From 12494196c77eeea9ee47f724f638bf90a35da158 Mon Sep 17 00:00:00 2001 From: Brandon Date: Fri, 27 Dec 2024 10:05:26 -0500 Subject: [PATCH 01/11] initial implementation --- .../src/services/jslib-services.module.ts | 7 + jslib/common/src/abstractions/api.service.ts | 6 +- .../src/abstractions/batching.service.ts | 13 + .../src/services/batching.service.spec.ts | 67 + jslib/common/src/services/batching.service.ts | 64 + .../directory-20.ldif | 0 openldap/group-fixtures-11000.ts | 11027 + openldap/ldifs/directory-11000.ldif | 340708 +++++++++++++++ openldap/user-fixtures-11000.ts | 77008 ++++ src/app/services/services.module.ts | 2 + src/bwdc.ts | 3 + src/services/sync.service.spec.ts | 174 + src/services/sync.service.ts | 111 +- 13 files changed, 429141 insertions(+), 49 deletions(-) create mode 100644 jslib/common/src/abstractions/batching.service.ts create mode 100644 jslib/common/src/services/batching.service.spec.ts create mode 100644 jslib/common/src/services/batching.service.ts rename openldap/{ldifs => example-ldifs}/directory-20.ldif (100%) create mode 100644 openldap/group-fixtures-11000.ts create mode 100644 openldap/ldifs/directory-11000.ldif create mode 100644 openldap/user-fixtures-11000.ts create mode 100644 src/services/sync.service.spec.ts diff --git a/jslib/angular/src/services/jslib-services.module.ts b/jslib/angular/src/services/jslib-services.module.ts index 20331a658..b2c65dedf 100644 --- a/jslib/angular/src/services/jslib-services.module.ts +++ b/jslib/angular/src/services/jslib-services.module.ts @@ -2,6 +2,7 @@ import { LOCALE_ID, NgModule } from "@angular/core"; import { ApiService as ApiServiceAbstraction } from "@/jslib/common/src/abstractions/api.service"; import { AppIdService as AppIdServiceAbstraction } from "@/jslib/common/src/abstractions/appId.service"; +import { BatchingService as BatchingServiceAbstraction } from "@/jslib/common/src/abstractions/batching.service"; import { BroadcasterService as BroadcasterServiceAbstraction } from "@/jslib/common/src/abstractions/broadcaster.service"; import { CryptoService as CryptoServiceAbstraction } from "@/jslib/common/src/abstractions/crypto.service"; import { CryptoFunctionService as CryptoFunctionServiceAbstraction } from "@/jslib/common/src/abstractions/cryptoFunction.service"; @@ -19,6 +20,7 @@ import { Account } from "@/jslib/common/src/models/domain/account"; import { GlobalState } from "@/jslib/common/src/models/domain/globalState"; import { ApiService } from "@/jslib/common/src/services/api.service"; import { AppIdService } from "@/jslib/common/src/services/appId.service"; +import { BatchingService } from "@/jslib/common/src/services/batching.service"; import { ConsoleLogService } from "@/jslib/common/src/services/consoleLog.service"; import { CryptoService } from "@/jslib/common/src/services/crypto.service"; import { EnvironmentService } from "@/jslib/common/src/services/environment.service"; @@ -138,6 +140,11 @@ import { ValidationService } from "./validation.service"; ), deps: [StorageServiceAbstraction, SECURE_STORAGE], }), + safeProvider({ + provide: BatchingServiceAbstraction, + useClass: BatchingService, + useAngularDecorators: true, + }), ] satisfies SafeProvider[], }) export class JslibServicesModule {} diff --git a/jslib/common/src/abstractions/api.service.ts b/jslib/common/src/abstractions/api.service.ts index e091a7aae..4ebbc550d 100644 --- a/jslib/common/src/abstractions/api.service.ts +++ b/jslib/common/src/abstractions/api.service.ts @@ -2,9 +2,9 @@ import { ApiTokenRequest } from "../models/request/identityToken/apiTokenRequest import { PasswordTokenRequest } from "../models/request/identityToken/passwordTokenRequest"; import { SsoTokenRequest } from "../models/request/identityToken/ssoTokenRequest"; import { OrganizationImportRequest } from "../models/request/organizationImportRequest"; -import { IdentityCaptchaResponse } from '../models/response/identityCaptchaResponse'; -import { IdentityTokenResponse } from '../models/response/identityTokenResponse'; -import { IdentityTwoFactorResponse } from '../models/response/identityTwoFactorResponse'; +import { IdentityCaptchaResponse } from "../models/response/identityCaptchaResponse"; +import { IdentityTokenResponse } from "../models/response/identityTokenResponse"; +import { IdentityTwoFactorResponse } from "../models/response/identityTwoFactorResponse"; export abstract class ApiService { postIdentityToken: ( diff --git a/jslib/common/src/abstractions/batching.service.ts b/jslib/common/src/abstractions/batching.service.ts new file mode 100644 index 000000000..8bb5894f5 --- /dev/null +++ b/jslib/common/src/abstractions/batching.service.ts @@ -0,0 +1,13 @@ +import { GroupEntry } from "@/src/models/groupEntry"; +import { UserEntry } from "@/src/models/userEntry"; + +import { OrganizationImportRequest } from "../models/request/organizationImportRequest"; + +export abstract class BatchingService { + batchRequests: ( + groups: GroupEntry[], + users: UserEntry[], + removeDisabled: boolean, + overwriteExisting: boolean, + ) => OrganizationImportRequest[]; +} diff --git a/jslib/common/src/services/batching.service.spec.ts b/jslib/common/src/services/batching.service.spec.ts new file mode 100644 index 000000000..6846062a0 --- /dev/null +++ b/jslib/common/src/services/batching.service.spec.ts @@ -0,0 +1,67 @@ +import { GroupEntry } from "@/src/models/groupEntry"; +import { UserEntry } from "@/src/models/userEntry"; + +import { BatchingService } from "./batching.service"; + +describe("BatchingService", () => { + let batchingService: BatchingService; + let userSimulator: (userCount: number) => UserEntry[]; + let groupSimulator: (userCount: number) => GroupEntry[]; + + beforeEach(async () => { + batchingService = new BatchingService(); + + userSimulator = (userCount: number) => { + const simulatedArray: UserEntry[] = []; + for (let i = 0; i < userCount; i += batchingService.batchSize) { + for (let j = 0; j <= batchingService.batchSize; j++) { + simulatedArray.push(new UserEntry()); + } + } + return simulatedArray; + }; + + groupSimulator = (groupCount: number) => { + const simulatedArray: GroupEntry[] = []; + for (let i = 0; i < groupCount; i += batchingService.batchSize) { + for (let j = 0; j <= batchingService.batchSize; j++) { + simulatedArray.push(new GroupEntry()); + } + } + return simulatedArray; + }; + }); + + it("Batches requests for > 2000 users", () => { + const mockGroups = groupSimulator(11000); + const mockUsers = userSimulator(11000); + + const requests = batchingService.batchRequests(mockGroups, mockUsers, true, true); + + expect(requests.length).toEqual( + Math.ceil(mockGroups.length / batchingService.batchSize) + + Math.ceil(mockUsers.length / batchingService.batchSize), + ); + }); + + it("Does not batch requests for < 2000 users", () => { + const mockGroups = groupSimulator(200); + const mockUsers = userSimulator(200); + + const requests = batchingService.batchRequests(mockGroups, mockUsers, true, true); + + expect(requests.length).toEqual( + Math.ceil(mockGroups.length / batchingService.batchSize) + + Math.ceil(mockUsers.length / batchingService.batchSize), + ); + }); + + it("Retuns an empty array when there are no users or groups", () => { + const mockGroups = groupSimulator(0); + const mockUsers = userSimulator(0); + + const requests = batchingService.batchRequests(mockGroups, mockUsers, true, true); + + expect(requests).toEqual([]); + }); +}); diff --git a/jslib/common/src/services/batching.service.ts b/jslib/common/src/services/batching.service.ts new file mode 100644 index 000000000..285938e7e --- /dev/null +++ b/jslib/common/src/services/batching.service.ts @@ -0,0 +1,64 @@ +import { BatchingService as BatchingServiceAbstraction } from "@/jslib/common/src/abstractions/batching.service"; +import { OrganizationImportRequest } from "@/jslib/common/src/models/request/organizationImportRequest"; + +import { GroupEntry } from "@/src/models/groupEntry"; +import { UserEntry } from "@/src/models/userEntry"; + +export class BatchingService implements BatchingServiceAbstraction { + batchSize = 2000; + + batchRequests( + groups: GroupEntry[], + users: UserEntry[], + removeDisabled: boolean, + overwriteExisting: boolean, + ): OrganizationImportRequest[] { + const requests: OrganizationImportRequest[] = []; + + if (users.length > 0) { + const usersRequest = users.map((u) => { + return { + email: u.email, + externalId: u.externalId, + deleted: u.deleted || (removeDisabled && u.disabled), + }; + }); + + // Partition users + for (let i = 0; i < usersRequest.length; i += this.batchSize) { + const u = usersRequest.slice(i, i + this.batchSize); + const req = new OrganizationImportRequest({ + groups: [], + users: u, + largeImport: true, + overwriteExisting, + }); + requests.push(req); + } + } + + if (groups.length > 0) { + const groupRequest = groups.map((g) => { + return { + name: g.name, + externalId: g.externalId, + memberExternalIds: Array.from(g.userMemberExternalIds), + }; + }); + + // Partition groups + for (let i = 0; i < groupRequest.length; i += this.batchSize) { + const g = groupRequest.slice(i, i + this.batchSize); + const req = new OrganizationImportRequest({ + groups: g, + users: [], + largeImport: true, + overwriteExisting, + }); + requests.push(req); + } + } + + return requests; + } +} diff --git a/openldap/ldifs/directory-20.ldif b/openldap/example-ldifs/directory-20.ldif similarity index 100% rename from openldap/ldifs/directory-20.ldif rename to openldap/example-ldifs/directory-20.ldif diff --git a/openldap/group-fixtures-11000.ts b/openldap/group-fixtures-11000.ts new file mode 100644 index 000000000..ec95beb0b --- /dev/null +++ b/openldap/group-fixtures-11000.ts @@ -0,0 +1,11027 @@ +import { Jsonify } from "type-fest"; + +import { GroupEntry } from "../src/models/groupEntry"; + +// These must match the ldap server seed data in directory.ldif +const data: Jsonify[] = [ + { + groupMemberReferenceIds: [], + userMemberExternalIds: [ + "cn=Edlene Morocz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mimi Mufti,ou=Peons,dc=bitwarden,dc=com", + "cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elianore Snapper,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lujanka Dickford,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nedi Siegel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Simulation Beswick,ou=Management,dc=bitwarden,dc=com", + "cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden,dc=com", + "cn=Ola Paulhus,ou=Management,dc=bitwarden,dc=com", + "cn=Yen Sharkey,ou=Peons,dc=bitwarden,dc=com", + "cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aila Koster,ou=Peons,dc=bitwarden,dc=com", + "cn=Dacia Colterman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Helma Bento,ou=Product Development,dc=bitwarden,dc=com", + "cn=Holst Issa,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nicolina Eu,ou=Management,dc=bitwarden,dc=com", + "cn=Nobuko Nyland,ou=Payroll,dc=bitwarden,dc=com", + "cn=Erlene Hargrow,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aila Mawani,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eula Neault,ou=Payroll,dc=bitwarden,dc=com", + "cn=Grata Tomacic,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Larissa Gillette,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Panch Sziladi,ou=Peons,dc=bitwarden,dc=com", + "cn=Morley Chadha,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kem Bizga,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carmel Vawter,ou=Payroll,dc=bitwarden,dc=com", + "cn=Corly Tesch,ou=Payroll,dc=bitwarden,dc=com", + "cn=Laureen Ladet,ou=Product Development,dc=bitwarden,dc=com", + "cn=AnneMarie Sills,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sonny Creamer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Access Banerd,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mina Chee,ou=Peons,dc=bitwarden,dc=com", + "cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fabienne Vempati,ou=Management,dc=bitwarden,dc=com", + "cn=Saman Bosch,ou=Management,dc=bitwarden,dc=com", + "cn=Farag Collevecchio,ou=Peons,dc=bitwarden,dc=com", + "cn=Randhir Dobransky,ou=Peons,dc=bitwarden,dc=com", + "cn=Maddy Beausejour,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carita Stetner,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dvm Ricketson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Viktoria Relations,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hot Hisaki,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kristien Reinwald,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anjanette Codata,ou=Product Development,dc=bitwarden,dc=com", + "cn=Antonia Killam,ou=Management,dc=bitwarden,dc=com", + "cn=Rosene Bonner,ou=Peons,dc=bitwarden,dc=com", + "cn=Janson Vrbetic,ou=Management,dc=bitwarden,dc=com", + "cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clyde Beggs,ou=Peons,dc=bitwarden,dc=com", + "cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cal Storey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pearline Towsley,ou=Peons,dc=bitwarden,dc=com", + "cn=Violet Ninetyone,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hr Healy,ou=Peons,dc=bitwarden,dc=com", + "cn=Ondrea Schultze,ou=Peons,dc=bitwarden,dc=com", + "cn=Lita Gille,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joelle Delong,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fabien Klapper,ou=Product Development,dc=bitwarden,dc=com", + "cn=Christie Andersen,ou=Peons,dc=bitwarden,dc=com", + "cn=Sarena Semler,ou=Administrative,dc=bitwarden,dc=com", + "cn=Janka Norfleet,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden,dc=com", + "cn=Verena Cadzow,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Roselin Clinton,ou=Management,dc=bitwarden,dc=com", + "cn=Niki Tosczak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden,dc=com", + "cn=Alli McCartney,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Helaine Sture,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elane Boggia,ou=Peons,dc=bitwarden,dc=com", + "cn=Cristen Bethune,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elbert Strauch,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stock Krenn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maurice Wurtz,ou=Peons,dc=bitwarden,dc=com", + "cn=YoungJune Grauer,ou=Management,dc=bitwarden,dc=com", + "cn=Jock Subsara,ou=Management,dc=bitwarden,dc=com", + "cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Latia Amarsi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Armand Klimas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sibbie DeWiele,ou=Management,dc=bitwarden,dc=com", + "cn=Kiam Surreau,ou=Administrative,dc=bitwarden,dc=com", + "cn=Clarabelle Committe,ou=Peons,dc=bitwarden,dc=com", + "cn=Geralene Lan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Madelyn Runnels,ou=Peons,dc=bitwarden,dc=com", + "cn=Marshal Hawken,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sickle Hartley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carran Cramer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=KienNghiep Eby,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pacific Derrett,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Allyce Chickorie,ou=Management,dc=bitwarden,dc=com", + "cn=Risa Hatten,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cherise Racette,ou=Management,dc=bitwarden,dc=com", + "cn=Ava Wetteland,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shaun Fares,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Miss Rogne,ou=Peons,dc=bitwarden,dc=com", + "cn=Vyky Wichers,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Christal Logan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marga Narron,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emmalee Foods,ou=Management,dc=bitwarden,dc=com", + "cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carmelina Scully,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shyam Carr,ou=Administrative,dc=bitwarden,dc=com", + "cn=Katie Jeska,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Penni Sarto,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marge Levere,ou=Management,dc=bitwarden,dc=com", + "cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Konrad Fabijanic,ou=Peons,dc=bitwarden,dc=com", + "cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden,dc=com", + "cn=Colman Epplett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rama Akhtar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cari Cuany,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Betteanne Donak,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nguyen Jaques,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bobette Sherlock,ou=Peons,dc=bitwarden,dc=com", + "cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Barsha Ozmizrak,ou=Management,dc=bitwarden,dc=com", + "cn=Tandi Dao,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jackie Bissonnette,ou=Peons,dc=bitwarden,dc=com", + "cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Margaretta Amott,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yetta Litherland,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rubetta Altman,ou=Product Development,dc=bitwarden,dc=com", + "cn=LeiSee Plato,ou=Peons,dc=bitwarden,dc=com", + "cn=Fayette Kos,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ginette Vilis,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorelle Ladymon,ou=Peons,dc=bitwarden,dc=com", + "cn=Behnam Cairns,ou=Management,dc=bitwarden,dc=com", + "cn=Othella McGrath,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Minnnie Hough,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darci Glasgow,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Franz Kosasih,ou=Administrative,dc=bitwarden,dc=com", + "cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Zonda Keyes,ou=Management,dc=bitwarden,dc=com", + "cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Iwona Eicher,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hugo Baltodano,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karyl Jiang,ou=Human Resources,dc=bitwarden,dc=com", + "cn=KumMeng Dover,ou=Administrative,dc=bitwarden,dc=com", + "cn=Homa Brownlee,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tianbao Cemensky,ou=Management,dc=bitwarden,dc=com", + "cn=Meggy Jansen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Thad Bertram,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dallas Gulick,ou=Management,dc=bitwarden,dc=com", + "cn=Marna Kindem,ou=Peons,dc=bitwarden,dc=com", + "cn=Denny Worpell,ou=Management,dc=bitwarden,dc=com", + "cn=Tanitansy Thibon,ou=Management,dc=bitwarden,dc=com", + "cn=Koray Vasiliadis,ou=Peons,dc=bitwarden,dc=com", + "cn=Ettie Sils,ou=Management,dc=bitwarden,dc=com", + "cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Millard Tromm,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Merlina Benschop,ou=Peons,dc=bitwarden,dc=com", + "cn=Shanna Bourgon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Liza Gumb,ou=Management,dc=bitwarden,dc=com", + "cn=Gokul Livingstone,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jamison Hines,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Clem Bongers,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vina McKie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Duc Dinalic,ou=Management,dc=bitwarden,dc=com", + "cn=Gena Lawther,ou=Management,dc=bitwarden,dc=com", + "cn=HooiLee Bourgon,ou=Peons,dc=bitwarden,dc=com", + "cn=Teresa Kenkel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marin Suprick,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Attilio Bullett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Blake Skerry,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Amir McColman,ou=Management,dc=bitwarden,dc=com", + "cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Minne Danker,ou=Management,dc=bitwarden,dc=com", + "cn=Rizzo Irick,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Syl Hughes,ou=Management,dc=bitwarden,dc=com", + "cn=Jagat Beato,ou=Peons,dc=bitwarden,dc=com", + "cn=Masood Tomassi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shamsia Mincey,ou=Peons,dc=bitwarden,dc=com", + "cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden,dc=com", + "cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tove Goodridge,ou=Payroll,dc=bitwarden,dc=com", + "cn=Elberta Incze,ou=Management,dc=bitwarden,dc=com", + "cn=Bobinette Belboul,ou=Peons,dc=bitwarden,dc=com", + "cn=Lynna Elsing,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ioana Bresee,ou=Peons,dc=bitwarden,dc=com", + "cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Seanna Lasher,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bella Lally,ou=Peons,dc=bitwarden,dc=com", + "cn=Romina Koman,ou=Peons,dc=bitwarden,dc=com", + "cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Abbye Kurth,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cecil Babb,ou=Product Development,dc=bitwarden,dc=com", + "cn=Thinh Merinder,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dinah Kodsi,ou=Peons,dc=bitwarden,dc=com", + "cn=Loria Salzillo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden,dc=com", + "cn=Johnna Rodkey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Willi Kepekci,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tillie Laniel,ou=Peons,dc=bitwarden,dc=com", + "cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Helene Esser,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lina Frederick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sluis Brauer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bosiljka Valerius,ou=Peons,dc=bitwarden,dc=com", + "cn=Prity Ruthart,ou=Peons,dc=bitwarden,dc=com", + "cn=Arlinda Weddell,ou=Peons,dc=bitwarden,dc=com", + "cn=Yatish Drynan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Coila Daniells,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Digby Abrams,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kalie Hine,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pierette Rodriques,ou=Management,dc=bitwarden,dc=com", + "cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marleen Potts,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lela Kita,ou=Payroll,dc=bitwarden,dc=com", + "cn=Angie Kou,ou=Peons,dc=bitwarden,dc=com", + "cn=Mab Goba,ou=Management,dc=bitwarden,dc=com", + "cn=Roe Sandberg,ou=Peons,dc=bitwarden,dc=com", + "cn=Randene Wintour,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Avie Lannan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Wiele Levert,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Amata Boles,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lpo Firment,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Katey Carkner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vito Mereu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Willa Mikelonis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lysy Halicki,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gabriell Aery,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden,dc=com", + "cn=Morgan Christian,ou=Management,dc=bitwarden,dc=com", + "cn=Shona Ernst,ou=Payroll,dc=bitwarden,dc=com", + "cn=Melynda Traynor,ou=Peons,dc=bitwarden,dc=com", + "cn=Christer Bortolussi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Frances Yvon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brigitta Ipadmin,ou=Management,dc=bitwarden,dc=com", + "cn=Garland Kenney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vivia Zaloker,ou=Administrative,dc=bitwarden,dc=com", + "cn=Reed Bassignana,ou=Peons,dc=bitwarden,dc=com", + "cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Robbie Kara,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lorri Abe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Norman Schmeler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lethia Godse,ou=Management,dc=bitwarden,dc=com", + "cn=Elsy Sigut,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rosabella Toothman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Royce OColmain,ou=Peons,dc=bitwarden,dc=com", + "cn=Leigha Contine,ou=Management,dc=bitwarden,dc=com", + "cn=Ivo Chaurette,ou=Payroll,dc=bitwarden,dc=com", + "cn=Loleta Macoosh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Raina Morgan,ou=Peons,dc=bitwarden,dc=com", + "cn=Laury Madras,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden,dc=com", + "cn=YuHung Marting,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Garry Brashear,ou=Peons,dc=bitwarden,dc=com", + "cn=Klara Npi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden,dc=com", + "cn=Edita VanRijswijk,ou=Management,dc=bitwarden,dc=com", + "cn=Jeana Horwood,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lianna Horton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Felicia Audette,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jayesh Purson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zora Weldon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Htd Knobloch,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden,dc=com", + "cn=Detlef Morglan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Berthe Peter,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alyce Tangren,ou=Management,dc=bitwarden,dc=com", + "cn=Grissel Beaudoin,ou=Peons,dc=bitwarden,dc=com", + "cn=Octavio Mathur,ou=Peons,dc=bitwarden,dc=com", + "cn=Elyssa Chui,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Danica Rubinstein,ou=Management,dc=bitwarden,dc=com", + "cn=Karna Netto,ou=Product Development,dc=bitwarden,dc=com", + "cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wallie Newhook,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cavin Circe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Notley Salinas,ou=Administrative,dc=bitwarden,dc=com", + "cn=Catrina Pezzoli,ou=Peons,dc=bitwarden,dc=com", + "cn=Marrilee Montague,ou=Payroll,dc=bitwarden,dc=com", + "cn=Frederica KongQuee,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fianna Rubio,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Neely Godo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karil Mielke,ou=Product Development,dc=bitwarden,dc=com", + "cn=Livvie Blodgett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ursula Potter,ou=Administrative,dc=bitwarden,dc=com", + "cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Charil Garbish,ou=Management,dc=bitwarden,dc=com", + "cn=William Groleau,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden,dc=com", + "cn=LouisRene Albers,ou=Payroll,dc=bitwarden,dc=com", + "cn=Emilie Geldrez,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tomasina Willett,ou=Peons,dc=bitwarden,dc=com", + "cn=Prams Bertolini,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vivyanne Mulder,ou=Management,dc=bitwarden,dc=com", + "cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Clarence Sonier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Emelia Esry,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ranea Beffert,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Saraann Lui,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden,dc=com", + "cn=Katrina Dauterive,ou=Product Development,dc=bitwarden,dc=com", + "cn=Talia Mattson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yevette Lazzara,ou=Peons,dc=bitwarden,dc=com", + "cn=Kirby Hagley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marit Montelli,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Monroe Ghulati,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carolan Bott,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anet Gehring,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kaela Binner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Libor Schanne,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bertie Bounds,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pascale Hutchings,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rochella Mazarick,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sheela Adam,ou=Product Development,dc=bitwarden,dc=com", + "cn=Norio Crabtree,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jey Shackley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Linda Juhan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Donica Banens,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marianna Fagan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Otha Mousseau,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rodrigus Helwege,ou=Peons,dc=bitwarden,dc=com", + "cn=Cathe Bolli,ou=Payroll,dc=bitwarden,dc=com", + "cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Odele Docherty,ou=Peons,dc=bitwarden,dc=com", + "cn=Allie Corbeil,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marshal Mayo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Neil Bestavros,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pirooz Rashed,ou=Administrative,dc=bitwarden,dc=com", + "cn=Corinna Davy,ou=Management,dc=bitwarden,dc=com", + "cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Melford Sehgal,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden,dc=com", + "cn=Juditha Moree,ou=Peons,dc=bitwarden,dc=com", + "cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden,dc=com", + ], + users: [], + referenceId: "cn=Blue Team,dc=bitwarden,dc=com", + externalId: "cn=Blue Team,dc=bitwarden,dc=com", + name: "Blue Team", + }, + { + groupMemberReferenceIds: [], + externalId: "cn=Red Team,dc=bitwarden,dc=com", + userMemberExternalIds: [ + "cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gerardjan Toulson,ou=Peons,dc=bitwarden,dc=com", + "cn=CheeYong BrownGillard,ou=Management,dc=bitwarden,dc=com", + "cn=Sherri Hamilton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kameko Lozier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cariotta Loyst,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alisa Centre,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shanon Vexler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Air Falkner,ou=Administrative,dc=bitwarden,dc=com", + "cn=Burton Backshall,ou=Product Development,dc=bitwarden,dc=com", + "cn=Frinel Beeston,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mahmoud Namiki,ou=Peons,dc=bitwarden,dc=com", + "cn=Hpone Paryag,ou=Management,dc=bitwarden,dc=com", + "cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sieber Sallee,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Caria Iribarren,ou=Payroll,dc=bitwarden,dc=com", + "cn=Odelle Translations,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carri Putman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Emelia McDonough,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Scarlet Netzke,ou=Product Development,dc=bitwarden,dc=com", + "cn=Verene Rigstad,ou=Management,dc=bitwarden,dc=com", + "cn=Corette Barbour,ou=Peons,dc=bitwarden,dc=com", + "cn=Becka McConkey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elvina Thomson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shamshad Kuntova,ou=Management,dc=bitwarden,dc=com", + "cn=Barbey Hews,ou=Payroll,dc=bitwarden,dc=com", + "cn=Olympie Sails,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bessie Kurian,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ardella Nagai,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bette Pipit,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sigrid Strock,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Benne Baab,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zohar Hauge,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden,dc=com", + "cn=LyddaJune Challice,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ediva Hately,ou=Payroll,dc=bitwarden,dc=com", + "cn=Faizal Vezina,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Champathon Bhatti,ou=Management,dc=bitwarden,dc=com", + "cn=Habib Barreyre,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nerita Jansen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rey Bayly,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vivian Faruque,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Steve Iyengar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Martina Fuson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dix NeKueey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maude Wippel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cherye Tanner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Edeline Kingdon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nadya Security,ou=Product Development,dc=bitwarden,dc=com", + "cn=Murray Longo,ou=Peons,dc=bitwarden,dc=com", + "cn=Catherin Witzman,ou=Management,dc=bitwarden,dc=com", + "cn=Harrison Salembier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Judi Nahata,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rudie Unxlb,ou=Management,dc=bitwarden,dc=com", + "cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Noni Garwood,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Melanie Sager,ou=Administrative,dc=bitwarden,dc=com", + "cn=Breena Psklib,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jeni Gros,ou=Peons,dc=bitwarden,dc=com", + "cn=Yoda Mejury,ou=Administrative,dc=bitwarden,dc=com", + "cn=Charla Mahbeer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roana Jurman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hqs Bresnan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tuhina Syrett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Genia Oestreich,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bianka Zeiger,ou=Management,dc=bitwarden,dc=com", + "cn=Jessalin Sauve,ou=Payroll,dc=bitwarden,dc=com", + "cn=Saman Dunik,ou=Product Development,dc=bitwarden,dc=com", + "cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pierre Latin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nariko Hobgood,ou=Peons,dc=bitwarden,dc=com", + "cn=Isin Scheck,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tessy McClelland,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dany Barel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lana Ellerman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dusan Bcs,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shekhar Howat,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shara Tims,ou=Management,dc=bitwarden,dc=com", + "cn=Floyd Shelby,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dacie Kato,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lenore Spraggins,ou=Management,dc=bitwarden,dc=com", + "cn=Prafula Diffee,ou=Management,dc=bitwarden,dc=com", + "cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lelah Marcellus,ou=Peons,dc=bitwarden,dc=com", + "cn=Marion Commons,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gay Golia,ou=Payroll,dc=bitwarden,dc=com", + "cn=Susanetta Technosoft,ou=Peons,dc=bitwarden,dc=com", + "cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nha Chytil,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Newton Hoddinott,ou=Peons,dc=bitwarden,dc=com", + "cn=Allyn Aitken,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anand Lojewski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kitt Fetzko,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fleet Nie,ou=Product Testing,dc=bitwarden,dc=com", + "cn=WeeThong Berube,ou=Management,dc=bitwarden,dc=com", + "cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Farshid Gard,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Violet Potvin,ou=Peons,dc=bitwarden,dc=com", + "cn=Indy Calder,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gwenette Feild,ou=Management,dc=bitwarden,dc=com", + "cn=Guillermo Leavell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Henryetta Raing,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Petronia Bermel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Remi Giuliani,ou=Payroll,dc=bitwarden,dc=com", + "cn=Faizal Moussette,ou=Peons,dc=bitwarden,dc=com", + "cn=Connie Barentsen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Verla Trottier,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vincente Isip,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pal Burchby,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ibbie Gung,ou=Peons,dc=bitwarden,dc=com", + "cn=Ned Pownall,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lucky Carmody,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mayumi Presgrove,ou=Management,dc=bitwarden,dc=com", + "cn=MunHang Altay,ou=Peons,dc=bitwarden,dc=com", + "cn=Savina Wefers,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marjoke NewLab,ou=Administrative,dc=bitwarden,dc=com", + "cn=Caralie Ferner,ou=Management,dc=bitwarden,dc=com", + "cn=Julio Marineau,ou=Administrative,dc=bitwarden,dc=com", + "cn=Olivette Crompton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Roly Slobodrian,ou=Product Development,dc=bitwarden,dc=com", + "cn=Partha Archibald,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Emerson Tait,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Claudette Talbot,ou=Product Testing,dc=bitwarden,dc=com", + "cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden,dc=com", + "cn=Dominica Nttest,ou=Product Development,dc=bitwarden,dc=com", + "cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tilak McGruder,ou=Peons,dc=bitwarden,dc=com", + "cn=Rieni Faley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alice Rist,ou=Management,dc=bitwarden,dc=com", + "cn=Nona Diee,ou=Product Testing,dc=bitwarden,dc=com", + "cn=ChongLai Jennings,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zdenka Filkins,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Adelind Loveday,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mariet Hotson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden,dc=com", + "cn=Nirmal Loper,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rhianon Mansi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shamim Pospisil,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Powell Brar,ou=Peons,dc=bitwarden,dc=com", + "cn=Nir Saisho,ou=Peons,dc=bitwarden,dc=com", + "cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Milissent Bowes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Harmonie Luquire,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Beth Nolet,ou=Payroll,dc=bitwarden,dc=com", + "cn=Georgette Manica,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Beitris Linton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Othella Difilippo,ou=Management,dc=bitwarden,dc=com", + "cn=Deloris Mattes,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brittni Holliday,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pat Pereira,ou=Janitorial,dc=bitwarden,dc=com", + "cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Walliw Marling,ou=Peons,dc=bitwarden,dc=com", + "cn=Susann Biggers,ou=Management,dc=bitwarden,dc=com", + "cn=Niek Sainsbury,ou=Payroll,dc=bitwarden,dc=com", + "cn=ChyeLian Codack,ou=Management,dc=bitwarden,dc=com", + "cn=Bailey Altmann,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden,dc=com", + "cn=Rich Ruigrok,ou=Management,dc=bitwarden,dc=com", + "cn=Mason AbiAad,ou=Peons,dc=bitwarden,dc=com", + "cn=Nike Mayfield,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ranson Darden,ou=Janitorial,dc=bitwarden,dc=com", + "cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Raju Ciochon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sammy Sourour,ou=Peons,dc=bitwarden,dc=com", + "cn=Theresa Dolson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lotti Farnum,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fouad Caton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Terry Lodeserto,ou=Peons,dc=bitwarden,dc=com", + "cn=Fei Bebee,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Oral Hamid,ou=Peons,dc=bitwarden,dc=com", + "cn=Anabelle Krater,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ginnie Vosu,ou=Management,dc=bitwarden,dc=com", + "cn=Anallese Haufe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Roze Bakkum,ou=Management,dc=bitwarden,dc=com", + "cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Belvia Aylwin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Duong Bannard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kees Rashid,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cami Glew,ou=Management,dc=bitwarden,dc=com", + "cn=Tien Giuliani,ou=Payroll,dc=bitwarden,dc=com", + "cn=Evie Morin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dorena Godina,ou=Peons,dc=bitwarden,dc=com", + "cn=Arn Ricketts,ou=Peons,dc=bitwarden,dc=com", + "cn=Beatriz Hagley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Karissa AuYang,ou=Management,dc=bitwarden,dc=com", + "cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden,dc=com", + "cn=Froukje Kennedy,ou=Management,dc=bitwarden,dc=com", + "cn=Hazel Nash,ou=Product Development,dc=bitwarden,dc=com", + "cn=Soyeh Neely,ou=Product Testing,dc=bitwarden,dc=com", + "cn=WaiChau McHale,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kathrine Schejbal,ou=Peons,dc=bitwarden,dc=com", + "cn=Shobana Eisler,ou=Management,dc=bitwarden,dc=com", + "cn=Joete Stamps,ou=Payroll,dc=bitwarden,dc=com", + "cn=Oneida Curnow,ou=Peons,dc=bitwarden,dc=com", + "cn=Naohiko McCray,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lang DeBoer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Selime Yuengling,ou=Peons,dc=bitwarden,dc=com", + "cn=Dolli Cracknell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Justino Willhoff,ou=Janitorial,dc=bitwarden,dc=com", + "cn=ShingCheong Eastus,ou=Management,dc=bitwarden,dc=com", + "cn=Said Fran,ou=Product Development,dc=bitwarden,dc=com", + "cn=Olga Rehbein,ou=Peons,dc=bitwarden,dc=com", + "cn=Quinta Blezard,ou=Management,dc=bitwarden,dc=com", + "cn=Felisha Linke,ou=Peons,dc=bitwarden,dc=com", + "cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elisabet Somppi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Arda Poluchowska,ou=Management,dc=bitwarden,dc=com", + "cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Valry Agnihotri,ou=Peons,dc=bitwarden,dc=com", + "cn=Gerri Rosko,ou=Payroll,dc=bitwarden,dc=com", + "cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Farouk Korf,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Valida Ribi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maynie Levert,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Floria DAoust,ou=Product Development,dc=bitwarden,dc=com", + "cn=Den Ormesher,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden,dc=com", + "cn=Brier VanNeste,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pars Fleury,ou=Administrative,dc=bitwarden,dc=com", + "cn=Roshelle Latif,ou=Payroll,dc=bitwarden,dc=com", + "cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Micah Eva,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Magdalen Howe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gloriane Knitl,ou=Peons,dc=bitwarden,dc=com", + "cn=Issy Paget,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Justinn Mazey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nan Wellard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bryana Sathe,ou=Peons,dc=bitwarden,dc=com", + "cn=Pavla Keiser,ou=Administrative,dc=bitwarden,dc=com", + "cn=Myriam Blezard,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shobana Berna,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ginni Felske,ou=Product Testing,dc=bitwarden,dc=com", + "cn=HingFai Shearer,ou=Management,dc=bitwarden,dc=com", + "cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alissa Junkin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bryon Valko,ou=Payroll,dc=bitwarden,dc=com", + "cn=Matt Casey,ou=Peons,dc=bitwarden,dc=com", + "cn=Lizette Klappholz,ou=Peons,dc=bitwarden,dc=com", + "cn=Maryl Petrick,ou=Peons,dc=bitwarden,dc=com", + "cn=Thalia Felske,ou=Payroll,dc=bitwarden,dc=com", + "cn=Louisa Macoosh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dino Kurauchi,ou=Peons,dc=bitwarden,dc=com", + "cn=Heida Kyoung,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fleurette Neyman,ou=Management,dc=bitwarden,dc=com", + "cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden,dc=com", + "cn=Susanne Keates,ou=Management,dc=bitwarden,dc=com", + "cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alyce Gravely,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Paulo Whidden,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lee Abbott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mustapha Tull,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tsing Oakley,ou=Management,dc=bitwarden,dc=com", + "cn=Ozlem Nys,ou=Administrative,dc=bitwarden,dc=com", + "cn=Canute Fran,ou=Payroll,dc=bitwarden,dc=com", + "cn=Erina RTP,ou=Payroll,dc=bitwarden,dc=com", + "cn=Efdal Maund,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Peggy Corpening,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hiren Bopp,ou=Peons,dc=bitwarden,dc=com", + "cn=Neala Seeds,ou=Management,dc=bitwarden,dc=com", + "cn=Torie Seamster,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Benoit Heilsnis,ou=Management,dc=bitwarden,dc=com", + "cn=Madalyn Timmons,ou=Administrative,dc=bitwarden,dc=com", + "cn=Frinel Reiser,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Harish Shukor,ou=Administrative,dc=bitwarden,dc=com", + "cn=Felice Hazenboom,ou=Management,dc=bitwarden,dc=com", + "cn=Lorna Kreimer,ou=Management,dc=bitwarden,dc=com", + "cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rheal Lauten,ou=Management,dc=bitwarden,dc=com", + "cn=Vivi Vexler,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden,dc=com", + "cn=Leigha Elwood,ou=Payroll,dc=bitwarden,dc=com", + "cn=Basia Smyth,ou=Peons,dc=bitwarden,dc=com", + "cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mario Cassidy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amy Rafol,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lennart Shultz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sherwood Caton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tesa Suprick,ou=Management,dc=bitwarden,dc=com", + "cn=Maryl Fleugel,ou=Peons,dc=bitwarden,dc=com", + "cn=Clarine Hauge,ou=Peons,dc=bitwarden,dc=com", + "cn=Cordy Ghossein,ou=Administrative,dc=bitwarden,dc=com", + "cn=Judith Fuqua,ou=Peons,dc=bitwarden,dc=com", + "cn=Maurine Boucher,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Billie Shoulars,ou=Product Development,dc=bitwarden,dc=com", + "cn=Trever Shearer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jacquie Desilets,ou=Product Development,dc=bitwarden,dc=com", + "cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ramiz Gung,ou=Administrative,dc=bitwarden,dc=com", + "cn=Windy Sadeghi,ou=Product Development,dc=bitwarden,dc=com", + "cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cassey Papp,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aurelia Hann,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rani Korpela,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Danni Tsuji,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fredia Handschy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Verna Muldoon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bjorn Treen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden,dc=com", + "cn=Garth Callery,ou=Payroll,dc=bitwarden,dc=com", + "cn=Livvie VanOorschot,ou=Peons,dc=bitwarden,dc=com", + "cn=Anderson Hockaday,ou=Peons,dc=bitwarden,dc=com", + "cn=Kaia Archer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bethany Buder,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden,dc=com", + "cn=Willie Godse,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gaye Tjia,ou=Payroll,dc=bitwarden,dc=com", + "cn=Valencia Claise,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Loria Buckley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shahram Campeau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fanchette Zaman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Junk Nishith,ou=Peons,dc=bitwarden,dc=com", + "cn=Bennett Biage,ou=Peons,dc=bitwarden,dc=com", + "cn=Klazien Propes,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kenneth DAnjou,ou=Peons,dc=bitwarden,dc=com", + "cn=Parviz Shahen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Coleen Litherland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=ChongLai Hingtgen,ou=Management,dc=bitwarden,dc=com", + "cn=Izabel Heeralall,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rueben Dynie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lolita Mecteau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gunars Rafflin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Thad Besnier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Leonard Ireland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jany Lotz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sultan Sergo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden,dc=com", + "cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Erena Mersinger,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nitin Operators,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hennrietta Siewert,ou=Management,dc=bitwarden,dc=com", + "cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Othelia Solodko,ou=Peons,dc=bitwarden,dc=com", + "cn=Huong Commazzi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Duljit Zbuda,ou=Payroll,dc=bitwarden,dc=com", + "cn=Thang Bushnell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carri Gary,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Valli Carlebach,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bobb Lacosse,ou=Peons,dc=bitwarden,dc=com", + "cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Abby Presutti,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vivie Lauson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Geraldine McLennan,ou=Management,dc=bitwarden,dc=com", + "cn=Glenda Lai,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lind Zeiger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Valina Raaflaub,ou=Administrative,dc=bitwarden,dc=com", + "cn=Susanne Alink,ou=Payroll,dc=bitwarden,dc=com", + "cn=Al Wrigley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden,dc=com", + "cn=Laurie Bijons,ou=Administrative,dc=bitwarden,dc=com", + "cn=Begum Minyard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hotline Au,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cornelle Coupal,ou=Peons,dc=bitwarden,dc=com", + "cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Turkey Moser,ou=Product Development,dc=bitwarden,dc=com", + "cn=Warwick Mau,ou=Product Testing,dc=bitwarden,dc=com", + "cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Wynne Clow,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shelly Keller,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ole Carbajal,ou=Administrative,dc=bitwarden,dc=com", + "cn=Richardson Luxford,ou=Management,dc=bitwarden,dc=com", + "cn=Breanne Tassy,ou=Peons,dc=bitwarden,dc=com", + "cn=Austina Acree,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gen Rushton,ou=Peons,dc=bitwarden,dc=com", + "cn=Lebbie Lortie,ou=Management,dc=bitwarden,dc=com", + "cn=Geoff Achcar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hollie Amir,ou=Payroll,dc=bitwarden,dc=com", + "cn=Timm Alvarez,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Huan Adornato,ou=Product Development,dc=bitwarden,dc=com", + "cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Reynold Meletios,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Britney Farrell,ou=Management,dc=bitwarden,dc=com", + "cn=Marne Tougas,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dyanna Goff,ou=Payroll,dc=bitwarden,dc=com", + "cn=Laverne NetTeam,ou=Peons,dc=bitwarden,dc=com", + "cn=Genny Bladon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sask Griswold,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rae Beckham,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=ChoKuen Layton,ou=Management,dc=bitwarden,dc=com", + "cn=Merlina Gofron,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jany Kamal,ou=Management,dc=bitwarden,dc=com", + "cn=Freddie Rolfes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nickie Acree,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden,dc=com", + "cn=Davina Amu,ou=Peons,dc=bitwarden,dc=com", + "cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Akin Capelle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Focus Decourcy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Moel Wynes,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bertrand Schiegl,ou=Peons,dc=bitwarden,dc=com", + "cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden,dc=com", + "cn=Coursey Stansfield,ou=Management,dc=bitwarden,dc=com", + "cn=Tavis Theodore,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bello Madani,ou=Management,dc=bitwarden,dc=com", + "cn=Sameh Kyoung,ou=Management,dc=bitwarden,dc=com", + "cn=Liem Isley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Estrella Balsas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bailey Trickett,ou=Management,dc=bitwarden,dc=com", + "cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Martha Hovey,ou=Management,dc=bitwarden,dc=com", + "cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden,dc=com", + "cn=ChinFui Iezzi,ou=Management,dc=bitwarden,dc=com", + "cn=Cortney Tolar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Walter Napke,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jenson Yabe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hanh Preo,ou=Peons,dc=bitwarden,dc=com", + "cn=Opto Decasper,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Regan Novak,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Orella Viriato,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ruthy Maher,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Roxanne Mohammad,ou=Management,dc=bitwarden,dc=com", + "cn=Guner Kelso,ou=Product Development,dc=bitwarden,dc=com", + "cn=Drusy Masapati,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anthiathia Bessell,ou=Peons,dc=bitwarden,dc=com", + "cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Saibal Swartz,ou=Peons,dc=bitwarden,dc=com", + "cn=Magdi Sulewski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Katharine Byers,ou=Administrative,dc=bitwarden,dc=com", + "cn=Donal Kashaninia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chicky Sils,ou=Human Resources,dc=bitwarden,dc=com", + "cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden,dc=com", + "cn=Gillie Dedas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kassie Dack,ou=Administrative,dc=bitwarden,dc=com", + "cn=Munir Gonsalves,ou=Peons,dc=bitwarden,dc=com", + "cn=Grietje Ansorger,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden,dc=com", + "cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden,dc=com", + "cn=Latisha Dallago,ou=Peons,dc=bitwarden,dc=com", + "cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Luther Attard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elisa Bernier,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cally Rios,ou=Management,dc=bitwarden,dc=com", + "cn=Flossie Ordway,ou=Administrative,dc=bitwarden,dc=com", + "cn=Trudie Beveridge,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jin Schavo,ou=Management,dc=bitwarden,dc=com", + "cn=Birgit Reznick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sylvia Manica,ou=Peons,dc=bitwarden,dc=com", + "cn=Adelind Vance,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Odella Anthonissen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=America Turney,ou=Management,dc=bitwarden,dc=com", + "cn=Rudie Vaughn,ou=Peons,dc=bitwarden,dc=com", + "cn=Idris Hotlist,ou=Product Development,dc=bitwarden,dc=com", + "cn=Petri Soreanu,ou=Payroll,dc=bitwarden,dc=com", + "cn=Inge Hurteau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tats McDermott,ou=Management,dc=bitwarden,dc=com", + "cn=Lianne Wanda,ou=Administrative,dc=bitwarden,dc=com", + "cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marinna Drane,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shelly Cavan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bryce Luetchford,ou=Management,dc=bitwarden,dc=com", + "cn=Mariana Munden,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Morris Pafilis,ou=Peons,dc=bitwarden,dc=com", + "cn=Shirl Clipperton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leona Buchko,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tybi Welsford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Baris Derome,ou=Payroll,dc=bitwarden,dc=com", + "cn=Munir Dickford,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ailsun Yvon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jeffery Becquart,ou=Peons,dc=bitwarden,dc=com", + "cn=Cindelyn Capozzi,ou=Management,dc=bitwarden,dc=com", + "cn=Regan Hesse,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aida Blackwell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Justine Aguirre,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maurene Zafarullah,ou=Management,dc=bitwarden,dc=com", + "cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Karita Donovan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shaw Lantto,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gwen Prog,ou=Peons,dc=bitwarden,dc=com", + "cn=Cecile Evans,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ringo Campara,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Melonie Loveland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Quinn Malizia,ou=Payroll,dc=bitwarden,dc=com", + "cn=Virgie Slaby,ou=Management,dc=bitwarden,dc=com", + "cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kamil Daniells,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bevvy Dalloste,ou=Management,dc=bitwarden,dc=com", + "cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Perri Gaylor,ou=Administrative,dc=bitwarden,dc=com", + "cn=Klink Bruneau,ou=Management,dc=bitwarden,dc=com", + "cn=Siamack Dace,ou=Administrative,dc=bitwarden,dc=com", + "cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jay Ginest,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wilona Caudle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden,dc=com", + "cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Laz Plante,ou=Product Development,dc=bitwarden,dc=com", + "cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ellene Holberry,ou=Administrative,dc=bitwarden,dc=com", + "cn=Niel McComb,ou=Peons,dc=bitwarden,dc=com", + "cn=Anni Demchuk,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Chen Crosson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lonna Leong,ou=Administrative,dc=bitwarden,dc=com", + "cn=Drusie Prewitt,ou=Management,dc=bitwarden,dc=com", + "cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jen Assenza,ou=Peons,dc=bitwarden,dc=com", + "cn=Lynnet Henshaw,ou=Management,dc=bitwarden,dc=com", + "cn=Wanids Pepper,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tamara Ahlers,ou=Payroll,dc=bitwarden,dc=com", + "cn=Karilynn Roddick,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mariesara CamelToueg,ou=Management,dc=bitwarden,dc=com", + "cn=Doe Yowell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Deedee Mattes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Luis Sinnett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Evette Bouffard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Armin Bakkum,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Grady Gregorski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ede Riggins,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vi Biamonte,ou=Management,dc=bitwarden,dc=com", + "cn=Shauna Moizer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maryanna Rao,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kore Hedrick,ou=Management,dc=bitwarden,dc=com", + "cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marris Legrove,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden,dc=com", + "cn=Olusola Hudson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cordula Lewandowski,ou=Management,dc=bitwarden,dc=com", + "cn=Olwen Salyer,ou=Management,dc=bitwarden,dc=com", + "cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kristine Guignon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Daphna Leong,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Larysa Singer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hilmi Spohn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sharity Fusca,ou=Peons,dc=bitwarden,dc=com", + "cn=Kendre Favrot,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pit Cotuna,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carma Mattiussi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leeann Staring,ou=Administrative,dc=bitwarden,dc=com", + "cn=Indiana Bodford,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden,dc=com", + "cn=Hermia Besse,ou=Payroll,dc=bitwarden,dc=com", + "cn=Keri Struble,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rolande Kiger,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cyndy Auton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Blaise Bookings,ou=Administrative,dc=bitwarden,dc=com", + "cn=Door Rigdon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Allianora Toperzer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Phaedra Criswell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Peter Dodson,ou=Peons,dc=bitwarden,dc=com", + "cn=Rhea Brewer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Junette Bayno,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jonis Innes,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Femke Roddick,ou=Management,dc=bitwarden,dc=com", + "cn=Nanine Psutka,ou=Management,dc=bitwarden,dc=com", + "cn=Stergios Koonce,ou=Management,dc=bitwarden,dc=com", + "cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Moyra Boulay,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Door McKerrow,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden,dc=com", + "cn=Paolina McCaughey,ou=Management,dc=bitwarden,dc=com", + "cn=Greer Metzger,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marlena Boyachek,ou=Payroll,dc=bitwarden,dc=com", + "cn=LyKhanh Hollbach,ou=Management,dc=bitwarden,dc=com", + "cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rosana Wendling,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eve StVil,ou=Payroll,dc=bitwarden,dc=com", + "cn=GuoQiang Hagen,ou=Peons,dc=bitwarden,dc=com", + "cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dorella Golczewski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Clarette Stokes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mo Barsch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Janos Running,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hanco Epstein,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden,dc=com", + "cn=Daisie Solman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nachum Biard,ou=Management,dc=bitwarden,dc=com", + "cn=Essy Goyal,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lorie Sehmbey,ou=Peons,dc=bitwarden,dc=com", + "cn=Armelle Schwane,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Brietta Plato,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nolana Hedman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zenia Hilwa,ou=Administrative,dc=bitwarden,dc=com", + "cn=Souphalack Delong,ou=Product Development,dc=bitwarden,dc=com", + "cn=Robbie Dibler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Biddie Tedrick,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gracia Peluso,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sanja Maxey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Petronella Tullius,ou=Payroll,dc=bitwarden,dc=com", + "cn=Henrie Lorint,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden,dc=com", + "cn=Donnette Kruger,ou=Peons,dc=bitwarden,dc=com", + "cn=Delle Schwantes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden,dc=com", + "cn=Print Gaitan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Patsy Mattiussi,ou=Management,dc=bitwarden,dc=com", + "cn=Phil Afkham,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sheldon Blatt,ou=Peons,dc=bitwarden,dc=com", + "cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Oryal Raschig,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hector Manus,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pollyanna Goza,ou=Payroll,dc=bitwarden,dc=com", + "cn=Koren Penner,ou=Payroll,dc=bitwarden,dc=com", + "cn=Iteke Wiedman,ou=Management,dc=bitwarden,dc=com", + "cn=Darrelle StJohn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kazuhito Schram,ou=Peons,dc=bitwarden,dc=com", + "cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shirene Eaves,ou=Product Development,dc=bitwarden,dc=com", + "cn=Desiree Southon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lianna Lackie,ou=Peons,dc=bitwarden,dc=com", + "cn=Misti Sayed,ou=Management,dc=bitwarden,dc=com", + "cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dione McCain,ou=Peons,dc=bitwarden,dc=com", + "cn=Deny Stasiak,ou=Management,dc=bitwarden,dc=com", + "cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ladell Butvich,ou=Management,dc=bitwarden,dc=com", + "cn=Loralyn Eller,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jan Crosson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Oral Pridgen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Subra Tuttle,ou=Payroll,dc=bitwarden,dc=com", + "cn=Teruko Fleischer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Quintina Ying,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nerti StJames,ou=Administrative,dc=bitwarden,dc=com", + "cn=RongChin Guatto,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mercer Zattiero,ou=Payroll,dc=bitwarden,dc=com", + "cn=Budi Enos,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tuoi Abdou,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nath Labarge,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sophi McCullogh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jorry Babineau,ou=Product Development,dc=bitwarden,dc=com", + "cn=Adey Fogelson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bela Fouillard,ou=Management,dc=bitwarden,dc=com", + "cn=Paola Barbeau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Milo Hasen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Corabella Scarffe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Parkinson Bir,ou=Product Development,dc=bitwarden,dc=com", + "cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden,dc=com", + "cn=Salis Quilty,ou=Payroll,dc=bitwarden,dc=com", + "cn=Stormi Vempati,ou=Management,dc=bitwarden,dc=com", + "cn=Lauretta Salvin,ou=Peons,dc=bitwarden,dc=com", + "cn=Sarine Quane,ou=Management,dc=bitwarden,dc=com", + "cn=Rocio Brauer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Margaretta Muchow,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dona Nairn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carolien Skiba,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cathee Bress,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mandy Settels,ou=Payroll,dc=bitwarden,dc=com", + "cn=Odetta Tzuang,ou=Payroll,dc=bitwarden,dc=com", + "cn=Arne Matney,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dvm LaPlante,ou=Payroll,dc=bitwarden,dc=com", + "cn=Edeline ORourke,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jiri Sengoba,ou=Product Development,dc=bitwarden,dc=com", + "cn=Terence Ashdown,ou=Payroll,dc=bitwarden,dc=com", + "cn=Donni Keilholz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Minhwi Vallet,ou=Product Development,dc=bitwarden,dc=com", + "cn=Allianora Wissler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Francisco Elam,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Katie Labrie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kazuhiko Drewes,ou=Management,dc=bitwarden,dc=com", + "cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Meade Esmaili,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gwennie Sojkowski,ou=Management,dc=bitwarden,dc=com", + "cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden,dc=com", + "cn=Winona Paine,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chiquita Ferrell,ou=Peons,dc=bitwarden,dc=com", + "cn=Burgess Platthy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Harlene Kortje,ou=Product Development,dc=bitwarden,dc=com", + "cn=Suhas Ilic,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kamil Caines,ou=Human Resources,dc=bitwarden,dc=com", + "cn=HorLam Momon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Farah Brennand,ou=Management,dc=bitwarden,dc=com", + "cn=Wilfred Issa,ou=Management,dc=bitwarden,dc=com", + "cn=Zino Larson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rhiamon Devault,ou=Product Development,dc=bitwarden,dc=com", + "cn=Michiko Sich,ou=Management,dc=bitwarden,dc=com", + "cn=Weber Ishii,ou=Payroll,dc=bitwarden,dc=com", + "cn=Beppie Kilburn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Durali Abelow,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eleen Pappu,ou=Payroll,dc=bitwarden,dc=com", + "cn=Betty Elzer,ou=Peons,dc=bitwarden,dc=com", + "cn=Sallyann Environment,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ans Pozzi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Blithe Sherow,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jacklin Alles,ou=Peons,dc=bitwarden,dc=com", + "cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pauly Wycoff,ou=Peons,dc=bitwarden,dc=com", + "cn=Jackson Narron,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hermia Probs,ou=Administrative,dc=bitwarden,dc=com", + "cn=Scovill McPhail,ou=Management,dc=bitwarden,dc=com", + "cn=Dian Zalite,ou=Administrative,dc=bitwarden,dc=com", + "cn=Puran Dundin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Migdalia Warner,ou=Peons,dc=bitwarden,dc=com", + "cn=Mechelle Kirn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jaan Hartin,ou=Peons,dc=bitwarden,dc=com", + "cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anne JantzLee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cherey Desantis,ou=Peons,dc=bitwarden,dc=com", + "cn=Celie Aksel,ou=Management,dc=bitwarden,dc=com", + "cn=Aleta Khosla,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lennart Cramm,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elex Sohal,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marianna Annas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sergei MacElwee,ou=Management,dc=bitwarden,dc=com", + "cn=Jay Dutil,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bevvy Routhier,ou=Peons,dc=bitwarden,dc=com", + "cn=Kacie Sconzo,ou=Peons,dc=bitwarden,dc=com", + "cn=Annadiane Davids,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Karan ETAS,ou=Peons,dc=bitwarden,dc=com", + "cn=Betti Savoie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Croix Dunn,ou=Management,dc=bitwarden,dc=com", + "cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden,dc=com", + "cn=Raymond McCaw,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Laurna Ferner,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cathe Boyer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hanco Elgin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Krier Brickman,ou=Management,dc=bitwarden,dc=com", + "cn=Aime IBNTAS,ou=Management,dc=bitwarden,dc=com", + "cn=Theodore Pierson,ou=Peons,dc=bitwarden,dc=com", + "cn=Monling Wormald,ou=Management,dc=bitwarden,dc=com", + "cn=Amandy Poma,ou=Peons,dc=bitwarden,dc=com", + "cn=Carri Loper,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cherri Bramlett,ou=Peons,dc=bitwarden,dc=com", + "cn=Tai Nerem,ou=Payroll,dc=bitwarden,dc=com", + "cn=Luciano Homayoon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Clovis Kaji,ou=Peons,dc=bitwarden,dc=com", + "cn=Constancy Sugihara,ou=Peons,dc=bitwarden,dc=com", + "cn=Micki Pownall,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Norma Rabipour,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mietek Nadon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sophie Malhotra,ou=Peons,dc=bitwarden,dc=com", + "cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Prue Zollman,ou=Peons,dc=bitwarden,dc=com", + "cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shaughan Lockard,ou=Management,dc=bitwarden,dc=com", + "cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marga Hao,ou=Peons,dc=bitwarden,dc=com", + "cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elset Yach,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jaynie Moniter,ou=Administrative,dc=bitwarden,dc=com", + "cn=Penelopa Kenik,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nam Mersch,ou=Administrative,dc=bitwarden,dc=com", + "cn=Valida US,ou=Management,dc=bitwarden,dc=com", + "cn=Jillian Pde,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Everette Klaassen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden,dc=com", + "cn=Selime Helstab,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Norean Wilford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bebe Spurway,ou=Peons,dc=bitwarden,dc=com", + "cn=Alka Kowal,ou=Product Development,dc=bitwarden,dc=com", + "cn=Michele Biggers,ou=Product Development,dc=bitwarden,dc=com", + "cn=Connie Stotz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Layne Efstration,ou=Peons,dc=bitwarden,dc=com", + "cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ankie Commazzi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cubicle Qu,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wassim Charette,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kas Audet,ou=Product Development,dc=bitwarden,dc=com", + "cn=Emalee Lockett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Janell Kurniawan,ou=Peons,dc=bitwarden,dc=com", + "cn=Georganne Munikoti,ou=Payroll,dc=bitwarden,dc=com", + "cn=Neala Casalou,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hai Grubbs,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alyssa Strackholder,ou=Peons,dc=bitwarden,dc=com", + "cn=Jossine Hoddinott,ou=Management,dc=bitwarden,dc=com", + "cn=Phyllis Majd,ou=Management,dc=bitwarden,dc=com", + "cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nevil Rosch,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lyndon Rao,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Karina Kempffer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Khalil Popovich,ou=Administrative,dc=bitwarden,dc=com", + "cn=Thomasa Dann,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rocke Tedrick,ou=Management,dc=bitwarden,dc=com", + "cn=Subra Howie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dasi Rabon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ivor Shennan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tosca Linfield,ou=Peons,dc=bitwarden,dc=com", + "cn=Shandee Vosup,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Janith Gursin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rora Kingrey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rhett Vavroch,ou=Peons,dc=bitwarden,dc=com", + "cn=Allene Izzotti,ou=Peons,dc=bitwarden,dc=com", + "cn=Ag Charlino,ou=Product Development,dc=bitwarden,dc=com", + "cn=Archie Kenyon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Malissia Albright,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mccauley Guillet,ou=Peons,dc=bitwarden,dc=com", + "cn=Maudie Overcash,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yolanthe Svo,ou=Peons,dc=bitwarden,dc=com", + "cn=Ashley Koskinen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden,dc=com", + "cn=Babb Mayne,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Godfrey Wiltz,ou=Peons,dc=bitwarden,dc=com", + "cn=Arlana Crowell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Arina Kempffer,ou=Peons,dc=bitwarden,dc=com", + "cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kip Grimshaw,ou=Management,dc=bitwarden,dc=com", + "cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Addons Wurtz,ou=Peons,dc=bitwarden,dc=com", + "cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden,dc=com", + "cn=Farzin Nebel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shell Hurst,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Khosro Kuo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Michel Kernahan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Melba Besnier,ou=Management,dc=bitwarden,dc=com", + "cn=Ailee Schwenk,ou=Management,dc=bitwarden,dc=com", + "cn=Klink Aguilar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Arnis Daly,ou=Peons,dc=bitwarden,dc=com", + "cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ofilia Keilty,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ans Casperson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Janick McGregor,ou=Management,dc=bitwarden,dc=com", + "cn=Chuan Bernstein,ou=Payroll,dc=bitwarden,dc=com", + "cn=Donall HickmanMiott,ou=Management,dc=bitwarden,dc=com", + "cn=Doc Cantlie,ou=Administrative,dc=bitwarden,dc=com", + "cn=Christer Chapen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Flory Ziegler,ou=Management,dc=bitwarden,dc=com", + "cn=Altay Stevenson,ou=Management,dc=bitwarden,dc=com", + "cn=Mada Curtin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dasha Kivell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Minna Hyatt,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tiff Brambley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gerrard Kinos,ou=Management,dc=bitwarden,dc=com", + "cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Norikatsu Knox,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sabine Litz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Candee Rightmire,ou=Management,dc=bitwarden,dc=com", + "cn=Jorge Layton,ou=Payroll,dc=bitwarden,dc=com", + "cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ed Joe,ou=Administrative,dc=bitwarden,dc=com", + "cn=Portia Sim,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jian Gardner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ashien Brewton,ou=Management,dc=bitwarden,dc=com", + "cn=Opto Seay,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rolande Prattico,ou=Administrative,dc=bitwarden,dc=com", + "cn=Reggie Boggs,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Zero Dourley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gabie Hirayama,ou=Peons,dc=bitwarden,dc=com", + "cn=Kalindi Keene,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rod Krenos,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bahadir Borozny,ou=Management,dc=bitwarden,dc=com", + "cn=Prudy Morelli,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Zero Volchegursky,ou=Management,dc=bitwarden,dc=com", + "cn=Riyaz Leone,ou=Management,dc=bitwarden,dc=com", + "cn=Jade Njo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Albert Healy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Helsa Eder,ou=Administrative,dc=bitwarden,dc=com", + "cn=Patt Overby,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dasya Chenard,ou=Management,dc=bitwarden,dc=com", + "cn=Rosana Hensen,ou=Management,dc=bitwarden,dc=com", + "cn=Thekla Helpb,ou=Payroll,dc=bitwarden,dc=com", + "cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jacquetta Alary,ou=Peons,dc=bitwarden,dc=com", + "cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden,dc=com", + "cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nari Dilallo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Betti Tanner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Weilin Tupling,ou=Peons,dc=bitwarden,dc=com", + "cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Roly Odden,ou=Management,dc=bitwarden,dc=com", + "cn=Junie Siegel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karna Nairn,ou=Peons,dc=bitwarden,dc=com", + "cn=Pascale Innes,ou=Peons,dc=bitwarden,dc=com", + "cn=Darbie Scalabrini,ou=Peons,dc=bitwarden,dc=com", + "cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elsi Toles,ou=Administrative,dc=bitwarden,dc=com", + "cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Steinar Royster,ou=Administrative,dc=bitwarden,dc=com", + "cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sono Wissler,ou=Administrative,dc=bitwarden,dc=com", + "cn=Par Fani,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Matti Beisel,ou=Peons,dc=bitwarden,dc=com", + "cn=Regine Sergi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Oralia Daymond,ou=Payroll,dc=bitwarden,dc=com", + "cn=Adey Mein,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bettina Petree,ou=Management,dc=bitwarden,dc=com", + "cn=Sisile Larner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Roseann Sheldon,ou=Peons,dc=bitwarden,dc=com", + "cn=Irc Grona,ou=Administrative,dc=bitwarden,dc=com", + "cn=Michael Verrenneau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Walley Gostanian,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emogene Assistance,ou=Management,dc=bitwarden,dc=com", + "cn=Florance Berna,ou=Payroll,dc=bitwarden,dc=com", + "cn=Barry Holcombe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Grietje Gilstorf,ou=Management,dc=bitwarden,dc=com", + "cn=Una Shang,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gina Pilotte,ou=Management,dc=bitwarden,dc=com", + "cn=Rolando Yancey,ou=Management,dc=bitwarden,dc=com", + "cn=Ardeen Porter,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gajendra Dery,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jere Jasmin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Caritta Verma,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Edric Tilk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Janelle Downes,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rebeca Dicaprio,ou=Management,dc=bitwarden,dc=com", + "cn=Everett Pittam,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden,dc=com", + "cn=Erwin Hlady,ou=Management,dc=bitwarden,dc=com", + "cn=Shiu Masty,ou=Peons,dc=bitwarden,dc=com", + "cn=Terrijo Roth,ou=Peons,dc=bitwarden,dc=com", + "cn=Venus Fischetti,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hewlet Noorani,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pansy Ochman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Henny Recabarren,ou=Product Development,dc=bitwarden,dc=com", + "cn=Humberto Gottschalk,ou=Peons,dc=bitwarden,dc=com", + "cn=Vernon Planthara,ou=Administrative,dc=bitwarden,dc=com", + "cn=Clo Upshaw,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Afton Sykes,ou=Peons,dc=bitwarden,dc=com", + "cn=Vesna Kowalski,ou=Management,dc=bitwarden,dc=com", + "cn=Prissie Rintala,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Virginia Telfer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ginette Brans,ou=Peons,dc=bitwarden,dc=com", + "cn=Marsie OConner,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Amandip Habib,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ezella Pesik,ou=Product Development,dc=bitwarden,dc=com", + "cn=Liv Tabl,ou=Management,dc=bitwarden,dc=com", + "cn=Joni McClarren,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leonida Stefanac,ou=Peons,dc=bitwarden,dc=com", + "cn=Viviyan Baird,ou=Product Development,dc=bitwarden,dc=com", + "cn=Robbin Meriwether,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gwennyth Basser,ou=Administrative,dc=bitwarden,dc=com", + "cn=Binh Aversa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marlee Jawor,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Antonio Risdal,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dieter Dickinson,ou=Peons,dc=bitwarden,dc=com", + "cn=Gilda Shnay,ou=Product Development,dc=bitwarden,dc=com", + "cn=Agnese Herrington,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rebekkah Meleski,ou=Peons,dc=bitwarden,dc=com", + "cn=Noelyn Blander,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tamera Rennie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Portia Cruzado,ou=Administrative,dc=bitwarden,dc=com", + "cn=Robinett Samson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sherman Frodsham,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maury Jansen,ou=Management,dc=bitwarden,dc=com", + "cn=Tilly Ocampo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pauli Capes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Augusta Subick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jastinder Gysel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jason Loveless,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pamella Trudel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lucina Volfe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sheena Chung,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Andriana Myers,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Henk Goin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Leese DeWiele,ou=Administrative,dc=bitwarden,dc=com", + "cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Emp Lenior,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lorine Skaret,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rora Duthie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aubrette Carlson,ou=Peons,dc=bitwarden,dc=com", + "cn=Delisle Moledina,ou=Management,dc=bitwarden,dc=com", + "cn=Chloris Fogle,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hadria Keung,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sarena Sandhar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shina Vilhan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Candace Nadler,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Osiris Rtpbuild,ou=Management,dc=bitwarden,dc=com", + "cn=Patt Lampe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ola Fricks,ou=Management,dc=bitwarden,dc=com", + "cn=Jobie Brassem,ou=Product Development,dc=bitwarden,dc=com", + "cn=Amarjit Shull,ou=Management,dc=bitwarden,dc=com", + "cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marriet Grau,ou=Peons,dc=bitwarden,dc=com", + "cn=Kellsie Tilmon,ou=Management,dc=bitwarden,dc=com", + "cn=Deloria Tulk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Julianna Towsley,ou=Peons,dc=bitwarden,dc=com", + "cn=Power Surazski,ou=Administrative,dc=bitwarden,dc=com", + "cn=YueMin Dube,ou=Peons,dc=bitwarden,dc=com", + "cn=Gerald Hamel,ou=Management,dc=bitwarden,dc=com", + "cn=Cami Hanley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Silvana Barakat,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maxey Bulman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dzung Newsom,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mats DMSDB,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kevyn Minai,ou=Management,dc=bitwarden,dc=com", + "cn=Dhanvinder Biss,ou=Peons,dc=bitwarden,dc=com", + "cn=Joan Badowski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Libby Sarna,ou=Peons,dc=bitwarden,dc=com", + "cn=Madalena Farnham,ou=Administrative,dc=bitwarden,dc=com", + "cn=Peder Chowhan,ou=Management,dc=bitwarden,dc=com", + "cn=Bird Bluschke,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kaycee Wiggins,ou=Management,dc=bitwarden,dc=com", + "cn=Fwpreg Daymond,ou=Peons,dc=bitwarden,dc=com", + "cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jobi Bryant,ou=Payroll,dc=bitwarden,dc=com", + "cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Modesta WAR,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Eveleen Jasti,ou=Peons,dc=bitwarden,dc=com", + "cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Toney Singh,ou=Peons,dc=bitwarden,dc=com", + "cn=Amelia Altekar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Audivox Duncan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eliezer Rheault,ou=Management,dc=bitwarden,dc=com", + "cn=KimMinh Lenehan,ou=Peons,dc=bitwarden,dc=com", + "cn=Viole Kirkland,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden,dc=com", + "cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden,dc=com", + "cn=Bahram Strauch,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jagdev Paulett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Graham Tanner,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Beau Watkins,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Durali Pickens,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jorry Yost,ou=Management,dc=bitwarden,dc=com", + "cn=Laser DeNest,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chanda Leenher,ou=Management,dc=bitwarden,dc=com", + "cn=Luke Catlett,ou=Management,dc=bitwarden,dc=com", + "cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden,dc=com", + "cn=Femke Krikorian,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden,dc=com", + "cn=Evert Traynor,ou=Management,dc=bitwarden,dc=com", + "cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tess Ketchum,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jordanna Cacha,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brietta Dages,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Natver Alleva,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden,dc=com", + "cn=Phan Rimsa,ou=Product Development,dc=bitwarden,dc=com", + "cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Thakor Brandon,ou=Peons,dc=bitwarden,dc=com", + "cn=Samir Guerin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Colene Revis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mike Funderburg,ou=Peons,dc=bitwarden,dc=com", + "cn=Rozalie Sassine,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jinny Siddell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kai Etemad,ou=Peons,dc=bitwarden,dc=com", + "cn=Odette Wagle,ou=Payroll,dc=bitwarden,dc=com", + "cn=Josephine Leon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gale Leder,ou=Product Development,dc=bitwarden,dc=com", + "cn=Danny Mau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alma McRann,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Martijn Groth,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Allyson Boroski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Janice Powney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marys Marleau,ou=Peons,dc=bitwarden,dc=com", + "cn=Colin Langelier,ou=Management,dc=bitwarden,dc=com", + "cn=Cornel Delzer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Liane Pappu,ou=Peons,dc=bitwarden,dc=com", + "cn=Ollie Mir,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tiffy Moyers,ou=Management,dc=bitwarden,dc=com", + "cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Catja Taralp,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jey Musick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kamil Doi,ou=Management,dc=bitwarden,dc=com", + "cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lelia Gougeon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mamie Godfrey,ou=Management,dc=bitwarden,dc=com", + "cn=Ibby Dragan,ou=Peons,dc=bitwarden,dc=com", + "cn=Krier Rouer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Neila Donleycott,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vithit Toothman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brear Wiklund,ou=Payroll,dc=bitwarden,dc=com", + "cn=Joletta Chaaban,ou=Payroll,dc=bitwarden,dc=com", + "cn=Allan Kpodzo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alvin Fleishman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Amos Nadeau,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden,dc=com", + "cn=Astra McPhail,ou=Management,dc=bitwarden,dc=com", + "cn=Miguelita Lukie,ou=Management,dc=bitwarden,dc=com", + "cn=Joellen Rummans,ou=Peons,dc=bitwarden,dc=com", + "cn=Blythe Bessette,ou=Management,dc=bitwarden,dc=com", + "cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden,dc=com", + "cn=Felipe Dassie,ou=Peons,dc=bitwarden,dc=com", + "cn=Renu Dermardiros,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yen Sails,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Claudie Willett,ou=Management,dc=bitwarden,dc=com", + "cn=Antonia Kashef,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leta Weeks,ou=Product Development,dc=bitwarden,dc=com", + "cn=Saraann Ku,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Malgosia Allaman,ou=Peons,dc=bitwarden,dc=com", + "cn=Dorri Brickey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gilles Tullo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stacia Wever,ou=Administrative,dc=bitwarden,dc=com", + "cn=Herman Georgiou,ou=Management,dc=bitwarden,dc=com", + "cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Clarey Shibata,ou=Management,dc=bitwarden,dc=com", + "cn=Elyn Witzmann,ou=Peons,dc=bitwarden,dc=com", + "cn=Corry Lasch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ilsa Reeder,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shaib Fysh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Goldarina Delaat,ou=Administrative,dc=bitwarden,dc=com", + "cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Con Liskoff,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dannie Belaire,ou=Payroll,dc=bitwarden,dc=com", + "cn=Syyed Nasato,ou=Payroll,dc=bitwarden,dc=com", + "cn=Paloma Meijer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anestassia Pilch,ou=Product Development,dc=bitwarden,dc=com", + "cn=Caroline Weakley,ou=Management,dc=bitwarden,dc=com", + "cn=Brad Widener,ou=Peons,dc=bitwarden,dc=com", + "cn=Nga Holvey,ou=Payroll,dc=bitwarden,dc=com", + "cn=Breanne Hatten,ou=Peons,dc=bitwarden,dc=com", + "cn=Babita Yuhn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sanjoy Burbage,ou=Management,dc=bitwarden,dc=com", + "cn=Hettie Grassmann,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jacques Lobello,ou=Administrative,dc=bitwarden,dc=com", + "cn=Susi Vezina,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hynek Bergland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Brenton Zou,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mohamed Popper,ou=Peons,dc=bitwarden,dc=com", + "cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden,dc=com", + "cn=Suzan Brisebois,ou=Administrative,dc=bitwarden,dc=com", + "cn=Violette Capostagno,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden,dc=com", + "cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liem Dalloste,ou=Management,dc=bitwarden,dc=com", + "cn=Bernita Hui,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mab Bhatia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bamby Ressner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nadir Harold,ou=Administrative,dc=bitwarden,dc=com", + "cn=Norikazu Loughery,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gerda Cuthill,ou=Payroll,dc=bitwarden,dc=com", + "cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Blakeley Moynihan,ou=Management,dc=bitwarden,dc=com", + "cn=Ronni DMSDB,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Desdemona Howes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Micaela Grelck,ou=Administrative,dc=bitwarden,dc=com", + "cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Moria Brandstadt,ou=Peons,dc=bitwarden,dc=com", + "cn=Raf VanAlphen,ou=Management,dc=bitwarden,dc=com", + "cn=Jianli Seniuk,ou=Management,dc=bitwarden,dc=com", + "cn=Stephani Wheatley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Misty Jamison,ou=Product Development,dc=bitwarden,dc=com", + "cn=Liduine Brindley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Inam Cripps,ou=Payroll,dc=bitwarden,dc=com", + "cn=Megumi Sattler,ou=Management,dc=bitwarden,dc=com", + "cn=Marlies Zalokar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tiphanie Banik,ou=Management,dc=bitwarden,dc=com", + "cn=Rosene Couse,ou=Payroll,dc=bitwarden,dc=com", + "cn=Adoree Sevilla,ou=Product Development,dc=bitwarden,dc=com", + "cn=Caye Clinton,ou=Management,dc=bitwarden,dc=com", + "cn=Ernie Waybright,ou=Product Development,dc=bitwarden,dc=com", + "cn=Doc Hamlett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Abdul Peschke,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cordi Systest,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jania Mong,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kristi Plato,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Simeon Schober,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leyton Artuso,ou=Payroll,dc=bitwarden,dc=com", + "cn=Di Corritore,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Norbert Meubus,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Allsun Briard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rec Desjardins,ou=Administrative,dc=bitwarden,dc=com", + "cn=Daveen Portelance,ou=Administrative,dc=bitwarden,dc=com", + "cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Christel Lebon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aura Kloth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Laser Totino,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mike Engman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marijo Tranter,ou=Peons,dc=bitwarden,dc=com", + "cn=Mainoo Fran,ou=Peons,dc=bitwarden,dc=com", + "cn=Janos Coulman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lacey Benfield,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Harrie Devenyi,ou=Management,dc=bitwarden,dc=com", + "cn=Lishe Tatum,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gena Skwarok,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=PierreAndre Crucefix,ou=Management,dc=bitwarden,dc=com", + "cn=Ree Smits,ou=Product Development,dc=bitwarden,dc=com", + "cn=Panch Talbot,ou=Product Development,dc=bitwarden,dc=com", + "cn=Janean Wittich,ou=Payroll,dc=bitwarden,dc=com", + "cn=Notley Loyola,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Caitlin Grover,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cissy Paris,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kedah Hedman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Susy Simard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nahum Mofina,ou=Payroll,dc=bitwarden,dc=com", + "cn=Patti Simcoe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Clarisse McArthur,ou=Administrative,dc=bitwarden,dc=com", + "cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dwight Naujoks,ou=Peons,dc=bitwarden,dc=com", + "cn=Melodee Buzzell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Schouwen Chahal,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kanya Reuben,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marji Corvo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Annarbor Zitko,ou=Management,dc=bitwarden,dc=com", + "cn=Genovera Thibodeaux,ou=Management,dc=bitwarden,dc=com", + "cn=Aleen Gure,ou=Peons,dc=bitwarden,dc=com", + "cn=Trever Jowett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Concettina Cegelski,ou=Peons,dc=bitwarden,dc=com", + "cn=Eleen Lew,ou=Management,dc=bitwarden,dc=com", + "cn=Minna Reddington,ou=Product Development,dc=bitwarden,dc=com", + "cn=Stateson Benning,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emil Pavlic,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kassia Newnam,ou=Payroll,dc=bitwarden,dc=com", + "cn=Clarke Angeli,ou=Administrative,dc=bitwarden,dc=com", + "cn=Flor Rabon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Damian Berning,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cristal Lum,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Palme Lystuik,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shina Tremaine,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Muire Cencier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Brinn Weinbender,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Candee Gozen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Julienne Spencer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Benny Kimm,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kyle Pape,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hetti Maciejewski,ou=Management,dc=bitwarden,dc=com", + "cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Peder Bevington,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Royce Kerr,ou=Payroll,dc=bitwarden,dc=com", + "cn=Madelon Armitage,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sohayla Resnick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Teri Fabry,ou=Administrative,dc=bitwarden,dc=com", + "cn=Deina Martincello,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aleen Ayre,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roseline Risher,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Reuben Lychak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kelsy Rozier,ou=Administrative,dc=bitwarden,dc=com", + "cn=Herronald Walta,ou=Management,dc=bitwarden,dc=com", + "cn=Oralee Shiflett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maurice Coe,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Greg Candelario,ou=Management,dc=bitwarden,dc=com", + "cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Genny Horemans,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Willeke Gagnon,ou=Management,dc=bitwarden,dc=com", + "cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nijen Testa,ou=Management,dc=bitwarden,dc=com", + "cn=Binni Vasile,ou=Administrative,dc=bitwarden,dc=com", + "cn=Thor Mamoulides,ou=Peons,dc=bitwarden,dc=com", + "cn=Merridie Charlinski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sundaram Trocchi,ou=Management,dc=bitwarden,dc=com", + "cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Divine Sebeh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tiff Mader,ou=Peons,dc=bitwarden,dc=com", + "cn=Karly Adornato,ou=Management,dc=bitwarden,dc=com", + "cn=Petrina Bovey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Andie Subasinghe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kimiko Florescu,ou=Management,dc=bitwarden,dc=com", + "cn=Agnesse Kiger,ou=Management,dc=bitwarden,dc=com", + "cn=Trude Hanham,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden,dc=com", + "cn=Greta Timler,ou=Peons,dc=bitwarden,dc=com", + "cn=Bobbye Ludviksen,ou=Management,dc=bitwarden,dc=com", + "cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Adiana Tohama,ou=Administrative,dc=bitwarden,dc=com", + "cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hildagarde Neumann,ou=Peons,dc=bitwarden,dc=com", + "cn=Sibylla Younger,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jodie Eckstein,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rea Barolet,ou=Management,dc=bitwarden,dc=com", + "cn=Rustu Paige,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Davinder Caves,ou=Product Development,dc=bitwarden,dc=com", + "cn=Celyne Settels,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marina Higham,ou=Payroll,dc=bitwarden,dc=com", + "cn=Augusto Gawargy,ou=Peons,dc=bitwarden,dc=com", + "cn=Hudai Popp,ou=Administrative,dc=bitwarden,dc=com", + "cn=Babak Tussey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lionel Childers,ou=Administrative,dc=bitwarden,dc=com", + "cn=Robena McDevitt,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gael Elias,ou=Peons,dc=bitwarden,dc=com", + "cn=Floria Harless,ou=Management,dc=bitwarden,dc=com", + "cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kandy Chanco,ou=Peons,dc=bitwarden,dc=com", + "cn=Vanya Pelissier,ou=Management,dc=bitwarden,dc=com", + "cn=Noubar Shute,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eliza Roney,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Els Sridhar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Masood Kemppainen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Karisa Botting,ou=Payroll,dc=bitwarden,dc=com", + "cn=Francisco Dallaire,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jordana Hersee,ou=Peons,dc=bitwarden,dc=com", + "cn=Gillan Hufana,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shep Schroeder,ou=Administrative,dc=bitwarden,dc=com", + "cn=Masahiro Haughey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mariele Puukila,ou=Management,dc=bitwarden,dc=com", + "cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=An Assenza,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nerta Huitt,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dela Gilliam,ou=Product Development,dc=bitwarden,dc=com", + "cn=Edric Dolginoff,ou=Product Development,dc=bitwarden,dc=com", + "cn=Livvy Flores,ou=Administrative,dc=bitwarden,dc=com", + "cn=Flossi Fumerton,ou=Management,dc=bitwarden,dc=com", + "cn=Fanni Noah,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tobe Blostein,ou=Payroll,dc=bitwarden,dc=com", + "cn=Madlen JodoinStJean,ou=Management,dc=bitwarden,dc=com", + "cn=Felipe McBroom,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Stella Hoare,ou=Human Resources,dc=bitwarden,dc=com", + "cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anthony Pringle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alexina Buschelman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Floris Decelles,ou=Peons,dc=bitwarden,dc=com", + "cn=Bella Jayamanne,ou=Product Development,dc=bitwarden,dc=com", + "cn=Erminie Normandin,ou=Management,dc=bitwarden,dc=com", + "cn=Niz Colucci,ou=Management,dc=bitwarden,dc=com", + "cn=Muni Strock,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aybars Lavers,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Careers DeSalis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anna Meckley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lilith Stejskal,ou=Payroll,dc=bitwarden,dc=com", + "cn=Prudy Australia,ou=Payroll,dc=bitwarden,dc=com", + "cn=Stevena Alberse,ou=Payroll,dc=bitwarden,dc=com", + "cn=Janson Finak,ou=Peons,dc=bitwarden,dc=com", + "cn=Trudy Hillring,ou=Administrative,dc=bitwarden,dc=com", + "cn=Albert Rolfes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Coletta Azad,ou=Management,dc=bitwarden,dc=com", + "cn=Celestyna DeVries,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Darda Mitrani,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Burton Falquero,ou=Management,dc=bitwarden,dc=com", + "cn=Lishe Suess,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Adora Droste,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Paper Blakeslee,ou=Administrative,dc=bitwarden,dc=com", + "cn=Teena Klavkalns,ou=Administrative,dc=bitwarden,dc=com", + "cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden,dc=com", + "cn=ChiKwan Lakhani,ou=Management,dc=bitwarden,dc=com", + "cn=Niz Tassy,ou=Peons,dc=bitwarden,dc=com", + "cn=Marg Cavanagh,ou=Peons,dc=bitwarden,dc=com", + "cn=Anthony Luyten,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mira Hinkel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Florette Amos,ou=Payroll,dc=bitwarden,dc=com", + "cn=Clara Maglione,ou=Management,dc=bitwarden,dc=com", + "cn=Kizzie Leang,ou=Peons,dc=bitwarden,dc=com", + "cn=Celestia Tobias,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jet McGregor,ou=Management,dc=bitwarden,dc=com", + "cn=Kristien Brokaw,ou=Peons,dc=bitwarden,dc=com", + "cn=Karole Su,ou=Payroll,dc=bitwarden,dc=com", + "cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden,dc=com", + "cn=Laureen Shrieves,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dalila Hassold,ou=Management,dc=bitwarden,dc=com", + "cn=Miro Trent,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ashley Woessner,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Orelia Nasir,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yoshiaki Blann,ou=Peons,dc=bitwarden,dc=com", + "cn=Jolie Dropin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mami Badjari,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nash Enstone,ou=Peons,dc=bitwarden,dc=com", + "cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Binny Strannemar,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dorri Auker,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Beverie Wada,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vivian Skaftason,ou=Peons,dc=bitwarden,dc=com", + "cn=Fayth Marr,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rowan Reichow,ou=Payroll,dc=bitwarden,dc=com", + "cn=Clementia Pesik,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sofie Baugnon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Astrid Montoya,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden,dc=com", + "cn=Grover Dehoff,ou=Management,dc=bitwarden,dc=com", + "cn=Nerty Nair,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rene McKearney,ou=Peons,dc=bitwarden,dc=com", + "cn=Pat Libadmin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kanu Slozil,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cecile Shupe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fahim Kandra,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gerald Laroche,ou=Janitorial,dc=bitwarden,dc=com", + "cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Devon Pesold,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Daile Burger,ou=Administrative,dc=bitwarden,dc=com", + "cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tricord Gumb,ou=Peons,dc=bitwarden,dc=com", + "cn=Shena Atteridge,ou=Product Development,dc=bitwarden,dc=com", + "cn=Silvester Piette,ou=Administrative,dc=bitwarden,dc=com", + "cn=Amnon Gause,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clemente Eva,ou=Product Development,dc=bitwarden,dc=com", + "cn=Donnajean Carron,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ailene Chavez,ou=Payroll,dc=bitwarden,dc=com", + "cn=Annet Leshowitz,ou=Management,dc=bitwarden,dc=com", + "cn=Willy Jimenez,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Teddi Arai,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tammy McBeth,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Waverly Cadshare,ou=Administrative,dc=bitwarden,dc=com", + "cn=JeanLouis Okura,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tonia Khosla,ou=Peons,dc=bitwarden,dc=com", + "cn=Binni Rasmussen,ou=Management,dc=bitwarden,dc=com", + "cn=Herb Stansbury,ou=Peons,dc=bitwarden,dc=com", + "cn=Ralina Fouke,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Merridie Vankooten,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden,dc=com", + "cn=Millie Doda,ou=Management,dc=bitwarden,dc=com", + "cn=Alexia Layton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lottie Filpus,ou=Management,dc=bitwarden,dc=com", + "cn=Tommie Craib,ou=Peons,dc=bitwarden,dc=com", + "cn=Narrima Cavnar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Walt Gentes,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gay Acelvari,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Raeann Laws,ou=Peons,dc=bitwarden,dc=com", + "cn=YuKai Goodrow,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tad Caceres,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dorreen Dewit,ou=Administrative,dc=bitwarden,dc=com", + "cn=Francisca Griswold,ou=Management,dc=bitwarden,dc=com", + "cn=Motaz Metz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lorry Suprick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cassey Precoda,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kevina Zauhar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Diandra Pafilis,ou=Management,dc=bitwarden,dc=com", + "cn=Shaylah Poyner,ou=Peons,dc=bitwarden,dc=com", + "cn=Agenia Joshi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Imre Farag,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alina Naphan,ou=Management,dc=bitwarden,dc=com", + "cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Twila Billard,ou=Management,dc=bitwarden,dc=com", + "cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ari Windom,ou=Product Development,dc=bitwarden,dc=com", + "cn=Opaline Gomes,ou=Management,dc=bitwarden,dc=com", + "cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden,dc=com", + "cn=Svend Bongers,ou=Administrative,dc=bitwarden,dc=com", + "cn=Suzette Burkey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Klazina Grabowski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jester Alink,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Andre Hatzenbichler,ou=Management,dc=bitwarden,dc=com", + "cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Raudres Negandhi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marj Posta,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden,dc=com", + "cn=WaiMan Stillwell,ou=Peons,dc=bitwarden,dc=com", + "cn=Audi Adamski,ou=Peons,dc=bitwarden,dc=com", + "cn=Earl Stanton,ou=Peons,dc=bitwarden,dc=com", + "cn=Reggie Venturini,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jannelle Berro,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marya Buford,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kally Tinney,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Verile Maksoud,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shaun Sandhu,ou=Management,dc=bitwarden,dc=com", + "cn=Michal Andrew,ou=Administrative,dc=bitwarden,dc=com", + "cn=Valerie Efthim,ou=Peons,dc=bitwarden,dc=com", + "cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sadella Loggins,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden,dc=com", + "cn=HackHoo Hunter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Meter Hickerson,ou=Peons,dc=bitwarden,dc=com", + "cn=MaryKay Lan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Giana Pierson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shiela Anthonissen,ou=Management,dc=bitwarden,dc=com", + "cn=Toby Winterberg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Leticia Metheny,ou=Management,dc=bitwarden,dc=com", + "cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden,dc=com", + "cn=Raven Tuan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leddy Kochis,ou=Peons,dc=bitwarden,dc=com", + "cn=Niek Tripp,ou=Administrative,dc=bitwarden,dc=com", + "cn=Curtis Caglayan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eladio Nadler,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kameko Ayres,ou=Product Development,dc=bitwarden,dc=com", + "cn=Florinda Templeton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Omayma Halula,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shellie Blethen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Corliss Pharris,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mareah Gooderham,ou=Product Development,dc=bitwarden,dc=com", + "cn=Olwen Yelvington,ou=Management,dc=bitwarden,dc=com", + "cn=Maiga Buder,ou=Product Development,dc=bitwarden,dc=com", + "cn=Madlen Booking,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darell Liang,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Neena Mayes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hannie Robieux,ou=Payroll,dc=bitwarden,dc=com", + "cn=Regine Iantaffi,ou=Peons,dc=bitwarden,dc=com", + "cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gladi Steffes,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kalli Chanonat,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bob Gronwall,ou=Peons,dc=bitwarden,dc=com", + "cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden,dc=com", + "cn=Faunie Moroz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Avrit Abrahim,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bernard Placido,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Flory Ganadry,ou=Management,dc=bitwarden,dc=com", + "cn=Berti Steski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Charline Fross,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bonnar Burns,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kate Scorziello,ou=Administrative,dc=bitwarden,dc=com", + "cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Olenka Tota,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ceil Foubert,ou=Human Resources,dc=bitwarden,dc=com", + "cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Devinne Zanga,ou=Peons,dc=bitwarden,dc=com", + "cn=Letti Boocock,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Charin Fallah,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Clea Astorino,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cassandry Hilton,ou=Peons,dc=bitwarden,dc=com", + "cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karlene Homan,ou=Management,dc=bitwarden,dc=com", + "cn=Anjanette McCaffity,ou=Management,dc=bitwarden,dc=com", + "cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Micky Brodowski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Neetu Miles,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rhodia Irick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Phat Mecteau,ou=Peons,dc=bitwarden,dc=com", + "cn=Tzung Winfield,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Amandie Britman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Brittani Guitard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hubert Majors,ou=Payroll,dc=bitwarden,dc=com", + "cn=KinYee Amini,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Riva Malott,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gizela Fenez,ou=Peons,dc=bitwarden,dc=com", + "cn=Thompson Santos,ou=Payroll,dc=bitwarden,dc=com", + "cn=Student Anker,ou=Peons,dc=bitwarden,dc=com", + "cn=Carlita Flores,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Domenick Thomey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lanie Wayler,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roxi Leonida,ou=Administrative,dc=bitwarden,dc=com", + "cn=Isin Paczynski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Condell MacPhail,ou=Administrative,dc=bitwarden,dc=com", + "cn=Swd Braganza,ou=Management,dc=bitwarden,dc=com", + "cn=Herbie Bilton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tas Hagerty,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cristin Pambianchi,ou=Management,dc=bitwarden,dc=com", + "cn=Deann Lutz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Datha Apter,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aretha Kursell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Norry Trpisovsky,ou=Peons,dc=bitwarden,dc=com", + "cn=Ladell Doig,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mer Hasan,ou=Peons,dc=bitwarden,dc=com", + "cn=Therine Solman,ou=Peons,dc=bitwarden,dc=com", + "cn=Garnet Gooch,ou=Administrative,dc=bitwarden,dc=com", + "cn=Colli Magee,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sammy Topol,ou=Management,dc=bitwarden,dc=com", + "cn=Chelsae Cacha,ou=Management,dc=bitwarden,dc=com", + "cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Melvin Stanton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Annabella Fisher,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pelly Difilippo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Virginia Clites,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lionel Kahil,ou=Management,dc=bitwarden,dc=com", + "cn=Beatrix Weger,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Roxanne Klimon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ernestine Campara,ou=Management,dc=bitwarden,dc=com", + "cn=Gaal Jcst,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nancy Cesario,ou=Management,dc=bitwarden,dc=com", + "cn=Rosita Carella,ou=Peons,dc=bitwarden,dc=com", + "cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Keven Cordy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wan Savard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jen Kamoun,ou=Administrative,dc=bitwarden,dc=com", + "cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zitella Paylor,ou=Administrative,dc=bitwarden,dc=com", + "cn=Logan Blaylock,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Merunix Walkley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kaja Runkel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leia Samuel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Catha Matsunaga,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Luc Harless,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Katja Firtos,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden,dc=com", + "cn=Mechelle Khawar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Channa Abernethy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Benita Lathrop,ou=Management,dc=bitwarden,dc=com", + "cn=Zelda Naem,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bettina Kudas,ou=Management,dc=bitwarden,dc=com", + "cn=Bettye Stern,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Janice Mattes,ou=Management,dc=bitwarden,dc=com", + "cn=Indiana Cobo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lan Galbraith,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joey Godcharles,ou=Management,dc=bitwarden,dc=com", + "cn=Anastasia Sunstrum,ou=Management,dc=bitwarden,dc=com", + "cn=Dyan Reller,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yih DeCecco,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Leese Paul,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nani Dedas,ou=Payroll,dc=bitwarden,dc=com", + "cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sari Rettie,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Etty Lowther,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Toss Basa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Naohiko Fradette,ou=Administrative,dc=bitwarden,dc=com", + "cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mathew Rodkey,ou=Peons,dc=bitwarden,dc=com", + "cn=Sherry Maness,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Delphinia Brehm,ou=Product Development,dc=bitwarden,dc=com", + "cn=Roselin Payn,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Arline Fryer,ou=Management,dc=bitwarden,dc=com", + "cn=Piper Lesperance,ou=Peons,dc=bitwarden,dc=com", + "cn=Mindy Herring,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vonnie Bullard,ou=Peons,dc=bitwarden,dc=com", + "cn=Lotti Gutcher,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sheldon Overton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Celestine Zargham,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marv Regier,ou=Product Development,dc=bitwarden,dc=com", + "cn=Teddi Behler,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pascale Lawrie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Class Focht,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Leonida Raha,ou=Management,dc=bitwarden,dc=com", + "cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ree Goodier,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Raj Mahlig,ou=Peons,dc=bitwarden,dc=com", + "cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ruchel Jobs,ou=Management,dc=bitwarden,dc=com", + "cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Fanchette Wittich,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lorie Boucher,ou=Peons,dc=bitwarden,dc=com", + "cn=MingChang Presner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dierdre Rehel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ulrica Benda,ou=Administrative,dc=bitwarden,dc=com", + "cn=Brechtje Revah,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Howden Hoxie,ou=Management,dc=bitwarden,dc=com", + "cn=Marjory Hardin,ou=Management,dc=bitwarden,dc=com", + "cn=Kac Geuder,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Conchita Borek,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carter Billard,ou=Peons,dc=bitwarden,dc=com", + "cn=Alison Culberson,ou=Management,dc=bitwarden,dc=com", + "cn=Dev Lynham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lucie Longhenry,ou=Product Development,dc=bitwarden,dc=com", + "cn=Somsak Breault,ou=Administrative,dc=bitwarden,dc=com", + "cn=Regina Astor,ou=Peons,dc=bitwarden,dc=com", + "cn=Idalia Krauel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lolly Mattson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Corinna Jesshope,ou=Administrative,dc=bitwarden,dc=com", + "cn=Guinevere Bower,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden,dc=com", + "cn=Frederic Kemish,ou=Payroll,dc=bitwarden,dc=com", + "cn=Barb Mandel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rochell Muise,ou=Management,dc=bitwarden,dc=com", + "cn=Thea Atteridge,ou=Administrative,dc=bitwarden,dc=com", + "cn=Theressa Marks,ou=Management,dc=bitwarden,dc=com", + "cn=Agna Ntelpac,ou=Peons,dc=bitwarden,dc=com", + "cn=Peder Grewal,ou=Peons,dc=bitwarden,dc=com", + "cn=Melony Nahas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ileana Ude,ou=Peons,dc=bitwarden,dc=com", + "cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fscocos Azari,ou=Payroll,dc=bitwarden,dc=com", + "cn=Charmaine Rahmany,ou=Peons,dc=bitwarden,dc=com", + "cn=Ayn Odum,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden,dc=com", + "cn=Norm Berrisford,ou=Peons,dc=bitwarden,dc=com", + "cn=Elly Nagarur,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lenette Sandness,ou=Management,dc=bitwarden,dc=com", + "cn=Emyle Fuqua,ou=Management,dc=bitwarden,dc=com", + "cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Elysia McDuffie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lorilee Projects,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Amalee Borg,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden,dc=com", + "cn=ThanhHung McAdams,ou=Management,dc=bitwarden,dc=com", + "cn=Jessa Simmons,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Timothea Culverhouse,ou=Peons,dc=bitwarden,dc=com", + "cn=Dorice Op,ou=Management,dc=bitwarden,dc=com", + "cn=Estrellita Haney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maddalena Hammermeister,ou=Management,dc=bitwarden,dc=com", + "cn=Alfonso Benyon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden,dc=com", + "cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alfy McBroom,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fina Hoctor,ou=Peons,dc=bitwarden,dc=com", + "cn=Ardene Cuu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cristie Madani,ou=Peons,dc=bitwarden,dc=com", + "cn=Stephane Zorzi,ou=Management,dc=bitwarden,dc=com", + "cn=Ellen Kruusement,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Arnie Vickers,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tak Kuhlkamp,ou=Management,dc=bitwarden,dc=com", + "cn=Linet Gartshore,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dina Satta,ou=Product Development,dc=bitwarden,dc=com", + "cn=Candis Bothwell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Daphene Minck,ou=Administrative,dc=bitwarden,dc=com", + "cn=Adan Duncan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Willa Trisko,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Katalin Totten,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=CostasDinos Labrador,ou=Management,dc=bitwarden,dc=com", + "cn=Andrzej Coulman,ou=Peons,dc=bitwarden,dc=com", + "cn=Sheryl Perrin,ou=Peons,dc=bitwarden,dc=com", + "cn=Emma Mullaney,ou=Management,dc=bitwarden,dc=com", + "cn=Son Beneda,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Grey Mathis,ou=Management,dc=bitwarden,dc=com", + "cn=Briney McReady,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden,dc=com", + "cn=Erle Gravitt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tresrch Valko,ou=Management,dc=bitwarden,dc=com", + "cn=Cherey Braginetz,ou=Management,dc=bitwarden,dc=com", + "cn=Annadiane Kok,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ozay Dulin,ou=Management,dc=bitwarden,dc=com", + "cn=Avtar Markle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rodi Pettinger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anett Gach,ou=Management,dc=bitwarden,dc=com", + "cn=Golda Hanington,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marlyne Shein,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Doortje Kennedy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jacenta Pufpaff,ou=Management,dc=bitwarden,dc=com", + "cn=Kirit Steede,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Declan McQuaig,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fairy Soyster,ou=Administrative,dc=bitwarden,dc=com", + "cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shashi Vitaglian,ou=Management,dc=bitwarden,dc=com", + "cn=Henri Challice,ou=Peons,dc=bitwarden,dc=com", + "cn=Moreen CSR,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Geralene Sabri,ou=Payroll,dc=bitwarden,dc=com", + "cn=Melhem Sherrer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Coors Lavarnway,ou=Product Development,dc=bitwarden,dc=com", + "cn=Perrine Kursell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alane Lou,ou=Management,dc=bitwarden,dc=com", + "cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Demet Ince,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bev Lineham,ou=Payroll,dc=bitwarden,dc=com", + "cn=Corinna Thorson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Daniela Rizk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mentor Endsley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=PeyKee Rusin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wojciech Zorony,ou=Peons,dc=bitwarden,dc=com", + "cn=Juliane Lafata,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden,dc=com", + "cn=Buck Willoughby,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Atsushi Bible,ou=Administrative,dc=bitwarden,dc=com", + "cn=Veen Graibe,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Juli Poe,ou=Management,dc=bitwarden,dc=com", + "cn=Keys Foos,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hanneke Weil,ou=Janitorial,dc=bitwarden,dc=com", + "cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Narrima Kaplan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nellie Guth,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ermengarde Swact,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carmelo Holley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Virgie Ensign,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vittorio Msg,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ragui Radford,ou=Management,dc=bitwarden,dc=com", + "cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amalia Giertych,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bert McDougall,ou=Peons,dc=bitwarden,dc=com", + "cn=Cherida Behlen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Willa Brandsen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nancey Piggott,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bui Potesta,ou=Administrative,dc=bitwarden,dc=com", + "cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ivo Dobbs,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brigitta Maskell,ou=Peons,dc=bitwarden,dc=com", + "cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nong Polashock,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gisele Forbes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden,dc=com", + "cn=Madonna Sheu,ou=Management,dc=bitwarden,dc=com", + "cn=Dzung Evans,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hermione Delf,ou=Product Development,dc=bitwarden,dc=com", + "cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Koray Deleon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Korie Swinks,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Wynnie Joyce,ou=Peons,dc=bitwarden,dc=com", + "cn=Teetwo Jarman,ou=Management,dc=bitwarden,dc=com", + "cn=Flss Daquano,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Doc Frederick,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hellmut Harrod,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kelcie Uchida,ou=Product Development,dc=bitwarden,dc=com", + "cn=Oksana Sitler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vitia Dacre,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carly Cencier,ou=Management,dc=bitwarden,dc=com", + "cn=Loc Sochovka,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tonye Lenox,ou=Payroll,dc=bitwarden,dc=com", + "cn=Olly Ooi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Margie Herman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Giustina Farrington,ou=Payroll,dc=bitwarden,dc=com", + "cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Liviu Fisprod,ou=Management,dc=bitwarden,dc=com", + "cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alfons Toothman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ronica Espinosa,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jeane Yuhanna,ou=Peons,dc=bitwarden,dc=com", + "cn=Paulien Misutka,ou=Management,dc=bitwarden,dc=com", + "cn=Humberto Azevedo,ou=Management,dc=bitwarden,dc=com", + "cn=Cissy Benning,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gib Gouhara,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ameline Ikotin,ou=Management,dc=bitwarden,dc=com", + "cn=Johanne Coloads,ou=Administrative,dc=bitwarden,dc=com", + "cn=Germaine Sabri,ou=Management,dc=bitwarden,dc=com", + "cn=Justine Gramiak,ou=Peons,dc=bitwarden,dc=com", + "cn=Selma Coxe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nga Hoag,ou=Janitorial,dc=bitwarden,dc=com", + "cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Claudette Towers,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wilhelmina Yardy,ou=Management,dc=bitwarden,dc=com", + "cn=Farooq Rosche,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elyssa Schvan,ou=Peons,dc=bitwarden,dc=com", + "cn=Phoenix Jims,ou=Human Resources,dc=bitwarden,dc=com", + "cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Melesa Kaypour,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shoji Truelove,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Turus Risto,ou=Management,dc=bitwarden,dc=com", + "cn=Metrics Bartley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Calla Floysvik,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alparslan McAdams,ou=Management,dc=bitwarden,dc=com", + "cn=Tej OSullivan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Melly Plourde,ou=Peons,dc=bitwarden,dc=com", + "cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ara Coules,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden,dc=com", + "cn=Heida Barnett,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marylynne Wolski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mellisa Cormier,ou=Administrative,dc=bitwarden,dc=com", + "cn=Neely Schluter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dorelia Cohrs,ou=Management,dc=bitwarden,dc=com", + "cn=Dede Fernald,ou=Peons,dc=bitwarden,dc=com", + "cn=Real Piitz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Petunia Croteau,ou=Administrative,dc=bitwarden,dc=com", + "cn=Haley Tsonos,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hyacinth Hamner,ou=Management,dc=bitwarden,dc=com", + "cn=Clemence Gardiner,ou=Peons,dc=bitwarden,dc=com", + "cn=Francine Laurich,ou=Management,dc=bitwarden,dc=com", + "cn=Narrima Saucerman,ou=Peons,dc=bitwarden,dc=com", + "cn=Han Cozyn,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Chuck Dorr,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Andre Ashworth,ou=Management,dc=bitwarden,dc=com", + "cn=Edin Kell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Theresa Rendon,ou=Peons,dc=bitwarden,dc=com", + "cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jacenta Byczko,ou=Peons,dc=bitwarden,dc=com", + "cn=Cass Boehms,ou=Management,dc=bitwarden,dc=com", + "cn=Melba Holvey,ou=Peons,dc=bitwarden,dc=com", + "cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cristofaro Beland,ou=Management,dc=bitwarden,dc=com", + "cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden,dc=com", + "cn=Inam Ouzas,ou=Payroll,dc=bitwarden,dc=com", + "cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Quang Austin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kassi Ottosson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Christian Bradlow,ou=Payroll,dc=bitwarden,dc=com", + "cn=Azar Darnel,ou=Peons,dc=bitwarden,dc=com", + "cn=Reza Reinboth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Indira Dimitry,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Subhashini Freiwald,ou=Management,dc=bitwarden,dc=com", + "cn=Izzy Metherell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dreddy Willett,ou=Management,dc=bitwarden,dc=com", + "cn=Avis Benham,ou=Management,dc=bitwarden,dc=com", + "cn=Wilie Eva,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zorine OHearn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Niek Salazar,ou=Peons,dc=bitwarden,dc=com", + "cn=Prabir Bachynski,ou=Management,dc=bitwarden,dc=com", + "cn=Steen Selchow,ou=Peons,dc=bitwarden,dc=com", + "cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden,dc=com", + "cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tessi Nagai,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sande Lonsdale,ou=Administrative,dc=bitwarden,dc=com", + "cn=Euphemia Byer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jewell Samson,ou=Management,dc=bitwarden,dc=com", + "cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Haley McMannen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Joyous Bessette,ou=Product Development,dc=bitwarden,dc=com", + "cn=Emanuel Tupas,ou=Management,dc=bitwarden,dc=com", + "cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Janeczka Bautista,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alf Meunier,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dena Stevenson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Khalil Verch,ou=Peons,dc=bitwarden,dc=com", + "cn=Adela Rios,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roselle Sowry,ou=Management,dc=bitwarden,dc=com", + "cn=Leonida Wenham,ou=Payroll,dc=bitwarden,dc=com", + "cn=Camille Balog,ou=Peons,dc=bitwarden,dc=com", + "cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lona Tuttle,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ryszard Dack,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Channa Bergeron,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dannie Leth,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Noell McWalters,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ally Viehweg,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elena Leima,ou=Administrative,dc=bitwarden,dc=com", + "cn=Manny Grau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cornie Hobgood,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kirsti Sridaran,ou=Peons,dc=bitwarden,dc=com", + "cn=Cynthya Ganness,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Becky Bento,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Murial Richardson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ashok Ugwa,ou=Peons,dc=bitwarden,dc=com", + "cn=Sarena Devgon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Valeria Bracewell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cristina Ard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Katrinka Harville,ou=Administrative,dc=bitwarden,dc=com", + "cn=Colette Chern,ou=Product Testing,dc=bitwarden,dc=com", + "cn=PohSoon Mellor,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden,dc=com", + "cn=Reg Mou,ou=Payroll,dc=bitwarden,dc=com", + "cn=Flor Fong,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Will Imbemba,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Serene Lindquist,ou=Product Development,dc=bitwarden,dc=com", + "cn=Joeann Upton,ou=Peons,dc=bitwarden,dc=com", + "cn=Fariba Cowell,ou=Peons,dc=bitwarden,dc=com", + "cn=Annadiane Meijer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cleo Mgmt,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ferne Finane,ou=Payroll,dc=bitwarden,dc=com", + "cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elisabetta Angell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Me Womack,ou=Payroll,dc=bitwarden,dc=com", + "cn=Randie Takata,ou=Payroll,dc=bitwarden,dc=com", + "cn=Birgitte Marshall,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lorita Pilon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ind Brindley,ou=Peons,dc=bitwarden,dc=com", + "cn=Gaal Ugwa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tilda Sharratt,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yueping Kardomateas,ou=Peons,dc=bitwarden,dc=com", + "cn=Bela Plaisance,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carlen Privitera,ou=Payroll,dc=bitwarden,dc=com", + "cn=Survey Vanta,ou=Peons,dc=bitwarden,dc=com", + "cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bevyn Germano,ou=Peons,dc=bitwarden,dc=com", + "cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Norcal Sabourin,ou=Management,dc=bitwarden,dc=com", + "cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cuong Schwab,ou=Peons,dc=bitwarden,dc=com", + "cn=Seang Reichinger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sherryl Appell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rayna Hanford,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hynek Alles,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cal Wilby,ou=Administrative,dc=bitwarden,dc=com", + "cn=Furrukh Gros,ou=Peons,dc=bitwarden,dc=com", + "cn=Barlas Rezzik,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cong Kish,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ping ONeill,ou=Peons,dc=bitwarden,dc=com", + "cn=Aladin Mikulka,ou=Peons,dc=bitwarden,dc=com", + "cn=Marj Baldock,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden,dc=com", + "cn=Abby Theocharakis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Linnea Boucouris,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bernd Gaebel,ou=Management,dc=bitwarden,dc=com", + "cn=Tiina Ackaouy,ou=Management,dc=bitwarden,dc=com", + "cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Florrie Latin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bliss Salinas,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Binny MacGregor,ou=Administrative,dc=bitwarden,dc=com", + "cn=Margie Rubin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sarene Videa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Harpal Iskandar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Melloney Mussar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Arnett Typer,ou=Peons,dc=bitwarden,dc=com", + "cn=Dulce Dore,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mandy Auth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nata Lampman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Scpiivo Lauten,ou=Management,dc=bitwarden,dc=com", + "cn=Susannah Ergle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sharona Purohit,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sukey Ameen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dhawal Obenauf,ou=Management,dc=bitwarden,dc=com", + "cn=Nuntel Cozart,ou=Administrative,dc=bitwarden,dc=com", + "cn=Turkey Massone,ou=Peons,dc=bitwarden,dc=com", + "cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maxie Aladangady,ou=Management,dc=bitwarden,dc=com", + "cn=Housseini Sammons,ou=Product Development,dc=bitwarden,dc=com", + "cn=Saraann Koman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Saudra Griffith,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yongli Craver,ou=Management,dc=bitwarden,dc=com", + "cn=Pardip LaVecchia,ou=Peons,dc=bitwarden,dc=com", + "cn=Subhash Waid,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Deane Saiyed,ou=Peons,dc=bitwarden,dc=com", + "cn=Joannah McBryan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kyle Anconetani,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cicily Carlisle,ou=Management,dc=bitwarden,dc=com", + "cn=Carole Coats,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Leonelle Halpern,ou=Payroll,dc=bitwarden,dc=com", + "cn=Clare Deatrick,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marty Maunu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ronni Paynter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Duong Davies,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Greer Behlen,ou=Peons,dc=bitwarden,dc=com", + "cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden,dc=com", + "cn=Poldi Volk,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden,dc=com", + "cn=Estelle Specs,ou=Management,dc=bitwarden,dc=com", + "cn=Tina Guarino,ou=Peons,dc=bitwarden,dc=com", + "cn=Pamelina Kovats,ou=Management,dc=bitwarden,dc=com", + "cn=Dany deGrace,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden,dc=com", + "cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden,dc=com", + "cn=Grata Hosang,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Eoin Ketchum,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rora Feild,ou=Payroll,dc=bitwarden,dc=com", + "cn=Chryste Tsenter,ou=Peons,dc=bitwarden,dc=com", + "cn=Yoda Calleja,ou=Management,dc=bitwarden,dc=com", + "cn=Vannie Babalola,ou=Peons,dc=bitwarden,dc=com", + "cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden,dc=com", + "cn=Sheryl Diec,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Candice Scribner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Farand Rambow,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darb Jedrysiak,ou=Peons,dc=bitwarden,dc=com", + "cn=Valentia Edmison,ou=Administrative,dc=bitwarden,dc=com", + "cn=Reid Hotline,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nelli Camblin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shaji Heilig,ou=Management,dc=bitwarden,dc=com", + "cn=Angil Shariff,ou=Peons,dc=bitwarden,dc=com", + "cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Linet McRitchie,ou=Management,dc=bitwarden,dc=com", + "cn=Chen Mayer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anibal Nafezi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Monteene Azmak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bep Ramsayer,ou=Peons,dc=bitwarden,dc=com", + "cn=Emilee Mereu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Madalena Brodie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Liese Childers,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shekar Finnie,ou=Management,dc=bitwarden,dc=com", + "cn=Ilysa Connor,ou=Peons,dc=bitwarden,dc=com", + "cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Milly Taghizadeh,ou=Management,dc=bitwarden,dc=com", + "cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Guglielma Gomes,ou=Peons,dc=bitwarden,dc=com", + "cn=Malorie Sei,ou=Product Development,dc=bitwarden,dc=com", + "cn=Loella Stephenson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rozalie Farr,ou=Management,dc=bitwarden,dc=com", + "cn=Jessa Humphrey,ou=Peons,dc=bitwarden,dc=com", + "cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden,dc=com", + "cn=Audrie Rembecki,ou=Management,dc=bitwarden,dc=com", + "cn=Miroslav Federico,ou=Payroll,dc=bitwarden,dc=com", + "cn=Steffi Voelcker,ou=Peons,dc=bitwarden,dc=com", + "cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden,dc=com", + "cn=Aloysia OKarina,ou=Management,dc=bitwarden,dc=com", + "cn=Betsy Braun,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carling Cupido,ou=Product Development,dc=bitwarden,dc=com", + "cn=Saman McNichol,ou=Management,dc=bitwarden,dc=com", + "cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Selma Slotnick,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Felicia Holz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Joke Cottengim,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sonoe Linke,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marce Tracey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Muffin Gadbois,ou=Management,dc=bitwarden,dc=com", + "cn=Ros Rajwani,ou=Peons,dc=bitwarden,dc=com", + "cn=Lynnelle Shane,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kissee Ide,ou=Peons,dc=bitwarden,dc=com", + "cn=Leesa Trader,ou=Peons,dc=bitwarden,dc=com", + "cn=Indy Pullan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Micro Valente,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lea Marineau,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dinh Yadollahi,ou=Management,dc=bitwarden,dc=com", + "cn=Nj Patchett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Helsa Calis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Drona Panter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Filia Magnusson,ou=Management,dc=bitwarden,dc=com", + "cn=Bernadette Schmelzel,ou=Management,dc=bitwarden,dc=com", + "cn=Elva Radcliffe,ou=Administrative,dc=bitwarden,dc=com", + "cn=Janson Sealy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bethina Horak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Manny Burkhardt,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mehmud Rios,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jinann Wildeman,ou=Management,dc=bitwarden,dc=com", + "cn=Lisetta Semler,ou=Management,dc=bitwarden,dc=com", + "cn=Trenna Fradette,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sashenka Warwick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bassam Cisco,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Yvan Kea,ou=Management,dc=bitwarden,dc=com", + "cn=Ijff Monforton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anderson Nunold,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dulcia Burkey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Isidora Wilczewski,ou=Management,dc=bitwarden,dc=com", + "cn=Alexine Tarof,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ashok Bagg,ou=Management,dc=bitwarden,dc=com", + "cn=Antoni Friesen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Beate Ribot,ou=Administrative,dc=bitwarden,dc=com", + "cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pde Bautista,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marco Cho,ou=Administrative,dc=bitwarden,dc=com", + "cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ashly McNitt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ginni Brunelle,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maybelle Hammond,ou=Management,dc=bitwarden,dc=com", + "cn=Georgine Delaney,ou=Peons,dc=bitwarden,dc=com", + "cn=Brent Guindi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Annette Madgett,ou=Management,dc=bitwarden,dc=com", + "cn=Tesa Duda,ou=Payroll,dc=bitwarden,dc=com", + "cn=Idus Welch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fina Volkmann,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eirena Mahn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pinakin Spooner,ou=Management,dc=bitwarden,dc=com", + "cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kannan McCabe,ou=Management,dc=bitwarden,dc=com", + "cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Magda Bullard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dzung Datema,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kiele Boggs,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Othelia Humphrey,ou=Payroll,dc=bitwarden,dc=com", + "cn=Willabella Sarto,ou=Peons,dc=bitwarden,dc=com", + "cn=Maitreya Carriere,ou=Management,dc=bitwarden,dc=com", + "cn=Marje Sherwin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dode Schnell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden,dc=com", + "cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden,dc=com", + "cn=PuiWah Szopinski,ou=Peons,dc=bitwarden,dc=com", + "cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jack Totaro,ou=Management,dc=bitwarden,dc=com", + "cn=Hettie Phagan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Margalo Scholey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Delly Newnam,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ernst Dinkel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Charis Armstead,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Purnam Dillabough,ou=Peons,dc=bitwarden,dc=com", + "cn=Cart Fillmore,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yuen Maybee,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Petr Battershill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Beulah Nowell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Aryn Mills,ou=Peons,dc=bitwarden,dc=com", + "cn=Car Gillet,ou=Peons,dc=bitwarden,dc=com", + "cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ronn Gorsky,ou=Payroll,dc=bitwarden,dc=com", + "cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roly Dirilten,ou=Administrative,dc=bitwarden,dc=com", + "cn=Betteann Thaker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Howden Raglin,ou=Peons,dc=bitwarden,dc=com", + "cn=Madeline Sipple,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zulema Marra,ou=Management,dc=bitwarden,dc=com", + "cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden,dc=com", + "cn=Amalita Ivancevic,ou=Management,dc=bitwarden,dc=com", + "cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden,dc=com", + "cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lazlo McClelland,ou=Product Development,dc=bitwarden,dc=com", + "cn=Angele Mitrani,ou=Management,dc=bitwarden,dc=com", + "cn=Ghislain Kechichian,ou=Peons,dc=bitwarden,dc=com", + "cn=Merrily Administrator,ou=Management,dc=bitwarden,dc=com", + "cn=Zena Farrell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ovila Lanctot,ou=Payroll,dc=bitwarden,dc=com", + "cn=Karie Kurash,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kalina Mednick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yannis Behnam,ou=Peons,dc=bitwarden,dc=com", + "cn=Lionel Carevic,ou=Peons,dc=bitwarden,dc=com", + "cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Olav McNitt,ou=Peons,dc=bitwarden,dc=com", + "cn=Jobi ONeal,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ellissa Marson,ou=Management,dc=bitwarden,dc=com", + "cn=Anita Bovee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gavin Buckingham,ou=Administrative,dc=bitwarden,dc=com", + "cn=Joke Reddick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Johna Revill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marlee Gillespie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Des Theriot,ou=Management,dc=bitwarden,dc=com", + "cn=Daphine Kobeski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Subhashini Bachewich,ou=Peons,dc=bitwarden,dc=com", + "cn=Linnell Altekar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aubrette Holz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mollee Etemad,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Renie Spicer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Halley Clason,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mister Stampfl,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hq Skelly,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anthony Markham,ou=Management,dc=bitwarden,dc=com", + "cn=Neilla Shingler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Korrie Stallcup,ou=Management,dc=bitwarden,dc=com", + "cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Delcina Barcza,ou=Product Development,dc=bitwarden,dc=com", + "cn=Evette Coddington,ou=Peons,dc=bitwarden,dc=com", + "cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Joelynn Lightfield,ou=Peons,dc=bitwarden,dc=com", + "cn=Isaac Cossota,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lyle DorionMagnan,ou=Management,dc=bitwarden,dc=com", + "cn=Tsing Daya,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Achal Justus,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ilda Meskimen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden,dc=com", + "cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jaya Ellul,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tessi Hipp,ou=Peons,dc=bitwarden,dc=com", + "cn=Tatyana Gooch,ou=Peons,dc=bitwarden,dc=com", + "cn=Ashlan Inamullah,ou=Management,dc=bitwarden,dc=com", + "cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jandy McCollum,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kattie Thom,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hideo Nelson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Karam Abraham,ou=Payroll,dc=bitwarden,dc=com", + "cn=Evita Mahin,ou=Peons,dc=bitwarden,dc=com", + "cn=Doll Hwang,ou=Peons,dc=bitwarden,dc=com", + "cn=Atsushi Gros,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lacee Kraus,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tonu Doncaster,ou=Peons,dc=bitwarden,dc=com", + "cn=Tobye Rupnow,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gilberte Correia,ou=Payroll,dc=bitwarden,dc=com", + "cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elva Goza,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nath Gazier,ou=Administrative,dc=bitwarden,dc=com", + "cn=Serene Tandiono,ou=Administrative,dc=bitwarden,dc=com", + "cn=Guner Sinnett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden,dc=com", + "cn=Carolien Predel,ou=Management,dc=bitwarden,dc=com", + "cn=Fouad Woodman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Remy Muenstermann,ou=Payroll,dc=bitwarden,dc=com", + "cn=Erkan Burkert,ou=Product Development,dc=bitwarden,dc=com", + "cn=Linnea Oliveira,ou=Management,dc=bitwarden,dc=com", + "cn=Steve Nass,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Henrie Malkani,ou=Product Development,dc=bitwarden,dc=com", + "cn=Almeta Batura,ou=Peons,dc=bitwarden,dc=com", + "cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Laurianne Storey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nady Straub,ou=Management,dc=bitwarden,dc=com", + "cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sami McQuaig,ou=Administrative,dc=bitwarden,dc=com", + "cn=Moises Semler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Richard FWPtools,ou=Peons,dc=bitwarden,dc=com", + "cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Danielle Sells,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sylva Hikita,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jeannine McMurray,ou=Administrative,dc=bitwarden,dc=com", + "cn=Robbin Vanstory,ou=Peons,dc=bitwarden,dc=com", + "cn=Gertie Dix,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Daloris Pippy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Robinia Chytil,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Randy Haaksman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ginn Rembecki,ou=Payroll,dc=bitwarden,dc=com", + "cn=Deva Morimoto,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sioux Laney,ou=Peons,dc=bitwarden,dc=com", + "cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden,dc=com", + "cn=Demetri Sepe,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mickey Fiset,ou=Peons,dc=bitwarden,dc=com", + "cn=Avie AltingMees,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kanya Ralph,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elisabeth Viens,ou=Peons,dc=bitwarden,dc=com", + "cn=Christin Hussain,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Stephannie Oam,ou=Management,dc=bitwarden,dc=com", + "cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kerrie Cholet,ou=Payroll,dc=bitwarden,dc=com", + "cn=Barnes Todaro,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Paulie Stellitano,ou=Product Development,dc=bitwarden,dc=com", + "cn=Quon Lamm,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wenxi Reade,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fabienne Hoehling,ou=Management,dc=bitwarden,dc=com", + "cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lanita Delorenzi,ou=Peons,dc=bitwarden,dc=com", + "cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Chong Alleva,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden,dc=com", + "cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Theresita Flanagan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Luc Sutton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Adnan Madani,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jason Quelch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Terrence Rolston,ou=Management,dc=bitwarden,dc=com", + "cn=Douglass Kwee,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Manjit Sankey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Thalia Majid,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anna Gullekson,ou=Peons,dc=bitwarden,dc=com", + "cn=Steffi Rok,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gerrard Kearns,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden,dc=com", + "cn=Teri Braginetz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nuri Spieker,ou=Peons,dc=bitwarden,dc=com", + "cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Flossy Leveille,ou=Management,dc=bitwarden,dc=com", + "cn=Witte Houghton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gateway Szaran,ou=Administrative,dc=bitwarden,dc=com", + "cn=Othelia Henley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Stacia Sova,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kellen Nickells,ou=Product Development,dc=bitwarden,dc=com", + "cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marika Brombal,ou=Peons,dc=bitwarden,dc=com", + "cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kally Woodyer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Constancia Liao,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alexander Riley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bobb Hubers,ou=Management,dc=bitwarden,dc=com", + "cn=Vannie Clenney,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Udaya Kingaby,ou=Peons,dc=bitwarden,dc=com", + "cn=Dari OHara,ou=Administrative,dc=bitwarden,dc=com", + "cn=Merralee Firment,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Aurie Alanoly,ou=Peons,dc=bitwarden,dc=com", + "cn=Nadim Junkin,ou=Peons,dc=bitwarden,dc=com", + "cn=Erik Chapman,ou=Management,dc=bitwarden,dc=com", + "cn=Adora Lamers,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Micah Brabec,ou=Peons,dc=bitwarden,dc=com", + "cn=Annette Brandsen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Amabelle Lockwood,ou=Management,dc=bitwarden,dc=com", + "cn=Rosaline Carldata,ou=Peons,dc=bitwarden,dc=com", + "cn=Diana Felczak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Regis Liesemer,ou=Peons,dc=bitwarden,dc=com", + "cn=Joke Mrozinski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marcelle Hine,ou=Product Development,dc=bitwarden,dc=com", + "cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Grayce Cicci,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Idris CPM,ou=Management,dc=bitwarden,dc=com", + "cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ree Budhram,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elda Ranahan,ou=Peons,dc=bitwarden,dc=com", + "cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shailendra Kapsa,ou=Management,dc=bitwarden,dc=com", + "cn=Persis Emig,ou=Peons,dc=bitwarden,dc=com", + "cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Laurel Grills,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Saloma Jaques,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sebastian Kammerer,ou=Management,dc=bitwarden,dc=com", + "cn=Grayce Roesler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Helene Krowlek,ou=Administrative,dc=bitwarden,dc=com", + "cn=Charman Nagy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jacqueline Sorathia,ou=Management,dc=bitwarden,dc=com", + "cn=Leanne Devine,ou=Product Development,dc=bitwarden,dc=com", + "cn=Manon Benham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Meg Lara,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sanae Carpool,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mia Willis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gheorghe Younan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Val Toth,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ishan Puukila,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Davinder Thibert,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mounir Theoret,ou=Payroll,dc=bitwarden,dc=com", + "cn=Air Baldwin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Arlyne Miao,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Debi Seniuk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pas Maksuta,ou=Product Development,dc=bitwarden,dc=com", + "cn=Camellia Tencer,ou=Peons,dc=bitwarden,dc=com", + "cn=HinWai Menaker,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lenore Inrig,ou=Payroll,dc=bitwarden,dc=com", + "cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sibeal Manner,ou=Management,dc=bitwarden,dc=com", + "cn=Vo Filpus,ou=Management,dc=bitwarden,dc=com", + "cn=Martine Captives,ou=Payroll,dc=bitwarden,dc=com", + "cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Wileen Elgar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Basheer Illidge,ou=Management,dc=bitwarden,dc=com", + "cn=Jodine Swartz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Barbette VanHaste,ou=Payroll,dc=bitwarden,dc=com", + "cn=Envoy Dignam,ou=Product Development,dc=bitwarden,dc=com", + "cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ghassan Visser,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bryna Grandy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nonna Calkins,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tchangid Cosner,ou=Peons,dc=bitwarden,dc=com", + "cn=Happy Armstead,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Siva Trader,ou=Management,dc=bitwarden,dc=com", + "cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Norton Hlady,ou=Management,dc=bitwarden,dc=com", + "cn=Benita Brivet,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ulrike Ta,ou=Peons,dc=bitwarden,dc=com", + "cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden,dc=com", + "cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jimmy Ramey,ou=Management,dc=bitwarden,dc=com", + "cn=Romano Teacher,ou=Administrative,dc=bitwarden,dc=com", + "cn=Poppy Ong,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Takako Cambre,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eachelle Etu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Merlina Eimer,ou=Peons,dc=bitwarden,dc=com", + "cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Imelda Ornburn,ou=Management,dc=bitwarden,dc=com", + "cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Elex Syal,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vern Rantala,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sarina Handley,ou=Peons,dc=bitwarden,dc=com", + "cn=Edward Meldrum,ou=Product Development,dc=bitwarden,dc=com", + "cn=Margaretta Hord,ou=Payroll,dc=bitwarden,dc=com", + "cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Calley Hvezda,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rodina Sumi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jessa Harlan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Curt Tadge,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bertrand Spearpoint,ou=Management,dc=bitwarden,dc=com", + "cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Annabel Cadtools,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hanny Wayler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Devi Cobran,ou=Peons,dc=bitwarden,dc=com", + "cn=Tian Sydnor,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Remi Ladd,ou=Product Development,dc=bitwarden,dc=com", + "cn=Miles Bannan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Annnora Burchby,ou=Management,dc=bitwarden,dc=com", + "cn=Mariet Finzel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rozalie Kesler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jude Farmer,ou=Peons,dc=bitwarden,dc=com", + "cn=Mervin Grisoni,ou=Peons,dc=bitwarden,dc=com", + "cn=Sarath Beekman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anna Hepburn,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bethany Passier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Traci DuBerger,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ceciley Kuan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden,dc=com", + "cn=Krishan Stamps,ou=Product Development,dc=bitwarden,dc=com", + "cn=Colin Gibbins,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Utpala Neault,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chery Dickinson,ou=Peons,dc=bitwarden,dc=com", + "cn=Elwood Schmitz,ou=Management,dc=bitwarden,dc=com", + "cn=Trang Kang,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marylee Lowrie,ou=Management,dc=bitwarden,dc=com", + "cn=Donall Zlatin,ou=Management,dc=bitwarden,dc=com", + "cn=Dilip Willette,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gen Templeton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Celinda Guttman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dede Lan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Othella Toolset,ou=Payroll,dc=bitwarden,dc=com", + "cn=Genovera Kusmider,ou=Management,dc=bitwarden,dc=com", + "cn=JoAnn Donohue,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eliezer Laing,ou=Management,dc=bitwarden,dc=com", + "cn=Hayley Rundstein,ou=Management,dc=bitwarden,dc=com", + "cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Daffi Chalker,ou=Payroll,dc=bitwarden,dc=com", + "cn=Debee Hazelrig,ou=Peons,dc=bitwarden,dc=com", + "cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Warren Niu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Thuong Malkinson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Remi Denver,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Maritsa Keenan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Johnath Linn,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Joan Yousuf,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roscoe LePage,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Powell Tosczak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Charles Chatha,ou=Management,dc=bitwarden,dc=com", + "cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tina Dadalt,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sosanna Starnes,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gilly Wasylyk,ou=Management,dc=bitwarden,dc=com", + "cn=Naser Cooksey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Betta Parn,ou=Management,dc=bitwarden,dc=com", + "cn=Lon Sourour,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Neetu Kromer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lon Sells,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shivdarsan Garry,ou=Management,dc=bitwarden,dc=com", + "cn=Co Reinhold,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Inez Elks,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden,dc=com", + "cn=John Senecal,ou=Payroll,dc=bitwarden,dc=com", + "cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marit Whatley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sammie Datta,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Clea Laing,ou=Peons,dc=bitwarden,dc=com", + "cn=Rex Pelletier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gaby Dybenko,ou=Peons,dc=bitwarden,dc=com", + "cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Velma Donahee,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Chawki Targosky,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Clemente Boroski,ou=Peons,dc=bitwarden,dc=com", + "cn=JinYun Vea,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dawn Pelland,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden,dc=com", + "cn=Snehal Benne,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Selma Sinasac,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cindee Majid,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Croix Valiveti,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jelene Watkins,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Harriot Macklem,ou=Administrative,dc=bitwarden,dc=com", + "cn=Torey Kilzer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gilberta Howie,ou=Peons,dc=bitwarden,dc=com", + "cn=Darrel Doerfel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Phu Lukie,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Katja Teder,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rina Talton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nelleke Haley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shalna Yao,ou=Peons,dc=bitwarden,dc=com", + "cn=Karmen Wever,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Udaya Magnuson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tory Racz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Danika Jamaly,ou=Payroll,dc=bitwarden,dc=com", + "cn=Loc McElligott,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maryanne Herr,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Norrie Vanwychen,ou=Peons,dc=bitwarden,dc=com", + "cn=Babette Hammond,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dae Malloy,ou=Peons,dc=bitwarden,dc=com", + "cn=Demi Uyar,ou=Peons,dc=bitwarden,dc=com", + "cn=Drago Wooley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lira Akhtar,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Blair Costen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Celinka Truong,ou=Management,dc=bitwarden,dc=com", + "cn=Olympe Wyndham,ou=Payroll,dc=bitwarden,dc=com", + "cn=Emp Slyteris,ou=Management,dc=bitwarden,dc=com", + "cn=Brien Ensign,ou=Management,dc=bitwarden,dc=com", + "cn=Nicolas Whetston,ou=Management,dc=bitwarden,dc=com", + "cn=Annalise Combaz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jiri Clary,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Emelia Farag,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cang Calva,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sanjeev Tates,ou=Management,dc=bitwarden,dc=com", + "cn=Lindsey Mina,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yueh Gowl,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=America Ballarte,ou=Administrative,dc=bitwarden,dc=com", + "cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden,dc=com", + "cn=Student Center,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jillana Cusick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Edmund Caine,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Faith Langenberg,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gussi Zisu,ou=Product Development,dc=bitwarden,dc=com", + "cn=Enrica Scss,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Franklin Mahlig,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hazem Doerksen,ou=Management,dc=bitwarden,dc=com", + "cn=Sabra Williams,ou=Payroll,dc=bitwarden,dc=com", + "cn=Des Terrell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jolene Casey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karilynn Dekeyser,ou=Management,dc=bitwarden,dc=com", + "cn=Gaal Gach,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Emory Davalo,ou=Management,dc=bitwarden,dc=com", + "cn=Leia Boccali,ou=Management,dc=bitwarden,dc=com", + "cn=Hollie Redding,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maurita Hewett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Alberta Popel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden,dc=com", + "cn=Warden Norgaard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stephine Este,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Allx Vezeau,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hattie Offers,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Priti Stowe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tilly Lienemann,ou=Product Development,dc=bitwarden,dc=com", + "cn=Constantina Totaro,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bendite Basser,ou=Management,dc=bitwarden,dc=com", + "cn=Trish Ettridge,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Leola Musca,ou=Peons,dc=bitwarden,dc=com", + "cn=Oral Priestley,ou=Peons,dc=bitwarden,dc=com", + "cn=Yonik Yurach,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hudai Weare,ou=Peons,dc=bitwarden,dc=com", + "cn=Miguela Brodersen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sohale Suomela,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yonik Murison,ou=Management,dc=bitwarden,dc=com", + "cn=Delora Grund,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mietek Humes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lili Cozzi,ou=Peons,dc=bitwarden,dc=com", + "cn=Mil Badmington,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kittie Chapman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Las Bongers,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ramez Beisel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gerladina Miello,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hernan Aversa,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rozanne Botting,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amandy Ganness,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lisabeth Joll,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hillary Pintado,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nadean Fiorile,ou=Management,dc=bitwarden,dc=com", + "cn=Sohayla Ip,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ashley Seagle,ou=Payroll,dc=bitwarden,dc=com", + "cn=Christoph Dwyer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Minnesota Reich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marilyn Godden,ou=Product Development,dc=bitwarden,dc=com", + "cn=Weiping Choynowska,ou=Management,dc=bitwarden,dc=com", + "cn=Karlen Pelz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mela Speers,ou=Payroll,dc=bitwarden,dc=com", + "cn=PierreHenri Oates,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ramon Metcalfe,ou=Management,dc=bitwarden,dc=com", + "cn=Domeniga Purohit,ou=Management,dc=bitwarden,dc=com", + "cn=Goldy Locke,ou=Janitorial,dc=bitwarden,dc=com", + "cn=PakJong Braginetz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hilde Miotla,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ning Spitzer,ou=Peons,dc=bitwarden,dc=com", + "cn=Marylee Eberle,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shalne Monfre,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sammie Wickie,ou=Administrative,dc=bitwarden,dc=com", + "cn=Teresita Vonderscher,ou=Peons,dc=bitwarden,dc=com", + "cn=Derek Boase,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ehi Sova,ou=Payroll,dc=bitwarden,dc=com", + "cn=Suzette Chaddha,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lennart Delong,ou=Administrative,dc=bitwarden,dc=com", + "cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Diann Glast,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tiffanie Beehler,ou=Peons,dc=bitwarden,dc=com", + "cn=Leny Teague,ou=Administrative,dc=bitwarden,dc=com", + "cn=Trever Casson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Chester Greene,ou=Peons,dc=bitwarden,dc=com", + "cn=Celine Vey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pinder Leonida,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Beryl Lalonde,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cicely Ivers,ou=Management,dc=bitwarden,dc=com", + "cn=Lorinda Kenworthy,ou=Management,dc=bitwarden,dc=com", + "cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Demetre Obrecht,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden,dc=com", + "cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sheryl Nemec,ou=Payroll,dc=bitwarden,dc=com", + "cn=Freya Reich,ou=Management,dc=bitwarden,dc=com", + "cn=Willyt Kresl,ou=Peons,dc=bitwarden,dc=com", + "cn=Nenad Kilner,ou=Peons,dc=bitwarden,dc=com", + "cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nakina Brittain,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joyous Nunn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hugo Tarsky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Davida Starnes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Heping Id,ou=Management,dc=bitwarden,dc=com", + "cn=Nill Ferreira,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Amabel DAngelo,ou=Management,dc=bitwarden,dc=com", + "cn=Brad Scarffe,ou=Management,dc=bitwarden,dc=com", + "cn=Elfie Florescu,ou=Peons,dc=bitwarden,dc=com", + "cn=Nayan Caffrey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Deonne Ripa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mehdi Mainville,ou=Peons,dc=bitwarden,dc=com", + "cn=Jade Yumurtaci,ou=Peons,dc=bitwarden,dc=com", + "cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden,dc=com", + "cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Fey Bilton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Isoft Manwaring,ou=Peons,dc=bitwarden,dc=com", + "cn=Addia RossRoss,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Adoree Debord,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tesa Coordinator,ou=Product Development,dc=bitwarden,dc=com", + "cn=Crissie Beausejour,ou=Peons,dc=bitwarden,dc=com", + "cn=Hojjat Nahata,ou=Peons,dc=bitwarden,dc=com", + "cn=Julina Sy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kendre Lotochinski,ou=Management,dc=bitwarden,dc=com", + "cn=Yih NadeauDostie,ou=Management,dc=bitwarden,dc=com", + "cn=Glynnis Neisius,ou=Peons,dc=bitwarden,dc=com", + "cn=Sono Orsini,ou=Peons,dc=bitwarden,dc=com", + "cn=Devon Romberg,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lorne Agily,ou=Management,dc=bitwarden,dc=com", + "cn=Henka Colford,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Niek Bocklage,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gill Castillo,ou=Peons,dc=bitwarden,dc=com", + "cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cary Thumm,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rod Eisenach,ou=Payroll,dc=bitwarden,dc=com", + "cn=Axel McAdams,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amara Lagarde,ou=Management,dc=bitwarden,dc=com", + "cn=Gerianne Deluca,ou=Peons,dc=bitwarden,dc=com", + "cn=Mick Barreyre,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Netta Hartin,ou=Peons,dc=bitwarden,dc=com", + "cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden,dc=com", + "cn=Juli Chen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cubical Quintana,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liping Acton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lorry Suprick,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mattie Astorino,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Suzanne Guatto,ou=Management,dc=bitwarden,dc=com", + "cn=Norton Sapena,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tsugio Behlen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pammy Liu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Deeyn Frie,ou=Peons,dc=bitwarden,dc=com", + "cn=Dael Valliere,ou=Management,dc=bitwarden,dc=com", + "cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ranna Gentes,ou=Peons,dc=bitwarden,dc=com", + "cn=Khue Trivedi,ou=Administrative,dc=bitwarden,dc=com", + "cn=YuKai Holloway,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mrugesh Gaskins,ou=Management,dc=bitwarden,dc=com", + "cn=Belle Kilner,ou=Management,dc=bitwarden,dc=com", + "cn=Sieber Binnington,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nananne Bahl,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Selia Demers,ou=Management,dc=bitwarden,dc=com", + "cn=Karl Deployment,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jolene Eicher,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Merridie Partello,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tae Hughson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bobbye Cech,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Drucy Serour,ou=Payroll,dc=bitwarden,dc=com", + "cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elnore Alvaro,ou=Management,dc=bitwarden,dc=com", + "cn=Briney Emery,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dawn Shubaly,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leny Redway,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Augusto Mather,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Biplab Natale,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ninon Coffey,ou=Peons,dc=bitwarden,dc=com", + "cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nando Masterplan,ou=Peons,dc=bitwarden,dc=com", + "cn=Farouk Closson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jacob Andress,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fikre Mau,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zan StPierre,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Michigan Callaghan,ou=Peons,dc=bitwarden,dc=com", + "cn=Vesna Suharly,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maurise Travers,ou=Management,dc=bitwarden,dc=com", + "cn=Loella Herve,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Libbi Marting,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Derrick Myatt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chelsey Emond,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Harvey Jugandi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ida Sydor,ou=Peons,dc=bitwarden,dc=com", + "cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=MingMing Wagoner,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shena Joudrey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lurline Nickell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Camilla Njo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dannie Levesque,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tarah Melanson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Phan Srinivasan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ibby Sundar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jerald Battiston,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rorie Freno,ou=Payroll,dc=bitwarden,dc=com", + "cn=Howie Jubenville,ou=Product Development,dc=bitwarden,dc=com", + "cn=Neely Dudas,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kennon Risto,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jimson McVey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elisabet Deicher,ou=Payroll,dc=bitwarden,dc=com", + "cn=Amye Barritt,ou=Administrative,dc=bitwarden,dc=com", + "cn=Corry Ivett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Adan Kelkar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ross Sepko,ou=Management,dc=bitwarden,dc=com", + "cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Apryle Davy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Carlota Inoue,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leanne Smolin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kailey Bagshaw,ou=Peons,dc=bitwarden,dc=com", + "cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Trever Moffatt,ou=Management,dc=bitwarden,dc=com", + "cn=Weringh Behlen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alain Walser,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kanya Erguven,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Robina Prestrud,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Emmye Nahas,ou=Product Development,dc=bitwarden,dc=com", + "cn=Flori Suddarth,ou=Management,dc=bitwarden,dc=com", + "cn=Mkt Kelso,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Annie Goswick,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rhonda Beeston,ou=Peons,dc=bitwarden,dc=com", + "cn=Amrik Bokij,ou=Payroll,dc=bitwarden,dc=com", + "cn=Merralee Malkani,ou=Management,dc=bitwarden,dc=com", + "cn=Kyle Malkani,ou=Management,dc=bitwarden,dc=com", + "cn=Leese Jamaly,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eloise Gurash,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elpida Marples,ou=Administrative,dc=bitwarden,dc=com", + "cn=Blondie Algood,ou=Administrative,dc=bitwarden,dc=com", + "cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Averil Hirsch,ou=Peons,dc=bitwarden,dc=com", + "cn=Manijeh Older,ou=Management,dc=bitwarden,dc=com", + "cn=Lonee Swinkels,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jun Reith,ou=Product Development,dc=bitwarden,dc=com", + "cn=Otter Uberig,ou=Management,dc=bitwarden,dc=com", + "cn=Hendrik Ruyant,ou=Management,dc=bitwarden,dc=com", + "cn=Colline Monaco,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ilene Didylowski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Norine Krone,ou=Administrative,dc=bitwarden,dc=com", + "cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Chander Daudin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Phelia Valois,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carmela Bonner,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brandice Becquart,ou=Management,dc=bitwarden,dc=com", + "cn=Gen Guinnane,ou=Management,dc=bitwarden,dc=com", + "cn=Carmelia Lawlor,ou=Management,dc=bitwarden,dc=com", + "cn=Riva DIppolito,ou=Management,dc=bitwarden,dc=com", + "cn=Letisha Subsara,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chellappan Caple,ou=Management,dc=bitwarden,dc=com", + "cn=Lendon Shigemura,ou=Management,dc=bitwarden,dc=com", + "cn=Alicia Vermette,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marys Pellegrini,ou=Management,dc=bitwarden,dc=com", + "cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden,dc=com", + "cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Es Veillette,ou=Management,dc=bitwarden,dc=com", + "cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Schell Rezzik,ou=Product Development,dc=bitwarden,dc=com", + "cn=Haig Salyer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sachiko Dragert,ou=Payroll,dc=bitwarden,dc=com", + "cn=Agatha Potocki,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mark Bethune,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dorey Friedrich,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alexina Hord,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wilson Vosup,ou=Management,dc=bitwarden,dc=com", + "cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Forrest DCruz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Roger Seelaender,ou=Peons,dc=bitwarden,dc=com", + "cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mal Ellul,ou=Management,dc=bitwarden,dc=com", + "cn=Bep Pilkington,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Wylma Meiser,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Huppert Buffett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kass Kelland,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dpnis Stetter,ou=Peons,dc=bitwarden,dc=com", + "cn=Tash Hibler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Edee Badger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Edel Ellacott,ou=Peons,dc=bitwarden,dc=com", + "cn=Rosa Baird,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anna Kahtasian,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hiren Plastina,ou=Peons,dc=bitwarden,dc=com", + "cn=Alese Sumpter,ou=Peons,dc=bitwarden,dc=com", + "cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Simonne Filer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yeung Kaufman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Claire Wada,ou=Management,dc=bitwarden,dc=com", + "cn=Laury Breglec,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maurice Guinnane,ou=Administrative,dc=bitwarden,dc=com", + "cn=Laraine DuBois,ou=Peons,dc=bitwarden,dc=com", + "cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hettie Johannes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hedvig Risler,ou=Management,dc=bitwarden,dc=com", + "cn=Edward Badza,ou=Payroll,dc=bitwarden,dc=com", + "cn=Femke Trittler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lino Krauel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anders Raddalgoda,ou=Management,dc=bitwarden,dc=com", + "cn=Rijn Benschop,ou=Management,dc=bitwarden,dc=com", + "cn=Deva Hoch,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fearless Quattrucci,ou=Management,dc=bitwarden,dc=com", + "cn=Pia Singham,ou=Peons,dc=bitwarden,dc=com", + "cn=Zdenek Schutte,ou=Product Development,dc=bitwarden,dc=com", + "cn=Liam Darveau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Yung Deployment,ou=Management,dc=bitwarden,dc=com", + "cn=Raman Feild,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nial Meunier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Evans Laker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vale Wiederhold,ou=Management,dc=bitwarden,dc=com", + "cn=Dulce Xavier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Walt Ventura,ou=Management,dc=bitwarden,dc=com", + "cn=Miklos Rhyndress,ou=Peons,dc=bitwarden,dc=com", + "cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cherise Blodgett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jenifer Stansell,ou=Peons,dc=bitwarden,dc=com", + "cn=Fung Ginzburg,ou=Peons,dc=bitwarden,dc=com", + "cn=Nikolaos Mapile,ou=Management,dc=bitwarden,dc=com", + "cn=Queenie Spolar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Franki Weyand,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Suat Whitford,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Isadora Capelle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Loria Timmerman,ou=Product Development,dc=bitwarden,dc=com", + "cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bobbi Dupree,ou=Management,dc=bitwarden,dc=com", + "cn=Leshia Gaither,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Calla McIsaac,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roby Kasbia,ou=Peons,dc=bitwarden,dc=com", + "cn=Samia Wacker,ou=Management,dc=bitwarden,dc=com", + "cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Stephen Marketing,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anissa Gottstein,ou=Peons,dc=bitwarden,dc=com", + "cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carlin Boult,ou=Peons,dc=bitwarden,dc=com", + "cn=Kitt Briden,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ramniklal Buske,ou=Management,dc=bitwarden,dc=com", + "cn=Par Giang,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden,dc=com", + "cn=Daisey Karam,ou=Management,dc=bitwarden,dc=com", + "cn=Levent Khouderchah,ou=Product Development,dc=bitwarden,dc=com", + "cn=Demetria Projects,ou=Management,dc=bitwarden,dc=com", + "cn=Jules Highsmith,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Misbah Kimma,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Morganne Teed,ou=Management,dc=bitwarden,dc=com", + "cn=Mozelle Huang,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stacy Boehlke,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden,dc=com", + "cn=Angelica Sarkari,ou=Management,dc=bitwarden,dc=com", + "cn=Michel Akyurekli,ou=Payroll,dc=bitwarden,dc=com", + "cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rayna Diep,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ollie Forslund,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Germain Nobes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Daria Farnham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rohit McSorley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Novelia Sossaman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marabel Oster,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marco Hoagland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gerty Hebert,ou=Management,dc=bitwarden,dc=com", + "cn=Marcela Dufresne,ou=Management,dc=bitwarden,dc=com", + "cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Almeda Maloney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Madalyn Bakay,ou=Peons,dc=bitwarden,dc=com", + "cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Allen Papantonis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Leoline Cholette,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Leanna MTL,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden,dc=com", + "cn=Octavio Naugle,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Charangit Brasset,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gena Lovejoy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vivi Dysart,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Giuseppe Laing,ou=Management,dc=bitwarden,dc=com", + "cn=Zeb Morrissette,ou=Product Development,dc=bitwarden,dc=com", + "cn=Corly Wingate,ou=Payroll,dc=bitwarden,dc=com", + "cn=UnaMae Del,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Almerinda MTL,ou=Product Development,dc=bitwarden,dc=com", + "cn=JeanRoch Della,ou=Peons,dc=bitwarden,dc=com", + "cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cris Viano,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Takis Bulmer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Adah Calistro,ou=Peons,dc=bitwarden,dc=com", + "cn=Jessalin Stooke,ou=Peons,dc=bitwarden,dc=com", + "cn=Zsazsa Ukena,ou=Management,dc=bitwarden,dc=com", + "cn=Raynell Shears,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kem Wares,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tai Galloway,ou=Administrative,dc=bitwarden,dc=com", + "cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Parviz Kinsella,ou=Administrative,dc=bitwarden,dc=com", + "cn=Madelyn Godo,ou=Peons,dc=bitwarden,dc=com", + "cn=Willow Sorathia,ou=Management,dc=bitwarden,dc=com", + "cn=Jonelle Rynders,ou=Management,dc=bitwarden,dc=com", + "cn=Avinash Vieiro,ou=Payroll,dc=bitwarden,dc=com", + "cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mikhail Fssup,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kimmi Trent,ou=Payroll,dc=bitwarden,dc=com", + "cn=Drucie Lindow,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kristine Hogue,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carmon Ghossein,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eunice Bushell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ailene Leander,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Truus Fodell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zulema Clairmont,ou=Product Development,dc=bitwarden,dc=com", + "cn=Libor Wyble,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Debera Shu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hailee Gould,ou=Peons,dc=bitwarden,dc=com", + "cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Colm Coody,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Orly Rahn,ou=Management,dc=bitwarden,dc=com", + "cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Glornia Hage,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Desiree Morini,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Laina McKibbon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Peach McGlynn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ines Younan,ou=Management,dc=bitwarden,dc=com", + "cn=Jai Junkie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ping Lombrink,ou=Management,dc=bitwarden,dc=com", + "cn=Georgianne Colwell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bryant Fronsee,ou=Administrative,dc=bitwarden,dc=com", + "cn=Amata Funderburg,ou=Administrative,dc=bitwarden,dc=com", + "cn=Camila Nason,ou=Peons,dc=bitwarden,dc=com", + "cn=Eldon ONeil,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Manda Bins,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joete Thieken,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nurettin Parisen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lester Leonida,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mira Aczel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Takehiko Malizia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Niel Vickers,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Letta Baltodano,ou=Management,dc=bitwarden,dc=com", + "cn=De Moneypenny,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dyke Suh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Barrie Botting,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anantha Uhl,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kettie Lanier,ou=Management,dc=bitwarden,dc=com", + "cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden,dc=com", + "cn=LianHong Grills,ou=Administrative,dc=bitwarden,dc=com", + "cn=Charlean Leo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gilbert Howerton,ou=Peons,dc=bitwarden,dc=com", + "cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Loralie Balutis,ou=Peons,dc=bitwarden,dc=com", + "cn=Harri Wortman,ou=Management,dc=bitwarden,dc=com", + "cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lorine Grund,ou=Management,dc=bitwarden,dc=com", + "cn=Lesley Coyne,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nelleke Lind,ou=Management,dc=bitwarden,dc=com", + "cn=Bam Raschig,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nicoline Gelo,ou=Peons,dc=bitwarden,dc=com", + "cn=Brigid Austin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Farooq Farquhar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Brandy Strauss,ou=Management,dc=bitwarden,dc=com", + "cn=Jake McGorman,ou=Management,dc=bitwarden,dc=com", + "cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ruchi Furst,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joann Truffer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anton Chao,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cacilie Murnaghan,ou=Management,dc=bitwarden,dc=com", + "cn=Ilene Magri,ou=Management,dc=bitwarden,dc=com", + "cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kiele Willis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Blondie MMail,ou=Janitorial,dc=bitwarden,dc=com", + "cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Yevette Kantor,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Youji Lawson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Neysa Dpu,ou=Administrative,dc=bitwarden,dc=com", + "cn=KaiWai Barriere,ou=Management,dc=bitwarden,dc=com", + "cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Latashia Waldie,ou=Peons,dc=bitwarden,dc=com", + "cn=Gordy Durham,ou=Management,dc=bitwarden,dc=com", + "cn=Dierdre Isip,ou=Payroll,dc=bitwarden,dc=com", + "cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ailis Stumpf,ou=Product Development,dc=bitwarden,dc=com", + "cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden,dc=com", + "cn=Puneet Aloi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden,dc=com", + "cn=Del Buckingham,ou=Peons,dc=bitwarden,dc=com", + "cn=Pardeep Roney,ou=Management,dc=bitwarden,dc=com", + "cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden,dc=com", + "cn=Valma Myrillas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alvira Dessain,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Melli Ertan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Keri Stroupe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Billi Chiu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Willette Tel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ynes Jezioranski,ou=Peons,dc=bitwarden,dc=com", + "cn=Teruko Cregan,ou=Peons,dc=bitwarden,dc=com", + "cn=Rick Novisedlak,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden,dc=com", + "cn=Notley Peterson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Joyous ONeal,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Perle Dolan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ioana Hermack,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nikolaos Nickonov,ou=Management,dc=bitwarden,dc=com", + "cn=Kirstie Rodger,ou=Management,dc=bitwarden,dc=com", + "cn=Sheree Siddell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tas Chitnis,ou=Product Development,dc=bitwarden,dc=com", + "cn=Whitfield Vexler,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Janifer Gundecha,ou=Management,dc=bitwarden,dc=com", + "cn=Diandra Shnay,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Semmler Bamfo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Martina Grazzini,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Minnie Dickie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Susanna Buckman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Johnette Yendall,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aurelie Doray,ou=Peons,dc=bitwarden,dc=com", + "cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dusan Menyhart,ou=Product Development,dc=bitwarden,dc=com", + "cn=Utilla Brandon,ou=Peons,dc=bitwarden,dc=com", + "cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Selma Kwant,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Levent Debord,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tandie Gourley,ou=Peons,dc=bitwarden,dc=com", + "cn=Indy Hu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fscocos Houston,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Oriana McInnis,ou=Peons,dc=bitwarden,dc=com", + "cn=Maggee Bentley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Inm Venjohn,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Corena Parks,ou=Product Development,dc=bitwarden,dc=com", + "cn=Irv Dicks,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marwan Marks,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kamal Calleja,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jonelle Menna,ou=Product Development,dc=bitwarden,dc=com", + "cn=Miran McGinn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wan Janovich,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gerben Dayal,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lorilee Ravi,ou=Peons,dc=bitwarden,dc=com", + "cn=McGee Levasseur,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Charmain Spurlin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lainey Grainger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Delly Clegg,ou=Product Development,dc=bitwarden,dc=com", + "cn=Addie Koolstra,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nga Orsini,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cherye Knighten,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Betteann Sieling,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Salim McIntyre,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karole Heng,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden,dc=com", + "cn=Norio Saifullah,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shannen Jagatic,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vania Gibson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Robyn Blann,ou=Administrative,dc=bitwarden,dc=com", + "cn=Krier Cruey,ou=Management,dc=bitwarden,dc=com", + "cn=Barbette Christie,ou=Peons,dc=bitwarden,dc=com", + "cn=Feodora Koller,ou=Management,dc=bitwarden,dc=com", + "cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Saudra Ghaemian,ou=Peons,dc=bitwarden,dc=com", + "cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Valentine Newell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Oriana McRae,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kizzee Halley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bette Stellwag,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Henriette Peixoto,ou=Administrative,dc=bitwarden,dc=com", + "cn=Matt Denmark,ou=Management,dc=bitwarden,dc=com", + "cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Feng Rowland,ou=Payroll,dc=bitwarden,dc=com", + "cn=Theresa Naguib,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eden Annibale,ou=Peons,dc=bitwarden,dc=com", + "cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cele Toshach,ou=Payroll,dc=bitwarden,dc=com", + "cn=Car Naro,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jocelyn Napert,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Arlette Irani,ou=Management,dc=bitwarden,dc=com", + "cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Basheer Berhane,ou=Payroll,dc=bitwarden,dc=com", + "cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Betti Tilley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ashu Drakage,ou=Peons,dc=bitwarden,dc=com", + "cn=Yetty Likert,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nady Bushnell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Selle Verch,ou=Administrative,dc=bitwarden,dc=com", + "cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden,dc=com", + "cn=YeeNing Sikes,ou=Management,dc=bitwarden,dc=com", + "cn=Bachittar Seamster,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elmer Gribbon,ou=Management,dc=bitwarden,dc=com", + "cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marlin Schrier,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bobb Bowcock,ou=Management,dc=bitwarden,dc=com", + "cn=Hermia Mendez,ou=Management,dc=bitwarden,dc=com", + "cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden,dc=com", + "cn=Thaddeus Hoehn,ou=Management,dc=bitwarden,dc=com", + "cn=Bawn Asfazadour,ou=Management,dc=bitwarden,dc=com", + "cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Franky Foest,ou=Administrative,dc=bitwarden,dc=com", + "cn=Daphene Scheck,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Milicent Hoeler,ou=Management,dc=bitwarden,dc=com", + "cn=Luis Louis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Daveta SiuKwok,ou=Peons,dc=bitwarden,dc=com", + "cn=Minni Daymond,ou=Administrative,dc=bitwarden,dc=com", + "cn=Muriel Barakat,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Thuan Szaran,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mitchell Willette,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mohan Piper,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Carmelle Froud,ou=Administrative,dc=bitwarden,dc=com", + "cn=Modesta Farr,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Liese Griffiths,ou=Management,dc=bitwarden,dc=com", + "cn=Meghan Carboni,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bryon Kluger,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Petar Khatri,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Paige Poustchi,ou=Peons,dc=bitwarden,dc=com", + "cn=Jessa Dias,ou=Payroll,dc=bitwarden,dc=com", + "cn=Zorah Purohit,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shoshanna Talevi,ou=Peons,dc=bitwarden,dc=com", + "cn=Priore Hastings,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tulip Waytowich,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hirooki Skwarok,ou=Peons,dc=bitwarden,dc=com", + "cn=Balaji Brogden,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zola Cuddihey,ou=Payroll,dc=bitwarden,dc=com", + "cn=JeanDenis Intihar,ou=Management,dc=bitwarden,dc=com", + "cn=Rejean Marc,ou=Management,dc=bitwarden,dc=com", + "cn=Aly Mooney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Daniele Mondor,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden,dc=com", + "cn=Charman Feeley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Auto Arwakhi,ou=Peons,dc=bitwarden,dc=com", + "cn=Paulette Lunn,ou=Payroll,dc=bitwarden,dc=com", + "cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kellia Froud,ou=Management,dc=bitwarden,dc=com", + "cn=Vittorio Calis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maryam Doan,ou=Product Development,dc=bitwarden,dc=com", + "cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden,dc=com", + "cn=Nathalia Haerle,ou=Management,dc=bitwarden,dc=com", + "cn=Krystn OHeocha,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carena Chaplin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eden MacDonald,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jo Snuggs,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hsinshi Sheth,ou=Peons,dc=bitwarden,dc=com", + "cn=Tata Whisler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Troy Hilton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Binni Siewert,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alyse Wingo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ladan Chilausky,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gwenette Farago,ou=Management,dc=bitwarden,dc=com", + "cn=Narinder Staffeld,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nir Dionne,ou=Management,dc=bitwarden,dc=com", + "cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", + "cn=LouisRene Ellens,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Oneida Sallee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Humphrey Redish,ou=Peons,dc=bitwarden,dc=com", + "cn=Kerry Labarge,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Quyen Aronstam,ou=Administrative,dc=bitwarden,dc=com", + "cn=KaiMing Parker,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Laure Norman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fabienne Koprulu,ou=Peons,dc=bitwarden,dc=com", + "cn=Prue Dipace,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Randolph Holtze,ou=Payroll,dc=bitwarden,dc=com", + "cn=Julianna Amin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Iris Berryhill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mahendra Michelussi,ou=Management,dc=bitwarden,dc=com", + "cn=Melesa Beagley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Khue Medeiros,ou=Payroll,dc=bitwarden,dc=com", + "cn=Evangeline Vance,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Czes Corkey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Malena Cronan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maia Lamy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gates Frape,ou=Product Development,dc=bitwarden,dc=com", + "cn=Berangere Budihardjo,ou=Management,dc=bitwarden,dc=com", + "cn=Sheryl Hekel,ou=Peons,dc=bitwarden,dc=com", + "cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kaycee Wu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Herbie Njo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Devan McCorkell,ou=Management,dc=bitwarden,dc=com", + "cn=Crin Landon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wrennie Dinkel,ou=Peons,dc=bitwarden,dc=com", + "cn=Siana Duffney,ou=Management,dc=bitwarden,dc=com", + "cn=Holst IC,ou=Product Testing,dc=bitwarden,dc=com", + "cn=SikYin Matney,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Masahiro Lauten,ou=Peons,dc=bitwarden,dc=com", + "cn=Nash Hesk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pier Kimma,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lenee Gryder,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Loesje Javor,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sallie Lehman,ou=Management,dc=bitwarden,dc=com", + "cn=Yvette Yun,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rui Hawi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Costas Pracht,ou=Management,dc=bitwarden,dc=com", + "cn=Rec Mazarick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Del Ambler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tessi Denebeim,ou=Peons,dc=bitwarden,dc=com", + "cn=Pru Digiacomo,ou=Peons,dc=bitwarden,dc=com", + "cn=Annabell Fung,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Alberta Widener,ou=Peons,dc=bitwarden,dc=com", + "cn=PakJong Klebsch,ou=Administrative,dc=bitwarden,dc=com", + "cn=Detlev Croxford,ou=Payroll,dc=bitwarden,dc=com", + "cn=Graeme Khatri,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Franky Dattalo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Careers Howes,ou=Peons,dc=bitwarden,dc=com", + "cn=Susie Gawdan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Milou Lepine,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ransom Steski,ou=Payroll,dc=bitwarden,dc=com", + "cn=ItsEng Lander,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kevyn Dore,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Merna MacNeill,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ioan Goridkov,ou=Payroll,dc=bitwarden,dc=com", + "cn=Michelle Miner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mair Harada,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lynnet Lewandowski,ou=Management,dc=bitwarden,dc=com", + "cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Henk Ramanathan,ou=Management,dc=bitwarden,dc=com", + "cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Selinda Settels,ou=Product Development,dc=bitwarden,dc=com", + "cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=ItsEng Kozak,ou=Management,dc=bitwarden,dc=com", + "cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marybelle Ervi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yuji Menna,ou=Peons,dc=bitwarden,dc=com", + "cn=Harlene Koa,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Prashant Feltman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Margit Waghray,ou=Management,dc=bitwarden,dc=com", + "cn=Naim Paar,ou=Peons,dc=bitwarden,dc=com", + "cn=Flying Labossiere,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Barbette Kolski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Joby Paulovics,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Feliza Grabner,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dona VanLoon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jacquie Thorson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Appolonia Roberge,ou=Payroll,dc=bitwarden,dc=com", + "cn=Blaise Huynh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lashonda Ogburn,ou=Management,dc=bitwarden,dc=com", + "cn=Juline Flindall,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lujanka Paylor,ou=Peons,dc=bitwarden,dc=com", + "cn=Barbee Brox,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Julia Zanetti,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Othilia Rch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gaal Despault,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mary Zalzale,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hilmi Guilbault,ou=Management,dc=bitwarden,dc=com", + "cn=YuenPui Matney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Heidie Schieber,ou=Administrative,dc=bitwarden,dc=com", + "cn=Denise Tranter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cassy Burge,ou=Peons,dc=bitwarden,dc=com", + "cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rowena Kam,ou=Administrative,dc=bitwarden,dc=com", + "cn=Theodore Murris,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bang Lischynsky,ou=Management,dc=bitwarden,dc=com", + "cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Delphine Yuan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Heloise Woodall,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ram Minter,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rosa ElAm,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shirene Id,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pauline Noffke,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Seungchul Irwin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Myrlene Santi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Perry Lovejoy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Viola Gundry,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vlado Dordari,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cindra DeMarco,ou=Management,dc=bitwarden,dc=com", + "cn=Delcine Wyss,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aurora Gibb,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rona Maciel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Moel Goswick,ou=Management,dc=bitwarden,dc=com", + "cn=Coord Herrington,ou=Peons,dc=bitwarden,dc=com", + "cn=Vic Cullen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sabine Misko,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Annmarie Brunet,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden,dc=com", + "cn=Icy Meleski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Apollo Mitalas,ou=Management,dc=bitwarden,dc=com", + "cn=Shirleen Costache,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tulip Bannan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mareah Mior,ou=Product Development,dc=bitwarden,dc=com", + "cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lorraine Sikri,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karyn Laroche,ou=Payroll,dc=bitwarden,dc=com", + "cn=Koral Carkner,ou=Peons,dc=bitwarden,dc=com", + "cn=Hyung Harada,ou=Peons,dc=bitwarden,dc=com", + "cn=Lottie Fernald,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Edyta Samalot,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eoin Morrin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Froukje Viney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sir Rivera,ou=Payroll,dc=bitwarden,dc=com", + "cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ky LEcuyer,ou=Peons,dc=bitwarden,dc=com", + "cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Buda Lumley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marley Haley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ernestine Newport,ou=Management,dc=bitwarden,dc=com", + "cn=Myrtle Bernier,ou=Management,dc=bitwarden,dc=com", + "cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Karil Chennette,ou=Management,dc=bitwarden,dc=com", + "cn=Liz Burrowes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ivona Koch,ou=Administrative,dc=bitwarden,dc=com", + "cn=Berta Mou,ou=Management,dc=bitwarden,dc=com", + "cn=Pris Freire,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Toyanne Ragde,ou=Administrative,dc=bitwarden,dc=com", + "cn=Domenick Zingeler,ou=Management,dc=bitwarden,dc=com", + "cn=Stergios Incze,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hera Haupt,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden,dc=com", + "cn=Robena Scodras,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ibby Feist,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lachu Namiki,ou=Administrative,dc=bitwarden,dc=com", + "cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Norry Wolfs,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tahir Frederick,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marlies Mraz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Farooq Gaebel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Janell Rolston,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jere Jubenville,ou=Payroll,dc=bitwarden,dc=com", + "cn=Noelyn Benham,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maury Ismail,ou=Management,dc=bitwarden,dc=com", + "cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nixie Cusato,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alastair Slozil,ou=Administrative,dc=bitwarden,dc=com", + "cn=Georgena Behrens,ou=Management,dc=bitwarden,dc=com", + "cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Prayson McCormack,ou=Management,dc=bitwarden,dc=com", + "cn=Sharyl Meerveld,ou=Management,dc=bitwarden,dc=com", + "cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tech McAllister,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Budi Anglin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Business Marcelissen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=MaryKay Wilcox,ou=Management,dc=bitwarden,dc=com", + "cn=Ingeborg Ferraro,ou=Management,dc=bitwarden,dc=com", + "cn=Dulcinea Merrils,ou=Peons,dc=bitwarden,dc=com", + "cn=Chiquia Tanner,ou=Peons,dc=bitwarden,dc=com", + "cn=Dorreen Zrobok,ou=Management,dc=bitwarden,dc=com", + "cn=Floris Bui,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maarten Braum,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shane Levert,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hesther Gunderson,ou=Management,dc=bitwarden,dc=com", + "cn=Korney Walkley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Enrica Keates,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sir Benda,ou=Management,dc=bitwarden,dc=com", + "cn=Samara Edmunds,ou=Peons,dc=bitwarden,dc=com", + "cn=Eoin Moomey,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shandy Sambi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bili Giuntini,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Stephenie Steiert,ou=Peons,dc=bitwarden,dc=com", + "cn=Esmaria Seddigh,ou=Peons,dc=bitwarden,dc=com", + "cn=Su Keef,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ignatius Baines,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jenson Arbuckle,ou=Management,dc=bitwarden,dc=com", + "cn=Jaclin Schreiber,ou=Management,dc=bitwarden,dc=com", + "cn=Steen Realtime,ou=Administrative,dc=bitwarden,dc=com", + "cn=Edmx Walston,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Abu Corbeil,ou=Peons,dc=bitwarden,dc=com", + "cn=Annamaria Woll,ou=Administrative,dc=bitwarden,dc=com", + "cn=Merdia Baer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Henrietta Horwood,ou=Peons,dc=bitwarden,dc=com", + "cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden,dc=com", + "cn=Hannis Sooley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Teruko Zork,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gerrit Erwin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kylila Valliani,ou=Administrative,dc=bitwarden,dc=com", + "cn=Courtenay Meres,ou=Product Development,dc=bitwarden,dc=com", + "cn=Theodora Henshaw,ou=Peons,dc=bitwarden,dc=com", + "cn=Feodora Chohan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Corri Gower,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mimi Malisic,ou=Payroll,dc=bitwarden,dc=com", + "cn=Farra Threader,ou=Payroll,dc=bitwarden,dc=com", + "cn=Myrna Felske,ou=Payroll,dc=bitwarden,dc=com", + "cn=Adiana Claveau,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brigitte Tiseo,ou=Peons,dc=bitwarden,dc=com", + "cn=Keith Jahromi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elfreda Erkel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jacinta Boult,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mab Sizto,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Howard Scarlett,ou=Peons,dc=bitwarden,dc=com", + "cn=CoOp Grondin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Felton Bartz,ou=Peons,dc=bitwarden,dc=com", + "cn=Norene Molnar,ou=Management,dc=bitwarden,dc=com", + "cn=Gabey Solomon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Joanne Trefry,ou=Peons,dc=bitwarden,dc=com", + "cn=Sukey Grimm,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sari Realtime,ou=Management,dc=bitwarden,dc=com", + "cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fanni Hite,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Faiz Brodersen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kazem Snead,ou=Payroll,dc=bitwarden,dc=com", + "cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Donia McCormick,ou=Product Development,dc=bitwarden,dc=com", + "cn=Akin Gillies,ou=Peons,dc=bitwarden,dc=com", + "cn=Baldev Chugha,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carla Wichman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sarine Croxford,ou=Payroll,dc=bitwarden,dc=com", + "cn=Truda LaFargue,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marco Secrest,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bellina Onder,ou=Janitorial,dc=bitwarden,dc=com", + "cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden,dc=com", + "cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yumi Britton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Subhashini Tadge,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jacky Cavasin,ou=Management,dc=bitwarden,dc=com", + "cn=Katalin Qadri,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Evanne Holesinger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Malethia Elliot,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dhawal Howard,ou=Management,dc=bitwarden,dc=com", + "cn=Stacee Syed,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kem Birkwood,ou=Product Development,dc=bitwarden,dc=com", + "cn=Steffen Godo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Merlin McCormack,ou=Administrative,dc=bitwarden,dc=com", + "cn=Darell Sumi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tybie Hulen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Crysta Aderhold,ou=Management,dc=bitwarden,dc=com", + "cn=Ranna Barriere,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ignatius Bankhead,ou=Management,dc=bitwarden,dc=com", + "cn=Carlis McCafferty,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dewey Cozyn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Raphaela Bainton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Paulette Gateau,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Molly IRCMTL,ou=Peons,dc=bitwarden,dc=com", + "cn=Danial Simhan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aditya Nordstrom,ou=Management,dc=bitwarden,dc=com", + "cn=Jacquenetta Altherr,ou=Management,dc=bitwarden,dc=com", + "cn=Joeann DeAnda,ou=Administrative,dc=bitwarden,dc=com", + "cn=Valentina Andrew,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kemal Kaoud,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roseanna Koiste,ou=Administrative,dc=bitwarden,dc=com", + "cn=Camino Medlin,ou=Management,dc=bitwarden,dc=com", + "cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lilian Racette,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Clara Partello,ou=Administrative,dc=bitwarden,dc=com", + "cn=Birdie Pifko,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Salomi Erickson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Opal Lovas,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden,dc=com", + "cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden,dc=com", + "cn=Jai Malizia,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alice Krogh,ou=Management,dc=bitwarden,dc=com", + "cn=Ronan Gillard,ou=Payroll,dc=bitwarden,dc=com", + "cn=BettyAnn Sakauye,ou=Management,dc=bitwarden,dc=com", + "cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Adan Fralick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Koren Jalali,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Reza StAmour,ou=Payroll,dc=bitwarden,dc=com", + "cn=Binh DALE,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kanata Panch,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kanata Runciman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lester Brookhart,ou=Management,dc=bitwarden,dc=com", + "cn=Adelheid Godin,ou=Management,dc=bitwarden,dc=com", + "cn=Calypso Hagar,ou=Management,dc=bitwarden,dc=com", + "cn=Leann Bawek,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stormy Bayraktar,ou=Management,dc=bitwarden,dc=com", + "cn=Margarita Delisle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rao Fontana,ou=Management,dc=bitwarden,dc=com", + "cn=Richard Bachelu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tatsman Musa,ou=Management,dc=bitwarden,dc=com", + "cn=Pia Maksoud,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Scovill Sayar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Norry Shen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kayle Ahmad,ou=Payroll,dc=bitwarden,dc=com", + "cn=Debor Schiltz,ou=Peons,dc=bitwarden,dc=com", + "cn=Sandi Kochanski,ou=Management,dc=bitwarden,dc=com", + "cn=Hadria Rowley,ou=Peons,dc=bitwarden,dc=com", + "cn=Rosetta Toscano,ou=Peons,dc=bitwarden,dc=com", + "cn=Chi Winsborrow,ou=Payroll,dc=bitwarden,dc=com", + "cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ammar Foldes,ou=Management,dc=bitwarden,dc=com", + "cn=Andria Nagy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Earle Calkins,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Irc Loper,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dari Landriault,ou=Management,dc=bitwarden,dc=com", + "cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lonna Varano,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shan Heynen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carena Pennington,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Luci Sebastien,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden,dc=com", + "cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden,dc=com", + "cn=Gayleen Hagglund,ou=Management,dc=bitwarden,dc=com", + "cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sybyl Gubbins,ou=Management,dc=bitwarden,dc=com", + "cn=Coursdev Racette,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fayth Biggs,ou=Payroll,dc=bitwarden,dc=com", + "cn=Neely Elbeze,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jamin Shute,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sabuson Flach,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Laurence Wootton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eric Skrobecki,ou=Management,dc=bitwarden,dc=com", + "cn=Tatum Meffe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Reinhard Homonick,ou=Peons,dc=bitwarden,dc=com", + "cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Imojean Sinnott,ou=Payroll,dc=bitwarden,dc=com", + "cn=Matt Buttrey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tadayuki Seguin,ou=Management,dc=bitwarden,dc=com", + "cn=Cang Smyth,ou=Management,dc=bitwarden,dc=com", + "cn=Suzie Guillet,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leilah Traulich,ou=Management,dc=bitwarden,dc=com", + "cn=Horst Kaye,ou=Management,dc=bitwarden,dc=com", + "cn=Nuri Licerio,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tommi Preville,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fredericka Christopher,ou=Peons,dc=bitwarden,dc=com", + "cn=Avivah Shostak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tyne Briard,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Drucy Levere,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gianna Rivera,ou=Administrative,dc=bitwarden,dc=com", + "cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Natalya Heller,ou=Peons,dc=bitwarden,dc=com", + "cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dyana Harsch,ou=Management,dc=bitwarden,dc=com", + "cn=Kazem Guenette,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Allis McCartney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Arlana Shemwell,ou=Peons,dc=bitwarden,dc=com", + "cn=Francisca Pollinzi,ou=Peons,dc=bitwarden,dc=com", + "cn=Radomir Neate,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Earnest Wracher,ou=Peons,dc=bitwarden,dc=com", + "cn=Aurie Hinkle,ou=Management,dc=bitwarden,dc=com", + "cn=Durali Raynor,ou=Management,dc=bitwarden,dc=com", + "cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Isoft Parkash,ou=Peons,dc=bitwarden,dc=com", + "cn=Phillie Kneese,ou=Peons,dc=bitwarden,dc=com", + "cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lucinda Cuellar,ou=Peons,dc=bitwarden,dc=com", + "cn=Rozele Chahal,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marko Mgmt,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anissa Adcox,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hanh Glanfield,ou=Management,dc=bitwarden,dc=com", + "cn=Shailesh Bienek,ou=Management,dc=bitwarden,dc=com", + "cn=Gerardo Bedlington,ou=Peons,dc=bitwarden,dc=com", + "cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Erle Kasprzak,ou=Management,dc=bitwarden,dc=com", + "cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden,dc=com", + "cn=Knut Nilson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Laser Sandiford,ou=Payroll,dc=bitwarden,dc=com", + "cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden,dc=com", + "cn=Moon Bulanda,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Weiping Zeller,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lora Luetchford,ou=Management,dc=bitwarden,dc=com", + "cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mareah Horning,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kapsch Graver,ou=Administrative,dc=bitwarden,dc=com", + "cn=HoiKin Denley,ou=Management,dc=bitwarden,dc=com", + "cn=Huong Quinlan,ou=Management,dc=bitwarden,dc=com", + "cn=Vahe Ruffolo,ou=Peons,dc=bitwarden,dc=com", + "cn=Darina Duguay,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shayna Hollander,ou=Human Resources,dc=bitwarden,dc=com", + "cn=SikYin Gosset,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sapphire Dassie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Baha Brouillette,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Isabella Horning,ou=Management,dc=bitwarden,dc=com", + "cn=Avtar Nyce,ou=Administrative,dc=bitwarden,dc=com", + "cn=Horacio McGuire,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Huyen Guatto,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rustu Thill,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fayre Childers,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sabrina Lenir,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gale Goggin,ou=Management,dc=bitwarden,dc=com", + "cn=Louis Volker,ou=Payroll,dc=bitwarden,dc=com", + "cn=Myrah Roussier,ou=Product Testing,dc=bitwarden,dc=com", + "cn=LLoyd McKeegan,ou=Peons,dc=bitwarden,dc=com", + "cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Annadiane Ctas,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leyton Rolls,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gaal Ragan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hermine Stults,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Klarika MacLean,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Reginald Smit,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cassi McMahon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Myranda Javed,ou=Management,dc=bitwarden,dc=com", + "cn=Cherye Bukta,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carlynne Roob,ou=Administrative,dc=bitwarden,dc=com", + "cn=Wai Winters,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lester Koster,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Alev Llaguno,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jud Fairman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Toyanne Fishencord,ou=Management,dc=bitwarden,dc=com", + "cn=Clarinda Vele,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Blondie Moghis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden,dc=com", + "cn=Noraly Mackzum,ou=Peons,dc=bitwarden,dc=com", + "cn=Len Grzegorek,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ria NetworkOps,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sunny Forslund,ou=Management,dc=bitwarden,dc=com", + "cn=Fanchette Veals,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bobbee Combee,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bennett Attanasio,ou=Management,dc=bitwarden,dc=com", + "cn=Zongyi Stults,ou=Payroll,dc=bitwarden,dc=com", + "cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rob Goupil,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gwyneth Neander,ou=Peons,dc=bitwarden,dc=com", + "cn=Lillien Grohovsky,ou=Management,dc=bitwarden,dc=com", + "cn=Sianna Machika,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Blakeley Lagace,ou=Payroll,dc=bitwarden,dc=com", + "cn=Thuong Rains,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Peg Lahaie,ou=Administrative,dc=bitwarden,dc=com", + "cn=Annissa Bears,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jaffer Grosjean,ou=Management,dc=bitwarden,dc=com", + "cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Quoc Ennis,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Katalin Alteen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Suzie Caruso,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hanh Marui,ou=Peons,dc=bitwarden,dc=com", + "cn=Margette Bolly,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Arvin Mauldin,ou=Peons,dc=bitwarden,dc=com", + "cn=Stephi Sloan,ou=Management,dc=bitwarden,dc=com", + "cn=Ariella Kindel,ou=Management,dc=bitwarden,dc=com", + "cn=Sluis Rasmus,ou=Peons,dc=bitwarden,dc=com", + "cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Onida Kessing,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tasha Good,ou=Payroll,dc=bitwarden,dc=com", + "cn=Audrie Hadaway,ou=Payroll,dc=bitwarden,dc=com", + "cn=Natka Herzig,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Naima Simzer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lotte Ichizen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marco Seto,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mollee Ensing,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Roe Schenk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Christian Wales,ou=Peons,dc=bitwarden,dc=com", + "cn=Loes Rioux,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rubetta Lui,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lonni Sabadash,ou=Peons,dc=bitwarden,dc=com", + "cn=Monica Duensing,ou=Peons,dc=bitwarden,dc=com", + "cn=Colm Gratton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden,dc=com", + "cn=Denise Randall,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Haggar Labfive,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Willow Marko,ou=Management,dc=bitwarden,dc=com", + "cn=Paulinus McNabb,ou=Payroll,dc=bitwarden,dc=com", + "cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sula Piersol,ou=Product Development,dc=bitwarden,dc=com", + "cn=Phillip Shearin,ou=Peons,dc=bitwarden,dc=com", + "cn=Marg Villeneuve,ou=Management,dc=bitwarden,dc=com", + "cn=Halette Kirfman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vijya Wrigley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leung Veit,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Celka Sylvain,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Michiko Zanetti,ou=Payroll,dc=bitwarden,dc=com", + "cn=Derick Sheremeto,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shuji Blander,ou=Payroll,dc=bitwarden,dc=com", + "cn=Conni Dubee,ou=Payroll,dc=bitwarden,dc=com", + "cn=Charlot Kling,ou=Peons,dc=bitwarden,dc=com", + "cn=Ved Missailidis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Valera Rummans,ou=Payroll,dc=bitwarden,dc=com", + "cn=Neely Bresnan,ou=Peons,dc=bitwarden,dc=com", + "cn=Trey Zagrodney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cordie Hippert,ou=Management,dc=bitwarden,dc=com", + "cn=Zanni Godwin,ou=Peons,dc=bitwarden,dc=com", + "cn=Yannick Cricker,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tayeb Leahy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Paulo Goldner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Casi CHOCS,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nata Booking,ou=Peons,dc=bitwarden,dc=com", + "cn=Doretta Turkki,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hq Buske,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roe Levey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Orelia Salinas,ou=Payroll,dc=bitwarden,dc=com", + "cn=Atlante Standel,ou=Peons,dc=bitwarden,dc=com", + "cn=Leela Rylott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cavin Cobo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Moe Oastler,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lesley ElTorky,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brina Guttman,ou=Management,dc=bitwarden,dc=com", + "cn=Hiroko Fait,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Annie Eaton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maskell Fung,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden,dc=com", + "cn=Franky Ramachandran,ou=Product Development,dc=bitwarden,dc=com", + "cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sherri StJohn,ou=Payroll,dc=bitwarden,dc=com", + "cn=Laser Kokkat,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kjell Boatwright,ou=Management,dc=bitwarden,dc=com", + "cn=Lilly Keane,ou=Product Development,dc=bitwarden,dc=com", + "cn=Guenther Feith,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ross Whitaker,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tessi Franze,ou=Management,dc=bitwarden,dc=com", + "cn=Norel Aly,ou=Janitorial,dc=bitwarden,dc=com", + "cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Minetta Mackzum,ou=Administrative,dc=bitwarden,dc=com", + "cn=Javier Kinsey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Donelle Stites,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sophia Gazo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tosca Julian,ou=Peons,dc=bitwarden,dc=com", + "cn=Kellyann Stotz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ende Broome,ou=Administrative,dc=bitwarden,dc=com", + "cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Krystalle Barnes,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Janaye Woodward,ou=Management,dc=bitwarden,dc=com", + "cn=Margot Morin,ou=Peons,dc=bitwarden,dc=com", + "cn=Izumi LeGuen,ou=Peons,dc=bitwarden,dc=com", + "cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden,dc=com", + "cn=Constance Boynton,ou=Management,dc=bitwarden,dc=com", + "cn=Georgia Blazer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Millard Lightfield,ou=Payroll,dc=bitwarden,dc=com", + "cn=Clio Bugajska,ou=Management,dc=bitwarden,dc=com", + "cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anitra Metrics,ou=Administrative,dc=bitwarden,dc=com", + "cn=Manish Strachan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nessy Langton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leonida Moncur,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Uday Australia,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bren Marzella,ou=Management,dc=bitwarden,dc=com", + "cn=Vries Bathrick,ou=Management,dc=bitwarden,dc=com", + "cn=Maryann Felix,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carly Bugajski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Baruk Zinn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Robinett Etten,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Monteene Fraties,ou=Peons,dc=bitwarden,dc=com", + "cn=Jo Ritter,ou=Administrative,dc=bitwarden,dc=com", + "cn=Laurent Viehweg,ou=Administrative,dc=bitwarden,dc=com", + "cn=Devonne Erickson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chantal Di,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sluis Quek,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maxey Cavasso,ou=Management,dc=bitwarden,dc=com", + "cn=Claire Greveling,ou=Product Development,dc=bitwarden,dc=com", + "cn=Keven Krishnan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dau Banigan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kayla Carlisle,ou=Administrative,dc=bitwarden,dc=com", + "cn=Juozas Hengl,ou=Management,dc=bitwarden,dc=com", + "cn=Ramniklal Traulich,ou=Management,dc=bitwarden,dc=com", + "cn=David Vennos,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shiela Nixon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mona Kohler,ou=Management,dc=bitwarden,dc=com", + "cn=Elene DOrazio,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elspeth Bussey,ou=Peons,dc=bitwarden,dc=com", + "cn=Mari Abbott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden,dc=com", + "cn=Josine Hwang,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gypsy Weiser,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nir Cornaro,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bettine Centis,ou=Peons,dc=bitwarden,dc=com", + "cn=Sami Phipps,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Valaria Jamshidi,ou=Peons,dc=bitwarden,dc=com", + "cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Loleta DuBois,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Suzi Penfield,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mot Harper,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Beata Shyu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carter Munroe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Johnnie Holmes,ou=Peons,dc=bitwarden,dc=com", + "cn=Rollo Rolfes,ou=Management,dc=bitwarden,dc=com", + "cn=Wendye Queries,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tonie Ausley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bertina Winchester,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Knut Louisseize,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Miguelita Merworth,ou=Peons,dc=bitwarden,dc=com", + "cn=Vlad Hilder,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Norry Hord,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kurt Bozicevich,ou=Peons,dc=bitwarden,dc=com", + "cn=Charles Orsini,ou=Management,dc=bitwarden,dc=com", + "cn=Meriline Tom,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Genga Kahn,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gates Scharf,ou=Peons,dc=bitwarden,dc=com", + "cn=Isabelita Weger,ou=Management,dc=bitwarden,dc=com", + "cn=Dulci Arsenault,ou=Peons,dc=bitwarden,dc=com", + "cn=Lurleen Mowbray,ou=Management,dc=bitwarden,dc=com", + "cn=Kary Bickford,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tsugio Knorp,ou=Product Development,dc=bitwarden,dc=com", + "cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sindee Haertel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Reiko Lemay,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Karoline Korey,ou=Peons,dc=bitwarden,dc=com", + "cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zonnya Penn,ou=Payroll,dc=bitwarden,dc=com", + "cn=Christoph Lorance,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vanity Tropea,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cyb Centers,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Muire Bakhach,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eliza Gros,ou=Peons,dc=bitwarden,dc=com", + "cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Brita Jodoin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Renu Paynter,ou=Administrative,dc=bitwarden,dc=com", + "cn=Honey Karole,ou=Payroll,dc=bitwarden,dc=com", + "cn=MaryJane Cusick,ou=Peons,dc=bitwarden,dc=com", + "cn=Romina McClain,ou=Payroll,dc=bitwarden,dc=com", + "cn=Robinett Zeisler,ou=Management,dc=bitwarden,dc=com", + "cn=Ervin Guindi,ou=Management,dc=bitwarden,dc=com", + "cn=Vernice Brandon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wil Vasil,ou=Peons,dc=bitwarden,dc=com", + "cn=Anader Atp,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cecil Martincich,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Madelin Hysler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Colleen Hotlist,ou=Administrative,dc=bitwarden,dc=com", + "cn=Clarence Baragar,ou=Peons,dc=bitwarden,dc=com", + "cn=Marvette Mony,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Janette Stasyszyn,ou=Management,dc=bitwarden,dc=com", + "cn=Colette Iu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Morissa Weiss,ou=Payroll,dc=bitwarden,dc=com", + "cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Olva Smid,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Beulah Kacor,ou=Management,dc=bitwarden,dc=com", + "cn=Stefa Aksel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sadru Quintana,ou=Administrative,dc=bitwarden,dc=com", + "cn=Suzan Dourley,ou=Peons,dc=bitwarden,dc=com", + "cn=Wil Hirose,ou=Management,dc=bitwarden,dc=com", + "cn=Auria Remson,ou=Management,dc=bitwarden,dc=com", + "cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pennie Akai,ou=Peons,dc=bitwarden,dc=com", + "cn=Allyce Versteeg,ou=Peons,dc=bitwarden,dc=com", + "cn=Norah Saunderson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chery Vieira,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Karita Hoekstra,ou=Peons,dc=bitwarden,dc=com", + "cn=Milt Pilipchuk,ou=Peons,dc=bitwarden,dc=com", + "cn=Pal Hnidek,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Teodora Weidinger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stephen Shearer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Celka Antle,ou=Peons,dc=bitwarden,dc=com", + "cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Binnie Newham,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ursula Duvarci,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ted Clinton,ou=Peons,dc=bitwarden,dc=com", + "cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ivie Petrie,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kuswara Heighton,ou=Management,dc=bitwarden,dc=com", + "cn=Johanna Virani,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marit Simons,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Joel Hinton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mentor Kimler,ou=Payroll,dc=bitwarden,dc=com", + "cn=Thuy Kolos,ou=Peons,dc=bitwarden,dc=com", + "cn=Sergiu Chai,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sande Desjarlais,ou=Product Development,dc=bitwarden,dc=com", + "cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Allis Sherard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Miriya Planthara,ou=Management,dc=bitwarden,dc=com", + "cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden,dc=com", + "cn=HackHoo Jatar,ou=Management,dc=bitwarden,dc=com", + "cn=Vonni Mansi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mair Tsui,ou=Payroll,dc=bitwarden,dc=com", + "cn=Darya Marttinen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kees Arsena,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Darleen Flowers,ou=Product Development,dc=bitwarden,dc=com", + "cn=Noyes Huenemann,ou=Management,dc=bitwarden,dc=com", + "cn=Buster Myre,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tristano Angus,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Anita Roesler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Monling Goin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dannye Munsey,ou=Peons,dc=bitwarden,dc=com", + "cn=Agnella Pinalez,ou=Peons,dc=bitwarden,dc=com", + "cn=Shashank Romberg,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Narinder Vilhan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jeremy Schuster,ou=Management,dc=bitwarden,dc=com", + "cn=Saraann Blakkolb,ou=Management,dc=bitwarden,dc=com", + "cn=Aida Brunelle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Merrielle Hine,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden,dc=com", + "cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden,dc=com", + "cn=Beckie Cowell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maso Mathewson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Arnis Fredette,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maddie Bowick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jolene Datema,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kuswara Musick,ou=Management,dc=bitwarden,dc=com", + "cn=Belia Mustafa,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kelcie Rowe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Oguz Crafton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anallese Luszczek,ou=Product Development,dc=bitwarden,dc=com", + "cn=Raeann Fu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dyanna Hartling,ou=Payroll,dc=bitwarden,dc=com", + "cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hamid Peng,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Michaela Minichillo,ou=Peons,dc=bitwarden,dc=com", + "cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Romano Moosavi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nannette Pantages,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zaihua Dhuga,ou=Peons,dc=bitwarden,dc=com", + "cn=Niki Brock,ou=Management,dc=bitwarden,dc=com", + "cn=Lucila Jatar,ou=Management,dc=bitwarden,dc=com", + "cn=Reiko StJames,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carmen Poulin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Loree Dorval,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Reinhold Ballinger,ou=Management,dc=bitwarden,dc=com", + "cn=Mat Smyth,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lesya Maye,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dixie Oshinski,ou=Management,dc=bitwarden,dc=com", + "cn=Stephanie Crerar,ou=Peons,dc=bitwarden,dc=com", + "cn=Miguelita Wyss,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lee Kreimer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Violetta Nttest,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chau Gyenes,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melva Kaefer,ou=Management,dc=bitwarden,dc=com", + "cn=Celinka Laprade,ou=Peons,dc=bitwarden,dc=com", + "cn=Abbey Firat,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Coleen Kovats,ou=Product Development,dc=bitwarden,dc=com", + "cn=Merla Tsitsior,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marek Harwerth,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bertie Whatley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Message Cohen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chai NTINASH,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karin Schaller,ou=Management,dc=bitwarden,dc=com", + "cn=Nicolea StMartin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Heda Bowens,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Conni Westgarth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Joell Bolzon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Christianne Carling,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nessy Grewal,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lex Woodyer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pamela Fon,ou=Peons,dc=bitwarden,dc=com", + "cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden,dc=com", + "cn=Loris Winterberg,ou=Administrative,dc=bitwarden,dc=com", + "cn=Business Huether,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Susanne Repeta,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Willie Murphy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Donella Duncan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden,dc=com", + "cn=JeanBernard Coord,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tove Mettrey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kathye Terwilligar,ou=Peons,dc=bitwarden,dc=com", + "cn=Emilda Wylie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anette McBryan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jannelle Burnside,ou=Management,dc=bitwarden,dc=com", + "cn=Swact Evans,ou=Management,dc=bitwarden,dc=com", + "cn=Almeda Bloemker,ou=Peons,dc=bitwarden,dc=com", + "cn=Ronn Peschke,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ainslee Scp,ou=Management,dc=bitwarden,dc=com", + "cn=Claudina Jablonski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Olwen Garey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden,dc=com", + "cn=Empdb Jahromi,ou=Peons,dc=bitwarden,dc=com", + "cn=Ri Stouder,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Darlene Mahonen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mayumi Piitz,ou=Peons,dc=bitwarden,dc=com", + "cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jeri Nadeau,ou=Product Development,dc=bitwarden,dc=com", + "cn=Valentina Diogo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Errol Pieron,ou=Administrative,dc=bitwarden,dc=com", + "cn=Blanca Murock,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rebeka McKinley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sean Stayton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elex Zaharychuk,ou=Management,dc=bitwarden,dc=com", + "cn=Francesca Alguire,ou=Management,dc=bitwarden,dc=com", + "cn=Georgie Bosy,ou=Peons,dc=bitwarden,dc=com", + "cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fenelia Costache,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mab Lao,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sayla Varia,ou=Payroll,dc=bitwarden,dc=com", + "cn=Helyn Roberts,ou=Peons,dc=bitwarden,dc=com", + "cn=Emr Zisu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ame Frie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Wonda Chao,ou=Administrative,dc=bitwarden,dc=com", + "cn=Oralle Checinski,ou=Peons,dc=bitwarden,dc=com", + "cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden,dc=com", + "cn=Birendra Britton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rebeka McCall,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Constantine Bulanda,ou=Management,dc=bitwarden,dc=com", + "cn=Sibel Kurdas,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pcta Littlewood,ou=Management,dc=bitwarden,dc=com", + "cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Normand Simpkin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Viole Scates,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Melisent McAfee,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jemima Hennelly,ou=Peons,dc=bitwarden,dc=com", + "cn=Halette Hoag,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fayre Patenaude,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rob Allan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Noyes Bergman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Else McCollam,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bellina Koens,ou=Management,dc=bitwarden,dc=com", + "cn=Lian Shapcott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Florella Pichocki,ou=Management,dc=bitwarden,dc=com", + "cn=Maribel Zafarano,ou=Management,dc=bitwarden,dc=com", + "cn=Ren Dickerson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Darla Puglia,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Stacee Mamoulides,ou=Peons,dc=bitwarden,dc=com", + "cn=Adrien Bennatt,ou=Management,dc=bitwarden,dc=com", + "cn=Stesha Cotten,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ryann McRonald,ou=Management,dc=bitwarden,dc=com", + "cn=Joete Pham,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kimmie Dyess,ou=Management,dc=bitwarden,dc=com", + "cn=Crin Seeley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mercie Polson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elvert Tripp,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mead Urquhart,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jan Delorenzi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Johnny Stetter,ou=Management,dc=bitwarden,dc=com", + "cn=Marjan Bourk,ou=Management,dc=bitwarden,dc=com", + "cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marjan Angell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Darrol Calder,ou=Administrative,dc=bitwarden,dc=com", + "cn=Meridian Buder,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ericka Contardo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Saeed Liston,ou=Peons,dc=bitwarden,dc=com", + "cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cinnamon Jurman,ou=Peons,dc=bitwarden,dc=com", + "cn=Karlie Hord,ou=Peons,dc=bitwarden,dc=com", + "cn=Ozlem Switching,ou=Peons,dc=bitwarden,dc=com", + "cn=Seven Figura,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Birendra Helton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Madan Babcock,ou=Management,dc=bitwarden,dc=com", + "cn=Mandi Whitford,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ilse Silwer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tommy Fabry,ou=Administrative,dc=bitwarden,dc=com", + "cn=Doloritas Renton,ou=Peons,dc=bitwarden,dc=com", + "cn=Beb Carlson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Audrey Charchanko,ou=Peons,dc=bitwarden,dc=com", + "cn=Grantley Walles,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vale Yost,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kalie Krausbar,ou=Management,dc=bitwarden,dc=com", + "cn=Martino Busby,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Selma Kletchko,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lineth Montoute,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jolie Langenberg,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carm Mach,ou=Janitorial,dc=bitwarden,dc=com", + "cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden,dc=com", + "cn=Radio Balog,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zere Zafarullah,ou=Management,dc=bitwarden,dc=com", + "cn=Waly Grabowski,ou=Management,dc=bitwarden,dc=com", + "cn=Dallas Smelters,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zalee Caron,ou=Product Development,dc=bitwarden,dc=com", + "cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden,dc=com", + "cn=Konstanze Cordell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Froukje Ecker,ou=Management,dc=bitwarden,dc=com", + "cn=Petri Uhlig,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tessa Pino,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Britni Routing,ou=Administrative,dc=bitwarden,dc=com", + "cn=Michelle Mirza,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Starlin Schilling,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Manya Cripps,ou=Administrative,dc=bitwarden,dc=com", + "cn=Esther Buttrey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tamma Sellwood,ou=Administrative,dc=bitwarden,dc=com", + "cn=RongChin Fisher,ou=Management,dc=bitwarden,dc=com", + "cn=Karena Bissegger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zainab Musgrove,ou=Peons,dc=bitwarden,dc=com", + "cn=Rebekah Fenner,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gabey Florescu,ou=Peons,dc=bitwarden,dc=com", + "cn=Padraig Scorziello,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clarisse Venne,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sally Gimon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Siusan Surridge,ou=Management,dc=bitwarden,dc=com", + "cn=Dorris MacDonald,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zoltan Copes,ou=Peons,dc=bitwarden,dc=com", + "cn=Annadiane Moulton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chrystal Salkok,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ayaz McFeely,ou=Payroll,dc=bitwarden,dc=com", + "cn=Missie Dinnin,ou=Peons,dc=bitwarden,dc=com", + "cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karlee Cheval,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Constantia Hampshire,ou=Peons,dc=bitwarden,dc=com", + "cn=Delle Stansfield,ou=Administrative,dc=bitwarden,dc=com", + "cn=Percy Fiset,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Thea Goh,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Evanne Twiss,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden,dc=com", + "cn=Opaline Bayno,ou=Management,dc=bitwarden,dc=com", + "cn=Delbert Hodgens,ou=Payroll,dc=bitwarden,dc=com", + "cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden,dc=com", + "cn=Antonio Ide,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden,dc=com", + "cn=Berget Feil,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Matty Danielak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Prafula Stasney,ou=Management,dc=bitwarden,dc=com", + "cn=Eyk Bradford,ou=Peons,dc=bitwarden,dc=com", + "cn=Della Barbe,ou=Management,dc=bitwarden,dc=com", + "cn=Darelle Waid,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dino Farren,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ruth Chouinard,ou=Peons,dc=bitwarden,dc=com", + "cn=Tiina Averette,ou=Product Development,dc=bitwarden,dc=com", + "cn=Meghann Marasco,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Agnella Chona,ou=Management,dc=bitwarden,dc=com", + "cn=Olimpia Stetter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zea Hoadley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kanu Constantinides,ou=Management,dc=bitwarden,dc=com", + "cn=Priti Hummerston,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Siobhan Duffney,ou=Product Development,dc=bitwarden,dc=com", + "cn=KaiWai Greenberg,ou=Management,dc=bitwarden,dc=com", + "cn=Phyllys Relations,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Onette Erwin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Micheal Threader,ou=Peons,dc=bitwarden,dc=com", + "cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Melitta Teacher,ou=Management,dc=bitwarden,dc=com", + "cn=Francesca Spinks,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kippie Genova,ou=Human Resources,dc=bitwarden,dc=com", + "cn=My Geuder,ou=Payroll,dc=bitwarden,dc=com", + "cn=Corene Goldman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bea Shanahan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Adah Simzer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Minnesota Safah,ou=Administrative,dc=bitwarden,dc=com", + "cn=Perrine Ketkar,ou=Peons,dc=bitwarden,dc=com", + "cn=Jilly Kwok,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sharona Lunde,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lynnette Juskevicius,ou=Management,dc=bitwarden,dc=com", + "cn=PeyKee Gunther,ou=Administrative,dc=bitwarden,dc=com", + "cn=Howden LaBauve,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dana Linaugh,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gnni Schafer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Callida Tropea,ou=Management,dc=bitwarden,dc=com", + "cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amara Zisu,ou=Product Development,dc=bitwarden,dc=com", + "cn=Delly Macklem,ou=Product Development,dc=bitwarden,dc=com", + "cn=Faustina Yedema,ou=Payroll,dc=bitwarden,dc=com", + "cn=Annamaria Handforth,ou=Administrative,dc=bitwarden,dc=com", + "cn=Korney Gehm,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Archie Klimon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Angela Holland,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marcellina Clairmont,ou=Peons,dc=bitwarden,dc=com", + "cn=Kristien Yamamoto,ou=Peons,dc=bitwarden,dc=com", + "cn=Nayan Simcox,ou=Payroll,dc=bitwarden,dc=com", + "cn=Celisse Draier,ou=Product Development,dc=bitwarden,dc=com", + "cn=Matty Vasile,ou=Payroll,dc=bitwarden,dc=com", + "cn=WingKi McClain,ou=Peons,dc=bitwarden,dc=com", + "cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shutterbug Ta,ou=Product Development,dc=bitwarden,dc=com", + "cn=Les Oreilly,ou=Administrative,dc=bitwarden,dc=com", + "cn=Veen Cawley,ou=Management,dc=bitwarden,dc=com", + "cn=Stergios Romanowski,ou=Peons,dc=bitwarden,dc=com", + "cn=Shyam Hipson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carley Dal,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Chickie Dyna,ou=Management,dc=bitwarden,dc=com", + "cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Norstar Bouick,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kapsch Bitton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yoko Feder,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eugine Werick,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marley Newcomb,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zhanna Lyons,ou=Management,dc=bitwarden,dc=com", + "cn=Desire Adam,ou=Administrative,dc=bitwarden,dc=com", + "cn=Joni Dhir,ou=Payroll,dc=bitwarden,dc=com", + "cn=Quyen Boyle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fallon Lavigne,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aleda Kato,ou=Peons,dc=bitwarden,dc=com", + "cn=Cristine Musser,ou=Peons,dc=bitwarden,dc=com", + "cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shantee Tsao,ou=Administrative,dc=bitwarden,dc=com", + "cn=Phu Krowlek,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Estrella Infocenter,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Steinar Mathur,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jayme Shemwell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Masha McGinn,ou=Administrative,dc=bitwarden,dc=com", + "cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Astrix Tiller,ou=Peons,dc=bitwarden,dc=com", + "cn=Arlan Fadel,ou=Management,dc=bitwarden,dc=com", + "cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Siouxie Norgaard,ou=Management,dc=bitwarden,dc=com", + "cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden,dc=com", + "cn=Phaedra Mavrou,ou=Peons,dc=bitwarden,dc=com", + "cn=Thang Kerr,ou=Peons,dc=bitwarden,dc=com", + "cn=Helsa Cau,ou=Management,dc=bitwarden,dc=com", + "cn=Dyana Tchir,ou=Management,dc=bitwarden,dc=com", + "cn=Elga Hrenyk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brooks Helgeland,ou=Management,dc=bitwarden,dc=com", + "cn=Toshi Ircmer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden,dc=com", + "cn=Yosuf Diaconu,ou=Peons,dc=bitwarden,dc=com", + "cn=Nomi Kielstra,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carolyn Sanche,ou=Peons,dc=bitwarden,dc=com", + "cn=Marj Anker,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Agneta Gundlach,ou=Peons,dc=bitwarden,dc=com", + "cn=Jeffery Pafilis,ou=Management,dc=bitwarden,dc=com", + "cn=Isoft Buchanan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cassaundra Gerenser,ou=Management,dc=bitwarden,dc=com", + "cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roberta Rorie,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bliss Fahey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden,dc=com", + "cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wargnier Deployment,ou=Management,dc=bitwarden,dc=com", + "cn=Orsa Brunsting,ou=Peons,dc=bitwarden,dc=com", + "cn=Gudrun Yassa,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden,dc=com", + "cn=Damon Bradbury,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden,dc=com", + "cn=Onette Garguilo,ou=Peons,dc=bitwarden,dc=com", + "cn=Meridel Dahl,ou=Management,dc=bitwarden,dc=com", + "cn=Clem Gallagher,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lanni Totti,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Robertson Soh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pavia Costen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karyn Holz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ikram Thiel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden,dc=com", + "cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ladan Fabrizio,ou=Peons,dc=bitwarden,dc=com", + "cn=Leeanne Credille,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Augusto Aguiar,ou=Management,dc=bitwarden,dc=com", + "cn=Gayl IBNTAS,ou=Peons,dc=bitwarden,dc=com", + "cn=Painterson Watkinson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kieran Copley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Othilie Sconzo,ou=Peons,dc=bitwarden,dc=com", + "cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Raju Sellars,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carly Kammerer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dian Rhoads,ou=Administrative,dc=bitwarden,dc=com", + "cn=Utpala Weldon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden,dc=com", + "cn=Thornton McDermott,ou=Product Development,dc=bitwarden,dc=com", + "cn=Juditha Shirai,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Wini Flynn,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Open Simhan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Adelina Grigsby,ou=Management,dc=bitwarden,dc=com", + "cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden,dc=com", + "cn=Woon Gillis,ou=Product Development,dc=bitwarden,dc=com", + "cn=Remi Lillis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dagmar Niles,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Geralene Groleau,ou=Peons,dc=bitwarden,dc=com", + "cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Colm Katsouras,ou=Peons,dc=bitwarden,dc=com", + "cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden,dc=com", + "cn=Caroline Darou,ou=Management,dc=bitwarden,dc=com", + "cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maegan Rafter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Margery Buckalew,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Charleen Willison,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Basia Ouellette,ou=Management,dc=bitwarden,dc=com", + "cn=Latashia Ridgeway,ou=Peons,dc=bitwarden,dc=com", + "cn=Rhodia SOS,ou=Administrative,dc=bitwarden,dc=com", + "cn=WaiHung Kan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ehab Gidaro,ou=Administrative,dc=bitwarden,dc=com", + "cn=Almeda Barstow,ou=Peons,dc=bitwarden,dc=com", + "cn=Hernan Newbold,ou=Payroll,dc=bitwarden,dc=com", + "cn=Elonore Lorenc,ou=Product Development,dc=bitwarden,dc=com", + "cn=Melva Dingle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Janka Gorfine,ou=Peons,dc=bitwarden,dc=com", + "cn=Carleen Natiuk,ou=Management,dc=bitwarden,dc=com", + "cn=Dimitra Prokes,ou=Management,dc=bitwarden,dc=com", + "cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", + "cn=WaiMan Sinha,ou=Peons,dc=bitwarden,dc=com", + "cn=Therese Nikfarjam,ou=Peons,dc=bitwarden,dc=com", + "cn=Geer Lamonde,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chelsae Polder,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shuji Pien,ou=Peons,dc=bitwarden,dc=com", + "cn=Annet Rege,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ellen Vertolli,ou=Management,dc=bitwarden,dc=com", + "cn=Zandra Belk,ou=Management,dc=bitwarden,dc=com", + "cn=Milan Shu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lubomir Carver,ou=Peons,dc=bitwarden,dc=com", + "cn=Kieron Remrey,ou=Payroll,dc=bitwarden,dc=com", + "cn=Frayda Urquhart,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kat Torok,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Selina Sauder,ou=Administrative,dc=bitwarden,dc=com", + "cn=Joshi Wery,ou=Administrative,dc=bitwarden,dc=com", + "cn=Corilla Carey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Devon Patchcor,ou=Peons,dc=bitwarden,dc=com", + "cn=Thor Crompton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sallee Demone,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Patsy Hanley,ou=Peons,dc=bitwarden,dc=com", + "cn=Lily Sturdivant,ou=Management,dc=bitwarden,dc=com", + "cn=Howie Howarth,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jo Tropeano,ou=Administrative,dc=bitwarden,dc=com", + "cn=Howard Acs,ou=Payroll,dc=bitwarden,dc=com", + "cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Otakar Carella,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Digby Papajanis,ou=Peons,dc=bitwarden,dc=com", + "cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Trixy Grewal,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sami Huguin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kui Mulero,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tyne McHarg,ou=Product Development,dc=bitwarden,dc=com", + "cn=Constantin Harkness,ou=Product Development,dc=bitwarden,dc=com", + "cn=Galen Mariani,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dolores Lacosse,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vradmin Aasen,ou=Peons,dc=bitwarden,dc=com", + "cn=Roseline Revis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eiji Tel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mariesara Reichman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sandi Bush,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Emmalynn Dai,ou=Payroll,dc=bitwarden,dc=com", + "cn=Josef Godcharles,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gay Ondovcik,ou=Administrative,dc=bitwarden,dc=com", + "cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cad fpsched,ou=Administrative,dc=bitwarden,dc=com", + "cn=Oscar Paris,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chan Blumer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chabert Hawkins,ou=Payroll,dc=bitwarden,dc=com", + "cn=VanKing Iskandar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carena Toplis,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nelleke Fredette,ou=Payroll,dc=bitwarden,dc=com", + "cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jock Ahdieh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ru Lindt,ou=Peons,dc=bitwarden,dc=com", + "cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden,dc=com", + "cn=Desiri Picard,ou=Management,dc=bitwarden,dc=com", + "cn=Mewa Melfi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Elio Naylor,ou=Peons,dc=bitwarden,dc=com", + "cn=Vince Adamowicz,ou=Peons,dc=bitwarden,dc=com", + "cn=Annis Emery,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Valma Standen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mauro Meres,ou=Product Development,dc=bitwarden,dc=com", + "cn=Brianne Takagi,ou=Peons,dc=bitwarden,dc=com", + "cn=Azra Gravely,ou=Management,dc=bitwarden,dc=com", + "cn=Liza Centeno,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lendon Pinney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Madelina Naolu,ou=Management,dc=bitwarden,dc=com", + "cn=Brittan Vela,ou=Peons,dc=bitwarden,dc=com", + "cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marcos Spicer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pierrette Deleon,ou=Management,dc=bitwarden,dc=com", + "cn=Darell Groth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kathi Altman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Moel Pieroway,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mildred Fansher,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Georgina Hardersen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rasia Jakim,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rycca Satterfield,ou=Peons,dc=bitwarden,dc=com", + "cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden,dc=com", + "cn=Merissa Jessup,ou=Management,dc=bitwarden,dc=com", + "cn=Divine Zarate,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nitin Wolfe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden,dc=com", + "cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bijan Badjari,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Margy Chartrand,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Velma Portz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dodie Bandel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Georgianne Bydeley,ou=Management,dc=bitwarden,dc=com", + "cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Barbe Bolduc,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shaylah Demren,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ngai Konarski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Candi Ashley,ou=Peons,dc=bitwarden,dc=com", + "cn=Darko Ledoux,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Trish Laberge,ou=Payroll,dc=bitwarden,dc=com", + "cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Charee Fiegel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eirena McNeese,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden,dc=com", + "cn=Meade Epting,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eliza Marko,ou=Product Development,dc=bitwarden,dc=com", + "cn=Doll Crutchfield,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sergei Edwards,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Alfons Besson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Delmar Modl,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Peggie Jung,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mot Goodner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shaine Davalo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rod Hingtgen,ou=Peons,dc=bitwarden,dc=com", + "cn=Maddalena Melton,ou=Peons,dc=bitwarden,dc=com", + "cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gusta Reavis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ramanand Noy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tom Gowens,ou=Peons,dc=bitwarden,dc=com", + "cn=Sayed Wilke,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jeralee Kiefer,ou=Peons,dc=bitwarden,dc=com", + "cn=Tatsuya Kayle,ou=Management,dc=bitwarden,dc=com", + "cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Roselin Zahn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shanda deRosenroll,ou=Management,dc=bitwarden,dc=com", + "cn=Meriline Parkin,ou=Management,dc=bitwarden,dc=com", + "cn=Minnesota Milway,ou=Product Development,dc=bitwarden,dc=com", + "cn=Oren Keffer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Blanche Lantto,ou=Peons,dc=bitwarden,dc=com", + "cn=Penny Polakowski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Helene Halford,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ladonna Kester,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carling Castillo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cark Redish,ou=Management,dc=bitwarden,dc=com", + "cn=Caresse Appenzeller,ou=Peons,dc=bitwarden,dc=com", + "cn=Sheree Berman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anabal Hathaway,ou=Payroll,dc=bitwarden,dc=com", + "cn=Valma Keffer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Johnny Harron,ou=Payroll,dc=bitwarden,dc=com", + "cn=Channa Brokaw,ou=Product Development,dc=bitwarden,dc=com", + "cn=Annabella Spaugh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Klink Sprott,ou=Administrative,dc=bitwarden,dc=com", + "cn=Roe Reinboth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cathrine Mashura,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shigeru Rausch,ou=Payroll,dc=bitwarden,dc=com", + "cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ingeberg Eagles,ou=Management,dc=bitwarden,dc=com", + "cn=Arjun Auker,ou=Peons,dc=bitwarden,dc=com", + "cn=Cary Gillot,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kishor Aurelius,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mair Dragert,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nata Manson,ou=Management,dc=bitwarden,dc=com", + "cn=Carmody Stough,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vicky Kenol,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lorelle Korf,ou=Peons,dc=bitwarden,dc=com", + "cn=Angele Dangubic,ou=Peons,dc=bitwarden,dc=com", + "cn=Ilene Knio,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Harrison Klodt,ou=Administrative,dc=bitwarden,dc=com", + "cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Orel Hassenklover,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sonya Hixson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Simen Pankhurst,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alberta Roddy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shelley Guitard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Benthem Aghili,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nad Sheth,ou=Peons,dc=bitwarden,dc=com", + "cn=Katherine AuYeung,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rollie Lohoar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Siamak Tullo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marco Trautman,ou=Management,dc=bitwarden,dc=com", + "cn=James Silgardo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gipsy Letulle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Missagh Breglec,ou=Payroll,dc=bitwarden,dc=com", + "cn=Debadeep Karass,ou=Product Development,dc=bitwarden,dc=com", + "cn=Madeline Bir,ou=Payroll,dc=bitwarden,dc=com", + "cn=Betsey Doi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden,dc=com", + "cn=Indiana Schejbal,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mickie Farhan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cubicle McMann,ou=Administrative,dc=bitwarden,dc=com", + "cn=Olva Mathewson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden,dc=com", + "cn=Kiet Strober,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Meggy Vardy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cyrine Marceau,ou=Management,dc=bitwarden,dc=com", + "cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Junk Kopala,ou=Payroll,dc=bitwarden,dc=com", + "cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shandra Connell,ou=Management,dc=bitwarden,dc=com", + "cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Munaz Reynolds,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lavinia LaBauve,ou=Peons,dc=bitwarden,dc=com", + "cn=Lilllie Ruthart,ou=Peons,dc=bitwarden,dc=com", + "cn=Mani Keseris,ou=Payroll,dc=bitwarden,dc=com", + "cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lilith LLoyd,ou=Management,dc=bitwarden,dc=com", + "cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Luann Rodger,ou=Product Development,dc=bitwarden,dc=com", + "cn=Evania Keehan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vivianna Rassell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rudie Dunlay,ou=Payroll,dc=bitwarden,dc=com", + "cn=Berti JantzLee,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Aigneis Marghetis,ou=Peons,dc=bitwarden,dc=com", + "cn=Gordon Buhler,ou=Management,dc=bitwarden,dc=com", + "cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Austine ODale,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lab Carstensen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amalita Smith,ou=Peons,dc=bitwarden,dc=com", + "cn=Barbe Degen,ou=Management,dc=bitwarden,dc=com", + "cn=Ros Varkel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Anissa Belley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Khurshid Balsas,ou=Peons,dc=bitwarden,dc=com", + "cn=Amata Byers,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tonya Brough,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nancy Stocker,ou=Peons,dc=bitwarden,dc=com", + "cn=Analiese Hooper,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mikelis Chaves,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liv Ayukawa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Amir Andre,ou=Peons,dc=bitwarden,dc=com", + "cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jacob Mahin,ou=Management,dc=bitwarden,dc=com", + "cn=Genvieve Albers,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mallory Xenos,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden,dc=com", + "cn=Christie Shapiro,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jackie Au,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marshall Paine,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roman Materna,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jerald Gutcher,ou=Management,dc=bitwarden,dc=com", + "cn=Berty Bittman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden,dc=com", + "cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Adara Smyth,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Robenia Prescott,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Berna Mahaffee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Drusilla Riou,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elsie Ryals,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sanae Glaser,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Melisenda Shuster,ou=Peons,dc=bitwarden,dc=com", + "cn=Jasver Loza,ou=Management,dc=bitwarden,dc=com", + "cn=Joseph Beshai,ou=Management,dc=bitwarden,dc=com", + "cn=Rebecca Landriault,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kokkhiang Holness,ou=Management,dc=bitwarden,dc=com", + "cn=Stormy Berger,ou=Management,dc=bitwarden,dc=com", + "cn=Olva Mooder,ou=Peons,dc=bitwarden,dc=com", + "cn=Tash Ficco,ou=Payroll,dc=bitwarden,dc=com", + "cn=Paulita Jobs,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kanata Ning,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dalila Shull,ou=Payroll,dc=bitwarden,dc=com", + "cn=Georgianne Bour,ou=Administrative,dc=bitwarden,dc=com", + "cn=Venita Brandon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Krishna Kiens,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ashlen Plssup,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hojjat Burchat,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mani Gravitte,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chiu Pilipchuk,ou=Management,dc=bitwarden,dc=com", + "cn=Shamim Uffner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Trude Graves,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Caressa Balogh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lyn Serre,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clemmy Doda,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kesley Nallengara,ou=Management,dc=bitwarden,dc=com", + "cn=Joji Skeoch,ou=Management,dc=bitwarden,dc=com", + "cn=Gwyn Peerman,ou=Management,dc=bitwarden,dc=com", + "cn=Mila Lodeserto,ou=Administrative,dc=bitwarden,dc=com", + "cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bess Ottowa,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sieber Churchill,ou=Peons,dc=bitwarden,dc=com", + "cn=Lyndy Sides,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lino Rix,ou=Administrative,dc=bitwarden,dc=com", + "cn=Charangit Desplanque,ou=Product Development,dc=bitwarden,dc=com", + "cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden,dc=com", + "cn=Barry Vajentic,ou=Product Development,dc=bitwarden,dc=com", + "cn=Waiching Morrin,ou=Management,dc=bitwarden,dc=com", + "cn=Sattar Kane,ou=Payroll,dc=bitwarden,dc=com", + "cn=YukWha Kielstra,ou=Management,dc=bitwarden,dc=com", + "cn=Sharon Meletios,ou=Management,dc=bitwarden,dc=com", + "cn=Binni Gaines,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ying Spejewski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Agnesse Nessman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yoda Milne,ou=Peons,dc=bitwarden,dc=com", + "cn=Marsh McGurn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hilda Baldridge,ou=Management,dc=bitwarden,dc=com", + "cn=Caro Vopalensky,ou=Product Development,dc=bitwarden,dc=com", + "cn=Buffy Naolu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Royal Parniani,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anthea Eros,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kiele Commazzi,ou=Management,dc=bitwarden,dc=com", + "cn=Yvan Diaconu,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kitti Seshadri,ou=Payroll,dc=bitwarden,dc=com", + "cn=Camala McMillan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eamon Salvin,ou=Management,dc=bitwarden,dc=com", + "cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vito Calcote,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mandie Kneeshaw,ou=Management,dc=bitwarden,dc=com", + "cn=Fiann Fouts,ou=Administrative,dc=bitwarden,dc=com", + "cn=Patt Ferner,ou=Management,dc=bitwarden,dc=com", + "cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Grier Kovarik,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mela MacNeill,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Akram Rajwani,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lendon Valin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ikram Taylor,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gert Grassmann,ou=Payroll,dc=bitwarden,dc=com", + "cn=Oksana Dorn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Karleen McKinley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Helmut Sigda,ou=Payroll,dc=bitwarden,dc=com", + "cn=Grover Au,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Barb Ricketts,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carina Akens,ou=Product Development,dc=bitwarden,dc=com", + "cn=Beilul Scheduling,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kitson Nelon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Daphna Ragde,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Paulina Early,ou=Administrative,dc=bitwarden,dc=com", + "cn=Abbie Jamshidi,ou=Management,dc=bitwarden,dc=com", + "cn=Quynh Lorenc,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kelwin Popadick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fitness Pape,ou=Management,dc=bitwarden,dc=com", + "cn=Dion Chiou,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mayasandra Naor,ou=Management,dc=bitwarden,dc=com", + "cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vince Soulliere,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kasey Turney,ou=Management,dc=bitwarden,dc=com", + "cn=Zonda Amato,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Eleanore Bertini,ou=Payroll,dc=bitwarden,dc=com", + "cn=Georgetta Schreiber,ou=Peons,dc=bitwarden,dc=com", + "cn=Kalai Seatter,ou=Peons,dc=bitwarden,dc=com", + "cn=Susie Moffett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Garnet Vieregge,ou=Peons,dc=bitwarden,dc=com", + "cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden,dc=com", + "cn=Majid Liao,ou=Payroll,dc=bitwarden,dc=com", + "cn=Abdallah Lobello,ou=Administrative,dc=bitwarden,dc=com", + "cn=Felecia Bnrecad,ou=Peons,dc=bitwarden,dc=com", + "cn=Waja Eteminan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lorrel Piercy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pris Bobar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Albertine Karass,ou=Payroll,dc=bitwarden,dc=com", + "cn=Saskia Koskie,ou=Peons,dc=bitwarden,dc=com", + "cn=Adda Paddon,ou=Management,dc=bitwarden,dc=com", + "cn=Normand Tay,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ardene Hofstede,ou=Product Development,dc=bitwarden,dc=com", + "cn=Panos Wessell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Carolan Kamerson,ou=Management,dc=bitwarden,dc=com", + "cn=Stew Doan,ou=Peons,dc=bitwarden,dc=com", + "cn=Tap Moreau,ou=Product Development,dc=bitwarden,dc=com", + "cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Peg Alcott,ou=Product Development,dc=bitwarden,dc=com", + "cn=Henrika Mihm,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Count Watts,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lesly Engman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Txp Calmejane,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Aurore Hubers,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sharad Shearin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jennica Vonck,ou=Management,dc=bitwarden,dc=com", + "cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chesteen Wyant,ou=Management,dc=bitwarden,dc=com", + "cn=Coraline Kolton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Horacio Oberpriller,ou=Management,dc=bitwarden,dc=com", + "cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lsi Assistance,ou=Janitorial,dc=bitwarden,dc=com", + "cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gusta Dadkhah,ou=Management,dc=bitwarden,dc=com", + "cn=Daphene Cho,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Minerva Arvin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lynna Gumb,ou=Management,dc=bitwarden,dc=com", + "cn=Arleen Owen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chelsae Geer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Abraham McDougald,ou=Management,dc=bitwarden,dc=com", + "cn=Jessa Piasecki,ou=Management,dc=bitwarden,dc=com", + "cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hertha Wayler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Haste Isherwood,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tonye Frumerie,ou=Management,dc=bitwarden,dc=com", + "cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lilly Serapin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Phebe Gordon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cary Gronwall,ou=Peons,dc=bitwarden,dc=com", + "cn=Mer Kearney,ou=Management,dc=bitwarden,dc=com", + "cn=Viqar Campeau,ou=Administrative,dc=bitwarden,dc=com", + "cn=Annet Chatfield,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lizzie Zaid,ou=Management,dc=bitwarden,dc=com", + "cn=Norcal Schrier,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marlyne Tardiff,ou=Management,dc=bitwarden,dc=com", + "cn=Annabella Vogel,ou=Peons,dc=bitwarden,dc=com", + "cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Farzin Depooter,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Denys Paone,ou=Management,dc=bitwarden,dc=com", + "cn=Ghassan Payne,ou=Administrative,dc=bitwarden,dc=com", + "cn=Heida Cripps,ou=Management,dc=bitwarden,dc=com", + "cn=Sayed Belaire,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sileas Brungardt,ou=Management,dc=bitwarden,dc=com", + "cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nicholas Shupe,ou=Peons,dc=bitwarden,dc=com", + "cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Margaret Binda,ou=Peons,dc=bitwarden,dc=com", + "cn=MaryAnn Windom,ou=Peons,dc=bitwarden,dc=com", + "cn=Cammie Lobello,ou=Payroll,dc=bitwarden,dc=com", + "cn=HangTong Shek,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Engin Mersinger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rebbecca Perina,ou=Management,dc=bitwarden,dc=com", + "cn=Piero Preece,ou=Peons,dc=bitwarden,dc=com", + "cn=Pradip Draffin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jacynth Etemad,ou=Administrative,dc=bitwarden,dc=com", + "cn=Brittany Pokinko,ou=Management,dc=bitwarden,dc=com", + "cn=Jeannot Rch,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Wiebren Zaia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karlyn Kell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Noriko Devenny,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Porfirio Epperson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Linnet Streight,ou=Management,dc=bitwarden,dc=com", + "cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tomi Bridges,ou=Management,dc=bitwarden,dc=com", + "cn=Gerardo Walia,ou=Management,dc=bitwarden,dc=com", + "cn=Hailee Corace,ou=Administrative,dc=bitwarden,dc=com", + "cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Munir Copes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Susan Fowler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Caye Setiawan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Daffy Hering,ou=Administrative,dc=bitwarden,dc=com", + "cn=YoungJune Radford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Brana Susanto,ou=Administrative,dc=bitwarden,dc=com", + "cn=Neile Niles,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joydeep Loos,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sohail Pilon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Melisse Odum,ou=Management,dc=bitwarden,dc=com", + "cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden,dc=com", + "cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden,dc=com", + "cn=Shay Fouchard,ou=Management,dc=bitwarden,dc=com", + "cn=Lesly Checkland,ou=Peons,dc=bitwarden,dc=com", + "cn=Roelof Balascak,ou=Product Development,dc=bitwarden,dc=com", + "cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Miguel Skof,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden,dc=com", + "cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zdenek Gahan,ou=Peons,dc=bitwarden,dc=com", + "cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden,dc=com", + "cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden,dc=com", + "cn=Merrile Lian,ou=Payroll,dc=bitwarden,dc=com", + "cn=Engracia Messick,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Caron Sammon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Charlotta McLennan,ou=Management,dc=bitwarden,dc=com", + "cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dexter Follett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Una Ausley,ou=Management,dc=bitwarden,dc=com", + "cn=Adria Calow,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alora Bamfo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gunnar Molani,ou=Peons,dc=bitwarden,dc=com", + "cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lenee Marasco,ou=Payroll,dc=bitwarden,dc=com", + "cn=Byron Shelegey,ou=Management,dc=bitwarden,dc=com", + "cn=Charline Jago,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anette Holloway,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Florida Polashock,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Snair Mcshane,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jackson Schraner,ou=Product Testing,dc=bitwarden,dc=com", + "cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden,dc=com", + "cn=Cherianne Tidd,ou=Payroll,dc=bitwarden,dc=com", + "cn=Melisent Sampat,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tiffy Udall,ou=Payroll,dc=bitwarden,dc=com", + "cn=Adeline Cruz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tuan Fenati,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jaclyn Hook,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lucky DeBaets,ou=Payroll,dc=bitwarden,dc=com", + "cn=Toma Belcher,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ayda Ricketson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Edie Fuller,ou=Product Development,dc=bitwarden,dc=com", + "cn=Adrienne Teacher,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karilynn Sokolowski,ou=Management,dc=bitwarden,dc=com", + "cn=Edna Etemad,ou=Management,dc=bitwarden,dc=com", + "cn=Heike Hoxie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Noelyn Snair,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Annis Yung,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Olenka Gulis,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jeanna Brousseau,ou=Management,dc=bitwarden,dc=com", + "cn=Nikolaos Farley,ou=Management,dc=bitwarden,dc=com", + "cn=Sydney Olivares,ou=Management,dc=bitwarden,dc=com", + "cn=Lary MacMillanBrown,ou=Management,dc=bitwarden,dc=com", + "cn=Makam Junaid,ou=Payroll,dc=bitwarden,dc=com", + "cn=Janson Breon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Persis Bourret,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nonah Naylor,ou=Peons,dc=bitwarden,dc=com", + "cn=Delmar Goold,ou=Management,dc=bitwarden,dc=com", + "cn=Noslab Despres,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leonida Maloney,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Heida Witzmann,ou=Product Development,dc=bitwarden,dc=com", + "cn=Azhar Klug,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lynnette Mirande,ou=Product Development,dc=bitwarden,dc=com", + "cn=Esmond Ronald,ou=Management,dc=bitwarden,dc=com", + "cn=Ruthie Weyand,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ileane DeWitte,ou=Peons,dc=bitwarden,dc=com", + "cn=Chocs Lanava,ou=Product Development,dc=bitwarden,dc=com", + "cn=Abu Hubbard,ou=Peons,dc=bitwarden,dc=com", + "cn=Felita Kaps,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Christin Shea,ou=Administrative,dc=bitwarden,dc=com", + "cn=Haroon Trese,ou=Payroll,dc=bitwarden,dc=com", + "cn=Norbert Ruest,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Woody Bourlet,ou=Administrative,dc=bitwarden,dc=com", + "cn=Saied DeCristofaro,ou=Peons,dc=bitwarden,dc=com", + "cn=Dael Lariviere,ou=Administrative,dc=bitwarden,dc=com", + "cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Miro Tabor,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Der Fernando,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vivianne McCrain,ou=Peons,dc=bitwarden,dc=com", + "cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden,dc=com", + "cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Madelina Todloski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vijai Combaz,ou=Management,dc=bitwarden,dc=com", + "cn=Sohayla Neate,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Weldon Robustness,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Freddy Jachym,ou=Management,dc=bitwarden,dc=com", + "cn=Eliezer Assistance,ou=Management,dc=bitwarden,dc=com", + "cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Orelia Pisani,ou=Peons,dc=bitwarden,dc=com", + "cn=Shelton Spencer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jonthan Khoury,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tricord Bresee,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Julietta Tillman,ou=Peons,dc=bitwarden,dc=com", + "cn=Almeria Falke,ou=Peons,dc=bitwarden,dc=com", + "cn=Aaron Deakin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Soyeh Noy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Genia Mooken,ou=Product Development,dc=bitwarden,dc=com", + "cn=Norton Chronowic,ou=Management,dc=bitwarden,dc=com", + "cn=Thom Hink,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vanny Swepston,ou=Peons,dc=bitwarden,dc=com", + "cn=Mabel Bycenko,ou=Peons,dc=bitwarden,dc=com", + "cn=Kiyoon Chau,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nel Addetia,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Emeline Willmore,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maged Bernardo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Murry Okafo,ou=Management,dc=bitwarden,dc=com", + "cn=Vita Coursol,ou=Peons,dc=bitwarden,dc=com", + "cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jelene Rivest,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Magda Sims,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Fanni Kelly,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Phyl Komatsu,ou=Product Development,dc=bitwarden,dc=com", + "cn=Blondie Bessette,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zonda Marette,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tavis Bovee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Aurore Danker,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yawar Benjes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jayme Casey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Daisi Encomenderos,ou=Management,dc=bitwarden,dc=com", + "cn=Biplab Caton,ou=Peons,dc=bitwarden,dc=com", + "cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Izak Roussin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Montreal Mersch,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sybille Shwed,ou=Management,dc=bitwarden,dc=com", + "cn=Gordie Oey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nerte Diederichs,ou=Administrative,dc=bitwarden,dc=com", + "cn=Annemarie Harrell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ara Darcel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eng Mangum,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kaye Dulude,ou=Management,dc=bitwarden,dc=com", + "cn=Dinny Farrell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pru McIntomny,ou=Management,dc=bitwarden,dc=com", + "cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rosemary Liao,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ketty Torrens,ou=Peons,dc=bitwarden,dc=com", + "cn=Dinny Meggitt,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ashien Moran,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nerissa Brkich,ou=Management,dc=bitwarden,dc=com", + "cn=Ioan Usrouter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bekki Blimkie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bryn Spieker,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vijya Torian,ou=Payroll,dc=bitwarden,dc=com", + "cn=Teiichi Marconi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Allegra Chaaban,ou=Peons,dc=bitwarden,dc=com", + "cn=Mair Wefers,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kerri Turbes,ou=Peons,dc=bitwarden,dc=com", + "cn=Debora Dion,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Erdem Cowen,ou=Peons,dc=bitwarden,dc=com", + "cn=Thierry Crockett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Karrah Kassam,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Odile Dbs,ou=Management,dc=bitwarden,dc=com", + "cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lacy Haughwout,ou=Management,dc=bitwarden,dc=com", + "cn=Jimson Volfe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dede Billingham,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden,dc=com", + "cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kissee Gowan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eulalie Webber,ou=Product Development,dc=bitwarden,dc=com", + "cn=Court Trefry,ou=Management,dc=bitwarden,dc=com", + "cn=Claretta Kilcoin,ou=Peons,dc=bitwarden,dc=com", + "cn=Kassia Daaboul,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden,dc=com", + "cn=Weber Gu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rank Courtney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aaren Neustifter,ou=Management,dc=bitwarden,dc=com", + "cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Clifford Forgues,ou=Peons,dc=bitwarden,dc=com", + "cn=Donnie Laverty,ou=Janitorial,dc=bitwarden,dc=com", + "cn=How Sebastien,ou=Peons,dc=bitwarden,dc=com", + "cn=Hung Tabl,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maye Atoui,ou=Payroll,dc=bitwarden,dc=com", + "cn=Deva Currie,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vivienne Bourk,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gerber Kiernan,ou=Peons,dc=bitwarden,dc=com", + "cn=Me Muhammed,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ragui Lorenc,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorenza McCormick,ou=Peons,dc=bitwarden,dc=com", + "cn=Beatrisa Malaher,ou=Peons,dc=bitwarden,dc=com", + "cn=Tiffi Beverly,ou=Payroll,dc=bitwarden,dc=com", + "cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Analise Shiley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fan Neander,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Diamond Azer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dorothee Azmak,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sydel MacGillivray,ou=Peons,dc=bitwarden,dc=com", + "cn=Martelle Filpus,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Merunix Fadlallah,ou=Management,dc=bitwarden,dc=com", + "cn=Faz Seegobin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jeffery Panek,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chip Billard,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tran Selbrede,ou=Peons,dc=bitwarden,dc=com", + "cn=Wade Boersma,ou=Peons,dc=bitwarden,dc=com", + "cn=Quintana Huneault,ou=Administrative,dc=bitwarden,dc=com", + "cn=Coors Beerkens,ou=Administrative,dc=bitwarden,dc=com", + "cn=Prudence Schacham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Evita Cropper,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joletta Senten,ou=Peons,dc=bitwarden,dc=com", + "cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fotini Suyama,ou=Management,dc=bitwarden,dc=com", + "cn=Hazel Gesino,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ivie Murison,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mahesh Flach,ou=Payroll,dc=bitwarden,dc=com", + "cn=Annalee Prikkel,ou=Management,dc=bitwarden,dc=com", + "cn=Catja Scholman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Anda Fastpack,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Salis Nehring,ou=Management,dc=bitwarden,dc=com", + "cn=Francis LeBlanc,ou=Payroll,dc=bitwarden,dc=com", + "cn=Humberto Stensrud,ou=Management,dc=bitwarden,dc=com", + "cn=Manfred Wesolowski,ou=Peons,dc=bitwarden,dc=com", + "cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Estele Fiest,ou=Peons,dc=bitwarden,dc=com", + "cn=Maciej Fucito,ou=Administrative,dc=bitwarden,dc=com", + "cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Frinel Veals,ou=Payroll,dc=bitwarden,dc=com", + "cn=Catha Ghossein,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Basia Trinidad,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vita Leveille,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lidio Toomer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kessel Keveny,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alf Noorani,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kirstyn Hutt,ou=Management,dc=bitwarden,dc=com", + "cn=Blisse Lein,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Edithe Dougall,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sage Randell,ou=Peons,dc=bitwarden,dc=com", + "cn=Carina Hume,ou=Peons,dc=bitwarden,dc=com", + "cn=Mickie Prystie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nalin Levere,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Allen Iannotti,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maressa Poulin,ou=Peons,dc=bitwarden,dc=com", + "cn=Danni Hummerston,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rosabel Buley,ou=Management,dc=bitwarden,dc=com", + "cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sayed Virant,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sundaram Lojewski,ou=Management,dc=bitwarden,dc=com", + "cn=Laina Ertl,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jeniece Bcs,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tammy Heikkila,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pearle Bruketa,ou=Management,dc=bitwarden,dc=com", + "cn=Cherie Brett,ou=Peons,dc=bitwarden,dc=com", + "cn=Hector Gingrich,ou=Product Development,dc=bitwarden,dc=com", + "cn=Biplab VanHaste,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Roby Larin,ou=Management,dc=bitwarden,dc=com", + "cn=Shirley Holvey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shari Skaff,ou=Peons,dc=bitwarden,dc=com", + "cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden,dc=com", + "cn=Valida Fleischer,ou=Administrative,dc=bitwarden,dc=com", + "cn=March Hess,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kamran Shabatura,ou=Peons,dc=bitwarden,dc=com", + "cn=Arturo Ensign,ou=Administrative,dc=bitwarden,dc=com", + "cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lauryn Wever,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anda Wilhoit,ou=Administrative,dc=bitwarden,dc=com", + "cn=Samia Cochran,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Michie ToDo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Arvind Gundecha,ou=Peons,dc=bitwarden,dc=com", + "cn=Costas Watson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ebba Gutcher,ou=Peons,dc=bitwarden,dc=com", + "cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Peggie Madl,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Norry Benjamin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Loreen Chapen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Loay Clairmont,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jagdev Eaton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vina Smothers,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Minerva Cuper,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lynette Cascarini,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lsi Loughran,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cassandry Emmert,ou=Management,dc=bitwarden,dc=com", + "cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Minnesota Herzig,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lauren Syrett,ou=Peons,dc=bitwarden,dc=com", + "cn=Dyana Pennell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Camella IRCMARKET,ou=Peons,dc=bitwarden,dc=com", + "cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Doro Cottengim,ou=Peons,dc=bitwarden,dc=com", + "cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden,dc=com", + "cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nesta Bydeley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yogesh Meckley,ou=Peons,dc=bitwarden,dc=com", + "cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ailene Challice,ou=Payroll,dc=bitwarden,dc=com", + "cn=Viola Hately,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shunro Singer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Chitra McAleer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jay Biage,ou=Payroll,dc=bitwarden,dc=com", + "cn=Faydra Kandra,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shandee Safah,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gen Marano,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bettina Spinelli,ou=Management,dc=bitwarden,dc=com", + "cn=Mureil Vish,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alane Carlisle,ou=Management,dc=bitwarden,dc=com", + "cn=Sayre Paulett,ou=Management,dc=bitwarden,dc=com", + "cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ambur Fernandez,ou=Peons,dc=bitwarden,dc=com", + "cn=Carlye Puelma,ou=Management,dc=bitwarden,dc=com", + "cn=Eleonore Edwige,ou=Administrative,dc=bitwarden,dc=com", + "cn=Yoshi Neustifter,ou=Management,dc=bitwarden,dc=com", + "cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bernd Ribakovs,ou=Peons,dc=bitwarden,dc=com", + "cn=Ralph Taylor,ou=Management,dc=bitwarden,dc=com", + "cn=Baldev Annab,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Me Cuany,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Neville Doble,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alidia Banens,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hans Fahey,ou=Peons,dc=bitwarden,dc=com", + "cn=Luce Piper,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maible Adamo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Leny Husarewych,ou=Management,dc=bitwarden,dc=com", + "cn=Gerald Bijjani,ou=Peons,dc=bitwarden,dc=com", + "cn=Maint Olivares,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Arturo Groves,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ho Rolnick,ou=Administrative,dc=bitwarden,dc=com", + "cn=Erning Lingafelter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alanah Wolff,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Corrianne Hughson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wallis Grubbs,ou=Management,dc=bitwarden,dc=com", + "cn=Eran Sziladi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Joji Cassar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sunil Brisebois,ou=Payroll,dc=bitwarden,dc=com", + "cn=Otha Dee,ou=Peons,dc=bitwarden,dc=com", + "cn=Dyane Hungle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marlane Mitchell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Belva Knighten,ou=Administrative,dc=bitwarden,dc=com", + "cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden,dc=com", + "cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shahriar Upchurch,ou=Management,dc=bitwarden,dc=com", + "cn=Blaire Hr,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Idalia Batura,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bachittar Reneau,ou=Management,dc=bitwarden,dc=com", + "cn=Inger Oshiro,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sharline Chester,ou=Payroll,dc=bitwarden,dc=com", + "cn=Glynn Surreau,ou=Peons,dc=bitwarden,dc=com", + "cn=Hatti Griffiths,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gudrun Robson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sati Hallett,ou=Management,dc=bitwarden,dc=com", + "cn=Lotty Flansburg,ou=Payroll,dc=bitwarden,dc=com", + "cn=Larina Scanlon,ou=Peons,dc=bitwarden,dc=com", + "cn=Barney Surridge,ou=Peons,dc=bitwarden,dc=com", + "cn=Yolanda Wanda,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dasie Tougas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Julee Milton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Selle Oslund,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leelah Docherty,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Clement Srivastava,ou=Management,dc=bitwarden,dc=com", + "cn=Marsie Schreiber,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cathryn Bokij,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden,dc=com", + "cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden,dc=com", + "cn=Melody Fontana,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Saul Fussell,ou=Management,dc=bitwarden,dc=com", + "cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Thomas Gourley,ou=Peons,dc=bitwarden,dc=com", + "cn=Norstar Trefts,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cathi Keiser,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Apryle Haurie,ou=Peons,dc=bitwarden,dc=com", + "cn=Rozanne Trouborst,ou=Peons,dc=bitwarden,dc=com", + "cn=Catlaina Intemann,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anabel Intune,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ninnetta Matney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Regina Lemay,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Janos Davis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dniren Serack,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jaffer Guty,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kalpit Devine,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zitella Sammon,ou=Management,dc=bitwarden,dc=com", + "cn=Renate Worrall,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Medria Aribindi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eba Bockaj,ou=Payroll,dc=bitwarden,dc=com", + "cn=Calley Thaxton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rheal Dadgar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Daphene Bayno,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dilpreet Javor,ou=Management,dc=bitwarden,dc=com", + "cn=Kambiz Nyce,ou=Peons,dc=bitwarden,dc=com", + "cn=Karan Molochko,ou=Administrative,dc=bitwarden,dc=com", + "cn=Olav Straub,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Berget Hnidek,ou=Peons,dc=bitwarden,dc=com", + "cn=Shahriar Benschop,ou=Peons,dc=bitwarden,dc=com", + "cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wilkin Boinnard,ou=Management,dc=bitwarden,dc=com", + "cn=Vital Simcoe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lydie Hooker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Greta Minyard,ou=Management,dc=bitwarden,dc=com", + "cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Adelice Fishman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Devinne Kellum,ou=Administrative,dc=bitwarden,dc=com", + "cn=Breena Telco,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tianbao Gerlich,ou=Management,dc=bitwarden,dc=com", + "cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden,dc=com", + "cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lana Keates,ou=Administrative,dc=bitwarden,dc=com", + "cn=Veena Richards,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Charin Clocklab,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kollen Fenwick,ou=Management,dc=bitwarden,dc=com", + "cn=Lucille Orol,ou=Management,dc=bitwarden,dc=com", + "cn=Maier Bobar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dori Garwood,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gussi Horak,ou=Management,dc=bitwarden,dc=com", + "cn=Marillin Boroski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Noelyn Hinkle,ou=Peons,dc=bitwarden,dc=com", + "cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Erlene Schirmer,ou=Management,dc=bitwarden,dc=com", + "cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Binh Hoagland,ou=Peons,dc=bitwarden,dc=com", + "cn=Aviva McIsaac,ou=Administrative,dc=bitwarden,dc=com", + "cn=Noami Cinicolo,ou=Peons,dc=bitwarden,dc=com", + "cn=Yukuo Wolford,ou=Administrative,dc=bitwarden,dc=com", + "cn=Amalea Kesler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cyril Inglis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ladan Schutz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bob Erbach,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hideki Fobert,ou=Management,dc=bitwarden,dc=com", + "cn=Koral Bilton,ou=Peons,dc=bitwarden,dc=com", + "cn=Adriane Denike,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ayako McCormick,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Renell Kales,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brennan Wolter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mariya Wesselow,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roe Kathie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rici Sobel,ou=Peons,dc=bitwarden,dc=com", + "cn=Eladio Malek,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Siew Dunajski,ou=Peons,dc=bitwarden,dc=com", + "cn=Rosalie Feild,ou=Peons,dc=bitwarden,dc=com", + "cn=Karyl Scarrow,ou=Management,dc=bitwarden,dc=com", + "cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hoog Fielden,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fredericka Corbett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mabelle Bondurant,ou=Management,dc=bitwarden,dc=com", + "cn=Zafar McCarron,ou=Management,dc=bitwarden,dc=com", + "cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Malia Faletti,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nesta Mawji,ou=Management,dc=bitwarden,dc=com", + "cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liliana Vaillant,ou=Payroll,dc=bitwarden,dc=com", + "cn=Den Arora,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rosabel Parkins,ou=Product Development,dc=bitwarden,dc=com", + "cn=Edyta Moroz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=James Brunato,ou=Product Development,dc=bitwarden,dc=com", + "cn=Retha Miceli,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emmie Hage,ou=Product Development,dc=bitwarden,dc=com", + "cn=Open Kozsukan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Crystal Dommety,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lindsey Coxall,ou=Product Development,dc=bitwarden,dc=com", + "cn=Morgen Theoret,ou=Management,dc=bitwarden,dc=com", + "cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anallise Golas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Emad Sztein,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marianne Makarenko,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anda Lytle,ou=Management,dc=bitwarden,dc=com", + "cn=Anneliese Hanser,ou=Product Development,dc=bitwarden,dc=com", + "cn=Herb Gagnon,ou=Peons,dc=bitwarden,dc=com", + "cn=Isabella Conroy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brandon Menaker,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mame Sanford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bea Aloi,ou=Peons,dc=bitwarden,dc=com", + "cn=Sylvia Alink,ou=Management,dc=bitwarden,dc=com", + "cn=Mora McGovern,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tiphani Lieure,ou=Administrative,dc=bitwarden,dc=com", + "cn=Consolata Bejar,ou=Peons,dc=bitwarden,dc=com", + "cn=Winnie Jensenworth,ou=Management,dc=bitwarden,dc=com", + "cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Takashi Lamirande,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rosamund Serack,ou=Payroll,dc=bitwarden,dc=com", + "cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Natalee Keitel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Desiree Conde,ou=Peons,dc=bitwarden,dc=com", + "cn=Clyde Kamal,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shana Mulvie,ou=Management,dc=bitwarden,dc=com", + "cn=PeyKee Rios,ou=Management,dc=bitwarden,dc=com", + "cn=Costas Szabo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Su Organization,ou=Management,dc=bitwarden,dc=com", + "cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Norean Brien,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tiena Clapham,ou=Management,dc=bitwarden,dc=com", + "cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jade Jims,ou=Management,dc=bitwarden,dc=com", + "cn=Ramin McKeen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden,dc=com", + "cn=Steffie Bohn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rachael DuBois,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kore Mayhugh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eleen Moledina,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kaminsky Meany,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pammi Overton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sinh Abbott,ou=Peons,dc=bitwarden,dc=com", + "cn=LouAnn Gaines,ou=Product Development,dc=bitwarden,dc=com", + "cn=Arabella Shamblin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cammie Erbach,ou=Management,dc=bitwarden,dc=com", + "cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden,dc=com", + "cn=Dayton Baughan,ou=Peons,dc=bitwarden,dc=com", + "cn=Meggi Rozier,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Romulus Zuk,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marce Tiller,ou=Payroll,dc=bitwarden,dc=com", + "cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Patt Brennand,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Claus Depew,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vahe Kerwin,ou=Peons,dc=bitwarden,dc=com", + "cn=Pauletta Crocker,ou=Peons,dc=bitwarden,dc=com", + "cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sterling Shostak,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kartik Rogge,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fei Reich,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leyla Etten,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sattar Sergent,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kare Hochberger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lilly Kuykendall,ou=Management,dc=bitwarden,dc=com", + "cn=Rachele Fullum,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Madella Forslund,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Janio Fussell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lacy Carr,ou=Payroll,dc=bitwarden,dc=com", + "cn=Erinna Odden,ou=Peons,dc=bitwarden,dc=com", + "cn=Bertrand Devgon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ahmet Achille,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Heike Jenner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lynde Staats,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Estele Kolappa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Oriana Hughes,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lucila Rand,ou=Payroll,dc=bitwarden,dc=com", + "cn=Emile Bellis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=LouisPhilippe Hann,ou=Management,dc=bitwarden,dc=com", + "cn=Franka Frey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jillian Unger,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mathilda Diederichs,ou=Management,dc=bitwarden,dc=com", + "cn=Susanna Vlahos,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aila Henninger,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bettye Guth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Livvie Benwell,ou=Peons,dc=bitwarden,dc=com", + "cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melek Nagendra,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lesli Tobias,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Greta Schecter,ou=Management,dc=bitwarden,dc=com", + "cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nevil Padgett,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bianka Cooke,ou=Management,dc=bitwarden,dc=com", + "cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marjan Lyman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aurora Bayno,ou=Peons,dc=bitwarden,dc=com", + "cn=Housseini Dominguez,ou=Administrative,dc=bitwarden,dc=com", + "cn=Arnie Ulrich,ou=Administrative,dc=bitwarden,dc=com", + "cn=Amrik Carlock,ou=Administrative,dc=bitwarden,dc=com", + "cn=Saundra Crapco,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shashi Ketcheson,ou=Management,dc=bitwarden,dc=com", + "cn=Maidlab McMillion,ou=Peons,dc=bitwarden,dc=com", + "cn=Cloe Marquart,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roselle Donald,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Chander Roussy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sunny Rollin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sam Meldrum,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kitson Sture,ou=Management,dc=bitwarden,dc=com", + "cn=Janot Breglec,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gaye Rothwell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Moe Schumann,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sarene Keifer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Janette Npi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Danette Galloway,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorianne Mullett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Isabeau Wippel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cassi McRae,ou=Human Resources,dc=bitwarden,dc=com", + "cn=WaiLeung Marples,ou=Product Development,dc=bitwarden,dc=com", + "cn=Joceline Seifried,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bill Coldwell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marlo Belich,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Prams StOnge,ou=Peons,dc=bitwarden,dc=com", + "cn=Eudora Dunstan,ou=Management,dc=bitwarden,dc=com", + "cn=Thor Ritz,ou=Management,dc=bitwarden,dc=com", + "cn=Manhatten Isert,ou=Product Development,dc=bitwarden,dc=com", + "cn=Farra Garee,ou=Payroll,dc=bitwarden,dc=com", + "cn=Arun Xpm,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alida Ausley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden,dc=com", + "cn=Trina Okon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kania Harter,ou=Payroll,dc=bitwarden,dc=com", + "cn=Samantha Gantt,ou=Product Development,dc=bitwarden,dc=com", + "cn=Akin Houde,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vince Herscovici,ou=Peons,dc=bitwarden,dc=com", + "cn=Issy Bachecongi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden,dc=com", + "cn=Seelan Licandro,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hqs Dipper,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sidone Ricks,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Meghan Wai,ou=Product Development,dc=bitwarden,dc=com", + "cn=Koen MacInnes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden,dc=com", + "cn=Doralin Worthington,ou=Management,dc=bitwarden,dc=com", + "cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Loris Godfrey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Monroe Halpin,ou=Management,dc=bitwarden,dc=com", + "cn=Gerianna Arnon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hazem Pien,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cristofaro Dysart,ou=Peons,dc=bitwarden,dc=com", + "cn=Margot Muzio,ou=Peons,dc=bitwarden,dc=com", + "cn=Makary Wagers,ou=Peons,dc=bitwarden,dc=com", + "cn=Yudy Sandford,ou=Payroll,dc=bitwarden,dc=com", + "cn=Baruk Junaid,ou=Peons,dc=bitwarden,dc=com", + "cn=Morganne Grimmell,ou=Management,dc=bitwarden,dc=com", + "cn=Evaleen Beine,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yumi Mudry,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Salomi Heisler,ou=Management,dc=bitwarden,dc=com", + "cn=Trey ETAS,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Co Knighten,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gillie Rheaume,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jamal Scotti,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sharri Lotz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Agnella Loi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Leno Henley,ou=Management,dc=bitwarden,dc=com", + "cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elex Langer,ou=Peons,dc=bitwarden,dc=com", + "cn=Dwain Bielby,ou=Product Development,dc=bitwarden,dc=com", + "cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roy Terranova,ou=Peons,dc=bitwarden,dc=com", + "cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vaughn Corlett,ou=Peons,dc=bitwarden,dc=com", + "cn=Gladys Helmy,ou=Management,dc=bitwarden,dc=com", + "cn=Bihari Mirek,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lissa Hernandez,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden,dc=com", + "cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Torre Monahan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maia Arellano,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gina Hattar,ou=Management,dc=bitwarden,dc=com", + "cn=Dena Trottier,ou=Peons,dc=bitwarden,dc=com", + "cn=Vmchange Cavan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lorie Brickey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ardie Dix,ou=Peons,dc=bitwarden,dc=com", + "cn=Maybelle Augustus,ou=Product Development,dc=bitwarden,dc=com", + "cn=Engracia Materkowski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jacqueline Durant,ou=Payroll,dc=bitwarden,dc=com", + "cn=Charly Klapper,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elpida Doerr,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bethena Parniani,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Janka Macklem,ou=Management,dc=bitwarden,dc=com", + "cn=Myrtie Mc,ou=Administrative,dc=bitwarden,dc=com", + "cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ludovika McKnight,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anil Cotuna,ou=Management,dc=bitwarden,dc=com", + "cn=Merrile Wilson,ou=Management,dc=bitwarden,dc=com", + "cn=Zahara Ferree,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maryrose Sagan,ou=Peons,dc=bitwarden,dc=com", + "cn=Legra Binder,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ernaline Tierney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Seven Nicol,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jeannine Forsythe,ou=Peons,dc=bitwarden,dc=com", + "cn=Tilmon Taheri,ou=Administrative,dc=bitwarden,dc=com", + "cn=Svr Krishnan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Niki Khurana,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Duong Laux,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vevay Isert,ou=Management,dc=bitwarden,dc=com", + "cn=Lonnie Visser,ou=Management,dc=bitwarden,dc=com", + "cn=Chungsik Choquette,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kalli Meilleur,ou=Administrative,dc=bitwarden,dc=com", + "cn=Merline Riggs,ou=Product Development,dc=bitwarden,dc=com", + "cn=Milka Parkes,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bakel Fisette,ou=Management,dc=bitwarden,dc=com", + "cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kiley Hester,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eydie Edgar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sherwyn Monn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Danna Hagenbuch,ou=Management,dc=bitwarden,dc=com", + "cn=Flossi Davidson,ou=Management,dc=bitwarden,dc=com", + "cn=Rosy Bergmann,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden,dc=com", + "cn=Larine Broca,ou=Peons,dc=bitwarden,dc=com", + "cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Therine McCurdy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Clarice Travers,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dacey Bedard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lissa Barsky,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lino Endrys,ou=Peons,dc=bitwarden,dc=com", + "cn=Fina WGA,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Munir Colton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marje Dallaire,ou=Payroll,dc=bitwarden,dc=com", + "cn=Farrah Meehan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tilda Alsop,ou=Peons,dc=bitwarden,dc=com", + "cn=Leni Janovich,ou=Peons,dc=bitwarden,dc=com", + "cn=Katrina Morreale,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hinda Briante,ou=Payroll,dc=bitwarden,dc=com", + "cn=Helli Frie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Renell Ulrich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden,dc=com", + "cn=Moel Taralp,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Keeley Rok,ou=Peons,dc=bitwarden,dc=com", + "cn=Britta Melucci,ou=Payroll,dc=bitwarden,dc=com", + "cn=StClair Farren,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vino Papantonis,ou=Peons,dc=bitwarden,dc=com", + "cn=Sandi ENG,ou=Administrative,dc=bitwarden,dc=com", + "cn=Michaela Blimkie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mort Kestelman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Reinhold Briggs,ou=Peons,dc=bitwarden,dc=com", + "cn=Norbert Rider,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eveline Smelters,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elinor Stambouli,ou=Management,dc=bitwarden,dc=com", + "cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Donnette Kenol,ou=Administrative,dc=bitwarden,dc=com", + "cn=Margette Keogh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Makam Kumagai,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tallou Vairavan,ou=Management,dc=bitwarden,dc=com", + "cn=Elana Derrett,ou=Management,dc=bitwarden,dc=com", + "cn=Hanny Farranto,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lucina Hobesh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jashvant Mellor,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dupuy McNeese,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ying Forbs,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Paper Cowell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vispy Snair,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mona DeCecco,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karolien Beznowski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Frinel Godcharles,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dung Goldstein,ou=Product Development,dc=bitwarden,dc=com", + "cn=Scarlet Coody,ou=Product Development,dc=bitwarden,dc=com", + "cn=Julina Stahly,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kippy Roman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Helsa Stahly,ou=Management,dc=bitwarden,dc=com", + "cn=Hiroko Whetston,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aviva Harwerth,ou=Peons,dc=bitwarden,dc=com", + "cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alida Ferriera,ou=Peons,dc=bitwarden,dc=com", + "cn=Vyky ONeal,ou=Payroll,dc=bitwarden,dc=com", + "cn=Daya Loader,ou=Peons,dc=bitwarden,dc=com", + "cn=Katsunori Bouret,ou=Management,dc=bitwarden,dc=com", + "cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rex Combellack,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tallia Videa,ou=Management,dc=bitwarden,dc=com", + "cn=Remy Lalonde,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tobi Houde,ou=Management,dc=bitwarden,dc=com", + "cn=Tommi Luna,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden,dc=com", + "cn=Alana Gelo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden,dc=com", + "cn=Seven Salazar,ou=Management,dc=bitwarden,dc=com", + "cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Conway Jenness,ou=Administrative,dc=bitwarden,dc=com", + "cn=VanKing Padgett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tansy Aronovich,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fidelity Shelley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tres Parr,ou=Management,dc=bitwarden,dc=com", + "cn=Myrtice Graver,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Junette Weyand,ou=Product Development,dc=bitwarden,dc=com", + "cn=Daune Gosset,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden,dc=com", + "cn=Rolando McNally,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kirstie Trochu,ou=Product Development,dc=bitwarden,dc=com", + "cn=MaryLou Brock,ou=Peons,dc=bitwarden,dc=com", + "cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Edy Singbeil,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carsten Macklin,ou=Management,dc=bitwarden,dc=com", + "cn=Weiping Arnone,ou=Peons,dc=bitwarden,dc=com", + "cn=Joceline Muir,ou=Administrative,dc=bitwarden,dc=com", + "cn=Opal Isaac,ou=Management,dc=bitwarden,dc=com", + "cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dedra Bastien,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kiri Gillon,ou=Management,dc=bitwarden,dc=com", + "cn=Geoff Bergstrom,ou=Peons,dc=bitwarden,dc=com", + "cn=Ngai Dorion,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dayna Bragg,ou=Management,dc=bitwarden,dc=com", + "cn=Madonna Parihar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ari Fergusson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ramonda Tromm,ou=Product Development,dc=bitwarden,dc=com", + "cn=Foster Cre,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Willette Juhan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Melamie Darcel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Arlena Joe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mufi Higgins,ou=Management,dc=bitwarden,dc=com", + "cn=Viera Paetsch,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roy Wai,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cheslie Lamont,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ash Moomey,ou=Payroll,dc=bitwarden,dc=com", + "cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Humphrey Culver,ou=Product Development,dc=bitwarden,dc=com", + "cn=Consolata Daniells,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cark Lowman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carolien Tabl,ou=Peons,dc=bitwarden,dc=com", + "cn=Jere Nadon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Weber Chouinard,ou=Management,dc=bitwarden,dc=com", + "cn=Othilia Redfoot,ou=Product Development,dc=bitwarden,dc=com", + "cn=Drudy Joffe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Moris Abdullah,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Misbah Mach,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maribel Searles,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lilah Haverkamp,ou=Management,dc=bitwarden,dc=com", + "cn=Fanny Baril,ou=Payroll,dc=bitwarden,dc=com", + "cn=Milou Dada,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Earnest Walters,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rochelle Buford,ou=Management,dc=bitwarden,dc=com", + "cn=Rajani Enns,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ofella Nessman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Donella Lethebinh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tzung Camillucci,ou=Management,dc=bitwarden,dc=com", + "cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden,dc=com", + "cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Suzanna Furst,ou=Payroll,dc=bitwarden,dc=com", + "cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Berri Pracht,ou=Payroll,dc=bitwarden,dc=com", + "cn=Esko Feist,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dorin McNerney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kataryna Vaters,ou=Peons,dc=bitwarden,dc=com", + "cn=Nikki Captives,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mureil Fowlkes,ou=Peons,dc=bitwarden,dc=com", + "cn=Charla Silieff,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gladys Jarvah,ou=Management,dc=bitwarden,dc=com", + "cn=Juan Hummel,ou=Peons,dc=bitwarden,dc=com", + "cn=Cathryn Scheible,ou=Peons,dc=bitwarden,dc=com", + "cn=Harri Senese,ou=Product Development,dc=bitwarden,dc=com", + "cn=Moreen Lemay,ou=Management,dc=bitwarden,dc=com", + "cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jabir Gunn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dotty Oman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Quintina Mallett,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Adie Itah,ou=Payroll,dc=bitwarden,dc=com", + "cn=Philippine Corcoran,ou=Peons,dc=bitwarden,dc=com", + "cn=Ollie Panter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Clint Jesty,ou=Product Development,dc=bitwarden,dc=com", + "cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tomasina Gofron,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nong Bnrecad,ou=Peons,dc=bitwarden,dc=com", + "cn=Margy Lucas,ou=Management,dc=bitwarden,dc=com", + "cn=Melvin Cohen,ou=Peons,dc=bitwarden,dc=com", + "cn=Milissent Rolls,ou=Peons,dc=bitwarden,dc=com", + "cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Theodore Egdorf,ou=Peons,dc=bitwarden,dc=com", + "cn=Vernice Drynan,ou=Management,dc=bitwarden,dc=com", + "cn=Hensley Parrish,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden,dc=com", + "cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elbert Culley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fady Benavides,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Djenana LeGuen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tele Travers,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cherilyn Stults,ou=Administrative,dc=bitwarden,dc=com", + "cn=Harri Kuntova,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dulcine Litherland,ou=Peons,dc=bitwarden,dc=com", + "cn=Kelwin Diee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden,dc=com", + "cn=Veen Tarver,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kimberlee Malee,ou=Payroll,dc=bitwarden,dc=com", + "cn=Chiho Larmour,ou=Management,dc=bitwarden,dc=com", + "cn=Merrily Provencal,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Divina Brevard,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Celine Lotan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Noriko Corner,ou=Management,dc=bitwarden,dc=com", + "cn=Janean Hoshi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shorwan Womack,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hattie Beilin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Loralie Cumming,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sanae Zalameda,ou=Peons,dc=bitwarden,dc=com", + "cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Krystalle Logue,ou=Peons,dc=bitwarden,dc=com", + "cn=Fara Dillow,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lonna Willcock,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Thrift McClelland,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tres Bashton,ou=Peons,dc=bitwarden,dc=com", + "cn=Lara Terneus,ou=Product Development,dc=bitwarden,dc=com", + "cn=Taryna Ganguly,ou=Administrative,dc=bitwarden,dc=com", + "cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Serge Systems,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marisca Parise,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brook Ta,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Evanne Servance,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hamzeh Lyall,ou=Peons,dc=bitwarden,dc=com", + "cn=Collette Yao,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mandy Heiliger,ou=Peons,dc=bitwarden,dc=com", + "cn=Liduine Farah,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Arlee Hawley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Theresina Reinink,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hanny Hassey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gil Zhou,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jurgen Strauss,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anestassia Phair,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Koko Fetzko,ou=Management,dc=bitwarden,dc=com", + "cn=Irc McRae,ou=Management,dc=bitwarden,dc=com", + "cn=Aime Reno,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Olympe Aston,ou=Administrative,dc=bitwarden,dc=com", + "cn=Janenna Durnford,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Selcuk Sochovka,ou=Peons,dc=bitwarden,dc=com", + "cn=Lauretta Abell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Akin Algood,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lenette Rance,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden,dc=com", + "cn=Louisa Thorne,ou=Janitorial,dc=bitwarden,dc=com", + "cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden,dc=com", + "cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ichiro Schill,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Delila Swinson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sriv Paul,ou=Peons,dc=bitwarden,dc=com", + "cn=Trish Rombeek,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tien Aghi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Barlas Discover,ou=Peons,dc=bitwarden,dc=com", + "cn=Sarita Cescon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Errol MAINT,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vonny Sheu,ou=Management,dc=bitwarden,dc=com", + "cn=Guilford Kung,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marguerite Markland,ou=Peons,dc=bitwarden,dc=com", + "cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Viviane Lenox,ou=Payroll,dc=bitwarden,dc=com", + "cn=Walliw Borrelli,ou=Management,dc=bitwarden,dc=com", + "cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden,dc=com", + "cn=Amalea Laskin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Florida Gebrael,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kieron Walkins,ou=Product Development,dc=bitwarden,dc=com", + "cn=Andree Junkin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Louise Joudrey,ou=Peons,dc=bitwarden,dc=com", + "cn=Gillie Achcar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Divine Ferriss,ou=Administrative,dc=bitwarden,dc=com", + "cn=Noella Charlebois,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brenn Screener,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Olivie Bruneau,ou=Management,dc=bitwarden,dc=com", + "cn=Annemarie VanMeter,ou=Peons,dc=bitwarden,dc=com", + "cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rudy Piper,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Berny Burger,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shirene Moyers,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hideki Willis,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Manas Leveille,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Collette Quane,ou=Product Development,dc=bitwarden,dc=com", + "cn=Renu Schallenberg,ou=Administrative,dc=bitwarden,dc=com", + "cn=Craig Fleischer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marla Visentin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Baris Ralph,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gusta Nugent,ou=Management,dc=bitwarden,dc=com", + "cn=Boer Jago,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kieran Wattier,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mala Shillingford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Charyl Whitty,ou=Management,dc=bitwarden,dc=com", + "cn=Jawad Waller,ou=Management,dc=bitwarden,dc=com", + "cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Glynda Tisdall,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aditya Runnels,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shuji Lisch,ou=Management,dc=bitwarden,dc=com", + "cn=Corette Biggers,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sarah Marceau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Huy Reporting,ou=Payroll,dc=bitwarden,dc=com", + "cn=Charissa Douglas,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cortney Okamoto,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rene Fletcher,ou=Payroll,dc=bitwarden,dc=com", + "cn=Deryck Nassr,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Coraline Kato,ou=Peons,dc=bitwarden,dc=com", + "cn=Becca Hallenbeck,ou=Peons,dc=bitwarden,dc=com", + "cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carin Briggs,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wai Pellizzeri,ou=Peons,dc=bitwarden,dc=com", + "cn=Joachim Nesrallah,ou=Peons,dc=bitwarden,dc=com", + "cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Loesje Smothers,ou=Management,dc=bitwarden,dc=com", + "cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dani Maksoud,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kieran Forghani,ou=Management,dc=bitwarden,dc=com", + "cn=Lusa Korpela,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Data Roussin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Stone Scholes,ou=Peons,dc=bitwarden,dc=com", + "cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Agathe Huddleston,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vmchange Vacher,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aleta Buntrock,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darlleen Murris,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mysore Kenlan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden,dc=com", + "cn=Roxanne Janning,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alexander Enns,ou=Peons,dc=bitwarden,dc=com", + "cn=Koen Keith,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mohan Parulekar,ou=Peons,dc=bitwarden,dc=com", + "cn=Ronna Esparza,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hot Terrel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aparna Loiseau,ou=Peons,dc=bitwarden,dc=com", + "cn=Lana Fasken,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fariborz Neefs,ou=Peons,dc=bitwarden,dc=com", + "cn=Netty Eustace,ou=Peons,dc=bitwarden,dc=com", + "cn=Rio Philion,ou=Product Development,dc=bitwarden,dc=com", + "cn=Beverlie Kutten,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=William Ridgewell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nonah McGlynn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Grace Hickerson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden,dc=com", + "cn=Liping Levi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mauro Meubus,ou=Administrative,dc=bitwarden,dc=com", + "cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", + "cn=Minny Southon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Halina Zenar,ou=Management,dc=bitwarden,dc=com", + "cn=Gwenny Bertram,ou=Payroll,dc=bitwarden,dc=com", + "cn=Andreana Gaube,ou=Peons,dc=bitwarden,dc=com", + "cn=Michelina Zbib,ou=Payroll,dc=bitwarden,dc=com", + "cn=Davis Mutcher,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kelcey Yedema,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kaila Squizzato,ou=Peons,dc=bitwarden,dc=com", + "cn=Ddene Ciocca,ou=Product Development,dc=bitwarden,dc=com", + "cn=Harmony Peschke,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cheslie NTINASH,ou=Management,dc=bitwarden,dc=com", + "cn=Celisse Malizia,ou=Management,dc=bitwarden,dc=com", + "cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rachelle Siew,ou=Product Development,dc=bitwarden,dc=com", + "cn=Charlean Robson,ou=Peons,dc=bitwarden,dc=com", + "cn=Gabriela Mustillo,ou=Management,dc=bitwarden,dc=com", + "cn=Latia Viau,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Madlen Venning,ou=Management,dc=bitwarden,dc=com", + "cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gunilla Skene,ou=Management,dc=bitwarden,dc=com", + "cn=Anestassia Ting,ou=Management,dc=bitwarden,dc=com", + "cn=MaryJane Telco,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mansukha Tchir,ou=Product Development,dc=bitwarden,dc=com", + "cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sherline Gillard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Inm Stefanac,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden,dc=com", + "cn=PengDavid Pryor,ou=Payroll,dc=bitwarden,dc=com", + "cn=Agathe Hr,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ervin Biage,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Brandie Vargo,ou=Administrative,dc=bitwarden,dc=com", + "cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Augusto Audette,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Loella Haydock,ou=Product Development,dc=bitwarden,dc=com", + "cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tami Scarlett,ou=Peons,dc=bitwarden,dc=com", + "cn=Betteanne Badza,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Roman Barsony,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Katrinka Debortoli,ou=Peons,dc=bitwarden,dc=com", + "cn=Jillana Alary,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Margeaux Raines,ou=Administrative,dc=bitwarden,dc=com", + "cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cassi Moritz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sales Rasmus,ou=Administrative,dc=bitwarden,dc=com", + "cn=Katrine Thomason,ou=Product Development,dc=bitwarden,dc=com", + "cn=Celka Kester,ou=Management,dc=bitwarden,dc=com", + "cn=Pansie Mayea,ou=Payroll,dc=bitwarden,dc=com", + "cn=Burton Shearer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden,dc=com", + "cn=Augusto Montero,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eyde Gallion,ou=Management,dc=bitwarden,dc=com", + "cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sule Valenziano,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Therese Totti,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dyana ChampionDemers,ou=Management,dc=bitwarden,dc=com", + "cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ranea Zitko,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Thayne Langer,ou=Peons,dc=bitwarden,dc=com", + "cn=Chie Hilton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gisela Enet,ou=Administrative,dc=bitwarden,dc=com", + "cn=Erlene Krajesky,ou=Peons,dc=bitwarden,dc=com", + "cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cezary Stephens,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cyndie Therrien,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rolf Philip,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karla Biss,ou=Peons,dc=bitwarden,dc=com", + "cn=Danica Margittai,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shelly Fabris,ou=Management,dc=bitwarden,dc=com", + "cn=Netta Gregorio,ou=Product Development,dc=bitwarden,dc=com", + "cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lu Tsai,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anabella McManus,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sandeep Deneen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fiore Brogdon,ou=Management,dc=bitwarden,dc=com", + "cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mariellen Tilley,ou=Management,dc=bitwarden,dc=com", + "cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ina Joudrey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Baines Buettgen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carie Pitcher,ou=Administrative,dc=bitwarden,dc=com", + "cn=Candie Gurer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Zino Swinson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Terese Beton,ou=Peons,dc=bitwarden,dc=com", + "cn=Reena Gullekson,ou=Peons,dc=bitwarden,dc=com", + "cn=Yoda Prado,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Waneta Irwin,ou=Peons,dc=bitwarden,dc=com", + "cn=Prity Wyllie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jillian Borzic,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Akio Broussard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ind Suitt,ou=Peons,dc=bitwarden,dc=com", + "cn=Alyse Walkley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Julienne Milne,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kit Lesperance,ou=Peons,dc=bitwarden,dc=com", + "cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Libbi Niccolls,ou=Management,dc=bitwarden,dc=com", + "cn=Kas Ashraf,ou=Payroll,dc=bitwarden,dc=com", + "cn=Georgia Henderson,ou=Peons,dc=bitwarden,dc=com", + "cn=Nuri Mand,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shafiq Doi,ou=Management,dc=bitwarden,dc=com", + "cn=Mamie Angerer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Trula Ledou,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hoy Rushton,ou=Management,dc=bitwarden,dc=com", + "cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden,dc=com", + "cn=Bobette Tohama,ou=Product Development,dc=bitwarden,dc=com", + "cn=Four Elks,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alli Kaura,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gil Walston,ou=Administrative,dc=bitwarden,dc=com", + "cn=Viole Lopinski,ou=Peons,dc=bitwarden,dc=com", + "cn=Amy StOnge,ou=Payroll,dc=bitwarden,dc=com", + "cn=Emogene Cocke,ou=Peons,dc=bitwarden,dc=com", + "cn=Tash Sails,ou=Product Development,dc=bitwarden,dc=com", + "cn=Coral Viriato,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Des Zacharias,ou=Payroll,dc=bitwarden,dc=com", + "cn=Durantaye Skelly,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Candie Mitsui,ou=Management,dc=bitwarden,dc=com", + "cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rocke Baughan,ou=Peons,dc=bitwarden,dc=com", + "cn=Vyza Tsuk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tiffany Fisprod,ou=Management,dc=bitwarden,dc=com", + "cn=Rafael Tucker,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kayle Gedman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Arthur Axberg,ou=Administrative,dc=bitwarden,dc=com", + "cn=Deeanne Armstead,ou=Management,dc=bitwarden,dc=com", + "cn=Gaye Sils,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sadan Trottier,ou=Peons,dc=bitwarden,dc=com", + "cn=Reina Woods,ou=Peons,dc=bitwarden,dc=com", + "cn=Krystalle Evers,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mair Bascombe,ou=Management,dc=bitwarden,dc=com", + "cn=Dinker Meehan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elena Chabrat,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rozelle Kunkel,ou=Management,dc=bitwarden,dc=com", + "cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Christine Moree,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anje Saward,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kwok Pringle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Chiho Zilaie,ou=Peons,dc=bitwarden,dc=com", + "cn=Shaw Leigh,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rosita Updt,ou=Payroll,dc=bitwarden,dc=com", + "cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Selim Kriegler,ou=Peons,dc=bitwarden,dc=com", + "cn=Tae Jeng,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden,dc=com", + "cn=Faz Chan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ericka Hayes,ou=Administrative,dc=bitwarden,dc=com", + "cn=Calli Pharr,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pamela Hufana,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Carley Fogleman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marsh Gribbons,ou=Peons,dc=bitwarden,dc=com", + "cn=Herminia Corvo,ou=Peons,dc=bitwarden,dc=com", + "cn=Loutitia Bruce,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Genga Poley,ou=Peons,dc=bitwarden,dc=com", + "cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Petunia Gunther,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bernice Yuan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brigitte Zahn,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lexis Otsuka,ou=Management,dc=bitwarden,dc=com", + "cn=Avril Hoffelt,ou=Management,dc=bitwarden,dc=com", + "cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vax Regier,ou=Peons,dc=bitwarden,dc=com", + "cn=Meara Lindsey,ou=Peons,dc=bitwarden,dc=com", + "cn=Aeriel Juan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dear Valerien,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shobana Bardsley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Iona Kohl,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Idette Ramage,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mick Jakab,ou=Product Development,dc=bitwarden,dc=com", + "cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Clay Staats,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ronica Dummer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rolf Maudrie,ou=Peons,dc=bitwarden,dc=com", + "cn=Sidonnie Comp,ou=Peons,dc=bitwarden,dc=com", + "cn=Jimmie Mand,ou=Management,dc=bitwarden,dc=com", + "cn=Esmaria Walston,ou=Peons,dc=bitwarden,dc=com", + "cn=Claude LaVecchia,ou=Management,dc=bitwarden,dc=com", + "cn=Rusty Montgomery,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chelsey Favreau,ou=Peons,dc=bitwarden,dc=com", + "cn=JulieAnne Drubld,ou=Management,dc=bitwarden,dc=com", + "cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shantee Moulton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Camilla Sayegh,ou=Management,dc=bitwarden,dc=com", + "cn=Txp Wojdylo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Belen Miernik,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mani Skillen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Diahann Roeten,ou=Janitorial,dc=bitwarden,dc=com", + "cn=KaiWai COKOL,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maible Adorno,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zero Fletcher,ou=Management,dc=bitwarden,dc=com", + "cn=Daveen Burnage,ou=Management,dc=bitwarden,dc=com", + "cn=Ebony Duquette,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tracie Holinski,ou=Peons,dc=bitwarden,dc=com", + "cn=Rio Naem,ou=Payroll,dc=bitwarden,dc=com", + "cn=Reeta Abel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Felicle McCartin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Darrell Presgrove,ou=Payroll,dc=bitwarden,dc=com", + "cn=Faizal Awadalla,ou=Management,dc=bitwarden,dc=com", + "cn=SikYin Borha,ou=Administrative,dc=bitwarden,dc=com", + "cn=Steve Marette,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Janeva Diener,ou=Product Development,dc=bitwarden,dc=com", + "cn=Amelie Brashear,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kenneth Tahamont,ou=Peons,dc=bitwarden,dc=com", + "cn=Mario Pappu,ou=Peons,dc=bitwarden,dc=com", + "cn=Bethena Arnauld,ou=Peons,dc=bitwarden,dc=com", + "cn=Nhut Hollis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Claudette Murton,ou=Management,dc=bitwarden,dc=com", + "cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dalila Solomon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Veriee Aksel,ou=Peons,dc=bitwarden,dc=com", + "cn=Mirella Lambregts,ou=Payroll,dc=bitwarden,dc=com", + "cn=Paulinus Bagi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rodrigo Healy,ou=Peons,dc=bitwarden,dc=com", + "cn=Vicheara Reimann,ou=Payroll,dc=bitwarden,dc=com", + "cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Johan Srivastava,ou=Peons,dc=bitwarden,dc=com", + "cn=Isl Luciani,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Monah Nipper,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sibyl Luettchau,ou=Peons,dc=bitwarden,dc=com", + "cn=Maryl Feeley,ou=Peons,dc=bitwarden,dc=com", + "cn=Moyna Syres,ou=Management,dc=bitwarden,dc=com", + "cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Petri Jimenez,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mike Inoue,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anita Gonsalves,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dennis Saad,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Taryna Anchia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Abigale Dacal,ou=Peons,dc=bitwarden,dc=com", + "cn=Kana Gantt,ou=Peons,dc=bitwarden,dc=com", + "cn=Hans Raing,ou=Payroll,dc=bitwarden,dc=com", + "cn=Melford Lopes,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hermina Ng,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ren Schwenk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Subramaniam Cranston,ou=Peons,dc=bitwarden,dc=com", + "cn=Coors Livas,ou=Management,dc=bitwarden,dc=com", + "cn=Arleyne Schreier,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ko Yuen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=HsingJu Kellogg,ou=Peons,dc=bitwarden,dc=com", + "cn=Juanita Beisel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jackson Forbes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bethina Rosvick,ou=Peons,dc=bitwarden,dc=com", + "cn=Osama Bitton,ou=Peons,dc=bitwarden,dc=com", + "cn=Douglass Eales,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Linh Ostifichuk,ou=Peons,dc=bitwarden,dc=com", + "cn=Leonor Hepburn,ou=Peons,dc=bitwarden,dc=com", + "cn=Umesh Mayhugh,ou=Management,dc=bitwarden,dc=com", + "cn=Cecile Chorley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alia Kuehne,ou=Peons,dc=bitwarden,dc=com", + "cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Fernando Pacey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sela Sandlford,ou=Management,dc=bitwarden,dc=com", + "cn=Latashia McCuaig,ou=Peons,dc=bitwarden,dc=com", + "cn=Dara Goodwin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Helli Charlino,ou=Peons,dc=bitwarden,dc=com", + "cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Erhard Ikeda,ou=Administrative,dc=bitwarden,dc=com", + "cn=Perrin Lai,ou=Peons,dc=bitwarden,dc=com", + "cn=Vickie Bardsley,ou=Peons,dc=bitwarden,dc=com", + "cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden,dc=com", + "cn=Katherin Habert,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nobuko Prickett,ou=Peons,dc=bitwarden,dc=com", + "cn=Amye Seery,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Illinois Bolgos,ou=Peons,dc=bitwarden,dc=com", + "cn=Sandro Ploof,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Turgay Potesta,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Debi Hore,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leyla Toulson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Morris Asghar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eirik Satkamp,ou=Payroll,dc=bitwarden,dc=com", + "cn=Asghar Graziano,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Randee McIntee,ou=Management,dc=bitwarden,dc=com", + "cn=Magnolia Aderhold,ou=Peons,dc=bitwarden,dc=com", + "cn=Gert Thibert,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hunter Durant,ou=Payroll,dc=bitwarden,dc=com", + "cn=Luci Gergen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yousef Musick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shabbir Derganc,ou=Peons,dc=bitwarden,dc=com", + "cn=Amalita Korey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Herbie Merrils,ou=Product Testing,dc=bitwarden,dc=com", + "cn=YuenPui Woodford,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mair Dobransky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fae Molson,ou=Management,dc=bitwarden,dc=com", + "cn=Subhash Moizer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rosella Spillane,ou=Peons,dc=bitwarden,dc=com", + "cn=Persis Modi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tamar Haggart,ou=Payroll,dc=bitwarden,dc=com", + "cn=Orelie Cheval,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ronna Morton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eryn Avirett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rowe Firment,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fidela Irving,ou=Product Development,dc=bitwarden,dc=com", + "cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Desire Rutter,ou=Administrative,dc=bitwarden,dc=com", + "cn=Xaviera Anstead,ou=Management,dc=bitwarden,dc=com", + "cn=Kelsi McAlister,ou=Management,dc=bitwarden,dc=com", + "cn=Marce Onyshko,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Son AlBasi,ou=Peons,dc=bitwarden,dc=com", + "cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Julianne Temp,ou=Administrative,dc=bitwarden,dc=com", + "cn=Seamus Sathe,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Terra Tanatichat,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Emil Hogeboom,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anup Volkmer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kevin Tangren,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Germaine Lisak,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Deni Chea,ou=Management,dc=bitwarden,dc=com", + "cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jooran Hilton,ou=Peons,dc=bitwarden,dc=com", + "cn=Pramod Piltz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Reyaud Kurio,ou=Management,dc=bitwarden,dc=com", + "cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden,dc=com", + "cn=Radio DiNinno,ou=Janitorial,dc=bitwarden,dc=com", + "cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cynde Tudo,ou=Peons,dc=bitwarden,dc=com", + "cn=Genga Huor,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leandra Steffy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden,dc=com", + "cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Trisha Walpole,ou=Peons,dc=bitwarden,dc=com", + "cn=Valli Buzzell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gita Manuszak,ou=Management,dc=bitwarden,dc=com", + "cn=Sadru Suda,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Susana Mattes,ou=Administrative,dc=bitwarden,dc=com", + "cn=Diannne Geuder,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ned Faletti,ou=Management,dc=bitwarden,dc=com", + "cn=Gwenni Felske,ou=Peons,dc=bitwarden,dc=com", + "cn=Coretta Mayne,ou=Management,dc=bitwarden,dc=com", + "cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cissiee Hampton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kalina Fangio,ou=Management,dc=bitwarden,dc=com", + "cn=Petter Sarna,ou=Management,dc=bitwarden,dc=com", + "cn=Nando Shurtleff,ou=Management,dc=bitwarden,dc=com", + "cn=Valene St,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elysia Swiat,ou=Administrative,dc=bitwarden,dc=com", + "cn=Yonik Valerien,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jania Clouthier,ou=Management,dc=bitwarden,dc=com", + "cn=Lennart Whang,ou=Management,dc=bitwarden,dc=com", + "cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hala Wallis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Levy Younger,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rahel Strober,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Casi Swick,ou=Peons,dc=bitwarden,dc=com", + "cn=Dimitrios Coop,ou=Payroll,dc=bitwarden,dc=com", + "cn=Elga Ashton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Harley Streatfield,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Khamdy Quinn,ou=Payroll,dc=bitwarden,dc=com", + "cn=Devan Kashima,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Regine Frizado,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roger Bondurant,ou=Peons,dc=bitwarden,dc=com", + "cn=Taffy Solkoff,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mame Muradia,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shirlee Mackey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Terrye Redish,ou=Product Development,dc=bitwarden,dc=com", + "cn=Penelope Rey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Anthony Meyer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dre McNerney,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Brooks Drescher,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brandea Dziemian,ou=Administrative,dc=bitwarden,dc=com", + "cn=Candis Richer,ou=Peons,dc=bitwarden,dc=com", + "cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden,dc=com", + "cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden,dc=com", + "cn=Ludovico Gleason,ou=Management,dc=bitwarden,dc=com", + "cn=Ninette McTiernan,ou=Management,dc=bitwarden,dc=com", + "cn=TunLin Pinney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Joshi Cassese,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Miroslav StPierre,ou=Management,dc=bitwarden,dc=com", + "cn=Sammy Krater,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sapphira McCain,ou=Peons,dc=bitwarden,dc=com", + "cn=Pierrette Discover,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ulf Willcox,ou=Management,dc=bitwarden,dc=com", + "cn=Carmen Trame,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cornelia Karim,ou=Peons,dc=bitwarden,dc=com", + "cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden,dc=com", + "cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roobbie Stars,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sharee Wynes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sil Marano,ou=Peons,dc=bitwarden,dc=com", + "cn=Leonor Maginley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nicoline Magee,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Penang Musca,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carlos Smyth,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden,dc=com", + "cn=Evania Copello,ou=Management,dc=bitwarden,dc=com", + "cn=Jamie Tschaja,ou=Peons,dc=bitwarden,dc=com", + "cn=Thang Dallaire,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Daphine Chandra,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ohio Baerg,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden,dc=com", + "cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Else Brien,ou=Administrative,dc=bitwarden,dc=com", + "cn=Giampaolo Gu,ou=Payroll,dc=bitwarden,dc=com", + "cn=Seven Tregenza,ou=Peons,dc=bitwarden,dc=com", + "cn=Rakel Ressner,ou=Peons,dc=bitwarden,dc=com", + "cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Britney Prestia,ou=Peons,dc=bitwarden,dc=com", + "cn=Jonathan Guty,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Livvy Hoag,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rennie Postolek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jayesh Liao,ou=Peons,dc=bitwarden,dc=com", + "cn=Tiffany Fougere,ou=Management,dc=bitwarden,dc=com", + "cn=Darline Swinson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Biddie Scp,ou=Management,dc=bitwarden,dc=com", + "cn=Colin Irick,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yueli Clinger,ou=Peons,dc=bitwarden,dc=com", + "cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Randa Wery,ou=Payroll,dc=bitwarden,dc=com", + "cn=Theodor Schute,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Keeley Basa,ou=Management,dc=bitwarden,dc=com", + "cn=Mimi Clements,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dasi Baader,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kerrin Miner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tania Guimond,ou=Peons,dc=bitwarden,dc=com", + "cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hedvige Doran,ou=Management,dc=bitwarden,dc=com", + "cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Diahann Nason,ou=Peons,dc=bitwarden,dc=com", + "cn=Leecia Guarino,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kacie Moyano,ou=Management,dc=bitwarden,dc=com", + "cn=Dicky Guignon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bobbie Suwala,ou=Peons,dc=bitwarden,dc=com", + "cn=Melissa Adkinson,ou=Peons,dc=bitwarden,dc=com", + "cn=Georgine Lantto,ou=Peons,dc=bitwarden,dc=com", + "cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Johnnie Mayes,ou=Management,dc=bitwarden,dc=com", + "cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anker Serapin,ou=Management,dc=bitwarden,dc=com", + "cn=Mable Thirugnanam,ou=Management,dc=bitwarden,dc=com", + "cn=Allan Rizewiski,ou=Management,dc=bitwarden,dc=com", + "cn=Peng Quantrill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Addy Paunins,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Friederike Constable,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Starlene Solodko,ou=Payroll,dc=bitwarden,dc=com", + "cn=Verene Ludchen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Curtis Mersch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Piper Brander,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rozalin Heppes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cad Ajersch,ou=Human Resources,dc=bitwarden,dc=com", + "cn=TakWai Wagoner,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carran Rokas,ou=Administrative,dc=bitwarden,dc=com", + "cn=Idus Wayling,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maryann Somerville,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mildred Dumas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ilda Bisson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Babb Nicolle,ou=Management,dc=bitwarden,dc=com", + "cn=Karyn Pagani,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Agnola MacRae,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tessi Borha,ou=Peons,dc=bitwarden,dc=com", + "cn=Tonia OToole,ou=Product Development,dc=bitwarden,dc=com", + "cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gheorghe Eros,ou=Management,dc=bitwarden,dc=com", + "cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Robina Chaikowsky,ou=Peons,dc=bitwarden,dc=com", + "cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ursala Wadden,ou=Management,dc=bitwarden,dc=com", + "cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sephira Munsey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Neal Astle,ou=Management,dc=bitwarden,dc=com", + "cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vacman Lapostolle,ou=Management,dc=bitwarden,dc=com", + "cn=Genna Rappoport,ou=Management,dc=bitwarden,dc=com", + "cn=Lenny Mundi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden,dc=com", + "cn=Iva Pilote,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Caridad Spolar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elenore Jatar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Otha Scheffler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Janot Greenway,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rowan Hicks,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bertina Harkness,ou=Management,dc=bitwarden,dc=com", + "cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Misbah Desautels,ou=Payroll,dc=bitwarden,dc=com", + "cn=TakWai Miranda,ou=Peons,dc=bitwarden,dc=com", + "cn=Blisse Silverman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nerty Longchamps,ou=Management,dc=bitwarden,dc=com", + "cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hilary Mendonca,ou=Peons,dc=bitwarden,dc=com", + "cn=Vivien Seager,ou=Payroll,dc=bitwarden,dc=com", + "cn=Estele Dasch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joyous Belson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zorine OLeary,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kanata Kilby,ou=Peons,dc=bitwarden,dc=com", + "cn=Peder Gaylor,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carter MacMaid,ou=Payroll,dc=bitwarden,dc=com", + "cn=Man Dacre,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Theresina Torrell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emelda Neely,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Avinash Kingaby,ou=Product Development,dc=bitwarden,dc=com", + "cn=Crysta Sloan,ou=Peons,dc=bitwarden,dc=com", + "cn=Buck Auerbach,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fallon Windom,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden,dc=com", + "cn=Samir Wesenberg,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hildegaard Valko,ou=Management,dc=bitwarden,dc=com", + "cn=Azmina Irvine,ou=Peons,dc=bitwarden,dc=com", + "cn=Cortland Kwa,ou=Administrative,dc=bitwarden,dc=com", + "cn=Franz Artspssa,ou=Administrative,dc=bitwarden,dc=com", + "cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marrissa Ronan,ou=Peons,dc=bitwarden,dc=com", + "cn=Stanislas Sehgal,ou=Management,dc=bitwarden,dc=com", + "cn=Woody Morocz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Karla Proffit,ou=Peons,dc=bitwarden,dc=com", + "cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Julianna Varughese,ou=Management,dc=bitwarden,dc=com", + "cn=Elset Neustifter,ou=Peons,dc=bitwarden,dc=com", + "cn=Grete Daymond,ou=Peons,dc=bitwarden,dc=com", + "cn=Thekla Wokoma,ou=Management,dc=bitwarden,dc=com", + "cn=Sika Koller,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sukey Strauss,ou=Administrative,dc=bitwarden,dc=com", + "cn=Icy Foeppel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yongli Barrows,ou=Peons,dc=bitwarden,dc=com", + "cn=Xaviera Broca,ou=Product Development,dc=bitwarden,dc=com", + "cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Junette Foos,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ashraf Denter,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amelina Marceau,ou=Management,dc=bitwarden,dc=com", + "cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yuen Huppert,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vijai Bergeron,ou=Administrative,dc=bitwarden,dc=com", + "cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Diane Andersen,ou=Management,dc=bitwarden,dc=com", + "cn=Jester Mannion,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Christy Townsel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Raine Assistance,ou=Payroll,dc=bitwarden,dc=com", + "cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ireland Ciochon,ou=Administrative,dc=bitwarden,dc=com", + "cn=WaiMan Binner,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ruperta Jodoin,ou=Peons,dc=bitwarden,dc=com", + "cn=Narrima Tu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elonore Spieker,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pick Santella,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lynea Newcomb,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yukinaga Brander,ou=Peons,dc=bitwarden,dc=com", + "cn=Jerrylee Galloway,ou=Peons,dc=bitwarden,dc=com", + "cn=Mia Amarsi,ou=Peons,dc=bitwarden,dc=com", + "cn=Joyous Smecca,ou=Management,dc=bitwarden,dc=com", + "cn=Larkin Baughan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lillis Tyler,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rosy Stctest,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Costas Zanetti,ou=Administrative,dc=bitwarden,dc=com", + "cn=Technical Carpentier,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lanie Geesman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Eydie Sliter,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Trista Farag,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chery Greaver,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Katuscha Huor,ou=Management,dc=bitwarden,dc=com", + "cn=Bue Satta,ou=Administrative,dc=bitwarden,dc=com", + "cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden,dc=com", + "cn=Justine Manolios,ou=Administrative,dc=bitwarden,dc=com", + "cn=Guenna Sullivan,ou=Peons,dc=bitwarden,dc=com", + "cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Deb Sehmbey,ou=Management,dc=bitwarden,dc=com", + "cn=Gavra Skrobanski,ou=Peons,dc=bitwarden,dc=com", + "cn=Gajendra Deibert,ou=Management,dc=bitwarden,dc=com", + "cn=Yong Nuttall,ou=Product Development,dc=bitwarden,dc=com", + "cn=Siew Saiyed,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Access McCullough,ou=Peons,dc=bitwarden,dc=com", + "cn=Charmion Sathe,ou=Management,dc=bitwarden,dc=com", + "cn=Wilow Tools,ou=Human Resources,dc=bitwarden,dc=com", + "cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marylin Fradette,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bellina Capobianco,ou=Payroll,dc=bitwarden,dc=com", + "cn=Darcee Stegall,ou=Peons,dc=bitwarden,dc=com", + "cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tonie Georgiou,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vahe Jasen,ou=Peons,dc=bitwarden,dc=com", + "cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dien Plambeck,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pamella Royle,ou=Payroll,dc=bitwarden,dc=com", + "cn=Miro Doolittle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden,dc=com", + "cn=Esmaria Ligurs,ou=Management,dc=bitwarden,dc=com", + "cn=Jim Gillespie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lottie Patoka,ou=Peons,dc=bitwarden,dc=com", + "cn=Keven Camillucci,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ning Schiegl,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Torie Sridaran,ou=Management,dc=bitwarden,dc=com", + "cn=Jilly Ziai,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Katharyn Herak,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carmina Slade,ou=Peons,dc=bitwarden,dc=com", + "cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden,dc=com", + "cn=NamKiet Dada,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nashir SUPPORT,ou=Management,dc=bitwarden,dc=com", + "cn=Bonni Gehring,ou=Product Development,dc=bitwarden,dc=com", + "cn=Agenia Deboer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tatiana Keene,ou=Peons,dc=bitwarden,dc=com", + "cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ora Trayer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Malissa Walta,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sage Jones,ou=Administrative,dc=bitwarden,dc=com", + "cn=Homer Boothroyd,ou=Administrative,dc=bitwarden,dc=com", + "cn=Oksana Baran,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gill Stalter,ou=Peons,dc=bitwarden,dc=com", + "cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden,dc=com", + "cn=PohSoon Carter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cherilynn Munden,ou=Product Development,dc=bitwarden,dc=com", + "cn=Stephie Wong,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Leah Makoid,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sisely Cameron,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lacie Seddigh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Golda Decasper,ou=Peons,dc=bitwarden,dc=com", + "cn=Chander Kernahan,ou=Product Development,dc=bitwarden,dc=com", + "cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nicola Haupt,ou=Product Development,dc=bitwarden,dc=com", + "cn=Orelle Ifact,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jak Locken,ou=Product Development,dc=bitwarden,dc=com", + "cn=Phillis Hermack,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marcellina Knighton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Krystal Runnels,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sonnnie Steven,ou=Administrative,dc=bitwarden,dc=com", + "cn=Catherin Whaley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fernanda Michalos,ou=Payroll,dc=bitwarden,dc=com", + "cn=Darline Worpell,ou=Management,dc=bitwarden,dc=com", + "cn=Jose Brading,ou=Administrative,dc=bitwarden,dc=com", + "cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Adrie Coverdale,ou=Administrative,dc=bitwarden,dc=com", + "cn=Coral Larrigan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lorrin Derrett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Xu Gertridge,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carlisle Wokoma,ou=Management,dc=bitwarden,dc=com", + "cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tatsuya Standel,ou=Management,dc=bitwarden,dc=com", + "cn=Shirline Dahl,ou=Peons,dc=bitwarden,dc=com", + "cn=Mandie Tota,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nicolea Garee,ou=Management,dc=bitwarden,dc=com", + "cn=Geraldine Meehan,ou=Administrative,dc=bitwarden,dc=com", + "cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mickie Budhram,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Faustina Severinac,ou=Management,dc=bitwarden,dc=com", + "cn=Roy Zaloker,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karel Padiou,ou=Peons,dc=bitwarden,dc=com", + "cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Taiwana Rhodes,ou=Management,dc=bitwarden,dc=com", + "cn=Hedi Cicci,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Valaria Limerick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Oralia Hoggan,ou=Management,dc=bitwarden,dc=com", + "cn=Leyla Parham,ou=Management,dc=bitwarden,dc=com", + "cn=Derick Paar,ou=Peons,dc=bitwarden,dc=com", + "cn=Dau Peart,ou=Peons,dc=bitwarden,dc=com", + "cn=Danell Kapp,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pen Marshall,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kary Soo,ou=Management,dc=bitwarden,dc=com", + "cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kiem Pracht,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vick Marleau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Adrianna Bruder,ou=Management,dc=bitwarden,dc=com", + "cn=Isabelita Swinney,ou=Peons,dc=bitwarden,dc=com", + "cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kelcey Lee,ou=Administrative,dc=bitwarden,dc=com", + "cn=Brandy Koellner,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Selie Schedulers,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Addons Dieter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lesly Willett,ou=Peons,dc=bitwarden,dc=com", + "cn=Coleman Wolski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shutterbug Lauson,ou=Management,dc=bitwarden,dc=com", + "cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nancy Oziskender,ou=Payroll,dc=bitwarden,dc=com", + "cn=Doloritas Flowers,ou=Management,dc=bitwarden,dc=com", + "cn=Veleta Lun,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aila Speaker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Scptest Menna,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Madeleine Goss,ou=Administrative,dc=bitwarden,dc=com", + "cn=Thuy Sullivan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sheridan Sandner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Malory Groff,ou=Payroll,dc=bitwarden,dc=com", + "cn=Armine livinston,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Anibal Ribakovs,ou=Management,dc=bitwarden,dc=com", + "cn=Tao Kardomateas,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mommy Neto,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Goldwyn Lister,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jesus Fraser,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sabina Davison,ou=Peons,dc=bitwarden,dc=com", + "cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ohio Leong,ou=Peons,dc=bitwarden,dc=com", + "cn=Helma Fulford,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Wendy Ashford,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ricki Schadan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carolee McClintock,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fara Phifer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jennee Jasmin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Yatish Streng,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mair Basladynski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Karyn Bender,ou=Administrative,dc=bitwarden,dc=com", + "cn=Beate Ahlberg,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roberto Binder,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Miro Sparksman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ethan Salazar,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elza Meubus,ou=Human Resources,dc=bitwarden,dc=com", + "cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden,dc=com", + "cn=Phyllida Peng,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leslie Wagoner,ou=Administrative,dc=bitwarden,dc=com", + "cn=Erning Dmsrtime,ou=Peons,dc=bitwarden,dc=com", + "cn=Frederica Barel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Wilkin Coupal,ou=Management,dc=bitwarden,dc=com", + "cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden,dc=com", + "cn=Millie Kenol,ou=Payroll,dc=bitwarden,dc=com", + "cn=Miklos Menzies,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=WenKai Peleato,ou=Payroll,dc=bitwarden,dc=com", + "cn=ChoLun Simser,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Minerva Paulett,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Asia Aleong,ou=Product Development,dc=bitwarden,dc=com", + "cn=Xantippe Sydor,ou=Product Development,dc=bitwarden,dc=com", + "cn=Devora Bunker,ou=Peons,dc=bitwarden,dc=com", + "cn=Hudai Dallago,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pamella Herman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Preston Marco,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sybyl McIver,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Fidelia Mehta,ou=Peons,dc=bitwarden,dc=com", + "cn=Tom Boose,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lorrel Manno,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Stacee Finnie,ou=Administrative,dc=bitwarden,dc=com", + "cn=Clari Beshai,ou=Management,dc=bitwarden,dc=com", + "cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden,dc=com", + "cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clovis Banigan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cherin Shedd,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ivonne Whiting,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ardra Gemmill,ou=Payroll,dc=bitwarden,dc=com", + "cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden,dc=com", + "cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Arthur Koch,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leonie Begley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vanessa Thum,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rey Boyer,ou=Management,dc=bitwarden,dc=com", + "cn=Nanete Tomlinson,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorrie Lamy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Donal DorisHampton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leonardo Palasek,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rhodie Seery,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leonas Salomon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sibel McKnight,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anabel Borel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Milo Gravitte,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Katha Noddin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jami Baab,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Verna Petree,ou=Product Development,dc=bitwarden,dc=com", + "cn=Adelia Leibich,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jann Marquart,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mirjam Cleary,ou=Peons,dc=bitwarden,dc=com", + "cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anselma Sabat,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ursola Zagorski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gael Cho,ou=Peons,dc=bitwarden,dc=com", + "cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kris Rotzjean,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zaneta Wun,ou=Product Development,dc=bitwarden,dc=com", + "cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ania Scalabrini,ou=Administrative,dc=bitwarden,dc=com", + "cn=Andras Maruszak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tab Kalair,ou=Peons,dc=bitwarden,dc=com", + "cn=Nadya Speer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Turus Bisson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ioan Naylor,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jeroen Fleurima,ou=Peons,dc=bitwarden,dc=com", + "cn=Lacy Arai,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sylvain Hickin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Margaret Begley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vick Lovegrove,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bob Acres,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dahlia Oost,ou=Management,dc=bitwarden,dc=com", + "cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ianthe Yum,ou=Management,dc=bitwarden,dc=com", + "cn=Judi Adamo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Filibert Pachulski,ou=Peons,dc=bitwarden,dc=com", + "cn=Carmon Kroeger,ou=Management,dc=bitwarden,dc=com", + "cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Camellia Gavidia,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fqa Abrams,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pepita Houston,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden,dc=com", + "cn=Horst Becan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ericha Akai,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mina Amato,ou=Payroll,dc=bitwarden,dc=com", + "cn=Katherine Ostarello,ou=Management,dc=bitwarden,dc=com", + "cn=Mario Bice,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Othelia Radford,ou=Payroll,dc=bitwarden,dc=com", + "cn=Meta Todloski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Riyaz Georges,ou=Administrative,dc=bitwarden,dc=com", + "cn=Teddi Connell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Huong OKelly,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maddalena Dillard,ou=Payroll,dc=bitwarden,dc=com", + "cn=Amandip Lescot,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Verinder Chiou,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Helmut Asdel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vital Therrien,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ileana Bottomley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Julian Condurelis,ou=Management,dc=bitwarden,dc=com", + "cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nashib Mikulka,ou=Payroll,dc=bitwarden,dc=com", + "cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cristie Nill,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Oliy Maloney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Davita Berger,ou=Peons,dc=bitwarden,dc=com", + "cn=Metyn Mullaly,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ning Suitt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rafa Vilozny,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden,dc=com", + "cn=Anita Bui,ou=Product Development,dc=bitwarden,dc=com", + "cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Verina Lamirande,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gusella Loggins,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hatty Murash,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Clyde Labenek,ou=Product Development,dc=bitwarden,dc=com", + "cn=New Koay,ou=Payroll,dc=bitwarden,dc=com", + "cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Doria Smothers,ou=Management,dc=bitwarden,dc=com", + "cn=Tonia Gahan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Reina Gracey,ou=Management,dc=bitwarden,dc=com", + "cn=Vale Harwerth,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gavra Brule,ou=Peons,dc=bitwarden,dc=com", + "cn=Corilla Angustia,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Simona Lemyre,ou=Management,dc=bitwarden,dc=com", + "cn=Loris Knappe,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mariya Frumerie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pradip Wesenberg,ou=Peons,dc=bitwarden,dc=com", + "cn=Teena Szuminski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jeanie Shumate,ou=Management,dc=bitwarden,dc=com", + "cn=Mindy Agnew,ou=Peons,dc=bitwarden,dc=com", + "cn=Cosette Hagley,ou=Peons,dc=bitwarden,dc=com", + "cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Darnell Gombos,ou=Product Development,dc=bitwarden,dc=com", + "cn=Odille Belisle,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mirilla Malik,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lise Disalvo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lou Burchat,ou=Peons,dc=bitwarden,dc=com", + "cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Donita Teichman,ou=Peons,dc=bitwarden,dc=com", + "cn=Hermione Monet,ou=Peons,dc=bitwarden,dc=com", + "cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Belicia Kupitz,ou=Peons,dc=bitwarden,dc=com", + "cn=Tani Rausch,ou=Administrative,dc=bitwarden,dc=com", + "cn=Berget Baerg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Skyler Hariman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Toni Shaddock,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Foad Roberts,ou=Peons,dc=bitwarden,dc=com", + "cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Keely Dee,ou=Peons,dc=bitwarden,dc=com", + "cn=Shiu Trimble,ou=Management,dc=bitwarden,dc=com", + "cn=Gwenore Taren,ou=Product Development,dc=bitwarden,dc=com", + "cn=Saraann Millen,ou=Peons,dc=bitwarden,dc=com", + "cn=Sandra Mosley,ou=Administrative,dc=bitwarden,dc=com", + "cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bernhard Niro,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ema Kelkar,ou=Peons,dc=bitwarden,dc=com", + "cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Erich Pandey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Farshid Sattler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anissa Nasato,ou=Payroll,dc=bitwarden,dc=com", + "cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Grietje Dionne,ou=Management,dc=bitwarden,dc=com", + "cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Asia Dobbs,ou=Administrative,dc=bitwarden,dc=com", + "cn=Flor Powney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Valera Fogelson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aideen Vanaman,ou=Peons,dc=bitwarden,dc=com", + "cn=Pattie McLemore,ou=Payroll,dc=bitwarden,dc=com", + "cn=Levy Wolfson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Patricia Pappas,ou=Administrative,dc=bitwarden,dc=com", + "cn=Miguel Kozak,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gina Toolroom,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fairy Tables,ou=Management,dc=bitwarden,dc=com", + "cn=Selia Larocque,ou=Management,dc=bitwarden,dc=com", + "cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jozef Altmann,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Octavio Doud,ou=Peons,dc=bitwarden,dc=com", + "cn=Atl Baugnon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stacie Tabler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chantal Feil,ou=Payroll,dc=bitwarden,dc=com", + "cn=Waverly Caron,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cindy McTurner,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cherri Loper,ou=Management,dc=bitwarden,dc=com", + "cn=Joleen Fobert,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marley Dadalt,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jennee Reznick,ou=Peons,dc=bitwarden,dc=com", + "cn=Gerrit Pullan,ou=Peons,dc=bitwarden,dc=com", + "cn=Duke Ness,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emilie Grigsby,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shiroshi Thorsen,ou=Management,dc=bitwarden,dc=com", + "cn=Katey Dorr,ou=Administrative,dc=bitwarden,dc=com", + "cn=Manuela Whitsell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alvina Stokoe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Theo TestNTMVAA,ou=Management,dc=bitwarden,dc=com", + "cn=Maidsir Spaugh,ou=Management,dc=bitwarden,dc=com", + "cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vilas Jarvah,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cilka Chadha,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Merl Heffner,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shelly Adler,ou=Management,dc=bitwarden,dc=com", + "cn=Marchelle Howie,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chick Doucet,ou=Management,dc=bitwarden,dc=com", + "cn=Vittoria Astley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hector Easaw,ou=Payroll,dc=bitwarden,dc=com", + "cn=Matilda Gomez,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Crista McMasters,ou=Management,dc=bitwarden,dc=com", + "cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden,dc=com", + "cn=Amnish Haydock,ou=Management,dc=bitwarden,dc=com", + "cn=Mignonne Shull,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lizzy Monson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Riyad Stropp,ou=Peons,dc=bitwarden,dc=com", + "cn=Jennee Tipping,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lorianne Devera,ou=Peons,dc=bitwarden,dc=com", + "cn=Kana VanSickle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bina Scales,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ariela Stachowiak,ou=Peons,dc=bitwarden,dc=com", + "cn=Leontine Kresl,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tomasine Borza,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Emory Ramnarine,ou=Product Development,dc=bitwarden,dc=com", + "cn=Corella Loperena,ou=Management,dc=bitwarden,dc=com", + "cn=Mirna Kashef,ou=Administrative,dc=bitwarden,dc=com", + "cn=Roseann Coyne,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Agenia Zampino,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vic Lenox,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sissie Rao,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chi Shreve,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gloria DeGrandis,ou=Management,dc=bitwarden,dc=com", + "cn=Ryann Teacher,ou=Management,dc=bitwarden,dc=com", + "cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", + "cn=Naveen Kollman,ou=Peons,dc=bitwarden,dc=com", + "cn=Rozina Schipper,ou=Management,dc=bitwarden,dc=com", + "cn=Partha Kelsay,ou=Peons,dc=bitwarden,dc=com", + "cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vinh Dhar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden,dc=com", + "cn=Cart Cardozo,ou=Management,dc=bitwarden,dc=com", + "cn=Briana Ambler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kemp Akai,ou=Management,dc=bitwarden,dc=com", + "cn=Anjela Gribbons,ou=Product Development,dc=bitwarden,dc=com", + "cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hudai Baulch,ou=Payroll,dc=bitwarden,dc=com", + "cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kee Gilchrist,ou=Payroll,dc=bitwarden,dc=com", + "cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ellis Brunner,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Violet Luwemba,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kessia McVicker,ou=Management,dc=bitwarden,dc=com", + "cn=Buffy Treen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Huub Palfreyman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Walt Pringle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rima OBrien,ou=Peons,dc=bitwarden,dc=com", + "cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden,dc=com", + "cn=Robinett Borg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Wai Elms,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alikee Seay,ou=Janitorial,dc=bitwarden,dc=com", + "cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pammi Abrams,ou=Peons,dc=bitwarden,dc=com", + "cn=Gateway Benzick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rhody Birk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Atlanta Brannon,ou=Management,dc=bitwarden,dc=com", + "cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden,dc=com", + "cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Moshe Bowick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shirene Lommen,ou=Management,dc=bitwarden,dc=com", + "cn=Chand Fusca,ou=Peons,dc=bitwarden,dc=com", + "cn=Bethina Kigyos,ou=Peons,dc=bitwarden,dc=com", + "cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Paolina Ricketson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Isaac McNeil,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jaman Churchill,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Erick Heynen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sondra Frie,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mack Hermanns,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Patchit Panesar,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mohamad Ng,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jayme McMillen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Perrin McMasters,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joell Veloz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Naima Swinks,ou=Management,dc=bitwarden,dc=com", + "cn=Mab Amato,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jeanna Lawther,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Luther Kordik,ou=Peons,dc=bitwarden,dc=com", + "cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jenine Sutton,ou=Peons,dc=bitwarden,dc=com", + "cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ronny Blomquist,ou=Management,dc=bitwarden,dc=com", + "cn=Krystal Noel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clark Bruneau,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anallese Bloemker,ou=Administrative,dc=bitwarden,dc=com", + "cn=WenKai Schemena,ou=Peons,dc=bitwarden,dc=com", + "cn=Luan Goupil,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Verna Britt,ou=Management,dc=bitwarden,dc=com", + "cn=Hoog Gareis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Skyler Lamy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Layne Esry,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Amrik Thornber,ou=Payroll,dc=bitwarden,dc=com", + "cn=Michaela Lobianco,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Roxy Banerjee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Derek Ukena,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jenelle Crothers,ou=Administrative,dc=bitwarden,dc=com", + "cn=Devonna Caron,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Neill Droste,ou=Peons,dc=bitwarden,dc=com", + "cn=Lissy MooYoung,ou=Payroll,dc=bitwarden,dc=com", + "cn=Frederica Herbers,ou=Product Development,dc=bitwarden,dc=com", + "cn=Geir Madigan,ou=Peons,dc=bitwarden,dc=com", + "cn=Cal Vosburg,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darrol Schluter,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Augustin Polashock,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karrah Federico,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Arlina Douet,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Herb Cantrell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ott Beresnikow,ou=Management,dc=bitwarden,dc=com", + "cn=Tracey Tates,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jeniece Belmont,ou=Peons,dc=bitwarden,dc=com", + "cn=Vern Vosup,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zoltan Zumhagen,ou=Management,dc=bitwarden,dc=com", + "cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Makiko Walta,ou=Management,dc=bitwarden,dc=com", + "cn=Ermentrude Boult,ou=Management,dc=bitwarden,dc=com", + "cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Larisa Szura,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Wiebe Ku,ou=Peons,dc=bitwarden,dc=com", + "cn=Zeljko Subick,ou=Management,dc=bitwarden,dc=com", + "cn=Liese Neill,ou=Product Development,dc=bitwarden,dc=com", + "cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Doralin PATCOR,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tillie Erskine,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sheeree Petrunka,ou=Management,dc=bitwarden,dc=com", + "cn=Winifred Grelck,ou=Management,dc=bitwarden,dc=com", + "cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Toni Volkmer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alexandra Bassett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ineke Aloi,ou=Management,dc=bitwarden,dc=com", + "cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shafiq Hearn,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bucklin Venne,ou=Management,dc=bitwarden,dc=com", + "cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Theodora Kendall,ou=Management,dc=bitwarden,dc=com", + "cn=Kee Simanskis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Micky Moorefield,ou=Management,dc=bitwarden,dc=com", + "cn=Saraann Helpline,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Blondy Kluke,ou=Management,dc=bitwarden,dc=com", + "cn=Marys Edgette,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Verina McGuigan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Beryl Desmond,ou=Management,dc=bitwarden,dc=com", + "cn=Sydel Staples,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Letta Kalyani,ou=Peons,dc=bitwarden,dc=com", + "cn=Shuo Anstett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Winifred Billing,ou=Payroll,dc=bitwarden,dc=com", + "cn=Colene Colwell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Isabelita Irving,ou=Management,dc=bitwarden,dc=com", + "cn=Raudres Fleischer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Laslo Anstett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ovila Liverman,ou=Management,dc=bitwarden,dc=com", + "cn=Angy Walkins,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hesham Ellison,ou=Management,dc=bitwarden,dc=com", + "cn=Arnett Boone,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tawauna Culver,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Annelise Traulich,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Farouk Goridkov,ou=Peons,dc=bitwarden,dc=com", + "cn=Loris Huestis,ou=Management,dc=bitwarden,dc=com", + "cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sile Creighton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Deborah Marui,ou=Payroll,dc=bitwarden,dc=com", + "cn=Drona Hahn,ou=Peons,dc=bitwarden,dc=com", + "cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Genia Pewitt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Annet Bagshaw,ou=Peons,dc=bitwarden,dc=com", + "cn=Martha Hilaire,ou=Product Development,dc=bitwarden,dc=com", + "cn=Consuelo Welch,ou=Management,dc=bitwarden,dc=com", + "cn=Marti Petrea,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pratibha Gater,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pojanart Edey,ou=Peons,dc=bitwarden,dc=com", + "cn=Maynard Shennan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Theressa Schultze,ou=Peons,dc=bitwarden,dc=com", + "cn=Nanon McIntyre,ou=Product Development,dc=bitwarden,dc=com", + "cn=Silvia Peiser,ou=Peons,dc=bitwarden,dc=com", + "cn=Meryl LeClair,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tariq Standel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Yeung Walpole,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carita Timmerman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Haley Herren,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elbert Allard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Trix VO,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tommi Kapsa,ou=Peons,dc=bitwarden,dc=com", + "cn=Teriann Stastny,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bryant Goel,ou=Peons,dc=bitwarden,dc=com", + "cn=Willabella Darnell,ou=Peons,dc=bitwarden,dc=com", + "cn=Noemi Skerlak,ou=Peons,dc=bitwarden,dc=com", + "cn=Veena Siefert,ou=Product Development,dc=bitwarden,dc=com", + "cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Karyn Frankenberger,ou=Management,dc=bitwarden,dc=com", + "cn=Angil Simpkin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Berta Fetzko,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lance Saltsider,ou=Peons,dc=bitwarden,dc=com", + "cn=Vijai Brent,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Miss Casper,ou=Peons,dc=bitwarden,dc=com", + "cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Adrienne Askins,ou=Peons,dc=bitwarden,dc=com", + "cn=Omayma Kinos,ou=Management,dc=bitwarden,dc=com", + "cn=Francene Babin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maitilde Clerke,ou=Management,dc=bitwarden,dc=com", + "cn=Wileen Martel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Salli Boroski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lissi Straub,ou=Peons,dc=bitwarden,dc=com", + "cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Adrian Paialunga,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dido Kohl,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chung Yarber,ou=Human Resources,dc=bitwarden,dc=com", + "cn=KwokLan Starowicz,ou=Management,dc=bitwarden,dc=com", + "cn=Odile Finane,ou=Peons,dc=bitwarden,dc=com", + "cn=Shila Wykoff,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nga Seroka,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden,dc=com", + "cn=Laurel Godfrey,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marja Brivet,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fung Holvey,ou=Management,dc=bitwarden,dc=com", + "cn=Remy Freeth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Christina Schwartz,ou=Management,dc=bitwarden,dc=com", + "cn=Sissy Snelling,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Randa Cumpston,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maitreya Dpu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jon Giotis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mala Kilner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Melanie Bubel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Collie Nentwich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Madella Feder,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden,dc=com", + "cn=Roman Burleigh,ou=Product Development,dc=bitwarden,dc=com", + "cn=SangMaun Nunn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Moria Auld,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ted Demeulemeester,ou=Management,dc=bitwarden,dc=com", + "cn=Bertha Lamont,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hayden Francese,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jeannette Quante,ou=Management,dc=bitwarden,dc=com", + "cn=Steffane Middleton,ou=Peons,dc=bitwarden,dc=com", + "cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden,dc=com", + "cn=Saied Streight,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marco Ethier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carlyn Gallion,ou=Management,dc=bitwarden,dc=com", + "cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pacific Maxin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Coursey Breiten,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brandea Bagi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Silva Hoag,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sybilla Tipping,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mindy LePage,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Beckie Bach,ou=Peons,dc=bitwarden,dc=com", + "cn=Catie Biermann,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jin Benge,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Elsa Breglec,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Clementina Lozinski,ou=Management,dc=bitwarden,dc=com", + "cn=Danella Gullekson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Monte Luker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Valry Bratten,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lissi Neumeister,ou=Management,dc=bitwarden,dc=com", + "cn=Claribel Digenova,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tatsman Verma,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ransom Nipper,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gilemette McWherter,ou=Management,dc=bitwarden,dc=com", + "cn=Holst Bringhurst,ou=Management,dc=bitwarden,dc=com", + "cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Joe Guatto,ou=Peons,dc=bitwarden,dc=com", + "cn=Peder Jarmon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Melisa Lenior,ou=Management,dc=bitwarden,dc=com", + "cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shafiq Archer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nancee Smuda,ou=Peons,dc=bitwarden,dc=com", + "cn=Ferdinanda Yan,ou=Peons,dc=bitwarden,dc=com", + "cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Portia Basinger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vanda Holmes,ou=Management,dc=bitwarden,dc=com", + "cn=Sid Shedd,ou=Payroll,dc=bitwarden,dc=com", + "cn=Merrielle Cinar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ginevra Varady,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Noraly Hassan,ou=Peons,dc=bitwarden,dc=com", + "cn=Ron Stirling,ou=Peons,dc=bitwarden,dc=com", + "cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kala Huber,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Woon Rasmus,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jaime Delf,ou=Peons,dc=bitwarden,dc=com", + "cn=Dina Kaunas,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Todd Gainer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=HonKong Woolwine,ou=Peons,dc=bitwarden,dc=com", + "cn=Joelie Challice,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Margalo Behlen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Trish Meunier,ou=Payroll,dc=bitwarden,dc=com", + "cn=Verine Lilleniit,ou=Management,dc=bitwarden,dc=com", + "cn=Corilla Popescu,ou=Management,dc=bitwarden,dc=com", + "cn=Wynne Hudson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Laurel Leavell,ou=Management,dc=bitwarden,dc=com", + "cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Madlin Irvin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ashleigh Salembier,ou=Peons,dc=bitwarden,dc=com", + "cn=Sacha Dailey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lynett Reddy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bregitte Nixon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Peter Engineering,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pawel Drane,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tommy Cisco,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dvm Early,ou=Product Development,dc=bitwarden,dc=com", + "cn=Akin Forgeron,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lilllie Precoda,ou=Product Development,dc=bitwarden,dc=com", + "cn=Corinna Spragg,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yoke Pitre,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rao Grosman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Renate Belford,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden,dc=com", + "cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nico Olsheski,ou=Peons,dc=bitwarden,dc=com", + "cn=Alta Wiley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bennet Dunham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Chandran Crutchfield,ou=Peons,dc=bitwarden,dc=com", + "cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Suha Stiles,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sheela Montague,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brandais Speight,ou=Peons,dc=bitwarden,dc=com", + "cn=Ignatius USER,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Merilyn Trull,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ursulina Parise,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ailey Bosworth,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ally Pickett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Viviene St,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cole Kyoung,ou=Management,dc=bitwarden,dc=com", + "cn=Brana Telesis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Naohiko Netzke,ou=Management,dc=bitwarden,dc=com", + "cn=Tessty Aiken,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Riannon Clifford,ou=Management,dc=bitwarden,dc=com", + "cn=Roxanne Kardos,ou=Management,dc=bitwarden,dc=com", + "cn=Salome Shellman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Agnella Shiley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden,dc=com", + "cn=Afzal Muise,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dita Yarosh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aparna Gamsa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Angelita Letsome,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Peder Lotan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Etienne Courchesne,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Huguette Foos,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rania Myhill,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Crista Saha,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dori Brissette,ou=Management,dc=bitwarden,dc=com", + "cn=Niki Bonney,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lyman Busuttil,ou=Payroll,dc=bitwarden,dc=com", + "cn=Loon Esselbach,ou=Peons,dc=bitwarden,dc=com", + "cn=Eleni Hiers,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sal Soo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tdr Porebski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lilian Binda,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fil Craggs,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fan Bednar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kanya Koens,ou=Peons,dc=bitwarden,dc=com", + "cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Salomi Enns,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dido Lanthier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Corny Uyar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pinder Barclay,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Micki Munns,ou=Administrative,dc=bitwarden,dc=com", + "cn=Milly Raines,ou=Management,dc=bitwarden,dc=com", + "cn=Pas Waines,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden,dc=com", + "cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kala Berning,ou=Peons,dc=bitwarden,dc=com", + "cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden,dc=com", + "cn=Greg Bach,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clay Rasmussen,ou=Management,dc=bitwarden,dc=com", + "cn=Kira Rummans,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Graciela Birtch,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Audie Pintwala,ou=Management,dc=bitwarden,dc=com", + "cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gabbie Chiverton,ou=Peons,dc=bitwarden,dc=com", + "cn=Deann Sheridan,ou=Peons,dc=bitwarden,dc=com", + "cn=Orie Lahaie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hodge Schroff,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gertrude Rains,ou=Product Testing,dc=bitwarden,dc=com", + "cn=ChuChay Averett,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Amando Fernandez,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carolann McCorkle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kalvin Jamshidi,ou=Management,dc=bitwarden,dc=com", + "cn=Candis Gentzler,ou=Management,dc=bitwarden,dc=com", + "cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gil Strauss,ou=Management,dc=bitwarden,dc=com", + "cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Prab Crafton,ou=Peons,dc=bitwarden,dc=com", + "cn=Aurora Francoeur,ou=Peons,dc=bitwarden,dc=com", + "cn=Francois Willcox,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ethan Engelberg,ou=Administrative,dc=bitwarden,dc=com", + "cn=Beryl Security,ou=Peons,dc=bitwarden,dc=com", + "cn=Jessica Lovelace,ou=Management,dc=bitwarden,dc=com", + "cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden,dc=com", + "cn=Fqa Desilets,ou=Management,dc=bitwarden,dc=com", + "cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emlynn Louie,ou=Management,dc=bitwarden,dc=com", + "cn=Russel Gillies,ou=Management,dc=bitwarden,dc=com", + "cn=Dionne Parniani,ou=Peons,dc=bitwarden,dc=com", + "cn=Birmingham Shippen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Trudy Durling,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Selena Mickens,ou=Management,dc=bitwarden,dc=com", + "cn=Laureen Paczek,ou=Management,dc=bitwarden,dc=com", + "cn=Gurjinder Gosset,ou=Peons,dc=bitwarden,dc=com", + "cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dede McKeage,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shanda Scroger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ophelia McHale,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ajit Kiens,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nicole Zhao,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Saloma Alkire,ou=Peons,dc=bitwarden,dc=com", + "cn=Khosro Essery,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Veronike Dyck,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Franc Revelle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Freda Tschaja,ou=Management,dc=bitwarden,dc=com", + "cn=Deepak Sangha,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jennee Stover,ou=Peons,dc=bitwarden,dc=com", + "cn=Diamond Brownfield,ou=Management,dc=bitwarden,dc=com", + "cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sangman Estey,ou=Management,dc=bitwarden,dc=com", + "cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ola Kupitz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Willetta Mayes,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nahum Sprigings,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Juile Nttest,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hazel Johannes,ou=Management,dc=bitwarden,dc=com", + "cn=Rebeka Welker,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gordon Fares,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Corella Swanston,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alisun Volfe,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Karine McKerrow,ou=Peons,dc=bitwarden,dc=com", + "cn=Yvan Gandhi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Darrol Mair,ou=Payroll,dc=bitwarden,dc=com", + "cn=Narendra Cramer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Christina Bittman,ou=Peons,dc=bitwarden,dc=com", + "cn=Vo Peacocke,ou=Administrative,dc=bitwarden,dc=com", + "cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Salim Brushey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jorey Jensen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Willow Benda,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marilyn Nardiello,ou=Management,dc=bitwarden,dc=com", + "cn=Federica Keck,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carling Sture,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Inessa McCaffity,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Esko Todaro,ou=Payroll,dc=bitwarden,dc=com", + "cn=Charman Brownridge,ou=Payroll,dc=bitwarden,dc=com", + "cn=Le Reese,ou=Peons,dc=bitwarden,dc=com", + "cn=Cavin Bijons,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden,dc=com", + "cn=Naresh Hiltz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jai Tiller,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Esme Daniells,ou=Payroll,dc=bitwarden,dc=com", + "cn=Trey McWalters,ou=Product Development,dc=bitwarden,dc=com", + "cn=Edlene Bumgarner,ou=Peons,dc=bitwarden,dc=com", + "cn=Tape OHearn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Robbin Hayman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Debadeep Andrade,ou=Peons,dc=bitwarden,dc=com", + "cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Parham Maunu,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ruthe Calhoun,ou=Peons,dc=bitwarden,dc=com", + "cn=Albert Waid,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mason Azar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tory Vairavan,ou=Management,dc=bitwarden,dc=com", + "cn=Marisa Kuntova,ou=Management,dc=bitwarden,dc=com", + "cn=Rungroj Rains,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tak Tihanyi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sharlene Litz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chelsea Ruane,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eddy Talbot,ou=Administrative,dc=bitwarden,dc=com", + "cn=Manhatten Tota,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Annabela Gingrich,ou=Administrative,dc=bitwarden,dc=com", + "cn=Regis Watmore,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shanda Bowen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jyoti Wells,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hanns Sharkey,ou=Management,dc=bitwarden,dc=com", + "cn=Reva Ostapiw,ou=Peons,dc=bitwarden,dc=com", + "cn=Michele Elkaim,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emil Knappe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Beryl Windsor,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Joyan Varia,ou=Human Resources,dc=bitwarden,dc=com", + "cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mitchell Gatka,ou=Peons,dc=bitwarden,dc=com", + "cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ailee Events,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Herre Cadeau,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kaye Hafiz,ou=Peons,dc=bitwarden,dc=com", + "cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shahid Follett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pet Bohanan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Colly Daigle,ou=Peons,dc=bitwarden,dc=com", + "cn=Deva StOnge,ou=Management,dc=bitwarden,dc=com", + "cn=Giri Glucksman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jorey Gillet,ou=Management,dc=bitwarden,dc=com", + "cn=Shelagh Balutis,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rachelle Prakash,ou=Management,dc=bitwarden,dc=com", + "cn=Akshay OKelly,ou=Management,dc=bitwarden,dc=com", + "cn=Condell Kho,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cordey Ballard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amelita Okura,ou=Management,dc=bitwarden,dc=com", + "cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nadeen Longpre,ou=Management,dc=bitwarden,dc=com", + "cn=Imtaz Chouinard,ou=Peons,dc=bitwarden,dc=com", + "cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Melinda Tappert,ou=Administrative,dc=bitwarden,dc=com", + "cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Misha Karaali,ou=Payroll,dc=bitwarden,dc=com", + "cn=Evanne Donator,ou=Management,dc=bitwarden,dc=com", + "cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gussy Prikkel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Liping DaSilva,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden,dc=com", + "cn=HackHoo Sayed,ou=Administrative,dc=bitwarden,dc=com", + "cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rozanne Heurich,ou=Peons,dc=bitwarden,dc=com", + "cn=Arabel Omura,ou=Management,dc=bitwarden,dc=com", + "cn=Marce Rivest,ou=Management,dc=bitwarden,dc=com", + "cn=Irena Hammermeister,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sotos Bratten,ou=Product Development,dc=bitwarden,dc=com", + "cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden,dc=com", + "cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Elpida Vuignier,ou=Administrative,dc=bitwarden,dc=com", + "cn=Naoma Rowe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pawel Bourget,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Deloria Couser,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Conni Stainback,ou=Peons,dc=bitwarden,dc=com", + "cn=Modesta Huszarik,ou=Administrative,dc=bitwarden,dc=com", + "cn=Reinhold Ribi,ou=Peons,dc=bitwarden,dc=com", + "cn=Loris Grimes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sid Walford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ingrid Kruger,ou=Peons,dc=bitwarden,dc=com", + "cn=Baha Raymond,ou=Administrative,dc=bitwarden,dc=com", + "cn=Raffi Legrove,ou=Management,dc=bitwarden,dc=com", + "cn=Julita Shemwell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pooh Claveau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Haig Zumhagen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Penni Gehring,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Melodie Parham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Violetta Fallah,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shay Molson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Guillema Halicki,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sacto Kao,ou=Peons,dc=bitwarden,dc=com", + "cn=Linh Kishi,ou=Peons,dc=bitwarden,dc=com", + "cn=Careers Caves,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nicolina Kopke,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kristel Credico,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pankaj Clow,ou=Peons,dc=bitwarden,dc=com", + "cn=Radomir Remson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Josefina Parr,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Korie Grooms,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nelson Lytle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Greet Driver,ou=Product Development,dc=bitwarden,dc=com", + "cn=Phillis Pravato,ou=Peons,dc=bitwarden,dc=com", + "cn=Patch Eberlin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Malorie Goos,ou=Janitorial,dc=bitwarden,dc=com", + "cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Effie Pracht,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elza Gillon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Maddy Falletti,ou=Product Development,dc=bitwarden,dc=com", + "cn=Candee DiFalco,ou=Management,dc=bitwarden,dc=com", + "cn=Martynne McCloughan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marris Lobello,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rochell Denmark,ou=Payroll,dc=bitwarden,dc=com", + "cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ngai Michael,ou=Human Resources,dc=bitwarden,dc=com", + "cn=JoLee Fredette,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liv Veedell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Verina Coddington,ou=Product Development,dc=bitwarden,dc=com", + "cn=March Easton,ou=Management,dc=bitwarden,dc=com", + "cn=Jianli Kahhale,ou=Management,dc=bitwarden,dc=com", + "cn=Shamshad Bozicevich,ou=Management,dc=bitwarden,dc=com", + "cn=Renate Kahkonen,ou=Management,dc=bitwarden,dc=com", + "cn=Aile Lugsdin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Warwick Gamarnik,ou=Peons,dc=bitwarden,dc=com", + "cn=Candee Brubaker,ou=Administrative,dc=bitwarden,dc=com", + "cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nashir Tue,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lolita Hanson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Antoinette WPMS,ou=Management,dc=bitwarden,dc=com", + "cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Margaux Rollo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Idell Pung,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tandy Etoh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Twana Schneider,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lari Killeen,ou=Management,dc=bitwarden,dc=com", + "cn=Pars Tigg,ou=Management,dc=bitwarden,dc=com", + "cn=Marjy Botyrius,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sol Trefts,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Leigh Boulerice,ou=Peons,dc=bitwarden,dc=com", + "cn=Harpal Bashton,ou=Management,dc=bitwarden,dc=com", + "cn=Valeda Laliberte,ou=Management,dc=bitwarden,dc=com", + "cn=Winnah Kabel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lecien Bunting,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Blancha TempleDowning,ou=Peons,dc=bitwarden,dc=com", + "cn=Kyla Burton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ronna Faison,ou=Payroll,dc=bitwarden,dc=com", + "cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nel Mohrmann,ou=Peons,dc=bitwarden,dc=com", + "cn=Naresh Kok,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cang Kinamon,ou=Management,dc=bitwarden,dc=com", + "cn=Amalea Snyder,ou=Management,dc=bitwarden,dc=com", + "cn=Caryn Rizk,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Edel AbiAad,ou=Management,dc=bitwarden,dc=com", + "cn=Jey Dufresne,ou=Management,dc=bitwarden,dc=com", + "cn=Kass Lyliston,ou=Peons,dc=bitwarden,dc=com", + "cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gabie Autoquote,ou=Management,dc=bitwarden,dc=com", + "cn=Vina Sebastian,ou=Peons,dc=bitwarden,dc=com", + "cn=Annabella Blasing,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nicolette Spann,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Blancha Bradee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tamarah Solheim,ou=Administrative,dc=bitwarden,dc=com", + "cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cleo Depew,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gordon Galligan,ou=Peons,dc=bitwarden,dc=com", + "cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Terra Brookhart,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden,dc=com", + "cn=Hellen Benzick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jenda Serrano,ou=Peons,dc=bitwarden,dc=com", + "cn=Chrystal Draves,ou=Management,dc=bitwarden,dc=com", + "cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nicola Dallago,ou=Management,dc=bitwarden,dc=com", + "cn=Gisele Zattiero,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nora Hishchak,ou=Peons,dc=bitwarden,dc=com", + "cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Merrili Janelle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Claire Valia,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Farica Horwitz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gregory Bluethner,ou=Peons,dc=bitwarden,dc=com", + "cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liviu Hume,ou=Payroll,dc=bitwarden,dc=com", + "cn=Angelie Heile,ou=Peons,dc=bitwarden,dc=com", + "cn=Tatiania Delage,ou=Peons,dc=bitwarden,dc=com", + "cn=Celisse Murdoch,ou=Management,dc=bitwarden,dc=com", + "cn=NamKiet Phillip,ou=Management,dc=bitwarden,dc=com", + "cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden,dc=com", + "cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden,dc=com", + "cn=Merrili Wierzba,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kittie Gabbai,ou=Peons,dc=bitwarden,dc=com", + "cn=Timi Hendriks,ou=Payroll,dc=bitwarden,dc=com", + "cn=Deana Cargnelli,ou=Management,dc=bitwarden,dc=com", + "cn=Lizzie Petro,ou=Product Development,dc=bitwarden,dc=com", + "cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shyam Johnsen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Valencia Tomlinson,ou=Management,dc=bitwarden,dc=com", + "cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Frederic Scurlock,ou=Administrative,dc=bitwarden,dc=com", + "cn=Guillema McGorman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jenda Ostarello,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rivkah Neywick,ou=Peons,dc=bitwarden,dc=com", + "cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Coursdev Angeli,ou=Peons,dc=bitwarden,dc=com", + "cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dari Ersil,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marjolein Stephens,ou=Product Development,dc=bitwarden,dc=com", + "cn=Doro Vempati,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sono Pokrifcak,ou=Management,dc=bitwarden,dc=com", + "cn=Moniek Bergado,ou=Administrative,dc=bitwarden,dc=com", + "cn=KwokWa Moriarty,ou=Management,dc=bitwarden,dc=com", + "cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sluis Nizman,ou=Management,dc=bitwarden,dc=com", + "cn=Michel Salkini,ou=Payroll,dc=bitwarden,dc=com", + "cn=JoDee Cownie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Germaine Turney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Berenice Yates,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Geoff Catlett,ou=Payroll,dc=bitwarden,dc=com", + "cn=MarieAndree Bour,ou=Peons,dc=bitwarden,dc=com", + "cn=Dixie Gionet,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lyndel Amarsi,ou=Peons,dc=bitwarden,dc=com", + "cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden,dc=com", + "cn=Hulda McDowell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Leil Forrest,ou=Payroll,dc=bitwarden,dc=com", + "cn=Natassia Mallozzi,ou=Management,dc=bitwarden,dc=com", + "cn=Zack Meckler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Isidora Ralph,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ailis Reis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Arvin McWilton,ou=Peons,dc=bitwarden,dc=com", + "cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden,dc=com", + "cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Matti Bruce,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Joel Rynders,ou=Peons,dc=bitwarden,dc=com", + "cn=Stefanie Malle,ou=Administrative,dc=bitwarden,dc=com", + "cn=Yokan Basco,ou=Peons,dc=bitwarden,dc=com", + "cn=Froukje Gionet,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nenad OToole,ou=Payroll,dc=bitwarden,dc=com", + "cn=Aileen Haney,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hannis Flindall,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Anderson Bulan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden,dc=com", + "cn=Denny Bourguignon,ou=Management,dc=bitwarden,dc=com", + "cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden,dc=com", + "cn=Reeva Doherty,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Piyush Holness,ou=Management,dc=bitwarden,dc=com", + "cn=Minette Hazeldine,ou=Payroll,dc=bitwarden,dc=com", + "cn=Haruko Hepburn,ou=Management,dc=bitwarden,dc=com", + "cn=Carlo Mong,ou=Peons,dc=bitwarden,dc=com", + "cn=Oksana Klein,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dimitri Pineau,ou=Peons,dc=bitwarden,dc=com", + "cn=Geri Shabo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Saied Vertolli,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Txp Cummings,ou=Administrative,dc=bitwarden,dc=com", + "cn=Britt Caruth,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kwong Engleman,ou=Management,dc=bitwarden,dc=com", + "cn=Vikki Tzuang,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sickle StJames,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aundrea Yates,ou=Management,dc=bitwarden,dc=com", + "cn=Nam Cuddy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Methi Zoerb,ou=Management,dc=bitwarden,dc=com", + "cn=Elysia Zhong,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kacie Herriotts,ou=Management,dc=bitwarden,dc=com", + "cn=Hermine Fung,ou=Product Development,dc=bitwarden,dc=com", + "cn=Manoj Caterina,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Penny Sim,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Grzegorz Feist,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sadan Spears,ou=Peons,dc=bitwarden,dc=com", + "cn=Peter Grazzini,ou=Management,dc=bitwarden,dc=com", + "cn=Kasifa Bauer,ou=Management,dc=bitwarden,dc=com", + "cn=Milena Hendricksen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Allix Tsui,ou=Peons,dc=bitwarden,dc=com", + "cn=Jenda Cobban,ou=Payroll,dc=bitwarden,dc=com", + "cn=Concettina Linberg,ou=Peons,dc=bitwarden,dc=com", + "cn=Colin Tahir,ou=Peons,dc=bitwarden,dc=com", + "cn=Gates Hesche,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marjie Karp,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dorella Reeder,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shankar Brehm,ou=Management,dc=bitwarden,dc=com", + "cn=Natalee Broadwell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gay Denette,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Leita Malloy,ou=Peons,dc=bitwarden,dc=com", + "cn=Novelia Tigg,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Aeriell Cottrell,ou=Management,dc=bitwarden,dc=com", + "cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nickie Sicard,ou=Product Development,dc=bitwarden,dc=com", + "cn=Con Lampman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tidwell Plssup,ou=Product Development,dc=bitwarden,dc=com", + "cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dwight Goatcher,ou=Product Development,dc=bitwarden,dc=com", + "cn=Germana Easson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rosetta Hatz,ou=Peons,dc=bitwarden,dc=com", + "cn=Chen Karsan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jorie Maltese,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Corilla Filkins,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kassem Chaput,ou=Payroll,dc=bitwarden,dc=com", + "cn=Karl Rombeek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hiren Leinen,ou=Payroll,dc=bitwarden,dc=com", + "cn=My Handforth,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ruby Duffy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ranjit Chaurasia,ou=Management,dc=bitwarden,dc=com", + "cn=Xiaofeng Dach,ou=Management,dc=bitwarden,dc=com", + "cn=Bob Chaddock,ou=Payroll,dc=bitwarden,dc=com", + "cn=Beatrice Costas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hynda Miksik,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jacquie Jablonski,ou=Peons,dc=bitwarden,dc=com", + "cn=Ashok Karol,ou=Management,dc=bitwarden,dc=com", + "cn=Zeljko Goodrow,ou=Management,dc=bitwarden,dc=com", + "cn=ManFai Yearwood,ou=Administrative,dc=bitwarden,dc=com", + "cn=Grazia Ruben,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gee Buechner,ou=Payroll,dc=bitwarden,dc=com", + "cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kial Skillen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Raul Dantu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liuka Awano,ou=Payroll,dc=bitwarden,dc=com", + "cn=Caryl Teder,ou=Management,dc=bitwarden,dc=com", + "cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lex Matheson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jamie Ballard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gaye Telos,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Laz Wilemon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Euphemia Novak,ou=Administrative,dc=bitwarden,dc=com", + "cn=Wini Haverty,ou=Product Development,dc=bitwarden,dc=com", + "cn=Halli Mavis,ou=Management,dc=bitwarden,dc=com", + "cn=WingMan Vesterdal,ou=Peons,dc=bitwarden,dc=com", + "cn=Blithe Keuning,ou=Product Development,dc=bitwarden,dc=com", + "cn=Katya Tracz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Raymond Biggers,ou=Product Development,dc=bitwarden,dc=com", + "cn=Theresita Mashura,ou=Peons,dc=bitwarden,dc=com", + "cn=Joly Dummer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Feng Yeh,ou=Peons,dc=bitwarden,dc=com", + "cn=Robin Martenson,ou=Peons,dc=bitwarden,dc=com", + "cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kara Tarle,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jerzy Benoit,ou=Management,dc=bitwarden,dc=com", + "cn=Abahri Brauer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Baljinder Kowalsky,ou=Management,dc=bitwarden,dc=com", + "cn=Kimberly Chung,ou=Peons,dc=bitwarden,dc=com", + "cn=Shaibal Andrew,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden,dc=com", + "cn=Oralla ENG,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rubina RTP,ou=Payroll,dc=bitwarden,dc=com", + "cn=Orie Larribeau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Brear Hagwood,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Radford Gille,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shina Chari,ou=Peons,dc=bitwarden,dc=com", + "cn=Mariel Yan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bakoury Whitten,ou=Product Development,dc=bitwarden,dc=com", + "cn=Donovan Bedard,ou=Product Development,dc=bitwarden,dc=com", + "cn=Almeria Whitman,ou=Management,dc=bitwarden,dc=com", + "cn=Ardyth Ely,ou=Management,dc=bitwarden,dc=com", + "cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aleen Meckler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Riane Pantages,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Coral Wickes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden,dc=com", + "cn=Dalia Doda,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Suki Currie,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gateway Bain,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Inger Tchir,ou=Payroll,dc=bitwarden,dc=com", + "cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Laraine Arellano,ou=Product Development,dc=bitwarden,dc=com", + "cn=Roana Fulford,ou=Administrative,dc=bitwarden,dc=com", + "cn=Camellia Sheth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fayina Passier,ou=Peons,dc=bitwarden,dc=com", + "cn=Constantia Bielan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sacha Hiller,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Myranda Poff,ou=Product Development,dc=bitwarden,dc=com", + "cn=Victor McDaniel,ou=Management,dc=bitwarden,dc=com", + "cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=James Predon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Alta Bergwerff,ou=Peons,dc=bitwarden,dc=com", + "cn=Keven Abbie,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karia Pintwala,ou=Product Development,dc=bitwarden,dc=com", + "cn=Philly Scharf,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jazmin Hargrow,ou=Management,dc=bitwarden,dc=com", + "cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Misti Ellington,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nevein Quinones,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Devinne McMasters,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carola Eustace,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Thelma Fazel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Arlene Galasso,ou=Product Development,dc=bitwarden,dc=com", + "cn=Andrew Shuman,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Alane Planting,ou=Peons,dc=bitwarden,dc=com", + "cn=Elle Chaddock,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rachael Benchimol,ou=Product Development,dc=bitwarden,dc=com", + "cn=Claresta Ramakrishna,ou=Management,dc=bitwarden,dc=com", + "cn=Ivory Bolon,ou=Peons,dc=bitwarden,dc=com", + "cn=Brenton Buker,ou=Payroll,dc=bitwarden,dc=com", + "cn=Beau Dorion,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lelah Souza,ou=Peons,dc=bitwarden,dc=com", + "cn=Helen Marshman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yvon Uae,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Laten Vartanesian,ou=Product Development,dc=bitwarden,dc=com", + "cn=Susy Kadamani,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Berte Hesk,ou=Product Development,dc=bitwarden,dc=com", + "cn=Joy Willard,ou=Management,dc=bitwarden,dc=com", + "cn=Britte Thorman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Amberly Inscoe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Karole Prints,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ludovico Reinink,ou=Peons,dc=bitwarden,dc=com", + "cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maritsa Mashura,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fern McGuigan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gavin Parr,ou=Peons,dc=bitwarden,dc=com", + "cn=Anthiathia Nie,ou=Management,dc=bitwarden,dc=com", + "cn=Vita Larkin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Madan Enstone,ou=Peons,dc=bitwarden,dc=com", + "cn=Marilyn Wainwright,ou=Peons,dc=bitwarden,dc=com", + "cn=Amanda Tigg,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jermaine Shackley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alev Sunatori,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Juliette Finane,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jessamyn Frampton,ou=Peons,dc=bitwarden,dc=com", + "cn=Norina Piersol,ou=Product Development,dc=bitwarden,dc=com", + "cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Subhra Darby,ou=Janitorial,dc=bitwarden,dc=com", + "cn=AnneLise Krodel,ou=Management,dc=bitwarden,dc=com", + "cn=Bobbi Azevedo,ou=Management,dc=bitwarden,dc=com", + "cn=Vikki Tu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Message Armstrong,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maury Este,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Noel Mitrani,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shaib Codata,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tiffy Youngman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Terese VanHulst,ou=Peons,dc=bitwarden,dc=com", + "cn=Brigitta Southon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ashlan Nyce,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alasdair Huether,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rakesh Izzotti,ou=Management,dc=bitwarden,dc=com", + "cn=Irish Gaither,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Verlyn Farah,ou=Peons,dc=bitwarden,dc=com", + "cn=Rana Schartmann,ou=Peons,dc=bitwarden,dc=com", + "cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden,dc=com", + "cn=XuanLien Harms,ou=Management,dc=bitwarden,dc=com", + "cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Regine Danforth,ou=Management,dc=bitwarden,dc=com", + "cn=Adda Gutcher,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hpone Croxall,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ailee McCauley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nadya Finucane,ou=Management,dc=bitwarden,dc=com", + "cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brita Digenova,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jami Franze,ou=Peons,dc=bitwarden,dc=com", + "cn=Mariele Barnhart,ou=Management,dc=bitwarden,dc=com", + "cn=Jacalyn Jawor,ou=Management,dc=bitwarden,dc=com", + "cn=National Gahunia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Retha Spallin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Estrella Benner,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Thomasina Kling,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jaan Lian,ou=Peons,dc=bitwarden,dc=com", + "cn=Carola Osatuik,ou=Management,dc=bitwarden,dc=com", + "cn=Fifine Roussin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mariam Markmeyer,ou=Management,dc=bitwarden,dc=com", + "cn=Randall Chalker,ou=Peons,dc=bitwarden,dc=com", + "cn=Anki Harriett,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Teena Pufpaff,ou=Management,dc=bitwarden,dc=com", + "cn=Dalip Horak,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tamarra Grassmann,ou=Peons,dc=bitwarden,dc=com", + "cn=Arun Adolfie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lettie Janelle,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden,dc=com", + "cn=Huib Kayle,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vicki Streibel,ou=Management,dc=bitwarden,dc=com", + "cn=Ingeberg Gomm,ou=Peons,dc=bitwarden,dc=com", + "cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorianna Windom,ou=Peons,dc=bitwarden,dc=com", + "cn=Tamera Meyer,ou=Peons,dc=bitwarden,dc=com", + "cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Corliss Chenard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rheba Castelloe,ou=Peons,dc=bitwarden,dc=com", + "cn=Marijke Bielby,ou=Management,dc=bitwarden,dc=com", + "cn=Steen Carpool,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marigold Girgis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tdr Gavidia,ou=Administrative,dc=bitwarden,dc=com", + "cn=Judith Charbonneau,ou=Product Development,dc=bitwarden,dc=com", + "cn=Katerine Manners,ou=Management,dc=bitwarden,dc=com", + "cn=Tasha Netdev,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ken Shiue,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tc Hayman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Corry Johnston,ou=Management,dc=bitwarden,dc=com", + "cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Farag Rogge,ou=Product Development,dc=bitwarden,dc=com", + "cn=Scot Santitoro,ou=Payroll,dc=bitwarden,dc=com", + "cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Micah Goheen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kasey Primeau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Frankie Nesbitt,ou=Management,dc=bitwarden,dc=com", + "cn=Fran Visockis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Prudence Deugau,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elbert Figura,ou=Peons,dc=bitwarden,dc=com", + "cn=Dorian Kingzett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Camila Wilhoit,ou=Management,dc=bitwarden,dc=com", + "cn=Wannell Klapper,ou=Product Development,dc=bitwarden,dc=com", + "cn=Brynne Hiers,ou=Peons,dc=bitwarden,dc=com", + "cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Barbi Hebbar,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden,dc=com", + "cn=Panch Golka,ou=Payroll,dc=bitwarden,dc=com", + "cn=Freya Seagraves,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Makary Pulver,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carmela Voitel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nonah Ledet,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marti Mac,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maxi Isaac,ou=Administrative,dc=bitwarden,dc=com", + "cn=Orlyn Eros,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Amandi Twiss,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Carolyne Delmar,ou=Peons,dc=bitwarden,dc=com", + "cn=Los Barbeau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fung Godwin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Coreen Underwood,ou=Product Development,dc=bitwarden,dc=com", + "cn=Inquire Morse,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roby Kalyani,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Leena OKelly,ou=Peons,dc=bitwarden,dc=com", + "cn=Joli Gavidia,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gint Cioffi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chelsea Arvin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Allix Closson,ou=Management,dc=bitwarden,dc=com", + "cn=Ortensia Renwick,ou=Payroll,dc=bitwarden,dc=com", + "cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Megumi Lipski,ou=Peons,dc=bitwarden,dc=com", + "cn=Tulip Jeanes,ou=Peons,dc=bitwarden,dc=com", + "cn=Meg Kuechler,ou=Peons,dc=bitwarden,dc=com", + "cn=Severin Sridaran,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rivalee Markes,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gus Darcie,ou=Management,dc=bitwarden,dc=com", + "cn=Farah Fiorile,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jagjit Orr,ou=Payroll,dc=bitwarden,dc=com", + "cn=Allyce Maduri,ou=Product Development,dc=bitwarden,dc=com", + "cn=Padma Mannion,ou=Administrative,dc=bitwarden,dc=com", + "cn=Armin Balogh,ou=Management,dc=bitwarden,dc=com", + "cn=Weiping Schneider,ou=Management,dc=bitwarden,dc=com", + "cn=Wakako Schneider,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aubrey Worsley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden,dc=com", + "cn=Didar Chakravarti,ou=Peons,dc=bitwarden,dc=com", + "cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ninetta Pullum,ou=Peons,dc=bitwarden,dc=com", + "cn=Suki Marrec,ou=Peons,dc=bitwarden,dc=com", + "cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ian Locicero,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Modestia Prado,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Linette Hoxie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Christi Silverstone,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gertie Stough,ou=Product Development,dc=bitwarden,dc=com", + "cn=Christy Mazurek,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Fikre Vieiro,ou=Product Development,dc=bitwarden,dc=com", + "cn=Leila Mullett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Irina Holinski,ou=Peons,dc=bitwarden,dc=com", + "cn=Kari Denmark,ou=Product Development,dc=bitwarden,dc=com", + "cn=Inge Valenziano,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Denis Khurana,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marice Klug,ou=Product Development,dc=bitwarden,dc=com", + "cn=Denver Welling,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Windowing Lukic,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sig Mistry,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kathe Rohan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kristie Valente,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maiga Burdick,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Manh Malee,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Benita Rosvick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Serban Gerard,ou=Management,dc=bitwarden,dc=com", + "cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden,dc=com", + "cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Condell Sorensen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden,dc=com", + "cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden,dc=com", + "cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden,dc=com", + "cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden,dc=com", + "cn=Giang Hildum,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Loise Prasad,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ronnie Hillson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gavra Sokolowski,ou=Peons,dc=bitwarden,dc=com", + "cn=Candy Husain,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alvin Shwed,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kenna Marui,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aleta Gargul,ou=Peons,dc=bitwarden,dc=com", + "cn=Mani Khatod,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Trixy Palik,ou=Management,dc=bitwarden,dc=com", + "cn=Dimitri Reese,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rosamond McEachern,ou=Management,dc=bitwarden,dc=com", + "cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Augustin Bayne,ou=Management,dc=bitwarden,dc=com", + "cn=Corkstown Beattie,ou=Product Development,dc=bitwarden,dc=com", + "cn=Prudence Fickes,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lavina Cirulli,ou=Peons,dc=bitwarden,dc=com", + "cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tiertza Korea,ou=Peons,dc=bitwarden,dc=com", + "cn=Javed Collecutt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Adrianna Shypski,ou=Peons,dc=bitwarden,dc=com", + "cn=Susanne Denison,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lilian Rickborn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Remy Blackwood,ou=Product Development,dc=bitwarden,dc=com", + "cn=Beret Cemensky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bel Browning,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lula Communications,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ronn Turbyfill,ou=Peons,dc=bitwarden,dc=com", + "cn=Cindy Deol,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marjory Ranahan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Winona Baccari,ou=Peons,dc=bitwarden,dc=com", + "cn=Veda Gaines,ou=Management,dc=bitwarden,dc=com", + "cn=Anup Mundi,ou=Peons,dc=bitwarden,dc=com", + "cn=Alyce Felli,ou=Payroll,dc=bitwarden,dc=com", + "cn=Janet Ludchen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Noubar Novotny,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Starlin Joe,ou=Administrative,dc=bitwarden,dc=com", + "cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden,dc=com", + "cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Devora Pde,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darya McGeown,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dnsproj Walles,ou=Peons,dc=bitwarden,dc=com", + "cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden,dc=com", + "cn=Norma Lepine,ou=Peons,dc=bitwarden,dc=com", + "cn=Brandy Verma,ou=Management,dc=bitwarden,dc=com", + "cn=Blanch Virk,ou=Management,dc=bitwarden,dc=com", + "cn=Viviana Waucheul,ou=Management,dc=bitwarden,dc=com", + "cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brittani Menasce,ou=Payroll,dc=bitwarden,dc=com", + "cn=Khalil Mincey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shedman Jakim,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Reba Chadha,ou=Management,dc=bitwarden,dc=com", + "cn=Ailey Randall,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dino Dangubic,ou=Management,dc=bitwarden,dc=com", + "cn=Marlies Ortiz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Uri Neufeld,ou=Peons,dc=bitwarden,dc=com", + "cn=Loralee McDunn,ou=Management,dc=bitwarden,dc=com", + "cn=Caridad Sawada,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Willis Shelley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pauletta Weakley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nanni Taul,ou=Management,dc=bitwarden,dc=com", + "cn=Neetu Jeng,ou=Management,dc=bitwarden,dc=com", + "cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aimee Poma,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mer Mayes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alisa Rogan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden,dc=com", + "cn=Penni Yim,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Melessa Vuong,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anni Blander,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lesli Hassan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marthena Holleran,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Josi Management,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Elga Conlon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Francesca Boyd,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden,dc=com", + "cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marit Ahlers,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Donovan Rega,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elli Bourdignon,ou=Peons,dc=bitwarden,dc=com", + "cn=Haily Mo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mohammed Minai,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kirit Storrie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jenn Bennison,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Durantaye Molson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Viola Devouges,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden,dc=com", + "cn=Palme Boose,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zarah Doriot,ou=Peons,dc=bitwarden,dc=com", + "cn=Eirik McCray,ou=Management,dc=bitwarden,dc=com", + "cn=Brennan Saito,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bambie Borel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Devonne Salkini,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bawn Straub,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jojo Peart,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marieke Deibert,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ginelle Couture,ou=Management,dc=bitwarden,dc=com", + "cn=Gnni Podolski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Uunko Kodsi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sharline Tullius,ou=Management,dc=bitwarden,dc=com", + "cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shoeb Scales,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nissa Twarog,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hrinfo Popel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anallese Dressler,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fredra Skillen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shafique Behrens,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ross Saravanos,ou=Product Testing,dc=bitwarden,dc=com", + "cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Albertine Dorey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Junia Kun,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden,dc=com", + "cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rey Galvin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kentaro Prada,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Caro Roithmaier,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cassondra Rollin,ou=Management,dc=bitwarden,dc=com", + "cn=Kiet Kantor,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gilemette Grubbs,ou=Peons,dc=bitwarden,dc=com", + "cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden,dc=com", + "cn=Calida Knudsen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bendite Costelloe,ou=Product Development,dc=bitwarden,dc=com", + "cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden,dc=com", + "cn=Desirae Tye,ou=Administrative,dc=bitwarden,dc=com", + "cn=Yong Papalitskas,ou=Peons,dc=bitwarden,dc=com", + "cn=Orsola Shieff,ou=Product Development,dc=bitwarden,dc=com", + "cn=Meade Lindler,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Canadian Gass,ou=Product Development,dc=bitwarden,dc=com", + "cn=Liping Woll,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dwaine Oka,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jed Colbourne,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pammi Crucefix,ou=Management,dc=bitwarden,dc=com", + "cn=Joelle Vardy,ou=Peons,dc=bitwarden,dc=com", + "cn=Wenona Angerer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Arjun Passier,ou=Peons,dc=bitwarden,dc=com", + "cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kas Breedlove,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hoog Trinidad,ou=Peons,dc=bitwarden,dc=com", + "cn=Jesselyn Lindholm,ou=Management,dc=bitwarden,dc=com", + "cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Claude Sylvie,ou=Peons,dc=bitwarden,dc=com", + "cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden,dc=com", + "cn=Matelda Wrigley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Emil Kaden,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wing Miranda,ou=Product Development,dc=bitwarden,dc=com", + "cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden,dc=com", + "cn=Goldina Kho,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sidoney Dugas,ou=Administrative,dc=bitwarden,dc=com", + "cn=Alis Tu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nawa Higgins,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nataly McHale,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sabuson Keels,ou=Administrative,dc=bitwarden,dc=com", + "cn=Katrina Caltrider,ou=Management,dc=bitwarden,dc=com", + "cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Damon Bakhach,ou=Peons,dc=bitwarden,dc=com", + "cn=Nevein Paar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eliezer Mendorf,ou=Management,dc=bitwarden,dc=com", + "cn=Saree Salva,ou=Product Testing,dc=bitwarden,dc=com", + "cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mary Bayno,ou=Payroll,dc=bitwarden,dc=com", + "cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Arnie McMillion,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden,dc=com", + "cn=Salaidh Wery,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hq Bracy,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Philippa Sanson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", + "cn=Karrah Kielstra,ou=Management,dc=bitwarden,dc=com", + "cn=Saloma Brauer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cheuk Mayr,ou=Management,dc=bitwarden,dc=com", + "cn=Verene Misslitz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Doe Codack,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lowell Seufert,ou=Administrative,dc=bitwarden,dc=com", + "cn=Willa Unkefer,ou=Peons,dc=bitwarden,dc=com", + "cn=Bep Wassel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yuri McCullen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Genevieve Licata,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Stacia Mersch,ou=Management,dc=bitwarden,dc=com", + "cn=Opal Tatemichi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nash Hemphill,ou=Administrative,dc=bitwarden,dc=com", + "cn=Amir McKillop,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nam Nentwich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden,dc=com", + "cn=Arvin Gourley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amara Wichers,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ellen Dada,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gunilla Katz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Core Herrick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jack Predon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marc Pestill,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eadie Jamensky,ou=Peons,dc=bitwarden,dc=com", + "cn=Corenda MacLaren,ou=Management,dc=bitwarden,dc=com", + "cn=Duy Starnes,ou=Management,dc=bitwarden,dc=com", + "cn=Milan Retallack,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zarella Sauck,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nathalia Testsds,ou=Administrative,dc=bitwarden,dc=com", + "cn=Florette Nttest,ou=Management,dc=bitwarden,dc=com", + "cn=Dari OConnor,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tracie Jenner,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mot Stirling,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yodha Bui,ou=Payroll,dc=bitwarden,dc=com", + "cn=Clifton Murphyking,ou=Product Development,dc=bitwarden,dc=com", + "cn=HonKong Drago,ou=Product Development,dc=bitwarden,dc=com", + "cn=Greer Popowicz,ou=Management,dc=bitwarden,dc=com", + "cn=Asia Schuette,ou=Product Development,dc=bitwarden,dc=com", + "cn=Barbette Stotz,ou=Peons,dc=bitwarden,dc=com", + "cn=Joyann Lun,ou=Peons,dc=bitwarden,dc=com", + "cn=Caz Brunato,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sorin Dipper,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bucklin OKarina,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tuan Pannell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Neda Reece,ou=Product Development,dc=bitwarden,dc=com", + "cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden,dc=com", + "cn=Audrey US,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dona Sudan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mahendra Puett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Evangelia Kusan,ou=Peons,dc=bitwarden,dc=com", + "cn=Mead Bielan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Damara Bertrand,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sarah Kardos,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Odele Mahiger,ou=Peons,dc=bitwarden,dc=com", + "cn=Salah Poe,ou=Peons,dc=bitwarden,dc=com", + "cn=Garry Sterescu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Takehiko Magnan,ou=Management,dc=bitwarden,dc=com", + "cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Loraine Giese,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ilya Mackey,ou=Management,dc=bitwarden,dc=com", + "cn=Clari Wahab,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nichol Etten,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Clayton Sridaran,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marijke Ervi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tally Pirkle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Haste Katcher,ou=Product Development,dc=bitwarden,dc=com", + "cn=Norstar Lipski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hedi Konarski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kwing DeStefani,ou=Payroll,dc=bitwarden,dc=com", + "cn=Helma Ramsden,ou=Administrative,dc=bitwarden,dc=com", + "cn=Joanna Aimone,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leon Epplett,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bobby Frink,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rob Milinkovich,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lexie Thorsen,ou=Management,dc=bitwarden,dc=com", + "cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carlene Grignon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Russ Battersby,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Andrew Thifault,ou=Product Development,dc=bitwarden,dc=com", + "cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Celinda Krisa,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fawnia Starks,ou=Management,dc=bitwarden,dc=com", + "cn=Prissie Schieber,ou=Peons,dc=bitwarden,dc=com", + "cn=Lyn Yuhn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Joellyn Montelli,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vanny Fenton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rosabella Mathis,ou=Peons,dc=bitwarden,dc=com", + "cn=Celestine Demir,ou=Payroll,dc=bitwarden,dc=com", + "cn=Charlena Mirande,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bennett Marting,ou=Peons,dc=bitwarden,dc=com", + "cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Analiese Steene,ou=Payroll,dc=bitwarden,dc=com", + "cn=Janine Stirrett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wiele Rowan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Maia Reva,ou=Management,dc=bitwarden,dc=com", + "cn=Tian Beeby,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nazib Schembri,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cammy Shumate,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rianon Schick,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Viole Areu,ou=Product Development,dc=bitwarden,dc=com", + "cn=Brigitta Piper,ou=Product Development,dc=bitwarden,dc=com", + "cn=Melly Kelkar,ou=Management,dc=bitwarden,dc=com", + "cn=Maritsa McCain,ou=Product Development,dc=bitwarden,dc=com", + "cn=Melissa Griffioen,ou=Management,dc=bitwarden,dc=com", + "cn=Tak Sebeh,ou=Peons,dc=bitwarden,dc=com", + "cn=Vittorio Muradia,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jonell McElligott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jey Pau,ou=Administrative,dc=bitwarden,dc=com", + "cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jillane Metz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Parveen Burnage,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Martine Gilliard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden,dc=com", + "cn=Shaji Langelier,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Manny Nolan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vrinda Keuning,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aile StOnge,ou=Management,dc=bitwarden,dc=com", + "cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden,dc=com", + "cn=Helge Bowyer,ou=Peons,dc=bitwarden,dc=com", + "cn=Norbert Missailidis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Letizia Quon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Haily Lamothe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alie Staats,ou=Management,dc=bitwarden,dc=com", + "cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden,dc=com", + "cn=Corry Brewer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hanja Godwin,ou=Peons,dc=bitwarden,dc=com", + "cn=Brianna Hien,ou=Product Development,dc=bitwarden,dc=com", + "cn=Evy Raing,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rebekah Siegel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Brekel Silverstone,ou=Administrative,dc=bitwarden,dc=com", + "cn=Harm Mehta,ou=Product Development,dc=bitwarden,dc=com", + "cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jae Caudill,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hilde Hibberd,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tres Nyland,ou=Management,dc=bitwarden,dc=com", + "cn=Bettye Moynihan,ou=Peons,dc=bitwarden,dc=com", + "cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shahriar Trull,ou=Peons,dc=bitwarden,dc=com", + "cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Edyta Hargadon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marris Hameed,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aurelia Raynard,ou=Management,dc=bitwarden,dc=com", + "cn=Rivi Ludwig,ou=Management,dc=bitwarden,dc=com", + "cn=Isadora Vaters,ou=Payroll,dc=bitwarden,dc=com", + "cn=Elana Moy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Helaine Salamon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Briney Smithson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Selva Hillidge,ou=Payroll,dc=bitwarden,dc=com", + "cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden,dc=com", + "cn=Parks Pavitt,ou=Payroll,dc=bitwarden,dc=com", + "cn=Design Pepler,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shahram Dpierre,ou=Peons,dc=bitwarden,dc=com", + "cn=Sylvain Dans,ou=Peons,dc=bitwarden,dc=com", + "cn=Phuoc Vu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Candide Elhamahmy,ou=Management,dc=bitwarden,dc=com", + "cn=Sarine Hopley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Velma Brasset,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Clemmie Brower,ou=Product Development,dc=bitwarden,dc=com", + "cn=Drudy Badger,ou=Product Development,dc=bitwarden,dc=com", + "cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kimmy Nagaraj,ou=Management,dc=bitwarden,dc=com", + "cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Torrie Lai,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bryon Bannister,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Melford Charter,ou=Administrative,dc=bitwarden,dc=com", + "cn=Meriel Tota,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden,dc=com", + "cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darrel Samora,ou=Management,dc=bitwarden,dc=com", + "cn=Gabi Fares,ou=Peons,dc=bitwarden,dc=com", + "cn=Bao Byrd,ou=Management,dc=bitwarden,dc=com", + "cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wilf Rodenfels,ou=Peons,dc=bitwarden,dc=com", + "cn=Jeri Gupton,ou=Product Development,dc=bitwarden,dc=com", + "cn=Didar Brooksbank,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cathe Malone,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Evey Haddad,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ginette Smoot,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dorita Heffner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Reind Mufti,ou=Management,dc=bitwarden,dc=com", + "cn=Carolynn Dikens,ou=Payroll,dc=bitwarden,dc=com", + "cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lurleen Eberle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tandy Fssup,ou=Peons,dc=bitwarden,dc=com", + "cn=Datas Simmonds,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darline Frankenberger,ou=Management,dc=bitwarden,dc=com", + "cn=Merry Cadtools,ou=Payroll,dc=bitwarden,dc=com", + "cn=Chabane Hornung,ou=Peons,dc=bitwarden,dc=com", + "cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Colm Yassa,ou=Peons,dc=bitwarden,dc=com", + "cn=Jillayne Cobb,ou=Peons,dc=bitwarden,dc=com", + "cn=Ruby Brotherton,ou=Peons,dc=bitwarden,dc=com", + "cn=Marjie Geyer,ou=Product Development,dc=bitwarden,dc=com", + "cn=McGee Schreiber,ou=Peons,dc=bitwarden,dc=com", + "cn=Myrna Befanis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maurine StJames,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ebony DuBerger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Donnette Leighton,ou=Management,dc=bitwarden,dc=com", + "cn=Daryl Broca,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cristabel Orth,ou=Peons,dc=bitwarden,dc=com", + "cn=Constantia Lundy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shashi Amini,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leola Richard,ou=Management,dc=bitwarden,dc=com", + "cn=Jai Pascas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Petronille Receiving,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sidonia Badza,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Career Culkin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aubrey Mina,ou=Peons,dc=bitwarden,dc=com", + "cn=Wilhelmus Mandel,ou=Management,dc=bitwarden,dc=com", + "cn=Anya Kantor,ou=Product Testing,dc=bitwarden,dc=com", + "cn=National MacCarthy,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nissie Heile,ou=Management,dc=bitwarden,dc=com", + "cn=Pac Popowycz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Blancha Cousineau,ou=Peons,dc=bitwarden,dc=com", + "cn=Harper McWaters,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Adorne Bejar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lenee Marasco,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Reggi Hor,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Andres Williford,ou=Management,dc=bitwarden,dc=com", + "cn=Kwan Devault,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lionel Reinlie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gunter Glidewell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nick Brewer,ou=Peons,dc=bitwarden,dc=com", + "cn=Josefa Kilburn,ou=Management,dc=bitwarden,dc=com", + "cn=Cindy Oestreich,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pia Turchan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Louisa Ryall,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cherry Tennant,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Paul Rafael,ou=Management,dc=bitwarden,dc=com", + "cn=Glornia Cicchino,ou=Product Development,dc=bitwarden,dc=com", + "cn=Annalee Terminals,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dave Salehi,ou=Peons,dc=bitwarden,dc=com", + "cn=Wendy Slattery,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Previn Hirayama,ou=Payroll,dc=bitwarden,dc=com", + "cn=Evvy Barsony,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hollie Lawton,ou=Management,dc=bitwarden,dc=com", + "cn=Dacie Doi,ou=Management,dc=bitwarden,dc=com", + "cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hall Twitty,ou=Peons,dc=bitwarden,dc=com", + "cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tien Ferraro,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorine Metrailer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Heidie ElAm,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nyssa Australia,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Melford Ashdown,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rowe McHarg,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden,dc=com", + "cn=Rasla ODoherty,ou=Management,dc=bitwarden,dc=com", + "cn=Felicle Ramondt,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jasver Jurman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anderea Albritton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alana Melkild,ou=Management,dc=bitwarden,dc=com", + "cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Orie Kellogg,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Liva McMasters,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kiah Chandan,ou=Peons,dc=bitwarden,dc=com", + "cn=Vipi Bladon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dan Yost,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ivo Dziawa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vahid Routing,ou=Administrative,dc=bitwarden,dc=com", + "cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marianna Wray,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sunning Spence,ou=Management,dc=bitwarden,dc=com", + "cn=Cart Pyron,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nashville Venier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Glenn Salem,ou=Management,dc=bitwarden,dc=com", + "cn=Raman Smolin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marin Mokbel,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rici Plasse,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anup Klammer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ninon Starr,ou=Peons,dc=bitwarden,dc=com", + "cn=Atul Orth,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tung Lazar,ou=Management,dc=bitwarden,dc=com", + "cn=Conchita Raley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Steen Meyer,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ingunna Zollman,ou=Administrative,dc=bitwarden,dc=com", + "cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Winnie Goss,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dori Myatt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Beb Jammu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Reno Raines,ou=Payroll,dc=bitwarden,dc=com", + "cn=Delilah Praeuner,ou=Peons,dc=bitwarden,dc=com", + "cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Christiane Wanner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sada Polulack,ou=Payroll,dc=bitwarden,dc=com", + "cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shauna Caputo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hrdata Placido,ou=Product Development,dc=bitwarden,dc=com", + "cn=Belvia Raissian,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Odette Swiatkowski,ou=Management,dc=bitwarden,dc=com", + "cn=Richelle Thorne,ou=Management,dc=bitwarden,dc=com", + "cn=Jacques Bhatia,ou=Peons,dc=bitwarden,dc=com", + "cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Houman Levere,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden,dc=com", + "cn=Doloritas Adams,ou=Management,dc=bitwarden,dc=com", + "cn=Starr Selent,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Doria Sherrill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Maire Follett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ying Schulze,ou=Management,dc=bitwarden,dc=com", + "cn=Samual Franzky,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nert Bombardier,ou=Product Development,dc=bitwarden,dc=com", + "cn=Catherine Hite,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ilyse Mueller,ou=Product Development,dc=bitwarden,dc=com", + "cn=Stephenie Brennen,ou=Management,dc=bitwarden,dc=com", + "cn=Normand Hussein,ou=Peons,dc=bitwarden,dc=com", + "cn=Greta Vilayil,ou=Product Development,dc=bitwarden,dc=com", + "cn=Siana Letsome,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cosola Steene,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cooney Momon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Julie Dinalic,ou=Product Development,dc=bitwarden,dc=com", + "cn=Manya Mukherjee,ou=Peons,dc=bitwarden,dc=com", + "cn=Evans Letsome,ou=Management,dc=bitwarden,dc=com", + "cn=Silvana Filpus,ou=Human Resources,dc=bitwarden,dc=com", + "cn=YauFun Poindexter,ou=Administrative,dc=bitwarden,dc=com", + "cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Emmy Blissett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Blanche VanKast,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Merry Aderhold,ou=Peons,dc=bitwarden,dc=com", + "cn=Gwenni Marren,ou=Management,dc=bitwarden,dc=com", + "cn=Allys Akita,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Marris Fanchi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bryna McMann,ou=Peons,dc=bitwarden,dc=com", + "cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Clayton Lychak,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden,dc=com", + "cn=Abe Parton,ou=Peons,dc=bitwarden,dc=com", + "cn=Felice Kaehler,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jacenta Sztein,ou=Management,dc=bitwarden,dc=com", + "cn=Sonja Hoag,ou=Payroll,dc=bitwarden,dc=com", + "cn=Manmohan MacAdams,ou=Peons,dc=bitwarden,dc=com", + "cn=Cathe Bejar,ou=Peons,dc=bitwarden,dc=com", + "cn=Tape Vandervelde,ou=Administrative,dc=bitwarden,dc=com", + "cn=Adria Leger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Modesty Quinlan,ou=Management,dc=bitwarden,dc=com", + "cn=Jawaid Upton,ou=Management,dc=bitwarden,dc=com", + "cn=Trevor Vradmin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Helena Pellizzari,ou=Peons,dc=bitwarden,dc=com", + "cn=MunHang Salinas,ou=Janitorial,dc=bitwarden,dc=com", + "cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Delcina Forbes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Norene Tarver,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Angie Leiba,ou=Management,dc=bitwarden,dc=com", + "cn=Ernest Welker,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Fitzgerald Kabel,ou=Management,dc=bitwarden,dc=com", + "cn=Zaven Bethune,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aridatha Flindall,ou=Management,dc=bitwarden,dc=com", + "cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kipp Aubuchon,ou=Management,dc=bitwarden,dc=com", + "cn=Daile Id,ou=Payroll,dc=bitwarden,dc=com", + "cn=Shea Lashmit,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Stuart Murdock,ou=Payroll,dc=bitwarden,dc=com", + "cn=Adrianna Ness,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vanity Penland,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Denzil Willenbring,ou=Administrative,dc=bitwarden,dc=com", + "cn=Erna Stephen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=MarieAndree Ness,ou=Management,dc=bitwarden,dc=com", + "cn=LouisRene Borozny,ou=Payroll,dc=bitwarden,dc=com", + "cn=Donetta Grabowski,ou=Peons,dc=bitwarden,dc=com", + "cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Henk Crick,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ineke Haig,ou=Payroll,dc=bitwarden,dc=com", + "cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Felipa Catlett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kathye Ledou,ou=Management,dc=bitwarden,dc=com", + "cn=Pawel Pippin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Godiva Pesik,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Evelina Mapile,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pammy Rogers,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pas Giles,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marietta CamelToueg,ou=Management,dc=bitwarden,dc=com", + "cn=Rico Meachum,ou=Management,dc=bitwarden,dc=com", + "cn=Venkat Marrone,ou=Administrative,dc=bitwarden,dc=com", + "cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Elwood Gould,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden,dc=com", + "cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Darrel Hoch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Eunice Gerhart,ou=Management,dc=bitwarden,dc=com", + "cn=Karena Gunasekera,ou=Administrative,dc=bitwarden,dc=com", + "cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Charmine Izzo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nicolea Fagan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Huyen Nashville,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden,dc=com", + "cn=Myrtia Closson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ioana Jenner,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leon Bays,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ulf Cotner,ou=Peons,dc=bitwarden,dc=com", + "cn=Jinann Hassey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bevvy Huot,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Coord Cadd,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Envoy Lesway,ou=Peons,dc=bitwarden,dc=com", + "cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maybelle Brannon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lrc Blaiklock,ou=Peons,dc=bitwarden,dc=com", + "cn=Abu Melucci,ou=Management,dc=bitwarden,dc=com", + "cn=Hedwiga Personna,ou=Administrative,dc=bitwarden,dc=com", + "cn=Osmond Usyk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ilona Schoch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kieron Bouick,ou=Management,dc=bitwarden,dc=com", + "cn=Hettie Gruber,ou=Peons,dc=bitwarden,dc=com", + "cn=Farzin Hilaire,ou=Management,dc=bitwarden,dc=com", + "cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jaimie Valin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Meggy Fajardo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lyda Sym,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alia Lucente,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carline Klotz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marilin Boylan,ou=Management,dc=bitwarden,dc=com", + "cn=Mustapha Noles,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Brandais Cullum,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vradmin Lough,ou=Product Development,dc=bitwarden,dc=com", + "cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Laser Lennig,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wren Gopaul,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Whitney Inoue,ou=Product Development,dc=bitwarden,dc=com", + "cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karlee Weyand,ou=Management,dc=bitwarden,dc=com", + "cn=Fox Richmond,ou=Product Development,dc=bitwarden,dc=com", + "cn=Patrick Perreault,ou=Peons,dc=bitwarden,dc=com", + "cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden,dc=com", + "cn=Saloma Turbes,ou=Peons,dc=bitwarden,dc=com", + "cn=Tiffy Klammer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sonbol Portz,ou=Product Development,dc=bitwarden,dc=com", + "cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darko Gawdan,ou=Peons,dc=bitwarden,dc=com", + "cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dodie Starr,ou=Management,dc=bitwarden,dc=com", + "cn=Britt Bivens,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hanh Sohns,ou=Administrative,dc=bitwarden,dc=com", + "cn=Friederike Awano,ou=Product Development,dc=bitwarden,dc=com", + "cn=Franki Nassr,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sheridan Arcouet,ou=Peons,dc=bitwarden,dc=com", + "cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shoeb McCrimmon,ou=Management,dc=bitwarden,dc=com", + "cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sherline Morreale,ou=Product Development,dc=bitwarden,dc=com", + "cn=Emilia Tisdale,ou=Product Development,dc=bitwarden,dc=com", + "cn=Reinhold Shumate,ou=Peons,dc=bitwarden,dc=com", + "cn=Tatyana Packard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gloriana Vendette,ou=Peons,dc=bitwarden,dc=com", + "cn=Consuela Ravi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sioux Langlois,ou=Payroll,dc=bitwarden,dc=com", + "cn=Olympia Lieure,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cad Thorley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ryoung Moeschet,ou=Peons,dc=bitwarden,dc=com", + "cn=Jorry Freno,ou=Payroll,dc=bitwarden,dc=com", + "cn=Amandie Cottengim,ou=Peons,dc=bitwarden,dc=com", + "cn=Bran MacNeil,ou=Management,dc=bitwarden,dc=com", + "cn=Eladio Strudwick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cleveland Jagla,ou=Payroll,dc=bitwarden,dc=com", + "cn=Julien Osterberg,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Frederika Brower,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Timmi Bascombe,ou=Management,dc=bitwarden,dc=com", + "cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Milicent Frondozo,ou=Management,dc=bitwarden,dc=com", + "cn=Danell Silang,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Baljinder StJohn,ou=Product Development,dc=bitwarden,dc=com", + "cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Joannah Gendre,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zero Strickland,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lujanka Turner,ou=Administrative,dc=bitwarden,dc=com", + "cn=Trish Meissner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Han Hermes,ou=Management,dc=bitwarden,dc=com", + "cn=Annamaria Daly,ou=Payroll,dc=bitwarden,dc=com", + "cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden,dc=com", + "cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Roger Latella,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Korney Blevins,ou=Product Development,dc=bitwarden,dc=com", + "cn=Elsey Meckley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jill Langton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Peg Arnott,ou=Peons,dc=bitwarden,dc=com", + "cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lotta Witkowski,ou=Peons,dc=bitwarden,dc=com", + "cn=TunLin Dickerson,ou=Peons,dc=bitwarden,dc=com", + "cn=Sile Golczewski,ou=Product Development,dc=bitwarden,dc=com", + "cn=Joshi Formagie,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Penni Marzullo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maible Blauer,ou=Management,dc=bitwarden,dc=com", + "cn=Fawne Fanthome,ou=Administrative,dc=bitwarden,dc=com", + "cn=Brinna Spraggins,ou=Peons,dc=bitwarden,dc=com", + "cn=Misbah FWPtools,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shona Keck,ou=Peons,dc=bitwarden,dc=com", + "cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Doe Digenova,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Edel Huliganga,ou=Payroll,dc=bitwarden,dc=com", + "cn=Miquela Khosla,ou=Management,dc=bitwarden,dc=com", + "cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Butch Gewell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mindy Wealch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Petri Quintero,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Windowing Feyen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Charlotta Demarest,ou=Payroll,dc=bitwarden,dc=com", + "cn=Honey Badjari,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nady Kness,ou=Peons,dc=bitwarden,dc=com", + "cn=Magdaia Pagi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Peri Morden,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Avie Moores,ou=Peons,dc=bitwarden,dc=com", + "cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden,dc=com", + "cn=Schell Wendling,ou=Peons,dc=bitwarden,dc=com", + "cn=Reynold Labiche,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vince Bulger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nedi England,ou=Administrative,dc=bitwarden,dc=com", + "cn=Field Ueyama,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Mina ODonnell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rubie Suddarth,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fanchette Felli,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dorry Livshits,ou=Payroll,dc=bitwarden,dc=com", + "cn=Merle Turchan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Achal Blann,ou=Peons,dc=bitwarden,dc=com", + "cn=Marty Barr,ou=Management,dc=bitwarden,dc=com", + "cn=Lilin Tisdall,ou=Peons,dc=bitwarden,dc=com", + "cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Camille Seddigh,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Manon Swinamer,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Marci Uludamar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marcel Mathiue,ou=Management,dc=bitwarden,dc=com", + "cn=Clementina Salkilld,ou=Peons,dc=bitwarden,dc=com", + "cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden,dc=com", + "cn=Gertrudis Zahn,ou=Peons,dc=bitwarden,dc=com", + "cn=Jere Forghani,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gilemette Dellinger,ou=Peons,dc=bitwarden,dc=com", + "cn=Magdalene Byers,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Parnell Hamlin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nath Popovich,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Patch Lassonde,ou=Peons,dc=bitwarden,dc=com", + "cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nata Corse,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marj Npi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Emery Daoust,ou=Peons,dc=bitwarden,dc=com", + "cn=Danya Prasada,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Partha Blackman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Florette Shemwell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden,dc=com", + "cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden,dc=com", + "cn=Abagael Zattiero,ou=Management,dc=bitwarden,dc=com", + "cn=Mardi Lowder,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mercy Steranka,ou=Management,dc=bitwarden,dc=com", + "cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Catja Josiah,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marlena Rickey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shandee Reno,ou=Product Development,dc=bitwarden,dc=com", + "cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Silva Connolly,ou=Administrative,dc=bitwarden,dc=com", + "cn=Iwan Theriot,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Emerson Terminals,ou=Payroll,dc=bitwarden,dc=com", + "cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Felicdad Popela,ou=Administrative,dc=bitwarden,dc=com", + "cn=Himanshu Zahn,ou=Peons,dc=bitwarden,dc=com", + "cn=Luisa Legros,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brenn Thedford,ou=Peons,dc=bitwarden,dc=com", + "cn=Albina Kruusement,ou=Peons,dc=bitwarden,dc=com", + "cn=Yueping Yamada,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Belvia Abbott,ou=Product Development,dc=bitwarden,dc=com", + "cn=Seyma Currier,ou=Administrative,dc=bitwarden,dc=com", + "cn=Derrik Steede,ou=Management,dc=bitwarden,dc=com", + "cn=Starla OFarrell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Revkah Bawek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tian Dundin,ou=Management,dc=bitwarden,dc=com", + "cn=Aiden Dido,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pit Yancey,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Aartjan Robson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Winona Latreille,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dis Schmeing,ou=Peons,dc=bitwarden,dc=com", + "cn=Krystalle McHale,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jastinder Zollman,ou=Peons,dc=bitwarden,dc=com", + "cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Conny Blackburn,ou=Management,dc=bitwarden,dc=com", + "cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lian Tripps,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karlyn Tiseo,ou=Management,dc=bitwarden,dc=com", + "cn=Josselyn Sugarman,ou=Peons,dc=bitwarden,dc=com", + "cn=Ashlie Michailov,ou=Peons,dc=bitwarden,dc=com", + "cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cindie McNeill,ou=Administrative,dc=bitwarden,dc=com", + "cn=Izak Katibian,ou=Management,dc=bitwarden,dc=com", + "cn=Nanci Fiteny,ou=Management,dc=bitwarden,dc=com", + "cn=Marijke Tiseo,ou=Management,dc=bitwarden,dc=com", + "cn=Akshay Herlihy,ou=Peons,dc=bitwarden,dc=com", + "cn=Thomson Dasch,ou=Product Development,dc=bitwarden,dc=com", + "cn=Min StMartin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maybelle Karol,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cindy Ferner,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nerti Buskens,ou=Administrative,dc=bitwarden,dc=com", + "cn=Selvaraj Merrick,ou=Management,dc=bitwarden,dc=com", + "cn=Julien Simmons,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Conchita Meres,ou=Peons,dc=bitwarden,dc=com", + "cn=Hedi Herling,ou=Peons,dc=bitwarden,dc=com", + "cn=Roobbie Bizga,ou=Payroll,dc=bitwarden,dc=com", + "cn=Izak Hatten,ou=Payroll,dc=bitwarden,dc=com", + "cn=Parks McInnis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lanae Mullen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Barby Shiue,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rizwan Guindi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anetta Wray,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mougy Mo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Darline Alfred,ou=Management,dc=bitwarden,dc=com", + "cn=Kayla Boscio,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Keys Tavares,ou=Product Development,dc=bitwarden,dc=com", + "cn=Yutaka Branham,ou=Peons,dc=bitwarden,dc=com", + "cn=Elinore Spallin,ou=Peons,dc=bitwarden,dc=com", + "cn=Paige McAleer,ou=Peons,dc=bitwarden,dc=com", + "cn=Syyed Cantlie,ou=Peons,dc=bitwarden,dc=com", + "cn=Morley Trefts,ou=Administrative,dc=bitwarden,dc=com", + "cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kania Bnrecad,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tammi Zukosky,ou=Management,dc=bitwarden,dc=com", + "cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Leil Halbedel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marni Diduch,ou=Product Development,dc=bitwarden,dc=com", + "cn=Myriam Desrochers,ou=Management,dc=bitwarden,dc=com", + "cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Court Karademir,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jayendra Goba,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kathrerine Hackett,ou=Management,dc=bitwarden,dc=com", + "cn=Akihiko Restrepo,ou=Peons,dc=bitwarden,dc=com", + "cn=Andra Guindi,ou=Peons,dc=bitwarden,dc=com", + "cn=Manda Bigley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Julienne Mevis,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lesya Willison,ou=Payroll,dc=bitwarden,dc=com", + "cn=Giri Rupert,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Oguz Livingston,ou=Product Development,dc=bitwarden,dc=com", + "cn=Celie Wesselow,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Adria Hagar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Panch Timleck,ou=Administrative,dc=bitwarden,dc=com", + "cn=Caro Finley,ou=Management,dc=bitwarden,dc=com", + "cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Fernand Hunsucker,ou=Management,dc=bitwarden,dc=com", + "cn=Maybelle Tognoni,ou=Peons,dc=bitwarden,dc=com", + "cn=Sunil Boggan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Theressa McQueen,ou=Peons,dc=bitwarden,dc=com", + "cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Maala Lessard,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jochem Vuncannon,ou=Management,dc=bitwarden,dc=com", + "cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden,dc=com", + "cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Magdi Mays,ou=Product Development,dc=bitwarden,dc=com", + "cn=Suvanee Girard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bin Itah,ou=Management,dc=bitwarden,dc=com", + "cn=Raynell Zaydan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mabel Combee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Melania Michelsen,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hollyanne Java,ou=Product Development,dc=bitwarden,dc=com", + "cn=Theadora Irani,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eladio Bolio,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hermien Paksi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Merrilee Sipple,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aleece Mielke,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Harinder Sabry,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eamon Brivet,ou=Peons,dc=bitwarden,dc=com", + "cn=Analiese Chapman,ou=Peons,dc=bitwarden,dc=com", + "cn=Meghan Murphy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nikolia Guin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dana Tupling,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eliot Havis,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maryl Codrington,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Constantia Neubauer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Savita Sei,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yehuda Huret,ou=Peons,dc=bitwarden,dc=com", + "cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Livvie Barlow,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sebastian Burger,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Datas Cochran,ou=Management,dc=bitwarden,dc=com", + "cn=Chander Copley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Careers Serapin,ou=Product Development,dc=bitwarden,dc=com", + "cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mei Ballinger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Guillema Sarioglu,ou=Management,dc=bitwarden,dc=com", + "cn=Samual Colquhoun,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden,dc=com", + "cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden,dc=com", + "cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hubert Cicci,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chung Gooch,ou=Payroll,dc=bitwarden,dc=com", + "cn=Johnnie Trainer,ou=Administrative,dc=bitwarden,dc=com", + "cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Camile Latin,ou=Management,dc=bitwarden,dc=com", + "cn=Radio Ong,ou=Product Development,dc=bitwarden,dc=com", + "cn=Carmina Joly,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alese Zarate,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Babb Dpierre,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dalila Forbes,ou=Product Development,dc=bitwarden,dc=com", + "cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pinder Pedley,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden,dc=com", + "cn=Suzi Gribbons,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hulst Sinasac,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Naser deSalis,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden,dc=com", + "cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden,dc=com", + "cn=Maurise Efstration,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ranvir Reetz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alidia COKOL,ou=Peons,dc=bitwarden,dc=com", + "cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shashank Pifko,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eulalie Montcalm,ou=Management,dc=bitwarden,dc=com", + "cn=Calla Voight,ou=Peons,dc=bitwarden,dc=com", + "cn=Lynette Kay,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carleen Baxter,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hubert Brading,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Christian Norwood,ou=Management,dc=bitwarden,dc=com", + "cn=Den Fogle,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Karol Dummer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Myrna Samora,ou=Peons,dc=bitwarden,dc=com", + "cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden,dc=com", + "cn=KuiSoon Bajada,ou=Management,dc=bitwarden,dc=com", + "cn=Alvina Madison,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Celyne Krater,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pierre Hysler,ou=Management,dc=bitwarden,dc=com", + "cn=Gordy Fab,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mouna LaRue,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Janot Carella,ou=Administrative,dc=bitwarden,dc=com", + "cn=Vanny Blauer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dineke Sheth,ou=Payroll,dc=bitwarden,dc=com", + "cn=Feliza Camblin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zonda Bartush,ou=Payroll,dc=bitwarden,dc=com", + "cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Radford Wiklund,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Pamella Sosa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marya Felton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aindrea Cairns,ou=Peons,dc=bitwarden,dc=com", + "cn=Katherina Deek,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ardeen Grasman,ou=Payroll,dc=bitwarden,dc=com", + "cn=Isin VanOorschot,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karrah Laferriere,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sanae Baynes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Zainab Doan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cassy Seagle,ou=Management,dc=bitwarden,dc=com", + "cn=Wonda McCallum,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Florina Meredith,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nat Sadeghi,ou=Peons,dc=bitwarden,dc=com", + "cn=Hendra Viegas,ou=Management,dc=bitwarden,dc=com", + "cn=Bettie Coutellier,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Davis Connolly,ou=Peons,dc=bitwarden,dc=com", + "cn=Carma Rittenhouse,ou=Peons,dc=bitwarden,dc=com", + "cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sarah Longchamps,ou=Peons,dc=bitwarden,dc=com", + "cn=Haroon Neefs,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jenson Soumis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Minni Malynowsky,ou=Product Development,dc=bitwarden,dc=com", + "cn=Issam Coord,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lynna Salam,ou=Administrative,dc=bitwarden,dc=com", + "cn=Huong Quinones,ou=Payroll,dc=bitwarden,dc=com", + "cn=Class Picard,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Craig Kneisel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Fay Franco,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gae Garrett,ou=Peons,dc=bitwarden,dc=com", + "cn=Martita Sales,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amaleta McClelland,ou=Management,dc=bitwarden,dc=com", + "cn=Rico Vandevalk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nanny Kempski,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Antonella Stambouli,ou=Management,dc=bitwarden,dc=com", + "cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rhett Womack,ou=Management,dc=bitwarden,dc=com", + "cn=Kenneth Afkham,ou=Peons,dc=bitwarden,dc=com", + "cn=Asmar Dermardiros,ou=Peons,dc=bitwarden,dc=com", + "cn=Marabel ORourke,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lowry Fahey,ou=Management,dc=bitwarden,dc=com", + "cn=Christy Phalpher,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Emr Hacker,ou=Management,dc=bitwarden,dc=com", + "cn=Estelle Robieux,ou=Peons,dc=bitwarden,dc=com", + "cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ashraf Maybee,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bakel Sils,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Linnell Wepf,ou=Peons,dc=bitwarden,dc=com", + "cn=Foad Lebeau,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bal Braverman,ou=Peons,dc=bitwarden,dc=com", + "cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Buda Virchick,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Alika Kirchner,ou=Peons,dc=bitwarden,dc=com", + "cn=Kata Hagerty,ou=Peons,dc=bitwarden,dc=com", + "cn=Lorraine Polk,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tildi Washburn,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Minette Reva,ou=Payroll,dc=bitwarden,dc=com", + "cn=Farag Wolter,ou=Management,dc=bitwarden,dc=com", + "cn=AnnMarie Valentik,ou=Management,dc=bitwarden,dc=com", + "cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden,dc=com", + "cn=HooiLee Ronald,ou=Peons,dc=bitwarden,dc=com", + "cn=Gipsy Raman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Akram Nagendra,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Glen Majeed,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marieke Pien,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ingrid Lieure,ou=Management,dc=bitwarden,dc=com", + "cn=Roya Tod,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Christye Meridew,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Patrick Albers,ou=Administrative,dc=bitwarden,dc=com", + "cn=Doralynn Swyer,ou=Peons,dc=bitwarden,dc=com", + "cn=Vanni Katsouras,ou=Management,dc=bitwarden,dc=com", + "cn=Rogelio McGrath,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Daphine Kutschke,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jin Lyall,ou=Peons,dc=bitwarden,dc=com", + "cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Clerissa Maduri,ou=Administrative,dc=bitwarden,dc=com", + "cn=Simonne Lukers,ou=Management,dc=bitwarden,dc=com", + "cn=Jacynth Manto,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ronan Rattray,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Doloritas Ocone,ou=Management,dc=bitwarden,dc=com", + "cn=Etta Smithson,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Stephanie Pickles,ou=Peons,dc=bitwarden,dc=com", + "cn=Karla Hearnden,ou=Management,dc=bitwarden,dc=com", + "cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Xenia Schmitz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sande Withrow,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pammie Guilbert,ou=Peons,dc=bitwarden,dc=com", + "cn=Sabina Dolson,ou=Payroll,dc=bitwarden,dc=com", + "cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cyril Tullius,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden,dc=com", + "cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Agathe Kinney,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nevsa Botting,ou=Payroll,dc=bitwarden,dc=com", + "cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melisse Wallis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Benoite Lenior,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marya Lozier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Access Phelps,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ned Hammonds,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ernest Betterley,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kana Licata,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hermione Donahue,ou=Management,dc=bitwarden,dc=com", + "cn=Rochette Materkowski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lan Simms,ou=Peons,dc=bitwarden,dc=com", + "cn=Troy Bengtson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Natka Moritz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brook Clifton,ou=Management,dc=bitwarden,dc=com", + "cn=Maggee Colton,ou=Management,dc=bitwarden,dc=com", + "cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rae Willey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Terence Murray,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ransom Grande,ou=Payroll,dc=bitwarden,dc=com", + "cn=Lindy Clinger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Clyde Hanser,ou=Management,dc=bitwarden,dc=com", + "cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Charita Rainsforth,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Remo Duchesne,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Radames Verrilli,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alanna Dillard,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chantal Neander,ou=Administrative,dc=bitwarden,dc=com", + "cn=Leese Nagendra,ou=Management,dc=bitwarden,dc=com", + "cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden,dc=com", + "cn=Erena Ticzon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Far Fogelson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Anne Kobeski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ursola Hastie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden,dc=com", + "cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Germaine Wingate,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Olympia Peets,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sati Varughese,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tab Gozen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ioana Newsome,ou=Administrative,dc=bitwarden,dc=com", + "cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Damian Lescot,ou=Product Development,dc=bitwarden,dc=com", + "cn=Raz Roseland,ou=Payroll,dc=bitwarden,dc=com", + "cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vivianna Lackie,ou=Management,dc=bitwarden,dc=com", + "cn=Hadi Freeley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carol Sarson,ou=Management,dc=bitwarden,dc=com", + "cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ailene Mackin,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bret Winicki,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Hatty Latchford,ou=Peons,dc=bitwarden,dc=com", + "cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Trey Baenziger,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ioan Elsing,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Joy Ferrara,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Rowe Clinton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dolores McCafferty,ou=Product Development,dc=bitwarden,dc=com", + "cn=Luciana Lepore,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jimmie Korest,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Martelle Reno,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hock Chilausky,ou=Administrative,dc=bitwarden,dc=com", + "cn=Teddie Bulan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lavonda Rowsell,ou=Management,dc=bitwarden,dc=com", + "cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lorinda Nolet,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ike Outage,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Erin Dolson,ou=Peons,dc=bitwarden,dc=com", + "cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anderson Sitar,ou=Management,dc=bitwarden,dc=com", + "cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ranga Cawley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kylie Parnell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Millisent Ladymon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tilda Turcot,ou=Administrative,dc=bitwarden,dc=com", + "cn=Yuji McCabe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Pen Yost,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Traci Ahdieh,ou=Management,dc=bitwarden,dc=com", + "cn=Fay Deugau,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Inna MokFung,ou=Administrative,dc=bitwarden,dc=com", + "cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tehchi McEwan,ou=Peons,dc=bitwarden,dc=com", + "cn=Tats Graves,ou=Administrative,dc=bitwarden,dc=com", + "cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nakina Steranka,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gilda Reid,ou=Peons,dc=bitwarden,dc=com", + "cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden,dc=com", + "cn=Arnis Truchon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden,dc=com", + "cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Paige Wanzeck,ou=Management,dc=bitwarden,dc=com", + "cn=Dutch HSI,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Adda Danai,ou=Product Development,dc=bitwarden,dc=com", + "cn=Netty Muttaqi,ou=Management,dc=bitwarden,dc=com", + "cn=Karly Breglec,ou=Peons,dc=bitwarden,dc=com", + "cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gurdip Thornber,ou=Management,dc=bitwarden,dc=com", + "cn=Dulcea Bassett,ou=Management,dc=bitwarden,dc=com", + "cn=Caprice Selent,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hemant Remillard,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tilak Odgers,ou=Management,dc=bitwarden,dc=com", + "cn=Kaela Wooff,ou=Peons,dc=bitwarden,dc=com", + "cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden,dc=com", + "cn=Grey Krakowetz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Canute Ladymon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Alex Lumley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gunars Runkel,ou=Peons,dc=bitwarden,dc=com", + "cn=Careers McAdorey,ou=Management,dc=bitwarden,dc=com", + "cn=Ardelia Bunner,ou=Management,dc=bitwarden,dc=com", + "cn=Fekri Hunike,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Adey Shippen,ou=Peons,dc=bitwarden,dc=com", + "cn=Malina Lederman,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Perry Maryak,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vance Ruppert,ou=Payroll,dc=bitwarden,dc=com", + "cn=Peg Toscano,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Monah Tsonos,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Meade Latulippe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Karan Piper,ou=Peons,dc=bitwarden,dc=com", + "cn=Chander Paulus,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Parham Cisco,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Charmain Chahal,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden,dc=com", + "cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden,dc=com", + "cn=Janelle Tucker,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Angie Tesch,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Traci Wolter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Azmina Bergeson,ou=Peons,dc=bitwarden,dc=com", + "cn=Dolly Dane,ou=Peons,dc=bitwarden,dc=com", + "cn=Narendra Matsuzawa,ou=Management,dc=bitwarden,dc=com", + "cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Souza Austin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Chrissy Marren,ou=Payroll,dc=bitwarden,dc=com", + "cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tandie Virgoe,ou=Peons,dc=bitwarden,dc=com", + "cn=Calley Naujoks,ou=Management,dc=bitwarden,dc=com", + "cn=Regan Neilsen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Katja Waterman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sol Royals,ou=Human Resources,dc=bitwarden,dc=com", + "cn=KahMing Dubreck,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melitta Hunter,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Trang Tucker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Garth Alfaro,ou=Management,dc=bitwarden,dc=com", + "cn=Rickie Genge,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mariette Piggott,ou=Administrative,dc=bitwarden,dc=com", + "cn=Darla Schierbaum,ou=Payroll,dc=bitwarden,dc=com", + "cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Technical Ely,ou=Product Development,dc=bitwarden,dc=com", + "cn=Merrill Loa,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jojo Liew,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Noemi Gulko,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Aurel Mullins,ou=Administrative,dc=bitwarden,dc=com", + "cn=Raine Hauck,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Munaz Mand,ou=Product Development,dc=bitwarden,dc=com", + "cn=Zoe Leinen,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bihari Simkin,ou=Management,dc=bitwarden,dc=com", + "cn=Wannell Rivard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Adey Daquano,ou=Payroll,dc=bitwarden,dc=com", + "cn=Emeline Drewes,ou=Peons,dc=bitwarden,dc=com", + "cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden,dc=com", + "cn=Rayshell Dow,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sohayla Claggett,ou=Management,dc=bitwarden,dc=com", + "cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden,dc=com", + "cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden,dc=com", + "cn=Debora Lauzon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aggi Culver,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Delcine Pesold,ou=Management,dc=bitwarden,dc=com", + "cn=Pauline Bullion,ou=Management,dc=bitwarden,dc=com", + "cn=Tibor Belley,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vere Cushing,ou=Management,dc=bitwarden,dc=com", + "cn=Dorris Joshi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Victor Hollenbach,ou=Payroll,dc=bitwarden,dc=com", + "cn=Joyan Irvin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Zoenka Ivan,ou=Peons,dc=bitwarden,dc=com", + "cn=Wylo Rummans,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tyler McKibbin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Dorolice Puelma,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anwar Mauck,ou=Management,dc=bitwarden,dc=com", + "cn=Gillian Weihs,ou=Payroll,dc=bitwarden,dc=com", + "cn=Freddy Boase,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Manny Degraauw,ou=Payroll,dc=bitwarden,dc=com", + "cn=Zahir Meagher,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chiho Kowalski,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jan Gittins,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nalani Madsen,ou=Management,dc=bitwarden,dc=com", + "cn=Casie Banerd,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Beryle Camillucci,ou=Management,dc=bitwarden,dc=com", + "cn=Lubomyr Duran,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gertruda Boyajian,ou=Peons,dc=bitwarden,dc=com", + "cn=Dyanna Roehl,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kikelia Kember,ou=Payroll,dc=bitwarden,dc=com", + "cn=Yalcin Tanferna,ou=Management,dc=bitwarden,dc=com", + "cn=Justina Copello,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bam Luin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Frieda Dulaney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Les Allahdin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melek Fennessey,ou=Management,dc=bitwarden,dc=com", + "cn=Quon Zukosky,ou=Management,dc=bitwarden,dc=com", + "cn=Andrea ONeall,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Setsuko Keck,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ruchel Borosh,ou=Management,dc=bitwarden,dc=com", + "cn=Chloette Zadow,ou=Peons,dc=bitwarden,dc=com", + "cn=Sarena Fothergill,ou=Management,dc=bitwarden,dc=com", + "cn=Jaquith Canfield,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darell Carrillo,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Malgosia Beilin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bekki Kensinger,ou=Payroll,dc=bitwarden,dc=com", + "cn=Benny Stahl,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sonja Blake,ou=Management,dc=bitwarden,dc=com", + "cn=Corny Cowick,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sibelle McAlister,ou=Peons,dc=bitwarden,dc=com", + "cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Souza Deininger,ou=Product Development,dc=bitwarden,dc=com", + "cn=Beata Surray,ou=Payroll,dc=bitwarden,dc=com", + "cn=Betsy Bergman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cheryl Deibert,ou=Peons,dc=bitwarden,dc=com", + "cn=Darrel Bottoms,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Cissiee Gostanian,ou=Peons,dc=bitwarden,dc=com", + "cn=Portia Beecker,ou=Payroll,dc=bitwarden,dc=com", + "cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alli AbouEzze,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kirk Cuddihey,ou=Peons,dc=bitwarden,dc=com", + "cn=ChoonLin Marneris,ou=Peons,dc=bitwarden,dc=com", + "cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Davida Milakovic,ou=Payroll,dc=bitwarden,dc=com", + "cn=Janela Bennison,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Zorine Records,ou=Peons,dc=bitwarden,dc=com", + "cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ashleigh Ligon,ou=Management,dc=bitwarden,dc=com", + "cn=Nelly Kerns,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Chicky Domine,ou=Peons,dc=bitwarden,dc=com", + "cn=Woon Morrin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tedra Shwed,ou=Product Development,dc=bitwarden,dc=com", + "cn=Wallis Whitfill,ou=Product Development,dc=bitwarden,dc=com", + "cn=Torey Tropea,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Israel Ginest,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Yoko Honda,ou=Peons,dc=bitwarden,dc=com", + "cn=Farzin Herlihy,ou=Peons,dc=bitwarden,dc=com", + "cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Benny Ratnam,ou=Product Development,dc=bitwarden,dc=com", + "cn=Reeba Pape,ou=Peons,dc=bitwarden,dc=com", + "cn=Ashu Kohn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liese McCombs,ou=Peons,dc=bitwarden,dc=com", + "cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Blinny Zanet,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sanjay Themann,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vijay Shorgan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Duncan Kiang,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Liliane Chima,ou=Payroll,dc=bitwarden,dc=com", + "cn=Khai Diradmin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden,dc=com", + "cn=Burton Deans,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Elly Kubash,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tallou Gothard,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden,dc=com", + "cn=Perry Schmitz,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Avinash Finn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Marabel Hippert,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Klazina Desharnais,ou=Peons,dc=bitwarden,dc=com", + "cn=Ursala Vezeau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Muffin Atteridge,ou=Product Development,dc=bitwarden,dc=com", + "cn=Vanya Marcoux,ou=Management,dc=bitwarden,dc=com", + "cn=Mercy Nakano,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden,dc=com", + "cn=Arlina Weaver,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Seven Okon,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden,dc=com", + "cn=Liliane Gurer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=HonKong Salem,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Glynnis Daniells,ou=Management,dc=bitwarden,dc=com", + "cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Miran McKeone,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dion Polulack,ou=Administrative,dc=bitwarden,dc=com", + "cn=Hartley Busch,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gusella Popper,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Wits Stutts,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Afzal Rusch,ou=Peons,dc=bitwarden,dc=com", + "cn=Karon McBrayne,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Judy Homa,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tarik Tester,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carole Suykens,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Saman Koverzin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kaushik Reid,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eastreg Buchan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kevyn Yu,ou=Management,dc=bitwarden,dc=com", + "cn=Violante Chaurasia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Franklin Landry,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Rejean Hartsell,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Crista Reece,ou=Product Development,dc=bitwarden,dc=com", + "cn=Apryle Briard,ou=Management,dc=bitwarden,dc=com", + "cn=Joni Netas,ou=Management,dc=bitwarden,dc=com", + "cn=Nicola Hensen,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Bruce Galasso,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden,dc=com", + "cn=Margeaux Chunn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Long Esry,ou=Management,dc=bitwarden,dc=com", + "cn=Lynette Brearley,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Birdie Cawley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Deana MacNeill,ou=Payroll,dc=bitwarden,dc=com", + "cn=Afton Tanner,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden,dc=com", + "cn=JooEuin Peters,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jordan Normandin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brynna Swanston,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden,dc=com", + "cn=Saumitra Svo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Modestia Hersee,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gretna Ergle,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gary Denmark,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fei Isert,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden,dc=com", + "cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Armand Bebber,ou=Management,dc=bitwarden,dc=com", + "cn=Virgina Kahnert,ou=Management,dc=bitwarden,dc=com", + "cn=Antoni Vickers,ou=Management,dc=bitwarden,dc=com", + "cn=Dan Telos,ou=Payroll,dc=bitwarden,dc=com", + "cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Rory Chan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gertrude Senyshyn,ou=Management,dc=bitwarden,dc=com", + "cn=Missagh Yeh,ou=Product Development,dc=bitwarden,dc=com", + "cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Morganica Ashdown,ou=Management,dc=bitwarden,dc=com", + "cn=Joey Moore,ou=Peons,dc=bitwarden,dc=com", + "cn=Rheta Knobloch,ou=Peons,dc=bitwarden,dc=com", + "cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden,dc=com", + "cn=Far Shupe,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Noni Pauley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Hera Eike,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Melisa Peacemaker,ou=Management,dc=bitwarden,dc=com", + "cn=Wylo Woodley,ou=Management,dc=bitwarden,dc=com", + "cn=Collette Quevillon,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Renelle Ducic,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ailis Gabe,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Selena Sanoy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Electra Hassold,ou=Administrative,dc=bitwarden,dc=com", + "cn=Terry Johnston,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Franny Towill,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Duquette Pratt,ou=Payroll,dc=bitwarden,dc=com", + "cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Alb Hussein,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sam Ference,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Yukinobu Riebl,ou=Peons,dc=bitwarden,dc=com", + "cn=Tarus Hillard,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ramonda Lott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Anitra Arora,ou=Payroll,dc=bitwarden,dc=com", + "cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sonja Tohama,ou=Peons,dc=bitwarden,dc=com", + "cn=Rycca Bloemker,ou=Administrative,dc=bitwarden,dc=com", + "cn=Joydeep Elledge,ou=Peons,dc=bitwarden,dc=com", + "cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Silvie Nevardauskis,ou=Management,dc=bitwarden,dc=com", + "cn=Ilene Curnow,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ailee Sudbey,ou=Management,dc=bitwarden,dc=com", + "cn=Maarten Mejia,ou=Administrative,dc=bitwarden,dc=com", + "cn=PierreAndre Abbate,ou=Peons,dc=bitwarden,dc=com", + "cn=Kizzie Adey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Krystn Skerlak,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kailey Southon,ou=Administrative,dc=bitwarden,dc=com", + "cn=PohSoon Corpening,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cissy Systest,ou=Management,dc=bitwarden,dc=com", + "cn=Ailee Garry,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Juliet Goyal,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gleda Carldata,ou=Payroll,dc=bitwarden,dc=com", + "cn=Elane Latour,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Matt Sharman,ou=Peons,dc=bitwarden,dc=com", + "cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Violante Moomey,ou=Payroll,dc=bitwarden,dc=com", + "cn=Valery Howell,ou=Management,dc=bitwarden,dc=com", + "cn=Lorri Fontanini,ou=Administrative,dc=bitwarden,dc=com", + "cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ivette Frantz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cyndie Mohideen,ou=Management,dc=bitwarden,dc=com", + "cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ardine Grimm,ou=Peons,dc=bitwarden,dc=com", + "cn=Raine Capps,ou=Human Resources,dc=bitwarden,dc=com", + "cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Skyler Khurana,ou=Administrative,dc=bitwarden,dc=com", + "cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kris Warfel,ou=Management,dc=bitwarden,dc=com", + "cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ruby Stansbury,ou=Administrative,dc=bitwarden,dc=com", + "cn=John Seery,ou=Peons,dc=bitwarden,dc=com", + "cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Callida Boarder,ou=Product Development,dc=bitwarden,dc=com", + "cn=Rona Cosgrove,ou=Management,dc=bitwarden,dc=com", + "cn=Tasia Anchia,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden,dc=com", + "cn=Wallis Barentsen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Fan Cranston,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Helen Hyde,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Raeann OKarina,ou=Product Development,dc=bitwarden,dc=com", + "cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden,dc=com", + "cn=Olga Magee,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sibel Munter,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Carmella Pillars,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden,dc=com", + "cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tabbi Bladon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Umesh Areu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Orel Delahay,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Corrie Cipolla,ou=Product Development,dc=bitwarden,dc=com", + "cn=Longdist Goliss,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Belissa Northcott,ou=Product Development,dc=bitwarden,dc=com", + "cn=Eula Gouldson,ou=Payroll,dc=bitwarden,dc=com", + "cn=Beatrix Rea,ou=Management,dc=bitwarden,dc=com", + "cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden,dc=com", + "cn=Larysa Fleming,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Andras Dziemian,ou=Administrative,dc=bitwarden,dc=com", + "cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden,dc=com", + "cn=Afke Coallier,ou=Management,dc=bitwarden,dc=com", + "cn=Lachu Fricks,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Pammy Slautterback,ou=Administrative,dc=bitwarden,dc=com", + "cn=Maribelle Balderston,ou=Payroll,dc=bitwarden,dc=com", + "cn=Vahe Birks,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tobe PKDCD,ou=Product Development,dc=bitwarden,dc=com", + "cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden,dc=com", + "cn=Melynda Phillips,ou=Administrative,dc=bitwarden,dc=com", + "cn=Arina Collazo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Cesare Karolefski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Partick Bassil,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Siamak Wagle,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Reine Hamlett,ou=Peons,dc=bitwarden,dc=com", + "cn=Albert Tebinka,ou=Payroll,dc=bitwarden,dc=com", + "cn=Wally Pedneault,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shahriar Farnham,ou=Peons,dc=bitwarden,dc=com", + "cn=Concordia Thorman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Sarath Lathrop,ou=Management,dc=bitwarden,dc=com", + "cn=HanVan Cuthill,ou=Peons,dc=bitwarden,dc=com", + "cn=Demetri Acree,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gord St,ou=Product Development,dc=bitwarden,dc=com", + "cn=Robyn Porter,ou=Payroll,dc=bitwarden,dc=com", + "cn=Kristine Ratnam,ou=Peons,dc=bitwarden,dc=com", + "cn=Trude Leander,ou=Management,dc=bitwarden,dc=com", + "cn=Jacinta Burkepile,ou=Management,dc=bitwarden,dc=com", + "cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sissela Mathewson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kaela Gleason,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mandi Popovich,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bhal Mymryk,ou=Management,dc=bitwarden,dc=com", + "cn=Wenxi Sethian,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mabel Kwa,ou=Peons,dc=bitwarden,dc=com", + "cn=Neysa Uguccioni,ou=Management,dc=bitwarden,dc=com", + "cn=Toby Ayoup,ou=Administrative,dc=bitwarden,dc=com", + "cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Drusilla Allman,ou=Management,dc=bitwarden,dc=com", + "cn=SangMaun Rabzel,ou=Management,dc=bitwarden,dc=com", + "cn=Bettine Bresnan,ou=Peons,dc=bitwarden,dc=com", + "cn=Blithe Searl,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Haig Talton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ryman Smerdell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Admin Cassar,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Esmail Santos,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Walter Coley,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jeanne Boult,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Avie Scourneau,ou=Management,dc=bitwarden,dc=com", + "cn=Bettie Cescon,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maureene Weiser,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Melisent Annibale,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bonnie Corse,ou=Peons,dc=bitwarden,dc=com", + "cn=Querida Gertridge,ou=Management,dc=bitwarden,dc=com", + "cn=Lily Stites,ou=Payroll,dc=bitwarden,dc=com", + "cn=Woon Klimon,ou=Management,dc=bitwarden,dc=com", + "cn=Carlota Oros,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gil Spurway,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Licha Weinbender,ou=Product Development,dc=bitwarden,dc=com", + "cn=Mirabella Awano,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lura Centis,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Aveline Berhane,ou=Management,dc=bitwarden,dc=com", + "cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden,dc=com", + "cn=Billy Costantino,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dorrie Fortner,ou=Product Development,dc=bitwarden,dc=com", + "cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden,dc=com", + "cn=Carleen Toly,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Vijay Nassr,ou=Management,dc=bitwarden,dc=com", + "cn=Sandro Gorius,ou=Human Resources,dc=bitwarden,dc=com", + "cn=He Crowder,ou=Peons,dc=bitwarden,dc=com", + "cn=Atta Kutch,ou=Management,dc=bitwarden,dc=com", + "cn=Devon Kaudel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Deidre Cirulli,ou=Peons,dc=bitwarden,dc=com", + "cn=Kala Bourget,ou=Peons,dc=bitwarden,dc=com", + "cn=Charo Hembrick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Janene Torrell,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Eben Shayanpour,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Yves Dhir,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Aile Frink,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden,dc=com", + "cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Damara Jaswal,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Ethelin Girotti,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pramod Foessl,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Octavia Handschy,ou=Peons,dc=bitwarden,dc=com", + "cn=Kerstin Nandi,ou=Management,dc=bitwarden,dc=com", + "cn=Elwood Bouick,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clarence Dpu,ou=Management,dc=bitwarden,dc=com", + "cn=Shama Norton,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Vo Sauer,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gilberte Ferland,ou=Administrative,dc=bitwarden,dc=com", + "cn=Valeria Harmon,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dorthy Youngman,ou=Management,dc=bitwarden,dc=com", + "cn=Gilles Litherland,ou=Payroll,dc=bitwarden,dc=com", + "cn=Erick Wicht,ou=Peons,dc=bitwarden,dc=com", + "cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Kassie Nava,ou=Product Development,dc=bitwarden,dc=com", + "cn=Opaline Ober,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Madan Baab,ou=Product Development,dc=bitwarden,dc=com", + "cn=Htd Hersee,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dorita Anker,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Christopher Cohea,ou=Management,dc=bitwarden,dc=com", + "cn=Robbie Bunting,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Masood Shipe,ou=Management,dc=bitwarden,dc=com", + "cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Bernardina Sreedhar,ou=Management,dc=bitwarden,dc=com", + "cn=Atl Corbin,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alice Knighton,ou=Management,dc=bitwarden,dc=com", + "cn=Fern Okafo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Brietta Dupras,ou=Management,dc=bitwarden,dc=com", + "cn=Wanda Becker,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gerben Kozlowski,ou=Management,dc=bitwarden,dc=com", + "cn=Maynard Burness,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sylva Milloy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=CheeYin Westphal,ou=Administrative,dc=bitwarden,dc=com", + "cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden,dc=com", + "cn=Bawn McNeal,ou=Peons,dc=bitwarden,dc=com", + "cn=Raine Fogle,ou=Peons,dc=bitwarden,dc=com", + "cn=Eyde Sitch,ou=Management,dc=bitwarden,dc=com", + "cn=Windowing Walkins,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Alisun Hampel,ou=Management,dc=bitwarden,dc=com", + "cn=Quinta Pimpare,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jemimah Whitney,ou=Product Development,dc=bitwarden,dc=com", + "cn=Marta McNerlan,ou=Peons,dc=bitwarden,dc=com", + "cn=Miranda Sobel,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Minda Andric,ou=Peons,dc=bitwarden,dc=com", + "cn=Roselle Baber,ou=Management,dc=bitwarden,dc=com", + "cn=Four Keene,ou=Peons,dc=bitwarden,dc=com", + "cn=Souza Salyer,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Petri Beehler,ou=Management,dc=bitwarden,dc=com", + "cn=Annadiane Hyrne,ou=Peons,dc=bitwarden,dc=com", + "cn=Freida Nock,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Adrianne Hollenbach,ou=Management,dc=bitwarden,dc=com", + "cn=Leon Hulme,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Izabel Schnell,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jammie Parisien,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cori Oreilly,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Enzo Rodgers,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pic Basinger,ou=Peons,dc=bitwarden,dc=com", + "cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden,dc=com", + "cn=Paqs Atalla,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Norina McClymont,ou=Management,dc=bitwarden,dc=com", + "cn=Sadella Psklib,ou=Administrative,dc=bitwarden,dc=com", + "cn=Bqb Mulvie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jenica Brophy,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Steen Dubuc,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shea Blesi,ou=Management,dc=bitwarden,dc=com", + "cn=Kusum Tilden,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Famke Chuah,ou=Administrative,dc=bitwarden,dc=com", + "cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden,dc=com", + "cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden,dc=com", + "cn=HoaVan Drummer,ou=Peons,dc=bitwarden,dc=com", + "cn=Metrics McCoy,ou=Peons,dc=bitwarden,dc=com", + "cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Nicolas Lally,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Candie Siefert,ou=Administrative,dc=bitwarden,dc=com", + "cn=Ulf Novak,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Paulette Unkefer,ou=Peons,dc=bitwarden,dc=com", + "cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Gwendolin Kean,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marthe Harvey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden,dc=com", + "cn=Francene AuYeung,ou=Peons,dc=bitwarden,dc=com", + "cn=Juliana Omura,ou=Peons,dc=bitwarden,dc=com", + "cn=Emelina Elliot,ou=Product Development,dc=bitwarden,dc=com", + "cn=Waverly Monforton,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gladys Bilanski,ou=Management,dc=bitwarden,dc=com", + "cn=Analise Shea,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Cart Boutin,ou=Management,dc=bitwarden,dc=com", + "cn=Kunie Hoorman,ou=Product Development,dc=bitwarden,dc=com", + "cn=Odelinda Keilty,ou=Payroll,dc=bitwarden,dc=com", + "cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Stella Sist,ou=Peons,dc=bitwarden,dc=com", + "cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Dayle Schenkel,ou=Management,dc=bitwarden,dc=com", + "cn=Arlyn McBroom,ou=Payroll,dc=bitwarden,dc=com", + "cn=Brear Jensen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Ann Bulengo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Esma Jak,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Larkin Nance,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mirelle Novak,ou=Peons,dc=bitwarden,dc=com", + "cn=Dorothy Laurich,ou=Product Development,dc=bitwarden,dc=com", + "cn=Shyam Wernik,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Niek Rahmany,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jung Kimler,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lolita Mufti,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Coord Kalleward,ou=Management,dc=bitwarden,dc=com", + "cn=Garnet Shames,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fara Shireman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shahid Neil,ou=Management,dc=bitwarden,dc=com", + "cn=Starlene Falardeau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Marce Plaisance,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lena Mathias,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gaby Booking,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Michaela Trimble,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lucie Kilner,ou=Payroll,dc=bitwarden,dc=com", + "cn=Danyelle Rider,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Mariska Tien,ou=Peons,dc=bitwarden,dc=com", + "cn=Belvia Lamoureux,ou=Peons,dc=bitwarden,dc=com", + "cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jian Marneris,ou=Payroll,dc=bitwarden,dc=com", + "cn=Dagmar Moseby,ou=Payroll,dc=bitwarden,dc=com", + "cn=Casie Ress,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hrinfo Okura,ou=Payroll,dc=bitwarden,dc=com", + "cn=Korney Fadlallah,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jiri Leftwich,ou=Peons,dc=bitwarden,dc=com", + "cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tildie Abbott,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Kalindi Keehan,ou=Peons,dc=bitwarden,dc=com", + "cn=Collette Patchett,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cristiane Ruth,ou=Peons,dc=bitwarden,dc=com", + "cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sedat Gurley,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Sharai Coxall,ou=Product Development,dc=bitwarden,dc=com", + "cn=Franny Walton,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Aryn Klimas,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dorise Yue,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mellisa Gustlin,ou=Management,dc=bitwarden,dc=com", + "cn=Butch Roper,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Mendel Rolls,ou=Administrative,dc=bitwarden,dc=com", + "cn=Cecelia Dowse,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Anette Lassig,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Gio Londhe,ou=Human Resources,dc=bitwarden,dc=com", + "cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tadayuki Mak,ou=Product Development,dc=bitwarden,dc=com", + "cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ri Trisic,ou=Peons,dc=bitwarden,dc=com", + "cn=Ileana Doyle,ou=Management,dc=bitwarden,dc=com", + "cn=Nico Badelt,ou=Management,dc=bitwarden,dc=com", + "cn=Ragu Lieure,ou=Administrative,dc=bitwarden,dc=com", + "cn=Claudia Berhane,ou=Management,dc=bitwarden,dc=com", + "cn=Silvana Tunali,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Anand Henshaw,ou=Administrative,dc=bitwarden,dc=com", + "cn=Imtaz Ledamun,ou=Peons,dc=bitwarden,dc=com", + "cn=Meryl Diaz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Saraann Anastasio,ou=Administrative,dc=bitwarden,dc=com", + "cn=Declan Creane,ou=Product Development,dc=bitwarden,dc=com", + "cn=Terrell Mathieson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Olympia DMS,ou=Peons,dc=bitwarden,dc=com", + "cn=Mounir Pullum,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden,dc=com", + "cn=Constantina Faou,ou=Product Development,dc=bitwarden,dc=com", + "cn=Santiago Georges,ou=Management,dc=bitwarden,dc=com", + "cn=Marinette Ficker,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Janet Pankiw,ou=Administrative,dc=bitwarden,dc=com", + "cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Else Hazenboom,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Saibal Traynor,ou=Peons,dc=bitwarden,dc=com", + "cn=Khue Mein,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden,dc=com", + "cn=PeyKee Fetterman,ou=Management,dc=bitwarden,dc=com", + "cn=Claire Reinlie,ou=Management,dc=bitwarden,dc=com", + "cn=Shawna Lahlum,ou=Product Development,dc=bitwarden,dc=com", + "cn=Darelle Childress,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kessiah Alford,ou=Peons,dc=bitwarden,dc=com", + "cn=Theressa Olivier,ou=Peons,dc=bitwarden,dc=com", + "cn=Pauly Jago,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Collete Krabicka,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kim Highsmith,ou=Administrative,dc=bitwarden,dc=com", + "cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elladine Schwab,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden,dc=com", + "cn=XiaoMing Dorr,ou=Management,dc=bitwarden,dc=com", + "cn=Clement Durant,ou=Peons,dc=bitwarden,dc=com", + "cn=Rejeanne Shelegey,ou=Management,dc=bitwarden,dc=com", + "cn=Nicky McDowall,ou=Payroll,dc=bitwarden,dc=com", + "cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden,dc=com", + "cn=Thomasa Fulk,ou=Peons,dc=bitwarden,dc=com", + "cn=Florri Tregenza,ou=Peons,dc=bitwarden,dc=com", + "cn=Hester Colbourne,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anitra Hugel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kanu Cuervo,ou=Management,dc=bitwarden,dc=com", + "cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden,dc=com", + "cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Faruk Hanzel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Trent Carli,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maurene Paliga,ou=Payroll,dc=bitwarden,dc=com", + "cn=Minette Manner,ou=Management,dc=bitwarden,dc=com", + "cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elio Lough,ou=Payroll,dc=bitwarden,dc=com", + "cn=Abigael Noddin,ou=Peons,dc=bitwarden,dc=com", + "cn=Winna Bono,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden,dc=com", + "cn=Karalynn Paylor,ou=Administrative,dc=bitwarden,dc=com", + "cn=Caterina Pittam,ou=Peons,dc=bitwarden,dc=com", + "cn=Michaela Cuffle,ou=Management,dc=bitwarden,dc=com", + "cn=Sibylle Martins,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jade Noguchi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Guenna Lazure,ou=Peons,dc=bitwarden,dc=com", + "cn=Beatrisa Staring,ou=Product Development,dc=bitwarden,dc=com", + "cn=Bernadine Schrang,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alese Rigdon,ou=Product Development,dc=bitwarden,dc=com", + "cn=MaryJo Harms,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Dorris Akita,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Thanh Dewitt,ou=Product Development,dc=bitwarden,dc=com", + "cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Davita Stenson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Pak Krone,ou=Product Development,dc=bitwarden,dc=com", + "cn=Idalina Vogt,ou=Product Testing,dc=bitwarden,dc=com", + "cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yuan Wester,ou=Product Development,dc=bitwarden,dc=com", + "cn=Riaz Gulis,ou=Product Development,dc=bitwarden,dc=com", + "cn=Odetta Masse,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Stacia Presgrove,ou=Management,dc=bitwarden,dc=com", + "cn=Norbert Salazar,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nevein Grimshaw,ou=Management,dc=bitwarden,dc=com", + "cn=Annaliese Hudak,ou=Product Development,dc=bitwarden,dc=com", + "cn=Andromache Machika,ou=Product Development,dc=bitwarden,dc=com", + "cn=Meriann Larose,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Agathe Kikuchi,ou=Management,dc=bitwarden,dc=com", + "cn=Somsak Fields,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zitella Hussein,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Varennes ParkerShane,ou=Peons,dc=bitwarden,dc=com", + "cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Idelle Leicht,ou=Payroll,dc=bitwarden,dc=com", + "cn=Darb Swinkels,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Koren Perfetti,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kelcey Reuss,ou=Administrative,dc=bitwarden,dc=com", + "cn=Lujanka Contardo,ou=Product Development,dc=bitwarden,dc=com", + "cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Barton Seggie,ou=Payroll,dc=bitwarden,dc=com", + "cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Julee Norby,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sharai Torok,ou=Payroll,dc=bitwarden,dc=com", + "cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden,dc=com", + "cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden,dc=com", + "cn=Cefee Donelan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jderek Sankey,ou=Management,dc=bitwarden,dc=com", + "cn=Sid Barnhill,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Kamlesh Hoang,ou=Peons,dc=bitwarden,dc=com", + "cn=Sarath McCall,ou=Payroll,dc=bitwarden,dc=com", + "cn=Nermana Douglas,ou=Management,dc=bitwarden,dc=com", + "cn=Student Sonne,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Maisie DaGama,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Erminie Battershill,ou=Peons,dc=bitwarden,dc=com", + "cn=Jung Betts,ou=Payroll,dc=bitwarden,dc=com", + "cn=Maddi Naolu,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Ammar Parise,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Agata Khouderchan,ou=Management,dc=bitwarden,dc=com", + "cn=Joella Casey,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sharone Torrell,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ebony Vitaglian,ou=Peons,dc=bitwarden,dc=com", + "cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Evanne Callos,ou=Product Development,dc=bitwarden,dc=com", + "cn=Purvee Kwast,ou=Peons,dc=bitwarden,dc=com", + "cn=Eluned Vinson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Melisandra McVey,ou=Management,dc=bitwarden,dc=com", + "cn=Philipa Netdbs,ou=Payroll,dc=bitwarden,dc=com", + "cn=Art Totten,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Roxanna Colquette,ou=Payroll,dc=bitwarden,dc=com", + "cn=Janessa Bienek,ou=Product Development,dc=bitwarden,dc=com", + "cn=Christa Schrage,ou=Management,dc=bitwarden,dc=com", + "cn=Glenna Trefry,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Cecco Langevin,ou=Peons,dc=bitwarden,dc=com", + "cn=Magdy McCloskey,ou=Administrative,dc=bitwarden,dc=com", + "cn=Filion Karam,ou=Management,dc=bitwarden,dc=com", + "cn=Nerissa Volz,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Barb Crockett,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Klara deSalis,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Teri Hildum,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Lorenza Pafilis,ou=Peons,dc=bitwarden,dc=com", + "cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anda Joyce,ou=Peons,dc=bitwarden,dc=com", + "cn=Rustu Biss,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Geer Devault,ou=Management,dc=bitwarden,dc=com", + "cn=Bea Nemec,ou=Management,dc=bitwarden,dc=com", + "cn=Veneice Tobias,ou=Product Development,dc=bitwarden,dc=com", + "cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Dorolice Communication,ou=Management,dc=bitwarden,dc=com", + "cn=Danica Middleton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Bradley Stokker,ou=Peons,dc=bitwarden,dc=com", + "cn=Kessia Reiser,ou=Management,dc=bitwarden,dc=com", + "cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lope Keim,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Tonya Hine,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Lisa Lande,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lapkin Matney,ou=Administrative,dc=bitwarden,dc=com", + "cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lenee Topp,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Sacto Miskelly,ou=Payroll,dc=bitwarden,dc=com", + "cn=Sib Schissel,ou=Product Development,dc=bitwarden,dc=com", + "cn=Tessa Severin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Drucill Brickey,ou=Peons,dc=bitwarden,dc=com", + "cn=Caterina StMartin,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rojer Jurek,ou=Peons,dc=bitwarden,dc=com", + "cn=Shannah Colpitts,ou=Administrative,dc=bitwarden,dc=com", + "cn=Holst Lowder,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hernan Cano,ou=Management,dc=bitwarden,dc=com", + "cn=Opto Broten,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden,dc=com", + "cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden,dc=com", + "cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Jill Domine,ou=Management,dc=bitwarden,dc=com", + "cn=Calypso Bolding,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nicolina Scp,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden,dc=com", + "cn=Walter Cuddy,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden,dc=com", + "cn=Ruby Mattson,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Ranna Bedford,ou=Payroll,dc=bitwarden,dc=com", + "cn=Amalle Rodi,ou=Payroll,dc=bitwarden,dc=com", + "cn=Eolande Tarver,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Tilda Kirady,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Shailin Harris,ou=Product Development,dc=bitwarden,dc=com", + "cn=Axel Panter,ou=Payroll,dc=bitwarden,dc=com", + "cn=Karel McKerrow,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Arabelle Jepson,ou=Product Development,dc=bitwarden,dc=com", + "cn=Donna Imhof,ou=Payroll,dc=bitwarden,dc=com", + "cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden,dc=com", + "cn=Lucila Caruth,ou=Management,dc=bitwarden,dc=com", + "cn=Serban Kamal,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Suzann Minter,ou=Product Development,dc=bitwarden,dc=com", + "cn=Roselia Valvasori,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nancey ODonovan,ou=Payroll,dc=bitwarden,dc=com", + "cn=Deva Deugau,ou=Payroll,dc=bitwarden,dc=com", + "cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden,dc=com", + "cn=Almire Rokas,ou=Product Development,dc=bitwarden,dc=com", + "cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Aideen Sterian,ou=Product Development,dc=bitwarden,dc=com", + "cn=Norma Gording,ou=Peons,dc=bitwarden,dc=com", + "cn=Caye LeTarte,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Odile Blaufus,ou=Product Development,dc=bitwarden,dc=com", + "cn=Gerti Macchiusi,ou=Peons,dc=bitwarden,dc=com", + "cn=Carmelita Fucito,ou=Product Development,dc=bitwarden,dc=com", + "cn=Xenia Ertan,ou=Management,dc=bitwarden,dc=com", + "cn=Foster Swinson,ou=Administrative,dc=bitwarden,dc=com", + "cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden,dc=com", + "cn=Fwpreg Liem,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden,dc=com", + "cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Yevette Egan,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Clarice Seymour,ou=Management,dc=bitwarden,dc=com", + "cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden,dc=com", + "cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden,dc=com", + "cn=Miles Khorami,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden,dc=com", + "cn=Joon Panton,ou=Administrative,dc=bitwarden,dc=com", + "cn=Olympe Calmejane,ou=Management,dc=bitwarden,dc=com", + "cn=Felicdad Thornber,ou=Peons,dc=bitwarden,dc=com", + "cn=Pradeep Recktenwald,ou=Management,dc=bitwarden,dc=com", + "cn=Vanya Sherrill,ou=Administrative,dc=bitwarden,dc=com", + "cn=Kittie Bangia,ou=Peons,dc=bitwarden,dc=com", + "cn=Freek Xayaraj,ou=Product Development,dc=bitwarden,dc=com", + "cn=Emelina Dotsey,ou=Payroll,dc=bitwarden,dc=com", + "cn=Jacob Scss,ou=Management,dc=bitwarden,dc=com", + "cn=Nicholas Palasek,ou=Product Development,dc=bitwarden,dc=com", + "cn=Business Worsley,ou=Management,dc=bitwarden,dc=com", + "cn=Dita Billard,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Coleman Holman,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Elberta Shnider,ou=Management,dc=bitwarden,dc=com", + "cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden,dc=com", + "cn=Mirabel Queries,ou=Administrative,dc=bitwarden,dc=com", + "cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden,dc=com", + "cn=Arts Marttinen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Velma Goldberg,ou=Product Development,dc=bitwarden,dc=com", + "cn=Anet Sanity,ou=Peons,dc=bitwarden,dc=com", + "cn=Pars Events,ou=Administrative,dc=bitwarden,dc=com", + "cn=Wilow Veloz,ou=Payroll,dc=bitwarden,dc=com", + "cn=Grayce Dunnion,ou=Management,dc=bitwarden,dc=com", + "cn=Starlin Schrader,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Desire Nagle,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Shaylah Haertel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Tomi LaFargue,ou=Management,dc=bitwarden,dc=com", + "cn=Willard Kammerer,ou=Peons,dc=bitwarden,dc=com", + "cn=Tyronda Wippel,ou=Administrative,dc=bitwarden,dc=com", + "cn=Carmina Fulmer,ou=Management,dc=bitwarden,dc=com", + "cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden,dc=com", + "cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden,dc=com", + "cn=Sukey Sato,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden,dc=com", + "cn=Lawrence Perrella,ou=Peons,dc=bitwarden,dc=com", + "cn=Nathan Trumble,ou=Product Development,dc=bitwarden,dc=com", + "cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Noslab Gribbons,ou=Product Development,dc=bitwarden,dc=com", + "cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden,dc=com", + "cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden,dc=com", + "cn=Alayne Jurman,ou=Peons,dc=bitwarden,dc=com", + "cn=Ashlee Lamey,ou=Peons,dc=bitwarden,dc=com", + "cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden,dc=com", + "cn=Miquela Gilles,ou=Peons,dc=bitwarden,dc=com", + "cn=Arlana Ghani,ou=Management,dc=bitwarden,dc=com", + "cn=Avinash Rospars,ou=Product Development,dc=bitwarden,dc=com", + "cn=Raman Reporting,ou=Management,dc=bitwarden,dc=com", + "cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Vince Dallal,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Leanne Gorfine,ou=Product Development,dc=bitwarden,dc=com", + "cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Corinna Bashyam,ou=Payroll,dc=bitwarden,dc=com", + "cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden,dc=com", + "cn=Etta Medlin,ou=Payroll,dc=bitwarden,dc=com", + "cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden,dc=com", + "cn=Stew Chopowick,ou=Administrative,dc=bitwarden,dc=com", + "cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden,dc=com", + "cn=Josie Clysdale,ou=Administrative,dc=bitwarden,dc=com", + "cn=Moyna Rolph,ou=Payroll,dc=bitwarden,dc=com", + "cn=Roze Wiebe,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Khai Habelrih,ou=Administrative,dc=bitwarden,dc=com", + "cn=How Zisu,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden,dc=com", + "cn=Morena Zeggil,ou=Product Development,dc=bitwarden,dc=com", + "cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden,dc=com", + "cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden,dc=com", + "cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden,dc=com", + "cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden,dc=com", + "cn=Mathew Jarvie,ou=Peons,dc=bitwarden,dc=com", + "cn=Joelle Eason,ou=Product Development,dc=bitwarden,dc=com", + "cn=Angil Dungan,ou=Management,dc=bitwarden,dc=com", + "cn=Geraldine Landaveri,ou=Peons,dc=bitwarden,dc=com", + "cn=Madeline Congdon,ou=Administrative,dc=bitwarden,dc=com", + "cn=Rod Bedford,ou=Administrative,dc=bitwarden,dc=com", + "cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden,dc=com", + "cn=Eula Steip,ou=Janitorial,dc=bitwarden,dc=com", + "cn=Lennart Murphin,ou=Human Resources,dc=bitwarden,dc=com", + "cn=Emmye Reeves,ou=Peons,dc=bitwarden,dc=com", + "cn=Madel Fiorile,ou=Product Development,dc=bitwarden,dc=com", + "cn=Hiroki Edwards,ou=Product Development,dc=bitwarden,dc=com", + "cn=Douglass Rivest,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Tammi Kramer,ou=Management,dc=bitwarden,dc=com", + "cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden,dc=com", + "cn=Brunhilda Bezdel,ou=Management,dc=bitwarden,dc=com", + ], + users: [], + referenceId: "cn=Red Team,dc=bitwarden,dc=com", + name: "Red Team", + }, +]; + +export const group11k = data.map((g) => GroupEntry.fromJSON(g)); diff --git a/openldap/ldifs/directory-11000.ldif b/openldap/ldifs/directory-11000.ldif new file mode 100644 index 000000000..7bf44e43d --- /dev/null +++ b/openldap/ldifs/directory-11000.ldif @@ -0,0 +1,340708 @@ +version: 1 + +dn: dc=bitwarden,dc=com +dc: bitwarden +objectClass: dcObject +objectClass: organization +o: Bitwarden + +dn: ou=Accounting,dc=bitwarden, dc=com +changetype: add +ou: Accounting +objectClass: top +objectClass: organizationalUnit + +dn: ou=Product Development,dc=bitwarden, dc=com +changetype: add +ou: Product Development +objectClass: top +objectClass: organizationalUnit + +dn: ou=Product Testing,dc=bitwarden, dc=com +changetype: add +ou: Product Testing +objectClass: top +objectClass: organizationalUnit + +dn: ou=Human Resources,dc=bitwarden, dc=com +changetype: add +ou: Human Resources +objectClass: top +objectClass: organizationalUnit + +dn: ou=Payroll,dc=bitwarden, dc=com +changetype: add +ou: Payroll +objectClass: top +objectClass: organizationalUnit + +dn: ou=Janitorial,dc=bitwarden, dc=com +changetype: add +ou: Janitorial +objectClass: top +objectClass: organizationalUnit + +dn: ou=Management,dc=bitwarden, dc=com +changetype: add +ou: Management +objectClass: top +objectClass: organizationalUnit + +dn: ou=Administrative,dc=bitwarden, dc=com +changetype: add +ou: Administrative +objectClass: top +objectClass: organizationalUnit + +dn: ou=Peons,dc=bitwarden, dc=com +changetype: add +ou: Peons +objectClass: top +objectClass: organizationalUnit + +dn: ou=Planning,dc=bitwarden, dc=com +changetype: add +ou: Planning +objectClass: top +objectClass: organizationalUnit + +dn: cn=Blue Team,dc=bitwarden,dc=com +changetype: add +cn: Blue Team +gidnumber: 500 +memberuid: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mimi Mufti,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elianore Snapper,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nedi Siegel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Simulation Beswick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ola Paulhus,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Yen Sharkey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aila Koster,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Helma Bento,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Holst Issa,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nicolina Eu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aila Mawani,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eula Neault,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Grata Tomacic,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Panch Sziladi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Morley Chadha,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kem Bizga,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carmel Vawter,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Corly Tesch,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Laureen Ladet,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Access Banerd,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mina Chee,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fabienne Vempati,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Saman Bosch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Farag Collevecchio,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Randhir Dobransky,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carita Stetner,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Viktoria Relations,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anjanette Codata,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Antonia Killam,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rosene Bonner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Janson Vrbetic,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clyde Beggs,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cal Storey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pearline Towsley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hr Healy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ondrea Schultze,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lita Gille,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joelle Delong,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fabien Klapper,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Christie Andersen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sarena Semler,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Roselin Clinton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alli McCartney,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Helaine Sture,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elane Boggia,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elbert Strauch,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stock Krenn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maurice Wurtz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=YoungJune Grauer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jock Subsara,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Latia Amarsi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Armand Klimas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sibbie DeWiele,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kiam Surreau,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Clarabelle Committe,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Geralene Lan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Madelyn Runnels,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marshal Hawken,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carran Cramer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Allyce Chickorie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Risa Hatten,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cherise Racette,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ava Wetteland,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shaun Fares,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Miss Rogne,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Christal Logan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marga Narron,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emmalee Foods,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carmelina Scully,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shyam Carr,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Katie Jeska,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Penni Sarto,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marge Levere,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Colman Epplett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rama Akhtar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cari Cuany,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bobette Sherlock,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tandi Dao,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yetta Litherland,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rubetta Altman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=LeiSee Plato,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fayette Kos,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ginette Vilis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Behnam Cairns,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Othella McGrath,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Minnnie Hough,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Franz Kosasih,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Zonda Keyes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Iwona Eicher,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=KumMeng Dover,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tianbao Cemensky,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Thad Bertram,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dallas Gulick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marna Kindem,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Denny Worpell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tanitansy Thibon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ettie Sils,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Millard Tromm,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Merlina Benschop,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Liza Gumb,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jamison Hines,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Clem Bongers,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vina McKie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Duc Dinalic,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gena Lawther,ou=Management,dc=bitwarden,dc=com +memberuid: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marin Suprick,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Blake Skerry,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Amir McColman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Minne Danker,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Syl Hughes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jagat Beato,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Masood Tomassi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shamsia Mincey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tove Goodridge,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Elberta Incze,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bobinette Belboul,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lynna Elsing,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ioana Bresee,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Seanna Lasher,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bella Lally,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Romina Koman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Abbye Kurth,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cecil Babb,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dinah Kodsi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Loria Salzillo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Willi Kepekci,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tillie Laniel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Helene Esser,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lina Frederick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sluis Brauer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Prity Ruthart,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Arlinda Weddell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Coila Daniells,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Digby Abrams,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kalie Hine,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pierette Rodriques,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marleen Potts,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lela Kita,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Angie Kou,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mab Goba,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Roe Sandberg,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Randene Wintour,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Avie Lannan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Wiele Levert,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Amata Boles,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lpo Firment,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Katey Carkner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vito Mereu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lysy Halicki,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Morgan Christian,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shona Ernst,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Melynda Traynor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Frances Yvon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Garland Kenney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Reed Bassignana,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Robbie Kara,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lorri Abe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lethia Godse,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Royce OColmain,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leigha Contine,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Raina Morgan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Laury Madras,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=YuHung Marting,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Garry Brashear,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Klara Npi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Edita VanRijswijk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jeana Horwood,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lianna Horton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Felicia Audette,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jayesh Purson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zora Weldon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Detlef Morglan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Berthe Peter,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alyce Tangren,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Octavio Mathur,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Danica Rubinstein,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Karna Netto,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wallie Newhook,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cavin Circe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Notley Salinas,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marrilee Montague,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Neely Godo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karil Mielke,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ursula Potter,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Charil Garbish,ou=Management,dc=bitwarden,dc=com +memberuid: cn=William Groleau,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=LouisRene Albers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tomasina Willett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vivyanne Mulder,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Emelia Esry,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Saraann Lui,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Talia Mattson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yevette Lazzara,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kirby Hagley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marit Montelli,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carolan Bott,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anet Gehring,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kaela Binner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Libor Schanne,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sheela Adam,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jey Shackley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Linda Juhan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Donica Banens,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marianna Fagan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Otha Mousseau,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cathe Bolli,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Odele Docherty,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marshal Mayo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Corinna Davy,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Melford Sehgal,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Juditha Moree,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden,dc=com +objectclass: posixGroup +objectclass: top + +dn: cn=Red Team,dc=bitwarden,dc=com +changetype: add +cn: Red Team +gidnumber: 600 +memberuid: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gerardjan Toulson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alisa Centre,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Air Falkner,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Burton Backshall,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Frinel Beeston,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hpone Paryag,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sieber Sallee,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Caria Iribarren,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Odelle Translations,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carri Putman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Verene Rigstad,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Corette Barbour,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Becka McConkey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shamshad Kuntova,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Barbey Hews,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Olympie Sails,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bessie Kurian,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bette Pipit,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Benne Baab,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ediva Hately,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Faizal Vezina,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Champathon Bhatti,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Habib Barreyre,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nerita Jansen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rey Bayly,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vivian Faruque,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Steve Iyengar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Martina Fuson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maude Wippel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cherye Tanner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nadya Security,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Murray Longo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Catherin Witzman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Judi Nahata,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rudie Unxlb,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Noni Garwood,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Melanie Sager,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Breena Psklib,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jeni Gros,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yoda Mejury,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roana Jurman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Genia Oestreich,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bianka Zeiger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Saman Dunik,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pierre Latin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nariko Hobgood,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Isin Scheck,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dany Barel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dusan Bcs,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shekhar Howat,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shara Tims,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dacie Kato,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lenore Spraggins,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Prafula Diffee,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lelah Marcellus,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marion Commons,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gay Golia,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nha Chytil,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Newton Hoddinott,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fleet Nie,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=WeeThong Berube,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Farshid Gard,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Violet Potvin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Indy Calder,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gwenette Feild,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Henryetta Raing,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Petronia Bermel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Remi Giuliani,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Faizal Moussette,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Connie Barentsen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Verla Trottier,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vincente Isip,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pal Burchby,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ibbie Gung,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ned Pownall,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mayumi Presgrove,ou=Management,dc=bitwarden,dc=com +memberuid: cn=MunHang Altay,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Savina Wefers,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Caralie Ferner,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Julio Marineau,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Partha Archibald,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Emerson Tait,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Claudette Talbot,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dominica Nttest,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tilak McGruder,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rieni Faley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alice Rist,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nona Diee,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Adelind Loveday,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mariet Hotson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nirmal Loper,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Powell Brar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nir Saisho,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Beth Nolet,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Georgette Manica,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Beitris Linton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Othella Difilippo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Deloris Mattes,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brittni Holliday,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pat Pereira,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Walliw Marling,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Susann Biggers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Niek Sainsbury,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=ChyeLian Codack,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rich Ruigrok,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mason AbiAad,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ranson Darden,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Raju Ciochon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sammy Sourour,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lotti Farnum,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fouad Caton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Terry Lodeserto,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fei Bebee,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Oral Hamid,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ginnie Vosu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Roze Bakkum,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Belvia Aylwin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Duong Bannard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kees Rashid,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cami Glew,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tien Giuliani,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Evie Morin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dorena Godina,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Arn Ricketts,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Karissa AuYang,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Froukje Kennedy,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hazel Nash,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shobana Eisler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joete Stamps,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Oneida Curnow,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Naohiko McCray,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lang DeBoer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Selime Yuengling,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=ShingCheong Eastus,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Said Fran,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Olga Rehbein,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Quinta Blezard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Felisha Linke,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elisabet Somppi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Arda Poluchowska,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Valry Agnihotri,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gerri Rosko,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Farouk Korf,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Valida Ribi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maynie Levert,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Floria DAoust,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Den Ormesher,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pars Fleury,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Roshelle Latif,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Micah Eva,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Magdalen Howe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gloriane Knitl,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Issy Paget,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Justinn Mazey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nan Wellard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bryana Sathe,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pavla Keiser,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Myriam Blezard,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shobana Berna,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ginni Felske,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=HingFai Shearer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alissa Junkin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bryon Valko,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Matt Casey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lizette Klappholz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maryl Petrick,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Thalia Felske,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dino Kurauchi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Heida Kyoung,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fleurette Neyman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Susanne Keates,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alyce Gravely,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Paulo Whidden,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lee Abbott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mustapha Tull,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tsing Oakley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ozlem Nys,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Canute Fran,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Erina RTP,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Efdal Maund,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hiren Bopp,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Neala Seeds,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Torie Seamster,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Benoit Heilsnis,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Harish Shukor,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Felice Hazenboom,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lorna Kreimer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rheal Lauten,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leigha Elwood,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Basia Smyth,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mario Cassidy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amy Rafol,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lennart Shultz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sherwood Caton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tesa Suprick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maryl Fleugel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Clarine Hauge,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cordy Ghossein,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Judith Fuqua,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Billie Shoulars,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Trever Shearer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jacquie Desilets,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ramiz Gung,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cassey Papp,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rani Korpela,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Danni Tsuji,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fredia Handschy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Verna Muldoon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bjorn Treen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Garth Callery,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Livvie VanOorschot,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Anderson Hockaday,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kaia Archer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bethany Buder,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Willie Godse,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gaye Tjia,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Valencia Claise,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Loria Buckley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Junk Nishith,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bennett Biage,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Klazien Propes,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kenneth DAnjou,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Parviz Shahen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rueben Dynie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gunars Rafflin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Thad Besnier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Leonard Ireland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jany Lotz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nitin Operators,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hennrietta Siewert,ou=Management,dc=bitwarden,dc=com +memberuid: cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Othelia Solodko,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Thang Bushnell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carri Gary,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Valli Carlebach,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bobb Lacosse,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Abby Presutti,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Geraldine McLennan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Glenda Lai,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lind Zeiger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Susanne Alink,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Al Wrigley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Laurie Bijons,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Begum Minyard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hotline Au,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cornelle Coupal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Turkey Moser,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Warwick Mau,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Wynne Clow,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shelly Keller,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ole Carbajal,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Richardson Luxford,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Breanne Tassy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Austina Acree,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gen Rushton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lebbie Lortie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Geoff Achcar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hollie Amir,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Timm Alvarez,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Huan Adornato,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Reynold Meletios,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Britney Farrell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marne Tougas,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dyanna Goff,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Laverne NetTeam,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Genny Bladon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sask Griswold,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rae Beckham,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=ChoKuen Layton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Merlina Gofron,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jany Kamal,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Freddie Rolfes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nickie Acree,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Davina Amu,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Akin Capelle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Focus Decourcy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Moel Wynes,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bertrand Schiegl,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Coursey Stansfield,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tavis Theodore,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bello Madani,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sameh Kyoung,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Liem Isley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bailey Trickett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Martha Hovey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=ChinFui Iezzi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cortney Tolar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Walter Napke,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jenson Yabe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hanh Preo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Opto Decasper,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Regan Novak,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Orella Viriato,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ruthy Maher,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Roxanne Mohammad,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Guner Kelso,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Drusy Masapati,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Saibal Swartz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Magdi Sulewski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Katharine Byers,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chicky Sils,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kassie Dack,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Munir Gonsalves,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Grietje Ansorger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Latisha Dallago,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Luther Attard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elisa Bernier,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cally Rios,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Flossie Ordway,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jin Schavo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Birgit Reznick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sylvia Manica,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Adelind Vance,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Odella Anthonissen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=America Turney,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rudie Vaughn,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Idris Hotlist,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Petri Soreanu,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Inge Hurteau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tats McDermott,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lianne Wanda,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marinna Drane,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shelly Cavan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bryce Luetchford,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mariana Munden,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Morris Pafilis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shirl Clipperton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leona Buchko,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tybi Welsford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Baris Derome,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Munir Dickford,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ailsun Yvon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jeffery Becquart,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cindelyn Capozzi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Regan Hesse,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aida Blackwell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Justine Aguirre,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maurene Zafarullah,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Karita Donovan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gwen Prog,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cecile Evans,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ringo Campara,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Quinn Malizia,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Virgie Slaby,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kamil Daniells,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bevvy Dalloste,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Perri Gaylor,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Klink Bruneau,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Siamack Dace,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jay Ginest,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wilona Caudle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Laz Plante,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ellene Holberry,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Niel McComb,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Chen Crosson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lonna Leong,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Drusie Prewitt,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jen Assenza,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lynnet Henshaw,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wanids Pepper,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tamara Ahlers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mariesara CamelToueg,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Doe Yowell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Deedee Mattes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Luis Sinnett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Evette Bouffard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Armin Bakkum,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Grady Gregorski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ede Riggins,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vi Biamonte,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shauna Moizer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maryanna Rao,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kore Hedrick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marris Legrove,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Olusola Hudson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cordula Lewandowski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Olwen Salyer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kristine Guignon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Daphna Leong,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Larysa Singer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sharity Fusca,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pit Cotuna,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leeann Staring,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Indiana Bodford,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hermia Besse,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Keri Struble,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rolande Kiger,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cyndy Auton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Blaise Bookings,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Door Rigdon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Allianora Toperzer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Phaedra Criswell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Peter Dodson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rhea Brewer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Junette Bayno,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jonis Innes,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Femke Roddick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nanine Psutka,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stergios Koonce,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Moyra Boulay,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Door McKerrow,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Paolina McCaughey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Greer Metzger,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marlena Boyachek,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=LyKhanh Hollbach,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rosana Wendling,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eve StVil,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=GuoQiang Hagen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Clarette Stokes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mo Barsch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Janos Running,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hanco Epstein,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Daisie Solman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nachum Biard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Essy Goyal,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Armelle Schwane,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Brietta Plato,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nolana Hedman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zenia Hilwa,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Souphalack Delong,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Robbie Dibler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Biddie Tedrick,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gracia Peluso,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sanja Maxey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Petronella Tullius,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Henrie Lorint,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Donnette Kruger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Delle Schwantes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Print Gaitan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Patsy Mattiussi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Phil Afkham,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sheldon Blatt,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hector Manus,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pollyanna Goza,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Koren Penner,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Iteke Wiedman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Darrelle StJohn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kazuhito Schram,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shirene Eaves,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Desiree Southon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lianna Lackie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Misti Sayed,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dione McCain,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Deny Stasiak,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ladell Butvich,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Loralyn Eller,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jan Crosson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Subra Tuttle,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Teruko Fleischer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Quintina Ying,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nerti StJames,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=RongChin Guatto,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mercer Zattiero,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Budi Enos,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tuoi Abdou,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nath Labarge,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sophi McCullogh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jorry Babineau,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Adey Fogelson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bela Fouillard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Paola Barbeau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Milo Hasen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Corabella Scarffe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Parkinson Bir,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Salis Quilty,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Stormi Vempati,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lauretta Salvin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sarine Quane,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rocio Brauer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Margaretta Muchow,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dona Nairn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carolien Skiba,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cathee Bress,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mandy Settels,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Odetta Tzuang,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Arne Matney,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dvm LaPlante,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Edeline ORourke,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jiri Sengoba,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Terence Ashdown,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Donni Keilholz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Minhwi Vallet,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Allianora Wissler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Francisco Elam,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Katie Labrie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kazuhiko Drewes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Meade Esmaili,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gwennie Sojkowski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Winona Paine,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chiquita Ferrell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Burgess Platthy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Harlene Kortje,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Suhas Ilic,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kamil Caines,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=HorLam Momon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Farah Brennand,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wilfred Issa,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zino Larson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rhiamon Devault,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Michiko Sich,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Weber Ishii,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Beppie Kilburn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Durali Abelow,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eleen Pappu,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Betty Elzer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sallyann Environment,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ans Pozzi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Blithe Sherow,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jacklin Alles,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pauly Wycoff,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jackson Narron,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hermia Probs,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Scovill McPhail,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dian Zalite,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Puran Dundin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Migdalia Warner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mechelle Kirn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jaan Hartin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anne JantzLee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cherey Desantis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Celie Aksel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aleta Khosla,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lennart Cramm,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elex Sohal,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marianna Annas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sergei MacElwee,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jay Dutil,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bevvy Routhier,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kacie Sconzo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annadiane Davids,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Karan ETAS,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Betti Savoie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Croix Dunn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Raymond McCaw,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Laurna Ferner,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cathe Boyer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hanco Elgin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Krier Brickman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aime IBNTAS,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Theodore Pierson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Monling Wormald,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Amandy Poma,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carri Loper,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cherri Bramlett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tai Nerem,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Luciano Homayoon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Clovis Kaji,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Constancy Sugihara,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Micki Pownall,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Norma Rabipour,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mietek Nadon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sophie Malhotra,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Prue Zollman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shaughan Lockard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marga Hao,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elset Yach,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jaynie Moniter,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Penelopa Kenik,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nam Mersch,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Valida US,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jillian Pde,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Everette Klaassen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Selime Helstab,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Norean Wilford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bebe Spurway,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alka Kowal,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Michele Biggers,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Connie Stotz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Layne Efstration,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ankie Commazzi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cubicle Qu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wassim Charette,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kas Audet,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Emalee Lockett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Janell Kurniawan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Georganne Munikoti,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Neala Casalou,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hai Grubbs,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alyssa Strackholder,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jossine Hoddinott,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Phyllis Majd,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nevil Rosch,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lyndon Rao,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Karina Kempffer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Khalil Popovich,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Thomasa Dann,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rocke Tedrick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Subra Howie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dasi Rabon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ivor Shennan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tosca Linfield,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shandee Vosup,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Janith Gursin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rora Kingrey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rhett Vavroch,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Allene Izzotti,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ag Charlino,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Archie Kenyon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Malissia Albright,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mccauley Guillet,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maudie Overcash,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yolanthe Svo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ashley Koskinen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Babb Mayne,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Godfrey Wiltz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Arlana Crowell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Arina Kempffer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kip Grimshaw,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Addons Wurtz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Farzin Nebel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shell Hurst,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Khosro Kuo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Michel Kernahan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Melba Besnier,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ailee Schwenk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Klink Aguilar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Arnis Daly,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ofilia Keilty,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ans Casperson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Janick McGregor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chuan Bernstein,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Donall HickmanMiott,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Doc Cantlie,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Christer Chapen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Flory Ziegler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Altay Stevenson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mada Curtin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dasha Kivell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Minna Hyatt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tiff Brambley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gerrard Kinos,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Norikatsu Knox,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sabine Litz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Candee Rightmire,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jorge Layton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ed Joe,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Portia Sim,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jian Gardner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ashien Brewton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Opto Seay,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rolande Prattico,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Reggie Boggs,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Zero Dourley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gabie Hirayama,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kalindi Keene,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rod Krenos,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bahadir Borozny,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Prudy Morelli,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Zero Volchegursky,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Riyaz Leone,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jade Njo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Albert Healy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Helsa Eder,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Patt Overby,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dasya Chenard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rosana Hensen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Thekla Helpb,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jacquetta Alary,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nari Dilallo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Betti Tanner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Weilin Tupling,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Roly Odden,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Junie Siegel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karna Nairn,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pascale Innes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Darbie Scalabrini,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elsi Toles,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Steinar Royster,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sono Wissler,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Par Fani,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Matti Beisel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Regine Sergi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Oralia Daymond,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Adey Mein,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bettina Petree,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sisile Larner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Roseann Sheldon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Irc Grona,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Michael Verrenneau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Walley Gostanian,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emogene Assistance,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Florance Berna,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Barry Holcombe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Grietje Gilstorf,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Una Shang,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gina Pilotte,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rolando Yancey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ardeen Porter,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gajendra Dery,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jere Jasmin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Caritta Verma,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Edric Tilk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Janelle Downes,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rebeca Dicaprio,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Everett Pittam,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Erwin Hlady,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shiu Masty,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Terrijo Roth,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Venus Fischetti,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hewlet Noorani,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pansy Ochman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Henny Recabarren,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Humberto Gottschalk,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vernon Planthara,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Clo Upshaw,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Afton Sykes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vesna Kowalski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Prissie Rintala,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Virginia Telfer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ginette Brans,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marsie OConner,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Amandip Habib,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ezella Pesik,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Liv Tabl,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joni McClarren,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leonida Stefanac,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Viviyan Baird,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Robbin Meriwether,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gwennyth Basser,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Binh Aversa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marlee Jawor,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Antonio Risdal,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dieter Dickinson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gilda Shnay,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Agnese Herrington,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rebekkah Meleski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Noelyn Blander,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tamera Rennie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Portia Cruzado,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Robinett Samson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sherman Frodsham,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maury Jansen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tilly Ocampo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pauli Capes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Augusta Subick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jastinder Gysel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jason Loveless,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pamella Trudel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lucina Volfe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sheena Chung,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Andriana Myers,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Henk Goin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Leese DeWiele,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Emp Lenior,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lorine Skaret,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rora Duthie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aubrette Carlson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Delisle Moledina,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chloris Fogle,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hadria Keung,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sarena Sandhar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shina Vilhan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Candace Nadler,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Osiris Rtpbuild,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Patt Lampe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ola Fricks,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jobie Brassem,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Amarjit Shull,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marriet Grau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kellsie Tilmon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Deloria Tulk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Julianna Towsley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Power Surazski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=YueMin Dube,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gerald Hamel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cami Hanley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Silvana Barakat,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maxey Bulman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dzung Newsom,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mats DMSDB,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kevyn Minai,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dhanvinder Biss,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joan Badowski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Libby Sarna,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Madalena Farnham,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Peder Chowhan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bird Bluschke,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kaycee Wiggins,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fwpreg Daymond,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jobi Bryant,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Modesta WAR,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Eveleen Jasti,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Toney Singh,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Amelia Altekar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Audivox Duncan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eliezer Rheault,ou=Management,dc=bitwarden,dc=com +memberuid: cn=KimMinh Lenehan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Viole Kirkland,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bahram Strauch,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jagdev Paulett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Graham Tanner,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Beau Watkins,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Durali Pickens,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jorry Yost,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Laser DeNest,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chanda Leenher,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Luke Catlett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Femke Krikorian,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Evert Traynor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tess Ketchum,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jordanna Cacha,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brietta Dages,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Natver Alleva,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Phan Rimsa,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Thakor Brandon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Samir Guerin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Colene Revis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mike Funderburg,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rozalie Sassine,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jinny Siddell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kai Etemad,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Odette Wagle,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Josephine Leon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gale Leder,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Danny Mau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alma McRann,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Martijn Groth,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Allyson Boroski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Janice Powney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marys Marleau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Colin Langelier,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cornel Delzer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Liane Pappu,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ollie Mir,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tiffy Moyers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Catja Taralp,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jey Musick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kamil Doi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lelia Gougeon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mamie Godfrey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ibby Dragan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Krier Rouer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Neila Donleycott,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vithit Toothman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brear Wiklund,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Joletta Chaaban,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Allan Kpodzo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alvin Fleishman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Amos Nadeau,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Astra McPhail,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Miguelita Lukie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joellen Rummans,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Blythe Bessette,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Felipe Dassie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Renu Dermardiros,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yen Sails,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Claudie Willett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Antonia Kashef,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leta Weeks,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Saraann Ku,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Malgosia Allaman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dorri Brickey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gilles Tullo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stacia Wever,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Herman Georgiou,ou=Management,dc=bitwarden,dc=com +memberuid: cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Clarey Shibata,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elyn Witzmann,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Corry Lasch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ilsa Reeder,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shaib Fysh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Goldarina Delaat,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Con Liskoff,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dannie Belaire,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Syyed Nasato,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Paloma Meijer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anestassia Pilch,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Caroline Weakley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Brad Widener,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nga Holvey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Breanne Hatten,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Babita Yuhn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sanjoy Burbage,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hettie Grassmann,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jacques Lobello,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Susi Vezina,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hynek Bergland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Brenton Zou,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mohamed Popper,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Suzan Brisebois,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Violette Capostagno,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liem Dalloste,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bernita Hui,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mab Bhatia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bamby Ressner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nadir Harold,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Norikazu Loughery,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gerda Cuthill,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Blakeley Moynihan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ronni DMSDB,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Desdemona Howes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Micaela Grelck,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Moria Brandstadt,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Raf VanAlphen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jianli Seniuk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stephani Wheatley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Misty Jamison,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Liduine Brindley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Inam Cripps,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Megumi Sattler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marlies Zalokar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tiphanie Banik,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rosene Couse,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Adoree Sevilla,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Caye Clinton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ernie Waybright,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Doc Hamlett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Abdul Peschke,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cordi Systest,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jania Mong,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kristi Plato,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Simeon Schober,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leyton Artuso,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Di Corritore,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Norbert Meubus,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Allsun Briard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rec Desjardins,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Daveen Portelance,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Christel Lebon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aura Kloth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Laser Totino,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mike Engman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marijo Tranter,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mainoo Fran,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Janos Coulman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lacey Benfield,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Harrie Devenyi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lishe Tatum,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gena Skwarok,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=PierreAndre Crucefix,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ree Smits,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Panch Talbot,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Janean Wittich,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Notley Loyola,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Caitlin Grover,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cissy Paris,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kedah Hedman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Susy Simard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nahum Mofina,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Patti Simcoe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Clarisse McArthur,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dwight Naujoks,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Melodee Buzzell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Schouwen Chahal,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kanya Reuben,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marji Corvo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Annarbor Zitko,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Genovera Thibodeaux,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aleen Gure,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Trever Jowett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Concettina Cegelski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eleen Lew,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Minna Reddington,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Stateson Benning,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emil Pavlic,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kassia Newnam,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Clarke Angeli,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Flor Rabon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Damian Berning,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cristal Lum,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Palme Lystuik,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shina Tremaine,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Muire Cencier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Brinn Weinbender,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Candee Gozen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Julienne Spencer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Benny Kimm,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kyle Pape,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hetti Maciejewski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Peder Bevington,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Royce Kerr,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Madelon Armitage,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sohayla Resnick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Teri Fabry,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Deina Martincello,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aleen Ayre,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roseline Risher,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Reuben Lychak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kelsy Rozier,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Herronald Walta,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Oralee Shiflett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maurice Coe,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Greg Candelario,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Genny Horemans,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Willeke Gagnon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nijen Testa,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Binni Vasile,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Thor Mamoulides,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Merridie Charlinski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sundaram Trocchi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Divine Sebeh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tiff Mader,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Karly Adornato,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Petrina Bovey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Andie Subasinghe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kimiko Florescu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Agnesse Kiger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Trude Hanham,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Greta Timler,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bobbye Ludviksen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Adiana Tohama,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hildagarde Neumann,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sibylla Younger,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jodie Eckstein,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rea Barolet,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rustu Paige,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Davinder Caves,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Celyne Settels,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marina Higham,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Augusto Gawargy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hudai Popp,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Babak Tussey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lionel Childers,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Robena McDevitt,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gael Elias,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Floria Harless,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kandy Chanco,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vanya Pelissier,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Noubar Shute,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eliza Roney,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Els Sridhar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Masood Kemppainen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Karisa Botting,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Francisco Dallaire,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jordana Hersee,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gillan Hufana,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shep Schroeder,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Masahiro Haughey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mariele Puukila,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=An Assenza,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nerta Huitt,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dela Gilliam,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Edric Dolginoff,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Livvy Flores,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Flossi Fumerton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fanni Noah,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tobe Blostein,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Madlen JodoinStJean,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Felipe McBroom,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Stella Hoare,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anthony Pringle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alexina Buschelman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Floris Decelles,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bella Jayamanne,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Erminie Normandin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Niz Colucci,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Muni Strock,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aybars Lavers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Careers DeSalis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anna Meckley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lilith Stejskal,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Prudy Australia,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Stevena Alberse,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Janson Finak,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Trudy Hillring,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Albert Rolfes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Coletta Azad,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Celestyna DeVries,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Darda Mitrani,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Burton Falquero,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lishe Suess,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Adora Droste,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Paper Blakeslee,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Teena Klavkalns,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=ChiKwan Lakhani,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Niz Tassy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marg Cavanagh,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Anthony Luyten,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mira Hinkel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Florette Amos,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Clara Maglione,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kizzie Leang,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Celestia Tobias,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jet McGregor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kristien Brokaw,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Karole Su,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Laureen Shrieves,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dalila Hassold,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Miro Trent,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ashley Woessner,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Orelia Nasir,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yoshiaki Blann,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jolie Dropin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mami Badjari,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nash Enstone,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Binny Strannemar,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dorri Auker,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Beverie Wada,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vivian Skaftason,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fayth Marr,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rowan Reichow,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Clementia Pesik,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sofie Baugnon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Astrid Montoya,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Grover Dehoff,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nerty Nair,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rene McKearney,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pat Libadmin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kanu Slozil,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cecile Shupe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fahim Kandra,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gerald Laroche,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Devon Pesold,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Daile Burger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tricord Gumb,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shena Atteridge,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Silvester Piette,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Amnon Gause,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clemente Eva,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Donnajean Carron,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ailene Chavez,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Annet Leshowitz,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Willy Jimenez,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Teddi Arai,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tammy McBeth,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Waverly Cadshare,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=JeanLouis Okura,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tonia Khosla,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Binni Rasmussen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Herb Stansbury,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ralina Fouke,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Merridie Vankooten,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Millie Doda,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Alexia Layton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lottie Filpus,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tommie Craib,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Narrima Cavnar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Walt Gentes,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gay Acelvari,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Raeann Laws,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=YuKai Goodrow,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tad Caceres,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dorreen Dewit,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Francisca Griswold,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Motaz Metz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lorry Suprick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cassey Precoda,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kevina Zauhar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Diandra Pafilis,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shaylah Poyner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Agenia Joshi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Imre Farag,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alina Naphan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Twila Billard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ari Windom,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Opaline Gomes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Svend Bongers,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Suzette Burkey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Klazina Grabowski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jester Alink,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Andre Hatzenbichler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Raudres Negandhi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marj Posta,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=WaiMan Stillwell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Audi Adamski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Earl Stanton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Reggie Venturini,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jannelle Berro,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marya Buford,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kally Tinney,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Verile Maksoud,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shaun Sandhu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Michal Andrew,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Valerie Efthim,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sadella Loggins,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=HackHoo Hunter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Meter Hickerson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MaryKay Lan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Giana Pierson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shiela Anthonissen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Toby Winterberg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Leticia Metheny,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Raven Tuan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leddy Kochis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Niek Tripp,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Curtis Caglayan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eladio Nadler,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kameko Ayres,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Florinda Templeton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Omayma Halula,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shellie Blethen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Corliss Pharris,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mareah Gooderham,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Olwen Yelvington,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maiga Buder,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Madlen Booking,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darell Liang,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Neena Mayes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hannie Robieux,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Regine Iantaffi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gladi Steffes,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kalli Chanonat,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bob Gronwall,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Faunie Moroz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Avrit Abrahim,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bernard Placido,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Flory Ganadry,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Berti Steski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Charline Fross,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bonnar Burns,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kate Scorziello,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Olenka Tota,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ceil Foubert,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Devinne Zanga,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Letti Boocock,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Charin Fallah,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Clea Astorino,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cassandry Hilton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karlene Homan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anjanette McCaffity,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Micky Brodowski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Neetu Miles,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rhodia Irick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Phat Mecteau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tzung Winfield,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Amandie Britman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Brittani Guitard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hubert Majors,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=KinYee Amini,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Riva Malott,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gizela Fenez,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Thompson Santos,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Student Anker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carlita Flores,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Domenick Thomey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lanie Wayler,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roxi Leonida,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Isin Paczynski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Condell MacPhail,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Swd Braganza,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Herbie Bilton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tas Hagerty,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cristin Pambianchi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Deann Lutz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Datha Apter,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aretha Kursell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Norry Trpisovsky,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ladell Doig,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mer Hasan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Therine Solman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Garnet Gooch,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Colli Magee,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sammy Topol,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chelsae Cacha,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Melvin Stanton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Annabella Fisher,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pelly Difilippo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Virginia Clites,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lionel Kahil,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Beatrix Weger,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Roxanne Klimon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ernestine Campara,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gaal Jcst,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nancy Cesario,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rosita Carella,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Keven Cordy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wan Savard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jen Kamoun,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zitella Paylor,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Logan Blaylock,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Merunix Walkley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kaja Runkel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leia Samuel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Catha Matsunaga,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Luc Harless,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Katja Firtos,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mechelle Khawar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Channa Abernethy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Benita Lathrop,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zelda Naem,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bettina Kudas,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bettye Stern,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Janice Mattes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Indiana Cobo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lan Galbraith,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joey Godcharles,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anastasia Sunstrum,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dyan Reller,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yih DeCecco,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Leese Paul,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nani Dedas,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sari Rettie,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Etty Lowther,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Toss Basa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Naohiko Fradette,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mathew Rodkey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sherry Maness,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Delphinia Brehm,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Roselin Payn,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Arline Fryer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Piper Lesperance,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mindy Herring,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vonnie Bullard,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lotti Gutcher,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sheldon Overton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Celestine Zargham,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marv Regier,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Teddi Behler,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pascale Lawrie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Class Focht,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Leonida Raha,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ree Goodier,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Raj Mahlig,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ruchel Jobs,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Fanchette Wittich,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lorie Boucher,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MingChang Presner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dierdre Rehel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ulrica Benda,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Brechtje Revah,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Howden Hoxie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marjory Hardin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kac Geuder,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Conchita Borek,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carter Billard,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alison Culberson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dev Lynham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lucie Longhenry,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Somsak Breault,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Regina Astor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Idalia Krauel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lolly Mattson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Corinna Jesshope,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Guinevere Bower,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Frederic Kemish,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Barb Mandel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rochell Muise,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Thea Atteridge,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Theressa Marks,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Agna Ntelpac,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Peder Grewal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Melony Nahas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ileana Ude,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fscocos Azari,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Charmaine Rahmany,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ayn Odum,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Norm Berrisford,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Elly Nagarur,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lenette Sandness,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Emyle Fuqua,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Elysia McDuffie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lorilee Projects,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Amalee Borg,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=ThanhHung McAdams,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jessa Simmons,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Timothea Culverhouse,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dorice Op,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Estrellita Haney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maddalena Hammermeister,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Alfonso Benyon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alfy McBroom,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fina Hoctor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ardene Cuu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cristie Madani,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Stephane Zorzi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ellen Kruusement,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Arnie Vickers,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tak Kuhlkamp,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Linet Gartshore,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dina Satta,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Candis Bothwell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Daphene Minck,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Adan Duncan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Willa Trisko,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Katalin Totten,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=CostasDinos Labrador,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Andrzej Coulman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sheryl Perrin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Emma Mullaney,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Son Beneda,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Grey Mathis,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Briney McReady,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Erle Gravitt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tresrch Valko,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cherey Braginetz,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Annadiane Kok,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ozay Dulin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Avtar Markle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rodi Pettinger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anett Gach,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Golda Hanington,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marlyne Shein,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Doortje Kennedy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jacenta Pufpaff,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kirit Steede,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Declan McQuaig,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fairy Soyster,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shashi Vitaglian,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Henri Challice,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Moreen CSR,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Geralene Sabri,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Melhem Sherrer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Coors Lavarnway,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Perrine Kursell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alane Lou,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Demet Ince,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bev Lineham,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Corinna Thorson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Daniela Rizk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mentor Endsley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=PeyKee Rusin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wojciech Zorony,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Juliane Lafata,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Buck Willoughby,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Atsushi Bible,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Veen Graibe,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Juli Poe,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Keys Foos,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hanneke Weil,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Narrima Kaplan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nellie Guth,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ermengarde Swact,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carmelo Holley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Virgie Ensign,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vittorio Msg,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ragui Radford,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amalia Giertych,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bert McDougall,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cherida Behlen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Willa Brandsen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nancey Piggott,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bui Potesta,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ivo Dobbs,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brigitta Maskell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nong Polashock,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gisele Forbes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Madonna Sheu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dzung Evans,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hermione Delf,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Koray Deleon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Korie Swinks,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Wynnie Joyce,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Teetwo Jarman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Flss Daquano,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Doc Frederick,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hellmut Harrod,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kelcie Uchida,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Oksana Sitler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vitia Dacre,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carly Cencier,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Loc Sochovka,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tonye Lenox,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Olly Ooi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Margie Herman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Giustina Farrington,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Liviu Fisprod,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alfons Toothman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ronica Espinosa,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jeane Yuhanna,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Paulien Misutka,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Humberto Azevedo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cissy Benning,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gib Gouhara,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ameline Ikotin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Johanne Coloads,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Germaine Sabri,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Justine Gramiak,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Selma Coxe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nga Hoag,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Claudette Towers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wilhelmina Yardy,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Farooq Rosche,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elyssa Schvan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Phoenix Jims,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Melesa Kaypour,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shoji Truelove,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Turus Risto,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Metrics Bartley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Calla Floysvik,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alparslan McAdams,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tej OSullivan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Melly Plourde,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ara Coules,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Heida Barnett,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marylynne Wolski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mellisa Cormier,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Neely Schluter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dorelia Cohrs,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dede Fernald,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Real Piitz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Petunia Croteau,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Haley Tsonos,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hyacinth Hamner,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Clemence Gardiner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Francine Laurich,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Narrima Saucerman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Han Cozyn,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Chuck Dorr,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Andre Ashworth,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Edin Kell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Theresa Rendon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jacenta Byczko,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cass Boehms,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Melba Holvey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cristofaro Beland,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Inam Ouzas,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Quang Austin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kassi Ottosson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Christian Bradlow,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Azar Darnel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Reza Reinboth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Indira Dimitry,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Subhashini Freiwald,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Izzy Metherell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dreddy Willett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Avis Benham,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wilie Eva,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zorine OHearn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Niek Salazar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Prabir Bachynski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Steen Selchow,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tessi Nagai,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sande Lonsdale,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Euphemia Byer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jewell Samson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Haley McMannen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Joyous Bessette,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Emanuel Tupas,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Janeczka Bautista,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alf Meunier,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dena Stevenson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Khalil Verch,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Adela Rios,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roselle Sowry,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Leonida Wenham,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Camille Balog,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lona Tuttle,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ryszard Dack,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Channa Bergeron,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dannie Leth,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Noell McWalters,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ally Viehweg,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elena Leima,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Manny Grau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cornie Hobgood,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kirsti Sridaran,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cynthya Ganness,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Becky Bento,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Murial Richardson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ashok Ugwa,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sarena Devgon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Valeria Bracewell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cristina Ard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Katrinka Harville,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Colette Chern,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=PohSoon Mellor,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Reg Mou,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Flor Fong,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Will Imbemba,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Serene Lindquist,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Joeann Upton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fariba Cowell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annadiane Meijer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cleo Mgmt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ferne Finane,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elisabetta Angell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Me Womack,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Randie Takata,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Birgitte Marshall,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lorita Pilon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ind Brindley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gaal Ugwa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tilda Sharratt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yueping Kardomateas,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bela Plaisance,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carlen Privitera,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Survey Vanta,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bevyn Germano,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Norcal Sabourin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cuong Schwab,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Seang Reichinger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sherryl Appell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rayna Hanford,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hynek Alles,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cal Wilby,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Furrukh Gros,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Barlas Rezzik,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cong Kish,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ping ONeill,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aladin Mikulka,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marj Baldock,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Abby Theocharakis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Linnea Boucouris,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bernd Gaebel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tiina Ackaouy,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Florrie Latin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bliss Salinas,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Binny MacGregor,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Margie Rubin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sarene Videa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Harpal Iskandar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Melloney Mussar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Arnett Typer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dulce Dore,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mandy Auth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nata Lampman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Scpiivo Lauten,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Susannah Ergle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sharona Purohit,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sukey Ameen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dhawal Obenauf,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nuntel Cozart,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Turkey Massone,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maxie Aladangady,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Housseini Sammons,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Saraann Koman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Saudra Griffith,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yongli Craver,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pardip LaVecchia,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Subhash Waid,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Deane Saiyed,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joannah McBryan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kyle Anconetani,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cicily Carlisle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Carole Coats,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Leonelle Halpern,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Clare Deatrick,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marty Maunu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ronni Paynter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Duong Davies,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Greer Behlen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Poldi Volk,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Estelle Specs,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tina Guarino,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pamelina Kovats,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dany deGrace,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden,dc=com +memberuid: cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Grata Hosang,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Eoin Ketchum,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rora Feild,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Chryste Tsenter,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yoda Calleja,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vannie Babalola,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sheryl Diec,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Candice Scribner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Farand Rambow,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darb Jedrysiak,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Valentia Edmison,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Reid Hotline,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nelli Camblin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shaji Heilig,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Angil Shariff,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Linet McRitchie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chen Mayer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anibal Nafezi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Monteene Azmak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bep Ramsayer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Emilee Mereu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Madalena Brodie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Liese Childers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shekar Finnie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ilysa Connor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Milly Taghizadeh,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Guglielma Gomes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Malorie Sei,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Loella Stephenson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rozalie Farr,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jessa Humphrey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Audrie Rembecki,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Miroslav Federico,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Steffi Voelcker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aloysia OKarina,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Betsy Braun,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carling Cupido,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Saman McNichol,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Selma Slotnick,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Felicia Holz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Joke Cottengim,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sonoe Linke,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marce Tracey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Muffin Gadbois,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ros Rajwani,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lynnelle Shane,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kissee Ide,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leesa Trader,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Indy Pullan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Micro Valente,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lea Marineau,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dinh Yadollahi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nj Patchett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Helsa Calis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Drona Panter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Filia Magnusson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bernadette Schmelzel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elva Radcliffe,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Janson Sealy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bethina Horak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Manny Burkhardt,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mehmud Rios,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jinann Wildeman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lisetta Semler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Trenna Fradette,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sashenka Warwick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bassam Cisco,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Yvan Kea,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ijff Monforton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anderson Nunold,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dulcia Burkey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Isidora Wilczewski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Alexine Tarof,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ashok Bagg,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Antoni Friesen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Beate Ribot,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pde Bautista,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marco Cho,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ashly McNitt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ginni Brunelle,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maybelle Hammond,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Georgine Delaney,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Brent Guindi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Annette Madgett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tesa Duda,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Idus Welch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fina Volkmann,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eirena Mahn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pinakin Spooner,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kannan McCabe,ou=Management,dc=bitwarden,dc=com +memberuid: cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Magda Bullard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dzung Datema,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kiele Boggs,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Othelia Humphrey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Willabella Sarto,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maitreya Carriere,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marje Sherwin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dode Schnell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=PuiWah Szopinski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jack Totaro,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hettie Phagan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Margalo Scholey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Delly Newnam,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ernst Dinkel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Charis Armstead,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Purnam Dillabough,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cart Fillmore,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yuen Maybee,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Petr Battershill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Beulah Nowell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Aryn Mills,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Car Gillet,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ronn Gorsky,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roly Dirilten,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Betteann Thaker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Howden Raglin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Madeline Sipple,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zulema Marra,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Amalita Ivancevic,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lazlo McClelland,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Angele Mitrani,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ghislain Kechichian,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Merrily Administrator,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zena Farrell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ovila Lanctot,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Karie Kurash,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kalina Mednick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yannis Behnam,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lionel Carevic,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Olav McNitt,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jobi ONeal,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ellissa Marson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anita Bovee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gavin Buckingham,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Joke Reddick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Johna Revill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marlee Gillespie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Des Theriot,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Daphine Kobeski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Subhashini Bachewich,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Linnell Altekar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aubrette Holz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mollee Etemad,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Renie Spicer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Halley Clason,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mister Stampfl,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hq Skelly,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anthony Markham,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Neilla Shingler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Korrie Stallcup,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Delcina Barcza,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Evette Coddington,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Joelynn Lightfield,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Isaac Cossota,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lyle DorionMagnan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tsing Daya,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Achal Justus,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ilda Meskimen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jaya Ellul,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tessi Hipp,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tatyana Gooch,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ashlan Inamullah,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jandy McCollum,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kattie Thom,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hideo Nelson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Karam Abraham,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Evita Mahin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Doll Hwang,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Atsushi Gros,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lacee Kraus,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tonu Doncaster,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tobye Rupnow,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gilberte Correia,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elva Goza,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nath Gazier,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Serene Tandiono,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Guner Sinnett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carolien Predel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fouad Woodman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Remy Muenstermann,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Erkan Burkert,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Linnea Oliveira,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Steve Nass,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Henrie Malkani,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Almeta Batura,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Laurianne Storey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nady Straub,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sami McQuaig,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Moises Semler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Richard FWPtools,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Danielle Sells,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sylva Hikita,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jeannine McMurray,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Robbin Vanstory,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gertie Dix,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Daloris Pippy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Robinia Chytil,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Randy Haaksman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ginn Rembecki,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Deva Morimoto,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sioux Laney,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Demetri Sepe,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mickey Fiset,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Avie AltingMees,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kanya Ralph,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elisabeth Viens,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Christin Hussain,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Stephannie Oam,ou=Management,dc=bitwarden,dc=com +memberuid: cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kerrie Cholet,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Barnes Todaro,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Paulie Stellitano,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Quon Lamm,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wenxi Reade,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fabienne Hoehling,ou=Management,dc=bitwarden,dc=com +memberuid: cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lanita Delorenzi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Chong Alleva,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Theresita Flanagan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Luc Sutton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Adnan Madani,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jason Quelch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Terrence Rolston,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Douglass Kwee,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Manjit Sankey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Thalia Majid,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anna Gullekson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Steffi Rok,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gerrard Kearns,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Teri Braginetz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nuri Spieker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Flossy Leveille,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Witte Houghton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gateway Szaran,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Othelia Henley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Stacia Sova,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kellen Nickells,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marika Brombal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kally Woodyer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Constancia Liao,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alexander Riley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bobb Hubers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vannie Clenney,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Udaya Kingaby,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dari OHara,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Merralee Firment,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Aurie Alanoly,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nadim Junkin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Erik Chapman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Adora Lamers,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Micah Brabec,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annette Brandsen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Amabelle Lockwood,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rosaline Carldata,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Diana Felczak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Regis Liesemer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joke Mrozinski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marcelle Hine,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Grayce Cicci,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Idris CPM,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ree Budhram,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elda Ranahan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shailendra Kapsa,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Persis Emig,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Laurel Grills,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Saloma Jaques,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sebastian Kammerer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Grayce Roesler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Helene Krowlek,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Charman Nagy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jacqueline Sorathia,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Leanne Devine,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Manon Benham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Meg Lara,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sanae Carpool,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mia Willis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gheorghe Younan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Val Toth,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ishan Puukila,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Davinder Thibert,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mounir Theoret,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Air Baldwin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Arlyne Miao,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Debi Seniuk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pas Maksuta,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Camellia Tencer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=HinWai Menaker,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lenore Inrig,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sibeal Manner,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vo Filpus,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Martine Captives,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Wileen Elgar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Basheer Illidge,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jodine Swartz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Barbette VanHaste,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Envoy Dignam,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ghassan Visser,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bryna Grandy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nonna Calkins,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tchangid Cosner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Happy Armstead,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Siva Trader,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Norton Hlady,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Benita Brivet,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ulrike Ta,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jimmy Ramey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Romano Teacher,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Poppy Ong,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Takako Cambre,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eachelle Etu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Merlina Eimer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Imelda Ornburn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Elex Syal,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vern Rantala,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sarina Handley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Edward Meldrum,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Margaretta Hord,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Calley Hvezda,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rodina Sumi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jessa Harlan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Curt Tadge,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bertrand Spearpoint,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Annabel Cadtools,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hanny Wayler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Devi Cobran,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tian Sydnor,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Remi Ladd,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Miles Bannan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Annnora Burchby,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mariet Finzel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rozalie Kesler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jude Farmer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mervin Grisoni,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sarath Beekman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anna Hepburn,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bethany Passier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Traci DuBerger,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ceciley Kuan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Krishan Stamps,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Colin Gibbins,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Utpala Neault,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chery Dickinson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Elwood Schmitz,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Trang Kang,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marylee Lowrie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Donall Zlatin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dilip Willette,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gen Templeton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Celinda Guttman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dede Lan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Othella Toolset,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Genovera Kusmider,ou=Management,dc=bitwarden,dc=com +memberuid: cn=JoAnn Donohue,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eliezer Laing,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hayley Rundstein,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Daffi Chalker,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Debee Hazelrig,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Warren Niu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Thuong Malkinson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Remi Denver,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Maritsa Keenan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Johnath Linn,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Joan Yousuf,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roscoe LePage,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Powell Tosczak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Charles Chatha,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tina Dadalt,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sosanna Starnes,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gilly Wasylyk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Naser Cooksey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Betta Parn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lon Sourour,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Neetu Kromer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lon Sells,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shivdarsan Garry,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Co Reinhold,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Inez Elks,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=John Senecal,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marit Whatley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sammie Datta,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Clea Laing,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rex Pelletier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gaby Dybenko,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Velma Donahee,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Chawki Targosky,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Clemente Boroski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=JinYun Vea,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dawn Pelland,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Snehal Benne,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Selma Sinasac,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cindee Majid,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Croix Valiveti,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jelene Watkins,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Harriot Macklem,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Torey Kilzer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gilberta Howie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Darrel Doerfel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Phu Lukie,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Katja Teder,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rina Talton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nelleke Haley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shalna Yao,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Karmen Wever,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Udaya Magnuson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tory Racz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Danika Jamaly,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Loc McElligott,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maryanne Herr,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Norrie Vanwychen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Babette Hammond,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dae Malloy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Demi Uyar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Drago Wooley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lira Akhtar,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Blair Costen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Celinka Truong,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Olympe Wyndham,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Emp Slyteris,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Brien Ensign,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nicolas Whetston,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Annalise Combaz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jiri Clary,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Emelia Farag,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cang Calva,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sanjeev Tates,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lindsey Mina,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yueh Gowl,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=America Ballarte,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Student Center,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jillana Cusick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Edmund Caine,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Faith Langenberg,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gussi Zisu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Enrica Scss,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Franklin Mahlig,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hazem Doerksen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sabra Williams,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Des Terrell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jolene Casey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karilynn Dekeyser,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gaal Gach,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Emory Davalo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Leia Boccali,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hollie Redding,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maurita Hewett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Alberta Popel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Warden Norgaard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stephine Este,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Allx Vezeau,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hattie Offers,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Priti Stowe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tilly Lienemann,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Constantina Totaro,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bendite Basser,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Trish Ettridge,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Leola Musca,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Oral Priestley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yonik Yurach,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hudai Weare,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Miguela Brodersen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sohale Suomela,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yonik Murison,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Delora Grund,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mietek Humes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lili Cozzi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mil Badmington,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kittie Chapman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Las Bongers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ramez Beisel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gerladina Miello,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hernan Aversa,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rozanne Botting,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amandy Ganness,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lisabeth Joll,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hillary Pintado,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nadean Fiorile,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sohayla Ip,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ashley Seagle,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Christoph Dwyer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Minnesota Reich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marilyn Godden,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Weiping Choynowska,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Karlen Pelz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mela Speers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=PierreHenri Oates,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ramon Metcalfe,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Domeniga Purohit,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Goldy Locke,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=PakJong Braginetz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hilde Miotla,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ning Spitzer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marylee Eberle,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shalne Monfre,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sammie Wickie,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Teresita Vonderscher,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Derek Boase,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ehi Sova,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Suzette Chaddha,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lennart Delong,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Diann Glast,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tiffanie Beehler,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leny Teague,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Trever Casson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Chester Greene,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Celine Vey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pinder Leonida,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Beryl Lalonde,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cicely Ivers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lorinda Kenworthy,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Demetre Obrecht,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sheryl Nemec,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Freya Reich,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Willyt Kresl,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nenad Kilner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nakina Brittain,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joyous Nunn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hugo Tarsky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Davida Starnes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Heping Id,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nill Ferreira,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Amabel DAngelo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Brad Scarffe,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elfie Florescu,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nayan Caffrey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Deonne Ripa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mehdi Mainville,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jade Yumurtaci,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Fey Bilton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Isoft Manwaring,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Addia RossRoss,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Adoree Debord,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tesa Coordinator,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Crissie Beausejour,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hojjat Nahata,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Julina Sy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kendre Lotochinski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Yih NadeauDostie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Glynnis Neisius,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sono Orsini,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Devon Romberg,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lorne Agily,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Henka Colford,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Niek Bocklage,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gill Castillo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cary Thumm,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rod Eisenach,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Axel McAdams,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amara Lagarde,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gerianne Deluca,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mick Barreyre,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Netta Hartin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Juli Chen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cubical Quintana,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liping Acton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lorry Suprick,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mattie Astorino,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Suzanne Guatto,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Norton Sapena,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tsugio Behlen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pammy Liu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Deeyn Frie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dael Valliere,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ranna Gentes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Khue Trivedi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=YuKai Holloway,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mrugesh Gaskins,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Belle Kilner,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sieber Binnington,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nananne Bahl,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Selia Demers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Karl Deployment,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jolene Eicher,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Merridie Partello,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tae Hughson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bobbye Cech,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Drucy Serour,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elnore Alvaro,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Briney Emery,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dawn Shubaly,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leny Redway,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Augusto Mather,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Biplab Natale,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ninon Coffey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nando Masterplan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Farouk Closson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jacob Andress,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fikre Mau,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zan StPierre,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Michigan Callaghan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vesna Suharly,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maurise Travers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Loella Herve,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Libbi Marting,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Derrick Myatt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chelsey Emond,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Harvey Jugandi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ida Sydor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=MingMing Wagoner,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shena Joudrey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lurline Nickell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Camilla Njo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dannie Levesque,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tarah Melanson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Phan Srinivasan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ibby Sundar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jerald Battiston,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rorie Freno,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Howie Jubenville,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Neely Dudas,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kennon Risto,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jimson McVey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elisabet Deicher,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Amye Barritt,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Corry Ivett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Adan Kelkar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ross Sepko,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Apryle Davy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Carlota Inoue,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leanne Smolin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kailey Bagshaw,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Trever Moffatt,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Weringh Behlen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alain Walser,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kanya Erguven,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Robina Prestrud,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Emmye Nahas,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Flori Suddarth,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mkt Kelso,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Annie Goswick,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rhonda Beeston,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Amrik Bokij,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Merralee Malkani,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kyle Malkani,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Leese Jamaly,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eloise Gurash,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elpida Marples,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Blondie Algood,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Averil Hirsch,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Manijeh Older,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lonee Swinkels,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jun Reith,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Otter Uberig,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hendrik Ruyant,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Colline Monaco,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ilene Didylowski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Norine Krone,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Chander Daudin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Phelia Valois,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carmela Bonner,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brandice Becquart,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gen Guinnane,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Carmelia Lawlor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Riva DIppolito,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Letisha Subsara,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chellappan Caple,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lendon Shigemura,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Alicia Vermette,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marys Pellegrini,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Es Veillette,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Schell Rezzik,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Haig Salyer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sachiko Dragert,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Agatha Potocki,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mark Bethune,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dorey Friedrich,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alexina Hord,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wilson Vosup,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Forrest DCruz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Roger Seelaender,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mal Ellul,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bep Pilkington,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Wylma Meiser,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Huppert Buffett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kass Kelland,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dpnis Stetter,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tash Hibler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Edee Badger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Edel Ellacott,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rosa Baird,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anna Kahtasian,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hiren Plastina,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alese Sumpter,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Simonne Filer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yeung Kaufman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Claire Wada,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Laury Breglec,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maurice Guinnane,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Laraine DuBois,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hettie Johannes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hedvig Risler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Edward Badza,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Femke Trittler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lino Krauel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anders Raddalgoda,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rijn Benschop,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Deva Hoch,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fearless Quattrucci,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pia Singham,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Zdenek Schutte,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Liam Darveau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Yung Deployment,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Raman Feild,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nial Meunier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Evans Laker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vale Wiederhold,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dulce Xavier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Walt Ventura,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Miklos Rhyndress,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cherise Blodgett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jenifer Stansell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fung Ginzburg,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nikolaos Mapile,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Queenie Spolar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Franki Weyand,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Suat Whitford,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Isadora Capelle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Loria Timmerman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bobbi Dupree,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Leshia Gaither,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Calla McIsaac,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roby Kasbia,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Samia Wacker,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Stephen Marketing,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anissa Gottstein,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carlin Boult,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kitt Briden,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ramniklal Buske,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Par Giang,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Daisey Karam,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Levent Khouderchah,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Demetria Projects,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jules Highsmith,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Misbah Kimma,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Morganne Teed,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mozelle Huang,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stacy Boehlke,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Angelica Sarkari,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Michel Akyurekli,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rayna Diep,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ollie Forslund,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Germain Nobes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Daria Farnham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rohit McSorley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Novelia Sossaman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marabel Oster,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marco Hoagland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gerty Hebert,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marcela Dufresne,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Almeda Maloney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Madalyn Bakay,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Allen Papantonis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Leoline Cholette,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Leanna MTL,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Octavio Naugle,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Charangit Brasset,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gena Lovejoy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vivi Dysart,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Giuseppe Laing,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zeb Morrissette,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Corly Wingate,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=UnaMae Del,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Almerinda MTL,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=JeanRoch Della,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cris Viano,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Takis Bulmer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Adah Calistro,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jessalin Stooke,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Zsazsa Ukena,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Raynell Shears,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kem Wares,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tai Galloway,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Parviz Kinsella,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Madelyn Godo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Willow Sorathia,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jonelle Rynders,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Avinash Vieiro,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mikhail Fssup,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kimmi Trent,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Drucie Lindow,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kristine Hogue,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carmon Ghossein,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eunice Bushell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ailene Leander,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Truus Fodell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zulema Clairmont,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Libor Wyble,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Debera Shu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hailee Gould,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Colm Coody,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Orly Rahn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Glornia Hage,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Desiree Morini,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Laina McKibbon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Peach McGlynn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ines Younan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jai Junkie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ping Lombrink,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Georgianne Colwell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bryant Fronsee,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Amata Funderburg,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Camila Nason,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eldon ONeil,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Manda Bins,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joete Thieken,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nurettin Parisen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lester Leonida,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mira Aczel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Takehiko Malizia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Niel Vickers,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Letta Baltodano,ou=Management,dc=bitwarden,dc=com +memberuid: cn=De Moneypenny,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dyke Suh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Barrie Botting,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anantha Uhl,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kettie Lanier,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=LianHong Grills,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Charlean Leo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gilbert Howerton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Loralie Balutis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Harri Wortman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lorine Grund,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lesley Coyne,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nelleke Lind,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bam Raschig,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nicoline Gelo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Brigid Austin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Farooq Farquhar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Brandy Strauss,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jake McGorman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ruchi Furst,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joann Truffer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anton Chao,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cacilie Murnaghan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ilene Magri,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kiele Willis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Blondie MMail,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Yevette Kantor,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Youji Lawson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Neysa Dpu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=KaiWai Barriere,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Latashia Waldie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gordy Durham,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dierdre Isip,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ailis Stumpf,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Puneet Aloi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Del Buckingham,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pardeep Roney,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Valma Myrillas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alvira Dessain,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Melli Ertan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Keri Stroupe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Billi Chiu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Willette Tel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ynes Jezioranski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Teruko Cregan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rick Novisedlak,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Notley Peterson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Joyous ONeal,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Perle Dolan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ioana Hermack,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nikolaos Nickonov,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kirstie Rodger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sheree Siddell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tas Chitnis,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Whitfield Vexler,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Janifer Gundecha,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Diandra Shnay,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Semmler Bamfo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Martina Grazzini,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Minnie Dickie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Susanna Buckman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Johnette Yendall,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aurelie Doray,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dusan Menyhart,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Utilla Brandon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Selma Kwant,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Levent Debord,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tandie Gourley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Indy Hu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fscocos Houston,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Oriana McInnis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maggee Bentley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Inm Venjohn,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Corena Parks,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Irv Dicks,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marwan Marks,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kamal Calleja,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jonelle Menna,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Miran McGinn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wan Janovich,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gerben Dayal,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lorilee Ravi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=McGee Levasseur,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Charmain Spurlin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lainey Grainger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Delly Clegg,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Addie Koolstra,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nga Orsini,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cherye Knighten,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Betteann Sieling,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Salim McIntyre,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karole Heng,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Norio Saifullah,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shannen Jagatic,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vania Gibson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Robyn Blann,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Krier Cruey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Barbette Christie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Feodora Koller,ou=Management,dc=bitwarden,dc=com +memberuid: cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Saudra Ghaemian,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Valentine Newell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Oriana McRae,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kizzee Halley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bette Stellwag,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Henriette Peixoto,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Matt Denmark,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Feng Rowland,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Theresa Naguib,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eden Annibale,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cele Toshach,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Car Naro,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jocelyn Napert,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Arlette Irani,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Basheer Berhane,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Betti Tilley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ashu Drakage,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yetty Likert,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nady Bushnell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Selle Verch,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=YeeNing Sikes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bachittar Seamster,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elmer Gribbon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marlin Schrier,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bobb Bowcock,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hermia Mendez,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Thaddeus Hoehn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bawn Asfazadour,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Franky Foest,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Daphene Scheck,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Milicent Hoeler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Luis Louis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Daveta SiuKwok,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Minni Daymond,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Muriel Barakat,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Thuan Szaran,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mitchell Willette,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mohan Piper,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Carmelle Froud,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Modesta Farr,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Liese Griffiths,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Meghan Carboni,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bryon Kluger,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Petar Khatri,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Paige Poustchi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jessa Dias,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Zorah Purohit,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shoshanna Talevi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Priore Hastings,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tulip Waytowich,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hirooki Skwarok,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Balaji Brogden,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zola Cuddihey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=JeanDenis Intihar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rejean Marc,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aly Mooney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Daniele Mondor,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Charman Feeley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Auto Arwakhi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Paulette Lunn,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kellia Froud,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vittorio Calis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maryam Doan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nathalia Haerle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Krystn OHeocha,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carena Chaplin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eden MacDonald,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jo Snuggs,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hsinshi Sheth,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tata Whisler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Troy Hilton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Binni Siewert,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alyse Wingo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ladan Chilausky,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gwenette Farago,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Narinder Staffeld,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nir Dionne,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=LouisRene Ellens,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Oneida Sallee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Humphrey Redish,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kerry Labarge,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Quyen Aronstam,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=KaiMing Parker,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Laure Norman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fabienne Koprulu,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Prue Dipace,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Randolph Holtze,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Julianna Amin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Iris Berryhill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mahendra Michelussi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Melesa Beagley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Khue Medeiros,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Evangeline Vance,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Czes Corkey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Malena Cronan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maia Lamy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gates Frape,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Berangere Budihardjo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sheryl Hekel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kaycee Wu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Herbie Njo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Devan McCorkell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Crin Landon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wrennie Dinkel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Siana Duffney,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Holst IC,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=SikYin Matney,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Masahiro Lauten,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nash Hesk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pier Kimma,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lenee Gryder,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Loesje Javor,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sallie Lehman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Yvette Yun,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rui Hawi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Costas Pracht,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rec Mazarick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Del Ambler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tessi Denebeim,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pru Digiacomo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annabell Fung,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Alberta Widener,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=PakJong Klebsch,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Detlev Croxford,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Graeme Khatri,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Franky Dattalo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Careers Howes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Susie Gawdan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Milou Lepine,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ransom Steski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=ItsEng Lander,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kevyn Dore,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Merna MacNeill,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ioan Goridkov,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Michelle Miner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mair Harada,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lynnet Lewandowski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Henk Ramanathan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Selinda Settels,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=ItsEng Kozak,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marybelle Ervi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yuji Menna,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Harlene Koa,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Prashant Feltman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Margit Waghray,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Naim Paar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Flying Labossiere,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Barbette Kolski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Joby Paulovics,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Feliza Grabner,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dona VanLoon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jacquie Thorson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Appolonia Roberge,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Blaise Huynh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lashonda Ogburn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Juline Flindall,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lujanka Paylor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Barbee Brox,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Julia Zanetti,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Othilia Rch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gaal Despault,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mary Zalzale,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hilmi Guilbault,ou=Management,dc=bitwarden,dc=com +memberuid: cn=YuenPui Matney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Heidie Schieber,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Denise Tranter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cassy Burge,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rowena Kam,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Theodore Murris,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bang Lischynsky,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Delphine Yuan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Heloise Woodall,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ram Minter,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rosa ElAm,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shirene Id,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pauline Noffke,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Seungchul Irwin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Myrlene Santi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Perry Lovejoy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Viola Gundry,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vlado Dordari,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cindra DeMarco,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Delcine Wyss,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aurora Gibb,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rona Maciel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Moel Goswick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Coord Herrington,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vic Cullen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sabine Misko,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Annmarie Brunet,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Icy Meleski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Apollo Mitalas,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shirleen Costache,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tulip Bannan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mareah Mior,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lorraine Sikri,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karyn Laroche,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Koral Carkner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hyung Harada,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lottie Fernald,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Edyta Samalot,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eoin Morrin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Froukje Viney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sir Rivera,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ky LEcuyer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Buda Lumley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marley Haley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ernestine Newport,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Myrtle Bernier,ou=Management,dc=bitwarden,dc=com +memberuid: cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Karil Chennette,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Liz Burrowes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ivona Koch,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Berta Mou,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pris Freire,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Toyanne Ragde,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Domenick Zingeler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stergios Incze,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hera Haupt,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Robena Scodras,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ibby Feist,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lachu Namiki,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Norry Wolfs,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tahir Frederick,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marlies Mraz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Farooq Gaebel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Janell Rolston,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jere Jubenville,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Noelyn Benham,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maury Ismail,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nixie Cusato,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alastair Slozil,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Georgena Behrens,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Prayson McCormack,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sharyl Meerveld,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tech McAllister,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Budi Anglin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Business Marcelissen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=MaryKay Wilcox,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ingeborg Ferraro,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dulcinea Merrils,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chiquia Tanner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dorreen Zrobok,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Floris Bui,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maarten Braum,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shane Levert,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hesther Gunderson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Korney Walkley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Enrica Keates,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sir Benda,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Samara Edmunds,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eoin Moomey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shandy Sambi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bili Giuntini,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Stephenie Steiert,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Esmaria Seddigh,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Su Keef,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ignatius Baines,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jenson Arbuckle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jaclin Schreiber,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Steen Realtime,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Edmx Walston,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Abu Corbeil,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annamaria Woll,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Merdia Baer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Henrietta Horwood,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hannis Sooley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Teruko Zork,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gerrit Erwin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kylila Valliani,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Courtenay Meres,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Theodora Henshaw,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Feodora Chohan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Corri Gower,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mimi Malisic,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Farra Threader,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Myrna Felske,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Adiana Claveau,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brigitte Tiseo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Keith Jahromi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elfreda Erkel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jacinta Boult,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mab Sizto,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Howard Scarlett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=CoOp Grondin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Felton Bartz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Norene Molnar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gabey Solomon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Joanne Trefry,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sukey Grimm,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sari Realtime,ou=Management,dc=bitwarden,dc=com +memberuid: cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fanni Hite,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Faiz Brodersen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kazem Snead,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Donia McCormick,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Akin Gillies,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Baldev Chugha,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carla Wichman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sarine Croxford,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Truda LaFargue,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marco Secrest,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bellina Onder,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yumi Britton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Subhashini Tadge,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jacky Cavasin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Katalin Qadri,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Evanne Holesinger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Malethia Elliot,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dhawal Howard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stacee Syed,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kem Birkwood,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Steffen Godo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Merlin McCormack,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Darell Sumi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tybie Hulen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Crysta Aderhold,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ranna Barriere,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ignatius Bankhead,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Carlis McCafferty,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dewey Cozyn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Raphaela Bainton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Paulette Gateau,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Molly IRCMTL,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Danial Simhan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aditya Nordstrom,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jacquenetta Altherr,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joeann DeAnda,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Valentina Andrew,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kemal Kaoud,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roseanna Koiste,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Camino Medlin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lilian Racette,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Clara Partello,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Birdie Pifko,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Salomi Erickson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Opal Lovas,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jai Malizia,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alice Krogh,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ronan Gillard,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=BettyAnn Sakauye,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Adan Fralick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Koren Jalali,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Reza StAmour,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Binh DALE,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kanata Panch,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kanata Runciman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lester Brookhart,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Adelheid Godin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Calypso Hagar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Leann Bawek,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stormy Bayraktar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Margarita Delisle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rao Fontana,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Richard Bachelu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tatsman Musa,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pia Maksoud,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Scovill Sayar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Norry Shen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kayle Ahmad,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Debor Schiltz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sandi Kochanski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hadria Rowley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rosetta Toscano,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chi Winsborrow,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ammar Foldes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Andria Nagy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Earle Calkins,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Irc Loper,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dari Landriault,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lonna Varano,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shan Heynen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carena Pennington,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Luci Sebastien,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gayleen Hagglund,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sybyl Gubbins,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Coursdev Racette,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fayth Biggs,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Neely Elbeze,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jamin Shute,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sabuson Flach,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Laurence Wootton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eric Skrobecki,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tatum Meffe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Reinhard Homonick,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Imojean Sinnott,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Matt Buttrey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tadayuki Seguin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cang Smyth,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Suzie Guillet,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leilah Traulich,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Horst Kaye,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nuri Licerio,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tommi Preville,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fredericka Christopher,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Avivah Shostak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tyne Briard,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Drucy Levere,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gianna Rivera,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Natalya Heller,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dyana Harsch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kazem Guenette,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Allis McCartney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Arlana Shemwell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Francisca Pollinzi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Radomir Neate,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Earnest Wracher,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aurie Hinkle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Durali Raynor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Isoft Parkash,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Phillie Kneese,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lucinda Cuellar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rozele Chahal,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marko Mgmt,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anissa Adcox,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hanh Glanfield,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shailesh Bienek,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gerardo Bedlington,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Erle Kasprzak,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Knut Nilson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Laser Sandiford,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Moon Bulanda,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Weiping Zeller,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lora Luetchford,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mareah Horning,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kapsch Graver,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=HoiKin Denley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Huong Quinlan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vahe Ruffolo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Darina Duguay,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shayna Hollander,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=SikYin Gosset,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sapphire Dassie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Baha Brouillette,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Isabella Horning,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Avtar Nyce,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Horacio McGuire,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Huyen Guatto,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rustu Thill,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fayre Childers,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sabrina Lenir,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gale Goggin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Louis Volker,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Myrah Roussier,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=LLoyd McKeegan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Annadiane Ctas,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leyton Rolls,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gaal Ragan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hermine Stults,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Klarika MacLean,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Reginald Smit,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cassi McMahon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Myranda Javed,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cherye Bukta,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carlynne Roob,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Wai Winters,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lester Koster,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Alev Llaguno,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jud Fairman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Toyanne Fishencord,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Clarinda Vele,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Blondie Moghis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Noraly Mackzum,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Len Grzegorek,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ria NetworkOps,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sunny Forslund,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fanchette Veals,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bobbee Combee,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bennett Attanasio,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zongyi Stults,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rob Goupil,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gwyneth Neander,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lillien Grohovsky,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sianna Machika,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Blakeley Lagace,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Thuong Rains,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Peg Lahaie,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Annissa Bears,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jaffer Grosjean,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Quoc Ennis,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Katalin Alteen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Suzie Caruso,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hanh Marui,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Margette Bolly,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Arvin Mauldin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Stephi Sloan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ariella Kindel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sluis Rasmus,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Onida Kessing,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tasha Good,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Audrie Hadaway,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Natka Herzig,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Naima Simzer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lotte Ichizen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marco Seto,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mollee Ensing,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Roe Schenk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Christian Wales,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Loes Rioux,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rubetta Lui,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lonni Sabadash,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Monica Duensing,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Colm Gratton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Denise Randall,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Haggar Labfive,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Willow Marko,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Paulinus McNabb,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sula Piersol,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Phillip Shearin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marg Villeneuve,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Halette Kirfman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vijya Wrigley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leung Veit,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Celka Sylvain,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Michiko Zanetti,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Derick Sheremeto,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shuji Blander,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Conni Dubee,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Charlot Kling,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ved Missailidis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Valera Rummans,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Neely Bresnan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Trey Zagrodney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cordie Hippert,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zanni Godwin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yannick Cricker,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tayeb Leahy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Paulo Goldner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Casi CHOCS,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nata Booking,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Doretta Turkki,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hq Buske,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roe Levey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Orelia Salinas,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Atlante Standel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leela Rylott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cavin Cobo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Moe Oastler,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lesley ElTorky,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brina Guttman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hiroko Fait,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Annie Eaton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maskell Fung,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Franky Ramachandran,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sherri StJohn,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Laser Kokkat,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kjell Boatwright,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lilly Keane,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Guenther Feith,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ross Whitaker,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tessi Franze,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Norel Aly,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Minetta Mackzum,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Javier Kinsey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Donelle Stites,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sophia Gazo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tosca Julian,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kellyann Stotz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ende Broome,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Krystalle Barnes,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Janaye Woodward,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Margot Morin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Izumi LeGuen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Constance Boynton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Georgia Blazer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Millard Lightfield,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Clio Bugajska,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anitra Metrics,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Manish Strachan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nessy Langton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leonida Moncur,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Uday Australia,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bren Marzella,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vries Bathrick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maryann Felix,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carly Bugajski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Baruk Zinn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Robinett Etten,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Monteene Fraties,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jo Ritter,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Laurent Viehweg,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Devonne Erickson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chantal Di,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sluis Quek,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maxey Cavasso,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Claire Greveling,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Keven Krishnan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dau Banigan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kayla Carlisle,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Juozas Hengl,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ramniklal Traulich,ou=Management,dc=bitwarden,dc=com +memberuid: cn=David Vennos,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shiela Nixon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mona Kohler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elene DOrazio,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elspeth Bussey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mari Abbott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Josine Hwang,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gypsy Weiser,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nir Cornaro,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bettine Centis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sami Phipps,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Valaria Jamshidi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Loleta DuBois,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Suzi Penfield,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mot Harper,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Beata Shyu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carter Munroe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Johnnie Holmes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rollo Rolfes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wendye Queries,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tonie Ausley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bertina Winchester,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Knut Louisseize,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Miguelita Merworth,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vlad Hilder,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Norry Hord,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kurt Bozicevich,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Charles Orsini,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Meriline Tom,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Genga Kahn,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gates Scharf,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Isabelita Weger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dulci Arsenault,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lurleen Mowbray,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kary Bickford,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tsugio Knorp,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sindee Haertel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Reiko Lemay,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Karoline Korey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zonnya Penn,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Christoph Lorance,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vanity Tropea,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cyb Centers,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Muire Bakhach,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eliza Gros,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Brita Jodoin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Renu Paynter,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Honey Karole,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=MaryJane Cusick,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Romina McClain,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Robinett Zeisler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ervin Guindi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vernice Brandon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wil Vasil,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Anader Atp,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cecil Martincich,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Madelin Hysler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Colleen Hotlist,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Clarence Baragar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marvette Mony,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Janette Stasyszyn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Colette Iu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Morissa Weiss,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Olva Smid,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Beulah Kacor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stefa Aksel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sadru Quintana,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Suzan Dourley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Wil Hirose,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Auria Remson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pennie Akai,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Allyce Versteeg,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Norah Saunderson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chery Vieira,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Karita Hoekstra,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Milt Pilipchuk,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pal Hnidek,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Teodora Weidinger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stephen Shearer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Celka Antle,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Binnie Newham,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ursula Duvarci,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ted Clinton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ivie Petrie,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kuswara Heighton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Johanna Virani,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marit Simons,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Joel Hinton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mentor Kimler,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Thuy Kolos,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sergiu Chai,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sande Desjarlais,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Allis Sherard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Miriya Planthara,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=HackHoo Jatar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vonni Mansi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mair Tsui,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Darya Marttinen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kees Arsena,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Darleen Flowers,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Noyes Huenemann,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Buster Myre,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tristano Angus,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Anita Roesler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Monling Goin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dannye Munsey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Agnella Pinalez,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shashank Romberg,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Narinder Vilhan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jeremy Schuster,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Saraann Blakkolb,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aida Brunelle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Merrielle Hine,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Beckie Cowell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maso Mathewson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Arnis Fredette,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maddie Bowick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jolene Datema,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kuswara Musick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Belia Mustafa,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kelcie Rowe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Oguz Crafton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anallese Luszczek,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Raeann Fu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dyanna Hartling,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hamid Peng,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Michaela Minichillo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Romano Moosavi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nannette Pantages,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zaihua Dhuga,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Niki Brock,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lucila Jatar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Reiko StJames,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carmen Poulin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Loree Dorval,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Reinhold Ballinger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mat Smyth,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lesya Maye,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dixie Oshinski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stephanie Crerar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Miguelita Wyss,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lee Kreimer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Violetta Nttest,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chau Gyenes,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melva Kaefer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Celinka Laprade,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Abbey Firat,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Coleen Kovats,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Merla Tsitsior,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marek Harwerth,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bertie Whatley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Message Cohen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chai NTINASH,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karin Schaller,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nicolea StMartin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Heda Bowens,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Conni Westgarth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Joell Bolzon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Christianne Carling,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nessy Grewal,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lex Woodyer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pamela Fon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Loris Winterberg,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Business Huether,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Susanne Repeta,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Willie Murphy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Donella Duncan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=JeanBernard Coord,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tove Mettrey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kathye Terwilligar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Emilda Wylie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anette McBryan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jannelle Burnside,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Swact Evans,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Almeda Bloemker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ronn Peschke,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ainslee Scp,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Claudina Jablonski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Olwen Garey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Empdb Jahromi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ri Stouder,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Darlene Mahonen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mayumi Piitz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jeri Nadeau,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Valentina Diogo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Errol Pieron,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Blanca Murock,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rebeka McKinley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sean Stayton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elex Zaharychuk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Francesca Alguire,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Georgie Bosy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fenelia Costache,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mab Lao,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sayla Varia,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Helyn Roberts,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Emr Zisu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ame Frie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Wonda Chao,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Oralle Checinski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Birendra Britton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rebeka McCall,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Constantine Bulanda,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sibel Kurdas,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pcta Littlewood,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Normand Simpkin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Viole Scates,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Melisent McAfee,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jemima Hennelly,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Halette Hoag,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fayre Patenaude,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rob Allan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Noyes Bergman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Else McCollam,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bellina Koens,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lian Shapcott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Florella Pichocki,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maribel Zafarano,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ren Dickerson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Darla Puglia,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Stacee Mamoulides,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Adrien Bennatt,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stesha Cotten,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ryann McRonald,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joete Pham,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kimmie Dyess,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Crin Seeley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mercie Polson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elvert Tripp,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mead Urquhart,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jan Delorenzi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Johnny Stetter,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marjan Bourk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marjan Angell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Darrol Calder,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Meridian Buder,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ericka Contardo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Saeed Liston,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cinnamon Jurman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Karlie Hord,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ozlem Switching,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Seven Figura,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Birendra Helton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Madan Babcock,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mandi Whitford,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ilse Silwer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tommy Fabry,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Doloritas Renton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Beb Carlson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Audrey Charchanko,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Grantley Walles,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vale Yost,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kalie Krausbar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Martino Busby,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Selma Kletchko,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lineth Montoute,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jolie Langenberg,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carm Mach,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Radio Balog,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zere Zafarullah,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Waly Grabowski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dallas Smelters,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zalee Caron,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Konstanze Cordell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Froukje Ecker,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Petri Uhlig,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tessa Pino,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Britni Routing,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Michelle Mirza,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Starlin Schilling,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Manya Cripps,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Esther Buttrey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tamma Sellwood,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=RongChin Fisher,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Karena Bissegger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zainab Musgrove,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rebekah Fenner,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gabey Florescu,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Padraig Scorziello,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clarisse Venne,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sally Gimon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Siusan Surridge,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dorris MacDonald,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zoltan Copes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annadiane Moulton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chrystal Salkok,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ayaz McFeely,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Missie Dinnin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karlee Cheval,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Constantia Hampshire,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Delle Stansfield,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Percy Fiset,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Thea Goh,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Evanne Twiss,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Opaline Bayno,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Delbert Hodgens,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Antonio Ide,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Berget Feil,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Matty Danielak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Prafula Stasney,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Eyk Bradford,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Della Barbe,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Darelle Waid,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dino Farren,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ruth Chouinard,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tiina Averette,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Meghann Marasco,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Agnella Chona,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Olimpia Stetter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zea Hoadley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kanu Constantinides,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Priti Hummerston,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Siobhan Duffney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=KaiWai Greenberg,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Phyllys Relations,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Onette Erwin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Micheal Threader,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Melitta Teacher,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Francesca Spinks,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kippie Genova,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=My Geuder,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Corene Goldman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bea Shanahan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Adah Simzer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Minnesota Safah,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Perrine Ketkar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jilly Kwok,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sharona Lunde,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lynnette Juskevicius,ou=Management,dc=bitwarden,dc=com +memberuid: cn=PeyKee Gunther,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Howden LaBauve,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dana Linaugh,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gnni Schafer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Callida Tropea,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amara Zisu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Delly Macklem,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Faustina Yedema,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Annamaria Handforth,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Korney Gehm,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Archie Klimon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Angela Holland,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marcellina Clairmont,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kristien Yamamoto,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nayan Simcox,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Celisse Draier,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Matty Vasile,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=WingKi McClain,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shutterbug Ta,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Les Oreilly,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Veen Cawley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stergios Romanowski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shyam Hipson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carley Dal,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Chickie Dyna,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Norstar Bouick,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kapsch Bitton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yoko Feder,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eugine Werick,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marley Newcomb,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zhanna Lyons,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Desire Adam,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Joni Dhir,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Quyen Boyle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fallon Lavigne,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aleda Kato,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cristine Musser,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shantee Tsao,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Phu Krowlek,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Estrella Infocenter,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Steinar Mathur,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jayme Shemwell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Masha McGinn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Astrix Tiller,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Arlan Fadel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Siouxie Norgaard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Phaedra Mavrou,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Thang Kerr,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Helsa Cau,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dyana Tchir,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elga Hrenyk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brooks Helgeland,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Toshi Ircmer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yosuf Diaconu,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nomi Kielstra,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carolyn Sanche,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marj Anker,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Agneta Gundlach,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jeffery Pafilis,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Isoft Buchanan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cassaundra Gerenser,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roberta Rorie,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bliss Fahey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wargnier Deployment,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Orsa Brunsting,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gudrun Yassa,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Damon Bradbury,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Onette Garguilo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Meridel Dahl,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Clem Gallagher,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lanni Totti,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Robertson Soh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pavia Costen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karyn Holz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ikram Thiel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ladan Fabrizio,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leeanne Credille,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Augusto Aguiar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gayl IBNTAS,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Painterson Watkinson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kieran Copley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Othilie Sconzo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Raju Sellars,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carly Kammerer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dian Rhoads,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Utpala Weldon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Thornton McDermott,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Juditha Shirai,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Wini Flynn,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Open Simhan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Adelina Grigsby,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Woon Gillis,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Remi Lillis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dagmar Niles,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Geralene Groleau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Colm Katsouras,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Caroline Darou,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maegan Rafter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Margery Buckalew,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Charleen Willison,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Basia Ouellette,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Latashia Ridgeway,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rhodia SOS,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=WaiHung Kan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ehab Gidaro,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Almeda Barstow,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hernan Newbold,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Elonore Lorenc,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Melva Dingle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Janka Gorfine,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carleen Natiuk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dimitra Prokes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=WaiMan Sinha,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Therese Nikfarjam,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Geer Lamonde,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chelsae Polder,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shuji Pien,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annet Rege,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ellen Vertolli,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zandra Belk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Milan Shu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lubomir Carver,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kieron Remrey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Frayda Urquhart,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kat Torok,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Selina Sauder,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Joshi Wery,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Corilla Carey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Devon Patchcor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Thor Crompton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sallee Demone,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Patsy Hanley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lily Sturdivant,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Howie Howarth,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jo Tropeano,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Howard Acs,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Otakar Carella,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Digby Papajanis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Trixy Grewal,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sami Huguin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kui Mulero,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tyne McHarg,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Constantin Harkness,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Galen Mariani,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dolores Lacosse,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vradmin Aasen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Roseline Revis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eiji Tel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mariesara Reichman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sandi Bush,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Emmalynn Dai,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Josef Godcharles,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gay Ondovcik,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cad fpsched,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Oscar Paris,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chan Blumer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chabert Hawkins,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=VanKing Iskandar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carena Toplis,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nelleke Fredette,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jock Ahdieh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ru Lindt,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Desiri Picard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mewa Melfi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Elio Naylor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vince Adamowicz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annis Emery,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Valma Standen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mauro Meres,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Brianne Takagi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Azra Gravely,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Liza Centeno,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lendon Pinney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Madelina Naolu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Brittan Vela,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marcos Spicer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pierrette Deleon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Darell Groth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kathi Altman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Moel Pieroway,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mildred Fansher,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Georgina Hardersen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rasia Jakim,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rycca Satterfield,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Merissa Jessup,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Divine Zarate,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nitin Wolfe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bijan Badjari,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Margy Chartrand,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Velma Portz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dodie Bandel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Georgianne Bydeley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Barbe Bolduc,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shaylah Demren,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ngai Konarski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Candi Ashley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Darko Ledoux,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Trish Laberge,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Charee Fiegel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eirena McNeese,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Meade Epting,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eliza Marko,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Doll Crutchfield,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sergei Edwards,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Alfons Besson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Delmar Modl,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Peggie Jung,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mot Goodner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shaine Davalo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rod Hingtgen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maddalena Melton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gusta Reavis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ramanand Noy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tom Gowens,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sayed Wilke,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jeralee Kiefer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tatsuya Kayle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Roselin Zahn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shanda deRosenroll,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Meriline Parkin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Minnesota Milway,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Oren Keffer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Blanche Lantto,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Penny Polakowski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Helene Halford,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ladonna Kester,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carling Castillo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cark Redish,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Caresse Appenzeller,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sheree Berman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anabal Hathaway,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Valma Keffer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Johnny Harron,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Channa Brokaw,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Annabella Spaugh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Klink Sprott,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Roe Reinboth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cathrine Mashura,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shigeru Rausch,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ingeberg Eagles,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Arjun Auker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cary Gillot,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kishor Aurelius,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mair Dragert,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nata Manson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Carmody Stough,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vicky Kenol,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lorelle Korf,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Angele Dangubic,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ilene Knio,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Harrison Klodt,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Orel Hassenklover,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sonya Hixson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Simen Pankhurst,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alberta Roddy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shelley Guitard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Benthem Aghili,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nad Sheth,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Katherine AuYeung,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rollie Lohoar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Siamak Tullo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marco Trautman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=James Silgardo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gipsy Letulle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Missagh Breglec,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Debadeep Karass,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Madeline Bir,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Betsey Doi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Indiana Schejbal,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mickie Farhan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cubicle McMann,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Olva Mathewson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kiet Strober,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Meggy Vardy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cyrine Marceau,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Junk Kopala,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shandra Connell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Munaz Reynolds,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lavinia LaBauve,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lilllie Ruthart,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mani Keseris,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lilith LLoyd,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Luann Rodger,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Evania Keehan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vivianna Rassell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rudie Dunlay,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Berti JantzLee,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Aigneis Marghetis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gordon Buhler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Austine ODale,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lab Carstensen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amalita Smith,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Barbe Degen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ros Varkel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Anissa Belley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Khurshid Balsas,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Amata Byers,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tonya Brough,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nancy Stocker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Analiese Hooper,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mikelis Chaves,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liv Ayukawa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Amir Andre,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jacob Mahin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Genvieve Albers,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mallory Xenos,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Christie Shapiro,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jackie Au,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marshall Paine,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roman Materna,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jerald Gutcher,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Berty Bittman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Adara Smyth,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Robenia Prescott,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Berna Mahaffee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Drusilla Riou,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elsie Ryals,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sanae Glaser,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Melisenda Shuster,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jasver Loza,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joseph Beshai,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rebecca Landriault,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kokkhiang Holness,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stormy Berger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Olva Mooder,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tash Ficco,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Paulita Jobs,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kanata Ning,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dalila Shull,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Georgianne Bour,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Venita Brandon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Krishna Kiens,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ashlen Plssup,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hojjat Burchat,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mani Gravitte,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chiu Pilipchuk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shamim Uffner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Trude Graves,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Caressa Balogh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lyn Serre,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clemmy Doda,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kesley Nallengara,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joji Skeoch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gwyn Peerman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mila Lodeserto,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bess Ottowa,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sieber Churchill,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lyndy Sides,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lino Rix,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Charangit Desplanque,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Barry Vajentic,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Waiching Morrin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sattar Kane,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=YukWha Kielstra,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sharon Meletios,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Binni Gaines,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ying Spejewski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Agnesse Nessman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yoda Milne,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marsh McGurn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hilda Baldridge,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Caro Vopalensky,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Buffy Naolu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Royal Parniani,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anthea Eros,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kiele Commazzi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Yvan Diaconu,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kitti Seshadri,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Camala McMillan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eamon Salvin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vito Calcote,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mandie Kneeshaw,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fiann Fouts,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Patt Ferner,ou=Management,dc=bitwarden,dc=com +memberuid: cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Grier Kovarik,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mela MacNeill,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Akram Rajwani,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lendon Valin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ikram Taylor,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gert Grassmann,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Oksana Dorn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Karleen McKinley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Helmut Sigda,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Grover Au,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Barb Ricketts,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carina Akens,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Beilul Scheduling,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kitson Nelon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Daphna Ragde,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Paulina Early,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Abbie Jamshidi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Quynh Lorenc,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kelwin Popadick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fitness Pape,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dion Chiou,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mayasandra Naor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vince Soulliere,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kasey Turney,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zonda Amato,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Eleanore Bertini,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Georgetta Schreiber,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kalai Seatter,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Susie Moffett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Garnet Vieregge,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Majid Liao,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Abdallah Lobello,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Felecia Bnrecad,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Waja Eteminan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lorrel Piercy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pris Bobar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Albertine Karass,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Saskia Koskie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Adda Paddon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Normand Tay,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ardene Hofstede,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Panos Wessell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Carolan Kamerson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stew Doan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tap Moreau,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Peg Alcott,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Henrika Mihm,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Count Watts,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lesly Engman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Txp Calmejane,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Aurore Hubers,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sharad Shearin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jennica Vonck,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chesteen Wyant,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Coraline Kolton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Horacio Oberpriller,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lsi Assistance,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gusta Dadkhah,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Daphene Cho,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Minerva Arvin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lynna Gumb,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Arleen Owen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chelsae Geer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Abraham McDougald,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jessa Piasecki,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hertha Wayler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Haste Isherwood,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tonye Frumerie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lilly Serapin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Phebe Gordon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cary Gronwall,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mer Kearney,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Viqar Campeau,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Annet Chatfield,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lizzie Zaid,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Norcal Schrier,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marlyne Tardiff,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Annabella Vogel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Farzin Depooter,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Denys Paone,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ghassan Payne,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Heida Cripps,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sayed Belaire,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sileas Brungardt,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nicholas Shupe,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Margaret Binda,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MaryAnn Windom,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cammie Lobello,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=HangTong Shek,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Engin Mersinger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rebbecca Perina,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Piero Preece,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pradip Draffin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jacynth Etemad,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Brittany Pokinko,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jeannot Rch,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Wiebren Zaia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karlyn Kell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Noriko Devenny,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Porfirio Epperson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Linnet Streight,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tomi Bridges,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gerardo Walia,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hailee Corace,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Munir Copes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Susan Fowler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Caye Setiawan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Daffy Hering,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=YoungJune Radford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Brana Susanto,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Neile Niles,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joydeep Loos,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sohail Pilon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Melisse Odum,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shay Fouchard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lesly Checkland,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Roelof Balascak,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Miguel Skof,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zdenek Gahan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Merrile Lian,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Engracia Messick,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Caron Sammon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Charlotta McLennan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dexter Follett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Una Ausley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Adria Calow,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alora Bamfo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gunnar Molani,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lenee Marasco,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Byron Shelegey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Charline Jago,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anette Holloway,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Florida Polashock,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Snair Mcshane,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jackson Schraner,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cherianne Tidd,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Melisent Sampat,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tiffy Udall,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Adeline Cruz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tuan Fenati,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jaclyn Hook,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lucky DeBaets,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Toma Belcher,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ayda Ricketson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Edie Fuller,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Adrienne Teacher,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karilynn Sokolowski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Edna Etemad,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Heike Hoxie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Noelyn Snair,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Annis Yung,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Olenka Gulis,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jeanna Brousseau,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nikolaos Farley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sydney Olivares,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lary MacMillanBrown,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Makam Junaid,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Janson Breon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Persis Bourret,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nonah Naylor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Delmar Goold,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Noslab Despres,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leonida Maloney,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Heida Witzmann,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Azhar Klug,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lynnette Mirande,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Esmond Ronald,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ruthie Weyand,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ileane DeWitte,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chocs Lanava,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Abu Hubbard,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Felita Kaps,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Christin Shea,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Haroon Trese,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Norbert Ruest,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Woody Bourlet,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Saied DeCristofaro,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dael Lariviere,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Miro Tabor,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Der Fernando,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vivianne McCrain,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Madelina Todloski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vijai Combaz,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sohayla Neate,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Weldon Robustness,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Freddy Jachym,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Eliezer Assistance,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Orelia Pisani,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shelton Spencer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jonthan Khoury,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tricord Bresee,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Julietta Tillman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Almeria Falke,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aaron Deakin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Soyeh Noy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Genia Mooken,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Norton Chronowic,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Thom Hink,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vanny Swepston,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mabel Bycenko,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kiyoon Chau,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nel Addetia,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Emeline Willmore,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maged Bernardo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Murry Okafo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vita Coursol,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jelene Rivest,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Magda Sims,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Fanni Kelly,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Phyl Komatsu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Blondie Bessette,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zonda Marette,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tavis Bovee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Aurore Danker,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yawar Benjes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jayme Casey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Daisi Encomenderos,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Biplab Caton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Izak Roussin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Montreal Mersch,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sybille Shwed,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gordie Oey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nerte Diederichs,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Annemarie Harrell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ara Darcel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eng Mangum,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kaye Dulude,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dinny Farrell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pru McIntomny,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rosemary Liao,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ketty Torrens,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dinny Meggitt,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ashien Moran,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nerissa Brkich,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ioan Usrouter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bekki Blimkie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bryn Spieker,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vijya Torian,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Teiichi Marconi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Allegra Chaaban,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mair Wefers,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kerri Turbes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Debora Dion,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Erdem Cowen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Thierry Crockett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Karrah Kassam,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Odile Dbs,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lacy Haughwout,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jimson Volfe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dede Billingham,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kissee Gowan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eulalie Webber,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Court Trefry,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Claretta Kilcoin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kassia Daaboul,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Weber Gu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rank Courtney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aaren Neustifter,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Clifford Forgues,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Donnie Laverty,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=How Sebastien,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hung Tabl,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maye Atoui,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Deva Currie,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vivienne Bourk,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gerber Kiernan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Me Muhammed,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ragui Lorenc,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorenza McCormick,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Beatrisa Malaher,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tiffi Beverly,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Analise Shiley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fan Neander,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Diamond Azer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dorothee Azmak,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sydel MacGillivray,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Martelle Filpus,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Merunix Fadlallah,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Faz Seegobin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jeffery Panek,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chip Billard,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tran Selbrede,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Wade Boersma,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Quintana Huneault,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Coors Beerkens,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Prudence Schacham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Evita Cropper,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joletta Senten,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fotini Suyama,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hazel Gesino,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ivie Murison,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mahesh Flach,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Annalee Prikkel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Catja Scholman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Anda Fastpack,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Salis Nehring,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Francis LeBlanc,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Humberto Stensrud,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Manfred Wesolowski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Estele Fiest,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maciej Fucito,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Frinel Veals,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Catha Ghossein,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Basia Trinidad,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vita Leveille,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lidio Toomer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kessel Keveny,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alf Noorani,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kirstyn Hutt,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Blisse Lein,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Edithe Dougall,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sage Randell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carina Hume,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mickie Prystie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nalin Levere,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Allen Iannotti,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maressa Poulin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Danni Hummerston,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rosabel Buley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sayed Virant,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sundaram Lojewski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Laina Ertl,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jeniece Bcs,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tammy Heikkila,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pearle Bruketa,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cherie Brett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hector Gingrich,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Biplab VanHaste,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Roby Larin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shirley Holvey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shari Skaff,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Valida Fleischer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=March Hess,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kamran Shabatura,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Arturo Ensign,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lauryn Wever,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anda Wilhoit,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Samia Cochran,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Michie ToDo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Arvind Gundecha,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Costas Watson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ebba Gutcher,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Peggie Madl,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Norry Benjamin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Loreen Chapen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Loay Clairmont,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jagdev Eaton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vina Smothers,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Minerva Cuper,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lynette Cascarini,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lsi Loughran,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cassandry Emmert,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Minnesota Herzig,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lauren Syrett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dyana Pennell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Camella IRCMARKET,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Doro Cottengim,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nesta Bydeley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yogesh Meckley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ailene Challice,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Viola Hately,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shunro Singer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Chitra McAleer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jay Biage,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Faydra Kandra,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shandee Safah,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gen Marano,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bettina Spinelli,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mureil Vish,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alane Carlisle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sayre Paulett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ambur Fernandez,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carlye Puelma,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Eleonore Edwige,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Yoshi Neustifter,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bernd Ribakovs,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ralph Taylor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Baldev Annab,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Me Cuany,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Neville Doble,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alidia Banens,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hans Fahey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Luce Piper,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maible Adamo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Leny Husarewych,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gerald Bijjani,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maint Olivares,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Arturo Groves,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ho Rolnick,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Erning Lingafelter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alanah Wolff,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Corrianne Hughson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wallis Grubbs,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Eran Sziladi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Joji Cassar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sunil Brisebois,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Otha Dee,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dyane Hungle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marlane Mitchell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Belva Knighten,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shahriar Upchurch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Blaire Hr,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Idalia Batura,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bachittar Reneau,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Inger Oshiro,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sharline Chester,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Glynn Surreau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hatti Griffiths,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gudrun Robson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sati Hallett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lotty Flansburg,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Larina Scanlon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Barney Surridge,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yolanda Wanda,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dasie Tougas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Julee Milton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Selle Oslund,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leelah Docherty,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Clement Srivastava,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marsie Schreiber,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cathryn Bokij,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Melody Fontana,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Saul Fussell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Thomas Gourley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Norstar Trefts,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cathi Keiser,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Apryle Haurie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rozanne Trouborst,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Catlaina Intemann,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anabel Intune,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ninnetta Matney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Regina Lemay,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Janos Davis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dniren Serack,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jaffer Guty,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kalpit Devine,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zitella Sammon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Renate Worrall,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Medria Aribindi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eba Bockaj,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Calley Thaxton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rheal Dadgar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Daphene Bayno,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dilpreet Javor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kambiz Nyce,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Karan Molochko,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Olav Straub,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Berget Hnidek,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shahriar Benschop,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wilkin Boinnard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vital Simcoe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lydie Hooker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Greta Minyard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Adelice Fishman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Devinne Kellum,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Breena Telco,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tianbao Gerlich,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lana Keates,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Veena Richards,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Charin Clocklab,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kollen Fenwick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lucille Orol,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maier Bobar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dori Garwood,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gussi Horak,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marillin Boroski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Noelyn Hinkle,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Erlene Schirmer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Binh Hoagland,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aviva McIsaac,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Noami Cinicolo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yukuo Wolford,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Amalea Kesler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cyril Inglis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ladan Schutz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bob Erbach,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hideki Fobert,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Koral Bilton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Adriane Denike,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ayako McCormick,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Renell Kales,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brennan Wolter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mariya Wesselow,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roe Kathie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rici Sobel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eladio Malek,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Siew Dunajski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rosalie Feild,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Karyl Scarrow,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hoog Fielden,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fredericka Corbett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mabelle Bondurant,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zafar McCarron,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Malia Faletti,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nesta Mawji,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liliana Vaillant,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Den Arora,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rosabel Parkins,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Edyta Moroz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=James Brunato,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Retha Miceli,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emmie Hage,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Open Kozsukan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Crystal Dommety,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lindsey Coxall,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Morgen Theoret,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anallise Golas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Emad Sztein,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marianne Makarenko,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anda Lytle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anneliese Hanser,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Herb Gagnon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Isabella Conroy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brandon Menaker,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mame Sanford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bea Aloi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sylvia Alink,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mora McGovern,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tiphani Lieure,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Consolata Bejar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Winnie Jensenworth,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Takashi Lamirande,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rosamund Serack,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Natalee Keitel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Desiree Conde,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Clyde Kamal,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shana Mulvie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=PeyKee Rios,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Costas Szabo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Su Organization,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Norean Brien,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tiena Clapham,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jade Jims,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ramin McKeen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Steffie Bohn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rachael DuBois,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kore Mayhugh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eleen Moledina,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kaminsky Meany,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pammi Overton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sinh Abbott,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=LouAnn Gaines,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Arabella Shamblin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cammie Erbach,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dayton Baughan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Meggi Rozier,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Romulus Zuk,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marce Tiller,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Patt Brennand,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Claus Depew,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vahe Kerwin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pauletta Crocker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sterling Shostak,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kartik Rogge,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fei Reich,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leyla Etten,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sattar Sergent,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kare Hochberger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lilly Kuykendall,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rachele Fullum,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Madella Forslund,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Janio Fussell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lacy Carr,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Erinna Odden,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bertrand Devgon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ahmet Achille,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Heike Jenner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lynde Staats,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Estele Kolappa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Oriana Hughes,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lucila Rand,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Emile Bellis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=LouisPhilippe Hann,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Franka Frey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jillian Unger,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mathilda Diederichs,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Susanna Vlahos,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aila Henninger,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bettye Guth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Livvie Benwell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melek Nagendra,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lesli Tobias,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Greta Schecter,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nevil Padgett,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bianka Cooke,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marjan Lyman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aurora Bayno,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Housseini Dominguez,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Arnie Ulrich,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Amrik Carlock,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Saundra Crapco,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shashi Ketcheson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maidlab McMillion,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cloe Marquart,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roselle Donald,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Chander Roussy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sunny Rollin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sam Meldrum,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kitson Sture,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Janot Breglec,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gaye Rothwell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Moe Schumann,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sarene Keifer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Janette Npi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Danette Galloway,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorianne Mullett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Isabeau Wippel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cassi McRae,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=WaiLeung Marples,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Joceline Seifried,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bill Coldwell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marlo Belich,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Prams StOnge,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eudora Dunstan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Thor Ritz,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Manhatten Isert,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Farra Garee,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Arun Xpm,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alida Ausley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Trina Okon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kania Harter,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Samantha Gantt,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Akin Houde,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vince Herscovici,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Issy Bachecongi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Seelan Licandro,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hqs Dipper,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sidone Ricks,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Meghan Wai,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Koen MacInnes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Doralin Worthington,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Loris Godfrey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Monroe Halpin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gerianna Arnon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hazem Pien,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cristofaro Dysart,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Margot Muzio,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Makary Wagers,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yudy Sandford,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Baruk Junaid,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Morganne Grimmell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Evaleen Beine,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yumi Mudry,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Salomi Heisler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Trey ETAS,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Co Knighten,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gillie Rheaume,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jamal Scotti,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sharri Lotz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Agnella Loi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Leno Henley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elex Langer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dwain Bielby,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roy Terranova,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vaughn Corlett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gladys Helmy,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bihari Mirek,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lissa Hernandez,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Torre Monahan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maia Arellano,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gina Hattar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dena Trottier,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vmchange Cavan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lorie Brickey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ardie Dix,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maybelle Augustus,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Engracia Materkowski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jacqueline Durant,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Charly Klapper,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elpida Doerr,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bethena Parniani,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Janka Macklem,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Myrtie Mc,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ludovika McKnight,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anil Cotuna,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Merrile Wilson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zahara Ferree,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maryrose Sagan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Legra Binder,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ernaline Tierney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Seven Nicol,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jeannine Forsythe,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tilmon Taheri,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Svr Krishnan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Niki Khurana,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Duong Laux,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vevay Isert,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lonnie Visser,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chungsik Choquette,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kalli Meilleur,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Merline Riggs,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Milka Parkes,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bakel Fisette,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kiley Hester,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eydie Edgar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sherwyn Monn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Danna Hagenbuch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Flossi Davidson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rosy Bergmann,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Larine Broca,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Therine McCurdy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Clarice Travers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dacey Bedard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lissa Barsky,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lino Endrys,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fina WGA,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Munir Colton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marje Dallaire,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Farrah Meehan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tilda Alsop,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leni Janovich,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Katrina Morreale,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hinda Briante,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Helli Frie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Renell Ulrich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Moel Taralp,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Keeley Rok,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Britta Melucci,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=StClair Farren,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vino Papantonis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sandi ENG,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Michaela Blimkie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mort Kestelman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Reinhold Briggs,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Norbert Rider,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eveline Smelters,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elinor Stambouli,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Donnette Kenol,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Margette Keogh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Makam Kumagai,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tallou Vairavan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elana Derrett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hanny Farranto,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lucina Hobesh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jashvant Mellor,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dupuy McNeese,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ying Forbs,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Paper Cowell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vispy Snair,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mona DeCecco,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karolien Beznowski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Frinel Godcharles,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dung Goldstein,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Scarlet Coody,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Julina Stahly,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kippy Roman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Helsa Stahly,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hiroko Whetston,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aviva Harwerth,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alida Ferriera,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vyky ONeal,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Daya Loader,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Katsunori Bouret,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rex Combellack,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tallia Videa,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Remy Lalonde,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tobi Houde,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tommi Luna,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alana Gelo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Seven Salazar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Conway Jenness,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=VanKing Padgett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tansy Aronovich,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fidelity Shelley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tres Parr,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Myrtice Graver,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Junette Weyand,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Daune Gosset,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rolando McNally,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kirstie Trochu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=MaryLou Brock,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Edy Singbeil,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carsten Macklin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Weiping Arnone,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joceline Muir,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Opal Isaac,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dedra Bastien,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kiri Gillon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Geoff Bergstrom,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ngai Dorion,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dayna Bragg,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Madonna Parihar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ari Fergusson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ramonda Tromm,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Foster Cre,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Willette Juhan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Melamie Darcel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Arlena Joe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mufi Higgins,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Viera Paetsch,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roy Wai,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cheslie Lamont,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ash Moomey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Humphrey Culver,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Consolata Daniells,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cark Lowman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carolien Tabl,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jere Nadon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Weber Chouinard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Othilia Redfoot,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Drudy Joffe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Moris Abdullah,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Misbah Mach,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maribel Searles,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lilah Haverkamp,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fanny Baril,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Milou Dada,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Earnest Walters,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rochelle Buford,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rajani Enns,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ofella Nessman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Donella Lethebinh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tzung Camillucci,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Suzanna Furst,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Berri Pracht,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Esko Feist,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dorin McNerney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kataryna Vaters,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nikki Captives,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mureil Fowlkes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Charla Silieff,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gladys Jarvah,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Juan Hummel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cathryn Scheible,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Harri Senese,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Moreen Lemay,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jabir Gunn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dotty Oman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Quintina Mallett,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Adie Itah,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Philippine Corcoran,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ollie Panter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Clint Jesty,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tomasina Gofron,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nong Bnrecad,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Margy Lucas,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Melvin Cohen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Milissent Rolls,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Theodore Egdorf,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vernice Drynan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hensley Parrish,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elbert Culley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fady Benavides,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Djenana LeGuen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tele Travers,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cherilyn Stults,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Harri Kuntova,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dulcine Litherland,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kelwin Diee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Veen Tarver,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kimberlee Malee,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Chiho Larmour,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Merrily Provencal,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Divina Brevard,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Celine Lotan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Noriko Corner,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Janean Hoshi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shorwan Womack,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hattie Beilin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Loralie Cumming,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sanae Zalameda,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Krystalle Logue,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fara Dillow,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lonna Willcock,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Thrift McClelland,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tres Bashton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lara Terneus,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Taryna Ganguly,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Serge Systems,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marisca Parise,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brook Ta,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Evanne Servance,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hamzeh Lyall,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Collette Yao,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mandy Heiliger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Liduine Farah,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Arlee Hawley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Theresina Reinink,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hanny Hassey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gil Zhou,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jurgen Strauss,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anestassia Phair,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Koko Fetzko,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Irc McRae,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aime Reno,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Olympe Aston,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Janenna Durnford,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Selcuk Sochovka,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lauretta Abell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Akin Algood,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lenette Rance,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Louisa Thorne,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ichiro Schill,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Delila Swinson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sriv Paul,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Trish Rombeek,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tien Aghi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Barlas Discover,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sarita Cescon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Errol MAINT,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vonny Sheu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Guilford Kung,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marguerite Markland,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Viviane Lenox,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Walliw Borrelli,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Amalea Laskin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Florida Gebrael,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kieron Walkins,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Andree Junkin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Louise Joudrey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gillie Achcar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Divine Ferriss,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Noella Charlebois,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brenn Screener,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Olivie Bruneau,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Annemarie VanMeter,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rudy Piper,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Berny Burger,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shirene Moyers,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hideki Willis,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Manas Leveille,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Collette Quane,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Renu Schallenberg,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Craig Fleischer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marla Visentin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Baris Ralph,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gusta Nugent,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Boer Jago,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kieran Wattier,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mala Shillingford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Charyl Whitty,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jawad Waller,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Glynda Tisdall,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aditya Runnels,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shuji Lisch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Corette Biggers,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sarah Marceau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Huy Reporting,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Charissa Douglas,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cortney Okamoto,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rene Fletcher,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Deryck Nassr,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Coraline Kato,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Becca Hallenbeck,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carin Briggs,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wai Pellizzeri,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joachim Nesrallah,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Loesje Smothers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dani Maksoud,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kieran Forghani,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lusa Korpela,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Data Roussin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Stone Scholes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Agathe Huddleston,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vmchange Vacher,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aleta Buntrock,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darlleen Murris,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mysore Kenlan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Roxanne Janning,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alexander Enns,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Koen Keith,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mohan Parulekar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ronna Esparza,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hot Terrel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aparna Loiseau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lana Fasken,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fariborz Neefs,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Netty Eustace,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rio Philion,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Beverlie Kutten,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=William Ridgewell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nonah McGlynn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Grace Hickerson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Liping Levi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mauro Meubus,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Minny Southon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Halina Zenar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gwenny Bertram,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Andreana Gaube,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Michelina Zbib,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Davis Mutcher,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kelcey Yedema,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kaila Squizzato,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ddene Ciocca,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Harmony Peschke,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cheslie NTINASH,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Celisse Malizia,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rachelle Siew,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Charlean Robson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gabriela Mustillo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Latia Viau,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Madlen Venning,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gunilla Skene,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anestassia Ting,ou=Management,dc=bitwarden,dc=com +memberuid: cn=MaryJane Telco,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mansukha Tchir,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sherline Gillard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Inm Stefanac,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=PengDavid Pryor,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Agathe Hr,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ervin Biage,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Brandie Vargo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Augusto Audette,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Loella Haydock,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tami Scarlett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Betteanne Badza,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Roman Barsony,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Katrinka Debortoli,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jillana Alary,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Margeaux Raines,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cassi Moritz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sales Rasmus,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Katrine Thomason,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Celka Kester,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pansie Mayea,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Burton Shearer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Augusto Montero,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eyde Gallion,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sule Valenziano,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Therese Totti,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dyana ChampionDemers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ranea Zitko,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Thayne Langer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chie Hilton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gisela Enet,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Erlene Krajesky,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cezary Stephens,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cyndie Therrien,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rolf Philip,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karla Biss,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Danica Margittai,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shelly Fabris,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Netta Gregorio,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lu Tsai,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anabella McManus,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sandeep Deneen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fiore Brogdon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mariellen Tilley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ina Joudrey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Baines Buettgen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carie Pitcher,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Candie Gurer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Zino Swinson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Terese Beton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Reena Gullekson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yoda Prado,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Waneta Irwin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Prity Wyllie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jillian Borzic,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Akio Broussard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ind Suitt,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alyse Walkley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Julienne Milne,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kit Lesperance,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Libbi Niccolls,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kas Ashraf,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Georgia Henderson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nuri Mand,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shafiq Doi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mamie Angerer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Trula Ledou,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hoy Rushton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bobette Tohama,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Four Elks,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alli Kaura,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gil Walston,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Viole Lopinski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Amy StOnge,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Emogene Cocke,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tash Sails,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Coral Viriato,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Des Zacharias,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Durantaye Skelly,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Candie Mitsui,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rocke Baughan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vyza Tsuk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tiffany Fisprod,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rafael Tucker,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kayle Gedman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Arthur Axberg,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Deeanne Armstead,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gaye Sils,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sadan Trottier,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Reina Woods,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Krystalle Evers,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mair Bascombe,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dinker Meehan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elena Chabrat,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rozelle Kunkel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Christine Moree,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anje Saward,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kwok Pringle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Chiho Zilaie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shaw Leigh,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rosita Updt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Selim Kriegler,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tae Jeng,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Faz Chan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ericka Hayes,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Calli Pharr,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pamela Hufana,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Carley Fogleman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marsh Gribbons,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Herminia Corvo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Loutitia Bruce,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Genga Poley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Petunia Gunther,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bernice Yuan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brigitte Zahn,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lexis Otsuka,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Avril Hoffelt,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vax Regier,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Meara Lindsey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aeriel Juan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dear Valerien,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shobana Bardsley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Iona Kohl,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Idette Ramage,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mick Jakab,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Clay Staats,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ronica Dummer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rolf Maudrie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sidonnie Comp,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jimmie Mand,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Esmaria Walston,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Claude LaVecchia,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rusty Montgomery,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chelsey Favreau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=JulieAnne Drubld,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shantee Moulton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Camilla Sayegh,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Txp Wojdylo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Belen Miernik,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mani Skillen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Diahann Roeten,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=KaiWai COKOL,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maible Adorno,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zero Fletcher,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Daveen Burnage,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ebony Duquette,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tracie Holinski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rio Naem,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Reeta Abel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Felicle McCartin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Darrell Presgrove,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Faizal Awadalla,ou=Management,dc=bitwarden,dc=com +memberuid: cn=SikYin Borha,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Steve Marette,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Janeva Diener,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Amelie Brashear,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kenneth Tahamont,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mario Pappu,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bethena Arnauld,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nhut Hollis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Claudette Murton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dalila Solomon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Veriee Aksel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mirella Lambregts,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Paulinus Bagi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rodrigo Healy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vicheara Reimann,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Johan Srivastava,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Isl Luciani,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Monah Nipper,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sibyl Luettchau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maryl Feeley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Moyna Syres,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Petri Jimenez,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mike Inoue,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anita Gonsalves,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dennis Saad,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Taryna Anchia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Abigale Dacal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kana Gantt,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hans Raing,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Melford Lopes,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hermina Ng,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ren Schwenk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Subramaniam Cranston,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Coors Livas,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Arleyne Schreier,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ko Yuen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=HsingJu Kellogg,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Juanita Beisel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jackson Forbes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bethina Rosvick,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Osama Bitton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Douglass Eales,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Linh Ostifichuk,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leonor Hepburn,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Umesh Mayhugh,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cecile Chorley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alia Kuehne,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Fernando Pacey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sela Sandlford,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Latashia McCuaig,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dara Goodwin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Helli Charlino,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Erhard Ikeda,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Perrin Lai,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vickie Bardsley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Katherin Habert,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nobuko Prickett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Amye Seery,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Illinois Bolgos,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sandro Ploof,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Turgay Potesta,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Debi Hore,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leyla Toulson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Morris Asghar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eirik Satkamp,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Asghar Graziano,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Randee McIntee,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Magnolia Aderhold,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gert Thibert,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hunter Durant,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Luci Gergen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yousef Musick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shabbir Derganc,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Amalita Korey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Herbie Merrils,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=YuenPui Woodford,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mair Dobransky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fae Molson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Subhash Moizer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rosella Spillane,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Persis Modi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tamar Haggart,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Orelie Cheval,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ronna Morton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eryn Avirett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rowe Firment,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fidela Irving,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Desire Rutter,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Xaviera Anstead,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kelsi McAlister,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marce Onyshko,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Son AlBasi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Julianne Temp,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Seamus Sathe,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Terra Tanatichat,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Emil Hogeboom,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anup Volkmer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kevin Tangren,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Germaine Lisak,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Deni Chea,ou=Management,dc=bitwarden,dc=com +memberuid: cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jooran Hilton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pramod Piltz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Reyaud Kurio,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Radio DiNinno,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cynde Tudo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Genga Huor,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leandra Steffy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Trisha Walpole,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Valli Buzzell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gita Manuszak,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sadru Suda,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Susana Mattes,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Diannne Geuder,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ned Faletti,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gwenni Felske,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Coretta Mayne,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cissiee Hampton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kalina Fangio,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Petter Sarna,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nando Shurtleff,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Valene St,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elysia Swiat,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Yonik Valerien,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jania Clouthier,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lennart Whang,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hala Wallis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Levy Younger,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rahel Strober,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Casi Swick,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dimitrios Coop,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Elga Ashton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Harley Streatfield,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Khamdy Quinn,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Devan Kashima,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Regine Frizado,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roger Bondurant,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Taffy Solkoff,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mame Muradia,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shirlee Mackey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Terrye Redish,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Penelope Rey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Anthony Meyer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dre McNerney,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Brooks Drescher,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brandea Dziemian,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Candis Richer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ludovico Gleason,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ninette McTiernan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=TunLin Pinney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Joshi Cassese,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Miroslav StPierre,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sammy Krater,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sapphira McCain,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pierrette Discover,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ulf Willcox,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Carmen Trame,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cornelia Karim,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roobbie Stars,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sharee Wynes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sil Marano,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leonor Maginley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nicoline Magee,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Penang Musca,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carlos Smyth,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Evania Copello,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jamie Tschaja,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Thang Dallaire,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Daphine Chandra,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ohio Baerg,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Else Brien,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Giampaolo Gu,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Seven Tregenza,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rakel Ressner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Britney Prestia,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jonathan Guty,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Livvy Hoag,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rennie Postolek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jayesh Liao,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tiffany Fougere,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Darline Swinson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Biddie Scp,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Colin Irick,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yueli Clinger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Randa Wery,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Theodor Schute,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Keeley Basa,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mimi Clements,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dasi Baader,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kerrin Miner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tania Guimond,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hedvige Doran,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Diahann Nason,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leecia Guarino,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kacie Moyano,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dicky Guignon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bobbie Suwala,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Melissa Adkinson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Georgine Lantto,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Johnnie Mayes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anker Serapin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mable Thirugnanam,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Allan Rizewiski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Peng Quantrill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Addy Paunins,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Friederike Constable,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Starlene Solodko,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Verene Ludchen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Curtis Mersch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Piper Brander,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rozalin Heppes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cad Ajersch,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=TakWai Wagoner,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carran Rokas,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Idus Wayling,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maryann Somerville,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mildred Dumas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ilda Bisson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Babb Nicolle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Karyn Pagani,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Agnola MacRae,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tessi Borha,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tonia OToole,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gheorghe Eros,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Robina Chaikowsky,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ursala Wadden,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sephira Munsey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Neal Astle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vacman Lapostolle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Genna Rappoport,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lenny Mundi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Iva Pilote,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Caridad Spolar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elenore Jatar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Otha Scheffler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Janot Greenway,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rowan Hicks,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bertina Harkness,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Misbah Desautels,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=TakWai Miranda,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Blisse Silverman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nerty Longchamps,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hilary Mendonca,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vivien Seager,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Estele Dasch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joyous Belson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zorine OLeary,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kanata Kilby,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Peder Gaylor,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carter MacMaid,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Man Dacre,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Theresina Torrell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emelda Neely,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Avinash Kingaby,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Crysta Sloan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Buck Auerbach,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fallon Windom,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Samir Wesenberg,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hildegaard Valko,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Azmina Irvine,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cortland Kwa,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Franz Artspssa,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marrissa Ronan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Stanislas Sehgal,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Woody Morocz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Karla Proffit,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Julianna Varughese,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elset Neustifter,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Grete Daymond,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Thekla Wokoma,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sika Koller,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sukey Strauss,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Icy Foeppel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yongli Barrows,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Xaviera Broca,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Junette Foos,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ashraf Denter,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amelina Marceau,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yuen Huppert,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vijai Bergeron,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Diane Andersen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jester Mannion,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Christy Townsel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Raine Assistance,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ireland Ciochon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=WaiMan Binner,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ruperta Jodoin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Narrima Tu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elonore Spieker,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pick Santella,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lynea Newcomb,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yukinaga Brander,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jerrylee Galloway,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mia Amarsi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joyous Smecca,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Larkin Baughan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lillis Tyler,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rosy Stctest,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Costas Zanetti,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Technical Carpentier,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lanie Geesman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Eydie Sliter,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Trista Farag,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chery Greaver,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Katuscha Huor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bue Satta,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Justine Manolios,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Guenna Sullivan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Deb Sehmbey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gavra Skrobanski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gajendra Deibert,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Yong Nuttall,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Siew Saiyed,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Access McCullough,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Charmion Sathe,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wilow Tools,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marylin Fradette,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bellina Capobianco,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Darcee Stegall,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tonie Georgiou,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vahe Jasen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dien Plambeck,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pamella Royle,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Miro Doolittle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Esmaria Ligurs,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jim Gillespie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lottie Patoka,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Keven Camillucci,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ning Schiegl,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Torie Sridaran,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jilly Ziai,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Katharyn Herak,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carmina Slade,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=NamKiet Dada,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nashir SUPPORT,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bonni Gehring,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Agenia Deboer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tatiana Keene,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ora Trayer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Malissa Walta,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sage Jones,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Homer Boothroyd,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Oksana Baran,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gill Stalter,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=PohSoon Carter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cherilynn Munden,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Stephie Wong,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Leah Makoid,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sisely Cameron,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lacie Seddigh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Golda Decasper,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chander Kernahan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nicola Haupt,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Orelle Ifact,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jak Locken,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Phillis Hermack,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marcellina Knighton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Krystal Runnels,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sonnnie Steven,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Catherin Whaley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fernanda Michalos,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Darline Worpell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jose Brading,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Adrie Coverdale,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Coral Larrigan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lorrin Derrett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Xu Gertridge,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carlisle Wokoma,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tatsuya Standel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shirline Dahl,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mandie Tota,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nicolea Garee,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Geraldine Meehan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mickie Budhram,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Faustina Severinac,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Roy Zaloker,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karel Padiou,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Taiwana Rhodes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hedi Cicci,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Valaria Limerick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Oralia Hoggan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Leyla Parham,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Derick Paar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dau Peart,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Danell Kapp,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pen Marshall,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kary Soo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kiem Pracht,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vick Marleau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Adrianna Bruder,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Isabelita Swinney,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kelcey Lee,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Brandy Koellner,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Selie Schedulers,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Addons Dieter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lesly Willett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Coleman Wolski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shutterbug Lauson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nancy Oziskender,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Doloritas Flowers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Veleta Lun,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aila Speaker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Scptest Menna,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Madeleine Goss,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Thuy Sullivan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sheridan Sandner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Malory Groff,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Armine livinston,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Anibal Ribakovs,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tao Kardomateas,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mommy Neto,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Goldwyn Lister,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jesus Fraser,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sabina Davison,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ohio Leong,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Helma Fulford,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Wendy Ashford,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ricki Schadan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carolee McClintock,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fara Phifer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jennee Jasmin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Yatish Streng,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mair Basladynski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Karyn Bender,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Beate Ahlberg,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roberto Binder,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Miro Sparksman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ethan Salazar,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elza Meubus,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Phyllida Peng,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leslie Wagoner,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Erning Dmsrtime,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Frederica Barel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Wilkin Coupal,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Millie Kenol,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Miklos Menzies,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=WenKai Peleato,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=ChoLun Simser,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Minerva Paulett,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Asia Aleong,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Xantippe Sydor,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Devora Bunker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hudai Dallago,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pamella Herman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Preston Marco,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sybyl McIver,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Fidelia Mehta,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tom Boose,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lorrel Manno,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Stacee Finnie,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Clari Beshai,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clovis Banigan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cherin Shedd,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ivonne Whiting,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ardra Gemmill,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Arthur Koch,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leonie Begley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vanessa Thum,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rey Boyer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nanete Tomlinson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorrie Lamy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Donal DorisHampton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leonardo Palasek,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rhodie Seery,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leonas Salomon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sibel McKnight,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anabel Borel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Milo Gravitte,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Katha Noddin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jami Baab,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Verna Petree,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Adelia Leibich,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jann Marquart,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mirjam Cleary,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anselma Sabat,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ursola Zagorski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gael Cho,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kris Rotzjean,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zaneta Wun,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ania Scalabrini,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Andras Maruszak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tab Kalair,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nadya Speer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Turus Bisson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ioan Naylor,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jeroen Fleurima,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lacy Arai,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sylvain Hickin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Margaret Begley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vick Lovegrove,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bob Acres,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dahlia Oost,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ianthe Yum,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Judi Adamo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Filibert Pachulski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carmon Kroeger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Camellia Gavidia,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fqa Abrams,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pepita Houston,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Horst Becan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ericha Akai,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mina Amato,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Katherine Ostarello,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mario Bice,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Othelia Radford,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Meta Todloski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Riyaz Georges,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Teddi Connell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Huong OKelly,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maddalena Dillard,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Amandip Lescot,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Verinder Chiou,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Helmut Asdel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vital Therrien,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ileana Bottomley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Julian Condurelis,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nashib Mikulka,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cristie Nill,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Oliy Maloney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Davita Berger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Metyn Mullaly,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ning Suitt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rafa Vilozny,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anita Bui,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Verina Lamirande,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gusella Loggins,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hatty Murash,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Clyde Labenek,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=New Koay,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Doria Smothers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tonia Gahan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Reina Gracey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vale Harwerth,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gavra Brule,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Corilla Angustia,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Simona Lemyre,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Loris Knappe,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mariya Frumerie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pradip Wesenberg,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Teena Szuminski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jeanie Shumate,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mindy Agnew,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cosette Hagley,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Darnell Gombos,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Odille Belisle,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mirilla Malik,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lise Disalvo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lou Burchat,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Donita Teichman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hermione Monet,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Belicia Kupitz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tani Rausch,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Berget Baerg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Skyler Hariman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Toni Shaddock,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Foad Roberts,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Keely Dee,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shiu Trimble,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gwenore Taren,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Saraann Millen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sandra Mosley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bernhard Niro,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ema Kelkar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Erich Pandey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Farshid Sattler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anissa Nasato,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Grietje Dionne,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Asia Dobbs,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Flor Powney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Valera Fogelson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aideen Vanaman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pattie McLemore,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Levy Wolfson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Patricia Pappas,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Miguel Kozak,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gina Toolroom,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fairy Tables,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Selia Larocque,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jozef Altmann,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Octavio Doud,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Atl Baugnon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stacie Tabler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chantal Feil,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Waverly Caron,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cindy McTurner,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cherri Loper,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joleen Fobert,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marley Dadalt,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jennee Reznick,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gerrit Pullan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Duke Ness,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emilie Grigsby,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shiroshi Thorsen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Katey Dorr,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Manuela Whitsell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alvina Stokoe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Theo TestNTMVAA,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maidsir Spaugh,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vilas Jarvah,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cilka Chadha,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Merl Heffner,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shelly Adler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marchelle Howie,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chick Doucet,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vittoria Astley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hector Easaw,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Matilda Gomez,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Crista McMasters,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Amnish Haydock,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mignonne Shull,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lizzy Monson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Riyad Stropp,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jennee Tipping,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lorianne Devera,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kana VanSickle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bina Scales,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ariela Stachowiak,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Leontine Kresl,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tomasine Borza,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Emory Ramnarine,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Corella Loperena,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mirna Kashef,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Roseann Coyne,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Agenia Zampino,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vic Lenox,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sissie Rao,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chi Shreve,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gloria DeGrandis,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ryann Teacher,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Naveen Kollman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rozina Schipper,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Partha Kelsay,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vinh Dhar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cart Cardozo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Briana Ambler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kemp Akai,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anjela Gribbons,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hudai Baulch,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kee Gilchrist,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ellis Brunner,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Violet Luwemba,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kessia McVicker,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Buffy Treen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Huub Palfreyman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Walt Pringle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rima OBrien,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Robinett Borg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Wai Elms,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alikee Seay,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pammi Abrams,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gateway Benzick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rhody Birk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Atlanta Brannon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Moshe Bowick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shirene Lommen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chand Fusca,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bethina Kigyos,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Paolina Ricketson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Isaac McNeil,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jaman Churchill,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Erick Heynen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sondra Frie,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mack Hermanns,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Patchit Panesar,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mohamad Ng,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jayme McMillen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Perrin McMasters,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joell Veloz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Naima Swinks,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mab Amato,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jeanna Lawther,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Luther Kordik,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jenine Sutton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ronny Blomquist,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Krystal Noel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clark Bruneau,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anallese Bloemker,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=WenKai Schemena,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Luan Goupil,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Verna Britt,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hoog Gareis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Skyler Lamy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Layne Esry,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Amrik Thornber,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Michaela Lobianco,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Roxy Banerjee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Derek Ukena,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jenelle Crothers,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Devonna Caron,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Neill Droste,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lissy MooYoung,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Frederica Herbers,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Geir Madigan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cal Vosburg,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darrol Schluter,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Augustin Polashock,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karrah Federico,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Arlina Douet,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Herb Cantrell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ott Beresnikow,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tracey Tates,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jeniece Belmont,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vern Vosup,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zoltan Zumhagen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Makiko Walta,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ermentrude Boult,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Larisa Szura,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Wiebe Ku,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Zeljko Subick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Liese Neill,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Doralin PATCOR,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tillie Erskine,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sheeree Petrunka,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Winifred Grelck,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Toni Volkmer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alexandra Bassett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ineke Aloi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shafiq Hearn,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bucklin Venne,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Theodora Kendall,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kee Simanskis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Micky Moorefield,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Saraann Helpline,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Blondy Kluke,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marys Edgette,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Verina McGuigan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Beryl Desmond,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sydel Staples,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Letta Kalyani,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shuo Anstett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Winifred Billing,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Colene Colwell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Isabelita Irving,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Raudres Fleischer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Laslo Anstett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ovila Liverman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Angy Walkins,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hesham Ellison,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Arnett Boone,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tawauna Culver,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Annelise Traulich,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Farouk Goridkov,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Loris Huestis,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sile Creighton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Deborah Marui,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Drona Hahn,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Genia Pewitt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Annet Bagshaw,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Martha Hilaire,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Consuelo Welch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marti Petrea,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pratibha Gater,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pojanart Edey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maynard Shennan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Theressa Schultze,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nanon McIntyre,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Silvia Peiser,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Meryl LeClair,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tariq Standel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Yeung Walpole,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carita Timmerman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Haley Herren,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elbert Allard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Trix VO,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tommi Kapsa,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Teriann Stastny,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bryant Goel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Willabella Darnell,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Noemi Skerlak,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Veena Siefert,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Karyn Frankenberger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Angil Simpkin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Berta Fetzko,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lance Saltsider,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vijai Brent,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Miss Casper,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Adrienne Askins,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Omayma Kinos,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Francene Babin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maitilde Clerke,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wileen Martel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Salli Boroski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lissi Straub,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Adrian Paialunga,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dido Kohl,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chung Yarber,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=KwokLan Starowicz,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Odile Finane,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shila Wykoff,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nga Seroka,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Laurel Godfrey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marja Brivet,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fung Holvey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Remy Freeth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Christina Schwartz,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sissy Snelling,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Randa Cumpston,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maitreya Dpu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jon Giotis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mala Kilner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Melanie Bubel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Collie Nentwich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Madella Feder,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Roman Burleigh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=SangMaun Nunn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Moria Auld,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ted Demeulemeester,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bertha Lamont,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hayden Francese,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jeannette Quante,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Steffane Middleton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Saied Streight,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marco Ethier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carlyn Gallion,ou=Management,dc=bitwarden,dc=com +memberuid: cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pacific Maxin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Coursey Breiten,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brandea Bagi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Silva Hoag,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sybilla Tipping,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mindy LePage,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Beckie Bach,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Catie Biermann,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jin Benge,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Elsa Breglec,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Clementina Lozinski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Danella Gullekson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Monte Luker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Valry Bratten,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lissi Neumeister,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Claribel Digenova,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tatsman Verma,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ransom Nipper,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gilemette McWherter,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Holst Bringhurst,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Joe Guatto,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Peder Jarmon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Melisa Lenior,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shafiq Archer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nancee Smuda,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ferdinanda Yan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Portia Basinger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vanda Holmes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sid Shedd,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Merrielle Cinar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ginevra Varady,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Noraly Hassan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ron Stirling,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kala Huber,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Woon Rasmus,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jaime Delf,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dina Kaunas,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Todd Gainer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=HonKong Woolwine,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joelie Challice,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Margalo Behlen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Trish Meunier,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Verine Lilleniit,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Corilla Popescu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wynne Hudson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Laurel Leavell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Madlin Irvin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ashleigh Salembier,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sacha Dailey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lynett Reddy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bregitte Nixon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Peter Engineering,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pawel Drane,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tommy Cisco,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dvm Early,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Akin Forgeron,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lilllie Precoda,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Corinna Spragg,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yoke Pitre,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rao Grosman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Renate Belford,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nico Olsheski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alta Wiley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bennet Dunham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Chandran Crutchfield,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Suha Stiles,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sheela Montague,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brandais Speight,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ignatius USER,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Merilyn Trull,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ursulina Parise,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ailey Bosworth,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ally Pickett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Viviene St,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cole Kyoung,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Brana Telesis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Naohiko Netzke,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tessty Aiken,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Riannon Clifford,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Roxanne Kardos,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Salome Shellman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Agnella Shiley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Afzal Muise,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dita Yarosh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aparna Gamsa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Angelita Letsome,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Peder Lotan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Etienne Courchesne,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Huguette Foos,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rania Myhill,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Crista Saha,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dori Brissette,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Niki Bonney,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lyman Busuttil,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Loon Esselbach,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eleni Hiers,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sal Soo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tdr Porebski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lilian Binda,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fil Craggs,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fan Bednar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kanya Koens,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Salomi Enns,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dido Lanthier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Corny Uyar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pinder Barclay,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Micki Munns,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Milly Raines,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pas Waines,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kala Berning,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Greg Bach,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clay Rasmussen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kira Rummans,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Graciela Birtch,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Audie Pintwala,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gabbie Chiverton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Deann Sheridan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Orie Lahaie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hodge Schroff,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gertrude Rains,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=ChuChay Averett,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Amando Fernandez,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carolann McCorkle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kalvin Jamshidi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Candis Gentzler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gil Strauss,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Prab Crafton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aurora Francoeur,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Francois Willcox,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ethan Engelberg,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Beryl Security,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jessica Lovelace,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fqa Desilets,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emlynn Louie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Russel Gillies,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dionne Parniani,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Birmingham Shippen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Trudy Durling,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Selena Mickens,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Laureen Paczek,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gurjinder Gosset,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dede McKeage,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shanda Scroger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ophelia McHale,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ajit Kiens,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nicole Zhao,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Saloma Alkire,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Khosro Essery,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Veronike Dyck,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Franc Revelle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Freda Tschaja,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Deepak Sangha,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jennee Stover,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Diamond Brownfield,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sangman Estey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ola Kupitz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Willetta Mayes,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nahum Sprigings,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Juile Nttest,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hazel Johannes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rebeka Welker,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gordon Fares,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Corella Swanston,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alisun Volfe,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Karine McKerrow,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yvan Gandhi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Darrol Mair,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Narendra Cramer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Christina Bittman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vo Peacocke,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Salim Brushey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jorey Jensen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Willow Benda,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marilyn Nardiello,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Federica Keck,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carling Sture,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Inessa McCaffity,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Esko Todaro,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Charman Brownridge,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Le Reese,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cavin Bijons,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Naresh Hiltz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jai Tiller,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Esme Daniells,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Trey McWalters,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Edlene Bumgarner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tape OHearn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Robbin Hayman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Debadeep Andrade,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Parham Maunu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ruthe Calhoun,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Albert Waid,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mason Azar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tory Vairavan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marisa Kuntova,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rungroj Rains,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tak Tihanyi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sharlene Litz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chelsea Ruane,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eddy Talbot,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Manhatten Tota,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Annabela Gingrich,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Regis Watmore,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shanda Bowen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jyoti Wells,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hanns Sharkey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Reva Ostapiw,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Michele Elkaim,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emil Knappe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Beryl Windsor,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Joyan Varia,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mitchell Gatka,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ailee Events,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Herre Cadeau,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kaye Hafiz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shahid Follett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pet Bohanan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Colly Daigle,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Deva StOnge,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Giri Glucksman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jorey Gillet,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shelagh Balutis,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rachelle Prakash,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Akshay OKelly,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Condell Kho,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cordey Ballard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amelita Okura,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nadeen Longpre,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Imtaz Chouinard,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Melinda Tappert,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Misha Karaali,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Evanne Donator,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gussy Prikkel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Liping DaSilva,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=HackHoo Sayed,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rozanne Heurich,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Arabel Omura,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marce Rivest,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Irena Hammermeister,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sotos Bratten,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Elpida Vuignier,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Naoma Rowe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pawel Bourget,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Deloria Couser,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Conni Stainback,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Modesta Huszarik,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Reinhold Ribi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Loris Grimes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sid Walford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ingrid Kruger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Baha Raymond,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Raffi Legrove,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Julita Shemwell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pooh Claveau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Haig Zumhagen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Penni Gehring,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Melodie Parham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Violetta Fallah,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shay Molson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Guillema Halicki,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sacto Kao,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Linh Kishi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Careers Caves,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nicolina Kopke,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kristel Credico,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pankaj Clow,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Radomir Remson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Josefina Parr,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Korie Grooms,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nelson Lytle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Greet Driver,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Phillis Pravato,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Patch Eberlin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Malorie Goos,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Effie Pracht,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elza Gillon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Maddy Falletti,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Candee DiFalco,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Martynne McCloughan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marris Lobello,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rochell Denmark,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ngai Michael,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=JoLee Fredette,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liv Veedell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Verina Coddington,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=March Easton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jianli Kahhale,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shamshad Bozicevich,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Renate Kahkonen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aile Lugsdin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Warwick Gamarnik,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Candee Brubaker,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nashir Tue,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lolita Hanson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Antoinette WPMS,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Margaux Rollo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Idell Pung,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tandy Etoh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Twana Schneider,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lari Killeen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pars Tigg,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marjy Botyrius,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sol Trefts,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Leigh Boulerice,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Harpal Bashton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Valeda Laliberte,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Winnah Kabel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lecien Bunting,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Blancha TempleDowning,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kyla Burton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ronna Faison,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nel Mohrmann,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Naresh Kok,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cang Kinamon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Amalea Snyder,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Caryn Rizk,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Edel AbiAad,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jey Dufresne,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kass Lyliston,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gabie Autoquote,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vina Sebastian,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Annabella Blasing,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nicolette Spann,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Blancha Bradee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tamarah Solheim,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cleo Depew,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gordon Galligan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Terra Brookhart,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hellen Benzick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jenda Serrano,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chrystal Draves,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nicola Dallago,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gisele Zattiero,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nora Hishchak,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Merrili Janelle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Claire Valia,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Farica Horwitz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gregory Bluethner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liviu Hume,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Angelie Heile,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tatiania Delage,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Celisse Murdoch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=NamKiet Phillip,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Merrili Wierzba,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kittie Gabbai,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Timi Hendriks,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Deana Cargnelli,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lizzie Petro,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shyam Johnsen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Valencia Tomlinson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Frederic Scurlock,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Guillema McGorman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jenda Ostarello,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rivkah Neywick,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Coursdev Angeli,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dari Ersil,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marjolein Stephens,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Doro Vempati,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sono Pokrifcak,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Moniek Bergado,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=KwokWa Moriarty,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sluis Nizman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Michel Salkini,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=JoDee Cownie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Germaine Turney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Berenice Yates,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Geoff Catlett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=MarieAndree Bour,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dixie Gionet,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lyndel Amarsi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hulda McDowell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Leil Forrest,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Natassia Mallozzi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zack Meckler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Isidora Ralph,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ailis Reis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Arvin McWilton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Matti Bruce,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Joel Rynders,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Stefanie Malle,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Yokan Basco,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Froukje Gionet,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nenad OToole,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Aileen Haney,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hannis Flindall,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Anderson Bulan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Denny Bourguignon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Reeva Doherty,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Piyush Holness,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Minette Hazeldine,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Haruko Hepburn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Carlo Mong,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Oksana Klein,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dimitri Pineau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Geri Shabo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Saied Vertolli,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Txp Cummings,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Britt Caruth,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kwong Engleman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vikki Tzuang,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sickle StJames,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aundrea Yates,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nam Cuddy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Methi Zoerb,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elysia Zhong,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kacie Herriotts,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hermine Fung,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Manoj Caterina,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Penny Sim,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Grzegorz Feist,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sadan Spears,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Peter Grazzini,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kasifa Bauer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Milena Hendricksen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Allix Tsui,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jenda Cobban,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Concettina Linberg,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Colin Tahir,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gates Hesche,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marjie Karp,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dorella Reeder,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shankar Brehm,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Natalee Broadwell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gay Denette,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Leita Malloy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Novelia Tigg,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Aeriell Cottrell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nickie Sicard,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Con Lampman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tidwell Plssup,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dwight Goatcher,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Germana Easson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rosetta Hatz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chen Karsan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jorie Maltese,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Corilla Filkins,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kassem Chaput,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Karl Rombeek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hiren Leinen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=My Handforth,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ruby Duffy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ranjit Chaurasia,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Xiaofeng Dach,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bob Chaddock,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Beatrice Costas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hynda Miksik,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jacquie Jablonski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ashok Karol,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zeljko Goodrow,ou=Management,dc=bitwarden,dc=com +memberuid: cn=ManFai Yearwood,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Grazia Ruben,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gee Buechner,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kial Skillen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Raul Dantu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liuka Awano,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Caryl Teder,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lex Matheson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jamie Ballard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gaye Telos,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Laz Wilemon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Euphemia Novak,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Wini Haverty,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Halli Mavis,ou=Management,dc=bitwarden,dc=com +memberuid: cn=WingMan Vesterdal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Blithe Keuning,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Katya Tracz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Raymond Biggers,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Theresita Mashura,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joly Dummer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Feng Yeh,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Robin Martenson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kara Tarle,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jerzy Benoit,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Abahri Brauer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Baljinder Kowalsky,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kimberly Chung,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shaibal Andrew,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Oralla ENG,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rubina RTP,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Orie Larribeau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Brear Hagwood,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Radford Gille,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shina Chari,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mariel Yan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bakoury Whitten,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Donovan Bedard,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Almeria Whitman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ardyth Ely,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aleen Meckler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Riane Pantages,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Coral Wickes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dalia Doda,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Suki Currie,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gateway Bain,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Inger Tchir,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Laraine Arellano,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Roana Fulford,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Camellia Sheth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fayina Passier,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Constantia Bielan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sacha Hiller,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Myranda Poff,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Victor McDaniel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=James Predon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Alta Bergwerff,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Keven Abbie,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karia Pintwala,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Philly Scharf,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jazmin Hargrow,ou=Management,dc=bitwarden,dc=com +memberuid: cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Misti Ellington,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nevein Quinones,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Devinne McMasters,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carola Eustace,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Thelma Fazel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Arlene Galasso,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Andrew Shuman,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Alane Planting,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Elle Chaddock,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rachael Benchimol,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Claresta Ramakrishna,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ivory Bolon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Brenton Buker,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Beau Dorion,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lelah Souza,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Helen Marshman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yvon Uae,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Laten Vartanesian,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Susy Kadamani,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Berte Hesk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Joy Willard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Britte Thorman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Amberly Inscoe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Karole Prints,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ludovico Reinink,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maritsa Mashura,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fern McGuigan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gavin Parr,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Anthiathia Nie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vita Larkin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Madan Enstone,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marilyn Wainwright,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Amanda Tigg,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jermaine Shackley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alev Sunatori,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Juliette Finane,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jessamyn Frampton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Norina Piersol,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Subhra Darby,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=AnneLise Krodel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bobbi Azevedo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vikki Tu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Message Armstrong,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maury Este,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Noel Mitrani,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shaib Codata,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tiffy Youngman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Terese VanHulst,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Brigitta Southon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ashlan Nyce,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alasdair Huether,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rakesh Izzotti,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Irish Gaither,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Verlyn Farah,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rana Schartmann,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=XuanLien Harms,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Regine Danforth,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Adda Gutcher,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hpone Croxall,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ailee McCauley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nadya Finucane,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brita Digenova,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jami Franze,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mariele Barnhart,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jacalyn Jawor,ou=Management,dc=bitwarden,dc=com +memberuid: cn=National Gahunia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Retha Spallin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Estrella Benner,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Thomasina Kling,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jaan Lian,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carola Osatuik,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fifine Roussin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mariam Markmeyer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Randall Chalker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Anki Harriett,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Teena Pufpaff,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dalip Horak,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tamarra Grassmann,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Arun Adolfie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lettie Janelle,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Huib Kayle,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vicki Streibel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ingeberg Gomm,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorianna Windom,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tamera Meyer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Corliss Chenard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rheba Castelloe,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marijke Bielby,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Steen Carpool,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marigold Girgis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tdr Gavidia,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Judith Charbonneau,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Katerine Manners,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tasha Netdev,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ken Shiue,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tc Hayman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Corry Johnston,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Farag Rogge,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Scot Santitoro,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Micah Goheen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kasey Primeau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Frankie Nesbitt,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fran Visockis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Prudence Deugau,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elbert Figura,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dorian Kingzett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Camila Wilhoit,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wannell Klapper,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Brynne Hiers,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Barbi Hebbar,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Panch Golka,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Freya Seagraves,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Makary Pulver,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carmela Voitel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nonah Ledet,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marti Mac,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maxi Isaac,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Orlyn Eros,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Amandi Twiss,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Carolyne Delmar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Los Barbeau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fung Godwin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Coreen Underwood,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Inquire Morse,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roby Kalyani,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Leena OKelly,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joli Gavidia,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gint Cioffi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chelsea Arvin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Allix Closson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ortensia Renwick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Megumi Lipski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tulip Jeanes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Meg Kuechler,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Severin Sridaran,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rivalee Markes,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gus Darcie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Farah Fiorile,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jagjit Orr,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Allyce Maduri,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Padma Mannion,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Armin Balogh,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Weiping Schneider,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wakako Schneider,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aubrey Worsley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Didar Chakravarti,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ninetta Pullum,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Suki Marrec,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ian Locicero,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Modestia Prado,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Linette Hoxie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Christi Silverstone,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gertie Stough,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Christy Mazurek,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Fikre Vieiro,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Leila Mullett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Irina Holinski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kari Denmark,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Inge Valenziano,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Denis Khurana,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marice Klug,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Denver Welling,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Windowing Lukic,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sig Mistry,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kathe Rohan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kristie Valente,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maiga Burdick,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Manh Malee,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Benita Rosvick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Serban Gerard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Condell Sorensen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Giang Hildum,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Loise Prasad,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ronnie Hillson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gavra Sokolowski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Candy Husain,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alvin Shwed,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kenna Marui,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aleta Gargul,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mani Khatod,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Trixy Palik,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dimitri Reese,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rosamond McEachern,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Augustin Bayne,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Corkstown Beattie,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Prudence Fickes,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lavina Cirulli,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tiertza Korea,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Javed Collecutt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Adrianna Shypski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Susanne Denison,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lilian Rickborn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Remy Blackwood,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Beret Cemensky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bel Browning,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lula Communications,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ronn Turbyfill,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cindy Deol,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marjory Ranahan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Winona Baccari,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Veda Gaines,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anup Mundi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alyce Felli,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Janet Ludchen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Noubar Novotny,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Starlin Joe,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Devora Pde,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darya McGeown,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dnsproj Walles,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Norma Lepine,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Brandy Verma,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Blanch Virk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Viviana Waucheul,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brittani Menasce,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Khalil Mincey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shedman Jakim,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Reba Chadha,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ailey Randall,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dino Dangubic,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marlies Ortiz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Uri Neufeld,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Loralee McDunn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Caridad Sawada,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Willis Shelley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pauletta Weakley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nanni Taul,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Neetu Jeng,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aimee Poma,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mer Mayes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alisa Rogan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Penni Yim,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Melessa Vuong,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anni Blander,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lesli Hassan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marthena Holleran,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Josi Management,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Elga Conlon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Francesca Boyd,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marit Ahlers,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Donovan Rega,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elli Bourdignon,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Haily Mo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mohammed Minai,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kirit Storrie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jenn Bennison,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Durantaye Molson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Viola Devouges,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Palme Boose,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zarah Doriot,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eirik McCray,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Brennan Saito,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bambie Borel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Devonne Salkini,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bawn Straub,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jojo Peart,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marieke Deibert,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ginelle Couture,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gnni Podolski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Uunko Kodsi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sharline Tullius,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shoeb Scales,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nissa Twarog,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hrinfo Popel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anallese Dressler,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fredra Skillen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shafique Behrens,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ross Saravanos,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Albertine Dorey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Junia Kun,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rey Galvin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kentaro Prada,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Caro Roithmaier,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cassondra Rollin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kiet Kantor,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gilemette Grubbs,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Calida Knudsen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bendite Costelloe,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Desirae Tye,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Yong Papalitskas,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Orsola Shieff,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Meade Lindler,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Canadian Gass,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Liping Woll,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dwaine Oka,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jed Colbourne,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pammi Crucefix,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joelle Vardy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Wenona Angerer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Arjun Passier,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kas Breedlove,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hoog Trinidad,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jesselyn Lindholm,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Claude Sylvie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Matelda Wrigley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Emil Kaden,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wing Miranda,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Goldina Kho,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sidoney Dugas,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Alis Tu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nawa Higgins,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nataly McHale,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sabuson Keels,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Katrina Caltrider,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Damon Bakhach,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nevein Paar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eliezer Mendorf,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Saree Salva,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mary Bayno,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Arnie McMillion,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Salaidh Wery,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hq Bracy,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Philippa Sanson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Karrah Kielstra,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Saloma Brauer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cheuk Mayr,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Verene Misslitz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Doe Codack,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lowell Seufert,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Willa Unkefer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bep Wassel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yuri McCullen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Genevieve Licata,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Stacia Mersch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Opal Tatemichi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nash Hemphill,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Amir McKillop,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nam Nentwich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Arvin Gourley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amara Wichers,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ellen Dada,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gunilla Katz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Core Herrick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jack Predon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marc Pestill,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eadie Jamensky,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Corenda MacLaren,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Duy Starnes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Milan Retallack,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zarella Sauck,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nathalia Testsds,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Florette Nttest,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dari OConnor,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tracie Jenner,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mot Stirling,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yodha Bui,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Clifton Murphyking,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=HonKong Drago,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Greer Popowicz,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Asia Schuette,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Barbette Stotz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joyann Lun,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Caz Brunato,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sorin Dipper,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bucklin OKarina,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tuan Pannell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Neda Reece,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Audrey US,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dona Sudan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mahendra Puett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Evangelia Kusan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mead Bielan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Damara Bertrand,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sarah Kardos,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Odele Mahiger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Salah Poe,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Garry Sterescu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Takehiko Magnan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Loraine Giese,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ilya Mackey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Clari Wahab,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nichol Etten,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Clayton Sridaran,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marijke Ervi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tally Pirkle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Haste Katcher,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Norstar Lipski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hedi Konarski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kwing DeStefani,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Helma Ramsden,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Joanna Aimone,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leon Epplett,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bobby Frink,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rob Milinkovich,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lexie Thorsen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carlene Grignon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Russ Battersby,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Andrew Thifault,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Celinda Krisa,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fawnia Starks,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Prissie Schieber,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lyn Yuhn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Joellyn Montelli,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vanny Fenton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rosabella Mathis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Celestine Demir,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Charlena Mirande,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bennett Marting,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Analiese Steene,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Janine Stirrett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wiele Rowan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Maia Reva,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tian Beeby,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nazib Schembri,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cammy Shumate,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rianon Schick,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Viole Areu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Brigitta Piper,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Melly Kelkar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maritsa McCain,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Melissa Griffioen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tak Sebeh,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vittorio Muradia,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jonell McElligott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jey Pau,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jillane Metz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Parveen Burnage,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Martine Gilliard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shaji Langelier,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Manny Nolan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vrinda Keuning,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aile StOnge,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Helge Bowyer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Norbert Missailidis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Letizia Quon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Haily Lamothe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alie Staats,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Corry Brewer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hanja Godwin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Brianna Hien,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Evy Raing,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rebekah Siegel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Brekel Silverstone,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Harm Mehta,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jae Caudill,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hilde Hibberd,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tres Nyland,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bettye Moynihan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shahriar Trull,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Edyta Hargadon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marris Hameed,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aurelia Raynard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rivi Ludwig,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Isadora Vaters,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Elana Moy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Helaine Salamon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Briney Smithson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Selva Hillidge,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Parks Pavitt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Design Pepler,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shahram Dpierre,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sylvain Dans,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Phuoc Vu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Candide Elhamahmy,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sarine Hopley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Velma Brasset,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Clemmie Brower,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Drudy Badger,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kimmy Nagaraj,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Torrie Lai,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bryon Bannister,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Melford Charter,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Meriel Tota,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darrel Samora,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gabi Fares,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bao Byrd,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wilf Rodenfels,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jeri Gupton,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Didar Brooksbank,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cathe Malone,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Evey Haddad,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ginette Smoot,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dorita Heffner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Reind Mufti,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Carolynn Dikens,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lurleen Eberle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tandy Fssup,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Datas Simmonds,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darline Frankenberger,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Merry Cadtools,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Chabane Hornung,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Colm Yassa,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jillayne Cobb,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ruby Brotherton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marjie Geyer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=McGee Schreiber,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Myrna Befanis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maurine StJames,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ebony DuBerger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Donnette Leighton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Daryl Broca,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cristabel Orth,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Constantia Lundy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shashi Amini,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leola Richard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jai Pascas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Petronille Receiving,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sidonia Badza,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Career Culkin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aubrey Mina,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Wilhelmus Mandel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anya Kantor,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=National MacCarthy,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nissie Heile,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pac Popowycz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Blancha Cousineau,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Harper McWaters,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Adorne Bejar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lenee Marasco,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Reggi Hor,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Andres Williford,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kwan Devault,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lionel Reinlie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gunter Glidewell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nick Brewer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Josefa Kilburn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cindy Oestreich,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pia Turchan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Louisa Ryall,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cherry Tennant,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Paul Rafael,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Glornia Cicchino,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Annalee Terminals,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dave Salehi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Wendy Slattery,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Previn Hirayama,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Evvy Barsony,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hollie Lawton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dacie Doi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hall Twitty,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tien Ferraro,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorine Metrailer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Heidie ElAm,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nyssa Australia,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Melford Ashdown,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rowe McHarg,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rasla ODoherty,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Felicle Ramondt,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jasver Jurman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anderea Albritton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alana Melkild,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Orie Kellogg,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Liva McMasters,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kiah Chandan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vipi Bladon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dan Yost,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ivo Dziawa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vahid Routing,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marianna Wray,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sunning Spence,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cart Pyron,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nashville Venier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Glenn Salem,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Raman Smolin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marin Mokbel,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rici Plasse,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anup Klammer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ninon Starr,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Atul Orth,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tung Lazar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Conchita Raley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Steen Meyer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ingunna Zollman,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Winnie Goss,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dori Myatt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Beb Jammu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Reno Raines,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Delilah Praeuner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Christiane Wanner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sada Polulack,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shauna Caputo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hrdata Placido,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Belvia Raissian,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Odette Swiatkowski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Richelle Thorne,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jacques Bhatia,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Houman Levere,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Doloritas Adams,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Starr Selent,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Doria Sherrill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Maire Follett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ying Schulze,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Samual Franzky,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nert Bombardier,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Catherine Hite,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ilyse Mueller,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Stephenie Brennen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Normand Hussein,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Greta Vilayil,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Siana Letsome,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cosola Steene,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cooney Momon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Julie Dinalic,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Manya Mukherjee,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Evans Letsome,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Silvana Filpus,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=YauFun Poindexter,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Emmy Blissett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Blanche VanKast,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Merry Aderhold,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gwenni Marren,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Allys Akita,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Marris Fanchi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bryna McMann,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Clayton Lychak,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Abe Parton,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Felice Kaehler,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jacenta Sztein,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sonja Hoag,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Manmohan MacAdams,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Cathe Bejar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tape Vandervelde,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Adria Leger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Modesty Quinlan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jawaid Upton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Trevor Vradmin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Helena Pellizzari,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=MunHang Salinas,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Delcina Forbes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Norene Tarver,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Angie Leiba,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ernest Welker,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Fitzgerald Kabel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zaven Bethune,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aridatha Flindall,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kipp Aubuchon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Daile Id,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Shea Lashmit,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Stuart Murdock,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Adrianna Ness,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vanity Penland,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Denzil Willenbring,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Erna Stephen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=MarieAndree Ness,ou=Management,dc=bitwarden,dc=com +memberuid: cn=LouisRene Borozny,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Donetta Grabowski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Henk Crick,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ineke Haig,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Felipa Catlett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kathye Ledou,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pawel Pippin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Godiva Pesik,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Evelina Mapile,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pammy Rogers,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pas Giles,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marietta CamelToueg,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rico Meachum,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Venkat Marrone,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Elwood Gould,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Darrel Hoch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Eunice Gerhart,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Karena Gunasekera,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Charmine Izzo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nicolea Fagan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Huyen Nashville,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Myrtia Closson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ioana Jenner,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leon Bays,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ulf Cotner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jinann Hassey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bevvy Huot,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Coord Cadd,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Envoy Lesway,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maybelle Brannon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lrc Blaiklock,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Abu Melucci,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hedwiga Personna,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Osmond Usyk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ilona Schoch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kieron Bouick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hettie Gruber,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Farzin Hilaire,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jaimie Valin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Meggy Fajardo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lyda Sym,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alia Lucente,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carline Klotz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marilin Boylan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mustapha Noles,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Brandais Cullum,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vradmin Lough,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Laser Lennig,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wren Gopaul,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Whitney Inoue,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karlee Weyand,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fox Richmond,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Patrick Perreault,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Saloma Turbes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tiffy Klammer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sonbol Portz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darko Gawdan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dodie Starr,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Britt Bivens,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hanh Sohns,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Friederike Awano,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Franki Nassr,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sheridan Arcouet,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shoeb McCrimmon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sherline Morreale,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Emilia Tisdale,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Reinhold Shumate,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tatyana Packard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gloriana Vendette,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Consuela Ravi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sioux Langlois,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Olympia Lieure,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cad Thorley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ryoung Moeschet,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jorry Freno,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Amandie Cottengim,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bran MacNeil,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Eladio Strudwick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cleveland Jagla,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Julien Osterberg,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Frederika Brower,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Timmi Bascombe,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Milicent Frondozo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Danell Silang,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Baljinder StJohn,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Joannah Gendre,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zero Strickland,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lujanka Turner,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Trish Meissner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Han Hermes,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Annamaria Daly,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Roger Latella,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Korney Blevins,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Elsey Meckley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jill Langton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Peg Arnott,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lotta Witkowski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=TunLin Dickerson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sile Golczewski,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Joshi Formagie,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Penni Marzullo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maible Blauer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fawne Fanthome,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Brinna Spraggins,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Misbah FWPtools,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shona Keck,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Doe Digenova,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Edel Huliganga,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Miquela Khosla,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Butch Gewell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mindy Wealch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Petri Quintero,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Windowing Feyen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Charlotta Demarest,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Honey Badjari,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nady Kness,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Magdaia Pagi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Peri Morden,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Avie Moores,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Schell Wendling,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Reynold Labiche,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vince Bulger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nedi England,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Field Ueyama,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Mina ODonnell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rubie Suddarth,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fanchette Felli,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dorry Livshits,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Merle Turchan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Achal Blann,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marty Barr,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lilin Tisdall,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Camille Seddigh,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Manon Swinamer,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Marci Uludamar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marcel Mathiue,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Clementina Salkilld,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gertrudis Zahn,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jere Forghani,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gilemette Dellinger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Magdalene Byers,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Parnell Hamlin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nath Popovich,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Patch Lassonde,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nata Corse,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marj Npi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Emery Daoust,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Danya Prasada,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Partha Blackman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Florette Shemwell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Abagael Zattiero,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mardi Lowder,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mercy Steranka,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Catja Josiah,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marlena Rickey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shandee Reno,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Silva Connolly,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Iwan Theriot,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Emerson Terminals,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Felicdad Popela,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Himanshu Zahn,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Luisa Legros,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brenn Thedford,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Albina Kruusement,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Yueping Yamada,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Belvia Abbott,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Seyma Currier,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Derrik Steede,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Starla OFarrell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Revkah Bawek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tian Dundin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Aiden Dido,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pit Yancey,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Aartjan Robson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Winona Latreille,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dis Schmeing,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Krystalle McHale,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jastinder Zollman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Conny Blackburn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lian Tripps,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karlyn Tiseo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Josselyn Sugarman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ashlie Michailov,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cindie McNeill,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Izak Katibian,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nanci Fiteny,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marijke Tiseo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Akshay Herlihy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Thomson Dasch,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Min StMartin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maybelle Karol,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cindy Ferner,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nerti Buskens,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Selvaraj Merrick,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Julien Simmons,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Conchita Meres,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hedi Herling,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Roobbie Bizga,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Izak Hatten,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Parks McInnis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lanae Mullen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Barby Shiue,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rizwan Guindi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anetta Wray,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mougy Mo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Darline Alfred,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kayla Boscio,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Keys Tavares,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Yutaka Branham,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Elinore Spallin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Paige McAleer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Syyed Cantlie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Morley Trefts,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kania Bnrecad,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tammi Zukosky,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Leil Halbedel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marni Diduch,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Myriam Desrochers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Court Karademir,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jayendra Goba,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kathrerine Hackett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Akihiko Restrepo,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Andra Guindi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Manda Bigley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Julienne Mevis,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lesya Willison,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Giri Rupert,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Oguz Livingston,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Celie Wesselow,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Adria Hagar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Panch Timleck,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Caro Finley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Fernand Hunsucker,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maybelle Tognoni,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sunil Boggan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Theressa McQueen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Maala Lessard,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jochem Vuncannon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Magdi Mays,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Suvanee Girard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bin Itah,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Raynell Zaydan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mabel Combee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Melania Michelsen,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hollyanne Java,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Theadora Irani,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eladio Bolio,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hermien Paksi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Merrilee Sipple,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aleece Mielke,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Harinder Sabry,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eamon Brivet,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Analiese Chapman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Meghan Murphy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nikolia Guin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dana Tupling,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eliot Havis,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maryl Codrington,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Constantia Neubauer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Savita Sei,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yehuda Huret,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Livvie Barlow,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sebastian Burger,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Datas Cochran,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chander Copley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Careers Serapin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mei Ballinger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Guillema Sarioglu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Samual Colquhoun,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hubert Cicci,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chung Gooch,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Johnnie Trainer,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Camile Latin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Radio Ong,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Carmina Joly,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alese Zarate,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Babb Dpierre,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dalila Forbes,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pinder Pedley,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Suzi Gribbons,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hulst Sinasac,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Naser deSalis,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maurise Efstration,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ranvir Reetz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alidia COKOL,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shashank Pifko,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eulalie Montcalm,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Calla Voight,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lynette Kay,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carleen Baxter,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hubert Brading,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Christian Norwood,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Den Fogle,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Karol Dummer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Myrna Samora,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden,dc=com +memberuid: cn=KuiSoon Bajada,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Alvina Madison,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Celyne Krater,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pierre Hysler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gordy Fab,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mouna LaRue,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Janot Carella,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Vanny Blauer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dineke Sheth,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Feliza Camblin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zonda Bartush,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Radford Wiklund,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Pamella Sosa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marya Felton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aindrea Cairns,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Katherina Deek,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ardeen Grasman,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Isin VanOorschot,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karrah Laferriere,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sanae Baynes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Zainab Doan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cassy Seagle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wonda McCallum,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Florina Meredith,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nat Sadeghi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hendra Viegas,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bettie Coutellier,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Davis Connolly,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carma Rittenhouse,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sarah Longchamps,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Haroon Neefs,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jenson Soumis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Minni Malynowsky,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Issam Coord,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lynna Salam,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Huong Quinones,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Class Picard,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Craig Kneisel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Fay Franco,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gae Garrett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Martita Sales,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amaleta McClelland,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rico Vandevalk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nanny Kempski,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Antonella Stambouli,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rhett Womack,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kenneth Afkham,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Asmar Dermardiros,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marabel ORourke,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lowry Fahey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Christy Phalpher,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Emr Hacker,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Estelle Robieux,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ashraf Maybee,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bakel Sils,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Linnell Wepf,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Foad Lebeau,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bal Braverman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Buda Virchick,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Alika Kirchner,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kata Hagerty,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lorraine Polk,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tildi Washburn,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Minette Reva,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Farag Wolter,ou=Management,dc=bitwarden,dc=com +memberuid: cn=AnnMarie Valentik,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=HooiLee Ronald,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Gipsy Raman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Akram Nagendra,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Glen Majeed,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marieke Pien,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ingrid Lieure,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Roya Tod,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Christye Meridew,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Patrick Albers,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Doralynn Swyer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Vanni Katsouras,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rogelio McGrath,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Daphine Kutschke,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jin Lyall,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Clerissa Maduri,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Simonne Lukers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jacynth Manto,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ronan Rattray,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Doloritas Ocone,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Etta Smithson,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Stephanie Pickles,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Karla Hearnden,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Xenia Schmitz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sande Withrow,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pammie Guilbert,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sabina Dolson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cyril Tullius,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Agathe Kinney,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nevsa Botting,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melisse Wallis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Benoite Lenior,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marya Lozier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Access Phelps,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ned Hammonds,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ernest Betterley,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kana Licata,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hermione Donahue,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rochette Materkowski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lan Simms,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Troy Bengtson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Natka Moritz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brook Clifton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maggee Colton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rae Willey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Terence Murray,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ransom Grande,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Lindy Clinger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Clyde Hanser,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Charita Rainsforth,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Remo Duchesne,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Radames Verrilli,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alanna Dillard,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chantal Neander,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Leese Nagendra,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Erena Ticzon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Far Fogelson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Anne Kobeski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ursola Hastie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Germaine Wingate,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Olympia Peets,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sati Varughese,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tab Gozen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ioana Newsome,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Damian Lescot,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Raz Roseland,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vivianna Lackie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hadi Freeley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carol Sarson,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ailene Mackin,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bret Winicki,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Hatty Latchford,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Trey Baenziger,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ioan Elsing,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Joy Ferrara,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Rowe Clinton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dolores McCafferty,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Luciana Lepore,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jimmie Korest,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Martelle Reno,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hock Chilausky,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Teddie Bulan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lavonda Rowsell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lorinda Nolet,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ike Outage,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Erin Dolson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anderson Sitar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ranga Cawley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kylie Parnell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Millisent Ladymon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tilda Turcot,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Yuji McCabe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Pen Yost,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Traci Ahdieh,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fay Deugau,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Inna MokFung,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tehchi McEwan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tats Graves,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nakina Steranka,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gilda Reid,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Arnis Truchon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Paige Wanzeck,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dutch HSI,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Adda Danai,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Netty Muttaqi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Karly Breglec,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gurdip Thornber,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dulcea Bassett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Caprice Selent,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hemant Remillard,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tilak Odgers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kaela Wooff,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Grey Krakowetz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Canute Ladymon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Alex Lumley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gunars Runkel,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Careers McAdorey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ardelia Bunner,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fekri Hunike,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Adey Shippen,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Malina Lederman,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Perry Maryak,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vance Ruppert,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Peg Toscano,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Monah Tsonos,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Meade Latulippe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Karan Piper,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Chander Paulus,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Parham Cisco,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Charmain Chahal,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Janelle Tucker,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Angie Tesch,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Traci Wolter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Azmina Bergeson,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dolly Dane,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Narendra Matsuzawa,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Souza Austin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Chrissy Marren,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tandie Virgoe,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Calley Naujoks,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Regan Neilsen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Katja Waterman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sol Royals,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=KahMing Dubreck,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melitta Hunter,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Trang Tucker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Garth Alfaro,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Rickie Genge,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mariette Piggott,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Darla Schierbaum,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Technical Ely,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Merrill Loa,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jojo Liew,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Noemi Gulko,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Aurel Mullins,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Raine Hauck,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Munaz Mand,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Zoe Leinen,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bihari Simkin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wannell Rivard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Adey Daquano,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Emeline Drewes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Rayshell Dow,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sohayla Claggett,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Debora Lauzon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aggi Culver,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Delcine Pesold,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Pauline Bullion,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tibor Belley,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vere Cushing,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dorris Joshi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Victor Hollenbach,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Joyan Irvin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Zoenka Ivan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Wylo Rummans,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tyler McKibbin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Dorolice Puelma,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anwar Mauck,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gillian Weihs,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Freddy Boase,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Manny Degraauw,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Zahir Meagher,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chiho Kowalski,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jan Gittins,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nalani Madsen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Casie Banerd,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Beryle Camillucci,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lubomyr Duran,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gertruda Boyajian,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dyanna Roehl,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kikelia Kember,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Yalcin Tanferna,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Justina Copello,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bam Luin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Frieda Dulaney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Les Allahdin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melek Fennessey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Quon Zukosky,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Andrea ONeall,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Setsuko Keck,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ruchel Borosh,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Chloette Zadow,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sarena Fothergill,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jaquith Canfield,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darell Carrillo,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Malgosia Beilin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bekki Kensinger,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Benny Stahl,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sonja Blake,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Corny Cowick,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sibelle McAlister,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Souza Deininger,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Beata Surray,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Betsy Bergman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cheryl Deibert,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Darrel Bottoms,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Cissiee Gostanian,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Portia Beecker,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alli AbouEzze,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kirk Cuddihey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=ChoonLin Marneris,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Davida Milakovic,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Janela Bennison,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Zorine Records,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ashleigh Ligon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nelly Kerns,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Chicky Domine,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Woon Morrin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tedra Shwed,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Wallis Whitfill,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Torey Tropea,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Israel Ginest,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Yoko Honda,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Farzin Herlihy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Benny Ratnam,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Reeba Pape,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ashu Kohn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liese McCombs,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Blinny Zanet,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sanjay Themann,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vijay Shorgan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Duncan Kiang,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Liliane Chima,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Khai Diradmin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Burton Deans,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Elly Kubash,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tallou Gothard,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Perry Schmitz,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Avinash Finn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Marabel Hippert,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Klazina Desharnais,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ursala Vezeau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Muffin Atteridge,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Vanya Marcoux,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mercy Nakano,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Arlina Weaver,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Seven Okon,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Liliane Gurer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=HonKong Salem,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Glynnis Daniells,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Miran McKeone,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dion Polulack,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Hartley Busch,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gusella Popper,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Wits Stutts,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Afzal Rusch,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Karon McBrayne,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Judy Homa,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tarik Tester,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carole Suykens,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Saman Koverzin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kaushik Reid,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eastreg Buchan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kevyn Yu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Violante Chaurasia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Franklin Landry,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Rejean Hartsell,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Crista Reece,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Apryle Briard,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joni Netas,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nicola Hensen,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Bruce Galasso,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Margeaux Chunn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Long Esry,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lynette Brearley,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Birdie Cawley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Deana MacNeill,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Afton Tanner,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=JooEuin Peters,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jordan Normandin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brynna Swanston,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Saumitra Svo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Modestia Hersee,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gretna Ergle,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gary Denmark,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fei Isert,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Armand Bebber,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Virgina Kahnert,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Antoni Vickers,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dan Telos,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Rory Chan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gertrude Senyshyn,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Missagh Yeh,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Morganica Ashdown,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joey Moore,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rheta Knobloch,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Far Shupe,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Noni Pauley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Hera Eike,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Melisa Peacemaker,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wylo Woodley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Collette Quevillon,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Renelle Ducic,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ailis Gabe,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Selena Sanoy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Electra Hassold,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Terry Johnston,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Franny Towill,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Duquette Pratt,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Alb Hussein,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sam Ference,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Yukinobu Riebl,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tarus Hillard,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ramonda Lott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Anitra Arora,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sonja Tohama,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rycca Bloemker,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Joydeep Elledge,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Silvie Nevardauskis,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ilene Curnow,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ailee Sudbey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maarten Mejia,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=PierreAndre Abbate,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kizzie Adey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Krystn Skerlak,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kailey Southon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=PohSoon Corpening,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cissy Systest,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ailee Garry,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Juliet Goyal,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gleda Carldata,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Elane Latour,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Matt Sharman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Violante Moomey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Valery Howell,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lorri Fontanini,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ivette Frantz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cyndie Mohideen,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ardine Grimm,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Raine Capps,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Skyler Khurana,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kris Warfel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ruby Stansbury,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=John Seery,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Callida Boarder,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Rona Cosgrove,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tasia Anchia,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Wallis Barentsen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Fan Cranston,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Helen Hyde,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Raeann OKarina,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Olga Magee,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sibel Munter,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Carmella Pillars,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tabbi Bladon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Umesh Areu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Orel Delahay,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Corrie Cipolla,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Longdist Goliss,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Belissa Northcott,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Eula Gouldson,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Beatrix Rea,ou=Management,dc=bitwarden,dc=com +memberuid: cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Larysa Fleming,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Andras Dziemian,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Afke Coallier,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lachu Fricks,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Pammy Slautterback,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Maribelle Balderston,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Vahe Birks,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tobe PKDCD,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Melynda Phillips,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Arina Collazo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Cesare Karolefski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Partick Bassil,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Siamak Wagle,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Reine Hamlett,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Albert Tebinka,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Wally Pedneault,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shahriar Farnham,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Concordia Thorman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Sarath Lathrop,ou=Management,dc=bitwarden,dc=com +memberuid: cn=HanVan Cuthill,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Demetri Acree,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gord St,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Robyn Porter,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Kristine Ratnam,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Trude Leander,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Jacinta Burkepile,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sissela Mathewson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kaela Gleason,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mandi Popovich,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bhal Mymryk,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wenxi Sethian,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mabel Kwa,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Neysa Uguccioni,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Toby Ayoup,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Drusilla Allman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=SangMaun Rabzel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bettine Bresnan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Blithe Searl,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Haig Talton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ryman Smerdell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Admin Cassar,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Esmail Santos,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Walter Coley,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jeanne Boult,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Avie Scourneau,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bettie Cescon,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maureene Weiser,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Melisent Annibale,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bonnie Corse,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Querida Gertridge,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Lily Stites,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Woon Klimon,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Carlota Oros,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gil Spurway,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Licha Weinbender,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Mirabella Awano,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lura Centis,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Aveline Berhane,ou=Management,dc=bitwarden,dc=com +memberuid: cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Billy Costantino,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dorrie Fortner,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carleen Toly,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Vijay Nassr,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sandro Gorius,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=He Crowder,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Atta Kutch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Devon Kaudel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Deidre Cirulli,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kala Bourget,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Charo Hembrick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Janene Torrell,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Eben Shayanpour,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Yves Dhir,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Aile Frink,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Damara Jaswal,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Ethelin Girotti,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pramod Foessl,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Octavia Handschy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kerstin Nandi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Elwood Bouick,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clarence Dpu,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shama Norton,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Vo Sauer,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gilberte Ferland,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Valeria Harmon,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dorthy Youngman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gilles Litherland,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Erick Wicht,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Kassie Nava,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Opaline Ober,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Madan Baab,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Htd Hersee,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dorita Anker,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Christopher Cohea,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Robbie Bunting,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Masood Shipe,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Bernardina Sreedhar,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Atl Corbin,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alice Knighton,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Fern Okafo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Brietta Dupras,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Wanda Becker,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gerben Kozlowski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Maynard Burness,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sylva Milloy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=CheeYin Westphal,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Bawn McNeal,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Raine Fogle,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eyde Sitch,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Windowing Walkins,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Alisun Hampel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Quinta Pimpare,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jemimah Whitney,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Marta McNerlan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Miranda Sobel,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Minda Andric,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Roselle Baber,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Four Keene,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Souza Salyer,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Petri Beehler,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Annadiane Hyrne,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Freida Nock,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Adrianne Hollenbach,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Leon Hulme,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Izabel Schnell,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jammie Parisien,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cori Oreilly,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Enzo Rodgers,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pic Basinger,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Paqs Atalla,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Norina McClymont,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sadella Psklib,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Bqb Mulvie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jenica Brophy,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Steen Dubuc,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shea Blesi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kusum Tilden,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Famke Chuah,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=HoaVan Drummer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Metrics McCoy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Nicolas Lally,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Candie Siefert,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Ulf Novak,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Paulette Unkefer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Gwendolin Kean,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marthe Harvey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Francene AuYeung,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Juliana Omura,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Emelina Elliot,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Waverly Monforton,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gladys Bilanski,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Analise Shea,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Cart Boutin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Kunie Hoorman,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Odelinda Keilty,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Stella Sist,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Dayle Schenkel,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Arlyn McBroom,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Brear Jensen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Ann Bulengo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Esma Jak,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Larkin Nance,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mirelle Novak,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Dorothy Laurich,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Shyam Wernik,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Niek Rahmany,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jung Kimler,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lolita Mufti,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Coord Kalleward,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Garnet Shames,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fara Shireman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shahid Neil,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Starlene Falardeau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Marce Plaisance,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lena Mathias,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gaby Booking,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Michaela Trimble,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lucie Kilner,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Danyelle Rider,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Mariska Tien,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Belvia Lamoureux,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jian Marneris,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Dagmar Moseby,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Casie Ress,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hrinfo Okura,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Korney Fadlallah,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jiri Leftwich,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tildie Abbott,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Kalindi Keehan,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Collette Patchett,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cristiane Ruth,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sedat Gurley,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Sharai Coxall,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Franny Walton,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Aryn Klimas,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dorise Yue,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mellisa Gustlin,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Butch Roper,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Mendel Rolls,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Cecelia Dowse,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Anette Lassig,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Gio Londhe,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tadayuki Mak,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ri Trisic,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ileana Doyle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nico Badelt,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Ragu Lieure,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Claudia Berhane,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Silvana Tunali,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Anand Henshaw,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Imtaz Ledamun,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Meryl Diaz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Saraann Anastasio,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Declan Creane,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Terrell Mathieson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Olympia DMS,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Mounir Pullum,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Constantina Faou,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Santiago Georges,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Marinette Ficker,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Janet Pankiw,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Else Hazenboom,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Saibal Traynor,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Khue Mein,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=PeyKee Fetterman,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Claire Reinlie,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Shawna Lahlum,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Darelle Childress,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kessiah Alford,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Theressa Olivier,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pauly Jago,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Collete Krabicka,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kim Highsmith,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elladine Schwab,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=XiaoMing Dorr,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Clement Durant,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rejeanne Shelegey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nicky McDowall,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Thomasa Fulk,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Florri Tregenza,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Hester Colbourne,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anitra Hugel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kanu Cuervo,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Faruk Hanzel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Trent Carli,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maurene Paliga,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Minette Manner,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elio Lough,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Abigael Noddin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Winna Bono,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Karalynn Paylor,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Caterina Pittam,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Michaela Cuffle,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sibylle Martins,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jade Noguchi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Guenna Lazure,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Beatrisa Staring,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Bernadine Schrang,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alese Rigdon,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=MaryJo Harms,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Dorris Akita,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Thanh Dewitt,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Davita Stenson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Pak Krone,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Idalina Vogt,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yuan Wester,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Riaz Gulis,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Odetta Masse,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Stacia Presgrove,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Norbert Salazar,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nevein Grimshaw,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Annaliese Hudak,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Andromache Machika,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Meriann Larose,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Agathe Kikuchi,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Somsak Fields,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zitella Hussein,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Varennes ParkerShane,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Idelle Leicht,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Darb Swinkels,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Koren Perfetti,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kelcey Reuss,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Lujanka Contardo,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Barton Seggie,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Julee Norby,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sharai Torok,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Cefee Donelan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jderek Sankey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sid Barnhill,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Kamlesh Hoang,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sarath McCall,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Nermana Douglas,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Student Sonne,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Maisie DaGama,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Erminie Battershill,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Jung Betts,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Maddi Naolu,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Ammar Parise,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Agata Khouderchan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Joella Casey,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sharone Torrell,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ebony Vitaglian,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Evanne Callos,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Purvee Kwast,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Eluned Vinson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Melisandra McVey,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Philipa Netdbs,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Art Totten,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Roxanna Colquette,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Janessa Bienek,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Christa Schrage,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Glenna Trefry,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Cecco Langevin,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Magdy McCloskey,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Filion Karam,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nerissa Volz,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Barb Crockett,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Klara deSalis,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Teri Hildum,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Lorenza Pafilis,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anda Joyce,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Rustu Biss,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Geer Devault,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Bea Nemec,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Veneice Tobias,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Dorolice Communication,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Danica Middleton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Bradley Stokker,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Kessia Reiser,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lope Keim,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Tonya Hine,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Lisa Lande,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lapkin Matney,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lenee Topp,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Sacto Miskelly,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Sib Schissel,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Tessa Severin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Drucill Brickey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Caterina StMartin,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rojer Jurek,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Shannah Colpitts,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Holst Lowder,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hernan Cano,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Opto Broten,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Jill Domine,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Calypso Bolding,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nicolina Scp,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Walter Cuddy,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ruby Mattson,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Ranna Bedford,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Amalle Rodi,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Eolande Tarver,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Tilda Kirady,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Shailin Harris,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Axel Panter,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Karel McKerrow,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Arabelle Jepson,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Donna Imhof,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Lucila Caruth,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Serban Kamal,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Suzann Minter,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Roselia Valvasori,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nancey ODonovan,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Deva Deugau,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Almire Rokas,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Aideen Sterian,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Norma Gording,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Caye LeTarte,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Odile Blaufus,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Gerti Macchiusi,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Carmelita Fucito,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Xenia Ertan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Foster Swinson,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Fwpreg Liem,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Yevette Egan,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Clarice Seymour,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Miles Khorami,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Joon Panton,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Olympe Calmejane,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Felicdad Thornber,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pradeep Recktenwald,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Vanya Sherrill,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Kittie Bangia,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Freek Xayaraj,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Emelina Dotsey,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Jacob Scss,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Nicholas Palasek,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Business Worsley,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Dita Billard,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Coleman Holman,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Elberta Shnider,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Mirabel Queries,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Arts Marttinen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Velma Goldberg,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Anet Sanity,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Pars Events,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Wilow Veloz,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Grayce Dunnion,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Starlin Schrader,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Desire Nagle,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Shaylah Haertel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Tomi LaFargue,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Willard Kammerer,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Tyronda Wippel,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Carmina Fulmer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Sukey Sato,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Lawrence Perrella,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Nathan Trumble,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Noslab Gribbons,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Alayne Jurman,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Ashlee Lamey,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Miquela Gilles,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Arlana Ghani,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Avinash Rospars,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Raman Reporting,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Vince Dallal,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Leanne Gorfine,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Corinna Bashyam,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Etta Medlin,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Stew Chopowick,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Josie Clysdale,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Moyna Rolph,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Roze Wiebe,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Khai Habelrih,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=How Zisu,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Morena Zeggil,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden,dc=com +memberuid: cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Mathew Jarvie,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Joelle Eason,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Angil Dungan,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Geraldine Landaveri,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Madeline Congdon,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Rod Bedford,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden,dc=com +memberuid: cn=Eula Steip,ou=Janitorial,dc=bitwarden,dc=com +memberuid: cn=Lennart Murphin,ou=Human Resources,dc=bitwarden,dc=com +memberuid: cn=Emmye Reeves,ou=Peons,dc=bitwarden,dc=com +memberuid: cn=Madel Fiorile,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Hiroki Edwards,ou=Product Development,dc=bitwarden,dc=com +memberuid: cn=Douglass Rivest,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Tammi Kramer,ou=Management,dc=bitwarden,dc=com +memberuid: cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden,dc=com +memberuid: cn=Brunhilda Bezdel,ou=Management,dc=bitwarden,dc=com +objectclass: posixGroup +objectclass: top + +dn: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edlene Morocz +sn: Morocz +description: This is Edlene Morocz's description +facsimileTelephoneNumber: +1 213 196-5347 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 817-2787 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: MoroczE +givenName: Edlene +mail: MoroczE@a11f000faf34447ab870e32427af41fb.bitwarden.com +carLicense: X1N60W +departmentNumber: 9457 +employeeType: Normal +homePhone: +1 213 454-8447 +initials: E. M. +mobile: +1 213 542-4751 +pager: +1 213 118-8171 +roomNumber: 9259 + +dn: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mimi Mufti +sn: Mufti +description: This is Mimi Mufti's description +facsimileTelephoneNumber: +1 804 903-6336 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 804 913-9640 +title: Associate Peons Punk +userPassword: Password1 +uid: MuftiM +givenName: Mimi +mail: MuftiM@5ce1ae303e1b4216bb8884b6b93d1c56.bitwarden.com +carLicense: MOWG46 +departmentNumber: 7294 +employeeType: Employee +homePhone: +1 804 613-2718 +initials: M. M. +mobile: +1 804 189-7395 +pager: +1 804 551-4350 +roomNumber: 9719 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelon PueGilchrist +sn: PueGilchrist +description: This is Madelon PueGilchrist's description +facsimileTelephoneNumber: +1 510 970-3519 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 487-7016 +title: Junior Human Resources Fellow +userPassword: Password1 +uid: PueGilcM +givenName: Madelon +mail: PueGilcM@465384ee6f90454f9bd37364e1619114.bitwarden.com +carLicense: YBPWV5 +departmentNumber: 9545 +employeeType: Employee +homePhone: +1 510 260-9480 +initials: M. P. +mobile: +1 510 863-2301 +pager: +1 510 963-2278 +roomNumber: 8639 +secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elianore Snapper +sn: Snapper +description: This is Elianore Snapper's description +facsimileTelephoneNumber: +1 510 220-1300 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 575-8366 +title: Chief Payroll Pinhead +userPassword: Password1 +uid: SnapperE +givenName: Elianore +mail: SnapperE@3ffb284a6509471fa1b109716579396c.bitwarden.com +carLicense: VPIOW8 +departmentNumber: 5917 +employeeType: Normal +homePhone: +1 510 270-9446 +initials: E. S. +mobile: +1 510 269-7389 +pager: +1 510 274-1124 +roomNumber: 9430 +secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lujanka Dickford +sn: Dickford +description: This is Lujanka Dickford's description +facsimileTelephoneNumber: +1 415 731-3707 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 222-6674 +title: Junior Product Development Madonna +userPassword: Password1 +uid: DickforL +givenName: Lujanka +mail: DickforL@bf3c648ed6d6430384d28d39f0e9c516.bitwarden.com +carLicense: SUOR33 +departmentNumber: 1279 +employeeType: Employee +homePhone: +1 415 131-1801 +initials: L. D. +mobile: +1 415 816-7816 +pager: +1 415 996-8570 +roomNumber: 9132 +secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nedi Siegel +sn: Siegel +description: This is Nedi Siegel's description +facsimileTelephoneNumber: +1 206 709-2980 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 506-9180 +title: Master Product Development Visionary +userPassword: Password1 +uid: SiegelN +givenName: Nedi +mail: SiegelN@e88c29e7defd4cc4a4f9f6a6238e817f.bitwarden.com +carLicense: 9EAHWJ +departmentNumber: 8079 +employeeType: Employee +homePhone: +1 206 336-3044 +initials: N. S. +mobile: +1 206 165-6000 +pager: +1 206 266-8020 +roomNumber: 8562 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thelma Stampfl +sn: Stampfl +description: This is Thelma Stampfl's description +facsimileTelephoneNumber: +1 408 372-9960 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 232-6141 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: StampflT +givenName: Thelma +mail: StampflT@3bd17db97361499690e9a4a1c0655d19.bitwarden.com +carLicense: JAFKQG +departmentNumber: 4831 +employeeType: Contract +homePhone: +1 408 300-5402 +initials: T. S. +mobile: +1 408 977-5303 +pager: +1 408 555-2023 +roomNumber: 9826 +secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Simulation Beswick +sn: Beswick +description: This is Simulation Beswick's description +facsimileTelephoneNumber: +1 510 166-6046 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 246-1321 +title: Supreme Management Grunt +userPassword: Password1 +uid: BeswickS +givenName: Simulation +mail: BeswickS@e4326b57161d41be8c559868d23f22e4.bitwarden.com +carLicense: WE4Y8J +departmentNumber: 4825 +employeeType: Contract +homePhone: +1 510 399-9500 +initials: S. B. +mobile: +1 510 907-6401 +pager: +1 510 412-9093 +roomNumber: 8235 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherrie Bellehumeur +sn: Bellehumeur +description: This is Sherrie Bellehumeur's description +facsimileTelephoneNumber: +1 408 274-7999 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 770-1558 +title: Master Management Developer +userPassword: Password1 +uid: BellehuS +givenName: Sherrie +mail: BellehuS@5d35d83c207d418fad061afb7ba230bf.bitwarden.com +carLicense: 3TS4JN +departmentNumber: 6887 +employeeType: Contract +homePhone: +1 408 982-8635 +initials: S. B. +mobile: +1 408 456-9508 +pager: +1 408 859-6900 +roomNumber: 8954 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ola Paulhus +sn: Paulhus +description: This is Ola Paulhus's description +facsimileTelephoneNumber: +1 213 790-2698 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 440-3345 +title: Master Management President +userPassword: Password1 +uid: PaulhusO +givenName: Ola +mail: PaulhusO@f2e251b2cd334a149a91e0fa8b8a2220.bitwarden.com +carLicense: K6NH8O +departmentNumber: 2268 +employeeType: Contract +homePhone: +1 213 475-3911 +initials: O. P. +mobile: +1 213 784-4258 +pager: +1 213 821-4722 +roomNumber: 8555 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yen Sharkey +sn: Sharkey +description: This is Yen Sharkey's description +facsimileTelephoneNumber: +1 415 319-8087 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 585-5239 +title: Supreme Peons President +userPassword: Password1 +uid: SharkeyY +givenName: Yen +mail: SharkeyY@f23640bc04e54c3b84040581a3dccada.bitwarden.com +carLicense: BNI3E0 +departmentNumber: 2641 +employeeType: Contract +homePhone: +1 415 230-5745 +initials: Y. S. +mobile: +1 415 754-9353 +pager: +1 415 289-1573 +roomNumber: 9570 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corkstown Sheppard +sn: Sheppard +description: This is Corkstown Sheppard's description +facsimileTelephoneNumber: +1 206 285-5462 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 245-9952 +title: Master Administrative Consultant +userPassword: Password1 +uid: ShepparC +givenName: Corkstown +mail: ShepparC@327fab76e13f495691accc9986f353a5.bitwarden.com +carLicense: 2PSMN3 +departmentNumber: 2440 +employeeType: Employee +homePhone: +1 206 242-1931 +initials: C. S. +mobile: +1 206 560-9143 +pager: +1 206 810-6643 +roomNumber: 9152 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aila Koster +sn: Koster +description: This is Aila Koster's description +facsimileTelephoneNumber: +1 206 782-6101 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 266-3950 +title: Chief Peons Mascot +userPassword: Password1 +uid: KosterA +givenName: Aila +mail: KosterA@17b298c689464c4385fe9cac8f40eea6.bitwarden.com +carLicense: ELSFI9 +departmentNumber: 1623 +employeeType: Normal +homePhone: +1 206 685-1218 +initials: A. K. +mobile: +1 206 164-3685 +pager: +1 206 262-2607 +roomNumber: 8399 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dacia Colterman +sn: Colterman +description: This is Dacia Colterman's description +facsimileTelephoneNumber: +1 804 184-2015 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 812-1718 +title: Chief Human Resources Pinhead +userPassword: Password1 +uid: ColtermD +givenName: Dacia +mail: ColtermD@752a496e92da43f3852dc6fc94c2530e.bitwarden.com +carLicense: S4G474 +departmentNumber: 9843 +employeeType: Normal +homePhone: +1 804 277-8342 +initials: D. C. +mobile: +1 804 921-3703 +pager: +1 804 360-7921 +roomNumber: 9092 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helma Bento +sn: Bento +description: This is Helma Bento's description +facsimileTelephoneNumber: +1 415 907-5104 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 462-2425 +title: Chief Product Development Mascot +userPassword: Password1 +uid: BentoH +givenName: Helma +mail: BentoH@be4e574e5026401884f8759627863563.bitwarden.com +carLicense: 0A82WT +departmentNumber: 4055 +employeeType: Contract +homePhone: +1 415 794-5027 +initials: H. B. +mobile: +1 415 829-7674 +pager: +1 415 240-4510 +roomNumber: 9074 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Holst Issa +sn: Issa +description: This is Holst Issa's description +facsimileTelephoneNumber: +1 415 556-6013 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 797-1114 +title: Master Human Resources Dictator +userPassword: Password1 +uid: IssaH +givenName: Holst +mail: IssaH@780f09ce8c394dd7859dd4f97439f35d.bitwarden.com +carLicense: 9IM36P +departmentNumber: 1940 +employeeType: Contract +homePhone: +1 415 159-6372 +initials: H. I. +mobile: +1 415 782-8782 +pager: +1 415 618-7794 +roomNumber: 8026 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolina Eu +sn: Eu +description: This is Nicolina Eu's description +facsimileTelephoneNumber: +1 818 949-8304 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 358-1448 +title: Chief Management Director +userPassword: Password1 +uid: EuN +givenName: Nicolina +mail: EuN@62b33fdd2568434bbbd48333e7f20ed7.bitwarden.com +carLicense: JAY4W8 +departmentNumber: 2978 +employeeType: Employee +homePhone: +1 818 533-3850 +initials: N. E. +mobile: +1 818 188-6650 +pager: +1 818 849-1319 +roomNumber: 8563 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nobuko Nyland +sn: Nyland +description: This is Nobuko Nyland's description +facsimileTelephoneNumber: +1 804 888-2241 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 980-1045 +title: Associate Payroll Fellow +userPassword: Password1 +uid: NylandN +givenName: Nobuko +mail: NylandN@d4b6d833d5a74158a2213fcbac0525a9.bitwarden.com +carLicense: 3BE52I +departmentNumber: 4578 +employeeType: Employee +homePhone: +1 804 385-9529 +initials: N. N. +mobile: +1 804 663-2393 +pager: +1 804 505-2190 +roomNumber: 8674 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erlene Hargrow +sn: Hargrow +description: This is Erlene Hargrow's description +facsimileTelephoneNumber: +1 213 214-1535 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 213 909-8556 +title: Supreme Payroll Dictator +userPassword: Password1 +uid: HargrowE +givenName: Erlene +mail: HargrowE@a48701aa8d324e65a88e2c654b93d791.bitwarden.com +carLicense: UMYHG8 +departmentNumber: 5092 +employeeType: Employee +homePhone: +1 213 812-2616 +initials: E. H. +mobile: +1 213 201-5480 +pager: +1 213 579-5927 +roomNumber: 9601 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aila Mawani +sn: Mawani +description: This is Aila Mawani's description +facsimileTelephoneNumber: +1 804 858-3865 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 237-5893 +title: Master Product Testing Consultant +userPassword: Password1 +uid: MawaniA +givenName: Aila +mail: MawaniA@67e3aaef7f7f4f1cbd8f4f936f598c13.bitwarden.com +carLicense: PSW05L +departmentNumber: 9243 +employeeType: Contract +homePhone: +1 804 150-9990 +initials: A. M. +mobile: +1 804 983-5569 +pager: +1 804 707-4672 +roomNumber: 9817 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eula Neault +sn: Neault +description: This is Eula Neault's description +facsimileTelephoneNumber: +1 415 817-2165 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 790-3852 +title: Junior Payroll Engineer +userPassword: Password1 +uid: NeaultE +givenName: Eula +mail: NeaultE@5f64c8c895024a00af4d42855babab9f.bitwarden.com +carLicense: M2XS7I +departmentNumber: 1514 +employeeType: Employee +homePhone: +1 415 745-1170 +initials: E. N. +mobile: +1 415 447-3096 +pager: +1 415 435-1278 +roomNumber: 9333 +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grata Tomacic +sn: Tomacic +description: This is Grata Tomacic's description +facsimileTelephoneNumber: +1 213 518-4396 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 213 596-9588 +title: Master Administrative Mascot +userPassword: Password1 +uid: TomacicG +givenName: Grata +mail: TomacicG@79f438ac5a2045c28f6ad4893a72e3bf.bitwarden.com +carLicense: AET358 +departmentNumber: 9139 +employeeType: Normal +homePhone: +1 213 123-1709 +initials: G. T. +mobile: +1 213 837-4407 +pager: +1 213 110-2239 +roomNumber: 8508 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebekah Gallinger +sn: Gallinger +description: This is Rebekah Gallinger's description +facsimileTelephoneNumber: +1 510 586-4114 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 192-8489 +title: Chief Payroll Engineer +userPassword: Password1 +uid: GallingR +givenName: Rebekah +mail: GallingR@520ff39da95249c7ade86c3a64b17f3f.bitwarden.com +carLicense: MP8647 +departmentNumber: 3627 +employeeType: Contract +homePhone: +1 510 601-8858 +initials: R. G. +mobile: +1 510 755-7634 +pager: +1 510 116-1560 +roomNumber: 8429 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurizia Skillen +sn: Skillen +description: This is Maurizia Skillen's description +facsimileTelephoneNumber: +1 206 853-2890 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 380-6177 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: SkillenM +givenName: Maurizia +mail: SkillenM@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com +carLicense: O0F949 +departmentNumber: 9722 +employeeType: Employee +homePhone: +1 206 435-2526 +initials: M. S. +mobile: +1 206 455-8226 +pager: +1 206 501-8426 +roomNumber: 9342 +secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Larissa Gillette +sn: Gillette +description: This is Larissa Gillette's description +facsimileTelephoneNumber: +1 510 690-9348 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 713-3384 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: GillettL +givenName: Larissa +mail: GillettL@8de5f1673aad4b42ac90ff25da206774.bitwarden.com +carLicense: CTNTS3 +departmentNumber: 3064 +employeeType: Employee +homePhone: +1 510 622-9380 +initials: L. G. +mobile: +1 510 707-1772 +pager: +1 510 974-7268 +roomNumber: 8081 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gusella Vilhan +sn: Vilhan +description: This is Gusella Vilhan's description +facsimileTelephoneNumber: +1 804 474-8855 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 976-7327 +title: Supreme Human Resources President +userPassword: Password1 +uid: VilhanG +givenName: Gusella +mail: VilhanG@8779bd2690ca4e74bc6ad755c1a9e7dd.bitwarden.com +carLicense: R7RCJE +departmentNumber: 6921 +employeeType: Normal +homePhone: +1 804 921-2730 +initials: G. V. +mobile: +1 804 728-1627 +pager: +1 804 262-3886 +roomNumber: 8363 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Panch Sziladi +sn: Sziladi +description: This is Panch Sziladi's description +facsimileTelephoneNumber: +1 213 982-8664 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 426-7965 +title: Supreme Peons Sales Rep +userPassword: Password1 +uid: SziladiP +givenName: Panch +mail: SziladiP@5ebaa8af105c497682481efce65265ab.bitwarden.com +carLicense: IETEI9 +departmentNumber: 6220 +employeeType: Contract +homePhone: +1 213 192-2152 +initials: P. S. +mobile: +1 213 566-6617 +pager: +1 213 444-7748 +roomNumber: 8211 +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morley Chadha +sn: Chadha +description: This is Morley Chadha's description +facsimileTelephoneNumber: +1 213 476-3783 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 165-9907 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: ChadhaM +givenName: Morley +mail: ChadhaM@7e56f35864a04d13abbef377d8dec333.bitwarden.com +carLicense: J2BOOX +departmentNumber: 5822 +employeeType: Employee +homePhone: +1 213 158-9268 +initials: M. C. +mobile: +1 213 475-9361 +pager: +1 213 327-6993 +roomNumber: 9858 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kem Bizga +sn: Bizga +description: This is Kem Bizga's description +facsimileTelephoneNumber: +1 206 134-2002 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 257-6532 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: BizgaK +givenName: Kem +mail: BizgaK@e82a7163f0b1403c8ef83f8850e77a61.bitwarden.com +carLicense: 6PR33Q +departmentNumber: 1295 +employeeType: Normal +homePhone: +1 206 674-4273 +initials: K. B. +mobile: +1 206 130-9129 +pager: +1 206 406-1370 +roomNumber: 8231 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmel Vawter +sn: Vawter +description: This is Carmel Vawter's description +facsimileTelephoneNumber: +1 206 817-4342 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 181-3356 +title: Chief Payroll Vice President +userPassword: Password1 +uid: VawterC +givenName: Carmel +mail: VawterC@058f9e396c334403aa5edc7cb4dcabbc.bitwarden.com +carLicense: M0TDCM +departmentNumber: 6780 +employeeType: Employee +homePhone: +1 206 678-6578 +initials: C. V. +mobile: +1 206 212-2485 +pager: +1 206 822-3494 +roomNumber: 9914 +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corly Tesch +sn: Tesch +description: This is Corly Tesch's description +facsimileTelephoneNumber: +1 510 760-7291 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 990-3597 +title: Junior Payroll Director +userPassword: Password1 +uid: TeschC +givenName: Corly +mail: TeschC@9e46d49d53a540a080afbdcfa4525ae4.bitwarden.com +carLicense: GYQP4V +departmentNumber: 7035 +employeeType: Normal +homePhone: +1 510 777-3164 +initials: C. T. +mobile: +1 510 937-5713 +pager: +1 510 868-2076 +roomNumber: 9827 +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laureen Ladet +sn: Ladet +description: This is Laureen Ladet's description +facsimileTelephoneNumber: +1 818 950-1868 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 269-5342 +title: Associate Product Development Architect +userPassword: Password1 +uid: LadetL +givenName: Laureen +mail: LadetL@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com +carLicense: FMEM0H +departmentNumber: 2423 +employeeType: Employee +homePhone: +1 818 171-7634 +initials: L. L. +mobile: +1 818 216-7834 +pager: +1 818 270-4625 +roomNumber: 9095 +secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnneMarie Sills +sn: Sills +description: This is AnneMarie Sills's description +facsimileTelephoneNumber: +1 408 365-5172 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 787-3957 +title: Chief Administrative Director +userPassword: Password1 +uid: SillsA +givenName: AnneMarie +mail: SillsA@6c5d1cc04bcc4690b1cd5f323caabcec.bitwarden.com +carLicense: BEE6XM +departmentNumber: 4141 +employeeType: Contract +homePhone: +1 408 506-7695 +initials: A. S. +mobile: +1 408 550-5955 +pager: +1 408 911-2731 +roomNumber: 9304 +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonny Creamer +sn: Creamer +description: This is Sonny Creamer's description +facsimileTelephoneNumber: +1 415 475-1215 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 404-1221 +title: Supreme Janitorial Mascot +userPassword: Password1 +uid: CreamerS +givenName: Sonny +mail: CreamerS@b88d4b807454424b816f4d4edf5c78f3.bitwarden.com +carLicense: YH7A1T +departmentNumber: 1369 +employeeType: Contract +homePhone: +1 415 378-6179 +initials: S. C. +mobile: +1 415 457-8850 +pager: +1 415 627-4857 +roomNumber: 9843 +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thia Rigsbee +sn: Rigsbee +description: This is Thia Rigsbee's description +facsimileTelephoneNumber: +1 415 990-2803 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 145-5592 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: RigsbeeT +givenName: Thia +mail: RigsbeeT@69ddae2b604b41af97e31581db1a7259.bitwarden.com +carLicense: IAM295 +departmentNumber: 9186 +employeeType: Employee +homePhone: +1 415 867-9586 +initials: T. R. +mobile: +1 415 352-3366 +pager: +1 415 787-4318 +roomNumber: 8150 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Access Banerd +sn: Banerd +description: This is Access Banerd's description +facsimileTelephoneNumber: +1 818 186-1671 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 602-7110 +title: Supreme Human Resources Consultant +userPassword: Password1 +uid: BanerdA +givenName: Access +mail: BanerdA@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com +carLicense: L8SF9H +departmentNumber: 4536 +employeeType: Normal +homePhone: +1 818 519-6470 +initials: A. B. +mobile: +1 818 961-3909 +pager: +1 818 595-5754 +roomNumber: 8992 +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mina Chee +sn: Chee +description: This is Mina Chee's description +facsimileTelephoneNumber: +1 818 347-1675 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 887-6598 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: CheeM +givenName: Mina +mail: CheeM@73b4280752ea430d90a4e41ca224258f.bitwarden.com +carLicense: 7V2TOX +departmentNumber: 5325 +employeeType: Employee +homePhone: +1 818 442-8788 +initials: M. C. +mobile: +1 818 926-8392 +pager: +1 818 182-6873 +roomNumber: 8535 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dpnlab Guilbert +sn: Guilbert +description: This is Dpnlab Guilbert's description +facsimileTelephoneNumber: +1 818 445-1038 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 980-5792 +title: Chief Payroll Punk +userPassword: Password1 +uid: GuilberD +givenName: Dpnlab +mail: GuilberD@a26a9c7d638a4a938f85aa60d8cdaebf.bitwarden.com +carLicense: O2SREJ +departmentNumber: 3465 +employeeType: Contract +homePhone: +1 818 181-4139 +initials: D. G. +mobile: +1 818 521-8648 +pager: +1 818 456-6938 +roomNumber: 8356 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fabienne Vempati +sn: Vempati +description: This is Fabienne Vempati's description +facsimileTelephoneNumber: +1 804 854-6718 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 936-7883 +title: Master Management Vice President +userPassword: Password1 +uid: VempatiF +givenName: Fabienne +mail: VempatiF@ad1687f9a97b47bf9fe47c86e586e467.bitwarden.com +carLicense: H8KLRQ +departmentNumber: 7361 +employeeType: Normal +homePhone: +1 804 118-2632 +initials: F. V. +mobile: +1 804 419-3917 +pager: +1 804 916-8154 +roomNumber: 8064 +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saman Bosch +sn: Bosch +description: This is Saman Bosch's description +facsimileTelephoneNumber: +1 206 422-1014 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 454-8400 +title: Junior Management Grunt +userPassword: Password1 +uid: BoschS +givenName: Saman +mail: BoschS@f009b38fd0b643efae4b268d5ce0abb7.bitwarden.com +carLicense: JN9S6L +departmentNumber: 8810 +employeeType: Employee +homePhone: +1 206 318-1923 +initials: S. B. +mobile: +1 206 413-5674 +pager: +1 206 228-3058 +roomNumber: 9989 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farag Collevecchio +sn: Collevecchio +description: This is Farag Collevecchio's description +facsimileTelephoneNumber: +1 408 310-7638 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 917-6792 +title: Supreme Peons Manager +userPassword: Password1 +uid: ColleveF +givenName: Farag +mail: ColleveF@107125a246e24f24a9cf40da49e16737.bitwarden.com +carLicense: B70JAR +departmentNumber: 9473 +employeeType: Contract +homePhone: +1 408 231-8090 +initials: F. C. +mobile: +1 408 675-4868 +pager: +1 408 288-4564 +roomNumber: 8704 +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com + +dn: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randhir Dobransky +sn: Dobransky +description: This is Randhir Dobransky's description +facsimileTelephoneNumber: +1 804 410-5773 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 567-3046 +title: Junior Peons Technician +userPassword: Password1 +uid: DobransR +givenName: Randhir +mail: DobransR@4dd34983587f4a0b9ee3f3c06d2784e6.bitwarden.com +carLicense: 5G43WG +departmentNumber: 5047 +employeeType: Employee +homePhone: +1 804 114-2466 +initials: R. D. +mobile: +1 804 169-9739 +pager: +1 804 559-8453 +roomNumber: 8582 +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maddy Beausejour +sn: Beausejour +description: This is Maddy Beausejour's description +facsimileTelephoneNumber: +1 206 324-9938 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 996-5727 +title: Associate Administrative Mascot +userPassword: Password1 +uid: BeausejM +givenName: Maddy +mail: BeausejM@78ace4543e8b4e7abd63d7e3b9ef6ace.bitwarden.com +carLicense: FOTACG +departmentNumber: 2460 +employeeType: Contract +homePhone: +1 206 890-2822 +initials: M. B. +mobile: +1 206 525-7772 +pager: +1 206 979-1178 +roomNumber: 8945 +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carita Stetner +sn: Stetner +description: This is Carita Stetner's description +facsimileTelephoneNumber: +1 213 167-4173 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 213 751-8575 +title: Chief Administrative Mascot +userPassword: Password1 +uid: StetnerC +givenName: Carita +mail: StetnerC@f450bfcb7980440badfefb5db1f9b1e7.bitwarden.com +carLicense: X64JMT +departmentNumber: 5334 +employeeType: Contract +homePhone: +1 213 811-2008 +initials: C. S. +mobile: +1 213 511-3531 +pager: +1 213 599-8641 +roomNumber: 9710 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dvm Ricketson +sn: Ricketson +description: This is Dvm Ricketson's description +facsimileTelephoneNumber: +1 804 675-7492 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 804 128-4814 +title: Junior Payroll Grunt +userPassword: Password1 +uid: RicketsD +givenName: Dvm +mail: RicketsD@89dcd9d2c857498a86ade06ecc312230.bitwarden.com +carLicense: AUIRNF +departmentNumber: 3759 +employeeType: Normal +homePhone: +1 804 974-5513 +initials: D. R. +mobile: +1 804 772-7296 +pager: +1 804 993-6437 +roomNumber: 8301 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebeca Gantt +sn: Gantt +description: This is Rebeca Gantt's description +facsimileTelephoneNumber: +1 510 650-3292 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 359-1544 +title: Master Janitorial Evangelist +userPassword: Password1 +uid: GanttR +givenName: Rebeca +mail: GanttR@b61ae18043f9458aa61f6fc88ad93618.bitwarden.com +carLicense: 6U8UMA +departmentNumber: 1649 +employeeType: Employee +homePhone: +1 510 182-9516 +initials: R. G. +mobile: +1 510 361-9817 +pager: +1 510 671-6076 +roomNumber: 9096 +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viktoria Relations +sn: Relations +description: This is Viktoria Relations's description +facsimileTelephoneNumber: +1 804 813-7073 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 400-1663 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: RelatioV +givenName: Viktoria +mail: RelatioV@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com +carLicense: P1BTHM +departmentNumber: 4393 +employeeType: Contract +homePhone: +1 804 183-8953 +initials: V. R. +mobile: +1 804 606-8133 +pager: +1 804 440-5965 +roomNumber: 9584 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hot Hisaki +sn: Hisaki +description: This is Hot Hisaki's description +facsimileTelephoneNumber: +1 213 403-9511 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 213 371-5013 +title: Junior Product Testing Evangelist +userPassword: Password1 +uid: HisakiH +givenName: Hot +mail: HisakiH@096f60c023cb468a8d116af8aa53dafa.bitwarden.com +carLicense: 5UFOD1 +departmentNumber: 3107 +employeeType: Contract +homePhone: +1 213 389-4215 +initials: H. H. +mobile: +1 213 286-1936 +pager: +1 213 825-1882 +roomNumber: 9243 +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristien Reinwald +sn: Reinwald +description: This is Kristien Reinwald's description +facsimileTelephoneNumber: +1 510 675-7315 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 510 824-1335 +title: Associate Payroll Assistant +userPassword: Password1 +uid: ReinwalK +givenName: Kristien +mail: ReinwalK@d0277d6f48c14695a4405ab88f901980.bitwarden.com +carLicense: 0QPKG4 +departmentNumber: 8210 +employeeType: Employee +homePhone: +1 510 642-4832 +initials: K. R. +mobile: +1 510 309-3841 +pager: +1 510 318-6154 +roomNumber: 9835 +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anjanette Codata +sn: Codata +description: This is Anjanette Codata's description +facsimileTelephoneNumber: +1 213 970-7300 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 763-9681 +title: Junior Product Development Writer +userPassword: Password1 +uid: CodataA +givenName: Anjanette +mail: CodataA@b72198c81eb943f9965cdab0dd75e67b.bitwarden.com +carLicense: LSC7PS +departmentNumber: 6173 +employeeType: Normal +homePhone: +1 213 657-6626 +initials: A. C. +mobile: +1 213 121-3153 +pager: +1 213 896-4639 +roomNumber: 9082 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com + +dn: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antonia Killam +sn: Killam +description: This is Antonia Killam's description +facsimileTelephoneNumber: +1 213 462-6299 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 884-4630 +title: Master Management Writer +userPassword: Password1 +uid: KillamA +givenName: Antonia +mail: KillamA@d09db853699d499ba28b7118a2e128fd.bitwarden.com +carLicense: S8QV11 +departmentNumber: 1074 +employeeType: Normal +homePhone: +1 213 197-2971 +initials: A. K. +mobile: +1 213 993-3368 +pager: +1 213 832-4251 +roomNumber: 8027 +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosene Bonner +sn: Bonner +description: This is Rosene Bonner's description +facsimileTelephoneNumber: +1 206 330-3690 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 779-9181 +title: Junior Peons Warrior +userPassword: Password1 +uid: BonnerR +givenName: Rosene +mail: BonnerR@121cc33033f14e9b867c78ba3a8f3e2b.bitwarden.com +carLicense: 7DASVX +departmentNumber: 6999 +employeeType: Contract +homePhone: +1 206 226-6834 +initials: R. B. +mobile: +1 206 375-5401 +pager: +1 206 223-9164 +roomNumber: 9166 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janson Vrbetic +sn: Vrbetic +description: This is Janson Vrbetic's description +facsimileTelephoneNumber: +1 510 683-1314 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 423-4369 +title: Master Management Writer +userPassword: Password1 +uid: VrbeticJ +givenName: Janson +mail: VrbeticJ@541a9a67add74942af05ec9661f08230.bitwarden.com +carLicense: HUIYDT +departmentNumber: 5244 +employeeType: Normal +homePhone: +1 510 813-7706 +initials: J. V. +mobile: +1 510 593-6287 +pager: +1 510 679-9633 +roomNumber: 8464 +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bevyn Vonreichbauer +sn: Vonreichbauer +description: This is Bevyn Vonreichbauer's description +facsimileTelephoneNumber: +1 213 516-1688 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 459-8183 +title: Master Product Testing Dictator +userPassword: Password1 +uid: VonreicB +givenName: Bevyn +mail: VonreicB@8311a48378874d7c8881d49ce93338e6.bitwarden.com +carLicense: KM4JOT +departmentNumber: 3154 +employeeType: Employee +homePhone: +1 213 189-1175 +initials: B. V. +mobile: +1 213 513-5676 +pager: +1 213 687-5369 +roomNumber: 9856 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurijn Weidenborner +sn: Weidenborner +description: This is Maurijn Weidenborner's description +facsimileTelephoneNumber: +1 804 806-6924 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 923-3519 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: WeidenbM +givenName: Maurijn +mail: WeidenbM@3bd94762b36248a3a966e29a33d3058c.bitwarden.com +carLicense: AL8XQ6 +departmentNumber: 5875 +employeeType: Employee +homePhone: +1 804 818-5707 +initials: M. W. +mobile: +1 804 443-8704 +pager: +1 804 840-6166 +roomNumber: 9258 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Balakrishna Mystkowski +sn: Mystkowski +description: This is Balakrishna Mystkowski's description +facsimileTelephoneNumber: +1 415 934-5941 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 415 663-1585 +title: Master Product Development Mascot +userPassword: Password1 +uid: MystkowB +givenName: Balakrishna +mail: MystkowB@7f94876ebfe04b25a6342dc4d9880231.bitwarden.com +carLicense: MUCD8O +departmentNumber: 2539 +employeeType: Normal +homePhone: +1 415 237-7609 +initials: B. M. +mobile: +1 415 864-5403 +pager: +1 415 954-2899 +roomNumber: 9800 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clyde Beggs +sn: Beggs +description: This is Clyde Beggs's description +facsimileTelephoneNumber: +1 206 319-6302 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 124-3384 +title: Supreme Peons Developer +userPassword: Password1 +uid: BeggsC +givenName: Clyde +mail: BeggsC@8dd82af0c0e64a528cb0191d0b7789f2.bitwarden.com +carLicense: IUOUR1 +departmentNumber: 4621 +employeeType: Employee +homePhone: +1 206 521-4067 +initials: C. B. +mobile: +1 206 507-2194 +pager: +1 206 189-6771 +roomNumber: 9640 +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ohio Ackwood +sn: Ackwood +description: This is Ohio Ackwood's description +facsimileTelephoneNumber: +1 804 569-6378 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 283-1877 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: AckwoodO +givenName: Ohio +mail: AckwoodO@7731926b8eba477c82aacfea38c5fc13.bitwarden.com +carLicense: PMQUMD +departmentNumber: 3621 +employeeType: Normal +homePhone: +1 804 223-9823 +initials: O. A. +mobile: +1 804 687-2623 +pager: +1 804 835-6957 +roomNumber: 9218 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cal Storey +sn: Storey +description: This is Cal Storey's description +facsimileTelephoneNumber: +1 804 951-9418 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 804 679-2570 +title: Chief Human Resources President +userPassword: Password1 +uid: StoreyC +givenName: Cal +mail: StoreyC@446fda101a9542ef9472f9748a3bbad3.bitwarden.com +carLicense: SIDSBI +departmentNumber: 8387 +employeeType: Normal +homePhone: +1 804 749-7703 +initials: C. S. +mobile: +1 804 937-3701 +pager: +1 804 171-1468 +roomNumber: 8276 +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Scarlet Coyne +sn: Coyne +description: This is Scarlet Coyne's description +facsimileTelephoneNumber: +1 415 419-3495 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 429-1408 +title: Associate Human Resources Manager +userPassword: Password1 +uid: CoyneS +givenName: Scarlet +mail: CoyneS@bff70836a23e4971b616373a470331a4.bitwarden.com +carLicense: LAM5U3 +departmentNumber: 1383 +employeeType: Contract +homePhone: +1 415 277-8368 +initials: S. C. +mobile: +1 415 995-9090 +pager: +1 415 876-1155 +roomNumber: 9566 +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pearline Towsley +sn: Towsley +description: This is Pearline Towsley's description +facsimileTelephoneNumber: +1 408 214-9940 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 408 375-8243 +title: Associate Peons Assistant +userPassword: Password1 +uid: TowsleyP +givenName: Pearline +mail: TowsleyP@03118a048f5d4356bb8bbf044152a0bc.bitwarden.com +carLicense: 7PULR2 +departmentNumber: 5971 +employeeType: Employee +homePhone: +1 408 912-5717 +initials: P. T. +mobile: +1 408 752-8942 +pager: +1 408 734-7205 +roomNumber: 9631 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Violet Ninetyone +sn: Ninetyone +description: This is Violet Ninetyone's description +facsimileTelephoneNumber: +1 818 950-5802 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 714-1532 +title: Master Product Development Writer +userPassword: Password1 +uid: NinetyoV +givenName: Violet +mail: NinetyoV@c1217eb361b34f5f9200a6d2ac0e0924.bitwarden.com +carLicense: QG741W +departmentNumber: 1463 +employeeType: Employee +homePhone: +1 818 922-4828 +initials: V. N. +mobile: +1 818 810-9712 +pager: +1 818 848-7852 +roomNumber: 8994 +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hr Healy +sn: Healy +description: This is Hr Healy's description +facsimileTelephoneNumber: +1 213 608-1948 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 263-7513 +title: Master Peons Architect +userPassword: Password1 +uid: HealyH +givenName: Hr +mail: HealyH@29ea2fbdcd594c67b7900d7a29977699.bitwarden.com +carLicense: 34152W +departmentNumber: 8721 +employeeType: Normal +homePhone: +1 213 133-1193 +initials: H. H. +mobile: +1 213 146-5195 +pager: +1 213 124-8596 +roomNumber: 8425 +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ondrea Schultze +sn: Schultze +description: This is Ondrea Schultze's description +facsimileTelephoneNumber: +1 206 777-1279 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 206 786-6190 +title: Associate Peons Technician +userPassword: Password1 +uid: SchultzO +givenName: Ondrea +mail: SchultzO@f252b0badb62492c910f90ea10fa1426.bitwarden.com +carLicense: FP9348 +departmentNumber: 8547 +employeeType: Contract +homePhone: +1 206 200-1326 +initials: O. S. +mobile: +1 206 448-1187 +pager: +1 206 653-3531 +roomNumber: 8504 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lita Gille +sn: Gille +description: This is Lita Gille's description +facsimileTelephoneNumber: +1 415 607-1592 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 895-3928 +title: Master Janitorial Admin +userPassword: Password1 +uid: GilleL +givenName: Lita +mail: GilleL@985392d95f2c4602acfb90f908cc5548.bitwarden.com +carLicense: 1SI4O6 +departmentNumber: 4907 +employeeType: Employee +homePhone: +1 415 548-8051 +initials: L. G. +mobile: +1 415 133-3424 +pager: +1 415 722-4472 +roomNumber: 8116 +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joelle Delong +sn: Delong +description: This is Joelle Delong's description +facsimileTelephoneNumber: +1 818 168-8208 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 504-1735 +title: Chief Administrative Mascot +userPassword: Password1 +uid: DelongJ +givenName: Joelle +mail: DelongJ@b2621506fe2b459baf1ad04147fee681.bitwarden.com +carLicense: 9W32XE +departmentNumber: 5518 +employeeType: Normal +homePhone: +1 818 752-5335 +initials: J. D. +mobile: +1 818 588-3340 +pager: +1 818 614-7604 +roomNumber: 9533 +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com + +dn: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fabien Klapper +sn: Klapper +description: This is Fabien Klapper's description +facsimileTelephoneNumber: +1 408 343-4748 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 139-2008 +title: Supreme Product Development Punk +userPassword: Password1 +uid: KlapperF +givenName: Fabien +mail: KlapperF@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com +carLicense: 66GBBI +departmentNumber: 1367 +employeeType: Normal +homePhone: +1 408 478-1989 +initials: F. K. +mobile: +1 408 758-8481 +pager: +1 408 974-6113 +roomNumber: 8884 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christie Andersen +sn: Andersen +description: This is Christie Andersen's description +facsimileTelephoneNumber: +1 408 672-1067 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 527-6179 +title: Master Peons Architect +userPassword: Password1 +uid: AnderseC +givenName: Christie +mail: AnderseC@f541074a8300482d85b53966c8cecebb.bitwarden.com +carLicense: N3R031 +departmentNumber: 7310 +employeeType: Normal +homePhone: +1 408 620-3172 +initials: C. A. +mobile: +1 408 700-6663 +pager: +1 408 921-3818 +roomNumber: 9589 +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarena Semler +sn: Semler +description: This is Sarena Semler's description +facsimileTelephoneNumber: +1 510 218-7056 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 190-7531 +title: Chief Administrative Czar +userPassword: Password1 +uid: SemlerS +givenName: Sarena +mail: SemlerS@4f429ec00b3846cdb96eadb01bfd7a99.bitwarden.com +carLicense: GCEYQF +departmentNumber: 3285 +employeeType: Employee +homePhone: +1 510 534-3141 +initials: S. S. +mobile: +1 510 328-3345 +pager: +1 510 590-3223 +roomNumber: 9387 +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janka Norfleet +sn: Norfleet +description: This is Janka Norfleet's description +facsimileTelephoneNumber: +1 818 801-6928 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 751-6753 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: NorfleeJ +givenName: Janka +mail: NorfleeJ@c6becf10621f424386eceb52ac60363d.bitwarden.com +carLicense: 8C3R1K +departmentNumber: 2199 +employeeType: Contract +homePhone: +1 818 126-7473 +initials: J. N. +mobile: +1 818 841-3570 +pager: +1 818 671-5902 +roomNumber: 9318 +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmelita McClintock +sn: McClintock +description: This is Carmelita McClintock's description +facsimileTelephoneNumber: +1 804 571-8607 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 219-9064 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: McClintC +givenName: Carmelita +mail: McClintC@79732267294c4ff69a75a9c93c8c2c5a.bitwarden.com +carLicense: VXAYA7 +departmentNumber: 4942 +employeeType: Contract +homePhone: +1 804 446-2137 +initials: C. M. +mobile: +1 804 675-4366 +pager: +1 804 712-6588 +roomNumber: 9346 +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margalit Schnurmann +sn: Schnurmann +description: This is Margalit Schnurmann's description +facsimileTelephoneNumber: +1 408 714-3542 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 264-9682 +title: Junior Payroll Czar +userPassword: Password1 +uid: SchnurmM +givenName: Margalit +mail: SchnurmM@cdc31465418c4033ab89394a6307e530.bitwarden.com +carLicense: 952PUG +departmentNumber: 7732 +employeeType: Contract +homePhone: +1 408 801-2572 +initials: M. S. +mobile: +1 408 872-6634 +pager: +1 408 275-2981 +roomNumber: 8702 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verena Cadzow +sn: Cadzow +description: This is Verena Cadzow's description +facsimileTelephoneNumber: +1 415 520-8453 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 132-5964 +title: Junior Product Testing Sales Rep +userPassword: Password1 +uid: CadzowV +givenName: Verena +mail: CadzowV@00b74fb6ef364737950ddfdf6aa8c176.bitwarden.com +carLicense: GJYDOU +departmentNumber: 3576 +employeeType: Normal +homePhone: +1 415 827-8462 +initials: V. C. +mobile: +1 415 673-2909 +pager: +1 415 929-2331 +roomNumber: 8243 +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roselin Clinton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roselin Clinton +sn: Clinton +description: This is Roselin Clinton's description +facsimileTelephoneNumber: +1 408 560-1542 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 408 466-3805 +title: Master Management Technician +userPassword: Password1 +uid: ClintonR +givenName: Roselin +mail: ClintonR@68cdb3f1f4a34d45a9e696c1e31a6e1d.bitwarden.com +carLicense: TNUMQ2 +departmentNumber: 8952 +employeeType: Employee +homePhone: +1 408 239-4824 +initials: R. C. +mobile: +1 408 313-6974 +pager: +1 408 986-7006 +roomNumber: 9132 +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niki Tosczak +sn: Tosczak +description: This is Niki Tosczak's description +facsimileTelephoneNumber: +1 510 987-4784 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 810-9017 +title: Supreme Janitorial Artist +userPassword: Password1 +uid: TosczakN +givenName: Niki +mail: TosczakN@0eafa9df29954ccc8d03b1a1a5c6c726.bitwarden.com +carLicense: PXXQJS +departmentNumber: 3567 +employeeType: Normal +homePhone: +1 510 210-1651 +initials: N. T. +mobile: +1 510 871-8724 +pager: +1 510 829-5416 +roomNumber: 8702 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsey Sacchetti +sn: Sacchetti +description: This is Chelsey Sacchetti's description +facsimileTelephoneNumber: +1 213 120-2668 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 991-2334 +title: Master Peons Madonna +userPassword: Password1 +uid: SacchetC +givenName: Chelsey +mail: SacchetC@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com +carLicense: EXWVSS +departmentNumber: 5871 +employeeType: Contract +homePhone: +1 213 997-6816 +initials: C. S. +mobile: +1 213 538-8213 +pager: +1 213 597-8830 +roomNumber: 8706 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alli McCartney +sn: McCartney +description: This is Alli McCartney's description +facsimileTelephoneNumber: +1 804 597-4209 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 551-2065 +title: Master Human Resources Technician +userPassword: Password1 +uid: McCartnA +givenName: Alli +mail: McCartnA@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com +carLicense: RBSARC +departmentNumber: 3782 +employeeType: Employee +homePhone: +1 804 416-4403 +initials: A. M. +mobile: +1 804 528-7079 +pager: +1 804 195-3679 +roomNumber: 9433 +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helaine Sture +sn: Sture +description: This is Helaine Sture's description +facsimileTelephoneNumber: +1 804 835-8185 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 198-1747 +title: Master Product Testing Madonna +userPassword: Password1 +uid: StureH +givenName: Helaine +mail: StureH@1d5f034b9f0b4b2d8a9c2ac70eae1af4.bitwarden.com +carLicense: 4KJHNV +departmentNumber: 8442 +employeeType: Contract +homePhone: +1 804 972-6960 +initials: H. S. +mobile: +1 804 372-2136 +pager: +1 804 209-4870 +roomNumber: 9333 +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elane Boggia +sn: Boggia +description: This is Elane Boggia's description +facsimileTelephoneNumber: +1 415 556-7479 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 688-6241 +title: Associate Peons Mascot +userPassword: Password1 +uid: BoggiaE +givenName: Elane +mail: BoggiaE@1390fe347bf84da5b12ed2e7e03c14a9.bitwarden.com +carLicense: VH4QYJ +departmentNumber: 6085 +employeeType: Normal +homePhone: +1 415 363-1650 +initials: E. B. +mobile: +1 415 196-5365 +pager: +1 415 449-7808 +roomNumber: 9164 +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristen Bethune +sn: Bethune +description: This is Cristen Bethune's description +facsimileTelephoneNumber: +1 206 119-3959 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 930-2604 +title: Chief Human Resources Writer +userPassword: Password1 +uid: BethuneC +givenName: Cristen +mail: BethuneC@5e878ad72c9742919c149b3ae36447b2.bitwarden.com +carLicense: CW8QUF +departmentNumber: 6369 +employeeType: Normal +homePhone: +1 206 557-4787 +initials: C. B. +mobile: +1 206 907-5643 +pager: +1 206 797-1016 +roomNumber: 8571 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elbert Strauch +sn: Strauch +description: This is Elbert Strauch's description +facsimileTelephoneNumber: +1 206 742-1484 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 563-5131 +title: Chief Administrative Mascot +userPassword: Password1 +uid: StrauchE +givenName: Elbert +mail: StrauchE@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com +carLicense: Y2NIEQ +departmentNumber: 5513 +employeeType: Employee +homePhone: +1 206 194-6409 +initials: E. S. +mobile: +1 206 107-6279 +pager: +1 206 491-8001 +roomNumber: 8367 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stock Krenn +sn: Krenn +description: This is Stock Krenn's description +facsimileTelephoneNumber: +1 510 522-9598 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 918-2690 +title: Supreme Product Development Pinhead +userPassword: Password1 +uid: KrennS +givenName: Stock +mail: KrennS@391ddf0224dd407ba001b022d1309d23.bitwarden.com +carLicense: RQ6EK4 +departmentNumber: 8634 +employeeType: Contract +homePhone: +1 510 791-7996 +initials: S. K. +mobile: +1 510 126-8507 +pager: +1 510 752-1296 +roomNumber: 8086 +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurice Wurtz +sn: Wurtz +description: This is Maurice Wurtz's description +facsimileTelephoneNumber: +1 213 230-4610 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 772-7927 +title: Junior Peons Warrior +userPassword: Password1 +uid: WurtzM +givenName: Maurice +mail: WurtzM@d8178390586b4ff2afbd07f5124be8ce.bitwarden.com +carLicense: YK2CSO +departmentNumber: 7525 +employeeType: Employee +homePhone: +1 213 292-9859 +initials: M. W. +mobile: +1 213 857-3025 +pager: +1 213 120-3542 +roomNumber: 9955 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YoungJune Grauer +sn: Grauer +description: This is YoungJune Grauer's description +facsimileTelephoneNumber: +1 415 998-8290 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 996-4775 +title: Junior Management Stooge +userPassword: Password1 +uid: GrauerY +givenName: YoungJune +mail: GrauerY@434812d441a24c9dafd1550eb22dcb62.bitwarden.com +carLicense: 3EHV9E +departmentNumber: 5350 +employeeType: Normal +homePhone: +1 415 530-4168 +initials: Y. G. +mobile: +1 415 177-8594 +pager: +1 415 338-3948 +roomNumber: 8389 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jock Subsara +sn: Subsara +description: This is Jock Subsara's description +facsimileTelephoneNumber: +1 415 308-4027 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 459-9605 +title: Junior Management Fellow +userPassword: Password1 +uid: SubsaraJ +givenName: Jock +mail: SubsaraJ@01c459dd18154d91bb999b9b97f18487.bitwarden.com +carLicense: CP45OB +departmentNumber: 7066 +employeeType: Contract +homePhone: +1 415 357-4716 +initials: J. S. +mobile: +1 415 221-2745 +pager: +1 415 743-8603 +roomNumber: 8987 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosina Bassignana +sn: Bassignana +description: This is Rosina Bassignana's description +facsimileTelephoneNumber: +1 415 130-7212 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 236-5113 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: BassignR +givenName: Rosina +mail: BassignR@15d7a602173249f0aea4978bd6de557b.bitwarden.com +carLicense: MGMEE1 +departmentNumber: 8776 +employeeType: Normal +homePhone: +1 415 485-7859 +initials: R. B. +mobile: +1 415 200-8113 +pager: +1 415 103-9868 +roomNumber: 8185 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarangarajan Reilly +sn: Reilly +description: This is Sarangarajan Reilly's description +facsimileTelephoneNumber: +1 510 169-2660 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 510 291-1037 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: ReillyS +givenName: Sarangarajan +mail: ReillyS@d5949360307842458664ec19684f5fbf.bitwarden.com +carLicense: SAIHQ2 +departmentNumber: 5070 +employeeType: Normal +homePhone: +1 510 860-9343 +initials: S. R. +mobile: +1 510 636-6434 +pager: +1 510 130-4151 +roomNumber: 8920 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Latia Amarsi +sn: Amarsi +description: This is Latia Amarsi's description +facsimileTelephoneNumber: +1 213 987-8399 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 988-7091 +title: Master Payroll Czar +userPassword: Password1 +uid: AmarsiL +givenName: Latia +mail: AmarsiL@d3f6a0448cf246c98f76952766172afe.bitwarden.com +carLicense: 6IDOCT +departmentNumber: 3438 +employeeType: Normal +homePhone: +1 213 893-8583 +initials: L. A. +mobile: +1 213 745-2117 +pager: +1 213 829-4672 +roomNumber: 9641 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Babak Culverhouse +sn: Culverhouse +description: This is Babak Culverhouse's description +facsimileTelephoneNumber: +1 213 693-3227 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 186-6373 +title: Associate Human Resources Punk +userPassword: Password1 +uid: CulverhB +givenName: Babak +mail: CulverhB@a85c3929256747e4a90337c3ba0f9538.bitwarden.com +carLicense: WR8ALQ +departmentNumber: 5582 +employeeType: Employee +homePhone: +1 213 946-7215 +initials: B. C. +mobile: +1 213 456-8408 +pager: +1 213 466-1329 +roomNumber: 9012 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Armand Klimas +sn: Klimas +description: This is Armand Klimas's description +facsimileTelephoneNumber: +1 213 596-5104 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 213-8199 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: KlimasA +givenName: Armand +mail: KlimasA@cc354ce01f7d4b1dbbd812fe0f0347ab.bitwarden.com +carLicense: XBS7R6 +departmentNumber: 8855 +employeeType: Normal +homePhone: +1 213 382-7196 +initials: A. K. +mobile: +1 213 599-4067 +pager: +1 213 848-2841 +roomNumber: 9718 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibbie DeWiele +sn: DeWiele +description: This is Sibbie DeWiele's description +facsimileTelephoneNumber: +1 213 633-1588 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 297-1903 +title: Master Management Madonna +userPassword: Password1 +uid: DeWieleS +givenName: Sibbie +mail: DeWieleS@6166cdfc1e46480f804599bfc1632742.bitwarden.com +carLicense: V5CLFH +departmentNumber: 8410 +employeeType: Normal +homePhone: +1 213 925-8901 +initials: S. D. +mobile: +1 213 785-1932 +pager: +1 213 839-3075 +roomNumber: 8730 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiam Surreau +sn: Surreau +description: This is Kiam Surreau's description +facsimileTelephoneNumber: +1 415 985-4775 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 111-9899 +title: Chief Administrative Admin +userPassword: Password1 +uid: SurreauK +givenName: Kiam +mail: SurreauK@26ece7db144b41bb92ce5c1250e537b0.bitwarden.com +carLicense: 092W9H +departmentNumber: 7422 +employeeType: Contract +homePhone: +1 415 778-4201 +initials: K. S. +mobile: +1 415 590-7629 +pager: +1 415 182-9790 +roomNumber: 8266 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarabelle Committe +sn: Committe +description: This is Clarabelle Committe's description +facsimileTelephoneNumber: +1 415 841-3041 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 608-2472 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: CommittC +givenName: Clarabelle +mail: CommittC@987beca3f52a49bd924ac83295cf5b4d.bitwarden.com +carLicense: 8H2OCU +departmentNumber: 2614 +employeeType: Employee +homePhone: +1 415 713-8200 +initials: C. C. +mobile: +1 415 294-7309 +pager: +1 415 608-8377 +roomNumber: 8232 +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geralene Lan +sn: Lan +description: This is Geralene Lan's description +facsimileTelephoneNumber: +1 510 614-7871 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 660-7961 +title: Junior Product Development Grunt +userPassword: Password1 +uid: LanG +givenName: Geralene +mail: LanG@0a2947c0937246148acc395ec6aa6da8.bitwarden.com +carLicense: NEQ5JY +departmentNumber: 9737 +employeeType: Contract +homePhone: +1 510 444-8848 +initials: G. L. +mobile: +1 510 890-9747 +pager: +1 510 360-4796 +roomNumber: 8246 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelyn Runnels +sn: Runnels +description: This is Madelyn Runnels's description +facsimileTelephoneNumber: +1 510 790-4800 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 219-9245 +title: Chief Peons Punk +userPassword: Password1 +uid: RunnelsM +givenName: Madelyn +mail: RunnelsM@b2f73c176c104e9dad8630c2f13ec103.bitwarden.com +carLicense: BDQXOO +departmentNumber: 8214 +employeeType: Normal +homePhone: +1 510 533-4371 +initials: M. R. +mobile: +1 510 448-5448 +pager: +1 510 846-4965 +roomNumber: 8337 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marshal Hawken +sn: Hawken +description: This is Marshal Hawken's description +facsimileTelephoneNumber: +1 408 621-1500 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 680-3463 +title: Supreme Product Development Fellow +userPassword: Password1 +uid: HawkenM +givenName: Marshal +mail: HawkenM@a4dea908812d4b559d6d4b4ddbcb0f53.bitwarden.com +carLicense: NEMIST +departmentNumber: 3021 +employeeType: Normal +homePhone: +1 408 955-3128 +initials: M. H. +mobile: +1 408 115-3982 +pager: +1 408 639-9412 +roomNumber: 8513 +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sickle Hartley +sn: Hartley +description: This is Sickle Hartley's description +facsimileTelephoneNumber: +1 818 157-7549 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 725-2994 +title: Associate Human Resources Pinhead +userPassword: Password1 +uid: HartleyS +givenName: Sickle +mail: HartleyS@aea15ef0456d4cd2988add4323d0edb7.bitwarden.com +carLicense: 01IDLL +departmentNumber: 7318 +employeeType: Normal +homePhone: +1 818 813-8628 +initials: S. H. +mobile: +1 818 512-2580 +pager: +1 818 223-9985 +roomNumber: 8922 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carran Cramer +sn: Cramer +description: This is Carran Cramer's description +facsimileTelephoneNumber: +1 206 990-9678 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 206 637-6668 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: CramerC +givenName: Carran +mail: CramerC@da80fbc552e74c92b5c02d6f794db308.bitwarden.com +carLicense: C5VUAM +departmentNumber: 7383 +employeeType: Employee +homePhone: +1 206 304-8768 +initials: C. C. +mobile: +1 206 955-8055 +pager: +1 206 177-2965 +roomNumber: 8017 +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KienNghiep Eby +sn: Eby +description: This is KienNghiep Eby's description +facsimileTelephoneNumber: +1 804 179-5121 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 890-3542 +title: Associate Payroll Janitor +userPassword: Password1 +uid: EbyK +givenName: KienNghiep +mail: EbyK@d787acf2cb0f4ad79059f38dcecb70e1.bitwarden.com +carLicense: 2XJ3SB +departmentNumber: 4577 +employeeType: Employee +homePhone: +1 804 407-4052 +initials: K. E. +mobile: +1 804 283-1326 +pager: +1 804 780-9429 +roomNumber: 9530 +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pacific Derrett +sn: Derrett +description: This is Pacific Derrett's description +facsimileTelephoneNumber: +1 206 498-3192 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 461-3814 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: DerrettP +givenName: Pacific +mail: DerrettP@4247bf0f3a2e46bbbb1c691078752396.bitwarden.com +carLicense: DYA967 +departmentNumber: 5266 +employeeType: Normal +homePhone: +1 206 406-7893 +initials: P. D. +mobile: +1 206 804-9922 +pager: +1 206 469-3228 +roomNumber: 9827 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allyce Chickorie +sn: Chickorie +description: This is Allyce Chickorie's description +facsimileTelephoneNumber: +1 510 610-7678 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 124-4432 +title: Supreme Management Stooge +userPassword: Password1 +uid: ChickorA +givenName: Allyce +mail: ChickorA@a3cca719b1e44338804967e6cd3716a5.bitwarden.com +carLicense: L7L7G4 +departmentNumber: 7191 +employeeType: Contract +homePhone: +1 510 135-1147 +initials: A. C. +mobile: +1 510 851-2885 +pager: +1 510 544-9768 +roomNumber: 8059 +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Risa Hatten +sn: Hatten +description: This is Risa Hatten's description +facsimileTelephoneNumber: +1 213 927-8612 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 229-7781 +title: Chief Administrative Warrior +userPassword: Password1 +uid: HattenR +givenName: Risa +mail: HattenR@66ab35d6948347a9bae3a60013004915.bitwarden.com +carLicense: E5V0RJ +departmentNumber: 6818 +employeeType: Contract +homePhone: +1 213 466-3059 +initials: R. H. +mobile: +1 213 628-4550 +pager: +1 213 686-6829 +roomNumber: 8693 +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherise Racette +sn: Racette +description: This is Cherise Racette's description +facsimileTelephoneNumber: +1 818 280-4824 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 594-1524 +title: Chief Management Evangelist +userPassword: Password1 +uid: RacetteC +givenName: Cherise +mail: RacetteC@2c6078f6eca44c55a3b0351656fc7d8a.bitwarden.com +carLicense: AIVLGE +departmentNumber: 9885 +employeeType: Contract +homePhone: +1 818 168-2293 +initials: C. R. +mobile: +1 818 628-5296 +pager: +1 818 753-1601 +roomNumber: 8803 +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ava Wetteland +sn: Wetteland +description: This is Ava Wetteland's description +facsimileTelephoneNumber: +1 510 688-8465 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 773-9802 +title: Master Product Development Visionary +userPassword: Password1 +uid: WettelaA +givenName: Ava +mail: WettelaA@013fb02061ee471c942b593b9cccbedb.bitwarden.com +carLicense: I6DGLK +departmentNumber: 6796 +employeeType: Normal +homePhone: +1 510 644-5393 +initials: A. W. +mobile: +1 510 956-1288 +pager: +1 510 771-6481 +roomNumber: 8785 +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bonita Chiamvimonvat +sn: Chiamvimonvat +description: This is Bonita Chiamvimonvat's description +facsimileTelephoneNumber: +1 408 730-4837 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 538-5170 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: ChiamviB +givenName: Bonita +mail: ChiamviB@ba3add3fa0e5474bb8115e77e9d392b7.bitwarden.com +carLicense: Q5YBAJ +departmentNumber: 5600 +employeeType: Employee +homePhone: +1 408 579-8351 +initials: B. C. +mobile: +1 408 361-6070 +pager: +1 408 644-3738 +roomNumber: 9165 +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaun Fares +sn: Fares +description: This is Shaun Fares's description +facsimileTelephoneNumber: +1 510 777-6472 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 541-9326 +title: Master Human Resources Developer +userPassword: Password1 +uid: FaresS +givenName: Shaun +mail: FaresS@79f438ac5a2045c28f6ad4893a72e3bf.bitwarden.com +carLicense: UJRKYT +departmentNumber: 1615 +employeeType: Employee +homePhone: +1 510 483-8329 +initials: S. F. +mobile: +1 510 429-9526 +pager: +1 510 692-7983 +roomNumber: 9969 +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miss Rogne +sn: Rogne +description: This is Miss Rogne's description +facsimileTelephoneNumber: +1 415 119-6636 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 769-6960 +title: Junior Peons Developer +userPassword: Password1 +uid: RogneM +givenName: Miss +mail: RogneM@4437a885539842e694e181973aeef65f.bitwarden.com +carLicense: C8YUBG +departmentNumber: 9609 +employeeType: Normal +homePhone: +1 415 972-9971 +initials: M. R. +mobile: +1 415 392-1654 +pager: +1 415 328-4095 +roomNumber: 8987 +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vyky Wichers +sn: Wichers +description: This is Vyky Wichers's description +facsimileTelephoneNumber: +1 415 766-2932 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 415 383-8304 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: WichersV +givenName: Vyky +mail: WichersV@c9a0e26d4ea742c783cb4ebee35bdd7b.bitwarden.com +carLicense: AXAKBU +departmentNumber: 1046 +employeeType: Employee +homePhone: +1 415 880-4626 +initials: V. W. +mobile: +1 415 406-9084 +pager: +1 415 161-3581 +roomNumber: 8010 +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christal Logan +sn: Logan +description: This is Christal Logan's description +facsimileTelephoneNumber: +1 804 687-8432 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 207-8897 +title: Chief Payroll Director +userPassword: Password1 +uid: LoganC +givenName: Christal +mail: LoganC@355444411163413985e2752e5591891d.bitwarden.com +carLicense: R8YYWA +departmentNumber: 9041 +employeeType: Contract +homePhone: +1 804 723-8990 +initials: C. L. +mobile: +1 804 989-6320 +pager: +1 804 162-9010 +roomNumber: 9618 +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gretna Witkowski +sn: Witkowski +description: This is Gretna Witkowski's description +facsimileTelephoneNumber: +1 213 724-5444 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 362-1387 +title: Chief Product Testing Developer +userPassword: Password1 +uid: WitkowsG +givenName: Gretna +mail: WitkowsG@cabcf482c8b8459d8a74ab2619df86df.bitwarden.com +carLicense: QALXVL +departmentNumber: 2038 +employeeType: Normal +homePhone: +1 213 536-1790 +initials: G. W. +mobile: +1 213 147-7236 +pager: +1 213 114-2220 +roomNumber: 9912 +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marga Narron +sn: Narron +description: This is Marga Narron's description +facsimileTelephoneNumber: +1 408 265-1893 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 408 240-8050 +title: Master Janitorial Mascot +userPassword: Password1 +uid: NarronM +givenName: Marga +mail: NarronM@602ba75a97ea4dc1ac3622553464c0ac.bitwarden.com +carLicense: BVJ510 +departmentNumber: 7170 +employeeType: Employee +homePhone: +1 408 835-4332 +initials: M. N. +mobile: +1 408 909-8045 +pager: +1 408 264-7944 +roomNumber: 9360 +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Migdalia Flanagan +sn: Flanagan +description: This is Migdalia Flanagan's description +facsimileTelephoneNumber: +1 510 438-2145 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 902-1273 +title: Chief Administrative Assistant +userPassword: Password1 +uid: FlanagaM +givenName: Migdalia +mail: FlanagaM@b1bb838cb11c403bbdc958ce4b4c9d2d.bitwarden.com +carLicense: 98NFRD +departmentNumber: 6301 +employeeType: Employee +homePhone: +1 510 382-9511 +initials: M. F. +mobile: +1 510 360-3736 +pager: +1 510 306-9670 +roomNumber: 9393 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emmalee Foods +sn: Foods +description: This is Emmalee Foods's description +facsimileTelephoneNumber: +1 818 425-4116 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 920-7552 +title: Supreme Management Writer +userPassword: Password1 +uid: FoodsE +givenName: Emmalee +mail: FoodsE@74805c1fee3243bbadc8f72d3fd3001a.bitwarden.com +carLicense: NOBJPA +departmentNumber: 1795 +employeeType: Contract +homePhone: +1 818 627-4972 +initials: E. F. +mobile: +1 818 555-4923 +pager: +1 818 673-4058 +roomNumber: 8438 +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edeline Lakhian +sn: Lakhian +description: This is Edeline Lakhian's description +facsimileTelephoneNumber: +1 510 910-4942 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 637-3412 +title: Associate Janitorial Developer +userPassword: Password1 +uid: LakhianE +givenName: Edeline +mail: LakhianE@e52e6f8f31c240f3b4e78172d5b85958.bitwarden.com +carLicense: QRLYHI +departmentNumber: 4235 +employeeType: Employee +homePhone: +1 510 305-8703 +initials: E. L. +mobile: +1 510 160-6460 +pager: +1 510 615-9909 +roomNumber: 9140 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmelina Scully +sn: Scully +description: This is Carmelina Scully's description +facsimileTelephoneNumber: +1 804 265-8495 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 846-5833 +title: Master Payroll Warrior +userPassword: Password1 +uid: ScullyC +givenName: Carmelina +mail: ScullyC@3235f42e984e402081a7536149bf78d7.bitwarden.com +carLicense: GJ8FXH +departmentNumber: 2348 +employeeType: Contract +homePhone: +1 804 656-6650 +initials: C. S. +mobile: +1 804 928-1977 +pager: +1 804 904-4225 +roomNumber: 8891 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shyam Carr +sn: Carr +description: This is Shyam Carr's description +facsimileTelephoneNumber: +1 206 709-2137 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 394-7948 +title: Junior Administrative Janitor +userPassword: Password1 +uid: CarrS +givenName: Shyam +mail: CarrS@49afaf830b95419abf9fc28dbca190f3.bitwarden.com +carLicense: RYBCGF +departmentNumber: 7387 +employeeType: Contract +homePhone: +1 206 439-3179 +initials: S. C. +mobile: +1 206 284-9659 +pager: +1 206 641-5553 +roomNumber: 9090 +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katie Jeska,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katie Jeska +sn: Jeska +description: This is Katie Jeska's description +facsimileTelephoneNumber: +1 804 712-7860 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 762-8032 +title: Chief Human Resources Janitor +userPassword: Password1 +uid: JeskaK +givenName: Katie +mail: JeskaK@64d7ecf288c04c558094c63f6b45f377.bitwarden.com +carLicense: KB7RGC +departmentNumber: 5581 +employeeType: Normal +homePhone: +1 804 856-7375 +initials: K. J. +mobile: +1 804 122-7366 +pager: +1 804 901-8055 +roomNumber: 9719 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Penni Sarto +sn: Sarto +description: This is Penni Sarto's description +facsimileTelephoneNumber: +1 415 169-7041 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 172-5081 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: SartoP +givenName: Penni +mail: SartoP@05ad6fc184974bd39ebbb3184d131d86.bitwarden.com +carLicense: CIM9G9 +departmentNumber: 3455 +employeeType: Normal +homePhone: +1 415 302-9420 +initials: P. S. +mobile: +1 415 313-1201 +pager: +1 415 128-9010 +roomNumber: 8210 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marge Levere +sn: Levere +description: This is Marge Levere's description +facsimileTelephoneNumber: +1 408 257-8838 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 383-3711 +title: Supreme Management Director +userPassword: Password1 +uid: LevereM +givenName: Marge +mail: LevereM@bf2dcabaa08a40c0b50f35192372f0ab.bitwarden.com +carLicense: 1006UA +departmentNumber: 2903 +employeeType: Contract +homePhone: +1 408 537-9919 +initials: M. L. +mobile: +1 408 137-4528 +pager: +1 408 836-6363 +roomNumber: 8596 +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozalia Delolmodiez +sn: Delolmodiez +description: This is Rozalia Delolmodiez's description +facsimileTelephoneNumber: +1 213 951-2757 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 751-1844 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: DelolmoR +givenName: Rozalia +mail: DelolmoR@982161c18d1c4b49bf26a62584cbb202.bitwarden.com +carLicense: BYK25O +departmentNumber: 7087 +employeeType: Normal +homePhone: +1 213 311-7244 +initials: R. D. +mobile: +1 213 643-9867 +pager: +1 213 432-2235 +roomNumber: 9480 +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Konrad Fabijanic +sn: Fabijanic +description: This is Konrad Fabijanic's description +facsimileTelephoneNumber: +1 818 286-4995 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 378-1843 +title: Junior Peons Visionary +userPassword: Password1 +uid: FabijanK +givenName: Konrad +mail: FabijanK@e6bf56fbfb254a10af3f0b967f4bdcb4.bitwarden.com +carLicense: FE4FT8 +departmentNumber: 4284 +employeeType: Normal +homePhone: +1 818 904-3019 +initials: K. F. +mobile: +1 818 268-2669 +pager: +1 818 545-8743 +roomNumber: 9567 +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prity Nikfarjam +sn: Nikfarjam +description: This is Prity Nikfarjam's description +facsimileTelephoneNumber: +1 510 202-5195 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 391-4601 +title: Chief Payroll Admin +userPassword: Password1 +uid: NikfarjP +givenName: Prity +mail: NikfarjP@6e287118b6904f0fb9c650aef9285536.bitwarden.com +carLicense: F3QMT0 +departmentNumber: 4861 +employeeType: Normal +homePhone: +1 510 105-5306 +initials: P. N. +mobile: +1 510 111-4438 +pager: +1 510 960-8479 +roomNumber: 9759 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com + +dn: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colman Epplett +sn: Epplett +description: This is Colman Epplett's description +facsimileTelephoneNumber: +1 213 107-5878 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 213 934-6180 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: EpplettC +givenName: Colman +mail: EpplettC@ab6b4dd3e6a9481bb932dc2b39ad4c1b.bitwarden.com +carLicense: D8BGU8 +departmentNumber: 2883 +employeeType: Employee +homePhone: +1 213 581-6884 +initials: C. E. +mobile: +1 213 752-9822 +pager: +1 213 886-8535 +roomNumber: 8530 +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rama Akhtar +sn: Akhtar +description: This is Rama Akhtar's description +facsimileTelephoneNumber: +1 804 701-4903 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 876-8862 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: AkhtarR +givenName: Rama +mail: AkhtarR@e76e8162b84b46138ec7767983e49241.bitwarden.com +carLicense: GVJFNF +departmentNumber: 1140 +employeeType: Employee +homePhone: +1 804 208-1248 +initials: R. A. +mobile: +1 804 637-7306 +pager: +1 804 111-1625 +roomNumber: 9258 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cari Cuany +sn: Cuany +description: This is Cari Cuany's description +facsimileTelephoneNumber: +1 408 215-7823 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 234-7677 +title: Chief Human Resources Dictator +userPassword: Password1 +uid: CuanyC +givenName: Cari +mail: CuanyC@91416a3afaee4244b90876f4646b52c2.bitwarden.com +carLicense: HVIJTA +departmentNumber: 7042 +employeeType: Contract +homePhone: +1 408 932-8695 +initials: C. C. +mobile: +1 408 794-8803 +pager: +1 408 146-3228 +roomNumber: 9791 +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betteanne Donak +sn: Donak +description: This is Betteanne Donak's description +facsimileTelephoneNumber: +1 804 282-6422 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 470-7102 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: DonakB +givenName: Betteanne +mail: DonakB@1fe7e1be2b764fc8b9d6a489254a78f4.bitwarden.com +carLicense: WVF0LL +departmentNumber: 8542 +employeeType: Employee +homePhone: +1 804 718-1535 +initials: B. D. +mobile: +1 804 116-9626 +pager: +1 804 656-8516 +roomNumber: 9538 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nguyen Jaques +sn: Jaques +description: This is Nguyen Jaques's description +facsimileTelephoneNumber: +1 818 895-6929 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 346-6832 +title: Associate Administrative Punk +userPassword: Password1 +uid: JaquesN +givenName: Nguyen +mail: JaquesN@fda4d4ae921446e0b58dd0cc3cb8d908.bitwarden.com +carLicense: QSH69L +departmentNumber: 2139 +employeeType: Contract +homePhone: +1 818 503-4896 +initials: N. J. +mobile: +1 818 522-8663 +pager: +1 818 582-9451 +roomNumber: 8470 +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobette Sherlock +sn: Sherlock +description: This is Bobette Sherlock's description +facsimileTelephoneNumber: +1 415 682-4625 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 380-8857 +title: Chief Peons Artist +userPassword: Password1 +uid: SherlocB +givenName: Bobette +mail: SherlocB@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com +carLicense: PWYUAG +departmentNumber: 1607 +employeeType: Contract +homePhone: +1 415 703-4306 +initials: B. S. +mobile: +1 415 388-8211 +pager: +1 415 858-2104 +roomNumber: 9919 +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnna DiCosola +sn: DiCosola +description: This is Johnna DiCosola's description +facsimileTelephoneNumber: +1 213 385-6226 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 172-2790 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: DiCosolJ +givenName: Johnna +mail: DiCosolJ@bceb773cb0004bb8a003929876f0fb36.bitwarden.com +carLicense: 7RWCYF +departmentNumber: 1078 +employeeType: Employee +homePhone: +1 213 587-3181 +initials: J. D. +mobile: +1 213 663-9439 +pager: +1 213 553-4918 +roomNumber: 8848 +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barsha Ozmizrak +sn: Ozmizrak +description: This is Barsha Ozmizrak's description +facsimileTelephoneNumber: +1 510 985-3195 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 438-3068 +title: Master Management Evangelist +userPassword: Password1 +uid: OzmizraB +givenName: Barsha +mail: OzmizraB@5427bdee75c245c39f1a2b879610cd11.bitwarden.com +carLicense: BYF93G +departmentNumber: 9876 +employeeType: Normal +homePhone: +1 510 156-4313 +initials: B. O. +mobile: +1 510 557-5043 +pager: +1 510 100-8669 +roomNumber: 8510 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tandi Dao +sn: Dao +description: This is Tandi Dao's description +facsimileTelephoneNumber: +1 206 138-6751 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 494-1956 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: DaoT +givenName: Tandi +mail: DaoT@9b989160bc6d49579fbfc8f1e85ccc6c.bitwarden.com +carLicense: F39U48 +departmentNumber: 2724 +employeeType: Employee +homePhone: +1 206 597-9559 +initials: T. D. +mobile: +1 206 206-8082 +pager: +1 206 833-8322 +roomNumber: 8334 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jackie Bissonnette +sn: Bissonnette +description: This is Jackie Bissonnette's description +facsimileTelephoneNumber: +1 804 942-9913 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 308-8707 +title: Master Peons Punk +userPassword: Password1 +uid: BissonnJ +givenName: Jackie +mail: BissonnJ@26a00bf401bc40aabc0ccf70a3195da2.bitwarden.com +carLicense: KIR13G +departmentNumber: 8859 +employeeType: Employee +homePhone: +1 804 206-5529 +initials: J. B. +mobile: +1 804 852-8767 +pager: +1 804 480-7242 +roomNumber: 9508 +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephen Radvanyi +sn: Radvanyi +description: This is Stephen Radvanyi's description +facsimileTelephoneNumber: +1 415 718-8528 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 238-5088 +title: Supreme Payroll Czar +userPassword: Password1 +uid: RadvanyS +givenName: Stephen +mail: RadvanyS@e6341ae3add343adaa16f2b5badc740f.bitwarden.com +carLicense: IF7WKY +departmentNumber: 1858 +employeeType: Normal +homePhone: +1 415 269-1545 +initials: S. R. +mobile: +1 415 534-1693 +pager: +1 415 212-2502 +roomNumber: 8528 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hinda HowePatterson +sn: HowePatterson +description: This is Hinda HowePatterson's description +facsimileTelephoneNumber: +1 804 280-1698 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 192-2169 +title: Associate Product Testing Figurehead +userPassword: Password1 +uid: HowePatH +givenName: Hinda +mail: HowePatH@523e609eb44e4dad826c580fd26d6d8a.bitwarden.com +carLicense: 8IRNTS +departmentNumber: 8668 +employeeType: Contract +homePhone: +1 804 308-6205 +initials: H. H. +mobile: +1 804 950-9594 +pager: +1 804 492-1222 +roomNumber: 9605 +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margaretta Amott +sn: Amott +description: This is Margaretta Amott's description +facsimileTelephoneNumber: +1 415 795-8121 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 804-4664 +title: Associate Janitorial Manager +userPassword: Password1 +uid: AmottM +givenName: Margaretta +mail: AmottM@9b6ac34e0ff04d81b84f1dd42d147248.bitwarden.com +carLicense: 46RFQM +departmentNumber: 1341 +employeeType: Contract +homePhone: +1 415 610-7890 +initials: M. A. +mobile: +1 415 243-9380 +pager: +1 415 118-4960 +roomNumber: 9998 +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malynda TempleDowning +sn: TempleDowning +description: This is Malynda TempleDowning's description +facsimileTelephoneNumber: +1 818 575-3397 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 983-6031 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: TempleDM +givenName: Malynda +mail: TempleDM@399ec0c914824f4b8aebd42d99e8c0c9.bitwarden.com +carLicense: 2GEGJL +departmentNumber: 2043 +employeeType: Contract +homePhone: +1 818 284-8914 +initials: M. T. +mobile: +1 818 891-7799 +pager: +1 818 632-6339 +roomNumber: 9292 +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yetta Litherland +sn: Litherland +description: This is Yetta Litherland's description +facsimileTelephoneNumber: +1 213 896-2337 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 213 718-1918 +title: Supreme Administrative Czar +userPassword: Password1 +uid: LitherlY +givenName: Yetta +mail: LitherlY@e552a99c6612464e99801fc5eab2cf25.bitwarden.com +carLicense: 2ELDDC +departmentNumber: 7395 +employeeType: Employee +homePhone: +1 213 176-9454 +initials: Y. L. +mobile: +1 213 299-2163 +pager: +1 213 947-2972 +roomNumber: 9564 +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tedi Boothroyd +sn: Boothroyd +description: This is Tedi Boothroyd's description +facsimileTelephoneNumber: +1 213 105-9830 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 230-8417 +title: Associate Product Development Fellow +userPassword: Password1 +uid: BoothroT +givenName: Tedi +mail: BoothroT@7e7d56512878406ba5f19451276eb821.bitwarden.com +carLicense: STVOED +departmentNumber: 5359 +employeeType: Employee +homePhone: +1 213 174-2157 +initials: T. B. +mobile: +1 213 188-2598 +pager: +1 213 294-1766 +roomNumber: 8427 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rubetta Altman +sn: Altman +description: This is Rubetta Altman's description +facsimileTelephoneNumber: +1 408 345-3956 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 366-5972 +title: Supreme Product Development Technician +userPassword: Password1 +uid: AltmanR +givenName: Rubetta +mail: AltmanR@5cab5d1545fd4012a00a0f17162dad39.bitwarden.com +carLicense: 0EE99I +departmentNumber: 5099 +employeeType: Contract +homePhone: +1 408 895-8662 +initials: R. A. +mobile: +1 408 271-3624 +pager: +1 408 610-9532 +roomNumber: 9944 +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LeiSee Plato +sn: Plato +description: This is LeiSee Plato's description +facsimileTelephoneNumber: +1 206 532-3780 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 469-5811 +title: Master Peons Dictator +userPassword: Password1 +uid: PlatoL +givenName: LeiSee +mail: PlatoL@895bfd9f2c6f4f82814cbf2199cfb1f8.bitwarden.com +carLicense: D239U8 +departmentNumber: 4688 +employeeType: Employee +homePhone: +1 206 965-1699 +initials: L. P. +mobile: +1 206 439-9566 +pager: +1 206 932-2881 +roomNumber: 8906 +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fayette Kos +sn: Kos +description: This is Fayette Kos's description +facsimileTelephoneNumber: +1 206 406-8427 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 206 532-4674 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: KosF +givenName: Fayette +mail: KosF@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com +carLicense: 0I1F2S +departmentNumber: 5724 +employeeType: Contract +homePhone: +1 206 594-6397 +initials: F. K. +mobile: +1 206 615-5926 +pager: +1 206 777-7076 +roomNumber: 8805 +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Redgie Craycraft +sn: Craycraft +description: This is Redgie Craycraft's description +facsimileTelephoneNumber: +1 206 732-7915 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 705-3471 +title: Associate Human Resources Punk +userPassword: Password1 +uid: CraycraR +givenName: Redgie +mail: CraycraR@68e2448e6be24959a88911c23cb3d4b4.bitwarden.com +carLicense: EGL59S +departmentNumber: 9664 +employeeType: Employee +homePhone: +1 206 452-5370 +initials: R. C. +mobile: +1 206 181-3928 +pager: +1 206 836-6719 +roomNumber: 8707 +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginette Vilis +sn: Vilis +description: This is Ginette Vilis's description +facsimileTelephoneNumber: +1 408 559-8994 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 874-1699 +title: Junior Peons Figurehead +userPassword: Password1 +uid: VilisG +givenName: Ginette +mail: VilisG@77eb010514ae421883af972518c1a82e.bitwarden.com +carLicense: YLITAO +departmentNumber: 5168 +employeeType: Contract +homePhone: +1 408 895-2119 +initials: G. V. +mobile: +1 408 116-3265 +pager: +1 408 772-8100 +roomNumber: 9106 +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorelle Ladymon +sn: Ladymon +description: This is Lorelle Ladymon's description +facsimileTelephoneNumber: +1 408 546-4373 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 525-2935 +title: Junior Peons Architect +userPassword: Password1 +uid: LadymonL +givenName: Lorelle +mail: LadymonL@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com +carLicense: TOG0G5 +departmentNumber: 7290 +employeeType: Normal +homePhone: +1 408 565-4887 +initials: L. L. +mobile: +1 408 155-6474 +pager: +1 408 303-7669 +roomNumber: 8297 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Behnam Cairns +sn: Cairns +description: This is Behnam Cairns's description +facsimileTelephoneNumber: +1 804 285-1839 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 527-5993 +title: Junior Management Grunt +userPassword: Password1 +uid: CairnsB +givenName: Behnam +mail: CairnsB@ad4942d8c3c341119939c679c4dae154.bitwarden.com +carLicense: HV039H +departmentNumber: 1775 +employeeType: Normal +homePhone: +1 804 966-4163 +initials: B. C. +mobile: +1 804 243-8365 +pager: +1 804 160-1482 +roomNumber: 8560 +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othella McGrath +sn: McGrath +description: This is Othella McGrath's description +facsimileTelephoneNumber: +1 213 986-8613 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 246-7788 +title: Chief Janitorial Visionary +userPassword: Password1 +uid: McGrathO +givenName: Othella +mail: McGrathO@e90e000c44ce4d4ea0b0d2e2fa3e3a2f.bitwarden.com +carLicense: WEXY49 +departmentNumber: 6105 +employeeType: Contract +homePhone: +1 213 385-9848 +initials: O. M. +mobile: +1 213 630-5230 +pager: +1 213 814-5260 +roomNumber: 9740 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minnnie Hough +sn: Hough +description: This is Minnnie Hough's description +facsimileTelephoneNumber: +1 206 348-6954 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 179-5913 +title: Associate Product Development Dictator +userPassword: Password1 +uid: HoughM +givenName: Minnnie +mail: HoughM@3ecb1c63de854804b4e8af1966a28c00.bitwarden.com +carLicense: KPN0GV +departmentNumber: 9731 +employeeType: Contract +homePhone: +1 206 575-6352 +initials: M. H. +mobile: +1 206 693-8819 +pager: +1 206 234-4969 +roomNumber: 8901 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darci Glasgow +sn: Glasgow +description: This is Darci Glasgow's description +facsimileTelephoneNumber: +1 206 370-5820 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 998-5811 +title: Associate Human Resources Architect +userPassword: Password1 +uid: GlasgowD +givenName: Darci +mail: GlasgowD@66d6a653ea384626bd4c52723439804a.bitwarden.com +carLicense: BTFWKY +departmentNumber: 7278 +employeeType: Employee +homePhone: +1 206 152-2451 +initials: D. G. +mobile: +1 206 670-1387 +pager: +1 206 303-4916 +roomNumber: 8296 +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franz Kosasih +sn: Kosasih +description: This is Franz Kosasih's description +facsimileTelephoneNumber: +1 804 607-9775 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 492-4965 +title: Associate Administrative Developer +userPassword: Password1 +uid: KosasihF +givenName: Franz +mail: KosasihF@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com +carLicense: 501K62 +departmentNumber: 4474 +employeeType: Employee +homePhone: +1 804 505-4586 +initials: F. K. +mobile: +1 804 220-5844 +pager: +1 804 505-7128 +roomNumber: 8119 +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Four Savarimuthu +sn: Savarimuthu +description: This is Four Savarimuthu's description +facsimileTelephoneNumber: +1 213 498-5393 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 327-1252 +title: Chief Human Resources Czar +userPassword: Password1 +uid: SavarimF +givenName: Four +mail: SavarimF@2c5e9a0ea53e4c3488f28ebc0a631b01.bitwarden.com +carLicense: 7NKOTY +departmentNumber: 5921 +employeeType: Employee +homePhone: +1 213 430-6684 +initials: F. S. +mobile: +1 213 155-5851 +pager: +1 213 406-5754 +roomNumber: 9231 +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zonda Keyes +sn: Keyes +description: This is Zonda Keyes's description +facsimileTelephoneNumber: +1 206 713-8227 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 666-4257 +title: Associate Management Manager +userPassword: Password1 +uid: KeyesZ +givenName: Zonda +mail: KeyesZ@73df9726f63046799112335cf0c61cd9.bitwarden.com +carLicense: 3G4OJJ +departmentNumber: 2220 +employeeType: Contract +homePhone: +1 206 626-6836 +initials: Z. K. +mobile: +1 206 975-9655 +pager: +1 206 272-4969 +roomNumber: 9031 +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vicheara Claybrook +sn: Claybrook +description: This is Vicheara Claybrook's description +facsimileTelephoneNumber: +1 415 749-6795 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 371-5842 +title: Supreme Janitorial Sales Rep +userPassword: Password1 +uid: ClaybroV +givenName: Vicheara +mail: ClaybroV@5c3854c0e45246a0b3fb22153a7146d3.bitwarden.com +carLicense: BFQUD8 +departmentNumber: 5481 +employeeType: Normal +homePhone: +1 415 441-7108 +initials: V. C. +mobile: +1 415 574-3356 +pager: +1 415 626-6640 +roomNumber: 8923 +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Iwona Eicher +sn: Eicher +description: This is Iwona Eicher's description +facsimileTelephoneNumber: +1 510 102-5094 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 964-1439 +title: Junior Product Development Warrior +userPassword: Password1 +uid: EicherI +givenName: Iwona +mail: EicherI@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com +carLicense: 09300K +departmentNumber: 7049 +employeeType: Normal +homePhone: +1 510 883-7603 +initials: I. E. +mobile: +1 510 132-8819 +pager: +1 510 969-3941 +roomNumber: 8141 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marinna Rabjohn +sn: Rabjohn +description: This is Marinna Rabjohn's description +facsimileTelephoneNumber: +1 408 281-8482 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 772-7225 +title: Junior Janitorial Architect +userPassword: Password1 +uid: RabjohnM +givenName: Marinna +mail: RabjohnM@9f370afe60bb4f1ab01d1df2abbe72ba.bitwarden.com +carLicense: TXMVFF +departmentNumber: 7713 +employeeType: Employee +homePhone: +1 408 105-1852 +initials: M. R. +mobile: +1 408 738-2783 +pager: +1 408 130-9719 +roomNumber: 9291 +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hugo Baltodano +sn: Baltodano +description: This is Hugo Baltodano's description +facsimileTelephoneNumber: +1 415 662-5224 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 526-1457 +title: Master Administrative Mascot +userPassword: Password1 +uid: BaltodaH +givenName: Hugo +mail: BaltodaH@78bfa2e0c44e45a08260250819c1abe3.bitwarden.com +carLicense: JYKGVU +departmentNumber: 4649 +employeeType: Employee +homePhone: +1 415 664-2240 +initials: H. B. +mobile: +1 415 167-5741 +pager: +1 415 475-5988 +roomNumber: 8651 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karyl Jiang +sn: Jiang +description: This is Karyl Jiang's description +facsimileTelephoneNumber: +1 804 713-6011 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 677-2860 +title: Junior Human Resources Admin +userPassword: Password1 +uid: JiangK +givenName: Karyl +mail: JiangK@536233742e094d32a93b46e75cbb8e9e.bitwarden.com +carLicense: RJWRJV +departmentNumber: 5073 +employeeType: Contract +homePhone: +1 804 948-8672 +initials: K. J. +mobile: +1 804 650-1985 +pager: +1 804 397-4330 +roomNumber: 9477 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KumMeng Dover +sn: Dover +description: This is KumMeng Dover's description +facsimileTelephoneNumber: +1 415 161-3560 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 232-8966 +title: Junior Administrative Fellow +userPassword: Password1 +uid: DoverK +givenName: KumMeng +mail: DoverK@b381db8c81ea4ed2b9296ea4988780aa.bitwarden.com +carLicense: WP01VW +departmentNumber: 5649 +employeeType: Contract +homePhone: +1 415 914-9733 +initials: K. D. +mobile: +1 415 102-3650 +pager: +1 415 684-2071 +roomNumber: 9279 +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Homa Brownlee +sn: Brownlee +description: This is Homa Brownlee's description +facsimileTelephoneNumber: +1 213 213-2639 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 102-4484 +title: Junior Product Testing Evangelist +userPassword: Password1 +uid: BrownleH +givenName: Homa +mail: BrownleH@4897906c5be74769a474a0be126fe831.bitwarden.com +carLicense: UF3J2V +departmentNumber: 3722 +employeeType: Contract +homePhone: +1 213 526-1118 +initials: H. B. +mobile: +1 213 159-5562 +pager: +1 213 961-7620 +roomNumber: 9438 +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nonna Jensenworth +sn: Jensenworth +description: This is Nonna Jensenworth's description +facsimileTelephoneNumber: +1 213 322-6671 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 909-3899 +title: Junior Human Resources Stooge +userPassword: Password1 +uid: JensenwN +givenName: Nonna +mail: JensenwN@8dadc7ef65624c618ad03f0f74792b58.bitwarden.com +carLicense: 67HSX7 +departmentNumber: 2149 +employeeType: Normal +homePhone: +1 213 711-2679 +initials: N. J. +mobile: +1 213 115-3355 +pager: +1 213 795-2556 +roomNumber: 9018 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pansie Jemczyk +sn: Jemczyk +description: This is Pansie Jemczyk's description +facsimileTelephoneNumber: +1 818 619-4563 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 599-5525 +title: Junior Product Development Figurehead +userPassword: Password1 +uid: JemczykP +givenName: Pansie +mail: JemczykP@8cd5207192cc415ba684b6325051ff04.bitwarden.com +carLicense: AXJ47E +departmentNumber: 7048 +employeeType: Employee +homePhone: +1 818 637-3733 +initials: P. J. +mobile: +1 818 932-9588 +pager: +1 818 741-6219 +roomNumber: 9041 +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tianbao Cemensky +sn: Cemensky +description: This is Tianbao Cemensky's description +facsimileTelephoneNumber: +1 213 763-2560 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 751-7495 +title: Master Management Figurehead +userPassword: Password1 +uid: CemenskT +givenName: Tianbao +mail: CemenskT@f356b9ffcffb4ac98d745b6fe117b574.bitwarden.com +carLicense: 8G3XUG +departmentNumber: 4011 +employeeType: Employee +homePhone: +1 213 592-2564 +initials: T. C. +mobile: +1 213 348-5662 +pager: +1 213 851-1242 +roomNumber: 9017 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meggy Jansen +sn: Jansen +description: This is Meggy Jansen's description +facsimileTelephoneNumber: +1 415 883-7835 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 401-2251 +title: Junior Janitorial Admin +userPassword: Password1 +uid: JansenM +givenName: Meggy +mail: JansenM@5e943e5d6d7b48d9af98d3041b109570.bitwarden.com +carLicense: AS8WUV +departmentNumber: 6120 +employeeType: Employee +homePhone: +1 415 637-1184 +initials: M. J. +mobile: +1 415 384-2277 +pager: +1 415 322-9033 +roomNumber: 9985 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thad Bertram +sn: Bertram +description: This is Thad Bertram's description +facsimileTelephoneNumber: +1 206 492-5781 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 629-4485 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: BertramT +givenName: Thad +mail: BertramT@87217c69784645aaa23bd55d67419f7d.bitwarden.com +carLicense: 3DII8G +departmentNumber: 3550 +employeeType: Normal +homePhone: +1 206 665-6506 +initials: T. B. +mobile: +1 206 733-2786 +pager: +1 206 286-2478 +roomNumber: 8040 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dallas Gulick +sn: Gulick +description: This is Dallas Gulick's description +facsimileTelephoneNumber: +1 804 230-6997 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 465-5147 +title: Junior Management Grunt +userPassword: Password1 +uid: GulickD +givenName: Dallas +mail: GulickD@e24249e5021b459b98fb73b4ee245cd6.bitwarden.com +carLicense: QALESK +departmentNumber: 1847 +employeeType: Employee +homePhone: +1 804 198-6586 +initials: D. G. +mobile: +1 804 990-3006 +pager: +1 804 488-9984 +roomNumber: 9654 +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marna Kindem +sn: Kindem +description: This is Marna Kindem's description +facsimileTelephoneNumber: +1 415 405-6222 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 125-2595 +title: Associate Peons Technician +userPassword: Password1 +uid: KindemM +givenName: Marna +mail: KindemM@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com +carLicense: X4B4W3 +departmentNumber: 3863 +employeeType: Employee +homePhone: +1 415 520-3837 +initials: M. K. +mobile: +1 415 553-8686 +pager: +1 415 858-3930 +roomNumber: 9091 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denny Worpell +sn: Worpell +description: This is Denny Worpell's description +facsimileTelephoneNumber: +1 213 839-5176 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 767-7149 +title: Supreme Management Assistant +userPassword: Password1 +uid: WorpellD +givenName: Denny +mail: WorpellD@d323371cf0d149c19d396f6a749e3098.bitwarden.com +carLicense: 43QB40 +departmentNumber: 5706 +employeeType: Contract +homePhone: +1 213 681-8541 +initials: D. W. +mobile: +1 213 513-3900 +pager: +1 213 282-1496 +roomNumber: 8930 +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tanitansy Thibon +sn: Thibon +description: This is Tanitansy Thibon's description +facsimileTelephoneNumber: +1 415 161-9887 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 604-9279 +title: Associate Management Consultant +userPassword: Password1 +uid: ThibonT +givenName: Tanitansy +mail: ThibonT@864d7fffc05349a6937099b5cb95ba17.bitwarden.com +carLicense: N5IXN9 +departmentNumber: 1508 +employeeType: Contract +homePhone: +1 415 934-3357 +initials: T. T. +mobile: +1 415 380-7065 +pager: +1 415 909-2388 +roomNumber: 9648 +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koray Vasiliadis +sn: Vasiliadis +description: This is Koray Vasiliadis's description +facsimileTelephoneNumber: +1 510 989-7858 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 510 741-6075 +title: Master Peons Sales Rep +userPassword: Password1 +uid: VasiliaK +givenName: Koray +mail: VasiliaK@b08a31b6db4d4d2a9a1e1fd91f822e32.bitwarden.com +carLicense: 2GCWCL +departmentNumber: 6322 +employeeType: Normal +homePhone: +1 510 274-6643 +initials: K. V. +mobile: +1 510 645-1509 +pager: +1 510 666-1175 +roomNumber: 8509 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ettie Sils +sn: Sils +description: This is Ettie Sils's description +facsimileTelephoneNumber: +1 213 293-3708 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 687-8215 +title: Junior Management Figurehead +userPassword: Password1 +uid: SilsE +givenName: Ettie +mail: SilsE@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com +carLicense: 7GF2UN +departmentNumber: 8198 +employeeType: Contract +homePhone: +1 213 702-7496 +initials: E. S. +mobile: +1 213 936-3036 +pager: +1 213 988-7273 +roomNumber: 9350 +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daffy Kollmorgen +sn: Kollmorgen +description: This is Daffy Kollmorgen's description +facsimileTelephoneNumber: +1 206 692-7188 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 200-4986 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: KollmorD +givenName: Daffy +mail: KollmorD@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com +carLicense: 0MGWXB +departmentNumber: 3423 +employeeType: Normal +homePhone: +1 206 624-5398 +initials: D. K. +mobile: +1 206 818-4766 +pager: +1 206 687-5057 +roomNumber: 8093 +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Millard Tromm +sn: Tromm +description: This is Millard Tromm's description +facsimileTelephoneNumber: +1 510 283-4113 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 765-3255 +title: Associate Human Resources Manager +userPassword: Password1 +uid: TrommM +givenName: Millard +mail: TrommM@364738d989114590842291a79ecffd92.bitwarden.com +carLicense: XEKER1 +departmentNumber: 3354 +employeeType: Contract +homePhone: +1 510 655-8225 +initials: M. T. +mobile: +1 510 547-8177 +pager: +1 510 455-9449 +roomNumber: 9219 +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rycca Zolmer +sn: Zolmer +description: This is Rycca Zolmer's description +facsimileTelephoneNumber: +1 415 890-5667 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 221-6563 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: ZolmerR +givenName: Rycca +mail: ZolmerR@f53717c4000348b2a1cde8b0fde1aa1a.bitwarden.com +carLicense: 58PR50 +departmentNumber: 8597 +employeeType: Employee +homePhone: +1 415 774-6824 +initials: R. Z. +mobile: +1 415 775-4446 +pager: +1 415 611-2336 +roomNumber: 9413 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merlina Benschop +sn: Benschop +description: This is Merlina Benschop's description +facsimileTelephoneNumber: +1 804 516-1738 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 346-7617 +title: Junior Peons Warrior +userPassword: Password1 +uid: BenschoM +givenName: Merlina +mail: BenschoM@113ea99347684507857d63f3c383c84e.bitwarden.com +carLicense: WR6KBF +departmentNumber: 9905 +employeeType: Employee +homePhone: +1 804 935-1131 +initials: M. B. +mobile: +1 804 229-2131 +pager: +1 804 352-6113 +roomNumber: 9586 +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shanna Bourgon +sn: Bourgon +description: This is Shanna Bourgon's description +facsimileTelephoneNumber: +1 408 971-4004 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 705-7856 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: BourgonS +givenName: Shanna +mail: BourgonS@2f60971fa268439caffee9f84b2be8cb.bitwarden.com +carLicense: A4JYOD +departmentNumber: 7231 +employeeType: Contract +homePhone: +1 408 528-3274 +initials: S. B. +mobile: +1 408 977-1751 +pager: +1 408 701-4742 +roomNumber: 8579 +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liza Gumb +sn: Gumb +description: This is Liza Gumb's description +facsimileTelephoneNumber: +1 415 157-3465 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 823-9012 +title: Associate Management Dictator +userPassword: Password1 +uid: GumbL +givenName: Liza +mail: GumbL@eb1e32d5d45a4fa98044c369dbe415f8.bitwarden.com +carLicense: 4BMCC6 +departmentNumber: 7242 +employeeType: Contract +homePhone: +1 415 579-8056 +initials: L. G. +mobile: +1 415 817-6411 +pager: +1 415 905-1633 +roomNumber: 8921 +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gokul Livingstone +sn: Livingstone +description: This is Gokul Livingstone's description +facsimileTelephoneNumber: +1 818 591-5381 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 818 292-5014 +title: Associate Product Development Stooge +userPassword: Password1 +uid: LivingsG +givenName: Gokul +mail: LivingsG@e62346e3a4bc49f8a310562753f43a8b.bitwarden.com +carLicense: TD7HQ0 +departmentNumber: 4123 +employeeType: Employee +homePhone: +1 818 136-3342 +initials: G. L. +mobile: +1 818 492-8368 +pager: +1 818 887-2313 +roomNumber: 9698 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jamison Hines,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jamison Hines +sn: Hines +description: This is Jamison Hines's description +facsimileTelephoneNumber: +1 408 195-1935 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 297-6644 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: HinesJ +givenName: Jamison +mail: HinesJ@1461dbc17b9c4f428daab775690e9506.bitwarden.com +carLicense: EPT0BX +departmentNumber: 5554 +employeeType: Employee +homePhone: +1 408 651-2301 +initials: J. H. +mobile: +1 408 523-1779 +pager: +1 408 383-6135 +roomNumber: 9532 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clem Bongers +sn: Bongers +description: This is Clem Bongers's description +facsimileTelephoneNumber: +1 804 925-8753 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 804 901-2547 +title: Associate Human Resources Director +userPassword: Password1 +uid: BongersC +givenName: Clem +mail: BongersC@9fa42e4f0ec04b66b2fd5c843402ebd1.bitwarden.com +carLicense: TREUFO +departmentNumber: 8917 +employeeType: Employee +homePhone: +1 804 974-1961 +initials: C. B. +mobile: +1 804 439-8719 +pager: +1 804 137-3094 +roomNumber: 9878 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vina McKie +sn: McKie +description: This is Vina McKie's description +facsimileTelephoneNumber: +1 804 460-1096 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 207-3024 +title: Master Payroll Visionary +userPassword: Password1 +uid: McKieV +givenName: Vina +mail: McKieV@04f2dffe06bf4234900a9cc4318bfe61.bitwarden.com +carLicense: G9K6PH +departmentNumber: 4584 +employeeType: Contract +homePhone: +1 804 247-7846 +initials: V. M. +mobile: +1 804 101-5665 +pager: +1 804 958-3293 +roomNumber: 8971 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duc Dinalic +sn: Dinalic +description: This is Duc Dinalic's description +facsimileTelephoneNumber: +1 510 264-2932 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 510 915-9343 +title: Junior Management Mascot +userPassword: Password1 +uid: DinalicD +givenName: Duc +mail: DinalicD@64c2fa20001b495182e976975782823e.bitwarden.com +carLicense: MXUA1I +departmentNumber: 6721 +employeeType: Contract +homePhone: +1 510 767-9185 +initials: D. D. +mobile: +1 510 203-3595 +pager: +1 510 722-8445 +roomNumber: 9457 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gena Lawther +sn: Lawther +description: This is Gena Lawther's description +facsimileTelephoneNumber: +1 408 307-7128 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 746-3604 +title: Chief Management Czar +userPassword: Password1 +uid: LawtherG +givenName: Gena +mail: LawtherG@dbbc0930b0d2479ca97fea1080c3afcd.bitwarden.com +carLicense: CHX0F3 +departmentNumber: 5803 +employeeType: Employee +homePhone: +1 408 537-5817 +initials: G. L. +mobile: +1 408 369-5945 +pager: +1 408 859-3275 +roomNumber: 9280 +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HooiLee Bourgon +sn: Bourgon +description: This is HooiLee Bourgon's description +facsimileTelephoneNumber: +1 510 260-7181 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 306-3007 +title: Supreme Peons Assistant +userPassword: Password1 +uid: BourgonH +givenName: HooiLee +mail: BourgonH@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com +carLicense: XK5TVB +departmentNumber: 7263 +employeeType: Contract +homePhone: +1 510 884-5547 +initials: H. B. +mobile: +1 510 375-6901 +pager: +1 510 696-6138 +roomNumber: 8869 +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teresa Kenkel +sn: Kenkel +description: This is Teresa Kenkel's description +facsimileTelephoneNumber: +1 818 436-6021 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 818 272-4206 +title: Supreme Payroll Figurehead +userPassword: Password1 +uid: KenkelT +givenName: Teresa +mail: KenkelT@e3d22003ed4443a89482f00559e86e88.bitwarden.com +carLicense: SXLM6W +departmentNumber: 4417 +employeeType: Normal +homePhone: +1 818 613-1436 +initials: T. K. +mobile: +1 818 494-9885 +pager: +1 818 503-3829 +roomNumber: 9014 +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marin Suprick +sn: Suprick +description: This is Marin Suprick's description +facsimileTelephoneNumber: +1 818 578-3825 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 356-9900 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: SuprickM +givenName: Marin +mail: SuprickM@85be5888418240a8880dd2671e654a34.bitwarden.com +carLicense: 716QE7 +departmentNumber: 4291 +employeeType: Normal +homePhone: +1 818 465-5773 +initials: M. S. +mobile: +1 818 615-5501 +pager: +1 818 957-3938 +roomNumber: 9261 +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Attilio Bullett +sn: Bullett +description: This is Attilio Bullett's description +facsimileTelephoneNumber: +1 408 600-7625 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 367-3813 +title: Master Product Testing Dictator +userPassword: Password1 +uid: BullettA +givenName: Attilio +mail: BullettA@101b8efea162489cbe4b00acbe71ea5a.bitwarden.com +carLicense: NEPMSU +departmentNumber: 9857 +employeeType: Employee +homePhone: +1 408 474-9243 +initials: A. B. +mobile: +1 408 100-9665 +pager: +1 408 946-4883 +roomNumber: 9732 +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blake Skerry +sn: Skerry +description: This is Blake Skerry's description +facsimileTelephoneNumber: +1 206 707-7008 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 206 927-9132 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: SkerryB +givenName: Blake +mail: SkerryB@4a47eda5b0994d6aac96fd9eb9bf327f.bitwarden.com +carLicense: 6I15E6 +departmentNumber: 5970 +employeeType: Normal +homePhone: +1 206 154-3689 +initials: B. S. +mobile: +1 206 830-9122 +pager: +1 206 882-1181 +roomNumber: 8710 +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amir McColman +sn: McColman +description: This is Amir McColman's description +facsimileTelephoneNumber: +1 415 503-6566 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 770-6946 +title: Master Management Czar +userPassword: Password1 +uid: McColmaA +givenName: Amir +mail: McColmaA@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com +carLicense: EWUPGE +departmentNumber: 5146 +employeeType: Normal +homePhone: +1 415 395-5522 +initials: A. M. +mobile: +1 415 883-7735 +pager: +1 415 592-5911 +roomNumber: 9489 +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fiore Ambroise +sn: Ambroise +description: This is Fiore Ambroise's description +facsimileTelephoneNumber: +1 804 478-7679 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 658-3922 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: AmbroisF +givenName: Fiore +mail: AmbroisF@c1fb4f6fb6854ac09da830fa08bf174b.bitwarden.com +carLicense: 5HA3YN +departmentNumber: 1824 +employeeType: Normal +homePhone: +1 804 612-6672 +initials: F. A. +mobile: +1 804 433-8762 +pager: +1 804 636-1415 +roomNumber: 9826 +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minne Danker +sn: Danker +description: This is Minne Danker's description +facsimileTelephoneNumber: +1 510 329-5425 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 584-5495 +title: Chief Management Manager +userPassword: Password1 +uid: DankerM +givenName: Minne +mail: DankerM@7e7d56512878406ba5f19451276eb821.bitwarden.com +carLicense: OIW041 +departmentNumber: 5688 +employeeType: Employee +homePhone: +1 510 663-4799 +initials: M. D. +mobile: +1 510 974-2336 +pager: +1 510 823-7622 +roomNumber: 9050 +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rizzo Irick +sn: Irick +description: This is Rizzo Irick's description +facsimileTelephoneNumber: +1 206 789-5209 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 239-9247 +title: Junior Human Resources Stooge +userPassword: Password1 +uid: IrickR +givenName: Rizzo +mail: IrickR@a762ad5f7ab94a82ae700785cde02626.bitwarden.com +carLicense: UF9MO7 +departmentNumber: 7630 +employeeType: Contract +homePhone: +1 206 472-2207 +initials: R. I. +mobile: +1 206 841-5732 +pager: +1 206 650-5724 +roomNumber: 9525 +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyb Biedermann +sn: Biedermann +description: This is Cyb Biedermann's description +facsimileTelephoneNumber: +1 206 821-8571 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 206 924-8967 +title: Chief Product Testing Engineer +userPassword: Password1 +uid: BiedermC +givenName: Cyb +mail: BiedermC@ccf238ac72764498a2a4e871140940fd.bitwarden.com +carLicense: XGFHVV +departmentNumber: 1997 +employeeType: Contract +homePhone: +1 206 846-3060 +initials: C. B. +mobile: +1 206 254-7146 +pager: +1 206 557-9600 +roomNumber: 9771 +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nobuko Zureik +sn: Zureik +description: This is Nobuko Zureik's description +facsimileTelephoneNumber: +1 804 950-6048 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 246-9182 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: ZureikN +givenName: Nobuko +mail: ZureikN@32cbfafe741b446491d67cea0d5c681a.bitwarden.com +carLicense: 1V83NY +departmentNumber: 5376 +employeeType: Contract +homePhone: +1 804 421-5299 +initials: N. Z. +mobile: +1 804 746-7010 +pager: +1 804 386-7818 +roomNumber: 8315 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Syl Hughes +sn: Hughes +description: This is Syl Hughes's description +facsimileTelephoneNumber: +1 415 609-3170 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 602-5979 +title: Supreme Management President +userPassword: Password1 +uid: HughesS +givenName: Syl +mail: HughesS@29d43cca18a84193868799ddbf3f9a87.bitwarden.com +carLicense: 59M8B8 +departmentNumber: 7423 +employeeType: Contract +homePhone: +1 415 748-4939 +initials: S. H. +mobile: +1 415 373-4916 +pager: +1 415 688-4120 +roomNumber: 9166 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jagat Beato +sn: Beato +description: This is Jagat Beato's description +facsimileTelephoneNumber: +1 415 787-3632 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 193-2971 +title: Junior Peons Stooge +userPassword: Password1 +uid: BeatoJ +givenName: Jagat +mail: BeatoJ@cb0fd14a62264345a0844bec81676fd8.bitwarden.com +carLicense: TLUCKH +departmentNumber: 4505 +employeeType: Contract +homePhone: +1 415 544-7601 +initials: J. B. +mobile: +1 415 538-3194 +pager: +1 415 345-8156 +roomNumber: 9673 +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Masood Tomassi +sn: Tomassi +description: This is Masood Tomassi's description +facsimileTelephoneNumber: +1 408 137-5902 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 161-4969 +title: Associate Payroll Admin +userPassword: Password1 +uid: TomassiM +givenName: Masood +mail: TomassiM@f38a9d14e36244e8ae609b15157f60d2.bitwarden.com +carLicense: AN1ESV +departmentNumber: 3767 +employeeType: Contract +homePhone: +1 408 602-3277 +initials: M. T. +mobile: +1 408 485-4093 +pager: +1 408 865-8666 +roomNumber: 8914 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subhash Dachelet +sn: Dachelet +description: This is Subhash Dachelet's description +facsimileTelephoneNumber: +1 415 174-9611 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 238-1995 +title: Master Janitorial Punk +userPassword: Password1 +uid: DacheleS +givenName: Subhash +mail: DacheleS@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com +carLicense: TYGVXV +departmentNumber: 6091 +employeeType: Normal +homePhone: +1 415 103-2331 +initials: S. D. +mobile: +1 415 765-8117 +pager: +1 415 665-3454 +roomNumber: 8525 +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shamsia Mincey +sn: Mincey +description: This is Shamsia Mincey's description +facsimileTelephoneNumber: +1 415 383-1966 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 773-1661 +title: Junior Peons Visionary +userPassword: Password1 +uid: MinceyS +givenName: Shamsia +mail: MinceyS@a3cc15e6ac3a471cb783c4563846998f.bitwarden.com +carLicense: I3WAAV +departmentNumber: 4070 +employeeType: Normal +homePhone: +1 415 427-4157 +initials: S. M. +mobile: +1 415 423-9739 +pager: +1 415 946-8613 +roomNumber: 9988 +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacey Dittburner +sn: Dittburner +description: This is Stacey Dittburner's description +facsimileTelephoneNumber: +1 415 497-2292 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 876-6662 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: DittburS +givenName: Stacey +mail: DittburS@8c2946e2ae1e4ec0a1e9edd05301d704.bitwarden.com +carLicense: JFV0CY +departmentNumber: 1005 +employeeType: Contract +homePhone: +1 415 249-7426 +initials: S. D. +mobile: +1 415 750-1228 +pager: +1 415 960-9725 +roomNumber: 8794 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LeiSee Goodwin +sn: Goodwin +description: This is LeiSee Goodwin's description +facsimileTelephoneNumber: +1 408 885-4132 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 390-8313 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: GoodwinL +givenName: LeiSee +mail: GoodwinL@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com +carLicense: 6GAFHK +departmentNumber: 6311 +employeeType: Employee +homePhone: +1 408 371-2613 +initials: L. G. +mobile: +1 408 380-5878 +pager: +1 408 345-1444 +roomNumber: 8065 +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tove Goodridge +sn: Goodridge +description: This is Tove Goodridge's description +facsimileTelephoneNumber: +1 213 225-7541 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 306-9950 +title: Junior Payroll Mascot +userPassword: Password1 +uid: GoodridT +givenName: Tove +mail: GoodridT@b566534e0b1f46eaaa1ea84025fc6d78.bitwarden.com +carLicense: O74BY5 +departmentNumber: 5282 +employeeType: Contract +homePhone: +1 213 797-3637 +initials: T. G. +mobile: +1 213 379-3105 +pager: +1 213 488-4942 +roomNumber: 9579 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elberta Incze +sn: Incze +description: This is Elberta Incze's description +facsimileTelephoneNumber: +1 213 225-4682 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 351-2183 +title: Master Management Manager +userPassword: Password1 +uid: InczeE +givenName: Elberta +mail: InczeE@5cf57c701a8d46aa885749d2ca77c6a3.bitwarden.com +carLicense: 323FW2 +departmentNumber: 5801 +employeeType: Contract +homePhone: +1 213 946-6990 +initials: E. I. +mobile: +1 213 168-3243 +pager: +1 213 924-8301 +roomNumber: 9709 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobinette Belboul +sn: Belboul +description: This is Bobinette Belboul's description +facsimileTelephoneNumber: +1 510 528-4096 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 566-8434 +title: Associate Peons Artist +userPassword: Password1 +uid: BelboulB +givenName: Bobinette +mail: BelboulB@f29767cb71284b6995c0c1e79eecbc92.bitwarden.com +carLicense: 7F5EMD +departmentNumber: 4167 +employeeType: Contract +homePhone: +1 510 122-4140 +initials: B. B. +mobile: +1 510 381-4871 +pager: +1 510 432-1558 +roomNumber: 8837 +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynna Elsing +sn: Elsing +description: This is Lynna Elsing's description +facsimileTelephoneNumber: +1 408 807-1698 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 918-5758 +title: Master Product Development Punk +userPassword: Password1 +uid: ElsingL +givenName: Lynna +mail: ElsingL@b9d4bc3408874c868cfc03e30b01af48.bitwarden.com +carLicense: 2U3PSY +departmentNumber: 2800 +employeeType: Normal +homePhone: +1 408 910-8431 +initials: L. E. +mobile: +1 408 851-3642 +pager: +1 408 232-7268 +roomNumber: 8705 +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ioana Bresee +sn: Bresee +description: This is Ioana Bresee's description +facsimileTelephoneNumber: +1 213 242-2385 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 268-9929 +title: Junior Peons Developer +userPassword: Password1 +uid: BreseeI +givenName: Ioana +mail: BreseeI@25209ef0bef9422ba827a4158c5d2eb7.bitwarden.com +carLicense: TYKJ9C +departmentNumber: 7929 +employeeType: Employee +homePhone: +1 213 803-6274 +initials: I. B. +mobile: +1 213 263-4455 +pager: +1 213 931-4884 +roomNumber: 8460 +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kentaro Farrell +sn: Farrell +description: This is Kentaro Farrell's description +facsimileTelephoneNumber: +1 510 716-7922 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 380-6696 +title: Chief Janitorial Sales Rep +userPassword: Password1 +uid: FarrellK +givenName: Kentaro +mail: FarrellK@4e073aa3a1c84fccb5d5f011b1fd7a56.bitwarden.com +carLicense: 0OMWYW +departmentNumber: 9589 +employeeType: Normal +homePhone: +1 510 804-9235 +initials: K. F. +mobile: +1 510 126-2356 +pager: +1 510 165-1488 +roomNumber: 8711 +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seanna Lasher +sn: Lasher +description: This is Seanna Lasher's description +facsimileTelephoneNumber: +1 206 977-2990 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 206 797-4753 +title: Supreme Payroll Czar +userPassword: Password1 +uid: LasherS +givenName: Seanna +mail: LasherS@2c4a787e446b470797a2c3a15157473d.bitwarden.com +carLicense: U5WMLS +departmentNumber: 7862 +employeeType: Employee +homePhone: +1 206 103-2042 +initials: S. L. +mobile: +1 206 548-3027 +pager: +1 206 254-5718 +roomNumber: 8506 +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pittsburgh Michael +sn: Michael +description: This is Pittsburgh Michael's description +facsimileTelephoneNumber: +1 408 239-2623 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 408 854-8944 +title: Associate Product Testing Czar +userPassword: Password1 +uid: MichaelP +givenName: Pittsburgh +mail: MichaelP@752c449dfd0b47e48d05c032fa7b3f44.bitwarden.com +carLicense: MU9M2V +departmentNumber: 9507 +employeeType: Normal +homePhone: +1 408 754-3876 +initials: P. M. +mobile: +1 408 459-2212 +pager: +1 408 567-9810 +roomNumber: 8152 +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bella Lally +sn: Lally +description: This is Bella Lally's description +facsimileTelephoneNumber: +1 213 947-4757 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 171-3710 +title: Junior Peons Engineer +userPassword: Password1 +uid: LallyB +givenName: Bella +mail: LallyB@59d35b61e06047f398b5db0a5e96a7de.bitwarden.com +carLicense: BRGF1N +departmentNumber: 6392 +employeeType: Normal +homePhone: +1 213 227-1030 +initials: B. L. +mobile: +1 213 783-9779 +pager: +1 213 823-9900 +roomNumber: 8934 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Romina Koman +sn: Koman +description: This is Romina Koman's description +facsimileTelephoneNumber: +1 213 176-4847 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 169-7083 +title: Supreme Peons Assistant +userPassword: Password1 +uid: KomanR +givenName: Romina +mail: KomanR@3a6874a38197445fbf21db557fe28dc6.bitwarden.com +carLicense: 8NMS14 +departmentNumber: 6103 +employeeType: Contract +homePhone: +1 213 939-9297 +initials: R. K. +mobile: +1 213 459-9451 +pager: +1 213 782-3737 +roomNumber: 8306 +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bcspatch Krauel +sn: Krauel +description: This is Bcspatch Krauel's description +facsimileTelephoneNumber: +1 408 327-3118 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 391-9625 +title: Associate Product Testing Admin +userPassword: Password1 +uid: KrauelB +givenName: Bcspatch +mail: KrauelB@efedd508d8ec42c3907045cd058c9d61.bitwarden.com +carLicense: 0DICWE +departmentNumber: 3574 +employeeType: Normal +homePhone: +1 408 548-7692 +initials: B. K. +mobile: +1 408 125-2644 +pager: +1 408 716-7971 +roomNumber: 9804 +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abbye Kurth +sn: Kurth +description: This is Abbye Kurth's description +facsimileTelephoneNumber: +1 415 923-5251 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 995-1757 +title: Chief Product Development Janitor +userPassword: Password1 +uid: KurthA +givenName: Abbye +mail: KurthA@d90060a8a6214d68a708f85a619deb45.bitwarden.com +carLicense: 1Y02A1 +departmentNumber: 9956 +employeeType: Contract +homePhone: +1 415 328-9168 +initials: A. K. +mobile: +1 415 555-8255 +pager: +1 415 292-3973 +roomNumber: 9102 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cecil Babb +sn: Babb +description: This is Cecil Babb's description +facsimileTelephoneNumber: +1 408 927-3469 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 205-2420 +title: Chief Product Development Fellow +userPassword: Password1 +uid: BabbC +givenName: Cecil +mail: BabbC@9688197f14c24b1ba3397822373736ec.bitwarden.com +carLicense: 82C3OD +departmentNumber: 7483 +employeeType: Contract +homePhone: +1 408 280-2346 +initials: C. B. +mobile: +1 408 924-8585 +pager: +1 408 250-6937 +roomNumber: 8486 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thinh Merinder +sn: Merinder +description: This is Thinh Merinder's description +facsimileTelephoneNumber: +1 206 346-5917 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 206 915-4616 +title: Chief Human Resources Engineer +userPassword: Password1 +uid: MerindeT +givenName: Thinh +mail: MerindeT@634978d04fca41d6af5289220bc42474.bitwarden.com +carLicense: YGUNPF +departmentNumber: 7186 +employeeType: Normal +homePhone: +1 206 758-2073 +initials: T. M. +mobile: +1 206 676-8657 +pager: +1 206 618-7491 +roomNumber: 9106 +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermann SYSINT +sn: SYSINT +description: This is Hermann SYSINT's description +facsimileTelephoneNumber: +1 415 752-4654 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 310-5216 +title: Supreme Product Testing Director +userPassword: Password1 +uid: SYSINTH +givenName: Hermann +mail: SYSINTH@06e4c92f7e694121b9c489567f46001f.bitwarden.com +carLicense: 94T2XO +departmentNumber: 6892 +employeeType: Employee +homePhone: +1 415 102-3799 +initials: H. S. +mobile: +1 415 130-5981 +pager: +1 415 252-3921 +roomNumber: 9063 +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dinah Kodsi +sn: Kodsi +description: This is Dinah Kodsi's description +facsimileTelephoneNumber: +1 206 455-5739 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 166-5341 +title: Junior Peons Mascot +userPassword: Password1 +uid: KodsiD +givenName: Dinah +mail: KodsiD@b9ee0922c6034c7c9e48852dd91cb364.bitwarden.com +carLicense: VMG9CW +departmentNumber: 1314 +employeeType: Normal +homePhone: +1 206 470-1432 +initials: D. K. +mobile: +1 206 178-7755 +pager: +1 206 727-3171 +roomNumber: 8108 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loria Salzillo +sn: Salzillo +description: This is Loria Salzillo's description +facsimileTelephoneNumber: +1 510 401-1585 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 248-3232 +title: Associate Administrative Writer +userPassword: Password1 +uid: SalzillL +givenName: Loria +mail: SalzillL@6682496b1da24faaa8a9e146fd0cd025.bitwarden.com +carLicense: WB28MP +departmentNumber: 7238 +employeeType: Contract +homePhone: +1 510 266-7869 +initials: L. S. +mobile: +1 510 238-2960 +pager: +1 510 168-5453 +roomNumber: 9015 +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sapphira Aggarwal +sn: Aggarwal +description: This is Sapphira Aggarwal's description +facsimileTelephoneNumber: +1 818 181-8450 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 818 749-4927 +title: Junior Peons Engineer +userPassword: Password1 +uid: AggarwaS +givenName: Sapphira +mail: AggarwaS@764613c40e224c12ab1c1cb80b18e644.bitwarden.com +carLicense: A0RYOL +departmentNumber: 2630 +employeeType: Contract +homePhone: +1 818 138-6550 +initials: S. A. +mobile: +1 818 856-6643 +pager: +1 818 299-1467 +roomNumber: 8928 +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnna Rodkey +sn: Rodkey +description: This is Johnna Rodkey's description +facsimileTelephoneNumber: +1 206 247-6982 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 543-1163 +title: Master Administrative Manager +userPassword: Password1 +uid: RodkeyJ +givenName: Johnna +mail: RodkeyJ@a2805efb65eb441e91001eedfa87637b.bitwarden.com +carLicense: HAXQ6W +departmentNumber: 8764 +employeeType: Contract +homePhone: +1 206 582-4565 +initials: J. R. +mobile: +1 206 854-3986 +pager: +1 206 213-6565 +roomNumber: 8080 +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alexander Brouthillier +sn: Brouthillier +description: This is Alexander Brouthillier's description +facsimileTelephoneNumber: +1 510 701-9785 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 751-5334 +title: Junior Payroll Visionary +userPassword: Password1 +uid: BrouthiA +givenName: Alexander +mail: BrouthiA@1f70c3bade4e4575a0687e469e22b825.bitwarden.com +carLicense: YEHV1O +departmentNumber: 8124 +employeeType: Contract +homePhone: +1 510 399-3528 +initials: A. B. +mobile: +1 510 935-3085 +pager: +1 510 989-7747 +roomNumber: 8759 +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eudora Jeanes +sn: Jeanes +description: This is Eudora Jeanes's description +facsimileTelephoneNumber: +1 408 218-4534 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 408 670-5909 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: JeanesE +givenName: Eudora +mail: JeanesE@5fb0b5507509483b9896f4a9d7f4badb.bitwarden.com +carLicense: U1NOLQ +departmentNumber: 7830 +employeeType: Normal +homePhone: +1 408 273-7129 +initials: E. J. +mobile: +1 408 125-2903 +pager: +1 408 453-6287 +roomNumber: 8805 +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willi Kepekci +sn: Kepekci +description: This is Willi Kepekci's description +facsimileTelephoneNumber: +1 206 993-5313 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 291-8412 +title: Master Payroll Assistant +userPassword: Password1 +uid: KepekciW +givenName: Willi +mail: KepekciW@40326010316a4eb6ad347835467b575d.bitwarden.com +carLicense: 3RWEFF +departmentNumber: 5959 +employeeType: Employee +homePhone: +1 206 341-8630 +initials: W. K. +mobile: +1 206 800-1817 +pager: +1 206 685-5931 +roomNumber: 9456 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tillie Laniel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tillie Laniel +sn: Laniel +description: This is Tillie Laniel's description +facsimileTelephoneNumber: +1 510 746-7388 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 774-3723 +title: Associate Peons Warrior +userPassword: Password1 +uid: LanielT +givenName: Tillie +mail: LanielT@db38fdb09e92403f9dae01242350f08c.bitwarden.com +carLicense: ATUTCM +departmentNumber: 8899 +employeeType: Employee +homePhone: +1 510 162-4396 +initials: T. L. +mobile: +1 510 431-4491 +pager: +1 510 415-7665 +roomNumber: 9709 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonie Linebarger +sn: Linebarger +description: This is Tonie Linebarger's description +facsimileTelephoneNumber: +1 415 947-4824 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 202-2305 +title: Master Human Resources Visionary +userPassword: Password1 +uid: LinebarT +givenName: Tonie +mail: LinebarT@63cf6afc822f42ed95e0208899f901bf.bitwarden.com +carLicense: 7ETCNG +departmentNumber: 9534 +employeeType: Normal +homePhone: +1 415 586-4415 +initials: T. L. +mobile: +1 415 365-8858 +pager: +1 415 521-1086 +roomNumber: 8630 +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helene Esser +sn: Esser +description: This is Helene Esser's description +facsimileTelephoneNumber: +1 818 457-4904 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 848-1444 +title: Associate Product Development Writer +userPassword: Password1 +uid: EsserH +givenName: Helene +mail: EsserH@16792a64200240e9a79e8e2ea0c19fe2.bitwarden.com +carLicense: GGAI1O +departmentNumber: 3773 +employeeType: Contract +homePhone: +1 818 901-8842 +initials: H. E. +mobile: +1 818 402-2479 +pager: +1 818 291-1197 +roomNumber: 9029 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lina Frederick +sn: Frederick +description: This is Lina Frederick's description +facsimileTelephoneNumber: +1 415 588-2101 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 237-2435 +title: Chief Product Testing Grunt +userPassword: Password1 +uid: FrederiL +givenName: Lina +mail: FrederiL@fde34f63385e43da8f208ba38082e1b9.bitwarden.com +carLicense: TKPXO4 +departmentNumber: 6895 +employeeType: Contract +homePhone: +1 415 230-4014 +initials: L. F. +mobile: +1 415 834-2111 +pager: +1 415 211-4608 +roomNumber: 9232 +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ktusn Rtprel +sn: Rtprel +description: This is Ktusn Rtprel's description +facsimileTelephoneNumber: +1 415 808-3740 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 114-3695 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: RtprelK +givenName: Ktusn +mail: RtprelK@ffbf9bf698dd4e7a9f64eeee84b5ec64.bitwarden.com +carLicense: XAOXIJ +departmentNumber: 1597 +employeeType: Normal +homePhone: +1 415 441-3611 +initials: K. R. +mobile: +1 415 664-8634 +pager: +1 415 406-2149 +roomNumber: 8226 +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sluis Brauer +sn: Brauer +description: This is Sluis Brauer's description +facsimileTelephoneNumber: +1 804 337-2261 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 126-7223 +title: Master Payroll Madonna +userPassword: Password1 +uid: BrauerS +givenName: Sluis +mail: BrauerS@f20ae448bfd2461babe4076c52578ba5.bitwarden.com +carLicense: FP7EHJ +departmentNumber: 9034 +employeeType: Normal +homePhone: +1 804 132-7778 +initials: S. B. +mobile: +1 804 269-2808 +pager: +1 804 953-7134 +roomNumber: 9893 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bosiljka Valerius +sn: Valerius +description: This is Bosiljka Valerius's description +facsimileTelephoneNumber: +1 818 905-3872 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 687-7856 +title: Junior Peons Manager +userPassword: Password1 +uid: ValeriuB +givenName: Bosiljka +mail: ValeriuB@d1a1137d84784363bf758dcc449d2a19.bitwarden.com +carLicense: A2OJE6 +departmentNumber: 3620 +employeeType: Contract +homePhone: +1 818 414-8390 +initials: B. V. +mobile: +1 818 308-8404 +pager: +1 818 262-4676 +roomNumber: 8617 +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prity Ruthart +sn: Ruthart +description: This is Prity Ruthart's description +facsimileTelephoneNumber: +1 804 721-7347 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 217-8366 +title: Chief Peons Manager +userPassword: Password1 +uid: RuthartP +givenName: Prity +mail: RuthartP@258e2d1e3bae4588bdceb50925d13250.bitwarden.com +carLicense: CUAREY +departmentNumber: 2783 +employeeType: Contract +homePhone: +1 804 112-9112 +initials: P. R. +mobile: +1 804 282-5695 +pager: +1 804 768-5890 +roomNumber: 9275 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlinda Weddell +sn: Weddell +description: This is Arlinda Weddell's description +facsimileTelephoneNumber: +1 213 235-3297 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 494-9938 +title: Chief Peons Developer +userPassword: Password1 +uid: WeddellA +givenName: Arlinda +mail: WeddellA@6d359ae3f48f4f958525326d5a17bef5.bitwarden.com +carLicense: 8NEAUP +departmentNumber: 6696 +employeeType: Normal +homePhone: +1 213 473-8976 +initials: A. W. +mobile: +1 213 229-4613 +pager: +1 213 418-6906 +roomNumber: 8460 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yatish Drynan +sn: Drynan +description: This is Yatish Drynan's description +facsimileTelephoneNumber: +1 818 381-8067 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 722-6805 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: DrynanY +givenName: Yatish +mail: DrynanY@c355112aa8644f0dbbdba2f53dfed719.bitwarden.com +carLicense: MTBRLE +departmentNumber: 5010 +employeeType: Employee +homePhone: +1 818 977-1186 +initials: Y. D. +mobile: +1 818 852-5352 +pager: +1 818 807-8450 +roomNumber: 9539 +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coila Daniells +sn: Daniells +description: This is Coila Daniells's description +facsimileTelephoneNumber: +1 510 319-6622 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 965-1554 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: DaniellC +givenName: Coila +mail: DaniellC@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com +carLicense: VXNWI7 +departmentNumber: 7459 +employeeType: Normal +homePhone: +1 510 974-6770 +initials: C. D. +mobile: +1 510 842-2903 +pager: +1 510 151-9026 +roomNumber: 9858 +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Detlef AlBasi +sn: AlBasi +description: This is Detlef AlBasi's description +facsimileTelephoneNumber: +1 408 294-8182 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 235-6902 +title: Master Product Testing Dictator +userPassword: Password1 +uid: AlBasiD +givenName: Detlef +mail: AlBasiD@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com +carLicense: T052CL +departmentNumber: 9123 +employeeType: Employee +homePhone: +1 408 339-1479 +initials: D. A. +mobile: +1 408 405-9997 +pager: +1 408 484-2417 +roomNumber: 8035 +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lark Gillstrom +sn: Gillstrom +description: This is Lark Gillstrom's description +facsimileTelephoneNumber: +1 510 996-3979 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 523-5712 +title: Supreme Human Resources Manager +userPassword: Password1 +uid: GillstrL +givenName: Lark +mail: GillstrL@6a80666af164421099cd30f445f1491e.bitwarden.com +carLicense: XEI5P9 +departmentNumber: 6189 +employeeType: Normal +homePhone: +1 510 447-1733 +initials: L. G. +mobile: +1 510 628-5340 +pager: +1 510 417-3756 +roomNumber: 8382 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Digby Abrams +sn: Abrams +description: This is Digby Abrams's description +facsimileTelephoneNumber: +1 804 853-5442 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 804 106-5000 +title: Associate Payroll Janitor +userPassword: Password1 +uid: AbramsD +givenName: Digby +mail: AbramsD@20e4624ef958401cb7727678bb609188.bitwarden.com +carLicense: HSU3AM +departmentNumber: 9394 +employeeType: Employee +homePhone: +1 804 600-8211 +initials: D. A. +mobile: +1 804 802-8499 +pager: +1 804 644-4805 +roomNumber: 9613 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalie Hine +sn: Hine +description: This is Kalie Hine's description +facsimileTelephoneNumber: +1 415 205-2137 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 258-9018 +title: Chief Payroll Admin +userPassword: Password1 +uid: HineK +givenName: Kalie +mail: HineK@e283d01de99446bc9d29b5fac0fa1bca.bitwarden.com +carLicense: 3JB0FS +departmentNumber: 9598 +employeeType: Contract +homePhone: +1 415 356-2753 +initials: K. H. +mobile: +1 415 854-3035 +pager: +1 415 242-5927 +roomNumber: 9436 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pierette Rodriques +sn: Rodriques +description: This is Pierette Rodriques's description +facsimileTelephoneNumber: +1 818 927-2444 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 222-1110 +title: Chief Management Director +userPassword: Password1 +uid: RodriquP +givenName: Pierette +mail: RodriquP@18569f82a4734a83991f0330d7e468e1.bitwarden.com +carLicense: RK2VCL +departmentNumber: 2738 +employeeType: Normal +homePhone: +1 818 342-9754 +initials: P. R. +mobile: +1 818 782-3070 +pager: +1 818 965-2795 +roomNumber: 9663 +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ysabel Wesenberg +sn: Wesenberg +description: This is Ysabel Wesenberg's description +facsimileTelephoneNumber: +1 415 186-7200 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 205-1337 +title: Chief Product Testing Technician +userPassword: Password1 +uid: WesenbeY +givenName: Ysabel +mail: WesenbeY@06636af2d3fb40bf87cb80da540e167a.bitwarden.com +carLicense: S4K3Y1 +departmentNumber: 6414 +employeeType: Normal +homePhone: +1 415 272-4431 +initials: Y. W. +mobile: +1 415 670-7134 +pager: +1 415 949-9893 +roomNumber: 9749 +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marleen Potts +sn: Potts +description: This is Marleen Potts's description +facsimileTelephoneNumber: +1 818 149-8872 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 953-3100 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: PottsM +givenName: Marleen +mail: PottsM@88d8b282161d4154bfd3a8dda92cc317.bitwarden.com +carLicense: M4FH31 +departmentNumber: 2424 +employeeType: Normal +homePhone: +1 818 993-2088 +initials: M. P. +mobile: +1 818 638-6560 +pager: +1 818 521-7054 +roomNumber: 9009 +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lela Kita +sn: Kita +description: This is Lela Kita's description +facsimileTelephoneNumber: +1 206 596-3964 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 773-3409 +title: Junior Payroll President +userPassword: Password1 +uid: KitaL +givenName: Lela +mail: KitaL@c33b0066e4a94f2895f1ce062cf2a5b2.bitwarden.com +carLicense: LKIW4T +departmentNumber: 5587 +employeeType: Employee +homePhone: +1 206 548-7902 +initials: L. K. +mobile: +1 206 775-2980 +pager: +1 206 885-3571 +roomNumber: 9969 +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angie Kou +sn: Kou +description: This is Angie Kou's description +facsimileTelephoneNumber: +1 206 930-6821 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 565-4141 +title: Associate Peons Developer +userPassword: Password1 +uid: KouA +givenName: Angie +mail: KouA@28fe718e73d141bb8aec4e57b4f0fed7.bitwarden.com +carLicense: OVSHMF +departmentNumber: 4603 +employeeType: Employee +homePhone: +1 206 550-7652 +initials: A. K. +mobile: +1 206 726-3592 +pager: +1 206 179-7274 +roomNumber: 9418 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mab Goba +sn: Goba +description: This is Mab Goba's description +facsimileTelephoneNumber: +1 804 300-2632 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 490-4762 +title: Supreme Management Czar +userPassword: Password1 +uid: GobaM +givenName: Mab +mail: GobaM@f38a9d14e36244e8ae609b15157f60d2.bitwarden.com +carLicense: 8WFUQH +departmentNumber: 6745 +employeeType: Contract +homePhone: +1 804 481-4073 +initials: M. G. +mobile: +1 804 533-7693 +pager: +1 804 295-9899 +roomNumber: 9634 +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roe Sandberg +sn: Sandberg +description: This is Roe Sandberg's description +facsimileTelephoneNumber: +1 213 156-5311 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 213 446-2837 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: SandberR +givenName: Roe +mail: SandberR@a4ddeff635f14fe6b72b17daaba90627.bitwarden.com +carLicense: BHE4PM +departmentNumber: 7448 +employeeType: Contract +homePhone: +1 213 401-7768 +initials: R. S. +mobile: +1 213 363-7826 +pager: +1 213 257-4672 +roomNumber: 8543 +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randene Wintour +sn: Wintour +description: This is Randene Wintour's description +facsimileTelephoneNumber: +1 510 103-2195 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 510 788-6653 +title: Master Human Resources Czar +userPassword: Password1 +uid: WintourR +givenName: Randene +mail: WintourR@8237422e949f4acf92d97f787e6bf098.bitwarden.com +carLicense: P6BM4M +departmentNumber: 7703 +employeeType: Normal +homePhone: +1 510 116-2787 +initials: R. W. +mobile: +1 510 847-2943 +pager: +1 510 823-6042 +roomNumber: 8419 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avie Lannan +sn: Lannan +description: This is Avie Lannan's description +facsimileTelephoneNumber: +1 804 715-7382 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 526-6536 +title: Associate Product Testing Artist +userPassword: Password1 +uid: LannanA +givenName: Avie +mail: LannanA@dfe553cd1a3f4695943b7b16fc34c074.bitwarden.com +carLicense: EAUBJB +departmentNumber: 2689 +employeeType: Employee +homePhone: +1 804 657-8172 +initials: A. L. +mobile: +1 804 929-5441 +pager: +1 804 968-3915 +roomNumber: 8045 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jania Ahluwalia +sn: Ahluwalia +description: This is Jania Ahluwalia's description +facsimileTelephoneNumber: +1 408 477-5221 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 514-5375 +title: Master Product Testing Warrior +userPassword: Password1 +uid: AhluwalJ +givenName: Jania +mail: AhluwalJ@ca8ef169aecd439b84062b84d007e951.bitwarden.com +carLicense: CB5BST +departmentNumber: 3435 +employeeType: Contract +homePhone: +1 408 982-6208 +initials: J. A. +mobile: +1 408 242-9516 +pager: +1 408 314-2248 +roomNumber: 9619 +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wiele Levert +sn: Levert +description: This is Wiele Levert's description +facsimileTelephoneNumber: +1 415 662-2603 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 888-5198 +title: Master Janitorial Admin +userPassword: Password1 +uid: LevertW +givenName: Wiele +mail: LevertW@5a771b0086d24bceafcaac2a637338d8.bitwarden.com +carLicense: 0QI4L8 +departmentNumber: 3683 +employeeType: Employee +homePhone: +1 415 430-9798 +initials: W. L. +mobile: +1 415 748-4166 +pager: +1 415 856-4371 +roomNumber: 9630 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amata Boles +sn: Boles +description: This is Amata Boles's description +facsimileTelephoneNumber: +1 206 551-8313 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 903-4438 +title: Chief Janitorial Consultant +userPassword: Password1 +uid: BolesA +givenName: Amata +mail: BolesA@68177ed4081e492fb681d0ca752ae8d5.bitwarden.com +carLicense: OF7A9L +departmentNumber: 4582 +employeeType: Contract +homePhone: +1 206 935-4064 +initials: A. B. +mobile: +1 206 312-4913 +pager: +1 206 895-7922 +roomNumber: 8814 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lpo Firment +sn: Firment +description: This is Lpo Firment's description +facsimileTelephoneNumber: +1 206 995-6666 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 506-3554 +title: Supreme Janitorial Artist +userPassword: Password1 +uid: FirmentL +givenName: Lpo +mail: FirmentL@f0c19e711ead4be4b0aef294eba8ecf4.bitwarden.com +carLicense: EEUDXR +departmentNumber: 4922 +employeeType: Normal +homePhone: +1 206 212-1233 +initials: L. F. +mobile: +1 206 744-9108 +pager: +1 206 389-3864 +roomNumber: 9094 +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katey Carkner +sn: Carkner +description: This is Katey Carkner's description +facsimileTelephoneNumber: +1 408 866-6599 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 570-4361 +title: Junior Product Development Consultant +userPassword: Password1 +uid: CarknerK +givenName: Katey +mail: CarknerK@98610eb59a8644899b5f6a7dba9c32ac.bitwarden.com +carLicense: OLYGHT +departmentNumber: 8778 +employeeType: Employee +homePhone: +1 408 819-6610 +initials: K. C. +mobile: +1 408 121-3100 +pager: +1 408 106-3769 +roomNumber: 9022 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vito Mereu +sn: Mereu +description: This is Vito Mereu's description +facsimileTelephoneNumber: +1 818 776-6030 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 450-5576 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: MereuV +givenName: Vito +mail: MereuV@e52bb91930a9487fa1adfb0b49d2e1a5.bitwarden.com +carLicense: M0JSMR +departmentNumber: 5852 +employeeType: Contract +homePhone: +1 818 390-5463 +initials: V. M. +mobile: +1 818 158-8076 +pager: +1 818 915-6329 +roomNumber: 9266 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willa Mikelonis +sn: Mikelonis +description: This is Willa Mikelonis's description +facsimileTelephoneNumber: +1 206 703-2119 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 206 418-2216 +title: Associate Payroll Punk +userPassword: Password1 +uid: MikelonW +givenName: Willa +mail: MikelonW@a4b64e3b322940649b1a6e04da490b37.bitwarden.com +carLicense: TJVT15 +departmentNumber: 9111 +employeeType: Employee +homePhone: +1 206 279-7016 +initials: W. M. +mobile: +1 206 548-5326 +pager: +1 206 273-2479 +roomNumber: 8521 +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lysy Halicki +sn: Halicki +description: This is Lysy Halicki's description +facsimileTelephoneNumber: +1 415 714-5983 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 728-5843 +title: Supreme Administrative Admin +userPassword: Password1 +uid: HalickiL +givenName: Lysy +mail: HalickiL@06d6eb97d0e1492aaf4272e7f2ff9fa8.bitwarden.com +carLicense: IRLKLD +departmentNumber: 6054 +employeeType: Normal +homePhone: +1 415 812-1678 +initials: L. H. +mobile: +1 415 748-7612 +pager: +1 415 158-3864 +roomNumber: 9392 +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabriell Aery +sn: Aery +description: This is Gabriell Aery's description +facsimileTelephoneNumber: +1 415 557-5210 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 521-7821 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: AeryG +givenName: Gabriell +mail: AeryG@2837fee1af77497ebd94556ee2aed90f.bitwarden.com +carLicense: B4M68G +departmentNumber: 7486 +employeeType: Normal +homePhone: +1 415 723-2130 +initials: G. A. +mobile: +1 415 624-8474 +pager: +1 415 994-1072 +roomNumber: 9737 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosalynd Gopisetty +sn: Gopisetty +description: This is Rosalynd Gopisetty's description +facsimileTelephoneNumber: +1 206 568-2983 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 179-3424 +title: Chief Product Development Consultant +userPassword: Password1 +uid: GopisetR +givenName: Rosalynd +mail: GopisetR@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com +carLicense: TTK35K +departmentNumber: 6513 +employeeType: Contract +homePhone: +1 206 927-1402 +initials: R. G. +mobile: +1 206 475-6702 +pager: +1 206 585-2552 +roomNumber: 9322 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morgan Christian +sn: Christian +description: This is Morgan Christian's description +facsimileTelephoneNumber: +1 818 672-6140 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 373-4993 +title: Associate Management Mascot +userPassword: Password1 +uid: ChristiM +givenName: Morgan +mail: ChristiM@c84f52f23bdc49c1957e8a0091babea8.bitwarden.com +carLicense: DIQ8TC +departmentNumber: 7766 +employeeType: Employee +homePhone: +1 818 242-7837 +initials: M. C. +mobile: +1 818 710-7080 +pager: +1 818 807-4118 +roomNumber: 9093 +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shona Ernst +sn: Ernst +description: This is Shona Ernst's description +facsimileTelephoneNumber: +1 415 600-3143 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 107-1767 +title: Master Payroll Czar +userPassword: Password1 +uid: ErnstS +givenName: Shona +mail: ErnstS@729666359ed04f0995bf97703c170436.bitwarden.com +carLicense: KALBNO +departmentNumber: 8805 +employeeType: Contract +homePhone: +1 415 830-2410 +initials: S. E. +mobile: +1 415 550-5753 +pager: +1 415 872-4616 +roomNumber: 8764 +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Melynda Traynor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melynda Traynor +sn: Traynor +description: This is Melynda Traynor's description +facsimileTelephoneNumber: +1 804 650-3095 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 436-9513 +title: Supreme Peons Assistant +userPassword: Password1 +uid: TraynorM +givenName: Melynda +mail: TraynorM@acfece6da1e443b5827761c1e0df01ee.bitwarden.com +carLicense: LPLT93 +departmentNumber: 4545 +employeeType: Normal +homePhone: +1 804 408-5396 +initials: M. T. +mobile: +1 804 372-3503 +pager: +1 804 497-7890 +roomNumber: 8574 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christer Bortolussi +sn: Bortolussi +description: This is Christer Bortolussi's description +facsimileTelephoneNumber: +1 818 335-9030 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 818 188-3165 +title: Master Product Development Janitor +userPassword: Password1 +uid: BortoluC +givenName: Christer +mail: BortoluC@f8d039f2941a426ba21fb52c89e7b4f3.bitwarden.com +carLicense: SQPX64 +departmentNumber: 6958 +employeeType: Employee +homePhone: +1 818 982-6812 +initials: C. B. +mobile: +1 818 233-5006 +pager: +1 818 158-2564 +roomNumber: 9699 +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frances Yvon +sn: Yvon +description: This is Frances Yvon's description +facsimileTelephoneNumber: +1 804 292-9751 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 327-9758 +title: Associate Payroll Pinhead +userPassword: Password1 +uid: YvonF +givenName: Frances +mail: YvonF@e7a2d820b36a4b2ca0436c4a7ceb43d4.bitwarden.com +carLicense: 411FFT +departmentNumber: 7069 +employeeType: Normal +homePhone: +1 804 533-6497 +initials: F. Y. +mobile: +1 804 401-8236 +pager: +1 804 908-1213 +roomNumber: 8184 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigitta Ipadmin +sn: Ipadmin +description: This is Brigitta Ipadmin's description +facsimileTelephoneNumber: +1 408 728-7651 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 408 519-8633 +title: Junior Management Technician +userPassword: Password1 +uid: IpadminB +givenName: Brigitta +mail: IpadminB@0e6ec851a2a74ae0b90601b63a1f201f.bitwarden.com +carLicense: SV1FSK +departmentNumber: 2650 +employeeType: Contract +homePhone: +1 408 790-1803 +initials: B. I. +mobile: +1 408 366-1821 +pager: +1 408 926-3945 +roomNumber: 8538 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Garland Kenney +sn: Kenney +description: This is Garland Kenney's description +facsimileTelephoneNumber: +1 510 906-3546 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 510 305-6571 +title: Associate Administrative Visionary +userPassword: Password1 +uid: KenneyG +givenName: Garland +mail: KenneyG@8a50e9e39d6c4166974a9cc7fff3efec.bitwarden.com +carLicense: XF7WPX +departmentNumber: 9606 +employeeType: Normal +homePhone: +1 510 537-5114 +initials: G. K. +mobile: +1 510 864-2779 +pager: +1 510 242-7035 +roomNumber: 8220 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivia Zaloker +sn: Zaloker +description: This is Vivia Zaloker's description +facsimileTelephoneNumber: +1 818 888-7100 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 901-2527 +title: Master Administrative Vice President +userPassword: Password1 +uid: ZalokerV +givenName: Vivia +mail: ZalokerV@22c1616450914b67aaa0021953493b44.bitwarden.com +carLicense: T9169H +departmentNumber: 2843 +employeeType: Contract +homePhone: +1 818 809-4160 +initials: V. Z. +mobile: +1 818 459-7013 +pager: +1 818 142-5355 +roomNumber: 9214 +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reed Bassignana +sn: Bassignana +description: This is Reed Bassignana's description +facsimileTelephoneNumber: +1 213 686-9775 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 144-7038 +title: Master Peons Sales Rep +userPassword: Password1 +uid: BassignR +givenName: Reed +mail: BassignR@e903c41d0e6d47309eaa689127a4e081.bitwarden.com +carLicense: CP7E4Q +departmentNumber: 7000 +employeeType: Employee +homePhone: +1 213 444-4078 +initials: R. B. +mobile: +1 213 650-3667 +pager: +1 213 898-2108 +roomNumber: 9243 +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martha Dunkelman +sn: Dunkelman +description: This is Martha Dunkelman's description +facsimileTelephoneNumber: +1 206 832-3703 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 206 304-2279 +title: Junior Human Resources President +userPassword: Password1 +uid: DunkelmM +givenName: Martha +mail: DunkelmM@552eccf10ef74257ae39c54b44c29e41.bitwarden.com +carLicense: HTV490 +departmentNumber: 9304 +employeeType: Contract +homePhone: +1 206 155-8723 +initials: M. D. +mobile: +1 206 803-7148 +pager: +1 206 750-9043 +roomNumber: 9269 +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robbie Kara +sn: Kara +description: This is Robbie Kara's description +facsimileTelephoneNumber: +1 408 888-6710 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 120-7064 +title: Supreme Human Resources Janitor +userPassword: Password1 +uid: KaraR +givenName: Robbie +mail: KaraR@248ea67a976b401d946bef01a3dddf9b.bitwarden.com +carLicense: TWX29I +departmentNumber: 3778 +employeeType: Contract +homePhone: +1 408 623-4260 +initials: R. K. +mobile: +1 408 856-9067 +pager: +1 408 182-7901 +roomNumber: 8477 +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorri Abe +sn: Abe +description: This is Lorri Abe's description +facsimileTelephoneNumber: +1 206 896-5478 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 206 744-6806 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: AbeL +givenName: Lorri +mail: AbeL@982a9dc04ec64d818da9977446a91014.bitwarden.com +carLicense: 0524FD +departmentNumber: 9258 +employeeType: Contract +homePhone: +1 206 354-8326 +initials: L. A. +mobile: +1 206 309-4664 +pager: +1 206 719-8888 +roomNumber: 8110 +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michaelina Weitzel +sn: Weitzel +description: This is Michaelina Weitzel's description +facsimileTelephoneNumber: +1 818 208-4562 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 340-5653 +title: Chief Janitorial Stooge +userPassword: Password1 +uid: WeitzelM +givenName: Michaelina +mail: WeitzelM@ae5f65ffb5c9447faad9235fe08e30d3.bitwarden.com +carLicense: VXY8R1 +departmentNumber: 2744 +employeeType: Contract +homePhone: +1 818 145-2648 +initials: M. W. +mobile: +1 818 659-6922 +pager: +1 818 976-8581 +roomNumber: 9350 +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norman Schmeler +sn: Schmeler +description: This is Norman Schmeler's description +facsimileTelephoneNumber: +1 213 545-2048 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 213-3662 +title: Supreme Product Testing President +userPassword: Password1 +uid: SchmeleN +givenName: Norman +mail: SchmeleN@9e6632ca10d4463a8725e828e08ec1be.bitwarden.com +carLicense: 556CRW +departmentNumber: 8431 +employeeType: Normal +homePhone: +1 213 558-2231 +initials: N. S. +mobile: +1 213 335-1371 +pager: +1 213 734-6894 +roomNumber: 9294 +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lethia Godse +sn: Godse +description: This is Lethia Godse's description +facsimileTelephoneNumber: +1 415 862-9422 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 828-7200 +title: Master Management Grunt +userPassword: Password1 +uid: GodseL +givenName: Lethia +mail: GodseL@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com +carLicense: BEJNQ8 +departmentNumber: 4504 +employeeType: Employee +homePhone: +1 415 664-2018 +initials: L. G. +mobile: +1 415 818-3527 +pager: +1 415 992-6380 +roomNumber: 8726 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elsy Sigut +sn: Sigut +description: This is Elsy Sigut's description +facsimileTelephoneNumber: +1 818 161-6116 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 169-5886 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: SigutE +givenName: Elsy +mail: SigutE@f943c40608904ca78dc0db77ac3253cf.bitwarden.com +carLicense: NFITTD +departmentNumber: 8831 +employeeType: Contract +homePhone: +1 818 953-3329 +initials: E. S. +mobile: +1 818 127-5289 +pager: +1 818 283-1193 +roomNumber: 8530 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosabella Toothman +sn: Toothman +description: This is Rosabella Toothman's description +facsimileTelephoneNumber: +1 213 785-6802 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 617-6315 +title: Associate Administrative Madonna +userPassword: Password1 +uid: ToothmaR +givenName: Rosabella +mail: ToothmaR@946a8a93d7d645ea944ce0f8d3611acd.bitwarden.com +carLicense: CJNQM9 +departmentNumber: 8183 +employeeType: Normal +homePhone: +1 213 777-4603 +initials: R. T. +mobile: +1 213 564-2367 +pager: +1 213 219-4725 +roomNumber: 9020 +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Royce OColmain +sn: OColmain +description: This is Royce OColmain's description +facsimileTelephoneNumber: +1 818 164-4113 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 528-8739 +title: Master Peons Manager +userPassword: Password1 +uid: OColmaiR +givenName: Royce +mail: OColmaiR@469fa45be80f47a9832c4ebf2310f220.bitwarden.com +carLicense: PFPYDO +departmentNumber: 7376 +employeeType: Employee +homePhone: +1 818 708-4729 +initials: R. O. +mobile: +1 818 444-1581 +pager: +1 818 330-1473 +roomNumber: 8184 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leigha Contine +sn: Contine +description: This is Leigha Contine's description +facsimileTelephoneNumber: +1 213 132-3048 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 466-5095 +title: Master Management Architect +userPassword: Password1 +uid: ContineL +givenName: Leigha +mail: ContineL@cc5c080b822048c1b52dd0d714af0c8b.bitwarden.com +carLicense: NLL904 +departmentNumber: 6116 +employeeType: Normal +homePhone: +1 213 194-9671 +initials: L. C. +mobile: +1 213 816-7796 +pager: +1 213 804-9855 +roomNumber: 9442 +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivo Chaurette +sn: Chaurette +description: This is Ivo Chaurette's description +facsimileTelephoneNumber: +1 415 270-1060 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 743-4679 +title: Supreme Payroll Figurehead +userPassword: Password1 +uid: ChauretI +givenName: Ivo +mail: ChauretI@7b01d0fa3a5d4a17b706f9bcc42a9ead.bitwarden.com +carLicense: 2D8MID +departmentNumber: 5713 +employeeType: Normal +homePhone: +1 415 837-3862 +initials: I. C. +mobile: +1 415 189-3619 +pager: +1 415 125-8972 +roomNumber: 9941 +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loleta Macoosh +sn: Macoosh +description: This is Loleta Macoosh's description +facsimileTelephoneNumber: +1 206 169-3427 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 928-3403 +title: Chief Payroll Assistant +userPassword: Password1 +uid: MacooshL +givenName: Loleta +mail: MacooshL@a455dbe4f11547cab81564b3288ee560.bitwarden.com +carLicense: QFQPKT +departmentNumber: 6428 +employeeType: Employee +homePhone: +1 206 992-6194 +initials: L. M. +mobile: +1 206 285-1125 +pager: +1 206 905-8994 +roomNumber: 8392 +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raina Morgan +sn: Morgan +description: This is Raina Morgan's description +facsimileTelephoneNumber: +1 415 455-4577 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 681-6032 +title: Master Peons Developer +userPassword: Password1 +uid: MorganR +givenName: Raina +mail: MorganR@03f807cda02845ada6f9c4f0cc25cb9a.bitwarden.com +carLicense: 03M9AD +departmentNumber: 7513 +employeeType: Normal +homePhone: +1 415 121-7526 +initials: R. M. +mobile: +1 415 957-5758 +pager: +1 415 401-6291 +roomNumber: 8163 +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laury Madras +sn: Madras +description: This is Laury Madras's description +facsimileTelephoneNumber: +1 818 168-3602 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 764-8912 +title: Associate Product Testing Admin +userPassword: Password1 +uid: MadrasL +givenName: Laury +mail: MadrasL@5b483b0db3b24546950eadd5a11e2bbb.bitwarden.com +carLicense: 6KWMSG +departmentNumber: 9944 +employeeType: Normal +homePhone: +1 818 943-7544 +initials: L. M. +mobile: +1 818 488-5075 +pager: +1 818 790-6692 +roomNumber: 9526 +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellis Eggersgluess +sn: Eggersgluess +description: This is Ellis Eggersgluess's description +facsimileTelephoneNumber: +1 804 172-3217 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 862-1514 +title: Junior Peons Madonna +userPassword: Password1 +uid: EggersgE +givenName: Ellis +mail: EggersgE@ade29194809c470d9cdfd87fd5b67232.bitwarden.com +carLicense: 0Y3R4Q +departmentNumber: 3900 +employeeType: Contract +homePhone: +1 804 293-8909 +initials: E. E. +mobile: +1 804 163-3772 +pager: +1 804 489-5244 +roomNumber: 8565 +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YuHung Marting +sn: Marting +description: This is YuHung Marting's description +facsimileTelephoneNumber: +1 415 720-1784 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 506-5954 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: MartingY +givenName: YuHung +mail: MartingY@eac3f0cb976143adb3703a9365be1f75.bitwarden.com +carLicense: OQBH1M +departmentNumber: 3745 +employeeType: Normal +homePhone: +1 415 261-1604 +initials: Y. M. +mobile: +1 415 132-5111 +pager: +1 415 147-8439 +roomNumber: 9206 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Garry Brashear +sn: Brashear +description: This is Garry Brashear's description +facsimileTelephoneNumber: +1 510 343-4795 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 544-5421 +title: Associate Peons Punk +userPassword: Password1 +uid: BrasheaG +givenName: Garry +mail: BrasheaG@0ac78d51e7f24be4983e8a7b1f6fd549.bitwarden.com +carLicense: 2XR1VD +departmentNumber: 5638 +employeeType: Contract +homePhone: +1 510 623-8210 +initials: G. B. +mobile: +1 510 677-6751 +pager: +1 510 144-9228 +roomNumber: 8137 +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klara Npi +sn: Npi +description: This is Klara Npi's description +facsimileTelephoneNumber: +1 415 863-6218 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 444-4554 +title: Supreme Janitorial Punk +userPassword: Password1 +uid: NpiK +givenName: Klara +mail: NpiK@85aee2e172b24229925fd4385b4414cf.bitwarden.com +carLicense: J8QTRS +departmentNumber: 3212 +employeeType: Employee +homePhone: +1 415 279-8072 +initials: K. N. +mobile: +1 415 310-9497 +pager: +1 415 726-3113 +roomNumber: 8513 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calley Slinowsky +sn: Slinowsky +description: This is Calley Slinowsky's description +facsimileTelephoneNumber: +1 818 349-1477 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 651-7135 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: SlinowsC +givenName: Calley +mail: SlinowsC@9b6ac34e0ff04d81b84f1dd42d147248.bitwarden.com +carLicense: 1320VK +departmentNumber: 2029 +employeeType: Contract +homePhone: +1 818 590-7766 +initials: C. S. +mobile: +1 818 968-3805 +pager: +1 818 251-3818 +roomNumber: 8724 +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinette Ayukawa +sn: Ayukawa +description: This is Robinette Ayukawa's description +facsimileTelephoneNumber: +1 415 282-9560 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 844-2333 +title: Chief Product Development Punk +userPassword: Password1 +uid: AyukawaR +givenName: Robinette +mail: AyukawaR@2295c6d141ba49579c21c8c873a50f8c.bitwarden.com +carLicense: 9M5IFP +departmentNumber: 1456 +employeeType: Contract +homePhone: +1 415 894-1574 +initials: R. A. +mobile: +1 415 803-1625 +pager: +1 415 450-7469 +roomNumber: 8304 +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edita VanRijswijk +sn: VanRijswijk +description: This is Edita VanRijswijk's description +facsimileTelephoneNumber: +1 213 514-9666 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 980-9385 +title: Associate Management Pinhead +userPassword: Password1 +uid: VanRijsE +givenName: Edita +mail: VanRijsE@790e9575d19b49f797a1e46c053b138e.bitwarden.com +carLicense: OQIDMD +departmentNumber: 4685 +employeeType: Normal +homePhone: +1 213 344-6931 +initials: E. V. +mobile: +1 213 355-7939 +pager: +1 213 651-4226 +roomNumber: 9763 +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeana Horwood +sn: Horwood +description: This is Jeana Horwood's description +facsimileTelephoneNumber: +1 213 553-2148 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 857-1894 +title: Chief Product Development Dictator +userPassword: Password1 +uid: HorwoodJ +givenName: Jeana +mail: HorwoodJ@c82abe08fb0140599e247f8f838f49b0.bitwarden.com +carLicense: QMOLWH +departmentNumber: 7372 +employeeType: Normal +homePhone: +1 213 766-9299 +initials: J. H. +mobile: +1 213 830-1113 +pager: +1 213 838-1468 +roomNumber: 9887 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lianna Horton +sn: Horton +description: This is Lianna Horton's description +facsimileTelephoneNumber: +1 408 691-6325 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 691-3339 +title: Chief Product Development Director +userPassword: Password1 +uid: HortonL +givenName: Lianna +mail: HortonL@f5c69553f79a4b59937ac455a61cfbaf.bitwarden.com +carLicense: WATOUE +departmentNumber: 5342 +employeeType: Contract +homePhone: +1 408 105-2235 +initials: L. H. +mobile: +1 408 422-8511 +pager: +1 408 419-4435 +roomNumber: 9569 +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Muriel Jesshope +sn: Jesshope +description: This is Muriel Jesshope's description +facsimileTelephoneNumber: +1 213 926-1483 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 624-2942 +title: Master Janitorial Vice President +userPassword: Password1 +uid: JesshopM +givenName: Muriel +mail: JesshopM@a907d87b6f8a40ee9746474ef0aee487.bitwarden.com +carLicense: 4QRJ6W +departmentNumber: 3006 +employeeType: Normal +homePhone: +1 213 880-5902 +initials: M. J. +mobile: +1 213 163-5684 +pager: +1 213 488-2846 +roomNumber: 9711 +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felicia Audette +sn: Audette +description: This is Felicia Audette's description +facsimileTelephoneNumber: +1 213 966-5961 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 834-4961 +title: Chief Administrative Director +userPassword: Password1 +uid: AudetteF +givenName: Felicia +mail: AudetteF@de1b941b029b482ba2e81cfa3a5aa97c.bitwarden.com +carLicense: VBI3V9 +departmentNumber: 7152 +employeeType: Contract +homePhone: +1 213 169-7123 +initials: F. A. +mobile: +1 213 539-9289 +pager: +1 213 785-5952 +roomNumber: 9462 +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jayesh Purson +sn: Purson +description: This is Jayesh Purson's description +facsimileTelephoneNumber: +1 804 605-6347 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 796-4682 +title: Associate Product Development Vice President +userPassword: Password1 +uid: PursonJ +givenName: Jayesh +mail: PursonJ@d3223b51e74344f49d9004d993927007.bitwarden.com +carLicense: X77CE0 +departmentNumber: 2602 +employeeType: Contract +homePhone: +1 804 421-1714 +initials: J. P. +mobile: +1 804 505-1728 +pager: +1 804 804-5207 +roomNumber: 9481 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zora Weldon +sn: Weldon +description: This is Zora Weldon's description +facsimileTelephoneNumber: +1 510 868-6176 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 549-6225 +title: Chief Payroll Architect +userPassword: Password1 +uid: WeldonZ +givenName: Zora +mail: WeldonZ@f69c90cc2b8c4a8e9725fac3e3a7a1d1.bitwarden.com +carLicense: DA7TLB +departmentNumber: 6526 +employeeType: Contract +homePhone: +1 510 584-5058 +initials: Z. W. +mobile: +1 510 720-7168 +pager: +1 510 458-6192 +roomNumber: 8995 +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Htd Knobloch +sn: Knobloch +description: This is Htd Knobloch's description +facsimileTelephoneNumber: +1 415 441-1004 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 415 964-9630 +title: Supreme Human Resources Architect +userPassword: Password1 +uid: KnoblocH +givenName: Htd +mail: KnoblocH@3c6215949b3243fca9ffcfc0e897aa4b.bitwarden.com +carLicense: DTX89I +departmentNumber: 5426 +employeeType: Employee +homePhone: +1 415 764-1971 +initials: H. K. +mobile: +1 415 327-5639 +pager: +1 415 855-8639 +roomNumber: 9012 +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marco Ainsworth +sn: Ainsworth +description: This is Marco Ainsworth's description +facsimileTelephoneNumber: +1 415 914-6095 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 924-5224 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: AinsworM +givenName: Marco +mail: AinsworM@35cbe55d624d41aaa7e77e5513292711.bitwarden.com +carLicense: 7S7PWX +departmentNumber: 6653 +employeeType: Contract +homePhone: +1 415 687-4087 +initials: M. A. +mobile: +1 415 267-1424 +pager: +1 415 628-3264 +roomNumber: 8947 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rajesh Cwirzen +sn: Cwirzen +description: This is Rajesh Cwirzen's description +facsimileTelephoneNumber: +1 818 200-6975 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 818 757-6929 +title: Supreme Janitorial Figurehead +userPassword: Password1 +uid: CwirzenR +givenName: Rajesh +mail: CwirzenR@e769e682c0c04d6c8ec17a9892d1ed72.bitwarden.com +carLicense: 079NU3 +departmentNumber: 8022 +employeeType: Employee +homePhone: +1 818 598-9221 +initials: R. C. +mobile: +1 818 355-3060 +pager: +1 818 421-9676 +roomNumber: 9428 +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheilakathryn Carli +sn: Carli +description: This is Sheilakathryn Carli's description +facsimileTelephoneNumber: +1 804 988-7541 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 495-6975 +title: Supreme Product Development Consultant +userPassword: Password1 +uid: CarliS +givenName: Sheilakathryn +mail: CarliS@6388b4d593ae4d1cb45d59e7f2b8132f.bitwarden.com +carLicense: BNEWFD +departmentNumber: 6477 +employeeType: Normal +homePhone: +1 804 109-7623 +initials: S. C. +mobile: +1 804 110-5787 +pager: +1 804 519-1931 +roomNumber: 8738 +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Detlef Morglan +sn: Morglan +description: This is Detlef Morglan's description +facsimileTelephoneNumber: +1 818 791-2709 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 818 408-3596 +title: Master Product Development Punk +userPassword: Password1 +uid: MorglanD +givenName: Detlef +mail: MorglanD@99ed379ff20347a2afcfdca050997d8c.bitwarden.com +carLicense: R8A2TO +departmentNumber: 6164 +employeeType: Normal +homePhone: +1 818 511-7648 +initials: D. M. +mobile: +1 818 537-4708 +pager: +1 818 162-6611 +roomNumber: 8704 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berthe Peter +sn: Peter +description: This is Berthe Peter's description +facsimileTelephoneNumber: +1 804 700-7547 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 804 954-2103 +title: Chief Janitorial Manager +userPassword: Password1 +uid: PeterB +givenName: Berthe +mail: PeterB@d6177daa79a64f8eb62f8d79f0c41ce3.bitwarden.com +carLicense: M5TEXN +departmentNumber: 8428 +employeeType: Contract +homePhone: +1 804 435-4683 +initials: B. P. +mobile: +1 804 941-9277 +pager: +1 804 726-1566 +roomNumber: 8931 +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alyce Tangren +sn: Tangren +description: This is Alyce Tangren's description +facsimileTelephoneNumber: +1 804 940-8692 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 869-3986 +title: Associate Management Janitor +userPassword: Password1 +uid: TangrenA +givenName: Alyce +mail: TangrenA@b134362a785742d6b5a1f5d5c2746e9a.bitwarden.com +carLicense: 93SBFD +departmentNumber: 8179 +employeeType: Normal +homePhone: +1 804 740-1944 +initials: A. T. +mobile: +1 804 397-3005 +pager: +1 804 257-5803 +roomNumber: 9068 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grissel Beaudoin +sn: Beaudoin +description: This is Grissel Beaudoin's description +facsimileTelephoneNumber: +1 415 622-4710 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 725-6357 +title: Supreme Peons Mascot +userPassword: Password1 +uid: BeaudoiG +givenName: Grissel +mail: BeaudoiG@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com +carLicense: NVEEML +departmentNumber: 7271 +employeeType: Employee +homePhone: +1 415 899-3019 +initials: G. B. +mobile: +1 415 673-3081 +pager: +1 415 607-5630 +roomNumber: 9804 +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Octavio Mathur +sn: Mathur +description: This is Octavio Mathur's description +facsimileTelephoneNumber: +1 818 824-3160 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 818 544-5647 +title: Chief Peons Engineer +userPassword: Password1 +uid: MathurO +givenName: Octavio +mail: MathurO@993d4c54591c4b179bcffd016a7fe8cd.bitwarden.com +carLicense: MQXVQ7 +departmentNumber: 6351 +employeeType: Contract +homePhone: +1 818 379-8022 +initials: O. M. +mobile: +1 818 289-6582 +pager: +1 818 871-1602 +roomNumber: 9764 +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elyssa Chui +sn: Chui +description: This is Elyssa Chui's description +facsimileTelephoneNumber: +1 818 694-5473 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 609-6440 +title: Junior Product Testing Writer +userPassword: Password1 +uid: ChuiE +givenName: Elyssa +mail: ChuiE@4f99a2d4c8e343d39b81a3ab47785f76.bitwarden.com +carLicense: PFDPUA +departmentNumber: 1199 +employeeType: Contract +homePhone: +1 818 548-7019 +initials: E. C. +mobile: +1 818 193-1472 +pager: +1 818 350-4927 +roomNumber: 9404 +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danica Rubinstein +sn: Rubinstein +description: This is Danica Rubinstein's description +facsimileTelephoneNumber: +1 213 103-5667 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 174-4691 +title: Master Management Evangelist +userPassword: Password1 +uid: RubinstD +givenName: Danica +mail: RubinstD@021f182578104bf484110ac6631b5efa.bitwarden.com +carLicense: W7DRKV +departmentNumber: 4783 +employeeType: Normal +homePhone: +1 213 962-7069 +initials: D. R. +mobile: +1 213 679-8217 +pager: +1 213 391-7784 +roomNumber: 8151 +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karna Netto +sn: Netto +description: This is Karna Netto's description +facsimileTelephoneNumber: +1 213 199-9393 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 254-4161 +title: Chief Product Development Admin +userPassword: Password1 +uid: NettoK +givenName: Karna +mail: NettoK@c4198b8f2847457c97c168c8fc0c7617.bitwarden.com +carLicense: LR53IL +departmentNumber: 5178 +employeeType: Normal +homePhone: +1 213 485-3369 +initials: K. N. +mobile: +1 213 864-5227 +pager: +1 213 548-5854 +roomNumber: 9596 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doug Millspaugh +sn: Millspaugh +description: This is Doug Millspaugh's description +facsimileTelephoneNumber: +1 213 920-4358 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 404-5239 +title: Chief Product Testing Writer +userPassword: Password1 +uid: MillspaD +givenName: Doug +mail: MillspaD@cd28596cfe754eb9be84580279d7d513.bitwarden.com +carLicense: N833JL +departmentNumber: 9408 +employeeType: Contract +homePhone: +1 213 278-3437 +initials: D. M. +mobile: +1 213 240-5253 +pager: +1 213 207-3576 +roomNumber: 8726 +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niki Kalnitsky +sn: Kalnitsky +description: This is Niki Kalnitsky's description +facsimileTelephoneNumber: +1 818 304-4637 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 856-2981 +title: Junior Payroll Technician +userPassword: Password1 +uid: KalnitsN +givenName: Niki +mail: KalnitsN@172938ae8ac04facad61a01b31d0a0e5.bitwarden.com +carLicense: 11O8YD +departmentNumber: 9347 +employeeType: Employee +homePhone: +1 818 218-6160 +initials: N. K. +mobile: +1 818 228-1633 +pager: +1 818 337-8238 +roomNumber: 9631 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wallie Newhook +sn: Newhook +description: This is Wallie Newhook's description +facsimileTelephoneNumber: +1 213 520-3791 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 213 842-1787 +title: Chief Product Development Madonna +userPassword: Password1 +uid: NewhookW +givenName: Wallie +mail: NewhookW@c9f8cbb8d3d848c99fea02136e8a89f7.bitwarden.com +carLicense: QON4FH +departmentNumber: 5587 +employeeType: Normal +homePhone: +1 213 585-4528 +initials: W. N. +mobile: +1 213 250-2558 +pager: +1 213 789-8870 +roomNumber: 8904 +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cavin Circe +sn: Circe +description: This is Cavin Circe's description +facsimileTelephoneNumber: +1 408 635-4564 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 927-1774 +title: Chief Payroll Writer +userPassword: Password1 +uid: CirceC +givenName: Cavin +mail: CirceC@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com +carLicense: T1GQFB +departmentNumber: 1976 +employeeType: Employee +homePhone: +1 408 189-4094 +initials: C. C. +mobile: +1 408 491-2984 +pager: +1 408 332-6367 +roomNumber: 8049 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Notley Salinas +sn: Salinas +description: This is Notley Salinas's description +facsimileTelephoneNumber: +1 415 820-9876 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 739-5960 +title: Associate Administrative Writer +userPassword: Password1 +uid: SalinasN +givenName: Notley +mail: SalinasN@0989aaf9c0104bbbb2f202d6a2004237.bitwarden.com +carLicense: QHF5LS +departmentNumber: 3879 +employeeType: Employee +homePhone: +1 415 371-3312 +initials: N. S. +mobile: +1 415 510-8124 +pager: +1 415 561-9347 +roomNumber: 9941 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catrina Pezzoli +sn: Pezzoli +description: This is Catrina Pezzoli's description +facsimileTelephoneNumber: +1 213 977-4445 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 980-1860 +title: Associate Peons Visionary +userPassword: Password1 +uid: PezzoliC +givenName: Catrina +mail: PezzoliC@41b27b52057643c68d8f76bcab984247.bitwarden.com +carLicense: SJ3XH4 +departmentNumber: 2511 +employeeType: Normal +homePhone: +1 213 324-6478 +initials: C. P. +mobile: +1 213 231-1585 +pager: +1 213 850-7817 +roomNumber: 9555 +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marrilee Montague +sn: Montague +description: This is Marrilee Montague's description +facsimileTelephoneNumber: +1 804 226-6821 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 804 257-3658 +title: Junior Payroll Janitor +userPassword: Password1 +uid: MontaguM +givenName: Marrilee +mail: MontaguM@ccc8e04b90324a8e82f8a7a8473e9c5e.bitwarden.com +carLicense: 1OJ07R +departmentNumber: 1610 +employeeType: Employee +homePhone: +1 804 527-8785 +initials: M. M. +mobile: +1 804 852-8033 +pager: +1 804 459-3742 +roomNumber: 9053 +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frederica KongQuee +sn: KongQuee +description: This is Frederica KongQuee's description +facsimileTelephoneNumber: +1 213 359-7639 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 653-1209 +title: Associate Payroll Engineer +userPassword: Password1 +uid: KongQueF +givenName: Frederica +mail: KongQueF@31248f3f7d37450a9d666ddb80ad3cdd.bitwarden.com +carLicense: CG2FPS +departmentNumber: 8613 +employeeType: Employee +homePhone: +1 213 609-3971 +initials: F. K. +mobile: +1 213 444-1830 +pager: +1 213 936-7068 +roomNumber: 8114 +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fianna Rubio +sn: Rubio +description: This is Fianna Rubio's description +facsimileTelephoneNumber: +1 818 502-3427 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 254-4421 +title: Junior Human Resources Artist +userPassword: Password1 +uid: RubioF +givenName: Fianna +mail: RubioF@b9ea78565da6440e8046b744a6f78fc9.bitwarden.com +carLicense: RWV4TT +departmentNumber: 7357 +employeeType: Employee +homePhone: +1 818 426-8226 +initials: F. R. +mobile: +1 818 536-2622 +pager: +1 818 241-7714 +roomNumber: 9504 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neely Godo +sn: Godo +description: This is Neely Godo's description +facsimileTelephoneNumber: +1 408 787-2246 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 982-7113 +title: Master Product Development Consultant +userPassword: Password1 +uid: GodoN +givenName: Neely +mail: GodoN@2d9d879a9a524c4888e7cfdd60a3152d.bitwarden.com +carLicense: LUXYY4 +departmentNumber: 2888 +employeeType: Contract +homePhone: +1 408 833-4011 +initials: N. G. +mobile: +1 408 410-6557 +pager: +1 408 790-9277 +roomNumber: 9248 +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karil Mielke +sn: Mielke +description: This is Karil Mielke's description +facsimileTelephoneNumber: +1 510 542-6529 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 933-5143 +title: Chief Product Development Grunt +userPassword: Password1 +uid: MielkeK +givenName: Karil +mail: MielkeK@fe9596dda25448d7a8bea63825cc667a.bitwarden.com +carLicense: BIMNTE +departmentNumber: 2186 +employeeType: Normal +homePhone: +1 510 797-9266 +initials: K. M. +mobile: +1 510 653-6818 +pager: +1 510 908-7837 +roomNumber: 9839 +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Livvie Blodgett +sn: Blodgett +description: This is Livvie Blodgett's description +facsimileTelephoneNumber: +1 408 636-7797 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 808-5950 +title: Chief Product Development Visionary +userPassword: Password1 +uid: BlodgetL +givenName: Livvie +mail: BlodgetL@29ffdd3ea48d48d48e57e1480deff23d.bitwarden.com +carLicense: LUMUU4 +departmentNumber: 2725 +employeeType: Normal +homePhone: +1 408 179-7803 +initials: L. B. +mobile: +1 408 601-1970 +pager: +1 408 707-3849 +roomNumber: 9940 +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ursula Potter +sn: Potter +description: This is Ursula Potter's description +facsimileTelephoneNumber: +1 818 509-8326 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 818 790-3836 +title: Associate Administrative Developer +userPassword: Password1 +uid: PotterU +givenName: Ursula +mail: PotterU@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com +carLicense: T09R39 +departmentNumber: 7499 +employeeType: Normal +homePhone: +1 818 785-5679 +initials: U. P. +mobile: +1 818 446-2142 +pager: +1 818 294-8904 +roomNumber: 8155 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laina Ecroyd +sn: Ecroyd +description: This is Laina Ecroyd's description +facsimileTelephoneNumber: +1 804 824-8130 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 629-2682 +title: Junior Human Resources Fellow +userPassword: Password1 +uid: EcroydL +givenName: Laina +mail: EcroydL@7ac3538c32ef4218882c130acb03a83a.bitwarden.com +carLicense: QJD0BN +departmentNumber: 8812 +employeeType: Normal +homePhone: +1 804 836-5665 +initials: L. E. +mobile: +1 804 939-4675 +pager: +1 804 237-5021 +roomNumber: 9614 +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Charil Garbish,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charil Garbish +sn: Garbish +description: This is Charil Garbish's description +facsimileTelephoneNumber: +1 804 585-6671 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 386-7470 +title: Junior Management Architect +userPassword: Password1 +uid: GarbishC +givenName: Charil +mail: GarbishC@8aed4579481d435c98b14fd5983c7417.bitwarden.com +carLicense: 0P45N1 +departmentNumber: 9805 +employeeType: Contract +homePhone: +1 804 756-4701 +initials: C. G. +mobile: +1 804 402-4809 +pager: +1 804 645-3543 +roomNumber: 9751 +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: William Groleau +sn: Groleau +description: This is William Groleau's description +facsimileTelephoneNumber: +1 408 687-7265 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 110-7221 +title: Master Administrative President +userPassword: Password1 +uid: GroleauW +givenName: William +mail: GroleauW@a0ce50d00f1c4513b832bf04095b308e.bitwarden.com +carLicense: 6P0I92 +departmentNumber: 2185 +employeeType: Normal +homePhone: +1 408 632-4237 +initials: W. G. +mobile: +1 408 944-2648 +pager: +1 408 515-1739 +roomNumber: 9589 +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emmie Gavillucci +sn: Gavillucci +description: This is Emmie Gavillucci's description +facsimileTelephoneNumber: +1 510 535-3074 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 510 256-4710 +title: Associate Payroll Stooge +userPassword: Password1 +uid: GavilluE +givenName: Emmie +mail: GavilluE@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com +carLicense: T7LHQ1 +departmentNumber: 9975 +employeeType: Employee +homePhone: +1 510 393-8597 +initials: E. G. +mobile: +1 510 858-9201 +pager: +1 510 939-7525 +roomNumber: 8382 +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LouisRene Albers +sn: Albers +description: This is LouisRene Albers's description +facsimileTelephoneNumber: +1 213 114-9882 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 837-3944 +title: Chief Payroll Engineer +userPassword: Password1 +uid: AlbersL +givenName: LouisRene +mail: AlbersL@43965c00f0db4ca198510569e172ade1.bitwarden.com +carLicense: LK6235 +departmentNumber: 8617 +employeeType: Normal +homePhone: +1 213 138-7753 +initials: L. A. +mobile: +1 213 861-3068 +pager: +1 213 545-7021 +roomNumber: 8418 +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emilie Geldrez +sn: Geldrez +description: This is Emilie Geldrez's description +facsimileTelephoneNumber: +1 408 134-2410 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 712-9707 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: GeldrezE +givenName: Emilie +mail: GeldrezE@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com +carLicense: R5FUJ5 +departmentNumber: 8936 +employeeType: Normal +homePhone: +1 408 816-8266 +initials: E. G. +mobile: +1 408 414-2998 +pager: +1 408 413-5235 +roomNumber: 8634 +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tomasina Willett +sn: Willett +description: This is Tomasina Willett's description +facsimileTelephoneNumber: +1 408 623-9924 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 840-3486 +title: Master Peons Czar +userPassword: Password1 +uid: WillettT +givenName: Tomasina +mail: WillettT@4a53c85fc87e459ba535fa5859abd60b.bitwarden.com +carLicense: P0FKNO +departmentNumber: 3240 +employeeType: Normal +homePhone: +1 408 661-3035 +initials: T. W. +mobile: +1 408 638-5966 +pager: +1 408 779-6114 +roomNumber: 9159 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prams Bertolini +sn: Bertolini +description: This is Prams Bertolini's description +facsimileTelephoneNumber: +1 213 982-8371 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 863-6256 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: BertoliP +givenName: Prams +mail: BertoliP@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com +carLicense: D66UVG +departmentNumber: 8956 +employeeType: Normal +homePhone: +1 213 976-2795 +initials: P. B. +mobile: +1 213 497-9931 +pager: +1 213 941-1520 +roomNumber: 8239 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivyanne Mulder +sn: Mulder +description: This is Vivyanne Mulder's description +facsimileTelephoneNumber: +1 206 761-4471 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 793-3218 +title: Master Management Figurehead +userPassword: Password1 +uid: MulderV +givenName: Vivyanne +mail: MulderV@c0e7d2cafc7f4a0fac99a6e2d0d32d1b.bitwarden.com +carLicense: 5IMQ7J +departmentNumber: 8754 +employeeType: Employee +homePhone: +1 206 423-4460 +initials: V. M. +mobile: +1 206 570-3910 +pager: +1 206 308-4965 +roomNumber: 9873 +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roscoe Nicoletta +sn: Nicoletta +description: This is Roscoe Nicoletta's description +facsimileTelephoneNumber: +1 415 714-5980 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 575-7781 +title: Junior Janitorial Punk +userPassword: Password1 +uid: NicoletR +givenName: Roscoe +mail: NicoletR@0995be80c7f7438a9503246039ba086d.bitwarden.com +carLicense: U2YYS0 +departmentNumber: 3665 +employeeType: Contract +homePhone: +1 415 219-1779 +initials: R. N. +mobile: +1 415 718-8991 +pager: +1 415 644-1557 +roomNumber: 8697 +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarence Sonier +sn: Sonier +description: This is Clarence Sonier's description +facsimileTelephoneNumber: +1 206 970-5984 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 662-4488 +title: Master Janitorial Mascot +userPassword: Password1 +uid: SonierC +givenName: Clarence +mail: SonierC@47ed50d743ed4ddaa8e7844725dfae63.bitwarden.com +carLicense: VW4VU9 +departmentNumber: 9354 +employeeType: Contract +homePhone: +1 206 366-9193 +initials: C. S. +mobile: +1 206 617-6600 +pager: +1 206 563-5768 +roomNumber: 8286 +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emelia Esry +sn: Esry +description: This is Emelia Esry's description +facsimileTelephoneNumber: +1 408 142-9469 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 408 711-1320 +title: Supreme Administrative Punk +userPassword: Password1 +uid: EsryE +givenName: Emelia +mail: EsryE@8967a677365042bf9b4c49a667cc17a9.bitwarden.com +carLicense: 42XVGS +departmentNumber: 1828 +employeeType: Normal +homePhone: +1 408 327-4976 +initials: E. E. +mobile: +1 408 421-6084 +pager: +1 408 319-3261 +roomNumber: 9227 +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranea Beffert +sn: Beffert +description: This is Ranea Beffert's description +facsimileTelephoneNumber: +1 206 922-2043 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 206 442-4544 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: BeffertR +givenName: Ranea +mail: BeffertR@526978f755294aedac8265e43fde0a0e.bitwarden.com +carLicense: WMEGXT +departmentNumber: 7715 +employeeType: Employee +homePhone: +1 206 982-1605 +initials: R. B. +mobile: +1 206 741-6384 +pager: +1 206 252-4682 +roomNumber: 8202 +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orlando Salyniuk +sn: Salyniuk +description: This is Orlando Salyniuk's description +facsimileTelephoneNumber: +1 408 992-2836 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 318-3406 +title: Supreme Payroll Czar +userPassword: Password1 +uid: SalyniuO +givenName: Orlando +mail: SalyniuO@c3ff70181a1748d2af2d2661f51fc5e8.bitwarden.com +carLicense: F2K1A6 +departmentNumber: 7614 +employeeType: Employee +homePhone: +1 408 202-2395 +initials: O. S. +mobile: +1 408 478-2109 +pager: +1 408 449-7315 +roomNumber: 8933 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saraann Lui +sn: Lui +description: This is Saraann Lui's description +facsimileTelephoneNumber: +1 213 502-9423 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 307-9041 +title: Junior Product Development Janitor +userPassword: Password1 +uid: LuiS +givenName: Saraann +mail: LuiS@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com +carLicense: HUI8A5 +departmentNumber: 4087 +employeeType: Employee +homePhone: +1 213 139-8180 +initials: S. L. +mobile: +1 213 358-1985 +pager: +1 213 596-4002 +roomNumber: 8452 +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ghislain Lindberg +sn: Lindberg +description: This is Ghislain Lindberg's description +facsimileTelephoneNumber: +1 510 188-4643 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 147-6222 +title: Junior Payroll Mascot +userPassword: Password1 +uid: LindberG +givenName: Ghislain +mail: LindberG@5b938862d9b84f248e738a32d39aab3b.bitwarden.com +carLicense: NJSE7C +departmentNumber: 9278 +employeeType: Contract +homePhone: +1 510 113-4769 +initials: G. L. +mobile: +1 510 280-1079 +pager: +1 510 151-2811 +roomNumber: 9337 +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katrina Dauterive +sn: Dauterive +description: This is Katrina Dauterive's description +facsimileTelephoneNumber: +1 415 551-6277 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 927-6039 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: DauteriK +givenName: Katrina +mail: DauteriK@1477a7ab60474aad9654b79aa14f0737.bitwarden.com +carLicense: QN9X1B +departmentNumber: 7378 +employeeType: Normal +homePhone: +1 415 785-4212 +initials: K. D. +mobile: +1 415 317-6296 +pager: +1 415 382-7611 +roomNumber: 8581 +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Talia Mattson +sn: Mattson +description: This is Talia Mattson's description +facsimileTelephoneNumber: +1 510 122-8961 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 110-6874 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: MattsonT +givenName: Talia +mail: MattsonT@01c954b9634144e3b54bd66a31610430.bitwarden.com +carLicense: A0GXIT +departmentNumber: 4960 +employeeType: Normal +homePhone: +1 510 597-6889 +initials: T. M. +mobile: +1 510 623-9097 +pager: +1 510 828-2054 +roomNumber: 8422 +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weldon Bresnan +sn: Bresnan +description: This is Weldon Bresnan's description +facsimileTelephoneNumber: +1 818 414-3663 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 195-4278 +title: Associate Human Resources Artist +userPassword: Password1 +uid: BresnanW +givenName: Weldon +mail: BresnanW@c1cc2a964c6c4e93a2be19842505091b.bitwarden.com +carLicense: 0URND9 +departmentNumber: 7120 +employeeType: Employee +homePhone: +1 818 401-5975 +initials: W. B. +mobile: +1 818 256-6298 +pager: +1 818 898-5527 +roomNumber: 8181 +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yevette Lazzara,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yevette Lazzara +sn: Lazzara +description: This is Yevette Lazzara's description +facsimileTelephoneNumber: +1 206 956-4149 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 424-1476 +title: Chief Peons Developer +userPassword: Password1 +uid: LazzaraY +givenName: Yevette +mail: LazzaraY@db3499e49ce34ebd81d2f39ace8a49cd.bitwarden.com +carLicense: 6I9F6L +departmentNumber: 7126 +employeeType: Contract +homePhone: +1 206 271-2469 +initials: Y. L. +mobile: +1 206 991-5237 +pager: +1 206 843-1535 +roomNumber: 9864 +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kirby Hagley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirby Hagley +sn: Hagley +description: This is Kirby Hagley's description +facsimileTelephoneNumber: +1 510 142-7029 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 566-5405 +title: Chief Product Development Director +userPassword: Password1 +uid: HagleyK +givenName: Kirby +mail: HagleyK@fe740c0ae3204fcc953b18216e0c9dcc.bitwarden.com +carLicense: 75H3EF +departmentNumber: 6330 +employeeType: Employee +homePhone: +1 510 830-8527 +initials: K. H. +mobile: +1 510 156-2829 +pager: +1 510 885-4690 +roomNumber: 9092 +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marit Montelli +sn: Montelli +description: This is Marit Montelli's description +facsimileTelephoneNumber: +1 206 655-8896 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 367-3866 +title: Master Product Testing Assistant +userPassword: Password1 +uid: MontellM +givenName: Marit +mail: MontellM@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com +carLicense: HKCXN5 +departmentNumber: 8318 +employeeType: Contract +homePhone: +1 206 735-6218 +initials: M. M. +mobile: +1 206 895-5794 +pager: +1 206 409-7346 +roomNumber: 8250 +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monroe Ghulati +sn: Ghulati +description: This is Monroe Ghulati's description +facsimileTelephoneNumber: +1 213 945-9285 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 213 842-9357 +title: Master Payroll Assistant +userPassword: Password1 +uid: GhulatiM +givenName: Monroe +mail: GhulatiM@dce0711c306745dfb235a826c6991d57.bitwarden.com +carLicense: HI600N +departmentNumber: 3302 +employeeType: Employee +homePhone: +1 213 412-6648 +initials: M. G. +mobile: +1 213 613-9431 +pager: +1 213 662-9703 +roomNumber: 9675 +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Carolan Bott,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolan Bott +sn: Bott +description: This is Carolan Bott's description +facsimileTelephoneNumber: +1 818 677-7137 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 697-4809 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: BottC +givenName: Carolan +mail: BottC@3d692d684ca742119b69b3914fc21732.bitwarden.com +carLicense: 0KRRMV +departmentNumber: 7363 +employeeType: Employee +homePhone: +1 818 783-7103 +initials: C. B. +mobile: +1 818 227-9847 +pager: +1 818 395-8434 +roomNumber: 8102 +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anet Gehring,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anet Gehring +sn: Gehring +description: This is Anet Gehring's description +facsimileTelephoneNumber: +1 206 432-2377 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 130-5986 +title: Master Product Development Assistant +userPassword: Password1 +uid: GehringA +givenName: Anet +mail: GehringA@8a950b2ad99e488bb8e8780065c87d40.bitwarden.com +carLicense: 0S1VPV +departmentNumber: 1423 +employeeType: Normal +homePhone: +1 206 418-4936 +initials: A. G. +mobile: +1 206 399-6940 +pager: +1 206 283-9032 +roomNumber: 9730 +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaela Binner +sn: Binner +description: This is Kaela Binner's description +facsimileTelephoneNumber: +1 818 781-6477 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 818 442-7441 +title: Master Human Resources Warrior +userPassword: Password1 +uid: BinnerK +givenName: Kaela +mail: BinnerK@4d0502da536c4d0b8ac6cf9b766f7317.bitwarden.com +carLicense: HF5SK2 +departmentNumber: 9338 +employeeType: Normal +homePhone: +1 818 849-3103 +initials: K. B. +mobile: +1 818 203-2394 +pager: +1 818 361-8577 +roomNumber: 8664 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailee Paulhus +sn: Paulhus +description: This is Ailee Paulhus's description +facsimileTelephoneNumber: +1 818 978-9266 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 524-4774 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: PaulhusA +givenName: Ailee +mail: PaulhusA@fbf26b520a7b4c988cb7a7f55d34af0b.bitwarden.com +carLicense: MHJBBX +departmentNumber: 5221 +employeeType: Normal +homePhone: +1 818 830-5311 +initials: A. P. +mobile: +1 818 688-9281 +pager: +1 818 511-6218 +roomNumber: 8995 +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Libor Schanne +sn: Schanne +description: This is Libor Schanne's description +facsimileTelephoneNumber: +1 804 231-8176 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 412-9863 +title: Master Product Testing Mascot +userPassword: Password1 +uid: SchanneL +givenName: Libor +mail: SchanneL@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com +carLicense: 61D8OJ +departmentNumber: 2349 +employeeType: Employee +homePhone: +1 804 415-3420 +initials: L. S. +mobile: +1 804 417-3385 +pager: +1 804 201-2594 +roomNumber: 8543 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bertie Bounds +sn: Bounds +description: This is Bertie Bounds's description +facsimileTelephoneNumber: +1 415 750-8701 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 264-7471 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: BoundsB +givenName: Bertie +mail: BoundsB@f103afa7e026431c8e52eb4ed735c99a.bitwarden.com +carLicense: TT3IP3 +departmentNumber: 4305 +employeeType: Employee +homePhone: +1 415 972-3383 +initials: B. B. +mobile: +1 415 502-3312 +pager: +1 415 792-2296 +roomNumber: 9375 +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pascale Hutchings +sn: Hutchings +description: This is Pascale Hutchings's description +facsimileTelephoneNumber: +1 408 718-8345 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 215-5203 +title: Junior Administrative Stooge +userPassword: Password1 +uid: HutchinP +givenName: Pascale +mail: HutchinP@1161e749733c49b2979c0ee6e1e741fc.bitwarden.com +carLicense: PVWFUH +departmentNumber: 6778 +employeeType: Employee +homePhone: +1 408 155-2345 +initials: P. H. +mobile: +1 408 176-9101 +pager: +1 408 439-8828 +roomNumber: 9645 +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rochella Mazarick +sn: Mazarick +description: This is Rochella Mazarick's description +facsimileTelephoneNumber: +1 213 837-2534 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 477-1659 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: MazaricR +givenName: Rochella +mail: MazaricR@4ad19e5c2a7149b892ada70174e983fb.bitwarden.com +carLicense: O6YWU9 +departmentNumber: 2925 +employeeType: Employee +homePhone: +1 213 287-3738 +initials: R. M. +mobile: +1 213 636-6964 +pager: +1 213 461-1190 +roomNumber: 8089 +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheela Adam +sn: Adam +description: This is Sheela Adam's description +facsimileTelephoneNumber: +1 818 149-7424 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 869-6093 +title: Supreme Product Development Dictator +userPassword: Password1 +uid: AdamS +givenName: Sheela +mail: AdamS@6eda6577067f465b84cdc51153ccba3d.bitwarden.com +carLicense: XRJNM6 +departmentNumber: 4078 +employeeType: Contract +homePhone: +1 818 211-1433 +initials: S. A. +mobile: +1 818 746-3524 +pager: +1 818 521-3759 +roomNumber: 8888 +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norio Crabtree +sn: Crabtree +description: This is Norio Crabtree's description +facsimileTelephoneNumber: +1 818 309-9004 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 818 622-4067 +title: Master Human Resources Pinhead +userPassword: Password1 +uid: CrabtreN +givenName: Norio +mail: CrabtreN@3913d51a20f344409448501766a0f142.bitwarden.com +carLicense: EMQBYJ +departmentNumber: 1707 +employeeType: Employee +homePhone: +1 818 789-2187 +initials: N. C. +mobile: +1 818 295-7203 +pager: +1 818 303-6169 +roomNumber: 9267 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jey Shackley +sn: Shackley +description: This is Jey Shackley's description +facsimileTelephoneNumber: +1 206 576-8771 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 461-3672 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: ShackleJ +givenName: Jey +mail: ShackleJ@e974b86e9f10486baa2ed0156d74e959.bitwarden.com +carLicense: HO8POI +departmentNumber: 3749 +employeeType: Employee +homePhone: +1 206 590-3447 +initials: J. S. +mobile: +1 206 746-6446 +pager: +1 206 558-7412 +roomNumber: 9020 +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linda Juhan +sn: Juhan +description: This is Linda Juhan's description +facsimileTelephoneNumber: +1 415 357-7178 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 415 810-9170 +title: Supreme Administrative Pinhead +userPassword: Password1 +uid: JuhanL +givenName: Linda +mail: JuhanL@e2cbb69d157949f2a27ec4f04bfab065.bitwarden.com +carLicense: Y6QE90 +departmentNumber: 5378 +employeeType: Employee +homePhone: +1 415 533-3660 +initials: L. J. +mobile: +1 415 857-9075 +pager: +1 415 957-7976 +roomNumber: 8672 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donica Banens +sn: Banens +description: This is Donica Banens's description +facsimileTelephoneNumber: +1 510 206-1389 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 977-9044 +title: Supreme Product Testing President +userPassword: Password1 +uid: BanensD +givenName: Donica +mail: BanensD@e4c6dfe9f4dd43a2a1ea392ceb99c9cb.bitwarden.com +carLicense: SHBOO8 +departmentNumber: 2341 +employeeType: Contract +homePhone: +1 510 183-4542 +initials: D. B. +mobile: +1 510 745-8192 +pager: +1 510 939-1061 +roomNumber: 8902 +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrei Postlethwaite +sn: Postlethwaite +description: This is Andrei Postlethwaite's description +facsimileTelephoneNumber: +1 804 226-3450 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 341-6118 +title: Master Payroll Engineer +userPassword: Password1 +uid: PostletA +givenName: Andrei +mail: PostletA@affed2f672a845bead4365ae80e4a101.bitwarden.com +carLicense: QUH8JU +departmentNumber: 8243 +employeeType: Contract +homePhone: +1 804 149-6906 +initials: A. P. +mobile: +1 804 716-9580 +pager: +1 804 877-5452 +roomNumber: 8136 +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marianna Fagan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marianna Fagan +sn: Fagan +description: This is Marianna Fagan's description +facsimileTelephoneNumber: +1 408 838-9631 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 192-4502 +title: Associate Product Testing Director +userPassword: Password1 +uid: FaganM +givenName: Marianna +mail: FaganM@9f90762fec514dd6aa8e8cba5782dba8.bitwarden.com +carLicense: I5KHUY +departmentNumber: 4115 +employeeType: Normal +homePhone: +1 408 515-1183 +initials: M. F. +mobile: +1 408 819-2231 +pager: +1 408 656-4247 +roomNumber: 8711 +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Otha Mousseau +sn: Mousseau +description: This is Otha Mousseau's description +facsimileTelephoneNumber: +1 408 831-2761 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 802-3891 +title: Junior Product Development Mascot +userPassword: Password1 +uid: MousseaO +givenName: Otha +mail: MousseaO@b5d68bec53824e6ba7d281f697cd7939.bitwarden.com +carLicense: D3WM3O +departmentNumber: 7435 +employeeType: Contract +homePhone: +1 408 361-1431 +initials: O. M. +mobile: +1 408 885-7381 +pager: +1 408 413-3290 +roomNumber: 9203 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rodrigus Helwege +sn: Helwege +description: This is Rodrigus Helwege's description +facsimileTelephoneNumber: +1 804 626-2326 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 938-1385 +title: Chief Peons Punk +userPassword: Password1 +uid: HelwegeR +givenName: Rodrigus +mail: HelwegeR@f89a515c80574bae9191a55e3c4dfaf6.bitwarden.com +carLicense: XP47D4 +departmentNumber: 4148 +employeeType: Employee +homePhone: +1 804 682-5473 +initials: R. H. +mobile: +1 804 101-8411 +pager: +1 804 922-1541 +roomNumber: 9956 +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cathe Bolli,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathe Bolli +sn: Bolli +description: This is Cathe Bolli's description +facsimileTelephoneNumber: +1 804 340-9957 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 804 191-9951 +title: Chief Payroll Sales Rep +userPassword: Password1 +uid: BolliC +givenName: Cathe +mail: BolliC@f7a81f2e1780475aad82532745d8c03d.bitwarden.com +carLicense: HCPBBJ +departmentNumber: 5984 +employeeType: Contract +homePhone: +1 804 867-5835 +initials: C. B. +mobile: +1 804 734-1845 +pager: +1 804 395-8082 +roomNumber: 9030 +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zsazsa Lindemulder +sn: Lindemulder +description: This is Zsazsa Lindemulder's description +facsimileTelephoneNumber: +1 818 300-1649 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 617-1076 +title: Chief Human Resources Architect +userPassword: Password1 +uid: LindemuZ +givenName: Zsazsa +mail: LindemuZ@5a39c0ae003342a5afebbb7b314c015d.bitwarden.com +carLicense: 7PLLWA +departmentNumber: 4464 +employeeType: Employee +homePhone: +1 818 226-1255 +initials: Z. L. +mobile: +1 818 810-7246 +pager: +1 818 164-9518 +roomNumber: 9970 +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odele Docherty +sn: Docherty +description: This is Odele Docherty's description +facsimileTelephoneNumber: +1 818 551-5843 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 225-6324 +title: Associate Peons Assistant +userPassword: Password1 +uid: DochertO +givenName: Odele +mail: DochertO@a59346ad14cf48868393d6c59fa9cec4.bitwarden.com +carLicense: 42Q65U +departmentNumber: 2906 +employeeType: Normal +homePhone: +1 818 610-4018 +initials: O. D. +mobile: +1 818 121-1575 +pager: +1 818 134-1145 +roomNumber: 9085 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allie Corbeil +sn: Corbeil +description: This is Allie Corbeil's description +facsimileTelephoneNumber: +1 804 536-9792 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 951-8179 +title: Associate Janitorial Architect +userPassword: Password1 +uid: CorbeilA +givenName: Allie +mail: CorbeilA@354ddafd53d546cbab9bc884653e06a1.bitwarden.com +carLicense: 62X8JD +departmentNumber: 6000 +employeeType: Employee +homePhone: +1 804 552-6963 +initials: A. C. +mobile: +1 804 682-7158 +pager: +1 804 908-3779 +roomNumber: 9472 +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marshal Mayo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marshal Mayo +sn: Mayo +description: This is Marshal Mayo's description +facsimileTelephoneNumber: +1 213 920-4521 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 667-7677 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: MayoM +givenName: Marshal +mail: MayoM@6ff512afd6074ffb8be89092e99d3615.bitwarden.com +carLicense: UCPR5R +departmentNumber: 4293 +employeeType: Employee +homePhone: +1 213 926-2028 +initials: M. M. +mobile: +1 213 779-9356 +pager: +1 213 600-1713 +roomNumber: 9976 +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com + +dn: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neil Bestavros +sn: Bestavros +description: This is Neil Bestavros's description +facsimileTelephoneNumber: +1 408 468-5234 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 798-8002 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: BestavrN +givenName: Neil +mail: BestavrN@ef157743b5d94ee5a4fdc8f8efde50c1.bitwarden.com +carLicense: 011SCS +departmentNumber: 4097 +employeeType: Contract +homePhone: +1 408 923-8688 +initials: N. B. +mobile: +1 408 595-7909 +pager: +1 408 468-7985 +roomNumber: 9239 +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pirooz Rashed +sn: Rashed +description: This is Pirooz Rashed's description +facsimileTelephoneNumber: +1 818 908-2422 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 269-5501 +title: Junior Administrative Warrior +userPassword: Password1 +uid: RashedP +givenName: Pirooz +mail: RashedP@a54b6e1d0be04405aa83502caa5550a3.bitwarden.com +carLicense: CCVUWR +departmentNumber: 8803 +employeeType: Normal +homePhone: +1 818 494-9592 +initials: P. R. +mobile: +1 818 222-6486 +pager: +1 818 871-4693 +roomNumber: 9337 +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com + +dn: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corinna Davy +sn: Davy +description: This is Corinna Davy's description +facsimileTelephoneNumber: +1 415 863-9848 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 508-6800 +title: Associate Management Architect +userPassword: Password1 +uid: DavyC +givenName: Corinna +mail: DavyC@7909b3c6de394fb88dda677b48087880.bitwarden.com +carLicense: 27O4TM +departmentNumber: 6807 +employeeType: Employee +homePhone: +1 415 285-4363 +initials: C. D. +mobile: +1 415 274-2805 +pager: +1 415 625-5796 +roomNumber: 8057 +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tesfagaber Luoma +sn: Luoma +description: This is Tesfagaber Luoma's description +facsimileTelephoneNumber: +1 804 717-4138 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 466-7437 +title: Associate Product Testing Writer +userPassword: Password1 +uid: LuomaT +givenName: Tesfagaber +mail: LuomaT@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com +carLicense: FB9LLS +departmentNumber: 1851 +employeeType: Employee +homePhone: +1 804 382-2067 +initials: T. L. +mobile: +1 804 684-6424 +pager: +1 804 556-4499 +roomNumber: 8906 +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melford Sehgal +sn: Sehgal +description: This is Melford Sehgal's description +facsimileTelephoneNumber: +1 213 688-7731 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 175-3533 +title: Supreme Product Development Fellow +userPassword: Password1 +uid: SehgalM +givenName: Melford +mail: SehgalM@22da63f56f314dcd9cf81575674754db.bitwarden.com +carLicense: XH7PFR +departmentNumber: 9814 +employeeType: Normal +homePhone: +1 213 228-8137 +initials: M. S. +mobile: +1 213 624-3369 +pager: +1 213 237-3388 +roomNumber: 8689 +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tsuyoshi Keast +sn: Keast +description: This is Tsuyoshi Keast's description +facsimileTelephoneNumber: +1 415 290-3677 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 530-1411 +title: Junior Payroll Vice President +userPassword: Password1 +uid: KeastT +givenName: Tsuyoshi +mail: KeastT@f9ac72c800c648adb93805922921ecdf.bitwarden.com +carLicense: Q2NQC0 +departmentNumber: 4722 +employeeType: Employee +homePhone: +1 415 359-2217 +initials: T. K. +mobile: +1 415 313-1121 +pager: +1 415 844-7444 +roomNumber: 9412 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juditha Moree +sn: Moree +description: This is Juditha Moree's description +facsimileTelephoneNumber: +1 206 880-2670 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 331-3582 +title: Associate Peons Czar +userPassword: Password1 +uid: MoreeJ +givenName: Juditha +mail: MoreeJ@4db77e65231d4196be74b445bea3989e.bitwarden.com +carLicense: 24QYRF +departmentNumber: 8482 +employeeType: Contract +homePhone: +1 206 679-3572 +initials: J. M. +mobile: +1 206 186-3840 +pager: +1 206 854-1910 +roomNumber: 8442 +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ibby Woroszczuk +sn: Woroszczuk +description: This is Ibby Woroszczuk's description +facsimileTelephoneNumber: +1 804 651-6753 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 804 954-6896 +title: Junior Peons Mascot +userPassword: Password1 +uid: WoroszcI +givenName: Ibby +mail: WoroszcI@37965586ec09459fa0ca3d745850a83d.bitwarden.com +carLicense: RBSET9 +departmentNumber: 4320 +employeeType: Employee +homePhone: +1 804 319-1456 +initials: I. W. +mobile: +1 804 706-7249 +pager: +1 804 266-1181 +roomNumber: 8659 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rodrigo Staten +sn: Staten +description: This is Rodrigo Staten's description +facsimileTelephoneNumber: +1 213 228-8866 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 174-7326 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: StatenR +givenName: Rodrigo +mail: StatenR@1a08913edfd44837a7e737b90b169ef7.bitwarden.com +carLicense: O9QU3Y +departmentNumber: 9568 +employeeType: Normal +homePhone: +1 213 505-8231 +initials: R. S. +mobile: +1 213 335-6247 +pager: +1 213 160-5983 +roomNumber: 9516 +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gerardjan Toulson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerardjan Toulson +sn: Toulson +description: This is Gerardjan Toulson's description +facsimileTelephoneNumber: +1 818 680-6567 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 923-8023 +title: Chief Peons Janitor +userPassword: Password1 +uid: ToulsonG +givenName: Gerardjan +mail: ToulsonG@697132edecc44b08a924e05590de1c19.bitwarden.com +carLicense: THF12W +departmentNumber: 8530 +employeeType: Contract +homePhone: +1 818 931-4238 +initials: G. T. +mobile: +1 818 148-8277 +pager: +1 818 729-7949 +roomNumber: 8188 +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: CheeYong BrownGillard +sn: BrownGillard +description: This is CheeYong BrownGillard's description +facsimileTelephoneNumber: +1 510 631-2166 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 840-5898 +title: Chief Management Evangelist +userPassword: Password1 +uid: BrownGiC +givenName: CheeYong +mail: BrownGiC@918e521a01f947209849cc2803a3bf8e.bitwarden.com +carLicense: QOCBTA +departmentNumber: 7518 +employeeType: Contract +homePhone: +1 510 905-3482 +initials: C. B. +mobile: +1 510 472-2680 +pager: +1 510 281-5762 +roomNumber: 8173 +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherri Hamilton +sn: Hamilton +description: This is Sherri Hamilton's description +facsimileTelephoneNumber: +1 415 712-2017 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 184-2209 +title: Associate Administrative Punk +userPassword: Password1 +uid: HamiltoS +givenName: Sherri +mail: HamiltoS@548e0585ebf342b985467eca55f4e5f8.bitwarden.com +carLicense: AB905E +departmentNumber: 3041 +employeeType: Normal +homePhone: +1 415 271-9542 +initials: S. H. +mobile: +1 415 917-4706 +pager: +1 415 995-1509 +roomNumber: 8287 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvaro Gopaul +sn: Gopaul +description: This is Alvaro Gopaul's description +facsimileTelephoneNumber: +1 213 255-7367 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 151-5342 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: GopaulA +givenName: Alvaro +mail: GopaulA@b95980740e3e4af9a8e0bdf7f4c5cc79.bitwarden.com +carLicense: DVSKHD +departmentNumber: 8684 +employeeType: Employee +homePhone: +1 213 817-6144 +initials: A. G. +mobile: +1 213 610-4039 +pager: +1 213 408-8828 +roomNumber: 8483 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kameko Lozier +sn: Lozier +description: This is Kameko Lozier's description +facsimileTelephoneNumber: +1 804 604-5884 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 804 889-1201 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: LozierK +givenName: Kameko +mail: LozierK@2837fee1af77497ebd94556ee2aed90f.bitwarden.com +carLicense: DYIYTC +departmentNumber: 6586 +employeeType: Normal +homePhone: +1 804 898-6271 +initials: K. L. +mobile: +1 804 504-2779 +pager: +1 804 102-7558 +roomNumber: 8466 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cariotta Loyst +sn: Loyst +description: This is Cariotta Loyst's description +facsimileTelephoneNumber: +1 804 368-2478 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 267-2600 +title: Supreme Administrative Stooge +userPassword: Password1 +uid: LoystC +givenName: Cariotta +mail: LoystC@9ce6bf5980404783a2a6de74e34f57ce.bitwarden.com +carLicense: D3HTM0 +departmentNumber: 2276 +employeeType: Normal +homePhone: +1 804 558-4434 +initials: C. L. +mobile: +1 804 754-4801 +pager: +1 804 589-8754 +roomNumber: 8678 +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alisa Centre +sn: Centre +description: This is Alisa Centre's description +facsimileTelephoneNumber: +1 408 596-7749 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 408 809-9169 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: CentreA +givenName: Alisa +mail: CentreA@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com +carLicense: YYJSEL +departmentNumber: 4519 +employeeType: Contract +homePhone: +1 408 930-7117 +initials: A. C. +mobile: +1 408 347-4286 +pager: +1 408 277-4052 +roomNumber: 8704 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shanon Vexler +sn: Vexler +description: This is Shanon Vexler's description +facsimileTelephoneNumber: +1 213 821-2939 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 520-8979 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: VexlerS +givenName: Shanon +mail: VexlerS@579e377dbccf49f9a1d3ddb8cb18a335.bitwarden.com +carLicense: UQUOAY +departmentNumber: 1442 +employeeType: Contract +homePhone: +1 213 448-2117 +initials: S. V. +mobile: +1 213 852-8670 +pager: +1 213 186-5634 +roomNumber: 8858 +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Air Falkner +sn: Falkner +description: This is Air Falkner's description +facsimileTelephoneNumber: +1 818 606-2321 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 818 644-2083 +title: Chief Administrative Janitor +userPassword: Password1 +uid: FalknerA +givenName: Air +mail: FalknerA@e6c11ea0a5f743ce85492782888f6da6.bitwarden.com +carLicense: CI1KS8 +departmentNumber: 8614 +employeeType: Contract +homePhone: +1 818 418-2320 +initials: A. F. +mobile: +1 818 598-9632 +pager: +1 818 844-7448 +roomNumber: 8344 +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Burton Backshall,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Burton Backshall +sn: Backshall +description: This is Burton Backshall's description +facsimileTelephoneNumber: +1 804 108-1992 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 324-2508 +title: Chief Product Development Madonna +userPassword: Password1 +uid: BackshaB +givenName: Burton +mail: BackshaB@d0791fb71f15494a9e924795bc26c624.bitwarden.com +carLicense: S4D0VT +departmentNumber: 3950 +employeeType: Normal +homePhone: +1 804 418-2575 +initials: B. B. +mobile: +1 804 754-9099 +pager: +1 804 235-2120 +roomNumber: 8549 +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frinel Beeston +sn: Beeston +description: This is Frinel Beeston's description +facsimileTelephoneNumber: +1 415 366-6365 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 765-8800 +title: Junior Product Development Manager +userPassword: Password1 +uid: BeestonF +givenName: Frinel +mail: BeestonF@c2fbe2791d9c4564ab131c65109368d4.bitwarden.com +carLicense: 1SMRMC +departmentNumber: 5890 +employeeType: Employee +homePhone: +1 415 217-3877 +initials: F. B. +mobile: +1 415 557-4203 +pager: +1 415 592-5767 +roomNumber: 8223 +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mahmoud Namiki +sn: Namiki +description: This is Mahmoud Namiki's description +facsimileTelephoneNumber: +1 804 517-1320 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 804 875-2228 +title: Chief Peons Engineer +userPassword: Password1 +uid: NamikiM +givenName: Mahmoud +mail: NamikiM@1bd9378f4faa43eeb60412b52d7ba309.bitwarden.com +carLicense: C3KSLQ +departmentNumber: 7870 +employeeType: Employee +homePhone: +1 804 817-8381 +initials: M. N. +mobile: +1 804 808-2111 +pager: +1 804 363-5856 +roomNumber: 9950 +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hpone Paryag +sn: Paryag +description: This is Hpone Paryag's description +facsimileTelephoneNumber: +1 510 765-1630 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 768-6587 +title: Master Management Stooge +userPassword: Password1 +uid: ParyagH +givenName: Hpone +mail: ParyagH@9aa79f8c69db4e08af4e7f9de400cc67.bitwarden.com +carLicense: 44F8T6 +departmentNumber: 5772 +employeeType: Contract +homePhone: +1 510 347-8613 +initials: H. P. +mobile: +1 510 927-9552 +pager: +1 510 922-8481 +roomNumber: 8121 +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alison Hunnicutt +sn: Hunnicutt +description: This is Alison Hunnicutt's description +facsimileTelephoneNumber: +1 818 728-8337 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 112-4895 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: HunnicuA +givenName: Alison +mail: HunnicuA@b20e95bb821d468897ef10c14e5d7732.bitwarden.com +carLicense: QQ162U +departmentNumber: 4613 +employeeType: Normal +homePhone: +1 818 642-4161 +initials: A. H. +mobile: +1 818 733-4578 +pager: +1 818 984-3676 +roomNumber: 8679 +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sieber Sallee +sn: Sallee +description: This is Sieber Sallee's description +facsimileTelephoneNumber: +1 510 116-1532 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 774-9397 +title: Junior Payroll Dictator +userPassword: Password1 +uid: SalleeS +givenName: Sieber +mail: SalleeS@b39d8f666f1848e6abb69d85d224a354.bitwarden.com +carLicense: UQW89A +departmentNumber: 6165 +employeeType: Contract +homePhone: +1 510 176-6099 +initials: S. S. +mobile: +1 510 399-1857 +pager: +1 510 955-7363 +roomNumber: 9689 +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rochette Kelleher +sn: Kelleher +description: This is Rochette Kelleher's description +facsimileTelephoneNumber: +1 510 382-9944 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 448-4733 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: KelleheR +givenName: Rochette +mail: KelleheR@f89cfd7b6c774159aa1072f91e39c57d.bitwarden.com +carLicense: TOWIOY +departmentNumber: 9932 +employeeType: Contract +homePhone: +1 510 659-6083 +initials: R. K. +mobile: +1 510 644-2571 +pager: +1 510 390-7289 +roomNumber: 8681 +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Caria Iribarren,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caria Iribarren +sn: Iribarren +description: This is Caria Iribarren's description +facsimileTelephoneNumber: +1 206 729-2304 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 474-3883 +title: Junior Payroll Fellow +userPassword: Password1 +uid: IribarrC +givenName: Caria +mail: IribarrC@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com +carLicense: 6V84CJ +departmentNumber: 4882 +employeeType: Employee +homePhone: +1 206 379-6576 +initials: C. I. +mobile: +1 206 693-6730 +pager: +1 206 564-9140 +roomNumber: 9127 +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odelle Translations +sn: Translations +description: This is Odelle Translations's description +facsimileTelephoneNumber: +1 408 823-3331 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 228-1972 +title: Chief Product Development Artist +userPassword: Password1 +uid: TranslaO +givenName: Odelle +mail: TranslaO@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com +carLicense: WL8BWN +departmentNumber: 1029 +employeeType: Normal +homePhone: +1 408 212-8842 +initials: O. T. +mobile: +1 408 365-1758 +pager: +1 408 429-2363 +roomNumber: 8896 +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carri Putman +sn: Putman +description: This is Carri Putman's description +facsimileTelephoneNumber: +1 213 600-4275 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 900-8919 +title: Associate Human Resources Figurehead +userPassword: Password1 +uid: PutmanC +givenName: Carri +mail: PutmanC@e4e6dd48bdee49b19bac8627f30f860e.bitwarden.com +carLicense: TC2MT1 +departmentNumber: 9919 +employeeType: Contract +homePhone: +1 213 629-8273 +initials: C. P. +mobile: +1 213 447-9103 +pager: +1 213 775-2486 +roomNumber: 9062 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emelia McDonough +sn: McDonough +description: This is Emelia McDonough's description +facsimileTelephoneNumber: +1 804 231-8000 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 804 753-1322 +title: Associate Product Testing Stooge +userPassword: Password1 +uid: McDonouE +givenName: Emelia +mail: McDonouE@d7308e0ca15544e4a4a8b07f0f8e915f.bitwarden.com +carLicense: NJ5D2S +departmentNumber: 7858 +employeeType: Employee +homePhone: +1 804 895-1352 +initials: E. M. +mobile: +1 804 149-1495 +pager: +1 804 705-4999 +roomNumber: 9854 +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Scarlet Netzke +sn: Netzke +description: This is Scarlet Netzke's description +facsimileTelephoneNumber: +1 408 276-7143 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 369-5357 +title: Chief Product Development Assistant +userPassword: Password1 +uid: NetzkeS +givenName: Scarlet +mail: NetzkeS@04d1c6c3175f4974b260a83a63c42a2e.bitwarden.com +carLicense: OTW8VP +departmentNumber: 3360 +employeeType: Normal +homePhone: +1 408 180-9908 +initials: S. N. +mobile: +1 408 485-9072 +pager: +1 408 764-2757 +roomNumber: 8726 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verene Rigstad +sn: Rigstad +description: This is Verene Rigstad's description +facsimileTelephoneNumber: +1 804 145-5885 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 718-9424 +title: Chief Management Assistant +userPassword: Password1 +uid: RigstadV +givenName: Verene +mail: RigstadV@69ee17ca1fce4d84a70a5da5e4623d42.bitwarden.com +carLicense: KASAWL +departmentNumber: 1864 +employeeType: Employee +homePhone: +1 804 174-6477 +initials: V. R. +mobile: +1 804 948-3297 +pager: +1 804 948-3091 +roomNumber: 8855 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corette Barbour +sn: Barbour +description: This is Corette Barbour's description +facsimileTelephoneNumber: +1 408 796-8322 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 785-2691 +title: Master Peons Janitor +userPassword: Password1 +uid: BarbourC +givenName: Corette +mail: BarbourC@f7bb4a6bddd0428a80f02d8f054f1d38.bitwarden.com +carLicense: G8UB4A +departmentNumber: 1771 +employeeType: Contract +homePhone: +1 408 424-3723 +initials: C. B. +mobile: +1 408 730-6312 +pager: +1 408 156-6342 +roomNumber: 8174 +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Becka McConkey +sn: McConkey +description: This is Becka McConkey's description +facsimileTelephoneNumber: +1 415 736-5088 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 507-2238 +title: Associate Administrative Mascot +userPassword: Password1 +uid: McConkeB +givenName: Becka +mail: McConkeB@f1434a2496e04947b22957e2d4157e2f.bitwarden.com +carLicense: 9N11PA +departmentNumber: 9600 +employeeType: Contract +homePhone: +1 415 820-3398 +initials: B. M. +mobile: +1 415 578-4244 +pager: +1 415 251-3981 +roomNumber: 9649 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elvina Thomson +sn: Thomson +description: This is Elvina Thomson's description +facsimileTelephoneNumber: +1 804 284-3068 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 154-8729 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: ThomsonE +givenName: Elvina +mail: ThomsonE@f4bc7e00c89b48dd98661e0980828f00.bitwarden.com +carLicense: 4TMEWR +departmentNumber: 9537 +employeeType: Employee +homePhone: +1 804 564-4148 +initials: E. T. +mobile: +1 804 447-3145 +pager: +1 804 738-1524 +roomNumber: 8935 +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosalynd Spitzer +sn: Spitzer +description: This is Rosalynd Spitzer's description +facsimileTelephoneNumber: +1 408 998-9339 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 185-6568 +title: Supreme Human Resources Figurehead +userPassword: Password1 +uid: SpitzerR +givenName: Rosalynd +mail: SpitzerR@4583e86a2ba94a5da0ee973472b7f221.bitwarden.com +carLicense: YLF3EL +departmentNumber: 8981 +employeeType: Contract +homePhone: +1 408 628-2922 +initials: R. S. +mobile: +1 408 264-4480 +pager: +1 408 965-8967 +roomNumber: 9587 +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shamshad Kuntova +sn: Kuntova +description: This is Shamshad Kuntova's description +facsimileTelephoneNumber: +1 818 688-2428 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 854-9115 +title: Chief Management Writer +userPassword: Password1 +uid: KuntovaS +givenName: Shamshad +mail: KuntovaS@54f117c8b36b486ab03de0f2d082701e.bitwarden.com +carLicense: 6RMAWT +departmentNumber: 3249 +employeeType: Employee +homePhone: +1 818 146-4251 +initials: S. K. +mobile: +1 818 997-8830 +pager: +1 818 724-4362 +roomNumber: 9351 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Barbey Hews,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbey Hews +sn: Hews +description: This is Barbey Hews's description +facsimileTelephoneNumber: +1 510 408-1677 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 135-8772 +title: Junior Payroll Assistant +userPassword: Password1 +uid: HewsB +givenName: Barbey +mail: HewsB@a7a2ea5054874ae4b56e15a527bea910.bitwarden.com +carLicense: 3PQ5AT +departmentNumber: 3407 +employeeType: Employee +homePhone: +1 510 654-9155 +initials: B. H. +mobile: +1 510 609-6394 +pager: +1 510 995-9588 +roomNumber: 8743 +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olympie Sails +sn: Sails +description: This is Olympie Sails's description +facsimileTelephoneNumber: +1 804 365-5739 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 862-2558 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: SailsO +givenName: Olympie +mail: SailsO@00ba8548c9214cafaefbf458359d4e04.bitwarden.com +carLicense: TDB99R +departmentNumber: 4612 +employeeType: Employee +homePhone: +1 804 907-2447 +initials: O. S. +mobile: +1 804 175-5923 +pager: +1 804 284-7119 +roomNumber: 8725 +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bessie Kurian +sn: Kurian +description: This is Bessie Kurian's description +facsimileTelephoneNumber: +1 408 237-7415 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 408 508-9707 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: KurianB +givenName: Bessie +mail: KurianB@8f19a5dea8ea45418a7a41a37029db9d.bitwarden.com +carLicense: YQAKHG +departmentNumber: 1441 +employeeType: Normal +homePhone: +1 408 718-5752 +initials: B. K. +mobile: +1 408 407-4682 +pager: +1 408 639-8215 +roomNumber: 8079 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardella Nagai +sn: Nagai +description: This is Ardella Nagai's description +facsimileTelephoneNumber: +1 818 535-9905 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 918-9964 +title: Junior Product Testing Czar +userPassword: Password1 +uid: NagaiA +givenName: Ardella +mail: NagaiA@d8616cd8f0a04953a01e474cf74f8ce6.bitwarden.com +carLicense: YIA8LV +departmentNumber: 6231 +employeeType: Contract +homePhone: +1 818 305-7235 +initials: A. N. +mobile: +1 818 797-9739 +pager: +1 818 435-7706 +roomNumber: 8169 +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bette Pipit +sn: Pipit +description: This is Bette Pipit's description +facsimileTelephoneNumber: +1 415 868-6052 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 628-3225 +title: Master Product Development Madonna +userPassword: Password1 +uid: PipitB +givenName: Bette +mail: PipitB@b417b358872d4f06a467efc0ad01ed42.bitwarden.com +carLicense: IN9IIF +departmentNumber: 2956 +employeeType: Employee +homePhone: +1 415 900-2196 +initials: B. P. +mobile: +1 415 897-8346 +pager: +1 415 767-6740 +roomNumber: 9888 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sigrid Strock +sn: Strock +description: This is Sigrid Strock's description +facsimileTelephoneNumber: +1 804 414-3647 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 766-8504 +title: Junior Human Resources Writer +userPassword: Password1 +uid: StrockS +givenName: Sigrid +mail: StrockS@9ef348c30ab2422686d3631e1278083f.bitwarden.com +carLicense: RPRHFJ +departmentNumber: 4451 +employeeType: Employee +homePhone: +1 804 767-8662 +initials: S. S. +mobile: +1 804 859-2408 +pager: +1 804 588-7723 +roomNumber: 8768 +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benne Baab +sn: Baab +description: This is Benne Baab's description +facsimileTelephoneNumber: +1 818 269-1058 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 705-2832 +title: Supreme Administrative Architect +userPassword: Password1 +uid: BaabB +givenName: Benne +mail: BaabB@baaf0b21059d49b7b0cbaab183707e97.bitwarden.com +carLicense: BKW4OK +departmentNumber: 9931 +employeeType: Contract +homePhone: +1 818 830-1848 +initials: B. B. +mobile: +1 818 195-1717 +pager: +1 818 336-5344 +roomNumber: 8552 +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zohar Hauge +sn: Hauge +description: This is Zohar Hauge's description +facsimileTelephoneNumber: +1 818 183-5550 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 875-9153 +title: Associate Human Resources Writer +userPassword: Password1 +uid: HaugeZ +givenName: Zohar +mail: HaugeZ@48f1828297214bd19c99e71d64dfcbf9.bitwarden.com +carLicense: X7J7L8 +departmentNumber: 4484 +employeeType: Employee +homePhone: +1 818 662-5092 +initials: Z. H. +mobile: +1 818 216-3571 +pager: +1 818 287-9895 +roomNumber: 9317 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melloney Clairmont +sn: Clairmont +description: This is Melloney Clairmont's description +facsimileTelephoneNumber: +1 804 255-2773 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 804 920-9383 +title: Junior Human Resources Consultant +userPassword: Password1 +uid: ClairmoM +givenName: Melloney +mail: ClairmoM@26ece7db144b41bb92ce5c1250e537b0.bitwarden.com +carLicense: SA2QWI +departmentNumber: 7625 +employeeType: Employee +homePhone: +1 804 359-4438 +initials: M. C. +mobile: +1 804 782-4135 +pager: +1 804 651-5931 +roomNumber: 8565 +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LyddaJune Challice +sn: Challice +description: This is LyddaJune Challice's description +facsimileTelephoneNumber: +1 213 487-6720 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 165-6182 +title: Chief Administrative Madonna +userPassword: Password1 +uid: ChallicL +givenName: LyddaJune +mail: ChallicL@25d255df81334378bc3576c7c1d51739.bitwarden.com +carLicense: 2S2GMM +departmentNumber: 9318 +employeeType: Contract +homePhone: +1 213 848-6776 +initials: L. C. +mobile: +1 213 627-2966 +pager: +1 213 914-7238 +roomNumber: 9146 +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ediva Hately +sn: Hately +description: This is Ediva Hately's description +facsimileTelephoneNumber: +1 510 208-5326 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 960-3743 +title: Supreme Payroll Stooge +userPassword: Password1 +uid: HatelyE +givenName: Ediva +mail: HatelyE@ec52acac521a47c8bb3c3eba39b11afe.bitwarden.com +carLicense: 9AQQVY +departmentNumber: 4524 +employeeType: Contract +homePhone: +1 510 437-3839 +initials: E. H. +mobile: +1 510 487-9783 +pager: +1 510 588-2249 +roomNumber: 9835 +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faizal Vezina +sn: Vezina +description: This is Faizal Vezina's description +facsimileTelephoneNumber: +1 206 409-4453 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 857-7214 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: VezinaF +givenName: Faizal +mail: VezinaF@6dd87ab9e5af49468fc97aebdbd7b449.bitwarden.com +carLicense: LXY99N +departmentNumber: 6069 +employeeType: Contract +homePhone: +1 206 932-6613 +initials: F. V. +mobile: +1 206 332-3284 +pager: +1 206 221-7419 +roomNumber: 8793 +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mehetabel Yarbrough +sn: Yarbrough +description: This is Mehetabel Yarbrough's description +facsimileTelephoneNumber: +1 804 804-3506 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 789-9162 +title: Master Product Testing Warrior +userPassword: Password1 +uid: YarbrouM +givenName: Mehetabel +mail: YarbrouM@d1612f2d13a644a1b4c476bf4354cf19.bitwarden.com +carLicense: BUN86E +departmentNumber: 7588 +employeeType: Normal +homePhone: +1 804 312-1030 +initials: M. Y. +mobile: +1 804 376-4062 +pager: +1 804 507-1322 +roomNumber: 9611 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Champathon Bhatti +sn: Bhatti +description: This is Champathon Bhatti's description +facsimileTelephoneNumber: +1 818 920-7458 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 818 215-2126 +title: Chief Management Writer +userPassword: Password1 +uid: BhattiC +givenName: Champathon +mail: BhattiC@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com +carLicense: Y56CJ2 +departmentNumber: 2980 +employeeType: Contract +homePhone: +1 818 561-5275 +initials: C. B. +mobile: +1 818 179-5513 +pager: +1 818 712-3774 +roomNumber: 8153 +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Habib Barreyre +sn: Barreyre +description: This is Habib Barreyre's description +facsimileTelephoneNumber: +1 415 982-5518 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 773-1812 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: BarreyrH +givenName: Habib +mail: BarreyrH@1702c7050ede4a30a493b614c6f96d2a.bitwarden.com +carLicense: D7V3G9 +departmentNumber: 2763 +employeeType: Normal +homePhone: +1 415 920-4837 +initials: H. B. +mobile: +1 415 918-2048 +pager: +1 415 186-5313 +roomNumber: 8666 +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nerita Jansen +sn: Jansen +description: This is Nerita Jansen's description +facsimileTelephoneNumber: +1 213 625-6075 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 213 954-4618 +title: Master Payroll Janitor +userPassword: Password1 +uid: JansenN +givenName: Nerita +mail: JansenN@f2c84157e6154587ab1b35a9267acfc4.bitwarden.com +carLicense: TA9H08 +departmentNumber: 1438 +employeeType: Employee +homePhone: +1 213 594-4707 +initials: N. J. +mobile: +1 213 627-4298 +pager: +1 213 802-6752 +roomNumber: 8014 +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rey Bayly +sn: Bayly +description: This is Rey Bayly's description +facsimileTelephoneNumber: +1 510 484-9533 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 510 921-5753 +title: Chief Product Testing Madonna +userPassword: Password1 +uid: BaylyR +givenName: Rey +mail: BaylyR@ad10fda7d62846699bd55fa5e7fba7a1.bitwarden.com +carLicense: HDSXTR +departmentNumber: 9890 +employeeType: Normal +homePhone: +1 510 712-4078 +initials: R. B. +mobile: +1 510 152-4135 +pager: +1 510 304-8291 +roomNumber: 8821 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vivian Faruque,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivian Faruque +sn: Faruque +description: This is Vivian Faruque's description +facsimileTelephoneNumber: +1 415 858-4559 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 647-2102 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: FaruqueV +givenName: Vivian +mail: FaruqueV@a3ff9ad4378e4e7583f3b4b9731af8f9.bitwarden.com +carLicense: NJJ9S6 +departmentNumber: 2417 +employeeType: Normal +homePhone: +1 415 176-2452 +initials: V. F. +mobile: +1 415 199-4010 +pager: +1 415 551-1919 +roomNumber: 8211 +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steve Iyengar +sn: Iyengar +description: This is Steve Iyengar's description +facsimileTelephoneNumber: +1 415 183-2078 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 488-5274 +title: Associate Product Development Evangelist +userPassword: Password1 +uid: IyengarS +givenName: Steve +mail: IyengarS@2e4bc239cf294f54ac5f0943a69682af.bitwarden.com +carLicense: A4UTHM +departmentNumber: 2622 +employeeType: Normal +homePhone: +1 415 441-2622 +initials: S. I. +mobile: +1 415 788-8983 +pager: +1 415 332-3576 +roomNumber: 8069 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martina Fuson +sn: Fuson +description: This is Martina Fuson's description +facsimileTelephoneNumber: +1 510 811-3395 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 447-5076 +title: Associate Human Resources Punk +userPassword: Password1 +uid: FusonM +givenName: Martina +mail: FusonM@0ae738aab8b34e09a528e238e7de4218.bitwarden.com +carLicense: 9QGRGS +departmentNumber: 7824 +employeeType: Contract +homePhone: +1 510 311-7769 +initials: M. F. +mobile: +1 510 628-1878 +pager: +1 510 462-4884 +roomNumber: 8003 +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dix NeKueey +sn: NeKueey +description: This is Dix NeKueey's description +facsimileTelephoneNumber: +1 818 997-4845 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 337-2474 +title: Junior Human Resources Engineer +userPassword: Password1 +uid: NeKueeyD +givenName: Dix +mail: NeKueeyD@8a81a9b500bd4a66b7be9ae0b34b3c40.bitwarden.com +carLicense: CPS6LN +departmentNumber: 2821 +employeeType: Contract +homePhone: +1 818 864-9854 +initials: D. N. +mobile: +1 818 460-2554 +pager: +1 818 405-8228 +roomNumber: 9632 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glenda Langenberg +sn: Langenberg +description: This is Glenda Langenberg's description +facsimileTelephoneNumber: +1 804 565-1801 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 584-9925 +title: Junior Janitorial Czar +userPassword: Password1 +uid: LangenbG +givenName: Glenda +mail: LangenbG@52c0af83c3aa40458e4bfbccce98b0cc.bitwarden.com +carLicense: HM5UFE +departmentNumber: 9196 +employeeType: Contract +homePhone: +1 804 278-9394 +initials: G. L. +mobile: +1 804 263-2708 +pager: +1 804 223-5005 +roomNumber: 9198 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Layananda Hrushowy +sn: Hrushowy +description: This is Layananda Hrushowy's description +facsimileTelephoneNumber: +1 213 907-9777 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 651-8307 +title: Master Human Resources Manager +userPassword: Password1 +uid: HrushowL +givenName: Layananda +mail: HrushowL@38306b84edde4354aecf7858df87e85c.bitwarden.com +carLicense: FLBSTW +departmentNumber: 5984 +employeeType: Normal +homePhone: +1 213 307-1226 +initials: L. H. +mobile: +1 213 454-1758 +pager: +1 213 542-5372 +roomNumber: 8905 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maude Wippel +sn: Wippel +description: This is Maude Wippel's description +facsimileTelephoneNumber: +1 206 897-7298 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 333-8061 +title: Junior Human Resources Consultant +userPassword: Password1 +uid: WippelM +givenName: Maude +mail: WippelM@35f4596c2f6f4d62a06cffe0bc4a52f3.bitwarden.com +carLicense: S5W2NA +departmentNumber: 7305 +employeeType: Contract +homePhone: +1 206 968-3724 +initials: M. W. +mobile: +1 206 377-5037 +pager: +1 206 247-2405 +roomNumber: 9066 +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherye Tanner +sn: Tanner +description: This is Cherye Tanner's description +facsimileTelephoneNumber: +1 408 350-6145 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 655-3414 +title: Supreme Product Development Madonna +userPassword: Password1 +uid: TannerC +givenName: Cherye +mail: TannerC@7798e7042f70474aba3b67fa0dae49e5.bitwarden.com +carLicense: V5DTR6 +departmentNumber: 9250 +employeeType: Employee +homePhone: +1 408 609-4618 +initials: C. T. +mobile: +1 408 660-3196 +pager: +1 408 740-4285 +roomNumber: 8247 +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edeline Kingdon +sn: Kingdon +description: This is Edeline Kingdon's description +facsimileTelephoneNumber: +1 510 950-2010 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 271-1077 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: KingdonE +givenName: Edeline +mail: KingdonE@4a47e69492284601911d68b00175e387.bitwarden.com +carLicense: J20T43 +departmentNumber: 7255 +employeeType: Normal +homePhone: +1 510 612-7384 +initials: E. K. +mobile: +1 510 225-7252 +pager: +1 510 933-6668 +roomNumber: 9470 +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nadya Security,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nadya Security +sn: Security +description: This is Nadya Security's description +facsimileTelephoneNumber: +1 818 841-1179 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 757-4533 +title: Master Product Development Assistant +userPassword: Password1 +uid: SecuritN +givenName: Nadya +mail: SecuritN@b9738f973d174fefb1c145c3c8510e65.bitwarden.com +carLicense: QRC278 +departmentNumber: 9716 +employeeType: Normal +homePhone: +1 818 899-8108 +initials: N. S. +mobile: +1 818 725-6531 +pager: +1 818 513-4789 +roomNumber: 8343 +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com + +dn: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Murray Longo +sn: Longo +description: This is Murray Longo's description +facsimileTelephoneNumber: +1 408 756-3460 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 489-6824 +title: Chief Peons Madonna +userPassword: Password1 +uid: LongoM +givenName: Murray +mail: LongoM@28e53bb2a33341d2aa3d71254b03f94e.bitwarden.com +carLicense: 7XGL84 +departmentNumber: 1305 +employeeType: Normal +homePhone: +1 408 786-9942 +initials: M. L. +mobile: +1 408 488-2711 +pager: +1 408 559-1331 +roomNumber: 8998 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catherin Witzman +sn: Witzman +description: This is Catherin Witzman's description +facsimileTelephoneNumber: +1 206 974-8735 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 816-7326 +title: Supreme Management Janitor +userPassword: Password1 +uid: WitzmanC +givenName: Catherin +mail: WitzmanC@9e6632ca10d4463a8725e828e08ec1be.bitwarden.com +carLicense: 5HS6TH +departmentNumber: 8922 +employeeType: Employee +homePhone: +1 206 576-3940 +initials: C. W. +mobile: +1 206 498-6291 +pager: +1 206 464-6117 +roomNumber: 9952 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harrison Salembier +sn: Salembier +description: This is Harrison Salembier's description +facsimileTelephoneNumber: +1 408 372-7570 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 387-1837 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: SalembiH +givenName: Harrison +mail: SalembiH@ac35a0f082f64c8fad3930aef071e266.bitwarden.com +carLicense: 170S2W +departmentNumber: 3109 +employeeType: Normal +homePhone: +1 408 372-3384 +initials: H. S. +mobile: +1 408 772-1782 +pager: +1 408 381-7545 +roomNumber: 8740 +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Judi Nahata +sn: Nahata +description: This is Judi Nahata's description +facsimileTelephoneNumber: +1 213 860-9264 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 831-6295 +title: Supreme Payroll Vice President +userPassword: Password1 +uid: NahataJ +givenName: Judi +mail: NahataJ@5fa2601aad7947d29e66e0d319cf4fe6.bitwarden.com +carLicense: MM3HMU +departmentNumber: 9180 +employeeType: Employee +homePhone: +1 213 612-4727 +initials: J. N. +mobile: +1 213 242-2899 +pager: +1 213 192-8510 +roomNumber: 8197 +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rudie Unxlb +sn: Unxlb +description: This is Rudie Unxlb's description +facsimileTelephoneNumber: +1 408 691-8332 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 471-3875 +title: Junior Management Warrior +userPassword: Password1 +uid: UnxlbR +givenName: Rudie +mail: UnxlbR@70f1ce8795a5424f95be4cd2035c7da5.bitwarden.com +carLicense: 447MG4 +departmentNumber: 4037 +employeeType: Contract +homePhone: +1 408 617-4420 +initials: R. U. +mobile: +1 408 987-5433 +pager: +1 408 492-4068 +roomNumber: 8495 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rochell Walkowiak +sn: Walkowiak +description: This is Rochell Walkowiak's description +facsimileTelephoneNumber: +1 206 519-5523 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 587-5820 +title: Junior Product Testing Technician +userPassword: Password1 +uid: WalkowiR +givenName: Rochell +mail: WalkowiR@68160ac83a0c4294838110992a71a0f1.bitwarden.com +carLicense: 3GE7IM +departmentNumber: 4803 +employeeType: Employee +homePhone: +1 206 908-3478 +initials: R. W. +mobile: +1 206 989-1692 +pager: +1 206 388-5775 +roomNumber: 9516 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noni Garwood +sn: Garwood +description: This is Noni Garwood's description +facsimileTelephoneNumber: +1 818 134-1280 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 818 410-4278 +title: Associate Janitorial Technician +userPassword: Password1 +uid: GarwoodN +givenName: Noni +mail: GarwoodN@5a401695e3b247eaaefdf24718c62818.bitwarden.com +carLicense: 0Q3LID +departmentNumber: 3357 +employeeType: Normal +homePhone: +1 818 328-4179 +initials: N. G. +mobile: +1 818 899-6911 +pager: +1 818 426-7539 +roomNumber: 9085 +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melanie Sager +sn: Sager +description: This is Melanie Sager's description +facsimileTelephoneNumber: +1 206 279-2368 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 568-4131 +title: Chief Administrative Artist +userPassword: Password1 +uid: SagerM +givenName: Melanie +mail: SagerM@b9f5d400bf0646fc915b7405c1e68fb5.bitwarden.com +carLicense: 34HECM +departmentNumber: 2510 +employeeType: Employee +homePhone: +1 206 738-8572 +initials: M. S. +mobile: +1 206 219-6859 +pager: +1 206 100-2292 +roomNumber: 8663 +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Breena Psklib +sn: Psklib +description: This is Breena Psklib's description +facsimileTelephoneNumber: +1 510 889-2566 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 758-5405 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: PsklibB +givenName: Breena +mail: PsklibB@78e43a217f1544b688e5b552cf94a4d4.bitwarden.com +carLicense: 9IY4L6 +departmentNumber: 4282 +employeeType: Normal +homePhone: +1 510 119-3941 +initials: B. P. +mobile: +1 510 160-2038 +pager: +1 510 126-5021 +roomNumber: 9657 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jeni Gros,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeni Gros +sn: Gros +description: This is Jeni Gros's description +facsimileTelephoneNumber: +1 213 102-7509 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 804-1487 +title: Chief Peons Artist +userPassword: Password1 +uid: GrosJ +givenName: Jeni +mail: GrosJ@26c6bb248ba04843bb1af218af492cce.bitwarden.com +carLicense: OJAG1L +departmentNumber: 1735 +employeeType: Contract +homePhone: +1 213 540-5098 +initials: J. G. +mobile: +1 213 289-8098 +pager: +1 213 612-2675 +roomNumber: 8691 +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoda Mejury +sn: Mejury +description: This is Yoda Mejury's description +facsimileTelephoneNumber: +1 206 340-5526 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 767-8371 +title: Master Administrative Punk +userPassword: Password1 +uid: MejuryY +givenName: Yoda +mail: MejuryY@772f2352dfda4e68a2e93adac56a7699.bitwarden.com +carLicense: JAIA4O +departmentNumber: 4423 +employeeType: Employee +homePhone: +1 206 669-6719 +initials: Y. M. +mobile: +1 206 436-5813 +pager: +1 206 701-1964 +roomNumber: 8098 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charla Mahbeer +sn: Mahbeer +description: This is Charla Mahbeer's description +facsimileTelephoneNumber: +1 804 248-8122 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 852-2041 +title: Master Payroll Director +userPassword: Password1 +uid: MahbeerC +givenName: Charla +mail: MahbeerC@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com +carLicense: 057WX0 +departmentNumber: 9979 +employeeType: Normal +homePhone: +1 804 146-2626 +initials: C. M. +mobile: +1 804 734-4657 +pager: +1 804 176-8848 +roomNumber: 9511 +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roana Jurman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roana Jurman +sn: Jurman +description: This is Roana Jurman's description +facsimileTelephoneNumber: +1 804 829-1137 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 529-4586 +title: Chief Administrative Grunt +userPassword: Password1 +uid: JurmanR +givenName: Roana +mail: JurmanR@9dfbdbf789f545c2997fc26ecdaa5624.bitwarden.com +carLicense: D2ID0D +departmentNumber: 7302 +employeeType: Employee +homePhone: +1 804 913-9102 +initials: R. J. +mobile: +1 804 183-3437 +pager: +1 804 298-6482 +roomNumber: 8014 +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eustacia Efthim +sn: Efthim +description: This is Eustacia Efthim's description +facsimileTelephoneNumber: +1 804 530-6347 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 176-8863 +title: Chief Product Testing Director +userPassword: Password1 +uid: EfthimE +givenName: Eustacia +mail: EfthimE@dfe553cd1a3f4695943b7b16fc34c074.bitwarden.com +carLicense: CJ1E8I +departmentNumber: 4798 +employeeType: Normal +homePhone: +1 804 223-3626 +initials: E. E. +mobile: +1 804 288-7335 +pager: +1 804 311-3137 +roomNumber: 9397 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hqs Bresnan +sn: Bresnan +description: This is Hqs Bresnan's description +facsimileTelephoneNumber: +1 510 584-9846 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 510 401-4460 +title: Chief Administrative Dictator +userPassword: Password1 +uid: BresnanH +givenName: Hqs +mail: BresnanH@e43cc7ce085348f1b4b8706b3e875f12.bitwarden.com +carLicense: O2H9HO +departmentNumber: 8946 +employeeType: Contract +homePhone: +1 510 556-2810 +initials: H. B. +mobile: +1 510 865-5391 +pager: +1 510 559-4192 +roomNumber: 9561 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tuhina Syrett +sn: Syrett +description: This is Tuhina Syrett's description +facsimileTelephoneNumber: +1 510 592-7404 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 574-9777 +title: Supreme Product Development Manager +userPassword: Password1 +uid: SyrettT +givenName: Tuhina +mail: SyrettT@1f071e8813ad43c0a975571fab76b110.bitwarden.com +carLicense: 3CUPAF +departmentNumber: 6073 +employeeType: Normal +homePhone: +1 510 992-9674 +initials: T. S. +mobile: +1 510 216-3609 +pager: +1 510 787-8249 +roomNumber: 8029 +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dianemarie Schwaderer +sn: Schwaderer +description: This is Dianemarie Schwaderer's description +facsimileTelephoneNumber: +1 415 737-8636 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 415 890-8255 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: SchwadeD +givenName: Dianemarie +mail: SchwadeD@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com +carLicense: YDTQXB +departmentNumber: 5515 +employeeType: Normal +homePhone: +1 415 810-5868 +initials: D. S. +mobile: +1 415 295-9167 +pager: +1 415 419-1363 +roomNumber: 9035 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lottie Zattiero +sn: Zattiero +description: This is Lottie Zattiero's description +facsimileTelephoneNumber: +1 818 595-5540 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 429-6089 +title: Master Janitorial Punk +userPassword: Password1 +uid: ZattierL +givenName: Lottie +mail: ZattierL@765c6bf8e6a844bd84fd3519331c09a2.bitwarden.com +carLicense: FX84G9 +departmentNumber: 4283 +employeeType: Contract +homePhone: +1 818 764-2560 +initials: L. Z. +mobile: +1 818 373-2724 +pager: +1 818 745-6111 +roomNumber: 8046 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Genia Oestreich,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genia Oestreich +sn: Oestreich +description: This is Genia Oestreich's description +facsimileTelephoneNumber: +1 510 611-5662 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 984-1858 +title: Junior Human Resources Mascot +userPassword: Password1 +uid: OestreiG +givenName: Genia +mail: OestreiG@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com +carLicense: DTP3GR +departmentNumber: 4435 +employeeType: Contract +homePhone: +1 510 724-4062 +initials: G. O. +mobile: +1 510 675-5166 +pager: +1 510 700-8787 +roomNumber: 8701 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lizzy Wieland +sn: Wieland +description: This is Lizzy Wieland's description +facsimileTelephoneNumber: +1 415 387-6415 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 883-9631 +title: Junior Janitorial Stooge +userPassword: Password1 +uid: WielandL +givenName: Lizzy +mail: WielandL@bcf6de0b8d2c44a68286d08f9d47b1f4.bitwarden.com +carLicense: D5A6NW +departmentNumber: 6255 +employeeType: Employee +homePhone: +1 415 715-1822 +initials: L. W. +mobile: +1 415 203-4717 +pager: +1 415 919-3671 +roomNumber: 9645 +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bianka Zeiger +sn: Zeiger +description: This is Bianka Zeiger's description +facsimileTelephoneNumber: +1 510 931-1671 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 567-9153 +title: Junior Management Fellow +userPassword: Password1 +uid: ZeigerB +givenName: Bianka +mail: ZeigerB@e02ec4faef1b4085b1936ed885e8098e.bitwarden.com +carLicense: I3JJB9 +departmentNumber: 4285 +employeeType: Normal +homePhone: +1 510 831-7896 +initials: B. Z. +mobile: +1 510 929-6040 +pager: +1 510 906-1756 +roomNumber: 9305 +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessalin Sauve +sn: Sauve +description: This is Jessalin Sauve's description +facsimileTelephoneNumber: +1 804 888-8759 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 597-3415 +title: Associate Payroll Warrior +userPassword: Password1 +uid: SauveJ +givenName: Jessalin +mail: SauveJ@a54e1a8d83dc4c3fb078394695fc7ec3.bitwarden.com +carLicense: WN0W2X +departmentNumber: 2497 +employeeType: Normal +homePhone: +1 804 435-1901 +initials: J. S. +mobile: +1 804 211-1549 +pager: +1 804 272-7024 +roomNumber: 9325 +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saman Dunik +sn: Dunik +description: This is Saman Dunik's description +facsimileTelephoneNumber: +1 510 151-9531 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 472-9856 +title: Master Product Development Madonna +userPassword: Password1 +uid: DunikS +givenName: Saman +mail: DunikS@e743ff560bc141ac901e6e68b4d4b309.bitwarden.com +carLicense: IWHT9B +departmentNumber: 9317 +employeeType: Employee +homePhone: +1 510 635-3552 +initials: S. D. +mobile: +1 510 715-6725 +pager: +1 510 470-1354 +roomNumber: 9548 +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giulia Bocservice +sn: Bocservice +description: This is Giulia Bocservice's description +facsimileTelephoneNumber: +1 818 625-1550 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 656-3971 +title: Master Janitorial Janitor +userPassword: Password1 +uid: BocservG +givenName: Giulia +mail: BocservG@7e77b31039db4b1f99292c84f6f816dd.bitwarden.com +carLicense: NEX1H9 +departmentNumber: 1597 +employeeType: Normal +homePhone: +1 818 575-7257 +initials: G. B. +mobile: +1 818 768-4260 +pager: +1 818 663-7421 +roomNumber: 8020 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pierre Latin +sn: Latin +description: This is Pierre Latin's description +facsimileTelephoneNumber: +1 510 396-4338 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 683-8772 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: LatinP +givenName: Pierre +mail: LatinP@644890029ffd446eb74105a23250b77a.bitwarden.com +carLicense: VEUA6I +departmentNumber: 8673 +employeeType: Normal +homePhone: +1 510 345-5730 +initials: P. L. +mobile: +1 510 704-9890 +pager: +1 510 747-8197 +roomNumber: 9715 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nariko Hobgood +sn: Hobgood +description: This is Nariko Hobgood's description +facsimileTelephoneNumber: +1 510 394-7191 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 129-9324 +title: Chief Peons Dictator +userPassword: Password1 +uid: HobgoodN +givenName: Nariko +mail: HobgoodN@9ed24949c63a464eabe81723e17de419.bitwarden.com +carLicense: 39CVBG +departmentNumber: 2807 +employeeType: Normal +homePhone: +1 510 727-7392 +initials: N. H. +mobile: +1 510 634-5556 +pager: +1 510 252-1486 +roomNumber: 8158 +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isin Scheck +sn: Scheck +description: This is Isin Scheck's description +facsimileTelephoneNumber: +1 510 630-5143 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 274-6623 +title: Chief Administrative Consultant +userPassword: Password1 +uid: ScheckI +givenName: Isin +mail: ScheckI@bc1e9c4893b549519fdc2cec6b403596.bitwarden.com +carLicense: YM77TE +departmentNumber: 1943 +employeeType: Normal +homePhone: +1 510 954-8207 +initials: I. S. +mobile: +1 510 317-4525 +pager: +1 510 982-1171 +roomNumber: 9649 +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tessy McClelland +sn: McClelland +description: This is Tessy McClelland's description +facsimileTelephoneNumber: +1 415 669-9276 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 425-6782 +title: Master Human Resources Admin +userPassword: Password1 +uid: McClellT +givenName: Tessy +mail: McClellT@60dd1cbe4aa24d86beb286bcf0b69548.bitwarden.com +carLicense: CX69QI +departmentNumber: 1950 +employeeType: Normal +homePhone: +1 415 882-1465 +initials: T. M. +mobile: +1 415 568-3132 +pager: +1 415 464-9528 +roomNumber: 9320 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dany Barel +sn: Barel +description: This is Dany Barel's description +facsimileTelephoneNumber: +1 408 700-3003 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 869-1614 +title: Master Human Resources Assistant +userPassword: Password1 +uid: BarelD +givenName: Dany +mail: BarelD@6bff82c20ec04cdbbb19d4912ec16456.bitwarden.com +carLicense: 34R7PI +departmentNumber: 4701 +employeeType: Contract +homePhone: +1 408 902-8283 +initials: D. B. +mobile: +1 408 871-1218 +pager: +1 408 979-4653 +roomNumber: 8265 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lana Ellerman +sn: Ellerman +description: This is Lana Ellerman's description +facsimileTelephoneNumber: +1 206 238-7944 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 206 765-4139 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: EllermaL +givenName: Lana +mail: EllermaL@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com +carLicense: 3IWVU4 +departmentNumber: 6998 +employeeType: Contract +homePhone: +1 206 972-3559 +initials: L. E. +mobile: +1 206 571-3723 +pager: +1 206 904-6714 +roomNumber: 8496 +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dusan Bcs,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dusan Bcs +sn: Bcs +description: This is Dusan Bcs's description +facsimileTelephoneNumber: +1 206 619-2608 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 629-6911 +title: Junior Payroll Director +userPassword: Password1 +uid: BcsD +givenName: Dusan +mail: BcsD@293ff1600ea248568d3941cc4fb51d60.bitwarden.com +carLicense: G9SD48 +departmentNumber: 6153 +employeeType: Normal +homePhone: +1 206 169-7422 +initials: D. B. +mobile: +1 206 896-2786 +pager: +1 206 417-4465 +roomNumber: 9124 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shekhar Howat +sn: Howat +description: This is Shekhar Howat's description +facsimileTelephoneNumber: +1 510 969-7243 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 622-2099 +title: Chief Administrative Fellow +userPassword: Password1 +uid: HowatS +givenName: Shekhar +mail: HowatS@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com +carLicense: RXUK3I +departmentNumber: 9483 +employeeType: Contract +homePhone: +1 510 720-7215 +initials: S. H. +mobile: +1 510 946-2784 +pager: +1 510 246-3198 +roomNumber: 8538 +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulcie deCHABERT +sn: deCHABERT +description: This is Dulcie deCHABERT's description +facsimileTelephoneNumber: +1 818 796-5539 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 400-6343 +title: Associate Product Development Dictator +userPassword: Password1 +uid: deCHABED +givenName: Dulcie +mail: deCHABED@4dd695555b2a49e2b74882d7eff564a3.bitwarden.com +carLicense: 4C9LBH +departmentNumber: 3487 +employeeType: Normal +homePhone: +1 818 481-5900 +initials: D. d. +mobile: +1 818 829-1600 +pager: +1 818 108-7540 +roomNumber: 9314 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shara Tims,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shara Tims +sn: Tims +description: This is Shara Tims's description +facsimileTelephoneNumber: +1 213 509-3565 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 346-9073 +title: Supreme Management Sales Rep +userPassword: Password1 +uid: TimsS +givenName: Shara +mail: TimsS@5d35c5b6f750428c9353f8dff621462f.bitwarden.com +carLicense: REMIRA +departmentNumber: 2119 +employeeType: Employee +homePhone: +1 213 452-9223 +initials: S. T. +mobile: +1 213 341-1667 +pager: +1 213 342-1340 +roomNumber: 8470 +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Floyd Shelby +sn: Shelby +description: This is Floyd Shelby's description +facsimileTelephoneNumber: +1 415 150-3091 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 235-7919 +title: Chief Human Resources Czar +userPassword: Password1 +uid: ShelbyF +givenName: Floyd +mail: ShelbyF@f4427bd3a5b545c2b85736658e707e3f.bitwarden.com +carLicense: NNO6X7 +departmentNumber: 6338 +employeeType: Employee +homePhone: +1 415 798-5494 +initials: F. S. +mobile: +1 415 764-8943 +pager: +1 415 604-4655 +roomNumber: 9742 +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirabelle Ricciuto +sn: Ricciuto +description: This is Mirabelle Ricciuto's description +facsimileTelephoneNumber: +1 415 196-4277 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 672-1152 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: RicciutM +givenName: Mirabelle +mail: RicciutM@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com +carLicense: 9QB3OD +departmentNumber: 1946 +employeeType: Contract +homePhone: +1 415 428-6767 +initials: M. R. +mobile: +1 415 505-5628 +pager: +1 415 390-8417 +roomNumber: 8579 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dacie Kato +sn: Kato +description: This is Dacie Kato's description +facsimileTelephoneNumber: +1 415 568-4895 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 660-2804 +title: Master Administrative Director +userPassword: Password1 +uid: KatoD +givenName: Dacie +mail: KatoD@3e66c64942f744cf87e59fe75cc026a5.bitwarden.com +carLicense: 44UNIM +departmentNumber: 6303 +employeeType: Employee +homePhone: +1 415 762-8076 +initials: D. K. +mobile: +1 415 279-3415 +pager: +1 415 634-1676 +roomNumber: 9477 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilberte Abadines +sn: Abadines +description: This is Gilberte Abadines's description +facsimileTelephoneNumber: +1 213 528-4663 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 187-4291 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: AbadineG +givenName: Gilberte +mail: AbadineG@28bab7013196462088adedc0b611337e.bitwarden.com +carLicense: FT70WT +departmentNumber: 1434 +employeeType: Normal +homePhone: +1 213 434-4706 +initials: G. A. +mobile: +1 213 146-4976 +pager: +1 213 881-7270 +roomNumber: 8801 +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenore Spraggins +sn: Spraggins +description: This is Lenore Spraggins's description +facsimileTelephoneNumber: +1 510 719-2600 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 319-6445 +title: Associate Management Sales Rep +userPassword: Password1 +uid: SpraggiL +givenName: Lenore +mail: SpraggiL@48f1828297214bd19c99e71d64dfcbf9.bitwarden.com +carLicense: E7JAWN +departmentNumber: 7818 +employeeType: Contract +homePhone: +1 510 276-7757 +initials: L. S. +mobile: +1 510 169-5252 +pager: +1 510 583-2722 +roomNumber: 8014 +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prafula Diffee +sn: Diffee +description: This is Prafula Diffee's description +facsimileTelephoneNumber: +1 206 950-9769 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 106-9520 +title: Master Management Assistant +userPassword: Password1 +uid: DiffeeP +givenName: Prafula +mail: DiffeeP@e57fc3c0c9fd4fe59e5be73e693747dc.bitwarden.com +carLicense: NYNJDE +departmentNumber: 2131 +employeeType: Contract +homePhone: +1 206 800-9149 +initials: P. D. +mobile: +1 206 357-5934 +pager: +1 206 125-4720 +roomNumber: 9281 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michiko Schmoe +sn: Schmoe +description: This is Michiko Schmoe's description +facsimileTelephoneNumber: +1 510 639-9191 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 814-2483 +title: Master Product Testing Admin +userPassword: Password1 +uid: SchmoeM +givenName: Michiko +mail: SchmoeM@acd0b809d8b743afb94979b86a5c2246.bitwarden.com +carLicense: M3SBAC +departmentNumber: 4041 +employeeType: Employee +homePhone: +1 510 234-1416 +initials: M. S. +mobile: +1 510 143-4401 +pager: +1 510 809-5620 +roomNumber: 9778 +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lelah Marcellus +sn: Marcellus +description: This is Lelah Marcellus's description +facsimileTelephoneNumber: +1 206 480-5785 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 874-4343 +title: Chief Peons Vice President +userPassword: Password1 +uid: MarcellL +givenName: Lelah +mail: MarcellL@169cb65474a04a90af058154d6e97aa7.bitwarden.com +carLicense: JHU0MU +departmentNumber: 3725 +employeeType: Contract +homePhone: +1 206 290-6934 +initials: L. M. +mobile: +1 206 429-5996 +pager: +1 206 168-2081 +roomNumber: 8460 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marion Commons +sn: Commons +description: This is Marion Commons's description +facsimileTelephoneNumber: +1 206 874-8812 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 619-7287 +title: Junior Payroll Dictator +userPassword: Password1 +uid: CommonsM +givenName: Marion +mail: CommonsM@f20cdd91b77c4fa1af532b2ee7f13b4b.bitwarden.com +carLicense: 7O6GED +departmentNumber: 4879 +employeeType: Contract +homePhone: +1 206 831-7239 +initials: M. C. +mobile: +1 206 299-4310 +pager: +1 206 557-3611 +roomNumber: 8922 +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gay Golia +sn: Golia +description: This is Gay Golia's description +facsimileTelephoneNumber: +1 213 706-8087 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 213 508-5418 +title: Junior Payroll Madonna +userPassword: Password1 +uid: GoliaG +givenName: Gay +mail: GoliaG@da12337d358141f5bd4c9f1cff61b597.bitwarden.com +carLicense: 8FKVTC +departmentNumber: 5411 +employeeType: Normal +homePhone: +1 213 780-7330 +initials: G. G. +mobile: +1 213 318-9583 +pager: +1 213 128-5137 +roomNumber: 9096 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com + +dn: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susanetta Technosoft +sn: Technosoft +description: This is Susanetta Technosoft's description +facsimileTelephoneNumber: +1 415 785-9450 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 205-3132 +title: Junior Peons Director +userPassword: Password1 +uid: TechnosS +givenName: Susanetta +mail: TechnosS@b691a9d9d55d48b682fc2aa40cacb560.bitwarden.com +carLicense: 9LON7Q +departmentNumber: 4163 +employeeType: Contract +homePhone: +1 415 475-3046 +initials: S. T. +mobile: +1 415 731-6380 +pager: +1 415 495-2747 +roomNumber: 9358 +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jasmina Levasseur +sn: Levasseur +description: This is Jasmina Levasseur's description +facsimileTelephoneNumber: +1 510 457-3491 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 120-4619 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: LevasseJ +givenName: Jasmina +mail: LevasseJ@be3459b8963e4676a7255dc7efa74560.bitwarden.com +carLicense: LJHYPF +departmentNumber: 1625 +employeeType: Normal +homePhone: +1 510 723-5611 +initials: J. L. +mobile: +1 510 930-9450 +pager: +1 510 703-3801 +roomNumber: 9541 +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nha Chytil +sn: Chytil +description: This is Nha Chytil's description +facsimileTelephoneNumber: +1 804 980-6423 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 601-8108 +title: Chief Product Testing Grunt +userPassword: Password1 +uid: ChytilN +givenName: Nha +mail: ChytilN@802b05236c97484db9a6d34278cbb7c2.bitwarden.com +carLicense: 9CG7SK +departmentNumber: 6642 +employeeType: Contract +homePhone: +1 804 427-2010 +initials: N. C. +mobile: +1 804 141-7750 +pager: +1 804 244-4681 +roomNumber: 9686 +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Newton Hoddinott,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Newton Hoddinott +sn: Hoddinott +description: This is Newton Hoddinott's description +facsimileTelephoneNumber: +1 415 684-9578 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 559-2547 +title: Chief Peons Pinhead +userPassword: Password1 +uid: HoddinoN +givenName: Newton +mail: HoddinoN@7eb3446796544055a8625bc9cff5db0c.bitwarden.com +carLicense: AQCA2S +departmentNumber: 9781 +employeeType: Contract +homePhone: +1 415 270-6429 +initials: N. H. +mobile: +1 415 291-3606 +pager: +1 415 980-5825 +roomNumber: 8154 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allyn Aitken +sn: Aitken +description: This is Allyn Aitken's description +facsimileTelephoneNumber: +1 213 441-2652 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 283-8767 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: AitkenA +givenName: Allyn +mail: AitkenA@7946abd9e23746828acbb3d03a0807b4.bitwarden.com +carLicense: FGQR5S +departmentNumber: 7187 +employeeType: Normal +homePhone: +1 213 751-4464 +initials: A. A. +mobile: +1 213 413-2717 +pager: +1 213 795-5102 +roomNumber: 9585 +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anand Lojewski +sn: Lojewski +description: This is Anand Lojewski's description +facsimileTelephoneNumber: +1 213 208-8459 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 268-7037 +title: Chief Product Testing Director +userPassword: Password1 +uid: LojewskA +givenName: Anand +mail: LojewskA@c6d1ec6a4914414f92d063e0d067da44.bitwarden.com +carLicense: K2WIPY +departmentNumber: 3358 +employeeType: Normal +homePhone: +1 213 948-8182 +initials: A. L. +mobile: +1 213 464-7733 +pager: +1 213 354-2821 +roomNumber: 8712 +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kitt Fetzko +sn: Fetzko +description: This is Kitt Fetzko's description +facsimileTelephoneNumber: +1 415 362-8654 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 385-8636 +title: Junior Payroll Fellow +userPassword: Password1 +uid: FetzkoK +givenName: Kitt +mail: FetzkoK@bd7ed784957343358f080e4bf8b3e472.bitwarden.com +carLicense: BU7CTH +departmentNumber: 6024 +employeeType: Contract +homePhone: +1 415 628-3876 +initials: K. F. +mobile: +1 415 369-1940 +pager: +1 415 675-6855 +roomNumber: 8108 +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fleet Nie +sn: Nie +description: This is Fleet Nie's description +facsimileTelephoneNumber: +1 818 956-1994 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 923-7742 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: NieF +givenName: Fleet +mail: NieF@b7e1a16b9cde4b3eaeea7ec65d5e0355.bitwarden.com +carLicense: KUPV1L +departmentNumber: 9926 +employeeType: Employee +homePhone: +1 818 317-6994 +initials: F. N. +mobile: +1 818 867-6873 +pager: +1 818 797-3217 +roomNumber: 9657 +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=WeeThong Berube,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WeeThong Berube +sn: Berube +description: This is WeeThong Berube's description +facsimileTelephoneNumber: +1 415 333-1464 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 955-5006 +title: Associate Management Assistant +userPassword: Password1 +uid: BerubeW +givenName: WeeThong +mail: BerubeW@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com +carLicense: A5R072 +departmentNumber: 7918 +employeeType: Normal +homePhone: +1 415 835-4602 +initials: W. B. +mobile: +1 415 526-8125 +pager: +1 415 650-6810 +roomNumber: 8263 +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manimozhi Morettin +sn: Morettin +description: This is Manimozhi Morettin's description +facsimileTelephoneNumber: +1 213 806-6507 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 561-9040 +title: Associate Janitorial Director +userPassword: Password1 +uid: MorettiM +givenName: Manimozhi +mail: MorettiM@e238991b4ea94ec2a590fa4d2299b05f.bitwarden.com +carLicense: WOJHB2 +departmentNumber: 8056 +employeeType: Employee +homePhone: +1 213 904-4164 +initials: M. M. +mobile: +1 213 593-7970 +pager: +1 213 285-5852 +roomNumber: 8880 +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farshid Gard +sn: Gard +description: This is Farshid Gard's description +facsimileTelephoneNumber: +1 206 103-3973 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 651-7116 +title: Associate Payroll Technician +userPassword: Password1 +uid: GardF +givenName: Farshid +mail: GardF@a06bbbc55c33432c98c9104924935152.bitwarden.com +carLicense: LPCN7A +departmentNumber: 9705 +employeeType: Contract +homePhone: +1 206 576-9715 +initials: F. G. +mobile: +1 206 263-1514 +pager: +1 206 767-1409 +roomNumber: 8971 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rodrigus Lampman +sn: Lampman +description: This is Rodrigus Lampman's description +facsimileTelephoneNumber: +1 213 278-5392 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 721-5882 +title: Associate Product Development Consultant +userPassword: Password1 +uid: LampmanR +givenName: Rodrigus +mail: LampmanR@3043aaac30ae49c8997df0727179c296.bitwarden.com +carLicense: 8QJN6M +departmentNumber: 7595 +employeeType: Contract +homePhone: +1 213 873-6003 +initials: R. L. +mobile: +1 213 766-6362 +pager: +1 213 433-7671 +roomNumber: 9569 +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Violet Potvin +sn: Potvin +description: This is Violet Potvin's description +facsimileTelephoneNumber: +1 206 722-3184 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 784-3797 +title: Supreme Peons Grunt +userPassword: Password1 +uid: PotvinV +givenName: Violet +mail: PotvinV@a08efe5b84294d16861c8c7bd814d0f9.bitwarden.com +carLicense: 2SQ1S0 +departmentNumber: 3482 +employeeType: Normal +homePhone: +1 206 175-2562 +initials: V. P. +mobile: +1 206 222-9462 +pager: +1 206 538-5201 +roomNumber: 8162 +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Indy Calder +sn: Calder +description: This is Indy Calder's description +facsimileTelephoneNumber: +1 415 641-2789 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 118-5141 +title: Master Administrative Warrior +userPassword: Password1 +uid: CalderI +givenName: Indy +mail: CalderI@f049893b54cd4adb8a60be3288ab94cc.bitwarden.com +carLicense: GW0DDU +departmentNumber: 1038 +employeeType: Contract +homePhone: +1 415 935-5380 +initials: I. C. +mobile: +1 415 174-4230 +pager: +1 415 174-7413 +roomNumber: 9232 +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwenette Feild +sn: Feild +description: This is Gwenette Feild's description +facsimileTelephoneNumber: +1 818 106-5210 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 818 113-1204 +title: Associate Management President +userPassword: Password1 +uid: FeildG +givenName: Gwenette +mail: FeildG@e63b193a86324aeaa005190985da3761.bitwarden.com +carLicense: GWE4TW +departmentNumber: 4406 +employeeType: Contract +homePhone: +1 818 950-6345 +initials: G. F. +mobile: +1 818 619-8231 +pager: +1 818 130-7044 +roomNumber: 8385 +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guillermo Leavell +sn: Leavell +description: This is Guillermo Leavell's description +facsimileTelephoneNumber: +1 804 805-7477 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 542-1649 +title: Master Administrative Grunt +userPassword: Password1 +uid: LeavellG +givenName: Guillermo +mail: LeavellG@d52f84a4faf148e392088a55b1d91d85.bitwarden.com +carLicense: 55QV7U +departmentNumber: 7926 +employeeType: Contract +homePhone: +1 804 992-9300 +initials: G. L. +mobile: +1 804 430-4042 +pager: +1 804 613-8252 +roomNumber: 9496 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com + +dn: cn=Henryetta Raing,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henryetta Raing +sn: Raing +description: This is Henryetta Raing's description +facsimileTelephoneNumber: +1 408 485-3424 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 650-2716 +title: Master Human Resources Pinhead +userPassword: Password1 +uid: RaingH +givenName: Henryetta +mail: RaingH@6c398eb0cd5c4b4784131d450d82aca7.bitwarden.com +carLicense: QM10T9 +departmentNumber: 9975 +employeeType: Contract +homePhone: +1 408 111-9949 +initials: H. R. +mobile: +1 408 783-5645 +pager: +1 408 683-6850 +roomNumber: 8464 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petronia Bermel +sn: Bermel +description: This is Petronia Bermel's description +facsimileTelephoneNumber: +1 213 509-7671 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 760-4129 +title: Junior Administrative Dictator +userPassword: Password1 +uid: BermelP +givenName: Petronia +mail: BermelP@8a34c70e0b134b1abc06ed65698294f3.bitwarden.com +carLicense: YDGN2E +departmentNumber: 5791 +employeeType: Normal +homePhone: +1 213 137-8030 +initials: P. B. +mobile: +1 213 534-7226 +pager: +1 213 731-6839 +roomNumber: 9815 +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlina Pollinzi +sn: Pollinzi +description: This is Arlina Pollinzi's description +facsimileTelephoneNumber: +1 206 252-1695 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 359-7198 +title: Junior Product Testing Punk +userPassword: Password1 +uid: PollinzA +givenName: Arlina +mail: PollinzA@d79e418348c94168b4dd89d46432d83f.bitwarden.com +carLicense: BCS5RQ +departmentNumber: 1060 +employeeType: Contract +homePhone: +1 206 165-3145 +initials: A. P. +mobile: +1 206 310-4549 +pager: +1 206 728-6042 +roomNumber: 9842 +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Remi Giuliani +sn: Giuliani +description: This is Remi Giuliani's description +facsimileTelephoneNumber: +1 206 577-7013 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 496-1736 +title: Supreme Payroll Fellow +userPassword: Password1 +uid: GiulianR +givenName: Remi +mail: GiulianR@14d341098b454a7bb14a0607de600424.bitwarden.com +carLicense: 8RPSSP +departmentNumber: 1371 +employeeType: Employee +homePhone: +1 206 140-1530 +initials: R. G. +mobile: +1 206 755-2037 +pager: +1 206 788-2228 +roomNumber: 9878 +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faizal Moussette +sn: Moussette +description: This is Faizal Moussette's description +facsimileTelephoneNumber: +1 804 699-9391 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 145-3358 +title: Master Peons Warrior +userPassword: Password1 +uid: MoussetF +givenName: Faizal +mail: MoussetF@0a5665832ffe44f8afdc48293ba69573.bitwarden.com +carLicense: 0BT97L +departmentNumber: 8134 +employeeType: Normal +homePhone: +1 804 220-5236 +initials: F. M. +mobile: +1 804 268-7345 +pager: +1 804 811-3296 +roomNumber: 8418 +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Connie Barentsen +sn: Barentsen +description: This is Connie Barentsen's description +facsimileTelephoneNumber: +1 213 488-5493 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 303-4830 +title: Master Product Development President +userPassword: Password1 +uid: BarentsC +givenName: Connie +mail: BarentsC@866dcdf7141f4b00b327974f7403df8c.bitwarden.com +carLicense: WTKLQB +departmentNumber: 6039 +employeeType: Contract +homePhone: +1 213 297-3973 +initials: C. B. +mobile: +1 213 966-6965 +pager: +1 213 529-8558 +roomNumber: 9830 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verla Trottier +sn: Trottier +description: This is Verla Trottier's description +facsimileTelephoneNumber: +1 804 692-4664 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 582-3177 +title: Associate Administrative Pinhead +userPassword: Password1 +uid: TrottieV +givenName: Verla +mail: TrottieV@02579819bace4f10858d46919dbea287.bitwarden.com +carLicense: 5A39IA +departmentNumber: 8214 +employeeType: Normal +homePhone: +1 804 445-8150 +initials: V. T. +mobile: +1 804 500-1543 +pager: +1 804 344-7038 +roomNumber: 9583 +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vincente Isip,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vincente Isip +sn: Isip +description: This is Vincente Isip's description +facsimileTelephoneNumber: +1 804 990-8214 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 245-1680 +title: Chief Payroll Engineer +userPassword: Password1 +uid: IsipV +givenName: Vincente +mail: IsipV@3ebdc674ebed47c4a4f33a4fcf39c448.bitwarden.com +carLicense: J3H1S1 +departmentNumber: 3669 +employeeType: Employee +homePhone: +1 804 224-8230 +initials: V. I. +mobile: +1 804 855-7899 +pager: +1 804 440-8472 +roomNumber: 9568 +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tabbie SchaeferNTMVAA +sn: SchaeferNTMVAA +description: This is Tabbie SchaeferNTMVAA's description +facsimileTelephoneNumber: +1 510 540-9040 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 510 386-6328 +title: Master Administrative Evangelist +userPassword: Password1 +uid: SchaefeT +givenName: Tabbie +mail: SchaefeT@910f877bb3744ec8a7fde724ecbc2355.bitwarden.com +carLicense: 44QMRH +departmentNumber: 4171 +employeeType: Employee +homePhone: +1 510 520-6251 +initials: T. S. +mobile: +1 510 326-2856 +pager: +1 510 921-6992 +roomNumber: 8711 +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pal Burchby +sn: Burchby +description: This is Pal Burchby's description +facsimileTelephoneNumber: +1 206 995-8016 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 120-7447 +title: Associate Payroll Engineer +userPassword: Password1 +uid: BurchbyP +givenName: Pal +mail: BurchbyP@67726c3db6374bb3bfa2e22fd29415c2.bitwarden.com +carLicense: 8SPKRI +departmentNumber: 5110 +employeeType: Normal +homePhone: +1 206 653-8179 +initials: P. B. +mobile: +1 206 110-7974 +pager: +1 206 671-9490 +roomNumber: 8389 +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ibbie Gung +sn: Gung +description: This is Ibbie Gung's description +facsimileTelephoneNumber: +1 408 376-2005 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 387-7417 +title: Associate Peons Developer +userPassword: Password1 +uid: GungI +givenName: Ibbie +mail: GungI@0b027bdff1d041629ac882de18aab2e6.bitwarden.com +carLicense: VO5SHR +departmentNumber: 3825 +employeeType: Normal +homePhone: +1 408 829-9273 +initials: I. G. +mobile: +1 408 949-3451 +pager: +1 408 887-7666 +roomNumber: 9473 +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ned Pownall +sn: Pownall +description: This is Ned Pownall's description +facsimileTelephoneNumber: +1 213 418-3923 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 213 773-3992 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: PownallN +givenName: Ned +mail: PownallN@536233742e094d32a93b46e75cbb8e9e.bitwarden.com +carLicense: K6QLR3 +departmentNumber: 2663 +employeeType: Contract +homePhone: +1 213 274-2726 +initials: N. P. +mobile: +1 213 772-5527 +pager: +1 213 316-3930 +roomNumber: 8178 +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucky Carmody +sn: Carmody +description: This is Lucky Carmody's description +facsimileTelephoneNumber: +1 206 412-8683 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 724-8760 +title: Junior Product Testing Architect +userPassword: Password1 +uid: CarmodyL +givenName: Lucky +mail: CarmodyL@64262e7f36fb4e62b9763eac72d5b421.bitwarden.com +carLicense: W3S3GU +departmentNumber: 9178 +employeeType: Employee +homePhone: +1 206 362-6852 +initials: L. C. +mobile: +1 206 114-1997 +pager: +1 206 984-7614 +roomNumber: 9977 +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mayumi Presgrove +sn: Presgrove +description: This is Mayumi Presgrove's description +facsimileTelephoneNumber: +1 206 970-6824 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 206 193-2875 +title: Chief Management Vice President +userPassword: Password1 +uid: PresgroM +givenName: Mayumi +mail: PresgroM@d843134b5a6249eda76a289f48094398.bitwarden.com +carLicense: E2U5I3 +departmentNumber: 4723 +employeeType: Employee +homePhone: +1 206 239-5683 +initials: M. P. +mobile: +1 206 945-9836 +pager: +1 206 635-6170 +roomNumber: 8652 +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MunHang Altay +sn: Altay +description: This is MunHang Altay's description +facsimileTelephoneNumber: +1 408 158-1250 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 408 817-6165 +title: Master Peons Developer +userPassword: Password1 +uid: AltayM +givenName: MunHang +mail: AltayM@96682e2a4433480fa87b37b2ffbd15b6.bitwarden.com +carLicense: DQIPIL +departmentNumber: 8908 +employeeType: Employee +homePhone: +1 408 934-6837 +initials: M. A. +mobile: +1 408 141-7878 +pager: +1 408 713-7642 +roomNumber: 8964 +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Savina Wefers +sn: Wefers +description: This is Savina Wefers's description +facsimileTelephoneNumber: +1 818 181-4364 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 818 602-1947 +title: Master Administrative Czar +userPassword: Password1 +uid: WefersS +givenName: Savina +mail: WefersS@2644ea139af74505ae830870e9453a4b.bitwarden.com +carLicense: U0EMDE +departmentNumber: 3903 +employeeType: Contract +homePhone: +1 818 406-3531 +initials: S. W. +mobile: +1 818 386-2200 +pager: +1 818 506-1079 +roomNumber: 8957 +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjoke NewLab +sn: NewLab +description: This is Marjoke NewLab's description +facsimileTelephoneNumber: +1 213 442-5903 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 576-2172 +title: Associate Administrative Consultant +userPassword: Password1 +uid: NewLabM +givenName: Marjoke +mail: NewLabM@814dda3cb4844359b194c7c1721b00a4.bitwarden.com +carLicense: 3PC0SR +departmentNumber: 5674 +employeeType: Normal +homePhone: +1 213 257-5116 +initials: M. N. +mobile: +1 213 891-9476 +pager: +1 213 166-7968 +roomNumber: 9820 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caralie Ferner +sn: Ferner +description: This is Caralie Ferner's description +facsimileTelephoneNumber: +1 206 643-1812 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 517-5333 +title: Supreme Management Admin +userPassword: Password1 +uid: FernerC +givenName: Caralie +mail: FernerC@fac250dee9af4898ab4d0ae592252d91.bitwarden.com +carLicense: MBLX4F +departmentNumber: 4179 +employeeType: Normal +homePhone: +1 206 278-1422 +initials: C. F. +mobile: +1 206 891-3679 +pager: +1 206 220-8271 +roomNumber: 8849 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julio Marineau +sn: Marineau +description: This is Julio Marineau's description +facsimileTelephoneNumber: +1 213 489-8061 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 855-3849 +title: Associate Administrative Stooge +userPassword: Password1 +uid: MarineaJ +givenName: Julio +mail: MarineaJ@71d3d1f769604a3488d5ddef3b60da65.bitwarden.com +carLicense: 7YO4VB +departmentNumber: 9197 +employeeType: Contract +homePhone: +1 213 301-3252 +initials: J. M. +mobile: +1 213 451-4340 +pager: +1 213 374-2272 +roomNumber: 9404 +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olivette Crompton +sn: Crompton +description: This is Olivette Crompton's description +facsimileTelephoneNumber: +1 415 243-8609 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 415 311-9311 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: CromptoO +givenName: Olivette +mail: CromptoO@ba5fbd8ccee64957820f429bea9cbd2b.bitwarden.com +carLicense: RVFXJ6 +departmentNumber: 4273 +employeeType: Contract +homePhone: +1 415 988-6658 +initials: O. C. +mobile: +1 415 478-8613 +pager: +1 415 227-6343 +roomNumber: 8270 +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roly Slobodrian +sn: Slobodrian +description: This is Roly Slobodrian's description +facsimileTelephoneNumber: +1 415 969-8700 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 419-1791 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: SlobodrR +givenName: Roly +mail: SlobodrR@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com +carLicense: 6YO3FW +departmentNumber: 4395 +employeeType: Contract +homePhone: +1 415 268-5186 +initials: R. S. +mobile: +1 415 881-6648 +pager: +1 415 563-3875 +roomNumber: 8877 +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Partha Archibald +sn: Archibald +description: This is Partha Archibald's description +facsimileTelephoneNumber: +1 510 817-5520 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 525-4615 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: ArchibaP +givenName: Partha +mail: ArchibaP@228bf00bc301425ea3b9e943ef8da200.bitwarden.com +carLicense: YF8IR3 +departmentNumber: 2040 +employeeType: Normal +homePhone: +1 510 623-8627 +initials: P. A. +mobile: +1 510 229-9388 +pager: +1 510 165-1082 +roomNumber: 8557 +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Emerson Tait,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emerson Tait +sn: Tait +description: This is Emerson Tait's description +facsimileTelephoneNumber: +1 415 255-6635 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 734-4329 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: TaitE +givenName: Emerson +mail: TaitE@16f4ba41e9ce46f887a8d5af57b9057c.bitwarden.com +carLicense: FIH1J3 +departmentNumber: 6978 +employeeType: Employee +homePhone: +1 415 252-2452 +initials: E. T. +mobile: +1 415 167-6174 +pager: +1 415 116-7842 +roomNumber: 9478 +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Claudette Talbot,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claudette Talbot +sn: Talbot +description: This is Claudette Talbot's description +facsimileTelephoneNumber: +1 206 575-2909 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 192-8472 +title: Supreme Product Testing Technician +userPassword: Password1 +uid: TalbotC +givenName: Claudette +mail: TalbotC@c6f2558da4e64d1a92ecfa7046888845.bitwarden.com +carLicense: RAKYGS +departmentNumber: 9110 +employeeType: Contract +homePhone: +1 206 258-3751 +initials: C. T. +mobile: +1 206 899-7180 +pager: +1 206 930-3324 +roomNumber: 9178 +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnnHoon Kolesnik +sn: Kolesnik +description: This is AnnHoon Kolesnik's description +facsimileTelephoneNumber: +1 415 622-7321 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 529-1842 +title: Associate Management Sales Rep +userPassword: Password1 +uid: KolesniA +givenName: AnnHoon +mail: KolesniA@736a95b54bac464a997ec017d18bac14.bitwarden.com +carLicense: 4XI4YT +departmentNumber: 6446 +employeeType: Employee +homePhone: +1 415 718-6065 +initials: A. K. +mobile: +1 415 594-7843 +pager: +1 415 589-3857 +roomNumber: 9795 +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dominica Nttest +sn: Nttest +description: This is Dominica Nttest's description +facsimileTelephoneNumber: +1 408 934-9196 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 210-4053 +title: Chief Product Development Stooge +userPassword: Password1 +uid: NttestD +givenName: Dominica +mail: NttestD@a5390b0a929f4049987256511e1011a2.bitwarden.com +carLicense: 2UFELE +departmentNumber: 6909 +employeeType: Employee +homePhone: +1 408 451-8087 +initials: D. N. +mobile: +1 408 478-6602 +pager: +1 408 885-3391 +roomNumber: 8148 +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theresita Tebbe +sn: Tebbe +description: This is Theresita Tebbe's description +facsimileTelephoneNumber: +1 206 645-9423 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 815-3761 +title: Supreme Product Testing Architect +userPassword: Password1 +uid: TebbeT +givenName: Theresita +mail: TebbeT@f2be683ee5744190957c1b7e8dba3ddd.bitwarden.com +carLicense: M6PTA2 +departmentNumber: 2876 +employeeType: Contract +homePhone: +1 206 530-5019 +initials: T. T. +mobile: +1 206 610-5625 +pager: +1 206 122-3890 +roomNumber: 8070 +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com + +dn: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peng Dunsmore +sn: Dunsmore +description: This is Peng Dunsmore's description +facsimileTelephoneNumber: +1 415 896-2111 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 443-1698 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: DunsmorP +givenName: Peng +mail: DunsmorP@c50001e1264a4acfa5c0640c389ba320.bitwarden.com +carLicense: O0KSOU +departmentNumber: 8125 +employeeType: Normal +homePhone: +1 415 552-8422 +initials: P. D. +mobile: +1 415 874-3227 +pager: +1 415 245-7781 +roomNumber: 9125 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tilak McGruder,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilak McGruder +sn: McGruder +description: This is Tilak McGruder's description +facsimileTelephoneNumber: +1 510 801-3537 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 426-3788 +title: Master Peons Grunt +userPassword: Password1 +uid: McGrudeT +givenName: Tilak +mail: McGrudeT@37bf4a5746434161add8180aecc906d3.bitwarden.com +carLicense: UM921T +departmentNumber: 1019 +employeeType: Normal +homePhone: +1 510 878-2003 +initials: T. M. +mobile: +1 510 182-6208 +pager: +1 510 220-1520 +roomNumber: 9257 +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rieni Faley +sn: Faley +description: This is Rieni Faley's description +facsimileTelephoneNumber: +1 804 322-1876 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 804 891-8378 +title: Chief Product Testing Technician +userPassword: Password1 +uid: FaleyR +givenName: Rieni +mail: FaleyR@9a209519348642769473b09231da3137.bitwarden.com +carLicense: 210JHY +departmentNumber: 5023 +employeeType: Normal +homePhone: +1 804 691-8879 +initials: R. F. +mobile: +1 804 902-2226 +pager: +1 804 790-4489 +roomNumber: 8481 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alice Rist +sn: Rist +description: This is Alice Rist's description +facsimileTelephoneNumber: +1 804 156-7514 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 470-4856 +title: Associate Management Grunt +userPassword: Password1 +uid: RistA +givenName: Alice +mail: RistA@96aca1386b95408bb0fa75eae456680d.bitwarden.com +carLicense: AG835K +departmentNumber: 4429 +employeeType: Employee +homePhone: +1 804 118-6395 +initials: A. R. +mobile: +1 804 389-1060 +pager: +1 804 974-2265 +roomNumber: 8841 +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nona Diee +sn: Diee +description: This is Nona Diee's description +facsimileTelephoneNumber: +1 510 320-2798 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 510 162-3882 +title: Master Product Testing Grunt +userPassword: Password1 +uid: DieeN +givenName: Nona +mail: DieeN@59366f30a0164aa7a53680e97db8816b.bitwarden.com +carLicense: GIMY2B +departmentNumber: 3509 +employeeType: Contract +homePhone: +1 510 447-5293 +initials: N. D. +mobile: +1 510 129-3055 +pager: +1 510 349-3521 +roomNumber: 8347 +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChongLai Jennings +sn: Jennings +description: This is ChongLai Jennings's description +facsimileTelephoneNumber: +1 510 223-1923 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 164-5032 +title: Master Product Development Grunt +userPassword: Password1 +uid: JenningC +givenName: ChongLai +mail: JenningC@b5110eee63164b03a1156fbe465ff053.bitwarden.com +carLicense: 3OUXUQ +departmentNumber: 7334 +employeeType: Normal +homePhone: +1 510 927-2634 +initials: C. J. +mobile: +1 510 978-7484 +pager: +1 510 908-9866 +roomNumber: 8409 +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zdenka Filkins +sn: Filkins +description: This is Zdenka Filkins's description +facsimileTelephoneNumber: +1 510 118-1202 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 510 346-8663 +title: Chief Administrative Writer +userPassword: Password1 +uid: FilkinsZ +givenName: Zdenka +mail: FilkinsZ@a9c59171bde04e7ba8c3ddd4da73b134.bitwarden.com +carLicense: X4Y4A6 +departmentNumber: 6187 +employeeType: Employee +homePhone: +1 510 255-6598 +initials: Z. F. +mobile: +1 510 448-8533 +pager: +1 510 818-2777 +roomNumber: 9467 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lisbeth Longpre +sn: Longpre +description: This is Lisbeth Longpre's description +facsimileTelephoneNumber: +1 804 486-3890 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 250-8399 +title: Master Human Resources Mascot +userPassword: Password1 +uid: LongpreL +givenName: Lisbeth +mail: LongpreL@e4e042389aa64630b74c843d58da1b0b.bitwarden.com +carLicense: QWP21C +departmentNumber: 5943 +employeeType: Employee +homePhone: +1 804 494-5601 +initials: L. L. +mobile: +1 804 697-3374 +pager: +1 804 717-2065 +roomNumber: 8871 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherilynn Hannula +sn: Hannula +description: This is Cherilynn Hannula's description +facsimileTelephoneNumber: +1 213 664-4431 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 665-5771 +title: Chief Human Resources Visionary +userPassword: Password1 +uid: HannulaC +givenName: Cherilynn +mail: HannulaC@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com +carLicense: JBHG1P +departmentNumber: 4755 +employeeType: Normal +homePhone: +1 213 255-1718 +initials: C. H. +mobile: +1 213 105-7888 +pager: +1 213 159-3514 +roomNumber: 8688 +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Adelind Loveday,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adelind Loveday +sn: Loveday +description: This is Adelind Loveday's description +facsimileTelephoneNumber: +1 415 116-2533 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 218-8995 +title: Master Human Resources Assistant +userPassword: Password1 +uid: LovedayA +givenName: Adelind +mail: LovedayA@05ead9116c4b4fc8909d1d71879a73f3.bitwarden.com +carLicense: 6RJLCW +departmentNumber: 5085 +employeeType: Normal +homePhone: +1 415 143-9319 +initials: A. L. +mobile: +1 415 102-3929 +pager: +1 415 595-4314 +roomNumber: 9212 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antoinette Riordan +sn: Riordan +description: This is Antoinette Riordan's description +facsimileTelephoneNumber: +1 804 954-9110 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 804 278-1485 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: RiordanA +givenName: Antoinette +mail: RiordanA@c659efb530134031a977821791781191.bitwarden.com +carLicense: J3W15L +departmentNumber: 2239 +employeeType: Contract +homePhone: +1 804 133-5650 +initials: A. R. +mobile: +1 804 639-9371 +pager: +1 804 344-2257 +roomNumber: 8239 +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariet Hotson +sn: Hotson +description: This is Mariet Hotson's description +facsimileTelephoneNumber: +1 206 667-1188 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 840-5675 +title: Junior Product Development Punk +userPassword: Password1 +uid: HotsonM +givenName: Mariet +mail: HotsonM@638dc4979c734dc6a0edddc9856d364c.bitwarden.com +carLicense: P3CUUB +departmentNumber: 4617 +employeeType: Normal +homePhone: +1 206 611-7070 +initials: M. H. +mobile: +1 206 129-9447 +pager: +1 206 415-5489 +roomNumber: 9034 +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vinnie Golaszewski +sn: Golaszewski +description: This is Vinnie Golaszewski's description +facsimileTelephoneNumber: +1 415 884-2376 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 507-3782 +title: Junior Peons Janitor +userPassword: Password1 +uid: GolaszeV +givenName: Vinnie +mail: GolaszeV@8aca496809cf4238a39dc0c2b2a9c742.bitwarden.com +carLicense: RI938L +departmentNumber: 7831 +employeeType: Contract +homePhone: +1 415 533-7588 +initials: V. G. +mobile: +1 415 708-8727 +pager: +1 415 290-3984 +roomNumber: 8243 +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nirmal Loper +sn: Loper +description: This is Nirmal Loper's description +facsimileTelephoneNumber: +1 408 730-5236 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 553-9580 +title: Chief Administrative Punk +userPassword: Password1 +uid: LoperN +givenName: Nirmal +mail: LoperN@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com +carLicense: GKSB80 +departmentNumber: 6059 +employeeType: Contract +homePhone: +1 408 373-6228 +initials: N. L. +mobile: +1 408 139-7137 +pager: +1 408 914-5197 +roomNumber: 8329 +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhianon Mansi +sn: Mansi +description: This is Rhianon Mansi's description +facsimileTelephoneNumber: +1 510 170-5105 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 146-8382 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: MansiR +givenName: Rhianon +mail: MansiR@0163e1f0b0b44e11ba7d1bbab29d9f5b.bitwarden.com +carLicense: 7QTJJS +departmentNumber: 5882 +employeeType: Contract +homePhone: +1 510 301-8981 +initials: R. M. +mobile: +1 510 247-4185 +pager: +1 510 347-2797 +roomNumber: 9864 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shamim Pospisil +sn: Pospisil +description: This is Shamim Pospisil's description +facsimileTelephoneNumber: +1 206 403-5254 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 144-7201 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: PospisiS +givenName: Shamim +mail: PospisiS@ee3b17b3006441ea89cd65327cca286b.bitwarden.com +carLicense: 8IQ8JT +departmentNumber: 1855 +employeeType: Normal +homePhone: +1 206 772-9024 +initials: S. P. +mobile: +1 206 809-6021 +pager: +1 206 677-3079 +roomNumber: 9145 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sukhendu Commons +sn: Commons +description: This is Sukhendu Commons's description +facsimileTelephoneNumber: +1 206 718-9807 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 900-2233 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: CommonsS +givenName: Sukhendu +mail: CommonsS@e796563e8bce48b5ba76fcbb11b9e8e1.bitwarden.com +carLicense: 7CT4NI +departmentNumber: 9444 +employeeType: Employee +homePhone: +1 206 937-6491 +initials: S. C. +mobile: +1 206 854-3757 +pager: +1 206 555-7879 +roomNumber: 8931 +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Powell Brar +sn: Brar +description: This is Powell Brar's description +facsimileTelephoneNumber: +1 818 889-2203 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 149-7442 +title: Chief Peons Mascot +userPassword: Password1 +uid: BrarP +givenName: Powell +mail: BrarP@9a3790894cf44bf0b7e534074bf381cf.bitwarden.com +carLicense: 32UDT9 +departmentNumber: 3458 +employeeType: Normal +homePhone: +1 818 883-4809 +initials: P. B. +mobile: +1 818 709-9681 +pager: +1 818 744-4569 +roomNumber: 9393 +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nir Saisho,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nir Saisho +sn: Saisho +description: This is Nir Saisho's description +facsimileTelephoneNumber: +1 408 655-6006 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 408 815-1020 +title: Master Peons Manager +userPassword: Password1 +uid: SaishoN +givenName: Nir +mail: SaishoN@ab3c86d1ac584fffb00ba8469a8050a5.bitwarden.com +carLicense: TG86V7 +departmentNumber: 1216 +employeeType: Normal +homePhone: +1 408 935-7469 +initials: N. S. +mobile: +1 408 386-1316 +pager: +1 408 877-9721 +roomNumber: 9888 +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherill Cantwell +sn: Cantwell +description: This is Sherill Cantwell's description +facsimileTelephoneNumber: +1 415 978-6014 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 415 552-4746 +title: Associate Product Testing President +userPassword: Password1 +uid: CantwelS +givenName: Sherill +mail: CantwelS@73094f3ce9ac4263881b0e47be23fd15.bitwarden.com +carLicense: OCE60P +departmentNumber: 1219 +employeeType: Employee +homePhone: +1 415 430-8662 +initials: S. C. +mobile: +1 415 292-7306 +pager: +1 415 151-3563 +roomNumber: 8179 +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milissent Bowes +sn: Bowes +description: This is Milissent Bowes's description +facsimileTelephoneNumber: +1 510 783-3341 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 276-1302 +title: Chief Product Testing Developer +userPassword: Password1 +uid: BowesM +givenName: Milissent +mail: BowesM@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com +carLicense: NJIQNF +departmentNumber: 8249 +employeeType: Employee +homePhone: +1 510 538-8754 +initials: M. B. +mobile: +1 510 465-9779 +pager: +1 510 204-1414 +roomNumber: 8656 +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harmonie Luquire +sn: Luquire +description: This is Harmonie Luquire's description +facsimileTelephoneNumber: +1 510 711-7342 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 210-1523 +title: Junior Product Development Stooge +userPassword: Password1 +uid: LuquireH +givenName: Harmonie +mail: LuquireH@97df64fd63964d63ae961e1122586e46.bitwarden.com +carLicense: FUPUH8 +departmentNumber: 2285 +employeeType: Contract +homePhone: +1 510 145-9787 +initials: H. L. +mobile: +1 510 860-1406 +pager: +1 510 844-5556 +roomNumber: 9431 +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorothea Laughton +sn: Laughton +description: This is Dorothea Laughton's description +facsimileTelephoneNumber: +1 206 255-8527 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 890-1681 +title: Master Product Testing Engineer +userPassword: Password1 +uid: LaughtoD +givenName: Dorothea +mail: LaughtoD@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com +carLicense: 352EJJ +departmentNumber: 3297 +employeeType: Contract +homePhone: +1 206 905-5028 +initials: D. L. +mobile: +1 206 361-1772 +pager: +1 206 776-9102 +roomNumber: 8190 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beth Nolet +sn: Nolet +description: This is Beth Nolet's description +facsimileTelephoneNumber: +1 213 772-8076 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 379-4523 +title: Chief Payroll Developer +userPassword: Password1 +uid: NoletB +givenName: Beth +mail: NoletB@d0494e96e3ad464e9c20a3d7c613cc77.bitwarden.com +carLicense: F249EJ +departmentNumber: 7061 +employeeType: Employee +homePhone: +1 213 976-5427 +initials: B. N. +mobile: +1 213 890-2245 +pager: +1 213 682-3086 +roomNumber: 9157 +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgette Manica +sn: Manica +description: This is Georgette Manica's description +facsimileTelephoneNumber: +1 408 638-7033 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 911-5837 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: ManicaG +givenName: Georgette +mail: ManicaG@9f4dcfc9947f4a519924493e85b35351.bitwarden.com +carLicense: 5C22T1 +departmentNumber: 2956 +employeeType: Normal +homePhone: +1 408 263-7438 +initials: G. M. +mobile: +1 408 397-2417 +pager: +1 408 732-1860 +roomNumber: 9229 +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beitris Linton +sn: Linton +description: This is Beitris Linton's description +facsimileTelephoneNumber: +1 510 248-9063 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 510 732-2840 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: LintonB +givenName: Beitris +mail: LintonB@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com +carLicense: N6LUV3 +departmentNumber: 2477 +employeeType: Contract +homePhone: +1 510 642-2127 +initials: B. L. +mobile: +1 510 933-9199 +pager: +1 510 643-7273 +roomNumber: 8000 +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othella Difilippo +sn: Difilippo +description: This is Othella Difilippo's description +facsimileTelephoneNumber: +1 213 524-1943 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 263-9901 +title: Chief Management Stooge +userPassword: Password1 +uid: DifilipO +givenName: Othella +mail: DifilipO@84b57e0771b643809ac58933f98cbf52.bitwarden.com +carLicense: MSYHQ8 +departmentNumber: 3748 +employeeType: Normal +homePhone: +1 213 480-8993 +initials: O. D. +mobile: +1 213 787-5411 +pager: +1 213 683-4951 +roomNumber: 8730 +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deloris Mattes +sn: Mattes +description: This is Deloris Mattes's description +facsimileTelephoneNumber: +1 510 911-6056 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 116-2629 +title: Master Payroll Figurehead +userPassword: Password1 +uid: MattesD +givenName: Deloris +mail: MattesD@b34436a247d34fc9bc5677457c93ba78.bitwarden.com +carLicense: RWX6YT +departmentNumber: 8718 +employeeType: Normal +homePhone: +1 510 467-3261 +initials: D. M. +mobile: +1 510 452-2991 +pager: +1 510 479-5920 +roomNumber: 8124 +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brittni Holliday +sn: Holliday +description: This is Brittni Holliday's description +facsimileTelephoneNumber: +1 213 422-9926 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 213 890-9868 +title: Supreme Product Development Visionary +userPassword: Password1 +uid: HollidaB +givenName: Brittni +mail: HollidaB@bcc33b39417e4c04a97f5b3c58134988.bitwarden.com +carLicense: 36Q2V6 +departmentNumber: 1281 +employeeType: Contract +homePhone: +1 213 959-6643 +initials: B. H. +mobile: +1 213 718-7890 +pager: +1 213 874-2867 +roomNumber: 9260 +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pat Pereira +sn: Pereira +description: This is Pat Pereira's description +facsimileTelephoneNumber: +1 206 747-8543 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 206 839-4457 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: PereiraP +givenName: Pat +mail: PereiraP@4975c1c585e54bc795db4420186bb06b.bitwarden.com +carLicense: WQP5UM +departmentNumber: 8754 +employeeType: Normal +homePhone: +1 206 543-1497 +initials: P. P. +mobile: +1 206 629-1833 +pager: +1 206 379-1127 +roomNumber: 8135 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LouAnn Kozak +sn: Kozak +description: This is LouAnn Kozak's description +facsimileTelephoneNumber: +1 818 642-1245 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 890-5169 +title: Associate Janitorial Artist +userPassword: Password1 +uid: KozakL +givenName: LouAnn +mail: KozakL@8d1dad7a1e434fb6a881d4de0fc41e03.bitwarden.com +carLicense: 6NRBUI +departmentNumber: 8134 +employeeType: Employee +homePhone: +1 818 345-4416 +initials: L. K. +mobile: +1 818 773-7266 +pager: +1 818 796-2676 +roomNumber: 9390 +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zanni Edmondson +sn: Edmondson +description: This is Zanni Edmondson's description +facsimileTelephoneNumber: +1 510 829-7414 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 813-6937 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: EdmondsZ +givenName: Zanni +mail: EdmondsZ@4c978255de304b4eb6660f909451b46e.bitwarden.com +carLicense: YUMRFT +departmentNumber: 2590 +employeeType: Employee +homePhone: +1 510 659-4655 +initials: Z. E. +mobile: +1 510 558-8930 +pager: +1 510 646-4928 +roomNumber: 8778 +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com + +dn: cn=Walliw Marling,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walliw Marling +sn: Marling +description: This is Walliw Marling's description +facsimileTelephoneNumber: +1 206 611-8142 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 821-2498 +title: Associate Peons Architect +userPassword: Password1 +uid: MarlingW +givenName: Walliw +mail: MarlingW@6e40ae9d01a3469990a9e83e8c2f8ec4.bitwarden.com +carLicense: 4VXU6E +departmentNumber: 1804 +employeeType: Normal +homePhone: +1 206 338-9313 +initials: W. M. +mobile: +1 206 806-7485 +pager: +1 206 616-4316 +roomNumber: 8215 +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Susann Biggers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susann Biggers +sn: Biggers +description: This is Susann Biggers's description +facsimileTelephoneNumber: +1 206 962-8071 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 206 205-6187 +title: Chief Management Technician +userPassword: Password1 +uid: BiggersS +givenName: Susann +mail: BiggersS@5e51d9a3833b42d3a0ca89712e0f4b6d.bitwarden.com +carLicense: IWECOL +departmentNumber: 9945 +employeeType: Normal +homePhone: +1 206 208-3152 +initials: S. B. +mobile: +1 206 345-8431 +pager: +1 206 191-9035 +roomNumber: 9605 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Niek Sainsbury,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niek Sainsbury +sn: Sainsbury +description: This is Niek Sainsbury's description +facsimileTelephoneNumber: +1 408 358-4906 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 345-5204 +title: Junior Payroll Engineer +userPassword: Password1 +uid: SainsbuN +givenName: Niek +mail: SainsbuN@a55a0552890b4055ae5195bed49574db.bitwarden.com +carLicense: MLWHD9 +departmentNumber: 1722 +employeeType: Contract +homePhone: +1 408 336-7779 +initials: N. S. +mobile: +1 408 613-6202 +pager: +1 408 805-2790 +roomNumber: 8524 +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=ChyeLian Codack,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChyeLian Codack +sn: Codack +description: This is ChyeLian Codack's description +facsimileTelephoneNumber: +1 510 491-5845 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 525-5045 +title: Master Management Technician +userPassword: Password1 +uid: CodackC +givenName: ChyeLian +mail: CodackC@67c03444c05a42a3b6969db268f587ab.bitwarden.com +carLicense: K69CSP +departmentNumber: 4366 +employeeType: Contract +homePhone: +1 510 675-5173 +initials: C. C. +mobile: +1 510 854-1770 +pager: +1 510 224-9731 +roomNumber: 9831 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bailey Altmann +sn: Altmann +description: This is Bailey Altmann's description +facsimileTelephoneNumber: +1 415 269-3557 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 649-9445 +title: Junior Janitorial Artist +userPassword: Password1 +uid: AltmannB +givenName: Bailey +mail: AltmannB@4231983db0fc4e4dbb0a6c07f8f902a4.bitwarden.com +carLicense: 0AT0RF +departmentNumber: 7354 +employeeType: Normal +homePhone: +1 415 515-3656 +initials: B. A. +mobile: +1 415 187-4150 +pager: +1 415 879-8244 +roomNumber: 9191 +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glenda Dmsrtime +sn: Dmsrtime +description: This is Glenda Dmsrtime's description +facsimileTelephoneNumber: +1 213 883-9700 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 743-6109 +title: Chief Peons Czar +userPassword: Password1 +uid: DmsrtimG +givenName: Glenda +mail: DmsrtimG@0af04fcd60da40099a5a068c388bafe2.bitwarden.com +carLicense: 4AI8VB +departmentNumber: 8729 +employeeType: Normal +homePhone: +1 213 578-2226 +initials: G. D. +mobile: +1 213 827-5796 +pager: +1 213 873-9020 +roomNumber: 8807 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rich Ruigrok +sn: Ruigrok +description: This is Rich Ruigrok's description +facsimileTelephoneNumber: +1 415 444-3979 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 415 156-4043 +title: Associate Management Warrior +userPassword: Password1 +uid: RuigrokR +givenName: Rich +mail: RuigrokR@ba4f810ac4254d8dbe9cfd7199a37cf3.bitwarden.com +carLicense: V4A7SE +departmentNumber: 5766 +employeeType: Employee +homePhone: +1 415 708-6298 +initials: R. R. +mobile: +1 415 326-5587 +pager: +1 415 982-9204 +roomNumber: 9120 +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mason AbiAad +sn: AbiAad +description: This is Mason AbiAad's description +facsimileTelephoneNumber: +1 206 251-4383 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 774-5492 +title: Master Peons Grunt +userPassword: Password1 +uid: AbiAadM +givenName: Mason +mail: AbiAadM@d153ea0cdea446bcae59fcfadb7ae1da.bitwarden.com +carLicense: D1DSRR +departmentNumber: 6562 +employeeType: Normal +homePhone: +1 206 753-7790 +initials: M. A. +mobile: +1 206 742-1132 +pager: +1 206 513-8032 +roomNumber: 8296 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nike Mayfield +sn: Mayfield +description: This is Nike Mayfield's description +facsimileTelephoneNumber: +1 213 198-2927 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 505-4685 +title: Supreme Human Resources President +userPassword: Password1 +uid: MayfielN +givenName: Nike +mail: MayfielN@e283d01de99446bc9d29b5fac0fa1bca.bitwarden.com +carLicense: QARB19 +departmentNumber: 8507 +employeeType: Contract +homePhone: +1 213 133-2671 +initials: N. M. +mobile: +1 213 990-2780 +pager: +1 213 161-5559 +roomNumber: 8347 +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranson Darden +sn: Darden +description: This is Ranson Darden's description +facsimileTelephoneNumber: +1 408 608-2876 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 408 911-7721 +title: Master Janitorial Pinhead +userPassword: Password1 +uid: DardenR +givenName: Ranson +mail: DardenR@f16a2d687f8e42b59a7e0fd83e0707b1.bitwarden.com +carLicense: J8GUXA +departmentNumber: 9816 +employeeType: Contract +homePhone: +1 408 314-3052 +initials: R. D. +mobile: +1 408 925-9250 +pager: +1 408 168-7259 +roomNumber: 8345 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SiuMan Romanowski +sn: Romanowski +description: This is SiuMan Romanowski's description +facsimileTelephoneNumber: +1 206 580-4880 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 206 293-2970 +title: Junior Product Testing Artist +userPassword: Password1 +uid: RomanowS +givenName: SiuMan +mail: RomanowS@893bc48ed45e4ab7ab4ee0815dd34812.bitwarden.com +carLicense: 036LC7 +departmentNumber: 3242 +employeeType: Contract +homePhone: +1 206 703-3553 +initials: S. R. +mobile: +1 206 736-8001 +pager: +1 206 942-6720 +roomNumber: 9033 +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raju Ciochon +sn: Ciochon +description: This is Raju Ciochon's description +facsimileTelephoneNumber: +1 415 164-6231 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 908-7754 +title: Chief Product Development Architect +userPassword: Password1 +uid: CiochonR +givenName: Raju +mail: CiochonR@63ff836ac8c24e04a4d1edd33fa65c85.bitwarden.com +carLicense: XMR7LF +departmentNumber: 4014 +employeeType: Normal +homePhone: +1 415 926-6239 +initials: R. C. +mobile: +1 415 232-8778 +pager: +1 415 886-3541 +roomNumber: 8063 +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jerrilee Dunbar +sn: Dunbar +description: This is Jerrilee Dunbar's description +facsimileTelephoneNumber: +1 818 403-7241 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 387-5290 +title: Master Administrative Stooge +userPassword: Password1 +uid: DunbarJ +givenName: Jerrilee +mail: DunbarJ@ba6173368f8d45d6bc4e88d832382485.bitwarden.com +carLicense: BL7C4E +departmentNumber: 1678 +employeeType: Contract +homePhone: +1 818 926-3486 +initials: J. D. +mobile: +1 818 909-3295 +pager: +1 818 976-1430 +roomNumber: 9796 +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ealasaid TempleDowning +sn: TempleDowning +description: This is Ealasaid TempleDowning's description +facsimileTelephoneNumber: +1 415 782-6212 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 743-1506 +title: Master Janitorial Fellow +userPassword: Password1 +uid: TempleDE +givenName: Ealasaid +mail: TempleDE@b05ff67fc97048daa745e10c79506c73.bitwarden.com +carLicense: UWX39T +departmentNumber: 8317 +employeeType: Employee +homePhone: +1 415 178-2432 +initials: E. T. +mobile: +1 415 152-3820 +pager: +1 415 120-3684 +roomNumber: 8319 +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sammy Sourour +sn: Sourour +description: This is Sammy Sourour's description +facsimileTelephoneNumber: +1 415 988-8539 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 681-7754 +title: Supreme Peons Visionary +userPassword: Password1 +uid: SourourS +givenName: Sammy +mail: SourourS@02e89016127d40e485d3c85f04f6d436.bitwarden.com +carLicense: OXH9NW +departmentNumber: 9949 +employeeType: Employee +homePhone: +1 415 548-6618 +initials: S. S. +mobile: +1 415 841-5054 +pager: +1 415 905-7955 +roomNumber: 9633 +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theresa Dolson +sn: Dolson +description: This is Theresa Dolson's description +facsimileTelephoneNumber: +1 818 892-1887 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 598-2076 +title: Junior Janitorial President +userPassword: Password1 +uid: DolsonT +givenName: Theresa +mail: DolsonT@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com +carLicense: LKT2L9 +departmentNumber: 6184 +employeeType: Contract +homePhone: +1 818 504-2170 +initials: T. D. +mobile: +1 818 115-2752 +pager: +1 818 737-2948 +roomNumber: 8293 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lotti Farnum +sn: Farnum +description: This is Lotti Farnum's description +facsimileTelephoneNumber: +1 415 194-9192 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 769-9947 +title: Associate Payroll Czar +userPassword: Password1 +uid: FarnumL +givenName: Lotti +mail: FarnumL@308bfff65d134099bb462e88bbd36698.bitwarden.com +carLicense: 28U0NG +departmentNumber: 3055 +employeeType: Contract +homePhone: +1 415 457-4872 +initials: L. F. +mobile: +1 415 574-6214 +pager: +1 415 741-4647 +roomNumber: 9145 +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com + +dn: cn=Fouad Caton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fouad Caton +sn: Caton +description: This is Fouad Caton's description +facsimileTelephoneNumber: +1 415 582-9526 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 415 143-9038 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: CatonF +givenName: Fouad +mail: CatonF@cf49925012a7483a8306930aeb4cf78e.bitwarden.com +carLicense: GXX86M +departmentNumber: 3310 +employeeType: Employee +homePhone: +1 415 879-4147 +initials: F. C. +mobile: +1 415 264-8362 +pager: +1 415 530-8052 +roomNumber: 8816 +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terry Lodeserto +sn: Lodeserto +description: This is Terry Lodeserto's description +facsimileTelephoneNumber: +1 213 636-6071 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 485-3725 +title: Associate Peons Janitor +userPassword: Password1 +uid: LodeserT +givenName: Terry +mail: LodeserT@a4626a0d04a64c1083f47ce852f633ad.bitwarden.com +carLicense: YVOW13 +departmentNumber: 7435 +employeeType: Normal +homePhone: +1 213 434-7242 +initials: T. L. +mobile: +1 213 420-5986 +pager: +1 213 339-1960 +roomNumber: 8209 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fei Bebee +sn: Bebee +description: This is Fei Bebee's description +facsimileTelephoneNumber: +1 804 704-3557 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 286-8127 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: BebeeF +givenName: Fei +mail: BebeeF@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com +carLicense: H6W3DL +departmentNumber: 3373 +employeeType: Normal +homePhone: +1 804 258-4640 +initials: F. B. +mobile: +1 804 210-8577 +pager: +1 804 209-6566 +roomNumber: 9313 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Oral Hamid,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oral Hamid +sn: Hamid +description: This is Oral Hamid's description +facsimileTelephoneNumber: +1 415 784-8058 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 917-7168 +title: Chief Peons President +userPassword: Password1 +uid: HamidO +givenName: Oral +mail: HamidO@a71cdec4b0f443efb562be5952de7f81.bitwarden.com +carLicense: OLVX9L +departmentNumber: 9984 +employeeType: Employee +homePhone: +1 415 165-4604 +initials: O. H. +mobile: +1 415 492-1925 +pager: +1 415 536-3275 +roomNumber: 8780 +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anabelle Krater +sn: Krater +description: This is Anabelle Krater's description +facsimileTelephoneNumber: +1 510 805-1260 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 211-7435 +title: Associate Human Resources President +userPassword: Password1 +uid: KraterA +givenName: Anabelle +mail: KraterA@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com +carLicense: TH07UX +departmentNumber: 3828 +employeeType: Employee +homePhone: +1 510 264-8059 +initials: A. K. +mobile: +1 510 978-4355 +pager: +1 510 877-3665 +roomNumber: 9082 +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ginnie Vosu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginnie Vosu +sn: Vosu +description: This is Ginnie Vosu's description +facsimileTelephoneNumber: +1 804 772-7452 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 221-5258 +title: Chief Management Consultant +userPassword: Password1 +uid: VosuG +givenName: Ginnie +mail: VosuG@ed87fa3a81eb418da1bb630466cba42d.bitwarden.com +carLicense: JTRLLT +departmentNumber: 9189 +employeeType: Normal +homePhone: +1 804 694-2786 +initials: G. V. +mobile: +1 804 974-6537 +pager: +1 804 222-1571 +roomNumber: 9346 +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anallese Haufe +sn: Haufe +description: This is Anallese Haufe's description +facsimileTelephoneNumber: +1 408 822-8863 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 940-2161 +title: Supreme Janitorial Developer +userPassword: Password1 +uid: HaufeA +givenName: Anallese +mail: HaufeA@56d11716ccc04cd3b803f8858fc5a1ca.bitwarden.com +carLicense: 5DLQA9 +departmentNumber: 8005 +employeeType: Contract +homePhone: +1 408 827-6260 +initials: A. H. +mobile: +1 408 483-6526 +pager: +1 408 995-7888 +roomNumber: 8879 +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roze Bakkum +sn: Bakkum +description: This is Roze Bakkum's description +facsimileTelephoneNumber: +1 408 386-2585 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 899-1608 +title: Associate Management Engineer +userPassword: Password1 +uid: BakkumR +givenName: Roze +mail: BakkumR@a26084161ba1445494da78b7a16404c8.bitwarden.com +carLicense: KLEOUQ +departmentNumber: 5690 +employeeType: Contract +homePhone: +1 408 690-6382 +initials: R. B. +mobile: +1 408 916-6071 +pager: +1 408 210-2294 +roomNumber: 9325 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krystle Jamensky +sn: Jamensky +description: This is Krystle Jamensky's description +facsimileTelephoneNumber: +1 206 365-1286 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 108-3728 +title: Junior Product Testing President +userPassword: Password1 +uid: JamenskK +givenName: Krystle +mail: JamenskK@e6ed933c0a1d45ec83769226267acd7a.bitwarden.com +carLicense: L4IXM6 +departmentNumber: 2641 +employeeType: Employee +homePhone: +1 206 445-3014 +initials: K. J. +mobile: +1 206 634-9821 +pager: +1 206 678-6768 +roomNumber: 8950 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Belvia Aylwin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belvia Aylwin +sn: Aylwin +description: This is Belvia Aylwin's description +facsimileTelephoneNumber: +1 510 618-4548 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 510 953-2519 +title: Chief Administrative Madonna +userPassword: Password1 +uid: AylwinB +givenName: Belvia +mail: AylwinB@fb6923d9574749cc9a77b6988394e1a3.bitwarden.com +carLicense: B61RXG +departmentNumber: 8047 +employeeType: Normal +homePhone: +1 510 609-7265 +initials: B. A. +mobile: +1 510 917-2634 +pager: +1 510 406-2767 +roomNumber: 9836 +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Duong Bannard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duong Bannard +sn: Bannard +description: This is Duong Bannard's description +facsimileTelephoneNumber: +1 804 955-3718 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 764-7707 +title: Junior Administrative Stooge +userPassword: Password1 +uid: BannardD +givenName: Duong +mail: BannardD@10e90e32f8224ce7bbb550670baa2ab8.bitwarden.com +carLicense: EC83PW +departmentNumber: 2620 +employeeType: Contract +homePhone: +1 804 116-4200 +initials: D. B. +mobile: +1 804 490-5153 +pager: +1 804 822-6797 +roomNumber: 9717 +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kees Rashid +sn: Rashid +description: This is Kees Rashid's description +facsimileTelephoneNumber: +1 206 968-9322 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 997-3312 +title: Junior Janitorial Mascot +userPassword: Password1 +uid: RashidK +givenName: Kees +mail: RashidK@351deec9477e4e51877822ae4f8cd070.bitwarden.com +carLicense: VP92D4 +departmentNumber: 6706 +employeeType: Contract +homePhone: +1 206 442-9865 +initials: K. R. +mobile: +1 206 484-2564 +pager: +1 206 896-1669 +roomNumber: 9621 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cami Glew +sn: Glew +description: This is Cami Glew's description +facsimileTelephoneNumber: +1 415 992-2968 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 415 832-3756 +title: Chief Management Admin +userPassword: Password1 +uid: GlewC +givenName: Cami +mail: GlewC@0df8f05e50bc474da42b5a37234e2e7d.bitwarden.com +carLicense: GDA64Y +departmentNumber: 8111 +employeeType: Normal +homePhone: +1 415 396-7825 +initials: C. G. +mobile: +1 415 860-6694 +pager: +1 415 846-1304 +roomNumber: 9662 +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tien Giuliani,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tien Giuliani +sn: Giuliani +description: This is Tien Giuliani's description +facsimileTelephoneNumber: +1 804 894-2794 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 804 604-5342 +title: Associate Payroll Vice President +userPassword: Password1 +uid: GiulianT +givenName: Tien +mail: GiulianT@6a7e60c1eef24773be3efbf0c4240827.bitwarden.com +carLicense: TOIESU +departmentNumber: 6411 +employeeType: Employee +homePhone: +1 804 795-8499 +initials: T. G. +mobile: +1 804 936-6895 +pager: +1 804 784-4357 +roomNumber: 8262 +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evie Morin +sn: Morin +description: This is Evie Morin's description +facsimileTelephoneNumber: +1 818 597-6690 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 818 523-3943 +title: Master Administrative Figurehead +userPassword: Password1 +uid: MorinE +givenName: Evie +mail: MorinE@f2c07dab9bd04b82822cc496cad44d9f.bitwarden.com +carLicense: MOJBHE +departmentNumber: 5746 +employeeType: Normal +homePhone: +1 818 488-7917 +initials: E. M. +mobile: +1 818 641-5696 +pager: +1 818 410-5762 +roomNumber: 9845 +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorena Godina +sn: Godina +description: This is Dorena Godina's description +facsimileTelephoneNumber: +1 510 837-3198 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 496-9704 +title: Junior Peons Punk +userPassword: Password1 +uid: GodinaD +givenName: Dorena +mail: GodinaD@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com +carLicense: HC26P4 +departmentNumber: 8049 +employeeType: Normal +homePhone: +1 510 493-6882 +initials: D. G. +mobile: +1 510 473-8126 +pager: +1 510 672-7725 +roomNumber: 8065 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arn Ricketts +sn: Ricketts +description: This is Arn Ricketts's description +facsimileTelephoneNumber: +1 818 672-6472 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 519-5850 +title: Associate Peons Punk +userPassword: Password1 +uid: RickettA +givenName: Arn +mail: RickettA@7612c1ed110442fbbc70e6069bdde272.bitwarden.com +carLicense: 0OVQLX +departmentNumber: 1968 +employeeType: Employee +homePhone: +1 818 962-9895 +initials: A. R. +mobile: +1 818 318-9116 +pager: +1 818 870-5125 +roomNumber: 9370 +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatriz Hagley +sn: Hagley +description: This is Beatriz Hagley's description +facsimileTelephoneNumber: +1 206 966-4901 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 103-5745 +title: Chief Payroll Janitor +userPassword: Password1 +uid: HagleyB +givenName: Beatriz +mail: HagleyB@417a3a09bd36400f8dce8f57ab33032c.bitwarden.com +carLicense: ORBFG2 +departmentNumber: 1516 +employeeType: Normal +homePhone: +1 206 938-7766 +initials: B. H. +mobile: +1 206 961-5757 +pager: +1 206 206-3329 +roomNumber: 8400 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karissa AuYang +sn: AuYang +description: This is Karissa AuYang's description +facsimileTelephoneNumber: +1 213 220-1092 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 927-4459 +title: Master Management Technician +userPassword: Password1 +uid: AuYangK +givenName: Karissa +mail: AuYangK@0695846df1ff4a078ca865ab0794005c.bitwarden.com +carLicense: CDLPQY +departmentNumber: 6655 +employeeType: Normal +homePhone: +1 213 211-4522 +initials: K. A. +mobile: +1 213 408-4440 +pager: +1 213 766-4522 +roomNumber: 8117 +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pankesh Annunziata +sn: Annunziata +description: This is Pankesh Annunziata's description +facsimileTelephoneNumber: +1 213 437-4076 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 860-7189 +title: Chief Administrative Vice President +userPassword: Password1 +uid: AnnunziP +givenName: Pankesh +mail: AnnunziP@87263f2ad4e44ac39562038c9af16152.bitwarden.com +carLicense: P77HCI +departmentNumber: 5133 +employeeType: Employee +homePhone: +1 213 350-9324 +initials: P. A. +mobile: +1 213 945-6003 +pager: +1 213 250-2993 +roomNumber: 9377 +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Froukje Kennedy +sn: Kennedy +description: This is Froukje Kennedy's description +facsimileTelephoneNumber: +1 415 510-3290 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 817-2797 +title: Supreme Management Consultant +userPassword: Password1 +uid: KennedyF +givenName: Froukje +mail: KennedyF@e55b43fab5194d70867c5cdfb0b99fcb.bitwarden.com +carLicense: D6S006 +departmentNumber: 5253 +employeeType: Contract +homePhone: +1 415 891-1875 +initials: F. K. +mobile: +1 415 135-9354 +pager: +1 415 292-1196 +roomNumber: 8269 +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hazel Nash +sn: Nash +description: This is Hazel Nash's description +facsimileTelephoneNumber: +1 213 462-7458 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 326-4677 +title: Chief Product Development Admin +userPassword: Password1 +uid: NashH +givenName: Hazel +mail: NashH@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com +carLicense: 9BY7EX +departmentNumber: 6675 +employeeType: Employee +homePhone: +1 213 734-9678 +initials: H. N. +mobile: +1 213 526-1096 +pager: +1 213 642-5055 +roomNumber: 9638 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Soyeh Neely +sn: Neely +description: This is Soyeh Neely's description +facsimileTelephoneNumber: +1 206 520-6874 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 796-7557 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: NeelyS +givenName: Soyeh +mail: NeelyS@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com +carLicense: 39D3O1 +departmentNumber: 7725 +employeeType: Normal +homePhone: +1 206 489-9479 +initials: S. N. +mobile: +1 206 590-4351 +pager: +1 206 955-4668 +roomNumber: 9066 +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WaiChau McHale +sn: McHale +description: This is WaiChau McHale's description +facsimileTelephoneNumber: +1 408 793-7843 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 408 575-2315 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: McHaleW +givenName: WaiChau +mail: McHaleW@ea90c3e9804d4eccbf51d816e6665474.bitwarden.com +carLicense: 3BKVUV +departmentNumber: 4509 +employeeType: Contract +homePhone: +1 408 208-5036 +initials: W. M. +mobile: +1 408 636-5534 +pager: +1 408 637-7553 +roomNumber: 9168 +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathrine Schejbal +sn: Schejbal +description: This is Kathrine Schejbal's description +facsimileTelephoneNumber: +1 510 638-2258 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 741-1394 +title: Chief Peons Manager +userPassword: Password1 +uid: SchejbaK +givenName: Kathrine +mail: SchejbaK@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com +carLicense: 6W758W +departmentNumber: 4997 +employeeType: Contract +homePhone: +1 510 439-9830 +initials: K. S. +mobile: +1 510 390-8312 +pager: +1 510 333-5818 +roomNumber: 9126 +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shobana Eisler +sn: Eisler +description: This is Shobana Eisler's description +facsimileTelephoneNumber: +1 213 228-8535 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 315-1487 +title: Junior Management Engineer +userPassword: Password1 +uid: EislerS +givenName: Shobana +mail: EislerS@a922ba05488e401e9633fbd1813d714f.bitwarden.com +carLicense: 507T3Y +departmentNumber: 3273 +employeeType: Contract +homePhone: +1 213 306-7415 +initials: S. E. +mobile: +1 213 183-7733 +pager: +1 213 442-6893 +roomNumber: 8037 +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joete Stamps +sn: Stamps +description: This is Joete Stamps's description +facsimileTelephoneNumber: +1 206 912-5631 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 206 830-7642 +title: Master Payroll Dictator +userPassword: Password1 +uid: StampsJ +givenName: Joete +mail: StampsJ@85c3b55181514b55979bbf8d48a7d2ec.bitwarden.com +carLicense: I2GUTR +departmentNumber: 1972 +employeeType: Employee +homePhone: +1 206 229-4416 +initials: J. S. +mobile: +1 206 944-2622 +pager: +1 206 726-2711 +roomNumber: 9795 +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oneida Curnow +sn: Curnow +description: This is Oneida Curnow's description +facsimileTelephoneNumber: +1 818 563-6277 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 411-6128 +title: Associate Peons Artist +userPassword: Password1 +uid: CurnowO +givenName: Oneida +mail: CurnowO@ea3044bbf20e4e989696a49bb606f948.bitwarden.com +carLicense: HLIOUI +departmentNumber: 4360 +employeeType: Contract +homePhone: +1 818 780-2222 +initials: O. C. +mobile: +1 818 369-6330 +pager: +1 818 758-4975 +roomNumber: 8354 +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Naohiko McCray,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naohiko McCray +sn: McCray +description: This is Naohiko McCray's description +facsimileTelephoneNumber: +1 415 581-5598 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 224-7765 +title: Junior Janitorial Director +userPassword: Password1 +uid: McCrayN +givenName: Naohiko +mail: McCrayN@04448fada1ea4fa4b445ea9be1736993.bitwarden.com +carLicense: TOBKY5 +departmentNumber: 6661 +employeeType: Employee +homePhone: +1 415 393-2934 +initials: N. M. +mobile: +1 415 890-9540 +pager: +1 415 924-4565 +roomNumber: 9279 +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lang DeBoer +sn: DeBoer +description: This is Lang DeBoer's description +facsimileTelephoneNumber: +1 415 472-4784 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 751-4643 +title: Junior Product Development Vice President +userPassword: Password1 +uid: DeBoerL +givenName: Lang +mail: DeBoerL@fff701bd2ea44826a3be41e44496b16d.bitwarden.com +carLicense: HORFKX +departmentNumber: 3554 +employeeType: Contract +homePhone: +1 415 901-2066 +initials: L. D. +mobile: +1 415 819-3809 +pager: +1 415 105-8636 +roomNumber: 9123 +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selime Yuengling +sn: Yuengling +description: This is Selime Yuengling's description +facsimileTelephoneNumber: +1 818 223-6128 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 652-9558 +title: Junior Peons Artist +userPassword: Password1 +uid: YuengliS +givenName: Selime +mail: YuengliS@b99d09dc15214a99a049d574cca06ad4.bitwarden.com +carLicense: L6KTA7 +departmentNumber: 6355 +employeeType: Normal +homePhone: +1 818 947-5089 +initials: S. Y. +mobile: +1 818 760-4736 +pager: +1 818 273-7403 +roomNumber: 9122 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dolli Cracknell +sn: Cracknell +description: This is Dolli Cracknell's description +facsimileTelephoneNumber: +1 804 189-9975 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 515-6382 +title: Junior Payroll Technician +userPassword: Password1 +uid: CrackneD +givenName: Dolli +mail: CrackneD@0477f7500cad42ceb4af441ae4e4ca2d.bitwarden.com +carLicense: WLI4QX +departmentNumber: 2119 +employeeType: Normal +homePhone: +1 804 334-6018 +initials: D. C. +mobile: +1 804 722-6954 +pager: +1 804 620-7149 +roomNumber: 8690 +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reggi Eckhart +sn: Eckhart +description: This is Reggi Eckhart's description +facsimileTelephoneNumber: +1 818 337-3592 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 741-4129 +title: Associate Janitorial Punk +userPassword: Password1 +uid: EckhartR +givenName: Reggi +mail: EckhartR@519077386b7144648a1af65801ba340e.bitwarden.com +carLicense: 451J0V +departmentNumber: 9119 +employeeType: Employee +homePhone: +1 818 824-4243 +initials: R. E. +mobile: +1 818 135-3419 +pager: +1 818 170-4702 +roomNumber: 8570 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Justino Willhoff +sn: Willhoff +description: This is Justino Willhoff's description +facsimileTelephoneNumber: +1 818 435-3932 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 818 710-5066 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: WillhofJ +givenName: Justino +mail: WillhofJ@756ec4d446d24d4291f75c428b4e0284.bitwarden.com +carLicense: T85DU3 +departmentNumber: 8297 +employeeType: Contract +homePhone: +1 818 883-7012 +initials: J. W. +mobile: +1 818 689-9445 +pager: +1 818 328-1299 +roomNumber: 9386 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ShingCheong Eastus +sn: Eastus +description: This is ShingCheong Eastus's description +facsimileTelephoneNumber: +1 510 376-8306 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 652-1353 +title: Master Management Sales Rep +userPassword: Password1 +uid: EastusS +givenName: ShingCheong +mail: EastusS@b9e3cd16f2b646b993b7e643861e809b.bitwarden.com +carLicense: LHAA9Q +departmentNumber: 9369 +employeeType: Normal +homePhone: +1 510 203-6240 +initials: S. E. +mobile: +1 510 655-3602 +pager: +1 510 355-6030 +roomNumber: 9469 +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Said Fran +sn: Fran +description: This is Said Fran's description +facsimileTelephoneNumber: +1 415 146-1541 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 883-6562 +title: Chief Product Development Punk +userPassword: Password1 +uid: FranS +givenName: Said +mail: FranS@6105773677f144b2ba0b3fcab80e7802.bitwarden.com +carLicense: S7J0IT +departmentNumber: 9654 +employeeType: Contract +homePhone: +1 415 247-5959 +initials: S. F. +mobile: +1 415 367-5727 +pager: +1 415 392-4556 +roomNumber: 8845 +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olga Rehbein +sn: Rehbein +description: This is Olga Rehbein's description +facsimileTelephoneNumber: +1 213 421-9463 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 437-8446 +title: Junior Peons Visionary +userPassword: Password1 +uid: RehbeinO +givenName: Olga +mail: RehbeinO@00018780c15f455eb74328ce8b255114.bitwarden.com +carLicense: QU3OKU +departmentNumber: 8458 +employeeType: Contract +homePhone: +1 213 681-2492 +initials: O. R. +mobile: +1 213 212-3162 +pager: +1 213 179-2391 +roomNumber: 9963 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quinta Blezard +sn: Blezard +description: This is Quinta Blezard's description +facsimileTelephoneNumber: +1 415 361-8706 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 884-7338 +title: Master Management Fellow +userPassword: Password1 +uid: BlezardQ +givenName: Quinta +mail: BlezardQ@222e3b4f0b4746df8dd6c24b1a79a79b.bitwarden.com +carLicense: 9C5N4X +departmentNumber: 7062 +employeeType: Employee +homePhone: +1 415 581-5033 +initials: Q. B. +mobile: +1 415 998-6339 +pager: +1 415 620-1245 +roomNumber: 8688 +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felisha Linke +sn: Linke +description: This is Felisha Linke's description +facsimileTelephoneNumber: +1 408 333-1803 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 925-8114 +title: Junior Peons Janitor +userPassword: Password1 +uid: LinkeF +givenName: Felisha +mail: LinkeF@aca976004a314abfbb7dfda7c7926044.bitwarden.com +carLicense: 6BX4K9 +departmentNumber: 8584 +employeeType: Normal +homePhone: +1 408 982-5486 +initials: F. L. +mobile: +1 408 299-9661 +pager: +1 408 318-6489 +roomNumber: 9846 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kunitaka Slautterback +sn: Slautterback +description: This is Kunitaka Slautterback's description +facsimileTelephoneNumber: +1 804 820-6878 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 500-6661 +title: Supreme Payroll President +userPassword: Password1 +uid: SlautteK +givenName: Kunitaka +mail: SlautteK@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com +carLicense: 9THY66 +departmentNumber: 3940 +employeeType: Contract +homePhone: +1 804 516-3255 +initials: K. S. +mobile: +1 804 165-7441 +pager: +1 804 912-6245 +roomNumber: 9758 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vicheara Yanosik +sn: Yanosik +description: This is Vicheara Yanosik's description +facsimileTelephoneNumber: +1 213 663-2580 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 974-9915 +title: Master Human Resources Dictator +userPassword: Password1 +uid: YanosikV +givenName: Vicheara +mail: YanosikV@0030e1596d9147918c7c2fdae8f6513c.bitwarden.com +carLicense: XGJQOB +departmentNumber: 7142 +employeeType: Employee +homePhone: +1 213 919-4524 +initials: V. Y. +mobile: +1 213 563-1618 +pager: +1 213 629-2785 +roomNumber: 9454 +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elisabet Somppi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elisabet Somppi +sn: Somppi +description: This is Elisabet Somppi's description +facsimileTelephoneNumber: +1 510 514-8550 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 190-2264 +title: Master Administrative Artist +userPassword: Password1 +uid: SomppiE +givenName: Elisabet +mail: SomppiE@388f37e043f44f87a961652591a7a940.bitwarden.com +carLicense: ELGMFU +departmentNumber: 9878 +employeeType: Contract +homePhone: +1 510 870-4800 +initials: E. S. +mobile: +1 510 847-6961 +pager: +1 510 110-6510 +roomNumber: 8667 +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arda Poluchowska +sn: Poluchowska +description: This is Arda Poluchowska's description +facsimileTelephoneNumber: +1 408 460-3769 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 442-5438 +title: Master Management Janitor +userPassword: Password1 +uid: PoluchoA +givenName: Arda +mail: PoluchoA@59a53864c7aa4d7ea9936880199e460a.bitwarden.com +carLicense: 50C9CU +departmentNumber: 3258 +employeeType: Contract +homePhone: +1 408 760-2832 +initials: A. P. +mobile: +1 408 356-6033 +pager: +1 408 841-1777 +roomNumber: 8935 +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claudette Daugavietis +sn: Daugavietis +description: This is Claudette Daugavietis's description +facsimileTelephoneNumber: +1 818 752-3708 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 211-7810 +title: Associate Administrative Mascot +userPassword: Password1 +uid: DaugaviC +givenName: Claudette +mail: DaugaviC@c9b145063e654a36b0f903ec21358b26.bitwarden.com +carLicense: GKTQ3B +departmentNumber: 1791 +employeeType: Contract +homePhone: +1 818 906-7796 +initials: C. D. +mobile: +1 818 720-8006 +pager: +1 818 645-8891 +roomNumber: 9227 +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valry Agnihotri +sn: Agnihotri +description: This is Valry Agnihotri's description +facsimileTelephoneNumber: +1 510 557-4071 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 844-8893 +title: Associate Peons Assistant +userPassword: Password1 +uid: AgnihotV +givenName: Valry +mail: AgnihotV@8cf075f892994459a2bb7138294f3585.bitwarden.com +carLicense: U3TF1O +departmentNumber: 9671 +employeeType: Contract +homePhone: +1 510 956-2624 +initials: V. A. +mobile: +1 510 523-9150 +pager: +1 510 959-7488 +roomNumber: 8044 +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerri Rosko +sn: Rosko +description: This is Gerri Rosko's description +facsimileTelephoneNumber: +1 415 233-2574 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 727-9929 +title: Chief Payroll Admin +userPassword: Password1 +uid: RoskoG +givenName: Gerri +mail: RoskoG@87ac1189e97646f890363efe4db63ec0.bitwarden.com +carLicense: NFGKSP +departmentNumber: 4705 +employeeType: Contract +homePhone: +1 415 227-1467 +initials: G. R. +mobile: +1 415 703-1999 +pager: +1 415 362-3005 +roomNumber: 9834 +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrilee McMasters +sn: McMasters +description: This is Merrilee McMasters's description +facsimileTelephoneNumber: +1 213 556-5573 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 903-9287 +title: Chief Janitorial Technician +userPassword: Password1 +uid: McMasteM +givenName: Merrilee +mail: McMasteM@f01315dbdd864d028245d0f49a2de87a.bitwarden.com +carLicense: KJA15T +departmentNumber: 6147 +employeeType: Normal +homePhone: +1 213 522-5795 +initials: M. M. +mobile: +1 213 137-1903 +pager: +1 213 954-4729 +roomNumber: 9001 +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Farouk Korf,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farouk Korf +sn: Korf +description: This is Farouk Korf's description +facsimileTelephoneNumber: +1 206 980-4688 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 889-3094 +title: Chief Human Resources Vice President +userPassword: Password1 +uid: KorfF +givenName: Farouk +mail: KorfF@756bb6f9687f4cb8b648d97f2eda64b2.bitwarden.com +carLicense: BM4N39 +departmentNumber: 8078 +employeeType: Contract +homePhone: +1 206 868-6308 +initials: F. K. +mobile: +1 206 733-9590 +pager: +1 206 111-9356 +roomNumber: 8531 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeanette Wagner +sn: Wagner +description: This is Jeanette Wagner's description +facsimileTelephoneNumber: +1 213 992-5145 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 213 119-5425 +title: Associate Human Resources Warrior +userPassword: Password1 +uid: WagnerJ +givenName: Jeanette +mail: WagnerJ@0033304ecf264958be4e3649e61343d9.bitwarden.com +carLicense: A09FAS +departmentNumber: 3772 +employeeType: Employee +homePhone: +1 213 729-2363 +initials: J. W. +mobile: +1 213 973-6684 +pager: +1 213 483-6216 +roomNumber: 8910 +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natalya Mussallem +sn: Mussallem +description: This is Natalya Mussallem's description +facsimileTelephoneNumber: +1 206 424-7736 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 448-6706 +title: Junior Human Resources President +userPassword: Password1 +uid: MussallN +givenName: Natalya +mail: MussallN@6b26c4bc2c534e799205cb4979fba2ee.bitwarden.com +carLicense: 28PHNS +departmentNumber: 1236 +employeeType: Normal +homePhone: +1 206 241-5680 +initials: N. M. +mobile: +1 206 252-7805 +pager: +1 206 815-1794 +roomNumber: 8770 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valida Ribi +sn: Ribi +description: This is Valida Ribi's description +facsimileTelephoneNumber: +1 213 675-6194 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 116-1188 +title: Chief Administrative Dictator +userPassword: Password1 +uid: RibiV +givenName: Valida +mail: RibiV@f090dc2fb4b84377af0ef3308a0fb4cd.bitwarden.com +carLicense: EK1YKK +departmentNumber: 2483 +employeeType: Contract +homePhone: +1 213 968-6168 +initials: V. R. +mobile: +1 213 238-5980 +pager: +1 213 813-2755 +roomNumber: 9869 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maynie Levert +sn: Levert +description: This is Maynie Levert's description +facsimileTelephoneNumber: +1 818 648-7381 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 897-2410 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: LevertM +givenName: Maynie +mail: LevertM@a97141a360d8445daa6a6439dfbbd290.bitwarden.com +carLicense: XMRJAN +departmentNumber: 2235 +employeeType: Normal +homePhone: +1 818 695-4443 +initials: M. L. +mobile: +1 818 604-4073 +pager: +1 818 844-5976 +roomNumber: 9179 +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Floria DAoust +sn: DAoust +description: This is Floria DAoust's description +facsimileTelephoneNumber: +1 804 939-8320 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 332-6179 +title: Supreme Product Development Director +userPassword: Password1 +uid: DAoustF +givenName: Floria +mail: DAoustF@d69ecc02f7cc498a8c0f20edc1735b63.bitwarden.com +carLicense: 4D3SFE +departmentNumber: 3818 +employeeType: Contract +homePhone: +1 804 583-9201 +initials: F. D. +mobile: +1 804 554-5032 +pager: +1 804 971-9543 +roomNumber: 8352 +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Den Ormesher +sn: Ormesher +description: This is Den Ormesher's description +facsimileTelephoneNumber: +1 408 890-3920 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 640-4035 +title: Associate Administrative Technician +userPassword: Password1 +uid: OrmesheD +givenName: Den +mail: OrmesheD@ec10cc023e454fb0bbdd9208be69f4fc.bitwarden.com +carLicense: QX2WD0 +departmentNumber: 7458 +employeeType: Contract +homePhone: +1 408 422-8331 +initials: D. O. +mobile: +1 408 720-2896 +pager: +1 408 163-4676 +roomNumber: 8152 +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lashonda Reynolds +sn: Reynolds +description: This is Lashonda Reynolds's description +facsimileTelephoneNumber: +1 408 845-3736 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 166-8993 +title: Chief Administrative Figurehead +userPassword: Password1 +uid: ReynoldL +givenName: Lashonda +mail: ReynoldL@7af30a4b3f91418e9e6fee4aafd165df.bitwarden.com +carLicense: XP09HV +departmentNumber: 6289 +employeeType: Normal +homePhone: +1 408 292-3305 +initials: L. R. +mobile: +1 408 725-4125 +pager: +1 408 538-5848 +roomNumber: 8607 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brier VanNeste +sn: VanNeste +description: This is Brier VanNeste's description +facsimileTelephoneNumber: +1 510 792-6215 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 149-7254 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: VanNestB +givenName: Brier +mail: VanNestB@7b25e3cdf8714ae1a2b9340b249e36c1.bitwarden.com +carLicense: 42CLUJ +departmentNumber: 8361 +employeeType: Contract +homePhone: +1 510 468-1746 +initials: B. V. +mobile: +1 510 712-7590 +pager: +1 510 120-8225 +roomNumber: 9147 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kayla Schenkel +sn: Schenkel +description: This is Kayla Schenkel's description +facsimileTelephoneNumber: +1 415 188-2835 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 415 526-4711 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: SchenkeK +givenName: Kayla +mail: SchenkeK@71c9697cb5b44c66abac282f624d120e.bitwarden.com +carLicense: YQU86W +departmentNumber: 8557 +employeeType: Contract +homePhone: +1 415 107-2791 +initials: K. S. +mobile: +1 415 401-5367 +pager: +1 415 456-3861 +roomNumber: 8952 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pars Fleury +sn: Fleury +description: This is Pars Fleury's description +facsimileTelephoneNumber: +1 818 258-2856 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 457-9449 +title: Chief Administrative Fellow +userPassword: Password1 +uid: FleuryP +givenName: Pars +mail: FleuryP@c3d2d2c0ad16421093e58b9a80d13fae.bitwarden.com +carLicense: KLQ1P7 +departmentNumber: 8835 +employeeType: Employee +homePhone: +1 818 814-8963 +initials: P. F. +mobile: +1 818 816-3844 +pager: +1 818 238-3077 +roomNumber: 8810 +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roshelle Latif +sn: Latif +description: This is Roshelle Latif's description +facsimileTelephoneNumber: +1 510 369-3524 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 356-5322 +title: Chief Payroll Visionary +userPassword: Password1 +uid: LatifR +givenName: Roshelle +mail: LatifR@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com +carLicense: HG6UOO +departmentNumber: 6710 +employeeType: Normal +homePhone: +1 510 364-4575 +initials: R. L. +mobile: +1 510 641-6755 +pager: +1 510 989-2360 +roomNumber: 8898 +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annelise Hemphill +sn: Hemphill +description: This is Annelise Hemphill's description +facsimileTelephoneNumber: +1 206 597-9300 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 861-3387 +title: Junior Product Testing Dictator +userPassword: Password1 +uid: HemphilA +givenName: Annelise +mail: HemphilA@7648a4a2dba943e48a8b8e6e57e6c163.bitwarden.com +carLicense: 7B3XDJ +departmentNumber: 3848 +employeeType: Contract +homePhone: +1 206 155-9393 +initials: A. H. +mobile: +1 206 878-1047 +pager: +1 206 251-9179 +roomNumber: 8442 +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rashmi Yazdani +sn: Yazdani +description: This is Rashmi Yazdani's description +facsimileTelephoneNumber: +1 818 167-1589 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 818 821-1861 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: YazdaniR +givenName: Rashmi +mail: YazdaniR@a2522479a3ee40098579019920206caf.bitwarden.com +carLicense: JUAQE9 +departmentNumber: 6071 +employeeType: Contract +homePhone: +1 818 293-7844 +initials: R. Y. +mobile: +1 818 481-3628 +pager: +1 818 132-4597 +roomNumber: 9622 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Micah Eva,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micah Eva +sn: Eva +description: This is Micah Eva's description +facsimileTelephoneNumber: +1 804 692-1763 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 159-7065 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: EvaM +givenName: Micah +mail: EvaM@e133020db6a24c759a701885b4f7f426.bitwarden.com +carLicense: R5HW57 +departmentNumber: 5410 +employeeType: Normal +homePhone: +1 804 650-6803 +initials: M. E. +mobile: +1 804 795-2450 +pager: +1 804 845-7258 +roomNumber: 9325 +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdalen Howe +sn: Howe +description: This is Magdalen Howe's description +facsimileTelephoneNumber: +1 408 842-7905 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 441-9893 +title: Chief Payroll Assistant +userPassword: Password1 +uid: HoweM +givenName: Magdalen +mail: HoweM@21063d63862a4b1aa0c4c81ad5ebd22a.bitwarden.com +carLicense: WLIRG2 +departmentNumber: 1741 +employeeType: Normal +homePhone: +1 408 117-9626 +initials: M. H. +mobile: +1 408 950-6777 +pager: +1 408 668-1850 +roomNumber: 9009 +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Becki Hornbeek +sn: Hornbeek +description: This is Becki Hornbeek's description +facsimileTelephoneNumber: +1 408 834-2581 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 389-9294 +title: Junior Human Resources President +userPassword: Password1 +uid: HornbeeB +givenName: Becki +mail: HornbeeB@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com +carLicense: JBO5SS +departmentNumber: 6292 +employeeType: Employee +homePhone: +1 408 358-8701 +initials: B. H. +mobile: +1 408 494-1023 +pager: +1 408 311-7302 +roomNumber: 9249 +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jorrie Daigle +sn: Daigle +description: This is Jorrie Daigle's description +facsimileTelephoneNumber: +1 408 337-5185 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 408 757-1521 +title: Chief Janitorial Stooge +userPassword: Password1 +uid: DaigleJ +givenName: Jorrie +mail: DaigleJ@2f0ef4b1759e41b483f68723f29c3b29.bitwarden.com +carLicense: GJJRQ3 +departmentNumber: 4513 +employeeType: Contract +homePhone: +1 408 120-8262 +initials: J. D. +mobile: +1 408 611-9775 +pager: +1 408 943-4706 +roomNumber: 8101 +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gloriane Knitl,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gloriane Knitl +sn: Knitl +description: This is Gloriane Knitl's description +facsimileTelephoneNumber: +1 804 267-1208 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 354-5776 +title: Chief Peons President +userPassword: Password1 +uid: KnitlG +givenName: Gloriane +mail: KnitlG@5da7177901fc42a3a2e0603d9a2f29e3.bitwarden.com +carLicense: 0D3GX8 +departmentNumber: 6121 +employeeType: Employee +homePhone: +1 804 374-6196 +initials: G. K. +mobile: +1 804 133-8103 +pager: +1 804 575-1267 +roomNumber: 8643 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Issy Paget +sn: Paget +description: This is Issy Paget's description +facsimileTelephoneNumber: +1 804 777-5667 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 804 979-9060 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: PagetI +givenName: Issy +mail: PagetI@865a836daa5b4648b95df389d46126d0.bitwarden.com +carLicense: I3UFOT +departmentNumber: 3886 +employeeType: Employee +homePhone: +1 804 223-7054 +initials: I. P. +mobile: +1 804 450-2714 +pager: +1 804 181-3606 +roomNumber: 9528 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Justinn Mazey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Justinn Mazey +sn: Mazey +description: This is Justinn Mazey's description +facsimileTelephoneNumber: +1 804 650-8301 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 350-1404 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: MazeyJ +givenName: Justinn +mail: MazeyJ@a2c6fbef8f1b420994ca3b288c3969a8.bitwarden.com +carLicense: X3HGH0 +departmentNumber: 1335 +employeeType: Normal +homePhone: +1 804 411-4976 +initials: J. M. +mobile: +1 804 858-3948 +pager: +1 804 478-7418 +roomNumber: 9274 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nan Wellard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nan Wellard +sn: Wellard +description: This is Nan Wellard's description +facsimileTelephoneNumber: +1 804 714-8119 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 526-2310 +title: Chief Human Resources Manager +userPassword: Password1 +uid: WellardN +givenName: Nan +mail: WellardN@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com +carLicense: ROBLN5 +departmentNumber: 9045 +employeeType: Employee +homePhone: +1 804 734-4237 +initials: N. W. +mobile: +1 804 824-9768 +pager: +1 804 718-6837 +roomNumber: 8833 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryana Sathe +sn: Sathe +description: This is Bryana Sathe's description +facsimileTelephoneNumber: +1 804 110-7418 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 804 144-5012 +title: Master Peons Engineer +userPassword: Password1 +uid: SatheB +givenName: Bryana +mail: SatheB@13da8e4c7f9644f5a68d87ae81657c2f.bitwarden.com +carLicense: MPPHS0 +departmentNumber: 1018 +employeeType: Employee +homePhone: +1 804 896-8986 +initials: B. S. +mobile: +1 804 725-8338 +pager: +1 804 119-9623 +roomNumber: 8297 +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pavla Keiser +sn: Keiser +description: This is Pavla Keiser's description +facsimileTelephoneNumber: +1 213 895-9329 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 210-9356 +title: Supreme Administrative Manager +userPassword: Password1 +uid: KeiserP +givenName: Pavla +mail: KeiserP@d424430a319442dd8ccc18dd79f178d7.bitwarden.com +carLicense: EUUM67 +departmentNumber: 2884 +employeeType: Normal +homePhone: +1 213 913-7889 +initials: P. K. +mobile: +1 213 955-3434 +pager: +1 213 417-6968 +roomNumber: 9708 +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com + +dn: cn=Myriam Blezard,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myriam Blezard +sn: Blezard +description: This is Myriam Blezard's description +facsimileTelephoneNumber: +1 415 437-5223 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 833-7809 +title: Junior Janitorial Technician +userPassword: Password1 +uid: BlezardM +givenName: Myriam +mail: BlezardM@9dd46e72015c4014b5f15189a14009e2.bitwarden.com +carLicense: NIN27U +departmentNumber: 2241 +employeeType: Employee +homePhone: +1 415 805-3252 +initials: M. B. +mobile: +1 415 932-1963 +pager: +1 415 422-1781 +roomNumber: 9884 +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mehmet Cuper +sn: Cuper +description: This is Mehmet Cuper's description +facsimileTelephoneNumber: +1 213 984-6194 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 736-3819 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: CuperM +givenName: Mehmet +mail: CuperM@7f63e51441fc4e1aab1257e0bb185e66.bitwarden.com +carLicense: 7VN671 +departmentNumber: 7359 +employeeType: Contract +homePhone: +1 213 642-9001 +initials: M. C. +mobile: +1 213 619-9618 +pager: +1 213 502-8828 +roomNumber: 9500 +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shobana Berna +sn: Berna +description: This is Shobana Berna's description +facsimileTelephoneNumber: +1 818 762-3207 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 985-9420 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: BernaS +givenName: Shobana +mail: BernaS@231bc329012a4b71830de92a0a747aec.bitwarden.com +carLicense: 0SD5NX +departmentNumber: 1818 +employeeType: Employee +homePhone: +1 818 861-4951 +initials: S. B. +mobile: +1 818 180-9861 +pager: +1 818 198-3942 +roomNumber: 9669 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ginni Felske,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginni Felske +sn: Felske +description: This is Ginni Felske's description +facsimileTelephoneNumber: +1 206 398-8560 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 510-8007 +title: Master Product Testing President +userPassword: Password1 +uid: FelskeG +givenName: Ginni +mail: FelskeG@7e7a2a61072144f1bbb5c3973fb03067.bitwarden.com +carLicense: 9O1EMV +departmentNumber: 6041 +employeeType: Employee +homePhone: +1 206 188-4331 +initials: G. F. +mobile: +1 206 866-9652 +pager: +1 206 603-1705 +roomNumber: 9265 +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HingFai Shearer +sn: Shearer +description: This is HingFai Shearer's description +facsimileTelephoneNumber: +1 408 258-9319 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 446-2812 +title: Chief Management Janitor +userPassword: Password1 +uid: ShearerH +givenName: HingFai +mail: ShearerH@7969b0806fba4e3d88a5a3efd04eb548.bitwarden.com +carLicense: E4EAFF +departmentNumber: 7086 +employeeType: Normal +homePhone: +1 408 701-1121 +initials: H. S. +mobile: +1 408 521-7040 +pager: +1 408 502-8424 +roomNumber: 9704 +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yuji Dilallo +sn: Dilallo +description: This is Yuji Dilallo's description +facsimileTelephoneNumber: +1 213 609-9610 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 213 264-5127 +title: Chief Product Testing Director +userPassword: Password1 +uid: DilalloY +givenName: Yuji +mail: DilalloY@36b4191e06e749fa9ae622f109b3b75b.bitwarden.com +carLicense: 3X5ELP +departmentNumber: 1286 +employeeType: Normal +homePhone: +1 213 642-4266 +initials: Y. D. +mobile: +1 213 980-4525 +pager: +1 213 917-5828 +roomNumber: 9234 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alissa Junkin +sn: Junkin +description: This is Alissa Junkin's description +facsimileTelephoneNumber: +1 408 108-3825 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 680-1189 +title: Chief Administrative Consultant +userPassword: Password1 +uid: JunkinA +givenName: Alissa +mail: JunkinA@c219bf062505483787e15d8eef41ed24.bitwarden.com +carLicense: C90BGR +departmentNumber: 5716 +employeeType: Employee +homePhone: +1 408 130-8789 +initials: A. J. +mobile: +1 408 748-9777 +pager: +1 408 750-6062 +roomNumber: 8404 +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryon Valko +sn: Valko +description: This is Bryon Valko's description +facsimileTelephoneNumber: +1 804 135-7714 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 334-6770 +title: Associate Payroll Dictator +userPassword: Password1 +uid: ValkoB +givenName: Bryon +mail: ValkoB@ea79beffe5bf4069ab41a806bbd716f7.bitwarden.com +carLicense: 3FJR0E +departmentNumber: 2432 +employeeType: Contract +homePhone: +1 804 689-7500 +initials: B. V. +mobile: +1 804 116-6702 +pager: +1 804 267-3067 +roomNumber: 8771 +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matt Casey +sn: Casey +description: This is Matt Casey's description +facsimileTelephoneNumber: +1 818 346-9396 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 818 594-5925 +title: Chief Peons Warrior +userPassword: Password1 +uid: CaseyM +givenName: Matt +mail: CaseyM@602d8f6d1a6449018081ad850b50b27b.bitwarden.com +carLicense: FYFU0G +departmentNumber: 4986 +employeeType: Normal +homePhone: +1 818 773-6484 +initials: M. C. +mobile: +1 818 471-7792 +pager: +1 818 590-2938 +roomNumber: 8317 +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lizette Klappholz +sn: Klappholz +description: This is Lizette Klappholz's description +facsimileTelephoneNumber: +1 804 990-1734 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 804 675-1324 +title: Master Peons Fellow +userPassword: Password1 +uid: KlapphoL +givenName: Lizette +mail: KlapphoL@753b4215422c4be18da9d3838b304ad2.bitwarden.com +carLicense: LF8JPQ +departmentNumber: 3003 +employeeType: Normal +homePhone: +1 804 118-5480 +initials: L. K. +mobile: +1 804 539-3694 +pager: +1 804 455-2097 +roomNumber: 8684 +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryl Petrick +sn: Petrick +description: This is Maryl Petrick's description +facsimileTelephoneNumber: +1 213 495-2855 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 536-9195 +title: Junior Peons Evangelist +userPassword: Password1 +uid: PetrickM +givenName: Maryl +mail: PetrickM@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com +carLicense: VONN2M +departmentNumber: 3550 +employeeType: Normal +homePhone: +1 213 950-1473 +initials: M. P. +mobile: +1 213 472-6532 +pager: +1 213 940-6069 +roomNumber: 9950 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Thalia Felske,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thalia Felske +sn: Felske +description: This is Thalia Felske's description +facsimileTelephoneNumber: +1 408 675-1919 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 519-8437 +title: Junior Payroll Visionary +userPassword: Password1 +uid: FelskeT +givenName: Thalia +mail: FelskeT@7ea385d9791745059f886b750a2e50fb.bitwarden.com +carLicense: LJJLGJ +departmentNumber: 5027 +employeeType: Normal +homePhone: +1 408 809-9539 +initials: T. F. +mobile: +1 408 129-7706 +pager: +1 408 849-2909 +roomNumber: 9337 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Louisa Macoosh +sn: Macoosh +description: This is Louisa Macoosh's description +facsimileTelephoneNumber: +1 206 457-2562 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 146-4958 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: MacooshL +givenName: Louisa +mail: MacooshL@4376a00e71594ef1b26e2e0a8e02ecaa.bitwarden.com +carLicense: N85WJ1 +departmentNumber: 6175 +employeeType: Employee +homePhone: +1 206 976-4548 +initials: L. M. +mobile: +1 206 169-4514 +pager: +1 206 254-8943 +roomNumber: 8037 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dino Kurauchi +sn: Kurauchi +description: This is Dino Kurauchi's description +facsimileTelephoneNumber: +1 804 452-7730 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 409-4843 +title: Chief Peons Janitor +userPassword: Password1 +uid: KurauchD +givenName: Dino +mail: KurauchD@df1443771fec4b9b851db7a87599995c.bitwarden.com +carLicense: AYAWQP +departmentNumber: 8911 +employeeType: Contract +homePhone: +1 804 392-7179 +initials: D. K. +mobile: +1 804 748-3756 +pager: +1 804 996-8984 +roomNumber: 8242 +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Heida Kyoung,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heida Kyoung +sn: Kyoung +description: This is Heida Kyoung's description +facsimileTelephoneNumber: +1 804 693-4097 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 804 722-6285 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: KyoungH +givenName: Heida +mail: KyoungH@fad13712be524b2bb53fd1f676c9976a.bitwarden.com +carLicense: RF60CX +departmentNumber: 3867 +employeeType: Normal +homePhone: +1 804 382-2667 +initials: H. K. +mobile: +1 804 741-3404 +pager: +1 804 662-7549 +roomNumber: 9920 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fleurette Neyman +sn: Neyman +description: This is Fleurette Neyman's description +facsimileTelephoneNumber: +1 408 910-7017 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 497-1545 +title: Master Management Janitor +userPassword: Password1 +uid: NeymanF +givenName: Fleurette +mail: NeymanF@e9ed05b9fb474121a884b5f5eaada8bf.bitwarden.com +carLicense: 076CF7 +departmentNumber: 8100 +employeeType: Employee +homePhone: +1 408 865-3755 +initials: F. N. +mobile: +1 408 576-3203 +pager: +1 408 587-1284 +roomNumber: 8151 +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zulfikar Rigsbee +sn: Rigsbee +description: This is Zulfikar Rigsbee's description +facsimileTelephoneNumber: +1 206 242-3611 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 863-9251 +title: Master Peons Sales Rep +userPassword: Password1 +uid: RigsbeeZ +givenName: Zulfikar +mail: RigsbeeZ@3b4c579bb3694dc89217301699689565.bitwarden.com +carLicense: QQ5SXI +departmentNumber: 7037 +employeeType: Normal +homePhone: +1 206 869-6202 +initials: Z. R. +mobile: +1 206 715-7077 +pager: +1 206 529-1444 +roomNumber: 9975 +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susanne Keates +sn: Keates +description: This is Susanne Keates's description +facsimileTelephoneNumber: +1 213 588-9127 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 571-3848 +title: Chief Management Engineer +userPassword: Password1 +uid: KeatesS +givenName: Susanne +mail: KeatesS@7ec11ccdde9a4f8c84d9525ea5fe4ff1.bitwarden.com +carLicense: 2HE17E +departmentNumber: 7229 +employeeType: Employee +homePhone: +1 213 807-8256 +initials: S. K. +mobile: +1 213 833-8029 +pager: +1 213 600-9027 +roomNumber: 8904 +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jurgen Proudfoot +sn: Proudfoot +description: This is Jurgen Proudfoot's description +facsimileTelephoneNumber: +1 206 160-9315 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 143-9025 +title: Master Janitorial Vice President +userPassword: Password1 +uid: ProudfoJ +givenName: Jurgen +mail: ProudfoJ@a90852e05a704b189e86f5be23a6fead.bitwarden.com +carLicense: MUPSF7 +departmentNumber: 5807 +employeeType: Employee +homePhone: +1 206 497-6837 +initials: J. P. +mobile: +1 206 235-5964 +pager: +1 206 964-7436 +roomNumber: 9720 +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvinia Wilkes +sn: Wilkes +description: This is Alvinia Wilkes's description +facsimileTelephoneNumber: +1 510 250-4802 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 433-3043 +title: Supreme Product Development Fellow +userPassword: Password1 +uid: WilkesA +givenName: Alvinia +mail: WilkesA@8415106c9bc644ca88df9b8987cb1aef.bitwarden.com +carLicense: 27IYVC +departmentNumber: 2018 +employeeType: Normal +homePhone: +1 510 497-6599 +initials: A. W. +mobile: +1 510 848-2652 +pager: +1 510 835-8235 +roomNumber: 8333 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alyce Gravely,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alyce Gravely +sn: Gravely +description: This is Alyce Gravely's description +facsimileTelephoneNumber: +1 804 755-3656 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 988-9959 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: GravelyA +givenName: Alyce +mail: GravelyA@8e58146437ae4809935cbbfea9366714.bitwarden.com +carLicense: HTGQCD +departmentNumber: 6630 +employeeType: Normal +homePhone: +1 804 948-3287 +initials: A. G. +mobile: +1 804 169-6056 +pager: +1 804 779-4221 +roomNumber: 8444 +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulo Whidden +sn: Whidden +description: This is Paulo Whidden's description +facsimileTelephoneNumber: +1 818 641-2348 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 143-5110 +title: Supreme Product Development Artist +userPassword: Password1 +uid: WhiddenP +givenName: Paulo +mail: WhiddenP@3bf5412f9df744cdbfb41ee6ad860514.bitwarden.com +carLicense: 4WNDTD +departmentNumber: 9043 +employeeType: Contract +homePhone: +1 818 503-4365 +initials: P. W. +mobile: +1 818 949-7433 +pager: +1 818 126-9845 +roomNumber: 9540 +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lee Abbott +sn: Abbott +description: This is Lee Abbott's description +facsimileTelephoneNumber: +1 415 690-9372 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 661-3354 +title: Chief Human Resources Figurehead +userPassword: Password1 +uid: AbbottL +givenName: Lee +mail: AbbottL@4160dbb07b29483d98d27e9c15a9e3bd.bitwarden.com +carLicense: OT760A +departmentNumber: 8447 +employeeType: Employee +homePhone: +1 415 545-8074 +initials: L. A. +mobile: +1 415 350-2991 +pager: +1 415 646-8023 +roomNumber: 9287 +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mustapha Tull +sn: Tull +description: This is Mustapha Tull's description +facsimileTelephoneNumber: +1 818 973-3035 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 252-1307 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: TullM +givenName: Mustapha +mail: TullM@07bd916cf158429f8580a7fcf2ca8d82.bitwarden.com +carLicense: AQQS6W +departmentNumber: 8200 +employeeType: Contract +homePhone: +1 818 483-4853 +initials: M. T. +mobile: +1 818 437-2443 +pager: +1 818 885-3412 +roomNumber: 8314 +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tsing Oakley +sn: Oakley +description: This is Tsing Oakley's description +facsimileTelephoneNumber: +1 804 189-8903 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 534-5555 +title: Chief Management Writer +userPassword: Password1 +uid: OakleyT +givenName: Tsing +mail: OakleyT@aab792405d0e421e9faa1d2235dbde11.bitwarden.com +carLicense: KHN8CA +departmentNumber: 8634 +employeeType: Employee +homePhone: +1 804 571-8071 +initials: T. O. +mobile: +1 804 560-5634 +pager: +1 804 596-1812 +roomNumber: 8621 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ozlem Nys +sn: Nys +description: This is Ozlem Nys's description +facsimileTelephoneNumber: +1 408 998-8065 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 521-1699 +title: Chief Administrative Czar +userPassword: Password1 +uid: NysO +givenName: Ozlem +mail: NysO@9050ca894d2e4faaa4c16fc83c480a1a.bitwarden.com +carLicense: 91I07D +departmentNumber: 3140 +employeeType: Normal +homePhone: +1 408 788-2616 +initials: O. N. +mobile: +1 408 343-6985 +pager: +1 408 589-5667 +roomNumber: 9286 +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Canute Fran +sn: Fran +description: This is Canute Fran's description +facsimileTelephoneNumber: +1 415 139-5903 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 578-9363 +title: Master Payroll Madonna +userPassword: Password1 +uid: FranC +givenName: Canute +mail: FranC@8029b2d4dc2441e188d25c43ec86afd1.bitwarden.com +carLicense: L0AU1P +departmentNumber: 9685 +employeeType: Employee +homePhone: +1 415 852-6258 +initials: C. F. +mobile: +1 415 107-5672 +pager: +1 415 219-8202 +roomNumber: 9038 +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erina RTP +sn: RTP +description: This is Erina RTP's description +facsimileTelephoneNumber: +1 510 167-2475 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 671-5045 +title: Supreme Payroll Madonna +userPassword: Password1 +uid: RTPE +givenName: Erina +mail: RTPE@af7219707df54fa3a07b2c4c1c18c6db.bitwarden.com +carLicense: 5L8HQ3 +departmentNumber: 1469 +employeeType: Contract +homePhone: +1 510 165-2281 +initials: E. R. +mobile: +1 510 705-5155 +pager: +1 510 243-7464 +roomNumber: 8919 +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Efdal Maund,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Efdal Maund +sn: Maund +description: This is Efdal Maund's description +facsimileTelephoneNumber: +1 818 272-9686 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 818 335-2948 +title: Junior Product Testing Dictator +userPassword: Password1 +uid: MaundE +givenName: Efdal +mail: MaundE@ea33ceb5d67949f9a3def71720aea530.bitwarden.com +carLicense: NE661R +departmentNumber: 1479 +employeeType: Contract +homePhone: +1 818 248-4347 +initials: E. M. +mobile: +1 818 793-1877 +pager: +1 818 325-8066 +roomNumber: 8020 +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peggy Corpening +sn: Corpening +description: This is Peggy Corpening's description +facsimileTelephoneNumber: +1 408 653-3974 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 788-4593 +title: Associate Janitorial Technician +userPassword: Password1 +uid: CorpeniP +givenName: Peggy +mail: CorpeniP@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com +carLicense: DSC55S +departmentNumber: 3349 +employeeType: Contract +homePhone: +1 408 766-5868 +initials: P. C. +mobile: +1 408 158-7035 +pager: +1 408 175-7752 +roomNumber: 8282 +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hiren Bopp +sn: Bopp +description: This is Hiren Bopp's description +facsimileTelephoneNumber: +1 206 637-2629 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 612-8076 +title: Junior Peons Madonna +userPassword: Password1 +uid: BoppH +givenName: Hiren +mail: BoppH@f0be25ac1a9142fbafef7971f03b3c8e.bitwarden.com +carLicense: LV454C +departmentNumber: 5320 +employeeType: Normal +homePhone: +1 206 394-8141 +initials: H. B. +mobile: +1 206 547-2478 +pager: +1 206 623-2213 +roomNumber: 8813 +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neala Seeds +sn: Seeds +description: This is Neala Seeds's description +facsimileTelephoneNumber: +1 804 691-8647 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 122-5539 +title: Chief Management Stooge +userPassword: Password1 +uid: SeedsN +givenName: Neala +mail: SeedsN@b9fd76bcb36c44ce9fb6bf40da399946.bitwarden.com +carLicense: 666NV6 +departmentNumber: 6211 +employeeType: Employee +homePhone: +1 804 968-1407 +initials: N. S. +mobile: +1 804 798-6999 +pager: +1 804 532-8404 +roomNumber: 9862 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Torie Seamster,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Torie Seamster +sn: Seamster +description: This is Torie Seamster's description +facsimileTelephoneNumber: +1 510 565-8287 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 973-7536 +title: Associate Janitorial President +userPassword: Password1 +uid: SeamsteT +givenName: Torie +mail: SeamsteT@dc389f3c42ad495288e841e30bcf37cb.bitwarden.com +carLicense: XERBD7 +departmentNumber: 6273 +employeeType: Contract +homePhone: +1 510 477-3375 +initials: T. S. +mobile: +1 510 378-9266 +pager: +1 510 735-3845 +roomNumber: 9447 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rajinderpal Mattson +sn: Mattson +description: This is Rajinderpal Mattson's description +facsimileTelephoneNumber: +1 510 613-5543 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 881-9987 +title: Supreme Product Testing Director +userPassword: Password1 +uid: MattsonR +givenName: Rajinderpal +mail: MattsonR@8225e046db804e04b9a2cde5ffe23088.bitwarden.com +carLicense: MOAMU5 +departmentNumber: 1780 +employeeType: Normal +homePhone: +1 510 757-6226 +initials: R. M. +mobile: +1 510 414-4428 +pager: +1 510 761-3413 +roomNumber: 8683 +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Louella Plmcoop +sn: Plmcoop +description: This is Louella Plmcoop's description +facsimileTelephoneNumber: +1 415 993-1209 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 543-2519 +title: Junior Human Resources Visionary +userPassword: Password1 +uid: PlmcoopL +givenName: Louella +mail: PlmcoopL@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com +carLicense: FLO7S6 +departmentNumber: 5499 +employeeType: Employee +homePhone: +1 415 400-6828 +initials: L. P. +mobile: +1 415 400-5848 +pager: +1 415 715-8793 +roomNumber: 9695 +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Benoit Heilsnis,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benoit Heilsnis +sn: Heilsnis +description: This is Benoit Heilsnis's description +facsimileTelephoneNumber: +1 213 806-3488 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 280-4278 +title: Master Management Visionary +userPassword: Password1 +uid: HeilsniB +givenName: Benoit +mail: HeilsniB@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com +carLicense: A29MMK +departmentNumber: 2623 +employeeType: Contract +homePhone: +1 213 237-4424 +initials: B. H. +mobile: +1 213 530-1792 +pager: +1 213 784-8946 +roomNumber: 9787 +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com + +dn: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madalyn Timmons +sn: Timmons +description: This is Madalyn Timmons's description +facsimileTelephoneNumber: +1 818 483-5036 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 598-5390 +title: Associate Administrative Dictator +userPassword: Password1 +uid: TimmonsM +givenName: Madalyn +mail: TimmonsM@d5949360307842458664ec19684f5fbf.bitwarden.com +carLicense: RGGOQP +departmentNumber: 1014 +employeeType: Contract +homePhone: +1 818 281-5858 +initials: M. T. +mobile: +1 818 704-1342 +pager: +1 818 355-4281 +roomNumber: 9270 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frinel Reiser +sn: Reiser +description: This is Frinel Reiser's description +facsimileTelephoneNumber: +1 213 913-7941 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 317-7032 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: ReiserF +givenName: Frinel +mail: ReiserF@4038f35398434f35b757e53f593f7609.bitwarden.com +carLicense: 4CB4MQ +departmentNumber: 1421 +employeeType: Contract +homePhone: +1 213 366-7487 +initials: F. R. +mobile: +1 213 492-1997 +pager: +1 213 207-3879 +roomNumber: 8455 +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tara LeBlanc +sn: LeBlanc +description: This is Tara LeBlanc's description +facsimileTelephoneNumber: +1 415 646-9020 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 246-1736 +title: Supreme Product Testing Visionary +userPassword: Password1 +uid: LeBlancT +givenName: Tara +mail: LeBlancT@59110a8eb1b44c7887a8222252c623b1.bitwarden.com +carLicense: BA1PCO +departmentNumber: 5482 +employeeType: Employee +homePhone: +1 415 542-9084 +initials: T. L. +mobile: +1 415 909-8673 +pager: +1 415 223-4467 +roomNumber: 8564 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harish Shukor +sn: Shukor +description: This is Harish Shukor's description +facsimileTelephoneNumber: +1 804 476-4630 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 600-5189 +title: Supreme Administrative Artist +userPassword: Password1 +uid: ShukorH +givenName: Harish +mail: ShukorH@e94b60e385324317a966bf045a1adf9b.bitwarden.com +carLicense: X0FL5T +departmentNumber: 8833 +employeeType: Normal +homePhone: +1 804 696-1761 +initials: H. S. +mobile: +1 804 112-3009 +pager: +1 804 154-5915 +roomNumber: 9518 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Felice Hazenboom,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felice Hazenboom +sn: Hazenboom +description: This is Felice Hazenboom's description +facsimileTelephoneNumber: +1 213 990-8610 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 230-6853 +title: Chief Management Mascot +userPassword: Password1 +uid: HazenboF +givenName: Felice +mail: HazenboF@f77e0f58a0a6420b98bdf66cba559331.bitwarden.com +carLicense: GBEXI7 +departmentNumber: 1549 +employeeType: Normal +homePhone: +1 213 965-4362 +initials: F. H. +mobile: +1 213 698-8814 +pager: +1 213 592-6583 +roomNumber: 8459 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorna Kreimer +sn: Kreimer +description: This is Lorna Kreimer's description +facsimileTelephoneNumber: +1 213 656-9720 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 188-1368 +title: Master Management Admin +userPassword: Password1 +uid: KreimerL +givenName: Lorna +mail: KreimerL@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com +carLicense: O7K6Y2 +departmentNumber: 6195 +employeeType: Contract +homePhone: +1 213 232-1556 +initials: L. K. +mobile: +1 213 566-6837 +pager: +1 213 100-1894 +roomNumber: 8947 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raoul VieillardBaron +sn: VieillardBaron +description: This is Raoul VieillardBaron's description +facsimileTelephoneNumber: +1 510 149-5601 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 542-7633 +title: Master Payroll Technician +userPassword: Password1 +uid: VieillaR +givenName: Raoul +mail: VieillaR@9631cf83572b457187e3e13135609236.bitwarden.com +carLicense: 8AT4T6 +departmentNumber: 8383 +employeeType: Employee +homePhone: +1 510 747-7972 +initials: R. V. +mobile: +1 510 988-6624 +pager: +1 510 826-5721 +roomNumber: 8777 +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rheal Lauten +sn: Lauten +description: This is Rheal Lauten's description +facsimileTelephoneNumber: +1 818 280-4775 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 966-6456 +title: Associate Management Developer +userPassword: Password1 +uid: LautenR +givenName: Rheal +mail: LautenR@52c6c82549d445678721da442aca8e53.bitwarden.com +carLicense: 0PQ0FN +departmentNumber: 5191 +employeeType: Normal +homePhone: +1 818 865-1783 +initials: R. L. +mobile: +1 818 204-6391 +pager: +1 818 993-2338 +roomNumber: 8299 +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivi Vexler +sn: Vexler +description: This is Vivi Vexler's description +facsimileTelephoneNumber: +1 818 461-9669 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 464-4687 +title: Supreme Human Resources Director +userPassword: Password1 +uid: VexlerV +givenName: Vivi +mail: VexlerV@655d3e1ee97a47bbb182f0f8f120b20e.bitwarden.com +carLicense: SHKTKN +departmentNumber: 3136 +employeeType: Contract +homePhone: +1 818 207-8941 +initials: V. V. +mobile: +1 818 852-4226 +pager: +1 818 184-9570 +roomNumber: 8765 +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Timothy KnesMaxwell +sn: KnesMaxwell +description: This is Timothy KnesMaxwell's description +facsimileTelephoneNumber: +1 510 398-4281 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 159-1819 +title: Associate Peons Figurehead +userPassword: Password1 +uid: KnesMaxT +givenName: Timothy +mail: KnesMaxT@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com +carLicense: Y7QVA4 +departmentNumber: 3534 +employeeType: Employee +homePhone: +1 510 727-9419 +initials: T. K. +mobile: +1 510 975-3114 +pager: +1 510 143-4521 +roomNumber: 9435 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leigha Elwood,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leigha Elwood +sn: Elwood +description: This is Leigha Elwood's description +facsimileTelephoneNumber: +1 510 333-2616 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 744-1312 +title: Master Payroll Consultant +userPassword: Password1 +uid: ElwoodL +givenName: Leigha +mail: ElwoodL@218c25dbb17f4d33a804e7f553e646ad.bitwarden.com +carLicense: FGNX55 +departmentNumber: 2853 +employeeType: Employee +homePhone: +1 510 988-1815 +initials: L. E. +mobile: +1 510 207-2441 +pager: +1 510 100-5903 +roomNumber: 8041 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Basia Smyth +sn: Smyth +description: This is Basia Smyth's description +facsimileTelephoneNumber: +1 804 691-6355 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 564-9810 +title: Supreme Peons Czar +userPassword: Password1 +uid: SmythB +givenName: Basia +mail: SmythB@a08e5c7ab6bd42a9af2ba6fcd91cbe9f.bitwarden.com +carLicense: 944YCR +departmentNumber: 5381 +employeeType: Contract +homePhone: +1 804 941-4080 +initials: B. S. +mobile: +1 804 888-3485 +pager: +1 804 360-3745 +roomNumber: 8972 +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilberta Doshi +sn: Doshi +description: This is Gilberta Doshi's description +facsimileTelephoneNumber: +1 415 766-7337 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 549-8119 +title: Junior Product Testing Sales Rep +userPassword: Password1 +uid: DoshiG +givenName: Gilberta +mail: DoshiG@ab4945aa25ed4d9d93fe1199c4fd7f3e.bitwarden.com +carLicense: VISJ9A +departmentNumber: 7562 +employeeType: Employee +homePhone: +1 415 436-5430 +initials: G. D. +mobile: +1 415 623-9928 +pager: +1 415 266-5594 +roomNumber: 9824 +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mario Cassidy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mario Cassidy +sn: Cassidy +description: This is Mario Cassidy's description +facsimileTelephoneNumber: +1 415 449-4430 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 859-7756 +title: Master Product Testing Artist +userPassword: Password1 +uid: CassidyM +givenName: Mario +mail: CassidyM@263d73d48ee5419ea1c676473e08abd9.bitwarden.com +carLicense: 4NVN4U +departmentNumber: 9482 +employeeType: Contract +homePhone: +1 415 147-9030 +initials: M. C. +mobile: +1 415 312-6213 +pager: +1 415 576-5803 +roomNumber: 8710 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Amy Rafol,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amy Rafol +sn: Rafol +description: This is Amy Rafol's description +facsimileTelephoneNumber: +1 818 543-9739 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 818 289-8622 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: RafolA +givenName: Amy +mail: RafolA@5a6fbc14dafa43aa8f4929e962d562ff.bitwarden.com +carLicense: 5UUI0O +departmentNumber: 1762 +employeeType: Contract +homePhone: +1 818 970-1776 +initials: A. R. +mobile: +1 818 970-1709 +pager: +1 818 172-1613 +roomNumber: 9542 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lennart Shultz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lennart Shultz +sn: Shultz +description: This is Lennart Shultz's description +facsimileTelephoneNumber: +1 818 522-9643 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 730-9217 +title: Master Payroll Writer +userPassword: Password1 +uid: ShultzL +givenName: Lennart +mail: ShultzL@e06a3ea69e0543f694c26fcc29d8e66a.bitwarden.com +carLicense: 6M51O6 +departmentNumber: 8699 +employeeType: Normal +homePhone: +1 818 166-6980 +initials: L. S. +mobile: +1 818 753-3488 +pager: +1 818 636-5202 +roomNumber: 8684 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sherwood Caton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherwood Caton +sn: Caton +description: This is Sherwood Caton's description +facsimileTelephoneNumber: +1 818 742-3447 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 418-4637 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: CatonS +givenName: Sherwood +mail: CatonS@b6cc594207744e52965d98de10453ef4.bitwarden.com +carLicense: 5NMIOO +departmentNumber: 3366 +employeeType: Contract +homePhone: +1 818 258-6588 +initials: S. C. +mobile: +1 818 992-4281 +pager: +1 818 538-2900 +roomNumber: 8405 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tesa Suprick +sn: Suprick +description: This is Tesa Suprick's description +facsimileTelephoneNumber: +1 804 327-7038 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 126-1781 +title: Supreme Management Warrior +userPassword: Password1 +uid: SuprickT +givenName: Tesa +mail: SuprickT@ff246c4446e74d80b9a0be3db943a949.bitwarden.com +carLicense: W3NKRN +departmentNumber: 1945 +employeeType: Employee +homePhone: +1 804 802-5790 +initials: T. S. +mobile: +1 804 556-6427 +pager: +1 804 522-5953 +roomNumber: 8313 +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maryl Fleugel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryl Fleugel +sn: Fleugel +description: This is Maryl Fleugel's description +facsimileTelephoneNumber: +1 510 671-7708 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 274-9868 +title: Supreme Peons Engineer +userPassword: Password1 +uid: FleugelM +givenName: Maryl +mail: FleugelM@3b31b1e22b674d48829733c162895a88.bitwarden.com +carLicense: N3D3OC +departmentNumber: 7230 +employeeType: Normal +homePhone: +1 510 912-5180 +initials: M. F. +mobile: +1 510 615-3421 +pager: +1 510 611-2965 +roomNumber: 9841 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarine Hauge +sn: Hauge +description: This is Clarine Hauge's description +facsimileTelephoneNumber: +1 206 279-6380 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 719-5924 +title: Associate Peons Director +userPassword: Password1 +uid: HaugeC +givenName: Clarine +mail: HaugeC@a774bfe9f410429f835439e7192aaefa.bitwarden.com +carLicense: BJH7OU +departmentNumber: 3194 +employeeType: Employee +homePhone: +1 206 708-6359 +initials: C. H. +mobile: +1 206 868-9503 +pager: +1 206 316-1350 +roomNumber: 9088 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cordy Ghossein,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cordy Ghossein +sn: Ghossein +description: This is Cordy Ghossein's description +facsimileTelephoneNumber: +1 408 555-6169 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 656-2811 +title: Junior Administrative Janitor +userPassword: Password1 +uid: GhosseiC +givenName: Cordy +mail: GhosseiC@dcff8ad1dc3f4785b5ae7b1adb2fe760.bitwarden.com +carLicense: 23241T +departmentNumber: 9413 +employeeType: Contract +homePhone: +1 408 312-4644 +initials: C. G. +mobile: +1 408 549-9212 +pager: +1 408 785-9327 +roomNumber: 9160 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Judith Fuqua +sn: Fuqua +description: This is Judith Fuqua's description +facsimileTelephoneNumber: +1 213 708-1793 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 549-1443 +title: Junior Peons Figurehead +userPassword: Password1 +uid: FuquaJ +givenName: Judith +mail: FuquaJ@7ac8324ed047496d93c460651ba38b86.bitwarden.com +carLicense: K603IJ +departmentNumber: 5996 +employeeType: Contract +homePhone: +1 213 145-8333 +initials: J. F. +mobile: +1 213 841-2072 +pager: +1 213 763-6583 +roomNumber: 8505 +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurine Boucher +sn: Boucher +description: This is Maurine Boucher's description +facsimileTelephoneNumber: +1 818 498-9009 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 477-9422 +title: Chief Product Testing Manager +userPassword: Password1 +uid: BoucherM +givenName: Maurine +mail: BoucherM@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com +carLicense: IGXUD1 +departmentNumber: 7554 +employeeType: Normal +homePhone: +1 818 779-7979 +initials: M. B. +mobile: +1 818 251-3320 +pager: +1 818 901-5046 +roomNumber: 9532 +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com + +dn: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Billie Shoulars +sn: Shoulars +description: This is Billie Shoulars's description +facsimileTelephoneNumber: +1 510 900-6953 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 684-7081 +title: Associate Product Development Madonna +userPassword: Password1 +uid: ShoularB +givenName: Billie +mail: ShoularB@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com +carLicense: YJCUYT +departmentNumber: 8629 +employeeType: Contract +homePhone: +1 510 294-3197 +initials: B. S. +mobile: +1 510 179-7615 +pager: +1 510 666-2247 +roomNumber: 9594 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trever Shearer +sn: Shearer +description: This is Trever Shearer's description +facsimileTelephoneNumber: +1 206 995-7661 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 697-3991 +title: Chief Janitorial Punk +userPassword: Password1 +uid: ShearerT +givenName: Trever +mail: ShearerT@5916185da56942a89544e9165bcd412d.bitwarden.com +carLicense: DSBW41 +departmentNumber: 9492 +employeeType: Employee +homePhone: +1 206 800-2258 +initials: T. S. +mobile: +1 206 211-9198 +pager: +1 206 285-2865 +roomNumber: 9325 +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jocelin Balakrishnan +sn: Balakrishnan +description: This is Jocelin Balakrishnan's description +facsimileTelephoneNumber: +1 206 423-5063 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 280-5475 +title: Supreme Payroll Janitor +userPassword: Password1 +uid: BalakriJ +givenName: Jocelin +mail: BalakriJ@14d1b49506834e5c9ccc77fc2529566f.bitwarden.com +carLicense: XUOBJN +departmentNumber: 6634 +employeeType: Normal +homePhone: +1 206 353-9961 +initials: J. B. +mobile: +1 206 499-8867 +pager: +1 206 636-5045 +roomNumber: 9240 +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jacquie Desilets,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquie Desilets +sn: Desilets +description: This is Jacquie Desilets's description +facsimileTelephoneNumber: +1 415 639-7286 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 884-8049 +title: Junior Product Development Engineer +userPassword: Password1 +uid: DesiletJ +givenName: Jacquie +mail: DesiletJ@19dd9c11e1e24ba5acf8058772d38ba6.bitwarden.com +carLicense: 7L65IH +departmentNumber: 5215 +employeeType: Contract +homePhone: +1 415 990-5275 +initials: J. D. +mobile: +1 415 992-8490 +pager: +1 415 533-4673 +roomNumber: 8839 +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Uday Hoffpauir +sn: Hoffpauir +description: This is Uday Hoffpauir's description +facsimileTelephoneNumber: +1 818 661-7221 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 879-5156 +title: Associate Administrative Manager +userPassword: Password1 +uid: HoffpauU +givenName: Uday +mail: HoffpauU@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com +carLicense: 4BI3C8 +departmentNumber: 6623 +employeeType: Employee +homePhone: +1 818 986-9200 +initials: U. H. +mobile: +1 818 393-6886 +pager: +1 818 931-8140 +roomNumber: 8478 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramiz Gung +sn: Gung +description: This is Ramiz Gung's description +facsimileTelephoneNumber: +1 510 756-6258 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 425-2848 +title: Junior Administrative Madonna +userPassword: Password1 +uid: GungR +givenName: Ramiz +mail: GungR@1bf42132d9e3428b965ff134eb4c90cb.bitwarden.com +carLicense: UL1FJ2 +departmentNumber: 6455 +employeeType: Contract +homePhone: +1 510 850-1874 +initials: R. G. +mobile: +1 510 737-1730 +pager: +1 510 640-6625 +roomNumber: 8267 +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Windy Sadeghi +sn: Sadeghi +description: This is Windy Sadeghi's description +facsimileTelephoneNumber: +1 804 253-5991 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 915-7564 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: SadeghiW +givenName: Windy +mail: SadeghiW@b9931a18cd464837927f1e3fda3b9311.bitwarden.com +carLicense: A7PXET +departmentNumber: 1142 +employeeType: Employee +homePhone: +1 804 950-5178 +initials: W. S. +mobile: +1 804 496-8325 +pager: +1 804 409-6993 +roomNumber: 9859 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: QuangTrung Worsley +sn: Worsley +description: This is QuangTrung Worsley's description +facsimileTelephoneNumber: +1 415 771-2349 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 886-2609 +title: Supreme Human Resources Consultant +userPassword: Password1 +uid: WorsleyQ +givenName: QuangTrung +mail: WorsleyQ@29304bc9f76b483ca16f5ea531e7bcf1.bitwarden.com +carLicense: NV1BFW +departmentNumber: 3311 +employeeType: Employee +homePhone: +1 415 286-2555 +initials: Q. W. +mobile: +1 415 916-7155 +pager: +1 415 876-2134 +roomNumber: 9588 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassey Papp +sn: Papp +description: This is Cassey Papp's description +facsimileTelephoneNumber: +1 415 910-5130 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 356-8349 +title: Master Payroll Consultant +userPassword: Password1 +uid: PappC +givenName: Cassey +mail: PappC@8a0ffcfb089f41e2a9b8a526ad5a6649.bitwarden.com +carLicense: ORDJ65 +departmentNumber: 2959 +employeeType: Contract +homePhone: +1 415 407-6156 +initials: C. P. +mobile: +1 415 309-6369 +pager: +1 415 805-7869 +roomNumber: 8709 +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurelia Hann +sn: Hann +description: This is Aurelia Hann's description +facsimileTelephoneNumber: +1 213 312-8334 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 313-2852 +title: Supreme Human Resources Czar +userPassword: Password1 +uid: HannA +givenName: Aurelia +mail: HannA@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com +carLicense: GHXBCB +departmentNumber: 2883 +employeeType: Normal +homePhone: +1 213 141-1215 +initials: A. H. +mobile: +1 213 718-3480 +pager: +1 213 625-8820 +roomNumber: 8651 +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com + +dn: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saibal Bennatt +sn: Bennatt +description: This is Saibal Bennatt's description +facsimileTelephoneNumber: +1 213 658-6915 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 528-9188 +title: Junior Human Resources Admin +userPassword: Password1 +uid: BennattS +givenName: Saibal +mail: BennattS@8b0e9ea1f038436b807e98b4a43ebc09.bitwarden.com +carLicense: J4UJNT +departmentNumber: 2522 +employeeType: Normal +homePhone: +1 213 526-1111 +initials: S. B. +mobile: +1 213 767-9471 +pager: +1 213 493-7894 +roomNumber: 9017 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rani Korpela,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rani Korpela +sn: Korpela +description: This is Rani Korpela's description +facsimileTelephoneNumber: +1 408 683-4286 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 408 158-6399 +title: Master Product Testing Mascot +userPassword: Password1 +uid: KorpelaR +givenName: Rani +mail: KorpelaR@108017314a624d21908ec502dfe2ba35.bitwarden.com +carLicense: 6DBSNX +departmentNumber: 4774 +employeeType: Contract +homePhone: +1 408 817-7377 +initials: R. K. +mobile: +1 408 842-3261 +pager: +1 408 176-7266 +roomNumber: 9892 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com + +dn: cn=Danni Tsuji,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danni Tsuji +sn: Tsuji +description: This is Danni Tsuji's description +facsimileTelephoneNumber: +1 206 157-1313 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 463-6182 +title: Supreme Product Testing President +userPassword: Password1 +uid: TsujiD +givenName: Danni +mail: TsujiD@74874b1f59f14645addb6739912642a5.bitwarden.com +carLicense: L63T5P +departmentNumber: 6140 +employeeType: Normal +homePhone: +1 206 372-6035 +initials: D. T. +mobile: +1 206 776-6812 +pager: +1 206 550-9436 +roomNumber: 8047 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fredia Handschy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fredia Handschy +sn: Handschy +description: This is Fredia Handschy's description +facsimileTelephoneNumber: +1 408 209-6945 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 408 897-3090 +title: Master Human Resources Director +userPassword: Password1 +uid: HandschF +givenName: Fredia +mail: HandschF@75222612f09a48669122f28219f497da.bitwarden.com +carLicense: 71NL6M +departmentNumber: 7421 +employeeType: Contract +homePhone: +1 408 112-3718 +initials: F. H. +mobile: +1 408 680-9062 +pager: +1 408 107-8994 +roomNumber: 8984 +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Verna Muldoon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verna Muldoon +sn: Muldoon +description: This is Verna Muldoon's description +facsimileTelephoneNumber: +1 415 460-9862 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 646-4231 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: MuldoonV +givenName: Verna +mail: MuldoonV@0fc5b098eca54d018d5f544f351b55a0.bitwarden.com +carLicense: HJDPC9 +departmentNumber: 2272 +employeeType: Employee +homePhone: +1 415 850-9553 +initials: V. M. +mobile: +1 415 490-4862 +pager: +1 415 429-2273 +roomNumber: 8164 +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bjorn Treen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bjorn Treen +sn: Treen +description: This is Bjorn Treen's description +facsimileTelephoneNumber: +1 408 390-8685 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 857-6251 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: TreenB +givenName: Bjorn +mail: TreenB@1328e218756d4754a97476c1079975d2.bitwarden.com +carLicense: DIXNDC +departmentNumber: 4977 +employeeType: Employee +homePhone: +1 408 680-4212 +initials: B. T. +mobile: +1 408 651-1060 +pager: +1 408 726-6312 +roomNumber: 9030 +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Omayma Dekeyser +sn: Dekeyser +description: This is Omayma Dekeyser's description +facsimileTelephoneNumber: +1 408 205-8531 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 189-3552 +title: Junior Payroll President +userPassword: Password1 +uid: DekeyseO +givenName: Omayma +mail: DekeyseO@9bf9dafac536489a824f4a8be21bc745.bitwarden.com +carLicense: 6E28R4 +departmentNumber: 3326 +employeeType: Employee +homePhone: +1 408 231-8335 +initials: O. D. +mobile: +1 408 197-4141 +pager: +1 408 250-3852 +roomNumber: 8503 +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Garth Callery,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Garth Callery +sn: Callery +description: This is Garth Callery's description +facsimileTelephoneNumber: +1 213 544-9479 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 564-9615 +title: Supreme Payroll Czar +userPassword: Password1 +uid: CalleryG +givenName: Garth +mail: CalleryG@b4277bbde59048f39a27a7d14145a06f.bitwarden.com +carLicense: 9QVY7N +departmentNumber: 6786 +employeeType: Normal +homePhone: +1 213 448-5667 +initials: G. C. +mobile: +1 213 841-1026 +pager: +1 213 306-3830 +roomNumber: 8105 +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Livvie VanOorschot,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Livvie VanOorschot +sn: VanOorschot +description: This is Livvie VanOorschot's description +facsimileTelephoneNumber: +1 408 105-8128 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 171-8121 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: VanOorsL +givenName: Livvie +mail: VanOorsL@fd1544a938044a8db9c9f3fe2943b130.bitwarden.com +carLicense: FXBESI +departmentNumber: 9885 +employeeType: Normal +homePhone: +1 408 386-6801 +initials: L. V. +mobile: +1 408 557-9132 +pager: +1 408 547-3981 +roomNumber: 9339 +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anderson Hockaday +sn: Hockaday +description: This is Anderson Hockaday's description +facsimileTelephoneNumber: +1 408 975-9986 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 408 121-4217 +title: Associate Peons Figurehead +userPassword: Password1 +uid: HockadaA +givenName: Anderson +mail: HockadaA@1d41a9185db448b89563a6b96b582da2.bitwarden.com +carLicense: NCFIXA +departmentNumber: 4440 +employeeType: Employee +homePhone: +1 408 248-5722 +initials: A. H. +mobile: +1 408 953-3759 +pager: +1 408 913-8496 +roomNumber: 8252 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaia Archer +sn: Archer +description: This is Kaia Archer's description +facsimileTelephoneNumber: +1 408 282-8410 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 961-2634 +title: Junior Payroll Technician +userPassword: Password1 +uid: ArcherK +givenName: Kaia +mail: ArcherK@24654ed939354e3da65d9c0370b72da6.bitwarden.com +carLicense: 9HF5LU +departmentNumber: 9127 +employeeType: Contract +homePhone: +1 408 409-7457 +initials: K. A. +mobile: +1 408 610-8382 +pager: +1 408 829-8006 +roomNumber: 8973 +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bethany Buder +sn: Buder +description: This is Bethany Buder's description +facsimileTelephoneNumber: +1 206 371-4057 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 945-8854 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: BuderB +givenName: Bethany +mail: BuderB@010c83cd95d146b392f7ca822e61fa73.bitwarden.com +carLicense: Q75YP4 +departmentNumber: 7147 +employeeType: Contract +homePhone: +1 206 472-5418 +initials: B. B. +mobile: +1 206 470-3039 +pager: +1 206 562-4997 +roomNumber: 8626 +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyssa Ranieri +sn: Ranieri +description: This is Lyssa Ranieri's description +facsimileTelephoneNumber: +1 510 819-2603 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 219-9360 +title: Associate Product Development Czar +userPassword: Password1 +uid: RanieriL +givenName: Lyssa +mail: RanieriL@c03f4de271664bdb800593169930d556.bitwarden.com +carLicense: E46QT7 +departmentNumber: 5976 +employeeType: Contract +homePhone: +1 510 182-1884 +initials: L. R. +mobile: +1 510 192-3197 +pager: +1 510 759-3123 +roomNumber: 8497 +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willie Godse +sn: Godse +description: This is Willie Godse's description +facsimileTelephoneNumber: +1 818 598-3021 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 818 694-7190 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: GodseW +givenName: Willie +mail: GodseW@f75201d6bca8489ca55858f0848a1669.bitwarden.com +carLicense: 0M41DL +departmentNumber: 6808 +employeeType: Contract +homePhone: +1 818 990-5140 +initials: W. G. +mobile: +1 818 161-6515 +pager: +1 818 506-4205 +roomNumber: 9801 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nichole Shurtleff +sn: Shurtleff +description: This is Nichole Shurtleff's description +facsimileTelephoneNumber: +1 206 634-3727 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 206 483-8548 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: ShurtleN +givenName: Nichole +mail: ShurtleN@cb6528fc9c7340cb803e788c0a111c6f.bitwarden.com +carLicense: TAG1W6 +departmentNumber: 5649 +employeeType: Employee +homePhone: +1 206 855-6609 +initials: N. S. +mobile: +1 206 309-8506 +pager: +1 206 104-4302 +roomNumber: 8862 +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaye Tjia +sn: Tjia +description: This is Gaye Tjia's description +facsimileTelephoneNumber: +1 415 891-2884 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 898-5690 +title: Master Payroll Evangelist +userPassword: Password1 +uid: TjiaG +givenName: Gaye +mail: TjiaG@a85c3929256747e4a90337c3ba0f9538.bitwarden.com +carLicense: 7O532O +departmentNumber: 7848 +employeeType: Employee +homePhone: +1 415 820-6696 +initials: G. T. +mobile: +1 415 163-6683 +pager: +1 415 878-1919 +roomNumber: 8280 +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valencia Claise +sn: Claise +description: This is Valencia Claise's description +facsimileTelephoneNumber: +1 213 390-5471 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 635-8343 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: ClaiseV +givenName: Valencia +mail: ClaiseV@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com +carLicense: W3R7EE +departmentNumber: 4128 +employeeType: Normal +homePhone: +1 213 779-5606 +initials: V. C. +mobile: +1 213 347-3505 +pager: +1 213 973-5763 +roomNumber: 9738 +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loria Buckley +sn: Buckley +description: This is Loria Buckley's description +facsimileTelephoneNumber: +1 408 282-7599 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 408 777-8632 +title: Chief Administrative Grunt +userPassword: Password1 +uid: BuckleyL +givenName: Loria +mail: BuckleyL@cfdd74fbc82d447189196d6325d87684.bitwarden.com +carLicense: 9X0PMC +departmentNumber: 7144 +employeeType: Contract +homePhone: +1 408 845-4142 +initials: L. B. +mobile: +1 408 896-5654 +pager: +1 408 965-3227 +roomNumber: 9716 +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christiane Sydoryk +sn: Sydoryk +description: This is Christiane Sydoryk's description +facsimileTelephoneNumber: +1 415 401-5792 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 356-9500 +title: Associate Payroll Developer +userPassword: Password1 +uid: SydorykC +givenName: Christiane +mail: SydorykC@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com +carLicense: 24BRJO +departmentNumber: 4355 +employeeType: Employee +homePhone: +1 415 605-3500 +initials: C. S. +mobile: +1 415 255-3748 +pager: +1 415 285-2642 +roomNumber: 9297 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shahram Campeau +sn: Campeau +description: This is Shahram Campeau's description +facsimileTelephoneNumber: +1 213 297-1926 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 791-6235 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: CampeauS +givenName: Shahram +mail: CampeauS@81fb0b932b3945ce818faf5c44a57597.bitwarden.com +carLicense: FGEAN4 +departmentNumber: 7502 +employeeType: Employee +homePhone: +1 213 879-6305 +initials: S. C. +mobile: +1 213 315-4693 +pager: +1 213 427-4935 +roomNumber: 8934 +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fanchette Zaman +sn: Zaman +description: This is Fanchette Zaman's description +facsimileTelephoneNumber: +1 818 897-9094 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 183-7654 +title: Master Administrative Consultant +userPassword: Password1 +uid: ZamanF +givenName: Fanchette +mail: ZamanF@520f892e74614b6eaf9cfa5ff5ab84c6.bitwarden.com +carLicense: T2I17P +departmentNumber: 4873 +employeeType: Employee +homePhone: +1 818 726-5940 +initials: F. Z. +mobile: +1 818 159-2563 +pager: +1 818 235-3733 +roomNumber: 8472 +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Junk Nishith +sn: Nishith +description: This is Junk Nishith's description +facsimileTelephoneNumber: +1 415 420-7634 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 322-6938 +title: Chief Peons Stooge +userPassword: Password1 +uid: NishithJ +givenName: Junk +mail: NishithJ@1177792fc11347bea581d955434fd518.bitwarden.com +carLicense: 1B7FL5 +departmentNumber: 1346 +employeeType: Employee +homePhone: +1 415 217-6007 +initials: J. N. +mobile: +1 415 520-4281 +pager: +1 415 229-5875 +roomNumber: 8010 +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bennett Biage +sn: Biage +description: This is Bennett Biage's description +facsimileTelephoneNumber: +1 213 569-2509 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 814-9010 +title: Chief Peons Warrior +userPassword: Password1 +uid: BiageB +givenName: Bennett +mail: BiageB@cffeb78804aa490585f0a6cc8cbc0f74.bitwarden.com +carLicense: 04M83L +departmentNumber: 8422 +employeeType: Employee +homePhone: +1 213 649-9318 +initials: B. B. +mobile: +1 213 164-6670 +pager: +1 213 975-8538 +roomNumber: 9084 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Klazien Propes,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klazien Propes +sn: Propes +description: This is Klazien Propes's description +facsimileTelephoneNumber: +1 415 717-3895 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 415 801-6196 +title: Chief Payroll Grunt +userPassword: Password1 +uid: PropesK +givenName: Klazien +mail: PropesK@dd687ab076584ccca8478641e789ca39.bitwarden.com +carLicense: YQ2KDO +departmentNumber: 7846 +employeeType: Normal +homePhone: +1 415 241-6726 +initials: K. P. +mobile: +1 415 961-5268 +pager: +1 415 907-7889 +roomNumber: 8791 +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kenneth DAnjou,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kenneth DAnjou +sn: DAnjou +description: This is Kenneth DAnjou's description +facsimileTelephoneNumber: +1 415 813-6625 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 591-3592 +title: Chief Peons Technician +userPassword: Password1 +uid: DAnjouK +givenName: Kenneth +mail: DAnjouK@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com +carLicense: 4A1H2K +departmentNumber: 4303 +employeeType: Contract +homePhone: +1 415 274-2950 +initials: K. D. +mobile: +1 415 958-3506 +pager: +1 415 944-9169 +roomNumber: 9447 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Parviz Shahen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parviz Shahen +sn: Shahen +description: This is Parviz Shahen's description +facsimileTelephoneNumber: +1 213 809-1692 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 264-6876 +title: Associate Janitorial President +userPassword: Password1 +uid: ShahenP +givenName: Parviz +mail: ShahenP@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com +carLicense: 4B9H98 +departmentNumber: 6122 +employeeType: Normal +homePhone: +1 213 825-8863 +initials: P. S. +mobile: +1 213 611-9199 +pager: +1 213 655-1537 +roomNumber: 8855 +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veda Hunsucker +sn: Hunsucker +description: This is Veda Hunsucker's description +facsimileTelephoneNumber: +1 415 441-3782 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 759-1804 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: HunsuckV +givenName: Veda +mail: HunsuckV@e6b52be13e984c2c8799a67382d2c196.bitwarden.com +carLicense: Q0HF0G +departmentNumber: 9406 +employeeType: Normal +homePhone: +1 415 207-4918 +initials: V. H. +mobile: +1 415 877-6444 +pager: +1 415 428-7682 +roomNumber: 8526 +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coleen Litherland +sn: Litherland +description: This is Coleen Litherland's description +facsimileTelephoneNumber: +1 415 509-5713 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 542-8198 +title: Associate Janitorial Visionary +userPassword: Password1 +uid: LitherlC +givenName: Coleen +mail: LitherlC@8a82552e24c34c32a05d56cde3562a9e.bitwarden.com +carLicense: VE855W +departmentNumber: 6842 +employeeType: Contract +homePhone: +1 415 197-4194 +initials: C. L. +mobile: +1 415 241-2567 +pager: +1 415 223-9057 +roomNumber: 8208 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChongLai Hingtgen +sn: Hingtgen +description: This is ChongLai Hingtgen's description +facsimileTelephoneNumber: +1 804 109-9103 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 712-2527 +title: Junior Management Visionary +userPassword: Password1 +uid: HingtgeC +givenName: ChongLai +mail: HingtgeC@411afe1416f249ecaeca51c1080b0066.bitwarden.com +carLicense: VYI6SP +departmentNumber: 6851 +employeeType: Normal +homePhone: +1 804 458-7199 +initials: C. H. +mobile: +1 804 905-2333 +pager: +1 804 495-8494 +roomNumber: 9570 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Izabel Heeralall +sn: Heeralall +description: This is Izabel Heeralall's description +facsimileTelephoneNumber: +1 415 228-7254 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 671-9180 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: HeeralaI +givenName: Izabel +mail: HeeralaI@86e5c38e7f5c41538bf306ddacec173d.bitwarden.com +carLicense: 76EUVI +departmentNumber: 8085 +employeeType: Normal +homePhone: +1 415 121-9905 +initials: I. H. +mobile: +1 415 941-7638 +pager: +1 415 680-4463 +roomNumber: 9535 +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rueben Dynie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rueben Dynie +sn: Dynie +description: This is Rueben Dynie's description +facsimileTelephoneNumber: +1 408 492-8443 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 400-6611 +title: Junior Product Development Admin +userPassword: Password1 +uid: DynieR +givenName: Rueben +mail: DynieR@59b31ced00714ba083da3568d5c3fc53.bitwarden.com +carLicense: 1M9C3W +departmentNumber: 1617 +employeeType: Employee +homePhone: +1 408 148-2278 +initials: R. D. +mobile: +1 408 535-2710 +pager: +1 408 623-2080 +roomNumber: 9247 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lolita Mecteau +sn: Mecteau +description: This is Lolita Mecteau's description +facsimileTelephoneNumber: +1 213 689-3390 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 307-2543 +title: Chief Payroll Grunt +userPassword: Password1 +uid: MecteauL +givenName: Lolita +mail: MecteauL@15e1dad937154f5596069e31511d5e99.bitwarden.com +carLicense: A5DID4 +departmentNumber: 1015 +employeeType: Employee +homePhone: +1 213 199-1071 +initials: L. M. +mobile: +1 213 110-4713 +pager: +1 213 145-4492 +roomNumber: 9841 +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gunars Rafflin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gunars Rafflin +sn: Rafflin +description: This is Gunars Rafflin's description +facsimileTelephoneNumber: +1 206 967-5945 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 805-8862 +title: Associate Product Development Mascot +userPassword: Password1 +uid: RafflinG +givenName: Gunars +mail: RafflinG@781f1406846947ac8e77d85a552d214c.bitwarden.com +carLicense: EAHGK5 +departmentNumber: 4202 +employeeType: Normal +homePhone: +1 206 820-5957 +initials: G. R. +mobile: +1 206 961-4663 +pager: +1 206 886-7476 +roomNumber: 8214 +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Thad Besnier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thad Besnier +sn: Besnier +description: This is Thad Besnier's description +facsimileTelephoneNumber: +1 510 858-1238 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 680-7377 +title: Master Human Resources Assistant +userPassword: Password1 +uid: BesnierT +givenName: Thad +mail: BesnierT@86960440b39e484991dab5509dd065da.bitwarden.com +carLicense: QEYGMQ +departmentNumber: 5174 +employeeType: Employee +homePhone: +1 510 300-8189 +initials: T. B. +mobile: +1 510 891-3604 +pager: +1 510 387-8838 +roomNumber: 8446 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leonard Ireland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonard Ireland +sn: Ireland +description: This is Leonard Ireland's description +facsimileTelephoneNumber: +1 818 990-8640 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 802-9392 +title: Supreme Janitorial Figurehead +userPassword: Password1 +uid: IrelandL +givenName: Leonard +mail: IrelandL@6fb157970cd743f9add2879c395cda3d.bitwarden.com +carLicense: N135JU +departmentNumber: 1942 +employeeType: Employee +homePhone: +1 818 950-6934 +initials: L. I. +mobile: +1 818 907-4356 +pager: +1 818 826-6570 +roomNumber: 9136 +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jany Lotz +sn: Lotz +description: This is Jany Lotz's description +facsimileTelephoneNumber: +1 804 155-1453 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 804 641-3907 +title: Associate Product Testing Architect +userPassword: Password1 +uid: LotzJ +givenName: Jany +mail: LotzJ@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com +carLicense: XGSKW4 +departmentNumber: 5519 +employeeType: Contract +homePhone: +1 804 345-9705 +initials: J. L. +mobile: +1 804 331-1379 +pager: +1 804 496-8841 +roomNumber: 9872 +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aretha Mensinkai +sn: Mensinkai +description: This is Aretha Mensinkai's description +facsimileTelephoneNumber: +1 206 404-2397 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 191-8766 +title: Master Product Testing Vice President +userPassword: Password1 +uid: MensinkA +givenName: Aretha +mail: MensinkA@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com +carLicense: LFHLE5 +departmentNumber: 7607 +employeeType: Contract +homePhone: +1 206 382-8563 +initials: A. M. +mobile: +1 206 974-9508 +pager: +1 206 637-9012 +roomNumber: 8320 +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sultan Sergo +sn: Sergo +description: This is Sultan Sergo's description +facsimileTelephoneNumber: +1 213 652-6031 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 551-2106 +title: Master Human Resources Fellow +userPassword: Password1 +uid: SergoS +givenName: Sultan +mail: SergoS@08adbe0d28a046d4a737480e8f7a8864.bitwarden.com +carLicense: CUDWBI +departmentNumber: 5926 +employeeType: Normal +homePhone: +1 213 870-4250 +initials: S. S. +mobile: +1 213 857-5643 +pager: +1 213 823-8566 +roomNumber: 8545 +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninnetta Luzarraga +sn: Luzarraga +description: This is Ninnetta Luzarraga's description +facsimileTelephoneNumber: +1 510 796-4346 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 894-1354 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: LuzarraN +givenName: Ninnetta +mail: LuzarraN@38fa64796bc14d52bff67c18f15afb33.bitwarden.com +carLicense: 5UY9W3 +departmentNumber: 9395 +employeeType: Employee +homePhone: +1 510 688-3649 +initials: N. L. +mobile: +1 510 538-7875 +pager: +1 510 879-9646 +roomNumber: 9888 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxana VandenHeuvel +sn: VandenHeuvel +description: This is Roxana VandenHeuvel's description +facsimileTelephoneNumber: +1 206 196-6160 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 206 131-1596 +title: Chief Human Resources Warrior +userPassword: Password1 +uid: VandenHR +givenName: Roxana +mail: VandenHR@ba6a021b4ab04e618e804649a47d46ad.bitwarden.com +carLicense: M79ED5 +departmentNumber: 9432 +employeeType: Employee +homePhone: +1 206 426-7848 +initials: R. V. +mobile: +1 206 370-1636 +pager: +1 206 762-1743 +roomNumber: 8881 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erena Mersinger +sn: Mersinger +description: This is Erena Mersinger's description +facsimileTelephoneNumber: +1 818 122-8359 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 298-7364 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: MersingE +givenName: Erena +mail: MersingE@7670182abb394f41a5633ad118cf9427.bitwarden.com +carLicense: J2RV3Q +departmentNumber: 4658 +employeeType: Contract +homePhone: +1 818 152-3971 +initials: E. M. +mobile: +1 818 416-7811 +pager: +1 818 416-5955 +roomNumber: 8729 +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nitin Operators +sn: Operators +description: This is Nitin Operators's description +facsimileTelephoneNumber: +1 804 653-2448 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 863-2785 +title: Master Product Development Warrior +userPassword: Password1 +uid: OperatoN +givenName: Nitin +mail: OperatoN@158d3f3fe926431185097653519b63f6.bitwarden.com +carLicense: 31BECJ +departmentNumber: 5723 +employeeType: Normal +homePhone: +1 804 900-5197 +initials: N. O. +mobile: +1 804 178-2396 +pager: +1 804 402-1314 +roomNumber: 9968 +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hennrietta Siewert +sn: Siewert +description: This is Hennrietta Siewert's description +facsimileTelephoneNumber: +1 408 635-6498 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 752-4471 +title: Master Management Fellow +userPassword: Password1 +uid: SiewertH +givenName: Hennrietta +mail: SiewertH@c91f0550b80f407f9309a7740af038d8.bitwarden.com +carLicense: 9H6EM6 +departmentNumber: 5015 +employeeType: Contract +homePhone: +1 408 516-4074 +initials: H. S. +mobile: +1 408 470-8047 +pager: +1 408 733-3090 +roomNumber: 9498 +secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanRoch Kosturik +sn: Kosturik +description: This is JeanRoch Kosturik's description +facsimileTelephoneNumber: +1 213 218-1107 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 482-1027 +title: Master Human Resources Admin +userPassword: Password1 +uid: KosturiJ +givenName: JeanRoch +mail: KosturiJ@fa1af835a33740e2a57a5bcf70758d5b.bitwarden.com +carLicense: DSD47U +departmentNumber: 2706 +employeeType: Contract +homePhone: +1 213 858-1591 +initials: J. K. +mobile: +1 213 619-3775 +pager: +1 213 582-2096 +roomNumber: 8216 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othelia Solodko +sn: Solodko +description: This is Othelia Solodko's description +facsimileTelephoneNumber: +1 206 887-7806 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 378-6582 +title: Master Peons Stooge +userPassword: Password1 +uid: SolodkoO +givenName: Othelia +mail: SolodkoO@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com +carLicense: I97FMK +departmentNumber: 4191 +employeeType: Employee +homePhone: +1 206 389-5729 +initials: O. S. +mobile: +1 206 857-6033 +pager: +1 206 290-3911 +roomNumber: 9096 +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huong Commazzi +sn: Commazzi +description: This is Huong Commazzi's description +facsimileTelephoneNumber: +1 206 221-5427 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 206 530-2229 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: CommazzH +givenName: Huong +mail: CommazzH@43a2075086314e66b15465a3ec778b06.bitwarden.com +carLicense: P7M55G +departmentNumber: 1370 +employeeType: Normal +homePhone: +1 206 133-4098 +initials: H. C. +mobile: +1 206 111-1315 +pager: +1 206 298-6219 +roomNumber: 9597 +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duljit Zbuda +sn: Zbuda +description: This is Duljit Zbuda's description +facsimileTelephoneNumber: +1 206 917-1194 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 160-2034 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: ZbudaD +givenName: Duljit +mail: ZbudaD@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com +carLicense: 7QS12C +departmentNumber: 3911 +employeeType: Normal +homePhone: +1 206 697-3498 +initials: D. Z. +mobile: +1 206 206-3973 +pager: +1 206 361-2140 +roomNumber: 8543 +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com + +dn: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thang Bushnell +sn: Bushnell +description: This is Thang Bushnell's description +facsimileTelephoneNumber: +1 818 803-9961 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 818 962-8352 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: BushnelT +givenName: Thang +mail: BushnelT@1ea928fc24024e4dbf51eb3081589728.bitwarden.com +carLicense: H7LL9F +departmentNumber: 3613 +employeeType: Employee +homePhone: +1 818 668-6735 +initials: T. B. +mobile: +1 818 485-4553 +pager: +1 818 782-4257 +roomNumber: 9287 +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carri Gary +sn: Gary +description: This is Carri Gary's description +facsimileTelephoneNumber: +1 415 359-9392 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 415 673-2219 +title: Associate Human Resources Artist +userPassword: Password1 +uid: GaryC +givenName: Carri +mail: GaryC@ca74af6c5dcc4f0b974e414c7310f581.bitwarden.com +carLicense: NT5S26 +departmentNumber: 9604 +employeeType: Employee +homePhone: +1 415 870-2568 +initials: C. G. +mobile: +1 415 909-8660 +pager: +1 415 998-4320 +roomNumber: 9810 +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vance Marschewaki +sn: Marschewaki +description: This is Vance Marschewaki's description +facsimileTelephoneNumber: +1 510 996-7027 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 420-5729 +title: Master Product Testing Janitor +userPassword: Password1 +uid: MarscheV +givenName: Vance +mail: MarscheV@92ea67fb39f84becbbf887d7485c3c5a.bitwarden.com +carLicense: 7K0K4Q +departmentNumber: 1412 +employeeType: Employee +homePhone: +1 510 976-9774 +initials: V. M. +mobile: +1 510 147-5464 +pager: +1 510 508-3807 +roomNumber: 8761 +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Valli Carlebach,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valli Carlebach +sn: Carlebach +description: This is Valli Carlebach's description +facsimileTelephoneNumber: +1 206 729-6166 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 607-4917 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: CarlebaV +givenName: Valli +mail: CarlebaV@01d1aca7cbb94392b78f9069af19437c.bitwarden.com +carLicense: 35LFLP +departmentNumber: 6636 +employeeType: Employee +homePhone: +1 206 938-9575 +initials: V. C. +mobile: +1 206 383-4807 +pager: +1 206 178-1927 +roomNumber: 9423 +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobb Lacosse +sn: Lacosse +description: This is Bobb Lacosse's description +facsimileTelephoneNumber: +1 206 738-6602 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 547-6285 +title: Chief Peons Figurehead +userPassword: Password1 +uid: LacosseB +givenName: Bobb +mail: LacosseB@468db28ee3ec432fadb0f7251c3b2864.bitwarden.com +carLicense: IATND9 +departmentNumber: 3379 +employeeType: Employee +homePhone: +1 206 406-9044 +initials: B. L. +mobile: +1 206 596-4696 +pager: +1 206 613-9297 +roomNumber: 9737 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brunhilda Smale +sn: Smale +description: This is Brunhilda Smale's description +facsimileTelephoneNumber: +1 206 487-8461 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 346-3212 +title: Master Janitorial Stooge +userPassword: Password1 +uid: SmaleB +givenName: Brunhilda +mail: SmaleB@67a50420f0564b4b9d502195a9eb7324.bitwarden.com +carLicense: FA6449 +departmentNumber: 2310 +employeeType: Normal +homePhone: +1 206 249-5504 +initials: B. S. +mobile: +1 206 426-9107 +pager: +1 206 172-9629 +roomNumber: 8081 +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Abby Presutti,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abby Presutti +sn: Presutti +description: This is Abby Presutti's description +facsimileTelephoneNumber: +1 408 118-1853 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 816-4582 +title: Chief Administrative Writer +userPassword: Password1 +uid: PresuttA +givenName: Abby +mail: PresuttA@886606fb40e04b00b9dac2bed959f0a3.bitwarden.com +carLicense: XKDCSM +departmentNumber: 9253 +employeeType: Normal +homePhone: +1 408 504-4076 +initials: A. P. +mobile: +1 408 319-4476 +pager: +1 408 358-3910 +roomNumber: 9515 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilsa Waugh +sn: Waugh +description: This is Ilsa Waugh's description +facsimileTelephoneNumber: +1 415 100-3632 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 768-8908 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: WaughI +givenName: Ilsa +mail: WaughI@7bb49167acf14fb699745413bf51b4ab.bitwarden.com +carLicense: P74F9G +departmentNumber: 2979 +employeeType: Normal +homePhone: +1 415 418-2967 +initials: I. W. +mobile: +1 415 442-4193 +pager: +1 415 849-3939 +roomNumber: 8295 +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cheuk Legrandvallet +sn: Legrandvallet +description: This is Cheuk Legrandvallet's description +facsimileTelephoneNumber: +1 804 684-1917 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 339-4071 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: LegrandC +givenName: Cheuk +mail: LegrandC@fec32bd067f043f9ace8cd549f8f376e.bitwarden.com +carLicense: 4LGAP2 +departmentNumber: 1042 +employeeType: Normal +homePhone: +1 804 863-4335 +initials: C. L. +mobile: +1 804 262-6236 +pager: +1 804 389-9588 +roomNumber: 9302 +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivie Lauson +sn: Lauson +description: This is Vivie Lauson's description +facsimileTelephoneNumber: +1 415 138-5006 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 595-7491 +title: Chief Janitorial Madonna +userPassword: Password1 +uid: LausonV +givenName: Vivie +mail: LausonV@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com +carLicense: 3YRXSC +departmentNumber: 4593 +employeeType: Normal +homePhone: +1 415 826-6726 +initials: V. L. +mobile: +1 415 737-2227 +pager: +1 415 357-7449 +roomNumber: 8217 +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luciana Gilliland +sn: Gilliland +description: This is Luciana Gilliland's description +facsimileTelephoneNumber: +1 213 190-4410 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 860-9648 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: GillilaL +givenName: Luciana +mail: GillilaL@5eb9182fed7b491098a3a7edcd1734b0.bitwarden.com +carLicense: Y62GKV +departmentNumber: 7149 +employeeType: Employee +homePhone: +1 213 411-2866 +initials: L. G. +mobile: +1 213 702-1742 +pager: +1 213 336-3286 +roomNumber: 8874 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Geraldine McLennan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geraldine McLennan +sn: McLennan +description: This is Geraldine McLennan's description +facsimileTelephoneNumber: +1 415 214-9713 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 573-9692 +title: Chief Management Czar +userPassword: Password1 +uid: McLennaG +givenName: Geraldine +mail: McLennaG@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com +carLicense: EYJ7K1 +departmentNumber: 3225 +employeeType: Normal +homePhone: +1 415 236-3717 +initials: G. M. +mobile: +1 415 400-3718 +pager: +1 415 492-5117 +roomNumber: 9679 +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glenda Lai +sn: Lai +description: This is Glenda Lai's description +facsimileTelephoneNumber: +1 213 277-7721 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 136-4643 +title: Chief Product Development Warrior +userPassword: Password1 +uid: LaiG +givenName: Glenda +mail: LaiG@ae53aabd10664b19a046cac496931fe5.bitwarden.com +carLicense: DDAHPD +departmentNumber: 2791 +employeeType: Contract +homePhone: +1 213 232-4054 +initials: G. L. +mobile: +1 213 562-4207 +pager: +1 213 316-9045 +roomNumber: 8200 +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lind Zeiger +sn: Zeiger +description: This is Lind Zeiger's description +facsimileTelephoneNumber: +1 804 939-5223 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 759-2538 +title: Junior Administrative Director +userPassword: Password1 +uid: ZeigerL +givenName: Lind +mail: ZeigerL@ac23a3efb4fc4c9b913a615742b5cec6.bitwarden.com +carLicense: 0VLB7J +departmentNumber: 9129 +employeeType: Normal +homePhone: +1 804 293-6829 +initials: L. Z. +mobile: +1 804 234-4567 +pager: +1 804 463-6224 +roomNumber: 9834 +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valina Raaflaub +sn: Raaflaub +description: This is Valina Raaflaub's description +facsimileTelephoneNumber: +1 408 207-5487 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 408 751-5726 +title: Associate Administrative Madonna +userPassword: Password1 +uid: RaaflauV +givenName: Valina +mail: RaaflauV@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com +carLicense: UXN009 +departmentNumber: 2635 +employeeType: Normal +homePhone: +1 408 374-4763 +initials: V. R. +mobile: +1 408 269-1240 +pager: +1 408 192-7457 +roomNumber: 9917 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Susanne Alink,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susanne Alink +sn: Alink +description: This is Susanne Alink's description +facsimileTelephoneNumber: +1 408 165-3697 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 324-4805 +title: Chief Payroll Writer +userPassword: Password1 +uid: AlinkS +givenName: Susanne +mail: AlinkS@f80ee53b420043fbaade7eda6821c2a3.bitwarden.com +carLicense: YLC96U +departmentNumber: 9144 +employeeType: Normal +homePhone: +1 408 946-1420 +initials: S. A. +mobile: +1 408 191-9000 +pager: +1 408 932-3986 +roomNumber: 9983 +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Al Wrigley +sn: Wrigley +description: This is Al Wrigley's description +facsimileTelephoneNumber: +1 415 639-4021 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 195-2044 +title: Supreme Human Resources Pinhead +userPassword: Password1 +uid: WrigleyA +givenName: Al +mail: WrigleyA@388d6df3272e41188b24fb047a0d1f64.bitwarden.com +carLicense: PI8LDU +departmentNumber: 5460 +employeeType: Employee +homePhone: +1 415 715-2021 +initials: A. W. +mobile: +1 415 803-9074 +pager: +1 415 298-9147 +roomNumber: 8871 +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elizabeth Brassem +sn: Brassem +description: This is Elizabeth Brassem's description +facsimileTelephoneNumber: +1 213 929-7717 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 378-1367 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: BrassemE +givenName: Elizabeth +mail: BrassemE@e0d712a3d6444bfb88c4e181c5b5e72d.bitwarden.com +carLicense: GQSQ58 +departmentNumber: 4906 +employeeType: Contract +homePhone: +1 213 224-2421 +initials: E. B. +mobile: +1 213 130-4716 +pager: +1 213 145-6398 +roomNumber: 8130 +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laurie Bijons +sn: Bijons +description: This is Laurie Bijons's description +facsimileTelephoneNumber: +1 408 519-4146 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 501-3379 +title: Junior Administrative Assistant +userPassword: Password1 +uid: BijonsL +givenName: Laurie +mail: BijonsL@d957d37e990148fd9b9079128818783d.bitwarden.com +carLicense: XRABSI +departmentNumber: 5907 +employeeType: Contract +homePhone: +1 408 231-1351 +initials: L. B. +mobile: +1 408 383-2467 +pager: +1 408 939-5531 +roomNumber: 8750 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Begum Minyard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Begum Minyard +sn: Minyard +description: This is Begum Minyard's description +facsimileTelephoneNumber: +1 408 618-7439 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 461-9050 +title: Master Human Resources Punk +userPassword: Password1 +uid: MinyardB +givenName: Begum +mail: MinyardB@6b490fc40c68440ca61573fe5b83533b.bitwarden.com +carLicense: G43KUD +departmentNumber: 6840 +employeeType: Contract +homePhone: +1 408 137-1174 +initials: B. M. +mobile: +1 408 429-2489 +pager: +1 408 417-5345 +roomNumber: 9913 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hotline Au +sn: Au +description: This is Hotline Au's description +facsimileTelephoneNumber: +1 818 437-9237 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 447-7588 +title: Associate Product Development Admin +userPassword: Password1 +uid: AuH +givenName: Hotline +mail: AuH@a220f117ba9a47bf841474c3d9809325.bitwarden.com +carLicense: XHUI70 +departmentNumber: 3926 +employeeType: Employee +homePhone: +1 818 212-8328 +initials: H. A. +mobile: +1 818 979-4174 +pager: +1 818 968-5394 +roomNumber: 8621 +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cornelle Coupal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cornelle Coupal +sn: Coupal +description: This is Cornelle Coupal's description +facsimileTelephoneNumber: +1 408 114-1692 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 966-6097 +title: Junior Peons Architect +userPassword: Password1 +uid: CoupalC +givenName: Cornelle +mail: CoupalC@006106eb4fa5430982fa52048d307012.bitwarden.com +carLicense: TK21VE +departmentNumber: 5090 +employeeType: Employee +homePhone: +1 408 401-5198 +initials: C. C. +mobile: +1 408 171-5358 +pager: +1 408 408-2167 +roomNumber: 8396 +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vishwa Prodmgmt +sn: Prodmgmt +description: This is Vishwa Prodmgmt's description +facsimileTelephoneNumber: +1 804 961-5982 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 425-2039 +title: Associate Product Testing Figurehead +userPassword: Password1 +uid: ProdmgmV +givenName: Vishwa +mail: ProdmgmV@7747f5fffb014d46a2a05d592c7bbe1a.bitwarden.com +carLicense: 48M74G +departmentNumber: 5804 +employeeType: Employee +homePhone: +1 804 680-2691 +initials: V. P. +mobile: +1 804 630-4680 +pager: +1 804 990-3194 +roomNumber: 9793 +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Turkey Moser,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Turkey Moser +sn: Moser +description: This is Turkey Moser's description +facsimileTelephoneNumber: +1 804 771-2298 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 953-1942 +title: Chief Product Development Fellow +userPassword: Password1 +uid: MoserT +givenName: Turkey +mail: MoserT@3ae6b803292e4da4b28cd13a1bfe807a.bitwarden.com +carLicense: MROJ1V +departmentNumber: 4308 +employeeType: Normal +homePhone: +1 804 983-5088 +initials: T. M. +mobile: +1 804 835-7584 +pager: +1 804 414-1843 +roomNumber: 8669 +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Warwick Mau,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Warwick Mau +sn: Mau +description: This is Warwick Mau's description +facsimileTelephoneNumber: +1 510 782-9299 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 931-2516 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: MauW +givenName: Warwick +mail: MauW@964bc78b98164950b5c94e42f0381893.bitwarden.com +carLicense: BXNXVH +departmentNumber: 7307 +employeeType: Normal +homePhone: +1 510 744-5004 +initials: W. M. +mobile: +1 510 901-2787 +pager: +1 510 752-7025 +roomNumber: 8010 +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WeeSeng AbiAad +sn: AbiAad +description: This is WeeSeng AbiAad's description +facsimileTelephoneNumber: +1 408 920-7220 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 907-1004 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: AbiAadW +givenName: WeeSeng +mail: AbiAadW@fd05e86a9d6648ff83b1905135704728.bitwarden.com +carLicense: UHN2NT +departmentNumber: 2241 +employeeType: Normal +homePhone: +1 408 742-1593 +initials: W. A. +mobile: +1 408 929-4524 +pager: +1 408 325-2339 +roomNumber: 9137 +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wynne Clow +sn: Clow +description: This is Wynne Clow's description +facsimileTelephoneNumber: +1 206 924-9089 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 983-9140 +title: Master Payroll Assistant +userPassword: Password1 +uid: ClowW +givenName: Wynne +mail: ClowW@ace8aeb1c7ed45ec9b1e40da691d3781.bitwarden.com +carLicense: IMP62E +departmentNumber: 3642 +employeeType: Contract +homePhone: +1 206 569-5048 +initials: W. C. +mobile: +1 206 959-6704 +pager: +1 206 214-1685 +roomNumber: 8658 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelly Keller +sn: Keller +description: This is Shelly Keller's description +facsimileTelephoneNumber: +1 408 715-4974 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 979-2903 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: KellerS +givenName: Shelly +mail: KellerS@539cce6ead8749dbb15039351f6600f2.bitwarden.com +carLicense: Y9Y9FD +departmentNumber: 6721 +employeeType: Employee +homePhone: +1 408 937-1205 +initials: S. K. +mobile: +1 408 264-9109 +pager: +1 408 441-4783 +roomNumber: 8321 +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ole Carbajal +sn: Carbajal +description: This is Ole Carbajal's description +facsimileTelephoneNumber: +1 510 459-2444 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 510 897-7286 +title: Chief Administrative Evangelist +userPassword: Password1 +uid: CarbajaO +givenName: Ole +mail: CarbajaO@befc232b3f4240ada061cd42724f306e.bitwarden.com +carLicense: 97OXDY +departmentNumber: 1558 +employeeType: Employee +homePhone: +1 510 401-1393 +initials: O. C. +mobile: +1 510 354-1705 +pager: +1 510 580-2175 +roomNumber: 9751 +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Richardson Luxford,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Richardson Luxford +sn: Luxford +description: This is Richardson Luxford's description +facsimileTelephoneNumber: +1 415 324-9522 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 385-3636 +title: Supreme Management Director +userPassword: Password1 +uid: LuxfordR +givenName: Richardson +mail: LuxfordR@2ec15169d3824bb991e5ec642147de0b.bitwarden.com +carLicense: 8EVC7P +departmentNumber: 3162 +employeeType: Normal +homePhone: +1 415 819-3839 +initials: R. L. +mobile: +1 415 172-5210 +pager: +1 415 810-3774 +roomNumber: 8506 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Breanne Tassy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Breanne Tassy +sn: Tassy +description: This is Breanne Tassy's description +facsimileTelephoneNumber: +1 510 414-8335 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 303-7709 +title: Chief Peons Grunt +userPassword: Password1 +uid: TassyB +givenName: Breanne +mail: TassyB@108e0aee5d8240a1ab913e4b9c6c59ea.bitwarden.com +carLicense: SF04Y1 +departmentNumber: 2085 +employeeType: Normal +homePhone: +1 510 546-2737 +initials: B. T. +mobile: +1 510 853-5379 +pager: +1 510 897-9220 +roomNumber: 9164 +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Austina Acree +sn: Acree +description: This is Austina Acree's description +facsimileTelephoneNumber: +1 213 946-6854 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 434-8332 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: AcreeA +givenName: Austina +mail: AcreeA@0115872801044ba284591166aa6c228d.bitwarden.com +carLicense: 3PXK7D +departmentNumber: 7031 +employeeType: Employee +homePhone: +1 213 256-7948 +initials: A. A. +mobile: +1 213 382-8708 +pager: +1 213 695-3860 +roomNumber: 8100 +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gen Rushton +sn: Rushton +description: This is Gen Rushton's description +facsimileTelephoneNumber: +1 415 605-1434 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 150-4745 +title: Chief Peons Assistant +userPassword: Password1 +uid: RushtonG +givenName: Gen +mail: RushtonG@7e5dd3d40d75462fa1e8cd66dc2520cc.bitwarden.com +carLicense: 8P4WYY +departmentNumber: 7879 +employeeType: Contract +homePhone: +1 415 404-4923 +initials: G. R. +mobile: +1 415 434-7260 +pager: +1 415 130-5185 +roomNumber: 9063 +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lebbie Lortie +sn: Lortie +description: This is Lebbie Lortie's description +facsimileTelephoneNumber: +1 510 788-4705 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 592-5975 +title: Master Management Admin +userPassword: Password1 +uid: LortieL +givenName: Lebbie +mail: LortieL@2bebf972d05d4565b74cc490d2d76c19.bitwarden.com +carLicense: IJ7NMT +departmentNumber: 4158 +employeeType: Contract +homePhone: +1 510 209-3743 +initials: L. L. +mobile: +1 510 490-9656 +pager: +1 510 147-8937 +roomNumber: 8214 +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Geoff Achcar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geoff Achcar +sn: Achcar +description: This is Geoff Achcar's description +facsimileTelephoneNumber: +1 818 260-4115 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 567-2581 +title: Supreme Payroll President +userPassword: Password1 +uid: AchcarG +givenName: Geoff +mail: AchcarG@a035bec181ea4cd9abd3953e80704bef.bitwarden.com +carLicense: D6EN39 +departmentNumber: 8925 +employeeType: Contract +homePhone: +1 818 340-9738 +initials: G. A. +mobile: +1 818 966-2460 +pager: +1 818 725-4432 +roomNumber: 9594 +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hollie Amir +sn: Amir +description: This is Hollie Amir's description +facsimileTelephoneNumber: +1 206 733-7943 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 206 351-5931 +title: Supreme Payroll Vice President +userPassword: Password1 +uid: AmirH +givenName: Hollie +mail: AmirH@5b8fdd487f414248bc005f588420c84d.bitwarden.com +carLicense: FVS2HL +departmentNumber: 4470 +employeeType: Employee +homePhone: +1 206 768-4406 +initials: H. A. +mobile: +1 206 661-6410 +pager: +1 206 342-6357 +roomNumber: 9558 +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Timm Alvarez,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Timm Alvarez +sn: Alvarez +description: This is Timm Alvarez's description +facsimileTelephoneNumber: +1 206 594-1122 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 475-6301 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: AlvarezT +givenName: Timm +mail: AlvarezT@37f6e89a491b4e36b50bf46647ad8a4f.bitwarden.com +carLicense: U4H5AM +departmentNumber: 1191 +employeeType: Employee +homePhone: +1 206 105-9368 +initials: T. A. +mobile: +1 206 563-6101 +pager: +1 206 546-7957 +roomNumber: 8191 +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Huan Adornato,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huan Adornato +sn: Adornato +description: This is Huan Adornato's description +facsimileTelephoneNumber: +1 206 452-3810 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 170-1016 +title: Supreme Product Development President +userPassword: Password1 +uid: AdornatH +givenName: Huan +mail: AdornatH@0d5ea7c8c89145008270f344ad787afd.bitwarden.com +carLicense: 1TFST0 +departmentNumber: 1213 +employeeType: Employee +homePhone: +1 206 839-6987 +initials: H. A. +mobile: +1 206 674-4132 +pager: +1 206 967-9159 +roomNumber: 8519 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margarethe Plaisance +sn: Plaisance +description: This is Margarethe Plaisance's description +facsimileTelephoneNumber: +1 213 734-8465 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 474-5522 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: PlaisanM +givenName: Margarethe +mail: PlaisanM@e9c23ff2d9044043850cca96d60bbdf5.bitwarden.com +carLicense: QFVGYE +departmentNumber: 5739 +employeeType: Normal +homePhone: +1 213 765-3014 +initials: M. P. +mobile: +1 213 752-5223 +pager: +1 213 251-8473 +roomNumber: 8370 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meredith Kyzer +sn: Kyzer +description: This is Meredith Kyzer's description +facsimileTelephoneNumber: +1 510 922-3159 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 588-4860 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: KyzerM +givenName: Meredith +mail: KyzerM@b827ba5736ae48268de38db3e9e259c3.bitwarden.com +carLicense: UU70GY +departmentNumber: 6513 +employeeType: Contract +homePhone: +1 510 538-5698 +initials: M. K. +mobile: +1 510 951-2523 +pager: +1 510 597-8621 +roomNumber: 9284 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Reynold Meletios,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reynold Meletios +sn: Meletios +description: This is Reynold Meletios's description +facsimileTelephoneNumber: +1 818 885-2568 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 761-7321 +title: Master Janitorial Madonna +userPassword: Password1 +uid: MeletioR +givenName: Reynold +mail: MeletioR@4284ced1de0045e2ba27e1b8bfd75a64.bitwarden.com +carLicense: 62H38L +departmentNumber: 3870 +employeeType: Employee +homePhone: +1 818 101-5133 +initials: R. M. +mobile: +1 818 857-3836 +pager: +1 818 871-1206 +roomNumber: 8783 +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Britney Farrell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Britney Farrell +sn: Farrell +description: This is Britney Farrell's description +facsimileTelephoneNumber: +1 510 679-4435 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 933-2618 +title: Associate Management Madonna +userPassword: Password1 +uid: FarrellB +givenName: Britney +mail: FarrellB@68cfba969ba74400992bfae87ff5159e.bitwarden.com +carLicense: WV416N +departmentNumber: 5572 +employeeType: Normal +homePhone: +1 510 797-8127 +initials: B. F. +mobile: +1 510 421-1722 +pager: +1 510 136-8676 +roomNumber: 8019 +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marne Tougas,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marne Tougas +sn: Tougas +description: This is Marne Tougas's description +facsimileTelephoneNumber: +1 415 424-2019 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 645-3071 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: TougasM +givenName: Marne +mail: TougasM@53866fe0b2f743ba8c1060bb63e44fe7.bitwarden.com +carLicense: X2BUNS +departmentNumber: 2762 +employeeType: Employee +homePhone: +1 415 980-3776 +initials: M. T. +mobile: +1 415 516-9159 +pager: +1 415 964-8940 +roomNumber: 9792 +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyanna Goff +sn: Goff +description: This is Dyanna Goff's description +facsimileTelephoneNumber: +1 206 407-3196 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 859-1477 +title: Chief Payroll Vice President +userPassword: Password1 +uid: GoffD +givenName: Dyanna +mail: GoffD@073188fe54434a759fdc0baa318abab1.bitwarden.com +carLicense: UBF8IM +departmentNumber: 4913 +employeeType: Employee +homePhone: +1 206 834-8868 +initials: D. G. +mobile: +1 206 320-3199 +pager: +1 206 330-9655 +roomNumber: 8962 +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laverne NetTeam +sn: NetTeam +description: This is Laverne NetTeam's description +facsimileTelephoneNumber: +1 415 821-7365 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 526-4188 +title: Junior Peons Janitor +userPassword: Password1 +uid: NetTeamL +givenName: Laverne +mail: NetTeamL@d1d366221ba74192a46f7f104d0479c6.bitwarden.com +carLicense: 2BLS1T +departmentNumber: 8580 +employeeType: Employee +homePhone: +1 415 389-3061 +initials: L. N. +mobile: +1 415 519-1186 +pager: +1 415 263-6725 +roomNumber: 8743 +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genny Bladon +sn: Bladon +description: This is Genny Bladon's description +facsimileTelephoneNumber: +1 415 727-8333 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 802-7796 +title: Chief Janitorial President +userPassword: Password1 +uid: BladonG +givenName: Genny +mail: BladonG@8227646c55034cf9b21757fce681b53f.bitwarden.com +carLicense: YDCAJF +departmentNumber: 2171 +employeeType: Contract +homePhone: +1 415 655-4299 +initials: G. B. +mobile: +1 415 506-6928 +pager: +1 415 259-1588 +roomNumber: 9895 +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sask Griswold,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sask Griswold +sn: Griswold +description: This is Sask Griswold's description +facsimileTelephoneNumber: +1 415 725-1576 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 870-4215 +title: Associate Product Development Czar +userPassword: Password1 +uid: GriswolS +givenName: Sask +mail: GriswolS@ce9a5204a370483987964a25eaf0057b.bitwarden.com +carLicense: ALSXWK +departmentNumber: 7535 +employeeType: Normal +homePhone: +1 415 275-1741 +initials: S. G. +mobile: +1 415 841-4678 +pager: +1 415 679-7742 +roomNumber: 8124 +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rae Beckham,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rae Beckham +sn: Beckham +description: This is Rae Beckham's description +facsimileTelephoneNumber: +1 408 944-8998 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 106-6529 +title: Supreme Payroll Technician +userPassword: Password1 +uid: BeckhamR +givenName: Rae +mail: BeckhamR@b400fcdf725047b698292665de84946c.bitwarden.com +carLicense: U2TPO7 +departmentNumber: 8768 +employeeType: Contract +homePhone: +1 408 853-8535 +initials: R. B. +mobile: +1 408 666-5697 +pager: +1 408 177-4519 +roomNumber: 9652 +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassaundra Gary +sn: Gary +description: This is Cassaundra Gary's description +facsimileTelephoneNumber: +1 213 109-3216 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 858-8127 +title: Supreme Product Testing Writer +userPassword: Password1 +uid: GaryC +givenName: Cassaundra +mail: GaryC@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com +carLicense: AFE2V8 +departmentNumber: 3325 +employeeType: Contract +homePhone: +1 213 832-4346 +initials: C. G. +mobile: +1 213 666-9725 +pager: +1 213 540-2265 +roomNumber: 8273 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emlynne Linaugh +sn: Linaugh +description: This is Emlynne Linaugh's description +facsimileTelephoneNumber: +1 818 842-5312 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 385-8439 +title: Chief Administrative Visionary +userPassword: Password1 +uid: LinaughE +givenName: Emlynne +mail: LinaughE@964bc78b98164950b5c94e42f0381893.bitwarden.com +carLicense: 9D8VE3 +departmentNumber: 8476 +employeeType: Employee +homePhone: +1 818 854-9957 +initials: E. L. +mobile: +1 818 692-1474 +pager: +1 818 261-8158 +roomNumber: 9984 +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Priscilla Mauldin +sn: Mauldin +description: This is Priscilla Mauldin's description +facsimileTelephoneNumber: +1 206 879-5050 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 206 605-4472 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: MauldinP +givenName: Priscilla +mail: MauldinP@aaf992b9334d42f0913adfd4d6280d9d.bitwarden.com +carLicense: B09HIK +departmentNumber: 5121 +employeeType: Normal +homePhone: +1 206 825-1105 +initials: P. M. +mobile: +1 206 957-9909 +pager: +1 206 491-1569 +roomNumber: 9139 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=ChoKuen Layton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChoKuen Layton +sn: Layton +description: This is ChoKuen Layton's description +facsimileTelephoneNumber: +1 213 487-5889 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 445-4282 +title: Supreme Management Grunt +userPassword: Password1 +uid: LaytonC +givenName: ChoKuen +mail: LaytonC@f356862401984def8bd045192d245ee9.bitwarden.com +carLicense: T0ALUN +departmentNumber: 1354 +employeeType: Normal +homePhone: +1 213 775-3722 +initials: C. L. +mobile: +1 213 668-8638 +pager: +1 213 525-9969 +roomNumber: 9985 +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merlina Gofron +sn: Gofron +description: This is Merlina Gofron's description +facsimileTelephoneNumber: +1 415 732-2592 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 698-9872 +title: Junior Product Development Stooge +userPassword: Password1 +uid: GofronM +givenName: Merlina +mail: GofronM@5b1e92da278e4b9ca91014027a0aa9ce.bitwarden.com +carLicense: 4AQ10D +departmentNumber: 4043 +employeeType: Employee +homePhone: +1 415 120-8843 +initials: M. G. +mobile: +1 415 740-5334 +pager: +1 415 247-4957 +roomNumber: 8517 +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jany Kamal +sn: Kamal +description: This is Jany Kamal's description +facsimileTelephoneNumber: +1 408 951-9370 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 691-6824 +title: Associate Management Manager +userPassword: Password1 +uid: KamalJ +givenName: Jany +mail: KamalJ@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com +carLicense: GEVLKE +departmentNumber: 6411 +employeeType: Normal +homePhone: +1 408 660-6093 +initials: J. K. +mobile: +1 408 629-6424 +pager: +1 408 955-5764 +roomNumber: 9080 +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Freddie Rolfes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Freddie Rolfes +sn: Rolfes +description: This is Freddie Rolfes's description +facsimileTelephoneNumber: +1 804 656-2591 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 337-6813 +title: Master Product Development Director +userPassword: Password1 +uid: RolfesF +givenName: Freddie +mail: RolfesF@7eb391b0b5674f9795ca1cebe83846e1.bitwarden.com +carLicense: T45IVC +departmentNumber: 4228 +employeeType: Normal +homePhone: +1 804 581-2120 +initials: F. R. +mobile: +1 804 926-5958 +pager: +1 804 469-5356 +roomNumber: 9644 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nickie Acree +sn: Acree +description: This is Nickie Acree's description +facsimileTelephoneNumber: +1 415 410-9362 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 106-5701 +title: Supreme Administrative Pinhead +userPassword: Password1 +uid: AcreeN +givenName: Nickie +mail: AcreeN@c3999c476a6d4270acb03c758687a2bc.bitwarden.com +carLicense: QKS13L +departmentNumber: 7643 +employeeType: Normal +homePhone: +1 415 611-3273 +initials: N. A. +mobile: +1 415 951-1638 +pager: +1 415 869-9684 +roomNumber: 9745 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rajinderpal Flueckinger +sn: Flueckinger +description: This is Rajinderpal Flueckinger's description +facsimileTelephoneNumber: +1 415 351-2936 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 132-5192 +title: Chief Peons Developer +userPassword: Password1 +uid: FlueckiR +givenName: Rajinderpal +mail: FlueckiR@b3ae6dae564847d7ba4d0a12a6361531.bitwarden.com +carLicense: 27D0UT +departmentNumber: 2347 +employeeType: Normal +homePhone: +1 415 889-9934 +initials: R. F. +mobile: +1 415 142-6286 +pager: +1 415 296-6970 +roomNumber: 9063 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com + +dn: cn=Davina Amu,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davina Amu +sn: Amu +description: This is Davina Amu's description +facsimileTelephoneNumber: +1 206 756-9594 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 206 989-4005 +title: Chief Peons Fellow +userPassword: Password1 +uid: AmuD +givenName: Davina +mail: AmuD@d08b187bcf0d40f4953d0fe4abf84b6f.bitwarden.com +carLicense: 2RHMSU +departmentNumber: 7028 +employeeType: Normal +homePhone: +1 206 273-4823 +initials: D. A. +mobile: +1 206 800-3813 +pager: +1 206 352-2973 +roomNumber: 9416 +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amandi Kouhi +sn: Kouhi +description: This is Amandi Kouhi's description +facsimileTelephoneNumber: +1 415 653-7048 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 218-9961 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: KouhiA +givenName: Amandi +mail: KouhiA@4048b5b3b12f4302afcee427cb6c6b34.bitwarden.com +carLicense: MVN8NL +departmentNumber: 9019 +employeeType: Contract +homePhone: +1 415 113-1673 +initials: A. K. +mobile: +1 415 379-5193 +pager: +1 415 360-5471 +roomNumber: 9122 +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YauFun Fennessey +sn: Fennessey +description: This is YauFun Fennessey's description +facsimileTelephoneNumber: +1 206 815-7502 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 223-9101 +title: Supreme Product Testing President +userPassword: Password1 +uid: FennessY +givenName: YauFun +mail: FennessY@d7b97704ed464563bae0dc6e06484719.bitwarden.com +carLicense: AV4JXJ +departmentNumber: 6483 +employeeType: Normal +homePhone: +1 206 100-3572 +initials: Y. F. +mobile: +1 206 206-6652 +pager: +1 206 894-1125 +roomNumber: 8869 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Akin Capelle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akin Capelle +sn: Capelle +description: This is Akin Capelle's description +facsimileTelephoneNumber: +1 510 229-9037 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 471-6760 +title: Associate Product Development President +userPassword: Password1 +uid: CapelleA +givenName: Akin +mail: CapelleA@fc4cfa1e28824d9b9e67a02d1242c76a.bitwarden.com +carLicense: RCBP72 +departmentNumber: 9929 +employeeType: Employee +homePhone: +1 510 566-3454 +initials: A. C. +mobile: +1 510 732-6922 +pager: +1 510 439-1520 +roomNumber: 8344 +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Focus Decourcy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Focus Decourcy +sn: Decourcy +description: This is Focus Decourcy's description +facsimileTelephoneNumber: +1 206 227-4906 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 206 607-4358 +title: Junior Payroll Architect +userPassword: Password1 +uid: DecourcF +givenName: Focus +mail: DecourcF@9564989367ee45b494d155a6be9f3761.bitwarden.com +carLicense: 2KXXET +departmentNumber: 5171 +employeeType: Employee +homePhone: +1 206 908-4084 +initials: F. D. +mobile: +1 206 377-3452 +pager: +1 206 222-5453 +roomNumber: 8379 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com + +dn: cn=Moel Wynes,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moel Wynes +sn: Wynes +description: This is Moel Wynes's description +facsimileTelephoneNumber: +1 213 403-4086 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 158-2861 +title: Master Janitorial Engineer +userPassword: Password1 +uid: WynesM +givenName: Moel +mail: WynesM@4cd419e4880743fba3fb72008e9a330b.bitwarden.com +carLicense: GXABDL +departmentNumber: 1682 +employeeType: Employee +homePhone: +1 213 127-4467 +initials: M. W. +mobile: +1 213 290-1888 +pager: +1 213 175-2939 +roomNumber: 8987 +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bertrand Schiegl,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bertrand Schiegl +sn: Schiegl +description: This is Bertrand Schiegl's description +facsimileTelephoneNumber: +1 818 453-2622 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 818 274-4642 +title: Associate Peons Director +userPassword: Password1 +uid: SchieglB +givenName: Bertrand +mail: SchieglB@d3284c9107174588867290b3601e936f.bitwarden.com +carLicense: E93QQK +departmentNumber: 9373 +employeeType: Employee +homePhone: +1 818 635-3897 +initials: B. S. +mobile: +1 818 416-6264 +pager: +1 818 828-2856 +roomNumber: 8474 +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquenetta Lakhani +sn: Lakhani +description: This is Jacquenetta Lakhani's description +facsimileTelephoneNumber: +1 408 671-3651 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 524-8931 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: LakhaniJ +givenName: Jacquenetta +mail: LakhaniJ@3eb77d9e6bdc439197d45c120ada5eb9.bitwarden.com +carLicense: HGQC2B +departmentNumber: 8842 +employeeType: Contract +homePhone: +1 408 182-7466 +initials: J. L. +mobile: +1 408 826-5616 +pager: +1 408 402-5539 +roomNumber: 9743 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coursey Stansfield +sn: Stansfield +description: This is Coursey Stansfield's description +facsimileTelephoneNumber: +1 818 645-9795 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 562-6426 +title: Junior Management Consultant +userPassword: Password1 +uid: StansfiC +givenName: Coursey +mail: StansfiC@175f672e954d4d05baa0e0e2d7a5150d.bitwarden.com +carLicense: 8WRLLF +departmentNumber: 6441 +employeeType: Normal +homePhone: +1 818 247-7204 +initials: C. S. +mobile: +1 818 385-9587 +pager: +1 818 182-8422 +roomNumber: 8855 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tavis Theodore,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tavis Theodore +sn: Theodore +description: This is Tavis Theodore's description +facsimileTelephoneNumber: +1 415 836-3168 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 427-5817 +title: Chief Administrative President +userPassword: Password1 +uid: TheodorT +givenName: Tavis +mail: TheodorT@574eddc7483948a59c9d38d5c8f6a354.bitwarden.com +carLicense: IMK5LR +departmentNumber: 3079 +employeeType: Contract +homePhone: +1 415 560-4992 +initials: T. T. +mobile: +1 415 718-1202 +pager: +1 415 943-5747 +roomNumber: 8163 +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bello Madani +sn: Madani +description: This is Bello Madani's description +facsimileTelephoneNumber: +1 804 951-5634 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 780-3656 +title: Supreme Management Punk +userPassword: Password1 +uid: MadaniB +givenName: Bello +mail: MadaniB@6b01ea5296ae43ddbca168736ac18b91.bitwarden.com +carLicense: QF007F +departmentNumber: 3710 +employeeType: Employee +homePhone: +1 804 155-2232 +initials: B. M. +mobile: +1 804 131-6670 +pager: +1 804 227-3266 +roomNumber: 9555 +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sameh Kyoung,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sameh Kyoung +sn: Kyoung +description: This is Sameh Kyoung's description +facsimileTelephoneNumber: +1 408 190-4051 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 630-2080 +title: Chief Management Warrior +userPassword: Password1 +uid: KyoungS +givenName: Sameh +mail: KyoungS@cbc86aec4ebd45fb8e05b7c1a8564753.bitwarden.com +carLicense: Q8VWUN +departmentNumber: 6634 +employeeType: Contract +homePhone: +1 408 612-6729 +initials: S. K. +mobile: +1 408 625-1793 +pager: +1 408 192-6552 +roomNumber: 8888 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liem Isley +sn: Isley +description: This is Liem Isley's description +facsimileTelephoneNumber: +1 510 737-1917 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 510 918-3205 +title: Chief Payroll Assistant +userPassword: Password1 +uid: IsleyL +givenName: Liem +mail: IsleyL@41d9d77642444cc9ab9d5b4e9a3c43fc.bitwarden.com +carLicense: R72NL5 +departmentNumber: 8163 +employeeType: Employee +homePhone: +1 510 503-7355 +initials: L. I. +mobile: +1 510 770-2932 +pager: +1 510 377-7086 +roomNumber: 9417 +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estrella Balsas +sn: Balsas +description: This is Estrella Balsas's description +facsimileTelephoneNumber: +1 804 181-5529 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 260-2712 +title: Supreme Human Resources Engineer +userPassword: Password1 +uid: BalsasE +givenName: Estrella +mail: BalsasE@14a50969231442b7a4661f1630e8f16c.bitwarden.com +carLicense: OY492Y +departmentNumber: 6673 +employeeType: Employee +homePhone: +1 804 847-4425 +initials: E. B. +mobile: +1 804 108-5823 +pager: +1 804 496-8657 +roomNumber: 8751 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bailey Trickett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bailey Trickett +sn: Trickett +description: This is Bailey Trickett's description +facsimileTelephoneNumber: +1 213 548-7419 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 982-3008 +title: Master Management Director +userPassword: Password1 +uid: TricketB +givenName: Bailey +mail: TricketB@74ad719f3ca94101b51f4a4b5749fe0a.bitwarden.com +carLicense: JK5ESK +departmentNumber: 1910 +employeeType: Contract +homePhone: +1 213 251-1267 +initials: B. T. +mobile: +1 213 795-5300 +pager: +1 213 166-6813 +roomNumber: 8167 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raghuvir Costandi +sn: Costandi +description: This is Raghuvir Costandi's description +facsimileTelephoneNumber: +1 818 625-7408 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 832-1333 +title: Chief Product Testing Punk +userPassword: Password1 +uid: CostandR +givenName: Raghuvir +mail: CostandR@57507372eada4752ba384ecd326c57ac.bitwarden.com +carLicense: D5HDEY +departmentNumber: 6513 +employeeType: Employee +homePhone: +1 818 362-7881 +initials: R. C. +mobile: +1 818 635-4026 +pager: +1 818 470-7194 +roomNumber: 8860 +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Martha Hovey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martha Hovey +sn: Hovey +description: This is Martha Hovey's description +facsimileTelephoneNumber: +1 408 828-9954 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 228-8636 +title: Supreme Management Grunt +userPassword: Password1 +uid: HoveyM +givenName: Martha +mail: HoveyM@85af325f68b4407789de4090abc807e7.bitwarden.com +carLicense: HVGWV0 +departmentNumber: 8842 +employeeType: Employee +homePhone: +1 408 649-3972 +initials: M. H. +mobile: +1 408 505-7737 +pager: +1 408 736-8348 +roomNumber: 8112 +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathrine Salsbery +sn: Salsbery +description: This is Cathrine Salsbery's description +facsimileTelephoneNumber: +1 206 518-5331 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 546-1692 +title: Master Janitorial Vice President +userPassword: Password1 +uid: SalsberC +givenName: Cathrine +mail: SalsberC@c8c34efeb3fd47f485bda2d57f298fa8.bitwarden.com +carLicense: 9DUCEB +departmentNumber: 4464 +employeeType: Employee +homePhone: +1 206 323-6116 +initials: C. S. +mobile: +1 206 336-1113 +pager: +1 206 618-9424 +roomNumber: 8939 +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com + +dn: cn=ChinFui Iezzi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChinFui Iezzi +sn: Iezzi +description: This is ChinFui Iezzi's description +facsimileTelephoneNumber: +1 206 831-9320 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 253-4869 +title: Associate Management President +userPassword: Password1 +uid: IezziC +givenName: ChinFui +mail: IezziC@d117baceef9a4168bde2647e78683a37.bitwarden.com +carLicense: 8IKUN7 +departmentNumber: 7026 +employeeType: Normal +homePhone: +1 206 114-4365 +initials: C. I. +mobile: +1 206 379-4148 +pager: +1 206 301-1029 +roomNumber: 9083 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cortney Tolar +sn: Tolar +description: This is Cortney Tolar's description +facsimileTelephoneNumber: +1 213 746-4502 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 288-5426 +title: Junior Payroll Engineer +userPassword: Password1 +uid: TolarC +givenName: Cortney +mail: TolarC@77dc8afa92a942f990e0358d489eb936.bitwarden.com +carLicense: GPNUJ1 +departmentNumber: 9933 +employeeType: Contract +homePhone: +1 213 497-8342 +initials: C. T. +mobile: +1 213 755-4361 +pager: +1 213 296-7957 +roomNumber: 9358 +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alta Chandrashekar +sn: Chandrashekar +description: This is Alta Chandrashekar's description +facsimileTelephoneNumber: +1 415 761-7569 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 238-5326 +title: Junior Human Resources Madonna +userPassword: Password1 +uid: ChandraA +givenName: Alta +mail: ChandraA@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com +carLicense: FLYU7X +departmentNumber: 1548 +employeeType: Employee +homePhone: +1 415 371-9651 +initials: A. C. +mobile: +1 415 697-9533 +pager: +1 415 990-1680 +roomNumber: 9148 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walter Napke +sn: Napke +description: This is Walter Napke's description +facsimileTelephoneNumber: +1 415 553-9117 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 291-5687 +title: Junior Administrative Consultant +userPassword: Password1 +uid: NapkeW +givenName: Walter +mail: NapkeW@638dc4979c734dc6a0edddc9856d364c.bitwarden.com +carLicense: 9HDS0W +departmentNumber: 4215 +employeeType: Contract +homePhone: +1 415 465-5881 +initials: W. N. +mobile: +1 415 601-3588 +pager: +1 415 131-7926 +roomNumber: 9680 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenson Yabe +sn: Yabe +description: This is Jenson Yabe's description +facsimileTelephoneNumber: +1 408 559-1846 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 750-2652 +title: Chief Product Development Technician +userPassword: Password1 +uid: YabeJ +givenName: Jenson +mail: YabeJ@478d49ea22024f81bf0c3655b7d4984f.bitwarden.com +carLicense: PQYM68 +departmentNumber: 5124 +employeeType: Contract +homePhone: +1 408 439-6918 +initials: J. Y. +mobile: +1 408 522-3516 +pager: +1 408 691-3871 +roomNumber: 9486 +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanh Preo +sn: Preo +description: This is Hanh Preo's description +facsimileTelephoneNumber: +1 804 227-2611 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 804 989-3759 +title: Supreme Peons Vice President +userPassword: Password1 +uid: PreoH +givenName: Hanh +mail: PreoH@bc24a263fb344aa0a892bcbfdbc90a0d.bitwarden.com +carLicense: W6ANVR +departmentNumber: 4208 +employeeType: Normal +homePhone: +1 804 448-7161 +initials: H. P. +mobile: +1 804 308-8501 +pager: +1 804 218-8207 +roomNumber: 8117 +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Opto Decasper,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opto Decasper +sn: Decasper +description: This is Opto Decasper's description +facsimileTelephoneNumber: +1 510 170-8173 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 510 513-4475 +title: Master Human Resources Madonna +userPassword: Password1 +uid: DecaspeO +givenName: Opto +mail: DecaspeO@ec27ad8054ec49e6b80dae8c88335049.bitwarden.com +carLicense: XHC50I +departmentNumber: 2236 +employeeType: Normal +homePhone: +1 510 926-4105 +initials: O. D. +mobile: +1 510 937-1905 +pager: +1 510 184-3765 +roomNumber: 9521 +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regan Novak +sn: Novak +description: This is Regan Novak's description +facsimileTelephoneNumber: +1 510 134-4403 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 737-7597 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: NovakR +givenName: Regan +mail: NovakR@458bebdbb1db445da5a7c0df36fdfcef.bitwarden.com +carLicense: DQN01I +departmentNumber: 4434 +employeeType: Contract +homePhone: +1 510 501-3076 +initials: R. N. +mobile: +1 510 703-3160 +pager: +1 510 997-3250 +roomNumber: 8110 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Orella Viriato,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orella Viriato +sn: Viriato +description: This is Orella Viriato's description +facsimileTelephoneNumber: +1 510 965-6191 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 886-6069 +title: Junior Payroll Madonna +userPassword: Password1 +uid: ViriatoO +givenName: Orella +mail: ViriatoO@8127ace43f234ba5be577208dd638928.bitwarden.com +carLicense: QX50LA +departmentNumber: 2979 +employeeType: Normal +homePhone: +1 510 181-8993 +initials: O. V. +mobile: +1 510 580-1159 +pager: +1 510 984-9893 +roomNumber: 8838 +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ruthy Maher,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruthy Maher +sn: Maher +description: This is Ruthy Maher's description +facsimileTelephoneNumber: +1 510 919-3223 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 670-7247 +title: Associate Janitorial Admin +userPassword: Password1 +uid: MaherR +givenName: Ruthy +mail: MaherR@b0093dc523e14382988b5e422d50b328.bitwarden.com +carLicense: OPLLGD +departmentNumber: 6613 +employeeType: Normal +homePhone: +1 510 623-4691 +initials: R. M. +mobile: +1 510 710-4347 +pager: +1 510 251-7951 +roomNumber: 8188 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Roxanne Mohammad,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxanne Mohammad +sn: Mohammad +description: This is Roxanne Mohammad's description +facsimileTelephoneNumber: +1 213 267-6869 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 663-8472 +title: Master Management Artist +userPassword: Password1 +uid: MohammaR +givenName: Roxanne +mail: MohammaR@b98237c36de745c3a996a916f9116823.bitwarden.com +carLicense: 11VHS9 +departmentNumber: 8050 +employeeType: Contract +homePhone: +1 213 977-2611 +initials: R. M. +mobile: +1 213 758-8703 +pager: +1 213 189-6908 +roomNumber: 9896 +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guner Kelso +sn: Kelso +description: This is Guner Kelso's description +facsimileTelephoneNumber: +1 213 166-3623 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 652-3976 +title: Chief Product Development President +userPassword: Password1 +uid: KelsoG +givenName: Guner +mail: KelsoG@43da9c69baa14266b4c8812eff59c738.bitwarden.com +carLicense: 8UKMF1 +departmentNumber: 8002 +employeeType: Employee +homePhone: +1 213 915-1729 +initials: G. K. +mobile: +1 213 162-2755 +pager: +1 213 496-9031 +roomNumber: 8574 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drusy Masapati +sn: Masapati +description: This is Drusy Masapati's description +facsimileTelephoneNumber: +1 510 875-7652 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 524-9491 +title: Junior Payroll Vice President +userPassword: Password1 +uid: MasapatD +givenName: Drusy +mail: MasapatD@fcd97c4a8c3844f08b1e5ede745ae54d.bitwarden.com +carLicense: 227LKV +departmentNumber: 2269 +employeeType: Normal +homePhone: +1 510 162-5728 +initials: D. M. +mobile: +1 510 516-5294 +pager: +1 510 196-8704 +roomNumber: 9512 +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anthiathia Bessell +sn: Bessell +description: This is Anthiathia Bessell's description +facsimileTelephoneNumber: +1 510 770-9633 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 427-7070 +title: Junior Peons Consultant +userPassword: Password1 +uid: BessellA +givenName: Anthiathia +mail: BessellA@954e7c28b409486ab4b5e846037b6b00.bitwarden.com +carLicense: TLDNHV +departmentNumber: 8934 +employeeType: Normal +homePhone: +1 510 469-3531 +initials: A. B. +mobile: +1 510 271-2456 +pager: +1 510 196-7528 +roomNumber: 9357 +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verlyn Bryan +sn: Bryan +description: This is Verlyn Bryan's description +facsimileTelephoneNumber: +1 804 774-6531 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 804 208-9359 +title: Master Janitorial Janitor +userPassword: Password1 +uid: BryanV +givenName: Verlyn +mail: BryanV@9df231d2e4bf4076a68fc1ec37967ddc.bitwarden.com +carLicense: 1OGXEY +departmentNumber: 1551 +employeeType: Employee +homePhone: +1 804 445-7341 +initials: V. B. +mobile: +1 804 364-9849 +pager: +1 804 341-3587 +roomNumber: 8677 +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com + +dn: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saibal Swartz +sn: Swartz +description: This is Saibal Swartz's description +facsimileTelephoneNumber: +1 415 357-3695 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 493-6575 +title: Chief Peons Developer +userPassword: Password1 +uid: SwartzS +givenName: Saibal +mail: SwartzS@5c758bae8ef348278f14828cc31d2360.bitwarden.com +carLicense: OWDNYH +departmentNumber: 9695 +employeeType: Employee +homePhone: +1 415 565-3756 +initials: S. S. +mobile: +1 415 928-4557 +pager: +1 415 398-7531 +roomNumber: 8615 +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Magdi Sulewski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdi Sulewski +sn: Sulewski +description: This is Magdi Sulewski's description +facsimileTelephoneNumber: +1 206 122-4501 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 462-9376 +title: Chief Administrative Janitor +userPassword: Password1 +uid: SulewskM +givenName: Magdi +mail: SulewskM@26ea76142f2a4637b028d1aa71d30271.bitwarden.com +carLicense: OACBS9 +departmentNumber: 8911 +employeeType: Normal +homePhone: +1 206 566-1938 +initials: M. S. +mobile: +1 206 283-3382 +pager: +1 206 704-8362 +roomNumber: 9131 +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katharine Byers,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katharine Byers +sn: Byers +description: This is Katharine Byers's description +facsimileTelephoneNumber: +1 206 328-8629 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 662-6286 +title: Chief Administrative President +userPassword: Password1 +uid: ByersK +givenName: Katharine +mail: ByersK@cff08fbfbb494d1cac1d02cef13ff5e6.bitwarden.com +carLicense: 6I9ILE +departmentNumber: 5998 +employeeType: Normal +homePhone: +1 206 776-6819 +initials: K. B. +mobile: +1 206 938-5161 +pager: +1 206 827-2569 +roomNumber: 8286 +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donal Kashaninia +sn: Kashaninia +description: This is Donal Kashaninia's description +facsimileTelephoneNumber: +1 408 373-4280 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 343-6060 +title: Master Product Development Vice President +userPassword: Password1 +uid: KashaniD +givenName: Donal +mail: KashaniD@0708f7927e154039bccaf12df5697875.bitwarden.com +carLicense: 8G9V8H +departmentNumber: 1093 +employeeType: Normal +homePhone: +1 408 899-5536 +initials: D. K. +mobile: +1 408 450-9365 +pager: +1 408 429-8127 +roomNumber: 8565 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chicky Sils,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chicky Sils +sn: Sils +description: This is Chicky Sils's description +facsimileTelephoneNumber: +1 213 808-3565 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 213 870-3337 +title: Supreme Human Resources Director +userPassword: Password1 +uid: SilsC +givenName: Chicky +mail: SilsC@89e33259b1f341dda582db87064be4b8.bitwarden.com +carLicense: NO4WC5 +departmentNumber: 6971 +employeeType: Contract +homePhone: +1 213 680-3545 +initials: C. S. +mobile: +1 213 865-4738 +pager: +1 213 187-6432 +roomNumber: 8842 +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanJacques Urbielewicz +sn: Urbielewicz +description: This is JeanJacques Urbielewicz's description +facsimileTelephoneNumber: +1 408 488-9409 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 934-6124 +title: Supreme Management Visionary +userPassword: Password1 +uid: UrbieleJ +givenName: JeanJacques +mail: UrbieleJ@e7602a60599a42e38e55df23f8bedf7d.bitwarden.com +carLicense: NIAQFW +departmentNumber: 8207 +employeeType: Contract +homePhone: +1 408 858-5054 +initials: J. U. +mobile: +1 408 842-2375 +pager: +1 408 794-1882 +roomNumber: 8401 +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gillie Dedas +sn: Dedas +description: This is Gillie Dedas's description +facsimileTelephoneNumber: +1 804 237-7845 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 443-5764 +title: Supreme Product Testing Figurehead +userPassword: Password1 +uid: DedasG +givenName: Gillie +mail: DedasG@cd532997f28e491fbc9b8de411038a21.bitwarden.com +carLicense: LMP9TB +departmentNumber: 5222 +employeeType: Contract +homePhone: +1 804 949-6684 +initials: G. D. +mobile: +1 804 924-1505 +pager: +1 804 876-5717 +roomNumber: 8111 +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kassie Dack,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kassie Dack +sn: Dack +description: This is Kassie Dack's description +facsimileTelephoneNumber: +1 408 492-3126 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 408 891-4687 +title: Master Administrative Consultant +userPassword: Password1 +uid: DackK +givenName: Kassie +mail: DackK@eef25158b5b94cc287e7e9c6eefb6e6a.bitwarden.com +carLicense: FSMSK8 +departmentNumber: 3834 +employeeType: Employee +homePhone: +1 408 815-6360 +initials: K. D. +mobile: +1 408 327-5831 +pager: +1 408 149-8098 +roomNumber: 9450 +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Munir Gonsalves +sn: Gonsalves +description: This is Munir Gonsalves's description +facsimileTelephoneNumber: +1 510 931-1864 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 398-2087 +title: Associate Peons Stooge +userPassword: Password1 +uid: GonsalvM +givenName: Munir +mail: GonsalvM@d5693b03fff041e0bff80a2597afaae3.bitwarden.com +carLicense: M9STWR +departmentNumber: 9691 +employeeType: Employee +homePhone: +1 510 420-2266 +initials: M. G. +mobile: +1 510 394-6281 +pager: +1 510 345-7124 +roomNumber: 9300 +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grietje Ansorger +sn: Ansorger +description: This is Grietje Ansorger's description +facsimileTelephoneNumber: +1 213 575-9462 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 306-5448 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: AnsorgeG +givenName: Grietje +mail: AnsorgeG@0a4355ee7fe94c7bb8cc9baf9905f443.bitwarden.com +carLicense: 3N68TC +departmentNumber: 8618 +employeeType: Normal +homePhone: +1 213 363-9099 +initials: G. A. +mobile: +1 213 701-3206 +pager: +1 213 229-6440 +roomNumber: 9473 +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorianne Winklemaier +sn: Winklemaier +description: This is Lorianne Winklemaier's description +facsimileTelephoneNumber: +1 206 383-7363 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 206 697-2115 +title: Chief Payroll Mascot +userPassword: Password1 +uid: WinklemL +givenName: Lorianne +mail: WinklemL@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com +carLicense: AFG12N +departmentNumber: 9746 +employeeType: Contract +homePhone: +1 206 725-5522 +initials: L. W. +mobile: +1 206 141-7235 +pager: +1 206 823-4446 +roomNumber: 9795 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isabel McDonnell +sn: McDonnell +description: This is Isabel McDonnell's description +facsimileTelephoneNumber: +1 804 553-1499 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 183-1361 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: McDonneI +givenName: Isabel +mail: McDonneI@7e78b04dbd3c4b8d878396ef3d8060c3.bitwarden.com +carLicense: PQ8I4V +departmentNumber: 8736 +employeeType: Employee +homePhone: +1 804 163-9274 +initials: I. M. +mobile: +1 804 858-4553 +pager: +1 804 666-8116 +roomNumber: 9399 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mitzi Novisedlak +sn: Novisedlak +description: This is Mitzi Novisedlak's description +facsimileTelephoneNumber: +1 818 103-3492 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 540-2081 +title: Junior Administrative Artist +userPassword: Password1 +uid: NovisedM +givenName: Mitzi +mail: NovisedM@17e12fc1204748719cf2bf325fcfbdd8.bitwarden.com +carLicense: SW71GJ +departmentNumber: 9217 +employeeType: Normal +homePhone: +1 818 625-9712 +initials: M. N. +mobile: +1 818 323-7398 +pager: +1 818 319-9342 +roomNumber: 9139 +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Latisha Dallago +sn: Dallago +description: This is Latisha Dallago's description +facsimileTelephoneNumber: +1 408 535-6343 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 914-6147 +title: Supreme Peons Director +userPassword: Password1 +uid: DallagoL +givenName: Latisha +mail: DallagoL@79e37cdfcd844256b0d515cae5e360dd.bitwarden.com +carLicense: 8HF2K8 +departmentNumber: 2330 +employeeType: Normal +homePhone: +1 408 578-2548 +initials: L. D. +mobile: +1 408 818-5249 +pager: +1 408 454-5647 +roomNumber: 9871 +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catlee Borodajluk +sn: Borodajluk +description: This is Catlee Borodajluk's description +facsimileTelephoneNumber: +1 408 418-3347 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 408 316-6528 +title: Master Product Development Admin +userPassword: Password1 +uid: BorodajC +givenName: Catlee +mail: BorodajC@b901034853bb49fab2332c009f7f5577.bitwarden.com +carLicense: F2X11R +departmentNumber: 4943 +employeeType: Contract +homePhone: +1 408 681-1846 +initials: C. B. +mobile: +1 408 860-9606 +pager: +1 408 914-8540 +roomNumber: 9521 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com + +dn: cn=Luther Attard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luther Attard +sn: Attard +description: This is Luther Attard's description +facsimileTelephoneNumber: +1 206 468-2043 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 328-3007 +title: Master Administrative Punk +userPassword: Password1 +uid: AttardL +givenName: Luther +mail: AttardL@e049bad88da840aab339da6c7656c9ea.bitwarden.com +carLicense: W5P1M6 +departmentNumber: 1731 +employeeType: Employee +homePhone: +1 206 719-4393 +initials: L. A. +mobile: +1 206 323-9961 +pager: +1 206 380-3595 +roomNumber: 8062 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elisa Bernier,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elisa Bernier +sn: Bernier +description: This is Elisa Bernier's description +facsimileTelephoneNumber: +1 213 352-7407 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 213 310-1892 +title: Chief Payroll Consultant +userPassword: Password1 +uid: BernierE +givenName: Elisa +mail: BernierE@03984172df9e48acbd783f2986930e0c.bitwarden.com +carLicense: DKFHTQ +departmentNumber: 8430 +employeeType: Employee +homePhone: +1 213 127-7323 +initials: E. B. +mobile: +1 213 816-6201 +pager: +1 213 858-6358 +roomNumber: 8463 +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cally Rios +sn: Rios +description: This is Cally Rios's description +facsimileTelephoneNumber: +1 804 833-7788 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 918-6140 +title: Junior Management Evangelist +userPassword: Password1 +uid: RiosC +givenName: Cally +mail: RiosC@93cef961e98e48e482c9b5e04d825449.bitwarden.com +carLicense: HK3DSF +departmentNumber: 4580 +employeeType: Contract +homePhone: +1 804 384-6514 +initials: C. R. +mobile: +1 804 786-3515 +pager: +1 804 888-7731 +roomNumber: 9258 +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Flossie Ordway,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flossie Ordway +sn: Ordway +description: This is Flossie Ordway's description +facsimileTelephoneNumber: +1 804 367-1992 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 611-3917 +title: Junior Administrative Admin +userPassword: Password1 +uid: OrdwayF +givenName: Flossie +mail: OrdwayF@e208162ab8d64ca7aba1cebad89531f1.bitwarden.com +carLicense: BPOV8M +departmentNumber: 5681 +employeeType: Normal +homePhone: +1 804 180-3631 +initials: F. O. +mobile: +1 804 407-8468 +pager: +1 804 441-7945 +roomNumber: 8426 +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trudie Beveridge +sn: Beveridge +description: This is Trudie Beveridge's description +facsimileTelephoneNumber: +1 415 810-2104 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 706-5915 +title: Supreme Payroll Technician +userPassword: Password1 +uid: BeveridT +givenName: Trudie +mail: BeveridT@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com +carLicense: E93B2K +departmentNumber: 9243 +employeeType: Normal +homePhone: +1 415 340-7204 +initials: T. B. +mobile: +1 415 958-9090 +pager: +1 415 349-8223 +roomNumber: 9794 +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jin Schavo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jin Schavo +sn: Schavo +description: This is Jin Schavo's description +facsimileTelephoneNumber: +1 213 126-5114 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 684-4841 +title: Junior Management Sales Rep +userPassword: Password1 +uid: SchavoJ +givenName: Jin +mail: SchavoJ@c77bec2c020044a183f917437c7fdfe4.bitwarden.com +carLicense: V09H8O +departmentNumber: 9027 +employeeType: Normal +homePhone: +1 213 951-4469 +initials: J. S. +mobile: +1 213 566-6867 +pager: +1 213 194-1144 +roomNumber: 8456 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Birgit Reznick +sn: Reznick +description: This is Birgit Reznick's description +facsimileTelephoneNumber: +1 510 701-6858 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 642-7177 +title: Junior Payroll Warrior +userPassword: Password1 +uid: ReznickB +givenName: Birgit +mail: ReznickB@e6d1825771da43ab8c15fdf770febdde.bitwarden.com +carLicense: VWPGLQ +departmentNumber: 8775 +employeeType: Contract +homePhone: +1 510 356-6754 +initials: B. R. +mobile: +1 510 444-2929 +pager: +1 510 489-1517 +roomNumber: 9721 +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sylvia Manica,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sylvia Manica +sn: Manica +description: This is Sylvia Manica's description +facsimileTelephoneNumber: +1 804 362-1704 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 171-2691 +title: Associate Peons Vice President +userPassword: Password1 +uid: ManicaS +givenName: Sylvia +mail: ManicaS@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com +carLicense: 8ALI6T +departmentNumber: 9453 +employeeType: Normal +homePhone: +1 804 394-4909 +initials: S. M. +mobile: +1 804 838-2980 +pager: +1 804 562-9978 +roomNumber: 8653 +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Adelind Vance,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adelind Vance +sn: Vance +description: This is Adelind Vance's description +facsimileTelephoneNumber: +1 206 935-4461 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 424-5118 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: VanceA +givenName: Adelind +mail: VanceA@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com +carLicense: WDP61E +departmentNumber: 4015 +employeeType: Contract +homePhone: +1 206 401-1546 +initials: A. V. +mobile: +1 206 960-1860 +pager: +1 206 117-9089 +roomNumber: 9324 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Odella Anthonissen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odella Anthonissen +sn: Anthonissen +description: This is Odella Anthonissen's description +facsimileTelephoneNumber: +1 206 653-8390 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 606-8037 +title: Associate Administrative Architect +userPassword: Password1 +uid: AnthoniO +givenName: Odella +mail: AnthoniO@3137189e80b64a7c8c939097944e94dd.bitwarden.com +carLicense: H0VP8I +departmentNumber: 7114 +employeeType: Normal +homePhone: +1 206 355-9645 +initials: O. A. +mobile: +1 206 242-6224 +pager: +1 206 280-5635 +roomNumber: 9593 +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esmeralda Moraetes +sn: Moraetes +description: This is Esmeralda Moraetes's description +facsimileTelephoneNumber: +1 510 833-3084 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 510 939-7821 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: MoraeteE +givenName: Esmeralda +mail: MoraeteE@2fdf5806d6f34ec890d7f79e0eef4970.bitwarden.com +carLicense: LUE1PM +departmentNumber: 5139 +employeeType: Employee +homePhone: +1 510 656-2103 +initials: E. M. +mobile: +1 510 640-6377 +pager: +1 510 173-3229 +roomNumber: 8474 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=America Turney,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: America Turney +sn: Turney +description: This is America Turney's description +facsimileTelephoneNumber: +1 818 101-1111 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 208-5902 +title: Junior Management Writer +userPassword: Password1 +uid: TurneyA +givenName: America +mail: TurneyA@9e6a1308cc704783acacae7fd7bbd94e.bitwarden.com +carLicense: KU7B2B +departmentNumber: 6660 +employeeType: Contract +homePhone: +1 818 363-7574 +initials: A. T. +mobile: +1 818 657-1534 +pager: +1 818 231-8215 +roomNumber: 8804 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rudie Vaughn,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rudie Vaughn +sn: Vaughn +description: This is Rudie Vaughn's description +facsimileTelephoneNumber: +1 804 619-5327 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 789-8533 +title: Chief Peons Consultant +userPassword: Password1 +uid: VaughnR +givenName: Rudie +mail: VaughnR@dfd2035fc95c43339bef38a244e36ede.bitwarden.com +carLicense: 3FFP1O +departmentNumber: 1839 +employeeType: Normal +homePhone: +1 804 144-5715 +initials: R. V. +mobile: +1 804 875-4798 +pager: +1 804 767-5401 +roomNumber: 9946 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idris Hotlist +sn: Hotlist +description: This is Idris Hotlist's description +facsimileTelephoneNumber: +1 510 882-4509 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 565-8187 +title: Associate Product Development Consultant +userPassword: Password1 +uid: HotlistI +givenName: Idris +mail: HotlistI@623538f66c6d44c9949856d7b9d692ad.bitwarden.com +carLicense: 5682N7 +departmentNumber: 2183 +employeeType: Contract +homePhone: +1 510 566-8832 +initials: I. H. +mobile: +1 510 846-8316 +pager: +1 510 323-5180 +roomNumber: 9090 +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petri Soreanu +sn: Soreanu +description: This is Petri Soreanu's description +facsimileTelephoneNumber: +1 213 786-1138 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 213 517-4840 +title: Supreme Payroll Admin +userPassword: Password1 +uid: SoreanuP +givenName: Petri +mail: SoreanuP@2c933403160143d19a899179ef24cca2.bitwarden.com +carLicense: 8O7VIL +departmentNumber: 5941 +employeeType: Normal +homePhone: +1 213 194-7412 +initials: P. S. +mobile: +1 213 845-6747 +pager: +1 213 380-3200 +roomNumber: 8525 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Inge Hurteau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inge Hurteau +sn: Hurteau +description: This is Inge Hurteau's description +facsimileTelephoneNumber: +1 818 544-9100 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 818 316-2108 +title: Supreme Payroll Technician +userPassword: Password1 +uid: HurteauI +givenName: Inge +mail: HurteauI@ca967230de2944e896318dde6183d882.bitwarden.com +carLicense: R3SYYH +departmentNumber: 9773 +employeeType: Contract +homePhone: +1 818 996-6232 +initials: I. H. +mobile: +1 818 213-5360 +pager: +1 818 290-8521 +roomNumber: 9711 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailee Dejongh +sn: Dejongh +description: This is Ailee Dejongh's description +facsimileTelephoneNumber: +1 510 251-2048 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 635-2241 +title: Junior Product Testing Czar +userPassword: Password1 +uid: DejonghA +givenName: Ailee +mail: DejonghA@f6353cc2886243fe9b2219b4953d333b.bitwarden.com +carLicense: J5FOOH +departmentNumber: 4960 +employeeType: Employee +homePhone: +1 510 472-2011 +initials: A. D. +mobile: +1 510 774-7616 +pager: +1 510 377-4030 +roomNumber: 9483 +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tats McDermott +sn: McDermott +description: This is Tats McDermott's description +facsimileTelephoneNumber: +1 415 546-6094 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 608-2206 +title: Junior Management Stooge +userPassword: Password1 +uid: McDermoT +givenName: Tats +mail: McDermoT@7a3b1be5d62c42abaf0253c9b042dfe2.bitwarden.com +carLicense: WP6SBI +departmentNumber: 9549 +employeeType: Employee +homePhone: +1 415 112-7912 +initials: T. M. +mobile: +1 415 247-4548 +pager: +1 415 715-7544 +roomNumber: 9972 +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lianne Wanda,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lianne Wanda +sn: Wanda +description: This is Lianne Wanda's description +facsimileTelephoneNumber: +1 206 204-3020 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 681-6765 +title: Junior Administrative Fellow +userPassword: Password1 +uid: WandaL +givenName: Lianne +mail: WandaL@28e53bb2a33341d2aa3d71254b03f94e.bitwarden.com +carLicense: LOOIFU +departmentNumber: 2148 +employeeType: Normal +homePhone: +1 206 973-2340 +initials: L. W. +mobile: +1 206 647-7212 +pager: +1 206 367-9034 +roomNumber: 8506 +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estrella Rodschat +sn: Rodschat +description: This is Estrella Rodschat's description +facsimileTelephoneNumber: +1 804 457-6650 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 417-9949 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: RodschaE +givenName: Estrella +mail: RodschaE@09592cdb49ba4e06a680e4327c7f211f.bitwarden.com +carLicense: OT4U6G +departmentNumber: 4851 +employeeType: Employee +homePhone: +1 804 562-6525 +initials: E. R. +mobile: +1 804 126-5324 +pager: +1 804 806-2371 +roomNumber: 9937 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katuscha Bleile +sn: Bleile +description: This is Katuscha Bleile's description +facsimileTelephoneNumber: +1 408 983-4509 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 950-2583 +title: Chief Product Testing Punk +userPassword: Password1 +uid: BleileK +givenName: Katuscha +mail: BleileK@2af6f21a0f39407fbdd08178b71bb34d.bitwarden.com +carLicense: MOCT4T +departmentNumber: 4425 +employeeType: Contract +homePhone: +1 408 637-1156 +initials: K. B. +mobile: +1 408 250-5402 +pager: +1 408 565-1065 +roomNumber: 9168 +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marinna Drane +sn: Drane +description: This is Marinna Drane's description +facsimileTelephoneNumber: +1 213 224-1811 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 213 966-3338 +title: Master Product Testing Stooge +userPassword: Password1 +uid: DraneM +givenName: Marinna +mail: DraneM@79f5757f3e9044b8849adc8729857a5a.bitwarden.com +carLicense: RJ4C8V +departmentNumber: 8471 +employeeType: Contract +homePhone: +1 213 964-3019 +initials: M. D. +mobile: +1 213 205-6526 +pager: +1 213 131-2542 +roomNumber: 9193 +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shelly Cavan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelly Cavan +sn: Cavan +description: This is Shelly Cavan's description +facsimileTelephoneNumber: +1 415 190-2782 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 930-3768 +title: Chief Administrative Engineer +userPassword: Password1 +uid: CavanS +givenName: Shelly +mail: CavanS@ae61f912d37d41959ec8fa8339b2d969.bitwarden.com +carLicense: MD0WPJ +departmentNumber: 1958 +employeeType: Normal +homePhone: +1 415 195-3714 +initials: S. C. +mobile: +1 415 690-1460 +pager: +1 415 790-8948 +roomNumber: 8298 +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryce Luetchford +sn: Luetchford +description: This is Bryce Luetchford's description +facsimileTelephoneNumber: +1 408 305-1911 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 633-1637 +title: Associate Management Czar +userPassword: Password1 +uid: LuetchfB +givenName: Bryce +mail: LuetchfB@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com +carLicense: 5XQ5QC +departmentNumber: 9362 +employeeType: Contract +homePhone: +1 408 568-1621 +initials: B. L. +mobile: +1 408 785-1136 +pager: +1 408 456-3033 +roomNumber: 8694 +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariana Munden +sn: Munden +description: This is Mariana Munden's description +facsimileTelephoneNumber: +1 408 776-1784 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 408 594-4176 +title: Master Administrative Developer +userPassword: Password1 +uid: MundenM +givenName: Mariana +mail: MundenM@2578fec05f3c4caebb2ed35da0948626.bitwarden.com +carLicense: WOSW0K +departmentNumber: 7008 +employeeType: Employee +homePhone: +1 408 732-9455 +initials: M. M. +mobile: +1 408 163-8503 +pager: +1 408 981-4199 +roomNumber: 9258 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lawrence MACKenzie +sn: MACKenzie +description: This is Lawrence MACKenzie's description +facsimileTelephoneNumber: +1 206 473-9268 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 701-7750 +title: Supreme Product Testing Figurehead +userPassword: Password1 +uid: MACKenzL +givenName: Lawrence +mail: MACKenzL@abe51797f5124683a93236751a4e6fc3.bitwarden.com +carLicense: 7W9FBX +departmentNumber: 9260 +employeeType: Employee +homePhone: +1 206 241-9523 +initials: L. M. +mobile: +1 206 249-7981 +pager: +1 206 273-3416 +roomNumber: 9833 +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Morris Pafilis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morris Pafilis +sn: Pafilis +description: This is Morris Pafilis's description +facsimileTelephoneNumber: +1 510 551-6660 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 268-4316 +title: Junior Peons Artist +userPassword: Password1 +uid: PafilisM +givenName: Morris +mail: PafilisM@4c3f9ac9725344988223c5450f40e73e.bitwarden.com +carLicense: UIG8PJ +departmentNumber: 4861 +employeeType: Employee +homePhone: +1 510 437-4984 +initials: M. P. +mobile: +1 510 431-9297 +pager: +1 510 195-9157 +roomNumber: 8074 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shirl Clipperton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirl Clipperton +sn: Clipperton +description: This is Shirl Clipperton's description +facsimileTelephoneNumber: +1 510 440-2235 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 991-1767 +title: Master Payroll Janitor +userPassword: Password1 +uid: ClipperS +givenName: Shirl +mail: ClipperS@6f1536f416b1420eb770d530c5bda521.bitwarden.com +carLicense: YKA2TB +departmentNumber: 4599 +employeeType: Contract +homePhone: +1 510 578-6033 +initials: S. C. +mobile: +1 510 790-2877 +pager: +1 510 330-3360 +roomNumber: 8035 +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leona Buchko +sn: Buchko +description: This is Leona Buchko's description +facsimileTelephoneNumber: +1 510 510-3957 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 406-8814 +title: Junior Janitorial Punk +userPassword: Password1 +uid: BuchkoL +givenName: Leona +mail: BuchkoL@318e6f8cd7334449ba69aed9ea189bd4.bitwarden.com +carLicense: KU5QD7 +departmentNumber: 7836 +employeeType: Contract +homePhone: +1 510 106-4302 +initials: L. B. +mobile: +1 510 577-5162 +pager: +1 510 165-2009 +roomNumber: 8423 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tybi Welsford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tybi Welsford +sn: Welsford +description: This is Tybi Welsford's description +facsimileTelephoneNumber: +1 206 132-7949 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 460-3908 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: WelsforT +givenName: Tybi +mail: WelsforT@b8436b0997234174a1d3652199251b81.bitwarden.com +carLicense: DC0FQO +departmentNumber: 5221 +employeeType: Contract +homePhone: +1 206 211-8797 +initials: T. W. +mobile: +1 206 399-7180 +pager: +1 206 553-9703 +roomNumber: 8258 +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baris Derome +sn: Derome +description: This is Baris Derome's description +facsimileTelephoneNumber: +1 804 961-9884 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 198-2729 +title: Chief Payroll Admin +userPassword: Password1 +uid: DeromeB +givenName: Baris +mail: DeromeB@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com +carLicense: 13RQAM +departmentNumber: 3695 +employeeType: Normal +homePhone: +1 804 829-3223 +initials: B. D. +mobile: +1 804 877-8659 +pager: +1 804 691-1364 +roomNumber: 9336 +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Munir Dickford,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Munir Dickford +sn: Dickford +description: This is Munir Dickford's description +facsimileTelephoneNumber: +1 818 699-5821 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 620-4660 +title: Master Administrative President +userPassword: Password1 +uid: DickforM +givenName: Munir +mail: DickforM@7f5616c56b8c4a60ad958a3ffbba9f8e.bitwarden.com +carLicense: TJQFJJ +departmentNumber: 7286 +employeeType: Contract +homePhone: +1 818 679-5425 +initials: M. D. +mobile: +1 818 533-4160 +pager: +1 818 495-8523 +roomNumber: 8651 +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ailsun Yvon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailsun Yvon +sn: Yvon +description: This is Ailsun Yvon's description +facsimileTelephoneNumber: +1 206 799-5904 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 103-9152 +title: Supreme Administrative Admin +userPassword: Password1 +uid: YvonA +givenName: Ailsun +mail: YvonA@fded6a4ffab747d786306ddc62c3c811.bitwarden.com +carLicense: SXPTW9 +departmentNumber: 9057 +employeeType: Normal +homePhone: +1 206 571-1681 +initials: A. Y. +mobile: +1 206 829-4313 +pager: +1 206 817-2963 +roomNumber: 9130 +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jeffery Becquart,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeffery Becquart +sn: Becquart +description: This is Jeffery Becquart's description +facsimileTelephoneNumber: +1 408 397-9471 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 194-5628 +title: Associate Peons Pinhead +userPassword: Password1 +uid: BecquarJ +givenName: Jeffery +mail: BecquarJ@a8bd7981e56041ddac5e4b90f0535dfa.bitwarden.com +carLicense: JW3C5F +departmentNumber: 1987 +employeeType: Normal +homePhone: +1 408 959-5641 +initials: J. B. +mobile: +1 408 412-5393 +pager: +1 408 952-1682 +roomNumber: 9974 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cindelyn Capozzi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cindelyn Capozzi +sn: Capozzi +description: This is Cindelyn Capozzi's description +facsimileTelephoneNumber: +1 415 748-6900 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 939-9583 +title: Supreme Management Manager +userPassword: Password1 +uid: CapozziC +givenName: Cindelyn +mail: CapozziC@4683d74c822246798b509a58b74b661d.bitwarden.com +carLicense: FEYJ8M +departmentNumber: 6193 +employeeType: Contract +homePhone: +1 415 691-7736 +initials: C. C. +mobile: +1 415 396-2966 +pager: +1 415 823-1684 +roomNumber: 9868 +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Regan Hesse,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regan Hesse +sn: Hesse +description: This is Regan Hesse's description +facsimileTelephoneNumber: +1 510 441-8819 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 874-8421 +title: Supreme Product Development Punk +userPassword: Password1 +uid: HesseR +givenName: Regan +mail: HesseR@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com +carLicense: N1O2OC +departmentNumber: 4885 +employeeType: Contract +homePhone: +1 510 938-2589 +initials: R. H. +mobile: +1 510 880-2783 +pager: +1 510 422-6696 +roomNumber: 9012 +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aida Blackwell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aida Blackwell +sn: Blackwell +description: This is Aida Blackwell's description +facsimileTelephoneNumber: +1 213 324-1891 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 124-4577 +title: Master Payroll Engineer +userPassword: Password1 +uid: BlackweA +givenName: Aida +mail: BlackweA@75230f61780f4e0e9cf624359c2b6622.bitwarden.com +carLicense: NK7GYF +departmentNumber: 4390 +employeeType: Contract +homePhone: +1 213 771-2716 +initials: A. B. +mobile: +1 213 693-2515 +pager: +1 213 829-7282 +roomNumber: 9799 +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com + +dn: cn=Justine Aguirre,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Justine Aguirre +sn: Aguirre +description: This is Justine Aguirre's description +facsimileTelephoneNumber: +1 818 980-8393 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 395-7303 +title: Supreme Product Development President +userPassword: Password1 +uid: AguirreJ +givenName: Justine +mail: AguirreJ@8c4f062c4385431b8ef3682c208e76a0.bitwarden.com +carLicense: 3A9YXO +departmentNumber: 9666 +employeeType: Contract +homePhone: +1 818 403-8202 +initials: J. A. +mobile: +1 818 284-3464 +pager: +1 818 317-6889 +roomNumber: 9667 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maurene Zafarullah,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurene Zafarullah +sn: Zafarullah +description: This is Maurene Zafarullah's description +facsimileTelephoneNumber: +1 213 333-6174 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 442-6624 +title: Junior Management Writer +userPassword: Password1 +uid: ZafarulM +givenName: Maurene +mail: ZafarulM@6f2328709fbe4233b85bba3d4ce3d844.bitwarden.com +carLicense: CCM8GM +departmentNumber: 3390 +employeeType: Normal +homePhone: +1 213 632-8107 +initials: M. Z. +mobile: +1 213 558-2295 +pager: +1 213 793-1281 +roomNumber: 9990 +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sohayla Whaley +sn: Whaley +description: This is Sohayla Whaley's description +facsimileTelephoneNumber: +1 804 543-5485 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 609-8821 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: WhaleyS +givenName: Sohayla +mail: WhaleyS@68e96d35b7bb4addbceb19d0fa830ff5.bitwarden.com +carLicense: XEGA18 +departmentNumber: 9869 +employeeType: Normal +homePhone: +1 804 268-5525 +initials: S. W. +mobile: +1 804 755-4549 +pager: +1 804 197-9239 +roomNumber: 9520 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karita Donovan +sn: Donovan +description: This is Karita Donovan's description +facsimileTelephoneNumber: +1 510 198-9472 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 794-2946 +title: Master Product Testing Stooge +userPassword: Password1 +uid: DonovanK +givenName: Karita +mail: DonovanK@612e506d26154bfda9f499632b50c09f.bitwarden.com +carLicense: 19796X +departmentNumber: 8995 +employeeType: Employee +homePhone: +1 510 815-5002 +initials: K. D. +mobile: +1 510 648-3608 +pager: +1 510 287-5483 +roomNumber: 9643 +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaw Lantto +sn: Lantto +description: This is Shaw Lantto's description +facsimileTelephoneNumber: +1 206 670-9470 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 859-8535 +title: Associate Product Testing Director +userPassword: Password1 +uid: LanttoS +givenName: Shaw +mail: LanttoS@30919d15fb3f4281a17499420dcfbd91.bitwarden.com +carLicense: IWNA4Q +departmentNumber: 5254 +employeeType: Contract +homePhone: +1 206 161-3379 +initials: S. L. +mobile: +1 206 847-4329 +pager: +1 206 441-3999 +roomNumber: 9691 +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gwen Prog,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwen Prog +sn: Prog +description: This is Gwen Prog's description +facsimileTelephoneNumber: +1 510 541-9438 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 681-3734 +title: Supreme Peons Evangelist +userPassword: Password1 +uid: ProgG +givenName: Gwen +mail: ProgG@d95fe89a4d1149c9bcf3a6baa177125b.bitwarden.com +carLicense: MHGQVB +departmentNumber: 9525 +employeeType: Contract +homePhone: +1 510 761-7092 +initials: G. P. +mobile: +1 510 937-5202 +pager: +1 510 176-4400 +roomNumber: 9589 +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cecile Evans +sn: Evans +description: This is Cecile Evans's description +facsimileTelephoneNumber: +1 818 997-9637 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 818 575-7405 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: EvansC +givenName: Cecile +mail: EvansC@63186a053fb840c4904ffef80f864eb8.bitwarden.com +carLicense: PUR3JK +departmentNumber: 1308 +employeeType: Normal +homePhone: +1 818 892-5960 +initials: C. E. +mobile: +1 818 386-2129 +pager: +1 818 880-7394 +roomNumber: 8388 +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ringo Campara +sn: Campara +description: This is Ringo Campara's description +facsimileTelephoneNumber: +1 818 734-3335 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 818 701-1263 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: CamparaR +givenName: Ringo +mail: CamparaR@053a5e187b0b4033abb4000d18053cd9.bitwarden.com +carLicense: L2BDRX +departmentNumber: 8358 +employeeType: Contract +homePhone: +1 818 749-5420 +initials: R. C. +mobile: +1 818 223-5077 +pager: +1 818 504-7153 +roomNumber: 9202 +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melonie Loveland +sn: Loveland +description: This is Melonie Loveland's description +facsimileTelephoneNumber: +1 415 715-3850 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 450-8138 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: LovelanM +givenName: Melonie +mail: LovelanM@b0139312a83c40d5aff228440731260a.bitwarden.com +carLicense: P5IULJ +departmentNumber: 6170 +employeeType: Employee +homePhone: +1 415 977-5047 +initials: M. L. +mobile: +1 415 911-6434 +pager: +1 415 761-9264 +roomNumber: 8983 +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Quinn Malizia,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quinn Malizia +sn: Malizia +description: This is Quinn Malizia's description +facsimileTelephoneNumber: +1 415 795-1386 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 382-2360 +title: Chief Payroll Consultant +userPassword: Password1 +uid: MaliziaQ +givenName: Quinn +mail: MaliziaQ@4026e9bfc98e483f893d2b9e6722e931.bitwarden.com +carLicense: 8UX6AS +departmentNumber: 4870 +employeeType: Employee +homePhone: +1 415 152-8363 +initials: Q. M. +mobile: +1 415 401-9735 +pager: +1 415 623-6277 +roomNumber: 8140 +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Virgie Slaby,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Virgie Slaby +sn: Slaby +description: This is Virgie Slaby's description +facsimileTelephoneNumber: +1 818 473-8440 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 347-8117 +title: Junior Management Architect +userPassword: Password1 +uid: SlabyV +givenName: Virgie +mail: SlabyV@c57373b0d5374d00a3d6688cc686509b.bitwarden.com +carLicense: LG9031 +departmentNumber: 3095 +employeeType: Normal +homePhone: +1 818 924-8067 +initials: V. S. +mobile: +1 818 450-8975 +pager: +1 818 275-5162 +roomNumber: 8496 +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toyanne Smedema +sn: Smedema +description: This is Toyanne Smedema's description +facsimileTelephoneNumber: +1 804 120-6809 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 804 164-4670 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: SmedemaT +givenName: Toyanne +mail: SmedemaT@e498ba2a91544031964c1fffed4ef12c.bitwarden.com +carLicense: JQSBQ0 +departmentNumber: 5718 +employeeType: Contract +homePhone: +1 804 307-6865 +initials: T. S. +mobile: +1 804 381-6265 +pager: +1 804 117-1835 +roomNumber: 8297 +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kamil Daniells,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamil Daniells +sn: Daniells +description: This is Kamil Daniells's description +facsimileTelephoneNumber: +1 408 639-2490 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 985-3346 +title: Master Product Testing Janitor +userPassword: Password1 +uid: DaniellK +givenName: Kamil +mail: DaniellK@7c43e52d9b034f3bbc23711903010993.bitwarden.com +carLicense: 19I2Y7 +departmentNumber: 4006 +employeeType: Contract +homePhone: +1 408 474-4129 +initials: K. D. +mobile: +1 408 670-6936 +pager: +1 408 357-1846 +roomNumber: 9738 +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bevvy Dalloste,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bevvy Dalloste +sn: Dalloste +description: This is Bevvy Dalloste's description +facsimileTelephoneNumber: +1 408 226-9941 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 614-9703 +title: Master Management Assistant +userPassword: Password1 +uid: DallostB +givenName: Bevvy +mail: DallostB@741f68246b944172a356682db963a82d.bitwarden.com +carLicense: HVX2SE +departmentNumber: 7967 +employeeType: Employee +homePhone: +1 408 135-6632 +initials: B. D. +mobile: +1 408 404-7052 +pager: +1 408 460-2610 +roomNumber: 8513 +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henrie Lobianco +sn: Lobianco +description: This is Henrie Lobianco's description +facsimileTelephoneNumber: +1 510 346-6532 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 484-8444 +title: Master Product Testing Fellow +userPassword: Password1 +uid: LobiancH +givenName: Henrie +mail: LobiancH@a96cfc77d7fd4aca9d37da4b46aad39b.bitwarden.com +carLicense: ENHOA1 +departmentNumber: 8362 +employeeType: Normal +homePhone: +1 510 624-3766 +initials: H. L. +mobile: +1 510 219-1979 +pager: +1 510 608-1849 +roomNumber: 9222 +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Perri Gaylor,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perri Gaylor +sn: Gaylor +description: This is Perri Gaylor's description +facsimileTelephoneNumber: +1 804 344-1390 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 193-4833 +title: Junior Administrative Czar +userPassword: Password1 +uid: GaylorP +givenName: Perri +mail: GaylorP@526b2e31e79b488fb63ef0570005204a.bitwarden.com +carLicense: KDXCJH +departmentNumber: 4595 +employeeType: Normal +homePhone: +1 804 898-3828 +initials: P. G. +mobile: +1 804 157-9202 +pager: +1 804 666-6685 +roomNumber: 8080 +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Klink Bruneau,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klink Bruneau +sn: Bruneau +description: This is Klink Bruneau's description +facsimileTelephoneNumber: +1 206 185-4195 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 884-6611 +title: Supreme Management Artist +userPassword: Password1 +uid: BruneauK +givenName: Klink +mail: BruneauK@471393a67ebd4f51b67e7d9aeec04e67.bitwarden.com +carLicense: RXAUU5 +departmentNumber: 9991 +employeeType: Contract +homePhone: +1 206 909-6235 +initials: K. B. +mobile: +1 206 839-7478 +pager: +1 206 775-7501 +roomNumber: 8318 +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Siamack Dace,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siamack Dace +sn: Dace +description: This is Siamack Dace's description +facsimileTelephoneNumber: +1 510 449-6479 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 886-3443 +title: Master Administrative Admin +userPassword: Password1 +uid: DaceS +givenName: Siamack +mail: DaceS@d4d56842eb064bd38446a254d77ceab5.bitwarden.com +carLicense: UMD6TC +departmentNumber: 8541 +employeeType: Employee +homePhone: +1 510 278-8418 +initials: S. D. +mobile: +1 510 570-6081 +pager: +1 510 836-6396 +roomNumber: 8745 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Everette Shivcharan +sn: Shivcharan +description: This is Everette Shivcharan's description +facsimileTelephoneNumber: +1 804 165-5780 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 539-1097 +title: Chief Janitorial Architect +userPassword: Password1 +uid: ShivchaE +givenName: Everette +mail: ShivchaE@e89ca6a0c26a42d387c16cb15d267c2d.bitwarden.com +carLicense: R9C0II +departmentNumber: 2643 +employeeType: Employee +homePhone: +1 804 465-1568 +initials: E. S. +mobile: +1 804 672-7521 +pager: +1 804 449-4676 +roomNumber: 9625 +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jay Ginest,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jay Ginest +sn: Ginest +description: This is Jay Ginest's description +facsimileTelephoneNumber: +1 818 334-9275 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 825-4617 +title: Chief Human Resources Developer +userPassword: Password1 +uid: GinestJ +givenName: Jay +mail: GinestJ@3cccd227e41948e79986f554706a7781.bitwarden.com +carLicense: DWYFSF +departmentNumber: 5695 +employeeType: Employee +homePhone: +1 818 905-6332 +initials: J. G. +mobile: +1 818 205-1168 +pager: +1 818 185-7097 +roomNumber: 8897 +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wilona Caudle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilona Caudle +sn: Caudle +description: This is Wilona Caudle's description +facsimileTelephoneNumber: +1 510 198-2584 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 616-3261 +title: Associate Product Development Visionary +userPassword: Password1 +uid: CaudleW +givenName: Wilona +mail: CaudleW@90463e36c9634ed7af09a58415debfe0.bitwarden.com +carLicense: G21IN6 +departmentNumber: 6719 +employeeType: Employee +homePhone: +1 510 952-5660 +initials: W. C. +mobile: +1 510 125-9427 +pager: +1 510 448-6178 +roomNumber: 9508 +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ulrike Nevardauskis +sn: Nevardauskis +description: This is Ulrike Nevardauskis's description +facsimileTelephoneNumber: +1 213 678-6277 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 213 479-8056 +title: Associate Product Development Manager +userPassword: Password1 +uid: NevardaU +givenName: Ulrike +mail: NevardaU@83146e7f57ba40bd8fd147c075fc9a0d.bitwarden.com +carLicense: E4NSF6 +departmentNumber: 8383 +employeeType: Employee +homePhone: +1 213 338-5214 +initials: U. N. +mobile: +1 213 773-3097 +pager: +1 213 635-3658 +roomNumber: 9583 +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siamak Gibeault +sn: Gibeault +description: This is Siamak Gibeault's description +facsimileTelephoneNumber: +1 408 285-3502 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 408 297-5192 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: GibeaulS +givenName: Siamak +mail: GibeaulS@d449a5092c5940c4981c5759373cd556.bitwarden.com +carLicense: WN5N6K +departmentNumber: 3905 +employeeType: Contract +homePhone: +1 408 856-8512 +initials: S. G. +mobile: +1 408 711-9103 +pager: +1 408 352-1215 +roomNumber: 8972 +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Laz Plante,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laz Plante +sn: Plante +description: This is Laz Plante's description +facsimileTelephoneNumber: +1 415 976-8633 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 156-9083 +title: Junior Product Development Admin +userPassword: Password1 +uid: PlanteL +givenName: Laz +mail: PlanteL@737f5132e7a343ceaab6a20163c2ba4e.bitwarden.com +carLicense: NHDMXP +departmentNumber: 6252 +employeeType: Contract +homePhone: +1 415 889-3060 +initials: L. P. +mobile: +1 415 682-3421 +pager: +1 415 602-1294 +roomNumber: 9351 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meghan Kathnelson +sn: Kathnelson +description: This is Meghan Kathnelson's description +facsimileTelephoneNumber: +1 818 402-9540 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 803-7853 +title: Chief Administrative Madonna +userPassword: Password1 +uid: KathnelM +givenName: Meghan +mail: KathnelM@7ab7643662f14cef84497ec647fde7ff.bitwarden.com +carLicense: IPFLWY +departmentNumber: 7776 +employeeType: Contract +homePhone: +1 818 214-4307 +initials: M. K. +mobile: +1 818 248-6987 +pager: +1 818 260-8899 +roomNumber: 9001 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellene Holberry +sn: Holberry +description: This is Ellene Holberry's description +facsimileTelephoneNumber: +1 415 984-5588 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 717-8881 +title: Master Administrative Artist +userPassword: Password1 +uid: HolberrE +givenName: Ellene +mail: HolberrE@0c0cb73653474aa4b8a172e8089ffde7.bitwarden.com +carLicense: O0D2JM +departmentNumber: 5525 +employeeType: Employee +homePhone: +1 415 454-2446 +initials: E. H. +mobile: +1 415 464-6973 +pager: +1 415 656-9832 +roomNumber: 9693 +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Niel McComb,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niel McComb +sn: McComb +description: This is Niel McComb's description +facsimileTelephoneNumber: +1 804 103-1140 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 804 380-6411 +title: Master Peons Developer +userPassword: Password1 +uid: McCombN +givenName: Niel +mail: McCombN@840c6c20816640f3a23c22832cd051de.bitwarden.com +carLicense: ILISO2 +departmentNumber: 2316 +employeeType: Contract +homePhone: +1 804 250-9054 +initials: N. M. +mobile: +1 804 795-7110 +pager: +1 804 493-3766 +roomNumber: 8956 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anni Demchuk +sn: Demchuk +description: This is Anni Demchuk's description +facsimileTelephoneNumber: +1 206 261-7312 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 206 644-7983 +title: Supreme Human Resources Architect +userPassword: Password1 +uid: DemchukA +givenName: Anni +mail: DemchukA@75230f61780f4e0e9cf624359c2b6622.bitwarden.com +carLicense: 6KWK6Y +departmentNumber: 9970 +employeeType: Employee +homePhone: +1 206 416-8409 +initials: A. D. +mobile: +1 206 278-4342 +pager: +1 206 822-9888 +roomNumber: 8931 +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chen Crosson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chen Crosson +sn: Crosson +description: This is Chen Crosson's description +facsimileTelephoneNumber: +1 415 622-7213 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 890-9285 +title: Associate Janitorial Figurehead +userPassword: Password1 +uid: CrossonC +givenName: Chen +mail: CrossonC@948fee4ac0644e21a6b3abc34aeaa20f.bitwarden.com +carLicense: 8EEFT5 +departmentNumber: 4409 +employeeType: Contract +homePhone: +1 415 848-5547 +initials: C. C. +mobile: +1 415 948-2756 +pager: +1 415 319-4099 +roomNumber: 8345 +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ammamaria Barsony +sn: Barsony +description: This is Ammamaria Barsony's description +facsimileTelephoneNumber: +1 510 305-2091 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 971-1942 +title: Supreme Janitorial Director +userPassword: Password1 +uid: BarsonyA +givenName: Ammamaria +mail: BarsonyA@ac405217bf53481daa900e9995e259fe.bitwarden.com +carLicense: ENVMSM +departmentNumber: 8896 +employeeType: Contract +homePhone: +1 510 141-2022 +initials: A. B. +mobile: +1 510 625-3874 +pager: +1 510 439-5125 +roomNumber: 9312 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Justina Kirkwood +sn: Kirkwood +description: This is Justina Kirkwood's description +facsimileTelephoneNumber: +1 818 451-7503 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 649-9697 +title: Associate Human Resources Technician +userPassword: Password1 +uid: KirkwooJ +givenName: Justina +mail: KirkwooJ@b154fab59ca14553be1151ffa2cd4d97.bitwarden.com +carLicense: F86QAK +departmentNumber: 7319 +employeeType: Employee +homePhone: +1 818 192-8453 +initials: J. K. +mobile: +1 818 115-3360 +pager: +1 818 371-6898 +roomNumber: 9060 +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lonna Leong,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lonna Leong +sn: Leong +description: This is Lonna Leong's description +facsimileTelephoneNumber: +1 408 909-2660 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 695-5669 +title: Master Administrative Warrior +userPassword: Password1 +uid: LeongL +givenName: Lonna +mail: LeongL@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com +carLicense: JYUKVQ +departmentNumber: 1790 +employeeType: Contract +homePhone: +1 408 615-8322 +initials: L. L. +mobile: +1 408 908-8012 +pager: +1 408 378-8530 +roomNumber: 9731 +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Drusie Prewitt,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drusie Prewitt +sn: Prewitt +description: This is Drusie Prewitt's description +facsimileTelephoneNumber: +1 415 210-4480 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 415 794-3149 +title: Chief Management Czar +userPassword: Password1 +uid: PrewittD +givenName: Drusie +mail: PrewittD@52bca4c594a04715b5715f08c172758d.bitwarden.com +carLicense: DG6IR4 +departmentNumber: 1427 +employeeType: Normal +homePhone: +1 415 172-3994 +initials: D. P. +mobile: +1 415 916-3650 +pager: +1 415 182-2759 +roomNumber: 9393 +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulciana Gendron +sn: Gendron +description: This is Dulciana Gendron's description +facsimileTelephoneNumber: +1 408 894-9617 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 408 131-5835 +title: Junior Janitorial Stooge +userPassword: Password1 +uid: GendronD +givenName: Dulciana +mail: GendronD@3c11f573de8f4908ada18c7fd8a1cb8d.bitwarden.com +carLicense: 6HII1A +departmentNumber: 4469 +employeeType: Contract +homePhone: +1 408 996-9666 +initials: D. G. +mobile: +1 408 440-9830 +pager: +1 408 980-9630 +roomNumber: 8954 +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jen Assenza,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jen Assenza +sn: Assenza +description: This is Jen Assenza's description +facsimileTelephoneNumber: +1 804 762-9427 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 273-5583 +title: Junior Peons Manager +userPassword: Password1 +uid: AssenzaJ +givenName: Jen +mail: AssenzaJ@4a47e69492284601911d68b00175e387.bitwarden.com +carLicense: FN0TQG +departmentNumber: 7579 +employeeType: Employee +homePhone: +1 804 602-3393 +initials: J. A. +mobile: +1 804 919-3206 +pager: +1 804 225-5641 +roomNumber: 8096 +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lynnet Henshaw,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynnet Henshaw +sn: Henshaw +description: This is Lynnet Henshaw's description +facsimileTelephoneNumber: +1 804 720-1638 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 804 413-2831 +title: Junior Management Engineer +userPassword: Password1 +uid: HenshawL +givenName: Lynnet +mail: HenshawL@4d62425a140c4e9283e4fbe1fb7421be.bitwarden.com +carLicense: 01NBFR +departmentNumber: 5864 +employeeType: Contract +homePhone: +1 804 217-4711 +initials: L. H. +mobile: +1 804 766-8652 +pager: +1 804 685-8108 +roomNumber: 8100 +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wanids Pepper,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wanids Pepper +sn: Pepper +description: This is Wanids Pepper's description +facsimileTelephoneNumber: +1 818 463-5820 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 467-6553 +title: Chief Administrative Architect +userPassword: Password1 +uid: PepperW +givenName: Wanids +mail: PepperW@ea9e0894161f45a1a243f11b80970704.bitwarden.com +carLicense: W4O5KS +departmentNumber: 4174 +employeeType: Contract +homePhone: +1 818 337-7572 +initials: W. P. +mobile: +1 818 384-2023 +pager: +1 818 846-4237 +roomNumber: 8152 +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tamara Ahlers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamara Ahlers +sn: Ahlers +description: This is Tamara Ahlers's description +facsimileTelephoneNumber: +1 408 705-7687 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 249-5137 +title: Master Payroll Czar +userPassword: Password1 +uid: AhlersT +givenName: Tamara +mail: AhlersT@f435a2b95da94bf4a1e437105cc89fad.bitwarden.com +carLicense: RV4TT7 +departmentNumber: 8153 +employeeType: Contract +homePhone: +1 408 961-4960 +initials: T. A. +mobile: +1 408 132-1910 +pager: +1 408 731-6450 +roomNumber: 9279 +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karilynn Roddick +sn: Roddick +description: This is Karilynn Roddick's description +facsimileTelephoneNumber: +1 415 277-4642 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 866-8229 +title: Junior Product Development Artist +userPassword: Password1 +uid: RoddickK +givenName: Karilynn +mail: RoddickK@ab04014fcfcf443881ea178cd34f1aab.bitwarden.com +carLicense: YF42HG +departmentNumber: 2053 +employeeType: Normal +homePhone: +1 415 351-1931 +initials: K. R. +mobile: +1 415 794-4052 +pager: +1 415 891-9980 +roomNumber: 9215 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mariesara CamelToueg,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariesara CamelToueg +sn: CamelToueg +description: This is Mariesara CamelToueg's description +facsimileTelephoneNumber: +1 408 674-4053 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 731-6233 +title: Associate Management Sales Rep +userPassword: Password1 +uid: CamelToM +givenName: Mariesara +mail: CamelToM@528cdf5245b64779b73a856ecc3f4a50.bitwarden.com +carLicense: 35BXET +departmentNumber: 4576 +employeeType: Employee +homePhone: +1 408 302-3839 +initials: M. C. +mobile: +1 408 271-8804 +pager: +1 408 107-5856 +roomNumber: 8534 +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doe Yowell +sn: Yowell +description: This is Doe Yowell's description +facsimileTelephoneNumber: +1 510 163-2832 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 343-7672 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: YowellD +givenName: Doe +mail: YowellD@46af47a358cc432b9e3e57dfdff8445e.bitwarden.com +carLicense: UV7QR9 +departmentNumber: 5099 +employeeType: Normal +homePhone: +1 510 125-4159 +initials: D. Y. +mobile: +1 510 547-5792 +pager: +1 510 407-3479 +roomNumber: 8089 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Deedee Mattes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deedee Mattes +sn: Mattes +description: This is Deedee Mattes's description +facsimileTelephoneNumber: +1 213 710-8582 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 742-8666 +title: Chief Human Resources Mascot +userPassword: Password1 +uid: MattesD +givenName: Deedee +mail: MattesD@fb55149cb2a74d6c9e271920a1046f2a.bitwarden.com +carLicense: JRUNDP +departmentNumber: 4767 +employeeType: Normal +homePhone: +1 213 180-1624 +initials: D. M. +mobile: +1 213 953-5483 +pager: +1 213 906-6804 +roomNumber: 9273 +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Luis Sinnett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luis Sinnett +sn: Sinnett +description: This is Luis Sinnett's description +facsimileTelephoneNumber: +1 818 644-9975 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 557-7550 +title: Junior Product Testing Assistant +userPassword: Password1 +uid: SinnettL +givenName: Luis +mail: SinnettL@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com +carLicense: LBYT2B +departmentNumber: 5642 +employeeType: Normal +homePhone: +1 818 220-7641 +initials: L. S. +mobile: +1 818 440-1574 +pager: +1 818 644-1759 +roomNumber: 9861 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elianore Sweetnam +sn: Sweetnam +description: This is Elianore Sweetnam's description +facsimileTelephoneNumber: +1 213 805-8555 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 975-2301 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: SweetnaE +givenName: Elianore +mail: SweetnaE@60e903b99c4f452b858f19d9843dcc15.bitwarden.com +carLicense: V69C39 +departmentNumber: 8292 +employeeType: Employee +homePhone: +1 213 555-4798 +initials: E. S. +mobile: +1 213 219-5600 +pager: +1 213 867-6105 +roomNumber: 9405 +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Evette Bouffard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evette Bouffard +sn: Bouffard +description: This is Evette Bouffard's description +facsimileTelephoneNumber: +1 408 628-2767 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 634-4117 +title: Chief Human Resources Stooge +userPassword: Password1 +uid: BouffarE +givenName: Evette +mail: BouffarE@a88363254d654a46a988ed9a05ced93a.bitwarden.com +carLicense: LTJYU0 +departmentNumber: 6753 +employeeType: Contract +homePhone: +1 408 622-8139 +initials: E. B. +mobile: +1 408 480-6928 +pager: +1 408 128-4620 +roomNumber: 8273 +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Armin Bakkum,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Armin Bakkum +sn: Bakkum +description: This is Armin Bakkum's description +facsimileTelephoneNumber: +1 818 471-2603 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 360-8704 +title: Master Human Resources Janitor +userPassword: Password1 +uid: BakkumA +givenName: Armin +mail: BakkumA@4bc388c8d1cb44a0a2404340d63cfe5b.bitwarden.com +carLicense: 333XR0 +departmentNumber: 1515 +employeeType: Employee +homePhone: +1 818 917-1403 +initials: A. B. +mobile: +1 818 655-6776 +pager: +1 818 678-8826 +roomNumber: 9787 +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Feliza Azizuddin +sn: Azizuddin +description: This is Feliza Azizuddin's description +facsimileTelephoneNumber: +1 818 477-1118 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 818 356-4148 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: AzizuddF +givenName: Feliza +mail: AzizuddF@6f1536f416b1420eb770d530c5bda521.bitwarden.com +carLicense: Q2OIMA +departmentNumber: 3196 +employeeType: Contract +homePhone: +1 818 710-9884 +initials: F. A. +mobile: +1 818 103-6961 +pager: +1 818 178-4833 +roomNumber: 9626 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Grady Gregorski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grady Gregorski +sn: Gregorski +description: This is Grady Gregorski's description +facsimileTelephoneNumber: +1 804 213-7715 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 362-6690 +title: Junior Administrative Warrior +userPassword: Password1 +uid: GregorsG +givenName: Grady +mail: GregorsG@75db2ded6c224e4da9fab555cc5d1c55.bitwarden.com +carLicense: VPKBML +departmentNumber: 4486 +employeeType: Employee +homePhone: +1 804 615-1138 +initials: G. G. +mobile: +1 804 598-2618 +pager: +1 804 477-6354 +roomNumber: 9194 +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ede Riggins +sn: Riggins +description: This is Ede Riggins's description +facsimileTelephoneNumber: +1 818 668-4759 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 987-3213 +title: Junior Administrative Figurehead +userPassword: Password1 +uid: RigginsE +givenName: Ede +mail: RigginsE@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com +carLicense: AC52W6 +departmentNumber: 7803 +employeeType: Normal +homePhone: +1 818 491-2103 +initials: E. R. +mobile: +1 818 223-8426 +pager: +1 818 475-1620 +roomNumber: 9290 +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisse Lemyre +sn: Lemyre +description: This is Melisse Lemyre's description +facsimileTelephoneNumber: +1 818 463-8957 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 618-6393 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: LemyreM +givenName: Melisse +mail: LemyreM@d9be0d61b3d04e0e964a2ed65ee39def.bitwarden.com +carLicense: EW2U7X +departmentNumber: 5333 +employeeType: Normal +homePhone: +1 818 202-6220 +initials: M. L. +mobile: +1 818 482-3874 +pager: +1 818 337-3484 +roomNumber: 8558 +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vi Biamonte,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vi Biamonte +sn: Biamonte +description: This is Vi Biamonte's description +facsimileTelephoneNumber: +1 206 411-4434 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 404-1965 +title: Master Management Fellow +userPassword: Password1 +uid: BiamontV +givenName: Vi +mail: BiamontV@394dfb035c4a4d4f9d0db1fc772d6f2c.bitwarden.com +carLicense: K6ABL2 +departmentNumber: 2055 +employeeType: Normal +homePhone: +1 206 657-2610 +initials: V. B. +mobile: +1 206 566-9502 +pager: +1 206 211-1494 +roomNumber: 9917 +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shauna Moizer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shauna Moizer +sn: Moizer +description: This is Shauna Moizer's description +facsimileTelephoneNumber: +1 415 330-6632 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 235-1416 +title: Master Janitorial Evangelist +userPassword: Password1 +uid: MoizerS +givenName: Shauna +mail: MoizerS@b134362a785742d6b5a1f5d5c2746e9a.bitwarden.com +carLicense: LLS6FE +departmentNumber: 9098 +employeeType: Contract +homePhone: +1 415 220-1730 +initials: S. M. +mobile: +1 415 489-9458 +pager: +1 415 178-9497 +roomNumber: 8237 +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramaprakash Eakins +sn: Eakins +description: This is Ramaprakash Eakins's description +facsimileTelephoneNumber: +1 818 946-2085 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 477-8195 +title: Supreme Payroll Artist +userPassword: Password1 +uid: EakinsR +givenName: Ramaprakash +mail: EakinsR@b57908d5940c498f802323dedcdd1fe7.bitwarden.com +carLicense: 5EX9CS +departmentNumber: 1016 +employeeType: Employee +homePhone: +1 818 707-2094 +initials: R. E. +mobile: +1 818 302-3024 +pager: +1 818 136-9974 +roomNumber: 9313 +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryanna Rao +sn: Rao +description: This is Maryanna Rao's description +facsimileTelephoneNumber: +1 415 914-1390 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 181-7189 +title: Supreme Payroll Fellow +userPassword: Password1 +uid: RaoM +givenName: Maryanna +mail: RaoM@e8149d5dfc6644b79cb026322f0adffe.bitwarden.com +carLicense: 5V3G1P +departmentNumber: 3110 +employeeType: Contract +homePhone: +1 415 570-1626 +initials: M. R. +mobile: +1 415 847-2338 +pager: +1 415 178-8341 +roomNumber: 9429 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kore Hedrick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kore Hedrick +sn: Hedrick +description: This is Kore Hedrick's description +facsimileTelephoneNumber: +1 818 650-6320 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 380-5312 +title: Supreme Management Vice President +userPassword: Password1 +uid: HedrickK +givenName: Kore +mail: HedrickK@dddb0ef21490453ca7770ab3e7c98c8a.bitwarden.com +carLicense: WB8A77 +departmentNumber: 7052 +employeeType: Employee +homePhone: +1 818 670-3074 +initials: K. H. +mobile: +1 818 151-3451 +pager: +1 818 251-5847 +roomNumber: 8069 +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cornelius Lafever +sn: Lafever +description: This is Cornelius Lafever's description +facsimileTelephoneNumber: +1 415 631-8425 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 787-4452 +title: Associate Janitorial Technician +userPassword: Password1 +uid: LafeverC +givenName: Cornelius +mail: LafeverC@bc5b48bcb0df42c9948c4c39df2e429f.bitwarden.com +carLicense: Y90YW5 +departmentNumber: 3883 +employeeType: Contract +homePhone: +1 415 675-2129 +initials: C. L. +mobile: +1 415 436-9109 +pager: +1 415 194-4342 +roomNumber: 8632 +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcelo Lobianco +sn: Lobianco +description: This is Marcelo Lobianco's description +facsimileTelephoneNumber: +1 415 709-4327 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 948-5782 +title: Chief Payroll Punk +userPassword: Password1 +uid: LobiancM +givenName: Marcelo +mail: LobiancM@bd9027744e31459db23a7217225fbe23.bitwarden.com +carLicense: G0O56O +departmentNumber: 5653 +employeeType: Contract +homePhone: +1 415 783-5182 +initials: M. L. +mobile: +1 415 283-1309 +pager: +1 415 475-9043 +roomNumber: 8905 +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cari GuyArbour +sn: GuyArbour +description: This is Cari GuyArbour's description +facsimileTelephoneNumber: +1 510 108-9064 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 158-1171 +title: Chief Product Testing Admin +userPassword: Password1 +uid: GuyArboC +givenName: Cari +mail: GuyArboC@50440101366043ed987d2eecbe048532.bitwarden.com +carLicense: OLJLGV +departmentNumber: 8567 +employeeType: Normal +homePhone: +1 510 230-3499 +initials: C. G. +mobile: +1 510 693-4076 +pager: +1 510 652-2959 +roomNumber: 8274 +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marris Legrove,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marris Legrove +sn: Legrove +description: This is Marris Legrove's description +facsimileTelephoneNumber: +1 510 880-5357 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 817-9121 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: LegroveM +givenName: Marris +mail: LegroveM@57ceba44120949db81f6e0d349dde456.bitwarden.com +carLicense: KOQYBM +departmentNumber: 7597 +employeeType: Employee +homePhone: +1 510 956-8020 +initials: M. L. +mobile: +1 510 496-7509 +pager: +1 510 503-7312 +roomNumber: 8286 +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilliard Sinasac +sn: Sinasac +description: This is Hilliard Sinasac's description +facsimileTelephoneNumber: +1 408 590-9015 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 274-3583 +title: Associate Payroll Dictator +userPassword: Password1 +uid: SinasacH +givenName: Hilliard +mail: SinasacH@6929241d20d8492688967f473f97d5ee.bitwarden.com +carLicense: 1BTJHQ +departmentNumber: 9317 +employeeType: Contract +homePhone: +1 408 307-1098 +initials: H. S. +mobile: +1 408 381-1526 +pager: +1 408 148-2903 +roomNumber: 8083 +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Olusola Hudson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olusola Hudson +sn: Hudson +description: This is Olusola Hudson's description +facsimileTelephoneNumber: +1 415 932-3321 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 721-3123 +title: Master Janitorial Evangelist +userPassword: Password1 +uid: HudsonO +givenName: Olusola +mail: HudsonO@8df0438ac9ae4a56af6789a0baa3c594.bitwarden.com +carLicense: A2RA8N +departmentNumber: 3462 +employeeType: Contract +homePhone: +1 415 146-2104 +initials: O. H. +mobile: +1 415 934-2517 +pager: +1 415 674-4080 +roomNumber: 8983 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cordula Lewandowski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cordula Lewandowski +sn: Lewandowski +description: This is Cordula Lewandowski's description +facsimileTelephoneNumber: +1 206 764-1922 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 342-9644 +title: Junior Management Evangelist +userPassword: Password1 +uid: LewandoC +givenName: Cordula +mail: LewandoC@aee41a45245c488583a4e60c217e30cb.bitwarden.com +carLicense: DTPN5O +departmentNumber: 7238 +employeeType: Normal +homePhone: +1 206 818-1777 +initials: C. L. +mobile: +1 206 853-7053 +pager: +1 206 101-7334 +roomNumber: 9851 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Olwen Salyer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olwen Salyer +sn: Salyer +description: This is Olwen Salyer's description +facsimileTelephoneNumber: +1 804 240-4825 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 254-3880 +title: Junior Management Madonna +userPassword: Password1 +uid: SalyerO +givenName: Olwen +mail: SalyerO@dcbfb0982f2b4bb7bdf60b8f61c36502.bitwarden.com +carLicense: V0OP6U +departmentNumber: 6697 +employeeType: Normal +homePhone: +1 804 866-3619 +initials: O. S. +mobile: +1 804 985-1400 +pager: +1 804 319-2921 +roomNumber: 8987 +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henny Balakrishnan +sn: Balakrishnan +description: This is Henny Balakrishnan's description +facsimileTelephoneNumber: +1 510 666-7750 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 827-2817 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: BalakriH +givenName: Henny +mail: BalakriH@5b3c54f47fc64ffbbe62b2e499081d43.bitwarden.com +carLicense: AJ4QS8 +departmentNumber: 3528 +employeeType: Employee +homePhone: +1 510 104-1551 +initials: H. B. +mobile: +1 510 213-9016 +pager: +1 510 516-9075 +roomNumber: 8972 +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kristine Guignon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristine Guignon +sn: Guignon +description: This is Kristine Guignon's description +facsimileTelephoneNumber: +1 408 267-7569 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 751-3151 +title: Associate Human Resources Stooge +userPassword: Password1 +uid: GuignonK +givenName: Kristine +mail: GuignonK@180993b547ec4c93a6ebea6992867699.bitwarden.com +carLicense: LBGOD3 +departmentNumber: 8329 +employeeType: Normal +homePhone: +1 408 803-8245 +initials: K. G. +mobile: +1 408 264-4259 +pager: +1 408 814-1313 +roomNumber: 8600 +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Daphna Leong,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphna Leong +sn: Leong +description: This is Daphna Leong's description +facsimileTelephoneNumber: +1 804 919-2132 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 804 954-6229 +title: Chief Janitorial Stooge +userPassword: Password1 +uid: LeongD +givenName: Daphna +mail: LeongD@d37901086196495ab5d77980959c7f35.bitwarden.com +carLicense: Q94TQ8 +departmentNumber: 2342 +employeeType: Normal +homePhone: +1 804 433-1351 +initials: D. L. +mobile: +1 804 799-9959 +pager: +1 804 565-5784 +roomNumber: 8898 +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Larysa Singer +sn: Singer +description: This is Larysa Singer's description +facsimileTelephoneNumber: +1 213 947-3175 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 254-6912 +title: Junior Product Development Figurehead +userPassword: Password1 +uid: SingerL +givenName: Larysa +mail: SingerL@e68f51f1d9244f0a8bff7f138347479d.bitwarden.com +carLicense: UQAJON +departmentNumber: 5913 +employeeType: Employee +homePhone: +1 213 951-5049 +initials: L. S. +mobile: +1 213 137-4096 +pager: +1 213 424-6631 +roomNumber: 9156 +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilmi Spohn +sn: Spohn +description: This is Hilmi Spohn's description +facsimileTelephoneNumber: +1 408 412-2400 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 543-9279 +title: Supreme Product Development Artist +userPassword: Password1 +uid: SpohnH +givenName: Hilmi +mail: SpohnH@2699c3099b704f2ba70219415c473196.bitwarden.com +carLicense: S3CUOX +departmentNumber: 8231 +employeeType: Employee +homePhone: +1 408 705-1017 +initials: H. S. +mobile: +1 408 244-1280 +pager: +1 408 820-1897 +roomNumber: 8081 +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sharity Fusca,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharity Fusca +sn: Fusca +description: This is Sharity Fusca's description +facsimileTelephoneNumber: +1 510 359-8918 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 296-7724 +title: Junior Peons Madonna +userPassword: Password1 +uid: FuscaS +givenName: Sharity +mail: FuscaS@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com +carLicense: F4KHQ7 +departmentNumber: 8529 +employeeType: Contract +homePhone: +1 510 285-7096 +initials: S. F. +mobile: +1 510 262-6385 +pager: +1 510 420-8135 +roomNumber: 9965 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kendre Favrot +sn: Favrot +description: This is Kendre Favrot's description +facsimileTelephoneNumber: +1 510 483-5229 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 251-6231 +title: Supreme Janitorial Punk +userPassword: Password1 +uid: FavrotK +givenName: Kendre +mail: FavrotK@f6866989cc784904871bcaa73d189a85.bitwarden.com +carLicense: 9I6GGY +departmentNumber: 2608 +employeeType: Employee +homePhone: +1 510 585-1690 +initials: K. F. +mobile: +1 510 967-5422 +pager: +1 510 712-3786 +roomNumber: 9553 +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pit Cotuna,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pit Cotuna +sn: Cotuna +description: This is Pit Cotuna's description +facsimileTelephoneNumber: +1 415 591-6134 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 628-1191 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: CotunaP +givenName: Pit +mail: CotunaP@3a582b3bf0c346c09f92fe33efef44dc.bitwarden.com +carLicense: ABJEK2 +departmentNumber: 9365 +employeeType: Employee +homePhone: +1 415 154-5210 +initials: P. C. +mobile: +1 415 734-8773 +pager: +1 415 327-8255 +roomNumber: 8497 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carma Mattiussi +sn: Mattiussi +description: This is Carma Mattiussi's description +facsimileTelephoneNumber: +1 206 512-2923 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 277-5736 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: MattiusC +givenName: Carma +mail: MattiusC@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com +carLicense: 6L2P73 +departmentNumber: 8705 +employeeType: Normal +homePhone: +1 206 953-3500 +initials: C. M. +mobile: +1 206 896-4590 +pager: +1 206 992-2961 +roomNumber: 8524 +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucky Maliepaard +sn: Maliepaard +description: This is Lucky Maliepaard's description +facsimileTelephoneNumber: +1 510 533-5335 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 753-2557 +title: Supreme Payroll Fellow +userPassword: Password1 +uid: MaliepaL +givenName: Lucky +mail: MaliepaL@f0ddebf82b7547be9ea16dacf25cc0a8.bitwarden.com +carLicense: 75XO33 +departmentNumber: 1347 +employeeType: Normal +homePhone: +1 510 681-6111 +initials: L. M. +mobile: +1 510 550-7726 +pager: +1 510 481-6232 +roomNumber: 9178 +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Leeann Staring,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leeann Staring +sn: Staring +description: This is Leeann Staring's description +facsimileTelephoneNumber: +1 213 821-9612 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 884-5069 +title: Master Administrative Developer +userPassword: Password1 +uid: StaringL +givenName: Leeann +mail: StaringL@951421a2e53b48ba8767b74d986be6dd.bitwarden.com +carLicense: 88LFVS +departmentNumber: 5599 +employeeType: Employee +homePhone: +1 213 120-3531 +initials: L. S. +mobile: +1 213 809-7594 +pager: +1 213 535-5680 +roomNumber: 8020 +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Indiana Bodford,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Indiana Bodford +sn: Bodford +description: This is Indiana Bodford's description +facsimileTelephoneNumber: +1 804 995-4702 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 611-5593 +title: Junior Administrative Czar +userPassword: Password1 +uid: BodfordI +givenName: Indiana +mail: BodfordI@58b17cbf3c8c49a497e5fef5616324ae.bitwarden.com +carLicense: VV3YUR +departmentNumber: 7586 +employeeType: Contract +homePhone: +1 804 582-7113 +initials: I. B. +mobile: +1 804 749-9140 +pager: +1 804 678-9966 +roomNumber: 9095 +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maighdiln Zukovsky +sn: Zukovsky +description: This is Maighdiln Zukovsky's description +facsimileTelephoneNumber: +1 415 756-4696 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 415 303-4870 +title: Chief Management Manager +userPassword: Password1 +uid: ZukovskM +givenName: Maighdiln +mail: ZukovskM@58ad0883939b4209a1c1bf6c7755ae5e.bitwarden.com +carLicense: LFDBMM +departmentNumber: 9593 +employeeType: Employee +homePhone: +1 415 729-7110 +initials: M. Z. +mobile: +1 415 874-6784 +pager: +1 415 457-9523 +roomNumber: 8000 +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hermia Besse,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermia Besse +sn: Besse +description: This is Hermia Besse's description +facsimileTelephoneNumber: +1 818 576-7425 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 834-3632 +title: Associate Payroll Consultant +userPassword: Password1 +uid: BesseH +givenName: Hermia +mail: BesseH@622a54e630224fe7b08d7367fa70f841.bitwarden.com +carLicense: LKNLY2 +departmentNumber: 4918 +employeeType: Normal +homePhone: +1 818 132-4966 +initials: H. B. +mobile: +1 818 864-3681 +pager: +1 818 363-8998 +roomNumber: 9725 +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keri Struble +sn: Struble +description: This is Keri Struble's description +facsimileTelephoneNumber: +1 818 758-3719 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 548-2814 +title: Chief Product Development Punk +userPassword: Password1 +uid: StrubleK +givenName: Keri +mail: StrubleK@dcff57d96764408cb291cdc17909588d.bitwarden.com +carLicense: Y0C1GL +departmentNumber: 4039 +employeeType: Employee +homePhone: +1 818 499-2010 +initials: K. S. +mobile: +1 818 427-6270 +pager: +1 818 380-5858 +roomNumber: 9695 +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rolande Kiger,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rolande Kiger +sn: Kiger +description: This is Rolande Kiger's description +facsimileTelephoneNumber: +1 213 944-1075 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 778-4478 +title: Junior Product Development Developer +userPassword: Password1 +uid: KigerR +givenName: Rolande +mail: KigerR@512b1443d1ed45ccb0713f3efd2670c6.bitwarden.com +carLicense: JG7MTL +departmentNumber: 5280 +employeeType: Employee +homePhone: +1 213 528-7920 +initials: R. K. +mobile: +1 213 854-9130 +pager: +1 213 100-7584 +roomNumber: 8640 +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hana CampbellTapp +sn: CampbellTapp +description: This is Hana CampbellTapp's description +facsimileTelephoneNumber: +1 213 196-6211 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 213 613-3162 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: CampbelH +givenName: Hana +mail: CampbelH@484147050d834a1da350db4c28e9f45b.bitwarden.com +carLicense: RELEHN +departmentNumber: 7342 +employeeType: Normal +homePhone: +1 213 264-1544 +initials: H. C. +mobile: +1 213 724-1438 +pager: +1 213 326-3490 +roomNumber: 9419 +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyndy Auton +sn: Auton +description: This is Cyndy Auton's description +facsimileTelephoneNumber: +1 415 160-8508 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 141-5709 +title: Associate Administrative Czar +userPassword: Password1 +uid: AutonC +givenName: Cyndy +mail: AutonC@921a896c746149b8b4b3f6884b3f726f.bitwarden.com +carLicense: KHTECA +departmentNumber: 7351 +employeeType: Normal +homePhone: +1 415 995-9900 +initials: C. A. +mobile: +1 415 230-1376 +pager: +1 415 960-3720 +roomNumber: 9029 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blaise Bookings +sn: Bookings +description: This is Blaise Bookings's description +facsimileTelephoneNumber: +1 818 631-3015 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 818 578-9668 +title: Chief Administrative President +userPassword: Password1 +uid: BookingB +givenName: Blaise +mail: BookingB@ffbf9bf698dd4e7a9f64eeee84b5ec64.bitwarden.com +carLicense: QFMF19 +departmentNumber: 5514 +employeeType: Normal +homePhone: +1 818 227-1074 +initials: B. B. +mobile: +1 818 579-3961 +pager: +1 818 229-6758 +roomNumber: 9353 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Door Rigdon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Door Rigdon +sn: Rigdon +description: This is Door Rigdon's description +facsimileTelephoneNumber: +1 213 443-1797 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 213 136-3723 +title: Chief Human Resources Figurehead +userPassword: Password1 +uid: RigdonD +givenName: Door +mail: RigdonD@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com +carLicense: T8KHLL +departmentNumber: 5524 +employeeType: Normal +homePhone: +1 213 241-9879 +initials: D. R. +mobile: +1 213 163-9843 +pager: +1 213 209-7588 +roomNumber: 8080 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Allianora Toperzer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allianora Toperzer +sn: Toperzer +description: This is Allianora Toperzer's description +facsimileTelephoneNumber: +1 206 876-6811 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 220-2195 +title: Supreme Payroll Warrior +userPassword: Password1 +uid: ToperzeA +givenName: Allianora +mail: ToperzeA@e57ea92ee58c48afbafa0ac14075f3d3.bitwarden.com +carLicense: JD34QW +departmentNumber: 3688 +employeeType: Employee +homePhone: +1 206 467-6764 +initials: A. T. +mobile: +1 206 559-8557 +pager: +1 206 752-1168 +roomNumber: 9160 +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Phaedra Criswell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phaedra Criswell +sn: Criswell +description: This is Phaedra Criswell's description +facsimileTelephoneNumber: +1 206 797-4250 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 206 150-1000 +title: Chief Payroll Developer +userPassword: Password1 +uid: CriswelP +givenName: Phaedra +mail: CriswelP@4e6902e8e5bc41b48b78414d1956bb3d.bitwarden.com +carLicense: IN8KG7 +departmentNumber: 4547 +employeeType: Normal +homePhone: +1 206 233-5570 +initials: P. C. +mobile: +1 206 213-6441 +pager: +1 206 886-8872 +roomNumber: 8003 +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peter Dodson +sn: Dodson +description: This is Peter Dodson's description +facsimileTelephoneNumber: +1 206 326-8015 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 841-9951 +title: Chief Peons Stooge +userPassword: Password1 +uid: DodsonP +givenName: Peter +mail: DodsonP@a628382231454e68acb07ae2b6a10a7a.bitwarden.com +carLicense: LPVFUY +departmentNumber: 8290 +employeeType: Contract +homePhone: +1 206 471-2861 +initials: P. D. +mobile: +1 206 834-5120 +pager: +1 206 161-1551 +roomNumber: 8459 +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rhea Brewer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhea Brewer +sn: Brewer +description: This is Rhea Brewer's description +facsimileTelephoneNumber: +1 818 740-5956 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 110-9136 +title: Junior Janitorial Developer +userPassword: Password1 +uid: BrewerR +givenName: Rhea +mail: BrewerR@ba86ce5a5ce74352a483e9becf24707d.bitwarden.com +carLicense: MPRMDG +departmentNumber: 5205 +employeeType: Normal +homePhone: +1 818 580-4009 +initials: R. B. +mobile: +1 818 667-8072 +pager: +1 818 441-7175 +roomNumber: 8643 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Junette Bayno +sn: Bayno +description: This is Junette Bayno's description +facsimileTelephoneNumber: +1 213 455-1523 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 283-6391 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: BaynoJ +givenName: Junette +mail: BaynoJ@8b1fbee81b754d1880f61c509f62094e.bitwarden.com +carLicense: 0QVIBN +departmentNumber: 6741 +employeeType: Contract +homePhone: +1 213 695-3452 +initials: J. B. +mobile: +1 213 504-3469 +pager: +1 213 449-9153 +roomNumber: 8539 +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jonis Innes,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jonis Innes +sn: Innes +description: This is Jonis Innes's description +facsimileTelephoneNumber: +1 804 405-5746 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 565-2523 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: InnesJ +givenName: Jonis +mail: InnesJ@99988a1f6cfe4cd7a9e85e41ec5cdd61.bitwarden.com +carLicense: 5EUMOX +departmentNumber: 6552 +employeeType: Contract +homePhone: +1 804 720-6245 +initials: J. I. +mobile: +1 804 677-4912 +pager: +1 804 904-5728 +roomNumber: 8370 +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Femke Roddick +sn: Roddick +description: This is Femke Roddick's description +facsimileTelephoneNumber: +1 818 243-6605 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 818 115-7218 +title: Master Management Technician +userPassword: Password1 +uid: RoddickF +givenName: Femke +mail: RoddickF@dea3d3c373d64ad7827a6102b58d23cd.bitwarden.com +carLicense: IL2336 +departmentNumber: 7442 +employeeType: Normal +homePhone: +1 818 678-8285 +initials: F. R. +mobile: +1 818 344-9579 +pager: +1 818 973-5532 +roomNumber: 8174 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nanine Psutka,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nanine Psutka +sn: Psutka +description: This is Nanine Psutka's description +facsimileTelephoneNumber: +1 408 876-6666 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 115-6743 +title: Chief Management Consultant +userPassword: Password1 +uid: PsutkaN +givenName: Nanine +mail: PsutkaN@e7504ea4712040488444ef96484ed4da.bitwarden.com +carLicense: LAAQ6R +departmentNumber: 7169 +employeeType: Contract +homePhone: +1 408 907-3384 +initials: N. P. +mobile: +1 408 260-7079 +pager: +1 408 416-3206 +roomNumber: 9461 +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Stergios Koonce,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stergios Koonce +sn: Koonce +description: This is Stergios Koonce's description +facsimileTelephoneNumber: +1 804 626-8684 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 680-6403 +title: Supreme Management Figurehead +userPassword: Password1 +uid: KoonceS +givenName: Stergios +mail: KoonceS@a424c942226a48928880fd6debd4c0c3.bitwarden.com +carLicense: T7T0MK +departmentNumber: 6763 +employeeType: Normal +homePhone: +1 804 656-8445 +initials: S. K. +mobile: +1 804 311-7714 +pager: +1 804 900-7320 +roomNumber: 8206 +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andreana Mahaffee +sn: Mahaffee +description: This is Andreana Mahaffee's description +facsimileTelephoneNumber: +1 818 344-4254 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 430-4223 +title: Associate Human Resources Manager +userPassword: Password1 +uid: MahaffeA +givenName: Andreana +mail: MahaffeA@7d677330ed854492a1b9ebde717a718a.bitwarden.com +carLicense: E6KEQW +departmentNumber: 3193 +employeeType: Contract +homePhone: +1 818 726-9396 +initials: A. M. +mobile: +1 818 785-5801 +pager: +1 818 446-5665 +roomNumber: 9443 +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Moyra Boulay,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moyra Boulay +sn: Boulay +description: This is Moyra Boulay's description +facsimileTelephoneNumber: +1 818 845-3622 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 680-5905 +title: Associate Human Resources Writer +userPassword: Password1 +uid: BoulayM +givenName: Moyra +mail: BoulayM@37715fd42e014d19908e5a2bc34c1623.bitwarden.com +carLicense: QHOCYC +departmentNumber: 9115 +employeeType: Employee +homePhone: +1 818 719-7496 +initials: M. B. +mobile: +1 818 875-4011 +pager: +1 818 201-1212 +roomNumber: 8404 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Door McKerrow +sn: McKerrow +description: This is Door McKerrow's description +facsimileTelephoneNumber: +1 213 394-5685 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 854-5447 +title: Associate Product Testing Czar +userPassword: Password1 +uid: McKerroD +givenName: Door +mail: McKerroD@c4c3b80cbf1b45589053dbe0004de909.bitwarden.com +carLicense: HMKFHG +departmentNumber: 2474 +employeeType: Employee +homePhone: +1 213 136-2245 +initials: D. M. +mobile: +1 213 867-5867 +pager: +1 213 454-2339 +roomNumber: 8735 +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mahmoud Rtpbuild +sn: Rtpbuild +description: This is Mahmoud Rtpbuild's description +facsimileTelephoneNumber: +1 510 702-6627 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 896-8069 +title: Associate Management Madonna +userPassword: Password1 +uid: RtpbuilM +givenName: Mahmoud +mail: RtpbuilM@bd88542b35754611b56bc9f67e5f51df.bitwarden.com +carLicense: KRYRD2 +departmentNumber: 7229 +employeeType: Contract +homePhone: +1 510 739-4835 +initials: M. R. +mobile: +1 510 764-7243 +pager: +1 510 859-4268 +roomNumber: 8967 +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paolina McCaughey +sn: McCaughey +description: This is Paolina McCaughey's description +facsimileTelephoneNumber: +1 408 294-7652 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 904-2147 +title: Associate Management Stooge +userPassword: Password1 +uid: McCaughP +givenName: Paolina +mail: McCaughP@438e70287f6d4d35a04d438ca352f234.bitwarden.com +carLicense: CI11IH +departmentNumber: 7117 +employeeType: Employee +homePhone: +1 408 200-9531 +initials: P. M. +mobile: +1 408 690-8540 +pager: +1 408 322-9735 +roomNumber: 8619 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Greer Metzger,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greer Metzger +sn: Metzger +description: This is Greer Metzger's description +facsimileTelephoneNumber: +1 213 448-7214 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 326-6219 +title: Associate Janitorial Writer +userPassword: Password1 +uid: MetzgerG +givenName: Greer +mail: MetzgerG@5da44ffb6b534c2a8e8e949cd515b1cd.bitwarden.com +carLicense: JKSVQT +departmentNumber: 3039 +employeeType: Contract +homePhone: +1 213 508-1352 +initials: G. M. +mobile: +1 213 208-7608 +pager: +1 213 628-7339 +roomNumber: 8160 +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marlena Boyachek,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlena Boyachek +sn: Boyachek +description: This is Marlena Boyachek's description +facsimileTelephoneNumber: +1 206 373-9089 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 453-8734 +title: Chief Payroll Madonna +userPassword: Password1 +uid: BoyacheM +givenName: Marlena +mail: BoyacheM@b9ba4daba0344711bdffdc5268946fdc.bitwarden.com +carLicense: VAHY8S +departmentNumber: 9430 +employeeType: Employee +homePhone: +1 206 441-7738 +initials: M. B. +mobile: +1 206 350-4977 +pager: +1 206 681-6021 +roomNumber: 9556 +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=LyKhanh Hollbach,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LyKhanh Hollbach +sn: Hollbach +description: This is LyKhanh Hollbach's description +facsimileTelephoneNumber: +1 804 789-7752 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 747-4918 +title: Supreme Management Madonna +userPassword: Password1 +uid: HollbacL +givenName: LyKhanh +mail: HollbacL@ee2b03b1182d458c89ed3ab0221f6486.bitwarden.com +carLicense: UB6RAQ +departmentNumber: 8407 +employeeType: Normal +homePhone: +1 804 189-9294 +initials: L. H. +mobile: +1 804 738-8475 +pager: +1 804 976-4624 +roomNumber: 8979 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariejeanne Goos +sn: Goos +description: This is Mariejeanne Goos's description +facsimileTelephoneNumber: +1 804 616-8923 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 804 206-9706 +title: Supreme Janitorial Punk +userPassword: Password1 +uid: GoosM +givenName: Mariejeanne +mail: GoosM@f414860515324b3cad4d00dd4f44cc65.bitwarden.com +carLicense: 1OMTL7 +departmentNumber: 6681 +employeeType: Employee +homePhone: +1 804 302-5920 +initials: M. G. +mobile: +1 804 857-2341 +pager: +1 804 736-5755 +roomNumber: 8724 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rosana Wendling,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosana Wendling +sn: Wendling +description: This is Rosana Wendling's description +facsimileTelephoneNumber: +1 804 531-1960 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 804 549-7264 +title: Associate Product Development Technician +userPassword: Password1 +uid: WendlinR +givenName: Rosana +mail: WendlinR@503493165e34480591885ddd3a12206f.bitwarden.com +carLicense: FI4YJ7 +departmentNumber: 3175 +employeeType: Normal +homePhone: +1 804 495-8463 +initials: R. W. +mobile: +1 804 914-8023 +pager: +1 804 695-1911 +roomNumber: 9806 +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eve StVil,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eve StVil +sn: StVil +description: This is Eve StVil's description +facsimileTelephoneNumber: +1 206 908-3981 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 994-2370 +title: Junior Payroll Mascot +userPassword: Password1 +uid: StVilE +givenName: Eve +mail: StVilE@775db391b36843f3b6967be5112cd7c8.bitwarden.com +carLicense: HH06S6 +departmentNumber: 6456 +employeeType: Normal +homePhone: +1 206 361-9201 +initials: E. S. +mobile: +1 206 777-3792 +pager: +1 206 947-8232 +roomNumber: 9105 +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=GuoQiang Hagen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: GuoQiang Hagen +sn: Hagen +description: This is GuoQiang Hagen's description +facsimileTelephoneNumber: +1 510 625-6729 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 780-2463 +title: Associate Peons Stooge +userPassword: Password1 +uid: HagenG +givenName: GuoQiang +mail: HagenG@c7a2f477472645bf848fd46eb4fcb7eb.bitwarden.com +carLicense: XYQVG7 +departmentNumber: 2804 +employeeType: Contract +homePhone: +1 510 154-3230 +initials: G. H. +mobile: +1 510 254-7983 +pager: +1 510 393-8997 +roomNumber: 8959 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lsiunix Brooks +sn: Brooks +description: This is Lsiunix Brooks's description +facsimileTelephoneNumber: +1 818 473-3004 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 528-4810 +title: Chief Administrative Janitor +userPassword: Password1 +uid: BrooksL +givenName: Lsiunix +mail: BrooksL@804b9151f1ba415a894983275163dae1.bitwarden.com +carLicense: K4OW12 +departmentNumber: 7496 +employeeType: Contract +homePhone: +1 818 408-8855 +initials: L. B. +mobile: +1 818 405-3717 +pager: +1 818 656-3091 +roomNumber: 8536 +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorella Golczewski +sn: Golczewski +description: This is Dorella Golczewski's description +facsimileTelephoneNumber: +1 206 837-6595 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 852-3709 +title: Chief Payroll Assistant +userPassword: Password1 +uid: GolczewD +givenName: Dorella +mail: GolczewD@a04d0222f0c24ad6848955600bad7ace.bitwarden.com +carLicense: CF8YXX +departmentNumber: 7104 +employeeType: Contract +homePhone: +1 206 273-3085 +initials: D. G. +mobile: +1 206 121-5552 +pager: +1 206 720-4974 +roomNumber: 9816 +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Clarette Stokes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarette Stokes +sn: Stokes +description: This is Clarette Stokes's description +facsimileTelephoneNumber: +1 415 764-4880 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 833-3211 +title: Master Product Testing President +userPassword: Password1 +uid: StokesC +givenName: Clarette +mail: StokesC@a9155ee13aea4c5eb8fee4736f83eac6.bitwarden.com +carLicense: HASSV1 +departmentNumber: 6131 +employeeType: Contract +homePhone: +1 415 135-1820 +initials: C. S. +mobile: +1 415 816-4631 +pager: +1 415 395-9828 +roomNumber: 8255 +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrilla Wyllie +sn: Wyllie +description: This is Myrilla Wyllie's description +facsimileTelephoneNumber: +1 206 945-5393 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 438-9734 +title: Associate Payroll Stooge +userPassword: Password1 +uid: WyllieM +givenName: Myrilla +mail: WyllieM@e4fc7058a5874f7d8c9c45b862065a64.bitwarden.com +carLicense: EE4I2J +departmentNumber: 2540 +employeeType: Normal +homePhone: +1 206 620-5244 +initials: M. W. +mobile: +1 206 669-1282 +pager: +1 206 154-4235 +roomNumber: 8462 +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vincenzo Yarosh +sn: Yarosh +description: This is Vincenzo Yarosh's description +facsimileTelephoneNumber: +1 510 138-3977 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 845-1927 +title: Chief Payroll Fellow +userPassword: Password1 +uid: YaroshV +givenName: Vincenzo +mail: YaroshV@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com +carLicense: V09BGC +departmentNumber: 1851 +employeeType: Contract +homePhone: +1 510 747-7187 +initials: V. Y. +mobile: +1 510 162-8091 +pager: +1 510 630-5591 +roomNumber: 8599 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mo Barsch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mo Barsch +sn: Barsch +description: This is Mo Barsch's description +facsimileTelephoneNumber: +1 804 391-3034 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 804 328-7600 +title: Master Janitorial Czar +userPassword: Password1 +uid: BarschM +givenName: Mo +mail: BarschM@70ae4897e890467abad1e75edafff103.bitwarden.com +carLicense: B0QKIE +departmentNumber: 8377 +employeeType: Employee +homePhone: +1 804 332-2058 +initials: M. B. +mobile: +1 804 579-2857 +pager: +1 804 389-1175 +roomNumber: 9043 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Janos Running,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janos Running +sn: Running +description: This is Janos Running's description +facsimileTelephoneNumber: +1 818 236-5990 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 797-9391 +title: Junior Product Testing Director +userPassword: Password1 +uid: RunningJ +givenName: Janos +mail: RunningJ@0d7e83c0e7e042119673bb3ec0e8332f.bitwarden.com +carLicense: I5II19 +departmentNumber: 3295 +employeeType: Normal +homePhone: +1 818 266-4355 +initials: J. R. +mobile: +1 818 822-2629 +pager: +1 818 397-1098 +roomNumber: 9651 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hanco Epstein,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanco Epstein +sn: Epstein +description: This is Hanco Epstein's description +facsimileTelephoneNumber: +1 415 616-4767 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 783-7645 +title: Associate Payroll Writer +userPassword: Password1 +uid: EpsteinH +givenName: Hanco +mail: EpsteinH@6b7e5105ccc94f1f8fda16b3cc882538.bitwarden.com +carLicense: DRODGD +departmentNumber: 6368 +employeeType: Normal +homePhone: +1 415 198-4554 +initials: H. E. +mobile: +1 415 382-4911 +pager: +1 415 681-8168 +roomNumber: 8418 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maylynn Dolginoff +sn: Dolginoff +description: This is Maylynn Dolginoff's description +facsimileTelephoneNumber: +1 206 706-2358 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 206 686-3423 +title: Associate Product Development Grunt +userPassword: Password1 +uid: DolginoM +givenName: Maylynn +mail: DolginoM@c0ccbcc04bb9406b99bd8cec081542a2.bitwarden.com +carLicense: 1FTFJM +departmentNumber: 8990 +employeeType: Employee +homePhone: +1 206 253-1207 +initials: M. D. +mobile: +1 206 345-5713 +pager: +1 206 863-9371 +roomNumber: 9025 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daisie Solman +sn: Solman +description: This is Daisie Solman's description +facsimileTelephoneNumber: +1 804 570-2813 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 892-6981 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: SolmanD +givenName: Daisie +mail: SolmanD@86d24a798dce4653a3b75c56ae675864.bitwarden.com +carLicense: 3ABE1A +departmentNumber: 8194 +employeeType: Contract +homePhone: +1 804 168-6760 +initials: D. S. +mobile: +1 804 621-6134 +pager: +1 804 160-3665 +roomNumber: 8517 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nachum Biard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nachum Biard +sn: Biard +description: This is Nachum Biard's description +facsimileTelephoneNumber: +1 818 500-3243 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 556-9773 +title: Chief Management Artist +userPassword: Password1 +uid: BiardN +givenName: Nachum +mail: BiardN@2a9fef67c2a84062aa431a97e4e79582.bitwarden.com +carLicense: 9OJQ7W +departmentNumber: 6315 +employeeType: Contract +homePhone: +1 818 897-1781 +initials: N. B. +mobile: +1 818 721-2594 +pager: +1 818 717-2407 +roomNumber: 9642 +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Essy Goyal,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Essy Goyal +sn: Goyal +description: This is Essy Goyal's description +facsimileTelephoneNumber: +1 206 860-7133 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 376-3305 +title: Associate Product Development Warrior +userPassword: Password1 +uid: GoyalE +givenName: Essy +mail: GoyalE@077838522ab04e7fa5ae528e1ed00284.bitwarden.com +carLicense: J4WQ4U +departmentNumber: 3705 +employeeType: Employee +homePhone: +1 206 831-7434 +initials: E. G. +mobile: +1 206 262-9112 +pager: +1 206 743-7141 +roomNumber: 9806 +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorie Sehmbey +sn: Sehmbey +description: This is Lorie Sehmbey's description +facsimileTelephoneNumber: +1 510 348-3001 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 510 221-1866 +title: Chief Peons Figurehead +userPassword: Password1 +uid: SehmbeyL +givenName: Lorie +mail: SehmbeyL@b549d25d2e83426ba75b6cd3682958b0.bitwarden.com +carLicense: 510424 +departmentNumber: 2081 +employeeType: Normal +homePhone: +1 510 651-1878 +initials: L. S. +mobile: +1 510 390-5532 +pager: +1 510 313-4432 +roomNumber: 8209 +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Armelle Schwane,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Armelle Schwane +sn: Schwane +description: This is Armelle Schwane's description +facsimileTelephoneNumber: +1 804 220-2992 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 804 849-7500 +title: Master Human Resources Technician +userPassword: Password1 +uid: SchwaneA +givenName: Armelle +mail: SchwaneA@142c4cd6004348ef8f83b6439314cf24.bitwarden.com +carLicense: OXP9TK +departmentNumber: 9552 +employeeType: Contract +homePhone: +1 804 673-6998 +initials: A. S. +mobile: +1 804 675-2092 +pager: +1 804 724-9132 +roomNumber: 8671 +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brietta Plato,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brietta Plato +sn: Plato +description: This is Brietta Plato's description +facsimileTelephoneNumber: +1 213 976-1648 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 218-4592 +title: Supreme Product Testing Vice President +userPassword: Password1 +uid: PlatoB +givenName: Brietta +mail: PlatoB@d494db8e881541faa9bd79d54aee6c6c.bitwarden.com +carLicense: ELI6S7 +departmentNumber: 6306 +employeeType: Normal +homePhone: +1 213 558-7037 +initials: B. P. +mobile: +1 213 756-5637 +pager: +1 213 852-4110 +roomNumber: 9023 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lebbie Dragan +sn: Dragan +description: This is Lebbie Dragan's description +facsimileTelephoneNumber: +1 408 240-5208 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 833-9277 +title: Chief Human Resources Consultant +userPassword: Password1 +uid: DraganL +givenName: Lebbie +mail: DraganL@c4fa2184e3754d1f80f7d5580d9d94a2.bitwarden.com +carLicense: J186NA +departmentNumber: 6358 +employeeType: Normal +homePhone: +1 408 391-2177 +initials: L. D. +mobile: +1 408 623-8525 +pager: +1 408 329-1656 +roomNumber: 9920 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HooiLee Olivares +sn: Olivares +description: This is HooiLee Olivares's description +facsimileTelephoneNumber: +1 408 189-6648 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 138-7391 +title: Supreme Product Testing Manager +userPassword: Password1 +uid: OlivareH +givenName: HooiLee +mail: OlivareH@dbc48514ad4f4049ab1d92515eab342e.bitwarden.com +carLicense: 20LJYE +departmentNumber: 2686 +employeeType: Contract +homePhone: +1 408 767-3425 +initials: H. O. +mobile: +1 408 901-9148 +pager: +1 408 848-5153 +roomNumber: 9091 +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nolana Hedman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nolana Hedman +sn: Hedman +description: This is Nolana Hedman's description +facsimileTelephoneNumber: +1 408 276-7686 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 422-2472 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: HedmanN +givenName: Nolana +mail: HedmanN@12d826ce1ce0413184a7ed1f22160fef.bitwarden.com +carLicense: 26UNIA +departmentNumber: 4609 +employeeType: Employee +homePhone: +1 408 698-3652 +initials: N. H. +mobile: +1 408 543-5939 +pager: +1 408 510-5815 +roomNumber: 8456 +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zenia Hilwa,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zenia Hilwa +sn: Hilwa +description: This is Zenia Hilwa's description +facsimileTelephoneNumber: +1 213 567-6518 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 960-2788 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: HilwaZ +givenName: Zenia +mail: HilwaZ@e8b42fe4709142ccb9521fb60b9c2535.bitwarden.com +carLicense: UGE8QS +departmentNumber: 8500 +employeeType: Employee +homePhone: +1 213 229-6117 +initials: Z. H. +mobile: +1 213 665-7949 +pager: +1 213 794-5331 +roomNumber: 8714 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Souphalack Delong +sn: Delong +description: This is Souphalack Delong's description +facsimileTelephoneNumber: +1 818 620-3760 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 177-7714 +title: Associate Product Development Fellow +userPassword: Password1 +uid: DelongS +givenName: Souphalack +mail: DelongS@ed09d6145c6443eda98f0394646537ec.bitwarden.com +carLicense: 5J5YY2 +departmentNumber: 6501 +employeeType: Normal +homePhone: +1 818 380-9043 +initials: S. D. +mobile: +1 818 392-6761 +pager: +1 818 878-5066 +roomNumber: 8757 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com + +dn: cn=Robbie Dibler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robbie Dibler +sn: Dibler +description: This is Robbie Dibler's description +facsimileTelephoneNumber: +1 415 496-3323 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 711-2200 +title: Chief Product Testing Director +userPassword: Password1 +uid: DiblerR +givenName: Robbie +mail: DiblerR@45083f5b369b49bba6dba6e41ec7e2f6.bitwarden.com +carLicense: DXBFPP +departmentNumber: 8415 +employeeType: Employee +homePhone: +1 415 259-5363 +initials: R. D. +mobile: +1 415 689-9985 +pager: +1 415 390-9552 +roomNumber: 9476 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eimile Azzuolo +sn: Azzuolo +description: This is Eimile Azzuolo's description +facsimileTelephoneNumber: +1 213 345-5655 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 286-4575 +title: Master Administrative Artist +userPassword: Password1 +uid: AzzuoloE +givenName: Eimile +mail: AzzuoloE@825450a5303e4ddbb87fc29d54b883c1.bitwarden.com +carLicense: NYMJYL +departmentNumber: 5886 +employeeType: Contract +homePhone: +1 213 761-1430 +initials: E. A. +mobile: +1 213 586-5127 +pager: +1 213 514-4063 +roomNumber: 9576 +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Biddie Tedrick,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Biddie Tedrick +sn: Tedrick +description: This is Biddie Tedrick's description +facsimileTelephoneNumber: +1 804 952-5910 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 982-8530 +title: Junior Product Development Dictator +userPassword: Password1 +uid: TedrickB +givenName: Biddie +mail: TedrickB@a98d6363773e4de690c703d6d6786140.bitwarden.com +carLicense: XMXLTT +departmentNumber: 3882 +employeeType: Contract +homePhone: +1 804 900-9137 +initials: B. T. +mobile: +1 804 328-2651 +pager: +1 804 538-3259 +roomNumber: 9688 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gracia Peluso,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gracia Peluso +sn: Peluso +description: This is Gracia Peluso's description +facsimileTelephoneNumber: +1 415 924-7467 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 256-5178 +title: Master Payroll Manager +userPassword: Password1 +uid: PelusoG +givenName: Gracia +mail: PelusoG@8c3513194f7b4d468cf6b129b14b72f5.bitwarden.com +carLicense: CW5CQQ +departmentNumber: 6302 +employeeType: Employee +homePhone: +1 415 374-3027 +initials: G. P. +mobile: +1 415 434-6558 +pager: +1 415 170-5344 +roomNumber: 9243 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sanja Maxey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanja Maxey +sn: Maxey +description: This is Sanja Maxey's description +facsimileTelephoneNumber: +1 818 342-4916 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 284-7927 +title: Chief Product Development Engineer +userPassword: Password1 +uid: MaxeyS +givenName: Sanja +mail: MaxeyS@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com +carLicense: 8R1F8T +departmentNumber: 3309 +employeeType: Normal +homePhone: +1 818 948-4978 +initials: S. M. +mobile: +1 818 234-4918 +pager: +1 818 644-4808 +roomNumber: 8429 +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Petronella Tullius,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petronella Tullius +sn: Tullius +description: This is Petronella Tullius's description +facsimileTelephoneNumber: +1 510 673-9547 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 899-3505 +title: Supreme Payroll Admin +userPassword: Password1 +uid: TulliusP +givenName: Petronella +mail: TulliusP@35aa710455a54ec9aacb0743a9cce4e9.bitwarden.com +carLicense: 4K7VEP +departmentNumber: 1268 +employeeType: Normal +homePhone: +1 510 231-1441 +initials: P. T. +mobile: +1 510 995-8785 +pager: +1 510 359-8214 +roomNumber: 9107 +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Henrie Lorint,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henrie Lorint +sn: Lorint +description: This is Henrie Lorint's description +facsimileTelephoneNumber: +1 213 611-9669 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 304-4527 +title: Junior Product Development Czar +userPassword: Password1 +uid: LorintH +givenName: Henrie +mail: LorintH@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com +carLicense: W9LRQE +departmentNumber: 2746 +employeeType: Contract +homePhone: +1 213 897-3986 +initials: H. L. +mobile: +1 213 537-4075 +pager: +1 213 661-2974 +roomNumber: 8592 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaylee Spilchak +sn: Spilchak +description: This is Kaylee Spilchak's description +facsimileTelephoneNumber: +1 510 614-5230 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 888-6565 +title: Supreme Payroll Madonna +userPassword: Password1 +uid: SpilchaK +givenName: Kaylee +mail: SpilchaK@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com +carLicense: 2OWQ7U +departmentNumber: 7138 +employeeType: Contract +homePhone: +1 510 983-2286 +initials: K. S. +mobile: +1 510 837-7269 +pager: +1 510 437-9910 +roomNumber: 9461 +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Donnette Kruger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donnette Kruger +sn: Kruger +description: This is Donnette Kruger's description +facsimileTelephoneNumber: +1 408 826-8284 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 945-1519 +title: Supreme Peons Artist +userPassword: Password1 +uid: KrugerD +givenName: Donnette +mail: KrugerD@e5c90ecebea1435c996209dde46c0296.bitwarden.com +carLicense: R1L3OC +departmentNumber: 4829 +employeeType: Normal +homePhone: +1 408 776-9215 +initials: D. K. +mobile: +1 408 486-5528 +pager: +1 408 962-9574 +roomNumber: 8826 +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Delle Schwantes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delle Schwantes +sn: Schwantes +description: This is Delle Schwantes's description +facsimileTelephoneNumber: +1 206 426-8611 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 924-1063 +title: Chief Product Testing President +userPassword: Password1 +uid: SchwantD +givenName: Delle +mail: SchwantD@d1c16d58dcf54061b0da81b1943ffc50.bitwarden.com +carLicense: 4X1B2H +departmentNumber: 8934 +employeeType: Employee +homePhone: +1 206 566-4998 +initials: D. S. +mobile: +1 206 865-3314 +pager: +1 206 904-9753 +roomNumber: 8923 +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hyacinthie Brannan +sn: Brannan +description: This is Hyacinthie Brannan's description +facsimileTelephoneNumber: +1 804 476-7886 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 268-6184 +title: Chief Peons Janitor +userPassword: Password1 +uid: BrannanH +givenName: Hyacinthie +mail: BrannanH@71f5b0be2e4a45d1a4579d7977668bec.bitwarden.com +carLicense: P00O2G +departmentNumber: 7244 +employeeType: Contract +homePhone: +1 804 500-3057 +initials: H. B. +mobile: +1 804 923-4706 +pager: +1 804 271-8624 +roomNumber: 9832 +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Print Gaitan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Print Gaitan +sn: Gaitan +description: This is Print Gaitan's description +facsimileTelephoneNumber: +1 415 553-6657 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 927-1467 +title: Junior Administrative Madonna +userPassword: Password1 +uid: GaitanP +givenName: Print +mail: GaitanP@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com +carLicense: W613E7 +departmentNumber: 8548 +employeeType: Employee +homePhone: +1 415 721-2210 +initials: P. G. +mobile: +1 415 293-6990 +pager: +1 415 707-1603 +roomNumber: 8073 +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Patsy Mattiussi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patsy Mattiussi +sn: Mattiussi +description: This is Patsy Mattiussi's description +facsimileTelephoneNumber: +1 415 509-3936 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 773-6685 +title: Associate Management Sales Rep +userPassword: Password1 +uid: MattiusP +givenName: Patsy +mail: MattiusP@acd445bf65f54e4ebe350927dbe3e51f.bitwarden.com +carLicense: SQF2TJ +departmentNumber: 6840 +employeeType: Normal +homePhone: +1 415 303-8138 +initials: P. M. +mobile: +1 415 790-1999 +pager: +1 415 108-5980 +roomNumber: 8914 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Phil Afkham,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phil Afkham +sn: Afkham +description: This is Phil Afkham's description +facsimileTelephoneNumber: +1 804 452-3039 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 983-7081 +title: Master Administrative Assistant +userPassword: Password1 +uid: AfkhamP +givenName: Phil +mail: AfkhamP@ea3044bbf20e4e989696a49bb606f948.bitwarden.com +carLicense: 7HY30U +departmentNumber: 3879 +employeeType: Employee +homePhone: +1 804 384-8616 +initials: P. A. +mobile: +1 804 140-3597 +pager: +1 804 540-6411 +roomNumber: 9058 +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheldon Blatt +sn: Blatt +description: This is Sheldon Blatt's description +facsimileTelephoneNumber: +1 818 689-6925 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 627-5455 +title: Chief Peons Dictator +userPassword: Password1 +uid: BlattS +givenName: Sheldon +mail: BlattS@b2fc4afe69c5444b8fa5daf60bf297fa.bitwarden.com +carLicense: 9BHWS7 +departmentNumber: 1875 +employeeType: Normal +homePhone: +1 818 700-5918 +initials: S. B. +mobile: +1 818 192-3214 +pager: +1 818 576-2064 +roomNumber: 8740 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Netti Pitcavage +sn: Pitcavage +description: This is Netti Pitcavage's description +facsimileTelephoneNumber: +1 415 271-7591 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 964-9582 +title: Junior Janitorial Artist +userPassword: Password1 +uid: PitcavaN +givenName: Netti +mail: PitcavaN@f945ede1d0be465895cf3f38663266a7.bitwarden.com +carLicense: S9149W +departmentNumber: 8938 +employeeType: Normal +homePhone: +1 415 938-7829 +initials: N. P. +mobile: +1 415 747-4797 +pager: +1 415 455-5469 +roomNumber: 8649 +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oryal Raschig +sn: Raschig +description: This is Oryal Raschig's description +facsimileTelephoneNumber: +1 408 780-4310 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 722-7334 +title: Chief Product Testing Architect +userPassword: Password1 +uid: RaschigO +givenName: Oryal +mail: RaschigO@1f0f559b444d45e3b1fe4488d0fe440e.bitwarden.com +carLicense: YNHSOT +departmentNumber: 6794 +employeeType: Contract +homePhone: +1 408 117-5487 +initials: O. R. +mobile: +1 408 669-4153 +pager: +1 408 214-6489 +roomNumber: 9103 +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hector Manus +sn: Manus +description: This is Hector Manus's description +facsimileTelephoneNumber: +1 213 777-1217 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 213 916-2656 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: ManusH +givenName: Hector +mail: ManusH@52db00da846a4ecd950665d8955a7231.bitwarden.com +carLicense: VRJKPJ +departmentNumber: 3359 +employeeType: Normal +homePhone: +1 213 926-3809 +initials: H. M. +mobile: +1 213 399-5007 +pager: +1 213 728-8667 +roomNumber: 8835 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Pollyanna Goza,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pollyanna Goza +sn: Goza +description: This is Pollyanna Goza's description +facsimileTelephoneNumber: +1 804 839-7187 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 804 477-1879 +title: Associate Payroll Consultant +userPassword: Password1 +uid: GozaP +givenName: Pollyanna +mail: GozaP@6b986c50e43742ad9f5c4c157dff0f70.bitwarden.com +carLicense: BYSTHF +departmentNumber: 6010 +employeeType: Contract +homePhone: +1 804 302-6747 +initials: P. G. +mobile: +1 804 774-7090 +pager: +1 804 616-2689 +roomNumber: 9959 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Koren Penner,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koren Penner +sn: Penner +description: This is Koren Penner's description +facsimileTelephoneNumber: +1 408 210-8833 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 302-2779 +title: Supreme Payroll Assistant +userPassword: Password1 +uid: PennerK +givenName: Koren +mail: PennerK@bc86e63e2935428fbf0579fffe710ad0.bitwarden.com +carLicense: EY0Q9D +departmentNumber: 7572 +employeeType: Normal +homePhone: +1 408 880-6715 +initials: K. P. +mobile: +1 408 410-3036 +pager: +1 408 452-4051 +roomNumber: 8937 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Iteke Wiedman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Iteke Wiedman +sn: Wiedman +description: This is Iteke Wiedman's description +facsimileTelephoneNumber: +1 213 713-5696 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 820-5629 +title: Junior Management Czar +userPassword: Password1 +uid: WiedmanI +givenName: Iteke +mail: WiedmanI@63d6d6335a55425b90628af92fedefa5.bitwarden.com +carLicense: UQS068 +departmentNumber: 1890 +employeeType: Employee +homePhone: +1 213 370-5519 +initials: I. W. +mobile: +1 213 238-4359 +pager: +1 213 569-4062 +roomNumber: 8982 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Darrelle StJohn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrelle StJohn +sn: StJohn +description: This is Darrelle StJohn's description +facsimileTelephoneNumber: +1 415 685-6703 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 747-2396 +title: Supreme Product Development Czar +userPassword: Password1 +uid: StJohnD +givenName: Darrelle +mail: StJohnD@83e659b7a46148c68a7895067104477c.bitwarden.com +carLicense: LC5BFW +departmentNumber: 7423 +employeeType: Contract +homePhone: +1 415 803-6528 +initials: D. S. +mobile: +1 415 331-5889 +pager: +1 415 301-2811 +roomNumber: 9698 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kazuhito Schram,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazuhito Schram +sn: Schram +description: This is Kazuhito Schram's description +facsimileTelephoneNumber: +1 206 629-9847 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 437-2196 +title: Associate Peons Janitor +userPassword: Password1 +uid: SchramK +givenName: Kazuhito +mail: SchramK@35963b7e4db249a890418c98f5c7f6fe.bitwarden.com +carLicense: DWON8B +departmentNumber: 7562 +employeeType: Normal +homePhone: +1 206 822-2342 +initials: K. S. +mobile: +1 206 314-1213 +pager: +1 206 191-8718 +roomNumber: 9251 +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emelyne Hickman +sn: Hickman +description: This is Emelyne Hickman's description +facsimileTelephoneNumber: +1 206 589-3897 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 341-2252 +title: Junior Product Testing Evangelist +userPassword: Password1 +uid: HickmanE +givenName: Emelyne +mail: HickmanE@848a5e9ff7e64339b3d7fd8820b74e23.bitwarden.com +carLicense: I1FGSE +departmentNumber: 5165 +employeeType: Normal +homePhone: +1 206 211-3511 +initials: E. H. +mobile: +1 206 508-8058 +pager: +1 206 480-8567 +roomNumber: 9612 +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirene Eaves +sn: Eaves +description: This is Shirene Eaves's description +facsimileTelephoneNumber: +1 206 516-9773 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 356-2956 +title: Master Product Development Artist +userPassword: Password1 +uid: EavesS +givenName: Shirene +mail: EavesS@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com +carLicense: HK8NIS +departmentNumber: 3972 +employeeType: Employee +homePhone: +1 206 659-1986 +initials: S. E. +mobile: +1 206 499-1436 +pager: +1 206 949-4588 +roomNumber: 8127 +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Desiree Southon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desiree Southon +sn: Southon +description: This is Desiree Southon's description +facsimileTelephoneNumber: +1 415 736-8804 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 311-9062 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: SouthonD +givenName: Desiree +mail: SouthonD@068a0b6470f0444b9815d3ef36001ebd.bitwarden.com +carLicense: 8SP4CU +departmentNumber: 7183 +employeeType: Employee +homePhone: +1 415 243-5712 +initials: D. S. +mobile: +1 415 263-8053 +pager: +1 415 788-8011 +roomNumber: 9540 +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lianna Lackie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lianna Lackie +sn: Lackie +description: This is Lianna Lackie's description +facsimileTelephoneNumber: +1 206 124-3191 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 955-3793 +title: Junior Peons Fellow +userPassword: Password1 +uid: LackieL +givenName: Lianna +mail: LackieL@965c6793f8bb43c9b546fbac1da94494.bitwarden.com +carLicense: NO37XA +departmentNumber: 9388 +employeeType: Normal +homePhone: +1 206 192-1233 +initials: L. L. +mobile: +1 206 905-6393 +pager: +1 206 127-2897 +roomNumber: 9490 +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Misti Sayed,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Misti Sayed +sn: Sayed +description: This is Misti Sayed's description +facsimileTelephoneNumber: +1 213 295-8311 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 824-6626 +title: Supreme Management Warrior +userPassword: Password1 +uid: SayedM +givenName: Misti +mail: SayedM@9520af3454cc4edd8a0c750979c8a5ba.bitwarden.com +carLicense: Q7KHAS +departmentNumber: 1874 +employeeType: Normal +homePhone: +1 213 705-4197 +initials: M. S. +mobile: +1 213 131-8347 +pager: +1 213 272-4635 +roomNumber: 8681 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kartik Calmejane +sn: Calmejane +description: This is Kartik Calmejane's description +facsimileTelephoneNumber: +1 818 136-1973 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 935-4737 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: CalmejaK +givenName: Kartik +mail: CalmejaK@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com +carLicense: I6S4UV +departmentNumber: 6194 +employeeType: Contract +homePhone: +1 818 588-3652 +initials: K. C. +mobile: +1 818 569-9279 +pager: +1 818 797-2383 +roomNumber: 9871 +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dione McCain,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dione McCain +sn: McCain +description: This is Dione McCain's description +facsimileTelephoneNumber: +1 415 605-8901 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 627-3559 +title: Associate Peons Artist +userPassword: Password1 +uid: McCainD +givenName: Dione +mail: McCainD@9bcba57fcf5a4e57996fd300e4b639aa.bitwarden.com +carLicense: D8O8IF +departmentNumber: 2073 +employeeType: Employee +homePhone: +1 415 215-1172 +initials: D. M. +mobile: +1 415 781-3831 +pager: +1 415 254-1777 +roomNumber: 9214 +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Deny Stasiak,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deny Stasiak +sn: Stasiak +description: This is Deny Stasiak's description +facsimileTelephoneNumber: +1 415 553-1130 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 140-9244 +title: Chief Management Vice President +userPassword: Password1 +uid: StasiakD +givenName: Deny +mail: StasiakD@00134d4d1d4e4011b58c753077077cfb.bitwarden.com +carLicense: 91KU1U +departmentNumber: 8229 +employeeType: Normal +homePhone: +1 415 246-8798 +initials: D. S. +mobile: +1 415 305-7479 +pager: +1 415 680-1978 +roomNumber: 9036 +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aindrea Kavis +sn: Kavis +description: This is Aindrea Kavis's description +facsimileTelephoneNumber: +1 408 931-6638 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 528-9662 +title: Master Janitorial Warrior +userPassword: Password1 +uid: KavisA +givenName: Aindrea +mail: KavisA@0eff01dc47b3434da343723db4d36d91.bitwarden.com +carLicense: EOX16G +departmentNumber: 2170 +employeeType: Contract +homePhone: +1 408 638-4793 +initials: A. K. +mobile: +1 408 225-1775 +pager: +1 408 880-3183 +roomNumber: 9787 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ladell Butvich,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ladell Butvich +sn: Butvich +description: This is Ladell Butvich's description +facsimileTelephoneNumber: +1 804 382-3771 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 455-9420 +title: Master Management President +userPassword: Password1 +uid: ButvichL +givenName: Ladell +mail: ButvichL@baf2ad01dd2145308a21b27aa982b3f0.bitwarden.com +carLicense: 8A1TTB +departmentNumber: 7137 +employeeType: Contract +homePhone: +1 804 813-2220 +initials: L. B. +mobile: +1 804 398-9401 +pager: +1 804 116-8167 +roomNumber: 8215 +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Loralyn Eller,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loralyn Eller +sn: Eller +description: This is Loralyn Eller's description +facsimileTelephoneNumber: +1 213 125-1899 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 850-9482 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: EllerL +givenName: Loralyn +mail: EllerL@15a73f4bf1a344b28ac5394e2a720618.bitwarden.com +carLicense: XECOJ8 +departmentNumber: 9039 +employeeType: Employee +homePhone: +1 213 541-2910 +initials: L. E. +mobile: +1 213 962-5983 +pager: +1 213 102-5213 +roomNumber: 8479 +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vinay Yearwood +sn: Yearwood +description: This is Vinay Yearwood's description +facsimileTelephoneNumber: +1 213 478-1295 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 912-9603 +title: Associate Janitorial Assistant +userPassword: Password1 +uid: YearwooV +givenName: Vinay +mail: YearwooV@22633d68b49a4505af065c4f4eb2af78.bitwarden.com +carLicense: BERWHP +departmentNumber: 3249 +employeeType: Employee +homePhone: +1 213 789-2926 +initials: V. Y. +mobile: +1 213 301-6492 +pager: +1 213 333-8242 +roomNumber: 9592 +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jan Crosson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jan Crosson +sn: Crosson +description: This is Jan Crosson's description +facsimileTelephoneNumber: +1 206 420-1675 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 696-7954 +title: Master Human Resources Engineer +userPassword: Password1 +uid: CrossonJ +givenName: Jan +mail: CrossonJ@ca4bcea8df924ec485a1d77e062859ea.bitwarden.com +carLicense: R76W8T +departmentNumber: 6704 +employeeType: Normal +homePhone: +1 206 222-6807 +initials: J. C. +mobile: +1 206 980-8304 +pager: +1 206 485-4016 +roomNumber: 9919 +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oral Pridgen +sn: Pridgen +description: This is Oral Pridgen's description +facsimileTelephoneNumber: +1 804 766-1378 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 479-8812 +title: Associate Human Resources Czar +userPassword: Password1 +uid: PridgenO +givenName: Oral +mail: PridgenO@07bbb3f489e64bb6a266eab64608e052.bitwarden.com +carLicense: 106385 +departmentNumber: 7205 +employeeType: Employee +homePhone: +1 804 172-3919 +initials: O. P. +mobile: +1 804 535-6474 +pager: +1 804 789-2485 +roomNumber: 9532 +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Subra Tuttle,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subra Tuttle +sn: Tuttle +description: This is Subra Tuttle's description +facsimileTelephoneNumber: +1 206 459-5483 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 452-4900 +title: Supreme Payroll Assistant +userPassword: Password1 +uid: TuttleS +givenName: Subra +mail: TuttleS@d3deba7943134e29a9162d65f8af2a8d.bitwarden.com +carLicense: OB69E1 +departmentNumber: 1690 +employeeType: Normal +homePhone: +1 206 595-4783 +initials: S. T. +mobile: +1 206 180-9694 +pager: +1 206 799-4963 +roomNumber: 8331 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Teruko Fleischer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teruko Fleischer +sn: Fleischer +description: This is Teruko Fleischer's description +facsimileTelephoneNumber: +1 804 593-3664 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 962-7692 +title: Master Product Development Writer +userPassword: Password1 +uid: FleischT +givenName: Teruko +mail: FleischT@db5bfc481c624386b635ec1638ed585f.bitwarden.com +carLicense: PV9A88 +departmentNumber: 4990 +employeeType: Employee +homePhone: +1 804 837-5393 +initials: T. F. +mobile: +1 804 657-8518 +pager: +1 804 236-4121 +roomNumber: 9693 +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelbi Schiefer +sn: Schiefer +description: This is Shelbi Schiefer's description +facsimileTelephoneNumber: +1 415 629-4092 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 388-3498 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: SchiefeS +givenName: Shelbi +mail: SchiefeS@51c65dec05994f879d2a718e7f7237a9.bitwarden.com +carLicense: FC524M +departmentNumber: 1207 +employeeType: Contract +homePhone: +1 415 918-1180 +initials: S. S. +mobile: +1 415 131-2158 +pager: +1 415 506-1795 +roomNumber: 8638 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Quintina Ying,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quintina Ying +sn: Ying +description: This is Quintina Ying's description +facsimileTelephoneNumber: +1 415 362-1171 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 148-9766 +title: Master Product Testing Fellow +userPassword: Password1 +uid: YingQ +givenName: Quintina +mail: YingQ@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com +carLicense: 75N23O +departmentNumber: 5793 +employeeType: Employee +homePhone: +1 415 100-5418 +initials: Q. Y. +mobile: +1 415 716-4289 +pager: +1 415 284-7154 +roomNumber: 8137 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nerti StJames,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nerti StJames +sn: StJames +description: This is Nerti StJames's description +facsimileTelephoneNumber: +1 415 255-3201 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 160-1665 +title: Chief Administrative Director +userPassword: Password1 +uid: StJamesN +givenName: Nerti +mail: StJamesN@c7693ecd6d0049638df22f6d2f6641d3.bitwarden.com +carLicense: 5ELGCO +departmentNumber: 9837 +employeeType: Contract +homePhone: +1 415 313-5823 +initials: N. S. +mobile: +1 415 451-8606 +pager: +1 415 456-5513 +roomNumber: 9918 +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=RongChin Guatto,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: RongChin Guatto +sn: Guatto +description: This is RongChin Guatto's description +facsimileTelephoneNumber: +1 213 870-6564 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 171-5472 +title: Chief Product Development Warrior +userPassword: Password1 +uid: GuattoR +givenName: RongChin +mail: GuattoR@b4fa9c83a97e478e900b988131cc53a7.bitwarden.com +carLicense: 5UC6XL +departmentNumber: 3991 +employeeType: Normal +homePhone: +1 213 258-1627 +initials: R. G. +mobile: +1 213 275-3338 +pager: +1 213 257-5822 +roomNumber: 9094 +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mercer Zattiero,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mercer Zattiero +sn: Zattiero +description: This is Mercer Zattiero's description +facsimileTelephoneNumber: +1 510 858-7414 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 655-8503 +title: Supreme Payroll Technician +userPassword: Password1 +uid: ZattierM +givenName: Mercer +mail: ZattierM@df91f02938d046d8adb3f260f0e722ef.bitwarden.com +carLicense: YS0XYC +departmentNumber: 6125 +employeeType: Employee +homePhone: +1 510 364-3247 +initials: M. Z. +mobile: +1 510 518-3596 +pager: +1 510 314-3011 +roomNumber: 9964 +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Budi Enos,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Budi Enos +sn: Enos +description: This is Budi Enos's description +facsimileTelephoneNumber: +1 510 848-3472 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 817-9930 +title: Junior Product Testing Madonna +userPassword: Password1 +uid: EnosB +givenName: Budi +mail: EnosB@34a3a218f8b144eeb85092195b25ce2c.bitwarden.com +carLicense: 5B1SW5 +departmentNumber: 2295 +employeeType: Normal +homePhone: +1 510 274-5116 +initials: B. E. +mobile: +1 510 464-4501 +pager: +1 510 966-7373 +roomNumber: 8053 +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tuoi Abdou,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tuoi Abdou +sn: Abdou +description: This is Tuoi Abdou's description +facsimileTelephoneNumber: +1 213 937-3788 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 842-4898 +title: Chief Payroll President +userPassword: Password1 +uid: AbdouT +givenName: Tuoi +mail: AbdouT@44ea03cf4294421b92acd6efdd5ace30.bitwarden.com +carLicense: LLKTG0 +departmentNumber: 7702 +employeeType: Normal +homePhone: +1 213 529-5314 +initials: T. A. +mobile: +1 213 552-6496 +pager: +1 213 264-2324 +roomNumber: 9035 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nath Labarge,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nath Labarge +sn: Labarge +description: This is Nath Labarge's description +facsimileTelephoneNumber: +1 804 447-5956 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 526-5504 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: LabargeN +givenName: Nath +mail: LabargeN@331976d3e9d2482b9e23f03ce7111228.bitwarden.com +carLicense: 0X7IO0 +departmentNumber: 2651 +employeeType: Contract +homePhone: +1 804 655-1781 +initials: N. L. +mobile: +1 804 853-7672 +pager: +1 804 683-1509 +roomNumber: 9088 +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sophi McCullogh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sophi McCullogh +sn: McCullogh +description: This is Sophi McCullogh's description +facsimileTelephoneNumber: +1 213 234-8834 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 922-7516 +title: Associate Payroll Vice President +userPassword: Password1 +uid: McCulloS +givenName: Sophi +mail: McCulloS@dd187a873e4c4bb299a3c9194e913cba.bitwarden.com +carLicense: XOWN2J +departmentNumber: 1775 +employeeType: Contract +homePhone: +1 213 427-4468 +initials: S. M. +mobile: +1 213 964-2133 +pager: +1 213 549-6786 +roomNumber: 9306 +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jorry Babineau,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jorry Babineau +sn: Babineau +description: This is Jorry Babineau's description +facsimileTelephoneNumber: +1 213 493-4516 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 213 897-9887 +title: Master Product Development Director +userPassword: Password1 +uid: BabineaJ +givenName: Jorry +mail: BabineaJ@120daee2645049f7b74da97b5abb659d.bitwarden.com +carLicense: XYH4JE +departmentNumber: 1441 +employeeType: Contract +homePhone: +1 213 608-8563 +initials: J. B. +mobile: +1 213 127-5211 +pager: +1 213 358-3133 +roomNumber: 8366 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Adey Fogelson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adey Fogelson +sn: Fogelson +description: This is Adey Fogelson's description +facsimileTelephoneNumber: +1 206 536-2429 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 174-5714 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: FogelsoA +givenName: Adey +mail: FogelsoA@a3cca719b1e44338804967e6cd3716a5.bitwarden.com +carLicense: U12TMF +departmentNumber: 9898 +employeeType: Normal +homePhone: +1 206 799-3720 +initials: A. F. +mobile: +1 206 112-3225 +pager: +1 206 654-8319 +roomNumber: 9755 +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bela Fouillard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bela Fouillard +sn: Fouillard +description: This is Bela Fouillard's description +facsimileTelephoneNumber: +1 818 282-3105 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 435-8863 +title: Supreme Management Consultant +userPassword: Password1 +uid: FouillaB +givenName: Bela +mail: FouillaB@618ad2c22a0a4c09b662c6b5ae8494c7.bitwarden.com +carLicense: 2I7LYR +departmentNumber: 1009 +employeeType: Contract +homePhone: +1 818 417-6072 +initials: B. F. +mobile: +1 818 963-7717 +pager: +1 818 993-7903 +roomNumber: 8405 +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Paola Barbeau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paola Barbeau +sn: Barbeau +description: This is Paola Barbeau's description +facsimileTelephoneNumber: +1 206 737-5382 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 354-9430 +title: Master Payroll Artist +userPassword: Password1 +uid: BarbeauP +givenName: Paola +mail: BarbeauP@40079c706f0f41f9961a4ed47bc17c65.bitwarden.com +carLicense: 2TN6AL +departmentNumber: 2724 +employeeType: Normal +homePhone: +1 206 866-9397 +initials: P. B. +mobile: +1 206 804-3530 +pager: +1 206 915-6435 +roomNumber: 9152 +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorianne McWhinney +sn: McWhinney +description: This is Lorianne McWhinney's description +facsimileTelephoneNumber: +1 510 926-5820 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 510 403-3579 +title: Associate Product Development Punk +userPassword: Password1 +uid: McWhinnL +givenName: Lorianne +mail: McWhinnL@46d0a281aed94fa7a62017174b4b9de9.bitwarden.com +carLicense: U1O8H1 +departmentNumber: 4184 +employeeType: Contract +homePhone: +1 510 210-8056 +initials: L. M. +mobile: +1 510 790-3072 +pager: +1 510 594-6977 +roomNumber: 8087 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Milo Hasen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milo Hasen +sn: Hasen +description: This is Milo Hasen's description +facsimileTelephoneNumber: +1 213 644-8401 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 864-2801 +title: Junior Product Development Warrior +userPassword: Password1 +uid: HasenM +givenName: Milo +mail: HasenM@8ac0b632f576407ba66f1733b0c4738e.bitwarden.com +carLicense: 8653T4 +departmentNumber: 6207 +employeeType: Employee +homePhone: +1 213 171-7630 +initials: M. H. +mobile: +1 213 965-6294 +pager: +1 213 411-8163 +roomNumber: 8510 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Corabella Scarffe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corabella Scarffe +sn: Scarffe +description: This is Corabella Scarffe's description +facsimileTelephoneNumber: +1 804 302-5450 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 392-1615 +title: Chief Product Development Vice President +userPassword: Password1 +uid: ScarffeC +givenName: Corabella +mail: ScarffeC@b39d8f666f1848e6abb69d85d224a354.bitwarden.com +carLicense: FMUGEY +departmentNumber: 5031 +employeeType: Contract +homePhone: +1 804 388-6392 +initials: C. S. +mobile: +1 804 280-9473 +pager: +1 804 586-1332 +roomNumber: 9288 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parkinson Bir +sn: Bir +description: This is Parkinson Bir's description +facsimileTelephoneNumber: +1 804 284-3689 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 603-1682 +title: Chief Product Development Dictator +userPassword: Password1 +uid: BirP +givenName: Parkinson +mail: BirP@f89f635a8be04a889dbefd8a681219c7.bitwarden.com +carLicense: 9YB61N +departmentNumber: 8484 +employeeType: Normal +homePhone: +1 804 935-5396 +initials: P. B. +mobile: +1 804 818-2175 +pager: +1 804 177-8759 +roomNumber: 8787 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatrisa Zivkovic +sn: Zivkovic +description: This is Beatrisa Zivkovic's description +facsimileTelephoneNumber: +1 408 217-2823 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 861-2112 +title: Junior Payroll Fellow +userPassword: Password1 +uid: ZivkoviB +givenName: Beatrisa +mail: ZivkoviB@0e430e5bab6e4a2fa53e5bfd14eb15b0.bitwarden.com +carLicense: LPU8X5 +departmentNumber: 6709 +employeeType: Contract +homePhone: +1 408 137-4480 +initials: B. Z. +mobile: +1 408 243-1377 +pager: +1 408 479-5983 +roomNumber: 9686 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Salis Quilty,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salis Quilty +sn: Quilty +description: This is Salis Quilty's description +facsimileTelephoneNumber: +1 415 298-8181 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 189-2517 +title: Associate Payroll Stooge +userPassword: Password1 +uid: QuiltyS +givenName: Salis +mail: QuiltyS@9ec09b5f2f3848f7b253932b170c96c0.bitwarden.com +carLicense: MY2AC1 +departmentNumber: 2195 +employeeType: Contract +homePhone: +1 415 584-1937 +initials: S. Q. +mobile: +1 415 646-2339 +pager: +1 415 928-1757 +roomNumber: 8342 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Stormi Vempati,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stormi Vempati +sn: Vempati +description: This is Stormi Vempati's description +facsimileTelephoneNumber: +1 408 623-6884 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 178-1724 +title: Chief Management Sales Rep +userPassword: Password1 +uid: VempatiS +givenName: Stormi +mail: VempatiS@edfe7405a5b34e7bb39744d59a06067d.bitwarden.com +carLicense: D9D49F +departmentNumber: 4287 +employeeType: Contract +homePhone: +1 408 781-8826 +initials: S. V. +mobile: +1 408 383-1237 +pager: +1 408 643-5126 +roomNumber: 9047 +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lauretta Salvin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lauretta Salvin +sn: Salvin +description: This is Lauretta Salvin's description +facsimileTelephoneNumber: +1 818 549-4524 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 818 952-9442 +title: Associate Peons Assistant +userPassword: Password1 +uid: SalvinL +givenName: Lauretta +mail: SalvinL@58d046473fe24d0d8bf6f510239a1102.bitwarden.com +carLicense: F2J9IY +departmentNumber: 6035 +employeeType: Contract +homePhone: +1 818 970-1793 +initials: L. S. +mobile: +1 818 897-1642 +pager: +1 818 752-6451 +roomNumber: 9514 +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sarine Quane,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarine Quane +sn: Quane +description: This is Sarine Quane's description +facsimileTelephoneNumber: +1 408 180-4833 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 874-7006 +title: Master Management Fellow +userPassword: Password1 +uid: QuaneS +givenName: Sarine +mail: QuaneS@7d9f9ce4ff8b4d56b5e90ecb1e79413c.bitwarden.com +carLicense: OAPA32 +departmentNumber: 9090 +employeeType: Normal +homePhone: +1 408 641-3131 +initials: S. Q. +mobile: +1 408 674-4349 +pager: +1 408 716-7234 +roomNumber: 8985 +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rocio Brauer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rocio Brauer +sn: Brauer +description: This is Rocio Brauer's description +facsimileTelephoneNumber: +1 408 139-5233 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 469-4887 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: BrauerR +givenName: Rocio +mail: BrauerR@ec5b72978f304decbd01b86ff428bb78.bitwarden.com +carLicense: XU4KKH +departmentNumber: 4993 +employeeType: Contract +homePhone: +1 408 410-1296 +initials: R. B. +mobile: +1 408 307-8190 +pager: +1 408 875-1724 +roomNumber: 9816 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Margaretta Muchow,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margaretta Muchow +sn: Muchow +description: This is Margaretta Muchow's description +facsimileTelephoneNumber: +1 818 644-2358 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 794-9227 +title: Chief Product Development President +userPassword: Password1 +uid: MuchowM +givenName: Margaretta +mail: MuchowM@5c51ed312b7d40789d1387ca1b76506e.bitwarden.com +carLicense: ILHJFT +departmentNumber: 7980 +employeeType: Contract +homePhone: +1 818 751-2105 +initials: M. M. +mobile: +1 818 262-4541 +pager: +1 818 129-1884 +roomNumber: 9698 +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dona Nairn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dona Nairn +sn: Nairn +description: This is Dona Nairn's description +facsimileTelephoneNumber: +1 804 217-8336 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 807-7150 +title: Master Janitorial Mascot +userPassword: Password1 +uid: NairnD +givenName: Dona +mail: NairnD@4ce8989b72bf418782f9268b205e86e4.bitwarden.com +carLicense: NQTA6C +departmentNumber: 7393 +employeeType: Employee +homePhone: +1 804 442-8879 +initials: D. N. +mobile: +1 804 593-7611 +pager: +1 804 204-1292 +roomNumber: 9856 +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carolien Skiba,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolien Skiba +sn: Skiba +description: This is Carolien Skiba's description +facsimileTelephoneNumber: +1 510 967-2643 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 141-2874 +title: Supreme Administrative Manager +userPassword: Password1 +uid: SkibaC +givenName: Carolien +mail: SkibaC@a98f671d807c43a797dff7cd33629811.bitwarden.com +carLicense: RT07V3 +departmentNumber: 7095 +employeeType: Normal +homePhone: +1 510 728-3202 +initials: C. S. +mobile: +1 510 951-3735 +pager: +1 510 377-8176 +roomNumber: 9916 +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cathee Bress,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathee Bress +sn: Bress +description: This is Cathee Bress's description +facsimileTelephoneNumber: +1 510 526-2127 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 679-6481 +title: Junior Product Development Evangelist +userPassword: Password1 +uid: BressC +givenName: Cathee +mail: BressC@98bcbee6a1c244fa8e846bbc7936d10f.bitwarden.com +carLicense: 667XT9 +departmentNumber: 6007 +employeeType: Employee +homePhone: +1 510 418-2050 +initials: C. B. +mobile: +1 510 148-1890 +pager: +1 510 252-3736 +roomNumber: 8645 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mandy Settels,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mandy Settels +sn: Settels +description: This is Mandy Settels's description +facsimileTelephoneNumber: +1 408 720-7350 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 423-3084 +title: Master Payroll Developer +userPassword: Password1 +uid: SettelsM +givenName: Mandy +mail: SettelsM@a70c344bf7f247fc92a9688532a78eaa.bitwarden.com +carLicense: DUU3F4 +departmentNumber: 1754 +employeeType: Normal +homePhone: +1 408 407-8572 +initials: M. S. +mobile: +1 408 221-3702 +pager: +1 408 175-3264 +roomNumber: 9994 +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Odetta Tzuang,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odetta Tzuang +sn: Tzuang +description: This is Odetta Tzuang's description +facsimileTelephoneNumber: +1 206 550-8908 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 960-6569 +title: Associate Payroll Czar +userPassword: Password1 +uid: TzuangO +givenName: Odetta +mail: TzuangO@24f4ab788e7441abadbc2141835089b9.bitwarden.com +carLicense: S2D1CE +departmentNumber: 5282 +employeeType: Employee +homePhone: +1 206 927-4828 +initials: O. T. +mobile: +1 206 533-9334 +pager: +1 206 658-6879 +roomNumber: 8188 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arne Matney,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arne Matney +sn: Matney +description: This is Arne Matney's description +facsimileTelephoneNumber: +1 213 269-6235 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 584-5900 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: MatneyA +givenName: Arne +mail: MatneyA@df9e6df2116c4c0abb1ab3ad5d8dbaf8.bitwarden.com +carLicense: HYQNT2 +departmentNumber: 1798 +employeeType: Employee +homePhone: +1 213 394-6812 +initials: A. M. +mobile: +1 213 635-9008 +pager: +1 213 126-9043 +roomNumber: 9389 +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rijn Halliwill +sn: Halliwill +description: This is Rijn Halliwill's description +facsimileTelephoneNumber: +1 818 668-7727 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 396-5285 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: HalliwiR +givenName: Rijn +mail: HalliwiR@e51aa6debfeb4cc88c68dfc76ad89784.bitwarden.com +carLicense: D9GFNK +departmentNumber: 9626 +employeeType: Normal +homePhone: +1 818 712-3218 +initials: R. H. +mobile: +1 818 503-5499 +pager: +1 818 443-1044 +roomNumber: 8594 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kylen Maenpaa +sn: Maenpaa +description: This is Kylen Maenpaa's description +facsimileTelephoneNumber: +1 213 995-9172 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 864-5169 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: MaenpaaK +givenName: Kylen +mail: MaenpaaK@fa475df3d2b54f0daa8cb07fc8f9be10.bitwarden.com +carLicense: G44OVV +departmentNumber: 4237 +employeeType: Normal +homePhone: +1 213 827-5921 +initials: K. M. +mobile: +1 213 366-7376 +pager: +1 213 619-4175 +roomNumber: 9962 +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ernest Derbyshire +sn: Derbyshire +description: This is Ernest Derbyshire's description +facsimileTelephoneNumber: +1 206 847-3541 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 137-2475 +title: Chief Payroll Architect +userPassword: Password1 +uid: DerbyshE +givenName: Ernest +mail: DerbyshE@5e2c67d0d05546f9b167a97275baece6.bitwarden.com +carLicense: R3EUT0 +departmentNumber: 8164 +employeeType: Employee +homePhone: +1 206 749-8635 +initials: E. D. +mobile: +1 206 159-4314 +pager: +1 206 919-9218 +roomNumber: 9061 +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dvm LaPlante,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dvm LaPlante +sn: LaPlante +description: This is Dvm LaPlante's description +facsimileTelephoneNumber: +1 510 604-6356 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 916-2715 +title: Junior Payroll Punk +userPassword: Password1 +uid: LaPlantD +givenName: Dvm +mail: LaPlantD@efeefad1218b44b4b09303834453b239.bitwarden.com +carLicense: OXLB5E +departmentNumber: 1568 +employeeType: Normal +homePhone: +1 510 789-3507 +initials: D. L. +mobile: +1 510 722-8997 +pager: +1 510 161-6738 +roomNumber: 9929 +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Edeline ORourke,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edeline ORourke +sn: ORourke +description: This is Edeline ORourke's description +facsimileTelephoneNumber: +1 818 150-2810 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 660-9642 +title: Chief Payroll Developer +userPassword: Password1 +uid: ORourkeE +givenName: Edeline +mail: ORourkeE@a2c9df9a4cd24389b4a0116cc38b3328.bitwarden.com +carLicense: 6NG2J6 +departmentNumber: 1216 +employeeType: Employee +homePhone: +1 818 609-1669 +initials: E. O. +mobile: +1 818 921-5608 +pager: +1 818 930-9770 +roomNumber: 8217 +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jiri Sengoba,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jiri Sengoba +sn: Sengoba +description: This is Jiri Sengoba's description +facsimileTelephoneNumber: +1 408 683-9116 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 769-1875 +title: Junior Product Development Director +userPassword: Password1 +uid: SengobaJ +givenName: Jiri +mail: SengobaJ@ef59e9dfc35148e0a47d9411700130fb.bitwarden.com +carLicense: 3B7LV1 +departmentNumber: 6180 +employeeType: Employee +homePhone: +1 408 174-2193 +initials: J. S. +mobile: +1 408 379-5162 +pager: +1 408 480-6124 +roomNumber: 9702 +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Terence Ashdown,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terence Ashdown +sn: Ashdown +description: This is Terence Ashdown's description +facsimileTelephoneNumber: +1 415 309-5355 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 980-6804 +title: Associate Payroll Czar +userPassword: Password1 +uid: AshdownT +givenName: Terence +mail: AshdownT@8680d13ae864492b9dc7a4d4204aef89.bitwarden.com +carLicense: J0ACKF +departmentNumber: 7963 +employeeType: Employee +homePhone: +1 415 309-1167 +initials: T. A. +mobile: +1 415 773-3203 +pager: +1 415 957-6545 +roomNumber: 8894 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Donni Keilholz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donni Keilholz +sn: Keilholz +description: This is Donni Keilholz's description +facsimileTelephoneNumber: +1 206 421-7209 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 197-6139 +title: Master Janitorial Vice President +userPassword: Password1 +uid: KeilholD +givenName: Donni +mail: KeilholD@77627e1e8f8e4cdc88cd6606136ffbcf.bitwarden.com +carLicense: QCM250 +departmentNumber: 9071 +employeeType: Normal +homePhone: +1 206 474-9491 +initials: D. K. +mobile: +1 206 472-2969 +pager: +1 206 212-8667 +roomNumber: 8460 +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephanie Larsen +sn: Larsen +description: This is Stephanie Larsen's description +facsimileTelephoneNumber: +1 213 616-2128 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 629-4944 +title: Chief Janitorial Stooge +userPassword: Password1 +uid: LarsenS +givenName: Stephanie +mail: LarsenS@2ce1c1b789434fc0b1cfbba03b1eddc8.bitwarden.com +carLicense: 3JLKDC +departmentNumber: 4769 +employeeType: Contract +homePhone: +1 213 822-5092 +initials: S. L. +mobile: +1 213 297-9933 +pager: +1 213 981-6488 +roomNumber: 9591 +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verlyn Reinlie +sn: Reinlie +description: This is Verlyn Reinlie's description +facsimileTelephoneNumber: +1 213 756-9242 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 490-3935 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: ReinlieV +givenName: Verlyn +mail: ReinlieV@af244d93e89148e099720c8250f904c6.bitwarden.com +carLicense: NNI5OA +departmentNumber: 2607 +employeeType: Normal +homePhone: +1 213 527-2217 +initials: V. R. +mobile: +1 213 818-9257 +pager: +1 213 949-3193 +roomNumber: 8605 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Minhwi Vallet,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minhwi Vallet +sn: Vallet +description: This is Minhwi Vallet's description +facsimileTelephoneNumber: +1 804 217-5627 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 572-7409 +title: Associate Product Development Consultant +userPassword: Password1 +uid: ValletM +givenName: Minhwi +mail: ValletM@053a5e187b0b4033abb4000d18053cd9.bitwarden.com +carLicense: CSS3RH +departmentNumber: 6678 +employeeType: Normal +homePhone: +1 804 266-1466 +initials: M. V. +mobile: +1 804 160-3448 +pager: +1 804 187-5145 +roomNumber: 9113 +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Allianora Wissler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allianora Wissler +sn: Wissler +description: This is Allianora Wissler's description +facsimileTelephoneNumber: +1 415 769-1883 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 133-9864 +title: Chief Janitorial President +userPassword: Password1 +uid: WisslerA +givenName: Allianora +mail: WisslerA@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com +carLicense: NDV8F8 +departmentNumber: 5291 +employeeType: Normal +homePhone: +1 415 233-3404 +initials: A. W. +mobile: +1 415 888-7507 +pager: +1 415 286-5592 +roomNumber: 9295 +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Francisco Elam,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francisco Elam +sn: Elam +description: This is Francisco Elam's description +facsimileTelephoneNumber: +1 804 169-9503 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 804 173-5011 +title: Chief Product Testing Czar +userPassword: Password1 +uid: ElamF +givenName: Francisco +mail: ElamF@ff45973707884b8a993a9b6a0db0aa11.bitwarden.com +carLicense: NURR9F +departmentNumber: 6696 +employeeType: Employee +homePhone: +1 804 546-6030 +initials: F. E. +mobile: +1 804 713-3370 +pager: +1 804 475-3968 +roomNumber: 9980 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katie Labrie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katie Labrie +sn: Labrie +description: This is Katie Labrie's description +facsimileTelephoneNumber: +1 415 437-2364 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 346-5389 +title: Junior Janitorial Manager +userPassword: Password1 +uid: LabrieK +givenName: Katie +mail: LabrieK@c974995ddc894f639cebc6e910eb3bc3.bitwarden.com +carLicense: 0RCS0Y +departmentNumber: 2865 +employeeType: Normal +homePhone: +1 415 270-7825 +initials: K. L. +mobile: +1 415 452-3778 +pager: +1 415 872-6767 +roomNumber: 8919 +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kazuhiko Drewes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazuhiko Drewes +sn: Drewes +description: This is Kazuhiko Drewes's description +facsimileTelephoneNumber: +1 213 963-4704 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 773-4497 +title: Associate Management Artist +userPassword: Password1 +uid: DrewesK +givenName: Kazuhiko +mail: DrewesK@991dc3abafbe42ae88689cdf83c52cb7.bitwarden.com +carLicense: M1TG14 +departmentNumber: 1476 +employeeType: Normal +homePhone: +1 213 172-9327 +initials: K. D. +mobile: +1 213 677-7431 +pager: +1 213 254-9296 +roomNumber: 8620 +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com +manager: cn=Duong Bannard,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charmane Dhuga +sn: Dhuga +description: This is Charmane Dhuga's description +facsimileTelephoneNumber: +1 804 745-3543 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 338-1581 +title: Supreme Human Resources Evangelist +userPassword: Password1 +uid: DhugaC +givenName: Charmane +mail: DhugaC@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com +carLicense: Y91I1E +departmentNumber: 5005 +employeeType: Normal +homePhone: +1 804 655-6980 +initials: C. D. +mobile: +1 804 167-7042 +pager: +1 804 879-5286 +roomNumber: 9229 +manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Meade Esmaili,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meade Esmaili +sn: Esmaili +description: This is Meade Esmaili's description +facsimileTelephoneNumber: +1 408 411-8905 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 956-5281 +title: Associate Product Development Admin +userPassword: Password1 +uid: EsmailiM +givenName: Meade +mail: EsmailiM@9b1dcdebf2c241bf975e03d6ac9197e3.bitwarden.com +carLicense: DC3II7 +departmentNumber: 4469 +employeeType: Employee +homePhone: +1 408 557-4235 +initials: M. E. +mobile: +1 408 774-8512 +pager: +1 408 934-9918 +roomNumber: 8426 +secretary: cn=Carolan Bott,ou=Janitorial,dc=bitwarden, dc=com +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gwennie Sojkowski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwennie Sojkowski +sn: Sojkowski +description: This is Gwennie Sojkowski's description +facsimileTelephoneNumber: +1 510 572-6147 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 583-5829 +title: Master Management Assistant +userPassword: Password1 +uid: SojkowsG +givenName: Gwennie +mail: SojkowsG@7705ffcba30447f5b39ef2ac69db9c3a.bitwarden.com +carLicense: TILQ7I +departmentNumber: 7659 +employeeType: Contract +homePhone: +1 510 605-7775 +initials: G. S. +mobile: +1 510 514-8207 +pager: +1 510 662-4461 +roomNumber: 8511 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadan Satkunaseelan +sn: Satkunaseelan +description: This is Sadan Satkunaseelan's description +facsimileTelephoneNumber: +1 804 921-2856 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 235-3008 +title: Chief Peons President +userPassword: Password1 +uid: SatkunaS +givenName: Sadan +mail: SatkunaS@348695c8b467437c83a5f7c72f04c2de.bitwarden.com +carLicense: OFRATP +departmentNumber: 6170 +employeeType: Normal +homePhone: +1 804 913-9450 +initials: S. S. +mobile: +1 804 649-5021 +pager: +1 804 567-2830 +roomNumber: 8060 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Winona Paine,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winona Paine +sn: Paine +description: This is Winona Paine's description +facsimileTelephoneNumber: +1 415 401-4013 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 988-7771 +title: Associate Administrative Janitor +userPassword: Password1 +uid: PaineW +givenName: Winona +mail: PaineW@3bd9de2175e44743a96e1e8c28036657.bitwarden.com +carLicense: UGED3E +departmentNumber: 1882 +employeeType: Normal +homePhone: +1 415 683-1342 +initials: W. P. +mobile: +1 415 739-7907 +pager: +1 415 592-6532 +roomNumber: 8897 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chiquita Ferrell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chiquita Ferrell +sn: Ferrell +description: This is Chiquita Ferrell's description +facsimileTelephoneNumber: +1 818 977-3127 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 472-3998 +title: Junior Peons Dictator +userPassword: Password1 +uid: FerrellC +givenName: Chiquita +mail: FerrellC@492b9c186a41410b8362945cf33f6ac7.bitwarden.com +carLicense: 8E8LS0 +departmentNumber: 2538 +employeeType: Normal +homePhone: +1 818 701-5265 +initials: C. F. +mobile: +1 818 926-5632 +pager: +1 818 358-9861 +roomNumber: 8830 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Burgess Platthy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Burgess Platthy +sn: Platthy +description: This is Burgess Platthy's description +facsimileTelephoneNumber: +1 804 703-1139 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 804 657-2400 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: PlatthyB +givenName: Burgess +mail: PlatthyB@c90fcc6a2adf434b982935936ff5f7b6.bitwarden.com +carLicense: P0V4BA +departmentNumber: 4143 +employeeType: Employee +homePhone: +1 804 225-5720 +initials: B. P. +mobile: +1 804 765-1829 +pager: +1 804 983-1573 +roomNumber: 9963 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Harlene Kortje,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harlene Kortje +sn: Kortje +description: This is Harlene Kortje's description +facsimileTelephoneNumber: +1 213 910-1376 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 213 161-7938 +title: Junior Product Development Fellow +userPassword: Password1 +uid: KortjeH +givenName: Harlene +mail: KortjeH@9f0054716a414ce084f33e268195dbbd.bitwarden.com +carLicense: XG3MXU +departmentNumber: 7194 +employeeType: Contract +homePhone: +1 213 699-5913 +initials: H. K. +mobile: +1 213 885-4219 +pager: +1 213 774-1097 +roomNumber: 8317 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Suhas Ilic,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suhas Ilic +sn: Ilic +description: This is Suhas Ilic's description +facsimileTelephoneNumber: +1 408 575-2203 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 597-8031 +title: Junior Administrative Director +userPassword: Password1 +uid: IlicS +givenName: Suhas +mail: IlicS@aa11a3e30f7d4b8b9f6e08ae63f7a50f.bitwarden.com +carLicense: U6EFSG +departmentNumber: 8855 +employeeType: Contract +homePhone: +1 408 528-9717 +initials: S. I. +mobile: +1 408 794-4243 +pager: +1 408 664-5730 +roomNumber: 9620 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kamil Caines,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamil Caines +sn: Caines +description: This is Kamil Caines's description +facsimileTelephoneNumber: +1 415 395-5625 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 174-9337 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: CainesK +givenName: Kamil +mail: CainesK@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com +carLicense: MT9257 +departmentNumber: 2105 +employeeType: Normal +homePhone: +1 415 278-8014 +initials: K. C. +mobile: +1 415 316-6921 +pager: +1 415 456-4999 +roomNumber: 9221 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=HorLam Momon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HorLam Momon +sn: Momon +description: This is HorLam Momon's description +facsimileTelephoneNumber: +1 415 443-4231 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 603-1559 +title: Chief Product Testing Technician +userPassword: Password1 +uid: MomonH +givenName: HorLam +mail: MomonH@47fbb574e9c1480db21858032e62e0c7.bitwarden.com +carLicense: CUHSLT +departmentNumber: 4760 +employeeType: Contract +homePhone: +1 415 939-3418 +initials: H. M. +mobile: +1 415 638-4183 +pager: +1 415 289-2583 +roomNumber: 8288 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Farah Brennand,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farah Brennand +sn: Brennand +description: This is Farah Brennand's description +facsimileTelephoneNumber: +1 415 922-3672 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 935-5976 +title: Supreme Management Visionary +userPassword: Password1 +uid: BrennanF +givenName: Farah +mail: BrennanF@5670176255f949f78b023f460fb780c7.bitwarden.com +carLicense: I7J6AO +departmentNumber: 4009 +employeeType: Normal +homePhone: +1 415 514-4177 +initials: F. B. +mobile: +1 415 210-3740 +pager: +1 415 975-6868 +roomNumber: 8920 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Wilfred Issa,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilfred Issa +sn: Issa +description: This is Wilfred Issa's description +facsimileTelephoneNumber: +1 213 618-3576 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 704-6392 +title: Supreme Management Pinhead +userPassword: Password1 +uid: IssaW +givenName: Wilfred +mail: IssaW@ebbd3bd6f4c84c3b86ade3725f39d1ef.bitwarden.com +carLicense: H9N9MF +departmentNumber: 2704 +employeeType: Contract +homePhone: +1 213 674-9358 +initials: W. I. +mobile: +1 213 763-8196 +pager: +1 213 166-3869 +roomNumber: 9577 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zino Larson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zino Larson +sn: Larson +description: This is Zino Larson's description +facsimileTelephoneNumber: +1 510 592-9582 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 510 161-1529 +title: Master Janitorial Director +userPassword: Password1 +uid: LarsonZ +givenName: Zino +mail: LarsonZ@86698d59a6aa411691a02fa8cabde4d0.bitwarden.com +carLicense: HRCDLP +departmentNumber: 1997 +employeeType: Normal +homePhone: +1 510 501-8031 +initials: Z. L. +mobile: +1 510 769-4585 +pager: +1 510 621-4753 +roomNumber: 8744 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorthy Welsch +sn: Welsch +description: This is Dorthy Welsch's description +facsimileTelephoneNumber: +1 213 841-7559 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 179-6490 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: WelschD +givenName: Dorthy +mail: WelschD@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com +carLicense: 1HOKPQ +departmentNumber: 9100 +employeeType: Employee +homePhone: +1 213 721-2092 +initials: D. W. +mobile: +1 213 839-7978 +pager: +1 213 679-3261 +roomNumber: 8131 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rhiamon Devault,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhiamon Devault +sn: Devault +description: This is Rhiamon Devault's description +facsimileTelephoneNumber: +1 206 188-2668 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 827-8069 +title: Supreme Product Development Artist +userPassword: Password1 +uid: DevaultR +givenName: Rhiamon +mail: DevaultR@3fd921dd1e2f4c51ac696af9e0351f02.bitwarden.com +carLicense: E3YBU4 +departmentNumber: 2583 +employeeType: Employee +homePhone: +1 206 434-7378 +initials: R. D. +mobile: +1 206 513-1059 +pager: +1 206 686-7266 +roomNumber: 8173 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Michiko Sich,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michiko Sich +sn: Sich +description: This is Michiko Sich's description +facsimileTelephoneNumber: +1 213 785-5866 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 243-2826 +title: Supreme Management Developer +userPassword: Password1 +uid: SichM +givenName: Michiko +mail: SichM@a3445f6a5f3345a9957e7fe7bacb2499.bitwarden.com +carLicense: RMK6YS +departmentNumber: 1172 +employeeType: Normal +homePhone: +1 213 900-7005 +initials: M. S. +mobile: +1 213 489-1321 +pager: +1 213 264-4718 +roomNumber: 9509 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Weber Ishii,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weber Ishii +sn: Ishii +description: This is Weber Ishii's description +facsimileTelephoneNumber: +1 408 910-2703 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 259-5525 +title: Junior Payroll Vice President +userPassword: Password1 +uid: IshiiW +givenName: Weber +mail: IshiiW@becb244da0554983b71d06f587be1dbc.bitwarden.com +carLicense: JBG4ID +departmentNumber: 3081 +employeeType: Contract +homePhone: +1 408 744-6623 +initials: W. I. +mobile: +1 408 726-6526 +pager: +1 408 109-6840 +roomNumber: 8501 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Beppie Kilburn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beppie Kilburn +sn: Kilburn +description: This is Beppie Kilburn's description +facsimileTelephoneNumber: +1 206 977-9150 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 991-2285 +title: Master Product Development Engineer +userPassword: Password1 +uid: KilburnB +givenName: Beppie +mail: KilburnB@4691b2eac8ba4d1390582076e407a460.bitwarden.com +carLicense: 5I0JST +departmentNumber: 1473 +employeeType: Normal +homePhone: +1 206 948-2078 +initials: B. K. +mobile: +1 206 424-1288 +pager: +1 206 361-4813 +roomNumber: 9346 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Durali Abelow,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Durali Abelow +sn: Abelow +description: This is Durali Abelow's description +facsimileTelephoneNumber: +1 408 420-2987 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 187-1650 +title: Master Payroll Assistant +userPassword: Password1 +uid: AbelowD +givenName: Durali +mail: AbelowD@8a40f0f791fd451f85ce90daae1d6995.bitwarden.com +carLicense: 1EOKQ4 +departmentNumber: 6960 +employeeType: Normal +homePhone: +1 408 248-9706 +initials: D. A. +mobile: +1 408 453-1074 +pager: +1 408 493-4419 +roomNumber: 8891 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eleen Pappu,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eleen Pappu +sn: Pappu +description: This is Eleen Pappu's description +facsimileTelephoneNumber: +1 206 570-3235 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 513-5435 +title: Junior Payroll Engineer +userPassword: Password1 +uid: PappuE +givenName: Eleen +mail: PappuE@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com +carLicense: Y21JKG +departmentNumber: 1379 +employeeType: Employee +homePhone: +1 206 196-7455 +initials: E. P. +mobile: +1 206 920-9565 +pager: +1 206 320-8638 +roomNumber: 8171 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Betty Elzer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betty Elzer +sn: Elzer +description: This is Betty Elzer's description +facsimileTelephoneNumber: +1 818 976-8374 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 818 779-5209 +title: Master Peons Technician +userPassword: Password1 +uid: ElzerB +givenName: Betty +mail: ElzerB@02d556d8128c42b5aa2cd5d4238f40aa.bitwarden.com +carLicense: FKJPWI +departmentNumber: 2981 +employeeType: Normal +homePhone: +1 818 108-6935 +initials: B. E. +mobile: +1 818 771-3047 +pager: +1 818 299-3747 +roomNumber: 8979 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sallyann Environment,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sallyann Environment +sn: Environment +description: This is Sallyann Environment's description +facsimileTelephoneNumber: +1 818 737-6308 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 436-9004 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: EnvironS +givenName: Sallyann +mail: EnvironS@11fa5cc8547c46d98b4271c0748028a9.bitwarden.com +carLicense: RWBAFY +departmentNumber: 3550 +employeeType: Contract +homePhone: +1 818 260-1613 +initials: S. E. +mobile: +1 818 307-3809 +pager: +1 818 110-7248 +roomNumber: 8711 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ans Pozzi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ans Pozzi +sn: Pozzi +description: This is Ans Pozzi's description +facsimileTelephoneNumber: +1 510 908-8920 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 957-4278 +title: Junior Janitorial Manager +userPassword: Password1 +uid: PozziA +givenName: Ans +mail: PozziA@f910b6421df04b2e9cdfa3e15c0b0190.bitwarden.com +carLicense: 4FQ2XF +departmentNumber: 4839 +employeeType: Contract +homePhone: +1 510 358-4549 +initials: A. P. +mobile: +1 510 154-1418 +pager: +1 510 793-6808 +roomNumber: 8231 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Blithe Sherow,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blithe Sherow +sn: Sherow +description: This is Blithe Sherow's description +facsimileTelephoneNumber: +1 818 221-2077 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 818 892-8003 +title: Associate Product Testing Grunt +userPassword: Password1 +uid: SherowB +givenName: Blithe +mail: SherowB@0eccc35b1ecb45239e2d62bd2610a4ba.bitwarden.com +carLicense: 9HK7X9 +departmentNumber: 9384 +employeeType: Contract +homePhone: +1 818 794-8061 +initials: B. S. +mobile: +1 818 763-5319 +pager: +1 818 589-8494 +roomNumber: 8925 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jacklin Alles,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacklin Alles +sn: Alles +description: This is Jacklin Alles's description +facsimileTelephoneNumber: +1 213 390-1101 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 938-8207 +title: Master Peons Punk +userPassword: Password1 +uid: AllesJ +givenName: Jacklin +mail: AllesJ@b99b0b5c7b724e06a91026c096a8854d.bitwarden.com +carLicense: S2JU6Q +departmentNumber: 5099 +employeeType: Normal +homePhone: +1 213 440-1098 +initials: J. A. +mobile: +1 213 515-7241 +pager: +1 213 763-3997 +roomNumber: 8858 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmelle Kelemen +sn: Kelemen +description: This is Carmelle Kelemen's description +facsimileTelephoneNumber: +1 206 164-3308 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 385-3902 +title: Chief Administrative Consultant +userPassword: Password1 +uid: KelemenC +givenName: Carmelle +mail: KelemenC@8586ff08ef6b4c7592578bab914dcf40.bitwarden.com +carLicense: AV1NKA +departmentNumber: 8642 +employeeType: Normal +homePhone: +1 206 856-5277 +initials: C. K. +mobile: +1 206 777-7409 +pager: +1 206 523-7170 +roomNumber: 9874 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carleen Rundstein +sn: Rundstein +description: This is Carleen Rundstein's description +facsimileTelephoneNumber: +1 804 839-2190 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 167-7562 +title: Junior Human Resources Technician +userPassword: Password1 +uid: RundsteC +givenName: Carleen +mail: RundsteC@8aed4579481d435c98b14fd5983c7417.bitwarden.com +carLicense: K4BLSS +departmentNumber: 4849 +employeeType: Employee +homePhone: +1 804 463-5079 +initials: C. R. +mobile: +1 804 280-2459 +pager: +1 804 696-1845 +roomNumber: 9135 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosemary Tsai +sn: Tsai +description: This is Rosemary Tsai's description +facsimileTelephoneNumber: +1 213 145-3459 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 345-5117 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: TsaiR +givenName: Rosemary +mail: TsaiR@3f5b9048c8924fec87576c273249cede.bitwarden.com +carLicense: 35MS89 +departmentNumber: 3250 +employeeType: Employee +homePhone: +1 213 426-3518 +initials: R. T. +mobile: +1 213 711-1657 +pager: +1 213 889-4513 +roomNumber: 9100 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pauly Wycoff,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pauly Wycoff +sn: Wycoff +description: This is Pauly Wycoff's description +facsimileTelephoneNumber: +1 510 510-2848 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 715-8127 +title: Master Peons Pinhead +userPassword: Password1 +uid: WycoffP +givenName: Pauly +mail: WycoffP@1871a69ca6234f999f51d3a9b4eb4578.bitwarden.com +carLicense: HRSRN9 +departmentNumber: 3588 +employeeType: Normal +homePhone: +1 510 442-6828 +initials: P. W. +mobile: +1 510 162-4988 +pager: +1 510 120-8703 +roomNumber: 9890 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jackson Narron,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jackson Narron +sn: Narron +description: This is Jackson Narron's description +facsimileTelephoneNumber: +1 206 304-5341 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 641-4999 +title: Master Product Development Mascot +userPassword: Password1 +uid: NarronJ +givenName: Jackson +mail: NarronJ@87a3c7cedd324317a0a5cf80dbc758d8.bitwarden.com +carLicense: DVY6GI +departmentNumber: 9185 +employeeType: Normal +homePhone: +1 206 285-1416 +initials: J. N. +mobile: +1 206 476-6889 +pager: +1 206 209-6287 +roomNumber: 9428 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hermia Probs,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermia Probs +sn: Probs +description: This is Hermia Probs's description +facsimileTelephoneNumber: +1 804 746-1511 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 979-6247 +title: Supreme Administrative Engineer +userPassword: Password1 +uid: ProbsH +givenName: Hermia +mail: ProbsH@158d934795614bc784693ab70a2cd0b7.bitwarden.com +carLicense: UTYQWX +departmentNumber: 9865 +employeeType: Normal +homePhone: +1 804 186-1816 +initials: H. P. +mobile: +1 804 677-5315 +pager: +1 804 652-1719 +roomNumber: 9458 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Scovill McPhail,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Scovill McPhail +sn: McPhail +description: This is Scovill McPhail's description +facsimileTelephoneNumber: +1 804 942-5130 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 877-6276 +title: Master Management Fellow +userPassword: Password1 +uid: McPhailS +givenName: Scovill +mail: McPhailS@5184500633ec4ec1833d29082b384d33.bitwarden.com +carLicense: 9X7F8J +departmentNumber: 7430 +employeeType: Normal +homePhone: +1 804 683-5345 +initials: S. M. +mobile: +1 804 989-7135 +pager: +1 804 668-8619 +roomNumber: 8657 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dian Zalite,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dian Zalite +sn: Zalite +description: This is Dian Zalite's description +facsimileTelephoneNumber: +1 818 392-7582 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 578-2840 +title: Junior Administrative Writer +userPassword: Password1 +uid: ZaliteD +givenName: Dian +mail: ZaliteD@4fad719157f44ed19b7c7a96b512f7f4.bitwarden.com +carLicense: 7XE5TG +departmentNumber: 9424 +employeeType: Employee +homePhone: +1 818 946-5845 +initials: D. Z. +mobile: +1 818 150-7440 +pager: +1 818 422-3806 +roomNumber: 8778 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Puran Dundin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Puran Dundin +sn: Dundin +description: This is Puran Dundin's description +facsimileTelephoneNumber: +1 415 397-4415 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 814-5859 +title: Supreme Human Resources Engineer +userPassword: Password1 +uid: DundinP +givenName: Puran +mail: DundinP@412f6fbf438a4b3d8bbdf6350bccd80d.bitwarden.com +carLicense: HBA006 +departmentNumber: 9701 +employeeType: Contract +homePhone: +1 415 515-1364 +initials: P. D. +mobile: +1 415 301-1690 +pager: +1 415 211-2692 +roomNumber: 8216 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sosanna Nguyen +sn: Nguyen +description: This is Sosanna Nguyen's description +facsimileTelephoneNumber: +1 408 685-5328 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 222-4745 +title: Supreme Payroll Developer +userPassword: Password1 +uid: NguyenS +givenName: Sosanna +mail: NguyenS@35c9d3d9400d43a581b3020b915ebc3f.bitwarden.com +carLicense: EPV0F9 +departmentNumber: 1004 +employeeType: Normal +homePhone: +1 408 343-1335 +initials: S. N. +mobile: +1 408 589-9765 +pager: +1 408 138-1039 +roomNumber: 9601 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Migdalia Warner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Migdalia Warner +sn: Warner +description: This is Migdalia Warner's description +facsimileTelephoneNumber: +1 415 288-7232 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 551-5475 +title: Master Peons Manager +userPassword: Password1 +uid: WarnerM +givenName: Migdalia +mail: WarnerM@724caed46aaf481fb3e0817c5c10cdb6.bitwarden.com +carLicense: L6XSTR +departmentNumber: 5639 +employeeType: Employee +homePhone: +1 415 713-8133 +initials: M. W. +mobile: +1 415 790-7868 +pager: +1 415 852-1386 +roomNumber: 9856 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mechelle Kirn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mechelle Kirn +sn: Kirn +description: This is Mechelle Kirn's description +facsimileTelephoneNumber: +1 213 775-6485 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 914-5456 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: KirnM +givenName: Mechelle +mail: KirnM@7e9f6d17b8fc4a199e49adcccc9ca5e1.bitwarden.com +carLicense: LFOOJS +departmentNumber: 3661 +employeeType: Contract +homePhone: +1 213 210-5075 +initials: M. K. +mobile: +1 213 160-5512 +pager: +1 213 481-8483 +roomNumber: 8569 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jaan Hartin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaan Hartin +sn: Hartin +description: This is Jaan Hartin's description +facsimileTelephoneNumber: +1 818 267-6905 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 947-4708 +title: Master Peons Grunt +userPassword: Password1 +uid: HartinJ +givenName: Jaan +mail: HartinJ@a00e1b95d28e4af1be227d0b3e225d0c.bitwarden.com +carLicense: SMHGFN +departmentNumber: 8224 +employeeType: Employee +homePhone: +1 818 443-8493 +initials: J. H. +mobile: +1 818 295-6618 +pager: +1 818 314-1487 +roomNumber: 8828 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marilyn MacHattie +sn: MacHattie +description: This is Marilyn MacHattie's description +facsimileTelephoneNumber: +1 804 434-3188 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 368-6657 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: MacHattM +givenName: Marilyn +mail: MacHattM@1f586a2e93fc4e14adcb10bebbfd4b67.bitwarden.com +carLicense: N0574D +departmentNumber: 5574 +employeeType: Contract +homePhone: +1 804 602-1477 +initials: M. M. +mobile: +1 804 756-1697 +pager: +1 804 411-2922 +roomNumber: 9474 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anne JantzLee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anne JantzLee +sn: JantzLee +description: This is Anne JantzLee's description +facsimileTelephoneNumber: +1 818 930-7701 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 119-7635 +title: Chief Product Development Grunt +userPassword: Password1 +uid: JantzLeA +givenName: Anne +mail: JantzLeA@ec5b8f0e9ac54265b8c5ceea3f25604f.bitwarden.com +carLicense: 45T1AH +departmentNumber: 1657 +employeeType: Normal +homePhone: +1 818 827-3803 +initials: A. J. +mobile: +1 818 209-1838 +pager: +1 818 955-7774 +roomNumber: 8263 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blakelee Kemish +sn: Kemish +description: This is Blakelee Kemish's description +facsimileTelephoneNumber: +1 206 709-6289 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 534-5949 +title: Master Human Resources Punk +userPassword: Password1 +uid: KemishB +givenName: Blakelee +mail: KemishB@ade9a269c2794f41972a0cd585efc66c.bitwarden.com +carLicense: 3PJ1QG +departmentNumber: 8911 +employeeType: Contract +homePhone: +1 206 992-7104 +initials: B. K. +mobile: +1 206 270-8253 +pager: +1 206 113-4690 +roomNumber: 8341 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rachele VanDerBoom +sn: VanDerBoom +description: This is Rachele VanDerBoom's description +facsimileTelephoneNumber: +1 510 918-5631 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 993-7339 +title: Master Product Development Visionary +userPassword: Password1 +uid: VanDerBR +givenName: Rachele +mail: VanDerBR@b51c90a7a7734a92a0afbe6bbc47547e.bitwarden.com +carLicense: 9NWKIQ +departmentNumber: 5012 +employeeType: Normal +homePhone: +1 510 562-2729 +initials: R. V. +mobile: +1 510 855-5572 +pager: +1 510 604-2757 +roomNumber: 8386 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cherey Desantis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherey Desantis +sn: Desantis +description: This is Cherey Desantis's description +facsimileTelephoneNumber: +1 213 607-9098 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 213 887-5470 +title: Chief Peons Pinhead +userPassword: Password1 +uid: DesantiC +givenName: Cherey +mail: DesantiC@aae225b6543e4edebfd4e8a70cd66e37.bitwarden.com +carLicense: PG8DVX +departmentNumber: 5582 +employeeType: Normal +homePhone: +1 213 618-9779 +initials: C. D. +mobile: +1 213 869-5097 +pager: +1 213 283-9247 +roomNumber: 9335 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Celie Aksel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celie Aksel +sn: Aksel +description: This is Celie Aksel's description +facsimileTelephoneNumber: +1 510 124-9024 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 837-6507 +title: Junior Management Czar +userPassword: Password1 +uid: AkselC +givenName: Celie +mail: AkselC@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com +carLicense: 7P7NFM +departmentNumber: 1422 +employeeType: Contract +homePhone: +1 510 191-2735 +initials: C. A. +mobile: +1 510 837-2455 +pager: +1 510 967-4179 +roomNumber: 8837 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aleta Khosla,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aleta Khosla +sn: Khosla +description: This is Aleta Khosla's description +facsimileTelephoneNumber: +1 804 809-7168 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 804 280-4129 +title: Junior Payroll Artist +userPassword: Password1 +uid: KhoslaA +givenName: Aleta +mail: KhoslaA@3235591d985b4d2894779cd55ac400f1.bitwarden.com +carLicense: HSN283 +departmentNumber: 9804 +employeeType: Contract +homePhone: +1 804 536-7339 +initials: A. K. +mobile: +1 804 307-7620 +pager: +1 804 955-8650 +roomNumber: 9724 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lennart Cramm,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lennart Cramm +sn: Cramm +description: This is Lennart Cramm's description +facsimileTelephoneNumber: +1 415 264-3621 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 538-3888 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: CrammL +givenName: Lennart +mail: CrammL@d8178390586b4ff2afbd07f5124be8ce.bitwarden.com +carLicense: EBXFE3 +departmentNumber: 7616 +employeeType: Normal +homePhone: +1 415 948-7705 +initials: L. C. +mobile: +1 415 684-6027 +pager: +1 415 118-4833 +roomNumber: 9276 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elex Sohal,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elex Sohal +sn: Sohal +description: This is Elex Sohal's description +facsimileTelephoneNumber: +1 415 954-1328 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 583-7512 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: SohalE +givenName: Elex +mail: SohalE@9c333a28d24845c1a7234d2e35b66565.bitwarden.com +carLicense: GY0LK6 +departmentNumber: 2236 +employeeType: Normal +homePhone: +1 415 877-3429 +initials: E. S. +mobile: +1 415 960-2286 +pager: +1 415 372-3302 +roomNumber: 9299 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marianna Annas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marianna Annas +sn: Annas +description: This is Marianna Annas's description +facsimileTelephoneNumber: +1 213 897-1729 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 196-4433 +title: Chief Human Resources President +userPassword: Password1 +uid: AnnasM +givenName: Marianna +mail: AnnasM@0fe89eeff7dc4fc1a0f74df0bfbf040f.bitwarden.com +carLicense: 10BNI2 +departmentNumber: 2968 +employeeType: Contract +homePhone: +1 213 129-9289 +initials: M. A. +mobile: +1 213 662-1344 +pager: +1 213 712-8045 +roomNumber: 9223 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sergei MacElwee,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sergei MacElwee +sn: MacElwee +description: This is Sergei MacElwee's description +facsimileTelephoneNumber: +1 206 925-6724 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 704-5148 +title: Associate Management Madonna +userPassword: Password1 +uid: MacElweS +givenName: Sergei +mail: MacElweS@5bd88496e76c4f90b1f70eced0bf0739.bitwarden.com +carLicense: HOQSDU +departmentNumber: 7818 +employeeType: Employee +homePhone: +1 206 560-9019 +initials: S. M. +mobile: +1 206 704-6338 +pager: +1 206 533-6818 +roomNumber: 8727 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jay Dutil,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jay Dutil +sn: Dutil +description: This is Jay Dutil's description +facsimileTelephoneNumber: +1 415 969-2743 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 876-6133 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: DutilJ +givenName: Jay +mail: DutilJ@b347e7ca23ac4a809e51a769a6ab8366.bitwarden.com +carLicense: D0DOEL +departmentNumber: 8594 +employeeType: Normal +homePhone: +1 415 602-2902 +initials: J. D. +mobile: +1 415 957-4961 +pager: +1 415 532-6673 +roomNumber: 8695 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bevvy Routhier,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bevvy Routhier +sn: Routhier +description: This is Bevvy Routhier's description +facsimileTelephoneNumber: +1 818 207-7395 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 534-1065 +title: Supreme Peons Punk +userPassword: Password1 +uid: RouthieB +givenName: Bevvy +mail: RouthieB@7b122176285947e2aaa662ba71171180.bitwarden.com +carLicense: V453CM +departmentNumber: 5688 +employeeType: Employee +homePhone: +1 818 598-8204 +initials: B. R. +mobile: +1 818 439-4948 +pager: +1 818 430-9532 +roomNumber: 9904 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kacie Sconzo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kacie Sconzo +sn: Sconzo +description: This is Kacie Sconzo's description +facsimileTelephoneNumber: +1 804 939-7055 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 855-1718 +title: Junior Peons Punk +userPassword: Password1 +uid: SconzoK +givenName: Kacie +mail: SconzoK@7d0b6de1366f4854a2055e12fa1d2f25.bitwarden.com +carLicense: SS1DWG +departmentNumber: 6625 +employeeType: Contract +homePhone: +1 804 669-6883 +initials: K. S. +mobile: +1 804 188-6314 +pager: +1 804 624-8464 +roomNumber: 8172 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Annadiane Davids,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annadiane Davids +sn: Davids +description: This is Annadiane Davids's description +facsimileTelephoneNumber: +1 415 198-1867 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 119-1620 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: DavidsA +givenName: Annadiane +mail: DavidsA@1c617dcb4ec1414887e1b3bae62ec625.bitwarden.com +carLicense: 5GNA5T +departmentNumber: 5709 +employeeType: Employee +homePhone: +1 415 759-5394 +initials: A. D. +mobile: +1 415 252-1190 +pager: +1 415 309-5557 +roomNumber: 8505 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karan ETAS,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karan ETAS +sn: ETAS +description: This is Karan ETAS's description +facsimileTelephoneNumber: +1 206 741-3070 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 291-5741 +title: Supreme Peons Consultant +userPassword: Password1 +uid: ETASK +givenName: Karan +mail: ETASK@72edbeb53d9b4d36832bc312f776b4b1.bitwarden.com +carLicense: VSF8AS +departmentNumber: 9461 +employeeType: Employee +homePhone: +1 206 365-7958 +initials: K. E. +mobile: +1 206 635-1352 +pager: +1 206 924-8317 +roomNumber: 9923 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Betti Savoie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betti Savoie +sn: Savoie +description: This is Betti Savoie's description +facsimileTelephoneNumber: +1 206 619-4758 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 135-9090 +title: Supreme Product Development Stooge +userPassword: Password1 +uid: SavoieB +givenName: Betti +mail: SavoieB@10a46cb8875644479396c1c5e3228c3c.bitwarden.com +carLicense: DWCJ1I +departmentNumber: 9692 +employeeType: Normal +homePhone: +1 206 558-3475 +initials: B. S. +mobile: +1 206 335-4343 +pager: +1 206 819-3541 +roomNumber: 9273 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Croix Dunn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Croix Dunn +sn: Dunn +description: This is Croix Dunn's description +facsimileTelephoneNumber: +1 510 328-6290 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 234-1232 +title: Chief Management Technician +userPassword: Password1 +uid: DunnC +givenName: Croix +mail: DunnC@30a3ec06c4f44d1ba72c3001af7e8528.bitwarden.com +carLicense: YDDUTP +departmentNumber: 8925 +employeeType: Contract +homePhone: +1 510 732-6330 +initials: C. D. +mobile: +1 510 705-4963 +pager: +1 510 288-5036 +roomNumber: 9652 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardelia NowinaKonopka +sn: NowinaKonopka +description: This is Ardelia NowinaKonopka's description +facsimileTelephoneNumber: +1 408 457-7374 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 613-7880 +title: Master Administrative Grunt +userPassword: Password1 +uid: NowinaKA +givenName: Ardelia +mail: NowinaKA@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com +carLicense: RYIOXU +departmentNumber: 2252 +employeeType: Normal +homePhone: +1 408 154-3406 +initials: A. N. +mobile: +1 408 966-6728 +pager: +1 408 340-9959 +roomNumber: 9984 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Raymond McCaw,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raymond McCaw +sn: McCaw +description: This is Raymond McCaw's description +facsimileTelephoneNumber: +1 510 411-7669 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 616-7637 +title: Master Product Testing Consultant +userPassword: Password1 +uid: McCawR +givenName: Raymond +mail: McCawR@51677cc10f054f54964d7669880e03b1.bitwarden.com +carLicense: LYWSEV +departmentNumber: 8153 +employeeType: Contract +homePhone: +1 510 621-1057 +initials: R. M. +mobile: +1 510 788-2888 +pager: +1 510 850-7918 +roomNumber: 8431 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Laurna Ferner,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laurna Ferner +sn: Ferner +description: This is Laurna Ferner's description +facsimileTelephoneNumber: +1 804 745-1731 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 967-7596 +title: Supreme Payroll Manager +userPassword: Password1 +uid: FernerL +givenName: Laurna +mail: FernerL@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com +carLicense: 4V8KJ1 +departmentNumber: 1903 +employeeType: Contract +homePhone: +1 804 263-3554 +initials: L. F. +mobile: +1 804 769-9676 +pager: +1 804 958-6939 +roomNumber: 9019 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cathe Boyer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathe Boyer +sn: Boyer +description: This is Cathe Boyer's description +facsimileTelephoneNumber: +1 818 586-1908 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 829-5767 +title: Master Product Testing Punk +userPassword: Password1 +uid: BoyerC +givenName: Cathe +mail: BoyerC@bc1068ff7c5a442e884cab9ab7c4508b.bitwarden.com +carLicense: 0BORII +departmentNumber: 2207 +employeeType: Contract +homePhone: +1 818 208-8397 +initials: C. B. +mobile: +1 818 252-1043 +pager: +1 818 439-3395 +roomNumber: 8789 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hanco Elgin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanco Elgin +sn: Elgin +description: This is Hanco Elgin's description +facsimileTelephoneNumber: +1 415 828-1625 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 972-4263 +title: Associate Product Development Developer +userPassword: Password1 +uid: ElginH +givenName: Hanco +mail: ElginH@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com +carLicense: 0ERGLV +departmentNumber: 4154 +employeeType: Normal +homePhone: +1 415 556-6277 +initials: H. E. +mobile: +1 415 176-7465 +pager: +1 415 317-7383 +roomNumber: 8207 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Krier Brickman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krier Brickman +sn: Brickman +description: This is Krier Brickman's description +facsimileTelephoneNumber: +1 818 795-2311 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 480-7979 +title: Junior Management Developer +userPassword: Password1 +uid: BrickmaK +givenName: Krier +mail: BrickmaK@de96a17ce06e4487ba5f98c80195f121.bitwarden.com +carLicense: MH053J +departmentNumber: 8140 +employeeType: Normal +homePhone: +1 818 581-1063 +initials: K. B. +mobile: +1 818 211-7775 +pager: +1 818 815-4083 +roomNumber: 8624 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Aime IBNTAS,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aime IBNTAS +sn: IBNTAS +description: This is Aime IBNTAS's description +facsimileTelephoneNumber: +1 804 820-5586 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 850-8580 +title: Chief Management Punk +userPassword: Password1 +uid: IBNTASA +givenName: Aime +mail: IBNTASA@22c1ff8b360b4e918d680377dc0c9182.bitwarden.com +carLicense: Q5YTRI +departmentNumber: 7872 +employeeType: Employee +homePhone: +1 804 755-7361 +initials: A. I. +mobile: +1 804 352-3044 +pager: +1 804 513-4521 +roomNumber: 8363 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Theodore Pierson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theodore Pierson +sn: Pierson +description: This is Theodore Pierson's description +facsimileTelephoneNumber: +1 408 532-3405 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 801-1613 +title: Master Peons Technician +userPassword: Password1 +uid: PiersonT +givenName: Theodore +mail: PiersonT@59a4a020a4c74747a44b5e60109428e1.bitwarden.com +carLicense: VCWLH5 +departmentNumber: 7285 +employeeType: Contract +homePhone: +1 408 598-9240 +initials: T. P. +mobile: +1 408 398-8373 +pager: +1 408 248-4508 +roomNumber: 9757 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Monling Wormald,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monling Wormald +sn: Wormald +description: This is Monling Wormald's description +facsimileTelephoneNumber: +1 818 978-8297 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 750-1179 +title: Supreme Management Grunt +userPassword: Password1 +uid: WormaldM +givenName: Monling +mail: WormaldM@5d439b9e1cae4e6b90829e7c5b63fe41.bitwarden.com +carLicense: 31F6RX +departmentNumber: 3713 +employeeType: Contract +homePhone: +1 818 860-8717 +initials: M. W. +mobile: +1 818 108-3533 +pager: +1 818 129-9910 +roomNumber: 9669 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Amandy Poma,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amandy Poma +sn: Poma +description: This is Amandy Poma's description +facsimileTelephoneNumber: +1 415 178-8648 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 878-6187 +title: Master Peons Madonna +userPassword: Password1 +uid: PomaA +givenName: Amandy +mail: PomaA@4846d6ca825b452cab08fe6610eca31a.bitwarden.com +carLicense: 9M5Q0A +departmentNumber: 3243 +employeeType: Employee +homePhone: +1 415 863-9841 +initials: A. P. +mobile: +1 415 430-4340 +pager: +1 415 336-7116 +roomNumber: 8099 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carri Loper,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carri Loper +sn: Loper +description: This is Carri Loper's description +facsimileTelephoneNumber: +1 804 515-4326 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 299-3740 +title: Associate Product Development Czar +userPassword: Password1 +uid: LoperC +givenName: Carri +mail: LoperC@2f13ca54ee794decad24515251a42dff.bitwarden.com +carLicense: 6UT5BC +departmentNumber: 5239 +employeeType: Normal +homePhone: +1 804 898-9219 +initials: C. L. +mobile: +1 804 110-2800 +pager: +1 804 939-6496 +roomNumber: 8644 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cherri Bramlett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherri Bramlett +sn: Bramlett +description: This is Cherri Bramlett's description +facsimileTelephoneNumber: +1 213 416-9439 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 213 545-7647 +title: Master Peons Warrior +userPassword: Password1 +uid: BramletC +givenName: Cherri +mail: BramletC@ad4942d8c3c341119939c679c4dae154.bitwarden.com +carLicense: CMT665 +departmentNumber: 9793 +employeeType: Contract +homePhone: +1 213 338-1732 +initials: C. B. +mobile: +1 213 992-9264 +pager: +1 213 119-8397 +roomNumber: 8173 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tai Nerem,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tai Nerem +sn: Nerem +description: This is Tai Nerem's description +facsimileTelephoneNumber: +1 804 964-2587 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 707-3493 +title: Master Payroll Pinhead +userPassword: Password1 +uid: NeremT +givenName: Tai +mail: NeremT@b7e3c41f407e4dca81b533d904e13c76.bitwarden.com +carLicense: C18LU1 +departmentNumber: 3212 +employeeType: Normal +homePhone: +1 804 951-5524 +initials: T. N. +mobile: +1 804 486-4115 +pager: +1 804 477-2010 +roomNumber: 8140 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Luciano Homayoon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luciano Homayoon +sn: Homayoon +description: This is Luciano Homayoon's description +facsimileTelephoneNumber: +1 818 907-7120 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 805-5401 +title: Associate Product Development Stooge +userPassword: Password1 +uid: HomayooL +givenName: Luciano +mail: HomayooL@01a767a014e944228e30a2d3d6133594.bitwarden.com +carLicense: 8HBN2F +departmentNumber: 1727 +employeeType: Normal +homePhone: +1 818 500-6058 +initials: L. H. +mobile: +1 818 730-6703 +pager: +1 818 570-6674 +roomNumber: 9238 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verina Yakibchuk +sn: Yakibchuk +description: This is Verina Yakibchuk's description +facsimileTelephoneNumber: +1 408 567-9897 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 671-2951 +title: Associate Product Development Stooge +userPassword: Password1 +uid: YakibchV +givenName: Verina +mail: YakibchV@5696a65182774017a94deb08a344af69.bitwarden.com +carLicense: I4B0QJ +departmentNumber: 7825 +employeeType: Employee +homePhone: +1 408 739-6258 +initials: V. Y. +mobile: +1 408 377-7736 +pager: +1 408 609-4746 +roomNumber: 8613 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndel Gibeault +sn: Gibeault +description: This is Lyndel Gibeault's description +facsimileTelephoneNumber: +1 415 729-3082 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 325-1216 +title: Supreme Payroll Figurehead +userPassword: Password1 +uid: GibeaulL +givenName: Lyndel +mail: GibeaulL@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com +carLicense: LH3XXN +departmentNumber: 2990 +employeeType: Employee +homePhone: +1 415 695-9685 +initials: L. G. +mobile: +1 415 170-7202 +pager: +1 415 755-7709 +roomNumber: 8184 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tetsuyuki Campos +sn: Campos +description: This is Tetsuyuki Campos's description +facsimileTelephoneNumber: +1 415 112-3264 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 796-9068 +title: Junior Payroll Writer +userPassword: Password1 +uid: CamposT +givenName: Tetsuyuki +mail: CamposT@8cb1c49a16684bdda8ffa7f4489a6280.bitwarden.com +carLicense: 8F6YCQ +departmentNumber: 2248 +employeeType: Contract +homePhone: +1 415 406-2561 +initials: T. C. +mobile: +1 415 595-1334 +pager: +1 415 936-4779 +roomNumber: 8390 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lindsy Sargent +sn: Sargent +description: This is Lindsy Sargent's description +facsimileTelephoneNumber: +1 804 113-4736 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 804 120-8358 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: SargentL +givenName: Lindsy +mail: SargentL@34d5ed1c9d7241bdb443981287a04354.bitwarden.com +carLicense: XVGPQK +departmentNumber: 2569 +employeeType: Employee +homePhone: +1 804 335-6416 +initials: L. S. +mobile: +1 804 451-2869 +pager: +1 804 652-4352 +roomNumber: 8846 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Clovis Kaji,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clovis Kaji +sn: Kaji +description: This is Clovis Kaji's description +facsimileTelephoneNumber: +1 206 884-6317 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 872-8108 +title: Associate Peons Stooge +userPassword: Password1 +uid: KajiC +givenName: Clovis +mail: KajiC@80603eaa60c04031b0548162ee532532.bitwarden.com +carLicense: 8N27O6 +departmentNumber: 3681 +employeeType: Contract +homePhone: +1 206 696-9627 +initials: C. K. +mobile: +1 206 724-7191 +pager: +1 206 132-2594 +roomNumber: 8514 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Constancy Sugihara,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constancy Sugihara +sn: Sugihara +description: This is Constancy Sugihara's description +facsimileTelephoneNumber: +1 415 767-9095 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 672-2140 +title: Chief Peons Developer +userPassword: Password1 +uid: SugiharC +givenName: Constancy +mail: SugiharC@2390e6e80b5549ef9ff5de37313136db.bitwarden.com +carLicense: C767SQ +departmentNumber: 9909 +employeeType: Contract +homePhone: +1 415 975-7406 +initials: C. S. +mobile: +1 415 145-4516 +pager: +1 415 677-2247 +roomNumber: 8733 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Micki Pownall,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micki Pownall +sn: Pownall +description: This is Micki Pownall's description +facsimileTelephoneNumber: +1 213 436-6653 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 213 927-6917 +title: Master Janitorial Artist +userPassword: Password1 +uid: PownallM +givenName: Micki +mail: PownallM@40f66c0e51ca46c99bb0961cc624fcc8.bitwarden.com +carLicense: 44EN3X +departmentNumber: 1608 +employeeType: Employee +homePhone: +1 213 658-9576 +initials: M. P. +mobile: +1 213 426-6056 +pager: +1 213 564-8743 +roomNumber: 8466 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Norma Rabipour,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norma Rabipour +sn: Rabipour +description: This is Norma Rabipour's description +facsimileTelephoneNumber: +1 415 497-3148 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 820-8837 +title: Master Payroll Pinhead +userPassword: Password1 +uid: RabipouN +givenName: Norma +mail: RabipouN@2a72bc736ffb4d18ae10b2685172d382.bitwarden.com +carLicense: VSJ5UK +departmentNumber: 1029 +employeeType: Employee +homePhone: +1 415 694-7439 +initials: N. R. +mobile: +1 415 329-9824 +pager: +1 415 412-9724 +roomNumber: 8944 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sylvie Kapuscinski +sn: Kapuscinski +description: This is Sylvie Kapuscinski's description +facsimileTelephoneNumber: +1 213 803-3933 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 598-9526 +title: Supreme Payroll President +userPassword: Password1 +uid: KapusciS +givenName: Sylvie +mail: KapusciS@ecc23b0febab430da88b21a7330ed12e.bitwarden.com +carLicense: MUJT6K +departmentNumber: 2559 +employeeType: Normal +homePhone: +1 213 631-8195 +initials: S. K. +mobile: +1 213 759-5165 +pager: +1 213 368-2771 +roomNumber: 9162 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mietek Nadon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mietek Nadon +sn: Nadon +description: This is Mietek Nadon's description +facsimileTelephoneNumber: +1 213 691-6231 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 263-9334 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: NadonM +givenName: Mietek +mail: NadonM@bbf5361396904a4082fadb57709a5d90.bitwarden.com +carLicense: CC26G6 +departmentNumber: 6797 +employeeType: Employee +homePhone: +1 213 833-3274 +initials: M. N. +mobile: +1 213 228-8864 +pager: +1 213 181-4884 +roomNumber: 8938 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sophie Malhotra,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sophie Malhotra +sn: Malhotra +description: This is Sophie Malhotra's description +facsimileTelephoneNumber: +1 804 401-5742 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 842-9768 +title: Supreme Peons Manager +userPassword: Password1 +uid: MalhotrS +givenName: Sophie +mail: MalhotrS@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com +carLicense: WSWK49 +departmentNumber: 8711 +employeeType: Employee +homePhone: +1 804 274-3056 +initials: S. M. +mobile: +1 804 944-7996 +pager: +1 804 665-9307 +roomNumber: 9996 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sichao Minichillo +sn: Minichillo +description: This is Sichao Minichillo's description +facsimileTelephoneNumber: +1 510 888-9774 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 394-2461 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: MinichiS +givenName: Sichao +mail: MinichiS@bfd0acda55624910b3eb6aeadd91155d.bitwarden.com +carLicense: YCDVYG +departmentNumber: 1106 +employeeType: Employee +homePhone: +1 510 711-1957 +initials: S. M. +mobile: +1 510 834-1045 +pager: +1 510 887-1841 +roomNumber: 9246 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Prue Zollman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prue Zollman +sn: Zollman +description: This is Prue Zollman's description +facsimileTelephoneNumber: +1 415 132-9605 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 925-1465 +title: Junior Peons Mascot +userPassword: Password1 +uid: ZollmanP +givenName: Prue +mail: ZollmanP@073d9b40128d435294a7cce9001bca7b.bitwarden.com +carLicense: MQ6XYT +departmentNumber: 2380 +employeeType: Normal +homePhone: +1 415 695-2302 +initials: P. Z. +mobile: +1 415 378-9623 +pager: +1 415 216-6537 +roomNumber: 8784 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnnHoon Rezzik +sn: Rezzik +description: This is AnnHoon Rezzik's description +facsimileTelephoneNumber: +1 818 923-7614 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 563-5753 +title: Associate Product Development Pinhead +userPassword: Password1 +uid: RezzikA +givenName: AnnHoon +mail: RezzikA@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com +carLicense: QDDGVT +departmentNumber: 5284 +employeeType: Employee +homePhone: +1 818 914-3367 +initials: A. R. +mobile: +1 818 533-4576 +pager: +1 818 383-3136 +roomNumber: 8391 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shaughan Lockard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaughan Lockard +sn: Lockard +description: This is Shaughan Lockard's description +facsimileTelephoneNumber: +1 818 807-4582 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 585-9748 +title: Supreme Management Fellow +userPassword: Password1 +uid: LockardS +givenName: Shaughan +mail: LockardS@954efb273c2f4e7c983d0f352f5fd30d.bitwarden.com +carLicense: 87IJAR +departmentNumber: 9854 +employeeType: Contract +homePhone: +1 818 405-6214 +initials: S. L. +mobile: +1 818 567-2655 +pager: +1 818 444-9695 +roomNumber: 9039 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lonni Wurtz +sn: Wurtz +description: This is Lonni Wurtz's description +facsimileTelephoneNumber: +1 408 273-8982 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 945-2059 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: WurtzL +givenName: Lonni +mail: WurtzL@1624a6875b7a4c1a90bfa41548cd44d0.bitwarden.com +carLicense: 5K3HN2 +departmentNumber: 6480 +employeeType: Employee +homePhone: +1 408 711-7010 +initials: L. W. +mobile: +1 408 930-6102 +pager: +1 408 508-4596 +roomNumber: 9223 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marga Hao,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marga Hao +sn: Hao +description: This is Marga Hao's description +facsimileTelephoneNumber: +1 415 121-4715 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 415 395-9906 +title: Supreme Peons Writer +userPassword: Password1 +uid: HaoM +givenName: Marga +mail: HaoM@cf1f0125e0794b80b348dddaa747ca09.bitwarden.com +carLicense: 823KKK +departmentNumber: 6951 +employeeType: Normal +homePhone: +1 415 485-5142 +initials: M. H. +mobile: +1 415 663-2442 +pager: +1 415 948-9642 +roomNumber: 9692 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdy Hockaday +sn: Hockaday +description: This is Magdy Hockaday's description +facsimileTelephoneNumber: +1 206 710-5198 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 387-2479 +title: Chief Product Testing Figurehead +userPassword: Password1 +uid: HockadaM +givenName: Magdy +mail: HockadaM@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com +carLicense: X11J6I +departmentNumber: 6955 +employeeType: Employee +homePhone: +1 206 354-2175 +initials: M. H. +mobile: +1 206 299-3244 +pager: +1 206 101-3432 +roomNumber: 9763 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elset Yach,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elset Yach +sn: Yach +description: This is Elset Yach's description +facsimileTelephoneNumber: +1 206 778-5947 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 313-6681 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: YachE +givenName: Elset +mail: YachE@2b23dbb27baf478681a802c2510dd0df.bitwarden.com +carLicense: KQ5R94 +departmentNumber: 5822 +employeeType: Contract +homePhone: +1 206 600-2218 +initials: E. Y. +mobile: +1 206 333-2811 +pager: +1 206 123-6386 +roomNumber: 9176 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jaynie Moniter,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaynie Moniter +sn: Moniter +description: This is Jaynie Moniter's description +facsimileTelephoneNumber: +1 804 338-6189 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 804 308-4840 +title: Junior Administrative Punk +userPassword: Password1 +uid: MoniterJ +givenName: Jaynie +mail: MoniterJ@b1d81d4ed0934642a942a3e784da5fea.bitwarden.com +carLicense: JE3V76 +departmentNumber: 4273 +employeeType: Normal +homePhone: +1 804 874-3051 +initials: J. M. +mobile: +1 804 257-9529 +pager: +1 804 234-3705 +roomNumber: 9749 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Penelopa Kenik,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Penelopa Kenik +sn: Kenik +description: This is Penelopa Kenik's description +facsimileTelephoneNumber: +1 213 174-3613 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 769-3740 +title: Associate Administrative Writer +userPassword: Password1 +uid: KenikP +givenName: Penelopa +mail: KenikP@7ec2199d42d34d768c9936149cbba49a.bitwarden.com +carLicense: LRP3UI +departmentNumber: 3695 +employeeType: Normal +homePhone: +1 213 906-7000 +initials: P. K. +mobile: +1 213 753-8173 +pager: +1 213 860-4108 +roomNumber: 9019 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nam Mersch,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nam Mersch +sn: Mersch +description: This is Nam Mersch's description +facsimileTelephoneNumber: +1 415 563-5864 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 538-4347 +title: Junior Administrative Mascot +userPassword: Password1 +uid: MerschN +givenName: Nam +mail: MerschN@f4c3a3037e484ed2a44d9517cbd72877.bitwarden.com +carLicense: C3NO9R +departmentNumber: 1201 +employeeType: Employee +homePhone: +1 415 723-6914 +initials: N. M. +mobile: +1 415 853-8637 +pager: +1 415 280-6502 +roomNumber: 8686 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Valida US,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valida US +sn: US +description: This is Valida US's description +facsimileTelephoneNumber: +1 415 281-1125 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 401-3920 +title: Associate Management Admin +userPassword: Password1 +uid: USV +givenName: Valida +mail: USV@7ed3387e63ee42a8ac53af5791774853.bitwarden.com +carLicense: IAI3UB +departmentNumber: 1637 +employeeType: Normal +homePhone: +1 415 909-8906 +initials: V. U. +mobile: +1 415 390-5406 +pager: +1 415 632-2549 +roomNumber: 9842 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jillian Pde,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jillian Pde +sn: Pde +description: This is Jillian Pde's description +facsimileTelephoneNumber: +1 818 148-7893 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 818 502-6345 +title: Chief Human Resources Technician +userPassword: Password1 +uid: PdeJ +givenName: Jillian +mail: PdeJ@006960dc799e4266a280a383e581ea9c.bitwarden.com +carLicense: J84FH7 +departmentNumber: 4925 +employeeType: Normal +homePhone: +1 818 735-8379 +initials: J. P. +mobile: +1 818 331-2791 +pager: +1 818 143-1195 +roomNumber: 8082 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaz Toastmasters +sn: Toastmasters +description: This is Kaz Toastmasters's description +facsimileTelephoneNumber: +1 408 814-5173 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 294-5266 +title: Associate Administrative Warrior +userPassword: Password1 +uid: ToastmaK +givenName: Kaz +mail: ToastmaK@2079b61842c64cb8a53095d0062cfb7c.bitwarden.com +carLicense: 1IWBTP +departmentNumber: 3699 +employeeType: Contract +homePhone: +1 408 968-7871 +initials: K. T. +mobile: +1 408 743-1221 +pager: +1 408 369-7439 +roomNumber: 9839 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kimberlee Gaube +sn: Gaube +description: This is Kimberlee Gaube's description +facsimileTelephoneNumber: +1 213 810-5183 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 705-1564 +title: Master Human Resources Director +userPassword: Password1 +uid: GaubeK +givenName: Kimberlee +mail: GaubeK@ce4d0d0fb96d4c2eaa1d4595e57562a4.bitwarden.com +carLicense: UHHBD8 +departmentNumber: 9087 +employeeType: Normal +homePhone: +1 213 716-7236 +initials: K. G. +mobile: +1 213 463-7338 +pager: +1 213 869-4979 +roomNumber: 8596 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Everette Klaassen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Everette Klaassen +sn: Klaassen +description: This is Everette Klaassen's description +facsimileTelephoneNumber: +1 415 265-7216 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 448-6107 +title: Chief Administrative Assistant +userPassword: Password1 +uid: KlaasseE +givenName: Everette +mail: KlaasseE@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com +carLicense: Y0FEML +departmentNumber: 9883 +employeeType: Normal +homePhone: +1 415 544-3887 +initials: E. K. +mobile: +1 415 558-2665 +pager: +1 415 564-9227 +roomNumber: 8307 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernette PrestonThomas +sn: PrestonThomas +description: This is Bernette PrestonThomas's description +facsimileTelephoneNumber: +1 213 369-5366 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 342-8588 +title: Supreme Peons Pinhead +userPassword: Password1 +uid: PrestonB +givenName: Bernette +mail: PrestonB@63acb1cef0d64271b1836eb0bdd826d3.bitwarden.com +carLicense: X3T6OU +departmentNumber: 5409 +employeeType: Normal +homePhone: +1 213 670-1421 +initials: B. P. +mobile: +1 213 936-9578 +pager: +1 213 952-5957 +roomNumber: 8669 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Selime Helstab,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selime Helstab +sn: Helstab +description: This is Selime Helstab's description +facsimileTelephoneNumber: +1 818 435-8589 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 535-8431 +title: Junior Human Resources Fellow +userPassword: Password1 +uid: HelstabS +givenName: Selime +mail: HelstabS@625bebb6da704a99ac3b3be79cc8544f.bitwarden.com +carLicense: 6PQKNG +departmentNumber: 5199 +employeeType: Employee +homePhone: +1 818 190-3358 +initials: S. H. +mobile: +1 818 971-7977 +pager: +1 818 800-1052 +roomNumber: 8663 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Norean Wilford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norean Wilford +sn: Wilford +description: This is Norean Wilford's description +facsimileTelephoneNumber: +1 415 712-4846 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 123-6384 +title: Associate Human Resources Admin +userPassword: Password1 +uid: WilfordN +givenName: Norean +mail: WilfordN@a14bb54592f8410c82402fefd034b4c8.bitwarden.com +carLicense: QC0RAX +departmentNumber: 3324 +employeeType: Normal +homePhone: +1 415 932-2567 +initials: N. W. +mobile: +1 415 562-6080 +pager: +1 415 722-2085 +roomNumber: 8239 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bebe Spurway,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bebe Spurway +sn: Spurway +description: This is Bebe Spurway's description +facsimileTelephoneNumber: +1 213 176-9166 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 503-4126 +title: Master Peons Sales Rep +userPassword: Password1 +uid: SpurwayB +givenName: Bebe +mail: SpurwayB@9600bec077154f61b674051df84e620d.bitwarden.com +carLicense: WUNG9I +departmentNumber: 1403 +employeeType: Contract +homePhone: +1 213 539-2342 +initials: B. S. +mobile: +1 213 815-9772 +pager: +1 213 990-8697 +roomNumber: 9858 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alka Kowal,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alka Kowal +sn: Kowal +description: This is Alka Kowal's description +facsimileTelephoneNumber: +1 408 215-5688 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 774-8150 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: KowalA +givenName: Alka +mail: KowalA@b6629f19402c4b2bb567e45ac5181f90.bitwarden.com +carLicense: 4FE4WC +departmentNumber: 1324 +employeeType: Employee +homePhone: +1 408 591-7767 +initials: A. K. +mobile: +1 408 640-7555 +pager: +1 408 623-6942 +roomNumber: 9250 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Michele Biggers,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michele Biggers +sn: Biggers +description: This is Michele Biggers's description +facsimileTelephoneNumber: +1 206 709-7166 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 271-8896 +title: Master Product Development Developer +userPassword: Password1 +uid: BiggersM +givenName: Michele +mail: BiggersM@b6eb7288ffdc4998a186a638d57adec2.bitwarden.com +carLicense: PU9XMB +departmentNumber: 8706 +employeeType: Contract +homePhone: +1 206 382-8030 +initials: M. B. +mobile: +1 206 290-4157 +pager: +1 206 713-1171 +roomNumber: 9402 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Connie Stotz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Connie Stotz +sn: Stotz +description: This is Connie Stotz's description +facsimileTelephoneNumber: +1 213 509-9298 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 213 106-7699 +title: Associate Payroll Manager +userPassword: Password1 +uid: StotzC +givenName: Connie +mail: StotzC@2b9187d4c2e04433a4bddadbfe09ed1f.bitwarden.com +carLicense: A0SJ1E +departmentNumber: 9242 +employeeType: Employee +homePhone: +1 213 644-9292 +initials: C. S. +mobile: +1 213 906-3375 +pager: +1 213 864-3139 +roomNumber: 8219 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Layne Efstration,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Layne Efstration +sn: Efstration +description: This is Layne Efstration's description +facsimileTelephoneNumber: +1 818 226-7032 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 239-6759 +title: Master Peons Madonna +userPassword: Password1 +uid: EfstratL +givenName: Layne +mail: EfstratL@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com +carLicense: OAIMNI +departmentNumber: 3490 +employeeType: Employee +homePhone: +1 818 232-3755 +initials: L. E. +mobile: +1 818 862-3771 +pager: +1 818 864-1064 +roomNumber: 8516 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurora Petrescu +sn: Petrescu +description: This is Aurora Petrescu's description +facsimileTelephoneNumber: +1 213 429-6800 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 707-3226 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: PetrescA +givenName: Aurora +mail: PetrescA@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com +carLicense: 8N1ACE +departmentNumber: 9515 +employeeType: Contract +homePhone: +1 213 407-7087 +initials: A. P. +mobile: +1 213 724-3344 +pager: +1 213 843-5928 +roomNumber: 9746 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ankie Commazzi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ankie Commazzi +sn: Commazzi +description: This is Ankie Commazzi's description +facsimileTelephoneNumber: +1 206 896-5271 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 670-4412 +title: Junior Product Development Sales Rep +userPassword: Password1 +uid: CommazzA +givenName: Ankie +mail: CommazzA@c00094c05d9e45abbdfd0c40940b13a0.bitwarden.com +carLicense: H25DOF +departmentNumber: 1039 +employeeType: Normal +homePhone: +1 206 624-9734 +initials: A. C. +mobile: +1 206 718-5730 +pager: +1 206 542-2714 +roomNumber: 8136 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cubicle Qu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cubicle Qu +sn: Qu +description: This is Cubicle Qu's description +facsimileTelephoneNumber: +1 206 395-6432 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 129-7314 +title: Chief Product Development Admin +userPassword: Password1 +uid: QuC +givenName: Cubicle +mail: QuC@32c1a38264404bd194fb0ceed714adf7.bitwarden.com +carLicense: DFO86N +departmentNumber: 1136 +employeeType: Employee +homePhone: +1 206 586-8987 +initials: C. Q. +mobile: +1 206 572-1823 +pager: +1 206 341-5439 +roomNumber: 8974 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Wassim Charette,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wassim Charette +sn: Charette +description: This is Wassim Charette's description +facsimileTelephoneNumber: +1 818 343-3200 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 417-7317 +title: Junior Product Development Consultant +userPassword: Password1 +uid: CharettW +givenName: Wassim +mail: CharettW@39671d86e7aa455f86029b2564b66afc.bitwarden.com +carLicense: GMIOVB +departmentNumber: 7025 +employeeType: Contract +homePhone: +1 818 861-4452 +initials: W. C. +mobile: +1 818 971-2852 +pager: +1 818 202-6877 +roomNumber: 9599 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kas Audet,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kas Audet +sn: Audet +description: This is Kas Audet's description +facsimileTelephoneNumber: +1 415 411-3829 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 415 263-7510 +title: Master Product Development Grunt +userPassword: Password1 +uid: AudetK +givenName: Kas +mail: AudetK@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com +carLicense: U14FWR +departmentNumber: 6602 +employeeType: Normal +homePhone: +1 415 552-2035 +initials: K. A. +mobile: +1 415 288-9903 +pager: +1 415 457-7173 +roomNumber: 9441 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Emalee Lockett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emalee Lockett +sn: Lockett +description: This is Emalee Lockett's description +facsimileTelephoneNumber: +1 206 214-4676 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 293-5266 +title: Chief Product Testing Director +userPassword: Password1 +uid: LockettE +givenName: Emalee +mail: LockettE@37913e5a58404daf99d21d566bf33e43.bitwarden.com +carLicense: UG0WWF +departmentNumber: 7765 +employeeType: Employee +homePhone: +1 206 787-8267 +initials: E. L. +mobile: +1 206 425-6719 +pager: +1 206 374-2256 +roomNumber: 8792 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Janell Kurniawan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janell Kurniawan +sn: Kurniawan +description: This is Janell Kurniawan's description +facsimileTelephoneNumber: +1 213 658-3569 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 529-2719 +title: Junior Peons Sales Rep +userPassword: Password1 +uid: KurniawJ +givenName: Janell +mail: KurniawJ@8429461810c443b49add09521f9c6b46.bitwarden.com +carLicense: DTH1BA +departmentNumber: 7583 +employeeType: Normal +homePhone: +1 213 112-4482 +initials: J. K. +mobile: +1 213 524-5786 +pager: +1 213 140-6502 +roomNumber: 9613 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Georganne Munikoti,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georganne Munikoti +sn: Munikoti +description: This is Georganne Munikoti's description +facsimileTelephoneNumber: +1 408 466-9308 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 866-6173 +title: Junior Payroll Punk +userPassword: Password1 +uid: MunikotG +givenName: Georganne +mail: MunikotG@fb3704e4d78c445393093a687cfa48ee.bitwarden.com +carLicense: XGTQC2 +departmentNumber: 4846 +employeeType: Contract +homePhone: +1 408 466-4831 +initials: G. M. +mobile: +1 408 691-9457 +pager: +1 408 866-3714 +roomNumber: 9861 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Neala Casalou,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neala Casalou +sn: Casalou +description: This is Neala Casalou's description +facsimileTelephoneNumber: +1 510 940-7197 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 254-7147 +title: Chief Administrative Technician +userPassword: Password1 +uid: CasalouN +givenName: Neala +mail: CasalouN@8ec44466df45450ab3876834678ca129.bitwarden.com +carLicense: MOXDEB +departmentNumber: 4483 +employeeType: Normal +homePhone: +1 510 712-7883 +initials: N. C. +mobile: +1 510 969-7948 +pager: +1 510 529-9526 +roomNumber: 9884 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hai Grubbs,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hai Grubbs +sn: Grubbs +description: This is Hai Grubbs's description +facsimileTelephoneNumber: +1 804 810-4299 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 113-4428 +title: Chief Human Resources Director +userPassword: Password1 +uid: GrubbsH +givenName: Hai +mail: GrubbsH@cb980ae301084964a9693d89f9fb2ea1.bitwarden.com +carLicense: GL6VHP +departmentNumber: 9204 +employeeType: Employee +homePhone: +1 804 763-4293 +initials: H. G. +mobile: +1 804 426-4878 +pager: +1 804 387-5742 +roomNumber: 9885 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Octavio Kamboh +sn: Kamboh +description: This is Octavio Kamboh's description +facsimileTelephoneNumber: +1 415 676-9092 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 415 509-2004 +title: Junior Product Testing Director +userPassword: Password1 +uid: KambohO +givenName: Octavio +mail: KambohO@fbe76a3d276b4f1cb5ff4b0955ac6aa4.bitwarden.com +carLicense: NXQHMP +departmentNumber: 8817 +employeeType: Contract +homePhone: +1 415 820-5408 +initials: O. K. +mobile: +1 415 259-8347 +pager: +1 415 711-9485 +roomNumber: 9064 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alyssa Strackholder,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alyssa Strackholder +sn: Strackholder +description: This is Alyssa Strackholder's description +facsimileTelephoneNumber: +1 510 298-7260 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 510 660-6784 +title: Supreme Peons Technician +userPassword: Password1 +uid: StrackhA +givenName: Alyssa +mail: StrackhA@e9e9b377fde94158b464d15a038dd043.bitwarden.com +carLicense: ELNOU2 +departmentNumber: 6160 +employeeType: Contract +homePhone: +1 510 660-3714 +initials: A. S. +mobile: +1 510 396-9457 +pager: +1 510 283-5906 +roomNumber: 9907 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jossine Hoddinott,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jossine Hoddinott +sn: Hoddinott +description: This is Jossine Hoddinott's description +facsimileTelephoneNumber: +1 415 950-1886 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 961-1963 +title: Chief Management Punk +userPassword: Password1 +uid: HoddinoJ +givenName: Jossine +mail: HoddinoJ@dde41eef116c45e7ad8c210d83eced54.bitwarden.com +carLicense: IFQOCY +departmentNumber: 2992 +employeeType: Employee +homePhone: +1 415 407-2581 +initials: J. H. +mobile: +1 415 187-5373 +pager: +1 415 107-9789 +roomNumber: 8794 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Phyllis Majd,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phyllis Majd +sn: Majd +description: This is Phyllis Majd's description +facsimileTelephoneNumber: +1 408 354-7525 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 408 720-9154 +title: Master Management Artist +userPassword: Password1 +uid: MajdP +givenName: Phyllis +mail: MajdP@0944047161f34c1d8982efcddb384be7.bitwarden.com +carLicense: 8MC9WP +departmentNumber: 3216 +employeeType: Contract +homePhone: +1 408 637-2407 +initials: P. M. +mobile: +1 408 741-7482 +pager: +1 408 354-9351 +roomNumber: 8923 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquette Cribbs +sn: Cribbs +description: This is Jacquette Cribbs's description +facsimileTelephoneNumber: +1 510 210-7789 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 581-1754 +title: Junior Payroll Stooge +userPassword: Password1 +uid: CribbsJ +givenName: Jacquette +mail: CribbsJ@93c66893cda74239a9a56d1199a44457.bitwarden.com +carLicense: STR008 +departmentNumber: 7143 +employeeType: Employee +homePhone: +1 510 652-7702 +initials: J. C. +mobile: +1 510 623-3137 +pager: +1 510 413-2720 +roomNumber: 8193 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nevil Rosch,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nevil Rosch +sn: Rosch +description: This is Nevil Rosch's description +facsimileTelephoneNumber: +1 510 656-8516 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 424-7330 +title: Junior Human Resources Stooge +userPassword: Password1 +uid: RoschN +givenName: Nevil +mail: RoschN@624c1f5dcdc642f18cde445a6f13923f.bitwarden.com +carLicense: Q9ILTK +departmentNumber: 8018 +employeeType: Employee +homePhone: +1 510 638-3969 +initials: N. R. +mobile: +1 510 936-6800 +pager: +1 510 185-4749 +roomNumber: 8030 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lyndon Rao,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndon Rao +sn: Rao +description: This is Lyndon Rao's description +facsimileTelephoneNumber: +1 408 542-9810 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 838-5575 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: RaoL +givenName: Lyndon +mail: RaoL@e231c4794bfb41dabd87a985afed1418.bitwarden.com +carLicense: W7G608 +departmentNumber: 8207 +employeeType: Contract +homePhone: +1 408 371-5199 +initials: L. R. +mobile: +1 408 120-2128 +pager: +1 408 219-1609 +roomNumber: 8557 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karina Kempffer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karina Kempffer +sn: Kempffer +description: This is Karina Kempffer's description +facsimileTelephoneNumber: +1 206 832-2766 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 125-5374 +title: Chief Payroll Admin +userPassword: Password1 +uid: KempffeK +givenName: Karina +mail: KempffeK@efcd32daf30f47bab7fc31cf8968544d.bitwarden.com +carLicense: IJFMRR +departmentNumber: 3449 +employeeType: Contract +homePhone: +1 206 106-2075 +initials: K. K. +mobile: +1 206 529-4146 +pager: +1 206 874-3726 +roomNumber: 9950 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Khalil Popovich,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khalil Popovich +sn: Popovich +description: This is Khalil Popovich's description +facsimileTelephoneNumber: +1 206 314-5751 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 415-5046 +title: Master Administrative Admin +userPassword: Password1 +uid: PopovicK +givenName: Khalil +mail: PopovicK@800d6472c1b2428eb81e895d2bd61870.bitwarden.com +carLicense: OGRHM9 +departmentNumber: 7764 +employeeType: Normal +homePhone: +1 206 872-1775 +initials: K. P. +mobile: +1 206 810-2178 +pager: +1 206 543-9180 +roomNumber: 8074 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Thomasa Dann,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomasa Dann +sn: Dann +description: This is Thomasa Dann's description +facsimileTelephoneNumber: +1 818 728-3682 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 818 902-1225 +title: Master Administrative Mascot +userPassword: Password1 +uid: DannT +givenName: Thomasa +mail: DannT@1ec01709e9aa47c08c93dbd75ae81ee4.bitwarden.com +carLicense: PTYGAL +departmentNumber: 9003 +employeeType: Normal +homePhone: +1 818 771-9062 +initials: T. D. +mobile: +1 818 475-4053 +pager: +1 818 778-1076 +roomNumber: 8391 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jill Hollenbeck +sn: Hollenbeck +description: This is Jill Hollenbeck's description +facsimileTelephoneNumber: +1 415 661-4434 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 376-9699 +title: Supreme Product Development Director +userPassword: Password1 +uid: HollenbJ +givenName: Jill +mail: HollenbJ@64c82d0938384c03a8fdb8436b666c54.bitwarden.com +carLicense: TK7SFE +departmentNumber: 5817 +employeeType: Employee +homePhone: +1 415 755-4606 +initials: J. H. +mobile: +1 415 211-4950 +pager: +1 415 345-7700 +roomNumber: 9647 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rocke Tedrick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rocke Tedrick +sn: Tedrick +description: This is Rocke Tedrick's description +facsimileTelephoneNumber: +1 818 930-3550 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 606-2937 +title: Chief Management Writer +userPassword: Password1 +uid: TedrickR +givenName: Rocke +mail: TedrickR@19e6520548714755abff0e45bce4810c.bitwarden.com +carLicense: 4C3S34 +departmentNumber: 3099 +employeeType: Contract +homePhone: +1 818 501-6996 +initials: R. T. +mobile: +1 818 450-2237 +pager: +1 818 435-5018 +roomNumber: 9183 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Subra Howie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subra Howie +sn: Howie +description: This is Subra Howie's description +facsimileTelephoneNumber: +1 206 670-3489 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 780-1104 +title: Junior Human Resources Janitor +userPassword: Password1 +uid: HowieS +givenName: Subra +mail: HowieS@1d41a9185db448b89563a6b96b582da2.bitwarden.com +carLicense: NDH1IG +departmentNumber: 3548 +employeeType: Contract +homePhone: +1 206 338-4539 +initials: S. H. +mobile: +1 206 594-2687 +pager: +1 206 338-6160 +roomNumber: 9097 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dasi Rabon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dasi Rabon +sn: Rabon +description: This is Dasi Rabon's description +facsimileTelephoneNumber: +1 510 427-4892 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 696-5400 +title: Junior Administrative Dictator +userPassword: Password1 +uid: RabonD +givenName: Dasi +mail: RabonD@27fbf31dae1b43168fe83a06d4b95ff2.bitwarden.com +carLicense: NTQTND +departmentNumber: 4720 +employeeType: Employee +homePhone: +1 510 800-3352 +initials: D. R. +mobile: +1 510 460-5685 +pager: +1 510 279-3184 +roomNumber: 8923 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ivor Shennan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivor Shennan +sn: Shennan +description: This is Ivor Shennan's description +facsimileTelephoneNumber: +1 213 966-6324 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 768-9063 +title: Associate Administrative Fellow +userPassword: Password1 +uid: ShennanI +givenName: Ivor +mail: ShennanI@45381f65705a4542858d101bca1876a8.bitwarden.com +carLicense: QRFHAJ +departmentNumber: 2059 +employeeType: Employee +homePhone: +1 213 929-5246 +initials: I. S. +mobile: +1 213 201-6510 +pager: +1 213 524-7486 +roomNumber: 9679 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tosca Linfield,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tosca Linfield +sn: Linfield +description: This is Tosca Linfield's description +facsimileTelephoneNumber: +1 206 808-4897 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 132-2221 +title: Junior Peons Admin +userPassword: Password1 +uid: LinfielT +givenName: Tosca +mail: LinfielT@2c480a27811f43a0bbdfebcf0cd44264.bitwarden.com +carLicense: TYTQBS +departmentNumber: 8133 +employeeType: Contract +homePhone: +1 206 630-8665 +initials: T. L. +mobile: +1 206 687-2108 +pager: +1 206 232-9743 +roomNumber: 9311 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shandee Vosup,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shandee Vosup +sn: Vosup +description: This is Shandee Vosup's description +facsimileTelephoneNumber: +1 415 178-9308 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 555-2457 +title: Supreme Product Testing Sales Rep +userPassword: Password1 +uid: VosupS +givenName: Shandee +mail: VosupS@daecf76d8c3940f1a79ca6f29fd09de1.bitwarden.com +carLicense: B2610T +departmentNumber: 3876 +employeeType: Contract +homePhone: +1 415 825-4866 +initials: S. V. +mobile: +1 415 922-2347 +pager: +1 415 214-3055 +roomNumber: 9735 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Janith Gursin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janith Gursin +sn: Gursin +description: This is Janith Gursin's description +facsimileTelephoneNumber: +1 213 459-3665 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 530-3119 +title: Master Product Testing Grunt +userPassword: Password1 +uid: GursinJ +givenName: Janith +mail: GursinJ@a26129e30095439fb00cad0905c71920.bitwarden.com +carLicense: GVV47Y +departmentNumber: 7276 +employeeType: Normal +homePhone: +1 213 105-2964 +initials: J. G. +mobile: +1 213 557-9471 +pager: +1 213 670-6554 +roomNumber: 8264 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rora Kingrey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rora Kingrey +sn: Kingrey +description: This is Rora Kingrey's description +facsimileTelephoneNumber: +1 408 193-6508 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 379-1779 +title: Master Product Development Technician +userPassword: Password1 +uid: KingreyR +givenName: Rora +mail: KingreyR@1baee55063104657aab587314d3f4ff6.bitwarden.com +carLicense: 2O4A28 +departmentNumber: 5307 +employeeType: Contract +homePhone: +1 408 261-2120 +initials: R. K. +mobile: +1 408 300-1263 +pager: +1 408 964-3254 +roomNumber: 9007 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacenta Papageorges +sn: Papageorges +description: This is Jacenta Papageorges's description +facsimileTelephoneNumber: +1 415 526-7318 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 782-3856 +title: Associate Product Development Architect +userPassword: Password1 +uid: PapageoJ +givenName: Jacenta +mail: PapageoJ@d70cda87f2da4062bf59637caf72c7ba.bitwarden.com +carLicense: P71BY0 +departmentNumber: 3307 +employeeType: Normal +homePhone: +1 415 186-1915 +initials: J. P. +mobile: +1 415 148-3700 +pager: +1 415 768-7081 +roomNumber: 9353 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rhett Vavroch,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhett Vavroch +sn: Vavroch +description: This is Rhett Vavroch's description +facsimileTelephoneNumber: +1 408 802-4643 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 408 917-2294 +title: Supreme Peons Grunt +userPassword: Password1 +uid: VavrochR +givenName: Rhett +mail: VavrochR@8b7fc53ad9d44eee917cc3e25b895199.bitwarden.com +carLicense: RR5FDY +departmentNumber: 2135 +employeeType: Contract +homePhone: +1 408 951-4563 +initials: R. V. +mobile: +1 408 509-8648 +pager: +1 408 227-8571 +roomNumber: 9785 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Allene Izzotti,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allene Izzotti +sn: Izzotti +description: This is Allene Izzotti's description +facsimileTelephoneNumber: +1 510 393-6891 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 422-9754 +title: Junior Peons Artist +userPassword: Password1 +uid: IzzottiA +givenName: Allene +mail: IzzottiA@72e93c7c4c5a421bbcbde1495b495745.bitwarden.com +carLicense: 8PX8OL +departmentNumber: 9484 +employeeType: Contract +homePhone: +1 510 517-2651 +initials: A. I. +mobile: +1 510 848-7206 +pager: +1 510 359-3404 +roomNumber: 8644 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ag Charlino,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ag Charlino +sn: Charlino +description: This is Ag Charlino's description +facsimileTelephoneNumber: +1 804 382-7215 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 712-6284 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: CharlinA +givenName: Ag +mail: CharlinA@b7be2bf29b064b349a27848f01a085d8.bitwarden.com +carLicense: EXS5EU +departmentNumber: 9189 +employeeType: Employee +homePhone: +1 804 489-2019 +initials: A. C. +mobile: +1 804 496-8780 +pager: +1 804 741-7219 +roomNumber: 8351 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Archie Kenyon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Archie Kenyon +sn: Kenyon +description: This is Archie Kenyon's description +facsimileTelephoneNumber: +1 510 259-7309 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 854-9145 +title: Master Administrative Architect +userPassword: Password1 +uid: KenyonA +givenName: Archie +mail: KenyonA@31b13d20c58546e5aa89cbb19323b703.bitwarden.com +carLicense: ECP7SG +departmentNumber: 9287 +employeeType: Contract +homePhone: +1 510 304-4947 +initials: A. K. +mobile: +1 510 888-9214 +pager: +1 510 615-2186 +roomNumber: 8603 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Malissia Albright,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malissia Albright +sn: Albright +description: This is Malissia Albright's description +facsimileTelephoneNumber: +1 408 350-1675 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 445-5923 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: AlbrighM +givenName: Malissia +mail: AlbrighM@09779ad61d2a4fdab823e1d8c1f5f2c0.bitwarden.com +carLicense: PMQ0LN +departmentNumber: 5443 +employeeType: Employee +homePhone: +1 408 447-1406 +initials: M. A. +mobile: +1 408 298-4537 +pager: +1 408 932-8473 +roomNumber: 8235 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mccauley Guillet,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mccauley Guillet +sn: Guillet +description: This is Mccauley Guillet's description +facsimileTelephoneNumber: +1 818 490-9719 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 410-8104 +title: Junior Peons Figurehead +userPassword: Password1 +uid: GuilletM +givenName: Mccauley +mail: GuilletM@58f86a0b49c64ddabc6d69323185b642.bitwarden.com +carLicense: T1UMD4 +departmentNumber: 6440 +employeeType: Normal +homePhone: +1 818 748-5085 +initials: M. G. +mobile: +1 818 730-7660 +pager: +1 818 811-4695 +roomNumber: 8994 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maudie Overcash,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maudie Overcash +sn: Overcash +description: This is Maudie Overcash's description +facsimileTelephoneNumber: +1 408 896-2705 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 576-1921 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: OvercasM +givenName: Maudie +mail: OvercasM@159a287c6435442fa0a5a9052a8c949d.bitwarden.com +carLicense: 7RUE7A +departmentNumber: 9874 +employeeType: Normal +homePhone: +1 408 128-5692 +initials: M. O. +mobile: +1 408 363-5005 +pager: +1 408 824-1225 +roomNumber: 9274 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pradyumn Darden +sn: Darden +description: This is Pradyumn Darden's description +facsimileTelephoneNumber: +1 206 437-2704 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 460-9326 +title: Chief Human Resources Writer +userPassword: Password1 +uid: DardenP +givenName: Pradyumn +mail: DardenP@7fd31459ef69403fab8afffbf1b1fedf.bitwarden.com +carLicense: 75TL7J +departmentNumber: 1414 +employeeType: Contract +homePhone: +1 206 694-1630 +initials: P. D. +mobile: +1 206 840-6104 +pager: +1 206 362-9825 +roomNumber: 9067 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yolanthe Svo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yolanthe Svo +sn: Svo +description: This is Yolanthe Svo's description +facsimileTelephoneNumber: +1 206 547-2886 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 140-4485 +title: Junior Peons Manager +userPassword: Password1 +uid: SvoY +givenName: Yolanthe +mail: SvoY@d4a050fbe8424ef0ad6c18f4f810e367.bitwarden.com +carLicense: M879T6 +departmentNumber: 1317 +employeeType: Contract +homePhone: +1 206 315-7836 +initials: Y. S. +mobile: +1 206 420-2293 +pager: +1 206 798-7783 +roomNumber: 8294 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ashley Koskinen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashley Koskinen +sn: Koskinen +description: This is Ashley Koskinen's description +facsimileTelephoneNumber: +1 206 134-3198 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 237-2089 +title: Associate Administrative Stooge +userPassword: Password1 +uid: KoskineA +givenName: Ashley +mail: KoskineA@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com +carLicense: V8BJAK +departmentNumber: 3762 +employeeType: Contract +homePhone: +1 206 306-3344 +initials: A. K. +mobile: +1 206 537-3361 +pager: +1 206 257-8327 +roomNumber: 8849 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liesbeth Dugal +sn: Dugal +description: This is Liesbeth Dugal's description +facsimileTelephoneNumber: +1 804 736-1454 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 804 238-4414 +title: Junior Product Development Writer +userPassword: Password1 +uid: DugalL +givenName: Liesbeth +mail: DugalL@0ce86c5e561e43da985b731babc7ee7a.bitwarden.com +carLicense: G5XL2C +departmentNumber: 7713 +employeeType: Normal +homePhone: +1 804 439-1276 +initials: L. D. +mobile: +1 804 766-7639 +pager: +1 804 942-9078 +roomNumber: 8648 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Babb Mayne,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Babb Mayne +sn: Mayne +description: This is Babb Mayne's description +facsimileTelephoneNumber: +1 408 885-8287 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 866-7395 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: MayneB +givenName: Babb +mail: MayneB@c27a00f3c7f148d486de7c0cf03bd914.bitwarden.com +carLicense: DEF0N7 +departmentNumber: 2795 +employeeType: Employee +homePhone: +1 408 230-8505 +initials: B. M. +mobile: +1 408 830-6844 +pager: +1 408 575-9643 +roomNumber: 9839 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dehlia Madgett +sn: Madgett +description: This is Dehlia Madgett's description +facsimileTelephoneNumber: +1 408 441-5134 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 408 610-1848 +title: Chief Janitorial Figurehead +userPassword: Password1 +uid: MadgettD +givenName: Dehlia +mail: MadgettD@f318f75c01ee43e0921a0e961414763d.bitwarden.com +carLicense: PRCRG0 +departmentNumber: 8749 +employeeType: Employee +homePhone: +1 408 766-7067 +initials: D. M. +mobile: +1 408 781-6031 +pager: +1 408 932-2398 +roomNumber: 9718 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Godfrey Wiltz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Godfrey Wiltz +sn: Wiltz +description: This is Godfrey Wiltz's description +facsimileTelephoneNumber: +1 408 247-4856 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 826-9733 +title: Junior Peons Writer +userPassword: Password1 +uid: WiltzG +givenName: Godfrey +mail: WiltzG@9b2c23de49384f84ae5a2204e6781b81.bitwarden.com +carLicense: 8AM06B +departmentNumber: 2414 +employeeType: Normal +homePhone: +1 408 391-1707 +initials: G. W. +mobile: +1 408 972-3654 +pager: +1 408 313-5542 +roomNumber: 8064 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arlana Crowell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlana Crowell +sn: Crowell +description: This is Arlana Crowell's description +facsimileTelephoneNumber: +1 206 603-3561 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 913-4853 +title: Chief Human Resources Architect +userPassword: Password1 +uid: CrowellA +givenName: Arlana +mail: CrowellA@2ae864edc92447c18c93c9a4cd896b97.bitwarden.com +carLicense: VBFO13 +departmentNumber: 8494 +employeeType: Normal +homePhone: +1 206 848-4955 +initials: A. C. +mobile: +1 206 360-8586 +pager: +1 206 140-5591 +roomNumber: 8331 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arina Kempffer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arina Kempffer +sn: Kempffer +description: This is Arina Kempffer's description +facsimileTelephoneNumber: +1 206 246-6161 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 270-7806 +title: Master Peons Visionary +userPassword: Password1 +uid: KempffeA +givenName: Arina +mail: KempffeA@b5f5dce787d942a9beb6dc9f7c09c07b.bitwarden.com +carLicense: 7F9UHR +departmentNumber: 9528 +employeeType: Normal +homePhone: +1 206 733-1567 +initials: A. K. +mobile: +1 206 873-8645 +pager: +1 206 385-4405 +roomNumber: 9713 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cuthbert Vandagriff +sn: Vandagriff +description: This is Cuthbert Vandagriff's description +facsimileTelephoneNumber: +1 510 923-3128 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 591-8196 +title: Master Janitorial Dictator +userPassword: Password1 +uid: VandagrC +givenName: Cuthbert +mail: VandagrC@f34d92cdab5f41e598142a994af089cf.bitwarden.com +carLicense: PJ9L0O +departmentNumber: 5893 +employeeType: Normal +homePhone: +1 510 566-9772 +initials: C. V. +mobile: +1 510 837-6674 +pager: +1 510 276-4575 +roomNumber: 8518 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gena Sookdeo +sn: Sookdeo +description: This is Gena Sookdeo's description +facsimileTelephoneNumber: +1 415 677-2634 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 365-5481 +title: Chief Janitorial Sales Rep +userPassword: Password1 +uid: SookdeoG +givenName: Gena +mail: SookdeoG@7192ef9a358648a898c636498c183ffc.bitwarden.com +carLicense: S3XYHV +departmentNumber: 9727 +employeeType: Employee +homePhone: +1 415 779-5438 +initials: G. S. +mobile: +1 415 214-2648 +pager: +1 415 235-1695 +roomNumber: 9666 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angelika Appenzeller +sn: Appenzeller +description: This is Angelika Appenzeller's description +facsimileTelephoneNumber: +1 804 627-7926 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 907-1468 +title: Master Janitorial Czar +userPassword: Password1 +uid: AppenzeA +givenName: Angelika +mail: AppenzeA@91d70d29739b45a5ab390be4cdfdd9f2.bitwarden.com +carLicense: 8UW8KC +departmentNumber: 7725 +employeeType: Employee +homePhone: +1 804 112-9433 +initials: A. A. +mobile: +1 804 128-2720 +pager: +1 804 104-7230 +roomNumber: 9883 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bnrecad Dickie +sn: Dickie +description: This is Bnrecad Dickie's description +facsimileTelephoneNumber: +1 206 457-4876 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 548-9378 +title: Supreme Product Development Czar +userPassword: Password1 +uid: DickieB +givenName: Bnrecad +mail: DickieB@a914f96796cb4376a46a7e46c8ebb6a9.bitwarden.com +carLicense: 78MIHK +departmentNumber: 7312 +employeeType: Contract +homePhone: +1 206 234-4967 +initials: B. D. +mobile: +1 206 274-7863 +pager: +1 206 723-6689 +roomNumber: 9635 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kip Grimshaw,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kip Grimshaw +sn: Grimshaw +description: This is Kip Grimshaw's description +facsimileTelephoneNumber: +1 804 606-1494 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 322-6585 +title: Chief Management President +userPassword: Password1 +uid: GrimshaK +givenName: Kip +mail: GrimshaK@ca43d93b2a2647ef8c67ee1857820bdb.bitwarden.com +carLicense: 3U1X53 +departmentNumber: 6566 +employeeType: Contract +homePhone: +1 804 421-8547 +initials: K. G. +mobile: +1 804 985-2388 +pager: +1 804 538-6400 +roomNumber: 8150 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerardo Pbx +sn: Pbx +description: This is Gerardo Pbx's description +facsimileTelephoneNumber: +1 206 268-3325 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 968-6129 +title: Master Human Resources Punk +userPassword: Password1 +uid: PbxG +givenName: Gerardo +mail: PbxG@a5043dbf64444983b86424abe39aba1d.bitwarden.com +carLicense: QW2MH8 +departmentNumber: 7427 +employeeType: Normal +homePhone: +1 206 170-5018 +initials: G. P. +mobile: +1 206 866-4497 +pager: +1 206 552-9418 +roomNumber: 9338 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Addons Wurtz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Addons Wurtz +sn: Wurtz +description: This is Addons Wurtz's description +facsimileTelephoneNumber: +1 510 134-9116 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 490-2389 +title: Supreme Peons Stooge +userPassword: Password1 +uid: WurtzA +givenName: Addons +mail: WurtzA@0cca6f71d9404c488f8d31ec44e5edd8.bitwarden.com +carLicense: 4NXXTI +departmentNumber: 4274 +employeeType: Employee +homePhone: +1 510 186-2798 +initials: A. W. +mobile: +1 510 492-1573 +pager: +1 510 751-7155 +roomNumber: 8995 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MarieJosee Chiniwala +sn: Chiniwala +description: This is MarieJosee Chiniwala's description +facsimileTelephoneNumber: +1 415 286-9996 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 832-1140 +title: Master Peons Pinhead +userPassword: Password1 +uid: ChiniwaM +givenName: MarieJosee +mail: ChiniwaM@f8d234f023da4a3fb593b28104632797.bitwarden.com +carLicense: HKX3GJ +departmentNumber: 7405 +employeeType: Normal +homePhone: +1 415 536-4015 +initials: M. C. +mobile: +1 415 106-1138 +pager: +1 415 249-5681 +roomNumber: 8313 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Farzin Nebel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farzin Nebel +sn: Nebel +description: This is Farzin Nebel's description +facsimileTelephoneNumber: +1 804 347-6032 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 812-2048 +title: Junior Product Development Sales Rep +userPassword: Password1 +uid: NebelF +givenName: Farzin +mail: NebelF@960fde1bd9064545ac557eb042ebf65f.bitwarden.com +carLicense: YVKP7D +departmentNumber: 8750 +employeeType: Contract +homePhone: +1 804 926-1779 +initials: F. N. +mobile: +1 804 602-2963 +pager: +1 804 669-5394 +roomNumber: 9576 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shell Hurst,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shell Hurst +sn: Hurst +description: This is Shell Hurst's description +facsimileTelephoneNumber: +1 510 869-4469 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 993-1056 +title: Chief Janitorial Artist +userPassword: Password1 +uid: HurstS +givenName: Shell +mail: HurstS@12301f83685f482eaef7fc27694b679e.bitwarden.com +carLicense: 6434II +departmentNumber: 7999 +employeeType: Normal +homePhone: +1 510 950-8999 +initials: S. H. +mobile: +1 510 797-6192 +pager: +1 510 953-9126 +roomNumber: 9366 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rochelle Paluso +sn: Paluso +description: This is Rochelle Paluso's description +facsimileTelephoneNumber: +1 804 417-8962 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 161-2543 +title: Master Human Resources Visionary +userPassword: Password1 +uid: PalusoR +givenName: Rochelle +mail: PalusoR@82d0d802cca8422e814bc6ecdf25484c.bitwarden.com +carLicense: 38RJM6 +departmentNumber: 4194 +employeeType: Contract +homePhone: +1 804 609-7326 +initials: R. P. +mobile: +1 804 974-1685 +pager: +1 804 487-5216 +roomNumber: 9878 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dwain OCarroll +sn: OCarroll +description: This is Dwain OCarroll's description +facsimileTelephoneNumber: +1 818 852-6581 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 489-3249 +title: Master Human Resources Grunt +userPassword: Password1 +uid: OCarrolD +givenName: Dwain +mail: OCarrolD@8ae5753568884557b826bbbe6815b824.bitwarden.com +carLicense: IT0D3U +departmentNumber: 9357 +employeeType: Employee +homePhone: +1 818 768-5306 +initials: D. O. +mobile: +1 818 984-8306 +pager: +1 818 435-5193 +roomNumber: 9086 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Khosro Kuo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khosro Kuo +sn: Kuo +description: This is Khosro Kuo's description +facsimileTelephoneNumber: +1 510 984-6272 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 619-4948 +title: Master Human Resources Stooge +userPassword: Password1 +uid: KuoK +givenName: Khosro +mail: KuoK@a081497caeb44f8587c4809a817c9728.bitwarden.com +carLicense: HCHDR1 +departmentNumber: 4256 +employeeType: Employee +homePhone: +1 510 593-4073 +initials: K. K. +mobile: +1 510 874-5738 +pager: +1 510 471-7107 +roomNumber: 8854 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Michel Kernahan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michel Kernahan +sn: Kernahan +description: This is Michel Kernahan's description +facsimileTelephoneNumber: +1 510 480-3508 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 697-1970 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: KernahaM +givenName: Michel +mail: KernahaM@df756e7ca37d42aaab0cfecdbe1dbcdc.bitwarden.com +carLicense: F58XBW +departmentNumber: 5407 +employeeType: Normal +homePhone: +1 510 966-5939 +initials: M. K. +mobile: +1 510 186-7853 +pager: +1 510 704-3970 +roomNumber: 9124 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Melba Besnier,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melba Besnier +sn: Besnier +description: This is Melba Besnier's description +facsimileTelephoneNumber: +1 415 141-7394 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 655-6086 +title: Junior Management Janitor +userPassword: Password1 +uid: BesnierM +givenName: Melba +mail: BesnierM@5627b6b1b02646ec88c596099b169466.bitwarden.com +carLicense: HS0FNB +departmentNumber: 1791 +employeeType: Contract +homePhone: +1 415 126-6203 +initials: M. B. +mobile: +1 415 707-2688 +pager: +1 415 841-3528 +roomNumber: 9559 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ailee Schwenk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailee Schwenk +sn: Schwenk +description: This is Ailee Schwenk's description +facsimileTelephoneNumber: +1 818 583-3583 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 943-6840 +title: Junior Management Writer +userPassword: Password1 +uid: SchwenkA +givenName: Ailee +mail: SchwenkA@1d184a251b65443396a8cb4416166285.bitwarden.com +carLicense: SA6HNJ +departmentNumber: 2146 +employeeType: Contract +homePhone: +1 818 468-3880 +initials: A. S. +mobile: +1 818 423-6954 +pager: +1 818 230-9672 +roomNumber: 8415 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Klink Aguilar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klink Aguilar +sn: Aguilar +description: This is Klink Aguilar's description +facsimileTelephoneNumber: +1 206 869-1368 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 135-7250 +title: Associate Product Development Pinhead +userPassword: Password1 +uid: AguilarK +givenName: Klink +mail: AguilarK@075229ffb9b64ef789e1bac7125aa507.bitwarden.com +carLicense: YXSUHU +departmentNumber: 8337 +employeeType: Normal +homePhone: +1 206 374-1974 +initials: K. A. +mobile: +1 206 463-6878 +pager: +1 206 413-7725 +roomNumber: 9321 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Arnis Daly,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arnis Daly +sn: Daly +description: This is Arnis Daly's description +facsimileTelephoneNumber: +1 510 108-3895 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 510 911-3668 +title: Associate Peons Stooge +userPassword: Password1 +uid: DalyA +givenName: Arnis +mail: DalyA@6a8087cffa824fdc9d204ef1b876817b.bitwarden.com +carLicense: ADFPBK +departmentNumber: 1244 +employeeType: Contract +homePhone: +1 510 682-6884 +initials: A. D. +mobile: +1 510 872-8169 +pager: +1 510 931-3118 +roomNumber: 9883 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermina Kennedy +sn: Kennedy +description: This is Hermina Kennedy's description +facsimileTelephoneNumber: +1 510 149-3549 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 289-9017 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: KennedyH +givenName: Hermina +mail: KennedyH@76aa1b335bb64366a833ba61a905d441.bitwarden.com +carLicense: HOR9CA +departmentNumber: 2554 +employeeType: Employee +homePhone: +1 510 509-2549 +initials: H. K. +mobile: +1 510 401-9882 +pager: +1 510 225-1114 +roomNumber: 8201 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ofilia Keilty,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ofilia Keilty +sn: Keilty +description: This is Ofilia Keilty's description +facsimileTelephoneNumber: +1 213 221-9227 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 384-1298 +title: Chief Product Development Grunt +userPassword: Password1 +uid: KeiltyO +givenName: Ofilia +mail: KeiltyO@b112fc0413114ddcbf0202947d5c2011.bitwarden.com +carLicense: CUSWA2 +departmentNumber: 3402 +employeeType: Normal +homePhone: +1 213 849-3040 +initials: O. K. +mobile: +1 213 593-1100 +pager: +1 213 877-5650 +roomNumber: 8359 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ans Casperson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ans Casperson +sn: Casperson +description: This is Ans Casperson's description +facsimileTelephoneNumber: +1 804 669-9335 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 157-5719 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: CaspersA +givenName: Ans +mail: CaspersA@fd10790283ad43fb8ee24519792eda1e.bitwarden.com +carLicense: W5WJKB +departmentNumber: 1222 +employeeType: Normal +homePhone: +1 804 251-3966 +initials: A. C. +mobile: +1 804 925-8300 +pager: +1 804 148-1601 +roomNumber: 8353 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Janick McGregor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janick McGregor +sn: McGregor +description: This is Janick McGregor's description +facsimileTelephoneNumber: +1 213 222-8850 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 363-3383 +title: Junior Management Visionary +userPassword: Password1 +uid: McGregoJ +givenName: Janick +mail: McGregoJ@0bec70e6fa8d461ab29f67f7a630e586.bitwarden.com +carLicense: DMPVEF +departmentNumber: 1533 +employeeType: Employee +homePhone: +1 213 907-7867 +initials: J. M. +mobile: +1 213 170-8103 +pager: +1 213 980-9393 +roomNumber: 8058 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chuan Bernstein,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chuan Bernstein +sn: Bernstein +description: This is Chuan Bernstein's description +facsimileTelephoneNumber: +1 408 771-2881 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 189-2681 +title: Master Payroll Janitor +userPassword: Password1 +uid: BernsteC +givenName: Chuan +mail: BernsteC@796636c316134f4ea242b8ffac574e0e.bitwarden.com +carLicense: 7GIQ2P +departmentNumber: 8311 +employeeType: Employee +homePhone: +1 408 173-2602 +initials: C. B. +mobile: +1 408 303-3799 +pager: +1 408 383-6131 +roomNumber: 9784 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Donall HickmanMiott,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donall HickmanMiott +sn: HickmanMiott +description: This is Donall HickmanMiott's description +facsimileTelephoneNumber: +1 213 507-7980 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 746-3125 +title: Junior Management Engineer +userPassword: Password1 +uid: HickmanD +givenName: Donall +mail: HickmanD@1a52986d673a41e591f5e253ac65f5bb.bitwarden.com +carLicense: 18VVGG +departmentNumber: 2503 +employeeType: Normal +homePhone: +1 213 750-9812 +initials: D. H. +mobile: +1 213 790-5754 +pager: +1 213 745-1352 +roomNumber: 8448 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Doc Cantlie,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doc Cantlie +sn: Cantlie +description: This is Doc Cantlie's description +facsimileTelephoneNumber: +1 510 987-7863 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 510 456-9112 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: CantlieD +givenName: Doc +mail: CantlieD@83146e7f57ba40bd8fd147c075fc9a0d.bitwarden.com +carLicense: 40UWIX +departmentNumber: 5267 +employeeType: Contract +homePhone: +1 510 312-5452 +initials: D. C. +mobile: +1 510 456-6505 +pager: +1 510 820-7766 +roomNumber: 8452 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Christer Chapen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christer Chapen +sn: Chapen +description: This is Christer Chapen's description +facsimileTelephoneNumber: +1 510 850-3524 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 510 521-9199 +title: Chief Product Testing Czar +userPassword: Password1 +uid: ChapenC +givenName: Christer +mail: ChapenC@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com +carLicense: X8OPST +departmentNumber: 4670 +employeeType: Normal +homePhone: +1 510 236-6907 +initials: C. C. +mobile: +1 510 944-7209 +pager: +1 510 589-1031 +roomNumber: 8995 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maribeth Eslambolchi +sn: Eslambolchi +description: This is Maribeth Eslambolchi's description +facsimileTelephoneNumber: +1 510 921-3905 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 639-3833 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: EslamboM +givenName: Maribeth +mail: EslamboM@af76d6a9c4ee47b5be6351f28cb88a83.bitwarden.com +carLicense: HNOE3M +departmentNumber: 5003 +employeeType: Employee +homePhone: +1 510 412-6363 +initials: M. E. +mobile: +1 510 105-3331 +pager: +1 510 392-2339 +roomNumber: 9757 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Flory Ziegler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flory Ziegler +sn: Ziegler +description: This is Flory Ziegler's description +facsimileTelephoneNumber: +1 804 286-5240 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 789-7651 +title: Master Management Grunt +userPassword: Password1 +uid: ZieglerF +givenName: Flory +mail: ZieglerF@e4cb1f57405243129844c08d2e77b681.bitwarden.com +carLicense: FE8X33 +departmentNumber: 8356 +employeeType: Contract +homePhone: +1 804 282-6202 +initials: F. Z. +mobile: +1 804 377-2017 +pager: +1 804 627-2635 +roomNumber: 9808 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Altay Stevenson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Altay Stevenson +sn: Stevenson +description: This is Altay Stevenson's description +facsimileTelephoneNumber: +1 804 373-9914 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 558-6410 +title: Supreme Management Vice President +userPassword: Password1 +uid: StevensA +givenName: Altay +mail: StevensA@989c1fcac1b54129b688e303c3fcab40.bitwarden.com +carLicense: YRAMDD +departmentNumber: 4907 +employeeType: Employee +homePhone: +1 804 614-7153 +initials: A. S. +mobile: +1 804 720-8771 +pager: +1 804 466-2105 +roomNumber: 9330 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mada Curtin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mada Curtin +sn: Curtin +description: This is Mada Curtin's description +facsimileTelephoneNumber: +1 206 191-5844 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 651-8821 +title: Supreme Administrative Director +userPassword: Password1 +uid: CurtinM +givenName: Mada +mail: CurtinM@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com +carLicense: C6QF5F +departmentNumber: 9406 +employeeType: Employee +homePhone: +1 206 468-1702 +initials: M. C. +mobile: +1 206 660-6943 +pager: +1 206 247-7317 +roomNumber: 8913 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dasha Kivell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dasha Kivell +sn: Kivell +description: This is Dasha Kivell's description +facsimileTelephoneNumber: +1 510 846-7146 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 510 594-9572 +title: Junior Product Development Writer +userPassword: Password1 +uid: KivellD +givenName: Dasha +mail: KivellD@a6532d9f9838406fa36604afc09c1100.bitwarden.com +carLicense: XBXOGV +departmentNumber: 6989 +employeeType: Contract +homePhone: +1 510 935-6064 +initials: D. K. +mobile: +1 510 533-8383 +pager: +1 510 470-7871 +roomNumber: 9671 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Minna Hyatt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minna Hyatt +sn: Hyatt +description: This is Minna Hyatt's description +facsimileTelephoneNumber: +1 510 567-9571 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 510 292-9356 +title: Associate Payroll Madonna +userPassword: Password1 +uid: HyattM +givenName: Minna +mail: HyattM@859c4245e0604293a1eb9ae487b0f7d1.bitwarden.com +carLicense: UJ2814 +departmentNumber: 7698 +employeeType: Contract +homePhone: +1 510 753-2051 +initials: M. H. +mobile: +1 510 967-6887 +pager: +1 510 915-6923 +roomNumber: 8025 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tiff Brambley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiff Brambley +sn: Brambley +description: This is Tiff Brambley's description +facsimileTelephoneNumber: +1 510 434-8137 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 816-5951 +title: Associate Product Development Fellow +userPassword: Password1 +uid: BrambleT +givenName: Tiff +mail: BrambleT@7388d6407a304050b7d1b21890b91ab6.bitwarden.com +carLicense: GVN8T5 +departmentNumber: 8032 +employeeType: Normal +homePhone: +1 510 438-3440 +initials: T. B. +mobile: +1 510 556-2677 +pager: +1 510 952-2971 +roomNumber: 8010 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gerrard Kinos,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerrard Kinos +sn: Kinos +description: This is Gerrard Kinos's description +facsimileTelephoneNumber: +1 415 621-6754 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 465-5714 +title: Supreme Management Consultant +userPassword: Password1 +uid: KinosG +givenName: Gerrard +mail: KinosG@5c9b9d5c8575423f84d184975eedd13e.bitwarden.com +carLicense: K678M9 +departmentNumber: 9827 +employeeType: Employee +homePhone: +1 415 780-1385 +initials: G. K. +mobile: +1 415 481-5750 +pager: +1 415 914-3219 +roomNumber: 8620 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Philippine McDaniel +sn: McDaniel +description: This is Philippine McDaniel's description +facsimileTelephoneNumber: +1 818 704-5435 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 744-5008 +title: Master Janitorial Consultant +userPassword: Password1 +uid: McDanieP +givenName: Philippine +mail: McDanieP@3f8d70a2bece482898bc31be4127bc01.bitwarden.com +carLicense: IW4OC9 +departmentNumber: 3603 +employeeType: Normal +homePhone: +1 818 708-7038 +initials: P. M. +mobile: +1 818 205-2481 +pager: +1 818 634-4655 +roomNumber: 8755 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Norikatsu Knox,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norikatsu Knox +sn: Knox +description: This is Norikatsu Knox's description +facsimileTelephoneNumber: +1 213 826-1857 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 292-6021 +title: Junior Administrative Czar +userPassword: Password1 +uid: KnoxN +givenName: Norikatsu +mail: KnoxN@ba892bea3b8945d19eac9125b1901b77.bitwarden.com +carLicense: WX2EX6 +departmentNumber: 3173 +employeeType: Employee +homePhone: +1 213 960-4642 +initials: N. K. +mobile: +1 213 581-2650 +pager: +1 213 943-2088 +roomNumber: 9580 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sabine Litz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabine Litz +sn: Litz +description: This is Sabine Litz's description +facsimileTelephoneNumber: +1 206 947-6118 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 777-8593 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: LitzS +givenName: Sabine +mail: LitzS@577d33811aef46c2a87033464ba91210.bitwarden.com +carLicense: KBYNV2 +departmentNumber: 1721 +employeeType: Normal +homePhone: +1 206 263-2756 +initials: S. L. +mobile: +1 206 541-5362 +pager: +1 206 664-8035 +roomNumber: 8310 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Candee Rightmire,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candee Rightmire +sn: Rightmire +description: This is Candee Rightmire's description +facsimileTelephoneNumber: +1 510 954-8466 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 951-5813 +title: Supreme Management Fellow +userPassword: Password1 +uid: RightmiC +givenName: Candee +mail: RightmiC@88a362d8c08640c59911ccd0faa3d84a.bitwarden.com +carLicense: LMMQ4C +departmentNumber: 5960 +employeeType: Normal +homePhone: +1 510 579-5026 +initials: C. R. +mobile: +1 510 154-3966 +pager: +1 510 261-3034 +roomNumber: 9261 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jorge Layton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jorge Layton +sn: Layton +description: This is Jorge Layton's description +facsimileTelephoneNumber: +1 408 359-2696 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 408 249-9293 +title: Master Payroll Engineer +userPassword: Password1 +uid: LaytonJ +givenName: Jorge +mail: LaytonJ@2632abf3a2f24d08a48ac678703e5a07.bitwarden.com +carLicense: OQUQXU +departmentNumber: 8412 +employeeType: Normal +homePhone: +1 408 191-8105 +initials: J. L. +mobile: +1 408 967-7982 +pager: +1 408 230-8305 +roomNumber: 8248 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: RongChin Sawczyn +sn: Sawczyn +description: This is RongChin Sawczyn's description +facsimileTelephoneNumber: +1 408 827-9854 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 453-9922 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: SawczynR +givenName: RongChin +mail: SawczynR@8d2bde7cc8a74ac5887aa1747493b68d.bitwarden.com +carLicense: 2JGNYC +departmentNumber: 6822 +employeeType: Normal +homePhone: +1 408 571-1787 +initials: R. S. +mobile: +1 408 803-2004 +pager: +1 408 244-2751 +roomNumber: 8448 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigida Forecasting +sn: Forecasting +description: This is Brigida Forecasting's description +facsimileTelephoneNumber: +1 510 461-6554 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 557-9874 +title: Master Human Resources Czar +userPassword: Password1 +uid: ForecasB +givenName: Brigida +mail: ForecasB@e75be13fa8934e138f210bfa3bbca375.bitwarden.com +carLicense: OGQRDJ +departmentNumber: 7494 +employeeType: Normal +homePhone: +1 510 956-1214 +initials: B. F. +mobile: +1 510 161-3470 +pager: +1 510 268-9756 +roomNumber: 8002 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ed Joe,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ed Joe +sn: Joe +description: This is Ed Joe's description +facsimileTelephoneNumber: +1 408 966-6320 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 370-1937 +title: Chief Administrative Warrior +userPassword: Password1 +uid: JoeE +givenName: Ed +mail: JoeE@8d3c44ed2e3e425b88258d14938dfd7c.bitwarden.com +carLicense: A1LYNB +departmentNumber: 7153 +employeeType: Employee +homePhone: +1 408 979-1020 +initials: E. J. +mobile: +1 408 598-6401 +pager: +1 408 739-3298 +roomNumber: 8573 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Portia Sim,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Portia Sim +sn: Sim +description: This is Portia Sim's description +facsimileTelephoneNumber: +1 213 975-9087 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 245-8138 +title: Master Product Development Vice President +userPassword: Password1 +uid: SimP +givenName: Portia +mail: SimP@5f44867d3815485286c6292e360f1c67.bitwarden.com +carLicense: 2L3FG0 +departmentNumber: 6940 +employeeType: Employee +homePhone: +1 213 720-2809 +initials: P. S. +mobile: +1 213 407-9950 +pager: +1 213 839-8048 +roomNumber: 9328 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jian Gardner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jian Gardner +sn: Gardner +description: This is Jian Gardner's description +facsimileTelephoneNumber: +1 213 412-5692 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 213 165-5336 +title: Chief Product Development Consultant +userPassword: Password1 +uid: GardnerJ +givenName: Jian +mail: GardnerJ@52dd6b005be946f88fd736bfecf761d2.bitwarden.com +carLicense: KOB1DX +departmentNumber: 4977 +employeeType: Normal +homePhone: +1 213 100-3696 +initials: J. G. +mobile: +1 213 283-8718 +pager: +1 213 780-3541 +roomNumber: 9374 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ashien Brewton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashien Brewton +sn: Brewton +description: This is Ashien Brewton's description +facsimileTelephoneNumber: +1 510 623-2800 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 838-3444 +title: Chief Management Punk +userPassword: Password1 +uid: BrewtonA +givenName: Ashien +mail: BrewtonA@719d42488cdd461d9a46a6d7e3fd0edb.bitwarden.com +carLicense: I452KI +departmentNumber: 7687 +employeeType: Employee +homePhone: +1 510 987-3514 +initials: A. B. +mobile: +1 510 467-4627 +pager: +1 510 917-6468 +roomNumber: 8142 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Opto Seay,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opto Seay +sn: Seay +description: This is Opto Seay's description +facsimileTelephoneNumber: +1 213 989-9626 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 814-8857 +title: Master Product Development President +userPassword: Password1 +uid: SeayO +givenName: Opto +mail: SeayO@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com +carLicense: A45A36 +departmentNumber: 2849 +employeeType: Normal +homePhone: +1 213 109-1492 +initials: O. S. +mobile: +1 213 519-3211 +pager: +1 213 501-9933 +roomNumber: 8013 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rolande Prattico,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rolande Prattico +sn: Prattico +description: This is Rolande Prattico's description +facsimileTelephoneNumber: +1 510 307-5451 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 510 751-1181 +title: Junior Administrative Janitor +userPassword: Password1 +uid: PratticR +givenName: Rolande +mail: PratticR@4ea4f1e353e542d591c9ee228e04b29f.bitwarden.com +carLicense: PVE5K2 +departmentNumber: 2318 +employeeType: Employee +homePhone: +1 510 314-9267 +initials: R. P. +mobile: +1 510 285-5804 +pager: +1 510 224-6129 +roomNumber: 9080 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Reggie Boggs,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reggie Boggs +sn: Boggs +description: This is Reggie Boggs's description +facsimileTelephoneNumber: +1 213 927-8156 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 397-7770 +title: Associate Human Resources Artist +userPassword: Password1 +uid: BoggsR +givenName: Reggie +mail: BoggsR@03fd765619e04536a01e210ec3db68b0.bitwarden.com +carLicense: 143IET +departmentNumber: 3863 +employeeType: Contract +homePhone: +1 213 941-4811 +initials: R. B. +mobile: +1 213 356-4282 +pager: +1 213 941-3758 +roomNumber: 9656 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zero Dourley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zero Dourley +sn: Dourley +description: This is Zero Dourley's description +facsimileTelephoneNumber: +1 510 167-5186 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 510 120-5921 +title: Supreme Product Testing Technician +userPassword: Password1 +uid: DourleyZ +givenName: Zero +mail: DourleyZ@713ec84902e3407ea7c47d43e09273a9.bitwarden.com +carLicense: Y4KLXW +departmentNumber: 9171 +employeeType: Employee +homePhone: +1 510 191-2511 +initials: Z. D. +mobile: +1 510 979-7845 +pager: +1 510 959-6191 +roomNumber: 8936 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gabie Hirayama,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabie Hirayama +sn: Hirayama +description: This is Gabie Hirayama's description +facsimileTelephoneNumber: +1 818 717-1878 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 896-2980 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: HirayamG +givenName: Gabie +mail: HirayamG@3a3f7974ffc147bc8e5ab8732ee37359.bitwarden.com +carLicense: S4CE41 +departmentNumber: 4636 +employeeType: Employee +homePhone: +1 818 702-2198 +initials: G. H. +mobile: +1 818 107-6831 +pager: +1 818 488-7479 +roomNumber: 8813 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kalindi Keene,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalindi Keene +sn: Keene +description: This is Kalindi Keene's description +facsimileTelephoneNumber: +1 415 936-9489 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 356-1027 +title: Chief Administrative Madonna +userPassword: Password1 +uid: KeeneK +givenName: Kalindi +mail: KeeneK@453e1aa146534f789cee9f78a1f430f8.bitwarden.com +carLicense: WDXNRT +departmentNumber: 2327 +employeeType: Contract +homePhone: +1 415 401-7684 +initials: K. K. +mobile: +1 415 682-3921 +pager: +1 415 646-1087 +roomNumber: 9613 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rod Krenos,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rod Krenos +sn: Krenos +description: This is Rod Krenos's description +facsimileTelephoneNumber: +1 510 366-1345 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 662-4910 +title: Associate Human Resources Technician +userPassword: Password1 +uid: KrenosR +givenName: Rod +mail: KrenosR@7099256f6cc64433985279df12772e6d.bitwarden.com +carLicense: 2W7FY1 +departmentNumber: 8081 +employeeType: Employee +homePhone: +1 510 987-1258 +initials: R. K. +mobile: +1 510 883-5717 +pager: +1 510 509-9839 +roomNumber: 8765 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bahadir Borozny,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bahadir Borozny +sn: Borozny +description: This is Bahadir Borozny's description +facsimileTelephoneNumber: +1 213 193-8279 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 126-2615 +title: Junior Management Technician +userPassword: Password1 +uid: BoroznyB +givenName: Bahadir +mail: BoroznyB@91bb90ade3ed45329bdbe468ae424f00.bitwarden.com +carLicense: 24PMBT +departmentNumber: 9659 +employeeType: Employee +homePhone: +1 213 722-7787 +initials: B. B. +mobile: +1 213 635-9776 +pager: +1 213 690-5846 +roomNumber: 9699 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Prudy Morelli,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prudy Morelli +sn: Morelli +description: This is Prudy Morelli's description +facsimileTelephoneNumber: +1 206 879-8683 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 206 340-9216 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: MorelliP +givenName: Prudy +mail: MorelliP@952e219a347c41c2b9729763800ed734.bitwarden.com +carLicense: RXWO07 +departmentNumber: 6446 +employeeType: Contract +homePhone: +1 206 463-9599 +initials: P. M. +mobile: +1 206 730-5854 +pager: +1 206 967-2295 +roomNumber: 8857 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zero Volchegursky,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zero Volchegursky +sn: Volchegursky +description: This is Zero Volchegursky's description +facsimileTelephoneNumber: +1 510 135-4703 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 923-9557 +title: Supreme Management Madonna +userPassword: Password1 +uid: VolchegZ +givenName: Zero +mail: VolchegZ@3de40f1f4bb746cab1a4ba47c2543175.bitwarden.com +carLicense: 77V9U6 +departmentNumber: 6993 +employeeType: Employee +homePhone: +1 510 303-2640 +initials: Z. V. +mobile: +1 510 810-5756 +pager: +1 510 589-8544 +roomNumber: 9473 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Riyaz Leone,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Riyaz Leone +sn: Leone +description: This is Riyaz Leone's description +facsimileTelephoneNumber: +1 213 943-5154 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 150-3419 +title: Supreme Management Engineer +userPassword: Password1 +uid: LeoneR +givenName: Riyaz +mail: LeoneR@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com +carLicense: 3E12JJ +departmentNumber: 2668 +employeeType: Normal +homePhone: +1 213 786-1584 +initials: R. L. +mobile: +1 213 644-8572 +pager: +1 213 216-5583 +roomNumber: 9529 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jade Njo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jade Njo +sn: Njo +description: This is Jade Njo's description +facsimileTelephoneNumber: +1 213 498-5972 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 215-3346 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: NjoJ +givenName: Jade +mail: NjoJ@dc14108a33864343abea453a90202c78.bitwarden.com +carLicense: A8QIKK +departmentNumber: 1125 +employeeType: Normal +homePhone: +1 213 458-6603 +initials: J. N. +mobile: +1 213 471-3356 +pager: +1 213 773-8112 +roomNumber: 9032 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hildy Hargrow +sn: Hargrow +description: This is Hildy Hargrow's description +facsimileTelephoneNumber: +1 510 546-5519 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 849-8818 +title: Junior Human Resources Director +userPassword: Password1 +uid: HargrowH +givenName: Hildy +mail: HargrowH@7080ace676f14d789edd6d153887110b.bitwarden.com +carLicense: AAQQE7 +departmentNumber: 3138 +employeeType: Normal +homePhone: +1 510 515-8317 +initials: H. H. +mobile: +1 510 878-2201 +pager: +1 510 541-9338 +roomNumber: 9152 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Albert Healy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Albert Healy +sn: Healy +description: This is Albert Healy's description +facsimileTelephoneNumber: +1 818 797-7336 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 139-3272 +title: Chief Human Resources Visionary +userPassword: Password1 +uid: HealyA +givenName: Albert +mail: HealyA@2c865634e0e045e2b70cc9cc6dc9005f.bitwarden.com +carLicense: 9IQ8HM +departmentNumber: 2883 +employeeType: Normal +homePhone: +1 818 911-2095 +initials: A. H. +mobile: +1 818 401-4920 +pager: +1 818 245-2695 +roomNumber: 8799 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorry Marshaus +sn: Marshaus +description: This is Dorry Marshaus's description +facsimileTelephoneNumber: +1 408 700-3932 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 196-2618 +title: Master Human Resources Fellow +userPassword: Password1 +uid: MarshauD +givenName: Dorry +mail: MarshauD@07a4bc595e2e42d18a0e9f7b0a858ca8.bitwarden.com +carLicense: RXHSI3 +departmentNumber: 4068 +employeeType: Contract +homePhone: +1 408 627-6419 +initials: D. M. +mobile: +1 408 990-4337 +pager: +1 408 154-2224 +roomNumber: 8010 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Helsa Eder,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helsa Eder +sn: Eder +description: This is Helsa Eder's description +facsimileTelephoneNumber: +1 213 208-8162 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 445-5903 +title: Associate Administrative Writer +userPassword: Password1 +uid: EderH +givenName: Helsa +mail: EderH@e9361d04edcf46f9a225b99f53867f61.bitwarden.com +carLicense: VXNLQ1 +departmentNumber: 3610 +employeeType: Contract +homePhone: +1 213 683-5037 +initials: H. E. +mobile: +1 213 967-3759 +pager: +1 213 606-6823 +roomNumber: 8655 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Patt Overby,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patt Overby +sn: Overby +description: This is Patt Overby's description +facsimileTelephoneNumber: +1 408 589-7673 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 408 724-7380 +title: Junior Administrative Figurehead +userPassword: Password1 +uid: OverbyP +givenName: Patt +mail: OverbyP@11458275b70842ea81e3c8a96d06615f.bitwarden.com +carLicense: DRJU3P +departmentNumber: 1769 +employeeType: Employee +homePhone: +1 408 261-4360 +initials: P. O. +mobile: +1 408 147-8815 +pager: +1 408 246-2114 +roomNumber: 9782 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dasya Chenard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dasya Chenard +sn: Chenard +description: This is Dasya Chenard's description +facsimileTelephoneNumber: +1 408 843-4501 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 408 746-6460 +title: Supreme Management Vice President +userPassword: Password1 +uid: ChenardD +givenName: Dasya +mail: ChenardD@d9e32d7c83eb4ccf8004a41c9874f6a2.bitwarden.com +carLicense: PIUHTS +departmentNumber: 7422 +employeeType: Employee +homePhone: +1 408 912-9468 +initials: D. C. +mobile: +1 408 361-1389 +pager: +1 408 246-9568 +roomNumber: 8938 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rosana Hensen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosana Hensen +sn: Hensen +description: This is Rosana Hensen's description +facsimileTelephoneNumber: +1 804 702-5865 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 791-2582 +title: Chief Management Engineer +userPassword: Password1 +uid: HensenR +givenName: Rosana +mail: HensenR@b5a44095f2374197a4ff741b9417f6b1.bitwarden.com +carLicense: UCXRWV +departmentNumber: 8721 +employeeType: Normal +homePhone: +1 804 836-9730 +initials: R. H. +mobile: +1 804 206-4511 +pager: +1 804 598-9248 +roomNumber: 9821 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Thekla Helpb,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thekla Helpb +sn: Helpb +description: This is Thekla Helpb's description +facsimileTelephoneNumber: +1 818 663-1622 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 938-2780 +title: Supreme Payroll Fellow +userPassword: Password1 +uid: HelpbT +givenName: Thekla +mail: HelpbT@5319f4b5e8194323b5cce9067279026f.bitwarden.com +carLicense: PYW3P5 +departmentNumber: 1290 +employeeType: Normal +homePhone: +1 818 950-7292 +initials: T. H. +mobile: +1 818 680-7460 +pager: +1 818 365-8085 +roomNumber: 8062 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seyma Eubanks +sn: Eubanks +description: This is Seyma Eubanks's description +facsimileTelephoneNumber: +1 408 428-3361 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 513-7786 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: EubanksS +givenName: Seyma +mail: EubanksS@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com +carLicense: UHJ1M1 +departmentNumber: 3496 +employeeType: Employee +homePhone: +1 408 842-3327 +initials: S. E. +mobile: +1 408 852-5966 +pager: +1 408 686-8745 +roomNumber: 8111 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jacquetta Alary,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquetta Alary +sn: Alary +description: This is Jacquetta Alary's description +facsimileTelephoneNumber: +1 408 186-4478 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 236-4233 +title: Master Peons Architect +userPassword: Password1 +uid: AlaryJ +givenName: Jacquetta +mail: AlaryJ@fce4c1e9f1a6429083bed21e1e54a500.bitwarden.com +carLicense: SWM80S +departmentNumber: 7347 +employeeType: Normal +homePhone: +1 408 771-7902 +initials: J. A. +mobile: +1 408 330-2499 +pager: +1 408 109-6324 +roomNumber: 8983 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjory Jasrotia +sn: Jasrotia +description: This is Marjory Jasrotia's description +facsimileTelephoneNumber: +1 213 978-1382 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 213 459-9410 +title: Junior Administrative President +userPassword: Password1 +uid: JasrotiM +givenName: Marjory +mail: JasrotiM@9aabc0c0846e44fe90512a9449c3b77f.bitwarden.com +carLicense: 9VSL5D +departmentNumber: 5747 +employeeType: Employee +homePhone: +1 213 782-6600 +initials: M. J. +mobile: +1 213 715-4384 +pager: +1 213 593-9086 +roomNumber: 9469 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LouisPhilippe Bazemore +sn: Bazemore +description: This is LouisPhilippe Bazemore's description +facsimileTelephoneNumber: +1 818 946-5186 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 495-4086 +title: Chief Human Resources Czar +userPassword: Password1 +uid: BazemorL +givenName: LouisPhilippe +mail: BazemorL@2cd58a63642c4f52b76ece1f793d964f.bitwarden.com +carLicense: JHXP68 +departmentNumber: 7181 +employeeType: Contract +homePhone: +1 818 382-2949 +initials: L. B. +mobile: +1 818 381-7030 +pager: +1 818 479-4371 +roomNumber: 8620 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bonnie Bechtel +sn: Bechtel +description: This is Bonnie Bechtel's description +facsimileTelephoneNumber: +1 804 955-8313 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 656-9024 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: BechtelB +givenName: Bonnie +mail: BechtelB@101b8efea162489cbe4b00acbe71ea5a.bitwarden.com +carLicense: H4TGEF +departmentNumber: 1490 +employeeType: Employee +homePhone: +1 804 268-9168 +initials: B. B. +mobile: +1 804 886-9711 +pager: +1 804 706-9822 +roomNumber: 8091 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nari Dilallo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nari Dilallo +sn: Dilallo +description: This is Nari Dilallo's description +facsimileTelephoneNumber: +1 510 180-1230 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 131-6525 +title: Associate Payroll Artist +userPassword: Password1 +uid: DilalloN +givenName: Nari +mail: DilalloN@eec4bbb8da77429f893524017458e5d9.bitwarden.com +carLicense: I0PVQF +departmentNumber: 7160 +employeeType: Normal +homePhone: +1 510 198-1639 +initials: N. D. +mobile: +1 510 191-2617 +pager: +1 510 386-5160 +roomNumber: 8271 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Betti Tanner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betti Tanner +sn: Tanner +description: This is Betti Tanner's description +facsimileTelephoneNumber: +1 818 901-9806 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 798-5842 +title: Master Human Resources Vice President +userPassword: Password1 +uid: TannerB +givenName: Betti +mail: TannerB@f3bf6ba88e9949f59b53ce8700fcbd97.bitwarden.com +carLicense: G9VQE2 +departmentNumber: 4709 +employeeType: Contract +homePhone: +1 818 244-5823 +initials: B. T. +mobile: +1 818 271-3443 +pager: +1 818 228-1523 +roomNumber: 8137 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Weilin Tupling,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weilin Tupling +sn: Tupling +description: This is Weilin Tupling's description +facsimileTelephoneNumber: +1 415 228-6489 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 851-2044 +title: Junior Peons Warrior +userPassword: Password1 +uid: TuplingW +givenName: Weilin +mail: TuplingW@f6a15f7382e844a784e99c66615d4c58.bitwarden.com +carLicense: RSG5CU +departmentNumber: 9213 +employeeType: Employee +homePhone: +1 415 906-3027 +initials: W. T. +mobile: +1 415 804-6590 +pager: +1 415 104-9768 +roomNumber: 9669 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pierrette Loyola +sn: Loyola +description: This is Pierrette Loyola's description +facsimileTelephoneNumber: +1 415 179-1889 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 924-9242 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: LoyolaP +givenName: Pierrette +mail: LoyolaP@d3b7d248cb224bf8a4d600d381f25048.bitwarden.com +carLicense: W9JKEH +departmentNumber: 6199 +employeeType: Contract +homePhone: +1 415 256-4736 +initials: P. L. +mobile: +1 415 387-3390 +pager: +1 415 257-7732 +roomNumber: 8074 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roly Odden,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roly Odden +sn: Odden +description: This is Roly Odden's description +facsimileTelephoneNumber: +1 510 171-6644 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 510 405-2239 +title: Junior Management Czar +userPassword: Password1 +uid: OddenR +givenName: Roly +mail: OddenR@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com +carLicense: QHNULV +departmentNumber: 6000 +employeeType: Contract +homePhone: +1 510 488-8805 +initials: R. O. +mobile: +1 510 777-3311 +pager: +1 510 162-6401 +roomNumber: 8170 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Junie Siegel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Junie Siegel +sn: Siegel +description: This is Junie Siegel's description +facsimileTelephoneNumber: +1 818 518-7761 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 867-6540 +title: Supreme Product Development Sales Rep +userPassword: Password1 +uid: SiegelJ +givenName: Junie +mail: SiegelJ@0266937dc1da4f6ca345872742d007d5.bitwarden.com +carLicense: 487BM9 +departmentNumber: 4544 +employeeType: Contract +homePhone: +1 818 911-5570 +initials: J. S. +mobile: +1 818 610-2207 +pager: +1 818 257-3035 +roomNumber: 8543 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karna Nairn,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karna Nairn +sn: Nairn +description: This is Karna Nairn's description +facsimileTelephoneNumber: +1 206 619-7609 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 258-4818 +title: Supreme Peons Fellow +userPassword: Password1 +uid: NairnK +givenName: Karna +mail: NairnK@240320ec20894b66932f0d930796bec9.bitwarden.com +carLicense: HB82XR +departmentNumber: 8463 +employeeType: Employee +homePhone: +1 206 255-5555 +initials: K. N. +mobile: +1 206 492-8031 +pager: +1 206 148-4070 +roomNumber: 9998 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pascale Innes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pascale Innes +sn: Innes +description: This is Pascale Innes's description +facsimileTelephoneNumber: +1 804 211-6275 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 544-3935 +title: Chief Peons Dictator +userPassword: Password1 +uid: InnesP +givenName: Pascale +mail: InnesP@e740afc7882b41df9170031ff18ecd69.bitwarden.com +carLicense: PCHQBE +departmentNumber: 9093 +employeeType: Employee +homePhone: +1 804 190-3381 +initials: P. I. +mobile: +1 804 916-9083 +pager: +1 804 891-2766 +roomNumber: 8521 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Darbie Scalabrini,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darbie Scalabrini +sn: Scalabrini +description: This is Darbie Scalabrini's description +facsimileTelephoneNumber: +1 818 395-9376 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 620-1249 +title: Master Peons Punk +userPassword: Password1 +uid: ScalabrD +givenName: Darbie +mail: ScalabrD@543e9d6f1baf4e398f4b35d8fd14d7df.bitwarden.com +carLicense: BFYYX9 +departmentNumber: 6176 +employeeType: Normal +homePhone: +1 818 310-2478 +initials: D. S. +mobile: +1 818 948-2731 +pager: +1 818 145-1644 +roomNumber: 8741 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evangelia DeBernardo +sn: DeBernardo +description: This is Evangelia DeBernardo's description +facsimileTelephoneNumber: +1 804 954-2021 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 241-8801 +title: Chief Product Development Punk +userPassword: Password1 +uid: DeBernaE +givenName: Evangelia +mail: DeBernaE@a45191844e6a4a65beb487444486faa6.bitwarden.com +carLicense: TCMMOJ +departmentNumber: 8667 +employeeType: Contract +homePhone: +1 804 995-8838 +initials: E. D. +mobile: +1 804 129-8705 +pager: +1 804 370-6793 +roomNumber: 9183 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Elsi Toles,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elsi Toles +sn: Toles +description: This is Elsi Toles's description +facsimileTelephoneNumber: +1 408 908-3787 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 199-9198 +title: Master Administrative Architect +userPassword: Password1 +uid: TolesE +givenName: Elsi +mail: TolesE@e5fdd3d67af74cde904584628c237f35.bitwarden.com +carLicense: 1QF82S +departmentNumber: 7914 +employeeType: Employee +homePhone: +1 408 105-6966 +initials: E. T. +mobile: +1 408 528-4963 +pager: +1 408 910-1148 +roomNumber: 8663 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xuong Mendonca +sn: Mendonca +description: This is Xuong Mendonca's description +facsimileTelephoneNumber: +1 818 505-7254 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 818 546-4053 +title: Associate Product Testing Developer +userPassword: Password1 +uid: MendoncX +givenName: Xuong +mail: MendoncX@89cc2a9b2ec949b1a8070c39d600dc45.bitwarden.com +carLicense: 3JA47G +departmentNumber: 3085 +employeeType: Normal +homePhone: +1 818 332-3063 +initials: X. M. +mobile: +1 818 486-4843 +pager: +1 818 278-7120 +roomNumber: 9931 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Steinar Royster,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steinar Royster +sn: Royster +description: This is Steinar Royster's description +facsimileTelephoneNumber: +1 818 400-8358 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 771-6899 +title: Chief Administrative Technician +userPassword: Password1 +uid: RoysterS +givenName: Steinar +mail: RoysterS@3c377b6d3a464b54841abc0f3eeba132.bitwarden.com +carLicense: T1K1OT +departmentNumber: 4164 +employeeType: Employee +homePhone: +1 818 753-3672 +initials: S. R. +mobile: +1 818 361-2444 +pager: +1 818 882-5585 +roomNumber: 9395 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Callie Constantinescu +sn: Constantinescu +description: This is Callie Constantinescu's description +facsimileTelephoneNumber: +1 818 254-5577 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 973-4249 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: ConstanC +givenName: Callie +mail: ConstanC@a997ea3fe107458ebeee5012c3a4f6a8.bitwarden.com +carLicense: UP0TDE +departmentNumber: 6331 +employeeType: Employee +homePhone: +1 818 290-7052 +initials: C. C. +mobile: +1 818 807-6631 +pager: +1 818 124-9601 +roomNumber: 8645 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sono Wissler,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sono Wissler +sn: Wissler +description: This is Sono Wissler's description +facsimileTelephoneNumber: +1 408 264-9527 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 166-3736 +title: Chief Administrative Vice President +userPassword: Password1 +uid: WisslerS +givenName: Sono +mail: WisslerS@fa0238e4957946f6b30d70f1a6cdea6e.bitwarden.com +carLicense: DJD281 +departmentNumber: 4069 +employeeType: Normal +homePhone: +1 408 535-2859 +initials: S. W. +mobile: +1 408 152-6315 +pager: +1 408 115-3038 +roomNumber: 8611 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Par Fani,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Par Fani +sn: Fani +description: This is Par Fani's description +facsimileTelephoneNumber: +1 415 608-6601 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 626-2144 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: FaniP +givenName: Par +mail: FaniP@faec862307e2490ab9310236bae87643.bitwarden.com +carLicense: IIG4SU +departmentNumber: 5002 +employeeType: Employee +homePhone: +1 415 649-8181 +initials: P. F. +mobile: +1 415 755-7552 +pager: +1 415 606-5790 +roomNumber: 9190 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ethelda Stagmier +sn: Stagmier +description: This is Ethelda Stagmier's description +facsimileTelephoneNumber: +1 804 134-6298 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 222-8778 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: StagmieE +givenName: Ethelda +mail: StagmieE@0444443925704655be3c38857a5dd7a3.bitwarden.com +carLicense: AAP0Y6 +departmentNumber: 8121 +employeeType: Employee +homePhone: +1 804 207-2466 +initials: E. S. +mobile: +1 804 647-7323 +pager: +1 804 678-4354 +roomNumber: 8080 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maso Gerlinsky +sn: Gerlinsky +description: This is Maso Gerlinsky's description +facsimileTelephoneNumber: +1 415 769-4829 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 624-9111 +title: Associate Janitorial Artist +userPassword: Password1 +uid: GerlinsM +givenName: Maso +mail: GerlinsM@0cab6ba3bc394ea5975adecee65ca1c4.bitwarden.com +carLicense: 6M55RA +departmentNumber: 8505 +employeeType: Normal +homePhone: +1 415 440-2887 +initials: M. G. +mobile: +1 415 748-6004 +pager: +1 415 139-3017 +roomNumber: 9638 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Matti Beisel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matti Beisel +sn: Beisel +description: This is Matti Beisel's description +facsimileTelephoneNumber: +1 415 366-8337 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 415 610-8230 +title: Chief Peons Czar +userPassword: Password1 +uid: BeiselM +givenName: Matti +mail: BeiselM@0b56a4c94023459d8772d8f7af50540e.bitwarden.com +carLicense: 3XUMCY +departmentNumber: 7486 +employeeType: Normal +homePhone: +1 415 174-1415 +initials: M. B. +mobile: +1 415 826-8777 +pager: +1 415 106-6960 +roomNumber: 9187 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Regine Sergi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regine Sergi +sn: Sergi +description: This is Regine Sergi's description +facsimileTelephoneNumber: +1 415 460-6680 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 599-3748 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: SergiR +givenName: Regine +mail: SergiR@28361b33929c47fcba44b2074b43f0e2.bitwarden.com +carLicense: FJU837 +departmentNumber: 5668 +employeeType: Normal +homePhone: +1 415 337-6673 +initials: R. S. +mobile: +1 415 649-5637 +pager: +1 415 516-6923 +roomNumber: 8787 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Oralia Daymond,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oralia Daymond +sn: Daymond +description: This is Oralia Daymond's description +facsimileTelephoneNumber: +1 206 145-3954 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 315-8534 +title: Supreme Payroll Dictator +userPassword: Password1 +uid: DaymondO +givenName: Oralia +mail: DaymondO@b6e5aee724a54904bb06d1cd94c0be8e.bitwarden.com +carLicense: SUE6H1 +departmentNumber: 8473 +employeeType: Normal +homePhone: +1 206 384-6331 +initials: O. D. +mobile: +1 206 632-4930 +pager: +1 206 362-3354 +roomNumber: 8424 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adey Mein,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adey Mein +sn: Mein +description: This is Adey Mein's description +facsimileTelephoneNumber: +1 818 316-6074 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 818 627-1809 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: MeinA +givenName: Adey +mail: MeinA@dc836bc8f8b34c3ea421ef30574e0176.bitwarden.com +carLicense: H0Y9DC +departmentNumber: 3102 +employeeType: Employee +homePhone: +1 818 868-1453 +initials: A. M. +mobile: +1 818 357-3904 +pager: +1 818 838-3665 +roomNumber: 9450 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bettina Petree,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettina Petree +sn: Petree +description: This is Bettina Petree's description +facsimileTelephoneNumber: +1 415 365-8377 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 332-8020 +title: Supreme Management Artist +userPassword: Password1 +uid: PetreeB +givenName: Bettina +mail: PetreeB@8f32883a93db43f481d60f1e3715ec28.bitwarden.com +carLicense: VAYLTL +departmentNumber: 3692 +employeeType: Employee +homePhone: +1 415 756-3910 +initials: B. P. +mobile: +1 415 500-4663 +pager: +1 415 718-3972 +roomNumber: 8431 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sisile Larner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sisile Larner +sn: Larner +description: This is Sisile Larner's description +facsimileTelephoneNumber: +1 818 279-7656 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 729-1855 +title: Chief Product Development Fellow +userPassword: Password1 +uid: LarnerS +givenName: Sisile +mail: LarnerS@39906d66250a450299ac97c0daaa1661.bitwarden.com +carLicense: Y2M8RE +departmentNumber: 1270 +employeeType: Normal +homePhone: +1 818 454-3407 +initials: S. L. +mobile: +1 818 115-8840 +pager: +1 818 403-1709 +roomNumber: 9045 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roseann Sheldon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roseann Sheldon +sn: Sheldon +description: This is Roseann Sheldon's description +facsimileTelephoneNumber: +1 415 358-3994 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 476-5290 +title: Junior Peons Mascot +userPassword: Password1 +uid: SheldonR +givenName: Roseann +mail: SheldonR@7d42ba8899ef4daea01b1b9e81793953.bitwarden.com +carLicense: WTX5VI +departmentNumber: 3654 +employeeType: Contract +homePhone: +1 415 365-7218 +initials: R. S. +mobile: +1 415 401-1808 +pager: +1 415 777-8382 +roomNumber: 8584 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Irc Grona,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Irc Grona +sn: Grona +description: This is Irc Grona's description +facsimileTelephoneNumber: +1 213 550-3432 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 665-2388 +title: Junior Administrative Technician +userPassword: Password1 +uid: GronaI +givenName: Irc +mail: GronaI@816208f7d0af4f3aad2a75dc5fc86d1a.bitwarden.com +carLicense: 73CG4E +departmentNumber: 5613 +employeeType: Normal +homePhone: +1 213 755-8032 +initials: I. G. +mobile: +1 213 621-9170 +pager: +1 213 111-7745 +roomNumber: 8505 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Michael Verrenneau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michael Verrenneau +sn: Verrenneau +description: This is Michael Verrenneau's description +facsimileTelephoneNumber: +1 213 622-7959 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 802-8809 +title: Chief Payroll Director +userPassword: Password1 +uid: VerrennM +givenName: Michael +mail: VerrennM@d7b181ccc8954040a7c4160403df7781.bitwarden.com +carLicense: U9KSN9 +departmentNumber: 1603 +employeeType: Employee +homePhone: +1 213 353-4420 +initials: M. V. +mobile: +1 213 746-4837 +pager: +1 213 482-8810 +roomNumber: 9341 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Walley Gostanian,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walley Gostanian +sn: Gostanian +description: This is Walley Gostanian's description +facsimileTelephoneNumber: +1 415 576-9424 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 587-2689 +title: Master Janitorial Developer +userPassword: Password1 +uid: GostaniW +givenName: Walley +mail: GostaniW@5d8901804e424468b0bef6e0378317d6.bitwarden.com +carLicense: AURM0K +departmentNumber: 1248 +employeeType: Employee +homePhone: +1 415 234-1135 +initials: W. G. +mobile: +1 415 636-1140 +pager: +1 415 164-2820 +roomNumber: 9743 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evelien Veyrat +sn: Veyrat +description: This is Evelien Veyrat's description +facsimileTelephoneNumber: +1 213 245-7401 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 768-6776 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: VeyratE +givenName: Evelien +mail: VeyratE@9604db567a254e64976e339d21f654b1.bitwarden.com +carLicense: 7J3MED +departmentNumber: 4568 +employeeType: Normal +homePhone: +1 213 931-5398 +initials: E. V. +mobile: +1 213 669-1508 +pager: +1 213 955-6724 +roomNumber: 8091 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charyl Fulmer +sn: Fulmer +description: This is Charyl Fulmer's description +facsimileTelephoneNumber: +1 804 745-7345 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 183-5800 +title: Supreme Product Testing Sales Rep +userPassword: Password1 +uid: FulmerC +givenName: Charyl +mail: FulmerC@47b619accc2242b98a908129e561089a.bitwarden.com +carLicense: R8X0O4 +departmentNumber: 1745 +employeeType: Contract +homePhone: +1 804 771-5939 +initials: C. F. +mobile: +1 804 614-3916 +pager: +1 804 400-5986 +roomNumber: 8154 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Torrie Ramachandran +sn: Ramachandran +description: This is Torrie Ramachandran's description +facsimileTelephoneNumber: +1 415 752-2990 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 842-7083 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: RamachaT +givenName: Torrie +mail: RamachaT@9a3c3b333ac543bcbc3719d5e5f7e60a.bitwarden.com +carLicense: P4B7RI +departmentNumber: 8778 +employeeType: Contract +homePhone: +1 415 231-3193 +initials: T. R. +mobile: +1 415 503-3922 +pager: +1 415 876-4583 +roomNumber: 9642 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emogene Assistance,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emogene Assistance +sn: Assistance +description: This is Emogene Assistance's description +facsimileTelephoneNumber: +1 206 720-5469 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 810-5888 +title: Junior Management Stooge +userPassword: Password1 +uid: AssistaE +givenName: Emogene +mail: AssistaE@e3adbf44503541a8a477fd522db5f455.bitwarden.com +carLicense: O4LHFM +departmentNumber: 8346 +employeeType: Employee +homePhone: +1 206 320-6298 +initials: E. A. +mobile: +1 206 738-3449 +pager: +1 206 964-5589 +roomNumber: 9271 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Florance Berna,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florance Berna +sn: Berna +description: This is Florance Berna's description +facsimileTelephoneNumber: +1 510 206-8480 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 382-9682 +title: Chief Payroll Mascot +userPassword: Password1 +uid: BernaF +givenName: Florance +mail: BernaF@2b42e3127b664e198e679bfa6b541f42.bitwarden.com +carLicense: TYLMD6 +departmentNumber: 7362 +employeeType: Contract +homePhone: +1 510 142-1992 +initials: F. B. +mobile: +1 510 174-2119 +pager: +1 510 394-8465 +roomNumber: 9865 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Barry Holcombe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barry Holcombe +sn: Holcombe +description: This is Barry Holcombe's description +facsimileTelephoneNumber: +1 818 623-1399 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 681-1114 +title: Master Product Testing Artist +userPassword: Password1 +uid: HolcombB +givenName: Barry +mail: HolcombB@c41cc1e3b0d842d3bbad24db018def06.bitwarden.com +carLicense: 1D22X2 +departmentNumber: 1832 +employeeType: Contract +homePhone: +1 818 251-8710 +initials: B. H. +mobile: +1 818 614-1724 +pager: +1 818 531-5319 +roomNumber: 9756 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Grietje Gilstorf,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grietje Gilstorf +sn: Gilstorf +description: This is Grietje Gilstorf's description +facsimileTelephoneNumber: +1 415 241-1441 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 843-8528 +title: Junior Management Technician +userPassword: Password1 +uid: GilstorG +givenName: Grietje +mail: GilstorG@ec1b66029a6a489dbc29c0e623bfb41a.bitwarden.com +carLicense: 4F6BFJ +departmentNumber: 3022 +employeeType: Normal +homePhone: +1 415 871-6882 +initials: G. G. +mobile: +1 415 551-8364 +pager: +1 415 591-2639 +roomNumber: 8874 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Una Shang,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Una Shang +sn: Shang +description: This is Una Shang's description +facsimileTelephoneNumber: +1 415 893-3692 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 158-6376 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: ShangU +givenName: Una +mail: ShangU@923b7e20c77d4d479afa0bf52e9ff34f.bitwarden.com +carLicense: WKDYKI +departmentNumber: 6963 +employeeType: Employee +homePhone: +1 415 875-6108 +initials: U. S. +mobile: +1 415 560-5731 +pager: +1 415 705-1224 +roomNumber: 9402 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gina Pilotte,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gina Pilotte +sn: Pilotte +description: This is Gina Pilotte's description +facsimileTelephoneNumber: +1 415 212-4590 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 438-7904 +title: Chief Management Architect +userPassword: Password1 +uid: PilotteG +givenName: Gina +mail: PilotteG@c78a9a65ca75452787721ced31a98916.bitwarden.com +carLicense: FMKIB8 +departmentNumber: 5368 +employeeType: Employee +homePhone: +1 415 198-7820 +initials: G. P. +mobile: +1 415 866-6354 +pager: +1 415 115-7111 +roomNumber: 9430 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rolando Yancey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rolando Yancey +sn: Yancey +description: This is Rolando Yancey's description +facsimileTelephoneNumber: +1 213 900-9691 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 326-8182 +title: Supreme Management Stooge +userPassword: Password1 +uid: YanceyR +givenName: Rolando +mail: YanceyR@4a0e814607ef4adf977758aa230a12dd.bitwarden.com +carLicense: D6AJ3P +departmentNumber: 3511 +employeeType: Contract +homePhone: +1 213 988-6032 +initials: R. Y. +mobile: +1 213 816-7667 +pager: +1 213 224-7572 +roomNumber: 9664 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ardeen Porter,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardeen Porter +sn: Porter +description: This is Ardeen Porter's description +facsimileTelephoneNumber: +1 804 931-5077 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 365-9016 +title: Master Administrative Manager +userPassword: Password1 +uid: PorterA +givenName: Ardeen +mail: PorterA@758c49f7de6a4e8cbc4f91d054f2473b.bitwarden.com +carLicense: 821O98 +departmentNumber: 9004 +employeeType: Normal +homePhone: +1 804 127-1549 +initials: A. P. +mobile: +1 804 377-9490 +pager: +1 804 330-9600 +roomNumber: 8163 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gajendra Dery,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gajendra Dery +sn: Dery +description: This is Gajendra Dery's description +facsimileTelephoneNumber: +1 408 430-5651 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 589-7171 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: DeryG +givenName: Gajendra +mail: DeryG@06a9344fa78d4a1da0daf58ee470dc98.bitwarden.com +carLicense: NS8FG5 +departmentNumber: 6352 +employeeType: Normal +homePhone: +1 408 773-8618 +initials: G. D. +mobile: +1 408 455-3521 +pager: +1 408 818-7068 +roomNumber: 9976 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jere Jasmin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jere Jasmin +sn: Jasmin +description: This is Jere Jasmin's description +facsimileTelephoneNumber: +1 415 906-7892 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 452-1614 +title: Master Payroll Grunt +userPassword: Password1 +uid: JasminJ +givenName: Jere +mail: JasminJ@191c836466354fe5b2fec288c1d53713.bitwarden.com +carLicense: GP334J +departmentNumber: 8450 +employeeType: Contract +homePhone: +1 415 970-2819 +initials: J. J. +mobile: +1 415 321-9068 +pager: +1 415 728-1036 +roomNumber: 8465 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Caritta Verma,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caritta Verma +sn: Verma +description: This is Caritta Verma's description +facsimileTelephoneNumber: +1 206 941-7065 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 643-9935 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: VermaC +givenName: Caritta +mail: VermaC@77eb010514ae421883af972518c1a82e.bitwarden.com +carLicense: H8GVDI +departmentNumber: 4387 +employeeType: Normal +homePhone: +1 206 104-3550 +initials: C. V. +mobile: +1 206 993-3622 +pager: +1 206 465-6849 +roomNumber: 9535 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Edric Tilk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edric Tilk +sn: Tilk +description: This is Edric Tilk's description +facsimileTelephoneNumber: +1 408 782-7571 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 144-9357 +title: Supreme Administrative Czar +userPassword: Password1 +uid: TilkE +givenName: Edric +mail: TilkE@c6381227edb84dfc90689a9cc3080334.bitwarden.com +carLicense: UVAKSN +departmentNumber: 2829 +employeeType: Employee +homePhone: +1 408 153-3524 +initials: E. T. +mobile: +1 408 563-3665 +pager: +1 408 194-9600 +roomNumber: 8337 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Janelle Downes,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janelle Downes +sn: Downes +description: This is Janelle Downes's description +facsimileTelephoneNumber: +1 510 534-3735 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 746-4193 +title: Junior Administrative Admin +userPassword: Password1 +uid: DownesJ +givenName: Janelle +mail: DownesJ@e080eb242a96464dba0da1ce711ec7f1.bitwarden.com +carLicense: A3THXB +departmentNumber: 5177 +employeeType: Contract +homePhone: +1 510 144-5060 +initials: J. D. +mobile: +1 510 731-8303 +pager: +1 510 506-1566 +roomNumber: 9884 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rebeca Dicaprio,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebeca Dicaprio +sn: Dicaprio +description: This is Rebeca Dicaprio's description +facsimileTelephoneNumber: +1 206 804-8525 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 206 909-4878 +title: Junior Management Dictator +userPassword: Password1 +uid: DicapriR +givenName: Rebeca +mail: DicapriR@e33d3ed1cbf54d6c887c9e826f3363fc.bitwarden.com +carLicense: YB1S9O +departmentNumber: 8605 +employeeType: Normal +homePhone: +1 206 559-1995 +initials: R. D. +mobile: +1 206 308-7698 +pager: +1 206 849-3119 +roomNumber: 9516 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Everett Pittam,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Everett Pittam +sn: Pittam +description: This is Everett Pittam's description +facsimileTelephoneNumber: +1 408 815-8141 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 799-8979 +title: Master Product Testing President +userPassword: Password1 +uid: PittamE +givenName: Everett +mail: PittamE@d5d0e43f3dbe4e67a0afeef31a233058.bitwarden.com +carLicense: U0OT8R +departmentNumber: 5333 +employeeType: Employee +homePhone: +1 408 704-2051 +initials: E. P. +mobile: +1 408 982-2094 +pager: +1 408 944-1065 +roomNumber: 9133 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ngai Antkowiak +sn: Antkowiak +description: This is Ngai Antkowiak's description +facsimileTelephoneNumber: +1 415 511-9662 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 925-5657 +title: Master Administrative Technician +userPassword: Password1 +uid: AntkowiN +givenName: Ngai +mail: AntkowiN@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com +carLicense: LD9IRE +departmentNumber: 1068 +employeeType: Contract +homePhone: +1 415 794-7285 +initials: N. A. +mobile: +1 415 212-5816 +pager: +1 415 736-2682 +roomNumber: 8998 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Erwin Hlady,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erwin Hlady +sn: Hlady +description: This is Erwin Hlady's description +facsimileTelephoneNumber: +1 415 207-5267 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 267-3099 +title: Supreme Management Consultant +userPassword: Password1 +uid: HladyE +givenName: Erwin +mail: HladyE@7f15b04bcb6949009d518c224559328a.bitwarden.com +carLicense: 4CCKHO +departmentNumber: 3055 +employeeType: Employee +homePhone: +1 415 890-4154 +initials: E. H. +mobile: +1 415 922-5316 +pager: +1 415 428-1436 +roomNumber: 9640 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shiu Masty,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shiu Masty +sn: Masty +description: This is Shiu Masty's description +facsimileTelephoneNumber: +1 206 511-3595 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 502-7061 +title: Chief Peons Admin +userPassword: Password1 +uid: MastyS +givenName: Shiu +mail: MastyS@171799a1ff4347f880be38e1dad1f90e.bitwarden.com +carLicense: HQYSY7 +departmentNumber: 3120 +employeeType: Employee +homePhone: +1 206 831-8859 +initials: S. M. +mobile: +1 206 844-9809 +pager: +1 206 155-2595 +roomNumber: 9424 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Terrijo Roth,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terrijo Roth +sn: Roth +description: This is Terrijo Roth's description +facsimileTelephoneNumber: +1 415 200-4294 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 910-8171 +title: Chief Peons Figurehead +userPassword: Password1 +uid: RothT +givenName: Terrijo +mail: RothT@164b360781494ed5a1326bd8161f5895.bitwarden.com +carLicense: KNGUDT +departmentNumber: 4713 +employeeType: Contract +homePhone: +1 415 431-3876 +initials: T. R. +mobile: +1 415 838-6771 +pager: +1 415 610-3207 +roomNumber: 8203 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Venus Fischetti,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Venus Fischetti +sn: Fischetti +description: This is Venus Fischetti's description +facsimileTelephoneNumber: +1 510 529-4159 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 510 605-2398 +title: Associate Product Testing Developer +userPassword: Password1 +uid: FischetV +givenName: Venus +mail: FischetV@b25a6c9a4813403592f85516045bbb70.bitwarden.com +carLicense: TB73XU +departmentNumber: 5489 +employeeType: Normal +homePhone: +1 510 497-5963 +initials: V. F. +mobile: +1 510 486-5616 +pager: +1 510 190-9268 +roomNumber: 9849 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hewlet Noorani,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hewlet Noorani +sn: Noorani +description: This is Hewlet Noorani's description +facsimileTelephoneNumber: +1 213 141-6861 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 876-3611 +title: Master Administrative Developer +userPassword: Password1 +uid: NooraniH +givenName: Hewlet +mail: NooraniH@494f2548825245788f70b0629ca28b58.bitwarden.com +carLicense: K0U3AN +departmentNumber: 1145 +employeeType: Normal +homePhone: +1 213 647-3887 +initials: H. N. +mobile: +1 213 774-5384 +pager: +1 213 467-3367 +roomNumber: 8201 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hyacinth Wayler +sn: Wayler +description: This is Hyacinth Wayler's description +facsimileTelephoneNumber: +1 213 327-4975 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 397-8743 +title: Master Product Development Technician +userPassword: Password1 +uid: WaylerH +givenName: Hyacinth +mail: WaylerH@649c22a7b0164583bbf6f7f11f7746ba.bitwarden.com +carLicense: BFLOB5 +departmentNumber: 3364 +employeeType: Normal +homePhone: +1 213 688-8141 +initials: H. W. +mobile: +1 213 684-6031 +pager: +1 213 466-1008 +roomNumber: 9988 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Pansy Ochman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pansy Ochman +sn: Ochman +description: This is Pansy Ochman's description +facsimileTelephoneNumber: +1 415 168-8838 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 551-5643 +title: Supreme Product Development President +userPassword: Password1 +uid: OchmanP +givenName: Pansy +mail: OchmanP@ecd862454c8b49a4ab4dccef5a805c86.bitwarden.com +carLicense: T2T0QJ +departmentNumber: 4359 +employeeType: Employee +homePhone: +1 415 201-6217 +initials: P. O. +mobile: +1 415 879-5494 +pager: +1 415 900-8354 +roomNumber: 9214 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Henny Recabarren,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henny Recabarren +sn: Recabarren +description: This is Henny Recabarren's description +facsimileTelephoneNumber: +1 213 141-8075 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 736-3034 +title: Master Product Development Developer +userPassword: Password1 +uid: RecabarH +givenName: Henny +mail: RecabarH@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com +carLicense: YLJ1H4 +departmentNumber: 7475 +employeeType: Normal +homePhone: +1 213 537-2166 +initials: H. R. +mobile: +1 213 596-1733 +pager: +1 213 528-8065 +roomNumber: 8904 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Humberto Gottschalk,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Humberto Gottschalk +sn: Gottschalk +description: This is Humberto Gottschalk's description +facsimileTelephoneNumber: +1 415 952-5684 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 415 858-3147 +title: Associate Peons Figurehead +userPassword: Password1 +uid: GottschH +givenName: Humberto +mail: GottschH@646791cae30048e78e840ca24e142dc7.bitwarden.com +carLicense: Y3MW0M +departmentNumber: 4224 +employeeType: Normal +homePhone: +1 415 538-4002 +initials: H. G. +mobile: +1 415 218-5331 +pager: +1 415 689-9459 +roomNumber: 8590 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vernon Planthara,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vernon Planthara +sn: Planthara +description: This is Vernon Planthara's description +facsimileTelephoneNumber: +1 510 123-2328 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 663-9441 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: PlanthaV +givenName: Vernon +mail: PlanthaV@59024f397a2e4e8693b32cc8290b543c.bitwarden.com +carLicense: BAMFN4 +departmentNumber: 7990 +employeeType: Employee +homePhone: +1 510 951-4163 +initials: V. P. +mobile: +1 510 648-2851 +pager: +1 510 721-1658 +roomNumber: 8391 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Clo Upshaw,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clo Upshaw +sn: Upshaw +description: This is Clo Upshaw's description +facsimileTelephoneNumber: +1 408 130-8414 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 477-8491 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: UpshawC +givenName: Clo +mail: UpshawC@04f6d76d8e594566a6a34acb754c567c.bitwarden.com +carLicense: XGUXIG +departmentNumber: 7510 +employeeType: Employee +homePhone: +1 408 943-7859 +initials: C. U. +mobile: +1 408 314-1713 +pager: +1 408 370-6400 +roomNumber: 9093 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Afton Sykes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Afton Sykes +sn: Sykes +description: This is Afton Sykes's description +facsimileTelephoneNumber: +1 415 273-3998 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 677-7634 +title: Master Peons Visionary +userPassword: Password1 +uid: SykesA +givenName: Afton +mail: SykesA@5b18d26e867d4e609682950868db4cbf.bitwarden.com +carLicense: H9NO0U +departmentNumber: 5121 +employeeType: Contract +homePhone: +1 415 359-6146 +initials: A. S. +mobile: +1 415 926-9592 +pager: +1 415 500-8103 +roomNumber: 9547 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vesna Kowalski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vesna Kowalski +sn: Kowalski +description: This is Vesna Kowalski's description +facsimileTelephoneNumber: +1 213 245-4163 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 593-8194 +title: Associate Management Evangelist +userPassword: Password1 +uid: KowalskV +givenName: Vesna +mail: KowalskV@af93e6fe934c42b6ad84be86f4af830d.bitwarden.com +carLicense: 25MKKP +departmentNumber: 4437 +employeeType: Employee +homePhone: +1 213 240-6738 +initials: V. K. +mobile: +1 213 845-8390 +pager: +1 213 440-2667 +roomNumber: 9346 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Prissie Rintala,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prissie Rintala +sn: Rintala +description: This is Prissie Rintala's description +facsimileTelephoneNumber: +1 408 483-6942 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 522-1212 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: RintalaP +givenName: Prissie +mail: RintalaP@4985d7e0a81648efb3bc84a7fdf3691b.bitwarden.com +carLicense: IO87ET +departmentNumber: 5766 +employeeType: Contract +homePhone: +1 408 164-7783 +initials: P. R. +mobile: +1 408 852-8886 +pager: +1 408 655-4752 +roomNumber: 9949 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Virginia Telfer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Virginia Telfer +sn: Telfer +description: This is Virginia Telfer's description +facsimileTelephoneNumber: +1 415 631-2246 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 409-2618 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: TelferV +givenName: Virginia +mail: TelferV@dbc002b2cc9f41fca56ea18c0d728d15.bitwarden.com +carLicense: XPL07T +departmentNumber: 7582 +employeeType: Normal +homePhone: +1 415 721-5108 +initials: V. T. +mobile: +1 415 234-9648 +pager: +1 415 341-9500 +roomNumber: 9556 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ginette Brans,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginette Brans +sn: Brans +description: This is Ginette Brans's description +facsimileTelephoneNumber: +1 415 910-5132 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 827-4914 +title: Supreme Peons Writer +userPassword: Password1 +uid: BransG +givenName: Ginette +mail: BransG@10bb017137f049d59bb1ad7676fcda69.bitwarden.com +carLicense: Y4GYP2 +departmentNumber: 7903 +employeeType: Contract +homePhone: +1 415 114-5678 +initials: G. B. +mobile: +1 415 654-1860 +pager: +1 415 548-6989 +roomNumber: 8119 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marsie OConner,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marsie OConner +sn: OConner +description: This is Marsie OConner's description +facsimileTelephoneNumber: +1 415 596-8355 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 218-1170 +title: Associate Janitorial Director +userPassword: Password1 +uid: OConnerM +givenName: Marsie +mail: OConnerM@11c4ba17ab574f3bb46442f426b1a2c7.bitwarden.com +carLicense: 7KY8YN +departmentNumber: 9622 +employeeType: Contract +homePhone: +1 415 974-6457 +initials: M. O. +mobile: +1 415 141-1059 +pager: +1 415 308-8050 +roomNumber: 9865 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Amandip Habib,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amandip Habib +sn: Habib +description: This is Amandip Habib's description +facsimileTelephoneNumber: +1 818 239-1329 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 991-8202 +title: Master Product Testing Fellow +userPassword: Password1 +uid: HabibA +givenName: Amandip +mail: HabibA@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com +carLicense: CLL7QP +departmentNumber: 2098 +employeeType: Normal +homePhone: +1 818 400-5709 +initials: A. H. +mobile: +1 818 720-1446 +pager: +1 818 777-6062 +roomNumber: 8255 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ezella Pesik,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ezella Pesik +sn: Pesik +description: This is Ezella Pesik's description +facsimileTelephoneNumber: +1 804 704-1945 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 871-2701 +title: Master Product Development Vice President +userPassword: Password1 +uid: PesikE +givenName: Ezella +mail: PesikE@d2ec725893494e2d93ab18b2a21bf817.bitwarden.com +carLicense: 01GQ2L +departmentNumber: 4997 +employeeType: Employee +homePhone: +1 804 373-9744 +initials: E. P. +mobile: +1 804 854-9644 +pager: +1 804 947-4295 +roomNumber: 9588 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Liv Tabl,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liv Tabl +sn: Tabl +description: This is Liv Tabl's description +facsimileTelephoneNumber: +1 804 454-5856 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 418-8952 +title: Master Management Janitor +userPassword: Password1 +uid: TablL +givenName: Liv +mail: TablL@fae6cb3fc8dc4148a6266128bed876ce.bitwarden.com +carLicense: E8Y5M4 +departmentNumber: 4962 +employeeType: Normal +homePhone: +1 804 426-5644 +initials: L. T. +mobile: +1 804 651-1468 +pager: +1 804 744-3461 +roomNumber: 8383 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Joni McClarren,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joni McClarren +sn: McClarren +description: This is Joni McClarren's description +facsimileTelephoneNumber: +1 510 373-7393 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 897-6236 +title: Master Human Resources Technician +userPassword: Password1 +uid: McClarrJ +givenName: Joni +mail: McClarrJ@d13f782f99e54b11940789543670141b.bitwarden.com +carLicense: CO4H2B +departmentNumber: 3874 +employeeType: Normal +homePhone: +1 510 873-8768 +initials: J. M. +mobile: +1 510 240-6028 +pager: +1 510 851-4175 +roomNumber: 8118 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlinda Blackwood +sn: Blackwood +description: This is Arlinda Blackwood's description +facsimileTelephoneNumber: +1 818 419-5647 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 412-9005 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: BlackwoA +givenName: Arlinda +mail: BlackwoA@72b0656cb70b415ca87f666c0c859e2b.bitwarden.com +carLicense: ML6CU3 +departmentNumber: 8027 +employeeType: Contract +homePhone: +1 818 451-8242 +initials: A. B. +mobile: +1 818 391-3634 +pager: +1 818 686-5081 +roomNumber: 8197 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Leonida Stefanac,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonida Stefanac +sn: Stefanac +description: This is Leonida Stefanac's description +facsimileTelephoneNumber: +1 818 236-2772 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 818 954-8682 +title: Chief Peons Dictator +userPassword: Password1 +uid: StefanaL +givenName: Leonida +mail: StefanaL@4d36f09b6d2e498eae6cce028472d669.bitwarden.com +carLicense: W8TKU2 +departmentNumber: 7005 +employeeType: Normal +homePhone: +1 818 824-6127 +initials: L. S. +mobile: +1 818 884-8389 +pager: +1 818 691-1188 +roomNumber: 8742 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Viviyan Baird,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viviyan Baird +sn: Baird +description: This is Viviyan Baird's description +facsimileTelephoneNumber: +1 804 714-4349 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 627-5397 +title: Chief Product Development Technician +userPassword: Password1 +uid: BairdV +givenName: Viviyan +mail: BairdV@6ec1e4c42a894d9bb6d499b1b4526fa2.bitwarden.com +carLicense: H63XTA +departmentNumber: 2657 +employeeType: Contract +homePhone: +1 804 465-5464 +initials: V. B. +mobile: +1 804 667-3012 +pager: +1 804 417-6413 +roomNumber: 9463 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Robbin Meriwether,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robbin Meriwether +sn: Meriwether +description: This is Robbin Meriwether's description +facsimileTelephoneNumber: +1 206 365-9127 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 971-5714 +title: Associate Product Development Manager +userPassword: Password1 +uid: MeriwetR +givenName: Robbin +mail: MeriwetR@bdc3cbcec8a2447188118ae5b601e009.bitwarden.com +carLicense: 0AD9EN +departmentNumber: 5912 +employeeType: Contract +homePhone: +1 206 636-1963 +initials: R. M. +mobile: +1 206 207-7491 +pager: +1 206 247-6561 +roomNumber: 9738 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gwennyth Basser,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwennyth Basser +sn: Basser +description: This is Gwennyth Basser's description +facsimileTelephoneNumber: +1 213 971-4434 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 541-9577 +title: Junior Administrative Technician +userPassword: Password1 +uid: BasserG +givenName: Gwennyth +mail: BasserG@34de97baa0ba4e6e804422e1a33c9bba.bitwarden.com +carLicense: 5UGCPK +departmentNumber: 8860 +employeeType: Employee +homePhone: +1 213 138-5438 +initials: G. B. +mobile: +1 213 401-3674 +pager: +1 213 575-7107 +roomNumber: 8210 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Binh Aversa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binh Aversa +sn: Aversa +description: This is Binh Aversa's description +facsimileTelephoneNumber: +1 408 450-5693 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 959-1909 +title: Junior Payroll Dictator +userPassword: Password1 +uid: AversaB +givenName: Binh +mail: AversaB@e05752054bdf4aeabb75f365622f6480.bitwarden.com +carLicense: 1VEQTJ +departmentNumber: 2160 +employeeType: Employee +homePhone: +1 408 319-4135 +initials: B. A. +mobile: +1 408 494-8110 +pager: +1 408 679-2132 +roomNumber: 9530 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marlee Jawor,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlee Jawor +sn: Jawor +description: This is Marlee Jawor's description +facsimileTelephoneNumber: +1 206 285-1944 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 433-7031 +title: Junior Product Testing Punk +userPassword: Password1 +uid: JaworM +givenName: Marlee +mail: JaworM@bbf9c04e50a241698a5503a647ae8281.bitwarden.com +carLicense: S6M81R +departmentNumber: 4699 +employeeType: Normal +homePhone: +1 206 514-8707 +initials: M. J. +mobile: +1 206 554-4221 +pager: +1 206 703-3990 +roomNumber: 8095 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Antonio Risdal,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antonio Risdal +sn: Risdal +description: This is Antonio Risdal's description +facsimileTelephoneNumber: +1 206 107-3493 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 537-6520 +title: Chief Product Testing President +userPassword: Password1 +uid: RisdalA +givenName: Antonio +mail: RisdalA@b18734eaf31b4b8a9fcf2accdab91823.bitwarden.com +carLicense: MVIW8M +departmentNumber: 8856 +employeeType: Normal +homePhone: +1 206 197-8263 +initials: A. R. +mobile: +1 206 282-9207 +pager: +1 206 313-2803 +roomNumber: 8563 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dieter Dickinson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dieter Dickinson +sn: Dickinson +description: This is Dieter Dickinson's description +facsimileTelephoneNumber: +1 213 573-4315 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 583-4270 +title: Supreme Peons Evangelist +userPassword: Password1 +uid: DickinsD +givenName: Dieter +mail: DickinsD@869bcf8a299b41b19a933afcb83f9250.bitwarden.com +carLicense: PDWGUP +departmentNumber: 6204 +employeeType: Contract +homePhone: +1 213 114-5787 +initials: D. D. +mobile: +1 213 665-9155 +pager: +1 213 265-6871 +roomNumber: 9104 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gilda Shnay,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilda Shnay +sn: Shnay +description: This is Gilda Shnay's description +facsimileTelephoneNumber: +1 213 688-7331 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 583-5497 +title: Junior Product Development Czar +userPassword: Password1 +uid: ShnayG +givenName: Gilda +mail: ShnayG@e6981380e68944d6b1fabbe651d0a66a.bitwarden.com +carLicense: XG3LAS +departmentNumber: 9039 +employeeType: Contract +homePhone: +1 213 527-9735 +initials: G. S. +mobile: +1 213 736-4984 +pager: +1 213 607-1244 +roomNumber: 8795 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Agnese Herrington,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnese Herrington +sn: Herrington +description: This is Agnese Herrington's description +facsimileTelephoneNumber: +1 408 645-5067 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 673-8744 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: HerringA +givenName: Agnese +mail: HerringA@5e097b6f4fcc40c7a34c83f921520553.bitwarden.com +carLicense: BEQWLY +departmentNumber: 7959 +employeeType: Employee +homePhone: +1 408 534-8865 +initials: A. H. +mobile: +1 408 953-8524 +pager: +1 408 520-2633 +roomNumber: 9797 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rebekkah Meleski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebekkah Meleski +sn: Meleski +description: This is Rebekkah Meleski's description +facsimileTelephoneNumber: +1 408 795-7737 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 566-5525 +title: Supreme Peons Evangelist +userPassword: Password1 +uid: MeleskiR +givenName: Rebekkah +mail: MeleskiR@7342ff3b405b4e4cae02a437b3fc6bca.bitwarden.com +carLicense: 9V05OE +departmentNumber: 9636 +employeeType: Normal +homePhone: +1 408 367-5403 +initials: R. M. +mobile: +1 408 813-6137 +pager: +1 408 734-8221 +roomNumber: 9000 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Noelyn Blander,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noelyn Blander +sn: Blander +description: This is Noelyn Blander's description +facsimileTelephoneNumber: +1 510 385-9194 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 101-4256 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: BlanderN +givenName: Noelyn +mail: BlanderN@a074c5229e6741c19f43f776155a3d03.bitwarden.com +carLicense: WAEEPG +departmentNumber: 4454 +employeeType: Contract +homePhone: +1 510 272-4819 +initials: N. B. +mobile: +1 510 812-2984 +pager: +1 510 483-2579 +roomNumber: 9288 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tamera Rennie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamera Rennie +sn: Rennie +description: This is Tamera Rennie's description +facsimileTelephoneNumber: +1 408 924-3839 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 456-4507 +title: Associate Payroll Assistant +userPassword: Password1 +uid: RennieT +givenName: Tamera +mail: RennieT@14a50969231442b7a4661f1630e8f16c.bitwarden.com +carLicense: T13JV0 +departmentNumber: 4366 +employeeType: Contract +homePhone: +1 408 986-5735 +initials: T. R. +mobile: +1 408 412-7992 +pager: +1 408 515-4441 +roomNumber: 8480 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Portia Cruzado,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Portia Cruzado +sn: Cruzado +description: This is Portia Cruzado's description +facsimileTelephoneNumber: +1 206 418-8598 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 716-7414 +title: Junior Administrative Writer +userPassword: Password1 +uid: CruzadoP +givenName: Portia +mail: CruzadoP@fe60fc6c21f046639fc69fd725ace3ee.bitwarden.com +carLicense: CR3N6K +departmentNumber: 7049 +employeeType: Employee +homePhone: +1 206 988-9166 +initials: P. C. +mobile: +1 206 724-3414 +pager: +1 206 335-1219 +roomNumber: 8993 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Robinett Samson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinett Samson +sn: Samson +description: This is Robinett Samson's description +facsimileTelephoneNumber: +1 510 611-9010 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 510 312-4666 +title: Master Payroll Manager +userPassword: Password1 +uid: SamsonR +givenName: Robinett +mail: SamsonR@b0365da8cd3b4eef9d2acb818f1cbef0.bitwarden.com +carLicense: L1B43A +departmentNumber: 9775 +employeeType: Employee +homePhone: +1 510 230-6289 +initials: R. S. +mobile: +1 510 750-5083 +pager: +1 510 954-8079 +roomNumber: 8538 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelcey Potvin +sn: Potvin +description: This is Kelcey Potvin's description +facsimileTelephoneNumber: +1 415 752-3602 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 415 494-5567 +title: Associate Product Testing Evangelist +userPassword: Password1 +uid: PotvinK +givenName: Kelcey +mail: PotvinK@a199f75806e043a29f88f2704ef795cb.bitwarden.com +carLicense: B5O7N9 +departmentNumber: 6167 +employeeType: Normal +homePhone: +1 415 218-4300 +initials: K. P. +mobile: +1 415 877-3763 +pager: +1 415 133-3420 +roomNumber: 9325 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coleman Jeavons +sn: Jeavons +description: This is Coleman Jeavons's description +facsimileTelephoneNumber: +1 804 752-3748 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 719-1472 +title: Chief Human Resources Vice President +userPassword: Password1 +uid: JeavonsC +givenName: Coleman +mail: JeavonsC@66856639d6224561b9d5baf4deda51d9.bitwarden.com +carLicense: 0SKS73 +departmentNumber: 1449 +employeeType: Employee +homePhone: +1 804 198-6017 +initials: C. J. +mobile: +1 804 470-1935 +pager: +1 804 592-2880 +roomNumber: 8923 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sherman Frodsham,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherman Frodsham +sn: Frodsham +description: This is Sherman Frodsham's description +facsimileTelephoneNumber: +1 415 120-6167 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 890-7446 +title: Master Administrative President +userPassword: Password1 +uid: FrodshaS +givenName: Sherman +mail: FrodshaS@d71f931e88694d74b88e32769af98e29.bitwarden.com +carLicense: KSGUHJ +departmentNumber: 7358 +employeeType: Contract +homePhone: +1 415 702-9506 +initials: S. F. +mobile: +1 415 939-3626 +pager: +1 415 526-7500 +roomNumber: 9354 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maury Jansen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maury Jansen +sn: Jansen +description: This is Maury Jansen's description +facsimileTelephoneNumber: +1 818 915-1725 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 193-3790 +title: Chief Management Janitor +userPassword: Password1 +uid: JansenM +givenName: Maury +mail: JansenM@0e3cc15d16b54ddeae75d206f48f1204.bitwarden.com +carLicense: PD93RX +departmentNumber: 2690 +employeeType: Contract +homePhone: +1 818 982-2655 +initials: M. J. +mobile: +1 818 330-7998 +pager: +1 818 673-4984 +roomNumber: 8791 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tilly Ocampo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilly Ocampo +sn: Ocampo +description: This is Tilly Ocampo's description +facsimileTelephoneNumber: +1 408 973-8293 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 597-2641 +title: Master Payroll President +userPassword: Password1 +uid: OcampoT +givenName: Tilly +mail: OcampoT@3ad345248df74d59a3ad7d7cbfe0100d.bitwarden.com +carLicense: IF9HKP +departmentNumber: 2822 +employeeType: Employee +homePhone: +1 408 321-5491 +initials: T. O. +mobile: +1 408 359-1368 +pager: +1 408 447-4035 +roomNumber: 9834 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Pauli Capes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pauli Capes +sn: Capes +description: This is Pauli Capes's description +facsimileTelephoneNumber: +1 415 607-5198 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 415 911-9466 +title: Supreme Human Resources Director +userPassword: Password1 +uid: CapesP +givenName: Pauli +mail: CapesP@6a7058ac13d642658b7f7adc5e875217.bitwarden.com +carLicense: 3B3GGI +departmentNumber: 4430 +employeeType: Contract +homePhone: +1 415 310-1567 +initials: P. C. +mobile: +1 415 737-9810 +pager: +1 415 259-9322 +roomNumber: 9291 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Augusta Subick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Augusta Subick +sn: Subick +description: This is Augusta Subick's description +facsimileTelephoneNumber: +1 818 508-2913 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 164-1406 +title: Supreme Payroll Consultant +userPassword: Password1 +uid: SubickA +givenName: Augusta +mail: SubickA@ce6ea378c27b45efb4f43990327ef994.bitwarden.com +carLicense: 01QLWP +departmentNumber: 3650 +employeeType: Contract +homePhone: +1 818 587-3757 +initials: A. S. +mobile: +1 818 435-5883 +pager: +1 818 529-1864 +roomNumber: 9303 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jastinder Gysel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jastinder Gysel +sn: Gysel +description: This is Jastinder Gysel's description +facsimileTelephoneNumber: +1 818 226-4296 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 713-2301 +title: Master Administrative Developer +userPassword: Password1 +uid: GyselJ +givenName: Jastinder +mail: GyselJ@38743dc2a7284707827cb55c3c04b77c.bitwarden.com +carLicense: UYM0DF +departmentNumber: 5757 +employeeType: Employee +homePhone: +1 818 583-8410 +initials: J. G. +mobile: +1 818 409-6334 +pager: +1 818 588-3439 +roomNumber: 9424 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jason Loveless,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jason Loveless +sn: Loveless +description: This is Jason Loveless's description +facsimileTelephoneNumber: +1 804 268-5793 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 513-2756 +title: Master Human Resources Warrior +userPassword: Password1 +uid: LovelesJ +givenName: Jason +mail: LovelesJ@3f957af8403b44cda402864b6bf1f589.bitwarden.com +carLicense: DOF1AI +departmentNumber: 1462 +employeeType: Employee +homePhone: +1 804 242-7559 +initials: J. L. +mobile: +1 804 811-5333 +pager: +1 804 936-8692 +roomNumber: 9265 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pamella Trudel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pamella Trudel +sn: Trudel +description: This is Pamella Trudel's description +facsimileTelephoneNumber: +1 510 176-2807 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 510 344-4960 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: TrudelP +givenName: Pamella +mail: TrudelP@acaf00cd94184334a88c04c02dc188dd.bitwarden.com +carLicense: NGG4NI +departmentNumber: 8363 +employeeType: Employee +homePhone: +1 510 266-1835 +initials: P. T. +mobile: +1 510 566-9806 +pager: +1 510 956-2541 +roomNumber: 9800 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lucina Volfe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucina Volfe +sn: Volfe +description: This is Lucina Volfe's description +facsimileTelephoneNumber: +1 818 307-9445 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 818 378-9806 +title: Supreme Payroll Mascot +userPassword: Password1 +uid: VolfeL +givenName: Lucina +mail: VolfeL@875af3604a224bc0adcaa7037f12ca60.bitwarden.com +carLicense: U9MGQU +departmentNumber: 8485 +employeeType: Normal +homePhone: +1 818 844-7033 +initials: L. V. +mobile: +1 818 172-8330 +pager: +1 818 267-3909 +roomNumber: 9720 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sheena Chung,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheena Chung +sn: Chung +description: This is Sheena Chung's description +facsimileTelephoneNumber: +1 213 721-5363 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 341-5262 +title: Associate Product Testing Technician +userPassword: Password1 +uid: ChungS +givenName: Sheena +mail: ChungS@8d3c44ed2e3e425b88258d14938dfd7c.bitwarden.com +carLicense: VIOAWS +departmentNumber: 4802 +employeeType: Normal +homePhone: +1 213 280-5813 +initials: S. C. +mobile: +1 213 801-3731 +pager: +1 213 130-8616 +roomNumber: 8944 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Andriana Myers,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andriana Myers +sn: Myers +description: This is Andriana Myers's description +facsimileTelephoneNumber: +1 206 596-6400 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 341-5955 +title: Junior Janitorial Writer +userPassword: Password1 +uid: MyersA +givenName: Andriana +mail: MyersA@4d2b6aeb52944f46890dd70951e65aa3.bitwarden.com +carLicense: 1QDWSB +departmentNumber: 7282 +employeeType: Normal +homePhone: +1 206 741-8685 +initials: A. M. +mobile: +1 206 122-1151 +pager: +1 206 536-8083 +roomNumber: 9567 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lourdes Rossanese +sn: Rossanese +description: This is Lourdes Rossanese's description +facsimileTelephoneNumber: +1 818 222-4726 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 676-5912 +title: Junior Human Resources Consultant +userPassword: Password1 +uid: RossaneL +givenName: Lourdes +mail: RossaneL@ab5a3e15caae4984acf7b1a615995a84.bitwarden.com +carLicense: 8Q17JT +departmentNumber: 4515 +employeeType: Contract +homePhone: +1 818 814-1708 +initials: L. R. +mobile: +1 818 246-2936 +pager: +1 818 123-9015 +roomNumber: 9683 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Henk Goin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henk Goin +sn: Goin +description: This is Henk Goin's description +facsimileTelephoneNumber: +1 213 427-1899 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 801-3647 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: GoinH +givenName: Henk +mail: GoinH@d457e1580197417888cc4a9c93599471.bitwarden.com +carLicense: LT30U4 +departmentNumber: 5393 +employeeType: Employee +homePhone: +1 213 810-9500 +initials: H. G. +mobile: +1 213 738-4925 +pager: +1 213 528-6577 +roomNumber: 8812 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cesar Rabecs +sn: Rabecs +description: This is Cesar Rabecs's description +facsimileTelephoneNumber: +1 206 182-5419 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 376-5660 +title: Chief Product Testing Dictator +userPassword: Password1 +uid: RabecsC +givenName: Cesar +mail: RabecsC@a38a54d93a9a4ec1a621a87e5a204d4b.bitwarden.com +carLicense: K6G8DD +departmentNumber: 5271 +employeeType: Normal +homePhone: +1 206 486-1555 +initials: C. R. +mobile: +1 206 106-4552 +pager: +1 206 265-2579 +roomNumber: 8234 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamma Parkhill +sn: Parkhill +description: This is Tamma Parkhill's description +facsimileTelephoneNumber: +1 510 476-3321 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 479-4893 +title: Junior Product Testing Writer +userPassword: Password1 +uid: ParkhilT +givenName: Tamma +mail: ParkhilT@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com +carLicense: 83PM9W +departmentNumber: 5588 +employeeType: Normal +homePhone: +1 510 687-8282 +initials: T. P. +mobile: +1 510 106-4819 +pager: +1 510 167-2886 +roomNumber: 9605 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Leese DeWiele,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leese DeWiele +sn: DeWiele +description: This is Leese DeWiele's description +facsimileTelephoneNumber: +1 804 337-5744 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 378-2949 +title: Supreme Administrative Director +userPassword: Password1 +uid: DeWieleL +givenName: Leese +mail: DeWieleL@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com +carLicense: N5L96Y +departmentNumber: 2754 +employeeType: Normal +homePhone: +1 804 851-8820 +initials: L. D. +mobile: +1 804 164-4707 +pager: +1 804 982-6467 +roomNumber: 8217 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrzej Carrillo +sn: Carrillo +description: This is Andrzej Carrillo's description +facsimileTelephoneNumber: +1 818 807-3448 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 589-9312 +title: Master Janitorial Artist +userPassword: Password1 +uid: CarrillA +givenName: Andrzej +mail: CarrillA@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com +carLicense: FBG6MN +departmentNumber: 6599 +employeeType: Employee +homePhone: +1 818 732-2185 +initials: A. C. +mobile: +1 818 554-5342 +pager: +1 818 803-1673 +roomNumber: 8105 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Emp Lenior,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emp Lenior +sn: Lenior +description: This is Emp Lenior's description +facsimileTelephoneNumber: +1 213 349-9257 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 188-9716 +title: Junior Administrative Grunt +userPassword: Password1 +uid: LeniorE +givenName: Emp +mail: LeniorE@78455201418b4eda8d1307aa8e77e3d6.bitwarden.com +carLicense: 8T3JEE +departmentNumber: 6211 +employeeType: Employee +homePhone: +1 213 341-5762 +initials: E. L. +mobile: +1 213 379-5699 +pager: +1 213 226-5492 +roomNumber: 9024 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorine Skaret,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorine Skaret +sn: Skaret +description: This is Lorine Skaret's description +facsimileTelephoneNumber: +1 804 327-2783 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 910-5977 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: SkaretL +givenName: Lorine +mail: SkaretL@1ab5e46ea4fb40b292686a380747c794.bitwarden.com +carLicense: ANRL7K +departmentNumber: 6947 +employeeType: Contract +homePhone: +1 804 510-5714 +initials: L. S. +mobile: +1 804 182-3634 +pager: +1 804 499-5026 +roomNumber: 9611 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rora Duthie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rora Duthie +sn: Duthie +description: This is Rora Duthie's description +facsimileTelephoneNumber: +1 213 287-7645 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 213 518-5557 +title: Supreme Product Development Pinhead +userPassword: Password1 +uid: DuthieR +givenName: Rora +mail: DuthieR@127f75e34fa94456a07c8ec8f332f580.bitwarden.com +carLicense: WK5QJA +departmentNumber: 4410 +employeeType: Normal +homePhone: +1 213 232-2302 +initials: R. D. +mobile: +1 213 603-6981 +pager: +1 213 615-3228 +roomNumber: 8468 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aubrette Carlson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aubrette Carlson +sn: Carlson +description: This is Aubrette Carlson's description +facsimileTelephoneNumber: +1 206 197-4223 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 580-4369 +title: Master Peons Artist +userPassword: Password1 +uid: CarlsonA +givenName: Aubrette +mail: CarlsonA@2c0f47a97a024956922ed080c07c7087.bitwarden.com +carLicense: H7XFBK +departmentNumber: 4574 +employeeType: Employee +homePhone: +1 206 575-2593 +initials: A. C. +mobile: +1 206 813-5345 +pager: +1 206 373-3995 +roomNumber: 9275 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Delisle Moledina,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delisle Moledina +sn: Moledina +description: This is Delisle Moledina's description +facsimileTelephoneNumber: +1 804 343-4369 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 690-8023 +title: Supreme Management Czar +userPassword: Password1 +uid: MoledinD +givenName: Delisle +mail: MoledinD@7aa27c58a55f473b92a9bea4edfa7790.bitwarden.com +carLicense: HH76OS +departmentNumber: 1409 +employeeType: Contract +homePhone: +1 804 941-2070 +initials: D. M. +mobile: +1 804 754-7655 +pager: +1 804 612-3272 +roomNumber: 9056 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chloris Fogle,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chloris Fogle +sn: Fogle +description: This is Chloris Fogle's description +facsimileTelephoneNumber: +1 510 713-1732 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 510 146-5450 +title: Chief Payroll Admin +userPassword: Password1 +uid: FogleC +givenName: Chloris +mail: FogleC@c925a785cc914f7896a342038a540076.bitwarden.com +carLicense: O27JD2 +departmentNumber: 4599 +employeeType: Normal +homePhone: +1 510 143-6749 +initials: C. F. +mobile: +1 510 283-8075 +pager: +1 510 428-9281 +roomNumber: 9621 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hadria Keung,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hadria Keung +sn: Keung +description: This is Hadria Keung's description +facsimileTelephoneNumber: +1 818 774-6844 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 204-1923 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: KeungH +givenName: Hadria +mail: KeungH@c8f486d27e8b44169d6f371867433900.bitwarden.com +carLicense: UAW4WH +departmentNumber: 6319 +employeeType: Normal +homePhone: +1 818 229-5002 +initials: H. K. +mobile: +1 818 117-9662 +pager: +1 818 310-4368 +roomNumber: 9787 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sarena Sandhar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarena Sandhar +sn: Sandhar +description: This is Sarena Sandhar's description +facsimileTelephoneNumber: +1 415 393-2790 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 475-3359 +title: Master Product Development Vice President +userPassword: Password1 +uid: SandharS +givenName: Sarena +mail: SandharS@6994ff306ef64425a30543b5e9a42d04.bitwarden.com +carLicense: 0QHY2Q +departmentNumber: 1697 +employeeType: Normal +homePhone: +1 415 448-7568 +initials: S. S. +mobile: +1 415 792-5410 +pager: +1 415 996-4454 +roomNumber: 8898 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shina Vilhan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shina Vilhan +sn: Vilhan +description: This is Shina Vilhan's description +facsimileTelephoneNumber: +1 213 228-2801 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 321-1043 +title: Chief Human Resources Mascot +userPassword: Password1 +uid: VilhanS +givenName: Shina +mail: VilhanS@a50159dd57124aa194b68385c74dfad6.bitwarden.com +carLicense: 3ASMAK +departmentNumber: 6448 +employeeType: Normal +homePhone: +1 213 521-8349 +initials: S. V. +mobile: +1 213 911-5642 +pager: +1 213 987-7083 +roomNumber: 8502 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Candace Nadler,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candace Nadler +sn: Nadler +description: This is Candace Nadler's description +facsimileTelephoneNumber: +1 415 350-4681 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 415 139-3344 +title: Associate Human Resources Punk +userPassword: Password1 +uid: NadlerC +givenName: Candace +mail: NadlerC@1f029313d9f242ecbc83d4ed5e9cc00f.bitwarden.com +carLicense: W9XSDB +departmentNumber: 2510 +employeeType: Employee +homePhone: +1 415 839-2416 +initials: C. N. +mobile: +1 415 841-9598 +pager: +1 415 125-8063 +roomNumber: 8038 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Osiris Rtpbuild,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Osiris Rtpbuild +sn: Rtpbuild +description: This is Osiris Rtpbuild's description +facsimileTelephoneNumber: +1 818 297-6173 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 818 702-6253 +title: Associate Management Janitor +userPassword: Password1 +uid: RtpbuilO +givenName: Osiris +mail: RtpbuilO@d223bf95e305408f8ce65e186425ec5a.bitwarden.com +carLicense: IXPA70 +departmentNumber: 6518 +employeeType: Employee +homePhone: +1 818 702-7445 +initials: O. R. +mobile: +1 818 331-4669 +pager: +1 818 775-7016 +roomNumber: 8791 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Patt Lampe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patt Lampe +sn: Lampe +description: This is Patt Lampe's description +facsimileTelephoneNumber: +1 510 911-9779 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 536-2260 +title: Junior Payroll Czar +userPassword: Password1 +uid: LampeP +givenName: Patt +mail: LampeP@fb51e4746fc04473a7bebe9c1a3d6645.bitwarden.com +carLicense: CCVHIG +departmentNumber: 4324 +employeeType: Normal +homePhone: +1 510 737-3275 +initials: P. L. +mobile: +1 510 409-9914 +pager: +1 510 545-4160 +roomNumber: 9234 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ola Fricks,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ola Fricks +sn: Fricks +description: This is Ola Fricks's description +facsimileTelephoneNumber: +1 206 902-9476 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 569-6764 +title: Junior Management Admin +userPassword: Password1 +uid: FricksO +givenName: Ola +mail: FricksO@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com +carLicense: 93OS5M +departmentNumber: 2875 +employeeType: Employee +homePhone: +1 206 623-7946 +initials: O. F. +mobile: +1 206 921-9818 +pager: +1 206 874-3066 +roomNumber: 9786 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jobie Brassem,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jobie Brassem +sn: Brassem +description: This is Jobie Brassem's description +facsimileTelephoneNumber: +1 206 590-3400 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 690-1803 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: BrassemJ +givenName: Jobie +mail: BrassemJ@da5a908240674035b4f089697eec14f2.bitwarden.com +carLicense: IVQF6W +departmentNumber: 8653 +employeeType: Employee +homePhone: +1 206 226-7677 +initials: J. B. +mobile: +1 206 843-6538 +pager: +1 206 752-6963 +roomNumber: 9507 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Amarjit Shull,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amarjit Shull +sn: Shull +description: This is Amarjit Shull's description +facsimileTelephoneNumber: +1 510 872-2518 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 814-1030 +title: Associate Management Artist +userPassword: Password1 +uid: ShullA +givenName: Amarjit +mail: ShullA@33e3d5f7842a441e967a49435691d7e1.bitwarden.com +carLicense: VMGBT9 +departmentNumber: 2941 +employeeType: Normal +homePhone: +1 510 847-3610 +initials: A. S. +mobile: +1 510 525-5244 +pager: +1 510 676-1741 +roomNumber: 9069 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elysee Maenpaa +sn: Maenpaa +description: This is Elysee Maenpaa's description +facsimileTelephoneNumber: +1 213 452-6288 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 213 535-5649 +title: Master Payroll Manager +userPassword: Password1 +uid: MaenpaaE +givenName: Elysee +mail: MaenpaaE@fcff654db86140cbab4aa071c0d40b07.bitwarden.com +carLicense: TAP3KB +departmentNumber: 4322 +employeeType: Employee +homePhone: +1 213 189-7681 +initials: E. M. +mobile: +1 213 783-2873 +pager: +1 213 831-7596 +roomNumber: 8521 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marriet Grau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marriet Grau +sn: Grau +description: This is Marriet Grau's description +facsimileTelephoneNumber: +1 818 167-7160 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 892-8514 +title: Master Peons Pinhead +userPassword: Password1 +uid: GrauM +givenName: Marriet +mail: GrauM@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com +carLicense: 2XTH1S +departmentNumber: 4826 +employeeType: Normal +homePhone: +1 818 127-3698 +initials: M. G. +mobile: +1 818 938-8292 +pager: +1 818 356-9653 +roomNumber: 8332 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kellsie Tilmon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kellsie Tilmon +sn: Tilmon +description: This is Kellsie Tilmon's description +facsimileTelephoneNumber: +1 510 488-2413 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 133-6562 +title: Associate Management Technician +userPassword: Password1 +uid: TilmonK +givenName: Kellsie +mail: TilmonK@b0ec022ac74f4073806f06ef760d43a1.bitwarden.com +carLicense: TB68HS +departmentNumber: 9977 +employeeType: Normal +homePhone: +1 510 471-5599 +initials: K. T. +mobile: +1 510 265-6602 +pager: +1 510 869-8093 +roomNumber: 9648 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Deloria Tulk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deloria Tulk +sn: Tulk +description: This is Deloria Tulk's description +facsimileTelephoneNumber: +1 415 188-2888 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 472-5700 +title: Chief Janitorial Visionary +userPassword: Password1 +uid: TulkD +givenName: Deloria +mail: TulkD@dd51cc0eafb644c3952bfc8183b9acd1.bitwarden.com +carLicense: X7Q25K +departmentNumber: 6341 +employeeType: Contract +homePhone: +1 415 473-6625 +initials: D. T. +mobile: +1 415 189-4234 +pager: +1 415 218-6433 +roomNumber: 9942 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Julianna Towsley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julianna Towsley +sn: Towsley +description: This is Julianna Towsley's description +facsimileTelephoneNumber: +1 206 611-3977 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 190-3266 +title: Associate Peons Admin +userPassword: Password1 +uid: TowsleyJ +givenName: Julianna +mail: TowsleyJ@dd31f4ea6f0c44f4aa5f46684ef66e9a.bitwarden.com +carLicense: 4IMQU7 +departmentNumber: 6631 +employeeType: Contract +homePhone: +1 206 977-4675 +initials: J. T. +mobile: +1 206 896-3138 +pager: +1 206 252-4098 +roomNumber: 8683 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Power Surazski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Power Surazski +sn: Surazski +description: This is Power Surazski's description +facsimileTelephoneNumber: +1 818 173-6252 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 584-5809 +title: Associate Administrative Grunt +userPassword: Password1 +uid: SurazskP +givenName: Power +mail: SurazskP@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com +carLicense: BQPGE8 +departmentNumber: 6764 +employeeType: Normal +homePhone: +1 818 640-8873 +initials: P. S. +mobile: +1 818 255-8362 +pager: +1 818 766-5590 +roomNumber: 9564 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=YueMin Dube,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YueMin Dube +sn: Dube +description: This is YueMin Dube's description +facsimileTelephoneNumber: +1 415 937-8985 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 719-5703 +title: Chief Peons Admin +userPassword: Password1 +uid: DubeY +givenName: YueMin +mail: DubeY@e54368d6007d4c1ebda0848d18470ef4.bitwarden.com +carLicense: GNC7S4 +departmentNumber: 3167 +employeeType: Employee +homePhone: +1 415 205-5725 +initials: Y. D. +mobile: +1 415 579-4816 +pager: +1 415 876-5555 +roomNumber: 9108 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gerald Hamel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerald Hamel +sn: Hamel +description: This is Gerald Hamel's description +facsimileTelephoneNumber: +1 510 212-9437 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 373-5021 +title: Associate Management Vice President +userPassword: Password1 +uid: HamelG +givenName: Gerald +mail: HamelG@28fab2a5e4034ede9d4f584a0fd75e72.bitwarden.com +carLicense: G909HR +departmentNumber: 2951 +employeeType: Normal +homePhone: +1 510 402-1290 +initials: G. H. +mobile: +1 510 100-4537 +pager: +1 510 984-3390 +roomNumber: 8860 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cami Hanley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cami Hanley +sn: Hanley +description: This is Cami Hanley's description +facsimileTelephoneNumber: +1 206 840-8286 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 206 931-3898 +title: Associate Janitorial President +userPassword: Password1 +uid: HanleyC +givenName: Cami +mail: HanleyC@ce001280b666479eb0eb4d06e9257b27.bitwarden.com +carLicense: O0C1JD +departmentNumber: 9060 +employeeType: Employee +homePhone: +1 206 777-1861 +initials: C. H. +mobile: +1 206 167-7653 +pager: +1 206 580-9289 +roomNumber: 9572 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shigeki Sharpe +sn: Sharpe +description: This is Shigeki Sharpe's description +facsimileTelephoneNumber: +1 213 545-8577 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 819-4685 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: SharpeS +givenName: Shigeki +mail: SharpeS@8a8d1631964049f182939e971c150026.bitwarden.com +carLicense: 1DY36K +departmentNumber: 1368 +employeeType: Normal +homePhone: +1 213 388-1614 +initials: S. S. +mobile: +1 213 172-5317 +pager: +1 213 971-8426 +roomNumber: 9194 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Silvana Barakat,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silvana Barakat +sn: Barakat +description: This is Silvana Barakat's description +facsimileTelephoneNumber: +1 804 507-3463 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 414-1054 +title: Supreme Administrative Czar +userPassword: Password1 +uid: BarakatS +givenName: Silvana +mail: BarakatS@7e7a2a61072144f1bbb5c3973fb03067.bitwarden.com +carLicense: FGD9I5 +departmentNumber: 9707 +employeeType: Normal +homePhone: +1 804 358-6829 +initials: S. B. +mobile: +1 804 689-4110 +pager: +1 804 668-6908 +roomNumber: 9147 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maxey Bulman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maxey Bulman +sn: Bulman +description: This is Maxey Bulman's description +facsimileTelephoneNumber: +1 213 115-5366 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 818-8365 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: BulmanM +givenName: Maxey +mail: BulmanM@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com +carLicense: 1SFAEQ +departmentNumber: 5617 +employeeType: Employee +homePhone: +1 213 737-4602 +initials: M. B. +mobile: +1 213 164-3919 +pager: +1 213 328-3327 +roomNumber: 8221 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigitta Shalmon +sn: Shalmon +description: This is Brigitta Shalmon's description +facsimileTelephoneNumber: +1 408 711-5359 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 253-3491 +title: Chief Payroll Warrior +userPassword: Password1 +uid: ShalmonB +givenName: Brigitta +mail: ShalmonB@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com +carLicense: UQYTNG +departmentNumber: 4325 +employeeType: Normal +homePhone: +1 408 601-6361 +initials: B. S. +mobile: +1 408 861-5930 +pager: +1 408 240-4563 +roomNumber: 9640 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dzung Newsom,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dzung Newsom +sn: Newsom +description: This is Dzung Newsom's description +facsimileTelephoneNumber: +1 213 185-9615 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 245-7300 +title: Supreme Administrative Developer +userPassword: Password1 +uid: NewsomD +givenName: Dzung +mail: NewsomD@726081298eb8483da69721764554f8d6.bitwarden.com +carLicense: 4YP1R8 +departmentNumber: 6055 +employeeType: Contract +homePhone: +1 213 721-2501 +initials: D. N. +mobile: +1 213 826-9527 +pager: +1 213 507-9584 +roomNumber: 9916 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mats DMSDB,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mats DMSDB +sn: DMSDB +description: This is Mats DMSDB's description +facsimileTelephoneNumber: +1 415 864-5728 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 362-1222 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: DMSDBM +givenName: Mats +mail: DMSDBM@ddab05ea50514da6944e78ee5d4888e8.bitwarden.com +carLicense: V64LW3 +departmentNumber: 5493 +employeeType: Contract +homePhone: +1 415 204-3439 +initials: M. D. +mobile: +1 415 430-3991 +pager: +1 415 362-8486 +roomNumber: 8124 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shigeru McElhone +sn: McElhone +description: This is Shigeru McElhone's description +facsimileTelephoneNumber: +1 804 168-1728 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 561-5375 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: McElhonS +givenName: Shigeru +mail: McElhonS@d0a3070a29b14a28b31681edd00fc298.bitwarden.com +carLicense: LR66J6 +departmentNumber: 7052 +employeeType: Normal +homePhone: +1 804 851-8043 +initials: S. M. +mobile: +1 804 712-9036 +pager: +1 804 987-1165 +roomNumber: 9917 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harrietta Cetraro +sn: Cetraro +description: This is Harrietta Cetraro's description +facsimileTelephoneNumber: +1 415 738-4302 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 839-4061 +title: Chief Payroll Mascot +userPassword: Password1 +uid: CetraroH +givenName: Harrietta +mail: CetraroH@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com +carLicense: H2G7M9 +departmentNumber: 8504 +employeeType: Employee +homePhone: +1 415 164-7286 +initials: H. C. +mobile: +1 415 679-9788 +pager: +1 415 839-9076 +roomNumber: 8658 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kevyn Minai,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kevyn Minai +sn: Minai +description: This is Kevyn Minai's description +facsimileTelephoneNumber: +1 818 259-4373 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 489-1969 +title: Master Management Sales Rep +userPassword: Password1 +uid: MinaiK +givenName: Kevyn +mail: MinaiK@67a9d61944244b79b04665b16e622d77.bitwarden.com +carLicense: BEW6VF +departmentNumber: 3187 +employeeType: Employee +homePhone: +1 818 129-2949 +initials: K. M. +mobile: +1 818 764-3842 +pager: +1 818 736-4433 +roomNumber: 8248 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dhanvinder Biss,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhanvinder Biss +sn: Biss +description: This is Dhanvinder Biss's description +facsimileTelephoneNumber: +1 804 625-8318 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 126-9099 +title: Associate Peons Writer +userPassword: Password1 +uid: BissD +givenName: Dhanvinder +mail: BissD@b838776a11e74718955f6601c7f8d1e7.bitwarden.com +carLicense: G5C3TA +departmentNumber: 6203 +employeeType: Employee +homePhone: +1 804 120-1865 +initials: D. B. +mobile: +1 804 269-5403 +pager: +1 804 238-4286 +roomNumber: 9156 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joan Badowski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joan Badowski +sn: Badowski +description: This is Joan Badowski's description +facsimileTelephoneNumber: +1 408 160-5491 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 408 709-8218 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: BadowskJ +givenName: Joan +mail: BadowskJ@b27312faaad24253933d0ff172f19446.bitwarden.com +carLicense: K21BL8 +departmentNumber: 1250 +employeeType: Contract +homePhone: +1 408 792-7227 +initials: J. B. +mobile: +1 408 696-9905 +pager: +1 408 540-2211 +roomNumber: 8162 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyman Obenauf +sn: Obenauf +description: This is Lyman Obenauf's description +facsimileTelephoneNumber: +1 804 620-7436 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 278-5154 +title: Junior Human Resources Artist +userPassword: Password1 +uid: ObenaufL +givenName: Lyman +mail: ObenaufL@f2546b85540e458c8c528fab744261e5.bitwarden.com +carLicense: OUPM7A +departmentNumber: 6102 +employeeType: Contract +homePhone: +1 804 186-9867 +initials: L. O. +mobile: +1 804 386-8953 +pager: +1 804 369-9236 +roomNumber: 9518 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Libby Sarna,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Libby Sarna +sn: Sarna +description: This is Libby Sarna's description +facsimileTelephoneNumber: +1 510 623-2715 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 513-6972 +title: Master Peons Pinhead +userPassword: Password1 +uid: SarnaL +givenName: Libby +mail: SarnaL@17f5261c44794d03856d13a510e0aa52.bitwarden.com +carLicense: 3RYPKK +departmentNumber: 7884 +employeeType: Employee +homePhone: +1 510 223-9887 +initials: L. S. +mobile: +1 510 936-1518 +pager: +1 510 593-4497 +roomNumber: 9050 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Madalena Farnham,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madalena Farnham +sn: Farnham +description: This is Madalena Farnham's description +facsimileTelephoneNumber: +1 415 774-6716 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 807-1009 +title: Associate Administrative Stooge +userPassword: Password1 +uid: FarnhamM +givenName: Madalena +mail: FarnhamM@3ce51f6d63564349a707188cebe0b9db.bitwarden.com +carLicense: VJO6TA +departmentNumber: 2188 +employeeType: Employee +homePhone: +1 415 532-7335 +initials: M. F. +mobile: +1 415 624-8997 +pager: +1 415 510-9960 +roomNumber: 8213 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Peder Chowhan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peder Chowhan +sn: Chowhan +description: This is Peder Chowhan's description +facsimileTelephoneNumber: +1 213 868-5477 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 755-3613 +title: Chief Management Janitor +userPassword: Password1 +uid: ChowhanP +givenName: Peder +mail: ChowhanP@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com +carLicense: 05G5VR +departmentNumber: 3201 +employeeType: Normal +homePhone: +1 213 839-3026 +initials: P. C. +mobile: +1 213 430-1645 +pager: +1 213 554-2365 +roomNumber: 9021 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bird Bluschke,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bird Bluschke +sn: Bluschke +description: This is Bird Bluschke's description +facsimileTelephoneNumber: +1 510 823-2080 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 262-5115 +title: Master Product Development Grunt +userPassword: Password1 +uid: BluschkB +givenName: Bird +mail: BluschkB@27e750a927bc40878975a7adaa60f684.bitwarden.com +carLicense: FV6T6T +departmentNumber: 8389 +employeeType: Contract +homePhone: +1 510 931-1123 +initials: B. B. +mobile: +1 510 911-6000 +pager: +1 510 266-4960 +roomNumber: 8133 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kaycee Wiggins,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaycee Wiggins +sn: Wiggins +description: This is Kaycee Wiggins's description +facsimileTelephoneNumber: +1 213 305-4820 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 168-7185 +title: Supreme Management Fellow +userPassword: Password1 +uid: WigginsK +givenName: Kaycee +mail: WigginsK@bebbec64fc5b426aa6d6b13aab8ac6c1.bitwarden.com +carLicense: U2KRM2 +departmentNumber: 4318 +employeeType: Contract +homePhone: +1 213 129-5108 +initials: K. W. +mobile: +1 213 699-1723 +pager: +1 213 255-1746 +roomNumber: 8470 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fwpreg Daymond,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fwpreg Daymond +sn: Daymond +description: This is Fwpreg Daymond's description +facsimileTelephoneNumber: +1 408 282-4362 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 268-6897 +title: Junior Peons Engineer +userPassword: Password1 +uid: DaymondF +givenName: Fwpreg +mail: DaymondF@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com +carLicense: 5RLHCP +departmentNumber: 1261 +employeeType: Contract +homePhone: +1 408 576-1224 +initials: F. D. +mobile: +1 408 406-6854 +pager: +1 408 771-3580 +roomNumber: 8141 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lex PrestonThomas +sn: PrestonThomas +description: This is Lex PrestonThomas's description +facsimileTelephoneNumber: +1 206 323-8087 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 934-6387 +title: Master Product Testing Vice President +userPassword: Password1 +uid: PrestonL +givenName: Lex +mail: PrestonL@3fe3dd83a28445b5a95bc5da230f8774.bitwarden.com +carLicense: Y7FEQA +departmentNumber: 4419 +employeeType: Contract +homePhone: +1 206 373-3010 +initials: L. P. +mobile: +1 206 350-6689 +pager: +1 206 249-7019 +roomNumber: 9152 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jobi Bryant,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jobi Bryant +sn: Bryant +description: This is Jobi Bryant's description +facsimileTelephoneNumber: +1 510 384-6701 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 167-1007 +title: Associate Payroll Grunt +userPassword: Password1 +uid: BryantJ +givenName: Jobi +mail: BryantJ@547fa50227684350b1f92837929bd166.bitwarden.com +carLicense: 0R184G +departmentNumber: 6901 +employeeType: Employee +homePhone: +1 510 653-1684 +initials: J. B. +mobile: +1 510 384-2490 +pager: +1 510 297-7327 +roomNumber: 9465 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allsun Hjartarson +sn: Hjartarson +description: This is Allsun Hjartarson's description +facsimileTelephoneNumber: +1 804 282-5204 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 189-3802 +title: Chief Product Development Vice President +userPassword: Password1 +uid: HjartarA +givenName: Allsun +mail: HjartarA@02ff8597c50443248a49f6bef6b843ff.bitwarden.com +carLicense: A05WD0 +departmentNumber: 6667 +employeeType: Employee +homePhone: +1 804 775-1451 +initials: A. H. +mobile: +1 804 512-2284 +pager: +1 804 168-5822 +roomNumber: 8412 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Modesta WAR,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Modesta WAR +sn: WAR +description: This is Modesta WAR's description +facsimileTelephoneNumber: +1 408 887-4846 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 218-1345 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: WARM +givenName: Modesta +mail: WARM@9f5475585fd4485cae51ba09721f524b.bitwarden.com +carLicense: L52SIK +departmentNumber: 3232 +employeeType: Contract +homePhone: +1 408 238-7865 +initials: M. W. +mobile: +1 408 483-8876 +pager: +1 408 698-5901 +roomNumber: 9543 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eveleen Jasti,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eveleen Jasti +sn: Jasti +description: This is Eveleen Jasti's description +facsimileTelephoneNumber: +1 213 545-4182 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 596-4035 +title: Junior Peons Visionary +userPassword: Password1 +uid: JastiE +givenName: Eveleen +mail: JastiE@91c2f03d5f5f46289c8711d8060fde6a.bitwarden.com +carLicense: TWOFUB +departmentNumber: 4706 +employeeType: Normal +homePhone: +1 213 698-9707 +initials: E. J. +mobile: +1 213 473-6911 +pager: +1 213 436-3965 +roomNumber: 8089 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmody Kenworthy +sn: Kenworthy +description: This is Carmody Kenworthy's description +facsimileTelephoneNumber: +1 213 383-7095 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 528-6436 +title: Chief Product Testing Czar +userPassword: Password1 +uid: KenwortC +givenName: Carmody +mail: KenwortC@302710031153467b98bc48e3c4bc257f.bitwarden.com +carLicense: E5Q95J +departmentNumber: 9403 +employeeType: Employee +homePhone: +1 213 869-6385 +initials: C. K. +mobile: +1 213 330-8761 +pager: +1 213 307-7902 +roomNumber: 9663 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Toney Singh,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toney Singh +sn: Singh +description: This is Toney Singh's description +facsimileTelephoneNumber: +1 206 139-9396 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 159-2413 +title: Chief Peons Admin +userPassword: Password1 +uid: SinghT +givenName: Toney +mail: SinghT@c8fa77eb4aa0482bb77de35245880a29.bitwarden.com +carLicense: 1QYL9M +departmentNumber: 5753 +employeeType: Normal +homePhone: +1 206 417-1915 +initials: T. S. +mobile: +1 206 569-8089 +pager: +1 206 768-5925 +roomNumber: 8030 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amelia Altekar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amelia Altekar +sn: Altekar +description: This is Amelia Altekar's description +facsimileTelephoneNumber: +1 415 866-5684 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 760-1234 +title: Associate Payroll Stooge +userPassword: Password1 +uid: AltekarA +givenName: Amelia +mail: AltekarA@d88544e210f84cc7827363eadc0d3128.bitwarden.com +carLicense: CBH9GE +departmentNumber: 6680 +employeeType: Employee +homePhone: +1 415 366-6860 +initials: A. A. +mobile: +1 415 773-3195 +pager: +1 415 108-9364 +roomNumber: 8674 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiny Kreiger +sn: Kreiger +description: This is Tiny Kreiger's description +facsimileTelephoneNumber: +1 818 222-8932 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 818 377-3437 +title: Associate Product Testing Czar +userPassword: Password1 +uid: KreigerT +givenName: Tiny +mail: KreigerT@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com +carLicense: CW3NYE +departmentNumber: 8958 +employeeType: Normal +homePhone: +1 818 921-4954 +initials: T. K. +mobile: +1 818 989-6009 +pager: +1 818 135-8227 +roomNumber: 9952 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Audivox Duncan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Audivox Duncan +sn: Duncan +description: This is Audivox Duncan's description +facsimileTelephoneNumber: +1 818 959-5623 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 588-1181 +title: Associate Payroll Architect +userPassword: Password1 +uid: DuncanA +givenName: Audivox +mail: DuncanA@dddbcacbba5c4e16876ccb04b6135782.bitwarden.com +carLicense: 4VNB9C +departmentNumber: 8834 +employeeType: Contract +homePhone: +1 818 444-5240 +initials: A. D. +mobile: +1 818 330-5593 +pager: +1 818 324-4048 +roomNumber: 9865 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Eliezer Rheault,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eliezer Rheault +sn: Rheault +description: This is Eliezer Rheault's description +facsimileTelephoneNumber: +1 415 207-4933 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 143-2540 +title: Junior Management Madonna +userPassword: Password1 +uid: RheaultE +givenName: Eliezer +mail: RheaultE@395a1522673545a2b6f4ec5f1b7796af.bitwarden.com +carLicense: VAVL4S +departmentNumber: 5081 +employeeType: Employee +homePhone: +1 415 647-7993 +initials: E. R. +mobile: +1 415 983-5041 +pager: +1 415 941-2430 +roomNumber: 9951 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=KimMinh Lenehan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KimMinh Lenehan +sn: Lenehan +description: This is KimMinh Lenehan's description +facsimileTelephoneNumber: +1 206 157-8018 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 459-5767 +title: Associate Peons Mascot +userPassword: Password1 +uid: LenehanK +givenName: KimMinh +mail: LenehanK@d4eabd10ae4c40a485e4ca44d8a0318c.bitwarden.com +carLicense: BF39TS +departmentNumber: 6815 +employeeType: Employee +homePhone: +1 206 732-8846 +initials: K. L. +mobile: +1 206 737-8865 +pager: +1 206 450-5247 +roomNumber: 8847 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Viole Kirkland,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viole Kirkland +sn: Kirkland +description: This is Viole Kirkland's description +facsimileTelephoneNumber: +1 206 655-1580 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 418-5212 +title: Master Payroll Dictator +userPassword: Password1 +uid: KirklanV +givenName: Viole +mail: KirklanV@4f1519512714466da3525736d08bec31.bitwarden.com +carLicense: BR05N4 +departmentNumber: 7642 +employeeType: Contract +homePhone: +1 206 296-5154 +initials: V. K. +mobile: +1 206 302-1118 +pager: +1 206 264-3827 +roomNumber: 9636 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brahmananda Montmorency +sn: Montmorency +description: This is Brahmananda Montmorency's description +facsimileTelephoneNumber: +1 804 296-2173 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 804 140-1515 +title: Junior Peons President +userPassword: Password1 +uid: MontmorB +givenName: Brahmananda +mail: MontmorB@127bd07831b64b0e92ce92ea10c209be.bitwarden.com +carLicense: XAKKI2 +departmentNumber: 5400 +employeeType: Contract +homePhone: +1 804 436-6367 +initials: B. M. +mobile: +1 804 336-7728 +pager: +1 804 103-4328 +roomNumber: 8899 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhTinh Tognoni +sn: Tognoni +description: This is ThanhTinh Tognoni's description +facsimileTelephoneNumber: +1 818 950-9158 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 818 381-7214 +title: Chief Peons Consultant +userPassword: Password1 +uid: TognoniT +givenName: ThanhTinh +mail: TognoniT@73644206f22948e88cda9a77b8ecb4e1.bitwarden.com +carLicense: KWS2JC +departmentNumber: 7971 +employeeType: Contract +homePhone: +1 818 182-1319 +initials: T. T. +mobile: +1 818 672-1050 +pager: +1 818 621-3209 +roomNumber: 8392 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bahram Strauch,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bahram Strauch +sn: Strauch +description: This is Bahram Strauch's description +facsimileTelephoneNumber: +1 206 959-7657 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 477-2963 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: StrauchB +givenName: Bahram +mail: StrauchB@5c9608f5189942e19cb9ace71ff4cc1f.bitwarden.com +carLicense: I2SKMV +departmentNumber: 3719 +employeeType: Employee +homePhone: +1 206 903-5985 +initials: B. S. +mobile: +1 206 686-4402 +pager: +1 206 936-4771 +roomNumber: 8550 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jagdev Paulett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jagdev Paulett +sn: Paulett +description: This is Jagdev Paulett's description +facsimileTelephoneNumber: +1 206 393-3845 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 206 608-2942 +title: Junior Product Development Stooge +userPassword: Password1 +uid: PaulettJ +givenName: Jagdev +mail: PaulettJ@18569f82a4734a83991f0330d7e468e1.bitwarden.com +carLicense: PRET7C +departmentNumber: 2013 +employeeType: Employee +homePhone: +1 206 925-1419 +initials: J. P. +mobile: +1 206 541-9552 +pager: +1 206 718-2325 +roomNumber: 9112 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Graham Tanner,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Graham Tanner +sn: Tanner +description: This is Graham Tanner's description +facsimileTelephoneNumber: +1 510 955-8286 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 698-7023 +title: Supreme Product Testing Figurehead +userPassword: Password1 +uid: TannerG +givenName: Graham +mail: TannerG@61c05d1e8ba240fc8053923a475b5800.bitwarden.com +carLicense: FS9OWC +departmentNumber: 5892 +employeeType: Contract +homePhone: +1 510 500-1296 +initials: G. T. +mobile: +1 510 932-2375 +pager: +1 510 720-5415 +roomNumber: 9326 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Beau Watkins,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beau Watkins +sn: Watkins +description: This is Beau Watkins's description +facsimileTelephoneNumber: +1 510 388-6798 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 842-8636 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: WatkinsB +givenName: Beau +mail: WatkinsB@b50829feebfd4e22a33d8ae67daa6149.bitwarden.com +carLicense: ST8UW5 +departmentNumber: 2604 +employeeType: Normal +homePhone: +1 510 551-5051 +initials: B. W. +mobile: +1 510 494-3459 +pager: +1 510 196-5871 +roomNumber: 8090 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Durali Pickens,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Durali Pickens +sn: Pickens +description: This is Durali Pickens's description +facsimileTelephoneNumber: +1 213 682-7041 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 213 925-2174 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: PickensD +givenName: Durali +mail: PickensD@dba38a73d24f45109e2386384dae2ed3.bitwarden.com +carLicense: WOS1WO +departmentNumber: 5072 +employeeType: Contract +homePhone: +1 213 256-8213 +initials: D. P. +mobile: +1 213 444-9706 +pager: +1 213 254-8905 +roomNumber: 9213 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigit Hollingshead +sn: Hollingshead +description: This is Brigit Hollingshead's description +facsimileTelephoneNumber: +1 408 117-1110 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 700-2545 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: HollingB +givenName: Brigit +mail: HollingB@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com +carLicense: 6IMR00 +departmentNumber: 2752 +employeeType: Contract +homePhone: +1 408 937-2272 +initials: B. H. +mobile: +1 408 636-5013 +pager: +1 408 696-8354 +roomNumber: 9114 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chatri Hinchey +sn: Hinchey +description: This is Chatri Hinchey's description +facsimileTelephoneNumber: +1 206 826-7866 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 290-2072 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: HincheyC +givenName: Chatri +mail: HincheyC@b9f44a907d41480f95c6eb062092de29.bitwarden.com +carLicense: ITABQE +departmentNumber: 4722 +employeeType: Contract +homePhone: +1 206 611-2232 +initials: C. H. +mobile: +1 206 803-2734 +pager: +1 206 128-8389 +roomNumber: 8514 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HingFai Kenworthy +sn: Kenworthy +description: This is HingFai Kenworthy's description +facsimileTelephoneNumber: +1 804 149-7634 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 988-1371 +title: Chief Administrative Consultant +userPassword: Password1 +uid: KenwortH +givenName: HingFai +mail: KenwortH@00051a1d50da40f1b7bc2c53cc756ab9.bitwarden.com +carLicense: NWLJQC +departmentNumber: 3793 +employeeType: Contract +homePhone: +1 804 368-9268 +initials: H. K. +mobile: +1 804 299-5468 +pager: +1 804 399-3732 +roomNumber: 8693 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jorry Yost,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jorry Yost +sn: Yost +description: This is Jorry Yost's description +facsimileTelephoneNumber: +1 408 446-3142 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 201-2715 +title: Master Management Technician +userPassword: Password1 +uid: YostJ +givenName: Jorry +mail: YostJ@7de1122203ab4ca0a8ccf7ec79a93139.bitwarden.com +carLicense: 427UW5 +departmentNumber: 7829 +employeeType: Normal +homePhone: +1 408 144-7607 +initials: J. Y. +mobile: +1 408 525-9005 +pager: +1 408 815-8371 +roomNumber: 9171 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Laser DeNest,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laser DeNest +sn: DeNest +description: This is Laser DeNest's description +facsimileTelephoneNumber: +1 510 903-9112 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 476-8869 +title: Associate Janitorial Czar +userPassword: Password1 +uid: DeNestL +givenName: Laser +mail: DeNestL@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com +carLicense: 701KCW +departmentNumber: 4346 +employeeType: Normal +homePhone: +1 510 309-2872 +initials: L. D. +mobile: +1 510 271-6850 +pager: +1 510 937-9442 +roomNumber: 9769 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chanda Leenher,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chanda Leenher +sn: Leenher +description: This is Chanda Leenher's description +facsimileTelephoneNumber: +1 804 638-5652 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 910-9913 +title: Chief Management Dictator +userPassword: Password1 +uid: LeenherC +givenName: Chanda +mail: LeenherC@d7681493431f47c4aee39faeda0957a7.bitwarden.com +carLicense: 07JDI8 +departmentNumber: 9305 +employeeType: Employee +homePhone: +1 804 851-7345 +initials: C. L. +mobile: +1 804 953-2227 +pager: +1 804 721-9221 +roomNumber: 8478 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Luke Catlett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luke Catlett +sn: Catlett +description: This is Luke Catlett's description +facsimileTelephoneNumber: +1 804 524-4538 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 826-8510 +title: Master Management Punk +userPassword: Password1 +uid: CatlettL +givenName: Luke +mail: CatlettL@e316e4482c314662b2118590a4d2173a.bitwarden.com +carLicense: 70VYG8 +departmentNumber: 5519 +employeeType: Contract +homePhone: +1 804 288-5291 +initials: L. C. +mobile: +1 804 177-6475 +pager: +1 804 161-1559 +roomNumber: 8173 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vicheara Scssdev +sn: Scssdev +description: This is Vicheara Scssdev's description +facsimileTelephoneNumber: +1 408 163-2687 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 191-9972 +title: Associate Product Development Janitor +userPassword: Password1 +uid: ScssdevV +givenName: Vicheara +mail: ScssdevV@234773e7f27c46889eabde71c1cb8d67.bitwarden.com +carLicense: LF291M +departmentNumber: 3739 +employeeType: Contract +homePhone: +1 408 597-5712 +initials: V. S. +mobile: +1 408 368-7746 +pager: +1 408 596-9712 +roomNumber: 9434 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Femke Krikorian,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Femke Krikorian +sn: Krikorian +description: This is Femke Krikorian's description +facsimileTelephoneNumber: +1 510 896-9239 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 981-7695 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: KrikoriF +givenName: Femke +mail: KrikoriF@09621247c2534422b65027556ba23ec6.bitwarden.com +carLicense: VB8A9Y +departmentNumber: 1895 +employeeType: Contract +homePhone: +1 510 184-2057 +initials: F. K. +mobile: +1 510 804-3352 +pager: +1 510 536-2555 +roomNumber: 9548 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corkstown MacLaren +sn: MacLaren +description: This is Corkstown MacLaren's description +facsimileTelephoneNumber: +1 510 772-9604 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 847-6322 +title: Supreme Administrative Engineer +userPassword: Password1 +uid: MacLareC +givenName: Corkstown +mail: MacLareC@66ebe9b8d29246329e6e17db480edb7b.bitwarden.com +carLicense: ML9S1N +departmentNumber: 9781 +employeeType: Contract +homePhone: +1 510 738-2216 +initials: C. M. +mobile: +1 510 675-4138 +pager: +1 510 330-2793 +roomNumber: 8512 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Evert Traynor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evert Traynor +sn: Traynor +description: This is Evert Traynor's description +facsimileTelephoneNumber: +1 818 694-3703 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 818 376-5956 +title: Supreme Management Assistant +userPassword: Password1 +uid: TraynorE +givenName: Evert +mail: TraynorE@ed89cbae21214e4d86110d4c5688d2bc.bitwarden.com +carLicense: X24VER +departmentNumber: 4185 +employeeType: Contract +homePhone: +1 818 888-5460 +initials: E. T. +mobile: +1 818 374-3704 +pager: +1 818 998-4757 +roomNumber: 8194 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HackHoo Shapland +sn: Shapland +description: This is HackHoo Shapland's description +facsimileTelephoneNumber: +1 804 164-3864 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 804 166-8265 +title: Supreme Product Testing Visionary +userPassword: Password1 +uid: ShaplanH +givenName: HackHoo +mail: ShaplanH@737b5dcffbb7418088cb0751fc35cc9b.bitwarden.com +carLicense: LUH6EY +departmentNumber: 7992 +employeeType: Normal +homePhone: +1 804 205-3438 +initials: H. S. +mobile: +1 804 699-6074 +pager: +1 804 155-8569 +roomNumber: 9526 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tess Ketchum,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tess Ketchum +sn: Ketchum +description: This is Tess Ketchum's description +facsimileTelephoneNumber: +1 510 932-7236 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 347-1200 +title: Master Product Development Figurehead +userPassword: Password1 +uid: KetchumT +givenName: Tess +mail: KetchumT@394281e627bd4a44a2749e8e04564938.bitwarden.com +carLicense: 3BBPTT +departmentNumber: 7286 +employeeType: Contract +homePhone: +1 510 718-8880 +initials: T. K. +mobile: +1 510 580-4489 +pager: +1 510 295-3685 +roomNumber: 8778 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jordanna Cacha,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jordanna Cacha +sn: Cacha +description: This is Jordanna Cacha's description +facsimileTelephoneNumber: +1 415 625-1706 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 540-6501 +title: Supreme Payroll Admin +userPassword: Password1 +uid: CachaJ +givenName: Jordanna +mail: CachaJ@14d341098b454a7bb14a0607de600424.bitwarden.com +carLicense: QBAUC9 +departmentNumber: 1672 +employeeType: Contract +homePhone: +1 415 440-1187 +initials: J. C. +mobile: +1 415 850-6320 +pager: +1 415 342-1335 +roomNumber: 8214 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Brietta Dages,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brietta Dages +sn: Dages +description: This is Brietta Dages's description +facsimileTelephoneNumber: +1 818 983-6018 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 636-3892 +title: Master Janitorial Mascot +userPassword: Password1 +uid: DagesB +givenName: Brietta +mail: DagesB@7022b955bef74762989f3e8241ec17a6.bitwarden.com +carLicense: 5Q41X3 +departmentNumber: 9969 +employeeType: Employee +homePhone: +1 818 826-2982 +initials: B. D. +mobile: +1 818 265-2273 +pager: +1 818 305-2651 +roomNumber: 9919 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Natver Alleva,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natver Alleva +sn: Alleva +description: This is Natver Alleva's description +facsimileTelephoneNumber: +1 804 425-9438 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 638-1870 +title: Supreme Janitorial Figurehead +userPassword: Password1 +uid: AllevaN +givenName: Natver +mail: AllevaN@9f370afe60bb4f1ab01d1df2abbe72ba.bitwarden.com +carLicense: L0DKIH +departmentNumber: 1451 +employeeType: Employee +homePhone: +1 804 683-1758 +initials: N. A. +mobile: +1 804 849-8401 +pager: +1 804 646-5711 +roomNumber: 9859 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raffi Tzaneteas +sn: Tzaneteas +description: This is Raffi Tzaneteas's description +facsimileTelephoneNumber: +1 408 668-4372 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 571-3744 +title: Junior Administrative Dictator +userPassword: Password1 +uid: TzaneteR +givenName: Raffi +mail: TzaneteR@1d18e975cba24a40891491f30692b0e9.bitwarden.com +carLicense: OGRTAM +departmentNumber: 3926 +employeeType: Normal +homePhone: +1 408 751-1561 +initials: R. T. +mobile: +1 408 834-6662 +pager: +1 408 206-7687 +roomNumber: 9471 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Phan Rimsa,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phan Rimsa +sn: Rimsa +description: This is Phan Rimsa's description +facsimileTelephoneNumber: +1 213 115-3383 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 221-7321 +title: Junior Product Development Engineer +userPassword: Password1 +uid: RimsaP +givenName: Phan +mail: RimsaP@e2cbb69d157949f2a27ec4f04bfab065.bitwarden.com +carLicense: CPDVNM +departmentNumber: 7865 +employeeType: Contract +homePhone: +1 213 465-1802 +initials: P. R. +mobile: +1 213 580-9534 +pager: +1 213 505-1556 +roomNumber: 9806 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helenelizabeth Ledwell +sn: Ledwell +description: This is Helenelizabeth Ledwell's description +facsimileTelephoneNumber: +1 415 802-3106 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 226-6795 +title: Associate Product Development Architect +userPassword: Password1 +uid: LedwellH +givenName: Helenelizabeth +mail: LedwellH@80c3b4098db8471fa50bda6c3d5b250b.bitwarden.com +carLicense: N18B9F +departmentNumber: 5371 +employeeType: Contract +homePhone: +1 415 195-7671 +initials: H. L. +mobile: +1 415 334-8698 +pager: +1 415 113-7359 +roomNumber: 9320 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Thakor Brandon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thakor Brandon +sn: Brandon +description: This is Thakor Brandon's description +facsimileTelephoneNumber: +1 415 355-7770 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 860-6328 +title: Junior Peons Fellow +userPassword: Password1 +uid: BrandonT +givenName: Thakor +mail: BrandonT@bf22abb443f242d591554d5b4dde5bdb.bitwarden.com +carLicense: X9XIST +departmentNumber: 8985 +employeeType: Normal +homePhone: +1 415 328-8485 +initials: T. B. +mobile: +1 415 859-5633 +pager: +1 415 772-2991 +roomNumber: 8094 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Samir Guerin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Samir Guerin +sn: Guerin +description: This is Samir Guerin's description +facsimileTelephoneNumber: +1 408 206-5086 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 408 998-1656 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: GuerinS +givenName: Samir +mail: GuerinS@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com +carLicense: NS4HK9 +departmentNumber: 6748 +employeeType: Contract +homePhone: +1 408 638-6750 +initials: S. G. +mobile: +1 408 977-6914 +pager: +1 408 195-7776 +roomNumber: 9304 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Colene Revis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colene Revis +sn: Revis +description: This is Colene Revis's description +facsimileTelephoneNumber: +1 818 767-5106 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 780-3625 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: RevisC +givenName: Colene +mail: RevisC@c92365298bdc408a8d5a96e4deae0869.bitwarden.com +carLicense: 6K2Q6P +departmentNumber: 8486 +employeeType: Contract +homePhone: +1 818 836-5955 +initials: C. R. +mobile: +1 818 300-2037 +pager: +1 818 839-5944 +roomNumber: 8094 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mike Funderburg,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mike Funderburg +sn: Funderburg +description: This is Mike Funderburg's description +facsimileTelephoneNumber: +1 818 857-4626 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 832-6595 +title: Master Peons Stooge +userPassword: Password1 +uid: FunderbM +givenName: Mike +mail: FunderbM@fb31dc4ff0104ce1b3fc5a01a2d75d94.bitwarden.com +carLicense: 08F057 +departmentNumber: 8484 +employeeType: Employee +homePhone: +1 818 849-6573 +initials: M. F. +mobile: +1 818 564-2164 +pager: +1 818 440-7960 +roomNumber: 9425 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rozalie Sassine,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozalie Sassine +sn: Sassine +description: This is Rozalie Sassine's description +facsimileTelephoneNumber: +1 415 612-3877 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 591-1876 +title: Junior Administrative Consultant +userPassword: Password1 +uid: SassineR +givenName: Rozalie +mail: SassineR@f2e037d77334498ab9322f95dd7d350d.bitwarden.com +carLicense: 2SKUO1 +departmentNumber: 2068 +employeeType: Contract +homePhone: +1 415 879-2726 +initials: R. S. +mobile: +1 415 448-7956 +pager: +1 415 443-3820 +roomNumber: 8530 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jinny Siddell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jinny Siddell +sn: Siddell +description: This is Jinny Siddell's description +facsimileTelephoneNumber: +1 206 219-2801 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 206 721-8276 +title: Supreme Human Resources President +userPassword: Password1 +uid: SiddellJ +givenName: Jinny +mail: SiddellJ@d465cf0e3efb407fbb73b24e2d2b8525.bitwarden.com +carLicense: TOPS9B +departmentNumber: 8208 +employeeType: Normal +homePhone: +1 206 951-4438 +initials: J. S. +mobile: +1 206 698-1509 +pager: +1 206 529-9954 +roomNumber: 9280 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kai Etemad,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kai Etemad +sn: Etemad +description: This is Kai Etemad's description +facsimileTelephoneNumber: +1 408 407-5198 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 212-7226 +title: Supreme Peons Consultant +userPassword: Password1 +uid: EtemadK +givenName: Kai +mail: EtemadK@a96211277807499cbc72ba383cf3f7fd.bitwarden.com +carLicense: WNV802 +departmentNumber: 9094 +employeeType: Contract +homePhone: +1 408 627-9627 +initials: K. E. +mobile: +1 408 409-1057 +pager: +1 408 706-9835 +roomNumber: 9397 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Odette Wagle,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odette Wagle +sn: Wagle +description: This is Odette Wagle's description +facsimileTelephoneNumber: +1 408 859-4620 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 758-9571 +title: Junior Payroll Assistant +userPassword: Password1 +uid: WagleO +givenName: Odette +mail: WagleO@5dae1ed2c9f445258f886d50e89467ac.bitwarden.com +carLicense: 3HDVPL +departmentNumber: 6500 +employeeType: Employee +homePhone: +1 408 937-3451 +initials: O. W. +mobile: +1 408 296-1980 +pager: +1 408 935-1862 +roomNumber: 9661 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Josephine Leon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Josephine Leon +sn: Leon +description: This is Josephine Leon's description +facsimileTelephoneNumber: +1 804 282-2972 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 986-6243 +title: Associate Product Testing Consultant +userPassword: Password1 +uid: LeonJ +givenName: Josephine +mail: LeonJ@21c8fcb0ee18495787a55ca1696354cd.bitwarden.com +carLicense: JGFJUE +departmentNumber: 2844 +employeeType: Employee +homePhone: +1 804 720-3354 +initials: J. L. +mobile: +1 804 877-2935 +pager: +1 804 555-9024 +roomNumber: 9763 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gale Leder,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gale Leder +sn: Leder +description: This is Gale Leder's description +facsimileTelephoneNumber: +1 804 843-3805 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 804 939-2453 +title: Associate Product Development Pinhead +userPassword: Password1 +uid: LederG +givenName: Gale +mail: LederG@2e792851d84240488be196888c877106.bitwarden.com +carLicense: 69GHYH +departmentNumber: 6678 +employeeType: Contract +homePhone: +1 804 286-7103 +initials: G. L. +mobile: +1 804 868-4785 +pager: +1 804 668-8100 +roomNumber: 9555 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Danny Mau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danny Mau +sn: Mau +description: This is Danny Mau's description +facsimileTelephoneNumber: +1 408 494-8885 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 155-2319 +title: Junior Payroll Punk +userPassword: Password1 +uid: MauD +givenName: Danny +mail: MauD@a98a94682d81417d89ea8aad5fa82d5a.bitwarden.com +carLicense: YT7T33 +departmentNumber: 4822 +employeeType: Normal +homePhone: +1 408 384-6744 +initials: D. M. +mobile: +1 408 667-1403 +pager: +1 408 871-7741 +roomNumber: 8104 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alma McRann,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alma McRann +sn: McRann +description: This is Alma McRann's description +facsimileTelephoneNumber: +1 408 553-6921 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 615-8677 +title: Junior Product Testing Mascot +userPassword: Password1 +uid: McRannA +givenName: Alma +mail: McRannA@49b304035fc44bb4a3e211286fc4d652.bitwarden.com +carLicense: HR69JY +departmentNumber: 3724 +employeeType: Normal +homePhone: +1 408 910-6859 +initials: A. M. +mobile: +1 408 105-1025 +pager: +1 408 880-6576 +roomNumber: 8608 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Martijn Groth,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martijn Groth +sn: Groth +description: This is Martijn Groth's description +facsimileTelephoneNumber: +1 408 667-8300 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 737-3680 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: GrothM +givenName: Martijn +mail: GrothM@8455fc0dd08e47d9b5acf4e37eea1485.bitwarden.com +carLicense: QWKY9J +departmentNumber: 5780 +employeeType: Normal +homePhone: +1 408 702-2649 +initials: M. G. +mobile: +1 408 151-8984 +pager: +1 408 955-2749 +roomNumber: 8147 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Allyson Boroski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allyson Boroski +sn: Boroski +description: This is Allyson Boroski's description +facsimileTelephoneNumber: +1 510 214-2467 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 932-2939 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: BoroskiA +givenName: Allyson +mail: BoroskiA@38d6239d446040c7892f72bde901e5dc.bitwarden.com +carLicense: QYDM73 +departmentNumber: 2594 +employeeType: Employee +homePhone: +1 510 631-1438 +initials: A. B. +mobile: +1 510 675-8249 +pager: +1 510 818-6627 +roomNumber: 8194 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Janice Powney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janice Powney +sn: Powney +description: This is Janice Powney's description +facsimileTelephoneNumber: +1 213 383-8566 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 723-6432 +title: Junior Product Development Admin +userPassword: Password1 +uid: PowneyJ +givenName: Janice +mail: PowneyJ@6676cc13b20e4042b28843f12be18e7b.bitwarden.com +carLicense: FEEB11 +departmentNumber: 5335 +employeeType: Normal +homePhone: +1 213 537-5490 +initials: J. P. +mobile: +1 213 721-7552 +pager: +1 213 686-9301 +roomNumber: 8041 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marys Marleau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marys Marleau +sn: Marleau +description: This is Marys Marleau's description +facsimileTelephoneNumber: +1 510 171-4987 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 510 169-3517 +title: Junior Peons Vice President +userPassword: Password1 +uid: MarleauM +givenName: Marys +mail: MarleauM@ad4942d8c3c341119939c679c4dae154.bitwarden.com +carLicense: L0LNEQ +departmentNumber: 6065 +employeeType: Employee +homePhone: +1 510 288-4715 +initials: M. M. +mobile: +1 510 737-2648 +pager: +1 510 379-4049 +roomNumber: 8224 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Colin Langelier,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colin Langelier +sn: Langelier +description: This is Colin Langelier's description +facsimileTelephoneNumber: +1 206 616-6109 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 343-3863 +title: Associate Management Grunt +userPassword: Password1 +uid: LangeliC +givenName: Colin +mail: LangeliC@910b366efc9d45ae94d1175a5271d29c.bitwarden.com +carLicense: R6752L +departmentNumber: 5914 +employeeType: Normal +homePhone: +1 206 188-2055 +initials: C. L. +mobile: +1 206 766-1553 +pager: +1 206 103-5210 +roomNumber: 9664 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cornel Delzer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cornel Delzer +sn: Delzer +description: This is Cornel Delzer's description +facsimileTelephoneNumber: +1 804 892-1235 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 850-4611 +title: Junior Janitorial Manager +userPassword: Password1 +uid: DelzerC +givenName: Cornel +mail: DelzerC@1e938c02408a4595b2f669d03197c9de.bitwarden.com +carLicense: Y0YR8B +departmentNumber: 5915 +employeeType: Contract +homePhone: +1 804 546-7860 +initials: C. D. +mobile: +1 804 811-9003 +pager: +1 804 619-5000 +roomNumber: 8266 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Liane Pappu,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liane Pappu +sn: Pappu +description: This is Liane Pappu's description +facsimileTelephoneNumber: +1 510 219-3584 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 252-2291 +title: Supreme Peons Warrior +userPassword: Password1 +uid: PappuL +givenName: Liane +mail: PappuL@00031bbeb0ff4d1a8275609c6cc825b8.bitwarden.com +carLicense: VY0QSX +departmentNumber: 6269 +employeeType: Contract +homePhone: +1 510 682-1332 +initials: L. P. +mobile: +1 510 511-8632 +pager: +1 510 480-5400 +roomNumber: 9092 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ollie Mir,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ollie Mir +sn: Mir +description: This is Ollie Mir's description +facsimileTelephoneNumber: +1 213 595-8073 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 675-3293 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: MirO +givenName: Ollie +mail: MirO@24af3dac7e7c4580ae1949e9dbc7b5bd.bitwarden.com +carLicense: JF0L9P +departmentNumber: 1874 +employeeType: Normal +homePhone: +1 213 573-3177 +initials: O. M. +mobile: +1 213 859-9259 +pager: +1 213 731-6215 +roomNumber: 9213 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tiffy Moyers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffy Moyers +sn: Moyers +description: This is Tiffy Moyers's description +facsimileTelephoneNumber: +1 213 206-4617 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 270-1293 +title: Supreme Management Manager +userPassword: Password1 +uid: MoyersT +givenName: Tiffy +mail: MoyersT@086cd0723f0c4d19b12b0a6c52b08ed8.bitwarden.com +carLicense: 9TH8H8 +departmentNumber: 7782 +employeeType: Employee +homePhone: +1 213 405-5840 +initials: T. M. +mobile: +1 213 371-7039 +pager: +1 213 777-3373 +roomNumber: 8834 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chi Radcliffe +sn: Radcliffe +description: This is Chi Radcliffe's description +facsimileTelephoneNumber: +1 408 762-9652 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 407-5687 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: RadclifC +givenName: Chi +mail: RadclifC@7c55c5fda50b444180fe09120e80248b.bitwarden.com +carLicense: W1YY9Y +departmentNumber: 9953 +employeeType: Contract +homePhone: +1 408 399-7999 +initials: C. R. +mobile: +1 408 424-3329 +pager: +1 408 506-2742 +roomNumber: 9292 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Catja Taralp,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catja Taralp +sn: Taralp +description: This is Catja Taralp's description +facsimileTelephoneNumber: +1 510 616-4971 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 510 249-1856 +title: Associate Product Testing Evangelist +userPassword: Password1 +uid: TaralpC +givenName: Catja +mail: TaralpC@c8ee45aa130e469ab9d08427bf58a160.bitwarden.com +carLicense: CX0EJ0 +departmentNumber: 4344 +employeeType: Employee +homePhone: +1 510 455-9598 +initials: C. T. +mobile: +1 510 100-7363 +pager: +1 510 937-7745 +roomNumber: 9531 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jey Musick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jey Musick +sn: Musick +description: This is Jey Musick's description +facsimileTelephoneNumber: +1 804 297-6926 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 158-1500 +title: Associate Product Testing Madonna +userPassword: Password1 +uid: MusickJ +givenName: Jey +mail: MusickJ@883a827472584ea8ab8edcc535c72169.bitwarden.com +carLicense: 02TCD3 +departmentNumber: 4824 +employeeType: Contract +homePhone: +1 804 585-9715 +initials: J. M. +mobile: +1 804 755-3427 +pager: +1 804 231-3776 +roomNumber: 9134 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kamil Doi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamil Doi +sn: Doi +description: This is Kamil Doi's description +facsimileTelephoneNumber: +1 206 455-6703 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 223-1830 +title: Master Management Fellow +userPassword: Password1 +uid: DoiK +givenName: Kamil +mail: DoiK@2666ff26960c49cbbd8ff121a2639624.bitwarden.com +carLicense: 2SCARP +departmentNumber: 8525 +employeeType: Contract +homePhone: +1 206 612-7037 +initials: K. D. +mobile: +1 206 188-3416 +pager: +1 206 751-9481 +roomNumber: 9248 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlin DeAlmeida +sn: DeAlmeida +description: This is Marlin DeAlmeida's description +facsimileTelephoneNumber: +1 818 264-7105 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 487-7144 +title: Chief Janitorial Director +userPassword: Password1 +uid: DeAlmeiM +givenName: Marlin +mail: DeAlmeiM@a41f06888fb0407e87dd9f629bea1689.bitwarden.com +carLicense: AH1O7T +departmentNumber: 4367 +employeeType: Contract +homePhone: +1 818 566-7076 +initials: M. D. +mobile: +1 818 650-8492 +pager: +1 818 940-6799 +roomNumber: 8860 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lelia Gougeon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lelia Gougeon +sn: Gougeon +description: This is Lelia Gougeon's description +facsimileTelephoneNumber: +1 206 259-1067 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 242-2795 +title: Associate Administrative Madonna +userPassword: Password1 +uid: GougeonL +givenName: Lelia +mail: GougeonL@1bc1409c08584b65b922db79a968ffbf.bitwarden.com +carLicense: KKUVP8 +departmentNumber: 5034 +employeeType: Employee +homePhone: +1 206 768-1836 +initials: L. G. +mobile: +1 206 448-3328 +pager: +1 206 629-5343 +roomNumber: 8427 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mamie Godfrey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mamie Godfrey +sn: Godfrey +description: This is Mamie Godfrey's description +facsimileTelephoneNumber: +1 408 541-3273 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 408 141-9297 +title: Chief Management Director +userPassword: Password1 +uid: GodfreyM +givenName: Mamie +mail: GodfreyM@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com +carLicense: PD99CA +departmentNumber: 1695 +employeeType: Employee +homePhone: +1 408 380-7125 +initials: M. G. +mobile: +1 408 591-2523 +pager: +1 408 658-8745 +roomNumber: 9293 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ibby Dragan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ibby Dragan +sn: Dragan +description: This is Ibby Dragan's description +facsimileTelephoneNumber: +1 213 802-7590 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 121-3541 +title: Master Peons Manager +userPassword: Password1 +uid: DraganI +givenName: Ibby +mail: DraganI@8eaa02b53fec48d0842607d198bfec39.bitwarden.com +carLicense: H1WR93 +departmentNumber: 6844 +employeeType: Normal +homePhone: +1 213 825-9132 +initials: I. D. +mobile: +1 213 501-4800 +pager: +1 213 137-6531 +roomNumber: 8657 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Krier Rouer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krier Rouer +sn: Rouer +description: This is Krier Rouer's description +facsimileTelephoneNumber: +1 804 400-9824 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 476-7413 +title: Supreme Administrative Czar +userPassword: Password1 +uid: RouerK +givenName: Krier +mail: RouerK@d4881d0da2824b94aad995234e30bb1a.bitwarden.com +carLicense: FGR3DM +departmentNumber: 3623 +employeeType: Normal +homePhone: +1 804 544-3279 +initials: K. R. +mobile: +1 804 248-8027 +pager: +1 804 392-5030 +roomNumber: 8162 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Neila Donleycott,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neila Donleycott +sn: Donleycott +description: This is Neila Donleycott's description +facsimileTelephoneNumber: +1 804 551-9139 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 963-1263 +title: Associate Product Development Consultant +userPassword: Password1 +uid: DonleycN +givenName: Neila +mail: DonleycN@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com +carLicense: FWV7B3 +departmentNumber: 5141 +employeeType: Employee +homePhone: +1 804 461-1900 +initials: N. D. +mobile: +1 804 149-1173 +pager: +1 804 461-7769 +roomNumber: 8322 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vithit Toothman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vithit Toothman +sn: Toothman +description: This is Vithit Toothman's description +facsimileTelephoneNumber: +1 408 459-8593 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 806-3211 +title: Master Payroll Mascot +userPassword: Password1 +uid: ToothmaV +givenName: Vithit +mail: ToothmaV@f2f9b94a61d74e48ae3ede318c7f996c.bitwarden.com +carLicense: 6O6FQL +departmentNumber: 3202 +employeeType: Employee +homePhone: +1 408 348-6623 +initials: V. T. +mobile: +1 408 289-2005 +pager: +1 408 960-8185 +roomNumber: 9103 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Brear Wiklund,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brear Wiklund +sn: Wiklund +description: This is Brear Wiklund's description +facsimileTelephoneNumber: +1 804 895-3090 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 374-4973 +title: Supreme Payroll Dictator +userPassword: Password1 +uid: WiklundB +givenName: Brear +mail: WiklundB@b4093fe5132a4a878de6dc85a8b08a1b.bitwarden.com +carLicense: R7Y5AC +departmentNumber: 6044 +employeeType: Contract +homePhone: +1 804 662-4797 +initials: B. W. +mobile: +1 804 967-9700 +pager: +1 804 691-6483 +roomNumber: 8691 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Joletta Chaaban,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joletta Chaaban +sn: Chaaban +description: This is Joletta Chaaban's description +facsimileTelephoneNumber: +1 206 167-9684 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 537-5225 +title: Junior Payroll Director +userPassword: Password1 +uid: ChaabanJ +givenName: Joletta +mail: ChaabanJ@d1a4100b9b9b406ab43bd8e679e7075d.bitwarden.com +carLicense: F43TMN +departmentNumber: 8362 +employeeType: Normal +homePhone: +1 206 961-3851 +initials: J. C. +mobile: +1 206 951-7043 +pager: +1 206 140-2129 +roomNumber: 9482 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Allan Kpodzo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allan Kpodzo +sn: Kpodzo +description: This is Allan Kpodzo's description +facsimileTelephoneNumber: +1 408 387-1121 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 333-8227 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: KpodzoA +givenName: Allan +mail: KpodzoA@bccf93cb8d9f4a129349caa39e630322.bitwarden.com +carLicense: QM7K1L +departmentNumber: 1978 +employeeType: Normal +homePhone: +1 408 105-7195 +initials: A. K. +mobile: +1 408 146-2009 +pager: +1 408 831-5599 +roomNumber: 8975 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alvin Fleishman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvin Fleishman +sn: Fleishman +description: This is Alvin Fleishman's description +facsimileTelephoneNumber: +1 510 249-7855 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 510 869-2776 +title: Chief Administrative Consultant +userPassword: Password1 +uid: FleishmA +givenName: Alvin +mail: FleishmA@893fcaa2270d412d875ced076aac8306.bitwarden.com +carLicense: DV41PA +departmentNumber: 4369 +employeeType: Contract +homePhone: +1 510 641-4642 +initials: A. F. +mobile: +1 510 830-1908 +pager: +1 510 112-4543 +roomNumber: 8723 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Amos Nadeau,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amos Nadeau +sn: Nadeau +description: This is Amos Nadeau's description +facsimileTelephoneNumber: +1 206 894-2401 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 206 846-6157 +title: Associate Administrative Mascot +userPassword: Password1 +uid: NadeauA +givenName: Amos +mail: NadeauA@4683d74c822246798b509a58b74b661d.bitwarden.com +carLicense: N678UB +departmentNumber: 4822 +employeeType: Normal +homePhone: +1 206 562-5811 +initials: A. N. +mobile: +1 206 653-2356 +pager: +1 206 730-1545 +roomNumber: 8317 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fariborz Gubenco +sn: Gubenco +description: This is Fariborz Gubenco's description +facsimileTelephoneNumber: +1 804 419-2964 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 970-8404 +title: Junior Administrative Pinhead +userPassword: Password1 +uid: GubencoF +givenName: Fariborz +mail: GubencoF@b4304c61f77b49d7b5286781d16ef287.bitwarden.com +carLicense: 1MM9E3 +departmentNumber: 2235 +employeeType: Employee +homePhone: +1 804 406-4186 +initials: F. G. +mobile: +1 804 332-3091 +pager: +1 804 497-8195 +roomNumber: 9259 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Astra McPhail,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Astra McPhail +sn: McPhail +description: This is Astra McPhail's description +facsimileTelephoneNumber: +1 408 923-4777 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 795-7214 +title: Supreme Management Janitor +userPassword: Password1 +uid: McPhailA +givenName: Astra +mail: McPhailA@8a9b6d7044ae4a78a0f823a14af47f84.bitwarden.com +carLicense: P276BL +departmentNumber: 3632 +employeeType: Employee +homePhone: +1 408 504-8509 +initials: A. M. +mobile: +1 408 209-9786 +pager: +1 408 432-6534 +roomNumber: 9076 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Miguelita Lukie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miguelita Lukie +sn: Lukie +description: This is Miguelita Lukie's description +facsimileTelephoneNumber: +1 213 882-2814 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 892-8001 +title: Supreme Management Warrior +userPassword: Password1 +uid: LukieM +givenName: Miguelita +mail: LukieM@a98a0b7e8c1d4fe88c53128550e8ca96.bitwarden.com +carLicense: EG637W +departmentNumber: 5561 +employeeType: Contract +homePhone: +1 213 499-9964 +initials: M. L. +mobile: +1 213 337-7860 +pager: +1 213 541-3112 +roomNumber: 8667 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joellen Rummans,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joellen Rummans +sn: Rummans +description: This is Joellen Rummans's description +facsimileTelephoneNumber: +1 213 773-7690 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 858-9018 +title: Master Peons Madonna +userPassword: Password1 +uid: RummansJ +givenName: Joellen +mail: RummansJ@a139b435b4cd48eeb3da7e5c63440d77.bitwarden.com +carLicense: D5VC31 +departmentNumber: 7643 +employeeType: Employee +homePhone: +1 213 111-1947 +initials: J. R. +mobile: +1 213 891-1588 +pager: +1 213 315-7739 +roomNumber: 9748 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Blythe Bessette,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blythe Bessette +sn: Bessette +description: This is Blythe Bessette's description +facsimileTelephoneNumber: +1 818 246-3571 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 818 277-9624 +title: Junior Management Mascot +userPassword: Password1 +uid: BessettB +givenName: Blythe +mail: BessettB@cbb0ee6f701a44b3b861eccb184e6264.bitwarden.com +carLicense: 8UDC7D +departmentNumber: 5114 +employeeType: Contract +homePhone: +1 818 151-4840 +initials: B. B. +mobile: +1 818 328-9290 +pager: +1 818 444-6302 +roomNumber: 8597 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nathan OPERATIONS +sn: OPERATIONS +description: This is Nathan OPERATIONS's description +facsimileTelephoneNumber: +1 804 653-1985 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 683-4698 +title: Chief Peons President +userPassword: Password1 +uid: OPERATIN +givenName: Nathan +mail: OPERATIN@98502193cf164ea4ab82010779caeff8.bitwarden.com +carLicense: 3DF1I2 +departmentNumber: 5431 +employeeType: Employee +homePhone: +1 804 524-4065 +initials: N. O. +mobile: +1 804 415-5568 +pager: +1 804 523-1313 +roomNumber: 9194 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Felipe Dassie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felipe Dassie +sn: Dassie +description: This is Felipe Dassie's description +facsimileTelephoneNumber: +1 408 770-7420 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 408 879-8287 +title: Chief Peons President +userPassword: Password1 +uid: DassieF +givenName: Felipe +mail: DassieF@921728abb6324aefb035d6063e7e1e37.bitwarden.com +carLicense: 007AD8 +departmentNumber: 8777 +employeeType: Employee +homePhone: +1 408 350-1160 +initials: F. D. +mobile: +1 408 695-3951 +pager: +1 408 313-5265 +roomNumber: 8911 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Renu Dermardiros,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renu Dermardiros +sn: Dermardiros +description: This is Renu Dermardiros's description +facsimileTelephoneNumber: +1 510 460-6744 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 547-4600 +title: Supreme Payroll Czar +userPassword: Password1 +uid: DermardR +givenName: Renu +mail: DermardR@e080eb242a96464dba0da1ce711ec7f1.bitwarden.com +carLicense: ARXIV7 +departmentNumber: 9045 +employeeType: Contract +homePhone: +1 510 284-6477 +initials: R. D. +mobile: +1 510 633-7116 +pager: +1 510 808-9559 +roomNumber: 8949 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yen Sails,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yen Sails +sn: Sails +description: This is Yen Sails's description +facsimileTelephoneNumber: +1 206 932-7843 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 321-4104 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: SailsY +givenName: Yen +mail: SailsY@b13bd03113d249d69d9301b44834eaa1.bitwarden.com +carLicense: OD9OHP +departmentNumber: 4384 +employeeType: Contract +homePhone: +1 206 398-3634 +initials: Y. S. +mobile: +1 206 243-1002 +pager: +1 206 890-4887 +roomNumber: 9442 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Claudie Willett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claudie Willett +sn: Willett +description: This is Claudie Willett's description +facsimileTelephoneNumber: +1 213 240-2634 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 243-2566 +title: Associate Management Pinhead +userPassword: Password1 +uid: WillettC +givenName: Claudie +mail: WillettC@7167bede64e647b8a348838a0a19c5fc.bitwarden.com +carLicense: HRUGRU +departmentNumber: 2830 +employeeType: Employee +homePhone: +1 213 818-3260 +initials: C. W. +mobile: +1 213 765-6429 +pager: +1 213 942-2577 +roomNumber: 9101 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Antonia Kashef,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antonia Kashef +sn: Kashef +description: This is Antonia Kashef's description +facsimileTelephoneNumber: +1 510 597-9216 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 622-9108 +title: Junior Product Testing Evangelist +userPassword: Password1 +uid: KashefA +givenName: Antonia +mail: KashefA@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com +carLicense: 3T0EQW +departmentNumber: 1116 +employeeType: Normal +homePhone: +1 510 431-7660 +initials: A. K. +mobile: +1 510 585-5005 +pager: +1 510 249-7654 +roomNumber: 9553 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cleopatra Kikuchi +sn: Kikuchi +description: This is Cleopatra Kikuchi's description +facsimileTelephoneNumber: +1 818 280-5968 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 977-8980 +title: Associate Product Development Grunt +userPassword: Password1 +uid: KikuchiC +givenName: Cleopatra +mail: KikuchiC@e209292ce8494e20a17431a0c16ad1ce.bitwarden.com +carLicense: E252V0 +departmentNumber: 9576 +employeeType: Contract +homePhone: +1 818 254-1752 +initials: C. K. +mobile: +1 818 112-4339 +pager: +1 818 148-6719 +roomNumber: 8638 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leta Weeks,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leta Weeks +sn: Weeks +description: This is Leta Weeks's description +facsimileTelephoneNumber: +1 818 442-5634 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 792-9334 +title: Associate Product Development Visionary +userPassword: Password1 +uid: WeeksL +givenName: Leta +mail: WeeksL@ffdba696892b4a2faf2f9784c5557e4c.bitwarden.com +carLicense: MWV80G +departmentNumber: 2961 +employeeType: Contract +homePhone: +1 818 594-5609 +initials: L. W. +mobile: +1 818 925-5923 +pager: +1 818 548-6764 +roomNumber: 9311 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Saraann Ku,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saraann Ku +sn: Ku +description: This is Saraann Ku's description +facsimileTelephoneNumber: +1 510 756-6497 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 314-4771 +title: Associate Human Resources Czar +userPassword: Password1 +uid: KuS +givenName: Saraann +mail: KuS@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com +carLicense: 9BXRMN +departmentNumber: 1851 +employeeType: Normal +homePhone: +1 510 816-9421 +initials: S. K. +mobile: +1 510 183-4952 +pager: +1 510 459-4050 +roomNumber: 8896 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Malgosia Allaman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malgosia Allaman +sn: Allaman +description: This is Malgosia Allaman's description +facsimileTelephoneNumber: +1 804 425-2900 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 820-6218 +title: Master Peons Fellow +userPassword: Password1 +uid: AllamanM +givenName: Malgosia +mail: AllamanM@a426d86bc70a41169741acf404c40b77.bitwarden.com +carLicense: S22T37 +departmentNumber: 5681 +employeeType: Contract +homePhone: +1 804 444-2298 +initials: M. A. +mobile: +1 804 401-2035 +pager: +1 804 177-5142 +roomNumber: 9303 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dorri Brickey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorri Brickey +sn: Brickey +description: This is Dorri Brickey's description +facsimileTelephoneNumber: +1 206 855-1807 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 532-7081 +title: Master Product Development Engineer +userPassword: Password1 +uid: BrickeyD +givenName: Dorri +mail: BrickeyD@52375a276d8e4116b12e682b77fe0b05.bitwarden.com +carLicense: E6YA2Q +departmentNumber: 6466 +employeeType: Normal +homePhone: +1 206 461-4349 +initials: D. B. +mobile: +1 206 970-2269 +pager: +1 206 111-5541 +roomNumber: 8674 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gilles Tullo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilles Tullo +sn: Tullo +description: This is Gilles Tullo's description +facsimileTelephoneNumber: +1 818 171-9454 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 672-3122 +title: Junior Administrative Artist +userPassword: Password1 +uid: TulloG +givenName: Gilles +mail: TulloG@8cf075f892994459a2bb7138294f3585.bitwarden.com +carLicense: 43BE6G +departmentNumber: 3756 +employeeType: Normal +homePhone: +1 818 604-9100 +initials: G. T. +mobile: +1 818 936-9494 +pager: +1 818 914-2830 +roomNumber: 9466 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Stacia Wever,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacia Wever +sn: Wever +description: This is Stacia Wever's description +facsimileTelephoneNumber: +1 415 479-7895 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 738-5825 +title: Master Administrative Warrior +userPassword: Password1 +uid: WeverS +givenName: Stacia +mail: WeverS@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com +carLicense: CQ53UJ +departmentNumber: 4275 +employeeType: Employee +homePhone: +1 415 715-6702 +initials: S. W. +mobile: +1 415 203-9134 +pager: +1 415 278-1930 +roomNumber: 9105 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Herman Georgiou,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herman Georgiou +sn: Georgiou +description: This is Herman Georgiou's description +facsimileTelephoneNumber: +1 213 682-3242 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 788-5262 +title: Master Management Dictator +userPassword: Password1 +uid: GeorgioH +givenName: Herman +mail: GeorgioH@a96211277807499cbc72ba383cf3f7fd.bitwarden.com +carLicense: SYM2EH +departmentNumber: 1366 +employeeType: Employee +homePhone: +1 213 153-3918 +initials: H. G. +mobile: +1 213 848-1346 +pager: +1 213 335-6069 +roomNumber: 8177 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: QuangTrung Prokop +sn: Prokop +description: This is QuangTrung Prokop's description +facsimileTelephoneNumber: +1 206 197-9480 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 987-4229 +title: Junior Human Resources Manager +userPassword: Password1 +uid: ProkopQ +givenName: QuangTrung +mail: ProkopQ@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com +carLicense: K80PVB +departmentNumber: 7802 +employeeType: Employee +homePhone: +1 206 384-8273 +initials: Q. P. +mobile: +1 206 981-1785 +pager: +1 206 754-4671 +roomNumber: 8605 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Clarey Shibata,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarey Shibata +sn: Shibata +description: This is Clarey Shibata's description +facsimileTelephoneNumber: +1 206 696-4855 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 885-2341 +title: Junior Management Punk +userPassword: Password1 +uid: ShibataC +givenName: Clarey +mail: ShibataC@fcbf2ef1cdb340fcb4c052a580a37b96.bitwarden.com +carLicense: SEBC54 +departmentNumber: 2322 +employeeType: Contract +homePhone: +1 206 463-3665 +initials: C. S. +mobile: +1 206 104-3396 +pager: +1 206 839-4752 +roomNumber: 9542 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Elyn Witzmann,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elyn Witzmann +sn: Witzmann +description: This is Elyn Witzmann's description +facsimileTelephoneNumber: +1 408 581-1343 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 739-8013 +title: Master Peons Manager +userPassword: Password1 +uid: WitzmanE +givenName: Elyn +mail: WitzmanE@37e3de35a8c340a7b99329132ff492e1.bitwarden.com +carLicense: 5T4174 +departmentNumber: 7018 +employeeType: Employee +homePhone: +1 408 805-6829 +initials: E. W. +mobile: +1 408 477-7267 +pager: +1 408 711-2567 +roomNumber: 8354 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Corry Lasch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corry Lasch +sn: Lasch +description: This is Corry Lasch's description +facsimileTelephoneNumber: +1 408 699-6065 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 425-1102 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: LaschC +givenName: Corry +mail: LaschC@b0c3511415624300926253fbc8566845.bitwarden.com +carLicense: R8DPXX +departmentNumber: 5192 +employeeType: Contract +homePhone: +1 408 165-9593 +initials: C. L. +mobile: +1 408 534-2738 +pager: +1 408 640-9497 +roomNumber: 8896 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ilsa Reeder,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilsa Reeder +sn: Reeder +description: This is Ilsa Reeder's description +facsimileTelephoneNumber: +1 510 239-2309 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 384-7337 +title: Chief Product Development Warrior +userPassword: Password1 +uid: ReederI +givenName: Ilsa +mail: ReederI@d52c1f1046c6411eb0907201f8f5a6d8.bitwarden.com +carLicense: 7PUP1S +departmentNumber: 7608 +employeeType: Contract +homePhone: +1 510 120-1785 +initials: I. R. +mobile: +1 510 487-8500 +pager: +1 510 729-9133 +roomNumber: 8078 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yasmin Kopala +sn: Kopala +description: This is Yasmin Kopala's description +facsimileTelephoneNumber: +1 408 905-5021 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 300-2675 +title: Associate Human Resources Grunt +userPassword: Password1 +uid: KopalaY +givenName: Yasmin +mail: KopalaY@e47f64bef69f4dd48dddefa04608b96f.bitwarden.com +carLicense: HHACY2 +departmentNumber: 2876 +employeeType: Contract +homePhone: +1 408 940-8494 +initials: Y. K. +mobile: +1 408 948-6024 +pager: +1 408 539-2796 +roomNumber: 9222 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dpn Lanunix +sn: Lanunix +description: This is Dpn Lanunix's description +facsimileTelephoneNumber: +1 206 548-6020 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 555-7054 +title: Chief Human Resources Manager +userPassword: Password1 +uid: LanunixD +givenName: Dpn +mail: LanunixD@d8b377610c7d421f8eec4a02e5fb3c9d.bitwarden.com +carLicense: KPHRT6 +departmentNumber: 1437 +employeeType: Normal +homePhone: +1 206 299-6561 +initials: D. L. +mobile: +1 206 853-5612 +pager: +1 206 686-1197 +roomNumber: 8927 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shaib Fysh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaib Fysh +sn: Fysh +description: This is Shaib Fysh's description +facsimileTelephoneNumber: +1 510 548-9778 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 937-9911 +title: Junior Payroll Janitor +userPassword: Password1 +uid: FyshS +givenName: Shaib +mail: FyshS@5d8cc64a505e4795adb2db74fb44a1cf.bitwarden.com +carLicense: QN68C6 +departmentNumber: 1941 +employeeType: Contract +homePhone: +1 510 572-7777 +initials: S. F. +mobile: +1 510 849-9825 +pager: +1 510 403-1933 +roomNumber: 8465 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorilyn Swearingen +sn: Swearingen +description: This is Lorilyn Swearingen's description +facsimileTelephoneNumber: +1 804 761-8904 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 591-9191 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: SwearinL +givenName: Lorilyn +mail: SwearinL@c50e1d17976a4acebd18f01bbfd46623.bitwarden.com +carLicense: 7EFB17 +departmentNumber: 3210 +employeeType: Employee +homePhone: +1 804 627-3214 +initials: L. S. +mobile: +1 804 269-8710 +pager: +1 804 904-2249 +roomNumber: 8734 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Goldarina Delaat,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Goldarina Delaat +sn: Delaat +description: This is Goldarina Delaat's description +facsimileTelephoneNumber: +1 206 287-3130 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 206 110-8569 +title: Chief Administrative Technician +userPassword: Password1 +uid: DelaatG +givenName: Goldarina +mail: DelaatG@75858e9b0a57431ea93369d3d0fdb55e.bitwarden.com +carLicense: 93VWX4 +departmentNumber: 3640 +employeeType: Normal +homePhone: +1 206 842-2821 +initials: G. D. +mobile: +1 206 239-6124 +pager: +1 206 907-8812 +roomNumber: 9982 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margo Kolodiejchuk +sn: Kolodiejchuk +description: This is Margo Kolodiejchuk's description +facsimileTelephoneNumber: +1 408 621-2344 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 471-5428 +title: Master Payroll Manager +userPassword: Password1 +uid: KolodieM +givenName: Margo +mail: KolodieM@f99fab41afc647d5a865c56f14ad624d.bitwarden.com +carLicense: UT7CDE +departmentNumber: 9417 +employeeType: Normal +homePhone: +1 408 692-2289 +initials: M. K. +mobile: +1 408 963-1153 +pager: +1 408 966-2189 +roomNumber: 8917 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Con Liskoff,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Con Liskoff +sn: Liskoff +description: This is Con Liskoff's description +facsimileTelephoneNumber: +1 804 601-3383 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 497-6932 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: LiskoffC +givenName: Con +mail: LiskoffC@ac5ce5b90419470188e40d8780712bf4.bitwarden.com +carLicense: 01JASH +departmentNumber: 8392 +employeeType: Normal +homePhone: +1 804 180-2011 +initials: C. L. +mobile: +1 804 468-2620 +pager: +1 804 773-1903 +roomNumber: 8204 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dannie Belaire,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dannie Belaire +sn: Belaire +description: This is Dannie Belaire's description +facsimileTelephoneNumber: +1 415 252-6578 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 415 735-5337 +title: Associate Payroll Visionary +userPassword: Password1 +uid: BelaireD +givenName: Dannie +mail: BelaireD@b885e453b9ed486ebec88cb2a7678928.bitwarden.com +carLicense: UBCJKE +departmentNumber: 7005 +employeeType: Normal +homePhone: +1 415 667-3784 +initials: D. B. +mobile: +1 415 355-5351 +pager: +1 415 387-2386 +roomNumber: 8272 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Syyed Nasato,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Syyed Nasato +sn: Nasato +description: This is Syyed Nasato's description +facsimileTelephoneNumber: +1 804 896-7578 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 599-8089 +title: Master Payroll Consultant +userPassword: Password1 +uid: NasatoS +givenName: Syyed +mail: NasatoS@35062355c8cb4574a234b41f34896a6b.bitwarden.com +carLicense: VLT2E4 +departmentNumber: 4735 +employeeType: Employee +homePhone: +1 804 176-7759 +initials: S. N. +mobile: +1 804 954-2706 +pager: +1 804 135-3162 +roomNumber: 9444 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Paloma Meijer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paloma Meijer +sn: Meijer +description: This is Paloma Meijer's description +facsimileTelephoneNumber: +1 804 114-3693 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 680-4770 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: MeijerP +givenName: Paloma +mail: MeijerP@35a90dbd42ea4858949658f923e13119.bitwarden.com +carLicense: PEUY50 +departmentNumber: 3329 +employeeType: Contract +homePhone: +1 804 711-8203 +initials: P. M. +mobile: +1 804 192-4710 +pager: +1 804 179-6833 +roomNumber: 9172 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marleen Cucuzzella +sn: Cucuzzella +description: This is Marleen Cucuzzella's description +facsimileTelephoneNumber: +1 510 767-1189 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 607-8777 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: CucuzzeM +givenName: Marleen +mail: CucuzzeM@4bf79c0ee4d34c7692b9804d098856ec.bitwarden.com +carLicense: OIX4AN +departmentNumber: 5465 +employeeType: Normal +homePhone: +1 510 126-3275 +initials: M. C. +mobile: +1 510 637-2847 +pager: +1 510 447-9164 +roomNumber: 9822 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anestassia Pilch,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anestassia Pilch +sn: Pilch +description: This is Anestassia Pilch's description +facsimileTelephoneNumber: +1 415 934-2759 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 803-5199 +title: Junior Product Development Stooge +userPassword: Password1 +uid: PilchA +givenName: Anestassia +mail: PilchA@64cec2e36e064bf29124f55fbca16d06.bitwarden.com +carLicense: NGMQP4 +departmentNumber: 9579 +employeeType: Contract +homePhone: +1 415 743-8192 +initials: A. P. +mobile: +1 415 904-1927 +pager: +1 415 195-4668 +roomNumber: 8248 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Caroline Weakley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caroline Weakley +sn: Weakley +description: This is Caroline Weakley's description +facsimileTelephoneNumber: +1 213 788-9551 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 417-5604 +title: Master Management Admin +userPassword: Password1 +uid: WeakleyC +givenName: Caroline +mail: WeakleyC@c38fb3d41e6d4c59bb5e63a066239f4b.bitwarden.com +carLicense: UX8UEJ +departmentNumber: 7797 +employeeType: Contract +homePhone: +1 213 477-9344 +initials: C. W. +mobile: +1 213 115-1607 +pager: +1 213 920-1912 +roomNumber: 9721 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Brad Widener,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brad Widener +sn: Widener +description: This is Brad Widener's description +facsimileTelephoneNumber: +1 804 459-3110 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 642-8265 +title: Chief Peons Pinhead +userPassword: Password1 +uid: WidenerB +givenName: Brad +mail: WidenerB@3b22641d076842469513221f673236de.bitwarden.com +carLicense: C3B9DA +departmentNumber: 9743 +employeeType: Normal +homePhone: +1 804 199-3929 +initials: B. W. +mobile: +1 804 867-3030 +pager: +1 804 454-1100 +roomNumber: 9331 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nga Holvey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nga Holvey +sn: Holvey +description: This is Nga Holvey's description +facsimileTelephoneNumber: +1 818 474-3661 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 818 739-5602 +title: Supreme Payroll Punk +userPassword: Password1 +uid: HolveyN +givenName: Nga +mail: HolveyN@a902f1ad65b842baa48923792860ef8e.bitwarden.com +carLicense: 0EB0CF +departmentNumber: 8198 +employeeType: Employee +homePhone: +1 818 801-9812 +initials: N. H. +mobile: +1 818 446-3224 +pager: +1 818 945-4535 +roomNumber: 8469 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Breanne Hatten,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Breanne Hatten +sn: Hatten +description: This is Breanne Hatten's description +facsimileTelephoneNumber: +1 206 149-4991 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 206 874-3738 +title: Master Peons Writer +userPassword: Password1 +uid: HattenB +givenName: Breanne +mail: HattenB@7e87a6fdda7846518a51a730a93f1c6d.bitwarden.com +carLicense: MCC9NV +departmentNumber: 5336 +employeeType: Normal +homePhone: +1 206 907-4359 +initials: B. H. +mobile: +1 206 984-8939 +pager: +1 206 535-7148 +roomNumber: 8323 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Babita Yuhn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Babita Yuhn +sn: Yuhn +description: This is Babita Yuhn's description +facsimileTelephoneNumber: +1 818 937-3100 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 818 937-1993 +title: Chief Janitorial Sales Rep +userPassword: Password1 +uid: YuhnB +givenName: Babita +mail: YuhnB@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com +carLicense: 44BKTE +departmentNumber: 7359 +employeeType: Normal +homePhone: +1 818 243-9030 +initials: B. Y. +mobile: +1 818 650-4842 +pager: +1 818 314-4279 +roomNumber: 8496 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bhupendra Caplinger +sn: Caplinger +description: This is Bhupendra Caplinger's description +facsimileTelephoneNumber: +1 510 116-6584 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 515-3881 +title: Chief Janitorial Writer +userPassword: Password1 +uid: CaplingB +givenName: Bhupendra +mail: CaplingB@866dcdf7141f4b00b327974f7403df8c.bitwarden.com +carLicense: 4545AF +departmentNumber: 7104 +employeeType: Normal +homePhone: +1 510 675-8983 +initials: B. C. +mobile: +1 510 463-2464 +pager: +1 510 283-9260 +roomNumber: 8064 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sanjoy Burbage,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanjoy Burbage +sn: Burbage +description: This is Sanjoy Burbage's description +facsimileTelephoneNumber: +1 510 939-1145 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 229-8584 +title: Master Management Dictator +userPassword: Password1 +uid: BurbageS +givenName: Sanjoy +mail: BurbageS@d9cdf2972f5548b0814498e608f03bf6.bitwarden.com +carLicense: NY6QLM +departmentNumber: 5213 +employeeType: Contract +homePhone: +1 510 968-9733 +initials: S. B. +mobile: +1 510 652-2231 +pager: +1 510 917-5535 +roomNumber: 8244 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hettie Grassmann,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hettie Grassmann +sn: Grassmann +description: This is Hettie Grassmann's description +facsimileTelephoneNumber: +1 415 653-4177 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 536-2658 +title: Junior Payroll Fellow +userPassword: Password1 +uid: GrassmaH +givenName: Hettie +mail: GrassmaH@49634f2a5e564b13843ce74e45cd5b8f.bitwarden.com +carLicense: 92L2A6 +departmentNumber: 2806 +employeeType: Normal +homePhone: +1 415 309-2680 +initials: H. G. +mobile: +1 415 150-1230 +pager: +1 415 615-2787 +roomNumber: 8583 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacques Lobello,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacques Lobello +sn: Lobello +description: This is Jacques Lobello's description +facsimileTelephoneNumber: +1 510 110-3140 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 625-8146 +title: Junior Administrative Sales Rep +userPassword: Password1 +uid: LobelloJ +givenName: Jacques +mail: LobelloJ@23cf32b7148140cfb4b02ddf8d62cfa5.bitwarden.com +carLicense: PJ09JA +departmentNumber: 6788 +employeeType: Normal +homePhone: +1 510 500-7016 +initials: J. L. +mobile: +1 510 822-4135 +pager: +1 510 523-7107 +roomNumber: 9795 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Susi Vezina,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susi Vezina +sn: Vezina +description: This is Susi Vezina's description +facsimileTelephoneNumber: +1 213 832-2140 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 213 441-6406 +title: Associate Product Testing Architect +userPassword: Password1 +uid: VezinaS +givenName: Susi +mail: VezinaS@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com +carLicense: 5KGVSH +departmentNumber: 6142 +employeeType: Contract +homePhone: +1 213 619-4340 +initials: S. V. +mobile: +1 213 858-9861 +pager: +1 213 869-7106 +roomNumber: 8348 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulo Watanabe +sn: Watanabe +description: This is Paulo Watanabe's description +facsimileTelephoneNumber: +1 415 921-1124 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 276-2003 +title: Master Janitorial Consultant +userPassword: Password1 +uid: WatanabP +givenName: Paulo +mail: WatanabP@91415ae4cae4467d8a1e1d9b9c594a7c.bitwarden.com +carLicense: WPCJC8 +departmentNumber: 4654 +employeeType: Normal +homePhone: +1 415 751-2697 +initials: P. W. +mobile: +1 415 379-5103 +pager: +1 415 335-5126 +roomNumber: 9906 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hynek Bergland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hynek Bergland +sn: Bergland +description: This is Hynek Bergland's description +facsimileTelephoneNumber: +1 408 266-8356 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 408 390-8810 +title: Associate Janitorial Developer +userPassword: Password1 +uid: BerglanH +givenName: Hynek +mail: BerglanH@648152cfae1e47ffa5e239f481673983.bitwarden.com +carLicense: P4LECH +departmentNumber: 6237 +employeeType: Contract +homePhone: +1 408 829-9058 +initials: H. B. +mobile: +1 408 813-3377 +pager: +1 408 673-2783 +roomNumber: 9397 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilyse VanSchyndel +sn: VanSchyndel +description: This is Ilyse VanSchyndel's description +facsimileTelephoneNumber: +1 415 145-8163 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 279-6748 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: VanSchyI +givenName: Ilyse +mail: VanSchyI@05612bbc895f46abb970a45c00f480d9.bitwarden.com +carLicense: 158UFC +departmentNumber: 5413 +employeeType: Contract +homePhone: +1 415 761-7157 +initials: I. V. +mobile: +1 415 478-5635 +pager: +1 415 762-7546 +roomNumber: 9124 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Brenton Zou,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brenton Zou +sn: Zou +description: This is Brenton Zou's description +facsimileTelephoneNumber: +1 415 784-3614 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 849-6547 +title: Chief Human Resources Artist +userPassword: Password1 +uid: ZouB +givenName: Brenton +mail: ZouB@264d4763d0c84adba308d4c4cab556c4.bitwarden.com +carLicense: 8XETTD +departmentNumber: 7699 +employeeType: Employee +homePhone: +1 415 696-6236 +initials: B. Z. +mobile: +1 415 539-9472 +pager: +1 415 902-7380 +roomNumber: 8453 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florina HowePatterson +sn: HowePatterson +description: This is Florina HowePatterson's description +facsimileTelephoneNumber: +1 510 441-3132 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 846-8117 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: HowePatF +givenName: Florina +mail: HowePatF@a0859d351c9f4c38bafe2c10a4129e60.bitwarden.com +carLicense: 7GMYQ6 +departmentNumber: 5900 +employeeType: Contract +homePhone: +1 510 565-2549 +initials: F. H. +mobile: +1 510 611-7948 +pager: +1 510 213-3617 +roomNumber: 9779 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mohamed Popper,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mohamed Popper +sn: Popper +description: This is Mohamed Popper's description +facsimileTelephoneNumber: +1 206 166-5544 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 129-2531 +title: Junior Peons Assistant +userPassword: Password1 +uid: PopperM +givenName: Mohamed +mail: PopperM@7f4b5ca02e594ee8a8204a5051500312.bitwarden.com +carLicense: V4A59Y +departmentNumber: 6017 +employeeType: Normal +homePhone: +1 206 474-1092 +initials: M. P. +mobile: +1 206 179-5338 +pager: +1 206 721-2604 +roomNumber: 8804 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dnadoc Tejada +sn: Tejada +description: This is Dnadoc Tejada's description +facsimileTelephoneNumber: +1 206 661-6923 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 206 616-3759 +title: Supreme Payroll Assistant +userPassword: Password1 +uid: TejadaD +givenName: Dnadoc +mail: TejadaD@039e3a194ecb4b229b6171f883dbe2ca.bitwarden.com +carLicense: SET8T3 +departmentNumber: 8858 +employeeType: Employee +homePhone: +1 206 901-3904 +initials: D. T. +mobile: +1 206 539-6622 +pager: +1 206 475-9765 +roomNumber: 8943 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Suzan Brisebois,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzan Brisebois +sn: Brisebois +description: This is Suzan Brisebois's description +facsimileTelephoneNumber: +1 408 917-2274 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 291-4156 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: BriseboS +givenName: Suzan +mail: BriseboS@befc232b3f4240ada061cd42724f306e.bitwarden.com +carLicense: GR657V +departmentNumber: 5254 +employeeType: Contract +homePhone: +1 408 961-4577 +initials: S. B. +mobile: +1 408 577-7655 +pager: +1 408 113-6427 +roomNumber: 9877 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Violette Capostagno,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Violette Capostagno +sn: Capostagno +description: This is Violette Capostagno's description +facsimileTelephoneNumber: +1 408 481-8365 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 680-3424 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: CapostaV +givenName: Violette +mail: CapostaV@33b35540a4bc4f6baa81886f1273a7c9.bitwarden.com +carLicense: 4AD2D0 +departmentNumber: 2543 +employeeType: Contract +homePhone: +1 408 838-3972 +initials: V. C. +mobile: +1 408 907-6165 +pager: +1 408 469-7154 +roomNumber: 9674 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolyn Shoemaker +sn: Shoemaker +description: This is Jolyn Shoemaker's description +facsimileTelephoneNumber: +1 206 171-6403 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 403-8739 +title: Chief Payroll Warrior +userPassword: Password1 +uid: ShoemakJ +givenName: Jolyn +mail: ShoemakJ@1566e50dd621416d8ec481ceb9271778.bitwarden.com +carLicense: 2WNWOD +departmentNumber: 4400 +employeeType: Contract +homePhone: +1 206 597-4881 +initials: J. S. +mobile: +1 206 649-9184 +pager: +1 206 208-1391 +roomNumber: 9259 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darsey BrownGillard +sn: BrownGillard +description: This is Darsey BrownGillard's description +facsimileTelephoneNumber: +1 213 997-8219 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 213 545-6626 +title: Junior Administrative Punk +userPassword: Password1 +uid: BrownGiD +givenName: Darsey +mail: BrownGiD@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com +carLicense: 6AV4KC +departmentNumber: 1102 +employeeType: Normal +homePhone: +1 213 989-6160 +initials: D. B. +mobile: +1 213 228-2130 +pager: +1 213 270-5323 +roomNumber: 9550 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Liem Dalloste,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liem Dalloste +sn: Dalloste +description: This is Liem Dalloste's description +facsimileTelephoneNumber: +1 408 305-3313 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 424-1550 +title: Junior Management Punk +userPassword: Password1 +uid: DallostL +givenName: Liem +mail: DallostL@a17de6ea9dda4d659f1501b4b4ed4d2a.bitwarden.com +carLicense: NY26N7 +departmentNumber: 7091 +employeeType: Contract +homePhone: +1 408 346-7622 +initials: L. D. +mobile: +1 408 511-8621 +pager: +1 408 745-1988 +roomNumber: 8939 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bernita Hui,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernita Hui +sn: Hui +description: This is Bernita Hui's description +facsimileTelephoneNumber: +1 408 506-2842 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 119-4434 +title: Chief Product Testing Writer +userPassword: Password1 +uid: HuiB +givenName: Bernita +mail: HuiB@155d681ec6564fc8a96a2716f8046f1d.bitwarden.com +carLicense: 9HHMP4 +departmentNumber: 4823 +employeeType: Employee +homePhone: +1 408 688-6511 +initials: B. H. +mobile: +1 408 121-8860 +pager: +1 408 351-8896 +roomNumber: 9251 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mab Bhatia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mab Bhatia +sn: Bhatia +description: This is Mab Bhatia's description +facsimileTelephoneNumber: +1 213 202-4084 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 230-9129 +title: Supreme Product Development Admin +userPassword: Password1 +uid: BhatiaM +givenName: Mab +mail: BhatiaM@f5afe6422dca491da65fa6a254990cc8.bitwarden.com +carLicense: SXMYS7 +departmentNumber: 8780 +employeeType: Contract +homePhone: +1 213 757-2334 +initials: M. B. +mobile: +1 213 471-7286 +pager: +1 213 459-5671 +roomNumber: 9996 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bamby Ressner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bamby Ressner +sn: Ressner +description: This is Bamby Ressner's description +facsimileTelephoneNumber: +1 510 956-8327 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 778-4211 +title: Chief Human Resources Figurehead +userPassword: Password1 +uid: RessnerB +givenName: Bamby +mail: RessnerB@c32875a7d5c84e0cbf7df721e038b80b.bitwarden.com +carLicense: N76AR3 +departmentNumber: 9698 +employeeType: Employee +homePhone: +1 510 992-7854 +initials: B. R. +mobile: +1 510 980-7867 +pager: +1 510 212-4934 +roomNumber: 9623 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moniek Kamminga +sn: Kamminga +description: This is Moniek Kamminga's description +facsimileTelephoneNumber: +1 804 115-4244 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 804 945-5815 +title: Master Human Resources Technician +userPassword: Password1 +uid: KammingM +givenName: Moniek +mail: KammingM@a922ba05488e401e9633fbd1813d714f.bitwarden.com +carLicense: LN1GD2 +departmentNumber: 6386 +employeeType: Normal +homePhone: +1 804 494-6388 +initials: M. K. +mobile: +1 804 957-4507 +pager: +1 804 581-4353 +roomNumber: 9458 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nadir Harold,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nadir Harold +sn: Harold +description: This is Nadir Harold's description +facsimileTelephoneNumber: +1 818 385-6589 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 254-8685 +title: Supreme Administrative Developer +userPassword: Password1 +uid: HaroldN +givenName: Nadir +mail: HaroldN@0452103199be4e45a9d502fc8103d707.bitwarden.com +carLicense: 6VJAJK +departmentNumber: 1767 +employeeType: Contract +homePhone: +1 818 209-9906 +initials: N. H. +mobile: +1 818 361-1551 +pager: +1 818 140-3924 +roomNumber: 9035 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Norikazu Loughery,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norikazu Loughery +sn: Loughery +description: This is Norikazu Loughery's description +facsimileTelephoneNumber: +1 206 329-8321 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 895-1240 +title: Supreme Administrative President +userPassword: Password1 +uid: LougherN +givenName: Norikazu +mail: LougherN@a8523f0ff874441ba48222b981c29c83.bitwarden.com +carLicense: HM6Y9B +departmentNumber: 9443 +employeeType: Normal +homePhone: +1 206 411-3825 +initials: N. L. +mobile: +1 206 256-6800 +pager: +1 206 204-7251 +roomNumber: 9358 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gerda Cuthill,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerda Cuthill +sn: Cuthill +description: This is Gerda Cuthill's description +facsimileTelephoneNumber: +1 510 303-7102 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 436-1761 +title: Associate Payroll Vice President +userPassword: Password1 +uid: CuthillG +givenName: Gerda +mail: CuthillG@ad0ef2c2568345158919240fe983f26f.bitwarden.com +carLicense: RN97KF +departmentNumber: 6470 +employeeType: Employee +homePhone: +1 510 845-1205 +initials: G. C. +mobile: +1 510 280-9870 +pager: +1 510 830-8047 +roomNumber: 9412 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subhash Ranoa +sn: Ranoa +description: This is Subhash Ranoa's description +facsimileTelephoneNumber: +1 415 258-2071 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 379-7476 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: RanoaS +givenName: Subhash +mail: RanoaS@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com +carLicense: G9CCXH +departmentNumber: 9987 +employeeType: Contract +homePhone: +1 415 712-6197 +initials: S. R. +mobile: +1 415 311-9700 +pager: +1 415 588-6198 +roomNumber: 9303 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Blakeley Moynihan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blakeley Moynihan +sn: Moynihan +description: This is Blakeley Moynihan's description +facsimileTelephoneNumber: +1 818 100-4389 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 203-6844 +title: Associate Management Czar +userPassword: Password1 +uid: MoynihaB +givenName: Blakeley +mail: MoynihaB@b6c212225ddb4f9ba95fbbaec945f94a.bitwarden.com +carLicense: RJWKP4 +departmentNumber: 6765 +employeeType: Normal +homePhone: +1 818 197-4582 +initials: B. M. +mobile: +1 818 401-2734 +pager: +1 818 568-1792 +roomNumber: 9247 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ronni DMSDB,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronni DMSDB +sn: DMSDB +description: This is Ronni DMSDB's description +facsimileTelephoneNumber: +1 213 865-1932 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 180-2571 +title: Chief Administrative Czar +userPassword: Password1 +uid: DMSDBR +givenName: Ronni +mail: DMSDBR@353b753321aa4a97a115856474e231b6.bitwarden.com +carLicense: R3O7YC +departmentNumber: 3947 +employeeType: Contract +homePhone: +1 213 234-3360 +initials: R. D. +mobile: +1 213 413-2708 +pager: +1 213 819-5131 +roomNumber: 8248 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kemal Theocharakis +sn: Theocharakis +description: This is Kemal Theocharakis's description +facsimileTelephoneNumber: +1 804 137-5577 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 214-8056 +title: Supreme Administrative Punk +userPassword: Password1 +uid: TheochaK +givenName: Kemal +mail: TheochaK@f724343d8470496bb0df55542d73aa26.bitwarden.com +carLicense: C2A9PW +departmentNumber: 4831 +employeeType: Normal +homePhone: +1 804 855-8095 +initials: K. T. +mobile: +1 804 701-8827 +pager: +1 804 810-3452 +roomNumber: 8960 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Desdemona Howes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desdemona Howes +sn: Howes +description: This is Desdemona Howes's description +facsimileTelephoneNumber: +1 213 239-2988 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 676-6055 +title: Associate Product Development Punk +userPassword: Password1 +uid: HowesD +givenName: Desdemona +mail: HowesD@d402d45df6ee44758d534e95cb5617f0.bitwarden.com +carLicense: 8U0PB7 +departmentNumber: 1716 +employeeType: Contract +homePhone: +1 213 233-6205 +initials: D. H. +mobile: +1 213 675-8073 +pager: +1 213 138-1119 +roomNumber: 8779 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Micaela Grelck,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micaela Grelck +sn: Grelck +description: This is Micaela Grelck's description +facsimileTelephoneNumber: +1 818 858-4301 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 458-4855 +title: Associate Administrative Stooge +userPassword: Password1 +uid: GrelckM +givenName: Micaela +mail: GrelckM@24d7cb43aaeb44b593ff6b98218942cd.bitwarden.com +carLicense: V6APCD +departmentNumber: 9396 +employeeType: Employee +homePhone: +1 818 668-7708 +initials: M. G. +mobile: +1 818 257-4711 +pager: +1 818 807-9817 +roomNumber: 9608 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natala Yarbrough +sn: Yarbrough +description: This is Natala Yarbrough's description +facsimileTelephoneNumber: +1 408 303-8251 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 835-2029 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: YarbrouN +givenName: Natala +mail: YarbrouN@3ff7146541124494b887915621fe41a5.bitwarden.com +carLicense: 2W5O65 +departmentNumber: 1481 +employeeType: Normal +homePhone: +1 408 445-7270 +initials: N. Y. +mobile: +1 408 180-1955 +pager: +1 408 508-8160 +roomNumber: 8482 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Moria Brandstadt,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moria Brandstadt +sn: Brandstadt +description: This is Moria Brandstadt's description +facsimileTelephoneNumber: +1 415 515-1736 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 269-8105 +title: Supreme Peons Warrior +userPassword: Password1 +uid: BrandstM +givenName: Moria +mail: BrandstM@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com +carLicense: UOL8RL +departmentNumber: 1225 +employeeType: Contract +homePhone: +1 415 486-6084 +initials: M. B. +mobile: +1 415 478-5757 +pager: +1 415 445-1154 +roomNumber: 8040 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Raf VanAlphen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raf VanAlphen +sn: VanAlphen +description: This is Raf VanAlphen's description +facsimileTelephoneNumber: +1 415 374-7528 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 430-2694 +title: Supreme Management Writer +userPassword: Password1 +uid: VanAlphR +givenName: Raf +mail: VanAlphR@b5110eee63164b03a1156fbe465ff053.bitwarden.com +carLicense: 6NPNWW +departmentNumber: 6456 +employeeType: Employee +homePhone: +1 415 702-2084 +initials: R. V. +mobile: +1 415 724-6527 +pager: +1 415 269-9973 +roomNumber: 8097 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jianli Seniuk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jianli Seniuk +sn: Seniuk +description: This is Jianli Seniuk's description +facsimileTelephoneNumber: +1 804 805-6790 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 655-2074 +title: Chief Management Grunt +userPassword: Password1 +uid: SeniukJ +givenName: Jianli +mail: SeniukJ@9d1f7bcfce524784b93c42075dd94a6c.bitwarden.com +carLicense: NEWMUF +departmentNumber: 1058 +employeeType: Employee +homePhone: +1 804 595-8286 +initials: J. S. +mobile: +1 804 255-2942 +pager: +1 804 708-1004 +roomNumber: 9643 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Stephani Wheatley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephani Wheatley +sn: Wheatley +description: This is Stephani Wheatley's description +facsimileTelephoneNumber: +1 206 988-8095 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 200-1585 +title: Junior Administrative Mascot +userPassword: Password1 +uid: WheatleS +givenName: Stephani +mail: WheatleS@f759e44a1c504c63b3eae17c75b66fa2.bitwarden.com +carLicense: Y13GA3 +departmentNumber: 7719 +employeeType: Normal +homePhone: +1 206 494-6890 +initials: S. W. +mobile: +1 206 850-7275 +pager: +1 206 909-3357 +roomNumber: 9205 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Misty Jamison,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Misty Jamison +sn: Jamison +description: This is Misty Jamison's description +facsimileTelephoneNumber: +1 818 193-3912 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 818 729-4772 +title: Master Product Development Vice President +userPassword: Password1 +uid: JamisonM +givenName: Misty +mail: JamisonM@e084ec394e994677a50d409a6357c42a.bitwarden.com +carLicense: 5A0DS6 +departmentNumber: 5486 +employeeType: Employee +homePhone: +1 818 449-4478 +initials: M. J. +mobile: +1 818 816-7526 +pager: +1 818 241-3358 +roomNumber: 9316 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Liduine Brindley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liduine Brindley +sn: Brindley +description: This is Liduine Brindley's description +facsimileTelephoneNumber: +1 804 743-2137 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 409-4896 +title: Master Janitorial Writer +userPassword: Password1 +uid: BrindleL +givenName: Liduine +mail: BrindleL@b3c93053c0224253988d5c3b976abcae.bitwarden.com +carLicense: UH9BKF +departmentNumber: 2947 +employeeType: Normal +homePhone: +1 804 498-8099 +initials: L. B. +mobile: +1 804 208-9084 +pager: +1 804 170-4929 +roomNumber: 8539 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Inam Cripps,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inam Cripps +sn: Cripps +description: This is Inam Cripps's description +facsimileTelephoneNumber: +1 804 146-3351 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 804 390-3197 +title: Chief Payroll President +userPassword: Password1 +uid: CrippsI +givenName: Inam +mail: CrippsI@98610eb59a8644899b5f6a7dba9c32ac.bitwarden.com +carLicense: SKMITF +departmentNumber: 3035 +employeeType: Contract +homePhone: +1 804 192-8218 +initials: I. C. +mobile: +1 804 761-1096 +pager: +1 804 699-9697 +roomNumber: 8246 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Megumi Sattler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Megumi Sattler +sn: Sattler +description: This is Megumi Sattler's description +facsimileTelephoneNumber: +1 818 198-8812 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 613-9708 +title: Junior Management Writer +userPassword: Password1 +uid: SattlerM +givenName: Megumi +mail: SattlerM@17fbe5ad18ef4466b77b146a182aae32.bitwarden.com +carLicense: W3N9MA +departmentNumber: 9550 +employeeType: Normal +homePhone: +1 818 841-3463 +initials: M. S. +mobile: +1 818 279-7630 +pager: +1 818 376-8654 +roomNumber: 9669 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marlies Zalokar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlies Zalokar +sn: Zalokar +description: This is Marlies Zalokar's description +facsimileTelephoneNumber: +1 206 937-8625 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 500-8356 +title: Junior Administrative Figurehead +userPassword: Password1 +uid: ZalokarM +givenName: Marlies +mail: ZalokarM@540d8b0a17d449ce8bcc397ded86d3bf.bitwarden.com +carLicense: VAR0GP +departmentNumber: 1028 +employeeType: Normal +homePhone: +1 206 326-6131 +initials: M. Z. +mobile: +1 206 843-6262 +pager: +1 206 269-3623 +roomNumber: 9154 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tiphanie Banik,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiphanie Banik +sn: Banik +description: This is Tiphanie Banik's description +facsimileTelephoneNumber: +1 408 893-7626 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 140-9368 +title: Junior Management Visionary +userPassword: Password1 +uid: BanikT +givenName: Tiphanie +mail: BanikT@4ac57cc4c8df40e5be8ca01811d8b65f.bitwarden.com +carLicense: QI9P31 +departmentNumber: 3242 +employeeType: Contract +homePhone: +1 408 764-1434 +initials: T. B. +mobile: +1 408 762-1494 +pager: +1 408 122-8606 +roomNumber: 9193 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rosene Couse,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosene Couse +sn: Couse +description: This is Rosene Couse's description +facsimileTelephoneNumber: +1 818 387-3067 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 818 834-5653 +title: Associate Payroll Manager +userPassword: Password1 +uid: CouseR +givenName: Rosene +mail: CouseR@466f24c0ae9947d2a9b6e4673a116085.bitwarden.com +carLicense: R2LFQ6 +departmentNumber: 8274 +employeeType: Contract +homePhone: +1 818 396-5213 +initials: R. C. +mobile: +1 818 277-2158 +pager: +1 818 863-1276 +roomNumber: 8335 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Adoree Sevilla,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adoree Sevilla +sn: Sevilla +description: This is Adoree Sevilla's description +facsimileTelephoneNumber: +1 206 405-2053 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 206 767-3625 +title: Associate Product Development Czar +userPassword: Password1 +uid: SevillaA +givenName: Adoree +mail: SevillaA@b8436b0997234174a1d3652199251b81.bitwarden.com +carLicense: CLCAJB +departmentNumber: 9205 +employeeType: Employee +homePhone: +1 206 757-3224 +initials: A. S. +mobile: +1 206 244-5719 +pager: +1 206 879-5618 +roomNumber: 9831 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Caye Clinton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caye Clinton +sn: Clinton +description: This is Caye Clinton's description +facsimileTelephoneNumber: +1 415 378-2655 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 675-2905 +title: Chief Management Fellow +userPassword: Password1 +uid: ClintonC +givenName: Caye +mail: ClintonC@ab847cb978244923bfe5ad73b2ff99dc.bitwarden.com +carLicense: 9MIKJT +departmentNumber: 5478 +employeeType: Contract +homePhone: +1 415 518-4984 +initials: C. C. +mobile: +1 415 998-2534 +pager: +1 415 104-2536 +roomNumber: 9587 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ernie Waybright,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ernie Waybright +sn: Waybright +description: This is Ernie Waybright's description +facsimileTelephoneNumber: +1 408 158-9920 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 796-2970 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: WaybrigE +givenName: Ernie +mail: WaybrigE@d5b185918176486786ef73f8f666edb2.bitwarden.com +carLicense: AY7VB8 +departmentNumber: 1646 +employeeType: Normal +homePhone: +1 408 488-5210 +initials: E. W. +mobile: +1 408 575-8552 +pager: +1 408 290-7706 +roomNumber: 8775 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Doc Hamlett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doc Hamlett +sn: Hamlett +description: This is Doc Hamlett's description +facsimileTelephoneNumber: +1 818 216-2825 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 882-8030 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: HamlettD +givenName: Doc +mail: HamlettD@941810c9cdbf4e55b754495e8f57a20a.bitwarden.com +carLicense: QQBPRG +departmentNumber: 7838 +employeeType: Contract +homePhone: +1 818 256-9767 +initials: D. H. +mobile: +1 818 460-5119 +pager: +1 818 773-5836 +roomNumber: 8283 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Abdul Peschke,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abdul Peschke +sn: Peschke +description: This is Abdul Peschke's description +facsimileTelephoneNumber: +1 510 726-8503 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 795-4300 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: PeschkeA +givenName: Abdul +mail: PeschkeA@fa78ddbf4a824e749170662a86f94ae1.bitwarden.com +carLicense: 62N37W +departmentNumber: 2628 +employeeType: Normal +homePhone: +1 510 244-7437 +initials: A. P. +mobile: +1 510 102-5225 +pager: +1 510 131-4508 +roomNumber: 8474 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cordi Systest,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cordi Systest +sn: Systest +description: This is Cordi Systest's description +facsimileTelephoneNumber: +1 408 882-9587 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 791-4653 +title: Chief Payroll Director +userPassword: Password1 +uid: SystestC +givenName: Cordi +mail: SystestC@ee3b17b3006441ea89cd65327cca286b.bitwarden.com +carLicense: 8G5HS0 +departmentNumber: 3740 +employeeType: Contract +homePhone: +1 408 945-4240 +initials: C. S. +mobile: +1 408 156-5206 +pager: +1 408 233-2472 +roomNumber: 9286 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jania Mong,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jania Mong +sn: Mong +description: This is Jania Mong's description +facsimileTelephoneNumber: +1 804 860-5320 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 794-7809 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: MongJ +givenName: Jania +mail: MongJ@9f0f27ec9d584e2ca9d6420c7dbe54a3.bitwarden.com +carLicense: XAO77E +departmentNumber: 3101 +employeeType: Normal +homePhone: +1 804 103-6648 +initials: J. M. +mobile: +1 804 640-1218 +pager: +1 804 923-4969 +roomNumber: 9535 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kristi Plato,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristi Plato +sn: Plato +description: This is Kristi Plato's description +facsimileTelephoneNumber: +1 804 185-8041 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 635-5101 +title: Master Product Testing Czar +userPassword: Password1 +uid: PlatoK +givenName: Kristi +mail: PlatoK@defaeef7e5514df8a6f49e7ca33a461b.bitwarden.com +carLicense: RRNHEG +departmentNumber: 9710 +employeeType: Normal +homePhone: +1 804 657-5616 +initials: K. P. +mobile: +1 804 896-1272 +pager: +1 804 122-7871 +roomNumber: 8460 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Simeon Schober,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Simeon Schober +sn: Schober +description: This is Simeon Schober's description +facsimileTelephoneNumber: +1 510 374-1744 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 478-5898 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: SchoberS +givenName: Simeon +mail: SchoberS@edbf1767c38f4bddb743829cf9c30bc0.bitwarden.com +carLicense: DQMC4H +departmentNumber: 2766 +employeeType: Contract +homePhone: +1 510 619-9825 +initials: S. S. +mobile: +1 510 289-9992 +pager: +1 510 387-7192 +roomNumber: 9299 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leyton Artuso,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leyton Artuso +sn: Artuso +description: This is Leyton Artuso's description +facsimileTelephoneNumber: +1 804 329-1249 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 173-4699 +title: Master Payroll Stooge +userPassword: Password1 +uid: ArtusoL +givenName: Leyton +mail: ArtusoL@a16de69a6d644f62a90c207d5ff7152f.bitwarden.com +carLicense: 7SIB1W +departmentNumber: 4647 +employeeType: Contract +homePhone: +1 804 544-8050 +initials: L. A. +mobile: +1 804 566-9838 +pager: +1 804 871-1929 +roomNumber: 9509 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Di Corritore,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Di Corritore +sn: Corritore +description: This is Di Corritore's description +facsimileTelephoneNumber: +1 804 392-3361 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 856-6973 +title: Junior Human Resources Visionary +userPassword: Password1 +uid: CorritoD +givenName: Di +mail: CorritoD@f167cff0138c406287e1a7234664f7ea.bitwarden.com +carLicense: CC1CUO +departmentNumber: 4692 +employeeType: Contract +homePhone: +1 804 306-8241 +initials: D. C. +mobile: +1 804 253-5099 +pager: +1 804 344-9552 +roomNumber: 8097 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Norbert Meubus,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norbert Meubus +sn: Meubus +description: This is Norbert Meubus's description +facsimileTelephoneNumber: +1 213 480-2587 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 967-9681 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: MeubusN +givenName: Norbert +mail: MeubusN@8967a677365042bf9b4c49a667cc17a9.bitwarden.com +carLicense: LIJPOJ +departmentNumber: 9419 +employeeType: Contract +homePhone: +1 213 787-9466 +initials: N. M. +mobile: +1 213 584-9240 +pager: +1 213 713-6515 +roomNumber: 8887 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Allsun Briard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allsun Briard +sn: Briard +description: This is Allsun Briard's description +facsimileTelephoneNumber: +1 408 632-3937 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 108-8660 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: BriardA +givenName: Allsun +mail: BriardA@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com +carLicense: IJ91TT +departmentNumber: 6793 +employeeType: Contract +homePhone: +1 408 871-8492 +initials: A. B. +mobile: +1 408 876-8976 +pager: +1 408 629-2180 +roomNumber: 9846 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rec Desjardins,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rec Desjardins +sn: Desjardins +description: This is Rec Desjardins's description +facsimileTelephoneNumber: +1 213 247-8311 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 875-6748 +title: Chief Administrative Evangelist +userPassword: Password1 +uid: DesjardR +givenName: Rec +mail: DesjardR@bf2777e1bdc741d1becaefb23144f2ff.bitwarden.com +carLicense: 5RIY7W +departmentNumber: 1349 +employeeType: Employee +homePhone: +1 213 827-4169 +initials: R. D. +mobile: +1 213 577-6512 +pager: +1 213 687-1421 +roomNumber: 8570 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Daveen Portelance,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daveen Portelance +sn: Portelance +description: This is Daveen Portelance's description +facsimileTelephoneNumber: +1 213 712-9985 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 507-3987 +title: Associate Administrative Consultant +userPassword: Password1 +uid: PortelaD +givenName: Daveen +mail: PortelaD@51972c3fcd684339942be0fdc3e53b2a.bitwarden.com +carLicense: 6B3GJS +departmentNumber: 8428 +employeeType: Contract +homePhone: +1 213 724-9766 +initials: D. P. +mobile: +1 213 848-7563 +pager: +1 213 236-7497 +roomNumber: 9757 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laureen Ikotin +sn: Ikotin +description: This is Laureen Ikotin's description +facsimileTelephoneNumber: +1 213 270-7975 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 632-2599 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: IkotinL +givenName: Laureen +mail: IkotinL@4467185dad394a2ab964d923a668f7a8.bitwarden.com +carLicense: Y1Y99P +departmentNumber: 3387 +employeeType: Employee +homePhone: +1 213 424-3466 +initials: L. I. +mobile: +1 213 878-9151 +pager: +1 213 533-4161 +roomNumber: 9465 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Christel Lebon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christel Lebon +sn: Lebon +description: This is Christel Lebon's description +facsimileTelephoneNumber: +1 415 159-5373 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 139-9034 +title: Master Product Development Admin +userPassword: Password1 +uid: LebonC +givenName: Christel +mail: LebonC@8959763ade854592b5aa640be7f6b9e1.bitwarden.com +carLicense: N7J8F1 +departmentNumber: 8447 +employeeType: Normal +homePhone: +1 415 742-7738 +initials: C. L. +mobile: +1 415 510-6381 +pager: +1 415 638-5471 +roomNumber: 8879 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aura Kloth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aura Kloth +sn: Kloth +description: This is Aura Kloth's description +facsimileTelephoneNumber: +1 213 247-1458 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 641-2093 +title: Chief Janitorial Manager +userPassword: Password1 +uid: KlothA +givenName: Aura +mail: KlothA@0dddb86650e94c559800b280597f0c4c.bitwarden.com +carLicense: 1E3BKC +departmentNumber: 8030 +employeeType: Employee +homePhone: +1 213 885-3824 +initials: A. K. +mobile: +1 213 707-6316 +pager: +1 213 671-2386 +roomNumber: 9097 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Laser Totino,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laser Totino +sn: Totino +description: This is Laser Totino's description +facsimileTelephoneNumber: +1 408 269-9865 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 244-1350 +title: Junior Product Development Mascot +userPassword: Password1 +uid: TotinoL +givenName: Laser +mail: TotinoL@9190783dca9540caa517cb6cbdd19160.bitwarden.com +carLicense: LEAAOB +departmentNumber: 1135 +employeeType: Normal +homePhone: +1 408 447-2645 +initials: L. T. +mobile: +1 408 480-3564 +pager: +1 408 698-9297 +roomNumber: 8829 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mike Engman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mike Engman +sn: Engman +description: This is Mike Engman's description +facsimileTelephoneNumber: +1 818 701-4182 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 726-8231 +title: Chief Human Resources Czar +userPassword: Password1 +uid: EngmanM +givenName: Mike +mail: EngmanM@096bd16e7b9047ef820ae279d36addd1.bitwarden.com +carLicense: CB7IRK +departmentNumber: 2470 +employeeType: Employee +homePhone: +1 818 367-2992 +initials: M. E. +mobile: +1 818 920-7686 +pager: +1 818 825-5318 +roomNumber: 8698 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marijo Tranter,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marijo Tranter +sn: Tranter +description: This is Marijo Tranter's description +facsimileTelephoneNumber: +1 804 473-3806 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 161-6235 +title: Master Peons Evangelist +userPassword: Password1 +uid: TranterM +givenName: Marijo +mail: TranterM@06df9cb737014f4380a57a8c4a3ae0ca.bitwarden.com +carLicense: W05VF8 +departmentNumber: 7760 +employeeType: Contract +homePhone: +1 804 327-6199 +initials: M. T. +mobile: +1 804 689-7845 +pager: +1 804 201-3044 +roomNumber: 9885 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mainoo Fran,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mainoo Fran +sn: Fran +description: This is Mainoo Fran's description +facsimileTelephoneNumber: +1 206 438-3243 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 206 142-4118 +title: Associate Peons Grunt +userPassword: Password1 +uid: FranM +givenName: Mainoo +mail: FranM@9fee234f1d9045788518ccfa0390a5ac.bitwarden.com +carLicense: 7INL2O +departmentNumber: 6252 +employeeType: Employee +homePhone: +1 206 180-2054 +initials: M. F. +mobile: +1 206 121-6872 +pager: +1 206 482-9859 +roomNumber: 8624 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Janos Coulman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janos Coulman +sn: Coulman +description: This is Janos Coulman's description +facsimileTelephoneNumber: +1 213 695-1746 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 254-5704 +title: Supreme Administrative Architect +userPassword: Password1 +uid: CoulmanJ +givenName: Janos +mail: CoulmanJ@7c4650791d5f415f847cb32968294e66.bitwarden.com +carLicense: P95R67 +departmentNumber: 3430 +employeeType: Contract +homePhone: +1 213 807-7663 +initials: J. C. +mobile: +1 213 798-3506 +pager: +1 213 471-8983 +roomNumber: 8830 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lacey Benfield,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lacey Benfield +sn: Benfield +description: This is Lacey Benfield's description +facsimileTelephoneNumber: +1 408 310-2593 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 290-1351 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: BenfielL +givenName: Lacey +mail: BenfielL@4b7280a9bb884d1e9623c6b7302b3c2a.bitwarden.com +carLicense: 4E0I7L +departmentNumber: 1396 +employeeType: Employee +homePhone: +1 408 888-9954 +initials: L. B. +mobile: +1 408 955-5162 +pager: +1 408 844-7477 +roomNumber: 9470 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Harrie Devenyi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harrie Devenyi +sn: Devenyi +description: This is Harrie Devenyi's description +facsimileTelephoneNumber: +1 510 119-3549 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 367-5530 +title: Master Management Writer +userPassword: Password1 +uid: DevenyiH +givenName: Harrie +mail: DevenyiH@da5a908240674035b4f089697eec14f2.bitwarden.com +carLicense: PGDY42 +departmentNumber: 3319 +employeeType: Normal +homePhone: +1 510 208-7627 +initials: H. D. +mobile: +1 510 872-2969 +pager: +1 510 884-8307 +roomNumber: 9633 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lishe Tatum,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lishe Tatum +sn: Tatum +description: This is Lishe Tatum's description +facsimileTelephoneNumber: +1 510 431-3318 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 640-2815 +title: Associate Product Development Punk +userPassword: Password1 +uid: TatumL +givenName: Lishe +mail: TatumL@2172785b8d9f4adca3b3c11556362a8d.bitwarden.com +carLicense: BV8X8S +departmentNumber: 7671 +employeeType: Employee +homePhone: +1 510 629-3104 +initials: L. T. +mobile: +1 510 575-8598 +pager: +1 510 708-3431 +roomNumber: 9823 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gena Skwarok,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gena Skwarok +sn: Skwarok +description: This is Gena Skwarok's description +facsimileTelephoneNumber: +1 510 278-4719 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 992-1452 +title: Associate Janitorial Manager +userPassword: Password1 +uid: SkwarokG +givenName: Gena +mail: SkwarokG@e442907aab1c4de2a3d2eb6b7fab8ddf.bitwarden.com +carLicense: 0TA9M7 +departmentNumber: 6001 +employeeType: Normal +homePhone: +1 510 163-3471 +initials: G. S. +mobile: +1 510 882-5528 +pager: +1 510 670-9948 +roomNumber: 9950 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ileane Thomaier +sn: Thomaier +description: This is Ileane Thomaier's description +facsimileTelephoneNumber: +1 206 970-2233 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 691-6010 +title: Master Human Resources Director +userPassword: Password1 +uid: ThomaieI +givenName: Ileane +mail: ThomaieI@f0c445142fda405aa9dfac5dc2ebfc44.bitwarden.com +carLicense: I3X7RC +departmentNumber: 6982 +employeeType: Contract +homePhone: +1 206 733-9571 +initials: I. T. +mobile: +1 206 380-4344 +pager: +1 206 424-5365 +roomNumber: 9748 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=PierreAndre Crucefix,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PierreAndre Crucefix +sn: Crucefix +description: This is PierreAndre Crucefix's description +facsimileTelephoneNumber: +1 818 853-9842 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 127-4905 +title: Junior Management Architect +userPassword: Password1 +uid: CrucefiP +givenName: PierreAndre +mail: CrucefiP@6529706823d04eeaa37acaabefd44ca6.bitwarden.com +carLicense: TS6CTG +departmentNumber: 8308 +employeeType: Employee +homePhone: +1 818 584-3515 +initials: P. C. +mobile: +1 818 179-5310 +pager: +1 818 158-6580 +roomNumber: 8468 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ree Smits,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ree Smits +sn: Smits +description: This is Ree Smits's description +facsimileTelephoneNumber: +1 415 905-6258 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 415 162-1080 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: SmitsR +givenName: Ree +mail: SmitsR@052e52ce35f04f70be77c9d468493034.bitwarden.com +carLicense: 6I53QO +departmentNumber: 7854 +employeeType: Normal +homePhone: +1 415 873-8231 +initials: R. S. +mobile: +1 415 643-9992 +pager: +1 415 687-8590 +roomNumber: 8410 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Panch Talbot,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Panch Talbot +sn: Talbot +description: This is Panch Talbot's description +facsimileTelephoneNumber: +1 818 131-4812 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 312-2957 +title: Master Product Development Pinhead +userPassword: Password1 +uid: TalbotP +givenName: Panch +mail: TalbotP@53855167a537436d8e1bbb93f42697aa.bitwarden.com +carLicense: PN8EEA +departmentNumber: 3609 +employeeType: Contract +homePhone: +1 818 906-7051 +initials: P. T. +mobile: +1 818 230-2899 +pager: +1 818 656-2100 +roomNumber: 8220 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Janean Wittich,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janean Wittich +sn: Wittich +description: This is Janean Wittich's description +facsimileTelephoneNumber: +1 818 799-3590 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 818 961-8496 +title: Associate Payroll Admin +userPassword: Password1 +uid: WittichJ +givenName: Janean +mail: WittichJ@f1af10e65a3c4deea04ab7a7f844eadd.bitwarden.com +carLicense: A0OTRP +departmentNumber: 5423 +employeeType: Contract +homePhone: +1 818 114-2894 +initials: J. W. +mobile: +1 818 734-6406 +pager: +1 818 619-2090 +roomNumber: 9893 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Notley Loyola,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Notley Loyola +sn: Loyola +description: This is Notley Loyola's description +facsimileTelephoneNumber: +1 213 618-1798 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 786-8178 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: LoyolaN +givenName: Notley +mail: LoyolaN@cab7f96e07f64f6bbb85fb9b89c17c94.bitwarden.com +carLicense: J56CMK +departmentNumber: 9184 +employeeType: Employee +homePhone: +1 213 959-3041 +initials: N. L. +mobile: +1 213 759-1047 +pager: +1 213 126-5545 +roomNumber: 8878 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shunhui Montuno +sn: Montuno +description: This is Shunhui Montuno's description +facsimileTelephoneNumber: +1 510 576-3373 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 520-8920 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: MontunoS +givenName: Shunhui +mail: MontunoS@bd9027744e31459db23a7217225fbe23.bitwarden.com +carLicense: XW8BIN +departmentNumber: 7791 +employeeType: Employee +homePhone: +1 510 668-1837 +initials: S. M. +mobile: +1 510 243-5057 +pager: +1 510 828-4321 +roomNumber: 9467 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhansukh Jones +sn: Jones +description: This is Dhansukh Jones's description +facsimileTelephoneNumber: +1 510 156-7477 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 657-7796 +title: Master Human Resources Engineer +userPassword: Password1 +uid: JonesD +givenName: Dhansukh +mail: JonesD@4bdb34fb0864411d8dbdc932e9545ec7.bitwarden.com +carLicense: RYD1TK +departmentNumber: 5155 +employeeType: Employee +homePhone: +1 510 521-4353 +initials: D. J. +mobile: +1 510 379-9120 +pager: +1 510 483-5784 +roomNumber: 9482 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Caitlin Grover,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caitlin Grover +sn: Grover +description: This is Caitlin Grover's description +facsimileTelephoneNumber: +1 818 200-9761 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 818 534-1242 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: GroverC +givenName: Caitlin +mail: GroverC@8a2b562f0ebe48deb34ccc278a542072.bitwarden.com +carLicense: 9G99WF +departmentNumber: 6162 +employeeType: Employee +homePhone: +1 818 132-9941 +initials: C. G. +mobile: +1 818 788-7086 +pager: +1 818 154-1196 +roomNumber: 9191 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Icylyn MacLeod +sn: MacLeod +description: This is Icylyn MacLeod's description +facsimileTelephoneNumber: +1 818 607-7793 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 582-6698 +title: Chief Human Resources Vice President +userPassword: Password1 +uid: MacLeodI +givenName: Icylyn +mail: MacLeodI@a768ee42cf36461cb3b1a0b6949b0e29.bitwarden.com +carLicense: GIW29G +departmentNumber: 2140 +employeeType: Normal +homePhone: +1 818 499-3581 +initials: I. M. +mobile: +1 818 645-8846 +pager: +1 818 341-5817 +roomNumber: 8141 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cissy Paris,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cissy Paris +sn: Paris +description: This is Cissy Paris's description +facsimileTelephoneNumber: +1 408 659-7016 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 508-2996 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: ParisC +givenName: Cissy +mail: ParisC@f648ab5b740d44ca8b0dc821ba7c94a0.bitwarden.com +carLicense: 9YYFHP +departmentNumber: 8806 +employeeType: Employee +homePhone: +1 408 778-5863 +initials: C. P. +mobile: +1 408 850-2997 +pager: +1 408 923-5442 +roomNumber: 9028 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kedah Hedman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kedah Hedman +sn: Hedman +description: This is Kedah Hedman's description +facsimileTelephoneNumber: +1 206 281-7870 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 206 606-9243 +title: Master Janitorial Technician +userPassword: Password1 +uid: HedmanK +givenName: Kedah +mail: HedmanK@ed2fd2ca43bb4b14bff25d5cd87d9abc.bitwarden.com +carLicense: V09268 +departmentNumber: 8969 +employeeType: Contract +homePhone: +1 206 318-3082 +initials: K. H. +mobile: +1 206 165-9635 +pager: +1 206 850-7085 +roomNumber: 8236 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Susy Simard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susy Simard +sn: Simard +description: This is Susy Simard's description +facsimileTelephoneNumber: +1 818 140-2655 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 543-1997 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: SimardS +givenName: Susy +mail: SimardS@5f40d634eafb4f78acd0b5b4ff05298b.bitwarden.com +carLicense: 6RXDXH +departmentNumber: 6291 +employeeType: Employee +homePhone: +1 818 891-3544 +initials: S. S. +mobile: +1 818 671-4124 +pager: +1 818 181-3467 +roomNumber: 9407 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Enriqueta Maynard +sn: Maynard +description: This is Enriqueta Maynard's description +facsimileTelephoneNumber: +1 408 659-9728 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 542-3393 +title: Associate Administrative Sales Rep +userPassword: Password1 +uid: MaynardE +givenName: Enriqueta +mail: MaynardE@9b70e886a18d422fa3404374b5a9613c.bitwarden.com +carLicense: QLTMWH +departmentNumber: 5124 +employeeType: Normal +homePhone: +1 408 923-9383 +initials: E. M. +mobile: +1 408 160-8406 +pager: +1 408 428-3952 +roomNumber: 8560 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nahum Mofina,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nahum Mofina +sn: Mofina +description: This is Nahum Mofina's description +facsimileTelephoneNumber: +1 213 364-6818 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 213 668-3636 +title: Associate Payroll Writer +userPassword: Password1 +uid: MofinaN +givenName: Nahum +mail: MofinaN@0aee22428274445fb9c2a16b33d788f7.bitwarden.com +carLicense: 7IFRO6 +departmentNumber: 2623 +employeeType: Contract +homePhone: +1 213 139-5411 +initials: N. M. +mobile: +1 213 126-6425 +pager: +1 213 186-9799 +roomNumber: 9832 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Patti Simcoe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patti Simcoe +sn: Simcoe +description: This is Patti Simcoe's description +facsimileTelephoneNumber: +1 510 903-2937 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 289-7706 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: SimcoeP +givenName: Patti +mail: SimcoeP@bcd6417c39254a37b7a0a0d395d66c96.bitwarden.com +carLicense: A1VGXG +departmentNumber: 3159 +employeeType: Normal +homePhone: +1 510 754-4100 +initials: P. S. +mobile: +1 510 768-9823 +pager: +1 510 202-6636 +roomNumber: 8535 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Clarisse McArthur,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarisse McArthur +sn: McArthur +description: This is Clarisse McArthur's description +facsimileTelephoneNumber: +1 818 924-9015 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 588-7341 +title: Associate Administrative Dictator +userPassword: Password1 +uid: McArthuC +givenName: Clarisse +mail: McArthuC@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com +carLicense: G3HUIH +departmentNumber: 1991 +employeeType: Contract +homePhone: +1 818 125-7866 +initials: C. M. +mobile: +1 818 989-1141 +pager: +1 818 963-4692 +roomNumber: 9113 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ZehirCharlie Kastelberg +sn: Kastelberg +description: This is ZehirCharlie Kastelberg's description +facsimileTelephoneNumber: +1 415 343-2881 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 774-8275 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: KastelbZ +givenName: ZehirCharlie +mail: KastelbZ@264cb0b5ded347678dd5fba66a4be57f.bitwarden.com +carLicense: E88GKG +departmentNumber: 1692 +employeeType: Normal +homePhone: +1 415 928-6475 +initials: Z. K. +mobile: +1 415 403-6246 +pager: +1 415 260-5516 +roomNumber: 8525 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dwight Naujoks,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dwight Naujoks +sn: Naujoks +description: This is Dwight Naujoks's description +facsimileTelephoneNumber: +1 804 125-6547 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 737-5554 +title: Master Peons Dictator +userPassword: Password1 +uid: NaujoksD +givenName: Dwight +mail: NaujoksD@af7402077fba4129bbcd03f9bf068e4f.bitwarden.com +carLicense: EF8VW0 +departmentNumber: 2834 +employeeType: Normal +homePhone: +1 804 260-8385 +initials: D. N. +mobile: +1 804 744-2300 +pager: +1 804 658-9502 +roomNumber: 8372 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Melodee Buzzell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melodee Buzzell +sn: Buzzell +description: This is Melodee Buzzell's description +facsimileTelephoneNumber: +1 213 161-6786 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 900-6269 +title: Associate Payroll Dictator +userPassword: Password1 +uid: BuzzellM +givenName: Melodee +mail: BuzzellM@eaa1c30d2e624c8ba36eae1d34cb0c00.bitwarden.com +carLicense: 516OTO +departmentNumber: 1011 +employeeType: Employee +homePhone: +1 213 252-5520 +initials: M. B. +mobile: +1 213 395-6377 +pager: +1 213 505-5417 +roomNumber: 8791 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Schouwen Chahal,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Schouwen Chahal +sn: Chahal +description: This is Schouwen Chahal's description +facsimileTelephoneNumber: +1 415 846-9170 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 224-8055 +title: Associate Product Development Developer +userPassword: Password1 +uid: ChahalS +givenName: Schouwen +mail: ChahalS@3546d29dd7834be9b84722d152b319e0.bitwarden.com +carLicense: M3TBM7 +departmentNumber: 3457 +employeeType: Employee +homePhone: +1 415 679-3955 +initials: S. C. +mobile: +1 415 319-8232 +pager: +1 415 811-4749 +roomNumber: 9310 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kanya Reuben,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanya Reuben +sn: Reuben +description: This is Kanya Reuben's description +facsimileTelephoneNumber: +1 415 615-5096 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 355-4657 +title: Chief Administrative Manager +userPassword: Password1 +uid: ReubenK +givenName: Kanya +mail: ReubenK@e5bf2a74f7d948bb97855f44d83972fe.bitwarden.com +carLicense: VP0RHP +departmentNumber: 9540 +employeeType: Normal +homePhone: +1 415 331-4076 +initials: K. R. +mobile: +1 415 153-9538 +pager: +1 415 531-4179 +roomNumber: 8897 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marji Corvo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marji Corvo +sn: Corvo +description: This is Marji Corvo's description +facsimileTelephoneNumber: +1 804 548-5857 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 844-3268 +title: Associate Payroll Admin +userPassword: Password1 +uid: CorvoM +givenName: Marji +mail: CorvoM@eb78b63b75ba4f27a8837a49801a5d87.bitwarden.com +carLicense: IUKW9B +departmentNumber: 7035 +employeeType: Employee +homePhone: +1 804 879-4979 +initials: M. C. +mobile: +1 804 903-4715 +pager: +1 804 956-7714 +roomNumber: 8811 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Annarbor Zitko,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annarbor Zitko +sn: Zitko +description: This is Annarbor Zitko's description +facsimileTelephoneNumber: +1 408 604-5625 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 989-6030 +title: Junior Management Artist +userPassword: Password1 +uid: ZitkoA +givenName: Annarbor +mail: ZitkoA@c21c5e2df59f42bd80274a7d5eb23246.bitwarden.com +carLicense: XIB7L6 +departmentNumber: 6605 +employeeType: Normal +homePhone: +1 408 105-5552 +initials: A. Z. +mobile: +1 408 168-1849 +pager: +1 408 503-1742 +roomNumber: 8101 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Genovera Thibodeaux,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genovera Thibodeaux +sn: Thibodeaux +description: This is Genovera Thibodeaux's description +facsimileTelephoneNumber: +1 415 145-2946 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 707-4737 +title: Master Management Writer +userPassword: Password1 +uid: ThibodeG +givenName: Genovera +mail: ThibodeG@6fcf3faf71c9481bb038b9b9074ab98d.bitwarden.com +carLicense: I2BTHJ +departmentNumber: 2365 +employeeType: Employee +homePhone: +1 415 539-4528 +initials: G. T. +mobile: +1 415 251-9642 +pager: +1 415 762-7572 +roomNumber: 9702 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Aleen Gure,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aleen Gure +sn: Gure +description: This is Aleen Gure's description +facsimileTelephoneNumber: +1 818 771-5304 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 818 754-6628 +title: Supreme Peons Writer +userPassword: Password1 +uid: GureA +givenName: Aleen +mail: GureA@918d2d4077734b5f89b3311e0d63e21b.bitwarden.com +carLicense: 9BVUCA +departmentNumber: 5114 +employeeType: Employee +homePhone: +1 818 993-5816 +initials: A. G. +mobile: +1 818 845-3126 +pager: +1 818 619-6656 +roomNumber: 9748 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Trever Jowett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trever Jowett +sn: Jowett +description: This is Trever Jowett's description +facsimileTelephoneNumber: +1 206 716-4526 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 916-9773 +title: Associate Payroll Punk +userPassword: Password1 +uid: JowettT +givenName: Trever +mail: JowettT@439323a8d95149fea66efa1b90531fea.bitwarden.com +carLicense: LJB3UN +departmentNumber: 9812 +employeeType: Employee +homePhone: +1 206 853-6134 +initials: T. J. +mobile: +1 206 678-6918 +pager: +1 206 867-9925 +roomNumber: 8146 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Concettina Cegelski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Concettina Cegelski +sn: Cegelski +description: This is Concettina Cegelski's description +facsimileTelephoneNumber: +1 804 407-5480 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 195-1990 +title: Master Peons Vice President +userPassword: Password1 +uid: CegelskC +givenName: Concettina +mail: CegelskC@4855de695c764b0c94d33f9516982d93.bitwarden.com +carLicense: 2MRPMW +departmentNumber: 4117 +employeeType: Employee +homePhone: +1 804 413-7831 +initials: C. C. +mobile: +1 804 591-1774 +pager: +1 804 660-6088 +roomNumber: 9831 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eleen Lew,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eleen Lew +sn: Lew +description: This is Eleen Lew's description +facsimileTelephoneNumber: +1 804 145-6612 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 105-6709 +title: Junior Management Sales Rep +userPassword: Password1 +uid: LewE +givenName: Eleen +mail: LewE@f67253dadd384838b6a62668b81ee96d.bitwarden.com +carLicense: MDY89F +departmentNumber: 2937 +employeeType: Employee +homePhone: +1 804 550-8721 +initials: E. L. +mobile: +1 804 142-7561 +pager: +1 804 187-2186 +roomNumber: 8710 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Minna Reddington,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minna Reddington +sn: Reddington +description: This is Minna Reddington's description +facsimileTelephoneNumber: +1 408 511-7104 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 408 571-4969 +title: Supreme Product Development Admin +userPassword: Password1 +uid: ReddingM +givenName: Minna +mail: ReddingM@f962e28831974b93a906a03bfb585f1d.bitwarden.com +carLicense: O1AE3P +departmentNumber: 1492 +employeeType: Normal +homePhone: +1 408 642-3452 +initials: M. R. +mobile: +1 408 258-5491 +pager: +1 408 933-6481 +roomNumber: 9172 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Stateson Benning,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stateson Benning +sn: Benning +description: This is Stateson Benning's description +facsimileTelephoneNumber: +1 818 489-5771 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 616-5455 +title: Junior Administrative Writer +userPassword: Password1 +uid: BenningS +givenName: Stateson +mail: BenningS@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com +carLicense: SWED2U +departmentNumber: 7320 +employeeType: Normal +homePhone: +1 818 177-2030 +initials: S. B. +mobile: +1 818 996-5623 +pager: +1 818 573-5311 +roomNumber: 9280 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emil Pavlic,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emil Pavlic +sn: Pavlic +description: This is Emil Pavlic's description +facsimileTelephoneNumber: +1 213 825-8823 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 461-7339 +title: Associate Product Development Stooge +userPassword: Password1 +uid: PavlicE +givenName: Emil +mail: PavlicE@d5f1e05d95aa48aa94789d8e594894db.bitwarden.com +carLicense: E66Q5U +departmentNumber: 8440 +employeeType: Contract +homePhone: +1 213 132-8907 +initials: E. P. +mobile: +1 213 987-7089 +pager: +1 213 420-3084 +roomNumber: 9519 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kassia Newnam,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kassia Newnam +sn: Newnam +description: This is Kassia Newnam's description +facsimileTelephoneNumber: +1 206 691-7359 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 230-5322 +title: Junior Payroll Vice President +userPassword: Password1 +uid: NewnamK +givenName: Kassia +mail: NewnamK@775db391b36843f3b6967be5112cd7c8.bitwarden.com +carLicense: NO4SPL +departmentNumber: 5940 +employeeType: Employee +homePhone: +1 206 143-2896 +initials: K. N. +mobile: +1 206 649-1595 +pager: +1 206 495-8784 +roomNumber: 8109 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Clarke Angeli,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarke Angeli +sn: Angeli +description: This is Clarke Angeli's description +facsimileTelephoneNumber: +1 804 856-3821 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 412-9255 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: AngeliC +givenName: Clarke +mail: AngeliC@d5e1ce2fb74a43bfad3a9a3884b1f907.bitwarden.com +carLicense: FGJBAX +departmentNumber: 1945 +employeeType: Normal +homePhone: +1 804 529-7762 +initials: C. A. +mobile: +1 804 398-4878 +pager: +1 804 498-2921 +roomNumber: 8019 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Flor Rabon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flor Rabon +sn: Rabon +description: This is Flor Rabon's description +facsimileTelephoneNumber: +1 818 226-8245 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 717-9050 +title: Supreme Administrative Pinhead +userPassword: Password1 +uid: RabonF +givenName: Flor +mail: RabonF@a8d52d2b633f41a2be5b6bf6015e6a0d.bitwarden.com +carLicense: FK13UN +departmentNumber: 4347 +employeeType: Employee +homePhone: +1 818 713-3573 +initials: F. R. +mobile: +1 818 222-7879 +pager: +1 818 735-1601 +roomNumber: 9059 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Damian Berning,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Damian Berning +sn: Berning +description: This is Damian Berning's description +facsimileTelephoneNumber: +1 206 682-6040 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 372-8904 +title: Junior Product Development Mascot +userPassword: Password1 +uid: BerningD +givenName: Damian +mail: BerningD@02ff8597c50443248a49f6bef6b843ff.bitwarden.com +carLicense: E3A861 +departmentNumber: 2986 +employeeType: Contract +homePhone: +1 206 818-1832 +initials: D. B. +mobile: +1 206 183-5949 +pager: +1 206 332-2358 +roomNumber: 9080 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cristal Lum,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristal Lum +sn: Lum +description: This is Cristal Lum's description +facsimileTelephoneNumber: +1 206 502-4243 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 129-9705 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: LumC +givenName: Cristal +mail: LumC@8883700de05445f081429f80d76247cb.bitwarden.com +carLicense: SVSNS2 +departmentNumber: 6075 +employeeType: Contract +homePhone: +1 206 285-9905 +initials: C. L. +mobile: +1 206 360-4975 +pager: +1 206 511-8344 +roomNumber: 9696 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Palme Lystuik,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Palme Lystuik +sn: Lystuik +description: This is Palme Lystuik's description +facsimileTelephoneNumber: +1 510 750-5245 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 796-1248 +title: Chief Human Resources Stooge +userPassword: Password1 +uid: LystuikP +givenName: Palme +mail: LystuikP@5ee91f5143cf4d9ead291d13c9d53edc.bitwarden.com +carLicense: GLTG31 +departmentNumber: 9414 +employeeType: Employee +homePhone: +1 510 531-4838 +initials: P. L. +mobile: +1 510 326-6684 +pager: +1 510 541-2668 +roomNumber: 8734 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shina Tremaine,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shina Tremaine +sn: Tremaine +description: This is Shina Tremaine's description +facsimileTelephoneNumber: +1 818 657-2077 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 818 298-5326 +title: Master Product Testing Vice President +userPassword: Password1 +uid: TremainS +givenName: Shina +mail: TremainS@8dfc96b3d0e547578cb502ea67822dc4.bitwarden.com +carLicense: U5YSOD +departmentNumber: 1272 +employeeType: Employee +homePhone: +1 818 984-4038 +initials: S. T. +mobile: +1 818 458-7494 +pager: +1 818 593-7157 +roomNumber: 9609 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Muire Cencier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Muire Cencier +sn: Cencier +description: This is Muire Cencier's description +facsimileTelephoneNumber: +1 415 197-7271 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 415 509-1815 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: CencierM +givenName: Muire +mail: CencierM@8b494156718243beaccc49c77764ab7f.bitwarden.com +carLicense: J0XPMQ +departmentNumber: 7953 +employeeType: Normal +homePhone: +1 415 523-8418 +initials: M. C. +mobile: +1 415 314-3200 +pager: +1 415 576-3790 +roomNumber: 9055 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Brinn Weinbender,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brinn Weinbender +sn: Weinbender +description: This is Brinn Weinbender's description +facsimileTelephoneNumber: +1 415 419-2443 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 214-9673 +title: Supreme Product Development Punk +userPassword: Password1 +uid: WeinbenB +givenName: Brinn +mail: WeinbenB@7770d32208f64a63bf44fae15e8c6935.bitwarden.com +carLicense: ETQC4K +departmentNumber: 5490 +employeeType: Contract +homePhone: +1 415 539-5847 +initials: B. W. +mobile: +1 415 136-4665 +pager: +1 415 808-4171 +roomNumber: 8326 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jasmin Bopp +sn: Bopp +description: This is Jasmin Bopp's description +facsimileTelephoneNumber: +1 818 933-9589 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 307-3853 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: BoppJ +givenName: Jasmin +mail: BoppJ@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com +carLicense: NFKJON +departmentNumber: 6383 +employeeType: Normal +homePhone: +1 818 219-3108 +initials: J. B. +mobile: +1 818 569-3138 +pager: +1 818 379-6612 +roomNumber: 8126 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phyllis Medlock +sn: Medlock +description: This is Phyllis Medlock's description +facsimileTelephoneNumber: +1 213 690-5638 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 418-9968 +title: Supreme Janitorial Artist +userPassword: Password1 +uid: MedlockP +givenName: Phyllis +mail: MedlockP@17cb5e3bf33c46c8bb068c8715e4918e.bitwarden.com +carLicense: 2CY2VG +departmentNumber: 9934 +employeeType: Employee +homePhone: +1 213 586-5454 +initials: P. M. +mobile: +1 213 644-9114 +pager: +1 213 535-3196 +roomNumber: 9533 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Candee Gozen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candee Gozen +sn: Gozen +description: This is Candee Gozen's description +facsimileTelephoneNumber: +1 510 648-5391 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 449-1903 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: GozenC +givenName: Candee +mail: GozenC@43c4575cb998431b9ef40f1885b13a40.bitwarden.com +carLicense: U63S6U +departmentNumber: 5455 +employeeType: Normal +homePhone: +1 510 126-1734 +initials: C. G. +mobile: +1 510 776-5791 +pager: +1 510 964-8768 +roomNumber: 8322 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Julienne Spencer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julienne Spencer +sn: Spencer +description: This is Julienne Spencer's description +facsimileTelephoneNumber: +1 415 302-6390 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 832-7333 +title: Associate Human Resources Assistant +userPassword: Password1 +uid: SpencerJ +givenName: Julienne +mail: SpencerJ@e116936732ce45789365cbd54acef482.bitwarden.com +carLicense: O31C8Y +departmentNumber: 7720 +employeeType: Normal +homePhone: +1 415 634-7385 +initials: J. S. +mobile: +1 415 764-6712 +pager: +1 415 438-8211 +roomNumber: 8874 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Benny Kimm,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benny Kimm +sn: Kimm +description: This is Benny Kimm's description +facsimileTelephoneNumber: +1 510 498-8236 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 425-6783 +title: Master Payroll Fellow +userPassword: Password1 +uid: KimmB +givenName: Benny +mail: KimmB@a90852e05a704b189e86f5be23a6fead.bitwarden.com +carLicense: 0AK3EN +departmentNumber: 2506 +employeeType: Employee +homePhone: +1 510 977-9610 +initials: B. K. +mobile: +1 510 353-4677 +pager: +1 510 228-6286 +roomNumber: 9059 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bella DiGiambattista +sn: DiGiambattista +description: This is Bella DiGiambattista's description +facsimileTelephoneNumber: +1 804 823-3397 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 596-4251 +title: Associate Payroll Sales Rep +userPassword: Password1 +uid: DiGiambB +givenName: Bella +mail: DiGiambB@1719e95244a44b8596cb64a3732d8148.bitwarden.com +carLicense: 9S0IF9 +departmentNumber: 5672 +employeeType: Contract +homePhone: +1 804 204-6771 +initials: B. D. +mobile: +1 804 939-5906 +pager: +1 804 846-8855 +roomNumber: 9012 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kyle Pape,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kyle Pape +sn: Pape +description: This is Kyle Pape's description +facsimileTelephoneNumber: +1 206 362-5296 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 241-4416 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: PapeK +givenName: Kyle +mail: PapeK@cfb3c19130a34bd8a1175d4c3cbe2bde.bitwarden.com +carLicense: TWFN1D +departmentNumber: 9199 +employeeType: Employee +homePhone: +1 206 206-6542 +initials: K. P. +mobile: +1 206 572-3984 +pager: +1 206 173-3332 +roomNumber: 9065 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hetti Maciejewski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hetti Maciejewski +sn: Maciejewski +description: This is Hetti Maciejewski's description +facsimileTelephoneNumber: +1 408 162-1154 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 768-1443 +title: Junior Management Pinhead +userPassword: Password1 +uid: MaciejeH +givenName: Hetti +mail: MaciejeH@2f2c7c75a80e4912bb53354bb0764e32.bitwarden.com +carLicense: K3WOWE +departmentNumber: 8916 +employeeType: Normal +homePhone: +1 408 470-3299 +initials: H. M. +mobile: +1 408 305-7996 +pager: +1 408 555-4338 +roomNumber: 8394 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Godiva Arunachalam +sn: Arunachalam +description: This is Godiva Arunachalam's description +facsimileTelephoneNumber: +1 206 458-1161 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 206 426-8900 +title: Chief Product Testing Czar +userPassword: Password1 +uid: ArunachG +givenName: Godiva +mail: ArunachG@4f1058076962434d992f12cefe18bd59.bitwarden.com +carLicense: VJYCNM +departmentNumber: 5288 +employeeType: Normal +homePhone: +1 206 274-3165 +initials: G. A. +mobile: +1 206 106-3535 +pager: +1 206 854-4642 +roomNumber: 9701 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Peder Bevington,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peder Bevington +sn: Bevington +description: This is Peder Bevington's description +facsimileTelephoneNumber: +1 206 589-4336 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 103-6428 +title: Junior Product Testing Artist +userPassword: Password1 +uid: BevingtP +givenName: Peder +mail: BevingtP@349cbf4e75d847c1a3a3932212036d74.bitwarden.com +carLicense: 42X4BD +departmentNumber: 7917 +employeeType: Employee +homePhone: +1 206 867-6783 +initials: P. B. +mobile: +1 206 769-3393 +pager: +1 206 369-6865 +roomNumber: 9203 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Royce Kerr,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Royce Kerr +sn: Kerr +description: This is Royce Kerr's description +facsimileTelephoneNumber: +1 213 139-9155 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 664-8100 +title: Supreme Payroll Admin +userPassword: Password1 +uid: KerrR +givenName: Royce +mail: KerrR@6dfbae5841184eee86f16ac4a1176697.bitwarden.com +carLicense: 1IX9ME +departmentNumber: 3800 +employeeType: Normal +homePhone: +1 213 556-7256 +initials: R. K. +mobile: +1 213 922-2257 +pager: +1 213 218-7732 +roomNumber: 9349 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Madelon Armitage,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelon Armitage +sn: Armitage +description: This is Madelon Armitage's description +facsimileTelephoneNumber: +1 415 654-9654 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 618-8156 +title: Master Janitorial Engineer +userPassword: Password1 +uid: ArmitagM +givenName: Madelon +mail: ArmitagM@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com +carLicense: BHBJ9R +departmentNumber: 3541 +employeeType: Contract +homePhone: +1 415 547-6985 +initials: M. A. +mobile: +1 415 868-7378 +pager: +1 415 943-4108 +roomNumber: 9984 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sohayla Resnick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sohayla Resnick +sn: Resnick +description: This is Sohayla Resnick's description +facsimileTelephoneNumber: +1 510 933-4416 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 288-6462 +title: Supreme Payroll President +userPassword: Password1 +uid: ResnickS +givenName: Sohayla +mail: ResnickS@8396829dbd6f4494811aec04c011380c.bitwarden.com +carLicense: 27VN2E +departmentNumber: 1471 +employeeType: Contract +homePhone: +1 510 462-4489 +initials: S. R. +mobile: +1 510 252-5210 +pager: +1 510 944-9972 +roomNumber: 8794 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaela TraceyMcCabe +sn: TraceyMcCabe +description: This is Kaela TraceyMcCabe's description +facsimileTelephoneNumber: +1 213 122-5503 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 306-6994 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: TraceyMK +givenName: Kaela +mail: TraceyMK@a2257412df964db8b0b017a63b40027d.bitwarden.com +carLicense: D8U553 +departmentNumber: 3654 +employeeType: Normal +homePhone: +1 213 167-5904 +initials: K. T. +mobile: +1 213 507-8226 +pager: +1 213 663-8270 +roomNumber: 8533 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Teri Fabry,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teri Fabry +sn: Fabry +description: This is Teri Fabry's description +facsimileTelephoneNumber: +1 818 313-8043 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 417-9054 +title: Master Administrative Architect +userPassword: Password1 +uid: FabryT +givenName: Teri +mail: FabryT@cec3211a38a84845bf22d5434e7f7858.bitwarden.com +carLicense: FQOYG6 +departmentNumber: 9046 +employeeType: Contract +homePhone: +1 818 675-1411 +initials: T. F. +mobile: +1 818 911-3439 +pager: +1 818 649-7389 +roomNumber: 9813 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Deina Martincello,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deina Martincello +sn: Martincello +description: This is Deina Martincello's description +facsimileTelephoneNumber: +1 213 564-5480 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 129-4785 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: MartincD +givenName: Deina +mail: MartincD@1cec494b2c6b4b8a8fb44bcdcbcfca34.bitwarden.com +carLicense: MCLPX5 +departmentNumber: 1620 +employeeType: Contract +homePhone: +1 213 938-1965 +initials: D. M. +mobile: +1 213 504-9731 +pager: +1 213 375-7785 +roomNumber: 8556 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aleen Ayre,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aleen Ayre +sn: Ayre +description: This is Aleen Ayre's description +facsimileTelephoneNumber: +1 510 502-7428 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 828-4624 +title: Chief Human Resources Consultant +userPassword: Password1 +uid: AyreA +givenName: Aleen +mail: AyreA@efa9f7679ea94344a42e6df58b28f7ca.bitwarden.com +carLicense: TTRH1X +departmentNumber: 6032 +employeeType: Contract +homePhone: +1 510 138-1102 +initials: A. A. +mobile: +1 510 373-4874 +pager: +1 510 672-8383 +roomNumber: 8640 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roseline Risher,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roseline Risher +sn: Risher +description: This is Roseline Risher's description +facsimileTelephoneNumber: +1 804 246-5515 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 473-2968 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: RisherR +givenName: Roseline +mail: RisherR@1b5d8352bac64038b1e8fc921d81a384.bitwarden.com +carLicense: P4JE2I +departmentNumber: 8712 +employeeType: Employee +homePhone: +1 804 811-1850 +initials: R. R. +mobile: +1 804 279-2031 +pager: +1 804 280-3305 +roomNumber: 8073 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Reuben Lychak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reuben Lychak +sn: Lychak +description: This is Reuben Lychak's description +facsimileTelephoneNumber: +1 415 805-3853 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 243-2913 +title: Junior Janitorial Punk +userPassword: Password1 +uid: LychakR +givenName: Reuben +mail: LychakR@98b778e04cdc413792a21b3367fbde45.bitwarden.com +carLicense: 1JA1GM +departmentNumber: 1586 +employeeType: Normal +homePhone: +1 415 194-6262 +initials: R. L. +mobile: +1 415 692-3779 +pager: +1 415 863-1011 +roomNumber: 9904 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kelsy Rozier,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelsy Rozier +sn: Rozier +description: This is Kelsy Rozier's description +facsimileTelephoneNumber: +1 415 520-9011 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 625-3937 +title: Junior Administrative Engineer +userPassword: Password1 +uid: RozierK +givenName: Kelsy +mail: RozierK@d26e69c4dd7641e8943c5c22db2243f2.bitwarden.com +carLicense: JC8GCY +departmentNumber: 8648 +employeeType: Employee +homePhone: +1 415 259-6505 +initials: K. R. +mobile: +1 415 860-2085 +pager: +1 415 721-5131 +roomNumber: 8933 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Herronald Walta,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herronald Walta +sn: Walta +description: This is Herronald Walta's description +facsimileTelephoneNumber: +1 510 528-4151 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 639-6591 +title: Supreme Management Sales Rep +userPassword: Password1 +uid: WaltaH +givenName: Herronald +mail: WaltaH@8df14385ae864b439973adc9259c1607.bitwarden.com +carLicense: 4QFGDB +departmentNumber: 5318 +employeeType: Normal +homePhone: +1 510 347-8345 +initials: H. W. +mobile: +1 510 970-6690 +pager: +1 510 514-5705 +roomNumber: 8233 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Oralee Shiflett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oralee Shiflett +sn: Shiflett +description: This is Oralee Shiflett's description +facsimileTelephoneNumber: +1 510 225-9890 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 998-6091 +title: Associate Payroll Grunt +userPassword: Password1 +uid: ShifletO +givenName: Oralee +mail: ShifletO@9cb309c14f394c15bfd37b4264f18ad3.bitwarden.com +carLicense: QTIEUL +departmentNumber: 9107 +employeeType: Normal +homePhone: +1 510 213-7463 +initials: O. S. +mobile: +1 510 836-7071 +pager: +1 510 409-3838 +roomNumber: 9026 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maurice Coe,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurice Coe +sn: Coe +description: This is Maurice Coe's description +facsimileTelephoneNumber: +1 206 128-9102 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 331-3849 +title: Master Administrative Warrior +userPassword: Password1 +uid: CoeM +givenName: Maurice +mail: CoeM@df4398eeee504d4688e79f5fade4e06a.bitwarden.com +carLicense: K5IDAH +departmentNumber: 5045 +employeeType: Contract +homePhone: +1 206 886-3455 +initials: M. C. +mobile: +1 206 818-2715 +pager: +1 206 714-8065 +roomNumber: 8621 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaughan Lesmerises +sn: Lesmerises +description: This is Shaughan Lesmerises's description +facsimileTelephoneNumber: +1 408 268-9316 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 110-4242 +title: Chief Human Resources Stooge +userPassword: Password1 +uid: LesmeriS +givenName: Shaughan +mail: LesmeriS@71334519f85d4ff38bd6a6b8f4192c09.bitwarden.com +carLicense: 6YDLYF +departmentNumber: 5168 +employeeType: Contract +homePhone: +1 408 679-2952 +initials: S. L. +mobile: +1 408 881-5960 +pager: +1 408 170-1851 +roomNumber: 8041 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Greg Candelario,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greg Candelario +sn: Candelario +description: This is Greg Candelario's description +facsimileTelephoneNumber: +1 818 430-9746 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 457-9875 +title: Associate Management Architect +userPassword: Password1 +uid: CandelaG +givenName: Greg +mail: CandelaG@0ad12ce5726b4f478ea6768be55c341f.bitwarden.com +carLicense: 0B243Y +departmentNumber: 7990 +employeeType: Employee +homePhone: +1 818 974-7779 +initials: G. C. +mobile: +1 818 480-2676 +pager: +1 818 562-2968 +roomNumber: 8714 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janeta Gerynowicz +sn: Gerynowicz +description: This is Janeta Gerynowicz's description +facsimileTelephoneNumber: +1 510 232-4117 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 126-2074 +title: Associate Product Testing Grunt +userPassword: Password1 +uid: GerynowJ +givenName: Janeta +mail: GerynowJ@f913ff5eacd8463cb806d02d62200c74.bitwarden.com +carLicense: O8JNAI +departmentNumber: 1728 +employeeType: Contract +homePhone: +1 510 857-3044 +initials: J. G. +mobile: +1 510 914-9806 +pager: +1 510 480-9858 +roomNumber: 9703 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Genny Horemans,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genny Horemans +sn: Horemans +description: This is Genny Horemans's description +facsimileTelephoneNumber: +1 206 193-9989 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 261-8755 +title: Master Human Resources Admin +userPassword: Password1 +uid: HoremanG +givenName: Genny +mail: HoremanG@5dc39fbc350c43fe84c932142400265c.bitwarden.com +carLicense: QWSBIR +departmentNumber: 4142 +employeeType: Contract +homePhone: +1 206 763-7809 +initials: G. H. +mobile: +1 206 581-2447 +pager: +1 206 387-9519 +roomNumber: 8996 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Willeke Gagnon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willeke Gagnon +sn: Gagnon +description: This is Willeke Gagnon's description +facsimileTelephoneNumber: +1 510 575-3783 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 653-8373 +title: Chief Management Warrior +userPassword: Password1 +uid: GagnonW +givenName: Willeke +mail: GagnonW@a40bbab821574ad58a604582fafa7e52.bitwarden.com +carLicense: 8TCPEC +departmentNumber: 3592 +employeeType: Normal +homePhone: +1 510 471-3611 +initials: W. G. +mobile: +1 510 749-5003 +pager: +1 510 171-3956 +roomNumber: 9634 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsy Elhamahmy +sn: Elhamahmy +description: This is Chelsy Elhamahmy's description +facsimileTelephoneNumber: +1 415 204-9946 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 415 450-7516 +title: Junior Product Testing Writer +userPassword: Password1 +uid: ElhamahC +givenName: Chelsy +mail: ElhamahC@19261efb99bb4b2ba698af6633bee481.bitwarden.com +carLicense: 3AWIGQ +departmentNumber: 4652 +employeeType: Employee +homePhone: +1 415 720-1913 +initials: C. E. +mobile: +1 415 423-6728 +pager: +1 415 748-5714 +roomNumber: 8817 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nijen Testa,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nijen Testa +sn: Testa +description: This is Nijen Testa's description +facsimileTelephoneNumber: +1 510 944-5124 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 359-2071 +title: Junior Management Architect +userPassword: Password1 +uid: TestaN +givenName: Nijen +mail: TestaN@b704bf76672f4edf96dc7a81797bfb18.bitwarden.com +carLicense: EP3Y83 +departmentNumber: 3473 +employeeType: Normal +homePhone: +1 510 514-8794 +initials: N. T. +mobile: +1 510 258-6266 +pager: +1 510 304-8851 +roomNumber: 8373 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Binni Vasile,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binni Vasile +sn: Vasile +description: This is Binni Vasile's description +facsimileTelephoneNumber: +1 415 463-9436 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 822-9777 +title: Master Administrative Stooge +userPassword: Password1 +uid: VasileB +givenName: Binni +mail: VasileB@9367f9f8454348d3886816e5fdc4ee80.bitwarden.com +carLicense: QWEFWM +departmentNumber: 7027 +employeeType: Employee +homePhone: +1 415 101-1124 +initials: B. V. +mobile: +1 415 735-1325 +pager: +1 415 753-7539 +roomNumber: 8053 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Thor Mamoulides,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thor Mamoulides +sn: Mamoulides +description: This is Thor Mamoulides's description +facsimileTelephoneNumber: +1 415 360-7978 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 111-2663 +title: Master Peons Assistant +userPassword: Password1 +uid: MamouliT +givenName: Thor +mail: MamouliT@514c4dabf5514f759283b3fa82dba706.bitwarden.com +carLicense: 1BA816 +departmentNumber: 6199 +employeeType: Normal +homePhone: +1 415 259-6915 +initials: T. M. +mobile: +1 415 537-3065 +pager: +1 415 801-1732 +roomNumber: 9614 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Merridie Charlinski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merridie Charlinski +sn: Charlinski +description: This is Merridie Charlinski's description +facsimileTelephoneNumber: +1 818 661-2519 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 372-8047 +title: Junior Product Development Janitor +userPassword: Password1 +uid: CharlinM +givenName: Merridie +mail: CharlinM@503493165e34480591885ddd3a12206f.bitwarden.com +carLicense: MREXE7 +departmentNumber: 9741 +employeeType: Contract +homePhone: +1 818 161-1314 +initials: M. C. +mobile: +1 818 650-2272 +pager: +1 818 991-3385 +roomNumber: 9620 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sundaram Trocchi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sundaram Trocchi +sn: Trocchi +description: This is Sundaram Trocchi's description +facsimileTelephoneNumber: +1 206 378-3859 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 424-1251 +title: Master Management Engineer +userPassword: Password1 +uid: TrocchiS +givenName: Sundaram +mail: TrocchiS@9c1a16ce358c4da3bb256d63a9955243.bitwarden.com +carLicense: X9XU2P +departmentNumber: 1843 +employeeType: Employee +homePhone: +1 206 295-9992 +initials: S. T. +mobile: +1 206 980-6762 +pager: +1 206 441-7702 +roomNumber: 8755 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naoma Ajersch +sn: Ajersch +description: This is Naoma Ajersch's description +facsimileTelephoneNumber: +1 408 728-8155 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 408 331-4865 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: AjerschN +givenName: Naoma +mail: AjerschN@3264b8974bc14e47aff69928751d5552.bitwarden.com +carLicense: 361DQ8 +departmentNumber: 7874 +employeeType: Contract +homePhone: +1 408 111-6007 +initials: N. A. +mobile: +1 408 366-7498 +pager: +1 408 221-9901 +roomNumber: 9750 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Divine Sebeh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Divine Sebeh +sn: Sebeh +description: This is Divine Sebeh's description +facsimileTelephoneNumber: +1 510 580-9164 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 510 599-8853 +title: Associate Product Development Admin +userPassword: Password1 +uid: SebehD +givenName: Divine +mail: SebehD@8396829dbd6f4494811aec04c011380c.bitwarden.com +carLicense: F82FPC +departmentNumber: 5463 +employeeType: Contract +homePhone: +1 510 212-8872 +initials: D. S. +mobile: +1 510 395-7103 +pager: +1 510 879-7947 +roomNumber: 9736 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tiff Mader,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiff Mader +sn: Mader +description: This is Tiff Mader's description +facsimileTelephoneNumber: +1 408 701-6431 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 408 232-2468 +title: Junior Peons Grunt +userPassword: Password1 +uid: MaderT +givenName: Tiff +mail: MaderT@5252b436274c46eeaa1a93446d86930f.bitwarden.com +carLicense: LU5C36 +departmentNumber: 5697 +employeeType: Employee +homePhone: +1 408 219-9176 +initials: T. M. +mobile: +1 408 369-9580 +pager: +1 408 948-1971 +roomNumber: 9013 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Karly Adornato,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karly Adornato +sn: Adornato +description: This is Karly Adornato's description +facsimileTelephoneNumber: +1 213 554-5634 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 619-7412 +title: Master Management Vice President +userPassword: Password1 +uid: AdornatK +givenName: Karly +mail: AdornatK@a821e56b318247488fefa798a1560d4c.bitwarden.com +carLicense: V2LTMD +departmentNumber: 7074 +employeeType: Contract +homePhone: +1 213 265-5041 +initials: K. A. +mobile: +1 213 783-7054 +pager: +1 213 446-1233 +roomNumber: 8747 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Petrina Bovey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petrina Bovey +sn: Bovey +description: This is Petrina Bovey's description +facsimileTelephoneNumber: +1 408 384-1911 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 465-6341 +title: Chief Product Development Dictator +userPassword: Password1 +uid: BoveyP +givenName: Petrina +mail: BoveyP@cb080e2974a14fac8bb31166d02685f0.bitwarden.com +carLicense: PP5EM0 +departmentNumber: 6033 +employeeType: Contract +homePhone: +1 408 792-9375 +initials: P. B. +mobile: +1 408 460-2339 +pager: +1 408 461-3827 +roomNumber: 9847 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Andie Subasinghe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andie Subasinghe +sn: Subasinghe +description: This is Andie Subasinghe's description +facsimileTelephoneNumber: +1 206 683-9954 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 462-7229 +title: Junior Product Development Consultant +userPassword: Password1 +uid: SubasinA +givenName: Andie +mail: SubasinA@a2de644016074e339d2f86b6a140c75b.bitwarden.com +carLicense: 9RL8WX +departmentNumber: 2888 +employeeType: Normal +homePhone: +1 206 121-6726 +initials: A. S. +mobile: +1 206 393-8420 +pager: +1 206 308-1043 +roomNumber: 8446 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kimiko Florescu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kimiko Florescu +sn: Florescu +description: This is Kimiko Florescu's description +facsimileTelephoneNumber: +1 415 755-3539 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 415 495-1832 +title: Chief Management Grunt +userPassword: Password1 +uid: FlorescK +givenName: Kimiko +mail: FlorescK@68682c9b2559463bb9da0d98b541595f.bitwarden.com +carLicense: RBQV80 +departmentNumber: 5698 +employeeType: Normal +homePhone: +1 415 176-8768 +initials: K. F. +mobile: +1 415 980-6165 +pager: +1 415 633-8820 +roomNumber: 8271 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Agnesse Kiger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnesse Kiger +sn: Kiger +description: This is Agnesse Kiger's description +facsimileTelephoneNumber: +1 206 906-3871 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 860-8060 +title: Junior Management Visionary +userPassword: Password1 +uid: KigerA +givenName: Agnesse +mail: KigerA@d6b3231dbb434132911ed9c9e37e3901.bitwarden.com +carLicense: DQJG97 +departmentNumber: 8121 +employeeType: Contract +homePhone: +1 206 560-1108 +initials: A. K. +mobile: +1 206 841-7717 +pager: +1 206 906-3249 +roomNumber: 8445 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Trude Hanham,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trude Hanham +sn: Hanham +description: This is Trude Hanham's description +facsimileTelephoneNumber: +1 206 731-1045 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 215-7297 +title: Supreme Janitorial Technician +userPassword: Password1 +uid: HanhamT +givenName: Trude +mail: HanhamT@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com +carLicense: HTS1PN +departmentNumber: 9309 +employeeType: Normal +homePhone: +1 206 410-7344 +initials: T. H. +mobile: +1 206 747-6932 +pager: +1 206 340-7063 +roomNumber: 8148 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verile Szaplonczay +sn: Szaplonczay +description: This is Verile Szaplonczay's description +facsimileTelephoneNumber: +1 804 624-1470 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 229-8171 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: SzaplonV +givenName: Verile +mail: SzaplonV@bcfbfd5ee6b14185b04773704662d3e6.bitwarden.com +carLicense: J23SP7 +departmentNumber: 5805 +employeeType: Contract +homePhone: +1 804 833-8029 +initials: V. S. +mobile: +1 804 862-7652 +pager: +1 804 795-7873 +roomNumber: 8330 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Greta Timler,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greta Timler +sn: Timler +description: This is Greta Timler's description +facsimileTelephoneNumber: +1 408 593-3868 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 870-8877 +title: Master Peons Janitor +userPassword: Password1 +uid: TimlerG +givenName: Greta +mail: TimlerG@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com +carLicense: 4RT1N8 +departmentNumber: 1882 +employeeType: Employee +homePhone: +1 408 859-8907 +initials: G. T. +mobile: +1 408 878-3066 +pager: +1 408 419-5086 +roomNumber: 9995 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bobbye Ludviksen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobbye Ludviksen +sn: Ludviksen +description: This is Bobbye Ludviksen's description +facsimileTelephoneNumber: +1 818 935-4959 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 547-7139 +title: Junior Management Assistant +userPassword: Password1 +uid: LudviksB +givenName: Bobbye +mail: LudviksB@5ffed17cc69d4719b003fa0cfe2777f7.bitwarden.com +carLicense: FFK37W +departmentNumber: 3657 +employeeType: Employee +homePhone: +1 818 882-8347 +initials: B. L. +mobile: +1 818 541-3304 +pager: +1 818 641-2078 +roomNumber: 9844 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raphaela Koleyni +sn: Koleyni +description: This is Raphaela Koleyni's description +facsimileTelephoneNumber: +1 415 574-4830 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 208-6964 +title: Junior Human Resources Mascot +userPassword: Password1 +uid: KoleyniR +givenName: Raphaela +mail: KoleyniR@2c04f0ba9f9e42d4ba30e45d9ac9ae06.bitwarden.com +carLicense: MHE6H8 +departmentNumber: 3940 +employeeType: Employee +homePhone: +1 415 205-8470 +initials: R. K. +mobile: +1 415 784-3514 +pager: +1 415 926-2327 +roomNumber: 8736 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Adiana Tohama,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adiana Tohama +sn: Tohama +description: This is Adiana Tohama's description +facsimileTelephoneNumber: +1 510 346-7833 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 510 530-1802 +title: Associate Administrative Consultant +userPassword: Password1 +uid: TohamaA +givenName: Adiana +mail: TohamaA@3fe7f6d7adf6406f923792a176bd4ea0.bitwarden.com +carLicense: RM8MV4 +departmentNumber: 9387 +employeeType: Contract +homePhone: +1 510 339-7440 +initials: A. T. +mobile: +1 510 957-1394 +pager: +1 510 758-6079 +roomNumber: 8070 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evangelo Rygwalski +sn: Rygwalski +description: This is Evangelo Rygwalski's description +facsimileTelephoneNumber: +1 818 122-5218 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 818 838-8828 +title: Master Administrative Dictator +userPassword: Password1 +uid: RygwalsE +givenName: Evangelo +mail: RygwalsE@e0325d1b480a46fd813ea04ca5c966cc.bitwarden.com +carLicense: O7T6ID +departmentNumber: 6024 +employeeType: Normal +homePhone: +1 818 174-9449 +initials: E. R. +mobile: +1 818 298-9328 +pager: +1 818 126-3132 +roomNumber: 9600 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hildagarde Neumann,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hildagarde Neumann +sn: Neumann +description: This is Hildagarde Neumann's description +facsimileTelephoneNumber: +1 213 419-5805 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 553-6285 +title: Supreme Peons Admin +userPassword: Password1 +uid: NeumannH +givenName: Hildagarde +mail: NeumannH@736366bf947d4889a5087519dbc9eaff.bitwarden.com +carLicense: T6LQSR +departmentNumber: 2250 +employeeType: Contract +homePhone: +1 213 297-7969 +initials: H. N. +mobile: +1 213 222-3299 +pager: +1 213 818-6487 +roomNumber: 8964 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sibylla Younger,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibylla Younger +sn: Younger +description: This is Sibylla Younger's description +facsimileTelephoneNumber: +1 818 465-4992 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 818 699-2478 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: YoungerS +givenName: Sibylla +mail: YoungerS@f1ba9fe3a35e44c3978d785a0d395a14.bitwarden.com +carLicense: RJ6LMX +departmentNumber: 4845 +employeeType: Employee +homePhone: +1 818 669-4623 +initials: S. Y. +mobile: +1 818 769-1434 +pager: +1 818 211-5178 +roomNumber: 8259 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jodie Eckstein,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jodie Eckstein +sn: Eckstein +description: This is Jodie Eckstein's description +facsimileTelephoneNumber: +1 510 410-7245 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 554-5514 +title: Associate Administrative Visionary +userPassword: Password1 +uid: EcksteiJ +givenName: Jodie +mail: EcksteiJ@d07128744ede47b1a1b8648da086036a.bitwarden.com +carLicense: NV9J6F +departmentNumber: 2878 +employeeType: Contract +homePhone: +1 510 259-6890 +initials: J. E. +mobile: +1 510 602-4988 +pager: +1 510 849-2222 +roomNumber: 9363 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rea Barolet,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rea Barolet +sn: Barolet +description: This is Rea Barolet's description +facsimileTelephoneNumber: +1 408 209-7321 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 678-1534 +title: Supreme Management Vice President +userPassword: Password1 +uid: BaroletR +givenName: Rea +mail: BaroletR@4824b8d6b19b477496c8e66703f2331e.bitwarden.com +carLicense: H963P3 +departmentNumber: 5364 +employeeType: Normal +homePhone: +1 408 879-1777 +initials: R. B. +mobile: +1 408 628-9877 +pager: +1 408 998-2937 +roomNumber: 9071 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rustu Paige,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rustu Paige +sn: Paige +description: This is Rustu Paige's description +facsimileTelephoneNumber: +1 804 987-6750 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 825-7370 +title: Master Janitorial Writer +userPassword: Password1 +uid: PaigeR +givenName: Rustu +mail: PaigeR@777873609ce9463eb7000e930f9c88d2.bitwarden.com +carLicense: 7L61ID +departmentNumber: 3856 +employeeType: Normal +homePhone: +1 804 227-4100 +initials: R. P. +mobile: +1 804 282-3985 +pager: +1 804 202-2182 +roomNumber: 8488 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Davinder Caves,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davinder Caves +sn: Caves +description: This is Davinder Caves's description +facsimileTelephoneNumber: +1 213 981-9696 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 153-5300 +title: Chief Product Development President +userPassword: Password1 +uid: CavesD +givenName: Davinder +mail: CavesD@c356619b4769401bb929afda889d39f9.bitwarden.com +carLicense: 3B8RSR +departmentNumber: 6612 +employeeType: Employee +homePhone: +1 213 246-6080 +initials: D. C. +mobile: +1 213 902-4097 +pager: +1 213 541-7703 +roomNumber: 9585 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Celyne Settels,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celyne Settels +sn: Settels +description: This is Celyne Settels's description +facsimileTelephoneNumber: +1 206 764-7515 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 956-8510 +title: Chief Administrative Technician +userPassword: Password1 +uid: SettelsC +givenName: Celyne +mail: SettelsC@ab04014fcfcf443881ea178cd34f1aab.bitwarden.com +carLicense: PV0L1I +departmentNumber: 1837 +employeeType: Normal +homePhone: +1 206 255-5379 +initials: C. S. +mobile: +1 206 998-3707 +pager: +1 206 109-3134 +roomNumber: 8557 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marina Higham,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marina Higham +sn: Higham +description: This is Marina Higham's description +facsimileTelephoneNumber: +1 213 326-5957 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 738-6112 +title: Junior Payroll Fellow +userPassword: Password1 +uid: HighamM +givenName: Marina +mail: HighamM@fe740c0ae3204fcc953b18216e0c9dcc.bitwarden.com +carLicense: 2AHTFY +departmentNumber: 6355 +employeeType: Employee +homePhone: +1 213 529-9716 +initials: M. H. +mobile: +1 213 481-1702 +pager: +1 213 812-7932 +roomNumber: 9397 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Augusto Gawargy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Augusto Gawargy +sn: Gawargy +description: This is Augusto Gawargy's description +facsimileTelephoneNumber: +1 818 540-3813 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 910-5719 +title: Master Peons Stooge +userPassword: Password1 +uid: GawargyA +givenName: Augusto +mail: GawargyA@fe184af833734409842cae4ea614a7b7.bitwarden.com +carLicense: 80T5K9 +departmentNumber: 7431 +employeeType: Normal +homePhone: +1 818 154-8665 +initials: A. G. +mobile: +1 818 759-5564 +pager: +1 818 232-8603 +roomNumber: 9394 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hudai Popp,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hudai Popp +sn: Popp +description: This is Hudai Popp's description +facsimileTelephoneNumber: +1 510 667-1881 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 865-6634 +title: Junior Administrative Engineer +userPassword: Password1 +uid: PoppH +givenName: Hudai +mail: PoppH@066366af1bc843378bcfdd813a95df98.bitwarden.com +carLicense: 915HF5 +departmentNumber: 1992 +employeeType: Contract +homePhone: +1 510 791-3203 +initials: H. P. +mobile: +1 510 121-5796 +pager: +1 510 357-3368 +roomNumber: 8761 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Babak Tussey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Babak Tussey +sn: Tussey +description: This is Babak Tussey's description +facsimileTelephoneNumber: +1 408 493-7615 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 878-5986 +title: Associate Product Development Fellow +userPassword: Password1 +uid: TusseyB +givenName: Babak +mail: TusseyB@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com +carLicense: 8RXY8K +departmentNumber: 7689 +employeeType: Normal +homePhone: +1 408 862-2501 +initials: B. T. +mobile: +1 408 997-8940 +pager: +1 408 119-8492 +roomNumber: 8052 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wenonah Bellehumeur +sn: Bellehumeur +description: This is Wenonah Bellehumeur's description +facsimileTelephoneNumber: +1 206 345-6915 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 206 749-4157 +title: Master Human Resources Stooge +userPassword: Password1 +uid: BellehuW +givenName: Wenonah +mail: BellehuW@71bf922abd2749a3982856c35ce9c912.bitwarden.com +carLicense: QDSU57 +departmentNumber: 9077 +employeeType: Normal +homePhone: +1 206 152-8228 +initials: W. B. +mobile: +1 206 754-9802 +pager: +1 206 843-1622 +roomNumber: 8777 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lionel Childers,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lionel Childers +sn: Childers +description: This is Lionel Childers's description +facsimileTelephoneNumber: +1 213 476-1008 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 441-2353 +title: Junior Administrative Grunt +userPassword: Password1 +uid: ChilderL +givenName: Lionel +mail: ChilderL@328af8448e3c4d53991764541abc54ba.bitwarden.com +carLicense: SLT9LO +departmentNumber: 9298 +employeeType: Employee +homePhone: +1 213 341-6015 +initials: L. C. +mobile: +1 213 678-7929 +pager: +1 213 240-3396 +roomNumber: 9671 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Robena McDevitt,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robena McDevitt +sn: McDevitt +description: This is Robena McDevitt's description +facsimileTelephoneNumber: +1 804 873-5027 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 949-5254 +title: Supreme Human Resources Architect +userPassword: Password1 +uid: McDevitR +givenName: Robena +mail: McDevitR@9967fe39a419474db05f70cea6eee0f1.bitwarden.com +carLicense: UYOGYW +departmentNumber: 3527 +employeeType: Contract +homePhone: +1 804 136-3813 +initials: R. M. +mobile: +1 804 511-7763 +pager: +1 804 799-5860 +roomNumber: 8799 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilbertina Wellard +sn: Wellard +description: This is Gilbertina Wellard's description +facsimileTelephoneNumber: +1 206 627-1549 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 224-1001 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: WellardG +givenName: Gilbertina +mail: WellardG@b613aec4ece744c9bcff2f9c3efe0aed.bitwarden.com +carLicense: HM64WM +departmentNumber: 9328 +employeeType: Normal +homePhone: +1 206 594-6684 +initials: G. W. +mobile: +1 206 287-4109 +pager: +1 206 642-5866 +roomNumber: 8080 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dupuy Barszczewski +sn: Barszczewski +description: This is Dupuy Barszczewski's description +facsimileTelephoneNumber: +1 804 810-1321 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 355-4276 +title: Chief Product Testing Punk +userPassword: Password1 +uid: BarszczD +givenName: Dupuy +mail: BarszczD@dc4e00565ed740ca8c4a935c1cd2fe2a.bitwarden.com +carLicense: 7VX6GT +departmentNumber: 8132 +employeeType: Normal +homePhone: +1 804 951-3356 +initials: D. B. +mobile: +1 804 108-6902 +pager: +1 804 133-6287 +roomNumber: 8535 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gael Elias,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gael Elias +sn: Elias +description: This is Gael Elias's description +facsimileTelephoneNumber: +1 510 631-1740 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 761-9368 +title: Supreme Peons President +userPassword: Password1 +uid: EliasG +givenName: Gael +mail: EliasG@9dc5f26c8d604d308d7d70d0272f1d88.bitwarden.com +carLicense: FOBBH6 +departmentNumber: 9468 +employeeType: Contract +homePhone: +1 510 411-8924 +initials: G. E. +mobile: +1 510 300-2553 +pager: +1 510 567-2669 +roomNumber: 9858 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Floria Harless,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Floria Harless +sn: Harless +description: This is Floria Harless's description +facsimileTelephoneNumber: +1 804 140-1611 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 419-1545 +title: Associate Management Developer +userPassword: Password1 +uid: HarlessF +givenName: Floria +mail: HarlessF@0d3b7d7cbc834c0cbc976d09482d6768.bitwarden.com +carLicense: GCOJY0 +departmentNumber: 2709 +employeeType: Normal +homePhone: +1 804 726-9505 +initials: F. H. +mobile: +1 804 857-3286 +pager: +1 804 398-2872 +roomNumber: 9382 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mehmud Rickel +sn: Rickel +description: This is Mehmud Rickel's description +facsimileTelephoneNumber: +1 510 492-4757 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 567-4215 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: RickelM +givenName: Mehmud +mail: RickelM@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com +carLicense: TEXP5J +departmentNumber: 8463 +employeeType: Employee +homePhone: +1 510 745-3440 +initials: M. R. +mobile: +1 510 638-9444 +pager: +1 510 362-8526 +roomNumber: 8641 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kandy Chanco,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kandy Chanco +sn: Chanco +description: This is Kandy Chanco's description +facsimileTelephoneNumber: +1 818 332-3347 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 304-8520 +title: Associate Peons Grunt +userPassword: Password1 +uid: ChancoK +givenName: Kandy +mail: ChancoK@dbf1f20f7fd241cc84adfba60d194c8f.bitwarden.com +carLicense: CKFMQ1 +departmentNumber: 1165 +employeeType: Normal +homePhone: +1 818 705-2567 +initials: K. C. +mobile: +1 818 648-7825 +pager: +1 818 856-5795 +roomNumber: 9183 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vanya Pelissier,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanya Pelissier +sn: Pelissier +description: This is Vanya Pelissier's description +facsimileTelephoneNumber: +1 818 648-8043 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 804-6203 +title: Junior Management Mascot +userPassword: Password1 +uid: PelissiV +givenName: Vanya +mail: PelissiV@d4881d0da2824b94aad995234e30bb1a.bitwarden.com +carLicense: 9DTU7A +departmentNumber: 4214 +employeeType: Contract +homePhone: +1 818 967-2828 +initials: V. P. +mobile: +1 818 977-5068 +pager: +1 818 785-1296 +roomNumber: 9552 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Noubar Shute,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noubar Shute +sn: Shute +description: This is Noubar Shute's description +facsimileTelephoneNumber: +1 415 812-4984 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 650-7739 +title: Chief Payroll President +userPassword: Password1 +uid: ShuteN +givenName: Noubar +mail: ShuteN@defab017f9734cfab5b3fea4ed24112c.bitwarden.com +carLicense: URN0UB +departmentNumber: 9305 +employeeType: Normal +homePhone: +1 415 235-2675 +initials: N. S. +mobile: +1 415 204-1505 +pager: +1 415 314-4710 +roomNumber: 8049 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cilka Galluzzi +sn: Galluzzi +description: This is Cilka Galluzzi's description +facsimileTelephoneNumber: +1 510 669-5107 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 832-8496 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: GalluzzC +givenName: Cilka +mail: GalluzzC@193a813b90bf4054a776a2e46081339c.bitwarden.com +carLicense: B9L4CO +departmentNumber: 2108 +employeeType: Contract +homePhone: +1 510 727-7875 +initials: C. G. +mobile: +1 510 135-2683 +pager: +1 510 169-2256 +roomNumber: 9295 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eliza Roney,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eliza Roney +sn: Roney +description: This is Eliza Roney's description +facsimileTelephoneNumber: +1 206 612-9014 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 206 763-4655 +title: Supreme Product Testing Technician +userPassword: Password1 +uid: RoneyE +givenName: Eliza +mail: RoneyE@daa1e24c0eb048798f1d4ee756ce865c.bitwarden.com +carLicense: ORJ89O +departmentNumber: 8363 +employeeType: Normal +homePhone: +1 206 291-9354 +initials: E. R. +mobile: +1 206 771-2946 +pager: +1 206 168-7956 +roomNumber: 9531 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Els Sridhar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Els Sridhar +sn: Sridhar +description: This is Els Sridhar's description +facsimileTelephoneNumber: +1 818 281-7594 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 818 130-6000 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: SridharE +givenName: Els +mail: SridharE@7cefaa55a36f4be4acff376f7ddd1a67.bitwarden.com +carLicense: 5LRQ63 +departmentNumber: 7662 +employeeType: Employee +homePhone: +1 818 839-7266 +initials: E. S. +mobile: +1 818 955-3447 +pager: +1 818 725-5126 +roomNumber: 8723 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Masood Kemppainen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Masood Kemppainen +sn: Kemppainen +description: This is Masood Kemppainen's description +facsimileTelephoneNumber: +1 804 625-6368 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 804 388-7957 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: KemppaiM +givenName: Masood +mail: KemppaiM@8b0911565ebc48f8bdf8c3ff36728f00.bitwarden.com +carLicense: 02AEJH +departmentNumber: 3034 +employeeType: Employee +homePhone: +1 804 445-8203 +initials: M. K. +mobile: +1 804 248-2661 +pager: +1 804 765-7025 +roomNumber: 8204 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karisa Botting,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karisa Botting +sn: Botting +description: This is Karisa Botting's description +facsimileTelephoneNumber: +1 804 498-6294 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 180-7824 +title: Associate Payroll Pinhead +userPassword: Password1 +uid: BottingK +givenName: Karisa +mail: BottingK@fecc39f9d20d45d991f7afeb75e37b9b.bitwarden.com +carLicense: RH2PKY +departmentNumber: 2106 +employeeType: Contract +homePhone: +1 804 598-6591 +initials: K. B. +mobile: +1 804 837-7171 +pager: +1 804 338-3380 +roomNumber: 9370 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Francisco Dallaire,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francisco Dallaire +sn: Dallaire +description: This is Francisco Dallaire's description +facsimileTelephoneNumber: +1 206 389-6018 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 339-5972 +title: Associate Payroll Artist +userPassword: Password1 +uid: DallairF +givenName: Francisco +mail: DallairF@7bdb27652ff44b53af3458ba811e7f70.bitwarden.com +carLicense: FQQ7DR +departmentNumber: 6679 +employeeType: Contract +homePhone: +1 206 528-7816 +initials: F. D. +mobile: +1 206 648-7869 +pager: +1 206 122-5910 +roomNumber: 8511 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jordana Hersee,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jordana Hersee +sn: Hersee +description: This is Jordana Hersee's description +facsimileTelephoneNumber: +1 818 366-2346 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 818 229-1368 +title: Master Peons Engineer +userPassword: Password1 +uid: HerseeJ +givenName: Jordana +mail: HerseeJ@6eda6577067f465b84cdc51153ccba3d.bitwarden.com +carLicense: 312038 +departmentNumber: 2145 +employeeType: Normal +homePhone: +1 818 718-4417 +initials: J. H. +mobile: +1 818 328-3766 +pager: +1 818 185-8028 +roomNumber: 8451 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gillan Hufana,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gillan Hufana +sn: Hufana +description: This is Gillan Hufana's description +facsimileTelephoneNumber: +1 804 302-1299 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 177-4244 +title: Chief Human Resources Czar +userPassword: Password1 +uid: HufanaG +givenName: Gillan +mail: HufanaG@7d2914d75d254468950490f34fff79f9.bitwarden.com +carLicense: QVFV1D +departmentNumber: 9744 +employeeType: Contract +homePhone: +1 804 486-2798 +initials: G. H. +mobile: +1 804 646-3456 +pager: +1 804 626-1443 +roomNumber: 8295 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shep Schroeder,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shep Schroeder +sn: Schroeder +description: This is Shep Schroeder's description +facsimileTelephoneNumber: +1 510 768-6681 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 817-5667 +title: Chief Administrative Director +userPassword: Password1 +uid: SchroedS +givenName: Shep +mail: SchroedS@5414e6754d4b4f6bbcd511a3a43e9ff6.bitwarden.com +carLicense: N2O1SV +departmentNumber: 8158 +employeeType: Contract +homePhone: +1 510 284-1827 +initials: S. S. +mobile: +1 510 126-7507 +pager: +1 510 151-7586 +roomNumber: 8602 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Masahiro Haughey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Masahiro Haughey +sn: Haughey +description: This is Masahiro Haughey's description +facsimileTelephoneNumber: +1 206 972-4060 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 231-6122 +title: Supreme Administrative Architect +userPassword: Password1 +uid: HaugheyM +givenName: Masahiro +mail: HaugheyM@43ed30f036954e65898067e558a32b4d.bitwarden.com +carLicense: UCKD7V +departmentNumber: 9182 +employeeType: Employee +homePhone: +1 206 175-4257 +initials: M. H. +mobile: +1 206 383-9185 +pager: +1 206 316-1572 +roomNumber: 9340 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgiana Boyajian +sn: Boyajian +description: This is Georgiana Boyajian's description +facsimileTelephoneNumber: +1 510 195-8911 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 297-8683 +title: Junior Payroll Architect +userPassword: Password1 +uid: BoyajiaG +givenName: Georgiana +mail: BoyajiaG@ecd862454c8b49a4ab4dccef5a805c86.bitwarden.com +carLicense: YHIKOX +departmentNumber: 4059 +employeeType: Employee +homePhone: +1 510 246-8687 +initials: G. B. +mobile: +1 510 223-5499 +pager: +1 510 212-2644 +roomNumber: 9083 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mariele Puukila,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariele Puukila +sn: Puukila +description: This is Mariele Puukila's description +facsimileTelephoneNumber: +1 804 326-1763 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 473-8079 +title: Master Management Assistant +userPassword: Password1 +uid: PuukilaM +givenName: Mariele +mail: PuukilaM@9168c74ef41149569e1e454986f240f5.bitwarden.com +carLicense: 4MWIIA +departmentNumber: 4808 +employeeType: Employee +homePhone: +1 804 316-7674 +initials: M. P. +mobile: +1 804 639-2669 +pager: +1 804 102-8550 +roomNumber: 8233 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nathalie Hopkinson +sn: Hopkinson +description: This is Nathalie Hopkinson's description +facsimileTelephoneNumber: +1 206 678-6632 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 611-9842 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: HopkinsN +givenName: Nathalie +mail: HopkinsN@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com +carLicense: XHQ6E4 +departmentNumber: 6768 +employeeType: Contract +homePhone: +1 206 878-4646 +initials: N. H. +mobile: +1 206 751-9497 +pager: +1 206 942-8562 +roomNumber: 8965 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=An Assenza,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: An Assenza +sn: Assenza +description: This is An Assenza's description +facsimileTelephoneNumber: +1 213 533-8324 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 498-6476 +title: Junior Administrative President +userPassword: Password1 +uid: AssenzaA +givenName: An +mail: AssenzaA@6012fc3f273d40f18822bdc7b0a5938e.bitwarden.com +carLicense: LIKCBY +departmentNumber: 9876 +employeeType: Contract +homePhone: +1 213 593-1076 +initials: A. A. +mobile: +1 213 412-6043 +pager: +1 213 666-7507 +roomNumber: 8778 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nerta Huitt,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nerta Huitt +sn: Huitt +description: This is Nerta Huitt's description +facsimileTelephoneNumber: +1 804 808-3106 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 974-1027 +title: Chief Product Development Architect +userPassword: Password1 +uid: HuittN +givenName: Nerta +mail: HuittN@9a5eb95a8d064ae1ab7c5bae15e123a0.bitwarden.com +carLicense: PAB4CJ +departmentNumber: 6809 +employeeType: Contract +homePhone: +1 804 979-8496 +initials: N. H. +mobile: +1 804 586-6601 +pager: +1 804 585-5313 +roomNumber: 9094 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dela Gilliam,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dela Gilliam +sn: Gilliam +description: This is Dela Gilliam's description +facsimileTelephoneNumber: +1 818 366-8222 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 746-2731 +title: Supreme Product Development Architect +userPassword: Password1 +uid: GilliamD +givenName: Dela +mail: GilliamD@2ffe207cbf4244c5be34772f95d3e203.bitwarden.com +carLicense: WO6QAQ +departmentNumber: 1913 +employeeType: Normal +homePhone: +1 818 186-6395 +initials: D. G. +mobile: +1 818 474-2796 +pager: +1 818 929-2114 +roomNumber: 8465 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Edric Dolginoff,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edric Dolginoff +sn: Dolginoff +description: This is Edric Dolginoff's description +facsimileTelephoneNumber: +1 213 231-8343 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 547-9479 +title: Associate Product Development Manager +userPassword: Password1 +uid: DolginoE +givenName: Edric +mail: DolginoE@b5bcc4ce776e4805ab4216703177730e.bitwarden.com +carLicense: NT3VY0 +departmentNumber: 7550 +employeeType: Employee +homePhone: +1 213 295-2175 +initials: E. D. +mobile: +1 213 560-2425 +pager: +1 213 200-2702 +roomNumber: 9348 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Livvy Flores,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Livvy Flores +sn: Flores +description: This is Livvy Flores's description +facsimileTelephoneNumber: +1 818 914-9881 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 453-3053 +title: Junior Administrative Sales Rep +userPassword: Password1 +uid: FloresL +givenName: Livvy +mail: FloresL@7c2fe37e93114583be5da4a11c32b590.bitwarden.com +carLicense: FVH958 +departmentNumber: 6360 +employeeType: Employee +homePhone: +1 818 759-2517 +initials: L. F. +mobile: +1 818 822-4414 +pager: +1 818 279-5352 +roomNumber: 9158 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Flossi Fumerton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flossi Fumerton +sn: Fumerton +description: This is Flossi Fumerton's description +facsimileTelephoneNumber: +1 510 769-2451 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 851-2920 +title: Supreme Management Admin +userPassword: Password1 +uid: FumertoF +givenName: Flossi +mail: FumertoF@1c6815f019224d89bea339008a2dffbe.bitwarden.com +carLicense: YW6BSP +departmentNumber: 5491 +employeeType: Employee +homePhone: +1 510 974-9892 +initials: F. F. +mobile: +1 510 152-7344 +pager: +1 510 987-5218 +roomNumber: 9006 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fanni Noah,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fanni Noah +sn: Noah +description: This is Fanni Noah's description +facsimileTelephoneNumber: +1 510 630-4285 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 434-6825 +title: Associate Administrative Stooge +userPassword: Password1 +uid: NoahF +givenName: Fanni +mail: NoahF@a08a36a3e7a643d9a21fd4a80adf64e7.bitwarden.com +carLicense: 6XWDUI +departmentNumber: 5082 +employeeType: Contract +homePhone: +1 510 619-2342 +initials: F. N. +mobile: +1 510 327-5571 +pager: +1 510 871-9640 +roomNumber: 8532 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tobe Blostein,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tobe Blostein +sn: Blostein +description: This is Tobe Blostein's description +facsimileTelephoneNumber: +1 206 156-5118 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 578-7671 +title: Master Payroll Manager +userPassword: Password1 +uid: BlosteiT +givenName: Tobe +mail: BlosteiT@452f7760183e4b0298d966a8ad5e45e0.bitwarden.com +carLicense: F5ASXU +departmentNumber: 6062 +employeeType: Employee +homePhone: +1 206 283-2177 +initials: T. B. +mobile: +1 206 627-2402 +pager: +1 206 593-8423 +roomNumber: 8572 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Madlen JodoinStJean,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madlen JodoinStJean +sn: JodoinStJean +description: This is Madlen JodoinStJean's description +facsimileTelephoneNumber: +1 213 595-2871 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 946-3628 +title: Supreme Management Grunt +userPassword: Password1 +uid: JodoinSM +givenName: Madlen +mail: JodoinSM@e97e68f305e3440c9129677cf226a2f9.bitwarden.com +carLicense: 30IFPJ +departmentNumber: 9801 +employeeType: Employee +homePhone: +1 213 897-4296 +initials: M. J. +mobile: +1 213 651-1843 +pager: +1 213 864-6519 +roomNumber: 9055 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Felipe McBroom,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felipe McBroom +sn: McBroom +description: This is Felipe McBroom's description +facsimileTelephoneNumber: +1 206 594-4400 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 149-1801 +title: Associate Janitorial Artist +userPassword: Password1 +uid: McBroomF +givenName: Felipe +mail: McBroomF@48f243cdc32d45d6aad070d357ee442e.bitwarden.com +carLicense: L27D8F +departmentNumber: 7376 +employeeType: Employee +homePhone: +1 206 617-9303 +initials: F. M. +mobile: +1 206 261-6393 +pager: +1 206 177-7501 +roomNumber: 8589 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stella Hoare,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stella Hoare +sn: Hoare +description: This is Stella Hoare's description +facsimileTelephoneNumber: +1 206 453-4815 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 694-9940 +title: Chief Human Resources Director +userPassword: Password1 +uid: HoareS +givenName: Stella +mail: HoareS@cbf0651b176b40b3a9e0984d1cf7efbc.bitwarden.com +carLicense: DGNGQ8 +departmentNumber: 6514 +employeeType: Normal +homePhone: +1 206 815-8173 +initials: S. H. +mobile: +1 206 601-3454 +pager: +1 206 785-1916 +roomNumber: 8518 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ShenZhi Csop +sn: Csop +description: This is ShenZhi Csop's description +facsimileTelephoneNumber: +1 206 259-7243 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 697-9639 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: CsopS +givenName: ShenZhi +mail: CsopS@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com +carLicense: Y6RVDA +departmentNumber: 7709 +employeeType: Normal +homePhone: +1 206 678-5155 +initials: S. C. +mobile: +1 206 163-3528 +pager: +1 206 132-4561 +roomNumber: 9969 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anthony Pringle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anthony Pringle +sn: Pringle +description: This is Anthony Pringle's description +facsimileTelephoneNumber: +1 213 597-2686 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 232-5731 +title: Chief Janitorial Artist +userPassword: Password1 +uid: PringleA +givenName: Anthony +mail: PringleA@547a7e1e0d95484c8a7654407d3e43c9.bitwarden.com +carLicense: IXNHXG +departmentNumber: 3407 +employeeType: Contract +homePhone: +1 213 577-3121 +initials: A. P. +mobile: +1 213 829-2669 +pager: +1 213 202-6637 +roomNumber: 8896 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Alexina Buschelman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alexina Buschelman +sn: Buschelman +description: This is Alexina Buschelman's description +facsimileTelephoneNumber: +1 510 261-3467 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 308-9203 +title: Chief Product Development Assistant +userPassword: Password1 +uid: BuschelA +givenName: Alexina +mail: BuschelA@b1fe32739d494b049e229d2be6982c9a.bitwarden.com +carLicense: M16DAS +departmentNumber: 2701 +employeeType: Employee +homePhone: +1 510 660-1134 +initials: A. B. +mobile: +1 510 772-4516 +pager: +1 510 329-1331 +roomNumber: 9969 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Floris Decelles,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Floris Decelles +sn: Decelles +description: This is Floris Decelles's description +facsimileTelephoneNumber: +1 510 272-7300 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 225-2336 +title: Chief Peons Grunt +userPassword: Password1 +uid: DecelleF +givenName: Floris +mail: DecelleF@0b9e602c3a92485da529010ed919b9e2.bitwarden.com +carLicense: RJF61V +departmentNumber: 2122 +employeeType: Normal +homePhone: +1 510 457-7312 +initials: F. D. +mobile: +1 510 162-8466 +pager: +1 510 828-8557 +roomNumber: 9465 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bella Jayamanne,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bella Jayamanne +sn: Jayamanne +description: This is Bella Jayamanne's description +facsimileTelephoneNumber: +1 213 856-5289 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 735-4215 +title: Chief Product Development Technician +userPassword: Password1 +uid: JayamanB +givenName: Bella +mail: JayamanB@6ffc05f614d948aa9f4574ca027b0151.bitwarden.com +carLicense: G70PC3 +departmentNumber: 3482 +employeeType: Contract +homePhone: +1 213 402-3238 +initials: B. J. +mobile: +1 213 688-5464 +pager: +1 213 707-3908 +roomNumber: 8732 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Erminie Normandin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erminie Normandin +sn: Normandin +description: This is Erminie Normandin's description +facsimileTelephoneNumber: +1 510 244-4466 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 577-6165 +title: Master Management Stooge +userPassword: Password1 +uid: NormandE +givenName: Erminie +mail: NormandE@9f9fe6d238ce4f8cb29cecfb73bf648a.bitwarden.com +carLicense: 06KQT8 +departmentNumber: 1188 +employeeType: Normal +homePhone: +1 510 400-5591 +initials: E. N. +mobile: +1 510 974-7103 +pager: +1 510 563-6075 +roomNumber: 9729 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Niz Colucci,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niz Colucci +sn: Colucci +description: This is Niz Colucci's description +facsimileTelephoneNumber: +1 408 659-3415 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 746-3548 +title: Supreme Management Figurehead +userPassword: Password1 +uid: ColucciN +givenName: Niz +mail: ColucciN@415c030ee16d4de4a7392387c8cef87f.bitwarden.com +carLicense: DL73VG +departmentNumber: 1570 +employeeType: Contract +homePhone: +1 408 993-1232 +initials: N. C. +mobile: +1 408 679-9969 +pager: +1 408 598-1004 +roomNumber: 9876 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Muni Strock,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Muni Strock +sn: Strock +description: This is Muni Strock's description +facsimileTelephoneNumber: +1 213 374-8358 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 213 875-6422 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: StrockM +givenName: Muni +mail: StrockM@2b8b15b2c5c943829658bf927a1b606d.bitwarden.com +carLicense: 1DL59O +departmentNumber: 7476 +employeeType: Employee +homePhone: +1 213 293-7534 +initials: M. S. +mobile: +1 213 902-7727 +pager: +1 213 480-6104 +roomNumber: 9861 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aybars Lavers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aybars Lavers +sn: Lavers +description: This is Aybars Lavers's description +facsimileTelephoneNumber: +1 408 764-9326 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 151-7748 +title: Chief Payroll Vice President +userPassword: Password1 +uid: LaversA +givenName: Aybars +mail: LaversA@3a6874a38197445fbf21db557fe28dc6.bitwarden.com +carLicense: 2VRBPR +departmentNumber: 5686 +employeeType: Employee +homePhone: +1 408 481-9728 +initials: A. L. +mobile: +1 408 425-4585 +pager: +1 408 182-2794 +roomNumber: 9812 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bakoury Desrosiers +sn: Desrosiers +description: This is Bakoury Desrosiers's description +facsimileTelephoneNumber: +1 510 348-1071 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 377-8314 +title: Master Payroll Vice President +userPassword: Password1 +uid: DesrosiB +givenName: Bakoury +mail: DesrosiB@3f22733d317d4f91854fb0b865164d32.bitwarden.com +carLicense: 451NJS +departmentNumber: 8975 +employeeType: Contract +homePhone: +1 510 759-8922 +initials: B. D. +mobile: +1 510 815-8596 +pager: +1 510 460-9861 +roomNumber: 9632 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yettie Borodajluk +sn: Borodajluk +description: This is Yettie Borodajluk's description +facsimileTelephoneNumber: +1 415 275-8272 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 927-4632 +title: Junior Payroll Janitor +userPassword: Password1 +uid: BorodajY +givenName: Yettie +mail: BorodajY@16d1d9688ffa4f59a9529d3b32ff16fb.bitwarden.com +carLicense: PIF9L9 +departmentNumber: 3529 +employeeType: Contract +homePhone: +1 415 737-4316 +initials: Y. B. +mobile: +1 415 914-4720 +pager: +1 415 363-7891 +roomNumber: 8732 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corrina Kodnar +sn: Kodnar +description: This is Corrina Kodnar's description +facsimileTelephoneNumber: +1 804 213-2066 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 884-9421 +title: Master Janitorial Technician +userPassword: Password1 +uid: KodnarC +givenName: Corrina +mail: KodnarC@6af59491c5a74fddb4c99c2f4eaecac5.bitwarden.com +carLicense: UEER3B +departmentNumber: 7228 +employeeType: Employee +homePhone: +1 804 463-7373 +initials: C. K. +mobile: +1 804 100-4713 +pager: +1 804 648-8546 +roomNumber: 9404 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Careers DeSalis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Careers DeSalis +sn: DeSalis +description: This is Careers DeSalis's description +facsimileTelephoneNumber: +1 415 635-3185 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 899-1937 +title: Master Janitorial Technician +userPassword: Password1 +uid: DeSalisC +givenName: Careers +mail: DeSalisC@d8f95844461442f7932326cd41b836f9.bitwarden.com +carLicense: WWL29U +departmentNumber: 5526 +employeeType: Employee +homePhone: +1 415 417-1453 +initials: C. D. +mobile: +1 415 699-9404 +pager: +1 415 112-6712 +roomNumber: 9343 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harmonie Calcote +sn: Calcote +description: This is Harmonie Calcote's description +facsimileTelephoneNumber: +1 804 850-8638 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 804 159-5392 +title: Chief Product Testing Grunt +userPassword: Password1 +uid: CalcoteH +givenName: Harmonie +mail: CalcoteH@530df39e624341ce900342a91a704d99.bitwarden.com +carLicense: K4OCEC +departmentNumber: 9867 +employeeType: Employee +homePhone: +1 804 739-5475 +initials: H. C. +mobile: +1 804 967-8450 +pager: +1 804 144-4098 +roomNumber: 8128 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Anna Meckley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anna Meckley +sn: Meckley +description: This is Anna Meckley's description +facsimileTelephoneNumber: +1 408 645-1625 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 709-6475 +title: Junior Payroll Consultant +userPassword: Password1 +uid: MeckleyA +givenName: Anna +mail: MeckleyA@a046a9cbbddd48b590c68e29ebbbad81.bitwarden.com +carLicense: AH19DP +departmentNumber: 6432 +employeeType: Contract +homePhone: +1 408 721-9866 +initials: A. M. +mobile: +1 408 717-3225 +pager: +1 408 529-8097 +roomNumber: 8631 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lilith Stejskal,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilith Stejskal +sn: Stejskal +description: This is Lilith Stejskal's description +facsimileTelephoneNumber: +1 415 747-9895 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 649-5899 +title: Master Payroll Pinhead +userPassword: Password1 +uid: StejskaL +givenName: Lilith +mail: StejskaL@a23a63f768764ebb9f25e196f981df61.bitwarden.com +carLicense: KWA5T5 +departmentNumber: 3026 +employeeType: Contract +homePhone: +1 415 636-6685 +initials: L. S. +mobile: +1 415 453-1571 +pager: +1 415 251-5887 +roomNumber: 8771 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Prudy Australia,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prudy Australia +sn: Australia +description: This is Prudy Australia's description +facsimileTelephoneNumber: +1 408 624-2136 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 338-6179 +title: Master Payroll Punk +userPassword: Password1 +uid: AustralP +givenName: Prudy +mail: AustralP@0886597f6db54159b6bf740e90826839.bitwarden.com +carLicense: EPTJV7 +departmentNumber: 3055 +employeeType: Normal +homePhone: +1 408 494-8403 +initials: P. A. +mobile: +1 408 277-7911 +pager: +1 408 781-4816 +roomNumber: 8503 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stevena Alberse,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stevena Alberse +sn: Alberse +description: This is Stevena Alberse's description +facsimileTelephoneNumber: +1 415 688-8128 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 349-8020 +title: Supreme Payroll Architect +userPassword: Password1 +uid: AlberseS +givenName: Stevena +mail: AlberseS@8eaa02b53fec48d0842607d198bfec39.bitwarden.com +carLicense: LFA645 +departmentNumber: 5368 +employeeType: Employee +homePhone: +1 415 368-2656 +initials: S. A. +mobile: +1 415 658-6886 +pager: +1 415 855-8438 +roomNumber: 9107 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Janson Finak,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janson Finak +sn: Finak +description: This is Janson Finak's description +facsimileTelephoneNumber: +1 206 628-9000 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 970-8202 +title: Junior Peons Director +userPassword: Password1 +uid: FinakJ +givenName: Janson +mail: FinakJ@1e51049529e146d4a9d0e0d1e98a7af3.bitwarden.com +carLicense: WEY198 +departmentNumber: 3961 +employeeType: Normal +homePhone: +1 206 989-4939 +initials: J. F. +mobile: +1 206 374-1265 +pager: +1 206 639-8541 +roomNumber: 9577 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Trudy Hillring,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trudy Hillring +sn: Hillring +description: This is Trudy Hillring's description +facsimileTelephoneNumber: +1 408 170-7012 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 160-1707 +title: Master Administrative Evangelist +userPassword: Password1 +uid: HillrinT +givenName: Trudy +mail: HillrinT@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com +carLicense: 6TR784 +departmentNumber: 5090 +employeeType: Contract +homePhone: +1 408 835-5818 +initials: T. H. +mobile: +1 408 763-6309 +pager: +1 408 637-1073 +roomNumber: 9144 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Albert Rolfes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Albert Rolfes +sn: Rolfes +description: This is Albert Rolfes's description +facsimileTelephoneNumber: +1 408 252-7347 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 386-3234 +title: Master Product Testing Consultant +userPassword: Password1 +uid: RolfesA +givenName: Albert +mail: RolfesA@c8ee77199e8a4c8b9eaba7996bee1657.bitwarden.com +carLicense: UBH6KS +departmentNumber: 6379 +employeeType: Contract +homePhone: +1 408 892-5866 +initials: A. R. +mobile: +1 408 590-8840 +pager: +1 408 138-1106 +roomNumber: 9428 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Coletta Azad,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coletta Azad +sn: Azad +description: This is Coletta Azad's description +facsimileTelephoneNumber: +1 818 239-7673 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 774-5806 +title: Associate Management Mascot +userPassword: Password1 +uid: AzadC +givenName: Coletta +mail: AzadC@8e76ac132bbc40639d377cc963491f20.bitwarden.com +carLicense: 5Y6KT4 +departmentNumber: 1611 +employeeType: Contract +homePhone: +1 818 405-6487 +initials: C. A. +mobile: +1 818 325-8544 +pager: +1 818 316-3216 +roomNumber: 8214 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Celestyna DeVries,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celestyna DeVries +sn: DeVries +description: This is Celestyna DeVries's description +facsimileTelephoneNumber: +1 804 114-5866 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 334-9985 +title: Associate Peons Architect +userPassword: Password1 +uid: DeVriesC +givenName: Celestyna +mail: DeVriesC@235bdf1949f24a4b80141074712cdcd7.bitwarden.com +carLicense: FKMYXY +departmentNumber: 2743 +employeeType: Employee +homePhone: +1 804 595-1751 +initials: C. D. +mobile: +1 804 111-7107 +pager: +1 804 751-4975 +roomNumber: 8502 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorilee Klostermann +sn: Klostermann +description: This is Lorilee Klostermann's description +facsimileTelephoneNumber: +1 206 187-5555 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 206 293-4179 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: KlosterL +givenName: Lorilee +mail: KlosterL@3ce51f6d63564349a707188cebe0b9db.bitwarden.com +carLicense: 9PEKJA +departmentNumber: 4104 +employeeType: Employee +homePhone: +1 206 159-2993 +initials: L. K. +mobile: +1 206 137-7493 +pager: +1 206 929-4909 +roomNumber: 9315 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Darda Mitrani,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darda Mitrani +sn: Mitrani +description: This is Darda Mitrani's description +facsimileTelephoneNumber: +1 206 134-8476 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 750-3895 +title: Supreme Human Resources Artist +userPassword: Password1 +uid: MitraniD +givenName: Darda +mail: MitraniD@edaeeeda9dac4d529991a1e33586bf00.bitwarden.com +carLicense: VJABF6 +departmentNumber: 6269 +employeeType: Contract +homePhone: +1 206 282-2913 +initials: D. M. +mobile: +1 206 526-3904 +pager: +1 206 126-6944 +roomNumber: 9245 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Burton Falquero,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Burton Falquero +sn: Falquero +description: This is Burton Falquero's description +facsimileTelephoneNumber: +1 206 400-8215 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 499-9789 +title: Associate Management Mascot +userPassword: Password1 +uid: FalquerB +givenName: Burton +mail: FalquerB@e677741303634ac2804273adce139081.bitwarden.com +carLicense: L71CCJ +departmentNumber: 5980 +employeeType: Normal +homePhone: +1 206 941-7850 +initials: B. F. +mobile: +1 206 924-4740 +pager: +1 206 179-3378 +roomNumber: 8071 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lishe Suess,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lishe Suess +sn: Suess +description: This is Lishe Suess's description +facsimileTelephoneNumber: +1 818 144-9366 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 279-4735 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: SuessL +givenName: Lishe +mail: SuessL@280567b14e5b498fb0bc375c822f4548.bitwarden.com +carLicense: HJE2CB +departmentNumber: 8199 +employeeType: Contract +homePhone: +1 818 692-8216 +initials: L. S. +mobile: +1 818 443-7992 +pager: +1 818 872-1805 +roomNumber: 8062 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Adora Droste,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adora Droste +sn: Droste +description: This is Adora Droste's description +facsimileTelephoneNumber: +1 818 551-7184 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 180-3298 +title: Chief Human Resources Vice President +userPassword: Password1 +uid: DrosteA +givenName: Adora +mail: DrosteA@58fb794b3cd74bd6925d4e906edf1e0e.bitwarden.com +carLicense: QP7JAF +departmentNumber: 7593 +employeeType: Contract +homePhone: +1 818 240-9279 +initials: A. D. +mobile: +1 818 496-1357 +pager: +1 818 724-9679 +roomNumber: 8744 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maybelle Obermeyer +sn: Obermeyer +description: This is Maybelle Obermeyer's description +facsimileTelephoneNumber: +1 510 943-6135 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 638-6844 +title: Master Janitorial Madonna +userPassword: Password1 +uid: ObermeyM +givenName: Maybelle +mail: ObermeyM@acb4046ec7714c0fad9acedf1017d851.bitwarden.com +carLicense: BLJ8X1 +departmentNumber: 2360 +employeeType: Contract +homePhone: +1 510 230-1805 +initials: M. O. +mobile: +1 510 570-7999 +pager: +1 510 474-2295 +roomNumber: 8730 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Paper Blakeslee,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paper Blakeslee +sn: Blakeslee +description: This is Paper Blakeslee's description +facsimileTelephoneNumber: +1 510 508-6952 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 196-6731 +title: Junior Administrative Pinhead +userPassword: Password1 +uid: BlakeslP +givenName: Paper +mail: BlakeslP@35f9e0ae24c24ec3baa413620b2b7eb4.bitwarden.com +carLicense: UG6KA8 +departmentNumber: 8932 +employeeType: Normal +homePhone: +1 510 810-1638 +initials: P. B. +mobile: +1 510 620-2217 +pager: +1 510 777-9602 +roomNumber: 8030 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Teena Klavkalns,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teena Klavkalns +sn: Klavkalns +description: This is Teena Klavkalns's description +facsimileTelephoneNumber: +1 415 918-3995 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 156-2092 +title: Supreme Administrative Manager +userPassword: Password1 +uid: KlavkalT +givenName: Teena +mail: KlavkalT@f397e344461e4f9a88c49c97eb320637.bitwarden.com +carLicense: 29J0KY +departmentNumber: 8595 +employeeType: Contract +homePhone: +1 415 572-5528 +initials: T. K. +mobile: +1 415 748-2121 +pager: +1 415 122-8516 +roomNumber: 9575 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veradis Mitchelson +sn: Mitchelson +description: This is Veradis Mitchelson's description +facsimileTelephoneNumber: +1 408 840-3195 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 408 601-8680 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: MitchelV +givenName: Veradis +mail: MitchelV@91ed7be59f5046a99ecb320616cf96d3.bitwarden.com +carLicense: G1HFRL +departmentNumber: 4313 +employeeType: Contract +homePhone: +1 408 832-4515 +initials: V. M. +mobile: +1 408 509-8920 +pager: +1 408 754-4219 +roomNumber: 8105 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sybila McQuarrie +sn: McQuarrie +description: This is Sybila McQuarrie's description +facsimileTelephoneNumber: +1 213 337-2795 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 213 600-4811 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: McQuarrS +givenName: Sybila +mail: McQuarrS@96b5430a2ccc4177bd773424088b496b.bitwarden.com +carLicense: ECBVWP +departmentNumber: 6262 +employeeType: Contract +homePhone: +1 213 835-1360 +initials: S. M. +mobile: +1 213 907-7601 +pager: +1 213 117-1688 +roomNumber: 8531 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=ChiKwan Lakhani,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChiKwan Lakhani +sn: Lakhani +description: This is ChiKwan Lakhani's description +facsimileTelephoneNumber: +1 213 610-3319 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 656-2479 +title: Associate Management President +userPassword: Password1 +uid: LakhaniC +givenName: ChiKwan +mail: LakhaniC@c75f0e626db74dca96376386c5032bd2.bitwarden.com +carLicense: 9QYJ2F +departmentNumber: 1129 +employeeType: Normal +homePhone: +1 213 602-3152 +initials: C. L. +mobile: +1 213 702-2572 +pager: +1 213 612-8314 +roomNumber: 9721 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Niz Tassy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niz Tassy +sn: Tassy +description: This is Niz Tassy's description +facsimileTelephoneNumber: +1 510 230-4246 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 901-4822 +title: Master Peons President +userPassword: Password1 +uid: TassyN +givenName: Niz +mail: TassyN@339e122adcf4463f83274df9a1e1749f.bitwarden.com +carLicense: 6TQQY6 +departmentNumber: 4517 +employeeType: Normal +homePhone: +1 510 280-3524 +initials: N. T. +mobile: +1 510 540-9254 +pager: +1 510 555-7896 +roomNumber: 9555 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marg Cavanagh,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marg Cavanagh +sn: Cavanagh +description: This is Marg Cavanagh's description +facsimileTelephoneNumber: +1 213 882-8441 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 561-4476 +title: Junior Peons Engineer +userPassword: Password1 +uid: CavanagM +givenName: Marg +mail: CavanagM@f2a6f34598244e88aecb895cbecfca2e.bitwarden.com +carLicense: HT17C9 +departmentNumber: 9628 +employeeType: Employee +homePhone: +1 213 632-5705 +initials: M. C. +mobile: +1 213 806-7838 +pager: +1 213 352-8362 +roomNumber: 8410 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anthony Luyten,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anthony Luyten +sn: Luyten +description: This is Anthony Luyten's description +facsimileTelephoneNumber: +1 510 638-2206 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 556-5295 +title: Master Administrative Fellow +userPassword: Password1 +uid: LuytenA +givenName: Anthony +mail: LuytenA@07f933542a8443fa9fa85a2d55eb8b28.bitwarden.com +carLicense: 7TS99U +departmentNumber: 1884 +employeeType: Contract +homePhone: +1 510 878-8736 +initials: A. L. +mobile: +1 510 309-6455 +pager: +1 510 916-1908 +roomNumber: 9946 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mira Hinkel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mira Hinkel +sn: Hinkel +description: This is Mira Hinkel's description +facsimileTelephoneNumber: +1 510 782-4626 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 205-9204 +title: Chief Product Testing Architect +userPassword: Password1 +uid: HinkelM +givenName: Mira +mail: HinkelM@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com +carLicense: 6ELHBB +departmentNumber: 6917 +employeeType: Contract +homePhone: +1 510 382-2695 +initials: M. H. +mobile: +1 510 503-5585 +pager: +1 510 379-8527 +roomNumber: 9655 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Florette Amos,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florette Amos +sn: Amos +description: This is Florette Amos's description +facsimileTelephoneNumber: +1 408 488-7307 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 459-8430 +title: Chief Payroll Dictator +userPassword: Password1 +uid: AmosF +givenName: Florette +mail: AmosF@20bbf24fbc3b442da2b7e99430631372.bitwarden.com +carLicense: WEH6LR +departmentNumber: 2050 +employeeType: Normal +homePhone: +1 408 209-8155 +initials: F. A. +mobile: +1 408 671-7778 +pager: +1 408 571-4279 +roomNumber: 8259 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Clara Maglione,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clara Maglione +sn: Maglione +description: This is Clara Maglione's description +facsimileTelephoneNumber: +1 415 392-6217 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 954-7091 +title: Associate Management Grunt +userPassword: Password1 +uid: MaglionC +givenName: Clara +mail: MaglionC@9377f34b40c845ea9ad33f532a97d8a4.bitwarden.com +carLicense: QPEF06 +departmentNumber: 6452 +employeeType: Normal +homePhone: +1 415 964-5634 +initials: C. M. +mobile: +1 415 909-3348 +pager: +1 415 391-2995 +roomNumber: 9161 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kizzie Leang,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kizzie Leang +sn: Leang +description: This is Kizzie Leang's description +facsimileTelephoneNumber: +1 206 836-5333 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 404-5328 +title: Master Peons Engineer +userPassword: Password1 +uid: LeangK +givenName: Kizzie +mail: LeangK@3b6256d1a2114444bde1996d1b271e4c.bitwarden.com +carLicense: 6L545C +departmentNumber: 9587 +employeeType: Employee +homePhone: +1 206 912-9765 +initials: K. L. +mobile: +1 206 492-9714 +pager: +1 206 915-6098 +roomNumber: 8091 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Celestia Tobias,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celestia Tobias +sn: Tobias +description: This is Celestia Tobias's description +facsimileTelephoneNumber: +1 408 555-1027 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 929-4963 +title: Junior Administrative Mascot +userPassword: Password1 +uid: TobiasC +givenName: Celestia +mail: TobiasC@db3ffdb4452b42c4898f995b3d073240.bitwarden.com +carLicense: 3MODH9 +departmentNumber: 1199 +employeeType: Employee +homePhone: +1 408 683-8429 +initials: C. T. +mobile: +1 408 963-4073 +pager: +1 408 569-6008 +roomNumber: 9359 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hayden Silverthorn +sn: Silverthorn +description: This is Hayden Silverthorn's description +facsimileTelephoneNumber: +1 415 422-2924 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 387-8686 +title: Master Product Development Manager +userPassword: Password1 +uid: SilvertH +givenName: Hayden +mail: SilvertH@02d364e8b5314cbabf82326287f95a37.bitwarden.com +carLicense: IU4JAP +departmentNumber: 7077 +employeeType: Employee +homePhone: +1 415 436-7499 +initials: H. S. +mobile: +1 415 537-4150 +pager: +1 415 949-5844 +roomNumber: 8415 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jet McGregor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jet McGregor +sn: McGregor +description: This is Jet McGregor's description +facsimileTelephoneNumber: +1 510 846-3610 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 406-3508 +title: Supreme Management Stooge +userPassword: Password1 +uid: McGregoJ +givenName: Jet +mail: McGregoJ@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com +carLicense: ELR0L7 +departmentNumber: 7685 +employeeType: Contract +homePhone: +1 510 437-7665 +initials: J. M. +mobile: +1 510 178-6071 +pager: +1 510 553-4803 +roomNumber: 9862 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kristien Brokaw,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristien Brokaw +sn: Brokaw +description: This is Kristien Brokaw's description +facsimileTelephoneNumber: +1 804 709-2145 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 916-9620 +title: Chief Peons Figurehead +userPassword: Password1 +uid: BrokawK +givenName: Kristien +mail: BrokawK@02ce75bcb8d0491f899a2b936126cb22.bitwarden.com +carLicense: Q4J7AP +departmentNumber: 1144 +employeeType: Contract +homePhone: +1 804 880-2444 +initials: K. B. +mobile: +1 804 897-4799 +pager: +1 804 562-6867 +roomNumber: 9013 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Karole Su,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karole Su +sn: Su +description: This is Karole Su's description +facsimileTelephoneNumber: +1 408 212-9363 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 168-8093 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: SuK +givenName: Karole +mail: SuK@a55a0552890b4055ae5195bed49574db.bitwarden.com +carLicense: 0IF23V +departmentNumber: 9900 +employeeType: Employee +homePhone: +1 408 658-8329 +initials: K. S. +mobile: +1 408 262-2294 +pager: +1 408 195-6217 +roomNumber: 9513 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clemente Ziebarth +sn: Ziebarth +description: This is Clemente Ziebarth's description +facsimileTelephoneNumber: +1 804 637-7544 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 394-5696 +title: Chief Administrative Director +userPassword: Password1 +uid: ZiebartC +givenName: Clemente +mail: ZiebartC@98b2d363da184136b48a9bfde02f5760.bitwarden.com +carLicense: HOI7JB +departmentNumber: 1333 +employeeType: Contract +homePhone: +1 804 376-7971 +initials: C. Z. +mobile: +1 804 475-3033 +pager: +1 804 122-7727 +roomNumber: 8961 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Laureen Shrieves,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laureen Shrieves +sn: Shrieves +description: This is Laureen Shrieves's description +facsimileTelephoneNumber: +1 818 633-3381 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 818 812-9944 +title: Chief Payroll Czar +userPassword: Password1 +uid: ShrieveL +givenName: Laureen +mail: ShrieveL@7f942390e1bf40f296074b513660c50e.bitwarden.com +carLicense: 8Y5HRR +departmentNumber: 6229 +employeeType: Contract +homePhone: +1 818 254-8863 +initials: L. S. +mobile: +1 818 372-6265 +pager: +1 818 717-9793 +roomNumber: 8546 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dalila Hassold,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dalila Hassold +sn: Hassold +description: This is Dalila Hassold's description +facsimileTelephoneNumber: +1 804 761-1666 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 234-3946 +title: Master Management Visionary +userPassword: Password1 +uid: HassoldD +givenName: Dalila +mail: HassoldD@8b7fc53ad9d44eee917cc3e25b895199.bitwarden.com +carLicense: 83HPEU +departmentNumber: 3816 +employeeType: Contract +homePhone: +1 804 872-9602 +initials: D. H. +mobile: +1 804 904-1462 +pager: +1 804 204-6761 +roomNumber: 8201 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Miro Trent,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miro Trent +sn: Trent +description: This is Miro Trent's description +facsimileTelephoneNumber: +1 804 306-2911 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 567-3430 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: TrentM +givenName: Miro +mail: TrentM@494658ad0bff4810b3d5b5096c85b666.bitwarden.com +carLicense: P4JXBK +departmentNumber: 3978 +employeeType: Normal +homePhone: +1 804 340-3676 +initials: M. T. +mobile: +1 804 532-3631 +pager: +1 804 760-5060 +roomNumber: 9279 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ashley Woessner,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashley Woessner +sn: Woessner +description: This is Ashley Woessner's description +facsimileTelephoneNumber: +1 415 951-2497 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 190-8640 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: WoessneA +givenName: Ashley +mail: WoessneA@dfbf12c2de4a4c2a9714439426a97be0.bitwarden.com +carLicense: VJGN1A +departmentNumber: 6018 +employeeType: Contract +homePhone: +1 415 277-2569 +initials: A. W. +mobile: +1 415 490-9186 +pager: +1 415 647-9257 +roomNumber: 8049 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Orelia Nasir,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orelia Nasir +sn: Nasir +description: This is Orelia Nasir's description +facsimileTelephoneNumber: +1 213 197-4645 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 700-2345 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: NasirO +givenName: Orelia +mail: NasirO@2ba9191b746c48859df4b1a8bcc442ae.bitwarden.com +carLicense: QIMQ3I +departmentNumber: 5457 +employeeType: Contract +homePhone: +1 213 784-3475 +initials: O. N. +mobile: +1 213 468-2671 +pager: +1 213 706-9328 +roomNumber: 8811 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yoshiaki Blann,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoshiaki Blann +sn: Blann +description: This is Yoshiaki Blann's description +facsimileTelephoneNumber: +1 408 950-7774 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 266-9676 +title: Supreme Peons Vice President +userPassword: Password1 +uid: BlannY +givenName: Yoshiaki +mail: BlannY@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com +carLicense: BBC9KM +departmentNumber: 3820 +employeeType: Normal +homePhone: +1 408 238-6836 +initials: Y. B. +mobile: +1 408 911-6573 +pager: +1 408 663-2665 +roomNumber: 8954 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jolie Dropin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolie Dropin +sn: Dropin +description: This is Jolie Dropin's description +facsimileTelephoneNumber: +1 818 405-5605 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 327-9864 +title: Junior Product Testing Grunt +userPassword: Password1 +uid: DropinJ +givenName: Jolie +mail: DropinJ@9cde21d54f45469eaa2726ba1c900158.bitwarden.com +carLicense: RPTWLT +departmentNumber: 4452 +employeeType: Employee +homePhone: +1 818 284-4903 +initials: J. D. +mobile: +1 818 174-1663 +pager: +1 818 539-1687 +roomNumber: 9071 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mami Badjari,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mami Badjari +sn: Badjari +description: This is Mami Badjari's description +facsimileTelephoneNumber: +1 408 421-5149 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 599-5195 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: BadjariM +givenName: Mami +mail: BadjariM@db74de76c5374bf883b5c0e4951495b9.bitwarden.com +carLicense: D5IXVM +departmentNumber: 4046 +employeeType: Normal +homePhone: +1 408 657-3895 +initials: M. B. +mobile: +1 408 426-6778 +pager: +1 408 514-4763 +roomNumber: 9930 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nash Enstone,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nash Enstone +sn: Enstone +description: This is Nash Enstone's description +facsimileTelephoneNumber: +1 804 359-5510 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 542-8443 +title: Master Peons Janitor +userPassword: Password1 +uid: EnstoneN +givenName: Nash +mail: EnstoneN@7dc4d22df72d4b7ea867e84e8a1a18c9.bitwarden.com +carLicense: C6J8AN +departmentNumber: 6100 +employeeType: Normal +homePhone: +1 804 676-8734 +initials: N. E. +mobile: +1 804 942-6066 +pager: +1 804 928-2174 +roomNumber: 8170 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirsteni Baribeau +sn: Baribeau +description: This is Kirsteni Baribeau's description +facsimileTelephoneNumber: +1 213 148-8814 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 213 448-6716 +title: Junior Human Resources Writer +userPassword: Password1 +uid: BaribeaK +givenName: Kirsteni +mail: BaribeaK@dc4e00565ed740ca8c4a935c1cd2fe2a.bitwarden.com +carLicense: CAN7Y1 +departmentNumber: 4485 +employeeType: Employee +homePhone: +1 213 769-3857 +initials: K. B. +mobile: +1 213 873-8409 +pager: +1 213 262-4911 +roomNumber: 9235 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crissie Panchmatia +sn: Panchmatia +description: This is Crissie Panchmatia's description +facsimileTelephoneNumber: +1 415 715-4989 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 248-7134 +title: Supreme Janitorial Mascot +userPassword: Password1 +uid: PanchmaC +givenName: Crissie +mail: PanchmaC@a5f4802ff3844a6da03607a2952d6142.bitwarden.com +carLicense: J4A765 +departmentNumber: 8339 +employeeType: Normal +homePhone: +1 415 872-2854 +initials: C. P. +mobile: +1 415 279-9465 +pager: +1 415 973-7331 +roomNumber: 8278 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Binny Strannemar,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binny Strannemar +sn: Strannemar +description: This is Binny Strannemar's description +facsimileTelephoneNumber: +1 818 788-2545 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 915-2848 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: StranneB +givenName: Binny +mail: StranneB@d1b4a8f4bfcd4e2c9e8835bd8152821a.bitwarden.com +carLicense: T9IQ4G +departmentNumber: 6654 +employeeType: Employee +homePhone: +1 818 173-7455 +initials: B. S. +mobile: +1 818 652-9179 +pager: +1 818 844-2351 +roomNumber: 9776 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dorri Auker,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorri Auker +sn: Auker +description: This is Dorri Auker's description +facsimileTelephoneNumber: +1 415 368-2250 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 415 249-3399 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: AukerD +givenName: Dorri +mail: AukerD@2adc28241a1f46749fea06db3960400f.bitwarden.com +carLicense: B9M11F +departmentNumber: 6645 +employeeType: Employee +homePhone: +1 415 761-5852 +initials: D. A. +mobile: +1 415 931-1381 +pager: +1 415 733-3022 +roomNumber: 9557 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zofia Bergstrom +sn: Bergstrom +description: This is Zofia Bergstrom's description +facsimileTelephoneNumber: +1 818 129-8750 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 628-6793 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: BergstrZ +givenName: Zofia +mail: BergstrZ@d12ac5e9d33844cb95242d9ef1474ea0.bitwarden.com +carLicense: MCJOO2 +departmentNumber: 2469 +employeeType: Employee +homePhone: +1 818 202-9367 +initials: Z. B. +mobile: +1 818 282-6451 +pager: +1 818 247-3719 +roomNumber: 8867 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Beverie Wada,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beverie Wada +sn: Wada +description: This is Beverie Wada's description +facsimileTelephoneNumber: +1 510 317-8797 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 845-2365 +title: Master Product Development Dictator +userPassword: Password1 +uid: WadaB +givenName: Beverie +mail: WadaB@f707f835774c41b68275e151d7d499c9.bitwarden.com +carLicense: IU6VC0 +departmentNumber: 1831 +employeeType: Employee +homePhone: +1 510 886-7639 +initials: B. W. +mobile: +1 510 299-6369 +pager: +1 510 344-8778 +roomNumber: 9534 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ebrahim Carbone +sn: Carbone +description: This is Ebrahim Carbone's description +facsimileTelephoneNumber: +1 415 522-1912 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 201-4113 +title: Associate Product Development Writer +userPassword: Password1 +uid: CarboneE +givenName: Ebrahim +mail: CarboneE@b7faf436ed93412c95576fc8c712f2d1.bitwarden.com +carLicense: 3EJRSY +departmentNumber: 6053 +employeeType: Employee +homePhone: +1 415 931-1268 +initials: E. C. +mobile: +1 415 970-2837 +pager: +1 415 947-5250 +roomNumber: 8489 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vivian Skaftason,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivian Skaftason +sn: Skaftason +description: This is Vivian Skaftason's description +facsimileTelephoneNumber: +1 213 584-8749 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 244-3331 +title: Associate Peons Visionary +userPassword: Password1 +uid: SkaftasV +givenName: Vivian +mail: SkaftasV@387e909c989e4028811c31a83af61782.bitwarden.com +carLicense: 3G9WT4 +departmentNumber: 2572 +employeeType: Normal +homePhone: +1 213 448-1302 +initials: V. S. +mobile: +1 213 984-2917 +pager: +1 213 320-9308 +roomNumber: 9730 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fayth Marr,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fayth Marr +sn: Marr +description: This is Fayth Marr's description +facsimileTelephoneNumber: +1 415 875-7935 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 402-5309 +title: Associate Product Testing Evangelist +userPassword: Password1 +uid: MarrF +givenName: Fayth +mail: MarrF@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com +carLicense: NU8MK5 +departmentNumber: 8726 +employeeType: Normal +homePhone: +1 415 767-1040 +initials: F. M. +mobile: +1 415 964-2757 +pager: +1 415 615-5029 +roomNumber: 8306 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rowan Reichow,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rowan Reichow +sn: Reichow +description: This is Rowan Reichow's description +facsimileTelephoneNumber: +1 510 109-2888 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 414-9247 +title: Junior Payroll Grunt +userPassword: Password1 +uid: ReichowR +givenName: Rowan +mail: ReichowR@95d418bbcea04118a52deb10863e13db.bitwarden.com +carLicense: SEXHH2 +departmentNumber: 6203 +employeeType: Contract +homePhone: +1 510 285-2139 +initials: R. R. +mobile: +1 510 257-7142 +pager: +1 510 730-8371 +roomNumber: 9756 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clementia Pesik,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clementia Pesik +sn: Pesik +description: This is Clementia Pesik's description +facsimileTelephoneNumber: +1 818 785-7073 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 887-1994 +title: Junior Payroll Czar +userPassword: Password1 +uid: PesikC +givenName: Clementia +mail: PesikC@afd234efc12945238daa43bdcf2611be.bitwarden.com +carLicense: NWH92D +departmentNumber: 7782 +employeeType: Contract +homePhone: +1 818 409-5405 +initials: C. P. +mobile: +1 818 298-3203 +pager: +1 818 142-9496 +roomNumber: 8382 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sofie Baugnon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sofie Baugnon +sn: Baugnon +description: This is Sofie Baugnon's description +facsimileTelephoneNumber: +1 213 108-6180 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 460-5086 +title: Junior Administrative Warrior +userPassword: Password1 +uid: BaugnonS +givenName: Sofie +mail: BaugnonS@59778d9e834c452586d9e26b970164f5.bitwarden.com +carLicense: IIA6DO +departmentNumber: 2157 +employeeType: Contract +homePhone: +1 213 996-6164 +initials: S. B. +mobile: +1 213 577-6365 +pager: +1 213 762-6413 +roomNumber: 8725 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Astrid Montoya,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Astrid Montoya +sn: Montoya +description: This is Astrid Montoya's description +facsimileTelephoneNumber: +1 408 590-8676 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 712-6850 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: MontoyaA +givenName: Astrid +mail: MontoyaA@936c219fa5734e078ad4251f638dcef1.bitwarden.com +carLicense: 71KMQW +departmentNumber: 6236 +employeeType: Contract +homePhone: +1 408 342-4289 +initials: A. M. +mobile: +1 408 308-7094 +pager: +1 408 478-5751 +roomNumber: 9603 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hongzhi Muzio +sn: Muzio +description: This is Hongzhi Muzio's description +facsimileTelephoneNumber: +1 804 101-8635 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 804 908-2638 +title: Supreme Administrative Evangelist +userPassword: Password1 +uid: MuzioH +givenName: Hongzhi +mail: MuzioH@4ae1d64c9a5a4ca1a7356298a39877d9.bitwarden.com +carLicense: ONKUVS +departmentNumber: 5242 +employeeType: Normal +homePhone: +1 804 668-4780 +initials: H. M. +mobile: +1 804 823-6932 +pager: +1 804 786-7510 +roomNumber: 9532 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Grover Dehoff,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grover Dehoff +sn: Dehoff +description: This is Grover Dehoff's description +facsimileTelephoneNumber: +1 408 786-3582 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 408 463-8217 +title: Chief Management Czar +userPassword: Password1 +uid: DehoffG +givenName: Grover +mail: DehoffG@8e58146437ae4809935cbbfea9366714.bitwarden.com +carLicense: IK98OF +departmentNumber: 3804 +employeeType: Employee +homePhone: +1 408 654-9099 +initials: G. D. +mobile: +1 408 876-4339 +pager: +1 408 701-8340 +roomNumber: 9636 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nerty Nair,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nerty Nair +sn: Nair +description: This is Nerty Nair's description +facsimileTelephoneNumber: +1 818 896-5956 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 855-2677 +title: Supreme Product Testing Assistant +userPassword: Password1 +uid: NairN +givenName: Nerty +mail: NairN@57c8e316985b48038aad56a3f94817a1.bitwarden.com +carLicense: DHWROD +departmentNumber: 7940 +employeeType: Normal +homePhone: +1 818 677-3610 +initials: N. N. +mobile: +1 818 504-8131 +pager: +1 818 832-1032 +roomNumber: 8436 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eloisa Gehr +sn: Gehr +description: This is Eloisa Gehr's description +facsimileTelephoneNumber: +1 206 567-4591 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 210-8862 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: GehrE +givenName: Eloisa +mail: GehrE@0cee059feb2f45d0a3e77b9cb46c95e2.bitwarden.com +carLicense: KP3H9E +departmentNumber: 5971 +employeeType: Contract +homePhone: +1 206 505-4875 +initials: E. G. +mobile: +1 206 955-7938 +pager: +1 206 556-1758 +roomNumber: 9384 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rene McKearney,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rene McKearney +sn: McKearney +description: This is Rene McKearney's description +facsimileTelephoneNumber: +1 408 242-1442 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 585-6354 +title: Supreme Peons Writer +userPassword: Password1 +uid: McKearnR +givenName: Rene +mail: McKearnR@62d6b52263d643d2a05493b576aca6a5.bitwarden.com +carLicense: 0Q3FW4 +departmentNumber: 6553 +employeeType: Employee +homePhone: +1 408 336-2483 +initials: R. M. +mobile: +1 408 330-7005 +pager: +1 408 132-8497 +roomNumber: 8554 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Pat Libadmin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pat Libadmin +sn: Libadmin +description: This is Pat Libadmin's description +facsimileTelephoneNumber: +1 804 575-8696 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 313-6267 +title: Master Payroll Vice President +userPassword: Password1 +uid: LibadmiP +givenName: Pat +mail: LibadmiP@adfd9881a9c8497ca549f3f76c4a7563.bitwarden.com +carLicense: DKSVSB +departmentNumber: 9944 +employeeType: Contract +homePhone: +1 804 936-7201 +initials: P. L. +mobile: +1 804 344-5895 +pager: +1 804 659-8322 +roomNumber: 8489 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anneliese Dunningham +sn: Dunningham +description: This is Anneliese Dunningham's description +facsimileTelephoneNumber: +1 510 255-3959 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 623-2319 +title: Chief Human Resources Engineer +userPassword: Password1 +uid: DunningA +givenName: Anneliese +mail: DunningA@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com +carLicense: O1IEIO +departmentNumber: 5717 +employeeType: Contract +homePhone: +1 510 508-2316 +initials: A. D. +mobile: +1 510 664-6154 +pager: +1 510 502-7952 +roomNumber: 8197 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kanu Slozil,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanu Slozil +sn: Slozil +description: This is Kanu Slozil's description +facsimileTelephoneNumber: +1 408 855-5038 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 253-4074 +title: Chief Administrative Punk +userPassword: Password1 +uid: SlozilK +givenName: Kanu +mail: SlozilK@841df0a2276144ffade10ec334e0a08c.bitwarden.com +carLicense: IA54QD +departmentNumber: 1857 +employeeType: Normal +homePhone: +1 408 900-8614 +initials: K. S. +mobile: +1 408 184-5609 +pager: +1 408 324-5285 +roomNumber: 8094 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cecile Shupe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cecile Shupe +sn: Shupe +description: This is Cecile Shupe's description +facsimileTelephoneNumber: +1 213 329-2096 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 494-5142 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: ShupeC +givenName: Cecile +mail: ShupeC@ece1fab2e72c4ef2980d13b290c0165f.bitwarden.com +carLicense: 7QM92R +departmentNumber: 3580 +employeeType: Normal +homePhone: +1 213 451-4330 +initials: C. S. +mobile: +1 213 113-2961 +pager: +1 213 192-7903 +roomNumber: 8374 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fahim Kandra,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fahim Kandra +sn: Kandra +description: This is Fahim Kandra's description +facsimileTelephoneNumber: +1 408 895-7891 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 349-3720 +title: Associate Administrative Architect +userPassword: Password1 +uid: KandraF +givenName: Fahim +mail: KandraF@e9f78b5202b6404b9ee727f9d75a47b9.bitwarden.com +carLicense: 8VS9NA +departmentNumber: 8075 +employeeType: Employee +homePhone: +1 408 799-8562 +initials: F. K. +mobile: +1 408 473-9188 +pager: +1 408 718-8426 +roomNumber: 9596 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gerald Laroche,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerald Laroche +sn: Laroche +description: This is Gerald Laroche's description +facsimileTelephoneNumber: +1 213 879-9388 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 824-6190 +title: Junior Janitorial Janitor +userPassword: Password1 +uid: LarocheG +givenName: Gerald +mail: LarocheG@c2ff834411a74d309100193d31df013a.bitwarden.com +carLicense: 8GXOAI +departmentNumber: 2180 +employeeType: Normal +homePhone: +1 213 587-8049 +initials: G. L. +mobile: +1 213 127-9116 +pager: +1 213 146-5745 +roomNumber: 8261 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChiYin Wikkerink +sn: Wikkerink +description: This is ChiYin Wikkerink's description +facsimileTelephoneNumber: +1 415 346-2998 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 200-1146 +title: Junior Janitorial President +userPassword: Password1 +uid: WikkeriC +givenName: ChiYin +mail: WikkeriC@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com +carLicense: XXSX7X +departmentNumber: 8023 +employeeType: Employee +homePhone: +1 415 335-4206 +initials: C. W. +mobile: +1 415 360-9830 +pager: +1 415 283-8837 +roomNumber: 9501 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Devon Pesold,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devon Pesold +sn: Pesold +description: This is Devon Pesold's description +facsimileTelephoneNumber: +1 408 758-4886 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 253-4981 +title: Master Janitorial Vice President +userPassword: Password1 +uid: PesoldD +givenName: Devon +mail: PesoldD@9befe039acaf4d578a86c80d677d5d49.bitwarden.com +carLicense: NQWU7N +departmentNumber: 7664 +employeeType: Employee +homePhone: +1 408 394-6182 +initials: D. P. +mobile: +1 408 384-1885 +pager: +1 408 115-7459 +roomNumber: 9018 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Daile Burger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daile Burger +sn: Burger +description: This is Daile Burger's description +facsimileTelephoneNumber: +1 213 990-1344 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 116-1760 +title: Chief Administrative Vice President +userPassword: Password1 +uid: BurgerD +givenName: Daile +mail: BurgerD@2050283a8ad249b48adb290c7534145d.bitwarden.com +carLicense: WFLT3F +departmentNumber: 9844 +employeeType: Employee +homePhone: +1 213 185-9871 +initials: D. B. +mobile: +1 213 510-5756 +pager: +1 213 832-5792 +roomNumber: 8050 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanNormand Kauffman +sn: Kauffman +description: This is JeanNormand Kauffman's description +facsimileTelephoneNumber: +1 804 190-4401 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 804 940-8746 +title: Junior Payroll Mascot +userPassword: Password1 +uid: KauffmaJ +givenName: JeanNormand +mail: KauffmaJ@4fd308eba088404ab84d4a632c943b2d.bitwarden.com +carLicense: R5GMAM +departmentNumber: 7357 +employeeType: Normal +homePhone: +1 804 736-7328 +initials: J. K. +mobile: +1 804 164-1675 +pager: +1 804 602-1950 +roomNumber: 9721 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tricord Gumb,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tricord Gumb +sn: Gumb +description: This is Tricord Gumb's description +facsimileTelephoneNumber: +1 510 388-7218 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 779-3947 +title: Supreme Peons Mascot +userPassword: Password1 +uid: GumbT +givenName: Tricord +mail: GumbT@1114ec94893c4de2b94b261fe2161258.bitwarden.com +carLicense: 75DO2K +departmentNumber: 4010 +employeeType: Employee +homePhone: +1 510 639-6021 +initials: T. G. +mobile: +1 510 839-4271 +pager: +1 510 590-8733 +roomNumber: 8256 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shena Atteridge,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shena Atteridge +sn: Atteridge +description: This is Shena Atteridge's description +facsimileTelephoneNumber: +1 818 228-6997 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 222-4425 +title: Associate Product Development Stooge +userPassword: Password1 +uid: AtteridS +givenName: Shena +mail: AtteridS@34b13abf3e53487c98ee71b110b55537.bitwarden.com +carLicense: VXBJGE +departmentNumber: 1428 +employeeType: Contract +homePhone: +1 818 950-3400 +initials: S. A. +mobile: +1 818 299-7423 +pager: +1 818 674-5387 +roomNumber: 8162 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Silvester Piette,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silvester Piette +sn: Piette +description: This is Silvester Piette's description +facsimileTelephoneNumber: +1 206 565-3259 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 219-3479 +title: Master Administrative Vice President +userPassword: Password1 +uid: PietteS +givenName: Silvester +mail: PietteS@7e7373daa08d4a3b834f2e415978d199.bitwarden.com +carLicense: DXBIBE +departmentNumber: 2446 +employeeType: Normal +homePhone: +1 206 858-1277 +initials: S. P. +mobile: +1 206 832-9720 +pager: +1 206 280-7197 +roomNumber: 9202 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Amnon Gause,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amnon Gause +sn: Gause +description: This is Amnon Gause's description +facsimileTelephoneNumber: +1 818 571-1217 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 575-2523 +title: Master Product Development Janitor +userPassword: Password1 +uid: GauseA +givenName: Amnon +mail: GauseA@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com +carLicense: CL3KIX +departmentNumber: 7400 +employeeType: Contract +homePhone: +1 818 651-9009 +initials: A. G. +mobile: +1 818 696-6246 +pager: +1 818 129-9506 +roomNumber: 9713 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Clemente Eva,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clemente Eva +sn: Eva +description: This is Clemente Eva's description +facsimileTelephoneNumber: +1 510 929-9842 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 510 194-2090 +title: Associate Product Development Director +userPassword: Password1 +uid: EvaC +givenName: Clemente +mail: EvaC@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com +carLicense: V3AXYC +departmentNumber: 1365 +employeeType: Employee +homePhone: +1 510 697-6573 +initials: C. E. +mobile: +1 510 539-2072 +pager: +1 510 529-2031 +roomNumber: 9589 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Donnajean Carron,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donnajean Carron +sn: Carron +description: This is Donnajean Carron's description +facsimileTelephoneNumber: +1 206 163-8939 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 345-4978 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: CarronD +givenName: Donnajean +mail: CarronD@d0eb59d9416b478ea7e9e6add086d998.bitwarden.com +carLicense: 70DDD6 +departmentNumber: 8280 +employeeType: Employee +homePhone: +1 206 908-9866 +initials: D. C. +mobile: +1 206 917-6856 +pager: +1 206 781-9174 +roomNumber: 8999 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wieslaw Serbus +sn: Serbus +description: This is Wieslaw Serbus's description +facsimileTelephoneNumber: +1 510 711-8241 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 504-3526 +title: Master Janitorial Fellow +userPassword: Password1 +uid: SerbusW +givenName: Wieslaw +mail: SerbusW@e67a7ab12b0d4d819423914b8a02e571.bitwarden.com +carLicense: E93TBF +departmentNumber: 2929 +employeeType: Normal +homePhone: +1 510 334-2059 +initials: W. S. +mobile: +1 510 866-5795 +pager: +1 510 379-5938 +roomNumber: 9561 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ailene Chavez,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailene Chavez +sn: Chavez +description: This is Ailene Chavez's description +facsimileTelephoneNumber: +1 510 671-6550 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 341-2540 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: ChavezA +givenName: Ailene +mail: ChavezA@49f125d3a1b3429789a5b52822aa6b88.bitwarden.com +carLicense: U0X3FG +departmentNumber: 8222 +employeeType: Contract +homePhone: +1 510 386-6883 +initials: A. C. +mobile: +1 510 311-4827 +pager: +1 510 676-7641 +roomNumber: 8779 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Annet Leshowitz,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annet Leshowitz +sn: Leshowitz +description: This is Annet Leshowitz's description +facsimileTelephoneNumber: +1 408 477-3114 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 170-1486 +title: Associate Management Vice President +userPassword: Password1 +uid: LeshowiA +givenName: Annet +mail: LeshowiA@f6a15f7382e844a784e99c66615d4c58.bitwarden.com +carLicense: GEP8SL +departmentNumber: 9883 +employeeType: Employee +homePhone: +1 408 941-9562 +initials: A. L. +mobile: +1 408 338-3326 +pager: +1 408 891-9752 +roomNumber: 9757 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Willy Jimenez,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willy Jimenez +sn: Jimenez +description: This is Willy Jimenez's description +facsimileTelephoneNumber: +1 213 616-6443 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 225-1637 +title: Supreme Human Resources Engineer +userPassword: Password1 +uid: JimenezW +givenName: Willy +mail: JimenezW@91c1e03d3c58475f891067cc0da82fda.bitwarden.com +carLicense: NW6TEE +departmentNumber: 9488 +employeeType: Normal +homePhone: +1 213 642-4441 +initials: W. J. +mobile: +1 213 303-3902 +pager: +1 213 473-5437 +roomNumber: 9564 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Teddi Arai,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teddi Arai +sn: Arai +description: This is Teddi Arai's description +facsimileTelephoneNumber: +1 818 482-4296 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 818 874-2301 +title: Associate Payroll Mascot +userPassword: Password1 +uid: AraiT +givenName: Teddi +mail: AraiT@23c49cd8e8ea45d2969cffc2057f5127.bitwarden.com +carLicense: G1G7KY +departmentNumber: 6051 +employeeType: Contract +homePhone: +1 818 361-2440 +initials: T. A. +mobile: +1 818 455-8535 +pager: +1 818 834-6087 +roomNumber: 8986 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tammy McBeth,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tammy McBeth +sn: McBeth +description: This is Tammy McBeth's description +facsimileTelephoneNumber: +1 415 892-9096 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 292-9389 +title: Chief Human Resources Writer +userPassword: Password1 +uid: McBethT +givenName: Tammy +mail: McBethT@a0441f048a884d1891acef81ab17bc91.bitwarden.com +carLicense: 5IPLKA +departmentNumber: 8175 +employeeType: Contract +homePhone: +1 415 819-3943 +initials: T. M. +mobile: +1 415 850-7972 +pager: +1 415 879-1255 +roomNumber: 8796 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Waverly Cadshare,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Waverly Cadshare +sn: Cadshare +description: This is Waverly Cadshare's description +facsimileTelephoneNumber: +1 818 918-6267 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 409-8719 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: CadsharW +givenName: Waverly +mail: CadsharW@1fca0d84539f4e2793fe7b6d498c02ff.bitwarden.com +carLicense: KW1XL5 +departmentNumber: 1557 +employeeType: Normal +homePhone: +1 818 856-5368 +initials: W. C. +mobile: +1 818 174-2371 +pager: +1 818 255-3169 +roomNumber: 8889 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=JeanLouis Okura,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanLouis Okura +sn: Okura +description: This is JeanLouis Okura's description +facsimileTelephoneNumber: +1 415 436-3026 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 415 299-7885 +title: Master Payroll Developer +userPassword: Password1 +uid: OkuraJ +givenName: JeanLouis +mail: OkuraJ@70e5048368bb463a909414f19d29543c.bitwarden.com +carLicense: BWSWCR +departmentNumber: 6400 +employeeType: Contract +homePhone: +1 415 527-1755 +initials: J. O. +mobile: +1 415 732-6371 +pager: +1 415 768-2522 +roomNumber: 8461 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tonia Khosla,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonia Khosla +sn: Khosla +description: This is Tonia Khosla's description +facsimileTelephoneNumber: +1 206 961-5018 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 616-7344 +title: Supreme Peons Sales Rep +userPassword: Password1 +uid: KhoslaT +givenName: Tonia +mail: KhoslaT@9c2e6c9cd4a84de798c45d0f7e513159.bitwarden.com +carLicense: TI4GPJ +departmentNumber: 6087 +employeeType: Normal +homePhone: +1 206 765-9019 +initials: T. K. +mobile: +1 206 335-1219 +pager: +1 206 605-3112 +roomNumber: 8627 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Binni Rasmussen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binni Rasmussen +sn: Rasmussen +description: This is Binni Rasmussen's description +facsimileTelephoneNumber: +1 818 480-2306 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 326-7968 +title: Supreme Management Stooge +userPassword: Password1 +uid: RasmussB +givenName: Binni +mail: RasmussB@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com +carLicense: QVNR9N +departmentNumber: 5996 +employeeType: Normal +homePhone: +1 818 813-3980 +initials: B. R. +mobile: +1 818 740-8104 +pager: +1 818 788-5005 +roomNumber: 8274 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Herb Stansbury,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herb Stansbury +sn: Stansbury +description: This is Herb Stansbury's description +facsimileTelephoneNumber: +1 408 173-4504 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 335-2446 +title: Supreme Peons Warrior +userPassword: Password1 +uid: StansbuH +givenName: Herb +mail: StansbuH@e163cc78ce6a4972adc62831f8cfd810.bitwarden.com +carLicense: CMBCWC +departmentNumber: 2943 +employeeType: Employee +homePhone: +1 408 690-1280 +initials: H. S. +mobile: +1 408 154-8965 +pager: +1 408 163-2623 +roomNumber: 8958 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ralina Fouke,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ralina Fouke +sn: Fouke +description: This is Ralina Fouke's description +facsimileTelephoneNumber: +1 818 822-2310 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 818 726-9459 +title: Supreme Administrative Punk +userPassword: Password1 +uid: FoukeR +givenName: Ralina +mail: FoukeR@3358f35c8d4144d59100e666ebc7914f.bitwarden.com +carLicense: LX7XV7 +departmentNumber: 1076 +employeeType: Normal +homePhone: +1 818 649-9938 +initials: R. F. +mobile: +1 818 435-2308 +pager: +1 818 936-7429 +roomNumber: 8367 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ehi Lawrie +sn: Lawrie +description: This is Ehi Lawrie's description +facsimileTelephoneNumber: +1 213 507-3416 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 457-6547 +title: Master Human Resources Director +userPassword: Password1 +uid: LawrieE +givenName: Ehi +mail: LawrieE@0fcafdb14683453782c5b7d16f816196.bitwarden.com +carLicense: 8GM2IM +departmentNumber: 5104 +employeeType: Normal +homePhone: +1 213 106-1695 +initials: E. L. +mobile: +1 213 508-5142 +pager: +1 213 124-3581 +roomNumber: 9711 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Merridie Vankooten,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merridie Vankooten +sn: Vankooten +description: This is Merridie Vankooten's description +facsimileTelephoneNumber: +1 415 830-6815 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 429-9258 +title: Master Payroll Figurehead +userPassword: Password1 +uid: VankootM +givenName: Merridie +mail: VankootM@41bf97a0f83643ecb5c3ae7dea3fc6f2.bitwarden.com +carLicense: GMB75B +departmentNumber: 7913 +employeeType: Normal +homePhone: +1 415 795-5170 +initials: M. V. +mobile: +1 415 102-3396 +pager: +1 415 185-1985 +roomNumber: 8535 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalinda Joachimpillai +sn: Joachimpillai +description: This is Kalinda Joachimpillai's description +facsimileTelephoneNumber: +1 804 641-9567 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 624-6000 +title: Chief Management Figurehead +userPassword: Password1 +uid: JoachimK +givenName: Kalinda +mail: JoachimK@e99ccdd4f1854e85b7018db9ee827387.bitwarden.com +carLicense: FLYCAT +departmentNumber: 5414 +employeeType: Normal +homePhone: +1 804 172-8252 +initials: K. J. +mobile: +1 804 283-9652 +pager: +1 804 805-7037 +roomNumber: 8986 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Millie Doda,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Millie Doda +sn: Doda +description: This is Millie Doda's description +facsimileTelephoneNumber: +1 804 497-3854 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 344-8641 +title: Junior Management Sales Rep +userPassword: Password1 +uid: DodaM +givenName: Millie +mail: DodaM@7341939506294cf3bdd4bdeca7674074.bitwarden.com +carLicense: 3OAOOD +departmentNumber: 4663 +employeeType: Normal +homePhone: +1 804 185-1961 +initials: M. D. +mobile: +1 804 722-7806 +pager: +1 804 298-6191 +roomNumber: 8476 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alexia Layton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alexia Layton +sn: Layton +description: This is Alexia Layton's description +facsimileTelephoneNumber: +1 206 951-1106 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 287-3409 +title: Master Janitorial Grunt +userPassword: Password1 +uid: LaytonA +givenName: Alexia +mail: LaytonA@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com +carLicense: GKS4R8 +departmentNumber: 1510 +employeeType: Contract +homePhone: +1 206 295-8399 +initials: A. L. +mobile: +1 206 615-5794 +pager: +1 206 839-9628 +roomNumber: 8027 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lottie Filpus,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lottie Filpus +sn: Filpus +description: This is Lottie Filpus's description +facsimileTelephoneNumber: +1 804 333-1154 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 804 504-9684 +title: Master Management Assistant +userPassword: Password1 +uid: FilpusL +givenName: Lottie +mail: FilpusL@f069d8208db84a5496e2d819694425d2.bitwarden.com +carLicense: LIFPQA +departmentNumber: 5829 +employeeType: Normal +homePhone: +1 804 298-8577 +initials: L. F. +mobile: +1 804 965-2918 +pager: +1 804 549-5964 +roomNumber: 8343 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tommie Craib,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tommie Craib +sn: Craib +description: This is Tommie Craib's description +facsimileTelephoneNumber: +1 408 550-7882 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 755-3038 +title: Junior Peons Pinhead +userPassword: Password1 +uid: CraibT +givenName: Tommie +mail: CraibT@a1229ea2ddce4147b437f4d3ad26de38.bitwarden.com +carLicense: B2A7RE +departmentNumber: 6477 +employeeType: Employee +homePhone: +1 408 856-5589 +initials: T. C. +mobile: +1 408 334-5196 +pager: +1 408 473-2629 +roomNumber: 8481 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Narrima Cavnar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Narrima Cavnar +sn: Cavnar +description: This is Narrima Cavnar's description +facsimileTelephoneNumber: +1 415 886-7568 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 636-4025 +title: Supreme Payroll Dictator +userPassword: Password1 +uid: CavnarN +givenName: Narrima +mail: CavnarN@d5cee79f473a444ab2622a6d06a74e01.bitwarden.com +carLicense: 2GG35F +departmentNumber: 5080 +employeeType: Normal +homePhone: +1 415 141-8410 +initials: N. C. +mobile: +1 415 879-3478 +pager: +1 415 768-5408 +roomNumber: 9103 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Walt Gentes,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walt Gentes +sn: Gentes +description: This is Walt Gentes's description +facsimileTelephoneNumber: +1 206 708-4021 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 578-9410 +title: Junior Administrative Admin +userPassword: Password1 +uid: GentesW +givenName: Walt +mail: GentesW@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com +carLicense: CRF094 +departmentNumber: 8028 +employeeType: Contract +homePhone: +1 206 942-1135 +initials: W. G. +mobile: +1 206 326-3105 +pager: +1 206 290-7209 +roomNumber: 8955 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gay Acelvari,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gay Acelvari +sn: Acelvari +description: This is Gay Acelvari's description +facsimileTelephoneNumber: +1 804 389-5990 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 803-5411 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: AcelvarG +givenName: Gay +mail: AcelvarG@00cf2c241c534697a382f39ac298a035.bitwarden.com +carLicense: K8JYKC +departmentNumber: 3013 +employeeType: Normal +homePhone: +1 804 920-6284 +initials: G. A. +mobile: +1 804 434-3756 +pager: +1 804 602-5923 +roomNumber: 8878 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Raeann Laws,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raeann Laws +sn: Laws +description: This is Raeann Laws's description +facsimileTelephoneNumber: +1 415 753-2076 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 750-5333 +title: Associate Peons Grunt +userPassword: Password1 +uid: LawsR +givenName: Raeann +mail: LawsR@14a50969231442b7a4661f1630e8f16c.bitwarden.com +carLicense: LXN12S +departmentNumber: 8704 +employeeType: Normal +homePhone: +1 415 180-7432 +initials: R. L. +mobile: +1 415 412-9199 +pager: +1 415 800-7573 +roomNumber: 9595 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=YuKai Goodrow,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YuKai Goodrow +sn: Goodrow +description: This is YuKai Goodrow's description +facsimileTelephoneNumber: +1 206 548-1064 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 584-1853 +title: Associate Payroll Grunt +userPassword: Password1 +uid: GoodrowY +givenName: YuKai +mail: GoodrowY@5961547593ce4d3d831c972ef1cd392b.bitwarden.com +carLicense: 448D8R +departmentNumber: 4640 +employeeType: Contract +homePhone: +1 206 752-6424 +initials: Y. G. +mobile: +1 206 655-5189 +pager: +1 206 217-1567 +roomNumber: 9885 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorrin Bnrinfo +sn: Bnrinfo +description: This is Lorrin Bnrinfo's description +facsimileTelephoneNumber: +1 415 728-5268 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 359-7851 +title: Junior Product Testing Figurehead +userPassword: Password1 +uid: BnrinfoL +givenName: Lorrin +mail: BnrinfoL@7c6533f264974d51a9e95294d086acef.bitwarden.com +carLicense: D58FMA +departmentNumber: 9769 +employeeType: Normal +homePhone: +1 415 732-6775 +initials: L. B. +mobile: +1 415 545-1042 +pager: +1 415 439-4822 +roomNumber: 9028 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tad Caceres,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tad Caceres +sn: Caceres +description: This is Tad Caceres's description +facsimileTelephoneNumber: +1 818 127-5598 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 222-7029 +title: Associate Janitorial Assistant +userPassword: Password1 +uid: CaceresT +givenName: Tad +mail: CaceresT@aa27b3d0b2304f6aa579ad064be338d9.bitwarden.com +carLicense: 0SGQP9 +departmentNumber: 4022 +employeeType: Contract +homePhone: +1 818 919-5435 +initials: T. C. +mobile: +1 818 950-1266 +pager: +1 818 986-4293 +roomNumber: 8506 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dorreen Dewit,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorreen Dewit +sn: Dewit +description: This is Dorreen Dewit's description +facsimileTelephoneNumber: +1 510 208-9362 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 554-8214 +title: Chief Administrative Mascot +userPassword: Password1 +uid: DewitD +givenName: Dorreen +mail: DewitD@789d3ef8deb24c20bce9e2915a466aef.bitwarden.com +carLicense: J7MJ9N +departmentNumber: 4202 +employeeType: Normal +homePhone: +1 510 454-9122 +initials: D. D. +mobile: +1 510 414-7571 +pager: +1 510 484-1775 +roomNumber: 8322 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Francisca Griswold,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francisca Griswold +sn: Griswold +description: This is Francisca Griswold's description +facsimileTelephoneNumber: +1 213 932-7629 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 415-1288 +title: Junior Management Figurehead +userPassword: Password1 +uid: GriswolF +givenName: Francisca +mail: GriswolF@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com +carLicense: HCAEJK +departmentNumber: 2680 +employeeType: Contract +homePhone: +1 213 781-9757 +initials: F. G. +mobile: +1 213 171-2946 +pager: +1 213 785-9831 +roomNumber: 8045 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Motaz Metz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Motaz Metz +sn: Metz +description: This is Motaz Metz's description +facsimileTelephoneNumber: +1 206 385-4268 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 410-8265 +title: Junior Janitorial Director +userPassword: Password1 +uid: MetzM +givenName: Motaz +mail: MetzM@c6ecb3f5d2c24d25a5b9ac4ff092f2f0.bitwarden.com +carLicense: FQXXCF +departmentNumber: 4562 +employeeType: Contract +homePhone: +1 206 536-9982 +initials: M. M. +mobile: +1 206 204-8227 +pager: +1 206 173-1224 +roomNumber: 8520 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lorry Suprick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorry Suprick +sn: Suprick +description: This is Lorry Suprick's description +facsimileTelephoneNumber: +1 213 698-1364 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 521-8766 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: SuprickL +givenName: Lorry +mail: SuprickL@ae7270bab55c471e8d4684834aceebc2.bitwarden.com +carLicense: N7ONMJ +departmentNumber: 8305 +employeeType: Normal +homePhone: +1 213 990-3774 +initials: L. S. +mobile: +1 213 319-4179 +pager: +1 213 565-6773 +roomNumber: 8416 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cassey Precoda,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassey Precoda +sn: Precoda +description: This is Cassey Precoda's description +facsimileTelephoneNumber: +1 206 484-5723 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 845-3524 +title: Master Product Development Consultant +userPassword: Password1 +uid: PrecodaC +givenName: Cassey +mail: PrecodaC@a4566d06f4404638b79325caaec894f9.bitwarden.com +carLicense: MN6J43 +departmentNumber: 8441 +employeeType: Contract +homePhone: +1 206 560-1733 +initials: C. P. +mobile: +1 206 919-8498 +pager: +1 206 917-6696 +roomNumber: 8858 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kevina Zauhar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kevina Zauhar +sn: Zauhar +description: This is Kevina Zauhar's description +facsimileTelephoneNumber: +1 415 856-1163 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 266-5234 +title: Master Payroll Pinhead +userPassword: Password1 +uid: ZauharK +givenName: Kevina +mail: ZauharK@e705dc3960ae453fb9cbbc66d57830b4.bitwarden.com +carLicense: S23HOD +departmentNumber: 4753 +employeeType: Employee +homePhone: +1 415 427-3102 +initials: K. Z. +mobile: +1 415 384-5864 +pager: +1 415 393-5650 +roomNumber: 8123 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Diandra Pafilis,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diandra Pafilis +sn: Pafilis +description: This is Diandra Pafilis's description +facsimileTelephoneNumber: +1 818 553-9327 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 855-4038 +title: Chief Management Punk +userPassword: Password1 +uid: PafilisD +givenName: Diandra +mail: PafilisD@06d31112a23c438e8cd439e22e02ac63.bitwarden.com +carLicense: BQGIHD +departmentNumber: 8129 +employeeType: Contract +homePhone: +1 818 362-1716 +initials: D. P. +mobile: +1 818 356-9790 +pager: +1 818 261-9444 +roomNumber: 9439 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shaylah Poyner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaylah Poyner +sn: Poyner +description: This is Shaylah Poyner's description +facsimileTelephoneNumber: +1 804 966-9614 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 295-3935 +title: Chief Peons Figurehead +userPassword: Password1 +uid: PoynerS +givenName: Shaylah +mail: PoynerS@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com +carLicense: L4CFFQ +departmentNumber: 3001 +employeeType: Normal +homePhone: +1 804 170-5971 +initials: S. P. +mobile: +1 804 858-4158 +pager: +1 804 857-9599 +roomNumber: 8885 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Agenia Joshi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agenia Joshi +sn: Joshi +description: This is Agenia Joshi's description +facsimileTelephoneNumber: +1 510 143-3233 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 266-6881 +title: Chief Product Development Sales Rep +userPassword: Password1 +uid: JoshiA +givenName: Agenia +mail: JoshiA@6e182e42a9474534add2d6f2d3638914.bitwarden.com +carLicense: F13741 +departmentNumber: 5494 +employeeType: Contract +homePhone: +1 510 718-6369 +initials: A. J. +mobile: +1 510 408-3000 +pager: +1 510 754-4300 +roomNumber: 9454 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aaren LaVecchia +sn: LaVecchia +description: This is Aaren LaVecchia's description +facsimileTelephoneNumber: +1 213 604-9468 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 249-1415 +title: Supreme Janitorial Director +userPassword: Password1 +uid: LaVecchA +givenName: Aaren +mail: LaVecchA@bd2c7ab0e4084b83a6509029744de154.bitwarden.com +carLicense: UYTEKC +departmentNumber: 5697 +employeeType: Contract +homePhone: +1 213 569-9344 +initials: A. L. +mobile: +1 213 138-2839 +pager: +1 213 849-5501 +roomNumber: 8002 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rodrigus Watchmaker +sn: Watchmaker +description: This is Rodrigus Watchmaker's description +facsimileTelephoneNumber: +1 415 809-5858 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 927-6452 +title: Master Product Testing President +userPassword: Password1 +uid: WatchmaR +givenName: Rodrigus +mail: WatchmaR@e10037e1eec24ce3ab8d8566fc3aaa83.bitwarden.com +carLicense: KFC9EG +departmentNumber: 4934 +employeeType: Normal +homePhone: +1 415 650-4763 +initials: R. W. +mobile: +1 415 511-5792 +pager: +1 415 165-7156 +roomNumber: 9673 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madalena Oziemblo +sn: Oziemblo +description: This is Madalena Oziemblo's description +facsimileTelephoneNumber: +1 408 125-7332 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 405-6014 +title: Master Payroll Writer +userPassword: Password1 +uid: OziemblM +givenName: Madalena +mail: OziemblM@0e5adb3dd0d14cc89a2b37de2a8aa9c6.bitwarden.com +carLicense: OUAEPM +departmentNumber: 6071 +employeeType: Contract +homePhone: +1 408 248-7408 +initials: M. O. +mobile: +1 408 377-3279 +pager: +1 408 276-4554 +roomNumber: 8636 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Imre Farag,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imre Farag +sn: Farag +description: This is Imre Farag's description +facsimileTelephoneNumber: +1 415 464-5144 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 525-1855 +title: Master Product Development Warrior +userPassword: Password1 +uid: FaragI +givenName: Imre +mail: FaragI@00cec4060ff5488a983c2cc3b42801e4.bitwarden.com +carLicense: 9SFCR3 +departmentNumber: 9515 +employeeType: Contract +homePhone: +1 415 406-7806 +initials: I. F. +mobile: +1 415 869-2208 +pager: +1 415 865-2300 +roomNumber: 8289 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alina Naphan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alina Naphan +sn: Naphan +description: This is Alina Naphan's description +facsimileTelephoneNumber: +1 206 941-7408 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 815-7262 +title: Junior Management President +userPassword: Password1 +uid: NaphanA +givenName: Alina +mail: NaphanA@e9aa0388b0974f709cc43e6d5c1d4048.bitwarden.com +carLicense: G1KROT +departmentNumber: 1724 +employeeType: Contract +homePhone: +1 206 653-7873 +initials: A. N. +mobile: +1 206 551-9541 +pager: +1 206 333-5197 +roomNumber: 9176 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariquilla Gibson +sn: Gibson +description: This is Mariquilla Gibson's description +facsimileTelephoneNumber: +1 408 655-6642 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 408 904-3622 +title: Chief Janitorial Consultant +userPassword: Password1 +uid: GibsonM +givenName: Mariquilla +mail: GibsonM@29c3d32bd72d456b98ccdb1f1f704bb5.bitwarden.com +carLicense: CHJTPE +departmentNumber: 1220 +employeeType: Employee +homePhone: +1 408 199-3009 +initials: M. G. +mobile: +1 408 277-4389 +pager: +1 408 876-4987 +roomNumber: 9928 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Twila Billard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Twila Billard +sn: Billard +description: This is Twila Billard's description +facsimileTelephoneNumber: +1 415 880-7605 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 458-7724 +title: Associate Management Czar +userPassword: Password1 +uid: BillardT +givenName: Twila +mail: BillardT@6fe2230bebbe45c4b4897cbd6f689c6c.bitwarden.com +carLicense: YGNSIP +departmentNumber: 1046 +employeeType: Employee +homePhone: +1 415 384-9806 +initials: T. B. +mobile: +1 415 613-4692 +pager: +1 415 423-5430 +roomNumber: 8485 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xiaojing Wooff +sn: Wooff +description: This is Xiaojing Wooff's description +facsimileTelephoneNumber: +1 818 559-4807 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 699-8080 +title: Chief Administrative Developer +userPassword: Password1 +uid: WooffX +givenName: Xiaojing +mail: WooffX@55ead9ec44144dd8a609d27bbb37e157.bitwarden.com +carLicense: 5DI6WW +departmentNumber: 5357 +employeeType: Contract +homePhone: +1 818 609-8079 +initials: X. W. +mobile: +1 818 635-4462 +pager: +1 818 990-4250 +roomNumber: 9629 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ari Windom,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ari Windom +sn: Windom +description: This is Ari Windom's description +facsimileTelephoneNumber: +1 213 849-6034 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 961-1285 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: WindomA +givenName: Ari +mail: WindomA@d5a62d125bc14270b01fa0b9a8576c7d.bitwarden.com +carLicense: M9DJ6H +departmentNumber: 4921 +employeeType: Contract +homePhone: +1 213 163-8881 +initials: A. W. +mobile: +1 213 414-6686 +pager: +1 213 686-4809 +roomNumber: 8845 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Opaline Gomes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opaline Gomes +sn: Gomes +description: This is Opaline Gomes's description +facsimileTelephoneNumber: +1 415 513-4786 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 415 107-7714 +title: Chief Management Grunt +userPassword: Password1 +uid: GomesO +givenName: Opaline +mail: GomesO@3009937061fa44e08033cd2d77480708.bitwarden.com +carLicense: FI7TIT +departmentNumber: 4274 +employeeType: Employee +homePhone: +1 415 139-2668 +initials: O. G. +mobile: +1 415 812-4749 +pager: +1 415 980-7635 +roomNumber: 9755 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rodi Dyrdahl +sn: Dyrdahl +description: This is Rodi Dyrdahl's description +facsimileTelephoneNumber: +1 818 121-9364 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 508-7248 +title: Associate Peons President +userPassword: Password1 +uid: DyrdahlR +givenName: Rodi +mail: DyrdahlR@4c9ea5cb0c6d47f0bff8da92c6c9d0eb.bitwarden.com +carLicense: 5PU9DB +departmentNumber: 4319 +employeeType: Contract +homePhone: +1 818 698-6673 +initials: R. D. +mobile: +1 818 656-3884 +pager: +1 818 950-7615 +roomNumber: 9657 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Svend Bongers,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Svend Bongers +sn: Bongers +description: This is Svend Bongers's description +facsimileTelephoneNumber: +1 206 645-2791 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 357-3327 +title: Chief Administrative Fellow +userPassword: Password1 +uid: BongersS +givenName: Svend +mail: BongersS@3ee42841812c4e2f8f42547c056a47a4.bitwarden.com +carLicense: QVY4A8 +departmentNumber: 9706 +employeeType: Employee +homePhone: +1 206 398-3385 +initials: S. B. +mobile: +1 206 553-9756 +pager: +1 206 873-3084 +roomNumber: 8573 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Suzette Burkey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzette Burkey +sn: Burkey +description: This is Suzette Burkey's description +facsimileTelephoneNumber: +1 510 913-9663 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 911-1471 +title: Associate Janitorial Evangelist +userPassword: Password1 +uid: BurkeyS +givenName: Suzette +mail: BurkeyS@471e794006cb42c3b4dce1c843b0ccc3.bitwarden.com +carLicense: MIXEQ9 +departmentNumber: 3084 +employeeType: Employee +homePhone: +1 510 706-2759 +initials: S. B. +mobile: +1 510 211-4313 +pager: +1 510 367-1203 +roomNumber: 8393 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Klazina Grabowski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klazina Grabowski +sn: Grabowski +description: This is Klazina Grabowski's description +facsimileTelephoneNumber: +1 818 179-3129 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 839-3428 +title: Supreme Product Development Janitor +userPassword: Password1 +uid: GrabowsK +givenName: Klazina +mail: GrabowsK@116c2088f9014599b930c7e21848d917.bitwarden.com +carLicense: 1IBOXT +departmentNumber: 4224 +employeeType: Normal +homePhone: +1 818 415-4561 +initials: K. G. +mobile: +1 818 601-5491 +pager: +1 818 714-3456 +roomNumber: 8974 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jester Alink,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jester Alink +sn: Alink +description: This is Jester Alink's description +facsimileTelephoneNumber: +1 804 507-9949 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 652-8881 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: AlinkJ +givenName: Jester +mail: AlinkJ@995756bc696444e0925a45b2d907b2e0.bitwarden.com +carLicense: JB7GDI +departmentNumber: 3528 +employeeType: Normal +homePhone: +1 804 487-6075 +initials: J. A. +mobile: +1 804 796-2068 +pager: +1 804 513-9927 +roomNumber: 8472 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arnold Fogelson +sn: Fogelson +description: This is Arnold Fogelson's description +facsimileTelephoneNumber: +1 206 713-9149 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 516-3684 +title: Associate Product Testing President +userPassword: Password1 +uid: FogelsoA +givenName: Arnold +mail: FogelsoA@7cb67504c13e412a8fec103be024f92b.bitwarden.com +carLicense: 16Q6JY +departmentNumber: 4957 +employeeType: Contract +homePhone: +1 206 300-9831 +initials: A. F. +mobile: +1 206 105-4902 +pager: +1 206 219-7415 +roomNumber: 8191 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Andre Hatzenbichler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andre Hatzenbichler +sn: Hatzenbichler +description: This is Andre Hatzenbichler's description +facsimileTelephoneNumber: +1 206 574-1450 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 221-8050 +title: Chief Management Sales Rep +userPassword: Password1 +uid: HatzenbA +givenName: Andre +mail: HatzenbA@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com +carLicense: 3H8GFC +departmentNumber: 9028 +employeeType: Employee +homePhone: +1 206 534-5985 +initials: A. H. +mobile: +1 206 752-7507 +pager: +1 206 222-6098 +roomNumber: 8860 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndon Montuno +sn: Montuno +description: This is Lyndon Montuno's description +facsimileTelephoneNumber: +1 804 547-4269 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 904-5343 +title: Master Janitorial Punk +userPassword: Password1 +uid: MontunoL +givenName: Lyndon +mail: MontunoL@c8d14bd2dc82442f9c5011dbd053c45a.bitwarden.com +carLicense: 39TIBY +departmentNumber: 2860 +employeeType: Employee +homePhone: +1 804 568-6206 +initials: L. M. +mobile: +1 804 967-8229 +pager: +1 804 795-3277 +roomNumber: 9054 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Raudres Negandhi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raudres Negandhi +sn: Negandhi +description: This is Raudres Negandhi's description +facsimileTelephoneNumber: +1 510 251-8076 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 761-3165 +title: Master Administrative Artist +userPassword: Password1 +uid: NegandhR +givenName: Raudres +mail: NegandhR@b866cf3614c84b6ab1508dbbda76e67a.bitwarden.com +carLicense: 3OIKDB +departmentNumber: 6735 +employeeType: Employee +homePhone: +1 510 675-9579 +initials: R. N. +mobile: +1 510 453-6256 +pager: +1 510 229-8398 +roomNumber: 9817 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marj Posta,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marj Posta +sn: Posta +description: This is Marj Posta's description +facsimileTelephoneNumber: +1 408 236-1076 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 550-8040 +title: Supreme Administrative Writer +userPassword: Password1 +uid: PostaM +givenName: Marj +mail: PostaM@68ce8f6324ee4d5691543ff35fe05d84.bitwarden.com +carLicense: TKTXIY +departmentNumber: 8798 +employeeType: Contract +homePhone: +1 408 963-9279 +initials: M. P. +mobile: +1 408 472-6842 +pager: +1 408 748-6712 +roomNumber: 9038 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mozelle Lalonde +sn: Lalonde +description: This is Mozelle Lalonde's description +facsimileTelephoneNumber: +1 206 445-2369 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 139-2249 +title: Junior Payroll Czar +userPassword: Password1 +uid: LalondeM +givenName: Mozelle +mail: LalondeM@31118e4ea061472193269b0ea325f915.bitwarden.com +carLicense: 0A03FQ +departmentNumber: 4900 +employeeType: Contract +homePhone: +1 206 433-8830 +initials: M. L. +mobile: +1 206 137-7134 +pager: +1 206 143-7516 +roomNumber: 9025 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=WaiMan Stillwell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WaiMan Stillwell +sn: Stillwell +description: This is WaiMan Stillwell's description +facsimileTelephoneNumber: +1 213 198-2764 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 149-5256 +title: Associate Peons Visionary +userPassword: Password1 +uid: StillweW +givenName: WaiMan +mail: StillweW@fb6b5989f0e34d278066748667edadde.bitwarden.com +carLicense: VU0LM7 +departmentNumber: 2376 +employeeType: Employee +homePhone: +1 213 950-6433 +initials: W. S. +mobile: +1 213 266-5310 +pager: +1 213 541-1249 +roomNumber: 8291 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Audi Adamski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Audi Adamski +sn: Adamski +description: This is Audi Adamski's description +facsimileTelephoneNumber: +1 804 412-3318 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 804 939-2573 +title: Associate Peons Dictator +userPassword: Password1 +uid: AdamskiA +givenName: Audi +mail: AdamskiA@2ac984f088f74653b77322f263723237.bitwarden.com +carLicense: KI4NY6 +departmentNumber: 2332 +employeeType: Normal +homePhone: +1 804 430-8563 +initials: A. A. +mobile: +1 804 110-9757 +pager: +1 804 684-4861 +roomNumber: 8482 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Earl Stanton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Earl Stanton +sn: Stanton +description: This is Earl Stanton's description +facsimileTelephoneNumber: +1 510 734-5473 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 510 569-6578 +title: Junior Peons Admin +userPassword: Password1 +uid: StantonE +givenName: Earl +mail: StantonE@c7b440e597614575a5a39ed9339f6e2e.bitwarden.com +carLicense: VGBFO6 +departmentNumber: 5920 +employeeType: Employee +homePhone: +1 510 168-7455 +initials: E. S. +mobile: +1 510 425-4122 +pager: +1 510 646-7340 +roomNumber: 8464 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Reggie Venturini,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reggie Venturini +sn: Venturini +description: This is Reggie Venturini's description +facsimileTelephoneNumber: +1 804 337-7186 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 556-1321 +title: Associate Administrative Fellow +userPassword: Password1 +uid: VenturiR +givenName: Reggie +mail: VenturiR@8227646c55034cf9b21757fce681b53f.bitwarden.com +carLicense: T66MJT +departmentNumber: 2640 +employeeType: Contract +homePhone: +1 804 738-2432 +initials: R. V. +mobile: +1 804 170-8493 +pager: +1 804 805-5590 +roomNumber: 8671 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jannelle Berro,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jannelle Berro +sn: Berro +description: This is Jannelle Berro's description +facsimileTelephoneNumber: +1 213 214-7258 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 508-4973 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: BerroJ +givenName: Jannelle +mail: BerroJ@6452f4682aa64d008088217c5ad881f7.bitwarden.com +carLicense: 72QHOU +departmentNumber: 3334 +employeeType: Normal +homePhone: +1 213 282-5516 +initials: J. B. +mobile: +1 213 360-5230 +pager: +1 213 460-6336 +roomNumber: 9683 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marya Buford,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marya Buford +sn: Buford +description: This is Marya Buford's description +facsimileTelephoneNumber: +1 206 843-8010 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 422-6940 +title: Master Payroll Pinhead +userPassword: Password1 +uid: BufordM +givenName: Marya +mail: BufordM@b1e31f863da04aa8b9a57d43a6e09dae.bitwarden.com +carLicense: 1G0XBY +departmentNumber: 8248 +employeeType: Normal +homePhone: +1 206 398-7207 +initials: M. B. +mobile: +1 206 318-9304 +pager: +1 206 272-3957 +roomNumber: 8743 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kally Tinney,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kally Tinney +sn: Tinney +description: This is Kally Tinney's description +facsimileTelephoneNumber: +1 213 977-5272 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 484-6079 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: TinneyK +givenName: Kally +mail: TinneyK@cf1f0125e0794b80b348dddaa747ca09.bitwarden.com +carLicense: GUNHFJ +departmentNumber: 9348 +employeeType: Contract +homePhone: +1 213 325-1038 +initials: K. T. +mobile: +1 213 510-2222 +pager: +1 213 151-9459 +roomNumber: 8129 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Verile Maksoud,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verile Maksoud +sn: Maksoud +description: This is Verile Maksoud's description +facsimileTelephoneNumber: +1 206 821-7375 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 101-7167 +title: Supreme Product Development Artist +userPassword: Password1 +uid: MaksoudV +givenName: Verile +mail: MaksoudV@bf7383f759754f9b9777ee05159141ee.bitwarden.com +carLicense: 54BPUS +departmentNumber: 4990 +employeeType: Normal +homePhone: +1 206 307-9692 +initials: V. M. +mobile: +1 206 590-7935 +pager: +1 206 388-4176 +roomNumber: 8054 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shaun Sandhu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaun Sandhu +sn: Sandhu +description: This is Shaun Sandhu's description +facsimileTelephoneNumber: +1 206 997-4469 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 123-9484 +title: Junior Management Punk +userPassword: Password1 +uid: SandhuS +givenName: Shaun +mail: SandhuS@c67e58274a874c9595360f767ef27116.bitwarden.com +carLicense: VRCENS +departmentNumber: 4912 +employeeType: Employee +homePhone: +1 206 211-2123 +initials: S. S. +mobile: +1 206 719-3791 +pager: +1 206 820-5427 +roomNumber: 8291 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Michal Andrew,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michal Andrew +sn: Andrew +description: This is Michal Andrew's description +facsimileTelephoneNumber: +1 415 898-9331 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 820-6495 +title: Supreme Administrative Developer +userPassword: Password1 +uid: AndrewM +givenName: Michal +mail: AndrewM@4dd9b19c6f6848e2a0768f206ad89104.bitwarden.com +carLicense: TF8BGJ +departmentNumber: 6259 +employeeType: Contract +homePhone: +1 415 973-4881 +initials: M. A. +mobile: +1 415 300-2218 +pager: +1 415 744-5191 +roomNumber: 8007 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Valerie Efthim,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valerie Efthim +sn: Efthim +description: This is Valerie Efthim's description +facsimileTelephoneNumber: +1 510 203-6928 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 480-7003 +title: Master Peons Janitor +userPassword: Password1 +uid: EfthimV +givenName: Valerie +mail: EfthimV@8a407807d42746848c0943df6e11c535.bitwarden.com +carLicense: U647OW +departmentNumber: 9967 +employeeType: Employee +homePhone: +1 510 753-4188 +initials: V. E. +mobile: +1 510 968-4756 +pager: +1 510 930-3364 +roomNumber: 8302 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imre Pizzanelli +sn: Pizzanelli +description: This is Imre Pizzanelli's description +facsimileTelephoneNumber: +1 213 239-3400 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 714-6955 +title: Chief Payroll Grunt +userPassword: Password1 +uid: PizzaneI +givenName: Imre +mail: PizzaneI@7dd094a2e53049a29a9302610c3b379c.bitwarden.com +carLicense: 99355B +departmentNumber: 5224 +employeeType: Employee +homePhone: +1 213 348-2558 +initials: I. P. +mobile: +1 213 294-7693 +pager: +1 213 212-1269 +roomNumber: 8759 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sadella Loggins,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadella Loggins +sn: Loggins +description: This is Sadella Loggins's description +facsimileTelephoneNumber: +1 510 728-5497 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 197-3390 +title: Master Janitorial Architect +userPassword: Password1 +uid: LogginsS +givenName: Sadella +mail: LogginsS@afea5fd146ef4dd19f19321d779917eb.bitwarden.com +carLicense: N1CD7X +departmentNumber: 4736 +employeeType: Employee +homePhone: +1 510 722-3585 +initials: S. L. +mobile: +1 510 874-1708 +pager: +1 510 364-8189 +roomNumber: 9198 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helenelizabeth Leiwe +sn: Leiwe +description: This is Helenelizabeth Leiwe's description +facsimileTelephoneNumber: +1 206 986-7474 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 206 145-8099 +title: Junior Product Development Warrior +userPassword: Password1 +uid: LeiweH +givenName: Helenelizabeth +mail: LeiweH@a973beae67824ff38510168917193e58.bitwarden.com +carLicense: T1NDFE +departmentNumber: 7874 +employeeType: Normal +homePhone: +1 206 951-4839 +initials: H. L. +mobile: +1 206 914-3866 +pager: +1 206 185-3783 +roomNumber: 8369 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=HackHoo Hunter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HackHoo Hunter +sn: Hunter +description: This is HackHoo Hunter's description +facsimileTelephoneNumber: +1 206 782-4511 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 691-2788 +title: Chief Product Development Mascot +userPassword: Password1 +uid: HunterH +givenName: HackHoo +mail: HunterH@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com +carLicense: 2MHNKN +departmentNumber: 6435 +employeeType: Normal +homePhone: +1 206 941-5305 +initials: H. H. +mobile: +1 206 111-7951 +pager: +1 206 486-2013 +roomNumber: 8179 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Meter Hickerson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meter Hickerson +sn: Hickerson +description: This is Meter Hickerson's description +facsimileTelephoneNumber: +1 415 114-7675 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 722-8923 +title: Supreme Peons Warrior +userPassword: Password1 +uid: HickersM +givenName: Meter +mail: HickersM@518da73225eb4a77959fb191daf72b49.bitwarden.com +carLicense: JH1XVI +departmentNumber: 3341 +employeeType: Employee +homePhone: +1 415 110-3045 +initials: M. H. +mobile: +1 415 159-3557 +pager: +1 415 663-5636 +roomNumber: 8868 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=MaryKay Lan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryKay Lan +sn: Lan +description: This is MaryKay Lan's description +facsimileTelephoneNumber: +1 510 542-6355 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 427-5413 +title: Master Janitorial President +userPassword: Password1 +uid: LanM +givenName: MaryKay +mail: LanM@fd5fdd80b1a14938bb4e5ddb7ae924b8.bitwarden.com +carLicense: TIEVWK +departmentNumber: 2105 +employeeType: Contract +homePhone: +1 510 105-5234 +initials: M. L. +mobile: +1 510 719-6086 +pager: +1 510 508-9444 +roomNumber: 9359 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Giana Pierson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giana Pierson +sn: Pierson +description: This is Giana Pierson's description +facsimileTelephoneNumber: +1 818 425-6018 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 134-3234 +title: Junior Administrative Warrior +userPassword: Password1 +uid: PiersonG +givenName: Giana +mail: PiersonG@ae78ee526c5e44bdaf510c03b717277a.bitwarden.com +carLicense: 24TB7O +departmentNumber: 6763 +employeeType: Contract +homePhone: +1 818 716-5682 +initials: G. P. +mobile: +1 818 159-6179 +pager: +1 818 402-2979 +roomNumber: 9004 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shiela Anthonissen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shiela Anthonissen +sn: Anthonissen +description: This is Shiela Anthonissen's description +facsimileTelephoneNumber: +1 206 479-1830 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 689-5305 +title: Associate Management Director +userPassword: Password1 +uid: AnthoniS +givenName: Shiela +mail: AnthoniS@92fac5dc49334a53a79e5778457c6927.bitwarden.com +carLicense: P0UMX8 +departmentNumber: 6998 +employeeType: Contract +homePhone: +1 206 695-8267 +initials: S. A. +mobile: +1 206 260-9077 +pager: +1 206 904-2353 +roomNumber: 8256 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Toby Winterberg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toby Winterberg +sn: Winterberg +description: This is Toby Winterberg's description +facsimileTelephoneNumber: +1 804 711-8634 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 804 350-4500 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: WinterbT +givenName: Toby +mail: WinterbT@5b0da98f68834ea191407bb1ee431580.bitwarden.com +carLicense: D0DLB4 +departmentNumber: 9350 +employeeType: Employee +homePhone: +1 804 250-1780 +initials: T. W. +mobile: +1 804 121-3262 +pager: +1 804 404-6503 +roomNumber: 9525 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Leticia Metheny,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leticia Metheny +sn: Metheny +description: This is Leticia Metheny's description +facsimileTelephoneNumber: +1 510 460-6655 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 929-6828 +title: Junior Management Vice President +userPassword: Password1 +uid: MethenyL +givenName: Leticia +mail: MethenyL@523c7925179d4304b25908d832088d77.bitwarden.com +carLicense: KH1206 +departmentNumber: 8179 +employeeType: Employee +homePhone: +1 510 738-9508 +initials: L. M. +mobile: +1 510 286-4534 +pager: +1 510 217-3819 +roomNumber: 9974 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Skipper Moschopoulos +sn: Moschopoulos +description: This is Skipper Moschopoulos's description +facsimileTelephoneNumber: +1 818 692-5767 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 660-2438 +title: Associate Payroll Director +userPassword: Password1 +uid: MoschopS +givenName: Skipper +mail: MoschopS@d21aff3093e74a19bbea5f621e17cee4.bitwarden.com +carLicense: 6CMDO2 +departmentNumber: 8128 +employeeType: Employee +homePhone: +1 818 214-7392 +initials: S. M. +mobile: +1 818 427-4962 +pager: +1 818 456-7343 +roomNumber: 8174 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Raven Tuan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raven Tuan +sn: Tuan +description: This is Raven Tuan's description +facsimileTelephoneNumber: +1 206 460-2713 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 723-3753 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: TuanR +givenName: Raven +mail: TuanR@fa45ba90b06846bb81fc9f04c3bbe415.bitwarden.com +carLicense: Q3D9HK +departmentNumber: 2691 +employeeType: Contract +homePhone: +1 206 537-6128 +initials: R. T. +mobile: +1 206 627-7495 +pager: +1 206 995-3632 +roomNumber: 8353 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leddy Kochis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leddy Kochis +sn: Kochis +description: This is Leddy Kochis's description +facsimileTelephoneNumber: +1 408 524-4046 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 966-8280 +title: Master Peons Madonna +userPassword: Password1 +uid: KochisL +givenName: Leddy +mail: KochisL@4791ce49665d4017b7808a73f1a6c3d7.bitwarden.com +carLicense: 9V7PYQ +departmentNumber: 7187 +employeeType: Employee +homePhone: +1 408 958-1234 +initials: L. K. +mobile: +1 408 884-4985 +pager: +1 408 164-7947 +roomNumber: 8058 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Niek Tripp,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niek Tripp +sn: Tripp +description: This is Niek Tripp's description +facsimileTelephoneNumber: +1 213 840-9072 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 683-1993 +title: Chief Administrative Consultant +userPassword: Password1 +uid: TrippN +givenName: Niek +mail: TrippN@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com +carLicense: KVHSG7 +departmentNumber: 1378 +employeeType: Contract +homePhone: +1 213 780-8751 +initials: N. T. +mobile: +1 213 426-6487 +pager: +1 213 444-2642 +roomNumber: 8725 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Curtis Caglayan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Curtis Caglayan +sn: Caglayan +description: This is Curtis Caglayan's description +facsimileTelephoneNumber: +1 510 425-6043 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 147-6300 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: CaglayaC +givenName: Curtis +mail: CaglayaC@4641f68e88f74b89a7d91f372f89c707.bitwarden.com +carLicense: K39FS8 +departmentNumber: 2967 +employeeType: Normal +homePhone: +1 510 781-8085 +initials: C. C. +mobile: +1 510 153-6668 +pager: +1 510 644-6997 +roomNumber: 8024 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ibbie Sebastian +sn: Sebastian +description: This is Ibbie Sebastian's description +facsimileTelephoneNumber: +1 213 638-9126 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 389-7980 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: SebastiI +givenName: Ibbie +mail: SebastiI@f5c077cada0a4d8d8147cbf8b500bc50.bitwarden.com +carLicense: YLWGGA +departmentNumber: 8203 +employeeType: Employee +homePhone: +1 213 149-4690 +initials: I. S. +mobile: +1 213 344-7854 +pager: +1 213 929-3044 +roomNumber: 9232 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eladio Nadler,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eladio Nadler +sn: Nadler +description: This is Eladio Nadler's description +facsimileTelephoneNumber: +1 206 542-5076 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 554-3840 +title: Associate Administrative Engineer +userPassword: Password1 +uid: NadlerE +givenName: Eladio +mail: NadlerE@395a1522673545a2b6f4ec5f1b7796af.bitwarden.com +carLicense: TXH3AK +departmentNumber: 9216 +employeeType: Employee +homePhone: +1 206 541-4782 +initials: E. N. +mobile: +1 206 494-6760 +pager: +1 206 947-1595 +roomNumber: 8284 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kameko Ayres,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kameko Ayres +sn: Ayres +description: This is Kameko Ayres's description +facsimileTelephoneNumber: +1 213 319-2971 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 252-6818 +title: Master Product Development Architect +userPassword: Password1 +uid: AyresK +givenName: Kameko +mail: AyresK@23f2b7d7514a4767820f5e79ce7c0c7d.bitwarden.com +carLicense: RO3IOD +departmentNumber: 5865 +employeeType: Normal +homePhone: +1 213 677-3149 +initials: K. A. +mobile: +1 213 924-1132 +pager: +1 213 647-4199 +roomNumber: 8179 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Florinda Templeton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florinda Templeton +sn: Templeton +description: This is Florinda Templeton's description +facsimileTelephoneNumber: +1 408 688-3898 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 683-2366 +title: Chief Product Development Dictator +userPassword: Password1 +uid: TempletF +givenName: Florinda +mail: TempletF@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com +carLicense: YLVJTY +departmentNumber: 8561 +employeeType: Contract +homePhone: +1 408 331-3269 +initials: F. T. +mobile: +1 408 294-3582 +pager: +1 408 132-3833 +roomNumber: 8064 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Omayma Halula,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Omayma Halula +sn: Halula +description: This is Omayma Halula's description +facsimileTelephoneNumber: +1 408 337-2661 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 706-5826 +title: Master Payroll Engineer +userPassword: Password1 +uid: HalulaO +givenName: Omayma +mail: HalulaO@c3a780fc1cae424e99d05abc11ec9e6a.bitwarden.com +carLicense: X7I48A +departmentNumber: 9665 +employeeType: Normal +homePhone: +1 408 373-3451 +initials: O. H. +mobile: +1 408 436-1848 +pager: +1 408 447-5230 +roomNumber: 9010 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shellie Blethen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shellie Blethen +sn: Blethen +description: This is Shellie Blethen's description +facsimileTelephoneNumber: +1 818 203-8291 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 818 120-7282 +title: Chief Human Resources Janitor +userPassword: Password1 +uid: BlethenS +givenName: Shellie +mail: BlethenS@95aba425683d4bd1840a81fc67427bb1.bitwarden.com +carLicense: 8MTN0N +departmentNumber: 7931 +employeeType: Contract +homePhone: +1 818 472-5819 +initials: S. B. +mobile: +1 818 908-8562 +pager: +1 818 776-4829 +roomNumber: 9567 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annemarijke Marceau +sn: Marceau +description: This is Annemarijke Marceau's description +facsimileTelephoneNumber: +1 213 445-2318 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 151-3194 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: MarceauA +givenName: Annemarijke +mail: MarceauA@6c578796ae9e48a3a3b7ff8b9d3b060a.bitwarden.com +carLicense: RN5FMD +departmentNumber: 9905 +employeeType: Employee +homePhone: +1 213 322-4535 +initials: A. M. +mobile: +1 213 728-7263 +pager: +1 213 324-7090 +roomNumber: 9886 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Corliss Pharris,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corliss Pharris +sn: Pharris +description: This is Corliss Pharris's description +facsimileTelephoneNumber: +1 408 586-7562 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 408 542-3578 +title: Associate Payroll Grunt +userPassword: Password1 +uid: PharrisC +givenName: Corliss +mail: PharrisC@8ab88106282a4e96ae4334aaf2a9980f.bitwarden.com +carLicense: BHTYL3 +departmentNumber: 5350 +employeeType: Employee +homePhone: +1 408 523-2857 +initials: C. P. +mobile: +1 408 224-7329 +pager: +1 408 193-4623 +roomNumber: 9686 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mareah Gooderham,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mareah Gooderham +sn: Gooderham +description: This is Mareah Gooderham's description +facsimileTelephoneNumber: +1 804 643-5465 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 590-4954 +title: Chief Product Development Writer +userPassword: Password1 +uid: GooderhM +givenName: Mareah +mail: GooderhM@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com +carLicense: WNPLAM +departmentNumber: 8464 +employeeType: Normal +homePhone: +1 804 680-4845 +initials: M. G. +mobile: +1 804 628-6736 +pager: +1 804 610-2101 +roomNumber: 8211 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Olwen Yelvington,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olwen Yelvington +sn: Yelvington +description: This is Olwen Yelvington's description +facsimileTelephoneNumber: +1 804 104-1457 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 574-7094 +title: Chief Management Grunt +userPassword: Password1 +uid: YelvingO +givenName: Olwen +mail: YelvingO@d2bd61540f2c442085d5a71bd0d2fc4d.bitwarden.com +carLicense: QDQTFU +departmentNumber: 9660 +employeeType: Employee +homePhone: +1 804 389-9935 +initials: O. Y. +mobile: +1 804 495-1919 +pager: +1 804 618-6110 +roomNumber: 8053 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maiga Buder,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maiga Buder +sn: Buder +description: This is Maiga Buder's description +facsimileTelephoneNumber: +1 804 367-5264 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 756-9601 +title: Associate Product Development Dictator +userPassword: Password1 +uid: BuderM +givenName: Maiga +mail: BuderM@9ff9a89b32504ff5afdb9c11208b7d0a.bitwarden.com +carLicense: EICG2R +departmentNumber: 2287 +employeeType: Employee +homePhone: +1 804 995-6732 +initials: M. B. +mobile: +1 804 915-7589 +pager: +1 804 831-3828 +roomNumber: 8555 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Madlen Booking,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madlen Booking +sn: Booking +description: This is Madlen Booking's description +facsimileTelephoneNumber: +1 818 598-9888 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 317-1453 +title: Associate Product Development Admin +userPassword: Password1 +uid: BookingM +givenName: Madlen +mail: BookingM@a67ff5b1ad97429ba599b05adf0b8c32.bitwarden.com +carLicense: FJPH24 +departmentNumber: 8286 +employeeType: Contract +homePhone: +1 818 678-6492 +initials: M. B. +mobile: +1 818 276-5726 +pager: +1 818 196-8553 +roomNumber: 8254 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Darell Liang,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darell Liang +sn: Liang +description: This is Darell Liang's description +facsimileTelephoneNumber: +1 804 562-5790 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 804 679-3097 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: LiangD +givenName: Darell +mail: LiangD@49c28823fa6d4e18b2bd79c94f037cd5.bitwarden.com +carLicense: PBM9K7 +departmentNumber: 3346 +employeeType: Contract +homePhone: +1 804 194-3136 +initials: D. L. +mobile: +1 804 340-5339 +pager: +1 804 473-5763 +roomNumber: 8962 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klarrisa Tregenza +sn: Tregenza +description: This is Klarrisa Tregenza's description +facsimileTelephoneNumber: +1 206 779-9988 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 854-8309 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: TregenzK +givenName: Klarrisa +mail: TregenzK@290c8e7e8138440babe5064ce0d66502.bitwarden.com +carLicense: 82Y2T9 +departmentNumber: 1364 +employeeType: Normal +homePhone: +1 206 493-4392 +initials: K. T. +mobile: +1 206 696-6685 +pager: +1 206 123-6069 +roomNumber: 8597 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Neena Mayes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neena Mayes +sn: Mayes +description: This is Neena Mayes's description +facsimileTelephoneNumber: +1 510 914-8807 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 510 277-8261 +title: Junior Human Resources Janitor +userPassword: Password1 +uid: MayesN +givenName: Neena +mail: MayesN@0159105d118c42e49c1ba8afedb04349.bitwarden.com +carLicense: 4DX68Y +departmentNumber: 7674 +employeeType: Employee +homePhone: +1 510 908-1286 +initials: N. M. +mobile: +1 510 843-6696 +pager: +1 510 435-8290 +roomNumber: 8975 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hannie Robieux,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hannie Robieux +sn: Robieux +description: This is Hannie Robieux's description +facsimileTelephoneNumber: +1 818 922-1355 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 136-1486 +title: Junior Payroll Vice President +userPassword: Password1 +uid: RobieuxH +givenName: Hannie +mail: RobieuxH@2fd47af450d743418108699823631680.bitwarden.com +carLicense: AWEU44 +departmentNumber: 2538 +employeeType: Normal +homePhone: +1 818 777-7691 +initials: H. R. +mobile: +1 818 329-8178 +pager: +1 818 410-8753 +roomNumber: 9797 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Regine Iantaffi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regine Iantaffi +sn: Iantaffi +description: This is Regine Iantaffi's description +facsimileTelephoneNumber: +1 415 549-6739 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 540-2719 +title: Supreme Peons Mascot +userPassword: Password1 +uid: IantaffR +givenName: Regine +mail: IantaffR@643e8725ab414409abd27e0fe695dde2.bitwarden.com +carLicense: FL49UW +departmentNumber: 3477 +employeeType: Normal +homePhone: +1 415 845-7415 +initials: R. I. +mobile: +1 415 603-3230 +pager: +1 415 512-7330 +roomNumber: 8884 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramonda Henshaw +sn: Henshaw +description: This is Ramonda Henshaw's description +facsimileTelephoneNumber: +1 213 264-7088 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 683-3079 +title: Chief Administrative Admin +userPassword: Password1 +uid: HenshawR +givenName: Ramonda +mail: HenshawR@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com +carLicense: 4SJNGM +departmentNumber: 2982 +employeeType: Contract +homePhone: +1 213 297-9385 +initials: R. H. +mobile: +1 213 346-3878 +pager: +1 213 109-7287 +roomNumber: 8601 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gladi Steffes,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gladi Steffes +sn: Steffes +description: This is Gladi Steffes's description +facsimileTelephoneNumber: +1 213 903-9570 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 681-2310 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: SteffesG +givenName: Gladi +mail: SteffesG@32e3fa5da06a4fd3803417733702b064.bitwarden.com +carLicense: C91UK1 +departmentNumber: 6983 +employeeType: Contract +homePhone: +1 213 273-4222 +initials: G. S. +mobile: +1 213 246-3133 +pager: +1 213 291-4040 +roomNumber: 9270 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kalli Chanonat,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalli Chanonat +sn: Chanonat +description: This is Kalli Chanonat's description +facsimileTelephoneNumber: +1 510 671-5918 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 510 646-4557 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: ChanonaK +givenName: Kalli +mail: ChanonaK@aa334b1a73514c2283534b58c2c9420b.bitwarden.com +carLicense: MRJ1Q6 +departmentNumber: 1777 +employeeType: Normal +homePhone: +1 510 736-5371 +initials: K. C. +mobile: +1 510 953-2377 +pager: +1 510 668-7572 +roomNumber: 8304 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bob Gronwall,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bob Gronwall +sn: Gronwall +description: This is Bob Gronwall's description +facsimileTelephoneNumber: +1 415 713-3093 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 502-8008 +title: Master Peons Stooge +userPassword: Password1 +uid: GronwalB +givenName: Bob +mail: GronwalB@0f8c263e7f6c452db2957bf93d2cdb86.bitwarden.com +carLicense: CSGFJE +departmentNumber: 9915 +employeeType: Contract +homePhone: +1 415 793-5763 +initials: B. G. +mobile: +1 415 401-9546 +pager: +1 415 203-7785 +roomNumber: 9882 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giovanni Rizewiski +sn: Rizewiski +description: This is Giovanni Rizewiski's description +facsimileTelephoneNumber: +1 510 902-6857 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 384-3956 +title: Chief Peons Warrior +userPassword: Password1 +uid: RizewisG +givenName: Giovanni +mail: RizewisG@0c871b0ecc1a46debc66287e828580e3.bitwarden.com +carLicense: VFOYAX +departmentNumber: 3866 +employeeType: Normal +homePhone: +1 510 190-3757 +initials: G. R. +mobile: +1 510 860-3824 +pager: +1 510 231-2532 +roomNumber: 8999 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Faunie Moroz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faunie Moroz +sn: Moroz +description: This is Faunie Moroz's description +facsimileTelephoneNumber: +1 804 846-4323 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 640-1644 +title: Associate Product Development President +userPassword: Password1 +uid: MorozF +givenName: Faunie +mail: MorozF@8a380e2be5ea40e5ac3c58889b7903b7.bitwarden.com +carLicense: UIQTSI +departmentNumber: 1289 +employeeType: Employee +homePhone: +1 804 683-4666 +initials: F. M. +mobile: +1 804 534-8016 +pager: +1 804 269-8229 +roomNumber: 8334 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Avrit Abrahim,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avrit Abrahim +sn: Abrahim +description: This is Avrit Abrahim's description +facsimileTelephoneNumber: +1 415 841-2838 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 617-8924 +title: Master Payroll Technician +userPassword: Password1 +uid: AbrahimA +givenName: Avrit +mail: AbrahimA@3f9f595da27346f4869f68e3fa5be108.bitwarden.com +carLicense: UDDROF +departmentNumber: 2999 +employeeType: Normal +homePhone: +1 415 370-4009 +initials: A. A. +mobile: +1 415 129-2386 +pager: +1 415 112-6533 +roomNumber: 8034 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marietta Shunmugam +sn: Shunmugam +description: This is Marietta Shunmugam's description +facsimileTelephoneNumber: +1 804 310-6747 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 799-8279 +title: Master Human Resources Technician +userPassword: Password1 +uid: ShunmugM +givenName: Marietta +mail: ShunmugM@80196116addf4f41ba15c7f335724d57.bitwarden.com +carLicense: 27VLYO +departmentNumber: 3997 +employeeType: Normal +homePhone: +1 804 708-3817 +initials: M. S. +mobile: +1 804 787-2561 +pager: +1 804 996-6511 +roomNumber: 8375 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelcie Ruttan +sn: Ruttan +description: This is Kelcie Ruttan's description +facsimileTelephoneNumber: +1 206 982-6690 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 521-8020 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: RuttanK +givenName: Kelcie +mail: RuttanK@5bc6becc7c8b4be7bfb46c3c5ef26514.bitwarden.com +carLicense: X3LMM1 +departmentNumber: 4786 +employeeType: Employee +homePhone: +1 206 327-4352 +initials: K. R. +mobile: +1 206 638-2164 +pager: +1 206 610-5558 +roomNumber: 8139 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bernard Placido,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernard Placido +sn: Placido +description: This is Bernard Placido's description +facsimileTelephoneNumber: +1 510 253-6373 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 168-7244 +title: Supreme Payroll Punk +userPassword: Password1 +uid: PlacidoB +givenName: Bernard +mail: PlacidoB@be9d6d33980e45aa8fdb6ebf08094f9b.bitwarden.com +carLicense: CUHV7Y +departmentNumber: 8812 +employeeType: Contract +homePhone: +1 510 673-7908 +initials: B. P. +mobile: +1 510 431-8352 +pager: +1 510 803-4613 +roomNumber: 9525 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kariotta Sprunger +sn: Sprunger +description: This is Kariotta Sprunger's description +facsimileTelephoneNumber: +1 206 773-7394 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 429-7542 +title: Chief Administrative Fellow +userPassword: Password1 +uid: SprungeK +givenName: Kariotta +mail: SprungeK@234baafa6151436c9e90b2aa2617a7d2.bitwarden.com +carLicense: 78DYQS +departmentNumber: 7299 +employeeType: Normal +homePhone: +1 206 904-1455 +initials: K. S. +mobile: +1 206 551-8685 +pager: +1 206 811-5871 +roomNumber: 8758 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Graciela VanPatten +sn: VanPatten +description: This is Graciela VanPatten's description +facsimileTelephoneNumber: +1 510 287-6778 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 232-4216 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: VanPattG +givenName: Graciela +mail: VanPattG@f6cc3e776c61473088c0113a2174d24c.bitwarden.com +carLicense: J46E75 +departmentNumber: 1278 +employeeType: Employee +homePhone: +1 510 110-8417 +initials: G. V. +mobile: +1 510 521-4601 +pager: +1 510 571-6453 +roomNumber: 9751 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Flory Ganadry,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flory Ganadry +sn: Ganadry +description: This is Flory Ganadry's description +facsimileTelephoneNumber: +1 415 355-3909 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 677-3145 +title: Master Management Figurehead +userPassword: Password1 +uid: GanadryF +givenName: Flory +mail: GanadryF@0c3f5d55309540bf85d561938fa59231.bitwarden.com +carLicense: COVYO0 +departmentNumber: 7552 +employeeType: Employee +homePhone: +1 415 697-6778 +initials: F. G. +mobile: +1 415 904-2475 +pager: +1 415 995-5790 +roomNumber: 8288 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Berti Steski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berti Steski +sn: Steski +description: This is Berti Steski's description +facsimileTelephoneNumber: +1 415 400-3264 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 342-4704 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: SteskiB +givenName: Berti +mail: SteskiB@c54cbe69dcd34a96b7a131338d06781d.bitwarden.com +carLicense: NTAIXR +departmentNumber: 4000 +employeeType: Contract +homePhone: +1 415 394-6224 +initials: B. S. +mobile: +1 415 660-5026 +pager: +1 415 658-1357 +roomNumber: 8062 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Charline Fross,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charline Fross +sn: Fross +description: This is Charline Fross's description +facsimileTelephoneNumber: +1 213 664-7603 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 250-3863 +title: Master Product Development Director +userPassword: Password1 +uid: FrossC +givenName: Charline +mail: FrossC@786bf687e1984b2da694b96e1738976f.bitwarden.com +carLicense: RB0991 +departmentNumber: 5197 +employeeType: Employee +homePhone: +1 213 123-7646 +initials: C. F. +mobile: +1 213 208-6911 +pager: +1 213 929-4094 +roomNumber: 8399 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bonnar Burns,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bonnar Burns +sn: Burns +description: This is Bonnar Burns's description +facsimileTelephoneNumber: +1 818 314-7333 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 139-4282 +title: Associate Product Development Stooge +userPassword: Password1 +uid: BurnsB +givenName: Bonnar +mail: BurnsB@c44cf57c7e494ab8a133e7f2a6a02284.bitwarden.com +carLicense: 7KR4IK +departmentNumber: 1909 +employeeType: Employee +homePhone: +1 818 483-8710 +initials: B. B. +mobile: +1 818 353-2443 +pager: +1 818 854-2546 +roomNumber: 8525 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kate Scorziello,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kate Scorziello +sn: Scorziello +description: This is Kate Scorziello's description +facsimileTelephoneNumber: +1 818 558-1881 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 818 352-1405 +title: Chief Administrative Janitor +userPassword: Password1 +uid: ScorzieK +givenName: Kate +mail: ScorzieK@3340c10fa973435198296f285f1bf380.bitwarden.com +carLicense: KO0ATW +departmentNumber: 1750 +employeeType: Normal +homePhone: +1 818 234-1914 +initials: K. S. +mobile: +1 818 395-2135 +pager: +1 818 810-1679 +roomNumber: 8556 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SvennErik Kamboh +sn: Kamboh +description: This is SvennErik Kamboh's description +facsimileTelephoneNumber: +1 804 305-5438 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 124-6330 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: KambohS +givenName: SvennErik +mail: KambohS@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com +carLicense: FWPFJG +departmentNumber: 5336 +employeeType: Normal +homePhone: +1 804 361-2364 +initials: S. K. +mobile: +1 804 791-3683 +pager: +1 804 434-3859 +roomNumber: 8137 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Olenka Tota,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olenka Tota +sn: Tota +description: This is Olenka Tota's description +facsimileTelephoneNumber: +1 415 944-3515 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 415 457-2127 +title: Junior Human Resources Madonna +userPassword: Password1 +uid: TotaO +givenName: Olenka +mail: TotaO@2c3e110ee6f849dd9d12214b3161a037.bitwarden.com +carLicense: 0BH1PI +departmentNumber: 5111 +employeeType: Contract +homePhone: +1 415 131-6877 +initials: O. T. +mobile: +1 415 905-1318 +pager: +1 415 492-3091 +roomNumber: 8007 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanh Vonderhaar +sn: Vonderhaar +description: This is Hanh Vonderhaar's description +facsimileTelephoneNumber: +1 804 112-8921 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 968-6741 +title: Associate Payroll Mascot +userPassword: Password1 +uid: VonderhH +givenName: Hanh +mail: VonderhH@1d23264dcd2241baa77e90f901c50315.bitwarden.com +carLicense: XTBM66 +departmentNumber: 4160 +employeeType: Normal +homePhone: +1 804 631-6578 +initials: H. V. +mobile: +1 804 410-7057 +pager: +1 804 696-7534 +roomNumber: 9343 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ceil Foubert,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ceil Foubert +sn: Foubert +description: This is Ceil Foubert's description +facsimileTelephoneNumber: +1 213 689-1189 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 166-3853 +title: Junior Human Resources Writer +userPassword: Password1 +uid: FoubertC +givenName: Ceil +mail: FoubertC@f6edafa4c10c4c53bf1931829503f011.bitwarden.com +carLicense: MJG80M +departmentNumber: 7485 +employeeType: Normal +homePhone: +1 213 445-3992 +initials: C. F. +mobile: +1 213 150-8812 +pager: +1 213 561-2439 +roomNumber: 8369 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JooGeok Kouhi +sn: Kouhi +description: This is JooGeok Kouhi's description +facsimileTelephoneNumber: +1 804 399-8284 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 894-9318 +title: Chief Product Development Developer +userPassword: Password1 +uid: KouhiJ +givenName: JooGeok +mail: KouhiJ@b0cf4813000442ff977f9358e32e3342.bitwarden.com +carLicense: D97ULF +departmentNumber: 3176 +employeeType: Employee +homePhone: +1 804 478-3702 +initials: J. K. +mobile: +1 804 524-6540 +pager: +1 804 871-4581 +roomNumber: 9864 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chellappan Pietromonaco +sn: Pietromonaco +description: This is Chellappan Pietromonaco's description +facsimileTelephoneNumber: +1 804 458-7715 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 804 288-2720 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: PietromC +givenName: Chellappan +mail: PietromC@ca73de7d8fb447f899df1cc98c2c34a2.bitwarden.com +carLicense: OMN5B9 +departmentNumber: 2833 +employeeType: Contract +homePhone: +1 804 257-4220 +initials: C. P. +mobile: +1 804 168-7022 +pager: +1 804 764-5190 +roomNumber: 8259 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tetsumo Thuswaldner +sn: Thuswaldner +description: This is Tetsumo Thuswaldner's description +facsimileTelephoneNumber: +1 818 580-2877 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 401-1028 +title: Associate Human Resources Visionary +userPassword: Password1 +uid: ThuswalT +givenName: Tetsumo +mail: ThuswalT@549a00afcc4642b6988c79a50d08a8a3.bitwarden.com +carLicense: 8I5WFP +departmentNumber: 4601 +employeeType: Normal +homePhone: +1 818 773-4319 +initials: T. T. +mobile: +1 818 685-2554 +pager: +1 818 705-7303 +roomNumber: 9177 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Devinne Zanga,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devinne Zanga +sn: Zanga +description: This is Devinne Zanga's description +facsimileTelephoneNumber: +1 408 434-8281 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 411-5850 +title: Chief Peons Dictator +userPassword: Password1 +uid: ZangaD +givenName: Devinne +mail: ZangaD@5df54d8944e947f396093baae162579f.bitwarden.com +carLicense: EQTICY +departmentNumber: 7922 +employeeType: Contract +homePhone: +1 408 356-8412 +initials: D. Z. +mobile: +1 408 415-8798 +pager: +1 408 669-2142 +roomNumber: 8067 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Letti Boocock,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Letti Boocock +sn: Boocock +description: This is Letti Boocock's description +facsimileTelephoneNumber: +1 510 799-5285 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 726-2643 +title: Chief Human Resources Writer +userPassword: Password1 +uid: BoocockL +givenName: Letti +mail: BoocockL@97a601b7bf924aea9927e9bb24e9dce4.bitwarden.com +carLicense: 7PJNT7 +departmentNumber: 9335 +employeeType: Contract +homePhone: +1 510 202-6617 +initials: L. B. +mobile: +1 510 998-5759 +pager: +1 510 174-4575 +roomNumber: 9848 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Charin Fallah,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charin Fallah +sn: Fallah +description: This is Charin Fallah's description +facsimileTelephoneNumber: +1 818 860-4428 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 545-2342 +title: Chief Human Resources Engineer +userPassword: Password1 +uid: FallahC +givenName: Charin +mail: FallahC@37503b661def462c8ca2c73740caf74d.bitwarden.com +carLicense: PEGTVG +departmentNumber: 3304 +employeeType: Employee +homePhone: +1 818 404-8573 +initials: C. F. +mobile: +1 818 838-8756 +pager: +1 818 809-2483 +roomNumber: 9145 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Clea Astorino,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clea Astorino +sn: Astorino +description: This is Clea Astorino's description +facsimileTelephoneNumber: +1 510 655-1471 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 510 733-7367 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: AstorinC +givenName: Clea +mail: AstorinC@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com +carLicense: 5V4YMM +departmentNumber: 5856 +employeeType: Contract +homePhone: +1 510 478-1686 +initials: C. A. +mobile: +1 510 383-2139 +pager: +1 510 863-7435 +roomNumber: 9451 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cassandry Hilton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassandry Hilton +sn: Hilton +description: This is Cassandry Hilton's description +facsimileTelephoneNumber: +1 804 334-9070 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 380-7591 +title: Supreme Peons Manager +userPassword: Password1 +uid: HiltonC +givenName: Cassandry +mail: HiltonC@96f772c600724b25bd473286135ce70b.bitwarden.com +carLicense: WS77M5 +departmentNumber: 9638 +employeeType: Employee +homePhone: +1 804 603-9932 +initials: C. H. +mobile: +1 804 928-6626 +pager: +1 804 892-8405 +roomNumber: 9080 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sohayla Sugarbroad +sn: Sugarbroad +description: This is Sohayla Sugarbroad's description +facsimileTelephoneNumber: +1 818 723-3126 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 220-4678 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: SugarbrS +givenName: Sohayla +mail: SugarbrS@9426a2bdce5b455d93581bbbd4e466d1.bitwarden.com +carLicense: Q1I1KI +departmentNumber: 9321 +employeeType: Contract +homePhone: +1 818 443-1540 +initials: S. S. +mobile: +1 818 762-6724 +pager: +1 818 149-7300 +roomNumber: 9494 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karlene Homan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlene Homan +sn: Homan +description: This is Karlene Homan's description +facsimileTelephoneNumber: +1 408 199-9372 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 764-8358 +title: Master Management Director +userPassword: Password1 +uid: HomanK +givenName: Karlene +mail: HomanK@7c64049fb61442b49d970b3e88ea4fff.bitwarden.com +carLicense: YFCE43 +departmentNumber: 9476 +employeeType: Contract +homePhone: +1 408 814-6456 +initials: K. H. +mobile: +1 408 503-4007 +pager: +1 408 286-3955 +roomNumber: 9801 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anjanette McCaffity,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anjanette McCaffity +sn: McCaffity +description: This is Anjanette McCaffity's description +facsimileTelephoneNumber: +1 415 741-6299 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 937-5255 +title: Master Management Writer +userPassword: Password1 +uid: McCaffiA +givenName: Anjanette +mail: McCaffiA@e682211d32bb40e7ace0a806e7eb8802.bitwarden.com +carLicense: Q00EOJ +departmentNumber: 4407 +employeeType: Contract +homePhone: +1 415 230-1076 +initials: A. M. +mobile: +1 415 958-3052 +pager: +1 415 275-2469 +roomNumber: 9707 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peach Heinrichs +sn: Heinrichs +description: This is Peach Heinrichs's description +facsimileTelephoneNumber: +1 818 341-8350 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 837-6774 +title: Junior Product Testing Czar +userPassword: Password1 +uid: HeinricP +givenName: Peach +mail: HeinricP@b5697730a3f645a8a3b7775071bff9d2.bitwarden.com +carLicense: Q6LKII +departmentNumber: 6531 +employeeType: Employee +homePhone: +1 818 670-1834 +initials: P. H. +mobile: +1 818 495-7330 +pager: +1 818 170-4191 +roomNumber: 9676 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Micky Brodowski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micky Brodowski +sn: Brodowski +description: This is Micky Brodowski's description +facsimileTelephoneNumber: +1 408 446-3447 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 724-6168 +title: Associate Payroll Assistant +userPassword: Password1 +uid: BrodowsM +givenName: Micky +mail: BrodowsM@b5f56e1924634c2689d55900ad6e24f1.bitwarden.com +carLicense: K6N79P +departmentNumber: 4500 +employeeType: Employee +homePhone: +1 408 213-3903 +initials: M. B. +mobile: +1 408 498-7297 +pager: +1 408 644-4510 +roomNumber: 8134 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Neetu Miles,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neetu Miles +sn: Miles +description: This is Neetu Miles's description +facsimileTelephoneNumber: +1 213 488-8564 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 612-9348 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: MilesN +givenName: Neetu +mail: MilesN@9a5bdc9a34e041db8cf5f51cd958707f.bitwarden.com +carLicense: FMV8IQ +departmentNumber: 9026 +employeeType: Employee +homePhone: +1 213 168-7611 +initials: N. M. +mobile: +1 213 932-5772 +pager: +1 213 610-6994 +roomNumber: 9886 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rhodia Irick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhodia Irick +sn: Irick +description: This is Rhodia Irick's description +facsimileTelephoneNumber: +1 804 824-7423 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 165-2072 +title: Master Product Testing Warrior +userPassword: Password1 +uid: IrickR +givenName: Rhodia +mail: IrickR@b6e5aee724a54904bb06d1cd94c0be8e.bitwarden.com +carLicense: XMYUI2 +departmentNumber: 6636 +employeeType: Employee +homePhone: +1 804 588-3427 +initials: R. I. +mobile: +1 804 850-6336 +pager: +1 804 854-4210 +roomNumber: 8356 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Phat Mecteau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phat Mecteau +sn: Mecteau +description: This is Phat Mecteau's description +facsimileTelephoneNumber: +1 510 878-3715 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 510 960-1222 +title: Master Peons Dictator +userPassword: Password1 +uid: MecteauP +givenName: Phat +mail: MecteauP@9ecc403b039d43679eefc1da35dbd584.bitwarden.com +carLicense: PSMR8G +departmentNumber: 2590 +employeeType: Employee +homePhone: +1 510 406-1960 +initials: P. M. +mobile: +1 510 105-9788 +pager: +1 510 700-6428 +roomNumber: 8616 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tzung Winfield,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tzung Winfield +sn: Winfield +description: This is Tzung Winfield's description +facsimileTelephoneNumber: +1 818 990-8983 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 543-2889 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: WinfielT +givenName: Tzung +mail: WinfielT@a762ad5f7ab94a82ae700785cde02626.bitwarden.com +carLicense: RSMY1O +departmentNumber: 2649 +employeeType: Employee +homePhone: +1 818 261-4837 +initials: T. W. +mobile: +1 818 566-3024 +pager: +1 818 790-4821 +roomNumber: 9081 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Amandie Britman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amandie Britman +sn: Britman +description: This is Amandie Britman's description +facsimileTelephoneNumber: +1 510 949-8191 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 344-7142 +title: Supreme Payroll Warrior +userPassword: Password1 +uid: BritmanA +givenName: Amandie +mail: BritmanA@23128e7ff9d145ae80543eb5e7da5669.bitwarden.com +carLicense: KE9XTK +departmentNumber: 3754 +employeeType: Contract +homePhone: +1 510 339-9619 +initials: A. B. +mobile: +1 510 784-9271 +pager: +1 510 287-5892 +roomNumber: 8428 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamillah Lannan +sn: Lannan +description: This is Kamillah Lannan's description +facsimileTelephoneNumber: +1 213 315-2324 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 359-2076 +title: Chief Human Resources Janitor +userPassword: Password1 +uid: LannanK +givenName: Kamillah +mail: LannanK@dc0c8137c1f0444baf57655cd3888c75.bitwarden.com +carLicense: BXMYM7 +departmentNumber: 5692 +employeeType: Employee +homePhone: +1 213 893-3371 +initials: K. L. +mobile: +1 213 850-5899 +pager: +1 213 976-4785 +roomNumber: 8853 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaquelyn Mowbray +sn: Mowbray +description: This is Jaquelyn Mowbray's description +facsimileTelephoneNumber: +1 510 426-5125 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 721-8388 +title: Associate Product Development Czar +userPassword: Password1 +uid: MowbrayJ +givenName: Jaquelyn +mail: MowbrayJ@b60aa937d01647ea80a3225aa7e4cdc5.bitwarden.com +carLicense: 9K04VL +departmentNumber: 2170 +employeeType: Employee +homePhone: +1 510 897-5493 +initials: J. M. +mobile: +1 510 103-4318 +pager: +1 510 866-5163 +roomNumber: 9499 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeannie Moshiri +sn: Moshiri +description: This is Jeannie Moshiri's description +facsimileTelephoneNumber: +1 510 609-5860 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 174-4374 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: MoshiriJ +givenName: Jeannie +mail: MoshiriJ@964166b8cdd041c68aaae270afb90271.bitwarden.com +carLicense: NQOE0M +departmentNumber: 9272 +employeeType: Contract +homePhone: +1 510 519-5793 +initials: J. M. +mobile: +1 510 746-7526 +pager: +1 510 260-2081 +roomNumber: 9574 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Brittani Guitard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brittani Guitard +sn: Guitard +description: This is Brittani Guitard's description +facsimileTelephoneNumber: +1 213 638-4062 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 937-6742 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: GuitardB +givenName: Brittani +mail: GuitardB@ecc994146f8e4e3b8a176bee8df24c8d.bitwarden.com +carLicense: GSBGPU +departmentNumber: 2992 +employeeType: Contract +homePhone: +1 213 412-2519 +initials: B. G. +mobile: +1 213 666-1474 +pager: +1 213 841-5268 +roomNumber: 8940 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hubert Majors,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hubert Majors +sn: Majors +description: This is Hubert Majors's description +facsimileTelephoneNumber: +1 408 245-9150 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 956-4290 +title: Supreme Payroll Developer +userPassword: Password1 +uid: MajorsH +givenName: Hubert +mail: MajorsH@52db00da846a4ecd950665d8955a7231.bitwarden.com +carLicense: EJRR4V +departmentNumber: 8808 +employeeType: Normal +homePhone: +1 408 584-8730 +initials: H. M. +mobile: +1 408 287-2655 +pager: +1 408 203-3758 +roomNumber: 8354 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=KinYee Amini,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KinYee Amini +sn: Amini +description: This is KinYee Amini's description +facsimileTelephoneNumber: +1 510 784-5641 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 718-2449 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: AminiK +givenName: KinYee +mail: AminiK@ea0898ff0877402d9c2e36c10881d242.bitwarden.com +carLicense: JG67JF +departmentNumber: 3804 +employeeType: Employee +homePhone: +1 510 294-8952 +initials: K. A. +mobile: +1 510 294-6426 +pager: +1 510 719-8757 +roomNumber: 9744 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Riva Malott,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Riva Malott +sn: Malott +description: This is Riva Malott's description +facsimileTelephoneNumber: +1 206 951-2656 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 385-8047 +title: Supreme Janitorial Sales Rep +userPassword: Password1 +uid: MalottR +givenName: Riva +mail: MalottR@0740d70384e04d4883e40f4df47caeab.bitwarden.com +carLicense: JB52FG +departmentNumber: 6539 +employeeType: Normal +homePhone: +1 206 648-7260 +initials: R. M. +mobile: +1 206 689-5439 +pager: +1 206 194-7424 +roomNumber: 9581 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gizela Fenez,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gizela Fenez +sn: Fenez +description: This is Gizela Fenez's description +facsimileTelephoneNumber: +1 804 874-5247 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 804 709-3912 +title: Junior Peons Manager +userPassword: Password1 +uid: FenezG +givenName: Gizela +mail: FenezG@85a71b552bfd49e9ae6851cb672bc85b.bitwarden.com +carLicense: EGPER6 +departmentNumber: 4918 +employeeType: Contract +homePhone: +1 804 605-8812 +initials: G. F. +mobile: +1 804 905-1966 +pager: +1 804 442-1359 +roomNumber: 9774 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Thompson Santos,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thompson Santos +sn: Santos +description: This is Thompson Santos's description +facsimileTelephoneNumber: +1 408 233-1512 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 858-8721 +title: Master Payroll Writer +userPassword: Password1 +uid: SantosT +givenName: Thompson +mail: SantosT@1a25c5eecf2b4862871ccde04c2d3ffb.bitwarden.com +carLicense: 2EKAGW +departmentNumber: 2601 +employeeType: Contract +homePhone: +1 408 660-9310 +initials: T. S. +mobile: +1 408 432-4255 +pager: +1 408 308-3388 +roomNumber: 8469 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Student Anker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Student Anker +sn: Anker +description: This is Student Anker's description +facsimileTelephoneNumber: +1 510 654-7168 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 149-1677 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: AnkerS +givenName: Student +mail: AnkerS@802b05236c97484db9a6d34278cbb7c2.bitwarden.com +carLicense: 2WIBUJ +departmentNumber: 8534 +employeeType: Normal +homePhone: +1 510 531-9699 +initials: S. A. +mobile: +1 510 845-9738 +pager: +1 510 653-3189 +roomNumber: 9904 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carlita Flores,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlita Flores +sn: Flores +description: This is Carlita Flores's description +facsimileTelephoneNumber: +1 408 852-6783 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 875-7758 +title: Associate Human Resources Director +userPassword: Password1 +uid: FloresC +givenName: Carlita +mail: FloresC@dabb673b74534388bb1466a7f0fed6b0.bitwarden.com +carLicense: L6SNGK +departmentNumber: 1819 +employeeType: Normal +homePhone: +1 408 149-2343 +initials: C. F. +mobile: +1 408 136-7706 +pager: +1 408 686-7887 +roomNumber: 9843 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Domenick Thomey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Domenick Thomey +sn: Thomey +description: This is Domenick Thomey's description +facsimileTelephoneNumber: +1 206 867-9772 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 633-3771 +title: Chief Product Testing Engineer +userPassword: Password1 +uid: ThomeyD +givenName: Domenick +mail: ThomeyD@0d2070a7704249ccae81fc4b91659074.bitwarden.com +carLicense: IQUY0W +departmentNumber: 6078 +employeeType: Contract +homePhone: +1 206 322-9469 +initials: D. T. +mobile: +1 206 940-3285 +pager: +1 206 111-1557 +roomNumber: 9002 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pegeen Beckham +sn: Beckham +description: This is Pegeen Beckham's description +facsimileTelephoneNumber: +1 213 396-4037 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 988-3648 +title: Master Human Resources Czar +userPassword: Password1 +uid: BeckhamP +givenName: Pegeen +mail: BeckhamP@2d00b4c5d94943aaab567276a570648e.bitwarden.com +carLicense: JJ5TCR +departmentNumber: 1549 +employeeType: Normal +homePhone: +1 213 786-7183 +initials: P. B. +mobile: +1 213 611-1528 +pager: +1 213 801-1075 +roomNumber: 9899 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lanie Wayler,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lanie Wayler +sn: Wayler +description: This is Lanie Wayler's description +facsimileTelephoneNumber: +1 213 650-7693 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 311-5891 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: WaylerL +givenName: Lanie +mail: WaylerL@5abf2b8f947a433ea32c981885ccae42.bitwarden.com +carLicense: MPMT4P +departmentNumber: 7289 +employeeType: Employee +homePhone: +1 213 747-8054 +initials: L. W. +mobile: +1 213 850-3586 +pager: +1 213 220-1862 +roomNumber: 8694 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roxi Leonida,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxi Leonida +sn: Leonida +description: This is Roxi Leonida's description +facsimileTelephoneNumber: +1 213 138-1393 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 635-7441 +title: Master Administrative Technician +userPassword: Password1 +uid: LeonidaR +givenName: Roxi +mail: LeonidaR@a7c911c3534b41fcbf3c7f9346df687d.bitwarden.com +carLicense: 1V2G8A +departmentNumber: 1633 +employeeType: Normal +homePhone: +1 213 257-5390 +initials: R. L. +mobile: +1 213 770-2937 +pager: +1 213 662-6465 +roomNumber: 9449 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Isin Paczynski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isin Paczynski +sn: Paczynski +description: This is Isin Paczynski's description +facsimileTelephoneNumber: +1 804 205-9137 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 842-3112 +title: Chief Product Development Manager +userPassword: Password1 +uid: PaczynsI +givenName: Isin +mail: PaczynsI@7cff87d9428241d385e3a8b08cc7cf02.bitwarden.com +carLicense: GGJKE9 +departmentNumber: 2022 +employeeType: Contract +homePhone: +1 804 801-3153 +initials: I. P. +mobile: +1 804 235-5363 +pager: +1 804 392-6601 +roomNumber: 9979 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Condell MacPhail,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Condell MacPhail +sn: MacPhail +description: This is Condell MacPhail's description +facsimileTelephoneNumber: +1 415 717-4024 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 476-5514 +title: Junior Administrative Fellow +userPassword: Password1 +uid: MacPhaiC +givenName: Condell +mail: MacPhaiC@1bed3f33f95f46ba84060b615fc669ef.bitwarden.com +carLicense: G0OIJI +departmentNumber: 1916 +employeeType: Employee +homePhone: +1 415 882-8856 +initials: C. M. +mobile: +1 415 493-7910 +pager: +1 415 578-4503 +roomNumber: 8750 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Swd Braganza,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Swd Braganza +sn: Braganza +description: This is Swd Braganza's description +facsimileTelephoneNumber: +1 206 697-7672 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 747-7460 +title: Junior Management President +userPassword: Password1 +uid: BraganzS +givenName: Swd +mail: BraganzS@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com +carLicense: FFXMLU +departmentNumber: 7107 +employeeType: Contract +homePhone: +1 206 441-1377 +initials: S. B. +mobile: +1 206 503-8885 +pager: +1 206 693-2762 +roomNumber: 9516 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Herbie Bilton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herbie Bilton +sn: Bilton +description: This is Herbie Bilton's description +facsimileTelephoneNumber: +1 510 731-6894 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 590-3338 +title: Associate Payroll President +userPassword: Password1 +uid: BiltonH +givenName: Herbie +mail: BiltonH@30f521987a9e4cbfb386d3a1369f2935.bitwarden.com +carLicense: 8B1VVJ +departmentNumber: 3234 +employeeType: Normal +homePhone: +1 510 304-1050 +initials: H. B. +mobile: +1 510 413-2856 +pager: +1 510 924-3660 +roomNumber: 8281 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tas Hagerty,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tas Hagerty +sn: Hagerty +description: This is Tas Hagerty's description +facsimileTelephoneNumber: +1 804 822-8156 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 131-6857 +title: Junior Janitorial Janitor +userPassword: Password1 +uid: HagertyT +givenName: Tas +mail: HagertyT@eb6e0362b9c044ceb04b07f121efebbf.bitwarden.com +carLicense: 0QEYM0 +departmentNumber: 5817 +employeeType: Normal +homePhone: +1 804 760-8871 +initials: T. H. +mobile: +1 804 149-7624 +pager: +1 804 853-9373 +roomNumber: 9375 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cristin Pambianchi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristin Pambianchi +sn: Pambianchi +description: This is Cristin Pambianchi's description +facsimileTelephoneNumber: +1 510 635-3763 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 894-6521 +title: Master Management Consultant +userPassword: Password1 +uid: PambianC +givenName: Cristin +mail: PambianC@18060edcc6234a8b8fe795c650ecf126.bitwarden.com +carLicense: 1KEV2F +departmentNumber: 5824 +employeeType: Contract +homePhone: +1 510 662-8736 +initials: C. P. +mobile: +1 510 533-4263 +pager: +1 510 941-9698 +roomNumber: 9603 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Deann Lutz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deann Lutz +sn: Lutz +description: This is Deann Lutz's description +facsimileTelephoneNumber: +1 415 951-1459 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 415 818-6681 +title: Chief Product Development President +userPassword: Password1 +uid: LutzD +givenName: Deann +mail: LutzD@3201bacf5bb24ae3afcce52434ad7af4.bitwarden.com +carLicense: DI5C48 +departmentNumber: 3903 +employeeType: Normal +homePhone: +1 415 721-9727 +initials: D. L. +mobile: +1 415 695-1541 +pager: +1 415 669-6022 +roomNumber: 8049 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Datha Apter,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Datha Apter +sn: Apter +description: This is Datha Apter's description +facsimileTelephoneNumber: +1 213 394-2201 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 574-8350 +title: Master Payroll Punk +userPassword: Password1 +uid: ApterD +givenName: Datha +mail: ApterD@ea68ff21788e47d08d129553b31a56f2.bitwarden.com +carLicense: CKTGYT +departmentNumber: 2722 +employeeType: Employee +homePhone: +1 213 572-3957 +initials: D. A. +mobile: +1 213 553-3213 +pager: +1 213 779-2218 +roomNumber: 9485 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aretha Kursell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aretha Kursell +sn: Kursell +description: This is Aretha Kursell's description +facsimileTelephoneNumber: +1 510 661-3847 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 740-8956 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: KursellA +givenName: Aretha +mail: KursellA@17061e8235904e0b93980e91f7a69e37.bitwarden.com +carLicense: 3983BM +departmentNumber: 1739 +employeeType: Contract +homePhone: +1 510 403-8511 +initials: A. K. +mobile: +1 510 376-8574 +pager: +1 510 153-2345 +roomNumber: 8502 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Attilio Aldhizer +sn: Aldhizer +description: This is Attilio Aldhizer's description +facsimileTelephoneNumber: +1 408 118-2093 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 385-6292 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: AldhizeA +givenName: Attilio +mail: AldhizeA@5527d8c433094cecbedb01f554d34d26.bitwarden.com +carLicense: 0VQAHA +departmentNumber: 3131 +employeeType: Employee +homePhone: +1 408 434-5182 +initials: A. A. +mobile: +1 408 258-6415 +pager: +1 408 622-9394 +roomNumber: 9106 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alverta Guilbault +sn: Guilbault +description: This is Alverta Guilbault's description +facsimileTelephoneNumber: +1 206 764-7312 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 267-4477 +title: Supreme Human Resources Director +userPassword: Password1 +uid: GuilbauA +givenName: Alverta +mail: GuilbauA@96b2a23653bd4867b5a7bf172ebf238c.bitwarden.com +carLicense: 5XGBNX +departmentNumber: 5147 +employeeType: Employee +homePhone: +1 206 330-4292 +initials: A. G. +mobile: +1 206 302-1718 +pager: +1 206 845-4664 +roomNumber: 8155 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Norry Trpisovsky,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norry Trpisovsky +sn: Trpisovsky +description: This is Norry Trpisovsky's description +facsimileTelephoneNumber: +1 206 769-4817 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 499-9185 +title: Supreme Peons Director +userPassword: Password1 +uid: TrpisovN +givenName: Norry +mail: TrpisovN@44154c0b8f05440cb2dfceffbfdfaf5f.bitwarden.com +carLicense: PJQU8L +departmentNumber: 6621 +employeeType: Employee +homePhone: +1 206 531-7660 +initials: N. T. +mobile: +1 206 229-7682 +pager: +1 206 230-2055 +roomNumber: 8246 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ladell Doig,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ladell Doig +sn: Doig +description: This is Ladell Doig's description +facsimileTelephoneNumber: +1 408 277-3647 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 112-3015 +title: Associate Payroll Writer +userPassword: Password1 +uid: DoigL +givenName: Ladell +mail: DoigL@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com +carLicense: LG91Y3 +departmentNumber: 8562 +employeeType: Contract +homePhone: +1 408 544-4087 +initials: L. D. +mobile: +1 408 514-9224 +pager: +1 408 451-6174 +roomNumber: 9986 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mer Hasan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mer Hasan +sn: Hasan +description: This is Mer Hasan's description +facsimileTelephoneNumber: +1 213 262-4133 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 849-3424 +title: Junior Peons Admin +userPassword: Password1 +uid: HasanM +givenName: Mer +mail: HasanM@8e939e1720cd4eec84cf0ef4b954cc46.bitwarden.com +carLicense: 3W16XN +departmentNumber: 1691 +employeeType: Employee +homePhone: +1 213 722-7808 +initials: M. H. +mobile: +1 213 574-1354 +pager: +1 213 540-4257 +roomNumber: 9421 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Therine Solman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Therine Solman +sn: Solman +description: This is Therine Solman's description +facsimileTelephoneNumber: +1 818 264-5515 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 818 945-1953 +title: Supreme Peons Vice President +userPassword: Password1 +uid: SolmanT +givenName: Therine +mail: SolmanT@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com +carLicense: EFLB6K +departmentNumber: 9411 +employeeType: Normal +homePhone: +1 818 210-6427 +initials: T. S. +mobile: +1 818 839-7035 +pager: +1 818 970-8962 +roomNumber: 9882 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Garnet Gooch,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Garnet Gooch +sn: Gooch +description: This is Garnet Gooch's description +facsimileTelephoneNumber: +1 213 249-4238 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 213 580-3702 +title: Junior Administrative Artist +userPassword: Password1 +uid: GoochG +givenName: Garnet +mail: GoochG@c9b01dac43c94e75a452c54efb5c8e21.bitwarden.com +carLicense: Y2986U +departmentNumber: 6682 +employeeType: Normal +homePhone: +1 213 986-6306 +initials: G. G. +mobile: +1 213 370-6288 +pager: +1 213 413-3496 +roomNumber: 9554 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Colli Magee,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colli Magee +sn: Magee +description: This is Colli Magee's description +facsimileTelephoneNumber: +1 206 839-8260 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 532-6262 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: MageeC +givenName: Colli +mail: MageeC@f8c2812065094b4daf335260acd27140.bitwarden.com +carLicense: JQ5B3W +departmentNumber: 3169 +employeeType: Contract +homePhone: +1 206 829-8365 +initials: C. M. +mobile: +1 206 786-5696 +pager: +1 206 842-1083 +roomNumber: 8595 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sammy Topol,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sammy Topol +sn: Topol +description: This is Sammy Topol's description +facsimileTelephoneNumber: +1 415 390-4604 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 989-9558 +title: Chief Management Mascot +userPassword: Password1 +uid: TopolS +givenName: Sammy +mail: TopolS@cd3d382133434cf09ea0a78c7fbb0555.bitwarden.com +carLicense: M8RP63 +departmentNumber: 3587 +employeeType: Contract +homePhone: +1 415 192-6636 +initials: S. T. +mobile: +1 415 247-5332 +pager: +1 415 195-6264 +roomNumber: 8664 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chelsae Cacha,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsae Cacha +sn: Cacha +description: This is Chelsae Cacha's description +facsimileTelephoneNumber: +1 510 150-5854 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 366-6906 +title: Master Management Stooge +userPassword: Password1 +uid: CachaC +givenName: Chelsae +mail: CachaC@8013079ee9144b479560c9bcb06bab11.bitwarden.com +carLicense: 5US1JP +departmentNumber: 6571 +employeeType: Contract +homePhone: +1 510 994-9950 +initials: C. C. +mobile: +1 510 623-2391 +pager: +1 510 970-9483 +roomNumber: 9506 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Albertine DeSimone +sn: DeSimone +description: This is Albertine DeSimone's description +facsimileTelephoneNumber: +1 206 404-4553 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 798-2430 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: DeSimonA +givenName: Albertine +mail: DeSimonA@4cccac2b65cb4d559e1c7c657101129e.bitwarden.com +carLicense: M09O3C +departmentNumber: 8599 +employeeType: Employee +homePhone: +1 206 322-4729 +initials: A. D. +mobile: +1 206 412-6016 +pager: +1 206 233-8730 +roomNumber: 9517 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Melvin Stanton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melvin Stanton +sn: Stanton +description: This is Melvin Stanton's description +facsimileTelephoneNumber: +1 206 682-5200 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 280-9009 +title: Junior Product Development Visionary +userPassword: Password1 +uid: StantonM +givenName: Melvin +mail: StantonM@776517ed1aad4bc8864e3bcd6b8432b4.bitwarden.com +carLicense: 0O43M1 +departmentNumber: 3301 +employeeType: Contract +homePhone: +1 206 288-6038 +initials: M. S. +mobile: +1 206 577-8583 +pager: +1 206 636-1427 +roomNumber: 8341 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karolien Skrebels +sn: Skrebels +description: This is Karolien Skrebels's description +facsimileTelephoneNumber: +1 213 723-5669 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 256-4513 +title: Junior Janitorial President +userPassword: Password1 +uid: SkrebelK +givenName: Karolien +mail: SkrebelK@8c92d3eeaf56468bbc92aef74edba2cf.bitwarden.com +carLicense: 738P83 +departmentNumber: 2518 +employeeType: Employee +homePhone: +1 213 837-8778 +initials: K. S. +mobile: +1 213 663-1323 +pager: +1 213 109-7527 +roomNumber: 9488 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Annabella Fisher,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annabella Fisher +sn: Fisher +description: This is Annabella Fisher's description +facsimileTelephoneNumber: +1 408 402-9007 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 521-6033 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: FisherA +givenName: Annabella +mail: FisherA@2226746e47f246e6bac38a341375363b.bitwarden.com +carLicense: LAFJA5 +departmentNumber: 6579 +employeeType: Normal +homePhone: +1 408 682-8679 +initials: A. F. +mobile: +1 408 993-4585 +pager: +1 408 614-4289 +roomNumber: 9896 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pelly Difilippo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pelly Difilippo +sn: Difilippo +description: This is Pelly Difilippo's description +facsimileTelephoneNumber: +1 206 617-5050 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 892-2570 +title: Associate Administrative Mascot +userPassword: Password1 +uid: DifilipP +givenName: Pelly +mail: DifilipP@96ba8081521e4fe79c79c0f0b9ef5643.bitwarden.com +carLicense: UJUCGI +departmentNumber: 3037 +employeeType: Employee +homePhone: +1 206 155-1819 +initials: P. D. +mobile: +1 206 438-3173 +pager: +1 206 893-9786 +roomNumber: 9596 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Virginia Clites,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Virginia Clites +sn: Clites +description: This is Virginia Clites's description +facsimileTelephoneNumber: +1 804 283-5645 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 939-9806 +title: Associate Product Development Madonna +userPassword: Password1 +uid: ClitesV +givenName: Virginia +mail: ClitesV@2eb6d97dc4644dd39ac68997e9422017.bitwarden.com +carLicense: 2RRX64 +departmentNumber: 6760 +employeeType: Normal +homePhone: +1 804 306-1409 +initials: V. C. +mobile: +1 804 157-4835 +pager: +1 804 995-7066 +roomNumber: 9992 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lionel Kahil,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lionel Kahil +sn: Kahil +description: This is Lionel Kahil's description +facsimileTelephoneNumber: +1 804 721-4160 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 346-5540 +title: Associate Management Stooge +userPassword: Password1 +uid: KahilL +givenName: Lionel +mail: KahilL@e6ecc40f4d2343039a82728f79fb14d2.bitwarden.com +carLicense: FHQSV7 +departmentNumber: 2273 +employeeType: Normal +homePhone: +1 804 146-7193 +initials: L. K. +mobile: +1 804 682-6511 +pager: +1 804 561-7500 +roomNumber: 9269 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beatrix Weger,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatrix Weger +sn: Weger +description: This is Beatrix Weger's description +facsimileTelephoneNumber: +1 408 873-8354 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 408 476-4737 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: WegerB +givenName: Beatrix +mail: WegerB@ccb0d62f1b7541d69c0eb30915728fc1.bitwarden.com +carLicense: 1QNJ3V +departmentNumber: 2440 +employeeType: Contract +homePhone: +1 408 351-2737 +initials: B. W. +mobile: +1 408 388-5005 +pager: +1 408 263-5116 +roomNumber: 9755 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Roxanne Klimon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxanne Klimon +sn: Klimon +description: This is Roxanne Klimon's description +facsimileTelephoneNumber: +1 415 988-7212 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 195-4908 +title: Master Administrative President +userPassword: Password1 +uid: KlimonR +givenName: Roxanne +mail: KlimonR@518da73225eb4a77959fb191daf72b49.bitwarden.com +carLicense: LB0B09 +departmentNumber: 5290 +employeeType: Contract +homePhone: +1 415 434-1719 +initials: R. K. +mobile: +1 415 118-8799 +pager: +1 415 933-5408 +roomNumber: 8222 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ernestine Campara,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ernestine Campara +sn: Campara +description: This is Ernestine Campara's description +facsimileTelephoneNumber: +1 408 644-9190 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 408 467-1129 +title: Junior Management Artist +userPassword: Password1 +uid: CamparaE +givenName: Ernestine +mail: CamparaE@404f39e9e9f7414486e29f7cf6e81694.bitwarden.com +carLicense: GU67HF +departmentNumber: 1742 +employeeType: Contract +homePhone: +1 408 701-6875 +initials: E. C. +mobile: +1 408 830-1099 +pager: +1 408 461-6860 +roomNumber: 9640 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gaal Jcst,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaal Jcst +sn: Jcst +description: This is Gaal Jcst's description +facsimileTelephoneNumber: +1 213 602-2626 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 685-8581 +title: Associate Janitorial Czar +userPassword: Password1 +uid: JcstG +givenName: Gaal +mail: JcstG@ca74af6c5dcc4f0b974e414c7310f581.bitwarden.com +carLicense: 61I0SV +departmentNumber: 3975 +employeeType: Contract +homePhone: +1 213 814-6982 +initials: G. J. +mobile: +1 213 828-3941 +pager: +1 213 460-9515 +roomNumber: 8150 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nancy Cesario,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nancy Cesario +sn: Cesario +description: This is Nancy Cesario's description +facsimileTelephoneNumber: +1 804 826-8542 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 241-5716 +title: Associate Management Consultant +userPassword: Password1 +uid: CesarioN +givenName: Nancy +mail: CesarioN@0834bcacddfd4229b6702a62e2551569.bitwarden.com +carLicense: MMLWAJ +departmentNumber: 1806 +employeeType: Normal +homePhone: +1 804 479-5218 +initials: N. C. +mobile: +1 804 650-1629 +pager: +1 804 415-9481 +roomNumber: 8070 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rosita Carella,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosita Carella +sn: Carella +description: This is Rosita Carella's description +facsimileTelephoneNumber: +1 818 656-8239 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 124-7124 +title: Chief Peons Warrior +userPassword: Password1 +uid: CarellaR +givenName: Rosita +mail: CarellaR@36e3b9c15a4246d0b9f5619fbb566424.bitwarden.com +carLicense: 2LMLJF +departmentNumber: 6549 +employeeType: Normal +homePhone: +1 818 943-7468 +initials: R. C. +mobile: +1 818 991-9902 +pager: +1 818 496-1438 +roomNumber: 8288 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reiko Gheorghe +sn: Gheorghe +description: This is Reiko Gheorghe's description +facsimileTelephoneNumber: +1 818 439-1040 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 603-3090 +title: Master Janitorial Visionary +userPassword: Password1 +uid: GheorghR +givenName: Reiko +mail: GheorghR@7585d16536b0418b992e73193b27cc42.bitwarden.com +carLicense: 0C9A5Q +departmentNumber: 3843 +employeeType: Contract +homePhone: +1 818 125-9391 +initials: R. G. +mobile: +1 818 675-9573 +pager: +1 818 108-7025 +roomNumber: 9293 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Keven Cordy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keven Cordy +sn: Cordy +description: This is Keven Cordy's description +facsimileTelephoneNumber: +1 213 175-3274 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 781-9278 +title: Master Human Resources Czar +userPassword: Password1 +uid: CordyK +givenName: Keven +mail: CordyK@0af04fcd60da40099a5a068c388bafe2.bitwarden.com +carLicense: SEYH2S +departmentNumber: 7841 +employeeType: Contract +homePhone: +1 213 352-1780 +initials: K. C. +mobile: +1 213 900-9014 +pager: +1 213 457-2682 +roomNumber: 9418 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jordain Cellucci +sn: Cellucci +description: This is Jordain Cellucci's description +facsimileTelephoneNumber: +1 415 662-3561 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 415 836-4804 +title: Chief Product Testing Technician +userPassword: Password1 +uid: CelluccJ +givenName: Jordain +mail: CelluccJ@68cfba969ba74400992bfae87ff5159e.bitwarden.com +carLicense: KQRPLP +departmentNumber: 2948 +employeeType: Contract +homePhone: +1 415 490-7810 +initials: J. C. +mobile: +1 415 157-3733 +pager: +1 415 660-9060 +roomNumber: 8028 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jourdan Azevedo +sn: Azevedo +description: This is Jourdan Azevedo's description +facsimileTelephoneNumber: +1 818 688-4882 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 818 310-2107 +title: Chief Product Development Sales Rep +userPassword: Password1 +uid: AzevedoJ +givenName: Jourdan +mail: AzevedoJ@69b627b90a5c4b27910e77ecc55f7d25.bitwarden.com +carLicense: 55P2IL +departmentNumber: 9785 +employeeType: Employee +homePhone: +1 818 771-5501 +initials: J. A. +mobile: +1 818 509-6305 +pager: +1 818 160-5673 +roomNumber: 9021 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wan Savard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wan Savard +sn: Savard +description: This is Wan Savard's description +facsimileTelephoneNumber: +1 510 945-3557 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 206-6988 +title: Chief Product Testing Artist +userPassword: Password1 +uid: SavardW +givenName: Wan +mail: SavardW@28d2c310a8f14caeb811cfb7bdd890df.bitwarden.com +carLicense: PTD6SD +departmentNumber: 7921 +employeeType: Contract +homePhone: +1 510 680-4506 +initials: W. S. +mobile: +1 510 104-6228 +pager: +1 510 613-5128 +roomNumber: 9849 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Albertine Hulvershorn +sn: Hulvershorn +description: This is Albertine Hulvershorn's description +facsimileTelephoneNumber: +1 408 749-4876 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 812-4870 +title: Master Human Resources Assistant +userPassword: Password1 +uid: HulversA +givenName: Albertine +mail: HulversA@ad005e1f3e2c4d6ba75c2d9c48687591.bitwarden.com +carLicense: YDX0WE +departmentNumber: 4570 +employeeType: Employee +homePhone: +1 408 411-1542 +initials: A. H. +mobile: +1 408 232-5872 +pager: +1 408 741-7289 +roomNumber: 8014 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phaedra OHeocha +sn: OHeocha +description: This is Phaedra OHeocha's description +facsimileTelephoneNumber: +1 804 503-3225 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 758-1433 +title: Master Product Testing Assistant +userPassword: Password1 +uid: OHeochaP +givenName: Phaedra +mail: OHeochaP@4cd03f6d248a456a897d07898cc62094.bitwarden.com +carLicense: NAPXDD +departmentNumber: 7067 +employeeType: Employee +homePhone: +1 804 116-1673 +initials: P. O. +mobile: +1 804 850-7794 +pager: +1 804 572-6477 +roomNumber: 8875 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jen Kamoun,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jen Kamoun +sn: Kamoun +description: This is Jen Kamoun's description +facsimileTelephoneNumber: +1 415 682-8300 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 505-4097 +title: Junior Administrative Pinhead +userPassword: Password1 +uid: KamounJ +givenName: Jen +mail: KamounJ@f7e815f56fc1472f8f953f85688ba7a4.bitwarden.com +carLicense: NIJLWG +departmentNumber: 4763 +employeeType: Contract +homePhone: +1 415 420-4358 +initials: J. K. +mobile: +1 415 662-4804 +pager: +1 415 876-6504 +roomNumber: 8927 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daisi Rabjohn +sn: Rabjohn +description: This is Daisi Rabjohn's description +facsimileTelephoneNumber: +1 206 486-5684 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 586-2640 +title: Master Product Testing Technician +userPassword: Password1 +uid: RabjohnD +givenName: Daisi +mail: RabjohnD@b96d42e36dbf45089ca1b6d523eba92e.bitwarden.com +carLicense: DV797B +departmentNumber: 1638 +employeeType: Contract +homePhone: +1 206 851-5469 +initials: D. R. +mobile: +1 206 507-6643 +pager: +1 206 190-6953 +roomNumber: 9508 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zitella Paylor,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zitella Paylor +sn: Paylor +description: This is Zitella Paylor's description +facsimileTelephoneNumber: +1 415 959-5406 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 310-9677 +title: Master Administrative Manager +userPassword: Password1 +uid: PaylorZ +givenName: Zitella +mail: PaylorZ@04570161b7ed42e28c63e5ce9c0aa4a2.bitwarden.com +carLicense: 6N11AS +departmentNumber: 8608 +employeeType: Contract +homePhone: +1 415 794-1223 +initials: Z. P. +mobile: +1 415 781-6373 +pager: +1 415 696-4367 +roomNumber: 8865 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Logan Blaylock,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Logan Blaylock +sn: Blaylock +description: This is Logan Blaylock's description +facsimileTelephoneNumber: +1 213 958-6933 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 742-1827 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: BlaylocL +givenName: Logan +mail: BlaylocL@2699c3099b704f2ba70219415c473196.bitwarden.com +carLicense: QM57PS +departmentNumber: 7090 +employeeType: Normal +homePhone: +1 213 162-4723 +initials: L. B. +mobile: +1 213 434-3304 +pager: +1 213 653-7585 +roomNumber: 8096 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Merunix Walkley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merunix Walkley +sn: Walkley +description: This is Merunix Walkley's description +facsimileTelephoneNumber: +1 213 105-5972 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 708-9083 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: WalkleyM +givenName: Merunix +mail: WalkleyM@2ddbcfc2fdd94fdaa7f9feba31236675.bitwarden.com +carLicense: O7LDHT +departmentNumber: 2981 +employeeType: Normal +homePhone: +1 213 581-4970 +initials: M. W. +mobile: +1 213 912-4175 +pager: +1 213 775-7933 +roomNumber: 9148 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: DiaEdin Plssup +sn: Plssup +description: This is DiaEdin Plssup's description +facsimileTelephoneNumber: +1 804 656-2412 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 804 391-6665 +title: Supreme Administrative Czar +userPassword: Password1 +uid: PlssupD +givenName: DiaEdin +mail: PlssupD@f5e50d6b794248c497f1edc0acd0a4d1.bitwarden.com +carLicense: 9LMXV8 +departmentNumber: 3110 +employeeType: Contract +homePhone: +1 804 928-3788 +initials: D. P. +mobile: +1 804 381-9303 +pager: +1 804 923-9072 +roomNumber: 8094 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kaja Runkel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaja Runkel +sn: Runkel +description: This is Kaja Runkel's description +facsimileTelephoneNumber: +1 510 169-4479 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 561-1218 +title: Associate Administrative Writer +userPassword: Password1 +uid: RunkelK +givenName: Kaja +mail: RunkelK@2818571517744716a1e0f70eed1d8ffd.bitwarden.com +carLicense: 0NSMMQ +departmentNumber: 3426 +employeeType: Normal +homePhone: +1 510 449-5011 +initials: K. R. +mobile: +1 510 740-1257 +pager: +1 510 288-1671 +roomNumber: 8110 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Leia Samuel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leia Samuel +sn: Samuel +description: This is Leia Samuel's description +facsimileTelephoneNumber: +1 510 343-5589 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 848-5609 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: SamuelL +givenName: Leia +mail: SamuelL@9eff12629cf040fd91abde8fb9ba1a1e.bitwarden.com +carLicense: YND6HO +departmentNumber: 2968 +employeeType: Contract +homePhone: +1 510 644-6749 +initials: L. S. +mobile: +1 510 714-8108 +pager: +1 510 170-4958 +roomNumber: 9529 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Catha Matsunaga,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catha Matsunaga +sn: Matsunaga +description: This is Catha Matsunaga's description +facsimileTelephoneNumber: +1 818 647-4576 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 625-2380 +title: Chief Product Development Architect +userPassword: Password1 +uid: MatsunaC +givenName: Catha +mail: MatsunaC@a0698e6e756a42f28ea2d90c4b303b9e.bitwarden.com +carLicense: 5R1NOQ +departmentNumber: 7850 +employeeType: Normal +homePhone: +1 818 805-1816 +initials: C. M. +mobile: +1 818 550-3325 +pager: +1 818 335-3836 +roomNumber: 9051 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolynn Delorenzi +sn: Delorenzi +description: This is Jolynn Delorenzi's description +facsimileTelephoneNumber: +1 818 350-3143 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 818 270-8621 +title: Supreme Administrative Figurehead +userPassword: Password1 +uid: DelorenJ +givenName: Jolynn +mail: DelorenJ@6612035362774dc39b65e2c45a86df3a.bitwarden.com +carLicense: AU7VBL +departmentNumber: 6058 +employeeType: Contract +homePhone: +1 818 333-1040 +initials: J. D. +mobile: +1 818 325-7741 +pager: +1 818 912-7087 +roomNumber: 9377 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Luc Harless,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luc Harless +sn: Harless +description: This is Luc Harless's description +facsimileTelephoneNumber: +1 818 157-3723 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 635-4817 +title: Supreme Human Resources Czar +userPassword: Password1 +uid: HarlessL +givenName: Luc +mail: HarlessL@a3cc15e6ac3a471cb783c4563846998f.bitwarden.com +carLicense: 93SLF0 +departmentNumber: 4921 +employeeType: Employee +homePhone: +1 818 585-9539 +initials: L. H. +mobile: +1 818 871-7270 +pager: +1 818 719-8758 +roomNumber: 8267 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Katja Firtos,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katja Firtos +sn: Firtos +description: This is Katja Firtos's description +facsimileTelephoneNumber: +1 408 525-5081 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 408 231-7431 +title: Master Human Resources Technician +userPassword: Password1 +uid: FirtosK +givenName: Katja +mail: FirtosK@f115ded519524610ab74393c6ce8cdfc.bitwarden.com +carLicense: W5V721 +departmentNumber: 4915 +employeeType: Employee +homePhone: +1 408 776-4928 +initials: K. F. +mobile: +1 408 597-5782 +pager: +1 408 383-5157 +roomNumber: 8154 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vikki Ewasyshyn +sn: Ewasyshyn +description: This is Vikki Ewasyshyn's description +facsimileTelephoneNumber: +1 510 158-6834 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 614-1726 +title: Chief Peons Punk +userPassword: Password1 +uid: EwasyshV +givenName: Vikki +mail: EwasyshV@5e62af5b40314ecea84813300a46dd77.bitwarden.com +carLicense: NKBV07 +departmentNumber: 9705 +employeeType: Employee +homePhone: +1 510 885-9772 +initials: V. E. +mobile: +1 510 178-1868 +pager: +1 510 458-2425 +roomNumber: 9716 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mechelle Khawar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mechelle Khawar +sn: Khawar +description: This is Mechelle Khawar's description +facsimileTelephoneNumber: +1 213 653-8918 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 710-7799 +title: Junior Product Development Figurehead +userPassword: Password1 +uid: KhawarM +givenName: Mechelle +mail: KhawarM@1339c7fc80324a9f9d6a9b7e7dc59ef3.bitwarden.com +carLicense: 9NIMVH +departmentNumber: 6280 +employeeType: Employee +homePhone: +1 213 221-7059 +initials: M. K. +mobile: +1 213 311-4282 +pager: +1 213 362-1166 +roomNumber: 9447 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bawn Gdowik +sn: Gdowik +description: This is Bawn Gdowik's description +facsimileTelephoneNumber: +1 206 121-9989 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 949-9678 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: GdowikB +givenName: Bawn +mail: GdowikB@34211993f6a54dc18f00a71a05d87998.bitwarden.com +carLicense: QQAJGO +departmentNumber: 8933 +employeeType: Normal +homePhone: +1 206 442-3936 +initials: B. G. +mobile: +1 206 444-6114 +pager: +1 206 157-2582 +roomNumber: 9980 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Channa Abernethy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Channa Abernethy +sn: Abernethy +description: This is Channa Abernethy's description +facsimileTelephoneNumber: +1 818 497-7255 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 898-9933 +title: Junior Janitorial Mascot +userPassword: Password1 +uid: AbernetC +givenName: Channa +mail: AbernetC@f397541d0e814623b745c4fbd77b1a79.bitwarden.com +carLicense: 3B8XBF +departmentNumber: 8502 +employeeType: Normal +homePhone: +1 818 654-7250 +initials: C. A. +mobile: +1 818 389-1628 +pager: +1 818 565-6136 +roomNumber: 8631 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Benita Lathrop,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benita Lathrop +sn: Lathrop +description: This is Benita Lathrop's description +facsimileTelephoneNumber: +1 206 270-8053 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 519-7884 +title: Associate Management Technician +userPassword: Password1 +uid: LathropB +givenName: Benita +mail: LathropB@186cf3c7f45744c0827699c22d51d565.bitwarden.com +carLicense: VTLLQF +departmentNumber: 6762 +employeeType: Normal +homePhone: +1 206 230-2111 +initials: B. L. +mobile: +1 206 721-3673 +pager: +1 206 125-3398 +roomNumber: 8196 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zelda Naem,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zelda Naem +sn: Naem +description: This is Zelda Naem's description +facsimileTelephoneNumber: +1 415 269-4589 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 975-7511 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: NaemZ +givenName: Zelda +mail: NaemZ@eb362d3928c448a4b72d63b85283da63.bitwarden.com +carLicense: SULSM6 +departmentNumber: 6622 +employeeType: Normal +homePhone: +1 415 242-4238 +initials: Z. N. +mobile: +1 415 765-3311 +pager: +1 415 133-2357 +roomNumber: 9675 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bettina Kudas,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettina Kudas +sn: Kudas +description: This is Bettina Kudas's description +facsimileTelephoneNumber: +1 415 543-8947 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 991-7278 +title: Chief Management Developer +userPassword: Password1 +uid: KudasB +givenName: Bettina +mail: KudasB@4a562374ace845b8b062489d81f91f68.bitwarden.com +carLicense: R0SV29 +departmentNumber: 1018 +employeeType: Employee +homePhone: +1 415 586-1302 +initials: B. K. +mobile: +1 415 762-1554 +pager: +1 415 245-6571 +roomNumber: 9190 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bettye Stern,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettye Stern +sn: Stern +description: This is Bettye Stern's description +facsimileTelephoneNumber: +1 804 400-3703 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 804 572-3134 +title: Master Payroll Architect +userPassword: Password1 +uid: SternB +givenName: Bettye +mail: SternB@67c2a7396dd34122b1f16e12b22a71ae.bitwarden.com +carLicense: FYJEGB +departmentNumber: 6667 +employeeType: Normal +homePhone: +1 804 857-5940 +initials: B. S. +mobile: +1 804 505-4131 +pager: +1 804 557-3802 +roomNumber: 8336 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lexine Aurelius +sn: Aurelius +description: This is Lexine Aurelius's description +facsimileTelephoneNumber: +1 408 316-4364 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 416-6426 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: AureliuL +givenName: Lexine +mail: AureliuL@532585f196ca4cccb80b4aa643b1dccd.bitwarden.com +carLicense: OW9VJ0 +departmentNumber: 7866 +employeeType: Contract +homePhone: +1 408 609-4965 +initials: L. A. +mobile: +1 408 715-2386 +pager: +1 408 783-9971 +roomNumber: 8645 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Janice Mattes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janice Mattes +sn: Mattes +description: This is Janice Mattes's description +facsimileTelephoneNumber: +1 804 565-3817 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 576-4908 +title: Chief Management Architect +userPassword: Password1 +uid: MattesJ +givenName: Janice +mail: MattesJ@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com +carLicense: 2PUNG7 +departmentNumber: 7796 +employeeType: Normal +homePhone: +1 804 500-4493 +initials: J. M. +mobile: +1 804 121-9647 +pager: +1 804 992-2276 +roomNumber: 8808 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Indiana Cobo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Indiana Cobo +sn: Cobo +description: This is Indiana Cobo's description +facsimileTelephoneNumber: +1 206 210-3248 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 472-4096 +title: Chief Human Resources Technician +userPassword: Password1 +uid: CoboI +givenName: Indiana +mail: CoboI@a951d7743a6642c2b51879514b5ca776.bitwarden.com +carLicense: D1CDIC +departmentNumber: 3801 +employeeType: Employee +homePhone: +1 206 623-4407 +initials: I. C. +mobile: +1 206 361-4610 +pager: +1 206 796-9960 +roomNumber: 9722 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lan Galbraith,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lan Galbraith +sn: Galbraith +description: This is Lan Galbraith's description +facsimileTelephoneNumber: +1 818 444-1730 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 805-3963 +title: Chief Janitorial Visionary +userPassword: Password1 +uid: GalbraiL +givenName: Lan +mail: GalbraiL@9b332776dd7c411abb2f40983aa8e189.bitwarden.com +carLicense: CJD3IV +departmentNumber: 5826 +employeeType: Contract +homePhone: +1 818 370-5273 +initials: L. G. +mobile: +1 818 806-4275 +pager: +1 818 953-2711 +roomNumber: 9478 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Joey Godcharles,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joey Godcharles +sn: Godcharles +description: This is Joey Godcharles's description +facsimileTelephoneNumber: +1 804 187-7949 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 658-3929 +title: Supreme Management Engineer +userPassword: Password1 +uid: GodcharJ +givenName: Joey +mail: GodcharJ@8c25af5fe5974fca953506b7d4eacda2.bitwarden.com +carLicense: 4PSYKS +departmentNumber: 2217 +employeeType: Employee +homePhone: +1 804 501-2141 +initials: J. G. +mobile: +1 804 249-6774 +pager: +1 804 425-8943 +roomNumber: 8438 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anastasia Sunstrum,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anastasia Sunstrum +sn: Sunstrum +description: This is Anastasia Sunstrum's description +facsimileTelephoneNumber: +1 213 424-5427 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 650-9992 +title: Master Management Czar +userPassword: Password1 +uid: SunstruA +givenName: Anastasia +mail: SunstruA@5bf40bf9784b4bb1b69d85ef3b145a7f.bitwarden.com +carLicense: P1DG5L +departmentNumber: 4753 +employeeType: Employee +homePhone: +1 213 379-6133 +initials: A. S. +mobile: +1 213 380-2034 +pager: +1 213 396-1750 +roomNumber: 8414 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dyan Reller,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyan Reller +sn: Reller +description: This is Dyan Reller's description +facsimileTelephoneNumber: +1 804 407-6914 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 242-6031 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: RellerD +givenName: Dyan +mail: RellerD@663a5be72ae949e89d0ecc1766eaf211.bitwarden.com +carLicense: YWRSOJ +departmentNumber: 6116 +employeeType: Employee +homePhone: +1 804 592-9685 +initials: D. R. +mobile: +1 804 957-4795 +pager: +1 804 792-3167 +roomNumber: 8236 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yih DeCecco,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yih DeCecco +sn: DeCecco +description: This is Yih DeCecco's description +facsimileTelephoneNumber: +1 213 579-4620 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 918-3823 +title: Master Janitorial Madonna +userPassword: Password1 +uid: DeCeccoY +givenName: Yih +mail: DeCeccoY@167b62c26a954f76bb6e985cad7eded6.bitwarden.com +carLicense: P64FD0 +departmentNumber: 9550 +employeeType: Normal +homePhone: +1 213 212-2919 +initials: Y. D. +mobile: +1 213 423-1154 +pager: +1 213 524-9478 +roomNumber: 8543 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leese Paul,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leese Paul +sn: Paul +description: This is Leese Paul's description +facsimileTelephoneNumber: +1 510 324-6736 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 178-7507 +title: Chief Payroll Developer +userPassword: Password1 +uid: PaulL +givenName: Leese +mail: PaulL@084896222f8c4b7eae30f7297ef0556c.bitwarden.com +carLicense: 5MYKLD +departmentNumber: 9213 +employeeType: Normal +homePhone: +1 510 809-7161 +initials: L. P. +mobile: +1 510 681-1348 +pager: +1 510 975-5827 +roomNumber: 9001 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nani Dedas,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nani Dedas +sn: Dedas +description: This is Nani Dedas's description +facsimileTelephoneNumber: +1 818 840-2847 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 818 783-4329 +title: Chief Payroll Mascot +userPassword: Password1 +uid: DedasN +givenName: Nani +mail: DedasN@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com +carLicense: TH1AJK +departmentNumber: 9446 +employeeType: Normal +homePhone: +1 818 762-5438 +initials: N. D. +mobile: +1 818 603-2533 +pager: +1 818 264-6667 +roomNumber: 8718 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Survey Lanzkron +sn: Lanzkron +description: This is Survey Lanzkron's description +facsimileTelephoneNumber: +1 206 816-9085 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 389-4422 +title: Chief Janitorial Czar +userPassword: Password1 +uid: LanzkroS +givenName: Survey +mail: LanzkroS@c7313b08ac43436397b7d1757040a613.bitwarden.com +carLicense: ACWBQU +departmentNumber: 7557 +employeeType: Employee +homePhone: +1 206 840-8406 +initials: S. L. +mobile: +1 206 119-5001 +pager: +1 206 580-6506 +roomNumber: 9279 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sari Rettie,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sari Rettie +sn: Rettie +description: This is Sari Rettie's description +facsimileTelephoneNumber: +1 206 530-7366 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 350-6033 +title: Chief Product Testing Director +userPassword: Password1 +uid: RettieS +givenName: Sari +mail: RettieS@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com +carLicense: XU69LM +departmentNumber: 3535 +employeeType: Employee +homePhone: +1 206 105-7649 +initials: S. R. +mobile: +1 206 697-3558 +pager: +1 206 120-3615 +roomNumber: 9138 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Etty Lowther,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Etty Lowther +sn: Lowther +description: This is Etty Lowther's description +facsimileTelephoneNumber: +1 818 714-8688 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 105-2858 +title: Master Product Testing Architect +userPassword: Password1 +uid: LowtherE +givenName: Etty +mail: LowtherE@5c906f42508445a781fade8bd577e2f3.bitwarden.com +carLicense: SL1BWG +departmentNumber: 1087 +employeeType: Normal +homePhone: +1 818 652-8000 +initials: E. L. +mobile: +1 818 745-9797 +pager: +1 818 482-9874 +roomNumber: 8408 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Toss Basa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toss Basa +sn: Basa +description: This is Toss Basa's description +facsimileTelephoneNumber: +1 510 626-2779 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 658-9981 +title: Master Payroll Vice President +userPassword: Password1 +uid: BasaT +givenName: Toss +mail: BasaT@04b4f27ec2ac43be97552612edca5a77.bitwarden.com +carLicense: 8WUXHT +departmentNumber: 3143 +employeeType: Normal +homePhone: +1 510 459-9756 +initials: T. B. +mobile: +1 510 861-8042 +pager: +1 510 281-6335 +roomNumber: 8338 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Naohiko Fradette,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naohiko Fradette +sn: Fradette +description: This is Naohiko Fradette's description +facsimileTelephoneNumber: +1 818 765-9080 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 249-8325 +title: Supreme Administrative Punk +userPassword: Password1 +uid: FradettN +givenName: Naohiko +mail: FradettN@e8492435966a4ed884337f2807856c41.bitwarden.com +carLicense: 78H5ES +departmentNumber: 2341 +employeeType: Employee +homePhone: +1 818 832-2861 +initials: N. F. +mobile: +1 818 723-3603 +pager: +1 818 847-8173 +roomNumber: 9728 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veradis Loadbuild +sn: Loadbuild +description: This is Veradis Loadbuild's description +facsimileTelephoneNumber: +1 415 555-6404 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 415 122-3872 +title: Master Human Resources President +userPassword: Password1 +uid: LoadbuiV +givenName: Veradis +mail: LoadbuiV@2d0e71959712498892398e30a50d5bec.bitwarden.com +carLicense: CO96WJ +departmentNumber: 7903 +employeeType: Contract +homePhone: +1 415 754-2908 +initials: V. L. +mobile: +1 415 525-8923 +pager: +1 415 982-6541 +roomNumber: 8332 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mathew Rodkey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mathew Rodkey +sn: Rodkey +description: This is Mathew Rodkey's description +facsimileTelephoneNumber: +1 408 910-5466 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 130-6217 +title: Supreme Peons Warrior +userPassword: Password1 +uid: RodkeyM +givenName: Mathew +mail: RodkeyM@49f96debcda94fc6baf356990b14b103.bitwarden.com +carLicense: N4BOAG +departmentNumber: 5571 +employeeType: Employee +homePhone: +1 408 744-6175 +initials: M. R. +mobile: +1 408 754-6547 +pager: +1 408 611-2831 +roomNumber: 9060 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sherry Maness,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherry Maness +sn: Maness +description: This is Sherry Maness's description +facsimileTelephoneNumber: +1 213 604-5054 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 860-1077 +title: Supreme Janitorial Visionary +userPassword: Password1 +uid: ManessS +givenName: Sherry +mail: ManessS@e58493f3b9184086b499252afcbae6a2.bitwarden.com +carLicense: UQQE2F +departmentNumber: 7561 +employeeType: Employee +homePhone: +1 213 457-1672 +initials: S. M. +mobile: +1 213 792-7173 +pager: +1 213 635-9297 +roomNumber: 8804 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lowell Barentsen +sn: Barentsen +description: This is Lowell Barentsen's description +facsimileTelephoneNumber: +1 510 551-9658 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 910-2750 +title: Supreme Janitorial Writer +userPassword: Password1 +uid: BarentsL +givenName: Lowell +mail: BarentsL@9ef3979acd57459c854aa3907f13053a.bitwarden.com +carLicense: 6J0K7B +departmentNumber: 7251 +employeeType: Contract +homePhone: +1 510 348-3188 +initials: L. B. +mobile: +1 510 997-1717 +pager: +1 510 767-1077 +roomNumber: 8761 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabbey Constantinides +sn: Constantinides +description: This is Gabbey Constantinides's description +facsimileTelephoneNumber: +1 510 335-6241 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 510 716-4671 +title: Chief Product Testing Developer +userPassword: Password1 +uid: ConstanG +givenName: Gabbey +mail: ConstanG@bcfbfd5ee6b14185b04773704662d3e6.bitwarden.com +carLicense: IY0768 +departmentNumber: 7378 +employeeType: Normal +homePhone: +1 510 351-8420 +initials: G. C. +mobile: +1 510 509-9951 +pager: +1 510 630-5088 +roomNumber: 8962 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Delphinia Brehm,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delphinia Brehm +sn: Brehm +description: This is Delphinia Brehm's description +facsimileTelephoneNumber: +1 206 554-2524 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 277-1367 +title: Master Product Development Fellow +userPassword: Password1 +uid: BrehmD +givenName: Delphinia +mail: BrehmD@d3f27a242bfb4ac3a10d62c1f67cde29.bitwarden.com +carLicense: HDVUUN +departmentNumber: 3008 +employeeType: Normal +homePhone: +1 206 290-7993 +initials: D. B. +mobile: +1 206 844-7239 +pager: +1 206 161-2302 +roomNumber: 8099 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Roselin Payn,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roselin Payn +sn: Payn +description: This is Roselin Payn's description +facsimileTelephoneNumber: +1 415 970-4420 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 857-7428 +title: Chief Human Resources Visionary +userPassword: Password1 +uid: PaynR +givenName: Roselin +mail: PaynR@8b4e205f7cd04cdf9570b14ba9584f1d.bitwarden.com +carLicense: OGJSFL +departmentNumber: 5835 +employeeType: Contract +homePhone: +1 415 922-6095 +initials: R. P. +mobile: +1 415 513-4623 +pager: +1 415 224-2901 +roomNumber: 9535 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arline Fryer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arline Fryer +sn: Fryer +description: This is Arline Fryer's description +facsimileTelephoneNumber: +1 213 254-1717 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 240-1859 +title: Master Management Evangelist +userPassword: Password1 +uid: FryerA +givenName: Arline +mail: FryerA@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com +carLicense: B5LVWQ +departmentNumber: 1431 +employeeType: Normal +homePhone: +1 213 644-6236 +initials: A. F. +mobile: +1 213 241-4186 +pager: +1 213 359-9336 +roomNumber: 9820 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Piper Lesperance,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Piper Lesperance +sn: Lesperance +description: This is Piper Lesperance's description +facsimileTelephoneNumber: +1 206 571-7416 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 370-1492 +title: Junior Peons Madonna +userPassword: Password1 +uid: LesperaP +givenName: Piper +mail: LesperaP@a2ea301b88434726b194e4c9303a1849.bitwarden.com +carLicense: AR5JGR +departmentNumber: 7235 +employeeType: Contract +homePhone: +1 206 913-8956 +initials: P. L. +mobile: +1 206 804-4939 +pager: +1 206 586-7462 +roomNumber: 9077 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mindy Herring,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mindy Herring +sn: Herring +description: This is Mindy Herring's description +facsimileTelephoneNumber: +1 206 103-9646 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 517-3985 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: HerringM +givenName: Mindy +mail: HerringM@75ca8d39c50647a3bea983d4fa29d680.bitwarden.com +carLicense: F30UFL +departmentNumber: 8249 +employeeType: Contract +homePhone: +1 206 753-5540 +initials: M. H. +mobile: +1 206 596-1912 +pager: +1 206 267-8065 +roomNumber: 8628 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chandrakant Rodely +sn: Rodely +description: This is Chandrakant Rodely's description +facsimileTelephoneNumber: +1 818 638-1847 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 249-7474 +title: Chief Janitorial Sales Rep +userPassword: Password1 +uid: RodelyC +givenName: Chandrakant +mail: RodelyC@ca829dfd11e64b2594b0329b3f25132e.bitwarden.com +carLicense: P630XA +departmentNumber: 6214 +employeeType: Normal +homePhone: +1 818 136-9678 +initials: C. R. +mobile: +1 818 734-4215 +pager: +1 818 977-4530 +roomNumber: 8666 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vonnie Bullard,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vonnie Bullard +sn: Bullard +description: This is Vonnie Bullard's description +facsimileTelephoneNumber: +1 408 216-3687 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 232-9965 +title: Junior Peons Visionary +userPassword: Password1 +uid: BullardV +givenName: Vonnie +mail: BullardV@13739ed68fac456bb1c36df8aacf938b.bitwarden.com +carLicense: LJQOUB +departmentNumber: 5840 +employeeType: Contract +homePhone: +1 408 953-5780 +initials: V. B. +mobile: +1 408 961-9395 +pager: +1 408 996-6109 +roomNumber: 9605 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lotti Gutcher,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lotti Gutcher +sn: Gutcher +description: This is Lotti Gutcher's description +facsimileTelephoneNumber: +1 415 907-9701 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 438-9534 +title: Master Product Development Vice President +userPassword: Password1 +uid: GutcherL +givenName: Lotti +mail: GutcherL@f60373f986824ff5b24230896655c1d9.bitwarden.com +carLicense: DO66CT +departmentNumber: 5872 +employeeType: Contract +homePhone: +1 415 537-2458 +initials: L. G. +mobile: +1 415 609-9774 +pager: +1 415 930-9694 +roomNumber: 8181 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sheldon Overton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheldon Overton +sn: Overton +description: This is Sheldon Overton's description +facsimileTelephoneNumber: +1 206 527-1442 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 177-7166 +title: Junior Product Development Czar +userPassword: Password1 +uid: OvertonS +givenName: Sheldon +mail: OvertonS@f46633fbb9a14011a26194c56d6fd793.bitwarden.com +carLicense: LYJ5BK +departmentNumber: 1524 +employeeType: Normal +homePhone: +1 206 515-1467 +initials: S. O. +mobile: +1 206 172-2770 +pager: +1 206 150-9099 +roomNumber: 9259 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Celestine Zargham,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celestine Zargham +sn: Zargham +description: This is Celestine Zargham's description +facsimileTelephoneNumber: +1 408 958-7503 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 408 715-1148 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: ZarghamC +givenName: Celestine +mail: ZarghamC@7e7373daa08d4a3b834f2e415978d199.bitwarden.com +carLicense: O0J87F +departmentNumber: 8690 +employeeType: Employee +homePhone: +1 408 526-4860 +initials: C. Z. +mobile: +1 408 882-1591 +pager: +1 408 246-1590 +roomNumber: 8932 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marv Regier,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marv Regier +sn: Regier +description: This is Marv Regier's description +facsimileTelephoneNumber: +1 804 641-5981 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 619-6141 +title: Master Product Development Manager +userPassword: Password1 +uid: RegierM +givenName: Marv +mail: RegierM@abdd973e03c84ced8f6317d8b973d650.bitwarden.com +carLicense: 5KGSM4 +departmentNumber: 8060 +employeeType: Contract +homePhone: +1 804 495-1154 +initials: M. R. +mobile: +1 804 589-3375 +pager: +1 804 425-6239 +roomNumber: 9012 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Teddi Behler,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teddi Behler +sn: Behler +description: This is Teddi Behler's description +facsimileTelephoneNumber: +1 510 207-5308 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 628-4121 +title: Supreme Administrative Manager +userPassword: Password1 +uid: BehlerT +givenName: Teddi +mail: BehlerT@f2b2c2d7db06460ba37d008fa1436774.bitwarden.com +carLicense: 3MEC6V +departmentNumber: 2131 +employeeType: Employee +homePhone: +1 510 103-8099 +initials: T. B. +mobile: +1 510 878-6756 +pager: +1 510 487-6348 +roomNumber: 8750 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pascale Lawrie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pascale Lawrie +sn: Lawrie +description: This is Pascale Lawrie's description +facsimileTelephoneNumber: +1 415 158-5138 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 542-7309 +title: Supreme Payroll President +userPassword: Password1 +uid: LawrieP +givenName: Pascale +mail: LawrieP@7a73ebe249a24a008fa58af0c16c0578.bitwarden.com +carLicense: C0EAR1 +departmentNumber: 6160 +employeeType: Employee +homePhone: +1 415 104-1431 +initials: P. L. +mobile: +1 415 734-1535 +pager: +1 415 605-4731 +roomNumber: 8933 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barnes Sysadmin +sn: Sysadmin +description: This is Barnes Sysadmin's description +facsimileTelephoneNumber: +1 213 919-5341 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 438-9194 +title: Associate Payroll Director +userPassword: Password1 +uid: SysadmiB +givenName: Barnes +mail: SysadmiB@822da1d370d045aaadf5490626c311f7.bitwarden.com +carLicense: NCRKPT +departmentNumber: 4780 +employeeType: Contract +homePhone: +1 213 480-7992 +initials: B. S. +mobile: +1 213 996-3121 +pager: +1 213 172-1314 +roomNumber: 9387 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Class Focht,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Class Focht +sn: Focht +description: This is Class Focht's description +facsimileTelephoneNumber: +1 408 381-8737 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 314-2961 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: FochtC +givenName: Class +mail: FochtC@cdc522ed20cd44a189467c4e7a11e69b.bitwarden.com +carLicense: 6224PS +departmentNumber: 3647 +employeeType: Employee +homePhone: +1 408 665-3651 +initials: C. F. +mobile: +1 408 376-4382 +pager: +1 408 690-3196 +roomNumber: 9143 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leonida Raha,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonida Raha +sn: Raha +description: This is Leonida Raha's description +facsimileTelephoneNumber: +1 510 264-7892 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 800-3103 +title: Supreme Management Janitor +userPassword: Password1 +uid: RahaL +givenName: Leonida +mail: RahaL@a7dde2ed9345430eab1db4c18ae1be2c.bitwarden.com +carLicense: UL0KM2 +departmentNumber: 8092 +employeeType: Normal +homePhone: +1 510 429-2124 +initials: L. R. +mobile: +1 510 140-8437 +pager: +1 510 255-7658 +roomNumber: 8071 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emylee BaggermanWebster +sn: BaggermanWebster +description: This is Emylee BaggermanWebster's description +facsimileTelephoneNumber: +1 408 519-3791 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 610-7376 +title: Chief Product Testing Punk +userPassword: Password1 +uid: BaggermE +givenName: Emylee +mail: BaggermE@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com +carLicense: XYQRS3 +departmentNumber: 9918 +employeeType: Normal +homePhone: +1 408 340-1791 +initials: E. B. +mobile: +1 408 435-6220 +pager: +1 408 135-3666 +roomNumber: 8979 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ree Goodier,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ree Goodier +sn: Goodier +description: This is Ree Goodier's description +facsimileTelephoneNumber: +1 510 983-6404 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 111-1450 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: GoodierR +givenName: Ree +mail: GoodierR@64b7c8578355450790f3fb63c15436b2.bitwarden.com +carLicense: 5455NX +departmentNumber: 6452 +employeeType: Contract +homePhone: +1 510 394-7255 +initials: R. G. +mobile: +1 510 815-6950 +pager: +1 510 175-1816 +roomNumber: 9666 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wally Hlauschek +sn: Hlauschek +description: This is Wally Hlauschek's description +facsimileTelephoneNumber: +1 206 726-7689 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 737-1424 +title: Chief Product Testing Czar +userPassword: Password1 +uid: HlauschW +givenName: Wally +mail: HlauschW@ab148181beff4ed0bd2db4ce8fd9f720.bitwarden.com +carLicense: CQD0MV +departmentNumber: 9646 +employeeType: Employee +homePhone: +1 206 415-8274 +initials: W. H. +mobile: +1 206 499-7340 +pager: +1 206 249-9067 +roomNumber: 8248 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Raj Mahlig,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raj Mahlig +sn: Mahlig +description: This is Raj Mahlig's description +facsimileTelephoneNumber: +1 804 354-2564 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 469-3851 +title: Supreme Peons Artist +userPassword: Password1 +uid: MahligR +givenName: Raj +mail: MahligR@47682bc47a784ad6a0b0eb19fb2f6567.bitwarden.com +carLicense: YYDKKI +departmentNumber: 8762 +employeeType: Normal +homePhone: +1 804 293-3278 +initials: R. M. +mobile: +1 804 511-5671 +pager: +1 804 370-6101 +roomNumber: 9756 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nobutaka Merinder +sn: Merinder +description: This is Nobutaka Merinder's description +facsimileTelephoneNumber: +1 415 464-1178 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 618-4674 +title: Master Janitorial Technician +userPassword: Password1 +uid: MerindeN +givenName: Nobutaka +mail: MerindeN@ab64d8db9da04b27bba1bfcb5bef47a6.bitwarden.com +carLicense: D81NE7 +departmentNumber: 6285 +employeeType: Employee +homePhone: +1 415 730-7183 +initials: N. M. +mobile: +1 415 303-8322 +pager: +1 415 932-1473 +roomNumber: 9510 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ruchel Jobs,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruchel Jobs +sn: Jobs +description: This is Ruchel Jobs's description +facsimileTelephoneNumber: +1 213 639-7463 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 767-4517 +title: Master Management Grunt +userPassword: Password1 +uid: JobsR +givenName: Ruchel +mail: JobsR@5086e8ad642d4bbd8705f06e9ddda989.bitwarden.com +carLicense: Y3TSOU +departmentNumber: 1436 +employeeType: Employee +homePhone: +1 213 918-2232 +initials: R. J. +mobile: +1 213 420-7139 +pager: +1 213 173-1303 +roomNumber: 9407 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgena Zaloker +sn: Zaloker +description: This is Georgena Zaloker's description +facsimileTelephoneNumber: +1 510 956-7341 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 939-5030 +title: Junior Human Resources Architect +userPassword: Password1 +uid: ZalokerG +givenName: Georgena +mail: ZalokerG@95fa7f3851674364944296f3d3c2378d.bitwarden.com +carLicense: EKBHB4 +departmentNumber: 6743 +employeeType: Employee +homePhone: +1 510 430-8036 +initials: G. Z. +mobile: +1 510 650-6832 +pager: +1 510 794-1270 +roomNumber: 9534 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fanchette Wittich,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fanchette Wittich +sn: Wittich +description: This is Fanchette Wittich's description +facsimileTelephoneNumber: +1 408 258-9153 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 408 659-8737 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: WittichF +givenName: Fanchette +mail: WittichF@abdd973e03c84ced8f6317d8b973d650.bitwarden.com +carLicense: Y3TVFV +departmentNumber: 9973 +employeeType: Employee +homePhone: +1 408 428-3835 +initials: F. W. +mobile: +1 408 971-4597 +pager: +1 408 361-1591 +roomNumber: 8345 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lorie Boucher,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorie Boucher +sn: Boucher +description: This is Lorie Boucher's description +facsimileTelephoneNumber: +1 213 814-4418 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 969-4290 +title: Chief Peons Vice President +userPassword: Password1 +uid: BoucherL +givenName: Lorie +mail: BoucherL@459e2f62db0c40d5b3c7b2d6945ef874.bitwarden.com +carLicense: N20IG9 +departmentNumber: 2533 +employeeType: Contract +homePhone: +1 213 811-5859 +initials: L. B. +mobile: +1 213 629-6208 +pager: +1 213 467-1380 +roomNumber: 8635 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=MingChang Presner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MingChang Presner +sn: Presner +description: This is MingChang Presner's description +facsimileTelephoneNumber: +1 213 379-1632 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 500-1551 +title: Junior Human Resources President +userPassword: Password1 +uid: PresnerM +givenName: MingChang +mail: PresnerM@144f4bf7b2a54773b3cf6bc1af396542.bitwarden.com +carLicense: 4QY754 +departmentNumber: 3552 +employeeType: Employee +homePhone: +1 213 920-2144 +initials: M. P. +mobile: +1 213 733-3207 +pager: +1 213 662-7580 +roomNumber: 8082 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dierdre Rehel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dierdre Rehel +sn: Rehel +description: This is Dierdre Rehel's description +facsimileTelephoneNumber: +1 213 730-2507 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 861-3761 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: RehelD +givenName: Dierdre +mail: RehelD@1a43b4fd45d14eebb3f3365f12f4390c.bitwarden.com +carLicense: ROUAK5 +departmentNumber: 4414 +employeeType: Contract +homePhone: +1 213 806-2591 +initials: D. R. +mobile: +1 213 323-6323 +pager: +1 213 263-5412 +roomNumber: 9226 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ulrica Benda,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ulrica Benda +sn: Benda +description: This is Ulrica Benda's description +facsimileTelephoneNumber: +1 206 423-9202 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 130-5930 +title: Chief Administrative Artist +userPassword: Password1 +uid: BendaU +givenName: Ulrica +mail: BendaU@d9da444c24af403dad834f9973048314.bitwarden.com +carLicense: PFN4B9 +departmentNumber: 2110 +employeeType: Contract +homePhone: +1 206 339-8542 +initials: U. B. +mobile: +1 206 538-6751 +pager: +1 206 250-8395 +roomNumber: 9172 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Brechtje Revah,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brechtje Revah +sn: Revah +description: This is Brechtje Revah's description +facsimileTelephoneNumber: +1 510 540-7210 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 137-6984 +title: Associate Human Resources Manager +userPassword: Password1 +uid: RevahB +givenName: Brechtje +mail: RevahB@753cc3c48ad24183b60cde608a41edda.bitwarden.com +carLicense: J98GAG +departmentNumber: 5669 +employeeType: Normal +homePhone: +1 510 879-8101 +initials: B. R. +mobile: +1 510 260-2932 +pager: +1 510 462-9049 +roomNumber: 8685 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Howden Hoxie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Howden Hoxie +sn: Hoxie +description: This is Howden Hoxie's description +facsimileTelephoneNumber: +1 206 937-6001 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 932-7272 +title: Junior Management Manager +userPassword: Password1 +uid: HoxieH +givenName: Howden +mail: HoxieH@40992f2ace8d43a59f800186f855c626.bitwarden.com +carLicense: 8U8I6X +departmentNumber: 2279 +employeeType: Normal +homePhone: +1 206 942-8001 +initials: H. H. +mobile: +1 206 926-5135 +pager: +1 206 335-7813 +roomNumber: 9250 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marjory Hardin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjory Hardin +sn: Hardin +description: This is Marjory Hardin's description +facsimileTelephoneNumber: +1 408 678-6422 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 408 342-2308 +title: Junior Management Writer +userPassword: Password1 +uid: HardinM +givenName: Marjory +mail: HardinM@b7be2bf29b064b349a27848f01a085d8.bitwarden.com +carLicense: DR2MKD +departmentNumber: 9090 +employeeType: Normal +homePhone: +1 408 602-1212 +initials: M. H. +mobile: +1 408 105-5077 +pager: +1 408 758-1691 +roomNumber: 9130 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kac Geuder,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kac Geuder +sn: Geuder +description: This is Kac Geuder's description +facsimileTelephoneNumber: +1 213 444-7953 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 155-8400 +title: Master Product Testing Stooge +userPassword: Password1 +uid: GeuderK +givenName: Kac +mail: GeuderK@8b6590e2256543d7b3730d478ab0e5e8.bitwarden.com +carLicense: 7SRREG +departmentNumber: 2837 +employeeType: Normal +homePhone: +1 213 910-7004 +initials: K. G. +mobile: +1 213 667-9469 +pager: +1 213 278-1042 +roomNumber: 8245 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antonia MacElwee +sn: MacElwee +description: This is Antonia MacElwee's description +facsimileTelephoneNumber: +1 804 757-7186 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 432-4984 +title: Chief Product Testing Architect +userPassword: Password1 +uid: MacElweA +givenName: Antonia +mail: MacElweA@e56c19ec1c2c428ba6d15f1ddf8804fc.bitwarden.com +carLicense: HHKCLC +departmentNumber: 3143 +employeeType: Normal +homePhone: +1 804 469-9869 +initials: A. M. +mobile: +1 804 493-4308 +pager: +1 804 815-6743 +roomNumber: 9370 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Derrick Moynihan +sn: Moynihan +description: This is Derrick Moynihan's description +facsimileTelephoneNumber: +1 510 687-7730 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 992-6316 +title: Master Janitorial Pinhead +userPassword: Password1 +uid: MoynihaD +givenName: Derrick +mail: MoynihaD@57e1662648e94370b63269dae2e89f73.bitwarden.com +carLicense: 2DFPCQ +departmentNumber: 9986 +employeeType: Normal +homePhone: +1 510 106-5280 +initials: D. M. +mobile: +1 510 301-9688 +pager: +1 510 782-9823 +roomNumber: 8961 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurel Iacovo +sn: Iacovo +description: This is Aurel Iacovo's description +facsimileTelephoneNumber: +1 415 588-4316 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 543-1828 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: IacovoA +givenName: Aurel +mail: IacovoA@99efb52676a5438d8f4dfeb830e52009.bitwarden.com +carLicense: N39EA5 +departmentNumber: 6539 +employeeType: Employee +homePhone: +1 415 279-2620 +initials: A. I. +mobile: +1 415 710-8756 +pager: +1 415 633-9640 +roomNumber: 8137 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Conchita Borek,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Conchita Borek +sn: Borek +description: This is Conchita Borek's description +facsimileTelephoneNumber: +1 415 653-8501 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 415 596-4054 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: BorekC +givenName: Conchita +mail: BorekC@c1da23a059a74c3d8ae1ac9edb4d3eea.bitwarden.com +carLicense: F4AQAF +departmentNumber: 4591 +employeeType: Normal +homePhone: +1 415 460-2390 +initials: C. B. +mobile: +1 415 657-8790 +pager: +1 415 697-7042 +roomNumber: 9622 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carter Billard,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carter Billard +sn: Billard +description: This is Carter Billard's description +facsimileTelephoneNumber: +1 213 141-3220 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 753-3793 +title: Associate Peons Fellow +userPassword: Password1 +uid: BillardC +givenName: Carter +mail: BillardC@cba87d0d73a2419787e0432699089510.bitwarden.com +carLicense: J1AY5C +departmentNumber: 5962 +employeeType: Normal +homePhone: +1 213 896-8910 +initials: C. B. +mobile: +1 213 725-1149 +pager: +1 213 872-6297 +roomNumber: 9656 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alison Culberson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alison Culberson +sn: Culberson +description: This is Alison Culberson's description +facsimileTelephoneNumber: +1 510 913-9212 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 849-8445 +title: Supreme Management Stooge +userPassword: Password1 +uid: CulbersA +givenName: Alison +mail: CulbersA@86c55960d45747ecb5afd7997d576a89.bitwarden.com +carLicense: 91SCAV +departmentNumber: 7257 +employeeType: Contract +homePhone: +1 510 578-8194 +initials: A. C. +mobile: +1 510 666-8820 +pager: +1 510 969-2880 +roomNumber: 9543 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dev Lynham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dev Lynham +sn: Lynham +description: This is Dev Lynham's description +facsimileTelephoneNumber: +1 818 810-5711 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 281-1925 +title: Master Product Testing Fellow +userPassword: Password1 +uid: LynhamD +givenName: Dev +mail: LynhamD@4d2b6aeb52944f46890dd70951e65aa3.bitwarden.com +carLicense: ALEEJQ +departmentNumber: 4502 +employeeType: Normal +homePhone: +1 818 151-9545 +initials: D. L. +mobile: +1 818 928-4788 +pager: +1 818 850-1321 +roomNumber: 9821 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lucie Longhenry,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucie Longhenry +sn: Longhenry +description: This is Lucie Longhenry's description +facsimileTelephoneNumber: +1 213 835-7708 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 487-8444 +title: Associate Product Development Writer +userPassword: Password1 +uid: LonghenL +givenName: Lucie +mail: LonghenL@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com +carLicense: 3RS8DI +departmentNumber: 4079 +employeeType: Employee +homePhone: +1 213 307-6216 +initials: L. L. +mobile: +1 213 205-5333 +pager: +1 213 448-4558 +roomNumber: 8657 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Somsak Breault,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Somsak Breault +sn: Breault +description: This is Somsak Breault's description +facsimileTelephoneNumber: +1 206 445-7012 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 532-9623 +title: Junior Administrative Engineer +userPassword: Password1 +uid: BreaultS +givenName: Somsak +mail: BreaultS@db7691c9dca24eb7875f7a9259652b96.bitwarden.com +carLicense: JEUQB9 +departmentNumber: 2745 +employeeType: Employee +homePhone: +1 206 420-7370 +initials: S. B. +mobile: +1 206 225-9619 +pager: +1 206 246-7422 +roomNumber: 9987 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Regina Astor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regina Astor +sn: Astor +description: This is Regina Astor's description +facsimileTelephoneNumber: +1 206 818-5226 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 391-6899 +title: Associate Peons Developer +userPassword: Password1 +uid: AstorR +givenName: Regina +mail: AstorR@30db69640fb048128840ef2fb85c3577.bitwarden.com +carLicense: NNX76R +departmentNumber: 1431 +employeeType: Employee +homePhone: +1 206 993-5027 +initials: R. A. +mobile: +1 206 674-1647 +pager: +1 206 445-5249 +roomNumber: 8618 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Idalia Krauel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idalia Krauel +sn: Krauel +description: This is Idalia Krauel's description +facsimileTelephoneNumber: +1 804 841-3180 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 782-7496 +title: Master Payroll Madonna +userPassword: Password1 +uid: KrauelI +givenName: Idalia +mail: KrauelI@8225e046db804e04b9a2cde5ffe23088.bitwarden.com +carLicense: 545DV5 +departmentNumber: 2074 +employeeType: Employee +homePhone: +1 804 295-4896 +initials: I. K. +mobile: +1 804 533-8763 +pager: +1 804 625-7898 +roomNumber: 8422 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bnrtor Tadevich +sn: Tadevich +description: This is Bnrtor Tadevich's description +facsimileTelephoneNumber: +1 510 428-5741 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 275-9814 +title: Junior Human Resources Punk +userPassword: Password1 +uid: TadevicB +givenName: Bnrtor +mail: TadevicB@332c34f573ad4ec89381a4995815cc7e.bitwarden.com +carLicense: XQ6Y9T +departmentNumber: 2637 +employeeType: Employee +homePhone: +1 510 176-3738 +initials: B. T. +mobile: +1 510 554-8406 +pager: +1 510 446-2571 +roomNumber: 8454 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lolly Mattson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lolly Mattson +sn: Mattson +description: This is Lolly Mattson's description +facsimileTelephoneNumber: +1 818 309-5817 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 818 655-5512 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: MattsonL +givenName: Lolly +mail: MattsonL@039ec15b8547455eb4745e09f294d624.bitwarden.com +carLicense: SCAKAV +departmentNumber: 5393 +employeeType: Employee +homePhone: +1 818 112-5992 +initials: L. M. +mobile: +1 818 102-4633 +pager: +1 818 625-6388 +roomNumber: 9214 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Corinna Jesshope,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corinna Jesshope +sn: Jesshope +description: This is Corinna Jesshope's description +facsimileTelephoneNumber: +1 408 474-3063 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 545-5006 +title: Junior Administrative President +userPassword: Password1 +uid: JesshopC +givenName: Corinna +mail: JesshopC@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com +carLicense: 1EA4VH +departmentNumber: 3513 +employeeType: Employee +homePhone: +1 408 658-1162 +initials: C. J. +mobile: +1 408 588-9997 +pager: +1 408 222-8106 +roomNumber: 9389 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Guinevere Bower,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guinevere Bower +sn: Bower +description: This is Guinevere Bower's description +facsimileTelephoneNumber: +1 408 683-9768 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 232-3421 +title: Associate Product Development Madonna +userPassword: Password1 +uid: BowerG +givenName: Guinevere +mail: BowerG@1c2297c1716444ad8e93762f014c7f67.bitwarden.com +carLicense: 1OOMS3 +departmentNumber: 3419 +employeeType: Normal +homePhone: +1 408 828-7163 +initials: G. B. +mobile: +1 408 942-6996 +pager: +1 408 154-2755 +roomNumber: 9333 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivienne Feutlinske +sn: Feutlinske +description: This is Vivienne Feutlinske's description +facsimileTelephoneNumber: +1 415 145-9387 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 151-9727 +title: Supreme Product Development Visionary +userPassword: Password1 +uid: FeutlinV +givenName: Vivienne +mail: FeutlinV@dac9dfd573ee4f928ec9aa0996157f6f.bitwarden.com +carLicense: 35R6WJ +departmentNumber: 3542 +employeeType: Employee +homePhone: +1 415 936-2443 +initials: V. F. +mobile: +1 415 769-4206 +pager: +1 415 816-4147 +roomNumber: 8549 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Frederic Kemish,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frederic Kemish +sn: Kemish +description: This is Frederic Kemish's description +facsimileTelephoneNumber: +1 804 145-8005 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 862-6595 +title: Chief Payroll Developer +userPassword: Password1 +uid: KemishF +givenName: Frederic +mail: KemishF@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com +carLicense: 9RKFU4 +departmentNumber: 6436 +employeeType: Contract +homePhone: +1 804 663-5744 +initials: F. K. +mobile: +1 804 415-6401 +pager: +1 804 202-1029 +roomNumber: 8038 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Barb Mandel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barb Mandel +sn: Mandel +description: This is Barb Mandel's description +facsimileTelephoneNumber: +1 415 982-1420 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 853-2110 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: MandelB +givenName: Barb +mail: MandelB@123afab4d4de40e09319189089980d97.bitwarden.com +carLicense: AJWKCD +departmentNumber: 4548 +employeeType: Employee +homePhone: +1 415 980-7337 +initials: B. M. +mobile: +1 415 701-7424 +pager: +1 415 417-8406 +roomNumber: 8721 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rochell Muise,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rochell Muise +sn: Muise +description: This is Rochell Muise's description +facsimileTelephoneNumber: +1 415 268-1816 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 884-7637 +title: Junior Management Vice President +userPassword: Password1 +uid: MuiseR +givenName: Rochell +mail: MuiseR@d0510c6d4d2248279a5b0899ea306017.bitwarden.com +carLicense: 13GMOD +departmentNumber: 5457 +employeeType: Normal +homePhone: +1 415 891-3963 +initials: R. M. +mobile: +1 415 842-1357 +pager: +1 415 761-3894 +roomNumber: 9885 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Thea Atteridge,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thea Atteridge +sn: Atteridge +description: This is Thea Atteridge's description +facsimileTelephoneNumber: +1 510 558-8057 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 592-4665 +title: Master Administrative Technician +userPassword: Password1 +uid: AtteridT +givenName: Thea +mail: AtteridT@a6ca114df8334b8bba40f6036dd95ee9.bitwarden.com +carLicense: S0K92A +departmentNumber: 2069 +employeeType: Employee +homePhone: +1 510 674-7619 +initials: T. A. +mobile: +1 510 674-6855 +pager: +1 510 329-6458 +roomNumber: 9490 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Theressa Marks,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theressa Marks +sn: Marks +description: This is Theressa Marks's description +facsimileTelephoneNumber: +1 510 722-3573 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 765-1716 +title: Supreme Management Assistant +userPassword: Password1 +uid: MarksT +givenName: Theressa +mail: MarksT@4c1c5169ce594a0e842e898138488cd4.bitwarden.com +carLicense: OFXP0X +departmentNumber: 4094 +employeeType: Contract +homePhone: +1 510 701-4368 +initials: T. M. +mobile: +1 510 773-3893 +pager: +1 510 826-4439 +roomNumber: 9436 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Agna Ntelpac,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agna Ntelpac +sn: Ntelpac +description: This is Agna Ntelpac's description +facsimileTelephoneNumber: +1 408 555-4440 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 117-3865 +title: Supreme Peons Assistant +userPassword: Password1 +uid: NtelpacA +givenName: Agna +mail: NtelpacA@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com +carLicense: 9QNFS1 +departmentNumber: 5812 +employeeType: Contract +homePhone: +1 408 676-1395 +initials: A. N. +mobile: +1 408 389-1648 +pager: +1 408 181-9613 +roomNumber: 9028 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Peder Grewal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peder Grewal +sn: Grewal +description: This is Peder Grewal's description +facsimileTelephoneNumber: +1 510 241-8856 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 520-7410 +title: Junior Peons Artist +userPassword: Password1 +uid: GrewalP +givenName: Peder +mail: GrewalP@f20cdd91b77c4fa1af532b2ee7f13b4b.bitwarden.com +carLicense: PW17V5 +departmentNumber: 3784 +employeeType: Employee +homePhone: +1 510 901-5318 +initials: P. G. +mobile: +1 510 193-8659 +pager: +1 510 609-5073 +roomNumber: 8348 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Melony Nahas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melony Nahas +sn: Nahas +description: This is Melony Nahas's description +facsimileTelephoneNumber: +1 213 874-7191 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 213 223-4792 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: NahasM +givenName: Melony +mail: NahasM@8d84473559264c6592d3bbcbad962447.bitwarden.com +carLicense: O2UDLJ +departmentNumber: 6192 +employeeType: Employee +homePhone: +1 213 226-8708 +initials: M. N. +mobile: +1 213 827-5692 +pager: +1 213 294-3149 +roomNumber: 9034 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ileana Ude,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ileana Ude +sn: Ude +description: This is Ileana Ude's description +facsimileTelephoneNumber: +1 510 986-2909 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 716-2414 +title: Associate Peons Figurehead +userPassword: Password1 +uid: UdeI +givenName: Ileana +mail: UdeI@3862de637e0345d9b2a1837a52d0c5b1.bitwarden.com +carLicense: P31192 +departmentNumber: 7196 +employeeType: Normal +homePhone: +1 510 235-3103 +initials: I. U. +mobile: +1 510 885-2571 +pager: +1 510 324-1565 +roomNumber: 9281 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sofeya Khosravi +sn: Khosravi +description: This is Sofeya Khosravi's description +facsimileTelephoneNumber: +1 818 156-6788 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 420-1201 +title: Supreme Administrative Punk +userPassword: Password1 +uid: KhosravS +givenName: Sofeya +mail: KhosravS@f4f79ae5585f4229b44ed35d134a2fdc.bitwarden.com +carLicense: 09TRPT +departmentNumber: 6552 +employeeType: Normal +homePhone: +1 818 776-9311 +initials: S. K. +mobile: +1 818 339-3741 +pager: +1 818 802-8932 +roomNumber: 8602 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fscocos Azari,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fscocos Azari +sn: Azari +description: This is Fscocos Azari's description +facsimileTelephoneNumber: +1 818 250-6830 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 818 502-9790 +title: Associate Payroll Vice President +userPassword: Password1 +uid: AzariF +givenName: Fscocos +mail: AzariF@a8f7a07ce7504ae4bfde0cfae682a40b.bitwarden.com +carLicense: P1QHF3 +departmentNumber: 7700 +employeeType: Contract +homePhone: +1 818 524-3095 +initials: F. A. +mobile: +1 818 546-9397 +pager: +1 818 101-9465 +roomNumber: 9530 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Charmaine Rahmany,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charmaine Rahmany +sn: Rahmany +description: This is Charmaine Rahmany's description +facsimileTelephoneNumber: +1 415 442-9089 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 359-1009 +title: Junior Peons Janitor +userPassword: Password1 +uid: RahmanyC +givenName: Charmaine +mail: RahmanyC@37f4b24424844e629b19d1ee55799aa3.bitwarden.com +carLicense: 91BEAN +departmentNumber: 8314 +employeeType: Employee +homePhone: +1 415 281-2692 +initials: C. R. +mobile: +1 415 590-5803 +pager: +1 415 380-1438 +roomNumber: 9779 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ayn Odum,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ayn Odum +sn: Odum +description: This is Ayn Odum's description +facsimileTelephoneNumber: +1 408 391-8482 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 388-1803 +title: Chief Human Resources Dictator +userPassword: Password1 +uid: OdumA +givenName: Ayn +mail: OdumA@65523206681c4c868fd2bcf7f70e47c0.bitwarden.com +carLicense: M07N1Q +departmentNumber: 7209 +employeeType: Contract +homePhone: +1 408 626-6864 +initials: A. O. +mobile: +1 408 692-5629 +pager: +1 408 589-9645 +roomNumber: 8775 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annmaria LHeureux +sn: LHeureux +description: This is Annmaria LHeureux's description +facsimileTelephoneNumber: +1 213 360-7316 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 858-4909 +title: Master Administrative Director +userPassword: Password1 +uid: LHeureuA +givenName: Annmaria +mail: LHeureuA@bf23af50aea94f99aca4c696a7e766ff.bitwarden.com +carLicense: VXRPMT +departmentNumber: 1772 +employeeType: Contract +homePhone: +1 213 816-3211 +initials: A. L. +mobile: +1 213 300-8098 +pager: +1 213 380-3928 +roomNumber: 9037 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Norm Berrisford,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norm Berrisford +sn: Berrisford +description: This is Norm Berrisford's description +facsimileTelephoneNumber: +1 415 765-9320 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 628-1677 +title: Junior Peons Punk +userPassword: Password1 +uid: BerrisfN +givenName: Norm +mail: BerrisfN@32ce2ca229594ba68651edf24232f002.bitwarden.com +carLicense: 862J85 +departmentNumber: 7448 +employeeType: Employee +homePhone: +1 415 883-3205 +initials: N. B. +mobile: +1 415 285-3957 +pager: +1 415 231-5200 +roomNumber: 8723 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Elly Nagarur,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elly Nagarur +sn: Nagarur +description: This is Elly Nagarur's description +facsimileTelephoneNumber: +1 415 925-1211 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 398-1293 +title: Chief Product Development Janitor +userPassword: Password1 +uid: NagarurE +givenName: Elly +mail: NagarurE@0179b4952dc54ba39e1bba2996936e9f.bitwarden.com +carLicense: 4MN2XJ +departmentNumber: 5527 +employeeType: Employee +homePhone: +1 415 656-7520 +initials: E. N. +mobile: +1 415 421-2994 +pager: +1 415 954-2881 +roomNumber: 8834 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibley Sprunger +sn: Sprunger +description: This is Sibley Sprunger's description +facsimileTelephoneNumber: +1 818 991-7774 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 450-1245 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: SprungeS +givenName: Sibley +mail: SprungeS@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com +carLicense: MM2TJN +departmentNumber: 1258 +employeeType: Employee +homePhone: +1 818 863-2719 +initials: S. S. +mobile: +1 818 909-5899 +pager: +1 818 207-9139 +roomNumber: 8011 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lenette Sandness,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenette Sandness +sn: Sandness +description: This is Lenette Sandness's description +facsimileTelephoneNumber: +1 206 910-2208 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 119-1003 +title: Chief Management Consultant +userPassword: Password1 +uid: SandnesL +givenName: Lenette +mail: SandnesL@c8261f605fed4bb494dcc3af9b18f70f.bitwarden.com +carLicense: 6NBX3G +departmentNumber: 8989 +employeeType: Contract +homePhone: +1 206 722-4143 +initials: L. S. +mobile: +1 206 960-4758 +pager: +1 206 929-4060 +roomNumber: 8586 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emyle Fuqua,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emyle Fuqua +sn: Fuqua +description: This is Emyle Fuqua's description +facsimileTelephoneNumber: +1 804 670-7264 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 556-2611 +title: Master Management Mascot +userPassword: Password1 +uid: FuquaE +givenName: Emyle +mail: FuquaE@ab34f7a574c74b59a12477bad26d03c0.bitwarden.com +carLicense: P205YH +departmentNumber: 9260 +employeeType: Employee +homePhone: +1 804 426-1675 +initials: E. F. +mobile: +1 804 858-6767 +pager: +1 804 735-7759 +roomNumber: 9340 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alejandra Saungikar +sn: Saungikar +description: This is Alejandra Saungikar's description +facsimileTelephoneNumber: +1 213 790-5065 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 670-9856 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: SaungikA +givenName: Alejandra +mail: SaungikA@377af438e28144f198471c633c478745.bitwarden.com +carLicense: FB4I0H +departmentNumber: 4071 +employeeType: Normal +homePhone: +1 213 551-2413 +initials: A. S. +mobile: +1 213 488-7959 +pager: +1 213 880-3327 +roomNumber: 8009 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elysia McDuffie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elysia McDuffie +sn: McDuffie +description: This is Elysia McDuffie's description +facsimileTelephoneNumber: +1 804 386-6267 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 203-4226 +title: Master Payroll Consultant +userPassword: Password1 +uid: McDuffiE +givenName: Elysia +mail: McDuffiE@98febd962501443b89a9e8bfacf12a9e.bitwarden.com +carLicense: QETT9L +departmentNumber: 1730 +employeeType: Contract +homePhone: +1 804 404-9374 +initials: E. M. +mobile: +1 804 883-9071 +pager: +1 804 376-1263 +roomNumber: 9445 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lorilee Projects,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorilee Projects +sn: Projects +description: This is Lorilee Projects's description +facsimileTelephoneNumber: +1 818 975-2279 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 484-3607 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: ProjectL +givenName: Lorilee +mail: ProjectL@4b0a9ffaaeec4cc3ae5daf192d65fc6b.bitwarden.com +carLicense: YU4MAA +departmentNumber: 1998 +employeeType: Normal +homePhone: +1 818 588-7011 +initials: L. P. +mobile: +1 818 210-9882 +pager: +1 818 537-1981 +roomNumber: 8107 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helenka Herlihy +sn: Herlihy +description: This is Helenka Herlihy's description +facsimileTelephoneNumber: +1 408 501-2633 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 876-9436 +title: Junior Human Resources Developer +userPassword: Password1 +uid: HerlihyH +givenName: Helenka +mail: HerlihyH@9e3b275453fb4081a04ee8dbb4f6bd0b.bitwarden.com +carLicense: JG6QYG +departmentNumber: 1206 +employeeType: Contract +homePhone: +1 408 857-8975 +initials: H. H. +mobile: +1 408 455-1196 +pager: +1 408 133-3862 +roomNumber: 9105 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Amalee Borg,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amalee Borg +sn: Borg +description: This is Amalee Borg's description +facsimileTelephoneNumber: +1 415 549-8460 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 615-7970 +title: Chief Human Resources Developer +userPassword: Password1 +uid: BorgA +givenName: Amalee +mail: BorgA@62d6b52263d643d2a05493b576aca6a5.bitwarden.com +carLicense: 00MY3G +departmentNumber: 8901 +employeeType: Employee +homePhone: +1 415 204-4186 +initials: A. B. +mobile: +1 415 606-2074 +pager: +1 415 231-7991 +roomNumber: 8563 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerrit Witkowski +sn: Witkowski +description: This is Gerrit Witkowski's description +facsimileTelephoneNumber: +1 818 389-3426 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 818 695-5197 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: WitkowsG +givenName: Gerrit +mail: WitkowsG@3876f00a01cc4c9cadffa2031adb446a.bitwarden.com +carLicense: HBKPFD +departmentNumber: 1169 +employeeType: Contract +homePhone: +1 818 792-7010 +initials: G. W. +mobile: +1 818 246-8862 +pager: +1 818 412-4203 +roomNumber: 8737 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=ThanhHung McAdams,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhHung McAdams +sn: McAdams +description: This is ThanhHung McAdams's description +facsimileTelephoneNumber: +1 804 577-4759 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 597-3383 +title: Chief Management Punk +userPassword: Password1 +uid: McAdamsT +givenName: ThanhHung +mail: McAdamsT@d7b344ca45cd4c63b54c502d92e2c5d9.bitwarden.com +carLicense: JDMLGA +departmentNumber: 9072 +employeeType: Employee +homePhone: +1 804 748-1492 +initials: T. M. +mobile: +1 804 299-4885 +pager: +1 804 803-9800 +roomNumber: 9827 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jessa Simmons,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessa Simmons +sn: Simmons +description: This is Jessa Simmons's description +facsimileTelephoneNumber: +1 804 890-8834 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 313-7938 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: SimmonsJ +givenName: Jessa +mail: SimmonsJ@a923c3e154c74115a9ff0fe18985dc09.bitwarden.com +carLicense: 36SG25 +departmentNumber: 4588 +employeeType: Normal +homePhone: +1 804 975-2835 +initials: J. S. +mobile: +1 804 920-2416 +pager: +1 804 526-3523 +roomNumber: 8339 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Timothea Culverhouse,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Timothea Culverhouse +sn: Culverhouse +description: This is Timothea Culverhouse's description +facsimileTelephoneNumber: +1 818 911-8507 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 818 527-6839 +title: Associate Peons Artist +userPassword: Password1 +uid: CulverhT +givenName: Timothea +mail: CulverhT@01debeaa74ed4916a69ca3761e5ab388.bitwarden.com +carLicense: 2YL04J +departmentNumber: 1432 +employeeType: Normal +homePhone: +1 818 463-5971 +initials: T. C. +mobile: +1 818 590-3120 +pager: +1 818 251-5213 +roomNumber: 8867 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dorice Op,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorice Op +sn: Op +description: This is Dorice Op's description +facsimileTelephoneNumber: +1 213 410-3059 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 790-7047 +title: Junior Management Assistant +userPassword: Password1 +uid: OpD +givenName: Dorice +mail: OpD@3e32ccd0c8a847b6ac8fb9c09f485fe3.bitwarden.com +carLicense: AHDS4G +departmentNumber: 2006 +employeeType: Normal +homePhone: +1 213 617-8408 +initials: D. O. +mobile: +1 213 967-2633 +pager: +1 213 746-6574 +roomNumber: 8209 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Estrellita Haney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estrellita Haney +sn: Haney +description: This is Estrellita Haney's description +facsimileTelephoneNumber: +1 818 703-7347 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 187-1818 +title: Chief Administrative Technician +userPassword: Password1 +uid: HaneyE +givenName: Estrellita +mail: HaneyE@89e4e0e6aba5481cb5a471d8c425e9ac.bitwarden.com +carLicense: 3S7STK +departmentNumber: 6604 +employeeType: Contract +homePhone: +1 818 763-7468 +initials: E. H. +mobile: +1 818 484-3563 +pager: +1 818 966-9501 +roomNumber: 8062 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kuldip Rabenstein +sn: Rabenstein +description: This is Kuldip Rabenstein's description +facsimileTelephoneNumber: +1 408 294-9017 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 731-1613 +title: Associate Human Resources Assistant +userPassword: Password1 +uid: RabenstK +givenName: Kuldip +mail: RabenstK@c40623c8d9ac4757937cfee44c180e7b.bitwarden.com +carLicense: BBBTQ0 +departmentNumber: 6681 +employeeType: Employee +homePhone: +1 408 525-5339 +initials: K. R. +mobile: +1 408 308-8491 +pager: +1 408 153-6759 +roomNumber: 8017 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maddalena Hammermeister,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maddalena Hammermeister +sn: Hammermeister +description: This is Maddalena Hammermeister's description +facsimileTelephoneNumber: +1 415 940-7905 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 250-6333 +title: Supreme Management Grunt +userPassword: Password1 +uid: HammermM +givenName: Maddalena +mail: HammermM@8f4b2d337f4f4418a987619b5765155d.bitwarden.com +carLicense: C79L2U +departmentNumber: 3364 +employeeType: Normal +homePhone: +1 415 907-9993 +initials: M. H. +mobile: +1 415 979-6683 +pager: +1 415 857-6683 +roomNumber: 8300 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alfonso Benyon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alfonso Benyon +sn: Benyon +description: This is Alfonso Benyon's description +facsimileTelephoneNumber: +1 415 667-6106 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 245-5242 +title: Supreme Payroll President +userPassword: Password1 +uid: BenyonA +givenName: Alfonso +mail: BenyonA@f72cf2b3454841e499da566c9feae899.bitwarden.com +carLicense: 5VD50N +departmentNumber: 2283 +employeeType: Normal +homePhone: +1 415 952-4439 +initials: A. B. +mobile: +1 415 106-1777 +pager: +1 415 740-3974 +roomNumber: 8738 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorisa Lanteigne +sn: Lanteigne +description: This is Dorisa Lanteigne's description +facsimileTelephoneNumber: +1 213 767-4406 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 847-9805 +title: Chief Peons Consultant +userPassword: Password1 +uid: LanteigD +givenName: Dorisa +mail: LanteigD@9524e5fbf8844145b5c00986d16d8376.bitwarden.com +carLicense: 7B92JV +departmentNumber: 6144 +employeeType: Normal +homePhone: +1 213 494-3075 +initials: D. L. +mobile: +1 213 814-5067 +pager: +1 213 365-9631 +roomNumber: 9789 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: GeeMeng Simonsen +sn: Simonsen +description: This is GeeMeng Simonsen's description +facsimileTelephoneNumber: +1 510 813-2325 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 218-7728 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: SimonseG +givenName: GeeMeng +mail: SimonseG@7edf6527f6ba409aa280a1bd0cd976a0.bitwarden.com +carLicense: IW6UEP +departmentNumber: 7922 +employeeType: Normal +homePhone: +1 510 343-4598 +initials: G. S. +mobile: +1 510 241-8049 +pager: +1 510 254-3860 +roomNumber: 8473 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Alfy McBroom,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alfy McBroom +sn: McBroom +description: This is Alfy McBroom's description +facsimileTelephoneNumber: +1 818 255-3871 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 264-7702 +title: Junior Administrative Vice President +userPassword: Password1 +uid: McBroomA +givenName: Alfy +mail: McBroomA@3cf8abc9393b4308ab07b683b0ddf523.bitwarden.com +carLicense: UPCPYA +departmentNumber: 7073 +employeeType: Employee +homePhone: +1 818 877-3809 +initials: A. M. +mobile: +1 818 383-9015 +pager: +1 818 810-2031 +roomNumber: 9448 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fina Hoctor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fina Hoctor +sn: Hoctor +description: This is Fina Hoctor's description +facsimileTelephoneNumber: +1 206 223-6303 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 592-9768 +title: Associate Peons Vice President +userPassword: Password1 +uid: HoctorF +givenName: Fina +mail: HoctorF@bf91192220a74764b99bec46e53e3350.bitwarden.com +carLicense: HXPWCG +departmentNumber: 7958 +employeeType: Normal +homePhone: +1 206 954-5246 +initials: F. H. +mobile: +1 206 704-2429 +pager: +1 206 784-2565 +roomNumber: 8832 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ardene Cuu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardene Cuu +sn: Cuu +description: This is Ardene Cuu's description +facsimileTelephoneNumber: +1 818 384-5407 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 952-4765 +title: Supreme Product Testing Punk +userPassword: Password1 +uid: CuuA +givenName: Ardene +mail: CuuA@f7752e330a264f1884c22f0f347f41b4.bitwarden.com +carLicense: RD778W +departmentNumber: 3905 +employeeType: Employee +homePhone: +1 818 981-8667 +initials: A. C. +mobile: +1 818 638-7025 +pager: +1 818 991-1849 +roomNumber: 8187 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gajendra Trinh +sn: Trinh +description: This is Gajendra Trinh's description +facsimileTelephoneNumber: +1 804 712-4282 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 641-4098 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: TrinhG +givenName: Gajendra +mail: TrinhG@63d9ff681cbd4332bc60e641ac986747.bitwarden.com +carLicense: VXD20N +departmentNumber: 7280 +employeeType: Contract +homePhone: +1 804 843-5586 +initials: G. T. +mobile: +1 804 547-7133 +pager: +1 804 164-7423 +roomNumber: 9398 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cristie Madani,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristie Madani +sn: Madani +description: This is Cristie Madani's description +facsimileTelephoneNumber: +1 415 608-4086 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 909-2301 +title: Chief Peons Punk +userPassword: Password1 +uid: MadaniC +givenName: Cristie +mail: MadaniC@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com +carLicense: 1R3ASY +departmentNumber: 3396 +employeeType: Contract +homePhone: +1 415 988-2212 +initials: C. M. +mobile: +1 415 640-8016 +pager: +1 415 949-8264 +roomNumber: 9280 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Stephane Zorzi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephane Zorzi +sn: Zorzi +description: This is Stephane Zorzi's description +facsimileTelephoneNumber: +1 415 261-5675 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 912-4321 +title: Chief Management Dictator +userPassword: Password1 +uid: ZorziS +givenName: Stephane +mail: ZorziS@883a827472584ea8ab8edcc535c72169.bitwarden.com +carLicense: 226MWM +departmentNumber: 2717 +employeeType: Normal +homePhone: +1 415 237-5435 +initials: S. Z. +mobile: +1 415 234-2258 +pager: +1 415 320-1013 +roomNumber: 8221 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ellen Kruusement,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellen Kruusement +sn: Kruusement +description: This is Ellen Kruusement's description +facsimileTelephoneNumber: +1 415 402-6472 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 122-2499 +title: Master Administrative Figurehead +userPassword: Password1 +uid: KruusemE +givenName: Ellen +mail: KruusemE@5b737a4d09c2499f8798a895b59012b1.bitwarden.com +carLicense: 4Q6FN5 +departmentNumber: 3098 +employeeType: Contract +homePhone: +1 415 717-4557 +initials: E. K. +mobile: +1 415 246-1095 +pager: +1 415 753-1491 +roomNumber: 8509 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tianbao Homonick +sn: Homonick +description: This is Tianbao Homonick's description +facsimileTelephoneNumber: +1 804 524-2707 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 804 589-6041 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: HomonicT +givenName: Tianbao +mail: HomonicT@a1c59eb0876b440cad715bc7a625284c.bitwarden.com +carLicense: SM8XHT +departmentNumber: 4690 +employeeType: Employee +homePhone: +1 804 644-1136 +initials: T. H. +mobile: +1 804 697-5906 +pager: +1 804 450-6370 +roomNumber: 9675 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arnie Vickers,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arnie Vickers +sn: Vickers +description: This is Arnie Vickers's description +facsimileTelephoneNumber: +1 415 550-6753 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 832-3302 +title: Master Janitorial Artist +userPassword: Password1 +uid: VickersA +givenName: Arnie +mail: VickersA@d1aff07ca59844dcbbf406f0fc775f82.bitwarden.com +carLicense: 4LR9EW +departmentNumber: 3178 +employeeType: Contract +homePhone: +1 415 711-5288 +initials: A. V. +mobile: +1 415 602-3394 +pager: +1 415 299-7213 +roomNumber: 9722 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tak Kuhlkamp,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tak Kuhlkamp +sn: Kuhlkamp +description: This is Tak Kuhlkamp's description +facsimileTelephoneNumber: +1 415 162-4729 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 220-3915 +title: Chief Management Developer +userPassword: Password1 +uid: KuhlkamT +givenName: Tak +mail: KuhlkamT@6ff512afd6074ffb8be89092e99d3615.bitwarden.com +carLicense: FGKRQ5 +departmentNumber: 2749 +employeeType: Normal +homePhone: +1 415 870-2297 +initials: T. K. +mobile: +1 415 837-6837 +pager: +1 415 727-2260 +roomNumber: 8904 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Linet Gartshore,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linet Gartshore +sn: Gartshore +description: This is Linet Gartshore's description +facsimileTelephoneNumber: +1 213 835-5345 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 974-6241 +title: Chief Janitorial Director +userPassword: Password1 +uid: GartshoL +givenName: Linet +mail: GartshoL@4d29dc852c7e4d5a81edcd4807f79169.bitwarden.com +carLicense: 0Y0EJ5 +departmentNumber: 1320 +employeeType: Contract +homePhone: +1 213 562-8700 +initials: L. G. +mobile: +1 213 412-3025 +pager: +1 213 233-7087 +roomNumber: 8073 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dina Satta,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dina Satta +sn: Satta +description: This is Dina Satta's description +facsimileTelephoneNumber: +1 415 372-6337 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 984-1415 +title: Chief Product Development Architect +userPassword: Password1 +uid: SattaD +givenName: Dina +mail: SattaD@eaed65d5c2954ae7b76835d57d5da55f.bitwarden.com +carLicense: WAEV2V +departmentNumber: 6740 +employeeType: Contract +homePhone: +1 415 223-4909 +initials: D. S. +mobile: +1 415 830-8772 +pager: +1 415 881-2599 +roomNumber: 9757 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Candis Bothwell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candis Bothwell +sn: Bothwell +description: This is Candis Bothwell's description +facsimileTelephoneNumber: +1 818 541-1384 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 760-3929 +title: Chief Janitorial President +userPassword: Password1 +uid: BothwelC +givenName: Candis +mail: BothwelC@cc252680b96a4999bccdcb3df4f9a7ab.bitwarden.com +carLicense: BCU59I +departmentNumber: 1007 +employeeType: Employee +homePhone: +1 818 391-1806 +initials: C. B. +mobile: +1 818 336-3424 +pager: +1 818 340-2541 +roomNumber: 9536 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Daphene Minck,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphene Minck +sn: Minck +description: This is Daphene Minck's description +facsimileTelephoneNumber: +1 408 388-4010 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 230-2387 +title: Master Administrative Architect +userPassword: Password1 +uid: MinckD +givenName: Daphene +mail: MinckD@811a3e44246748c98e3bda8ba1579d34.bitwarden.com +carLicense: FWF5K8 +departmentNumber: 1653 +employeeType: Employee +homePhone: +1 408 286-3303 +initials: D. M. +mobile: +1 408 200-9217 +pager: +1 408 876-5377 +roomNumber: 9477 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Adan Duncan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adan Duncan +sn: Duncan +description: This is Adan Duncan's description +facsimileTelephoneNumber: +1 415 112-9092 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 251-4547 +title: Supreme Administrative Engineer +userPassword: Password1 +uid: DuncanA +givenName: Adan +mail: DuncanA@a7445c22136445feb44e85392464b31c.bitwarden.com +carLicense: XKCLAT +departmentNumber: 2340 +employeeType: Employee +homePhone: +1 415 139-4974 +initials: A. D. +mobile: +1 415 818-6853 +pager: +1 415 468-4961 +roomNumber: 8683 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Willa Trisko,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willa Trisko +sn: Trisko +description: This is Willa Trisko's description +facsimileTelephoneNumber: +1 510 129-6387 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 894-4308 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: TriskoW +givenName: Willa +mail: TriskoW@2af8061425ae493eb62ca1242598b59b.bitwarden.com +carLicense: 15TSQV +departmentNumber: 7801 +employeeType: Normal +homePhone: +1 510 909-6543 +initials: W. T. +mobile: +1 510 651-1858 +pager: +1 510 605-1532 +roomNumber: 9382 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessamine Boisseau +sn: Boisseau +description: This is Jessamine Boisseau's description +facsimileTelephoneNumber: +1 415 665-3071 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 711-2876 +title: Master Janitorial Janitor +userPassword: Password1 +uid: BoisseaJ +givenName: Jessamine +mail: BoisseaJ@2ad21f67126841ddab38e6a0de0bbf55.bitwarden.com +carLicense: NK5GPU +departmentNumber: 6442 +employeeType: Contract +homePhone: +1 415 773-6233 +initials: J. B. +mobile: +1 415 481-2529 +pager: +1 415 310-3526 +roomNumber: 9868 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katalin Totten,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katalin Totten +sn: Totten +description: This is Katalin Totten's description +facsimileTelephoneNumber: +1 818 863-8725 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 798-4952 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: TottenK +givenName: Katalin +mail: TottenK@d5293c91bc7840f0948a89a10840461e.bitwarden.com +carLicense: E3MK76 +departmentNumber: 4049 +employeeType: Normal +homePhone: +1 818 544-9114 +initials: K. T. +mobile: +1 818 678-3665 +pager: +1 818 163-9948 +roomNumber: 8593 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bonni Mastronardi +sn: Mastronardi +description: This is Bonni Mastronardi's description +facsimileTelephoneNumber: +1 408 514-3133 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 344-1130 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: MastronB +givenName: Bonni +mail: MastronB@3d73d44a83034f7492ad5f7b28f5be7b.bitwarden.com +carLicense: 8W65JC +departmentNumber: 9615 +employeeType: Contract +homePhone: +1 408 482-1076 +initials: B. M. +mobile: +1 408 561-3830 +pager: +1 408 328-7039 +roomNumber: 9365 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=CostasDinos Labrador,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: CostasDinos Labrador +sn: Labrador +description: This is CostasDinos Labrador's description +facsimileTelephoneNumber: +1 206 126-1862 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 325-4390 +title: Junior Management Vice President +userPassword: Password1 +uid: LabradoC +givenName: CostasDinos +mail: LabradoC@9204194a2da94dc0b82d2268bcb1f7fe.bitwarden.com +carLicense: O3L101 +departmentNumber: 6432 +employeeType: Employee +homePhone: +1 206 290-9870 +initials: C. L. +mobile: +1 206 266-2206 +pager: +1 206 958-9534 +roomNumber: 9019 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Andrzej Coulman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrzej Coulman +sn: Coulman +description: This is Andrzej Coulman's description +facsimileTelephoneNumber: +1 206 874-1722 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 258-2973 +title: Master Peons Madonna +userPassword: Password1 +uid: CoulmanA +givenName: Andrzej +mail: CoulmanA@ee31a32bc4dc4dfc9c3e0d1edb9f7ccb.bitwarden.com +carLicense: 377ELD +departmentNumber: 5258 +employeeType: Employee +homePhone: +1 206 619-3174 +initials: A. C. +mobile: +1 206 885-4216 +pager: +1 206 640-5971 +roomNumber: 8766 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sheryl Perrin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheryl Perrin +sn: Perrin +description: This is Sheryl Perrin's description +facsimileTelephoneNumber: +1 213 995-3918 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 533-8826 +title: Chief Peons Writer +userPassword: Password1 +uid: PerrinS +givenName: Sheryl +mail: PerrinS@32f4159b3c3143c5bb4ec812d9ad7150.bitwarden.com +carLicense: 1XHXDA +departmentNumber: 5182 +employeeType: Contract +homePhone: +1 213 416-6720 +initials: S. P. +mobile: +1 213 346-9283 +pager: +1 213 267-4321 +roomNumber: 8674 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emma Mullaney,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emma Mullaney +sn: Mullaney +description: This is Emma Mullaney's description +facsimileTelephoneNumber: +1 213 545-5623 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 506-9475 +title: Supreme Management Czar +userPassword: Password1 +uid: MullaneE +givenName: Emma +mail: MullaneE@91cbd6d172d049aa810e0a17e3a01178.bitwarden.com +carLicense: QEBSCT +departmentNumber: 1683 +employeeType: Normal +homePhone: +1 213 550-9574 +initials: E. M. +mobile: +1 213 331-1967 +pager: +1 213 436-3221 +roomNumber: 9612 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Son Beneda,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Son Beneda +sn: Beneda +description: This is Son Beneda's description +facsimileTelephoneNumber: +1 510 159-1008 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 397-7534 +title: Chief Janitorial Madonna +userPassword: Password1 +uid: BenedaS +givenName: Son +mail: BenedaS@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com +carLicense: E4F2OR +departmentNumber: 1339 +employeeType: Employee +homePhone: +1 510 917-4914 +initials: S. B. +mobile: +1 510 923-2740 +pager: +1 510 730-3291 +roomNumber: 8337 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Grey Mathis,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grey Mathis +sn: Mathis +description: This is Grey Mathis's description +facsimileTelephoneNumber: +1 213 522-5595 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 351-8825 +title: Associate Management Sales Rep +userPassword: Password1 +uid: MathisG +givenName: Grey +mail: MathisG@a199f75806e043a29f88f2704ef795cb.bitwarden.com +carLicense: WAXNRP +departmentNumber: 1516 +employeeType: Employee +homePhone: +1 213 342-5144 +initials: G. M. +mobile: +1 213 475-5999 +pager: +1 213 612-7334 +roomNumber: 9037 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Briney McReady,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Briney McReady +sn: McReady +description: This is Briney McReady's description +facsimileTelephoneNumber: +1 415 664-7490 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 766-7856 +title: Junior Human Resources Manager +userPassword: Password1 +uid: McReadyB +givenName: Briney +mail: McReadyB@39f08fc1ca40404b8801837822a1c019.bitwarden.com +carLicense: NO7PCF +departmentNumber: 2603 +employeeType: Employee +homePhone: +1 415 905-9903 +initials: B. M. +mobile: +1 415 257-1618 +pager: +1 415 157-5143 +roomNumber: 8159 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernhard Brickman +sn: Brickman +description: This is Bernhard Brickman's description +facsimileTelephoneNumber: +1 408 662-7136 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 588-5367 +title: Master Human Resources Engineer +userPassword: Password1 +uid: BrickmaB +givenName: Bernhard +mail: BrickmaB@0dfd1c2a9e584308b69f05d708033865.bitwarden.com +carLicense: XHMMEY +departmentNumber: 2940 +employeeType: Employee +homePhone: +1 408 831-3040 +initials: B. B. +mobile: +1 408 490-8401 +pager: +1 408 932-1539 +roomNumber: 8227 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiphanie Networkroom +sn: Networkroom +description: This is Tiphanie Networkroom's description +facsimileTelephoneNumber: +1 206 670-5973 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 393-3927 +title: Supreme Payroll Grunt +userPassword: Password1 +uid: NetworkT +givenName: Tiphanie +mail: NetworkT@28fca843a5ae4175b7bbc20728951453.bitwarden.com +carLicense: D5KGI4 +departmentNumber: 7781 +employeeType: Contract +homePhone: +1 206 384-5384 +initials: T. N. +mobile: +1 206 426-2510 +pager: +1 206 448-4191 +roomNumber: 9605 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Erle Gravitt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erle Gravitt +sn: Gravitt +description: This is Erle Gravitt's description +facsimileTelephoneNumber: +1 818 710-4192 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 722-2671 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: GravittE +givenName: Erle +mail: GravittE@203540604c5b4cbe8d3ddb3137f9e7ee.bitwarden.com +carLicense: Q7D26Q +departmentNumber: 7466 +employeeType: Normal +homePhone: +1 818 373-3466 +initials: E. G. +mobile: +1 818 662-3933 +pager: +1 818 983-9300 +roomNumber: 9943 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jewel Watchmaker +sn: Watchmaker +description: This is Jewel Watchmaker's description +facsimileTelephoneNumber: +1 804 878-8521 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 974-3243 +title: Master Human Resources Grunt +userPassword: Password1 +uid: WatchmaJ +givenName: Jewel +mail: WatchmaJ@fe07c8e421ca4cd7b23c9c2c841a5e93.bitwarden.com +carLicense: QKBUW5 +departmentNumber: 9125 +employeeType: Normal +homePhone: +1 804 303-9498 +initials: J. W. +mobile: +1 804 329-1570 +pager: +1 804 450-3764 +roomNumber: 8929 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tresrch Valko,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tresrch Valko +sn: Valko +description: This is Tresrch Valko's description +facsimileTelephoneNumber: +1 206 997-7355 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 839-1606 +title: Associate Management Stooge +userPassword: Password1 +uid: ValkoT +givenName: Tresrch +mail: ValkoT@ebf0dcbeda274c399a35e80b52ead9c6.bitwarden.com +carLicense: 2PYR2S +departmentNumber: 1469 +employeeType: Normal +homePhone: +1 206 915-9905 +initials: T. V. +mobile: +1 206 646-2555 +pager: +1 206 736-5504 +roomNumber: 8002 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cherey Braginetz,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherey Braginetz +sn: Braginetz +description: This is Cherey Braginetz's description +facsimileTelephoneNumber: +1 804 501-2911 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 239-4032 +title: Associate Management Developer +userPassword: Password1 +uid: BragineC +givenName: Cherey +mail: BragineC@d753979fad154486ac459615561fae04.bitwarden.com +carLicense: MOQ1OM +departmentNumber: 9379 +employeeType: Contract +homePhone: +1 804 442-2919 +initials: C. B. +mobile: +1 804 249-1940 +pager: +1 804 484-7676 +roomNumber: 8198 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Annadiane Kok,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annadiane Kok +sn: Kok +description: This is Annadiane Kok's description +facsimileTelephoneNumber: +1 804 631-5603 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 456-8679 +title: Chief Payroll President +userPassword: Password1 +uid: KokA +givenName: Annadiane +mail: KokA@4fd308eba088404ab84d4a632c943b2d.bitwarden.com +carLicense: 2JVDH8 +departmentNumber: 9205 +employeeType: Contract +homePhone: +1 804 631-4509 +initials: A. K. +mobile: +1 804 314-5038 +pager: +1 804 446-9446 +roomNumber: 8734 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ozay Dulin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ozay Dulin +sn: Dulin +description: This is Ozay Dulin's description +facsimileTelephoneNumber: +1 206 814-7773 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 523-7772 +title: Supreme Management Manager +userPassword: Password1 +uid: DulinO +givenName: Ozay +mail: DulinO@6d6cd5a839c849eb98fcaf40d89c77e2.bitwarden.com +carLicense: HGMTDU +departmentNumber: 4592 +employeeType: Employee +homePhone: +1 206 747-7509 +initials: O. D. +mobile: +1 206 893-7315 +pager: +1 206 564-2235 +roomNumber: 8116 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Avtar Markle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avtar Markle +sn: Markle +description: This is Avtar Markle's description +facsimileTelephoneNumber: +1 804 641-9801 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 602-4388 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: MarkleA +givenName: Avtar +mail: MarkleA@bf9ca547b016429e8b1013b51e16d909.bitwarden.com +carLicense: BN4EE4 +departmentNumber: 8952 +employeeType: Normal +homePhone: +1 804 557-4788 +initials: A. M. +mobile: +1 804 618-9288 +pager: +1 804 171-1550 +roomNumber: 9810 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mahshad Bachecongi +sn: Bachecongi +description: This is Mahshad Bachecongi's description +facsimileTelephoneNumber: +1 206 808-7311 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 706-6583 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: BachecoM +givenName: Mahshad +mail: BachecoM@0fd4dc879e87454189121973304c8184.bitwarden.com +carLicense: LNNSW6 +departmentNumber: 6294 +employeeType: Contract +homePhone: +1 206 264-5530 +initials: M. B. +mobile: +1 206 218-3235 +pager: +1 206 877-9018 +roomNumber: 9155 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rodi Pettinger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rodi Pettinger +sn: Pettinger +description: This is Rodi Pettinger's description +facsimileTelephoneNumber: +1 213 748-3947 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 127-9779 +title: Supreme Payroll Assistant +userPassword: Password1 +uid: PettingR +givenName: Rodi +mail: PettingR@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com +carLicense: 32I4JJ +departmentNumber: 8779 +employeeType: Normal +homePhone: +1 213 911-5661 +initials: R. P. +mobile: +1 213 323-4826 +pager: +1 213 688-1522 +roomNumber: 8486 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anett Gach,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anett Gach +sn: Gach +description: This is Anett Gach's description +facsimileTelephoneNumber: +1 510 269-3344 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 512-1645 +title: Associate Management Evangelist +userPassword: Password1 +uid: GachA +givenName: Anett +mail: GachA@753cc3c48ad24183b60cde608a41edda.bitwarden.com +carLicense: TCNY4T +departmentNumber: 3475 +employeeType: Normal +homePhone: +1 510 874-3867 +initials: A. G. +mobile: +1 510 546-6971 +pager: +1 510 425-4590 +roomNumber: 8033 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Golda Hanington,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Golda Hanington +sn: Hanington +description: This is Golda Hanington's description +facsimileTelephoneNumber: +1 415 312-8636 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 868-3536 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: HaningtG +givenName: Golda +mail: HaningtG@72dcb42620634cf59fa336b64a03ee7a.bitwarden.com +carLicense: RQ4L3D +departmentNumber: 5620 +employeeType: Normal +homePhone: +1 415 464-5699 +initials: G. H. +mobile: +1 415 828-4852 +pager: +1 415 715-7721 +roomNumber: 9929 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xiaomei Silieff +sn: Silieff +description: This is Xiaomei Silieff's description +facsimileTelephoneNumber: +1 510 412-5022 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 828-7450 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: SilieffX +givenName: Xiaomei +mail: SilieffX@726ecb5497c547bd9a98886468705226.bitwarden.com +carLicense: RBYNLI +departmentNumber: 3155 +employeeType: Employee +homePhone: +1 510 591-9154 +initials: X. S. +mobile: +1 510 809-3684 +pager: +1 510 213-6958 +roomNumber: 8076 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marlyne Shein,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlyne Shein +sn: Shein +description: This is Marlyne Shein's description +facsimileTelephoneNumber: +1 510 102-2271 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 383-7740 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: SheinM +givenName: Marlyne +mail: SheinM@9135ac12963a4f24b390086599e22c6a.bitwarden.com +carLicense: LNCGTB +departmentNumber: 5232 +employeeType: Contract +homePhone: +1 510 260-3074 +initials: M. S. +mobile: +1 510 428-1623 +pager: +1 510 604-4548 +roomNumber: 8998 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Doortje Kennedy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doortje Kennedy +sn: Kennedy +description: This is Doortje Kennedy's description +facsimileTelephoneNumber: +1 408 628-4791 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 418-9779 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: KennedyD +givenName: Doortje +mail: KennedyD@c4980ee808ce471c9fa1c01e63ff6d49.bitwarden.com +carLicense: EFJBPK +departmentNumber: 1828 +employeeType: Contract +homePhone: +1 408 213-7247 +initials: D. K. +mobile: +1 408 805-8944 +pager: +1 408 669-4637 +roomNumber: 8355 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jacenta Pufpaff,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacenta Pufpaff +sn: Pufpaff +description: This is Jacenta Pufpaff's description +facsimileTelephoneNumber: +1 408 874-6860 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 218-4227 +title: Junior Management President +userPassword: Password1 +uid: PufpaffJ +givenName: Jacenta +mail: PufpaffJ@7cddbe59bf50457dab82b34532e65c48.bitwarden.com +carLicense: 0FR8HR +departmentNumber: 2849 +employeeType: Contract +homePhone: +1 408 325-7367 +initials: J. P. +mobile: +1 408 634-4646 +pager: +1 408 477-6957 +roomNumber: 8659 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kirit Steede,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirit Steede +sn: Steede +description: This is Kirit Steede's description +facsimileTelephoneNumber: +1 415 432-6600 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 786-1015 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: SteedeK +givenName: Kirit +mail: SteedeK@e04a5587d2ec44048c4ba8ec3bd3bbfb.bitwarden.com +carLicense: J17EU5 +departmentNumber: 4522 +employeeType: Employee +homePhone: +1 415 239-4716 +initials: K. S. +mobile: +1 415 639-8935 +pager: +1 415 908-9208 +roomNumber: 9549 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Declan McQuaig,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Declan McQuaig +sn: McQuaig +description: This is Declan McQuaig's description +facsimileTelephoneNumber: +1 804 112-2813 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 524-4068 +title: Junior Payroll Stooge +userPassword: Password1 +uid: McQuaigD +givenName: Declan +mail: McQuaigD@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com +carLicense: RVT68O +departmentNumber: 7501 +employeeType: Normal +homePhone: +1 804 911-7324 +initials: D. M. +mobile: +1 804 413-8897 +pager: +1 804 660-8537 +roomNumber: 8320 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fairy Soyster,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fairy Soyster +sn: Soyster +description: This is Fairy Soyster's description +facsimileTelephoneNumber: +1 213 894-1411 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 636-3028 +title: Associate Administrative Evangelist +userPassword: Password1 +uid: SoysterF +givenName: Fairy +mail: SoysterF@4f18c35149c4458281415f92a8183767.bitwarden.com +carLicense: OQ8BXP +departmentNumber: 9294 +employeeType: Employee +homePhone: +1 213 863-3519 +initials: F. S. +mobile: +1 213 960-4328 +pager: +1 213 840-2810 +roomNumber: 8977 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yovonnda Hempinstall +sn: Hempinstall +description: This is Yovonnda Hempinstall's description +facsimileTelephoneNumber: +1 408 928-7157 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 408 358-9619 +title: Chief Janitorial Janitor +userPassword: Password1 +uid: HempinsY +givenName: Yovonnda +mail: HempinsY@7a5a7925311246c29caba8271a6bbf7c.bitwarden.com +carLicense: 60EO5L +departmentNumber: 7053 +employeeType: Normal +homePhone: +1 408 528-4073 +initials: Y. H. +mobile: +1 408 134-3560 +pager: +1 408 575-7847 +roomNumber: 9473 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shashi Vitaglian,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shashi Vitaglian +sn: Vitaglian +description: This is Shashi Vitaglian's description +facsimileTelephoneNumber: +1 408 224-5684 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 379-2944 +title: Chief Management Figurehead +userPassword: Password1 +uid: VitagliS +givenName: Shashi +mail: VitagliS@3a233bee8d41491582f971c2a34ef527.bitwarden.com +carLicense: 1H9F3Q +departmentNumber: 6888 +employeeType: Employee +homePhone: +1 408 252-7469 +initials: S. V. +mobile: +1 408 301-6893 +pager: +1 408 634-7054 +roomNumber: 9388 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Henri Challice,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henri Challice +sn: Challice +description: This is Henri Challice's description +facsimileTelephoneNumber: +1 408 616-9886 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 408 263-9994 +title: Junior Peons Madonna +userPassword: Password1 +uid: ChallicH +givenName: Henri +mail: ChallicH@e646f2536f984f3baa2b805d03bb59c5.bitwarden.com +carLicense: K5098N +departmentNumber: 3832 +employeeType: Contract +homePhone: +1 408 684-6538 +initials: H. C. +mobile: +1 408 711-9879 +pager: +1 408 667-6077 +roomNumber: 9012 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Moreen CSR,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moreen CSR +sn: CSR +description: This is Moreen CSR's description +facsimileTelephoneNumber: +1 804 720-9486 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 556-9769 +title: Chief Human Resources Manager +userPassword: Password1 +uid: CSRM +givenName: Moreen +mail: CSRM@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com +carLicense: 2N78K6 +departmentNumber: 9550 +employeeType: Employee +homePhone: +1 804 724-3751 +initials: M. C. +mobile: +1 804 255-3213 +pager: +1 804 927-4078 +roomNumber: 8779 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Geralene Sabri,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geralene Sabri +sn: Sabri +description: This is Geralene Sabri's description +facsimileTelephoneNumber: +1 408 576-5628 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 408 393-4667 +title: Chief Payroll Janitor +userPassword: Password1 +uid: SabriG +givenName: Geralene +mail: SabriG@34e650ed4f054ffe9f07e59b82b133e2.bitwarden.com +carLicense: J66A7A +departmentNumber: 1664 +employeeType: Employee +homePhone: +1 408 862-6506 +initials: G. S. +mobile: +1 408 594-8282 +pager: +1 408 107-6520 +roomNumber: 9298 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Melhem Sherrer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melhem Sherrer +sn: Sherrer +description: This is Melhem Sherrer's description +facsimileTelephoneNumber: +1 510 982-6187 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 429-9280 +title: Master Product Development Pinhead +userPassword: Password1 +uid: SherrerM +givenName: Melhem +mail: SherrerM@4da7d564972d46f2924a6a8ae018f420.bitwarden.com +carLicense: EC8XI9 +departmentNumber: 9466 +employeeType: Contract +homePhone: +1 510 740-2504 +initials: M. S. +mobile: +1 510 570-5970 +pager: +1 510 864-3233 +roomNumber: 9330 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Coors Lavarnway,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coors Lavarnway +sn: Lavarnway +description: This is Coors Lavarnway's description +facsimileTelephoneNumber: +1 206 294-8016 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 372-8946 +title: Junior Product Development Grunt +userPassword: Password1 +uid: LavarnwC +givenName: Coors +mail: LavarnwC@708a672c33064628b91c3dd2fa37a575.bitwarden.com +carLicense: Q243B5 +departmentNumber: 7825 +employeeType: Contract +homePhone: +1 206 597-7799 +initials: C. L. +mobile: +1 206 295-3498 +pager: +1 206 964-9285 +roomNumber: 8915 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Perrine Kursell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perrine Kursell +sn: Kursell +description: This is Perrine Kursell's description +facsimileTelephoneNumber: +1 213 923-1019 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 270-8345 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: KursellP +givenName: Perrine +mail: KursellP@aff14874002145038419ccad7efa4aff.bitwarden.com +carLicense: Q8NVYC +departmentNumber: 7987 +employeeType: Employee +homePhone: +1 213 449-5849 +initials: P. K. +mobile: +1 213 301-1001 +pager: +1 213 867-5394 +roomNumber: 8385 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alane Lou,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alane Lou +sn: Lou +description: This is Alane Lou's description +facsimileTelephoneNumber: +1 206 370-2417 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 750-4049 +title: Associate Management Warrior +userPassword: Password1 +uid: LouA +givenName: Alane +mail: LouA@4b435cef82e14b3699af7f4cf8872441.bitwarden.com +carLicense: 569DWL +departmentNumber: 5614 +employeeType: Normal +homePhone: +1 206 522-6029 +initials: A. L. +mobile: +1 206 292-1595 +pager: +1 206 460-2384 +roomNumber: 8906 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilhelmine Townsel +sn: Townsel +description: This is Wilhelmine Townsel's description +facsimileTelephoneNumber: +1 408 693-1342 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 986-7032 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: TownselW +givenName: Wilhelmine +mail: TownselW@b3769d1b6e45429ebcc1ae937a2749cb.bitwarden.com +carLicense: YNH9Q3 +departmentNumber: 3881 +employeeType: Employee +homePhone: +1 408 329-3369 +initials: W. T. +mobile: +1 408 889-8565 +pager: +1 408 332-7152 +roomNumber: 9821 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Demet Ince,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Demet Ince +sn: Ince +description: This is Demet Ince's description +facsimileTelephoneNumber: +1 408 953-1374 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 408 778-1683 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: InceD +givenName: Demet +mail: InceD@da0493d79258465a92f6929fa5f9ec32.bitwarden.com +carLicense: VHEEUL +departmentNumber: 5269 +employeeType: Normal +homePhone: +1 408 166-7394 +initials: D. I. +mobile: +1 408 760-4702 +pager: +1 408 545-7733 +roomNumber: 8380 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bev Lineham,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bev Lineham +sn: Lineham +description: This is Bev Lineham's description +facsimileTelephoneNumber: +1 415 411-2203 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 874-9241 +title: Master Payroll Evangelist +userPassword: Password1 +uid: LinehamB +givenName: Bev +mail: LinehamB@943ab680cb9b4c9d8805dc06118922e2.bitwarden.com +carLicense: 2B0DV7 +departmentNumber: 7676 +employeeType: Normal +homePhone: +1 415 838-8480 +initials: B. L. +mobile: +1 415 984-5832 +pager: +1 415 416-4509 +roomNumber: 9900 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Corinna Thorson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corinna Thorson +sn: Thorson +description: This is Corinna Thorson's description +facsimileTelephoneNumber: +1 804 221-1045 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 361-7491 +title: Associate Payroll Madonna +userPassword: Password1 +uid: ThorsonC +givenName: Corinna +mail: ThorsonC@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com +carLicense: PV6D6O +departmentNumber: 4710 +employeeType: Contract +homePhone: +1 804 647-1976 +initials: C. T. +mobile: +1 804 983-7312 +pager: +1 804 789-4676 +roomNumber: 8942 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Daniela Rizk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daniela Rizk +sn: Rizk +description: This is Daniela Rizk's description +facsimileTelephoneNumber: +1 206 500-8113 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 243-4582 +title: Master Administrative Engineer +userPassword: Password1 +uid: RizkD +givenName: Daniela +mail: RizkD@d4562d1fe07448ba9965c2be7e88f80e.bitwarden.com +carLicense: 810W4P +departmentNumber: 3890 +employeeType: Normal +homePhone: +1 206 977-3265 +initials: D. R. +mobile: +1 206 544-5296 +pager: +1 206 972-2150 +roomNumber: 9438 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darcie Oskorep +sn: Oskorep +description: This is Darcie Oskorep's description +facsimileTelephoneNumber: +1 213 962-1813 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 539-2130 +title: Associate Janitorial Mascot +userPassword: Password1 +uid: OskorepD +givenName: Darcie +mail: OskorepD@d809403fc3704b2d9d3f57b70ad276fd.bitwarden.com +carLicense: QNCA1N +departmentNumber: 7820 +employeeType: Normal +homePhone: +1 213 364-9468 +initials: D. O. +mobile: +1 213 728-9163 +pager: +1 213 866-5738 +roomNumber: 8927 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mentor Endsley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mentor Endsley +sn: Endsley +description: This is Mentor Endsley's description +facsimileTelephoneNumber: +1 408 935-9251 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 182-1456 +title: Associate Janitorial Director +userPassword: Password1 +uid: EndsleyM +givenName: Mentor +mail: EndsleyM@339dae1666c141369c4355c1dbcfe99d.bitwarden.com +carLicense: BOCB36 +departmentNumber: 2539 +employeeType: Normal +homePhone: +1 408 352-8496 +initials: M. E. +mobile: +1 408 689-4240 +pager: +1 408 473-7349 +roomNumber: 8788 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=PeyKee Rusin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PeyKee Rusin +sn: Rusin +description: This is PeyKee Rusin's description +facsimileTelephoneNumber: +1 415 683-4163 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 975-6559 +title: Master Payroll Madonna +userPassword: Password1 +uid: RusinP +givenName: PeyKee +mail: RusinP@e164bbc73c0249c881dbd1db3dd138b4.bitwarden.com +carLicense: OBQTMP +departmentNumber: 6110 +employeeType: Normal +homePhone: +1 415 911-1425 +initials: P. R. +mobile: +1 415 431-9086 +pager: +1 415 245-3405 +roomNumber: 9389 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wojciech Zorony,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wojciech Zorony +sn: Zorony +description: This is Wojciech Zorony's description +facsimileTelephoneNumber: +1 415 140-5431 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 577-5955 +title: Supreme Peons Punk +userPassword: Password1 +uid: ZoronyW +givenName: Wojciech +mail: ZoronyW@e2e6ff31723a4db1a62b945f5410fadf.bitwarden.com +carLicense: H2EO23 +departmentNumber: 7026 +employeeType: Contract +homePhone: +1 415 823-7100 +initials: W. Z. +mobile: +1 415 740-4204 +pager: +1 415 209-7991 +roomNumber: 9687 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Juliane Lafata,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juliane Lafata +sn: Lafata +description: This is Juliane Lafata's description +facsimileTelephoneNumber: +1 510 357-3433 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 207-8207 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: LafataJ +givenName: Juliane +mail: LafataJ@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com +carLicense: VXYKDL +departmentNumber: 4376 +employeeType: Normal +homePhone: +1 510 998-4828 +initials: J. L. +mobile: +1 510 420-7734 +pager: +1 510 529-8635 +roomNumber: 9142 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oguz Mombourquette +sn: Mombourquette +description: This is Oguz Mombourquette's description +facsimileTelephoneNumber: +1 818 193-4802 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 571-1442 +title: Junior Administrative Director +userPassword: Password1 +uid: MombourO +givenName: Oguz +mail: MombourO@95a1ee6b5b3f4c268b18ee946c8c10a0.bitwarden.com +carLicense: C5JFM6 +departmentNumber: 1798 +employeeType: Contract +homePhone: +1 818 191-3416 +initials: O. M. +mobile: +1 818 368-7534 +pager: +1 818 126-8745 +roomNumber: 9657 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Buck Willoughby,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Buck Willoughby +sn: Willoughby +description: This is Buck Willoughby's description +facsimileTelephoneNumber: +1 510 696-2985 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 911-1905 +title: Master Janitorial Writer +userPassword: Password1 +uid: WillougB +givenName: Buck +mail: WillougB@a0d2b79a81564204acbc37b6b6efdfe4.bitwarden.com +carLicense: SE2E5A +departmentNumber: 7411 +employeeType: Contract +homePhone: +1 510 673-9408 +initials: B. W. +mobile: +1 510 132-8586 +pager: +1 510 514-2438 +roomNumber: 8930 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Atsushi Bible,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atsushi Bible +sn: Bible +description: This is Atsushi Bible's description +facsimileTelephoneNumber: +1 415 927-6088 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 976-6484 +title: Chief Administrative President +userPassword: Password1 +uid: BibleA +givenName: Atsushi +mail: BibleA@c91b2ddabda245189089b8e227b823b2.bitwarden.com +carLicense: UXD21A +departmentNumber: 7505 +employeeType: Contract +homePhone: +1 415 377-4166 +initials: A. B. +mobile: +1 415 700-7231 +pager: +1 415 495-2137 +roomNumber: 9453 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Veen Graibe,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veen Graibe +sn: Graibe +description: This is Veen Graibe's description +facsimileTelephoneNumber: +1 206 420-8966 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 739-1956 +title: Chief Administrative Engineer +userPassword: Password1 +uid: GraibeV +givenName: Veen +mail: GraibeV@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com +carLicense: W59BS4 +departmentNumber: 6796 +employeeType: Normal +homePhone: +1 206 526-9644 +initials: V. G. +mobile: +1 206 152-7281 +pager: +1 206 924-3493 +roomNumber: 9543 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginnie Mandeville +sn: Mandeville +description: This is Ginnie Mandeville's description +facsimileTelephoneNumber: +1 408 660-7034 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 914-1151 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: MandeviG +givenName: Ginnie +mail: MandeviG@94769a3591824a7c91ce0e683601c159.bitwarden.com +carLicense: QXFXDA +departmentNumber: 9500 +employeeType: Normal +homePhone: +1 408 106-7378 +initials: G. M. +mobile: +1 408 953-7946 +pager: +1 408 308-5293 +roomNumber: 8350 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Juli Poe,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juli Poe +sn: Poe +description: This is Juli Poe's description +facsimileTelephoneNumber: +1 510 284-6917 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 211-8571 +title: Associate Management Sales Rep +userPassword: Password1 +uid: PoeJ +givenName: Juli +mail: PoeJ@121756f8b87b4a8eac937b954ab1cbe2.bitwarden.com +carLicense: 2WBOQN +departmentNumber: 9660 +employeeType: Normal +homePhone: +1 510 225-9559 +initials: J. P. +mobile: +1 510 983-2910 +pager: +1 510 379-8266 +roomNumber: 8213 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Keys Foos,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keys Foos +sn: Foos +description: This is Keys Foos's description +facsimileTelephoneNumber: +1 408 243-7430 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 408-3693 +title: Junior Product Development Grunt +userPassword: Password1 +uid: FoosK +givenName: Keys +mail: FoosK@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com +carLicense: JTCJJB +departmentNumber: 7974 +employeeType: Employee +homePhone: +1 408 621-4363 +initials: K. F. +mobile: +1 408 366-3753 +pager: +1 408 527-1240 +roomNumber: 9446 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hanneke Weil,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanneke Weil +sn: Weil +description: This is Hanneke Weil's description +facsimileTelephoneNumber: +1 206 227-7627 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 188-3165 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: WeilH +givenName: Hanneke +mail: WeilH@d375d17b83f44fc4be3924ad0f54b388.bitwarden.com +carLicense: W3S1U2 +departmentNumber: 5051 +employeeType: Contract +homePhone: +1 206 101-9926 +initials: H. W. +mobile: +1 206 252-8645 +pager: +1 206 381-4068 +roomNumber: 9102 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MichaelMorgan Nassoy +sn: Nassoy +description: This is MichaelMorgan Nassoy's description +facsimileTelephoneNumber: +1 804 432-3019 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 125-2760 +title: Master Product Development Madonna +userPassword: Password1 +uid: NassoyM +givenName: MichaelMorgan +mail: NassoyM@b5bcc4ce776e4805ab4216703177730e.bitwarden.com +carLicense: VQFGJS +departmentNumber: 6944 +employeeType: Employee +homePhone: +1 804 556-5242 +initials: M. N. +mobile: +1 804 785-5916 +pager: +1 804 770-5922 +roomNumber: 8686 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Narrima Kaplan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Narrima Kaplan +sn: Kaplan +description: This is Narrima Kaplan's description +facsimileTelephoneNumber: +1 206 589-9616 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 830-1229 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: KaplanN +givenName: Narrima +mail: KaplanN@3340c10fa973435198296f285f1bf380.bitwarden.com +carLicense: HAPBGT +departmentNumber: 1690 +employeeType: Normal +homePhone: +1 206 274-8981 +initials: N. K. +mobile: +1 206 933-7975 +pager: +1 206 844-9459 +roomNumber: 9037 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nellie Guth,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nellie Guth +sn: Guth +description: This is Nellie Guth's description +facsimileTelephoneNumber: +1 510 216-8797 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 892-4231 +title: Supreme Administrative Technician +userPassword: Password1 +uid: GuthN +givenName: Nellie +mail: GuthN@acd4caa886454500972e2351b4443a5f.bitwarden.com +carLicense: F2XABA +departmentNumber: 1250 +employeeType: Employee +homePhone: +1 510 586-2943 +initials: N. G. +mobile: +1 510 215-7753 +pager: +1 510 646-5517 +roomNumber: 9572 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ermengarde Swact,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ermengarde Swact +sn: Swact +description: This is Ermengarde Swact's description +facsimileTelephoneNumber: +1 510 772-8513 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 393-1699 +title: Chief Payroll Mascot +userPassword: Password1 +uid: SwactE +givenName: Ermengarde +mail: SwactE@5ae024a345a94b5090f63e27d57061d6.bitwarden.com +carLicense: BYO34Q +departmentNumber: 4322 +employeeType: Normal +homePhone: +1 510 182-8664 +initials: E. S. +mobile: +1 510 732-9587 +pager: +1 510 285-5469 +roomNumber: 9932 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carmelo Holley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmelo Holley +sn: Holley +description: This is Carmelo Holley's description +facsimileTelephoneNumber: +1 213 155-4258 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 639-7334 +title: Chief Janitorial Punk +userPassword: Password1 +uid: HolleyC +givenName: Carmelo +mail: HolleyC@2a01d36814a04a9ebc13810183a6b11d.bitwarden.com +carLicense: PUG0X3 +departmentNumber: 7978 +employeeType: Contract +homePhone: +1 213 607-3755 +initials: C. H. +mobile: +1 213 390-5441 +pager: +1 213 753-5298 +roomNumber: 8565 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Virgie Ensign,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Virgie Ensign +sn: Ensign +description: This is Virgie Ensign's description +facsimileTelephoneNumber: +1 213 505-2237 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 968-4322 +title: Master Janitorial Writer +userPassword: Password1 +uid: EnsignV +givenName: Virgie +mail: EnsignV@6af59491c5a74fddb4c99c2f4eaecac5.bitwarden.com +carLicense: M6E5KQ +departmentNumber: 4920 +employeeType: Normal +homePhone: +1 213 713-3593 +initials: V. E. +mobile: +1 213 197-3451 +pager: +1 213 888-4356 +roomNumber: 9284 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vittorio Msg,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vittorio Msg +sn: Msg +description: This is Vittorio Msg's description +facsimileTelephoneNumber: +1 206 564-4745 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 874-6147 +title: Supreme Administrative Vice President +userPassword: Password1 +uid: MsgV +givenName: Vittorio +mail: MsgV@683e25fc9db544c199938de64838b325.bitwarden.com +carLicense: 17SN7V +departmentNumber: 6859 +employeeType: Normal +homePhone: +1 206 735-1037 +initials: V. M. +mobile: +1 206 556-5162 +pager: +1 206 796-1058 +roomNumber: 9836 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ragui Radford,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ragui Radford +sn: Radford +description: This is Ragui Radford's description +facsimileTelephoneNumber: +1 206 304-4395 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 760-2747 +title: Master Management Czar +userPassword: Password1 +uid: RadfordR +givenName: Ragui +mail: RadfordR@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com +carLicense: L2LXJJ +departmentNumber: 7301 +employeeType: Contract +homePhone: +1 206 103-4059 +initials: R. R. +mobile: +1 206 958-1200 +pager: +1 206 994-3888 +roomNumber: 8787 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lusa Wokoma +sn: Wokoma +description: This is Lusa Wokoma's description +facsimileTelephoneNumber: +1 804 490-5232 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 804 325-2352 +title: Junior Product Testing Manager +userPassword: Password1 +uid: WokomaL +givenName: Lusa +mail: WokomaL@b750d8129f2b4a6388d0065112d46a75.bitwarden.com +carLicense: R2WD4C +departmentNumber: 8075 +employeeType: Contract +homePhone: +1 804 528-4327 +initials: L. W. +mobile: +1 804 822-8263 +pager: +1 804 715-7913 +roomNumber: 9618 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Amalia Giertych,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amalia Giertych +sn: Giertych +description: This is Amalia Giertych's description +facsimileTelephoneNumber: +1 415 909-3472 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 424-7227 +title: Master Janitorial Fellow +userPassword: Password1 +uid: GiertycA +givenName: Amalia +mail: GiertycA@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com +carLicense: 8BNNRR +departmentNumber: 7726 +employeeType: Contract +homePhone: +1 415 190-6021 +initials: A. G. +mobile: +1 415 574-8598 +pager: +1 415 741-9028 +roomNumber: 8760 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bert McDougall,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bert McDougall +sn: McDougall +description: This is Bert McDougall's description +facsimileTelephoneNumber: +1 213 196-6624 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 834-8905 +title: Master Peons Warrior +userPassword: Password1 +uid: McDougaB +givenName: Bert +mail: McDougaB@6b490fc40c68440ca61573fe5b83533b.bitwarden.com +carLicense: O89AOR +departmentNumber: 3519 +employeeType: Employee +homePhone: +1 213 953-6135 +initials: B. M. +mobile: +1 213 245-9084 +pager: +1 213 441-1598 +roomNumber: 8660 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cherida Behlen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherida Behlen +sn: Behlen +description: This is Cherida Behlen's description +facsimileTelephoneNumber: +1 408 845-3539 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 477-6913 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: BehlenC +givenName: Cherida +mail: BehlenC@e209292ce8494e20a17431a0c16ad1ce.bitwarden.com +carLicense: HNN3DV +departmentNumber: 9783 +employeeType: Contract +homePhone: +1 408 176-8120 +initials: C. B. +mobile: +1 408 546-7166 +pager: +1 408 823-4027 +roomNumber: 9913 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Willa Brandsen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willa Brandsen +sn: Brandsen +description: This is Willa Brandsen's description +facsimileTelephoneNumber: +1 213 716-5970 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 750-6599 +title: Associate Payroll Figurehead +userPassword: Password1 +uid: BrandseW +givenName: Willa +mail: BrandseW@9b8cc74fde31459a93e65b46f65c8533.bitwarden.com +carLicense: ENP0U3 +departmentNumber: 3869 +employeeType: Normal +homePhone: +1 213 734-9841 +initials: W. B. +mobile: +1 213 524-5395 +pager: +1 213 573-9257 +roomNumber: 8957 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nancey Piggott,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nancey Piggott +sn: Piggott +description: This is Nancey Piggott's description +facsimileTelephoneNumber: +1 818 537-9588 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 818 917-7531 +title: Junior Payroll Architect +userPassword: Password1 +uid: PiggottN +givenName: Nancey +mail: PiggottN@5c7aa17839c348428d1ed0e06a9b190a.bitwarden.com +carLicense: Q0WKNA +departmentNumber: 6803 +employeeType: Normal +homePhone: +1 818 801-3463 +initials: N. P. +mobile: +1 818 320-5224 +pager: +1 818 678-5096 +roomNumber: 9225 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bui Potesta,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bui Potesta +sn: Potesta +description: This is Bui Potesta's description +facsimileTelephoneNumber: +1 510 976-9508 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 866-1510 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: PotestaB +givenName: Bui +mail: PotestaB@a5557159c1c14e57b5492ca45de2de58.bitwarden.com +carLicense: OV4OAO +departmentNumber: 2287 +employeeType: Employee +homePhone: +1 510 942-8274 +initials: B. P. +mobile: +1 510 722-3867 +pager: +1 510 994-1085 +roomNumber: 8685 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilfred Kenyon +sn: Kenyon +description: This is Wilfred Kenyon's description +facsimileTelephoneNumber: +1 510 997-3612 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 857-9605 +title: Master Human Resources Evangelist +userPassword: Password1 +uid: KenyonW +givenName: Wilfred +mail: KenyonW@7a69f72bb5b04c0ba3a5c02cbe85a1be.bitwarden.com +carLicense: E998TP +departmentNumber: 5362 +employeeType: Contract +homePhone: +1 510 578-9335 +initials: W. K. +mobile: +1 510 869-4259 +pager: +1 510 140-4911 +roomNumber: 9669 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Korney NolanMoore +sn: NolanMoore +description: This is Korney NolanMoore's description +facsimileTelephoneNumber: +1 408 219-2391 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 162-1779 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: NolanMoK +givenName: Korney +mail: NolanMoK@b8b19224acee46229ad2985e549b9721.bitwarden.com +carLicense: VH03VD +departmentNumber: 1971 +employeeType: Normal +homePhone: +1 408 213-7364 +initials: K. N. +mobile: +1 408 382-9689 +pager: +1 408 144-2363 +roomNumber: 8464 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ivo Dobbs,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivo Dobbs +sn: Dobbs +description: This is Ivo Dobbs's description +facsimileTelephoneNumber: +1 818 789-1258 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 876-6854 +title: Associate Payroll Warrior +userPassword: Password1 +uid: DobbsI +givenName: Ivo +mail: DobbsI@6db077c0ab9b46b8abf59e4daca54e6a.bitwarden.com +carLicense: FM5WDE +departmentNumber: 5979 +employeeType: Contract +homePhone: +1 818 475-3151 +initials: I. D. +mobile: +1 818 904-7179 +pager: +1 818 100-8236 +roomNumber: 8117 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brigitta Maskell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigitta Maskell +sn: Maskell +description: This is Brigitta Maskell's description +facsimileTelephoneNumber: +1 206 819-7910 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 894-8471 +title: Chief Peons Architect +userPassword: Password1 +uid: MaskellB +givenName: Brigitta +mail: MaskellB@35f9e0ae24c24ec3baa413620b2b7eb4.bitwarden.com +carLicense: HT1LTJ +departmentNumber: 2923 +employeeType: Contract +homePhone: +1 206 891-8847 +initials: B. M. +mobile: +1 206 975-6295 +pager: +1 206 347-1852 +roomNumber: 9700 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kizzee Flickinger +sn: Flickinger +description: This is Kizzee Flickinger's description +facsimileTelephoneNumber: +1 510 405-8842 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 928-3877 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: FlickinK +givenName: Kizzee +mail: FlickinK@a1ff5ce57b0d4a5ab92e5a7972b3c4b0.bitwarden.com +carLicense: 7KMYIY +departmentNumber: 1059 +employeeType: Normal +homePhone: +1 510 795-9833 +initials: K. F. +mobile: +1 510 846-1737 +pager: +1 510 755-2558 +roomNumber: 8112 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nong Polashock,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nong Polashock +sn: Polashock +description: This is Nong Polashock's description +facsimileTelephoneNumber: +1 213 169-6238 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 716-2216 +title: Chief Product Testing Janitor +userPassword: Password1 +uid: PolashoN +givenName: Nong +mail: PolashoN@ec1ddd180ec346c9ac4e8ff1fbae4cee.bitwarden.com +carLicense: R2JON1 +departmentNumber: 3298 +employeeType: Normal +homePhone: +1 213 923-9624 +initials: N. P. +mobile: +1 213 965-1564 +pager: +1 213 707-3368 +roomNumber: 8482 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozanne Cobbold +sn: Cobbold +description: This is Rozanne Cobbold's description +facsimileTelephoneNumber: +1 213 655-1311 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 915-5000 +title: Master Product Testing Architect +userPassword: Password1 +uid: CobboldR +givenName: Rozanne +mail: CobboldR@07b1787368a34e789ce994f0c32f4345.bitwarden.com +carLicense: R3EA29 +departmentNumber: 6168 +employeeType: Normal +homePhone: +1 213 788-4165 +initials: R. C. +mobile: +1 213 437-3000 +pager: +1 213 908-1361 +roomNumber: 9003 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leendert Beaulieu +sn: Beaulieu +description: This is Leendert Beaulieu's description +facsimileTelephoneNumber: +1 206 825-9117 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 239-5029 +title: Chief Product Testing President +userPassword: Password1 +uid: BeaulieL +givenName: Leendert +mail: BeaulieL@c2a256a75eaf4a37b7136ba6b0518b6c.bitwarden.com +carLicense: S2TSBF +departmentNumber: 2187 +employeeType: Normal +homePhone: +1 206 272-6926 +initials: L. B. +mobile: +1 206 187-8543 +pager: +1 206 117-6352 +roomNumber: 9419 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gisele Forbes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gisele Forbes +sn: Forbes +description: This is Gisele Forbes's description +facsimileTelephoneNumber: +1 408 325-9291 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 904-8303 +title: Associate Product Testing Developer +userPassword: Password1 +uid: ForbesG +givenName: Gisele +mail: ForbesG@232786cf6be745b08d532519f75fd65e.bitwarden.com +carLicense: NTF1NH +departmentNumber: 7612 +employeeType: Normal +homePhone: +1 408 213-8079 +initials: G. F. +mobile: +1 408 466-4596 +pager: +1 408 535-2333 +roomNumber: 8656 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beverly Chaintreuil +sn: Chaintreuil +description: This is Beverly Chaintreuil's description +facsimileTelephoneNumber: +1 213 432-3149 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 836-2463 +title: Junior Administrative Consultant +userPassword: Password1 +uid: ChaintrB +givenName: Beverly +mail: ChaintrB@75be32b1be62419e90c08307d5bdff60.bitwarden.com +carLicense: Q4IGH0 +departmentNumber: 3341 +employeeType: Employee +homePhone: +1 213 888-8908 +initials: B. C. +mobile: +1 213 345-2701 +pager: +1 213 839-2752 +roomNumber: 9297 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Madonna Sheu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madonna Sheu +sn: Sheu +description: This is Madonna Sheu's description +facsimileTelephoneNumber: +1 408 294-8628 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 283-2865 +title: Supreme Management Technician +userPassword: Password1 +uid: SheuM +givenName: Madonna +mail: SheuM@5466c54e889b4267baf9470fe7add9b1.bitwarden.com +carLicense: 8MSN6Y +departmentNumber: 7740 +employeeType: Normal +homePhone: +1 408 401-9978 +initials: M. S. +mobile: +1 408 695-4381 +pager: +1 408 591-3101 +roomNumber: 8710 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dzung Evans,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dzung Evans +sn: Evans +description: This is Dzung Evans's description +facsimileTelephoneNumber: +1 415 842-2222 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 415 636-4419 +title: Associate Human Resources Manager +userPassword: Password1 +uid: EvansD +givenName: Dzung +mail: EvansD@ca8f4832ccb34eecb660b444c29c036c.bitwarden.com +carLicense: 095A95 +departmentNumber: 8772 +employeeType: Employee +homePhone: +1 415 671-2813 +initials: D. E. +mobile: +1 415 954-1670 +pager: +1 415 860-1187 +roomNumber: 8295 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hermione Delf,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermione Delf +sn: Delf +description: This is Hermione Delf's description +facsimileTelephoneNumber: +1 804 797-3916 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 529-7479 +title: Junior Product Development Admin +userPassword: Password1 +uid: DelfH +givenName: Hermione +mail: DelfH@2b27acc969e94cf2aa1e0ddf34189475.bitwarden.com +carLicense: 6DWLI7 +departmentNumber: 7723 +employeeType: Contract +homePhone: +1 804 280-1241 +initials: H. D. +mobile: +1 804 379-7596 +pager: +1 804 521-5464 +roomNumber: 9395 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Somsak Dansereau +sn: Dansereau +description: This is Somsak Dansereau's description +facsimileTelephoneNumber: +1 804 763-3410 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 423-8548 +title: Chief Product Testing Manager +userPassword: Password1 +uid: DansereS +givenName: Somsak +mail: DansereS@181e7c5d669f48eca80875ae007e40bd.bitwarden.com +carLicense: 5UDYFD +departmentNumber: 7335 +employeeType: Contract +homePhone: +1 804 838-2558 +initials: S. D. +mobile: +1 804 130-1958 +pager: +1 804 525-5695 +roomNumber: 8486 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Koray Deleon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koray Deleon +sn: Deleon +description: This is Koray Deleon's description +facsimileTelephoneNumber: +1 206 652-3632 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 206 741-4716 +title: Supreme Human Resources Pinhead +userPassword: Password1 +uid: DeleonK +givenName: Koray +mail: DeleonK@46baf5a1236843538b25328b706d56d5.bitwarden.com +carLicense: VDM2IT +departmentNumber: 6950 +employeeType: Contract +homePhone: +1 206 819-1391 +initials: K. D. +mobile: +1 206 745-8480 +pager: +1 206 614-1483 +roomNumber: 9133 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Korie Swinks,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Korie Swinks +sn: Swinks +description: This is Korie Swinks's description +facsimileTelephoneNumber: +1 415 248-7780 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 548-6998 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: SwinksK +givenName: Korie +mail: SwinksK@abac4d1589c04140a0e454484535ad15.bitwarden.com +carLicense: BM9DJB +departmentNumber: 4176 +employeeType: Normal +homePhone: +1 415 486-8590 +initials: K. S. +mobile: +1 415 781-3968 +pager: +1 415 744-1092 +roomNumber: 8383 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wynnie Joyce,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wynnie Joyce +sn: Joyce +description: This is Wynnie Joyce's description +facsimileTelephoneNumber: +1 213 664-7735 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 970-1972 +title: Associate Peons Admin +userPassword: Password1 +uid: JoyceW +givenName: Wynnie +mail: JoyceW@f48984d7e7db42f4891e864fa2c4158a.bitwarden.com +carLicense: K9BVGB +departmentNumber: 3180 +employeeType: Normal +homePhone: +1 213 516-2047 +initials: W. J. +mobile: +1 213 167-9433 +pager: +1 213 553-1802 +roomNumber: 8562 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Teetwo Jarman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teetwo Jarman +sn: Jarman +description: This is Teetwo Jarman's description +facsimileTelephoneNumber: +1 415 907-9098 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 116-7824 +title: Chief Management Punk +userPassword: Password1 +uid: JarmanT +givenName: Teetwo +mail: JarmanT@5fc1a3cb7d794193b94e35fbd63bc6e8.bitwarden.com +carLicense: GT4J73 +departmentNumber: 6624 +employeeType: Employee +homePhone: +1 415 110-3767 +initials: T. J. +mobile: +1 415 822-6355 +pager: +1 415 850-8079 +roomNumber: 9415 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Flss Daquano,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flss Daquano +sn: Daquano +description: This is Flss Daquano's description +facsimileTelephoneNumber: +1 804 164-9682 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 307-7446 +title: Master Product Testing Grunt +userPassword: Password1 +uid: DaquanoF +givenName: Flss +mail: DaquanoF@f9f1d010b27b497284c7d10a3ee24be1.bitwarden.com +carLicense: 0E47SS +departmentNumber: 9210 +employeeType: Employee +homePhone: +1 804 431-1006 +initials: F. D. +mobile: +1 804 641-8910 +pager: +1 804 553-9515 +roomNumber: 8511 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Doc Frederick,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doc Frederick +sn: Frederick +description: This is Doc Frederick's description +facsimileTelephoneNumber: +1 415 520-2530 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 799-4918 +title: Supreme Human Resources Pinhead +userPassword: Password1 +uid: FrederiD +givenName: Doc +mail: FrederiD@910237fae0394e20b1bd8e8be3e49be6.bitwarden.com +carLicense: UU78D9 +departmentNumber: 7177 +employeeType: Normal +homePhone: +1 415 765-1703 +initials: D. F. +mobile: +1 415 863-3354 +pager: +1 415 291-5536 +roomNumber: 9223 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hellmut Harrod,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hellmut Harrod +sn: Harrod +description: This is Hellmut Harrod's description +facsimileTelephoneNumber: +1 415 302-7440 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 791-3202 +title: Associate Product Development Fellow +userPassword: Password1 +uid: HarrodH +givenName: Hellmut +mail: HarrodH@a5a91129e0ba4691a9ff41395fb1c999.bitwarden.com +carLicense: ODWTK4 +departmentNumber: 9182 +employeeType: Employee +homePhone: +1 415 734-2546 +initials: H. H. +mobile: +1 415 427-4360 +pager: +1 415 217-8836 +roomNumber: 8709 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kelcie Uchida,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelcie Uchida +sn: Uchida +description: This is Kelcie Uchida's description +facsimileTelephoneNumber: +1 408 593-1648 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 949-1696 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: UchidaK +givenName: Kelcie +mail: UchidaK@127f75e34fa94456a07c8ec8f332f580.bitwarden.com +carLicense: 36H627 +departmentNumber: 3011 +employeeType: Employee +homePhone: +1 408 464-7880 +initials: K. U. +mobile: +1 408 499-7661 +pager: +1 408 979-5386 +roomNumber: 8592 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Oksana Sitler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oksana Sitler +sn: Sitler +description: This is Oksana Sitler's description +facsimileTelephoneNumber: +1 213 409-3709 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 481-6217 +title: Master Product Development Assistant +userPassword: Password1 +uid: SitlerO +givenName: Oksana +mail: SitlerO@6ce8963e36d24b6b992ec2839a5706bf.bitwarden.com +carLicense: OGL9N6 +departmentNumber: 7346 +employeeType: Contract +homePhone: +1 213 229-7912 +initials: O. S. +mobile: +1 213 954-2770 +pager: +1 213 346-9547 +roomNumber: 8682 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vitia Dacre,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vitia Dacre +sn: Dacre +description: This is Vitia Dacre's description +facsimileTelephoneNumber: +1 408 185-9101 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 698-6492 +title: Master Payroll Artist +userPassword: Password1 +uid: DacreV +givenName: Vitia +mail: DacreV@dde5fb6e4b074693aad4d3211880997e.bitwarden.com +carLicense: OIWAEI +departmentNumber: 9012 +employeeType: Employee +homePhone: +1 408 974-3262 +initials: V. D. +mobile: +1 408 670-4404 +pager: +1 408 924-5265 +roomNumber: 8438 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanjoy Vella +sn: Vella +description: This is Sanjoy Vella's description +facsimileTelephoneNumber: +1 206 403-2380 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 126-5845 +title: Master Product Testing Manager +userPassword: Password1 +uid: VellaS +givenName: Sanjoy +mail: VellaS@850db1da58bd42079908c4f0bd25aebc.bitwarden.com +carLicense: 9I06NP +departmentNumber: 6555 +employeeType: Normal +homePhone: +1 206 202-1904 +initials: S. V. +mobile: +1 206 927-2987 +pager: +1 206 146-4951 +roomNumber: 8740 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Housseini Jolicoeur +sn: Jolicoeur +description: This is Housseini Jolicoeur's description +facsimileTelephoneNumber: +1 510 829-4704 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 977-1988 +title: Master Payroll Developer +userPassword: Password1 +uid: JolicoeH +givenName: Housseini +mail: JolicoeH@193a813b90bf4054a776a2e46081339c.bitwarden.com +carLicense: JLHKF4 +departmentNumber: 6690 +employeeType: Normal +homePhone: +1 510 339-9963 +initials: H. J. +mobile: +1 510 984-4235 +pager: +1 510 652-2224 +roomNumber: 8146 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Carly Cencier,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carly Cencier +sn: Cencier +description: This is Carly Cencier's description +facsimileTelephoneNumber: +1 510 125-5960 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 812-9748 +title: Chief Management Consultant +userPassword: Password1 +uid: CencierC +givenName: Carly +mail: CencierC@7673bf0b891540b586de1703874cedb9.bitwarden.com +carLicense: YUE6YM +departmentNumber: 6392 +employeeType: Contract +homePhone: +1 510 348-4469 +initials: C. C. +mobile: +1 510 967-2772 +pager: +1 510 748-8419 +roomNumber: 8469 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Loc Sochovka,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loc Sochovka +sn: Sochovka +description: This is Loc Sochovka's description +facsimileTelephoneNumber: +1 818 132-9619 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 925-2879 +title: Supreme Human Resources Janitor +userPassword: Password1 +uid: SochovkL +givenName: Loc +mail: SochovkL@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com +carLicense: 0WO2XT +departmentNumber: 1225 +employeeType: Contract +homePhone: +1 818 544-8846 +initials: L. S. +mobile: +1 818 877-7213 +pager: +1 818 635-2755 +roomNumber: 8160 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tonye Lenox,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonye Lenox +sn: Lenox +description: This is Tonye Lenox's description +facsimileTelephoneNumber: +1 415 288-5474 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 273-5139 +title: Associate Payroll Stooge +userPassword: Password1 +uid: LenoxT +givenName: Tonye +mail: LenoxT@02869e10b5974489814843ac717e10a8.bitwarden.com +carLicense: 0YURS2 +departmentNumber: 9858 +employeeType: Normal +homePhone: +1 415 716-2233 +initials: T. L. +mobile: +1 415 817-2300 +pager: +1 415 630-8007 +roomNumber: 9001 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Olly Ooi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olly Ooi +sn: Ooi +description: This is Olly Ooi's description +facsimileTelephoneNumber: +1 415 374-2570 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 240-2144 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: OoiO +givenName: Olly +mail: OoiO@49fe706dbe7849f2b9658de63b5fdca6.bitwarden.com +carLicense: R162OO +departmentNumber: 9534 +employeeType: Normal +homePhone: +1 415 853-3509 +initials: O. O. +mobile: +1 415 445-9800 +pager: +1 415 357-8642 +roomNumber: 8083 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Margie Herman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margie Herman +sn: Herman +description: This is Margie Herman's description +facsimileTelephoneNumber: +1 818 384-1408 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 641-5093 +title: Chief Administrative Developer +userPassword: Password1 +uid: HermanM +givenName: Margie +mail: HermanM@26ea76142f2a4637b028d1aa71d30271.bitwarden.com +carLicense: MLLHYT +departmentNumber: 7134 +employeeType: Normal +homePhone: +1 818 964-5670 +initials: M. H. +mobile: +1 818 152-5752 +pager: +1 818 995-1591 +roomNumber: 9548 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Giustina Farrington,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giustina Farrington +sn: Farrington +description: This is Giustina Farrington's description +facsimileTelephoneNumber: +1 213 455-2683 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 963-3907 +title: Junior Payroll Manager +userPassword: Password1 +uid: FarringG +givenName: Giustina +mail: FarringG@43156b01c6bc494fbc8570d9a5003fc5.bitwarden.com +carLicense: 4WXS2M +departmentNumber: 2560 +employeeType: Employee +homePhone: +1 213 949-4795 +initials: G. F. +mobile: +1 213 255-9414 +pager: +1 213 706-6980 +roomNumber: 9051 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deane Bellehumeur +sn: Bellehumeur +description: This is Deane Bellehumeur's description +facsimileTelephoneNumber: +1 213 803-3031 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 157-6539 +title: Junior Janitorial Technician +userPassword: Password1 +uid: BellehuD +givenName: Deane +mail: BellehuD@cefc491b1b064419a5c03c35fa4c9c33.bitwarden.com +carLicense: 8IPRLC +departmentNumber: 7777 +employeeType: Employee +homePhone: +1 213 744-9645 +initials: D. B. +mobile: +1 213 130-1394 +pager: +1 213 393-4284 +roomNumber: 8634 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Liviu Fisprod,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liviu Fisprod +sn: Fisprod +description: This is Liviu Fisprod's description +facsimileTelephoneNumber: +1 206 973-7498 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 206 367-9237 +title: Associate Management Warrior +userPassword: Password1 +uid: FisprodL +givenName: Liviu +mail: FisprodL@518da73225eb4a77959fb191daf72b49.bitwarden.com +carLicense: 61IM40 +departmentNumber: 4209 +employeeType: Normal +homePhone: +1 206 658-2684 +initials: L. F. +mobile: +1 206 674-4459 +pager: +1 206 513-2601 +roomNumber: 8780 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hana JeeHowe +sn: JeeHowe +description: This is Hana JeeHowe's description +facsimileTelephoneNumber: +1 408 600-5692 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 408 497-3039 +title: Junior Janitorial Artist +userPassword: Password1 +uid: JeeHoweH +givenName: Hana +mail: JeeHoweH@f8b5ec3dd78f44e3bd6de92c22b0edfc.bitwarden.com +carLicense: I0E0R3 +departmentNumber: 1190 +employeeType: Contract +homePhone: +1 408 647-4482 +initials: H. J. +mobile: +1 408 668-9668 +pager: +1 408 556-2697 +roomNumber: 8588 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alfons Toothman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alfons Toothman +sn: Toothman +description: This is Alfons Toothman's description +facsimileTelephoneNumber: +1 206 355-6651 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 206 847-4624 +title: Supreme Payroll President +userPassword: Password1 +uid: ToothmaA +givenName: Alfons +mail: ToothmaA@b3c93053c0224253988d5c3b976abcae.bitwarden.com +carLicense: VIINKQ +departmentNumber: 9227 +employeeType: Contract +homePhone: +1 206 814-7321 +initials: A. T. +mobile: +1 206 580-9717 +pager: +1 206 708-3915 +roomNumber: 9924 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ronica Espinosa,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronica Espinosa +sn: Espinosa +description: This is Ronica Espinosa's description +facsimileTelephoneNumber: +1 408 248-6199 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 408 956-6556 +title: Chief Administrative Madonna +userPassword: Password1 +uid: EspinosR +givenName: Ronica +mail: EspinosR@9dcbe58177c3454c992be9f2bcd770bc.bitwarden.com +carLicense: GGJDE0 +departmentNumber: 8817 +employeeType: Contract +homePhone: +1 408 751-2477 +initials: R. E. +mobile: +1 408 451-5224 +pager: +1 408 168-1511 +roomNumber: 8006 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeane Yuhanna,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeane Yuhanna +sn: Yuhanna +description: This is Jeane Yuhanna's description +facsimileTelephoneNumber: +1 510 125-7812 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 308-8735 +title: Chief Peons Punk +userPassword: Password1 +uid: YuhannaJ +givenName: Jeane +mail: YuhannaJ@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com +carLicense: B2Y9IL +departmentNumber: 5681 +employeeType: Contract +homePhone: +1 510 196-2802 +initials: J. Y. +mobile: +1 510 592-2784 +pager: +1 510 368-2803 +roomNumber: 8088 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Paulien Misutka,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulien Misutka +sn: Misutka +description: This is Paulien Misutka's description +facsimileTelephoneNumber: +1 206 719-5983 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 204-7084 +title: Supreme Management Engineer +userPassword: Password1 +uid: MisutkaP +givenName: Paulien +mail: MisutkaP@1eca82e8a13846f79eca4d8e3955a909.bitwarden.com +carLicense: FDUHDC +departmentNumber: 2918 +employeeType: Employee +homePhone: +1 206 840-7466 +initials: P. M. +mobile: +1 206 554-8312 +pager: +1 206 472-1312 +roomNumber: 8477 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Humberto Azevedo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Humberto Azevedo +sn: Azevedo +description: This is Humberto Azevedo's description +facsimileTelephoneNumber: +1 415 377-7634 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 451-6963 +title: Master Management Punk +userPassword: Password1 +uid: AzevedoH +givenName: Humberto +mail: AzevedoH@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com +carLicense: QYXOYN +departmentNumber: 4602 +employeeType: Contract +homePhone: +1 415 795-6594 +initials: H. A. +mobile: +1 415 870-6082 +pager: +1 415 302-3962 +roomNumber: 8173 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cissy Benning,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cissy Benning +sn: Benning +description: This is Cissy Benning's description +facsimileTelephoneNumber: +1 206 792-7422 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 528-3913 +title: Master Administrative Stooge +userPassword: Password1 +uid: BenningC +givenName: Cissy +mail: BenningC@b1455661bd7543dbbba61526147b93a9.bitwarden.com +carLicense: SOBLGP +departmentNumber: 3837 +employeeType: Employee +homePhone: +1 206 991-8345 +initials: C. B. +mobile: +1 206 340-7414 +pager: +1 206 610-5390 +roomNumber: 8875 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorletha Schonberger +sn: Schonberger +description: This is Lorletha Schonberger's description +facsimileTelephoneNumber: +1 213 354-4694 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 213 446-2826 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: SchonbeL +givenName: Lorletha +mail: SchonbeL@05749581377d47ba8047ee7237ce7f83.bitwarden.com +carLicense: MULNEA +departmentNumber: 2182 +employeeType: Contract +homePhone: +1 213 946-7316 +initials: L. S. +mobile: +1 213 729-4793 +pager: +1 213 191-9589 +roomNumber: 8249 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vacman Beaudet +sn: Beaudet +description: This is Vacman Beaudet's description +facsimileTelephoneNumber: +1 510 885-3966 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 510 537-8906 +title: Chief Human Resources Czar +userPassword: Password1 +uid: BeaudetV +givenName: Vacman +mail: BeaudetV@20652fd58932448b926b6d40287545d2.bitwarden.com +carLicense: MEIDKH +departmentNumber: 8195 +employeeType: Contract +homePhone: +1 510 525-9232 +initials: V. B. +mobile: +1 510 892-2930 +pager: +1 510 286-2445 +roomNumber: 8073 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gib Gouhara,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gib Gouhara +sn: Gouhara +description: This is Gib Gouhara's description +facsimileTelephoneNumber: +1 213 676-8906 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 661-7189 +title: Associate Administrative Pinhead +userPassword: Password1 +uid: GouharaG +givenName: Gib +mail: GouharaG@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com +carLicense: Q6TXKW +departmentNumber: 7064 +employeeType: Contract +homePhone: +1 213 508-4565 +initials: G. G. +mobile: +1 213 265-8553 +pager: +1 213 133-2612 +roomNumber: 9284 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ameline Ikotin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ameline Ikotin +sn: Ikotin +description: This is Ameline Ikotin's description +facsimileTelephoneNumber: +1 510 934-2641 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 694-7715 +title: Chief Management Assistant +userPassword: Password1 +uid: IkotinA +givenName: Ameline +mail: IkotinA@5c6902554d684605823ee60bd0935275.bitwarden.com +carLicense: AADECI +departmentNumber: 2222 +employeeType: Employee +homePhone: +1 510 671-8627 +initials: A. I. +mobile: +1 510 116-4731 +pager: +1 510 404-7482 +roomNumber: 8808 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Johanne Coloads,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johanne Coloads +sn: Coloads +description: This is Johanne Coloads's description +facsimileTelephoneNumber: +1 804 194-1186 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 471-3124 +title: Master Administrative President +userPassword: Password1 +uid: ColoadsJ +givenName: Johanne +mail: ColoadsJ@acd4caa886454500972e2351b4443a5f.bitwarden.com +carLicense: EPT98V +departmentNumber: 7906 +employeeType: Employee +homePhone: +1 804 808-7814 +initials: J. C. +mobile: +1 804 714-4649 +pager: +1 804 838-1295 +roomNumber: 8162 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Germaine Sabri,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Germaine Sabri +sn: Sabri +description: This is Germaine Sabri's description +facsimileTelephoneNumber: +1 213 268-7745 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 151-4074 +title: Junior Management Architect +userPassword: Password1 +uid: SabriG +givenName: Germaine +mail: SabriG@207e1d82de324f5b9c63fc14e33c9595.bitwarden.com +carLicense: FOF98X +departmentNumber: 4909 +employeeType: Employee +homePhone: +1 213 218-9951 +initials: G. S. +mobile: +1 213 607-3285 +pager: +1 213 759-3943 +roomNumber: 9010 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Justine Gramiak,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Justine Gramiak +sn: Gramiak +description: This is Justine Gramiak's description +facsimileTelephoneNumber: +1 408 626-8921 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 621-7582 +title: Supreme Peons Mascot +userPassword: Password1 +uid: GramiakJ +givenName: Justine +mail: GramiakJ@4fd308eba088404ab84d4a632c943b2d.bitwarden.com +carLicense: 93VE2N +departmentNumber: 2541 +employeeType: Employee +homePhone: +1 408 245-5139 +initials: J. G. +mobile: +1 408 254-9454 +pager: +1 408 816-3670 +roomNumber: 8094 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Selma Coxe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selma Coxe +sn: Coxe +description: This is Selma Coxe's description +facsimileTelephoneNumber: +1 415 816-9504 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 987-1011 +title: Junior Payroll Consultant +userPassword: Password1 +uid: CoxeS +givenName: Selma +mail: CoxeS@7336ab4f2ede4dc9a7be8d102b8fa46f.bitwarden.com +carLicense: I4CK7I +departmentNumber: 6956 +employeeType: Normal +homePhone: +1 415 481-2976 +initials: S. C. +mobile: +1 415 598-7448 +pager: +1 415 585-5823 +roomNumber: 8119 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nga Hoag,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nga Hoag +sn: Hoag +description: This is Nga Hoag's description +facsimileTelephoneNumber: +1 408 585-3292 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 408 252-2536 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: HoagN +givenName: Nga +mail: HoagN@759d634715d84fd98852f9030d6bb1fd.bitwarden.com +carLicense: RWLRM0 +departmentNumber: 9017 +employeeType: Contract +homePhone: +1 408 151-6022 +initials: N. H. +mobile: +1 408 834-2269 +pager: +1 408 223-6428 +roomNumber: 8323 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanPaul Bcs +sn: Bcs +description: This is JeanPaul Bcs's description +facsimileTelephoneNumber: +1 804 878-5004 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 818-9774 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: BcsJ +givenName: JeanPaul +mail: BcsJ@9be954e44923466fa24be9ef8ce9bc6a.bitwarden.com +carLicense: 66S1H5 +departmentNumber: 3018 +employeeType: Employee +homePhone: +1 804 938-8146 +initials: J. B. +mobile: +1 804 311-2629 +pager: +1 804 264-2403 +roomNumber: 9172 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Claudette Towers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claudette Towers +sn: Towers +description: This is Claudette Towers's description +facsimileTelephoneNumber: +1 818 457-2472 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 241-1329 +title: Master Payroll Architect +userPassword: Password1 +uid: TowersC +givenName: Claudette +mail: TowersC@19cb9d22e4184ceea78aafbb98426e0d.bitwarden.com +carLicense: HQLJ66 +departmentNumber: 7139 +employeeType: Employee +homePhone: +1 818 741-2374 +initials: C. T. +mobile: +1 818 445-9409 +pager: +1 818 844-5901 +roomNumber: 8497 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hala VanDenKieboom +sn: VanDenKieboom +description: This is Hala VanDenKieboom's description +facsimileTelephoneNumber: +1 804 839-9109 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 785-9813 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: VanDenKH +givenName: Hala +mail: VanDenKH@edc642e0d4114142a514590d284702bf.bitwarden.com +carLicense: F4XT5C +departmentNumber: 9139 +employeeType: Normal +homePhone: +1 804 519-5569 +initials: H. V. +mobile: +1 804 617-8728 +pager: +1 804 187-8840 +roomNumber: 8740 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Wilhelmina Yardy,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilhelmina Yardy +sn: Yardy +description: This is Wilhelmina Yardy's description +facsimileTelephoneNumber: +1 510 507-8544 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 849-1813 +title: Chief Management Evangelist +userPassword: Password1 +uid: YardyW +givenName: Wilhelmina +mail: YardyW@03dd1842eed94795a2debd8504958a83.bitwarden.com +carLicense: UWS2CC +departmentNumber: 7350 +employeeType: Employee +homePhone: +1 510 617-4006 +initials: W. Y. +mobile: +1 510 983-7948 +pager: +1 510 109-3949 +roomNumber: 8790 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Farooq Rosche,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farooq Rosche +sn: Rosche +description: This is Farooq Rosche's description +facsimileTelephoneNumber: +1 804 466-4443 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 249-8498 +title: Associate Product Testing Czar +userPassword: Password1 +uid: RoscheF +givenName: Farooq +mail: RoscheF@1871a69ca6234f999f51d3a9b4eb4578.bitwarden.com +carLicense: 9FYC8D +departmentNumber: 2321 +employeeType: Employee +homePhone: +1 804 926-8811 +initials: F. R. +mobile: +1 804 618-9609 +pager: +1 804 219-8874 +roomNumber: 8020 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joannie Kornachuk +sn: Kornachuk +description: This is Joannie Kornachuk's description +facsimileTelephoneNumber: +1 415 162-7099 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 102-9459 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: KornachJ +givenName: Joannie +mail: KornachJ@d73357acec7c4a888c336fde87967132.bitwarden.com +carLicense: JST82N +departmentNumber: 2006 +employeeType: Normal +homePhone: +1 415 345-6858 +initials: J. K. +mobile: +1 415 131-9824 +pager: +1 415 697-2985 +roomNumber: 9843 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Elyssa Schvan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elyssa Schvan +sn: Schvan +description: This is Elyssa Schvan's description +facsimileTelephoneNumber: +1 408 551-4846 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 701-1017 +title: Junior Peons Director +userPassword: Password1 +uid: SchvanE +givenName: Elyssa +mail: SchvanE@52c6c82549d445678721da442aca8e53.bitwarden.com +carLicense: FHGFJ9 +departmentNumber: 1701 +employeeType: Normal +homePhone: +1 408 746-5588 +initials: E. S. +mobile: +1 408 858-5148 +pager: +1 408 874-3815 +roomNumber: 8016 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Phoenix Jims,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phoenix Jims +sn: Jims +description: This is Phoenix Jims's description +facsimileTelephoneNumber: +1 818 860-2325 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 478-2879 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: JimsP +givenName: Phoenix +mail: JimsP@c68b993f950f4e2f86efe0dfd639b00c.bitwarden.com +carLicense: LABM3H +departmentNumber: 4982 +employeeType: Contract +homePhone: +1 818 984-4103 +initials: P. J. +mobile: +1 818 443-3162 +pager: +1 818 813-2803 +roomNumber: 8328 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChristieAnne Klassen +sn: Klassen +description: This is ChristieAnne Klassen's description +facsimileTelephoneNumber: +1 510 925-7085 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 962-3561 +title: Junior Product Development Visionary +userPassword: Password1 +uid: KlassenC +givenName: ChristieAnne +mail: KlassenC@1b5d8352bac64038b1e8fc921d81a384.bitwarden.com +carLicense: KQ5ALA +departmentNumber: 1675 +employeeType: Contract +homePhone: +1 510 797-1679 +initials: C. K. +mobile: +1 510 615-4169 +pager: +1 510 277-1055 +roomNumber: 9867 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sosanna Flickinger +sn: Flickinger +description: This is Sosanna Flickinger's description +facsimileTelephoneNumber: +1 213 421-1908 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 291-4174 +title: Chief Janitorial President +userPassword: Password1 +uid: FlickinS +givenName: Sosanna +mail: FlickinS@fa9b1528fbb74720b69f2a879f936284.bitwarden.com +carLicense: 2YGO2E +departmentNumber: 7734 +employeeType: Normal +homePhone: +1 213 595-9274 +initials: S. F. +mobile: +1 213 624-1926 +pager: +1 213 588-2448 +roomNumber: 9783 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guillema Allahdin +sn: Allahdin +description: This is Guillema Allahdin's description +facsimileTelephoneNumber: +1 408 996-5434 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 846-6999 +title: Master Janitorial Admin +userPassword: Password1 +uid: AllahdiG +givenName: Guillema +mail: AllahdiG@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com +carLicense: GU1FCK +departmentNumber: 2758 +employeeType: Normal +homePhone: +1 408 919-9542 +initials: G. A. +mobile: +1 408 836-9259 +pager: +1 408 567-1355 +roomNumber: 8420 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Melesa Kaypour,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melesa Kaypour +sn: Kaypour +description: This is Melesa Kaypour's description +facsimileTelephoneNumber: +1 818 202-1934 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 291-7142 +title: Associate Product Development Consultant +userPassword: Password1 +uid: KaypourM +givenName: Melesa +mail: KaypourM@cbf7358079f24e3ab0356b9f914cfc7f.bitwarden.com +carLicense: CKH7WU +departmentNumber: 9811 +employeeType: Employee +homePhone: +1 818 783-8092 +initials: M. K. +mobile: +1 818 768-2736 +pager: +1 818 961-1641 +roomNumber: 9069 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shoji Truelove,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shoji Truelove +sn: Truelove +description: This is Shoji Truelove's description +facsimileTelephoneNumber: +1 206 672-4476 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 206 704-7314 +title: Chief Janitorial Admin +userPassword: Password1 +uid: TruelovS +givenName: Shoji +mail: TruelovS@8240df43b5e045ccb33a1c30532dbedd.bitwarden.com +carLicense: QWG72H +departmentNumber: 7711 +employeeType: Contract +homePhone: +1 206 432-2249 +initials: S. T. +mobile: +1 206 417-2484 +pager: +1 206 932-1610 +roomNumber: 9627 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Turus Risto,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Turus Risto +sn: Risto +description: This is Turus Risto's description +facsimileTelephoneNumber: +1 206 942-3032 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 540-3399 +title: Supreme Management Artist +userPassword: Password1 +uid: RistoT +givenName: Turus +mail: RistoT@9d2ddb8397544898b83d629b995b3f24.bitwarden.com +carLicense: 79WTV9 +departmentNumber: 3187 +employeeType: Contract +homePhone: +1 206 754-6769 +initials: T. R. +mobile: +1 206 451-6765 +pager: +1 206 242-8764 +roomNumber: 9229 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Metrics Bartley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Metrics Bartley +sn: Bartley +description: This is Metrics Bartley's description +facsimileTelephoneNumber: +1 213 310-8450 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 131-5487 +title: Junior Payroll Figurehead +userPassword: Password1 +uid: BartleyM +givenName: Metrics +mail: BartleyM@23128e7ff9d145ae80543eb5e7da5669.bitwarden.com +carLicense: OIB9KO +departmentNumber: 4064 +employeeType: Employee +homePhone: +1 213 280-9319 +initials: M. B. +mobile: +1 213 337-3138 +pager: +1 213 747-5812 +roomNumber: 8357 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Calla Floysvik,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calla Floysvik +sn: Floysvik +description: This is Calla Floysvik's description +facsimileTelephoneNumber: +1 415 701-9381 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 283-1773 +title: Chief Janitorial Figurehead +userPassword: Password1 +uid: FloysviC +givenName: Calla +mail: FloysviC@a3b225e3f0d642fb9de7a9d591d3b8fc.bitwarden.com +carLicense: JG5WYE +departmentNumber: 3463 +employeeType: Normal +homePhone: +1 415 185-4321 +initials: C. F. +mobile: +1 415 387-7937 +pager: +1 415 578-2159 +roomNumber: 9312 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alfonzo Bnrsport +sn: Bnrsport +description: This is Alfonzo Bnrsport's description +facsimileTelephoneNumber: +1 206 828-4217 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 494-6936 +title: Chief Payroll Czar +userPassword: Password1 +uid: BnrsporA +givenName: Alfonzo +mail: BnrsporA@207f92af6bc444a9a508764b35dab916.bitwarden.com +carLicense: SSXDGS +departmentNumber: 8668 +employeeType: Contract +homePhone: +1 206 559-6290 +initials: A. B. +mobile: +1 206 963-9081 +pager: +1 206 996-7853 +roomNumber: 9565 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rakhuma Savarimuthu +sn: Savarimuthu +description: This is Rakhuma Savarimuthu's description +facsimileTelephoneNumber: +1 818 282-1657 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 782-9538 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: SavarimR +givenName: Rakhuma +mail: SavarimR@765c6bf8e6a844bd84fd3519331c09a2.bitwarden.com +carLicense: UB419F +departmentNumber: 5909 +employeeType: Contract +homePhone: +1 818 278-7422 +initials: R. S. +mobile: +1 818 419-5785 +pager: +1 818 649-8231 +roomNumber: 8911 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alparslan McAdams,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alparslan McAdams +sn: McAdams +description: This is Alparslan McAdams's description +facsimileTelephoneNumber: +1 510 394-2336 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 189-4068 +title: Supreme Management Pinhead +userPassword: Password1 +uid: McAdamsA +givenName: Alparslan +mail: McAdamsA@9cce2e5b95a34e48b64d619f2a9e3bd6.bitwarden.com +carLicense: A4O0L8 +departmentNumber: 7949 +employeeType: Employee +homePhone: +1 510 530-3330 +initials: A. M. +mobile: +1 510 469-5299 +pager: +1 510 174-4219 +roomNumber: 8424 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tej OSullivan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tej OSullivan +sn: OSullivan +description: This is Tej OSullivan's description +facsimileTelephoneNumber: +1 408 908-2911 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 687-7551 +title: Chief Payroll Czar +userPassword: Password1 +uid: OSullivT +givenName: Tej +mail: OSullivT@679bf1d9fa5d438b8807d8c8a658fd6b.bitwarden.com +carLicense: 91ROHY +departmentNumber: 7655 +employeeType: Employee +homePhone: +1 408 728-9113 +initials: T. O. +mobile: +1 408 758-8812 +pager: +1 408 478-4904 +roomNumber: 8211 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Melly Plourde,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melly Plourde +sn: Plourde +description: This is Melly Plourde's description +facsimileTelephoneNumber: +1 818 938-6560 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 245-1071 +title: Associate Peons Developer +userPassword: Password1 +uid: PlourdeM +givenName: Melly +mail: PlourdeM@55d6078545ee499ab423dc186ca21695.bitwarden.com +carLicense: VWP430 +departmentNumber: 9590 +employeeType: Contract +homePhone: +1 818 604-8969 +initials: M. P. +mobile: +1 818 803-9061 +pager: +1 818 443-3648 +roomNumber: 9592 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heike Mendelsohn +sn: Mendelsohn +description: This is Heike Mendelsohn's description +facsimileTelephoneNumber: +1 206 867-8171 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 206 256-8246 +title: Chief Janitorial Admin +userPassword: Password1 +uid: MendelsH +givenName: Heike +mail: MendelsH@c88c546a41dd403183cf489cf47f2715.bitwarden.com +carLicense: 9R59XO +departmentNumber: 3860 +employeeType: Normal +homePhone: +1 206 696-7951 +initials: H. M. +mobile: +1 206 566-8855 +pager: +1 206 993-8412 +roomNumber: 8913 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ara Coules,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ara Coules +sn: Coules +description: This is Ara Coules's description +facsimileTelephoneNumber: +1 510 199-3582 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 758-3155 +title: Junior Product Development Grunt +userPassword: Password1 +uid: CoulesA +givenName: Ara +mail: CoulesA@c643a761475a4a67b1e62fab24451a4d.bitwarden.com +carLicense: 8N8HPP +departmentNumber: 7373 +employeeType: Contract +homePhone: +1 510 417-4358 +initials: A. C. +mobile: +1 510 842-2144 +pager: +1 510 297-3878 +roomNumber: 8004 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacek Hagstrom +sn: Hagstrom +description: This is Jacek Hagstrom's description +facsimileTelephoneNumber: +1 804 334-5877 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 804 591-2092 +title: Chief Payroll Developer +userPassword: Password1 +uid: HagstroJ +givenName: Jacek +mail: HagstroJ@77209db2428f411d91371f32d860ae4c.bitwarden.com +carLicense: YCXU8V +departmentNumber: 7698 +employeeType: Normal +homePhone: +1 804 304-8713 +initials: J. H. +mobile: +1 804 150-1752 +pager: +1 804 395-1109 +roomNumber: 9056 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Heida Barnett,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heida Barnett +sn: Barnett +description: This is Heida Barnett's description +facsimileTelephoneNumber: +1 415 762-7494 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 610-5015 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: BarnettH +givenName: Heida +mail: BarnettH@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com +carLicense: 2YB6SS +departmentNumber: 6026 +employeeType: Contract +homePhone: +1 415 379-6280 +initials: H. B. +mobile: +1 415 759-9984 +pager: +1 415 470-3372 +roomNumber: 8072 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marylynne Wolski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marylynne Wolski +sn: Wolski +description: This is Marylynne Wolski's description +facsimileTelephoneNumber: +1 415 940-1781 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 572-4163 +title: Master Product Development Engineer +userPassword: Password1 +uid: WolskiM +givenName: Marylynne +mail: WolskiM@34211993f6a54dc18f00a71a05d87998.bitwarden.com +carLicense: 5NJF2J +departmentNumber: 2382 +employeeType: Employee +homePhone: +1 415 732-8752 +initials: M. W. +mobile: +1 415 736-1897 +pager: +1 415 630-3920 +roomNumber: 9806 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mellisa Cormier,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mellisa Cormier +sn: Cormier +description: This is Mellisa Cormier's description +facsimileTelephoneNumber: +1 206 951-6923 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 988-5349 +title: Junior Administrative Punk +userPassword: Password1 +uid: CormierM +givenName: Mellisa +mail: CormierM@defab017f9734cfab5b3fea4ed24112c.bitwarden.com +carLicense: HCE4DY +departmentNumber: 9727 +employeeType: Employee +homePhone: +1 206 850-7725 +initials: M. C. +mobile: +1 206 170-8500 +pager: +1 206 374-5345 +roomNumber: 9211 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Neely Schluter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neely Schluter +sn: Schluter +description: This is Neely Schluter's description +facsimileTelephoneNumber: +1 408 338-9121 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 345-4062 +title: Master Product Development Visionary +userPassword: Password1 +uid: SchluteN +givenName: Neely +mail: SchluteN@b4cdee1243de400699df8d563680e709.bitwarden.com +carLicense: BSXPAW +departmentNumber: 8959 +employeeType: Contract +homePhone: +1 408 384-9928 +initials: N. S. +mobile: +1 408 721-5522 +pager: +1 408 414-5207 +roomNumber: 9794 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dorelia Cohrs,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorelia Cohrs +sn: Cohrs +description: This is Dorelia Cohrs's description +facsimileTelephoneNumber: +1 415 929-3233 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 540-1780 +title: Associate Management Writer +userPassword: Password1 +uid: CohrsD +givenName: Dorelia +mail: CohrsD@36e3b9c15a4246d0b9f5619fbb566424.bitwarden.com +carLicense: LOPCU1 +departmentNumber: 9218 +employeeType: Normal +homePhone: +1 415 984-1361 +initials: D. C. +mobile: +1 415 267-2069 +pager: +1 415 271-9171 +roomNumber: 8154 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dede Fernald,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dede Fernald +sn: Fernald +description: This is Dede Fernald's description +facsimileTelephoneNumber: +1 206 152-6575 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 675-1888 +title: Junior Peons President +userPassword: Password1 +uid: FernaldD +givenName: Dede +mail: FernaldD@03076c5c8b8949f1af9c49c0d6d892b6.bitwarden.com +carLicense: LFA2OO +departmentNumber: 3767 +employeeType: Employee +homePhone: +1 206 470-4608 +initials: D. F. +mobile: +1 206 665-9623 +pager: +1 206 710-4436 +roomNumber: 8199 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Real Piitz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Real Piitz +sn: Piitz +description: This is Real Piitz's description +facsimileTelephoneNumber: +1 408 198-7941 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 408 233-6483 +title: Associate Product Testing President +userPassword: Password1 +uid: PiitzR +givenName: Real +mail: PiitzR@dab11b4d8bc0443d8cd54025f08f0682.bitwarden.com +carLicense: 3R82BI +departmentNumber: 6010 +employeeType: Employee +homePhone: +1 408 148-3574 +initials: R. P. +mobile: +1 408 967-6513 +pager: +1 408 947-4852 +roomNumber: 8649 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Petunia Croteau,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petunia Croteau +sn: Croteau +description: This is Petunia Croteau's description +facsimileTelephoneNumber: +1 408 569-5688 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 386-8169 +title: Junior Administrative Artist +userPassword: Password1 +uid: CroteauP +givenName: Petunia +mail: CroteauP@543e9d6f1baf4e398f4b35d8fd14d7df.bitwarden.com +carLicense: E5CDMP +departmentNumber: 7618 +employeeType: Contract +homePhone: +1 408 703-8795 +initials: P. C. +mobile: +1 408 390-7437 +pager: +1 408 144-5728 +roomNumber: 9329 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Haley Tsonos,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haley Tsonos +sn: Tsonos +description: This is Haley Tsonos's description +facsimileTelephoneNumber: +1 818 311-3827 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 476-7165 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: TsonosH +givenName: Haley +mail: TsonosH@ca737191dd6c4e499a75456baacb8a74.bitwarden.com +carLicense: 9JVUTJ +departmentNumber: 9657 +employeeType: Employee +homePhone: +1 818 642-8555 +initials: H. T. +mobile: +1 818 272-4028 +pager: +1 818 656-5771 +roomNumber: 8101 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hyacinth Hamner,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hyacinth Hamner +sn: Hamner +description: This is Hyacinth Hamner's description +facsimileTelephoneNumber: +1 408 224-1243 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 249-6017 +title: Associate Management Evangelist +userPassword: Password1 +uid: HamnerH +givenName: Hyacinth +mail: HamnerH@411a0caf6b524748b5bcc8d8176112b4.bitwarden.com +carLicense: K2FC2U +departmentNumber: 9218 +employeeType: Contract +homePhone: +1 408 927-7285 +initials: H. H. +mobile: +1 408 917-1424 +pager: +1 408 496-2085 +roomNumber: 9158 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Clemence Gardiner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clemence Gardiner +sn: Gardiner +description: This is Clemence Gardiner's description +facsimileTelephoneNumber: +1 415 576-8536 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 415 245-7637 +title: Chief Peons Vice President +userPassword: Password1 +uid: GardineC +givenName: Clemence +mail: GardineC@1c31600804664edcbc5e5ccaff471cf0.bitwarden.com +carLicense: GDEJ63 +departmentNumber: 5297 +employeeType: Employee +homePhone: +1 415 321-9787 +initials: C. G. +mobile: +1 415 787-4181 +pager: +1 415 427-5389 +roomNumber: 8075 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Francine Laurich,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francine Laurich +sn: Laurich +description: This is Francine Laurich's description +facsimileTelephoneNumber: +1 818 379-2771 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 818 407-7045 +title: Supreme Management Pinhead +userPassword: Password1 +uid: LaurichF +givenName: Francine +mail: LaurichF@d5c6232f07e54daabb55a10963c14dea.bitwarden.com +carLicense: 4L57MR +departmentNumber: 4847 +employeeType: Normal +homePhone: +1 818 424-1714 +initials: F. L. +mobile: +1 818 365-4332 +pager: +1 818 933-7932 +roomNumber: 8983 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Narrima Saucerman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Narrima Saucerman +sn: Saucerman +description: This is Narrima Saucerman's description +facsimileTelephoneNumber: +1 804 226-7621 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 232-1405 +title: Chief Peons Janitor +userPassword: Password1 +uid: SaucermN +givenName: Narrima +mail: SaucermN@483a67de96074cb9b0b7084bfe826405.bitwarden.com +carLicense: 5V3V09 +departmentNumber: 1381 +employeeType: Employee +homePhone: +1 804 676-4318 +initials: N. S. +mobile: +1 804 622-4248 +pager: +1 804 173-4346 +roomNumber: 8875 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Han Cozyn,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Han Cozyn +sn: Cozyn +description: This is Han Cozyn's description +facsimileTelephoneNumber: +1 213 934-1808 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 174-4556 +title: Master Product Testing Mascot +userPassword: Password1 +uid: CozynH +givenName: Han +mail: CozynH@62eff42d0f404cf7b0b018186ba6bdb5.bitwarden.com +carLicense: EPFFST +departmentNumber: 1190 +employeeType: Contract +homePhone: +1 213 146-8876 +initials: H. C. +mobile: +1 213 838-8186 +pager: +1 213 231-8211 +roomNumber: 9606 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chuck Dorr,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chuck Dorr +sn: Dorr +description: This is Chuck Dorr's description +facsimileTelephoneNumber: +1 213 351-8143 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 380-7296 +title: Associate Human Resources Visionary +userPassword: Password1 +uid: DorrC +givenName: Chuck +mail: DorrC@681d410e89ea46dbbb918431ab9e5e29.bitwarden.com +carLicense: 5UJQ18 +departmentNumber: 8765 +employeeType: Contract +homePhone: +1 213 121-2004 +initials: C. D. +mobile: +1 213 735-7580 +pager: +1 213 112-7880 +roomNumber: 8701 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sephira Dubreck +sn: Dubreck +description: This is Sephira Dubreck's description +facsimileTelephoneNumber: +1 213 853-4527 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 881-6893 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: DubreckS +givenName: Sephira +mail: DubreckS@d2e91f960afd4021a7949b2d591d1072.bitwarden.com +carLicense: JET9Y3 +departmentNumber: 7758 +employeeType: Contract +homePhone: +1 213 564-8981 +initials: S. D. +mobile: +1 213 588-3171 +pager: +1 213 532-2961 +roomNumber: 9932 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eleonora Hutt +sn: Hutt +description: This is Eleonora Hutt's description +facsimileTelephoneNumber: +1 804 918-3907 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 804 321-3568 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: HuttE +givenName: Eleonora +mail: HuttE@b8e727bc14df4a0daced5f490054e337.bitwarden.com +carLicense: DRJJNV +departmentNumber: 4908 +employeeType: Contract +homePhone: +1 804 829-9830 +initials: E. H. +mobile: +1 804 446-3202 +pager: +1 804 284-2100 +roomNumber: 9714 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Andre Ashworth,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andre Ashworth +sn: Ashworth +description: This is Andre Ashworth's description +facsimileTelephoneNumber: +1 818 365-1593 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 648-8403 +title: Supreme Management Writer +userPassword: Password1 +uid: AshwortA +givenName: Andre +mail: AshwortA@ab352c8f0fb84cc3a9ed7cae538f0a71.bitwarden.com +carLicense: 5NQNN2 +departmentNumber: 7644 +employeeType: Employee +homePhone: +1 818 248-6031 +initials: A. A. +mobile: +1 818 633-8458 +pager: +1 818 986-6915 +roomNumber: 8737 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Edin Kell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edin Kell +sn: Kell +description: This is Edin Kell's description +facsimileTelephoneNumber: +1 408 640-6573 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 731-6396 +title: Junior Product Development Visionary +userPassword: Password1 +uid: KellE +givenName: Edin +mail: KellE@f15475096e0d43418f4b3b20f6539fb3.bitwarden.com +carLicense: S5W5H8 +departmentNumber: 6969 +employeeType: Normal +homePhone: +1 408 512-7600 +initials: E. K. +mobile: +1 408 651-8306 +pager: +1 408 615-3209 +roomNumber: 9877 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Theresa Rendon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theresa Rendon +sn: Rendon +description: This is Theresa Rendon's description +facsimileTelephoneNumber: +1 818 190-6087 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 818 647-2021 +title: Junior Peons Punk +userPassword: Password1 +uid: RendonT +givenName: Theresa +mail: RendonT@9db63434a78e416392ae93e3976c1bfc.bitwarden.com +carLicense: XHTEH1 +departmentNumber: 5803 +employeeType: Employee +homePhone: +1 818 431-6040 +initials: T. R. +mobile: +1 818 142-8171 +pager: +1 818 483-8382 +roomNumber: 8677 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sriranjani Atl +sn: Atl +description: This is Sriranjani Atl's description +facsimileTelephoneNumber: +1 510 237-2584 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 293-8428 +title: Master Janitorial Dictator +userPassword: Password1 +uid: AtlS +givenName: Sriranjani +mail: AtlS@f33f81bcdd214dc799f298c784f94b9e.bitwarden.com +carLicense: H5R3MJ +departmentNumber: 3357 +employeeType: Employee +homePhone: +1 510 291-8949 +initials: S. A. +mobile: +1 510 158-9443 +pager: +1 510 497-1152 +roomNumber: 8558 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jacenta Byczko,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacenta Byczko +sn: Byczko +description: This is Jacenta Byczko's description +facsimileTelephoneNumber: +1 804 429-9007 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 503-6620 +title: Master Peons Architect +userPassword: Password1 +uid: ByczkoJ +givenName: Jacenta +mail: ByczkoJ@ee4903e98f36436eb410a6a5c9869ea3.bitwarden.com +carLicense: 14TRY7 +departmentNumber: 4255 +employeeType: Employee +homePhone: +1 804 274-5425 +initials: J. B. +mobile: +1 804 891-9466 +pager: +1 804 214-7470 +roomNumber: 9329 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cass Boehms,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cass Boehms +sn: Boehms +description: This is Cass Boehms's description +facsimileTelephoneNumber: +1 818 366-2725 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 580-8390 +title: Chief Management Director +userPassword: Password1 +uid: BoehmsC +givenName: Cass +mail: BoehmsC@9d1f7bcfce524784b93c42075dd94a6c.bitwarden.com +carLicense: VRKYP1 +departmentNumber: 7882 +employeeType: Contract +homePhone: +1 818 825-5651 +initials: C. B. +mobile: +1 818 739-6123 +pager: +1 818 151-9372 +roomNumber: 9443 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Melba Holvey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melba Holvey +sn: Holvey +description: This is Melba Holvey's description +facsimileTelephoneNumber: +1 213 224-7571 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 691-1029 +title: Chief Peons Madonna +userPassword: Password1 +uid: HolveyM +givenName: Melba +mail: HolveyM@1e91ce6746854cd6839980eca37c6276.bitwarden.com +carLicense: ULXTHE +departmentNumber: 6796 +employeeType: Employee +homePhone: +1 213 137-3684 +initials: M. H. +mobile: +1 213 307-5209 +pager: +1 213 435-2224 +roomNumber: 8465 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cam Tsakalis +sn: Tsakalis +description: This is Cam Tsakalis's description +facsimileTelephoneNumber: +1 804 312-5158 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 804 883-6913 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: TsakaliC +givenName: Cam +mail: TsakaliC@a9a16c4a0f7545639cb0982e970e6363.bitwarden.com +carLicense: 7G4J4W +departmentNumber: 3852 +employeeType: Employee +homePhone: +1 804 321-7892 +initials: C. T. +mobile: +1 804 838-6827 +pager: +1 804 314-5177 +roomNumber: 9589 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cristofaro Beland,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristofaro Beland +sn: Beland +description: This is Cristofaro Beland's description +facsimileTelephoneNumber: +1 408 934-3214 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 396-4461 +title: Supreme Management Grunt +userPassword: Password1 +uid: BelandC +givenName: Cristofaro +mail: BelandC@188fd969cdd04895b43683adfa5ef7c5.bitwarden.com +carLicense: U76X81 +departmentNumber: 5123 +employeeType: Normal +homePhone: +1 408 359-7936 +initials: C. B. +mobile: +1 408 719-7203 +pager: +1 408 372-4964 +roomNumber: 8280 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monteene Mezzoiuso +sn: Mezzoiuso +description: This is Monteene Mezzoiuso's description +facsimileTelephoneNumber: +1 408 844-2927 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 408 934-3207 +title: Master Administrative Warrior +userPassword: Password1 +uid: MezzoiuM +givenName: Monteene +mail: MezzoiuM@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com +carLicense: 3OM3WK +departmentNumber: 6086 +employeeType: Normal +homePhone: +1 408 986-7210 +initials: M. M. +mobile: +1 408 475-5194 +pager: +1 408 629-1729 +roomNumber: 8439 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Inam Ouzas,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inam Ouzas +sn: Ouzas +description: This is Inam Ouzas's description +facsimileTelephoneNumber: +1 510 763-4841 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 947-6668 +title: Master Payroll Assistant +userPassword: Password1 +uid: OuzasI +givenName: Inam +mail: OuzasI@8f2fce1e0aaf45f1b91b3f64b80ef5f2.bitwarden.com +carLicense: OF0070 +departmentNumber: 1814 +employeeType: Contract +homePhone: +1 510 876-2238 +initials: I. O. +mobile: +1 510 129-5695 +pager: +1 510 152-1514 +roomNumber: 8335 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blithe Pambianchi +sn: Pambianchi +description: This is Blithe Pambianchi's description +facsimileTelephoneNumber: +1 408 607-8088 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 584-8880 +title: Master Product Testing Warrior +userPassword: Password1 +uid: PambianB +givenName: Blithe +mail: PambianB@bbd1af679b0c4f5eb725bdbe4b2aee6a.bitwarden.com +carLicense: 4K9OTM +departmentNumber: 4074 +employeeType: Contract +homePhone: +1 408 607-7095 +initials: B. P. +mobile: +1 408 377-9479 +pager: +1 408 779-6678 +roomNumber: 8423 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Quang Austin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quang Austin +sn: Austin +description: This is Quang Austin's description +facsimileTelephoneNumber: +1 415 832-5114 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 592-8296 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: AustinQ +givenName: Quang +mail: AustinQ@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com +carLicense: PE7WQC +departmentNumber: 3881 +employeeType: Normal +homePhone: +1 415 424-8246 +initials: Q. A. +mobile: +1 415 592-1625 +pager: +1 415 295-2770 +roomNumber: 9606 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kassi Ottosson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kassi Ottosson +sn: Ottosson +description: This is Kassi Ottosson's description +facsimileTelephoneNumber: +1 510 313-8626 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 159-7441 +title: Master Product Development Punk +userPassword: Password1 +uid: OttossoK +givenName: Kassi +mail: OttossoK@e0ae386e8aba4e05af8962cf46a874a0.bitwarden.com +carLicense: YKI4AW +departmentNumber: 2894 +employeeType: Normal +homePhone: +1 510 233-3087 +initials: K. O. +mobile: +1 510 312-5473 +pager: +1 510 518-1944 +roomNumber: 8251 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Christian Bradlow,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christian Bradlow +sn: Bradlow +description: This is Christian Bradlow's description +facsimileTelephoneNumber: +1 415 680-5813 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 597-4742 +title: Chief Payroll Architect +userPassword: Password1 +uid: BradlowC +givenName: Christian +mail: BradlowC@bab890af02d045bcaf621cc90d0b2098.bitwarden.com +carLicense: Y0MRXI +departmentNumber: 7399 +employeeType: Contract +homePhone: +1 415 181-5297 +initials: C. B. +mobile: +1 415 320-2868 +pager: +1 415 774-1773 +roomNumber: 9836 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Azar Darnel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Azar Darnel +sn: Darnel +description: This is Azar Darnel's description +facsimileTelephoneNumber: +1 213 604-1557 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 943-1638 +title: Junior Peons Writer +userPassword: Password1 +uid: DarnelA +givenName: Azar +mail: DarnelA@b2518035c29e4c3b8b295e3c4a0f3c33.bitwarden.com +carLicense: U0HMFP +departmentNumber: 6145 +employeeType: Normal +homePhone: +1 213 136-1007 +initials: A. D. +mobile: +1 213 511-8656 +pager: +1 213 748-9013 +roomNumber: 8689 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Reza Reinboth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reza Reinboth +sn: Reinboth +description: This is Reza Reinboth's description +facsimileTelephoneNumber: +1 206 277-2357 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 206 355-6113 +title: Junior Janitorial Artist +userPassword: Password1 +uid: ReinbotR +givenName: Reza +mail: ReinbotR@3abf5dcbcc5646ed98709fb5a815b159.bitwarden.com +carLicense: L5819K +departmentNumber: 9870 +employeeType: Normal +homePhone: +1 206 658-2222 +initials: R. R. +mobile: +1 206 801-4877 +pager: +1 206 443-2076 +roomNumber: 9401 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Indira Dimitry,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Indira Dimitry +sn: Dimitry +description: This is Indira Dimitry's description +facsimileTelephoneNumber: +1 804 487-2777 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 872-4041 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: DimitryI +givenName: Indira +mail: DimitryI@615969db00524d14a21249f8a920880f.bitwarden.com +carLicense: 1XGKR1 +departmentNumber: 9453 +employeeType: Contract +homePhone: +1 804 839-2595 +initials: I. D. +mobile: +1 804 769-7199 +pager: +1 804 125-4515 +roomNumber: 9444 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Subhashini Freiwald,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subhashini Freiwald +sn: Freiwald +description: This is Subhashini Freiwald's description +facsimileTelephoneNumber: +1 818 823-7389 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 561-1971 +title: Chief Management Warrior +userPassword: Password1 +uid: FreiwalS +givenName: Subhashini +mail: FreiwalS@be9da34bc6794b9296b1c2babbc6f1c7.bitwarden.com +carLicense: QX8FQV +departmentNumber: 3215 +employeeType: Normal +homePhone: +1 818 412-3102 +initials: S. F. +mobile: +1 818 957-4586 +pager: +1 818 861-4293 +roomNumber: 8389 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Izzy Metherell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Izzy Metherell +sn: Metherell +description: This is Izzy Metherell's description +facsimileTelephoneNumber: +1 206 949-8778 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 788-2230 +title: Master Human Resources Consultant +userPassword: Password1 +uid: MethereI +givenName: Izzy +mail: MethereI@e5a8ff27d33a4796b9268d1fcb1eeeaf.bitwarden.com +carLicense: CD87MK +departmentNumber: 9722 +employeeType: Normal +homePhone: +1 206 904-6014 +initials: I. M. +mobile: +1 206 334-8707 +pager: +1 206 974-9098 +roomNumber: 9440 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rivy Wojtecki +sn: Wojtecki +description: This is Rivy Wojtecki's description +facsimileTelephoneNumber: +1 510 216-7261 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 832-2775 +title: Chief Product Development Architect +userPassword: Password1 +uid: WojteckR +givenName: Rivy +mail: WojteckR@15a66c25c5f240459bbc3d55fefe3a21.bitwarden.com +carLicense: 1DWPGW +departmentNumber: 1773 +employeeType: Contract +homePhone: +1 510 584-6371 +initials: R. W. +mobile: +1 510 792-4136 +pager: +1 510 228-4883 +roomNumber: 8744 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dreddy Willett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dreddy Willett +sn: Willett +description: This is Dreddy Willett's description +facsimileTelephoneNumber: +1 213 125-3709 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 819-4729 +title: Junior Management Visionary +userPassword: Password1 +uid: WillettD +givenName: Dreddy +mail: WillettD@541a9a67add74942af05ec9661f08230.bitwarden.com +carLicense: 5NKTYC +departmentNumber: 2261 +employeeType: Contract +homePhone: +1 213 787-5793 +initials: D. W. +mobile: +1 213 961-7558 +pager: +1 213 256-1155 +roomNumber: 8470 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Avis Benham,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avis Benham +sn: Benham +description: This is Avis Benham's description +facsimileTelephoneNumber: +1 818 425-5988 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 874-8979 +title: Junior Management Sales Rep +userPassword: Password1 +uid: BenhamA +givenName: Avis +mail: BenhamA@8ded8bbd82ce42aeaa0782da2c17da44.bitwarden.com +carLicense: HYITAX +departmentNumber: 2186 +employeeType: Normal +homePhone: +1 818 842-2825 +initials: A. B. +mobile: +1 818 152-3526 +pager: +1 818 448-3072 +roomNumber: 8967 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wilie Eva,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilie Eva +sn: Eva +description: This is Wilie Eva's description +facsimileTelephoneNumber: +1 206 995-8409 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 295-8403 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: EvaW +givenName: Wilie +mail: EvaW@b9fa5d9bc1554c279a35e716d782ab43.bitwarden.com +carLicense: 36G51N +departmentNumber: 3978 +employeeType: Normal +homePhone: +1 206 682-8179 +initials: W. E. +mobile: +1 206 359-1221 +pager: +1 206 915-2342 +roomNumber: 8400 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Zorine OHearn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zorine OHearn +sn: OHearn +description: This is Zorine OHearn's description +facsimileTelephoneNumber: +1 213 756-9236 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 160-1115 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: OHearnZ +givenName: Zorine +mail: OHearnZ@3d0ca046d5484a24beb101fc9ea74b59.bitwarden.com +carLicense: LBUIRC +departmentNumber: 3724 +employeeType: Employee +homePhone: +1 213 430-5318 +initials: Z. O. +mobile: +1 213 218-4072 +pager: +1 213 902-8649 +roomNumber: 9263 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Niek Salazar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niek Salazar +sn: Salazar +description: This is Niek Salazar's description +facsimileTelephoneNumber: +1 818 980-4422 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 927-2222 +title: Supreme Peons Manager +userPassword: Password1 +uid: SalazarN +givenName: Niek +mail: SalazarN@04448fada1ea4fa4b445ea9be1736993.bitwarden.com +carLicense: EIJNSE +departmentNumber: 6597 +employeeType: Normal +homePhone: +1 818 309-3969 +initials: N. S. +mobile: +1 818 741-1526 +pager: +1 818 939-1471 +roomNumber: 9407 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Prabir Bachynski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prabir Bachynski +sn: Bachynski +description: This is Prabir Bachynski's description +facsimileTelephoneNumber: +1 510 403-9055 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 100-7702 +title: Associate Management Manager +userPassword: Password1 +uid: BachynsP +givenName: Prabir +mail: BachynsP@33881fd6c18c4c30a4c1757346a78912.bitwarden.com +carLicense: NFNRER +departmentNumber: 9742 +employeeType: Normal +homePhone: +1 510 821-1757 +initials: P. B. +mobile: +1 510 187-7593 +pager: +1 510 426-3002 +roomNumber: 8344 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Steen Selchow,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steen Selchow +sn: Selchow +description: This is Steen Selchow's description +facsimileTelephoneNumber: +1 818 596-1302 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 818 641-6940 +title: Associate Peons Director +userPassword: Password1 +uid: SelchowS +givenName: Steen +mail: SelchowS@1d3f5eae43b5493f95ee42fa1458d39c.bitwarden.com +carLicense: CX7OB4 +departmentNumber: 7881 +employeeType: Normal +homePhone: +1 818 464-2827 +initials: S. S. +mobile: +1 818 511-9794 +pager: +1 818 520-2497 +roomNumber: 9620 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanja VanSchyndel +sn: VanSchyndel +description: This is Hanja VanSchyndel's description +facsimileTelephoneNumber: +1 818 291-5369 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 699-3620 +title: Associate Peons Grunt +userPassword: Password1 +uid: VanSchyH +givenName: Hanja +mail: VanSchyH@b742b209006e494cbb6f8a4e0b48b884.bitwarden.com +carLicense: H3Y4Y2 +departmentNumber: 8878 +employeeType: Employee +homePhone: +1 818 148-7604 +initials: H. V. +mobile: +1 818 742-9061 +pager: +1 818 694-7439 +roomNumber: 9922 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yannis Kowaleski +sn: Kowaleski +description: This is Yannis Kowaleski's description +facsimileTelephoneNumber: +1 213 474-1871 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 880-6676 +title: Chief Janitorial Madonna +userPassword: Password1 +uid: KowalesY +givenName: Yannis +mail: KowalesY@75db88f614404021a489793ab108bedb.bitwarden.com +carLicense: X7PVM8 +departmentNumber: 1354 +employeeType: Contract +homePhone: +1 213 422-8042 +initials: Y. K. +mobile: +1 213 328-7988 +pager: +1 213 102-6335 +roomNumber: 9528 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tessi Nagai,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tessi Nagai +sn: Nagai +description: This is Tessi Nagai's description +facsimileTelephoneNumber: +1 415 192-9010 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 415 558-1555 +title: Junior Payroll Vice President +userPassword: Password1 +uid: NagaiT +givenName: Tessi +mail: NagaiT@dc14108a33864343abea453a90202c78.bitwarden.com +carLicense: AEHE3L +departmentNumber: 6325 +employeeType: Contract +homePhone: +1 415 123-2307 +initials: T. N. +mobile: +1 415 989-5962 +pager: +1 415 341-4132 +roomNumber: 8025 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sande Lonsdale,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sande Lonsdale +sn: Lonsdale +description: This is Sande Lonsdale's description +facsimileTelephoneNumber: +1 818 890-4756 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 217-5430 +title: Associate Administrative Mascot +userPassword: Password1 +uid: LonsdalS +givenName: Sande +mail: LonsdalS@54d404ee0ed9466bae5e36b6d97997f9.bitwarden.com +carLicense: PCHRCH +departmentNumber: 6237 +employeeType: Contract +homePhone: +1 818 451-8409 +initials: S. L. +mobile: +1 818 833-7913 +pager: +1 818 741-9722 +roomNumber: 9426 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Euphemia Byer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Euphemia Byer +sn: Byer +description: This is Euphemia Byer's description +facsimileTelephoneNumber: +1 206 695-9480 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 206 501-9549 +title: Chief Administrative Grunt +userPassword: Password1 +uid: ByerE +givenName: Euphemia +mail: ByerE@6e645f68154e4e0a9f217d10cb782190.bitwarden.com +carLicense: D3BAIL +departmentNumber: 6609 +employeeType: Normal +homePhone: +1 206 326-7349 +initials: E. B. +mobile: +1 206 137-8362 +pager: +1 206 817-8345 +roomNumber: 9927 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jewell Samson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jewell Samson +sn: Samson +description: This is Jewell Samson's description +facsimileTelephoneNumber: +1 415 227-5865 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 810-6314 +title: Junior Management Mascot +userPassword: Password1 +uid: SamsonJ +givenName: Jewell +mail: SamsonJ@829d5713be204a9ab0a7f267371638c5.bitwarden.com +carLicense: NE6O93 +departmentNumber: 6722 +employeeType: Employee +homePhone: +1 415 196-3738 +initials: J. S. +mobile: +1 415 323-5600 +pager: +1 415 808-3999 +roomNumber: 8405 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bnrtor Turcotte +sn: Turcotte +description: This is Bnrtor Turcotte's description +facsimileTelephoneNumber: +1 510 116-5476 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 510 364-5610 +title: Junior Human Resources Czar +userPassword: Password1 +uid: TurcottB +givenName: Bnrtor +mail: TurcottB@a99084400fcf4b279e00215493abf581.bitwarden.com +carLicense: 7TJX1R +departmentNumber: 7959 +employeeType: Normal +homePhone: +1 510 721-3125 +initials: B. T. +mobile: +1 510 237-3711 +pager: +1 510 571-3138 +roomNumber: 8694 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Haley McMannen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haley McMannen +sn: McMannen +description: This is Haley McMannen's description +facsimileTelephoneNumber: +1 408 174-8364 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 489-7425 +title: Junior Payroll Artist +userPassword: Password1 +uid: McManneH +givenName: Haley +mail: McManneH@22471469e5a74d89b5185fdcb7a6b10d.bitwarden.com +carLicense: LNFQJN +departmentNumber: 7783 +employeeType: Contract +homePhone: +1 408 558-4799 +initials: H. M. +mobile: +1 408 126-7282 +pager: +1 408 838-3285 +roomNumber: 9985 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joyous Bessette,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joyous Bessette +sn: Bessette +description: This is Joyous Bessette's description +facsimileTelephoneNumber: +1 804 832-2705 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 138-6163 +title: Chief Product Development Visionary +userPassword: Password1 +uid: BessettJ +givenName: Joyous +mail: BessettJ@0106d5b2fef44588899b233f3fe1c5e8.bitwarden.com +carLicense: 2QP4QH +departmentNumber: 3150 +employeeType: Normal +homePhone: +1 804 925-5634 +initials: J. B. +mobile: +1 804 539-1135 +pager: +1 804 437-5292 +roomNumber: 9573 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emanuel Tupas,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emanuel Tupas +sn: Tupas +description: This is Emanuel Tupas's description +facsimileTelephoneNumber: +1 408 603-4738 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 442-6791 +title: Master Management Czar +userPassword: Password1 +uid: TupasE +givenName: Emanuel +mail: TupasE@ddf0e3f8901347a997696359d60088c4.bitwarden.com +carLicense: RFRKHQ +departmentNumber: 9729 +employeeType: Normal +homePhone: +1 408 255-8275 +initials: E. T. +mobile: +1 408 222-3795 +pager: +1 408 108-7560 +roomNumber: 9802 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nakina Ircmer +sn: Ircmer +description: This is Nakina Ircmer's description +facsimileTelephoneNumber: +1 415 504-6459 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 415 242-5773 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: IrcmerN +givenName: Nakina +mail: IrcmerN@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com +carLicense: EXY3CN +departmentNumber: 8327 +employeeType: Normal +homePhone: +1 415 940-3909 +initials: N. I. +mobile: +1 415 871-3833 +pager: +1 415 485-9235 +roomNumber: 8555 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terrence Vasarhelyi +sn: Vasarhelyi +description: This is Terrence Vasarhelyi's description +facsimileTelephoneNumber: +1 408 928-5410 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 287-1703 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: VasarheT +givenName: Terrence +mail: VasarheT@b2d8dc3ab10d41babd472bab4f40b9f8.bitwarden.com +carLicense: XKWT15 +departmentNumber: 2183 +employeeType: Normal +homePhone: +1 408 785-9163 +initials: T. V. +mobile: +1 408 575-3553 +pager: +1 408 828-3537 +roomNumber: 9119 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zeljko Tarasewicz +sn: Tarasewicz +description: This is Zeljko Tarasewicz's description +facsimileTelephoneNumber: +1 818 283-2291 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 818 251-4916 +title: Junior Payroll Dictator +userPassword: Password1 +uid: TarasewZ +givenName: Zeljko +mail: TarasewZ@00952e8f7e7647889172eabc088c9368.bitwarden.com +carLicense: MTJUSV +departmentNumber: 7123 +employeeType: Contract +homePhone: +1 818 681-9778 +initials: Z. T. +mobile: +1 818 724-1448 +pager: +1 818 195-2993 +roomNumber: 9096 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Janeczka Bautista,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janeczka Bautista +sn: Bautista +description: This is Janeczka Bautista's description +facsimileTelephoneNumber: +1 415 493-6871 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 172-5251 +title: Junior Product Development Technician +userPassword: Password1 +uid: BautistJ +givenName: Janeczka +mail: BautistJ@48f6e6bce8ac404d917503a6c43988fa.bitwarden.com +carLicense: JB4OIJ +departmentNumber: 8074 +employeeType: Normal +homePhone: +1 415 442-5665 +initials: J. B. +mobile: +1 415 633-3460 +pager: +1 415 140-9256 +roomNumber: 9188 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Alf Meunier,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alf Meunier +sn: Meunier +description: This is Alf Meunier's description +facsimileTelephoneNumber: +1 206 755-3310 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 471-9969 +title: Master Product Development Director +userPassword: Password1 +uid: MeunierA +givenName: Alf +mail: MeunierA@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com +carLicense: J7RJGJ +departmentNumber: 5754 +employeeType: Contract +homePhone: +1 206 877-6751 +initials: A. M. +mobile: +1 206 808-1764 +pager: +1 206 945-7630 +roomNumber: 9697 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dena Stevenson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dena Stevenson +sn: Stevenson +description: This is Dena Stevenson's description +facsimileTelephoneNumber: +1 804 879-7882 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 804 840-7959 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: StevensD +givenName: Dena +mail: StevensD@e9efa6e493c94e819a8af125d338efb9.bitwarden.com +carLicense: OM41JY +departmentNumber: 3114 +employeeType: Normal +homePhone: +1 804 374-4269 +initials: D. S. +mobile: +1 804 869-1129 +pager: +1 804 301-6184 +roomNumber: 9545 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Khalil Verch,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khalil Verch +sn: Verch +description: This is Khalil Verch's description +facsimileTelephoneNumber: +1 510 463-5042 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 142-5160 +title: Master Peons Mascot +userPassword: Password1 +uid: VerchK +givenName: Khalil +mail: VerchK@f9c0f71d487646dca3eac1c7c5deeeaf.bitwarden.com +carLicense: F7F5V0 +departmentNumber: 3967 +employeeType: Employee +homePhone: +1 510 277-5900 +initials: K. V. +mobile: +1 510 324-2803 +pager: +1 510 618-6943 +roomNumber: 8656 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adela Rios,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adela Rios +sn: Rios +description: This is Adela Rios's description +facsimileTelephoneNumber: +1 415 517-6226 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 293-6936 +title: Chief Payroll Admin +userPassword: Password1 +uid: RiosA +givenName: Adela +mail: RiosA@0b870e85b4df46a89fb7255ad1447634.bitwarden.com +carLicense: 23FO9E +departmentNumber: 3261 +employeeType: Normal +homePhone: +1 415 137-5451 +initials: A. R. +mobile: +1 415 717-2360 +pager: +1 415 976-7413 +roomNumber: 9871 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Roselle Sowry,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roselle Sowry +sn: Sowry +description: This is Roselle Sowry's description +facsimileTelephoneNumber: +1 408 788-3993 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 590-2115 +title: Associate Management Assistant +userPassword: Password1 +uid: SowryR +givenName: Roselle +mail: SowryR@67f0c4cb093d45e88db73275893310b8.bitwarden.com +carLicense: CBOU2K +departmentNumber: 3549 +employeeType: Normal +homePhone: +1 408 735-3474 +initials: R. S. +mobile: +1 408 441-6967 +pager: +1 408 153-8916 +roomNumber: 8119 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leonida Wenham,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonida Wenham +sn: Wenham +description: This is Leonida Wenham's description +facsimileTelephoneNumber: +1 818 408-7324 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 263-5804 +title: Chief Payroll Dictator +userPassword: Password1 +uid: WenhamL +givenName: Leonida +mail: WenhamL@ad261b7bb83c4b9b8809f461bc78f37f.bitwarden.com +carLicense: S8FWH7 +departmentNumber: 9592 +employeeType: Normal +homePhone: +1 818 735-7836 +initials: L. W. +mobile: +1 818 758-4469 +pager: +1 818 265-7833 +roomNumber: 8314 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Camille Balog,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camille Balog +sn: Balog +description: This is Camille Balog's description +facsimileTelephoneNumber: +1 510 258-2595 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 253-9980 +title: Supreme Peons Vice President +userPassword: Password1 +uid: BalogC +givenName: Camille +mail: BalogC@6b282dc55aa94d768c03263feaea873d.bitwarden.com +carLicense: BK0K65 +departmentNumber: 6954 +employeeType: Employee +homePhone: +1 510 467-7898 +initials: C. B. +mobile: +1 510 537-9347 +pager: +1 510 435-9290 +roomNumber: 9820 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margaretha Stegmueller +sn: Stegmueller +description: This is Margaretha Stegmueller's description +facsimileTelephoneNumber: +1 818 361-6011 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 312-5486 +title: Chief Administrative Assistant +userPassword: Password1 +uid: StegmueM +givenName: Margaretha +mail: StegmueM@7223d03a1da84d46925f52800fbe8b33.bitwarden.com +carLicense: 7GQ7SP +departmentNumber: 7102 +employeeType: Normal +homePhone: +1 818 100-6190 +initials: M. S. +mobile: +1 818 643-3467 +pager: +1 818 121-1722 +roomNumber: 9796 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lona Tuttle,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lona Tuttle +sn: Tuttle +description: This is Lona Tuttle's description +facsimileTelephoneNumber: +1 408 127-7915 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 763-1265 +title: Chief Payroll Warrior +userPassword: Password1 +uid: TuttleL +givenName: Lona +mail: TuttleL@2fba4efbb4b44dbe8c7dc5c682d67dce.bitwarden.com +carLicense: R5G1TB +departmentNumber: 1769 +employeeType: Contract +homePhone: +1 408 542-4495 +initials: L. T. +mobile: +1 408 599-5643 +pager: +1 408 971-5462 +roomNumber: 8318 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ryszard Dack,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ryszard Dack +sn: Dack +description: This is Ryszard Dack's description +facsimileTelephoneNumber: +1 818 975-8531 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 210-5735 +title: Master Janitorial Dictator +userPassword: Password1 +uid: DackR +givenName: Ryszard +mail: DackR@ab43f8d0eb5a4fa69395019fc76ff8cf.bitwarden.com +carLicense: HSU4FS +departmentNumber: 9349 +employeeType: Contract +homePhone: +1 818 495-4323 +initials: R. D. +mobile: +1 818 273-1591 +pager: +1 818 628-5893 +roomNumber: 8645 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anastassia Hollingsworth +sn: Hollingsworth +description: This is Anastassia Hollingsworth's description +facsimileTelephoneNumber: +1 408 420-9588 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 408 885-7675 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: HollingA +givenName: Anastassia +mail: HollingA@063f46f6e3c34f628dc59cd54e082665.bitwarden.com +carLicense: 0FTIJR +departmentNumber: 7452 +employeeType: Employee +homePhone: +1 408 256-5247 +initials: A. H. +mobile: +1 408 837-4465 +pager: +1 408 962-5556 +roomNumber: 9198 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Channa Bergeron,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Channa Bergeron +sn: Bergeron +description: This is Channa Bergeron's description +facsimileTelephoneNumber: +1 818 702-9438 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 414-3936 +title: Supreme Administrative Punk +userPassword: Password1 +uid: BergeroC +givenName: Channa +mail: BergeroC@2f0ef4b1759e41b483f68723f29c3b29.bitwarden.com +carLicense: KEKY6J +departmentNumber: 4907 +employeeType: Employee +homePhone: +1 818 279-1943 +initials: C. B. +mobile: +1 818 241-3068 +pager: +1 818 998-1557 +roomNumber: 9622 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lurleen Balgalvis +sn: Balgalvis +description: This is Lurleen Balgalvis's description +facsimileTelephoneNumber: +1 510 211-3333 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 222-1694 +title: Junior Payroll Punk +userPassword: Password1 +uid: BalgalvL +givenName: Lurleen +mail: BalgalvL@44f2ec4b07a84206abba4026497fde27.bitwarden.com +carLicense: OQ8R33 +departmentNumber: 3947 +employeeType: Employee +homePhone: +1 510 345-5768 +initials: L. B. +mobile: +1 510 237-2751 +pager: +1 510 204-9818 +roomNumber: 9297 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angelie Gorhum +sn: Gorhum +description: This is Angelie Gorhum's description +facsimileTelephoneNumber: +1 415 353-2757 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 156-8156 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: GorhumA +givenName: Angelie +mail: GorhumA@aad5dc78feef4ac1b9b7f52c8e200ee3.bitwarden.com +carLicense: 1WAB7M +departmentNumber: 9741 +employeeType: Normal +homePhone: +1 415 892-3861 +initials: A. G. +mobile: +1 415 836-6702 +pager: +1 415 929-1930 +roomNumber: 8217 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dannie Leth,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dannie Leth +sn: Leth +description: This is Dannie Leth's description +facsimileTelephoneNumber: +1 510 366-5029 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 445-7026 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: LethD +givenName: Dannie +mail: LethD@341c2a7aa79d4aa1aa97b332acebc155.bitwarden.com +carLicense: EYSGKY +departmentNumber: 4575 +employeeType: Normal +homePhone: +1 510 263-4017 +initials: D. L. +mobile: +1 510 555-5892 +pager: +1 510 736-6129 +roomNumber: 9799 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Noell McWalters,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noell McWalters +sn: McWalters +description: This is Noell McWalters's description +facsimileTelephoneNumber: +1 804 513-5712 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 797-9622 +title: Chief Administrative Writer +userPassword: Password1 +uid: McWalteN +givenName: Noell +mail: McWalteN@435172b6be714733b4c4e8a61d6bf70e.bitwarden.com +carLicense: E3USW9 +departmentNumber: 3435 +employeeType: Employee +homePhone: +1 804 649-9298 +initials: N. M. +mobile: +1 804 486-2409 +pager: +1 804 693-4445 +roomNumber: 8258 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ally Viehweg,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ally Viehweg +sn: Viehweg +description: This is Ally Viehweg's description +facsimileTelephoneNumber: +1 206 332-1650 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 907-4567 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: ViehwegA +givenName: Ally +mail: ViehwegA@080a543860d941fdbfeb0d224af903ae.bitwarden.com +carLicense: NVJDAB +departmentNumber: 7163 +employeeType: Normal +homePhone: +1 206 621-8723 +initials: A. V. +mobile: +1 206 582-4219 +pager: +1 206 709-4959 +roomNumber: 8489 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranvir Ferenz +sn: Ferenz +description: This is Ranvir Ferenz's description +facsimileTelephoneNumber: +1 804 583-3555 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 417-5707 +title: Master Human Resources Warrior +userPassword: Password1 +uid: FerenzR +givenName: Ranvir +mail: FerenzR@28133a838b684d2e99a29d650ff2c42d.bitwarden.com +carLicense: QHAA6A +departmentNumber: 5609 +employeeType: Contract +homePhone: +1 804 711-9203 +initials: R. F. +mobile: +1 804 902-7489 +pager: +1 804 279-3226 +roomNumber: 8029 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elena Leima,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elena Leima +sn: Leima +description: This is Elena Leima's description +facsimileTelephoneNumber: +1 510 474-6193 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 524-5054 +title: Chief Administrative Stooge +userPassword: Password1 +uid: LeimaE +givenName: Elena +mail: LeimaE@1461123b615643b9b7c6f81f4c511488.bitwarden.com +carLicense: GX7HRH +departmentNumber: 2171 +employeeType: Normal +homePhone: +1 510 537-8375 +initials: E. L. +mobile: +1 510 735-5281 +pager: +1 510 734-1292 +roomNumber: 9468 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Manny Grau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manny Grau +sn: Grau +description: This is Manny Grau's description +facsimileTelephoneNumber: +1 213 409-5193 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 136-2447 +title: Associate Payroll Assistant +userPassword: Password1 +uid: GrauM +givenName: Manny +mail: GrauM@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com +carLicense: Y49WH9 +departmentNumber: 9891 +employeeType: Normal +homePhone: +1 213 693-3540 +initials: M. G. +mobile: +1 213 579-8159 +pager: +1 213 280-6560 +roomNumber: 9867 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cornie Hobgood,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cornie Hobgood +sn: Hobgood +description: This is Cornie Hobgood's description +facsimileTelephoneNumber: +1 408 777-5722 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 984-8364 +title: Master Payroll Writer +userPassword: Password1 +uid: HobgoodC +givenName: Cornie +mail: HobgoodC@a5186e33e69446d1bb74fa25b1e42650.bitwarden.com +carLicense: UTGUEE +departmentNumber: 5479 +employeeType: Contract +homePhone: +1 408 541-7772 +initials: C. H. +mobile: +1 408 669-8572 +pager: +1 408 293-2968 +roomNumber: 9641 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kirsti Sridaran,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirsti Sridaran +sn: Sridaran +description: This is Kirsti Sridaran's description +facsimileTelephoneNumber: +1 213 465-8799 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 119-6188 +title: Master Peons Janitor +userPassword: Password1 +uid: SridaraK +givenName: Kirsti +mail: SridaraK@ca8f4832ccb34eecb660b444c29c036c.bitwarden.com +carLicense: E65UPY +departmentNumber: 9808 +employeeType: Employee +homePhone: +1 213 346-6217 +initials: K. S. +mobile: +1 213 850-9425 +pager: +1 213 835-9188 +roomNumber: 9552 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cynthya Ganness,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cynthya Ganness +sn: Ganness +description: This is Cynthya Ganness's description +facsimileTelephoneNumber: +1 510 817-4588 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 510 938-8467 +title: Master Product Development Artist +userPassword: Password1 +uid: GannessC +givenName: Cynthya +mail: GannessC@4132afcbe852461d84c4e04897cbd70a.bitwarden.com +carLicense: MKDR9A +departmentNumber: 4216 +employeeType: Normal +homePhone: +1 510 684-1079 +initials: C. G. +mobile: +1 510 230-9047 +pager: +1 510 898-2775 +roomNumber: 8085 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vilhelmina Gabe +sn: Gabe +description: This is Vilhelmina Gabe's description +facsimileTelephoneNumber: +1 206 534-9494 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 677-3746 +title: Junior Janitorial President +userPassword: Password1 +uid: GabeV +givenName: Vilhelmina +mail: GabeV@8a518eca58904534b05396f1b7366d38.bitwarden.com +carLicense: EPAI94 +departmentNumber: 1995 +employeeType: Normal +homePhone: +1 206 829-4159 +initials: V. G. +mobile: +1 206 226-7610 +pager: +1 206 821-1620 +roomNumber: 9278 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Becky Bento,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Becky Bento +sn: Bento +description: This is Becky Bento's description +facsimileTelephoneNumber: +1 510 638-4192 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 847-5946 +title: Master Human Resources Developer +userPassword: Password1 +uid: BentoB +givenName: Becky +mail: BentoB@201177ec03f246b1b586746301578c04.bitwarden.com +carLicense: OOEJ6X +departmentNumber: 9356 +employeeType: Contract +homePhone: +1 510 513-6198 +initials: B. B. +mobile: +1 510 632-6118 +pager: +1 510 247-6717 +roomNumber: 9834 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Murial Richardson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Murial Richardson +sn: Richardson +description: This is Murial Richardson's description +facsimileTelephoneNumber: +1 804 977-4491 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 806-5139 +title: Supreme Product Testing Evangelist +userPassword: Password1 +uid: RichardM +givenName: Murial +mail: RichardM@a6096cd0d9c54e7cb57ad3b57e445595.bitwarden.com +carLicense: FEYB1Y +departmentNumber: 8726 +employeeType: Employee +homePhone: +1 804 417-7543 +initials: M. R. +mobile: +1 804 595-1046 +pager: +1 804 933-9555 +roomNumber: 8940 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ashok Ugwa,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashok Ugwa +sn: Ugwa +description: This is Ashok Ugwa's description +facsimileTelephoneNumber: +1 415 162-8979 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 764-5406 +title: Supreme Peons Vice President +userPassword: Password1 +uid: UgwaA +givenName: Ashok +mail: UgwaA@33b7fa6f25dd4387a5408d5f26b794a1.bitwarden.com +carLicense: HD93A1 +departmentNumber: 7464 +employeeType: Normal +homePhone: +1 415 422-4504 +initials: A. U. +mobile: +1 415 163-5680 +pager: +1 415 744-3614 +roomNumber: 9502 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sarena Devgon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarena Devgon +sn: Devgon +description: This is Sarena Devgon's description +facsimileTelephoneNumber: +1 213 926-6707 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 269-9927 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: DevgonS +givenName: Sarena +mail: DevgonS@5f9301f0062b42de89716ec7e410b165.bitwarden.com +carLicense: 3FSUOL +departmentNumber: 7291 +employeeType: Employee +homePhone: +1 213 262-6905 +initials: S. D. +mobile: +1 213 171-3867 +pager: +1 213 875-2839 +roomNumber: 9892 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Valeria Bracewell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valeria Bracewell +sn: Bracewell +description: This is Valeria Bracewell's description +facsimileTelephoneNumber: +1 818 604-5715 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 818 741-1599 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: BraceweV +givenName: Valeria +mail: BraceweV@32cbfafe741b446491d67cea0d5c681a.bitwarden.com +carLicense: CMXOMY +departmentNumber: 5369 +employeeType: Employee +homePhone: +1 818 719-4920 +initials: V. B. +mobile: +1 818 437-3368 +pager: +1 818 605-3696 +roomNumber: 9687 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cristina Ard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristina Ard +sn: Ard +description: This is Cristina Ard's description +facsimileTelephoneNumber: +1 804 938-9032 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 804 458-7601 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: ArdC +givenName: Cristina +mail: ArdC@4a1e113d03e64aa594660480aad5198e.bitwarden.com +carLicense: OWKE2J +departmentNumber: 1123 +employeeType: Contract +homePhone: +1 804 378-2649 +initials: C. A. +mobile: +1 804 898-4445 +pager: +1 804 285-9647 +roomNumber: 8866 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Katrinka Harville,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katrinka Harville +sn: Harville +description: This is Katrinka Harville's description +facsimileTelephoneNumber: +1 206 618-1115 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 537-5777 +title: Chief Administrative Mascot +userPassword: Password1 +uid: HarvillK +givenName: Katrinka +mail: HarvillK@39974c25ecbe436f9e77637f71866303.bitwarden.com +carLicense: CQHET9 +departmentNumber: 6578 +employeeType: Normal +homePhone: +1 206 335-6733 +initials: K. H. +mobile: +1 206 563-8956 +pager: +1 206 542-4562 +roomNumber: 9767 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Colette Chern,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colette Chern +sn: Chern +description: This is Colette Chern's description +facsimileTelephoneNumber: +1 818 313-5426 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 818 409-7678 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: ChernC +givenName: Colette +mail: ChernC@750387c73d1b4103872918e3d3e93c32.bitwarden.com +carLicense: 44LUWP +departmentNumber: 6593 +employeeType: Employee +homePhone: +1 818 931-4897 +initials: C. C. +mobile: +1 818 891-9843 +pager: +1 818 221-7698 +roomNumber: 8588 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=PohSoon Mellor,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PohSoon Mellor +sn: Mellor +description: This is PohSoon Mellor's description +facsimileTelephoneNumber: +1 408 506-9165 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 408 315-5847 +title: Master Administrative Grunt +userPassword: Password1 +uid: MellorP +givenName: PohSoon +mail: MellorP@41bf97a0f83643ecb5c3ae7dea3fc6f2.bitwarden.com +carLicense: 4RLAV0 +departmentNumber: 6185 +employeeType: Contract +homePhone: +1 408 493-4592 +initials: P. M. +mobile: +1 408 757-7511 +pager: +1 408 817-8458 +roomNumber: 8477 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheileagh deElizalde +sn: deElizalde +description: This is Sheileagh deElizalde's description +facsimileTelephoneNumber: +1 818 482-3659 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 665-8133 +title: Junior Product Development Madonna +userPassword: Password1 +uid: deElizaS +givenName: Sheileagh +mail: deElizaS@f414860515324b3cad4d00dd4f44cc65.bitwarden.com +carLicense: UNLT7E +departmentNumber: 9175 +employeeType: Contract +homePhone: +1 818 523-9179 +initials: S. d. +mobile: +1 818 174-6475 +pager: +1 818 563-6827 +roomNumber: 8939 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Reg Mou,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reg Mou +sn: Mou +description: This is Reg Mou's description +facsimileTelephoneNumber: +1 818 608-8518 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 967-2956 +title: Junior Payroll Architect +userPassword: Password1 +uid: MouR +givenName: Reg +mail: MouR@44154c0b8f05440cb2dfceffbfdfaf5f.bitwarden.com +carLicense: 2R6IKX +departmentNumber: 1471 +employeeType: Contract +homePhone: +1 818 370-6821 +initials: R. M. +mobile: +1 818 114-4514 +pager: +1 818 282-5402 +roomNumber: 9932 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Flor Fong,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flor Fong +sn: Fong +description: This is Flor Fong's description +facsimileTelephoneNumber: +1 213 716-6140 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 462-4559 +title: Chief Human Resources Figurehead +userPassword: Password1 +uid: FongF +givenName: Flor +mail: FongF@4440d5a8c29244aaa65d7ce99130f973.bitwarden.com +carLicense: MJ4AVA +departmentNumber: 9328 +employeeType: Contract +homePhone: +1 213 328-2426 +initials: F. F. +mobile: +1 213 520-3731 +pager: +1 213 587-1229 +roomNumber: 8157 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Will Imbemba,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Will Imbemba +sn: Imbemba +description: This is Will Imbemba's description +facsimileTelephoneNumber: +1 213 426-1881 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 213 279-1309 +title: Chief Human Resources Developer +userPassword: Password1 +uid: ImbembaW +givenName: Will +mail: ImbembaW@8ec725a0b25640da9e4f5b4c8838762a.bitwarden.com +carLicense: A6MSRF +departmentNumber: 8801 +employeeType: Normal +homePhone: +1 213 745-2025 +initials: W. I. +mobile: +1 213 980-9434 +pager: +1 213 461-6002 +roomNumber: 8468 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Serene Lindquist,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Serene Lindquist +sn: Lindquist +description: This is Serene Lindquist's description +facsimileTelephoneNumber: +1 804 701-8782 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 763-5854 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: LindquiS +givenName: Serene +mail: LindquiS@d323371cf0d149c19d396f6a749e3098.bitwarden.com +carLicense: OLYQ74 +departmentNumber: 4094 +employeeType: Employee +homePhone: +1 804 608-2069 +initials: S. L. +mobile: +1 804 103-8984 +pager: +1 804 324-3389 +roomNumber: 9454 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joeann Upton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joeann Upton +sn: Upton +description: This is Joeann Upton's description +facsimileTelephoneNumber: +1 804 132-7273 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 810-4492 +title: Master Peons Czar +userPassword: Password1 +uid: UptonJ +givenName: Joeann +mail: UptonJ@6f161c0885be4a50be1e5e174b0c967a.bitwarden.com +carLicense: TUJ3BV +departmentNumber: 2273 +employeeType: Contract +homePhone: +1 804 929-3552 +initials: J. U. +mobile: +1 804 653-7633 +pager: +1 804 691-8566 +roomNumber: 8523 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fariba Cowell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fariba Cowell +sn: Cowell +description: This is Fariba Cowell's description +facsimileTelephoneNumber: +1 818 765-2970 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 818 267-1146 +title: Supreme Peons Mascot +userPassword: Password1 +uid: CowellF +givenName: Fariba +mail: CowellF@727c241675fb4155a37dd1e11418c186.bitwarden.com +carLicense: 3654WS +departmentNumber: 8876 +employeeType: Employee +homePhone: +1 818 466-7171 +initials: F. C. +mobile: +1 818 743-2511 +pager: +1 818 982-6748 +roomNumber: 9753 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Annadiane Meijer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annadiane Meijer +sn: Meijer +description: This is Annadiane Meijer's description +facsimileTelephoneNumber: +1 408 570-3429 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 533-7194 +title: Master Payroll Admin +userPassword: Password1 +uid: MeijerA +givenName: Annadiane +mail: MeijerA@123c99e30f8149cea0d20a1c6360de45.bitwarden.com +carLicense: I9YLU0 +departmentNumber: 7353 +employeeType: Contract +homePhone: +1 408 565-3081 +initials: A. M. +mobile: +1 408 677-7009 +pager: +1 408 990-9423 +roomNumber: 8511 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cleo Mgmt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cleo Mgmt +sn: Mgmt +description: This is Cleo Mgmt's description +facsimileTelephoneNumber: +1 213 297-7952 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 362-9011 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: MgmtC +givenName: Cleo +mail: MgmtC@33e8933bc7494a68acd4251758e509d3.bitwarden.com +carLicense: O8IH24 +departmentNumber: 1036 +employeeType: Contract +homePhone: +1 213 453-1968 +initials: C. M. +mobile: +1 213 661-9444 +pager: +1 213 897-3699 +roomNumber: 9950 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ferne Finane,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ferne Finane +sn: Finane +description: This is Ferne Finane's description +facsimileTelephoneNumber: +1 408 617-7329 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 806-7721 +title: Associate Payroll Madonna +userPassword: Password1 +uid: FinaneF +givenName: Ferne +mail: FinaneF@85922018edea47b985151236684ae904.bitwarden.com +carLicense: JOS9GC +departmentNumber: 6409 +employeeType: Normal +homePhone: +1 408 120-8041 +initials: F. F. +mobile: +1 408 178-6480 +pager: +1 408 424-8304 +roomNumber: 8415 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanBernard Ficco +sn: Ficco +description: This is JeanBernard Ficco's description +facsimileTelephoneNumber: +1 408 444-6112 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 890-7348 +title: Chief Product Development Mascot +userPassword: Password1 +uid: FiccoJ +givenName: JeanBernard +mail: FiccoJ@b6e4c56ef12d46659a7adc74b2b4e7b7.bitwarden.com +carLicense: TCVPSV +departmentNumber: 7510 +employeeType: Normal +homePhone: +1 408 100-9033 +initials: J. F. +mobile: +1 408 497-6077 +pager: +1 408 171-8208 +roomNumber: 8204 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elisabetta Angell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elisabetta Angell +sn: Angell +description: This is Elisabetta Angell's description +facsimileTelephoneNumber: +1 206 860-8313 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 985-2134 +title: Associate Administrative Mascot +userPassword: Password1 +uid: AngellE +givenName: Elisabetta +mail: AngellE@4466c387ca38420ebdc497ef8de08842.bitwarden.com +carLicense: 675KKI +departmentNumber: 6313 +employeeType: Employee +homePhone: +1 206 644-4743 +initials: E. A. +mobile: +1 206 770-7378 +pager: +1 206 970-9244 +roomNumber: 9300 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Me Womack,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Me Womack +sn: Womack +description: This is Me Womack's description +facsimileTelephoneNumber: +1 510 155-1530 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 532-6764 +title: Supreme Payroll Architect +userPassword: Password1 +uid: WomackM +givenName: Me +mail: WomackM@0812c60db2284153af1913e30a97f907.bitwarden.com +carLicense: U71W64 +departmentNumber: 7583 +employeeType: Contract +homePhone: +1 510 151-4223 +initials: M. W. +mobile: +1 510 995-4564 +pager: +1 510 757-2658 +roomNumber: 9012 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Randie Takata,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randie Takata +sn: Takata +description: This is Randie Takata's description +facsimileTelephoneNumber: +1 415 789-5145 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 304-6146 +title: Chief Payroll Dictator +userPassword: Password1 +uid: TakataR +givenName: Randie +mail: TakataR@7be22f7ee9eb41bbba87c747f0e4e97d.bitwarden.com +carLicense: J6282M +departmentNumber: 6362 +employeeType: Contract +homePhone: +1 415 726-3409 +initials: R. T. +mobile: +1 415 792-9072 +pager: +1 415 356-5135 +roomNumber: 8102 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Birgitte Marshall,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Birgitte Marshall +sn: Marshall +description: This is Birgitte Marshall's description +facsimileTelephoneNumber: +1 818 768-2315 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 435-2451 +title: Junior Payroll Developer +userPassword: Password1 +uid: MarshalB +givenName: Birgitte +mail: MarshalB@afde3113416043d98395556c73711549.bitwarden.com +carLicense: 2YCOO3 +departmentNumber: 4981 +employeeType: Normal +homePhone: +1 818 783-1419 +initials: B. M. +mobile: +1 818 711-5748 +pager: +1 818 628-5192 +roomNumber: 8505 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorita Pilon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorita Pilon +sn: Pilon +description: This is Lorita Pilon's description +facsimileTelephoneNumber: +1 206 619-5477 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 436-2853 +title: Associate Payroll Mascot +userPassword: Password1 +uid: PilonL +givenName: Lorita +mail: PilonL@e442907aab1c4de2a3d2eb6b7fab8ddf.bitwarden.com +carLicense: PEYHT5 +departmentNumber: 3460 +employeeType: Contract +homePhone: +1 206 348-1368 +initials: L. P. +mobile: +1 206 926-4366 +pager: +1 206 883-3740 +roomNumber: 9750 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ind Brindley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ind Brindley +sn: Brindley +description: This is Ind Brindley's description +facsimileTelephoneNumber: +1 408 349-1296 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 938-5880 +title: Junior Peons Stooge +userPassword: Password1 +uid: BrindleI +givenName: Ind +mail: BrindleI@b472332785454ae6b007bcbe058ef6e6.bitwarden.com +carLicense: JN0SEA +departmentNumber: 3042 +employeeType: Employee +homePhone: +1 408 309-4279 +initials: I. B. +mobile: +1 408 995-3448 +pager: +1 408 608-8589 +roomNumber: 9093 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gaal Ugwa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaal Ugwa +sn: Ugwa +description: This is Gaal Ugwa's description +facsimileTelephoneNumber: +1 206 295-5976 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 976-3718 +title: Junior Payroll Madonna +userPassword: Password1 +uid: UgwaG +givenName: Gaal +mail: UgwaG@a1e6ebe78e6e49b2afcf7ed11f908644.bitwarden.com +carLicense: NH4MCV +departmentNumber: 4780 +employeeType: Employee +homePhone: +1 206 725-1878 +initials: G. U. +mobile: +1 206 714-3935 +pager: +1 206 261-1593 +roomNumber: 8924 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tilda Sharratt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilda Sharratt +sn: Sharratt +description: This is Tilda Sharratt's description +facsimileTelephoneNumber: +1 804 514-1143 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 689-8279 +title: Supreme Payroll Consultant +userPassword: Password1 +uid: SharratT +givenName: Tilda +mail: SharratT@aadd895e8a7f4326b9573a1143995b88.bitwarden.com +carLicense: JXVFM7 +departmentNumber: 7869 +employeeType: Contract +homePhone: +1 804 125-5432 +initials: T. S. +mobile: +1 804 936-6169 +pager: +1 804 211-2056 +roomNumber: 9062 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yueping Kardomateas,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yueping Kardomateas +sn: Kardomateas +description: This is Yueping Kardomateas's description +facsimileTelephoneNumber: +1 213 199-6155 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 852-4371 +title: Supreme Peons Technician +userPassword: Password1 +uid: KardomaY +givenName: Yueping +mail: KardomaY@22acfb768c09448b9b9c3d7bd8e3a389.bitwarden.com +carLicense: DI54HQ +departmentNumber: 9493 +employeeType: Contract +homePhone: +1 213 743-5320 +initials: Y. K. +mobile: +1 213 634-9172 +pager: +1 213 354-1205 +roomNumber: 8338 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bela Plaisance,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bela Plaisance +sn: Plaisance +description: This is Bela Plaisance's description +facsimileTelephoneNumber: +1 213 520-3711 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 213 489-9180 +title: Chief Product Development Punk +userPassword: Password1 +uid: PlaisanB +givenName: Bela +mail: PlaisanB@af7402077fba4129bbcd03f9bf068e4f.bitwarden.com +carLicense: UU0XL0 +departmentNumber: 7686 +employeeType: Normal +homePhone: +1 213 979-9465 +initials: B. P. +mobile: +1 213 980-6406 +pager: +1 213 162-9858 +roomNumber: 8215 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Carlen Privitera,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlen Privitera +sn: Privitera +description: This is Carlen Privitera's description +facsimileTelephoneNumber: +1 408 995-1320 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 420-9316 +title: Master Payroll Evangelist +userPassword: Password1 +uid: PriviteC +givenName: Carlen +mail: PriviteC@01412eb858be4efb9cf7976be214a30b.bitwarden.com +carLicense: 47YK2H +departmentNumber: 2549 +employeeType: Contract +homePhone: +1 408 368-8788 +initials: C. P. +mobile: +1 408 269-3261 +pager: +1 408 145-4816 +roomNumber: 8863 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Survey Vanta,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Survey Vanta +sn: Vanta +description: This is Survey Vanta's description +facsimileTelephoneNumber: +1 818 447-5849 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 282-6056 +title: Supreme Peons Developer +userPassword: Password1 +uid: VantaS +givenName: Survey +mail: VantaS@d4ad583ecaae406097e581a7aec5a780.bitwarden.com +carLicense: QBYUH2 +departmentNumber: 6346 +employeeType: Contract +homePhone: +1 818 989-9594 +initials: S. V. +mobile: +1 818 939-6532 +pager: +1 818 555-6397 +roomNumber: 9862 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrna Nesrallah +sn: Nesrallah +description: This is Myrna Nesrallah's description +facsimileTelephoneNumber: +1 804 729-6905 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 223-8342 +title: Master Administrative President +userPassword: Password1 +uid: NesrallM +givenName: Myrna +mail: NesrallM@43a2075086314e66b15465a3ec778b06.bitwarden.com +carLicense: B6W60F +departmentNumber: 2639 +employeeType: Contract +homePhone: +1 804 432-7355 +initials: M. N. +mobile: +1 804 646-5959 +pager: +1 804 717-2129 +roomNumber: 9822 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bevyn Germano,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bevyn Germano +sn: Germano +description: This is Bevyn Germano's description +facsimileTelephoneNumber: +1 408 436-1318 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 197-4094 +title: Master Peons Technician +userPassword: Password1 +uid: GermanoB +givenName: Bevyn +mail: GermanoB@d4e8bab259134e1b8e7db63aa3a30d2a.bitwarden.com +carLicense: 6O9CII +departmentNumber: 4480 +employeeType: Normal +homePhone: +1 408 708-5073 +initials: B. G. +mobile: +1 408 243-3685 +pager: +1 408 371-6546 +roomNumber: 8715 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tats Lawbaugh +sn: Lawbaugh +description: This is Tats Lawbaugh's description +facsimileTelephoneNumber: +1 213 525-1744 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 730-5270 +title: Junior Product Development Technician +userPassword: Password1 +uid: LawbaugT +givenName: Tats +mail: LawbaugT@5e51d9a3833b42d3a0ca89712e0f4b6d.bitwarden.com +carLicense: 4NSY9L +departmentNumber: 1666 +employeeType: Employee +homePhone: +1 213 340-1540 +initials: T. L. +mobile: +1 213 262-7420 +pager: +1 213 455-9216 +roomNumber: 9065 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Norcal Sabourin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norcal Sabourin +sn: Sabourin +description: This is Norcal Sabourin's description +facsimileTelephoneNumber: +1 818 853-9813 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 404-8340 +title: Junior Management Sales Rep +userPassword: Password1 +uid: SabouriN +givenName: Norcal +mail: SabouriN@148b0748cafd4655898b3cdac38d15c1.bitwarden.com +carLicense: TKYCAO +departmentNumber: 7298 +employeeType: Employee +homePhone: +1 818 382-6084 +initials: N. S. +mobile: +1 818 654-6759 +pager: +1 818 562-7723 +roomNumber: 8226 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vincenzo Rusin +sn: Rusin +description: This is Vincenzo Rusin's description +facsimileTelephoneNumber: +1 415 223-6034 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 143-4404 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: RusinV +givenName: Vincenzo +mail: RusinV@5f59551b04db44d39569a60a87960164.bitwarden.com +carLicense: PYK5VE +departmentNumber: 5947 +employeeType: Normal +homePhone: +1 415 178-7811 +initials: V. R. +mobile: +1 415 900-2314 +pager: +1 415 399-8908 +roomNumber: 9546 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cuong Schwab,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cuong Schwab +sn: Schwab +description: This is Cuong Schwab's description +facsimileTelephoneNumber: +1 415 142-1461 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 262-3449 +title: Junior Peons Developer +userPassword: Password1 +uid: SchwabC +givenName: Cuong +mail: SchwabC@e6d1825771da43ab8c15fdf770febdde.bitwarden.com +carLicense: PVA77S +departmentNumber: 4059 +employeeType: Normal +homePhone: +1 415 706-1749 +initials: C. S. +mobile: +1 415 547-9159 +pager: +1 415 661-2173 +roomNumber: 9129 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Seang Reichinger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seang Reichinger +sn: Reichinger +description: This is Seang Reichinger's description +facsimileTelephoneNumber: +1 818 964-8385 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 611-4384 +title: Associate Administrative Figurehead +userPassword: Password1 +uid: ReichinS +givenName: Seang +mail: ReichinS@c829ed47073b4d85a7396da70f656311.bitwarden.com +carLicense: XRQ8LS +departmentNumber: 2746 +employeeType: Normal +homePhone: +1 818 144-9814 +initials: S. R. +mobile: +1 818 673-6801 +pager: +1 818 449-6122 +roomNumber: 8372 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sherryl Appell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherryl Appell +sn: Appell +description: This is Sherryl Appell's description +facsimileTelephoneNumber: +1 408 876-9101 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 408 642-7490 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: AppellS +givenName: Sherryl +mail: AppellS@b2c537a3f6174546b2a7b1777d2dea4e.bitwarden.com +carLicense: 0FG2VO +departmentNumber: 9315 +employeeType: Employee +homePhone: +1 408 891-3284 +initials: S. A. +mobile: +1 408 725-8059 +pager: +1 408 486-2262 +roomNumber: 8964 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rayna Hanford,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rayna Hanford +sn: Hanford +description: This is Rayna Hanford's description +facsimileTelephoneNumber: +1 415 536-2331 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 577-5024 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: HanfordR +givenName: Rayna +mail: HanfordR@2b6053354b004588977b46a0cd4d26dd.bitwarden.com +carLicense: 990J29 +departmentNumber: 4142 +employeeType: Normal +homePhone: +1 415 497-7425 +initials: R. H. +mobile: +1 415 110-1791 +pager: +1 415 939-2724 +roomNumber: 8096 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hynek Alles,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hynek Alles +sn: Alles +description: This is Hynek Alles's description +facsimileTelephoneNumber: +1 818 632-5645 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 818 671-9543 +title: Associate Payroll Madonna +userPassword: Password1 +uid: AllesH +givenName: Hynek +mail: AllesH@6b1195b29ef347f9ab299fd5409ce2bd.bitwarden.com +carLicense: DC84T1 +departmentNumber: 3865 +employeeType: Normal +homePhone: +1 818 168-6108 +initials: H. A. +mobile: +1 818 852-8994 +pager: +1 818 371-7869 +roomNumber: 8406 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cal Wilby,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cal Wilby +sn: Wilby +description: This is Cal Wilby's description +facsimileTelephoneNumber: +1 415 743-6904 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 687-3985 +title: Junior Administrative Madonna +userPassword: Password1 +uid: WilbyC +givenName: Cal +mail: WilbyC@34552c4db0554609b8e8f530d9b4516c.bitwarden.com +carLicense: E7OER6 +departmentNumber: 6925 +employeeType: Normal +homePhone: +1 415 698-1083 +initials: C. W. +mobile: +1 415 120-3770 +pager: +1 415 520-9349 +roomNumber: 9114 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Furrukh Gros,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Furrukh Gros +sn: Gros +description: This is Furrukh Gros's description +facsimileTelephoneNumber: +1 408 983-8988 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 433-2858 +title: Junior Peons Manager +userPassword: Password1 +uid: GrosF +givenName: Furrukh +mail: GrosF@7d6095181b454ecb8a89a9772da4d295.bitwarden.com +carLicense: KC1YTK +departmentNumber: 5587 +employeeType: Employee +homePhone: +1 408 936-8587 +initials: F. G. +mobile: +1 408 804-3100 +pager: +1 408 870-4599 +roomNumber: 8541 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Barlas Rezzik,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barlas Rezzik +sn: Rezzik +description: This is Barlas Rezzik's description +facsimileTelephoneNumber: +1 804 860-7551 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 515-5005 +title: Master Product Development Manager +userPassword: Password1 +uid: RezzikB +givenName: Barlas +mail: RezzikB@cd39a8ff12ee4798a79e248d3318980a.bitwarden.com +carLicense: EN41MD +departmentNumber: 1060 +employeeType: Employee +homePhone: +1 804 406-2303 +initials: B. R. +mobile: +1 804 976-8255 +pager: +1 804 319-7864 +roomNumber: 8659 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cong Kish,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cong Kish +sn: Kish +description: This is Cong Kish's description +facsimileTelephoneNumber: +1 804 365-5128 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 804 728-7807 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: KishC +givenName: Cong +mail: KishC@837254eeede24c15906b803e5cce94f7.bitwarden.com +carLicense: JUY7L5 +departmentNumber: 4299 +employeeType: Normal +homePhone: +1 804 790-2815 +initials: C. K. +mobile: +1 804 292-2994 +pager: +1 804 801-7103 +roomNumber: 8210 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ping ONeill,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ping ONeill +sn: ONeill +description: This is Ping ONeill's description +facsimileTelephoneNumber: +1 510 178-4123 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 277-5401 +title: Chief Peons Fellow +userPassword: Password1 +uid: ONeillP +givenName: Ping +mail: ONeillP@232786cf6be745b08d532519f75fd65e.bitwarden.com +carLicense: NNWU3N +departmentNumber: 6118 +employeeType: Employee +homePhone: +1 510 130-8704 +initials: P. O. +mobile: +1 510 326-4878 +pager: +1 510 386-4450 +roomNumber: 8999 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aladin Mikulka,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aladin Mikulka +sn: Mikulka +description: This is Aladin Mikulka's description +facsimileTelephoneNumber: +1 213 715-2668 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 209-6419 +title: Associate Peons Engineer +userPassword: Password1 +uid: MikulkaA +givenName: Aladin +mail: MikulkaA@cbf35b83abed4f6d86f5e0a80e7c13e0.bitwarden.com +carLicense: 9VIDL1 +departmentNumber: 4794 +employeeType: Normal +homePhone: +1 213 957-9556 +initials: A. M. +mobile: +1 213 993-6749 +pager: +1 213 686-8573 +roomNumber: 8468 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marj Baldock,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marj Baldock +sn: Baldock +description: This is Marj Baldock's description +facsimileTelephoneNumber: +1 408 123-6459 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 654-3733 +title: Master Product Testing Consultant +userPassword: Password1 +uid: BaldockM +givenName: Marj +mail: BaldockM@b1b7656e019d440a9a3ca7d6d074faa1.bitwarden.com +carLicense: SWELF5 +departmentNumber: 9802 +employeeType: Employee +homePhone: +1 408 340-5586 +initials: M. B. +mobile: +1 408 328-1638 +pager: +1 408 779-3363 +roomNumber: 9490 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucy Deligdisch +sn: Deligdisch +description: This is Lucy Deligdisch's description +facsimileTelephoneNumber: +1 804 183-2642 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 697-9116 +title: Supreme Payroll Technician +userPassword: Password1 +uid: DeligdiL +givenName: Lucy +mail: DeligdiL@20e14dd3d2dd44c8a8925dd175adb2ff.bitwarden.com +carLicense: X5S631 +departmentNumber: 2567 +employeeType: Employee +homePhone: +1 804 778-2696 +initials: L. D. +mobile: +1 804 219-4394 +pager: +1 804 925-5708 +roomNumber: 9308 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Abby Theocharakis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abby Theocharakis +sn: Theocharakis +description: This is Abby Theocharakis's description +facsimileTelephoneNumber: +1 213 921-5197 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 231-9378 +title: Chief Payroll Technician +userPassword: Password1 +uid: TheochaA +givenName: Abby +mail: TheochaA@1025092185dc4f3abfbf07259ddd26cd.bitwarden.com +carLicense: WDB9OH +departmentNumber: 2173 +employeeType: Contract +homePhone: +1 213 851-2896 +initials: A. T. +mobile: +1 213 884-7008 +pager: +1 213 688-2206 +roomNumber: 8032 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Linnea Boucouris,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linnea Boucouris +sn: Boucouris +description: This is Linnea Boucouris's description +facsimileTelephoneNumber: +1 818 118-5161 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 818 444-9601 +title: Chief Payroll Mascot +userPassword: Password1 +uid: BoucourL +givenName: Linnea +mail: BoucourL@0ed48bdbdb1f464288e368731b18494f.bitwarden.com +carLicense: HU8LH3 +departmentNumber: 8053 +employeeType: Employee +homePhone: +1 818 893-7711 +initials: L. B. +mobile: +1 818 500-6346 +pager: +1 818 532-9345 +roomNumber: 8152 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bernd Gaebel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernd Gaebel +sn: Gaebel +description: This is Bernd Gaebel's description +facsimileTelephoneNumber: +1 408 226-2662 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 250-4685 +title: Master Management Sales Rep +userPassword: Password1 +uid: GaebelB +givenName: Bernd +mail: GaebelB@e9c5f780826246738e4b88d9c1251717.bitwarden.com +carLicense: F5U4FV +departmentNumber: 1048 +employeeType: Normal +homePhone: +1 408 727-8819 +initials: B. G. +mobile: +1 408 263-5702 +pager: +1 408 844-1320 +roomNumber: 9864 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tiina Ackaouy,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiina Ackaouy +sn: Ackaouy +description: This is Tiina Ackaouy's description +facsimileTelephoneNumber: +1 408 719-9549 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 455-2154 +title: Junior Management Pinhead +userPassword: Password1 +uid: AckaouyT +givenName: Tiina +mail: AckaouyT@c98eaad0f92a41b49339315f79d6648a.bitwarden.com +carLicense: R305LW +departmentNumber: 2918 +employeeType: Employee +homePhone: +1 408 742-4354 +initials: T. A. +mobile: +1 408 940-1528 +pager: +1 408 554-6812 +roomNumber: 8762 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xiaojing Lehtinen +sn: Lehtinen +description: This is Xiaojing Lehtinen's description +facsimileTelephoneNumber: +1 510 197-7677 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 190-3981 +title: Master Product Development Technician +userPassword: Password1 +uid: LehtineX +givenName: Xiaojing +mail: LehtineX@7d28967c327e4e23a4b006845992cccc.bitwarden.com +carLicense: GMHYB2 +departmentNumber: 2533 +employeeType: Contract +homePhone: +1 510 321-8009 +initials: X. L. +mobile: +1 510 365-2619 +pager: +1 510 252-3827 +roomNumber: 9808 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Florrie Latin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florrie Latin +sn: Latin +description: This is Florrie Latin's description +facsimileTelephoneNumber: +1 818 547-2018 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 784-6252 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: LatinF +givenName: Florrie +mail: LatinF@7d4ab817fa5e4f88b55f8de9796f837b.bitwarden.com +carLicense: 7J1XXN +departmentNumber: 8581 +employeeType: Contract +homePhone: +1 818 787-9238 +initials: F. L. +mobile: +1 818 559-5762 +pager: +1 818 990-9490 +roomNumber: 8959 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bliss Salinas,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bliss Salinas +sn: Salinas +description: This is Bliss Salinas's description +facsimileTelephoneNumber: +1 206 779-8559 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 807-8437 +title: Chief Janitorial Visionary +userPassword: Password1 +uid: SalinasB +givenName: Bliss +mail: SalinasB@e2d1ebaa6959429ebc4edc14189d9271.bitwarden.com +carLicense: TBT1JO +departmentNumber: 4468 +employeeType: Employee +homePhone: +1 206 538-2369 +initials: B. S. +mobile: +1 206 774-3416 +pager: +1 206 800-9933 +roomNumber: 9331 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Binny MacGregor,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binny MacGregor +sn: MacGregor +description: This is Binny MacGregor's description +facsimileTelephoneNumber: +1 415 156-8418 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 646-7502 +title: Chief Administrative Engineer +userPassword: Password1 +uid: MacGregB +givenName: Binny +mail: MacGregB@3bd82317516042bfa7398fbc080a5ab7.bitwarden.com +carLicense: TL4YMB +departmentNumber: 5999 +employeeType: Employee +homePhone: +1 415 796-1194 +initials: B. M. +mobile: +1 415 197-7114 +pager: +1 415 611-2024 +roomNumber: 9307 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Margie Rubin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margie Rubin +sn: Rubin +description: This is Margie Rubin's description +facsimileTelephoneNumber: +1 213 773-6402 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 561-4397 +title: Chief Administrative Director +userPassword: Password1 +uid: RubinM +givenName: Margie +mail: RubinM@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com +carLicense: CQHXGL +departmentNumber: 3904 +employeeType: Normal +homePhone: +1 213 796-8248 +initials: M. R. +mobile: +1 213 891-4374 +pager: +1 213 672-9509 +roomNumber: 8546 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sarene Videa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarene Videa +sn: Videa +description: This is Sarene Videa's description +facsimileTelephoneNumber: +1 804 237-3717 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 423-2121 +title: Supreme Payroll Madonna +userPassword: Password1 +uid: VideaS +givenName: Sarene +mail: VideaS@682a8645714a480188da85c157ef9433.bitwarden.com +carLicense: IU3SG2 +departmentNumber: 1558 +employeeType: Employee +homePhone: +1 804 384-8678 +initials: S. V. +mobile: +1 804 546-3964 +pager: +1 804 207-2342 +roomNumber: 9349 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Harpal Iskandar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harpal Iskandar +sn: Iskandar +description: This is Harpal Iskandar's description +facsimileTelephoneNumber: +1 213 436-6625 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 423-3463 +title: Associate Payroll Writer +userPassword: Password1 +uid: IskandaH +givenName: Harpal +mail: IskandaH@ba22866e80644775858f87806fbde4da.bitwarden.com +carLicense: PYLDRD +departmentNumber: 5420 +employeeType: Employee +homePhone: +1 213 438-1855 +initials: H. I. +mobile: +1 213 961-8078 +pager: +1 213 218-6267 +roomNumber: 9638 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Melloney Mussar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melloney Mussar +sn: Mussar +description: This is Melloney Mussar's description +facsimileTelephoneNumber: +1 510 986-9485 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 406-6270 +title: Supreme Administrative Stooge +userPassword: Password1 +uid: MussarM +givenName: Melloney +mail: MussarM@4a3dbef197ba4d769249c1f49c2d0f57.bitwarden.com +carLicense: RUOA6P +departmentNumber: 8271 +employeeType: Contract +homePhone: +1 510 134-3906 +initials: M. M. +mobile: +1 510 979-5482 +pager: +1 510 442-7271 +roomNumber: 9339 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arnett Typer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arnett Typer +sn: Typer +description: This is Arnett Typer's description +facsimileTelephoneNumber: +1 804 878-8896 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 804 844-8197 +title: Supreme Peons Developer +userPassword: Password1 +uid: TyperA +givenName: Arnett +mail: TyperA@f85ec6aaedd740f691ab46502bf2fcd1.bitwarden.com +carLicense: SPMD07 +departmentNumber: 8484 +employeeType: Normal +homePhone: +1 804 723-9061 +initials: A. T. +mobile: +1 804 115-7351 +pager: +1 804 805-8516 +roomNumber: 8077 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dulce Dore,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulce Dore +sn: Dore +description: This is Dulce Dore's description +facsimileTelephoneNumber: +1 510 358-8336 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 362-2512 +title: Master Product Testing Assistant +userPassword: Password1 +uid: DoreD +givenName: Dulce +mail: DoreD@9092ac0216724776b99f389469a93c29.bitwarden.com +carLicense: JTE3B8 +departmentNumber: 7483 +employeeType: Employee +homePhone: +1 510 868-9225 +initials: D. D. +mobile: +1 510 336-5352 +pager: +1 510 570-6015 +roomNumber: 8189 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mandy Auth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mandy Auth +sn: Auth +description: This is Mandy Auth's description +facsimileTelephoneNumber: +1 510 127-2992 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 510 692-3335 +title: Master Product Testing Consultant +userPassword: Password1 +uid: AuthM +givenName: Mandy +mail: AuthM@ee614e3163c64fc78862e2066c61b43b.bitwarden.com +carLicense: EPL7D9 +departmentNumber: 2143 +employeeType: Contract +homePhone: +1 510 838-5065 +initials: M. A. +mobile: +1 510 845-9303 +pager: +1 510 882-2459 +roomNumber: 9745 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nata Lampman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nata Lampman +sn: Lampman +description: This is Nata Lampman's description +facsimileTelephoneNumber: +1 408 138-2753 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 536-6872 +title: Chief Product Development Czar +userPassword: Password1 +uid: LampmanN +givenName: Nata +mail: LampmanN@61ded890c4074ecd9ae572c6057905e0.bitwarden.com +carLicense: DONWV7 +departmentNumber: 9965 +employeeType: Employee +homePhone: +1 408 304-3239 +initials: N. L. +mobile: +1 408 938-2212 +pager: +1 408 279-1306 +roomNumber: 9644 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Scpiivo Lauten,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Scpiivo Lauten +sn: Lauten +description: This is Scpiivo Lauten's description +facsimileTelephoneNumber: +1 206 991-4209 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 141-3114 +title: Associate Management Director +userPassword: Password1 +uid: LautenS +givenName: Scpiivo +mail: LautenS@cece21bcad784a3ca39618cc0267819d.bitwarden.com +carLicense: 8IKP3C +departmentNumber: 5343 +employeeType: Contract +homePhone: +1 206 485-8388 +initials: S. L. +mobile: +1 206 375-5976 +pager: +1 206 531-1876 +roomNumber: 8629 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Susannah Ergle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susannah Ergle +sn: Ergle +description: This is Susannah Ergle's description +facsimileTelephoneNumber: +1 415 583-1170 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 239-4166 +title: Master Product Development Fellow +userPassword: Password1 +uid: ErgleS +givenName: Susannah +mail: ErgleS@f8c29c9440874d4eb463ef82c13f890c.bitwarden.com +carLicense: 4YMJ84 +departmentNumber: 1669 +employeeType: Normal +homePhone: +1 415 754-1346 +initials: S. E. +mobile: +1 415 268-1521 +pager: +1 415 781-3228 +roomNumber: 8103 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sharona Purohit,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharona Purohit +sn: Purohit +description: This is Sharona Purohit's description +facsimileTelephoneNumber: +1 408 950-1350 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 408 300-1249 +title: Master Payroll Admin +userPassword: Password1 +uid: PurohitS +givenName: Sharona +mail: PurohitS@58b95b0fde664e13afb0e57d90ecd2ad.bitwarden.com +carLicense: K7KFNK +departmentNumber: 4847 +employeeType: Employee +homePhone: +1 408 650-7288 +initials: S. P. +mobile: +1 408 641-7924 +pager: +1 408 368-8973 +roomNumber: 9319 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sukey Ameen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sukey Ameen +sn: Ameen +description: This is Sukey Ameen's description +facsimileTelephoneNumber: +1 206 847-1893 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 792-4112 +title: Junior Administrative Artist +userPassword: Password1 +uid: AmeenS +givenName: Sukey +mail: AmeenS@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com +carLicense: NI4968 +departmentNumber: 3470 +employeeType: Employee +homePhone: +1 206 818-4285 +initials: S. A. +mobile: +1 206 957-8458 +pager: +1 206 465-1582 +roomNumber: 8278 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dhawal Obenauf,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhawal Obenauf +sn: Obenauf +description: This is Dhawal Obenauf's description +facsimileTelephoneNumber: +1 818 861-7818 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 578-3160 +title: Junior Management Punk +userPassword: Password1 +uid: ObenaufD +givenName: Dhawal +mail: ObenaufD@399088e535dc444183a128d7fd1a5d16.bitwarden.com +carLicense: 772Y2I +departmentNumber: 9625 +employeeType: Normal +homePhone: +1 818 776-3932 +initials: D. O. +mobile: +1 818 364-8984 +pager: +1 818 772-7861 +roomNumber: 8414 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nuntel Cozart,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nuntel Cozart +sn: Cozart +description: This is Nuntel Cozart's description +facsimileTelephoneNumber: +1 510 375-1432 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 242-6021 +title: Chief Administrative Engineer +userPassword: Password1 +uid: CozartN +givenName: Nuntel +mail: CozartN@f4a6804794574a25b07fba470bdf4478.bitwarden.com +carLicense: 5DLY78 +departmentNumber: 3545 +employeeType: Normal +homePhone: +1 510 932-4006 +initials: N. C. +mobile: +1 510 176-1336 +pager: +1 510 259-9742 +roomNumber: 9045 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Turkey Massone,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Turkey Massone +sn: Massone +description: This is Turkey Massone's description +facsimileTelephoneNumber: +1 415 424-5690 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 260-7918 +title: Junior Peons Grunt +userPassword: Password1 +uid: MassoneT +givenName: Turkey +mail: MassoneT@ea675d93e8aa4655831540db70e97a6a.bitwarden.com +carLicense: 6FOAL7 +departmentNumber: 7056 +employeeType: Normal +homePhone: +1 415 182-9409 +initials: T. M. +mobile: +1 415 174-3226 +pager: +1 415 857-5058 +roomNumber: 8757 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barlas Bergstrom +sn: Bergstrom +description: This is Barlas Bergstrom's description +facsimileTelephoneNumber: +1 206 905-3572 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 350-3311 +title: Supreme Product Testing Dictator +userPassword: Password1 +uid: BergstrB +givenName: Barlas +mail: BergstrB@9676da99cfac4bada210a8c85a95f456.bitwarden.com +carLicense: 7T3EJM +departmentNumber: 2143 +employeeType: Employee +homePhone: +1 206 186-2800 +initials: B. B. +mobile: +1 206 153-9675 +pager: +1 206 411-5308 +roomNumber: 8580 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maxie Aladangady,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maxie Aladangady +sn: Aladangady +description: This is Maxie Aladangady's description +facsimileTelephoneNumber: +1 415 918-7986 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 717-3841 +title: Associate Management Madonna +userPassword: Password1 +uid: AladangM +givenName: Maxie +mail: AladangM@0e30929e6bbb48ec8c60769bdbed5c15.bitwarden.com +carLicense: FWK4QE +departmentNumber: 2024 +employeeType: Normal +homePhone: +1 415 527-1931 +initials: M. A. +mobile: +1 415 217-2596 +pager: +1 415 959-4549 +roomNumber: 9138 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Housseini Sammons,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Housseini Sammons +sn: Sammons +description: This is Housseini Sammons's description +facsimileTelephoneNumber: +1 408 309-2420 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 512-6286 +title: Chief Product Development Visionary +userPassword: Password1 +uid: SammonsH +givenName: Housseini +mail: SammonsH@c5f103343b7e4b25bc1a4d2fdd71d622.bitwarden.com +carLicense: EU9IET +departmentNumber: 2329 +employeeType: Normal +homePhone: +1 408 664-7647 +initials: H. S. +mobile: +1 408 735-1771 +pager: +1 408 637-8939 +roomNumber: 9982 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Saraann Koman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saraann Koman +sn: Koman +description: This is Saraann Koman's description +facsimileTelephoneNumber: +1 408 657-5466 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 890-4976 +title: Master Product Testing Artist +userPassword: Password1 +uid: KomanS +givenName: Saraann +mail: KomanS@3a2f01610a4f49818c8117630280919e.bitwarden.com +carLicense: QGPFTP +departmentNumber: 6567 +employeeType: Contract +homePhone: +1 408 389-1917 +initials: S. K. +mobile: +1 408 950-5659 +pager: +1 408 251-2119 +roomNumber: 9323 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Saudra Griffith,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saudra Griffith +sn: Griffith +description: This is Saudra Griffith's description +facsimileTelephoneNumber: +1 213 990-7474 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 784-1169 +title: Junior Product Development Figurehead +userPassword: Password1 +uid: GriffitS +givenName: Saudra +mail: GriffitS@72bccd919e1d4e7a9fb89ff1c2d64c5a.bitwarden.com +carLicense: OXMXH3 +departmentNumber: 8418 +employeeType: Normal +homePhone: +1 213 766-7208 +initials: S. G. +mobile: +1 213 787-4134 +pager: +1 213 545-2095 +roomNumber: 8647 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Yongli Craver,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yongli Craver +sn: Craver +description: This is Yongli Craver's description +facsimileTelephoneNumber: +1 206 329-2321 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 652-5099 +title: Supreme Management Consultant +userPassword: Password1 +uid: CraverY +givenName: Yongli +mail: CraverY@fb80550ae6b245dcb9c2cdf7ac12567e.bitwarden.com +carLicense: GBNJ08 +departmentNumber: 3075 +employeeType: Normal +homePhone: +1 206 783-1811 +initials: Y. C. +mobile: +1 206 432-8152 +pager: +1 206 206-4952 +roomNumber: 8436 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pardip LaVecchia,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pardip LaVecchia +sn: LaVecchia +description: This is Pardip LaVecchia's description +facsimileTelephoneNumber: +1 818 551-8825 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 276-6743 +title: Junior Peons Stooge +userPassword: Password1 +uid: LaVecchP +givenName: Pardip +mail: LaVecchP@e44e2f828b9948f4bb8c5d44954eed11.bitwarden.com +carLicense: Y5WHG9 +departmentNumber: 5872 +employeeType: Normal +homePhone: +1 818 375-3622 +initials: P. L. +mobile: +1 818 243-4231 +pager: +1 818 138-6964 +roomNumber: 9821 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Subhash Waid,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subhash Waid +sn: Waid +description: This is Subhash Waid's description +facsimileTelephoneNumber: +1 206 163-1034 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 425-8443 +title: Associate Product Testing Artist +userPassword: Password1 +uid: WaidS +givenName: Subhash +mail: WaidS@e0fbcbf86ba64fa69e571f107b3ec1d7.bitwarden.com +carLicense: F00VAS +departmentNumber: 5041 +employeeType: Employee +homePhone: +1 206 930-2555 +initials: S. W. +mobile: +1 206 588-1734 +pager: +1 206 367-1479 +roomNumber: 9681 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaye Sobchuk +sn: Sobchuk +description: This is Kaye Sobchuk's description +facsimileTelephoneNumber: +1 408 641-6933 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 951-4428 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: SobchukK +givenName: Kaye +mail: SobchukK@37b876b4a91540b4b71770c7a49beee8.bitwarden.com +carLicense: 1RQKL6 +departmentNumber: 7489 +employeeType: Employee +homePhone: +1 408 690-7255 +initials: K. S. +mobile: +1 408 660-7960 +pager: +1 408 795-2239 +roomNumber: 9302 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Deane Saiyed,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deane Saiyed +sn: Saiyed +description: This is Deane Saiyed's description +facsimileTelephoneNumber: +1 818 225-2033 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 401-7395 +title: Associate Peons Czar +userPassword: Password1 +uid: SaiyedD +givenName: Deane +mail: SaiyedD@22830d32dd4a43f899cece07a5cc99c1.bitwarden.com +carLicense: DI8RVI +departmentNumber: 7213 +employeeType: Employee +homePhone: +1 818 620-2622 +initials: D. S. +mobile: +1 818 587-1270 +pager: +1 818 552-3004 +roomNumber: 9909 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Joannah McBryan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joannah McBryan +sn: McBryan +description: This is Joannah McBryan's description +facsimileTelephoneNumber: +1 408 127-4996 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 672-6692 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: McBryanJ +givenName: Joannah +mail: McBryanJ@f1351648a83a4fd2b80f3e1c5db82076.bitwarden.com +carLicense: 215EI2 +departmentNumber: 2556 +employeeType: Employee +homePhone: +1 408 686-5968 +initials: J. M. +mobile: +1 408 186-4952 +pager: +1 408 794-2625 +roomNumber: 9665 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kariotta Shwed +sn: Shwed +description: This is Kariotta Shwed's description +facsimileTelephoneNumber: +1 206 993-2678 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 163-4926 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: ShwedK +givenName: Kariotta +mail: ShwedK@a77c7140e8a14e9180f6ceda32adedff.bitwarden.com +carLicense: ED479A +departmentNumber: 9052 +employeeType: Contract +homePhone: +1 206 872-6818 +initials: K. S. +mobile: +1 206 647-3022 +pager: +1 206 253-7763 +roomNumber: 8599 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kyle Anconetani,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kyle Anconetani +sn: Anconetani +description: This is Kyle Anconetani's description +facsimileTelephoneNumber: +1 408 106-9880 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 408 284-1937 +title: Junior Administrative Manager +userPassword: Password1 +uid: AnconetK +givenName: Kyle +mail: AnconetK@bea3a59f852447369b2ae52dc89b101a.bitwarden.com +carLicense: AP4X34 +departmentNumber: 6330 +employeeType: Contract +homePhone: +1 408 619-5409 +initials: K. A. +mobile: +1 408 787-5623 +pager: +1 408 668-3994 +roomNumber: 9449 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cicily Carlisle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cicily Carlisle +sn: Carlisle +description: This is Cicily Carlisle's description +facsimileTelephoneNumber: +1 213 650-5327 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 241-7163 +title: Supreme Management Artist +userPassword: Password1 +uid: CarlislC +givenName: Cicily +mail: CarlislC@fabf4e5a1cd441dcbccc8453d82524ac.bitwarden.com +carLicense: 2T6AN6 +departmentNumber: 2108 +employeeType: Contract +homePhone: +1 213 173-3891 +initials: C. C. +mobile: +1 213 729-1804 +pager: +1 213 283-4669 +roomNumber: 8053 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carole Coats,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carole Coats +sn: Coats +description: This is Carole Coats's description +facsimileTelephoneNumber: +1 818 872-5690 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 818 650-9193 +title: Junior Product Testing Artist +userPassword: Password1 +uid: CoatsC +givenName: Carole +mail: CoatsC@72bd0ee0befb455d8cec3b8d293b350f.bitwarden.com +carLicense: E5QAQ4 +departmentNumber: 4637 +employeeType: Contract +homePhone: +1 818 427-7101 +initials: C. C. +mobile: +1 818 336-6543 +pager: +1 818 798-4058 +roomNumber: 8391 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leonelle Halpern,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonelle Halpern +sn: Halpern +description: This is Leonelle Halpern's description +facsimileTelephoneNumber: +1 206 550-3444 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 484-2222 +title: Master Payroll Director +userPassword: Password1 +uid: HalpernL +givenName: Leonelle +mail: HalpernL@4862778236b440e7a6b8cc3c6a3dec32.bitwarden.com +carLicense: RFD5PK +departmentNumber: 3772 +employeeType: Employee +homePhone: +1 206 597-5934 +initials: L. H. +mobile: +1 206 494-2907 +pager: +1 206 316-7963 +roomNumber: 9005 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Clare Deatrick,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clare Deatrick +sn: Deatrick +description: This is Clare Deatrick's description +facsimileTelephoneNumber: +1 804 789-9200 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 374-8785 +title: Supreme Janitorial Mascot +userPassword: Password1 +uid: DeatricC +givenName: Clare +mail: DeatricC@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com +carLicense: 42XA16 +departmentNumber: 9195 +employeeType: Contract +homePhone: +1 804 648-3522 +initials: C. D. +mobile: +1 804 962-4091 +pager: +1 804 811-6340 +roomNumber: 9141 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marty Maunu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marty Maunu +sn: Maunu +description: This is Marty Maunu's description +facsimileTelephoneNumber: +1 206 628-3207 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 741-1582 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: MaunuM +givenName: Marty +mail: MaunuM@1905088fe45c42ef9a2318b32d1a92d9.bitwarden.com +carLicense: ISA4SF +departmentNumber: 9034 +employeeType: Employee +homePhone: +1 206 820-9178 +initials: M. M. +mobile: +1 206 939-6866 +pager: +1 206 284-7452 +roomNumber: 8156 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ronni Paynter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronni Paynter +sn: Paynter +description: This is Ronni Paynter's description +facsimileTelephoneNumber: +1 818 737-5572 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 818 386-4964 +title: Master Product Development Czar +userPassword: Password1 +uid: PaynterR +givenName: Ronni +mail: PaynterR@1d23264dcd2241baa77e90f901c50315.bitwarden.com +carLicense: UASMM1 +departmentNumber: 3645 +employeeType: Normal +homePhone: +1 818 256-8227 +initials: R. P. +mobile: +1 818 685-5407 +pager: +1 818 945-8819 +roomNumber: 9648 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jiri Bemiller +sn: Bemiller +description: This is Jiri Bemiller's description +facsimileTelephoneNumber: +1 213 666-9194 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 714-3361 +title: Chief Human Resources Manager +userPassword: Password1 +uid: BemilleJ +givenName: Jiri +mail: BemilleJ@a312c5a631954b3083418977a35fbc96.bitwarden.com +carLicense: OYPLQ3 +departmentNumber: 5669 +employeeType: Contract +homePhone: +1 213 371-2069 +initials: J. B. +mobile: +1 213 544-6936 +pager: +1 213 939-5847 +roomNumber: 9676 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Duong Davies,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duong Davies +sn: Davies +description: This is Duong Davies's description +facsimileTelephoneNumber: +1 408 173-6641 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 867-3127 +title: Associate Human Resources Manager +userPassword: Password1 +uid: DaviesD +givenName: Duong +mail: DaviesD@ce7f6506438049b28a6c7066d0f5b598.bitwarden.com +carLicense: LIC1JX +departmentNumber: 5315 +employeeType: Employee +homePhone: +1 408 921-7176 +initials: D. D. +mobile: +1 408 394-4485 +pager: +1 408 629-5941 +roomNumber: 9293 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nancy Boutilier +sn: Boutilier +description: This is Nancy Boutilier's description +facsimileTelephoneNumber: +1 510 327-1739 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 900-1152 +title: Master Human Resources Grunt +userPassword: Password1 +uid: BoutiliN +givenName: Nancy +mail: BoutiliN@819341cb2af84d6c855b3feecf7b45b9.bitwarden.com +carLicense: U4EXJJ +departmentNumber: 8254 +employeeType: Contract +homePhone: +1 510 874-1495 +initials: N. B. +mobile: +1 510 677-9323 +pager: +1 510 555-2610 +roomNumber: 9805 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Greer Behlen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greer Behlen +sn: Behlen +description: This is Greer Behlen's description +facsimileTelephoneNumber: +1 213 688-1717 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 655-8687 +title: Junior Peons Admin +userPassword: Password1 +uid: BehlenG +givenName: Greer +mail: BehlenG@613a894fc4ff4101a0a94f865da5db23.bitwarden.com +carLicense: NPGKDN +departmentNumber: 7881 +employeeType: Contract +homePhone: +1 213 640-9948 +initials: G. B. +mobile: +1 213 192-6477 +pager: +1 213 550-9719 +roomNumber: 9105 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roslyn GurArie +sn: GurArie +description: This is Roslyn GurArie's description +facsimileTelephoneNumber: +1 510 766-7855 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 993-7024 +title: Chief Janitorial Manager +userPassword: Password1 +uid: GurArieR +givenName: Roslyn +mail: GurArieR@943cde02b55f4c00aac04891d951946b.bitwarden.com +carLicense: QAWBF9 +departmentNumber: 4611 +employeeType: Employee +homePhone: +1 510 951-2430 +initials: R. G. +mobile: +1 510 563-3362 +pager: +1 510 986-1051 +roomNumber: 8305 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KuiSoon RossRoss +sn: RossRoss +description: This is KuiSoon RossRoss's description +facsimileTelephoneNumber: +1 213 808-8107 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 838-4079 +title: Associate Peons Fellow +userPassword: Password1 +uid: RossRosK +givenName: KuiSoon +mail: RossRosK@9de1e5ab0e97403bbd2b1cd8ab5549b3.bitwarden.com +carLicense: 7O183U +departmentNumber: 2336 +employeeType: Contract +homePhone: +1 213 834-6170 +initials: K. R. +mobile: +1 213 914-7088 +pager: +1 213 376-7490 +roomNumber: 9504 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Poldi Volk,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Poldi Volk +sn: Volk +description: This is Poldi Volk's description +facsimileTelephoneNumber: +1 213 515-9136 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 538-8724 +title: Supreme Product Testing Punk +userPassword: Password1 +uid: VolkP +givenName: Poldi +mail: VolkP@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com +carLicense: BH03HD +departmentNumber: 3129 +employeeType: Contract +homePhone: +1 213 343-3776 +initials: P. V. +mobile: +1 213 922-6739 +pager: +1 213 279-5278 +roomNumber: 9170 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hennrietta Schmadtke +sn: Schmadtke +description: This is Hennrietta Schmadtke's description +facsimileTelephoneNumber: +1 213 273-4970 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 849-9785 +title: Associate Product Development Warrior +userPassword: Password1 +uid: SchmadtH +givenName: Hennrietta +mail: SchmadtH@4b32479366c74b46b2b68466f59bae46.bitwarden.com +carLicense: EL3AK6 +departmentNumber: 7673 +employeeType: Normal +homePhone: +1 213 199-1026 +initials: H. S. +mobile: +1 213 306-3085 +pager: +1 213 143-7941 +roomNumber: 9661 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Estelle Specs,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estelle Specs +sn: Specs +description: This is Estelle Specs's description +facsimileTelephoneNumber: +1 510 809-6875 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 291-3516 +title: Supreme Management Architect +userPassword: Password1 +uid: SpecsE +givenName: Estelle +mail: SpecsE@cbf3bc402182405fa7e4d3e446e6f0ab.bitwarden.com +carLicense: YNL12M +departmentNumber: 2350 +employeeType: Contract +homePhone: +1 510 938-7357 +initials: E. S. +mobile: +1 510 169-1770 +pager: +1 510 104-2850 +roomNumber: 8527 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tina Guarino,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tina Guarino +sn: Guarino +description: This is Tina Guarino's description +facsimileTelephoneNumber: +1 415 594-5689 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 654-8058 +title: Chief Peons Mascot +userPassword: Password1 +uid: GuarinoT +givenName: Tina +mail: GuarinoT@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com +carLicense: VQJ7XL +departmentNumber: 3733 +employeeType: Contract +homePhone: +1 415 834-3267 +initials: T. G. +mobile: +1 415 524-3718 +pager: +1 415 599-7058 +roomNumber: 9668 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pamelina Kovats,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pamelina Kovats +sn: Kovats +description: This is Pamelina Kovats's description +facsimileTelephoneNumber: +1 213 121-9493 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 417-4895 +title: Associate Management Developer +userPassword: Password1 +uid: KovatsP +givenName: Pamelina +mail: KovatsP@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com +carLicense: 6C1OUY +departmentNumber: 7715 +employeeType: Contract +homePhone: +1 213 105-2440 +initials: P. K. +mobile: +1 213 757-7347 +pager: +1 213 984-1674 +roomNumber: 9572 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dany deGrace,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dany deGrace +sn: deGrace +description: This is Dany deGrace's description +facsimileTelephoneNumber: +1 408 103-6787 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 192-1178 +title: Master Administrative Vice President +userPassword: Password1 +uid: deGraceD +givenName: Dany +mail: deGraceD@c53d26d2599d4e87839d1fcfc46deed3.bitwarden.com +carLicense: LPSRSW +departmentNumber: 2040 +employeeType: Contract +homePhone: +1 408 454-1186 +initials: D. d. +mobile: +1 408 923-9515 +pager: +1 408 741-4843 +roomNumber: 9375 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rigoberto Bilsborough +sn: Bilsborough +description: This is Rigoberto Bilsborough's description +facsimileTelephoneNumber: +1 415 902-7119 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 836-4516 +title: Chief Management Dictator +userPassword: Password1 +uid: BilsborR +givenName: Rigoberto +mail: BilsborR@8f54ea12be5d4924822bead7a0de7fce.bitwarden.com +carLicense: VXW3Y2 +departmentNumber: 7999 +employeeType: Normal +homePhone: +1 415 364-1220 +initials: R. B. +mobile: +1 415 681-5352 +pager: +1 415 169-8425 +roomNumber: 9145 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhHung Bajpeyi +sn: Bajpeyi +description: This is ThanhHung Bajpeyi's description +facsimileTelephoneNumber: +1 213 298-8670 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 809-3267 +title: Junior Management Technician +userPassword: Password1 +uid: BajpeyiT +givenName: ThanhHung +mail: BajpeyiT@af703f54ddb945e38afdba5f17819d01.bitwarden.com +carLicense: 0AS3MO +departmentNumber: 4380 +employeeType: Employee +homePhone: +1 213 168-9165 +initials: T. B. +mobile: +1 213 403-8721 +pager: +1 213 921-7892 +roomNumber: 9789 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Grata Hosang,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grata Hosang +sn: Hosang +description: This is Grata Hosang's description +facsimileTelephoneNumber: +1 213 410-3337 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 341-8761 +title: Chief Janitorial Consultant +userPassword: Password1 +uid: HosangG +givenName: Grata +mail: HosangG@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com +carLicense: 0INDOF +departmentNumber: 6537 +employeeType: Employee +homePhone: +1 213 685-1658 +initials: G. H. +mobile: +1 213 907-5965 +pager: +1 213 121-9375 +roomNumber: 9157 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sosanna McAulay +sn: McAulay +description: This is Sosanna McAulay's description +facsimileTelephoneNumber: +1 804 861-7866 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 692-8428 +title: Junior Human Resources Architect +userPassword: Password1 +uid: McAulayS +givenName: Sosanna +mail: McAulayS@15447e827d294576b427fe60b8e58e62.bitwarden.com +carLicense: TIKUJI +departmentNumber: 1873 +employeeType: Normal +homePhone: +1 804 827-4488 +initials: S. M. +mobile: +1 804 605-8231 +pager: +1 804 696-5346 +roomNumber: 9281 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Eoin Ketchum,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eoin Ketchum +sn: Ketchum +description: This is Eoin Ketchum's description +facsimileTelephoneNumber: +1 206 582-4414 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 517-9331 +title: Supreme Payroll Artist +userPassword: Password1 +uid: KetchumE +givenName: Eoin +mail: KetchumE@f4820d79a950444ca53b37bbda89060d.bitwarden.com +carLicense: 77V44G +departmentNumber: 9957 +employeeType: Normal +homePhone: +1 206 265-2394 +initials: E. K. +mobile: +1 206 922-8035 +pager: +1 206 965-9386 +roomNumber: 8906 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rora Feild,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rora Feild +sn: Feild +description: This is Rora Feild's description +facsimileTelephoneNumber: +1 510 251-1332 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 830-4345 +title: Master Payroll Developer +userPassword: Password1 +uid: FeildR +givenName: Rora +mail: FeildR@c0a302c2f9a04dc1997191c76bacca58.bitwarden.com +carLicense: VJTBU6 +departmentNumber: 6546 +employeeType: Contract +homePhone: +1 510 109-7430 +initials: R. F. +mobile: +1 510 528-2566 +pager: +1 510 834-2758 +roomNumber: 8433 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chryste Tsenter,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chryste Tsenter +sn: Tsenter +description: This is Chryste Tsenter's description +facsimileTelephoneNumber: +1 510 106-6924 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 510 267-6369 +title: Chief Peons Manager +userPassword: Password1 +uid: TsenterC +givenName: Chryste +mail: TsenterC@25aebd1493fb4d31a43de4ac0f71a727.bitwarden.com +carLicense: DHR4AM +departmentNumber: 4116 +employeeType: Contract +homePhone: +1 510 121-4374 +initials: C. T. +mobile: +1 510 830-6242 +pager: +1 510 138-4795 +roomNumber: 9216 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yoda Calleja,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoda Calleja +sn: Calleja +description: This is Yoda Calleja's description +facsimileTelephoneNumber: +1 415 365-1965 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 424-3113 +title: Master Management Artist +userPassword: Password1 +uid: CallejaY +givenName: Yoda +mail: CallejaY@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com +carLicense: 3MCSDP +departmentNumber: 9725 +employeeType: Contract +homePhone: +1 415 839-3975 +initials: Y. C. +mobile: +1 415 653-1661 +pager: +1 415 940-3734 +roomNumber: 8163 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vannie Babalola,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vannie Babalola +sn: Babalola +description: This is Vannie Babalola's description +facsimileTelephoneNumber: +1 415 465-7392 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 348-8065 +title: Chief Peons Janitor +userPassword: Password1 +uid: BabalolV +givenName: Vannie +mail: BabalolV@be9d6d33980e45aa8fdb6ebf08094f9b.bitwarden.com +carLicense: XS21WH +departmentNumber: 1601 +employeeType: Employee +homePhone: +1 415 557-9137 +initials: V. B. +mobile: +1 415 682-4849 +pager: +1 415 171-9090 +roomNumber: 8379 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tulip Yenilmez +sn: Yenilmez +description: This is Tulip Yenilmez's description +facsimileTelephoneNumber: +1 408 484-6512 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 803-8303 +title: Chief Payroll Dictator +userPassword: Password1 +uid: YenilmeT +givenName: Tulip +mail: YenilmeT@906d64f7c2b74479970aa6699821b985.bitwarden.com +carLicense: 2BV6UI +departmentNumber: 9350 +employeeType: Employee +homePhone: +1 408 875-5430 +initials: T. Y. +mobile: +1 408 153-1703 +pager: +1 408 879-3768 +roomNumber: 8592 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kimberlee Rakesh +sn: Rakesh +description: This is Kimberlee Rakesh's description +facsimileTelephoneNumber: +1 408 712-6910 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 181-3371 +title: Junior Peons Technician +userPassword: Password1 +uid: RakeshK +givenName: Kimberlee +mail: RakeshK@923baf1ba66c43ddab40764da6c9cc33.bitwarden.com +carLicense: 73QMOT +departmentNumber: 6698 +employeeType: Employee +homePhone: +1 408 437-5371 +initials: K. R. +mobile: +1 408 262-9584 +pager: +1 408 841-9776 +roomNumber: 9983 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sheryl Diec,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheryl Diec +sn: Diec +description: This is Sheryl Diec's description +facsimileTelephoneNumber: +1 415 592-9479 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 324-2234 +title: Master Product Testing Technician +userPassword: Password1 +uid: DiecS +givenName: Sheryl +mail: DiecS@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com +carLicense: NEOTQW +departmentNumber: 4355 +employeeType: Normal +homePhone: +1 415 549-5978 +initials: S. D. +mobile: +1 415 810-8893 +pager: +1 415 655-2611 +roomNumber: 8091 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Candice Scribner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candice Scribner +sn: Scribner +description: This is Candice Scribner's description +facsimileTelephoneNumber: +1 206 451-9287 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 763-9975 +title: Associate Human Resources Manager +userPassword: Password1 +uid: ScribneC +givenName: Candice +mail: ScribneC@eef8f30988664fe78f88de71627c3b63.bitwarden.com +carLicense: 06WPV1 +departmentNumber: 1236 +employeeType: Contract +homePhone: +1 206 839-3945 +initials: C. S. +mobile: +1 206 619-2288 +pager: +1 206 490-5389 +roomNumber: 9186 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmel Lansupport +sn: Lansupport +description: This is Carmel Lansupport's description +facsimileTelephoneNumber: +1 408 693-7975 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 334-6231 +title: Master Product Testing Vice President +userPassword: Password1 +uid: LansuppC +givenName: Carmel +mail: LansuppC@aebedd81d0064bf4bf3e053b89a4b6eb.bitwarden.com +carLicense: 624KE8 +departmentNumber: 9567 +employeeType: Employee +homePhone: +1 408 941-7884 +initials: C. L. +mobile: +1 408 696-4402 +pager: +1 408 605-9972 +roomNumber: 8741 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Farand Rambow,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farand Rambow +sn: Rambow +description: This is Farand Rambow's description +facsimileTelephoneNumber: +1 818 531-4136 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 691-2402 +title: Chief Product Development Vice President +userPassword: Password1 +uid: RambowF +givenName: Farand +mail: RambowF@15fb4ae5d92f48d1828a5523a2de1119.bitwarden.com +carLicense: 8KUHPC +departmentNumber: 1092 +employeeType: Employee +homePhone: +1 818 432-5255 +initials: F. R. +mobile: +1 818 431-7944 +pager: +1 818 769-9934 +roomNumber: 9805 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Darb Jedrysiak,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darb Jedrysiak +sn: Jedrysiak +description: This is Darb Jedrysiak's description +facsimileTelephoneNumber: +1 415 967-3431 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 421-4987 +title: Junior Peons Technician +userPassword: Password1 +uid: JedrysiD +givenName: Darb +mail: JedrysiD@c56a9475370a48efb779b953853ddb74.bitwarden.com +carLicense: WDAL6U +departmentNumber: 1030 +employeeType: Contract +homePhone: +1 415 215-9060 +initials: D. J. +mobile: +1 415 862-2225 +pager: +1 415 466-1900 +roomNumber: 9498 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Valentia Edmison,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valentia Edmison +sn: Edmison +description: This is Valentia Edmison's description +facsimileTelephoneNumber: +1 510 383-7217 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 348-9745 +title: Master Administrative Consultant +userPassword: Password1 +uid: EdmisonV +givenName: Valentia +mail: EdmisonV@509acce88e824dae901a9dc813095e54.bitwarden.com +carLicense: 27EJ1H +departmentNumber: 4126 +employeeType: Normal +homePhone: +1 510 387-1459 +initials: V. E. +mobile: +1 510 699-6933 +pager: +1 510 704-1956 +roomNumber: 9956 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Reid Hotline,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reid Hotline +sn: Hotline +description: This is Reid Hotline's description +facsimileTelephoneNumber: +1 213 352-1338 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 213 112-5727 +title: Master Payroll Figurehead +userPassword: Password1 +uid: HotlineR +givenName: Reid +mail: HotlineR@36cbe8f598cd4972b6d2494f46f3fea8.bitwarden.com +carLicense: 6IONFK +departmentNumber: 2487 +employeeType: Employee +homePhone: +1 213 665-6436 +initials: R. H. +mobile: +1 213 114-2508 +pager: +1 213 863-9325 +roomNumber: 8034 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nelli Camblin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nelli Camblin +sn: Camblin +description: This is Nelli Camblin's description +facsimileTelephoneNumber: +1 213 853-1188 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 826-5011 +title: Associate Payroll Artist +userPassword: Password1 +uid: CamblinN +givenName: Nelli +mail: CamblinN@49d2d3179b1e4e36991607ece7157ce5.bitwarden.com +carLicense: 7OGWIP +departmentNumber: 9329 +employeeType: Normal +homePhone: +1 213 510-8491 +initials: N. C. +mobile: +1 213 922-5747 +pager: +1 213 190-2845 +roomNumber: 8574 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shaji Heilig,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaji Heilig +sn: Heilig +description: This is Shaji Heilig's description +facsimileTelephoneNumber: +1 415 749-5717 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 350-3289 +title: Master Management Mascot +userPassword: Password1 +uid: HeiligS +givenName: Shaji +mail: HeiligS@d221ea793fe54c61b6d0a123f7f92114.bitwarden.com +carLicense: 4XHBFT +departmentNumber: 5722 +employeeType: Contract +homePhone: +1 415 494-2900 +initials: S. H. +mobile: +1 415 481-5596 +pager: +1 415 151-4594 +roomNumber: 8273 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Angil Shariff,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angil Shariff +sn: Shariff +description: This is Angil Shariff's description +facsimileTelephoneNumber: +1 408 877-2271 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 344-5953 +title: Chief Peons Dictator +userPassword: Password1 +uid: ShariffA +givenName: Angil +mail: ShariffA@6278758e52d64d2fa2b3ae646f7b1c8c.bitwarden.com +carLicense: NCBWG8 +departmentNumber: 2920 +employeeType: Contract +homePhone: +1 408 631-1944 +initials: A. S. +mobile: +1 408 627-9650 +pager: +1 408 847-1875 +roomNumber: 8119 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmencita Digilio +sn: Digilio +description: This is Carmencita Digilio's description +facsimileTelephoneNumber: +1 804 542-1400 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 422-4627 +title: Junior Human Resources Manager +userPassword: Password1 +uid: DigilioC +givenName: Carmencita +mail: DigilioC@99cc3f0e751d412fb99b300aa817ed7d.bitwarden.com +carLicense: 5V8FYF +departmentNumber: 6577 +employeeType: Employee +homePhone: +1 804 559-9038 +initials: C. D. +mobile: +1 804 180-6398 +pager: +1 804 811-8147 +roomNumber: 8206 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Linet McRitchie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linet McRitchie +sn: McRitchie +description: This is Linet McRitchie's description +facsimileTelephoneNumber: +1 206 401-5369 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 196-9026 +title: Supreme Management Developer +userPassword: Password1 +uid: McRitchL +givenName: Linet +mail: McRitchL@7ae74f35c1ca49719017f2b0cacc9b3c.bitwarden.com +carLicense: IK5PD4 +departmentNumber: 1337 +employeeType: Contract +homePhone: +1 206 256-7907 +initials: L. M. +mobile: +1 206 677-3293 +pager: +1 206 536-5346 +roomNumber: 8435 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chen Mayer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chen Mayer +sn: Mayer +description: This is Chen Mayer's description +facsimileTelephoneNumber: +1 510 403-8658 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 456-7904 +title: Supreme Product Testing Writer +userPassword: Password1 +uid: MayerC +givenName: Chen +mail: MayerC@f126477184184f8891beac46174dce4f.bitwarden.com +carLicense: G3O2SL +departmentNumber: 5714 +employeeType: Contract +homePhone: +1 510 865-8693 +initials: C. M. +mobile: +1 510 588-8772 +pager: +1 510 637-6399 +roomNumber: 9224 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anibal Nafezi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anibal Nafezi +sn: Nafezi +description: This is Anibal Nafezi's description +facsimileTelephoneNumber: +1 206 202-9590 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 174-8968 +title: Master Administrative Manager +userPassword: Password1 +uid: NafeziA +givenName: Anibal +mail: NafeziA@e3b02f8ad09c4296ae0a5ca3a1e66b19.bitwarden.com +carLicense: WCIFF3 +departmentNumber: 5018 +employeeType: Contract +homePhone: +1 206 398-4679 +initials: A. N. +mobile: +1 206 610-2889 +pager: +1 206 134-7660 +roomNumber: 9669 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Monteene Azmak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monteene Azmak +sn: Azmak +description: This is Monteene Azmak's description +facsimileTelephoneNumber: +1 804 460-9295 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 452-3244 +title: Supreme Human Resources Architect +userPassword: Password1 +uid: AzmakM +givenName: Monteene +mail: AzmakM@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com +carLicense: 479DJH +departmentNumber: 5349 +employeeType: Contract +homePhone: +1 804 192-8525 +initials: M. A. +mobile: +1 804 542-1213 +pager: +1 804 856-2363 +roomNumber: 9742 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerrit Gasparotto +sn: Gasparotto +description: This is Gerrit Gasparotto's description +facsimileTelephoneNumber: +1 510 914-2595 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 439-3553 +title: Junior Human Resources Writer +userPassword: Password1 +uid: GasparoG +givenName: Gerrit +mail: GasparoG@2f5b8316f26f4fc481de13effbbd4ea6.bitwarden.com +carLicense: 27ASDF +departmentNumber: 4241 +employeeType: Employee +homePhone: +1 510 779-1003 +initials: G. G. +mobile: +1 510 377-5035 +pager: +1 510 439-1659 +roomNumber: 9097 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bep Ramsayer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bep Ramsayer +sn: Ramsayer +description: This is Bep Ramsayer's description +facsimileTelephoneNumber: +1 206 463-5519 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 206 146-5879 +title: Chief Peons Stooge +userPassword: Password1 +uid: RamsayeB +givenName: Bep +mail: RamsayeB@6959c2a103f748adbcb2ba7b29cef5d5.bitwarden.com +carLicense: 6FR5WP +departmentNumber: 1800 +employeeType: Employee +homePhone: +1 206 607-6800 +initials: B. R. +mobile: +1 206 424-5336 +pager: +1 206 885-9655 +roomNumber: 9738 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Emilee Mereu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emilee Mereu +sn: Mereu +description: This is Emilee Mereu's description +facsimileTelephoneNumber: +1 818 845-4504 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 262-8451 +title: Supreme Janitorial Director +userPassword: Password1 +uid: MereuE +givenName: Emilee +mail: MereuE@32d242671ec341929f315049a0e40a31.bitwarden.com +carLicense: XDLXV9 +departmentNumber: 5824 +employeeType: Normal +homePhone: +1 818 325-8693 +initials: E. M. +mobile: +1 818 453-3083 +pager: +1 818 170-1247 +roomNumber: 8940 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perrin Iskandar +sn: Iskandar +description: This is Perrin Iskandar's description +facsimileTelephoneNumber: +1 804 400-2484 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 141-8472 +title: Chief Janitorial Grunt +userPassword: Password1 +uid: IskandaP +givenName: Perrin +mail: IskandaP@dbd5f5a4f3554341aff4c62a69269164.bitwarden.com +carLicense: N3PV98 +departmentNumber: 4090 +employeeType: Contract +homePhone: +1 804 713-3501 +initials: P. I. +mobile: +1 804 798-8297 +pager: +1 804 101-5028 +roomNumber: 8061 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Madalena Brodie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madalena Brodie +sn: Brodie +description: This is Madalena Brodie's description +facsimileTelephoneNumber: +1 206 891-5801 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 206 119-1097 +title: Supreme Product Development Pinhead +userPassword: Password1 +uid: BrodieM +givenName: Madalena +mail: BrodieM@a74d44d69cd54766a615e2c08f9ee9f3.bitwarden.com +carLicense: 1LQQAA +departmentNumber: 4490 +employeeType: Employee +homePhone: +1 206 816-8180 +initials: M. B. +mobile: +1 206 572-6810 +pager: +1 206 671-4131 +roomNumber: 8312 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terrence DeVarennes +sn: DeVarennes +description: This is Terrence DeVarennes's description +facsimileTelephoneNumber: +1 206 709-9765 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 887-7139 +title: Master Product Testing Visionary +userPassword: Password1 +uid: DeVarenT +givenName: Terrence +mail: DeVarenT@34211993f6a54dc18f00a71a05d87998.bitwarden.com +carLicense: IBLIBS +departmentNumber: 4276 +employeeType: Normal +homePhone: +1 206 648-2721 +initials: T. D. +mobile: +1 206 870-6399 +pager: +1 206 484-4411 +roomNumber: 8442 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Liese Childers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liese Childers +sn: Childers +description: This is Liese Childers's description +facsimileTelephoneNumber: +1 408 117-6107 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 281-7747 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: ChilderL +givenName: Liese +mail: ChilderL@d97cf4afad7944a09e52ef7af5343e62.bitwarden.com +carLicense: KMCPG1 +departmentNumber: 4022 +employeeType: Normal +homePhone: +1 408 321-7080 +initials: L. C. +mobile: +1 408 555-8586 +pager: +1 408 268-4245 +roomNumber: 9988 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertrudis Grevy +sn: Grevy +description: This is Gertrudis Grevy's description +facsimileTelephoneNumber: +1 415 111-1789 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 861-8390 +title: Associate Administrative Janitor +userPassword: Password1 +uid: GrevyG +givenName: Gertrudis +mail: GrevyG@a54b6e1d0be04405aa83502caa5550a3.bitwarden.com +carLicense: KA8A4K +departmentNumber: 3242 +employeeType: Employee +homePhone: +1 415 583-5749 +initials: G. G. +mobile: +1 415 915-6441 +pager: +1 415 382-1822 +roomNumber: 9264 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shekar Finnie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shekar Finnie +sn: Finnie +description: This is Shekar Finnie's description +facsimileTelephoneNumber: +1 818 331-2977 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 966-7659 +title: Supreme Management Developer +userPassword: Password1 +uid: FinnieS +givenName: Shekar +mail: FinnieS@bd9a2e982f524b64b04ed8892de43767.bitwarden.com +carLicense: ME36TK +departmentNumber: 1240 +employeeType: Employee +homePhone: +1 818 490-8569 +initials: S. F. +mobile: +1 818 237-1879 +pager: +1 818 579-4602 +roomNumber: 8839 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ilysa Connor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilysa Connor +sn: Connor +description: This is Ilysa Connor's description +facsimileTelephoneNumber: +1 415 951-8021 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 732-7915 +title: Supreme Peons Sales Rep +userPassword: Password1 +uid: ConnorI +givenName: Ilysa +mail: ConnorI@c4e315e8ab0343648ac206c0fcb55300.bitwarden.com +carLicense: 0XT1TX +departmentNumber: 5827 +employeeType: Normal +homePhone: +1 415 987-7151 +initials: I. C. +mobile: +1 415 162-1062 +pager: +1 415 345-4009 +roomNumber: 8839 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krissie Culbertson +sn: Culbertson +description: This is Krissie Culbertson's description +facsimileTelephoneNumber: +1 804 233-4069 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 793-6989 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: CulbertK +givenName: Krissie +mail: CulbertK@c2b132c5eea24821b75062bcddc065ce.bitwarden.com +carLicense: S2AFU5 +departmentNumber: 6471 +employeeType: Employee +homePhone: +1 804 906-2881 +initials: K. C. +mobile: +1 804 554-9318 +pager: +1 804 835-8388 +roomNumber: 8336 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Milly Taghizadeh,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milly Taghizadeh +sn: Taghizadeh +description: This is Milly Taghizadeh's description +facsimileTelephoneNumber: +1 213 660-1119 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 648-8124 +title: Master Management Assistant +userPassword: Password1 +uid: TaghizaM +givenName: Milly +mail: TaghizaM@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com +carLicense: FUVUQM +departmentNumber: 8633 +employeeType: Employee +homePhone: +1 213 763-2945 +initials: M. T. +mobile: +1 213 182-1262 +pager: +1 213 403-3100 +roomNumber: 9484 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bibbye Kurauchi +sn: Kurauchi +description: This is Bibbye Kurauchi's description +facsimileTelephoneNumber: +1 510 338-4353 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 691-6548 +title: Master Product Testing Director +userPassword: Password1 +uid: KurauchB +givenName: Bibbye +mail: KurauchB@b1e6441eff8249c99c7f5c6eae360d4f.bitwarden.com +carLicense: 1R06PB +departmentNumber: 3557 +employeeType: Normal +homePhone: +1 510 825-9524 +initials: B. K. +mobile: +1 510 498-5149 +pager: +1 510 180-2197 +roomNumber: 8179 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Guglielma Gomes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guglielma Gomes +sn: Gomes +description: This is Guglielma Gomes's description +facsimileTelephoneNumber: +1 804 922-3938 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 456-1787 +title: Chief Peons Admin +userPassword: Password1 +uid: GomesG +givenName: Guglielma +mail: GomesG@2f63d6d248304182aa4c0d86ba7fd7fd.bitwarden.com +carLicense: QH5H82 +departmentNumber: 3984 +employeeType: Normal +homePhone: +1 804 420-3362 +initials: G. G. +mobile: +1 804 755-6147 +pager: +1 804 481-8550 +roomNumber: 9217 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Malorie Sei,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malorie Sei +sn: Sei +description: This is Malorie Sei's description +facsimileTelephoneNumber: +1 804 729-3161 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 359-7759 +title: Chief Product Development Visionary +userPassword: Password1 +uid: SeiM +givenName: Malorie +mail: SeiM@7660e12ec2f0413d9900f2acb2787cf3.bitwarden.com +carLicense: P0US2A +departmentNumber: 9223 +employeeType: Employee +homePhone: +1 804 921-2255 +initials: M. S. +mobile: +1 804 317-3313 +pager: +1 804 897-6197 +roomNumber: 8603 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Loella Stephenson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loella Stephenson +sn: Stephenson +description: This is Loella Stephenson's description +facsimileTelephoneNumber: +1 818 181-2158 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 334-2214 +title: Chief Product Development Assistant +userPassword: Password1 +uid: StephenL +givenName: Loella +mail: StephenL@878435e5887c47ef90f06778893d179e.bitwarden.com +carLicense: KLHXXJ +departmentNumber: 3045 +employeeType: Contract +homePhone: +1 818 357-6584 +initials: L. S. +mobile: +1 818 837-3829 +pager: +1 818 260-7253 +roomNumber: 8559 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rozalie Farr,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozalie Farr +sn: Farr +description: This is Rozalie Farr's description +facsimileTelephoneNumber: +1 213 487-3724 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 736-7194 +title: Master Management Mascot +userPassword: Password1 +uid: FarrR +givenName: Rozalie +mail: FarrR@5bfc4ef1cec94f918b8b846a80865382.bitwarden.com +carLicense: YD64PO +departmentNumber: 2994 +employeeType: Employee +homePhone: +1 213 606-8899 +initials: R. F. +mobile: +1 213 421-2439 +pager: +1 213 660-1882 +roomNumber: 8940 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jessa Humphrey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessa Humphrey +sn: Humphrey +description: This is Jessa Humphrey's description +facsimileTelephoneNumber: +1 415 425-3570 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 533-1846 +title: Master Peons Engineer +userPassword: Password1 +uid: HumphreJ +givenName: Jessa +mail: HumphreJ@ab25c8f313f4419ba014954b0448d2c3.bitwarden.com +carLicense: 3I9S6V +departmentNumber: 8143 +employeeType: Normal +homePhone: +1 415 156-9509 +initials: J. H. +mobile: +1 415 317-7721 +pager: +1 415 391-9570 +roomNumber: 8179 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pankesh Chambliss +sn: Chambliss +description: This is Pankesh Chambliss's description +facsimileTelephoneNumber: +1 213 661-9546 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 213 858-1760 +title: Supreme Product Development Madonna +userPassword: Password1 +uid: ChambliP +givenName: Pankesh +mail: ChambliP@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com +carLicense: 5WXVQF +departmentNumber: 1430 +employeeType: Employee +homePhone: +1 213 256-5293 +initials: P. C. +mobile: +1 213 880-2764 +pager: +1 213 822-6411 +roomNumber: 9621 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Audrie Rembecki,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Audrie Rembecki +sn: Rembecki +description: This is Audrie Rembecki's description +facsimileTelephoneNumber: +1 213 629-8255 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 851-9385 +title: Master Management Janitor +userPassword: Password1 +uid: RembeckA +givenName: Audrie +mail: RembeckA@b78fed9ef6a94b4d9e8bb1b5d1719aef.bitwarden.com +carLicense: 9NW2MS +departmentNumber: 8875 +employeeType: Employee +homePhone: +1 213 238-9534 +initials: A. R. +mobile: +1 213 430-9589 +pager: +1 213 407-6363 +roomNumber: 9998 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Miroslav Federico,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miroslav Federico +sn: Federico +description: This is Miroslav Federico's description +facsimileTelephoneNumber: +1 408 431-9949 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 258-6924 +title: Associate Payroll Punk +userPassword: Password1 +uid: FedericM +givenName: Miroslav +mail: FedericM@ff701dee527d4bd9bda5646b61d95c09.bitwarden.com +carLicense: MY0NN8 +departmentNumber: 5369 +employeeType: Employee +homePhone: +1 408 100-5137 +initials: M. F. +mobile: +1 408 711-6837 +pager: +1 408 288-4313 +roomNumber: 9735 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Steffi Voelcker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steffi Voelcker +sn: Voelcker +description: This is Steffi Voelcker's description +facsimileTelephoneNumber: +1 818 475-8306 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 973-5150 +title: Chief Peons Engineer +userPassword: Password1 +uid: VoelckeS +givenName: Steffi +mail: VoelckeS@55fd595ff3eb498eb38f456114e4f66d.bitwarden.com +carLicense: 7QWYE9 +departmentNumber: 7605 +employeeType: Contract +homePhone: +1 818 140-1086 +initials: S. V. +mobile: +1 818 591-8768 +pager: +1 818 908-9938 +roomNumber: 8626 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaclyn Czarnecki +sn: Czarnecki +description: This is Jaclyn Czarnecki's description +facsimileTelephoneNumber: +1 408 674-3952 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 600-5547 +title: Supreme Peons Mascot +userPassword: Password1 +uid: CzarnecJ +givenName: Jaclyn +mail: CzarnecJ@22471469e5a74d89b5185fdcb7a6b10d.bitwarden.com +carLicense: EEBP83 +departmentNumber: 1475 +employeeType: Employee +homePhone: +1 408 624-8685 +initials: J. C. +mobile: +1 408 271-5557 +pager: +1 408 487-9092 +roomNumber: 9803 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aloysia OKarina,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aloysia OKarina +sn: OKarina +description: This is Aloysia OKarina's description +facsimileTelephoneNumber: +1 818 419-7837 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 635-1387 +title: Supreme Management Warrior +userPassword: Password1 +uid: OKarinaA +givenName: Aloysia +mail: OKarinaA@35aa710455a54ec9aacb0743a9cce4e9.bitwarden.com +carLicense: 0MGV1R +departmentNumber: 5344 +employeeType: Contract +homePhone: +1 818 231-8297 +initials: A. O. +mobile: +1 818 971-9328 +pager: +1 818 758-6584 +roomNumber: 9541 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Betsy Braun,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betsy Braun +sn: Braun +description: This is Betsy Braun's description +facsimileTelephoneNumber: +1 206 362-3010 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 115-3765 +title: Master Human Resources Assistant +userPassword: Password1 +uid: BraunB +givenName: Betsy +mail: BraunB@67288b6f618543379d7c917a6d4d0385.bitwarden.com +carLicense: OU53EE +departmentNumber: 1956 +employeeType: Employee +homePhone: +1 206 945-2968 +initials: B. B. +mobile: +1 206 502-7683 +pager: +1 206 970-9814 +roomNumber: 9645 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carling Cupido,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carling Cupido +sn: Cupido +description: This is Carling Cupido's description +facsimileTelephoneNumber: +1 804 286-2183 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 904-2254 +title: Junior Product Development Visionary +userPassword: Password1 +uid: CupidoC +givenName: Carling +mail: CupidoC@a0441f048a884d1891acef81ab17bc91.bitwarden.com +carLicense: 31PYIX +departmentNumber: 6938 +employeeType: Employee +homePhone: +1 804 716-6351 +initials: C. C. +mobile: +1 804 621-1630 +pager: +1 804 717-6714 +roomNumber: 9004 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Saman McNichol,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saman McNichol +sn: McNichol +description: This is Saman McNichol's description +facsimileTelephoneNumber: +1 818 762-5375 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 176-2707 +title: Associate Management Assistant +userPassword: Password1 +uid: McNichoS +givenName: Saman +mail: McNichoS@6e6778c4dc0b46a7a3efac6eb8ad5697.bitwarden.com +carLicense: ELP58O +departmentNumber: 8675 +employeeType: Employee +homePhone: +1 818 780-8178 +initials: S. M. +mobile: +1 818 447-6453 +pager: +1 818 674-6362 +roomNumber: 8952 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dnsproj Tweddle +sn: Tweddle +description: This is Dnsproj Tweddle's description +facsimileTelephoneNumber: +1 510 965-3908 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 976-3053 +title: Associate Human Resources Warrior +userPassword: Password1 +uid: TweddleD +givenName: Dnsproj +mail: TweddleD@0aaa3fff5e9b40a799c1f750d8eb797b.bitwarden.com +carLicense: WSFX98 +departmentNumber: 2112 +employeeType: Contract +homePhone: +1 510 723-4782 +initials: D. T. +mobile: +1 510 814-8066 +pager: +1 510 911-9479 +roomNumber: 9682 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalle Devreeze +sn: Devreeze +description: This is Kalle Devreeze's description +facsimileTelephoneNumber: +1 818 872-9546 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 818 841-4876 +title: Chief Human Resources Stooge +userPassword: Password1 +uid: DevreezK +givenName: Kalle +mail: DevreezK@23f6fd02f4fc47ae857bce11e624fa96.bitwarden.com +carLicense: 9JEBFA +departmentNumber: 7517 +employeeType: Normal +homePhone: +1 818 305-6732 +initials: K. D. +mobile: +1 818 431-9135 +pager: +1 818 385-3897 +roomNumber: 8053 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Selma Slotnick,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selma Slotnick +sn: Slotnick +description: This is Selma Slotnick's description +facsimileTelephoneNumber: +1 818 862-8637 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 818 577-5068 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: SlotnicS +givenName: Selma +mail: SlotnicS@dc6a05982d874ebebc06c9a0d16ba5c2.bitwarden.com +carLicense: 960B0F +departmentNumber: 2263 +employeeType: Normal +homePhone: +1 818 159-2114 +initials: S. S. +mobile: +1 818 297-4378 +pager: +1 818 986-4965 +roomNumber: 9224 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akin Anastasiadis +sn: Anastasiadis +description: This is Akin Anastasiadis's description +facsimileTelephoneNumber: +1 818 784-6009 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 530-8771 +title: Master Janitorial Technician +userPassword: Password1 +uid: AnastasA +givenName: Akin +mail: AnastasA@9c1fdcc0e6874a8c82391032a13dcfa4.bitwarden.com +carLicense: 6CT2XT +departmentNumber: 1861 +employeeType: Contract +homePhone: +1 818 378-3811 +initials: A. A. +mobile: +1 818 310-2567 +pager: +1 818 564-6093 +roomNumber: 8994 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Felicia Holz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felicia Holz +sn: Holz +description: This is Felicia Holz's description +facsimileTelephoneNumber: +1 213 997-3671 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 125-7044 +title: Supreme Payroll Warrior +userPassword: Password1 +uid: HolzF +givenName: Felicia +mail: HolzF@189c40acad524386a961885e16a9d551.bitwarden.com +carLicense: P8TBD2 +departmentNumber: 5843 +employeeType: Employee +homePhone: +1 213 827-6689 +initials: F. H. +mobile: +1 213 738-6180 +pager: +1 213 729-6967 +roomNumber: 9734 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joke Cottengim,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joke Cottengim +sn: Cottengim +description: This is Joke Cottengim's description +facsimileTelephoneNumber: +1 408 119-9969 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 469-6470 +title: Supreme Product Testing Writer +userPassword: Password1 +uid: CottengJ +givenName: Joke +mail: CottengJ@6dc0e5d935a04bb897ee53893751111f.bitwarden.com +carLicense: TCS01E +departmentNumber: 7988 +employeeType: Normal +homePhone: +1 408 615-9926 +initials: J. C. +mobile: +1 408 124-2642 +pager: +1 408 512-8534 +roomNumber: 8000 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sonoe Linke,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonoe Linke +sn: Linke +description: This is Sonoe Linke's description +facsimileTelephoneNumber: +1 206 765-5574 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 206 391-2274 +title: Associate Product Development Sales Rep +userPassword: Password1 +uid: LinkeS +givenName: Sonoe +mail: LinkeS@46c8675a51b74aa5ba283cf789fe901d.bitwarden.com +carLicense: 57NUPA +departmentNumber: 3752 +employeeType: Normal +homePhone: +1 206 798-5165 +initials: S. L. +mobile: +1 206 996-8727 +pager: +1 206 834-4003 +roomNumber: 9575 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marce Tracey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marce Tracey +sn: Tracey +description: This is Marce Tracey's description +facsimileTelephoneNumber: +1 510 795-6736 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 510 503-7948 +title: Master Administrative Admin +userPassword: Password1 +uid: TraceyM +givenName: Marce +mail: TraceyM@d1e70dc6cc51492f97ff25ba684b2627.bitwarden.com +carLicense: F8HR8C +departmentNumber: 1653 +employeeType: Employee +homePhone: +1 510 209-6149 +initials: M. T. +mobile: +1 510 788-5941 +pager: +1 510 394-1334 +roomNumber: 9777 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Muffin Gadbois,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Muffin Gadbois +sn: Gadbois +description: This is Muffin Gadbois's description +facsimileTelephoneNumber: +1 804 877-8272 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 895-7143 +title: Junior Management Pinhead +userPassword: Password1 +uid: GadboisM +givenName: Muffin +mail: GadboisM@47c8f2050dbd47fbb19d2678b904f394.bitwarden.com +carLicense: 22S6N2 +departmentNumber: 8858 +employeeType: Contract +homePhone: +1 804 954-4772 +initials: M. G. +mobile: +1 804 588-7141 +pager: +1 804 532-5448 +roomNumber: 8213 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ros Rajwani,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ros Rajwani +sn: Rajwani +description: This is Ros Rajwani's description +facsimileTelephoneNumber: +1 818 287-4412 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 926-5931 +title: Supreme Peons Visionary +userPassword: Password1 +uid: RajwaniR +givenName: Ros +mail: RajwaniR@27bcaa4785014c5c91369f5095a41ea2.bitwarden.com +carLicense: 7Y4BVS +departmentNumber: 7526 +employeeType: Normal +homePhone: +1 818 328-8270 +initials: R. R. +mobile: +1 818 947-2079 +pager: +1 818 841-4826 +roomNumber: 9392 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lynnelle Shane,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynnelle Shane +sn: Shane +description: This is Lynnelle Shane's description +facsimileTelephoneNumber: +1 804 808-7404 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 674-2841 +title: Associate Payroll Writer +userPassword: Password1 +uid: ShaneL +givenName: Lynnelle +mail: ShaneL@f93d2785fb994aaa8ec423242f6986a1.bitwarden.com +carLicense: NANYTS +departmentNumber: 8995 +employeeType: Employee +homePhone: +1 804 432-1903 +initials: L. S. +mobile: +1 804 851-9211 +pager: +1 804 629-8748 +roomNumber: 8931 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kissee Ide,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kissee Ide +sn: Ide +description: This is Kissee Ide's description +facsimileTelephoneNumber: +1 818 519-3998 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 408-6876 +title: Chief Peons Punk +userPassword: Password1 +uid: IdeK +givenName: Kissee +mail: IdeK@83f78532c82a4f77a10f2d7460348b85.bitwarden.com +carLicense: OCLH3I +departmentNumber: 5713 +employeeType: Normal +homePhone: +1 818 973-2312 +initials: K. I. +mobile: +1 818 359-4776 +pager: +1 818 604-8900 +roomNumber: 9562 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leesa Trader,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leesa Trader +sn: Trader +description: This is Leesa Trader's description +facsimileTelephoneNumber: +1 408 222-6905 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 926-6928 +title: Master Peons Warrior +userPassword: Password1 +uid: TraderL +givenName: Leesa +mail: TraderL@e4a770eb171044f780cef5d883eb3a3f.bitwarden.com +carLicense: YMROV8 +departmentNumber: 1341 +employeeType: Normal +homePhone: +1 408 988-9472 +initials: L. T. +mobile: +1 408 976-8726 +pager: +1 408 537-6638 +roomNumber: 8530 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Indy Pullan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Indy Pullan +sn: Pullan +description: This is Indy Pullan's description +facsimileTelephoneNumber: +1 804 597-1596 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 248-8280 +title: Associate Human Resources Technician +userPassword: Password1 +uid: PullanI +givenName: Indy +mail: PullanI@80dd2ec5de3e4cba8ab6e9385f8b5eaa.bitwarden.com +carLicense: 6MD1W8 +departmentNumber: 9963 +employeeType: Employee +homePhone: +1 804 552-1307 +initials: I. P. +mobile: +1 804 117-1398 +pager: +1 804 384-5281 +roomNumber: 9195 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Micro Valente,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micro Valente +sn: Valente +description: This is Micro Valente's description +facsimileTelephoneNumber: +1 818 989-8887 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 310-4866 +title: Junior Product Development President +userPassword: Password1 +uid: ValenteM +givenName: Micro +mail: ValenteM@13f716505b994218abaf3b2234e80f5f.bitwarden.com +carLicense: 54NUGA +departmentNumber: 4101 +employeeType: Contract +homePhone: +1 818 373-1949 +initials: M. V. +mobile: +1 818 548-6423 +pager: +1 818 423-7616 +roomNumber: 8697 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hendrika Lackie +sn: Lackie +description: This is Hendrika Lackie's description +facsimileTelephoneNumber: +1 804 837-6021 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 417-6042 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: LackieH +givenName: Hendrika +mail: LackieH@26874cbc58cb45a4a2a676c29fc0a053.bitwarden.com +carLicense: 951IUO +departmentNumber: 3136 +employeeType: Normal +homePhone: +1 804 901-5866 +initials: H. L. +mobile: +1 804 491-8932 +pager: +1 804 993-8738 +roomNumber: 8057 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lea Marineau,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lea Marineau +sn: Marineau +description: This is Lea Marineau's description +facsimileTelephoneNumber: +1 213 768-9419 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 900-1241 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: MarineaL +givenName: Lea +mail: MarineaL@13757531d26649c1ba7e4dc18bfd6a62.bitwarden.com +carLicense: XDJ4PC +departmentNumber: 8897 +employeeType: Contract +homePhone: +1 213 984-8356 +initials: L. M. +mobile: +1 213 219-8819 +pager: +1 213 920-2179 +roomNumber: 8389 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dinh Yadollahi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dinh Yadollahi +sn: Yadollahi +description: This is Dinh Yadollahi's description +facsimileTelephoneNumber: +1 510 335-5157 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 412-7673 +title: Associate Management President +userPassword: Password1 +uid: YadollaD +givenName: Dinh +mail: YadollaD@a1a01d013d8e44f99cffc6de4935e97e.bitwarden.com +carLicense: XAX4YS +departmentNumber: 9313 +employeeType: Contract +homePhone: +1 510 673-3178 +initials: D. Y. +mobile: +1 510 855-1553 +pager: +1 510 537-4414 +roomNumber: 8737 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nj Patchett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nj Patchett +sn: Patchett +description: This is Nj Patchett's description +facsimileTelephoneNumber: +1 408 439-2866 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 855-6128 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: PatchetN +givenName: Nj +mail: PatchetN@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com +carLicense: 4W1N9V +departmentNumber: 4987 +employeeType: Employee +homePhone: +1 408 457-1621 +initials: N. P. +mobile: +1 408 128-9507 +pager: +1 408 864-5143 +roomNumber: 8105 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vicente Zenisek +sn: Zenisek +description: This is Vicente Zenisek's description +facsimileTelephoneNumber: +1 804 804-8455 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 243-1447 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: ZenisekV +givenName: Vicente +mail: ZenisekV@f1af10e65a3c4deea04ab7a7f844eadd.bitwarden.com +carLicense: NW1717 +departmentNumber: 2920 +employeeType: Normal +homePhone: +1 804 106-6474 +initials: V. Z. +mobile: +1 804 652-8545 +pager: +1 804 542-3325 +roomNumber: 8050 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Helsa Calis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helsa Calis +sn: Calis +description: This is Helsa Calis's description +facsimileTelephoneNumber: +1 804 182-2112 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 804 702-8460 +title: Supreme Administrative Manager +userPassword: Password1 +uid: CalisH +givenName: Helsa +mail: CalisH@0f20bc491a46484db42d8b650f7e698d.bitwarden.com +carLicense: MW3WFF +departmentNumber: 1828 +employeeType: Contract +homePhone: +1 804 398-4417 +initials: H. C. +mobile: +1 804 378-2190 +pager: +1 804 744-5591 +roomNumber: 9002 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Drona Panter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drona Panter +sn: Panter +description: This is Drona Panter's description +facsimileTelephoneNumber: +1 510 230-3901 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 232-5169 +title: Associate Human Resources Director +userPassword: Password1 +uid: PanterD +givenName: Drona +mail: PanterD@45a31d4ab53e40acbe69b0d9b04b9ec0.bitwarden.com +carLicense: ET27UA +departmentNumber: 7232 +employeeType: Employee +homePhone: +1 510 694-1591 +initials: D. P. +mobile: +1 510 873-4538 +pager: +1 510 360-3323 +roomNumber: 8305 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Filia Magnusson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Filia Magnusson +sn: Magnusson +description: This is Filia Magnusson's description +facsimileTelephoneNumber: +1 206 236-8503 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 403-9045 +title: Master Management Fellow +userPassword: Password1 +uid: MagnussF +givenName: Filia +mail: MagnussF@dd5583b679564f14b7cb6461f47a6a4f.bitwarden.com +carLicense: 6CFHCV +departmentNumber: 9540 +employeeType: Normal +homePhone: +1 206 366-4334 +initials: F. M. +mobile: +1 206 714-3236 +pager: +1 206 635-4119 +roomNumber: 8936 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bernadette Schmelzel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernadette Schmelzel +sn: Schmelzel +description: This is Bernadette Schmelzel's description +facsimileTelephoneNumber: +1 206 387-1579 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 206 802-8339 +title: Junior Management Manager +userPassword: Password1 +uid: SchmelzB +givenName: Bernadette +mail: SchmelzB@a5413b46913143afa665313de01c325c.bitwarden.com +carLicense: PP3BJ4 +departmentNumber: 3533 +employeeType: Employee +homePhone: +1 206 705-4180 +initials: B. S. +mobile: +1 206 868-7213 +pager: +1 206 253-1363 +roomNumber: 9382 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elva Radcliffe,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elva Radcliffe +sn: Radcliffe +description: This is Elva Radcliffe's description +facsimileTelephoneNumber: +1 206 747-2086 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 922-2421 +title: Associate Administrative Writer +userPassword: Password1 +uid: RadclifE +givenName: Elva +mail: RadclifE@ae02c83ad0ef40a7bee5a95ca1e9e096.bitwarden.com +carLicense: TM1R9X +departmentNumber: 5953 +employeeType: Contract +homePhone: +1 206 687-7868 +initials: E. R. +mobile: +1 206 790-5405 +pager: +1 206 975-6416 +roomNumber: 9272 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Janson Sealy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janson Sealy +sn: Sealy +description: This is Janson Sealy's description +facsimileTelephoneNumber: +1 510 439-6588 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 991-8887 +title: Chief Human Resources Fellow +userPassword: Password1 +uid: SealyJ +givenName: Janson +mail: SealyJ@ec1c957a0ac64fc4b62ba8838e8e6e5a.bitwarden.com +carLicense: JXI7B7 +departmentNumber: 4058 +employeeType: Contract +homePhone: +1 510 807-1438 +initials: J. S. +mobile: +1 510 799-6841 +pager: +1 510 850-7959 +roomNumber: 8425 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bethina Horak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bethina Horak +sn: Horak +description: This is Bethina Horak's description +facsimileTelephoneNumber: +1 415 753-7606 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 962-3214 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: HorakB +givenName: Bethina +mail: HorakB@d95f88e753834af2ae01c6025a41df6e.bitwarden.com +carLicense: C5PP0U +departmentNumber: 8011 +employeeType: Normal +homePhone: +1 415 659-6067 +initials: B. H. +mobile: +1 415 485-5762 +pager: +1 415 171-5848 +roomNumber: 9575 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Manny Burkhardt,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manny Burkhardt +sn: Burkhardt +description: This is Manny Burkhardt's description +facsimileTelephoneNumber: +1 804 952-5553 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 908-1724 +title: Associate Product Development Fellow +userPassword: Password1 +uid: BurkharM +givenName: Manny +mail: BurkharM@58b1feb535e94d39a943e5e96951c27d.bitwarden.com +carLicense: UJSFPW +departmentNumber: 1550 +employeeType: Contract +homePhone: +1 804 306-8450 +initials: M. B. +mobile: +1 804 840-9501 +pager: +1 804 157-8998 +roomNumber: 8375 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mehmud Rios,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mehmud Rios +sn: Rios +description: This is Mehmud Rios's description +facsimileTelephoneNumber: +1 415 821-3529 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 675-5355 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: RiosM +givenName: Mehmud +mail: RiosM@b73122735ce441d6a5329e1b3833484b.bitwarden.com +carLicense: FS0CQB +departmentNumber: 6478 +employeeType: Normal +homePhone: +1 415 505-7632 +initials: M. R. +mobile: +1 415 710-3902 +pager: +1 415 805-1741 +roomNumber: 9523 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Priscilla Schirmer +sn: Schirmer +description: This is Priscilla Schirmer's description +facsimileTelephoneNumber: +1 415 788-8111 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 748-8303 +title: Supreme Payroll Janitor +userPassword: Password1 +uid: SchirmeP +givenName: Priscilla +mail: SchirmeP@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com +carLicense: KG815O +departmentNumber: 1175 +employeeType: Normal +homePhone: +1 415 869-6917 +initials: P. S. +mobile: +1 415 693-4592 +pager: +1 415 772-9929 +roomNumber: 9613 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jinann Wildeman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jinann Wildeman +sn: Wildeman +description: This is Jinann Wildeman's description +facsimileTelephoneNumber: +1 408 330-1684 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 989-9221 +title: Junior Management Fellow +userPassword: Password1 +uid: WildemaJ +givenName: Jinann +mail: WildemaJ@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com +carLicense: WBJJLG +departmentNumber: 3307 +employeeType: Contract +homePhone: +1 408 989-9568 +initials: J. W. +mobile: +1 408 354-8992 +pager: +1 408 976-8883 +roomNumber: 9564 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lisetta Semler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lisetta Semler +sn: Semler +description: This is Lisetta Semler's description +facsimileTelephoneNumber: +1 206 132-7190 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 494-3280 +title: Junior Management Developer +userPassword: Password1 +uid: SemlerL +givenName: Lisetta +mail: SemlerL@ffcb266a0b9d4db986bd5378efac6255.bitwarden.com +carLicense: 3MIICE +departmentNumber: 2678 +employeeType: Normal +homePhone: +1 206 386-7060 +initials: L. S. +mobile: +1 206 279-6415 +pager: +1 206 801-8441 +roomNumber: 9809 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Trenna Fradette,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trenna Fradette +sn: Fradette +description: This is Trenna Fradette's description +facsimileTelephoneNumber: +1 206 516-4016 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 660-9541 +title: Supreme Janitorial Director +userPassword: Password1 +uid: FradettT +givenName: Trenna +mail: FradettT@37098c17a937400b986b54e1bc765718.bitwarden.com +carLicense: XAOX0G +departmentNumber: 2161 +employeeType: Employee +homePhone: +1 206 961-2906 +initials: T. F. +mobile: +1 206 742-2142 +pager: +1 206 667-5317 +roomNumber: 9865 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffi Vilozny +sn: Vilozny +description: This is Tiffi Vilozny's description +facsimileTelephoneNumber: +1 415 222-1581 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 996-4129 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: ViloznyT +givenName: Tiffi +mail: ViloznyT@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com +carLicense: 1BYUDP +departmentNumber: 1914 +employeeType: Contract +homePhone: +1 415 523-5010 +initials: T. V. +mobile: +1 415 532-6739 +pager: +1 415 414-9036 +roomNumber: 9089 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sashenka Warwick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sashenka Warwick +sn: Warwick +description: This is Sashenka Warwick's description +facsimileTelephoneNumber: +1 804 952-5988 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 813-5157 +title: Associate Payroll Vice President +userPassword: Password1 +uid: WarwickS +givenName: Sashenka +mail: WarwickS@118d571b1571425c87bcb58317919134.bitwarden.com +carLicense: X61B3W +departmentNumber: 7775 +employeeType: Employee +homePhone: +1 804 742-3847 +initials: S. W. +mobile: +1 804 427-2057 +pager: +1 804 551-7575 +roomNumber: 8068 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bassam Cisco,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bassam Cisco +sn: Cisco +description: This is Bassam Cisco's description +facsimileTelephoneNumber: +1 818 430-2616 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 527-6655 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: CiscoB +givenName: Bassam +mail: CiscoB@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com +carLicense: 9IXCC2 +departmentNumber: 7161 +employeeType: Employee +homePhone: +1 818 148-9879 +initials: B. C. +mobile: +1 818 368-8847 +pager: +1 818 605-4697 +roomNumber: 8032 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yvan Kea,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yvan Kea +sn: Kea +description: This is Yvan Kea's description +facsimileTelephoneNumber: +1 510 193-5971 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 152-3696 +title: Supreme Management Stooge +userPassword: Password1 +uid: KeaY +givenName: Yvan +mail: KeaY@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com +carLicense: M5MRT4 +departmentNumber: 5328 +employeeType: Normal +homePhone: +1 510 334-8203 +initials: Y. K. +mobile: +1 510 366-8699 +pager: +1 510 676-8325 +roomNumber: 8433 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ijff Monforton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ijff Monforton +sn: Monforton +description: This is Ijff Monforton's description +facsimileTelephoneNumber: +1 213 290-4912 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 213 966-7150 +title: Junior Product Development Writer +userPassword: Password1 +uid: MonfortI +givenName: Ijff +mail: MonfortI@f273a190f14545708d6c984111d46055.bitwarden.com +carLicense: 64A0F8 +departmentNumber: 5145 +employeeType: Normal +homePhone: +1 213 584-5642 +initials: I. M. +mobile: +1 213 494-7396 +pager: +1 213 732-9003 +roomNumber: 8147 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassi Fadlallah +sn: Fadlallah +description: This is Cassi Fadlallah's description +facsimileTelephoneNumber: +1 415 960-2951 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 767-5878 +title: Master Payroll Technician +userPassword: Password1 +uid: FadlallC +givenName: Cassi +mail: FadlallC@1dc980ce277d4e6690f81b768ece41e0.bitwarden.com +carLicense: WJOT15 +departmentNumber: 3198 +employeeType: Employee +homePhone: +1 415 607-3871 +initials: C. F. +mobile: +1 415 391-2925 +pager: +1 415 813-6226 +roomNumber: 8796 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynsey Tabalba +sn: Tabalba +description: This is Lynsey Tabalba's description +facsimileTelephoneNumber: +1 818 525-5892 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 470-2855 +title: Supreme Product Development Punk +userPassword: Password1 +uid: TabalbaL +givenName: Lynsey +mail: TabalbaL@528c9fa3f4634d4b9c93989a607b8098.bitwarden.com +carLicense: O5WNP2 +departmentNumber: 1956 +employeeType: Normal +homePhone: +1 818 441-1195 +initials: L. T. +mobile: +1 818 523-8152 +pager: +1 818 308-7393 +roomNumber: 8630 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anderson Nunold,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anderson Nunold +sn: Nunold +description: This is Anderson Nunold's description +facsimileTelephoneNumber: +1 804 252-6072 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 112-4942 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: NunoldA +givenName: Anderson +mail: NunoldA@edf99b25a1c649749aeb3745c7ce07a0.bitwarden.com +carLicense: RII0X4 +departmentNumber: 4338 +employeeType: Employee +homePhone: +1 804 532-7282 +initials: A. N. +mobile: +1 804 428-2073 +pager: +1 804 469-4218 +roomNumber: 9620 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dulcia Burkey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulcia Burkey +sn: Burkey +description: This is Dulcia Burkey's description +facsimileTelephoneNumber: +1 818 799-1476 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 818 719-3299 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: BurkeyD +givenName: Dulcia +mail: BurkeyD@1a998e292598475391af8dec2bcfc1a8.bitwarden.com +carLicense: KG1LV8 +departmentNumber: 4875 +employeeType: Normal +homePhone: +1 818 294-9478 +initials: D. B. +mobile: +1 818 836-9294 +pager: +1 818 585-7026 +roomNumber: 9651 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Isidora Wilczewski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isidora Wilczewski +sn: Wilczewski +description: This is Isidora Wilczewski's description +facsimileTelephoneNumber: +1 206 502-5509 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 312-5554 +title: Master Management Director +userPassword: Password1 +uid: WilczewI +givenName: Isidora +mail: WilczewI@dc401fe14a3e4403a51a351982eb441b.bitwarden.com +carLicense: MSTQRB +departmentNumber: 1578 +employeeType: Employee +homePhone: +1 206 770-8197 +initials: I. W. +mobile: +1 206 249-8968 +pager: +1 206 157-6931 +roomNumber: 8871 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alexine Tarof,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alexine Tarof +sn: Tarof +description: This is Alexine Tarof's description +facsimileTelephoneNumber: +1 818 737-6662 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 378-8927 +title: Associate Product Development Stooge +userPassword: Password1 +uid: TarofA +givenName: Alexine +mail: TarofA@b4c7fc4bf99a4f9f92481679c9a4b8b5.bitwarden.com +carLicense: 95DFW7 +departmentNumber: 1754 +employeeType: Normal +homePhone: +1 818 716-9470 +initials: A. T. +mobile: +1 818 925-4876 +pager: +1 818 158-8309 +roomNumber: 8082 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ashok Bagg,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashok Bagg +sn: Bagg +description: This is Ashok Bagg's description +facsimileTelephoneNumber: +1 206 596-3019 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 206 622-7864 +title: Junior Management Figurehead +userPassword: Password1 +uid: BaggA +givenName: Ashok +mail: BaggA@5ecfe4c8aaf4487fb624902f7b975e7f.bitwarden.com +carLicense: 1LHFDW +departmentNumber: 5853 +employeeType: Employee +homePhone: +1 206 408-4046 +initials: A. B. +mobile: +1 206 728-3850 +pager: +1 206 975-9608 +roomNumber: 9175 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Antoni Friesen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antoni Friesen +sn: Friesen +description: This is Antoni Friesen's description +facsimileTelephoneNumber: +1 415 204-7001 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 271-2359 +title: Associate Payroll Engineer +userPassword: Password1 +uid: FriesenA +givenName: Antoni +mail: FriesenA@6e287118b6904f0fb9c650aef9285536.bitwarden.com +carLicense: JNMMYL +departmentNumber: 9356 +employeeType: Employee +homePhone: +1 415 861-2703 +initials: A. F. +mobile: +1 415 819-9149 +pager: +1 415 506-6769 +roomNumber: 8675 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Beate Ribot,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beate Ribot +sn: Ribot +description: This is Beate Ribot's description +facsimileTelephoneNumber: +1 213 704-7346 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 530-8981 +title: Chief Administrative Visionary +userPassword: Password1 +uid: RibotB +givenName: Beate +mail: RibotB@c92fece191874f98841ffeece2238130.bitwarden.com +carLicense: UCBJQA +departmentNumber: 2621 +employeeType: Normal +homePhone: +1 213 374-4232 +initials: B. R. +mobile: +1 213 375-6924 +pager: +1 213 744-9411 +roomNumber: 8639 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evaleen Caltrider +sn: Caltrider +description: This is Evaleen Caltrider's description +facsimileTelephoneNumber: +1 213 967-8713 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 213 605-1917 +title: Associate Janitorial Director +userPassword: Password1 +uid: CaltridE +givenName: Evaleen +mail: CaltridE@392576165dfe4cafb8fa1d35ef39e725.bitwarden.com +carLicense: 9W9FT4 +departmentNumber: 2956 +employeeType: Contract +homePhone: +1 213 474-8391 +initials: E. C. +mobile: +1 213 131-1328 +pager: +1 213 682-6879 +roomNumber: 9776 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Pde Bautista,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pde Bautista +sn: Bautista +description: This is Pde Bautista's description +facsimileTelephoneNumber: +1 206 956-9664 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 957-6516 +title: Chief Janitorial Architect +userPassword: Password1 +uid: BautistP +givenName: Pde +mail: BautistP@ef19dcebf9c048d588e1e2f72c4bddc2.bitwarden.com +carLicense: 9RV33C +departmentNumber: 2875 +employeeType: Normal +homePhone: +1 206 145-1726 +initials: P. B. +mobile: +1 206 295-1490 +pager: +1 206 829-9135 +roomNumber: 8721 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marco Cho,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marco Cho +sn: Cho +description: This is Marco Cho's description +facsimileTelephoneNumber: +1 510 896-6557 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 510 416-3869 +title: Chief Administrative Visionary +userPassword: Password1 +uid: ChoM +givenName: Marco +mail: ChoM@cc02f064f98b40fea712c7f35045e528.bitwarden.com +carLicense: 1WIRQM +departmentNumber: 3081 +employeeType: Normal +homePhone: +1 510 323-5427 +initials: M. C. +mobile: +1 510 471-4053 +pager: +1 510 324-3813 +roomNumber: 9334 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrianna Ruppert +sn: Ruppert +description: This is Adrianna Ruppert's description +facsimileTelephoneNumber: +1 804 673-5592 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 975-9001 +title: Chief Human Resources Developer +userPassword: Password1 +uid: RuppertA +givenName: Adrianna +mail: RuppertA@ecbe7413d7a74dce8478d8a77a5f394f.bitwarden.com +carLicense: RFBD36 +departmentNumber: 3039 +employeeType: Contract +homePhone: +1 804 583-8984 +initials: A. R. +mobile: +1 804 788-7393 +pager: +1 804 954-5821 +roomNumber: 8288 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ashly McNitt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashly McNitt +sn: McNitt +description: This is Ashly McNitt's description +facsimileTelephoneNumber: +1 206 489-7723 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 710-8242 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: McNittA +givenName: Ashly +mail: McNittA@53b9160b2496409caa1d33b8b06ca0f2.bitwarden.com +carLicense: LLY8F9 +departmentNumber: 6295 +employeeType: Contract +homePhone: +1 206 117-8701 +initials: A. M. +mobile: +1 206 141-2135 +pager: +1 206 307-8729 +roomNumber: 8362 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ginni Brunelle,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginni Brunelle +sn: Brunelle +description: This is Ginni Brunelle's description +facsimileTelephoneNumber: +1 510 472-4766 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 183-3218 +title: Junior Administrative Fellow +userPassword: Password1 +uid: BrunellG +givenName: Ginni +mail: BrunellG@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com +carLicense: FI0PCK +departmentNumber: 8662 +employeeType: Employee +homePhone: +1 510 882-9259 +initials: G. B. +mobile: +1 510 335-4796 +pager: +1 510 836-9412 +roomNumber: 9235 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maybelle Hammond,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maybelle Hammond +sn: Hammond +description: This is Maybelle Hammond's description +facsimileTelephoneNumber: +1 213 833-9767 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 951-1795 +title: Supreme Management Visionary +userPassword: Password1 +uid: HammondM +givenName: Maybelle +mail: HammondM@1bd38dfda0ec498fac15746919a63a0e.bitwarden.com +carLicense: YD3T97 +departmentNumber: 3457 +employeeType: Normal +homePhone: +1 213 618-3705 +initials: M. H. +mobile: +1 213 660-3032 +pager: +1 213 804-8382 +roomNumber: 8467 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Georgine Delaney,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgine Delaney +sn: Delaney +description: This is Georgine Delaney's description +facsimileTelephoneNumber: +1 408 316-7165 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 194-7873 +title: Master Peons Czar +userPassword: Password1 +uid: DelaneyG +givenName: Georgine +mail: DelaneyG@d0bb47da3574428792ab636cf81dc1b3.bitwarden.com +carLicense: L81233 +departmentNumber: 2743 +employeeType: Normal +homePhone: +1 408 530-8099 +initials: G. D. +mobile: +1 408 539-9970 +pager: +1 408 139-5904 +roomNumber: 8092 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Brent Guindi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brent Guindi +sn: Guindi +description: This is Brent Guindi's description +facsimileTelephoneNumber: +1 818 607-8536 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 723-2705 +title: Chief Janitorial Admin +userPassword: Password1 +uid: GuindiB +givenName: Brent +mail: GuindiB@309b117b618847b7b78c15d90bccac07.bitwarden.com +carLicense: LRNHQU +departmentNumber: 9337 +employeeType: Employee +homePhone: +1 818 881-3462 +initials: B. G. +mobile: +1 818 117-5906 +pager: +1 818 247-3217 +roomNumber: 9318 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Annette Madgett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annette Madgett +sn: Madgett +description: This is Annette Madgett's description +facsimileTelephoneNumber: +1 804 651-9938 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 757-7679 +title: Chief Management Stooge +userPassword: Password1 +uid: MadgettA +givenName: Annette +mail: MadgettA@87e96f783b644d65b5110e046327acbd.bitwarden.com +carLicense: U6PBD7 +departmentNumber: 9437 +employeeType: Contract +homePhone: +1 804 863-3250 +initials: A. M. +mobile: +1 804 860-6701 +pager: +1 804 782-7879 +roomNumber: 9319 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tesa Duda,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tesa Duda +sn: Duda +description: This is Tesa Duda's description +facsimileTelephoneNumber: +1 408 787-1127 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 811-7629 +title: Associate Payroll Consultant +userPassword: Password1 +uid: DudaT +givenName: Tesa +mail: DudaT@de48d028368243f491b13126a0955d2b.bitwarden.com +carLicense: 08160R +departmentNumber: 6044 +employeeType: Contract +homePhone: +1 408 183-1499 +initials: T. D. +mobile: +1 408 114-8975 +pager: +1 408 584-1526 +roomNumber: 9070 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Idus Welch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idus Welch +sn: Welch +description: This is Idus Welch's description +facsimileTelephoneNumber: +1 213 431-2065 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 765-6875 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: WelchI +givenName: Idus +mail: WelchI@341209807c3b449193b094017d62cb24.bitwarden.com +carLicense: IDGJH0 +departmentNumber: 3718 +employeeType: Employee +homePhone: +1 213 612-5693 +initials: I. W. +mobile: +1 213 157-9523 +pager: +1 213 204-8077 +roomNumber: 9900 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katine BeattieHillier +sn: BeattieHillier +description: This is Katine BeattieHillier's description +facsimileTelephoneNumber: +1 804 588-2649 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 804 972-2639 +title: Associate Janitorial President +userPassword: Password1 +uid: BeattieK +givenName: Katine +mail: BeattieK@6d0942ba8f2d4a37a2dd747e99b7c4eb.bitwarden.com +carLicense: LPPB2T +departmentNumber: 6355 +employeeType: Contract +homePhone: +1 804 118-3253 +initials: K. B. +mobile: +1 804 979-9634 +pager: +1 804 838-5419 +roomNumber: 8860 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyssa Gavens +sn: Gavens +description: This is Lyssa Gavens's description +facsimileTelephoneNumber: +1 804 300-5975 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 165-2216 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: GavensL +givenName: Lyssa +mail: GavensL@c06f5d628bd7482da3cd966d3e8be7ba.bitwarden.com +carLicense: QTRQLU +departmentNumber: 7400 +employeeType: Contract +homePhone: +1 804 236-8644 +initials: L. G. +mobile: +1 804 972-3682 +pager: +1 804 564-8242 +roomNumber: 8512 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrtice Maheu +sn: Maheu +description: This is Myrtice Maheu's description +facsimileTelephoneNumber: +1 415 311-7149 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 730-7325 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: MaheuM +givenName: Myrtice +mail: MaheuM@24c88e38c3b84591a556764222d2f663.bitwarden.com +carLicense: 7E9E6C +departmentNumber: 7481 +employeeType: Employee +homePhone: +1 415 853-9591 +initials: M. M. +mobile: +1 415 542-6073 +pager: +1 415 933-6059 +roomNumber: 9590 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fina Volkmann,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fina Volkmann +sn: Volkmann +description: This is Fina Volkmann's description +facsimileTelephoneNumber: +1 213 726-3515 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 225-2955 +title: Master Payroll Manager +userPassword: Password1 +uid: VolkmanF +givenName: Fina +mail: VolkmanF@b463f1d05e7e4eaba404b90bcd29cc1e.bitwarden.com +carLicense: YGA32R +departmentNumber: 7655 +employeeType: Normal +homePhone: +1 213 765-1270 +initials: F. V. +mobile: +1 213 317-6580 +pager: +1 213 378-8683 +roomNumber: 9103 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Eirena Mahn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eirena Mahn +sn: Mahn +description: This is Eirena Mahn's description +facsimileTelephoneNumber: +1 213 466-3795 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 216-1727 +title: Supreme Janitorial Figurehead +userPassword: Password1 +uid: MahnE +givenName: Eirena +mail: MahnE@0152a211f3f440b4af045cb6354f524e.bitwarden.com +carLicense: RJW9GK +departmentNumber: 3441 +employeeType: Contract +homePhone: +1 213 560-7469 +initials: E. M. +mobile: +1 213 221-1790 +pager: +1 213 971-9434 +roomNumber: 9998 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Pinakin Spooner,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pinakin Spooner +sn: Spooner +description: This is Pinakin Spooner's description +facsimileTelephoneNumber: +1 415 762-5466 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 804-2878 +title: Master Management President +userPassword: Password1 +uid: SpoonerP +givenName: Pinakin +mail: SpoonerP@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com +carLicense: 0XT91H +departmentNumber: 6360 +employeeType: Contract +homePhone: +1 415 540-3924 +initials: P. S. +mobile: +1 415 650-6064 +pager: +1 415 405-1941 +roomNumber: 8448 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luciana Scarffe +sn: Scarffe +description: This is Luciana Scarffe's description +facsimileTelephoneNumber: +1 804 599-2722 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 804 351-8991 +title: Supreme Product Testing Punk +userPassword: Password1 +uid: ScarffeL +givenName: Luciana +mail: ScarffeL@2351067d51a3467b820158a0674b058a.bitwarden.com +carLicense: CVDJ0R +departmentNumber: 1420 +employeeType: Contract +homePhone: +1 804 682-3831 +initials: L. S. +mobile: +1 804 935-3208 +pager: +1 804 653-2516 +roomNumber: 9981 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esther Popieraitis +sn: Popieraitis +description: This is Esther Popieraitis's description +facsimileTelephoneNumber: +1 206 368-1300 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 877-8022 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: PopieraE +givenName: Esther +mail: PopieraE@1ca6d69a45f64604926213dd1e115851.bitwarden.com +carLicense: CMO03B +departmentNumber: 6579 +employeeType: Employee +homePhone: +1 206 494-3552 +initials: E. P. +mobile: +1 206 687-3438 +pager: +1 206 982-7090 +roomNumber: 8833 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryellen Receiving +sn: Receiving +description: This is Maryellen Receiving's description +facsimileTelephoneNumber: +1 415 443-2123 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 824-3615 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: ReceiviM +givenName: Maryellen +mail: ReceiviM@03bb59f0f5b24019aa5b034a3fadd7fe.bitwarden.com +carLicense: 90PCKB +departmentNumber: 8771 +employeeType: Contract +homePhone: +1 415 882-3867 +initials: M. R. +mobile: +1 415 577-8307 +pager: +1 415 667-2420 +roomNumber: 8820 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kannan McCabe,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kannan McCabe +sn: McCabe +description: This is Kannan McCabe's description +facsimileTelephoneNumber: +1 206 761-5768 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 469-3611 +title: Master Management Engineer +userPassword: Password1 +uid: McCabeK +givenName: Kannan +mail: McCabeK@51dbb26cdbdc4f95a7093a6bb469b01b.bitwarden.com +carLicense: WTGDSV +departmentNumber: 4864 +employeeType: Employee +homePhone: +1 206 176-6642 +initials: K. M. +mobile: +1 206 807-6485 +pager: +1 206 725-3075 +roomNumber: 9005 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WaiBun Sloane +sn: Sloane +description: This is WaiBun Sloane's description +facsimileTelephoneNumber: +1 213 131-9038 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 396-1187 +title: Junior Human Resources Engineer +userPassword: Password1 +uid: SloaneW +givenName: WaiBun +mail: SloaneW@fef32f3295c44e0185e68196ce06374a.bitwarden.com +carLicense: 3V5KIJ +departmentNumber: 8038 +employeeType: Contract +homePhone: +1 213 750-1084 +initials: W. S. +mobile: +1 213 227-8002 +pager: +1 213 791-7444 +roomNumber: 9855 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Magda Bullard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magda Bullard +sn: Bullard +description: This is Magda Bullard's description +facsimileTelephoneNumber: +1 408 325-7404 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 133-9403 +title: Master Administrative Technician +userPassword: Password1 +uid: BullardM +givenName: Magda +mail: BullardM@f2c3f0652e32488088bedf6cc0ca618f.bitwarden.com +carLicense: VAF643 +departmentNumber: 6976 +employeeType: Contract +homePhone: +1 408 251-2060 +initials: M. B. +mobile: +1 408 203-2623 +pager: +1 408 701-3273 +roomNumber: 8349 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ophelia Snodgrass +sn: Snodgrass +description: This is Ophelia Snodgrass's description +facsimileTelephoneNumber: +1 213 191-9818 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 695-8201 +title: Junior Product Development Madonna +userPassword: Password1 +uid: SnodgraO +givenName: Ophelia +mail: SnodgraO@651dfea288cb4a3b967f35aa6edd73a9.bitwarden.com +carLicense: 5VRL0D +departmentNumber: 7734 +employeeType: Employee +homePhone: +1 213 307-7065 +initials: O. S. +mobile: +1 213 282-5873 +pager: +1 213 627-1850 +roomNumber: 9240 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dzung Datema,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dzung Datema +sn: Datema +description: This is Dzung Datema's description +facsimileTelephoneNumber: +1 818 915-2134 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 214-1113 +title: Master Janitorial Janitor +userPassword: Password1 +uid: DatemaD +givenName: Dzung +mail: DatemaD@3f4b9aad0e4547d9998409b9c2b65792.bitwarden.com +carLicense: T9JIDI +departmentNumber: 2424 +employeeType: Contract +homePhone: +1 818 866-9983 +initials: D. D. +mobile: +1 818 124-1150 +pager: +1 818 478-7949 +roomNumber: 9129 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kiele Boggs,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiele Boggs +sn: Boggs +description: This is Kiele Boggs's description +facsimileTelephoneNumber: +1 408 589-9191 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 408 652-3078 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: BoggsK +givenName: Kiele +mail: BoggsK@93802411fc4d40bd8843de42a4656ea2.bitwarden.com +carLicense: 39K8FS +departmentNumber: 8893 +employeeType: Contract +homePhone: +1 408 120-2995 +initials: K. B. +mobile: +1 408 489-4497 +pager: +1 408 935-6829 +roomNumber: 8408 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Othelia Humphrey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othelia Humphrey +sn: Humphrey +description: This is Othelia Humphrey's description +facsimileTelephoneNumber: +1 408 721-5642 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 699-3007 +title: Junior Payroll Consultant +userPassword: Password1 +uid: HumphreO +givenName: Othelia +mail: HumphreO@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com +carLicense: XWBST0 +departmentNumber: 6379 +employeeType: Contract +homePhone: +1 408 503-9919 +initials: O. H. +mobile: +1 408 560-9561 +pager: +1 408 698-1793 +roomNumber: 9862 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Willabella Sarto,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willabella Sarto +sn: Sarto +description: This is Willabella Sarto's description +facsimileTelephoneNumber: +1 415 371-7926 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 541-3784 +title: Junior Peons Artist +userPassword: Password1 +uid: SartoW +givenName: Willabella +mail: SartoW@da1b5788f067415eb6baf89891f2b951.bitwarden.com +carLicense: 141J7P +departmentNumber: 1038 +employeeType: Employee +homePhone: +1 415 568-4191 +initials: W. S. +mobile: +1 415 659-8270 +pager: +1 415 140-9137 +roomNumber: 8867 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maitreya Carriere,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maitreya Carriere +sn: Carriere +description: This is Maitreya Carriere's description +facsimileTelephoneNumber: +1 213 335-3478 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 184-7057 +title: Associate Management Assistant +userPassword: Password1 +uid: CarrierM +givenName: Maitreya +mail: CarrierM@9e649b7894c9461dbc0ee0f6133e962b.bitwarden.com +carLicense: RQVGTC +departmentNumber: 2113 +employeeType: Normal +homePhone: +1 213 902-7930 +initials: M. C. +mobile: +1 213 521-3916 +pager: +1 213 206-5982 +roomNumber: 9839 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marje Sherwin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marje Sherwin +sn: Sherwin +description: This is Marje Sherwin's description +facsimileTelephoneNumber: +1 408 685-7176 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 535-1485 +title: Chief Human Resources Warrior +userPassword: Password1 +uid: SherwinM +givenName: Marje +mail: SherwinM@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com +carLicense: RCY91L +departmentNumber: 6468 +employeeType: Employee +homePhone: +1 408 108-6532 +initials: M. S. +mobile: +1 408 859-7507 +pager: +1 408 491-7295 +roomNumber: 9819 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dode Schnell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dode Schnell +sn: Schnell +description: This is Dode Schnell's description +facsimileTelephoneNumber: +1 408 567-6198 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 198-2345 +title: Associate Product Development Stooge +userPassword: Password1 +uid: SchnellD +givenName: Dode +mail: SchnellD@59fd6449f708475fb2e48ed60c509c36.bitwarden.com +carLicense: E1OM79 +departmentNumber: 4267 +employeeType: Normal +homePhone: +1 408 714-7815 +initials: D. S. +mobile: +1 408 840-1527 +pager: +1 408 617-4252 +roomNumber: 8436 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlene Wadasinghe +sn: Wadasinghe +description: This is Arlene Wadasinghe's description +facsimileTelephoneNumber: +1 415 180-5917 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 747-8328 +title: Associate Peons Visionary +userPassword: Password1 +uid: WadasinA +givenName: Arlene +mail: WadasinA@3e74039e650c410fbbe3b9202ae34fbd.bitwarden.com +carLicense: KQXG5J +departmentNumber: 2841 +employeeType: Normal +homePhone: +1 415 550-8785 +initials: A. W. +mobile: +1 415 907-4238 +pager: +1 415 586-5142 +roomNumber: 8756 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolanda Skrobecki +sn: Skrobecki +description: This is Jolanda Skrobecki's description +facsimileTelephoneNumber: +1 804 247-3258 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 618-3352 +title: Supreme Product Development Consultant +userPassword: Password1 +uid: SkrobecJ +givenName: Jolanda +mail: SkrobecJ@8187109cbba7441ab35098b49dbd1de9.bitwarden.com +carLicense: RUM3VM +departmentNumber: 6648 +employeeType: Normal +homePhone: +1 804 145-5646 +initials: J. S. +mobile: +1 804 641-5941 +pager: +1 804 930-6821 +roomNumber: 9274 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=PuiWah Szopinski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PuiWah Szopinski +sn: Szopinski +description: This is PuiWah Szopinski's description +facsimileTelephoneNumber: +1 818 413-4285 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 676-9592 +title: Associate Peons Pinhead +userPassword: Password1 +uid: SzopinsP +givenName: PuiWah +mail: SzopinsP@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com +carLicense: 7BE2S9 +departmentNumber: 2906 +employeeType: Normal +homePhone: +1 818 710-9261 +initials: P. S. +mobile: +1 818 664-2754 +pager: +1 818 102-8265 +roomNumber: 8038 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Halimeda MacMaid +sn: MacMaid +description: This is Halimeda MacMaid's description +facsimileTelephoneNumber: +1 818 920-2061 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 818 614-8941 +title: Chief Human Resources Czar +userPassword: Password1 +uid: MacMaidH +givenName: Halimeda +mail: MacMaidH@c0a6b6c92fcf4d2e9e442a4db87fb8d6.bitwarden.com +carLicense: WI2F86 +departmentNumber: 7778 +employeeType: Contract +homePhone: +1 818 804-6960 +initials: H. M. +mobile: +1 818 730-4569 +pager: +1 818 857-2254 +roomNumber: 9901 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jack Totaro,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jack Totaro +sn: Totaro +description: This is Jack Totaro's description +facsimileTelephoneNumber: +1 818 835-5987 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 320-6005 +title: Junior Management Visionary +userPassword: Password1 +uid: TotaroJ +givenName: Jack +mail: TotaroJ@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com +carLicense: M8A1XV +departmentNumber: 2524 +employeeType: Contract +homePhone: +1 818 195-5462 +initials: J. T. +mobile: +1 818 421-4105 +pager: +1 818 342-8547 +roomNumber: 8082 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hettie Phagan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hettie Phagan +sn: Phagan +description: This is Hettie Phagan's description +facsimileTelephoneNumber: +1 213 676-4929 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 633-9767 +title: Master Human Resources Grunt +userPassword: Password1 +uid: PhaganH +givenName: Hettie +mail: PhaganH@6085c53f98f34479bf7644e7797622f1.bitwarden.com +carLicense: A05MLJ +departmentNumber: 8506 +employeeType: Contract +homePhone: +1 213 744-4273 +initials: H. P. +mobile: +1 213 689-2635 +pager: +1 213 572-5273 +roomNumber: 9174 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Margalo Scholey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margalo Scholey +sn: Scholey +description: This is Margalo Scholey's description +facsimileTelephoneNumber: +1 408 896-3107 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 408 229-1127 +title: Master Product Testing Evangelist +userPassword: Password1 +uid: ScholeyM +givenName: Margalo +mail: ScholeyM@355248f7071d4e58beb9bf6f2b8c9ee2.bitwarden.com +carLicense: FAKS8S +departmentNumber: 9051 +employeeType: Employee +homePhone: +1 408 151-4508 +initials: M. S. +mobile: +1 408 289-6034 +pager: +1 408 534-8916 +roomNumber: 8631 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Delly Newnam,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delly Newnam +sn: Newnam +description: This is Delly Newnam's description +facsimileTelephoneNumber: +1 206 672-4882 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 383-8616 +title: Junior Product Development Warrior +userPassword: Password1 +uid: NewnamD +givenName: Delly +mail: NewnamD@051b892e4657474a87006ab9ebfe221e.bitwarden.com +carLicense: XDWAP7 +departmentNumber: 3915 +employeeType: Contract +homePhone: +1 206 535-4560 +initials: D. N. +mobile: +1 206 257-6720 +pager: +1 206 366-6316 +roomNumber: 8320 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ernst Dinkel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ernst Dinkel +sn: Dinkel +description: This is Ernst Dinkel's description +facsimileTelephoneNumber: +1 415 170-8308 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 943-2511 +title: Master Product Development Engineer +userPassword: Password1 +uid: DinkelE +givenName: Ernst +mail: DinkelE@b7ede65f1eb44e418de85b304b190714.bitwarden.com +carLicense: QX4OOH +departmentNumber: 6778 +employeeType: Normal +homePhone: +1 415 916-6716 +initials: E. D. +mobile: +1 415 817-3047 +pager: +1 415 993-7836 +roomNumber: 8937 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Charis Armstead,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charis Armstead +sn: Armstead +description: This is Charis Armstead's description +facsimileTelephoneNumber: +1 510 897-9454 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 615-8973 +title: Master Human Resources Grunt +userPassword: Password1 +uid: ArmsteaC +givenName: Charis +mail: ArmsteaC@72e85d46fcf84593970655aae6ba4a48.bitwarden.com +carLicense: 0C9QEI +departmentNumber: 8667 +employeeType: Contract +homePhone: +1 510 295-5103 +initials: C. A. +mobile: +1 510 953-5524 +pager: +1 510 656-9433 +roomNumber: 8306 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Purnam Dillabough,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Purnam Dillabough +sn: Dillabough +description: This is Purnam Dillabough's description +facsimileTelephoneNumber: +1 415 365-3595 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 529-2679 +title: Junior Peons Punk +userPassword: Password1 +uid: DillaboP +givenName: Purnam +mail: DillaboP@f0c361699ebd444799c8cfa94bd5e53c.bitwarden.com +carLicense: BU5HDC +departmentNumber: 3041 +employeeType: Contract +homePhone: +1 415 977-3852 +initials: P. D. +mobile: +1 415 952-2273 +pager: +1 415 559-7610 +roomNumber: 9835 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cart Fillmore,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cart Fillmore +sn: Fillmore +description: This is Cart Fillmore's description +facsimileTelephoneNumber: +1 415 254-5696 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 179-5477 +title: Supreme Human Resources Consultant +userPassword: Password1 +uid: FillmorC +givenName: Cart +mail: FillmorC@95d3db8b234f4ca7a8f17262f4fbafbe.bitwarden.com +carLicense: LY8HTG +departmentNumber: 4793 +employeeType: Normal +homePhone: +1 415 701-5167 +initials: C. F. +mobile: +1 415 449-1880 +pager: +1 415 208-9389 +roomNumber: 9433 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yuen Maybee,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yuen Maybee +sn: Maybee +description: This is Yuen Maybee's description +facsimileTelephoneNumber: +1 818 738-3108 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 198-4139 +title: Master Product Testing Grunt +userPassword: Password1 +uid: MaybeeY +givenName: Yuen +mail: MaybeeY@5ae024a345a94b5090f63e27d57061d6.bitwarden.com +carLicense: DFA0GH +departmentNumber: 3654 +employeeType: Employee +homePhone: +1 818 527-8295 +initials: Y. M. +mobile: +1 818 630-5176 +pager: +1 818 116-6234 +roomNumber: 8436 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Petr Battershill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petr Battershill +sn: Battershill +description: This is Petr Battershill's description +facsimileTelephoneNumber: +1 408 438-4015 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 408 743-5082 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: BattersP +givenName: Petr +mail: BattersP@518037bbef344b5ab53506e072d3a395.bitwarden.com +carLicense: 7EBCFF +departmentNumber: 3935 +employeeType: Contract +homePhone: +1 408 554-9033 +initials: P. B. +mobile: +1 408 143-3036 +pager: +1 408 972-7399 +roomNumber: 9649 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Beulah Nowell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beulah Nowell +sn: Nowell +description: This is Beulah Nowell's description +facsimileTelephoneNumber: +1 213 135-4557 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 866-2149 +title: Master Human Resources Assistant +userPassword: Password1 +uid: NowellB +givenName: Beulah +mail: NowellB@983b433db82044e3b6af1fbca582d502.bitwarden.com +carLicense: RR7JX4 +departmentNumber: 5699 +employeeType: Normal +homePhone: +1 213 954-7823 +initials: B. N. +mobile: +1 213 171-5936 +pager: +1 213 781-7443 +roomNumber: 9098 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maidisn Gronwall +sn: Gronwall +description: This is Maidisn Gronwall's description +facsimileTelephoneNumber: +1 818 295-2795 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 818 538-1758 +title: Master Product Testing Punk +userPassword: Password1 +uid: GronwalM +givenName: Maidisn +mail: GronwalM@9ef7921d830342e7a2bb3017c4f04f06.bitwarden.com +carLicense: WOH5EB +departmentNumber: 9456 +employeeType: Normal +homePhone: +1 818 349-2973 +initials: M. G. +mobile: +1 818 452-3366 +pager: +1 818 440-7405 +roomNumber: 8554 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aryn Mills,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aryn Mills +sn: Mills +description: This is Aryn Mills's description +facsimileTelephoneNumber: +1 818 525-3563 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 682-7680 +title: Supreme Peons Grunt +userPassword: Password1 +uid: MillsA +givenName: Aryn +mail: MillsA@15d7a602173249f0aea4978bd6de557b.bitwarden.com +carLicense: 3V53H5 +departmentNumber: 6946 +employeeType: Employee +homePhone: +1 818 235-6165 +initials: A. M. +mobile: +1 818 674-8571 +pager: +1 818 179-6602 +roomNumber: 9259 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Car Gillet,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Car Gillet +sn: Gillet +description: This is Car Gillet's description +facsimileTelephoneNumber: +1 510 427-8237 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 550-3553 +title: Master Peons Figurehead +userPassword: Password1 +uid: GilletC +givenName: Car +mail: GilletC@90e76709c73345b5b9d03c814c8e9b26.bitwarden.com +carLicense: Y8K91S +departmentNumber: 4628 +employeeType: Normal +homePhone: +1 510 722-8210 +initials: C. G. +mobile: +1 510 863-2504 +pager: +1 510 226-3310 +roomNumber: 8148 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melinie Vilmansen +sn: Vilmansen +description: This is Melinie Vilmansen's description +facsimileTelephoneNumber: +1 213 537-8958 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 317-9108 +title: Master Payroll Czar +userPassword: Password1 +uid: VilmansM +givenName: Melinie +mail: VilmansM@7a6163690f7b43abb4115499c63b90a7.bitwarden.com +carLicense: 919S2N +departmentNumber: 6885 +employeeType: Employee +homePhone: +1 213 770-9919 +initials: M. V. +mobile: +1 213 868-2650 +pager: +1 213 165-3826 +roomNumber: 9468 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betteann Bohannon +sn: Bohannon +description: This is Betteann Bohannon's description +facsimileTelephoneNumber: +1 408 641-4324 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 408 486-6856 +title: Junior Janitorial Architect +userPassword: Password1 +uid: BohannoB +givenName: Betteann +mail: BohannoB@7a8159a4b38d481598c0559b90aec74d.bitwarden.com +carLicense: 6E3F2T +departmentNumber: 4437 +employeeType: Normal +homePhone: +1 408 443-6632 +initials: B. B. +mobile: +1 408 677-8483 +pager: +1 408 626-9297 +roomNumber: 9086 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ronn Gorsky,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronn Gorsky +sn: Gorsky +description: This is Ronn Gorsky's description +facsimileTelephoneNumber: +1 804 572-2986 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 612-3238 +title: Master Payroll Grunt +userPassword: Password1 +uid: GorskyR +givenName: Ronn +mail: GorskyR@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com +carLicense: MEN7OE +departmentNumber: 2329 +employeeType: Normal +homePhone: +1 804 995-1125 +initials: R. G. +mobile: +1 804 352-8270 +pager: +1 804 301-4503 +roomNumber: 8743 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benedikta MacHattie +sn: MacHattie +description: This is Benedikta MacHattie's description +facsimileTelephoneNumber: +1 408 212-1769 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 469-2057 +title: Chief Payroll Figurehead +userPassword: Password1 +uid: MacHattB +givenName: Benedikta +mail: MacHattB@412210ae069c4a339c017fbe0c820674.bitwarden.com +carLicense: QVA1LF +departmentNumber: 8851 +employeeType: Employee +homePhone: +1 408 392-7371 +initials: B. M. +mobile: +1 408 832-7724 +pager: +1 408 795-3844 +roomNumber: 9512 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roly Dirilten,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roly Dirilten +sn: Dirilten +description: This is Roly Dirilten's description +facsimileTelephoneNumber: +1 408 168-9636 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 408 711-3128 +title: Chief Administrative Developer +userPassword: Password1 +uid: DirilteR +givenName: Roly +mail: DirilteR@5fc4c33111ce40c6b004653ef715e846.bitwarden.com +carLicense: QPMV7Y +departmentNumber: 3144 +employeeType: Normal +homePhone: +1 408 659-6220 +initials: R. D. +mobile: +1 408 156-1976 +pager: +1 408 308-7300 +roomNumber: 9077 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Betteann Thaker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betteann Thaker +sn: Thaker +description: This is Betteann Thaker's description +facsimileTelephoneNumber: +1 206 758-7848 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 118-5627 +title: Junior Product Testing Czar +userPassword: Password1 +uid: ThakerB +givenName: Betteann +mail: ThakerB@56147ad3dbe542cb8cabca7cdf73e618.bitwarden.com +carLicense: 5U3QJV +departmentNumber: 3108 +employeeType: Employee +homePhone: +1 206 298-2438 +initials: B. T. +mobile: +1 206 240-5047 +pager: +1 206 836-2119 +roomNumber: 8839 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Howden Raglin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Howden Raglin +sn: Raglin +description: This is Howden Raglin's description +facsimileTelephoneNumber: +1 510 661-8765 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 979-4763 +title: Master Peons Director +userPassword: Password1 +uid: RaglinH +givenName: Howden +mail: RaglinH@49a5c823cbe74e80b9d7e45aa3c6dc0c.bitwarden.com +carLicense: 2MSLP0 +departmentNumber: 8709 +employeeType: Contract +homePhone: +1 510 890-7525 +initials: H. R. +mobile: +1 510 486-6207 +pager: +1 510 678-5074 +roomNumber: 9482 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Madeline Sipple,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madeline Sipple +sn: Sipple +description: This is Madeline Sipple's description +facsimileTelephoneNumber: +1 415 698-5323 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 212-3899 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: SippleM +givenName: Madeline +mail: SippleM@42f6c709ced54560a282482057eafc53.bitwarden.com +carLicense: WO0I7P +departmentNumber: 5717 +employeeType: Contract +homePhone: +1 415 813-4821 +initials: M. S. +mobile: +1 415 409-6461 +pager: +1 415 763-7505 +roomNumber: 9215 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zulema Marra,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zulema Marra +sn: Marra +description: This is Zulema Marra's description +facsimileTelephoneNumber: +1 415 348-4367 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 611-8773 +title: Associate Management Engineer +userPassword: Password1 +uid: MarraZ +givenName: Zulema +mail: MarraZ@57ee1e7c1faa4ce2b72c1469382238e6.bitwarden.com +carLicense: W2012R +departmentNumber: 1244 +employeeType: Employee +homePhone: +1 415 404-1514 +initials: Z. M. +mobile: +1 415 381-4172 +pager: +1 415 688-7873 +roomNumber: 9036 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dino Maenpaa +sn: Maenpaa +description: This is Dino Maenpaa's description +facsimileTelephoneNumber: +1 804 588-4154 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 125-8345 +title: Junior Product Testing Director +userPassword: Password1 +uid: MaenpaaD +givenName: Dino +mail: MaenpaaD@5184500633ec4ec1833d29082b384d33.bitwarden.com +carLicense: BFF05S +departmentNumber: 4151 +employeeType: Normal +homePhone: +1 804 793-4380 +initials: D. M. +mobile: +1 804 756-3949 +pager: +1 804 428-2033 +roomNumber: 9126 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaffer Smithdeal +sn: Smithdeal +description: This is Jaffer Smithdeal's description +facsimileTelephoneNumber: +1 213 550-3467 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 213 979-9142 +title: Chief Peons Warrior +userPassword: Password1 +uid: SmithdeJ +givenName: Jaffer +mail: SmithdeJ@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com +carLicense: OC6FC2 +departmentNumber: 7792 +employeeType: Employee +homePhone: +1 213 218-9547 +initials: J. S. +mobile: +1 213 382-7246 +pager: +1 213 717-2038 +roomNumber: 9867 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amalita Ivancevic,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amalita Ivancevic +sn: Ivancevic +description: This is Amalita Ivancevic's description +facsimileTelephoneNumber: +1 804 848-1233 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 777-3051 +title: Supreme Management Developer +userPassword: Password1 +uid: IvancevA +givenName: Amalita +mail: IvancevA@c507f54f9f5548a1b05ab68478cbbf4b.bitwarden.com +carLicense: LV1B4M +departmentNumber: 4333 +employeeType: Contract +homePhone: +1 804 756-7710 +initials: A. I. +mobile: +1 804 332-4834 +pager: +1 804 176-9487 +roomNumber: 8568 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Izabel Zwierzchowski +sn: Zwierzchowski +description: This is Izabel Zwierzchowski's description +facsimileTelephoneNumber: +1 510 246-1971 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 884-1694 +title: Chief Peons Consultant +userPassword: Password1 +uid: ZwierzcI +givenName: Izabel +mail: ZwierzcI@8208431ef5574a1885889c7e3a263d25.bitwarden.com +carLicense: J8F929 +departmentNumber: 1294 +employeeType: Employee +homePhone: +1 510 757-3342 +initials: I. Z. +mobile: +1 510 513-2730 +pager: +1 510 601-4899 +roomNumber: 8288 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avaz Govindasamy +sn: Govindasamy +description: This is Avaz Govindasamy's description +facsimileTelephoneNumber: +1 818 110-8939 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 818 547-4392 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: GovindaA +givenName: Avaz +mail: GovindaA@c595ac3eb122406fb35a1a0f955e739c.bitwarden.com +carLicense: KPBS0W +departmentNumber: 6947 +employeeType: Normal +homePhone: +1 818 595-4778 +initials: A. G. +mobile: +1 818 745-8355 +pager: +1 818 338-3757 +roomNumber: 9401 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juditha Kupidy +sn: Kupidy +description: This is Juditha Kupidy's description +facsimileTelephoneNumber: +1 510 915-7453 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 954-7164 +title: Chief Product Testing Consultant +userPassword: Password1 +uid: KupidyJ +givenName: Juditha +mail: KupidyJ@0333e91411d445859a646e8c16d92c70.bitwarden.com +carLicense: N2E9PQ +departmentNumber: 4830 +employeeType: Contract +homePhone: +1 510 704-5898 +initials: J. K. +mobile: +1 510 158-9347 +pager: +1 510 905-5379 +roomNumber: 8351 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lazlo McClelland,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lazlo McClelland +sn: McClelland +description: This is Lazlo McClelland's description +facsimileTelephoneNumber: +1 408 520-8162 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 584-9137 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: McClellL +givenName: Lazlo +mail: McClellL@b0926f5fa5f345dab897ee36737c0cbd.bitwarden.com +carLicense: L7IFEI +departmentNumber: 6103 +employeeType: Contract +homePhone: +1 408 592-2640 +initials: L. M. +mobile: +1 408 403-9927 +pager: +1 408 760-2100 +roomNumber: 8765 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Angele Mitrani,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angele Mitrani +sn: Mitrani +description: This is Angele Mitrani's description +facsimileTelephoneNumber: +1 415 396-4230 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 374-1902 +title: Associate Management Grunt +userPassword: Password1 +uid: MitraniA +givenName: Angele +mail: MitraniA@4fcafc5d237d4e89ae70144b97fd81b9.bitwarden.com +carLicense: JBD9QG +departmentNumber: 1708 +employeeType: Employee +homePhone: +1 415 504-3113 +initials: A. M. +mobile: +1 415 118-8477 +pager: +1 415 903-9093 +roomNumber: 9284 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ghislain Kechichian,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ghislain Kechichian +sn: Kechichian +description: This is Ghislain Kechichian's description +facsimileTelephoneNumber: +1 804 636-1700 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 605-3718 +title: Supreme Peons Consultant +userPassword: Password1 +uid: KechichG +givenName: Ghislain +mail: KechichG@b6e011a2296d47ac9cf137f608b1c223.bitwarden.com +carLicense: E1VO6E +departmentNumber: 7800 +employeeType: Contract +homePhone: +1 804 376-8702 +initials: G. K. +mobile: +1 804 214-8207 +pager: +1 804 626-5933 +roomNumber: 9276 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Merrily Administrator,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrily Administrator +sn: Administrator +description: This is Merrily Administrator's description +facsimileTelephoneNumber: +1 415 427-8444 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 427-3070 +title: Associate Management Artist +userPassword: Password1 +uid: AdminisM +givenName: Merrily +mail: AdminisM@43965c00f0db4ca198510569e172ade1.bitwarden.com +carLicense: GKEBQ2 +departmentNumber: 6573 +employeeType: Normal +homePhone: +1 415 409-4073 +initials: M. A. +mobile: +1 415 100-2573 +pager: +1 415 771-4356 +roomNumber: 8778 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zena Farrell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zena Farrell +sn: Farrell +description: This is Zena Farrell's description +facsimileTelephoneNumber: +1 213 903-3981 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 682-1034 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: FarrellZ +givenName: Zena +mail: FarrellZ@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com +carLicense: G5MG6D +departmentNumber: 5180 +employeeType: Employee +homePhone: +1 213 428-9638 +initials: Z. F. +mobile: +1 213 831-8023 +pager: +1 213 923-1848 +roomNumber: 9174 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ovila Lanctot,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ovila Lanctot +sn: Lanctot +description: This is Ovila Lanctot's description +facsimileTelephoneNumber: +1 408 550-7823 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 618-9639 +title: Associate Payroll Manager +userPassword: Password1 +uid: LanctotO +givenName: Ovila +mail: LanctotO@a5aea84a7d5a4a6887c80f4ed88bc0e0.bitwarden.com +carLicense: JQ1L6Q +departmentNumber: 2699 +employeeType: Normal +homePhone: +1 408 540-2422 +initials: O. L. +mobile: +1 408 782-2978 +pager: +1 408 190-6874 +roomNumber: 8933 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Karie Kurash,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karie Kurash +sn: Kurash +description: This is Karie Kurash's description +facsimileTelephoneNumber: +1 415 638-1971 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 567-1181 +title: Master Administrative Assistant +userPassword: Password1 +uid: KurashK +givenName: Karie +mail: KurashK@ec2712850890400a82cf449b7931685a.bitwarden.com +carLicense: CG9VLY +departmentNumber: 9851 +employeeType: Normal +homePhone: +1 415 461-9714 +initials: K. K. +mobile: +1 415 695-9267 +pager: +1 415 474-6323 +roomNumber: 8441 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kalina Mednick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalina Mednick +sn: Mednick +description: This is Kalina Mednick's description +facsimileTelephoneNumber: +1 804 225-6623 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 256-6952 +title: Master Payroll Madonna +userPassword: Password1 +uid: MednickK +givenName: Kalina +mail: MednickK@7ae93f71f3d249edac467943331a9dd7.bitwarden.com +carLicense: 4EJ2M3 +departmentNumber: 3870 +employeeType: Normal +homePhone: +1 804 605-8789 +initials: K. M. +mobile: +1 804 837-1781 +pager: +1 804 369-9046 +roomNumber: 9616 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yannis Behnam,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yannis Behnam +sn: Behnam +description: This is Yannis Behnam's description +facsimileTelephoneNumber: +1 206 222-3087 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 747-2444 +title: Supreme Peons Technician +userPassword: Password1 +uid: BehnamY +givenName: Yannis +mail: BehnamY@fa1b72a27fc34f4eb3c5c550f81af8b3.bitwarden.com +carLicense: N52BOJ +departmentNumber: 6248 +employeeType: Contract +homePhone: +1 206 134-7334 +initials: Y. B. +mobile: +1 206 381-6939 +pager: +1 206 953-1814 +roomNumber: 9448 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lionel Carevic,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lionel Carevic +sn: Carevic +description: This is Lionel Carevic's description +facsimileTelephoneNumber: +1 818 489-6882 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 169-1247 +title: Supreme Peons Sales Rep +userPassword: Password1 +uid: CarevicL +givenName: Lionel +mail: CarevicL@9e33462dc38a47268f5ccb5aff17b01e.bitwarden.com +carLicense: RSN8Y1 +departmentNumber: 4334 +employeeType: Contract +homePhone: +1 818 942-9080 +initials: L. C. +mobile: +1 818 178-1348 +pager: +1 818 113-9747 +roomNumber: 9302 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evangelin Sandiford +sn: Sandiford +description: This is Evangelin Sandiford's description +facsimileTelephoneNumber: +1 408 814-8878 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 842-9092 +title: Master Janitorial Visionary +userPassword: Password1 +uid: SandifoE +givenName: Evangelin +mail: SandifoE@1617948aaf9d4dcb8bec36f480701bfb.bitwarden.com +carLicense: 5AVV1M +departmentNumber: 4911 +employeeType: Employee +homePhone: +1 408 225-4182 +initials: E. S. +mobile: +1 408 568-9466 +pager: +1 408 443-1865 +roomNumber: 9421 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Olav McNitt,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olav McNitt +sn: McNitt +description: This is Olav McNitt's description +facsimileTelephoneNumber: +1 818 296-4225 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 478-2638 +title: Supreme Peons Sales Rep +userPassword: Password1 +uid: McNittO +givenName: Olav +mail: McNittO@b0b96975e46b40a097a0034294bf5528.bitwarden.com +carLicense: FM6MFW +departmentNumber: 9133 +employeeType: Employee +homePhone: +1 818 550-8556 +initials: O. M. +mobile: +1 818 798-7342 +pager: +1 818 663-6950 +roomNumber: 9557 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jobi ONeal,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jobi ONeal +sn: ONeal +description: This is Jobi ONeal's description +facsimileTelephoneNumber: +1 818 889-9572 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 581-7552 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: ONealJ +givenName: Jobi +mail: ONealJ@d83f96b44aac4dfe8bb6b493dedbd484.bitwarden.com +carLicense: A2CEXJ +departmentNumber: 7647 +employeeType: Contract +homePhone: +1 818 911-7137 +initials: J. O. +mobile: +1 818 719-6476 +pager: +1 818 821-3662 +roomNumber: 8529 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ellissa Marson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellissa Marson +sn: Marson +description: This is Ellissa Marson's description +facsimileTelephoneNumber: +1 510 638-8703 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 588-5411 +title: Junior Management Visionary +userPassword: Password1 +uid: MarsonE +givenName: Ellissa +mail: MarsonE@83ae92312ed14d6f8e9439baa2583cab.bitwarden.com +carLicense: 7QWYGU +departmentNumber: 6510 +employeeType: Employee +homePhone: +1 510 796-9735 +initials: E. M. +mobile: +1 510 275-8705 +pager: +1 510 783-7984 +roomNumber: 9263 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anita Bovee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anita Bovee +sn: Bovee +description: This is Anita Bovee's description +facsimileTelephoneNumber: +1 213 293-3457 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 747-3999 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: BoveeA +givenName: Anita +mail: BoveeA@49b890ea773a4116b436ebd330dc653e.bitwarden.com +carLicense: V3SCVL +departmentNumber: 6202 +employeeType: Normal +homePhone: +1 213 407-9669 +initials: A. B. +mobile: +1 213 203-3205 +pager: +1 213 307-4691 +roomNumber: 8846 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gavin Buckingham,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gavin Buckingham +sn: Buckingham +description: This is Gavin Buckingham's description +facsimileTelephoneNumber: +1 818 887-1476 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 320-1486 +title: Supreme Administrative Consultant +userPassword: Password1 +uid: BuckingG +givenName: Gavin +mail: BuckingG@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com +carLicense: RGJ11R +departmentNumber: 3678 +employeeType: Normal +homePhone: +1 818 806-1392 +initials: G. B. +mobile: +1 818 237-3323 +pager: +1 818 917-7553 +roomNumber: 8431 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Joke Reddick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joke Reddick +sn: Reddick +description: This is Joke Reddick's description +facsimileTelephoneNumber: +1 213 726-2494 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 772-3086 +title: Junior Payroll Artist +userPassword: Password1 +uid: ReddickJ +givenName: Joke +mail: ReddickJ@93a858edc4454f37b07e48de82573852.bitwarden.com +carLicense: 822NJ3 +departmentNumber: 2849 +employeeType: Employee +homePhone: +1 213 822-8253 +initials: J. R. +mobile: +1 213 618-3389 +pager: +1 213 911-8258 +roomNumber: 8963 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Johna Revill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johna Revill +sn: Revill +description: This is Johna Revill's description +facsimileTelephoneNumber: +1 408 171-7741 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 408 399-4675 +title: Junior Product Testing Mascot +userPassword: Password1 +uid: RevillJ +givenName: Johna +mail: RevillJ@3a5ff7224a884729803af88692f56576.bitwarden.com +carLicense: EUX8VR +departmentNumber: 5576 +employeeType: Contract +homePhone: +1 408 269-6482 +initials: J. R. +mobile: +1 408 276-5437 +pager: +1 408 814-6607 +roomNumber: 9065 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luigi Przybycien +sn: Przybycien +description: This is Luigi Przybycien's description +facsimileTelephoneNumber: +1 415 941-6155 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 440-1589 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: PrzybycL +givenName: Luigi +mail: PrzybycL@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com +carLicense: NQ6Q45 +departmentNumber: 7336 +employeeType: Contract +homePhone: +1 415 476-3426 +initials: L. P. +mobile: +1 415 371-1590 +pager: +1 415 186-8993 +roomNumber: 8728 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marlee Gillespie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlee Gillespie +sn: Gillespie +description: This is Marlee Gillespie's description +facsimileTelephoneNumber: +1 415 702-7563 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 415 232-8588 +title: Supreme Product Development Writer +userPassword: Password1 +uid: GillespM +givenName: Marlee +mail: GillespM@f20eb0847ca14a90a67aa09264897cd2.bitwarden.com +carLicense: S6ULNO +departmentNumber: 5137 +employeeType: Employee +homePhone: +1 415 956-3043 +initials: M. G. +mobile: +1 415 797-1116 +pager: +1 415 388-1151 +roomNumber: 8126 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cedric Chaintreuil +sn: Chaintreuil +description: This is Cedric Chaintreuil's description +facsimileTelephoneNumber: +1 510 900-1275 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 848-5629 +title: Chief Janitorial Figurehead +userPassword: Password1 +uid: ChaintrC +givenName: Cedric +mail: ChaintrC@26c8fa913cbb4779ba0168232a8a145c.bitwarden.com +carLicense: 3D1O49 +departmentNumber: 5727 +employeeType: Contract +homePhone: +1 510 686-3406 +initials: C. C. +mobile: +1 510 612-1641 +pager: +1 510 402-7851 +roomNumber: 8994 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Des Theriot,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Des Theriot +sn: Theriot +description: This is Des Theriot's description +facsimileTelephoneNumber: +1 415 174-2155 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 316-6798 +title: Junior Management Developer +userPassword: Password1 +uid: TheriotD +givenName: Des +mail: TheriotD@a5a630d1967f4b1fbcb91bd230122a62.bitwarden.com +carLicense: KQN86M +departmentNumber: 6717 +employeeType: Employee +homePhone: +1 415 568-8051 +initials: D. T. +mobile: +1 415 501-1606 +pager: +1 415 819-7140 +roomNumber: 9542 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Daphine Kobeski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphine Kobeski +sn: Kobeski +description: This is Daphine Kobeski's description +facsimileTelephoneNumber: +1 206 232-2832 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 574-1713 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: KobeskiD +givenName: Daphine +mail: KobeskiD@436da9fad3274d878f0f8f160f4f3038.bitwarden.com +carLicense: UUK9X0 +departmentNumber: 2274 +employeeType: Contract +homePhone: +1 206 614-4340 +initials: D. K. +mobile: +1 206 909-2594 +pager: +1 206 541-3979 +roomNumber: 9270 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Subhashini Bachewich,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subhashini Bachewich +sn: Bachewich +description: This is Subhashini Bachewich's description +facsimileTelephoneNumber: +1 213 612-1361 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 655-2658 +title: Master Peons Warrior +userPassword: Password1 +uid: BachewiS +givenName: Subhashini +mail: BachewiS@8f055851cf2e446194b128d0faf47339.bitwarden.com +carLicense: GHIN31 +departmentNumber: 3427 +employeeType: Normal +homePhone: +1 213 163-2993 +initials: S. B. +mobile: +1 213 341-2535 +pager: +1 213 581-2684 +roomNumber: 8562 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Linnell Altekar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linnell Altekar +sn: Altekar +description: This is Linnell Altekar's description +facsimileTelephoneNumber: +1 804 646-4076 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 209-2206 +title: Master Janitorial Engineer +userPassword: Password1 +uid: AltekarL +givenName: Linnell +mail: AltekarL@37b876b4a91540b4b71770c7a49beee8.bitwarden.com +carLicense: P459WH +departmentNumber: 7282 +employeeType: Normal +homePhone: +1 804 241-1153 +initials: L. A. +mobile: +1 804 259-3607 +pager: +1 804 283-5844 +roomNumber: 9604 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Aubrette Holz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aubrette Holz +sn: Holz +description: This is Aubrette Holz's description +facsimileTelephoneNumber: +1 818 123-8448 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 818 131-8327 +title: Master Administrative Warrior +userPassword: Password1 +uid: HolzA +givenName: Aubrette +mail: HolzA@2402d8b6f3164809a62dbae516875b67.bitwarden.com +carLicense: 5BND21 +departmentNumber: 2649 +employeeType: Employee +homePhone: +1 818 347-6712 +initials: A. H. +mobile: +1 818 488-2818 +pager: +1 818 424-1521 +roomNumber: 9332 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadru Dillabough +sn: Dillabough +description: This is Sadru Dillabough's description +facsimileTelephoneNumber: +1 415 703-3455 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 378-2039 +title: Supreme Product Testing Engineer +userPassword: Password1 +uid: DillaboS +givenName: Sadru +mail: DillaboS@520ff83094e24aed9f7bf536156db294.bitwarden.com +carLicense: G6SRBN +departmentNumber: 4696 +employeeType: Normal +homePhone: +1 415 929-6338 +initials: S. D. +mobile: +1 415 320-3472 +pager: +1 415 611-3698 +roomNumber: 8822 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mollee Etemad,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mollee Etemad +sn: Etemad +description: This is Mollee Etemad's description +facsimileTelephoneNumber: +1 408 671-5290 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 489-7444 +title: Master Janitorial Punk +userPassword: Password1 +uid: EtemadM +givenName: Mollee +mail: EtemadM@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com +carLicense: 2VWG5Q +departmentNumber: 7799 +employeeType: Employee +homePhone: +1 408 698-2456 +initials: M. E. +mobile: +1 408 782-2056 +pager: +1 408 825-1841 +roomNumber: 8926 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Renie Spicer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renie Spicer +sn: Spicer +description: This is Renie Spicer's description +facsimileTelephoneNumber: +1 510 266-6520 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 641-1902 +title: Supreme Janitorial Figurehead +userPassword: Password1 +uid: SpicerR +givenName: Renie +mail: SpicerR@06a75fbf1c264fecab05cf3c4c5e8244.bitwarden.com +carLicense: FHIU9M +departmentNumber: 4156 +employeeType: Normal +homePhone: +1 510 934-9980 +initials: R. S. +mobile: +1 510 575-1177 +pager: +1 510 128-1331 +roomNumber: 9865 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Halley Clason,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Halley Clason +sn: Clason +description: This is Halley Clason's description +facsimileTelephoneNumber: +1 408 449-8719 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 408 682-1341 +title: Associate Administrative Evangelist +userPassword: Password1 +uid: ClasonH +givenName: Halley +mail: ClasonH@2e5d764491b046f6aa7ce6ba59a519f2.bitwarden.com +carLicense: HKIBMC +departmentNumber: 5605 +employeeType: Contract +homePhone: +1 408 239-4359 +initials: H. C. +mobile: +1 408 358-2018 +pager: +1 408 749-5904 +roomNumber: 9794 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mister Stampfl,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mister Stampfl +sn: Stampfl +description: This is Mister Stampfl's description +facsimileTelephoneNumber: +1 213 698-7464 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 178-9096 +title: Associate Product Testing Consultant +userPassword: Password1 +uid: StampflM +givenName: Mister +mail: StampflM@f56fa15d6b7d4398bc29adc06e1de112.bitwarden.com +carLicense: UTAENH +departmentNumber: 6317 +employeeType: Employee +homePhone: +1 213 392-1272 +initials: M. S. +mobile: +1 213 921-1776 +pager: +1 213 280-7969 +roomNumber: 9065 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariesara TraceyMcCabe +sn: TraceyMcCabe +description: This is Mariesara TraceyMcCabe's description +facsimileTelephoneNumber: +1 415 733-8140 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 415 957-5697 +title: Associate Payroll Architect +userPassword: Password1 +uid: TraceyMM +givenName: Mariesara +mail: TraceyMM@55b35edd71d84140b661b45476973814.bitwarden.com +carLicense: 5TNQXQ +departmentNumber: 1258 +employeeType: Contract +homePhone: +1 415 395-4810 +initials: M. T. +mobile: +1 415 719-2827 +pager: +1 415 470-8047 +roomNumber: 9516 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hq Skelly,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hq Skelly +sn: Skelly +description: This is Hq Skelly's description +facsimileTelephoneNumber: +1 415 451-3919 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 841-9128 +title: Master Administrative Evangelist +userPassword: Password1 +uid: SkellyH +givenName: Hq +mail: SkellyH@10f009f83fa241ed9d40654a174c0f83.bitwarden.com +carLicense: D20CMH +departmentNumber: 4707 +employeeType: Contract +homePhone: +1 415 256-9615 +initials: H. S. +mobile: +1 415 911-8258 +pager: +1 415 783-7714 +roomNumber: 9173 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anthony Markham,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anthony Markham +sn: Markham +description: This is Anthony Markham's description +facsimileTelephoneNumber: +1 206 473-5645 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 356-2437 +title: Junior Management Engineer +userPassword: Password1 +uid: MarkhamA +givenName: Anthony +mail: MarkhamA@f666c666c5c8454c862ee863e1582d3a.bitwarden.com +carLicense: EJ4M96 +departmentNumber: 5109 +employeeType: Normal +homePhone: +1 206 770-2630 +initials: A. M. +mobile: +1 206 638-1904 +pager: +1 206 146-9181 +roomNumber: 9912 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Neilla Shingler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neilla Shingler +sn: Shingler +description: This is Neilla Shingler's description +facsimileTelephoneNumber: +1 206 585-7949 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 149-5934 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: ShingleN +givenName: Neilla +mail: ShingleN@97c4b9ae4f964addb510995883d2e8fe.bitwarden.com +carLicense: THRH93 +departmentNumber: 4832 +employeeType: Normal +homePhone: +1 206 873-8768 +initials: N. S. +mobile: +1 206 465-7965 +pager: +1 206 980-3002 +roomNumber: 9257 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shoji Trouborst +sn: Trouborst +description: This is Shoji Trouborst's description +facsimileTelephoneNumber: +1 415 692-6546 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 514-5548 +title: Junior Product Testing Czar +userPassword: Password1 +uid: TrouborS +givenName: Shoji +mail: TrouborS@0444b3a403d344e4ab1517502c8a1fc8.bitwarden.com +carLicense: RQYAD7 +departmentNumber: 8307 +employeeType: Normal +homePhone: +1 415 664-7088 +initials: S. T. +mobile: +1 415 441-7334 +pager: +1 415 491-9381 +roomNumber: 9886 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Korrie Stallcup,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Korrie Stallcup +sn: Stallcup +description: This is Korrie Stallcup's description +facsimileTelephoneNumber: +1 510 402-3666 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 555-7894 +title: Junior Management Fellow +userPassword: Password1 +uid: StallcuK +givenName: Korrie +mail: StallcuK@e3f89583f77e4884a1d8183b4faa15a7.bitwarden.com +carLicense: 0EFAUF +departmentNumber: 6429 +employeeType: Contract +homePhone: +1 510 825-9595 +initials: K. S. +mobile: +1 510 194-4347 +pager: +1 510 283-4533 +roomNumber: 9747 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jewelle Kittinger +sn: Kittinger +description: This is Jewelle Kittinger's description +facsimileTelephoneNumber: +1 213 744-3217 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 490-4105 +title: Master Administrative Manager +userPassword: Password1 +uid: KittingJ +givenName: Jewelle +mail: KittingJ@e01b4053cbcc4a7e8cc0003d4b938668.bitwarden.com +carLicense: PX3WBV +departmentNumber: 8064 +employeeType: Normal +homePhone: +1 213 391-9747 +initials: J. K. +mobile: +1 213 716-7419 +pager: +1 213 589-6708 +roomNumber: 8442 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Delcina Barcza,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delcina Barcza +sn: Barcza +description: This is Delcina Barcza's description +facsimileTelephoneNumber: +1 206 541-2065 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 190-4081 +title: Supreme Product Development Czar +userPassword: Password1 +uid: BarczaD +givenName: Delcina +mail: BarczaD@61c3aec04f2f4530bf57a1dd23bae4be.bitwarden.com +carLicense: 4RGY5G +departmentNumber: 5144 +employeeType: Contract +homePhone: +1 206 597-8940 +initials: D. B. +mobile: +1 206 726-8435 +pager: +1 206 542-1469 +roomNumber: 9007 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Evette Coddington,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evette Coddington +sn: Coddington +description: This is Evette Coddington's description +facsimileTelephoneNumber: +1 206 432-5220 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 766-3649 +title: Supreme Peons Stooge +userPassword: Password1 +uid: CoddingE +givenName: Evette +mail: CoddingE@50db0b06f7084e4cb9a7af7a31c89f8b.bitwarden.com +carLicense: 6R9C4G +departmentNumber: 1279 +employeeType: Employee +homePhone: +1 206 568-1340 +initials: E. C. +mobile: +1 206 283-8074 +pager: +1 206 926-7224 +roomNumber: 8471 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bhupendra Halley +sn: Halley +description: This is Bhupendra Halley's description +facsimileTelephoneNumber: +1 818 579-9395 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 818 771-9069 +title: Master Product Testing President +userPassword: Password1 +uid: HalleyB +givenName: Bhupendra +mail: HalleyB@bd079bcc8df848e4ad40b50c80eb486f.bitwarden.com +carLicense: 7EBO42 +departmentNumber: 3751 +employeeType: Employee +homePhone: +1 818 925-2503 +initials: B. H. +mobile: +1 818 565-6084 +pager: +1 818 324-6590 +roomNumber: 9935 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joelynn Lightfield,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joelynn Lightfield +sn: Lightfield +description: This is Joelynn Lightfield's description +facsimileTelephoneNumber: +1 510 916-2697 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 510 359-2923 +title: Chief Peons Admin +userPassword: Password1 +uid: LightfiJ +givenName: Joelynn +mail: LightfiJ@4247bf0f3a2e46bbbb1c691078752396.bitwarden.com +carLicense: P3L8L3 +departmentNumber: 1127 +employeeType: Normal +homePhone: +1 510 457-7407 +initials: J. L. +mobile: +1 510 945-9115 +pager: +1 510 175-7238 +roomNumber: 9345 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Isaac Cossota,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isaac Cossota +sn: Cossota +description: This is Isaac Cossota's description +facsimileTelephoneNumber: +1 408 606-6636 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 780-7228 +title: Master Payroll Assistant +userPassword: Password1 +uid: CossotaI +givenName: Isaac +mail: CossotaI@ab43f8d0eb5a4fa69395019fc76ff8cf.bitwarden.com +carLicense: NFAR82 +departmentNumber: 2843 +employeeType: Employee +homePhone: +1 408 747-2792 +initials: I. C. +mobile: +1 408 543-1580 +pager: +1 408 853-4071 +roomNumber: 8073 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardelle Sunatori +sn: Sunatori +description: This is Ardelle Sunatori's description +facsimileTelephoneNumber: +1 213 649-5169 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 213 847-8412 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: SunatorA +givenName: Ardelle +mail: SunatorA@a6c1eeb1053647d78d950c48b3782b75.bitwarden.com +carLicense: P4W2YY +departmentNumber: 9253 +employeeType: Employee +homePhone: +1 213 849-6686 +initials: A. S. +mobile: +1 213 101-8453 +pager: +1 213 458-2667 +roomNumber: 9140 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lyle DorionMagnan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyle DorionMagnan +sn: DorionMagnan +description: This is Lyle DorionMagnan's description +facsimileTelephoneNumber: +1 206 573-9354 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 273-4298 +title: Associate Management Artist +userPassword: Password1 +uid: DorionML +givenName: Lyle +mail: DorionML@d00e5ebc0da5488f8f410f79ea5c559a.bitwarden.com +carLicense: LO50QN +departmentNumber: 7656 +employeeType: Contract +homePhone: +1 206 284-8817 +initials: L. D. +mobile: +1 206 760-5729 +pager: +1 206 769-6469 +roomNumber: 8538 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tsing Daya,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tsing Daya +sn: Daya +description: This is Tsing Daya's description +facsimileTelephoneNumber: +1 510 418-1824 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 358-2334 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: DayaT +givenName: Tsing +mail: DayaT@5c5e6866da4a4802aa0f0136ee49902d.bitwarden.com +carLicense: I8JXY5 +departmentNumber: 2805 +employeeType: Contract +homePhone: +1 510 730-2290 +initials: T. D. +mobile: +1 510 332-6135 +pager: +1 510 557-6146 +roomNumber: 9417 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Achal Justus,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Achal Justus +sn: Justus +description: This is Achal Justus's description +facsimileTelephoneNumber: +1 415 212-8746 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 965-6988 +title: Associate Administrative Pinhead +userPassword: Password1 +uid: JustusA +givenName: Achal +mail: JustusA@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com +carLicense: 0EV3ER +departmentNumber: 6610 +employeeType: Contract +homePhone: +1 415 103-9074 +initials: A. J. +mobile: +1 415 161-7020 +pager: +1 415 709-7244 +roomNumber: 8694 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ilda Meskimen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilda Meskimen +sn: Meskimen +description: This is Ilda Meskimen's description +facsimileTelephoneNumber: +1 804 542-1908 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 217-1288 +title: Associate Administrative Evangelist +userPassword: Password1 +uid: MeskimeI +givenName: Ilda +mail: MeskimeI@b0139312a83c40d5aff228440731260a.bitwarden.com +carLicense: QV9WF9 +departmentNumber: 2733 +employeeType: Employee +homePhone: +1 804 677-8147 +initials: I. M. +mobile: +1 804 399-6778 +pager: +1 804 926-8383 +roomNumber: 9046 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobbi Wojtecki +sn: Wojtecki +description: This is Bobbi Wojtecki's description +facsimileTelephoneNumber: +1 206 726-2365 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 228-7378 +title: Chief Product Development Manager +userPassword: Password1 +uid: WojteckB +givenName: Bobbi +mail: WojteckB@0f207436d6984fc4977dc1a901dbb60d.bitwarden.com +carLicense: XBQDER +departmentNumber: 4978 +employeeType: Normal +homePhone: +1 206 321-8080 +initials: B. W. +mobile: +1 206 941-6760 +pager: +1 206 225-1544 +roomNumber: 8907 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Breanne Drinnan +sn: Drinnan +description: This is Breanne Drinnan's description +facsimileTelephoneNumber: +1 510 369-1528 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 394-6572 +title: Master Janitorial Sales Rep +userPassword: Password1 +uid: DrinnanB +givenName: Breanne +mail: DrinnanB@283ec365fe654c3fba136ca1c0a944d2.bitwarden.com +carLicense: 3P3QFA +departmentNumber: 3703 +employeeType: Normal +homePhone: +1 510 457-9471 +initials: B. D. +mobile: +1 510 900-7478 +pager: +1 510 303-3567 +roomNumber: 8430 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jaya Ellul,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaya Ellul +sn: Ellul +description: This is Jaya Ellul's description +facsimileTelephoneNumber: +1 206 971-5326 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 220-2398 +title: Associate Payroll Admin +userPassword: Password1 +uid: EllulJ +givenName: Jaya +mail: EllulJ@f8a322034d5e45cc8676b5e9fe5f5d0f.bitwarden.com +carLicense: BX3O5P +departmentNumber: 3450 +employeeType: Employee +homePhone: +1 206 138-5241 +initials: J. E. +mobile: +1 206 611-8774 +pager: +1 206 285-4395 +roomNumber: 8812 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tessi Hipp,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tessi Hipp +sn: Hipp +description: This is Tessi Hipp's description +facsimileTelephoneNumber: +1 408 634-2029 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 778-2357 +title: Master Peons President +userPassword: Password1 +uid: HippT +givenName: Tessi +mail: HippT@792920344b6e48bca13d2ab90771bbd5.bitwarden.com +carLicense: S42830 +departmentNumber: 5482 +employeeType: Employee +homePhone: +1 408 642-7992 +initials: T. H. +mobile: +1 408 336-8608 +pager: +1 408 915-5140 +roomNumber: 8234 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tatyana Gooch,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatyana Gooch +sn: Gooch +description: This is Tatyana Gooch's description +facsimileTelephoneNumber: +1 804 366-1182 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 579-1460 +title: Junior Peons Punk +userPassword: Password1 +uid: GoochT +givenName: Tatyana +mail: GoochT@96ee5954dbf645b89509b54bd70ed6ad.bitwarden.com +carLicense: U2Q5SW +departmentNumber: 8775 +employeeType: Employee +homePhone: +1 804 630-3183 +initials: T. G. +mobile: +1 804 813-9928 +pager: +1 804 283-7447 +roomNumber: 8212 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ashlan Inamullah,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashlan Inamullah +sn: Inamullah +description: This is Ashlan Inamullah's description +facsimileTelephoneNumber: +1 408 373-1349 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 551-3620 +title: Supreme Management Czar +userPassword: Password1 +uid: InamullA +givenName: Ashlan +mail: InamullA@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com +carLicense: HW0TE2 +departmentNumber: 1531 +employeeType: Contract +homePhone: +1 408 866-8916 +initials: A. I. +mobile: +1 408 830-8812 +pager: +1 408 691-7268 +roomNumber: 8030 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pooh Schmadtke +sn: Schmadtke +description: This is Pooh Schmadtke's description +facsimileTelephoneNumber: +1 510 219-3362 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 276-7627 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: SchmadtP +givenName: Pooh +mail: SchmadtP@19227d32d4ac4d3c8783acb96838362f.bitwarden.com +carLicense: HCKGD0 +departmentNumber: 9598 +employeeType: Employee +homePhone: +1 510 763-3063 +initials: P. S. +mobile: +1 510 912-9194 +pager: +1 510 769-1493 +roomNumber: 9370 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jandy McCollum,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jandy McCollum +sn: McCollum +description: This is Jandy McCollum's description +facsimileTelephoneNumber: +1 818 506-8754 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 601-6763 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: McColluJ +givenName: Jandy +mail: McColluJ@bf5fb1f833e149108e10f8209a4caa81.bitwarden.com +carLicense: 2636OY +departmentNumber: 2346 +employeeType: Normal +homePhone: +1 818 845-2041 +initials: J. M. +mobile: +1 818 624-6247 +pager: +1 818 700-2657 +roomNumber: 9064 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kattie Thom,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kattie Thom +sn: Thom +description: This is Kattie Thom's description +facsimileTelephoneNumber: +1 818 409-5892 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 526-6440 +title: Supreme Human Resources President +userPassword: Password1 +uid: ThomK +givenName: Kattie +mail: ThomK@d18e4ae711e645c5a354ba4c375d8965.bitwarden.com +carLicense: 40EMNP +departmentNumber: 1153 +employeeType: Contract +homePhone: +1 818 886-7176 +initials: K. T. +mobile: +1 818 242-1307 +pager: +1 818 564-2587 +roomNumber: 8509 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hideo Nelson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hideo Nelson +sn: Nelson +description: This is Hideo Nelson's description +facsimileTelephoneNumber: +1 408 326-2746 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 393-8162 +title: Associate Product Testing Director +userPassword: Password1 +uid: NelsonH +givenName: Hideo +mail: NelsonH@1ae5fc4856da4293b03fc4a57c0646c0.bitwarden.com +carLicense: IU5HMP +departmentNumber: 3449 +employeeType: Contract +homePhone: +1 408 484-5729 +initials: H. N. +mobile: +1 408 573-1452 +pager: +1 408 672-3218 +roomNumber: 9737 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Karam Abraham,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karam Abraham +sn: Abraham +description: This is Karam Abraham's description +facsimileTelephoneNumber: +1 213 745-4414 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 288-6916 +title: Master Payroll President +userPassword: Password1 +uid: AbrahamK +givenName: Karam +mail: AbrahamK@094814e3447d47a28856d14771b265f0.bitwarden.com +carLicense: LFE33R +departmentNumber: 4498 +employeeType: Contract +homePhone: +1 213 939-6387 +initials: K. A. +mobile: +1 213 588-8892 +pager: +1 213 998-8094 +roomNumber: 8451 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Evita Mahin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evita Mahin +sn: Mahin +description: This is Evita Mahin's description +facsimileTelephoneNumber: +1 408 345-3811 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 515-1231 +title: Chief Peons Punk +userPassword: Password1 +uid: MahinE +givenName: Evita +mail: MahinE@7391a6d3d59e40cd941b74d4ab20cfad.bitwarden.com +carLicense: 3YHKUT +departmentNumber: 2998 +employeeType: Employee +homePhone: +1 408 280-8767 +initials: E. M. +mobile: +1 408 883-7278 +pager: +1 408 892-4510 +roomNumber: 8338 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Doll Hwang,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doll Hwang +sn: Hwang +description: This is Doll Hwang's description +facsimileTelephoneNumber: +1 818 254-7933 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 970-1428 +title: Supreme Peons Czar +userPassword: Password1 +uid: HwangD +givenName: Doll +mail: HwangD@eba2f109ece04a08844cbc417a83a156.bitwarden.com +carLicense: VXYYD2 +departmentNumber: 8207 +employeeType: Employee +homePhone: +1 818 746-9117 +initials: D. H. +mobile: +1 818 393-4871 +pager: +1 818 336-8707 +roomNumber: 8004 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Atsushi Gros,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atsushi Gros +sn: Gros +description: This is Atsushi Gros's description +facsimileTelephoneNumber: +1 213 169-2153 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 942-9164 +title: Associate Administrative Madonna +userPassword: Password1 +uid: GrosA +givenName: Atsushi +mail: GrosA@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com +carLicense: 6BDYVC +departmentNumber: 5202 +employeeType: Employee +homePhone: +1 213 137-2357 +initials: A. G. +mobile: +1 213 880-3183 +pager: +1 213 824-6382 +roomNumber: 9100 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lacee Kraus,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lacee Kraus +sn: Kraus +description: This is Lacee Kraus's description +facsimileTelephoneNumber: +1 408 417-3976 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 502-6489 +title: Chief Product Testing Director +userPassword: Password1 +uid: KrausL +givenName: Lacee +mail: KrausL@ea5d27109c534992bb828c5b0124e943.bitwarden.com +carLicense: IYCX5Q +departmentNumber: 2315 +employeeType: Contract +homePhone: +1 408 696-3669 +initials: L. K. +mobile: +1 408 186-8267 +pager: +1 408 394-1553 +roomNumber: 8615 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tonu Doncaster,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonu Doncaster +sn: Doncaster +description: This is Tonu Doncaster's description +facsimileTelephoneNumber: +1 818 506-5291 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 837-7447 +title: Associate Peons Writer +userPassword: Password1 +uid: DoncastT +givenName: Tonu +mail: DoncastT@5d8901804e424468b0bef6e0378317d6.bitwarden.com +carLicense: UR4ASY +departmentNumber: 3980 +employeeType: Normal +homePhone: +1 818 685-5391 +initials: T. D. +mobile: +1 818 342-4904 +pager: +1 818 561-8167 +roomNumber: 9348 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tobye Rupnow,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tobye Rupnow +sn: Rupnow +description: This is Tobye Rupnow's description +facsimileTelephoneNumber: +1 510 293-2595 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 793-3096 +title: Associate Product Development Consultant +userPassword: Password1 +uid: RupnowT +givenName: Tobye +mail: RupnowT@5cb8587bbf2c41a39017176951716d73.bitwarden.com +carLicense: ENOG8T +departmentNumber: 2182 +employeeType: Employee +homePhone: +1 510 786-4740 +initials: T. R. +mobile: +1 510 128-7750 +pager: +1 510 393-3019 +roomNumber: 9305 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gilberte Correia,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilberte Correia +sn: Correia +description: This is Gilberte Correia's description +facsimileTelephoneNumber: +1 510 547-3762 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 607-6736 +title: Supreme Payroll Figurehead +userPassword: Password1 +uid: CorreiaG +givenName: Gilberte +mail: CorreiaG@6faffd19174647ed8adaeaef1a2a75ee.bitwarden.com +carLicense: WPL9WL +departmentNumber: 7911 +employeeType: Normal +homePhone: +1 510 928-3367 +initials: G. C. +mobile: +1 510 278-8860 +pager: +1 510 707-5654 +roomNumber: 8917 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krishnamurthy PueGilchrist +sn: PueGilchrist +description: This is Krishnamurthy PueGilchrist's description +facsimileTelephoneNumber: +1 213 235-7478 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 213 822-6174 +title: Associate Product Development Visionary +userPassword: Password1 +uid: PueGilcK +givenName: Krishnamurthy +mail: PueGilcK@32972334779c4c7daa4ee6042db79c56.bitwarden.com +carLicense: PS7MV5 +departmentNumber: 6624 +employeeType: Employee +homePhone: +1 213 481-6460 +initials: K. P. +mobile: +1 213 917-3567 +pager: +1 213 778-8686 +roomNumber: 8325 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elva Goza,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elva Goza +sn: Goza +description: This is Elva Goza's description +facsimileTelephoneNumber: +1 206 316-1866 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 404-7034 +title: Associate Human Resources Director +userPassword: Password1 +uid: GozaE +givenName: Elva +mail: GozaE@d1f70e2814da436e8e729474e3ae0ca1.bitwarden.com +carLicense: VPI0GC +departmentNumber: 1822 +employeeType: Contract +homePhone: +1 206 833-2769 +initials: E. G. +mobile: +1 206 617-2953 +pager: +1 206 869-6415 +roomNumber: 8220 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wassim Sanzone +sn: Sanzone +description: This is Wassim Sanzone's description +facsimileTelephoneNumber: +1 408 709-3752 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 455-4294 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: SanzoneW +givenName: Wassim +mail: SanzoneW@ea018c15212d4d0b83b37b8dca2d7a5b.bitwarden.com +carLicense: KIBNEB +departmentNumber: 9480 +employeeType: Normal +homePhone: +1 408 972-2314 +initials: W. S. +mobile: +1 408 673-6049 +pager: +1 408 543-3262 +roomNumber: 9303 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nath Gazier,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nath Gazier +sn: Gazier +description: This is Nath Gazier's description +facsimileTelephoneNumber: +1 804 535-1574 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 503-6773 +title: Chief Administrative Stooge +userPassword: Password1 +uid: GazierN +givenName: Nath +mail: GazierN@aefdcea121544b52a45f3a380c86d30e.bitwarden.com +carLicense: WE8VO1 +departmentNumber: 9149 +employeeType: Normal +homePhone: +1 804 160-5943 +initials: N. G. +mobile: +1 804 275-3664 +pager: +1 804 354-6382 +roomNumber: 9544 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Serene Tandiono,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Serene Tandiono +sn: Tandiono +description: This is Serene Tandiono's description +facsimileTelephoneNumber: +1 804 795-8124 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 719-9917 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: TandionS +givenName: Serene +mail: TandionS@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com +carLicense: TQTI2B +departmentNumber: 4632 +employeeType: Contract +homePhone: +1 804 283-2414 +initials: S. T. +mobile: +1 804 319-1327 +pager: +1 804 646-8432 +roomNumber: 8397 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Guner Sinnett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guner Sinnett +sn: Sinnett +description: This is Guner Sinnett's description +facsimileTelephoneNumber: +1 510 106-8715 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 452-3451 +title: Master Payroll Vice President +userPassword: Password1 +uid: SinnettG +givenName: Guner +mail: SinnettG@c73dbaa0e70c411fa0d04bf8fe86f3a6.bitwarden.com +carLicense: CSCAS8 +departmentNumber: 5665 +employeeType: Employee +homePhone: +1 510 940-4252 +initials: G. S. +mobile: +1 510 445-3313 +pager: +1 510 151-2180 +roomNumber: 8426 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mahesh Postlethwaite +sn: Postlethwaite +description: This is Mahesh Postlethwaite's description +facsimileTelephoneNumber: +1 206 547-6489 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 776-4267 +title: Chief Peons Visionary +userPassword: Password1 +uid: PostletM +givenName: Mahesh +mail: PostletM@7526aadf2aaf4f8f86b2debc64e016dd.bitwarden.com +carLicense: FJA451 +departmentNumber: 9823 +employeeType: Employee +homePhone: +1 206 844-1894 +initials: M. P. +mobile: +1 206 864-8821 +pager: +1 206 178-3328 +roomNumber: 9275 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carolien Predel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolien Predel +sn: Predel +description: This is Carolien Predel's description +facsimileTelephoneNumber: +1 206 741-5565 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 221-3603 +title: Associate Management Punk +userPassword: Password1 +uid: PredelC +givenName: Carolien +mail: PredelC@7770d32208f64a63bf44fae15e8c6935.bitwarden.com +carLicense: JEHQXS +departmentNumber: 4984 +employeeType: Employee +homePhone: +1 206 908-7613 +initials: C. P. +mobile: +1 206 940-6477 +pager: +1 206 617-2752 +roomNumber: 8162 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Fouad Woodman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fouad Woodman +sn: Woodman +description: This is Fouad Woodman's description +facsimileTelephoneNumber: +1 510 820-7614 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 103-7124 +title: Supreme Product Development Visionary +userPassword: Password1 +uid: WoodmanF +givenName: Fouad +mail: WoodmanF@deaa9dfec3b843c0b4f3e72afbba1381.bitwarden.com +carLicense: Y78DOL +departmentNumber: 4783 +employeeType: Normal +homePhone: +1 510 982-9619 +initials: F. W. +mobile: +1 510 872-2627 +pager: +1 510 626-2075 +roomNumber: 9960 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Remy Muenstermann,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Remy Muenstermann +sn: Muenstermann +description: This is Remy Muenstermann's description +facsimileTelephoneNumber: +1 510 737-4133 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 963-1792 +title: Junior Payroll Admin +userPassword: Password1 +uid: MuensteR +givenName: Remy +mail: MuensteR@a774bfe9f410429f835439e7192aaefa.bitwarden.com +carLicense: YSH6RL +departmentNumber: 2710 +employeeType: Employee +homePhone: +1 510 246-5377 +initials: R. M. +mobile: +1 510 828-7876 +pager: +1 510 233-4063 +roomNumber: 8832 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Erkan Burkert,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erkan Burkert +sn: Burkert +description: This is Erkan Burkert's description +facsimileTelephoneNumber: +1 206 969-4307 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 206 791-2990 +title: Chief Product Development Assistant +userPassword: Password1 +uid: BurkertE +givenName: Erkan +mail: BurkertE@d5a69c0f90ac41d3bc2cf5630c9098ba.bitwarden.com +carLicense: AKRRJS +departmentNumber: 8132 +employeeType: Contract +homePhone: +1 206 834-9842 +initials: E. B. +mobile: +1 206 872-6742 +pager: +1 206 917-9880 +roomNumber: 9132 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Linnea Oliveira,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linnea Oliveira +sn: Oliveira +description: This is Linnea Oliveira's description +facsimileTelephoneNumber: +1 818 208-2584 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 309-4854 +title: Master Management Manager +userPassword: Password1 +uid: OliveirL +givenName: Linnea +mail: OliveirL@fb3c64c9b443484e8686e2aaa346d1de.bitwarden.com +carLicense: VMSNH1 +departmentNumber: 7151 +employeeType: Contract +homePhone: +1 818 262-6347 +initials: L. O. +mobile: +1 818 356-3849 +pager: +1 818 433-6314 +roomNumber: 9199 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Steve Nass,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steve Nass +sn: Nass +description: This is Steve Nass's description +facsimileTelephoneNumber: +1 818 285-5472 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 818 311-1166 +title: Master Product Testing Consultant +userPassword: Password1 +uid: NassS +givenName: Steve +mail: NassS@310fefd008494b9e8a0a81aff3327a1b.bitwarden.com +carLicense: HJ8NFU +departmentNumber: 1420 +employeeType: Employee +homePhone: +1 818 658-1065 +initials: S. N. +mobile: +1 818 211-1517 +pager: +1 818 321-5403 +roomNumber: 9429 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Henrie Malkani,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henrie Malkani +sn: Malkani +description: This is Henrie Malkani's description +facsimileTelephoneNumber: +1 510 529-1372 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 201-9781 +title: Junior Product Development Engineer +userPassword: Password1 +uid: MalkaniH +givenName: Henrie +mail: MalkaniH@111621500be94783a2bfd9f6dfd05ba5.bitwarden.com +carLicense: LQ5HPV +departmentNumber: 5813 +employeeType: Employee +homePhone: +1 510 877-4231 +initials: H. M. +mobile: +1 510 403-9144 +pager: +1 510 954-8164 +roomNumber: 8940 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Almeta Batura,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Almeta Batura +sn: Batura +description: This is Almeta Batura's description +facsimileTelephoneNumber: +1 213 263-8612 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 616-5476 +title: Junior Peons Stooge +userPassword: Password1 +uid: BaturaA +givenName: Almeta +mail: BaturaA@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com +carLicense: XW03PS +departmentNumber: 6180 +employeeType: Contract +homePhone: +1 213 480-9381 +initials: A. B. +mobile: +1 213 118-7948 +pager: +1 213 298-9995 +roomNumber: 8677 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilly Dudgeon +sn: Dudgeon +description: This is Gilly Dudgeon's description +facsimileTelephoneNumber: +1 818 921-9261 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 818 547-4155 +title: Chief Payroll Madonna +userPassword: Password1 +uid: DudgeonG +givenName: Gilly +mail: DudgeonG@dcb0954e4af74751966d9af34246f81f.bitwarden.com +carLicense: 1WAQY1 +departmentNumber: 9811 +employeeType: Employee +homePhone: +1 818 328-4380 +initials: G. D. +mobile: +1 818 874-9296 +pager: +1 818 275-3081 +roomNumber: 9407 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Laurianne Storey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laurianne Storey +sn: Storey +description: This is Laurianne Storey's description +facsimileTelephoneNumber: +1 804 317-7563 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 804 227-2247 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: StoreyL +givenName: Laurianne +mail: StoreyL@6ab835c0621d479dbd805d5189aa2b92.bitwarden.com +carLicense: 2JBPN6 +departmentNumber: 2923 +employeeType: Contract +homePhone: +1 804 425-9124 +initials: L. S. +mobile: +1 804 602-4159 +pager: +1 804 241-2258 +roomNumber: 9617 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nady Straub,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nady Straub +sn: Straub +description: This is Nady Straub's description +facsimileTelephoneNumber: +1 213 303-8484 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 387-2296 +title: Supreme Management Czar +userPassword: Password1 +uid: StraubN +givenName: Nady +mail: StraubN@ef4d5bf16ea04edda300a945910f03e4.bitwarden.com +carLicense: T6EJU6 +departmentNumber: 4687 +employeeType: Employee +homePhone: +1 213 226-6930 +initials: N. S. +mobile: +1 213 488-4174 +pager: +1 213 217-3698 +roomNumber: 8130 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurijn Guilfoyle +sn: Guilfoyle +description: This is Maurijn Guilfoyle's description +facsimileTelephoneNumber: +1 206 941-9035 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 782-4000 +title: Chief Human Resources Czar +userPassword: Password1 +uid: GuilfoyM +givenName: Maurijn +mail: GuilfoyM@b0c48599d24847958412615828406699.bitwarden.com +carLicense: DS72VR +departmentNumber: 1799 +employeeType: Employee +homePhone: +1 206 435-2507 +initials: M. G. +mobile: +1 206 447-2228 +pager: +1 206 929-1039 +roomNumber: 9548 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sukhendu Adamkowski +sn: Adamkowski +description: This is Sukhendu Adamkowski's description +facsimileTelephoneNumber: +1 510 657-2572 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 510 467-7450 +title: Master Product Development Janitor +userPassword: Password1 +uid: AdamkowS +givenName: Sukhendu +mail: AdamkowS@4cccac2b65cb4d559e1c7c657101129e.bitwarden.com +carLicense: M7IRNF +departmentNumber: 6346 +employeeType: Employee +homePhone: +1 510 120-5104 +initials: S. A. +mobile: +1 510 523-6278 +pager: +1 510 854-4816 +roomNumber: 8886 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sami McQuaig,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sami McQuaig +sn: McQuaig +description: This is Sami McQuaig's description +facsimileTelephoneNumber: +1 818 356-3881 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 276-1936 +title: Associate Administrative Vice President +userPassword: Password1 +uid: McQuaigS +givenName: Sami +mail: McQuaigS@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com +carLicense: 9DGHR6 +departmentNumber: 4978 +employeeType: Employee +homePhone: +1 818 498-7797 +initials: S. M. +mobile: +1 818 694-9735 +pager: +1 818 806-5816 +roomNumber: 8123 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Moises Semler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moises Semler +sn: Semler +description: This is Moises Semler's description +facsimileTelephoneNumber: +1 408 660-9179 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 132-1423 +title: Junior Product Development Dictator +userPassword: Password1 +uid: SemlerM +givenName: Moises +mail: SemlerM@2eeb9567dcd64347a2dcd6492aaa8ddc.bitwarden.com +carLicense: EE2SN3 +departmentNumber: 6401 +employeeType: Employee +homePhone: +1 408 676-6362 +initials: M. S. +mobile: +1 408 742-6157 +pager: +1 408 616-7210 +roomNumber: 9502 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Richard FWPtools,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Richard FWPtools +sn: FWPtools +description: This is Richard FWPtools's description +facsimileTelephoneNumber: +1 408 556-5653 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 462-1331 +title: Junior Peons Visionary +userPassword: Password1 +uid: FWPtoolR +givenName: Richard +mail: FWPtoolR@dd8272e863174597a9c6eb5aaf131b06.bitwarden.com +carLicense: BPYCSF +departmentNumber: 7388 +employeeType: Contract +homePhone: +1 408 783-7383 +initials: R. F. +mobile: +1 408 772-7486 +pager: +1 408 815-2719 +roomNumber: 9727 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelba MacGillivray +sn: MacGillivray +description: This is Shelba MacGillivray's description +facsimileTelephoneNumber: +1 804 521-9523 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 804 216-5935 +title: Supreme Janitorial Visionary +userPassword: Password1 +uid: MacGillS +givenName: Shelba +mail: MacGillS@94747c09a3194eba8b7d52262cebca45.bitwarden.com +carLicense: QR8QHX +departmentNumber: 3447 +employeeType: Normal +homePhone: +1 804 409-4975 +initials: S. M. +mobile: +1 804 313-9768 +pager: +1 804 569-3494 +roomNumber: 8433 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaib Bottomley +sn: Bottomley +description: This is Shaib Bottomley's description +facsimileTelephoneNumber: +1 415 552-2987 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 970-4817 +title: Associate Janitorial Warrior +userPassword: Password1 +uid: BottomlS +givenName: Shaib +mail: BottomlS@c70dbe261a1148e99aeacce847bbdb51.bitwarden.com +carLicense: L6JQQ3 +departmentNumber: 6279 +employeeType: Employee +homePhone: +1 415 398-4757 +initials: S. B. +mobile: +1 415 578-3983 +pager: +1 415 162-3518 +roomNumber: 8651 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Danielle Sells,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danielle Sells +sn: Sells +description: This is Danielle Sells's description +facsimileTelephoneNumber: +1 206 656-9844 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 969-7914 +title: Junior Product Development Director +userPassword: Password1 +uid: SellsD +givenName: Danielle +mail: SellsD@703760e209f6497aa718fce078cb8340.bitwarden.com +carLicense: AN9FA7 +departmentNumber: 2870 +employeeType: Employee +homePhone: +1 206 282-2571 +initials: D. S. +mobile: +1 206 504-7201 +pager: +1 206 146-3123 +roomNumber: 8353 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nashir Isaacs +sn: Isaacs +description: This is Nashir Isaacs's description +facsimileTelephoneNumber: +1 415 100-6902 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 895-1237 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: IsaacsN +givenName: Nashir +mail: IsaacsN@3a117fad58d6422fb9086b1f787bebea.bitwarden.com +carLicense: FTE5A9 +departmentNumber: 6995 +employeeType: Normal +homePhone: +1 415 428-4232 +initials: N. I. +mobile: +1 415 445-7045 +pager: +1 415 482-3251 +roomNumber: 8845 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kac Throgmorton +sn: Throgmorton +description: This is Kac Throgmorton's description +facsimileTelephoneNumber: +1 415 535-8695 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 893-5608 +title: Junior Human Resources Sales Rep +userPassword: Password1 +uid: ThrogmoK +givenName: Kac +mail: ThrogmoK@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com +carLicense: U6AK24 +departmentNumber: 2418 +employeeType: Employee +homePhone: +1 415 115-5347 +initials: K. T. +mobile: +1 415 408-5579 +pager: +1 415 328-3168 +roomNumber: 9280 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sylva Hikita,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sylva Hikita +sn: Hikita +description: This is Sylva Hikita's description +facsimileTelephoneNumber: +1 213 412-1728 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 977-2979 +title: Supreme Administrative President +userPassword: Password1 +uid: HikitaS +givenName: Sylva +mail: HikitaS@a78ed8611e034976918da82623b252aa.bitwarden.com +carLicense: 3UCM9Y +departmentNumber: 2275 +employeeType: Employee +homePhone: +1 213 947-5600 +initials: S. H. +mobile: +1 213 845-5780 +pager: +1 213 393-2251 +roomNumber: 9945 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeannine McMurray,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeannine McMurray +sn: McMurray +description: This is Jeannine McMurray's description +facsimileTelephoneNumber: +1 804 923-1636 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 647-5339 +title: Chief Administrative Consultant +userPassword: Password1 +uid: McMurraJ +givenName: Jeannine +mail: McMurraJ@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com +carLicense: QCEI0E +departmentNumber: 4684 +employeeType: Employee +homePhone: +1 804 187-7252 +initials: J. M. +mobile: +1 804 368-1349 +pager: +1 804 324-7088 +roomNumber: 9882 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Robbin Vanstory,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robbin Vanstory +sn: Vanstory +description: This is Robbin Vanstory's description +facsimileTelephoneNumber: +1 510 263-2034 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 969-4714 +title: Associate Peons Admin +userPassword: Password1 +uid: VanstorR +givenName: Robbin +mail: VanstorR@d2a6214e814b4ea4b87489ad9882572a.bitwarden.com +carLicense: 9961LH +departmentNumber: 5102 +employeeType: Normal +homePhone: +1 510 693-9723 +initials: R. V. +mobile: +1 510 750-6077 +pager: +1 510 411-8276 +roomNumber: 9620 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gertie Dix,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertie Dix +sn: Dix +description: This is Gertie Dix's description +facsimileTelephoneNumber: +1 415 879-2272 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 807-4681 +title: Junior Product Testing Punk +userPassword: Password1 +uid: DixG +givenName: Gertie +mail: DixG@ebc00b9ae1f6452da423353f7889c3bd.bitwarden.com +carLicense: 1KGIRF +departmentNumber: 9559 +employeeType: Normal +homePhone: +1 415 433-8741 +initials: G. D. +mobile: +1 415 394-6628 +pager: +1 415 478-9211 +roomNumber: 8216 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Daloris Pippy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daloris Pippy +sn: Pippy +description: This is Daloris Pippy's description +facsimileTelephoneNumber: +1 415 892-7296 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 265-8792 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: PippyD +givenName: Daloris +mail: PippyD@dc4990156aa641249346113b8218bf9c.bitwarden.com +carLicense: BAK018 +departmentNumber: 1313 +employeeType: Contract +homePhone: +1 415 672-1629 +initials: D. P. +mobile: +1 415 154-1895 +pager: +1 415 945-3820 +roomNumber: 9005 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Robinia Chytil,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinia Chytil +sn: Chytil +description: This is Robinia Chytil's description +facsimileTelephoneNumber: +1 804 675-8751 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 297-5633 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: ChytilR +givenName: Robinia +mail: ChytilR@72967884fe2a4610a29d315ed4d9bc28.bitwarden.com +carLicense: AQKHU4 +departmentNumber: 4492 +employeeType: Contract +homePhone: +1 804 685-2524 +initials: R. C. +mobile: +1 804 751-4681 +pager: +1 804 809-7970 +roomNumber: 9677 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Randy Haaksman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randy Haaksman +sn: Haaksman +description: This is Randy Haaksman's description +facsimileTelephoneNumber: +1 408 232-1053 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 969-7119 +title: Supreme Payroll Consultant +userPassword: Password1 +uid: HaaksmaR +givenName: Randy +mail: HaaksmaR@3ecb1c63de854804b4e8af1966a28c00.bitwarden.com +carLicense: ABRYRX +departmentNumber: 9735 +employeeType: Employee +homePhone: +1 408 135-8380 +initials: R. H. +mobile: +1 408 948-9815 +pager: +1 408 985-5493 +roomNumber: 9135 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alka Chiykowski +sn: Chiykowski +description: This is Alka Chiykowski's description +facsimileTelephoneNumber: +1 408 964-1415 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 987-9702 +title: Junior Human Resources Architect +userPassword: Password1 +uid: ChiykowA +givenName: Alka +mail: ChiykowA@64b8640cd7404f1e9ef28806435c2900.bitwarden.com +carLicense: PL62P2 +departmentNumber: 2760 +employeeType: Contract +homePhone: +1 408 426-8764 +initials: A. C. +mobile: +1 408 144-8549 +pager: +1 408 346-3219 +roomNumber: 9603 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ginn Rembecki,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginn Rembecki +sn: Rembecki +description: This is Ginn Rembecki's description +facsimileTelephoneNumber: +1 213 580-3509 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 213 443-4369 +title: Associate Payroll Manager +userPassword: Password1 +uid: RembeckG +givenName: Ginn +mail: RembeckG@1bca91d4fd4549c6bf14b515f5e0a173.bitwarden.com +carLicense: 3O3282 +departmentNumber: 2200 +employeeType: Employee +homePhone: +1 213 350-4133 +initials: G. R. +mobile: +1 213 116-6973 +pager: +1 213 752-6043 +roomNumber: 8741 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Deva Morimoto,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deva Morimoto +sn: Morimoto +description: This is Deva Morimoto's description +facsimileTelephoneNumber: +1 804 982-7055 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 873-8418 +title: Associate Product Development President +userPassword: Password1 +uid: MorimotD +givenName: Deva +mail: MorimotD@38b2663172424c999e78408a67cf7851.bitwarden.com +carLicense: 9TW2DT +departmentNumber: 6860 +employeeType: Employee +homePhone: +1 804 578-3420 +initials: D. M. +mobile: +1 804 937-9362 +pager: +1 804 115-8452 +roomNumber: 9696 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sioux Laney,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sioux Laney +sn: Laney +description: This is Sioux Laney's description +facsimileTelephoneNumber: +1 213 666-8226 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 586-4516 +title: Supreme Peons Grunt +userPassword: Password1 +uid: LaneyS +givenName: Sioux +mail: LaneyS@e4daa158936a4fde9b3ebffb038e67fa.bitwarden.com +carLicense: TKCR6P +departmentNumber: 5665 +employeeType: Contract +homePhone: +1 213 515-2019 +initials: S. L. +mobile: +1 213 393-2342 +pager: +1 213 744-6810 +roomNumber: 9701 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harmony Eslambolchi +sn: Eslambolchi +description: This is Harmony Eslambolchi's description +facsimileTelephoneNumber: +1 818 700-8142 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 245-8525 +title: Associate Peons Stooge +userPassword: Password1 +uid: EslamboH +givenName: Harmony +mail: EslamboH@0aee22428274445fb9c2a16b33d788f7.bitwarden.com +carLicense: 71DOHF +departmentNumber: 3922 +employeeType: Normal +homePhone: +1 818 262-5025 +initials: H. E. +mobile: +1 818 401-6708 +pager: +1 818 150-4686 +roomNumber: 8282 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Demetri Sepe,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Demetri Sepe +sn: Sepe +description: This is Demetri Sepe's description +facsimileTelephoneNumber: +1 510 646-2818 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 510 661-8212 +title: Chief Administrative Stooge +userPassword: Password1 +uid: SepeD +givenName: Demetri +mail: SepeD@4e6ec37d862e441480157c39097f280d.bitwarden.com +carLicense: MCPVO5 +departmentNumber: 5578 +employeeType: Normal +homePhone: +1 510 105-2257 +initials: D. S. +mobile: +1 510 817-1674 +pager: +1 510 208-9877 +roomNumber: 8232 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zandra Buratynski +sn: Buratynski +description: This is Zandra Buratynski's description +facsimileTelephoneNumber: +1 415 327-2316 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 859-4391 +title: Chief Product Testing Developer +userPassword: Password1 +uid: BuratynZ +givenName: Zandra +mail: BuratynZ@37c4f9ee232544a4846bc4a3466039ef.bitwarden.com +carLicense: NRRP4F +departmentNumber: 4616 +employeeType: Employee +homePhone: +1 415 229-4002 +initials: Z. B. +mobile: +1 415 836-8371 +pager: +1 415 495-8977 +roomNumber: 9805 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mickey Fiset,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mickey Fiset +sn: Fiset +description: This is Mickey Fiset's description +facsimileTelephoneNumber: +1 804 248-1934 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 345-8131 +title: Chief Peons President +userPassword: Password1 +uid: FisetM +givenName: Mickey +mail: FisetM@5b938862d9b84f248e738a32d39aab3b.bitwarden.com +carLicense: MW07NH +departmentNumber: 2871 +employeeType: Contract +homePhone: +1 804 237-3417 +initials: M. F. +mobile: +1 804 198-9472 +pager: +1 804 352-4595 +roomNumber: 9938 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Avie AltingMees,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avie AltingMees +sn: AltingMees +description: This is Avie AltingMees's description +facsimileTelephoneNumber: +1 213 560-7185 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 521-7011 +title: Master Administrative Consultant +userPassword: Password1 +uid: AltingMA +givenName: Avie +mail: AltingMA@f2f9b94a61d74e48ae3ede318c7f996c.bitwarden.com +carLicense: DOUEXT +departmentNumber: 4750 +employeeType: Employee +homePhone: +1 213 793-8438 +initials: A. A. +mobile: +1 213 647-3396 +pager: +1 213 195-7980 +roomNumber: 8981 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kanya Ralph,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanya Ralph +sn: Ralph +description: This is Kanya Ralph's description +facsimileTelephoneNumber: +1 213 713-9753 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 992-7687 +title: Chief Human Resources Janitor +userPassword: Password1 +uid: RalphK +givenName: Kanya +mail: RalphK@2ed3a0c0604d4f8d80fc4a72596ea1a6.bitwarden.com +carLicense: N4OROU +departmentNumber: 3380 +employeeType: Normal +homePhone: +1 213 453-5806 +initials: K. R. +mobile: +1 213 943-6913 +pager: +1 213 714-8476 +roomNumber: 9604 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elisabeth Viens,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elisabeth Viens +sn: Viens +description: This is Elisabeth Viens's description +facsimileTelephoneNumber: +1 408 301-4986 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 421-5161 +title: Master Peons Madonna +userPassword: Password1 +uid: ViensE +givenName: Elisabeth +mail: ViensE@ea4e16c32710425c934ffce7fc0703d6.bitwarden.com +carLicense: SDK6TA +departmentNumber: 7525 +employeeType: Contract +homePhone: +1 408 998-5958 +initials: E. V. +mobile: +1 408 819-5212 +pager: +1 408 743-1652 +roomNumber: 8211 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Christin Hussain,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christin Hussain +sn: Hussain +description: This is Christin Hussain's description +facsimileTelephoneNumber: +1 206 378-1879 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 747-8562 +title: Master Janitorial Punk +userPassword: Password1 +uid: HussainC +givenName: Christin +mail: HussainC@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com +carLicense: 5E90MB +departmentNumber: 5483 +employeeType: Contract +homePhone: +1 206 435-6286 +initials: C. H. +mobile: +1 206 690-7761 +pager: +1 206 634-1012 +roomNumber: 9132 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Stephannie Oam,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephannie Oam +sn: Oam +description: This is Stephannie Oam's description +facsimileTelephoneNumber: +1 408 570-7921 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 611-2612 +title: Supreme Management Artist +userPassword: Password1 +uid: OamS +givenName: Stephannie +mail: OamS@bab890af02d045bcaf621cc90d0b2098.bitwarden.com +carLicense: 81624R +departmentNumber: 3286 +employeeType: Employee +homePhone: +1 408 962-9045 +initials: S. O. +mobile: +1 408 267-5981 +pager: +1 408 731-4123 +roomNumber: 9885 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WeeSeng Barr +sn: Barr +description: This is WeeSeng Barr's description +facsimileTelephoneNumber: +1 213 763-4247 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 387-9576 +title: Junior Janitorial Admin +userPassword: Password1 +uid: BarrW +givenName: WeeSeng +mail: BarrW@2e2a0c8690da45808c0e415496248633.bitwarden.com +carLicense: D6ERU6 +departmentNumber: 6210 +employeeType: Normal +homePhone: +1 213 238-2124 +initials: W. B. +mobile: +1 213 277-9024 +pager: +1 213 974-3734 +roomNumber: 8990 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saraann Rittenhouse +sn: Rittenhouse +description: This is Saraann Rittenhouse's description +facsimileTelephoneNumber: +1 408 939-2713 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 865-3535 +title: Supreme Administrative Manager +userPassword: Password1 +uid: RittenhS +givenName: Saraann +mail: RittenhS@aab974bb6e3141739f83f690a4adf239.bitwarden.com +carLicense: TAOXQ7 +departmentNumber: 2844 +employeeType: Employee +homePhone: +1 408 475-4582 +initials: S. R. +mobile: +1 408 941-9541 +pager: +1 408 711-7534 +roomNumber: 8124 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kerrie Cholet,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kerrie Cholet +sn: Cholet +description: This is Kerrie Cholet's description +facsimileTelephoneNumber: +1 415 236-1210 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 711-2157 +title: Master Payroll Dictator +userPassword: Password1 +uid: CholetK +givenName: Kerrie +mail: CholetK@6edf4c15ac51401f9d8774ffb0590b89.bitwarden.com +carLicense: XBB7YF +departmentNumber: 1076 +employeeType: Contract +homePhone: +1 415 171-3369 +initials: K. C. +mobile: +1 415 850-9505 +pager: +1 415 510-8418 +roomNumber: 8211 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Barnes Todaro,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barnes Todaro +sn: Todaro +description: This is Barnes Todaro's description +facsimileTelephoneNumber: +1 510 197-5368 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 733-8269 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: TodaroB +givenName: Barnes +mail: TodaroB@102dfc559679498e886e0a19d56ecd00.bitwarden.com +carLicense: RQJOAR +departmentNumber: 8294 +employeeType: Contract +homePhone: +1 510 182-4812 +initials: B. T. +mobile: +1 510 586-9117 +pager: +1 510 135-7312 +roomNumber: 9270 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Paulie Stellitano,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulie Stellitano +sn: Stellitano +description: This is Paulie Stellitano's description +facsimileTelephoneNumber: +1 415 794-3593 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 845-9680 +title: Chief Product Development Architect +userPassword: Password1 +uid: StellitP +givenName: Paulie +mail: StellitP@5ad15098bcd947faa38496ab1dc4e2c9.bitwarden.com +carLicense: P52CQB +departmentNumber: 2214 +employeeType: Normal +homePhone: +1 415 741-3591 +initials: P. S. +mobile: +1 415 761-4612 +pager: +1 415 693-2997 +roomNumber: 9940 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Quon Lamm,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quon Lamm +sn: Lamm +description: This is Quon Lamm's description +facsimileTelephoneNumber: +1 510 102-4740 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 510 178-2022 +title: Junior Product Development Visionary +userPassword: Password1 +uid: LammQ +givenName: Quon +mail: LammQ@a2e835bbc90a4bb8aa8eed7abb9fcd6b.bitwarden.com +carLicense: TA2D0P +departmentNumber: 7109 +employeeType: Normal +homePhone: +1 510 894-1871 +initials: Q. L. +mobile: +1 510 596-9917 +pager: +1 510 419-3527 +roomNumber: 8897 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wenxi Reade,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wenxi Reade +sn: Reade +description: This is Wenxi Reade's description +facsimileTelephoneNumber: +1 818 215-5585 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 740-5014 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: ReadeW +givenName: Wenxi +mail: ReadeW@f541074a8300482d85b53966c8cecebb.bitwarden.com +carLicense: VL7WEH +departmentNumber: 4317 +employeeType: Employee +homePhone: +1 818 966-6937 +initials: W. R. +mobile: +1 818 254-9534 +pager: +1 818 532-3872 +roomNumber: 9426 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fabienne Hoehling,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fabienne Hoehling +sn: Hoehling +description: This is Fabienne Hoehling's description +facsimileTelephoneNumber: +1 408 908-2846 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 903-3590 +title: Master Management Czar +userPassword: Password1 +uid: HoehlinF +givenName: Fabienne +mail: HoehlinF@ab5a3e15caae4984acf7b1a615995a84.bitwarden.com +carLicense: LASQ6I +departmentNumber: 7128 +employeeType: Employee +homePhone: +1 408 275-9087 +initials: F. H. +mobile: +1 408 763-8169 +pager: +1 408 789-6842 +roomNumber: 8232 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YokeKee Triggiano +sn: Triggiano +description: This is YokeKee Triggiano's description +facsimileTelephoneNumber: +1 510 915-4852 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 113-2832 +title: Chief Administrative Evangelist +userPassword: Password1 +uid: TriggiaY +givenName: YokeKee +mail: TriggiaY@11375f30f6dd4d8d96f9eb019f620b90.bitwarden.com +carLicense: T7TC94 +departmentNumber: 2461 +employeeType: Employee +homePhone: +1 510 257-2381 +initials: Y. T. +mobile: +1 510 243-7116 +pager: +1 510 641-7580 +roomNumber: 8189 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lanita Delorenzi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lanita Delorenzi +sn: Delorenzi +description: This is Lanita Delorenzi's description +facsimileTelephoneNumber: +1 804 994-1854 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 740-8075 +title: Supreme Peons Mascot +userPassword: Password1 +uid: DelorenL +givenName: Lanita +mail: DelorenL@0a595c1902924e8c80901829c830cca2.bitwarden.com +carLicense: N9ISN8 +departmentNumber: 5762 +employeeType: Employee +homePhone: +1 804 812-5876 +initials: L. D. +mobile: +1 804 532-7177 +pager: +1 804 548-5850 +roomNumber: 8874 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cycelia Seiler +sn: Seiler +description: This is Cycelia Seiler's description +facsimileTelephoneNumber: +1 213 384-7993 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 873-3653 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: SeilerC +givenName: Cycelia +mail: SeilerC@97fbe9f514864d40bb6dc85e4d15c1c0.bitwarden.com +carLicense: QLGQME +departmentNumber: 2620 +employeeType: Contract +homePhone: +1 213 390-8826 +initials: C. S. +mobile: +1 213 576-4794 +pager: +1 213 572-1458 +roomNumber: 9102 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doralyn Cifersky +sn: Cifersky +description: This is Doralyn Cifersky's description +facsimileTelephoneNumber: +1 804 560-9953 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 717-3209 +title: Chief Human Resources Admin +userPassword: Password1 +uid: CiferskD +givenName: Doralyn +mail: CiferskD@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com +carLicense: A8S6KW +departmentNumber: 3840 +employeeType: Normal +homePhone: +1 804 288-4830 +initials: D. C. +mobile: +1 804 479-3369 +pager: +1 804 873-7669 +roomNumber: 9637 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flossi Carbonara +sn: Carbonara +description: This is Flossi Carbonara's description +facsimileTelephoneNumber: +1 818 581-5393 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 105-2329 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: CarbonaF +givenName: Flossi +mail: CarbonaF@7a5ece6d9adf44888506b316b6709917.bitwarden.com +carLicense: QF36IF +departmentNumber: 2558 +employeeType: Employee +homePhone: +1 818 797-2778 +initials: F. C. +mobile: +1 818 790-2475 +pager: +1 818 720-4402 +roomNumber: 8283 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chong Alleva,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chong Alleva +sn: Alleva +description: This is Chong Alleva's description +facsimileTelephoneNumber: +1 804 180-6386 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 804 663-8829 +title: Chief Payroll President +userPassword: Password1 +uid: AllevaC +givenName: Chong +mail: AllevaC@78da39afd8f041eaad04623e643dcf1d.bitwarden.com +carLicense: UL8GX5 +departmentNumber: 3670 +employeeType: Contract +homePhone: +1 804 304-7256 +initials: C. A. +mobile: +1 804 950-3052 +pager: +1 804 623-1551 +roomNumber: 9466 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjo Burkhardt +sn: Burkhardt +description: This is Marjo Burkhardt's description +facsimileTelephoneNumber: +1 510 144-5823 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 305-6884 +title: Master Payroll Director +userPassword: Password1 +uid: BurkharM +givenName: Marjo +mail: BurkharM@e55b43fab5194d70867c5cdfb0b99fcb.bitwarden.com +carLicense: 4A3MLI +departmentNumber: 7081 +employeeType: Contract +homePhone: +1 510 668-1984 +initials: M. B. +mobile: +1 510 610-7315 +pager: +1 510 137-1626 +roomNumber: 8797 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbette Wojnar +sn: Wojnar +description: This is Barbette Wojnar's description +facsimileTelephoneNumber: +1 415 100-6312 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 415 850-1772 +title: Master Product Testing Architect +userPassword: Password1 +uid: WojnarB +givenName: Barbette +mail: WojnarB@afa80aa7187b419eb6bf52dc727c580b.bitwarden.com +carLicense: W7SP51 +departmentNumber: 4537 +employeeType: Employee +homePhone: +1 415 406-1434 +initials: B. W. +mobile: +1 415 701-9177 +pager: +1 415 460-9891 +roomNumber: 9764 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Theresita Flanagan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theresita Flanagan +sn: Flanagan +description: This is Theresita Flanagan's description +facsimileTelephoneNumber: +1 206 699-7100 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 963-9306 +title: Supreme Administrative Visionary +userPassword: Password1 +uid: FlanagaT +givenName: Theresita +mail: FlanagaT@65678c07e8734c7890d5cf5e76fde9cc.bitwarden.com +carLicense: GTVMDN +departmentNumber: 6841 +employeeType: Normal +homePhone: +1 206 699-4311 +initials: T. F. +mobile: +1 206 541-3459 +pager: +1 206 225-4450 +roomNumber: 8579 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Luc Sutton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luc Sutton +sn: Sutton +description: This is Luc Sutton's description +facsimileTelephoneNumber: +1 408 824-8999 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 496-3080 +title: Associate Payroll President +userPassword: Password1 +uid: SuttonL +givenName: Luc +mail: SuttonL@e8193f804bab49a9ab24a3360e9fb251.bitwarden.com +carLicense: YU98NV +departmentNumber: 3499 +employeeType: Contract +homePhone: +1 408 225-7620 +initials: L. S. +mobile: +1 408 691-7388 +pager: +1 408 275-4846 +roomNumber: 9948 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Adnan Madani,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adnan Madani +sn: Madani +description: This is Adnan Madani's description +facsimileTelephoneNumber: +1 206 981-3604 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 231-4235 +title: Junior Product Development Madonna +userPassword: Password1 +uid: MadaniA +givenName: Adnan +mail: MadaniA@9011e405bc8b4f8fa11f77635250f96d.bitwarden.com +carLicense: M9X9GM +departmentNumber: 8474 +employeeType: Normal +homePhone: +1 206 545-4842 +initials: A. M. +mobile: +1 206 464-4456 +pager: +1 206 616-7708 +roomNumber: 9361 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jason Quelch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jason Quelch +sn: Quelch +description: This is Jason Quelch's description +facsimileTelephoneNumber: +1 818 690-2062 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 935-8802 +title: Master Janitorial Punk +userPassword: Password1 +uid: QuelchJ +givenName: Jason +mail: QuelchJ@643a7a9782f24ae2ae0ce0064cc2c175.bitwarden.com +carLicense: CNBG0S +departmentNumber: 3303 +employeeType: Contract +homePhone: +1 818 174-6426 +initials: J. Q. +mobile: +1 818 473-6669 +pager: +1 818 205-5662 +roomNumber: 9075 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernhard Purchasing +sn: Purchasing +description: This is Bernhard Purchasing's description +facsimileTelephoneNumber: +1 408 428-6210 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 408 340-7784 +title: Junior Administrative Pinhead +userPassword: Password1 +uid: PurchasB +givenName: Bernhard +mail: PurchasB@541a9a67add74942af05ec9661f08230.bitwarden.com +carLicense: EGHXVW +departmentNumber: 6214 +employeeType: Normal +homePhone: +1 408 808-4942 +initials: B. P. +mobile: +1 408 260-7951 +pager: +1 408 368-3858 +roomNumber: 8365 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rocke Moubarak +sn: Moubarak +description: This is Rocke Moubarak's description +facsimileTelephoneNumber: +1 408 692-6876 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 408 547-3832 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: MoubaraR +givenName: Rocke +mail: MoubaraR@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com +carLicense: WQWM6T +departmentNumber: 6484 +employeeType: Employee +homePhone: +1 408 810-9249 +initials: R. M. +mobile: +1 408 622-6596 +pager: +1 408 977-4446 +roomNumber: 8878 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Terrence Rolston,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terrence Rolston +sn: Rolston +description: This is Terrence Rolston's description +facsimileTelephoneNumber: +1 213 706-6957 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 895-8405 +title: Associate Management Dictator +userPassword: Password1 +uid: RolstonT +givenName: Terrence +mail: RolstonT@f64d2b674404476caa1b13d86d94ce8c.bitwarden.com +carLicense: JDH35N +departmentNumber: 4027 +employeeType: Contract +homePhone: +1 213 622-4201 +initials: T. R. +mobile: +1 213 346-7688 +pager: +1 213 391-1901 +roomNumber: 9141 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Douglass Kwee,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Douglass Kwee +sn: Kwee +description: This is Douglass Kwee's description +facsimileTelephoneNumber: +1 408 670-9968 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 556-6036 +title: Chief Product Testing Manager +userPassword: Password1 +uid: KweeD +givenName: Douglass +mail: KweeD@b7096e7dad2d445c9a6a84bd0cc4e406.bitwarden.com +carLicense: DNDIOW +departmentNumber: 5304 +employeeType: Contract +homePhone: +1 408 866-5444 +initials: D. K. +mobile: +1 408 992-9656 +pager: +1 408 618-5501 +roomNumber: 8082 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Manjit Sankey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manjit Sankey +sn: Sankey +description: This is Manjit Sankey's description +facsimileTelephoneNumber: +1 415 843-9105 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 134-7856 +title: Master Product Development Engineer +userPassword: Password1 +uid: SankeyM +givenName: Manjit +mail: SankeyM@0e3113ef45cd4f5f8de5c47309c63f86.bitwarden.com +carLicense: F8FY3W +departmentNumber: 6225 +employeeType: Employee +homePhone: +1 415 707-3032 +initials: M. S. +mobile: +1 415 520-7863 +pager: +1 415 702-4529 +roomNumber: 9564 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Thalia Majid,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thalia Majid +sn: Majid +description: This is Thalia Majid's description +facsimileTelephoneNumber: +1 510 929-3969 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 610-4560 +title: Chief Product Testing President +userPassword: Password1 +uid: MajidT +givenName: Thalia +mail: MajidT@190762f539394f3d8d0e37edbd48fa26.bitwarden.com +carLicense: 82VULF +departmentNumber: 5642 +employeeType: Normal +homePhone: +1 510 924-9622 +initials: T. M. +mobile: +1 510 966-2204 +pager: +1 510 869-4236 +roomNumber: 9748 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Anna Gullekson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anna Gullekson +sn: Gullekson +description: This is Anna Gullekson's description +facsimileTelephoneNumber: +1 408 393-2447 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 327-3558 +title: Supreme Peons Consultant +userPassword: Password1 +uid: GulleksA +givenName: Anna +mail: GulleksA@893bc48ed45e4ab7ab4ee0815dd34812.bitwarden.com +carLicense: L4TIM3 +departmentNumber: 9670 +employeeType: Normal +homePhone: +1 408 720-9026 +initials: A. G. +mobile: +1 408 172-1216 +pager: +1 408 641-7026 +roomNumber: 9563 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Steffi Rok,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steffi Rok +sn: Rok +description: This is Steffi Rok's description +facsimileTelephoneNumber: +1 510 383-7457 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 860-4687 +title: Chief Product Testing Architect +userPassword: Password1 +uid: RokS +givenName: Steffi +mail: RokS@8fb9d9d0bee6452fa8938ef7b2ecd6d2.bitwarden.com +carLicense: BHI5V8 +departmentNumber: 8865 +employeeType: Normal +homePhone: +1 510 393-3457 +initials: S. R. +mobile: +1 510 616-6587 +pager: +1 510 440-7359 +roomNumber: 9546 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gerrard Kearns,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerrard Kearns +sn: Kearns +description: This is Gerrard Kearns's description +facsimileTelephoneNumber: +1 415 720-6357 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 826-4446 +title: Master Administrative Manager +userPassword: Password1 +uid: KearnsG +givenName: Gerrard +mail: KearnsG@aca976004a314abfbb7dfda7c7926044.bitwarden.com +carLicense: 8I168E +departmentNumber: 2464 +employeeType: Normal +homePhone: +1 415 868-9241 +initials: G. K. +mobile: +1 415 455-3026 +pager: +1 415 210-6172 +roomNumber: 9705 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebekkah Letendre +sn: Letendre +description: This is Rebekkah Letendre's description +facsimileTelephoneNumber: +1 206 810-1871 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 786-4144 +title: Associate Administrative Janitor +userPassword: Password1 +uid: LetendrR +givenName: Rebekkah +mail: LetendrR@1babd519a8034b2d99c4603db1b7c5f2.bitwarden.com +carLicense: XL9MI6 +departmentNumber: 2314 +employeeType: Normal +homePhone: +1 206 141-6614 +initials: R. L. +mobile: +1 206 844-2278 +pager: +1 206 398-7697 +roomNumber: 9647 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Teri Braginetz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teri Braginetz +sn: Braginetz +description: This is Teri Braginetz's description +facsimileTelephoneNumber: +1 206 337-4098 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 706-9755 +title: Master Janitorial Engineer +userPassword: Password1 +uid: BragineT +givenName: Teri +mail: BragineT@bff4b511cea9469fa37ffb543c659826.bitwarden.com +carLicense: 2TEG25 +departmentNumber: 8839 +employeeType: Contract +homePhone: +1 206 709-5159 +initials: T. B. +mobile: +1 206 676-3396 +pager: +1 206 694-4677 +roomNumber: 9792 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nuri Spieker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nuri Spieker +sn: Spieker +description: This is Nuri Spieker's description +facsimileTelephoneNumber: +1 213 583-6101 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 636-4161 +title: Chief Peons Visionary +userPassword: Password1 +uid: SpiekerN +givenName: Nuri +mail: SpiekerN@afa80aa7187b419eb6bf52dc727c580b.bitwarden.com +carLicense: A6SKK4 +departmentNumber: 9885 +employeeType: Normal +homePhone: +1 213 373-7906 +initials: N. S. +mobile: +1 213 324-5090 +pager: +1 213 479-7357 +roomNumber: 8788 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tobi Bourahla +sn: Bourahla +description: This is Tobi Bourahla's description +facsimileTelephoneNumber: +1 804 559-4395 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 804 656-7905 +title: Master Product Testing Architect +userPassword: Password1 +uid: BourahlT +givenName: Tobi +mail: BourahlT@19b361f0a9d047efa402d72785e83839.bitwarden.com +carLicense: KJ8MSY +departmentNumber: 4936 +employeeType: Normal +homePhone: +1 804 179-1439 +initials: T. B. +mobile: +1 804 224-3608 +pager: +1 804 634-7479 +roomNumber: 8028 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Flossy Leveille,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flossy Leveille +sn: Leveille +description: This is Flossy Leveille's description +facsimileTelephoneNumber: +1 415 801-6959 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 790-9202 +title: Junior Management Sales Rep +userPassword: Password1 +uid: LeveillF +givenName: Flossy +mail: LeveillF@e89f7d8012a542109e09ce98de1ebaa3.bitwarden.com +carLicense: RME7RF +departmentNumber: 4102 +employeeType: Employee +homePhone: +1 415 133-9411 +initials: F. L. +mobile: +1 415 741-1558 +pager: +1 415 204-6420 +roomNumber: 8098 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Witte Houghton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Witte Houghton +sn: Houghton +description: This is Witte Houghton's description +facsimileTelephoneNumber: +1 206 470-8396 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 682-5716 +title: Chief Payroll Technician +userPassword: Password1 +uid: HoughtoW +givenName: Witte +mail: HoughtoW@c91b2ddabda245189089b8e227b823b2.bitwarden.com +carLicense: XAAP9K +departmentNumber: 4229 +employeeType: Employee +homePhone: +1 206 203-5303 +initials: W. H. +mobile: +1 206 388-3271 +pager: +1 206 398-1236 +roomNumber: 8486 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gateway Szaran,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gateway Szaran +sn: Szaran +description: This is Gateway Szaran's description +facsimileTelephoneNumber: +1 415 668-8210 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 570-9279 +title: Master Administrative Dictator +userPassword: Password1 +uid: SzaranG +givenName: Gateway +mail: SzaranG@ba21abcd355b438c8ca475845a96f139.bitwarden.com +carLicense: W0VMBI +departmentNumber: 3045 +employeeType: Normal +homePhone: +1 415 798-1747 +initials: G. S. +mobile: +1 415 836-6060 +pager: +1 415 338-2028 +roomNumber: 9198 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Othelia Henley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othelia Henley +sn: Henley +description: This is Othelia Henley's description +facsimileTelephoneNumber: +1 510 477-7780 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 277-1454 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: HenleyO +givenName: Othelia +mail: HenleyO@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com +carLicense: SGNBHJ +departmentNumber: 2448 +employeeType: Normal +homePhone: +1 510 417-5132 +initials: O. H. +mobile: +1 510 639-7746 +pager: +1 510 447-8815 +roomNumber: 8511 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Stacia Sova,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacia Sova +sn: Sova +description: This is Stacia Sova's description +facsimileTelephoneNumber: +1 818 621-9379 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 761-4178 +title: Junior Janitorial Punk +userPassword: Password1 +uid: SovaS +givenName: Stacia +mail: SovaS@11aa381a3094436abdc8bd9975f709cf.bitwarden.com +carLicense: XI2IH0 +departmentNumber: 2228 +employeeType: Contract +homePhone: +1 818 982-4677 +initials: S. S. +mobile: +1 818 450-6737 +pager: +1 818 948-6086 +roomNumber: 9551 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yueping Lotochinski +sn: Lotochinski +description: This is Yueping Lotochinski's description +facsimileTelephoneNumber: +1 206 750-7053 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 813-3640 +title: Junior Human Resources Architect +userPassword: Password1 +uid: LotochiY +givenName: Yueping +mail: LotochiY@cb2e25cd93c145bf81000296630c3ab7.bitwarden.com +carLicense: WB0JCP +departmentNumber: 9481 +employeeType: Contract +homePhone: +1 206 193-2401 +initials: Y. L. +mobile: +1 206 639-6969 +pager: +1 206 188-8144 +roomNumber: 8321 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kellen Nickells,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kellen Nickells +sn: Nickells +description: This is Kellen Nickells's description +facsimileTelephoneNumber: +1 818 688-6789 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 268-4186 +title: Junior Product Development Mascot +userPassword: Password1 +uid: NickellK +givenName: Kellen +mail: NickellK@1eb9b53c6a0544dd9c49164e1f66daae.bitwarden.com +carLicense: V0PIJ9 +departmentNumber: 9935 +employeeType: Contract +homePhone: +1 818 453-1489 +initials: K. N. +mobile: +1 818 571-8845 +pager: +1 818 845-4143 +roomNumber: 8256 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subu Glofcheskie +sn: Glofcheskie +description: This is Subu Glofcheskie's description +facsimileTelephoneNumber: +1 213 427-8775 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 655-1460 +title: Junior Janitorial Admin +userPassword: Password1 +uid: GlofcheS +givenName: Subu +mail: GlofcheS@49a15030fed84b5c949c8b818a768fcf.bitwarden.com +carLicense: RULLSE +departmentNumber: 5055 +employeeType: Normal +homePhone: +1 213 132-9329 +initials: S. G. +mobile: +1 213 471-4359 +pager: +1 213 582-7932 +roomNumber: 9415 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noelle Miltenburg +sn: Miltenburg +description: This is Noelle Miltenburg's description +facsimileTelephoneNumber: +1 408 814-5509 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 320-1751 +title: Supreme Human Resources Assistant +userPassword: Password1 +uid: MiltenbN +givenName: Noelle +mail: MiltenbN@325baca037db47019cfe17144614afb2.bitwarden.com +carLicense: V251AT +departmentNumber: 1648 +employeeType: Normal +homePhone: +1 408 472-5095 +initials: N. M. +mobile: +1 408 988-9381 +pager: +1 408 315-9499 +roomNumber: 9337 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marika Brombal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marika Brombal +sn: Brombal +description: This is Marika Brombal's description +facsimileTelephoneNumber: +1 510 255-3783 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 695-5441 +title: Chief Peons Pinhead +userPassword: Password1 +uid: BrombalM +givenName: Marika +mail: BrombalM@fc0c286626334794ab4a83e723107bf2.bitwarden.com +carLicense: RJIIAU +departmentNumber: 5205 +employeeType: Employee +homePhone: +1 510 867-9579 +initials: M. B. +mobile: +1 510 884-9251 +pager: +1 510 778-1388 +roomNumber: 8089 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjie Watchmaker +sn: Watchmaker +description: This is Marjie Watchmaker's description +facsimileTelephoneNumber: +1 408 728-8043 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 103-6608 +title: Supreme Product Testing Director +userPassword: Password1 +uid: WatchmaM +givenName: Marjie +mail: WatchmaM@cfa5e8864d9a4014bb3e1303e126d0df.bitwarden.com +carLicense: 91AKU0 +departmentNumber: 1048 +employeeType: Normal +homePhone: +1 408 798-9795 +initials: M. W. +mobile: +1 408 677-4423 +pager: +1 408 321-5313 +roomNumber: 8781 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kally Woodyer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kally Woodyer +sn: Woodyer +description: This is Kally Woodyer's description +facsimileTelephoneNumber: +1 818 590-7124 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 818-3334 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: WoodyerK +givenName: Kally +mail: WoodyerK@d854a7d34f1f40b68a358853dc801a6b.bitwarden.com +carLicense: MA6YJD +departmentNumber: 3881 +employeeType: Normal +homePhone: +1 818 651-8605 +initials: K. W. +mobile: +1 818 265-6210 +pager: +1 818 571-4144 +roomNumber: 9960 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Constancia Liao,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constancia Liao +sn: Liao +description: This is Constancia Liao's description +facsimileTelephoneNumber: +1 206 972-8715 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 945-9669 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: LiaoC +givenName: Constancia +mail: LiaoC@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com +carLicense: AOTU9N +departmentNumber: 3614 +employeeType: Contract +homePhone: +1 206 359-5834 +initials: C. L. +mobile: +1 206 218-2390 +pager: +1 206 926-6779 +roomNumber: 9899 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alexander Riley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alexander Riley +sn: Riley +description: This is Alexander Riley's description +facsimileTelephoneNumber: +1 818 733-4818 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 818 162-6144 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: RileyA +givenName: Alexander +mail: RileyA@e92792a71a1b4fd28678d03900079ed2.bitwarden.com +carLicense: 0HS5WV +departmentNumber: 7189 +employeeType: Contract +homePhone: +1 818 829-8936 +initials: A. R. +mobile: +1 818 826-5107 +pager: +1 818 842-6280 +roomNumber: 9441 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Concordia Radcliffe +sn: Radcliffe +description: This is Concordia Radcliffe's description +facsimileTelephoneNumber: +1 408 622-8596 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 530-8110 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: RadclifC +givenName: Concordia +mail: RadclifC@38a7625af1b14df88545f13f78008710.bitwarden.com +carLicense: 0FOTG1 +departmentNumber: 9036 +employeeType: Normal +homePhone: +1 408 543-4978 +initials: C. R. +mobile: +1 408 442-4826 +pager: +1 408 139-4880 +roomNumber: 8770 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bobb Hubers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobb Hubers +sn: Hubers +description: This is Bobb Hubers's description +facsimileTelephoneNumber: +1 818 208-3453 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 398-8545 +title: Associate Management Evangelist +userPassword: Password1 +uid: HubersB +givenName: Bobb +mail: HubersB@13bd043663fc42cba2436f0d4858727a.bitwarden.com +carLicense: WJRXTT +departmentNumber: 4766 +employeeType: Normal +homePhone: +1 818 515-3351 +initials: B. H. +mobile: +1 818 671-7067 +pager: +1 818 984-7882 +roomNumber: 9021 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vannie Clenney,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vannie Clenney +sn: Clenney +description: This is Vannie Clenney's description +facsimileTelephoneNumber: +1 213 759-2992 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 762-3825 +title: Associate Human Resources Figurehead +userPassword: Password1 +uid: ClenneyV +givenName: Vannie +mail: ClenneyV@b18734eaf31b4b8a9fcf2accdab91823.bitwarden.com +carLicense: TVUVGF +departmentNumber: 2666 +employeeType: Contract +homePhone: +1 213 391-1795 +initials: V. C. +mobile: +1 213 273-1447 +pager: +1 213 501-5838 +roomNumber: 9967 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Udaya Kingaby,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Udaya Kingaby +sn: Kingaby +description: This is Udaya Kingaby's description +facsimileTelephoneNumber: +1 213 693-2648 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 213 183-1074 +title: Associate Peons Manager +userPassword: Password1 +uid: KingabyU +givenName: Udaya +mail: KingabyU@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com +carLicense: EP6O5F +departmentNumber: 7622 +employeeType: Employee +homePhone: +1 213 881-2458 +initials: U. K. +mobile: +1 213 146-1076 +pager: +1 213 695-6839 +roomNumber: 9444 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dari OHara,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dari OHara +sn: OHara +description: This is Dari OHara's description +facsimileTelephoneNumber: +1 415 849-9805 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 186-6951 +title: Master Administrative Grunt +userPassword: Password1 +uid: OHaraD +givenName: Dari +mail: OHaraD@8a0cbe1fe7e149a8b47de17ec0983326.bitwarden.com +carLicense: M1BP0T +departmentNumber: 6269 +employeeType: Contract +homePhone: +1 415 932-3845 +initials: D. O. +mobile: +1 415 737-1827 +pager: +1 415 415-2105 +roomNumber: 8702 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Merralee Firment,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merralee Firment +sn: Firment +description: This is Merralee Firment's description +facsimileTelephoneNumber: +1 415 751-7022 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 283-8760 +title: Chief Product Development Stooge +userPassword: Password1 +uid: FirmentM +givenName: Merralee +mail: FirmentM@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com +carLicense: WL73K2 +departmentNumber: 8959 +employeeType: Employee +homePhone: +1 415 349-6229 +initials: M. F. +mobile: +1 415 604-6451 +pager: +1 415 277-4470 +roomNumber: 9154 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ricardo Osborne +sn: Osborne +description: This is Ricardo Osborne's description +facsimileTelephoneNumber: +1 408 792-4918 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 970-1996 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: OsborneR +givenName: Ricardo +mail: OsborneR@18eab17fefac4eeea398f028a117f313.bitwarden.com +carLicense: FP03YF +departmentNumber: 5960 +employeeType: Contract +homePhone: +1 408 823-6636 +initials: R. O. +mobile: +1 408 505-2644 +pager: +1 408 802-6531 +roomNumber: 9809 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Aurie Alanoly,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurie Alanoly +sn: Alanoly +description: This is Aurie Alanoly's description +facsimileTelephoneNumber: +1 206 712-3864 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 560-9853 +title: Supreme Peons Writer +userPassword: Password1 +uid: AlanolyA +givenName: Aurie +mail: AlanolyA@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com +carLicense: G1H832 +departmentNumber: 1110 +employeeType: Employee +homePhone: +1 206 511-5168 +initials: A. A. +mobile: +1 206 365-6712 +pager: +1 206 373-7322 +roomNumber: 8730 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nadim Junkin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nadim Junkin +sn: Junkin +description: This is Nadim Junkin's description +facsimileTelephoneNumber: +1 408 570-8228 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 869-9757 +title: Supreme Peons Fellow +userPassword: Password1 +uid: JunkinN +givenName: Nadim +mail: JunkinN@09bb099d23204c85bbfd94efdb157b79.bitwarden.com +carLicense: 9KQBDM +departmentNumber: 7613 +employeeType: Normal +homePhone: +1 408 109-4098 +initials: N. J. +mobile: +1 408 482-4249 +pager: +1 408 185-5469 +roomNumber: 8662 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Erik Chapman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erik Chapman +sn: Chapman +description: This is Erik Chapman's description +facsimileTelephoneNumber: +1 510 898-2560 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 227-9342 +title: Associate Management Consultant +userPassword: Password1 +uid: ChapmanE +givenName: Erik +mail: ChapmanE@9d01b447e6a64f299b9f22d5bfa6f85c.bitwarden.com +carLicense: 02QP0L +departmentNumber: 5543 +employeeType: Normal +homePhone: +1 510 878-2635 +initials: E. C. +mobile: +1 510 842-9144 +pager: +1 510 693-2640 +roomNumber: 9939 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Adora Lamers,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adora Lamers +sn: Lamers +description: This is Adora Lamers's description +facsimileTelephoneNumber: +1 206 700-9229 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 812-7698 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: LamersA +givenName: Adora +mail: LamersA@0d80b2a6494e4c3ea20974357dae6a78.bitwarden.com +carLicense: 43DBOO +departmentNumber: 5234 +employeeType: Employee +homePhone: +1 206 218-9281 +initials: A. L. +mobile: +1 206 306-8552 +pager: +1 206 897-9474 +roomNumber: 9407 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiem Kinniburgh +sn: Kinniburgh +description: This is Kiem Kinniburgh's description +facsimileTelephoneNumber: +1 510 845-8926 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 510 930-9557 +title: Chief Product Development Sales Rep +userPassword: Password1 +uid: KinnibuK +givenName: Kiem +mail: KinnibuK@e88ec12c0e274795b179c15ca876ea28.bitwarden.com +carLicense: 3S35CE +departmentNumber: 9544 +employeeType: Employee +homePhone: +1 510 817-8673 +initials: K. K. +mobile: +1 510 239-3176 +pager: +1 510 740-5183 +roomNumber: 9123 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Micah Brabec,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micah Brabec +sn: Brabec +description: This is Micah Brabec's description +facsimileTelephoneNumber: +1 213 320-9789 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 749-6135 +title: Chief Peons President +userPassword: Password1 +uid: BrabecM +givenName: Micah +mail: BrabecM@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com +carLicense: DS32P9 +departmentNumber: 6996 +employeeType: Contract +homePhone: +1 213 552-9222 +initials: M. B. +mobile: +1 213 491-1494 +pager: +1 213 498-9934 +roomNumber: 9269 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Annette Brandsen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annette Brandsen +sn: Brandsen +description: This is Annette Brandsen's description +facsimileTelephoneNumber: +1 206 785-7626 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 928-5636 +title: Chief Product Development President +userPassword: Password1 +uid: BrandseA +givenName: Annette +mail: BrandseA@87319c77ecd947ceb8993498705d4a28.bitwarden.com +carLicense: MPXNN0 +departmentNumber: 2766 +employeeType: Normal +homePhone: +1 206 985-2645 +initials: A. B. +mobile: +1 206 836-3804 +pager: +1 206 375-9815 +roomNumber: 9385 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Amabelle Lockwood,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amabelle Lockwood +sn: Lockwood +description: This is Amabelle Lockwood's description +facsimileTelephoneNumber: +1 213 336-4057 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 547-9182 +title: Master Management Admin +userPassword: Password1 +uid: LockwooA +givenName: Amabelle +mail: LockwooA@6c11e171b5ae4d6a948549d1ce64d6ba.bitwarden.com +carLicense: FGLJ0M +departmentNumber: 4573 +employeeType: Contract +homePhone: +1 213 616-6401 +initials: A. L. +mobile: +1 213 416-2870 +pager: +1 213 700-1965 +roomNumber: 9301 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rosaline Carldata,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosaline Carldata +sn: Carldata +description: This is Rosaline Carldata's description +facsimileTelephoneNumber: +1 818 660-3051 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 671-5624 +title: Chief Peons Visionary +userPassword: Password1 +uid: CarldatR +givenName: Rosaline +mail: CarldatR@624142924058476ab877513f564d46a8.bitwarden.com +carLicense: K17HER +departmentNumber: 9288 +employeeType: Normal +homePhone: +1 818 404-4236 +initials: R. C. +mobile: +1 818 193-3116 +pager: +1 818 914-2871 +roomNumber: 9029 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Diana Felczak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diana Felczak +sn: Felczak +description: This is Diana Felczak's description +facsimileTelephoneNumber: +1 510 299-3602 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 194-8270 +title: Chief Human Resources Writer +userPassword: Password1 +uid: FelczakD +givenName: Diana +mail: FelczakD@79e870d6aec04b1188d3b93e080d363c.bitwarden.com +carLicense: AHWBQS +departmentNumber: 9748 +employeeType: Employee +homePhone: +1 510 262-6249 +initials: D. F. +mobile: +1 510 527-6083 +pager: +1 510 108-2910 +roomNumber: 9675 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Regis Liesemer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regis Liesemer +sn: Liesemer +description: This is Regis Liesemer's description +facsimileTelephoneNumber: +1 804 315-3268 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 725-7333 +title: Associate Peons Pinhead +userPassword: Password1 +uid: LiesemeR +givenName: Regis +mail: LiesemeR@08af06c825e94cb392bd12261cb97963.bitwarden.com +carLicense: X803NC +departmentNumber: 4651 +employeeType: Contract +homePhone: +1 804 325-4468 +initials: R. L. +mobile: +1 804 711-9934 +pager: +1 804 949-7864 +roomNumber: 9995 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Joke Mrozinski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joke Mrozinski +sn: Mrozinski +description: This is Joke Mrozinski's description +facsimileTelephoneNumber: +1 213 890-4586 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 335-5063 +title: Chief Administrative Assistant +userPassword: Password1 +uid: MrozinsJ +givenName: Joke +mail: MrozinsJ@cfa7040d433d4b838919647ccf3ca4bd.bitwarden.com +carLicense: TEB3OX +departmentNumber: 7397 +employeeType: Contract +homePhone: +1 213 127-2925 +initials: J. M. +mobile: +1 213 192-6220 +pager: +1 213 383-5313 +roomNumber: 8472 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marcelle Hine,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcelle Hine +sn: Hine +description: This is Marcelle Hine's description +facsimileTelephoneNumber: +1 415 329-2123 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 815-9553 +title: Supreme Product Development Artist +userPassword: Password1 +uid: HineM +givenName: Marcelle +mail: HineM@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com +carLicense: KN6J6J +departmentNumber: 7143 +employeeType: Normal +homePhone: +1 415 703-9016 +initials: M. H. +mobile: +1 415 944-2195 +pager: +1 415 780-7879 +roomNumber: 8997 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orlyn Legrow +sn: Legrow +description: This is Orlyn Legrow's description +facsimileTelephoneNumber: +1 206 309-2095 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 343-1204 +title: Master Product Testing Architect +userPassword: Password1 +uid: LegrowO +givenName: Orlyn +mail: LegrowO@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com +carLicense: YOTH4M +departmentNumber: 4368 +employeeType: Contract +homePhone: +1 206 372-1345 +initials: O. L. +mobile: +1 206 532-9797 +pager: +1 206 624-7401 +roomNumber: 9466 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Grayce Cicci,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grayce Cicci +sn: Cicci +description: This is Grayce Cicci's description +facsimileTelephoneNumber: +1 804 777-7178 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 267-4561 +title: Master Product Testing Punk +userPassword: Password1 +uid: CicciG +givenName: Grayce +mail: CicciG@79e870d6aec04b1188d3b93e080d363c.bitwarden.com +carLicense: HJWBRX +departmentNumber: 1489 +employeeType: Contract +homePhone: +1 804 678-7452 +initials: G. C. +mobile: +1 804 618-5358 +pager: +1 804 675-7048 +roomNumber: 9853 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Idris CPM,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idris CPM +sn: CPM +description: This is Idris CPM's description +facsimileTelephoneNumber: +1 415 872-5285 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 661-6947 +title: Junior Management President +userPassword: Password1 +uid: CPMI +givenName: Idris +mail: CPMI@065d89caf6134a3f9c8662bc1542414d.bitwarden.com +carLicense: BV7UQR +departmentNumber: 6073 +employeeType: Employee +homePhone: +1 415 328-7317 +initials: I. C. +mobile: +1 415 600-1269 +pager: +1 415 874-8002 +roomNumber: 8324 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tasia Sutarwala +sn: Sutarwala +description: This is Tasia Sutarwala's description +facsimileTelephoneNumber: +1 415 734-3178 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 618-9146 +title: Master Administrative Vice President +userPassword: Password1 +uid: SutarwaT +givenName: Tasia +mail: SutarwaT@021f182578104bf484110ac6631b5efa.bitwarden.com +carLicense: OONVFJ +departmentNumber: 6753 +employeeType: Normal +homePhone: +1 415 132-4356 +initials: T. S. +mobile: +1 415 839-6629 +pager: +1 415 264-4764 +roomNumber: 8678 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ree Budhram,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ree Budhram +sn: Budhram +description: This is Ree Budhram's description +facsimileTelephoneNumber: +1 415 326-7086 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 698-8315 +title: Master Product Development Developer +userPassword: Password1 +uid: BudhramR +givenName: Ree +mail: BudhramR@a3f7434e2b8a46068e08a2b78a0eab76.bitwarden.com +carLicense: 122CNG +departmentNumber: 9417 +employeeType: Contract +homePhone: +1 415 957-8003 +initials: R. B. +mobile: +1 415 203-5056 +pager: +1 415 272-1485 +roomNumber: 8401 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Elda Ranahan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elda Ranahan +sn: Ranahan +description: This is Elda Ranahan's description +facsimileTelephoneNumber: +1 408 213-3325 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 884-2211 +title: Master Peons Technician +userPassword: Password1 +uid: RanahanE +givenName: Elda +mail: RanahanE@bd1d65ed4d0c4a7dad4e3b96610e9934.bitwarden.com +carLicense: SIJNIM +departmentNumber: 3478 +employeeType: Contract +homePhone: +1 408 569-6775 +initials: E. R. +mobile: +1 408 657-8154 +pager: +1 408 399-1789 +roomNumber: 8879 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pinder Metrailer +sn: Metrailer +description: This is Pinder Metrailer's description +facsimileTelephoneNumber: +1 818 196-5106 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 561-9914 +title: Associate Human Resources Czar +userPassword: Password1 +uid: MetrailP +givenName: Pinder +mail: MetrailP@d0bdf08d734447ea82c1911df5e50cfd.bitwarden.com +carLicense: 72JU9Y +departmentNumber: 7980 +employeeType: Contract +homePhone: +1 818 613-9497 +initials: P. M. +mobile: +1 818 292-4757 +pager: +1 818 918-6464 +roomNumber: 9033 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shailendra Kapsa,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shailendra Kapsa +sn: Kapsa +description: This is Shailendra Kapsa's description +facsimileTelephoneNumber: +1 818 580-5818 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 272-5498 +title: Supreme Management Developer +userPassword: Password1 +uid: KapsaS +givenName: Shailendra +mail: KapsaS@43194b35694143d5b8419715c0e79567.bitwarden.com +carLicense: 8CTNT8 +departmentNumber: 5918 +employeeType: Normal +homePhone: +1 818 756-9872 +initials: S. K. +mobile: +1 818 897-3961 +pager: +1 818 713-4617 +roomNumber: 9625 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Persis Emig,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Persis Emig +sn: Emig +description: This is Persis Emig's description +facsimileTelephoneNumber: +1 408 903-6956 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 408 470-6012 +title: Master Peons Consultant +userPassword: Password1 +uid: EmigP +givenName: Persis +mail: EmigP@9fafe4d0289a4f4bbac552a25b2345a7.bitwarden.com +carLicense: 4W3SPP +departmentNumber: 5024 +employeeType: Contract +homePhone: +1 408 780-3141 +initials: P. E. +mobile: +1 408 134-1625 +pager: +1 408 483-6328 +roomNumber: 9759 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wladyslaw Fuson +sn: Fuson +description: This is Wladyslaw Fuson's description +facsimileTelephoneNumber: +1 510 870-4156 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 457-4821 +title: Associate Payroll Director +userPassword: Password1 +uid: FusonW +givenName: Wladyslaw +mail: FusonW@770858a0ba27427fa80380c180b40ddb.bitwarden.com +carLicense: UF8I18 +departmentNumber: 3891 +employeeType: Employee +homePhone: +1 510 576-2373 +initials: W. F. +mobile: +1 510 966-1491 +pager: +1 510 729-9012 +roomNumber: 8263 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jillayne Gendron +sn: Gendron +description: This is Jillayne Gendron's description +facsimileTelephoneNumber: +1 408 736-6588 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 540-5978 +title: Junior Human Resources Engineer +userPassword: Password1 +uid: GendronJ +givenName: Jillayne +mail: GendronJ@b154fab59ca14553be1151ffa2cd4d97.bitwarden.com +carLicense: R54KX1 +departmentNumber: 2974 +employeeType: Employee +homePhone: +1 408 245-9676 +initials: J. G. +mobile: +1 408 125-4022 +pager: +1 408 867-4539 +roomNumber: 8036 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Laurel Grills,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laurel Grills +sn: Grills +description: This is Laurel Grills's description +facsimileTelephoneNumber: +1 415 425-6588 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 276-6795 +title: Chief Product Testing Punk +userPassword: Password1 +uid: GrillsL +givenName: Laurel +mail: GrillsL@5d4e8ddf2cb3440da6c01a697205179e.bitwarden.com +carLicense: 2RKC37 +departmentNumber: 5386 +employeeType: Contract +homePhone: +1 415 124-4981 +initials: L. G. +mobile: +1 415 388-3390 +pager: +1 415 991-7160 +roomNumber: 9685 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Saloma Jaques,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saloma Jaques +sn: Jaques +description: This is Saloma Jaques's description +facsimileTelephoneNumber: +1 818 901-4739 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 822-8909 +title: Chief Administrative Czar +userPassword: Password1 +uid: JaquesS +givenName: Saloma +mail: JaquesS@374014674548406aaa9d72c3d1ad3586.bitwarden.com +carLicense: FMJNN3 +departmentNumber: 1771 +employeeType: Normal +homePhone: +1 818 584-6656 +initials: S. J. +mobile: +1 818 447-6841 +pager: +1 818 186-4765 +roomNumber: 8569 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sebastian Kammerer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sebastian Kammerer +sn: Kammerer +description: This is Sebastian Kammerer's description +facsimileTelephoneNumber: +1 804 214-4299 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 562-2577 +title: Junior Management Pinhead +userPassword: Password1 +uid: KammereS +givenName: Sebastian +mail: KammereS@986fe4fcc1ec45dd9a8c35010d313412.bitwarden.com +carLicense: G6MOBA +departmentNumber: 9155 +employeeType: Employee +homePhone: +1 804 540-7082 +initials: S. K. +mobile: +1 804 546-9590 +pager: +1 804 213-9344 +roomNumber: 9020 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Grayce Roesler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grayce Roesler +sn: Roesler +description: This is Grayce Roesler's description +facsimileTelephoneNumber: +1 415 827-4689 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 524-7132 +title: Supreme Product Testing Sales Rep +userPassword: Password1 +uid: RoeslerG +givenName: Grayce +mail: RoeslerG@bd28f191e92142cf98b8765cb13928aa.bitwarden.com +carLicense: KXWCUL +departmentNumber: 5695 +employeeType: Contract +homePhone: +1 415 834-6758 +initials: G. R. +mobile: +1 415 920-2808 +pager: +1 415 440-1328 +roomNumber: 9876 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Helene Krowlek,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helene Krowlek +sn: Krowlek +description: This is Helene Krowlek's description +facsimileTelephoneNumber: +1 818 388-4989 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 220-1471 +title: Associate Administrative Vice President +userPassword: Password1 +uid: KrowlekH +givenName: Helene +mail: KrowlekH@04bb376282154efc832b529dc3f80793.bitwarden.com +carLicense: M63FCR +departmentNumber: 5621 +employeeType: Employee +homePhone: +1 818 298-1202 +initials: H. K. +mobile: +1 818 247-4704 +pager: +1 818 965-1375 +roomNumber: 8956 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Charman Nagy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charman Nagy +sn: Nagy +description: This is Charman Nagy's description +facsimileTelephoneNumber: +1 818 703-1916 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 804-2886 +title: Supreme Product Development Director +userPassword: Password1 +uid: NagyC +givenName: Charman +mail: NagyC@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com +carLicense: 542RHP +departmentNumber: 5115 +employeeType: Employee +homePhone: +1 818 740-5634 +initials: C. N. +mobile: +1 818 303-2725 +pager: +1 818 187-4290 +roomNumber: 8535 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jacqueline Sorathia,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacqueline Sorathia +sn: Sorathia +description: This is Jacqueline Sorathia's description +facsimileTelephoneNumber: +1 818 408-5962 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 798-5078 +title: Master Management Visionary +userPassword: Password1 +uid: SorathiJ +givenName: Jacqueline +mail: SorathiJ@33045c677af94d5d866f53c47ff9ab36.bitwarden.com +carLicense: J77H3W +departmentNumber: 3077 +employeeType: Normal +homePhone: +1 818 615-3947 +initials: J. S. +mobile: +1 818 911-7587 +pager: +1 818 151-5747 +roomNumber: 9239 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leanne Devine,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leanne Devine +sn: Devine +description: This is Leanne Devine's description +facsimileTelephoneNumber: +1 213 219-4385 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 213 657-5159 +title: Master Product Development Czar +userPassword: Password1 +uid: DevineL +givenName: Leanne +mail: DevineL@683e25fc9db544c199938de64838b325.bitwarden.com +carLicense: JBW73D +departmentNumber: 9492 +employeeType: Contract +homePhone: +1 213 568-4186 +initials: L. D. +mobile: +1 213 467-1881 +pager: +1 213 758-4308 +roomNumber: 9770 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Manon Benham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manon Benham +sn: Benham +description: This is Manon Benham's description +facsimileTelephoneNumber: +1 804 247-8902 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 462-3899 +title: Junior Product Testing Technician +userPassword: Password1 +uid: BenhamM +givenName: Manon +mail: BenhamM@15fb4ae5d92f48d1828a5523a2de1119.bitwarden.com +carLicense: HBP5XD +departmentNumber: 3493 +employeeType: Normal +homePhone: +1 804 377-4103 +initials: M. B. +mobile: +1 804 926-4117 +pager: +1 804 538-7984 +roomNumber: 8290 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Meg Lara,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meg Lara +sn: Lara +description: This is Meg Lara's description +facsimileTelephoneNumber: +1 206 765-8505 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 594-8021 +title: Supreme Human Resources Pinhead +userPassword: Password1 +uid: LaraM +givenName: Meg +mail: LaraM@0d3f6cc1cdcf4ec187af48e309baf95b.bitwarden.com +carLicense: JUKP88 +departmentNumber: 7710 +employeeType: Contract +homePhone: +1 206 752-4892 +initials: M. L. +mobile: +1 206 373-2481 +pager: +1 206 351-8716 +roomNumber: 9351 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sanae Carpool,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanae Carpool +sn: Carpool +description: This is Sanae Carpool's description +facsimileTelephoneNumber: +1 213 167-4472 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 888-1751 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: CarpoolS +givenName: Sanae +mail: CarpoolS@8d1f37d60b9647bf981f8d5200deacf7.bitwarden.com +carLicense: OHNKSM +departmentNumber: 4463 +employeeType: Normal +homePhone: +1 213 822-7873 +initials: S. C. +mobile: +1 213 809-9658 +pager: +1 213 475-7119 +roomNumber: 9554 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mia Willis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mia Willis +sn: Willis +description: This is Mia Willis's description +facsimileTelephoneNumber: +1 415 606-7263 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 227-3489 +title: Associate Product Testing Manager +userPassword: Password1 +uid: WillisM +givenName: Mia +mail: WillisM@8bea6081e631433ebecd2c41f7175d46.bitwarden.com +carLicense: 3RNBDY +departmentNumber: 9485 +employeeType: Normal +homePhone: +1 415 761-1219 +initials: M. W. +mobile: +1 415 133-8568 +pager: +1 415 257-5371 +roomNumber: 8757 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gheorghe Younan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gheorghe Younan +sn: Younan +description: This is Gheorghe Younan's description +facsimileTelephoneNumber: +1 818 881-9560 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 935-9439 +title: Junior Administrative Admin +userPassword: Password1 +uid: YounanG +givenName: Gheorghe +mail: YounanG@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com +carLicense: OIPQYV +departmentNumber: 4582 +employeeType: Contract +homePhone: +1 818 969-3468 +initials: G. Y. +mobile: +1 818 132-5016 +pager: +1 818 462-6824 +roomNumber: 9853 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Val Toth,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Val Toth +sn: Toth +description: This is Val Toth's description +facsimileTelephoneNumber: +1 818 551-5374 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 263-7299 +title: Supreme Administrative Evangelist +userPassword: Password1 +uid: TothV +givenName: Val +mail: TothV@b3dbdab84e2c48b6978c034f8aec9c11.bitwarden.com +carLicense: UCDRHW +departmentNumber: 2173 +employeeType: Normal +homePhone: +1 818 976-6834 +initials: V. T. +mobile: +1 818 843-1532 +pager: +1 818 803-1254 +roomNumber: 8982 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaynor MacDermaid +sn: MacDermaid +description: This is Gaynor MacDermaid's description +facsimileTelephoneNumber: +1 804 136-4905 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 804 697-3965 +title: Junior Product Testing Mascot +userPassword: Password1 +uid: MacDermG +givenName: Gaynor +mail: MacDermG@5d66866885fa4ba8b5860161fb0bcacc.bitwarden.com +carLicense: TFWXPT +departmentNumber: 6580 +employeeType: Employee +homePhone: +1 804 575-7001 +initials: G. M. +mobile: +1 804 195-7760 +pager: +1 804 184-7864 +roomNumber: 8148 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ishan Puukila,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ishan Puukila +sn: Puukila +description: This is Ishan Puukila's description +facsimileTelephoneNumber: +1 213 175-4390 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 320-1415 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: PuukilaI +givenName: Ishan +mail: PuukilaI@f62f35ed22de4bb392da671e518673e3.bitwarden.com +carLicense: Y05704 +departmentNumber: 3610 +employeeType: Employee +homePhone: +1 213 165-9698 +initials: I. P. +mobile: +1 213 768-6325 +pager: +1 213 804-4792 +roomNumber: 8900 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Davinder Thibert,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davinder Thibert +sn: Thibert +description: This is Davinder Thibert's description +facsimileTelephoneNumber: +1 818 656-6574 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 836-5974 +title: Chief Administrative Figurehead +userPassword: Password1 +uid: ThibertD +givenName: Davinder +mail: ThibertD@2abf92fd8c714d91bc2b9d955d40f2ff.bitwarden.com +carLicense: X9GOJP +departmentNumber: 7968 +employeeType: Contract +homePhone: +1 818 592-9405 +initials: D. T. +mobile: +1 818 594-9773 +pager: +1 818 721-5887 +roomNumber: 8659 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mounir Theoret,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mounir Theoret +sn: Theoret +description: This is Mounir Theoret's description +facsimileTelephoneNumber: +1 415 241-8767 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 105-2425 +title: Associate Payroll Engineer +userPassword: Password1 +uid: TheoretM +givenName: Mounir +mail: TheoretM@87263f2ad4e44ac39562038c9af16152.bitwarden.com +carLicense: SEUSS8 +departmentNumber: 9886 +employeeType: Contract +homePhone: +1 415 527-8158 +initials: M. T. +mobile: +1 415 270-1453 +pager: +1 415 272-2298 +roomNumber: 9965 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Air Baldwin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Air Baldwin +sn: Baldwin +description: This is Air Baldwin's description +facsimileTelephoneNumber: +1 818 674-4486 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 589-7687 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: BaldwinA +givenName: Air +mail: BaldwinA@503fe0b136ce4292a59167d529c63c6f.bitwarden.com +carLicense: IL5GA2 +departmentNumber: 4343 +employeeType: Employee +homePhone: +1 818 157-1266 +initials: A. B. +mobile: +1 818 534-3008 +pager: +1 818 811-1227 +roomNumber: 9689 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Arlyne Miao,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlyne Miao +sn: Miao +description: This is Arlyne Miao's description +facsimileTelephoneNumber: +1 804 121-2646 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 148-7706 +title: Master Human Resources Pinhead +userPassword: Password1 +uid: MiaoA +givenName: Arlyne +mail: MiaoA@14f0a617fa68422cb151ec721a7c3c6d.bitwarden.com +carLicense: 6TIG6F +departmentNumber: 3604 +employeeType: Contract +homePhone: +1 804 401-2479 +initials: A. M. +mobile: +1 804 277-2553 +pager: +1 804 467-8022 +roomNumber: 9519 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Debi Seniuk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debi Seniuk +sn: Seniuk +description: This is Debi Seniuk's description +facsimileTelephoneNumber: +1 415 486-9539 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 938-5210 +title: Master Janitorial Fellow +userPassword: Password1 +uid: SeniukD +givenName: Debi +mail: SeniukD@409ada935d6b4cf28b401fd7d4cd1227.bitwarden.com +carLicense: DQHFDQ +departmentNumber: 2747 +employeeType: Contract +homePhone: +1 415 911-5311 +initials: D. S. +mobile: +1 415 822-1154 +pager: +1 415 308-7049 +roomNumber: 8996 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pas Maksuta,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pas Maksuta +sn: Maksuta +description: This is Pas Maksuta's description +facsimileTelephoneNumber: +1 408 792-9883 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 430-1205 +title: Chief Product Development Developer +userPassword: Password1 +uid: MaksutaP +givenName: Pas +mail: MaksutaP@c4687fc25321403c8c563bd392c6eebd.bitwarden.com +carLicense: LIBJFK +departmentNumber: 1938 +employeeType: Employee +homePhone: +1 408 669-2552 +initials: P. M. +mobile: +1 408 826-8425 +pager: +1 408 958-6604 +roomNumber: 9955 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Camellia Tencer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camellia Tencer +sn: Tencer +description: This is Camellia Tencer's description +facsimileTelephoneNumber: +1 415 485-3967 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 114-5959 +title: Master Peons Technician +userPassword: Password1 +uid: TencerC +givenName: Camellia +mail: TencerC@9166d82b2507407f821e6bc43e6ad329.bitwarden.com +carLicense: 3J5S5A +departmentNumber: 4227 +employeeType: Contract +homePhone: +1 415 470-9892 +initials: C. T. +mobile: +1 415 319-5904 +pager: +1 415 498-4818 +roomNumber: 9421 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=HinWai Menaker,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HinWai Menaker +sn: Menaker +description: This is HinWai Menaker's description +facsimileTelephoneNumber: +1 804 945-9302 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 254-8061 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: MenakerH +givenName: HinWai +mail: MenakerH@c44d8fdf489549e795a051d84cc2a931.bitwarden.com +carLicense: 9JJY0U +departmentNumber: 9704 +employeeType: Normal +homePhone: +1 804 985-3593 +initials: H. M. +mobile: +1 804 697-2548 +pager: +1 804 617-9831 +roomNumber: 9240 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalindi Dickerson +sn: Dickerson +description: This is Kalindi Dickerson's description +facsimileTelephoneNumber: +1 408 894-2861 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 429-9436 +title: Associate Payroll Sales Rep +userPassword: Password1 +uid: DickersK +givenName: Kalindi +mail: DickersK@49f8e0161dfd444bb97c350a4d451c6e.bitwarden.com +carLicense: PCPGT3 +departmentNumber: 2747 +employeeType: Contract +homePhone: +1 408 948-7631 +initials: K. D. +mobile: +1 408 189-5453 +pager: +1 408 413-5974 +roomNumber: 9367 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marilynn Wimbush +sn: Wimbush +description: This is Marilynn Wimbush's description +facsimileTelephoneNumber: +1 818 379-7103 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 818 569-6138 +title: Associate Administrative Pinhead +userPassword: Password1 +uid: WimbushM +givenName: Marilynn +mail: WimbushM@52a17214cb1d4651a3e9bb6b3656b1d2.bitwarden.com +carLicense: V7AS9A +departmentNumber: 1204 +employeeType: Contract +homePhone: +1 818 534-4749 +initials: M. W. +mobile: +1 818 392-8862 +pager: +1 818 541-9944 +roomNumber: 9226 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lenore Inrig,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenore Inrig +sn: Inrig +description: This is Lenore Inrig's description +facsimileTelephoneNumber: +1 213 649-9345 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 334-5912 +title: Chief Payroll Punk +userPassword: Password1 +uid: InrigL +givenName: Lenore +mail: InrigL@9d05795ed464449781ae591bd196a1b7.bitwarden.com +carLicense: TNRB86 +departmentNumber: 3620 +employeeType: Normal +homePhone: +1 213 964-3598 +initials: L. I. +mobile: +1 213 656-4882 +pager: +1 213 113-1104 +roomNumber: 8053 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monroe Turbyfill +sn: Turbyfill +description: This is Monroe Turbyfill's description +facsimileTelephoneNumber: +1 818 700-5418 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 442-2962 +title: Supreme Payroll Vice President +userPassword: Password1 +uid: TurbyfiM +givenName: Monroe +mail: TurbyfiM@3b405672834f4c2186242e2cccd0abf2.bitwarden.com +carLicense: AN4FB4 +departmentNumber: 8000 +employeeType: Employee +homePhone: +1 818 627-8438 +initials: M. T. +mobile: +1 818 267-8229 +pager: +1 818 637-7830 +roomNumber: 8396 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sibeal Manner,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibeal Manner +sn: Manner +description: This is Sibeal Manner's description +facsimileTelephoneNumber: +1 804 455-9540 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 340-5077 +title: Master Management Warrior +userPassword: Password1 +uid: MannerS +givenName: Sibeal +mail: MannerS@aea15e7df8c442459769e06303aa4e66.bitwarden.com +carLicense: KDPRV4 +departmentNumber: 4135 +employeeType: Employee +homePhone: +1 804 384-8922 +initials: S. M. +mobile: +1 804 896-4682 +pager: +1 804 679-1279 +roomNumber: 9038 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vo Filpus,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vo Filpus +sn: Filpus +description: This is Vo Filpus's description +facsimileTelephoneNumber: +1 415 666-3532 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 867-9416 +title: Associate Management Artist +userPassword: Password1 +uid: FilpusV +givenName: Vo +mail: FilpusV@05f7379ac7b945a2a2343b19ee63fd8a.bitwarden.com +carLicense: AM9DWS +departmentNumber: 7781 +employeeType: Employee +homePhone: +1 415 771-3355 +initials: V. F. +mobile: +1 415 483-6371 +pager: +1 415 431-9681 +roomNumber: 9915 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Martine Captives,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martine Captives +sn: Captives +description: This is Martine Captives's description +facsimileTelephoneNumber: +1 510 600-1477 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 907-7533 +title: Master Payroll Consultant +userPassword: Password1 +uid: CaptiveM +givenName: Martine +mail: CaptiveM@6e37f106489b4294bc905b93ac1e126f.bitwarden.com +carLicense: F88G35 +departmentNumber: 1774 +employeeType: Normal +homePhone: +1 510 272-9970 +initials: M. C. +mobile: +1 510 352-4992 +pager: +1 510 416-8523 +roomNumber: 8668 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franka Jakabffy +sn: Jakabffy +description: This is Franka Jakabffy's description +facsimileTelephoneNumber: +1 206 794-6937 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 767-2443 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: JakabffF +givenName: Franka +mail: JakabffF@9a62cb6fe77549efbb6b065fb22448c5.bitwarden.com +carLicense: QKBHWV +departmentNumber: 5900 +employeeType: Normal +homePhone: +1 206 994-1166 +initials: F. J. +mobile: +1 206 686-5732 +pager: +1 206 741-6430 +roomNumber: 8976 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Wileen Elgar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wileen Elgar +sn: Elgar +description: This is Wileen Elgar's description +facsimileTelephoneNumber: +1 206 447-6162 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 206 239-3548 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: ElgarW +givenName: Wileen +mail: ElgarW@369d31e12885450e8a3e646342f4bbde.bitwarden.com +carLicense: TNH95E +departmentNumber: 4208 +employeeType: Contract +homePhone: +1 206 940-9714 +initials: W. E. +mobile: +1 206 238-2132 +pager: +1 206 649-2021 +roomNumber: 8171 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Basheer Illidge,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Basheer Illidge +sn: Illidge +description: This is Basheer Illidge's description +facsimileTelephoneNumber: +1 213 715-6288 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 171-8203 +title: Master Management Director +userPassword: Password1 +uid: IllidgeB +givenName: Basheer +mail: IllidgeB@f9e13296819e4d139b7b490c05eac7c4.bitwarden.com +carLicense: 27G0QL +departmentNumber: 1512 +employeeType: Contract +homePhone: +1 213 666-2691 +initials: B. I. +mobile: +1 213 612-8300 +pager: +1 213 206-1536 +roomNumber: 9413 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jodine Swartz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jodine Swartz +sn: Swartz +description: This is Jodine Swartz's description +facsimileTelephoneNumber: +1 818 771-5695 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 247-7648 +title: Supreme Product Testing Technician +userPassword: Password1 +uid: SwartzJ +givenName: Jodine +mail: SwartzJ@07f011cc742c4813b7b97485646c3ab6.bitwarden.com +carLicense: 22QL7H +departmentNumber: 4161 +employeeType: Contract +homePhone: +1 818 214-5569 +initials: J. S. +mobile: +1 818 650-7297 +pager: +1 818 449-5173 +roomNumber: 8805 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnnie Dhar +sn: Dhar +description: This is Johnnie Dhar's description +facsimileTelephoneNumber: +1 206 749-3466 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 718-9428 +title: Supreme Janitorial Sales Rep +userPassword: Password1 +uid: DharJ +givenName: Johnnie +mail: DharJ@0a9a71507ed94ca2ba9642f4919766e3.bitwarden.com +carLicense: RYTUQM +departmentNumber: 2832 +employeeType: Contract +homePhone: +1 206 921-2163 +initials: J. D. +mobile: +1 206 588-4769 +pager: +1 206 426-1039 +roomNumber: 8683 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Barbette VanHaste,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbette VanHaste +sn: VanHaste +description: This is Barbette VanHaste's description +facsimileTelephoneNumber: +1 510 972-2494 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 474-6655 +title: Junior Payroll Architect +userPassword: Password1 +uid: VanHastB +givenName: Barbette +mail: VanHastB@60bd4b43f6e248668a53825c3bbcbca3.bitwarden.com +carLicense: TJYUVU +departmentNumber: 1873 +employeeType: Employee +homePhone: +1 510 656-5737 +initials: B. V. +mobile: +1 510 550-2799 +pager: +1 510 153-3939 +roomNumber: 9348 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Envoy Dignam,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Envoy Dignam +sn: Dignam +description: This is Envoy Dignam's description +facsimileTelephoneNumber: +1 408 689-1332 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 911-4477 +title: Chief Product Development Artist +userPassword: Password1 +uid: DignamE +givenName: Envoy +mail: DignamE@6ba8baad97224f009bad99f9ff3a1b6b.bitwarden.com +carLicense: YW2QMG +departmentNumber: 5291 +employeeType: Contract +homePhone: +1 408 295-2595 +initials: E. D. +mobile: +1 408 891-3257 +pager: +1 408 674-1911 +roomNumber: 9513 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agretha Whitehurst +sn: Whitehurst +description: This is Agretha Whitehurst's description +facsimileTelephoneNumber: +1 510 387-8257 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 510 500-7132 +title: Master Product Testing President +userPassword: Password1 +uid: WhitehuA +givenName: Agretha +mail: WhitehuA@7cefaa55a36f4be4acff376f7ddd1a67.bitwarden.com +carLicense: BA6JWK +departmentNumber: 5626 +employeeType: Employee +homePhone: +1 510 298-9874 +initials: A. W. +mobile: +1 510 381-4153 +pager: +1 510 352-8905 +roomNumber: 8930 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ghassan Visser,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ghassan Visser +sn: Visser +description: This is Ghassan Visser's description +facsimileTelephoneNumber: +1 818 177-3259 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 695-7298 +title: Master Product Development Visionary +userPassword: Password1 +uid: VisserG +givenName: Ghassan +mail: VisserG@87c78a2aa2ad454eb9d547c989c59937.bitwarden.com +carLicense: U360AK +departmentNumber: 2646 +employeeType: Contract +homePhone: +1 818 507-7043 +initials: G. V. +mobile: +1 818 744-9530 +pager: +1 818 687-8193 +roomNumber: 8890 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bryna Grandy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryna Grandy +sn: Grandy +description: This is Bryna Grandy's description +facsimileTelephoneNumber: +1 510 627-4416 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 324-6847 +title: Junior Product Testing Artist +userPassword: Password1 +uid: GrandyB +givenName: Bryna +mail: GrandyB@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com +carLicense: K0V74E +departmentNumber: 8900 +employeeType: Contract +homePhone: +1 510 875-4163 +initials: B. G. +mobile: +1 510 967-4011 +pager: +1 510 386-9954 +roomNumber: 9595 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathryne Rockley +sn: Rockley +description: This is Kathryne Rockley's description +facsimileTelephoneNumber: +1 213 923-7587 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 385-8994 +title: Associate Janitorial Assistant +userPassword: Password1 +uid: RockleyK +givenName: Kathryne +mail: RockleyK@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com +carLicense: E0RT5D +departmentNumber: 3233 +employeeType: Contract +homePhone: +1 213 446-4331 +initials: K. R. +mobile: +1 213 924-2927 +pager: +1 213 308-5979 +roomNumber: 9126 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nonna Calkins,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nonna Calkins +sn: Calkins +description: This is Nonna Calkins's description +facsimileTelephoneNumber: +1 818 309-6266 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 996-3507 +title: Supreme Product Development Pinhead +userPassword: Password1 +uid: CalkinsN +givenName: Nonna +mail: CalkinsN@ca68c16297b44efe9bd231fcf1f835a9.bitwarden.com +carLicense: 8RR3HV +departmentNumber: 7428 +employeeType: Normal +homePhone: +1 818 608-3676 +initials: N. C. +mobile: +1 818 535-2577 +pager: +1 818 563-6771 +roomNumber: 8034 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tchangid Cosner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tchangid Cosner +sn: Cosner +description: This is Tchangid Cosner's description +facsimileTelephoneNumber: +1 213 371-7349 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 185-4590 +title: Master Peons Evangelist +userPassword: Password1 +uid: CosnerT +givenName: Tchangid +mail: CosnerT@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com +carLicense: BPWSDX +departmentNumber: 1777 +employeeType: Normal +homePhone: +1 213 944-1075 +initials: T. C. +mobile: +1 213 681-1065 +pager: +1 213 824-8061 +roomNumber: 8794 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Happy Armstead,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Happy Armstead +sn: Armstead +description: This is Happy Armstead's description +facsimileTelephoneNumber: +1 818 454-6031 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 542-7136 +title: Master Human Resources Technician +userPassword: Password1 +uid: ArmsteaH +givenName: Happy +mail: ArmsteaH@0ed116231128466cad659b85d73b9c7b.bitwarden.com +carLicense: DOR72J +departmentNumber: 9475 +employeeType: Contract +homePhone: +1 818 967-6056 +initials: H. A. +mobile: +1 818 715-2779 +pager: +1 818 377-6262 +roomNumber: 8688 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Siva Trader,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siva Trader +sn: Trader +description: This is Siva Trader's description +facsimileTelephoneNumber: +1 415 716-1243 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 218-2353 +title: Chief Management Writer +userPassword: Password1 +uid: TraderS +givenName: Siva +mail: TraderS@b838776a11e74718955f6601c7f8d1e7.bitwarden.com +carLicense: LN0LDK +departmentNumber: 6146 +employeeType: Normal +homePhone: +1 415 530-4366 +initials: S. T. +mobile: +1 415 740-8572 +pager: +1 415 271-7421 +roomNumber: 8588 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dredi Maragoudakis +sn: Maragoudakis +description: This is Dredi Maragoudakis's description +facsimileTelephoneNumber: +1 804 690-6031 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 703-3905 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: MaragouD +givenName: Dredi +mail: MaragouD@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com +carLicense: 3U3M0A +departmentNumber: 6277 +employeeType: Contract +homePhone: +1 804 781-3114 +initials: D. M. +mobile: +1 804 790-5725 +pager: +1 804 219-4108 +roomNumber: 8160 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Norton Hlady,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norton Hlady +sn: Hlady +description: This is Norton Hlady's description +facsimileTelephoneNumber: +1 408 664-7935 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 685-9909 +title: Supreme Management Consultant +userPassword: Password1 +uid: HladyN +givenName: Norton +mail: HladyN@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com +carLicense: WHX8UC +departmentNumber: 6689 +employeeType: Employee +homePhone: +1 408 862-2826 +initials: N. H. +mobile: +1 408 231-8913 +pager: +1 408 941-1834 +roomNumber: 9605 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Benita Brivet,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benita Brivet +sn: Brivet +description: This is Benita Brivet's description +facsimileTelephoneNumber: +1 804 383-2423 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 116-9850 +title: Junior Human Resources Developer +userPassword: Password1 +uid: BrivetB +givenName: Benita +mail: BrivetB@e37545ccfd5e4e4281ccd855336fcf03.bitwarden.com +carLicense: HGT5T1 +departmentNumber: 4994 +employeeType: Normal +homePhone: +1 804 704-7842 +initials: B. B. +mobile: +1 804 912-9798 +pager: +1 804 127-7000 +roomNumber: 9351 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ulrike Ta,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ulrike Ta +sn: Ta +description: This is Ulrike Ta's description +facsimileTelephoneNumber: +1 408 249-6063 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 408 235-6393 +title: Master Peons Evangelist +userPassword: Password1 +uid: TaU +givenName: Ulrike +mail: TaU@e92792a71a1b4fd28678d03900079ed2.bitwarden.com +carLicense: WM519F +departmentNumber: 6501 +employeeType: Normal +homePhone: +1 408 450-8646 +initials: U. T. +mobile: +1 408 327-2061 +pager: +1 408 414-8802 +roomNumber: 9851 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilda Rainsforth +sn: Rainsforth +description: This is Gilda Rainsforth's description +facsimileTelephoneNumber: +1 510 563-2209 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 306-6647 +title: Junior Administrative Sales Rep +userPassword: Password1 +uid: RainsfoG +givenName: Gilda +mail: RainsfoG@412210ae069c4a339c017fbe0c820674.bitwarden.com +carLicense: KGUWUW +departmentNumber: 9308 +employeeType: Normal +homePhone: +1 510 416-6114 +initials: G. R. +mobile: +1 510 109-1012 +pager: +1 510 169-8969 +roomNumber: 9242 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perle Vandenberg +sn: Vandenberg +description: This is Perle Vandenberg's description +facsimileTelephoneNumber: +1 510 191-7392 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 510 377-6114 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: VandenbP +givenName: Perle +mail: VandenbP@52c9d88a3dde448a9626a726bccbd686.bitwarden.com +carLicense: XFR776 +departmentNumber: 4438 +employeeType: Employee +homePhone: +1 510 711-6916 +initials: P. V. +mobile: +1 510 223-2708 +pager: +1 510 655-5538 +roomNumber: 8702 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jimmy Ramey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jimmy Ramey +sn: Ramey +description: This is Jimmy Ramey's description +facsimileTelephoneNumber: +1 818 938-5609 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 365-7801 +title: Supreme Management Consultant +userPassword: Password1 +uid: RameyJ +givenName: Jimmy +mail: RameyJ@98f223020f174b0b8eb03e442bd857ef.bitwarden.com +carLicense: P6UGDK +departmentNumber: 2822 +employeeType: Normal +homePhone: +1 818 836-4631 +initials: J. R. +mobile: +1 818 196-9385 +pager: +1 818 706-6719 +roomNumber: 8753 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Romano Teacher,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Romano Teacher +sn: Teacher +description: This is Romano Teacher's description +facsimileTelephoneNumber: +1 213 176-1535 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 424-7237 +title: Chief Administrative Architect +userPassword: Password1 +uid: TeacherR +givenName: Romano +mail: TeacherR@6a7ccf71870148fe8f9ac4d527b4d501.bitwarden.com +carLicense: 8NA3X4 +departmentNumber: 2805 +employeeType: Contract +homePhone: +1 213 931-9372 +initials: R. T. +mobile: +1 213 107-4468 +pager: +1 213 963-2567 +roomNumber: 9311 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Poppy Ong,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Poppy Ong +sn: Ong +description: This is Poppy Ong's description +facsimileTelephoneNumber: +1 213 959-5658 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 661-9482 +title: Junior Payroll Figurehead +userPassword: Password1 +uid: OngP +givenName: Poppy +mail: OngP@7f04a3ff8bcd4af8bad4e2a152862067.bitwarden.com +carLicense: V8SAMR +departmentNumber: 4509 +employeeType: Employee +homePhone: +1 213 725-2748 +initials: P. O. +mobile: +1 213 619-3354 +pager: +1 213 894-6994 +roomNumber: 8894 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maudie Sadorra +sn: Sadorra +description: This is Maudie Sadorra's description +facsimileTelephoneNumber: +1 415 239-7430 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 415 242-8720 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: SadorraM +givenName: Maudie +mail: SadorraM@9a316795d99d40a2b8152947d5d04a37.bitwarden.com +carLicense: 2V4V95 +departmentNumber: 7053 +employeeType: Employee +homePhone: +1 415 566-6689 +initials: M. S. +mobile: +1 415 561-6276 +pager: +1 415 636-8121 +roomNumber: 9344 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ynes Witzmann +sn: Witzmann +description: This is Ynes Witzmann's description +facsimileTelephoneNumber: +1 213 432-5043 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 737-2189 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: WitzmanY +givenName: Ynes +mail: WitzmanY@5b79fe30a5de465185a631630aa2a024.bitwarden.com +carLicense: 90TTVS +departmentNumber: 4994 +employeeType: Normal +homePhone: +1 213 463-8411 +initials: Y. W. +mobile: +1 213 309-5647 +pager: +1 213 157-9074 +roomNumber: 8214 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Takako Cambre,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Takako Cambre +sn: Cambre +description: This is Takako Cambre's description +facsimileTelephoneNumber: +1 818 574-5009 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 818 935-4996 +title: Associate Product Development President +userPassword: Password1 +uid: CambreT +givenName: Takako +mail: CambreT@4cf289446e164bf8828133d117ff1a2f.bitwarden.com +carLicense: J4C716 +departmentNumber: 3680 +employeeType: Contract +homePhone: +1 818 670-6794 +initials: T. C. +mobile: +1 818 506-4611 +pager: +1 818 728-9188 +roomNumber: 8901 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eachelle Etu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eachelle Etu +sn: Etu +description: This is Eachelle Etu's description +facsimileTelephoneNumber: +1 206 108-7730 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 539-4330 +title: Master Administrative Pinhead +userPassword: Password1 +uid: EtuE +givenName: Eachelle +mail: EtuE@53c3e76f124f49beb679b871a3ea5611.bitwarden.com +carLicense: TPLIN7 +departmentNumber: 8695 +employeeType: Normal +homePhone: +1 206 544-4318 +initials: E. E. +mobile: +1 206 201-9461 +pager: +1 206 212-2139 +roomNumber: 8190 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Merlina Eimer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merlina Eimer +sn: Eimer +description: This is Merlina Eimer's description +facsimileTelephoneNumber: +1 415 220-5466 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 884-6637 +title: Chief Peons Visionary +userPassword: Password1 +uid: EimerM +givenName: Merlina +mail: EimerM@d0eb59d9416b478ea7e9e6add086d998.bitwarden.com +carLicense: XMUOU9 +departmentNumber: 7654 +employeeType: Normal +homePhone: +1 415 579-8248 +initials: M. E. +mobile: +1 415 256-1732 +pager: +1 415 494-5519 +roomNumber: 8895 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Riyaz McNicol +sn: McNicol +description: This is Riyaz McNicol's description +facsimileTelephoneNumber: +1 408 327-5991 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 318-1253 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: McNicolR +givenName: Riyaz +mail: McNicolR@468705ba5f434f3295170aa6ba4375b9.bitwarden.com +carLicense: Y87JEP +departmentNumber: 3795 +employeeType: Contract +homePhone: +1 408 250-8575 +initials: R. M. +mobile: +1 408 488-9664 +pager: +1 408 550-8750 +roomNumber: 8802 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Imelda Ornburn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imelda Ornburn +sn: Ornburn +description: This is Imelda Ornburn's description +facsimileTelephoneNumber: +1 818 988-5763 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 740-1255 +title: Supreme Management Czar +userPassword: Password1 +uid: OrnburnI +givenName: Imelda +mail: OrnburnI@4aebcb98356f4866a9dbef1e58338e49.bitwarden.com +carLicense: 10LMQC +departmentNumber: 4301 +employeeType: Normal +homePhone: +1 818 605-8551 +initials: I. O. +mobile: +1 818 252-4569 +pager: +1 818 894-6893 +roomNumber: 9354 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deryck Bhatt +sn: Bhatt +description: This is Deryck Bhatt's description +facsimileTelephoneNumber: +1 408 752-8362 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 408 543-2422 +title: Supreme Janitorial Dictator +userPassword: Password1 +uid: BhattD +givenName: Deryck +mail: BhattD@37f0f82dfcd246b8ad39145ec76d2b17.bitwarden.com +carLicense: 8KNDIH +departmentNumber: 4207 +employeeType: Contract +homePhone: +1 408 755-6635 +initials: D. B. +mobile: +1 408 288-4676 +pager: +1 408 722-4829 +roomNumber: 8359 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doroteya Boatwright +sn: Boatwright +description: This is Doroteya Boatwright's description +facsimileTelephoneNumber: +1 213 625-6112 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 585-5018 +title: Junior Janitorial Developer +userPassword: Password1 +uid: BoatwriD +givenName: Doroteya +mail: BoatwriD@32d242671ec341929f315049a0e40a31.bitwarden.com +carLicense: HXQO67 +departmentNumber: 5570 +employeeType: Employee +homePhone: +1 213 338-1335 +initials: D. B. +mobile: +1 213 773-1574 +pager: +1 213 963-2679 +roomNumber: 9798 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elex Syal,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elex Syal +sn: Syal +description: This is Elex Syal's description +facsimileTelephoneNumber: +1 213 762-8402 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 213 868-3552 +title: Supreme Payroll Punk +userPassword: Password1 +uid: SyalE +givenName: Elex +mail: SyalE@c4aa09c164484f0594345b382eb1b6dd.bitwarden.com +carLicense: JRVEQG +departmentNumber: 9568 +employeeType: Contract +homePhone: +1 213 107-3795 +initials: E. S. +mobile: +1 213 942-7268 +pager: +1 213 781-2628 +roomNumber: 9158 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vern Rantala,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vern Rantala +sn: Rantala +description: This is Vern Rantala's description +facsimileTelephoneNumber: +1 415 571-5152 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 852-1123 +title: Associate Administrative Figurehead +userPassword: Password1 +uid: RantalaV +givenName: Vern +mail: RantalaV@8ec725a0b25640da9e4f5b4c8838762a.bitwarden.com +carLicense: FAYJCS +departmentNumber: 2117 +employeeType: Normal +homePhone: +1 415 665-8157 +initials: V. R. +mobile: +1 415 718-9286 +pager: +1 415 696-5834 +roomNumber: 8453 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dacy Rodriguez +sn: Rodriguez +description: This is Dacy Rodriguez's description +facsimileTelephoneNumber: +1 408 869-5984 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 165-9139 +title: Chief Administrative Warrior +userPassword: Password1 +uid: RodriguD +givenName: Dacy +mail: RodriguD@5414557178404b8b850ea72aa60255e2.bitwarden.com +carLicense: E8SYRB +departmentNumber: 7952 +employeeType: Employee +homePhone: +1 408 290-3154 +initials: D. R. +mobile: +1 408 872-2047 +pager: +1 408 774-4091 +roomNumber: 8316 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sarina Handley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarina Handley +sn: Handley +description: This is Sarina Handley's description +facsimileTelephoneNumber: +1 213 536-6778 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 142-1213 +title: Associate Peons Punk +userPassword: Password1 +uid: HandleyS +givenName: Sarina +mail: HandleyS@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com +carLicense: WIBSHL +departmentNumber: 4905 +employeeType: Employee +homePhone: +1 213 522-7841 +initials: S. H. +mobile: +1 213 499-8683 +pager: +1 213 141-1829 +roomNumber: 8313 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Edward Meldrum,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edward Meldrum +sn: Meldrum +description: This is Edward Meldrum's description +facsimileTelephoneNumber: +1 415 565-2006 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 971-8274 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: MeldrumE +givenName: Edward +mail: MeldrumE@42f6c709ced54560a282482057eafc53.bitwarden.com +carLicense: E7NOBG +departmentNumber: 9480 +employeeType: Normal +homePhone: +1 415 949-4852 +initials: E. M. +mobile: +1 415 837-4514 +pager: +1 415 523-6880 +roomNumber: 8138 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Margaretta Hord,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margaretta Hord +sn: Hord +description: This is Margaretta Hord's description +facsimileTelephoneNumber: +1 510 254-4965 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 820-9915 +title: Supreme Payroll Dictator +userPassword: Password1 +uid: HordM +givenName: Margaretta +mail: HordM@310fefd008494b9e8a0a81aff3327a1b.bitwarden.com +carLicense: 3V4GO1 +departmentNumber: 5203 +employeeType: Employee +homePhone: +1 510 820-7232 +initials: M. H. +mobile: +1 510 561-1509 +pager: +1 510 683-3207 +roomNumber: 9936 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xiaofeng Chaplin +sn: Chaplin +description: This is Xiaofeng Chaplin's description +facsimileTelephoneNumber: +1 804 310-1065 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 575-2935 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: ChaplinX +givenName: Xiaofeng +mail: ChaplinX@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com +carLicense: 6UN4TK +departmentNumber: 4449 +employeeType: Employee +homePhone: +1 804 829-6298 +initials: X. C. +mobile: +1 804 479-8641 +pager: +1 804 989-2482 +roomNumber: 9285 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Calley Hvezda,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calley Hvezda +sn: Hvezda +description: This is Calley Hvezda's description +facsimileTelephoneNumber: +1 510 556-4617 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 987-1805 +title: Master Administrative Evangelist +userPassword: Password1 +uid: HvezdaC +givenName: Calley +mail: HvezdaC@07d1afa381e34835a071c5951db2f646.bitwarden.com +carLicense: JBX9XA +departmentNumber: 5784 +employeeType: Employee +homePhone: +1 510 871-9826 +initials: C. H. +mobile: +1 510 758-6196 +pager: +1 510 710-8082 +roomNumber: 8267 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rodina Sumi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rodina Sumi +sn: Sumi +description: This is Rodina Sumi's description +facsimileTelephoneNumber: +1 804 217-2599 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 804 925-9264 +title: Master Payroll Manager +userPassword: Password1 +uid: SumiR +givenName: Rodina +mail: SumiR@54481fd28e0b44a9b20652a08b2dc61e.bitwarden.com +carLicense: 8T1LYA +departmentNumber: 4017 +employeeType: Employee +homePhone: +1 804 703-2194 +initials: R. S. +mobile: +1 804 198-5161 +pager: +1 804 149-9157 +roomNumber: 8758 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jessa Harlan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessa Harlan +sn: Harlan +description: This is Jessa Harlan's description +facsimileTelephoneNumber: +1 206 604-4926 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 283-8079 +title: Junior Payroll Artist +userPassword: Password1 +uid: HarlanJ +givenName: Jessa +mail: HarlanJ@993e0c502fc14bcbb5cab23104ffdc41.bitwarden.com +carLicense: 6E2KQ4 +departmentNumber: 9807 +employeeType: Employee +homePhone: +1 206 292-8998 +initials: J. H. +mobile: +1 206 168-5005 +pager: +1 206 617-9867 +roomNumber: 8569 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Curt Tadge,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Curt Tadge +sn: Tadge +description: This is Curt Tadge's description +facsimileTelephoneNumber: +1 804 181-1083 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 399-2851 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: TadgeC +givenName: Curt +mail: TadgeC@1461dbc17b9c4f428daab775690e9506.bitwarden.com +carLicense: 7HSVC9 +departmentNumber: 3555 +employeeType: Contract +homePhone: +1 804 304-1608 +initials: C. T. +mobile: +1 804 247-9421 +pager: +1 804 756-1529 +roomNumber: 8610 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bertrand Spearpoint,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bertrand Spearpoint +sn: Spearpoint +description: This is Bertrand Spearpoint's description +facsimileTelephoneNumber: +1 206 890-9226 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 761-8775 +title: Master Management Evangelist +userPassword: Password1 +uid: SpearpoB +givenName: Bertrand +mail: SpearpoB@fdcc23b3e21f4f0fa3bffbc78ce6d7d0.bitwarden.com +carLicense: 4MECF3 +departmentNumber: 4212 +employeeType: Contract +homePhone: +1 206 801-4111 +initials: B. S. +mobile: +1 206 934-7679 +pager: +1 206 866-2513 +roomNumber: 8031 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roshelle Gaskins +sn: Gaskins +description: This is Roshelle Gaskins's description +facsimileTelephoneNumber: +1 510 437-2012 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 967-3706 +title: Master Janitorial Consultant +userPassword: Password1 +uid: GaskinsR +givenName: Roshelle +mail: GaskinsR@debbccc9cd9041e58d59a87945bc2243.bitwarden.com +carLicense: R6JNGI +departmentNumber: 2226 +employeeType: Normal +homePhone: +1 510 553-4873 +initials: R. G. +mobile: +1 510 340-5804 +pager: +1 510 671-2075 +roomNumber: 8753 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Annabel Cadtools,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annabel Cadtools +sn: Cadtools +description: This is Annabel Cadtools's description +facsimileTelephoneNumber: +1 415 851-1997 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 936-3468 +title: Junior Administrative Warrior +userPassword: Password1 +uid: CadtoolA +givenName: Annabel +mail: CadtoolA@900720d62ed64510a7a9059255eb24bd.bitwarden.com +carLicense: MDYPSW +departmentNumber: 8698 +employeeType: Contract +homePhone: +1 415 390-5468 +initials: A. C. +mobile: +1 415 282-2633 +pager: +1 415 448-5676 +roomNumber: 9450 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathleen Osiakwan +sn: Osiakwan +description: This is Cathleen Osiakwan's description +facsimileTelephoneNumber: +1 510 793-6134 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 853-2511 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: OsiakwaC +givenName: Cathleen +mail: OsiakwaC@7b1ae059f10c4c999e0f2bc4fd98859f.bitwarden.com +carLicense: 3V83T2 +departmentNumber: 7481 +employeeType: Contract +homePhone: +1 510 804-9571 +initials: C. O. +mobile: +1 510 931-4195 +pager: +1 510 647-9599 +roomNumber: 9437 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hanny Wayler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanny Wayler +sn: Wayler +description: This is Hanny Wayler's description +facsimileTelephoneNumber: +1 206 329-9356 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 593-4887 +title: Chief Product Testing Developer +userPassword: Password1 +uid: WaylerH +givenName: Hanny +mail: WaylerH@a5a34b68dfa14ad7bc7271c070601714.bitwarden.com +carLicense: 0CPN9D +departmentNumber: 9347 +employeeType: Employee +homePhone: +1 206 429-1239 +initials: H. W. +mobile: +1 206 248-7830 +pager: +1 206 977-6915 +roomNumber: 8245 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Devi Cobran,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devi Cobran +sn: Cobran +description: This is Devi Cobran's description +facsimileTelephoneNumber: +1 408 819-7838 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 853-7678 +title: Junior Peons Mascot +userPassword: Password1 +uid: CobranD +givenName: Devi +mail: CobranD@88c26c98102f460daa0c9c7911079e0e.bitwarden.com +carLicense: 5K7H80 +departmentNumber: 8880 +employeeType: Employee +homePhone: +1 408 159-2432 +initials: D. C. +mobile: +1 408 970-6956 +pager: +1 408 150-5557 +roomNumber: 9884 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tian Sydnor,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tian Sydnor +sn: Sydnor +description: This is Tian Sydnor's description +facsimileTelephoneNumber: +1 818 824-4827 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 500-8065 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: SydnorT +givenName: Tian +mail: SydnorT@35d9476cb8424bdab8902ee7a92df819.bitwarden.com +carLicense: EXQ96D +departmentNumber: 4577 +employeeType: Employee +homePhone: +1 818 416-7153 +initials: T. S. +mobile: +1 818 581-4758 +pager: +1 818 697-2124 +roomNumber: 9065 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Remi Ladd,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Remi Ladd +sn: Ladd +description: This is Remi Ladd's description +facsimileTelephoneNumber: +1 213 942-4296 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 663-1736 +title: Junior Product Development Stooge +userPassword: Password1 +uid: LaddR +givenName: Remi +mail: LaddR@15697ed59de04051be420308b9e31bf0.bitwarden.com +carLicense: 6HWKD2 +departmentNumber: 7484 +employeeType: Contract +homePhone: +1 213 604-3701 +initials: R. L. +mobile: +1 213 404-9975 +pager: +1 213 321-4709 +roomNumber: 9857 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Miles Bannan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miles Bannan +sn: Bannan +description: This is Miles Bannan's description +facsimileTelephoneNumber: +1 415 208-5028 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 261-1415 +title: Junior Product Development Dictator +userPassword: Password1 +uid: BannanM +givenName: Miles +mail: BannanM@0b664dacb51949f5b5b39c9e47c7f6dc.bitwarden.com +carLicense: J6JXL2 +departmentNumber: 5101 +employeeType: Employee +homePhone: +1 415 395-5205 +initials: M. B. +mobile: +1 415 236-7887 +pager: +1 415 421-1357 +roomNumber: 9667 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Annnora Burchby,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annnora Burchby +sn: Burchby +description: This is Annnora Burchby's description +facsimileTelephoneNumber: +1 206 360-4561 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 256-4215 +title: Master Management Assistant +userPassword: Password1 +uid: BurchbyA +givenName: Annnora +mail: BurchbyA@8df37ece50134935a25e518004ace140.bitwarden.com +carLicense: OIPGW5 +departmentNumber: 2898 +employeeType: Normal +homePhone: +1 206 128-6557 +initials: A. B. +mobile: +1 206 978-3377 +pager: +1 206 974-1556 +roomNumber: 9287 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mariet Finzel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariet Finzel +sn: Finzel +description: This is Mariet Finzel's description +facsimileTelephoneNumber: +1 510 460-7490 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 862-8002 +title: Supreme Human Resources Manager +userPassword: Password1 +uid: FinzelM +givenName: Mariet +mail: FinzelM@273dfd92cd9f45d0aa9350f559239559.bitwarden.com +carLicense: LEVK32 +departmentNumber: 1362 +employeeType: Employee +homePhone: +1 510 222-5892 +initials: M. F. +mobile: +1 510 494-9937 +pager: +1 510 689-9095 +roomNumber: 9187 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MingChang Boddeveld +sn: Boddeveld +description: This is MingChang Boddeveld's description +facsimileTelephoneNumber: +1 804 887-1238 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 387-1391 +title: Master Payroll Vice President +userPassword: Password1 +uid: BoddeveM +givenName: MingChang +mail: BoddeveM@77e93027bf924f589b18be848df73155.bitwarden.com +carLicense: O154OG +departmentNumber: 2856 +employeeType: Employee +homePhone: +1 804 568-2357 +initials: M. B. +mobile: +1 804 371-5088 +pager: +1 804 748-7368 +roomNumber: 8857 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rozalie Kesler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozalie Kesler +sn: Kesler +description: This is Rozalie Kesler's description +facsimileTelephoneNumber: +1 818 928-2919 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 253-8905 +title: Chief Product Development Manager +userPassword: Password1 +uid: KeslerR +givenName: Rozalie +mail: KeslerR@9e65511aabbb470e82559fb2b20a2924.bitwarden.com +carLicense: MWAXBO +departmentNumber: 1200 +employeeType: Employee +homePhone: +1 818 832-4914 +initials: R. K. +mobile: +1 818 448-8864 +pager: +1 818 624-5168 +roomNumber: 9000 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harriette Zenisek +sn: Zenisek +description: This is Harriette Zenisek's description +facsimileTelephoneNumber: +1 818 460-2788 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 861-2390 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: ZenisekH +givenName: Harriette +mail: ZenisekH@3dc397261aae4717a7ed87ae45b11795.bitwarden.com +carLicense: 9UE704 +departmentNumber: 6443 +employeeType: Employee +homePhone: +1 818 898-3718 +initials: H. Z. +mobile: +1 818 675-3683 +pager: +1 818 718-8474 +roomNumber: 8617 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Santiago Gruszczynski +sn: Gruszczynski +description: This is Santiago Gruszczynski's description +facsimileTelephoneNumber: +1 415 727-4501 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 229-3897 +title: Chief Product Development Janitor +userPassword: Password1 +uid: GruszczS +givenName: Santiago +mail: GruszczS@d0510c6d4d2248279a5b0899ea306017.bitwarden.com +carLicense: N3AA85 +departmentNumber: 8380 +employeeType: Contract +homePhone: +1 415 967-2600 +initials: S. G. +mobile: +1 415 433-6572 +pager: +1 415 263-7730 +roomNumber: 9929 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jude Farmer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jude Farmer +sn: Farmer +description: This is Jude Farmer's description +facsimileTelephoneNumber: +1 206 294-2982 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 571-3030 +title: Associate Peons Artist +userPassword: Password1 +uid: FarmerJ +givenName: Jude +mail: FarmerJ@d275905ea7174c8cab687a1c10573cba.bitwarden.com +carLicense: AP49YS +departmentNumber: 8821 +employeeType: Normal +homePhone: +1 206 394-9280 +initials: J. F. +mobile: +1 206 986-8302 +pager: +1 206 770-6546 +roomNumber: 9551 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mervin Grisoni,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mervin Grisoni +sn: Grisoni +description: This is Mervin Grisoni's description +facsimileTelephoneNumber: +1 408 158-5424 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 188-6452 +title: Chief Peons Technician +userPassword: Password1 +uid: GrisoniM +givenName: Mervin +mail: GrisoniM@16e252f623154ea09c88ae20c619b8c4.bitwarden.com +carLicense: 9H581Q +departmentNumber: 6742 +employeeType: Normal +homePhone: +1 408 527-6634 +initials: M. G. +mobile: +1 408 691-8990 +pager: +1 408 987-4210 +roomNumber: 8011 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sarath Beekman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarath Beekman +sn: Beekman +description: This is Sarath Beekman's description +facsimileTelephoneNumber: +1 213 580-3936 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 213 187-7887 +title: Master Payroll Madonna +userPassword: Password1 +uid: BeekmanS +givenName: Sarath +mail: BeekmanS@92160f75073741b5a487392a12009a3d.bitwarden.com +carLicense: 948H3P +departmentNumber: 8997 +employeeType: Contract +homePhone: +1 213 808-2884 +initials: S. B. +mobile: +1 213 450-4336 +pager: +1 213 627-5164 +roomNumber: 9221 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Anna Hepburn,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anna Hepburn +sn: Hepburn +description: This is Anna Hepburn's description +facsimileTelephoneNumber: +1 408 299-1306 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 568-9141 +title: Chief Payroll Manager +userPassword: Password1 +uid: HepburnA +givenName: Anna +mail: HepburnA@9a316795d99d40a2b8152947d5d04a37.bitwarden.com +carLicense: DIJGM2 +departmentNumber: 3222 +employeeType: Contract +homePhone: +1 408 415-8203 +initials: A. H. +mobile: +1 408 508-5636 +pager: +1 408 868-5250 +roomNumber: 8053 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherilyn Recsnik +sn: Recsnik +description: This is Sherilyn Recsnik's description +facsimileTelephoneNumber: +1 206 323-1988 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 538-9355 +title: Chief Product Testing Writer +userPassword: Password1 +uid: RecsnikS +givenName: Sherilyn +mail: RecsnikS@39fcb29a69e44f47ac997e5c56603f1d.bitwarden.com +carLicense: YY3DGI +departmentNumber: 2968 +employeeType: Normal +homePhone: +1 206 534-6769 +initials: S. R. +mobile: +1 206 498-2964 +pager: +1 206 840-2064 +roomNumber: 9813 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bethany Passier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bethany Passier +sn: Passier +description: This is Bethany Passier's description +facsimileTelephoneNumber: +1 408 972-5840 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 367-5250 +title: Associate Human Resources Architect +userPassword: Password1 +uid: PassierB +givenName: Bethany +mail: PassierB@9b511bf76a87427285e307ecdc0c4cb8.bitwarden.com +carLicense: Y10OXR +departmentNumber: 3007 +employeeType: Employee +homePhone: +1 408 720-8086 +initials: B. P. +mobile: +1 408 315-6850 +pager: +1 408 623-4516 +roomNumber: 9920 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Traci DuBerger,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Traci DuBerger +sn: DuBerger +description: This is Traci DuBerger's description +facsimileTelephoneNumber: +1 804 550-7145 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 340-9988 +title: Chief Product Development Vice President +userPassword: Password1 +uid: DuBergeT +givenName: Traci +mail: DuBergeT@4790190082cb4f5abacc6cccbd58144a.bitwarden.com +carLicense: L0VIBB +departmentNumber: 9300 +employeeType: Normal +homePhone: +1 804 852-9009 +initials: T. D. +mobile: +1 804 259-5306 +pager: +1 804 396-6516 +roomNumber: 9978 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ceciley Kuan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ceciley Kuan +sn: Kuan +description: This is Ceciley Kuan's description +facsimileTelephoneNumber: +1 206 146-3184 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 156-5406 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: KuanC +givenName: Ceciley +mail: KuanC@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com +carLicense: 2CUKVE +departmentNumber: 5716 +employeeType: Contract +homePhone: +1 206 512-4337 +initials: C. K. +mobile: +1 206 151-1865 +pager: +1 206 121-5685 +roomNumber: 9719 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatiana Hoequist +sn: Hoequist +description: This is Tatiana Hoequist's description +facsimileTelephoneNumber: +1 213 871-5069 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 213 544-6793 +title: Master Payroll Dictator +userPassword: Password1 +uid: HoequisT +givenName: Tatiana +mail: HoequisT@cfb0243cd1fe4f70a9f0422d30776059.bitwarden.com +carLicense: NW5VU4 +departmentNumber: 2717 +employeeType: Employee +homePhone: +1 213 481-4929 +initials: T. H. +mobile: +1 213 982-5428 +pager: +1 213 177-6340 +roomNumber: 9715 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Krishan Stamps,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krishan Stamps +sn: Stamps +description: This is Krishan Stamps's description +facsimileTelephoneNumber: +1 818 312-8515 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 582-9793 +title: Master Product Development President +userPassword: Password1 +uid: StampsK +givenName: Krishan +mail: StampsK@d2f384130fce4e7e8437086d4d7eb3d2.bitwarden.com +carLicense: T376R7 +departmentNumber: 2652 +employeeType: Employee +homePhone: +1 818 130-6703 +initials: K. S. +mobile: +1 818 963-7862 +pager: +1 818 180-7877 +roomNumber: 8514 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Colin Gibbins,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colin Gibbins +sn: Gibbins +description: This is Colin Gibbins's description +facsimileTelephoneNumber: +1 213 297-6535 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 186-4951 +title: Master Human Resources Technician +userPassword: Password1 +uid: GibbinsC +givenName: Colin +mail: GibbinsC@47eb73ab21cc404d8ae8ada68387e955.bitwarden.com +carLicense: XIVAWJ +departmentNumber: 3600 +employeeType: Contract +homePhone: +1 213 611-6270 +initials: C. G. +mobile: +1 213 947-7201 +pager: +1 213 156-6560 +roomNumber: 9275 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elysia Wierzba +sn: Wierzba +description: This is Elysia Wierzba's description +facsimileTelephoneNumber: +1 213 190-1211 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 596-2815 +title: Junior Product Testing Architect +userPassword: Password1 +uid: WierzbaE +givenName: Elysia +mail: WierzbaE@5c156ad08db54158952031cf3253ef2e.bitwarden.com +carLicense: VA0NBM +departmentNumber: 2699 +employeeType: Contract +homePhone: +1 213 823-9692 +initials: E. W. +mobile: +1 213 503-9466 +pager: +1 213 355-3911 +roomNumber: 8681 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Utpala Neault,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Utpala Neault +sn: Neault +description: This is Utpala Neault's description +facsimileTelephoneNumber: +1 213 717-2230 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 120-4943 +title: Supreme Administrative Stooge +userPassword: Password1 +uid: NeaultU +givenName: Utpala +mail: NeaultU@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com +carLicense: N7EVMQ +departmentNumber: 5233 +employeeType: Contract +homePhone: +1 213 675-1514 +initials: U. N. +mobile: +1 213 799-2093 +pager: +1 213 940-7699 +roomNumber: 8669 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chery Dickinson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chery Dickinson +sn: Dickinson +description: This is Chery Dickinson's description +facsimileTelephoneNumber: +1 818 581-2338 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 818 902-1875 +title: Master Peons Figurehead +userPassword: Password1 +uid: DickinsC +givenName: Chery +mail: DickinsC@8b4252ea9d114f95b65956efe85c0aae.bitwarden.com +carLicense: V924K9 +departmentNumber: 8866 +employeeType: Employee +homePhone: +1 818 579-1459 +initials: C. D. +mobile: +1 818 242-9655 +pager: +1 818 243-8652 +roomNumber: 9932 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elwood Schmitz,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elwood Schmitz +sn: Schmitz +description: This is Elwood Schmitz's description +facsimileTelephoneNumber: +1 510 169-7818 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 476-9285 +title: Master Management Warrior +userPassword: Password1 +uid: SchmitzE +givenName: Elwood +mail: SchmitzE@80fa9db759cf45d8a9f0fb7fa92c1396.bitwarden.com +carLicense: LUNIK9 +departmentNumber: 6427 +employeeType: Employee +homePhone: +1 510 941-6000 +initials: E. S. +mobile: +1 510 430-9973 +pager: +1 510 895-2048 +roomNumber: 8550 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Trang Kang,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trang Kang +sn: Kang +description: This is Trang Kang's description +facsimileTelephoneNumber: +1 510 727-3236 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 914-6313 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: KangT +givenName: Trang +mail: KangT@2e02b5adbe00404a986538a6f94c5721.bitwarden.com +carLicense: C5M1CD +departmentNumber: 8102 +employeeType: Employee +homePhone: +1 510 264-8124 +initials: T. K. +mobile: +1 510 238-8745 +pager: +1 510 651-1917 +roomNumber: 9442 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norikatsu Tousignant +sn: Tousignant +description: This is Norikatsu Tousignant's description +facsimileTelephoneNumber: +1 804 684-4767 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 794-4291 +title: Master Payroll Director +userPassword: Password1 +uid: TousignN +givenName: Norikatsu +mail: TousignN@986fe4fcc1ec45dd9a8c35010d313412.bitwarden.com +carLicense: 025RBX +departmentNumber: 5810 +employeeType: Contract +homePhone: +1 804 356-2614 +initials: N. T. +mobile: +1 804 392-6830 +pager: +1 804 555-9770 +roomNumber: 9560 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marylee Lowrie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marylee Lowrie +sn: Lowrie +description: This is Marylee Lowrie's description +facsimileTelephoneNumber: +1 804 669-4717 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 806-2652 +title: Associate Management Grunt +userPassword: Password1 +uid: LowrieM +givenName: Marylee +mail: LowrieM@da86453f48a14ef39804047ecac0cb70.bitwarden.com +carLicense: 4O7FCQ +departmentNumber: 3086 +employeeType: Employee +homePhone: +1 804 436-7975 +initials: M. L. +mobile: +1 804 518-4322 +pager: +1 804 459-9014 +roomNumber: 8873 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Donall Zlatin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donall Zlatin +sn: Zlatin +description: This is Donall Zlatin's description +facsimileTelephoneNumber: +1 415 224-6308 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 889-9661 +title: Supreme Management Fellow +userPassword: Password1 +uid: ZlatinD +givenName: Donall +mail: ZlatinD@ab961322c29b4801a8d49767c505d9e3.bitwarden.com +carLicense: X3BHAG +departmentNumber: 6036 +employeeType: Normal +homePhone: +1 415 520-5187 +initials: D. Z. +mobile: +1 415 379-3315 +pager: +1 415 516-5291 +roomNumber: 8056 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dilip Willette,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dilip Willette +sn: Willette +description: This is Dilip Willette's description +facsimileTelephoneNumber: +1 408 824-4658 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 810-4453 +title: Junior Janitorial President +userPassword: Password1 +uid: WillettD +givenName: Dilip +mail: WillettD@06a75fbf1c264fecab05cf3c4c5e8244.bitwarden.com +carLicense: P1ERAM +departmentNumber: 9005 +employeeType: Normal +homePhone: +1 408 714-8305 +initials: D. W. +mobile: +1 408 292-2739 +pager: +1 408 852-9019 +roomNumber: 9242 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gen Templeton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gen Templeton +sn: Templeton +description: This is Gen Templeton's description +facsimileTelephoneNumber: +1 818 392-6902 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 792-4980 +title: Junior Payroll Technician +userPassword: Password1 +uid: TempletG +givenName: Gen +mail: TempletG@cc62ce54a4e64270838c00138d879780.bitwarden.com +carLicense: HM3WHR +departmentNumber: 1349 +employeeType: Contract +homePhone: +1 818 652-9043 +initials: G. T. +mobile: +1 818 775-7348 +pager: +1 818 371-8491 +roomNumber: 8073 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Celinda Guttman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celinda Guttman +sn: Guttman +description: This is Celinda Guttman's description +facsimileTelephoneNumber: +1 804 557-4705 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 915-7872 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: GuttmanC +givenName: Celinda +mail: GuttmanC@8bb20197d5384c00b37949bce07069cf.bitwarden.com +carLicense: MFDB3A +departmentNumber: 3086 +employeeType: Normal +homePhone: +1 804 619-7973 +initials: C. G. +mobile: +1 804 478-2810 +pager: +1 804 535-1152 +roomNumber: 9552 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dede Lan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dede Lan +sn: Lan +description: This is Dede Lan's description +facsimileTelephoneNumber: +1 510 798-1969 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 336-7189 +title: Junior Product Development Sales Rep +userPassword: Password1 +uid: LanD +givenName: Dede +mail: LanD@b2685c20be7244a2b29f08c6434ac903.bitwarden.com +carLicense: 6WBRWY +departmentNumber: 9555 +employeeType: Employee +homePhone: +1 510 229-3123 +initials: D. L. +mobile: +1 510 306-7043 +pager: +1 510 472-3964 +roomNumber: 9284 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Othella Toolset,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othella Toolset +sn: Toolset +description: This is Othella Toolset's description +facsimileTelephoneNumber: +1 415 339-8408 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 628-1031 +title: Associate Payroll Punk +userPassword: Password1 +uid: ToolsetO +givenName: Othella +mail: ToolsetO@2f13ca54ee794decad24515251a42dff.bitwarden.com +carLicense: DUO39T +departmentNumber: 9440 +employeeType: Employee +homePhone: +1 415 591-9900 +initials: O. T. +mobile: +1 415 357-7675 +pager: +1 415 208-1433 +roomNumber: 9293 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Genovera Kusmider,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genovera Kusmider +sn: Kusmider +description: This is Genovera Kusmider's description +facsimileTelephoneNumber: +1 408 542-4401 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 408 255-5228 +title: Associate Management Assistant +userPassword: Password1 +uid: KusmideG +givenName: Genovera +mail: KusmideG@34d5ed1c9d7241bdb443981287a04354.bitwarden.com +carLicense: L8S3BC +departmentNumber: 9405 +employeeType: Contract +homePhone: +1 408 642-7630 +initials: G. K. +mobile: +1 408 808-4594 +pager: +1 408 566-2567 +roomNumber: 8998 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=JoAnn Donohue,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JoAnn Donohue +sn: Donohue +description: This is JoAnn Donohue's description +facsimileTelephoneNumber: +1 818 164-2017 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 351-6889 +title: Junior Product Development Punk +userPassword: Password1 +uid: DonohueJ +givenName: JoAnn +mail: DonohueJ@2d00b4c5d94943aaab567276a570648e.bitwarden.com +carLicense: AL7NYY +departmentNumber: 7270 +employeeType: Contract +homePhone: +1 818 953-5705 +initials: J. D. +mobile: +1 818 994-9195 +pager: +1 818 919-1190 +roomNumber: 9809 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eliezer Laing,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eliezer Laing +sn: Laing +description: This is Eliezer Laing's description +facsimileTelephoneNumber: +1 804 325-6035 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 101-5543 +title: Chief Management Grunt +userPassword: Password1 +uid: LaingE +givenName: Eliezer +mail: LaingE@4439537e23604aa9a13c7005cfec2ed7.bitwarden.com +carLicense: Y7K6T8 +departmentNumber: 8325 +employeeType: Contract +homePhone: +1 804 423-2463 +initials: E. L. +mobile: +1 804 448-1756 +pager: +1 804 896-6532 +roomNumber: 8279 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hayley Rundstein,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hayley Rundstein +sn: Rundstein +description: This is Hayley Rundstein's description +facsimileTelephoneNumber: +1 408 862-9141 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 827-5483 +title: Chief Management Czar +userPassword: Password1 +uid: RundsteH +givenName: Hayley +mail: RundsteH@6e5501c4ee9c48b3adc252f44774d85a.bitwarden.com +carLicense: 3C2BGM +departmentNumber: 8482 +employeeType: Employee +homePhone: +1 408 964-5060 +initials: H. R. +mobile: +1 408 926-7071 +pager: +1 408 345-1867 +roomNumber: 9130 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kerianne Hinds +sn: Hinds +description: This is Kerianne Hinds's description +facsimileTelephoneNumber: +1 510 117-8480 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 993-1699 +title: Junior Human Resources Writer +userPassword: Password1 +uid: HindsK +givenName: Kerianne +mail: HindsK@edf26b21784c41bfaf957ea90f1b32bb.bitwarden.com +carLicense: 5OSFYU +departmentNumber: 8154 +employeeType: Normal +homePhone: +1 510 341-4717 +initials: K. H. +mobile: +1 510 273-4608 +pager: +1 510 240-4108 +roomNumber: 9620 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Daffi Chalker,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daffi Chalker +sn: Chalker +description: This is Daffi Chalker's description +facsimileTelephoneNumber: +1 206 430-7760 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 258-2986 +title: Master Payroll Assistant +userPassword: Password1 +uid: ChalkerD +givenName: Daffi +mail: ChalkerD@bf919e17e05f4868b7c226bdabccfd39.bitwarden.com +carLicense: 8CPDL4 +departmentNumber: 1190 +employeeType: Employee +homePhone: +1 206 948-1089 +initials: D. C. +mobile: +1 206 774-4688 +pager: +1 206 876-8648 +roomNumber: 8467 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Debee Hazelrig,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debee Hazelrig +sn: Hazelrig +description: This is Debee Hazelrig's description +facsimileTelephoneNumber: +1 415 593-2352 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 415 736-5767 +title: Junior Peons Vice President +userPassword: Password1 +uid: HazelriD +givenName: Debee +mail: HazelriD@91469109e9e74dbeada032db2abfd838.bitwarden.com +carLicense: AMFKEF +departmentNumber: 8486 +employeeType: Contract +homePhone: +1 415 237-9405 +initials: D. H. +mobile: +1 415 985-4255 +pager: +1 415 949-3221 +roomNumber: 9096 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eda Kasdorf +sn: Kasdorf +description: This is Eda Kasdorf's description +facsimileTelephoneNumber: +1 408 232-8489 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 976-1122 +title: Chief Human Resources Artist +userPassword: Password1 +uid: KasdorfE +givenName: Eda +mail: KasdorfE@3cd269b5d58f4f4392c1d0f7bebb70ef.bitwarden.com +carLicense: Y0MLD3 +departmentNumber: 2531 +employeeType: Employee +homePhone: +1 408 509-5267 +initials: E. K. +mobile: +1 408 297-3156 +pager: +1 408 169-6525 +roomNumber: 9565 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Warren Niu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Warren Niu +sn: Niu +description: This is Warren Niu's description +facsimileTelephoneNumber: +1 510 761-8423 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 510 782-8728 +title: Master Product Testing Grunt +userPassword: Password1 +uid: NiuW +givenName: Warren +mail: NiuW@a71709f685af42718e5d72a70ff54dea.bitwarden.com +carLicense: 8ILBXU +departmentNumber: 4271 +employeeType: Normal +homePhone: +1 510 418-8573 +initials: W. N. +mobile: +1 510 852-4778 +pager: +1 510 909-4729 +roomNumber: 8103 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Thuong Malkinson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thuong Malkinson +sn: Malkinson +description: This is Thuong Malkinson's description +facsimileTelephoneNumber: +1 408 173-9876 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 575-3781 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: MalkinsT +givenName: Thuong +mail: MalkinsT@20d733e4c13941c7bc31419a4b4229c6.bitwarden.com +carLicense: KDLNIY +departmentNumber: 4506 +employeeType: Normal +homePhone: +1 408 931-6462 +initials: T. M. +mobile: +1 408 318-4676 +pager: +1 408 749-8670 +roomNumber: 8690 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Remi Denver,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Remi Denver +sn: Denver +description: This is Remi Denver's description +facsimileTelephoneNumber: +1 415 444-1648 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 116-8418 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: DenverR +givenName: Remi +mail: DenverR@79479fbb7bd345d6b6aa08b455669b8e.bitwarden.com +carLicense: YXQGBA +departmentNumber: 3440 +employeeType: Normal +homePhone: +1 415 849-2421 +initials: R. D. +mobile: +1 415 576-6259 +pager: +1 415 822-9153 +roomNumber: 8619 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maritsa Keenan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maritsa Keenan +sn: Keenan +description: This is Maritsa Keenan's description +facsimileTelephoneNumber: +1 415 910-2523 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 385-1917 +title: Master Payroll Admin +userPassword: Password1 +uid: KeenanM +givenName: Maritsa +mail: KeenanM@c37d3b12215747d99472a7fb366acdb6.bitwarden.com +carLicense: 9HTVDU +departmentNumber: 8323 +employeeType: Contract +homePhone: +1 415 511-4802 +initials: M. K. +mobile: +1 415 986-2056 +pager: +1 415 136-6897 +roomNumber: 8881 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Johnath Linn,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnath Linn +sn: Linn +description: This is Johnath Linn's description +facsimileTelephoneNumber: +1 206 590-6462 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 155-8629 +title: Master Product Testing Czar +userPassword: Password1 +uid: LinnJ +givenName: Johnath +mail: LinnJ@3bd36e687afb47ec92c7d0d49064bd14.bitwarden.com +carLicense: 45R2O6 +departmentNumber: 1033 +employeeType: Employee +homePhone: +1 206 803-3309 +initials: J. L. +mobile: +1 206 449-8318 +pager: +1 206 952-2703 +roomNumber: 9857 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joan Yousuf,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joan Yousuf +sn: Yousuf +description: This is Joan Yousuf's description +facsimileTelephoneNumber: +1 408 636-6001 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 255-2193 +title: Junior Payroll Engineer +userPassword: Password1 +uid: YousufJ +givenName: Joan +mail: YousufJ@d71f931e88694d74b88e32769af98e29.bitwarden.com +carLicense: UO0T1H +departmentNumber: 1274 +employeeType: Employee +homePhone: +1 408 928-2596 +initials: J. Y. +mobile: +1 408 682-6173 +pager: +1 408 134-4679 +roomNumber: 9584 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Roscoe LePage,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roscoe LePage +sn: LePage +description: This is Roscoe LePage's description +facsimileTelephoneNumber: +1 213 953-3851 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 810-4327 +title: Associate Janitorial Manager +userPassword: Password1 +uid: LePageR +givenName: Roscoe +mail: LePageR@05860c650fd74a9da6c29ee5ab8fb098.bitwarden.com +carLicense: C20Y76 +departmentNumber: 1395 +employeeType: Normal +homePhone: +1 213 600-9338 +initials: R. L. +mobile: +1 213 678-7181 +pager: +1 213 576-7737 +roomNumber: 8930 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Powell Tosczak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Powell Tosczak +sn: Tosczak +description: This is Powell Tosczak's description +facsimileTelephoneNumber: +1 408 900-8269 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 195-1511 +title: Chief Human Resources Manager +userPassword: Password1 +uid: TosczakP +givenName: Powell +mail: TosczakP@d221ea793fe54c61b6d0a123f7f92114.bitwarden.com +carLicense: 4FSRUA +departmentNumber: 8888 +employeeType: Contract +homePhone: +1 408 260-4490 +initials: P. T. +mobile: +1 408 386-5622 +pager: +1 408 616-8381 +roomNumber: 8453 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Charles Chatha,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charles Chatha +sn: Chatha +description: This is Charles Chatha's description +facsimileTelephoneNumber: +1 415 912-6743 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 134-3492 +title: Associate Management Pinhead +userPassword: Password1 +uid: ChathaC +givenName: Charles +mail: ChathaC@a0cd6adce0a94b1fa4dd97607ada8ecc.bitwarden.com +carLicense: WHJPVH +departmentNumber: 4949 +employeeType: Employee +homePhone: +1 415 359-4211 +initials: C. C. +mobile: +1 415 371-8217 +pager: +1 415 356-2690 +roomNumber: 8676 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blondelle Sherwin +sn: Sherwin +description: This is Blondelle Sherwin's description +facsimileTelephoneNumber: +1 804 833-9617 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 804 533-5900 +title: Supreme Payroll Warrior +userPassword: Password1 +uid: SherwinB +givenName: Blondelle +mail: SherwinB@ab1580f3c871483c8482cf412bf044c5.bitwarden.com +carLicense: 10LPBF +departmentNumber: 2484 +employeeType: Contract +homePhone: +1 804 705-2860 +initials: B. S. +mobile: +1 804 953-1280 +pager: +1 804 933-8658 +roomNumber: 9865 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anne Nagenthiram +sn: Nagenthiram +description: This is Anne Nagenthiram's description +facsimileTelephoneNumber: +1 408 185-6019 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 408 978-5879 +title: Junior Janitorial Stooge +userPassword: Password1 +uid: NagenthA +givenName: Anne +mail: NagenthA@b60aa937d01647ea80a3225aa7e4cdc5.bitwarden.com +carLicense: H4NS1J +departmentNumber: 2412 +employeeType: Contract +homePhone: +1 408 235-4438 +initials: A. N. +mobile: +1 408 436-7324 +pager: +1 408 990-9195 +roomNumber: 9222 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xenia Schierbaum +sn: Schierbaum +description: This is Xenia Schierbaum's description +facsimileTelephoneNumber: +1 408 175-4615 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 687-2174 +title: Chief Product Testing Punk +userPassword: Password1 +uid: SchierbX +givenName: Xenia +mail: SchierbX@5b0a4ae806d141a2b61a40d9b397ed02.bitwarden.com +carLicense: 4VRAJ7 +departmentNumber: 3980 +employeeType: Contract +homePhone: +1 408 588-1528 +initials: X. S. +mobile: +1 408 666-5672 +pager: +1 408 103-5525 +roomNumber: 8260 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arabelle RamirezChavez +sn: RamirezChavez +description: This is Arabelle RamirezChavez's description +facsimileTelephoneNumber: +1 206 569-5545 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 117-4541 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: RamirezA +givenName: Arabelle +mail: RamirezA@130d7984e3224d79a3593bfbc13ee192.bitwarden.com +carLicense: 0A3WJ6 +departmentNumber: 7584 +employeeType: Contract +homePhone: +1 206 461-4163 +initials: A. R. +mobile: +1 206 383-4008 +pager: +1 206 955-4340 +roomNumber: 9443 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tina Dadalt,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tina Dadalt +sn: Dadalt +description: This is Tina Dadalt's description +facsimileTelephoneNumber: +1 818 662-9696 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 248-8432 +title: Master Janitorial Punk +userPassword: Password1 +uid: DadaltT +givenName: Tina +mail: DadaltT@70b6429752274e8fb78443facd8775cd.bitwarden.com +carLicense: 044D84 +departmentNumber: 7927 +employeeType: Normal +homePhone: +1 818 167-9564 +initials: T. D. +mobile: +1 818 274-4309 +pager: +1 818 355-1561 +roomNumber: 9851 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sosanna Starnes,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sosanna Starnes +sn: Starnes +description: This is Sosanna Starnes's description +facsimileTelephoneNumber: +1 206 855-2898 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 937-2231 +title: Master Payroll Engineer +userPassword: Password1 +uid: StarnesS +givenName: Sosanna +mail: StarnesS@987beca3f52a49bd924ac83295cf5b4d.bitwarden.com +carLicense: T00IW5 +departmentNumber: 1322 +employeeType: Contract +homePhone: +1 206 617-5129 +initials: S. S. +mobile: +1 206 382-9243 +pager: +1 206 982-1525 +roomNumber: 9672 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gilly Wasylyk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilly Wasylyk +sn: Wasylyk +description: This is Gilly Wasylyk's description +facsimileTelephoneNumber: +1 818 772-3664 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 414-1985 +title: Supreme Management Artist +userPassword: Password1 +uid: WasylykG +givenName: Gilly +mail: WasylykG@79d5277aef56406eb7a48c1a74d35976.bitwarden.com +carLicense: TAJ37L +departmentNumber: 4096 +employeeType: Normal +homePhone: +1 818 213-3842 +initials: G. W. +mobile: +1 818 299-2274 +pager: +1 818 230-4190 +roomNumber: 9429 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Naser Cooksey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naser Cooksey +sn: Cooksey +description: This is Naser Cooksey's description +facsimileTelephoneNumber: +1 206 385-6034 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 410-5229 +title: Master Product Development President +userPassword: Password1 +uid: CookseyN +givenName: Naser +mail: CookseyN@bb2df33f538f4a84ae604317f6602688.bitwarden.com +carLicense: FLEJDL +departmentNumber: 6550 +employeeType: Employee +homePhone: +1 206 355-2948 +initials: N. C. +mobile: +1 206 700-3386 +pager: +1 206 628-9688 +roomNumber: 8027 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Betta Parn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betta Parn +sn: Parn +description: This is Betta Parn's description +facsimileTelephoneNumber: +1 804 378-7084 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 125-3102 +title: Chief Management Technician +userPassword: Password1 +uid: ParnB +givenName: Betta +mail: ParnB@38dcec66f26c4456ab9d677c65296ef1.bitwarden.com +carLicense: 3E4F0E +departmentNumber: 7236 +employeeType: Employee +homePhone: +1 804 729-4594 +initials: B. P. +mobile: +1 804 189-4242 +pager: +1 804 797-4812 +roomNumber: 8280 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lon Sourour,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lon Sourour +sn: Sourour +description: This is Lon Sourour's description +facsimileTelephoneNumber: +1 408 968-9542 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 847-1907 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: SourourL +givenName: Lon +mail: SourourL@4a2fd4a05dbb410fa7af8a1d24b5cd04.bitwarden.com +carLicense: V5M65T +departmentNumber: 4986 +employeeType: Employee +homePhone: +1 408 151-9687 +initials: L. S. +mobile: +1 408 998-1888 +pager: +1 408 305-9200 +roomNumber: 8507 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Neetu Kromer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neetu Kromer +sn: Kromer +description: This is Neetu Kromer's description +facsimileTelephoneNumber: +1 818 982-4974 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 609-1606 +title: Master Payroll Visionary +userPassword: Password1 +uid: KromerN +givenName: Neetu +mail: KromerN@4a5d6761844a487688a8f353a67dc3a6.bitwarden.com +carLicense: NT54DU +departmentNumber: 3302 +employeeType: Normal +homePhone: +1 818 159-8940 +initials: N. K. +mobile: +1 818 903-2439 +pager: +1 818 832-1534 +roomNumber: 8852 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lon Sells,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lon Sells +sn: Sells +description: This is Lon Sells's description +facsimileTelephoneNumber: +1 818 996-2565 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 228-8486 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: SellsL +givenName: Lon +mail: SellsL@28fca843a5ae4175b7bbc20728951453.bitwarden.com +carLicense: I1NG7L +departmentNumber: 3045 +employeeType: Contract +homePhone: +1 818 900-9818 +initials: L. S. +mobile: +1 818 296-5251 +pager: +1 818 682-9151 +roomNumber: 9803 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shivdarsan Garry,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shivdarsan Garry +sn: Garry +description: This is Shivdarsan Garry's description +facsimileTelephoneNumber: +1 408 588-4325 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 703-7592 +title: Junior Management Madonna +userPassword: Password1 +uid: GarryS +givenName: Shivdarsan +mail: GarryS@474927d6f0584e7f9ec7edbb9c9a6503.bitwarden.com +carLicense: QGI096 +departmentNumber: 5395 +employeeType: Employee +homePhone: +1 408 747-9162 +initials: S. G. +mobile: +1 408 998-8371 +pager: +1 408 688-5801 +roomNumber: 9312 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Co Reinhold,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Co Reinhold +sn: Reinhold +description: This is Co Reinhold's description +facsimileTelephoneNumber: +1 213 804-2311 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 179-5291 +title: Associate Human Resources Punk +userPassword: Password1 +uid: ReinholC +givenName: Co +mail: ReinholC@7d9cd1f5b4d645a6bff13b745f4db29e.bitwarden.com +carLicense: 6HL5P4 +departmentNumber: 4727 +employeeType: Contract +homePhone: +1 213 391-8855 +initials: C. R. +mobile: +1 213 975-3557 +pager: +1 213 363-1371 +roomNumber: 8418 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Inez Elks,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inez Elks +sn: Elks +description: This is Inez Elks's description +facsimileTelephoneNumber: +1 818 468-2718 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 586-1071 +title: Junior Human Resources Architect +userPassword: Password1 +uid: ElksI +givenName: Inez +mail: ElksI@fd2bad63f6454f51b13a625709ed0d80.bitwarden.com +carLicense: VHJHJJ +departmentNumber: 1203 +employeeType: Normal +homePhone: +1 818 909-5917 +initials: I. E. +mobile: +1 818 314-2479 +pager: +1 818 986-9155 +roomNumber: 9902 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lalit DaSilva +sn: DaSilva +description: This is Lalit DaSilva's description +facsimileTelephoneNumber: +1 213 767-4839 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 285-1017 +title: Master Janitorial Engineer +userPassword: Password1 +uid: DaSilvaL +givenName: Lalit +mail: DaSilvaL@d45f6836f596476594ad223437a92901.bitwarden.com +carLicense: 2VXU6W +departmentNumber: 2919 +employeeType: Employee +homePhone: +1 213 603-7063 +initials: L. D. +mobile: +1 213 512-6568 +pager: +1 213 494-3297 +roomNumber: 9718 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=John Senecal,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: John Senecal +sn: Senecal +description: This is John Senecal's description +facsimileTelephoneNumber: +1 408 621-2517 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 875-3660 +title: Junior Payroll Visionary +userPassword: Password1 +uid: SenecalJ +givenName: John +mail: SenecalJ@26e1dec8a04040fb9bea3b60a85c414d.bitwarden.com +carLicense: 6LGBY7 +departmentNumber: 2886 +employeeType: Normal +homePhone: +1 408 968-4105 +initials: J. S. +mobile: +1 408 312-3961 +pager: +1 408 160-8244 +roomNumber: 8429 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liz Weatherspoon +sn: Weatherspoon +description: This is Liz Weatherspoon's description +facsimileTelephoneNumber: +1 510 517-3784 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 507-8166 +title: Master Janitorial Stooge +userPassword: Password1 +uid: WeatherL +givenName: Liz +mail: WeatherL@6ab6650181504c9b862cd99522e8d54f.bitwarden.com +carLicense: 7G06QJ +departmentNumber: 1248 +employeeType: Contract +homePhone: +1 510 256-7485 +initials: L. W. +mobile: +1 510 390-6130 +pager: +1 510 783-3456 +roomNumber: 8283 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marit Whatley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marit Whatley +sn: Whatley +description: This is Marit Whatley's description +facsimileTelephoneNumber: +1 818 270-5352 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 818 749-4249 +title: Junior Payroll Admin +userPassword: Password1 +uid: WhatleyM +givenName: Marit +mail: WhatleyM@ca07554d305246dd85334089406d833c.bitwarden.com +carLicense: M4YXQ4 +departmentNumber: 3096 +employeeType: Normal +homePhone: +1 818 789-6020 +initials: M. W. +mobile: +1 818 752-8924 +pager: +1 818 675-1135 +roomNumber: 9083 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sammie Datta,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sammie Datta +sn: Datta +description: This is Sammie Datta's description +facsimileTelephoneNumber: +1 206 331-8524 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 709-4221 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: DattaS +givenName: Sammie +mail: DattaS@80031e1708f3413ea32c3a78e1027c0d.bitwarden.com +carLicense: EHKAC2 +departmentNumber: 5449 +employeeType: Employee +homePhone: +1 206 711-4000 +initials: S. D. +mobile: +1 206 132-9554 +pager: +1 206 996-4978 +roomNumber: 9843 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pegeen Satterfield +sn: Satterfield +description: This is Pegeen Satterfield's description +facsimileTelephoneNumber: +1 206 741-2582 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 295-4403 +title: Chief Human Resources Punk +userPassword: Password1 +uid: SatterfP +givenName: Pegeen +mail: SatterfP@6616dd3e145e4e6a982af39cc5dff517.bitwarden.com +carLicense: 8JHQTT +departmentNumber: 4354 +employeeType: Contract +homePhone: +1 206 303-6361 +initials: P. S. +mobile: +1 206 637-8534 +pager: +1 206 443-8897 +roomNumber: 9648 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Clea Laing,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clea Laing +sn: Laing +description: This is Clea Laing's description +facsimileTelephoneNumber: +1 804 219-9874 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 412-9107 +title: Associate Peons Admin +userPassword: Password1 +uid: LaingC +givenName: Clea +mail: LaingC@4cb31507770f4eb5b18d7d1eac84d8c0.bitwarden.com +carLicense: M7J9HO +departmentNumber: 4013 +employeeType: Contract +homePhone: +1 804 854-8500 +initials: C. L. +mobile: +1 804 399-2840 +pager: +1 804 105-2413 +roomNumber: 9884 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rex Pelletier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rex Pelletier +sn: Pelletier +description: This is Rex Pelletier's description +facsimileTelephoneNumber: +1 804 212-6853 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 804 429-7363 +title: Master Human Resources Dictator +userPassword: Password1 +uid: PelletiR +givenName: Rex +mail: PelletiR@7a7d0894c6494a99ba1054d717cb6514.bitwarden.com +carLicense: E6KP6O +departmentNumber: 9488 +employeeType: Normal +homePhone: +1 804 859-8369 +initials: R. P. +mobile: +1 804 878-8330 +pager: +1 804 816-4744 +roomNumber: 9250 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gaby Dybenko,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaby Dybenko +sn: Dybenko +description: This is Gaby Dybenko's description +facsimileTelephoneNumber: +1 510 390-6354 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 640-3064 +title: Associate Peons Manager +userPassword: Password1 +uid: DybenkoG +givenName: Gaby +mail: DybenkoG@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com +carLicense: OG65EE +departmentNumber: 9201 +employeeType: Normal +homePhone: +1 510 791-3447 +initials: G. D. +mobile: +1 510 189-2107 +pager: +1 510 487-3084 +roomNumber: 9475 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dwight Kinstley +sn: Kinstley +description: This is Dwight Kinstley's description +facsimileTelephoneNumber: +1 415 694-8191 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 271-9843 +title: Associate Janitorial Writer +userPassword: Password1 +uid: KinstleD +givenName: Dwight +mail: KinstleD@44cbc1ffc61f4407b46df0ad2810f7c4.bitwarden.com +carLicense: 1Y7HT3 +departmentNumber: 4250 +employeeType: Contract +homePhone: +1 415 641-9545 +initials: D. K. +mobile: +1 415 891-8928 +pager: +1 415 916-1788 +roomNumber: 9910 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Velma Donahee,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Velma Donahee +sn: Donahee +description: This is Velma Donahee's description +facsimileTelephoneNumber: +1 415 296-6187 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 415 841-2439 +title: Associate Product Testing Grunt +userPassword: Password1 +uid: DonaheeV +givenName: Velma +mail: DonaheeV@49fad969a9cf4f7f9ee17b24c9d91f37.bitwarden.com +carLicense: AD2LS3 +departmentNumber: 3614 +employeeType: Normal +homePhone: +1 415 453-2311 +initials: V. D. +mobile: +1 415 589-3226 +pager: +1 415 925-2876 +roomNumber: 8214 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chawki Targosky,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chawki Targosky +sn: Targosky +description: This is Chawki Targosky's description +facsimileTelephoneNumber: +1 415 829-5107 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 467-7846 +title: Master Product Testing President +userPassword: Password1 +uid: TargoskC +givenName: Chawki +mail: TargoskC@6166cdfc1e46480f804599bfc1632742.bitwarden.com +carLicense: P61YNV +departmentNumber: 1180 +employeeType: Contract +homePhone: +1 415 297-8304 +initials: C. T. +mobile: +1 415 172-6449 +pager: +1 415 638-9908 +roomNumber: 8297 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Clemente Boroski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clemente Boroski +sn: Boroski +description: This is Clemente Boroski's description +facsimileTelephoneNumber: +1 213 681-5552 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 891-3670 +title: Associate Peons Evangelist +userPassword: Password1 +uid: BoroskiC +givenName: Clemente +mail: BoroskiC@c515863a84e8438aba0830f2adfe9717.bitwarden.com +carLicense: QWT0RS +departmentNumber: 8622 +employeeType: Normal +homePhone: +1 213 489-6801 +initials: C. B. +mobile: +1 213 377-6357 +pager: +1 213 882-8242 +roomNumber: 9430 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=JinYun Vea,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JinYun Vea +sn: Vea +description: This is JinYun Vea's description +facsimileTelephoneNumber: +1 415 462-7815 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 373-1269 +title: Chief Product Development Admin +userPassword: Password1 +uid: VeaJ +givenName: JinYun +mail: VeaJ@53ded4f1811e45138f20f4b0826a480a.bitwarden.com +carLicense: H69A8X +departmentNumber: 9300 +employeeType: Contract +homePhone: +1 415 104-1783 +initials: J. V. +mobile: +1 415 123-1736 +pager: +1 415 214-9929 +roomNumber: 9364 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dawn Pelland,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dawn Pelland +sn: Pelland +description: This is Dawn Pelland's description +facsimileTelephoneNumber: +1 415 250-5119 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 202-2567 +title: Master Product Development Grunt +userPassword: Password1 +uid: PellandD +givenName: Dawn +mail: PellandD@c3e4fed0ee6543d6b658ce41386d4984.bitwarden.com +carLicense: X4AW0H +departmentNumber: 8014 +employeeType: Normal +homePhone: +1 415 120-4159 +initials: D. P. +mobile: +1 415 652-2057 +pager: +1 415 608-3102 +roomNumber: 9537 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicole Shamshiri +sn: Shamshiri +description: This is Nicole Shamshiri's description +facsimileTelephoneNumber: +1 415 645-4477 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 388-5537 +title: Associate Administrative Vice President +userPassword: Password1 +uid: ShamshiN +givenName: Nicole +mail: ShamshiN@fad13712be524b2bb53fd1f676c9976a.bitwarden.com +carLicense: J6MHT0 +departmentNumber: 6022 +employeeType: Employee +homePhone: +1 415 127-9949 +initials: N. S. +mobile: +1 415 911-9793 +pager: +1 415 580-8871 +roomNumber: 8122 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Snehal Benne,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Snehal Benne +sn: Benne +description: This is Snehal Benne's description +facsimileTelephoneNumber: +1 804 317-5423 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 682-8145 +title: Chief Human Resources Engineer +userPassword: Password1 +uid: BenneS +givenName: Snehal +mail: BenneS@34b4596fe27f4849b36cd75d1f4d495a.bitwarden.com +carLicense: MDMQLO +departmentNumber: 6552 +employeeType: Normal +homePhone: +1 804 586-5418 +initials: S. B. +mobile: +1 804 193-5425 +pager: +1 804 270-1552 +roomNumber: 9017 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Selma Sinasac,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selma Sinasac +sn: Sinasac +description: This is Selma Sinasac's description +facsimileTelephoneNumber: +1 213 265-9287 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 538-3316 +title: Master Product Development Mascot +userPassword: Password1 +uid: SinasacS +givenName: Selma +mail: SinasacS@21bcf6a485b34cf591de5e2c4c73b2a9.bitwarden.com +carLicense: 178EVV +departmentNumber: 6684 +employeeType: Contract +homePhone: +1 213 604-7772 +initials: S. S. +mobile: +1 213 663-8046 +pager: +1 213 833-3812 +roomNumber: 8564 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vickie Holcombe +sn: Holcombe +description: This is Vickie Holcombe's description +facsimileTelephoneNumber: +1 408 659-8465 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 974-6876 +title: Master Product Testing Technician +userPassword: Password1 +uid: HolcombV +givenName: Vickie +mail: HolcombV@7a909c99a62141c5a029d819c95f8966.bitwarden.com +carLicense: 5CI4B9 +departmentNumber: 6729 +employeeType: Employee +homePhone: +1 408 989-8175 +initials: V. H. +mobile: +1 408 694-5379 +pager: +1 408 120-2809 +roomNumber: 9432 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cindee Majid,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cindee Majid +sn: Majid +description: This is Cindee Majid's description +facsimileTelephoneNumber: +1 510 201-1507 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 622-8548 +title: Junior Payroll Vice President +userPassword: Password1 +uid: MajidC +givenName: Cindee +mail: MajidC@a83f5faad57246c68e39925cbe706599.bitwarden.com +carLicense: APB42M +departmentNumber: 2439 +employeeType: Normal +homePhone: +1 510 323-7397 +initials: C. M. +mobile: +1 510 620-3420 +pager: +1 510 727-2701 +roomNumber: 9344 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aubrey MacElwee +sn: MacElwee +description: This is Aubrey MacElwee's description +facsimileTelephoneNumber: +1 818 911-6148 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 475-7898 +title: Junior Payroll Madonna +userPassword: Password1 +uid: MacElweA +givenName: Aubrey +mail: MacElweA@30940250e8844da39fb713b6d19a3328.bitwarden.com +carLicense: QPIUL3 +departmentNumber: 5410 +employeeType: Employee +homePhone: +1 818 897-4353 +initials: A. M. +mobile: +1 818 492-9179 +pager: +1 818 190-9697 +roomNumber: 9194 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wieslaw Georges +sn: Georges +description: This is Wieslaw Georges's description +facsimileTelephoneNumber: +1 408 906-9213 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 690-2990 +title: Associate Human Resources President +userPassword: Password1 +uid: GeorgesW +givenName: Wieslaw +mail: GeorgesW@c87e51ff3d124e2595c26b85c6dd84c1.bitwarden.com +carLicense: T5MB4Q +departmentNumber: 1776 +employeeType: Contract +homePhone: +1 408 103-1865 +initials: W. G. +mobile: +1 408 462-1056 +pager: +1 408 423-2015 +roomNumber: 9772 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Croix Valiveti,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Croix Valiveti +sn: Valiveti +description: This is Croix Valiveti's description +facsimileTelephoneNumber: +1 206 607-4804 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 214-1808 +title: Associate Human Resources Developer +userPassword: Password1 +uid: ValivetC +givenName: Croix +mail: ValivetC@796636c316134f4ea242b8ffac574e0e.bitwarden.com +carLicense: M5BKB2 +departmentNumber: 5125 +employeeType: Employee +homePhone: +1 206 145-2230 +initials: C. V. +mobile: +1 206 205-9313 +pager: +1 206 806-8924 +roomNumber: 9608 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jelene Watkins,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jelene Watkins +sn: Watkins +description: This is Jelene Watkins's description +facsimileTelephoneNumber: +1 415 588-9041 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 763-6057 +title: Master Human Resources Grunt +userPassword: Password1 +uid: WatkinsJ +givenName: Jelene +mail: WatkinsJ@d117baceef9a4168bde2647e78683a37.bitwarden.com +carLicense: BIS7V0 +departmentNumber: 6608 +employeeType: Employee +homePhone: +1 415 876-3173 +initials: J. W. +mobile: +1 415 666-3960 +pager: +1 415 557-4578 +roomNumber: 8719 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Harriot Macklem,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harriot Macklem +sn: Macklem +description: This is Harriot Macklem's description +facsimileTelephoneNumber: +1 818 694-5630 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 818 426-6403 +title: Associate Administrative Engineer +userPassword: Password1 +uid: MacklemH +givenName: Harriot +mail: MacklemH@bd079bcc8df848e4ad40b50c80eb486f.bitwarden.com +carLicense: 60P731 +departmentNumber: 8989 +employeeType: Normal +homePhone: +1 818 187-4398 +initials: H. M. +mobile: +1 818 498-7623 +pager: +1 818 483-7265 +roomNumber: 8155 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Torey Kilzer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Torey Kilzer +sn: Kilzer +description: This is Torey Kilzer's description +facsimileTelephoneNumber: +1 415 179-1745 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 885-3410 +title: Master Product Testing Evangelist +userPassword: Password1 +uid: KilzerT +givenName: Torey +mail: KilzerT@f75201d6bca8489ca55858f0848a1669.bitwarden.com +carLicense: 11CT0O +departmentNumber: 8857 +employeeType: Normal +homePhone: +1 415 765-7796 +initials: T. K. +mobile: +1 415 161-5121 +pager: +1 415 758-6799 +roomNumber: 8906 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gilberta Howie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilberta Howie +sn: Howie +description: This is Gilberta Howie's description +facsimileTelephoneNumber: +1 408 150-7088 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 427-1472 +title: Junior Peons Stooge +userPassword: Password1 +uid: HowieG +givenName: Gilberta +mail: HowieG@a6c2af5a8f94494bae6122c60dacfc6e.bitwarden.com +carLicense: QH48K3 +departmentNumber: 7893 +employeeType: Normal +homePhone: +1 408 792-9292 +initials: G. H. +mobile: +1 408 224-6607 +pager: +1 408 762-5908 +roomNumber: 8421 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Darrel Doerfel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrel Doerfel +sn: Doerfel +description: This is Darrel Doerfel's description +facsimileTelephoneNumber: +1 818 178-4258 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 479-1262 +title: Master Payroll Janitor +userPassword: Password1 +uid: DoerfelD +givenName: Darrel +mail: DoerfelD@f638e931330c48d7ae5c0869dd725594.bitwarden.com +carLicense: WE9N3N +departmentNumber: 4674 +employeeType: Employee +homePhone: +1 818 267-9489 +initials: D. D. +mobile: +1 818 457-1774 +pager: +1 818 802-9836 +roomNumber: 8899 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anastasia Torrealba +sn: Torrealba +description: This is Anastasia Torrealba's description +facsimileTelephoneNumber: +1 213 675-9477 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 307-4107 +title: Junior Human Resources Evangelist +userPassword: Password1 +uid: TorrealA +givenName: Anastasia +mail: TorrealA@3ac90edfcfff46898d6b206ad200961d.bitwarden.com +carLicense: NKIU8R +departmentNumber: 6895 +employeeType: Normal +homePhone: +1 213 266-7804 +initials: A. T. +mobile: +1 213 278-2075 +pager: +1 213 808-4776 +roomNumber: 8553 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Phu Lukie,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phu Lukie +sn: Lukie +description: This is Phu Lukie's description +facsimileTelephoneNumber: +1 408 165-2085 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 715-1333 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: LukieP +givenName: Phu +mail: LukieP@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com +carLicense: LVEDMK +departmentNumber: 7769 +employeeType: Employee +homePhone: +1 408 219-6251 +initials: P. L. +mobile: +1 408 841-3770 +pager: +1 408 853-3626 +roomNumber: 9152 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Katja Teder,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katja Teder +sn: Teder +description: This is Katja Teder's description +facsimileTelephoneNumber: +1 804 459-4061 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 721-6016 +title: Master Payroll Stooge +userPassword: Password1 +uid: TederK +givenName: Katja +mail: TederK@2adb967556814b64a4967092a73de947.bitwarden.com +carLicense: L8YE1H +departmentNumber: 7534 +employeeType: Contract +homePhone: +1 804 567-6506 +initials: K. T. +mobile: +1 804 596-4099 +pager: +1 804 864-6276 +roomNumber: 9434 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sybilla Cupido +sn: Cupido +description: This is Sybilla Cupido's description +facsimileTelephoneNumber: +1 818 784-4516 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 995-8366 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: CupidoS +givenName: Sybilla +mail: CupidoS@092396cbb25f48afadfced942905695a.bitwarden.com +carLicense: A494LX +departmentNumber: 1549 +employeeType: Normal +homePhone: +1 818 208-1651 +initials: S. C. +mobile: +1 818 391-4866 +pager: +1 818 889-8473 +roomNumber: 9070 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rina Talton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rina Talton +sn: Talton +description: This is Rina Talton's description +facsimileTelephoneNumber: +1 206 650-5261 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 262-9501 +title: Master Administrative Admin +userPassword: Password1 +uid: TaltonR +givenName: Rina +mail: TaltonR@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com +carLicense: NN32DS +departmentNumber: 5115 +employeeType: Contract +homePhone: +1 206 939-2196 +initials: R. T. +mobile: +1 206 362-9758 +pager: +1 206 800-7886 +roomNumber: 8332 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nelleke Haley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nelleke Haley +sn: Haley +description: This is Nelleke Haley's description +facsimileTelephoneNumber: +1 510 393-9644 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 957-9211 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: HaleyN +givenName: Nelleke +mail: HaleyN@1ab5e46ea4fb40b292686a380747c794.bitwarden.com +carLicense: VF17HT +departmentNumber: 1346 +employeeType: Contract +homePhone: +1 510 382-9756 +initials: N. H. +mobile: +1 510 152-5410 +pager: +1 510 514-6280 +roomNumber: 8975 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shalna Yao,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shalna Yao +sn: Yao +description: This is Shalna Yao's description +facsimileTelephoneNumber: +1 510 279-8551 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 345-4659 +title: Master Peons Artist +userPassword: Password1 +uid: YaoS +givenName: Shalna +mail: YaoS@652dfd4ca6554eef8a080dba766c7206.bitwarden.com +carLicense: U346VK +departmentNumber: 4398 +employeeType: Normal +homePhone: +1 510 842-7254 +initials: S. Y. +mobile: +1 510 666-1843 +pager: +1 510 832-1936 +roomNumber: 9136 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karmen Wever,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karmen Wever +sn: Wever +description: This is Karmen Wever's description +facsimileTelephoneNumber: +1 804 649-7648 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 152-5386 +title: Junior Janitorial Warrior +userPassword: Password1 +uid: WeverK +givenName: Karmen +mail: WeverK@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com +carLicense: LLY63P +departmentNumber: 5434 +employeeType: Employee +homePhone: +1 804 422-2581 +initials: K. W. +mobile: +1 804 638-5497 +pager: +1 804 719-5945 +roomNumber: 8992 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ahmad Khatib +sn: Khatib +description: This is Ahmad Khatib's description +facsimileTelephoneNumber: +1 510 812-3012 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 508-2544 +title: Chief Janitorial Architect +userPassword: Password1 +uid: KhatibA +givenName: Ahmad +mail: KhatibA@3400488b7a3349e39ce7a604277f42e7.bitwarden.com +carLicense: HUXNMD +departmentNumber: 6572 +employeeType: Normal +homePhone: +1 510 535-6138 +initials: A. K. +mobile: +1 510 485-3510 +pager: +1 510 977-2162 +roomNumber: 9377 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Udaya Magnuson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Udaya Magnuson +sn: Magnuson +description: This is Udaya Magnuson's description +facsimileTelephoneNumber: +1 408 691-7472 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 486-8755 +title: Supreme Payroll Punk +userPassword: Password1 +uid: MagnusoU +givenName: Udaya +mail: MagnusoU@c72f77d8df544dfda8a24066a5992ad2.bitwarden.com +carLicense: TSRXRM +departmentNumber: 3977 +employeeType: Contract +homePhone: +1 408 616-1665 +initials: U. M. +mobile: +1 408 243-6418 +pager: +1 408 609-2450 +roomNumber: 9104 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tory Racz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tory Racz +sn: Racz +description: This is Tory Racz's description +facsimileTelephoneNumber: +1 408 237-5888 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 252-1519 +title: Associate Payroll Developer +userPassword: Password1 +uid: RaczT +givenName: Tory +mail: RaczT@e48e3f4a8e5644a2a44442f4e1916d3b.bitwarden.com +carLicense: 823E9Q +departmentNumber: 7475 +employeeType: Employee +homePhone: +1 408 136-3195 +initials: T. R. +mobile: +1 408 465-8879 +pager: +1 408 357-4388 +roomNumber: 9429 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Danika Jamaly,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danika Jamaly +sn: Jamaly +description: This is Danika Jamaly's description +facsimileTelephoneNumber: +1 213 258-7578 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 285-1065 +title: Associate Payroll Dictator +userPassword: Password1 +uid: JamalyD +givenName: Danika +mail: JamalyD@995d47539bff49b8a85a5ecb474bd257.bitwarden.com +carLicense: V4P9E4 +departmentNumber: 1154 +employeeType: Normal +homePhone: +1 213 876-3885 +initials: D. J. +mobile: +1 213 549-4925 +pager: +1 213 224-1151 +roomNumber: 8451 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Loc McElligott,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loc McElligott +sn: McElligott +description: This is Loc McElligott's description +facsimileTelephoneNumber: +1 510 705-2637 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 645-1264 +title: Associate Product Development Architect +userPassword: Password1 +uid: McElligL +givenName: Loc +mail: McElligL@0e51e4ac4ff5492f891ae127459e83ab.bitwarden.com +carLicense: K4UWYV +departmentNumber: 5346 +employeeType: Normal +homePhone: +1 510 171-4538 +initials: L. M. +mobile: +1 510 239-7891 +pager: +1 510 697-7690 +roomNumber: 9464 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maryanne Herr,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryanne Herr +sn: Herr +description: This is Maryanne Herr's description +facsimileTelephoneNumber: +1 804 479-2375 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 278-6002 +title: Master Janitorial Artist +userPassword: Password1 +uid: HerrM +givenName: Maryanne +mail: HerrM@6c99b676cc944a0f933ecc8837dfc70b.bitwarden.com +carLicense: L6RRG9 +departmentNumber: 8704 +employeeType: Employee +homePhone: +1 804 755-9276 +initials: M. H. +mobile: +1 804 565-9188 +pager: +1 804 482-3732 +roomNumber: 9531 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Norrie Vanwychen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norrie Vanwychen +sn: Vanwychen +description: This is Norrie Vanwychen's description +facsimileTelephoneNumber: +1 510 679-4325 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 204-2579 +title: Master Peons Pinhead +userPassword: Password1 +uid: VanwychN +givenName: Norrie +mail: VanwychN@cf312555e24a4a5fa558a25238d5f8c7.bitwarden.com +carLicense: O8M9TX +departmentNumber: 4088 +employeeType: Normal +homePhone: +1 510 819-2383 +initials: N. V. +mobile: +1 510 177-9643 +pager: +1 510 478-4068 +roomNumber: 8632 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Babette Hammond,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Babette Hammond +sn: Hammond +description: This is Babette Hammond's description +facsimileTelephoneNumber: +1 415 336-8890 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 333-6915 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: HammondB +givenName: Babette +mail: HammondB@8289a29e96624f61a290ca3e806f9dd8.bitwarden.com +carLicense: MVH6PJ +departmentNumber: 1944 +employeeType: Normal +homePhone: +1 415 961-9729 +initials: B. H. +mobile: +1 415 841-6883 +pager: +1 415 582-3348 +roomNumber: 8502 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dae Malloy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dae Malloy +sn: Malloy +description: This is Dae Malloy's description +facsimileTelephoneNumber: +1 415 149-2893 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 888-8291 +title: Chief Peons Admin +userPassword: Password1 +uid: MalloyD +givenName: Dae +mail: MalloyD@15a45d459da54368b0fd6d1cb3b6eb6c.bitwarden.com +carLicense: EIDYML +departmentNumber: 6985 +employeeType: Normal +homePhone: +1 415 788-4665 +initials: D. M. +mobile: +1 415 960-2757 +pager: +1 415 895-9842 +roomNumber: 9016 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Demi Uyar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Demi Uyar +sn: Uyar +description: This is Demi Uyar's description +facsimileTelephoneNumber: +1 415 573-1550 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 690-1765 +title: Chief Peons Vice President +userPassword: Password1 +uid: UyarD +givenName: Demi +mail: UyarD@31b13d20c58546e5aa89cbb19323b703.bitwarden.com +carLicense: XS2HVR +departmentNumber: 5490 +employeeType: Normal +homePhone: +1 415 441-4548 +initials: D. U. +mobile: +1 415 889-6501 +pager: +1 415 390-4850 +roomNumber: 9488 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Drago Wooley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drago Wooley +sn: Wooley +description: This is Drago Wooley's description +facsimileTelephoneNumber: +1 510 205-4752 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 756-6359 +title: Associate Payroll Pinhead +userPassword: Password1 +uid: WooleyD +givenName: Drago +mail: WooleyD@b9938495171f4052b273ff15a3fbbcac.bitwarden.com +carLicense: J88L45 +departmentNumber: 3318 +employeeType: Employee +homePhone: +1 510 603-3529 +initials: D. W. +mobile: +1 510 567-9759 +pager: +1 510 217-7964 +roomNumber: 9745 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lira Akhtar,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lira Akhtar +sn: Akhtar +description: This is Lira Akhtar's description +facsimileTelephoneNumber: +1 415 652-1443 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 212-6310 +title: Associate Human Resources Punk +userPassword: Password1 +uid: AkhtarL +givenName: Lira +mail: AkhtarL@dbc00763a9de485c97697558ab9ccf2e.bitwarden.com +carLicense: PD0EFV +departmentNumber: 1378 +employeeType: Normal +homePhone: +1 415 759-8106 +initials: L. A. +mobile: +1 415 948-7203 +pager: +1 415 497-2121 +roomNumber: 9560 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Godfrey Metzger +sn: Metzger +description: This is Godfrey Metzger's description +facsimileTelephoneNumber: +1 408 864-3992 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 408 363-7396 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: MetzgerG +givenName: Godfrey +mail: MetzgerG@4ec057135a5045f1a9989fae44b8b962.bitwarden.com +carLicense: T73ELE +departmentNumber: 9744 +employeeType: Contract +homePhone: +1 408 550-8245 +initials: G. M. +mobile: +1 408 793-9255 +pager: +1 408 921-3800 +roomNumber: 9405 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Blair Costen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blair Costen +sn: Costen +description: This is Blair Costen's description +facsimileTelephoneNumber: +1 415 525-7960 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 160-2476 +title: Associate Payroll Warrior +userPassword: Password1 +uid: CostenB +givenName: Blair +mail: CostenB@2ebbe6ccc158418ea03a56b7dd20f4d9.bitwarden.com +carLicense: TYJUUY +departmentNumber: 1094 +employeeType: Employee +homePhone: +1 415 677-8632 +initials: B. C. +mobile: +1 415 643-4144 +pager: +1 415 358-7604 +roomNumber: 9107 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Celinka Truong,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celinka Truong +sn: Truong +description: This is Celinka Truong's description +facsimileTelephoneNumber: +1 213 434-6066 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 580-8573 +title: Associate Management Mascot +userPassword: Password1 +uid: TruongC +givenName: Celinka +mail: TruongC@a3e17557b4384961a999c1890d509b79.bitwarden.com +carLicense: 3W0MAG +departmentNumber: 7275 +employeeType: Employee +homePhone: +1 213 563-9130 +initials: C. T. +mobile: +1 213 348-2186 +pager: +1 213 878-8412 +roomNumber: 8982 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Olympe Wyndham,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olympe Wyndham +sn: Wyndham +description: This is Olympe Wyndham's description +facsimileTelephoneNumber: +1 510 992-5013 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 621-3444 +title: Chief Payroll Consultant +userPassword: Password1 +uid: WyndhamO +givenName: Olympe +mail: WyndhamO@4cb9f71c0f8f42fdadb28a744475bd83.bitwarden.com +carLicense: HKVSKD +departmentNumber: 6065 +employeeType: Employee +homePhone: +1 510 914-3019 +initials: O. W. +mobile: +1 510 500-8644 +pager: +1 510 503-4772 +roomNumber: 8464 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Emp Slyteris,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emp Slyteris +sn: Slyteris +description: This is Emp Slyteris's description +facsimileTelephoneNumber: +1 213 510-5169 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 512-4558 +title: Associate Management Czar +userPassword: Password1 +uid: SlyteriE +givenName: Emp +mail: SlyteriE@60140563b5e14f1182bbd54a9d0efa93.bitwarden.com +carLicense: 3OC2L8 +departmentNumber: 7748 +employeeType: Contract +homePhone: +1 213 498-7579 +initials: E. S. +mobile: +1 213 125-1027 +pager: +1 213 863-9713 +roomNumber: 8369 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Brien Ensign,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brien Ensign +sn: Ensign +description: This is Brien Ensign's description +facsimileTelephoneNumber: +1 818 595-5775 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 432-7731 +title: Chief Management Consultant +userPassword: Password1 +uid: EnsignB +givenName: Brien +mail: EnsignB@6f20d79c56464dde992ea2750d47121a.bitwarden.com +carLicense: RC7WSD +departmentNumber: 5121 +employeeType: Normal +homePhone: +1 818 382-7275 +initials: B. E. +mobile: +1 818 570-1730 +pager: +1 818 500-5944 +roomNumber: 9758 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nicolas Whetston,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolas Whetston +sn: Whetston +description: This is Nicolas Whetston's description +facsimileTelephoneNumber: +1 213 530-3492 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 591-9300 +title: Associate Management Artist +userPassword: Password1 +uid: WhetstoN +givenName: Nicolas +mail: WhetstoN@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com +carLicense: ILLUDK +departmentNumber: 2854 +employeeType: Normal +homePhone: +1 213 124-3499 +initials: N. W. +mobile: +1 213 486-9715 +pager: +1 213 429-5192 +roomNumber: 8832 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Annalise Combaz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annalise Combaz +sn: Combaz +description: This is Annalise Combaz's description +facsimileTelephoneNumber: +1 818 826-2713 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 339-8871 +title: Junior Payroll Technician +userPassword: Password1 +uid: CombazA +givenName: Annalise +mail: CombazA@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com +carLicense: J3Y5KT +departmentNumber: 3575 +employeeType: Normal +homePhone: +1 818 535-8870 +initials: A. C. +mobile: +1 818 509-4293 +pager: +1 818 163-8867 +roomNumber: 9653 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jiri Clary,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jiri Clary +sn: Clary +description: This is Jiri Clary's description +facsimileTelephoneNumber: +1 510 181-2370 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 507-7262 +title: Chief Janitorial Consultant +userPassword: Password1 +uid: ClaryJ +givenName: Jiri +mail: ClaryJ@7a051cc2e7634983a3582a71a4e80384.bitwarden.com +carLicense: M4AXEX +departmentNumber: 3028 +employeeType: Normal +homePhone: +1 510 568-8316 +initials: J. C. +mobile: +1 510 679-2624 +pager: +1 510 640-3539 +roomNumber: 8853 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Emelia Farag,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emelia Farag +sn: Farag +description: This is Emelia Farag's description +facsimileTelephoneNumber: +1 206 189-5853 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 206 393-1760 +title: Associate Product Development Evangelist +userPassword: Password1 +uid: FaragE +givenName: Emelia +mail: FaragE@b03911e4f64b4ff791e7c32a300a48fc.bitwarden.com +carLicense: 53FVBY +departmentNumber: 2684 +employeeType: Contract +homePhone: +1 206 386-5369 +initials: E. F. +mobile: +1 206 579-8343 +pager: +1 206 804-1751 +roomNumber: 9943 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cang Calva,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cang Calva +sn: Calva +description: This is Cang Calva's description +facsimileTelephoneNumber: +1 213 633-8683 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 554-5719 +title: Chief Payroll Figurehead +userPassword: Password1 +uid: CalvaC +givenName: Cang +mail: CalvaC@fab69171647048c9ab39ecbf968a6353.bitwarden.com +carLicense: VL00SV +departmentNumber: 5220 +employeeType: Contract +homePhone: +1 213 130-1295 +initials: C. C. +mobile: +1 213 125-9508 +pager: +1 213 911-3791 +roomNumber: 8684 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anastasia Weidinger +sn: Weidinger +description: This is Anastasia Weidinger's description +facsimileTelephoneNumber: +1 213 352-8986 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 515-8162 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: WeidingA +givenName: Anastasia +mail: WeidingA@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com +carLicense: QQTKF1 +departmentNumber: 7616 +employeeType: Normal +homePhone: +1 213 698-8891 +initials: A. W. +mobile: +1 213 854-4341 +pager: +1 213 393-3976 +roomNumber: 9019 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sanjeev Tates,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanjeev Tates +sn: Tates +description: This is Sanjeev Tates's description +facsimileTelephoneNumber: +1 510 746-1296 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 724-7133 +title: Supreme Management Engineer +userPassword: Password1 +uid: TatesS +givenName: Sanjeev +mail: TatesS@b4ae1434dbd74e3f9fda915972e536aa.bitwarden.com +carLicense: 820SGN +departmentNumber: 9691 +employeeType: Normal +homePhone: +1 510 588-1608 +initials: S. T. +mobile: +1 510 580-9841 +pager: +1 510 967-6108 +roomNumber: 8606 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lindsey Mina,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lindsey Mina +sn: Mina +description: This is Lindsey Mina's description +facsimileTelephoneNumber: +1 804 418-8974 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 284-2077 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: MinaL +givenName: Lindsey +mail: MinaL@c8c34efeb3fd47f485bda2d57f298fa8.bitwarden.com +carLicense: Y6FMVV +departmentNumber: 7572 +employeeType: Contract +homePhone: +1 804 811-3236 +initials: L. M. +mobile: +1 804 791-7107 +pager: +1 804 382-9972 +roomNumber: 8430 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adeniyi Bagshaw +sn: Bagshaw +description: This is Adeniyi Bagshaw's description +facsimileTelephoneNumber: +1 415 327-8884 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 935-4555 +title: Junior Payroll Engineer +userPassword: Password1 +uid: BagshawA +givenName: Adeniyi +mail: BagshawA@2d496c580b4f4816a656973b9003a612.bitwarden.com +carLicense: TF5RAC +departmentNumber: 6630 +employeeType: Employee +homePhone: +1 415 878-5303 +initials: A. B. +mobile: +1 415 663-4673 +pager: +1 415 259-6829 +roomNumber: 9841 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yueh Gowl,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yueh Gowl +sn: Gowl +description: This is Yueh Gowl's description +facsimileTelephoneNumber: +1 510 856-4972 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 510 394-4067 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: GowlY +givenName: Yueh +mail: GowlY@68d52d672a5243b093d527c822a00702.bitwarden.com +carLicense: 6150MI +departmentNumber: 1113 +employeeType: Normal +homePhone: +1 510 669-3398 +initials: Y. G. +mobile: +1 510 491-8665 +pager: +1 510 512-5802 +roomNumber: 9028 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tandi Macquistan +sn: Macquistan +description: This is Tandi Macquistan's description +facsimileTelephoneNumber: +1 408 766-1909 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 824-1137 +title: Master Human Resources Stooge +userPassword: Password1 +uid: MacquisT +givenName: Tandi +mail: MacquisT@1bd24daedf304f73b8c022eec1639654.bitwarden.com +carLicense: DL5006 +departmentNumber: 1713 +employeeType: Employee +homePhone: +1 408 522-5859 +initials: T. M. +mobile: +1 408 110-7533 +pager: +1 408 520-8046 +roomNumber: 8686 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=America Ballarte,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: America Ballarte +sn: Ballarte +description: This is America Ballarte's description +facsimileTelephoneNumber: +1 818 438-9394 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 370-2032 +title: Associate Administrative Czar +userPassword: Password1 +uid: BallartA +givenName: America +mail: BallartA@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com +carLicense: HFHTMB +departmentNumber: 8564 +employeeType: Employee +homePhone: +1 818 976-7868 +initials: A. B. +mobile: +1 818 868-8260 +pager: +1 818 846-1252 +roomNumber: 8946 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Unreg Desjarlais +sn: Desjarlais +description: This is Unreg Desjarlais's description +facsimileTelephoneNumber: +1 818 697-6826 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 153-1863 +title: Junior Product Development Fellow +userPassword: Password1 +uid: DesjarlU +givenName: Unreg +mail: DesjarlU@2daa2d54a3ef4729ab85003e87e24fc2.bitwarden.com +carLicense: KBRJKA +departmentNumber: 6714 +employeeType: Normal +homePhone: +1 818 810-3974 +initials: U. D. +mobile: +1 818 554-9716 +pager: +1 818 493-2870 +roomNumber: 9959 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Student Center,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Student Center +sn: Center +description: This is Student Center's description +facsimileTelephoneNumber: +1 206 192-8833 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 201-4792 +title: Associate Product Testing Developer +userPassword: Password1 +uid: CenterS +givenName: Student +mail: CenterS@554afdc240874cc085face3f95650c9c.bitwarden.com +carLicense: 3JTI2Y +departmentNumber: 8807 +employeeType: Employee +homePhone: +1 206 113-9560 +initials: S. C. +mobile: +1 206 254-9113 +pager: +1 206 951-9533 +roomNumber: 9421 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jillana Cusick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jillana Cusick +sn: Cusick +description: This is Jillana Cusick's description +facsimileTelephoneNumber: +1 804 358-3028 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 732-2909 +title: Chief Product Testing President +userPassword: Password1 +uid: CusickJ +givenName: Jillana +mail: CusickJ@5464c7892e2c49b9ab8b77fcfa248401.bitwarden.com +carLicense: JK1DQG +departmentNumber: 8182 +employeeType: Employee +homePhone: +1 804 777-2299 +initials: J. C. +mobile: +1 804 763-9966 +pager: +1 804 476-8508 +roomNumber: 9633 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChiKeung Matton +sn: Matton +description: This is ChiKeung Matton's description +facsimileTelephoneNumber: +1 408 759-2443 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 408 694-2996 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: MattonC +givenName: ChiKeung +mail: MattonC@4ffdbcbdfbba4f78b2cb0e4b52273909.bitwarden.com +carLicense: NU2WYF +departmentNumber: 6456 +employeeType: Normal +homePhone: +1 408 893-8011 +initials: C. M. +mobile: +1 408 977-9150 +pager: +1 408 717-7911 +roomNumber: 9890 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Edmund Caine,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edmund Caine +sn: Caine +description: This is Edmund Caine's description +facsimileTelephoneNumber: +1 408 759-2591 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 375-1234 +title: Chief Janitorial Punk +userPassword: Password1 +uid: CaineE +givenName: Edmund +mail: CaineE@1fa19cc59b0a4b048ab223f06dc01275.bitwarden.com +carLicense: IPTBAD +departmentNumber: 3948 +employeeType: Employee +homePhone: +1 408 925-6036 +initials: E. C. +mobile: +1 408 427-5625 +pager: +1 408 243-5009 +roomNumber: 8473 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elaine Ketsler +sn: Ketsler +description: This is Elaine Ketsler's description +facsimileTelephoneNumber: +1 818 605-5594 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 654-8184 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: KetslerE +givenName: Elaine +mail: KetslerE@df756e7ca37d42aaab0cfecdbe1dbcdc.bitwarden.com +carLicense: W3MJVD +departmentNumber: 8302 +employeeType: Employee +homePhone: +1 818 985-3632 +initials: E. K. +mobile: +1 818 757-1625 +pager: +1 818 467-4941 +roomNumber: 8385 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lawrence Rajczi +sn: Rajczi +description: This is Lawrence Rajczi's description +facsimileTelephoneNumber: +1 415 822-4918 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 113-4836 +title: Associate Product Development Technician +userPassword: Password1 +uid: RajcziL +givenName: Lawrence +mail: RajcziL@a7efbad4dbbd458699231bf651e29d1b.bitwarden.com +carLicense: RY3KWK +departmentNumber: 7855 +employeeType: Contract +homePhone: +1 415 483-9336 +initials: L. R. +mobile: +1 415 351-8256 +pager: +1 415 354-9941 +roomNumber: 9541 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fleur Dosanjh +sn: Dosanjh +description: This is Fleur Dosanjh's description +facsimileTelephoneNumber: +1 804 649-7393 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 197-6651 +title: Chief Payroll Dictator +userPassword: Password1 +uid: DosanjhF +givenName: Fleur +mail: DosanjhF@c2b132c5eea24821b75062bcddc065ce.bitwarden.com +carLicense: SKBO0A +departmentNumber: 8424 +employeeType: Contract +homePhone: +1 804 841-9388 +initials: F. D. +mobile: +1 804 318-4911 +pager: +1 804 531-1066 +roomNumber: 9745 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Faith Langenberg,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faith Langenberg +sn: Langenberg +description: This is Faith Langenberg's description +facsimileTelephoneNumber: +1 206 851-4802 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 135-4474 +title: Chief Product Development Manager +userPassword: Password1 +uid: LangenbF +givenName: Faith +mail: LangenbF@25309a8b2a9a4469a8c716ccd88d0aa6.bitwarden.com +carLicense: S4KKPH +departmentNumber: 4665 +employeeType: Employee +homePhone: +1 206 885-1954 +initials: F. L. +mobile: +1 206 556-7119 +pager: +1 206 650-4881 +roomNumber: 9145 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gussi Zisu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gussi Zisu +sn: Zisu +description: This is Gussi Zisu's description +facsimileTelephoneNumber: +1 206 602-2022 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 206 673-5560 +title: Chief Product Development Grunt +userPassword: Password1 +uid: ZisuG +givenName: Gussi +mail: ZisuG@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com +carLicense: OJJ5V4 +departmentNumber: 8979 +employeeType: Employee +homePhone: +1 206 839-5655 +initials: G. Z. +mobile: +1 206 868-4417 +pager: +1 206 982-9653 +roomNumber: 8075 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Enrica Scss,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Enrica Scss +sn: Scss +description: This is Enrica Scss's description +facsimileTelephoneNumber: +1 818 548-6818 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 923-8164 +title: Master Human Resources Architect +userPassword: Password1 +uid: ScssE +givenName: Enrica +mail: ScssE@8dadc7ef65624c618ad03f0f74792b58.bitwarden.com +carLicense: FEGVRF +departmentNumber: 1578 +employeeType: Employee +homePhone: +1 818 991-6495 +initials: E. S. +mobile: +1 818 414-5570 +pager: +1 818 470-9418 +roomNumber: 8843 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Franklin Mahlig,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franklin Mahlig +sn: Mahlig +description: This is Franklin Mahlig's description +facsimileTelephoneNumber: +1 408 904-6096 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 408 758-7642 +title: Chief Payroll Dictator +userPassword: Password1 +uid: MahligF +givenName: Franklin +mail: MahligF@fa39eb6119174bbca1d9160100211484.bitwarden.com +carLicense: MHOCDQ +departmentNumber: 6243 +employeeType: Employee +homePhone: +1 408 447-5346 +initials: F. M. +mobile: +1 408 121-4799 +pager: +1 408 648-4108 +roomNumber: 8009 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hazem Doerksen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hazem Doerksen +sn: Doerksen +description: This is Hazem Doerksen's description +facsimileTelephoneNumber: +1 213 282-9697 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 967-1567 +title: Associate Management Sales Rep +userPassword: Password1 +uid: DoerkseH +givenName: Hazem +mail: DoerkseH@0c71a55b89b94698aa504239bb77212e.bitwarden.com +carLicense: EYDVJU +departmentNumber: 1670 +employeeType: Contract +homePhone: +1 213 742-4332 +initials: H. D. +mobile: +1 213 726-3681 +pager: +1 213 586-6462 +roomNumber: 9200 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sabra Williams,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabra Williams +sn: Williams +description: This is Sabra Williams's description +facsimileTelephoneNumber: +1 804 709-2794 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 789-2848 +title: Master Payroll Writer +userPassword: Password1 +uid: WilliamS +givenName: Sabra +mail: WilliamS@dbff573db07a4ff3be645ffc89fde555.bitwarden.com +carLicense: C2K6GC +departmentNumber: 1522 +employeeType: Employee +homePhone: +1 804 672-2862 +initials: S. W. +mobile: +1 804 989-4025 +pager: +1 804 990-6449 +roomNumber: 9734 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Des Terrell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Des Terrell +sn: Terrell +description: This is Des Terrell's description +facsimileTelephoneNumber: +1 408 381-4126 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 855-1645 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: TerrellD +givenName: Des +mail: TerrellD@9bfb2ce2091b4362a561113661f40d4b.bitwarden.com +carLicense: D385LH +departmentNumber: 9360 +employeeType: Employee +homePhone: +1 408 839-6032 +initials: D. T. +mobile: +1 408 211-9194 +pager: +1 408 403-3245 +roomNumber: 9049 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jolene Casey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolene Casey +sn: Casey +description: This is Jolene Casey's description +facsimileTelephoneNumber: +1 408 730-5272 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 186-3478 +title: Junior Product Development Visionary +userPassword: Password1 +uid: CaseyJ +givenName: Jolene +mail: CaseyJ@9b70e886a18d422fa3404374b5a9613c.bitwarden.com +carLicense: P3XFMU +departmentNumber: 3437 +employeeType: Contract +homePhone: +1 408 811-2591 +initials: J. C. +mobile: +1 408 604-6117 +pager: +1 408 398-8259 +roomNumber: 8665 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karilynn Dekeyser,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karilynn Dekeyser +sn: Dekeyser +description: This is Karilynn Dekeyser's description +facsimileTelephoneNumber: +1 415 973-1391 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 183-1833 +title: Supreme Management Admin +userPassword: Password1 +uid: DekeyseK +givenName: Karilynn +mail: DekeyseK@87ac1189e97646f890363efe4db63ec0.bitwarden.com +carLicense: 5HVWHP +departmentNumber: 1338 +employeeType: Normal +homePhone: +1 415 954-1700 +initials: K. D. +mobile: +1 415 237-1060 +pager: +1 415 652-2088 +roomNumber: 8904 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gaal Gach,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaal Gach +sn: Gach +description: This is Gaal Gach's description +facsimileTelephoneNumber: +1 408 828-7370 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 635-5244 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: GachG +givenName: Gaal +mail: GachG@f3c670844ee04d96918bc7abde299f48.bitwarden.com +carLicense: 9A9FW3 +departmentNumber: 8733 +employeeType: Contract +homePhone: +1 408 668-4571 +initials: G. G. +mobile: +1 408 245-7375 +pager: +1 408 993-2771 +roomNumber: 9727 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelia Bianchi +sn: Bianchi +description: This is Shelia Bianchi's description +facsimileTelephoneNumber: +1 213 461-5974 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 640-3684 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: BianchiS +givenName: Shelia +mail: BianchiS@52d447bfc2464a51a20925b35098fffa.bitwarden.com +carLicense: VGWP4Q +departmentNumber: 8044 +employeeType: Employee +homePhone: +1 213 787-5188 +initials: S. B. +mobile: +1 213 802-1022 +pager: +1 213 916-3186 +roomNumber: 8942 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Emory Davalo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emory Davalo +sn: Davalo +description: This is Emory Davalo's description +facsimileTelephoneNumber: +1 804 742-4912 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 177-3552 +title: Chief Management Stooge +userPassword: Password1 +uid: DavaloE +givenName: Emory +mail: DavaloE@38889c54d4b943c0b9fc26641a496258.bitwarden.com +carLicense: 3Q1TWL +departmentNumber: 6721 +employeeType: Normal +homePhone: +1 804 725-5108 +initials: E. D. +mobile: +1 804 370-3571 +pager: +1 804 617-4531 +roomNumber: 8251 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leia Boccali,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leia Boccali +sn: Boccali +description: This is Leia Boccali's description +facsimileTelephoneNumber: +1 818 169-6855 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 221-8874 +title: Supreme Management Fellow +userPassword: Password1 +uid: BoccaliL +givenName: Leia +mail: BoccaliL@c322231add6444d08c5c332c0290fe75.bitwarden.com +carLicense: VSM611 +departmentNumber: 4834 +employeeType: Contract +homePhone: +1 818 995-7730 +initials: L. B. +mobile: +1 818 858-9881 +pager: +1 818 520-9179 +roomNumber: 8983 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hollie Redding,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hollie Redding +sn: Redding +description: This is Hollie Redding's description +facsimileTelephoneNumber: +1 804 734-1936 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 775-6665 +title: Master Payroll Grunt +userPassword: Password1 +uid: ReddingH +givenName: Hollie +mail: ReddingH@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com +carLicense: KNW5PL +departmentNumber: 4837 +employeeType: Employee +homePhone: +1 804 487-3915 +initials: H. R. +mobile: +1 804 288-5842 +pager: +1 804 977-4015 +roomNumber: 9148 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maurita Hewett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurita Hewett +sn: Hewett +description: This is Maurita Hewett's description +facsimileTelephoneNumber: +1 804 699-7799 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 400-7023 +title: Master Human Resources Vice President +userPassword: Password1 +uid: HewettM +givenName: Maurita +mail: HewettM@3b31b1e22b674d48829733c162895a88.bitwarden.com +carLicense: E3CF4Q +departmentNumber: 3313 +employeeType: Normal +homePhone: +1 804 643-1197 +initials: M. H. +mobile: +1 804 801-4038 +pager: +1 804 596-1419 +roomNumber: 8189 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alberta Popel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alberta Popel +sn: Popel +description: This is Alberta Popel's description +facsimileTelephoneNumber: +1 415 469-4472 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 647-7492 +title: Chief Product Testing President +userPassword: Password1 +uid: PopelA +givenName: Alberta +mail: PopelA@4d42e606140043c2b9dd8fa49a74f077.bitwarden.com +carLicense: R5WYQP +departmentNumber: 3928 +employeeType: Contract +homePhone: +1 415 618-1796 +initials: A. P. +mobile: +1 415 516-1161 +pager: +1 415 348-3392 +roomNumber: 8625 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorilyn Iribarren +sn: Iribarren +description: This is Lorilyn Iribarren's description +facsimileTelephoneNumber: +1 408 893-3507 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 561-6372 +title: Master Peons Evangelist +userPassword: Password1 +uid: IribarrL +givenName: Lorilyn +mail: IribarrL@3e32ccd0c8a847b6ac8fb9c09f485fe3.bitwarden.com +carLicense: 1KQIFO +departmentNumber: 1567 +employeeType: Contract +homePhone: +1 408 693-7462 +initials: L. I. +mobile: +1 408 251-7516 +pager: +1 408 385-9451 +roomNumber: 8319 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Warden Norgaard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Warden Norgaard +sn: Norgaard +description: This is Warden Norgaard's description +facsimileTelephoneNumber: +1 510 330-9980 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 162-6662 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: NorgaarW +givenName: Warden +mail: NorgaarW@56a9fc98293a421ebffe47b36941f797.bitwarden.com +carLicense: XB8F6C +departmentNumber: 6951 +employeeType: Normal +homePhone: +1 510 665-4763 +initials: W. N. +mobile: +1 510 150-6472 +pager: +1 510 556-5023 +roomNumber: 9483 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherilynn Schwab +sn: Schwab +description: This is Cherilynn Schwab's description +facsimileTelephoneNumber: +1 213 773-3271 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 206-2043 +title: Associate Administrative Punk +userPassword: Password1 +uid: SchwabC +givenName: Cherilynn +mail: SchwabC@1aebb083de1f400e95541f63da23f2c1.bitwarden.com +carLicense: EMNU47 +departmentNumber: 9577 +employeeType: Normal +homePhone: +1 213 356-9978 +initials: C. S. +mobile: +1 213 303-5726 +pager: +1 213 444-7832 +roomNumber: 8929 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Stephine Este,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephine Este +sn: Este +description: This is Stephine Este's description +facsimileTelephoneNumber: +1 510 958-9793 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 129-9940 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: EsteS +givenName: Stephine +mail: EsteS@cdc522ed20cd44a189467c4e7a11e69b.bitwarden.com +carLicense: M9OFNS +departmentNumber: 1024 +employeeType: Normal +homePhone: +1 510 456-6827 +initials: S. E. +mobile: +1 510 553-8904 +pager: +1 510 616-1098 +roomNumber: 8023 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenny Hunsberger +sn: Hunsberger +description: This is Jenny Hunsberger's description +facsimileTelephoneNumber: +1 206 328-4399 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 740-9207 +title: Junior Human Resources Madonna +userPassword: Password1 +uid: HunsberJ +givenName: Jenny +mail: HunsberJ@158d3f3fe926431185097653519b63f6.bitwarden.com +carLicense: YV2QQ5 +departmentNumber: 9056 +employeeType: Normal +homePhone: +1 206 240-4158 +initials: J. H. +mobile: +1 206 547-4614 +pager: +1 206 892-5650 +roomNumber: 9432 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Allx Vezeau,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allx Vezeau +sn: Vezeau +description: This is Allx Vezeau's description +facsimileTelephoneNumber: +1 213 514-9164 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 364-1859 +title: Master Product Development Manager +userPassword: Password1 +uid: VezeauA +givenName: Allx +mail: VezeauA@85300bcc110a498eb3ba9f0540413134.bitwarden.com +carLicense: 29U099 +departmentNumber: 5941 +employeeType: Employee +homePhone: +1 213 441-5378 +initials: A. V. +mobile: +1 213 836-6645 +pager: +1 213 112-8411 +roomNumber: 9675 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristen Tattenbaum +sn: Tattenbaum +description: This is Kristen Tattenbaum's description +facsimileTelephoneNumber: +1 213 690-7509 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 357-3455 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: TattenbK +givenName: Kristen +mail: TattenbK@9beb3a1b2fdf4217931814a85ad3b3c8.bitwarden.com +carLicense: TQRDL2 +departmentNumber: 4199 +employeeType: Contract +homePhone: +1 213 171-1682 +initials: K. T. +mobile: +1 213 153-7953 +pager: +1 213 153-9273 +roomNumber: 9655 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hattie Offers,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hattie Offers +sn: Offers +description: This is Hattie Offers's description +facsimileTelephoneNumber: +1 206 655-7757 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 119-3079 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: OffersH +givenName: Hattie +mail: OffersH@0db8d6bb53fc45408829aecc391083c0.bitwarden.com +carLicense: 7984FF +departmentNumber: 1959 +employeeType: Employee +homePhone: +1 206 540-9515 +initials: H. O. +mobile: +1 206 552-7698 +pager: +1 206 286-2109 +roomNumber: 8421 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Priti Stowe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Priti Stowe +sn: Stowe +description: This is Priti Stowe's description +facsimileTelephoneNumber: +1 804 274-7003 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 757-2419 +title: Master Product Testing Consultant +userPassword: Password1 +uid: StoweP +givenName: Priti +mail: StoweP@22b03905699c4e05b21e937a3135b87c.bitwarden.com +carLicense: AL3VLT +departmentNumber: 1560 +employeeType: Employee +homePhone: +1 804 194-6813 +initials: P. S. +mobile: +1 804 428-9771 +pager: +1 804 684-6226 +roomNumber: 8681 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antonietta Sawchuk +sn: Sawchuk +description: This is Antonietta Sawchuk's description +facsimileTelephoneNumber: +1 408 652-5778 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 522-8677 +title: Associate Payroll Stooge +userPassword: Password1 +uid: SawchukA +givenName: Antonietta +mail: SawchukA@5d8cc64a505e4795adb2db74fb44a1cf.bitwarden.com +carLicense: N01I72 +departmentNumber: 9647 +employeeType: Employee +homePhone: +1 408 295-6642 +initials: A. S. +mobile: +1 408 731-1891 +pager: +1 408 720-5693 +roomNumber: 8806 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tilly Lienemann,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilly Lienemann +sn: Lienemann +description: This is Tilly Lienemann's description +facsimileTelephoneNumber: +1 408 282-7240 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 408 365-8070 +title: Master Product Development Janitor +userPassword: Password1 +uid: LienemaT +givenName: Tilly +mail: LienemaT@2701f21728624e23b32e7e4a717079a5.bitwarden.com +carLicense: DF5RLY +departmentNumber: 9001 +employeeType: Normal +homePhone: +1 408 970-6134 +initials: T. L. +mobile: +1 408 956-5142 +pager: +1 408 607-6126 +roomNumber: 9878 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Constantina Totaro,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constantina Totaro +sn: Totaro +description: This is Constantina Totaro's description +facsimileTelephoneNumber: +1 510 113-4159 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 510 492-4540 +title: Chief Product Development Punk +userPassword: Password1 +uid: TotaroC +givenName: Constantina +mail: TotaroC@021252a973814ed5ba107ac123b1e8a2.bitwarden.com +carLicense: T0EO38 +departmentNumber: 4601 +employeeType: Employee +homePhone: +1 510 991-9636 +initials: C. T. +mobile: +1 510 300-8450 +pager: +1 510 405-5025 +roomNumber: 8879 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bendite Basser,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bendite Basser +sn: Basser +description: This is Bendite Basser's description +facsimileTelephoneNumber: +1 804 382-7793 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 582-3461 +title: Master Management Engineer +userPassword: Password1 +uid: BasserB +givenName: Bendite +mail: BasserB@d3b588680db34a60a238a39048e01e24.bitwarden.com +carLicense: Q4KBDQ +departmentNumber: 7670 +employeeType: Employee +homePhone: +1 804 428-3497 +initials: B. B. +mobile: +1 804 503-1244 +pager: +1 804 373-5128 +roomNumber: 8832 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Trish Ettridge,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trish Ettridge +sn: Ettridge +description: This is Trish Ettridge's description +facsimileTelephoneNumber: +1 213 732-6960 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 531-9784 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: EttridgT +givenName: Trish +mail: EttridgT@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com +carLicense: UAVFHK +departmentNumber: 6921 +employeeType: Contract +homePhone: +1 213 625-7696 +initials: T. E. +mobile: +1 213 696-9933 +pager: +1 213 998-1819 +roomNumber: 9024 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leola Musca,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leola Musca +sn: Musca +description: This is Leola Musca's description +facsimileTelephoneNumber: +1 213 491-3151 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 610-2605 +title: Chief Peons Fellow +userPassword: Password1 +uid: MuscaL +givenName: Leola +mail: MuscaL@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com +carLicense: 1IXIRY +departmentNumber: 2505 +employeeType: Normal +homePhone: +1 213 663-1060 +initials: L. M. +mobile: +1 213 286-7392 +pager: +1 213 819-5506 +roomNumber: 9301 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Oral Priestley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oral Priestley +sn: Priestley +description: This is Oral Priestley's description +facsimileTelephoneNumber: +1 408 914-2906 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 714-2299 +title: Supreme Peons Mascot +userPassword: Password1 +uid: PriestlO +givenName: Oral +mail: PriestlO@d2ecbc224647418fad2b4f9f972875ba.bitwarden.com +carLicense: OGQ4BL +departmentNumber: 2385 +employeeType: Normal +homePhone: +1 408 135-1675 +initials: O. P. +mobile: +1 408 960-1613 +pager: +1 408 747-5152 +roomNumber: 8188 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yonik Yurach,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yonik Yurach +sn: Yurach +description: This is Yonik Yurach's description +facsimileTelephoneNumber: +1 408 557-8051 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 408 986-4140 +title: Supreme Product Testing Manager +userPassword: Password1 +uid: YurachY +givenName: Yonik +mail: YurachY@91c2f03d5f5f46289c8711d8060fde6a.bitwarden.com +carLicense: 8FVEXN +departmentNumber: 2365 +employeeType: Normal +homePhone: +1 408 909-9864 +initials: Y. Y. +mobile: +1 408 203-4417 +pager: +1 408 840-4691 +roomNumber: 9025 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hudai Weare,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hudai Weare +sn: Weare +description: This is Hudai Weare's description +facsimileTelephoneNumber: +1 213 363-5898 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 680-3753 +title: Associate Peons Director +userPassword: Password1 +uid: WeareH +givenName: Hudai +mail: WeareH@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com +carLicense: G0UAYQ +departmentNumber: 9366 +employeeType: Contract +homePhone: +1 213 263-5639 +initials: H. W. +mobile: +1 213 977-3770 +pager: +1 213 985-8592 +roomNumber: 9580 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Miguela Brodersen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miguela Brodersen +sn: Brodersen +description: This is Miguela Brodersen's description +facsimileTelephoneNumber: +1 415 740-3209 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 912-6568 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: BrodersM +givenName: Miguela +mail: BrodersM@6a78994653434b4c8f51f05c394987d3.bitwarden.com +carLicense: XT5N8B +departmentNumber: 2793 +employeeType: Employee +homePhone: +1 415 981-5030 +initials: M. B. +mobile: +1 415 961-6614 +pager: +1 415 671-4419 +roomNumber: 9995 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sohale Suomela,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sohale Suomela +sn: Suomela +description: This is Sohale Suomela's description +facsimileTelephoneNumber: +1 213 222-3187 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 833-6868 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: SuomelaS +givenName: Sohale +mail: SuomelaS@67c03444c05a42a3b6969db268f587ab.bitwarden.com +carLicense: U4NUBK +departmentNumber: 4379 +employeeType: Employee +homePhone: +1 213 730-8794 +initials: S. S. +mobile: +1 213 756-3598 +pager: +1 213 144-9851 +roomNumber: 9893 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vijayalaks Beckham +sn: Beckham +description: This is Vijayalaks Beckham's description +facsimileTelephoneNumber: +1 408 591-4606 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 620-3736 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: BeckhamV +givenName: Vijayalaks +mail: BeckhamV@5dfbfc6402474d4a84deb330c0f4315f.bitwarden.com +carLicense: AO3CGM +departmentNumber: 4486 +employeeType: Normal +homePhone: +1 408 423-9216 +initials: V. B. +mobile: +1 408 344-8740 +pager: +1 408 577-4599 +roomNumber: 8713 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yonik Murison,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yonik Murison +sn: Murison +description: This is Yonik Murison's description +facsimileTelephoneNumber: +1 408 804-6289 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 515-4649 +title: Supreme Management Manager +userPassword: Password1 +uid: MurisonY +givenName: Yonik +mail: MurisonY@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com +carLicense: XTFP3O +departmentNumber: 6940 +employeeType: Normal +homePhone: +1 408 955-7910 +initials: Y. M. +mobile: +1 408 476-8765 +pager: +1 408 858-9614 +roomNumber: 8211 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Delora Grund,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delora Grund +sn: Grund +description: This is Delora Grund's description +facsimileTelephoneNumber: +1 804 559-3008 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 583-1854 +title: Master Payroll Janitor +userPassword: Password1 +uid: GrundD +givenName: Delora +mail: GrundD@cf4fe07ebe1a44aab01df6b77e2a6602.bitwarden.com +carLicense: U7S2T5 +departmentNumber: 5332 +employeeType: Normal +homePhone: +1 804 691-5163 +initials: D. G. +mobile: +1 804 402-3640 +pager: +1 804 946-5660 +roomNumber: 8633 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mietek Humes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mietek Humes +sn: Humes +description: This is Mietek Humes's description +facsimileTelephoneNumber: +1 415 574-5087 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 415 409-9155 +title: Master Human Resources Fellow +userPassword: Password1 +uid: HumesM +givenName: Mietek +mail: HumesM@10d775dcf33f4a8a85529178af9b9387.bitwarden.com +carLicense: D9FO85 +departmentNumber: 8331 +employeeType: Employee +homePhone: +1 415 619-4190 +initials: M. H. +mobile: +1 415 835-5969 +pager: +1 415 828-6608 +roomNumber: 8656 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lili Cozzi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lili Cozzi +sn: Cozzi +description: This is Lili Cozzi's description +facsimileTelephoneNumber: +1 804 198-3135 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 957-6803 +title: Associate Peons Architect +userPassword: Password1 +uid: CozziL +givenName: Lili +mail: CozziL@aabaf1b2cc7f4426bf4762a10375cf8d.bitwarden.com +carLicense: 1FFYGJ +departmentNumber: 2113 +employeeType: Contract +homePhone: +1 804 974-9200 +initials: L. C. +mobile: +1 804 343-7463 +pager: +1 804 659-4249 +roomNumber: 9093 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mil Badmington,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mil Badmington +sn: Badmington +description: This is Mil Badmington's description +facsimileTelephoneNumber: +1 818 111-5275 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 111-8099 +title: Master Administrative Punk +userPassword: Password1 +uid: BadmingM +givenName: Mil +mail: BadmingM@38d6239d446040c7892f72bde901e5dc.bitwarden.com +carLicense: XFM8VQ +departmentNumber: 7137 +employeeType: Employee +homePhone: +1 818 871-1578 +initials: M. B. +mobile: +1 818 616-6097 +pager: +1 818 956-2016 +roomNumber: 9313 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kittie Chapman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kittie Chapman +sn: Chapman +description: This is Kittie Chapman's description +facsimileTelephoneNumber: +1 213 102-7592 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 490-1835 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: ChapmanK +givenName: Kittie +mail: ChapmanK@a6ec4676b0ad44f28916d133e3a83b4d.bitwarden.com +carLicense: 3RDUXO +departmentNumber: 4422 +employeeType: Contract +homePhone: +1 213 453-3674 +initials: K. C. +mobile: +1 213 961-4683 +pager: +1 213 188-6184 +roomNumber: 9580 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Las Bongers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Las Bongers +sn: Bongers +description: This is Las Bongers's description +facsimileTelephoneNumber: +1 818 701-9077 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 818 555-4052 +title: Chief Payroll Janitor +userPassword: Password1 +uid: BongersL +givenName: Las +mail: BongersL@fa6c45f2cf394efe80e833f5a6b3151c.bitwarden.com +carLicense: M9PBCG +departmentNumber: 5782 +employeeType: Normal +homePhone: +1 818 717-9826 +initials: L. B. +mobile: +1 818 943-6184 +pager: +1 818 656-2324 +roomNumber: 9002 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ramez Beisel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramez Beisel +sn: Beisel +description: This is Ramez Beisel's description +facsimileTelephoneNumber: +1 804 553-6512 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 804 626-7328 +title: Associate Administrative Developer +userPassword: Password1 +uid: BeiselR +givenName: Ramez +mail: BeiselR@6ecbd725f2a04ad095c3bc8afaa5366e.bitwarden.com +carLicense: A71MGO +departmentNumber: 5128 +employeeType: Employee +homePhone: +1 804 513-7694 +initials: R. B. +mobile: +1 804 274-6458 +pager: +1 804 581-6706 +roomNumber: 9391 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lisabeth Burns +sn: Burns +description: This is Lisabeth Burns's description +facsimileTelephoneNumber: +1 510 234-1411 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 869-3308 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: BurnsL +givenName: Lisabeth +mail: BurnsL@060ddcf2c5744483943863ab0571b0e9.bitwarden.com +carLicense: QDAOFI +departmentNumber: 7306 +employeeType: Contract +homePhone: +1 510 653-2340 +initials: L. B. +mobile: +1 510 460-7330 +pager: +1 510 250-7660 +roomNumber: 8136 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gerladina Miello,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerladina Miello +sn: Miello +description: This is Gerladina Miello's description +facsimileTelephoneNumber: +1 804 646-8651 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 362-6854 +title: Master Human Resources Vice President +userPassword: Password1 +uid: MielloG +givenName: Gerladina +mail: MielloG@2347921fc32f42b59e1beb7c60e45e2c.bitwarden.com +carLicense: X3VF3J +departmentNumber: 7762 +employeeType: Normal +homePhone: +1 804 133-7141 +initials: G. M. +mobile: +1 804 276-9390 +pager: +1 804 704-5134 +roomNumber: 9768 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hernan Aversa,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hernan Aversa +sn: Aversa +description: This is Hernan Aversa's description +facsimileTelephoneNumber: +1 206 274-4299 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 615-6745 +title: Chief Human Resources Admin +userPassword: Password1 +uid: AversaH +givenName: Hernan +mail: AversaH@fac57f1f10364a88aa5ab37aeecbc8a1.bitwarden.com +carLicense: NIIM7Q +departmentNumber: 7883 +employeeType: Employee +homePhone: +1 206 717-6837 +initials: H. A. +mobile: +1 206 972-2239 +pager: +1 206 398-4287 +roomNumber: 9372 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rozanne Botting,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozanne Botting +sn: Botting +description: This is Rozanne Botting's description +facsimileTelephoneNumber: +1 510 501-5114 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 262-3397 +title: Junior Product Testing Assistant +userPassword: Password1 +uid: BottingR +givenName: Rozanne +mail: BottingR@22cb224a80984684b19d5e903a9e8f92.bitwarden.com +carLicense: KSQSFF +departmentNumber: 7364 +employeeType: Contract +homePhone: +1 510 203-4478 +initials: R. B. +mobile: +1 510 491-5823 +pager: +1 510 785-8421 +roomNumber: 9429 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ende Pietropaolo +sn: Pietropaolo +description: This is Ende Pietropaolo's description +facsimileTelephoneNumber: +1 206 135-8856 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 455-9478 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: PietropE +givenName: Ende +mail: PietropE@5fcb291282204187a9874bd0f7e51920.bitwarden.com +carLicense: NOKEJH +departmentNumber: 9850 +employeeType: Normal +homePhone: +1 206 156-1089 +initials: E. P. +mobile: +1 206 779-9308 +pager: +1 206 110-8050 +roomNumber: 9987 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Amandy Ganness,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amandy Ganness +sn: Ganness +description: This is Amandy Ganness's description +facsimileTelephoneNumber: +1 510 518-5731 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 909-6036 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: GannessA +givenName: Amandy +mail: GannessA@0896302a59e8422abf0d271687a03fd4.bitwarden.com +carLicense: 6YG1YY +departmentNumber: 9100 +employeeType: Contract +homePhone: +1 510 721-7896 +initials: A. G. +mobile: +1 510 544-9853 +pager: +1 510 235-8895 +roomNumber: 8419 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jasmina Lorenc +sn: Lorenc +description: This is Jasmina Lorenc's description +facsimileTelephoneNumber: +1 804 894-6214 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 612-9627 +title: Associate Product Development Manager +userPassword: Password1 +uid: LorencJ +givenName: Jasmina +mail: LorencJ@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com +carLicense: WKRBCL +departmentNumber: 2715 +employeeType: Employee +homePhone: +1 804 333-5487 +initials: J. L. +mobile: +1 804 626-2201 +pager: +1 804 179-6329 +roomNumber: 8622 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lisabeth Joll,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lisabeth Joll +sn: Joll +description: This is Lisabeth Joll's description +facsimileTelephoneNumber: +1 804 498-2802 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 560-1999 +title: Associate Administrative Vice President +userPassword: Password1 +uid: JollL +givenName: Lisabeth +mail: JollL@a214e2b7ea354ade82afd96303921437.bitwarden.com +carLicense: IOOUDN +departmentNumber: 9736 +employeeType: Contract +homePhone: +1 804 987-4094 +initials: L. J. +mobile: +1 804 507-1562 +pager: +1 804 910-1124 +roomNumber: 8231 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hillary Pintado,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hillary Pintado +sn: Pintado +description: This is Hillary Pintado's description +facsimileTelephoneNumber: +1 213 584-9722 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 953-6595 +title: Associate Janitorial Technician +userPassword: Password1 +uid: PintadoH +givenName: Hillary +mail: PintadoH@9c3ffda5676446e88677016f51b0aafc.bitwarden.com +carLicense: C279LH +departmentNumber: 8768 +employeeType: Employee +homePhone: +1 213 265-1560 +initials: H. P. +mobile: +1 213 879-8332 +pager: +1 213 741-8945 +roomNumber: 8662 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nadean Fiorile,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nadean Fiorile +sn: Fiorile +description: This is Nadean Fiorile's description +facsimileTelephoneNumber: +1 818 306-2148 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 634-5016 +title: Master Management Developer +userPassword: Password1 +uid: FiorileN +givenName: Nadean +mail: FiorileN@67e1d92e08fe4a64be64c20e9ec9029c.bitwarden.com +carLicense: OVCAJY +departmentNumber: 2855 +employeeType: Contract +homePhone: +1 818 133-8216 +initials: N. F. +mobile: +1 818 569-1992 +pager: +1 818 723-3669 +roomNumber: 8718 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sohayla Ip,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sohayla Ip +sn: Ip +description: This is Sohayla Ip's description +facsimileTelephoneNumber: +1 206 793-5784 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 710-6260 +title: Master Product Development Assistant +userPassword: Password1 +uid: IpS +givenName: Sohayla +mail: IpS@6f419933f74e4397b4bf8d2ab48fbfaa.bitwarden.com +carLicense: ORCJKV +departmentNumber: 5789 +employeeType: Contract +homePhone: +1 206 686-9593 +initials: S. I. +mobile: +1 206 764-9741 +pager: +1 206 755-8914 +roomNumber: 9365 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ashley Seagle,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashley Seagle +sn: Seagle +description: This is Ashley Seagle's description +facsimileTelephoneNumber: +1 818 277-2488 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 818 213-6703 +title: Supreme Payroll Sales Rep +userPassword: Password1 +uid: SeagleA +givenName: Ashley +mail: SeagleA@404a4cf774b84260ad9c4cf63634551c.bitwarden.com +carLicense: CF9DDG +departmentNumber: 8911 +employeeType: Contract +homePhone: +1 818 134-6862 +initials: A. S. +mobile: +1 818 534-1199 +pager: +1 818 893-2635 +roomNumber: 8541 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Christoph Dwyer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christoph Dwyer +sn: Dwyer +description: This is Christoph Dwyer's description +facsimileTelephoneNumber: +1 408 107-8926 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 774-3917 +title: Master Product Development Visionary +userPassword: Password1 +uid: DwyerC +givenName: Christoph +mail: DwyerC@4cf65bbff1914896934f97301ec7a0ec.bitwarden.com +carLicense: PILVJS +departmentNumber: 1884 +employeeType: Employee +homePhone: +1 408 593-6019 +initials: C. D. +mobile: +1 408 623-7810 +pager: +1 408 372-5183 +roomNumber: 8899 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Minnesota Reich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minnesota Reich +sn: Reich +description: This is Minnesota Reich's description +facsimileTelephoneNumber: +1 415 518-7190 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 673-2213 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: ReichM +givenName: Minnesota +mail: ReichM@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com +carLicense: 512GQB +departmentNumber: 7732 +employeeType: Normal +homePhone: +1 415 455-8547 +initials: M. R. +mobile: +1 415 411-1972 +pager: +1 415 671-4203 +roomNumber: 8653 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Revkah Niebudek +sn: Niebudek +description: This is Revkah Niebudek's description +facsimileTelephoneNumber: +1 510 179-6695 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 981-3291 +title: Junior Human Resources Mascot +userPassword: Password1 +uid: NiebudeR +givenName: Revkah +mail: NiebudeR@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com +carLicense: NB9QQJ +departmentNumber: 9352 +employeeType: Contract +homePhone: +1 510 140-6288 +initials: R. N. +mobile: +1 510 915-2787 +pager: +1 510 250-1877 +roomNumber: 8952 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marilyn Godden,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marilyn Godden +sn: Godden +description: This is Marilyn Godden's description +facsimileTelephoneNumber: +1 415 877-9206 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 434-9938 +title: Chief Product Development Warrior +userPassword: Password1 +uid: GoddenM +givenName: Marilyn +mail: GoddenM@80ad4e27922841e2b293619d8459a898.bitwarden.com +carLicense: 4WWC94 +departmentNumber: 5720 +employeeType: Employee +homePhone: +1 415 304-3639 +initials: M. G. +mobile: +1 415 593-6133 +pager: +1 415 793-5528 +roomNumber: 9855 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Weiping Choynowska,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weiping Choynowska +sn: Choynowska +description: This is Weiping Choynowska's description +facsimileTelephoneNumber: +1 206 589-9853 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 525-7534 +title: Supreme Management Vice President +userPassword: Password1 +uid: ChoynowW +givenName: Weiping +mail: ChoynowW@7fc160edec22498a9b7f16af82b6aca4.bitwarden.com +carLicense: PJW2T5 +departmentNumber: 2325 +employeeType: Employee +homePhone: +1 206 911-3661 +initials: W. C. +mobile: +1 206 490-9293 +pager: +1 206 527-5519 +roomNumber: 9706 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karlen Pelz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlen Pelz +sn: Pelz +description: This is Karlen Pelz's description +facsimileTelephoneNumber: +1 213 116-2643 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 841-7794 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: PelzK +givenName: Karlen +mail: PelzK@7c3132e0c4a84c2d8ff786513bcac2d1.bitwarden.com +carLicense: V1WBCL +departmentNumber: 4017 +employeeType: Employee +homePhone: +1 213 773-9936 +initials: K. P. +mobile: +1 213 173-6406 +pager: +1 213 575-8342 +roomNumber: 8982 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mela Speers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mela Speers +sn: Speers +description: This is Mela Speers's description +facsimileTelephoneNumber: +1 804 360-9019 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 886-4478 +title: Junior Payroll Admin +userPassword: Password1 +uid: SpeersM +givenName: Mela +mail: SpeersM@3f93f60a8e804d55a6647c56c6c05eab.bitwarden.com +carLicense: YVTGTM +departmentNumber: 6874 +employeeType: Normal +homePhone: +1 804 850-5477 +initials: M. S. +mobile: +1 804 874-8241 +pager: +1 804 309-9189 +roomNumber: 9337 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=PierreHenri Oates,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PierreHenri Oates +sn: Oates +description: This is PierreHenri Oates's description +facsimileTelephoneNumber: +1 206 418-9410 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 206 644-3678 +title: Associate Payroll Figurehead +userPassword: Password1 +uid: OatesP +givenName: PierreHenri +mail: OatesP@234baafa6151436c9e90b2aa2617a7d2.bitwarden.com +carLicense: FQ7O7R +departmentNumber: 6571 +employeeType: Normal +homePhone: +1 206 375-7216 +initials: P. O. +mobile: +1 206 254-3639 +pager: +1 206 525-4873 +roomNumber: 8221 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ramon Metcalfe,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramon Metcalfe +sn: Metcalfe +description: This is Ramon Metcalfe's description +facsimileTelephoneNumber: +1 408 585-2572 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 377-4536 +title: Chief Management Madonna +userPassword: Password1 +uid: MetcalfR +givenName: Ramon +mail: MetcalfR@5e4e7d75e05b48bd8f2b694051e48b65.bitwarden.com +carLicense: F8D55L +departmentNumber: 2429 +employeeType: Normal +homePhone: +1 408 644-5440 +initials: R. M. +mobile: +1 408 778-6144 +pager: +1 408 532-4985 +roomNumber: 8187 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Domeniga Purohit,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Domeniga Purohit +sn: Purohit +description: This is Domeniga Purohit's description +facsimileTelephoneNumber: +1 415 179-8135 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 404-5042 +title: Chief Management Dictator +userPassword: Password1 +uid: PurohitD +givenName: Domeniga +mail: PurohitD@8581b4e4b4314f35bf0c5b0b1ae9f14c.bitwarden.com +carLicense: 24XQY1 +departmentNumber: 2948 +employeeType: Employee +homePhone: +1 415 159-8502 +initials: D. P. +mobile: +1 415 924-5427 +pager: +1 415 697-6088 +roomNumber: 8918 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Goldy Locke,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Goldy Locke +sn: Locke +description: This is Goldy Locke's description +facsimileTelephoneNumber: +1 415 540-8783 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 415 303-4459 +title: Master Janitorial Director +userPassword: Password1 +uid: LockeG +givenName: Goldy +mail: LockeG@6de130a8139a479abd748cccf12fccd5.bitwarden.com +carLicense: UT9YEB +departmentNumber: 9284 +employeeType: Employee +homePhone: +1 415 130-2805 +initials: G. L. +mobile: +1 415 865-4723 +pager: +1 415 382-1634 +roomNumber: 8029 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=PakJong Braginetz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PakJong Braginetz +sn: Braginetz +description: This is PakJong Braginetz's description +facsimileTelephoneNumber: +1 408 543-5262 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 615-2468 +title: Associate Payroll Sales Rep +userPassword: Password1 +uid: BragineP +givenName: PakJong +mail: BragineP@4c89cecd93aa4a6b8c3d033b43c13b92.bitwarden.com +carLicense: KQP5R7 +departmentNumber: 6631 +employeeType: Contract +homePhone: +1 408 921-5785 +initials: P. B. +mobile: +1 408 842-6352 +pager: +1 408 651-8501 +roomNumber: 9139 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hilde Miotla,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilde Miotla +sn: Miotla +description: This is Hilde Miotla's description +facsimileTelephoneNumber: +1 213 636-7683 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 213 765-6588 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: MiotlaH +givenName: Hilde +mail: MiotlaH@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com +carLicense: VYCS44 +departmentNumber: 1349 +employeeType: Employee +homePhone: +1 213 393-3543 +initials: H. M. +mobile: +1 213 823-5638 +pager: +1 213 239-2766 +roomNumber: 9989 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ning Spitzer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ning Spitzer +sn: Spitzer +description: This is Ning Spitzer's description +facsimileTelephoneNumber: +1 206 542-1498 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 381-4726 +title: Supreme Peons Dictator +userPassword: Password1 +uid: SpitzerN +givenName: Ning +mail: SpitzerN@a14bb54592f8410c82402fefd034b4c8.bitwarden.com +carLicense: 6MG2QA +departmentNumber: 6551 +employeeType: Employee +homePhone: +1 206 937-4312 +initials: N. S. +mobile: +1 206 941-3798 +pager: +1 206 487-6976 +roomNumber: 9176 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marylee Eberle,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marylee Eberle +sn: Eberle +description: This is Marylee Eberle's description +facsimileTelephoneNumber: +1 408 740-3446 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 992-1664 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: EberleM +givenName: Marylee +mail: EberleM@0a1d0b108c684b97b7244cb6b1664626.bitwarden.com +carLicense: 296OJU +departmentNumber: 1666 +employeeType: Employee +homePhone: +1 408 471-5852 +initials: M. E. +mobile: +1 408 193-7945 +pager: +1 408 412-5961 +roomNumber: 8623 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaylee Chernetsky +sn: Chernetsky +description: This is Kaylee Chernetsky's description +facsimileTelephoneNumber: +1 213 332-7078 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 614-4158 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: ChernetK +givenName: Kaylee +mail: ChernetK@304e0df786624e098a2c5b1fb73a0e52.bitwarden.com +carLicense: TLDQUD +departmentNumber: 4082 +employeeType: Normal +homePhone: +1 213 536-9704 +initials: K. C. +mobile: +1 213 356-2718 +pager: +1 213 578-1073 +roomNumber: 9718 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shalne Monfre,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shalne Monfre +sn: Monfre +description: This is Shalne Monfre's description +facsimileTelephoneNumber: +1 213 589-4061 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 322-6746 +title: Associate Product Testing Madonna +userPassword: Password1 +uid: MonfreS +givenName: Shalne +mail: MonfreS@0477f7500cad42ceb4af441ae4e4ca2d.bitwarden.com +carLicense: LCXDWY +departmentNumber: 8332 +employeeType: Employee +homePhone: +1 213 528-1607 +initials: S. M. +mobile: +1 213 831-3733 +pager: +1 213 703-4131 +roomNumber: 9370 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sammie Wickie,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sammie Wickie +sn: Wickie +description: This is Sammie Wickie's description +facsimileTelephoneNumber: +1 213 489-9076 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 101-4710 +title: Associate Administrative Engineer +userPassword: Password1 +uid: WickieS +givenName: Sammie +mail: WickieS@a3e3d4a60d05428db3e529e7a841183c.bitwarden.com +carLicense: GHVGT7 +departmentNumber: 6594 +employeeType: Normal +homePhone: +1 213 542-3003 +initials: S. W. +mobile: +1 213 462-1381 +pager: +1 213 841-1291 +roomNumber: 8073 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Teresita Vonderscher,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teresita Vonderscher +sn: Vonderscher +description: This is Teresita Vonderscher's description +facsimileTelephoneNumber: +1 415 784-1208 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 174-3615 +title: Chief Peons Czar +userPassword: Password1 +uid: VondersT +givenName: Teresita +mail: VondersT@c42c43aebed74617b6cc598e2b876357.bitwarden.com +carLicense: XREE6J +departmentNumber: 5004 +employeeType: Normal +homePhone: +1 415 905-8763 +initials: T. V. +mobile: +1 415 343-1024 +pager: +1 415 590-7353 +roomNumber: 9331 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Derek Boase,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Derek Boase +sn: Boase +description: This is Derek Boase's description +facsimileTelephoneNumber: +1 818 703-7841 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 783-5364 +title: Junior Product Testing Dictator +userPassword: Password1 +uid: BoaseD +givenName: Derek +mail: BoaseD@61d65279aba845aea76d91065d514e1d.bitwarden.com +carLicense: WLHXA6 +departmentNumber: 9241 +employeeType: Employee +homePhone: +1 818 327-5357 +initials: D. B. +mobile: +1 818 429-2644 +pager: +1 818 460-2711 +roomNumber: 8755 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ehi Sova,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ehi Sova +sn: Sova +description: This is Ehi Sova's description +facsimileTelephoneNumber: +1 804 124-7427 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 372-1149 +title: Supreme Payroll Admin +userPassword: Password1 +uid: SovaE +givenName: Ehi +mail: SovaE@3b01400372a04ac682bfb36ab66341f1.bitwarden.com +carLicense: NDI08K +departmentNumber: 5445 +employeeType: Normal +homePhone: +1 804 497-4989 +initials: E. S. +mobile: +1 804 109-7381 +pager: +1 804 298-9368 +roomNumber: 8283 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Suzette Chaddha,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzette Chaddha +sn: Chaddha +description: This is Suzette Chaddha's description +facsimileTelephoneNumber: +1 510 724-6280 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 453-3445 +title: Associate Payroll Grunt +userPassword: Password1 +uid: ChaddhaS +givenName: Suzette +mail: ChaddhaS@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com +carLicense: WGGPSL +departmentNumber: 8460 +employeeType: Normal +homePhone: +1 510 206-5721 +initials: S. C. +mobile: +1 510 745-1914 +pager: +1 510 563-5163 +roomNumber: 8815 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lennart Delong,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lennart Delong +sn: Delong +description: This is Lennart Delong's description +facsimileTelephoneNumber: +1 206 603-8068 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 352-3367 +title: Supreme Administrative Evangelist +userPassword: Password1 +uid: DelongL +givenName: Lennart +mail: DelongL@6753274bb619418096cac60a846c2af8.bitwarden.com +carLicense: C04595 +departmentNumber: 3016 +employeeType: Contract +homePhone: +1 206 483-5786 +initials: L. D. +mobile: +1 206 923-5505 +pager: +1 206 448-6688 +roomNumber: 8638 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Audrey Alfaro +sn: Alfaro +description: This is Audrey Alfaro's description +facsimileTelephoneNumber: +1 415 866-4682 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 320-1453 +title: Associate Product Testing Madonna +userPassword: Password1 +uid: AlfaroA +givenName: Audrey +mail: AlfaroA@a75c11902ec34e1fa257326b84b40638.bitwarden.com +carLicense: P22KF6 +departmentNumber: 2422 +employeeType: Employee +homePhone: +1 415 428-1064 +initials: A. A. +mobile: +1 415 292-3212 +pager: +1 415 110-1816 +roomNumber: 9045 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Diann Glast,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diann Glast +sn: Glast +description: This is Diann Glast's description +facsimileTelephoneNumber: +1 415 211-9877 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 942-9988 +title: Supreme Product Development Developer +userPassword: Password1 +uid: GlastD +givenName: Diann +mail: GlastD@8be20a5f8fec49b3a3d2cf11b1d5489b.bitwarden.com +carLicense: U946KQ +departmentNumber: 4364 +employeeType: Employee +homePhone: +1 415 419-7528 +initials: D. G. +mobile: +1 415 164-1278 +pager: +1 415 899-1620 +roomNumber: 9826 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tiffanie Beehler,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffanie Beehler +sn: Beehler +description: This is Tiffanie Beehler's description +facsimileTelephoneNumber: +1 415 135-9932 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 111-5011 +title: Associate Peons Manager +userPassword: Password1 +uid: BeehlerT +givenName: Tiffanie +mail: BeehlerT@c08c80f3c69d4d04b025dc038c8f6045.bitwarden.com +carLicense: PW0PMI +departmentNumber: 2121 +employeeType: Employee +homePhone: +1 415 843-3014 +initials: T. B. +mobile: +1 415 110-1459 +pager: +1 415 766-7039 +roomNumber: 8588 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leny Teague,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leny Teague +sn: Teague +description: This is Leny Teague's description +facsimileTelephoneNumber: +1 804 895-5258 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 804 678-4091 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: TeagueL +givenName: Leny +mail: TeagueL@e5d9cd8563784493b06bdd8fd1d46cd9.bitwarden.com +carLicense: C2JON8 +departmentNumber: 3988 +employeeType: Contract +homePhone: +1 804 404-4884 +initials: L. T. +mobile: +1 804 344-7840 +pager: +1 804 869-3734 +roomNumber: 9300 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Trever Casson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trever Casson +sn: Casson +description: This is Trever Casson's description +facsimileTelephoneNumber: +1 213 661-6097 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 593-9233 +title: Supreme Product Testing Architect +userPassword: Password1 +uid: CassonT +givenName: Trever +mail: CassonT@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com +carLicense: LV0AD0 +departmentNumber: 8851 +employeeType: Employee +homePhone: +1 213 554-9044 +initials: T. C. +mobile: +1 213 756-4217 +pager: +1 213 168-8572 +roomNumber: 8893 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Chester Greene,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chester Greene +sn: Greene +description: This is Chester Greene's description +facsimileTelephoneNumber: +1 415 678-3805 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 181-7729 +title: Junior Peons Punk +userPassword: Password1 +uid: GreeneC +givenName: Chester +mail: GreeneC@9955c860a52142e48ed59c06efdb5d52.bitwarden.com +carLicense: G00YXA +departmentNumber: 2183 +employeeType: Employee +homePhone: +1 415 183-9098 +initials: C. G. +mobile: +1 415 665-5007 +pager: +1 415 601-7830 +roomNumber: 9702 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Celine Vey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celine Vey +sn: Vey +description: This is Celine Vey's description +facsimileTelephoneNumber: +1 804 294-1942 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 603-3115 +title: Supreme Product Development Madonna +userPassword: Password1 +uid: VeyC +givenName: Celine +mail: VeyC@20f59cdd83ae48b3816d0ba42aaa0a71.bitwarden.com +carLicense: L5Q45G +departmentNumber: 5818 +employeeType: Contract +homePhone: +1 804 213-2692 +initials: C. V. +mobile: +1 804 315-3726 +pager: +1 804 544-7656 +roomNumber: 9188 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pinder Leonida,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pinder Leonida +sn: Leonida +description: This is Pinder Leonida's description +facsimileTelephoneNumber: +1 804 977-8597 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 804 682-3399 +title: Master Product Testing Assistant +userPassword: Password1 +uid: LeonidaP +givenName: Pinder +mail: LeonidaP@4fe51546324e43adb896246907c2c135.bitwarden.com +carLicense: A0EDXB +departmentNumber: 9470 +employeeType: Normal +homePhone: +1 804 856-7120 +initials: P. L. +mobile: +1 804 629-3896 +pager: +1 804 969-5178 +roomNumber: 8088 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beryl Lalonde,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beryl Lalonde +sn: Lalonde +description: This is Beryl Lalonde's description +facsimileTelephoneNumber: +1 510 569-6653 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 479-7935 +title: Associate Administrative Developer +userPassword: Password1 +uid: LalondeB +givenName: Beryl +mail: LalondeB@222fec44e9c646688683c89bb36f7404.bitwarden.com +carLicense: 4JD2K4 +departmentNumber: 1600 +employeeType: Normal +homePhone: +1 510 733-7532 +initials: B. L. +mobile: +1 510 993-3608 +pager: +1 510 930-7737 +roomNumber: 9027 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cicely Ivers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cicely Ivers +sn: Ivers +description: This is Cicely Ivers's description +facsimileTelephoneNumber: +1 408 521-1401 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 196-9205 +title: Junior Management Mascot +userPassword: Password1 +uid: IversC +givenName: Cicely +mail: IversC@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com +carLicense: NHAXUP +departmentNumber: 6255 +employeeType: Employee +homePhone: +1 408 521-6022 +initials: C. I. +mobile: +1 408 986-8461 +pager: +1 408 145-9587 +roomNumber: 8667 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorinda Kenworthy,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorinda Kenworthy +sn: Kenworthy +description: This is Lorinda Kenworthy's description +facsimileTelephoneNumber: +1 818 657-9466 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 660-1731 +title: Chief Management Punk +userPassword: Password1 +uid: KenwortL +givenName: Lorinda +mail: KenwortL@a6318282a95143ad9eb6eec2fd89dea7.bitwarden.com +carLicense: WCUJWH +departmentNumber: 4478 +employeeType: Employee +homePhone: +1 818 475-4112 +initials: L. K. +mobile: +1 818 725-3183 +pager: +1 818 611-6857 +roomNumber: 9626 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ketan LaPierre +sn: LaPierre +description: This is Ketan LaPierre's description +facsimileTelephoneNumber: +1 206 131-2891 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 715-6593 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: LaPierrK +givenName: Ketan +mail: LaPierrK@290f3bf5609346169561a1cf35572b57.bitwarden.com +carLicense: QBJPUJ +departmentNumber: 2291 +employeeType: Normal +homePhone: +1 206 407-8170 +initials: K. L. +mobile: +1 206 599-4434 +pager: +1 206 450-6841 +roomNumber: 8453 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Demetre Obrecht,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Demetre Obrecht +sn: Obrecht +description: This is Demetre Obrecht's description +facsimileTelephoneNumber: +1 415 874-5678 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 443-9017 +title: Supreme Administrative Director +userPassword: Password1 +uid: ObrechtD +givenName: Demetre +mail: ObrechtD@33417574ff5641239d149c2ac49c5525.bitwarden.com +carLicense: 26JJI4 +departmentNumber: 5448 +employeeType: Employee +homePhone: +1 415 437-2732 +initials: D. O. +mobile: +1 415 237-5575 +pager: +1 415 296-5505 +roomNumber: 8516 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shandie Urbanowich +sn: Urbanowich +description: This is Shandie Urbanowich's description +facsimileTelephoneNumber: +1 510 723-8411 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 562-4602 +title: Chief Product Development Fellow +userPassword: Password1 +uid: UrbanowS +givenName: Shandie +mail: UrbanowS@7f8cf4c32d334ebd9fa48fd60fc5a429.bitwarden.com +carLicense: EX0OAO +departmentNumber: 6091 +employeeType: Normal +homePhone: +1 510 917-4813 +initials: S. U. +mobile: +1 510 902-5746 +pager: +1 510 139-5596 +roomNumber: 8777 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harriett Brooksbank +sn: Brooksbank +description: This is Harriett Brooksbank's description +facsimileTelephoneNumber: +1 804 284-4489 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 862-1577 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: BrooksbH +givenName: Harriett +mail: BrooksbH@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com +carLicense: 5DXKSA +departmentNumber: 5320 +employeeType: Employee +homePhone: +1 804 830-4642 +initials: H. B. +mobile: +1 804 322-6092 +pager: +1 804 774-2914 +roomNumber: 9427 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sheryl Nemec,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheryl Nemec +sn: Nemec +description: This is Sheryl Nemec's description +facsimileTelephoneNumber: +1 818 584-7565 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 818 397-8315 +title: Master Payroll Dictator +userPassword: Password1 +uid: NemecS +givenName: Sheryl +mail: NemecS@9bb568342a7843e597240cebd0fa3324.bitwarden.com +carLicense: Q052WA +departmentNumber: 6489 +employeeType: Normal +homePhone: +1 818 101-8384 +initials: S. N. +mobile: +1 818 918-9229 +pager: +1 818 408-1655 +roomNumber: 9901 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Freya Reich,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Freya Reich +sn: Reich +description: This is Freya Reich's description +facsimileTelephoneNumber: +1 818 886-8213 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 235-7164 +title: Junior Management Dictator +userPassword: Password1 +uid: ReichF +givenName: Freya +mail: ReichF@c1717c5f197c4d3987c6204634e4161c.bitwarden.com +carLicense: U0G2D9 +departmentNumber: 7896 +employeeType: Normal +homePhone: +1 818 178-4748 +initials: F. R. +mobile: +1 818 640-6311 +pager: +1 818 330-3768 +roomNumber: 8330 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Willyt Kresl,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willyt Kresl +sn: Kresl +description: This is Willyt Kresl's description +facsimileTelephoneNumber: +1 408 825-8264 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 843-2068 +title: Junior Peons Punk +userPassword: Password1 +uid: KreslW +givenName: Willyt +mail: KreslW@566f91b3e6ce4bad9c7f92243d29e023.bitwarden.com +carLicense: TDP2QK +departmentNumber: 9030 +employeeType: Contract +homePhone: +1 408 588-9977 +initials: W. K. +mobile: +1 408 940-6709 +pager: +1 408 975-3626 +roomNumber: 9966 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nenad Kilner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nenad Kilner +sn: Kilner +description: This is Nenad Kilner's description +facsimileTelephoneNumber: +1 804 340-5663 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 263-7864 +title: Junior Peons Dictator +userPassword: Password1 +uid: KilnerN +givenName: Nenad +mail: KilnerN@f52a2af58c834348a94fa371e71ee488.bitwarden.com +carLicense: F47MSJ +departmentNumber: 2533 +employeeType: Contract +homePhone: +1 804 193-3531 +initials: N. K. +mobile: +1 804 496-1645 +pager: +1 804 754-9392 +roomNumber: 9777 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rakel Tranfaglia +sn: Tranfaglia +description: This is Rakel Tranfaglia's description +facsimileTelephoneNumber: +1 818 922-8566 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 850-2254 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: TranfagR +givenName: Rakel +mail: TranfagR@092ab78908d446088e98cb12c4153688.bitwarden.com +carLicense: IS9WJ2 +departmentNumber: 8557 +employeeType: Normal +homePhone: +1 818 574-5218 +initials: R. T. +mobile: +1 818 940-7129 +pager: +1 818 197-4893 +roomNumber: 9758 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nakina Brittain,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nakina Brittain +sn: Brittain +description: This is Nakina Brittain's description +facsimileTelephoneNumber: +1 408 282-4959 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 408 631-3209 +title: Associate Janitorial Evangelist +userPassword: Password1 +uid: BrittaiN +givenName: Nakina +mail: BrittaiN@f291666dbe1942f9939c126ee15d9886.bitwarden.com +carLicense: 6TG00G +departmentNumber: 2539 +employeeType: Employee +homePhone: +1 408 514-9547 +initials: N. B. +mobile: +1 408 409-9475 +pager: +1 408 403-9605 +roomNumber: 9703 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Joyous Nunn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joyous Nunn +sn: Nunn +description: This is Joyous Nunn's description +facsimileTelephoneNumber: +1 510 771-1537 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 688-8835 +title: Chief Product Development Architect +userPassword: Password1 +uid: NunnJ +givenName: Joyous +mail: NunnJ@ad2fbe502361499c9d06dcdb8e2109ef.bitwarden.com +carLicense: X69Q6A +departmentNumber: 8352 +employeeType: Normal +homePhone: +1 510 828-5866 +initials: J. N. +mobile: +1 510 864-2256 +pager: +1 510 358-1856 +roomNumber: 8397 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhiren Lahey +sn: Lahey +description: This is Dhiren Lahey's description +facsimileTelephoneNumber: +1 510 630-3200 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 444-5561 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: LaheyD +givenName: Dhiren +mail: LaheyD@5eabae8e0a894e598a102f3cdf87fde5.bitwarden.com +carLicense: 26MEUC +departmentNumber: 5825 +employeeType: Employee +homePhone: +1 510 164-7901 +initials: D. L. +mobile: +1 510 233-7339 +pager: +1 510 442-1554 +roomNumber: 8826 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hugo Tarsky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hugo Tarsky +sn: Tarsky +description: This is Hugo Tarsky's description +facsimileTelephoneNumber: +1 206 633-2851 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 319-6186 +title: Chief Administrative Technician +userPassword: Password1 +uid: TarskyH +givenName: Hugo +mail: TarskyH@90516b7a68e546109049725db5fc6bce.bitwarden.com +carLicense: GT4EW8 +departmentNumber: 3105 +employeeType: Contract +homePhone: +1 206 524-8559 +initials: H. T. +mobile: +1 206 781-9946 +pager: +1 206 946-1835 +roomNumber: 9937 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Davida Starnes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davida Starnes +sn: Starnes +description: This is Davida Starnes's description +facsimileTelephoneNumber: +1 510 170-3684 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 203-6839 +title: Master Human Resources Developer +userPassword: Password1 +uid: StarnesD +givenName: Davida +mail: StarnesD@54a3e88e10d6420bafc84d4c62e2aba4.bitwarden.com +carLicense: 4XM2OF +departmentNumber: 6144 +employeeType: Normal +homePhone: +1 510 399-6832 +initials: D. S. +mobile: +1 510 334-1920 +pager: +1 510 377-2837 +roomNumber: 9169 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Heping Id,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heping Id +sn: Id +description: This is Heping Id's description +facsimileTelephoneNumber: +1 510 438-4417 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 336-4361 +title: Supreme Management Developer +userPassword: Password1 +uid: IdH +givenName: Heping +mail: IdH@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com +carLicense: 8336RF +departmentNumber: 5391 +employeeType: Normal +homePhone: +1 510 510-5713 +initials: H. I. +mobile: +1 510 611-3786 +pager: +1 510 993-1027 +roomNumber: 8795 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nill Ferreira,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nill Ferreira +sn: Ferreira +description: This is Nill Ferreira's description +facsimileTelephoneNumber: +1 415 792-7899 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 853-4040 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: FerreirN +givenName: Nill +mail: FerreirN@1c27d636b4be486693c87693cde976e4.bitwarden.com +carLicense: JC465K +departmentNumber: 7046 +employeeType: Contract +homePhone: +1 415 360-3289 +initials: N. F. +mobile: +1 415 454-5885 +pager: +1 415 510-1822 +roomNumber: 9256 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nathaniel Kiecksee +sn: Kiecksee +description: This is Nathaniel Kiecksee's description +facsimileTelephoneNumber: +1 510 744-3793 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 386-2075 +title: Chief Payroll Vice President +userPassword: Password1 +uid: KieckseN +givenName: Nathaniel +mail: KieckseN@4ca2ac902d4749ad8038d002b39cb95c.bitwarden.com +carLicense: 60SXTY +departmentNumber: 6405 +employeeType: Normal +homePhone: +1 510 314-4533 +initials: N. K. +mobile: +1 510 513-2587 +pager: +1 510 228-9885 +roomNumber: 9835 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vino Vanderheyden +sn: Vanderheyden +description: This is Vino Vanderheyden's description +facsimileTelephoneNumber: +1 804 909-6534 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 804 295-3586 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: VanderhV +givenName: Vino +mail: VanderhV@80c82ffaa49a474d9be83438195b45a5.bitwarden.com +carLicense: 8GSPVN +departmentNumber: 1272 +employeeType: Normal +homePhone: +1 804 307-5366 +initials: V. V. +mobile: +1 804 393-3266 +pager: +1 804 129-6280 +roomNumber: 9293 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Amabel DAngelo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amabel DAngelo +sn: DAngelo +description: This is Amabel DAngelo's description +facsimileTelephoneNumber: +1 206 284-4476 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 923-6864 +title: Chief Management Writer +userPassword: Password1 +uid: DAngeloA +givenName: Amabel +mail: DAngeloA@427f0c8a6c7f4931b9f522617221c48a.bitwarden.com +carLicense: 1LE7HR +departmentNumber: 6732 +employeeType: Contract +homePhone: +1 206 432-3430 +initials: A. D. +mobile: +1 206 730-1484 +pager: +1 206 653-8374 +roomNumber: 8928 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Brad Scarffe,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brad Scarffe +sn: Scarffe +description: This is Brad Scarffe's description +facsimileTelephoneNumber: +1 408 653-3588 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 247-1108 +title: Supreme Management Consultant +userPassword: Password1 +uid: ScarffeB +givenName: Brad +mail: ScarffeB@0708ead8d9da4345b639ad91b17701b1.bitwarden.com +carLicense: 6EVSQT +departmentNumber: 5858 +employeeType: Employee +homePhone: +1 408 848-8264 +initials: B. S. +mobile: +1 408 687-6494 +pager: +1 408 736-4245 +roomNumber: 9672 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elfie Florescu,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elfie Florescu +sn: Florescu +description: This is Elfie Florescu's description +facsimileTelephoneNumber: +1 818 260-1500 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 849-6061 +title: Supreme Peons Czar +userPassword: Password1 +uid: FlorescE +givenName: Elfie +mail: FlorescE@9480e1acabd5425d80a15e6c019880fd.bitwarden.com +carLicense: N3XKGP +departmentNumber: 3510 +employeeType: Contract +homePhone: +1 818 656-8921 +initials: E. F. +mobile: +1 818 250-1702 +pager: +1 818 668-6657 +roomNumber: 8830 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nayan Caffrey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nayan Caffrey +sn: Caffrey +description: This is Nayan Caffrey's description +facsimileTelephoneNumber: +1 213 386-5856 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 656-6486 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: CaffreyN +givenName: Nayan +mail: CaffreyN@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com +carLicense: 9EJ317 +departmentNumber: 4366 +employeeType: Employee +homePhone: +1 213 383-7724 +initials: N. C. +mobile: +1 213 522-7736 +pager: +1 213 462-1970 +roomNumber: 9949 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Deonne Ripa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deonne Ripa +sn: Ripa +description: This is Deonne Ripa's description +facsimileTelephoneNumber: +1 510 803-3975 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 277-9304 +title: Associate Payroll Mascot +userPassword: Password1 +uid: RipaD +givenName: Deonne +mail: RipaD@bcf6de0b8d2c44a68286d08f9d47b1f4.bitwarden.com +carLicense: ETCP98 +departmentNumber: 4921 +employeeType: Employee +homePhone: +1 510 198-6743 +initials: D. R. +mobile: +1 510 781-3405 +pager: +1 510 881-4269 +roomNumber: 8168 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mehdi Mainville,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mehdi Mainville +sn: Mainville +description: This is Mehdi Mainville's description +facsimileTelephoneNumber: +1 510 755-5384 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 891-2534 +title: Junior Peons Pinhead +userPassword: Password1 +uid: MainvilM +givenName: Mehdi +mail: MainvilM@7101039e23634506b2da2b1c92ecb4cf.bitwarden.com +carLicense: 4OEJ34 +departmentNumber: 8957 +employeeType: Normal +homePhone: +1 510 616-7877 +initials: M. M. +mobile: +1 510 997-4544 +pager: +1 510 490-2743 +roomNumber: 9754 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jade Yumurtaci,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jade Yumurtaci +sn: Yumurtaci +description: This is Jade Yumurtaci's description +facsimileTelephoneNumber: +1 415 949-2173 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 833-2076 +title: Master Peons Punk +userPassword: Password1 +uid: YumurtaJ +givenName: Jade +mail: YumurtaJ@9d5ea794acf845deab8b5f3d0cc82f3c.bitwarden.com +carLicense: 8LPRVN +departmentNumber: 2125 +employeeType: Contract +homePhone: +1 415 955-8014 +initials: J. Y. +mobile: +1 415 201-9206 +pager: +1 415 149-1365 +roomNumber: 9043 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tsuyoshi Sehmbey +sn: Sehmbey +description: This is Tsuyoshi Sehmbey's description +facsimileTelephoneNumber: +1 206 770-7962 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 364-7158 +title: Chief Management Writer +userPassword: Password1 +uid: SehmbeyT +givenName: Tsuyoshi +mail: SehmbeyT@d753979fad154486ac459615561fae04.bitwarden.com +carLicense: JSAGJ7 +departmentNumber: 4720 +employeeType: Normal +homePhone: +1 206 918-1717 +initials: T. S. +mobile: +1 206 809-5709 +pager: +1 206 488-5390 +roomNumber: 8694 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kerstin Capretta +sn: Capretta +description: This is Kerstin Capretta's description +facsimileTelephoneNumber: +1 510 182-7801 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 510 492-4245 +title: Chief Human Resources Developer +userPassword: Password1 +uid: CaprettK +givenName: Kerstin +mail: CaprettK@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com +carLicense: OSFNCK +departmentNumber: 6623 +employeeType: Employee +homePhone: +1 510 967-5327 +initials: K. C. +mobile: +1 510 875-7977 +pager: +1 510 154-7044 +roomNumber: 8888 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fey Bilton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fey Bilton +sn: Bilton +description: This is Fey Bilton's description +facsimileTelephoneNumber: +1 408 136-7556 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 408 195-5846 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: BiltonF +givenName: Fey +mail: BiltonF@f8c8362f349f4cd990f16a4512cb6987.bitwarden.com +carLicense: 46V8F8 +departmentNumber: 2827 +employeeType: Contract +homePhone: +1 408 149-7954 +initials: F. B. +mobile: +1 408 151-8142 +pager: +1 408 265-3094 +roomNumber: 8011 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Isoft Manwaring,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isoft Manwaring +sn: Manwaring +description: This is Isoft Manwaring's description +facsimileTelephoneNumber: +1 213 138-6981 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 889-8051 +title: Supreme Peons Warrior +userPassword: Password1 +uid: ManwariI +givenName: Isoft +mail: ManwariI@21c0df4a152641a4b289e46be985993f.bitwarden.com +carLicense: QNU5XL +departmentNumber: 9297 +employeeType: Contract +homePhone: +1 213 460-1737 +initials: I. M. +mobile: +1 213 912-2121 +pager: +1 213 618-7440 +roomNumber: 8864 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Addia RossRoss,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Addia RossRoss +sn: RossRoss +description: This is Addia RossRoss's description +facsimileTelephoneNumber: +1 818 169-5229 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 921-1940 +title: Master Janitorial Technician +userPassword: Password1 +uid: RossRosA +givenName: Addia +mail: RossRosA@21676ccf48234584998e9b1b9517cc74.bitwarden.com +carLicense: 8NFA6X +departmentNumber: 1564 +employeeType: Employee +homePhone: +1 818 356-3569 +initials: A. R. +mobile: +1 818 278-2575 +pager: +1 818 465-6079 +roomNumber: 8862 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Adoree Debord,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adoree Debord +sn: Debord +description: This is Adoree Debord's description +facsimileTelephoneNumber: +1 408 103-8535 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 873-8593 +title: Junior Payroll Engineer +userPassword: Password1 +uid: DebordA +givenName: Adoree +mail: DebordA@fecfcf752c6e4027af9fd19570ebc44a.bitwarden.com +carLicense: VJE6OJ +departmentNumber: 3475 +employeeType: Employee +homePhone: +1 408 324-2538 +initials: A. D. +mobile: +1 408 407-2342 +pager: +1 408 259-4897 +roomNumber: 9387 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tesa Coordinator,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tesa Coordinator +sn: Coordinator +description: This is Tesa Coordinator's description +facsimileTelephoneNumber: +1 818 796-3634 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 320-9631 +title: Chief Product Development Fellow +userPassword: Password1 +uid: CoordinT +givenName: Tesa +mail: CoordinT@99a51e3de4824b82894f80e7490fdc98.bitwarden.com +carLicense: MG1493 +departmentNumber: 3675 +employeeType: Contract +homePhone: +1 818 758-3299 +initials: T. C. +mobile: +1 818 550-1936 +pager: +1 818 458-2639 +roomNumber: 9720 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Crissie Beausejour,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crissie Beausejour +sn: Beausejour +description: This is Crissie Beausejour's description +facsimileTelephoneNumber: +1 510 893-1848 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 654-5221 +title: Associate Peons Architect +userPassword: Password1 +uid: BeausejC +givenName: Crissie +mail: BeausejC@9e9653057e724f3ba3cf01f171b09f12.bitwarden.com +carLicense: GKXF0P +departmentNumber: 4849 +employeeType: Contract +homePhone: +1 510 748-4479 +initials: C. B. +mobile: +1 510 609-4489 +pager: +1 510 130-6373 +roomNumber: 9847 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hojjat Nahata,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hojjat Nahata +sn: Nahata +description: This is Hojjat Nahata's description +facsimileTelephoneNumber: +1 818 954-5936 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 818 756-9374 +title: Chief Peons Technician +userPassword: Password1 +uid: NahataH +givenName: Hojjat +mail: NahataH@4c99f016701f421ea6d699e1dff81e68.bitwarden.com +carLicense: TE47I8 +departmentNumber: 1004 +employeeType: Contract +homePhone: +1 818 204-2406 +initials: H. N. +mobile: +1 818 536-6673 +pager: +1 818 753-8619 +roomNumber: 9332 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Julina Sy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julina Sy +sn: Sy +description: This is Julina Sy's description +facsimileTelephoneNumber: +1 206 490-5652 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 961-8357 +title: Junior Administrative Artist +userPassword: Password1 +uid: SyJ +givenName: Julina +mail: SyJ@9a5bdc9a34e041db8cf5f51cd958707f.bitwarden.com +carLicense: JBGAVJ +departmentNumber: 9196 +employeeType: Employee +homePhone: +1 206 390-2507 +initials: J. S. +mobile: +1 206 288-6695 +pager: +1 206 544-6438 +roomNumber: 8611 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kendre Lotochinski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kendre Lotochinski +sn: Lotochinski +description: This is Kendre Lotochinski's description +facsimileTelephoneNumber: +1 510 209-7829 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 228-5012 +title: Junior Management Director +userPassword: Password1 +uid: LotochiK +givenName: Kendre +mail: LotochiK@37238c283bde45368b4da8be7c9deb4e.bitwarden.com +carLicense: NHRUE7 +departmentNumber: 2417 +employeeType: Normal +homePhone: +1 510 877-2949 +initials: K. L. +mobile: +1 510 877-2790 +pager: +1 510 205-8582 +roomNumber: 9853 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yih NadeauDostie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yih NadeauDostie +sn: NadeauDostie +description: This is Yih NadeauDostie's description +facsimileTelephoneNumber: +1 804 633-6122 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 251-9888 +title: Master Management Writer +userPassword: Password1 +uid: NadeauDY +givenName: Yih +mail: NadeauDY@c168d422280e4cbfb755415d15add934.bitwarden.com +carLicense: AO4VTG +departmentNumber: 4545 +employeeType: Employee +homePhone: +1 804 421-7540 +initials: Y. N. +mobile: +1 804 321-2618 +pager: +1 804 440-4804 +roomNumber: 8369 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Glynnis Neisius,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glynnis Neisius +sn: Neisius +description: This is Glynnis Neisius's description +facsimileTelephoneNumber: +1 206 370-7780 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 273-4005 +title: Associate Peons Technician +userPassword: Password1 +uid: NeisiusG +givenName: Glynnis +mail: NeisiusG@3ecc1d20e4e1450b8a8fad63f512c730.bitwarden.com +carLicense: 2DHEWQ +departmentNumber: 7269 +employeeType: Normal +homePhone: +1 206 691-8761 +initials: G. N. +mobile: +1 206 476-5122 +pager: +1 206 922-6015 +roomNumber: 9187 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sono Orsini,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sono Orsini +sn: Orsini +description: This is Sono Orsini's description +facsimileTelephoneNumber: +1 510 683-9698 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 663-6731 +title: Chief Peons President +userPassword: Password1 +uid: OrsiniS +givenName: Sono +mail: OrsiniS@7cfc34ac6f4c4e1aba837c354ef5b514.bitwarden.com +carLicense: F3M943 +departmentNumber: 4015 +employeeType: Contract +homePhone: +1 510 147-6184 +initials: S. O. +mobile: +1 510 577-9571 +pager: +1 510 446-7643 +roomNumber: 9086 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Devon Romberg,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devon Romberg +sn: Romberg +description: This is Devon Romberg's description +facsimileTelephoneNumber: +1 213 334-4476 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 213 406-6390 +title: Chief Product Development Dictator +userPassword: Password1 +uid: RombergD +givenName: Devon +mail: RombergD@ca18540933614ae79f2aa564295e8db4.bitwarden.com +carLicense: LF1IBR +departmentNumber: 7525 +employeeType: Employee +homePhone: +1 213 285-8149 +initials: D. R. +mobile: +1 213 351-8032 +pager: +1 213 994-2287 +roomNumber: 8113 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lorne Agily,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorne Agily +sn: Agily +description: This is Lorne Agily's description +facsimileTelephoneNumber: +1 206 729-6821 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 168-1364 +title: Associate Management Assistant +userPassword: Password1 +uid: AgilyL +givenName: Lorne +mail: AgilyL@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com +carLicense: 2NV0UA +departmentNumber: 1178 +employeeType: Employee +homePhone: +1 206 773-6072 +initials: L. A. +mobile: +1 206 170-9532 +pager: +1 206 537-5996 +roomNumber: 8831 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Henka Colford,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henka Colford +sn: Colford +description: This is Henka Colford's description +facsimileTelephoneNumber: +1 818 480-7533 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 373-2476 +title: Chief Administrative Developer +userPassword: Password1 +uid: ColfordH +givenName: Henka +mail: ColfordH@c63acc13c8a740e8a43edd8fb66a56ca.bitwarden.com +carLicense: Y4JCKV +departmentNumber: 6054 +employeeType: Employee +homePhone: +1 818 554-5612 +initials: H. C. +mobile: +1 818 798-7489 +pager: +1 818 794-2602 +roomNumber: 9046 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ddene Pashmineh +sn: Pashmineh +description: This is Ddene Pashmineh's description +facsimileTelephoneNumber: +1 408 892-7707 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 821-3093 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: PashminD +givenName: Ddene +mail: PashminD@04bb8c62899b41dd85b281860ec060e6.bitwarden.com +carLicense: 3UY4LR +departmentNumber: 4889 +employeeType: Employee +homePhone: +1 408 992-5080 +initials: D. P. +mobile: +1 408 712-1289 +pager: +1 408 463-8920 +roomNumber: 9004 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Niek Bocklage,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niek Bocklage +sn: Bocklage +description: This is Niek Bocklage's description +facsimileTelephoneNumber: +1 804 883-9997 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 804 628-5717 +title: Supreme Payroll President +userPassword: Password1 +uid: BocklagN +givenName: Niek +mail: BocklagN@0a49f322d17b42a58985fe2e05d0dafb.bitwarden.com +carLicense: VWAA8K +departmentNumber: 5850 +employeeType: Employee +homePhone: +1 804 706-5536 +initials: N. B. +mobile: +1 804 714-2489 +pager: +1 804 484-2341 +roomNumber: 8040 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gill Castillo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gill Castillo +sn: Castillo +description: This is Gill Castillo's description +facsimileTelephoneNumber: +1 510 314-7551 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 667-3072 +title: Junior Peons Director +userPassword: Password1 +uid: CastillG +givenName: Gill +mail: CastillG@b415261c1aeb4713828c9aaaebea46d8.bitwarden.com +carLicense: OBYSDN +departmentNumber: 6112 +employeeType: Employee +homePhone: +1 510 392-9611 +initials: G. C. +mobile: +1 510 190-2913 +pager: +1 510 574-9284 +roomNumber: 8561 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alkarim Tonkovich +sn: Tonkovich +description: This is Alkarim Tonkovich's description +facsimileTelephoneNumber: +1 206 484-7396 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 989-7200 +title: Associate Administrative Developer +userPassword: Password1 +uid: TonkoviA +givenName: Alkarim +mail: TonkoviA@c2853faa5a5c4802a03043c5ee120c0d.bitwarden.com +carLicense: 798BAB +departmentNumber: 3165 +employeeType: Employee +homePhone: +1 206 720-1621 +initials: A. T. +mobile: +1 206 346-3173 +pager: +1 206 660-8432 +roomNumber: 8747 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vacman Goridkov +sn: Goridkov +description: This is Vacman Goridkov's description +facsimileTelephoneNumber: +1 415 242-1401 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 645-8413 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: GoridkoV +givenName: Vacman +mail: GoridkoV@47a7a80ec8774325ad24930467e7f72e.bitwarden.com +carLicense: M0N7M8 +departmentNumber: 8580 +employeeType: Employee +homePhone: +1 415 290-1497 +initials: V. G. +mobile: +1 415 511-8983 +pager: +1 415 127-3531 +roomNumber: 9939 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cary Thumm,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cary Thumm +sn: Thumm +description: This is Cary Thumm's description +facsimileTelephoneNumber: +1 510 748-8873 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 718-4759 +title: Associate Payroll Engineer +userPassword: Password1 +uid: ThummC +givenName: Cary +mail: ThummC@73c98e62bd724f62ba84304041b99a67.bitwarden.com +carLicense: O65LRI +departmentNumber: 7758 +employeeType: Contract +homePhone: +1 510 352-5013 +initials: C. T. +mobile: +1 510 669-8228 +pager: +1 510 900-5462 +roomNumber: 8916 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rod Eisenach,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rod Eisenach +sn: Eisenach +description: This is Rod Eisenach's description +facsimileTelephoneNumber: +1 510 797-3983 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 486-8715 +title: Master Payroll Warrior +userPassword: Password1 +uid: EisenacR +givenName: Rod +mail: EisenacR@c77e1b04604d4d1f96b1471fffc2169c.bitwarden.com +carLicense: FFHXHL +departmentNumber: 5839 +employeeType: Normal +homePhone: +1 510 675-9330 +initials: R. E. +mobile: +1 510 505-9298 +pager: +1 510 712-6663 +roomNumber: 9502 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Axel McAdams,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Axel McAdams +sn: McAdams +description: This is Axel McAdams's description +facsimileTelephoneNumber: +1 408 228-8000 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 676-7734 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: McAdamsA +givenName: Axel +mail: McAdamsA@223017ad635c4766a831c086905608fa.bitwarden.com +carLicense: BPGOBQ +departmentNumber: 5753 +employeeType: Contract +homePhone: +1 408 777-7745 +initials: A. M. +mobile: +1 408 880-5160 +pager: +1 408 429-7501 +roomNumber: 8241 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Amara Lagarde,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amara Lagarde +sn: Lagarde +description: This is Amara Lagarde's description +facsimileTelephoneNumber: +1 804 969-9723 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 622-2255 +title: Chief Management President +userPassword: Password1 +uid: LagardeA +givenName: Amara +mail: LagardeA@28a93f8db65e4c7896a7639f8d2d6945.bitwarden.com +carLicense: MS016W +departmentNumber: 3700 +employeeType: Employee +homePhone: +1 804 904-9957 +initials: A. L. +mobile: +1 804 646-4087 +pager: +1 804 325-8233 +roomNumber: 9189 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gerianne Deluca,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerianne Deluca +sn: Deluca +description: This is Gerianne Deluca's description +facsimileTelephoneNumber: +1 818 940-2548 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 363-7513 +title: Supreme Peons Dictator +userPassword: Password1 +uid: DelucaG +givenName: Gerianne +mail: DelucaG@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com +carLicense: MP5U5D +departmentNumber: 9285 +employeeType: Employee +homePhone: +1 818 592-7648 +initials: G. D. +mobile: +1 818 101-2561 +pager: +1 818 612-7473 +roomNumber: 8298 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mick Barreyre,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mick Barreyre +sn: Barreyre +description: This is Mick Barreyre's description +facsimileTelephoneNumber: +1 804 263-7410 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 804 986-9074 +title: Junior Janitorial Evangelist +userPassword: Password1 +uid: BarreyrM +givenName: Mick +mail: BarreyrM@edf7b6e6765c4b9395ab808390477139.bitwarden.com +carLicense: DWG02I +departmentNumber: 8089 +employeeType: Employee +homePhone: +1 804 966-5007 +initials: M. B. +mobile: +1 804 679-7823 +pager: +1 804 599-2936 +roomNumber: 9217 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Netta Hartin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Netta Hartin +sn: Hartin +description: This is Netta Hartin's description +facsimileTelephoneNumber: +1 415 470-5551 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 504-4755 +title: Junior Peons Warrior +userPassword: Password1 +uid: HartinN +givenName: Netta +mail: HartinN@9eaee5a095454441a8ff73a3e26fa008.bitwarden.com +carLicense: OD71V4 +departmentNumber: 4519 +employeeType: Contract +homePhone: +1 415 728-4288 +initials: N. H. +mobile: +1 415 725-4268 +pager: +1 415 135-1368 +roomNumber: 9281 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdalen Armentrout +sn: Armentrout +description: This is Magdalen Armentrout's description +facsimileTelephoneNumber: +1 818 863-7407 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 724-4009 +title: Supreme Product Development Punk +userPassword: Password1 +uid: ArmentrM +givenName: Magdalen +mail: ArmentrM@e99ccdd4f1854e85b7018db9ee827387.bitwarden.com +carLicense: V8D0C4 +departmentNumber: 4343 +employeeType: Contract +homePhone: +1 818 587-2050 +initials: M. A. +mobile: +1 818 797-2917 +pager: +1 818 561-8325 +roomNumber: 9826 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Juli Chen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juli Chen +sn: Chen +description: This is Juli Chen's description +facsimileTelephoneNumber: +1 818 278-4922 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 598-8136 +title: Chief Administrative Assistant +userPassword: Password1 +uid: ChenJ +givenName: Juli +mail: ChenJ@6da792b22a5f46b49ab2efdbe92519ba.bitwarden.com +carLicense: JSLFHN +departmentNumber: 2540 +employeeType: Contract +homePhone: +1 818 838-3989 +initials: J. C. +mobile: +1 818 317-1952 +pager: +1 818 983-6393 +roomNumber: 8924 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cubical Quintana,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cubical Quintana +sn: Quintana +description: This is Cubical Quintana's description +facsimileTelephoneNumber: +1 213 474-4633 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 213 422-6379 +title: Junior Administrative Janitor +userPassword: Password1 +uid: QuintanC +givenName: Cubical +mail: QuintanC@008f04f6a73e47758da81bbf288d81a2.bitwarden.com +carLicense: 1RNCHB +departmentNumber: 6867 +employeeType: Employee +homePhone: +1 213 146-5819 +initials: C. Q. +mobile: +1 213 290-7114 +pager: +1 213 141-7462 +roomNumber: 9225 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Liping Acton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liping Acton +sn: Acton +description: This is Liping Acton's description +facsimileTelephoneNumber: +1 510 379-7870 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 619-4398 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: ActonL +givenName: Liping +mail: ActonL@d9cdfd88a6ba482380cbec226ee4ccee.bitwarden.com +carLicense: DWGRNY +departmentNumber: 3293 +employeeType: Normal +homePhone: +1 510 653-6073 +initials: L. A. +mobile: +1 510 985-6630 +pager: +1 510 542-8652 +roomNumber: 8906 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lorry Suprick,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorry Suprick +sn: Suprick +description: This is Lorry Suprick's description +facsimileTelephoneNumber: +1 408 294-8313 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 550-7892 +title: Supreme Administrative President +userPassword: Password1 +uid: SuprickL +givenName: Lorry +mail: SuprickL@872334f15d354ef8b48f04612937d290.bitwarden.com +carLicense: FJELYO +departmentNumber: 4026 +employeeType: Employee +homePhone: +1 408 938-8942 +initials: L. S. +mobile: +1 408 433-4129 +pager: +1 408 523-9686 +roomNumber: 9853 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mattie Astorino,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mattie Astorino +sn: Astorino +description: This is Mattie Astorino's description +facsimileTelephoneNumber: +1 510 930-5756 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 510 434-3230 +title: Chief Administrative Visionary +userPassword: Password1 +uid: AstorinM +givenName: Mattie +mail: AstorinM@103b717daeeb42b79fd5e26fd213a7db.bitwarden.com +carLicense: O0KR7S +departmentNumber: 3960 +employeeType: Employee +homePhone: +1 510 612-8902 +initials: M. A. +mobile: +1 510 966-1240 +pager: +1 510 473-9440 +roomNumber: 9111 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolanda Mooder +sn: Mooder +description: This is Jolanda Mooder's description +facsimileTelephoneNumber: +1 818 492-3543 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 760-7540 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: MooderJ +givenName: Jolanda +mail: MooderJ@982a9dc04ec64d818da9977446a91014.bitwarden.com +carLicense: SDP0V8 +departmentNumber: 6918 +employeeType: Normal +homePhone: +1 818 518-6026 +initials: J. M. +mobile: +1 818 440-1071 +pager: +1 818 900-4253 +roomNumber: 9983 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Suzanne Guatto,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzanne Guatto +sn: Guatto +description: This is Suzanne Guatto's description +facsimileTelephoneNumber: +1 804 722-9145 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 731-7512 +title: Associate Management Consultant +userPassword: Password1 +uid: GuattoS +givenName: Suzanne +mail: GuattoS@677b24267b6440e9ad6bebb082604f25.bitwarden.com +carLicense: PSDGP6 +departmentNumber: 6470 +employeeType: Employee +homePhone: +1 804 892-9483 +initials: S. G. +mobile: +1 804 544-3638 +pager: +1 804 264-9836 +roomNumber: 9177 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Norton Sapena,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norton Sapena +sn: Sapena +description: This is Norton Sapena's description +facsimileTelephoneNumber: +1 213 410-9753 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 580-6092 +title: Associate Product Testing Technician +userPassword: Password1 +uid: SapenaN +givenName: Norton +mail: SapenaN@07f011cc742c4813b7b97485646c3ab6.bitwarden.com +carLicense: F9BIXH +departmentNumber: 4742 +employeeType: Normal +homePhone: +1 213 464-2734 +initials: N. S. +mobile: +1 213 260-7608 +pager: +1 213 374-3725 +roomNumber: 9334 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tsugio Behlen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tsugio Behlen +sn: Behlen +description: This is Tsugio Behlen's description +facsimileTelephoneNumber: +1 510 117-5501 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 421-5497 +title: Associate Administrative Writer +userPassword: Password1 +uid: BehlenT +givenName: Tsugio +mail: BehlenT@c2594ac246a645e3be48149271f5e260.bitwarden.com +carLicense: U6HGV3 +departmentNumber: 8357 +employeeType: Contract +homePhone: +1 510 917-2960 +initials: T. B. +mobile: +1 510 418-4027 +pager: +1 510 511-9534 +roomNumber: 8866 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pammy Liu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pammy Liu +sn: Liu +description: This is Pammy Liu's description +facsimileTelephoneNumber: +1 804 435-6469 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 942-7412 +title: Junior Janitorial President +userPassword: Password1 +uid: LiuP +givenName: Pammy +mail: LiuP@81f849946be048ecbaea85d2b139bc46.bitwarden.com +carLicense: WSNG71 +departmentNumber: 3258 +employeeType: Contract +homePhone: +1 804 895-9995 +initials: P. L. +mobile: +1 804 955-4428 +pager: +1 804 437-2929 +roomNumber: 8552 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Deeyn Frie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deeyn Frie +sn: Frie +description: This is Deeyn Frie's description +facsimileTelephoneNumber: +1 415 754-7590 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 415 464-5004 +title: Chief Peons Consultant +userPassword: Password1 +uid: FrieD +givenName: Deeyn +mail: FrieD@4a53c85fc87e459ba535fa5859abd60b.bitwarden.com +carLicense: LMI62G +departmentNumber: 3882 +employeeType: Normal +homePhone: +1 415 948-3333 +initials: D. F. +mobile: +1 415 713-9129 +pager: +1 415 925-7423 +roomNumber: 8908 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dael Valliere,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dael Valliere +sn: Valliere +description: This is Dael Valliere's description +facsimileTelephoneNumber: +1 415 841-3587 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 322-8127 +title: Chief Management Artist +userPassword: Password1 +uid: VallierD +givenName: Dael +mail: VallierD@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com +carLicense: 3H3KSD +departmentNumber: 7980 +employeeType: Contract +homePhone: +1 415 651-9277 +initials: D. V. +mobile: +1 415 598-4368 +pager: +1 415 793-8803 +roomNumber: 8893 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duncan Lamedica +sn: Lamedica +description: This is Duncan Lamedica's description +facsimileTelephoneNumber: +1 804 405-1565 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 641-6808 +title: Associate Product Testing Czar +userPassword: Password1 +uid: LamedicD +givenName: Duncan +mail: LamedicD@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com +carLicense: VH81QW +departmentNumber: 6221 +employeeType: Normal +homePhone: +1 804 595-2591 +initials: D. L. +mobile: +1 804 760-5416 +pager: +1 804 136-7811 +roomNumber: 8116 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ranna Gentes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranna Gentes +sn: Gentes +description: This is Ranna Gentes's description +facsimileTelephoneNumber: +1 510 537-1744 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 224-9960 +title: Supreme Peons Consultant +userPassword: Password1 +uid: GentesR +givenName: Ranna +mail: GentesR@961e076dc422493d887f975af917cc23.bitwarden.com +carLicense: 7PK3OM +departmentNumber: 6680 +employeeType: Normal +homePhone: +1 510 456-9513 +initials: R. G. +mobile: +1 510 128-5358 +pager: +1 510 640-2150 +roomNumber: 8882 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Khue Trivedi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khue Trivedi +sn: Trivedi +description: This is Khue Trivedi's description +facsimileTelephoneNumber: +1 510 789-7751 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 660-7589 +title: Associate Administrative Consultant +userPassword: Password1 +uid: TrivediK +givenName: Khue +mail: TrivediK@4a5ee2294ea24b569a9468db2ebe9276.bitwarden.com +carLicense: RG9WJ8 +departmentNumber: 9728 +employeeType: Normal +homePhone: +1 510 538-9189 +initials: K. T. +mobile: +1 510 365-2835 +pager: +1 510 894-8726 +roomNumber: 8397 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=YuKai Holloway,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YuKai Holloway +sn: Holloway +description: This is YuKai Holloway's description +facsimileTelephoneNumber: +1 818 641-4476 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 359-9870 +title: Associate Janitorial Admin +userPassword: Password1 +uid: HollowaY +givenName: YuKai +mail: HollowaY@6bcd45269b3d4381b2e2ca25c28340c3.bitwarden.com +carLicense: V5OWKG +departmentNumber: 3958 +employeeType: Normal +homePhone: +1 818 962-7303 +initials: Y. H. +mobile: +1 818 221-4180 +pager: +1 818 116-7601 +roomNumber: 8675 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mrugesh Gaskins,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mrugesh Gaskins +sn: Gaskins +description: This is Mrugesh Gaskins's description +facsimileTelephoneNumber: +1 213 842-7056 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 926-1291 +title: Supreme Management Dictator +userPassword: Password1 +uid: GaskinsM +givenName: Mrugesh +mail: GaskinsM@417f3d03cdca4d2982386320914aed0a.bitwarden.com +carLicense: 7YX1W7 +departmentNumber: 5297 +employeeType: Employee +homePhone: +1 213 384-7880 +initials: M. G. +mobile: +1 213 496-3059 +pager: +1 213 916-6833 +roomNumber: 8849 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Belle Kilner,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belle Kilner +sn: Kilner +description: This is Belle Kilner's description +facsimileTelephoneNumber: +1 415 601-3695 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 166-9689 +title: Junior Management Vice President +userPassword: Password1 +uid: KilnerB +givenName: Belle +mail: KilnerB@f5efd1e9a39c413dbfa9f7e476ae7cea.bitwarden.com +carLicense: 1WQ0SR +departmentNumber: 3143 +employeeType: Normal +homePhone: +1 415 655-3388 +initials: B. K. +mobile: +1 415 120-7545 +pager: +1 415 732-1921 +roomNumber: 8518 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sieber Binnington,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sieber Binnington +sn: Binnington +description: This is Sieber Binnington's description +facsimileTelephoneNumber: +1 818 307-8518 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 499-5266 +title: Master Product Development Czar +userPassword: Password1 +uid: BinningS +givenName: Sieber +mail: BinningS@fed31b4a5e88497aacdfa11612ae4f8e.bitwarden.com +carLicense: JCW8LR +departmentNumber: 8951 +employeeType: Employee +homePhone: +1 818 230-8952 +initials: S. B. +mobile: +1 818 840-2994 +pager: +1 818 451-2866 +roomNumber: 8483 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nananne Bahl,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nananne Bahl +sn: Bahl +description: This is Nananne Bahl's description +facsimileTelephoneNumber: +1 408 178-5779 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 869-2600 +title: Master Administrative Assistant +userPassword: Password1 +uid: BahlN +givenName: Nananne +mail: BahlN@52d447bfc2464a51a20925b35098fffa.bitwarden.com +carLicense: MGHN6G +departmentNumber: 3789 +employeeType: Normal +homePhone: +1 408 437-5934 +initials: N. B. +mobile: +1 408 600-9324 +pager: +1 408 907-8504 +roomNumber: 8478 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eoin DuncanSmith +sn: DuncanSmith +description: This is Eoin DuncanSmith's description +facsimileTelephoneNumber: +1 415 442-9499 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 415 381-1064 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: DuncanSE +givenName: Eoin +mail: DuncanSE@f260a92a20974e44926d8337feae7384.bitwarden.com +carLicense: COXAM6 +departmentNumber: 6287 +employeeType: Contract +homePhone: +1 415 358-9235 +initials: E. D. +mobile: +1 415 476-9371 +pager: +1 415 963-7273 +roomNumber: 8106 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Selia Demers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selia Demers +sn: Demers +description: This is Selia Demers's description +facsimileTelephoneNumber: +1 804 479-2396 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 301-5319 +title: Junior Management Evangelist +userPassword: Password1 +uid: DemersS +givenName: Selia +mail: DemersS@351deec9477e4e51877822ae4f8cd070.bitwarden.com +carLicense: MWIWEP +departmentNumber: 2920 +employeeType: Employee +homePhone: +1 804 761-3154 +initials: S. D. +mobile: +1 804 734-4813 +pager: +1 804 552-2278 +roomNumber: 8847 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Karl Deployment,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karl Deployment +sn: Deployment +description: This is Karl Deployment's description +facsimileTelephoneNumber: +1 206 226-3292 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 330-8292 +title: Master Payroll Engineer +userPassword: Password1 +uid: DeploymK +givenName: Karl +mail: DeploymK@9c29c026596043feb2dca741308aa831.bitwarden.com +carLicense: BJGSWU +departmentNumber: 6015 +employeeType: Employee +homePhone: +1 206 560-4776 +initials: K. D. +mobile: +1 206 260-4295 +pager: +1 206 696-4192 +roomNumber: 8921 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lettie Wolczanski +sn: Wolczanski +description: This is Lettie Wolczanski's description +facsimileTelephoneNumber: +1 804 902-6056 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 739-5064 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: WolczanL +givenName: Lettie +mail: WolczanL@8bb7a419aa064dabb3a5664772478164.bitwarden.com +carLicense: SPF7Q7 +departmentNumber: 1417 +employeeType: Contract +homePhone: +1 804 102-1755 +initials: L. W. +mobile: +1 804 690-4722 +pager: +1 804 897-8355 +roomNumber: 9175 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jolene Eicher,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolene Eicher +sn: Eicher +description: This is Jolene Eicher's description +facsimileTelephoneNumber: +1 213 844-1594 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 332-7055 +title: Junior Product Testing Director +userPassword: Password1 +uid: EicherJ +givenName: Jolene +mail: EicherJ@1502db7fbe534bb781d285fc7f854a26.bitwarden.com +carLicense: BLP0BR +departmentNumber: 4119 +employeeType: Contract +homePhone: +1 213 385-7875 +initials: J. E. +mobile: +1 213 484-6477 +pager: +1 213 293-6870 +roomNumber: 8856 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Merridie Partello,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merridie Partello +sn: Partello +description: This is Merridie Partello's description +facsimileTelephoneNumber: +1 415 799-6699 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 909-7657 +title: Supreme Payroll Writer +userPassword: Password1 +uid: PartellM +givenName: Merridie +mail: PartellM@4b0cd35c3d8442a69514b96d040ad360.bitwarden.com +carLicense: HHBRVQ +departmentNumber: 5731 +employeeType: Employee +homePhone: +1 415 125-1133 +initials: M. P. +mobile: +1 415 100-2449 +pager: +1 415 643-9091 +roomNumber: 8195 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tae Hughson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tae Hughson +sn: Hughson +description: This is Tae Hughson's description +facsimileTelephoneNumber: +1 415 406-8614 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 389-6349 +title: Junior Janitorial Janitor +userPassword: Password1 +uid: HughsonT +givenName: Tae +mail: HughsonT@dd41899c65d54e2a93ab78ead0e2ad6e.bitwarden.com +carLicense: JMP7RF +departmentNumber: 8403 +employeeType: Contract +homePhone: +1 415 462-4753 +initials: T. H. +mobile: +1 415 480-6106 +pager: +1 415 983-5950 +roomNumber: 8047 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bobbye Cech,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobbye Cech +sn: Cech +description: This is Bobbye Cech's description +facsimileTelephoneNumber: +1 408 986-4724 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 420-8112 +title: Associate Administrative Czar +userPassword: Password1 +uid: CechB +givenName: Bobbye +mail: CechB@fc31450cfbdf4f968a1e2c143050e9ed.bitwarden.com +carLicense: LH536Y +departmentNumber: 7811 +employeeType: Contract +homePhone: +1 408 835-1279 +initials: B. C. +mobile: +1 408 884-1082 +pager: +1 408 386-4826 +roomNumber: 8144 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tandy Nilsson +sn: Nilsson +description: This is Tandy Nilsson's description +facsimileTelephoneNumber: +1 213 243-1418 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 262-3207 +title: Chief Human Resources Czar +userPassword: Password1 +uid: NilssonT +givenName: Tandy +mail: NilssonT@7961400fc48646dcae2a3636e26ff106.bitwarden.com +carLicense: FGV39O +departmentNumber: 2892 +employeeType: Contract +homePhone: +1 213 295-2838 +initials: T. N. +mobile: +1 213 294-1580 +pager: +1 213 163-6765 +roomNumber: 8914 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Drucy Serour,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drucy Serour +sn: Serour +description: This is Drucy Serour's description +facsimileTelephoneNumber: +1 213 205-3581 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 860-6278 +title: Chief Payroll Assistant +userPassword: Password1 +uid: SerourD +givenName: Drucy +mail: SerourD@2f4fde2fad2147578d67cd017f823be6.bitwarden.com +carLicense: E89QVT +departmentNumber: 9357 +employeeType: Contract +homePhone: +1 213 857-2349 +initials: D. S. +mobile: +1 213 957-7568 +pager: +1 213 160-8436 +roomNumber: 8958 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abbi Gerlinsky +sn: Gerlinsky +description: This is Abbi Gerlinsky's description +facsimileTelephoneNumber: +1 213 763-5521 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 213 331-2500 +title: Junior Product Development Mascot +userPassword: Password1 +uid: GerlinsA +givenName: Abbi +mail: GerlinsA@7341939506294cf3bdd4bdeca7674074.bitwarden.com +carLicense: FBL592 +departmentNumber: 7471 +employeeType: Normal +homePhone: +1 213 313-1407 +initials: A. G. +mobile: +1 213 375-6229 +pager: +1 213 778-5017 +roomNumber: 8728 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Elnore Alvaro,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elnore Alvaro +sn: Alvaro +description: This is Elnore Alvaro's description +facsimileTelephoneNumber: +1 818 400-3980 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 271-7243 +title: Master Management Punk +userPassword: Password1 +uid: AlvaroE +givenName: Elnore +mail: AlvaroE@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com +carLicense: STID6J +departmentNumber: 9471 +employeeType: Contract +homePhone: +1 818 347-9627 +initials: E. A. +mobile: +1 818 456-5578 +pager: +1 818 126-9013 +roomNumber: 8503 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Briney Emery,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Briney Emery +sn: Emery +description: This is Briney Emery's description +facsimileTelephoneNumber: +1 408 904-4266 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 879-9889 +title: Supreme Human Resources Evangelist +userPassword: Password1 +uid: EmeryB +givenName: Briney +mail: EmeryB@99d73507cedb4612b4870c40410d79f7.bitwarden.com +carLicense: 2AOPH0 +departmentNumber: 6079 +employeeType: Employee +homePhone: +1 408 955-3829 +initials: B. E. +mobile: +1 408 191-9280 +pager: +1 408 160-1347 +roomNumber: 9674 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yukinobu Gandhi +sn: Gandhi +description: This is Yukinobu Gandhi's description +facsimileTelephoneNumber: +1 408 353-1105 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 364-6267 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: GandhiY +givenName: Yukinobu +mail: GandhiY@001f8a7cac5e4e5289e4b851c2ff301c.bitwarden.com +carLicense: TV54Y8 +departmentNumber: 5698 +employeeType: Normal +homePhone: +1 408 875-7459 +initials: Y. G. +mobile: +1 408 227-9563 +pager: +1 408 298-5498 +roomNumber: 9814 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dawn Shubaly,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dawn Shubaly +sn: Shubaly +description: This is Dawn Shubaly's description +facsimileTelephoneNumber: +1 804 446-1480 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 195-4445 +title: Chief Administrative Mascot +userPassword: Password1 +uid: ShubalyD +givenName: Dawn +mail: ShubalyD@8fb9d9d0bee6452fa8938ef7b2ecd6d2.bitwarden.com +carLicense: 156UL7 +departmentNumber: 4399 +employeeType: Normal +homePhone: +1 804 204-9444 +initials: D. S. +mobile: +1 804 970-7294 +pager: +1 804 986-9098 +roomNumber: 9692 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leny Redway,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leny Redway +sn: Redway +description: This is Leny Redway's description +facsimileTelephoneNumber: +1 818 505-6676 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 540-4913 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: RedwayL +givenName: Leny +mail: RedwayL@95fa7f3851674364944296f3d3c2378d.bitwarden.com +carLicense: BPE0XX +departmentNumber: 4916 +employeeType: Employee +homePhone: +1 818 480-8044 +initials: L. R. +mobile: +1 818 906-5316 +pager: +1 818 429-7146 +roomNumber: 8683 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Augusto Mather,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Augusto Mather +sn: Mather +description: This is Augusto Mather's description +facsimileTelephoneNumber: +1 408 155-8153 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 600-7093 +title: Supreme Product Development Pinhead +userPassword: Password1 +uid: MatherA +givenName: Augusto +mail: MatherA@ab120df6e5194bf6ac6a830bba26f7f2.bitwarden.com +carLicense: K1ER03 +departmentNumber: 1833 +employeeType: Employee +homePhone: +1 408 720-9411 +initials: A. M. +mobile: +1 408 562-8418 +pager: +1 408 179-1981 +roomNumber: 9567 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ingeborg OHagan +sn: OHagan +description: This is Ingeborg OHagan's description +facsimileTelephoneNumber: +1 206 928-5958 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 912-7487 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: OHaganI +givenName: Ingeborg +mail: OHaganI@ae98974593454858b3cb78d7db1b60ba.bitwarden.com +carLicense: 07KL23 +departmentNumber: 3213 +employeeType: Normal +homePhone: +1 206 696-7893 +initials: I. O. +mobile: +1 206 306-2584 +pager: +1 206 860-2693 +roomNumber: 8982 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Biplab Natale,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Biplab Natale +sn: Natale +description: This is Biplab Natale's description +facsimileTelephoneNumber: +1 408 809-1372 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 604-7987 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: NataleB +givenName: Biplab +mail: NataleB@848af8a22f514cf2b666369164b5e04f.bitwarden.com +carLicense: 6PXN7D +departmentNumber: 2499 +employeeType: Contract +homePhone: +1 408 566-4441 +initials: B. N. +mobile: +1 408 963-7385 +pager: +1 408 995-2928 +roomNumber: 8649 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ninon Coffey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninon Coffey +sn: Coffey +description: This is Ninon Coffey's description +facsimileTelephoneNumber: +1 804 989-5034 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 167-7629 +title: Chief Peons Developer +userPassword: Password1 +uid: CoffeyN +givenName: Ninon +mail: CoffeyN@fc0265cf65f44283987530dbcb25d095.bitwarden.com +carLicense: U0OCFX +departmentNumber: 8195 +employeeType: Contract +homePhone: +1 804 578-8689 +initials: N. C. +mobile: +1 804 212-6904 +pager: +1 804 232-1853 +roomNumber: 9260 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryLynn Gerritse +sn: Gerritse +description: This is MaryLynn Gerritse's description +facsimileTelephoneNumber: +1 818 306-9879 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 201-5878 +title: Junior Janitorial Czar +userPassword: Password1 +uid: GerritsM +givenName: MaryLynn +mail: GerritsM@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com +carLicense: UDPI2X +departmentNumber: 2922 +employeeType: Contract +homePhone: +1 818 163-5129 +initials: M. G. +mobile: +1 818 103-1781 +pager: +1 818 785-3072 +roomNumber: 8006 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jillana Walkowiak +sn: Walkowiak +description: This is Jillana Walkowiak's description +facsimileTelephoneNumber: +1 818 121-5015 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 910-7389 +title: Master Product Development Pinhead +userPassword: Password1 +uid: WalkowiJ +givenName: Jillana +mail: WalkowiJ@c422d301a0d34f1090b55f1c8625409d.bitwarden.com +carLicense: HKGN8I +departmentNumber: 7745 +employeeType: Contract +homePhone: +1 818 955-6442 +initials: J. W. +mobile: +1 818 362-3123 +pager: +1 818 642-9646 +roomNumber: 9562 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rasia Jauvin +sn: Jauvin +description: This is Rasia Jauvin's description +facsimileTelephoneNumber: +1 510 898-9467 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 101-4236 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: JauvinR +givenName: Rasia +mail: JauvinR@dc389f3c42ad495288e841e30bcf37cb.bitwarden.com +carLicense: 21QW96 +departmentNumber: 9111 +employeeType: Contract +homePhone: +1 510 610-4064 +initials: R. J. +mobile: +1 510 632-9414 +pager: +1 510 396-2762 +roomNumber: 9970 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nando Masterplan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nando Masterplan +sn: Masterplan +description: This is Nando Masterplan's description +facsimileTelephoneNumber: +1 818 603-7399 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 596-8220 +title: Supreme Peons Writer +userPassword: Password1 +uid: MasterpN +givenName: Nando +mail: MasterpN@7b57b8e19b5b443b99958998ffeb1b88.bitwarden.com +carLicense: 3FF3JA +departmentNumber: 1823 +employeeType: Normal +homePhone: +1 818 193-7419 +initials: N. M. +mobile: +1 818 389-8782 +pager: +1 818 854-5791 +roomNumber: 9428 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Farouk Closson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farouk Closson +sn: Closson +description: This is Farouk Closson's description +facsimileTelephoneNumber: +1 206 340-1830 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 939-6546 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: ClossonF +givenName: Farouk +mail: ClossonF@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com +carLicense: XE92V9 +departmentNumber: 3532 +employeeType: Contract +homePhone: +1 206 323-7589 +initials: F. C. +mobile: +1 206 231-7096 +pager: +1 206 170-8116 +roomNumber: 8590 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jacob Andress,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacob Andress +sn: Andress +description: This is Jacob Andress's description +facsimileTelephoneNumber: +1 804 482-2401 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 391-6004 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: AndressJ +givenName: Jacob +mail: AndressJ@3714ef07d9f24410a85dd847beb54eef.bitwarden.com +carLicense: C4XIEC +departmentNumber: 2920 +employeeType: Normal +homePhone: +1 804 543-3425 +initials: J. A. +mobile: +1 804 395-1502 +pager: +1 804 780-3358 +roomNumber: 8511 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tarrah Pavlovic +sn: Pavlovic +description: This is Tarrah Pavlovic's description +facsimileTelephoneNumber: +1 213 137-6554 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 220-4834 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: PavloviT +givenName: Tarrah +mail: PavloviT@8eab0f58e984423689a3d31e38a978a5.bitwarden.com +carLicense: FK842T +departmentNumber: 3898 +employeeType: Normal +homePhone: +1 213 859-7179 +initials: T. P. +mobile: +1 213 861-6444 +pager: +1 213 570-1236 +roomNumber: 8023 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Fikre Mau,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fikre Mau +sn: Mau +description: This is Fikre Mau's description +facsimileTelephoneNumber: +1 206 785-7559 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 951-5576 +title: Master Product Testing Mascot +userPassword: Password1 +uid: MauF +givenName: Fikre +mail: MauF@1338f84446e746bcb89eff436fef936e.bitwarden.com +carLicense: MNSNGE +departmentNumber: 7231 +employeeType: Normal +homePhone: +1 206 609-2997 +initials: F. M. +mobile: +1 206 550-5871 +pager: +1 206 732-4741 +roomNumber: 8205 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zan StPierre,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zan StPierre +sn: StPierre +description: This is Zan StPierre's description +facsimileTelephoneNumber: +1 818 714-3961 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 599-3822 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: StPierrZ +givenName: Zan +mail: StPierrZ@92fe5cbd6cdf40f6b7c15b840696af7e.bitwarden.com +carLicense: 915WDC +departmentNumber: 2572 +employeeType: Normal +homePhone: +1 818 463-6090 +initials: Z. S. +mobile: +1 818 118-6164 +pager: +1 818 639-8548 +roomNumber: 9986 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Michigan Callaghan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michigan Callaghan +sn: Callaghan +description: This is Michigan Callaghan's description +facsimileTelephoneNumber: +1 415 771-4385 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 830-2526 +title: Chief Peons Warrior +userPassword: Password1 +uid: CallaghM +givenName: Michigan +mail: CallaghM@c60b8ebb120748e9aeaff4e4a09ef9ba.bitwarden.com +carLicense: KH4APK +departmentNumber: 6421 +employeeType: Normal +homePhone: +1 415 573-5885 +initials: M. C. +mobile: +1 415 360-7592 +pager: +1 415 717-3904 +roomNumber: 9404 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vesna Suharly,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vesna Suharly +sn: Suharly +description: This is Vesna Suharly's description +facsimileTelephoneNumber: +1 408 950-9385 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 315-5871 +title: Junior Product Testing Consultant +userPassword: Password1 +uid: SuharlyV +givenName: Vesna +mail: SuharlyV@3d0b74ed23c14257ade0d3e35d022c48.bitwarden.com +carLicense: HMCJF8 +departmentNumber: 8396 +employeeType: Contract +homePhone: +1 408 208-8022 +initials: V. S. +mobile: +1 408 554-8276 +pager: +1 408 542-8440 +roomNumber: 8432 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lanette Kardomateas +sn: Kardomateas +description: This is Lanette Kardomateas's description +facsimileTelephoneNumber: +1 415 932-3549 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 415 458-9714 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: KardomaL +givenName: Lanette +mail: KardomaL@10f6046d05e14243ad22c391397b791c.bitwarden.com +carLicense: CJIFYY +departmentNumber: 9639 +employeeType: Normal +homePhone: +1 415 441-8601 +initials: L. K. +mobile: +1 415 289-8647 +pager: +1 415 706-5109 +roomNumber: 8736 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maurise Travers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurise Travers +sn: Travers +description: This is Maurise Travers's description +facsimileTelephoneNumber: +1 818 315-4678 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 599-9648 +title: Master Management Pinhead +userPassword: Password1 +uid: TraversM +givenName: Maurise +mail: TraversM@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com +carLicense: 5XH026 +departmentNumber: 6585 +employeeType: Contract +homePhone: +1 818 749-6539 +initials: M. T. +mobile: +1 818 814-2480 +pager: +1 818 231-1031 +roomNumber: 8164 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Loella Herve,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loella Herve +sn: Herve +description: This is Loella Herve's description +facsimileTelephoneNumber: +1 510 841-7844 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 753-7202 +title: Associate Human Resources Stooge +userPassword: Password1 +uid: HerveL +givenName: Loella +mail: HerveL@574e924f60604e60bceaae691ad7a17d.bitwarden.com +carLicense: BYNCAB +departmentNumber: 9565 +employeeType: Contract +homePhone: +1 510 847-2616 +initials: L. H. +mobile: +1 510 133-2676 +pager: +1 510 456-4261 +roomNumber: 8414 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nettle Zadorozny +sn: Zadorozny +description: This is Nettle Zadorozny's description +facsimileTelephoneNumber: +1 510 868-4036 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 696-4993 +title: Associate Janitorial Writer +userPassword: Password1 +uid: ZadorozN +givenName: Nettle +mail: ZadorozN@a9a16c4a0f7545639cb0982e970e6363.bitwarden.com +carLicense: BE80HC +departmentNumber: 9687 +employeeType: Employee +homePhone: +1 510 340-6193 +initials: N. Z. +mobile: +1 510 579-2874 +pager: +1 510 202-2587 +roomNumber: 9265 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Libbi Marting,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Libbi Marting +sn: Marting +description: This is Libbi Marting's description +facsimileTelephoneNumber: +1 408 176-9997 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 358-1549 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: MartingL +givenName: Libbi +mail: MartingL@8561abc417794d6f8b59aa13dc9be3a5.bitwarden.com +carLicense: 3QTKP7 +departmentNumber: 2024 +employeeType: Contract +homePhone: +1 408 524-1450 +initials: L. M. +mobile: +1 408 739-1601 +pager: +1 408 613-4439 +roomNumber: 8503 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Derrick Myatt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Derrick Myatt +sn: Myatt +description: This is Derrick Myatt's description +facsimileTelephoneNumber: +1 206 246-2440 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 325-2208 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: MyattD +givenName: Derrick +mail: MyattD@8d9527606cc64fa5ab4d6b7792482537.bitwarden.com +carLicense: B4B0U5 +departmentNumber: 4288 +employeeType: Normal +homePhone: +1 206 771-7029 +initials: D. M. +mobile: +1 206 332-6059 +pager: +1 206 591-6413 +roomNumber: 9911 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katharina Nemeth +sn: Nemeth +description: This is Katharina Nemeth's description +facsimileTelephoneNumber: +1 818 138-6513 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 754-5911 +title: Junior Product Testing Madonna +userPassword: Password1 +uid: NemethK +givenName: Katharina +mail: NemethK@8cbfe8f2cf8846329398b1f2552e48e4.bitwarden.com +carLicense: PV6Q76 +departmentNumber: 3532 +employeeType: Employee +homePhone: +1 818 615-9560 +initials: K. N. +mobile: +1 818 867-2181 +pager: +1 818 828-3706 +roomNumber: 8266 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhanvinder Kenyon +sn: Kenyon +description: This is Dhanvinder Kenyon's description +facsimileTelephoneNumber: +1 408 610-2775 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 167-4590 +title: Chief Janitorial Visionary +userPassword: Password1 +uid: KenyonD +givenName: Dhanvinder +mail: KenyonD@c0e366bec54b485a8d61f1970ea7c375.bitwarden.com +carLicense: ULJ7Q0 +departmentNumber: 8733 +employeeType: Employee +homePhone: +1 408 441-5249 +initials: D. K. +mobile: +1 408 627-8977 +pager: +1 408 153-2165 +roomNumber: 9421 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chelsey Emond,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsey Emond +sn: Emond +description: This is Chelsey Emond's description +facsimileTelephoneNumber: +1 213 401-1992 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 940-8113 +title: Associate Janitorial Writer +userPassword: Password1 +uid: EmondC +givenName: Chelsey +mail: EmondC@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com +carLicense: LIK99U +departmentNumber: 3469 +employeeType: Normal +homePhone: +1 213 766-5974 +initials: C. E. +mobile: +1 213 370-9797 +pager: +1 213 449-6149 +roomNumber: 9109 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meredith Saulnier +sn: Saulnier +description: This is Meredith Saulnier's description +facsimileTelephoneNumber: +1 408 293-9984 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 727-3856 +title: Master Human Resources Technician +userPassword: Password1 +uid: SaulnieM +givenName: Meredith +mail: SaulnieM@c8e189f083634334a1fd0d200a0183f2.bitwarden.com +carLicense: 1KCER4 +departmentNumber: 9964 +employeeType: Employee +homePhone: +1 408 761-3400 +initials: M. S. +mobile: +1 408 311-9774 +pager: +1 408 527-8708 +roomNumber: 9963 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Harvey Jugandi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harvey Jugandi +sn: Jugandi +description: This is Harvey Jugandi's description +facsimileTelephoneNumber: +1 415 572-1384 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 277-2432 +title: Supreme Administrative Architect +userPassword: Password1 +uid: JugandiH +givenName: Harvey +mail: JugandiH@b72b425950224ff1bc807aa369857e89.bitwarden.com +carLicense: WSQT86 +departmentNumber: 9645 +employeeType: Employee +homePhone: +1 415 628-7790 +initials: H. J. +mobile: +1 415 989-2851 +pager: +1 415 850-9457 +roomNumber: 9385 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ida Sydor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ida Sydor +sn: Sydor +description: This is Ida Sydor's description +facsimileTelephoneNumber: +1 804 366-4444 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 804 869-2483 +title: Chief Peons Dictator +userPassword: Password1 +uid: SydorI +givenName: Ida +mail: SydorI@17268a5e22084b1a83cdf837a0887b9e.bitwarden.com +carLicense: TKCJB4 +departmentNumber: 2729 +employeeType: Normal +homePhone: +1 804 888-8309 +initials: I. S. +mobile: +1 804 573-9143 +pager: +1 804 373-9049 +roomNumber: 9635 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geneva Stroemer +sn: Stroemer +description: This is Geneva Stroemer's description +facsimileTelephoneNumber: +1 804 902-7141 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 409-6699 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: StroemeG +givenName: Geneva +mail: StroemeG@063f46f6e3c34f628dc59cd54e082665.bitwarden.com +carLicense: T0GCFJ +departmentNumber: 3690 +employeeType: Normal +homePhone: +1 804 675-1408 +initials: G. S. +mobile: +1 804 571-5955 +pager: +1 804 198-8541 +roomNumber: 9100 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=MingMing Wagoner,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MingMing Wagoner +sn: Wagoner +description: This is MingMing Wagoner's description +facsimileTelephoneNumber: +1 213 433-6459 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 213 645-8804 +title: Associate Payroll Writer +userPassword: Password1 +uid: WagonerM +givenName: MingMing +mail: WagonerM@221b1a64a2b0473e979b63298baf53a8.bitwarden.com +carLicense: 0VRTL1 +departmentNumber: 1291 +employeeType: Employee +homePhone: +1 213 873-5621 +initials: M. W. +mobile: +1 213 121-5326 +pager: +1 213 781-6511 +roomNumber: 9753 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shena Joudrey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shena Joudrey +sn: Joudrey +description: This is Shena Joudrey's description +facsimileTelephoneNumber: +1 213 440-8435 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 199-5905 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: JoudreyS +givenName: Shena +mail: JoudreyS@fc250c767129499c871d245494e9d9b6.bitwarden.com +carLicense: AG0F1H +departmentNumber: 6987 +employeeType: Contract +homePhone: +1 213 514-3240 +initials: S. J. +mobile: +1 213 466-1220 +pager: +1 213 673-9437 +roomNumber: 8579 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lurline Nickell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lurline Nickell +sn: Nickell +description: This is Lurline Nickell's description +facsimileTelephoneNumber: +1 510 564-9932 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 983-4548 +title: Associate Product Development Mascot +userPassword: Password1 +uid: NickellL +givenName: Lurline +mail: NickellL@a4626a0d04a64c1083f47ce852f633ad.bitwarden.com +carLicense: O05K47 +departmentNumber: 7111 +employeeType: Employee +homePhone: +1 510 566-5604 +initials: L. N. +mobile: +1 510 238-2853 +pager: +1 510 402-8045 +roomNumber: 9504 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Camilla Njo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camilla Njo +sn: Njo +description: This is Camilla Njo's description +facsimileTelephoneNumber: +1 206 792-6269 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 171-2109 +title: Supreme Product Testing Engineer +userPassword: Password1 +uid: NjoC +givenName: Camilla +mail: NjoC@519077386b7144648a1af65801ba340e.bitwarden.com +carLicense: NO7XIX +departmentNumber: 7484 +employeeType: Employee +homePhone: +1 206 449-8029 +initials: C. N. +mobile: +1 206 765-4230 +pager: +1 206 546-2906 +roomNumber: 9458 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dannie Levesque,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dannie Levesque +sn: Levesque +description: This is Dannie Levesque's description +facsimileTelephoneNumber: +1 804 150-8175 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 804 299-5844 +title: Master Product Development Mascot +userPassword: Password1 +uid: LevesquD +givenName: Dannie +mail: LevesquD@76847a02189543c09ebc787f6f723eab.bitwarden.com +carLicense: F8QMQW +departmentNumber: 6377 +employeeType: Employee +homePhone: +1 804 354-3472 +initials: D. L. +mobile: +1 804 909-5450 +pager: +1 804 973-9044 +roomNumber: 9039 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tarah Melanson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tarah Melanson +sn: Melanson +description: This is Tarah Melanson's description +facsimileTelephoneNumber: +1 818 918-3764 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 818 505-3776 +title: Chief Product Testing Technician +userPassword: Password1 +uid: MelansoT +givenName: Tarah +mail: MelansoT@ba2be91aa4064d8bbc344c883875d66e.bitwarden.com +carLicense: J6XYIG +departmentNumber: 1360 +employeeType: Employee +homePhone: +1 818 216-4105 +initials: T. M. +mobile: +1 818 152-3915 +pager: +1 818 855-7560 +roomNumber: 9168 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Phan Srinivasan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phan Srinivasan +sn: Srinivasan +description: This is Phan Srinivasan's description +facsimileTelephoneNumber: +1 510 628-6145 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 788-6843 +title: Chief Payroll Artist +userPassword: Password1 +uid: SrinivaP +givenName: Phan +mail: SrinivaP@142b52bc05a84c80a55df6addbd72e6b.bitwarden.com +carLicense: OO8DO7 +departmentNumber: 3133 +employeeType: Contract +homePhone: +1 510 176-4127 +initials: P. S. +mobile: +1 510 302-2272 +pager: +1 510 726-2109 +roomNumber: 9036 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ibby Sundar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ibby Sundar +sn: Sundar +description: This is Ibby Sundar's description +facsimileTelephoneNumber: +1 415 650-7236 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 337-4642 +title: Supreme Product Development Czar +userPassword: Password1 +uid: SundarI +givenName: Ibby +mail: SundarI@f89f635a8be04a889dbefd8a681219c7.bitwarden.com +carLicense: H2B3LT +departmentNumber: 6211 +employeeType: Normal +homePhone: +1 415 749-2831 +initials: I. S. +mobile: +1 415 407-2941 +pager: +1 415 630-5361 +roomNumber: 8986 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jerald Battiston,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jerald Battiston +sn: Battiston +description: This is Jerald Battiston's description +facsimileTelephoneNumber: +1 408 605-3886 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 576-1110 +title: Junior Administrative Director +userPassword: Password1 +uid: BattistJ +givenName: Jerald +mail: BattistJ@d7af2d36201f488d997c6f7eea13f491.bitwarden.com +carLicense: 8SQKXX +departmentNumber: 8750 +employeeType: Contract +homePhone: +1 408 662-3113 +initials: J. B. +mobile: +1 408 799-2566 +pager: +1 408 382-5623 +roomNumber: 9454 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rorie Freno,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rorie Freno +sn: Freno +description: This is Rorie Freno's description +facsimileTelephoneNumber: +1 818 546-9767 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 818 761-4352 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: FrenoR +givenName: Rorie +mail: FrenoR@f94a06ac8f314213b758728f67a159f8.bitwarden.com +carLicense: OTHXN5 +departmentNumber: 2873 +employeeType: Contract +homePhone: +1 818 858-5026 +initials: R. F. +mobile: +1 818 166-4056 +pager: +1 818 153-9928 +roomNumber: 9017 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Howie Jubenville,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Howie Jubenville +sn: Jubenville +description: This is Howie Jubenville's description +facsimileTelephoneNumber: +1 213 137-7351 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 213 174-3145 +title: Associate Product Development Fellow +userPassword: Password1 +uid: JubenviH +givenName: Howie +mail: JubenviH@077838522ab04e7fa5ae528e1ed00284.bitwarden.com +carLicense: 9XEKSO +departmentNumber: 3416 +employeeType: Normal +homePhone: +1 213 403-2306 +initials: H. J. +mobile: +1 213 261-2864 +pager: +1 213 172-1367 +roomNumber: 9860 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Neely Dudas,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neely Dudas +sn: Dudas +description: This is Neely Dudas's description +facsimileTelephoneNumber: +1 818 281-5036 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 818 795-3035 +title: Supreme Product Development Czar +userPassword: Password1 +uid: DudasN +givenName: Neely +mail: DudasN@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com +carLicense: 4E4G2A +departmentNumber: 2762 +employeeType: Normal +homePhone: +1 818 136-1037 +initials: N. D. +mobile: +1 818 440-1849 +pager: +1 818 948-1641 +roomNumber: 8002 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sohale Edmxtest +sn: Edmxtest +description: This is Sohale Edmxtest's description +facsimileTelephoneNumber: +1 213 202-4726 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 181-3408 +title: Junior Human Resources Consultant +userPassword: Password1 +uid: EdmxtesS +givenName: Sohale +mail: EdmxtesS@91469109e9e74dbeada032db2abfd838.bitwarden.com +carLicense: 0H7XQ4 +departmentNumber: 9147 +employeeType: Contract +homePhone: +1 213 639-8944 +initials: S. E. +mobile: +1 213 857-9562 +pager: +1 213 446-8801 +roomNumber: 9466 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annamaria Finnerty +sn: Finnerty +description: This is Annamaria Finnerty's description +facsimileTelephoneNumber: +1 510 483-4366 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 123-6210 +title: Master Product Development Mascot +userPassword: Password1 +uid: FinnertA +givenName: Annamaria +mail: FinnertA@8d2bde7cc8a74ac5887aa1747493b68d.bitwarden.com +carLicense: MB55UD +departmentNumber: 8678 +employeeType: Contract +homePhone: +1 510 207-4427 +initials: A. F. +mobile: +1 510 515-4935 +pager: +1 510 900-2183 +roomNumber: 9168 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fawne Thibeault +sn: Thibeault +description: This is Fawne Thibeault's description +facsimileTelephoneNumber: +1 415 328-1217 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 852-3135 +title: Chief Product Testing Admin +userPassword: Password1 +uid: ThibeauF +givenName: Fawne +mail: ThibeauF@0ddc496dccad4aaf85619cae07f217f7.bitwarden.com +carLicense: E7O7SA +departmentNumber: 2748 +employeeType: Contract +homePhone: +1 415 506-4779 +initials: F. T. +mobile: +1 415 124-3349 +pager: +1 415 236-6223 +roomNumber: 8725 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kennon Risto,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kennon Risto +sn: Risto +description: This is Kennon Risto's description +facsimileTelephoneNumber: +1 804 600-1462 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 489-7683 +title: Junior Product Testing Admin +userPassword: Password1 +uid: RistoK +givenName: Kennon +mail: RistoK@516b0fff20e84be4bd74141b3a98052f.bitwarden.com +carLicense: 62I95S +departmentNumber: 2329 +employeeType: Normal +homePhone: +1 804 251-2786 +initials: K. R. +mobile: +1 804 789-1066 +pager: +1 804 601-6100 +roomNumber: 9118 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jimson McVey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jimson McVey +sn: McVey +description: This is Jimson McVey's description +facsimileTelephoneNumber: +1 510 321-4040 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 510 840-3929 +title: Junior Administrative Fellow +userPassword: Password1 +uid: McVeyJ +givenName: Jimson +mail: McVeyJ@4a145fc9121947ce8b995d7a67929715.bitwarden.com +carLicense: DD6DRD +departmentNumber: 3864 +employeeType: Employee +homePhone: +1 510 786-6027 +initials: J. M. +mobile: +1 510 403-5157 +pager: +1 510 126-2175 +roomNumber: 9238 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Elisabet Deicher,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elisabet Deicher +sn: Deicher +description: This is Elisabet Deicher's description +facsimileTelephoneNumber: +1 213 187-1901 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 587-4909 +title: Associate Payroll Czar +userPassword: Password1 +uid: DeicherE +givenName: Elisabet +mail: DeicherE@bf1b7c9bff4a47609eb686872f73e291.bitwarden.com +carLicense: 3DXBJ5 +departmentNumber: 9520 +employeeType: Normal +homePhone: +1 213 806-9194 +initials: E. D. +mobile: +1 213 205-8308 +pager: +1 213 237-7436 +roomNumber: 8326 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Amye Barritt,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amye Barritt +sn: Barritt +description: This is Amye Barritt's description +facsimileTelephoneNumber: +1 206 117-9489 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 119-4898 +title: Chief Administrative Writer +userPassword: Password1 +uid: BarrittA +givenName: Amye +mail: BarrittA@b06576e7cc594af79143f743174735e0.bitwarden.com +carLicense: IHKRSE +departmentNumber: 2715 +employeeType: Normal +homePhone: +1 206 158-4266 +initials: A. B. +mobile: +1 206 777-7079 +pager: +1 206 435-2769 +roomNumber: 9024 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Corry Ivett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corry Ivett +sn: Ivett +description: This is Corry Ivett's description +facsimileTelephoneNumber: +1 818 430-5403 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 319-5016 +title: Associate Human Resources Stooge +userPassword: Password1 +uid: IvettC +givenName: Corry +mail: IvettC@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com +carLicense: 96O8R5 +departmentNumber: 8063 +employeeType: Employee +homePhone: +1 818 209-2939 +initials: C. I. +mobile: +1 818 953-7908 +pager: +1 818 901-4378 +roomNumber: 9096 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Adan Kelkar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adan Kelkar +sn: Kelkar +description: This is Adan Kelkar's description +facsimileTelephoneNumber: +1 804 851-3680 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 517-9581 +title: Associate Product Testing President +userPassword: Password1 +uid: KelkarA +givenName: Adan +mail: KelkarA@0c0d598f6d704fe4b60b7d7dc8951e3a.bitwarden.com +carLicense: 3NCQOT +departmentNumber: 5087 +employeeType: Employee +homePhone: +1 804 118-6229 +initials: A. K. +mobile: +1 804 480-1978 +pager: +1 804 304-9136 +roomNumber: 8379 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ross Sepko,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ross Sepko +sn: Sepko +description: This is Ross Sepko's description +facsimileTelephoneNumber: +1 415 202-5048 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 398-7735 +title: Associate Management Technician +userPassword: Password1 +uid: SepkoR +givenName: Ross +mail: SepkoR@6e39649cbd0445acb57079f77e401bb6.bitwarden.com +carLicense: ASONHD +departmentNumber: 5810 +employeeType: Employee +homePhone: +1 415 961-4376 +initials: R. S. +mobile: +1 415 830-5559 +pager: +1 415 452-7286 +roomNumber: 9828 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronneke Dadkhah +sn: Dadkhah +description: This is Ronneke Dadkhah's description +facsimileTelephoneNumber: +1 415 587-6175 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 492-2383 +title: Supreme Human Resources Artist +userPassword: Password1 +uid: DadkhahR +givenName: Ronneke +mail: DadkhahR@fa77f7a366264da6a4e9ab74eb89c64c.bitwarden.com +carLicense: WH3IEF +departmentNumber: 3366 +employeeType: Normal +homePhone: +1 415 488-9371 +initials: R. D. +mobile: +1 415 959-4718 +pager: +1 415 126-7866 +roomNumber: 8425 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Apryle Davy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Apryle Davy +sn: Davy +description: This is Apryle Davy's description +facsimileTelephoneNumber: +1 206 406-8880 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 338-1556 +title: Chief Administrative Warrior +userPassword: Password1 +uid: DavyA +givenName: Apryle +mail: DavyA@0033304ecf264958be4e3649e61343d9.bitwarden.com +carLicense: LFDQCK +departmentNumber: 4350 +employeeType: Employee +homePhone: +1 206 835-5899 +initials: A. D. +mobile: +1 206 465-9086 +pager: +1 206 324-1583 +roomNumber: 9814 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lecien Akrawi +sn: Akrawi +description: This is Lecien Akrawi's description +facsimileTelephoneNumber: +1 510 566-2375 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 990-7077 +title: Master Product Testing Fellow +userPassword: Password1 +uid: AkrawiL +givenName: Lecien +mail: AkrawiL@86bd838434bd44c0b1970d4b53f78a53.bitwarden.com +carLicense: 3UYR45 +departmentNumber: 8623 +employeeType: Contract +homePhone: +1 510 577-3352 +initials: L. A. +mobile: +1 510 783-8252 +pager: +1 510 729-8700 +roomNumber: 9705 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carlota Inoue,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlota Inoue +sn: Inoue +description: This is Carlota Inoue's description +facsimileTelephoneNumber: +1 206 997-8304 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 902-2736 +title: Junior Product Development Manager +userPassword: Password1 +uid: InoueC +givenName: Carlota +mail: InoueC@13e3dc6812b646519614bfe380e524a9.bitwarden.com +carLicense: WM1TWF +departmentNumber: 8329 +employeeType: Normal +homePhone: +1 206 851-7588 +initials: C. I. +mobile: +1 206 938-8642 +pager: +1 206 706-1302 +roomNumber: 9342 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leanne Smolin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leanne Smolin +sn: Smolin +description: This is Leanne Smolin's description +facsimileTelephoneNumber: +1 213 780-5640 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 523-6788 +title: Associate Payroll Madonna +userPassword: Password1 +uid: SmolinL +givenName: Leanne +mail: SmolinL@7b1ae059f10c4c999e0f2bc4fd98859f.bitwarden.com +carLicense: LF4T7G +departmentNumber: 4117 +employeeType: Contract +homePhone: +1 213 586-2719 +initials: L. S. +mobile: +1 213 879-8334 +pager: +1 213 867-4067 +roomNumber: 8888 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kailey Bagshaw,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kailey Bagshaw +sn: Bagshaw +description: This is Kailey Bagshaw's description +facsimileTelephoneNumber: +1 408 660-6533 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 816-4341 +title: Master Peons Mascot +userPassword: Password1 +uid: BagshawK +givenName: Kailey +mail: BagshawK@326d8403ad204a388a69bbd4329fe5a2.bitwarden.com +carLicense: UE0HPC +departmentNumber: 5229 +employeeType: Normal +homePhone: +1 408 958-9822 +initials: K. B. +mobile: +1 408 570-6715 +pager: +1 408 738-6647 +roomNumber: 8887 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dennis Zerriffi +sn: Zerriffi +description: This is Dennis Zerriffi's description +facsimileTelephoneNumber: +1 213 599-3626 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 344-8466 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: ZerriffD +givenName: Dennis +mail: ZerriffD@eb0751f8f0ce45129ec8ccf1ddccc89a.bitwarden.com +carLicense: MHVYPK +departmentNumber: 7489 +employeeType: Employee +homePhone: +1 213 378-9899 +initials: D. Z. +mobile: +1 213 511-6186 +pager: +1 213 457-6829 +roomNumber: 9988 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Trever Moffatt,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trever Moffatt +sn: Moffatt +description: This is Trever Moffatt's description +facsimileTelephoneNumber: +1 213 822-5839 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 825-5581 +title: Supreme Management Figurehead +userPassword: Password1 +uid: MoffattT +givenName: Trever +mail: MoffattT@d5293c91bc7840f0948a89a10840461e.bitwarden.com +carLicense: 472VJ3 +departmentNumber: 7416 +employeeType: Normal +homePhone: +1 213 405-7942 +initials: T. M. +mobile: +1 213 117-1709 +pager: +1 213 461-6486 +roomNumber: 9200 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Weringh Behlen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weringh Behlen +sn: Behlen +description: This is Weringh Behlen's description +facsimileTelephoneNumber: +1 804 113-8699 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 438-5621 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: BehlenW +givenName: Weringh +mail: BehlenW@ec02515092c0432c96114e0e3b48b13f.bitwarden.com +carLicense: YILUG0 +departmentNumber: 6260 +employeeType: Employee +homePhone: +1 804 392-9027 +initials: W. B. +mobile: +1 804 585-5376 +pager: +1 804 210-4881 +roomNumber: 8023 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Alain Walser,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alain Walser +sn: Walser +description: This is Alain Walser's description +facsimileTelephoneNumber: +1 408 179-2346 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 648-2905 +title: Junior Administrative Assistant +userPassword: Password1 +uid: WalserA +givenName: Alain +mail: WalserA@4d59261d3bca4e1fb4d732d67dc2ff95.bitwarden.com +carLicense: OAAFN1 +departmentNumber: 5670 +employeeType: Normal +homePhone: +1 408 792-4063 +initials: A. W. +mobile: +1 408 181-5741 +pager: +1 408 525-6883 +roomNumber: 9845 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kanya Erguven,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanya Erguven +sn: Erguven +description: This is Kanya Erguven's description +facsimileTelephoneNumber: +1 818 580-6095 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 798-6910 +title: Junior Product Testing Dictator +userPassword: Password1 +uid: ErguvenK +givenName: Kanya +mail: ErguvenK@1b4bc37ec1234668beb3a7c3f6a14e94.bitwarden.com +carLicense: 5CRNYO +departmentNumber: 1023 +employeeType: Normal +homePhone: +1 818 817-5525 +initials: K. E. +mobile: +1 818 737-4033 +pager: +1 818 372-3769 +roomNumber: 8408 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Robina Prestrud,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robina Prestrud +sn: Prestrud +description: This is Robina Prestrud's description +facsimileTelephoneNumber: +1 510 195-1786 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 301-2992 +title: Associate Human Resources Writer +userPassword: Password1 +uid: PrestruR +givenName: Robina +mail: PrestruR@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com +carLicense: GGI4BU +departmentNumber: 4778 +employeeType: Employee +homePhone: +1 510 257-3794 +initials: R. P. +mobile: +1 510 510-9703 +pager: +1 510 553-9459 +roomNumber: 9623 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emmye Nahas,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emmye Nahas +sn: Nahas +description: This is Emmye Nahas's description +facsimileTelephoneNumber: +1 206 998-4448 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 206 145-4792 +title: Supreme Product Development Admin +userPassword: Password1 +uid: NahasE +givenName: Emmye +mail: NahasE@c7756644cb48413f87c87c1ccc9ba2c9.bitwarden.com +carLicense: K2BKOB +departmentNumber: 3719 +employeeType: Employee +homePhone: +1 206 242-7021 +initials: E. N. +mobile: +1 206 441-3966 +pager: +1 206 358-4920 +roomNumber: 9521 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Flori Suddarth,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flori Suddarth +sn: Suddarth +description: This is Flori Suddarth's description +facsimileTelephoneNumber: +1 213 690-6787 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 795-1691 +title: Supreme Management Mascot +userPassword: Password1 +uid: SuddartF +givenName: Flori +mail: SuddartF@df9fef66ff8d4a1eb163eeab8b34d029.bitwarden.com +carLicense: 7L948T +departmentNumber: 2139 +employeeType: Contract +homePhone: +1 213 923-2830 +initials: F. S. +mobile: +1 213 838-8579 +pager: +1 213 884-7755 +roomNumber: 8320 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mkt Kelso,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mkt Kelso +sn: Kelso +description: This is Mkt Kelso's description +facsimileTelephoneNumber: +1 408 161-8233 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 560-7559 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: KelsoM +givenName: Mkt +mail: KelsoM@77605ba7efb54b24b15d418d1dcaf9e1.bitwarden.com +carLicense: LEOFU0 +departmentNumber: 8504 +employeeType: Normal +homePhone: +1 408 749-9978 +initials: M. K. +mobile: +1 408 679-5318 +pager: +1 408 954-6730 +roomNumber: 9700 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Annie Goswick,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annie Goswick +sn: Goswick +description: This is Annie Goswick's description +facsimileTelephoneNumber: +1 213 330-6316 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 535-3488 +title: Master Administrative Grunt +userPassword: Password1 +uid: GoswickA +givenName: Annie +mail: GoswickA@0cd2f193d0214a7093f88bef98ef3534.bitwarden.com +carLicense: VEQGNT +departmentNumber: 9307 +employeeType: Contract +homePhone: +1 213 905-6757 +initials: A. G. +mobile: +1 213 950-5690 +pager: +1 213 189-6484 +roomNumber: 9465 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ianthe Foeppel +sn: Foeppel +description: This is Ianthe Foeppel's description +facsimileTelephoneNumber: +1 804 870-1327 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 214-1230 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: FoeppelI +givenName: Ianthe +mail: FoeppelI@6c580c7bb9d24c0e8e8c0f701314c400.bitwarden.com +carLicense: DAF834 +departmentNumber: 6760 +employeeType: Contract +homePhone: +1 804 487-3060 +initials: I. F. +mobile: +1 804 449-2191 +pager: +1 804 856-4794 +roomNumber: 8944 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rhonda Beeston,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhonda Beeston +sn: Beeston +description: This is Rhonda Beeston's description +facsimileTelephoneNumber: +1 415 864-4792 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 415 728-8850 +title: Associate Peons Fellow +userPassword: Password1 +uid: BeestonR +givenName: Rhonda +mail: BeestonR@f8b5ec3dd78f44e3bd6de92c22b0edfc.bitwarden.com +carLicense: 0F30QN +departmentNumber: 6884 +employeeType: Employee +homePhone: +1 415 533-8217 +initials: R. B. +mobile: +1 415 293-8709 +pager: +1 415 551-7461 +roomNumber: 8747 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amrik Bokij,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amrik Bokij +sn: Bokij +description: This is Amrik Bokij's description +facsimileTelephoneNumber: +1 804 753-7025 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 621-5085 +title: Chief Payroll Janitor +userPassword: Password1 +uid: BokijA +givenName: Amrik +mail: BokijA@231bc329012a4b71830de92a0a747aec.bitwarden.com +carLicense: 1PAQGG +departmentNumber: 8421 +employeeType: Contract +homePhone: +1 804 426-3072 +initials: A. B. +mobile: +1 804 382-5065 +pager: +1 804 426-1941 +roomNumber: 8813 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Merralee Malkani,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merralee Malkani +sn: Malkani +description: This is Merralee Malkani's description +facsimileTelephoneNumber: +1 510 110-8155 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 772-9282 +title: Supreme Management Director +userPassword: Password1 +uid: MalkaniM +givenName: Merralee +mail: MalkaniM@2111c0b8de8b41c796ea6df8823ccfc3.bitwarden.com +carLicense: 7T6193 +departmentNumber: 9950 +employeeType: Normal +homePhone: +1 510 317-6032 +initials: M. M. +mobile: +1 510 879-9164 +pager: +1 510 687-2266 +roomNumber: 9439 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kyle Malkani,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kyle Malkani +sn: Malkani +description: This is Kyle Malkani's description +facsimileTelephoneNumber: +1 510 694-7181 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 161-6541 +title: Chief Management Janitor +userPassword: Password1 +uid: MalkaniK +givenName: Kyle +mail: MalkaniK@456b6a48ca9a4969bd47e1edd5748e50.bitwarden.com +carLicense: S9SIV5 +departmentNumber: 8102 +employeeType: Normal +homePhone: +1 510 823-5972 +initials: K. M. +mobile: +1 510 247-3456 +pager: +1 510 512-8773 +roomNumber: 9008 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Leese Jamaly,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leese Jamaly +sn: Jamaly +description: This is Leese Jamaly's description +facsimileTelephoneNumber: +1 206 150-7545 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 415-9919 +title: Chief Payroll Director +userPassword: Password1 +uid: JamalyL +givenName: Leese +mail: JamalyL@c6a8d6d12ae045f8ba075455c769a929.bitwarden.com +carLicense: 88RBXM +departmentNumber: 8823 +employeeType: Contract +homePhone: +1 206 917-1411 +initials: L. J. +mobile: +1 206 782-2488 +pager: +1 206 613-9861 +roomNumber: 9782 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Eloise Gurash,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eloise Gurash +sn: Gurash +description: This is Eloise Gurash's description +facsimileTelephoneNumber: +1 818 917-4086 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 396-7733 +title: Supreme Human Resources Evangelist +userPassword: Password1 +uid: GurashE +givenName: Eloise +mail: GurashE@1d57349150aa4b7c9c63519094984965.bitwarden.com +carLicense: BM6VOK +departmentNumber: 2616 +employeeType: Normal +homePhone: +1 818 683-2987 +initials: E. G. +mobile: +1 818 914-4143 +pager: +1 818 243-9241 +roomNumber: 8302 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elpida Marples,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elpida Marples +sn: Marples +description: This is Elpida Marples's description +facsimileTelephoneNumber: +1 415 325-9084 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 598-6556 +title: Junior Administrative Madonna +userPassword: Password1 +uid: MarplesE +givenName: Elpida +mail: MarplesE@950e4dfb6fcd4307837aab6105ae8d0b.bitwarden.com +carLicense: A1X3NA +departmentNumber: 2906 +employeeType: Contract +homePhone: +1 415 561-5960 +initials: E. M. +mobile: +1 415 100-6979 +pager: +1 415 633-4056 +roomNumber: 9933 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Blondie Algood,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blondie Algood +sn: Algood +description: This is Blondie Algood's description +facsimileTelephoneNumber: +1 415 774-2019 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 677-3146 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: AlgoodB +givenName: Blondie +mail: AlgoodB@fd60ce8a79b644ba9d190b4bf769b6de.bitwarden.com +carLicense: O99CT7 +departmentNumber: 6887 +employeeType: Employee +homePhone: +1 415 179-4382 +initials: B. A. +mobile: +1 415 118-3902 +pager: +1 415 986-1144 +roomNumber: 9368 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caitrin McWalters +sn: McWalters +description: This is Caitrin McWalters's description +facsimileTelephoneNumber: +1 510 339-4424 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 742-7407 +title: Master Product Testing Czar +userPassword: Password1 +uid: McWalteC +givenName: Caitrin +mail: McWalteC@70ad644ea35f4f68843a1f3bb2116072.bitwarden.com +carLicense: LW9BBE +departmentNumber: 8201 +employeeType: Contract +homePhone: +1 510 543-2056 +initials: C. M. +mobile: +1 510 623-4799 +pager: +1 510 222-8044 +roomNumber: 8262 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Averil Hirsch,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Averil Hirsch +sn: Hirsch +description: This is Averil Hirsch's description +facsimileTelephoneNumber: +1 818 391-8504 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 818 906-3261 +title: Supreme Peons Warrior +userPassword: Password1 +uid: HirschA +givenName: Averil +mail: HirschA@4ce8989b72bf418782f9268b205e86e4.bitwarden.com +carLicense: EKI8I9 +departmentNumber: 1351 +employeeType: Contract +homePhone: +1 818 702-3015 +initials: A. H. +mobile: +1 818 394-1418 +pager: +1 818 995-1754 +roomNumber: 9166 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Manijeh Older,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manijeh Older +sn: Older +description: This is Manijeh Older's description +facsimileTelephoneNumber: +1 804 846-4373 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 895-5799 +title: Associate Management Punk +userPassword: Password1 +uid: OlderM +givenName: Manijeh +mail: OlderM@519a4247e98245adb82415fbed3acf4c.bitwarden.com +carLicense: NUWCC3 +departmentNumber: 1105 +employeeType: Normal +homePhone: +1 804 717-6797 +initials: M. O. +mobile: +1 804 621-8581 +pager: +1 804 960-5193 +roomNumber: 8541 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lonee Swinkels,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lonee Swinkels +sn: Swinkels +description: This is Lonee Swinkels's description +facsimileTelephoneNumber: +1 804 993-2009 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 453-2236 +title: Supreme Administrative Architect +userPassword: Password1 +uid: SwinkelL +givenName: Lonee +mail: SwinkelL@534eab5a672047c98d17e83c1921c458.bitwarden.com +carLicense: ESR9AG +departmentNumber: 4800 +employeeType: Contract +homePhone: +1 804 773-2874 +initials: L. S. +mobile: +1 804 645-8993 +pager: +1 804 730-1090 +roomNumber: 9181 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jun Reith,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jun Reith +sn: Reith +description: This is Jun Reith's description +facsimileTelephoneNumber: +1 408 352-7446 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 893-8441 +title: Master Product Development Admin +userPassword: Password1 +uid: ReithJ +givenName: Jun +mail: ReithJ@813a07c4538b406aa71825ab3ba2ab54.bitwarden.com +carLicense: MS54UR +departmentNumber: 9893 +employeeType: Normal +homePhone: +1 408 307-5398 +initials: J. R. +mobile: +1 408 127-7348 +pager: +1 408 913-1400 +roomNumber: 9255 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Otter Uberig,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Otter Uberig +sn: Uberig +description: This is Otter Uberig's description +facsimileTelephoneNumber: +1 415 408-7227 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 230-7821 +title: Junior Management Evangelist +userPassword: Password1 +uid: UberigO +givenName: Otter +mail: UberigO@2f13ca54ee794decad24515251a42dff.bitwarden.com +carLicense: 4RV42I +departmentNumber: 7337 +employeeType: Contract +homePhone: +1 415 382-2789 +initials: O. U. +mobile: +1 415 204-8416 +pager: +1 415 936-7515 +roomNumber: 8708 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hendrik Ruyant,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hendrik Ruyant +sn: Ruyant +description: This is Hendrik Ruyant's description +facsimileTelephoneNumber: +1 804 448-1032 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 897-7367 +title: Junior Management Fellow +userPassword: Password1 +uid: RuyantH +givenName: Hendrik +mail: RuyantH@b3c93053c0224253988d5c3b976abcae.bitwarden.com +carLicense: CFB1NF +departmentNumber: 7844 +employeeType: Normal +homePhone: +1 804 900-7993 +initials: H. R. +mobile: +1 804 762-7114 +pager: +1 804 535-4861 +roomNumber: 8857 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Colline Monaco,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colline Monaco +sn: Monaco +description: This is Colline Monaco's description +facsimileTelephoneNumber: +1 818 778-5575 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 893-1608 +title: Chief Product Development Technician +userPassword: Password1 +uid: MonacoC +givenName: Colline +mail: MonacoC@bd83bea8ad1d4beeb411fff32d119ceb.bitwarden.com +carLicense: KXUYC5 +departmentNumber: 1480 +employeeType: Normal +homePhone: +1 818 460-1099 +initials: C. M. +mobile: +1 818 452-9015 +pager: +1 818 898-1404 +roomNumber: 8915 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ilene Didylowski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilene Didylowski +sn: Didylowski +description: This is Ilene Didylowski's description +facsimileTelephoneNumber: +1 206 750-2620 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 193-7788 +title: Supreme Payroll Manager +userPassword: Password1 +uid: DidylowI +givenName: Ilene +mail: DidylowI@4fc4e61aa4364561b3dbed18d06aa13c.bitwarden.com +carLicense: EGX8NE +departmentNumber: 2317 +employeeType: Employee +homePhone: +1 206 382-2659 +initials: I. D. +mobile: +1 206 365-8341 +pager: +1 206 436-6228 +roomNumber: 8830 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Norine Krone,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norine Krone +sn: Krone +description: This is Norine Krone's description +facsimileTelephoneNumber: +1 206 317-5357 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 385-6043 +title: Junior Administrative Stooge +userPassword: Password1 +uid: KroneN +givenName: Norine +mail: KroneN@be647af747894379a1244c13fb5bb1f0.bitwarden.com +carLicense: 2N26IL +departmentNumber: 1431 +employeeType: Employee +homePhone: +1 206 978-9227 +initials: N. K. +mobile: +1 206 930-2308 +pager: +1 206 349-1888 +roomNumber: 9631 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yolanthe McLauchlan +sn: McLauchlan +description: This is Yolanthe McLauchlan's description +facsimileTelephoneNumber: +1 415 541-2492 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 614-7659 +title: Chief Payroll Technician +userPassword: Password1 +uid: McLauchY +givenName: Yolanthe +mail: McLauchY@ea44c2476f934218bf3d758975e567c8.bitwarden.com +carLicense: XY13BV +departmentNumber: 7815 +employeeType: Normal +homePhone: +1 415 950-6199 +initials: Y. M. +mobile: +1 415 700-9086 +pager: +1 415 578-6748 +roomNumber: 8469 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Chander Daudin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chander Daudin +sn: Daudin +description: This is Chander Daudin's description +facsimileTelephoneNumber: +1 206 296-6668 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 248-3190 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: DaudinC +givenName: Chander +mail: DaudinC@7c50c697d2e74fa1bb1d9087c755a405.bitwarden.com +carLicense: CELI71 +departmentNumber: 9121 +employeeType: Normal +homePhone: +1 206 865-9438 +initials: C. D. +mobile: +1 206 330-6846 +pager: +1 206 405-2749 +roomNumber: 8054 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Phelia Valois,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phelia Valois +sn: Valois +description: This is Phelia Valois's description +facsimileTelephoneNumber: +1 818 411-4484 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 510-7686 +title: Master Payroll Evangelist +userPassword: Password1 +uid: ValoisP +givenName: Phelia +mail: ValoisP@3183d831d932421d873ae5ed85ead634.bitwarden.com +carLicense: RN88F3 +departmentNumber: 2467 +employeeType: Employee +homePhone: +1 818 444-5023 +initials: P. V. +mobile: +1 818 116-3355 +pager: +1 818 592-1169 +roomNumber: 8236 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carmela Bonner,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmela Bonner +sn: Bonner +description: This is Carmela Bonner's description +facsimileTelephoneNumber: +1 510 171-2399 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 407-8013 +title: Master Payroll Admin +userPassword: Password1 +uid: BonnerC +givenName: Carmela +mail: BonnerC@412af91bb3534a1b89a431db4cb8a7a6.bitwarden.com +carLicense: 45EDOS +departmentNumber: 4988 +employeeType: Normal +homePhone: +1 510 539-2806 +initials: C. B. +mobile: +1 510 154-3285 +pager: +1 510 740-2258 +roomNumber: 8811 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brandice Becquart,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandice Becquart +sn: Becquart +description: This is Brandice Becquart's description +facsimileTelephoneNumber: +1 408 659-1942 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 344-3961 +title: Associate Management Madonna +userPassword: Password1 +uid: BecquarB +givenName: Brandice +mail: BecquarB@4825d57ae32e45d08a65519dcb193960.bitwarden.com +carLicense: 96AUWB +departmentNumber: 3711 +employeeType: Normal +homePhone: +1 408 153-4512 +initials: B. B. +mobile: +1 408 527-9604 +pager: +1 408 178-2981 +roomNumber: 8377 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gen Guinnane,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gen Guinnane +sn: Guinnane +description: This is Gen Guinnane's description +facsimileTelephoneNumber: +1 408 707-8762 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 245-8581 +title: Associate Management Dictator +userPassword: Password1 +uid: GuinnanG +givenName: Gen +mail: GuinnanG@f01b8c6e19b14b049532cb6664f8caaa.bitwarden.com +carLicense: URY9VL +departmentNumber: 7757 +employeeType: Employee +homePhone: +1 408 728-4760 +initials: G. G. +mobile: +1 408 555-2683 +pager: +1 408 956-2888 +roomNumber: 9430 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carmelia Lawlor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmelia Lawlor +sn: Lawlor +description: This is Carmelia Lawlor's description +facsimileTelephoneNumber: +1 510 451-1008 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 992-9786 +title: Master Management Technician +userPassword: Password1 +uid: LawlorC +givenName: Carmelia +mail: LawlorC@2340b24115454336b8f5eb39757ab759.bitwarden.com +carLicense: 053RFJ +departmentNumber: 7505 +employeeType: Contract +homePhone: +1 510 293-3836 +initials: C. L. +mobile: +1 510 103-6589 +pager: +1 510 622-7857 +roomNumber: 8404 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Riva DIppolito,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Riva DIppolito +sn: DIppolito +description: This is Riva DIppolito's description +facsimileTelephoneNumber: +1 213 230-3691 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 507-1916 +title: Junior Management Architect +userPassword: Password1 +uid: DIppoliR +givenName: Riva +mail: DIppoliR@74cfe2fa4b0b457bbb2822816bc66149.bitwarden.com +carLicense: PDGSNJ +departmentNumber: 7217 +employeeType: Contract +homePhone: +1 213 579-2331 +initials: R. D. +mobile: +1 213 308-9841 +pager: +1 213 674-5855 +roomNumber: 9766 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Letisha Subsara,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Letisha Subsara +sn: Subsara +description: This is Letisha Subsara's description +facsimileTelephoneNumber: +1 804 148-2906 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 297-6231 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: SubsaraL +givenName: Letisha +mail: SubsaraL@903617d1ed564473826d5f2c9b25fe7c.bitwarden.com +carLicense: ONXFLH +departmentNumber: 7795 +employeeType: Contract +homePhone: +1 804 963-9708 +initials: L. S. +mobile: +1 804 142-4943 +pager: +1 804 320-4887 +roomNumber: 9429 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chellappan Caple,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chellappan Caple +sn: Caple +description: This is Chellappan Caple's description +facsimileTelephoneNumber: +1 510 451-7872 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 179-4330 +title: Associate Management Sales Rep +userPassword: Password1 +uid: CapleC +givenName: Chellappan +mail: CapleC@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com +carLicense: YYXJQ4 +departmentNumber: 7659 +employeeType: Employee +homePhone: +1 510 102-9754 +initials: C. C. +mobile: +1 510 865-3623 +pager: +1 510 135-6636 +roomNumber: 8081 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lendon Shigemura,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lendon Shigemura +sn: Shigemura +description: This is Lendon Shigemura's description +facsimileTelephoneNumber: +1 818 172-8802 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 725-5089 +title: Supreme Management Assistant +userPassword: Password1 +uid: ShigemuL +givenName: Lendon +mail: ShigemuL@07f933542a8443fa9fa85a2d55eb8b28.bitwarden.com +carLicense: R7LS6J +departmentNumber: 5497 +employeeType: Employee +homePhone: +1 818 141-7519 +initials: L. S. +mobile: +1 818 120-3535 +pager: +1 818 413-9860 +roomNumber: 8289 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alicia Vermette,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alicia Vermette +sn: Vermette +description: This is Alicia Vermette's description +facsimileTelephoneNumber: +1 804 409-5878 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 449-1944 +title: Master Human Resources Visionary +userPassword: Password1 +uid: VermettA +givenName: Alicia +mail: VermettA@9ce7cc8c772f4514b0b5126957e2752f.bitwarden.com +carLicense: 1QG51U +departmentNumber: 7415 +employeeType: Normal +homePhone: +1 804 160-2302 +initials: A. V. +mobile: +1 804 305-8748 +pager: +1 804 265-8780 +roomNumber: 8433 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marys Pellegrini,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marys Pellegrini +sn: Pellegrini +description: This is Marys Pellegrini's description +facsimileTelephoneNumber: +1 213 562-9967 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 884-1821 +title: Supreme Management Vice President +userPassword: Password1 +uid: PellegrM +givenName: Marys +mail: PellegrM@64c2fa20001b495182e976975782823e.bitwarden.com +carLicense: ATL4M8 +departmentNumber: 3050 +employeeType: Employee +homePhone: +1 213 674-9301 +initials: M. P. +mobile: +1 213 114-6092 +pager: +1 213 194-4215 +roomNumber: 8689 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hamzeh Radovnikovic +sn: Radovnikovic +description: This is Hamzeh Radovnikovic's description +facsimileTelephoneNumber: +1 510 239-8325 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 208-1917 +title: Junior Administrative Engineer +userPassword: Password1 +uid: RadovniH +givenName: Hamzeh +mail: RadovniH@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com +carLicense: 9FYPWB +departmentNumber: 9255 +employeeType: Employee +homePhone: +1 510 616-2262 +initials: H. R. +mobile: +1 510 789-9492 +pager: +1 510 423-2964 +roomNumber: 8726 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theresita DIngianni +sn: DIngianni +description: This is Theresita DIngianni's description +facsimileTelephoneNumber: +1 213 890-3572 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 374-5315 +title: Master Product Testing Czar +userPassword: Password1 +uid: DIngianT +givenName: Theresita +mail: DIngianT@d12dc9200de04c139668cd5077c9847d.bitwarden.com +carLicense: 3B6A2L +departmentNumber: 6881 +employeeType: Contract +homePhone: +1 213 115-3359 +initials: T. D. +mobile: +1 213 274-7925 +pager: +1 213 761-4299 +roomNumber: 9536 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Es Veillette,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Es Veillette +sn: Veillette +description: This is Es Veillette's description +facsimileTelephoneNumber: +1 510 549-9767 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 994-9763 +title: Associate Management Figurehead +userPassword: Password1 +uid: VeilletE +givenName: Es +mail: VeilletE@09592cdb49ba4e06a680e4327c7f211f.bitwarden.com +carLicense: 3UEHMJ +departmentNumber: 5656 +employeeType: Normal +homePhone: +1 510 510-6671 +initials: E. V. +mobile: +1 510 805-8257 +pager: +1 510 474-1846 +roomNumber: 9600 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caressa Jelinek +sn: Jelinek +description: This is Caressa Jelinek's description +facsimileTelephoneNumber: +1 213 928-4174 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 963-7604 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: JelinekC +givenName: Caressa +mail: JelinekC@969884d3e1084598a17f4ef0a3aedf04.bitwarden.com +carLicense: MAMQBG +departmentNumber: 1596 +employeeType: Employee +homePhone: +1 213 314-3738 +initials: C. J. +mobile: +1 213 659-4082 +pager: +1 213 524-8847 +roomNumber: 8737 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Schell Rezzik,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Schell Rezzik +sn: Rezzik +description: This is Schell Rezzik's description +facsimileTelephoneNumber: +1 213 731-4506 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 213 192-1239 +title: Chief Product Development Developer +userPassword: Password1 +uid: RezzikS +givenName: Schell +mail: RezzikS@d27f47b62d694195b812aa9e62ea263a.bitwarden.com +carLicense: TA77OD +departmentNumber: 5383 +employeeType: Employee +homePhone: +1 213 148-5621 +initials: S. R. +mobile: +1 213 298-3607 +pager: +1 213 923-1063 +roomNumber: 9823 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Haig Salyer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haig Salyer +sn: Salyer +description: This is Haig Salyer's description +facsimileTelephoneNumber: +1 408 975-1414 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 410-4997 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: SalyerH +givenName: Haig +mail: SalyerH@d0689c747ea94990b3bb0378ca876248.bitwarden.com +carLicense: HK54YB +departmentNumber: 9185 +employeeType: Contract +homePhone: +1 408 674-3635 +initials: H. S. +mobile: +1 408 222-8813 +pager: +1 408 614-1808 +roomNumber: 9986 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sachiko Dragert,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sachiko Dragert +sn: Dragert +description: This is Sachiko Dragert's description +facsimileTelephoneNumber: +1 818 143-6446 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 347-2626 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: DragertS +givenName: Sachiko +mail: DragertS@777873609ce9463eb7000e930f9c88d2.bitwarden.com +carLicense: JSJ10J +departmentNumber: 6591 +employeeType: Contract +homePhone: +1 818 842-9654 +initials: S. D. +mobile: +1 818 716-9051 +pager: +1 818 788-8864 +roomNumber: 8061 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Agatha Potocki,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agatha Potocki +sn: Potocki +description: This is Agatha Potocki's description +facsimileTelephoneNumber: +1 415 584-2115 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 620-9701 +title: Associate Human Resources Grunt +userPassword: Password1 +uid: PotockiA +givenName: Agatha +mail: PotockiA@8068d857ca8d45118464c596ca9f4192.bitwarden.com +carLicense: 6S2MTV +departmentNumber: 1717 +employeeType: Employee +homePhone: +1 415 926-4456 +initials: A. P. +mobile: +1 415 115-4680 +pager: +1 415 501-1838 +roomNumber: 9123 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jerrie Frobel +sn: Frobel +description: This is Jerrie Frobel's description +facsimileTelephoneNumber: +1 818 847-2662 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 743-5219 +title: Supreme Human Resources President +userPassword: Password1 +uid: FrobelJ +givenName: Jerrie +mail: FrobelJ@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com +carLicense: VG4KY3 +departmentNumber: 8407 +employeeType: Normal +homePhone: +1 818 403-1711 +initials: J. F. +mobile: +1 818 928-3054 +pager: +1 818 998-8274 +roomNumber: 8592 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mark Bethune,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mark Bethune +sn: Bethune +description: This is Mark Bethune's description +facsimileTelephoneNumber: +1 510 113-4940 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 656-3728 +title: Junior Human Resources Artist +userPassword: Password1 +uid: BethuneM +givenName: Mark +mail: BethuneM@937ccb2001694e2680b8217ebfc1227e.bitwarden.com +carLicense: GITUXW +departmentNumber: 9186 +employeeType: Normal +homePhone: +1 510 686-1465 +initials: M. B. +mobile: +1 510 173-1480 +pager: +1 510 344-3188 +roomNumber: 9610 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rois Hiscoe +sn: Hiscoe +description: This is Rois Hiscoe's description +facsimileTelephoneNumber: +1 408 491-3041 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 408 791-4976 +title: Chief Product Testing Developer +userPassword: Password1 +uid: HiscoeR +givenName: Rois +mail: HiscoeR@923b7e20c77d4d479afa0bf52e9ff34f.bitwarden.com +carLicense: G5U0HU +departmentNumber: 1455 +employeeType: Normal +homePhone: +1 408 169-6280 +initials: R. H. +mobile: +1 408 576-8127 +pager: +1 408 736-5448 +roomNumber: 9344 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dorey Friedrich,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorey Friedrich +sn: Friedrich +description: This is Dorey Friedrich's description +facsimileTelephoneNumber: +1 818 935-9705 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 751-2353 +title: Supreme Payroll Manager +userPassword: Password1 +uid: FriedriD +givenName: Dorey +mail: FriedriD@d28530c9df644cffbc9c3ddd841cc9a4.bitwarden.com +carLicense: 1N5AXE +departmentNumber: 1008 +employeeType: Employee +homePhone: +1 818 269-6654 +initials: D. F. +mobile: +1 818 216-7617 +pager: +1 818 568-5613 +roomNumber: 8697 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Alexina Hord,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alexina Hord +sn: Hord +description: This is Alexina Hord's description +facsimileTelephoneNumber: +1 510 769-7765 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 712-2961 +title: Chief Product Development Mascot +userPassword: Password1 +uid: HordA +givenName: Alexina +mail: HordA@874d2ffcc419401a838c28aad1adce43.bitwarden.com +carLicense: 1L44O9 +departmentNumber: 8243 +employeeType: Normal +homePhone: +1 510 774-7259 +initials: A. H. +mobile: +1 510 673-6671 +pager: +1 510 669-1001 +roomNumber: 9956 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wilson Vosup,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilson Vosup +sn: Vosup +description: This is Wilson Vosup's description +facsimileTelephoneNumber: +1 408 903-6667 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 489-3885 +title: Supreme Management Figurehead +userPassword: Password1 +uid: VosupW +givenName: Wilson +mail: VosupW@0a13d3df1e3f455093e12ab71e8c81fa.bitwarden.com +carLicense: FO0HHA +departmentNumber: 6884 +employeeType: Normal +homePhone: +1 408 710-7948 +initials: W. V. +mobile: +1 408 108-4356 +pager: +1 408 544-9310 +roomNumber: 9133 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronneke Chmara +sn: Chmara +description: This is Ronneke Chmara's description +facsimileTelephoneNumber: +1 415 931-2776 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 262-7867 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: ChmaraR +givenName: Ronneke +mail: ChmaraR@21cc8cee33394af98a10a365eddcb55c.bitwarden.com +carLicense: U1YU25 +departmentNumber: 4000 +employeeType: Contract +homePhone: +1 415 577-2429 +initials: R. C. +mobile: +1 415 367-6777 +pager: +1 415 810-1550 +roomNumber: 8241 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alisa Dubuc +sn: Dubuc +description: This is Alisa Dubuc's description +facsimileTelephoneNumber: +1 510 451-3654 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 632-2887 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: DubucA +givenName: Alisa +mail: DubucA@5191509f48d94538ad03dc3532ab7b16.bitwarden.com +carLicense: CBN8XW +departmentNumber: 8694 +employeeType: Normal +homePhone: +1 510 483-4831 +initials: A. D. +mobile: +1 510 341-8225 +pager: +1 510 591-6422 +roomNumber: 9845 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Forrest DCruz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Forrest DCruz +sn: DCruz +description: This is Forrest DCruz's description +facsimileTelephoneNumber: +1 206 969-4798 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 594-9277 +title: Supreme Payroll Czar +userPassword: Password1 +uid: DCruzF +givenName: Forrest +mail: DCruzF@523c7925179d4304b25908d832088d77.bitwarden.com +carLicense: 1HTBJX +departmentNumber: 8428 +employeeType: Normal +homePhone: +1 206 163-5580 +initials: F. D. +mobile: +1 206 396-3235 +pager: +1 206 843-2514 +roomNumber: 9499 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Simhan Plucinska +sn: Plucinska +description: This is Simhan Plucinska's description +facsimileTelephoneNumber: +1 408 593-4942 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 344-2140 +title: Master Janitorial Grunt +userPassword: Password1 +uid: PlucinsS +givenName: Simhan +mail: PlucinsS@351deec9477e4e51877822ae4f8cd070.bitwarden.com +carLicense: MYOV1I +departmentNumber: 5978 +employeeType: Employee +homePhone: +1 408 748-5281 +initials: S. P. +mobile: +1 408 917-6975 +pager: +1 408 994-3877 +roomNumber: 8350 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roger Seelaender,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roger Seelaender +sn: Seelaender +description: This is Roger Seelaender's description +facsimileTelephoneNumber: +1 213 761-2281 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 213 741-2081 +title: Associate Peons Consultant +userPassword: Password1 +uid: SeelaenR +givenName: Roger +mail: SeelaenR@73a9aedb7e664c80be8f4a158038334a.bitwarden.com +carLicense: ETFKV3 +departmentNumber: 3729 +employeeType: Employee +homePhone: +1 213 661-8090 +initials: R. S. +mobile: +1 213 634-4400 +pager: +1 213 372-8615 +roomNumber: 9047 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annecorinne Kessing +sn: Kessing +description: This is Annecorinne Kessing's description +facsimileTelephoneNumber: +1 415 756-8928 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 453-6024 +title: Associate Product Testing Artist +userPassword: Password1 +uid: KessingA +givenName: Annecorinne +mail: KessingA@8a74bbad8b794c87a1e4384bad30f8b3.bitwarden.com +carLicense: PQR3L6 +departmentNumber: 5097 +employeeType: Normal +homePhone: +1 415 976-6933 +initials: A. K. +mobile: +1 415 458-7969 +pager: +1 415 266-9266 +roomNumber: 8206 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mal Ellul,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mal Ellul +sn: Ellul +description: This is Mal Ellul's description +facsimileTelephoneNumber: +1 408 935-2416 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 408 899-6051 +title: Supreme Management Fellow +userPassword: Password1 +uid: EllulM +givenName: Mal +mail: EllulM@3ce51f6d63564349a707188cebe0b9db.bitwarden.com +carLicense: QUCL6F +departmentNumber: 3428 +employeeType: Normal +homePhone: +1 408 934-6539 +initials: M. E. +mobile: +1 408 981-5795 +pager: +1 408 797-8788 +roomNumber: 8800 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bep Pilkington,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bep Pilkington +sn: Pilkington +description: This is Bep Pilkington's description +facsimileTelephoneNumber: +1 206 199-7661 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 424-8423 +title: Junior Product Testing Madonna +userPassword: Password1 +uid: PilkingB +givenName: Bep +mail: PilkingB@d72cbd780d2b4b298c22c5ed9275bdef.bitwarden.com +carLicense: KACCV3 +departmentNumber: 1304 +employeeType: Normal +homePhone: +1 206 354-9958 +initials: B. P. +mobile: +1 206 358-4949 +pager: +1 206 500-7310 +roomNumber: 9364 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wylma Meiser,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wylma Meiser +sn: Meiser +description: This is Wylma Meiser's description +facsimileTelephoneNumber: +1 510 924-1985 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 228-9458 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: MeiserW +givenName: Wylma +mail: MeiserW@9f3819b9115a462187208879243957c9.bitwarden.com +carLicense: 1QBA8A +departmentNumber: 1126 +employeeType: Contract +homePhone: +1 510 895-6566 +initials: W. M. +mobile: +1 510 788-2665 +pager: +1 510 910-7175 +roomNumber: 8204 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Huppert Buffett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huppert Buffett +sn: Buffett +description: This is Huppert Buffett's description +facsimileTelephoneNumber: +1 206 150-4104 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 643-7650 +title: Junior Human Resources Mascot +userPassword: Password1 +uid: BuffettH +givenName: Huppert +mail: BuffettH@270d9e715f934566b928260e5a913b8e.bitwarden.com +carLicense: 4NUJYI +departmentNumber: 6888 +employeeType: Employee +homePhone: +1 206 263-2894 +initials: H. B. +mobile: +1 206 986-5219 +pager: +1 206 366-9320 +roomNumber: 8283 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kass Kelland,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kass Kelland +sn: Kelland +description: This is Kass Kelland's description +facsimileTelephoneNumber: +1 510 717-3962 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 296-1989 +title: Chief Human Resources Architect +userPassword: Password1 +uid: KellandK +givenName: Kass +mail: KellandK@29173732550b4d5fa61cc19838febdea.bitwarden.com +carLicense: XL78R6 +departmentNumber: 5308 +employeeType: Employee +homePhone: +1 510 209-8355 +initials: K. K. +mobile: +1 510 355-4284 +pager: +1 510 640-4032 +roomNumber: 8824 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dpnis Stetter,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dpnis Stetter +sn: Stetter +description: This is Dpnis Stetter's description +facsimileTelephoneNumber: +1 510 671-6206 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 510 870-8105 +title: Chief Peons Technician +userPassword: Password1 +uid: StetterD +givenName: Dpnis +mail: StetterD@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com +carLicense: HTX2CG +departmentNumber: 8825 +employeeType: Employee +homePhone: +1 510 446-2495 +initials: D. S. +mobile: +1 510 222-1574 +pager: +1 510 989-7983 +roomNumber: 9719 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tash Hibler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tash Hibler +sn: Hibler +description: This is Tash Hibler's description +facsimileTelephoneNumber: +1 206 888-9200 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 981-6960 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: HiblerT +givenName: Tash +mail: HiblerT@f757676270f44c6398ef7409a2684fcd.bitwarden.com +carLicense: 5EE7CX +departmentNumber: 7980 +employeeType: Contract +homePhone: +1 206 511-3172 +initials: T. H. +mobile: +1 206 145-5022 +pager: +1 206 358-5402 +roomNumber: 8618 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Edee Badger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edee Badger +sn: Badger +description: This is Edee Badger's description +facsimileTelephoneNumber: +1 804 697-2616 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 202-5464 +title: Junior Payroll Warrior +userPassword: Password1 +uid: BadgerE +givenName: Edee +mail: BadgerE@fd46aa029a7840a1becc0ccc22e4bd3f.bitwarden.com +carLicense: 4I0QCP +departmentNumber: 4407 +employeeType: Contract +homePhone: +1 804 280-2647 +initials: E. B. +mobile: +1 804 793-8675 +pager: +1 804 119-7989 +roomNumber: 8647 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Edel Ellacott,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edel Ellacott +sn: Ellacott +description: This is Edel Ellacott's description +facsimileTelephoneNumber: +1 408 363-8603 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 495-1247 +title: Chief Peons Architect +userPassword: Password1 +uid: EllacotE +givenName: Edel +mail: EllacotE@359efdad39cc40ef8440421a8807b6c0.bitwarden.com +carLicense: OH1FQ1 +departmentNumber: 1365 +employeeType: Employee +homePhone: +1 408 397-8869 +initials: E. E. +mobile: +1 408 668-2229 +pager: +1 408 537-1497 +roomNumber: 9998 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosa Baird,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosa Baird +sn: Baird +description: This is Rosa Baird's description +facsimileTelephoneNumber: +1 415 488-6722 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 603-5854 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: BairdR +givenName: Rosa +mail: BairdR@a7cf58aaa965404796cd8b59fc2395b8.bitwarden.com +carLicense: O6D3KO +departmentNumber: 1053 +employeeType: Normal +homePhone: +1 415 577-5040 +initials: R. B. +mobile: +1 415 122-6408 +pager: +1 415 839-4112 +roomNumber: 9178 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Anna Kahtasian,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anna Kahtasian +sn: Kahtasian +description: This is Anna Kahtasian's description +facsimileTelephoneNumber: +1 818 746-3170 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 818 407-2550 +title: Master Product Development Admin +userPassword: Password1 +uid: KahtasiA +givenName: Anna +mail: KahtasiA@7341939506294cf3bdd4bdeca7674074.bitwarden.com +carLicense: S54OXH +departmentNumber: 9299 +employeeType: Employee +homePhone: +1 818 377-1637 +initials: A. K. +mobile: +1 818 969-1570 +pager: +1 818 788-6461 +roomNumber: 9316 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hiren Plastina,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hiren Plastina +sn: Plastina +description: This is Hiren Plastina's description +facsimileTelephoneNumber: +1 206 119-5254 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 616-6725 +title: Associate Peons Artist +userPassword: Password1 +uid: PlastinH +givenName: Hiren +mail: PlastinH@bf39febc19c343cc9aaa907ea0d77554.bitwarden.com +carLicense: 9XQES9 +departmentNumber: 6282 +employeeType: Contract +homePhone: +1 206 588-4505 +initials: H. P. +mobile: +1 206 974-8406 +pager: +1 206 450-9536 +roomNumber: 9560 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alese Sumpter,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alese Sumpter +sn: Sumpter +description: This is Alese Sumpter's description +facsimileTelephoneNumber: +1 415 930-3141 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 955-8131 +title: Associate Peons Architect +userPassword: Password1 +uid: SumpterA +givenName: Alese +mail: SumpterA@68783c5d6bc743ddb0d94e6abd382e0a.bitwarden.com +carLicense: G5B4NQ +departmentNumber: 3100 +employeeType: Contract +homePhone: +1 415 757-8651 +initials: A. S. +mobile: +1 415 369-2398 +pager: +1 415 555-3700 +roomNumber: 8373 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melodie Escobedo +sn: Escobedo +description: This is Melodie Escobedo's description +facsimileTelephoneNumber: +1 510 137-7152 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 939-4086 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: EscobedM +givenName: Melodie +mail: EscobedM@96cd1711168e489f9e672010a4fee01c.bitwarden.com +carLicense: 8CCQU7 +departmentNumber: 7382 +employeeType: Normal +homePhone: +1 510 129-9547 +initials: M. E. +mobile: +1 510 919-6616 +pager: +1 510 281-3265 +roomNumber: 9542 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Simonne Filer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Simonne Filer +sn: Filer +description: This is Simonne Filer's description +facsimileTelephoneNumber: +1 206 416-1223 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 586-9518 +title: Associate Product Development Artist +userPassword: Password1 +uid: FilerS +givenName: Simonne +mail: FilerS@6993d016013446bf8c45519f739f4a8a.bitwarden.com +carLicense: 8OE9KE +departmentNumber: 7969 +employeeType: Employee +homePhone: +1 206 717-5894 +initials: S. F. +mobile: +1 206 323-1243 +pager: +1 206 666-9642 +roomNumber: 8786 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miquela Szypulski +sn: Szypulski +description: This is Miquela Szypulski's description +facsimileTelephoneNumber: +1 415 840-6584 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 284-8858 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: SzypulsM +givenName: Miquela +mail: SzypulsM@3a2a82df656f429a9b40a5251b4c823e.bitwarden.com +carLicense: 2KCSSW +departmentNumber: 1571 +employeeType: Employee +homePhone: +1 415 750-3615 +initials: M. S. +mobile: +1 415 257-5354 +pager: +1 415 146-9672 +roomNumber: 8837 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yeung Kaufman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yeung Kaufman +sn: Kaufman +description: This is Yeung Kaufman's description +facsimileTelephoneNumber: +1 818 545-2528 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 913-7928 +title: Master Product Development Dictator +userPassword: Password1 +uid: KaufmanY +givenName: Yeung +mail: KaufmanY@db0d46fdeb854c2eb066d9894606ad6e.bitwarden.com +carLicense: TKQEY7 +departmentNumber: 1467 +employeeType: Employee +homePhone: +1 818 891-7511 +initials: Y. K. +mobile: +1 818 649-9526 +pager: +1 818 555-9944 +roomNumber: 9673 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Claire Wada,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claire Wada +sn: Wada +description: This is Claire Wada's description +facsimileTelephoneNumber: +1 818 315-1113 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 992-5304 +title: Master Management Visionary +userPassword: Password1 +uid: WadaC +givenName: Claire +mail: WadaC@e13ff358b20d4f05b57860e7899fbc5c.bitwarden.com +carLicense: LK5O57 +departmentNumber: 4551 +employeeType: Contract +homePhone: +1 818 315-2124 +initials: C. W. +mobile: +1 818 823-7816 +pager: +1 818 805-3268 +roomNumber: 9866 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Laury Breglec,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laury Breglec +sn: Breglec +description: This is Laury Breglec's description +facsimileTelephoneNumber: +1 818 169-6292 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 818 243-7821 +title: Associate Administrative Madonna +userPassword: Password1 +uid: BreglecL +givenName: Laury +mail: BreglecL@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com +carLicense: VMFRDC +departmentNumber: 7755 +employeeType: Contract +homePhone: +1 818 947-6694 +initials: L. B. +mobile: +1 818 554-1278 +pager: +1 818 182-8528 +roomNumber: 9509 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maurice Guinnane,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurice Guinnane +sn: Guinnane +description: This is Maurice Guinnane's description +facsimileTelephoneNumber: +1 213 448-9703 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 885-2717 +title: Junior Administrative Warrior +userPassword: Password1 +uid: GuinnanM +givenName: Maurice +mail: GuinnanM@c881c186a173446ea0e986dc58eda7dc.bitwarden.com +carLicense: N8GCOD +departmentNumber: 2417 +employeeType: Contract +homePhone: +1 213 279-4067 +initials: M. G. +mobile: +1 213 763-2315 +pager: +1 213 943-1461 +roomNumber: 9540 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Laraine DuBois,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laraine DuBois +sn: DuBois +description: This is Laraine DuBois's description +facsimileTelephoneNumber: +1 804 964-7610 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 668-2763 +title: Supreme Peons Technician +userPassword: Password1 +uid: DuBoisL +givenName: Laraine +mail: DuBoisL@cac372b8ab83448c81ae16d3c02782c8.bitwarden.com +carLicense: 924K5A +departmentNumber: 1067 +employeeType: Normal +homePhone: +1 804 593-2773 +initials: L. D. +mobile: +1 804 890-8682 +pager: +1 804 148-4725 +roomNumber: 9406 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgeta TestingPOSTTEST +sn: TestingPOSTTEST +description: This is Georgeta TestingPOSTTEST's description +facsimileTelephoneNumber: +1 510 795-7337 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 510 927-1094 +title: Junior Administrative Writer +userPassword: Password1 +uid: TestingG +givenName: Georgeta +mail: TestingG@09e5494aed3a4d83bbfc24e4027adfc2.bitwarden.com +carLicense: M8W3JQ +departmentNumber: 4095 +employeeType: Contract +homePhone: +1 510 278-3901 +initials: G. T. +mobile: +1 510 398-1271 +pager: +1 510 126-5174 +roomNumber: 9564 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hettie Johannes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hettie Johannes +sn: Johannes +description: This is Hettie Johannes's description +facsimileTelephoneNumber: +1 408 431-5509 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 582-7320 +title: Master Product Development Punk +userPassword: Password1 +uid: JohanneH +givenName: Hettie +mail: JohanneH@d7e8af68284e4062b608faac310d89ae.bitwarden.com +carLicense: FOBYCI +departmentNumber: 4927 +employeeType: Employee +homePhone: +1 408 106-2958 +initials: H. J. +mobile: +1 408 619-7606 +pager: +1 408 625-7890 +roomNumber: 9499 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaclyn Westgarth +sn: Westgarth +description: This is Jaclyn Westgarth's description +facsimileTelephoneNumber: +1 415 844-8348 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 476-9630 +title: Master Product Development Consultant +userPassword: Password1 +uid: WestgarJ +givenName: Jaclyn +mail: WestgarJ@67c03444c05a42a3b6969db268f587ab.bitwarden.com +carLicense: P34MXW +departmentNumber: 1668 +employeeType: Employee +homePhone: +1 415 113-3165 +initials: J. W. +mobile: +1 415 559-2343 +pager: +1 415 663-4614 +roomNumber: 9812 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pascale Sprayberry +sn: Sprayberry +description: This is Pascale Sprayberry's description +facsimileTelephoneNumber: +1 415 217-4586 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 415 518-8908 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: SpraybeP +givenName: Pascale +mail: SpraybeP@2c938ad1c79549a5aaba11995cefd879.bitwarden.com +carLicense: 0KS9V8 +departmentNumber: 5768 +employeeType: Normal +homePhone: +1 415 673-1668 +initials: P. S. +mobile: +1 415 415-3347 +pager: +1 415 772-7630 +roomNumber: 9306 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hedvig Risler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hedvig Risler +sn: Risler +description: This is Hedvig Risler's description +facsimileTelephoneNumber: +1 408 424-2545 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 408 238-3071 +title: Supreme Management Czar +userPassword: Password1 +uid: RislerH +givenName: Hedvig +mail: RislerH@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com +carLicense: 5PO1VV +departmentNumber: 7892 +employeeType: Employee +homePhone: +1 408 461-9888 +initials: H. R. +mobile: +1 408 722-2057 +pager: +1 408 252-9261 +roomNumber: 8008 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Edward Badza,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edward Badza +sn: Badza +description: This is Edward Badza's description +facsimileTelephoneNumber: +1 510 468-3143 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 510 525-7207 +title: Junior Payroll Engineer +userPassword: Password1 +uid: BadzaE +givenName: Edward +mail: BadzaE@a32cc86a2bd244a1a69078536f474c4c.bitwarden.com +carLicense: Y7LNIX +departmentNumber: 6859 +employeeType: Employee +homePhone: +1 510 491-6958 +initials: E. B. +mobile: +1 510 226-6366 +pager: +1 510 129-5950 +roomNumber: 9598 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Femke Trittler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Femke Trittler +sn: Trittler +description: This is Femke Trittler's description +facsimileTelephoneNumber: +1 510 677-7251 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 381-9504 +title: Associate Product Testing Dictator +userPassword: Password1 +uid: TrittleF +givenName: Femke +mail: TrittleF@c31dc3397f3a45ca971c4674af07c210.bitwarden.com +carLicense: 70N016 +departmentNumber: 7947 +employeeType: Employee +homePhone: +1 510 878-2307 +initials: F. T. +mobile: +1 510 641-8413 +pager: +1 510 209-8880 +roomNumber: 8838 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lino Krauel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lino Krauel +sn: Krauel +description: This is Lino Krauel's description +facsimileTelephoneNumber: +1 213 881-3660 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 140-1345 +title: Chief Product Testing Admin +userPassword: Password1 +uid: KrauelL +givenName: Lino +mail: KrauelL@6ad1b625c3674b77a93e5c19216d7f12.bitwarden.com +carLicense: MLKR10 +departmentNumber: 4192 +employeeType: Normal +homePhone: +1 213 403-2818 +initials: L. K. +mobile: +1 213 133-8368 +pager: +1 213 222-8714 +roomNumber: 9021 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatsman Ayoup +sn: Ayoup +description: This is Tatsman Ayoup's description +facsimileTelephoneNumber: +1 510 381-9083 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 778-3216 +title: Associate Payroll Janitor +userPassword: Password1 +uid: AyoupT +givenName: Tatsman +mail: AyoupT@a549c5674cda44a29e90f4f33d1b9046.bitwarden.com +carLicense: GT572N +departmentNumber: 7392 +employeeType: Normal +homePhone: +1 510 205-2887 +initials: T. A. +mobile: +1 510 517-3595 +pager: +1 510 912-3230 +roomNumber: 9053 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anders Raddalgoda,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anders Raddalgoda +sn: Raddalgoda +description: This is Anders Raddalgoda's description +facsimileTelephoneNumber: +1 818 666-8982 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 818 232-7878 +title: Junior Management Mascot +userPassword: Password1 +uid: RaddalgA +givenName: Anders +mail: RaddalgA@3913d51a20f344409448501766a0f142.bitwarden.com +carLicense: 5OSTJS +departmentNumber: 6170 +employeeType: Normal +homePhone: +1 818 526-1966 +initials: A. R. +mobile: +1 818 373-7520 +pager: +1 818 655-8147 +roomNumber: 8773 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rijn Benschop,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rijn Benschop +sn: Benschop +description: This is Rijn Benschop's description +facsimileTelephoneNumber: +1 510 252-8012 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 767-6545 +title: Chief Management Architect +userPassword: Password1 +uid: BenschoR +givenName: Rijn +mail: BenschoR@dd44ac1957c74a4cb7889302d7ebe0e9.bitwarden.com +carLicense: SH3FAI +departmentNumber: 9263 +employeeType: Employee +homePhone: +1 510 831-3974 +initials: R. B. +mobile: +1 510 865-9159 +pager: +1 510 953-6149 +roomNumber: 9184 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Deva Hoch,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deva Hoch +sn: Hoch +description: This is Deva Hoch's description +facsimileTelephoneNumber: +1 804 110-6157 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 317-1122 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: HochD +givenName: Deva +mail: HochD@2c865634e0e045e2b70cc9cc6dc9005f.bitwarden.com +carLicense: KTVA93 +departmentNumber: 3888 +employeeType: Normal +homePhone: +1 804 830-5033 +initials: D. H. +mobile: +1 804 405-1044 +pager: +1 804 267-6423 +roomNumber: 9807 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mahboob Mathieson +sn: Mathieson +description: This is Mahboob Mathieson's description +facsimileTelephoneNumber: +1 804 836-9304 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 429-2166 +title: Chief Product Testing Technician +userPassword: Password1 +uid: MathiesM +givenName: Mahboob +mail: MathiesM@f7f4a447205348c3850cb06ffed2a0fd.bitwarden.com +carLicense: 4LI2Y8 +departmentNumber: 2588 +employeeType: Contract +homePhone: +1 804 657-2741 +initials: M. M. +mobile: +1 804 682-1030 +pager: +1 804 358-9979 +roomNumber: 9742 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fearless Quattrucci,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fearless Quattrucci +sn: Quattrucci +description: This is Fearless Quattrucci's description +facsimileTelephoneNumber: +1 510 466-1736 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 949-5800 +title: Junior Management Consultant +userPassword: Password1 +uid: QuattruF +givenName: Fearless +mail: QuattruF@ad1bdee03ce44222a3305339a4d53009.bitwarden.com +carLicense: 9QMARE +departmentNumber: 8733 +employeeType: Employee +homePhone: +1 510 210-8179 +initials: F. Q. +mobile: +1 510 258-4138 +pager: +1 510 731-8711 +roomNumber: 9092 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pia Singham,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pia Singham +sn: Singham +description: This is Pia Singham's description +facsimileTelephoneNumber: +1 408 665-9831 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 821-5032 +title: Master Peons Vice President +userPassword: Password1 +uid: SinghamP +givenName: Pia +mail: SinghamP@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com +carLicense: 9G10TS +departmentNumber: 9639 +employeeType: Contract +homePhone: +1 408 424-1371 +initials: P. S. +mobile: +1 408 876-1205 +pager: +1 408 134-2183 +roomNumber: 8586 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zdenek Schutte,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zdenek Schutte +sn: Schutte +description: This is Zdenek Schutte's description +facsimileTelephoneNumber: +1 408 956-2940 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 984-1835 +title: Chief Product Development Mascot +userPassword: Password1 +uid: SchutteZ +givenName: Zdenek +mail: SchutteZ@327fab76e13f495691accc9986f353a5.bitwarden.com +carLicense: CJ9T12 +departmentNumber: 9614 +employeeType: Contract +homePhone: +1 408 125-6543 +initials: Z. S. +mobile: +1 408 374-1577 +pager: +1 408 364-9802 +roomNumber: 9640 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Liam Darveau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liam Darveau +sn: Darveau +description: This is Liam Darveau's description +facsimileTelephoneNumber: +1 415 646-3397 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 883-2911 +title: Supreme Janitorial Dictator +userPassword: Password1 +uid: DarveauL +givenName: Liam +mail: DarveauL@13b504a8a169451f93c28e40583299e2.bitwarden.com +carLicense: A1STN3 +departmentNumber: 8891 +employeeType: Contract +homePhone: +1 415 873-5640 +initials: L. D. +mobile: +1 415 946-7403 +pager: +1 415 878-1643 +roomNumber: 9352 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yung Deployment,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yung Deployment +sn: Deployment +description: This is Yung Deployment's description +facsimileTelephoneNumber: +1 804 578-2245 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 891-6263 +title: Associate Management Consultant +userPassword: Password1 +uid: DeploymY +givenName: Yung +mail: DeploymY@291647d2cd1d44a99560699f40c48fb8.bitwarden.com +carLicense: EB6MET +departmentNumber: 8696 +employeeType: Employee +homePhone: +1 804 854-8834 +initials: Y. D. +mobile: +1 804 296-8345 +pager: +1 804 424-4893 +roomNumber: 9335 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Raman Feild,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raman Feild +sn: Feild +description: This is Raman Feild's description +facsimileTelephoneNumber: +1 510 149-9923 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 684-2952 +title: Supreme Payroll Warrior +userPassword: Password1 +uid: FeildR +givenName: Raman +mail: FeildR@42f7f72ca79e451abe4a35d3706fd511.bitwarden.com +carLicense: QWE3UH +departmentNumber: 5720 +employeeType: Normal +homePhone: +1 510 246-4766 +initials: R. F. +mobile: +1 510 475-8454 +pager: +1 510 810-1200 +roomNumber: 8659 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mayasandra Mohan +sn: Mohan +description: This is Mayasandra Mohan's description +facsimileTelephoneNumber: +1 818 151-1616 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 358-5499 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: MohanM +givenName: Mayasandra +mail: MohanM@8b6b01e9c008452894c8ace1d155cf0d.bitwarden.com +carLicense: 141VVW +departmentNumber: 8554 +employeeType: Employee +homePhone: +1 818 580-8920 +initials: M. M. +mobile: +1 818 208-5948 +pager: +1 818 998-5260 +roomNumber: 8339 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoke Mustafa +sn: Mustafa +description: This is Yoke Mustafa's description +facsimileTelephoneNumber: +1 818 711-6502 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 833-2371 +title: Chief Human Resources Vice President +userPassword: Password1 +uid: MustafaY +givenName: Yoke +mail: MustafaY@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com +carLicense: T5V9E9 +departmentNumber: 2964 +employeeType: Contract +homePhone: +1 818 537-8689 +initials: Y. M. +mobile: +1 818 153-1585 +pager: +1 818 138-6513 +roomNumber: 8795 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nial Meunier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nial Meunier +sn: Meunier +description: This is Nial Meunier's description +facsimileTelephoneNumber: +1 408 982-9014 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 680-1418 +title: Master Janitorial Evangelist +userPassword: Password1 +uid: MeunierN +givenName: Nial +mail: MeunierN@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com +carLicense: LIYXAH +departmentNumber: 8808 +employeeType: Employee +homePhone: +1 408 791-9742 +initials: N. M. +mobile: +1 408 449-5162 +pager: +1 408 697-3190 +roomNumber: 9897 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Evans Laker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evans Laker +sn: Laker +description: This is Evans Laker's description +facsimileTelephoneNumber: +1 206 237-5119 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 400-5352 +title: Junior Product Testing Mascot +userPassword: Password1 +uid: LakerE +givenName: Evans +mail: LakerE@8068d857ca8d45118464c596ca9f4192.bitwarden.com +carLicense: LWAEAA +departmentNumber: 4790 +employeeType: Normal +homePhone: +1 206 717-6406 +initials: E. L. +mobile: +1 206 115-5402 +pager: +1 206 649-3053 +roomNumber: 8518 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vale Wiederhold,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vale Wiederhold +sn: Wiederhold +description: This is Vale Wiederhold's description +facsimileTelephoneNumber: +1 818 526-1151 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 192-8920 +title: Chief Management Madonna +userPassword: Password1 +uid: WiederhV +givenName: Vale +mail: WiederhV@dd11611b8b2c47a382a866e9115fea27.bitwarden.com +carLicense: PH0SAK +departmentNumber: 2103 +employeeType: Normal +homePhone: +1 818 340-8695 +initials: V. W. +mobile: +1 818 538-6292 +pager: +1 818 325-3235 +roomNumber: 8050 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dulce Xavier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulce Xavier +sn: Xavier +description: This is Dulce Xavier's description +facsimileTelephoneNumber: +1 510 431-8495 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 588-4603 +title: Associate Janitorial Director +userPassword: Password1 +uid: XavierD +givenName: Dulce +mail: XavierD@6ce18e31fee44ca6a1d60162c1ff34ee.bitwarden.com +carLicense: LA20WO +departmentNumber: 4077 +employeeType: Normal +homePhone: +1 510 354-1520 +initials: D. X. +mobile: +1 510 645-6693 +pager: +1 510 432-3321 +roomNumber: 8215 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Walt Ventura,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walt Ventura +sn: Ventura +description: This is Walt Ventura's description +facsimileTelephoneNumber: +1 206 413-8708 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 506-1767 +title: Associate Management Architect +userPassword: Password1 +uid: VenturaW +givenName: Walt +mail: VenturaW@f06eb6e5ebe44697824a5e168080f66f.bitwarden.com +carLicense: XQTJ6T +departmentNumber: 4892 +employeeType: Contract +homePhone: +1 206 786-6197 +initials: W. V. +mobile: +1 206 960-4884 +pager: +1 206 227-2267 +roomNumber: 9139 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Miklos Rhyndress,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miklos Rhyndress +sn: Rhyndress +description: This is Miklos Rhyndress's description +facsimileTelephoneNumber: +1 213 936-6887 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 608-1380 +title: Junior Peons Czar +userPassword: Password1 +uid: RhyndreM +givenName: Miklos +mail: RhyndreM@6d618be347104dbc857cf2fd7fc2c14d.bitwarden.com +carLicense: CXQFPT +departmentNumber: 8256 +employeeType: Normal +homePhone: +1 213 568-4230 +initials: M. R. +mobile: +1 213 748-8647 +pager: +1 213 566-1726 +roomNumber: 9569 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryvonne Frendo +sn: Frendo +description: This is Maryvonne Frendo's description +facsimileTelephoneNumber: +1 804 400-7362 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 804 434-8043 +title: Associate Administrative Fellow +userPassword: Password1 +uid: FrendoM +givenName: Maryvonne +mail: FrendoM@602ba75a97ea4dc1ac3622553464c0ac.bitwarden.com +carLicense: V8MXE2 +departmentNumber: 5592 +employeeType: Normal +homePhone: +1 804 846-6211 +initials: M. F. +mobile: +1 804 675-5509 +pager: +1 804 315-6294 +roomNumber: 9904 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cherise Blodgett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherise Blodgett +sn: Blodgett +description: This is Cherise Blodgett's description +facsimileTelephoneNumber: +1 804 172-6354 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 488-1953 +title: Associate Payroll Director +userPassword: Password1 +uid: BlodgetC +givenName: Cherise +mail: BlodgetC@c03386ce7faa472d85d312447ef33656.bitwarden.com +carLicense: QXH0MX +departmentNumber: 7409 +employeeType: Employee +homePhone: +1 804 664-2299 +initials: C. B. +mobile: +1 804 420-4489 +pager: +1 804 617-1162 +roomNumber: 8243 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jenifer Stansell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenifer Stansell +sn: Stansell +description: This is Jenifer Stansell's description +facsimileTelephoneNumber: +1 804 389-3427 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 919-9744 +title: Master Peons Figurehead +userPassword: Password1 +uid: StanselJ +givenName: Jenifer +mail: StanselJ@8356479eabd643419aa6b8ad0de3b0b4.bitwarden.com +carLicense: CP2XX8 +departmentNumber: 7851 +employeeType: Contract +homePhone: +1 804 513-8309 +initials: J. S. +mobile: +1 804 162-2131 +pager: +1 804 391-1777 +roomNumber: 8382 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fung Ginzburg,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fung Ginzburg +sn: Ginzburg +description: This is Fung Ginzburg's description +facsimileTelephoneNumber: +1 804 284-2257 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 804 977-1051 +title: Associate Peons Director +userPassword: Password1 +uid: GinzburF +givenName: Fung +mail: GinzburF@f94e4910d3ba449793ba33df7347ad39.bitwarden.com +carLicense: 04TWG3 +departmentNumber: 1079 +employeeType: Contract +homePhone: +1 804 985-3201 +initials: F. G. +mobile: +1 804 919-9444 +pager: +1 804 316-9926 +roomNumber: 8733 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nikolaos Mapile,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nikolaos Mapile +sn: Mapile +description: This is Nikolaos Mapile's description +facsimileTelephoneNumber: +1 408 897-3885 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 408 446-1132 +title: Associate Management Pinhead +userPassword: Password1 +uid: MapileN +givenName: Nikolaos +mail: MapileN@edb994df27cb4c98bcb6984d0f87b2c8.bitwarden.com +carLicense: EYFY9W +departmentNumber: 2596 +employeeType: Employee +homePhone: +1 408 243-1166 +initials: N. M. +mobile: +1 408 951-6896 +pager: +1 408 921-7599 +roomNumber: 9893 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Queenie Spolar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Queenie Spolar +sn: Spolar +description: This is Queenie Spolar's description +facsimileTelephoneNumber: +1 510 138-2703 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 913-5321 +title: Associate Administrative Figurehead +userPassword: Password1 +uid: SpolarQ +givenName: Queenie +mail: SpolarQ@a613bdb3274e457a9c2452e800065937.bitwarden.com +carLicense: 0KPUOL +departmentNumber: 2124 +employeeType: Employee +homePhone: +1 510 613-6114 +initials: Q. S. +mobile: +1 510 709-1023 +pager: +1 510 427-4103 +roomNumber: 9129 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rivkah Vopalensky +sn: Vopalensky +description: This is Rivkah Vopalensky's description +facsimileTelephoneNumber: +1 818 403-8249 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 655-9773 +title: Junior Human Resources Consultant +userPassword: Password1 +uid: VopalenR +givenName: Rivkah +mail: VopalenR@f263976411814a39ae02ef1a1447e567.bitwarden.com +carLicense: LT5E3V +departmentNumber: 3045 +employeeType: Contract +homePhone: +1 818 811-8451 +initials: R. V. +mobile: +1 818 654-5404 +pager: +1 818 983-7259 +roomNumber: 8489 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Franki Weyand,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franki Weyand +sn: Weyand +description: This is Franki Weyand's description +facsimileTelephoneNumber: +1 408 639-2973 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 887-2357 +title: Supreme Product Testing Architect +userPassword: Password1 +uid: WeyandF +givenName: Franki +mail: WeyandF@85375ce566b44b3aa8f322d00fc1330c.bitwarden.com +carLicense: T4YAV3 +departmentNumber: 9748 +employeeType: Employee +homePhone: +1 408 645-6926 +initials: F. W. +mobile: +1 408 746-4110 +pager: +1 408 942-9714 +roomNumber: 9037 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Suat Whitford,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suat Whitford +sn: Whitford +description: This is Suat Whitford's description +facsimileTelephoneNumber: +1 213 406-3353 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 920-6633 +title: Junior Janitorial Artist +userPassword: Password1 +uid: WhitforS +givenName: Suat +mail: WhitforS@23cf32b7148140cfb4b02ddf8d62cfa5.bitwarden.com +carLicense: 0BFJ5U +departmentNumber: 9859 +employeeType: Employee +homePhone: +1 213 831-7086 +initials: S. W. +mobile: +1 213 298-5489 +pager: +1 213 502-2377 +roomNumber: 8590 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Isadora Capelle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isadora Capelle +sn: Capelle +description: This is Isadora Capelle's description +facsimileTelephoneNumber: +1 415 391-4219 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 767-2129 +title: Supreme Product Development Director +userPassword: Password1 +uid: CapelleI +givenName: Isadora +mail: CapelleI@6ff43a0cd199484abc0f4c8402f6ccf8.bitwarden.com +carLicense: R69Q79 +departmentNumber: 9781 +employeeType: Employee +homePhone: +1 415 754-7865 +initials: I. C. +mobile: +1 415 433-7501 +pager: +1 415 100-9189 +roomNumber: 9417 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Loria Timmerman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loria Timmerman +sn: Timmerman +description: This is Loria Timmerman's description +facsimileTelephoneNumber: +1 408 754-5715 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 515-3351 +title: Associate Product Development Artist +userPassword: Password1 +uid: TimmermL +givenName: Loria +mail: TimmermL@6c3860a955fe431ca8d48e56cd2c1cc8.bitwarden.com +carLicense: G3DG66 +departmentNumber: 3382 +employeeType: Contract +homePhone: +1 408 248-7707 +initials: L. T. +mobile: +1 408 482-3014 +pager: +1 408 988-3086 +roomNumber: 9765 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryPat Tremblay +sn: Tremblay +description: This is MaryPat Tremblay's description +facsimileTelephoneNumber: +1 818 788-7469 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 502-5004 +title: Chief Payroll Warrior +userPassword: Password1 +uid: TremblaM +givenName: MaryPat +mail: TremblaM@e7d1f4f0f2c247cc84176f3d1fda8997.bitwarden.com +carLicense: 0LXP9O +departmentNumber: 7546 +employeeType: Contract +homePhone: +1 818 643-1172 +initials: M. T. +mobile: +1 818 634-2942 +pager: +1 818 546-4487 +roomNumber: 8041 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alfredo Bedient +sn: Bedient +description: This is Alfredo Bedient's description +facsimileTelephoneNumber: +1 206 495-5719 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 436-8698 +title: Junior Human Resources Director +userPassword: Password1 +uid: BedientA +givenName: Alfredo +mail: BedientA@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com +carLicense: 2Y8IFE +departmentNumber: 1140 +employeeType: Contract +homePhone: +1 206 517-5855 +initials: A. B. +mobile: +1 206 160-4083 +pager: +1 206 600-7837 +roomNumber: 9739 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bobbi Dupree,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobbi Dupree +sn: Dupree +description: This is Bobbi Dupree's description +facsimileTelephoneNumber: +1 206 950-7584 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 662-9241 +title: Master Management Manager +userPassword: Password1 +uid: DupreeB +givenName: Bobbi +mail: DupreeB@d71f931e88694d74b88e32769af98e29.bitwarden.com +carLicense: 0AVCF1 +departmentNumber: 6949 +employeeType: Employee +homePhone: +1 206 514-3866 +initials: B. D. +mobile: +1 206 459-9008 +pager: +1 206 161-9083 +roomNumber: 9534 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leshia Gaither,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leshia Gaither +sn: Gaither +description: This is Leshia Gaither's description +facsimileTelephoneNumber: +1 206 883-7303 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 886-2783 +title: Chief Product Testing Admin +userPassword: Password1 +uid: GaitherL +givenName: Leshia +mail: GaitherL@0bc2c297f4214248890001cfe94999e5.bitwarden.com +carLicense: XB25QN +departmentNumber: 2014 +employeeType: Employee +homePhone: +1 206 308-5468 +initials: L. G. +mobile: +1 206 666-1512 +pager: +1 206 925-6453 +roomNumber: 8337 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Calla McIsaac,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calla McIsaac +sn: McIsaac +description: This is Calla McIsaac's description +facsimileTelephoneNumber: +1 510 880-5597 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 709-4686 +title: Junior Human Resources Artist +userPassword: Password1 +uid: McIsaacC +givenName: Calla +mail: McIsaacC@dcc2a55662ed42a29feb9be5fbe1aebc.bitwarden.com +carLicense: 2NMPF0 +departmentNumber: 5321 +employeeType: Employee +homePhone: +1 510 376-9746 +initials: C. M. +mobile: +1 510 287-1121 +pager: +1 510 844-2636 +roomNumber: 9467 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Roby Kasbia,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roby Kasbia +sn: Kasbia +description: This is Roby Kasbia's description +facsimileTelephoneNumber: +1 804 882-1356 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 187-8050 +title: Chief Peons Punk +userPassword: Password1 +uid: KasbiaR +givenName: Roby +mail: KasbiaR@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com +carLicense: O7SN8P +departmentNumber: 9707 +employeeType: Normal +homePhone: +1 804 234-2206 +initials: R. K. +mobile: +1 804 649-7518 +pager: +1 804 934-9617 +roomNumber: 9027 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Samia Wacker,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Samia Wacker +sn: Wacker +description: This is Samia Wacker's description +facsimileTelephoneNumber: +1 804 972-4940 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 590-3855 +title: Supreme Management Architect +userPassword: Password1 +uid: WackerS +givenName: Samia +mail: WackerS@ffedbb5dcd2e43d89a2fe0f7ea7157e8.bitwarden.com +carLicense: 1LMKJE +departmentNumber: 6511 +employeeType: Normal +homePhone: +1 804 582-5809 +initials: S. W. +mobile: +1 804 726-2098 +pager: +1 804 839-5678 +roomNumber: 9638 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurelia Klimas +sn: Klimas +description: This is Aurelia Klimas's description +facsimileTelephoneNumber: +1 213 819-4851 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 870-1256 +title: Supreme Product Testing Evangelist +userPassword: Password1 +uid: KlimasA +givenName: Aurelia +mail: KlimasA@9cbd4c37891849299ce4208e274287c6.bitwarden.com +carLicense: J8NVR0 +departmentNumber: 1884 +employeeType: Employee +homePhone: +1 213 965-7469 +initials: A. K. +mobile: +1 213 611-1248 +pager: +1 213 980-2166 +roomNumber: 9581 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stephen Marketing,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephen Marketing +sn: Marketing +description: This is Stephen Marketing's description +facsimileTelephoneNumber: +1 415 263-5596 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 141-5174 +title: Chief Administrative Technician +userPassword: Password1 +uid: MarketiS +givenName: Stephen +mail: MarketiS@9b56a002e1e845bebc57785089119222.bitwarden.com +carLicense: 71LWXJ +departmentNumber: 8261 +employeeType: Employee +homePhone: +1 415 991-8789 +initials: S. M. +mobile: +1 415 161-7189 +pager: +1 415 745-9639 +roomNumber: 8453 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulcinea Reuss +sn: Reuss +description: This is Dulcinea Reuss's description +facsimileTelephoneNumber: +1 206 692-5628 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 474-3179 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: ReussD +givenName: Dulcinea +mail: ReussD@6f5f719e8c7c44dba4e5307764a1a899.bitwarden.com +carLicense: JC1NNA +departmentNumber: 2349 +employeeType: Employee +homePhone: +1 206 500-9283 +initials: D. R. +mobile: +1 206 741-4024 +pager: +1 206 558-1276 +roomNumber: 9463 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anissa Gottstein,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anissa Gottstein +sn: Gottstein +description: This is Anissa Gottstein's description +facsimileTelephoneNumber: +1 818 202-8462 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 818 789-9222 +title: Supreme Peons Technician +userPassword: Password1 +uid: GottsteA +givenName: Anissa +mail: GottsteA@87059a6507b64511ab56381369ebea64.bitwarden.com +carLicense: KBSXF6 +departmentNumber: 5903 +employeeType: Employee +homePhone: +1 818 657-7892 +initials: A. G. +mobile: +1 818 550-4603 +pager: +1 818 941-6331 +roomNumber: 9620 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MarieAndree Galipeau +sn: Galipeau +description: This is MarieAndree Galipeau's description +facsimileTelephoneNumber: +1 408 825-6122 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 609-7792 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: GalipeaM +givenName: MarieAndree +mail: GalipeaM@a9d076873ae84725b15dea4969311d19.bitwarden.com +carLicense: O4FMLB +departmentNumber: 3282 +employeeType: Employee +homePhone: +1 408 865-4495 +initials: M. G. +mobile: +1 408 842-1345 +pager: +1 408 551-1282 +roomNumber: 8974 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carlin Boult,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlin Boult +sn: Boult +description: This is Carlin Boult's description +facsimileTelephoneNumber: +1 804 337-2693 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 714-3281 +title: Associate Peons Artist +userPassword: Password1 +uid: BoultC +givenName: Carlin +mail: BoultC@10bb017137f049d59bb1ad7676fcda69.bitwarden.com +carLicense: 3O2LUN +departmentNumber: 2327 +employeeType: Normal +homePhone: +1 804 420-8014 +initials: C. B. +mobile: +1 804 610-1480 +pager: +1 804 263-6631 +roomNumber: 8484 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kitt Briden,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kitt Briden +sn: Briden +description: This is Kitt Briden's description +facsimileTelephoneNumber: +1 818 998-3299 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 887-9300 +title: Chief Janitorial Punk +userPassword: Password1 +uid: BridenK +givenName: Kitt +mail: BridenK@f3d35636fac14230bdd8e3b7a9740351.bitwarden.com +carLicense: EY3R3V +departmentNumber: 3677 +employeeType: Normal +homePhone: +1 818 901-8799 +initials: K. B. +mobile: +1 818 148-3814 +pager: +1 818 662-7195 +roomNumber: 8968 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ramniklal Buske,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramniklal Buske +sn: Buske +description: This is Ramniklal Buske's description +facsimileTelephoneNumber: +1 213 356-9402 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 143-5672 +title: Chief Management President +userPassword: Password1 +uid: BuskeR +givenName: Ramniklal +mail: BuskeR@828176ba128d4cb487e3464dc77f09ef.bitwarden.com +carLicense: PIN5DD +departmentNumber: 3939 +employeeType: Contract +homePhone: +1 213 776-8139 +initials: R. B. +mobile: +1 213 161-1944 +pager: +1 213 986-9301 +roomNumber: 8017 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Par Giang,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Par Giang +sn: Giang +description: This is Par Giang's description +facsimileTelephoneNumber: +1 818 524-6650 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 830-4729 +title: Master Administrative Dictator +userPassword: Password1 +uid: GiangP +givenName: Par +mail: GiangP@510955a0267640f295624f2d3542d78c.bitwarden.com +carLicense: H3BDFI +departmentNumber: 7571 +employeeType: Normal +homePhone: +1 818 717-2479 +initials: P. G. +mobile: +1 818 927-6333 +pager: +1 818 494-1757 +roomNumber: 9955 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquelynn Knox +sn: Knox +description: This is Jacquelynn Knox's description +facsimileTelephoneNumber: +1 408 198-3070 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 218-8179 +title: Associate Product Development Mascot +userPassword: Password1 +uid: KnoxJ +givenName: Jacquelynn +mail: KnoxJ@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com +carLicense: KG0GBF +departmentNumber: 4799 +employeeType: Contract +homePhone: +1 408 315-7258 +initials: J. K. +mobile: +1 408 506-8231 +pager: +1 408 141-9620 +roomNumber: 8892 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Daisey Karam,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daisey Karam +sn: Karam +description: This is Daisey Karam's description +facsimileTelephoneNumber: +1 408 771-2274 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 885-6703 +title: Junior Management Technician +userPassword: Password1 +uid: KaramD +givenName: Daisey +mail: KaramD@af703f54ddb945e38afdba5f17819d01.bitwarden.com +carLicense: OA5XUF +departmentNumber: 9761 +employeeType: Employee +homePhone: +1 408 521-9863 +initials: D. K. +mobile: +1 408 506-6559 +pager: +1 408 117-3571 +roomNumber: 8355 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Levent Khouderchah,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Levent Khouderchah +sn: Khouderchah +description: This is Levent Khouderchah's description +facsimileTelephoneNumber: +1 804 120-2967 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 609-5689 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: KhouderL +givenName: Levent +mail: KhouderL@cc743470ff7d424999d3c3aceed5aa98.bitwarden.com +carLicense: LA2E13 +departmentNumber: 3950 +employeeType: Employee +homePhone: +1 804 718-3999 +initials: L. K. +mobile: +1 804 414-9815 +pager: +1 804 139-1659 +roomNumber: 9494 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Demetria Projects,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Demetria Projects +sn: Projects +description: This is Demetria Projects's description +facsimileTelephoneNumber: +1 818 745-1183 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 729-1159 +title: Supreme Management Sales Rep +userPassword: Password1 +uid: ProjectD +givenName: Demetria +mail: ProjectD@040eff361ea747e78133529faeb94ba1.bitwarden.com +carLicense: 7GX9JI +departmentNumber: 1492 +employeeType: Employee +homePhone: +1 818 194-8768 +initials: D. P. +mobile: +1 818 584-1280 +pager: +1 818 476-4782 +roomNumber: 9020 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jules Highsmith,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jules Highsmith +sn: Highsmith +description: This is Jules Highsmith's description +facsimileTelephoneNumber: +1 818 993-7337 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 818 231-1255 +title: Junior Janitorial Architect +userPassword: Password1 +uid: HighsmiJ +givenName: Jules +mail: HighsmiJ@0798984bbb0c4179a1769a476df089f2.bitwarden.com +carLicense: QMW09E +departmentNumber: 8819 +employeeType: Normal +homePhone: +1 818 531-9090 +initials: J. H. +mobile: +1 818 419-5593 +pager: +1 818 202-3006 +roomNumber: 8544 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Misbah Kimma,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Misbah Kimma +sn: Kimma +description: This is Misbah Kimma's description +facsimileTelephoneNumber: +1 206 210-8545 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 854-9875 +title: Associate Human Resources Grunt +userPassword: Password1 +uid: KimmaM +givenName: Misbah +mail: KimmaM@e5d9cd8563784493b06bdd8fd1d46cd9.bitwarden.com +carLicense: Y177K9 +departmentNumber: 4606 +employeeType: Normal +homePhone: +1 206 909-9397 +initials: M. K. +mobile: +1 206 705-4195 +pager: +1 206 814-2948 +roomNumber: 9818 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Morganne Teed,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morganne Teed +sn: Teed +description: This is Morganne Teed's description +facsimileTelephoneNumber: +1 408 101-5871 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 499-4803 +title: Chief Management Stooge +userPassword: Password1 +uid: TeedM +givenName: Morganne +mail: TeedM@540d8b0a17d449ce8bcc397ded86d3bf.bitwarden.com +carLicense: YQ19U2 +departmentNumber: 1219 +employeeType: Employee +homePhone: +1 408 507-6219 +initials: M. T. +mobile: +1 408 112-9021 +pager: +1 408 979-5476 +roomNumber: 9476 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mozelle Huang,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mozelle Huang +sn: Huang +description: This is Mozelle Huang's description +facsimileTelephoneNumber: +1 818 768-2010 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 904-5828 +title: Junior Administrative Architect +userPassword: Password1 +uid: HuangM +givenName: Mozelle +mail: HuangM@6834e07b8b7a48599c5352f812afcb14.bitwarden.com +carLicense: OYKVUT +departmentNumber: 8376 +employeeType: Employee +homePhone: +1 818 627-4730 +initials: M. H. +mobile: +1 818 233-9078 +pager: +1 818 980-6852 +roomNumber: 8441 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Stacy Boehlke,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacy Boehlke +sn: Boehlke +description: This is Stacy Boehlke's description +facsimileTelephoneNumber: +1 818 143-6461 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 219-8577 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: BoehlkeS +givenName: Stacy +mail: BoehlkeS@7d7fba0007d84df48116a5de2752d736.bitwarden.com +carLicense: SISIH7 +departmentNumber: 9596 +employeeType: Contract +homePhone: +1 818 315-1619 +initials: S. B. +mobile: +1 818 131-5630 +pager: +1 818 718-9778 +roomNumber: 9247 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertrud Alexan +sn: Alexan +description: This is Gertrud Alexan's description +facsimileTelephoneNumber: +1 408 488-7890 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 408 543-2787 +title: Junior Product Testing Madonna +userPassword: Password1 +uid: AlexanG +givenName: Gertrud +mail: AlexanG@c34ab4db75da4e338c2262d22bcb3019.bitwarden.com +carLicense: N41J4U +departmentNumber: 3272 +employeeType: Contract +homePhone: +1 408 963-3003 +initials: G. A. +mobile: +1 408 637-3429 +pager: +1 408 132-7486 +roomNumber: 9857 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolanda Walbridge +sn: Walbridge +description: This is Jolanda Walbridge's description +facsimileTelephoneNumber: +1 510 407-2388 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 378-9486 +title: Master Administrative Admin +userPassword: Password1 +uid: WalbridJ +givenName: Jolanda +mail: WalbridJ@f5fd329c5c644159a0d5837b63c559bb.bitwarden.com +carLicense: CPU9EQ +departmentNumber: 8412 +employeeType: Employee +homePhone: +1 510 498-9925 +initials: J. W. +mobile: +1 510 760-9381 +pager: +1 510 373-1995 +roomNumber: 9516 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Angelica Sarkari,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angelica Sarkari +sn: Sarkari +description: This is Angelica Sarkari's description +facsimileTelephoneNumber: +1 408 297-5818 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 801-9159 +title: Supreme Management Assistant +userPassword: Password1 +uid: SarkariA +givenName: Angelica +mail: SarkariA@97df64fd63964d63ae961e1122586e46.bitwarden.com +carLicense: 0YFP00 +departmentNumber: 7487 +employeeType: Normal +homePhone: +1 408 499-2130 +initials: A. S. +mobile: +1 408 502-2597 +pager: +1 408 714-9812 +roomNumber: 8850 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Michel Akyurekli,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michel Akyurekli +sn: Akyurekli +description: This is Michel Akyurekli's description +facsimileTelephoneNumber: +1 804 503-5707 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 875-5175 +title: Chief Payroll Manager +userPassword: Password1 +uid: AkyurekM +givenName: Michel +mail: AkyurekM@10e0fd0f72834c84a749bfbeb6ab529e.bitwarden.com +carLicense: FXGH5Q +departmentNumber: 3277 +employeeType: Contract +homePhone: +1 804 541-9709 +initials: M. A. +mobile: +1 804 441-6554 +pager: +1 804 512-9168 +roomNumber: 9254 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silvester Sawchuk +sn: Sawchuk +description: This is Silvester Sawchuk's description +facsimileTelephoneNumber: +1 804 936-5777 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 896-8600 +title: Master Product Development President +userPassword: Password1 +uid: SawchukS +givenName: Silvester +mail: SawchukS@cb980ae301084964a9693d89f9fb2ea1.bitwarden.com +carLicense: W4H76N +departmentNumber: 8592 +employeeType: Contract +homePhone: +1 804 537-9413 +initials: S. S. +mobile: +1 804 777-6136 +pager: +1 804 634-1971 +roomNumber: 8989 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rayna Diep,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rayna Diep +sn: Diep +description: This is Rayna Diep's description +facsimileTelephoneNumber: +1 415 424-5411 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 710-5592 +title: Master Product Development Sales Rep +userPassword: Password1 +uid: DiepR +givenName: Rayna +mail: DiepR@dd8272e863174597a9c6eb5aaf131b06.bitwarden.com +carLicense: 8WX0CN +departmentNumber: 8663 +employeeType: Normal +homePhone: +1 415 159-7682 +initials: R. D. +mobile: +1 415 780-9708 +pager: +1 415 204-3990 +roomNumber: 9090 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dolorita Netdbs +sn: Netdbs +description: This is Dolorita Netdbs's description +facsimileTelephoneNumber: +1 510 276-5244 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 410-5381 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: NetdbsD +givenName: Dolorita +mail: NetdbsD@ba870021396f4a5691ef47f553098ab0.bitwarden.com +carLicense: XAXE29 +departmentNumber: 9217 +employeeType: Employee +homePhone: +1 510 584-4255 +initials: D. N. +mobile: +1 510 583-6631 +pager: +1 510 573-4673 +roomNumber: 9385 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ollie Forslund,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ollie Forslund +sn: Forslund +description: This is Ollie Forslund's description +facsimileTelephoneNumber: +1 804 951-2769 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 224-9727 +title: Supreme Product Development Technician +userPassword: Password1 +uid: ForslunO +givenName: Ollie +mail: ForslunO@9e342fa3efb14712a894fba19d56a8d2.bitwarden.com +carLicense: OMDQP4 +departmentNumber: 8125 +employeeType: Contract +homePhone: +1 804 292-3134 +initials: O. F. +mobile: +1 804 656-6976 +pager: +1 804 457-2306 +roomNumber: 8494 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebbecca Ivanyi +sn: Ivanyi +description: This is Rebbecca Ivanyi's description +facsimileTelephoneNumber: +1 213 484-5987 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 920-1560 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: IvanyiR +givenName: Rebbecca +mail: IvanyiR@49fad969a9cf4f7f9ee17b24c9d91f37.bitwarden.com +carLicense: 536HUS +departmentNumber: 8635 +employeeType: Employee +homePhone: +1 213 401-8101 +initials: R. I. +mobile: +1 213 575-8670 +pager: +1 213 210-6660 +roomNumber: 9919 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Germain Nobes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Germain Nobes +sn: Nobes +description: This is Germain Nobes's description +facsimileTelephoneNumber: +1 206 704-3671 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 195-5468 +title: Master Human Resources Developer +userPassword: Password1 +uid: NobesG +givenName: Germain +mail: NobesG@5b56eb88f88b42a3b2d8c2c6c1108102.bitwarden.com +carLicense: UN6H9U +departmentNumber: 5968 +employeeType: Employee +homePhone: +1 206 609-7550 +initials: G. N. +mobile: +1 206 512-6923 +pager: +1 206 585-2274 +roomNumber: 9048 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sidonnie Thomlinson +sn: Thomlinson +description: This is Sidonnie Thomlinson's description +facsimileTelephoneNumber: +1 206 990-3305 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 860-2089 +title: Junior Human Resources Mascot +userPassword: Password1 +uid: ThomlinS +givenName: Sidonnie +mail: ThomlinS@6640f4471cc54a89999fc29622a696c3.bitwarden.com +carLicense: 9ID7NN +departmentNumber: 8747 +employeeType: Employee +homePhone: +1 206 667-5507 +initials: S. T. +mobile: +1 206 216-5040 +pager: +1 206 312-1464 +roomNumber: 9984 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Daria Farnham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daria Farnham +sn: Farnham +description: This is Daria Farnham's description +facsimileTelephoneNumber: +1 213 530-3493 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 966-5091 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: FarnhamD +givenName: Daria +mail: FarnhamD@535949b117544e80b4ad9c1fa166edb9.bitwarden.com +carLicense: PO8CGG +departmentNumber: 5962 +employeeType: Contract +homePhone: +1 213 367-9645 +initials: D. F. +mobile: +1 213 198-5319 +pager: +1 213 895-7139 +roomNumber: 8963 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rohit McSorley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rohit McSorley +sn: McSorley +description: This is Rohit McSorley's description +facsimileTelephoneNumber: +1 510 665-8151 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 242-2858 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: McSorleR +givenName: Rohit +mail: McSorleR@2b68ad1154c2463cae24d71d411d150c.bitwarden.com +carLicense: B5ILOF +departmentNumber: 8757 +employeeType: Normal +homePhone: +1 510 277-4533 +initials: R. M. +mobile: +1 510 703-1421 +pager: +1 510 239-4151 +roomNumber: 9028 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Novelia Sossaman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Novelia Sossaman +sn: Sossaman +description: This is Novelia Sossaman's description +facsimileTelephoneNumber: +1 213 949-9889 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 311-2338 +title: Supreme Administrative Czar +userPassword: Password1 +uid: SossamaN +givenName: Novelia +mail: SossamaN@527588b4f1b4422fb6b034c9d08f2576.bitwarden.com +carLicense: IJKETW +departmentNumber: 4074 +employeeType: Normal +homePhone: +1 213 760-4664 +initials: N. S. +mobile: +1 213 393-3439 +pager: +1 213 917-8565 +roomNumber: 8251 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marabel Oster,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marabel Oster +sn: Oster +description: This is Marabel Oster's description +facsimileTelephoneNumber: +1 415 937-1163 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 814-5831 +title: Associate Human Resources Manager +userPassword: Password1 +uid: OsterM +givenName: Marabel +mail: OsterM@fbc893f003694c649780eac570605509.bitwarden.com +carLicense: P8FVP0 +departmentNumber: 5590 +employeeType: Contract +homePhone: +1 415 370-5084 +initials: M. O. +mobile: +1 415 642-8645 +pager: +1 415 664-9747 +roomNumber: 8750 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mufinella Klashinsky +sn: Klashinsky +description: This is Mufinella Klashinsky's description +facsimileTelephoneNumber: +1 818 717-5733 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 818 944-7625 +title: Master Human Resources Dictator +userPassword: Password1 +uid: KlashinM +givenName: Mufinella +mail: KlashinM@3f84853ed30445ccb6957c251cefdc54.bitwarden.com +carLicense: RL3W8V +departmentNumber: 9247 +employeeType: Normal +homePhone: +1 818 737-8652 +initials: M. K. +mobile: +1 818 330-1996 +pager: +1 818 184-3610 +roomNumber: 8188 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marco Hoagland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marco Hoagland +sn: Hoagland +description: This is Marco Hoagland's description +facsimileTelephoneNumber: +1 804 346-6450 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 775-7723 +title: Master Janitorial Artist +userPassword: Password1 +uid: HoaglanM +givenName: Marco +mail: HoaglanM@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com +carLicense: V5N1RN +departmentNumber: 1891 +employeeType: Contract +homePhone: +1 804 163-1721 +initials: M. H. +mobile: +1 804 447-2126 +pager: +1 804 509-1070 +roomNumber: 9505 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gerty Hebert,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerty Hebert +sn: Hebert +description: This is Gerty Hebert's description +facsimileTelephoneNumber: +1 804 861-5663 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 425-1774 +title: Associate Management President +userPassword: Password1 +uid: HebertG +givenName: Gerty +mail: HebertG@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com +carLicense: 9PWPF0 +departmentNumber: 9596 +employeeType: Normal +homePhone: +1 804 759-9449 +initials: G. H. +mobile: +1 804 958-9210 +pager: +1 804 316-6198 +roomNumber: 9508 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marcela Dufresne,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcela Dufresne +sn: Dufresne +description: This is Marcela Dufresne's description +facsimileTelephoneNumber: +1 206 664-7344 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 206 954-1857 +title: Master Management Admin +userPassword: Password1 +uid: DufresnM +givenName: Marcela +mail: DufresnM@55d3abf188cf489e982ee3fc8f3c0c3d.bitwarden.com +carLicense: 7PK22D +departmentNumber: 3743 +employeeType: Normal +homePhone: +1 206 198-1843 +initials: M. D. +mobile: +1 206 401-1136 +pager: +1 206 338-8054 +roomNumber: 8891 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deidre Chaisupakosol +sn: Chaisupakosol +description: This is Deidre Chaisupakosol's description +facsimileTelephoneNumber: +1 804 847-7909 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 854-8086 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: ChaisupD +givenName: Deidre +mail: ChaisupD@66c076947bac46c6bf8b54d183a4a3cc.bitwarden.com +carLicense: LDD6JE +departmentNumber: 5083 +employeeType: Contract +homePhone: +1 804 175-7832 +initials: D. C. +mobile: +1 804 147-9179 +pager: +1 804 507-3727 +roomNumber: 9565 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Almeda Maloney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Almeda Maloney +sn: Maloney +description: This is Almeda Maloney's description +facsimileTelephoneNumber: +1 206 167-9771 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 382-2717 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: MaloneyA +givenName: Almeda +mail: MaloneyA@861b221ff6974e6cbb5a0c00d198c4bc.bitwarden.com +carLicense: 1GUSI2 +departmentNumber: 7855 +employeeType: Normal +homePhone: +1 206 339-6450 +initials: A. M. +mobile: +1 206 843-8719 +pager: +1 206 672-2246 +roomNumber: 8489 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Madalyn Bakay,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madalyn Bakay +sn: Bakay +description: This is Madalyn Bakay's description +facsimileTelephoneNumber: +1 818 390-6996 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 566-9687 +title: Junior Peons Architect +userPassword: Password1 +uid: BakayM +givenName: Madalyn +mail: BakayM@75234ed0eb0841e9a2b60ec9399e028a.bitwarden.com +carLicense: JFLSVJ +departmentNumber: 9199 +employeeType: Contract +homePhone: +1 818 988-6535 +initials: M. B. +mobile: +1 818 857-9210 +pager: +1 818 472-4333 +roomNumber: 8850 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bunni McNerlan +sn: McNerlan +description: This is Bunni McNerlan's description +facsimileTelephoneNumber: +1 818 436-3506 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 430-8298 +title: Supreme Human Resources Assistant +userPassword: Password1 +uid: McNerlaB +givenName: Bunni +mail: McNerlaB@c9b998177eaf425c9e87bad80d5d4670.bitwarden.com +carLicense: STVWVC +departmentNumber: 2146 +employeeType: Contract +homePhone: +1 818 659-8197 +initials: B. M. +mobile: +1 818 983-1150 +pager: +1 818 350-5239 +roomNumber: 8056 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Allen Papantonis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allen Papantonis +sn: Papantonis +description: This is Allen Papantonis's description +facsimileTelephoneNumber: +1 510 858-7032 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 510 356-1927 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: PapantoA +givenName: Allen +mail: PapantoA@76c37165c9c84b2e91c732cc33c7793d.bitwarden.com +carLicense: TXFOD4 +departmentNumber: 8465 +employeeType: Contract +homePhone: +1 510 267-5079 +initials: A. P. +mobile: +1 510 519-2404 +pager: +1 510 560-3143 +roomNumber: 9258 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leoline Cholette,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leoline Cholette +sn: Cholette +description: This is Leoline Cholette's description +facsimileTelephoneNumber: +1 818 916-6801 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 267-4935 +title: Chief Janitorial President +userPassword: Password1 +uid: CholettL +givenName: Leoline +mail: CholettL@444794b5113d44779ace93e2616392cf.bitwarden.com +carLicense: WI5PWU +departmentNumber: 7397 +employeeType: Normal +homePhone: +1 818 872-8748 +initials: L. C. +mobile: +1 818 874-8591 +pager: +1 818 399-7572 +roomNumber: 8444 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Masahiro Sandhar +sn: Sandhar +description: This is Masahiro Sandhar's description +facsimileTelephoneNumber: +1 206 221-9525 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 477-3256 +title: Chief Product Testing Writer +userPassword: Password1 +uid: SandharM +givenName: Masahiro +mail: SandharM@274384e0320c40758cf1ecbcebf754d6.bitwarden.com +carLicense: VUKXIE +departmentNumber: 1521 +employeeType: Employee +homePhone: +1 206 409-8748 +initials: M. S. +mobile: +1 206 697-5873 +pager: +1 206 498-9254 +roomNumber: 8207 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leanna MTL,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leanna MTL +sn: MTL +description: This is Leanna MTL's description +facsimileTelephoneNumber: +1 415 225-2506 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 834-1455 +title: Chief Administrative Grunt +userPassword: Password1 +uid: MTLL +givenName: Leanna +mail: MTLL@ab71cedcebe141b4ae49c26990bb3316.bitwarden.com +carLicense: RY7LGP +departmentNumber: 8623 +employeeType: Normal +homePhone: +1 415 428-8933 +initials: L. M. +mobile: +1 415 869-7318 +pager: +1 415 296-9107 +roomNumber: 8572 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathlin Guilbert +sn: Guilbert +description: This is Kathlin Guilbert's description +facsimileTelephoneNumber: +1 206 393-7597 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 796-5007 +title: Associate Administrative Czar +userPassword: Password1 +uid: GuilberK +givenName: Kathlin +mail: GuilberK@0525ebb146b94455a69f7d801ab4ff97.bitwarden.com +carLicense: RCR9W4 +departmentNumber: 9889 +employeeType: Contract +homePhone: +1 206 594-1812 +initials: K. G. +mobile: +1 206 360-2360 +pager: +1 206 812-6763 +roomNumber: 8377 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Octavio Naugle,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Octavio Naugle +sn: Naugle +description: This is Octavio Naugle's description +facsimileTelephoneNumber: +1 206 732-7221 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 991-4007 +title: Supreme Product Testing Assistant +userPassword: Password1 +uid: NaugleO +givenName: Octavio +mail: NaugleO@8cef7d2cd1884754b6cc5e28407c0a56.bitwarden.com +carLicense: C01EY1 +departmentNumber: 9483 +employeeType: Employee +homePhone: +1 206 398-1130 +initials: O. N. +mobile: +1 206 760-7388 +pager: +1 206 654-8438 +roomNumber: 8685 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krzysztof Hoehling +sn: Hoehling +description: This is Krzysztof Hoehling's description +facsimileTelephoneNumber: +1 213 949-4660 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 572-5056 +title: Chief Janitorial Stooge +userPassword: Password1 +uid: HoehlinK +givenName: Krzysztof +mail: HoehlinK@72030161dcd24217be14766e527d14fa.bitwarden.com +carLicense: J0U84W +departmentNumber: 1035 +employeeType: Contract +homePhone: +1 213 145-9486 +initials: K. H. +mobile: +1 213 326-7101 +pager: +1 213 502-3284 +roomNumber: 9982 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Charangit Brasset,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charangit Brasset +sn: Brasset +description: This is Charangit Brasset's description +facsimileTelephoneNumber: +1 213 129-5218 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 213 838-1844 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: BrassetC +givenName: Charangit +mail: BrassetC@b524d22ec70741b18bc6152d2cf11515.bitwarden.com +carLicense: 3ATUQW +departmentNumber: 1297 +employeeType: Employee +homePhone: +1 213 734-3671 +initials: C. B. +mobile: +1 213 949-8060 +pager: +1 213 247-9037 +roomNumber: 9842 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gena Lovejoy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gena Lovejoy +sn: Lovejoy +description: This is Gena Lovejoy's description +facsimileTelephoneNumber: +1 818 473-5693 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 568-6201 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: LovejoyG +givenName: Gena +mail: LovejoyG@28d2c310a8f14caeb811cfb7bdd890df.bitwarden.com +carLicense: 6J3QUA +departmentNumber: 5305 +employeeType: Employee +homePhone: +1 818 709-6616 +initials: G. L. +mobile: +1 818 342-7509 +pager: +1 818 346-7347 +roomNumber: 9512 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruchel Ianace +sn: Ianace +description: This is Ruchel Ianace's description +facsimileTelephoneNumber: +1 408 304-5714 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 431-1979 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: IanaceR +givenName: Ruchel +mail: IanaceR@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com +carLicense: KP982S +departmentNumber: 2376 +employeeType: Employee +homePhone: +1 408 884-4658 +initials: R. I. +mobile: +1 408 222-9148 +pager: +1 408 126-2046 +roomNumber: 9656 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vivi Dysart,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivi Dysart +sn: Dysart +description: This is Vivi Dysart's description +facsimileTelephoneNumber: +1 213 240-6668 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 196-7182 +title: Master Payroll Dictator +userPassword: Password1 +uid: DysartV +givenName: Vivi +mail: DysartV@8c0b466f02f748859dc301557d2d5669.bitwarden.com +carLicense: 0MSOIG +departmentNumber: 5502 +employeeType: Employee +homePhone: +1 213 230-1230 +initials: V. D. +mobile: +1 213 781-1171 +pager: +1 213 933-2491 +roomNumber: 8970 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosabelle Montoute +sn: Montoute +description: This is Rosabelle Montoute's description +facsimileTelephoneNumber: +1 213 757-1569 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 607-8269 +title: Master Janitorial Fellow +userPassword: Password1 +uid: MontoutR +givenName: Rosabelle +mail: MontoutR@dbc4eab54b5f4d779246b56a41ba3d42.bitwarden.com +carLicense: 3YB54A +departmentNumber: 5786 +employeeType: Contract +homePhone: +1 213 508-2022 +initials: R. M. +mobile: +1 213 841-9262 +pager: +1 213 702-8099 +roomNumber: 9378 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Giuseppe Laing,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giuseppe Laing +sn: Laing +description: This is Giuseppe Laing's description +facsimileTelephoneNumber: +1 510 884-4172 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 885-6066 +title: Supreme Management Engineer +userPassword: Password1 +uid: LaingG +givenName: Giuseppe +mail: LaingG@16269c126bd14ac9a93025afee70dceb.bitwarden.com +carLicense: EM5TXF +departmentNumber: 1178 +employeeType: Employee +homePhone: +1 510 401-4649 +initials: G. L. +mobile: +1 510 608-7996 +pager: +1 510 737-7325 +roomNumber: 9716 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zeb Morrissette,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zeb Morrissette +sn: Morrissette +description: This is Zeb Morrissette's description +facsimileTelephoneNumber: +1 818 859-4961 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 596-3054 +title: Associate Product Development Madonna +userPassword: Password1 +uid: MorrissZ +givenName: Zeb +mail: MorrissZ@e7982141a478415494932da6ee7a398d.bitwarden.com +carLicense: IYBLYV +departmentNumber: 3781 +employeeType: Normal +homePhone: +1 818 813-1686 +initials: Z. M. +mobile: +1 818 826-1438 +pager: +1 818 277-7393 +roomNumber: 9384 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Corly Wingate,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corly Wingate +sn: Wingate +description: This is Corly Wingate's description +facsimileTelephoneNumber: +1 818 829-8103 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 249-9986 +title: Junior Payroll Visionary +userPassword: Password1 +uid: WingateC +givenName: Corly +mail: WingateC@8b54f75a945349ddb0e951ba57a8fbf6.bitwarden.com +carLicense: JQNJMH +departmentNumber: 8831 +employeeType: Employee +homePhone: +1 818 683-3518 +initials: C. W. +mobile: +1 818 854-7599 +pager: +1 818 947-5333 +roomNumber: 9300 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=UnaMae Del,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: UnaMae Del +sn: Del +description: This is UnaMae Del's description +facsimileTelephoneNumber: +1 510 196-5988 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 116-9699 +title: Junior Human Resources Developer +userPassword: Password1 +uid: DelU +givenName: UnaMae +mail: DelU@526917d21d144952ba135c0232075538.bitwarden.com +carLicense: Q6OC54 +departmentNumber: 3946 +employeeType: Employee +homePhone: +1 510 431-9397 +initials: U. D. +mobile: +1 510 325-1197 +pager: +1 510 584-9966 +roomNumber: 9374 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Almerinda MTL,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Almerinda MTL +sn: MTL +description: This is Almerinda MTL's description +facsimileTelephoneNumber: +1 804 852-5889 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 390-7310 +title: Master Product Development Consultant +userPassword: Password1 +uid: MTLA +givenName: Almerinda +mail: MTLA@56ff7c3ad2a74f428698e9d39e33820f.bitwarden.com +carLicense: GNWFHF +departmentNumber: 5186 +employeeType: Employee +homePhone: +1 804 360-6265 +initials: A. M. +mobile: +1 804 701-6773 +pager: +1 804 729-3890 +roomNumber: 9028 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=JeanRoch Della,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanRoch Della +sn: Della +description: This is JeanRoch Della's description +facsimileTelephoneNumber: +1 206 946-4319 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 267-9995 +title: Master Peons Mascot +userPassword: Password1 +uid: DellaJ +givenName: JeanRoch +mail: DellaJ@79183891cf444d618a0f5a54d8772f40.bitwarden.com +carLicense: AFJE9O +departmentNumber: 9899 +employeeType: Contract +homePhone: +1 206 249-7838 +initials: J. D. +mobile: +1 206 972-4964 +pager: +1 206 360-1001 +roomNumber: 8725 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnola Meyerink +sn: Meyerink +description: This is Agnola Meyerink's description +facsimileTelephoneNumber: +1 213 908-2771 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 611-6391 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: MeyerinA +givenName: Agnola +mail: MeyerinA@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com +carLicense: Y8PYVW +departmentNumber: 4193 +employeeType: Normal +homePhone: +1 213 424-6807 +initials: A. M. +mobile: +1 213 864-2503 +pager: +1 213 693-1194 +roomNumber: 8565 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cris Viano,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cris Viano +sn: Viano +description: This is Cris Viano's description +facsimileTelephoneNumber: +1 510 971-1601 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 613-6352 +title: Associate Payroll Mascot +userPassword: Password1 +uid: VianoC +givenName: Cris +mail: VianoC@ab9abe6692b34c219100026a54077248.bitwarden.com +carLicense: G6851Y +departmentNumber: 5859 +employeeType: Employee +homePhone: +1 510 212-2016 +initials: C. V. +mobile: +1 510 760-3478 +pager: +1 510 281-9751 +roomNumber: 9020 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronni Goodwin +sn: Goodwin +description: This is Ronni Goodwin's description +facsimileTelephoneNumber: +1 818 261-9627 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 908-1886 +title: Junior Product Testing Developer +userPassword: Password1 +uid: GoodwinR +givenName: Ronni +mail: GoodwinR@1df73cc203344a569c1b4737122f78a2.bitwarden.com +carLicense: D3NJS2 +departmentNumber: 9703 +employeeType: Contract +homePhone: +1 818 695-2011 +initials: R. G. +mobile: +1 818 326-5597 +pager: +1 818 543-6147 +roomNumber: 9440 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Takis Bulmer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Takis Bulmer +sn: Bulmer +description: This is Takis Bulmer's description +facsimileTelephoneNumber: +1 408 148-7236 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 152-4266 +title: Junior Administrative Consultant +userPassword: Password1 +uid: BulmerT +givenName: Takis +mail: BulmerT@b6433b672188433c98862791df3ba6da.bitwarden.com +carLicense: NG5ONK +departmentNumber: 1310 +employeeType: Contract +homePhone: +1 408 585-3347 +initials: T. B. +mobile: +1 408 130-7650 +pager: +1 408 906-3708 +roomNumber: 9926 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adah Calistro,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adah Calistro +sn: Calistro +description: This is Adah Calistro's description +facsimileTelephoneNumber: +1 510 712-6505 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 202-7564 +title: Supreme Peons Grunt +userPassword: Password1 +uid: CalistrA +givenName: Adah +mail: CalistrA@97dff61562cc4fcf91cc6b1c0555b351.bitwarden.com +carLicense: KOHP92 +departmentNumber: 6565 +employeeType: Normal +homePhone: +1 510 873-6634 +initials: A. C. +mobile: +1 510 437-7084 +pager: +1 510 293-6736 +roomNumber: 9794 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jessalin Stooke,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessalin Stooke +sn: Stooke +description: This is Jessalin Stooke's description +facsimileTelephoneNumber: +1 213 609-4304 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 813-6197 +title: Junior Peons Engineer +userPassword: Password1 +uid: StookeJ +givenName: Jessalin +mail: StookeJ@bef37f4792b04da289642afddb790432.bitwarden.com +carLicense: 5ML596 +departmentNumber: 5550 +employeeType: Contract +homePhone: +1 213 878-9895 +initials: J. S. +mobile: +1 213 875-8719 +pager: +1 213 369-7163 +roomNumber: 8982 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zsazsa Ukena,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zsazsa Ukena +sn: Ukena +description: This is Zsazsa Ukena's description +facsimileTelephoneNumber: +1 510 755-7310 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 716-6142 +title: Junior Management Director +userPassword: Password1 +uid: UkenaZ +givenName: Zsazsa +mail: UkenaZ@e91e9d47322f42e0863a6aa1fe777b71.bitwarden.com +carLicense: TK22WN +departmentNumber: 2215 +employeeType: Normal +homePhone: +1 510 753-3789 +initials: Z. U. +mobile: +1 510 861-4577 +pager: +1 510 419-9421 +roomNumber: 8475 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Raynell Shears,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raynell Shears +sn: Shears +description: This is Raynell Shears's description +facsimileTelephoneNumber: +1 415 139-6693 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 731-4260 +title: Master Payroll Vice President +userPassword: Password1 +uid: ShearsR +givenName: Raynell +mail: ShearsR@87113723aa0e41bdb0ec57c16297b036.bitwarden.com +carLicense: SLMC74 +departmentNumber: 5059 +employeeType: Contract +homePhone: +1 415 935-6424 +initials: R. S. +mobile: +1 415 789-3335 +pager: +1 415 595-9972 +roomNumber: 8216 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazem Ginzburg +sn: Ginzburg +description: This is Kazem Ginzburg's description +facsimileTelephoneNumber: +1 206 110-5405 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 589-8601 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: GinzburK +givenName: Kazem +mail: GinzburK@0bceb4753c404fdbaaffa3f02923ad68.bitwarden.com +carLicense: AF0LHY +departmentNumber: 4985 +employeeType: Contract +homePhone: +1 206 477-2890 +initials: K. G. +mobile: +1 206 763-5881 +pager: +1 206 321-1982 +roomNumber: 9841 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hephzibah Sherali +sn: Sherali +description: This is Hephzibah Sherali's description +facsimileTelephoneNumber: +1 415 720-4626 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 832-5666 +title: Associate Administrative Fellow +userPassword: Password1 +uid: SheraliH +givenName: Hephzibah +mail: SheraliH@958185118457477783d16f2fa9e93aa2.bitwarden.com +carLicense: QLTH0Q +departmentNumber: 8378 +employeeType: Employee +homePhone: +1 415 586-6798 +initials: H. S. +mobile: +1 415 359-8171 +pager: +1 415 135-1585 +roomNumber: 9525 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kem Wares,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kem Wares +sn: Wares +description: This is Kem Wares's description +facsimileTelephoneNumber: +1 213 991-7696 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 765-2465 +title: Chief Administrative Developer +userPassword: Password1 +uid: WaresK +givenName: Kem +mail: WaresK@52c0e096b1b44f2f8c05cf2d62dc5788.bitwarden.com +carLicense: H003G0 +departmentNumber: 4975 +employeeType: Employee +homePhone: +1 213 773-7101 +initials: K. W. +mobile: +1 213 662-8320 +pager: +1 213 748-6665 +roomNumber: 9602 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tai Galloway,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tai Galloway +sn: Galloway +description: This is Tai Galloway's description +facsimileTelephoneNumber: +1 213 396-1720 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 425-1291 +title: Junior Administrative Dictator +userPassword: Password1 +uid: GallowaT +givenName: Tai +mail: GallowaT@dd438a1d29bd49c79f41cb0fe1c67139.bitwarden.com +carLicense: 0KE9W4 +departmentNumber: 5340 +employeeType: Employee +homePhone: +1 213 391-9989 +initials: T. G. +mobile: +1 213 912-3101 +pager: +1 213 895-6076 +roomNumber: 8547 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Souphalack Eisenach +sn: Eisenach +description: This is Souphalack Eisenach's description +facsimileTelephoneNumber: +1 206 423-5550 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 206 860-5876 +title: Associate Human Resources President +userPassword: Password1 +uid: EisenacS +givenName: Souphalack +mail: EisenacS@7a465c2775724e2fb0c9f1e78b183307.bitwarden.com +carLicense: UG96EW +departmentNumber: 7223 +employeeType: Contract +homePhone: +1 206 769-5970 +initials: S. E. +mobile: +1 206 950-6396 +pager: +1 206 401-4073 +roomNumber: 8598 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Parviz Kinsella,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parviz Kinsella +sn: Kinsella +description: This is Parviz Kinsella's description +facsimileTelephoneNumber: +1 408 394-9342 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 408 880-6572 +title: Chief Administrative Grunt +userPassword: Password1 +uid: KinsellP +givenName: Parviz +mail: KinsellP@353a4c977d99447e8bf6372a139196b2.bitwarden.com +carLicense: AY8RHN +departmentNumber: 4113 +employeeType: Contract +homePhone: +1 408 976-9093 +initials: P. K. +mobile: +1 408 142-4055 +pager: +1 408 723-8792 +roomNumber: 8229 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Madelyn Godo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelyn Godo +sn: Godo +description: This is Madelyn Godo's description +facsimileTelephoneNumber: +1 213 953-4630 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 449-6536 +title: Chief Peons Artist +userPassword: Password1 +uid: GodoM +givenName: Madelyn +mail: GodoM@fe29084b8c204f2e9f20c235a3bde591.bitwarden.com +carLicense: YIMDDW +departmentNumber: 8458 +employeeType: Contract +homePhone: +1 213 723-7714 +initials: M. G. +mobile: +1 213 431-8340 +pager: +1 213 364-4987 +roomNumber: 9626 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Willow Sorathia,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willow Sorathia +sn: Sorathia +description: This is Willow Sorathia's description +facsimileTelephoneNumber: +1 206 459-1608 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 480-4313 +title: Chief Management Evangelist +userPassword: Password1 +uid: SorathiW +givenName: Willow +mail: SorathiW@1bc1409c08584b65b922db79a968ffbf.bitwarden.com +carLicense: EFVOJW +departmentNumber: 7664 +employeeType: Normal +homePhone: +1 206 650-6935 +initials: W. S. +mobile: +1 206 202-4562 +pager: +1 206 150-6498 +roomNumber: 9033 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jonelle Rynders,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jonelle Rynders +sn: Rynders +description: This is Jonelle Rynders's description +facsimileTelephoneNumber: +1 510 461-3528 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 827-5673 +title: Junior Management Writer +userPassword: Password1 +uid: RyndersJ +givenName: Jonelle +mail: RyndersJ@407ea5ccd7404466aa1b36764aa40ace.bitwarden.com +carLicense: 94CVKX +departmentNumber: 9560 +employeeType: Employee +homePhone: +1 510 411-6437 +initials: J. R. +mobile: +1 510 557-1654 +pager: +1 510 602-8143 +roomNumber: 9658 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Avinash Vieiro,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avinash Vieiro +sn: Vieiro +description: This is Avinash Vieiro's description +facsimileTelephoneNumber: +1 213 186-1418 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 888-4141 +title: Associate Payroll Engineer +userPassword: Password1 +uid: VieiroA +givenName: Avinash +mail: VieiroA@26eb3cccbe694e88916be9fa6504534e.bitwarden.com +carLicense: NQ1CNC +departmentNumber: 5663 +employeeType: Contract +homePhone: +1 213 969-7790 +initials: A. V. +mobile: +1 213 978-3441 +pager: +1 213 154-5185 +roomNumber: 8789 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malvina Encomenderos +sn: Encomenderos +description: This is Malvina Encomenderos's description +facsimileTelephoneNumber: +1 510 451-5565 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 607-8908 +title: Junior Product Development Evangelist +userPassword: Password1 +uid: EncomenM +givenName: Malvina +mail: EncomenM@1bfbb076f362457cb073b7b05229490f.bitwarden.com +carLicense: GH3T7B +departmentNumber: 7260 +employeeType: Contract +homePhone: +1 510 959-5032 +initials: M. E. +mobile: +1 510 789-1843 +pager: +1 510 231-7502 +roomNumber: 8474 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mikhail Fssup,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mikhail Fssup +sn: Fssup +description: This is Mikhail Fssup's description +facsimileTelephoneNumber: +1 213 528-6092 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 213 433-6082 +title: Supreme Product Development President +userPassword: Password1 +uid: FssupM +givenName: Mikhail +mail: FssupM@fe8a88d43b8447679253a21f86c61479.bitwarden.com +carLicense: QBET4N +departmentNumber: 8287 +employeeType: Contract +homePhone: +1 213 976-2407 +initials: M. F. +mobile: +1 213 979-7509 +pager: +1 213 168-9705 +roomNumber: 9730 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kimmi Trent,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kimmi Trent +sn: Trent +description: This is Kimmi Trent's description +facsimileTelephoneNumber: +1 804 381-6350 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 317-1946 +title: Junior Payroll Developer +userPassword: Password1 +uid: TrentK +givenName: Kimmi +mail: TrentK@bd234f19e2034627848e6380646db915.bitwarden.com +carLicense: 5QVKJI +departmentNumber: 1553 +employeeType: Normal +homePhone: +1 804 479-3879 +initials: K. T. +mobile: +1 804 295-1530 +pager: +1 804 126-9514 +roomNumber: 9609 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Drucie Lindow,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drucie Lindow +sn: Lindow +description: This is Drucie Lindow's description +facsimileTelephoneNumber: +1 213 240-9607 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 808-2681 +title: Junior Administrative Janitor +userPassword: Password1 +uid: LindowD +givenName: Drucie +mail: LindowD@b8c647e356994d2abad4efb1121ac175.bitwarden.com +carLicense: YMW1W9 +departmentNumber: 5178 +employeeType: Employee +homePhone: +1 213 542-4752 +initials: D. L. +mobile: +1 213 399-8797 +pager: +1 213 651-4477 +roomNumber: 8892 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kristine Hogue,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristine Hogue +sn: Hogue +description: This is Kristine Hogue's description +facsimileTelephoneNumber: +1 510 140-3059 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 424-6188 +title: Chief Administrative President +userPassword: Password1 +uid: HogueK +givenName: Kristine +mail: HogueK@33a856f3df9c45df92aa949a40965338.bitwarden.com +carLicense: 78WY4E +departmentNumber: 3924 +employeeType: Employee +homePhone: +1 510 968-6593 +initials: K. H. +mobile: +1 510 466-1665 +pager: +1 510 695-8310 +roomNumber: 8549 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carmon Ghossein,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmon Ghossein +sn: Ghossein +description: This is Carmon Ghossein's description +facsimileTelephoneNumber: +1 804 541-3131 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 331-5705 +title: Chief Administrative Punk +userPassword: Password1 +uid: GhosseiC +givenName: Carmon +mail: GhosseiC@b1d81d4ed0934642a942a3e784da5fea.bitwarden.com +carLicense: FP9GSP +departmentNumber: 6917 +employeeType: Contract +homePhone: +1 804 944-8045 +initials: C. G. +mobile: +1 804 295-8485 +pager: +1 804 235-8714 +roomNumber: 9865 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eunice Bushell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eunice Bushell +sn: Bushell +description: This is Eunice Bushell's description +facsimileTelephoneNumber: +1 408 473-9071 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 675-1841 +title: Junior Payroll Madonna +userPassword: Password1 +uid: BushellE +givenName: Eunice +mail: BushellE@7ff42394bdb9413f95ee8654a86f2b98.bitwarden.com +carLicense: 5K42CB +departmentNumber: 6947 +employeeType: Normal +homePhone: +1 408 957-4849 +initials: E. B. +mobile: +1 408 535-2035 +pager: +1 408 779-4265 +roomNumber: 9618 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ailene Leander,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailene Leander +sn: Leander +description: This is Ailene Leander's description +facsimileTelephoneNumber: +1 415 998-2047 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 666-8936 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: LeanderA +givenName: Ailene +mail: LeanderA@38084e0586a041acbbdb2c1dfb35d2bb.bitwarden.com +carLicense: PFJBKI +departmentNumber: 9303 +employeeType: Contract +homePhone: +1 415 372-1371 +initials: A. L. +mobile: +1 415 147-1730 +pager: +1 415 932-4430 +roomNumber: 9218 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Truus Fodell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Truus Fodell +sn: Fodell +description: This is Truus Fodell's description +facsimileTelephoneNumber: +1 415 361-5994 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 360-8475 +title: Associate Product Development Technician +userPassword: Password1 +uid: FodellT +givenName: Truus +mail: FodellT@a5186e33e69446d1bb74fa25b1e42650.bitwarden.com +carLicense: J2CQBF +departmentNumber: 2563 +employeeType: Contract +homePhone: +1 415 311-4686 +initials: T. F. +mobile: +1 415 291-2341 +pager: +1 415 216-3440 +roomNumber: 9377 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zulema Clairmont,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zulema Clairmont +sn: Clairmont +description: This is Zulema Clairmont's description +facsimileTelephoneNumber: +1 206 435-5188 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 579-4709 +title: Associate Product Development Vice President +userPassword: Password1 +uid: ClairmoZ +givenName: Zulema +mail: ClairmoZ@789d3ef8deb24c20bce9e2915a466aef.bitwarden.com +carLicense: 5ALGM9 +departmentNumber: 7705 +employeeType: Contract +homePhone: +1 206 974-8519 +initials: Z. C. +mobile: +1 206 526-3863 +pager: +1 206 389-6397 +roomNumber: 9776 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Libor Wyble,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Libor Wyble +sn: Wyble +description: This is Libor Wyble's description +facsimileTelephoneNumber: +1 213 293-5117 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 514-4028 +title: Master Human Resources Mascot +userPassword: Password1 +uid: WybleL +givenName: Libor +mail: WybleL@984a4a5c1e144450ba42a88110cdd2a9.bitwarden.com +carLicense: A5B0LT +departmentNumber: 4549 +employeeType: Normal +homePhone: +1 213 340-5313 +initials: L. W. +mobile: +1 213 425-4529 +pager: +1 213 405-6577 +roomNumber: 9709 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Debera Shu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debera Shu +sn: Shu +description: This is Debera Shu's description +facsimileTelephoneNumber: +1 818 920-1956 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 564-1749 +title: Chief Administrative Dictator +userPassword: Password1 +uid: ShuD +givenName: Debera +mail: ShuD@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com +carLicense: RCTFLM +departmentNumber: 2184 +employeeType: Normal +homePhone: +1 818 983-3319 +initials: D. S. +mobile: +1 818 559-2804 +pager: +1 818 917-9881 +roomNumber: 9782 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vahe Seniuk +sn: Seniuk +description: This is Vahe Seniuk's description +facsimileTelephoneNumber: +1 408 577-9552 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 444-7067 +title: Junior Janitorial Director +userPassword: Password1 +uid: SeniukV +givenName: Vahe +mail: SeniukV@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com +carLicense: X9VH6Y +departmentNumber: 4379 +employeeType: Normal +homePhone: +1 408 205-5117 +initials: V. S. +mobile: +1 408 177-9698 +pager: +1 408 921-9157 +roomNumber: 8759 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Purvee Boulerice +sn: Boulerice +description: This is Purvee Boulerice's description +facsimileTelephoneNumber: +1 510 741-3179 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 715-2149 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: BouleriP +givenName: Purvee +mail: BouleriP@b778c029c2264b3089247adae57812bf.bitwarden.com +carLicense: 588BNC +departmentNumber: 9216 +employeeType: Normal +homePhone: +1 510 477-2406 +initials: P. B. +mobile: +1 510 416-9783 +pager: +1 510 430-7563 +roomNumber: 9908 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hailee Gould,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hailee Gould +sn: Gould +description: This is Hailee Gould's description +facsimileTelephoneNumber: +1 804 230-3232 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 801-3473 +title: Supreme Peons Dictator +userPassword: Password1 +uid: GouldH +givenName: Hailee +mail: GouldH@053cdccb3446469397047f2320d54d6c.bitwarden.com +carLicense: 7EK98W +departmentNumber: 9151 +employeeType: Employee +homePhone: +1 804 532-5174 +initials: H. G. +mobile: +1 804 780-8504 +pager: +1 804 598-6593 +roomNumber: 8695 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnneMarie Komatsu +sn: Komatsu +description: This is AnneMarie Komatsu's description +facsimileTelephoneNumber: +1 206 368-5955 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 971-7983 +title: Junior Human Resources Assistant +userPassword: Password1 +uid: KomatsuA +givenName: AnneMarie +mail: KomatsuA@54d64a829cf84f78beec4b49e0ecd1e5.bitwarden.com +carLicense: GV13RF +departmentNumber: 1796 +employeeType: Normal +homePhone: +1 206 371-7048 +initials: A. K. +mobile: +1 206 436-7264 +pager: +1 206 751-2588 +roomNumber: 8831 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Colm Coody,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colm Coody +sn: Coody +description: This is Colm Coody's description +facsimileTelephoneNumber: +1 408 549-6542 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 525-6095 +title: Master Human Resources Writer +userPassword: Password1 +uid: CoodyC +givenName: Colm +mail: CoodyC@801fded39bf64900acb4ebc42aa0afe0.bitwarden.com +carLicense: J2JIWU +departmentNumber: 3709 +employeeType: Normal +homePhone: +1 408 228-2311 +initials: C. C. +mobile: +1 408 680-1439 +pager: +1 408 335-8139 +roomNumber: 9454 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Orly Rahn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orly Rahn +sn: Rahn +description: This is Orly Rahn's description +facsimileTelephoneNumber: +1 804 766-7184 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 855-7097 +title: Associate Management Grunt +userPassword: Password1 +uid: RahnO +givenName: Orly +mail: RahnO@b25e09cbf8714d1293b2097e25927336.bitwarden.com +carLicense: AWKCH9 +departmentNumber: 5563 +employeeType: Normal +homePhone: +1 804 106-8951 +initials: O. R. +mobile: +1 804 987-8924 +pager: +1 804 828-1597 +roomNumber: 9961 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dana Ashurkoff +sn: Ashurkoff +description: This is Dana Ashurkoff's description +facsimileTelephoneNumber: +1 510 649-6394 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 510 507-9193 +title: Master Human Resources Manager +userPassword: Password1 +uid: AshurkoD +givenName: Dana +mail: AshurkoD@169fcab935f542c68b8a72c59cfcd9c5.bitwarden.com +carLicense: YBJH7Y +departmentNumber: 1354 +employeeType: Employee +homePhone: +1 510 922-2104 +initials: D. A. +mobile: +1 510 755-6245 +pager: +1 510 208-9908 +roomNumber: 8340 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Glornia Hage,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glornia Hage +sn: Hage +description: This is Glornia Hage's description +facsimileTelephoneNumber: +1 510 414-9995 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 932-1557 +title: Chief Janitorial President +userPassword: Password1 +uid: HageG +givenName: Glornia +mail: HageG@64e4540aae0b4842a2b0399c54e9799c.bitwarden.com +carLicense: LHF7DH +departmentNumber: 8182 +employeeType: Normal +homePhone: +1 510 754-1202 +initials: G. H. +mobile: +1 510 746-8590 +pager: +1 510 797-2957 +roomNumber: 9251 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Desiree Morini,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desiree Morini +sn: Morini +description: This is Desiree Morini's description +facsimileTelephoneNumber: +1 206 174-5703 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 203-5655 +title: Associate Product Testing Manager +userPassword: Password1 +uid: MoriniD +givenName: Desiree +mail: MoriniD@620a0deb741d4dc4a818615fd1732275.bitwarden.com +carLicense: T5A96K +departmentNumber: 7297 +employeeType: Employee +homePhone: +1 206 244-3012 +initials: D. M. +mobile: +1 206 624-9634 +pager: +1 206 424-9556 +roomNumber: 9642 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vijya Sorensen +sn: Sorensen +description: This is Vijya Sorensen's description +facsimileTelephoneNumber: +1 510 803-9789 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 538-7661 +title: Master Human Resources Manager +userPassword: Password1 +uid: SorenseV +givenName: Vijya +mail: SorenseV@449193a8d6284b519708a047f998c36e.bitwarden.com +carLicense: PSWURV +departmentNumber: 2974 +employeeType: Employee +homePhone: +1 510 351-1705 +initials: V. S. +mobile: +1 510 524-4979 +pager: +1 510 626-7313 +roomNumber: 9207 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crawford Stensrud +sn: Stensrud +description: This is Crawford Stensrud's description +facsimileTelephoneNumber: +1 510 361-2548 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 275-5579 +title: Chief Janitorial Developer +userPassword: Password1 +uid: StensruC +givenName: Crawford +mail: StensruC@37b876b4a91540b4b71770c7a49beee8.bitwarden.com +carLicense: DPT5HY +departmentNumber: 6906 +employeeType: Normal +homePhone: +1 510 265-8731 +initials: C. S. +mobile: +1 510 880-5255 +pager: +1 510 582-7665 +roomNumber: 9258 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Laina McKibbon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laina McKibbon +sn: McKibbon +description: This is Laina McKibbon's description +facsimileTelephoneNumber: +1 206 134-2465 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 206 492-8565 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: McKibboL +givenName: Laina +mail: McKibboL@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com +carLicense: O0QSUP +departmentNumber: 7725 +employeeType: Employee +homePhone: +1 206 614-5102 +initials: L. M. +mobile: +1 206 147-9501 +pager: +1 206 221-9717 +roomNumber: 8861 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Peach McGlynn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peach McGlynn +sn: McGlynn +description: This is Peach McGlynn's description +facsimileTelephoneNumber: +1 818 309-1981 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 751-7977 +title: Supreme Janitorial Punk +userPassword: Password1 +uid: McGlynnP +givenName: Peach +mail: McGlynnP@e9b1eab0ad46429f9b14fc88c1e1a1ce.bitwarden.com +carLicense: A8ACK2 +departmentNumber: 7645 +employeeType: Contract +homePhone: +1 818 361-5457 +initials: P. M. +mobile: +1 818 125-5707 +pager: +1 818 364-6529 +roomNumber: 9421 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ines Younan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ines Younan +sn: Younan +description: This is Ines Younan's description +facsimileTelephoneNumber: +1 408 814-6739 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 351-1645 +title: Supreme Management Admin +userPassword: Password1 +uid: YounanI +givenName: Ines +mail: YounanI@522cd51783f94d36bac3d92521c9b231.bitwarden.com +carLicense: 2LB1K7 +departmentNumber: 1123 +employeeType: Normal +homePhone: +1 408 892-7096 +initials: I. Y. +mobile: +1 408 684-6907 +pager: +1 408 426-2427 +roomNumber: 8558 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jai Junkie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jai Junkie +sn: Junkie +description: This is Jai Junkie's description +facsimileTelephoneNumber: +1 510 315-5905 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 717-2942 +title: Associate Janitorial Warrior +userPassword: Password1 +uid: JunkieJ +givenName: Jai +mail: JunkieJ@19a8f5526a554f0cb06e7cba3da0c581.bitwarden.com +carLicense: QIGXWL +departmentNumber: 1002 +employeeType: Employee +homePhone: +1 510 584-5632 +initials: J. J. +mobile: +1 510 497-4973 +pager: +1 510 924-4138 +roomNumber: 9357 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kokkhiang Outram +sn: Outram +description: This is Kokkhiang Outram's description +facsimileTelephoneNumber: +1 408 421-4095 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 108-4058 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: OutramK +givenName: Kokkhiang +mail: OutramK@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com +carLicense: A8DUEF +departmentNumber: 9092 +employeeType: Normal +homePhone: +1 408 719-2646 +initials: K. O. +mobile: +1 408 373-3483 +pager: +1 408 140-3373 +roomNumber: 9295 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ping Lombrink,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ping Lombrink +sn: Lombrink +description: This is Ping Lombrink's description +facsimileTelephoneNumber: +1 510 440-9706 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 648-5253 +title: Junior Management Czar +userPassword: Password1 +uid: LombrinP +givenName: Ping +mail: LombrinP@a8b360eab13a4f829ec0541714c28aa0.bitwarden.com +carLicense: 6YN561 +departmentNumber: 6616 +employeeType: Normal +homePhone: +1 510 653-6449 +initials: P. L. +mobile: +1 510 665-7714 +pager: +1 510 499-9473 +roomNumber: 9731 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Georgianne Colwell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgianne Colwell +sn: Colwell +description: This is Georgianne Colwell's description +facsimileTelephoneNumber: +1 804 366-3127 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 421-2163 +title: Supreme Product Development Sales Rep +userPassword: Password1 +uid: ColwellG +givenName: Georgianne +mail: ColwellG@73644206f22948e88cda9a77b8ecb4e1.bitwarden.com +carLicense: 6NGPMC +departmentNumber: 6325 +employeeType: Contract +homePhone: +1 804 874-3831 +initials: G. C. +mobile: +1 804 943-2502 +pager: +1 804 786-8087 +roomNumber: 9950 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bryant Fronsee,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryant Fronsee +sn: Fronsee +description: This is Bryant Fronsee's description +facsimileTelephoneNumber: +1 804 619-5102 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 796-2594 +title: Master Administrative Warrior +userPassword: Password1 +uid: FronseeB +givenName: Bryant +mail: FronseeB@207f06c431db4f90babc987173636b40.bitwarden.com +carLicense: 212ATL +departmentNumber: 4761 +employeeType: Employee +homePhone: +1 804 269-3106 +initials: B. F. +mobile: +1 804 930-8279 +pager: +1 804 630-9927 +roomNumber: 8753 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Amata Funderburg,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amata Funderburg +sn: Funderburg +description: This is Amata Funderburg's description +facsimileTelephoneNumber: +1 804 880-9186 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 855-9177 +title: Master Administrative Mascot +userPassword: Password1 +uid: FunderbA +givenName: Amata +mail: FunderbA@01c954b9634144e3b54bd66a31610430.bitwarden.com +carLicense: X9R9YJ +departmentNumber: 1435 +employeeType: Contract +homePhone: +1 804 758-9455 +initials: A. F. +mobile: +1 804 550-9844 +pager: +1 804 331-8027 +roomNumber: 8483 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Camila Nason,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camila Nason +sn: Nason +description: This is Camila Nason's description +facsimileTelephoneNumber: +1 415 380-1578 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 363-4329 +title: Chief Peons Technician +userPassword: Password1 +uid: NasonC +givenName: Camila +mail: NasonC@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com +carLicense: RU81F0 +departmentNumber: 8863 +employeeType: Employee +homePhone: +1 415 322-7447 +initials: C. N. +mobile: +1 415 950-9424 +pager: +1 415 115-6959 +roomNumber: 8246 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eldon ONeil,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eldon ONeil +sn: ONeil +description: This is Eldon ONeil's description +facsimileTelephoneNumber: +1 818 422-9878 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 399-6148 +title: Junior Product Testing Dictator +userPassword: Password1 +uid: ONeilE +givenName: Eldon +mail: ONeilE@38e93300da7643e5ac4629316f76753a.bitwarden.com +carLicense: JB17CK +departmentNumber: 3868 +employeeType: Normal +homePhone: +1 818 858-2573 +initials: E. O. +mobile: +1 818 853-8191 +pager: +1 818 818-5477 +roomNumber: 9266 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terrie Adkinson +sn: Adkinson +description: This is Terrie Adkinson's description +facsimileTelephoneNumber: +1 818 460-1293 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 114-2401 +title: Master Janitorial Visionary +userPassword: Password1 +uid: AdkinsoT +givenName: Terrie +mail: AdkinsoT@a6a05053959845178f0fed6cc2cd11a0.bitwarden.com +carLicense: 015K7Q +departmentNumber: 4058 +employeeType: Employee +homePhone: +1 818 205-8406 +initials: T. A. +mobile: +1 818 103-7123 +pager: +1 818 731-7454 +roomNumber: 9499 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Manda Bins,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manda Bins +sn: Bins +description: This is Manda Bins's description +facsimileTelephoneNumber: +1 818 707-5311 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 818 604-4796 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: BinsM +givenName: Manda +mail: BinsM@6703f1d29b0341659ab853ef2d4c41f9.bitwarden.com +carLicense: 2R1QVQ +departmentNumber: 9091 +employeeType: Contract +homePhone: +1 818 922-7607 +initials: M. B. +mobile: +1 818 611-9670 +pager: +1 818 972-8542 +roomNumber: 9295 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zaven Pizzimenti +sn: Pizzimenti +description: This is Zaven Pizzimenti's description +facsimileTelephoneNumber: +1 213 157-6737 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 593-9150 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: PizzimeZ +givenName: Zaven +mail: PizzimeZ@4a145fc9121947ce8b995d7a67929715.bitwarden.com +carLicense: LN6DHS +departmentNumber: 4937 +employeeType: Employee +homePhone: +1 213 138-1092 +initials: Z. P. +mobile: +1 213 907-1931 +pager: +1 213 599-9072 +roomNumber: 8836 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joete Thieken,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joete Thieken +sn: Thieken +description: This is Joete Thieken's description +facsimileTelephoneNumber: +1 213 761-9458 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 496-5606 +title: Master Administrative Engineer +userPassword: Password1 +uid: ThiekenJ +givenName: Joete +mail: ThiekenJ@5d35d83c207d418fad061afb7ba230bf.bitwarden.com +carLicense: LHFXO8 +departmentNumber: 2760 +employeeType: Employee +homePhone: +1 213 663-1261 +initials: J. T. +mobile: +1 213 932-9292 +pager: +1 213 457-3646 +roomNumber: 8003 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nurettin Parisen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nurettin Parisen +sn: Parisen +description: This is Nurettin Parisen's description +facsimileTelephoneNumber: +1 408 418-4809 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 116-6723 +title: Chief Product Development Dictator +userPassword: Password1 +uid: ParisenN +givenName: Nurettin +mail: ParisenN@7bfec04dd67a4c9388bb15752591a642.bitwarden.com +carLicense: 13FMA2 +departmentNumber: 7652 +employeeType: Contract +homePhone: +1 408 250-8444 +initials: N. P. +mobile: +1 408 423-8503 +pager: +1 408 787-9291 +roomNumber: 9707 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lester Leonida,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lester Leonida +sn: Leonida +description: This is Lester Leonida's description +facsimileTelephoneNumber: +1 408 407-5243 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 238-7208 +title: Master Administrative Dictator +userPassword: Password1 +uid: LeonidaL +givenName: Lester +mail: LeonidaL@39d704426feb42afa93cfa3dd5e7e000.bitwarden.com +carLicense: 1YMUC5 +departmentNumber: 8148 +employeeType: Employee +homePhone: +1 408 670-3710 +initials: L. L. +mobile: +1 408 144-3083 +pager: +1 408 508-7197 +roomNumber: 8942 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mira Aczel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mira Aczel +sn: Aczel +description: This is Mira Aczel's description +facsimileTelephoneNumber: +1 804 470-9816 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 804 126-2181 +title: Associate Product Development Technician +userPassword: Password1 +uid: AczelM +givenName: Mira +mail: AczelM@3adabc9eed2948c7b0e84ce77e7ad7d6.bitwarden.com +carLicense: ODERJC +departmentNumber: 6349 +employeeType: Normal +homePhone: +1 804 675-3693 +initials: M. A. +mobile: +1 804 410-1442 +pager: +1 804 977-5486 +roomNumber: 9463 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Takehiko Malizia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Takehiko Malizia +sn: Malizia +description: This is Takehiko Malizia's description +facsimileTelephoneNumber: +1 408 321-8521 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 596-3396 +title: Supreme Product Development Janitor +userPassword: Password1 +uid: MaliziaT +givenName: Takehiko +mail: MaliziaT@9e33462dc38a47268f5ccb5aff17b01e.bitwarden.com +carLicense: FBR4PI +departmentNumber: 2221 +employeeType: Employee +homePhone: +1 408 516-7529 +initials: T. M. +mobile: +1 408 815-9060 +pager: +1 408 333-7077 +roomNumber: 9885 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Niel Vickers,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niel Vickers +sn: Vickers +description: This is Niel Vickers's description +facsimileTelephoneNumber: +1 206 738-2287 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 206 451-9544 +title: Chief Human Resources Director +userPassword: Password1 +uid: VickersN +givenName: Niel +mail: VickersN@e3a398150b8f4132954080a42a622e3d.bitwarden.com +carLicense: 6OV5NK +departmentNumber: 9020 +employeeType: Contract +homePhone: +1 206 625-9737 +initials: N. V. +mobile: +1 206 849-6111 +pager: +1 206 446-7374 +roomNumber: 8347 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Letta Baltodano,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Letta Baltodano +sn: Baltodano +description: This is Letta Baltodano's description +facsimileTelephoneNumber: +1 510 517-7293 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 924-8112 +title: Junior Management Admin +userPassword: Password1 +uid: BaltodaL +givenName: Letta +mail: BaltodaL@ffa895bc8daa4c0f81a78140a99f5460.bitwarden.com +carLicense: 21VW7B +departmentNumber: 4679 +employeeType: Employee +homePhone: +1 510 301-5980 +initials: L. B. +mobile: +1 510 745-3083 +pager: +1 510 118-1276 +roomNumber: 8018 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=De Moneypenny,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: De Moneypenny +sn: Moneypenny +description: This is De Moneypenny's description +facsimileTelephoneNumber: +1 415 645-6258 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 987-1192 +title: Chief Payroll Artist +userPassword: Password1 +uid: MoneypeD +givenName: De +mail: MoneypeD@a87ac40ce2a547c8a852f41a3d6dfeae.bitwarden.com +carLicense: CHQCRQ +departmentNumber: 9336 +employeeType: Normal +homePhone: +1 415 689-8668 +initials: D. M. +mobile: +1 415 282-5022 +pager: +1 415 160-4643 +roomNumber: 9757 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dyke Suh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyke Suh +sn: Suh +description: This is Dyke Suh's description +facsimileTelephoneNumber: +1 213 736-6302 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 213 836-3291 +title: Junior Administrative Stooge +userPassword: Password1 +uid: SuhD +givenName: Dyke +mail: SuhD@1e2b67f93f814f68b5e4aa746670a4e8.bitwarden.com +carLicense: TJRTTJ +departmentNumber: 6087 +employeeType: Normal +homePhone: +1 213 677-7148 +initials: D. S. +mobile: +1 213 789-3039 +pager: +1 213 498-1488 +roomNumber: 8443 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Barrie Botting,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barrie Botting +sn: Botting +description: This is Barrie Botting's description +facsimileTelephoneNumber: +1 206 451-5123 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 317-1075 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: BottingB +givenName: Barrie +mail: BottingB@ea26d044205a42efb212069b102bfd27.bitwarden.com +carLicense: X2OBH3 +departmentNumber: 1253 +employeeType: Employee +homePhone: +1 206 570-5594 +initials: B. B. +mobile: +1 206 133-9591 +pager: +1 206 667-5185 +roomNumber: 8600 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anantha Uhl,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anantha Uhl +sn: Uhl +description: This is Anantha Uhl's description +facsimileTelephoneNumber: +1 206 529-9612 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 249-6938 +title: Junior Janitorial Technician +userPassword: Password1 +uid: UhlA +givenName: Anantha +mail: UhlA@75d6e7c6ef474c5e97f655497c047d1f.bitwarden.com +carLicense: 78OQV7 +departmentNumber: 7717 +employeeType: Contract +homePhone: +1 206 671-9917 +initials: A. U. +mobile: +1 206 450-4542 +pager: +1 206 659-7395 +roomNumber: 9553 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kettie Lanier,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kettie Lanier +sn: Lanier +description: This is Kettie Lanier's description +facsimileTelephoneNumber: +1 804 177-9924 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 298-8031 +title: Associate Management Janitor +userPassword: Password1 +uid: LanierK +givenName: Kettie +mail: LanierK@dc21b90d233e4262bb0c379c7e3b2a15.bitwarden.com +carLicense: AIPTTH +departmentNumber: 6664 +employeeType: Employee +homePhone: +1 804 524-3931 +initials: K. L. +mobile: +1 804 531-7811 +pager: +1 804 188-3338 +roomNumber: 9188 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trina SmrkeSurbey +sn: SmrkeSurbey +description: This is Trina SmrkeSurbey's description +facsimileTelephoneNumber: +1 804 890-1157 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 804 314-8432 +title: Associate Peons Visionary +userPassword: Password1 +uid: SmrkeSuT +givenName: Trina +mail: SmrkeSuT@68cdf7c41dd140debe34d656d3cf57b2.bitwarden.com +carLicense: LJH96K +departmentNumber: 8132 +employeeType: Employee +homePhone: +1 804 284-4490 +initials: T. S. +mobile: +1 804 970-1462 +pager: +1 804 543-8622 +roomNumber: 9275 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=LianHong Grills,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LianHong Grills +sn: Grills +description: This is LianHong Grills's description +facsimileTelephoneNumber: +1 510 439-7266 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 707-6620 +title: Master Administrative Grunt +userPassword: Password1 +uid: GrillsL +givenName: LianHong +mail: GrillsL@c3999c476a6d4270acb03c758687a2bc.bitwarden.com +carLicense: ATRE8I +departmentNumber: 1969 +employeeType: Contract +homePhone: +1 510 953-9397 +initials: L. G. +mobile: +1 510 673-8247 +pager: +1 510 384-3281 +roomNumber: 9647 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Charlean Leo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charlean Leo +sn: Leo +description: This is Charlean Leo's description +facsimileTelephoneNumber: +1 510 625-5013 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 749-1520 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: LeoC +givenName: Charlean +mail: LeoC@b08a31b6db4d4d2a9a1e1fd91f822e32.bitwarden.com +carLicense: 7XCCC6 +departmentNumber: 7787 +employeeType: Contract +homePhone: +1 510 293-5708 +initials: C. L. +mobile: +1 510 325-2751 +pager: +1 510 987-7134 +roomNumber: 9108 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gilbert Howerton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilbert Howerton +sn: Howerton +description: This is Gilbert Howerton's description +facsimileTelephoneNumber: +1 213 141-7743 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 570-2002 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: HowertoG +givenName: Gilbert +mail: HowertoG@7dc5b62cf93648d48eddbda676ec7c2b.bitwarden.com +carLicense: UIEJTA +departmentNumber: 1992 +employeeType: Employee +homePhone: +1 213 746-4810 +initials: G. H. +mobile: +1 213 967-9093 +pager: +1 213 801-6376 +roomNumber: 9059 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koko Kasumovich +sn: Kasumovich +description: This is Koko Kasumovich's description +facsimileTelephoneNumber: +1 415 980-1741 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 415 377-5123 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: KasumovK +givenName: Koko +mail: KasumovK@ea0a27f30cde484786db6ba4690325bc.bitwarden.com +carLicense: QGLNPX +departmentNumber: 5029 +employeeType: Contract +homePhone: +1 415 486-5406 +initials: K. K. +mobile: +1 415 743-2944 +pager: +1 415 111-9485 +roomNumber: 9882 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Loralie Balutis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loralie Balutis +sn: Balutis +description: This is Loralie Balutis's description +facsimileTelephoneNumber: +1 415 516-8471 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 911-2638 +title: Supreme Peons Mascot +userPassword: Password1 +uid: BalutisL +givenName: Loralie +mail: BalutisL@00996b193c5d4d3d9dd9d82c9ad7cc6a.bitwarden.com +carLicense: 3VPXQ3 +departmentNumber: 6694 +employeeType: Normal +homePhone: +1 415 158-8976 +initials: L. B. +mobile: +1 415 807-9143 +pager: +1 415 273-9073 +roomNumber: 8116 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Harri Wortman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harri Wortman +sn: Wortman +description: This is Harri Wortman's description +facsimileTelephoneNumber: +1 415 394-7299 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 618-8889 +title: Master Management Artist +userPassword: Password1 +uid: WortmanH +givenName: Harri +mail: WortmanH@3956b0c83ae444e7940e65fc8c4220d5.bitwarden.com +carLicense: 8GW9NK +departmentNumber: 7494 +employeeType: Contract +homePhone: +1 415 402-6821 +initials: H. W. +mobile: +1 415 160-1821 +pager: +1 415 213-6322 +roomNumber: 8238 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnesse Klaudt +sn: Klaudt +description: This is Agnesse Klaudt's description +facsimileTelephoneNumber: +1 206 182-9343 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 585-4845 +title: Supreme Product Development Architect +userPassword: Password1 +uid: KlaudtA +givenName: Agnesse +mail: KlaudtA@534eab5a672047c98d17e83c1921c458.bitwarden.com +carLicense: NNYQRR +departmentNumber: 6407 +employeeType: Employee +homePhone: +1 206 472-5387 +initials: A. K. +mobile: +1 206 346-2523 +pager: +1 206 952-8088 +roomNumber: 8666 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lorine Grund,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorine Grund +sn: Grund +description: This is Lorine Grund's description +facsimileTelephoneNumber: +1 206 732-3007 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 694-4108 +title: Supreme Management Figurehead +userPassword: Password1 +uid: GrundL +givenName: Lorine +mail: GrundL@ef0c8bc927fc4b19a8b12d396a49fa25.bitwarden.com +carLicense: MUMEBS +departmentNumber: 1437 +employeeType: Normal +homePhone: +1 206 984-5019 +initials: L. G. +mobile: +1 206 699-9107 +pager: +1 206 265-8117 +roomNumber: 9863 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lesley Coyne,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lesley Coyne +sn: Coyne +description: This is Lesley Coyne's description +facsimileTelephoneNumber: +1 408 572-9205 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 401-1849 +title: Chief Janitorial Admin +userPassword: Password1 +uid: CoyneL +givenName: Lesley +mail: CoyneL@93251ab1fec549f1aaacc3bfbaff52ee.bitwarden.com +carLicense: JT001J +departmentNumber: 3920 +employeeType: Employee +homePhone: +1 408 288-3756 +initials: L. C. +mobile: +1 408 260-2691 +pager: +1 408 782-9573 +roomNumber: 8980 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nelleke Lind,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nelleke Lind +sn: Lind +description: This is Nelleke Lind's description +facsimileTelephoneNumber: +1 415 905-1569 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 122-4437 +title: Master Management Director +userPassword: Password1 +uid: LindN +givenName: Nelleke +mail: LindN@c27a22599aa849ec8d6e0057e5fc89b1.bitwarden.com +carLicense: RG0YT8 +departmentNumber: 7061 +employeeType: Employee +homePhone: +1 415 778-6880 +initials: N. L. +mobile: +1 415 536-6647 +pager: +1 415 693-8512 +roomNumber: 9379 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bam Raschig,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bam Raschig +sn: Raschig +description: This is Bam Raschig's description +facsimileTelephoneNumber: +1 206 835-4096 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 533-8642 +title: Junior Administrative Manager +userPassword: Password1 +uid: RaschigB +givenName: Bam +mail: RaschigB@a8a3f1161ef54158b589de8fea58b91e.bitwarden.com +carLicense: TW7NSE +departmentNumber: 6308 +employeeType: Normal +homePhone: +1 206 394-1219 +initials: B. R. +mobile: +1 206 294-4623 +pager: +1 206 205-2591 +roomNumber: 8895 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nicoline Gelo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicoline Gelo +sn: Gelo +description: This is Nicoline Gelo's description +facsimileTelephoneNumber: +1 804 751-8681 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 896-4023 +title: Chief Peons Janitor +userPassword: Password1 +uid: GeloN +givenName: Nicoline +mail: GeloN@ac21668d43ba4692aab89cc64a9b9192.bitwarden.com +carLicense: 15F2JD +departmentNumber: 6789 +employeeType: Normal +homePhone: +1 804 138-9431 +initials: N. G. +mobile: +1 804 635-4261 +pager: +1 804 267-2858 +roomNumber: 9316 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Brigid Austin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigid Austin +sn: Austin +description: This is Brigid Austin's description +facsimileTelephoneNumber: +1 510 963-2349 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 227-9066 +title: Chief Administrative Czar +userPassword: Password1 +uid: AustinB +givenName: Brigid +mail: AustinB@bb451e9caafd4e81b5fb79f1aea3830a.bitwarden.com +carLicense: LUE2E9 +departmentNumber: 5443 +employeeType: Contract +homePhone: +1 510 226-7638 +initials: B. A. +mobile: +1 510 612-6584 +pager: +1 510 556-2314 +roomNumber: 8100 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosamund Lavallee +sn: Lavallee +description: This is Rosamund Lavallee's description +facsimileTelephoneNumber: +1 818 557-9278 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 829-3397 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: LavalleR +givenName: Rosamund +mail: LavalleR@645458196d8d458186860230f1cc27c6.bitwarden.com +carLicense: QC1SMQ +departmentNumber: 1381 +employeeType: Employee +homePhone: +1 818 718-4811 +initials: R. L. +mobile: +1 818 953-9200 +pager: +1 818 166-8402 +roomNumber: 9036 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Farooq Farquhar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farooq Farquhar +sn: Farquhar +description: This is Farooq Farquhar's description +facsimileTelephoneNumber: +1 206 409-6389 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 304-6599 +title: Junior Administrative Mascot +userPassword: Password1 +uid: FarquhaF +givenName: Farooq +mail: FarquhaF@9853bdab18e6473e80d7e44abcd07317.bitwarden.com +carLicense: NMPYKG +departmentNumber: 1682 +employeeType: Employee +homePhone: +1 206 540-1661 +initials: F. F. +mobile: +1 206 165-2004 +pager: +1 206 924-2921 +roomNumber: 8918 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Brandy Strauss,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandy Strauss +sn: Strauss +description: This is Brandy Strauss's description +facsimileTelephoneNumber: +1 804 586-6458 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 299-2439 +title: Junior Management Artist +userPassword: Password1 +uid: StraussB +givenName: Brandy +mail: StraussB@08b70f178d5240d696c9850eb93d6f02.bitwarden.com +carLicense: M4H3EQ +departmentNumber: 3394 +employeeType: Normal +homePhone: +1 804 676-3400 +initials: B. S. +mobile: +1 804 267-5186 +pager: +1 804 692-8653 +roomNumber: 8690 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jake McGorman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jake McGorman +sn: McGorman +description: This is Jake McGorman's description +facsimileTelephoneNumber: +1 804 208-6231 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 124-8753 +title: Associate Management Figurehead +userPassword: Password1 +uid: McGormaJ +givenName: Jake +mail: McGormaJ@f8bd0fd0b11340a59263ead33f8063a8.bitwarden.com +carLicense: 0RTEA3 +departmentNumber: 4239 +employeeType: Contract +homePhone: +1 804 592-2323 +initials: J. M. +mobile: +1 804 243-3636 +pager: +1 804 521-1156 +roomNumber: 9480 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kai Mastenbrook +sn: Mastenbrook +description: This is Kai Mastenbrook's description +facsimileTelephoneNumber: +1 510 103-2383 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 705-2598 +title: Associate Administrative Director +userPassword: Password1 +uid: MastenbK +givenName: Kai +mail: MastenbK@b06b941e5d1147e188fc4663bd226c1c.bitwarden.com +carLicense: 55T5RG +departmentNumber: 8535 +employeeType: Employee +homePhone: +1 510 228-5444 +initials: K. M. +mobile: +1 510 860-8224 +pager: +1 510 848-1162 +roomNumber: 8523 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ruchi Furst,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruchi Furst +sn: Furst +description: This is Ruchi Furst's description +facsimileTelephoneNumber: +1 818 559-7934 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 370-7008 +title: Master Janitorial Admin +userPassword: Password1 +uid: FurstR +givenName: Ruchi +mail: FurstR@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com +carLicense: 5GHKHR +departmentNumber: 3957 +employeeType: Contract +homePhone: +1 818 394-3885 +initials: R. F. +mobile: +1 818 883-9615 +pager: +1 818 728-7656 +roomNumber: 9298 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joann Truffer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joann Truffer +sn: Truffer +description: This is Joann Truffer's description +facsimileTelephoneNumber: +1 213 444-6646 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 776-7020 +title: Chief Administrative President +userPassword: Password1 +uid: TrufferJ +givenName: Joann +mail: TrufferJ@f0d1676d1c42478dbb4656ca35d0b50c.bitwarden.com +carLicense: AGJKXO +departmentNumber: 4908 +employeeType: Contract +homePhone: +1 213 130-9222 +initials: J. T. +mobile: +1 213 469-4018 +pager: +1 213 781-7131 +roomNumber: 8599 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Anton Chao,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anton Chao +sn: Chao +description: This is Anton Chao's description +facsimileTelephoneNumber: +1 213 313-6358 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 522-1603 +title: Junior Payroll Visionary +userPassword: Password1 +uid: ChaoA +givenName: Anton +mail: ChaoA@fc85c5eabc344595a2c61eb7ac58789c.bitwarden.com +carLicense: 6A6O88 +departmentNumber: 8472 +employeeType: Contract +homePhone: +1 213 947-2448 +initials: A. C. +mobile: +1 213 726-8052 +pager: +1 213 682-2289 +roomNumber: 9277 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cacilie Murnaghan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cacilie Murnaghan +sn: Murnaghan +description: This is Cacilie Murnaghan's description +facsimileTelephoneNumber: +1 408 177-2687 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 386-1991 +title: Master Management Architect +userPassword: Password1 +uid: MurnaghC +givenName: Cacilie +mail: MurnaghC@63e60d8db42545d0aa6e5c384a01705d.bitwarden.com +carLicense: 06D12T +departmentNumber: 3499 +employeeType: Normal +homePhone: +1 408 234-6665 +initials: C. M. +mobile: +1 408 116-4143 +pager: +1 408 960-8842 +roomNumber: 8676 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ilene Magri,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilene Magri +sn: Magri +description: This is Ilene Magri's description +facsimileTelephoneNumber: +1 206 974-9124 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 389-1701 +title: Supreme Management Janitor +userPassword: Password1 +uid: MagriI +givenName: Ilene +mail: MagriI@c2c92a5abf3749b38d91e565e28d400a.bitwarden.com +carLicense: GD9QUB +departmentNumber: 5310 +employeeType: Employee +homePhone: +1 206 319-3815 +initials: I. M. +mobile: +1 206 275-1416 +pager: +1 206 202-1933 +roomNumber: 9537 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haggar Supervisor +sn: Supervisor +description: This is Haggar Supervisor's description +facsimileTelephoneNumber: +1 818 232-2046 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 818 844-8916 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: SuperviH +givenName: Haggar +mail: SuperviH@bd3dedcd93c84c0aa4af62b582b04e9d.bitwarden.com +carLicense: 4C2TT4 +departmentNumber: 9065 +employeeType: Normal +homePhone: +1 818 653-9199 +initials: H. S. +mobile: +1 818 968-6071 +pager: +1 818 889-3475 +roomNumber: 9763 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mabelle Bannard +sn: Bannard +description: This is Mabelle Bannard's description +facsimileTelephoneNumber: +1 804 796-7154 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 742-6296 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: BannardM +givenName: Mabelle +mail: BannardM@8edc6a8ce7724275bb989e481ab8171b.bitwarden.com +carLicense: PKC4N4 +departmentNumber: 2931 +employeeType: Normal +homePhone: +1 804 110-1683 +initials: M. B. +mobile: +1 804 346-2833 +pager: +1 804 517-2941 +roomNumber: 9710 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kiele Willis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiele Willis +sn: Willis +description: This is Kiele Willis's description +facsimileTelephoneNumber: +1 408 191-7837 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 408 723-6151 +title: Master Janitorial President +userPassword: Password1 +uid: WillisK +givenName: Kiele +mail: WillisK@c3326a8bbe8a452eb1cd54b6abb6e1f0.bitwarden.com +carLicense: HXSJMM +departmentNumber: 6038 +employeeType: Normal +homePhone: +1 408 596-8608 +initials: K. W. +mobile: +1 408 794-6214 +pager: +1 408 762-4503 +roomNumber: 9390 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Blondie MMail,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blondie MMail +sn: MMail +description: This is Blondie MMail's description +facsimileTelephoneNumber: +1 804 575-7708 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 804 177-4013 +title: Chief Janitorial Artist +userPassword: Password1 +uid: MMailB +givenName: Blondie +mail: MMailB@fce4c1e9f1a6429083bed21e1e54a500.bitwarden.com +carLicense: LPTFRE +departmentNumber: 9834 +employeeType: Contract +homePhone: +1 804 232-4095 +initials: B. M. +mobile: +1 804 720-6445 +pager: +1 804 317-4847 +roomNumber: 8097 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JFrancois KohalmiHill +sn: KohalmiHill +description: This is JFrancois KohalmiHill's description +facsimileTelephoneNumber: +1 804 264-9440 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 806-7777 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: KohalmiJ +givenName: JFrancois +mail: KohalmiJ@67f0c4cb093d45e88db73275893310b8.bitwarden.com +carLicense: BEKWKE +departmentNumber: 8850 +employeeType: Normal +homePhone: +1 804 562-3801 +initials: J. K. +mobile: +1 804 998-9722 +pager: +1 804 215-3257 +roomNumber: 8038 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yevette Kantor,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yevette Kantor +sn: Kantor +description: This is Yevette Kantor's description +facsimileTelephoneNumber: +1 408 456-7715 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 713-6575 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: KantorY +givenName: Yevette +mail: KantorY@0402555d9f67459e90e5fb987f132859.bitwarden.com +carLicense: TSCF7P +departmentNumber: 2835 +employeeType: Contract +homePhone: +1 408 348-3718 +initials: Y. K. +mobile: +1 408 633-2679 +pager: +1 408 437-6001 +roomNumber: 9169 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rocco Umeeda +sn: Umeeda +description: This is Rocco Umeeda's description +facsimileTelephoneNumber: +1 408 212-8331 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 408 341-9911 +title: Supreme Janitorial Developer +userPassword: Password1 +uid: UmeedaR +givenName: Rocco +mail: UmeedaR@72edbeb53d9b4d36832bc312f776b4b1.bitwarden.com +carLicense: OQR4E0 +departmentNumber: 7457 +employeeType: Employee +homePhone: +1 408 978-6555 +initials: R. U. +mobile: +1 408 324-3803 +pager: +1 408 398-3811 +roomNumber: 9063 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Youji Lawson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Youji Lawson +sn: Lawson +description: This is Youji Lawson's description +facsimileTelephoneNumber: +1 510 966-9026 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 539-2263 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: LawsonY +givenName: Youji +mail: LawsonY@8ed9716e3ac64c548b2880ae48c87c64.bitwarden.com +carLicense: CEI61Q +departmentNumber: 1257 +employeeType: Contract +homePhone: +1 510 504-9115 +initials: Y. L. +mobile: +1 510 201-9154 +pager: +1 510 103-7967 +roomNumber: 8935 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Neysa Dpu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neysa Dpu +sn: Dpu +description: This is Neysa Dpu's description +facsimileTelephoneNumber: +1 206 351-7772 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 350-9955 +title: Associate Administrative Consultant +userPassword: Password1 +uid: DpuN +givenName: Neysa +mail: DpuN@6e3a8629478147b69f53620c10ea4e46.bitwarden.com +carLicense: UDSFN0 +departmentNumber: 8025 +employeeType: Contract +homePhone: +1 206 715-9514 +initials: N. D. +mobile: +1 206 243-2017 +pager: +1 206 865-9583 +roomNumber: 9715 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=KaiWai Barriere,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KaiWai Barriere +sn: Barriere +description: This is KaiWai Barriere's description +facsimileTelephoneNumber: +1 408 662-1192 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 458-5754 +title: Master Management Consultant +userPassword: Password1 +uid: BarrierK +givenName: KaiWai +mail: BarrierK@f541074a8300482d85b53966c8cecebb.bitwarden.com +carLicense: 3F6V23 +departmentNumber: 5017 +employeeType: Normal +homePhone: +1 408 331-8558 +initials: K. B. +mobile: +1 408 546-7923 +pager: +1 408 445-3045 +roomNumber: 9985 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdalene Buratynski +sn: Buratynski +description: This is Magdalene Buratynski's description +facsimileTelephoneNumber: +1 804 296-6447 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 747-7869 +title: Master Payroll Technician +userPassword: Password1 +uid: BuratynM +givenName: Magdalene +mail: BuratynM@b158d3a8fa274efeac2024038a189bc6.bitwarden.com +carLicense: Y39YTK +departmentNumber: 2690 +employeeType: Employee +homePhone: +1 804 399-2923 +initials: M. B. +mobile: +1 804 271-4769 +pager: +1 804 656-3350 +roomNumber: 9076 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Latashia Waldie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Latashia Waldie +sn: Waldie +description: This is Latashia Waldie's description +facsimileTelephoneNumber: +1 408 447-2135 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 904-3419 +title: Chief Peons Fellow +userPassword: Password1 +uid: WaldieL +givenName: Latashia +mail: WaldieL@4e073aa3a1c84fccb5d5f011b1fd7a56.bitwarden.com +carLicense: 55E6WP +departmentNumber: 8374 +employeeType: Contract +homePhone: +1 408 807-2769 +initials: L. W. +mobile: +1 408 467-5038 +pager: +1 408 227-8306 +roomNumber: 9983 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gordy Durham,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gordy Durham +sn: Durham +description: This is Gordy Durham's description +facsimileTelephoneNumber: +1 510 746-8266 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 111-4117 +title: Junior Management Engineer +userPassword: Password1 +uid: DurhamG +givenName: Gordy +mail: DurhamG@cc8d2b6d697a44a78314b5da49c4f756.bitwarden.com +carLicense: 8X1AFV +departmentNumber: 8790 +employeeType: Normal +homePhone: +1 510 946-5665 +initials: G. D. +mobile: +1 510 959-9056 +pager: +1 510 250-3943 +roomNumber: 8611 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dierdre Isip,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dierdre Isip +sn: Isip +description: This is Dierdre Isip's description +facsimileTelephoneNumber: +1 415 419-2305 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 244-1738 +title: Supreme Payroll Director +userPassword: Password1 +uid: IsipD +givenName: Dierdre +mail: IsipD@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com +carLicense: 9362AM +departmentNumber: 2235 +employeeType: Employee +homePhone: +1 415 484-5053 +initials: D. I. +mobile: +1 415 141-1046 +pager: +1 415 434-8067 +roomNumber: 9780 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reggi Jakubowski +sn: Jakubowski +description: This is Reggi Jakubowski's description +facsimileTelephoneNumber: +1 510 441-5262 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 665-1166 +title: Master Product Testing Fellow +userPassword: Password1 +uid: JakubowR +givenName: Reggi +mail: JakubowR@a71709f685af42718e5d72a70ff54dea.bitwarden.com +carLicense: RNB4L6 +departmentNumber: 6787 +employeeType: Normal +homePhone: +1 510 192-4687 +initials: R. J. +mobile: +1 510 692-2084 +pager: +1 510 677-5353 +roomNumber: 9780 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oralia Bushnell +sn: Bushnell +description: This is Oralia Bushnell's description +facsimileTelephoneNumber: +1 213 677-2104 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 468-7330 +title: Junior Human Resources Artist +userPassword: Password1 +uid: BushnelO +givenName: Oralia +mail: BushnelO@8f4e601fed874b8fa44bcb8ac4c7bc3d.bitwarden.com +carLicense: OTR1J3 +departmentNumber: 8473 +employeeType: Contract +homePhone: +1 213 913-1083 +initials: O. B. +mobile: +1 213 706-6860 +pager: +1 213 162-7855 +roomNumber: 9973 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emelina Weidenborner +sn: Weidenborner +description: This is Emelina Weidenborner's description +facsimileTelephoneNumber: +1 415 377-2396 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 631-7064 +title: Associate Administrative Punk +userPassword: Password1 +uid: WeidenbE +givenName: Emelina +mail: WeidenbE@33e9ea4bed5c488498851d881014c4e4.bitwarden.com +carLicense: 0R512S +departmentNumber: 5480 +employeeType: Employee +homePhone: +1 415 221-5036 +initials: E. W. +mobile: +1 415 743-6165 +pager: +1 415 953-3143 +roomNumber: 9192 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ailis Stumpf,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailis Stumpf +sn: Stumpf +description: This is Ailis Stumpf's description +facsimileTelephoneNumber: +1 510 255-5246 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 510 571-9037 +title: Chief Product Development Vice President +userPassword: Password1 +uid: StumpfA +givenName: Ailis +mail: StumpfA@90c7f28240314e63a7f7df66dc6b7112.bitwarden.com +carLicense: GN17OU +departmentNumber: 9452 +employeeType: Contract +homePhone: +1 510 248-5345 +initials: A. S. +mobile: +1 510 292-5071 +pager: +1 510 857-4084 +roomNumber: 9890 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emelyne Fontanilla +sn: Fontanilla +description: This is Emelyne Fontanilla's description +facsimileTelephoneNumber: +1 206 984-2562 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 206 568-3281 +title: Chief Peons Dictator +userPassword: Password1 +uid: FontaniE +givenName: Emelyne +mail: FontaniE@5857bd6862ae44e0abdb84cc22875a30.bitwarden.com +carLicense: HA3K8X +departmentNumber: 6809 +employeeType: Contract +homePhone: +1 206 756-4096 +initials: E. F. +mobile: +1 206 279-4816 +pager: +1 206 932-3715 +roomNumber: 8891 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Puneet Aloi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Puneet Aloi +sn: Aloi +description: This is Puneet Aloi's description +facsimileTelephoneNumber: +1 818 775-5494 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 818 562-3388 +title: Junior Product Testing Grunt +userPassword: Password1 +uid: AloiP +givenName: Puneet +mail: AloiP@375640a8a3724defaeb05e0a11f25f5c.bitwarden.com +carLicense: EHBWN4 +departmentNumber: 4570 +employeeType: Employee +homePhone: +1 818 235-4656 +initials: P. A. +mobile: +1 818 345-7855 +pager: +1 818 780-1292 +roomNumber: 8618 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorotea Zeigler +sn: Zeigler +description: This is Dorotea Zeigler's description +facsimileTelephoneNumber: +1 213 984-4625 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 129-1837 +title: Chief Payroll Grunt +userPassword: Password1 +uid: ZeiglerD +givenName: Dorotea +mail: ZeiglerD@be2d8ee120a34b15a9149c5056a15a2b.bitwarden.com +carLicense: JISOCD +departmentNumber: 4424 +employeeType: Contract +homePhone: +1 213 517-8026 +initials: D. Z. +mobile: +1 213 280-6228 +pager: +1 213 112-3248 +roomNumber: 8102 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Del Buckingham,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Del Buckingham +sn: Buckingham +description: This is Del Buckingham's description +facsimileTelephoneNumber: +1 818 357-3985 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 818 264-8821 +title: Associate Peons Developer +userPassword: Password1 +uid: BuckingD +givenName: Del +mail: BuckingD@c8d14bd2dc82442f9c5011dbd053c45a.bitwarden.com +carLicense: S772DC +departmentNumber: 8090 +employeeType: Contract +homePhone: +1 818 442-9973 +initials: D. B. +mobile: +1 818 499-8832 +pager: +1 818 557-7480 +roomNumber: 9110 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pardeep Roney,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pardeep Roney +sn: Roney +description: This is Pardeep Roney's description +facsimileTelephoneNumber: +1 415 503-8850 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 384-3049 +title: Supreme Management Artist +userPassword: Password1 +uid: RoneyP +givenName: Pardeep +mail: RoneyP@a8c73be9cd69486db83d92f072753b6a.bitwarden.com +carLicense: 39VFU7 +departmentNumber: 9944 +employeeType: Employee +homePhone: +1 415 448-1880 +initials: P. R. +mobile: +1 415 121-1367 +pager: +1 415 942-6344 +roomNumber: 8759 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shuqing AuYeung +sn: AuYeung +description: This is Shuqing AuYeung's description +facsimileTelephoneNumber: +1 206 534-4999 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 560-1042 +title: Master Product Development Dictator +userPassword: Password1 +uid: AuYeungS +givenName: Shuqing +mail: AuYeungS@31118e4ea061472193269b0ea325f915.bitwarden.com +carLicense: Y5RPV8 +departmentNumber: 5681 +employeeType: Contract +homePhone: +1 206 629-4336 +initials: S. A. +mobile: +1 206 784-1399 +pager: +1 206 215-5516 +roomNumber: 9663 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Valma Myrillas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valma Myrillas +sn: Myrillas +description: This is Valma Myrillas's description +facsimileTelephoneNumber: +1 510 466-7733 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 863-5132 +title: Master Product Testing Artist +userPassword: Password1 +uid: MyrillaV +givenName: Valma +mail: MyrillaV@1ca512dd590d4189adaf95d52220543f.bitwarden.com +carLicense: 296D74 +departmentNumber: 7498 +employeeType: Employee +homePhone: +1 510 512-5548 +initials: V. M. +mobile: +1 510 317-1066 +pager: +1 510 252-7947 +roomNumber: 9325 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Alvira Dessain,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvira Dessain +sn: Dessain +description: This is Alvira Dessain's description +facsimileTelephoneNumber: +1 408 568-6631 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 408 203-2266 +title: Associate Janitorial Punk +userPassword: Password1 +uid: DessainA +givenName: Alvira +mail: DessainA@e00ee60b95474bda83bb814472063684.bitwarden.com +carLicense: QSY3AO +departmentNumber: 8868 +employeeType: Employee +homePhone: +1 408 889-6900 +initials: A. D. +mobile: +1 408 266-5730 +pager: +1 408 359-7461 +roomNumber: 9639 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melli Ertan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melli Ertan +sn: Ertan +description: This is Melli Ertan's description +facsimileTelephoneNumber: +1 213 221-9157 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 292-2640 +title: Chief Administrative Grunt +userPassword: Password1 +uid: ErtanM +givenName: Melli +mail: ErtanM@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com +carLicense: AQQ0QX +departmentNumber: 1696 +employeeType: Normal +homePhone: +1 213 847-2124 +initials: M. E. +mobile: +1 213 672-4753 +pager: +1 213 878-3217 +roomNumber: 9364 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Keri Stroupe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keri Stroupe +sn: Stroupe +description: This is Keri Stroupe's description +facsimileTelephoneNumber: +1 206 408-3734 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 206 106-6711 +title: Supreme Product Development Artist +userPassword: Password1 +uid: StroupeK +givenName: Keri +mail: StroupeK@a30b952d2ab641cf9bc7eee94d4f50c2.bitwarden.com +carLicense: JCL5JY +departmentNumber: 1557 +employeeType: Employee +homePhone: +1 206 649-7642 +initials: K. S. +mobile: +1 206 725-8599 +pager: +1 206 292-7130 +roomNumber: 9271 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Billi Chiu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Billi Chiu +sn: Chiu +description: This is Billi Chiu's description +facsimileTelephoneNumber: +1 415 444-6309 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 693-3044 +title: Junior Human Resources Engineer +userPassword: Password1 +uid: ChiuB +givenName: Billi +mail: ChiuB@3603f9fb94e045a59b767f557fde78c8.bitwarden.com +carLicense: 3EL8GB +departmentNumber: 6580 +employeeType: Normal +homePhone: +1 415 713-6009 +initials: B. C. +mobile: +1 415 384-7416 +pager: +1 415 829-2532 +roomNumber: 9577 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Willette Tel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willette Tel +sn: Tel +description: This is Willette Tel's description +facsimileTelephoneNumber: +1 818 837-5278 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 747-1686 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: TelW +givenName: Willette +mail: TelW@9528dc6cbe3247b1b273b1646f94d087.bitwarden.com +carLicense: 2KJOIL +departmentNumber: 7260 +employeeType: Employee +homePhone: +1 818 862-6477 +initials: W. T. +mobile: +1 818 311-6195 +pager: +1 818 754-8187 +roomNumber: 9980 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ynes Jezioranski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ynes Jezioranski +sn: Jezioranski +description: This is Ynes Jezioranski's description +facsimileTelephoneNumber: +1 415 686-4386 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 159-6981 +title: Associate Peons Fellow +userPassword: Password1 +uid: JezioraY +givenName: Ynes +mail: JezioraY@45e7698e90b843bf96764adac8813e44.bitwarden.com +carLicense: GGK28C +departmentNumber: 4765 +employeeType: Contract +homePhone: +1 415 635-8880 +initials: Y. J. +mobile: +1 415 754-6929 +pager: +1 415 876-3776 +roomNumber: 9080 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Teruko Cregan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teruko Cregan +sn: Cregan +description: This is Teruko Cregan's description +facsimileTelephoneNumber: +1 804 526-1432 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 547-7896 +title: Associate Peons Fellow +userPassword: Password1 +uid: CreganT +givenName: Teruko +mail: CreganT@86d24a798dce4653a3b75c56ae675864.bitwarden.com +carLicense: LN0GGE +departmentNumber: 8889 +employeeType: Contract +homePhone: +1 804 627-4360 +initials: T. C. +mobile: +1 804 519-8475 +pager: +1 804 214-4029 +roomNumber: 9161 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rick Novisedlak,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rick Novisedlak +sn: Novisedlak +description: This is Rick Novisedlak's description +facsimileTelephoneNumber: +1 804 909-4039 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 415-1104 +title: Junior Payroll Assistant +userPassword: Password1 +uid: NovisedR +givenName: Rick +mail: NovisedR@5411fa97ed104161bed6dae71e8cb050.bitwarden.com +carLicense: WMLBDI +departmentNumber: 6152 +employeeType: Contract +homePhone: +1 804 811-8422 +initials: R. N. +mobile: +1 804 442-6005 +pager: +1 804 338-6730 +roomNumber: 8605 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurlie Tiegs +sn: Tiegs +description: This is Aurlie Tiegs's description +facsimileTelephoneNumber: +1 408 509-2764 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 968-9315 +title: Supreme Product Development Czar +userPassword: Password1 +uid: TiegsA +givenName: Aurlie +mail: TiegsA@c5bded5afb9d4ede84cc7d5e63bc3810.bitwarden.com +carLicense: G75LAB +departmentNumber: 5784 +employeeType: Normal +homePhone: +1 408 633-8077 +initials: A. T. +mobile: +1 408 460-8966 +pager: +1 408 287-7791 +roomNumber: 8115 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Notley Peterson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Notley Peterson +sn: Peterson +description: This is Notley Peterson's description +facsimileTelephoneNumber: +1 510 756-6937 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 537-7068 +title: Junior Payroll Artist +userPassword: Password1 +uid: PetersoN +givenName: Notley +mail: PetersoN@7b57b8e19b5b443b99958998ffeb1b88.bitwarden.com +carLicense: KQAH1K +departmentNumber: 2093 +employeeType: Employee +homePhone: +1 510 112-6883 +initials: N. P. +mobile: +1 510 106-5749 +pager: +1 510 616-7022 +roomNumber: 8836 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Joyous ONeal,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joyous ONeal +sn: ONeal +description: This is Joyous ONeal's description +facsimileTelephoneNumber: +1 206 197-8515 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 575-4286 +title: Supreme Product Testing Engineer +userPassword: Password1 +uid: ONealJ +givenName: Joyous +mail: ONealJ@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com +carLicense: U2KASE +departmentNumber: 7633 +employeeType: Normal +homePhone: +1 206 819-4487 +initials: J. O. +mobile: +1 206 157-8302 +pager: +1 206 197-4340 +roomNumber: 9247 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Perle Dolan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perle Dolan +sn: Dolan +description: This is Perle Dolan's description +facsimileTelephoneNumber: +1 510 634-7693 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 895-9104 +title: Chief Janitorial Developer +userPassword: Password1 +uid: DolanP +givenName: Perle +mail: DolanP@c685d3277d5148a0bacdff719084ff0a.bitwarden.com +carLicense: PGGSNK +departmentNumber: 7354 +employeeType: Employee +homePhone: +1 510 223-2677 +initials: P. D. +mobile: +1 510 627-8048 +pager: +1 510 578-3853 +roomNumber: 8073 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ioana Hermack,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ioana Hermack +sn: Hermack +description: This is Ioana Hermack's description +facsimileTelephoneNumber: +1 415 205-9645 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 653-8229 +title: Chief Administrative Dictator +userPassword: Password1 +uid: HermackI +givenName: Ioana +mail: HermackI@bb425b89a99c414cb7e4980da4392291.bitwarden.com +carLicense: 2QLQYY +departmentNumber: 4519 +employeeType: Contract +homePhone: +1 415 794-5410 +initials: I. H. +mobile: +1 415 446-2801 +pager: +1 415 698-1953 +roomNumber: 8719 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nikolaos Nickonov,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nikolaos Nickonov +sn: Nickonov +description: This is Nikolaos Nickonov's description +facsimileTelephoneNumber: +1 206 359-4952 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 206 659-3558 +title: Chief Management Grunt +userPassword: Password1 +uid: NickonoN +givenName: Nikolaos +mail: NickonoN@da1b5788f067415eb6baf89891f2b951.bitwarden.com +carLicense: NM0KG1 +departmentNumber: 9696 +employeeType: Contract +homePhone: +1 206 123-8798 +initials: N. N. +mobile: +1 206 604-9287 +pager: +1 206 136-5604 +roomNumber: 8917 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kirstie Rodger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirstie Rodger +sn: Rodger +description: This is Kirstie Rodger's description +facsimileTelephoneNumber: +1 206 977-5100 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 678-2402 +title: Supreme Management Pinhead +userPassword: Password1 +uid: RodgerK +givenName: Kirstie +mail: RodgerK@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com +carLicense: KYKUO0 +departmentNumber: 5173 +employeeType: Contract +homePhone: +1 206 212-5290 +initials: K. R. +mobile: +1 206 782-1686 +pager: +1 206 407-4333 +roomNumber: 8847 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sheree Siddell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheree Siddell +sn: Siddell +description: This is Sheree Siddell's description +facsimileTelephoneNumber: +1 408 856-9886 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 281-4756 +title: Master Payroll Writer +userPassword: Password1 +uid: SiddellS +givenName: Sheree +mail: SiddellS@c45faf74232c42d9855e1f53b9b93518.bitwarden.com +carLicense: F0IXSJ +departmentNumber: 7643 +employeeType: Contract +homePhone: +1 408 114-9305 +initials: S. S. +mobile: +1 408 699-4462 +pager: +1 408 858-2402 +roomNumber: 8368 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tas Chitnis,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tas Chitnis +sn: Chitnis +description: This is Tas Chitnis's description +facsimileTelephoneNumber: +1 213 315-8683 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 778-7734 +title: Junior Product Development Artist +userPassword: Password1 +uid: ChitnisT +givenName: Tas +mail: ChitnisT@c985a5079f444c70910b648248884490.bitwarden.com +carLicense: 86HJCB +departmentNumber: 5742 +employeeType: Employee +homePhone: +1 213 409-2604 +initials: T. C. +mobile: +1 213 879-8604 +pager: +1 213 361-7277 +roomNumber: 8501 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Whitfield Vexler,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Whitfield Vexler +sn: Vexler +description: This is Whitfield Vexler's description +facsimileTelephoneNumber: +1 415 502-3705 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 293-9992 +title: Master Administrative Director +userPassword: Password1 +uid: VexlerW +givenName: Whitfield +mail: VexlerW@e2a32b6b55ee40dd9f13968ae3f23ead.bitwarden.com +carLicense: D6N6WU +departmentNumber: 5355 +employeeType: Contract +homePhone: +1 415 885-2636 +initials: W. V. +mobile: +1 415 750-3385 +pager: +1 415 825-3787 +roomNumber: 8566 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurijn Drummer +sn: Drummer +description: This is Maurijn Drummer's description +facsimileTelephoneNumber: +1 804 299-1100 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 587-2541 +title: Supreme Janitorial Director +userPassword: Password1 +uid: DrummerM +givenName: Maurijn +mail: DrummerM@7358f14ebc1d437faa31666574716056.bitwarden.com +carLicense: 4J6MPX +departmentNumber: 2353 +employeeType: Normal +homePhone: +1 804 537-8558 +initials: M. D. +mobile: +1 804 638-5302 +pager: +1 804 224-1994 +roomNumber: 8688 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Janifer Gundecha,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janifer Gundecha +sn: Gundecha +description: This is Janifer Gundecha's description +facsimileTelephoneNumber: +1 818 733-9762 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 412-2423 +title: Associate Management Engineer +userPassword: Password1 +uid: GundechJ +givenName: Janifer +mail: GundechJ@c21bdca857b64cf18041de8eb907a456.bitwarden.com +carLicense: CXCVSR +departmentNumber: 2477 +employeeType: Normal +homePhone: +1 818 468-6225 +initials: J. G. +mobile: +1 818 393-5972 +pager: +1 818 700-2951 +roomNumber: 8130 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Diandra Shnay,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diandra Shnay +sn: Shnay +description: This is Diandra Shnay's description +facsimileTelephoneNumber: +1 818 681-7841 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 357-3393 +title: Associate Janitorial Director +userPassword: Password1 +uid: ShnayD +givenName: Diandra +mail: ShnayD@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com +carLicense: 29QW5F +departmentNumber: 6765 +employeeType: Employee +homePhone: +1 818 843-4902 +initials: D. S. +mobile: +1 818 687-8103 +pager: +1 818 434-5495 +roomNumber: 8710 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Semmler Bamfo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Semmler Bamfo +sn: Bamfo +description: This is Semmler Bamfo's description +facsimileTelephoneNumber: +1 415 750-5443 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 469-6033 +title: Junior Payroll Fellow +userPassword: Password1 +uid: BamfoS +givenName: Semmler +mail: BamfoS@4790b8410fc547599da7ac5a22f3c64f.bitwarden.com +carLicense: 9MVJ4H +departmentNumber: 9232 +employeeType: Normal +homePhone: +1 415 825-1734 +initials: S. B. +mobile: +1 415 148-9811 +pager: +1 415 983-6144 +roomNumber: 9673 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquette Gentzler +sn: Gentzler +description: This is Jacquette Gentzler's description +facsimileTelephoneNumber: +1 408 940-6027 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 718-4855 +title: Master Human Resources Artist +userPassword: Password1 +uid: GentzleJ +givenName: Jacquette +mail: GentzleJ@758a671442c6456f8563c5ae42048214.bitwarden.com +carLicense: QF6LSO +departmentNumber: 3502 +employeeType: Normal +homePhone: +1 408 243-3034 +initials: J. G. +mobile: +1 408 156-8299 +pager: +1 408 384-8738 +roomNumber: 9392 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Martina Grazzini,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martina Grazzini +sn: Grazzini +description: This is Martina Grazzini's description +facsimileTelephoneNumber: +1 510 117-4890 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 618-7197 +title: Junior Janitorial Artist +userPassword: Password1 +uid: GrazzinM +givenName: Martina +mail: GrazzinM@566e3f43810e4586a805d84cd5a87397.bitwarden.com +carLicense: 3H837C +departmentNumber: 2841 +employeeType: Normal +homePhone: +1 510 443-7571 +initials: M. G. +mobile: +1 510 400-1039 +pager: +1 510 934-9636 +roomNumber: 9535 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Minnie Dickie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minnie Dickie +sn: Dickie +description: This is Minnie Dickie's description +facsimileTelephoneNumber: +1 213 360-4980 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 567-2507 +title: Associate Product Development Janitor +userPassword: Password1 +uid: DickieM +givenName: Minnie +mail: DickieM@3b50811f02664433a227210515cf2d84.bitwarden.com +carLicense: HH0YTT +departmentNumber: 1988 +employeeType: Employee +homePhone: +1 213 341-3273 +initials: M. D. +mobile: +1 213 671-7168 +pager: +1 213 531-4266 +roomNumber: 8943 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Susanna Buckman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susanna Buckman +sn: Buckman +description: This is Susanna Buckman's description +facsimileTelephoneNumber: +1 818 997-3281 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 626-6279 +title: Master Human Resources Warrior +userPassword: Password1 +uid: BuckmanS +givenName: Susanna +mail: BuckmanS@b6acb1459b804d2d9243461797b49472.bitwarden.com +carLicense: 7O37UJ +departmentNumber: 2443 +employeeType: Employee +homePhone: +1 818 666-3724 +initials: S. B. +mobile: +1 818 122-1051 +pager: +1 818 409-8329 +roomNumber: 8969 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Johnette Yendall,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnette Yendall +sn: Yendall +description: This is Johnette Yendall's description +facsimileTelephoneNumber: +1 213 323-9789 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 202-1206 +title: Supreme Product Development Czar +userPassword: Password1 +uid: YendallJ +givenName: Johnette +mail: YendallJ@c8c5e396d1a54bdc979d0124960b8ac1.bitwarden.com +carLicense: DDV2NT +departmentNumber: 4065 +employeeType: Employee +homePhone: +1 213 918-5787 +initials: J. Y. +mobile: +1 213 656-3980 +pager: +1 213 433-8728 +roomNumber: 8546 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aurelie Doray,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurelie Doray +sn: Doray +description: This is Aurelie Doray's description +facsimileTelephoneNumber: +1 213 467-2313 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 441-4336 +title: Chief Peons Grunt +userPassword: Password1 +uid: DorayA +givenName: Aurelie +mail: DorayA@7dfe1b9d3b374cdda358060433bb4037.bitwarden.com +carLicense: 1GXUXS +departmentNumber: 1658 +employeeType: Normal +homePhone: +1 213 304-7284 +initials: A. D. +mobile: +1 213 994-8303 +pager: +1 213 793-4570 +roomNumber: 9494 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leticia Aravamudhan +sn: Aravamudhan +description: This is Leticia Aravamudhan's description +facsimileTelephoneNumber: +1 206 638-8590 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 543-5605 +title: Junior Product Development Vice President +userPassword: Password1 +uid: AravamuL +givenName: Leticia +mail: AravamuL@af4484e6bd354321bc237bc7b6d97e88.bitwarden.com +carLicense: O96WR0 +departmentNumber: 3225 +employeeType: Employee +homePhone: +1 206 826-6949 +initials: L. A. +mobile: +1 206 505-4170 +pager: +1 206 972-4188 +roomNumber: 8964 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dusan Menyhart,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dusan Menyhart +sn: Menyhart +description: This is Dusan Menyhart's description +facsimileTelephoneNumber: +1 804 193-1825 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 804 306-7677 +title: Associate Product Development Manager +userPassword: Password1 +uid: MenyharD +givenName: Dusan +mail: MenyharD@36f00fa549b64beb879fa1440346fd8b.bitwarden.com +carLicense: N123ID +departmentNumber: 2760 +employeeType: Employee +homePhone: +1 804 598-3169 +initials: D. M. +mobile: +1 804 707-6271 +pager: +1 804 622-5717 +roomNumber: 8260 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Utilla Brandon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Utilla Brandon +sn: Brandon +description: This is Utilla Brandon's description +facsimileTelephoneNumber: +1 213 183-3493 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 228-7154 +title: Master Peons Stooge +userPassword: Password1 +uid: BrandonU +givenName: Utilla +mail: BrandonU@4dd21bf6830a4c908b6586742f2895eb.bitwarden.com +carLicense: G1RT2U +departmentNumber: 4032 +employeeType: Employee +homePhone: +1 213 901-5867 +initials: U. B. +mobile: +1 213 309-3145 +pager: +1 213 311-9006 +roomNumber: 9276 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eduardo Crowle +sn: Crowle +description: This is Eduardo Crowle's description +facsimileTelephoneNumber: +1 510 792-8672 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 708-9645 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: CrowleE +givenName: Eduardo +mail: CrowleE@e60dd9bce03a413a915d470a19570918.bitwarden.com +carLicense: 079XK7 +departmentNumber: 2323 +employeeType: Normal +homePhone: +1 510 897-4413 +initials: E. C. +mobile: +1 510 455-6422 +pager: +1 510 490-1154 +roomNumber: 8530 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Selma Kwant,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selma Kwant +sn: Kwant +description: This is Selma Kwant's description +facsimileTelephoneNumber: +1 415 866-9485 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 655-6762 +title: Master Product Testing Engineer +userPassword: Password1 +uid: KwantS +givenName: Selma +mail: KwantS@f4a421d551d64acc80985f5e163c5415.bitwarden.com +carLicense: 51N1VH +departmentNumber: 2034 +employeeType: Normal +homePhone: +1 415 997-3006 +initials: S. K. +mobile: +1 415 602-3732 +pager: +1 415 416-5796 +roomNumber: 9962 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Levent Debord,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Levent Debord +sn: Debord +description: This is Levent Debord's description +facsimileTelephoneNumber: +1 408 218-5616 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 142-9767 +title: Associate Product Development Visionary +userPassword: Password1 +uid: DebordL +givenName: Levent +mail: DebordL@9676da99cfac4bada210a8c85a95f456.bitwarden.com +carLicense: KNH8KL +departmentNumber: 9930 +employeeType: Normal +homePhone: +1 408 205-1853 +initials: L. D. +mobile: +1 408 443-7953 +pager: +1 408 878-5345 +roomNumber: 9814 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tandie Gourley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tandie Gourley +sn: Gourley +description: This is Tandie Gourley's description +facsimileTelephoneNumber: +1 408 902-6815 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 377-9902 +title: Master Peons Admin +userPassword: Password1 +uid: GourleyT +givenName: Tandie +mail: GourleyT@0ee3c70c9f6e4a52a872f1ee5ca53058.bitwarden.com +carLicense: T7NHOO +departmentNumber: 5887 +employeeType: Normal +homePhone: +1 408 321-6228 +initials: T. G. +mobile: +1 408 972-8684 +pager: +1 408 581-3814 +roomNumber: 9763 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Indy Hu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Indy Hu +sn: Hu +description: This is Indy Hu's description +facsimileTelephoneNumber: +1 415 231-7659 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 847-9389 +title: Master Administrative Consultant +userPassword: Password1 +uid: HuI +givenName: Indy +mail: HuI@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com +carLicense: A630S4 +departmentNumber: 5063 +employeeType: Contract +homePhone: +1 415 113-6256 +initials: I. H. +mobile: +1 415 615-8840 +pager: +1 415 163-4844 +roomNumber: 9234 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stefania Frodsham +sn: Frodsham +description: This is Stefania Frodsham's description +facsimileTelephoneNumber: +1 804 133-8088 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 893-7679 +title: Associate Janitorial Manager +userPassword: Password1 +uid: FrodshaS +givenName: Stefania +mail: FrodshaS@d536ba88c4cb494d89cb1893edcec6ed.bitwarden.com +carLicense: 95U9JJ +departmentNumber: 2327 +employeeType: Normal +homePhone: +1 804 730-3071 +initials: S. F. +mobile: +1 804 380-5091 +pager: +1 804 241-1985 +roomNumber: 8072 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fscocos Houston,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fscocos Houston +sn: Houston +description: This is Fscocos Houston's description +facsimileTelephoneNumber: +1 415 371-3170 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 358-3749 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: HoustonF +givenName: Fscocos +mail: HoustonF@ae2e1b915f9e4564acdcb3a48eca2ab9.bitwarden.com +carLicense: 0ATW4R +departmentNumber: 1102 +employeeType: Normal +homePhone: +1 415 710-2632 +initials: F. H. +mobile: +1 415 371-2235 +pager: +1 415 824-2754 +roomNumber: 8513 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Oriana McInnis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oriana McInnis +sn: McInnis +description: This is Oriana McInnis's description +facsimileTelephoneNumber: +1 818 380-7237 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 995-5684 +title: Junior Peons Grunt +userPassword: Password1 +uid: McInnisO +givenName: Oriana +mail: McInnisO@6ab87a8369934eb19dc984b3fc78b79c.bitwarden.com +carLicense: UD93NC +departmentNumber: 8660 +employeeType: Contract +homePhone: +1 818 604-8359 +initials: O. M. +mobile: +1 818 407-6234 +pager: +1 818 616-1144 +roomNumber: 8011 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maggee Bentley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maggee Bentley +sn: Bentley +description: This is Maggee Bentley's description +facsimileTelephoneNumber: +1 206 689-2049 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 766-2767 +title: Junior Payroll President +userPassword: Password1 +uid: BentleyM +givenName: Maggee +mail: BentleyM@abd7a0e1e97f4d19962cc07f7f9bc4e3.bitwarden.com +carLicense: HQDCYY +departmentNumber: 8032 +employeeType: Employee +homePhone: +1 206 822-1910 +initials: M. B. +mobile: +1 206 198-6697 +pager: +1 206 946-9015 +roomNumber: 9128 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Inm Venjohn,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inm Venjohn +sn: Venjohn +description: This is Inm Venjohn's description +facsimileTelephoneNumber: +1 415 511-4827 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 357-4154 +title: Associate Product Testing Grunt +userPassword: Password1 +uid: VenjohnI +givenName: Inm +mail: VenjohnI@6081422b940842a89e4de80c350bc6cb.bitwarden.com +carLicense: D4J65X +departmentNumber: 8120 +employeeType: Contract +homePhone: +1 415 811-5563 +initials: I. V. +mobile: +1 415 721-6570 +pager: +1 415 951-9866 +roomNumber: 8276 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Corena Parks,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corena Parks +sn: Parks +description: This is Corena Parks's description +facsimileTelephoneNumber: +1 818 376-3018 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 902-4774 +title: Junior Product Development Architect +userPassword: Password1 +uid: ParksC +givenName: Corena +mail: ParksC@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com +carLicense: 64CPEE +departmentNumber: 6137 +employeeType: Contract +homePhone: +1 818 823-6702 +initials: C. P. +mobile: +1 818 652-2352 +pager: +1 818 671-5318 +roomNumber: 9609 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Irv Dicks,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Irv Dicks +sn: Dicks +description: This is Irv Dicks's description +facsimileTelephoneNumber: +1 818 892-7616 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 718-2773 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: DicksI +givenName: Irv +mail: DicksI@1b075a91584f496088ea7442a5922cef.bitwarden.com +carLicense: H1TV64 +departmentNumber: 5424 +employeeType: Employee +homePhone: +1 818 861-9951 +initials: I. D. +mobile: +1 818 306-6073 +pager: +1 818 486-7467 +roomNumber: 9581 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marwan Marks,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marwan Marks +sn: Marks +description: This is Marwan Marks's description +facsimileTelephoneNumber: +1 206 136-3660 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 206 436-7029 +title: Master Product Testing Grunt +userPassword: Password1 +uid: MarksM +givenName: Marwan +mail: MarksM@fb9aa8f3b49848c792549daf315b1674.bitwarden.com +carLicense: 8STQYN +departmentNumber: 2447 +employeeType: Normal +homePhone: +1 206 326-7344 +initials: M. M. +mobile: +1 206 198-1093 +pager: +1 206 425-1758 +roomNumber: 9686 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kamal Calleja,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamal Calleja +sn: Calleja +description: This is Kamal Calleja's description +facsimileTelephoneNumber: +1 510 459-4035 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 423-8928 +title: Chief Janitorial Technician +userPassword: Password1 +uid: CallejaK +givenName: Kamal +mail: CallejaK@0838c5a7fb7841708f56102b10a6cd6b.bitwarden.com +carLicense: RQWKF1 +departmentNumber: 5617 +employeeType: Contract +homePhone: +1 510 273-5444 +initials: K. C. +mobile: +1 510 809-4332 +pager: +1 510 460-2596 +roomNumber: 8954 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jonelle Menna,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jonelle Menna +sn: Menna +description: This is Jonelle Menna's description +facsimileTelephoneNumber: +1 818 472-5006 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 635-5185 +title: Master Product Development Technician +userPassword: Password1 +uid: MennaJ +givenName: Jonelle +mail: MennaJ@2859f4a34f934de4a7cf31d7c6a4b5d2.bitwarden.com +carLicense: C2H3K6 +departmentNumber: 4908 +employeeType: Normal +homePhone: +1 818 316-4873 +initials: J. M. +mobile: +1 818 665-5021 +pager: +1 818 937-6468 +roomNumber: 8428 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Miran McGinn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miran McGinn +sn: McGinn +description: This is Miran McGinn's description +facsimileTelephoneNumber: +1 415 462-6812 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 908-2995 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: McGinnM +givenName: Miran +mail: McGinnM@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com +carLicense: J74QDT +departmentNumber: 5135 +employeeType: Normal +homePhone: +1 415 790-1523 +initials: M. M. +mobile: +1 415 661-7029 +pager: +1 415 677-6770 +roomNumber: 9412 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wan Janovich,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wan Janovich +sn: Janovich +description: This is Wan Janovich's description +facsimileTelephoneNumber: +1 213 165-3626 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 639-9321 +title: Chief Payroll Sales Rep +userPassword: Password1 +uid: JanovicW +givenName: Wan +mail: JanovicW@49f125d3a1b3429789a5b52822aa6b88.bitwarden.com +carLicense: 97JAHA +departmentNumber: 3312 +employeeType: Normal +homePhone: +1 213 474-5482 +initials: W. J. +mobile: +1 213 345-3305 +pager: +1 213 882-2108 +roomNumber: 9065 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shanda Hawryluk +sn: Hawryluk +description: This is Shanda Hawryluk's description +facsimileTelephoneNumber: +1 213 827-3123 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 362-1993 +title: Supreme Administrative Vice President +userPassword: Password1 +uid: HawryluS +givenName: Shanda +mail: HawryluS@f80fca089fec450d8b8e1759f0210196.bitwarden.com +carLicense: CFJNIN +departmentNumber: 9703 +employeeType: Contract +homePhone: +1 213 370-8539 +initials: S. H. +mobile: +1 213 615-1380 +pager: +1 213 186-9735 +roomNumber: 9722 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazuyuki Wilson +sn: Wilson +description: This is Kazuyuki Wilson's description +facsimileTelephoneNumber: +1 510 413-1820 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 510 668-9535 +title: Master Product Development Punk +userPassword: Password1 +uid: WilsonK +givenName: Kazuyuki +mail: WilsonK@dcbbbc8020794d6691fdae775364846a.bitwarden.com +carLicense: 4LNE88 +departmentNumber: 5149 +employeeType: Contract +homePhone: +1 510 602-8220 +initials: K. W. +mobile: +1 510 274-5592 +pager: +1 510 756-8526 +roomNumber: 8847 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gerben Dayal,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerben Dayal +sn: Dayal +description: This is Gerben Dayal's description +facsimileTelephoneNumber: +1 818 775-7459 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 818 309-7241 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: DayalG +givenName: Gerben +mail: DayalG@19726387c894421098fcd2a309797d54.bitwarden.com +carLicense: 8RH7R9 +departmentNumber: 2861 +employeeType: Normal +homePhone: +1 818 298-4544 +initials: G. D. +mobile: +1 818 755-6355 +pager: +1 818 575-5587 +roomNumber: 9836 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lorilee Ravi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorilee Ravi +sn: Ravi +description: This is Lorilee Ravi's description +facsimileTelephoneNumber: +1 510 385-2741 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 867-1348 +title: Associate Peons Madonna +userPassword: Password1 +uid: RaviL +givenName: Lorilee +mail: RaviL@d73ef9502e9045388e89e90d1beb22e0.bitwarden.com +carLicense: 8O20W2 +departmentNumber: 2197 +employeeType: Employee +homePhone: +1 510 945-7147 +initials: L. R. +mobile: +1 510 779-1560 +pager: +1 510 479-1183 +roomNumber: 8964 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=McGee Levasseur,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: McGee Levasseur +sn: Levasseur +description: This is McGee Levasseur's description +facsimileTelephoneNumber: +1 804 133-8356 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 920-6299 +title: Associate Product Testing Punk +userPassword: Password1 +uid: LevasseM +givenName: McGee +mail: LevasseM@2d84c4cc02464a53aeec894db02cd35d.bitwarden.com +carLicense: 1YR3X0 +departmentNumber: 1457 +employeeType: Contract +homePhone: +1 804 739-2885 +initials: M. L. +mobile: +1 804 351-8537 +pager: +1 804 206-4668 +roomNumber: 9883 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Charmain Spurlin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charmain Spurlin +sn: Spurlin +description: This is Charmain Spurlin's description +facsimileTelephoneNumber: +1 408 945-4043 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 120-6099 +title: Master Administrative Vice President +userPassword: Password1 +uid: SpurlinC +givenName: Charmain +mail: SpurlinC@3725e147678f48a0af59ca54935f5941.bitwarden.com +carLicense: FTOHSO +departmentNumber: 5600 +employeeType: Normal +homePhone: +1 408 848-4792 +initials: C. S. +mobile: +1 408 847-8675 +pager: +1 408 816-8758 +roomNumber: 8827 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lainey Grainger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lainey Grainger +sn: Grainger +description: This is Lainey Grainger's description +facsimileTelephoneNumber: +1 408 557-2640 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 408 851-4762 +title: Junior Administrative President +userPassword: Password1 +uid: GraingeL +givenName: Lainey +mail: GraingeL@afc892803baf45f7afbf8693d0730fcc.bitwarden.com +carLicense: DCM2NF +departmentNumber: 3633 +employeeType: Normal +homePhone: +1 408 340-3657 +initials: L. G. +mobile: +1 408 449-7997 +pager: +1 408 589-1473 +roomNumber: 8157 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Delly Clegg,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delly Clegg +sn: Clegg +description: This is Delly Clegg's description +facsimileTelephoneNumber: +1 818 843-8616 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 818 955-7265 +title: Master Product Development Architect +userPassword: Password1 +uid: CleggD +givenName: Delly +mail: CleggD@f3671dd1ede04fe0afa0f9d1294d7d00.bitwarden.com +carLicense: 2J1DNY +departmentNumber: 7045 +employeeType: Normal +homePhone: +1 818 503-6028 +initials: D. C. +mobile: +1 818 402-4471 +pager: +1 818 234-4081 +roomNumber: 9099 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Addie Koolstra,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Addie Koolstra +sn: Koolstra +description: This is Addie Koolstra's description +facsimileTelephoneNumber: +1 804 298-5889 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 466-3314 +title: Chief Human Resources Punk +userPassword: Password1 +uid: KoolstrA +givenName: Addie +mail: KoolstrA@ec5483be40a34a1db29ac90c75090868.bitwarden.com +carLicense: 3434NB +departmentNumber: 2132 +employeeType: Employee +homePhone: +1 804 104-2576 +initials: A. K. +mobile: +1 804 993-2052 +pager: +1 804 927-4159 +roomNumber: 9873 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nga Orsini,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nga Orsini +sn: Orsini +description: This is Nga Orsini's description +facsimileTelephoneNumber: +1 213 150-5530 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 583-1127 +title: Master Product Development Architect +userPassword: Password1 +uid: OrsiniN +givenName: Nga +mail: OrsiniN@6f9b59162216455ba54905a28461b19c.bitwarden.com +carLicense: 2XO1HK +departmentNumber: 7072 +employeeType: Employee +homePhone: +1 213 872-7276 +initials: N. O. +mobile: +1 213 489-9937 +pager: +1 213 246-4497 +roomNumber: 8668 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cherye Knighten,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherye Knighten +sn: Knighten +description: This is Cherye Knighten's description +facsimileTelephoneNumber: +1 818 570-2461 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 357-8273 +title: Junior Janitorial Architect +userPassword: Password1 +uid: KnighteC +givenName: Cherye +mail: KnighteC@502ce1a083704d4ea4b58d700d574c63.bitwarden.com +carLicense: 3E9RJC +departmentNumber: 8040 +employeeType: Employee +homePhone: +1 818 773-2386 +initials: C. K. +mobile: +1 818 114-1171 +pager: +1 818 556-7835 +roomNumber: 9468 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Betteann Sieling,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betteann Sieling +sn: Sieling +description: This is Betteann Sieling's description +facsimileTelephoneNumber: +1 804 588-1477 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 151-9576 +title: Chief Human Resources Admin +userPassword: Password1 +uid: SielingB +givenName: Betteann +mail: SielingB@147ca1a79aa4497190610d15bfa8cc6b.bitwarden.com +carLicense: UYSENQ +departmentNumber: 5853 +employeeType: Employee +homePhone: +1 804 434-8962 +initials: B. S. +mobile: +1 804 909-3510 +pager: +1 804 541-4410 +roomNumber: 9183 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Salim McIntyre,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salim McIntyre +sn: McIntyre +description: This is Salim McIntyre's description +facsimileTelephoneNumber: +1 206 906-2140 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 570-6102 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: McIntyrS +givenName: Salim +mail: McIntyrS@c2a7b578a92f4e2b90afb4532b24efa1.bitwarden.com +carLicense: 8K11Q8 +departmentNumber: 3394 +employeeType: Normal +homePhone: +1 206 920-6206 +initials: S. M. +mobile: +1 206 438-9737 +pager: +1 206 339-7110 +roomNumber: 9571 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaquelyn Fullum +sn: Fullum +description: This is Jaquelyn Fullum's description +facsimileTelephoneNumber: +1 206 719-2267 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 930-4203 +title: Junior Administrative Sales Rep +userPassword: Password1 +uid: FullumJ +givenName: Jaquelyn +mail: FullumJ@4311bb9fc69e4905a1f6f7f3dd2b8fab.bitwarden.com +carLicense: X319AE +departmentNumber: 6532 +employeeType: Employee +homePhone: +1 206 221-4290 +initials: J. F. +mobile: +1 206 783-2970 +pager: +1 206 790-4660 +roomNumber: 8330 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karole Heng,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karole Heng +sn: Heng +description: This is Karole Heng's description +facsimileTelephoneNumber: +1 415 962-3424 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 227-6064 +title: Master Product Testing Dictator +userPassword: Password1 +uid: HengK +givenName: Karole +mail: HengK@d9c6a4248c7f4569bc85ec9d29b8d415.bitwarden.com +carLicense: JJJ1J4 +departmentNumber: 8792 +employeeType: Normal +homePhone: +1 415 482-6703 +initials: K. H. +mobile: +1 415 582-4564 +pager: +1 415 853-5207 +roomNumber: 8173 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jawaid Berryhill +sn: Berryhill +description: This is Jawaid Berryhill's description +facsimileTelephoneNumber: +1 408 425-9203 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 408 444-8949 +title: Master Administrative Evangelist +userPassword: Password1 +uid: BerryhiJ +givenName: Jawaid +mail: BerryhiJ@1e938c02408a4595b2f669d03197c9de.bitwarden.com +carLicense: XSWUCD +departmentNumber: 7147 +employeeType: Normal +homePhone: +1 408 379-3172 +initials: J. B. +mobile: +1 408 690-3532 +pager: +1 408 862-2962 +roomNumber: 9249 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Norio Saifullah,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norio Saifullah +sn: Saifullah +description: This is Norio Saifullah's description +facsimileTelephoneNumber: +1 415 818-1917 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 305-6774 +title: Junior Human Resources Fellow +userPassword: Password1 +uid: SaifullN +givenName: Norio +mail: SaifullN@058dcb3aa7ef439b89d92834e14a6f82.bitwarden.com +carLicense: HYNSM8 +departmentNumber: 5853 +employeeType: Contract +homePhone: +1 415 578-1996 +initials: N. S. +mobile: +1 415 909-9374 +pager: +1 415 179-5572 +roomNumber: 8920 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacki Jorgensen +sn: Jorgensen +description: This is Jacki Jorgensen's description +facsimileTelephoneNumber: +1 206 813-5237 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 824-6051 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: JorgensJ +givenName: Jacki +mail: JorgensJ@9c687885040c4312b6d12f4acbe7233d.bitwarden.com +carLicense: S9J1XM +departmentNumber: 7160 +employeeType: Employee +homePhone: +1 206 262-4481 +initials: J. J. +mobile: +1 206 687-1838 +pager: +1 206 739-9975 +roomNumber: 8924 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shannen Jagatic,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shannen Jagatic +sn: Jagatic +description: This is Shannen Jagatic's description +facsimileTelephoneNumber: +1 213 159-7553 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 817-7053 +title: Supreme Payroll Admin +userPassword: Password1 +uid: JagaticS +givenName: Shannen +mail: JagaticS@5ffed17cc69d4719b003fa0cfe2777f7.bitwarden.com +carLicense: BITRYX +departmentNumber: 7724 +employeeType: Employee +homePhone: +1 213 352-4068 +initials: S. J. +mobile: +1 213 201-7886 +pager: +1 213 295-5442 +roomNumber: 9382 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vania Gibson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vania Gibson +sn: Gibson +description: This is Vania Gibson's description +facsimileTelephoneNumber: +1 206 925-7390 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 731-8535 +title: Master Product Testing Visionary +userPassword: Password1 +uid: GibsonV +givenName: Vania +mail: GibsonV@298910ba55544a1097f46cf86b2ab0db.bitwarden.com +carLicense: I30JDW +departmentNumber: 9045 +employeeType: Normal +homePhone: +1 206 470-3228 +initials: V. G. +mobile: +1 206 521-8493 +pager: +1 206 618-7872 +roomNumber: 8963 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Robyn Blann,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robyn Blann +sn: Blann +description: This is Robyn Blann's description +facsimileTelephoneNumber: +1 213 676-3963 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 389-1219 +title: Master Administrative Czar +userPassword: Password1 +uid: BlannR +givenName: Robyn +mail: BlannR@ae78ee526c5e44bdaf510c03b717277a.bitwarden.com +carLicense: HTRAC5 +departmentNumber: 8682 +employeeType: Contract +homePhone: +1 213 369-1091 +initials: R. B. +mobile: +1 213 936-1085 +pager: +1 213 470-1107 +roomNumber: 8332 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Krier Cruey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krier Cruey +sn: Cruey +description: This is Krier Cruey's description +facsimileTelephoneNumber: +1 804 186-4091 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 767-9631 +title: Junior Management Consultant +userPassword: Password1 +uid: CrueyK +givenName: Krier +mail: CrueyK@75ca8d39c50647a3bea983d4fa29d680.bitwarden.com +carLicense: IFOMK3 +departmentNumber: 7949 +employeeType: Contract +homePhone: +1 804 837-9250 +initials: K. C. +mobile: +1 804 775-8978 +pager: +1 804 694-5811 +roomNumber: 8637 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Barbette Christie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbette Christie +sn: Christie +description: This is Barbette Christie's description +facsimileTelephoneNumber: +1 213 193-9736 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 233-2103 +title: Chief Peons Fellow +userPassword: Password1 +uid: ChristiB +givenName: Barbette +mail: ChristiB@b9f44a907d41480f95c6eb062092de29.bitwarden.com +carLicense: 25DXV6 +departmentNumber: 2232 +employeeType: Employee +homePhone: +1 213 774-3843 +initials: B. C. +mobile: +1 213 864-2878 +pager: +1 213 374-8492 +roomNumber: 9129 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Feodora Koller,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Feodora Koller +sn: Koller +description: This is Feodora Koller's description +facsimileTelephoneNumber: +1 206 249-9627 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 693-9035 +title: Associate Management Warrior +userPassword: Password1 +uid: KollerF +givenName: Feodora +mail: KollerF@acaa4c14b76249a29cca4a0b1f0dd114.bitwarden.com +carLicense: GQ4S3I +departmentNumber: 9044 +employeeType: Employee +homePhone: +1 206 135-8268 +initials: F. K. +mobile: +1 206 439-7136 +pager: +1 206 465-8798 +roomNumber: 9872 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryJo Dugal +sn: Dugal +description: This is MaryJo Dugal's description +facsimileTelephoneNumber: +1 804 549-3860 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 149-8428 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: DugalM +givenName: MaryJo +mail: DugalM@fa04a0c4f0124714bcc971e2896a4551.bitwarden.com +carLicense: 2S02IL +departmentNumber: 8210 +employeeType: Contract +homePhone: +1 804 682-9689 +initials: M. D. +mobile: +1 804 345-7701 +pager: +1 804 599-4037 +roomNumber: 9979 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Saudra Ghaemian,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saudra Ghaemian +sn: Ghaemian +description: This is Saudra Ghaemian's description +facsimileTelephoneNumber: +1 510 773-7537 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 150-3714 +title: Associate Peons Architect +userPassword: Password1 +uid: GhaemiaS +givenName: Saudra +mail: GhaemiaS@054353f98ec44eceb8087bd103f37290.bitwarden.com +carLicense: 4FIRDO +departmentNumber: 4014 +employeeType: Normal +homePhone: +1 510 916-5135 +initials: S. G. +mobile: +1 510 658-1698 +pager: +1 510 909-6734 +roomNumber: 8769 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Son BeattieHillier +sn: BeattieHillier +description: This is Son BeattieHillier's description +facsimileTelephoneNumber: +1 415 717-3349 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 211-3195 +title: Chief Janitorial Janitor +userPassword: Password1 +uid: BeattieS +givenName: Son +mail: BeattieS@a8d818d625d941f8940e746ecca3cf6a.bitwarden.com +carLicense: 9WWXFA +departmentNumber: 9954 +employeeType: Contract +homePhone: +1 415 878-3702 +initials: S. B. +mobile: +1 415 908-6186 +pager: +1 415 164-5009 +roomNumber: 8923 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Valentine Newell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valentine Newell +sn: Newell +description: This is Valentine Newell's description +facsimileTelephoneNumber: +1 206 839-7200 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 825-2586 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: NewellV +givenName: Valentine +mail: NewellV@9db8fd67fa174b34ab0bd6d5a98f82c2.bitwarden.com +carLicense: 7RO2D2 +departmentNumber: 2308 +employeeType: Employee +homePhone: +1 206 431-4594 +initials: V. N. +mobile: +1 206 508-2353 +pager: +1 206 566-5800 +roomNumber: 9889 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Oriana McRae,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oriana McRae +sn: McRae +description: This is Oriana McRae's description +facsimileTelephoneNumber: +1 818 828-6617 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 818 759-3852 +title: Associate Product Testing Writer +userPassword: Password1 +uid: McRaeO +givenName: Oriana +mail: McRaeO@d5cf7f888ae34eefb2e00a540fba0b35.bitwarden.com +carLicense: VO6I8K +departmentNumber: 8991 +employeeType: Normal +homePhone: +1 818 259-1684 +initials: O. M. +mobile: +1 818 437-1021 +pager: +1 818 776-6988 +roomNumber: 9858 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndy Ledoux +sn: Ledoux +description: This is Lyndy Ledoux's description +facsimileTelephoneNumber: +1 408 965-1004 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 667-2195 +title: Junior Payroll Grunt +userPassword: Password1 +uid: LedouxL +givenName: Lyndy +mail: LedouxL@61d80a725e834417bf24b9714b15ac48.bitwarden.com +carLicense: Q377FG +departmentNumber: 1876 +employeeType: Employee +homePhone: +1 408 429-6747 +initials: L. L. +mobile: +1 408 700-9004 +pager: +1 408 507-4853 +roomNumber: 9415 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kizzee Halley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kizzee Halley +sn: Halley +description: This is Kizzee Halley's description +facsimileTelephoneNumber: +1 415 508-6417 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 666-6314 +title: Chief Product Development Architect +userPassword: Password1 +uid: HalleyK +givenName: Kizzee +mail: HalleyK@999c25847f9849ce9a6f746d005bddef.bitwarden.com +carLicense: 67ICLX +departmentNumber: 8197 +employeeType: Contract +homePhone: +1 415 346-1867 +initials: K. H. +mobile: +1 415 879-2871 +pager: +1 415 235-7195 +roomNumber: 9639 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bette Stellwag,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bette Stellwag +sn: Stellwag +description: This is Bette Stellwag's description +facsimileTelephoneNumber: +1 206 947-8440 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 206 509-9655 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: StellwaB +givenName: Bette +mail: StellwaB@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com +carLicense: I17WPA +departmentNumber: 7784 +employeeType: Normal +homePhone: +1 206 159-3175 +initials: B. S. +mobile: +1 206 163-6335 +pager: +1 206 648-6204 +roomNumber: 8952 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Henriette Peixoto,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henriette Peixoto +sn: Peixoto +description: This is Henriette Peixoto's description +facsimileTelephoneNumber: +1 415 431-3078 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 142-4828 +title: Master Administrative Punk +userPassword: Password1 +uid: PeixotoH +givenName: Henriette +mail: PeixotoH@8aed4579481d435c98b14fd5983c7417.bitwarden.com +carLicense: KBVWTR +departmentNumber: 4459 +employeeType: Contract +homePhone: +1 415 315-2846 +initials: H. P. +mobile: +1 415 313-4042 +pager: +1 415 722-4899 +roomNumber: 9339 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Matt Denmark,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matt Denmark +sn: Denmark +description: This is Matt Denmark's description +facsimileTelephoneNumber: +1 213 377-8395 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 706-5082 +title: Supreme Management Manager +userPassword: Password1 +uid: DenmarkM +givenName: Matt +mail: DenmarkM@dfaff98f73b34c5995272b067ac045a0.bitwarden.com +carLicense: LK14QE +departmentNumber: 8883 +employeeType: Contract +homePhone: +1 213 974-4360 +initials: M. D. +mobile: +1 213 177-4913 +pager: +1 213 248-1061 +roomNumber: 9828 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardath Verrenneau +sn: Verrenneau +description: This is Ardath Verrenneau's description +facsimileTelephoneNumber: +1 206 957-4975 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 409-9988 +title: Master Payroll Writer +userPassword: Password1 +uid: VerrennA +givenName: Ardath +mail: VerrennA@6d6628d9da624cadbb049fbfa6bdf2da.bitwarden.com +carLicense: O1PYI8 +departmentNumber: 9081 +employeeType: Contract +homePhone: +1 206 253-4053 +initials: A. V. +mobile: +1 206 991-3117 +pager: +1 206 698-9250 +roomNumber: 8165 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Feng Rowland,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Feng Rowland +sn: Rowland +description: This is Feng Rowland's description +facsimileTelephoneNumber: +1 510 199-5144 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 514-7295 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: RowlandF +givenName: Feng +mail: RowlandF@520f892e74614b6eaf9cfa5ff5ab84c6.bitwarden.com +carLicense: SCOPII +departmentNumber: 8876 +employeeType: Contract +homePhone: +1 510 371-3617 +initials: F. R. +mobile: +1 510 340-8409 +pager: +1 510 164-7933 +roomNumber: 8326 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Theresa Naguib,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theresa Naguib +sn: Naguib +description: This is Theresa Naguib's description +facsimileTelephoneNumber: +1 206 693-7425 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 541-1645 +title: Master Administrative Admin +userPassword: Password1 +uid: NaguibT +givenName: Theresa +mail: NaguibT@047f5532df204d5fa9cb51221c4d098a.bitwarden.com +carLicense: UP14CJ +departmentNumber: 1583 +employeeType: Employee +homePhone: +1 206 218-1572 +initials: T. N. +mobile: +1 206 619-4029 +pager: +1 206 192-8119 +roomNumber: 9598 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Eden Annibale,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eden Annibale +sn: Annibale +description: This is Eden Annibale's description +facsimileTelephoneNumber: +1 415 633-2888 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 945-6765 +title: Chief Peons President +userPassword: Password1 +uid: AnnibalE +givenName: Eden +mail: AnnibalE@b2685c20be7244a2b29f08c6434ac903.bitwarden.com +carLicense: 2TENF7 +departmentNumber: 9762 +employeeType: Employee +homePhone: +1 415 641-2814 +initials: E. A. +mobile: +1 415 436-2602 +pager: +1 415 911-6107 +roomNumber: 9157 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Buck PueGilchrist +sn: PueGilchrist +description: This is Buck PueGilchrist's description +facsimileTelephoneNumber: +1 415 767-2774 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 685-7167 +title: Associate Administrative Pinhead +userPassword: Password1 +uid: PueGilcB +givenName: Buck +mail: PueGilcB@f23aa8a9cb8a42ba9799719ef81fbcb7.bitwarden.com +carLicense: D5DWXP +departmentNumber: 2651 +employeeType: Contract +homePhone: +1 415 482-2418 +initials: B. P. +mobile: +1 415 140-3107 +pager: +1 415 181-1841 +roomNumber: 8510 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cele Toshach,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cele Toshach +sn: Toshach +description: This is Cele Toshach's description +facsimileTelephoneNumber: +1 818 861-5354 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 342-7216 +title: Chief Payroll Visionary +userPassword: Password1 +uid: ToshachC +givenName: Cele +mail: ToshachC@a44012f01e89409bb9b3f2e9702266f9.bitwarden.com +carLicense: 48DQVH +departmentNumber: 7799 +employeeType: Employee +homePhone: +1 818 879-8840 +initials: C. T. +mobile: +1 818 930-8503 +pager: +1 818 138-8758 +roomNumber: 9347 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Car Naro,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Car Naro +sn: Naro +description: This is Car Naro's description +facsimileTelephoneNumber: +1 206 702-6082 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 519-6861 +title: Associate Janitorial Czar +userPassword: Password1 +uid: NaroC +givenName: Car +mail: NaroC@a23e4ef8816f40919cd3b230902d58ca.bitwarden.com +carLicense: H7AFNL +departmentNumber: 9481 +employeeType: Normal +homePhone: +1 206 478-8488 +initials: C. N. +mobile: +1 206 330-7324 +pager: +1 206 922-2963 +roomNumber: 9226 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jocelyn Napert,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jocelyn Napert +sn: Napert +description: This is Jocelyn Napert's description +facsimileTelephoneNumber: +1 415 247-8844 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 328-7563 +title: Master Payroll Engineer +userPassword: Password1 +uid: NapertJ +givenName: Jocelyn +mail: NapertJ@dce637b43f194588ba44f478eabb0b1d.bitwarden.com +carLicense: RSQAHP +departmentNumber: 4672 +employeeType: Employee +homePhone: +1 415 588-1592 +initials: J. N. +mobile: +1 415 156-4665 +pager: +1 415 227-8566 +roomNumber: 9575 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cooney Dalrymple +sn: Dalrymple +description: This is Cooney Dalrymple's description +facsimileTelephoneNumber: +1 213 222-6271 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 738-2489 +title: Junior Product Testing President +userPassword: Password1 +uid: DalrympC +givenName: Cooney +mail: DalrympC@3f891cf88f8f4b9cb80e52276f5b9b1c.bitwarden.com +carLicense: DKHY3Y +departmentNumber: 6639 +employeeType: Normal +homePhone: +1 213 855-1883 +initials: C. D. +mobile: +1 213 760-6951 +pager: +1 213 815-7733 +roomNumber: 9141 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arlette Irani,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlette Irani +sn: Irani +description: This is Arlette Irani's description +facsimileTelephoneNumber: +1 510 381-2157 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 842-3943 +title: Chief Management Figurehead +userPassword: Password1 +uid: IraniA +givenName: Arlette +mail: IraniA@fa6f1422a9064a168045966e8899109e.bitwarden.com +carLicense: RLLHAR +departmentNumber: 1119 +employeeType: Employee +homePhone: +1 510 639-8760 +initials: A. I. +mobile: +1 510 446-1888 +pager: +1 510 858-4265 +roomNumber: 8099 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nath DeCristofaro +sn: DeCristofaro +description: This is Nath DeCristofaro's description +facsimileTelephoneNumber: +1 510 605-6572 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 187-5202 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: DeCristN +givenName: Nath +mail: DeCristN@ce05c4f2c87a4de7a2796014b61208f5.bitwarden.com +carLicense: MTYGH2 +departmentNumber: 4014 +employeeType: Contract +homePhone: +1 510 376-3272 +initials: N. D. +mobile: +1 510 707-8766 +pager: +1 510 959-8712 +roomNumber: 8337 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cynthya Jeffries +sn: Jeffries +description: This is Cynthya Jeffries's description +facsimileTelephoneNumber: +1 818 476-9292 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 870-7936 +title: Junior Product Testing Czar +userPassword: Password1 +uid: JeffrieC +givenName: Cynthya +mail: JeffrieC@d92ad7c360d346679da2cf1b78e9ba49.bitwarden.com +carLicense: 9UXD71 +departmentNumber: 9131 +employeeType: Normal +homePhone: +1 818 634-1693 +initials: C. J. +mobile: +1 818 774-4937 +pager: +1 818 488-1114 +roomNumber: 8736 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Basheer Berhane,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Basheer Berhane +sn: Berhane +description: This is Basheer Berhane's description +facsimileTelephoneNumber: +1 804 147-5266 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 545-3958 +title: Associate Payroll Figurehead +userPassword: Password1 +uid: BerhaneB +givenName: Basheer +mail: BerhaneB@cff83e5325124f689808e755392aa586.bitwarden.com +carLicense: 9W1W98 +departmentNumber: 4683 +employeeType: Employee +homePhone: +1 804 382-2837 +initials: B. B. +mobile: +1 804 345-3492 +pager: +1 804 461-4002 +roomNumber: 8792 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monah Sulatycki +sn: Sulatycki +description: This is Monah Sulatycki's description +facsimileTelephoneNumber: +1 213 225-2504 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 455-2154 +title: Supreme Janitorial Visionary +userPassword: Password1 +uid: SulatycM +givenName: Monah +mail: SulatycM@11006cb63c014ed78431f32c1edc2e50.bitwarden.com +carLicense: NGWT3P +departmentNumber: 2377 +employeeType: Normal +homePhone: +1 213 397-9117 +initials: M. S. +mobile: +1 213 610-6274 +pager: +1 213 180-2167 +roomNumber: 8134 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernadene Moraetes +sn: Moraetes +description: This is Bernadene Moraetes's description +facsimileTelephoneNumber: +1 408 958-9666 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 807-6158 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: MoraeteB +givenName: Bernadene +mail: MoraeteB@03c9972260df454c80f48cf3fc865b2e.bitwarden.com +carLicense: UJTLWX +departmentNumber: 8759 +employeeType: Contract +homePhone: +1 408 543-9373 +initials: B. M. +mobile: +1 408 666-2388 +pager: +1 408 887-9435 +roomNumber: 8823 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Betti Tilley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betti Tilley +sn: Tilley +description: This is Betti Tilley's description +facsimileTelephoneNumber: +1 510 250-8653 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 923-6746 +title: Master Janitorial Mascot +userPassword: Password1 +uid: TilleyB +givenName: Betti +mail: TilleyB@52e45fbd04374d8187c124fd4ea8990e.bitwarden.com +carLicense: EBLRUX +departmentNumber: 5341 +employeeType: Contract +homePhone: +1 510 180-7782 +initials: B. T. +mobile: +1 510 156-7330 +pager: +1 510 401-7685 +roomNumber: 8026 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ashu Drakage,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashu Drakage +sn: Drakage +description: This is Ashu Drakage's description +facsimileTelephoneNumber: +1 206 612-6040 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 367-8190 +title: Junior Peons Consultant +userPassword: Password1 +uid: DrakageA +givenName: Ashu +mail: DrakageA@29ddc254020a4d509a3e447f6b0e374a.bitwarden.com +carLicense: Q7RULC +departmentNumber: 5057 +employeeType: Normal +homePhone: +1 206 925-3519 +initials: A. D. +mobile: +1 206 954-6323 +pager: +1 206 156-9135 +roomNumber: 8474 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yetty Likert,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yetty Likert +sn: Likert +description: This is Yetty Likert's description +facsimileTelephoneNumber: +1 206 901-6468 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 206 973-3448 +title: Supreme Administrative Architect +userPassword: Password1 +uid: LikertY +givenName: Yetty +mail: LikertY@f576fe3e1f814a9ea745cbacb8aae078.bitwarden.com +carLicense: TCGUF0 +departmentNumber: 5954 +employeeType: Normal +homePhone: +1 206 948-2241 +initials: Y. L. +mobile: +1 206 897-3426 +pager: +1 206 758-4162 +roomNumber: 8488 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nady Bushnell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nady Bushnell +sn: Bushnell +description: This is Nady Bushnell's description +facsimileTelephoneNumber: +1 818 193-3737 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 358-9072 +title: Chief Product Testing Admin +userPassword: Password1 +uid: BushnelN +givenName: Nady +mail: BushnelN@4f0015ca79e24121bcec866af73ee713.bitwarden.com +carLicense: BQ2N5L +departmentNumber: 1326 +employeeType: Contract +homePhone: +1 818 557-3472 +initials: N. B. +mobile: +1 818 496-8258 +pager: +1 818 927-5787 +roomNumber: 9379 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Selle Verch,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selle Verch +sn: Verch +description: This is Selle Verch's description +facsimileTelephoneNumber: +1 213 461-6488 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 766-5472 +title: Junior Administrative Consultant +userPassword: Password1 +uid: VerchS +givenName: Selle +mail: VerchS@6b2e3d121ebe4eb0bcbc734c374a1042.bitwarden.com +carLicense: 6QOSR1 +departmentNumber: 3963 +employeeType: Employee +homePhone: +1 213 237-4837 +initials: S. V. +mobile: +1 213 789-7289 +pager: +1 213 628-4825 +roomNumber: 9552 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benedetta Toletzka +sn: Toletzka +description: This is Benedetta Toletzka's description +facsimileTelephoneNumber: +1 510 269-6054 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 147-8542 +title: Master Human Resources Director +userPassword: Password1 +uid: ToletzkB +givenName: Benedetta +mail: ToletzkB@a0e52fac0f494b0982a62c82b5201e22.bitwarden.com +carLicense: E5JHOC +departmentNumber: 6051 +employeeType: Employee +homePhone: +1 510 736-9596 +initials: B. T. +mobile: +1 510 575-3450 +pager: +1 510 955-1033 +roomNumber: 9693 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yukinaga Pascale +sn: Pascale +description: This is Yukinaga Pascale's description +facsimileTelephoneNumber: +1 213 182-4131 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 273-8137 +title: Junior Human Resources Writer +userPassword: Password1 +uid: PascaleY +givenName: Yukinaga +mail: PascaleY@f72cf2b3454841e499da566c9feae899.bitwarden.com +carLicense: C1DWDI +departmentNumber: 5338 +employeeType: Normal +homePhone: +1 213 479-1796 +initials: Y. P. +mobile: +1 213 317-4302 +pager: +1 213 413-1612 +roomNumber: 8471 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=YeeNing Sikes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YeeNing Sikes +sn: Sikes +description: This is YeeNing Sikes's description +facsimileTelephoneNumber: +1 408 797-9284 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 923-7673 +title: Associate Management Admin +userPassword: Password1 +uid: SikesY +givenName: YeeNing +mail: SikesY@3b9a242739aa4b0aa6818d262f7df54b.bitwarden.com +carLicense: OHA9W6 +departmentNumber: 1581 +employeeType: Normal +homePhone: +1 408 591-2365 +initials: Y. S. +mobile: +1 408 340-5245 +pager: +1 408 839-5139 +roomNumber: 9031 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bachittar Seamster,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bachittar Seamster +sn: Seamster +description: This is Bachittar Seamster's description +facsimileTelephoneNumber: +1 804 181-9437 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 804 798-7004 +title: Master Product Development Punk +userPassword: Password1 +uid: SeamsteB +givenName: Bachittar +mail: SeamsteB@dab392e4f9aa43b99ad711498543123e.bitwarden.com +carLicense: DS74FM +departmentNumber: 7973 +employeeType: Normal +homePhone: +1 804 314-5638 +initials: B. S. +mobile: +1 804 393-4230 +pager: +1 804 331-1084 +roomNumber: 9444 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elmer Gribbon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elmer Gribbon +sn: Gribbon +description: This is Elmer Gribbon's description +facsimileTelephoneNumber: +1 213 625-1673 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 504-8396 +title: Chief Management Consultant +userPassword: Password1 +uid: GribbonE +givenName: Elmer +mail: GribbonE@7101039e23634506b2da2b1c92ecb4cf.bitwarden.com +carLicense: A9K5L9 +departmentNumber: 1413 +employeeType: Employee +homePhone: +1 213 830-5140 +initials: E. G. +mobile: +1 213 659-4397 +pager: +1 213 501-6095 +roomNumber: 9779 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corliss Thuswaldner +sn: Thuswaldner +description: This is Corliss Thuswaldner's description +facsimileTelephoneNumber: +1 415 231-4744 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 415 607-4532 +title: Supreme Administrative Stooge +userPassword: Password1 +uid: ThuswalC +givenName: Corliss +mail: ThuswalC@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com +carLicense: 6QUPNQ +departmentNumber: 7831 +employeeType: Normal +homePhone: +1 415 940-1349 +initials: C. T. +mobile: +1 415 722-5309 +pager: +1 415 298-6587 +roomNumber: 8545 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nijen Beaulieu +sn: Beaulieu +description: This is Nijen Beaulieu's description +facsimileTelephoneNumber: +1 510 723-8308 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 868-5202 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: BeaulieN +givenName: Nijen +mail: BeaulieN@1749fb9f385d47ab94fc08c03ceb3689.bitwarden.com +carLicense: PQ0IVD +departmentNumber: 9799 +employeeType: Contract +homePhone: +1 510 506-2612 +initials: N. B. +mobile: +1 510 693-9570 +pager: +1 510 923-8981 +roomNumber: 9428 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwenora Andruzzi +sn: Andruzzi +description: This is Gwenora Andruzzi's description +facsimileTelephoneNumber: +1 206 364-4742 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 265-8697 +title: Supreme Administrative Writer +userPassword: Password1 +uid: AndruzzG +givenName: Gwenora +mail: AndruzzG@40544cfce21b453a8a348a622d569594.bitwarden.com +carLicense: H7I36D +departmentNumber: 1249 +employeeType: Employee +homePhone: +1 206 147-1554 +initials: G. A. +mobile: +1 206 427-5294 +pager: +1 206 526-8990 +roomNumber: 8722 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marlin Schrier,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlin Schrier +sn: Schrier +description: This is Marlin Schrier's description +facsimileTelephoneNumber: +1 206 344-5569 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 206 234-1613 +title: Master Payroll Stooge +userPassword: Password1 +uid: SchrierM +givenName: Marlin +mail: SchrierM@27b3ace1dd6948c9b5b4ab8ce5109020.bitwarden.com +carLicense: EPFASP +departmentNumber: 5926 +employeeType: Employee +homePhone: +1 206 114-7494 +initials: M. S. +mobile: +1 206 952-6187 +pager: +1 206 691-6078 +roomNumber: 8575 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bobb Bowcock,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobb Bowcock +sn: Bowcock +description: This is Bobb Bowcock's description +facsimileTelephoneNumber: +1 804 959-6349 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 380-9552 +title: Chief Management Figurehead +userPassword: Password1 +uid: BowcockB +givenName: Bobb +mail: BowcockB@640099050d1b4ffe96ecc4fd391c252e.bitwarden.com +carLicense: CYVPFL +departmentNumber: 6133 +employeeType: Contract +homePhone: +1 804 929-9648 +initials: B. B. +mobile: +1 804 899-4686 +pager: +1 804 862-3088 +roomNumber: 8439 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hermia Mendez,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermia Mendez +sn: Mendez +description: This is Hermia Mendez's description +facsimileTelephoneNumber: +1 804 521-4513 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 426-8762 +title: Junior Management Dictator +userPassword: Password1 +uid: MendezH +givenName: Hermia +mail: MendezH@275eb97478fb4994bc1f48d698b5aa05.bitwarden.com +carLicense: 1IJ0MT +departmentNumber: 6390 +employeeType: Normal +homePhone: +1 804 201-8760 +initials: H. M. +mobile: +1 804 451-5282 +pager: +1 804 573-6586 +roomNumber: 9548 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jackqueline Hoyt +sn: Hoyt +description: This is Jackqueline Hoyt's description +facsimileTelephoneNumber: +1 818 476-5667 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 818 147-6023 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: HoytJ +givenName: Jackqueline +mail: HoytJ@e13bfc0b89e445668bff1bfb45347a50.bitwarden.com +carLicense: W4CDLQ +departmentNumber: 5307 +employeeType: Contract +homePhone: +1 818 824-5935 +initials: J. H. +mobile: +1 818 103-9804 +pager: +1 818 237-9367 +roomNumber: 8651 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Thaddeus Hoehn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thaddeus Hoehn +sn: Hoehn +description: This is Thaddeus Hoehn's description +facsimileTelephoneNumber: +1 206 644-1662 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 895-5675 +title: Chief Management Sales Rep +userPassword: Password1 +uid: HoehnT +givenName: Thaddeus +mail: HoehnT@36fbb38d5bbe4aa29ae95e79bf727529.bitwarden.com +carLicense: UER0IK +departmentNumber: 8905 +employeeType: Normal +homePhone: +1 206 969-1192 +initials: T. H. +mobile: +1 206 112-2355 +pager: +1 206 908-4776 +roomNumber: 8558 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bawn Asfazadour,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bawn Asfazadour +sn: Asfazadour +description: This is Bawn Asfazadour's description +facsimileTelephoneNumber: +1 206 120-8044 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 307-5107 +title: Associate Management Manager +userPassword: Password1 +uid: AsfazadB +givenName: Bawn +mail: AsfazadB@6d93f84a8aef4b70975e9d9fd01027a1.bitwarden.com +carLicense: OEGGUF +departmentNumber: 6144 +employeeType: Contract +homePhone: +1 206 938-4317 +initials: B. A. +mobile: +1 206 499-3020 +pager: +1 206 423-2153 +roomNumber: 8913 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaquenette Ingersoll +sn: Ingersoll +description: This is Jaquenette Ingersoll's description +facsimileTelephoneNumber: +1 804 240-3415 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 152-8322 +title: Junior Janitorial Admin +userPassword: Password1 +uid: IngersoJ +givenName: Jaquenette +mail: IngersoJ@15ff23f989894575aad93f5e7d401d8c.bitwarden.com +carLicense: 123BXO +departmentNumber: 6031 +employeeType: Contract +homePhone: +1 804 314-3407 +initials: J. I. +mobile: +1 804 609-5415 +pager: +1 804 310-8699 +roomNumber: 8825 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Franky Foest,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franky Foest +sn: Foest +description: This is Franky Foest's description +facsimileTelephoneNumber: +1 510 636-6856 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 145-6180 +title: Master Administrative Visionary +userPassword: Password1 +uid: FoestF +givenName: Franky +mail: FoestF@57a6ba7501424a8abade55339f684e3b.bitwarden.com +carLicense: 2DFFRB +departmentNumber: 6516 +employeeType: Normal +homePhone: +1 510 763-5405 +initials: F. F. +mobile: +1 510 503-5422 +pager: +1 510 147-3134 +roomNumber: 9634 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Daphene Scheck,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphene Scheck +sn: Scheck +description: This is Daphene Scheck's description +facsimileTelephoneNumber: +1 206 870-7463 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 162-9900 +title: Master Janitorial Assistant +userPassword: Password1 +uid: ScheckD +givenName: Daphene +mail: ScheckD@973527d3929842be874997364fd01259.bitwarden.com +carLicense: H0R6TD +departmentNumber: 1304 +employeeType: Employee +homePhone: +1 206 634-6036 +initials: D. S. +mobile: +1 206 721-4641 +pager: +1 206 912-3329 +roomNumber: 9505 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Milicent Hoeler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milicent Hoeler +sn: Hoeler +description: This is Milicent Hoeler's description +facsimileTelephoneNumber: +1 510 888-8641 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 834-2824 +title: Associate Management Manager +userPassword: Password1 +uid: HoelerM +givenName: Milicent +mail: HoelerM@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com +carLicense: A7LHGI +departmentNumber: 9757 +employeeType: Normal +homePhone: +1 510 297-3023 +initials: M. H. +mobile: +1 510 271-5488 +pager: +1 510 224-8168 +roomNumber: 9216 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Luis Louis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luis Louis +sn: Louis +description: This is Luis Louis's description +facsimileTelephoneNumber: +1 415 168-3207 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 554-1293 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: LouisL +givenName: Luis +mail: LouisL@f23b5ffe63104ae0be308f3a9ff9e9f8.bitwarden.com +carLicense: 9NF7V0 +departmentNumber: 8953 +employeeType: Employee +homePhone: +1 415 684-1769 +initials: L. L. +mobile: +1 415 764-1600 +pager: +1 415 957-6951 +roomNumber: 8181 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Daveta SiuKwok,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daveta SiuKwok +sn: SiuKwok +description: This is Daveta SiuKwok's description +facsimileTelephoneNumber: +1 213 847-2988 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 432-5114 +title: Supreme Peons Grunt +userPassword: Password1 +uid: SiuKwokD +givenName: Daveta +mail: SiuKwokD@2f60f554d60143df8c782af78b69eca5.bitwarden.com +carLicense: DVMNTD +departmentNumber: 6191 +employeeType: Contract +homePhone: +1 213 171-6628 +initials: D. S. +mobile: +1 213 990-2295 +pager: +1 213 759-9294 +roomNumber: 8611 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Minni Daymond,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minni Daymond +sn: Daymond +description: This is Minni Daymond's description +facsimileTelephoneNumber: +1 804 307-9394 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 763-4898 +title: Junior Administrative Fellow +userPassword: Password1 +uid: DaymondM +givenName: Minni +mail: DaymondM@56b1727a87724d8d92953fb81fb48bde.bitwarden.com +carLicense: 8U9AAU +departmentNumber: 9520 +employeeType: Contract +homePhone: +1 804 185-5132 +initials: M. D. +mobile: +1 804 655-8132 +pager: +1 804 683-7044 +roomNumber: 8197 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Muriel Barakat,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Muriel Barakat +sn: Barakat +description: This is Muriel Barakat's description +facsimileTelephoneNumber: +1 206 217-3237 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 580-4608 +title: Junior Product Testing Mascot +userPassword: Password1 +uid: BarakatM +givenName: Muriel +mail: BarakatM@602d8f6d1a6449018081ad850b50b27b.bitwarden.com +carLicense: N903Q9 +departmentNumber: 1529 +employeeType: Employee +homePhone: +1 206 765-8760 +initials: M. B. +mobile: +1 206 529-2615 +pager: +1 206 559-2071 +roomNumber: 9841 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Thuan Szaran,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thuan Szaran +sn: Szaran +description: This is Thuan Szaran's description +facsimileTelephoneNumber: +1 818 958-3359 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 818 525-6798 +title: Chief Product Development Developer +userPassword: Password1 +uid: SzaranT +givenName: Thuan +mail: SzaranT@7ce4f6cd43f8492dae2090d4de3aa803.bitwarden.com +carLicense: U9DUAX +departmentNumber: 1010 +employeeType: Contract +homePhone: +1 818 311-7508 +initials: T. S. +mobile: +1 818 604-5825 +pager: +1 818 132-7387 +roomNumber: 8499 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mitchell Willette,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mitchell Willette +sn: Willette +description: This is Mitchell Willette's description +facsimileTelephoneNumber: +1 510 778-6738 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 239-4649 +title: Chief Janitorial Grunt +userPassword: Password1 +uid: WillettM +givenName: Mitchell +mail: WillettM@9f3819b9115a462187208879243957c9.bitwarden.com +carLicense: 3UEHLQ +departmentNumber: 6943 +employeeType: Contract +homePhone: +1 510 957-4498 +initials: M. W. +mobile: +1 510 571-9723 +pager: +1 510 817-6341 +roomNumber: 8544 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndia Sherrer +sn: Sherrer +description: This is Lyndia Sherrer's description +facsimileTelephoneNumber: +1 818 134-3961 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 304-7961 +title: Junior Janitorial Vice President +userPassword: Password1 +uid: SherrerL +givenName: Lyndia +mail: SherrerL@d8b58b77cc0a4df1b559d499a84b4151.bitwarden.com +carLicense: KTKW9V +departmentNumber: 4527 +employeeType: Contract +homePhone: +1 818 846-1383 +initials: L. S. +mobile: +1 818 907-8004 +pager: +1 818 475-4300 +roomNumber: 9683 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mohan Piper,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mohan Piper +sn: Piper +description: This is Mohan Piper's description +facsimileTelephoneNumber: +1 213 669-9866 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 866-8106 +title: Chief Product Testing Madonna +userPassword: Password1 +uid: PiperM +givenName: Mohan +mail: PiperM@c7fccfd1c09b42959a9d0aa1b9f02b2b.bitwarden.com +carLicense: MTUVTV +departmentNumber: 3382 +employeeType: Employee +homePhone: +1 213 184-2129 +initials: M. P. +mobile: +1 213 609-2963 +pager: +1 213 185-6718 +roomNumber: 9534 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carmelle Froud,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmelle Froud +sn: Froud +description: This is Carmelle Froud's description +facsimileTelephoneNumber: +1 804 735-3768 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 937-5986 +title: Master Administrative Admin +userPassword: Password1 +uid: FroudC +givenName: Carmelle +mail: FroudC@be4e574e5026401884f8759627863563.bitwarden.com +carLicense: 51VH6P +departmentNumber: 5901 +employeeType: Contract +homePhone: +1 804 562-4268 +initials: C. F. +mobile: +1 804 460-8910 +pager: +1 804 788-9580 +roomNumber: 9425 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Modesta Farr,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Modesta Farr +sn: Farr +description: This is Modesta Farr's description +facsimileTelephoneNumber: +1 206 294-3189 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 167-3467 +title: Master Product Testing Grunt +userPassword: Password1 +uid: FarrM +givenName: Modesta +mail: FarrM@0a6ccfe4eb2e49debe0647e11b1f99cc.bitwarden.com +carLicense: WA5SYP +departmentNumber: 8771 +employeeType: Employee +homePhone: +1 206 818-2625 +initials: M. F. +mobile: +1 206 530-5737 +pager: +1 206 293-6837 +roomNumber: 8187 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Liese Griffiths,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liese Griffiths +sn: Griffiths +description: This is Liese Griffiths's description +facsimileTelephoneNumber: +1 213 535-9200 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 566-2384 +title: Chief Management Artist +userPassword: Password1 +uid: GriffitL +givenName: Liese +mail: GriffitL@37ed0472c8f94c52a139aaa374db7e5f.bitwarden.com +carLicense: 12MO60 +departmentNumber: 6612 +employeeType: Contract +homePhone: +1 213 427-2551 +initials: L. G. +mobile: +1 213 870-2207 +pager: +1 213 866-2885 +roomNumber: 8862 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Meghan Carboni,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meghan Carboni +sn: Carboni +description: This is Meghan Carboni's description +facsimileTelephoneNumber: +1 408 208-2195 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 179-6105 +title: Master Product Development Technician +userPassword: Password1 +uid: CarboniM +givenName: Meghan +mail: CarboniM@a973beae67824ff38510168917193e58.bitwarden.com +carLicense: MBPJOP +departmentNumber: 7444 +employeeType: Normal +homePhone: +1 408 156-6838 +initials: M. C. +mobile: +1 408 951-1853 +pager: +1 408 239-9308 +roomNumber: 8453 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bryon Kluger,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryon Kluger +sn: Kluger +description: This is Bryon Kluger's description +facsimileTelephoneNumber: +1 510 363-7529 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 510 317-3318 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: KlugerB +givenName: Bryon +mail: KlugerB@085bf0384c944c1888b51dc3d32dbe90.bitwarden.com +carLicense: A7QMCT +departmentNumber: 1148 +employeeType: Employee +homePhone: +1 510 766-7658 +initials: B. K. +mobile: +1 510 354-8424 +pager: +1 510 126-5787 +roomNumber: 9618 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Petar Khatri,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petar Khatri +sn: Khatri +description: This is Petar Khatri's description +facsimileTelephoneNumber: +1 818 700-9034 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 486-4333 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: KhatriP +givenName: Petar +mail: KhatriP@8805d6cd448b4a24b0d06f88effec17a.bitwarden.com +carLicense: VEIAP1 +departmentNumber: 2648 +employeeType: Normal +homePhone: +1 818 615-5633 +initials: P. K. +mobile: +1 818 904-4130 +pager: +1 818 643-4693 +roomNumber: 9580 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Paige Poustchi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paige Poustchi +sn: Poustchi +description: This is Paige Poustchi's description +facsimileTelephoneNumber: +1 510 802-8793 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 500-9384 +title: Master Peons Artist +userPassword: Password1 +uid: PoustchP +givenName: Paige +mail: PoustchP@108d9f732ac3490887754db53858df8a.bitwarden.com +carLicense: OC5DFT +departmentNumber: 1860 +employeeType: Contract +homePhone: +1 510 438-2705 +initials: P. P. +mobile: +1 510 602-6690 +pager: +1 510 360-9222 +roomNumber: 9735 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jessa Dias,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessa Dias +sn: Dias +description: This is Jessa Dias's description +facsimileTelephoneNumber: +1 408 812-2698 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 128-1698 +title: Junior Payroll Developer +userPassword: Password1 +uid: DiasJ +givenName: Jessa +mail: DiasJ@8c8779840fce4d49b2efa3b601dc72f3.bitwarden.com +carLicense: MWVS6T +departmentNumber: 3167 +employeeType: Normal +homePhone: +1 408 921-3960 +initials: J. D. +mobile: +1 408 521-6909 +pager: +1 408 590-2060 +roomNumber: 9591 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zorah Purohit,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zorah Purohit +sn: Purohit +description: This is Zorah Purohit's description +facsimileTelephoneNumber: +1 213 793-2598 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 505-3250 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: PurohitZ +givenName: Zorah +mail: PurohitZ@5abf2b8f947a433ea32c981885ccae42.bitwarden.com +carLicense: 1IC618 +departmentNumber: 8832 +employeeType: Employee +homePhone: +1 213 492-1719 +initials: Z. P. +mobile: +1 213 921-3210 +pager: +1 213 222-7888 +roomNumber: 8218 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shoshanna Talevi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shoshanna Talevi +sn: Talevi +description: This is Shoshanna Talevi's description +facsimileTelephoneNumber: +1 415 498-6889 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 415 543-6184 +title: Associate Peons Engineer +userPassword: Password1 +uid: TaleviS +givenName: Shoshanna +mail: TaleviS@c81ed34bb34947a5895b38d18b584ea9.bitwarden.com +carLicense: CKG5EW +departmentNumber: 5387 +employeeType: Employee +homePhone: +1 415 961-2651 +initials: S. T. +mobile: +1 415 702-4018 +pager: +1 415 597-6438 +roomNumber: 8452 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Priore Hastings,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Priore Hastings +sn: Hastings +description: This is Priore Hastings's description +facsimileTelephoneNumber: +1 818 497-9353 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 255-3870 +title: Chief Administrative Stooge +userPassword: Password1 +uid: HastingP +givenName: Priore +mail: HastingP@a189ef9bea1d4aa0817496c23ee8a14a.bitwarden.com +carLicense: MIHFWB +departmentNumber: 3023 +employeeType: Normal +homePhone: +1 818 229-7164 +initials: P. H. +mobile: +1 818 553-1202 +pager: +1 818 591-7112 +roomNumber: 9552 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tulip Waytowich,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tulip Waytowich +sn: Waytowich +description: This is Tulip Waytowich's description +facsimileTelephoneNumber: +1 804 474-4660 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 937-9637 +title: Chief Administrative Punk +userPassword: Password1 +uid: WaytowiT +givenName: Tulip +mail: WaytowiT@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com +carLicense: 7TLBGV +departmentNumber: 5416 +employeeType: Normal +homePhone: +1 804 687-7165 +initials: T. W. +mobile: +1 804 818-4960 +pager: +1 804 974-1726 +roomNumber: 9792 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hirooki Skwarok,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hirooki Skwarok +sn: Skwarok +description: This is Hirooki Skwarok's description +facsimileTelephoneNumber: +1 415 244-8276 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 843-6347 +title: Master Peons Director +userPassword: Password1 +uid: SkwarokH +givenName: Hirooki +mail: SkwarokH@9d0c1ab997a64b1aa5f189a424192827.bitwarden.com +carLicense: OT9S4G +departmentNumber: 2870 +employeeType: Contract +homePhone: +1 415 440-6913 +initials: H. S. +mobile: +1 415 417-1209 +pager: +1 415 661-2513 +roomNumber: 9182 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Balaji Brogden,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Balaji Brogden +sn: Brogden +description: This is Balaji Brogden's description +facsimileTelephoneNumber: +1 804 658-1748 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 927-3689 +title: Chief Product Testing Czar +userPassword: Password1 +uid: BrogdenB +givenName: Balaji +mail: BrogdenB@eea80c8a097c479ea0dd92bdda8bd86a.bitwarden.com +carLicense: WIFFB6 +departmentNumber: 3283 +employeeType: Contract +homePhone: +1 804 268-3732 +initials: B. B. +mobile: +1 804 567-9739 +pager: +1 804 289-6492 +roomNumber: 8974 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Zola Cuddihey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zola Cuddihey +sn: Cuddihey +description: This is Zola Cuddihey's description +facsimileTelephoneNumber: +1 206 985-6431 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 945-1762 +title: Associate Payroll President +userPassword: Password1 +uid: CuddiheZ +givenName: Zola +mail: CuddiheZ@ed7e2f8d7425488d82f7ded229b79bb7.bitwarden.com +carLicense: EI51HT +departmentNumber: 9298 +employeeType: Normal +homePhone: +1 206 600-8908 +initials: Z. C. +mobile: +1 206 326-6538 +pager: +1 206 698-3047 +roomNumber: 8257 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=JeanDenis Intihar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanDenis Intihar +sn: Intihar +description: This is JeanDenis Intihar's description +facsimileTelephoneNumber: +1 804 679-9345 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 804 325-1254 +title: Supreme Management Developer +userPassword: Password1 +uid: IntiharJ +givenName: JeanDenis +mail: IntiharJ@e5815cb148a4476da087f6d68289008e.bitwarden.com +carLicense: 6ND15J +departmentNumber: 3679 +employeeType: Normal +homePhone: +1 804 844-2314 +initials: J. I. +mobile: +1 804 494-9734 +pager: +1 804 236-3620 +roomNumber: 8284 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rejean Marc,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rejean Marc +sn: Marc +description: This is Rejean Marc's description +facsimileTelephoneNumber: +1 408 805-2884 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 821-4259 +title: Associate Management Architect +userPassword: Password1 +uid: MarcR +givenName: Rejean +mail: MarcR@497dbd8e2321422c853f4b9c5d8bb34f.bitwarden.com +carLicense: 64LQ1V +departmentNumber: 6556 +employeeType: Normal +homePhone: +1 408 631-3010 +initials: R. M. +mobile: +1 408 160-8804 +pager: +1 408 836-4520 +roomNumber: 8599 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aly Mooney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aly Mooney +sn: Mooney +description: This is Aly Mooney's description +facsimileTelephoneNumber: +1 408 720-8697 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 400-6783 +title: Supreme Product Development President +userPassword: Password1 +uid: MooneyA +givenName: Aly +mail: MooneyA@d0494e96e3ad464e9c20a3d7c613cc77.bitwarden.com +carLicense: SHAXYD +departmentNumber: 8874 +employeeType: Employee +homePhone: +1 408 647-9269 +initials: A. M. +mobile: +1 408 882-2772 +pager: +1 408 515-8485 +roomNumber: 9537 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Daniele Mondor,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daniele Mondor +sn: Mondor +description: This is Daniele Mondor's description +facsimileTelephoneNumber: +1 408 674-7293 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 483-1964 +title: Associate Payroll Grunt +userPassword: Password1 +uid: MondorD +givenName: Daniele +mail: MondorD@49c91dea2e0244bc9e7e6873f695d864.bitwarden.com +carLicense: VOE5UJ +departmentNumber: 8027 +employeeType: Employee +homePhone: +1 408 506-5725 +initials: D. M. +mobile: +1 408 360-1647 +pager: +1 408 451-7010 +roomNumber: 8997 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bethanne Pietromonaco +sn: Pietromonaco +description: This is Bethanne Pietromonaco's description +facsimileTelephoneNumber: +1 510 940-9612 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 686-4450 +title: Master Peons Technician +userPassword: Password1 +uid: PietromB +givenName: Bethanne +mail: PietromB@305e27c7ee6b4670a05bbda0ab5d7f89.bitwarden.com +carLicense: AR9HKY +departmentNumber: 8447 +employeeType: Normal +homePhone: +1 510 484-8722 +initials: B. P. +mobile: +1 510 158-7756 +pager: +1 510 778-1312 +roomNumber: 8085 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Charman Feeley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charman Feeley +sn: Feeley +description: This is Charman Feeley's description +facsimileTelephoneNumber: +1 415 320-5359 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 223-1823 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: FeeleyC +givenName: Charman +mail: FeeleyC@f2fad2df78014e219f0dfac94c80d8ea.bitwarden.com +carLicense: 35EKRJ +departmentNumber: 3546 +employeeType: Normal +homePhone: +1 415 654-3589 +initials: C. F. +mobile: +1 415 745-2577 +pager: +1 415 988-3658 +roomNumber: 9536 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Auto Arwakhi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Auto Arwakhi +sn: Arwakhi +description: This is Auto Arwakhi's description +facsimileTelephoneNumber: +1 510 534-8856 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 844-4390 +title: Junior Peons Assistant +userPassword: Password1 +uid: ArwakhiA +givenName: Auto +mail: ArwakhiA@9a52b4299dba4fcc9447b288652d9c6c.bitwarden.com +carLicense: 9V42NK +departmentNumber: 1971 +employeeType: Contract +homePhone: +1 510 191-8794 +initials: A. A. +mobile: +1 510 114-6165 +pager: +1 510 827-4095 +roomNumber: 9623 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Paulette Lunn,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulette Lunn +sn: Lunn +description: This is Paulette Lunn's description +facsimileTelephoneNumber: +1 206 500-8539 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 995-2987 +title: Master Payroll Punk +userPassword: Password1 +uid: LunnP +givenName: Paulette +mail: LunnP@09621247c2534422b65027556ba23ec6.bitwarden.com +carLicense: XE5OWN +departmentNumber: 8985 +employeeType: Normal +homePhone: +1 206 102-6974 +initials: P. L. +mobile: +1 206 292-9186 +pager: +1 206 808-9508 +roomNumber: 8149 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saraann Lowrie +sn: Lowrie +description: This is Saraann Lowrie's description +facsimileTelephoneNumber: +1 408 311-3463 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 388-3367 +title: Chief Human Resources Stooge +userPassword: Password1 +uid: LowrieS +givenName: Saraann +mail: LowrieS@318df10c24464190a253b688eda7b7e6.bitwarden.com +carLicense: A4CYWD +departmentNumber: 1159 +employeeType: Contract +homePhone: +1 408 655-6012 +initials: S. L. +mobile: +1 408 467-4280 +pager: +1 408 366-8138 +roomNumber: 8726 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kellia Froud,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kellia Froud +sn: Froud +description: This is Kellia Froud's description +facsimileTelephoneNumber: +1 804 127-4487 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 766-3421 +title: Associate Management Figurehead +userPassword: Password1 +uid: FroudK +givenName: Kellia +mail: FroudK@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com +carLicense: N9IFXA +departmentNumber: 3585 +employeeType: Normal +homePhone: +1 804 763-1328 +initials: K. F. +mobile: +1 804 658-6754 +pager: +1 804 960-4707 +roomNumber: 9088 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vittorio Calis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vittorio Calis +sn: Calis +description: This is Vittorio Calis's description +facsimileTelephoneNumber: +1 818 564-2523 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 818 307-1935 +title: Junior Payroll Stooge +userPassword: Password1 +uid: CalisV +givenName: Vittorio +mail: CalisV@35c60780308849d18668cfb9d96a5c3c.bitwarden.com +carLicense: MAAGKN +departmentNumber: 8206 +employeeType: Employee +homePhone: +1 818 559-2201 +initials: V. C. +mobile: +1 818 324-5406 +pager: +1 818 872-2628 +roomNumber: 8139 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maryam Doan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryam Doan +sn: Doan +description: This is Maryam Doan's description +facsimileTelephoneNumber: +1 415 263-9856 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 332-5331 +title: Supreme Product Development Admin +userPassword: Password1 +uid: DoanM +givenName: Maryam +mail: DoanM@715d11b1e91d44f4af22ec63f72507bd.bitwarden.com +carLicense: KLE55V +departmentNumber: 5129 +employeeType: Normal +homePhone: +1 415 185-8348 +initials: M. D. +mobile: +1 415 670-5570 +pager: +1 415 970-1348 +roomNumber: 8598 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WaiChau Blaiklock +sn: Blaiklock +description: This is WaiChau Blaiklock's description +facsimileTelephoneNumber: +1 510 656-3966 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 510 225-7490 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: BlaikloW +givenName: WaiChau +mail: BlaikloW@6529706823d04eeaa37acaabefd44ca6.bitwarden.com +carLicense: LUCL91 +departmentNumber: 1161 +employeeType: Employee +homePhone: +1 510 612-5751 +initials: W. B. +mobile: +1 510 747-7731 +pager: +1 510 367-1560 +roomNumber: 9053 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nathalia Haerle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nathalia Haerle +sn: Haerle +description: This is Nathalia Haerle's description +facsimileTelephoneNumber: +1 206 308-9177 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 625-6506 +title: Master Management Stooge +userPassword: Password1 +uid: HaerleN +givenName: Nathalia +mail: HaerleN@96032122dc744c8fbec592d140680fed.bitwarden.com +carLicense: THASMH +departmentNumber: 7477 +employeeType: Contract +homePhone: +1 206 800-9134 +initials: N. H. +mobile: +1 206 920-9569 +pager: +1 206 296-7441 +roomNumber: 9398 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Krystn OHeocha,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krystn OHeocha +sn: OHeocha +description: This is Krystn OHeocha's description +facsimileTelephoneNumber: +1 804 748-6327 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 881-5706 +title: Chief Payroll Architect +userPassword: Password1 +uid: OHeochaK +givenName: Krystn +mail: OHeochaK@a3cde3b2f5de4fe5ac11c48bb6df28f3.bitwarden.com +carLicense: DKDDP2 +departmentNumber: 2309 +employeeType: Contract +homePhone: +1 804 463-2670 +initials: K. O. +mobile: +1 804 931-7963 +pager: +1 804 174-8769 +roomNumber: 8758 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandea Gaylor +sn: Gaylor +description: This is Brandea Gaylor's description +facsimileTelephoneNumber: +1 206 678-6357 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 814-8956 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: GaylorB +givenName: Brandea +mail: GaylorB@69527a1c41b04ddda793d00fb5a21087.bitwarden.com +carLicense: ROVLDN +departmentNumber: 4945 +employeeType: Employee +homePhone: +1 206 401-9721 +initials: B. G. +mobile: +1 206 520-6544 +pager: +1 206 738-8111 +roomNumber: 8685 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carena Chaplin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carena Chaplin +sn: Chaplin +description: This is Carena Chaplin's description +facsimileTelephoneNumber: +1 415 547-5931 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 313-4838 +title: Junior Product Development Vice President +userPassword: Password1 +uid: ChaplinC +givenName: Carena +mail: ChaplinC@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com +carLicense: HNXRR4 +departmentNumber: 4467 +employeeType: Contract +homePhone: +1 415 285-1691 +initials: C. C. +mobile: +1 415 339-6441 +pager: +1 415 843-4507 +roomNumber: 8022 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eden MacDonald,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eden MacDonald +sn: MacDonald +description: This is Eden MacDonald's description +facsimileTelephoneNumber: +1 206 799-7422 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 206 143-5477 +title: Junior Janitorial Architect +userPassword: Password1 +uid: MacDonaE +givenName: Eden +mail: MacDonaE@30c53c45b6f04d6394b59a72c6e53b2d.bitwarden.com +carLicense: CNLVBD +departmentNumber: 5366 +employeeType: Contract +homePhone: +1 206 774-4941 +initials: E. M. +mobile: +1 206 665-2600 +pager: +1 206 497-3772 +roomNumber: 9759 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jo Snuggs,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jo Snuggs +sn: Snuggs +description: This is Jo Snuggs's description +facsimileTelephoneNumber: +1 804 610-2012 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 381-6725 +title: Chief Janitorial Czar +userPassword: Password1 +uid: SnuggsJ +givenName: Jo +mail: SnuggsJ@811c1b0947ab4a6b8d3a5a6b67955a48.bitwarden.com +carLicense: H5QSCB +departmentNumber: 7980 +employeeType: Employee +homePhone: +1 804 419-9343 +initials: J. S. +mobile: +1 804 539-9476 +pager: +1 804 711-4052 +roomNumber: 8144 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hsinshi Sheth,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hsinshi Sheth +sn: Sheth +description: This is Hsinshi Sheth's description +facsimileTelephoneNumber: +1 510 178-7853 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 642-2840 +title: Master Peons Dictator +userPassword: Password1 +uid: ShethH +givenName: Hsinshi +mail: ShethH@8d06f5c0b94f46838a9f2ef1a0adee08.bitwarden.com +carLicense: 2WB3OG +departmentNumber: 7119 +employeeType: Employee +homePhone: +1 510 619-5015 +initials: H. S. +mobile: +1 510 767-5431 +pager: +1 510 582-7670 +roomNumber: 8244 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tata Whisler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tata Whisler +sn: Whisler +description: This is Tata Whisler's description +facsimileTelephoneNumber: +1 408 813-3863 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 751-2456 +title: Master Product Development Stooge +userPassword: Password1 +uid: WhislerT +givenName: Tata +mail: WhislerT@3905d18a9f18484ba7305c447e951282.bitwarden.com +carLicense: 14O29F +departmentNumber: 8392 +employeeType: Contract +homePhone: +1 408 767-5443 +initials: T. W. +mobile: +1 408 343-1246 +pager: +1 408 717-3498 +roomNumber: 8128 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Troy Hilton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Troy Hilton +sn: Hilton +description: This is Troy Hilton's description +facsimileTelephoneNumber: +1 206 703-6449 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 909-5821 +title: Supreme Payroll Assistant +userPassword: Password1 +uid: HiltonT +givenName: Troy +mail: HiltonT@4f6eaa02d34342bb804768db4a955608.bitwarden.com +carLicense: TOBR18 +departmentNumber: 7085 +employeeType: Employee +homePhone: +1 206 659-1029 +initials: T. H. +mobile: +1 206 231-5508 +pager: +1 206 274-3445 +roomNumber: 8052 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Binni Siewert,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binni Siewert +sn: Siewert +description: This is Binni Siewert's description +facsimileTelephoneNumber: +1 415 136-8385 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 156-3021 +title: Supreme Product Development Director +userPassword: Password1 +uid: SiewertB +givenName: Binni +mail: SiewertB@30477bd611094e598c75e08386158998.bitwarden.com +carLicense: 05EWUE +departmentNumber: 8746 +employeeType: Normal +homePhone: +1 415 976-5879 +initials: B. S. +mobile: +1 415 343-5239 +pager: +1 415 122-9305 +roomNumber: 8689 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alyse Wingo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alyse Wingo +sn: Wingo +description: This is Alyse Wingo's description +facsimileTelephoneNumber: +1 206 212-5665 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 545-5651 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: WingoA +givenName: Alyse +mail: WingoA@348abbda65d940ed90bea2bd06d4b311.bitwarden.com +carLicense: FND5XH +departmentNumber: 1646 +employeeType: Contract +homePhone: +1 206 287-3458 +initials: A. W. +mobile: +1 206 818-2159 +pager: +1 206 307-9346 +roomNumber: 9814 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ladan Chilausky,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ladan Chilausky +sn: Chilausky +description: This is Ladan Chilausky's description +facsimileTelephoneNumber: +1 804 133-6854 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 159-8600 +title: Master Product Development Vice President +userPassword: Password1 +uid: ChilausL +givenName: Ladan +mail: ChilausL@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com +carLicense: 4TMT6W +departmentNumber: 9387 +employeeType: Contract +homePhone: +1 804 674-1042 +initials: L. C. +mobile: +1 804 495-8302 +pager: +1 804 618-5428 +roomNumber: 8354 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gwenette Farago,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwenette Farago +sn: Farago +description: This is Gwenette Farago's description +facsimileTelephoneNumber: +1 415 978-5332 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 613-1495 +title: Master Management Czar +userPassword: Password1 +uid: FaragoG +givenName: Gwenette +mail: FaragoG@1d41a9185db448b89563a6b96b582da2.bitwarden.com +carLicense: PXWTGC +departmentNumber: 7108 +employeeType: Normal +homePhone: +1 415 646-6330 +initials: G. F. +mobile: +1 415 468-2184 +pager: +1 415 746-2226 +roomNumber: 9196 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Narinder Staffeld,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Narinder Staffeld +sn: Staffeld +description: This is Narinder Staffeld's description +facsimileTelephoneNumber: +1 510 759-6940 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 610-8054 +title: Junior Payroll Technician +userPassword: Password1 +uid: StaffelN +givenName: Narinder +mail: StaffelN@18b94ac27b2d4865a7f8d4b03ab48dbb.bitwarden.com +carLicense: XVAVWV +departmentNumber: 2787 +employeeType: Contract +homePhone: +1 510 984-4878 +initials: N. S. +mobile: +1 510 816-2684 +pager: +1 510 596-9948 +roomNumber: 8176 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nir Dionne,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nir Dionne +sn: Dionne +description: This is Nir Dionne's description +facsimileTelephoneNumber: +1 408 201-6580 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 825-1455 +title: Master Management Admin +userPassword: Password1 +uid: DionneN +givenName: Nir +mail: DionneN@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com +carLicense: QECKTG +departmentNumber: 5210 +employeeType: Employee +homePhone: +1 408 580-6361 +initials: N. D. +mobile: +1 408 390-7379 +pager: +1 408 789-9450 +roomNumber: 8460 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natalina Kapuscinski +sn: Kapuscinski +description: This is Natalina Kapuscinski's description +facsimileTelephoneNumber: +1 415 152-2366 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 123-6353 +title: Associate Payroll Dictator +userPassword: Password1 +uid: KapusciN +givenName: Natalina +mail: KapusciN@feab464eed244fca93a5368f188977a1.bitwarden.com +carLicense: J6STGG +departmentNumber: 6697 +employeeType: Employee +homePhone: +1 415 262-5054 +initials: N. K. +mobile: +1 415 118-5214 +pager: +1 415 116-3503 +roomNumber: 9401 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=LouisRene Ellens,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LouisRene Ellens +sn: Ellens +description: This is LouisRene Ellens's description +facsimileTelephoneNumber: +1 415 853-6021 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 596-5234 +title: Master Administrative Pinhead +userPassword: Password1 +uid: EllensL +givenName: LouisRene +mail: EllensL@9b030c1d6ce3438f956ad1da5fffc998.bitwarden.com +carLicense: N2UU6X +departmentNumber: 2796 +employeeType: Contract +homePhone: +1 415 392-5311 +initials: L. E. +mobile: +1 415 561-8172 +pager: +1 415 481-3642 +roomNumber: 9113 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cesya Delbrouck +sn: Delbrouck +description: This is Cesya Delbrouck's description +facsimileTelephoneNumber: +1 804 209-5296 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 181-2764 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: DelbrouC +givenName: Cesya +mail: DelbrouC@1aa75fefc8034a8cbf83e5fc6e04d8e3.bitwarden.com +carLicense: SLR1PE +departmentNumber: 9124 +employeeType: Employee +homePhone: +1 804 334-3832 +initials: C. D. +mobile: +1 804 171-8855 +pager: +1 804 405-8918 +roomNumber: 9287 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Oneida Sallee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oneida Sallee +sn: Sallee +description: This is Oneida Sallee's description +facsimileTelephoneNumber: +1 408 176-3298 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 142-8601 +title: Chief Product Development Manager +userPassword: Password1 +uid: SalleeO +givenName: Oneida +mail: SalleeO@252628d3a8a547b4b8173e8a6395d7c3.bitwarden.com +carLicense: BEF0JN +departmentNumber: 2027 +employeeType: Employee +homePhone: +1 408 174-4799 +initials: O. S. +mobile: +1 408 994-6222 +pager: +1 408 313-2889 +roomNumber: 8746 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Humphrey Redish,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Humphrey Redish +sn: Redish +description: This is Humphrey Redish's description +facsimileTelephoneNumber: +1 213 996-9211 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 220-6391 +title: Master Peons Sales Rep +userPassword: Password1 +uid: RedishH +givenName: Humphrey +mail: RedishH@a744dde5438d400a9f30fb0b1e05aeb2.bitwarden.com +carLicense: AR1OY5 +departmentNumber: 9805 +employeeType: Normal +homePhone: +1 213 871-1285 +initials: H. R. +mobile: +1 213 563-7847 +pager: +1 213 874-4892 +roomNumber: 9638 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kerry Labarge,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kerry Labarge +sn: Labarge +description: This is Kerry Labarge's description +facsimileTelephoneNumber: +1 415 221-4702 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 184-4573 +title: Chief Administrative Grunt +userPassword: Password1 +uid: LabargeK +givenName: Kerry +mail: LabargeK@96b5430a2ccc4177bd773424088b496b.bitwarden.com +carLicense: 9B4TD1 +departmentNumber: 6233 +employeeType: Contract +homePhone: +1 415 868-9828 +initials: K. L. +mobile: +1 415 774-7586 +pager: +1 415 697-3497 +roomNumber: 8145 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquenetta Dyna +sn: Dyna +description: This is Jacquenetta Dyna's description +facsimileTelephoneNumber: +1 804 555-9340 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 500-1888 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: DynaJ +givenName: Jacquenetta +mail: DynaJ@ee1ca998ef0c4e3c87539ff6e0c1d116.bitwarden.com +carLicense: V0CJO6 +departmentNumber: 4636 +employeeType: Normal +homePhone: +1 804 369-2953 +initials: J. D. +mobile: +1 804 876-8278 +pager: +1 804 199-8786 +roomNumber: 9838 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Quyen Aronstam,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quyen Aronstam +sn: Aronstam +description: This is Quyen Aronstam's description +facsimileTelephoneNumber: +1 213 653-6390 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 935-7469 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: AronstaQ +givenName: Quyen +mail: AronstaQ@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com +carLicense: DBKBH4 +departmentNumber: 6945 +employeeType: Normal +homePhone: +1 213 374-2706 +initials: Q. A. +mobile: +1 213 176-1916 +pager: +1 213 477-1215 +roomNumber: 9099 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=KaiMing Parker,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KaiMing Parker +sn: Parker +description: This is KaiMing Parker's description +facsimileTelephoneNumber: +1 804 329-8514 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 683-3691 +title: Master Administrative Consultant +userPassword: Password1 +uid: ParkerK +givenName: KaiMing +mail: ParkerK@c0e366bec54b485a8d61f1970ea7c375.bitwarden.com +carLicense: UMI2TQ +departmentNumber: 2987 +employeeType: Contract +homePhone: +1 804 919-4654 +initials: K. P. +mobile: +1 804 673-1987 +pager: +1 804 100-9341 +roomNumber: 8926 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shlomo Trottier +sn: Trottier +description: This is Shlomo Trottier's description +facsimileTelephoneNumber: +1 213 557-7728 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 831-1337 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: TrottieS +givenName: Shlomo +mail: TrottieS@0998558a764541358e8e70ab479cfe9c.bitwarden.com +carLicense: XVUH0Q +departmentNumber: 3730 +employeeType: Normal +homePhone: +1 213 764-8300 +initials: S. T. +mobile: +1 213 443-4299 +pager: +1 213 657-9572 +roomNumber: 8028 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Laure Norman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laure Norman +sn: Norman +description: This is Laure Norman's description +facsimileTelephoneNumber: +1 804 296-9331 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 929-5066 +title: Master Product Testing Grunt +userPassword: Password1 +uid: NormanL +givenName: Laure +mail: NormanL@018225420a5943d2a91cb3848fc99ee2.bitwarden.com +carLicense: UEEK4W +departmentNumber: 2958 +employeeType: Employee +homePhone: +1 804 991-2106 +initials: L. N. +mobile: +1 804 641-4503 +pager: +1 804 916-4088 +roomNumber: 8291 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fabienne Koprulu,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fabienne Koprulu +sn: Koprulu +description: This is Fabienne Koprulu's description +facsimileTelephoneNumber: +1 213 740-4551 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 213 777-1514 +title: Junior Peons Admin +userPassword: Password1 +uid: KopruluF +givenName: Fabienne +mail: KopruluF@9a3c3b333ac543bcbc3719d5e5f7e60a.bitwarden.com +carLicense: LVLNQC +departmentNumber: 3277 +employeeType: Normal +homePhone: +1 213 900-3951 +initials: F. K. +mobile: +1 213 641-4488 +pager: +1 213 283-9585 +roomNumber: 9441 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Prue Dipace,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prue Dipace +sn: Dipace +description: This is Prue Dipace's description +facsimileTelephoneNumber: +1 804 592-4487 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 406-5109 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: DipaceP +givenName: Prue +mail: DipaceP@b7704ef8877240b4aae9e468e0491f7f.bitwarden.com +carLicense: Y0SI4K +departmentNumber: 4080 +employeeType: Normal +homePhone: +1 804 562-5711 +initials: P. D. +mobile: +1 804 952-2111 +pager: +1 804 614-4567 +roomNumber: 9440 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Randolph Holtze,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randolph Holtze +sn: Holtze +description: This is Randolph Holtze's description +facsimileTelephoneNumber: +1 415 960-4406 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 599-9906 +title: Supreme Payroll Writer +userPassword: Password1 +uid: HoltzeR +givenName: Randolph +mail: HoltzeR@b2c5462eaeaa4640a2c56a8da0727115.bitwarden.com +carLicense: X2TQ9Y +departmentNumber: 1408 +employeeType: Employee +homePhone: +1 415 215-2674 +initials: R. H. +mobile: +1 415 569-3499 +pager: +1 415 691-1956 +roomNumber: 8475 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Julianna Amin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julianna Amin +sn: Amin +description: This is Julianna Amin's description +facsimileTelephoneNumber: +1 213 144-5156 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 847-9323 +title: Junior Payroll Technician +userPassword: Password1 +uid: AminJ +givenName: Julianna +mail: AminJ@e6477a83acf9482988792cb439447756.bitwarden.com +carLicense: KEWWTM +departmentNumber: 5260 +employeeType: Normal +homePhone: +1 213 187-4315 +initials: J. A. +mobile: +1 213 879-4912 +pager: +1 213 563-9402 +roomNumber: 8633 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Iris Berryhill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Iris Berryhill +sn: Berryhill +description: This is Iris Berryhill's description +facsimileTelephoneNumber: +1 510 234-6849 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 299-1793 +title: Junior Product Testing Admin +userPassword: Password1 +uid: BerryhiI +givenName: Iris +mail: BerryhiI@2e9a9ce249974ccc8921959c5ef73583.bitwarden.com +carLicense: 2DEUIG +departmentNumber: 5223 +employeeType: Contract +homePhone: +1 510 797-5018 +initials: I. B. +mobile: +1 510 394-2508 +pager: +1 510 577-3277 +roomNumber: 9596 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mahendra Michelussi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mahendra Michelussi +sn: Michelussi +description: This is Mahendra Michelussi's description +facsimileTelephoneNumber: +1 818 937-9000 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 812-1931 +title: Junior Management Admin +userPassword: Password1 +uid: MicheluM +givenName: Mahendra +mail: MicheluM@a09d9f82d6b74098a2eff99c6eae04fe.bitwarden.com +carLicense: GYPRXN +departmentNumber: 7070 +employeeType: Contract +homePhone: +1 818 246-8850 +initials: M. M. +mobile: +1 818 444-2686 +pager: +1 818 856-3398 +roomNumber: 8961 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Melesa Beagley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melesa Beagley +sn: Beagley +description: This is Melesa Beagley's description +facsimileTelephoneNumber: +1 206 765-7493 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 146-2854 +title: Supreme Human Resources Artist +userPassword: Password1 +uid: BeagleyM +givenName: Melesa +mail: BeagleyM@522cf8a1d4424cc392ce0a8035040445.bitwarden.com +carLicense: 2MXWMN +departmentNumber: 5980 +employeeType: Employee +homePhone: +1 206 191-2984 +initials: M. B. +mobile: +1 206 897-4702 +pager: +1 206 963-9121 +roomNumber: 8002 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shayna Godcharles +sn: Godcharles +description: This is Shayna Godcharles's description +facsimileTelephoneNumber: +1 818 589-7198 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 899-7915 +title: Master Human Resources Vice President +userPassword: Password1 +uid: GodcharS +givenName: Shayna +mail: GodcharS@325563a273824a869e09481a2b6a16f3.bitwarden.com +carLicense: 4JUDNV +departmentNumber: 9345 +employeeType: Employee +homePhone: +1 818 663-2680 +initials: S. G. +mobile: +1 818 746-8213 +pager: +1 818 495-9624 +roomNumber: 9902 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Khue Medeiros,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khue Medeiros +sn: Medeiros +description: This is Khue Medeiros's description +facsimileTelephoneNumber: +1 415 550-4855 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 415 575-2811 +title: Master Payroll Dictator +userPassword: Password1 +uid: MedeiroK +givenName: Khue +mail: MedeiroK@7dfa0e40dad7443abc6740798a2e0865.bitwarden.com +carLicense: BAK6J7 +departmentNumber: 1278 +employeeType: Employee +homePhone: +1 415 506-9792 +initials: K. M. +mobile: +1 415 394-8625 +pager: +1 415 312-6569 +roomNumber: 8999 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Evangeline Vance,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evangeline Vance +sn: Vance +description: This is Evangeline Vance's description +facsimileTelephoneNumber: +1 213 408-2594 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 760-4490 +title: Junior Product Development Developer +userPassword: Password1 +uid: VanceE +givenName: Evangeline +mail: VanceE@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com +carLicense: L0WYB4 +departmentNumber: 8568 +employeeType: Contract +homePhone: +1 213 407-1698 +initials: E. V. +mobile: +1 213 900-8226 +pager: +1 213 288-1672 +roomNumber: 9870 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chrystel Auerbach +sn: Auerbach +description: This is Chrystel Auerbach's description +facsimileTelephoneNumber: +1 818 727-1390 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 386-1589 +title: Junior Human Resources Evangelist +userPassword: Password1 +uid: AuerbacC +givenName: Chrystel +mail: AuerbacC@89e33259b1f341dda582db87064be4b8.bitwarden.com +carLicense: HSOUUD +departmentNumber: 9774 +employeeType: Employee +homePhone: +1 818 392-1762 +initials: C. A. +mobile: +1 818 471-3090 +pager: +1 818 216-3799 +roomNumber: 9422 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Czes Corkey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Czes Corkey +sn: Corkey +description: This is Czes Corkey's description +facsimileTelephoneNumber: +1 408 344-6360 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 136-8894 +title: Master Human Resources Technician +userPassword: Password1 +uid: CorkeyC +givenName: Czes +mail: CorkeyC@fca42d05acbe47a69668ab85d76a4968.bitwarden.com +carLicense: MYJ8Y5 +departmentNumber: 8389 +employeeType: Employee +homePhone: +1 408 445-5576 +initials: C. C. +mobile: +1 408 781-8358 +pager: +1 408 775-7319 +roomNumber: 8751 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Malena Cronan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malena Cronan +sn: Cronan +description: This is Malena Cronan's description +facsimileTelephoneNumber: +1 408 357-4859 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 408 674-1489 +title: Associate Administrative Grunt +userPassword: Password1 +uid: CronanM +givenName: Malena +mail: CronanM@1c6f0f2a2fa54440bc63852786ac9fdb.bitwarden.com +carLicense: DX4KK9 +departmentNumber: 3042 +employeeType: Employee +homePhone: +1 408 499-7914 +initials: M. C. +mobile: +1 408 686-7058 +pager: +1 408 125-5707 +roomNumber: 8191 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maia Lamy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maia Lamy +sn: Lamy +description: This is Maia Lamy's description +facsimileTelephoneNumber: +1 415 685-3228 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 786-4097 +title: Master Payroll Stooge +userPassword: Password1 +uid: LamyM +givenName: Maia +mail: LamyM@e1b27383fbe2441a83c6100b48427182.bitwarden.com +carLicense: 6OB80Q +departmentNumber: 6119 +employeeType: Contract +homePhone: +1 415 254-9579 +initials: M. L. +mobile: +1 415 183-7007 +pager: +1 415 716-2701 +roomNumber: 8705 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gates Frape,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gates Frape +sn: Frape +description: This is Gates Frape's description +facsimileTelephoneNumber: +1 206 666-3370 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 405-3979 +title: Supreme Product Development Artist +userPassword: Password1 +uid: FrapeG +givenName: Gates +mail: FrapeG@c927612f4cbe4fcf841a3d7e140a391c.bitwarden.com +carLicense: YVVJNO +departmentNumber: 3539 +employeeType: Employee +homePhone: +1 206 393-9683 +initials: G. F. +mobile: +1 206 589-1037 +pager: +1 206 739-1686 +roomNumber: 8016 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Berangere Budihardjo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berangere Budihardjo +sn: Budihardjo +description: This is Berangere Budihardjo's description +facsimileTelephoneNumber: +1 415 303-4938 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 840-6539 +title: Master Management Visionary +userPassword: Password1 +uid: BudiharB +givenName: Berangere +mail: BudiharB@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com +carLicense: A6O8TS +departmentNumber: 4457 +employeeType: Employee +homePhone: +1 415 513-2503 +initials: B. B. +mobile: +1 415 883-8131 +pager: +1 415 528-5916 +roomNumber: 8295 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sheryl Hekel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheryl Hekel +sn: Hekel +description: This is Sheryl Hekel's description +facsimileTelephoneNumber: +1 415 351-3923 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 765-1505 +title: Master Peons Dictator +userPassword: Password1 +uid: HekelS +givenName: Sheryl +mail: HekelS@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com +carLicense: POG3LT +departmentNumber: 7563 +employeeType: Contract +homePhone: +1 415 980-6167 +initials: S. H. +mobile: +1 415 440-4389 +pager: +1 415 852-7214 +roomNumber: 8509 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wargnier Melnyk +sn: Melnyk +description: This is Wargnier Melnyk's description +facsimileTelephoneNumber: +1 415 271-4107 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 566-6436 +title: Supreme Product Development Visionary +userPassword: Password1 +uid: MelnykW +givenName: Wargnier +mail: MelnykW@35074399d1224376ace4f7f6b3944707.bitwarden.com +carLicense: VQPOYA +departmentNumber: 3205 +employeeType: Employee +homePhone: +1 415 934-4596 +initials: W. M. +mobile: +1 415 512-2384 +pager: +1 415 319-9600 +roomNumber: 9103 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Masamichi Lanoue +sn: Lanoue +description: This is Masamichi Lanoue's description +facsimileTelephoneNumber: +1 818 268-8325 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 800-1431 +title: Associate Product Development Mascot +userPassword: Password1 +uid: LanoueM +givenName: Masamichi +mail: LanoueM@4dcaaea580ca474bb2f3cd6f13c671c4.bitwarden.com +carLicense: LWVROL +departmentNumber: 4826 +employeeType: Contract +homePhone: +1 818 130-3216 +initials: M. L. +mobile: +1 818 550-3412 +pager: +1 818 426-8868 +roomNumber: 9154 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kaycee Wu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaycee Wu +sn: Wu +description: This is Kaycee Wu's description +facsimileTelephoneNumber: +1 408 289-9082 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 408 855-5067 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: WuK +givenName: Kaycee +mail: WuK@c36b5ab628a4492284d8bcf464596410.bitwarden.com +carLicense: DQNWQJ +departmentNumber: 8282 +employeeType: Normal +homePhone: +1 408 953-3715 +initials: K. W. +mobile: +1 408 678-3354 +pager: +1 408 954-6174 +roomNumber: 8857 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Herbie Njo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herbie Njo +sn: Njo +description: This is Herbie Njo's description +facsimileTelephoneNumber: +1 510 967-4021 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 634-9241 +title: Master Payroll President +userPassword: Password1 +uid: NjoH +givenName: Herbie +mail: NjoH@0534f193dc3e49e39af35f74a2ae824e.bitwarden.com +carLicense: 8MVF5A +departmentNumber: 8766 +employeeType: Employee +homePhone: +1 510 409-2653 +initials: H. N. +mobile: +1 510 148-3371 +pager: +1 510 305-7530 +roomNumber: 9270 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Devan McCorkell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devan McCorkell +sn: McCorkell +description: This is Devan McCorkell's description +facsimileTelephoneNumber: +1 206 485-8546 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 353-9015 +title: Supreme Management Admin +userPassword: Password1 +uid: McCorkeD +givenName: Devan +mail: McCorkeD@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com +carLicense: DOMKBU +departmentNumber: 8487 +employeeType: Normal +homePhone: +1 206 974-1108 +initials: D. M. +mobile: +1 206 445-3565 +pager: +1 206 712-3503 +roomNumber: 8979 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Crin Landon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crin Landon +sn: Landon +description: This is Crin Landon's description +facsimileTelephoneNumber: +1 213 968-4723 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 213 264-9580 +title: Junior Payroll Manager +userPassword: Password1 +uid: LandonC +givenName: Crin +mail: LandonC@3a57e18936584b66bbd6dab5016a2418.bitwarden.com +carLicense: GCGR7G +departmentNumber: 3835 +employeeType: Contract +homePhone: +1 213 480-2292 +initials: C. L. +mobile: +1 213 232-7086 +pager: +1 213 786-4158 +roomNumber: 9818 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wrennie Dinkel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wrennie Dinkel +sn: Dinkel +description: This is Wrennie Dinkel's description +facsimileTelephoneNumber: +1 408 531-2214 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 223-7556 +title: Master Peons Consultant +userPassword: Password1 +uid: DinkelW +givenName: Wrennie +mail: DinkelW@a1c56eec6729476b83e51d12766bbfe0.bitwarden.com +carLicense: PH60SJ +departmentNumber: 1245 +employeeType: Contract +homePhone: +1 408 443-8759 +initials: W. D. +mobile: +1 408 835-2937 +pager: +1 408 838-4653 +roomNumber: 8216 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Siana Duffney,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siana Duffney +sn: Duffney +description: This is Siana Duffney's description +facsimileTelephoneNumber: +1 510 815-2779 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 241-8054 +title: Master Management Manager +userPassword: Password1 +uid: DuffneyS +givenName: Siana +mail: DuffneyS@831a31deb2a74949a5486f724fd8cfc2.bitwarden.com +carLicense: LE4KAS +departmentNumber: 6783 +employeeType: Contract +homePhone: +1 510 785-7606 +initials: S. D. +mobile: +1 510 294-8539 +pager: +1 510 192-7763 +roomNumber: 9956 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Holst IC,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Holst IC +sn: IC +description: This is Holst IC's description +facsimileTelephoneNumber: +1 804 686-3954 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 577-8876 +title: Junior Product Testing Evangelist +userPassword: Password1 +uid: ICH +givenName: Holst +mail: ICH@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com +carLicense: MQTE1Q +departmentNumber: 5953 +employeeType: Normal +homePhone: +1 804 178-8670 +initials: H. I. +mobile: +1 804 711-1348 +pager: +1 804 127-9645 +roomNumber: 8705 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=SikYin Matney,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SikYin Matney +sn: Matney +description: This is SikYin Matney's description +facsimileTelephoneNumber: +1 804 163-2344 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 559-1555 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: MatneyS +givenName: SikYin +mail: MatneyS@b9e4a0690cd34f8480fc7a1a23da2269.bitwarden.com +carLicense: 9DHDSL +departmentNumber: 5102 +employeeType: Employee +homePhone: +1 804 904-2960 +initials: S. M. +mobile: +1 804 340-5093 +pager: +1 804 279-7855 +roomNumber: 8976 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Masahiro Lauten,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Masahiro Lauten +sn: Lauten +description: This is Masahiro Lauten's description +facsimileTelephoneNumber: +1 206 570-1484 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 189-4439 +title: Associate Peons Mascot +userPassword: Password1 +uid: LautenM +givenName: Masahiro +mail: LautenM@79543dffda8c496eb838ccbc46809c40.bitwarden.com +carLicense: 9J3CP6 +departmentNumber: 3070 +employeeType: Normal +homePhone: +1 206 232-7182 +initials: M. L. +mobile: +1 206 154-6847 +pager: +1 206 472-2351 +roomNumber: 8956 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nash Hesk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nash Hesk +sn: Hesk +description: This is Nash Hesk's description +facsimileTelephoneNumber: +1 408 178-5119 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 780-6079 +title: Master Janitorial Writer +userPassword: Password1 +uid: HeskN +givenName: Nash +mail: HeskN@d350f564497d40f297b86fde9fbf3e8e.bitwarden.com +carLicense: 7KJMC6 +departmentNumber: 1313 +employeeType: Employee +homePhone: +1 408 119-3168 +initials: N. H. +mobile: +1 408 822-1889 +pager: +1 408 940-2540 +roomNumber: 8956 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pier Kimma,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pier Kimma +sn: Kimma +description: This is Pier Kimma's description +facsimileTelephoneNumber: +1 510 929-8908 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 510 693-3652 +title: Master Product Testing Evangelist +userPassword: Password1 +uid: KimmaP +givenName: Pier +mail: KimmaP@df43705c6bc34c44a92745bc3d700137.bitwarden.com +carLicense: V60W6N +departmentNumber: 2761 +employeeType: Employee +homePhone: +1 510 333-1439 +initials: P. K. +mobile: +1 510 381-5204 +pager: +1 510 546-3196 +roomNumber: 9220 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lenee Gryder,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenee Gryder +sn: Gryder +description: This is Lenee Gryder's description +facsimileTelephoneNumber: +1 408 928-5019 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 407-2407 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: GryderL +givenName: Lenee +mail: GryderL@b6dc43d5b48948bcabf31d42dd4a3286.bitwarden.com +carLicense: W5U2HG +departmentNumber: 6351 +employeeType: Employee +homePhone: +1 408 510-6311 +initials: L. G. +mobile: +1 408 755-8038 +pager: +1 408 943-1921 +roomNumber: 8049 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Loesje Javor,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loesje Javor +sn: Javor +description: This is Loesje Javor's description +facsimileTelephoneNumber: +1 206 430-7484 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 763-8534 +title: Associate Product Testing Czar +userPassword: Password1 +uid: JavorL +givenName: Loesje +mail: JavorL@506df50552454f5fafc356a1c35c2a63.bitwarden.com +carLicense: 2U0HGE +departmentNumber: 4743 +employeeType: Normal +homePhone: +1 206 305-7603 +initials: L. J. +mobile: +1 206 649-2859 +pager: +1 206 113-4921 +roomNumber: 8529 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sallie Lehman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sallie Lehman +sn: Lehman +description: This is Sallie Lehman's description +facsimileTelephoneNumber: +1 415 198-4032 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 685-5687 +title: Master Management Fellow +userPassword: Password1 +uid: LehmanS +givenName: Sallie +mail: LehmanS@b7c75c00628342f998e34089fb1fbe29.bitwarden.com +carLicense: NBLRML +departmentNumber: 5785 +employeeType: Contract +homePhone: +1 415 700-7743 +initials: S. L. +mobile: +1 415 846-5870 +pager: +1 415 327-4567 +roomNumber: 9544 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yvette Yun,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yvette Yun +sn: Yun +description: This is Yvette Yun's description +facsimileTelephoneNumber: +1 804 732-4212 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 804 776-7230 +title: Master Human Resources Punk +userPassword: Password1 +uid: YunY +givenName: Yvette +mail: YunY@bea3df99128348b58312efa7b662b9b3.bitwarden.com +carLicense: 4PUIPH +departmentNumber: 4656 +employeeType: Normal +homePhone: +1 804 269-1967 +initials: Y. Y. +mobile: +1 804 608-6089 +pager: +1 804 884-9160 +roomNumber: 8819 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rui Hawi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rui Hawi +sn: Hawi +description: This is Rui Hawi's description +facsimileTelephoneNumber: +1 213 969-8732 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 700-7206 +title: Chief Janitorial Visionary +userPassword: Password1 +uid: HawiR +givenName: Rui +mail: HawiR@3cd7d03398eb49148242d22a819d71a2.bitwarden.com +carLicense: VGSKMQ +departmentNumber: 1585 +employeeType: Contract +homePhone: +1 213 862-4224 +initials: R. H. +mobile: +1 213 275-4199 +pager: +1 213 398-6150 +roomNumber: 9720 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertruda Bredfeldt +sn: Bredfeldt +description: This is Gertruda Bredfeldt's description +facsimileTelephoneNumber: +1 804 740-1032 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 216-2715 +title: Master Product Testing Technician +userPassword: Password1 +uid: BredfelG +givenName: Gertruda +mail: BredfelG@3bd7ee942f7249be99148fd37660d7db.bitwarden.com +carLicense: D9SJAU +departmentNumber: 9720 +employeeType: Normal +homePhone: +1 804 617-7736 +initials: G. B. +mobile: +1 804 138-8031 +pager: +1 804 129-7584 +roomNumber: 9672 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eyde Hiscott +sn: Hiscott +description: This is Eyde Hiscott's description +facsimileTelephoneNumber: +1 408 715-9733 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 868-5317 +title: Master Human Resources Vice President +userPassword: Password1 +uid: HiscottE +givenName: Eyde +mail: HiscottE@5fa2601aad7947d29e66e0d319cf4fe6.bitwarden.com +carLicense: JEN9VV +departmentNumber: 6926 +employeeType: Normal +homePhone: +1 408 380-1385 +initials: E. H. +mobile: +1 408 737-4098 +pager: +1 408 925-8718 +roomNumber: 8991 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Costas Pracht,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Costas Pracht +sn: Pracht +description: This is Costas Pracht's description +facsimileTelephoneNumber: +1 510 394-9293 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 125-5006 +title: Chief Management Admin +userPassword: Password1 +uid: PrachtC +givenName: Costas +mail: PrachtC@a568169c30834110907d40bc84b45600.bitwarden.com +carLicense: Q8X005 +departmentNumber: 5238 +employeeType: Normal +homePhone: +1 510 353-7943 +initials: C. P. +mobile: +1 510 196-2850 +pager: +1 510 534-6257 +roomNumber: 8538 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rec Mazarick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rec Mazarick +sn: Mazarick +description: This is Rec Mazarick's description +facsimileTelephoneNumber: +1 206 739-2547 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 187-7408 +title: Master Product Testing Admin +userPassword: Password1 +uid: MazaricR +givenName: Rec +mail: MazaricR@729666359ed04f0995bf97703c170436.bitwarden.com +carLicense: HD7C2D +departmentNumber: 3737 +employeeType: Employee +homePhone: +1 206 970-1132 +initials: R. M. +mobile: +1 206 566-3180 +pager: +1 206 793-1437 +roomNumber: 9565 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Del Ambler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Del Ambler +sn: Ambler +description: This is Del Ambler's description +facsimileTelephoneNumber: +1 206 973-2536 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 247-7800 +title: Master Product Development Figurehead +userPassword: Password1 +uid: AmblerD +givenName: Del +mail: AmblerD@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com +carLicense: Q4RMHG +departmentNumber: 7129 +employeeType: Contract +homePhone: +1 206 902-2505 +initials: D. A. +mobile: +1 206 372-3974 +pager: +1 206 855-3588 +roomNumber: 8230 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chandal Lischynsky +sn: Lischynsky +description: This is Chandal Lischynsky's description +facsimileTelephoneNumber: +1 818 196-3663 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 602-7548 +title: Chief Janitorial Developer +userPassword: Password1 +uid: LischynC +givenName: Chandal +mail: LischynC@d7d5276b76fc44cfaa24d383211b91ce.bitwarden.com +carLicense: XB7WQY +departmentNumber: 6192 +employeeType: Employee +homePhone: +1 818 773-7842 +initials: C. L. +mobile: +1 818 188-9775 +pager: +1 818 372-3937 +roomNumber: 9080 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tessi Denebeim,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tessi Denebeim +sn: Denebeim +description: This is Tessi Denebeim's description +facsimileTelephoneNumber: +1 804 946-3324 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 389-5836 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: DenebeiT +givenName: Tessi +mail: DenebeiT@f04d099937f74fc993f7a60158339d87.bitwarden.com +carLicense: TICKPW +departmentNumber: 3745 +employeeType: Normal +homePhone: +1 804 983-8009 +initials: T. D. +mobile: +1 804 514-3349 +pager: +1 804 220-2800 +roomNumber: 9509 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pru Digiacomo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pru Digiacomo +sn: Digiacomo +description: This is Pru Digiacomo's description +facsimileTelephoneNumber: +1 510 916-4226 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 755-3506 +title: Associate Peons Evangelist +userPassword: Password1 +uid: DigiacoP +givenName: Pru +mail: DigiacoP@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com +carLicense: PY11XG +departmentNumber: 1080 +employeeType: Employee +homePhone: +1 510 725-7400 +initials: P. D. +mobile: +1 510 625-7779 +pager: +1 510 836-5282 +roomNumber: 8626 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Annabell Fung,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annabell Fung +sn: Fung +description: This is Annabell Fung's description +facsimileTelephoneNumber: +1 415 694-5023 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 825-6821 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: FungA +givenName: Annabell +mail: FungA@7cfb89381cc04fdd8150ed096a9b1503.bitwarden.com +carLicense: XPBHKT +departmentNumber: 8889 +employeeType: Normal +homePhone: +1 415 661-7268 +initials: A. F. +mobile: +1 415 230-3194 +pager: +1 415 381-2563 +roomNumber: 8803 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alberta Widener,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alberta Widener +sn: Widener +description: This is Alberta Widener's description +facsimileTelephoneNumber: +1 818 807-7051 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 983-4809 +title: Supreme Peons Punk +userPassword: Password1 +uid: WidenerA +givenName: Alberta +mail: WidenerA@47e5e279eb034f06bf0151f655d29134.bitwarden.com +carLicense: 80VFBP +departmentNumber: 1685 +employeeType: Normal +homePhone: +1 818 786-8685 +initials: A. W. +mobile: +1 818 264-4011 +pager: +1 818 283-7611 +roomNumber: 9212 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=PakJong Klebsch,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PakJong Klebsch +sn: Klebsch +description: This is PakJong Klebsch's description +facsimileTelephoneNumber: +1 213 733-2270 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 213 617-1243 +title: Master Administrative Consultant +userPassword: Password1 +uid: KlebschP +givenName: PakJong +mail: KlebschP@d823092534664221878b6c81b822deac.bitwarden.com +carLicense: QKQNE3 +departmentNumber: 2385 +employeeType: Normal +homePhone: +1 213 403-1205 +initials: P. K. +mobile: +1 213 547-7224 +pager: +1 213 541-8560 +roomNumber: 9585 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Detlev Croxford,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Detlev Croxford +sn: Croxford +description: This is Detlev Croxford's description +facsimileTelephoneNumber: +1 206 451-2061 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 232-9499 +title: Master Payroll Assistant +userPassword: Password1 +uid: CroxforD +givenName: Detlev +mail: CroxforD@e7d87afea27e4692a1bc5a19d69abd1c.bitwarden.com +carLicense: BLTG12 +departmentNumber: 4923 +employeeType: Normal +homePhone: +1 206 282-3488 +initials: D. C. +mobile: +1 206 673-5327 +pager: +1 206 986-2002 +roomNumber: 9544 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Graeme Khatri,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Graeme Khatri +sn: Khatri +description: This is Graeme Khatri's description +facsimileTelephoneNumber: +1 818 196-2685 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 738-5415 +title: Junior Product Testing President +userPassword: Password1 +uid: KhatriG +givenName: Graeme +mail: KhatriG@248fbbdd5e2b4efdbf1ff86927aed801.bitwarden.com +carLicense: HRD8HS +departmentNumber: 7703 +employeeType: Normal +homePhone: +1 818 330-1093 +initials: G. K. +mobile: +1 818 719-3760 +pager: +1 818 723-6099 +roomNumber: 9701 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Franky Dattalo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franky Dattalo +sn: Dattalo +description: This is Franky Dattalo's description +facsimileTelephoneNumber: +1 213 438-2911 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 286-5573 +title: Associate Payroll Vice President +userPassword: Password1 +uid: DattaloF +givenName: Franky +mail: DattaloF@dc096225ff66467cb73d02445cb8563d.bitwarden.com +carLicense: 6GQHEC +departmentNumber: 7509 +employeeType: Employee +homePhone: +1 213 212-9753 +initials: F. D. +mobile: +1 213 673-4865 +pager: +1 213 673-3755 +roomNumber: 8122 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Careers Howes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Careers Howes +sn: Howes +description: This is Careers Howes's description +facsimileTelephoneNumber: +1 415 563-4305 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 123-8261 +title: Supreme Peons Warrior +userPassword: Password1 +uid: HowesC +givenName: Careers +mail: HowesC@8970f66e3c7349128b71099e5c1cee90.bitwarden.com +carLicense: O6WF1U +departmentNumber: 5011 +employeeType: Employee +homePhone: +1 415 172-7716 +initials: C. H. +mobile: +1 415 651-2603 +pager: +1 415 149-5082 +roomNumber: 8940 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Susie Gawdan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susie Gawdan +sn: Gawdan +description: This is Susie Gawdan's description +facsimileTelephoneNumber: +1 804 851-4060 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 804 494-9408 +title: Master Janitorial Mascot +userPassword: Password1 +uid: GawdanS +givenName: Susie +mail: GawdanS@70f44c830c534fd69815f0a242b800aa.bitwarden.com +carLicense: PBQGPM +departmentNumber: 2083 +employeeType: Normal +homePhone: +1 804 278-6411 +initials: S. G. +mobile: +1 804 570-8580 +pager: +1 804 730-7851 +roomNumber: 9757 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Milou Lepine,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milou Lepine +sn: Lepine +description: This is Milou Lepine's description +facsimileTelephoneNumber: +1 415 883-8997 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 562-3550 +title: Master Administrative Visionary +userPassword: Password1 +uid: LepineM +givenName: Milou +mail: LepineM@2c973510a0ad49a29c0e5f61ce1778be.bitwarden.com +carLicense: KRKEQC +departmentNumber: 9309 +employeeType: Normal +homePhone: +1 415 201-6992 +initials: M. L. +mobile: +1 415 101-3005 +pager: +1 415 713-7780 +roomNumber: 9976 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ransom Steski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ransom Steski +sn: Steski +description: This is Ransom Steski's description +facsimileTelephoneNumber: +1 213 696-8421 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 642-1081 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: SteskiR +givenName: Ransom +mail: SteskiR@fe6a97f91a3b481692abba6662452ee9.bitwarden.com +carLicense: 6XKR0D +departmentNumber: 5990 +employeeType: Contract +homePhone: +1 213 703-8766 +initials: R. S. +mobile: +1 213 654-8661 +pager: +1 213 463-3081 +roomNumber: 9755 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=ItsEng Lander,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ItsEng Lander +sn: Lander +description: This is ItsEng Lander's description +facsimileTelephoneNumber: +1 213 681-3893 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 213 903-6962 +title: Associate Administrative Fellow +userPassword: Password1 +uid: LanderI +givenName: ItsEng +mail: LanderI@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com +carLicense: 9OCKYH +departmentNumber: 2990 +employeeType: Contract +homePhone: +1 213 140-4735 +initials: I. L. +mobile: +1 213 498-3054 +pager: +1 213 637-8976 +roomNumber: 8120 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kevyn Dore,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kevyn Dore +sn: Dore +description: This is Kevyn Dore's description +facsimileTelephoneNumber: +1 415 737-3926 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 707-6838 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: DoreK +givenName: Kevyn +mail: DoreK@094b6a4c917e4f98917e91b5a1b28522.bitwarden.com +carLicense: RLR3SN +departmentNumber: 1787 +employeeType: Normal +homePhone: +1 415 170-4815 +initials: K. D. +mobile: +1 415 249-1373 +pager: +1 415 262-1127 +roomNumber: 8358 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adriane Michelussi +sn: Michelussi +description: This is Adriane Michelussi's description +facsimileTelephoneNumber: +1 206 215-3007 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 742-9525 +title: Master Product Testing Dictator +userPassword: Password1 +uid: MicheluA +givenName: Adriane +mail: MicheluA@b18337be90444413a3513ff8460e86cb.bitwarden.com +carLicense: BQBPKE +departmentNumber: 3865 +employeeType: Contract +homePhone: +1 206 986-6311 +initials: A. M. +mobile: +1 206 416-6558 +pager: +1 206 897-2118 +roomNumber: 8088 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Merna MacNeill,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merna MacNeill +sn: MacNeill +description: This is Merna MacNeill's description +facsimileTelephoneNumber: +1 510 834-8800 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 763-4045 +title: Junior Janitorial Mascot +userPassword: Password1 +uid: MacNeilM +givenName: Merna +mail: MacNeilM@e7982141a478415494932da6ee7a398d.bitwarden.com +carLicense: IH5QA3 +departmentNumber: 3120 +employeeType: Employee +homePhone: +1 510 703-3013 +initials: M. M. +mobile: +1 510 671-4446 +pager: +1 510 365-3271 +roomNumber: 8585 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ioan Goridkov,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ioan Goridkov +sn: Goridkov +description: This is Ioan Goridkov's description +facsimileTelephoneNumber: +1 408 971-7710 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 738-9385 +title: Chief Payroll Assistant +userPassword: Password1 +uid: GoridkoI +givenName: Ioan +mail: GoridkoI@2b27acc969e94cf2aa1e0ddf34189475.bitwarden.com +carLicense: MELOYJ +departmentNumber: 1457 +employeeType: Contract +homePhone: +1 408 545-4798 +initials: I. G. +mobile: +1 408 443-7512 +pager: +1 408 939-6443 +roomNumber: 8944 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Michelle Miner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michelle Miner +sn: Miner +description: This is Michelle Miner's description +facsimileTelephoneNumber: +1 818 884-1364 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 227-6036 +title: Master Human Resources Admin +userPassword: Password1 +uid: MinerM +givenName: Michelle +mail: MinerM@d692d5cfe1f94d9b9ba0601cc719f91a.bitwarden.com +carLicense: LPY7DR +departmentNumber: 7427 +employeeType: Contract +homePhone: +1 818 463-3528 +initials: M. M. +mobile: +1 818 632-5018 +pager: +1 818 377-9995 +roomNumber: 9285 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mair Harada,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mair Harada +sn: Harada +description: This is Mair Harada's description +facsimileTelephoneNumber: +1 415 352-7287 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 113-5192 +title: Chief Janitorial Director +userPassword: Password1 +uid: HaradaM +givenName: Mair +mail: HaradaM@1b636b69f1444511aab6fb21d5a45120.bitwarden.com +carLicense: CSMKG2 +departmentNumber: 1620 +employeeType: Normal +homePhone: +1 415 192-9740 +initials: M. H. +mobile: +1 415 818-2798 +pager: +1 415 977-5500 +roomNumber: 8212 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lynnet Lewandowski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynnet Lewandowski +sn: Lewandowski +description: This is Lynnet Lewandowski's description +facsimileTelephoneNumber: +1 510 873-7984 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 449-6154 +title: Chief Management Fellow +userPassword: Password1 +uid: LewandoL +givenName: Lynnet +mail: LewandoL@c2594ac246a645e3be48149271f5e260.bitwarden.com +carLicense: D7XAEJ +departmentNumber: 6573 +employeeType: Normal +homePhone: +1 510 312-2751 +initials: L. L. +mobile: +1 510 885-7838 +pager: +1 510 439-8070 +roomNumber: 8318 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paolina Hotlist +sn: Hotlist +description: This is Paolina Hotlist's description +facsimileTelephoneNumber: +1 510 737-2872 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 421-5881 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: HotlistP +givenName: Paolina +mail: HotlistP@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com +carLicense: 01FQ7J +departmentNumber: 6448 +employeeType: Normal +homePhone: +1 510 195-7870 +initials: P. H. +mobile: +1 510 132-5440 +pager: +1 510 137-4417 +roomNumber: 9191 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Henk Ramanathan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henk Ramanathan +sn: Ramanathan +description: This is Henk Ramanathan's description +facsimileTelephoneNumber: +1 213 742-6232 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 337-7441 +title: Master Management Grunt +userPassword: Password1 +uid: RamanatH +givenName: Henk +mail: RamanatH@7b9bbc8a8db749adaa5d570b3f3c2a12.bitwarden.com +carLicense: W5SQFV +departmentNumber: 8314 +employeeType: Normal +homePhone: +1 213 509-2123 +initials: H. R. +mobile: +1 213 166-8717 +pager: +1 213 597-1515 +roomNumber: 9300 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashlan Hiltz +sn: Hiltz +description: This is Ashlan Hiltz's description +facsimileTelephoneNumber: +1 415 290-5019 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 870-6750 +title: Junior Product Development Czar +userPassword: Password1 +uid: HiltzA +givenName: Ashlan +mail: HiltzA@5ce200ed1ad64bcaad8122a35e26d155.bitwarden.com +carLicense: 603YP8 +departmentNumber: 7633 +employeeType: Contract +homePhone: +1 415 112-4920 +initials: A. H. +mobile: +1 415 475-1597 +pager: +1 415 742-8127 +roomNumber: 8897 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Selinda Settels,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selinda Settels +sn: Settels +description: This is Selinda Settels's description +facsimileTelephoneNumber: +1 415 475-4768 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 835-7107 +title: Master Product Development Evangelist +userPassword: Password1 +uid: SettelsS +givenName: Selinda +mail: SettelsS@4d6e294f43da4e31ad0f159e88e5f4be.bitwarden.com +carLicense: KVV6TB +departmentNumber: 8681 +employeeType: Normal +homePhone: +1 415 859-4182 +initials: S. S. +mobile: +1 415 984-1602 +pager: +1 415 384-2744 +roomNumber: 9346 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susanetta Herlihy +sn: Herlihy +description: This is Susanetta Herlihy's description +facsimileTelephoneNumber: +1 408 263-7217 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 206-5264 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: HerlihyS +givenName: Susanetta +mail: HerlihyS@6f9ae78114a84c0589079525f6533789.bitwarden.com +carLicense: 0C912X +departmentNumber: 2314 +employeeType: Normal +homePhone: +1 408 950-1015 +initials: S. H. +mobile: +1 408 475-5600 +pager: +1 408 715-6369 +roomNumber: 8399 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=ItsEng Kozak,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ItsEng Kozak +sn: Kozak +description: This is ItsEng Kozak's description +facsimileTelephoneNumber: +1 510 188-6664 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 581-3254 +title: Chief Management Artist +userPassword: Password1 +uid: KozakI +givenName: ItsEng +mail: KozakI@f6644bbdf7854f02affd71b3a7133d91.bitwarden.com +carLicense: 9OECRT +departmentNumber: 2017 +employeeType: Normal +homePhone: +1 510 705-6975 +initials: I. K. +mobile: +1 510 316-4363 +pager: +1 510 944-2923 +roomNumber: 9393 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brianne Deitiker +sn: Deitiker +description: This is Brianne Deitiker's description +facsimileTelephoneNumber: +1 408 829-3371 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 696-3293 +title: Associate Product Testing Figurehead +userPassword: Password1 +uid: DeitikeB +givenName: Brianne +mail: DeitikeB@f615417804714e2b90444d84fdf4c3ba.bitwarden.com +carLicense: 911K9F +departmentNumber: 3186 +employeeType: Contract +homePhone: +1 408 553-1991 +initials: B. D. +mobile: +1 408 895-5135 +pager: +1 408 677-4458 +roomNumber: 8271 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marybelle Ervi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marybelle Ervi +sn: Ervi +description: This is Marybelle Ervi's description +facsimileTelephoneNumber: +1 415 344-9277 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 728-8403 +title: Associate Payroll President +userPassword: Password1 +uid: ErviM +givenName: Marybelle +mail: ErviM@3f4b9aad0e4547d9998409b9c2b65792.bitwarden.com +carLicense: F5BESQ +departmentNumber: 9914 +employeeType: Employee +homePhone: +1 415 656-3781 +initials: M. E. +mobile: +1 415 224-7074 +pager: +1 415 116-4099 +roomNumber: 8654 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Yuji Menna,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yuji Menna +sn: Menna +description: This is Yuji Menna's description +facsimileTelephoneNumber: +1 804 329-1139 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 719-9097 +title: Junior Peons Artist +userPassword: Password1 +uid: MennaY +givenName: Yuji +mail: MennaY@5278466bedb347c588c1bbec6486c3cf.bitwarden.com +carLicense: GQSP34 +departmentNumber: 2141 +employeeType: Contract +homePhone: +1 804 822-4402 +initials: Y. M. +mobile: +1 804 388-4376 +pager: +1 804 663-4729 +roomNumber: 8636 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Harlene Koa,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harlene Koa +sn: Koa +description: This is Harlene Koa's description +facsimileTelephoneNumber: +1 415 682-5158 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 621-4696 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: KoaH +givenName: Harlene +mail: KoaH@f920b917085d494384c9f6cf31731d98.bitwarden.com +carLicense: 4USHLR +departmentNumber: 8680 +employeeType: Normal +homePhone: +1 415 544-5963 +initials: H. K. +mobile: +1 415 301-5479 +pager: +1 415 745-7397 +roomNumber: 8092 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Prashant Feltman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prashant Feltman +sn: Feltman +description: This is Prashant Feltman's description +facsimileTelephoneNumber: +1 818 426-8895 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 671-7634 +title: Supreme Product Development Director +userPassword: Password1 +uid: FeltmanP +givenName: Prashant +mail: FeltmanP@0fd4dc879e87454189121973304c8184.bitwarden.com +carLicense: KULKR9 +departmentNumber: 2295 +employeeType: Employee +homePhone: +1 818 192-1338 +initials: P. F. +mobile: +1 818 562-6557 +pager: +1 818 535-3151 +roomNumber: 9658 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Margit Waghray,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margit Waghray +sn: Waghray +description: This is Margit Waghray's description +facsimileTelephoneNumber: +1 408 721-8601 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 410-9659 +title: Junior Management Architect +userPassword: Password1 +uid: WaghrayM +givenName: Margit +mail: WaghrayM@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com +carLicense: KAPWSW +departmentNumber: 4303 +employeeType: Normal +homePhone: +1 408 783-4342 +initials: M. W. +mobile: +1 408 358-7075 +pager: +1 408 426-2356 +roomNumber: 9614 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Naim Paar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naim Paar +sn: Paar +description: This is Naim Paar's description +facsimileTelephoneNumber: +1 206 177-4952 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 459-2802 +title: Supreme Peons Punk +userPassword: Password1 +uid: PaarN +givenName: Naim +mail: PaarN@f7d02b716b224e868c9d7b6fe1dd0e0b.bitwarden.com +carLicense: XDDP9R +departmentNumber: 6268 +employeeType: Contract +homePhone: +1 206 572-3438 +initials: N. P. +mobile: +1 206 781-1909 +pager: +1 206 244-1019 +roomNumber: 9960 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Flying Labossiere,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flying Labossiere +sn: Labossiere +description: This is Flying Labossiere's description +facsimileTelephoneNumber: +1 213 117-7096 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 935-5859 +title: Master Human Resources Punk +userPassword: Password1 +uid: LabossiF +givenName: Flying +mail: LabossiF@9135ac12963a4f24b390086599e22c6a.bitwarden.com +carLicense: 1QPIOU +departmentNumber: 6802 +employeeType: Normal +homePhone: +1 213 703-5428 +initials: F. L. +mobile: +1 213 401-6425 +pager: +1 213 168-5456 +roomNumber: 8163 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Barbette Kolski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbette Kolski +sn: Kolski +description: This is Barbette Kolski's description +facsimileTelephoneNumber: +1 818 928-7913 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 438-6003 +title: Chief Product Development Warrior +userPassword: Password1 +uid: KolskiB +givenName: Barbette +mail: KolskiB@1c75dd756d3646528231e24a92716bd4.bitwarden.com +carLicense: OVHOAH +departmentNumber: 7904 +employeeType: Normal +homePhone: +1 818 301-5530 +initials: B. K. +mobile: +1 818 297-8239 +pager: +1 818 758-2943 +roomNumber: 9749 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nishith Parmaksezian +sn: Parmaksezian +description: This is Nishith Parmaksezian's description +facsimileTelephoneNumber: +1 415 153-1717 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 911-9811 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: ParmaksN +givenName: Nishith +mail: ParmaksN@40663fdde0124ce29770203c85e196b5.bitwarden.com +carLicense: 8XA8X9 +departmentNumber: 5879 +employeeType: Employee +homePhone: +1 415 571-3668 +initials: N. P. +mobile: +1 415 292-7634 +pager: +1 415 429-8663 +roomNumber: 8290 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Joby Paulovics,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joby Paulovics +sn: Paulovics +description: This is Joby Paulovics's description +facsimileTelephoneNumber: +1 213 934-3419 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 286-9327 +title: Associate Human Resources Visionary +userPassword: Password1 +uid: PauloviJ +givenName: Joby +mail: PauloviJ@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com +carLicense: VARA14 +departmentNumber: 7748 +employeeType: Employee +homePhone: +1 213 615-7190 +initials: J. P. +mobile: +1 213 975-1973 +pager: +1 213 830-2911 +roomNumber: 9486 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoshiaki Elkins +sn: Elkins +description: This is Yoshiaki Elkins's description +facsimileTelephoneNumber: +1 510 238-1387 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 390-3254 +title: Junior Janitorial Stooge +userPassword: Password1 +uid: ElkinsY +givenName: Yoshiaki +mail: ElkinsY@ed96afcd8b954b4d85dba951a21a6324.bitwarden.com +carLicense: P17OBO +departmentNumber: 4874 +employeeType: Contract +homePhone: +1 510 207-1593 +initials: Y. E. +mobile: +1 510 884-5205 +pager: +1 510 583-9829 +roomNumber: 8735 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zuzana Prakash +sn: Prakash +description: This is Zuzana Prakash's description +facsimileTelephoneNumber: +1 408 132-5344 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 871-9720 +title: Associate Product Testing Admin +userPassword: Password1 +uid: PrakashZ +givenName: Zuzana +mail: PrakashZ@801739f6e42441ccb9598e407460b5bb.bitwarden.com +carLicense: AIULXJ +departmentNumber: 2927 +employeeType: Employee +homePhone: +1 408 489-9172 +initials: Z. P. +mobile: +1 408 446-8333 +pager: +1 408 822-1642 +roomNumber: 8282 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjorie OKelly +sn: OKelly +description: This is Marjorie OKelly's description +facsimileTelephoneNumber: +1 818 815-2155 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 747-3958 +title: Junior Janitorial Czar +userPassword: Password1 +uid: OKellyM +givenName: Marjorie +mail: OKellyM@dd6d4c6b1dd34999828d0c453a81ce8e.bitwarden.com +carLicense: V8RU29 +departmentNumber: 3306 +employeeType: Normal +homePhone: +1 818 251-7416 +initials: M. O. +mobile: +1 818 705-1118 +pager: +1 818 758-1812 +roomNumber: 9773 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aubrette Stadler +sn: Stadler +description: This is Aubrette Stadler's description +facsimileTelephoneNumber: +1 804 317-8269 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 141-3870 +title: Junior Product Testing Grunt +userPassword: Password1 +uid: StadlerA +givenName: Aubrette +mail: StadlerA@a3bd8e44117346b9ae0cabd5005504fc.bitwarden.com +carLicense: N7NSPD +departmentNumber: 9666 +employeeType: Employee +homePhone: +1 804 969-4699 +initials: A. S. +mobile: +1 804 725-6305 +pager: +1 804 375-2785 +roomNumber: 8550 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Feliza Grabner,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Feliza Grabner +sn: Grabner +description: This is Feliza Grabner's description +facsimileTelephoneNumber: +1 408 362-8252 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 294-5239 +title: Associate Payroll Architect +userPassword: Password1 +uid: GrabnerF +givenName: Feliza +mail: GrabnerF@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com +carLicense: RM56FD +departmentNumber: 7091 +employeeType: Normal +homePhone: +1 408 982-3149 +initials: F. G. +mobile: +1 408 861-7069 +pager: +1 408 261-2275 +roomNumber: 8374 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kacey Tischhauser +sn: Tischhauser +description: This is Kacey Tischhauser's description +facsimileTelephoneNumber: +1 804 666-8396 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 244-2230 +title: Junior Administrative Developer +userPassword: Password1 +uid: TischhaK +givenName: Kacey +mail: TischhaK@03d46b0722db4aefabede2394ef70138.bitwarden.com +carLicense: SQVH07 +departmentNumber: 9387 +employeeType: Contract +homePhone: +1 804 787-7405 +initials: K. T. +mobile: +1 804 109-1584 +pager: +1 804 376-2117 +roomNumber: 9564 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dona VanLoon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dona VanLoon +sn: VanLoon +description: This is Dona VanLoon's description +facsimileTelephoneNumber: +1 213 720-3716 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 692-2885 +title: Associate Payroll Architect +userPassword: Password1 +uid: VanLoonD +givenName: Dona +mail: VanLoonD@8867d48f5a1a4686bc365aa8db240829.bitwarden.com +carLicense: V65783 +departmentNumber: 7014 +employeeType: Contract +homePhone: +1 213 285-7053 +initials: D. V. +mobile: +1 213 229-6153 +pager: +1 213 998-3932 +roomNumber: 8993 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacquie Thorson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquie Thorson +sn: Thorson +description: This is Jacquie Thorson's description +facsimileTelephoneNumber: +1 206 567-3162 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 566-1715 +title: Chief Administrative Janitor +userPassword: Password1 +uid: ThorsonJ +givenName: Jacquie +mail: ThorsonJ@e915bf6c406f46f5ac163116df6fd9b3.bitwarden.com +carLicense: 2NVADD +departmentNumber: 3453 +employeeType: Normal +homePhone: +1 206 220-2903 +initials: J. T. +mobile: +1 206 380-1342 +pager: +1 206 105-5401 +roomNumber: 9880 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veriee Tandberg +sn: Tandberg +description: This is Veriee Tandberg's description +facsimileTelephoneNumber: +1 804 705-1398 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 328-7552 +title: Junior Janitorial Stooge +userPassword: Password1 +uid: TandberV +givenName: Veriee +mail: TandberV@af244d93e89148e099720c8250f904c6.bitwarden.com +carLicense: YRYDG1 +departmentNumber: 5813 +employeeType: Employee +homePhone: +1 804 635-2979 +initials: V. T. +mobile: +1 804 812-4346 +pager: +1 804 364-5987 +roomNumber: 8914 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Appolonia Roberge,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Appolonia Roberge +sn: Roberge +description: This is Appolonia Roberge's description +facsimileTelephoneNumber: +1 415 232-2076 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 208-5107 +title: Supreme Payroll Stooge +userPassword: Password1 +uid: RobergeA +givenName: Appolonia +mail: RobergeA@a1229ea2ddce4147b437f4d3ad26de38.bitwarden.com +carLicense: 9QKGSU +departmentNumber: 1306 +employeeType: Employee +homePhone: +1 415 345-5087 +initials: A. R. +mobile: +1 415 707-4610 +pager: +1 415 141-1930 +roomNumber: 8773 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Blaise Huynh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blaise Huynh +sn: Huynh +description: This is Blaise Huynh's description +facsimileTelephoneNumber: +1 818 979-6779 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 181-7281 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: HuynhB +givenName: Blaise +mail: HuynhB@80d7a9e833dc41e18b9463841847c534.bitwarden.com +carLicense: 9L5LYW +departmentNumber: 3291 +employeeType: Employee +homePhone: +1 818 580-5943 +initials: B. H. +mobile: +1 818 425-5201 +pager: +1 818 608-2891 +roomNumber: 9142 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lashonda Ogburn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lashonda Ogburn +sn: Ogburn +description: This is Lashonda Ogburn's description +facsimileTelephoneNumber: +1 510 726-7553 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 922-3842 +title: Master Management Technician +userPassword: Password1 +uid: OgburnL +givenName: Lashonda +mail: OgburnL@d4c72bac49924f79b7ada92d433b947c.bitwarden.com +carLicense: N7CY94 +departmentNumber: 4167 +employeeType: Contract +homePhone: +1 510 576-8601 +initials: L. O. +mobile: +1 510 716-7545 +pager: +1 510 977-4582 +roomNumber: 8011 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Juline Flindall,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juline Flindall +sn: Flindall +description: This is Juline Flindall's description +facsimileTelephoneNumber: +1 213 323-6605 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 977-8326 +title: Chief Product Testing Architect +userPassword: Password1 +uid: FlindalJ +givenName: Juline +mail: FlindalJ@9dcbe58177c3454c992be9f2bcd770bc.bitwarden.com +carLicense: 5NEL7P +departmentNumber: 1142 +employeeType: Employee +homePhone: +1 213 658-8365 +initials: J. F. +mobile: +1 213 103-9382 +pager: +1 213 586-1307 +roomNumber: 9859 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lujanka Paylor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lujanka Paylor +sn: Paylor +description: This is Lujanka Paylor's description +facsimileTelephoneNumber: +1 213 477-8650 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 956-3272 +title: Supreme Peons Engineer +userPassword: Password1 +uid: PaylorL +givenName: Lujanka +mail: PaylorL@a90573a98b164929a489e62b8b0a18ec.bitwarden.com +carLicense: 5TW43Y +departmentNumber: 8769 +employeeType: Contract +homePhone: +1 213 496-6182 +initials: L. P. +mobile: +1 213 185-4710 +pager: +1 213 105-8197 +roomNumber: 8503 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Barbee Brox,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbee Brox +sn: Brox +description: This is Barbee Brox's description +facsimileTelephoneNumber: +1 818 144-7380 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 818 521-3669 +title: Associate Human Resources Czar +userPassword: Password1 +uid: BroxB +givenName: Barbee +mail: BroxB@2126a4a93d82446eaaae85cb511bb3eb.bitwarden.com +carLicense: YPQ5XA +departmentNumber: 6043 +employeeType: Contract +homePhone: +1 818 186-5671 +initials: B. B. +mobile: +1 818 675-7865 +pager: +1 818 853-7276 +roomNumber: 8514 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Julia Zanetti,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julia Zanetti +sn: Zanetti +description: This is Julia Zanetti's description +facsimileTelephoneNumber: +1 818 957-7296 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 465-6545 +title: Associate Janitorial Manager +userPassword: Password1 +uid: ZanettiJ +givenName: Julia +mail: ZanettiJ@ede35e44c10a4bf48fb611de6dfbedd8.bitwarden.com +carLicense: YFA8BR +departmentNumber: 8737 +employeeType: Normal +homePhone: +1 818 212-5449 +initials: J. Z. +mobile: +1 818 994-1464 +pager: +1 818 327-7601 +roomNumber: 9809 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Othilia Rch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othilia Rch +sn: Rch +description: This is Othilia Rch's description +facsimileTelephoneNumber: +1 818 465-6065 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 421-8029 +title: Master Janitorial Janitor +userPassword: Password1 +uid: RchO +givenName: Othilia +mail: RchO@7f678caa888b47ceb5d57deda96772c9.bitwarden.com +carLicense: UU0TSS +departmentNumber: 4900 +employeeType: Normal +homePhone: +1 818 609-4217 +initials: O. R. +mobile: +1 818 534-1257 +pager: +1 818 417-3674 +roomNumber: 9893 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gaal Despault,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaal Despault +sn: Despault +description: This is Gaal Despault's description +facsimileTelephoneNumber: +1 415 153-2870 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 441-6127 +title: Supreme Human Resources Figurehead +userPassword: Password1 +uid: DespaulG +givenName: Gaal +mail: DespaulG@7092afcac0d743dda822cd8d0349a08e.bitwarden.com +carLicense: TR9RIO +departmentNumber: 7717 +employeeType: Contract +homePhone: +1 415 957-1280 +initials: G. D. +mobile: +1 415 177-2588 +pager: +1 415 706-1026 +roomNumber: 8722 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mary Zalzale,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mary Zalzale +sn: Zalzale +description: This is Mary Zalzale's description +facsimileTelephoneNumber: +1 206 733-4128 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 547-8163 +title: Chief Human Resources Figurehead +userPassword: Password1 +uid: ZalzaleM +givenName: Mary +mail: ZalzaleM@4142573bf2cb42fca0124350cec5645b.bitwarden.com +carLicense: 4KNA7P +departmentNumber: 7019 +employeeType: Employee +homePhone: +1 206 419-1765 +initials: M. Z. +mobile: +1 206 361-8822 +pager: +1 206 447-9294 +roomNumber: 8549 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hilmi Guilbault,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilmi Guilbault +sn: Guilbault +description: This is Hilmi Guilbault's description +facsimileTelephoneNumber: +1 206 759-3766 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 206 543-2291 +title: Junior Management Technician +userPassword: Password1 +uid: GuilbauH +givenName: Hilmi +mail: GuilbauH@e51ab927442b42fd83641345150b54a3.bitwarden.com +carLicense: PQQWB5 +departmentNumber: 5744 +employeeType: Normal +homePhone: +1 206 762-9515 +initials: H. G. +mobile: +1 206 879-3847 +pager: +1 206 706-6312 +roomNumber: 8097 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=YuenPui Matney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YuenPui Matney +sn: Matney +description: This is YuenPui Matney's description +facsimileTelephoneNumber: +1 213 435-3225 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 568-1324 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: MatneyY +givenName: YuenPui +mail: MatneyY@7b527a6c34584da5add653a316e64744.bitwarden.com +carLicense: KNOH01 +departmentNumber: 8108 +employeeType: Contract +homePhone: +1 213 255-2639 +initials: Y. M. +mobile: +1 213 414-7573 +pager: +1 213 201-8353 +roomNumber: 8603 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Heidie Schieber,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heidie Schieber +sn: Schieber +description: This is Heidie Schieber's description +facsimileTelephoneNumber: +1 415 420-5470 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 521-3313 +title: Supreme Administrative President +userPassword: Password1 +uid: SchiebeH +givenName: Heidie +mail: SchiebeH@f30af69fd37e4f8a883a02cf91c85b15.bitwarden.com +carLicense: ESPPXF +departmentNumber: 7909 +employeeType: Normal +homePhone: +1 415 627-7724 +initials: H. S. +mobile: +1 415 806-3570 +pager: +1 415 163-9649 +roomNumber: 9992 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Denise Tranter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denise Tranter +sn: Tranter +description: This is Denise Tranter's description +facsimileTelephoneNumber: +1 415 323-9973 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 804-6578 +title: Supreme Human Resources Figurehead +userPassword: Password1 +uid: TranterD +givenName: Denise +mail: TranterD@01fa9120f2a14ce7afdb05e2fa84950c.bitwarden.com +carLicense: 115FHF +departmentNumber: 4417 +employeeType: Employee +homePhone: +1 415 970-2332 +initials: D. T. +mobile: +1 415 150-5916 +pager: +1 415 779-4520 +roomNumber: 8966 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cassy Burge,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassy Burge +sn: Burge +description: This is Cassy Burge's description +facsimileTelephoneNumber: +1 510 323-6275 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 823-1341 +title: Chief Peons Warrior +userPassword: Password1 +uid: BurgeC +givenName: Cassy +mail: BurgeC@0c4de0f537ac4059b43bc376b1423585.bitwarden.com +carLicense: 0V8N07 +departmentNumber: 3772 +employeeType: Employee +homePhone: +1 510 853-4322 +initials: C. B. +mobile: +1 510 204-6002 +pager: +1 510 272-5415 +roomNumber: 9718 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angelia Wacheski +sn: Wacheski +description: This is Angelia Wacheski's description +facsimileTelephoneNumber: +1 415 388-8613 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 814-6200 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: WacheskA +givenName: Angelia +mail: WacheskA@ffedbb5dcd2e43d89a2fe0f7ea7157e8.bitwarden.com +carLicense: JY3BNA +departmentNumber: 2531 +employeeType: Employee +homePhone: +1 415 347-7267 +initials: A. W. +mobile: +1 415 213-4984 +pager: +1 415 699-6331 +roomNumber: 9475 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rafaelita Colton +sn: Colton +description: This is Rafaelita Colton's description +facsimileTelephoneNumber: +1 408 553-2008 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 820-9943 +title: Master Human Resources Visionary +userPassword: Password1 +uid: ColtonR +givenName: Rafaelita +mail: ColtonR@bc86e63e2935428fbf0579fffe710ad0.bitwarden.com +carLicense: FOYUQH +departmentNumber: 8902 +employeeType: Contract +homePhone: +1 408 510-4781 +initials: R. C. +mobile: +1 408 463-6326 +pager: +1 408 155-5245 +roomNumber: 9475 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorette McCulloch +sn: McCulloch +description: This is Lorette McCulloch's description +facsimileTelephoneNumber: +1 510 321-1819 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 199-5039 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: McCulloL +givenName: Lorette +mail: McCulloL@f0d259bb55714f71bf010360d9c0c675.bitwarden.com +carLicense: MPDE9O +departmentNumber: 5542 +employeeType: Employee +homePhone: +1 510 173-7894 +initials: L. M. +mobile: +1 510 329-1058 +pager: +1 510 407-3882 +roomNumber: 9843 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rowena Kam,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rowena Kam +sn: Kam +description: This is Rowena Kam's description +facsimileTelephoneNumber: +1 206 323-7812 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 193-9252 +title: Supreme Administrative Pinhead +userPassword: Password1 +uid: KamR +givenName: Rowena +mail: KamR@a15bed22c46f4004bbe3a24f37013ebd.bitwarden.com +carLicense: GT50MR +departmentNumber: 3650 +employeeType: Contract +homePhone: +1 206 109-8526 +initials: R. K. +mobile: +1 206 878-6172 +pager: +1 206 194-2416 +roomNumber: 9401 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Theodore Murris,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theodore Murris +sn: Murris +description: This is Theodore Murris's description +facsimileTelephoneNumber: +1 206 144-6741 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 977-5374 +title: Chief Administrative Janitor +userPassword: Password1 +uid: MurrisT +givenName: Theodore +mail: MurrisT@b956ceb4b4ac4e2e8c019866386df8f2.bitwarden.com +carLicense: KSNEWM +departmentNumber: 8602 +employeeType: Employee +homePhone: +1 206 505-7831 +initials: T. M. +mobile: +1 206 797-5925 +pager: +1 206 147-5979 +roomNumber: 8409 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosamond Sugarbroad +sn: Sugarbroad +description: This is Rosamond Sugarbroad's description +facsimileTelephoneNumber: +1 415 871-7850 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 545-1278 +title: Associate Janitorial Admin +userPassword: Password1 +uid: SugarbrR +givenName: Rosamond +mail: SugarbrR@ead811946c1c45dc9e9e74c993c44021.bitwarden.com +carLicense: SEP669 +departmentNumber: 6012 +employeeType: Employee +homePhone: +1 415 498-6228 +initials: R. S. +mobile: +1 415 696-5285 +pager: +1 415 870-4302 +roomNumber: 8539 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bang Lischynsky,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bang Lischynsky +sn: Lischynsky +description: This is Bang Lischynsky's description +facsimileTelephoneNumber: +1 818 189-8303 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 781-4422 +title: Associate Management Developer +userPassword: Password1 +uid: LischynB +givenName: Bang +mail: LischynB@93250e1458e9462fb7830f342f899a75.bitwarden.com +carLicense: WKN9HR +departmentNumber: 5937 +employeeType: Contract +homePhone: +1 818 134-1240 +initials: B. L. +mobile: +1 818 287-2491 +pager: +1 818 809-6304 +roomNumber: 8114 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Derek Fleuchaus +sn: Fleuchaus +description: This is Derek Fleuchaus's description +facsimileTelephoneNumber: +1 510 884-3932 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 903-6188 +title: Master Product Testing President +userPassword: Password1 +uid: FleuchaD +givenName: Derek +mail: FleuchaD@df8b9402b189403dbb23818be84e6eeb.bitwarden.com +carLicense: OFH2EV +departmentNumber: 6471 +employeeType: Contract +homePhone: +1 510 323-4086 +initials: D. F. +mobile: +1 510 977-2812 +pager: +1 510 703-9324 +roomNumber: 8926 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Delphine Yuan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delphine Yuan +sn: Yuan +description: This is Delphine Yuan's description +facsimileTelephoneNumber: +1 408 267-2255 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 799-7885 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: YuanD +givenName: Delphine +mail: YuanD@9aed867d53c546c79f7cb774a38dec77.bitwarden.com +carLicense: CPKUUU +departmentNumber: 1269 +employeeType: Normal +homePhone: +1 408 919-2583 +initials: D. Y. +mobile: +1 408 287-1389 +pager: +1 408 277-2435 +roomNumber: 8883 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kambhampati Corkum +sn: Corkum +description: This is Kambhampati Corkum's description +facsimileTelephoneNumber: +1 818 397-7004 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 818 706-1272 +title: Master Human Resources Mascot +userPassword: Password1 +uid: CorkumK +givenName: Kambhampati +mail: CorkumK@c32875a7d5c84e0cbf7df721e038b80b.bitwarden.com +carLicense: M0T110 +departmentNumber: 2300 +employeeType: Employee +homePhone: +1 818 159-7796 +initials: K. C. +mobile: +1 818 672-6255 +pager: +1 818 220-3394 +roomNumber: 8323 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Heloise Woodall,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heloise Woodall +sn: Woodall +description: This is Heloise Woodall's description +facsimileTelephoneNumber: +1 415 321-9886 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 552-2899 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: WoodallH +givenName: Heloise +mail: WoodallH@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com +carLicense: HT670A +departmentNumber: 4104 +employeeType: Contract +homePhone: +1 415 773-6377 +initials: H. W. +mobile: +1 415 669-3575 +pager: +1 415 150-4725 +roomNumber: 9446 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ram Minter,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ram Minter +sn: Minter +description: This is Ram Minter's description +facsimileTelephoneNumber: +1 415 808-4896 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 360-4652 +title: Associate Janitorial Stooge +userPassword: Password1 +uid: MinterR +givenName: Ram +mail: MinterR@e60de99cf3fe4ed19d668de1778949e0.bitwarden.com +carLicense: VX4O7X +departmentNumber: 5804 +employeeType: Contract +homePhone: +1 415 947-3142 +initials: R. M. +mobile: +1 415 305-9509 +pager: +1 415 814-4885 +roomNumber: 8517 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosa ElAm,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosa ElAm +sn: ElAm +description: This is Rosa ElAm's description +facsimileTelephoneNumber: +1 213 432-5025 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 826-9472 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: ElAmR +givenName: Rosa +mail: ElAmR@db74de76c5374bf883b5c0e4951495b9.bitwarden.com +carLicense: R0ALP4 +departmentNumber: 3302 +employeeType: Contract +homePhone: +1 213 919-1453 +initials: R. E. +mobile: +1 213 345-8230 +pager: +1 213 935-6357 +roomNumber: 9891 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shirene Id,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirene Id +sn: Id +description: This is Shirene Id's description +facsimileTelephoneNumber: +1 804 400-2225 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 119-8883 +title: Supreme Payroll Sales Rep +userPassword: Password1 +uid: IdS +givenName: Shirene +mail: IdS@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com +carLicense: 2XWRSR +departmentNumber: 4693 +employeeType: Normal +homePhone: +1 804 268-9306 +initials: S. I. +mobile: +1 804 523-5887 +pager: +1 804 539-9963 +roomNumber: 9609 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pauline Noffke,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pauline Noffke +sn: Noffke +description: This is Pauline Noffke's description +facsimileTelephoneNumber: +1 818 645-3171 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 609-1015 +title: Chief Human Resources Pinhead +userPassword: Password1 +uid: NoffkeP +givenName: Pauline +mail: NoffkeP@8ad57fa5a0014d7d86bb326fd3c22de8.bitwarden.com +carLicense: JBHUJK +departmentNumber: 8783 +employeeType: Contract +homePhone: +1 818 388-5926 +initials: P. N. +mobile: +1 818 894-8775 +pager: +1 818 483-5029 +roomNumber: 8075 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Seungchul Irwin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seungchul Irwin +sn: Irwin +description: This is Seungchul Irwin's description +facsimileTelephoneNumber: +1 408 519-1343 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 318-8766 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: IrwinS +givenName: Seungchul +mail: IrwinS@8b295e8cd635489485394b6d99d818e7.bitwarden.com +carLicense: WTQSRT +departmentNumber: 7468 +employeeType: Normal +homePhone: +1 408 517-6430 +initials: S. I. +mobile: +1 408 130-3615 +pager: +1 408 234-7947 +roomNumber: 8540 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Myrlene Santi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrlene Santi +sn: Santi +description: This is Myrlene Santi's description +facsimileTelephoneNumber: +1 510 306-7540 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 510 116-7802 +title: Junior Product Development Engineer +userPassword: Password1 +uid: SantiM +givenName: Myrlene +mail: SantiM@11b234eea2bc47719297586301a47914.bitwarden.com +carLicense: 8XTLXF +departmentNumber: 3973 +employeeType: Normal +homePhone: +1 510 986-2747 +initials: M. S. +mobile: +1 510 157-2186 +pager: +1 510 259-7071 +roomNumber: 8381 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Perry Lovejoy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perry Lovejoy +sn: Lovejoy +description: This is Perry Lovejoy's description +facsimileTelephoneNumber: +1 206 893-1238 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 422-5369 +title: Junior Administrative Janitor +userPassword: Password1 +uid: LovejoyP +givenName: Perry +mail: LovejoyP@181e7c5d669f48eca80875ae007e40bd.bitwarden.com +carLicense: BJNEIK +departmentNumber: 2566 +employeeType: Contract +homePhone: +1 206 308-5004 +initials: P. L. +mobile: +1 206 820-3543 +pager: +1 206 420-6976 +roomNumber: 9636 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Viola Gundry,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viola Gundry +sn: Gundry +description: This is Viola Gundry's description +facsimileTelephoneNumber: +1 818 960-8263 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 333-2986 +title: Master Janitorial President +userPassword: Password1 +uid: GundryV +givenName: Viola +mail: GundryV@af5f99a04b4d4049bab4751bf65043cb.bitwarden.com +carLicense: D73RRB +departmentNumber: 8768 +employeeType: Normal +homePhone: +1 818 553-8012 +initials: V. G. +mobile: +1 818 470-1335 +pager: +1 818 971-9041 +roomNumber: 9112 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vlado Dordari,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vlado Dordari +sn: Dordari +description: This is Vlado Dordari's description +facsimileTelephoneNumber: +1 408 519-9963 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 408 139-2970 +title: Associate Janitorial President +userPassword: Password1 +uid: DordariV +givenName: Vlado +mail: DordariV@3d08abe32a7a4ad6ad8c863880ea4bcf.bitwarden.com +carLicense: M897K3 +departmentNumber: 1124 +employeeType: Contract +homePhone: +1 408 646-5056 +initials: V. D. +mobile: +1 408 550-9040 +pager: +1 408 970-2062 +roomNumber: 9885 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cindra DeMarco,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cindra DeMarco +sn: DeMarco +description: This is Cindra DeMarco's description +facsimileTelephoneNumber: +1 213 740-4433 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 396-4016 +title: Supreme Management Figurehead +userPassword: Password1 +uid: DeMarcoC +givenName: Cindra +mail: DeMarcoC@9b0aeac2cdb5436687a362cde882372c.bitwarden.com +carLicense: S37M2J +departmentNumber: 6953 +employeeType: Contract +homePhone: +1 213 759-2790 +initials: C. D. +mobile: +1 213 542-8647 +pager: +1 213 336-9021 +roomNumber: 8284 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Delcine Wyss,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delcine Wyss +sn: Wyss +description: This is Delcine Wyss's description +facsimileTelephoneNumber: +1 206 989-7183 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 629-6040 +title: Junior Product Testing Pinhead +userPassword: Password1 +uid: WyssD +givenName: Delcine +mail: WyssD@42acff70d0bf48f9a8fb0c9bb9ccac94.bitwarden.com +carLicense: MEK908 +departmentNumber: 1125 +employeeType: Contract +homePhone: +1 206 921-2105 +initials: D. W. +mobile: +1 206 592-5017 +pager: +1 206 807-1633 +roomNumber: 9630 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edythe Kleynenberg +sn: Kleynenberg +description: This is Edythe Kleynenberg's description +facsimileTelephoneNumber: +1 206 949-4226 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 186-1021 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: KleynenE +givenName: Edythe +mail: KleynenE@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com +carLicense: D9H5XG +departmentNumber: 9209 +employeeType: Normal +homePhone: +1 206 155-8469 +initials: E. K. +mobile: +1 206 419-4495 +pager: +1 206 552-4243 +roomNumber: 8670 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aurora Gibb,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurora Gibb +sn: Gibb +description: This is Aurora Gibb's description +facsimileTelephoneNumber: +1 408 321-2293 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 770-2054 +title: Master Human Resources Admin +userPassword: Password1 +uid: GibbA +givenName: Aurora +mail: GibbA@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com +carLicense: PDSKQ1 +departmentNumber: 8130 +employeeType: Contract +homePhone: +1 408 669-6935 +initials: A. G. +mobile: +1 408 326-1856 +pager: +1 408 452-1324 +roomNumber: 9863 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rona Maciel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rona Maciel +sn: Maciel +description: This is Rona Maciel's description +facsimileTelephoneNumber: +1 818 682-3323 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 908-2044 +title: Junior Payroll Mascot +userPassword: Password1 +uid: MacielR +givenName: Rona +mail: MacielR@06b78485a19a4427830768a006ea8516.bitwarden.com +carLicense: 6VTBST +departmentNumber: 8661 +employeeType: Normal +homePhone: +1 818 801-9093 +initials: R. M. +mobile: +1 818 849-2234 +pager: +1 818 410-9860 +roomNumber: 9003 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Moel Goswick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moel Goswick +sn: Goswick +description: This is Moel Goswick's description +facsimileTelephoneNumber: +1 415 209-9764 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 908-7154 +title: Chief Management Figurehead +userPassword: Password1 +uid: GoswickM +givenName: Moel +mail: GoswickM@726a27d8fd0d444e9b0592ed813a614a.bitwarden.com +carLicense: VC576T +departmentNumber: 1949 +employeeType: Normal +homePhone: +1 415 670-3262 +initials: M. G. +mobile: +1 415 731-2696 +pager: +1 415 437-3210 +roomNumber: 8121 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Coord Herrington,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coord Herrington +sn: Herrington +description: This is Coord Herrington's description +facsimileTelephoneNumber: +1 206 493-8987 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 325-3398 +title: Junior Peons President +userPassword: Password1 +uid: HerringC +givenName: Coord +mail: HerringC@8bced59a99724d5eb08954ec3497f98c.bitwarden.com +carLicense: 98T8KQ +departmentNumber: 4840 +employeeType: Normal +homePhone: +1 206 609-3708 +initials: C. H. +mobile: +1 206 105-1580 +pager: +1 206 206-1565 +roomNumber: 8554 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vic Cullen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vic Cullen +sn: Cullen +description: This is Vic Cullen's description +facsimileTelephoneNumber: +1 804 711-1733 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 636-7098 +title: Master Janitorial Evangelist +userPassword: Password1 +uid: CullenV +givenName: Vic +mail: CullenV@2f1ccd0f317a4e42955b19a4c97fc5c6.bitwarden.com +carLicense: D9W79R +departmentNumber: 1519 +employeeType: Contract +homePhone: +1 804 438-7463 +initials: V. C. +mobile: +1 804 256-3483 +pager: +1 804 112-5723 +roomNumber: 9460 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sabine Misko,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabine Misko +sn: Misko +description: This is Sabine Misko's description +facsimileTelephoneNumber: +1 213 664-1935 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 535-2082 +title: Master Janitorial Consultant +userPassword: Password1 +uid: MiskoS +givenName: Sabine +mail: MiskoS@04065a5c7f734c5a9f2f4f6ee5fbcb1d.bitwarden.com +carLicense: Q0DBUM +departmentNumber: 1239 +employeeType: Employee +homePhone: +1 213 919-2797 +initials: S. M. +mobile: +1 213 906-6533 +pager: +1 213 979-1772 +roomNumber: 8144 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherry Malynowsky +sn: Malynowsky +description: This is Cherry Malynowsky's description +facsimileTelephoneNumber: +1 206 670-1262 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 206 373-3666 +title: Associate Janitorial Admin +userPassword: Password1 +uid: MalynowC +givenName: Cherry +mail: MalynowC@18892b15c58d47f6840bb6c23b52349b.bitwarden.com +carLicense: KJU2UM +departmentNumber: 3164 +employeeType: Employee +homePhone: +1 206 118-9199 +initials: C. M. +mobile: +1 206 423-8282 +pager: +1 206 452-1189 +roomNumber: 8338 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Annmarie Brunet,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annmarie Brunet +sn: Brunet +description: This is Annmarie Brunet's description +facsimileTelephoneNumber: +1 510 780-3203 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 393-1289 +title: Associate Payroll Architect +userPassword: Password1 +uid: BrunetA +givenName: Annmarie +mail: BrunetA@a371212c7c2b4312bdb15d1cffb21938.bitwarden.com +carLicense: 9X41E6 +departmentNumber: 2044 +employeeType: Contract +homePhone: +1 510 190-9894 +initials: A. B. +mobile: +1 510 919-9971 +pager: +1 510 852-9191 +roomNumber: 9601 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cecilia Xmssupport +sn: Xmssupport +description: This is Cecilia Xmssupport's description +facsimileTelephoneNumber: +1 408 475-8821 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 408 986-4608 +title: Master Payroll Admin +userPassword: Password1 +uid: XmssuppC +givenName: Cecilia +mail: XmssuppC@3b0207fba5944fd0a6dca16921952a03.bitwarden.com +carLicense: V9U6MT +departmentNumber: 7034 +employeeType: Contract +homePhone: +1 408 735-5676 +initials: C. X. +mobile: +1 408 675-8441 +pager: +1 408 320-2410 +roomNumber: 9406 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Icy Meleski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Icy Meleski +sn: Meleski +description: This is Icy Meleski's description +facsimileTelephoneNumber: +1 206 302-6801 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 206 923-2111 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: MeleskiI +givenName: Icy +mail: MeleskiI@d1aff07ca59844dcbbf406f0fc775f82.bitwarden.com +carLicense: VL9H2H +departmentNumber: 8407 +employeeType: Normal +homePhone: +1 206 837-3486 +initials: I. M. +mobile: +1 206 652-1978 +pager: +1 206 448-7864 +roomNumber: 9654 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Apollo Mitalas,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Apollo Mitalas +sn: Mitalas +description: This is Apollo Mitalas's description +facsimileTelephoneNumber: +1 408 813-2186 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 175-3640 +title: Junior Management Consultant +userPassword: Password1 +uid: MitalasA +givenName: Apollo +mail: MitalasA@f34e8d49f28f402594055fe0901d1b44.bitwarden.com +carLicense: FL631E +departmentNumber: 3891 +employeeType: Contract +homePhone: +1 408 359-7562 +initials: A. M. +mobile: +1 408 748-4928 +pager: +1 408 374-6863 +roomNumber: 8060 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shirleen Costache,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirleen Costache +sn: Costache +description: This is Shirleen Costache's description +facsimileTelephoneNumber: +1 415 332-9256 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 347-3435 +title: Master Payroll Evangelist +userPassword: Password1 +uid: CostachS +givenName: Shirleen +mail: CostachS@8386f2764ec04b659a8fc2d330c9443a.bitwarden.com +carLicense: 3VQAS2 +departmentNumber: 6244 +employeeType: Contract +homePhone: +1 415 345-9036 +initials: S. C. +mobile: +1 415 552-7326 +pager: +1 415 358-5595 +roomNumber: 8422 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tulip Bannan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tulip Bannan +sn: Bannan +description: This is Tulip Bannan's description +facsimileTelephoneNumber: +1 818 244-4019 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 534-4329 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: BannanT +givenName: Tulip +mail: BannanT@c6a8d6d12ae045f8ba075455c769a929.bitwarden.com +carLicense: DA3FN3 +departmentNumber: 1799 +employeeType: Normal +homePhone: +1 818 406-3206 +initials: T. B. +mobile: +1 818 868-1711 +pager: +1 818 188-7221 +roomNumber: 8869 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mareah Mior,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mareah Mior +sn: Mior +description: This is Mareah Mior's description +facsimileTelephoneNumber: +1 213 105-1455 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 609-1619 +title: Junior Product Development Architect +userPassword: Password1 +uid: MiorM +givenName: Mareah +mail: MiorM@ba2be91aa4064d8bbc344c883875d66e.bitwarden.com +carLicense: 5MUJ38 +departmentNumber: 7924 +employeeType: Normal +homePhone: +1 213 207-8451 +initials: M. M. +mobile: +1 213 434-7421 +pager: +1 213 272-5162 +roomNumber: 8932 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terrijo Spaugh +sn: Spaugh +description: This is Terrijo Spaugh's description +facsimileTelephoneNumber: +1 510 340-7179 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 816-5781 +title: Associate Administrative Punk +userPassword: Password1 +uid: SpaughT +givenName: Terrijo +mail: SpaughT@34766460128a4ee582041f543b9bd242.bitwarden.com +carLicense: WN88AH +departmentNumber: 4992 +employeeType: Normal +homePhone: +1 510 376-8358 +initials: T. S. +mobile: +1 510 814-5095 +pager: +1 510 692-6375 +roomNumber: 9238 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lorraine Sikri,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorraine Sikri +sn: Sikri +description: This is Lorraine Sikri's description +facsimileTelephoneNumber: +1 415 734-5846 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 739-1090 +title: Master Product Development Vice President +userPassword: Password1 +uid: SikriL +givenName: Lorraine +mail: SikriL@5de6e5b11af645c19702df156533c6ff.bitwarden.com +carLicense: VKSQ3K +departmentNumber: 7382 +employeeType: Normal +homePhone: +1 415 360-1667 +initials: L. S. +mobile: +1 415 680-8828 +pager: +1 415 144-9861 +roomNumber: 9752 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenora DeBernardo +sn: DeBernardo +description: This is Lenora DeBernardo's description +facsimileTelephoneNumber: +1 804 860-3309 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 248-7411 +title: Chief Product Development Fellow +userPassword: Password1 +uid: DeBernaL +givenName: Lenora +mail: DeBernaL@f9e807ad6c8448a7b4463b10b5cc7416.bitwarden.com +carLicense: ONC0D6 +departmentNumber: 7836 +employeeType: Normal +homePhone: +1 804 100-3977 +initials: L. D. +mobile: +1 804 207-3809 +pager: +1 804 216-3560 +roomNumber: 8606 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karyn Laroche,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karyn Laroche +sn: Laroche +description: This is Karyn Laroche's description +facsimileTelephoneNumber: +1 818 184-5549 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 239-7253 +title: Chief Payroll Engineer +userPassword: Password1 +uid: LarocheK +givenName: Karyn +mail: LarocheK@a5bee62da8ef4e9d8313518642926292.bitwarden.com +carLicense: 8GDTUV +departmentNumber: 8935 +employeeType: Employee +homePhone: +1 818 153-3897 +initials: K. L. +mobile: +1 818 184-7282 +pager: +1 818 144-1648 +roomNumber: 9261 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Koral Carkner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koral Carkner +sn: Carkner +description: This is Koral Carkner's description +facsimileTelephoneNumber: +1 408 348-7550 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 371-8856 +title: Master Peons Technician +userPassword: Password1 +uid: CarknerK +givenName: Koral +mail: CarknerK@8d84473559264c6592d3bbcbad962447.bitwarden.com +carLicense: C4R14C +departmentNumber: 7437 +employeeType: Contract +homePhone: +1 408 199-8159 +initials: K. C. +mobile: +1 408 542-8518 +pager: +1 408 342-4840 +roomNumber: 8224 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hyung Harada,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hyung Harada +sn: Harada +description: This is Hyung Harada's description +facsimileTelephoneNumber: +1 818 506-2653 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 695-8192 +title: Master Peons Technician +userPassword: Password1 +uid: HaradaH +givenName: Hyung +mail: HaradaH@bd28f191e92142cf98b8765cb13928aa.bitwarden.com +carLicense: TLXMBG +departmentNumber: 5049 +employeeType: Normal +homePhone: +1 818 463-5146 +initials: H. H. +mobile: +1 818 583-1220 +pager: +1 818 222-1933 +roomNumber: 9221 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lottie Fernald,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lottie Fernald +sn: Fernald +description: This is Lottie Fernald's description +facsimileTelephoneNumber: +1 206 115-5564 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 856-9573 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: FernaldL +givenName: Lottie +mail: FernaldL@d749086910384a37b3e64dd02ab05f90.bitwarden.com +carLicense: 3TC71L +departmentNumber: 7414 +employeeType: Employee +homePhone: +1 206 320-2656 +initials: L. F. +mobile: +1 206 628-9943 +pager: +1 206 802-2187 +roomNumber: 9429 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Edyta Samalot,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edyta Samalot +sn: Samalot +description: This is Edyta Samalot's description +facsimileTelephoneNumber: +1 818 603-3262 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 540-4106 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: SamalotE +givenName: Edyta +mail: SamalotE@7848d01e47bb47dd88ac5b785d126995.bitwarden.com +carLicense: XRHTYP +departmentNumber: 2551 +employeeType: Normal +homePhone: +1 818 196-5449 +initials: E. S. +mobile: +1 818 739-4656 +pager: +1 818 261-6460 +roomNumber: 9290 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eoin Morrin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eoin Morrin +sn: Morrin +description: This is Eoin Morrin's description +facsimileTelephoneNumber: +1 415 692-2146 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 538-1735 +title: Master Product Development Warrior +userPassword: Password1 +uid: MorrinE +givenName: Eoin +mail: MorrinE@28a93f8db65e4c7896a7639f8d2d6945.bitwarden.com +carLicense: IN72L2 +departmentNumber: 4115 +employeeType: Employee +homePhone: +1 415 996-4088 +initials: E. M. +mobile: +1 415 571-8200 +pager: +1 415 753-8900 +roomNumber: 9889 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Froukje Viney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Froukje Viney +sn: Viney +description: This is Froukje Viney's description +facsimileTelephoneNumber: +1 818 793-4735 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 837-5482 +title: Junior Administrative Developer +userPassword: Password1 +uid: VineyF +givenName: Froukje +mail: VineyF@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com +carLicense: N3IG24 +departmentNumber: 3598 +employeeType: Contract +homePhone: +1 818 259-7363 +initials: F. V. +mobile: +1 818 838-7788 +pager: +1 818 164-7102 +roomNumber: 9738 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sir Rivera,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sir Rivera +sn: Rivera +description: This is Sir Rivera's description +facsimileTelephoneNumber: +1 213 443-4091 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 213 964-9480 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: RiveraS +givenName: Sir +mail: RiveraS@2f8feafb11c746348907c348d024b2dd.bitwarden.com +carLicense: YKWFJP +departmentNumber: 8318 +employeeType: Employee +homePhone: +1 213 730-9979 +initials: S. R. +mobile: +1 213 137-4828 +pager: +1 213 473-6664 +roomNumber: 8421 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thompson Cauthen +sn: Cauthen +description: This is Thompson Cauthen's description +facsimileTelephoneNumber: +1 213 870-6024 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 609-1605 +title: Master Product Testing Czar +userPassword: Password1 +uid: CauthenT +givenName: Thompson +mail: CauthenT@074a9a8e88a74ca2b469a141eb213f61.bitwarden.com +carLicense: DC03OQ +departmentNumber: 1798 +employeeType: Normal +homePhone: +1 213 401-8991 +initials: T. C. +mobile: +1 213 948-7495 +pager: +1 213 928-6217 +roomNumber: 9156 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ky LEcuyer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ky LEcuyer +sn: LEcuyer +description: This is Ky LEcuyer's description +facsimileTelephoneNumber: +1 415 678-7300 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 766-6230 +title: Master Peons Stooge +userPassword: Password1 +uid: LEcuyerK +givenName: Ky +mail: LEcuyerK@5acaf493974e4933b27d5e78e25585d3.bitwarden.com +carLicense: XNNO14 +departmentNumber: 9670 +employeeType: Employee +homePhone: +1 415 429-3912 +initials: K. L. +mobile: +1 415 978-4361 +pager: +1 415 171-8596 +roomNumber: 9075 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merralee Flueckinger +sn: Flueckinger +description: This is Merralee Flueckinger's description +facsimileTelephoneNumber: +1 206 623-5763 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 206 253-3928 +title: Chief Payroll Mascot +userPassword: Password1 +uid: FlueckiM +givenName: Merralee +mail: FlueckiM@9a46632bfd114a35bc91d48e26ae1de0.bitwarden.com +carLicense: 59JNUH +departmentNumber: 7223 +employeeType: Employee +homePhone: +1 206 100-6459 +initials: M. F. +mobile: +1 206 437-2969 +pager: +1 206 253-6059 +roomNumber: 9906 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Buda Lumley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Buda Lumley +sn: Lumley +description: This is Buda Lumley's description +facsimileTelephoneNumber: +1 408 772-7176 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 867-8452 +title: Master Administrative Director +userPassword: Password1 +uid: LumleyB +givenName: Buda +mail: LumleyB@058dcb3aa7ef439b89d92834e14a6f82.bitwarden.com +carLicense: YJRAII +departmentNumber: 6795 +employeeType: Normal +homePhone: +1 408 762-1883 +initials: B. L. +mobile: +1 408 494-1386 +pager: +1 408 547-7978 +roomNumber: 9127 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Humberto Bittenbender +sn: Bittenbender +description: This is Humberto Bittenbender's description +facsimileTelephoneNumber: +1 415 990-5834 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 489-4546 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: BittenbH +givenName: Humberto +mail: BittenbH@8086b9fea7b2437cb09806e8e5c40f1a.bitwarden.com +carLicense: YK7LD0 +departmentNumber: 8035 +employeeType: Normal +homePhone: +1 415 871-9268 +initials: H. B. +mobile: +1 415 872-8534 +pager: +1 415 518-3842 +roomNumber: 8277 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marley Haley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marley Haley +sn: Haley +description: This is Marley Haley's description +facsimileTelephoneNumber: +1 213 511-3922 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 213 991-4708 +title: Junior Human Resources Admin +userPassword: Password1 +uid: HaleyM +givenName: Marley +mail: HaleyM@108017314a624d21908ec502dfe2ba35.bitwarden.com +carLicense: V093X0 +departmentNumber: 3538 +employeeType: Employee +homePhone: +1 213 976-7527 +initials: M. H. +mobile: +1 213 581-5552 +pager: +1 213 738-7682 +roomNumber: 8205 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ernestine Newport,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ernestine Newport +sn: Newport +description: This is Ernestine Newport's description +facsimileTelephoneNumber: +1 408 161-7545 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 532-5775 +title: Chief Management Assistant +userPassword: Password1 +uid: NewportE +givenName: Ernestine +mail: NewportE@5b18d26e867d4e609682950868db4cbf.bitwarden.com +carLicense: V3WRPN +departmentNumber: 8050 +employeeType: Contract +homePhone: +1 408 587-1238 +initials: E. N. +mobile: +1 408 812-7897 +pager: +1 408 944-4477 +roomNumber: 8372 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Myrtle Bernier,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrtle Bernier +sn: Bernier +description: This is Myrtle Bernier's description +facsimileTelephoneNumber: +1 415 601-8274 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 259-2983 +title: Associate Management Consultant +userPassword: Password1 +uid: BernierM +givenName: Myrtle +mail: BernierM@882aa483754845e7b3e2e0ad8b5f2465.bitwarden.com +carLicense: CLINVB +departmentNumber: 7198 +employeeType: Contract +homePhone: +1 415 257-3981 +initials: M. B. +mobile: +1 415 858-4521 +pager: +1 415 586-6868 +roomNumber: 8423 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LeiSee Mikhail +sn: Mikhail +description: This is LeiSee Mikhail's description +facsimileTelephoneNumber: +1 818 276-7769 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 818 123-7261 +title: Chief Janitorial Admin +userPassword: Password1 +uid: MikhailL +givenName: LeiSee +mail: MikhailL@07ab31b82e2e4a9b8fae125fc95e3c8f.bitwarden.com +carLicense: RNPTXM +departmentNumber: 4318 +employeeType: Normal +homePhone: +1 818 620-5646 +initials: L. M. +mobile: +1 818 446-5553 +pager: +1 818 113-7781 +roomNumber: 9347 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Karil Chennette,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karil Chennette +sn: Chennette +description: This is Karil Chennette's description +facsimileTelephoneNumber: +1 213 668-1547 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 270-8530 +title: Master Management Madonna +userPassword: Password1 +uid: ChennetK +givenName: Karil +mail: ChennetK@dbab907c037c4b6c9575abe77a070057.bitwarden.com +carLicense: FSIJ46 +departmentNumber: 8037 +employeeType: Contract +homePhone: +1 213 186-3512 +initials: K. C. +mobile: +1 213 490-8456 +pager: +1 213 998-2736 +roomNumber: 8150 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Liz Burrowes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liz Burrowes +sn: Burrowes +description: This is Liz Burrowes's description +facsimileTelephoneNumber: +1 415 306-5684 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 415 324-2357 +title: Supreme Product Testing Dictator +userPassword: Password1 +uid: BurroweL +givenName: Liz +mail: BurroweL@bce34cfdf7754b3b8c5551673f06b428.bitwarden.com +carLicense: QF1YVJ +departmentNumber: 1273 +employeeType: Normal +homePhone: +1 415 413-3434 +initials: L. B. +mobile: +1 415 947-3500 +pager: +1 415 537-4472 +roomNumber: 9115 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ivona Koch,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivona Koch +sn: Koch +description: This is Ivona Koch's description +facsimileTelephoneNumber: +1 415 646-1492 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 921-6340 +title: Chief Administrative Consultant +userPassword: Password1 +uid: KochI +givenName: Ivona +mail: KochI@77df1d4a30ab443892398806ba3c7576.bitwarden.com +carLicense: W12QQR +departmentNumber: 8352 +employeeType: Employee +homePhone: +1 415 635-4572 +initials: I. K. +mobile: +1 415 384-9629 +pager: +1 415 372-8447 +roomNumber: 9605 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Berta Mou,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berta Mou +sn: Mou +description: This is Berta Mou's description +facsimileTelephoneNumber: +1 408 193-4006 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 765-3619 +title: Junior Management Warrior +userPassword: Password1 +uid: MouB +givenName: Berta +mail: MouB@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com +carLicense: EI8YYE +departmentNumber: 5012 +employeeType: Contract +homePhone: +1 408 280-5334 +initials: B. M. +mobile: +1 408 751-2633 +pager: +1 408 395-6570 +roomNumber: 9401 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pris Freire,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pris Freire +sn: Freire +description: This is Pris Freire's description +facsimileTelephoneNumber: +1 206 640-6157 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 270-7310 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: FreireP +givenName: Pris +mail: FreireP@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com +carLicense: VVS4JQ +departmentNumber: 1139 +employeeType: Employee +homePhone: +1 206 629-8548 +initials: P. F. +mobile: +1 206 513-6581 +pager: +1 206 278-3685 +roomNumber: 9424 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Toyanne Ragde,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toyanne Ragde +sn: Ragde +description: This is Toyanne Ragde's description +facsimileTelephoneNumber: +1 818 160-7925 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 553-3261 +title: Supreme Administrative Developer +userPassword: Password1 +uid: RagdeT +givenName: Toyanne +mail: RagdeT@7056e30d771245dcacf5054aa8552268.bitwarden.com +carLicense: 1KU6JW +departmentNumber: 8114 +employeeType: Employee +homePhone: +1 818 559-9247 +initials: T. R. +mobile: +1 818 894-3288 +pager: +1 818 779-8927 +roomNumber: 8384 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Domenick Zingeler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Domenick Zingeler +sn: Zingeler +description: This is Domenick Zingeler's description +facsimileTelephoneNumber: +1 206 447-2373 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 271-1676 +title: Junior Management Stooge +userPassword: Password1 +uid: ZingeleD +givenName: Domenick +mail: ZingeleD@8289a29e96624f61a290ca3e806f9dd8.bitwarden.com +carLicense: EH8TVJ +departmentNumber: 1492 +employeeType: Contract +homePhone: +1 206 733-3812 +initials: D. Z. +mobile: +1 206 558-7908 +pager: +1 206 511-3319 +roomNumber: 8730 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Stergios Incze,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stergios Incze +sn: Incze +description: This is Stergios Incze's description +facsimileTelephoneNumber: +1 206 843-3714 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 343-6122 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: InczeS +givenName: Stergios +mail: InczeS@733a0ed9ca244d1a87001be1b9e9514d.bitwarden.com +carLicense: 8OHFP8 +departmentNumber: 5165 +employeeType: Contract +homePhone: +1 206 556-7693 +initials: S. I. +mobile: +1 206 190-2267 +pager: +1 206 586-2485 +roomNumber: 8088 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dagmar Zegray +sn: Zegray +description: This is Dagmar Zegray's description +facsimileTelephoneNumber: +1 804 368-5195 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 881-4492 +title: Chief Human Resources President +userPassword: Password1 +uid: ZegrayD +givenName: Dagmar +mail: ZegrayD@cc36ba74c0ba485aa780b52eb8bbc932.bitwarden.com +carLicense: LQJQ8K +departmentNumber: 4023 +employeeType: Normal +homePhone: +1 804 228-1487 +initials: D. Z. +mobile: +1 804 764-9138 +pager: +1 804 636-3850 +roomNumber: 8134 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Habeeb Ziebarth +sn: Ziebarth +description: This is Habeeb Ziebarth's description +facsimileTelephoneNumber: +1 510 793-6270 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 942-5552 +title: Associate Janitorial Manager +userPassword: Password1 +uid: ZiebartH +givenName: Habeeb +mail: ZiebartH@678eafe7ca0c42cbb92380789ecb5326.bitwarden.com +carLicense: JYXTKR +departmentNumber: 3480 +employeeType: Contract +homePhone: +1 510 614-9011 +initials: H. Z. +mobile: +1 510 761-6315 +pager: +1 510 606-9586 +roomNumber: 9750 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milou Ozyetis +sn: Ozyetis +description: This is Milou Ozyetis's description +facsimileTelephoneNumber: +1 213 741-4523 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 922-7877 +title: Associate Janitorial Evangelist +userPassword: Password1 +uid: OzyetisM +givenName: Milou +mail: OzyetisM@2760ce3bd4ad488f9656332aa7dc01c4.bitwarden.com +carLicense: 16OWV2 +departmentNumber: 9721 +employeeType: Employee +homePhone: +1 213 457-1317 +initials: M. O. +mobile: +1 213 679-2600 +pager: +1 213 411-8472 +roomNumber: 9719 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hera Haupt,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hera Haupt +sn: Haupt +description: This is Hera Haupt's description +facsimileTelephoneNumber: +1 213 760-5681 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 726-1780 +title: Associate Administrative Pinhead +userPassword: Password1 +uid: HauptH +givenName: Hera +mail: HauptH@887a5031be2f4823b51a61ce6f7368d9.bitwarden.com +carLicense: NXC9UR +departmentNumber: 5048 +employeeType: Normal +homePhone: +1 213 358-9757 +initials: H. H. +mobile: +1 213 386-7330 +pager: +1 213 679-9022 +roomNumber: 9893 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shahram Lahteenmaa +sn: Lahteenmaa +description: This is Shahram Lahteenmaa's description +facsimileTelephoneNumber: +1 804 413-5516 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 194-4172 +title: Supreme Management Dictator +userPassword: Password1 +uid: LahteenS +givenName: Shahram +mail: LahteenS@0a64fcd3d4a341f2b777b42a710cb464.bitwarden.com +carLicense: WOAX5C +departmentNumber: 7016 +employeeType: Employee +homePhone: +1 804 402-6203 +initials: S. L. +mobile: +1 804 685-8581 +pager: +1 804 446-3939 +roomNumber: 9284 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Robena Scodras,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robena Scodras +sn: Scodras +description: This is Robena Scodras's description +facsimileTelephoneNumber: +1 510 697-8143 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 510 973-6850 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: ScodrasR +givenName: Robena +mail: ScodrasR@732895781258430aa850734a965ff9eb.bitwarden.com +carLicense: J6EBE1 +departmentNumber: 1499 +employeeType: Contract +homePhone: +1 510 234-5936 +initials: R. S. +mobile: +1 510 499-8971 +pager: +1 510 374-3607 +roomNumber: 8696 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ibby Feist,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ibby Feist +sn: Feist +description: This is Ibby Feist's description +facsimileTelephoneNumber: +1 415 565-6822 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 220-6129 +title: Junior Payroll Stooge +userPassword: Password1 +uid: FeistI +givenName: Ibby +mail: FeistI@2ccf92b2367047e48fb3d1d7db3fa4ba.bitwarden.com +carLicense: SVPO25 +departmentNumber: 6283 +employeeType: Employee +homePhone: +1 415 737-9345 +initials: I. F. +mobile: +1 415 827-1883 +pager: +1 415 366-2730 +roomNumber: 8903 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lachu Namiki,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lachu Namiki +sn: Namiki +description: This is Lachu Namiki's description +facsimileTelephoneNumber: +1 206 558-7044 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 543-6937 +title: Master Administrative Admin +userPassword: Password1 +uid: NamikiL +givenName: Lachu +mail: NamikiL@8416e448334443f3a2b36370271f352b.bitwarden.com +carLicense: NASPM7 +departmentNumber: 7377 +employeeType: Normal +homePhone: +1 206 847-3220 +initials: L. N. +mobile: +1 206 174-5571 +pager: +1 206 347-9846 +roomNumber: 8159 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saleem Rozumna +sn: Rozumna +description: This is Saleem Rozumna's description +facsimileTelephoneNumber: +1 804 634-9135 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 964-6875 +title: Master Human Resources Engineer +userPassword: Password1 +uid: RozumnaS +givenName: Saleem +mail: RozumnaS@c7cfbecdcc9244d89ede1a6fe93b790c.bitwarden.com +carLicense: VEVE1F +departmentNumber: 7694 +employeeType: Contract +homePhone: +1 804 434-2767 +initials: S. R. +mobile: +1 804 122-8916 +pager: +1 804 427-1226 +roomNumber: 8882 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regine McQuarrie +sn: McQuarrie +description: This is Regine McQuarrie's description +facsimileTelephoneNumber: +1 415 800-2907 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 485-3411 +title: Supreme Janitorial Sales Rep +userPassword: Password1 +uid: McQuarrR +givenName: Regine +mail: McQuarrR@5415c52be549497a9568e3a1cfa7947d.bitwarden.com +carLicense: WQB8N9 +departmentNumber: 1652 +employeeType: Contract +homePhone: +1 415 696-9633 +initials: R. M. +mobile: +1 415 403-3361 +pager: +1 415 109-9782 +roomNumber: 9118 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Norry Wolfs,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norry Wolfs +sn: Wolfs +description: This is Norry Wolfs's description +facsimileTelephoneNumber: +1 206 996-9931 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 717-4610 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: WolfsN +givenName: Norry +mail: WolfsN@30b2d6e7a1b342d0a3a8e7a402acef7a.bitwarden.com +carLicense: DU8L41 +departmentNumber: 7338 +employeeType: Employee +homePhone: +1 206 177-8274 +initials: N. W. +mobile: +1 206 809-8468 +pager: +1 206 741-8024 +roomNumber: 9867 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tahir Frederick,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tahir Frederick +sn: Frederick +description: This is Tahir Frederick's description +facsimileTelephoneNumber: +1 415 197-3807 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 640-8974 +title: Chief Product Development Warrior +userPassword: Password1 +uid: FrederiT +givenName: Tahir +mail: FrederiT@3f23376c66604a36ab332ecde75543de.bitwarden.com +carLicense: MOM337 +departmentNumber: 5657 +employeeType: Normal +homePhone: +1 415 836-6502 +initials: T. F. +mobile: +1 415 871-5998 +pager: +1 415 639-3406 +roomNumber: 9450 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marlies Mraz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlies Mraz +sn: Mraz +description: This is Marlies Mraz's description +facsimileTelephoneNumber: +1 415 492-8779 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 531-2372 +title: Supreme Product Testing Sales Rep +userPassword: Password1 +uid: MrazM +givenName: Marlies +mail: MrazM@ddd14554e5954403b2fd4a0b5c5617c7.bitwarden.com +carLicense: 92TPB7 +departmentNumber: 4882 +employeeType: Employee +homePhone: +1 415 933-7266 +initials: M. M. +mobile: +1 415 387-8605 +pager: +1 415 536-3692 +roomNumber: 9663 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Farooq Gaebel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farooq Gaebel +sn: Gaebel +description: This is Farooq Gaebel's description +facsimileTelephoneNumber: +1 510 769-1914 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 510 354-3885 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: GaebelF +givenName: Farooq +mail: GaebelF@cf8b4b591c2f4387aae0bb010f18f55b.bitwarden.com +carLicense: 13YSO6 +departmentNumber: 9835 +employeeType: Contract +homePhone: +1 510 763-4948 +initials: F. G. +mobile: +1 510 874-4485 +pager: +1 510 332-6045 +roomNumber: 8863 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnathan Kuzemka +sn: Kuzemka +description: This is Johnathan Kuzemka's description +facsimileTelephoneNumber: +1 415 565-8784 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 138-1105 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: KuzemkaJ +givenName: Johnathan +mail: KuzemkaJ@6de317d5c17343b4a932206ca859cf5d.bitwarden.com +carLicense: CVDC9O +departmentNumber: 6254 +employeeType: Contract +homePhone: +1 415 461-4672 +initials: J. K. +mobile: +1 415 297-5219 +pager: +1 415 296-2683 +roomNumber: 8356 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Janell Rolston,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janell Rolston +sn: Rolston +description: This is Janell Rolston's description +facsimileTelephoneNumber: +1 213 210-5989 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 213 158-5920 +title: Master Product Development Visionary +userPassword: Password1 +uid: RolstonJ +givenName: Janell +mail: RolstonJ@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com +carLicense: NB4QU1 +departmentNumber: 3617 +employeeType: Normal +homePhone: +1 213 453-9875 +initials: J. R. +mobile: +1 213 111-3937 +pager: +1 213 596-7332 +roomNumber: 9070 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jere Jubenville,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jere Jubenville +sn: Jubenville +description: This is Jere Jubenville's description +facsimileTelephoneNumber: +1 408 945-7313 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 635-3804 +title: Supreme Payroll Director +userPassword: Password1 +uid: JubenviJ +givenName: Jere +mail: JubenviJ@3d384c725592473eb1a1b68befde2a5a.bitwarden.com +carLicense: 1LIF6E +departmentNumber: 1941 +employeeType: Employee +homePhone: +1 408 456-3233 +initials: J. J. +mobile: +1 408 520-5518 +pager: +1 408 250-2300 +roomNumber: 9756 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Noelyn Benham,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noelyn Benham +sn: Benham +description: This is Noelyn Benham's description +facsimileTelephoneNumber: +1 408 437-3777 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 122-4250 +title: Associate Administrative Admin +userPassword: Password1 +uid: BenhamN +givenName: Noelyn +mail: BenhamN@a681f6dfeb8340649e58be794854640d.bitwarden.com +carLicense: TF35T7 +departmentNumber: 9646 +employeeType: Employee +homePhone: +1 408 929-3123 +initials: N. B. +mobile: +1 408 898-4554 +pager: +1 408 577-3298 +roomNumber: 8783 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maury Ismail,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maury Ismail +sn: Ismail +description: This is Maury Ismail's description +facsimileTelephoneNumber: +1 818 369-6497 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 489-4127 +title: Associate Management Fellow +userPassword: Password1 +uid: IsmailM +givenName: Maury +mail: IsmailM@368b49862ec74ac1974a058d04889202.bitwarden.com +carLicense: N3JB4D +departmentNumber: 7384 +employeeType: Contract +homePhone: +1 818 892-4718 +initials: M. I. +mobile: +1 818 176-5800 +pager: +1 818 161-2193 +roomNumber: 9094 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherie Scrbacic +sn: Scrbacic +description: This is Sherie Scrbacic's description +facsimileTelephoneNumber: +1 206 709-9018 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 206 260-4441 +title: Chief Product Testing Artist +userPassword: Password1 +uid: ScrbaciS +givenName: Sherie +mail: ScrbaciS@f2e9e9593d6a4cd0a817bf5143921c87.bitwarden.com +carLicense: VPVKAY +departmentNumber: 6539 +employeeType: Contract +homePhone: +1 206 279-1979 +initials: S. S. +mobile: +1 206 530-1330 +pager: +1 206 168-3628 +roomNumber: 9249 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nixie Cusato,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nixie Cusato +sn: Cusato +description: This is Nixie Cusato's description +facsimileTelephoneNumber: +1 415 718-5151 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 754-6028 +title: Junior Administrative Manager +userPassword: Password1 +uid: CusatoN +givenName: Nixie +mail: CusatoN@108c2ffc1189457d80b27e9b862163f4.bitwarden.com +carLicense: 0PF77M +departmentNumber: 8390 +employeeType: Employee +homePhone: +1 415 490-1388 +initials: N. C. +mobile: +1 415 470-6136 +pager: +1 415 506-4826 +roomNumber: 8103 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alastair Slozil,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alastair Slozil +sn: Slozil +description: This is Alastair Slozil's description +facsimileTelephoneNumber: +1 408 974-1392 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 845-3906 +title: Chief Administrative Vice President +userPassword: Password1 +uid: SlozilA +givenName: Alastair +mail: SlozilA@97e0ce17a4af42e594025cdd4659fe64.bitwarden.com +carLicense: B91735 +departmentNumber: 4850 +employeeType: Normal +homePhone: +1 408 314-5558 +initials: A. S. +mobile: +1 408 725-7795 +pager: +1 408 864-3538 +roomNumber: 9466 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Georgena Behrens,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgena Behrens +sn: Behrens +description: This is Georgena Behrens's description +facsimileTelephoneNumber: +1 408 240-8392 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 996-6669 +title: Chief Management Punk +userPassword: Password1 +uid: BehrensG +givenName: Georgena +mail: BehrensG@f10e733ab73f49deaef5dee5420e792f.bitwarden.com +carLicense: AI4YG6 +departmentNumber: 3991 +employeeType: Normal +homePhone: +1 408 534-1650 +initials: G. B. +mobile: +1 408 677-7486 +pager: +1 408 864-3912 +roomNumber: 8837 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolene Saravanos +sn: Saravanos +description: This is Jolene Saravanos's description +facsimileTelephoneNumber: +1 206 819-8641 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 415-8127 +title: Master Human Resources Punk +userPassword: Password1 +uid: SaravanJ +givenName: Jolene +mail: SaravanJ@7b122176285947e2aaa662ba71171180.bitwarden.com +carLicense: MEX5SC +departmentNumber: 1976 +employeeType: Employee +homePhone: +1 206 731-3051 +initials: J. S. +mobile: +1 206 386-1996 +pager: +1 206 709-7941 +roomNumber: 9046 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Prayson McCormack,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prayson McCormack +sn: McCormack +description: This is Prayson McCormack's description +facsimileTelephoneNumber: +1 408 788-9314 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 283-3247 +title: Junior Management Assistant +userPassword: Password1 +uid: McCormaP +givenName: Prayson +mail: McCormaP@16ace8d5d6084f5abeb34113797f56c5.bitwarden.com +carLicense: 7GOQ7V +departmentNumber: 2321 +employeeType: Normal +homePhone: +1 408 625-5019 +initials: P. M. +mobile: +1 408 811-1403 +pager: +1 408 155-6265 +roomNumber: 9811 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sharyl Meerveld,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharyl Meerveld +sn: Meerveld +description: This is Sharyl Meerveld's description +facsimileTelephoneNumber: +1 510 166-8585 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 820-5984 +title: Supreme Management Artist +userPassword: Password1 +uid: MeervelS +givenName: Sharyl +mail: MeervelS@bbbcbff60b6546acba48c66c3d01c6a8.bitwarden.com +carLicense: D95ISA +departmentNumber: 5443 +employeeType: Contract +homePhone: +1 510 291-5098 +initials: S. M. +mobile: +1 510 292-2986 +pager: +1 510 323-6896 +roomNumber: 9790 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khurshid Kovarik +sn: Kovarik +description: This is Khurshid Kovarik's description +facsimileTelephoneNumber: +1 408 854-5769 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 679-5985 +title: Associate Administrative Admin +userPassword: Password1 +uid: KovarikK +givenName: Khurshid +mail: KovarikK@9d4064a8e48f4ac180e71fdbabc60ffb.bitwarden.com +carLicense: 8AIS3Q +departmentNumber: 6961 +employeeType: Contract +homePhone: +1 408 735-6205 +initials: K. K. +mobile: +1 408 565-3451 +pager: +1 408 557-1709 +roomNumber: 9826 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tech McAllister,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tech McAllister +sn: McAllister +description: This is Tech McAllister's description +facsimileTelephoneNumber: +1 206 328-4793 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 743-3340 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: McAllisT +givenName: Tech +mail: McAllisT@79a240440e8849ae9bc16c0dd8ed8e58.bitwarden.com +carLicense: HF6783 +departmentNumber: 6287 +employeeType: Employee +homePhone: +1 206 843-4590 +initials: T. M. +mobile: +1 206 944-3385 +pager: +1 206 172-9416 +roomNumber: 9273 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Budi Anglin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Budi Anglin +sn: Anglin +description: This is Budi Anglin's description +facsimileTelephoneNumber: +1 415 487-8936 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 245-2372 +title: Master Payroll Developer +userPassword: Password1 +uid: AnglinB +givenName: Budi +mail: AnglinB@67ca48342c3741e5ba95513725c86734.bitwarden.com +carLicense: IXYWGE +departmentNumber: 4233 +employeeType: Employee +homePhone: +1 415 102-6781 +initials: B. A. +mobile: +1 415 385-9530 +pager: +1 415 836-7487 +roomNumber: 8548 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Business Marcelissen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Business Marcelissen +sn: Marcelissen +description: This is Business Marcelissen's description +facsimileTelephoneNumber: +1 804 935-5454 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 336-5262 +title: Junior Janitorial President +userPassword: Password1 +uid: MarceliB +givenName: Business +mail: MarceliB@43eeea353b144740b2e11c7fee2c8031.bitwarden.com +carLicense: QHJV8U +departmentNumber: 5439 +employeeType: Contract +homePhone: +1 804 320-6497 +initials: B. M. +mobile: +1 804 684-2291 +pager: +1 804 234-9575 +roomNumber: 8682 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=MaryKay Wilcox,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryKay Wilcox +sn: Wilcox +description: This is MaryKay Wilcox's description +facsimileTelephoneNumber: +1 213 376-9237 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 340-4498 +title: Chief Management Technician +userPassword: Password1 +uid: WilcoxM +givenName: MaryKay +mail: WilcoxM@3ae6b803292e4da4b28cd13a1bfe807a.bitwarden.com +carLicense: PQH7P5 +departmentNumber: 2445 +employeeType: Employee +homePhone: +1 213 790-2599 +initials: M. W. +mobile: +1 213 696-1143 +pager: +1 213 540-1431 +roomNumber: 9409 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ingeborg Ferraro,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ingeborg Ferraro +sn: Ferraro +description: This is Ingeborg Ferraro's description +facsimileTelephoneNumber: +1 408 911-4038 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 519-8779 +title: Associate Management President +userPassword: Password1 +uid: FerraroI +givenName: Ingeborg +mail: FerraroI@54b7c6b9ae32434d95317388edf7be04.bitwarden.com +carLicense: NXAJXK +departmentNumber: 5886 +employeeType: Normal +homePhone: +1 408 807-5946 +initials: I. F. +mobile: +1 408 888-2211 +pager: +1 408 961-7583 +roomNumber: 8991 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dulcinea Merrils,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulcinea Merrils +sn: Merrils +description: This is Dulcinea Merrils's description +facsimileTelephoneNumber: +1 408 623-2164 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 131-8478 +title: Master Peons Writer +userPassword: Password1 +uid: MerrilsD +givenName: Dulcinea +mail: MerrilsD@b7ede65f1eb44e418de85b304b190714.bitwarden.com +carLicense: VBJ1YI +departmentNumber: 4771 +employeeType: Contract +homePhone: +1 408 328-5505 +initials: D. M. +mobile: +1 408 552-9621 +pager: +1 408 960-9568 +roomNumber: 9061 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chiquia Tanner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chiquia Tanner +sn: Tanner +description: This is Chiquia Tanner's description +facsimileTelephoneNumber: +1 408 342-4941 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 527-5957 +title: Chief Peons Visionary +userPassword: Password1 +uid: TannerC +givenName: Chiquia +mail: TannerC@0c7266e301f84221bfdf197ea43adb91.bitwarden.com +carLicense: C1TOXQ +departmentNumber: 1750 +employeeType: Contract +homePhone: +1 408 723-6094 +initials: C. T. +mobile: +1 408 722-2820 +pager: +1 408 437-2394 +roomNumber: 8549 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dorreen Zrobok,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorreen Zrobok +sn: Zrobok +description: This is Dorreen Zrobok's description +facsimileTelephoneNumber: +1 206 169-4680 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 140-2291 +title: Associate Management Stooge +userPassword: Password1 +uid: ZrobokD +givenName: Dorreen +mail: ZrobokD@7a24e66dbfc94daf862a7e6a6968c7c6.bitwarden.com +carLicense: E1XOPC +departmentNumber: 4767 +employeeType: Contract +homePhone: +1 206 791-4478 +initials: D. Z. +mobile: +1 206 149-4813 +pager: +1 206 358-3645 +roomNumber: 8771 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Floris Bui,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Floris Bui +sn: Bui +description: This is Floris Bui's description +facsimileTelephoneNumber: +1 408 713-5427 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 407-2890 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: BuiF +givenName: Floris +mail: BuiF@674b214928e2430ab12d2c738240bab6.bitwarden.com +carLicense: UT8MXO +departmentNumber: 7065 +employeeType: Employee +homePhone: +1 408 102-6121 +initials: F. B. +mobile: +1 408 725-3046 +pager: +1 408 588-8998 +roomNumber: 9277 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maarten Braum,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maarten Braum +sn: Braum +description: This is Maarten Braum's description +facsimileTelephoneNumber: +1 408 658-4837 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 130-1916 +title: Junior Human Resources Mascot +userPassword: Password1 +uid: BraumM +givenName: Maarten +mail: BraumM@a92e8ef5bd3649d081a744b7f12ac2d9.bitwarden.com +carLicense: 5SM0N6 +departmentNumber: 7362 +employeeType: Normal +homePhone: +1 408 920-8904 +initials: M. B. +mobile: +1 408 473-6728 +pager: +1 408 363-2093 +roomNumber: 8514 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibelle Hoelscher +sn: Hoelscher +description: This is Sibelle Hoelscher's description +facsimileTelephoneNumber: +1 408 986-1141 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 285-7762 +title: Associate Administrative Manager +userPassword: Password1 +uid: HoelschS +givenName: Sibelle +mail: HoelschS@25af2fd0acb14921ba7d57172ced27e7.bitwarden.com +carLicense: MF0GGF +departmentNumber: 8395 +employeeType: Employee +homePhone: +1 408 806-2609 +initials: S. H. +mobile: +1 408 173-9377 +pager: +1 408 632-6232 +roomNumber: 9860 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shane Levert,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shane Levert +sn: Levert +description: This is Shane Levert's description +facsimileTelephoneNumber: +1 408 969-1988 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 489-7264 +title: Supreme Administrative Director +userPassword: Password1 +uid: LevertS +givenName: Shane +mail: LevertS@6ae361d0671f4e45b2dca3f489ab2ec1.bitwarden.com +carLicense: RKJOXI +departmentNumber: 5083 +employeeType: Employee +homePhone: +1 408 703-3659 +initials: S. L. +mobile: +1 408 438-3133 +pager: +1 408 543-3404 +roomNumber: 9173 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hesther Gunderson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hesther Gunderson +sn: Gunderson +description: This is Hesther Gunderson's description +facsimileTelephoneNumber: +1 510 411-7526 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 844-3422 +title: Junior Management Consultant +userPassword: Password1 +uid: GundersH +givenName: Hesther +mail: GundersH@981b6315c22b4f71987c74b5e187713d.bitwarden.com +carLicense: FYN9TP +departmentNumber: 8847 +employeeType: Normal +homePhone: +1 510 168-4430 +initials: H. G. +mobile: +1 510 424-8188 +pager: +1 510 691-3828 +roomNumber: 8314 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Korney Walkley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Korney Walkley +sn: Walkley +description: This is Korney Walkley's description +facsimileTelephoneNumber: +1 510 521-1720 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 519-5556 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: WalkleyK +givenName: Korney +mail: WalkleyK@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com +carLicense: V2UMMF +departmentNumber: 3023 +employeeType: Normal +homePhone: +1 510 102-2871 +initials: K. W. +mobile: +1 510 804-2178 +pager: +1 510 307-1640 +roomNumber: 9113 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamillah Ramroop +sn: Ramroop +description: This is Kamillah Ramroop's description +facsimileTelephoneNumber: +1 510 644-2944 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 607-7089 +title: Supreme Human Resources Consultant +userPassword: Password1 +uid: RamroopK +givenName: Kamillah +mail: RamroopK@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com +carLicense: WKPE60 +departmentNumber: 1104 +employeeType: Employee +homePhone: +1 510 679-2942 +initials: K. R. +mobile: +1 510 312-1384 +pager: +1 510 441-6733 +roomNumber: 9350 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Enrica Keates,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Enrica Keates +sn: Keates +description: This is Enrica Keates's description +facsimileTelephoneNumber: +1 804 696-8826 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 804 452-2374 +title: Supreme Human Resources President +userPassword: Password1 +uid: KeatesE +givenName: Enrica +mail: KeatesE@cc8182e6de0c4840a0e434e3f5bc6e84.bitwarden.com +carLicense: WOT8T8 +departmentNumber: 4407 +employeeType: Employee +homePhone: +1 804 959-9202 +initials: E. K. +mobile: +1 804 100-7652 +pager: +1 804 710-4209 +roomNumber: 9028 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sir Benda,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sir Benda +sn: Benda +description: This is Sir Benda's description +facsimileTelephoneNumber: +1 213 511-8183 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 693-6314 +title: Junior Management Developer +userPassword: Password1 +uid: BendaS +givenName: Sir +mail: BendaS@583357fdc26f4393af80e3436e701033.bitwarden.com +carLicense: MRWRXJ +departmentNumber: 1259 +employeeType: Employee +homePhone: +1 213 617-7905 +initials: S. B. +mobile: +1 213 174-8766 +pager: +1 213 904-1204 +roomNumber: 9195 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Samara Edmunds,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Samara Edmunds +sn: Edmunds +description: This is Samara Edmunds's description +facsimileTelephoneNumber: +1 510 171-7897 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 510 428-4093 +title: Associate Peons Warrior +userPassword: Password1 +uid: EdmundsS +givenName: Samara +mail: EdmundsS@dfd74a54e46140bbbd208154864b4090.bitwarden.com +carLicense: VIJ6YI +departmentNumber: 9237 +employeeType: Normal +homePhone: +1 510 955-4070 +initials: S. E. +mobile: +1 510 284-4696 +pager: +1 510 131-1485 +roomNumber: 9110 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Eoin Moomey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eoin Moomey +sn: Moomey +description: This is Eoin Moomey's description +facsimileTelephoneNumber: +1 213 284-2892 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 213 755-7449 +title: Junior Payroll President +userPassword: Password1 +uid: MoomeyE +givenName: Eoin +mail: MoomeyE@9915e6a9d4174e1a84331ee3926d409a.bitwarden.com +carLicense: Q5OTNX +departmentNumber: 2355 +employeeType: Normal +homePhone: +1 213 320-9539 +initials: E. M. +mobile: +1 213 981-8507 +pager: +1 213 163-2965 +roomNumber: 8045 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shandy Sambi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shandy Sambi +sn: Sambi +description: This is Shandy Sambi's description +facsimileTelephoneNumber: +1 804 506-3103 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 688-2794 +title: Chief Payroll Visionary +userPassword: Password1 +uid: SambiS +givenName: Shandy +mail: SambiS@5e8f47bf29ef420c9f1d1267ba3841e3.bitwarden.com +carLicense: KF6K0M +departmentNumber: 1662 +employeeType: Employee +homePhone: +1 804 499-3074 +initials: S. S. +mobile: +1 804 187-2724 +pager: +1 804 464-6319 +roomNumber: 8558 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bili Giuntini,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bili Giuntini +sn: Giuntini +description: This is Bili Giuntini's description +facsimileTelephoneNumber: +1 818 610-1437 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 958-6060 +title: Chief Administrative Engineer +userPassword: Password1 +uid: GiuntinB +givenName: Bili +mail: GiuntinB@b0acec0f1a0d41658fee0415dd506a9c.bitwarden.com +carLicense: OEXBMK +departmentNumber: 8978 +employeeType: Normal +homePhone: +1 818 526-6684 +initials: B. G. +mobile: +1 818 865-7041 +pager: +1 818 190-7916 +roomNumber: 9724 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marisca Aguinsky +sn: Aguinsky +description: This is Marisca Aguinsky's description +facsimileTelephoneNumber: +1 510 673-9891 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 540-5203 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: AguinskM +givenName: Marisca +mail: AguinskM@4e6f18df9f6440b4a4cb2cbef71a4b62.bitwarden.com +carLicense: A4F2GQ +departmentNumber: 6652 +employeeType: Employee +homePhone: +1 510 137-9482 +initials: M. A. +mobile: +1 510 545-7777 +pager: +1 510 400-9527 +roomNumber: 9254 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stephenie Steiert,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephenie Steiert +sn: Steiert +description: This is Stephenie Steiert's description +facsimileTelephoneNumber: +1 510 759-8388 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 471-1957 +title: Associate Peons Mascot +userPassword: Password1 +uid: SteiertS +givenName: Stephenie +mail: SteiertS@86fa9bbc30944a4fa4b7882b86fd11b7.bitwarden.com +carLicense: 54NYEC +departmentNumber: 3263 +employeeType: Normal +homePhone: +1 510 458-6587 +initials: S. S. +mobile: +1 510 165-2664 +pager: +1 510 666-5942 +roomNumber: 9552 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Esmaria Seddigh,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esmaria Seddigh +sn: Seddigh +description: This is Esmaria Seddigh's description +facsimileTelephoneNumber: +1 818 588-5532 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 185-5845 +title: Associate Peons President +userPassword: Password1 +uid: SeddighE +givenName: Esmaria +mail: SeddighE@bc1e9c4893b549519fdc2cec6b403596.bitwarden.com +carLicense: U53VTG +departmentNumber: 3235 +employeeType: Employee +homePhone: +1 818 618-3908 +initials: E. S. +mobile: +1 818 700-8486 +pager: +1 818 831-8615 +roomNumber: 9318 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Su Keef,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Su Keef +sn: Keef +description: This is Su Keef's description +facsimileTelephoneNumber: +1 818 589-7466 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 304-1929 +title: Associate Administrative Czar +userPassword: Password1 +uid: KeefS +givenName: Su +mail: KeefS@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com +carLicense: MXREPF +departmentNumber: 2480 +employeeType: Normal +homePhone: +1 818 929-9658 +initials: S. K. +mobile: +1 818 179-6287 +pager: +1 818 171-9011 +roomNumber: 8879 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ignatius Baines,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ignatius Baines +sn: Baines +description: This is Ignatius Baines's description +facsimileTelephoneNumber: +1 415 131-6204 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 280-4035 +title: Associate Product Development Visionary +userPassword: Password1 +uid: BainesI +givenName: Ignatius +mail: BainesI@48da65776d804c88bd44538c39d70bac.bitwarden.com +carLicense: 6U1ETE +departmentNumber: 7933 +employeeType: Contract +homePhone: +1 415 547-1313 +initials: I. B. +mobile: +1 415 505-1720 +pager: +1 415 419-1063 +roomNumber: 9555 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jenson Arbuckle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenson Arbuckle +sn: Arbuckle +description: This is Jenson Arbuckle's description +facsimileTelephoneNumber: +1 804 709-5853 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 318-3208 +title: Master Management Janitor +userPassword: Password1 +uid: ArbucklJ +givenName: Jenson +mail: ArbucklJ@3641d12680c94b38a9a8f5320636d2b3.bitwarden.com +carLicense: BPUMQ9 +departmentNumber: 1056 +employeeType: Normal +homePhone: +1 804 452-4348 +initials: J. A. +mobile: +1 804 875-7152 +pager: +1 804 908-5434 +roomNumber: 8709 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jaclin Schreiber,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaclin Schreiber +sn: Schreiber +description: This is Jaclin Schreiber's description +facsimileTelephoneNumber: +1 818 439-3109 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 989-7852 +title: Chief Management Technician +userPassword: Password1 +uid: SchreibJ +givenName: Jaclin +mail: SchreibJ@27d8375532a543b0aa95f943636664d5.bitwarden.com +carLicense: CHAB3J +departmentNumber: 3824 +employeeType: Contract +homePhone: +1 818 142-7881 +initials: J. S. +mobile: +1 818 393-7749 +pager: +1 818 508-5754 +roomNumber: 9289 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Steen Realtime,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steen Realtime +sn: Realtime +description: This is Steen Realtime's description +facsimileTelephoneNumber: +1 804 879-6822 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 149-5960 +title: Chief Administrative Director +userPassword: Password1 +uid: RealtimS +givenName: Steen +mail: RealtimS@c70dbe261a1148e99aeacce847bbdb51.bitwarden.com +carLicense: 3RHAY9 +departmentNumber: 9302 +employeeType: Employee +homePhone: +1 804 614-2651 +initials: S. R. +mobile: +1 804 266-9169 +pager: +1 804 217-6165 +roomNumber: 8986 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Edmx Walston,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edmx Walston +sn: Walston +description: This is Edmx Walston's description +facsimileTelephoneNumber: +1 206 670-3951 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 740-1760 +title: Junior Janitorial Vice President +userPassword: Password1 +uid: WalstonE +givenName: Edmx +mail: WalstonE@5088b8e166bd41bcaf6a2c598ba48813.bitwarden.com +carLicense: O19X3F +departmentNumber: 3863 +employeeType: Normal +homePhone: +1 206 857-1317 +initials: E. W. +mobile: +1 206 941-3042 +pager: +1 206 100-1652 +roomNumber: 8524 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Abu Corbeil,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abu Corbeil +sn: Corbeil +description: This is Abu Corbeil's description +facsimileTelephoneNumber: +1 206 610-5429 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 923-5514 +title: Master Peons Writer +userPassword: Password1 +uid: CorbeilA +givenName: Abu +mail: CorbeilA@68ec027fc3e8470bb6532dfe2902167e.bitwarden.com +carLicense: 30A8XV +departmentNumber: 3629 +employeeType: Employee +homePhone: +1 206 729-9098 +initials: A. C. +mobile: +1 206 452-6046 +pager: +1 206 195-8772 +roomNumber: 8214 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Annamaria Woll,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annamaria Woll +sn: Woll +description: This is Annamaria Woll's description +facsimileTelephoneNumber: +1 415 868-9682 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 808-3348 +title: Chief Administrative Warrior +userPassword: Password1 +uid: WollA +givenName: Annamaria +mail: WollA@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com +carLicense: SN6W0T +departmentNumber: 9990 +employeeType: Employee +homePhone: +1 415 836-6779 +initials: A. W. +mobile: +1 415 781-8961 +pager: +1 415 334-2238 +roomNumber: 8965 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Merdia Baer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merdia Baer +sn: Baer +description: This is Merdia Baer's description +facsimileTelephoneNumber: +1 213 303-3395 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 601-5650 +title: Supreme Human Resources Evangelist +userPassword: Password1 +uid: BaerM +givenName: Merdia +mail: BaerM@5a18e19bdaa8418c835d1d34e33216b7.bitwarden.com +carLicense: 1L7HCI +departmentNumber: 9300 +employeeType: Employee +homePhone: +1 213 360-1717 +initials: M. B. +mobile: +1 213 372-1105 +pager: +1 213 663-3483 +roomNumber: 9236 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Henrietta Horwood,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henrietta Horwood +sn: Horwood +description: This is Henrietta Horwood's description +facsimileTelephoneNumber: +1 510 194-3407 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 422-8332 +title: Chief Peons Punk +userPassword: Password1 +uid: HorwoodH +givenName: Henrietta +mail: HorwoodH@25d7b9cccaa243aa9f0b4f4799edda0c.bitwarden.com +carLicense: Y8XI5H +departmentNumber: 1223 +employeeType: Contract +homePhone: +1 510 358-7792 +initials: H. H. +mobile: +1 510 387-3836 +pager: +1 510 114-1669 +roomNumber: 8216 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherryl Alsaleh +sn: Alsaleh +description: This is Sherryl Alsaleh's description +facsimileTelephoneNumber: +1 206 131-2003 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 159-1053 +title: Supreme Peons Writer +userPassword: Password1 +uid: AlsalehS +givenName: Sherryl +mail: AlsalehS@48d89f6366ec4bc9a3dc2bca58802c17.bitwarden.com +carLicense: DOSBXN +departmentNumber: 5810 +employeeType: Contract +homePhone: +1 206 550-3693 +initials: S. A. +mobile: +1 206 134-4696 +pager: +1 206 875-8080 +roomNumber: 9325 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hannis Sooley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hannis Sooley +sn: Sooley +description: This is Hannis Sooley's description +facsimileTelephoneNumber: +1 213 789-9043 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 213 634-3973 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: SooleyH +givenName: Hannis +mail: SooleyH@e65b170ac1bc46edb99b4efe67ea9912.bitwarden.com +carLicense: Q42U33 +departmentNumber: 8796 +employeeType: Normal +homePhone: +1 213 651-2246 +initials: H. S. +mobile: +1 213 246-3669 +pager: +1 213 106-7919 +roomNumber: 9379 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Teruko Zork,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teruko Zork +sn: Zork +description: This is Teruko Zork's description +facsimileTelephoneNumber: +1 213 396-3631 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 497-9980 +title: Junior Payroll Janitor +userPassword: Password1 +uid: ZorkT +givenName: Teruko +mail: ZorkT@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com +carLicense: PU0LL7 +departmentNumber: 2045 +employeeType: Contract +homePhone: +1 213 161-6524 +initials: T. Z. +mobile: +1 213 398-2980 +pager: +1 213 193-8061 +roomNumber: 8813 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gerrit Erwin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerrit Erwin +sn: Erwin +description: This is Gerrit Erwin's description +facsimileTelephoneNumber: +1 510 165-9724 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 665-3548 +title: Supreme Payroll Architect +userPassword: Password1 +uid: ErwinG +givenName: Gerrit +mail: ErwinG@7a9c912852004a79888207561bb1435a.bitwarden.com +carLicense: BY66Q3 +departmentNumber: 1148 +employeeType: Contract +homePhone: +1 510 186-3033 +initials: G. E. +mobile: +1 510 831-7609 +pager: +1 510 726-4566 +roomNumber: 9297 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kylila Valliani,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kylila Valliani +sn: Valliani +description: This is Kylila Valliani's description +facsimileTelephoneNumber: +1 206 289-2636 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 989-1751 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: VallianK +givenName: Kylila +mail: VallianK@fd1544a938044a8db9c9f3fe2943b130.bitwarden.com +carLicense: R7RI6G +departmentNumber: 8079 +employeeType: Employee +homePhone: +1 206 726-5699 +initials: K. V. +mobile: +1 206 892-6646 +pager: +1 206 978-7816 +roomNumber: 9198 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Courtenay Meres,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Courtenay Meres +sn: Meres +description: This is Courtenay Meres's description +facsimileTelephoneNumber: +1 804 854-1741 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 618-1885 +title: Master Product Development Fellow +userPassword: Password1 +uid: MeresC +givenName: Courtenay +mail: MeresC@77aa906181cb42438460f5dd055a37d3.bitwarden.com +carLicense: 7SC5CD +departmentNumber: 6939 +employeeType: Contract +homePhone: +1 804 885-7675 +initials: C. M. +mobile: +1 804 622-7550 +pager: +1 804 588-5757 +roomNumber: 8179 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Theodora Henshaw,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theodora Henshaw +sn: Henshaw +description: This is Theodora Henshaw's description +facsimileTelephoneNumber: +1 510 827-4198 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 723-7042 +title: Chief Peons Dictator +userPassword: Password1 +uid: HenshawT +givenName: Theodora +mail: HenshawT@13acf9d4e3a0437699a9a1215c20b7b8.bitwarden.com +carLicense: SE8YW7 +departmentNumber: 2236 +employeeType: Employee +homePhone: +1 510 201-2625 +initials: T. H. +mobile: +1 510 391-2413 +pager: +1 510 488-1538 +roomNumber: 9635 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Feodora Chohan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Feodora Chohan +sn: Chohan +description: This is Feodora Chohan's description +facsimileTelephoneNumber: +1 206 332-3030 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 764-7359 +title: Supreme Payroll Janitor +userPassword: Password1 +uid: ChohanF +givenName: Feodora +mail: ChohanF@3d4675220c3446eb8911d147fd0b6a3d.bitwarden.com +carLicense: YO4HNC +departmentNumber: 5232 +employeeType: Contract +homePhone: +1 206 109-5819 +initials: F. C. +mobile: +1 206 703-8516 +pager: +1 206 402-9400 +roomNumber: 9870 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Corri Gower,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corri Gower +sn: Gower +description: This is Corri Gower's description +facsimileTelephoneNumber: +1 818 849-2371 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 267-5889 +title: Supreme Payroll President +userPassword: Password1 +uid: GowerC +givenName: Corri +mail: GowerC@7bf1692be49847d0882b5c9df56a1692.bitwarden.com +carLicense: TA5SR0 +departmentNumber: 4824 +employeeType: Normal +homePhone: +1 818 264-8515 +initials: C. G. +mobile: +1 818 965-2169 +pager: +1 818 208-8976 +roomNumber: 9165 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anthiathia Asselin +sn: Asselin +description: This is Anthiathia Asselin's description +facsimileTelephoneNumber: +1 804 825-8164 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 112-2080 +title: Master Janitorial Engineer +userPassword: Password1 +uid: AsselinA +givenName: Anthiathia +mail: AsselinA@68e7ebe37536433083e87ad5627627be.bitwarden.com +carLicense: DVB828 +departmentNumber: 1986 +employeeType: Normal +homePhone: +1 804 236-2110 +initials: A. A. +mobile: +1 804 174-7157 +pager: +1 804 911-3782 +roomNumber: 9359 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Starsdps Friedrich +sn: Friedrich +description: This is Starsdps Friedrich's description +facsimileTelephoneNumber: +1 206 724-4990 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 377-2797 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: FriedriS +givenName: Starsdps +mail: FriedriS@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com +carLicense: BVF36G +departmentNumber: 7289 +employeeType: Employee +homePhone: +1 206 962-1938 +initials: S. F. +mobile: +1 206 447-6171 +pager: +1 206 666-7392 +roomNumber: 9208 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mimi Malisic,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mimi Malisic +sn: Malisic +description: This is Mimi Malisic's description +facsimileTelephoneNumber: +1 818 350-8437 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 185-7109 +title: Supreme Payroll Artist +userPassword: Password1 +uid: MalisicM +givenName: Mimi +mail: MalisicM@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com +carLicense: 7APJON +departmentNumber: 3789 +employeeType: Normal +homePhone: +1 818 780-9411 +initials: M. M. +mobile: +1 818 213-9007 +pager: +1 818 253-1603 +roomNumber: 8911 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Farra Threader,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farra Threader +sn: Threader +description: This is Farra Threader's description +facsimileTelephoneNumber: +1 804 906-2165 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 804 516-1073 +title: Supreme Payroll Figurehead +userPassword: Password1 +uid: ThreadeF +givenName: Farra +mail: ThreadeF@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com +carLicense: F161LH +departmentNumber: 5983 +employeeType: Contract +homePhone: +1 804 668-5826 +initials: F. T. +mobile: +1 804 648-6040 +pager: +1 804 860-4435 +roomNumber: 8637 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Myrna Felske,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrna Felske +sn: Felske +description: This is Myrna Felske's description +facsimileTelephoneNumber: +1 408 678-5266 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 358-6946 +title: Junior Payroll Stooge +userPassword: Password1 +uid: FelskeM +givenName: Myrna +mail: FelskeM@71d0bccd79604a9eac86805946a4350a.bitwarden.com +carLicense: KPMGIW +departmentNumber: 1706 +employeeType: Employee +homePhone: +1 408 955-8438 +initials: M. F. +mobile: +1 408 178-2664 +pager: +1 408 618-5270 +roomNumber: 9558 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adiana Claveau,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adiana Claveau +sn: Claveau +description: This is Adiana Claveau's description +facsimileTelephoneNumber: +1 408 535-7347 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 408 196-8523 +title: Junior Human Resources Mascot +userPassword: Password1 +uid: ClaveauA +givenName: Adiana +mail: ClaveauA@396383f50c134f9f99ae930271bd4239.bitwarden.com +carLicense: FOT0CL +departmentNumber: 3606 +employeeType: Contract +homePhone: +1 408 146-8568 +initials: A. C. +mobile: +1 408 500-4131 +pager: +1 408 483-4224 +roomNumber: 9095 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ciriaco Benchimol +sn: Benchimol +description: This is Ciriaco Benchimol's description +facsimileTelephoneNumber: +1 818 982-4993 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 184-4819 +title: Master Product Testing Mascot +userPassword: Password1 +uid: BenchimC +givenName: Ciriaco +mail: BenchimC@aa28558339af40ffa3a5f1495db43172.bitwarden.com +carLicense: KJ2BKI +departmentNumber: 1578 +employeeType: Employee +homePhone: +1 818 631-1057 +initials: C. B. +mobile: +1 818 665-4587 +pager: +1 818 894-9151 +roomNumber: 8928 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brigitte Tiseo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigitte Tiseo +sn: Tiseo +description: This is Brigitte Tiseo's description +facsimileTelephoneNumber: +1 804 800-5268 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 205-9253 +title: Master Peons Vice President +userPassword: Password1 +uid: TiseoB +givenName: Brigitte +mail: TiseoB@35cbe55d624d41aaa7e77e5513292711.bitwarden.com +carLicense: G56CQQ +departmentNumber: 2273 +employeeType: Normal +homePhone: +1 804 635-4140 +initials: B. T. +mobile: +1 804 368-6988 +pager: +1 804 855-9309 +roomNumber: 8475 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Keith Jahromi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keith Jahromi +sn: Jahromi +description: This is Keith Jahromi's description +facsimileTelephoneNumber: +1 818 744-2597 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 818 687-9194 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: JahromiK +givenName: Keith +mail: JahromiK@d22efb4b0b454465bf3c4729bd0e73ad.bitwarden.com +carLicense: JSD8OM +departmentNumber: 9714 +employeeType: Contract +homePhone: +1 818 815-2829 +initials: K. J. +mobile: +1 818 344-5164 +pager: +1 818 202-8225 +roomNumber: 9364 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elfreda Erkel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elfreda Erkel +sn: Erkel +description: This is Elfreda Erkel's description +facsimileTelephoneNumber: +1 510 867-9324 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 211-7894 +title: Junior Payroll Janitor +userPassword: Password1 +uid: ErkelE +givenName: Elfreda +mail: ErkelE@8b9f4bbc7081476287d00344dce43370.bitwarden.com +carLicense: TOXYPP +departmentNumber: 7785 +employeeType: Normal +homePhone: +1 510 572-6679 +initials: E. E. +mobile: +1 510 915-9045 +pager: +1 510 367-9992 +roomNumber: 9199 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacinta Boult,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacinta Boult +sn: Boult +description: This is Jacinta Boult's description +facsimileTelephoneNumber: +1 213 135-3281 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 857-4949 +title: Chief Administrative Madonna +userPassword: Password1 +uid: BoultJ +givenName: Jacinta +mail: BoultJ@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com +carLicense: 54J1BQ +departmentNumber: 3137 +employeeType: Normal +homePhone: +1 213 610-5493 +initials: J. B. +mobile: +1 213 341-3628 +pager: +1 213 816-9569 +roomNumber: 9100 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mab Sizto,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mab Sizto +sn: Sizto +description: This is Mab Sizto's description +facsimileTelephoneNumber: +1 213 153-4782 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 375-7749 +title: Master Payroll Punk +userPassword: Password1 +uid: SiztoM +givenName: Mab +mail: SiztoM@dcb09de8e7a54dbfbb3606c66044aa08.bitwarden.com +carLicense: 8MDP5V +departmentNumber: 4594 +employeeType: Normal +homePhone: +1 213 465-4122 +initials: M. S. +mobile: +1 213 178-9713 +pager: +1 213 872-6755 +roomNumber: 9877 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ralina Moshinsky +sn: Moshinsky +description: This is Ralina Moshinsky's description +facsimileTelephoneNumber: +1 510 756-3973 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 780-3272 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: MoshinsR +givenName: Ralina +mail: MoshinsR@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com +carLicense: 8DRSRM +departmentNumber: 1824 +employeeType: Employee +homePhone: +1 510 693-5888 +initials: R. M. +mobile: +1 510 242-2170 +pager: +1 510 606-4722 +roomNumber: 8661 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haleigh Tarlamis +sn: Tarlamis +description: This is Haleigh Tarlamis's description +facsimileTelephoneNumber: +1 213 548-3099 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 958-4464 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: TarlamiH +givenName: Haleigh +mail: TarlamiH@aed7b3397fd44fc8824d75ec5a571273.bitwarden.com +carLicense: 3687JL +departmentNumber: 1226 +employeeType: Employee +homePhone: +1 213 467-9760 +initials: H. T. +mobile: +1 213 838-4245 +pager: +1 213 930-5378 +roomNumber: 8798 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Howard Scarlett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Howard Scarlett +sn: Scarlett +description: This is Howard Scarlett's description +facsimileTelephoneNumber: +1 408 173-1422 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 408 187-1153 +title: Master Peons Developer +userPassword: Password1 +uid: ScarletH +givenName: Howard +mail: ScarletH@1a20ad7a171d4781bdcb10c53186c8d9.bitwarden.com +carLicense: 0C855P +departmentNumber: 9821 +employeeType: Normal +homePhone: +1 408 795-7503 +initials: H. S. +mobile: +1 408 941-9244 +pager: +1 408 247-7243 +roomNumber: 8028 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=CoOp Grondin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: CoOp Grondin +sn: Grondin +description: This is CoOp Grondin's description +facsimileTelephoneNumber: +1 213 575-7651 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 221-5326 +title: Junior Administrative Writer +userPassword: Password1 +uid: GrondinC +givenName: CoOp +mail: GrondinC@d52f84a4faf148e392088a55b1d91d85.bitwarden.com +carLicense: RS7C3N +departmentNumber: 4878 +employeeType: Employee +homePhone: +1 213 526-6158 +initials: C. G. +mobile: +1 213 998-8396 +pager: +1 213 356-2456 +roomNumber: 9868 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Felton Bartz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felton Bartz +sn: Bartz +description: This is Felton Bartz's description +facsimileTelephoneNumber: +1 213 109-7775 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 571-3128 +title: Chief Peons Grunt +userPassword: Password1 +uid: BartzF +givenName: Felton +mail: BartzF@6535949de3ea47249141a9acfc0e7a20.bitwarden.com +carLicense: DPIF5F +departmentNumber: 8993 +employeeType: Employee +homePhone: +1 213 187-5645 +initials: F. B. +mobile: +1 213 207-9725 +pager: +1 213 958-3705 +roomNumber: 8740 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Norene Molnar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norene Molnar +sn: Molnar +description: This is Norene Molnar's description +facsimileTelephoneNumber: +1 206 185-5348 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 206 938-6305 +title: Chief Management Stooge +userPassword: Password1 +uid: MolnarN +givenName: Norene +mail: MolnarN@303ac29ae28a4feca207111066bb217f.bitwarden.com +carLicense: PIQ8JF +departmentNumber: 8854 +employeeType: Normal +homePhone: +1 206 411-5867 +initials: N. M. +mobile: +1 206 975-9000 +pager: +1 206 857-9402 +roomNumber: 9888 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gabey Solomon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabey Solomon +sn: Solomon +description: This is Gabey Solomon's description +facsimileTelephoneNumber: +1 213 438-6930 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 213 162-7733 +title: Supreme Product Development Consultant +userPassword: Password1 +uid: SolomonG +givenName: Gabey +mail: SolomonG@6a57f27be787416186e20874ca3a3f16.bitwarden.com +carLicense: UUFJWJ +departmentNumber: 5029 +employeeType: Normal +homePhone: +1 213 655-9527 +initials: G. S. +mobile: +1 213 147-2210 +pager: +1 213 865-5674 +roomNumber: 9570 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Joanne Trefry,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joanne Trefry +sn: Trefry +description: This is Joanne Trefry's description +facsimileTelephoneNumber: +1 818 247-5305 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 816-7209 +title: Master Peons Technician +userPassword: Password1 +uid: TrefryJ +givenName: Joanne +mail: TrefryJ@2379df05bd9f48589e7c5672593d18d7.bitwarden.com +carLicense: LQ9FYF +departmentNumber: 5429 +employeeType: Employee +homePhone: +1 818 417-4873 +initials: J. T. +mobile: +1 818 936-2664 +pager: +1 818 374-6511 +roomNumber: 8254 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sukey Grimm,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sukey Grimm +sn: Grimm +description: This is Sukey Grimm's description +facsimileTelephoneNumber: +1 415 748-4124 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 426-9990 +title: Chief Payroll Punk +userPassword: Password1 +uid: GrimmS +givenName: Sukey +mail: GrimmS@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com +carLicense: MAN81D +departmentNumber: 2502 +employeeType: Contract +homePhone: +1 415 382-5492 +initials: S. G. +mobile: +1 415 329-1635 +pager: +1 415 307-7432 +roomNumber: 9985 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sari Realtime,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sari Realtime +sn: Realtime +description: This is Sari Realtime's description +facsimileTelephoneNumber: +1 510 616-6531 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 135-2351 +title: Chief Management Stooge +userPassword: Password1 +uid: RealtimS +givenName: Sari +mail: RealtimS@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com +carLicense: 3VCSFX +departmentNumber: 9503 +employeeType: Contract +homePhone: +1 510 323-1804 +initials: S. R. +mobile: +1 510 141-7162 +pager: +1 510 928-3678 +roomNumber: 9912 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YikHon DiFalco +sn: DiFalco +description: This is YikHon DiFalco's description +facsimileTelephoneNumber: +1 213 556-8947 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 884-5115 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: DiFalcoY +givenName: YikHon +mail: DiFalcoY@4f4529779c39486286005f0294a1558e.bitwarden.com +carLicense: 7V2FR9 +departmentNumber: 6602 +employeeType: Employee +homePhone: +1 213 951-8464 +initials: Y. D. +mobile: +1 213 441-3449 +pager: +1 213 241-8594 +roomNumber: 8630 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fanni Hite,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fanni Hite +sn: Hite +description: This is Fanni Hite's description +facsimileTelephoneNumber: +1 408 359-2102 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 177-2310 +title: Junior Human Resources Admin +userPassword: Password1 +uid: HiteF +givenName: Fanni +mail: HiteF@2c4021d313d14b3da0ff25c9be8215f4.bitwarden.com +carLicense: MIG9BK +departmentNumber: 3311 +employeeType: Contract +homePhone: +1 408 417-7737 +initials: F. H. +mobile: +1 408 262-4178 +pager: +1 408 633-4315 +roomNumber: 8196 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Faiz Brodersen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faiz Brodersen +sn: Brodersen +description: This is Faiz Brodersen's description +facsimileTelephoneNumber: +1 510 567-2061 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 164-9041 +title: Associate Product Development Sales Rep +userPassword: Password1 +uid: BrodersF +givenName: Faiz +mail: BrodersF@3313782fad5f448f843eeeeabc4b6528.bitwarden.com +carLicense: Q6D3R3 +departmentNumber: 9038 +employeeType: Employee +homePhone: +1 510 959-8111 +initials: F. B. +mobile: +1 510 418-2858 +pager: +1 510 243-5316 +roomNumber: 8310 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denyse Goricanec +sn: Goricanec +description: This is Denyse Goricanec's description +facsimileTelephoneNumber: +1 510 801-8476 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 433-4097 +title: Master Product Testing Artist +userPassword: Password1 +uid: GoricanD +givenName: Denyse +mail: GoricanD@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com +carLicense: HX9JQI +departmentNumber: 9278 +employeeType: Normal +homePhone: +1 510 704-4360 +initials: D. G. +mobile: +1 510 525-3736 +pager: +1 510 860-7394 +roomNumber: 9492 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kazem Snead,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazem Snead +sn: Snead +description: This is Kazem Snead's description +facsimileTelephoneNumber: +1 510 113-6305 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 279-2723 +title: Master Payroll President +userPassword: Password1 +uid: SneadK +givenName: Kazem +mail: SneadK@0a1433e150374c7dabedf34e4d8de46b.bitwarden.com +carLicense: 5CCRHW +departmentNumber: 5132 +employeeType: Contract +homePhone: +1 510 409-8694 +initials: K. S. +mobile: +1 510 197-4861 +pager: +1 510 446-8201 +roomNumber: 8038 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Birgitta Ritter +sn: Ritter +description: This is Birgitta Ritter's description +facsimileTelephoneNumber: +1 510 964-3594 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 312-2276 +title: Master Human Resources Technician +userPassword: Password1 +uid: RitterB +givenName: Birgitta +mail: RitterB@960b796114d841ca97e435a64e92baa2.bitwarden.com +carLicense: UDB7W2 +departmentNumber: 8156 +employeeType: Normal +homePhone: +1 510 995-7062 +initials: B. R. +mobile: +1 510 754-5967 +pager: +1 510 330-2636 +roomNumber: 9245 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Donia McCormick,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donia McCormick +sn: McCormick +description: This is Donia McCormick's description +facsimileTelephoneNumber: +1 408 147-6752 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 949-5216 +title: Chief Product Development Madonna +userPassword: Password1 +uid: McCormiD +givenName: Donia +mail: McCormiD@2377c0b716574201b1f20f0a302f3543.bitwarden.com +carLicense: CTH6X3 +departmentNumber: 9042 +employeeType: Normal +homePhone: +1 408 974-5301 +initials: D. M. +mobile: +1 408 347-6562 +pager: +1 408 150-1474 +roomNumber: 8079 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Akin Gillies,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akin Gillies +sn: Gillies +description: This is Akin Gillies's description +facsimileTelephoneNumber: +1 213 376-2923 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 621-7864 +title: Associate Peons Technician +userPassword: Password1 +uid: GilliesA +givenName: Akin +mail: GilliesA@755e2f2f01064fb58f5836b47a9f6953.bitwarden.com +carLicense: JHSUQK +departmentNumber: 5073 +employeeType: Employee +homePhone: +1 213 881-4068 +initials: A. G. +mobile: +1 213 747-4036 +pager: +1 213 813-9473 +roomNumber: 8190 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Baldev Chugha,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baldev Chugha +sn: Chugha +description: This is Baldev Chugha's description +facsimileTelephoneNumber: +1 408 927-4393 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 373-1916 +title: Associate Administrative Figurehead +userPassword: Password1 +uid: ChughaB +givenName: Baldev +mail: ChughaB@8bca585b47ed462fb7229680f3ab2eb8.bitwarden.com +carLicense: PVFQFF +departmentNumber: 9339 +employeeType: Contract +homePhone: +1 408 326-3026 +initials: B. C. +mobile: +1 408 799-9322 +pager: +1 408 883-2308 +roomNumber: 9433 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carla Wichman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carla Wichman +sn: Wichman +description: This is Carla Wichman's description +facsimileTelephoneNumber: +1 408 276-2611 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 138-6537 +title: Supreme Administrative Manager +userPassword: Password1 +uid: WichmanC +givenName: Carla +mail: WichmanC@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com +carLicense: PGEYYF +departmentNumber: 6945 +employeeType: Normal +homePhone: +1 408 460-2301 +initials: C. W. +mobile: +1 408 712-1321 +pager: +1 408 262-1890 +roomNumber: 9170 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sarine Croxford,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarine Croxford +sn: Croxford +description: This is Sarine Croxford's description +facsimileTelephoneNumber: +1 804 188-4578 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 861-8066 +title: Associate Payroll Writer +userPassword: Password1 +uid: CroxforS +givenName: Sarine +mail: CroxforS@57edeceb332942988b2e62feed2c524a.bitwarden.com +carLicense: HU4N11 +departmentNumber: 4995 +employeeType: Contract +homePhone: +1 804 349-8364 +initials: S. C. +mobile: +1 804 665-9360 +pager: +1 804 768-6385 +roomNumber: 8888 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Truda LaFargue,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Truda LaFargue +sn: LaFargue +description: This is Truda LaFargue's description +facsimileTelephoneNumber: +1 213 928-1475 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 213 765-9824 +title: Junior Human Resources President +userPassword: Password1 +uid: LaFarguT +givenName: Truda +mail: LaFarguT@da55d35b2fa24638b2a13fe298cfe306.bitwarden.com +carLicense: XCN90G +departmentNumber: 7311 +employeeType: Normal +homePhone: +1 213 968-5381 +initials: T. L. +mobile: +1 213 859-9914 +pager: +1 213 782-5820 +roomNumber: 8044 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veronica Medefesser +sn: Medefesser +description: This is Veronica Medefesser's description +facsimileTelephoneNumber: +1 510 451-2640 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 508-6034 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: MedefesV +givenName: Veronica +mail: MedefesV@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com +carLicense: UABU53 +departmentNumber: 6835 +employeeType: Contract +homePhone: +1 510 368-7781 +initials: V. M. +mobile: +1 510 579-2941 +pager: +1 510 141-4010 +roomNumber: 8874 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marco Secrest,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marco Secrest +sn: Secrest +description: This is Marco Secrest's description +facsimileTelephoneNumber: +1 818 690-8189 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 886-8179 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: SecrestM +givenName: Marco +mail: SecrestM@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com +carLicense: 0UNFRQ +departmentNumber: 8870 +employeeType: Contract +homePhone: +1 818 911-5632 +initials: M. S. +mobile: +1 818 752-4445 +pager: +1 818 295-7996 +roomNumber: 9164 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bellina Onder,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bellina Onder +sn: Onder +description: This is Bellina Onder's description +facsimileTelephoneNumber: +1 510 886-7015 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 468-2703 +title: Junior Janitorial Stooge +userPassword: Password1 +uid: OnderB +givenName: Bellina +mail: OnderB@c70533cbf13f4eda83e80aa7a3960847.bitwarden.com +carLicense: E7LIQT +departmentNumber: 7425 +employeeType: Normal +homePhone: +1 510 789-8818 +initials: B. O. +mobile: +1 510 806-9404 +pager: +1 510 766-8524 +roomNumber: 8138 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MarieAndree Thoms +sn: Thoms +description: This is MarieAndree Thoms's description +facsimileTelephoneNumber: +1 408 913-4140 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 849-8163 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: ThomsM +givenName: MarieAndree +mail: ThomsM@9144995fa4c649da9d774d2a93d230da.bitwarden.com +carLicense: D1EIO2 +departmentNumber: 2700 +employeeType: Contract +homePhone: +1 408 378-5737 +initials: M. T. +mobile: +1 408 931-8744 +pager: +1 408 418-7738 +roomNumber: 9210 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiem Zaharychuk +sn: Zaharychuk +description: This is Kiem Zaharychuk's description +facsimileTelephoneNumber: +1 206 115-9153 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 871-7676 +title: Associate Peons Visionary +userPassword: Password1 +uid: ZaharycK +givenName: Kiem +mail: ZaharycK@2ccc6f9a9fb7406dac8df77daed9aa92.bitwarden.com +carLicense: AHHDTA +departmentNumber: 5022 +employeeType: Contract +homePhone: +1 206 794-1561 +initials: K. Z. +mobile: +1 206 254-1171 +pager: +1 206 245-1283 +roomNumber: 9988 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MichaelMorgan Zingale +sn: Zingale +description: This is MichaelMorgan Zingale's description +facsimileTelephoneNumber: +1 206 832-2059 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 494-9480 +title: Chief Product Development President +userPassword: Password1 +uid: ZingaleM +givenName: MichaelMorgan +mail: ZingaleM@4d021ab5235d4c7a8bf5c3ef91818e2f.bitwarden.com +carLicense: QDNJ2F +departmentNumber: 4078 +employeeType: Contract +homePhone: +1 206 873-3236 +initials: M. Z. +mobile: +1 206 390-5052 +pager: +1 206 641-4056 +roomNumber: 8801 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yumi Britton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yumi Britton +sn: Britton +description: This is Yumi Britton's description +facsimileTelephoneNumber: +1 818 742-5063 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 219-8123 +title: Supreme Administrative Architect +userPassword: Password1 +uid: BrittonY +givenName: Yumi +mail: BrittonY@a882281c1b844c5997ce4401b36f83a4.bitwarden.com +carLicense: OTE6B9 +departmentNumber: 4733 +employeeType: Contract +homePhone: +1 818 172-9564 +initials: Y. B. +mobile: +1 818 656-2048 +pager: +1 818 541-1947 +roomNumber: 8605 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Subhashini Tadge,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subhashini Tadge +sn: Tadge +description: This is Subhashini Tadge's description +facsimileTelephoneNumber: +1 415 263-4404 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 802-8835 +title: Junior Product Development Punk +userPassword: Password1 +uid: TadgeS +givenName: Subhashini +mail: TadgeS@ff53b48d0a6a4f5b801944bd329c88a5.bitwarden.com +carLicense: 3D7UDE +departmentNumber: 6511 +employeeType: Employee +homePhone: +1 415 869-4287 +initials: S. T. +mobile: +1 415 658-7874 +pager: +1 415 927-9216 +roomNumber: 9368 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanneke McNerney +sn: McNerney +description: This is Hanneke McNerney's description +facsimileTelephoneNumber: +1 206 458-7097 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 396-6338 +title: Chief Product Testing Developer +userPassword: Password1 +uid: McNerneH +givenName: Hanneke +mail: McNerneH@5fae264559df41c5819756869bf97f69.bitwarden.com +carLicense: IMT9FI +departmentNumber: 7767 +employeeType: Contract +homePhone: +1 206 100-5485 +initials: H. M. +mobile: +1 206 105-8288 +pager: +1 206 902-1258 +roomNumber: 8455 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacky Cavasin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacky Cavasin +sn: Cavasin +description: This is Jacky Cavasin's description +facsimileTelephoneNumber: +1 213 925-4238 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 745-5827 +title: Junior Management Vice President +userPassword: Password1 +uid: CavasinJ +givenName: Jacky +mail: CavasinJ@57dc19fb72ed48a88f045569d12c771f.bitwarden.com +carLicense: ULTDCD +departmentNumber: 2464 +employeeType: Normal +homePhone: +1 213 769-2090 +initials: J. C. +mobile: +1 213 348-8322 +pager: +1 213 372-3022 +roomNumber: 9869 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Katalin Qadri,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katalin Qadri +sn: Qadri +description: This is Katalin Qadri's description +facsimileTelephoneNumber: +1 213 768-5269 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 213 444-6727 +title: Supreme Payroll Manager +userPassword: Password1 +uid: QadriK +givenName: Katalin +mail: QadriK@425e3df8b9654b8fb5fafe68899d23b1.bitwarden.com +carLicense: E9TSOJ +departmentNumber: 4490 +employeeType: Normal +homePhone: +1 213 160-6982 +initials: K. Q. +mobile: +1 213 547-5829 +pager: +1 213 387-2991 +roomNumber: 9451 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabriellia Norby +sn: Norby +description: This is Gabriellia Norby's description +facsimileTelephoneNumber: +1 510 864-7654 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 511-8417 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: NorbyG +givenName: Gabriellia +mail: NorbyG@96b954821ec4456a90674f1af5f31f23.bitwarden.com +carLicense: 3K634D +departmentNumber: 4342 +employeeType: Employee +homePhone: +1 510 654-6367 +initials: G. N. +mobile: +1 510 527-1717 +pager: +1 510 359-8178 +roomNumber: 9497 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Evanne Holesinger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evanne Holesinger +sn: Holesinger +description: This is Evanne Holesinger's description +facsimileTelephoneNumber: +1 818 823-9347 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 511-6256 +title: Master Payroll Mascot +userPassword: Password1 +uid: HolesinE +givenName: Evanne +mail: HolesinE@1060465da9c64631a2455d428f565a2e.bitwarden.com +carLicense: J8QPGV +departmentNumber: 7461 +employeeType: Normal +homePhone: +1 818 923-2840 +initials: E. H. +mobile: +1 818 185-7044 +pager: +1 818 145-7842 +roomNumber: 8313 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Malethia Elliot,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malethia Elliot +sn: Elliot +description: This is Malethia Elliot's description +facsimileTelephoneNumber: +1 510 267-5424 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 376-7486 +title: Chief Payroll Assistant +userPassword: Password1 +uid: ElliotM +givenName: Malethia +mail: ElliotM@ad4b259f1800408a898dff512e0a094e.bitwarden.com +carLicense: N54HWR +departmentNumber: 8501 +employeeType: Contract +homePhone: +1 510 452-5307 +initials: M. E. +mobile: +1 510 530-9766 +pager: +1 510 718-7056 +roomNumber: 8000 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dhawal Howard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhawal Howard +sn: Howard +description: This is Dhawal Howard's description +facsimileTelephoneNumber: +1 804 335-1671 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 947-2562 +title: Chief Management Engineer +userPassword: Password1 +uid: HowardD +givenName: Dhawal +mail: HowardD@1cf4ed44c9f34d57aaaa8e332c0af04a.bitwarden.com +carLicense: 3BQOQV +departmentNumber: 8700 +employeeType: Employee +homePhone: +1 804 815-2467 +initials: D. H. +mobile: +1 804 478-6216 +pager: +1 804 254-5580 +roomNumber: 8123 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Stacee Syed,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacee Syed +sn: Syed +description: This is Stacee Syed's description +facsimileTelephoneNumber: +1 408 514-2599 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 696-2977 +title: Master Administrative Admin +userPassword: Password1 +uid: SyedS +givenName: Stacee +mail: SyedS@7dd6cc5778d64f7ea47fc9b85bb01ae7.bitwarden.com +carLicense: S7V2QU +departmentNumber: 4586 +employeeType: Employee +homePhone: +1 408 101-9393 +initials: S. S. +mobile: +1 408 160-1619 +pager: +1 408 133-3598 +roomNumber: 9860 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mamie Warrellow +sn: Warrellow +description: This is Mamie Warrellow's description +facsimileTelephoneNumber: +1 408 151-7836 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 260-4735 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: WarrellM +givenName: Mamie +mail: WarrellM@316f28dee96a4927ae60609771465dfa.bitwarden.com +carLicense: XR4QO7 +departmentNumber: 2443 +employeeType: Contract +homePhone: +1 408 328-8466 +initials: M. W. +mobile: +1 408 806-2437 +pager: +1 408 820-5234 +roomNumber: 8961 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kem Birkwood,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kem Birkwood +sn: Birkwood +description: This is Kem Birkwood's description +facsimileTelephoneNumber: +1 408 958-6506 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 330-8612 +title: Master Product Development Evangelist +userPassword: Password1 +uid: BirkwooK +givenName: Kem +mail: BirkwooK@bcbc05a61af34797a5c081f266c4277f.bitwarden.com +carLicense: E1W4QF +departmentNumber: 5378 +employeeType: Normal +homePhone: +1 408 859-2553 +initials: K. B. +mobile: +1 408 692-5822 +pager: +1 408 821-2650 +roomNumber: 8930 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Steffen Godo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steffen Godo +sn: Godo +description: This is Steffen Godo's description +facsimileTelephoneNumber: +1 510 653-9191 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 954-5594 +title: Master Human Resources Fellow +userPassword: Password1 +uid: GodoS +givenName: Steffen +mail: GodoS@dd6aa42254414b099b5f31cdae049e72.bitwarden.com +carLicense: EKVDX2 +departmentNumber: 3052 +employeeType: Normal +homePhone: +1 510 382-9120 +initials: S. G. +mobile: +1 510 136-6041 +pager: +1 510 398-9349 +roomNumber: 8684 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Merlin McCormack,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merlin McCormack +sn: McCormack +description: This is Merlin McCormack's description +facsimileTelephoneNumber: +1 804 516-6280 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 689-7190 +title: Master Administrative Vice President +userPassword: Password1 +uid: McCormaM +givenName: Merlin +mail: McCormaM@8f537ae4b6b344bbba62604a48f151f5.bitwarden.com +carLicense: EK4IKN +departmentNumber: 2375 +employeeType: Employee +homePhone: +1 804 130-1824 +initials: M. M. +mobile: +1 804 693-1544 +pager: +1 804 231-3744 +roomNumber: 9203 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Darell Sumi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darell Sumi +sn: Sumi +description: This is Darell Sumi's description +facsimileTelephoneNumber: +1 206 829-8682 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 535-4957 +title: Associate Product Development Grunt +userPassword: Password1 +uid: SumiD +givenName: Darell +mail: SumiD@797c12ee868e41e5be4bb46785d3d6aa.bitwarden.com +carLicense: 3TBIMR +departmentNumber: 6600 +employeeType: Contract +homePhone: +1 206 555-2110 +initials: D. S. +mobile: +1 206 912-2333 +pager: +1 206 375-1932 +roomNumber: 8491 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tybie Hulen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tybie Hulen +sn: Hulen +description: This is Tybie Hulen's description +facsimileTelephoneNumber: +1 213 984-7987 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 497-3182 +title: Supreme Administrative President +userPassword: Password1 +uid: HulenT +givenName: Tybie +mail: HulenT@67373a2d3605487eb6202dbbf71e2058.bitwarden.com +carLicense: K478QU +departmentNumber: 5070 +employeeType: Contract +homePhone: +1 213 773-4448 +initials: T. H. +mobile: +1 213 259-6405 +pager: +1 213 972-2342 +roomNumber: 9856 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fitzroy Nilson +sn: Nilson +description: This is Fitzroy Nilson's description +facsimileTelephoneNumber: +1 415 295-8691 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 769-7567 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: NilsonF +givenName: Fitzroy +mail: NilsonF@0be01d83222f46f7842093c364d584c6.bitwarden.com +carLicense: 2KEHEH +departmentNumber: 6057 +employeeType: Employee +homePhone: +1 415 106-3674 +initials: F. N. +mobile: +1 415 113-6365 +pager: +1 415 206-7060 +roomNumber: 8441 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Crysta Aderhold,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crysta Aderhold +sn: Aderhold +description: This is Crysta Aderhold's description +facsimileTelephoneNumber: +1 804 861-4519 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 251-9409 +title: Chief Management Sales Rep +userPassword: Password1 +uid: AderholC +givenName: Crysta +mail: AderholC@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com +carLicense: QQCCMI +departmentNumber: 4907 +employeeType: Employee +homePhone: +1 804 230-1786 +initials: C. A. +mobile: +1 804 695-9727 +pager: +1 804 817-3934 +roomNumber: 8740 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ranna Barriere,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranna Barriere +sn: Barriere +description: This is Ranna Barriere's description +facsimileTelephoneNumber: +1 818 389-2915 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 818 232-4201 +title: Associate Product Testing President +userPassword: Password1 +uid: BarrierR +givenName: Ranna +mail: BarrierR@1a851fc2814040d38d9f2abd59e828ec.bitwarden.com +carLicense: JDUP58 +departmentNumber: 9634 +employeeType: Contract +homePhone: +1 818 765-7755 +initials: R. B. +mobile: +1 818 945-5750 +pager: +1 818 702-3541 +roomNumber: 8063 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ignatius Bankhead,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ignatius Bankhead +sn: Bankhead +description: This is Ignatius Bankhead's description +facsimileTelephoneNumber: +1 206 333-7417 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 484-1919 +title: Junior Management Technician +userPassword: Password1 +uid: BankheaI +givenName: Ignatius +mail: BankheaI@fac57f1f10364a88aa5ab37aeecbc8a1.bitwarden.com +carLicense: OJA2ML +departmentNumber: 6389 +employeeType: Contract +homePhone: +1 206 834-5100 +initials: I. B. +mobile: +1 206 922-6340 +pager: +1 206 686-5249 +roomNumber: 8740 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carlis McCafferty,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlis McCafferty +sn: McCafferty +description: This is Carlis McCafferty's description +facsimileTelephoneNumber: +1 206 419-8338 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 383-8112 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: McCaffeC +givenName: Carlis +mail: McCaffeC@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com +carLicense: 71UUTB +departmentNumber: 2010 +employeeType: Contract +homePhone: +1 206 286-8386 +initials: C. M. +mobile: +1 206 215-7086 +pager: +1 206 301-8861 +roomNumber: 9362 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sashenka Inamullah +sn: Inamullah +description: This is Sashenka Inamullah's description +facsimileTelephoneNumber: +1 818 567-9116 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 257-2287 +title: Associate Payroll Architect +userPassword: Password1 +uid: InamullS +givenName: Sashenka +mail: InamullS@c3cd4c3c22f34a2dbd82ab9ceb4d6bba.bitwarden.com +carLicense: NLYTSN +departmentNumber: 2687 +employeeType: Contract +homePhone: +1 818 262-6991 +initials: S. I. +mobile: +1 818 794-2084 +pager: +1 818 561-5006 +roomNumber: 8620 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dewey Cozyn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dewey Cozyn +sn: Cozyn +description: This is Dewey Cozyn's description +facsimileTelephoneNumber: +1 818 742-5621 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 100-7723 +title: Chief Administrative Writer +userPassword: Password1 +uid: CozynD +givenName: Dewey +mail: CozynD@7d02421d78824b528c03a8f50fd2c791.bitwarden.com +carLicense: 44V1JE +departmentNumber: 1717 +employeeType: Employee +homePhone: +1 818 373-5943 +initials: D. C. +mobile: +1 818 967-4004 +pager: +1 818 201-6048 +roomNumber: 9342 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Raphaela Bainton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raphaela Bainton +sn: Bainton +description: This is Raphaela Bainton's description +facsimileTelephoneNumber: +1 415 974-1216 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 926-2199 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: BaintonR +givenName: Raphaela +mail: BaintonR@2ccc6f9a9fb7406dac8df77daed9aa92.bitwarden.com +carLicense: FD40O2 +departmentNumber: 9441 +employeeType: Contract +homePhone: +1 415 348-5655 +initials: R. B. +mobile: +1 415 486-5970 +pager: +1 415 146-6189 +roomNumber: 8757 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Paulette Gateau,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulette Gateau +sn: Gateau +description: This is Paulette Gateau's description +facsimileTelephoneNumber: +1 510 902-1181 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 851-9101 +title: Chief Human Resources Director +userPassword: Password1 +uid: GateauP +givenName: Paulette +mail: GateauP@2ea5cd05f7bb4e668e89ea0ce9ab618b.bitwarden.com +carLicense: 6D2K2C +departmentNumber: 6777 +employeeType: Employee +homePhone: +1 510 839-8329 +initials: P. G. +mobile: +1 510 403-5408 +pager: +1 510 720-9295 +roomNumber: 8604 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Molly IRCMTL,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Molly IRCMTL +sn: IRCMTL +description: This is Molly IRCMTL's description +facsimileTelephoneNumber: +1 804 888-3096 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 804 650-3546 +title: Master Peons Technician +userPassword: Password1 +uid: IRCMTLM +givenName: Molly +mail: IRCMTLM@5406f1a2a8b3462dade05957b7fb225f.bitwarden.com +carLicense: 49MMXX +departmentNumber: 2758 +employeeType: Normal +homePhone: +1 804 243-3346 +initials: M. I. +mobile: +1 804 751-4483 +pager: +1 804 656-4032 +roomNumber: 8030 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Danial Simhan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danial Simhan +sn: Simhan +description: This is Danial Simhan's description +facsimileTelephoneNumber: +1 818 681-7526 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 558-4126 +title: Master Janitorial Admin +userPassword: Password1 +uid: SimhanD +givenName: Danial +mail: SimhanD@576758681ec2477ebb412f65a7055774.bitwarden.com +carLicense: MT8R1C +departmentNumber: 1459 +employeeType: Contract +homePhone: +1 818 765-7475 +initials: D. S. +mobile: +1 818 301-6771 +pager: +1 818 770-6675 +roomNumber: 9898 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aditya Nordstrom,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aditya Nordstrom +sn: Nordstrom +description: This is Aditya Nordstrom's description +facsimileTelephoneNumber: +1 408 751-4645 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 589-5032 +title: Junior Management Architect +userPassword: Password1 +uid: NordstrA +givenName: Aditya +mail: NordstrA@439323a8d95149fea66efa1b90531fea.bitwarden.com +carLicense: T4E5BD +departmentNumber: 8812 +employeeType: Employee +homePhone: +1 408 476-3166 +initials: A. N. +mobile: +1 408 458-8478 +pager: +1 408 740-4687 +roomNumber: 9628 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jacquenetta Altherr,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquenetta Altherr +sn: Altherr +description: This is Jacquenetta Altherr's description +facsimileTelephoneNumber: +1 408 502-5279 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 466-2672 +title: Supreme Management Writer +userPassword: Password1 +uid: AltherrJ +givenName: Jacquenetta +mail: AltherrJ@185815afbde44b82a694cd5922f519f9.bitwarden.com +carLicense: M0SV2I +departmentNumber: 2605 +employeeType: Contract +homePhone: +1 408 762-3244 +initials: J. A. +mobile: +1 408 271-5940 +pager: +1 408 956-9369 +roomNumber: 8806 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Joeann DeAnda,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joeann DeAnda +sn: DeAnda +description: This is Joeann DeAnda's description +facsimileTelephoneNumber: +1 213 413-7326 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 458-7952 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: DeAndaJ +givenName: Joeann +mail: DeAndaJ@2adc28241a1f46749fea06db3960400f.bitwarden.com +carLicense: XBLIVO +departmentNumber: 2524 +employeeType: Employee +homePhone: +1 213 681-7785 +initials: J. D. +mobile: +1 213 760-1787 +pager: +1 213 715-4729 +roomNumber: 8653 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Valentina Andrew,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valentina Andrew +sn: Andrew +description: This is Valentina Andrew's description +facsimileTelephoneNumber: +1 510 535-9762 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 510 272-6389 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: AndrewV +givenName: Valentina +mail: AndrewV@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com +carLicense: 0LANSK +departmentNumber: 8901 +employeeType: Normal +homePhone: +1 510 879-7639 +initials: V. A. +mobile: +1 510 453-2244 +pager: +1 510 124-5091 +roomNumber: 8547 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kemal Kaoud,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kemal Kaoud +sn: Kaoud +description: This is Kemal Kaoud's description +facsimileTelephoneNumber: +1 415 765-3927 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 657-1738 +title: Chief Payroll Manager +userPassword: Password1 +uid: KaoudK +givenName: Kemal +mail: KaoudK@93e4f4c832eb40f5b256fbdf877ac624.bitwarden.com +carLicense: 7PAR8C +departmentNumber: 4446 +employeeType: Normal +homePhone: +1 415 938-2337 +initials: K. K. +mobile: +1 415 365-9073 +pager: +1 415 306-4753 +roomNumber: 9373 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roseanna Koiste,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roseanna Koiste +sn: Koiste +description: This is Roseanna Koiste's description +facsimileTelephoneNumber: +1 510 321-2487 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 510 269-5060 +title: Master Administrative Stooge +userPassword: Password1 +uid: KoisteR +givenName: Roseanna +mail: KoisteR@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com +carLicense: 33Q81Y +departmentNumber: 2720 +employeeType: Employee +homePhone: +1 510 796-2456 +initials: R. K. +mobile: +1 510 922-3498 +pager: +1 510 152-3925 +roomNumber: 8090 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Camino Medlin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camino Medlin +sn: Medlin +description: This is Camino Medlin's description +facsimileTelephoneNumber: +1 415 553-4370 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 943-9129 +title: Chief Management Pinhead +userPassword: Password1 +uid: MedlinC +givenName: Camino +mail: MedlinC@2aaa9be738c34b3b97229c09ad694399.bitwarden.com +carLicense: U1TW9V +departmentNumber: 2729 +employeeType: Normal +homePhone: +1 415 609-8166 +initials: C. M. +mobile: +1 415 706-5350 +pager: +1 415 671-4198 +roomNumber: 9161 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akio Gerlinsky +sn: Gerlinsky +description: This is Akio Gerlinsky's description +facsimileTelephoneNumber: +1 213 431-1132 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 423-1423 +title: Master Administrative Evangelist +userPassword: Password1 +uid: GerlinsA +givenName: Akio +mail: GerlinsA@950212f9d4c64a14966148f9248060e1.bitwarden.com +carLicense: BXSGIO +departmentNumber: 8086 +employeeType: Employee +homePhone: +1 213 557-5441 +initials: A. G. +mobile: +1 213 430-8878 +pager: +1 213 322-7404 +roomNumber: 9351 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lilian Racette,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilian Racette +sn: Racette +description: This is Lilian Racette's description +facsimileTelephoneNumber: +1 206 654-3502 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 355-1161 +title: Master Product Testing Punk +userPassword: Password1 +uid: RacetteL +givenName: Lilian +mail: RacetteL@f6414ae4de9c48918d1c08fe0828695b.bitwarden.com +carLicense: E52BBQ +departmentNumber: 9803 +employeeType: Normal +homePhone: +1 206 549-5528 +initials: L. R. +mobile: +1 206 812-8336 +pager: +1 206 117-6402 +roomNumber: 9616 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Clara Partello,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clara Partello +sn: Partello +description: This is Clara Partello's description +facsimileTelephoneNumber: +1 213 725-8358 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 887-1757 +title: Chief Administrative Technician +userPassword: Password1 +uid: PartellC +givenName: Clara +mail: PartellC@68e96d35b7bb4addbceb19d0fa830ff5.bitwarden.com +carLicense: AA73L0 +departmentNumber: 5318 +employeeType: Employee +homePhone: +1 213 701-7936 +initials: C. P. +mobile: +1 213 885-3700 +pager: +1 213 744-3900 +roomNumber: 9111 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Birdie Pifko,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Birdie Pifko +sn: Pifko +description: This is Birdie Pifko's description +facsimileTelephoneNumber: +1 804 220-3042 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 545-9543 +title: Associate Human Resources Warrior +userPassword: Password1 +uid: PifkoB +givenName: Birdie +mail: PifkoB@f9ccaba996b948fd826c0c115f90045a.bitwarden.com +carLicense: CGU9OU +departmentNumber: 2559 +employeeType: Normal +homePhone: +1 804 723-9981 +initials: B. P. +mobile: +1 804 402-8197 +pager: +1 804 257-7830 +roomNumber: 9509 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Salomi Erickson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salomi Erickson +sn: Erickson +description: This is Salomi Erickson's description +facsimileTelephoneNumber: +1 415 604-1408 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 552-3100 +title: Master Payroll Technician +userPassword: Password1 +uid: EricksoS +givenName: Salomi +mail: EricksoS@a55f359fe55a4a3a9208cf8975a694de.bitwarden.com +carLicense: 4XORLU +departmentNumber: 6584 +employeeType: Normal +homePhone: +1 415 875-4994 +initials: S. E. +mobile: +1 415 306-3722 +pager: +1 415 642-9015 +roomNumber: 9304 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hephzibah Wortman +sn: Wortman +description: This is Hephzibah Wortman's description +facsimileTelephoneNumber: +1 818 113-2311 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 818 213-8458 +title: Associate Payroll Technician +userPassword: Password1 +uid: WortmanH +givenName: Hephzibah +mail: WortmanH@5d35d83c207d418fad061afb7ba230bf.bitwarden.com +carLicense: EP0E8X +departmentNumber: 9147 +employeeType: Normal +homePhone: +1 818 890-2625 +initials: H. W. +mobile: +1 818 525-9866 +pager: +1 818 372-6738 +roomNumber: 8159 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Opal Lovas,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opal Lovas +sn: Lovas +description: This is Opal Lovas's description +facsimileTelephoneNumber: +1 804 764-4567 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 149-4480 +title: Junior Product Development Fellow +userPassword: Password1 +uid: LovasO +givenName: Opal +mail: LovasO@b6586e5c798a4f03943784564d79007b.bitwarden.com +carLicense: 5451JW +departmentNumber: 9363 +employeeType: Employee +homePhone: +1 804 873-9582 +initials: O. L. +mobile: +1 804 324-2165 +pager: +1 804 202-8943 +roomNumber: 8179 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosamond Raaflaub +sn: Raaflaub +description: This is Rosamond Raaflaub's description +facsimileTelephoneNumber: +1 804 768-3058 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 496-7794 +title: Associate Peons Stooge +userPassword: Password1 +uid: RaaflauR +givenName: Rosamond +mail: RaaflauR@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com +carLicense: IYDF5K +departmentNumber: 5621 +employeeType: Employee +homePhone: +1 804 535-7743 +initials: R. R. +mobile: +1 804 774-3118 +pager: +1 804 832-2734 +roomNumber: 8449 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tabbi Ferrao +sn: Ferrao +description: This is Tabbi Ferrao's description +facsimileTelephoneNumber: +1 213 110-7432 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 778-1804 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: FerraoT +givenName: Tabbi +mail: FerraoT@d36e7daa663c4d1bb3597eaa04d6f0fb.bitwarden.com +carLicense: WFGXKG +departmentNumber: 3580 +employeeType: Contract +homePhone: +1 213 450-1156 +initials: T. F. +mobile: +1 213 719-4952 +pager: +1 213 757-3233 +roomNumber: 9043 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gurvinder Kinnaird +sn: Kinnaird +description: This is Gurvinder Kinnaird's description +facsimileTelephoneNumber: +1 206 656-1322 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 407-2068 +title: Master Peons Stooge +userPassword: Password1 +uid: KinnairG +givenName: Gurvinder +mail: KinnairG@6a01aba5dc8f451b8404750bb95136ca.bitwarden.com +carLicense: DG8839 +departmentNumber: 8283 +employeeType: Normal +homePhone: +1 206 139-2585 +initials: G. K. +mobile: +1 206 539-5779 +pager: +1 206 798-5992 +roomNumber: 9414 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jai Malizia,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jai Malizia +sn: Malizia +description: This is Jai Malizia's description +facsimileTelephoneNumber: +1 510 480-8253 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 822-8723 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: MaliziaJ +givenName: Jai +mail: MaliziaJ@a06bbbc55c33432c98c9104924935152.bitwarden.com +carLicense: 4VILC4 +departmentNumber: 6511 +employeeType: Employee +homePhone: +1 510 886-1327 +initials: J. M. +mobile: +1 510 925-8742 +pager: +1 510 575-1512 +roomNumber: 9227 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alice Krogh,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alice Krogh +sn: Krogh +description: This is Alice Krogh's description +facsimileTelephoneNumber: +1 510 494-9393 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 510 159-7007 +title: Chief Management Writer +userPassword: Password1 +uid: KroghA +givenName: Alice +mail: KroghA@6d14a4ca13c844f4a7d4c4bf95fd8d6d.bitwarden.com +carLicense: 0MXXL0 +departmentNumber: 8241 +employeeType: Employee +homePhone: +1 510 740-5289 +initials: A. K. +mobile: +1 510 830-1137 +pager: +1 510 577-5239 +roomNumber: 9751 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ronan Gillard,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronan Gillard +sn: Gillard +description: This is Ronan Gillard's description +facsimileTelephoneNumber: +1 818 779-2583 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 843-9171 +title: Chief Payroll Fellow +userPassword: Password1 +uid: GillardR +givenName: Ronan +mail: GillardR@5081de5367fd49c089deda39143eb679.bitwarden.com +carLicense: Y1XWN5 +departmentNumber: 9546 +employeeType: Employee +homePhone: +1 818 365-1939 +initials: R. G. +mobile: +1 818 289-5494 +pager: +1 818 915-7997 +roomNumber: 9375 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=BettyAnn Sakauye,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: BettyAnn Sakauye +sn: Sakauye +description: This is BettyAnn Sakauye's description +facsimileTelephoneNumber: +1 818 909-3097 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 285-2296 +title: Junior Management Artist +userPassword: Password1 +uid: SakauyeB +givenName: BettyAnn +mail: SakauyeB@804b9151f1ba415a894983275163dae1.bitwarden.com +carLicense: FT7N8B +departmentNumber: 8685 +employeeType: Normal +homePhone: +1 818 893-3722 +initials: B. S. +mobile: +1 818 886-7421 +pager: +1 818 653-5049 +roomNumber: 9409 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermione Reijerkerk +sn: Reijerkerk +description: This is Hermione Reijerkerk's description +facsimileTelephoneNumber: +1 408 708-3716 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 128-3562 +title: Chief Payroll Grunt +userPassword: Password1 +uid: ReijerkH +givenName: Hermione +mail: ReijerkH@d8b1c84590d04a1e945916297425fac6.bitwarden.com +carLicense: CVAAAY +departmentNumber: 3414 +employeeType: Employee +homePhone: +1 408 168-2557 +initials: H. R. +mobile: +1 408 574-3355 +pager: +1 408 620-7132 +roomNumber: 8010 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adan Fralick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adan Fralick +sn: Fralick +description: This is Adan Fralick's description +facsimileTelephoneNumber: +1 415 263-8175 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 415 826-2586 +title: Junior Product Testing Sales Rep +userPassword: Password1 +uid: FralickA +givenName: Adan +mail: FralickA@fd53ca3e2a714cfd8efeb8476d6535f3.bitwarden.com +carLicense: AILX5B +departmentNumber: 7037 +employeeType: Normal +homePhone: +1 415 873-1060 +initials: A. F. +mobile: +1 415 620-6175 +pager: +1 415 218-6154 +roomNumber: 9815 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Koren Jalali,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koren Jalali +sn: Jalali +description: This is Koren Jalali's description +facsimileTelephoneNumber: +1 510 974-9990 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 510 376-7761 +title: Associate Product Testing Stooge +userPassword: Password1 +uid: JalaliK +givenName: Koren +mail: JalaliK@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com +carLicense: 8I7J82 +departmentNumber: 5574 +employeeType: Employee +homePhone: +1 510 316-8444 +initials: K. J. +mobile: +1 510 559-8868 +pager: +1 510 564-2657 +roomNumber: 8270 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Reza StAmour,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reza StAmour +sn: StAmour +description: This is Reza StAmour's description +facsimileTelephoneNumber: +1 408 978-7016 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 939-2292 +title: Junior Payroll Madonna +userPassword: Password1 +uid: StAmourR +givenName: Reza +mail: StAmourR@5e804d1ca9ae4836a819c9a675bca682.bitwarden.com +carLicense: FH28TO +departmentNumber: 6243 +employeeType: Contract +homePhone: +1 408 994-7290 +initials: R. S. +mobile: +1 408 176-4360 +pager: +1 408 888-1584 +roomNumber: 9464 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Binh DALE,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binh DALE +sn: DALE +description: This is Binh DALE's description +facsimileTelephoneNumber: +1 415 314-3174 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 265-5362 +title: Chief Human Resources Writer +userPassword: Password1 +uid: DALEB +givenName: Binh +mail: DALEB@7c9912a898274068a97bbe2d535d84de.bitwarden.com +carLicense: PJV2I8 +departmentNumber: 7779 +employeeType: Contract +homePhone: +1 415 406-8801 +initials: B. D. +mobile: +1 415 584-3623 +pager: +1 415 170-9255 +roomNumber: 9387 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kanata Panch,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanata Panch +sn: Panch +description: This is Kanata Panch's description +facsimileTelephoneNumber: +1 206 223-7795 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 311-7899 +title: Junior Administrative President +userPassword: Password1 +uid: PanchK +givenName: Kanata +mail: PanchK@501150f5ddc648879b7e60650df203a7.bitwarden.com +carLicense: UTQJGQ +departmentNumber: 5920 +employeeType: Contract +homePhone: +1 206 511-8866 +initials: K. P. +mobile: +1 206 442-7098 +pager: +1 206 396-8197 +roomNumber: 9593 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kanata Runciman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanata Runciman +sn: Runciman +description: This is Kanata Runciman's description +facsimileTelephoneNumber: +1 415 568-9628 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 566-4370 +title: Associate Janitorial Czar +userPassword: Password1 +uid: RuncimaK +givenName: Kanata +mail: RuncimaK@a6c2af5a8f94494bae6122c60dacfc6e.bitwarden.com +carLicense: TOAWD9 +departmentNumber: 2925 +employeeType: Normal +homePhone: +1 415 257-9613 +initials: K. R. +mobile: +1 415 671-5020 +pager: +1 415 531-1973 +roomNumber: 8746 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaylene Szymanski +sn: Szymanski +description: This is Gaylene Szymanski's description +facsimileTelephoneNumber: +1 415 209-5429 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 383-9984 +title: Junior Human Resources Madonna +userPassword: Password1 +uid: SzymansG +givenName: Gaylene +mail: SzymansG@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com +carLicense: A4R25H +departmentNumber: 3778 +employeeType: Contract +homePhone: +1 415 340-4280 +initials: G. S. +mobile: +1 415 972-8345 +pager: +1 415 713-8999 +roomNumber: 9826 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lester Brookhart,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lester Brookhart +sn: Brookhart +description: This is Lester Brookhart's description +facsimileTelephoneNumber: +1 415 298-3040 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 255-1437 +title: Supreme Management Evangelist +userPassword: Password1 +uid: BrookhaL +givenName: Lester +mail: BrookhaL@207f92af6bc444a9a508764b35dab916.bitwarden.com +carLicense: HCG0W1 +departmentNumber: 7187 +employeeType: Normal +homePhone: +1 415 504-3573 +initials: L. B. +mobile: +1 415 605-2930 +pager: +1 415 524-3246 +roomNumber: 8334 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Adelheid Godin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adelheid Godin +sn: Godin +description: This is Adelheid Godin's description +facsimileTelephoneNumber: +1 206 320-2683 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 322-5911 +title: Chief Management Janitor +userPassword: Password1 +uid: GodinA +givenName: Adelheid +mail: GodinA@4fc4e61aa4364561b3dbed18d06aa13c.bitwarden.com +carLicense: UBDA3W +departmentNumber: 4411 +employeeType: Normal +homePhone: +1 206 567-7212 +initials: A. G. +mobile: +1 206 745-3760 +pager: +1 206 483-3339 +roomNumber: 8028 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Calypso Hagar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calypso Hagar +sn: Hagar +description: This is Calypso Hagar's description +facsimileTelephoneNumber: +1 206 667-4530 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 807-8043 +title: Junior Management Consultant +userPassword: Password1 +uid: HagarC +givenName: Calypso +mail: HagarC@234ee37c120948d4b641c99209d1bdde.bitwarden.com +carLicense: 85RU0C +departmentNumber: 1872 +employeeType: Contract +homePhone: +1 206 845-2921 +initials: C. H. +mobile: +1 206 315-4378 +pager: +1 206 370-3995 +roomNumber: 8850 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leann Bawek,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leann Bawek +sn: Bawek +description: This is Leann Bawek's description +facsimileTelephoneNumber: +1 408 630-9433 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 469-4644 +title: Master Administrative Assistant +userPassword: Password1 +uid: BawekL +givenName: Leann +mail: BawekL@ce56c75a600546b9ade2ff9aaa1b992b.bitwarden.com +carLicense: 949AWS +departmentNumber: 7443 +employeeType: Normal +homePhone: +1 408 787-2963 +initials: L. B. +mobile: +1 408 571-4292 +pager: +1 408 853-5365 +roomNumber: 9362 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stormy Bayraktar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stormy Bayraktar +sn: Bayraktar +description: This is Stormy Bayraktar's description +facsimileTelephoneNumber: +1 818 554-4989 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 352-1003 +title: Chief Management Stooge +userPassword: Password1 +uid: BayraktS +givenName: Stormy +mail: BayraktS@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com +carLicense: B2C2SR +departmentNumber: 3272 +employeeType: Normal +homePhone: +1 818 766-6269 +initials: S. B. +mobile: +1 818 652-8122 +pager: +1 818 998-2499 +roomNumber: 8356 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Margarita Delisle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margarita Delisle +sn: Delisle +description: This is Margarita Delisle's description +facsimileTelephoneNumber: +1 510 300-1541 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 936-8430 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: DelisleM +givenName: Margarita +mail: DelisleM@de05663cc1c445b9849ee8fab2914551.bitwarden.com +carLicense: O7RLML +departmentNumber: 1061 +employeeType: Normal +homePhone: +1 510 659-7817 +initials: M. D. +mobile: +1 510 919-1645 +pager: +1 510 704-6703 +roomNumber: 8157 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rao Fontana,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rao Fontana +sn: Fontana +description: This is Rao Fontana's description +facsimileTelephoneNumber: +1 415 805-6475 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 587-9292 +title: Associate Management Vice President +userPassword: Password1 +uid: FontanaR +givenName: Rao +mail: FontanaR@3714ef07d9f24410a85dd847beb54eef.bitwarden.com +carLicense: V60PA5 +departmentNumber: 3012 +employeeType: Normal +homePhone: +1 415 192-7081 +initials: R. F. +mobile: +1 415 190-4177 +pager: +1 415 200-8579 +roomNumber: 9655 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Richard Bachelu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Richard Bachelu +sn: Bachelu +description: This is Richard Bachelu's description +facsimileTelephoneNumber: +1 415 196-6254 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 458-3340 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: BacheluR +givenName: Richard +mail: BacheluR@3184696e559c4eb9b1f55dd5eb5e3418.bitwarden.com +carLicense: CUEFQ8 +departmentNumber: 4669 +employeeType: Contract +homePhone: +1 415 264-9353 +initials: R. B. +mobile: +1 415 499-5403 +pager: +1 415 929-6933 +roomNumber: 8332 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tatsman Musa,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatsman Musa +sn: Musa +description: This is Tatsman Musa's description +facsimileTelephoneNumber: +1 408 556-7865 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 226-1853 +title: Supreme Management Punk +userPassword: Password1 +uid: MusaT +givenName: Tatsman +mail: MusaT@7c3aa81c6a4d478383075852375fc21f.bitwarden.com +carLicense: YMBPNT +departmentNumber: 1260 +employeeType: Employee +homePhone: +1 408 455-8867 +initials: T. M. +mobile: +1 408 773-8752 +pager: +1 408 962-6136 +roomNumber: 9685 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pia Maksoud,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pia Maksoud +sn: Maksoud +description: This is Pia Maksoud's description +facsimileTelephoneNumber: +1 213 449-4801 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 176-2121 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: MaksoudP +givenName: Pia +mail: MaksoudP@9688197f14c24b1ba3397822373736ec.bitwarden.com +carLicense: FE8HMO +departmentNumber: 3960 +employeeType: Normal +homePhone: +1 213 907-4323 +initials: P. M. +mobile: +1 213 956-1582 +pager: +1 213 470-1839 +roomNumber: 9572 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Scovill Sayar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Scovill Sayar +sn: Sayar +description: This is Scovill Sayar's description +facsimileTelephoneNumber: +1 818 513-5008 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 391-8840 +title: Master Product Testing Writer +userPassword: Password1 +uid: SayarS +givenName: Scovill +mail: SayarS@6514a77f75fd435b8801b83088c2b38a.bitwarden.com +carLicense: OYJKOH +departmentNumber: 9132 +employeeType: Contract +homePhone: +1 818 255-1949 +initials: S. S. +mobile: +1 818 688-5254 +pager: +1 818 323-4737 +roomNumber: 8528 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Norry Shen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norry Shen +sn: Shen +description: This is Norry Shen's description +facsimileTelephoneNumber: +1 213 159-4421 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 828-7838 +title: Junior Human Resources Director +userPassword: Password1 +uid: ShenN +givenName: Norry +mail: ShenN@539cce6ead8749dbb15039351f6600f2.bitwarden.com +carLicense: IJ7KD9 +departmentNumber: 1207 +employeeType: Normal +homePhone: +1 213 474-4328 +initials: N. S. +mobile: +1 213 279-8113 +pager: +1 213 111-5243 +roomNumber: 8225 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kayle Ahmad,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kayle Ahmad +sn: Ahmad +description: This is Kayle Ahmad's description +facsimileTelephoneNumber: +1 415 258-7313 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 549-4204 +title: Master Payroll Visionary +userPassword: Password1 +uid: AhmadK +givenName: Kayle +mail: AhmadK@d31e92a87311451da615d0866d1a1f0b.bitwarden.com +carLicense: G1MQGT +departmentNumber: 8109 +employeeType: Normal +homePhone: +1 415 837-9120 +initials: K. A. +mobile: +1 415 118-3884 +pager: +1 415 748-7512 +roomNumber: 8349 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Debor Schiltz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debor Schiltz +sn: Schiltz +description: This is Debor Schiltz's description +facsimileTelephoneNumber: +1 804 596-4246 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 804 842-2071 +title: Junior Peons Architect +userPassword: Password1 +uid: SchiltzD +givenName: Debor +mail: SchiltzD@34fb6983abae4929b62080bbb5ec3e07.bitwarden.com +carLicense: 18U2KJ +departmentNumber: 2640 +employeeType: Contract +homePhone: +1 804 306-1469 +initials: D. S. +mobile: +1 804 697-1940 +pager: +1 804 669-3957 +roomNumber: 8558 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sandi Kochanski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandi Kochanski +sn: Kochanski +description: This is Sandi Kochanski's description +facsimileTelephoneNumber: +1 804 184-2591 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 641-8865 +title: Supreme Management Developer +userPassword: Password1 +uid: KochansS +givenName: Sandi +mail: KochansS@3313782fad5f448f843eeeeabc4b6528.bitwarden.com +carLicense: FDED2Y +departmentNumber: 8492 +employeeType: Normal +homePhone: +1 804 193-4729 +initials: S. K. +mobile: +1 804 480-6716 +pager: +1 804 696-9776 +roomNumber: 8154 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hadria Rowley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hadria Rowley +sn: Rowley +description: This is Hadria Rowley's description +facsimileTelephoneNumber: +1 804 853-4005 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 376-8348 +title: Supreme Peons Director +userPassword: Password1 +uid: RowleyH +givenName: Hadria +mail: RowleyH@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com +carLicense: IM49E8 +departmentNumber: 2787 +employeeType: Normal +homePhone: +1 804 135-5920 +initials: H. R. +mobile: +1 804 956-4098 +pager: +1 804 954-4532 +roomNumber: 9908 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rosetta Toscano,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosetta Toscano +sn: Toscano +description: This is Rosetta Toscano's description +facsimileTelephoneNumber: +1 804 421-4877 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 804 776-5975 +title: Junior Peons Punk +userPassword: Password1 +uid: ToscanoR +givenName: Rosetta +mail: ToscanoR@6edb45774ca84613bad15cd0d733e197.bitwarden.com +carLicense: N0N4J2 +departmentNumber: 2548 +employeeType: Normal +homePhone: +1 804 596-8953 +initials: R. T. +mobile: +1 804 973-3452 +pager: +1 804 625-2196 +roomNumber: 9462 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Chi Winsborrow,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chi Winsborrow +sn: Winsborrow +description: This is Chi Winsborrow's description +facsimileTelephoneNumber: +1 206 844-7075 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 886-2123 +title: Chief Payroll Writer +userPassword: Password1 +uid: WinsborC +givenName: Chi +mail: WinsborC@7a29f9439ed8484883467552bcb6396e.bitwarden.com +carLicense: DAVVV1 +departmentNumber: 9571 +employeeType: Normal +homePhone: +1 206 252-1123 +initials: C. W. +mobile: +1 206 790-1271 +pager: +1 206 806-5357 +roomNumber: 8546 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blanch Karunaratne +sn: Karunaratne +description: This is Blanch Karunaratne's description +facsimileTelephoneNumber: +1 510 496-5777 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 119-9996 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: KarunarB +givenName: Blanch +mail: KarunarB@1d1f899f1d144566b6f0636dabdfb0f1.bitwarden.com +carLicense: CCHE8C +departmentNumber: 5755 +employeeType: Employee +homePhone: +1 510 617-2427 +initials: B. K. +mobile: +1 510 872-3878 +pager: +1 510 739-2280 +roomNumber: 8407 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zarah Vanderhoeven +sn: Vanderhoeven +description: This is Zarah Vanderhoeven's description +facsimileTelephoneNumber: +1 213 337-3570 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 405-2306 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: VanderhZ +givenName: Zarah +mail: VanderhZ@fef3179c9c4841a591a83e801687f728.bitwarden.com +carLicense: M1365I +departmentNumber: 1751 +employeeType: Normal +homePhone: +1 213 179-3042 +initials: Z. V. +mobile: +1 213 934-8023 +pager: +1 213 759-2942 +roomNumber: 8332 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ammar Foldes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ammar Foldes +sn: Foldes +description: This is Ammar Foldes's description +facsimileTelephoneNumber: +1 510 633-1802 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 637-3462 +title: Associate Management Madonna +userPassword: Password1 +uid: FoldesA +givenName: Ammar +mail: FoldesA@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com +carLicense: RNRMB6 +departmentNumber: 1171 +employeeType: Contract +homePhone: +1 510 730-7295 +initials: A. F. +mobile: +1 510 511-6781 +pager: +1 510 930-8407 +roomNumber: 8893 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Andria Nagy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andria Nagy +sn: Nagy +description: This is Andria Nagy's description +facsimileTelephoneNumber: +1 818 230-9596 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 682-3454 +title: Master Janitorial Czar +userPassword: Password1 +uid: NagyA +givenName: Andria +mail: NagyA@f356b9ffcffb4ac98d745b6fe117b574.bitwarden.com +carLicense: RVVGBD +departmentNumber: 9836 +employeeType: Employee +homePhone: +1 818 318-3452 +initials: A. N. +mobile: +1 818 198-5575 +pager: +1 818 710-2856 +roomNumber: 8015 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Earle Calkins,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Earle Calkins +sn: Calkins +description: This is Earle Calkins's description +facsimileTelephoneNumber: +1 408 215-8786 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 408 148-5021 +title: Master Janitorial Madonna +userPassword: Password1 +uid: CalkinsE +givenName: Earle +mail: CalkinsE@d31e92a87311451da615d0866d1a1f0b.bitwarden.com +carLicense: 2TDVQ2 +departmentNumber: 9286 +employeeType: Employee +homePhone: +1 408 671-9235 +initials: E. C. +mobile: +1 408 603-8046 +pager: +1 408 726-4758 +roomNumber: 8372 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Irc Loper,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Irc Loper +sn: Loper +description: This is Irc Loper's description +facsimileTelephoneNumber: +1 818 272-9036 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 818 511-1456 +title: Associate Payroll Dictator +userPassword: Password1 +uid: LoperI +givenName: Irc +mail: LoperI@db0d46fdeb854c2eb066d9894606ad6e.bitwarden.com +carLicense: JI2R16 +departmentNumber: 2621 +employeeType: Employee +homePhone: +1 818 173-3119 +initials: I. L. +mobile: +1 818 403-1113 +pager: +1 818 301-4574 +roomNumber: 9426 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dari Landriault,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dari Landriault +sn: Landriault +description: This is Dari Landriault's description +facsimileTelephoneNumber: +1 818 618-7997 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 981-2603 +title: Chief Management Writer +userPassword: Password1 +uid: LandriaD +givenName: Dari +mail: LandriaD@e0fbcbf86ba64fa69e571f107b3ec1d7.bitwarden.com +carLicense: AL7GGF +departmentNumber: 3477 +employeeType: Normal +homePhone: +1 818 228-2698 +initials: D. L. +mobile: +1 818 578-3580 +pager: +1 818 768-3746 +roomNumber: 9751 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Logntp Wilemon +sn: Wilemon +description: This is Logntp Wilemon's description +facsimileTelephoneNumber: +1 408 927-6569 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 408 158-9308 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: WilemonL +givenName: Logntp +mail: WilemonL@3bfc3de402e042a394d461b86f93128b.bitwarden.com +carLicense: K6BJU9 +departmentNumber: 6283 +employeeType: Normal +homePhone: +1 408 682-1492 +initials: L. W. +mobile: +1 408 379-2922 +pager: +1 408 247-1001 +roomNumber: 9002 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lonna Varano,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lonna Varano +sn: Varano +description: This is Lonna Varano's description +facsimileTelephoneNumber: +1 206 574-5132 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 221-5093 +title: Chief Product Development Consultant +userPassword: Password1 +uid: VaranoL +givenName: Lonna +mail: VaranoL@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com +carLicense: DRCV3C +departmentNumber: 3399 +employeeType: Employee +homePhone: +1 206 634-9715 +initials: L. V. +mobile: +1 206 872-2431 +pager: +1 206 280-3147 +roomNumber: 8877 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shan Heynen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shan Heynen +sn: Heynen +description: This is Shan Heynen's description +facsimileTelephoneNumber: +1 408 979-6988 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 420-7949 +title: Associate Product Development Vice President +userPassword: Password1 +uid: HeynenS +givenName: Shan +mail: HeynenS@bb0489742bf04771919e77ac610dacd0.bitwarden.com +carLicense: QYTPKC +departmentNumber: 5123 +employeeType: Normal +homePhone: +1 408 658-4251 +initials: S. H. +mobile: +1 408 180-1731 +pager: +1 408 422-3600 +roomNumber: 8029 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carena Pennington,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carena Pennington +sn: Pennington +description: This is Carena Pennington's description +facsimileTelephoneNumber: +1 804 875-5535 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 334-6426 +title: Junior Human Resources Architect +userPassword: Password1 +uid: PenningC +givenName: Carena +mail: PenningC@7a31b9bd3b244190a4667b858c47bbc9.bitwarden.com +carLicense: R9K8H4 +departmentNumber: 8841 +employeeType: Normal +homePhone: +1 804 581-9991 +initials: C. P. +mobile: +1 804 949-9883 +pager: +1 804 595-7081 +roomNumber: 9515 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Luci Sebastien,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luci Sebastien +sn: Sebastien +description: This is Luci Sebastien's description +facsimileTelephoneNumber: +1 206 615-2294 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 353-1220 +title: Chief Product Development Manager +userPassword: Password1 +uid: SebastiL +givenName: Luci +mail: SebastiL@6776642cb6824166a999264ad8dc48c5.bitwarden.com +carLicense: XVB3JQ +departmentNumber: 1275 +employeeType: Normal +homePhone: +1 206 645-8317 +initials: L. S. +mobile: +1 206 392-3623 +pager: +1 206 196-7265 +roomNumber: 9564 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mansukha Lehtovaara +sn: Lehtovaara +description: This is Mansukha Lehtovaara's description +facsimileTelephoneNumber: +1 804 170-2273 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 472-2597 +title: Supreme Management Figurehead +userPassword: Password1 +uid: LehtovaM +givenName: Mansukha +mail: LehtovaM@5a401695e3b247eaaefdf24718c62818.bitwarden.com +carLicense: 2QKJ0Q +departmentNumber: 8986 +employeeType: Normal +homePhone: +1 804 387-1333 +initials: M. L. +mobile: +1 804 502-5803 +pager: +1 804 413-5151 +roomNumber: 8617 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Feynman OShaughnessey +sn: OShaughnessey +description: This is Feynman OShaughnessey's description +facsimileTelephoneNumber: +1 213 425-8309 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 231-7230 +title: Associate Peons Assistant +userPassword: Password1 +uid: OShaughF +givenName: Feynman +mail: OShaughF@4839522ad0264d68aafb73c3cd081f79.bitwarden.com +carLicense: LQM6SB +departmentNumber: 8807 +employeeType: Normal +homePhone: +1 213 375-2751 +initials: F. O. +mobile: +1 213 876-4585 +pager: +1 213 974-6010 +roomNumber: 8381 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gayleen Hagglund,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gayleen Hagglund +sn: Hagglund +description: This is Gayleen Hagglund's description +facsimileTelephoneNumber: +1 206 102-6962 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 212-2644 +title: Associate Management Sales Rep +userPassword: Password1 +uid: HagglunG +givenName: Gayleen +mail: HagglunG@129df14932ae4f0186cdae7a694343a9.bitwarden.com +carLicense: XK77FA +departmentNumber: 4299 +employeeType: Contract +homePhone: +1 206 900-2476 +initials: G. H. +mobile: +1 206 635-8193 +pager: +1 206 447-6837 +roomNumber: 9520 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorey Wokoma +sn: Wokoma +description: This is Dorey Wokoma's description +facsimileTelephoneNumber: +1 206 379-8189 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 384-5954 +title: Master Human Resources Czar +userPassword: Password1 +uid: WokomaD +givenName: Dorey +mail: WokomaD@4d5fb31e7f90432388e6d7a93e8fe33b.bitwarden.com +carLicense: 51XABH +departmentNumber: 8795 +employeeType: Normal +homePhone: +1 206 602-3379 +initials: D. W. +mobile: +1 206 420-2438 +pager: +1 206 801-4393 +roomNumber: 9676 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sybyl Gubbins,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sybyl Gubbins +sn: Gubbins +description: This is Sybyl Gubbins's description +facsimileTelephoneNumber: +1 206 281-8856 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 206 328-3009 +title: Supreme Management Madonna +userPassword: Password1 +uid: GubbinsS +givenName: Sybyl +mail: GubbinsS@f787d124c5334abea177416c989fec04.bitwarden.com +carLicense: A82XD4 +departmentNumber: 1239 +employeeType: Normal +homePhone: +1 206 928-4502 +initials: S. G. +mobile: +1 206 715-7109 +pager: +1 206 409-3065 +roomNumber: 9795 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Coursdev Racette,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coursdev Racette +sn: Racette +description: This is Coursdev Racette's description +facsimileTelephoneNumber: +1 510 513-6854 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 893-9435 +title: Chief Product Testing Figurehead +userPassword: Password1 +uid: RacetteC +givenName: Coursdev +mail: RacetteC@e4bac3ad693c4157b1be0e5e7444cbf8.bitwarden.com +carLicense: 6UQ2JC +departmentNumber: 2205 +employeeType: Employee +homePhone: +1 510 192-5183 +initials: C. R. +mobile: +1 510 884-5244 +pager: +1 510 321-7032 +roomNumber: 9199 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fayth Biggs,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fayth Biggs +sn: Biggs +description: This is Fayth Biggs's description +facsimileTelephoneNumber: +1 510 305-4168 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 564-4741 +title: Junior Payroll Mascot +userPassword: Password1 +uid: BiggsF +givenName: Fayth +mail: BiggsF@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com +carLicense: KPX3SE +departmentNumber: 3215 +employeeType: Employee +homePhone: +1 510 456-4607 +initials: F. B. +mobile: +1 510 411-9711 +pager: +1 510 268-9638 +roomNumber: 9536 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Neely Elbeze,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neely Elbeze +sn: Elbeze +description: This is Neely Elbeze's description +facsimileTelephoneNumber: +1 415 966-6146 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 922-8860 +title: Chief Payroll Director +userPassword: Password1 +uid: ElbezeN +givenName: Neely +mail: ElbezeN@21b4ff7eaee4433da6e498e7c5416e46.bitwarden.com +carLicense: WD49VF +departmentNumber: 4860 +employeeType: Normal +homePhone: +1 415 553-1601 +initials: N. E. +mobile: +1 415 466-4953 +pager: +1 415 920-2034 +roomNumber: 9219 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jamin Shute,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jamin Shute +sn: Shute +description: This is Jamin Shute's description +facsimileTelephoneNumber: +1 408 444-6419 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 408 945-9186 +title: Master Human Resources Evangelist +userPassword: Password1 +uid: ShuteJ +givenName: Jamin +mail: ShuteJ@d6177e62683049c2b0fc2f004265e4ff.bitwarden.com +carLicense: GVHPLK +departmentNumber: 5880 +employeeType: Normal +homePhone: +1 408 714-8702 +initials: J. S. +mobile: +1 408 700-5485 +pager: +1 408 592-1127 +roomNumber: 8781 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sabuson Flach,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabuson Flach +sn: Flach +description: This is Sabuson Flach's description +facsimileTelephoneNumber: +1 213 342-3338 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 816-5517 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: FlachS +givenName: Sabuson +mail: FlachS@15e5c78fa75f4006a7a718476b38350f.bitwarden.com +carLicense: VXWT7V +departmentNumber: 6874 +employeeType: Contract +homePhone: +1 213 124-6437 +initials: S. F. +mobile: +1 213 233-1829 +pager: +1 213 377-5734 +roomNumber: 8563 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Laurence Wootton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laurence Wootton +sn: Wootton +description: This is Laurence Wootton's description +facsimileTelephoneNumber: +1 804 652-4190 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 992-1640 +title: Chief Human Resources Punk +userPassword: Password1 +uid: WoottonL +givenName: Laurence +mail: WoottonL@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com +carLicense: W4KTDF +departmentNumber: 5237 +employeeType: Contract +homePhone: +1 804 169-4631 +initials: L. W. +mobile: +1 804 827-7572 +pager: +1 804 779-2357 +roomNumber: 8454 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atsuo DeVries +sn: DeVries +description: This is Atsuo DeVries's description +facsimileTelephoneNumber: +1 408 841-5672 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 701-4079 +title: Chief Janitorial Developer +userPassword: Password1 +uid: DeVriesA +givenName: Atsuo +mail: DeVriesA@90b5b0065a4e4dc3b484c9e88ebc320e.bitwarden.com +carLicense: OWV7IY +departmentNumber: 3305 +employeeType: Contract +homePhone: +1 408 992-9924 +initials: A. D. +mobile: +1 408 657-3282 +pager: +1 408 835-3152 +roomNumber: 8361 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Eric Skrobecki,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eric Skrobecki +sn: Skrobecki +description: This is Eric Skrobecki's description +facsimileTelephoneNumber: +1 408 459-8402 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 873-4469 +title: Junior Management Vice President +userPassword: Password1 +uid: SkrobecE +givenName: Eric +mail: SkrobecE@35246f7c7d854ddcb889890419b35d0c.bitwarden.com +carLicense: EUDRK6 +departmentNumber: 6087 +employeeType: Normal +homePhone: +1 408 890-6568 +initials: E. S. +mobile: +1 408 547-4133 +pager: +1 408 101-4611 +roomNumber: 9106 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tatum Meffe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatum Meffe +sn: Meffe +description: This is Tatum Meffe's description +facsimileTelephoneNumber: +1 510 648-9786 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 172-6300 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: MeffeT +givenName: Tatum +mail: MeffeT@afde3113416043d98395556c73711549.bitwarden.com +carLicense: 6JSPGV +departmentNumber: 1775 +employeeType: Contract +homePhone: +1 510 169-8155 +initials: T. M. +mobile: +1 510 456-6009 +pager: +1 510 777-2590 +roomNumber: 8816 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Reinhard Homonick,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reinhard Homonick +sn: Homonick +description: This is Reinhard Homonick's description +facsimileTelephoneNumber: +1 510 389-6314 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 393-4723 +title: Associate Peons Warrior +userPassword: Password1 +uid: HomonicR +givenName: Reinhard +mail: HomonicR@9a209519348642769473b09231da3137.bitwarden.com +carLicense: KP81AJ +departmentNumber: 4300 +employeeType: Normal +homePhone: +1 510 562-5815 +initials: R. H. +mobile: +1 510 928-2475 +pager: +1 510 929-2595 +roomNumber: 9525 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rafaelia Digiacomo +sn: Digiacomo +description: This is Rafaelia Digiacomo's description +facsimileTelephoneNumber: +1 510 490-4427 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 515-6483 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: DigiacoR +givenName: Rafaelia +mail: DigiacoR@7342ee713ddb492bb8f187e76f68e083.bitwarden.com +carLicense: EXNDRS +departmentNumber: 4540 +employeeType: Normal +homePhone: +1 510 974-2079 +initials: R. D. +mobile: +1 510 308-9541 +pager: +1 510 417-4923 +roomNumber: 8010 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Imojean Sinnott,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imojean Sinnott +sn: Sinnott +description: This is Imojean Sinnott's description +facsimileTelephoneNumber: +1 408 229-3502 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 540-3246 +title: Junior Payroll Consultant +userPassword: Password1 +uid: SinnottI +givenName: Imojean +mail: SinnottI@9b5531beccfb48e780d0aa7ac3b90e83.bitwarden.com +carLicense: IHFF0Y +departmentNumber: 1683 +employeeType: Contract +homePhone: +1 408 696-9844 +initials: I. S. +mobile: +1 408 505-6375 +pager: +1 408 482-3127 +roomNumber: 8823 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Matt Buttrey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matt Buttrey +sn: Buttrey +description: This is Matt Buttrey's description +facsimileTelephoneNumber: +1 804 497-3689 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 804 434-9641 +title: Junior Product Testing Dictator +userPassword: Password1 +uid: ButtreyM +givenName: Matt +mail: ButtreyM@958185118457477783d16f2fa9e93aa2.bitwarden.com +carLicense: 9HITQT +departmentNumber: 2027 +employeeType: Employee +homePhone: +1 804 234-9282 +initials: M. B. +mobile: +1 804 884-8144 +pager: +1 804 341-9227 +roomNumber: 9276 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tadayuki Seguin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tadayuki Seguin +sn: Seguin +description: This is Tadayuki Seguin's description +facsimileTelephoneNumber: +1 415 132-4203 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 352-9596 +title: Supreme Management Dictator +userPassword: Password1 +uid: SeguinT +givenName: Tadayuki +mail: SeguinT@738b42a56ab44af39fa9da7b9eaffcee.bitwarden.com +carLicense: K9VC89 +departmentNumber: 6871 +employeeType: Normal +homePhone: +1 415 483-9118 +initials: T. S. +mobile: +1 415 644-1782 +pager: +1 415 172-8848 +roomNumber: 9212 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cang Smyth,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cang Smyth +sn: Smyth +description: This is Cang Smyth's description +facsimileTelephoneNumber: +1 510 954-8852 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 956-3194 +title: Master Management Grunt +userPassword: Password1 +uid: SmythC +givenName: Cang +mail: SmythC@6ff512afd6074ffb8be89092e99d3615.bitwarden.com +carLicense: T10DFF +departmentNumber: 4950 +employeeType: Employee +homePhone: +1 510 542-9133 +initials: C. S. +mobile: +1 510 761-5385 +pager: +1 510 238-3467 +roomNumber: 8316 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Suzie Guillet,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzie Guillet +sn: Guillet +description: This is Suzie Guillet's description +facsimileTelephoneNumber: +1 213 736-9168 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 612-2392 +title: Supreme Administrative Czar +userPassword: Password1 +uid: GuilletS +givenName: Suzie +mail: GuilletS@39810c97a1b24f6582a082401b4c2e13.bitwarden.com +carLicense: MTIWBT +departmentNumber: 7155 +employeeType: Normal +homePhone: +1 213 801-4562 +initials: S. G. +mobile: +1 213 419-1019 +pager: +1 213 633-7616 +roomNumber: 8826 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leilah Traulich,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leilah Traulich +sn: Traulich +description: This is Leilah Traulich's description +facsimileTelephoneNumber: +1 415 337-2345 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 585-8139 +title: Junior Management Admin +userPassword: Password1 +uid: TraulicL +givenName: Leilah +mail: TraulicL@10dd7c8b6c9343a9afbb8ab70a5f8b0a.bitwarden.com +carLicense: HNMCNU +departmentNumber: 1518 +employeeType: Normal +homePhone: +1 415 558-3162 +initials: L. T. +mobile: +1 415 869-9901 +pager: +1 415 601-4442 +roomNumber: 8844 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Horst Kaye,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Horst Kaye +sn: Kaye +description: This is Horst Kaye's description +facsimileTelephoneNumber: +1 510 896-1678 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 261-3726 +title: Junior Management Assistant +userPassword: Password1 +uid: KayeH +givenName: Horst +mail: KayeH@6ef4ed9ae6c24731b126e620358a2de4.bitwarden.com +carLicense: SGBKYF +departmentNumber: 9607 +employeeType: Normal +homePhone: +1 510 708-8333 +initials: H. K. +mobile: +1 510 390-7543 +pager: +1 510 720-6162 +roomNumber: 8384 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nuri Licerio,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nuri Licerio +sn: Licerio +description: This is Nuri Licerio's description +facsimileTelephoneNumber: +1 408 734-2339 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 678-5238 +title: Junior Product Testing Artist +userPassword: Password1 +uid: LicerioN +givenName: Nuri +mail: LicerioN@dc0f9a471328411da837f1c30f57d52b.bitwarden.com +carLicense: O7CCM5 +departmentNumber: 6827 +employeeType: Contract +homePhone: +1 408 747-9390 +initials: N. L. +mobile: +1 408 598-3954 +pager: +1 408 524-8627 +roomNumber: 8393 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tommi Preville,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tommi Preville +sn: Preville +description: This is Tommi Preville's description +facsimileTelephoneNumber: +1 206 466-3689 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 745-9227 +title: Supreme Janitorial Stooge +userPassword: Password1 +uid: PrevillT +givenName: Tommi +mail: PrevillT@ebac77f62ce1443b8d4bda5d4c334c86.bitwarden.com +carLicense: 8S7MO5 +departmentNumber: 2244 +employeeType: Employee +homePhone: +1 206 475-8735 +initials: T. P. +mobile: +1 206 726-6756 +pager: +1 206 270-7316 +roomNumber: 9074 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fredericka Christopher,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fredericka Christopher +sn: Christopher +description: This is Fredericka Christopher's description +facsimileTelephoneNumber: +1 415 283-5932 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 605-2354 +title: Associate Peons Technician +userPassword: Password1 +uid: ChristoF +givenName: Fredericka +mail: ChristoF@c98eaad0f92a41b49339315f79d6648a.bitwarden.com +carLicense: UI69TE +departmentNumber: 9761 +employeeType: Employee +homePhone: +1 415 845-4891 +initials: F. C. +mobile: +1 415 354-9847 +pager: +1 415 475-7768 +roomNumber: 9984 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Avivah Shostak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avivah Shostak +sn: Shostak +description: This is Avivah Shostak's description +facsimileTelephoneNumber: +1 818 541-5333 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 645-2077 +title: Master Human Resources Grunt +userPassword: Password1 +uid: ShostakA +givenName: Avivah +mail: ShostakA@fa1b72a27fc34f4eb3c5c550f81af8b3.bitwarden.com +carLicense: 44ULG0 +departmentNumber: 3822 +employeeType: Employee +homePhone: +1 818 218-1250 +initials: A. S. +mobile: +1 818 161-4831 +pager: +1 818 296-9098 +roomNumber: 9491 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tyne Briard,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tyne Briard +sn: Briard +description: This is Tyne Briard's description +facsimileTelephoneNumber: +1 818 412-2961 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 246-6352 +title: Supreme Janitorial President +userPassword: Password1 +uid: BriardT +givenName: Tyne +mail: BriardT@fb9aa8f3b49848c792549daf315b1674.bitwarden.com +carLicense: U59Q35 +departmentNumber: 6224 +employeeType: Employee +homePhone: +1 818 174-8796 +initials: T. B. +mobile: +1 818 422-4438 +pager: +1 818 266-5636 +roomNumber: 9912 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Drucy Levere,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drucy Levere +sn: Levere +description: This is Drucy Levere's description +facsimileTelephoneNumber: +1 408 216-8573 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 636-7626 +title: Master Product Testing Writer +userPassword: Password1 +uid: LevereD +givenName: Drucy +mail: LevereD@8044dacf63ac423fb3f7e245d1b46862.bitwarden.com +carLicense: PYGIC3 +departmentNumber: 4360 +employeeType: Contract +homePhone: +1 408 199-1256 +initials: D. L. +mobile: +1 408 226-4078 +pager: +1 408 687-8442 +roomNumber: 9164 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjorie Wrigley +sn: Wrigley +description: This is Marjorie Wrigley's description +facsimileTelephoneNumber: +1 415 454-3347 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 682-1394 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: WrigleyM +givenName: Marjorie +mail: WrigleyM@b9fd32c3a76b47599b2f4bf846bb48b6.bitwarden.com +carLicense: OPVH83 +departmentNumber: 2107 +employeeType: Normal +homePhone: +1 415 245-4847 +initials: M. W. +mobile: +1 415 998-2996 +pager: +1 415 532-2011 +roomNumber: 8008 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryce Dreisbach +sn: Dreisbach +description: This is Bryce Dreisbach's description +facsimileTelephoneNumber: +1 415 106-6501 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 599-1511 +title: Chief Payroll Janitor +userPassword: Password1 +uid: DreisbaB +givenName: Bryce +mail: DreisbaB@40c7ef179c0c4bb996024cd1b1971dad.bitwarden.com +carLicense: SPH8OX +departmentNumber: 3151 +employeeType: Normal +homePhone: +1 415 319-3967 +initials: B. D. +mobile: +1 415 361-6383 +pager: +1 415 610-1524 +roomNumber: 8447 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gianna Rivera,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gianna Rivera +sn: Rivera +description: This is Gianna Rivera's description +facsimileTelephoneNumber: +1 213 614-3123 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 630-2460 +title: Chief Administrative Writer +userPassword: Password1 +uid: RiveraG +givenName: Gianna +mail: RiveraG@841cbd92bca942e386baa349c14cda77.bitwarden.com +carLicense: J3NLV9 +departmentNumber: 1815 +employeeType: Normal +homePhone: +1 213 792-6215 +initials: G. R. +mobile: +1 213 339-7625 +pager: +1 213 274-5646 +roomNumber: 9138 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnnaMarie Kanies +sn: Kanies +description: This is AnnaMarie Kanies's description +facsimileTelephoneNumber: +1 415 719-4036 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 906-7505 +title: Junior Janitorial Vice President +userPassword: Password1 +uid: KaniesA +givenName: AnnaMarie +mail: KaniesA@9135ac12963a4f24b390086599e22c6a.bitwarden.com +carLicense: TEBE1G +departmentNumber: 2977 +employeeType: Employee +homePhone: +1 415 667-4044 +initials: A. K. +mobile: +1 415 290-9679 +pager: +1 415 741-2801 +roomNumber: 8320 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Natalya Heller,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natalya Heller +sn: Heller +description: This is Natalya Heller's description +facsimileTelephoneNumber: +1 408 244-9181 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 362-2084 +title: Chief Peons Pinhead +userPassword: Password1 +uid: HellerN +givenName: Natalya +mail: HellerN@aceb7777c6cc4e94927cd8d9ab7f9d71.bitwarden.com +carLicense: PM8RGH +departmentNumber: 9781 +employeeType: Employee +homePhone: +1 408 170-1966 +initials: N. H. +mobile: +1 408 281-5046 +pager: +1 408 676-2567 +roomNumber: 8891 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirstie Outhwaite +sn: Outhwaite +description: This is Kirstie Outhwaite's description +facsimileTelephoneNumber: +1 818 960-8356 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 818 131-3269 +title: Supreme Janitorial Artist +userPassword: Password1 +uid: OuthwaiK +givenName: Kirstie +mail: OuthwaiK@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com +carLicense: 1NV8QG +departmentNumber: 8222 +employeeType: Normal +homePhone: +1 818 645-5349 +initials: K. O. +mobile: +1 818 647-1633 +pager: +1 818 616-4641 +roomNumber: 9327 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atsushi Moriyama +sn: Moriyama +description: This is Atsushi Moriyama's description +facsimileTelephoneNumber: +1 408 633-2958 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 408 224-1196 +title: Master Administrative Janitor +userPassword: Password1 +uid: MoriyamA +givenName: Atsushi +mail: MoriyamA@a5ff234c382a4fef9f6d4e72344adb22.bitwarden.com +carLicense: NS4OBS +departmentNumber: 9187 +employeeType: Contract +homePhone: +1 408 305-2965 +initials: A. M. +mobile: +1 408 975-4991 +pager: +1 408 212-7485 +roomNumber: 8761 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernadina Ledu +sn: Ledu +description: This is Bernadina Ledu's description +facsimileTelephoneNumber: +1 510 921-1468 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 276-6332 +title: Master Janitorial Assistant +userPassword: Password1 +uid: LeduB +givenName: Bernadina +mail: LeduB@7969b0806fba4e3d88a5a3efd04eb548.bitwarden.com +carLicense: M2WGSS +departmentNumber: 5685 +employeeType: Contract +homePhone: +1 510 513-1430 +initials: B. L. +mobile: +1 510 612-5113 +pager: +1 510 887-1351 +roomNumber: 8029 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dyana Harsch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyana Harsch +sn: Harsch +description: This is Dyana Harsch's description +facsimileTelephoneNumber: +1 510 772-7167 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 191-9497 +title: Chief Management Mascot +userPassword: Password1 +uid: HarschD +givenName: Dyana +mail: HarschD@42343c98437b42798d5730c9e2f3e139.bitwarden.com +carLicense: WM8DK7 +departmentNumber: 3457 +employeeType: Contract +homePhone: +1 510 583-5683 +initials: D. H. +mobile: +1 510 387-2723 +pager: +1 510 475-5832 +roomNumber: 9863 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kazem Guenette,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazem Guenette +sn: Guenette +description: This is Kazem Guenette's description +facsimileTelephoneNumber: +1 510 871-7152 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 336-5672 +title: Junior Product Testing Czar +userPassword: Password1 +uid: GuenettK +givenName: Kazem +mail: GuenettK@c925a785cc914f7896a342038a540076.bitwarden.com +carLicense: BFWXWJ +departmentNumber: 8835 +employeeType: Normal +homePhone: +1 510 409-7648 +initials: K. G. +mobile: +1 510 731-8876 +pager: +1 510 678-2441 +roomNumber: 8935 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Allis McCartney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allis McCartney +sn: McCartney +description: This is Allis McCartney's description +facsimileTelephoneNumber: +1 510 827-6205 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 827-7061 +title: Junior Product Development Engineer +userPassword: Password1 +uid: McCartnA +givenName: Allis +mail: McCartnA@459e2f62db0c40d5b3c7b2d6945ef874.bitwarden.com +carLicense: 0R78JL +departmentNumber: 6488 +employeeType: Normal +homePhone: +1 510 103-9551 +initials: A. M. +mobile: +1 510 773-4972 +pager: +1 510 423-5819 +roomNumber: 9434 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Arlana Shemwell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlana Shemwell +sn: Shemwell +description: This is Arlana Shemwell's description +facsimileTelephoneNumber: +1 213 732-8151 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 542-8243 +title: Supreme Peons Janitor +userPassword: Password1 +uid: ShemwelA +givenName: Arlana +mail: ShemwelA@361f4dedfe9a4aada39bf693c8c1bc40.bitwarden.com +carLicense: 6JAXX9 +departmentNumber: 3474 +employeeType: Contract +homePhone: +1 213 656-6911 +initials: A. S. +mobile: +1 213 877-1727 +pager: +1 213 503-8691 +roomNumber: 9038 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Francisca Pollinzi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francisca Pollinzi +sn: Pollinzi +description: This is Francisca Pollinzi's description +facsimileTelephoneNumber: +1 206 947-2853 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 794-3846 +title: Master Peons Czar +userPassword: Password1 +uid: PollinzF +givenName: Francisca +mail: PollinzF@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com +carLicense: 9TVYH1 +departmentNumber: 5473 +employeeType: Contract +homePhone: +1 206 503-6811 +initials: F. P. +mobile: +1 206 897-5905 +pager: +1 206 518-4735 +roomNumber: 8974 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Radomir Neate,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Radomir Neate +sn: Neate +description: This is Radomir Neate's description +facsimileTelephoneNumber: +1 408 514-8264 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 408 691-7976 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: NeateR +givenName: Radomir +mail: NeateR@80d6647c06ea43a2a2ec98fb5ba9edb6.bitwarden.com +carLicense: B30O3C +departmentNumber: 9602 +employeeType: Normal +homePhone: +1 408 556-6133 +initials: R. N. +mobile: +1 408 787-8017 +pager: +1 408 566-5704 +roomNumber: 8507 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Earnest Wracher,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Earnest Wracher +sn: Wracher +description: This is Earnest Wracher's description +facsimileTelephoneNumber: +1 804 385-9812 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 470-9583 +title: Supreme Peons Architect +userPassword: Password1 +uid: WracherE +givenName: Earnest +mail: WracherE@1b2f79ecf49b44fe9c6b7bb74dd2d54b.bitwarden.com +carLicense: W6FBIN +departmentNumber: 6782 +employeeType: Employee +homePhone: +1 804 428-1076 +initials: E. W. +mobile: +1 804 796-4902 +pager: +1 804 679-7139 +roomNumber: 9311 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Aurie Hinkle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurie Hinkle +sn: Hinkle +description: This is Aurie Hinkle's description +facsimileTelephoneNumber: +1 510 973-4778 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 647-4731 +title: Junior Management Admin +userPassword: Password1 +uid: HinkleA +givenName: Aurie +mail: HinkleA@1f52489263294bdcb74bf08e15dc639b.bitwarden.com +carLicense: IIDQDL +departmentNumber: 4933 +employeeType: Employee +homePhone: +1 510 983-5310 +initials: A. H. +mobile: +1 510 303-3006 +pager: +1 510 609-8874 +roomNumber: 8774 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Durali Raynor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Durali Raynor +sn: Raynor +description: This is Durali Raynor's description +facsimileTelephoneNumber: +1 510 118-5145 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 941-1824 +title: Master Management Figurehead +userPassword: Password1 +uid: RaynorD +givenName: Durali +mail: RaynorD@f09e11e5beca4779a4a93445ceda8470.bitwarden.com +carLicense: JKHN3W +departmentNumber: 4872 +employeeType: Normal +homePhone: +1 510 719-1190 +initials: D. R. +mobile: +1 510 804-6662 +pager: +1 510 896-1648 +roomNumber: 8148 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Waverly Eisenhart +sn: Eisenhart +description: This is Waverly Eisenhart's description +facsimileTelephoneNumber: +1 415 399-4105 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 315-9172 +title: Associate Human Resources Warrior +userPassword: Password1 +uid: EisenhaW +givenName: Waverly +mail: EisenhaW@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com +carLicense: QFOK7O +departmentNumber: 6949 +employeeType: Contract +homePhone: +1 415 896-9026 +initials: W. E. +mobile: +1 415 525-7996 +pager: +1 415 544-5446 +roomNumber: 8251 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Isoft Parkash,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isoft Parkash +sn: Parkash +description: This is Isoft Parkash's description +facsimileTelephoneNumber: +1 408 634-8888 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 408 162-7192 +title: Master Peons Evangelist +userPassword: Password1 +uid: ParkashI +givenName: Isoft +mail: ParkashI@42be868e79934b2781b6098b8536a633.bitwarden.com +carLicense: 4E1968 +departmentNumber: 9634 +employeeType: Contract +homePhone: +1 408 759-8596 +initials: I. P. +mobile: +1 408 572-7874 +pager: +1 408 502-6668 +roomNumber: 9933 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Phillie Kneese,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phillie Kneese +sn: Kneese +description: This is Phillie Kneese's description +facsimileTelephoneNumber: +1 510 893-2619 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 185-8195 +title: Associate Peons Consultant +userPassword: Password1 +uid: KneeseP +givenName: Phillie +mail: KneeseP@80c352552a9f4c3e8fd783fb4b49aece.bitwarden.com +carLicense: 138EM8 +departmentNumber: 4064 +employeeType: Contract +homePhone: +1 510 188-6986 +initials: P. K. +mobile: +1 510 435-5535 +pager: +1 510 258-4056 +roomNumber: 9582 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vilhelmina Sapena +sn: Sapena +description: This is Vilhelmina Sapena's description +facsimileTelephoneNumber: +1 510 370-2892 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 586-7653 +title: Junior Payroll Writer +userPassword: Password1 +uid: SapenaV +givenName: Vilhelmina +mail: SapenaV@548e0585ebf342b985467eca55f4e5f8.bitwarden.com +carLicense: 7TCQ5P +departmentNumber: 8802 +employeeType: Normal +homePhone: +1 510 150-6563 +initials: V. S. +mobile: +1 510 273-5505 +pager: +1 510 632-8322 +roomNumber: 8721 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonida Letourneau +sn: Letourneau +description: This is Leonida Letourneau's description +facsimileTelephoneNumber: +1 206 297-4247 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 790-6263 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: LetournL +givenName: Leonida +mail: LetournL@c623094db4da4e6aad9474168db929fb.bitwarden.com +carLicense: 08JRI9 +departmentNumber: 2138 +employeeType: Contract +homePhone: +1 206 797-8417 +initials: L. L. +mobile: +1 206 629-6670 +pager: +1 206 312-4741 +roomNumber: 9637 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lucinda Cuellar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucinda Cuellar +sn: Cuellar +description: This is Lucinda Cuellar's description +facsimileTelephoneNumber: +1 213 704-9717 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 749-7067 +title: Master Peons Consultant +userPassword: Password1 +uid: CuellarL +givenName: Lucinda +mail: CuellarL@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com +carLicense: HSG0BA +departmentNumber: 2130 +employeeType: Normal +homePhone: +1 213 254-5708 +initials: L. C. +mobile: +1 213 211-6451 +pager: +1 213 747-1375 +roomNumber: 9084 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rozele Chahal,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozele Chahal +sn: Chahal +description: This is Rozele Chahal's description +facsimileTelephoneNumber: +1 415 377-3985 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 415 285-3343 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: ChahalR +givenName: Rozele +mail: ChahalR@af154d0412124681a7f0c1fe1b00a8ec.bitwarden.com +carLicense: 6O04KN +departmentNumber: 8624 +employeeType: Employee +homePhone: +1 415 981-1013 +initials: R. C. +mobile: +1 415 573-9015 +pager: +1 415 647-6097 +roomNumber: 9349 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marko Mgmt,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marko Mgmt +sn: Mgmt +description: This is Marko Mgmt's description +facsimileTelephoneNumber: +1 213 682-7034 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 356-2959 +title: Junior Product Development Admin +userPassword: Password1 +uid: MgmtM +givenName: Marko +mail: MgmtM@12d826ce1ce0413184a7ed1f22160fef.bitwarden.com +carLicense: E7NQBE +departmentNumber: 8445 +employeeType: Employee +homePhone: +1 213 457-8674 +initials: M. M. +mobile: +1 213 569-9059 +pager: +1 213 510-2661 +roomNumber: 8026 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Anissa Adcox,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anissa Adcox +sn: Adcox +description: This is Anissa Adcox's description +facsimileTelephoneNumber: +1 415 597-7048 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 185-6239 +title: Master Payroll Mascot +userPassword: Password1 +uid: AdcoxA +givenName: Anissa +mail: AdcoxA@b5f108bd2af841fc9950983c51799ea8.bitwarden.com +carLicense: VKXS9A +departmentNumber: 5922 +employeeType: Employee +homePhone: +1 415 992-2471 +initials: A. A. +mobile: +1 415 913-6902 +pager: +1 415 351-6124 +roomNumber: 9683 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cinnamon Szpilfogel +sn: Szpilfogel +description: This is Cinnamon Szpilfogel's description +facsimileTelephoneNumber: +1 510 434-1616 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 550-9782 +title: Supreme Janitorial Visionary +userPassword: Password1 +uid: SzpilfoC +givenName: Cinnamon +mail: SzpilfoC@6d4a907d1f0e46609843939862dfb577.bitwarden.com +carLicense: 3H4NCT +departmentNumber: 9577 +employeeType: Employee +homePhone: +1 510 628-5789 +initials: C. S. +mobile: +1 510 930-5954 +pager: +1 510 665-5363 +roomNumber: 9901 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selestina Bovenizer +sn: Bovenizer +description: This is Selestina Bovenizer's description +facsimileTelephoneNumber: +1 510 268-3316 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 196-2789 +title: Supreme Payroll Stooge +userPassword: Password1 +uid: BovenizS +givenName: Selestina +mail: BovenizS@2a059eb898534a808ef7c84caa852d0c.bitwarden.com +carLicense: 974KVJ +departmentNumber: 3637 +employeeType: Employee +homePhone: +1 510 992-8003 +initials: S. B. +mobile: +1 510 107-4349 +pager: +1 510 298-5552 +roomNumber: 9498 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hanh Glanfield,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanh Glanfield +sn: Glanfield +description: This is Hanh Glanfield's description +facsimileTelephoneNumber: +1 818 967-6374 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 200-9676 +title: Chief Management Assistant +userPassword: Password1 +uid: GlanfieH +givenName: Hanh +mail: GlanfieH@c70f5c4b622948cbb170ceb432dc60b9.bitwarden.com +carLicense: IGN6Q1 +departmentNumber: 4084 +employeeType: Contract +homePhone: +1 818 240-6174 +initials: H. G. +mobile: +1 818 401-1541 +pager: +1 818 565-8436 +roomNumber: 9308 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shailesh Bienek,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shailesh Bienek +sn: Bienek +description: This is Shailesh Bienek's description +facsimileTelephoneNumber: +1 206 385-4460 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 837-7227 +title: Master Management Pinhead +userPassword: Password1 +uid: BienekS +givenName: Shailesh +mail: BienekS@c763d0c8840c43c8b86db366006c5bab.bitwarden.com +carLicense: SY7SPD +departmentNumber: 6899 +employeeType: Normal +homePhone: +1 206 662-5813 +initials: S. B. +mobile: +1 206 274-2278 +pager: +1 206 905-3556 +roomNumber: 9276 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gerardo Bedlington,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerardo Bedlington +sn: Bedlington +description: This is Gerardo Bedlington's description +facsimileTelephoneNumber: +1 415 828-4772 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 508-1000 +title: Master Peons Developer +userPassword: Password1 +uid: BedlingG +givenName: Gerardo +mail: BedlingG@1f795536a65f4b09ab4f9926820522a8.bitwarden.com +carLicense: YEU0LI +departmentNumber: 3062 +employeeType: Contract +homePhone: +1 415 628-2631 +initials: G. B. +mobile: +1 415 213-4259 +pager: +1 415 434-9479 +roomNumber: 8270 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belicia MooreVigeant +sn: MooreVigeant +description: This is Belicia MooreVigeant's description +facsimileTelephoneNumber: +1 510 709-1406 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 805-4850 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: MooreViB +givenName: Belicia +mail: MooreViB@ceb6137ac4aa473792db4b7b088606ac.bitwarden.com +carLicense: V9OBMV +departmentNumber: 5966 +employeeType: Normal +homePhone: +1 510 822-7965 +initials: B. M. +mobile: +1 510 267-5726 +pager: +1 510 583-2737 +roomNumber: 8791 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Erle Kasprzak,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erle Kasprzak +sn: Kasprzak +description: This is Erle Kasprzak's description +facsimileTelephoneNumber: +1 804 998-8544 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 895-9433 +title: Chief Management Pinhead +userPassword: Password1 +uid: KasprzaE +givenName: Erle +mail: KasprzaE@e05752054bdf4aeabb75f365622f6480.bitwarden.com +carLicense: GBLR7E +departmentNumber: 5684 +employeeType: Contract +homePhone: +1 804 866-4087 +initials: E. K. +mobile: +1 804 716-5501 +pager: +1 804 676-7678 +roomNumber: 9548 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norikazu Mathieu +sn: Mathieu +description: This is Norikazu Mathieu's description +facsimileTelephoneNumber: +1 213 687-3091 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 157-3077 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: MathieuN +givenName: Norikazu +mail: MathieuN@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com +carLicense: Y23QHQ +departmentNumber: 2112 +employeeType: Employee +homePhone: +1 213 661-6366 +initials: N. M. +mobile: +1 213 971-5204 +pager: +1 213 507-6585 +roomNumber: 8600 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Knut Nilson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Knut Nilson +sn: Nilson +description: This is Knut Nilson's description +facsimileTelephoneNumber: +1 206 105-7185 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 879-8791 +title: Chief Administrative Stooge +userPassword: Password1 +uid: NilsonK +givenName: Knut +mail: NilsonK@bdc6007cc6e34b34a9dcf44589f8b6cd.bitwarden.com +carLicense: WUCCUB +departmentNumber: 4198 +employeeType: Normal +homePhone: +1 206 301-3550 +initials: K. N. +mobile: +1 206 337-5080 +pager: +1 206 653-8921 +roomNumber: 9243 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Laser Sandiford,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laser Sandiford +sn: Sandiford +description: This is Laser Sandiford's description +facsimileTelephoneNumber: +1 213 170-3892 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 131-6691 +title: Associate Payroll Visionary +userPassword: Password1 +uid: SandifoL +givenName: Laser +mail: SandifoL@25c2c1e49343484290a351a7909ac3a8.bitwarden.com +carLicense: YX6TIE +departmentNumber: 2546 +employeeType: Employee +homePhone: +1 213 330-8595 +initials: L. S. +mobile: +1 213 628-8006 +pager: +1 213 390-5556 +roomNumber: 8611 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deedee Gaiotti +sn: Gaiotti +description: This is Deedee Gaiotti's description +facsimileTelephoneNumber: +1 818 488-2486 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 306-4296 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: GaiottiD +givenName: Deedee +mail: GaiottiD@445a60ac98804054899e1164059fd95e.bitwarden.com +carLicense: DI4WJI +departmentNumber: 9411 +employeeType: Employee +homePhone: +1 818 696-9671 +initials: D. G. +mobile: +1 818 988-3525 +pager: +1 818 612-1660 +roomNumber: 8869 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulcea Rabipour +sn: Rabipour +description: This is Dulcea Rabipour's description +facsimileTelephoneNumber: +1 206 212-5695 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 725-8379 +title: Associate Administrative Grunt +userPassword: Password1 +uid: RabipouD +givenName: Dulcea +mail: RabipouD@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com +carLicense: O84Y2L +departmentNumber: 4182 +employeeType: Normal +homePhone: +1 206 237-4429 +initials: D. R. +mobile: +1 206 259-7158 +pager: +1 206 194-4468 +roomNumber: 8202 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Moon Bulanda,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moon Bulanda +sn: Bulanda +description: This is Moon Bulanda's description +facsimileTelephoneNumber: +1 804 218-8793 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 161-1925 +title: Supreme Product Development Sales Rep +userPassword: Password1 +uid: BulandaM +givenName: Moon +mail: BulandaM@1765994e2a5c4efcb4f3aabfae2cc880.bitwarden.com +carLicense: 5DT89P +departmentNumber: 7639 +employeeType: Normal +homePhone: +1 804 958-7049 +initials: M. B. +mobile: +1 804 511-8541 +pager: +1 804 328-3960 +roomNumber: 9573 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranea Brandsen +sn: Brandsen +description: This is Ranea Brandsen's description +facsimileTelephoneNumber: +1 213 277-4408 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 846-6043 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: BrandseR +givenName: Ranea +mail: BrandseR@003e771d29284236b967f25e9416ed07.bitwarden.com +carLicense: 019FKC +departmentNumber: 5730 +employeeType: Contract +homePhone: +1 213 115-7609 +initials: R. B. +mobile: +1 213 207-6065 +pager: +1 213 297-8690 +roomNumber: 9754 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Weiping Zeller,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weiping Zeller +sn: Zeller +description: This is Weiping Zeller's description +facsimileTelephoneNumber: +1 206 145-9658 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 707-5860 +title: Junior Payroll Stooge +userPassword: Password1 +uid: ZellerW +givenName: Weiping +mail: ZellerW@bc7abecae5134db19820cef4bc298003.bitwarden.com +carLicense: PEFHRG +departmentNumber: 8158 +employeeType: Normal +homePhone: +1 206 671-6678 +initials: W. Z. +mobile: +1 206 289-8834 +pager: +1 206 913-7294 +roomNumber: 8087 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lora Luetchford,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lora Luetchford +sn: Luetchford +description: This is Lora Luetchford's description +facsimileTelephoneNumber: +1 804 994-4891 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 909-4467 +title: Associate Management Writer +userPassword: Password1 +uid: LuetchfL +givenName: Lora +mail: LuetchfL@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com +carLicense: 6XS702 +departmentNumber: 6855 +employeeType: Normal +homePhone: +1 804 981-4392 +initials: L. L. +mobile: +1 804 405-1556 +pager: +1 804 889-3012 +roomNumber: 8353 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrle BenyaminSeeyar +sn: BenyaminSeeyar +description: This is Myrle BenyaminSeeyar's description +facsimileTelephoneNumber: +1 510 731-2980 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 875-7895 +title: Associate Product Development Artist +userPassword: Password1 +uid: BenyamiM +givenName: Myrle +mail: BenyamiM@5ed95073f0094f04af17c1ff4f2772c3.bitwarden.com +carLicense: PAG55W +departmentNumber: 2374 +employeeType: Employee +homePhone: +1 510 148-1949 +initials: M. B. +mobile: +1 510 308-7784 +pager: +1 510 814-7715 +roomNumber: 9044 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mareah Horning,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mareah Horning +sn: Horning +description: This is Mareah Horning's description +facsimileTelephoneNumber: +1 213 451-7140 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 213 838-5737 +title: Supreme Product Testing Engineer +userPassword: Password1 +uid: HorningM +givenName: Mareah +mail: HorningM@890d1310fd334cdc8c698f8a47f59b9b.bitwarden.com +carLicense: THXBCE +departmentNumber: 9949 +employeeType: Contract +homePhone: +1 213 379-3000 +initials: M. H. +mobile: +1 213 730-5009 +pager: +1 213 290-9874 +roomNumber: 9383 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kapsch Graver,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kapsch Graver +sn: Graver +description: This is Kapsch Graver's description +facsimileTelephoneNumber: +1 213 224-2182 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 788-2414 +title: Associate Administrative Fellow +userPassword: Password1 +uid: GraverK +givenName: Kapsch +mail: GraverK@acf713e9aadb4752bc5f37c908d5ddf7.bitwarden.com +carLicense: CWH75C +departmentNumber: 4817 +employeeType: Contract +homePhone: +1 213 331-5897 +initials: K. G. +mobile: +1 213 789-5788 +pager: +1 213 225-8258 +roomNumber: 8607 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=HoiKin Denley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HoiKin Denley +sn: Denley +description: This is HoiKin Denley's description +facsimileTelephoneNumber: +1 408 882-6349 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 205-2558 +title: Master Management Czar +userPassword: Password1 +uid: DenleyH +givenName: HoiKin +mail: DenleyH@8f4e601fed874b8fa44bcb8ac4c7bc3d.bitwarden.com +carLicense: 2HXTT9 +departmentNumber: 7098 +employeeType: Employee +homePhone: +1 408 633-4418 +initials: H. D. +mobile: +1 408 146-4407 +pager: +1 408 644-6039 +roomNumber: 9929 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Huong Quinlan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huong Quinlan +sn: Quinlan +description: This is Huong Quinlan's description +facsimileTelephoneNumber: +1 415 961-7235 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 156-7933 +title: Supreme Management Director +userPassword: Password1 +uid: QuinlanH +givenName: Huong +mail: QuinlanH@dcbbbc8020794d6691fdae775364846a.bitwarden.com +carLicense: 78NPUP +departmentNumber: 1594 +employeeType: Normal +homePhone: +1 415 843-3459 +initials: H. Q. +mobile: +1 415 747-4723 +pager: +1 415 319-6809 +roomNumber: 9326 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vahe Ruffolo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vahe Ruffolo +sn: Ruffolo +description: This is Vahe Ruffolo's description +facsimileTelephoneNumber: +1 213 638-2719 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 972-6296 +title: Supreme Peons Director +userPassword: Password1 +uid: RuffoloV +givenName: Vahe +mail: RuffoloV@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com +carLicense: CP8IW3 +departmentNumber: 3613 +employeeType: Contract +homePhone: +1 213 248-4242 +initials: V. R. +mobile: +1 213 891-8826 +pager: +1 213 385-4242 +roomNumber: 9339 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Darina Duguay,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darina Duguay +sn: Duguay +description: This is Darina Duguay's description +facsimileTelephoneNumber: +1 818 536-1739 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 491-8092 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: DuguayD +givenName: Darina +mail: DuguayD@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com +carLicense: Q5RIG1 +departmentNumber: 5110 +employeeType: Contract +homePhone: +1 818 311-1195 +initials: D. D. +mobile: +1 818 869-2905 +pager: +1 818 339-8488 +roomNumber: 8248 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shayna Hollander,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shayna Hollander +sn: Hollander +description: This is Shayna Hollander's description +facsimileTelephoneNumber: +1 408 354-5366 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 617-6473 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: HollandS +givenName: Shayna +mail: HollandS@144f4bf7b2a54773b3cf6bc1af396542.bitwarden.com +carLicense: SCN4M9 +departmentNumber: 1544 +employeeType: Normal +homePhone: +1 408 253-2173 +initials: S. H. +mobile: +1 408 936-4744 +pager: +1 408 307-9139 +roomNumber: 8942 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=SikYin Gosset,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SikYin Gosset +sn: Gosset +description: This is SikYin Gosset's description +facsimileTelephoneNumber: +1 804 141-8720 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 662-3260 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: GossetS +givenName: SikYin +mail: GossetS@2cc035c985c24adeb49999458b6eeb66.bitwarden.com +carLicense: 20P48O +departmentNumber: 7034 +employeeType: Normal +homePhone: +1 804 609-5590 +initials: S. G. +mobile: +1 804 173-8201 +pager: +1 804 179-1428 +roomNumber: 8604 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sapphire Dassie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sapphire Dassie +sn: Dassie +description: This is Sapphire Dassie's description +facsimileTelephoneNumber: +1 415 669-3032 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 814-7723 +title: Chief Payroll Dictator +userPassword: Password1 +uid: DassieS +givenName: Sapphire +mail: DassieS@bc4791aff5914d0e95bbd2106b1c2de5.bitwarden.com +carLicense: 2G9CVV +departmentNumber: 9368 +employeeType: Normal +homePhone: +1 415 986-4678 +initials: S. D. +mobile: +1 415 875-2541 +pager: +1 415 378-3066 +roomNumber: 8910 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Baha Brouillette,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baha Brouillette +sn: Brouillette +description: This is Baha Brouillette's description +facsimileTelephoneNumber: +1 206 156-9313 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 246-9761 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: BrouillB +givenName: Baha +mail: BrouillB@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com +carLicense: RSN31W +departmentNumber: 7371 +employeeType: Employee +homePhone: +1 206 470-8931 +initials: B. B. +mobile: +1 206 631-4419 +pager: +1 206 685-4095 +roomNumber: 9954 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Isabella Horning,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isabella Horning +sn: Horning +description: This is Isabella Horning's description +facsimileTelephoneNumber: +1 415 244-6378 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 163-3666 +title: Supreme Management Vice President +userPassword: Password1 +uid: HorningI +givenName: Isabella +mail: HorningI@aae225b6543e4edebfd4e8a70cd66e37.bitwarden.com +carLicense: TB9XRB +departmentNumber: 4950 +employeeType: Contract +homePhone: +1 415 458-3075 +initials: I. H. +mobile: +1 415 940-9687 +pager: +1 415 615-3371 +roomNumber: 9621 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Avtar Nyce,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avtar Nyce +sn: Nyce +description: This is Avtar Nyce's description +facsimileTelephoneNumber: +1 408 903-5212 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 418-8756 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: NyceA +givenName: Avtar +mail: NyceA@8f698818b35041d38a84f1c71ca57e14.bitwarden.com +carLicense: 10GBMY +departmentNumber: 3560 +employeeType: Normal +homePhone: +1 408 110-7662 +initials: A. N. +mobile: +1 408 432-2228 +pager: +1 408 233-3849 +roomNumber: 9058 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Horacio McGuire,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Horacio McGuire +sn: McGuire +description: This is Horacio McGuire's description +facsimileTelephoneNumber: +1 408 576-2756 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 536-9292 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: McGuireH +givenName: Horacio +mail: McGuireH@cbf5d5b18dbd41e6bb03156240fa65b9.bitwarden.com +carLicense: 63A244 +departmentNumber: 9927 +employeeType: Normal +homePhone: +1 408 364-9855 +initials: H. M. +mobile: +1 408 510-7572 +pager: +1 408 785-3345 +roomNumber: 8812 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Huyen Guatto,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huyen Guatto +sn: Guatto +description: This is Huyen Guatto's description +facsimileTelephoneNumber: +1 213 607-8346 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 567-4712 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: GuattoH +givenName: Huyen +mail: GuattoH@43965c00f0db4ca198510569e172ade1.bitwarden.com +carLicense: FELEB0 +departmentNumber: 7176 +employeeType: Contract +homePhone: +1 213 590-9408 +initials: H. G. +mobile: +1 213 972-3454 +pager: +1 213 113-3061 +roomNumber: 9167 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacqueline Wyndham +sn: Wyndham +description: This is Jacqueline Wyndham's description +facsimileTelephoneNumber: +1 213 958-4229 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 698-3790 +title: Associate Product Testing Manager +userPassword: Password1 +uid: WyndhamJ +givenName: Jacqueline +mail: WyndhamJ@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com +carLicense: YXNYRY +departmentNumber: 3632 +employeeType: Contract +homePhone: +1 213 592-9571 +initials: J. W. +mobile: +1 213 395-8464 +pager: +1 213 603-3120 +roomNumber: 9593 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rustu Thill,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rustu Thill +sn: Thill +description: This is Rustu Thill's description +facsimileTelephoneNumber: +1 206 984-5882 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 622-7136 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: ThillR +givenName: Rustu +mail: ThillR@961bbb60e3cd4dc49f27245b4c499ab8.bitwarden.com +carLicense: YI4KPU +departmentNumber: 6841 +employeeType: Employee +homePhone: +1 206 546-5711 +initials: R. T. +mobile: +1 206 832-2830 +pager: +1 206 163-2909 +roomNumber: 9788 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fayre Childers,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fayre Childers +sn: Childers +description: This is Fayre Childers's description +facsimileTelephoneNumber: +1 415 945-9720 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 596-7564 +title: Associate Administrative Engineer +userPassword: Password1 +uid: ChilderF +givenName: Fayre +mail: ChilderF@5e4d473173474c608ac03e0447167cc7.bitwarden.com +carLicense: 8ELYA8 +departmentNumber: 1747 +employeeType: Contract +homePhone: +1 415 500-3240 +initials: F. C. +mobile: +1 415 147-1737 +pager: +1 415 136-2597 +roomNumber: 8476 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kambhampati Nunez +sn: Nunez +description: This is Kambhampati Nunez's description +facsimileTelephoneNumber: +1 206 159-2624 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 690-2920 +title: Associate Payroll Manager +userPassword: Password1 +uid: NunezK +givenName: Kambhampati +mail: NunezK@c708b12087394a00aad69467e8d0da12.bitwarden.com +carLicense: F8KN2W +departmentNumber: 7584 +employeeType: Normal +homePhone: +1 206 447-7097 +initials: K. N. +mobile: +1 206 100-2419 +pager: +1 206 266-7394 +roomNumber: 9746 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sabrina Lenir,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabrina Lenir +sn: Lenir +description: This is Sabrina Lenir's description +facsimileTelephoneNumber: +1 415 701-5838 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 225-4356 +title: Master Administrative Stooge +userPassword: Password1 +uid: LenirS +givenName: Sabrina +mail: LenirS@1ce821f8b66c496fa362507452a26491.bitwarden.com +carLicense: IINUL9 +departmentNumber: 8608 +employeeType: Contract +homePhone: +1 415 808-7883 +initials: S. L. +mobile: +1 415 209-4665 +pager: +1 415 211-2066 +roomNumber: 8400 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gale Goggin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gale Goggin +sn: Goggin +description: This is Gale Goggin's description +facsimileTelephoneNumber: +1 408 127-9763 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 635-2218 +title: Associate Management Pinhead +userPassword: Password1 +uid: GogginG +givenName: Gale +mail: GogginG@b1def85879ca4d1390e9e6b1d5b583ee.bitwarden.com +carLicense: B8M5X0 +departmentNumber: 1937 +employeeType: Employee +homePhone: +1 408 260-1135 +initials: G. G. +mobile: +1 408 445-5772 +pager: +1 408 969-6320 +roomNumber: 8711 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Louis Volker,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Louis Volker +sn: Volker +description: This is Louis Volker's description +facsimileTelephoneNumber: +1 206 813-9113 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 206 799-6736 +title: Supreme Payroll Admin +userPassword: Password1 +uid: VolkerL +givenName: Louis +mail: VolkerL@0a49f322d17b42a58985fe2e05d0dafb.bitwarden.com +carLicense: RI6SLW +departmentNumber: 5491 +employeeType: Employee +homePhone: +1 206 911-1281 +initials: L. V. +mobile: +1 206 247-9002 +pager: +1 206 326-9329 +roomNumber: 8052 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Myrah Roussier,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrah Roussier +sn: Roussier +description: This is Myrah Roussier's description +facsimileTelephoneNumber: +1 804 708-3933 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 578-1573 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: RoussieM +givenName: Myrah +mail: RoussieM@7df05765abd04b25b8a7ef7280ad3437.bitwarden.com +carLicense: AY53I2 +departmentNumber: 2555 +employeeType: Contract +homePhone: +1 804 947-9591 +initials: M. R. +mobile: +1 804 501-5082 +pager: +1 804 611-8446 +roomNumber: 9653 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=LLoyd McKeegan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LLoyd McKeegan +sn: McKeegan +description: This is LLoyd McKeegan's description +facsimileTelephoneNumber: +1 213 337-1568 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 564-5753 +title: Master Peons Grunt +userPassword: Password1 +uid: McKeegaL +givenName: LLoyd +mail: McKeegaL@bc2aa1694dbf4e7aa2d27b8cb8f061a2.bitwarden.com +carLicense: DTJF8R +departmentNumber: 7788 +employeeType: Normal +homePhone: +1 213 819-7329 +initials: L. M. +mobile: +1 213 465-6824 +pager: +1 213 156-8938 +roomNumber: 8290 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Metrics Mitrani +sn: Mitrani +description: This is Metrics Mitrani's description +facsimileTelephoneNumber: +1 415 784-6007 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 415 722-5562 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: MitraniM +givenName: Metrics +mail: MitraniM@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com +carLicense: MNY7K0 +departmentNumber: 9778 +employeeType: Contract +homePhone: +1 415 569-9210 +initials: M. M. +mobile: +1 415 780-6984 +pager: +1 415 990-1671 +roomNumber: 9830 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Annadiane Ctas,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annadiane Ctas +sn: Ctas +description: This is Annadiane Ctas's description +facsimileTelephoneNumber: +1 510 486-2637 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 950-3369 +title: Associate Administrative Assistant +userPassword: Password1 +uid: CtasA +givenName: Annadiane +mail: CtasA@ca6b003973ef4e36908da7bb8259e3c2.bitwarden.com +carLicense: PRBHK7 +departmentNumber: 7846 +employeeType: Contract +homePhone: +1 510 678-1837 +initials: A. C. +mobile: +1 510 368-7238 +pager: +1 510 670-7161 +roomNumber: 8493 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Leyton Rolls,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leyton Rolls +sn: Rolls +description: This is Leyton Rolls's description +facsimileTelephoneNumber: +1 415 307-9255 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 243-4682 +title: Supreme Human Resources Czar +userPassword: Password1 +uid: RollsL +givenName: Leyton +mail: RollsL@dffefc880028465f8135d61fcd84d153.bitwarden.com +carLicense: IRN5LS +departmentNumber: 5714 +employeeType: Normal +homePhone: +1 415 277-8731 +initials: L. R. +mobile: +1 415 267-3960 +pager: +1 415 607-9167 +roomNumber: 9686 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gaal Ragan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaal Ragan +sn: Ragan +description: This is Gaal Ragan's description +facsimileTelephoneNumber: +1 213 204-7281 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 198-1838 +title: Junior Janitorial Mascot +userPassword: Password1 +uid: RaganG +givenName: Gaal +mail: RaganG@afde3113416043d98395556c73711549.bitwarden.com +carLicense: KLB9PB +departmentNumber: 3950 +employeeType: Normal +homePhone: +1 213 260-3389 +initials: G. R. +mobile: +1 213 258-7751 +pager: +1 213 470-1133 +roomNumber: 8806 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hermine Stults,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermine Stults +sn: Stults +description: This is Hermine Stults's description +facsimileTelephoneNumber: +1 408 683-3720 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 845-1766 +title: Chief Janitorial Stooge +userPassword: Password1 +uid: StultsH +givenName: Hermine +mail: StultsH@30572bdd074a4e5a8e950b88bc610381.bitwarden.com +carLicense: 8PKSL2 +departmentNumber: 9568 +employeeType: Normal +homePhone: +1 408 871-7298 +initials: H. S. +mobile: +1 408 517-1328 +pager: +1 408 871-3451 +roomNumber: 9602 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Klarika MacLean,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klarika MacLean +sn: MacLean +description: This is Klarika MacLean's description +facsimileTelephoneNumber: +1 804 332-9034 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 860-6510 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: MacLeanK +givenName: Klarika +mail: MacLeanK@1dd141ee94514c5aa52c318bb9c43eb0.bitwarden.com +carLicense: GTVDMF +departmentNumber: 5667 +employeeType: Employee +homePhone: +1 804 753-1135 +initials: K. M. +mobile: +1 804 216-8451 +pager: +1 804 479-2562 +roomNumber: 8491 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Reginald Smit,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reginald Smit +sn: Smit +description: This is Reginald Smit's description +facsimileTelephoneNumber: +1 804 278-7156 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 929-6991 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: SmitR +givenName: Reginald +mail: SmitR@e17de5e4d835410b9b0709774bb28bb0.bitwarden.com +carLicense: FVITGR +departmentNumber: 3827 +employeeType: Contract +homePhone: +1 804 226-9481 +initials: R. S. +mobile: +1 804 251-7951 +pager: +1 804 661-8268 +roomNumber: 8689 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cassi McMahon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassi McMahon +sn: McMahon +description: This is Cassi McMahon's description +facsimileTelephoneNumber: +1 415 823-8541 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 100-8321 +title: Master Product Development Developer +userPassword: Password1 +uid: McMahonC +givenName: Cassi +mail: McMahonC@d849f4848257434e882a48856ef2b70f.bitwarden.com +carLicense: NDFPAJ +departmentNumber: 9976 +employeeType: Employee +homePhone: +1 415 272-2142 +initials: C. M. +mobile: +1 415 805-9339 +pager: +1 415 932-6206 +roomNumber: 8963 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Myranda Javed,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myranda Javed +sn: Javed +description: This is Myranda Javed's description +facsimileTelephoneNumber: +1 415 392-3351 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 253-5031 +title: Associate Management Manager +userPassword: Password1 +uid: JavedM +givenName: Myranda +mail: JavedM@b1c5384b9a3b4f19b03e31db659c5d3c.bitwarden.com +carLicense: 3VUS66 +departmentNumber: 8027 +employeeType: Employee +homePhone: +1 415 802-3807 +initials: M. J. +mobile: +1 415 934-9261 +pager: +1 415 554-7442 +roomNumber: 9427 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cherye Bukta,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherye Bukta +sn: Bukta +description: This is Cherye Bukta's description +facsimileTelephoneNumber: +1 804 828-4891 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 558-7885 +title: Junior Product Development Madonna +userPassword: Password1 +uid: BuktaC +givenName: Cherye +mail: BuktaC@becb244da0554983b71d06f587be1dbc.bitwarden.com +carLicense: WVSDHO +departmentNumber: 6865 +employeeType: Normal +homePhone: +1 804 934-6874 +initials: C. B. +mobile: +1 804 664-1635 +pager: +1 804 549-7828 +roomNumber: 9420 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carlynne Roob,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlynne Roob +sn: Roob +description: This is Carlynne Roob's description +facsimileTelephoneNumber: +1 818 823-8367 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 885-6730 +title: Chief Administrative Engineer +userPassword: Password1 +uid: RoobC +givenName: Carlynne +mail: RoobC@e13deb12f887416c8e5609d11ba2b292.bitwarden.com +carLicense: GABE13 +departmentNumber: 5377 +employeeType: Contract +homePhone: +1 818 643-4607 +initials: C. R. +mobile: +1 818 499-8981 +pager: +1 818 274-6337 +roomNumber: 8812 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wai Winters,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wai Winters +sn: Winters +description: This is Wai Winters's description +facsimileTelephoneNumber: +1 415 897-8921 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 579-1389 +title: Junior Product Testing Writer +userPassword: Password1 +uid: WintersW +givenName: Wai +mail: WintersW@b591b4d3b7bb4cf6a835d6d13daa1857.bitwarden.com +carLicense: JT2LQ6 +departmentNumber: 5195 +employeeType: Employee +homePhone: +1 415 413-2207 +initials: W. W. +mobile: +1 415 206-1013 +pager: +1 415 214-2459 +roomNumber: 9454 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lester Koster,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lester Koster +sn: Koster +description: This is Lester Koster's description +facsimileTelephoneNumber: +1 510 554-3260 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 716-3499 +title: Master Janitorial Architect +userPassword: Password1 +uid: KosterL +givenName: Lester +mail: KosterL@0aee22428274445fb9c2a16b33d788f7.bitwarden.com +carLicense: PNP9IM +departmentNumber: 5396 +employeeType: Employee +homePhone: +1 510 883-4233 +initials: L. K. +mobile: +1 510 680-5337 +pager: +1 510 344-6278 +roomNumber: 8349 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belen Frangoulis +sn: Frangoulis +description: This is Belen Frangoulis's description +facsimileTelephoneNumber: +1 213 847-5866 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 278-6603 +title: Master Human Resources Czar +userPassword: Password1 +uid: FrangouB +givenName: Belen +mail: FrangouB@6972a8e94cbc49738fdac450297132bb.bitwarden.com +carLicense: 4WNUVJ +departmentNumber: 8168 +employeeType: Normal +homePhone: +1 213 419-3144 +initials: B. F. +mobile: +1 213 783-8329 +pager: +1 213 127-7672 +roomNumber: 9133 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alev Llaguno,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alev Llaguno +sn: Llaguno +description: This is Alev Llaguno's description +facsimileTelephoneNumber: +1 408 358-5319 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 190-5481 +title: Supreme Administrative Stooge +userPassword: Password1 +uid: LlagunoA +givenName: Alev +mail: LlagunoA@04bb376282154efc832b529dc3f80793.bitwarden.com +carLicense: YS14ML +departmentNumber: 1432 +employeeType: Contract +homePhone: +1 408 896-7735 +initials: A. L. +mobile: +1 408 748-9200 +pager: +1 408 422-8140 +roomNumber: 8400 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jud Fairman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jud Fairman +sn: Fairman +description: This is Jud Fairman's description +facsimileTelephoneNumber: +1 206 789-9551 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 113-4267 +title: Junior Administrative President +userPassword: Password1 +uid: FairmanJ +givenName: Jud +mail: FairmanJ@f7248b71ac0e455091682e51df845f5b.bitwarden.com +carLicense: CCNI7X +departmentNumber: 7595 +employeeType: Contract +homePhone: +1 206 834-5856 +initials: J. F. +mobile: +1 206 432-3108 +pager: +1 206 630-8259 +roomNumber: 8554 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Toyanne Fishencord,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toyanne Fishencord +sn: Fishencord +description: This is Toyanne Fishencord's description +facsimileTelephoneNumber: +1 415 272-1217 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 567-8524 +title: Chief Management President +userPassword: Password1 +uid: FishencT +givenName: Toyanne +mail: FishencT@3e451f2ddbdc401ba9f442a5e6dfbe64.bitwarden.com +carLicense: HBWVAX +departmentNumber: 2352 +employeeType: Contract +homePhone: +1 415 624-2349 +initials: T. F. +mobile: +1 415 965-4939 +pager: +1 415 799-4195 +roomNumber: 8965 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Clarinda Vele,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarinda Vele +sn: Vele +description: This is Clarinda Vele's description +facsimileTelephoneNumber: +1 510 727-6266 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 911-3674 +title: Master Human Resources Evangelist +userPassword: Password1 +uid: VeleC +givenName: Clarinda +mail: VeleC@41360e293f904ea28fdec059900338d4.bitwarden.com +carLicense: 6L8LAQ +departmentNumber: 6900 +employeeType: Employee +homePhone: +1 510 941-1003 +initials: C. V. +mobile: +1 510 825-1773 +pager: +1 510 855-9414 +roomNumber: 9667 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Blondie Moghis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blondie Moghis +sn: Moghis +description: This is Blondie Moghis's description +facsimileTelephoneNumber: +1 804 614-1253 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 527-2599 +title: Junior Janitorial Admin +userPassword: Password1 +uid: MoghisB +givenName: Blondie +mail: MoghisB@b3c93053c0224253988d5c3b976abcae.bitwarden.com +carLicense: H8WAKM +departmentNumber: 3927 +employeeType: Employee +homePhone: +1 804 715-5223 +initials: B. M. +mobile: +1 804 714-8494 +pager: +1 804 146-6333 +roomNumber: 8333 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwenny Bradd +sn: Bradd +description: This is Gwenny Bradd's description +facsimileTelephoneNumber: +1 415 495-5918 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 104-5292 +title: Associate Product Testing Admin +userPassword: Password1 +uid: BraddG +givenName: Gwenny +mail: BraddG@4fcafc5d237d4e89ae70144b97fd81b9.bitwarden.com +carLicense: JCF642 +departmentNumber: 4681 +employeeType: Contract +homePhone: +1 415 143-8358 +initials: G. B. +mobile: +1 415 575-6452 +pager: +1 415 912-8497 +roomNumber: 9459 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazuhiko Desorbay +sn: Desorbay +description: This is Kazuhiko Desorbay's description +facsimileTelephoneNumber: +1 510 669-1248 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 955-1108 +title: Supreme Administrative Consultant +userPassword: Password1 +uid: DesorbaK +givenName: Kazuhiko +mail: DesorbaK@b0b96975e46b40a097a0034294bf5528.bitwarden.com +carLicense: 2F1F9E +departmentNumber: 5344 +employeeType: Contract +homePhone: +1 510 390-5374 +initials: K. D. +mobile: +1 510 248-6069 +pager: +1 510 396-5888 +roomNumber: 8541 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Noraly Mackzum,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noraly Mackzum +sn: Mackzum +description: This is Noraly Mackzum's description +facsimileTelephoneNumber: +1 804 225-3837 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 416-6768 +title: Master Peons Assistant +userPassword: Password1 +uid: MackzumN +givenName: Noraly +mail: MackzumN@9528dc6cbe3247b1b273b1646f94d087.bitwarden.com +carLicense: Q9J3RG +departmentNumber: 8409 +employeeType: Normal +homePhone: +1 804 460-9122 +initials: N. M. +mobile: +1 804 469-9296 +pager: +1 804 699-4552 +roomNumber: 9151 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Len Grzegorek,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Len Grzegorek +sn: Grzegorek +description: This is Len Grzegorek's description +facsimileTelephoneNumber: +1 206 840-9137 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 584-4640 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: GrzegorL +givenName: Len +mail: GrzegorL@6816926065fd449b998aed904ad7f381.bitwarden.com +carLicense: 7SNRAH +departmentNumber: 4018 +employeeType: Normal +homePhone: +1 206 634-7108 +initials: L. G. +mobile: +1 206 704-4298 +pager: +1 206 326-8809 +roomNumber: 8664 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ria NetworkOps,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ria NetworkOps +sn: NetworkOps +description: This is Ria NetworkOps's description +facsimileTelephoneNumber: +1 206 778-5250 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 206 140-9414 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: NetworkR +givenName: Ria +mail: NetworkR@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com +carLicense: AHF27G +departmentNumber: 7798 +employeeType: Employee +homePhone: +1 206 471-6982 +initials: R. N. +mobile: +1 206 823-4933 +pager: +1 206 551-4335 +roomNumber: 9683 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sunny Forslund,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sunny Forslund +sn: Forslund +description: This is Sunny Forslund's description +facsimileTelephoneNumber: +1 415 908-4072 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 355-5814 +title: Supreme Management Madonna +userPassword: Password1 +uid: ForslunS +givenName: Sunny +mail: ForslunS@917b843118c147a1b774df99881edab2.bitwarden.com +carLicense: 3WUP09 +departmentNumber: 4721 +employeeType: Normal +homePhone: +1 415 810-6725 +initials: S. F. +mobile: +1 415 231-1576 +pager: +1 415 483-6890 +roomNumber: 9300 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fanchette Veals,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fanchette Veals +sn: Veals +description: This is Fanchette Veals's description +facsimileTelephoneNumber: +1 213 447-8588 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 741-8375 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: VealsF +givenName: Fanchette +mail: VealsF@99883d06333b411b8735be1bd03ccb98.bitwarden.com +carLicense: G5AFTQ +departmentNumber: 4214 +employeeType: Employee +homePhone: +1 213 995-9668 +initials: F. V. +mobile: +1 213 402-3150 +pager: +1 213 198-7051 +roomNumber: 8713 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bobbee Combee,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobbee Combee +sn: Combee +description: This is Bobbee Combee's description +facsimileTelephoneNumber: +1 818 530-4778 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 823-2969 +title: Master Human Resources Mascot +userPassword: Password1 +uid: CombeeB +givenName: Bobbee +mail: CombeeB@53b43fb5d4e34daa86eaa9d6dd2bd917.bitwarden.com +carLicense: JOTQIA +departmentNumber: 1459 +employeeType: Employee +homePhone: +1 818 291-9410 +initials: B. C. +mobile: +1 818 686-1823 +pager: +1 818 394-4861 +roomNumber: 9479 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bennett Attanasio,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bennett Attanasio +sn: Attanasio +description: This is Bennett Attanasio's description +facsimileTelephoneNumber: +1 510 334-3631 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 333-9969 +title: Associate Management Czar +userPassword: Password1 +uid: AttanasB +givenName: Bennett +mail: AttanasB@50a799bc8ca7431293d7f35051a4405f.bitwarden.com +carLicense: 0QDJJS +departmentNumber: 5686 +employeeType: Contract +homePhone: +1 510 616-6285 +initials: B. A. +mobile: +1 510 495-9245 +pager: +1 510 841-1036 +roomNumber: 8198 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zongyi Stults,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zongyi Stults +sn: Stults +description: This is Zongyi Stults's description +facsimileTelephoneNumber: +1 408 218-2950 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 150-5716 +title: Master Payroll Figurehead +userPassword: Password1 +uid: StultsZ +givenName: Zongyi +mail: StultsZ@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com +carLicense: 9H6POE +departmentNumber: 1887 +employeeType: Normal +homePhone: +1 408 217-1267 +initials: Z. S. +mobile: +1 408 432-7902 +pager: +1 408 685-9580 +roomNumber: 9584 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winifred Lowrie +sn: Lowrie +description: This is Winifred Lowrie's description +facsimileTelephoneNumber: +1 206 626-1572 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 492-7550 +title: Chief Product Testing Developer +userPassword: Password1 +uid: LowrieW +givenName: Winifred +mail: LowrieW@39082c800eef41148693892808865789.bitwarden.com +carLicense: G07WGB +departmentNumber: 8168 +employeeType: Normal +homePhone: +1 206 647-4866 +initials: W. L. +mobile: +1 206 525-7767 +pager: +1 206 700-7138 +roomNumber: 8831 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rob Goupil,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rob Goupil +sn: Goupil +description: This is Rob Goupil's description +facsimileTelephoneNumber: +1 818 971-6005 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 255-4836 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: GoupilR +givenName: Rob +mail: GoupilR@ae52dcada2674f68a76a2c619d85f261.bitwarden.com +carLicense: V5IUR9 +departmentNumber: 7862 +employeeType: Normal +homePhone: +1 818 912-9596 +initials: R. G. +mobile: +1 818 124-6751 +pager: +1 818 493-3182 +roomNumber: 9115 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gwyneth Neander,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwyneth Neander +sn: Neander +description: This is Gwyneth Neander's description +facsimileTelephoneNumber: +1 408 456-7229 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 505-6164 +title: Supreme Peons Assistant +userPassword: Password1 +uid: NeanderG +givenName: Gwyneth +mail: NeanderG@bc6e166bef51424bb6b645cc04c90be7.bitwarden.com +carLicense: 5MVBCH +departmentNumber: 4452 +employeeType: Employee +homePhone: +1 408 854-2003 +initials: G. N. +mobile: +1 408 162-2685 +pager: +1 408 624-5797 +roomNumber: 8774 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lillien Grohovsky,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lillien Grohovsky +sn: Grohovsky +description: This is Lillien Grohovsky's description +facsimileTelephoneNumber: +1 206 536-4440 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 305-8138 +title: Master Management Engineer +userPassword: Password1 +uid: GrohovsL +givenName: Lillien +mail: GrohovsL@b9106f7d57f74a7b92af146111acb57d.bitwarden.com +carLicense: 6DL4O9 +departmentNumber: 5187 +employeeType: Contract +homePhone: +1 206 648-9539 +initials: L. G. +mobile: +1 206 724-4905 +pager: +1 206 547-5236 +roomNumber: 8105 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sianna Machika,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sianna Machika +sn: Machika +description: This is Sianna Machika's description +facsimileTelephoneNumber: +1 206 547-4952 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 661-6670 +title: Junior Administrative Architect +userPassword: Password1 +uid: MachikaS +givenName: Sianna +mail: MachikaS@157d1c5a87ae4332b42f31961dd71e5c.bitwarden.com +carLicense: AKI4J8 +departmentNumber: 8939 +employeeType: Contract +homePhone: +1 206 533-3762 +initials: S. M. +mobile: +1 206 254-8193 +pager: +1 206 934-8988 +roomNumber: 8404 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pippa Ponthieux +sn: Ponthieux +description: This is Pippa Ponthieux's description +facsimileTelephoneNumber: +1 206 516-2556 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 206 670-8080 +title: Chief Human Resources Fellow +userPassword: Password1 +uid: PonthieP +givenName: Pippa +mail: PonthieP@0834bcacddfd4229b6702a62e2551569.bitwarden.com +carLicense: N3AY2G +departmentNumber: 8289 +employeeType: Employee +homePhone: +1 206 623-4734 +initials: P. P. +mobile: +1 206 468-9672 +pager: +1 206 315-5728 +roomNumber: 9799 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Blakeley Lagace,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blakeley Lagace +sn: Lagace +description: This is Blakeley Lagace's description +facsimileTelephoneNumber: +1 408 204-9101 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 608-6105 +title: Junior Payroll Mascot +userPassword: Password1 +uid: LagaceB +givenName: Blakeley +mail: LagaceB@f47429db42894240a22768a277a6aedc.bitwarden.com +carLicense: 7CLPYW +departmentNumber: 1944 +employeeType: Employee +homePhone: +1 408 776-1398 +initials: B. L. +mobile: +1 408 341-6386 +pager: +1 408 948-1430 +roomNumber: 8025 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Thuong Rains,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thuong Rains +sn: Rains +description: This is Thuong Rains's description +facsimileTelephoneNumber: +1 213 385-6144 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 200-4223 +title: Junior Human Resources Stooge +userPassword: Password1 +uid: RainsT +givenName: Thuong +mail: RainsT@9db5b1e1eb1c40cba168aadfe8f96acc.bitwarden.com +carLicense: WRYMIU +departmentNumber: 4769 +employeeType: Employee +homePhone: +1 213 480-9654 +initials: T. R. +mobile: +1 213 991-8024 +pager: +1 213 606-7330 +roomNumber: 8898 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Peg Lahaie,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peg Lahaie +sn: Lahaie +description: This is Peg Lahaie's description +facsimileTelephoneNumber: +1 510 170-2670 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 426-8638 +title: Associate Administrative Engineer +userPassword: Password1 +uid: LahaieP +givenName: Peg +mail: LahaieP@7c92d6dfba144f9587593ce6eeb4024f.bitwarden.com +carLicense: 2WFDA0 +departmentNumber: 8022 +employeeType: Contract +homePhone: +1 510 514-2288 +initials: P. L. +mobile: +1 510 664-9010 +pager: +1 510 133-9193 +roomNumber: 8802 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Annissa Bears,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annissa Bears +sn: Bears +description: This is Annissa Bears's description +facsimileTelephoneNumber: +1 804 495-3740 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 804 355-1945 +title: Chief Human Resources Mascot +userPassword: Password1 +uid: BearsA +givenName: Annissa +mail: BearsA@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com +carLicense: 5CCWWS +departmentNumber: 6277 +employeeType: Employee +homePhone: +1 804 951-4908 +initials: A. B. +mobile: +1 804 581-1450 +pager: +1 804 334-9478 +roomNumber: 8053 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jaffer Grosjean,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaffer Grosjean +sn: Grosjean +description: This is Jaffer Grosjean's description +facsimileTelephoneNumber: +1 206 130-1330 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 206 222-2935 +title: Junior Management Fellow +userPassword: Password1 +uid: GrosjeaJ +givenName: Jaffer +mail: GrosjeaJ@18c6c57f689a4dd297aa9ab9f89b0d22.bitwarden.com +carLicense: DTPA5K +departmentNumber: 8502 +employeeType: Normal +homePhone: +1 206 520-3251 +initials: J. G. +mobile: +1 206 218-5193 +pager: +1 206 188-6266 +roomNumber: 9388 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sinh IOCNTRL +sn: IOCNTRL +description: This is Sinh IOCNTRL's description +facsimileTelephoneNumber: +1 818 729-6734 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 853-4869 +title: Supreme Product Testing President +userPassword: Password1 +uid: IOCNTRLS +givenName: Sinh +mail: IOCNTRLS@eccb9225926a47e49169337a56197f55.bitwarden.com +carLicense: ANGON6 +departmentNumber: 6066 +employeeType: Employee +homePhone: +1 818 692-4360 +initials: S. I. +mobile: +1 818 464-9028 +pager: +1 818 261-6730 +roomNumber: 8208 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Quoc Ennis,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quoc Ennis +sn: Ennis +description: This is Quoc Ennis's description +facsimileTelephoneNumber: +1 213 678-7071 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 937-4591 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: EnnisQ +givenName: Quoc +mail: EnnisQ@2c5fff2e17c34e4f8027c15937e2554a.bitwarden.com +carLicense: B6JJMI +departmentNumber: 4451 +employeeType: Contract +homePhone: +1 213 742-5458 +initials: Q. E. +mobile: +1 213 293-6891 +pager: +1 213 892-3544 +roomNumber: 8338 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pascale Sorensen +sn: Sorensen +description: This is Pascale Sorensen's description +facsimileTelephoneNumber: +1 213 262-7850 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 600-6430 +title: Junior Human Resources Janitor +userPassword: Password1 +uid: SorenseP +givenName: Pascale +mail: SorenseP@296a8499fb454ab5ab80945b9f63d6db.bitwarden.com +carLicense: 2NS96Q +departmentNumber: 2292 +employeeType: Normal +homePhone: +1 213 487-9379 +initials: P. S. +mobile: +1 213 893-8239 +pager: +1 213 362-3311 +roomNumber: 8989 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Katalin Alteen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katalin Alteen +sn: Alteen +description: This is Katalin Alteen's description +facsimileTelephoneNumber: +1 408 857-7640 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 835-1989 +title: Junior Product Development Architect +userPassword: Password1 +uid: AlteenK +givenName: Katalin +mail: AlteenK@d8f225bca4fb4424ae5dc46bef133d26.bitwarden.com +carLicense: 323JA0 +departmentNumber: 5087 +employeeType: Employee +homePhone: +1 408 199-4444 +initials: K. A. +mobile: +1 408 511-4009 +pager: +1 408 900-7003 +roomNumber: 8731 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Suzie Caruso,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzie Caruso +sn: Caruso +description: This is Suzie Caruso's description +facsimileTelephoneNumber: +1 510 709-4784 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 723-4971 +title: Associate Product Development Director +userPassword: Password1 +uid: CarusoS +givenName: Suzie +mail: CarusoS@a5a8edfdd5c4429e9cf280f8b1f9e995.bitwarden.com +carLicense: HKHU37 +departmentNumber: 2246 +employeeType: Employee +homePhone: +1 510 938-8854 +initials: S. C. +mobile: +1 510 264-5503 +pager: +1 510 964-7739 +roomNumber: 8374 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bianka Rodriguez +sn: Rodriguez +description: This is Bianka Rodriguez's description +facsimileTelephoneNumber: +1 415 772-7086 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 399-9538 +title: Associate Product Testing Czar +userPassword: Password1 +uid: RodriguB +givenName: Bianka +mail: RodriguB@c5d504d10cfd4d11856502fc976f73f5.bitwarden.com +carLicense: 4K72D1 +departmentNumber: 2938 +employeeType: Contract +homePhone: +1 415 571-2839 +initials: B. R. +mobile: +1 415 931-2085 +pager: +1 415 587-7892 +roomNumber: 9527 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hanh Marui,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanh Marui +sn: Marui +description: This is Hanh Marui's description +facsimileTelephoneNumber: +1 804 613-7539 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 709-9925 +title: Supreme Peons Vice President +userPassword: Password1 +uid: MaruiH +givenName: Hanh +mail: MaruiH@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com +carLicense: NS6IGK +departmentNumber: 3718 +employeeType: Contract +homePhone: +1 804 968-1021 +initials: H. M. +mobile: +1 804 362-3731 +pager: +1 804 964-3192 +roomNumber: 8222 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Margette Bolly,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margette Bolly +sn: Bolly +description: This is Margette Bolly's description +facsimileTelephoneNumber: +1 415 637-1602 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 914-5991 +title: Junior Human Resources Warrior +userPassword: Password1 +uid: BollyM +givenName: Margette +mail: BollyM@2d98655afc6c4413a4e20fb38a176913.bitwarden.com +carLicense: 5NQQM2 +departmentNumber: 6540 +employeeType: Normal +homePhone: +1 415 636-4834 +initials: M. B. +mobile: +1 415 540-4151 +pager: +1 415 650-9990 +roomNumber: 9990 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Arvin Mauldin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arvin Mauldin +sn: Mauldin +description: This is Arvin Mauldin's description +facsimileTelephoneNumber: +1 206 574-4397 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 398-2366 +title: Master Peons Warrior +userPassword: Password1 +uid: MauldinA +givenName: Arvin +mail: MauldinA@6530618955494a54b6812262e97ea962.bitwarden.com +carLicense: BF0N8F +departmentNumber: 1799 +employeeType: Employee +homePhone: +1 206 718-7441 +initials: A. M. +mobile: +1 206 944-4488 +pager: +1 206 988-5005 +roomNumber: 8114 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stephi Sloan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephi Sloan +sn: Sloan +description: This is Stephi Sloan's description +facsimileTelephoneNumber: +1 213 857-2985 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 426-6164 +title: Associate Management Figurehead +userPassword: Password1 +uid: SloanS +givenName: Stephi +mail: SloanS@d494db8e881541faa9bd79d54aee6c6c.bitwarden.com +carLicense: O1IFIU +departmentNumber: 6501 +employeeType: Contract +homePhone: +1 213 782-6437 +initials: S. S. +mobile: +1 213 332-2782 +pager: +1 213 164-5709 +roomNumber: 9414 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ariella Kindel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ariella Kindel +sn: Kindel +description: This is Ariella Kindel's description +facsimileTelephoneNumber: +1 408 806-9608 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 474-7911 +title: Supreme Management Czar +userPassword: Password1 +uid: KindelA +givenName: Ariella +mail: KindelA@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com +carLicense: 8WRNNR +departmentNumber: 5812 +employeeType: Contract +homePhone: +1 408 677-8598 +initials: A. K. +mobile: +1 408 365-6958 +pager: +1 408 408-1160 +roomNumber: 9118 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sluis Rasmus,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sluis Rasmus +sn: Rasmus +description: This is Sluis Rasmus's description +facsimileTelephoneNumber: +1 408 868-6565 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 576-3436 +title: Supreme Peons Evangelist +userPassword: Password1 +uid: RasmusS +givenName: Sluis +mail: RasmusS@53c3e76f124f49beb679b871a3ea5611.bitwarden.com +carLicense: MFGGPP +departmentNumber: 5015 +employeeType: Contract +homePhone: +1 408 143-4814 +initials: S. R. +mobile: +1 408 393-4119 +pager: +1 408 131-1770 +roomNumber: 8111 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kunitaka Tsalikis +sn: Tsalikis +description: This is Kunitaka Tsalikis's description +facsimileTelephoneNumber: +1 818 642-8964 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 818 723-6359 +title: Master Administrative Engineer +userPassword: Password1 +uid: TsalikiK +givenName: Kunitaka +mail: TsalikiK@0d7e83c0e7e042119673bb3ec0e8332f.bitwarden.com +carLicense: 3VP35B +departmentNumber: 3632 +employeeType: Employee +homePhone: +1 818 220-6329 +initials: K. T. +mobile: +1 818 723-9166 +pager: +1 818 226-5537 +roomNumber: 9770 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mendel Taghizadeh +sn: Taghizadeh +description: This is Mendel Taghizadeh's description +facsimileTelephoneNumber: +1 206 646-7338 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 929-7974 +title: Junior Administrative Punk +userPassword: Password1 +uid: TaghizaM +givenName: Mendel +mail: TaghizaM@5357a85de543401d9e8fe2cdbf0be041.bitwarden.com +carLicense: O9EQ1D +departmentNumber: 9003 +employeeType: Employee +homePhone: +1 206 263-4092 +initials: M. T. +mobile: +1 206 624-7439 +pager: +1 206 337-2898 +roomNumber: 8183 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Onida Kessing,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Onida Kessing +sn: Kessing +description: This is Onida Kessing's description +facsimileTelephoneNumber: +1 818 323-1868 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 484-1955 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: KessingO +givenName: Onida +mail: KessingO@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com +carLicense: V85L39 +departmentNumber: 5839 +employeeType: Employee +homePhone: +1 818 904-1424 +initials: O. K. +mobile: +1 818 526-3884 +pager: +1 818 623-1290 +roomNumber: 9491 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tasha Good,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tasha Good +sn: Good +description: This is Tasha Good's description +facsimileTelephoneNumber: +1 818 203-9930 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 818 796-5000 +title: Associate Payroll Pinhead +userPassword: Password1 +uid: GoodT +givenName: Tasha +mail: GoodT@7c2121c8588b42078879768992a11293.bitwarden.com +carLicense: 6MQOML +departmentNumber: 8247 +employeeType: Normal +homePhone: +1 818 729-5115 +initials: T. G. +mobile: +1 818 357-2862 +pager: +1 818 124-7836 +roomNumber: 9651 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Audrie Hadaway,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Audrie Hadaway +sn: Hadaway +description: This is Audrie Hadaway's description +facsimileTelephoneNumber: +1 804 221-4148 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 804 385-6760 +title: Supreme Payroll Czar +userPassword: Password1 +uid: HadawayA +givenName: Audrie +mail: HadawayA@ea0f69137ff74518bf5deef349f108a0.bitwarden.com +carLicense: MLO16A +departmentNumber: 7809 +employeeType: Employee +homePhone: +1 804 686-8454 +initials: A. H. +mobile: +1 804 785-6482 +pager: +1 804 118-5688 +roomNumber: 8474 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Natka Herzig,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natka Herzig +sn: Herzig +description: This is Natka Herzig's description +facsimileTelephoneNumber: +1 415 861-6967 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 166-9577 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: HerzigN +givenName: Natka +mail: HerzigN@597d9762b8604e37948eff99d3393453.bitwarden.com +carLicense: 1XPETF +departmentNumber: 6627 +employeeType: Normal +homePhone: +1 415 731-2496 +initials: N. H. +mobile: +1 415 798-4370 +pager: +1 415 502-1244 +roomNumber: 8449 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Naima Simzer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naima Simzer +sn: Simzer +description: This is Naima Simzer's description +facsimileTelephoneNumber: +1 415 531-9819 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 873-6283 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: SimzerN +givenName: Naima +mail: SimzerN@949d540dd7bd45ac952a8779090548fc.bitwarden.com +carLicense: VN3ND8 +departmentNumber: 3313 +employeeType: Employee +homePhone: +1 415 447-4485 +initials: N. S. +mobile: +1 415 985-9557 +pager: +1 415 781-6530 +roomNumber: 8999 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lotte Ichizen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lotte Ichizen +sn: Ichizen +description: This is Lotte Ichizen's description +facsimileTelephoneNumber: +1 408 457-5242 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 594-8744 +title: Supreme Product Development Technician +userPassword: Password1 +uid: IchizenL +givenName: Lotte +mail: IchizenL@9ded9a56079f4cc9aa539795eb2ef76e.bitwarden.com +carLicense: A4H7YM +departmentNumber: 4664 +employeeType: Normal +homePhone: +1 408 596-9244 +initials: L. I. +mobile: +1 408 675-4038 +pager: +1 408 584-2853 +roomNumber: 8778 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marco Seto,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marco Seto +sn: Seto +description: This is Marco Seto's description +facsimileTelephoneNumber: +1 408 648-5623 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 847-1802 +title: Associate Product Development Vice President +userPassword: Password1 +uid: SetoM +givenName: Marco +mail: SetoM@47a7a80ec8774325ad24930467e7f72e.bitwarden.com +carLicense: FRB370 +departmentNumber: 8883 +employeeType: Normal +homePhone: +1 408 869-7041 +initials: M. S. +mobile: +1 408 366-7746 +pager: +1 408 630-4233 +roomNumber: 8359 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mollee Ensing,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mollee Ensing +sn: Ensing +description: This is Mollee Ensing's description +facsimileTelephoneNumber: +1 206 671-5221 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 389-1239 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: EnsingM +givenName: Mollee +mail: EnsingM@927751b0a567415d9f3e597c148985e7.bitwarden.com +carLicense: PSQYO4 +departmentNumber: 4480 +employeeType: Normal +homePhone: +1 206 867-6651 +initials: M. E. +mobile: +1 206 572-9890 +pager: +1 206 968-8760 +roomNumber: 9771 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roe Schenk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roe Schenk +sn: Schenk +description: This is Roe Schenk's description +facsimileTelephoneNumber: +1 206 257-3104 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 206 249-9677 +title: Junior Payroll Punk +userPassword: Password1 +uid: SchenkR +givenName: Roe +mail: SchenkR@e0325d1b480a46fd813ea04ca5c966cc.bitwarden.com +carLicense: CIC0HK +departmentNumber: 8403 +employeeType: Normal +homePhone: +1 206 161-6718 +initials: R. S. +mobile: +1 206 298-6153 +pager: +1 206 828-5266 +roomNumber: 9248 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Christian Wales,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christian Wales +sn: Wales +description: This is Christian Wales's description +facsimileTelephoneNumber: +1 415 303-8654 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 256-7018 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: WalesC +givenName: Christian +mail: WalesC@d7bbd93ba2614bff8062ee68b5bbccb7.bitwarden.com +carLicense: 1ULOOK +departmentNumber: 1054 +employeeType: Employee +homePhone: +1 415 635-4555 +initials: C. W. +mobile: +1 415 710-7746 +pager: +1 415 425-6576 +roomNumber: 9146 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Loes Rioux,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loes Rioux +sn: Rioux +description: This is Loes Rioux's description +facsimileTelephoneNumber: +1 510 229-6827 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 153-9459 +title: Junior Product Development Fellow +userPassword: Password1 +uid: RiouxL +givenName: Loes +mail: RiouxL@fc6d9a3bc3ac4e95a6de75ff02dab16b.bitwarden.com +carLicense: YL3447 +departmentNumber: 9593 +employeeType: Employee +homePhone: +1 510 863-1840 +initials: L. R. +mobile: +1 510 108-8619 +pager: +1 510 114-8077 +roomNumber: 9184 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rubetta Lui,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rubetta Lui +sn: Lui +description: This is Rubetta Lui's description +facsimileTelephoneNumber: +1 206 353-1584 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 485-7158 +title: Master Payroll Consultant +userPassword: Password1 +uid: LuiR +givenName: Rubetta +mail: LuiR@522cf8a1d4424cc392ce0a8035040445.bitwarden.com +carLicense: 47S0F1 +departmentNumber: 2200 +employeeType: Normal +homePhone: +1 206 538-7324 +initials: R. L. +mobile: +1 206 307-6112 +pager: +1 206 338-3420 +roomNumber: 9654 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lonni Sabadash,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lonni Sabadash +sn: Sabadash +description: This is Lonni Sabadash's description +facsimileTelephoneNumber: +1 415 487-3971 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 831-2058 +title: Associate Peons Manager +userPassword: Password1 +uid: SabadasL +givenName: Lonni +mail: SabadasL@3c2a9299917e436494b9ad3aeb458417.bitwarden.com +carLicense: 4VKDVK +departmentNumber: 6832 +employeeType: Contract +homePhone: +1 415 695-7945 +initials: L. S. +mobile: +1 415 271-6914 +pager: +1 415 210-4943 +roomNumber: 9290 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Monica Duensing,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monica Duensing +sn: Duensing +description: This is Monica Duensing's description +facsimileTelephoneNumber: +1 206 871-6119 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 234-6493 +title: Master Peons Consultant +userPassword: Password1 +uid: DuensinM +givenName: Monica +mail: DuensinM@494f2548825245788f70b0629ca28b58.bitwarden.com +carLicense: RU2O2C +departmentNumber: 9765 +employeeType: Contract +homePhone: +1 206 480-1017 +initials: M. D. +mobile: +1 206 714-6739 +pager: +1 206 993-6461 +roomNumber: 9068 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Colm Gratton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colm Gratton +sn: Gratton +description: This is Colm Gratton's description +facsimileTelephoneNumber: +1 408 976-1069 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 408 648-9780 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: GrattonC +givenName: Colm +mail: GrattonC@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com +carLicense: WX9XQ4 +departmentNumber: 7273 +employeeType: Normal +homePhone: +1 408 793-3839 +initials: C. G. +mobile: +1 408 524-8622 +pager: +1 408 189-9786 +roomNumber: 9507 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tootsie McNeilly +sn: McNeilly +description: This is Tootsie McNeilly's description +facsimileTelephoneNumber: +1 206 192-3779 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 663-9227 +title: Associate Administrative Stooge +userPassword: Password1 +uid: McNeillT +givenName: Tootsie +mail: McNeillT@2a2785e41bed4e93a780b4af1e24c457.bitwarden.com +carLicense: 3MFOHE +departmentNumber: 2443 +employeeType: Employee +homePhone: +1 206 453-4487 +initials: T. M. +mobile: +1 206 923-7631 +pager: +1 206 801-7491 +roomNumber: 9849 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Denise Randall,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denise Randall +sn: Randall +description: This is Denise Randall's description +facsimileTelephoneNumber: +1 213 365-8367 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 202-3543 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: RandallD +givenName: Denise +mail: RandallD@fd1c064ea4f34f1bb83154589888d370.bitwarden.com +carLicense: 9249UG +departmentNumber: 6995 +employeeType: Employee +homePhone: +1 213 927-5256 +initials: D. R. +mobile: +1 213 686-2519 +pager: +1 213 534-8200 +roomNumber: 9792 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamqrah Mikelonis +sn: Mikelonis +description: This is Tamqrah Mikelonis's description +facsimileTelephoneNumber: +1 510 298-3720 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 510 216-2238 +title: Chief Administrative Writer +userPassword: Password1 +uid: MikelonT +givenName: Tamqrah +mail: MikelonT@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com +carLicense: 4QTWRW +departmentNumber: 9165 +employeeType: Contract +homePhone: +1 510 151-8991 +initials: T. M. +mobile: +1 510 265-5462 +pager: +1 510 458-7460 +roomNumber: 8286 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Haggar Labfive,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haggar Labfive +sn: Labfive +description: This is Haggar Labfive's description +facsimileTelephoneNumber: +1 206 857-5795 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 526-8510 +title: Junior Human Resources Fellow +userPassword: Password1 +uid: LabfiveH +givenName: Haggar +mail: LabfiveH@1f068d8a62cd4045acf6df01987aee06.bitwarden.com +carLicense: 1L4PGD +departmentNumber: 9240 +employeeType: Normal +homePhone: +1 206 401-1602 +initials: H. L. +mobile: +1 206 203-7347 +pager: +1 206 181-6289 +roomNumber: 9803 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Willow Marko,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willow Marko +sn: Marko +description: This is Willow Marko's description +facsimileTelephoneNumber: +1 818 148-2553 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 107-6790 +title: Chief Management Writer +userPassword: Password1 +uid: MarkoW +givenName: Willow +mail: MarkoW@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com +carLicense: YDMDI0 +departmentNumber: 6705 +employeeType: Normal +homePhone: +1 818 838-3034 +initials: W. M. +mobile: +1 818 590-8041 +pager: +1 818 805-1370 +roomNumber: 8927 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Paulinus McNabb,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulinus McNabb +sn: McNabb +description: This is Paulinus McNabb's description +facsimileTelephoneNumber: +1 510 293-2562 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 275-6283 +title: Junior Payroll Mascot +userPassword: Password1 +uid: McNabbP +givenName: Paulinus +mail: McNabbP@4aaf48b94c754d999a64bf75ae3d3b60.bitwarden.com +carLicense: LJ3DTQ +departmentNumber: 2064 +employeeType: Normal +homePhone: +1 510 985-9742 +initials: P. M. +mobile: +1 510 542-8804 +pager: +1 510 922-6920 +roomNumber: 9205 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merunix Kaczynski +sn: Kaczynski +description: This is Merunix Kaczynski's description +facsimileTelephoneNumber: +1 213 843-1524 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 161-9613 +title: Associate Product Testing Artist +userPassword: Password1 +uid: KaczynsM +givenName: Merunix +mail: KaczynsM@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com +carLicense: 96FP7K +departmentNumber: 2607 +employeeType: Employee +homePhone: +1 213 461-1079 +initials: M. K. +mobile: +1 213 328-1411 +pager: +1 213 126-8533 +roomNumber: 9785 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sula Piersol,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sula Piersol +sn: Piersol +description: This is Sula Piersol's description +facsimileTelephoneNumber: +1 408 895-9157 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 865-5916 +title: Supreme Product Development President +userPassword: Password1 +uid: PiersolS +givenName: Sula +mail: PiersolS@7dc5b62cf93648d48eddbda676ec7c2b.bitwarden.com +carLicense: D9LPFI +departmentNumber: 5031 +employeeType: Employee +homePhone: +1 408 798-4222 +initials: S. P. +mobile: +1 408 920-7051 +pager: +1 408 108-2352 +roomNumber: 9451 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Phillip Shearin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phillip Shearin +sn: Shearin +description: This is Phillip Shearin's description +facsimileTelephoneNumber: +1 510 649-3525 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 979-6918 +title: Master Peons Grunt +userPassword: Password1 +uid: ShearinP +givenName: Phillip +mail: ShearinP@b81f861cfff7425eaadf73f079aa2666.bitwarden.com +carLicense: N97MMN +departmentNumber: 5459 +employeeType: Contract +homePhone: +1 510 205-6277 +initials: P. S. +mobile: +1 510 286-5479 +pager: +1 510 797-8876 +roomNumber: 8255 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marg Villeneuve,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marg Villeneuve +sn: Villeneuve +description: This is Marg Villeneuve's description +facsimileTelephoneNumber: +1 804 102-3458 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 668-9831 +title: Master Management Visionary +userPassword: Password1 +uid: VilleneM +givenName: Marg +mail: VilleneM@d71da34df9024aaf8ef124f781734513.bitwarden.com +carLicense: OBIVC0 +departmentNumber: 2272 +employeeType: Contract +homePhone: +1 804 846-3681 +initials: M. V. +mobile: +1 804 405-7872 +pager: +1 804 824-1899 +roomNumber: 9059 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Halette Kirfman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Halette Kirfman +sn: Kirfman +description: This is Halette Kirfman's description +facsimileTelephoneNumber: +1 415 514-3131 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 807-2398 +title: Chief Payroll Visionary +userPassword: Password1 +uid: KirfmanH +givenName: Halette +mail: KirfmanH@e2a54602eb2d428d863b4e68e7098e41.bitwarden.com +carLicense: IHFHNN +departmentNumber: 4279 +employeeType: Normal +homePhone: +1 415 220-9294 +initials: H. K. +mobile: +1 415 553-2584 +pager: +1 415 100-2961 +roomNumber: 8256 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vijya Wrigley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vijya Wrigley +sn: Wrigley +description: This is Vijya Wrigley's description +facsimileTelephoneNumber: +1 206 875-5400 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 714-9304 +title: Junior Product Development Punk +userPassword: Password1 +uid: WrigleyV +givenName: Vijya +mail: WrigleyV@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com +carLicense: XUFMHM +departmentNumber: 8522 +employeeType: Normal +homePhone: +1 206 362-1074 +initials: V. W. +mobile: +1 206 420-9515 +pager: +1 206 610-8165 +roomNumber: 8233 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzanna Piwkowski +sn: Piwkowski +description: This is Suzanna Piwkowski's description +facsimileTelephoneNumber: +1 415 625-9840 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 949-9928 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: PiwkowsS +givenName: Suzanna +mail: PiwkowsS@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com +carLicense: 561PBG +departmentNumber: 1092 +employeeType: Contract +homePhone: +1 415 467-5298 +initials: S. P. +mobile: +1 415 509-8789 +pager: +1 415 559-2010 +roomNumber: 9895 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Leung Veit,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leung Veit +sn: Veit +description: This is Leung Veit's description +facsimileTelephoneNumber: +1 206 297-3473 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 613-4255 +title: Master Product Testing Visionary +userPassword: Password1 +uid: VeitL +givenName: Leung +mail: VeitL@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com +carLicense: ANJDMU +departmentNumber: 7364 +employeeType: Normal +homePhone: +1 206 102-5895 +initials: L. V. +mobile: +1 206 669-2238 +pager: +1 206 844-4664 +roomNumber: 9114 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Celka Sylvain,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celka Sylvain +sn: Sylvain +description: This is Celka Sylvain's description +facsimileTelephoneNumber: +1 415 957-9391 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 477-5801 +title: Chief Janitorial Madonna +userPassword: Password1 +uid: SylvainC +givenName: Celka +mail: SylvainC@3be6f0b907a24b2494bafbb2bc326635.bitwarden.com +carLicense: WF6H81 +departmentNumber: 3217 +employeeType: Contract +homePhone: +1 415 621-7618 +initials: C. S. +mobile: +1 415 780-1946 +pager: +1 415 574-9484 +roomNumber: 9399 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Michiko Zanetti,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michiko Zanetti +sn: Zanetti +description: This is Michiko Zanetti's description +facsimileTelephoneNumber: +1 510 702-1956 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 486-4568 +title: Chief Payroll Artist +userPassword: Password1 +uid: ZanettiM +givenName: Michiko +mail: ZanettiM@ecce68065a2a469d85a092399ef0abdb.bitwarden.com +carLicense: 8VQJEN +departmentNumber: 7071 +employeeType: Contract +homePhone: +1 510 299-8318 +initials: M. Z. +mobile: +1 510 101-2129 +pager: +1 510 612-4100 +roomNumber: 8192 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Derick Sheremeto,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Derick Sheremeto +sn: Sheremeto +description: This is Derick Sheremeto's description +facsimileTelephoneNumber: +1 408 771-4747 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 355-6740 +title: Chief Payroll Admin +userPassword: Password1 +uid: SheremeD +givenName: Derick +mail: SheremeD@5922bcea32dc44eb88de2834c151441c.bitwarden.com +carLicense: PXC9Q7 +departmentNumber: 1925 +employeeType: Normal +homePhone: +1 408 260-4434 +initials: D. S. +mobile: +1 408 302-1170 +pager: +1 408 968-2566 +roomNumber: 9809 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shuji Blander,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shuji Blander +sn: Blander +description: This is Shuji Blander's description +facsimileTelephoneNumber: +1 818 930-5046 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 426-8697 +title: Supreme Payroll Architect +userPassword: Password1 +uid: BlanderS +givenName: Shuji +mail: BlanderS@012a5cfab6324107b0814d36b8f41041.bitwarden.com +carLicense: E9TXKV +departmentNumber: 5126 +employeeType: Employee +homePhone: +1 818 643-3539 +initials: S. B. +mobile: +1 818 506-5961 +pager: +1 818 689-5188 +roomNumber: 9514 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Conni Dubee,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Conni Dubee +sn: Dubee +description: This is Conni Dubee's description +facsimileTelephoneNumber: +1 206 423-8420 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 409-6876 +title: Chief Payroll Madonna +userPassword: Password1 +uid: DubeeC +givenName: Conni +mail: DubeeC@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com +carLicense: G491LK +departmentNumber: 2369 +employeeType: Normal +homePhone: +1 206 840-1774 +initials: C. D. +mobile: +1 206 533-6022 +pager: +1 206 561-3563 +roomNumber: 8196 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Charlot Kling,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charlot Kling +sn: Kling +description: This is Charlot Kling's description +facsimileTelephoneNumber: +1 415 611-7990 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 257-6199 +title: Supreme Peons Grunt +userPassword: Password1 +uid: KlingC +givenName: Charlot +mail: KlingC@4da7d564972d46f2924a6a8ae018f420.bitwarden.com +carLicense: Q13N2R +departmentNumber: 9849 +employeeType: Employee +homePhone: +1 415 462-6351 +initials: C. K. +mobile: +1 415 133-8569 +pager: +1 415 302-2996 +roomNumber: 9270 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ved Missailidis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ved Missailidis +sn: Missailidis +description: This is Ved Missailidis's description +facsimileTelephoneNumber: +1 510 639-7728 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 510 311-8632 +title: Master Administrative Architect +userPassword: Password1 +uid: MissailV +givenName: Ved +mail: MissailV@34a16f57e9db4215b5cb050ec73091c3.bitwarden.com +carLicense: 91X66C +departmentNumber: 2189 +employeeType: Employee +homePhone: +1 510 179-9622 +initials: V. M. +mobile: +1 510 972-1916 +pager: +1 510 568-3075 +roomNumber: 9899 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wladyslaw Buckley +sn: Buckley +description: This is Wladyslaw Buckley's description +facsimileTelephoneNumber: +1 818 789-1792 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 382-3873 +title: Junior Janitorial Technician +userPassword: Password1 +uid: BuckleyW +givenName: Wladyslaw +mail: BuckleyW@86099fc02a734c888a7ae3c972099ceb.bitwarden.com +carLicense: THINBD +departmentNumber: 4195 +employeeType: Contract +homePhone: +1 818 714-2323 +initials: W. B. +mobile: +1 818 330-6005 +pager: +1 818 133-5333 +roomNumber: 8216 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rianon AuYeung +sn: AuYeung +description: This is Rianon AuYeung's description +facsimileTelephoneNumber: +1 510 896-9473 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 128-9546 +title: Master Product Testing Vice President +userPassword: Password1 +uid: AuYeungR +givenName: Rianon +mail: AuYeungR@a4891e9178c647fd97d577b339b0f2ec.bitwarden.com +carLicense: DQRQ39 +departmentNumber: 7686 +employeeType: Normal +homePhone: +1 510 705-7513 +initials: R. A. +mobile: +1 510 732-9132 +pager: +1 510 565-1733 +roomNumber: 9650 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Louisa Dowdy +sn: Dowdy +description: This is Louisa Dowdy's description +facsimileTelephoneNumber: +1 415 753-2184 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 842-2421 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: DowdyL +givenName: Louisa +mail: DowdyL@0f5c9983e32c410788faa72a9c3d7c88.bitwarden.com +carLicense: PATP82 +departmentNumber: 6965 +employeeType: Normal +homePhone: +1 415 603-1027 +initials: L. D. +mobile: +1 415 564-2734 +pager: +1 415 591-7241 +roomNumber: 9962 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Valera Rummans,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valera Rummans +sn: Rummans +description: This is Valera Rummans's description +facsimileTelephoneNumber: +1 510 560-7416 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 776-4060 +title: Master Payroll Warrior +userPassword: Password1 +uid: RummansV +givenName: Valera +mail: RummansV@46b9fed368dc4ef39eafba055f3b72d2.bitwarden.com +carLicense: XP32T9 +departmentNumber: 1927 +employeeType: Contract +homePhone: +1 510 962-1161 +initials: V. R. +mobile: +1 510 558-4933 +pager: +1 510 402-6853 +roomNumber: 9751 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Neely Bresnan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neely Bresnan +sn: Bresnan +description: This is Neely Bresnan's description +facsimileTelephoneNumber: +1 818 876-1519 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 339-7385 +title: Chief Peons Fellow +userPassword: Password1 +uid: BresnanN +givenName: Neely +mail: BresnanN@da06922aef174c0e80555c5332c5d50d.bitwarden.com +carLicense: 5MLPTL +departmentNumber: 9493 +employeeType: Contract +homePhone: +1 818 717-5850 +initials: N. B. +mobile: +1 818 108-9422 +pager: +1 818 494-3067 +roomNumber: 9465 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Trey Zagrodney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trey Zagrodney +sn: Zagrodney +description: This is Trey Zagrodney's description +facsimileTelephoneNumber: +1 415 803-3352 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 442-3564 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: ZagrodnT +givenName: Trey +mail: ZagrodnT@58b17cbf3c8c49a497e5fef5616324ae.bitwarden.com +carLicense: IDFWKW +departmentNumber: 4922 +employeeType: Employee +homePhone: +1 415 658-4247 +initials: T. Z. +mobile: +1 415 206-3683 +pager: +1 415 950-5817 +roomNumber: 8572 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cordie Hippert,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cordie Hippert +sn: Hippert +description: This is Cordie Hippert's description +facsimileTelephoneNumber: +1 510 747-8603 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 211-3188 +title: Chief Management Director +userPassword: Password1 +uid: HippertC +givenName: Cordie +mail: HippertC@2af5a5b28ee142c29a88149a85e2cfc6.bitwarden.com +carLicense: VK67NS +departmentNumber: 2790 +employeeType: Contract +homePhone: +1 510 604-7567 +initials: C. H. +mobile: +1 510 827-1655 +pager: +1 510 857-8356 +roomNumber: 9239 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zanni Godwin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zanni Godwin +sn: Godwin +description: This is Zanni Godwin's description +facsimileTelephoneNumber: +1 408 799-6231 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 215-5581 +title: Supreme Peons Vice President +userPassword: Password1 +uid: GodwinZ +givenName: Zanni +mail: GodwinZ@b356031edae7438e91e9510b0eef0f11.bitwarden.com +carLicense: BERMIB +departmentNumber: 8792 +employeeType: Employee +homePhone: +1 408 155-8721 +initials: Z. G. +mobile: +1 408 790-9271 +pager: +1 408 839-2520 +roomNumber: 8846 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yannick Cricker,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yannick Cricker +sn: Cricker +description: This is Yannick Cricker's description +facsimileTelephoneNumber: +1 206 434-4333 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 206 829-2033 +title: Supreme Product Development Dictator +userPassword: Password1 +uid: CrickerY +givenName: Yannick +mail: CrickerY@8c867e4cf415450c9970643cdd97be2b.bitwarden.com +carLicense: U9Y5XY +departmentNumber: 9257 +employeeType: Normal +homePhone: +1 206 184-7680 +initials: Y. C. +mobile: +1 206 293-4093 +pager: +1 206 654-2791 +roomNumber: 8159 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tayeb Leahy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tayeb Leahy +sn: Leahy +description: This is Tayeb Leahy's description +facsimileTelephoneNumber: +1 415 707-9439 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 625-4943 +title: Junior Administrative Manager +userPassword: Password1 +uid: LeahyT +givenName: Tayeb +mail: LeahyT@94dae55d586a40178d344aa65db63286.bitwarden.com +carLicense: OEII7S +departmentNumber: 6896 +employeeType: Contract +homePhone: +1 415 206-2477 +initials: T. L. +mobile: +1 415 931-8308 +pager: +1 415 713-8992 +roomNumber: 9608 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Paulo Goldner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulo Goldner +sn: Goldner +description: This is Paulo Goldner's description +facsimileTelephoneNumber: +1 510 349-9577 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 108-1715 +title: Junior Product Development Czar +userPassword: Password1 +uid: GoldnerP +givenName: Paulo +mail: GoldnerP@9824b48fa2d849d4b03986cd07954ce2.bitwarden.com +carLicense: TOX4JU +departmentNumber: 8431 +employeeType: Normal +homePhone: +1 510 278-7262 +initials: P. G. +mobile: +1 510 349-5603 +pager: +1 510 832-4516 +roomNumber: 9860 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirit Bolgos +sn: Bolgos +description: This is Kirit Bolgos's description +facsimileTelephoneNumber: +1 408 213-5010 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 533-9713 +title: Chief Product Testing Writer +userPassword: Password1 +uid: BolgosK +givenName: Kirit +mail: BolgosK@1e0d2010b563467286453b342eb2e967.bitwarden.com +carLicense: FBR8D4 +departmentNumber: 4090 +employeeType: Employee +homePhone: +1 408 825-9014 +initials: K. B. +mobile: +1 408 721-2530 +pager: +1 408 875-2166 +roomNumber: 9268 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Casi CHOCS,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Casi CHOCS +sn: CHOCS +description: This is Casi CHOCS's description +facsimileTelephoneNumber: +1 408 737-2044 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 760-9589 +title: Associate Administrative Fellow +userPassword: Password1 +uid: CHOCSC +givenName: Casi +mail: CHOCSC@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com +carLicense: 2AMJOC +departmentNumber: 6528 +employeeType: Normal +homePhone: +1 408 328-2376 +initials: C. C. +mobile: +1 408 110-3136 +pager: +1 408 706-2330 +roomNumber: 8769 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nata Booking,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nata Booking +sn: Booking +description: This is Nata Booking's description +facsimileTelephoneNumber: +1 415 150-6546 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 431-7807 +title: Supreme Peons Artist +userPassword: Password1 +uid: BookingN +givenName: Nata +mail: BookingN@e891dcc74adc426fbd3ad63fb5fff359.bitwarden.com +carLicense: 9H12OF +departmentNumber: 6038 +employeeType: Contract +homePhone: +1 415 765-2067 +initials: N. B. +mobile: +1 415 354-2834 +pager: +1 415 248-5410 +roomNumber: 9951 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Doretta Turkki,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doretta Turkki +sn: Turkki +description: This is Doretta Turkki's description +facsimileTelephoneNumber: +1 415 364-8263 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 498-3045 +title: Supreme Human Resources Director +userPassword: Password1 +uid: TurkkiD +givenName: Doretta +mail: TurkkiD@19ae50f703c34edda0d4ff96561aa4ce.bitwarden.com +carLicense: H4N52H +departmentNumber: 2052 +employeeType: Employee +homePhone: +1 415 476-4978 +initials: D. T. +mobile: +1 415 696-4798 +pager: +1 415 663-2958 +roomNumber: 9795 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Armelle Verhoeven +sn: Verhoeven +description: This is Armelle Verhoeven's description +facsimileTelephoneNumber: +1 510 466-7151 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 726-9147 +title: Master Payroll Madonna +userPassword: Password1 +uid: VerhoevA +givenName: Armelle +mail: VerhoevA@f3ba3b64f9604f3595f8d4c1f4702c4b.bitwarden.com +carLicense: RSU3NT +departmentNumber: 3971 +employeeType: Contract +homePhone: +1 510 797-6262 +initials: A. V. +mobile: +1 510 271-2595 +pager: +1 510 300-6933 +roomNumber: 8409 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hq Buske,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hq Buske +sn: Buske +description: This is Hq Buske's description +facsimileTelephoneNumber: +1 213 173-2984 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 213 112-7815 +title: Junior Janitorial Warrior +userPassword: Password1 +uid: BuskeH +givenName: Hq +mail: BuskeH@06087a741466454b9e2a6b6754ee0c92.bitwarden.com +carLicense: F0VC0R +departmentNumber: 3565 +employeeType: Employee +homePhone: +1 213 400-4826 +initials: H. B. +mobile: +1 213 366-8281 +pager: +1 213 106-5561 +roomNumber: 9462 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chun Pinizzotto +sn: Pinizzotto +description: This is Chun Pinizzotto's description +facsimileTelephoneNumber: +1 510 131-3402 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 720-8356 +title: Supreme Product Development Stooge +userPassword: Password1 +uid: PinizzoC +givenName: Chun +mail: PinizzoC@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com +carLicense: 8DXRWJ +departmentNumber: 7802 +employeeType: Normal +homePhone: +1 510 261-5910 +initials: C. P. +mobile: +1 510 394-5745 +pager: +1 510 900-1349 +roomNumber: 8832 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mamoru Alfaro +sn: Alfaro +description: This is Mamoru Alfaro's description +facsimileTelephoneNumber: +1 510 699-8825 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 565-9025 +title: Chief Human Resources Consultant +userPassword: Password1 +uid: AlfaroM +givenName: Mamoru +mail: AlfaroM@0115872801044ba284591166aa6c228d.bitwarden.com +carLicense: MK2SSW +departmentNumber: 7308 +employeeType: Normal +homePhone: +1 510 475-3219 +initials: M. A. +mobile: +1 510 676-6929 +pager: +1 510 942-2194 +roomNumber: 9823 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roe Levey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roe Levey +sn: Levey +description: This is Roe Levey's description +facsimileTelephoneNumber: +1 206 273-9869 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 157-1155 +title: Supreme Product Testing Assistant +userPassword: Password1 +uid: LeveyR +givenName: Roe +mail: LeveyR@bbdbdd2d73ba4cc08f1e302887d88e7f.bitwarden.com +carLicense: GTUA1L +departmentNumber: 8224 +employeeType: Contract +homePhone: +1 206 238-5469 +initials: R. L. +mobile: +1 206 290-6557 +pager: +1 206 528-4921 +roomNumber: 9632 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Orelia Salinas,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orelia Salinas +sn: Salinas +description: This is Orelia Salinas's description +facsimileTelephoneNumber: +1 213 448-2500 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 583-1697 +title: Junior Payroll Mascot +userPassword: Password1 +uid: SalinasO +givenName: Orelia +mail: SalinasO@67225f2d83cb4254a52f74f5972d275c.bitwarden.com +carLicense: WS4S81 +departmentNumber: 6753 +employeeType: Contract +homePhone: +1 213 676-4224 +initials: O. S. +mobile: +1 213 530-8069 +pager: +1 213 194-7003 +roomNumber: 8041 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Atlante Standel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atlante Standel +sn: Standel +description: This is Atlante Standel's description +facsimileTelephoneNumber: +1 408 263-2798 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 822-4948 +title: Junior Peons Director +userPassword: Password1 +uid: StandelA +givenName: Atlante +mail: StandelA@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com +carLicense: F8PO9L +departmentNumber: 3598 +employeeType: Employee +homePhone: +1 408 650-8456 +initials: A. S. +mobile: +1 408 540-4810 +pager: +1 408 242-7759 +roomNumber: 8292 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leela Rylott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leela Rylott +sn: Rylott +description: This is Leela Rylott's description +facsimileTelephoneNumber: +1 818 253-7764 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 204-3932 +title: Chief Human Resources Manager +userPassword: Password1 +uid: RylottL +givenName: Leela +mail: RylottL@20c2d999fe734387b26090f6d88bafe4.bitwarden.com +carLicense: RJF7KG +departmentNumber: 3582 +employeeType: Normal +homePhone: +1 818 339-7122 +initials: L. R. +mobile: +1 818 148-5433 +pager: +1 818 753-2904 +roomNumber: 9157 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Priscella Oskorep +sn: Oskorep +description: This is Priscella Oskorep's description +facsimileTelephoneNumber: +1 206 846-8600 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 650-3406 +title: Master Human Resources Madonna +userPassword: Password1 +uid: OskorepP +givenName: Priscella +mail: OskorepP@9eb0a140ee7144e0b023cba81df3cc51.bitwarden.com +carLicense: IPFQ0W +departmentNumber: 8970 +employeeType: Employee +homePhone: +1 206 553-5836 +initials: P. O. +mobile: +1 206 747-7334 +pager: +1 206 285-2866 +roomNumber: 9544 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cavin Cobo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cavin Cobo +sn: Cobo +description: This is Cavin Cobo's description +facsimileTelephoneNumber: +1 408 437-2287 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 408 411-7821 +title: Junior Administrative Artist +userPassword: Password1 +uid: CoboC +givenName: Cavin +mail: CoboC@702f120c80c546e3a3d4380e71a79fa6.bitwarden.com +carLicense: J48G6T +departmentNumber: 4529 +employeeType: Normal +homePhone: +1 408 794-9339 +initials: C. C. +mobile: +1 408 226-7468 +pager: +1 408 679-1465 +roomNumber: 8825 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Moe Oastler,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moe Oastler +sn: Oastler +description: This is Moe Oastler's description +facsimileTelephoneNumber: +1 415 945-1120 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 616-5990 +title: Master Human Resources Czar +userPassword: Password1 +uid: OastlerM +givenName: Moe +mail: OastlerM@5497d8e7bbe94acaa8307ac716892d02.bitwarden.com +carLicense: G3DTYU +departmentNumber: 1611 +employeeType: Employee +homePhone: +1 415 401-7075 +initials: M. O. +mobile: +1 415 208-2902 +pager: +1 415 559-2940 +roomNumber: 9109 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lesley ElTorky,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lesley ElTorky +sn: ElTorky +description: This is Lesley ElTorky's description +facsimileTelephoneNumber: +1 213 496-4318 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 818-8749 +title: Junior Payroll President +userPassword: Password1 +uid: ElTorkyL +givenName: Lesley +mail: ElTorkyL@aa8e22a5a37c45459a1aae28136c8279.bitwarden.com +carLicense: EOAINW +departmentNumber: 2696 +employeeType: Normal +homePhone: +1 213 258-7302 +initials: L. E. +mobile: +1 213 913-1224 +pager: +1 213 706-2252 +roomNumber: 8468 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Brina Guttman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brina Guttman +sn: Guttman +description: This is Brina Guttman's description +facsimileTelephoneNumber: +1 213 189-6259 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 621-4760 +title: Associate Management Assistant +userPassword: Password1 +uid: GuttmanB +givenName: Brina +mail: GuttmanB@a33f574fa0a24162b343e74178659859.bitwarden.com +carLicense: 5AS6DU +departmentNumber: 1547 +employeeType: Normal +homePhone: +1 213 938-8223 +initials: B. G. +mobile: +1 213 708-1539 +pager: +1 213 785-3231 +roomNumber: 8620 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hiroko Fait,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hiroko Fait +sn: Fait +description: This is Hiroko Fait's description +facsimileTelephoneNumber: +1 415 169-2774 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 415 212-8080 +title: Junior Human Resources Visionary +userPassword: Password1 +uid: FaitH +givenName: Hiroko +mail: FaitH@5a8cc902fcc5423d892dfdcc048c73b2.bitwarden.com +carLicense: A5YKFC +departmentNumber: 3191 +employeeType: Contract +homePhone: +1 415 470-8893 +initials: H. F. +mobile: +1 415 591-1902 +pager: +1 415 341-4046 +roomNumber: 9674 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Annie Eaton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annie Eaton +sn: Eaton +description: This is Annie Eaton's description +facsimileTelephoneNumber: +1 213 280-7327 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 198-3214 +title: Supreme Product Testing Manager +userPassword: Password1 +uid: EatonA +givenName: Annie +mail: EatonA@fd60ce8a79b644ba9d190b4bf769b6de.bitwarden.com +carLicense: VGAHM0 +departmentNumber: 7013 +employeeType: Employee +homePhone: +1 213 458-6127 +initials: A. E. +mobile: +1 213 400-1685 +pager: +1 213 751-8141 +roomNumber: 8958 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maskell Fung,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maskell Fung +sn: Fung +description: This is Maskell Fung's description +facsimileTelephoneNumber: +1 804 269-6666 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 804 323-8013 +title: Supreme Human Resources Figurehead +userPassword: Password1 +uid: FungM +givenName: Maskell +mail: FungM@841cbd92bca942e386baa349c14cda77.bitwarden.com +carLicense: SBA3BL +departmentNumber: 9312 +employeeType: Normal +homePhone: +1 804 636-2035 +initials: M. F. +mobile: +1 804 341-7488 +pager: +1 804 317-5730 +roomNumber: 9277 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theressa MyersPillsworth +sn: MyersPillsworth +description: This is Theressa MyersPillsworth's description +facsimileTelephoneNumber: +1 818 171-7103 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 291-2970 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: MyersPiT +givenName: Theressa +mail: MyersPiT@d18e37fd0424474ab347b36ca45a4af6.bitwarden.com +carLicense: AL1DY1 +departmentNumber: 2603 +employeeType: Contract +homePhone: +1 818 238-7700 +initials: T. M. +mobile: +1 818 274-8189 +pager: +1 818 366-3140 +roomNumber: 8637 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Franky Ramachandran,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franky Ramachandran +sn: Ramachandran +description: This is Franky Ramachandran's description +facsimileTelephoneNumber: +1 818 308-5758 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 127-3234 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: RamachaF +givenName: Franky +mail: RamachaF@1d233bc1764446c09e064881135ef88f.bitwarden.com +carLicense: RVAL7Q +departmentNumber: 1224 +employeeType: Employee +homePhone: +1 818 157-5726 +initials: F. R. +mobile: +1 818 447-1395 +pager: +1 818 807-9207 +roomNumber: 9467 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emlynn Diaconu +sn: Diaconu +description: This is Emlynn Diaconu's description +facsimileTelephoneNumber: +1 818 737-6426 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 818 551-6704 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: DiaconuE +givenName: Emlynn +mail: DiaconuE@3847a8977cfb45d4b03770a60a27477f.bitwarden.com +carLicense: DK5PPG +departmentNumber: 8510 +employeeType: Contract +homePhone: +1 818 824-9803 +initials: E. D. +mobile: +1 818 853-4818 +pager: +1 818 718-4488 +roomNumber: 9089 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sherri StJohn,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherri StJohn +sn: StJohn +description: This is Sherri StJohn's description +facsimileTelephoneNumber: +1 804 171-3181 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 314-6317 +title: Junior Payroll Mascot +userPassword: Password1 +uid: StJohnS +givenName: Sherri +mail: StJohnS@0d2070a7704249ccae81fc4b91659074.bitwarden.com +carLicense: SVHCBX +departmentNumber: 1316 +employeeType: Contract +homePhone: +1 804 575-4894 +initials: S. S. +mobile: +1 804 834-5640 +pager: +1 804 361-1961 +roomNumber: 8981 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Laser Kokkat,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laser Kokkat +sn: Kokkat +description: This is Laser Kokkat's description +facsimileTelephoneNumber: +1 804 610-4790 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 804 780-1712 +title: Chief Administrative Admin +userPassword: Password1 +uid: KokkatL +givenName: Laser +mail: KokkatL@e83223057d6e4f9fa1110e3c4b1d1907.bitwarden.com +carLicense: DXTPVP +departmentNumber: 3864 +employeeType: Employee +homePhone: +1 804 552-6239 +initials: L. K. +mobile: +1 804 310-3660 +pager: +1 804 333-9153 +roomNumber: 9371 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kjell Boatwright,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kjell Boatwright +sn: Boatwright +description: This is Kjell Boatwright's description +facsimileTelephoneNumber: +1 415 827-9525 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 354-7822 +title: Junior Management Artist +userPassword: Password1 +uid: BoatwriK +givenName: Kjell +mail: BoatwriK@556b8709dd59455493d3a037cd03b5fa.bitwarden.com +carLicense: VJT5GH +departmentNumber: 7151 +employeeType: Normal +homePhone: +1 415 648-9671 +initials: K. B. +mobile: +1 415 471-4041 +pager: +1 415 221-4218 +roomNumber: 8248 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lilly Keane,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilly Keane +sn: Keane +description: This is Lilly Keane's description +facsimileTelephoneNumber: +1 818 612-8841 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 442-6255 +title: Junior Product Development Visionary +userPassword: Password1 +uid: KeaneL +givenName: Lilly +mail: KeaneL@8d8652ab29984781b99266ecccddeda6.bitwarden.com +carLicense: U16N9U +departmentNumber: 1453 +employeeType: Normal +homePhone: +1 818 124-5247 +initials: L. K. +mobile: +1 818 602-6666 +pager: +1 818 462-6898 +roomNumber: 8855 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Guenther Feith,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guenther Feith +sn: Feith +description: This is Guenther Feith's description +facsimileTelephoneNumber: +1 415 622-1117 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 401-7456 +title: Associate Product Development Assistant +userPassword: Password1 +uid: FeithG +givenName: Guenther +mail: FeithG@fdb934baa6cc448ab7c3fa9c2435f30a.bitwarden.com +carLicense: MAMD4L +departmentNumber: 4560 +employeeType: Contract +homePhone: +1 415 703-1348 +initials: G. F. +mobile: +1 415 781-4326 +pager: +1 415 617-2991 +roomNumber: 9965 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lulu Myrillas +sn: Myrillas +description: This is Lulu Myrillas's description +facsimileTelephoneNumber: +1 206 348-9926 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 996-8912 +title: Junior Product Testing Figurehead +userPassword: Password1 +uid: MyrillaL +givenName: Lulu +mail: MyrillaL@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com +carLicense: ME15B7 +departmentNumber: 5242 +employeeType: Employee +homePhone: +1 206 805-1576 +initials: L. M. +mobile: +1 206 858-5239 +pager: +1 206 929-3284 +roomNumber: 8521 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marissa Pizzimenti +sn: Pizzimenti +description: This is Marissa Pizzimenti's description +facsimileTelephoneNumber: +1 510 253-1509 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 345-1574 +title: Chief Product Testing Engineer +userPassword: Password1 +uid: PizzimeM +givenName: Marissa +mail: PizzimeM@ff3f483373584f4f897f71c3fe6f9fc4.bitwarden.com +carLicense: IDET7D +departmentNumber: 9481 +employeeType: Normal +homePhone: +1 510 833-2853 +initials: M. P. +mobile: +1 510 543-6888 +pager: +1 510 535-5178 +roomNumber: 8874 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gus Brodfuehrer +sn: Brodfuehrer +description: This is Gus Brodfuehrer's description +facsimileTelephoneNumber: +1 415 368-2317 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 980-8049 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: BrodfueG +givenName: Gus +mail: BrodfueG@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com +carLicense: DPFP2D +departmentNumber: 2518 +employeeType: Employee +homePhone: +1 415 744-8967 +initials: G. B. +mobile: +1 415 228-8380 +pager: +1 415 814-7049 +roomNumber: 9504 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ross Whitaker,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ross Whitaker +sn: Whitaker +description: This is Ross Whitaker's description +facsimileTelephoneNumber: +1 206 541-6360 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 978-2560 +title: Supreme Payroll Fellow +userPassword: Password1 +uid: WhitakeR +givenName: Ross +mail: WhitakeR@37e3de35a8c340a7b99329132ff492e1.bitwarden.com +carLicense: L76RFD +departmentNumber: 3311 +employeeType: Normal +homePhone: +1 206 342-2754 +initials: R. W. +mobile: +1 206 905-8522 +pager: +1 206 637-7649 +roomNumber: 9985 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tessi Franze,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tessi Franze +sn: Franze +description: This is Tessi Franze's description +facsimileTelephoneNumber: +1 804 993-9379 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 943-2794 +title: Associate Management Czar +userPassword: Password1 +uid: FranzeT +givenName: Tessi +mail: FranzeT@0846b8b864144146a31ad2391920589e.bitwarden.com +carLicense: IUCY1C +departmentNumber: 2771 +employeeType: Employee +homePhone: +1 804 605-5660 +initials: T. F. +mobile: +1 804 821-2124 +pager: +1 804 301-2659 +roomNumber: 8668 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Norel Aly,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norel Aly +sn: Aly +description: This is Norel Aly's description +facsimileTelephoneNumber: +1 818 310-2863 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 151-2766 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: AlyN +givenName: Norel +mail: AlyN@75d70d8bb4aa49b095b06f96258b5907.bitwarden.com +carLicense: I3I48N +departmentNumber: 1767 +employeeType: Normal +homePhone: +1 818 507-9302 +initials: N. A. +mobile: +1 818 624-8721 +pager: +1 818 921-9847 +roomNumber: 8175 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YeeNing Lamy +sn: Lamy +description: This is YeeNing Lamy's description +facsimileTelephoneNumber: +1 804 113-5216 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 433-7512 +title: Associate Janitorial Czar +userPassword: Password1 +uid: LamyY +givenName: YeeNing +mail: LamyY@1a99800019bc40cc83877edaa3c037bd.bitwarden.com +carLicense: NLPPA8 +departmentNumber: 6678 +employeeType: Employee +homePhone: +1 804 620-7085 +initials: Y. L. +mobile: +1 804 232-3865 +pager: +1 804 276-9514 +roomNumber: 9971 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Minetta Mackzum,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minetta Mackzum +sn: Mackzum +description: This is Minetta Mackzum's description +facsimileTelephoneNumber: +1 415 814-6019 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 989-4316 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: MackzumM +givenName: Minetta +mail: MackzumM@1919bfc426ed49ff8f4f00e3c1b79887.bitwarden.com +carLicense: 6SMUAT +departmentNumber: 7374 +employeeType: Contract +homePhone: +1 415 705-1062 +initials: M. M. +mobile: +1 415 524-8286 +pager: +1 415 324-4157 +roomNumber: 8725 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Javier Kinsey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Javier Kinsey +sn: Kinsey +description: This is Javier Kinsey's description +facsimileTelephoneNumber: +1 408 788-9692 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 830-8813 +title: Chief Administrative Fellow +userPassword: Password1 +uid: KinseyJ +givenName: Javier +mail: KinseyJ@c2d4d5c90abe4da59c140390730b8767.bitwarden.com +carLicense: F1SSC5 +departmentNumber: 2606 +employeeType: Contract +homePhone: +1 408 882-4729 +initials: J. K. +mobile: +1 408 649-7457 +pager: +1 408 387-5964 +roomNumber: 8271 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Donelle Stites,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donelle Stites +sn: Stites +description: This is Donelle Stites's description +facsimileTelephoneNumber: +1 415 566-7229 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 536-4889 +title: Junior Human Resources Engineer +userPassword: Password1 +uid: StitesD +givenName: Donelle +mail: StitesD@fdf5161eeea14f4092d0d9d3593c3092.bitwarden.com +carLicense: U4RA74 +departmentNumber: 5787 +employeeType: Employee +homePhone: +1 415 310-6841 +initials: D. S. +mobile: +1 415 555-9229 +pager: +1 415 796-8639 +roomNumber: 8392 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelyn Cruzado +sn: Cruzado +description: This is Madelyn Cruzado's description +facsimileTelephoneNumber: +1 408 192-3507 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 408 671-4584 +title: Master Janitorial Director +userPassword: Password1 +uid: CruzadoM +givenName: Madelyn +mail: CruzadoM@39eecbf6644e41e6a54aa634c1d5a5be.bitwarden.com +carLicense: F3H6LE +departmentNumber: 7696 +employeeType: Normal +homePhone: +1 408 833-6465 +initials: M. C. +mobile: +1 408 270-8786 +pager: +1 408 975-8669 +roomNumber: 9684 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sophia Gazo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sophia Gazo +sn: Gazo +description: This is Sophia Gazo's description +facsimileTelephoneNumber: +1 415 732-4382 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 415 900-2882 +title: Master Human Resources Engineer +userPassword: Password1 +uid: GazoS +givenName: Sophia +mail: GazoS@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com +carLicense: Q4QU2A +departmentNumber: 4799 +employeeType: Contract +homePhone: +1 415 239-4695 +initials: S. G. +mobile: +1 415 138-3784 +pager: +1 415 885-6550 +roomNumber: 9271 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tosca Julian,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tosca Julian +sn: Julian +description: This is Tosca Julian's description +facsimileTelephoneNumber: +1 206 699-7511 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 826-1181 +title: Associate Peons Fellow +userPassword: Password1 +uid: JulianT +givenName: Tosca +mail: JulianT@6f41089f10e04d909c665abe82ffe115.bitwarden.com +carLicense: Y9AEXG +departmentNumber: 3685 +employeeType: Contract +homePhone: +1 206 335-3759 +initials: T. J. +mobile: +1 206 109-7362 +pager: +1 206 980-5159 +roomNumber: 9266 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kellyann Stotz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kellyann Stotz +sn: Stotz +description: This is Kellyann Stotz's description +facsimileTelephoneNumber: +1 213 579-9889 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 213 455-2694 +title: Chief Administrative Warrior +userPassword: Password1 +uid: StotzK +givenName: Kellyann +mail: StotzK@40079c706f0f41f9961a4ed47bc17c65.bitwarden.com +carLicense: 5FP1GW +departmentNumber: 1818 +employeeType: Normal +homePhone: +1 213 432-4896 +initials: K. S. +mobile: +1 213 679-5447 +pager: +1 213 775-5615 +roomNumber: 9041 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ende Broome,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ende Broome +sn: Broome +description: This is Ende Broome's description +facsimileTelephoneNumber: +1 510 511-8702 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 829-2102 +title: Master Administrative Janitor +userPassword: Password1 +uid: BroomeE +givenName: Ende +mail: BroomeE@49df2859910a4e4f8317d17a3be2945d.bitwarden.com +carLicense: T1QSP7 +departmentNumber: 9522 +employeeType: Normal +homePhone: +1 510 495-1488 +initials: E. B. +mobile: +1 510 220-8844 +pager: +1 510 749-6195 +roomNumber: 8081 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Utilla PKDCD +sn: PKDCD +description: This is Utilla PKDCD's description +facsimileTelephoneNumber: +1 206 688-4119 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 408-3379 +title: Junior Janitorial Stooge +userPassword: Password1 +uid: PKDCDU +givenName: Utilla +mail: PKDCDU@7aacbd71f8ff494eb7b5df5ac830a7a6.bitwarden.com +carLicense: O68HP2 +departmentNumber: 6281 +employeeType: Contract +homePhone: +1 206 550-4394 +initials: U. P. +mobile: +1 206 614-7231 +pager: +1 206 646-8764 +roomNumber: 9910 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Krystalle Barnes,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krystalle Barnes +sn: Barnes +description: This is Krystalle Barnes's description +facsimileTelephoneNumber: +1 408 731-8367 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 491-4152 +title: Junior Payroll Stooge +userPassword: Password1 +uid: BarnesK +givenName: Krystalle +mail: BarnesK@893034d40ae747fcb94aa3c93f26d5c8.bitwarden.com +carLicense: Y1EJPT +departmentNumber: 7068 +employeeType: Normal +homePhone: +1 408 669-9503 +initials: K. B. +mobile: +1 408 336-7612 +pager: +1 408 887-2706 +roomNumber: 8560 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jordana Pinsonneault +sn: Pinsonneault +description: This is Jordana Pinsonneault's description +facsimileTelephoneNumber: +1 804 442-8901 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 795-4723 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: PinsonnJ +givenName: Jordana +mail: PinsonnJ@3307e42f1d8c4293bd7a59fddc05e774.bitwarden.com +carLicense: 204GTO +departmentNumber: 7744 +employeeType: Contract +homePhone: +1 804 406-2565 +initials: J. P. +mobile: +1 804 968-2368 +pager: +1 804 742-3122 +roomNumber: 8718 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Janaye Woodward,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janaye Woodward +sn: Woodward +description: This is Janaye Woodward's description +facsimileTelephoneNumber: +1 415 227-3460 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 936-9729 +title: Supreme Management Grunt +userPassword: Password1 +uid: WoodwarJ +givenName: Janaye +mail: WoodwarJ@cff29f28824b49c2bb3b80efc41d7e67.bitwarden.com +carLicense: FNJD93 +departmentNumber: 4505 +employeeType: Normal +homePhone: +1 415 331-7415 +initials: J. W. +mobile: +1 415 564-8983 +pager: +1 415 368-3898 +roomNumber: 8289 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Margot Morin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margot Morin +sn: Morin +description: This is Margot Morin's description +facsimileTelephoneNumber: +1 804 806-4975 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 383-5690 +title: Supreme Peons Admin +userPassword: Password1 +uid: MorinM +givenName: Margot +mail: MorinM@0998558a764541358e8e70ab479cfe9c.bitwarden.com +carLicense: CJ36C0 +departmentNumber: 6567 +employeeType: Employee +homePhone: +1 804 757-4696 +initials: M. M. +mobile: +1 804 841-8360 +pager: +1 804 394-8786 +roomNumber: 8201 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Izumi LeGuen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Izumi LeGuen +sn: LeGuen +description: This is Izumi LeGuen's description +facsimileTelephoneNumber: +1 818 197-5387 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 161-2954 +title: Junior Peons Janitor +userPassword: Password1 +uid: LeGuenI +givenName: Izumi +mail: LeGuenI@c618b1ff4b584c0d8f7ff45342beefcd.bitwarden.com +carLicense: Y161JU +departmentNumber: 7624 +employeeType: Contract +homePhone: +1 818 503-4366 +initials: I. L. +mobile: +1 818 917-4770 +pager: +1 818 605-7944 +roomNumber: 8779 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ZehirCharlie Donak +sn: Donak +description: This is ZehirCharlie Donak's description +facsimileTelephoneNumber: +1 206 402-3057 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 698-4465 +title: Supreme Peons Madonna +userPassword: Password1 +uid: DonakZ +givenName: ZehirCharlie +mail: DonakZ@2fd47af450d743418108699823631680.bitwarden.com +carLicense: QNKD6W +departmentNumber: 1479 +employeeType: Normal +homePhone: +1 206 508-6457 +initials: Z. D. +mobile: +1 206 623-5586 +pager: +1 206 916-3590 +roomNumber: 8649 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Constance Boynton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constance Boynton +sn: Boynton +description: This is Constance Boynton's description +facsimileTelephoneNumber: +1 510 709-5562 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 920-9490 +title: Associate Management Vice President +userPassword: Password1 +uid: BoyntonC +givenName: Constance +mail: BoyntonC@fdb2f5b287e8463ca2c07913962256d3.bitwarden.com +carLicense: Q2IPV8 +departmentNumber: 6797 +employeeType: Employee +homePhone: +1 510 791-5981 +initials: C. B. +mobile: +1 510 569-2558 +pager: +1 510 956-7545 +roomNumber: 8070 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Georgia Blazer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgia Blazer +sn: Blazer +description: This is Georgia Blazer's description +facsimileTelephoneNumber: +1 415 103-5769 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 339-2846 +title: Junior Payroll Consultant +userPassword: Password1 +uid: BlazerG +givenName: Georgia +mail: BlazerG@5410deb36536455cba5926244af94c93.bitwarden.com +carLicense: D07SXR +departmentNumber: 8984 +employeeType: Normal +homePhone: +1 415 478-9802 +initials: G. B. +mobile: +1 415 245-4301 +pager: +1 415 195-7555 +roomNumber: 9687 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherin Cruzado +sn: Cruzado +description: This is Cherin Cruzado's description +facsimileTelephoneNumber: +1 213 322-2090 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 213 797-6522 +title: Associate Human Resources Visionary +userPassword: Password1 +uid: CruzadoC +givenName: Cherin +mail: CruzadoC@60dd1cbe4aa24d86beb286bcf0b69548.bitwarden.com +carLicense: UF9O28 +departmentNumber: 6106 +employeeType: Normal +homePhone: +1 213 867-4901 +initials: C. C. +mobile: +1 213 412-1229 +pager: +1 213 479-8956 +roomNumber: 9012 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Millard Lightfield,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Millard Lightfield +sn: Lightfield +description: This is Millard Lightfield's description +facsimileTelephoneNumber: +1 408 790-4441 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 164-6201 +title: Junior Payroll Czar +userPassword: Password1 +uid: LightfiM +givenName: Millard +mail: LightfiM@f09e11e5beca4779a4a93445ceda8470.bitwarden.com +carLicense: 5WAV2P +departmentNumber: 8596 +employeeType: Contract +homePhone: +1 408 621-9296 +initials: M. L. +mobile: +1 408 337-9808 +pager: +1 408 280-5061 +roomNumber: 9244 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clio Bugajska,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clio Bugajska +sn: Bugajska +description: This is Clio Bugajska's description +facsimileTelephoneNumber: +1 206 409-8267 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 623-8662 +title: Chief Management Dictator +userPassword: Password1 +uid: BugajskC +givenName: Clio +mail: BugajskC@7eaed4562d46473686db6a642d66ce05.bitwarden.com +carLicense: ER0E7G +departmentNumber: 1828 +employeeType: Employee +homePhone: +1 206 685-5339 +initials: C. B. +mobile: +1 206 554-4157 +pager: +1 206 398-7822 +roomNumber: 8757 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dania Nesbitt +sn: Nesbitt +description: This is Dania Nesbitt's description +facsimileTelephoneNumber: +1 206 308-9916 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 368-4297 +title: Supreme Human Resources Czar +userPassword: Password1 +uid: NesbittD +givenName: Dania +mail: NesbittD@f9ae3791c7af4048ba041c1bc79adda2.bitwarden.com +carLicense: DXQ3PL +departmentNumber: 4661 +employeeType: Normal +homePhone: +1 206 112-7288 +initials: D. N. +mobile: +1 206 379-4057 +pager: +1 206 160-5953 +roomNumber: 8760 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sundaram Urquhart +sn: Urquhart +description: This is Sundaram Urquhart's description +facsimileTelephoneNumber: +1 408 165-6933 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 286-5020 +title: Chief Product Development Developer +userPassword: Password1 +uid: UrquharS +givenName: Sundaram +mail: UrquharS@81b16d15c9e143e79666e62f2a341c67.bitwarden.com +carLicense: P8TV68 +departmentNumber: 1249 +employeeType: Normal +homePhone: +1 408 576-5704 +initials: S. U. +mobile: +1 408 750-9512 +pager: +1 408 501-9917 +roomNumber: 8858 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anitra Metrics,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anitra Metrics +sn: Metrics +description: This is Anitra Metrics's description +facsimileTelephoneNumber: +1 818 594-4011 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 372-5325 +title: Master Administrative Pinhead +userPassword: Password1 +uid: MetricsA +givenName: Anitra +mail: MetricsA@979af2384f8d4cccbd0dba8e3c326005.bitwarden.com +carLicense: DOX8RM +departmentNumber: 3392 +employeeType: Employee +homePhone: +1 818 140-7203 +initials: A. M. +mobile: +1 818 947-3596 +pager: +1 818 371-5109 +roomNumber: 8301 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Manish Strachan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manish Strachan +sn: Strachan +description: This is Manish Strachan's description +facsimileTelephoneNumber: +1 510 297-9601 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 515-8145 +title: Supreme Janitorial Technician +userPassword: Password1 +uid: StrachaM +givenName: Manish +mail: StrachaM@438192a801ea415ab5a1cb73b87d8559.bitwarden.com +carLicense: 7N42LV +departmentNumber: 4930 +employeeType: Normal +homePhone: +1 510 443-5691 +initials: M. S. +mobile: +1 510 846-8785 +pager: +1 510 751-5590 +roomNumber: 9646 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nessy Langton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nessy Langton +sn: Langton +description: This is Nessy Langton's description +facsimileTelephoneNumber: +1 206 195-4492 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 406-3079 +title: Associate Payroll Consultant +userPassword: Password1 +uid: LangtonN +givenName: Nessy +mail: LangtonN@685a3d9fd790422d8fb825f7a90cab65.bitwarden.com +carLicense: 9JLAP4 +departmentNumber: 8866 +employeeType: Contract +homePhone: +1 206 709-8958 +initials: N. L. +mobile: +1 206 287-2091 +pager: +1 206 777-5456 +roomNumber: 8832 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leonida Moncur,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonida Moncur +sn: Moncur +description: This is Leonida Moncur's description +facsimileTelephoneNumber: +1 510 417-1257 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 667-4639 +title: Master Human Resources Warrior +userPassword: Password1 +uid: MoncurL +givenName: Leonida +mail: MoncurL@7bb8f37e955d4f04a6cccdb2666d9559.bitwarden.com +carLicense: BUHBPA +departmentNumber: 7757 +employeeType: Normal +homePhone: +1 510 753-9307 +initials: L. M. +mobile: +1 510 505-6018 +pager: +1 510 993-8977 +roomNumber: 9053 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Uday Australia,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Uday Australia +sn: Australia +description: This is Uday Australia's description +facsimileTelephoneNumber: +1 408 465-6318 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 913-9335 +title: Master Human Resources Grunt +userPassword: Password1 +uid: AustralU +givenName: Uday +mail: AustralU@af9b2025e2d4428a825c1c465719ccc7.bitwarden.com +carLicense: V69A9V +departmentNumber: 4666 +employeeType: Employee +homePhone: +1 408 817-2795 +initials: U. A. +mobile: +1 408 751-6398 +pager: +1 408 896-4886 +roomNumber: 9872 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bren Marzella,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bren Marzella +sn: Marzella +description: This is Bren Marzella's description +facsimileTelephoneNumber: +1 415 512-4753 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 415 669-1668 +title: Associate Management Grunt +userPassword: Password1 +uid: MarzellB +givenName: Bren +mail: MarzellB@155d8ce7e5114a6694664bdd20a1e763.bitwarden.com +carLicense: DGDW7M +departmentNumber: 3956 +employeeType: Contract +homePhone: +1 415 767-5834 +initials: B. M. +mobile: +1 415 701-9587 +pager: +1 415 396-6807 +roomNumber: 9765 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vries Bathrick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vries Bathrick +sn: Bathrick +description: This is Vries Bathrick's description +facsimileTelephoneNumber: +1 804 593-3804 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 372-3846 +title: Junior Management Director +userPassword: Password1 +uid: BathricV +givenName: Vries +mail: BathricV@0838c5a7fb7841708f56102b10a6cd6b.bitwarden.com +carLicense: KL7I2R +departmentNumber: 5898 +employeeType: Normal +homePhone: +1 804 499-5666 +initials: V. B. +mobile: +1 804 270-5736 +pager: +1 804 865-8659 +roomNumber: 9749 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maryann Felix,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryann Felix +sn: Felix +description: This is Maryann Felix's description +facsimileTelephoneNumber: +1 804 287-4961 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 804 329-8954 +title: Junior Payroll Figurehead +userPassword: Password1 +uid: FelixM +givenName: Maryann +mail: FelixM@a391c3a07b8943028fe45f62f25be101.bitwarden.com +carLicense: VY6K75 +departmentNumber: 2903 +employeeType: Normal +homePhone: +1 804 444-4901 +initials: M. F. +mobile: +1 804 471-8437 +pager: +1 804 320-1088 +roomNumber: 8355 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carly Bugajski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carly Bugajski +sn: Bugajski +description: This is Carly Bugajski's description +facsimileTelephoneNumber: +1 213 889-4469 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 705-8562 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: BugajskC +givenName: Carly +mail: BugajskC@582578f4c0a34d7283b52c37fe385620.bitwarden.com +carLicense: Q2A138 +departmentNumber: 6227 +employeeType: Contract +homePhone: +1 213 720-2427 +initials: C. B. +mobile: +1 213 108-6303 +pager: +1 213 910-6930 +roomNumber: 8080 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Baruk Zinn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baruk Zinn +sn: Zinn +description: This is Baruk Zinn's description +facsimileTelephoneNumber: +1 415 454-8057 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 607-1829 +title: Junior Janitorial Admin +userPassword: Password1 +uid: ZinnB +givenName: Baruk +mail: ZinnB@efc74300757e4917afeffd6512cd005c.bitwarden.com +carLicense: DP7CAF +departmentNumber: 4980 +employeeType: Employee +homePhone: +1 415 876-5613 +initials: B. Z. +mobile: +1 415 272-5009 +pager: +1 415 758-8589 +roomNumber: 8302 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorianne Ketley +sn: Ketley +description: This is Lorianne Ketley's description +facsimileTelephoneNumber: +1 213 958-9295 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 571-9452 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: KetleyL +givenName: Lorianne +mail: KetleyL@9176a4c133264d3d804cb9216deeac80.bitwarden.com +carLicense: A3NYV7 +departmentNumber: 5769 +employeeType: Employee +homePhone: +1 213 174-5769 +initials: L. K. +mobile: +1 213 650-1018 +pager: +1 213 893-6894 +roomNumber: 9678 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Robinett Etten,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinett Etten +sn: Etten +description: This is Robinett Etten's description +facsimileTelephoneNumber: +1 206 463-3375 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 741-4193 +title: Supreme Janitorial Technician +userPassword: Password1 +uid: EttenR +givenName: Robinett +mail: EttenR@51b0dfaaac8e469582446b31c5cb1bfd.bitwarden.com +carLicense: RARKGH +departmentNumber: 1208 +employeeType: Normal +homePhone: +1 206 803-9105 +initials: R. E. +mobile: +1 206 176-9697 +pager: +1 206 292-2808 +roomNumber: 8078 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tobye Scandrett +sn: Scandrett +description: This is Tobye Scandrett's description +facsimileTelephoneNumber: +1 213 105-2551 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 838-5187 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: ScandreT +givenName: Tobye +mail: ScandreT@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com +carLicense: BVUBB8 +departmentNumber: 2342 +employeeType: Employee +homePhone: +1 213 539-5534 +initials: T. S. +mobile: +1 213 973-4004 +pager: +1 213 465-3642 +roomNumber: 8440 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Monteene Fraties,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monteene Fraties +sn: Fraties +description: This is Monteene Fraties's description +facsimileTelephoneNumber: +1 213 570-6053 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 308-7527 +title: Master Peons Evangelist +userPassword: Password1 +uid: FratiesM +givenName: Monteene +mail: FratiesM@49237b860d1f43eba86c8a5d68311c7b.bitwarden.com +carLicense: JBNR9C +departmentNumber: 4247 +employeeType: Contract +homePhone: +1 213 351-7494 +initials: M. F. +mobile: +1 213 659-7732 +pager: +1 213 222-5613 +roomNumber: 8236 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jo Ritter,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jo Ritter +sn: Ritter +description: This is Jo Ritter's description +facsimileTelephoneNumber: +1 415 349-3831 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 366-8049 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: RitterJ +givenName: Jo +mail: RitterJ@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com +carLicense: 5PEKK4 +departmentNumber: 3617 +employeeType: Contract +homePhone: +1 415 769-6255 +initials: J. R. +mobile: +1 415 465-6913 +pager: +1 415 936-3647 +roomNumber: 9869 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Laurent Viehweg,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laurent Viehweg +sn: Viehweg +description: This is Laurent Viehweg's description +facsimileTelephoneNumber: +1 206 204-2645 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 588-1670 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: ViehwegL +givenName: Laurent +mail: ViehwegL@ef13a1a456c847c69f1a9c739972d1e5.bitwarden.com +carLicense: UYK4B5 +departmentNumber: 7053 +employeeType: Contract +homePhone: +1 206 772-7631 +initials: L. V. +mobile: +1 206 367-3402 +pager: +1 206 191-7510 +roomNumber: 8551 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Devonne Erickson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devonne Erickson +sn: Erickson +description: This is Devonne Erickson's description +facsimileTelephoneNumber: +1 415 912-7820 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 205-4018 +title: Junior Administrative Consultant +userPassword: Password1 +uid: EricksoD +givenName: Devonne +mail: EricksoD@8227646c55034cf9b21757fce681b53f.bitwarden.com +carLicense: 3JW70N +departmentNumber: 2453 +employeeType: Contract +homePhone: +1 415 358-1507 +initials: D. E. +mobile: +1 415 170-3942 +pager: +1 415 108-2268 +roomNumber: 8089 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chantal Di,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chantal Di +sn: Di +description: This is Chantal Di's description +facsimileTelephoneNumber: +1 510 558-1173 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 572-8369 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: DiC +givenName: Chantal +mail: DiC@bd8c56963a9f48dfb73b8a3322b6fe38.bitwarden.com +carLicense: D9QCDY +departmentNumber: 2171 +employeeType: Contract +homePhone: +1 510 288-4720 +initials: C. D. +mobile: +1 510 344-8002 +pager: +1 510 547-1131 +roomNumber: 8053 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sluis Quek,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sluis Quek +sn: Quek +description: This is Sluis Quek's description +facsimileTelephoneNumber: +1 415 367-2250 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 942-8029 +title: Chief Product Development Assistant +userPassword: Password1 +uid: QuekS +givenName: Sluis +mail: QuekS@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com +carLicense: 695KF9 +departmentNumber: 5496 +employeeType: Employee +homePhone: +1 415 307-4551 +initials: S. Q. +mobile: +1 415 352-6365 +pager: +1 415 822-6139 +roomNumber: 9496 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Maxey Cavasso,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maxey Cavasso +sn: Cavasso +description: This is Maxey Cavasso's description +facsimileTelephoneNumber: +1 510 102-2211 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 161-6514 +title: Chief Management Consultant +userPassword: Password1 +uid: CavassoM +givenName: Maxey +mail: CavassoM@bbc2ed84411d4a40af49ae614b080b8d.bitwarden.com +carLicense: N5FJE9 +departmentNumber: 2219 +employeeType: Normal +homePhone: +1 510 373-5383 +initials: M. C. +mobile: +1 510 585-9622 +pager: +1 510 476-9201 +roomNumber: 9284 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Claire Greveling,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claire Greveling +sn: Greveling +description: This is Claire Greveling's description +facsimileTelephoneNumber: +1 206 980-8010 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 208-5938 +title: Chief Product Development Grunt +userPassword: Password1 +uid: GreveliC +givenName: Claire +mail: GreveliC@cc71e71454d64842b764308435f8b9ce.bitwarden.com +carLicense: JTI2O8 +departmentNumber: 8959 +employeeType: Normal +homePhone: +1 206 726-8459 +initials: C. G. +mobile: +1 206 796-6710 +pager: +1 206 384-5724 +roomNumber: 8519 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Keven Krishnan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keven Krishnan +sn: Krishnan +description: This is Keven Krishnan's description +facsimileTelephoneNumber: +1 510 884-5414 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 510 667-6743 +title: Supreme Administrative Evangelist +userPassword: Password1 +uid: KrishnaK +givenName: Keven +mail: KrishnaK@4f2c10e7af1a452181b6cc4729edcbe0.bitwarden.com +carLicense: B00BHQ +departmentNumber: 6170 +employeeType: Normal +homePhone: +1 510 302-4338 +initials: K. K. +mobile: +1 510 870-2965 +pager: +1 510 335-9959 +roomNumber: 9976 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dau Banigan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dau Banigan +sn: Banigan +description: This is Dau Banigan's description +facsimileTelephoneNumber: +1 206 607-4157 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 184-7341 +title: Junior Payroll Assistant +userPassword: Password1 +uid: BaniganD +givenName: Dau +mail: BaniganD@2e5f5aa98def49769eb37d64a6e3527e.bitwarden.com +carLicense: AS9DJY +departmentNumber: 9804 +employeeType: Contract +homePhone: +1 206 148-9152 +initials: D. B. +mobile: +1 206 309-7924 +pager: +1 206 938-2562 +roomNumber: 9370 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kayla Carlisle,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kayla Carlisle +sn: Carlisle +description: This is Kayla Carlisle's description +facsimileTelephoneNumber: +1 415 497-7610 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 775-2945 +title: Associate Administrative Mascot +userPassword: Password1 +uid: CarlislK +givenName: Kayla +mail: CarlislK@9384af23e6ba4db19b7b6c7e7b40705d.bitwarden.com +carLicense: ET87EK +departmentNumber: 3400 +employeeType: Contract +homePhone: +1 415 250-4398 +initials: K. C. +mobile: +1 415 835-9440 +pager: +1 415 277-9109 +roomNumber: 8643 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Juozas Hengl,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juozas Hengl +sn: Hengl +description: This is Juozas Hengl's description +facsimileTelephoneNumber: +1 510 375-6228 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 650-6174 +title: Junior Management Dictator +userPassword: Password1 +uid: HenglJ +givenName: Juozas +mail: HenglJ@ff24c4fb1fee4c4da9eb652af0cd5b6b.bitwarden.com +carLicense: SHD8NT +departmentNumber: 2836 +employeeType: Employee +homePhone: +1 510 876-2159 +initials: J. H. +mobile: +1 510 686-8854 +pager: +1 510 318-4933 +roomNumber: 8898 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ramniklal Traulich,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramniklal Traulich +sn: Traulich +description: This is Ramniklal Traulich's description +facsimileTelephoneNumber: +1 804 462-2144 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 978-8742 +title: Chief Management Vice President +userPassword: Password1 +uid: TraulicR +givenName: Ramniklal +mail: TraulicR@4467185dad394a2ab964d923a668f7a8.bitwarden.com +carLicense: 2DABRW +departmentNumber: 5725 +employeeType: Employee +homePhone: +1 804 853-9881 +initials: R. T. +mobile: +1 804 169-3363 +pager: +1 804 325-4197 +roomNumber: 9752 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=David Vennos,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: David Vennos +sn: Vennos +description: This is David Vennos's description +facsimileTelephoneNumber: +1 408 996-5270 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 186-7235 +title: Chief Product Testing Manager +userPassword: Password1 +uid: VennosD +givenName: David +mail: VennosD@096101f2d07e4904be121b35278935c1.bitwarden.com +carLicense: 8XJFVG +departmentNumber: 6677 +employeeType: Employee +homePhone: +1 408 712-7215 +initials: D. V. +mobile: +1 408 324-8177 +pager: +1 408 934-8823 +roomNumber: 8747 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shiela Nixon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shiela Nixon +sn: Nixon +description: This is Shiela Nixon's description +facsimileTelephoneNumber: +1 510 717-6965 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 154-5236 +title: Junior Administrative Grunt +userPassword: Password1 +uid: NixonS +givenName: Shiela +mail: NixonS@2ccf92b2367047e48fb3d1d7db3fa4ba.bitwarden.com +carLicense: LO2XRX +departmentNumber: 1441 +employeeType: Normal +homePhone: +1 510 117-9490 +initials: S. N. +mobile: +1 510 657-4105 +pager: +1 510 467-6937 +roomNumber: 8199 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mona Kohler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mona Kohler +sn: Kohler +description: This is Mona Kohler's description +facsimileTelephoneNumber: +1 804 964-6173 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 816-5811 +title: Junior Management Developer +userPassword: Password1 +uid: KohlerM +givenName: Mona +mail: KohlerM@8884ff0a9d924931a5d0a79e7e71fbe7.bitwarden.com +carLicense: 1G7G6D +departmentNumber: 1575 +employeeType: Contract +homePhone: +1 804 856-4901 +initials: M. K. +mobile: +1 804 777-6158 +pager: +1 804 440-2503 +roomNumber: 9151 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Elene DOrazio,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elene DOrazio +sn: DOrazio +description: This is Elene DOrazio's description +facsimileTelephoneNumber: +1 804 731-3212 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 642-1512 +title: Master Administrative Director +userPassword: Password1 +uid: DOrazioE +givenName: Elene +mail: DOrazioE@b8e727bc14df4a0daced5f490054e337.bitwarden.com +carLicense: SJQWYF +departmentNumber: 6902 +employeeType: Contract +homePhone: +1 804 708-1255 +initials: E. D. +mobile: +1 804 725-5979 +pager: +1 804 405-7711 +roomNumber: 9504 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elspeth Bussey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elspeth Bussey +sn: Bussey +description: This is Elspeth Bussey's description +facsimileTelephoneNumber: +1 415 196-4167 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 579-2905 +title: Associate Peons Janitor +userPassword: Password1 +uid: BusseyE +givenName: Elspeth +mail: BusseyE@aa5b41edbda84e7ca1fc888042ddc8a3.bitwarden.com +carLicense: EQ99SC +departmentNumber: 8427 +employeeType: Employee +homePhone: +1 415 663-5905 +initials: E. B. +mobile: +1 415 379-8123 +pager: +1 415 222-6230 +roomNumber: 9013 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mari Abbott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mari Abbott +sn: Abbott +description: This is Mari Abbott's description +facsimileTelephoneNumber: +1 415 784-1755 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 144-6412 +title: Junior Human Resources Janitor +userPassword: Password1 +uid: AbbottM +givenName: Mari +mail: AbbottM@d12cf402dbab4ca98b370d7e2c59928b.bitwarden.com +carLicense: XK3XG1 +departmentNumber: 3374 +employeeType: Normal +homePhone: +1 415 922-6505 +initials: M. A. +mobile: +1 415 238-1846 +pager: +1 415 742-2014 +roomNumber: 8412 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nanon Lavarnway +sn: Lavarnway +description: This is Nanon Lavarnway's description +facsimileTelephoneNumber: +1 804 436-1344 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 859-8372 +title: Chief Administrative Figurehead +userPassword: Password1 +uid: LavarnwN +givenName: Nanon +mail: LavarnwN@83f78532c82a4f77a10f2d7460348b85.bitwarden.com +carLicense: 97LC1J +departmentNumber: 4913 +employeeType: Employee +homePhone: +1 804 923-8676 +initials: N. L. +mobile: +1 804 527-3141 +pager: +1 804 216-1828 +roomNumber: 9426 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Josine Hwang,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Josine Hwang +sn: Hwang +description: This is Josine Hwang's description +facsimileTelephoneNumber: +1 206 704-5920 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 411-8783 +title: Chief Product Testing Dictator +userPassword: Password1 +uid: HwangJ +givenName: Josine +mail: HwangJ@535949b117544e80b4ad9c1fa166edb9.bitwarden.com +carLicense: JSV2S6 +departmentNumber: 1004 +employeeType: Employee +homePhone: +1 206 858-2573 +initials: J. H. +mobile: +1 206 397-9796 +pager: +1 206 895-9856 +roomNumber: 8163 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jawaid Humenik +sn: Humenik +description: This is Jawaid Humenik's description +facsimileTelephoneNumber: +1 206 797-5028 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 665-9539 +title: Chief Human Resources Figurehead +userPassword: Password1 +uid: HumenikJ +givenName: Jawaid +mail: HumenikJ@17c722e6b16149e08a18c9a05c1e5e9e.bitwarden.com +carLicense: RWYWPN +departmentNumber: 9527 +employeeType: Employee +homePhone: +1 206 399-3912 +initials: J. H. +mobile: +1 206 849-1151 +pager: +1 206 447-6022 +roomNumber: 8433 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hafeezah Nezon +sn: Nezon +description: This is Hafeezah Nezon's description +facsimileTelephoneNumber: +1 804 612-5069 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 905-7551 +title: Supreme Product Testing Evangelist +userPassword: Password1 +uid: NezonH +givenName: Hafeezah +mail: NezonH@5eb82c53226242fd8c7b8521feffe50f.bitwarden.com +carLicense: K1IKBK +departmentNumber: 3746 +employeeType: Normal +homePhone: +1 804 150-2042 +initials: H. N. +mobile: +1 804 153-5972 +pager: +1 804 764-4753 +roomNumber: 8544 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gypsy Weiser,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gypsy Weiser +sn: Weiser +description: This is Gypsy Weiser's description +facsimileTelephoneNumber: +1 206 499-9297 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 372-4435 +title: Supreme Payroll Director +userPassword: Password1 +uid: WeiserG +givenName: Gypsy +mail: WeiserG@352885b42f264ade8eacdfa709cc8cc4.bitwarden.com +carLicense: D05W6B +departmentNumber: 6088 +employeeType: Normal +homePhone: +1 206 293-2947 +initials: G. W. +mobile: +1 206 500-9709 +pager: +1 206 480-7762 +roomNumber: 8624 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nir Cornaro,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nir Cornaro +sn: Cornaro +description: This is Nir Cornaro's description +facsimileTelephoneNumber: +1 415 990-5533 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 415 443-4739 +title: Supreme Payroll Manager +userPassword: Password1 +uid: CornaroN +givenName: Nir +mail: CornaroN@7ac8324ed047496d93c460651ba38b86.bitwarden.com +carLicense: 10PLPR +departmentNumber: 3355 +employeeType: Contract +homePhone: +1 415 677-9357 +initials: N. C. +mobile: +1 415 123-6644 +pager: +1 415 256-4412 +roomNumber: 9075 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bettine Centis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettine Centis +sn: Centis +description: This is Bettine Centis's description +facsimileTelephoneNumber: +1 510 134-7634 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 375-9860 +title: Master Peons Madonna +userPassword: Password1 +uid: CentisB +givenName: Bettine +mail: CentisB@85000db2e5e34d6d81e53b19e5b46684.bitwarden.com +carLicense: 9DU4NT +departmentNumber: 4897 +employeeType: Normal +homePhone: +1 510 993-6819 +initials: B. C. +mobile: +1 510 489-9160 +pager: +1 510 360-2097 +roomNumber: 8915 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sami Phipps,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sami Phipps +sn: Phipps +description: This is Sami Phipps's description +facsimileTelephoneNumber: +1 415 663-4837 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 420-1578 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: PhippsS +givenName: Sami +mail: PhippsS@f20eb0847ca14a90a67aa09264897cd2.bitwarden.com +carLicense: IE507H +departmentNumber: 1764 +employeeType: Normal +homePhone: +1 415 515-1005 +initials: S. P. +mobile: +1 415 674-8822 +pager: +1 415 887-2299 +roomNumber: 8182 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Valaria Jamshidi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valaria Jamshidi +sn: Jamshidi +description: This is Valaria Jamshidi's description +facsimileTelephoneNumber: +1 804 276-8565 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 804 603-3929 +title: Associate Peons Director +userPassword: Password1 +uid: JamshidV +givenName: Valaria +mail: JamshidV@6f4eb4f6c7594572a68d6ca9999a39eb.bitwarden.com +carLicense: JYN9KA +departmentNumber: 5547 +employeeType: Normal +homePhone: +1 804 309-4055 +initials: V. J. +mobile: +1 804 188-4244 +pager: +1 804 740-1924 +roomNumber: 9322 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaquenetta Besharah +sn: Besharah +description: This is Jaquenetta Besharah's description +facsimileTelephoneNumber: +1 818 320-4827 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 775-4773 +title: Supreme Human Resources Figurehead +userPassword: Password1 +uid: BesharaJ +givenName: Jaquenetta +mail: BesharaJ@c7a27fd01c1647d28de4dfcfed9b1184.bitwarden.com +carLicense: 9Y5A3Y +departmentNumber: 4515 +employeeType: Contract +homePhone: +1 818 863-3426 +initials: J. B. +mobile: +1 818 249-9941 +pager: +1 818 787-5732 +roomNumber: 8172 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Loleta DuBois,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loleta DuBois +sn: DuBois +description: This is Loleta DuBois's description +facsimileTelephoneNumber: +1 510 340-3581 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 188-5968 +title: Master Janitorial Dictator +userPassword: Password1 +uid: DuBoisL +givenName: Loleta +mail: DuBoisL@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com +carLicense: 14WY4X +departmentNumber: 1852 +employeeType: Employee +homePhone: +1 510 827-5180 +initials: L. D. +mobile: +1 510 982-8288 +pager: +1 510 886-6751 +roomNumber: 8771 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Suzi Penfield,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzi Penfield +sn: Penfield +description: This is Suzi Penfield's description +facsimileTelephoneNumber: +1 818 239-4739 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 355-9514 +title: Supreme Janitorial Writer +userPassword: Password1 +uid: PenfielS +givenName: Suzi +mail: PenfielS@b3322abd91d442cd8a0ab00357938e16.bitwarden.com +carLicense: 00NGDT +departmentNumber: 3354 +employeeType: Contract +homePhone: +1 818 323-6118 +initials: S. P. +mobile: +1 818 295-6057 +pager: +1 818 985-5590 +roomNumber: 9814 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mot Harper,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mot Harper +sn: Harper +description: This is Mot Harper's description +facsimileTelephoneNumber: +1 804 332-3432 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 821-7048 +title: Chief Product Testing Director +userPassword: Password1 +uid: HarperM +givenName: Mot +mail: HarperM@356cd6c1b7e3439e9ef5f5b352dedbb9.bitwarden.com +carLicense: 5M3X64 +departmentNumber: 8979 +employeeType: Normal +homePhone: +1 804 719-5041 +initials: M. H. +mobile: +1 804 448-4030 +pager: +1 804 816-5369 +roomNumber: 8447 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constantine Beaucaire +sn: Beaucaire +description: This is Constantine Beaucaire's description +facsimileTelephoneNumber: +1 213 646-2810 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 878-2629 +title: Junior Janitorial Evangelist +userPassword: Password1 +uid: BeaucaiC +givenName: Constantine +mail: BeaucaiC@b827ba5736ae48268de38db3e9e259c3.bitwarden.com +carLicense: G1IJ5J +departmentNumber: 5354 +employeeType: Contract +homePhone: +1 213 584-6116 +initials: C. B. +mobile: +1 213 732-3413 +pager: +1 213 356-4098 +roomNumber: 8130 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Beata Shyu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beata Shyu +sn: Shyu +description: This is Beata Shyu's description +facsimileTelephoneNumber: +1 804 113-6587 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 804 272-5926 +title: Junior Administrative Vice President +userPassword: Password1 +uid: ShyuB +givenName: Beata +mail: ShyuB@6bd1865fbe47463dbcb960e39a8c54d7.bitwarden.com +carLicense: K4LA7A +departmentNumber: 5727 +employeeType: Employee +homePhone: +1 804 322-4183 +initials: B. S. +mobile: +1 804 835-4823 +pager: +1 804 374-2906 +roomNumber: 8520 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carter Munroe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carter Munroe +sn: Munroe +description: This is Carter Munroe's description +facsimileTelephoneNumber: +1 510 988-6710 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 510 828-5263 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: MunroeC +givenName: Carter +mail: MunroeC@d0d2d3fedb3f4a3c8932e1f5796c08e0.bitwarden.com +carLicense: RU67Q8 +departmentNumber: 3711 +employeeType: Contract +homePhone: +1 510 415-1187 +initials: C. M. +mobile: +1 510 557-7014 +pager: +1 510 177-7185 +roomNumber: 8959 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Johnnie Holmes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnnie Holmes +sn: Holmes +description: This is Johnnie Holmes's description +facsimileTelephoneNumber: +1 213 705-5658 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 886-3880 +title: Junior Peons Sales Rep +userPassword: Password1 +uid: HolmesJ +givenName: Johnnie +mail: HolmesJ@f40bf043953c406aba47649d98484a4f.bitwarden.com +carLicense: DSBVP0 +departmentNumber: 9391 +employeeType: Normal +homePhone: +1 213 744-8255 +initials: J. H. +mobile: +1 213 750-7127 +pager: +1 213 149-1117 +roomNumber: 8304 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rollo Rolfes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rollo Rolfes +sn: Rolfes +description: This is Rollo Rolfes's description +facsimileTelephoneNumber: +1 804 475-8966 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 225-9728 +title: Chief Management President +userPassword: Password1 +uid: RolfesR +givenName: Rollo +mail: RolfesR@3ec5b2de0d2345779e5987d3e4fbbb28.bitwarden.com +carLicense: MRH2NA +departmentNumber: 4255 +employeeType: Employee +homePhone: +1 804 656-1956 +initials: R. R. +mobile: +1 804 655-6468 +pager: +1 804 398-4771 +roomNumber: 8809 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wendye Queries,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wendye Queries +sn: Queries +description: This is Wendye Queries's description +facsimileTelephoneNumber: +1 415 893-1505 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 371-7105 +title: Junior Product Development President +userPassword: Password1 +uid: QueriesW +givenName: Wendye +mail: QueriesW@3e85ba8a9fd94b8ea8a79fbaf36e29c9.bitwarden.com +carLicense: K5UO9S +departmentNumber: 1153 +employeeType: Employee +homePhone: +1 415 978-3975 +initials: W. Q. +mobile: +1 415 739-5886 +pager: +1 415 444-6378 +roomNumber: 8909 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tonie Ausley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonie Ausley +sn: Ausley +description: This is Tonie Ausley's description +facsimileTelephoneNumber: +1 818 848-5734 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 894-5801 +title: Master Product Development Writer +userPassword: Password1 +uid: AusleyT +givenName: Tonie +mail: AusleyT@8e58a0274e2f4a9eace3b506ad190406.bitwarden.com +carLicense: OJA6CR +departmentNumber: 8147 +employeeType: Employee +homePhone: +1 818 536-5081 +initials: T. A. +mobile: +1 818 179-6579 +pager: +1 818 683-4218 +roomNumber: 9460 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bertina Winchester,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bertina Winchester +sn: Winchester +description: This is Bertina Winchester's description +facsimileTelephoneNumber: +1 415 524-3646 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 426-8070 +title: Chief Janitorial Artist +userPassword: Password1 +uid: WinchesB +givenName: Bertina +mail: WinchesB@a78343bebdf4455eb6914faf7a6b5592.bitwarden.com +carLicense: CCXNU8 +departmentNumber: 5909 +employeeType: Employee +homePhone: +1 415 698-5900 +initials: B. W. +mobile: +1 415 965-7023 +pager: +1 415 327-3170 +roomNumber: 8975 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Knut Louisseize,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Knut Louisseize +sn: Louisseize +description: This is Knut Louisseize's description +facsimileTelephoneNumber: +1 415 231-7742 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 138-1768 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: LouisseK +givenName: Knut +mail: LouisseK@edb6faa6b9ef42e78cb76cff9b446a1d.bitwarden.com +carLicense: HO5XVV +departmentNumber: 6906 +employeeType: Normal +homePhone: +1 415 391-7780 +initials: K. L. +mobile: +1 415 549-2425 +pager: +1 415 285-9052 +roomNumber: 9770 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Miguelita Merworth,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miguelita Merworth +sn: Merworth +description: This is Miguelita Merworth's description +facsimileTelephoneNumber: +1 408 537-1078 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 780-3796 +title: Associate Peons Artist +userPassword: Password1 +uid: MerwortM +givenName: Miguelita +mail: MerwortM@9c564d094e5e497a8fd4aac4f36731f1.bitwarden.com +carLicense: XGPO87 +departmentNumber: 9489 +employeeType: Employee +homePhone: +1 408 801-9786 +initials: M. M. +mobile: +1 408 384-1202 +pager: +1 408 588-2638 +roomNumber: 9799 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vlad Hilder,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vlad Hilder +sn: Hilder +description: This is Vlad Hilder's description +facsimileTelephoneNumber: +1 213 420-6893 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 466-9371 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: HilderV +givenName: Vlad +mail: HilderV@8bced59a99724d5eb08954ec3497f98c.bitwarden.com +carLicense: YJJWHT +departmentNumber: 1188 +employeeType: Employee +homePhone: +1 213 742-1589 +initials: V. H. +mobile: +1 213 662-1229 +pager: +1 213 638-2622 +roomNumber: 9062 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Norry Hord,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norry Hord +sn: Hord +description: This is Norry Hord's description +facsimileTelephoneNumber: +1 804 517-4661 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 947-9878 +title: Chief Human Resources Dictator +userPassword: Password1 +uid: HordN +givenName: Norry +mail: HordN@4dd21bf6830a4c908b6586742f2895eb.bitwarden.com +carLicense: 06V7TN +departmentNumber: 7953 +employeeType: Employee +homePhone: +1 804 272-2333 +initials: N. H. +mobile: +1 804 742-3284 +pager: +1 804 497-5938 +roomNumber: 9169 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kurt Bozicevich,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kurt Bozicevich +sn: Bozicevich +description: This is Kurt Bozicevich's description +facsimileTelephoneNumber: +1 206 552-4592 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 419-8882 +title: Chief Peons Figurehead +userPassword: Password1 +uid: BozicevK +givenName: Kurt +mail: BozicevK@e8e7ee5b6e064589b4c7f97fde4b37f5.bitwarden.com +carLicense: XYURHJ +departmentNumber: 9106 +employeeType: Employee +homePhone: +1 206 930-8974 +initials: K. B. +mobile: +1 206 791-5487 +pager: +1 206 739-5700 +roomNumber: 9928 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Charles Orsini,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charles Orsini +sn: Orsini +description: This is Charles Orsini's description +facsimileTelephoneNumber: +1 213 342-1671 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 946-2321 +title: Associate Management Assistant +userPassword: Password1 +uid: OrsiniC +givenName: Charles +mail: OrsiniC@764681a95a5b406ca9af128317a23e8b.bitwarden.com +carLicense: QLP0YM +departmentNumber: 8308 +employeeType: Contract +homePhone: +1 213 245-4251 +initials: C. O. +mobile: +1 213 397-8681 +pager: +1 213 110-7167 +roomNumber: 9748 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Meriline Tom,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meriline Tom +sn: Tom +description: This is Meriline Tom's description +facsimileTelephoneNumber: +1 510 535-4957 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 994-9896 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: TomM +givenName: Meriline +mail: TomM@d0f838c93ef94627924b8203a7bc4ac9.bitwarden.com +carLicense: UNWUTL +departmentNumber: 4554 +employeeType: Contract +homePhone: +1 510 564-4733 +initials: M. T. +mobile: +1 510 939-9904 +pager: +1 510 199-3863 +roomNumber: 9570 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Genga Kahn,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genga Kahn +sn: Kahn +description: This is Genga Kahn's description +facsimileTelephoneNumber: +1 213 698-6618 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 447-6083 +title: Chief Product Testing Dictator +userPassword: Password1 +uid: KahnG +givenName: Genga +mail: KahnG@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com +carLicense: 737D3K +departmentNumber: 9628 +employeeType: Contract +homePhone: +1 213 559-3572 +initials: G. K. +mobile: +1 213 946-6619 +pager: +1 213 334-3955 +roomNumber: 9509 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gates Scharf,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gates Scharf +sn: Scharf +description: This is Gates Scharf's description +facsimileTelephoneNumber: +1 206 360-8432 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 603-7568 +title: Associate Peons Artist +userPassword: Password1 +uid: ScharfG +givenName: Gates +mail: ScharfG@14d1b49506834e5c9ccc77fc2529566f.bitwarden.com +carLicense: GJST9N +departmentNumber: 2562 +employeeType: Employee +homePhone: +1 206 531-1667 +initials: G. S. +mobile: +1 206 839-9954 +pager: +1 206 672-2230 +roomNumber: 8682 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Isabelita Weger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isabelita Weger +sn: Weger +description: This is Isabelita Weger's description +facsimileTelephoneNumber: +1 408 317-4732 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 107-4427 +title: Junior Management Punk +userPassword: Password1 +uid: WegerI +givenName: Isabelita +mail: WegerI@4971636bbc214b9bab855e271936dd02.bitwarden.com +carLicense: M31723 +departmentNumber: 1293 +employeeType: Employee +homePhone: +1 408 430-7640 +initials: I. W. +mobile: +1 408 259-3001 +pager: +1 408 300-7802 +roomNumber: 8786 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dulci Arsenault,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulci Arsenault +sn: Arsenault +description: This is Dulci Arsenault's description +facsimileTelephoneNumber: +1 213 214-5200 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 178-2841 +title: Master Peons Sales Rep +userPassword: Password1 +uid: ArsenauD +givenName: Dulci +mail: ArsenauD@23a5946865f94d569cc565c34574f456.bitwarden.com +carLicense: I0DYKK +departmentNumber: 1400 +employeeType: Employee +homePhone: +1 213 362-1470 +initials: D. A. +mobile: +1 213 981-8417 +pager: +1 213 995-1096 +roomNumber: 9954 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lurleen Mowbray,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lurleen Mowbray +sn: Mowbray +description: This is Lurleen Mowbray's description +facsimileTelephoneNumber: +1 206 299-4191 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 572-9036 +title: Chief Management Sales Rep +userPassword: Password1 +uid: MowbrayL +givenName: Lurleen +mail: MowbrayL@e13d4fdb33d04c2f849993b5c00d31fe.bitwarden.com +carLicense: NUHIOY +departmentNumber: 4857 +employeeType: Employee +homePhone: +1 206 630-7919 +initials: L. M. +mobile: +1 206 748-7077 +pager: +1 206 778-1103 +roomNumber: 9365 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kary Bickford,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kary Bickford +sn: Bickford +description: This is Kary Bickford's description +facsimileTelephoneNumber: +1 804 371-4368 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 890-9498 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: BickforK +givenName: Kary +mail: BickforK@e8962b3f077e4e4380b3b3b1aed7dd43.bitwarden.com +carLicense: 2BNVTQ +departmentNumber: 3113 +employeeType: Normal +homePhone: +1 804 933-5248 +initials: K. B. +mobile: +1 804 646-5687 +pager: +1 804 433-7404 +roomNumber: 8931 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tsugio Knorp,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tsugio Knorp +sn: Knorp +description: This is Tsugio Knorp's description +facsimileTelephoneNumber: +1 415 900-6751 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 576-6538 +title: Chief Product Development Madonna +userPassword: Password1 +uid: KnorpT +givenName: Tsugio +mail: KnorpT@3cbb67a8cfac46019eac8aa7343efe15.bitwarden.com +carLicense: 7K6QI7 +departmentNumber: 3743 +employeeType: Normal +homePhone: +1 415 418-3275 +initials: T. K. +mobile: +1 415 506-9334 +pager: +1 415 747-3812 +roomNumber: 9409 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morissa Asfazadour +sn: Asfazadour +description: This is Morissa Asfazadour's description +facsimileTelephoneNumber: +1 818 459-2088 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 797-5783 +title: Chief Product Development Assistant +userPassword: Password1 +uid: AsfazadM +givenName: Morissa +mail: AsfazadM@5091d98f25454366ae5b83b36d2073f1.bitwarden.com +carLicense: L6UQ4P +departmentNumber: 7110 +employeeType: Employee +homePhone: +1 818 964-2552 +initials: M. A. +mobile: +1 818 397-1019 +pager: +1 818 186-7910 +roomNumber: 8226 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sindee Haertel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sindee Haertel +sn: Haertel +description: This is Sindee Haertel's description +facsimileTelephoneNumber: +1 804 928-7596 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 160-2465 +title: Chief Human Resources Architect +userPassword: Password1 +uid: HaertelS +givenName: Sindee +mail: HaertelS@bd3dedcd93c84c0aa4af62b582b04e9d.bitwarden.com +carLicense: ICW7NB +departmentNumber: 9661 +employeeType: Employee +homePhone: +1 804 337-6117 +initials: S. H. +mobile: +1 804 101-8471 +pager: +1 804 414-9362 +roomNumber: 9894 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Reiko Lemay,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reiko Lemay +sn: Lemay +description: This is Reiko Lemay's description +facsimileTelephoneNumber: +1 213 327-2122 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 443-2951 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: LemayR +givenName: Reiko +mail: LemayR@b23fe60aaafa49a2908f5eec32556f6f.bitwarden.com +carLicense: 1XH73B +departmentNumber: 1893 +employeeType: Normal +homePhone: +1 213 199-6173 +initials: R. L. +mobile: +1 213 646-6886 +pager: +1 213 489-7365 +roomNumber: 8342 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Karoline Korey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karoline Korey +sn: Korey +description: This is Karoline Korey's description +facsimileTelephoneNumber: +1 818 305-9375 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 224-9331 +title: Supreme Peons Assistant +userPassword: Password1 +uid: KoreyK +givenName: Karoline +mail: KoreyK@7b3b886d681f4f3ca28fa81a09f7644a.bitwarden.com +carLicense: 62UBUG +departmentNumber: 4068 +employeeType: Employee +homePhone: +1 818 980-8347 +initials: K. K. +mobile: +1 818 315-3766 +pager: +1 818 835-3891 +roomNumber: 8100 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MarieJosee Uyar +sn: Uyar +description: This is MarieJosee Uyar's description +facsimileTelephoneNumber: +1 804 653-4183 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 230-5605 +title: Junior Administrative Madonna +userPassword: Password1 +uid: UyarM +givenName: MarieJosee +mail: UyarM@7eb3446796544055a8625bc9cff5db0c.bitwarden.com +carLicense: PI4YDK +departmentNumber: 6621 +employeeType: Normal +homePhone: +1 804 185-3118 +initials: M. U. +mobile: +1 804 390-4831 +pager: +1 804 310-4329 +roomNumber: 8365 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elwyn Siddiqui +sn: Siddiqui +description: This is Elwyn Siddiqui's description +facsimileTelephoneNumber: +1 415 484-8670 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 116-6635 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: SiddiquE +givenName: Elwyn +mail: SiddiquE@c90fcc6a2adf434b982935936ff5f7b6.bitwarden.com +carLicense: TOTMDN +departmentNumber: 8675 +employeeType: Contract +homePhone: +1 415 343-7608 +initials: E. S. +mobile: +1 415 628-5037 +pager: +1 415 648-8697 +roomNumber: 8190 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Zonnya Penn,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zonnya Penn +sn: Penn +description: This is Zonnya Penn's description +facsimileTelephoneNumber: +1 213 320-4574 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 526-2754 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: PennZ +givenName: Zonnya +mail: PennZ@3b2c73ac68c44ffd9b6fee68f40f7a34.bitwarden.com +carLicense: 2LQFW7 +departmentNumber: 4241 +employeeType: Employee +homePhone: +1 213 578-8846 +initials: Z. P. +mobile: +1 213 507-3429 +pager: +1 213 966-2081 +roomNumber: 9800 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Christoph Lorance,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christoph Lorance +sn: Lorance +description: This is Christoph Lorance's description +facsimileTelephoneNumber: +1 408 755-3294 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 696-6735 +title: Master Human Resources President +userPassword: Password1 +uid: LoranceC +givenName: Christoph +mail: LoranceC@68682c9b2559463bb9da0d98b541595f.bitwarden.com +carLicense: 3FMLLJ +departmentNumber: 6372 +employeeType: Contract +homePhone: +1 408 233-6370 +initials: C. L. +mobile: +1 408 139-5218 +pager: +1 408 872-1201 +roomNumber: 9801 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vanity Tropea,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanity Tropea +sn: Tropea +description: This is Vanity Tropea's description +facsimileTelephoneNumber: +1 415 425-6121 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 558-1316 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: TropeaV +givenName: Vanity +mail: TropeaV@461d63d1b6a041a69495f095e74332a3.bitwarden.com +carLicense: 08IHH2 +departmentNumber: 8272 +employeeType: Employee +homePhone: +1 415 995-1588 +initials: V. T. +mobile: +1 415 546-8387 +pager: +1 415 137-5033 +roomNumber: 8670 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cyb Centers,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyb Centers +sn: Centers +description: This is Cyb Centers's description +facsimileTelephoneNumber: +1 804 783-1134 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 344-1873 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: CentersC +givenName: Cyb +mail: CentersC@7a7e84cee07a4519aac362b25f2d7d3c.bitwarden.com +carLicense: 2NX7VF +departmentNumber: 7625 +employeeType: Normal +homePhone: +1 804 508-3479 +initials: C. C. +mobile: +1 804 385-4058 +pager: +1 804 244-5217 +roomNumber: 9763 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Muire Bakhach,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Muire Bakhach +sn: Bakhach +description: This is Muire Bakhach's description +facsimileTelephoneNumber: +1 206 458-1867 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 156-4957 +title: Associate Administrative Janitor +userPassword: Password1 +uid: BakhachM +givenName: Muire +mail: BakhachM@e3c084d5a2b44c959d053319884f8497.bitwarden.com +carLicense: VO6MJS +departmentNumber: 6868 +employeeType: Employee +homePhone: +1 206 960-5679 +initials: M. B. +mobile: +1 206 780-8783 +pager: +1 206 512-5048 +roomNumber: 8626 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Eliza Gros,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eliza Gros +sn: Gros +description: This is Eliza Gros's description +facsimileTelephoneNumber: +1 818 474-2895 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 818 104-1061 +title: Associate Peons Czar +userPassword: Password1 +uid: GrosE +givenName: Eliza +mail: GrosE@49c28823fa6d4e18b2bd79c94f037cd5.bitwarden.com +carLicense: IJOD07 +departmentNumber: 6849 +employeeType: Employee +homePhone: +1 818 323-5981 +initials: E. G. +mobile: +1 818 791-8634 +pager: +1 818 680-7000 +roomNumber: 9786 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranjit Surazski +sn: Surazski +description: This is Ranjit Surazski's description +facsimileTelephoneNumber: +1 408 399-6366 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 435-7088 +title: Junior Product Testing Developer +userPassword: Password1 +uid: SurazskR +givenName: Ranjit +mail: SurazskR@5c31d24a74fe48bd9d295b9aefc9bdd6.bitwarden.com +carLicense: KO34NC +departmentNumber: 2473 +employeeType: Normal +homePhone: +1 408 229-3279 +initials: R. S. +mobile: +1 408 409-1810 +pager: +1 408 288-1494 +roomNumber: 9826 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cthrine Tarsky +sn: Tarsky +description: This is Cthrine Tarsky's description +facsimileTelephoneNumber: +1 415 290-6426 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 870-1049 +title: Associate Janitorial Artist +userPassword: Password1 +uid: TarskyC +givenName: Cthrine +mail: TarskyC@7358f14ebc1d437faa31666574716056.bitwarden.com +carLicense: F6D4I4 +departmentNumber: 3601 +employeeType: Normal +homePhone: +1 415 605-6315 +initials: C. T. +mobile: +1 415 790-5392 +pager: +1 415 155-7158 +roomNumber: 9212 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lex SimardNormandin +sn: SimardNormandin +description: This is Lex SimardNormandin's description +facsimileTelephoneNumber: +1 206 555-8169 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 297-3293 +title: Master Janitorial Architect +userPassword: Password1 +uid: SimardNL +givenName: Lex +mail: SimardNL@e33d3ed1cbf54d6c887c9e826f3363fc.bitwarden.com +carLicense: 3UCEBK +departmentNumber: 1689 +employeeType: Contract +homePhone: +1 206 105-7235 +initials: L. S. +mobile: +1 206 747-9008 +pager: +1 206 333-6835 +roomNumber: 9653 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Brita Jodoin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brita Jodoin +sn: Jodoin +description: This is Brita Jodoin's description +facsimileTelephoneNumber: +1 213 118-9957 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 753-4174 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: JodoinB +givenName: Brita +mail: JodoinB@92f076e32839486d848c7a04ce85bb65.bitwarden.com +carLicense: JLO8PX +departmentNumber: 7637 +employeeType: Employee +homePhone: +1 213 559-9942 +initials: B. J. +mobile: +1 213 665-4286 +pager: +1 213 871-2716 +roomNumber: 9475 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Renu Paynter,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renu Paynter +sn: Paynter +description: This is Renu Paynter's description +facsimileTelephoneNumber: +1 408 161-1152 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 891-1027 +title: Junior Administrative Figurehead +userPassword: Password1 +uid: PaynterR +givenName: Renu +mail: PaynterR@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com +carLicense: UVCH7S +departmentNumber: 2978 +employeeType: Normal +homePhone: +1 408 691-7493 +initials: R. P. +mobile: +1 408 291-2672 +pager: +1 408 513-1577 +roomNumber: 8432 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Honey Karole,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Honey Karole +sn: Karole +description: This is Honey Karole's description +facsimileTelephoneNumber: +1 213 270-2188 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 776-3522 +title: Associate Payroll Warrior +userPassword: Password1 +uid: KaroleH +givenName: Honey +mail: KaroleH@bf39febc19c343cc9aaa907ea0d77554.bitwarden.com +carLicense: IWINQT +departmentNumber: 5243 +employeeType: Normal +homePhone: +1 213 933-8787 +initials: H. K. +mobile: +1 213 603-1492 +pager: +1 213 318-4861 +roomNumber: 8821 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=MaryJane Cusick,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryJane Cusick +sn: Cusick +description: This is MaryJane Cusick's description +facsimileTelephoneNumber: +1 415 667-3638 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 415 536-5491 +title: Master Peons Writer +userPassword: Password1 +uid: CusickM +givenName: MaryJane +mail: CusickM@e9f1b0a2647f4ec0a7559f497a7b6a0a.bitwarden.com +carLicense: Y3Y76O +departmentNumber: 6220 +employeeType: Normal +homePhone: +1 415 476-6442 +initials: M. C. +mobile: +1 415 549-5864 +pager: +1 415 207-1447 +roomNumber: 8747 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Romina McClain,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Romina McClain +sn: McClain +description: This is Romina McClain's description +facsimileTelephoneNumber: +1 415 729-7056 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 300-6750 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: McClainR +givenName: Romina +mail: McClainR@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com +carLicense: 95IJDE +departmentNumber: 3570 +employeeType: Contract +homePhone: +1 415 810-4927 +initials: R. M. +mobile: +1 415 954-2156 +pager: +1 415 709-5180 +roomNumber: 8146 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Robinett Zeisler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinett Zeisler +sn: Zeisler +description: This is Robinett Zeisler's description +facsimileTelephoneNumber: +1 804 679-4598 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 879-4805 +title: Master Management Artist +userPassword: Password1 +uid: ZeislerR +givenName: Robinett +mail: ZeislerR@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com +carLicense: 6MAOJU +departmentNumber: 2287 +employeeType: Employee +homePhone: +1 804 305-1512 +initials: R. Z. +mobile: +1 804 921-5435 +pager: +1 804 272-5318 +roomNumber: 8583 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ervin Guindi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ervin Guindi +sn: Guindi +description: This is Ervin Guindi's description +facsimileTelephoneNumber: +1 510 706-6113 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 207-2233 +title: Chief Management Artist +userPassword: Password1 +uid: GuindiE +givenName: Ervin +mail: GuindiE@cad2c84c3f094259b5729a471688ee83.bitwarden.com +carLicense: 2RV742 +departmentNumber: 3393 +employeeType: Normal +homePhone: +1 510 716-7401 +initials: E. G. +mobile: +1 510 316-4139 +pager: +1 510 871-9849 +roomNumber: 9500 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vernice Brandon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vernice Brandon +sn: Brandon +description: This is Vernice Brandon's description +facsimileTelephoneNumber: +1 408 669-6488 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 868-2897 +title: Associate Payroll Mascot +userPassword: Password1 +uid: BrandonV +givenName: Vernice +mail: BrandonV@b1ec0cbcb2944a58bb6bfcd6bb77a546.bitwarden.com +carLicense: 3TBWK3 +departmentNumber: 2127 +employeeType: Employee +homePhone: +1 408 718-2064 +initials: V. B. +mobile: +1 408 577-1887 +pager: +1 408 413-3694 +roomNumber: 8550 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wil Vasil,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wil Vasil +sn: Vasil +description: This is Wil Vasil's description +facsimileTelephoneNumber: +1 408 192-4958 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 767-8936 +title: Associate Peons Consultant +userPassword: Password1 +uid: VasilW +givenName: Wil +mail: VasilW@d8a92cba997b45b7b73921e0114fc8ca.bitwarden.com +carLicense: TTGN6E +departmentNumber: 6293 +employeeType: Employee +homePhone: +1 408 873-1278 +initials: W. V. +mobile: +1 408 362-3518 +pager: +1 408 974-7483 +roomNumber: 8361 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anader Atp,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anader Atp +sn: Atp +description: This is Anader Atp's description +facsimileTelephoneNumber: +1 818 555-7529 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 994-6552 +title: Junior Payroll Mascot +userPassword: Password1 +uid: AtpA +givenName: Anader +mail: AtpA@bd014ad451a846c4a4114333cdf5c066.bitwarden.com +carLicense: FJ7HYL +departmentNumber: 7875 +employeeType: Normal +homePhone: +1 818 134-5180 +initials: A. A. +mobile: +1 818 177-5540 +pager: +1 818 523-3422 +roomNumber: 8548 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cecil Martincich,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cecil Martincich +sn: Martincich +description: This is Cecil Martincich's description +facsimileTelephoneNumber: +1 213 758-1092 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 440-2140 +title: Associate Janitorial President +userPassword: Password1 +uid: MartincC +givenName: Cecil +mail: MartincC@8819cc07e7b545c38dcf521aa22a7f85.bitwarden.com +carLicense: 7JC3QC +departmentNumber: 3348 +employeeType: Normal +homePhone: +1 213 288-5879 +initials: C. M. +mobile: +1 213 594-5233 +pager: +1 213 968-7494 +roomNumber: 9297 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Madelin Hysler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelin Hysler +sn: Hysler +description: This is Madelin Hysler's description +facsimileTelephoneNumber: +1 804 648-7826 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 962-6459 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: HyslerM +givenName: Madelin +mail: HyslerM@e4cb1f57405243129844c08d2e77b681.bitwarden.com +carLicense: JOYOXV +departmentNumber: 4594 +employeeType: Contract +homePhone: +1 804 723-2955 +initials: M. H. +mobile: +1 804 513-6372 +pager: +1 804 835-9877 +roomNumber: 8963 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Colleen Hotlist,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colleen Hotlist +sn: Hotlist +description: This is Colleen Hotlist's description +facsimileTelephoneNumber: +1 408 540-7912 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 121-2210 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: HotlistC +givenName: Colleen +mail: HotlistC@2e11b315f15c492399248250b0acc021.bitwarden.com +carLicense: QNF01E +departmentNumber: 9308 +employeeType: Employee +homePhone: +1 408 933-4256 +initials: C. H. +mobile: +1 408 498-6738 +pager: +1 408 422-7723 +roomNumber: 8500 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Clarence Baragar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarence Baragar +sn: Baragar +description: This is Clarence Baragar's description +facsimileTelephoneNumber: +1 415 294-6425 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 434-3076 +title: Chief Peons Grunt +userPassword: Password1 +uid: BaragarC +givenName: Clarence +mail: BaragarC@32e3fa5da06a4fd3803417733702b064.bitwarden.com +carLicense: GJV7LV +departmentNumber: 1164 +employeeType: Employee +homePhone: +1 415 696-2987 +initials: C. B. +mobile: +1 415 248-4859 +pager: +1 415 187-2177 +roomNumber: 8741 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marvette Mony,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marvette Mony +sn: Mony +description: This is Marvette Mony's description +facsimileTelephoneNumber: +1 408 549-1039 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 538-2593 +title: Junior Product Testing Consultant +userPassword: Password1 +uid: MonyM +givenName: Marvette +mail: MonyM@027050a72ac34c81a8cdacfc4d562d92.bitwarden.com +carLicense: KFMGF3 +departmentNumber: 1859 +employeeType: Contract +homePhone: +1 408 331-6884 +initials: M. M. +mobile: +1 408 491-1594 +pager: +1 408 510-6092 +roomNumber: 8122 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurijn Wesolowski +sn: Wesolowski +description: This is Maurijn Wesolowski's description +facsimileTelephoneNumber: +1 415 642-8938 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 897-7856 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: WesolowM +givenName: Maurijn +mail: WesolowM@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com +carLicense: E0LJ3U +departmentNumber: 3444 +employeeType: Contract +homePhone: +1 415 758-8167 +initials: M. W. +mobile: +1 415 588-8476 +pager: +1 415 396-2449 +roomNumber: 9311 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Janette Stasyszyn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janette Stasyszyn +sn: Stasyszyn +description: This is Janette Stasyszyn's description +facsimileTelephoneNumber: +1 408 200-8845 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 903-8961 +title: Junior Management Evangelist +userPassword: Password1 +uid: StasyszJ +givenName: Janette +mail: StasyszJ@b772115a1aa1477ba5883638406f7f1f.bitwarden.com +carLicense: 9NPFQ6 +departmentNumber: 1118 +employeeType: Contract +homePhone: +1 408 894-1689 +initials: J. S. +mobile: +1 408 267-9801 +pager: +1 408 713-5780 +roomNumber: 8308 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Colette Iu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colette Iu +sn: Iu +description: This is Colette Iu's description +facsimileTelephoneNumber: +1 510 348-2559 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 116-5677 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: IuC +givenName: Colette +mail: IuC@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com +carLicense: TC1KEQ +departmentNumber: 7213 +employeeType: Employee +homePhone: +1 510 860-7483 +initials: C. I. +mobile: +1 510 704-8393 +pager: +1 510 329-8557 +roomNumber: 9889 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Morissa Weiss,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morissa Weiss +sn: Weiss +description: This is Morissa Weiss's description +facsimileTelephoneNumber: +1 510 745-6339 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 459-6134 +title: Associate Payroll Technician +userPassword: Password1 +uid: WeissM +givenName: Morissa +mail: WeissM@7bb8de925914422da9d61b06d1067ef2.bitwarden.com +carLicense: 4998XT +departmentNumber: 8804 +employeeType: Normal +homePhone: +1 510 344-1208 +initials: M. W. +mobile: +1 510 624-5038 +pager: +1 510 956-5152 +roomNumber: 9881 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herbert Nishimura +sn: Nishimura +description: This is Herbert Nishimura's description +facsimileTelephoneNumber: +1 206 599-6939 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 617-7249 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: NishimuH +givenName: Herbert +mail: NishimuH@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com +carLicense: CFXPN5 +departmentNumber: 4205 +employeeType: Contract +homePhone: +1 206 588-5279 +initials: H. N. +mobile: +1 206 752-8917 +pager: +1 206 262-9920 +roomNumber: 8067 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Olva Smid,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olva Smid +sn: Smid +description: This is Olva Smid's description +facsimileTelephoneNumber: +1 206 989-2828 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 625-1715 +title: Junior Human Resources Architect +userPassword: Password1 +uid: SmidO +givenName: Olva +mail: SmidO@a07853d0708843cfba89e8d47f4ba85a.bitwarden.com +carLicense: KCQE81 +departmentNumber: 1386 +employeeType: Normal +homePhone: +1 206 124-7874 +initials: O. S. +mobile: +1 206 850-7769 +pager: +1 206 113-7631 +roomNumber: 9283 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Beulah Kacor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beulah Kacor +sn: Kacor +description: This is Beulah Kacor's description +facsimileTelephoneNumber: +1 804 478-1665 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 251-6479 +title: Junior Management Technician +userPassword: Password1 +uid: KacorB +givenName: Beulah +mail: KacorB@0b7ec0c2364e4e4f8de90b2b167baf77.bitwarden.com +carLicense: O4XUSV +departmentNumber: 1088 +employeeType: Employee +homePhone: +1 804 814-2472 +initials: B. K. +mobile: +1 804 421-3765 +pager: +1 804 915-3798 +roomNumber: 9701 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Stefa Aksel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stefa Aksel +sn: Aksel +description: This is Stefa Aksel's description +facsimileTelephoneNumber: +1 804 393-9354 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 899-2233 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: AkselS +givenName: Stefa +mail: AkselS@f2b5edd91a174de185a3ef948629a325.bitwarden.com +carLicense: 5BQJ3B +departmentNumber: 3984 +employeeType: Normal +homePhone: +1 804 465-5549 +initials: S. A. +mobile: +1 804 983-6466 +pager: +1 804 287-1746 +roomNumber: 8130 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sadru Quintana,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadru Quintana +sn: Quintana +description: This is Sadru Quintana's description +facsimileTelephoneNumber: +1 408 535-8916 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 408 513-6464 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: QuintanS +givenName: Sadru +mail: QuintanS@39726a1b008d411d8a28b85a63102ac3.bitwarden.com +carLicense: 1NQW7E +departmentNumber: 2987 +employeeType: Contract +homePhone: +1 408 978-5999 +initials: S. Q. +mobile: +1 408 794-8447 +pager: +1 408 679-2592 +roomNumber: 8018 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Suzan Dourley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzan Dourley +sn: Dourley +description: This is Suzan Dourley's description +facsimileTelephoneNumber: +1 408 805-8261 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 309-2042 +title: Associate Peons Developer +userPassword: Password1 +uid: DourleyS +givenName: Suzan +mail: DourleyS@6d33f2897fd04c38bb8fe83ad0412af9.bitwarden.com +carLicense: RMEMUG +departmentNumber: 8097 +employeeType: Contract +homePhone: +1 408 778-8253 +initials: S. D. +mobile: +1 408 259-7257 +pager: +1 408 307-4582 +roomNumber: 9731 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wil Hirose,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wil Hirose +sn: Hirose +description: This is Wil Hirose's description +facsimileTelephoneNumber: +1 415 279-1085 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 921-6624 +title: Associate Management Engineer +userPassword: Password1 +uid: HiroseW +givenName: Wil +mail: HiroseW@6ff46dc4b1cd4999b4c5670fef62271f.bitwarden.com +carLicense: 7IQOPX +departmentNumber: 6648 +employeeType: Normal +homePhone: +1 415 771-1793 +initials: W. H. +mobile: +1 415 758-2084 +pager: +1 415 930-2338 +roomNumber: 9513 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Auria Remson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Auria Remson +sn: Remson +description: This is Auria Remson's description +facsimileTelephoneNumber: +1 804 843-5051 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 241-7294 +title: Supreme Management Figurehead +userPassword: Password1 +uid: RemsonA +givenName: Auria +mail: RemsonA@7092afcac0d743dda822cd8d0349a08e.bitwarden.com +carLicense: 54CC4A +departmentNumber: 4483 +employeeType: Contract +homePhone: +1 804 970-1850 +initials: A. R. +mobile: +1 804 149-4875 +pager: +1 804 186-1774 +roomNumber: 9349 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eddie KnesMaxwell +sn: KnesMaxwell +description: This is Eddie KnesMaxwell's description +facsimileTelephoneNumber: +1 206 910-2594 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 656-7994 +title: Master Payroll Pinhead +userPassword: Password1 +uid: KnesMaxE +givenName: Eddie +mail: KnesMaxE@d90dcd068de74a77904c15642c024df9.bitwarden.com +carLicense: F7L4LR +departmentNumber: 5660 +employeeType: Employee +homePhone: +1 206 882-1439 +initials: E. K. +mobile: +1 206 943-3008 +pager: +1 206 226-4046 +roomNumber: 8495 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pennie Akai,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pennie Akai +sn: Akai +description: This is Pennie Akai's description +facsimileTelephoneNumber: +1 408 666-7036 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 916-3914 +title: Master Peons Figurehead +userPassword: Password1 +uid: AkaiP +givenName: Pennie +mail: AkaiP@f00d58ce2e144a1d8084394bfeb550b6.bitwarden.com +carLicense: N70XNV +departmentNumber: 3463 +employeeType: Normal +homePhone: +1 408 105-8796 +initials: P. A. +mobile: +1 408 486-2147 +pager: +1 408 378-3242 +roomNumber: 8855 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Allyce Versteeg,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allyce Versteeg +sn: Versteeg +description: This is Allyce Versteeg's description +facsimileTelephoneNumber: +1 206 161-9083 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 107-2142 +title: Junior Peons Architect +userPassword: Password1 +uid: VersteeA +givenName: Allyce +mail: VersteeA@74f49865edf34a06971e54ca40c018cb.bitwarden.com +carLicense: C67AVA +departmentNumber: 1268 +employeeType: Contract +homePhone: +1 206 344-3074 +initials: A. V. +mobile: +1 206 151-3729 +pager: +1 206 843-6484 +roomNumber: 9427 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Norah Saunderson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norah Saunderson +sn: Saunderson +description: This is Norah Saunderson's description +facsimileTelephoneNumber: +1 213 321-8305 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 462-3425 +title: Associate Administrative Architect +userPassword: Password1 +uid: SaunderN +givenName: Norah +mail: SaunderN@326d8403ad204a388a69bbd4329fe5a2.bitwarden.com +carLicense: QR1W44 +departmentNumber: 8845 +employeeType: Normal +homePhone: +1 213 780-5005 +initials: N. S. +mobile: +1 213 727-5205 +pager: +1 213 918-7566 +roomNumber: 9146 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guinna Gravelle +sn: Gravelle +description: This is Guinna Gravelle's description +facsimileTelephoneNumber: +1 510 213-3974 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 594-9556 +title: Master Janitorial Punk +userPassword: Password1 +uid: GravellG +givenName: Guinna +mail: GravellG@9aea4844b36044d48b6ce9023f128642.bitwarden.com +carLicense: AWD1CH +departmentNumber: 8288 +employeeType: Normal +homePhone: +1 510 996-5741 +initials: G. G. +mobile: +1 510 456-7279 +pager: +1 510 340-4262 +roomNumber: 8107 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cinderella Chafin +sn: Chafin +description: This is Cinderella Chafin's description +facsimileTelephoneNumber: +1 206 235-2413 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 443-6375 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: ChafinC +givenName: Cinderella +mail: ChafinC@8b4e180a03f04f079b534af88c685eca.bitwarden.com +carLicense: W068YV +departmentNumber: 8314 +employeeType: Employee +homePhone: +1 206 820-4127 +initials: C. C. +mobile: +1 206 492-8064 +pager: +1 206 381-5701 +roomNumber: 9957 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chery Vieira,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chery Vieira +sn: Vieira +description: This is Chery Vieira's description +facsimileTelephoneNumber: +1 415 436-3013 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 933-9755 +title: Master Product Testing Dictator +userPassword: Password1 +uid: VieiraC +givenName: Chery +mail: VieiraC@5449de7063aa4ed2b6578dde4c294893.bitwarden.com +carLicense: DMB434 +departmentNumber: 2217 +employeeType: Employee +homePhone: +1 415 891-5972 +initials: C. V. +mobile: +1 415 645-6300 +pager: +1 415 701-7938 +roomNumber: 9387 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwennie Sandberg +sn: Sandberg +description: This is Gwennie Sandberg's description +facsimileTelephoneNumber: +1 818 840-5115 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 158-7133 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: SandberG +givenName: Gwennie +mail: SandberG@f36f45f8205e4b108d066ef8eb28e68b.bitwarden.com +carLicense: QQ51IT +departmentNumber: 5587 +employeeType: Contract +homePhone: +1 818 623-7094 +initials: G. S. +mobile: +1 818 108-7143 +pager: +1 818 924-2301 +roomNumber: 9766 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karita Hoekstra,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karita Hoekstra +sn: Hoekstra +description: This is Karita Hoekstra's description +facsimileTelephoneNumber: +1 818 347-7304 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 511-9925 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: HoekstrK +givenName: Karita +mail: HoekstrK@d4b58fe2bfde4032862e5386c0e20902.bitwarden.com +carLicense: JV717E +departmentNumber: 2397 +employeeType: Employee +homePhone: +1 818 901-5557 +initials: K. H. +mobile: +1 818 489-1905 +pager: +1 818 667-9835 +roomNumber: 8723 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Milt Pilipchuk,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milt Pilipchuk +sn: Pilipchuk +description: This is Milt Pilipchuk's description +facsimileTelephoneNumber: +1 415 426-8537 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 244-4671 +title: Supreme Peons Vice President +userPassword: Password1 +uid: PilipchM +givenName: Milt +mail: PilipchM@da1b5788f067415eb6baf89891f2b951.bitwarden.com +carLicense: WD0NIQ +departmentNumber: 8955 +employeeType: Normal +homePhone: +1 415 658-8234 +initials: M. P. +mobile: +1 415 584-3285 +pager: +1 415 274-5685 +roomNumber: 9435 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pal Hnidek,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pal Hnidek +sn: Hnidek +description: This is Pal Hnidek's description +facsimileTelephoneNumber: +1 510 320-5696 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 248-1733 +title: Chief Human Resources Dictator +userPassword: Password1 +uid: HnidekP +givenName: Pal +mail: HnidekP@e41d23ea26fe487bacc315514ad13746.bitwarden.com +carLicense: MXIBEG +departmentNumber: 5324 +employeeType: Employee +homePhone: +1 510 407-1718 +initials: P. H. +mobile: +1 510 257-5842 +pager: +1 510 389-7958 +roomNumber: 9442 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Teodora Weidinger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teodora Weidinger +sn: Weidinger +description: This is Teodora Weidinger's description +facsimileTelephoneNumber: +1 213 884-3607 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 840-5560 +title: Supreme Administrative Pinhead +userPassword: Password1 +uid: WeidingT +givenName: Teodora +mail: WeidingT@478214d5722f41a1a65048e4b5c2e3f7.bitwarden.com +carLicense: IDMCD0 +departmentNumber: 3968 +employeeType: Normal +homePhone: +1 213 559-9593 +initials: T. W. +mobile: +1 213 353-3133 +pager: +1 213 482-4994 +roomNumber: 9296 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Stephen Shearer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephen Shearer +sn: Shearer +description: This is Stephen Shearer's description +facsimileTelephoneNumber: +1 206 693-2383 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 901-8155 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: ShearerS +givenName: Stephen +mail: ShearerS@c92365298bdc408a8d5a96e4deae0869.bitwarden.com +carLicense: 67FKFX +departmentNumber: 4683 +employeeType: Employee +homePhone: +1 206 514-6457 +initials: S. S. +mobile: +1 206 105-6329 +pager: +1 206 196-3863 +roomNumber: 9439 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Celka Antle,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celka Antle +sn: Antle +description: This is Celka Antle's description +facsimileTelephoneNumber: +1 510 428-6777 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 510 743-5884 +title: Junior Peons Consultant +userPassword: Password1 +uid: AntleC +givenName: Celka +mail: AntleC@f34d92cdab5f41e598142a994af089cf.bitwarden.com +carLicense: DUKN74 +departmentNumber: 5137 +employeeType: Normal +homePhone: +1 510 935-8331 +initials: C. A. +mobile: +1 510 273-1213 +pager: +1 510 602-3308 +roomNumber: 9346 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsey Mortimer +sn: Mortimer +description: This is Chelsey Mortimer's description +facsimileTelephoneNumber: +1 206 772-7792 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 931-7571 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: MortimeC +givenName: Chelsey +mail: MortimeC@ec8dc3c6877747ab888f5b203f49583b.bitwarden.com +carLicense: TDA9QJ +departmentNumber: 8729 +employeeType: Normal +homePhone: +1 206 868-1577 +initials: C. M. +mobile: +1 206 306-5317 +pager: +1 206 637-5095 +roomNumber: 8555 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Binnie Newham,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binnie Newham +sn: Newham +description: This is Binnie Newham's description +facsimileTelephoneNumber: +1 804 448-7672 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 239-4224 +title: Chief Human Resources Grunt +userPassword: Password1 +uid: NewhamB +givenName: Binnie +mail: NewhamB@befab122c7044aa3b20b92009a4d0191.bitwarden.com +carLicense: 9385LJ +departmentNumber: 1475 +employeeType: Contract +homePhone: +1 804 152-9221 +initials: B. N. +mobile: +1 804 961-2445 +pager: +1 804 971-2540 +roomNumber: 9135 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ursula Duvarci,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ursula Duvarci +sn: Duvarci +description: This is Ursula Duvarci's description +facsimileTelephoneNumber: +1 415 493-4447 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 295-8415 +title: Associate Payroll Czar +userPassword: Password1 +uid: DuvarciU +givenName: Ursula +mail: DuvarciU@bc7c0ff60d4641f2b01474bcc8b086c8.bitwarden.com +carLicense: SRCQYK +departmentNumber: 1314 +employeeType: Normal +homePhone: +1 415 852-9560 +initials: U. D. +mobile: +1 415 919-6697 +pager: +1 415 296-6270 +roomNumber: 9484 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ted Clinton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ted Clinton +sn: Clinton +description: This is Ted Clinton's description +facsimileTelephoneNumber: +1 213 303-2991 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 192-1759 +title: Supreme Peons Consultant +userPassword: Password1 +uid: ClintonT +givenName: Ted +mail: ClintonT@445a60ac98804054899e1164059fd95e.bitwarden.com +carLicense: G54B0X +departmentNumber: 6385 +employeeType: Contract +homePhone: +1 213 903-4939 +initials: T. C. +mobile: +1 213 214-7630 +pager: +1 213 616-2137 +roomNumber: 8873 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prissie Kostyniuk +sn: Kostyniuk +description: This is Prissie Kostyniuk's description +facsimileTelephoneNumber: +1 818 604-1355 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 528-3039 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: KostyniP +givenName: Prissie +mail: KostyniP@2c11f6a276034996a4ddc6513434ce9b.bitwarden.com +carLicense: 83H5CQ +departmentNumber: 9105 +employeeType: Contract +homePhone: +1 818 684-9320 +initials: P. K. +mobile: +1 818 480-9539 +pager: +1 818 469-5143 +roomNumber: 9168 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ivie Petrie,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivie Petrie +sn: Petrie +description: This is Ivie Petrie's description +facsimileTelephoneNumber: +1 213 847-2978 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 572-8725 +title: Master Administrative Vice President +userPassword: Password1 +uid: PetrieI +givenName: Ivie +mail: PetrieI@2fdc38b3b56b4c61813cbb26a59352be.bitwarden.com +carLicense: KNMJ6S +departmentNumber: 1546 +employeeType: Normal +homePhone: +1 213 816-3127 +initials: I. P. +mobile: +1 213 892-5777 +pager: +1 213 420-6560 +roomNumber: 9442 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kuswara Heighton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kuswara Heighton +sn: Heighton +description: This is Kuswara Heighton's description +facsimileTelephoneNumber: +1 818 729-2066 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 895-2959 +title: Master Management Technician +userPassword: Password1 +uid: HeightoK +givenName: Kuswara +mail: HeightoK@6278758e52d64d2fa2b3ae646f7b1c8c.bitwarden.com +carLicense: MVJ9TJ +departmentNumber: 4682 +employeeType: Normal +homePhone: +1 818 163-3148 +initials: K. H. +mobile: +1 818 376-7230 +pager: +1 818 474-8823 +roomNumber: 9683 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Johanna Virani,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johanna Virani +sn: Virani +description: This is Johanna Virani's description +facsimileTelephoneNumber: +1 213 563-6307 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 224-3842 +title: Junior Product Development Stooge +userPassword: Password1 +uid: ViraniJ +givenName: Johanna +mail: ViraniJ@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com +carLicense: 2JAPD9 +departmentNumber: 9508 +employeeType: Normal +homePhone: +1 213 686-8385 +initials: J. V. +mobile: +1 213 364-4385 +pager: +1 213 716-2844 +roomNumber: 8235 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leandra Rubinov +sn: Rubinov +description: This is Leandra Rubinov's description +facsimileTelephoneNumber: +1 804 914-8115 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 510-8343 +title: Master Product Testing Stooge +userPassword: Password1 +uid: RubinovL +givenName: Leandra +mail: RubinovL@41daa3e0419742f58440d28fd291693d.bitwarden.com +carLicense: V6VSFX +departmentNumber: 5434 +employeeType: Contract +homePhone: +1 804 330-8855 +initials: L. R. +mobile: +1 804 725-4508 +pager: +1 804 533-5945 +roomNumber: 8527 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marit Simons,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marit Simons +sn: Simons +description: This is Marit Simons's description +facsimileTelephoneNumber: +1 510 440-8406 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 340-3543 +title: Chief Human Resources Manager +userPassword: Password1 +uid: SimonsM +givenName: Marit +mail: SimonsM@dc81d1ec5dc44ff2aadb325ca2efedb1.bitwarden.com +carLicense: 9WP4RH +departmentNumber: 9610 +employeeType: Employee +homePhone: +1 510 706-4769 +initials: M. S. +mobile: +1 510 682-6184 +pager: +1 510 131-5050 +roomNumber: 9820 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joel Hinton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joel Hinton +sn: Hinton +description: This is Joel Hinton's description +facsimileTelephoneNumber: +1 818 914-8611 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 808-4705 +title: Master Product Testing Artist +userPassword: Password1 +uid: HintonJ +givenName: Joel +mail: HintonJ@0d31b4804a864bcaadb4a2443708a6a5.bitwarden.com +carLicense: B4OPAJ +departmentNumber: 7086 +employeeType: Contract +homePhone: +1 818 825-8544 +initials: J. H. +mobile: +1 818 826-6178 +pager: +1 818 872-4611 +roomNumber: 8057 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mentor Kimler,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mentor Kimler +sn: Kimler +description: This is Mentor Kimler's description +facsimileTelephoneNumber: +1 415 469-5595 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 745-3966 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: KimlerM +givenName: Mentor +mail: KimlerM@b5e3188bf80e462eac4ebbb9d1096eff.bitwarden.com +carLicense: 9FKR76 +departmentNumber: 6956 +employeeType: Normal +homePhone: +1 415 753-6011 +initials: M. K. +mobile: +1 415 591-4038 +pager: +1 415 856-3975 +roomNumber: 8581 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Thuy Kolos,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thuy Kolos +sn: Kolos +description: This is Thuy Kolos's description +facsimileTelephoneNumber: +1 206 998-6042 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 764-7223 +title: Master Peons Consultant +userPassword: Password1 +uid: KolosT +givenName: Thuy +mail: KolosT@af7219707df54fa3a07b2c4c1c18c6db.bitwarden.com +carLicense: GT1EBC +departmentNumber: 6636 +employeeType: Employee +homePhone: +1 206 906-7542 +initials: T. K. +mobile: +1 206 640-8963 +pager: +1 206 772-9895 +roomNumber: 9053 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sergiu Chai,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sergiu Chai +sn: Chai +description: This is Sergiu Chai's description +facsimileTelephoneNumber: +1 206 887-6803 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 422-1231 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: ChaiS +givenName: Sergiu +mail: ChaiS@5bf44110ed3743de8af47997ebc8b9fe.bitwarden.com +carLicense: IRPBLD +departmentNumber: 5999 +employeeType: Contract +homePhone: +1 206 214-2819 +initials: S. C. +mobile: +1 206 459-6139 +pager: +1 206 993-6058 +roomNumber: 9168 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sande Desjarlais,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sande Desjarlais +sn: Desjarlais +description: This is Sande Desjarlais's description +facsimileTelephoneNumber: +1 510 291-4423 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 846-4397 +title: Master Product Development Architect +userPassword: Password1 +uid: DesjarlS +givenName: Sande +mail: DesjarlS@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com +carLicense: YKGKHL +departmentNumber: 8918 +employeeType: Contract +homePhone: +1 510 708-6646 +initials: S. D. +mobile: +1 510 981-6779 +pager: +1 510 851-7498 +roomNumber: 9796 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Asia Falkenstrom +sn: Falkenstrom +description: This is Asia Falkenstrom's description +facsimileTelephoneNumber: +1 818 346-8942 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 910-4007 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: FalkensA +givenName: Asia +mail: FalkensA@a59346ad14cf48868393d6c59fa9cec4.bitwarden.com +carLicense: DX09KX +departmentNumber: 9902 +employeeType: Employee +homePhone: +1 818 732-9890 +initials: A. F. +mobile: +1 818 360-4910 +pager: +1 818 924-1768 +roomNumber: 8822 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Allis Sherard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allis Sherard +sn: Sherard +description: This is Allis Sherard's description +facsimileTelephoneNumber: +1 206 667-4829 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 122-2342 +title: Chief Human Resources Technician +userPassword: Password1 +uid: SherardA +givenName: Allis +mail: SherardA@0573bd112aca464284b0d9eac2753606.bitwarden.com +carLicense: BWW3VJ +departmentNumber: 1790 +employeeType: Contract +homePhone: +1 206 533-1949 +initials: A. S. +mobile: +1 206 643-1174 +pager: +1 206 205-8628 +roomNumber: 9935 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Miriya Planthara,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miriya Planthara +sn: Planthara +description: This is Miriya Planthara's description +facsimileTelephoneNumber: +1 804 355-8663 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 456-1417 +title: Master Management Janitor +userPassword: Password1 +uid: PlanthaM +givenName: Miriya +mail: PlanthaM@ced3a1835a4b43df86059cd2aa6426c7.bitwarden.com +carLicense: OFQRIT +departmentNumber: 9345 +employeeType: Employee +homePhone: +1 804 766-1573 +initials: M. P. +mobile: +1 804 436-2945 +pager: +1 804 896-6380 +roomNumber: 9383 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maribel Nevrela +sn: Nevrela +description: This is Maribel Nevrela's description +facsimileTelephoneNumber: +1 213 891-6657 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 690-5179 +title: Junior Human Resources Sales Rep +userPassword: Password1 +uid: NevrelaM +givenName: Maribel +mail: NevrelaM@69cfa5de8d574e7e93ee6f134eee78e1.bitwarden.com +carLicense: FEPRO3 +departmentNumber: 4163 +employeeType: Employee +homePhone: +1 213 605-1067 +initials: M. N. +mobile: +1 213 279-1737 +pager: +1 213 125-3453 +roomNumber: 9398 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joellen Tornqvist +sn: Tornqvist +description: This is Joellen Tornqvist's description +facsimileTelephoneNumber: +1 415 930-1966 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 248-9383 +title: Junior Product Development Visionary +userPassword: Password1 +uid: TornqviJ +givenName: Joellen +mail: TornqviJ@be2317e07ddc4fd1bc1dad5673b21da8.bitwarden.com +carLicense: 183T0U +departmentNumber: 8180 +employeeType: Normal +homePhone: +1 415 106-3489 +initials: J. T. +mobile: +1 415 342-7437 +pager: +1 415 376-3348 +roomNumber: 9967 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=HackHoo Jatar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HackHoo Jatar +sn: Jatar +description: This is HackHoo Jatar's description +facsimileTelephoneNumber: +1 415 682-9502 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 363-5935 +title: Associate Management Fellow +userPassword: Password1 +uid: JatarH +givenName: HackHoo +mail: JatarH@c356619b4769401bb929afda889d39f9.bitwarden.com +carLicense: B7NRHH +departmentNumber: 8424 +employeeType: Normal +homePhone: +1 415 431-2365 +initials: H. J. +mobile: +1 415 691-5531 +pager: +1 415 403-1392 +roomNumber: 8880 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vonni Mansi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vonni Mansi +sn: Mansi +description: This is Vonni Mansi's description +facsimileTelephoneNumber: +1 206 428-5078 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 206 325-8009 +title: Associate Payroll Fellow +userPassword: Password1 +uid: MansiV +givenName: Vonni +mail: MansiV@7f18e62561544141b6ccfe39f532339f.bitwarden.com +carLicense: X6U14R +departmentNumber: 2053 +employeeType: Employee +homePhone: +1 206 523-4297 +initials: V. M. +mobile: +1 206 682-2595 +pager: +1 206 597-1888 +roomNumber: 9030 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harvey Moshtagh +sn: Moshtagh +description: This is Harvey Moshtagh's description +facsimileTelephoneNumber: +1 804 552-2051 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 286-7285 +title: Supreme Administrative Admin +userPassword: Password1 +uid: MoshtagH +givenName: Harvey +mail: MoshtagH@04a22a65e7964a5bae139e498c20efac.bitwarden.com +carLicense: 01GWKH +departmentNumber: 4491 +employeeType: Employee +homePhone: +1 804 360-4890 +initials: H. M. +mobile: +1 804 208-6481 +pager: +1 804 766-8120 +roomNumber: 8278 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mair Tsui,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mair Tsui +sn: Tsui +description: This is Mair Tsui's description +facsimileTelephoneNumber: +1 415 601-4202 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 467-3160 +title: Junior Payroll Janitor +userPassword: Password1 +uid: TsuiM +givenName: Mair +mail: TsuiM@c520f3ebde724b50bd2a6770256ea1b8.bitwarden.com +carLicense: IA4GTS +departmentNumber: 1343 +employeeType: Normal +homePhone: +1 415 716-5560 +initials: M. T. +mobile: +1 415 868-1726 +pager: +1 415 232-7074 +roomNumber: 9605 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Darya Marttinen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darya Marttinen +sn: Marttinen +description: This is Darya Marttinen's description +facsimileTelephoneNumber: +1 408 577-2755 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 315-7486 +title: Supreme Payroll Writer +userPassword: Password1 +uid: MarttinD +givenName: Darya +mail: MarttinD@fa0cc2286f88469eb9aea12a2ef5aea3.bitwarden.com +carLicense: BM0XG7 +departmentNumber: 3078 +employeeType: Employee +homePhone: +1 408 494-9498 +initials: D. M. +mobile: +1 408 459-3191 +pager: +1 408 383-7167 +roomNumber: 8594 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kees Arsena,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kees Arsena +sn: Arsena +description: This is Kees Arsena's description +facsimileTelephoneNumber: +1 408 447-8080 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 910-8708 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: ArsenaK +givenName: Kees +mail: ArsenaK@b3ae6dae564847d7ba4d0a12a6361531.bitwarden.com +carLicense: YMPF3P +departmentNumber: 7750 +employeeType: Employee +homePhone: +1 408 423-3062 +initials: K. A. +mobile: +1 408 542-2058 +pager: +1 408 356-3732 +roomNumber: 8185 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Darleen Flowers,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darleen Flowers +sn: Flowers +description: This is Darleen Flowers's description +facsimileTelephoneNumber: +1 415 139-2235 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 324-8263 +title: Supreme Product Development Czar +userPassword: Password1 +uid: FlowersD +givenName: Darleen +mail: FlowersD@17dcf13b7e684c4a9ba2dcc27a684a76.bitwarden.com +carLicense: 09DD5K +departmentNumber: 5441 +employeeType: Normal +homePhone: +1 415 201-1217 +initials: D. F. +mobile: +1 415 784-4773 +pager: +1 415 593-8911 +roomNumber: 8494 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Noyes Huenemann,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noyes Huenemann +sn: Huenemann +description: This is Noyes Huenemann's description +facsimileTelephoneNumber: +1 804 945-6934 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 191-5082 +title: Chief Management Architect +userPassword: Password1 +uid: HuenemaN +givenName: Noyes +mail: HuenemaN@7d4c2ab04b8a46e18a0c092fdac02490.bitwarden.com +carLicense: L90SBW +departmentNumber: 2047 +employeeType: Normal +homePhone: +1 804 792-4114 +initials: N. H. +mobile: +1 804 122-5785 +pager: +1 804 837-2152 +roomNumber: 8262 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Buster Myre,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Buster Myre +sn: Myre +description: This is Buster Myre's description +facsimileTelephoneNumber: +1 415 655-4974 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 679-9707 +title: Chief Product Development Technician +userPassword: Password1 +uid: MyreB +givenName: Buster +mail: MyreB@bc47d55f014c4c2d8cd9b2f73d7704a8.bitwarden.com +carLicense: TXXNNS +departmentNumber: 3204 +employeeType: Normal +homePhone: +1 415 815-8404 +initials: B. M. +mobile: +1 415 814-7430 +pager: +1 415 255-7980 +roomNumber: 9437 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tristano Angus,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tristano Angus +sn: Angus +description: This is Tristano Angus's description +facsimileTelephoneNumber: +1 213 859-7251 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 624-7463 +title: Junior Human Resources Writer +userPassword: Password1 +uid: AngusT +givenName: Tristano +mail: AngusT@19be86f3b1d34c7ab6993505e8f0ad33.bitwarden.com +carLicense: ERRCID +departmentNumber: 7117 +employeeType: Normal +homePhone: +1 213 341-6556 +initials: T. A. +mobile: +1 213 875-5992 +pager: +1 213 699-9772 +roomNumber: 9827 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anita Roesler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anita Roesler +sn: Roesler +description: This is Anita Roesler's description +facsimileTelephoneNumber: +1 408 212-6408 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 389-1500 +title: Junior Product Testing Director +userPassword: Password1 +uid: RoeslerA +givenName: Anita +mail: RoeslerA@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com +carLicense: 004P68 +departmentNumber: 4217 +employeeType: Normal +homePhone: +1 408 173-7448 +initials: A. R. +mobile: +1 408 813-6780 +pager: +1 408 407-3974 +roomNumber: 8648 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Monling Goin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monling Goin +sn: Goin +description: This is Monling Goin's description +facsimileTelephoneNumber: +1 415 896-1604 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 516-8966 +title: Junior Product Development Admin +userPassword: Password1 +uid: GoinM +givenName: Monling +mail: GoinM@34b9dab44b4c429bac836e963718507e.bitwarden.com +carLicense: M06PCM +departmentNumber: 6549 +employeeType: Contract +homePhone: +1 415 613-5967 +initials: M. G. +mobile: +1 415 855-1124 +pager: +1 415 147-6862 +roomNumber: 8094 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dannye Munsey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dannye Munsey +sn: Munsey +description: This is Dannye Munsey's description +facsimileTelephoneNumber: +1 804 205-5972 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 827-5348 +title: Associate Peons Engineer +userPassword: Password1 +uid: MunseyD +givenName: Dannye +mail: MunseyD@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com +carLicense: 16XY80 +departmentNumber: 4085 +employeeType: Contract +homePhone: +1 804 940-4901 +initials: D. M. +mobile: +1 804 824-6540 +pager: +1 804 390-4489 +roomNumber: 9879 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Agnella Pinalez,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnella Pinalez +sn: Pinalez +description: This is Agnella Pinalez's description +facsimileTelephoneNumber: +1 510 539-3605 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 510 484-3957 +title: Chief Peons Vice President +userPassword: Password1 +uid: PinalezA +givenName: Agnella +mail: PinalezA@fa7f3d0bae554869a9cb0e95fe35707f.bitwarden.com +carLicense: ERSKTA +departmentNumber: 3611 +employeeType: Normal +homePhone: +1 510 411-4594 +initials: A. P. +mobile: +1 510 409-4928 +pager: +1 510 590-7107 +roomNumber: 9061 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shashank Romberg,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shashank Romberg +sn: Romberg +description: This is Shashank Romberg's description +facsimileTelephoneNumber: +1 206 191-7765 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 357-7470 +title: Associate Product Testing Admin +userPassword: Password1 +uid: RombergS +givenName: Shashank +mail: RombergS@faec862307e2490ab9310236bae87643.bitwarden.com +carLicense: YU5FP1 +departmentNumber: 7138 +employeeType: Contract +homePhone: +1 206 995-8738 +initials: S. R. +mobile: +1 206 773-5445 +pager: +1 206 646-6261 +roomNumber: 8824 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zsazsa Yoe +sn: Yoe +description: This is Zsazsa Yoe's description +facsimileTelephoneNumber: +1 415 878-4391 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 911-8953 +title: Associate Product Development Fellow +userPassword: Password1 +uid: YoeZ +givenName: Zsazsa +mail: YoeZ@6ef4ed9ae6c24731b126e620358a2de4.bitwarden.com +carLicense: OA8AQB +departmentNumber: 2359 +employeeType: Employee +homePhone: +1 415 954-1142 +initials: Z. Y. +mobile: +1 415 832-9062 +pager: +1 415 404-4896 +roomNumber: 9241 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Narinder Vilhan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Narinder Vilhan +sn: Vilhan +description: This is Narinder Vilhan's description +facsimileTelephoneNumber: +1 408 435-4453 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 642-2405 +title: Supreme Product Development Madonna +userPassword: Password1 +uid: VilhanN +givenName: Narinder +mail: VilhanN@f41772a4d1c540f3ab2ca562625ea847.bitwarden.com +carLicense: ADBOK7 +departmentNumber: 7675 +employeeType: Employee +homePhone: +1 408 654-4563 +initials: N. V. +mobile: +1 408 932-9179 +pager: +1 408 381-9663 +roomNumber: 9781 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ulrika Simanskis +sn: Simanskis +description: This is Ulrika Simanskis's description +facsimileTelephoneNumber: +1 415 426-4142 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 114-6766 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: SimanskU +givenName: Ulrika +mail: SimanskU@ec9ffb19a2144630ae8bece4e80922f0.bitwarden.com +carLicense: 4GY3W1 +departmentNumber: 3563 +employeeType: Contract +homePhone: +1 415 159-7903 +initials: U. S. +mobile: +1 415 329-9294 +pager: +1 415 358-2808 +roomNumber: 9072 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jeremy Schuster,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeremy Schuster +sn: Schuster +description: This is Jeremy Schuster's description +facsimileTelephoneNumber: +1 415 543-1069 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 667-2155 +title: Associate Management Czar +userPassword: Password1 +uid: SchusteJ +givenName: Jeremy +mail: SchusteJ@60e903b99c4f452b858f19d9843dcc15.bitwarden.com +carLicense: RI5W4P +departmentNumber: 2070 +employeeType: Normal +homePhone: +1 415 804-6481 +initials: J. S. +mobile: +1 415 790-9082 +pager: +1 415 330-4067 +roomNumber: 8171 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Saraann Blakkolb,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saraann Blakkolb +sn: Blakkolb +description: This is Saraann Blakkolb's description +facsimileTelephoneNumber: +1 818 807-2254 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 941-8825 +title: Supreme Management Warrior +userPassword: Password1 +uid: BlakkolS +givenName: Saraann +mail: BlakkolS@0f3924780f2742839088cadeea1581cf.bitwarden.com +carLicense: 37XE25 +departmentNumber: 3737 +employeeType: Contract +homePhone: +1 818 982-3361 +initials: S. B. +mobile: +1 818 780-8865 +pager: +1 818 372-7937 +roomNumber: 8523 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Aida Brunelle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aida Brunelle +sn: Brunelle +description: This is Aida Brunelle's description +facsimileTelephoneNumber: +1 804 891-8687 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 367-9024 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: BrunellA +givenName: Aida +mail: BrunellA@456334f0b48d4ad68b2832c807dab058.bitwarden.com +carLicense: X7JWYE +departmentNumber: 2395 +employeeType: Normal +homePhone: +1 804 517-6852 +initials: A. B. +mobile: +1 804 559-1268 +pager: +1 804 392-6109 +roomNumber: 9846 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Merrielle Hine,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrielle Hine +sn: Hine +description: This is Merrielle Hine's description +facsimileTelephoneNumber: +1 415 225-7140 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 468-4512 +title: Master Product Testing Technician +userPassword: Password1 +uid: HineM +givenName: Merrielle +mail: HineM@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com +carLicense: R10UF2 +departmentNumber: 6737 +employeeType: Contract +homePhone: +1 415 988-3813 +initials: M. H. +mobile: +1 415 200-5569 +pager: +1 415 211-2054 +roomNumber: 9142 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeanie Clarkson +sn: Clarkson +description: This is Jeanie Clarkson's description +facsimileTelephoneNumber: +1 213 908-4760 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 304-9766 +title: Associate Payroll Vice President +userPassword: Password1 +uid: ClarksoJ +givenName: Jeanie +mail: ClarksoJ@d89a6add90a54661825d72b17fd5b437.bitwarden.com +carLicense: 819CWP +departmentNumber: 3872 +employeeType: Normal +homePhone: +1 213 993-8390 +initials: J. C. +mobile: +1 213 636-6554 +pager: +1 213 898-2096 +roomNumber: 9937 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristy Rhattigan +sn: Rhattigan +description: This is Kristy Rhattigan's description +facsimileTelephoneNumber: +1 818 713-3662 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 656-9204 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: RhattigK +givenName: Kristy +mail: RhattigK@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com +carLicense: BOK62E +departmentNumber: 5090 +employeeType: Contract +homePhone: +1 818 101-5492 +initials: K. R. +mobile: +1 818 201-3446 +pager: +1 818 378-5289 +roomNumber: 9750 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ali GarciaLamarca +sn: GarciaLamarca +description: This is Ali GarciaLamarca's description +facsimileTelephoneNumber: +1 804 275-1175 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 600-8943 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: GarciaLA +givenName: Ali +mail: GarciaLA@1ee43d5295b54a68904e38d5e6ea6d47.bitwarden.com +carLicense: 5X5HHX +departmentNumber: 2051 +employeeType: Employee +homePhone: +1 804 850-3725 +initials: A. G. +mobile: +1 804 478-7895 +pager: +1 804 713-2962 +roomNumber: 9937 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnneMarie Atkinson +sn: Atkinson +description: This is AnneMarie Atkinson's description +facsimileTelephoneNumber: +1 818 895-9974 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 253-3073 +title: Master Peons Admin +userPassword: Password1 +uid: AtkinsoA +givenName: AnneMarie +mail: AtkinsoA@17061e8235904e0b93980e91f7a69e37.bitwarden.com +carLicense: WU2KJR +departmentNumber: 7325 +employeeType: Normal +homePhone: +1 818 745-8443 +initials: A. A. +mobile: +1 818 962-6991 +pager: +1 818 871-9302 +roomNumber: 9515 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beckie Cowell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beckie Cowell +sn: Cowell +description: This is Beckie Cowell's description +facsimileTelephoneNumber: +1 206 148-3739 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 865-1545 +title: Chief Payroll Consultant +userPassword: Password1 +uid: CowellB +givenName: Beckie +mail: CowellB@43d56f86246844bbb069d46885224475.bitwarden.com +carLicense: ARUB0C +departmentNumber: 2287 +employeeType: Contract +homePhone: +1 206 275-6289 +initials: B. C. +mobile: +1 206 108-9606 +pager: +1 206 108-2853 +roomNumber: 9367 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maso Mathewson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maso Mathewson +sn: Mathewson +description: This is Maso Mathewson's description +facsimileTelephoneNumber: +1 415 730-1739 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 415 622-6630 +title: Master Administrative Technician +userPassword: Password1 +uid: MathewsM +givenName: Maso +mail: MathewsM@4b85844a8d8b4d8c8c64c4c289791834.bitwarden.com +carLicense: WBVVHR +departmentNumber: 7173 +employeeType: Normal +homePhone: +1 415 400-4942 +initials: M. M. +mobile: +1 415 767-3331 +pager: +1 415 264-3719 +roomNumber: 8262 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Arnis Fredette,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arnis Fredette +sn: Fredette +description: This is Arnis Fredette's description +facsimileTelephoneNumber: +1 206 978-2614 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 753-1080 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: FredettA +givenName: Arnis +mail: FredettA@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com +carLicense: S5LAB0 +departmentNumber: 1600 +employeeType: Contract +homePhone: +1 206 285-4388 +initials: A. F. +mobile: +1 206 726-2044 +pager: +1 206 333-4685 +roomNumber: 9850 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maddie Bowick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maddie Bowick +sn: Bowick +description: This is Maddie Bowick's description +facsimileTelephoneNumber: +1 206 349-2102 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 948-9805 +title: Junior Product Testing Manager +userPassword: Password1 +uid: BowickM +givenName: Maddie +mail: BowickM@d534d4e018bc4513999f8eae2be01976.bitwarden.com +carLicense: 20HT96 +departmentNumber: 1070 +employeeType: Contract +homePhone: +1 206 866-3133 +initials: M. B. +mobile: +1 206 355-6628 +pager: +1 206 228-8211 +roomNumber: 8719 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jolene Datema,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolene Datema +sn: Datema +description: This is Jolene Datema's description +facsimileTelephoneNumber: +1 818 319-3034 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 818 447-8652 +title: Associate Product Testing Manager +userPassword: Password1 +uid: DatemaJ +givenName: Jolene +mail: DatemaJ@4f99a2d4c8e343d39b81a3ab47785f76.bitwarden.com +carLicense: G2N5YA +departmentNumber: 3017 +employeeType: Contract +homePhone: +1 818 969-6612 +initials: J. D. +mobile: +1 818 186-4017 +pager: +1 818 962-8065 +roomNumber: 9212 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kuswara Musick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kuswara Musick +sn: Musick +description: This is Kuswara Musick's description +facsimileTelephoneNumber: +1 408 742-9945 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 685-3004 +title: Junior Management Artist +userPassword: Password1 +uid: MusickK +givenName: Kuswara +mail: MusickK@975f42c981f64264a2c4cf3ee5b53c68.bitwarden.com +carLicense: K3PP91 +departmentNumber: 7370 +employeeType: Employee +homePhone: +1 408 724-9772 +initials: K. M. +mobile: +1 408 276-2509 +pager: +1 408 799-9970 +roomNumber: 9157 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Belia Mustafa,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belia Mustafa +sn: Mustafa +description: This is Belia Mustafa's description +facsimileTelephoneNumber: +1 510 378-8609 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 519-9053 +title: Supreme Product Development Fellow +userPassword: Password1 +uid: MustafaB +givenName: Belia +mail: MustafaB@1f70c3bade4e4575a0687e469e22b825.bitwarden.com +carLicense: Q3N5NG +departmentNumber: 6749 +employeeType: Employee +homePhone: +1 510 680-3307 +initials: B. M. +mobile: +1 510 526-3971 +pager: +1 510 283-5445 +roomNumber: 9515 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kelcie Rowe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelcie Rowe +sn: Rowe +description: This is Kelcie Rowe's description +facsimileTelephoneNumber: +1 818 681-2546 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 818 845-2808 +title: Master Payroll Consultant +userPassword: Password1 +uid: RoweK +givenName: Kelcie +mail: RoweK@d6c388cda1d54d59a23516cc122a5ef1.bitwarden.com +carLicense: QUBEKL +departmentNumber: 5051 +employeeType: Normal +homePhone: +1 818 750-8513 +initials: K. R. +mobile: +1 818 579-2408 +pager: +1 818 354-1148 +roomNumber: 8662 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailee Gingrich +sn: Gingrich +description: This is Ailee Gingrich's description +facsimileTelephoneNumber: +1 408 165-3694 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 967-1061 +title: Associate Product Testing Writer +userPassword: Password1 +uid: GingricA +givenName: Ailee +mail: GingricA@9b2c23de49384f84ae5a2204e6781b81.bitwarden.com +carLicense: DFAHM2 +departmentNumber: 1291 +employeeType: Employee +homePhone: +1 408 948-5939 +initials: A. G. +mobile: +1 408 456-1385 +pager: +1 408 664-1763 +roomNumber: 8397 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Oguz Crafton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oguz Crafton +sn: Crafton +description: This is Oguz Crafton's description +facsimileTelephoneNumber: +1 206 504-9812 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 304-5761 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: CraftonO +givenName: Oguz +mail: CraftonO@e87ee38d93414ee3a0d592bc127097ad.bitwarden.com +carLicense: M1RQLS +departmentNumber: 9153 +employeeType: Contract +homePhone: +1 206 143-8687 +initials: O. C. +mobile: +1 206 124-7018 +pager: +1 206 514-9458 +roomNumber: 9921 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heidie Lenzi +sn: Lenzi +description: This is Heidie Lenzi's description +facsimileTelephoneNumber: +1 206 928-9728 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 587-7804 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: LenziH +givenName: Heidie +mail: LenziH@c7c0612e18954668878d3bc1afa0d5de.bitwarden.com +carLicense: EVVL3S +departmentNumber: 5204 +employeeType: Contract +homePhone: +1 206 564-4166 +initials: H. L. +mobile: +1 206 566-1585 +pager: +1 206 981-6985 +roomNumber: 8976 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilmer Kowaleski +sn: Kowaleski +description: This is Wilmer Kowaleski's description +facsimileTelephoneNumber: +1 206 485-7309 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 206 418-8033 +title: Supreme Product Development Fellow +userPassword: Password1 +uid: KowalesW +givenName: Wilmer +mail: KowalesW@7f9caaee8d0a4000bdc6e432d2ef6c1b.bitwarden.com +carLicense: XTA341 +departmentNumber: 5503 +employeeType: Employee +homePhone: +1 206 741-2550 +initials: W. K. +mobile: +1 206 526-4267 +pager: +1 206 149-2601 +roomNumber: 9549 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anallese Luszczek,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anallese Luszczek +sn: Luszczek +description: This is Anallese Luszczek's description +facsimileTelephoneNumber: +1 213 275-5861 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 213 586-8862 +title: Chief Product Development Dictator +userPassword: Password1 +uid: LuszczeA +givenName: Anallese +mail: LuszczeA@2a7e39a5b875406f9085c17bedc931dd.bitwarden.com +carLicense: J7XH3H +departmentNumber: 4926 +employeeType: Normal +homePhone: +1 213 425-4537 +initials: A. L. +mobile: +1 213 338-3403 +pager: +1 213 110-5437 +roomNumber: 8466 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Raeann Fu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raeann Fu +sn: Fu +description: This is Raeann Fu's description +facsimileTelephoneNumber: +1 213 932-7350 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 590-5460 +title: Junior Janitorial Developer +userPassword: Password1 +uid: FuR +givenName: Raeann +mail: FuR@a7e7b13342d14512ab65c0fc1d87a2ae.bitwarden.com +carLicense: 84ACUE +departmentNumber: 3854 +employeeType: Normal +homePhone: +1 213 214-2139 +initials: R. F. +mobile: +1 213 555-7190 +pager: +1 213 732-1019 +roomNumber: 8438 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dyanna Hartling,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyanna Hartling +sn: Hartling +description: This is Dyanna Hartling's description +facsimileTelephoneNumber: +1 510 275-5703 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 318-9423 +title: Supreme Payroll Czar +userPassword: Password1 +uid: HartlinD +givenName: Dyanna +mail: HartlinD@42585481abdb4363ac24feac32c0a14e.bitwarden.com +carLicense: CRLCQX +departmentNumber: 8120 +employeeType: Employee +homePhone: +1 510 931-9983 +initials: D. H. +mobile: +1 510 983-2784 +pager: +1 510 437-2668 +roomNumber: 9729 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomson Bloedon +sn: Bloedon +description: This is Thomson Bloedon's description +facsimileTelephoneNumber: +1 415 530-7322 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 834-9627 +title: Junior Janitorial Admin +userPassword: Password1 +uid: BloedonT +givenName: Thomson +mail: BloedonT@9c4f9eaf4eea42848e2ed65a10014c07.bitwarden.com +carLicense: FQYAJY +departmentNumber: 9892 +employeeType: Normal +homePhone: +1 415 474-1401 +initials: T. B. +mobile: +1 415 472-1415 +pager: +1 415 627-7613 +roomNumber: 9573 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hamid Peng,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hamid Peng +sn: Peng +description: This is Hamid Peng's description +facsimileTelephoneNumber: +1 415 620-7789 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 675-7151 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: PengH +givenName: Hamid +mail: PengH@87501b64e5644d78a747c4f01175b74a.bitwarden.com +carLicense: OYSHBR +departmentNumber: 7189 +employeeType: Normal +homePhone: +1 415 793-7131 +initials: H. P. +mobile: +1 415 700-2926 +pager: +1 415 172-5359 +roomNumber: 9458 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Michaela Minichillo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michaela Minichillo +sn: Minichillo +description: This is Michaela Minichillo's description +facsimileTelephoneNumber: +1 818 730-2691 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 818 868-2907 +title: Chief Peons Consultant +userPassword: Password1 +uid: MinichiM +givenName: Michaela +mail: MinichiM@addacb3184714ace97e25c0e017ebbb0.bitwarden.com +carLicense: 07HG18 +departmentNumber: 7667 +employeeType: Employee +homePhone: +1 818 793-8641 +initials: M. M. +mobile: +1 818 166-4013 +pager: +1 818 139-5134 +roomNumber: 9965 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chesteen Guzman +sn: Guzman +description: This is Chesteen Guzman's description +facsimileTelephoneNumber: +1 510 283-8380 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 295-1918 +title: Chief Human Resources Dictator +userPassword: Password1 +uid: GuzmanC +givenName: Chesteen +mail: GuzmanC@ea74020b5db84a1f9fcb412873464117.bitwarden.com +carLicense: 7RPNIE +departmentNumber: 9052 +employeeType: Contract +homePhone: +1 510 134-8081 +initials: C. G. +mobile: +1 510 119-5291 +pager: +1 510 382-1226 +roomNumber: 8944 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Romano Moosavi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Romano Moosavi +sn: Moosavi +description: This is Romano Moosavi's description +facsimileTelephoneNumber: +1 818 281-9430 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 274-9910 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: MoosaviR +givenName: Romano +mail: MoosaviR@34856ffc4b2a4685be33512cea557265.bitwarden.com +carLicense: OVK2E2 +departmentNumber: 3485 +employeeType: Normal +homePhone: +1 818 698-4107 +initials: R. M. +mobile: +1 818 356-1410 +pager: +1 818 612-2124 +roomNumber: 9629 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weber Kosnaskie +sn: Kosnaskie +description: This is Weber Kosnaskie's description +facsimileTelephoneNumber: +1 206 674-6463 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 957-1339 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: KosnaskW +givenName: Weber +mail: KosnaskW@da8e740f807d423dbc2e15de67bce38e.bitwarden.com +carLicense: WWPV22 +departmentNumber: 1325 +employeeType: Contract +homePhone: +1 206 588-4607 +initials: W. K. +mobile: +1 206 528-7209 +pager: +1 206 119-7441 +roomNumber: 8904 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nannette Pantages,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nannette Pantages +sn: Pantages +description: This is Nannette Pantages's description +facsimileTelephoneNumber: +1 804 757-7208 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 727-1538 +title: Chief Janitorial Czar +userPassword: Password1 +uid: PantageN +givenName: Nannette +mail: PantageN@f88ed4d88d0c4b619b4b2076642c1070.bitwarden.com +carLicense: HGC2SS +departmentNumber: 1190 +employeeType: Employee +homePhone: +1 804 703-3850 +initials: N. P. +mobile: +1 804 320-8398 +pager: +1 804 410-6461 +roomNumber: 9590 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zaihua Dhuga,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zaihua Dhuga +sn: Dhuga +description: This is Zaihua Dhuga's description +facsimileTelephoneNumber: +1 510 514-9177 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 469-4325 +title: Master Peons Vice President +userPassword: Password1 +uid: DhugaZ +givenName: Zaihua +mail: DhugaZ@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com +carLicense: ADTUXG +departmentNumber: 8414 +employeeType: Normal +homePhone: +1 510 529-6974 +initials: Z. D. +mobile: +1 510 792-7437 +pager: +1 510 952-8228 +roomNumber: 9268 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Niki Brock,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niki Brock +sn: Brock +description: This is Niki Brock's description +facsimileTelephoneNumber: +1 804 159-5457 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 463-6213 +title: Associate Management Czar +userPassword: Password1 +uid: BrockN +givenName: Niki +mail: BrockN@1c75dd756d3646528231e24a92716bd4.bitwarden.com +carLicense: RNQODB +departmentNumber: 3688 +employeeType: Employee +homePhone: +1 804 795-9017 +initials: N. B. +mobile: +1 804 777-8565 +pager: +1 804 929-1411 +roomNumber: 8093 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lucila Jatar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucila Jatar +sn: Jatar +description: This is Lucila Jatar's description +facsimileTelephoneNumber: +1 804 853-7710 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 784-6483 +title: Associate Management Warrior +userPassword: Password1 +uid: JatarL +givenName: Lucila +mail: JatarL@befc232b3f4240ada061cd42724f306e.bitwarden.com +carLicense: IDR334 +departmentNumber: 6047 +employeeType: Employee +homePhone: +1 804 913-1148 +initials: L. J. +mobile: +1 804 828-5662 +pager: +1 804 468-1262 +roomNumber: 9248 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Reiko StJames,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reiko StJames +sn: StJames +description: This is Reiko StJames's description +facsimileTelephoneNumber: +1 415 204-9799 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 952-9827 +title: Associate Payroll Fellow +userPassword: Password1 +uid: StJamesR +givenName: Reiko +mail: StJamesR@6a93cf1aebfe489dacbfbd53e393bea0.bitwarden.com +carLicense: XTFU17 +departmentNumber: 7775 +employeeType: Employee +homePhone: +1 415 619-2995 +initials: R. S. +mobile: +1 415 489-7973 +pager: +1 415 638-3677 +roomNumber: 8311 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carmen Poulin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmen Poulin +sn: Poulin +description: This is Carmen Poulin's description +facsimileTelephoneNumber: +1 804 802-4008 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 849-4240 +title: Master Janitorial Grunt +userPassword: Password1 +uid: PoulinC +givenName: Carmen +mail: PoulinC@eff4b5c8cdd74572a1896b15aff841f1.bitwarden.com +carLicense: 2S04C0 +departmentNumber: 3461 +employeeType: Contract +homePhone: +1 804 959-7779 +initials: C. P. +mobile: +1 804 820-9037 +pager: +1 804 421-5184 +roomNumber: 9117 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Loree Dorval,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loree Dorval +sn: Dorval +description: This is Loree Dorval's description +facsimileTelephoneNumber: +1 415 379-2641 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 542-7903 +title: Master Human Resources Pinhead +userPassword: Password1 +uid: DorvalL +givenName: Loree +mail: DorvalL@62ec731e1ab8465b82b77be42758d517.bitwarden.com +carLicense: MRB9JW +departmentNumber: 5968 +employeeType: Employee +homePhone: +1 415 780-8746 +initials: L. D. +mobile: +1 415 788-1415 +pager: +1 415 580-2979 +roomNumber: 8748 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tricord Heinrichs +sn: Heinrichs +description: This is Tricord Heinrichs's description +facsimileTelephoneNumber: +1 510 320-8995 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 552-6295 +title: Chief Janitorial Director +userPassword: Password1 +uid: HeinricT +givenName: Tricord +mail: HeinricT@b7db7b74741043f1bc70179c65d8c474.bitwarden.com +carLicense: LSIEXX +departmentNumber: 5446 +employeeType: Employee +homePhone: +1 510 131-8404 +initials: T. H. +mobile: +1 510 957-3264 +pager: +1 510 468-5374 +roomNumber: 8277 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Reinhold Ballinger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reinhold Ballinger +sn: Ballinger +description: This is Reinhold Ballinger's description +facsimileTelephoneNumber: +1 408 682-1206 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 135-1099 +title: Junior Management Sales Rep +userPassword: Password1 +uid: BallingR +givenName: Reinhold +mail: BallingR@d38a3979c2de40a29545a48afbed0d22.bitwarden.com +carLicense: 22A8BV +departmentNumber: 9971 +employeeType: Contract +homePhone: +1 408 748-9725 +initials: R. B. +mobile: +1 408 738-3875 +pager: +1 408 148-4232 +roomNumber: 9683 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mat Smyth,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mat Smyth +sn: Smyth +description: This is Mat Smyth's description +facsimileTelephoneNumber: +1 804 789-3530 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 776-7892 +title: Associate Product Development Evangelist +userPassword: Password1 +uid: SmythM +givenName: Mat +mail: SmythM@dc6a05982d874ebebc06c9a0d16ba5c2.bitwarden.com +carLicense: HO75RU +departmentNumber: 7758 +employeeType: Employee +homePhone: +1 804 858-5383 +initials: M. S. +mobile: +1 804 420-6747 +pager: +1 804 508-9662 +roomNumber: 8571 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lesya Maye,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lesya Maye +sn: Maye +description: This is Lesya Maye's description +facsimileTelephoneNumber: +1 818 546-4133 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 303-7026 +title: Associate Human Resources Architect +userPassword: Password1 +uid: MayeL +givenName: Lesya +mail: MayeL@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com +carLicense: BJ5OKK +departmentNumber: 8130 +employeeType: Contract +homePhone: +1 818 986-8581 +initials: L. M. +mobile: +1 818 533-7453 +pager: +1 818 591-6610 +roomNumber: 8295 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dixie Oshinski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dixie Oshinski +sn: Oshinski +description: This is Dixie Oshinski's description +facsimileTelephoneNumber: +1 818 565-5833 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 409-6717 +title: Chief Management Engineer +userPassword: Password1 +uid: OshinskD +givenName: Dixie +mail: OshinskD@61003bbcc2b54b358efccfc69a8f8df8.bitwarden.com +carLicense: S25PS0 +departmentNumber: 8038 +employeeType: Contract +homePhone: +1 818 134-4661 +initials: D. O. +mobile: +1 818 683-2177 +pager: +1 818 611-7012 +roomNumber: 9349 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Stephanie Crerar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephanie Crerar +sn: Crerar +description: This is Stephanie Crerar's description +facsimileTelephoneNumber: +1 408 938-7182 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 165-8408 +title: Chief Peons Mascot +userPassword: Password1 +uid: CrerarS +givenName: Stephanie +mail: CrerarS@ffc6032d945b438b9865cf8c7a84e7fe.bitwarden.com +carLicense: 19TWVO +departmentNumber: 4452 +employeeType: Normal +homePhone: +1 408 246-4938 +initials: S. C. +mobile: +1 408 179-2725 +pager: +1 408 809-5831 +roomNumber: 9580 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Miguelita Wyss,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miguelita Wyss +sn: Wyss +description: This is Miguelita Wyss's description +facsimileTelephoneNumber: +1 415 410-6791 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 626-3185 +title: Master Product Development Grunt +userPassword: Password1 +uid: WyssM +givenName: Miguelita +mail: WyssM@3b50811f02664433a227210515cf2d84.bitwarden.com +carLicense: EO0EOK +departmentNumber: 9602 +employeeType: Employee +homePhone: +1 415 264-4969 +initials: M. W. +mobile: +1 415 561-4899 +pager: +1 415 487-9505 +roomNumber: 8149 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lee Kreimer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lee Kreimer +sn: Kreimer +description: This is Lee Kreimer's description +facsimileTelephoneNumber: +1 818 472-9789 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 177-3294 +title: Chief Administrative Stooge +userPassword: Password1 +uid: KreimerL +givenName: Lee +mail: KreimerL@f80be3a38b1d4889b09c7deda5322720.bitwarden.com +carLicense: AEKMK5 +departmentNumber: 8877 +employeeType: Contract +homePhone: +1 818 376-8995 +initials: L. K. +mobile: +1 818 980-9196 +pager: +1 818 371-3941 +roomNumber: 8566 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lavonda Kerwin +sn: Kerwin +description: This is Lavonda Kerwin's description +facsimileTelephoneNumber: +1 415 459-2791 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 776-2761 +title: Master Human Resources Madonna +userPassword: Password1 +uid: KerwinL +givenName: Lavonda +mail: KerwinL@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com +carLicense: FLHC1R +departmentNumber: 3166 +employeeType: Employee +homePhone: +1 415 544-5206 +initials: L. K. +mobile: +1 415 508-6440 +pager: +1 415 901-6663 +roomNumber: 9168 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Violetta Nttest,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Violetta Nttest +sn: Nttest +description: This is Violetta Nttest's description +facsimileTelephoneNumber: +1 818 850-8965 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 733-2020 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: NttestV +givenName: Violetta +mail: NttestV@c60d22407c0d47c0b12a1be490e44c72.bitwarden.com +carLicense: 26AIW0 +departmentNumber: 8577 +employeeType: Employee +homePhone: +1 818 525-3724 +initials: V. N. +mobile: +1 818 926-6628 +pager: +1 818 649-3170 +roomNumber: 8058 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chau Gyenes,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chau Gyenes +sn: Gyenes +description: This is Chau Gyenes's description +facsimileTelephoneNumber: +1 213 354-1388 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 213 955-4233 +title: Junior Administrative Writer +userPassword: Password1 +uid: GyenesC +givenName: Chau +mail: GyenesC@79ff22f8d12b4572811ad95061bf5388.bitwarden.com +carLicense: OC49UC +departmentNumber: 8046 +employeeType: Normal +homePhone: +1 213 347-7735 +initials: C. G. +mobile: +1 213 381-7339 +pager: +1 213 195-5049 +roomNumber: 9942 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Melva Kaefer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melva Kaefer +sn: Kaefer +description: This is Melva Kaefer's description +facsimileTelephoneNumber: +1 804 531-3360 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 887-5574 +title: Associate Management Grunt +userPassword: Password1 +uid: KaeferM +givenName: Melva +mail: KaeferM@d27485ac0882409f8001fecce0300eb4.bitwarden.com +carLicense: LJPKTV +departmentNumber: 3237 +employeeType: Employee +homePhone: +1 804 254-2199 +initials: M. K. +mobile: +1 804 186-4562 +pager: +1 804 677-9958 +roomNumber: 8553 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Celinka Laprade,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celinka Laprade +sn: Laprade +description: This is Celinka Laprade's description +facsimileTelephoneNumber: +1 510 542-9418 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 801-8637 +title: Supreme Peons Dictator +userPassword: Password1 +uid: LapradeC +givenName: Celinka +mail: LapradeC@a2fc6a711cba4ec98d716bb4c3e20f83.bitwarden.com +carLicense: LNYYV1 +departmentNumber: 4064 +employeeType: Employee +homePhone: +1 510 588-3178 +initials: C. L. +mobile: +1 510 601-4572 +pager: +1 510 148-6412 +roomNumber: 8221 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Abbey Firat,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abbey Firat +sn: Firat +description: This is Abbey Firat's description +facsimileTelephoneNumber: +1 510 507-3944 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 217-1826 +title: Junior Janitorial Warrior +userPassword: Password1 +uid: FiratA +givenName: Abbey +mail: FiratA@c9027f607987451aa869ec32b2ad0708.bitwarden.com +carLicense: TGOLYD +departmentNumber: 8437 +employeeType: Contract +homePhone: +1 510 535-8240 +initials: A. F. +mobile: +1 510 780-8747 +pager: +1 510 460-5982 +roomNumber: 8748 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Coleen Kovats,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coleen Kovats +sn: Kovats +description: This is Coleen Kovats's description +facsimileTelephoneNumber: +1 818 948-3083 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 495-4804 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: KovatsC +givenName: Coleen +mail: KovatsC@bdfcb82199ec4806bb1989f89de74296.bitwarden.com +carLicense: HO43NR +departmentNumber: 7108 +employeeType: Normal +homePhone: +1 818 439-4804 +initials: C. K. +mobile: +1 818 936-1400 +pager: +1 818 600-2840 +roomNumber: 9304 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Merla Tsitsior,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merla Tsitsior +sn: Tsitsior +description: This is Merla Tsitsior's description +facsimileTelephoneNumber: +1 804 481-1654 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 788-1057 +title: Master Payroll Fellow +userPassword: Password1 +uid: TsitsioM +givenName: Merla +mail: TsitsioM@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com +carLicense: XJEJDR +departmentNumber: 1064 +employeeType: Contract +homePhone: +1 804 535-9488 +initials: M. T. +mobile: +1 804 108-8160 +pager: +1 804 761-2203 +roomNumber: 8282 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marek Harwerth,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marek Harwerth +sn: Harwerth +description: This is Marek Harwerth's description +facsimileTelephoneNumber: +1 206 190-9846 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 556-7569 +title: Chief Payroll Grunt +userPassword: Password1 +uid: HarwertM +givenName: Marek +mail: HarwertM@07add4ded06549a3b31963a376ba1c96.bitwarden.com +carLicense: 11FLIT +departmentNumber: 3404 +employeeType: Employee +homePhone: +1 206 852-3820 +initials: M. H. +mobile: +1 206 678-1652 +pager: +1 206 258-6506 +roomNumber: 8092 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bertie Whatley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bertie Whatley +sn: Whatley +description: This is Bertie Whatley's description +facsimileTelephoneNumber: +1 415 893-5509 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 704-9306 +title: Junior Product Development Consultant +userPassword: Password1 +uid: WhatleyB +givenName: Bertie +mail: WhatleyB@4c3a20eeff014e34829e7e04f58210d0.bitwarden.com +carLicense: M4RLC2 +departmentNumber: 8444 +employeeType: Normal +homePhone: +1 415 450-6624 +initials: B. W. +mobile: +1 415 832-3168 +pager: +1 415 635-1345 +roomNumber: 9998 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Message Cohen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Message Cohen +sn: Cohen +description: This is Message Cohen's description +facsimileTelephoneNumber: +1 804 557-6633 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 284-1152 +title: Supreme Janitorial Director +userPassword: Password1 +uid: CohenM +givenName: Message +mail: CohenM@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com +carLicense: 7U3W8S +departmentNumber: 7396 +employeeType: Normal +homePhone: +1 804 651-7007 +initials: M. C. +mobile: +1 804 684-5040 +pager: +1 804 116-7112 +roomNumber: 9176 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chai NTINASH,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chai NTINASH +sn: NTINASH +description: This is Chai NTINASH's description +facsimileTelephoneNumber: +1 415 995-5924 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 975-6788 +title: Master Product Development Janitor +userPassword: Password1 +uid: NTINASHC +givenName: Chai +mail: NTINASHC@91023564560e4387b5bc8c338afb8d2d.bitwarden.com +carLicense: 68RWI3 +departmentNumber: 3327 +employeeType: Employee +homePhone: +1 415 110-8850 +initials: C. N. +mobile: +1 415 632-7200 +pager: +1 415 755-2458 +roomNumber: 8010 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karin Schaller,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karin Schaller +sn: Schaller +description: This is Karin Schaller's description +facsimileTelephoneNumber: +1 206 367-9657 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 139-4611 +title: Junior Management Janitor +userPassword: Password1 +uid: SchalleK +givenName: Karin +mail: SchalleK@f9d178e246d64d2e972c6a88cbdc9616.bitwarden.com +carLicense: JIUIYT +departmentNumber: 6093 +employeeType: Contract +homePhone: +1 206 414-9315 +initials: K. S. +mobile: +1 206 708-4800 +pager: +1 206 526-3274 +roomNumber: 8921 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nicolea StMartin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolea StMartin +sn: StMartin +description: This is Nicolea StMartin's description +facsimileTelephoneNumber: +1 804 861-7177 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 401-5508 +title: Junior Payroll Grunt +userPassword: Password1 +uid: StMartiN +givenName: Nicolea +mail: StMartiN@a5b16f07cc5f4d548df233a10f2abd0b.bitwarden.com +carLicense: H89VYM +departmentNumber: 9343 +employeeType: Normal +homePhone: +1 804 359-7772 +initials: N. S. +mobile: +1 804 154-3637 +pager: +1 804 883-2880 +roomNumber: 8953 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Heda Bowens,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heda Bowens +sn: Bowens +description: This is Heda Bowens's description +facsimileTelephoneNumber: +1 510 105-1693 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 249-9350 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: BowensH +givenName: Heda +mail: BowensH@85000db2e5e34d6d81e53b19e5b46684.bitwarden.com +carLicense: OPCSGJ +departmentNumber: 6997 +employeeType: Contract +homePhone: +1 510 671-4193 +initials: H. B. +mobile: +1 510 918-4388 +pager: +1 510 487-6848 +roomNumber: 9137 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Conni Westgarth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Conni Westgarth +sn: Westgarth +description: This is Conni Westgarth's description +facsimileTelephoneNumber: +1 206 630-4221 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 987-9284 +title: Associate Product Testing Technician +userPassword: Password1 +uid: WestgarC +givenName: Conni +mail: WestgarC@37f78211f5f44e43b7f84a7d34417dc7.bitwarden.com +carLicense: MJGPJR +departmentNumber: 9212 +employeeType: Contract +homePhone: +1 206 242-8908 +initials: C. W. +mobile: +1 206 685-4687 +pager: +1 206 375-3968 +roomNumber: 9377 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Joell Bolzon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joell Bolzon +sn: Bolzon +description: This is Joell Bolzon's description +facsimileTelephoneNumber: +1 213 418-5033 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 804-8161 +title: Supreme Payroll Architect +userPassword: Password1 +uid: BolzonJ +givenName: Joell +mail: BolzonJ@06521bdd507441e9a09de35a0e462c1a.bitwarden.com +carLicense: IYA55H +departmentNumber: 4732 +employeeType: Normal +homePhone: +1 213 643-6093 +initials: J. B. +mobile: +1 213 363-5936 +pager: +1 213 351-3632 +roomNumber: 9682 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Christianne Carling,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christianne Carling +sn: Carling +description: This is Christianne Carling's description +facsimileTelephoneNumber: +1 206 646-6348 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 590-4107 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: CarlingC +givenName: Christianne +mail: CarlingC@06731df963584f3ca191849b64eabf87.bitwarden.com +carLicense: 1HLPVS +departmentNumber: 5387 +employeeType: Employee +homePhone: +1 206 202-2334 +initials: C. C. +mobile: +1 206 850-5735 +pager: +1 206 676-7781 +roomNumber: 9898 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nessy Grewal,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nessy Grewal +sn: Grewal +description: This is Nessy Grewal's description +facsimileTelephoneNumber: +1 408 303-5223 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 521-7446 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: GrewalN +givenName: Nessy +mail: GrewalN@8c8bf3789a35468ea6c95834e941f083.bitwarden.com +carLicense: LWLUN1 +departmentNumber: 3809 +employeeType: Contract +homePhone: +1 408 223-7104 +initials: N. G. +mobile: +1 408 865-3548 +pager: +1 408 398-7727 +roomNumber: 8615 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lex Woodyer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lex Woodyer +sn: Woodyer +description: This is Lex Woodyer's description +facsimileTelephoneNumber: +1 818 187-7456 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 263-4679 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: WoodyerL +givenName: Lex +mail: WoodyerL@e059f798bf444774a99e078fccd4a4f3.bitwarden.com +carLicense: FWJ7S6 +departmentNumber: 6322 +employeeType: Normal +homePhone: +1 818 385-4014 +initials: L. W. +mobile: +1 818 523-8932 +pager: +1 818 211-5111 +roomNumber: 9541 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pamela Fon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pamela Fon +sn: Fon +description: This is Pamela Fon's description +facsimileTelephoneNumber: +1 213 656-2714 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 155-5219 +title: Associate Peons Dictator +userPassword: Password1 +uid: FonP +givenName: Pamela +mail: FonP@cc117505f3744c0d8553f4b07f63ca99.bitwarden.com +carLicense: J58BJ3 +departmentNumber: 8407 +employeeType: Normal +homePhone: +1 213 114-7709 +initials: P. F. +mobile: +1 213 418-6321 +pager: +1 213 327-1589 +roomNumber: 9617 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sukhwant Wobbrock +sn: Wobbrock +description: This is Sukhwant Wobbrock's description +facsimileTelephoneNumber: +1 213 950-5209 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 173-5657 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: WobbrocS +givenName: Sukhwant +mail: WobbrocS@fc3f6240126d440389a99ebbf528efcb.bitwarden.com +carLicense: PQEFEX +departmentNumber: 3792 +employeeType: Employee +homePhone: +1 213 467-1752 +initials: S. W. +mobile: +1 213 808-5231 +pager: +1 213 226-6367 +roomNumber: 8311 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Loris Winterberg,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loris Winterberg +sn: Winterberg +description: This is Loris Winterberg's description +facsimileTelephoneNumber: +1 206 328-9548 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 303-9769 +title: Master Administrative Engineer +userPassword: Password1 +uid: WinterbL +givenName: Loris +mail: WinterbL@ff8c4aaacc274f3781ccca8d193be581.bitwarden.com +carLicense: P20WYD +departmentNumber: 6857 +employeeType: Contract +homePhone: +1 206 651-1835 +initials: L. W. +mobile: +1 206 503-3638 +pager: +1 206 443-9526 +roomNumber: 8240 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Business Huether,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Business Huether +sn: Huether +description: This is Business Huether's description +facsimileTelephoneNumber: +1 213 286-4968 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 707-7321 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: HuetherB +givenName: Business +mail: HuetherB@e0451e7239ff4357aaa9acaa2724cd82.bitwarden.com +carLicense: 3XV2RD +departmentNumber: 1082 +employeeType: Contract +homePhone: +1 213 992-3680 +initials: B. H. +mobile: +1 213 190-5030 +pager: +1 213 906-4042 +roomNumber: 9189 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Susanne Repeta,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susanne Repeta +sn: Repeta +description: This is Susanne Repeta's description +facsimileTelephoneNumber: +1 206 895-2557 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 454-1167 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: RepetaS +givenName: Susanne +mail: RepetaS@2d9b448800384d01a7fa8a4fa28f7c7a.bitwarden.com +carLicense: 9VQ3RL +departmentNumber: 6025 +employeeType: Contract +homePhone: +1 206 985-4248 +initials: S. R. +mobile: +1 206 201-5608 +pager: +1 206 637-6415 +roomNumber: 8538 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Willie Murphy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willie Murphy +sn: Murphy +description: This is Willie Murphy's description +facsimileTelephoneNumber: +1 804 384-6524 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 433-2395 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: MurphyW +givenName: Willie +mail: MurphyW@6f609804b5454243a8f49419cf4fa238.bitwarden.com +carLicense: UT6N92 +departmentNumber: 3218 +employeeType: Normal +homePhone: +1 804 783-8306 +initials: W. M. +mobile: +1 804 932-4557 +pager: +1 804 725-5142 +roomNumber: 9931 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Donella Duncan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donella Duncan +sn: Duncan +description: This is Donella Duncan's description +facsimileTelephoneNumber: +1 510 278-3730 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 232-6931 +title: Junior Product Testing Pinhead +userPassword: Password1 +uid: DuncanD +givenName: Donella +mail: DuncanD@738f967b243c46139646bd958f28d963.bitwarden.com +carLicense: 96QAVY +departmentNumber: 5773 +employeeType: Employee +homePhone: +1 510 570-5997 +initials: D. D. +mobile: +1 510 940-6879 +pager: +1 510 224-9834 +roomNumber: 9722 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquelin Coutu +sn: Coutu +description: This is Jacquelin Coutu's description +facsimileTelephoneNumber: +1 804 129-1487 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 870-5117 +title: Supreme Product Development Consultant +userPassword: Password1 +uid: CoutuJ +givenName: Jacquelin +mail: CoutuJ@37f6e89a491b4e36b50bf46647ad8a4f.bitwarden.com +carLicense: MW0SWO +departmentNumber: 8352 +employeeType: Contract +homePhone: +1 804 535-1857 +initials: J. C. +mobile: +1 804 215-9211 +pager: +1 804 758-4286 +roomNumber: 8522 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=JeanBernard Coord,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanBernard Coord +sn: Coord +description: This is JeanBernard Coord's description +facsimileTelephoneNumber: +1 818 552-1092 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 714-2632 +title: Chief Administrative Punk +userPassword: Password1 +uid: CoordJ +givenName: JeanBernard +mail: CoordJ@bb6c98b6a4dc470ea57c17d165eabc5d.bitwarden.com +carLicense: 4JVT0C +departmentNumber: 9807 +employeeType: Contract +homePhone: +1 818 184-5383 +initials: J. C. +mobile: +1 818 585-2883 +pager: +1 818 749-3989 +roomNumber: 8864 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tove Mettrey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tove Mettrey +sn: Mettrey +description: This is Tove Mettrey's description +facsimileTelephoneNumber: +1 804 927-1851 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 378-2130 +title: Associate Product Development Dictator +userPassword: Password1 +uid: MettreyT +givenName: Tove +mail: MettreyT@c08c80f3c69d4d04b025dc038c8f6045.bitwarden.com +carLicense: MG9DC5 +departmentNumber: 4482 +employeeType: Contract +homePhone: +1 804 309-8174 +initials: T. M. +mobile: +1 804 136-2268 +pager: +1 804 334-8716 +roomNumber: 8979 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kathye Terwilligar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathye Terwilligar +sn: Terwilligar +description: This is Kathye Terwilligar's description +facsimileTelephoneNumber: +1 206 112-3224 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 472-9515 +title: Associate Peons Visionary +userPassword: Password1 +uid: TerwillK +givenName: Kathye +mail: TerwillK@cff83e5325124f689808e755392aa586.bitwarden.com +carLicense: IC5ICB +departmentNumber: 9065 +employeeType: Contract +homePhone: +1 206 826-4655 +initials: K. T. +mobile: +1 206 278-5491 +pager: +1 206 940-7681 +roomNumber: 9983 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Emilda Wylie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emilda Wylie +sn: Wylie +description: This is Emilda Wylie's description +facsimileTelephoneNumber: +1 408 978-2937 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 975-6426 +title: Master Product Development Visionary +userPassword: Password1 +uid: WylieE +givenName: Emilda +mail: WylieE@d93b82016f974a879c0bb4f0879ad59a.bitwarden.com +carLicense: 3UP7V8 +departmentNumber: 6759 +employeeType: Normal +homePhone: +1 408 614-6496 +initials: E. W. +mobile: +1 408 182-6284 +pager: +1 408 990-5105 +roomNumber: 9036 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anette McBryan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anette McBryan +sn: McBryan +description: This is Anette McBryan's description +facsimileTelephoneNumber: +1 510 279-3936 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 162-8454 +title: Master Janitorial Czar +userPassword: Password1 +uid: McBryanA +givenName: Anette +mail: McBryanA@e031c0ad66574b2aa76e4d7b19f2099d.bitwarden.com +carLicense: MFKDRL +departmentNumber: 1668 +employeeType: Contract +homePhone: +1 510 736-3970 +initials: A. M. +mobile: +1 510 169-3844 +pager: +1 510 226-4141 +roomNumber: 9889 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jannelle Burnside,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jannelle Burnside +sn: Burnside +description: This is Jannelle Burnside's description +facsimileTelephoneNumber: +1 510 313-7963 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 910-9513 +title: Chief Management Warrior +userPassword: Password1 +uid: BurnsidJ +givenName: Jannelle +mail: BurnsidJ@512b1443d1ed45ccb0713f3efd2670c6.bitwarden.com +carLicense: T8KR67 +departmentNumber: 9162 +employeeType: Normal +homePhone: +1 510 426-7580 +initials: J. B. +mobile: +1 510 536-5001 +pager: +1 510 549-5868 +roomNumber: 8578 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Swact Evans,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Swact Evans +sn: Evans +description: This is Swact Evans's description +facsimileTelephoneNumber: +1 510 561-4032 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 702-2908 +title: Junior Management Czar +userPassword: Password1 +uid: EvansS +givenName: Swact +mail: EvansS@5ebaa8af105c497682481efce65265ab.bitwarden.com +carLicense: CUDESC +departmentNumber: 9924 +employeeType: Employee +homePhone: +1 510 970-1587 +initials: S. E. +mobile: +1 510 417-9745 +pager: +1 510 540-9476 +roomNumber: 9291 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Almeda Bloemker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Almeda Bloemker +sn: Bloemker +description: This is Almeda Bloemker's description +facsimileTelephoneNumber: +1 415 660-9384 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 415 842-9386 +title: Chief Peons Fellow +userPassword: Password1 +uid: BloemkeA +givenName: Almeda +mail: BloemkeA@dbed6d43a21541a596721c7d187872fe.bitwarden.com +carLicense: E8G56Q +departmentNumber: 1905 +employeeType: Normal +homePhone: +1 415 771-1107 +initials: A. B. +mobile: +1 415 323-4955 +pager: +1 415 283-8944 +roomNumber: 9837 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ronn Peschke,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronn Peschke +sn: Peschke +description: This is Ronn Peschke's description +facsimileTelephoneNumber: +1 408 675-7842 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 764-3447 +title: Associate Human Resources Czar +userPassword: Password1 +uid: PeschkeR +givenName: Ronn +mail: PeschkeR@49c1a115ac8b439f9ab99f302ba59751.bitwarden.com +carLicense: E02P9S +departmentNumber: 6110 +employeeType: Employee +homePhone: +1 408 174-8306 +initials: R. P. +mobile: +1 408 466-2829 +pager: +1 408 370-4669 +roomNumber: 8309 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ainslee Scp,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ainslee Scp +sn: Scp +description: This is Ainslee Scp's description +facsimileTelephoneNumber: +1 818 137-6360 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 818 265-3067 +title: Associate Management Dictator +userPassword: Password1 +uid: ScpA +givenName: Ainslee +mail: ScpA@59a53864c7aa4d7ea9936880199e460a.bitwarden.com +carLicense: VVT483 +departmentNumber: 1781 +employeeType: Employee +homePhone: +1 818 192-1178 +initials: A. S. +mobile: +1 818 416-3399 +pager: +1 818 404-6006 +roomNumber: 8957 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Claudina Jablonski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claudina Jablonski +sn: Jablonski +description: This is Claudina Jablonski's description +facsimileTelephoneNumber: +1 818 127-4670 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 626-4271 +title: Master Product Development Punk +userPassword: Password1 +uid: JablonsC +givenName: Claudina +mail: JablonsC@4c3bb131ea5148028bf43ce4a8c06b23.bitwarden.com +carLicense: TETX4B +departmentNumber: 4699 +employeeType: Normal +homePhone: +1 818 725-7154 +initials: C. J. +mobile: +1 818 278-8316 +pager: +1 818 649-5470 +roomNumber: 8730 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ciriaco Chatterton +sn: Chatterton +description: This is Ciriaco Chatterton's description +facsimileTelephoneNumber: +1 510 846-1588 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 910-2790 +title: Associate Human Resources Manager +userPassword: Password1 +uid: ChatterC +givenName: Ciriaco +mail: ChatterC@b981e29e060744a4970aa15bb19296ee.bitwarden.com +carLicense: 0M8A14 +departmentNumber: 1769 +employeeType: Contract +homePhone: +1 510 112-6116 +initials: C. C. +mobile: +1 510 859-1207 +pager: +1 510 115-8242 +roomNumber: 8841 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Olwen Garey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olwen Garey +sn: Garey +description: This is Olwen Garey's description +facsimileTelephoneNumber: +1 213 596-1656 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 213 146-9889 +title: Master Administrative Artist +userPassword: Password1 +uid: GareyO +givenName: Olwen +mail: GareyO@298f1a44ea7f452799d70af39fda7e0d.bitwarden.com +carLicense: 35HS0R +departmentNumber: 6069 +employeeType: Employee +homePhone: +1 213 965-8282 +initials: O. G. +mobile: +1 213 235-4260 +pager: +1 213 933-7940 +roomNumber: 9655 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ethyl Tebinka +sn: Tebinka +description: This is Ethyl Tebinka's description +facsimileTelephoneNumber: +1 510 740-9386 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 528-2083 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: TebinkaE +givenName: Ethyl +mail: TebinkaE@d215d486a3844409ae8cd732ddd91a4a.bitwarden.com +carLicense: 80EPLL +departmentNumber: 7663 +employeeType: Employee +homePhone: +1 510 101-2160 +initials: E. T. +mobile: +1 510 189-3977 +pager: +1 510 913-9010 +roomNumber: 8292 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Empdb Jahromi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Empdb Jahromi +sn: Jahromi +description: This is Empdb Jahromi's description +facsimileTelephoneNumber: +1 510 873-6163 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 744-5158 +title: Supreme Peons Dictator +userPassword: Password1 +uid: JahromiE +givenName: Empdb +mail: JahromiE@d5f1e05d95aa48aa94789d8e594894db.bitwarden.com +carLicense: J4DSKY +departmentNumber: 3160 +employeeType: Employee +homePhone: +1 510 595-7522 +initials: E. J. +mobile: +1 510 929-4823 +pager: +1 510 751-3592 +roomNumber: 8207 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ri Stouder,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ri Stouder +sn: Stouder +description: This is Ri Stouder's description +facsimileTelephoneNumber: +1 510 438-3746 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 286-6888 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: StouderR +givenName: Ri +mail: StouderR@73c831b940d9493093c37d5b1eecfad5.bitwarden.com +carLicense: DH7VOJ +departmentNumber: 9846 +employeeType: Normal +homePhone: +1 510 903-1509 +initials: R. S. +mobile: +1 510 450-9074 +pager: +1 510 450-6801 +roomNumber: 8184 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Darlene Mahonen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darlene Mahonen +sn: Mahonen +description: This is Darlene Mahonen's description +facsimileTelephoneNumber: +1 213 733-7954 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 213 810-5855 +title: Supreme Product Development Stooge +userPassword: Password1 +uid: MahonenD +givenName: Darlene +mail: MahonenD@6944056d5ed54dc5bc898067e09586b2.bitwarden.com +carLicense: 3CNJK4 +departmentNumber: 7328 +employeeType: Employee +homePhone: +1 213 823-8931 +initials: D. M. +mobile: +1 213 291-8869 +pager: +1 213 644-5025 +roomNumber: 8638 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mayumi Piitz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mayumi Piitz +sn: Piitz +description: This is Mayumi Piitz's description +facsimileTelephoneNumber: +1 213 898-1226 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 211-1282 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: PiitzM +givenName: Mayumi +mail: PiitzM@10c8d574e1b3465daa57d640cae3b608.bitwarden.com +carLicense: 50VSOQ +departmentNumber: 2213 +employeeType: Normal +homePhone: +1 213 242-5330 +initials: M. P. +mobile: +1 213 120-9275 +pager: +1 213 914-4945 +roomNumber: 9874 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazuyuki Romberg +sn: Romberg +description: This is Kazuyuki Romberg's description +facsimileTelephoneNumber: +1 510 931-1517 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 510 345-7054 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: RombergK +givenName: Kazuyuki +mail: RombergK@236ae3c93f204197811a00f3cff75d1a.bitwarden.com +carLicense: W9HEGN +departmentNumber: 8572 +employeeType: Contract +homePhone: +1 510 210-9614 +initials: K. R. +mobile: +1 510 545-8035 +pager: +1 510 306-3603 +roomNumber: 8192 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jeri Nadeau,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeri Nadeau +sn: Nadeau +description: This is Jeri Nadeau's description +facsimileTelephoneNumber: +1 213 456-7151 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 277-8956 +title: Master Product Development Architect +userPassword: Password1 +uid: NadeauJ +givenName: Jeri +mail: NadeauJ@dd2faa5cf2194cacb3f5af2bda857324.bitwarden.com +carLicense: FW13J1 +departmentNumber: 8261 +employeeType: Normal +homePhone: +1 213 728-5197 +initials: J. N. +mobile: +1 213 800-5415 +pager: +1 213 834-5780 +roomNumber: 8930 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Valentina Diogo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valentina Diogo +sn: Diogo +description: This is Valentina Diogo's description +facsimileTelephoneNumber: +1 206 729-1335 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 206 868-3281 +title: Chief Product Development Manager +userPassword: Password1 +uid: DiogoV +givenName: Valentina +mail: DiogoV@44eb2c38c4fe4b248a18869662999fa3.bitwarden.com +carLicense: EV2B28 +departmentNumber: 1812 +employeeType: Contract +homePhone: +1 206 426-5723 +initials: V. D. +mobile: +1 206 268-2262 +pager: +1 206 681-7792 +roomNumber: 8843 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Errol Pieron,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Errol Pieron +sn: Pieron +description: This is Errol Pieron's description +facsimileTelephoneNumber: +1 206 122-5376 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 587-5090 +title: Master Administrative Madonna +userPassword: Password1 +uid: PieronE +givenName: Errol +mail: PieronE@f1169fdd057e4624ac9e443f5372e7d0.bitwarden.com +carLicense: 5JQVTV +departmentNumber: 7707 +employeeType: Contract +homePhone: +1 206 309-3698 +initials: E. P. +mobile: +1 206 718-2149 +pager: +1 206 191-3240 +roomNumber: 8907 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Blanca Murock,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blanca Murock +sn: Murock +description: This is Blanca Murock's description +facsimileTelephoneNumber: +1 415 767-9575 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 277-1930 +title: Associate Janitorial Mascot +userPassword: Password1 +uid: MurockB +givenName: Blanca +mail: MurockB@a88f08b66dd64c6298517b19d5989bb1.bitwarden.com +carLicense: KWIAHI +departmentNumber: 2652 +employeeType: Contract +homePhone: +1 415 719-5261 +initials: B. M. +mobile: +1 415 290-2910 +pager: +1 415 989-9526 +roomNumber: 9174 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rebeka McKinley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebeka McKinley +sn: McKinley +description: This is Rebeka McKinley's description +facsimileTelephoneNumber: +1 510 538-5521 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 510 576-2031 +title: Master Product Development Warrior +userPassword: Password1 +uid: McKinleR +givenName: Rebeka +mail: McKinleR@1025092185dc4f3abfbf07259ddd26cd.bitwarden.com +carLicense: W79J51 +departmentNumber: 9317 +employeeType: Contract +homePhone: +1 510 483-6340 +initials: R. M. +mobile: +1 510 951-4482 +pager: +1 510 695-9868 +roomNumber: 8211 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sean Stayton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sean Stayton +sn: Stayton +description: This is Sean Stayton's description +facsimileTelephoneNumber: +1 804 716-6115 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 287-4098 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: StaytonS +givenName: Sean +mail: StaytonS@81141da0af1e4fc99220eaa81b9bfc02.bitwarden.com +carLicense: LVHX82 +departmentNumber: 6637 +employeeType: Contract +homePhone: +1 804 673-7108 +initials: S. S. +mobile: +1 804 102-6299 +pager: +1 804 389-6633 +roomNumber: 8031 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elex Zaharychuk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elex Zaharychuk +sn: Zaharychuk +description: This is Elex Zaharychuk's description +facsimileTelephoneNumber: +1 408 640-3094 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 973-5885 +title: Master Management Artist +userPassword: Password1 +uid: ZaharycE +givenName: Elex +mail: ZaharycE@ac22893bf0684aefaebb0a0decbe182b.bitwarden.com +carLicense: 6DS5EJ +departmentNumber: 3172 +employeeType: Employee +homePhone: +1 408 709-9668 +initials: E. Z. +mobile: +1 408 939-3123 +pager: +1 408 936-8211 +roomNumber: 9838 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Francesca Alguire,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francesca Alguire +sn: Alguire +description: This is Francesca Alguire's description +facsimileTelephoneNumber: +1 415 120-5879 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 367-4168 +title: Associate Management Consultant +userPassword: Password1 +uid: AlguireF +givenName: Francesca +mail: AlguireF@43a2075086314e66b15465a3ec778b06.bitwarden.com +carLicense: LGOIBC +departmentNumber: 6486 +employeeType: Employee +homePhone: +1 415 639-9261 +initials: F. A. +mobile: +1 415 926-1092 +pager: +1 415 293-6227 +roomNumber: 9006 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Georgie Bosy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgie Bosy +sn: Bosy +description: This is Georgie Bosy's description +facsimileTelephoneNumber: +1 213 199-9743 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 400-4599 +title: Junior Peons Fellow +userPassword: Password1 +uid: BosyG +givenName: Georgie +mail: BosyG@b347e7ca23ac4a809e51a769a6ab8366.bitwarden.com +carLicense: 0VW4TD +departmentNumber: 6744 +employeeType: Contract +homePhone: +1 213 186-2386 +initials: G. B. +mobile: +1 213 677-7501 +pager: +1 213 152-2782 +roomNumber: 8908 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madeline Zingeler +sn: Zingeler +description: This is Madeline Zingeler's description +facsimileTelephoneNumber: +1 804 331-9564 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 503-2112 +title: Associate Janitorial Punk +userPassword: Password1 +uid: ZingeleM +givenName: Madeline +mail: ZingeleM@9976848d05f44dc7b3c15447d59df348.bitwarden.com +carLicense: CGMNF3 +departmentNumber: 2979 +employeeType: Contract +homePhone: +1 804 601-3689 +initials: M. Z. +mobile: +1 804 942-9487 +pager: +1 804 959-5210 +roomNumber: 9767 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fenelia Costache,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fenelia Costache +sn: Costache +description: This is Fenelia Costache's description +facsimileTelephoneNumber: +1 415 190-4468 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 756-4979 +title: Junior Payroll Figurehead +userPassword: Password1 +uid: CostachF +givenName: Fenelia +mail: CostachF@6e76f9c1c78c4006a9e635f43ae1e33a.bitwarden.com +carLicense: Y33DE1 +departmentNumber: 7541 +employeeType: Normal +homePhone: +1 415 468-8695 +initials: F. C. +mobile: +1 415 129-9409 +pager: +1 415 186-9825 +roomNumber: 8715 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mab Lao,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mab Lao +sn: Lao +description: This is Mab Lao's description +facsimileTelephoneNumber: +1 206 210-7355 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 827-2979 +title: Master Payroll Fellow +userPassword: Password1 +uid: LaoM +givenName: Mab +mail: LaoM@db227e3e8661495294f2d94a22c03e09.bitwarden.com +carLicense: P3EEGN +departmentNumber: 7769 +employeeType: Contract +homePhone: +1 206 268-1446 +initials: M. L. +mobile: +1 206 807-2373 +pager: +1 206 518-5697 +roomNumber: 9717 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sayla Varia,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sayla Varia +sn: Varia +description: This is Sayla Varia's description +facsimileTelephoneNumber: +1 213 150-4464 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 744-6331 +title: Chief Payroll Mascot +userPassword: Password1 +uid: VariaS +givenName: Sayla +mail: VariaS@13b504a8a169451f93c28e40583299e2.bitwarden.com +carLicense: PNC63H +departmentNumber: 5256 +employeeType: Normal +homePhone: +1 213 571-1123 +initials: S. V. +mobile: +1 213 721-5229 +pager: +1 213 486-4665 +roomNumber: 9088 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Helyn Roberts,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helyn Roberts +sn: Roberts +description: This is Helyn Roberts's description +facsimileTelephoneNumber: +1 415 683-4873 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 807-8140 +title: Junior Peons Engineer +userPassword: Password1 +uid: RobertsH +givenName: Helyn +mail: RobertsH@87dcc1359cb14e3b85fed9765ee13d91.bitwarden.com +carLicense: TCDRCO +departmentNumber: 1392 +employeeType: Contract +homePhone: +1 415 433-3850 +initials: H. R. +mobile: +1 415 671-5943 +pager: +1 415 650-6206 +roomNumber: 9700 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Emr Zisu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emr Zisu +sn: Zisu +description: This is Emr Zisu's description +facsimileTelephoneNumber: +1 415 907-5740 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 415 800-2121 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: ZisuE +givenName: Emr +mail: ZisuE@bb2a12d176e44d12ab407b086abfe896.bitwarden.com +carLicense: 2UF29V +departmentNumber: 2733 +employeeType: Contract +homePhone: +1 415 441-9494 +initials: E. Z. +mobile: +1 415 468-2771 +pager: +1 415 866-9389 +roomNumber: 8898 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ame Frie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ame Frie +sn: Frie +description: This is Ame Frie's description +facsimileTelephoneNumber: +1 510 320-2692 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 412-6345 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: FrieA +givenName: Ame +mail: FrieA@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com +carLicense: FQ8FAQ +departmentNumber: 2596 +employeeType: Employee +homePhone: +1 510 992-4439 +initials: A. F. +mobile: +1 510 782-6658 +pager: +1 510 894-1926 +roomNumber: 9692 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Wonda Chao,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wonda Chao +sn: Chao +description: This is Wonda Chao's description +facsimileTelephoneNumber: +1 804 497-2039 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 804 930-8818 +title: Junior Administrative Punk +userPassword: Password1 +uid: ChaoW +givenName: Wonda +mail: ChaoW@0f4d2fc737564208afea78f691b2f46f.bitwarden.com +carLicense: SBW8XF +departmentNumber: 7223 +employeeType: Normal +homePhone: +1 804 691-1799 +initials: W. C. +mobile: +1 804 105-7745 +pager: +1 804 955-2361 +roomNumber: 8012 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Oralle Checinski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oralle Checinski +sn: Checinski +description: This is Oralle Checinski's description +facsimileTelephoneNumber: +1 510 503-2322 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 396-4800 +title: Chief Peons Evangelist +userPassword: Password1 +uid: ChecinsO +givenName: Oralle +mail: ChecinsO@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com +carLicense: 03KS5A +departmentNumber: 2899 +employeeType: Employee +homePhone: +1 510 992-9885 +initials: O. C. +mobile: +1 510 950-8961 +pager: +1 510 856-5836 +roomNumber: 9267 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgetta Bostelmann +sn: Bostelmann +description: This is Georgetta Bostelmann's description +facsimileTelephoneNumber: +1 510 530-1503 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 510 956-1154 +title: Supreme Payroll Vice President +userPassword: Password1 +uid: BostelmG +givenName: Georgetta +mail: BostelmG@446165da8ada4f7e9d1338149aadb957.bitwarden.com +carLicense: FETYJG +departmentNumber: 7777 +employeeType: Employee +homePhone: +1 510 367-2480 +initials: G. B. +mobile: +1 510 692-7358 +pager: +1 510 151-7360 +roomNumber: 9247 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Birendra Britton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Birendra Britton +sn: Britton +description: This is Birendra Britton's description +facsimileTelephoneNumber: +1 206 339-7357 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 134-5309 +title: Associate Janitorial Czar +userPassword: Password1 +uid: BrittonB +givenName: Birendra +mail: BrittonB@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com +carLicense: M6VY3J +departmentNumber: 3386 +employeeType: Employee +homePhone: +1 206 860-6628 +initials: B. B. +mobile: +1 206 586-7434 +pager: +1 206 958-6576 +roomNumber: 8148 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rebeka McCall,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebeka McCall +sn: McCall +description: This is Rebeka McCall's description +facsimileTelephoneNumber: +1 415 963-3587 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 353-6880 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: McCallR +givenName: Rebeka +mail: McCallR@62f112825f5642bf9962b499addb2c73.bitwarden.com +carLicense: 8NB8IS +departmentNumber: 8754 +employeeType: Employee +homePhone: +1 415 255-9647 +initials: R. M. +mobile: +1 415 450-2462 +pager: +1 415 942-6933 +roomNumber: 9145 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Constantine Bulanda,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constantine Bulanda +sn: Bulanda +description: This is Constantine Bulanda's description +facsimileTelephoneNumber: +1 510 782-8153 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 318-5634 +title: Associate Management Visionary +userPassword: Password1 +uid: BulandaC +givenName: Constantine +mail: BulandaC@4a7f898eb8954829907d34eeb46064e6.bitwarden.com +carLicense: YY0BI6 +departmentNumber: 1459 +employeeType: Employee +homePhone: +1 510 918-8960 +initials: C. B. +mobile: +1 510 592-5909 +pager: +1 510 201-3979 +roomNumber: 9318 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sibel Kurdas,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibel Kurdas +sn: Kurdas +description: This is Sibel Kurdas's description +facsimileTelephoneNumber: +1 213 499-1906 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 423-5822 +title: Master Product Development Vice President +userPassword: Password1 +uid: KurdasS +givenName: Sibel +mail: KurdasS@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com +carLicense: 88XNSI +departmentNumber: 2295 +employeeType: Employee +homePhone: +1 213 506-1792 +initials: S. K. +mobile: +1 213 447-7570 +pager: +1 213 556-5203 +roomNumber: 9906 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pcta Littlewood,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pcta Littlewood +sn: Littlewood +description: This is Pcta Littlewood's description +facsimileTelephoneNumber: +1 213 281-3334 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 181-5897 +title: Associate Management Punk +userPassword: Password1 +uid: LittlewP +givenName: Pcta +mail: LittlewP@35de9aeb91bf4aec9b81f69be90f9534.bitwarden.com +carLicense: LHO3XD +departmentNumber: 3508 +employeeType: Normal +homePhone: +1 213 122-3519 +initials: P. L. +mobile: +1 213 710-2740 +pager: +1 213 801-1054 +roomNumber: 8714 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rodi Zabokrzycki +sn: Zabokrzycki +description: This is Rodi Zabokrzycki's description +facsimileTelephoneNumber: +1 804 453-6176 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 804 847-5518 +title: Associate Human Resources Manager +userPassword: Password1 +uid: ZabokrzR +givenName: Rodi +mail: ZabokrzR@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com +carLicense: NMVXHI +departmentNumber: 7628 +employeeType: Contract +homePhone: +1 804 722-4963 +initials: R. Z. +mobile: +1 804 239-8498 +pager: +1 804 736-4936 +roomNumber: 9672 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Normand Simpkin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Normand Simpkin +sn: Simpkin +description: This is Normand Simpkin's description +facsimileTelephoneNumber: +1 213 752-2316 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 919-9671 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: SimpkinN +givenName: Normand +mail: SimpkinN@1984c2d98d8741afa663b062afe4a653.bitwarden.com +carLicense: XO3AML +departmentNumber: 2058 +employeeType: Employee +homePhone: +1 213 236-4019 +initials: N. S. +mobile: +1 213 618-4162 +pager: +1 213 738-4248 +roomNumber: 8177 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninnetta Trochu +sn: Trochu +description: This is Ninnetta Trochu's description +facsimileTelephoneNumber: +1 206 244-3314 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 577-2114 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: TrochuN +givenName: Ninnetta +mail: TrochuN@7e667bf109b34912922cf458a184f322.bitwarden.com +carLicense: XI5S9Q +departmentNumber: 8955 +employeeType: Employee +homePhone: +1 206 690-5951 +initials: N. T. +mobile: +1 206 706-8603 +pager: +1 206 785-3789 +roomNumber: 9536 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Viole Scates,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viole Scates +sn: Scates +description: This is Viole Scates's description +facsimileTelephoneNumber: +1 818 811-1198 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 384-1193 +title: Master Human Resources Mascot +userPassword: Password1 +uid: ScatesV +givenName: Viole +mail: ScatesV@185b51f28c7f46da96dbfb585fb3e90d.bitwarden.com +carLicense: SSBXKL +departmentNumber: 1476 +employeeType: Employee +homePhone: +1 818 466-2242 +initials: V. S. +mobile: +1 818 479-4753 +pager: +1 818 387-8080 +roomNumber: 8878 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Melisent McAfee,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisent McAfee +sn: McAfee +description: This is Melisent McAfee's description +facsimileTelephoneNumber: +1 510 283-5049 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 245-7905 +title: Associate Administrative Consultant +userPassword: Password1 +uid: McAfeeM +givenName: Melisent +mail: McAfeeM@12e070c46c9248eda6657574192aedf1.bitwarden.com +carLicense: I7WLLD +departmentNumber: 7203 +employeeType: Normal +homePhone: +1 510 556-2094 +initials: M. M. +mobile: +1 510 293-3559 +pager: +1 510 161-2233 +roomNumber: 9711 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jemima Hennelly,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jemima Hennelly +sn: Hennelly +description: This is Jemima Hennelly's description +facsimileTelephoneNumber: +1 206 670-5537 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 127-9388 +title: Associate Peons Consultant +userPassword: Password1 +uid: HennellJ +givenName: Jemima +mail: HennellJ@cf607f514ea94d249d7d25105dbb0762.bitwarden.com +carLicense: GPGBI7 +departmentNumber: 4522 +employeeType: Employee +homePhone: +1 206 564-9673 +initials: J. H. +mobile: +1 206 611-9052 +pager: +1 206 266-4875 +roomNumber: 9779 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Halette Hoag,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Halette Hoag +sn: Hoag +description: This is Halette Hoag's description +facsimileTelephoneNumber: +1 415 521-2530 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 461-7583 +title: Junior Product Development Punk +userPassword: Password1 +uid: HoagH +givenName: Halette +mail: HoagH@eb0f9e33334540be9e105b51f1313877.bitwarden.com +carLicense: 4YD7D8 +departmentNumber: 6572 +employeeType: Employee +homePhone: +1 415 234-3517 +initials: H. H. +mobile: +1 415 640-5870 +pager: +1 415 912-7042 +roomNumber: 8461 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fayre Patenaude,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fayre Patenaude +sn: Patenaude +description: This is Fayre Patenaude's description +facsimileTelephoneNumber: +1 818 361-1248 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 760-7359 +title: Associate Product Development Engineer +userPassword: Password1 +uid: PatenauF +givenName: Fayre +mail: PatenauF@e7f11fb46eb7400b8880ea7eb0c6a19d.bitwarden.com +carLicense: 7WM8Y4 +departmentNumber: 8606 +employeeType: Employee +homePhone: +1 818 178-6056 +initials: F. P. +mobile: +1 818 690-8311 +pager: +1 818 676-2398 +roomNumber: 8841 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rob Allan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rob Allan +sn: Allan +description: This is Rob Allan's description +facsimileTelephoneNumber: +1 818 832-7454 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 818 251-9322 +title: Associate Human Resources Writer +userPassword: Password1 +uid: AllanR +givenName: Rob +mail: AllanR@4d33a49d94084ccf8decdf53642f78ae.bitwarden.com +carLicense: LY7HH8 +departmentNumber: 2243 +employeeType: Normal +homePhone: +1 818 572-4326 +initials: R. A. +mobile: +1 818 579-2531 +pager: +1 818 164-6901 +roomNumber: 8427 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Noyes Bergman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noyes Bergman +sn: Bergman +description: This is Noyes Bergman's description +facsimileTelephoneNumber: +1 804 201-8363 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 383-9753 +title: Chief Product Testing Architect +userPassword: Password1 +uid: BergmanN +givenName: Noyes +mail: BergmanN@4154a37503e24114bfe5421ecb627bb9.bitwarden.com +carLicense: 1HYIEU +departmentNumber: 7006 +employeeType: Normal +homePhone: +1 804 320-3868 +initials: N. B. +mobile: +1 804 379-8858 +pager: +1 804 705-2960 +roomNumber: 9118 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Else McCollam,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Else McCollam +sn: McCollam +description: This is Else McCollam's description +facsimileTelephoneNumber: +1 206 744-9010 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 121-5266 +title: Master Product Testing Engineer +userPassword: Password1 +uid: McCollaE +givenName: Else +mail: McCollaE@5b2a207a5b574a8faa45790df76c253d.bitwarden.com +carLicense: 6DC3EV +departmentNumber: 6502 +employeeType: Normal +homePhone: +1 206 204-6200 +initials: E. M. +mobile: +1 206 427-2191 +pager: +1 206 341-5295 +roomNumber: 8315 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bellina Koens,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bellina Koens +sn: Koens +description: This is Bellina Koens's description +facsimileTelephoneNumber: +1 818 942-9516 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 818 635-4398 +title: Associate Management Punk +userPassword: Password1 +uid: KoensB +givenName: Bellina +mail: KoensB@c6e9ac083cc043b8883c6054dd35e8a8.bitwarden.com +carLicense: VUWADY +departmentNumber: 8877 +employeeType: Employee +homePhone: +1 818 366-3863 +initials: B. K. +mobile: +1 818 949-7395 +pager: +1 818 525-5547 +roomNumber: 8258 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lian Shapcott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lian Shapcott +sn: Shapcott +description: This is Lian Shapcott's description +facsimileTelephoneNumber: +1 415 178-5259 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 400-8871 +title: Supreme Human Resources Engineer +userPassword: Password1 +uid: ShapcotL +givenName: Lian +mail: ShapcotL@ac56a9f40fef46b4bb71769c6757745e.bitwarden.com +carLicense: R3KSB1 +departmentNumber: 2514 +employeeType: Contract +homePhone: +1 415 848-4922 +initials: L. S. +mobile: +1 415 889-4494 +pager: +1 415 816-3571 +roomNumber: 9014 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Florella Pichocki,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florella Pichocki +sn: Pichocki +description: This is Florella Pichocki's description +facsimileTelephoneNumber: +1 408 574-2091 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 965-4948 +title: Chief Management Fellow +userPassword: Password1 +uid: PichockF +givenName: Florella +mail: PichockF@f10e733ab73f49deaef5dee5420e792f.bitwarden.com +carLicense: 3VSU4X +departmentNumber: 6166 +employeeType: Employee +homePhone: +1 408 109-8616 +initials: F. P. +mobile: +1 408 953-3207 +pager: +1 408 525-9645 +roomNumber: 8919 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maribel Zafarano,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maribel Zafarano +sn: Zafarano +description: This is Maribel Zafarano's description +facsimileTelephoneNumber: +1 213 556-1770 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 295-2461 +title: Junior Management Stooge +userPassword: Password1 +uid: ZafaranM +givenName: Maribel +mail: ZafaranM@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com +carLicense: OTWQ7I +departmentNumber: 6269 +employeeType: Employee +homePhone: +1 213 111-9091 +initials: M. Z. +mobile: +1 213 460-5949 +pager: +1 213 466-2685 +roomNumber: 9110 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ren Dickerson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ren Dickerson +sn: Dickerson +description: This is Ren Dickerson's description +facsimileTelephoneNumber: +1 206 894-9064 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 865-7377 +title: Junior Administrative Director +userPassword: Password1 +uid: DickersR +givenName: Ren +mail: DickersR@16c9187062174be89c2c9f0c8fb48cf0.bitwarden.com +carLicense: W6TYMH +departmentNumber: 4609 +employeeType: Employee +homePhone: +1 206 421-7473 +initials: R. D. +mobile: +1 206 736-9400 +pager: +1 206 288-3110 +roomNumber: 8254 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Darla Puglia,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darla Puglia +sn: Puglia +description: This is Darla Puglia's description +facsimileTelephoneNumber: +1 818 491-1108 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 783-7599 +title: Chief Human Resources Janitor +userPassword: Password1 +uid: PugliaD +givenName: Darla +mail: PugliaD@881099fe370d45e6aa7b0854814780fd.bitwarden.com +carLicense: WG1JUV +departmentNumber: 2262 +employeeType: Employee +homePhone: +1 818 513-9386 +initials: D. P. +mobile: +1 818 837-7464 +pager: +1 818 298-9743 +roomNumber: 9579 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stacee Mamoulides,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacee Mamoulides +sn: Mamoulides +description: This is Stacee Mamoulides's description +facsimileTelephoneNumber: +1 206 632-3785 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 771-9766 +title: Chief Peons Janitor +userPassword: Password1 +uid: MamouliS +givenName: Stacee +mail: MamouliS@9350b9be3864496bacd0e267723dff37.bitwarden.com +carLicense: FUVG7S +departmentNumber: 9914 +employeeType: Normal +homePhone: +1 206 598-8560 +initials: S. M. +mobile: +1 206 979-5567 +pager: +1 206 285-4284 +roomNumber: 9167 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Adrien Bennatt,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrien Bennatt +sn: Bennatt +description: This is Adrien Bennatt's description +facsimileTelephoneNumber: +1 408 128-5165 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 211-3448 +title: Chief Management Dictator +userPassword: Password1 +uid: BennattA +givenName: Adrien +mail: BennattA@1df73cc203344a569c1b4737122f78a2.bitwarden.com +carLicense: MXPHEF +departmentNumber: 7852 +employeeType: Normal +homePhone: +1 408 637-5034 +initials: A. B. +mobile: +1 408 297-1326 +pager: +1 408 377-2664 +roomNumber: 8665 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Stesha Cotten,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stesha Cotten +sn: Cotten +description: This is Stesha Cotten's description +facsimileTelephoneNumber: +1 804 381-6061 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 804 475-2755 +title: Chief Payroll Engineer +userPassword: Password1 +uid: CottenS +givenName: Stesha +mail: CottenS@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com +carLicense: 53D0XM +departmentNumber: 5385 +employeeType: Contract +homePhone: +1 804 123-8560 +initials: S. C. +mobile: +1 804 891-5281 +pager: +1 804 271-3280 +roomNumber: 9450 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bregitte Kawauchi +sn: Kawauchi +description: This is Bregitte Kawauchi's description +facsimileTelephoneNumber: +1 510 858-6143 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 180-2288 +title: Junior Payroll Admin +userPassword: Password1 +uid: KawauchB +givenName: Bregitte +mail: KawauchB@43194b35694143d5b8419715c0e79567.bitwarden.com +carLicense: QEJ62O +departmentNumber: 1665 +employeeType: Employee +homePhone: +1 510 404-7492 +initials: B. K. +mobile: +1 510 185-9670 +pager: +1 510 281-4231 +roomNumber: 9009 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ryann McRonald,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ryann McRonald +sn: McRonald +description: This is Ryann McRonald's description +facsimileTelephoneNumber: +1 804 812-4544 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 516-3502 +title: Master Management Assistant +userPassword: Password1 +uid: McRonalR +givenName: Ryann +mail: McRonalR@4eab057e70644dff8f3d5ac041be0877.bitwarden.com +carLicense: P8K0CG +departmentNumber: 3174 +employeeType: Employee +homePhone: +1 804 380-7692 +initials: R. M. +mobile: +1 804 888-5261 +pager: +1 804 985-1333 +roomNumber: 9510 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Joete Pham,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joete Pham +sn: Pham +description: This is Joete Pham's description +facsimileTelephoneNumber: +1 818 708-4767 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 818 550-5194 +title: Chief Product Development Sales Rep +userPassword: Password1 +uid: PhamJ +givenName: Joete +mail: PhamJ@e57a80c33f4143ecb7f38726907bcc9d.bitwarden.com +carLicense: D5T474 +departmentNumber: 1600 +employeeType: Employee +homePhone: +1 818 257-3239 +initials: J. P. +mobile: +1 818 281-2879 +pager: +1 818 204-5628 +roomNumber: 9868 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kimmie Dyess,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kimmie Dyess +sn: Dyess +description: This is Kimmie Dyess's description +facsimileTelephoneNumber: +1 206 879-9008 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 666-7292 +title: Junior Management Warrior +userPassword: Password1 +uid: DyessK +givenName: Kimmie +mail: DyessK@8a7d5133f2fc4397a30a337937403b76.bitwarden.com +carLicense: V96N5I +departmentNumber: 4375 +employeeType: Employee +homePhone: +1 206 540-5750 +initials: K. D. +mobile: +1 206 131-6220 +pager: +1 206 565-3112 +roomNumber: 9005 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Crin Seeley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crin Seeley +sn: Seeley +description: This is Crin Seeley's description +facsimileTelephoneNumber: +1 818 512-5317 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 313-8581 +title: Chief Administrative Warrior +userPassword: Password1 +uid: SeeleyC +givenName: Crin +mail: SeeleyC@7b437b94250d4fbb8fc2d7ab00cc547b.bitwarden.com +carLicense: 4JLQ9C +departmentNumber: 1927 +employeeType: Employee +homePhone: +1 818 447-3523 +initials: C. S. +mobile: +1 818 480-9540 +pager: +1 818 825-2018 +roomNumber: 8723 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eleni Mozeleski +sn: Mozeleski +description: This is Eleni Mozeleski's description +facsimileTelephoneNumber: +1 408 751-3933 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 610-1666 +title: Junior Product Development Technician +userPassword: Password1 +uid: MozelesE +givenName: Eleni +mail: MozelesE@918d2d4077734b5f89b3311e0d63e21b.bitwarden.com +carLicense: ASCXEA +departmentNumber: 6477 +employeeType: Employee +homePhone: +1 408 437-1527 +initials: E. M. +mobile: +1 408 526-7975 +pager: +1 408 342-2931 +roomNumber: 8641 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mercie Polson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mercie Polson +sn: Polson +description: This is Mercie Polson's description +facsimileTelephoneNumber: +1 415 519-7955 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 621-1561 +title: Master Product Testing Writer +userPassword: Password1 +uid: PolsonM +givenName: Mercie +mail: PolsonM@19fdb24d6d9d48abb4a5fe5ad5b743d2.bitwarden.com +carLicense: X15DC3 +departmentNumber: 5147 +employeeType: Employee +homePhone: +1 415 521-8659 +initials: M. P. +mobile: +1 415 344-1155 +pager: +1 415 510-9275 +roomNumber: 9260 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elvert Tripp,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elvert Tripp +sn: Tripp +description: This is Elvert Tripp's description +facsimileTelephoneNumber: +1 510 889-8304 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 885-6651 +title: Chief Payroll Stooge +userPassword: Password1 +uid: TrippE +givenName: Elvert +mail: TrippE@4fd308eba088404ab84d4a632c943b2d.bitwarden.com +carLicense: CA204C +departmentNumber: 7336 +employeeType: Normal +homePhone: +1 510 484-3011 +initials: E. T. +mobile: +1 510 149-5478 +pager: +1 510 625-6597 +roomNumber: 9155 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mead Urquhart,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mead Urquhart +sn: Urquhart +description: This is Mead Urquhart's description +facsimileTelephoneNumber: +1 804 923-1551 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 175-8859 +title: Associate Payroll Dictator +userPassword: Password1 +uid: UrquharM +givenName: Mead +mail: UrquharM@2370f86ee68f4e849137b28f2aad76d4.bitwarden.com +carLicense: YHV2QI +departmentNumber: 6981 +employeeType: Normal +homePhone: +1 804 374-1905 +initials: M. U. +mobile: +1 804 178-6776 +pager: +1 804 283-3258 +roomNumber: 8962 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jan Delorenzi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jan Delorenzi +sn: Delorenzi +description: This is Jan Delorenzi's description +facsimileTelephoneNumber: +1 408 972-7600 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 272-6433 +title: Chief Payroll Dictator +userPassword: Password1 +uid: DelorenJ +givenName: Jan +mail: DelorenJ@97baadb605a44ba996abfdd024e13b4a.bitwarden.com +carLicense: WUW92Y +departmentNumber: 1886 +employeeType: Normal +homePhone: +1 408 720-4134 +initials: J. D. +mobile: +1 408 271-2321 +pager: +1 408 204-1784 +roomNumber: 9494 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Johnny Stetter,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnny Stetter +sn: Stetter +description: This is Johnny Stetter's description +facsimileTelephoneNumber: +1 818 519-7632 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 662-3501 +title: Supreme Management Stooge +userPassword: Password1 +uid: StetterJ +givenName: Johnny +mail: StetterJ@1c4889d6f6ca4189816eb95971dafca2.bitwarden.com +carLicense: Q47L30 +departmentNumber: 7298 +employeeType: Contract +homePhone: +1 818 168-7384 +initials: J. S. +mobile: +1 818 801-3601 +pager: +1 818 884-4927 +roomNumber: 9614 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marjan Bourk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjan Bourk +sn: Bourk +description: This is Marjan Bourk's description +facsimileTelephoneNumber: +1 804 813-7734 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 839-7201 +title: Associate Management Punk +userPassword: Password1 +uid: BourkM +givenName: Marjan +mail: BourkM@8738fd425c2c456fa523b311dbe475c2.bitwarden.com +carLicense: 6BTDWX +departmentNumber: 2114 +employeeType: Contract +homePhone: +1 804 481-8078 +initials: M. B. +mobile: +1 804 942-9038 +pager: +1 804 719-3643 +roomNumber: 9842 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaclyn Maccallum +sn: Maccallum +description: This is Jaclyn Maccallum's description +facsimileTelephoneNumber: +1 408 445-1833 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 232-2643 +title: Associate Administrative Consultant +userPassword: Password1 +uid: MaccallJ +givenName: Jaclyn +mail: MaccallJ@20be35b03567473c9452a335266426a2.bitwarden.com +carLicense: EYECRH +departmentNumber: 2084 +employeeType: Employee +homePhone: +1 408 512-5655 +initials: J. M. +mobile: +1 408 723-9402 +pager: +1 408 466-5168 +roomNumber: 8916 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marjan Angell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjan Angell +sn: Angell +description: This is Marjan Angell's description +facsimileTelephoneNumber: +1 408 940-8109 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 359-5309 +title: Chief Human Resources Developer +userPassword: Password1 +uid: AngellM +givenName: Marjan +mail: AngellM@207f860f10124c3fa866addc10eb4455.bitwarden.com +carLicense: 7C7SXI +departmentNumber: 1887 +employeeType: Employee +homePhone: +1 408 454-7203 +initials: M. A. +mobile: +1 408 800-2706 +pager: +1 408 874-4627 +roomNumber: 9233 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Darrol Calder,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrol Calder +sn: Calder +description: This is Darrol Calder's description +facsimileTelephoneNumber: +1 804 493-1414 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 804 415-4314 +title: Associate Administrative Artist +userPassword: Password1 +uid: CalderD +givenName: Darrol +mail: CalderD@3876999ec69c4543970a2db25c726421.bitwarden.com +carLicense: Q26BI1 +departmentNumber: 3181 +employeeType: Normal +homePhone: +1 804 545-6743 +initials: D. C. +mobile: +1 804 133-1672 +pager: +1 804 859-1173 +roomNumber: 8764 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Meridian Buder,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meridian Buder +sn: Buder +description: This is Meridian Buder's description +facsimileTelephoneNumber: +1 804 308-1841 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 791-8366 +title: Master Payroll Mascot +userPassword: Password1 +uid: BuderM +givenName: Meridian +mail: BuderM@6319c042006048f592b024b86a54bed8.bitwarden.com +carLicense: TP7UH6 +departmentNumber: 5095 +employeeType: Employee +homePhone: +1 804 149-2859 +initials: M. B. +mobile: +1 804 161-9798 +pager: +1 804 674-9499 +roomNumber: 9590 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ericka Contardo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ericka Contardo +sn: Contardo +description: This is Ericka Contardo's description +facsimileTelephoneNumber: +1 415 741-3558 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 705-1465 +title: Junior Human Resources Assistant +userPassword: Password1 +uid: ContardE +givenName: Ericka +mail: ContardE@4ad5ae565d1a473a81525b1882b9931b.bitwarden.com +carLicense: 6BFJYN +departmentNumber: 5460 +employeeType: Normal +homePhone: +1 415 288-3829 +initials: E. C. +mobile: +1 415 907-8199 +pager: +1 415 851-5761 +roomNumber: 8934 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Saeed Liston,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saeed Liston +sn: Liston +description: This is Saeed Liston's description +facsimileTelephoneNumber: +1 213 146-7558 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 113-3053 +title: Supreme Peons Grunt +userPassword: Password1 +uid: ListonS +givenName: Saeed +mail: ListonS@7db6edd7156649fcb7ae93732caff60d.bitwarden.com +carLicense: TJ5AK8 +departmentNumber: 8012 +employeeType: Normal +homePhone: +1 213 709-3973 +initials: S. L. +mobile: +1 213 636-3520 +pager: +1 213 377-7665 +roomNumber: 9920 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherise Shackelford +sn: Shackelford +description: This is Cherise Shackelford's description +facsimileTelephoneNumber: +1 408 232-7228 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 273-8736 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: ShackelC +givenName: Cherise +mail: ShackelC@58351331fe224df1be3d4a98ae5bb106.bitwarden.com +carLicense: BHRX4O +departmentNumber: 3845 +employeeType: Normal +homePhone: +1 408 686-3891 +initials: C. S. +mobile: +1 408 127-4249 +pager: +1 408 483-8097 +roomNumber: 8087 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nettle Kuzemka +sn: Kuzemka +description: This is Nettle Kuzemka's description +facsimileTelephoneNumber: +1 408 482-7661 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 210-3591 +title: Master Human Resources Visionary +userPassword: Password1 +uid: KuzemkaN +givenName: Nettle +mail: KuzemkaN@5e7bd652b57e4d33a836a31c8d23e4f9.bitwarden.com +carLicense: MH7DS5 +departmentNumber: 9763 +employeeType: Contract +homePhone: +1 408 425-6837 +initials: N. K. +mobile: +1 408 502-3317 +pager: +1 408 100-8059 +roomNumber: 9680 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosamond Burkepile +sn: Burkepile +description: This is Rosamond Burkepile's description +facsimileTelephoneNumber: +1 206 371-7907 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 547-2506 +title: Supreme Janitorial President +userPassword: Password1 +uid: BurkepiR +givenName: Rosamond +mail: BurkepiR@fa3e145865f0441f8b1263a859d170e6.bitwarden.com +carLicense: PWCIB0 +departmentNumber: 2809 +employeeType: Employee +homePhone: +1 206 460-5340 +initials: R. B. +mobile: +1 206 682-1966 +pager: +1 206 446-7890 +roomNumber: 8405 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cinnamon Jurman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cinnamon Jurman +sn: Jurman +description: This is Cinnamon Jurman's description +facsimileTelephoneNumber: +1 206 772-8450 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 206 922-7481 +title: Associate Peons Czar +userPassword: Password1 +uid: JurmanC +givenName: Cinnamon +mail: JurmanC@bb172de44ec2458f9c918f47583b4d80.bitwarden.com +carLicense: 3OG120 +departmentNumber: 5348 +employeeType: Employee +homePhone: +1 206 239-6417 +initials: C. J. +mobile: +1 206 191-5997 +pager: +1 206 944-5603 +roomNumber: 9271 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Karlie Hord,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlie Hord +sn: Hord +description: This is Karlie Hord's description +facsimileTelephoneNumber: +1 206 864-3716 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 635-7284 +title: Junior Peons Technician +userPassword: Password1 +uid: HordK +givenName: Karlie +mail: HordK@d147229253264c2b9b78c661dfda7cde.bitwarden.com +carLicense: MUFHV9 +departmentNumber: 7950 +employeeType: Normal +homePhone: +1 206 585-8468 +initials: K. H. +mobile: +1 206 608-1569 +pager: +1 206 743-8101 +roomNumber: 8953 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ozlem Switching,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ozlem Switching +sn: Switching +description: This is Ozlem Switching's description +facsimileTelephoneNumber: +1 206 502-6852 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 719-4343 +title: Junior Peons Madonna +userPassword: Password1 +uid: SwitchiO +givenName: Ozlem +mail: SwitchiO@526b2e31e79b488fb63ef0570005204a.bitwarden.com +carLicense: YSXCJ3 +departmentNumber: 4346 +employeeType: Normal +homePhone: +1 206 882-3890 +initials: O. S. +mobile: +1 206 563-7768 +pager: +1 206 317-9071 +roomNumber: 8027 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Seven Figura,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seven Figura +sn: Figura +description: This is Seven Figura's description +facsimileTelephoneNumber: +1 510 219-7525 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 510 537-4057 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: FiguraS +givenName: Seven +mail: FiguraS@f81c7db8a94146de916a4b35349336d8.bitwarden.com +carLicense: 205CUS +departmentNumber: 1693 +employeeType: Normal +homePhone: +1 510 574-4680 +initials: S. F. +mobile: +1 510 377-6769 +pager: +1 510 207-8935 +roomNumber: 8606 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Birendra Helton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Birendra Helton +sn: Helton +description: This is Birendra Helton's description +facsimileTelephoneNumber: +1 415 439-4447 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 148-5492 +title: Associate Product Development Evangelist +userPassword: Password1 +uid: HeltonB +givenName: Birendra +mail: HeltonB@f7d02b716b224e868c9d7b6fe1dd0e0b.bitwarden.com +carLicense: 1ISX0F +departmentNumber: 4548 +employeeType: Employee +homePhone: +1 415 684-3146 +initials: B. H. +mobile: +1 415 617-2642 +pager: +1 415 991-8618 +roomNumber: 8566 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Madan Babcock,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madan Babcock +sn: Babcock +description: This is Madan Babcock's description +facsimileTelephoneNumber: +1 510 911-9637 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 165-3562 +title: Chief Management Engineer +userPassword: Password1 +uid: BabcockM +givenName: Madan +mail: BabcockM@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com +carLicense: UJKOAL +departmentNumber: 2465 +employeeType: Employee +homePhone: +1 510 789-6374 +initials: M. B. +mobile: +1 510 588-1193 +pager: +1 510 612-1777 +roomNumber: 8253 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mandi Whitford,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mandi Whitford +sn: Whitford +description: This is Mandi Whitford's description +facsimileTelephoneNumber: +1 415 423-9140 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 421-9271 +title: Chief Janitorial Grunt +userPassword: Password1 +uid: WhitforM +givenName: Mandi +mail: WhitforM@3f891cf88f8f4b9cb80e52276f5b9b1c.bitwarden.com +carLicense: I1EMQ9 +departmentNumber: 1120 +employeeType: Contract +homePhone: +1 415 924-5455 +initials: M. W. +mobile: +1 415 235-7259 +pager: +1 415 122-4346 +roomNumber: 9184 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ilse Silwer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilse Silwer +sn: Silwer +description: This is Ilse Silwer's description +facsimileTelephoneNumber: +1 213 777-3938 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 563-1167 +title: Supreme Product Testing Writer +userPassword: Password1 +uid: SilwerI +givenName: Ilse +mail: SilwerI@daa517e67d894816b4a47e43cd62e356.bitwarden.com +carLicense: EBIPM3 +departmentNumber: 6995 +employeeType: Normal +homePhone: +1 213 629-9582 +initials: I. S. +mobile: +1 213 766-1274 +pager: +1 213 785-1096 +roomNumber: 9637 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tommy Fabry,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tommy Fabry +sn: Fabry +description: This is Tommy Fabry's description +facsimileTelephoneNumber: +1 818 834-7804 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 315-6642 +title: Master Administrative Warrior +userPassword: Password1 +uid: FabryT +givenName: Tommy +mail: FabryT@3f5b9048c8924fec87576c273249cede.bitwarden.com +carLicense: PJ20FB +departmentNumber: 5401 +employeeType: Employee +homePhone: +1 818 395-9359 +initials: T. F. +mobile: +1 818 402-8512 +pager: +1 818 234-9935 +roomNumber: 9854 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Doloritas Renton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doloritas Renton +sn: Renton +description: This is Doloritas Renton's description +facsimileTelephoneNumber: +1 213 456-3785 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 213 363-6057 +title: Junior Peons Visionary +userPassword: Password1 +uid: RentonD +givenName: Doloritas +mail: RentonD@75230f61780f4e0e9cf624359c2b6622.bitwarden.com +carLicense: BJEHY1 +departmentNumber: 2813 +employeeType: Employee +homePhone: +1 213 783-6163 +initials: D. R. +mobile: +1 213 736-4760 +pager: +1 213 781-8028 +roomNumber: 8295 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Beb Carlson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beb Carlson +sn: Carlson +description: This is Beb Carlson's description +facsimileTelephoneNumber: +1 415 788-5489 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 459-3920 +title: Junior Payroll Artist +userPassword: Password1 +uid: CarlsonB +givenName: Beb +mail: CarlsonB@bc1068ff7c5a442e884cab9ab7c4508b.bitwarden.com +carLicense: PQJUUP +departmentNumber: 4647 +employeeType: Employee +homePhone: +1 415 671-5530 +initials: B. C. +mobile: +1 415 284-6877 +pager: +1 415 308-1756 +roomNumber: 9293 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hedy Hobbs +sn: Hobbs +description: This is Hedy Hobbs's description +facsimileTelephoneNumber: +1 206 759-4058 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 839-4669 +title: Chief Product Testing Janitor +userPassword: Password1 +uid: HobbsH +givenName: Hedy +mail: HobbsH@fca42d05acbe47a69668ab85d76a4968.bitwarden.com +carLicense: AWWS1S +departmentNumber: 1188 +employeeType: Normal +homePhone: +1 206 517-5819 +initials: H. H. +mobile: +1 206 159-7373 +pager: +1 206 451-7913 +roomNumber: 8889 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faustina Bombardier +sn: Bombardier +description: This is Faustina Bombardier's description +facsimileTelephoneNumber: +1 510 668-4032 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 338-6758 +title: Master Product Testing Admin +userPassword: Password1 +uid: BombardF +givenName: Faustina +mail: BombardF@a4ddeff635f14fe6b72b17daaba90627.bitwarden.com +carLicense: R3L242 +departmentNumber: 3648 +employeeType: Normal +homePhone: +1 510 730-5848 +initials: F. B. +mobile: +1 510 881-4410 +pager: +1 510 149-7811 +roomNumber: 8350 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Audrey Charchanko,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Audrey Charchanko +sn: Charchanko +description: This is Audrey Charchanko's description +facsimileTelephoneNumber: +1 206 670-3823 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 275-8990 +title: Supreme Peons Fellow +userPassword: Password1 +uid: CharchaA +givenName: Audrey +mail: CharchaA@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com +carLicense: 06A9M4 +departmentNumber: 8452 +employeeType: Contract +homePhone: +1 206 404-5184 +initials: A. C. +mobile: +1 206 825-4252 +pager: +1 206 863-5692 +roomNumber: 8205 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Grantley Walles,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grantley Walles +sn: Walles +description: This is Grantley Walles's description +facsimileTelephoneNumber: +1 206 973-3140 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 206 348-6072 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: WallesG +givenName: Grantley +mail: WallesG@da5a908240674035b4f089697eec14f2.bitwarden.com +carLicense: LHGU6U +departmentNumber: 3404 +employeeType: Normal +homePhone: +1 206 839-6692 +initials: G. W. +mobile: +1 206 129-3962 +pager: +1 206 230-2186 +roomNumber: 9843 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vale Yost,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vale Yost +sn: Yost +description: This is Vale Yost's description +facsimileTelephoneNumber: +1 213 317-2104 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 261-1073 +title: Associate Payroll Sales Rep +userPassword: Password1 +uid: YostV +givenName: Vale +mail: YostV@f491657ce6cf49f2abe50f84c8f0d067.bitwarden.com +carLicense: H6R6TD +departmentNumber: 9044 +employeeType: Normal +homePhone: +1 213 580-9187 +initials: V. Y. +mobile: +1 213 533-7011 +pager: +1 213 476-6898 +roomNumber: 8504 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kalie Krausbar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalie Krausbar +sn: Krausbar +description: This is Kalie Krausbar's description +facsimileTelephoneNumber: +1 818 433-6295 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 178-6933 +title: Junior Management Punk +userPassword: Password1 +uid: KrausbaK +givenName: Kalie +mail: KrausbaK@742e6acfb3ee43e195f05147276956cf.bitwarden.com +carLicense: 7F8CO2 +departmentNumber: 6159 +employeeType: Contract +homePhone: +1 818 810-2703 +initials: K. K. +mobile: +1 818 355-5041 +pager: +1 818 800-6407 +roomNumber: 9284 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Martino Busby,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martino Busby +sn: Busby +description: This is Martino Busby's description +facsimileTelephoneNumber: +1 818 190-6357 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 398-4647 +title: Associate Product Testing Director +userPassword: Password1 +uid: BusbyM +givenName: Martino +mail: BusbyM@bb1a549f208840af8ec52ae7c5ebc4f5.bitwarden.com +carLicense: 48FXUC +departmentNumber: 7067 +employeeType: Contract +homePhone: +1 818 222-6941 +initials: M. B. +mobile: +1 818 615-7091 +pager: +1 818 282-5535 +roomNumber: 9175 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Selma Kletchko,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selma Kletchko +sn: Kletchko +description: This is Selma Kletchko's description +facsimileTelephoneNumber: +1 415 305-5670 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 387-1352 +title: Associate Administrative Consultant +userPassword: Password1 +uid: KletchkS +givenName: Selma +mail: KletchkS@e59e7dc5561842d286fd6dfedfe8fb9a.bitwarden.com +carLicense: TS6IOD +departmentNumber: 2106 +employeeType: Normal +homePhone: +1 415 258-6836 +initials: S. K. +mobile: +1 415 596-3719 +pager: +1 415 368-2362 +roomNumber: 8237 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lineth Montoute,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lineth Montoute +sn: Montoute +description: This is Lineth Montoute's description +facsimileTelephoneNumber: +1 213 514-4489 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 338-4524 +title: Master Administrative Mascot +userPassword: Password1 +uid: MontoutL +givenName: Lineth +mail: MontoutL@89d4d4d86ff240e7ab94041e1f247e61.bitwarden.com +carLicense: INO8CB +departmentNumber: 2763 +employeeType: Contract +homePhone: +1 213 112-6061 +initials: L. M. +mobile: +1 213 170-4390 +pager: +1 213 955-6353 +roomNumber: 8240 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jolie Langenberg,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolie Langenberg +sn: Langenberg +description: This is Jolie Langenberg's description +facsimileTelephoneNumber: +1 213 494-3726 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 677-1780 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: LangenbJ +givenName: Jolie +mail: LangenbJ@f07caf5199104113b8565ebc43aef936.bitwarden.com +carLicense: MERV4F +departmentNumber: 1936 +employeeType: Contract +homePhone: +1 213 538-9531 +initials: J. L. +mobile: +1 213 324-1460 +pager: +1 213 701-6547 +roomNumber: 9435 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carm Mach,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carm Mach +sn: Mach +description: This is Carm Mach's description +facsimileTelephoneNumber: +1 213 916-7247 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 396-5799 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: MachC +givenName: Carm +mail: MachC@acd42583d3044f41816fc62eb7992816.bitwarden.com +carLicense: 183LRR +departmentNumber: 5033 +employeeType: Contract +homePhone: +1 213 246-1252 +initials: C. M. +mobile: +1 213 725-4084 +pager: +1 213 952-9933 +roomNumber: 8196 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HackHoo Paoletti +sn: Paoletti +description: This is HackHoo Paoletti's description +facsimileTelephoneNumber: +1 213 310-5072 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 708-3835 +title: Supreme Product Development Stooge +userPassword: Password1 +uid: PaolettH +givenName: HackHoo +mail: PaolettH@d5cc15f6bb6b4357bd0ce84100b284f9.bitwarden.com +carLicense: MYRLOD +departmentNumber: 7802 +employeeType: Employee +homePhone: +1 213 501-4076 +initials: H. P. +mobile: +1 213 698-1217 +pager: +1 213 595-1211 +roomNumber: 9913 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Radio Balog,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Radio Balog +sn: Balog +description: This is Radio Balog's description +facsimileTelephoneNumber: +1 206 349-5092 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 662-9712 +title: Associate Janitorial Admin +userPassword: Password1 +uid: BalogR +givenName: Radio +mail: BalogR@72030161dcd24217be14766e527d14fa.bitwarden.com +carLicense: NGIVAX +departmentNumber: 2919 +employeeType: Employee +homePhone: +1 206 183-3538 +initials: R. B. +mobile: +1 206 435-8622 +pager: +1 206 592-5105 +roomNumber: 9330 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Zere Zafarullah,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zere Zafarullah +sn: Zafarullah +description: This is Zere Zafarullah's description +facsimileTelephoneNumber: +1 213 469-7258 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 509-4991 +title: Junior Management Madonna +userPassword: Password1 +uid: ZafarulZ +givenName: Zere +mail: ZafarulZ@478c327328034508a65f2bbc1dd25518.bitwarden.com +carLicense: PM6EY2 +departmentNumber: 4160 +employeeType: Contract +homePhone: +1 213 418-2402 +initials: Z. Z. +mobile: +1 213 289-2848 +pager: +1 213 549-1499 +roomNumber: 8561 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Waly Grabowski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Waly Grabowski +sn: Grabowski +description: This is Waly Grabowski's description +facsimileTelephoneNumber: +1 206 201-2546 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 933-1053 +title: Supreme Management Madonna +userPassword: Password1 +uid: GrabowsW +givenName: Waly +mail: GrabowsW@f01b8c6e19b14b049532cb6664f8caaa.bitwarden.com +carLicense: 1FPM3G +departmentNumber: 8725 +employeeType: Contract +homePhone: +1 206 353-2459 +initials: W. G. +mobile: +1 206 416-2737 +pager: +1 206 918-2584 +roomNumber: 9877 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dallas Smelters,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dallas Smelters +sn: Smelters +description: This is Dallas Smelters's description +facsimileTelephoneNumber: +1 818 975-3508 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 723-5766 +title: Supreme Product Testing Technician +userPassword: Password1 +uid: SmelterD +givenName: Dallas +mail: SmelterD@dd6aa42254414b099b5f31cdae049e72.bitwarden.com +carLicense: 1BH59W +departmentNumber: 8091 +employeeType: Contract +homePhone: +1 818 285-1426 +initials: D. S. +mobile: +1 818 659-4398 +pager: +1 818 134-2557 +roomNumber: 9486 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Izzy Culbreth +sn: Culbreth +description: This is Izzy Culbreth's description +facsimileTelephoneNumber: +1 510 224-8187 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 934-9820 +title: Master Product Testing Consultant +userPassword: Password1 +uid: CulbretI +givenName: Izzy +mail: CulbretI@8f698818b35041d38a84f1c71ca57e14.bitwarden.com +carLicense: TLTG5M +departmentNumber: 7972 +employeeType: Normal +homePhone: +1 510 758-2512 +initials: I. C. +mobile: +1 510 319-9267 +pager: +1 510 248-3504 +roomNumber: 9525 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Zalee Caron,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zalee Caron +sn: Caron +description: This is Zalee Caron's description +facsimileTelephoneNumber: +1 510 194-4567 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 212-8085 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: CaronZ +givenName: Zalee +mail: CaronZ@5acaf493974e4933b27d5e78e25585d3.bitwarden.com +carLicense: W4AJE3 +departmentNumber: 6149 +employeeType: Employee +homePhone: +1 510 447-8346 +initials: Z. C. +mobile: +1 510 787-2543 +pager: +1 510 684-4788 +roomNumber: 9552 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Latashia Boutnikoff +sn: Boutnikoff +description: This is Latashia Boutnikoff's description +facsimileTelephoneNumber: +1 415 546-3580 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 734-6504 +title: Junior Peons Technician +userPassword: Password1 +uid: BoutnikL +givenName: Latashia +mail: BoutnikL@1919ee78614547cbb38642c8afc73045.bitwarden.com +carLicense: FFNE7D +departmentNumber: 9429 +employeeType: Contract +homePhone: +1 415 174-6101 +initials: L. B. +mobile: +1 415 947-4727 +pager: +1 415 921-6248 +roomNumber: 9370 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Konstanze Cordell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Konstanze Cordell +sn: Cordell +description: This is Konstanze Cordell's description +facsimileTelephoneNumber: +1 818 225-7252 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 115-3440 +title: Supreme Administrative Punk +userPassword: Password1 +uid: CordellK +givenName: Konstanze +mail: CordellK@685a3d9fd790422d8fb825f7a90cab65.bitwarden.com +carLicense: AWU1HX +departmentNumber: 5636 +employeeType: Contract +homePhone: +1 818 907-2034 +initials: K. C. +mobile: +1 818 539-5863 +pager: +1 818 455-4316 +roomNumber: 8058 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Froukje Ecker,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Froukje Ecker +sn: Ecker +description: This is Froukje Ecker's description +facsimileTelephoneNumber: +1 213 599-2811 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 552-3760 +title: Junior Management Architect +userPassword: Password1 +uid: EckerF +givenName: Froukje +mail: EckerF@b778c029c2264b3089247adae57812bf.bitwarden.com +carLicense: A6T3YS +departmentNumber: 7783 +employeeType: Normal +homePhone: +1 213 444-8250 +initials: F. E. +mobile: +1 213 373-1950 +pager: +1 213 609-2520 +roomNumber: 9213 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Petri Uhlig,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petri Uhlig +sn: Uhlig +description: This is Petri Uhlig's description +facsimileTelephoneNumber: +1 415 229-5321 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 381-9206 +title: Master Payroll Fellow +userPassword: Password1 +uid: UhligP +givenName: Petri +mail: UhligP@6cba9523afcf470890bdfdaf46de0ca4.bitwarden.com +carLicense: E9RDG4 +departmentNumber: 5595 +employeeType: Employee +homePhone: +1 415 873-2088 +initials: P. U. +mobile: +1 415 834-1698 +pager: +1 415 753-7789 +roomNumber: 8748 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tessa Pino,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tessa Pino +sn: Pino +description: This is Tessa Pino's description +facsimileTelephoneNumber: +1 510 288-9324 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 510 448-5143 +title: Master Product Testing Visionary +userPassword: Password1 +uid: PinoT +givenName: Tessa +mail: PinoT@a131fffbdaa44e2aab56ba41e197cf57.bitwarden.com +carLicense: WWWS29 +departmentNumber: 5048 +employeeType: Normal +homePhone: +1 510 534-8318 +initials: T. P. +mobile: +1 510 104-5487 +pager: +1 510 891-3645 +roomNumber: 8990 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christiana Bielejeski +sn: Bielejeski +description: This is Christiana Bielejeski's description +facsimileTelephoneNumber: +1 818 663-2997 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 910-5385 +title: Master Human Resources Evangelist +userPassword: Password1 +uid: BielejeC +givenName: Christiana +mail: BielejeC@a8e48278603d4ab3aacfb1fa680fc937.bitwarden.com +carLicense: MTFNLU +departmentNumber: 3587 +employeeType: Employee +homePhone: +1 818 548-4045 +initials: C. B. +mobile: +1 818 244-1478 +pager: +1 818 940-6387 +roomNumber: 9263 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Britni Routing,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Britni Routing +sn: Routing +description: This is Britni Routing's description +facsimileTelephoneNumber: +1 408 427-7860 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 344-6048 +title: Associate Administrative Director +userPassword: Password1 +uid: RoutingB +givenName: Britni +mail: RoutingB@22b38e3187c1496caaed86c5083e47f0.bitwarden.com +carLicense: 74CB5K +departmentNumber: 2075 +employeeType: Normal +homePhone: +1 408 992-6197 +initials: B. R. +mobile: +1 408 455-2929 +pager: +1 408 183-7381 +roomNumber: 8993 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Michelle Mirza,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michelle Mirza +sn: Mirza +description: This is Michelle Mirza's description +facsimileTelephoneNumber: +1 804 237-5245 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 517-9336 +title: Master Human Resources Madonna +userPassword: Password1 +uid: MirzaM +givenName: Michelle +mail: MirzaM@2c4465aec0574a929626eaed8fd03343.bitwarden.com +carLicense: 1XLX20 +departmentNumber: 7699 +employeeType: Contract +homePhone: +1 804 877-6212 +initials: M. M. +mobile: +1 804 690-7054 +pager: +1 804 645-5742 +roomNumber: 8321 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Starlin Schilling,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Starlin Schilling +sn: Schilling +description: This is Starlin Schilling's description +facsimileTelephoneNumber: +1 206 341-7674 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 243-6617 +title: Associate Human Resources Technician +userPassword: Password1 +uid: SchilliS +givenName: Starlin +mail: SchilliS@98037b50a4ca4f29b8fad60c1bb6a197.bitwarden.com +carLicense: W2336J +departmentNumber: 8435 +employeeType: Contract +homePhone: +1 206 612-2247 +initials: S. S. +mobile: +1 206 639-8458 +pager: +1 206 728-5835 +roomNumber: 8105 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Manya Cripps,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manya Cripps +sn: Cripps +description: This is Manya Cripps's description +facsimileTelephoneNumber: +1 206 714-5279 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 923-2552 +title: Junior Administrative Mascot +userPassword: Password1 +uid: CrippsM +givenName: Manya +mail: CrippsM@92f1d5dfabbf4e5bb19678383b93b294.bitwarden.com +carLicense: NGEA5P +departmentNumber: 6680 +employeeType: Normal +homePhone: +1 206 752-8921 +initials: M. C. +mobile: +1 206 581-4891 +pager: +1 206 824-3393 +roomNumber: 9644 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Esther Buttrey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esther Buttrey +sn: Buttrey +description: This is Esther Buttrey's description +facsimileTelephoneNumber: +1 408 225-8537 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 741-6245 +title: Associate Product Development Manager +userPassword: Password1 +uid: ButtreyE +givenName: Esther +mail: ButtreyE@0ea39720ccd849b98e8f01497c06b283.bitwarden.com +carLicense: YXEBXK +departmentNumber: 5708 +employeeType: Employee +homePhone: +1 408 448-6936 +initials: E. B. +mobile: +1 408 902-6314 +pager: +1 408 475-8915 +roomNumber: 9580 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tamma Sellwood,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamma Sellwood +sn: Sellwood +description: This is Tamma Sellwood's description +facsimileTelephoneNumber: +1 804 709-9812 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 646-4615 +title: Junior Administrative Janitor +userPassword: Password1 +uid: SellwooT +givenName: Tamma +mail: SellwooT@549f8ec8bbb34adfa377866293c57a0c.bitwarden.com +carLicense: RFP313 +departmentNumber: 2701 +employeeType: Employee +homePhone: +1 804 906-7645 +initials: T. S. +mobile: +1 804 142-1520 +pager: +1 804 783-8964 +roomNumber: 8967 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=RongChin Fisher,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: RongChin Fisher +sn: Fisher +description: This is RongChin Fisher's description +facsimileTelephoneNumber: +1 510 103-4377 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 542-1795 +title: Associate Management Writer +userPassword: Password1 +uid: FisherR +givenName: RongChin +mail: FisherR@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com +carLicense: 1I4WOQ +departmentNumber: 9450 +employeeType: Normal +homePhone: +1 510 582-2121 +initials: R. F. +mobile: +1 510 875-3828 +pager: +1 510 234-4683 +roomNumber: 8218 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karena Bissegger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karena Bissegger +sn: Bissegger +description: This is Karena Bissegger's description +facsimileTelephoneNumber: +1 206 207-6646 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 546-4747 +title: Junior Human Resources Writer +userPassword: Password1 +uid: BisseggK +givenName: Karena +mail: BisseggK@8111da611c964d98a3dc51af12640e1f.bitwarden.com +carLicense: FH7S1Y +departmentNumber: 5817 +employeeType: Normal +homePhone: +1 206 678-3940 +initials: K. B. +mobile: +1 206 165-5723 +pager: +1 206 992-3228 +roomNumber: 9094 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbra Skerlak +sn: Skerlak +description: This is Barbra Skerlak's description +facsimileTelephoneNumber: +1 408 663-6825 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 539-9774 +title: Associate Janitorial Developer +userPassword: Password1 +uid: SkerlakB +givenName: Barbra +mail: SkerlakB@c41f8f7aea354718b6ea3277359c3684.bitwarden.com +carLicense: BIBGML +departmentNumber: 9055 +employeeType: Normal +homePhone: +1 408 897-1882 +initials: B. S. +mobile: +1 408 728-3785 +pager: +1 408 810-1295 +roomNumber: 8221 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cliff DOrazio +sn: DOrazio +description: This is Cliff DOrazio's description +facsimileTelephoneNumber: +1 818 699-3541 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 135-4323 +title: Master Human Resources Manager +userPassword: Password1 +uid: DOrazioC +givenName: Cliff +mail: DOrazioC@5670176255f949f78b023f460fb780c7.bitwarden.com +carLicense: BTRRDO +departmentNumber: 3261 +employeeType: Normal +homePhone: +1 818 612-2275 +initials: C. D. +mobile: +1 818 556-4817 +pager: +1 818 664-3655 +roomNumber: 8200 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynnelle Honkakangas +sn: Honkakangas +description: This is Lynnelle Honkakangas's description +facsimileTelephoneNumber: +1 510 970-3850 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 314-3936 +title: Junior Human Resources Manager +userPassword: Password1 +uid: HonkakaL +givenName: Lynnelle +mail: HonkakaL@baeeb32a45ba4c0a81a7005455fc2881.bitwarden.com +carLicense: 6GRD4P +departmentNumber: 3057 +employeeType: Normal +homePhone: +1 510 193-8217 +initials: L. H. +mobile: +1 510 582-8793 +pager: +1 510 280-8743 +roomNumber: 8347 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leena DeCristofaro +sn: DeCristofaro +description: This is Leena DeCristofaro's description +facsimileTelephoneNumber: +1 408 586-6109 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 383-9926 +title: Associate Product Development Assistant +userPassword: Password1 +uid: DeCristL +givenName: Leena +mail: DeCristL@57ee1e7c1faa4ce2b72c1469382238e6.bitwarden.com +carLicense: CH6K3C +departmentNumber: 7744 +employeeType: Employee +homePhone: +1 408 420-4975 +initials: L. D. +mobile: +1 408 147-1798 +pager: +1 408 163-9137 +roomNumber: 8260 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Zainab Musgrove,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zainab Musgrove +sn: Musgrove +description: This is Zainab Musgrove's description +facsimileTelephoneNumber: +1 408 651-1306 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 408 197-7791 +title: Supreme Peons Mascot +userPassword: Password1 +uid: MusgrovZ +givenName: Zainab +mail: MusgrovZ@47050585f7ac473188eb3868ce1763ef.bitwarden.com +carLicense: FKUS7H +departmentNumber: 1139 +employeeType: Normal +homePhone: +1 408 703-2865 +initials: Z. M. +mobile: +1 408 939-5838 +pager: +1 408 896-7067 +roomNumber: 8118 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rebekah Fenner,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebekah Fenner +sn: Fenner +description: This is Rebekah Fenner's description +facsimileTelephoneNumber: +1 213 216-1599 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 147-3379 +title: Chief Payroll Dictator +userPassword: Password1 +uid: FennerR +givenName: Rebekah +mail: FennerR@7710749ecc7b449a842362f5e9e1b148.bitwarden.com +carLicense: L65VTU +departmentNumber: 1540 +employeeType: Employee +homePhone: +1 213 492-1044 +initials: R. F. +mobile: +1 213 432-2446 +pager: +1 213 622-7786 +roomNumber: 9749 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gabey Florescu,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabey Florescu +sn: Florescu +description: This is Gabey Florescu's description +facsimileTelephoneNumber: +1 510 212-1194 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 286-3819 +title: Junior Peons Evangelist +userPassword: Password1 +uid: FlorescG +givenName: Gabey +mail: FlorescG@6d7476aff2da449e96bbd0ec87bf4d49.bitwarden.com +carLicense: EL95UP +departmentNumber: 2245 +employeeType: Normal +homePhone: +1 510 214-3482 +initials: G. F. +mobile: +1 510 827-3862 +pager: +1 510 596-4211 +roomNumber: 9785 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Padraig Scorziello,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Padraig Scorziello +sn: Scorziello +description: This is Padraig Scorziello's description +facsimileTelephoneNumber: +1 804 155-8507 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 227-8719 +title: Supreme Product Development Dictator +userPassword: Password1 +uid: ScorzieP +givenName: Padraig +mail: ScorzieP@01034db83e3b44ec835b5255948e4e0f.bitwarden.com +carLicense: R5W2P5 +departmentNumber: 8588 +employeeType: Normal +homePhone: +1 804 387-3095 +initials: P. S. +mobile: +1 804 929-8599 +pager: +1 804 347-6890 +roomNumber: 8201 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Clarisse Venne,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarisse Venne +sn: Venne +description: This is Clarisse Venne's description +facsimileTelephoneNumber: +1 213 100-8875 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 141-3613 +title: Master Administrative Pinhead +userPassword: Password1 +uid: VenneC +givenName: Clarisse +mail: VenneC@822da1d370d045aaadf5490626c311f7.bitwarden.com +carLicense: XSNOCA +departmentNumber: 9441 +employeeType: Normal +homePhone: +1 213 705-2733 +initials: C. V. +mobile: +1 213 450-3977 +pager: +1 213 728-5537 +roomNumber: 9408 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sally Gimon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sally Gimon +sn: Gimon +description: This is Sally Gimon's description +facsimileTelephoneNumber: +1 510 549-9610 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 510 876-7691 +title: Junior Product Testing Artist +userPassword: Password1 +uid: GimonS +givenName: Sally +mail: GimonS@5b47dd9dbc1945a4a16e83a582215989.bitwarden.com +carLicense: FGA2NF +departmentNumber: 4315 +employeeType: Employee +homePhone: +1 510 983-9814 +initials: S. G. +mobile: +1 510 207-4309 +pager: +1 510 922-5308 +roomNumber: 9153 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Siusan Surridge,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siusan Surridge +sn: Surridge +description: This is Siusan Surridge's description +facsimileTelephoneNumber: +1 408 855-3179 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 714-3705 +title: Associate Management Punk +userPassword: Password1 +uid: SurridgS +givenName: Siusan +mail: SurridgS@33045c677af94d5d866f53c47ff9ab36.bitwarden.com +carLicense: 7X4PHE +departmentNumber: 9317 +employeeType: Normal +homePhone: +1 408 197-3865 +initials: S. S. +mobile: +1 408 228-3188 +pager: +1 408 661-6702 +roomNumber: 9081 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dorris MacDonald,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorris MacDonald +sn: MacDonald +description: This is Dorris MacDonald's description +facsimileTelephoneNumber: +1 415 747-7914 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 457-6420 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: MacDonaD +givenName: Dorris +mail: MacDonaD@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com +carLicense: 2WB8YE +departmentNumber: 7301 +employeeType: Contract +homePhone: +1 415 640-8706 +initials: D. M. +mobile: +1 415 786-7122 +pager: +1 415 527-3304 +roomNumber: 9346 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zoltan Copes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zoltan Copes +sn: Copes +description: This is Zoltan Copes's description +facsimileTelephoneNumber: +1 206 833-5418 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 749-7879 +title: Junior Peons Figurehead +userPassword: Password1 +uid: CopesZ +givenName: Zoltan +mail: CopesZ@eaf35a1f9c5a47789295b9630982561d.bitwarden.com +carLicense: KSKKCV +departmentNumber: 5425 +employeeType: Employee +homePhone: +1 206 242-2381 +initials: Z. C. +mobile: +1 206 813-9804 +pager: +1 206 472-4918 +roomNumber: 9373 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Annadiane Moulton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annadiane Moulton +sn: Moulton +description: This is Annadiane Moulton's description +facsimileTelephoneNumber: +1 804 320-9048 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 292-2067 +title: Junior Administrative Visionary +userPassword: Password1 +uid: MoultonA +givenName: Annadiane +mail: MoultonA@4af403b72bd84466abf0512529d528e4.bitwarden.com +carLicense: EB9XDW +departmentNumber: 2007 +employeeType: Contract +homePhone: +1 804 514-4012 +initials: A. M. +mobile: +1 804 484-2427 +pager: +1 804 253-3701 +roomNumber: 9050 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chrystal Salkok,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chrystal Salkok +sn: Salkok +description: This is Chrystal Salkok's description +facsimileTelephoneNumber: +1 206 491-4456 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 879-2570 +title: Associate Payroll President +userPassword: Password1 +uid: SalkokC +givenName: Chrystal +mail: SalkokC@6dc0e5d935a04bb897ee53893751111f.bitwarden.com +carLicense: 1H9V9R +departmentNumber: 5041 +employeeType: Normal +homePhone: +1 206 994-8485 +initials: C. S. +mobile: +1 206 394-6529 +pager: +1 206 602-7330 +roomNumber: 9422 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ayaz McFeely,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ayaz McFeely +sn: McFeely +description: This is Ayaz McFeely's description +facsimileTelephoneNumber: +1 213 212-2119 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 100-2782 +title: Chief Payroll Janitor +userPassword: Password1 +uid: McFeelyA +givenName: Ayaz +mail: McFeelyA@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com +carLicense: GWPFCV +departmentNumber: 6309 +employeeType: Normal +homePhone: +1 213 355-2766 +initials: A. M. +mobile: +1 213 687-9573 +pager: +1 213 172-8545 +roomNumber: 8403 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Missie Dinnin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Missie Dinnin +sn: Dinnin +description: This is Missie Dinnin's description +facsimileTelephoneNumber: +1 510 565-8118 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 807-9115 +title: Supreme Peons Janitor +userPassword: Password1 +uid: DinninM +givenName: Missie +mail: DinninM@ba4f810ac4254d8dbe9cfd7199a37cf3.bitwarden.com +carLicense: DRY3C1 +departmentNumber: 3728 +employeeType: Employee +homePhone: +1 510 114-1097 +initials: M. D. +mobile: +1 510 522-4710 +pager: +1 510 120-9556 +roomNumber: 8368 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhQuoc Sobkow +sn: Sobkow +description: This is ThanhQuoc Sobkow's description +facsimileTelephoneNumber: +1 408 803-9166 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 375-3824 +title: Chief Product Development Architect +userPassword: Password1 +uid: SobkowT +givenName: ThanhQuoc +mail: SobkowT@6e1688424ec244adb10f2e8d17d9a231.bitwarden.com +carLicense: 4NXLMR +departmentNumber: 8681 +employeeType: Employee +homePhone: +1 408 646-9873 +initials: T. S. +mobile: +1 408 370-4600 +pager: +1 408 998-4774 +roomNumber: 8359 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Karlee Cheval,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlee Cheval +sn: Cheval +description: This is Karlee Cheval's description +facsimileTelephoneNumber: +1 213 272-8156 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 962-3709 +title: Master Janitorial Visionary +userPassword: Password1 +uid: ChevalK +givenName: Karlee +mail: ChevalK@3ef182c2d8294a598732f2ba6e610c67.bitwarden.com +carLicense: 7HJ5K9 +departmentNumber: 9256 +employeeType: Employee +homePhone: +1 213 805-1259 +initials: K. C. +mobile: +1 213 459-2391 +pager: +1 213 335-2192 +roomNumber: 8766 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Constantia Hampshire,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constantia Hampshire +sn: Hampshire +description: This is Constantia Hampshire's description +facsimileTelephoneNumber: +1 818 487-2712 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 889-6966 +title: Supreme Peons Writer +userPassword: Password1 +uid: HampshiC +givenName: Constantia +mail: HampshiC@777f0963de27462aa91642388ce1bcfa.bitwarden.com +carLicense: DHP3S8 +departmentNumber: 2330 +employeeType: Employee +homePhone: +1 818 995-4130 +initials: C. H. +mobile: +1 818 960-6685 +pager: +1 818 730-2599 +roomNumber: 9286 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Delle Stansfield,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delle Stansfield +sn: Stansfield +description: This is Delle Stansfield's description +facsimileTelephoneNumber: +1 206 622-5949 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 887-8225 +title: Junior Administrative Mascot +userPassword: Password1 +uid: StansfiD +givenName: Delle +mail: StansfiD@bf284e27ed8d49cf9a440a443619bccc.bitwarden.com +carLicense: 124JNA +departmentNumber: 8943 +employeeType: Contract +homePhone: +1 206 319-5667 +initials: D. S. +mobile: +1 206 656-3876 +pager: +1 206 461-4423 +roomNumber: 8147 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Percy Fiset,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Percy Fiset +sn: Fiset +description: This is Percy Fiset's description +facsimileTelephoneNumber: +1 415 993-3863 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 604-1011 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: FisetP +givenName: Percy +mail: FisetP@f6d5040b88954db19f785e7761b5d419.bitwarden.com +carLicense: 8GKFCO +departmentNumber: 4432 +employeeType: Contract +homePhone: +1 415 612-3885 +initials: P. F. +mobile: +1 415 801-9916 +pager: +1 415 941-4191 +roomNumber: 8900 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Thea Goh,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thea Goh +sn: Goh +description: This is Thea Goh's description +facsimileTelephoneNumber: +1 818 319-2589 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 833-4146 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: GohT +givenName: Thea +mail: GohT@34ad93f9a66546aaaf62d8eecc06145c.bitwarden.com +carLicense: BXLTQW +departmentNumber: 1222 +employeeType: Contract +homePhone: +1 818 460-9055 +initials: T. G. +mobile: +1 818 634-5639 +pager: +1 818 595-3281 +roomNumber: 8618 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Evanne Twiss,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evanne Twiss +sn: Twiss +description: This is Evanne Twiss's description +facsimileTelephoneNumber: +1 510 924-8374 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 356-5652 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: TwissE +givenName: Evanne +mail: TwissE@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com +carLicense: EWQCQV +departmentNumber: 8662 +employeeType: Normal +homePhone: +1 510 512-7331 +initials: E. T. +mobile: +1 510 946-3472 +pager: +1 510 626-2044 +roomNumber: 8766 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evaleen Ulrich +sn: Ulrich +description: This is Evaleen Ulrich's description +facsimileTelephoneNumber: +1 408 824-6643 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 167-2802 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: UlrichE +givenName: Evaleen +mail: UlrichE@49b6f96ca444413a876834c561f501a9.bitwarden.com +carLicense: 0B44W8 +departmentNumber: 1112 +employeeType: Normal +homePhone: +1 408 851-3888 +initials: E. U. +mobile: +1 408 632-9903 +pager: +1 408 179-6074 +roomNumber: 8203 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Opaline Bayno,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opaline Bayno +sn: Bayno +description: This is Opaline Bayno's description +facsimileTelephoneNumber: +1 408 214-8837 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 671-4268 +title: Supreme Management Warrior +userPassword: Password1 +uid: BaynoO +givenName: Opaline +mail: BaynoO@1f78d8536b924f6f89f5b50f4dff308b.bitwarden.com +carLicense: TAOBBY +departmentNumber: 5373 +employeeType: Contract +homePhone: +1 408 529-4263 +initials: O. B. +mobile: +1 408 698-1368 +pager: +1 408 739-2259 +roomNumber: 8884 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Delbert Hodgens,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delbert Hodgens +sn: Hodgens +description: This is Delbert Hodgens's description +facsimileTelephoneNumber: +1 206 927-5333 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 703-2000 +title: Associate Payroll Vice President +userPassword: Password1 +uid: HodgensD +givenName: Delbert +mail: HodgensD@583cd3a2f23946078680619fff6a08b3.bitwarden.com +carLicense: HDIC2A +departmentNumber: 4804 +employeeType: Contract +homePhone: +1 206 821-2877 +initials: D. H. +mobile: +1 206 335-2576 +pager: +1 206 505-7421 +roomNumber: 8039 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stefania Gnaedinger +sn: Gnaedinger +description: This is Stefania Gnaedinger's description +facsimileTelephoneNumber: +1 206 328-2434 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 206 555-6809 +title: Master Product Development Dictator +userPassword: Password1 +uid: GnaedinS +givenName: Stefania +mail: GnaedinS@74ad719f3ca94101b51f4a4b5749fe0a.bitwarden.com +carLicense: MEMABY +departmentNumber: 5807 +employeeType: Employee +homePhone: +1 206 986-9080 +initials: S. G. +mobile: +1 206 420-6740 +pager: +1 206 630-3143 +roomNumber: 9477 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Antonio Ide,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antonio Ide +sn: Ide +description: This is Antonio Ide's description +facsimileTelephoneNumber: +1 408 404-3116 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 803-5451 +title: Master Product Testing Visionary +userPassword: Password1 +uid: IdeA +givenName: Antonio +mail: IdeA@85bdf0f9c9734501b6e6cb120b7e80db.bitwarden.com +carLicense: TLLTRU +departmentNumber: 1769 +employeeType: Contract +homePhone: +1 408 620-5941 +initials: A. I. +mobile: +1 408 646-3381 +pager: +1 408 100-7285 +roomNumber: 8429 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margarethe Shigemura +sn: Shigemura +description: This is Margarethe Shigemura's description +facsimileTelephoneNumber: +1 415 605-3898 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 967-7465 +title: Chief Payroll Dictator +userPassword: Password1 +uid: ShigemuM +givenName: Margarethe +mail: ShigemuM@4281cc0a8ccb4f14858483f470a527dc.bitwarden.com +carLicense: ODRKF1 +departmentNumber: 9794 +employeeType: Normal +homePhone: +1 415 946-6121 +initials: M. S. +mobile: +1 415 309-9975 +pager: +1 415 503-4734 +roomNumber: 8881 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Berget Feil,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berget Feil +sn: Feil +description: This is Berget Feil's description +facsimileTelephoneNumber: +1 415 490-7873 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 902-3955 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: FeilB +givenName: Berget +mail: FeilB@402d7992fc8d4f0abdb7612e07362a4b.bitwarden.com +carLicense: CGR8WE +departmentNumber: 1400 +employeeType: Employee +homePhone: +1 415 322-6886 +initials: B. F. +mobile: +1 415 732-7310 +pager: +1 415 359-7612 +roomNumber: 9139 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Matty Danielak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matty Danielak +sn: Danielak +description: This is Matty Danielak's description +facsimileTelephoneNumber: +1 510 238-2129 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 510 897-9747 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: DanielaM +givenName: Matty +mail: DanielaM@59d0d0528b8d43efbf3f6b95ae91b41d.bitwarden.com +carLicense: 740ATF +departmentNumber: 9278 +employeeType: Normal +homePhone: +1 510 142-7985 +initials: M. D. +mobile: +1 510 409-8996 +pager: +1 510 182-4137 +roomNumber: 8529 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Prafula Stasney,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prafula Stasney +sn: Stasney +description: This is Prafula Stasney's description +facsimileTelephoneNumber: +1 510 849-1329 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 139-8348 +title: Supreme Management Madonna +userPassword: Password1 +uid: StasneyP +givenName: Prafula +mail: StasneyP@ac204890645b433e960754931ad42c93.bitwarden.com +carLicense: 5DNUO1 +departmentNumber: 6285 +employeeType: Employee +homePhone: +1 510 845-6044 +initials: P. S. +mobile: +1 510 413-2317 +pager: +1 510 194-5761 +roomNumber: 9401 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Eyk Bradford,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eyk Bradford +sn: Bradford +description: This is Eyk Bradford's description +facsimileTelephoneNumber: +1 804 927-6854 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 969-7881 +title: Supreme Peons Grunt +userPassword: Password1 +uid: BradforE +givenName: Eyk +mail: BradforE@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com +carLicense: ABNA8Y +departmentNumber: 7429 +employeeType: Employee +homePhone: +1 804 930-3711 +initials: E. B. +mobile: +1 804 882-7801 +pager: +1 804 181-3450 +roomNumber: 9112 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Della Barbe,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Della Barbe +sn: Barbe +description: This is Della Barbe's description +facsimileTelephoneNumber: +1 510 794-3353 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 697-2529 +title: Associate Management Architect +userPassword: Password1 +uid: BarbeD +givenName: Della +mail: BarbeD@78bde8bce82c4d1dbca4b21bf7784813.bitwarden.com +carLicense: KTDML7 +departmentNumber: 8591 +employeeType: Contract +homePhone: +1 510 277-6510 +initials: D. B. +mobile: +1 510 951-4231 +pager: +1 510 975-5421 +roomNumber: 9123 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Darelle Waid,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darelle Waid +sn: Waid +description: This is Darelle Waid's description +facsimileTelephoneNumber: +1 206 409-5017 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 206 116-7166 +title: Junior Product Development Technician +userPassword: Password1 +uid: WaidD +givenName: Darelle +mail: WaidD@70e5048368bb463a909414f19d29543c.bitwarden.com +carLicense: T9AR09 +departmentNumber: 4998 +employeeType: Contract +homePhone: +1 206 393-3985 +initials: D. W. +mobile: +1 206 578-2413 +pager: +1 206 552-7309 +roomNumber: 8084 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dino Farren,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dino Farren +sn: Farren +description: This is Dino Farren's description +facsimileTelephoneNumber: +1 510 176-7063 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 510 706-1866 +title: Chief Human Resources Technician +userPassword: Password1 +uid: FarrenD +givenName: Dino +mail: FarrenD@aee41a45245c488583a4e60c217e30cb.bitwarden.com +carLicense: Y1MKMJ +departmentNumber: 4615 +employeeType: Normal +homePhone: +1 510 429-5149 +initials: D. F. +mobile: +1 510 167-5415 +pager: +1 510 551-4245 +roomNumber: 9805 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elwyn MyersPillsworth +sn: MyersPillsworth +description: This is Elwyn MyersPillsworth's description +facsimileTelephoneNumber: +1 818 698-1260 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 505-3831 +title: Associate Janitorial Technician +userPassword: Password1 +uid: MyersPiE +givenName: Elwyn +mail: MyersPiE@d4d56842eb064bd38446a254d77ceab5.bitwarden.com +carLicense: W3DFOH +departmentNumber: 3842 +employeeType: Contract +homePhone: +1 818 203-2512 +initials: E. M. +mobile: +1 818 149-8639 +pager: +1 818 757-2828 +roomNumber: 9800 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ruth Chouinard,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruth Chouinard +sn: Chouinard +description: This is Ruth Chouinard's description +facsimileTelephoneNumber: +1 510 702-1140 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 421-5718 +title: Associate Peons Pinhead +userPassword: Password1 +uid: ChouinaR +givenName: Ruth +mail: ChouinaR@468946285b4b4bacab978eabc38e3750.bitwarden.com +carLicense: 0GB522 +departmentNumber: 6399 +employeeType: Normal +homePhone: +1 510 391-6709 +initials: R. C. +mobile: +1 510 532-6032 +pager: +1 510 529-2758 +roomNumber: 8854 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tiina Averette,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiina Averette +sn: Averette +description: This is Tiina Averette's description +facsimileTelephoneNumber: +1 818 494-7856 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 594-9771 +title: Chief Product Development Manager +userPassword: Password1 +uid: AverettT +givenName: Tiina +mail: AverettT@42f6c709ced54560a282482057eafc53.bitwarden.com +carLicense: 0T6KSX +departmentNumber: 6167 +employeeType: Normal +homePhone: +1 818 629-1470 +initials: T. A. +mobile: +1 818 823-5462 +pager: +1 818 156-9909 +roomNumber: 9486 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Meghann Marasco,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meghann Marasco +sn: Marasco +description: This is Meghann Marasco's description +facsimileTelephoneNumber: +1 510 629-1170 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 696-1995 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: MarascoM +givenName: Meghann +mail: MarascoM@b4a96c186a084a79b91245984247afc4.bitwarden.com +carLicense: N7ND6V +departmentNumber: 8974 +employeeType: Employee +homePhone: +1 510 492-9379 +initials: M. M. +mobile: +1 510 828-5089 +pager: +1 510 107-4255 +roomNumber: 8250 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertrudis Husarewych +sn: Husarewych +description: This is Gertrudis Husarewych's description +facsimileTelephoneNumber: +1 213 288-2046 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 213 672-1178 +title: Master Product Testing Madonna +userPassword: Password1 +uid: HusarewG +givenName: Gertrudis +mail: HusarewG@396f50164cb54f9b8cdc5d4d56de2e49.bitwarden.com +carLicense: TBD99R +departmentNumber: 3344 +employeeType: Contract +homePhone: +1 213 325-2820 +initials: G. H. +mobile: +1 213 969-2732 +pager: +1 213 256-4980 +roomNumber: 8497 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Agnella Chona,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnella Chona +sn: Chona +description: This is Agnella Chona's description +facsimileTelephoneNumber: +1 213 293-1217 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 821-9156 +title: Chief Management Director +userPassword: Password1 +uid: ChonaA +givenName: Agnella +mail: ChonaA@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com +carLicense: UEND10 +departmentNumber: 4324 +employeeType: Contract +homePhone: +1 213 351-6765 +initials: A. C. +mobile: +1 213 553-7532 +pager: +1 213 500-8254 +roomNumber: 9602 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Olimpia Stetter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olimpia Stetter +sn: Stetter +description: This is Olimpia Stetter's description +facsimileTelephoneNumber: +1 206 867-6364 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 322-9042 +title: Chief Product Development Sales Rep +userPassword: Password1 +uid: StetterO +givenName: Olimpia +mail: StetterO@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com +carLicense: D4PFNJ +departmentNumber: 1315 +employeeType: Contract +homePhone: +1 206 117-4897 +initials: O. S. +mobile: +1 206 176-6035 +pager: +1 206 933-2611 +roomNumber: 9851 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zea Hoadley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zea Hoadley +sn: Hoadley +description: This is Zea Hoadley's description +facsimileTelephoneNumber: +1 818 307-6435 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 233-1886 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: HoadleyZ +givenName: Zea +mail: HoadleyZ@b22ff28e3c9d44f9a2be9fd304adde71.bitwarden.com +carLicense: 1TY2MB +departmentNumber: 4033 +employeeType: Normal +homePhone: +1 818 917-2679 +initials: Z. H. +mobile: +1 818 685-6241 +pager: +1 818 328-4518 +roomNumber: 9748 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kanu Constantinides,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanu Constantinides +sn: Constantinides +description: This is Kanu Constantinides's description +facsimileTelephoneNumber: +1 408 822-1586 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 434-8799 +title: Supreme Management Technician +userPassword: Password1 +uid: ConstanK +givenName: Kanu +mail: ConstanK@38dcec66f26c4456ab9d677c65296ef1.bitwarden.com +carLicense: ADT01D +departmentNumber: 2989 +employeeType: Normal +homePhone: +1 408 712-9184 +initials: K. C. +mobile: +1 408 724-4402 +pager: +1 408 560-9671 +roomNumber: 8160 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Priti Hummerston,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Priti Hummerston +sn: Hummerston +description: This is Priti Hummerston's description +facsimileTelephoneNumber: +1 510 737-5980 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 302-8702 +title: Associate Product Development President +userPassword: Password1 +uid: HummersP +givenName: Priti +mail: HummersP@f4470991699244448d6b8bb8de6893c0.bitwarden.com +carLicense: F66AVN +departmentNumber: 2105 +employeeType: Normal +homePhone: +1 510 121-5635 +initials: P. H. +mobile: +1 510 575-1953 +pager: +1 510 616-5559 +roomNumber: 8433 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacalyn Brasset +sn: Brasset +description: This is Jacalyn Brasset's description +facsimileTelephoneNumber: +1 804 701-6138 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 341-9268 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: BrassetJ +givenName: Jacalyn +mail: BrassetJ@50b38e0ffb6e4939890621a0511935ae.bitwarden.com +carLicense: 1IX6TY +departmentNumber: 1258 +employeeType: Contract +homePhone: +1 804 281-4842 +initials: J. B. +mobile: +1 804 525-6341 +pager: +1 804 624-6444 +roomNumber: 8846 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Siobhan Duffney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siobhan Duffney +sn: Duffney +description: This is Siobhan Duffney's description +facsimileTelephoneNumber: +1 510 865-5639 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 756-1579 +title: Master Product Development Punk +userPassword: Password1 +uid: DuffneyS +givenName: Siobhan +mail: DuffneyS@d143e10394af44668765922189bff89a.bitwarden.com +carLicense: SH2BK5 +departmentNumber: 7507 +employeeType: Employee +homePhone: +1 510 791-3854 +initials: S. D. +mobile: +1 510 147-8541 +pager: +1 510 477-5284 +roomNumber: 9226 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=KaiWai Greenberg,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KaiWai Greenberg +sn: Greenberg +description: This is KaiWai Greenberg's description +facsimileTelephoneNumber: +1 804 639-5946 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 955-4979 +title: Supreme Management Janitor +userPassword: Password1 +uid: GreenbeK +givenName: KaiWai +mail: GreenbeK@2fe559ef1909460788a7965dfb6d63bf.bitwarden.com +carLicense: OO279S +departmentNumber: 2565 +employeeType: Normal +homePhone: +1 804 802-4213 +initials: K. G. +mobile: +1 804 157-5547 +pager: +1 804 249-6957 +roomNumber: 9534 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Phyllys Relations,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phyllys Relations +sn: Relations +description: This is Phyllys Relations's description +facsimileTelephoneNumber: +1 206 639-5047 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 481-2794 +title: Chief Product Development Engineer +userPassword: Password1 +uid: RelatioP +givenName: Phyllys +mail: RelatioP@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com +carLicense: U8JL0G +departmentNumber: 6251 +employeeType: Contract +homePhone: +1 206 875-3375 +initials: P. R. +mobile: +1 206 106-2033 +pager: +1 206 323-3859 +roomNumber: 8707 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sigrid Griffith +sn: Griffith +description: This is Sigrid Griffith's description +facsimileTelephoneNumber: +1 206 912-1014 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 668-3321 +title: Master Janitorial Madonna +userPassword: Password1 +uid: GriffitS +givenName: Sigrid +mail: GriffitS@12c627d4150246c09e4556d8871e3971.bitwarden.com +carLicense: MHSGUY +departmentNumber: 4394 +employeeType: Normal +homePhone: +1 206 601-8774 +initials: S. G. +mobile: +1 206 897-9354 +pager: +1 206 330-2054 +roomNumber: 8963 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Onette Erwin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Onette Erwin +sn: Erwin +description: This is Onette Erwin's description +facsimileTelephoneNumber: +1 818 704-4379 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 173-9662 +title: Associate Administrative Writer +userPassword: Password1 +uid: ErwinO +givenName: Onette +mail: ErwinO@901564204f174d52bee3bff189fa1964.bitwarden.com +carLicense: U3KQES +departmentNumber: 6588 +employeeType: Contract +homePhone: +1 818 654-5171 +initials: O. E. +mobile: +1 818 803-5800 +pager: +1 818 234-6274 +roomNumber: 8143 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Micheal Threader,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micheal Threader +sn: Threader +description: This is Micheal Threader's description +facsimileTelephoneNumber: +1 213 608-4925 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 508-3610 +title: Chief Peons Engineer +userPassword: Password1 +uid: ThreadeM +givenName: Micheal +mail: ThreadeM@81539b6d10a24d8ca67f1fd08a3e12b8.bitwarden.com +carLicense: 98IS7W +departmentNumber: 7511 +employeeType: Normal +homePhone: +1 213 797-3128 +initials: M. T. +mobile: +1 213 652-3653 +pager: +1 213 154-7063 +roomNumber: 8107 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ihor Barnwell +sn: Barnwell +description: This is Ihor Barnwell's description +facsimileTelephoneNumber: +1 213 490-9569 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 814-4024 +title: Junior Human Resources Visionary +userPassword: Password1 +uid: BarnwelI +givenName: Ihor +mail: BarnwelI@01ea25f91f69450da0e6e08e522d6866.bitwarden.com +carLicense: MORK9B +departmentNumber: 7982 +employeeType: Normal +homePhone: +1 213 213-1807 +initials: I. B. +mobile: +1 213 400-5339 +pager: +1 213 884-1760 +roomNumber: 9194 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Melitta Teacher,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melitta Teacher +sn: Teacher +description: This is Melitta Teacher's description +facsimileTelephoneNumber: +1 213 310-2130 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 454-9355 +title: Master Management Fellow +userPassword: Password1 +uid: TeacherM +givenName: Melitta +mail: TeacherM@2c23fea190c640299f3fdc976ce4b7f6.bitwarden.com +carLicense: L2RG8D +departmentNumber: 1591 +employeeType: Normal +homePhone: +1 213 725-5582 +initials: M. T. +mobile: +1 213 521-1098 +pager: +1 213 637-7977 +roomNumber: 9679 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Francesca Spinks,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francesca Spinks +sn: Spinks +description: This is Francesca Spinks's description +facsimileTelephoneNumber: +1 206 407-8492 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 654-5439 +title: Master Product Testing Grunt +userPassword: Password1 +uid: SpinksF +givenName: Francesca +mail: SpinksF@ae35c1a0907348c0bfc6c98f95d0d043.bitwarden.com +carLicense: BWE76J +departmentNumber: 7626 +employeeType: Contract +homePhone: +1 206 223-1535 +initials: F. S. +mobile: +1 206 155-9088 +pager: +1 206 427-5351 +roomNumber: 8775 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kippie Genova,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kippie Genova +sn: Genova +description: This is Kippie Genova's description +facsimileTelephoneNumber: +1 818 794-8170 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 981-2409 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: GenovaK +givenName: Kippie +mail: GenovaK@02024d9597e14220ab6fb23c71480154.bitwarden.com +carLicense: UP00I4 +departmentNumber: 8876 +employeeType: Normal +homePhone: +1 818 906-6240 +initials: K. G. +mobile: +1 818 522-4690 +pager: +1 818 844-9129 +roomNumber: 8523 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=My Geuder,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: My Geuder +sn: Geuder +description: This is My Geuder's description +facsimileTelephoneNumber: +1 408 551-7118 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 408 649-7311 +title: Chief Payroll Admin +userPassword: Password1 +uid: GeuderM +givenName: My +mail: GeuderM@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com +carLicense: 4C674W +departmentNumber: 9841 +employeeType: Contract +homePhone: +1 408 234-4465 +initials: M. G. +mobile: +1 408 863-6056 +pager: +1 408 113-8811 +roomNumber: 8569 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Corene Goldman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corene Goldman +sn: Goldman +description: This is Corene Goldman's description +facsimileTelephoneNumber: +1 804 789-7617 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 898-7592 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: GoldmanC +givenName: Corene +mail: GoldmanC@41979f975e5b4df39d8af2a5899b3c86.bitwarden.com +carLicense: JBOCV1 +departmentNumber: 5943 +employeeType: Employee +homePhone: +1 804 760-2247 +initials: C. G. +mobile: +1 804 651-1422 +pager: +1 804 365-4294 +roomNumber: 8190 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bea Shanahan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bea Shanahan +sn: Shanahan +description: This is Bea Shanahan's description +facsimileTelephoneNumber: +1 213 951-5547 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 213 260-7999 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: ShanahaB +givenName: Bea +mail: ShanahaB@785fa08a549c473b918f799d10771836.bitwarden.com +carLicense: X9YBMT +departmentNumber: 2933 +employeeType: Employee +homePhone: +1 213 524-9856 +initials: B. S. +mobile: +1 213 504-8469 +pager: +1 213 992-6985 +roomNumber: 8455 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Adah Simzer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adah Simzer +sn: Simzer +description: This is Adah Simzer's description +facsimileTelephoneNumber: +1 408 936-7497 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 408 494-1439 +title: Supreme Payroll Assistant +userPassword: Password1 +uid: SimzerA +givenName: Adah +mail: SimzerA@fac421ca650e46139878bbd5f7498e19.bitwarden.com +carLicense: I3YW6G +departmentNumber: 7856 +employeeType: Normal +homePhone: +1 408 344-1274 +initials: A. S. +mobile: +1 408 871-3227 +pager: +1 408 290-1008 +roomNumber: 9578 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Minnesota Safah,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minnesota Safah +sn: Safah +description: This is Minnesota Safah's description +facsimileTelephoneNumber: +1 804 737-9645 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 804 682-4923 +title: Chief Administrative Writer +userPassword: Password1 +uid: SafahM +givenName: Minnesota +mail: SafahM@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com +carLicense: LCK7P4 +departmentNumber: 3607 +employeeType: Employee +homePhone: +1 804 643-9250 +initials: M. S. +mobile: +1 804 251-6811 +pager: +1 804 368-2449 +roomNumber: 9669 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Perrine Ketkar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perrine Ketkar +sn: Ketkar +description: This is Perrine Ketkar's description +facsimileTelephoneNumber: +1 213 153-2937 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 901-4742 +title: Junior Peons Warrior +userPassword: Password1 +uid: KetkarP +givenName: Perrine +mail: KetkarP@4f7f458ba85b4c42a1412d24897cf2b8.bitwarden.com +carLicense: C8Q2ES +departmentNumber: 9843 +employeeType: Normal +homePhone: +1 213 170-2278 +initials: P. K. +mobile: +1 213 616-9550 +pager: +1 213 218-9156 +roomNumber: 9850 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jilly Kwok,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jilly Kwok +sn: Kwok +description: This is Jilly Kwok's description +facsimileTelephoneNumber: +1 804 267-5341 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 650-6486 +title: Chief Product Development Dictator +userPassword: Password1 +uid: KwokJ +givenName: Jilly +mail: KwokJ@877dbf1e095f477dbff1ca10ebea40c7.bitwarden.com +carLicense: LDAKOX +departmentNumber: 9921 +employeeType: Contract +homePhone: +1 804 773-4617 +initials: J. K. +mobile: +1 804 262-8480 +pager: +1 804 382-8823 +roomNumber: 9895 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwynith Cemensky +sn: Cemensky +description: This is Gwynith Cemensky's description +facsimileTelephoneNumber: +1 818 322-9157 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 818 934-4209 +title: Associate Product Testing Dictator +userPassword: Password1 +uid: CemenskG +givenName: Gwynith +mail: CemenskG@ca5f8fc3a5274b669733a8f1eb35b88b.bitwarden.com +carLicense: EE5I42 +departmentNumber: 3027 +employeeType: Employee +homePhone: +1 818 400-5232 +initials: G. C. +mobile: +1 818 951-2401 +pager: +1 818 990-5867 +roomNumber: 8265 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucinda Elliott +sn: Elliott +description: This is Lucinda Elliott's description +facsimileTelephoneNumber: +1 510 909-6235 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 567-6002 +title: Junior Human Resources Director +userPassword: Password1 +uid: ElliottL +givenName: Lucinda +mail: ElliottL@321b01a1b92242e68a892ee12821e529.bitwarden.com +carLicense: QWF0KC +departmentNumber: 8255 +employeeType: Normal +homePhone: +1 510 439-5712 +initials: L. E. +mobile: +1 510 562-3603 +pager: +1 510 238-5955 +roomNumber: 8503 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sharona Lunde,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharona Lunde +sn: Lunde +description: This is Sharona Lunde's description +facsimileTelephoneNumber: +1 213 153-8392 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 680-2535 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: LundeS +givenName: Sharona +mail: LundeS@d6b3231dbb434132911ed9c9e37e3901.bitwarden.com +carLicense: KB5X8I +departmentNumber: 1589 +employeeType: Contract +homePhone: +1 213 726-3030 +initials: S. L. +mobile: +1 213 791-6109 +pager: +1 213 570-8808 +roomNumber: 8077 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lynnette Juskevicius,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynnette Juskevicius +sn: Juskevicius +description: This is Lynnette Juskevicius's description +facsimileTelephoneNumber: +1 408 287-4639 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 408 975-6024 +title: Supreme Management Pinhead +userPassword: Password1 +uid: JuskeviL +givenName: Lynnette +mail: JuskeviL@87501b64e5644d78a747c4f01175b74a.bitwarden.com +carLicense: FVNLV5 +departmentNumber: 6558 +employeeType: Employee +homePhone: +1 408 343-7005 +initials: L. J. +mobile: +1 408 897-7959 +pager: +1 408 690-5425 +roomNumber: 8713 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=PeyKee Gunther,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PeyKee Gunther +sn: Gunther +description: This is PeyKee Gunther's description +facsimileTelephoneNumber: +1 415 602-5450 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 700-5817 +title: Junior Administrative Janitor +userPassword: Password1 +uid: GuntherP +givenName: PeyKee +mail: GuntherP@5627b6b1b02646ec88c596099b169466.bitwarden.com +carLicense: FTDFAI +departmentNumber: 5596 +employeeType: Employee +homePhone: +1 415 700-6577 +initials: P. G. +mobile: +1 415 899-9120 +pager: +1 415 288-5711 +roomNumber: 8667 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Howden LaBauve,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Howden LaBauve +sn: LaBauve +description: This is Howden LaBauve's description +facsimileTelephoneNumber: +1 818 705-5413 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 818 869-4917 +title: Junior Payroll Vice President +userPassword: Password1 +uid: LaBauveH +givenName: Howden +mail: LaBauveH@dcc9b9b7a7cb4f758bc0f2bd3592b966.bitwarden.com +carLicense: CSP3BE +departmentNumber: 1068 +employeeType: Contract +homePhone: +1 818 542-1003 +initials: H. L. +mobile: +1 818 580-7128 +pager: +1 818 668-8536 +roomNumber: 8018 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dana Linaugh,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dana Linaugh +sn: Linaugh +description: This is Dana Linaugh's description +facsimileTelephoneNumber: +1 415 476-9638 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 970-5539 +title: Junior Human Resources Director +userPassword: Password1 +uid: LinaughD +givenName: Dana +mail: LinaughD@073d9b40128d435294a7cce9001bca7b.bitwarden.com +carLicense: C9AU1L +departmentNumber: 7600 +employeeType: Employee +homePhone: +1 415 560-2572 +initials: D. L. +mobile: +1 415 368-6566 +pager: +1 415 884-9969 +roomNumber: 8034 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gnni Schafer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gnni Schafer +sn: Schafer +description: This is Gnni Schafer's description +facsimileTelephoneNumber: +1 818 564-9619 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 324-2680 +title: Master Product Development Warrior +userPassword: Password1 +uid: SchaferG +givenName: Gnni +mail: SchaferG@eea3ea553d4b4f9dacda1e1f188882a9.bitwarden.com +carLicense: KXBO9O +departmentNumber: 2669 +employeeType: Normal +homePhone: +1 818 294-4488 +initials: G. S. +mobile: +1 818 610-8013 +pager: +1 818 124-6087 +roomNumber: 8641 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Callida Tropea,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Callida Tropea +sn: Tropea +description: This is Callida Tropea's description +facsimileTelephoneNumber: +1 818 760-3666 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 977-4629 +title: Chief Management Vice President +userPassword: Password1 +uid: TropeaC +givenName: Callida +mail: TropeaC@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com +carLicense: 1CD10A +departmentNumber: 6837 +employeeType: Contract +homePhone: +1 818 820-1108 +initials: C. T. +mobile: +1 818 402-9448 +pager: +1 818 357-4510 +roomNumber: 9392 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgeta Cholewinski +sn: Cholewinski +description: This is Georgeta Cholewinski's description +facsimileTelephoneNumber: +1 804 742-5031 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 463-2830 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: CholewiG +givenName: Georgeta +mail: CholewiG@30477bd611094e598c75e08386158998.bitwarden.com +carLicense: JXVDAB +departmentNumber: 6635 +employeeType: Contract +homePhone: +1 804 777-1012 +initials: G. C. +mobile: +1 804 207-8928 +pager: +1 804 847-8398 +roomNumber: 9683 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Amara Zisu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amara Zisu +sn: Zisu +description: This is Amara Zisu's description +facsimileTelephoneNumber: +1 804 956-3049 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 223-8279 +title: Associate Product Development Developer +userPassword: Password1 +uid: ZisuA +givenName: Amara +mail: ZisuA@20be5fad1efc427e98e47e76a75c40bd.bitwarden.com +carLicense: YXRDYL +departmentNumber: 8969 +employeeType: Employee +homePhone: +1 804 963-5128 +initials: A. Z. +mobile: +1 804 626-8126 +pager: +1 804 514-7166 +roomNumber: 9436 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Delly Macklem,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delly Macklem +sn: Macklem +description: This is Delly Macklem's description +facsimileTelephoneNumber: +1 206 672-4973 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 252-3774 +title: Master Product Development Warrior +userPassword: Password1 +uid: MacklemD +givenName: Delly +mail: MacklemD@e18d08f509ac4ed1bf7a2094201ce8f7.bitwarden.com +carLicense: 9QGP0D +departmentNumber: 4452 +employeeType: Contract +homePhone: +1 206 332-7174 +initials: D. M. +mobile: +1 206 717-3926 +pager: +1 206 670-9961 +roomNumber: 8334 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Faustina Yedema,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faustina Yedema +sn: Yedema +description: This is Faustina Yedema's description +facsimileTelephoneNumber: +1 804 408-9074 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 248-2566 +title: Junior Payroll Technician +userPassword: Password1 +uid: YedemaF +givenName: Faustina +mail: YedemaF@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com +carLicense: TYCUEY +departmentNumber: 7735 +employeeType: Normal +homePhone: +1 804 615-2542 +initials: F. Y. +mobile: +1 804 258-4786 +pager: +1 804 564-9718 +roomNumber: 9974 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Annamaria Handforth,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annamaria Handforth +sn: Handforth +description: This is Annamaria Handforth's description +facsimileTelephoneNumber: +1 408 647-8700 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 603-7451 +title: Junior Administrative Engineer +userPassword: Password1 +uid: HandforA +givenName: Annamaria +mail: HandforA@ab4d4d42eb2d484cb7a730409517902e.bitwarden.com +carLicense: IGO436 +departmentNumber: 5334 +employeeType: Normal +homePhone: +1 408 937-5900 +initials: A. H. +mobile: +1 408 213-1101 +pager: +1 408 391-6024 +roomNumber: 8679 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Korney Gehm,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Korney Gehm +sn: Gehm +description: This is Korney Gehm's description +facsimileTelephoneNumber: +1 804 559-1773 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 237-7200 +title: Chief Product Testing Technician +userPassword: Password1 +uid: GehmK +givenName: Korney +mail: GehmK@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com +carLicense: MLFGSS +departmentNumber: 4807 +employeeType: Normal +homePhone: +1 804 456-2091 +initials: K. G. +mobile: +1 804 404-6199 +pager: +1 804 300-4909 +roomNumber: 8017 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Archie Klimon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Archie Klimon +sn: Klimon +description: This is Archie Klimon's description +facsimileTelephoneNumber: +1 408 207-6509 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 773-8495 +title: Associate Payroll Figurehead +userPassword: Password1 +uid: KlimonA +givenName: Archie +mail: KlimonA@4afa8343c8fe499bbf69af9cea3fa9e0.bitwarden.com +carLicense: 2IQFUO +departmentNumber: 1932 +employeeType: Normal +homePhone: +1 408 697-2223 +initials: A. K. +mobile: +1 408 410-6762 +pager: +1 408 978-8604 +roomNumber: 9558 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Angela Holland,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angela Holland +sn: Holland +description: This is Angela Holland's description +facsimileTelephoneNumber: +1 408 264-2106 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 782-8538 +title: Master Product Development Stooge +userPassword: Password1 +uid: HollandA +givenName: Angela +mail: HollandA@f22f9789190b4636a01e59d38d771067.bitwarden.com +carLicense: LMM15X +departmentNumber: 8493 +employeeType: Contract +homePhone: +1 408 361-6937 +initials: A. H. +mobile: +1 408 243-3869 +pager: +1 408 612-9307 +roomNumber: 8144 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marcellina Clairmont,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcellina Clairmont +sn: Clairmont +description: This is Marcellina Clairmont's description +facsimileTelephoneNumber: +1 408 889-1967 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 501-3537 +title: Master Peons Artist +userPassword: Password1 +uid: ClairmoM +givenName: Marcellina +mail: ClairmoM@12b0a668d23742f7b436e1fcd1a16efa.bitwarden.com +carLicense: NOX5AW +departmentNumber: 3054 +employeeType: Normal +homePhone: +1 408 158-4486 +initials: M. C. +mobile: +1 408 526-5929 +pager: +1 408 937-6850 +roomNumber: 8285 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kristien Yamamoto,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristien Yamamoto +sn: Yamamoto +description: This is Kristien Yamamoto's description +facsimileTelephoneNumber: +1 408 156-6082 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 103-9560 +title: Supreme Peons Technician +userPassword: Password1 +uid: YamamotK +givenName: Kristien +mail: YamamotK@41b0e973148e4596b195108aeda208de.bitwarden.com +carLicense: I3T7JJ +departmentNumber: 2819 +employeeType: Normal +homePhone: +1 408 554-8136 +initials: K. Y. +mobile: +1 408 967-6739 +pager: +1 408 387-2837 +roomNumber: 8323 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nayan Simcox,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nayan Simcox +sn: Simcox +description: This is Nayan Simcox's description +facsimileTelephoneNumber: +1 510 496-5965 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 831-7120 +title: Associate Payroll Visionary +userPassword: Password1 +uid: SimcoxN +givenName: Nayan +mail: SimcoxN@5d8927d9a18847879f1969c651cc8b72.bitwarden.com +carLicense: HJO6PJ +departmentNumber: 2161 +employeeType: Contract +homePhone: +1 510 995-5220 +initials: N. S. +mobile: +1 510 148-9053 +pager: +1 510 236-9725 +roomNumber: 8252 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Celisse Draier,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celisse Draier +sn: Draier +description: This is Celisse Draier's description +facsimileTelephoneNumber: +1 206 114-3040 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 187-6692 +title: Junior Product Development Admin +userPassword: Password1 +uid: DraierC +givenName: Celisse +mail: DraierC@f30a055d94234aafa3b01325963e42c8.bitwarden.com +carLicense: B5EE8G +departmentNumber: 9656 +employeeType: Contract +homePhone: +1 206 615-3877 +initials: C. D. +mobile: +1 206 124-9359 +pager: +1 206 191-8205 +roomNumber: 8899 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Matty Vasile,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matty Vasile +sn: Vasile +description: This is Matty Vasile's description +facsimileTelephoneNumber: +1 804 188-6748 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 985-7677 +title: Junior Payroll Director +userPassword: Password1 +uid: VasileM +givenName: Matty +mail: VasileM@f9e13296819e4d139b7b490c05eac7c4.bitwarden.com +carLicense: CLR36T +departmentNumber: 8359 +employeeType: Employee +homePhone: +1 804 316-6936 +initials: M. V. +mobile: +1 804 804-3187 +pager: +1 804 852-5225 +roomNumber: 8155 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=WingKi McClain,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WingKi McClain +sn: McClain +description: This is WingKi McClain's description +facsimileTelephoneNumber: +1 408 601-4685 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 944-7045 +title: Associate Peons Vice President +userPassword: Password1 +uid: McClainW +givenName: WingKi +mail: McClainW@3519a5fee4394ec4a1319941ad8ff05d.bitwarden.com +carLicense: 78DR8Q +departmentNumber: 2534 +employeeType: Normal +homePhone: +1 408 223-6597 +initials: W. M. +mobile: +1 408 129-5134 +pager: +1 408 336-4375 +roomNumber: 9606 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shantee Hounsell +sn: Hounsell +description: This is Shantee Hounsell's description +facsimileTelephoneNumber: +1 206 541-2732 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 852-5796 +title: Master Human Resources Developer +userPassword: Password1 +uid: HounselS +givenName: Shantee +mail: HounselS@59faf706c5aa46e79492393874607cdf.bitwarden.com +carLicense: LGDELP +departmentNumber: 5833 +employeeType: Normal +homePhone: +1 206 894-8949 +initials: S. H. +mobile: +1 206 355-4327 +pager: +1 206 190-6021 +roomNumber: 9813 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Konrad Tsalikis +sn: Tsalikis +description: This is Konrad Tsalikis's description +facsimileTelephoneNumber: +1 206 595-2585 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 441-7599 +title: Junior Administrative Dictator +userPassword: Password1 +uid: TsalikiK +givenName: Konrad +mail: TsalikiK@0babc297aa7744eb886478ba408ffef6.bitwarden.com +carLicense: DEEVBU +departmentNumber: 4148 +employeeType: Contract +homePhone: +1 206 155-5981 +initials: K. T. +mobile: +1 206 868-4488 +pager: +1 206 375-4365 +roomNumber: 8169 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shutterbug Ta,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shutterbug Ta +sn: Ta +description: This is Shutterbug Ta's description +facsimileTelephoneNumber: +1 206 743-4700 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 833-1225 +title: Supreme Product Development Director +userPassword: Password1 +uid: TaS +givenName: Shutterbug +mail: TaS@d099b87b6d4c4f55806f0c8cf8dbfe18.bitwarden.com +carLicense: 06SS01 +departmentNumber: 4044 +employeeType: Contract +homePhone: +1 206 212-4842 +initials: S. T. +mobile: +1 206 979-2041 +pager: +1 206 633-1893 +roomNumber: 8813 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Les Oreilly,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Les Oreilly +sn: Oreilly +description: This is Les Oreilly's description +facsimileTelephoneNumber: +1 510 618-9284 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 590-1447 +title: Associate Administrative Dictator +userPassword: Password1 +uid: OreillyL +givenName: Les +mail: OreillyL@bf82bd280911404494f15486e63577cc.bitwarden.com +carLicense: NJRJRI +departmentNumber: 9928 +employeeType: Employee +homePhone: +1 510 480-2135 +initials: L. O. +mobile: +1 510 512-1962 +pager: +1 510 648-4614 +roomNumber: 9047 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Veen Cawley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veen Cawley +sn: Cawley +description: This is Veen Cawley's description +facsimileTelephoneNumber: +1 510 567-7496 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 695-9740 +title: Associate Management Czar +userPassword: Password1 +uid: CawleyV +givenName: Veen +mail: CawleyV@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com +carLicense: SX5QDL +departmentNumber: 6886 +employeeType: Employee +homePhone: +1 510 397-6477 +initials: V. C. +mobile: +1 510 333-2222 +pager: +1 510 165-5578 +roomNumber: 9325 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Stergios Romanowski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stergios Romanowski +sn: Romanowski +description: This is Stergios Romanowski's description +facsimileTelephoneNumber: +1 804 907-9466 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 754-1480 +title: Chief Peons Dictator +userPassword: Password1 +uid: RomanowS +givenName: Stergios +mail: RomanowS@59db13ba21bf46b29057d72100d263ca.bitwarden.com +carLicense: E5YURY +departmentNumber: 1859 +employeeType: Normal +homePhone: +1 804 146-7137 +initials: S. R. +mobile: +1 804 748-9484 +pager: +1 804 914-3498 +roomNumber: 9932 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shyam Hipson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shyam Hipson +sn: Hipson +description: This is Shyam Hipson's description +facsimileTelephoneNumber: +1 408 672-9136 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 824-9686 +title: Associate Product Development Artist +userPassword: Password1 +uid: HipsonS +givenName: Shyam +mail: HipsonS@a21f8badf17c4b4dbce73be0734b9d87.bitwarden.com +carLicense: RVVV9A +departmentNumber: 7870 +employeeType: Contract +homePhone: +1 408 761-7518 +initials: S. H. +mobile: +1 408 182-9695 +pager: +1 408 181-7231 +roomNumber: 8978 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carley Dal,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carley Dal +sn: Dal +description: This is Carley Dal's description +facsimileTelephoneNumber: +1 818 757-6989 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 692-6709 +title: Junior Human Resources Architect +userPassword: Password1 +uid: DalC +givenName: Carley +mail: DalC@ad4942d8c3c341119939c679c4dae154.bitwarden.com +carLicense: X5OD12 +departmentNumber: 2009 +employeeType: Employee +homePhone: +1 818 787-5027 +initials: C. D. +mobile: +1 818 524-6766 +pager: +1 818 371-9137 +roomNumber: 8128 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chickie Dyna,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chickie Dyna +sn: Dyna +description: This is Chickie Dyna's description +facsimileTelephoneNumber: +1 408 959-4116 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 578-3814 +title: Junior Management Mascot +userPassword: Password1 +uid: DynaC +givenName: Chickie +mail: DynaC@822da1d370d045aaadf5490626c311f7.bitwarden.com +carLicense: L6Y1X9 +departmentNumber: 6654 +employeeType: Normal +homePhone: +1 408 439-6911 +initials: C. D. +mobile: +1 408 808-7082 +pager: +1 408 561-8033 +roomNumber: 8025 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxanne Wesselow +sn: Wesselow +description: This is Roxanne Wesselow's description +facsimileTelephoneNumber: +1 206 251-3939 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 740-7502 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: WesseloR +givenName: Roxanne +mail: WesseloR@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com +carLicense: LVUR9C +departmentNumber: 6961 +employeeType: Contract +homePhone: +1 206 604-1541 +initials: R. W. +mobile: +1 206 286-6094 +pager: +1 206 471-9020 +roomNumber: 8953 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Norstar Bouick,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norstar Bouick +sn: Bouick +description: This is Norstar Bouick's description +facsimileTelephoneNumber: +1 206 965-6864 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 878-1510 +title: Junior Product Development Evangelist +userPassword: Password1 +uid: BouickN +givenName: Norstar +mail: BouickN@7eb3446796544055a8625bc9cff5db0c.bitwarden.com +carLicense: MHF2NY +departmentNumber: 6421 +employeeType: Normal +homePhone: +1 206 657-2899 +initials: N. B. +mobile: +1 206 399-8912 +pager: +1 206 480-3131 +roomNumber: 9819 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kapsch Bitton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kapsch Bitton +sn: Bitton +description: This is Kapsch Bitton's description +facsimileTelephoneNumber: +1 213 478-4203 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 690-5025 +title: Master Product Development Punk +userPassword: Password1 +uid: BittonK +givenName: Kapsch +mail: BittonK@bd7ed784957343358f080e4bf8b3e472.bitwarden.com +carLicense: 1HB5JR +departmentNumber: 3255 +employeeType: Normal +homePhone: +1 213 982-4095 +initials: K. B. +mobile: +1 213 220-3706 +pager: +1 213 688-3067 +roomNumber: 9792 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yoko Feder,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoko Feder +sn: Feder +description: This is Yoko Feder's description +facsimileTelephoneNumber: +1 818 282-7661 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 991-5015 +title: Associate Administrative Admin +userPassword: Password1 +uid: FederY +givenName: Yoko +mail: FederY@edf99b25a1c649749aeb3745c7ce07a0.bitwarden.com +carLicense: 7YKPU2 +departmentNumber: 9062 +employeeType: Normal +homePhone: +1 818 392-2218 +initials: Y. F. +mobile: +1 818 559-3583 +pager: +1 818 513-1523 +roomNumber: 9689 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebekkah Pelot +sn: Pelot +description: This is Rebekkah Pelot's description +facsimileTelephoneNumber: +1 213 601-9117 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 327-8963 +title: Chief Payroll President +userPassword: Password1 +uid: PelotR +givenName: Rebekkah +mail: PelotR@402d43c51a4446beb3be4fb34fdb725c.bitwarden.com +carLicense: KDJV38 +departmentNumber: 7775 +employeeType: Normal +homePhone: +1 213 572-9714 +initials: R. P. +mobile: +1 213 978-9164 +pager: +1 213 936-8300 +roomNumber: 9197 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eugine Werick,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eugine Werick +sn: Werick +description: This is Eugine Werick's description +facsimileTelephoneNumber: +1 804 376-3926 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 804 495-7309 +title: Supreme Human Resources Manager +userPassword: Password1 +uid: WerickE +givenName: Eugine +mail: WerickE@5466e2cfe74b454ca4ce7f08783c2376.bitwarden.com +carLicense: WU6O0W +departmentNumber: 8193 +employeeType: Normal +homePhone: +1 804 643-4841 +initials: E. W. +mobile: +1 804 538-5158 +pager: +1 804 146-7083 +roomNumber: 8554 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marley Newcomb,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marley Newcomb +sn: Newcomb +description: This is Marley Newcomb's description +facsimileTelephoneNumber: +1 213 373-1139 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 138-3993 +title: Chief Product Testing Figurehead +userPassword: Password1 +uid: NewcombM +givenName: Marley +mail: NewcombM@39afc87e8d7642cab0986ce57dd64310.bitwarden.com +carLicense: D9JIKO +departmentNumber: 2530 +employeeType: Employee +homePhone: +1 213 762-3655 +initials: M. N. +mobile: +1 213 433-9755 +pager: +1 213 102-1543 +roomNumber: 9327 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zhanna Lyons,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zhanna Lyons +sn: Lyons +description: This is Zhanna Lyons's description +facsimileTelephoneNumber: +1 408 304-5971 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 129-8567 +title: Junior Management Stooge +userPassword: Password1 +uid: LyonsZ +givenName: Zhanna +mail: LyonsZ@9eb282188d9c470a820f560ba43cb34c.bitwarden.com +carLicense: 28Y2TU +departmentNumber: 3478 +employeeType: Contract +homePhone: +1 408 715-5195 +initials: Z. L. +mobile: +1 408 229-1056 +pager: +1 408 866-4208 +roomNumber: 9320 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Desire Adam,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desire Adam +sn: Adam +description: This is Desire Adam's description +facsimileTelephoneNumber: +1 213 529-6291 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 213 373-1099 +title: Master Administrative Consultant +userPassword: Password1 +uid: AdamD +givenName: Desire +mail: AdamD@2fc71ac565f5494c88d9a22e99c366a9.bitwarden.com +carLicense: PVPGTN +departmentNumber: 1158 +employeeType: Normal +homePhone: +1 213 300-3941 +initials: D. A. +mobile: +1 213 182-1004 +pager: +1 213 949-6790 +roomNumber: 8301 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joni Dhir,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joni Dhir +sn: Dhir +description: This is Joni Dhir's description +facsimileTelephoneNumber: +1 206 806-1716 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 708-3739 +title: Junior Payroll Janitor +userPassword: Password1 +uid: DhirJ +givenName: Joni +mail: DhirJ@4e3272dfa10d49cf921e5550808b516c.bitwarden.com +carLicense: Y5V43W +departmentNumber: 1313 +employeeType: Employee +homePhone: +1 206 979-8725 +initials: J. D. +mobile: +1 206 257-5785 +pager: +1 206 936-8203 +roomNumber: 9668 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Quyen Boyle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quyen Boyle +sn: Boyle +description: This is Quyen Boyle's description +facsimileTelephoneNumber: +1 213 294-8947 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 580-8823 +title: Junior Product Development Janitor +userPassword: Password1 +uid: BoyleQ +givenName: Quyen +mail: BoyleQ@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com +carLicense: V0RE88 +departmentNumber: 6804 +employeeType: Normal +homePhone: +1 213 472-4253 +initials: Q. B. +mobile: +1 213 386-6107 +pager: +1 213 391-6871 +roomNumber: 9235 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailee ODwyer +sn: ODwyer +description: This is Ailee ODwyer's description +facsimileTelephoneNumber: +1 415 741-7592 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 558-9430 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: ODwyerA +givenName: Ailee +mail: ODwyerA@ed09d6145c6443eda98f0394646537ec.bitwarden.com +carLicense: Y7774A +departmentNumber: 3655 +employeeType: Contract +homePhone: +1 415 633-6654 +initials: A. O. +mobile: +1 415 946-3299 +pager: +1 415 324-5213 +roomNumber: 8742 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fallon Lavigne,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fallon Lavigne +sn: Lavigne +description: This is Fallon Lavigne's description +facsimileTelephoneNumber: +1 213 752-9788 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 591-4451 +title: Chief Administrative Dictator +userPassword: Password1 +uid: LavigneF +givenName: Fallon +mail: LavigneF@0798984bbb0c4179a1769a476df089f2.bitwarden.com +carLicense: L1IC0E +departmentNumber: 4912 +employeeType: Contract +homePhone: +1 213 800-9439 +initials: F. L. +mobile: +1 213 241-6875 +pager: +1 213 795-7845 +roomNumber: 9978 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aleda Kato,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aleda Kato +sn: Kato +description: This is Aleda Kato's description +facsimileTelephoneNumber: +1 206 571-1297 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 795-7298 +title: Associate Peons Mascot +userPassword: Password1 +uid: KatoA +givenName: Aleda +mail: KatoA@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com +carLicense: AE3GFL +departmentNumber: 4838 +employeeType: Contract +homePhone: +1 206 315-8448 +initials: A. K. +mobile: +1 206 326-4578 +pager: +1 206 652-4054 +roomNumber: 8571 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cristine Musser,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristine Musser +sn: Musser +description: This is Cristine Musser's description +facsimileTelephoneNumber: +1 415 679-2039 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 983-6931 +title: Master Peons Engineer +userPassword: Password1 +uid: MusserC +givenName: Cristine +mail: MusserC@021f182578104bf484110ac6631b5efa.bitwarden.com +carLicense: H1X51Q +departmentNumber: 9727 +employeeType: Employee +homePhone: +1 415 742-3454 +initials: C. M. +mobile: +1 415 286-7581 +pager: +1 415 161-1048 +roomNumber: 9392 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcelia OHeocha +sn: OHeocha +description: This is Marcelia OHeocha's description +facsimileTelephoneNumber: +1 213 111-6155 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 803-1861 +title: Master Product Development Technician +userPassword: Password1 +uid: OHeochaM +givenName: Marcelia +mail: OHeochaM@2508acc0090a42e782d940d4d8f7e99a.bitwarden.com +carLicense: SVUCLA +departmentNumber: 7933 +employeeType: Contract +homePhone: +1 213 459-6499 +initials: M. O. +mobile: +1 213 692-9938 +pager: +1 213 152-4857 +roomNumber: 9627 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shantee Tsao,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shantee Tsao +sn: Tsao +description: This is Shantee Tsao's description +facsimileTelephoneNumber: +1 213 689-9340 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 213 890-5366 +title: Associate Administrative Stooge +userPassword: Password1 +uid: TsaoS +givenName: Shantee +mail: TsaoS@7134af8f58034ab1b6da056722567020.bitwarden.com +carLicense: 87ML9L +departmentNumber: 4830 +employeeType: Contract +homePhone: +1 213 603-6359 +initials: S. T. +mobile: +1 213 525-8447 +pager: +1 213 942-2111 +roomNumber: 9242 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Phu Krowlek,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phu Krowlek +sn: Krowlek +description: This is Phu Krowlek's description +facsimileTelephoneNumber: +1 408 355-1102 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 396-7801 +title: Junior Human Resources Artist +userPassword: Password1 +uid: KrowlekP +givenName: Phu +mail: KrowlekP@9738e422f0a74193a7888d326771c9bc.bitwarden.com +carLicense: 90ITE4 +departmentNumber: 8660 +employeeType: Contract +homePhone: +1 408 553-4879 +initials: P. K. +mobile: +1 408 966-1090 +pager: +1 408 672-3341 +roomNumber: 8337 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Estrella Infocenter,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estrella Infocenter +sn: Infocenter +description: This is Estrella Infocenter's description +facsimileTelephoneNumber: +1 408 304-6050 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 881-8913 +title: Junior Payroll Punk +userPassword: Password1 +uid: InfocenE +givenName: Estrella +mail: InfocenE@3e88ff34a4594358ba2c438e74d99277.bitwarden.com +carLicense: F1U5BM +departmentNumber: 4422 +employeeType: Normal +homePhone: +1 408 575-4271 +initials: E. I. +mobile: +1 408 934-8804 +pager: +1 408 896-9350 +roomNumber: 9616 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeana Groetsema +sn: Groetsema +description: This is Jeana Groetsema's description +facsimileTelephoneNumber: +1 804 498-8891 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 571-6694 +title: Chief Product Testing Czar +userPassword: Password1 +uid: GroetseJ +givenName: Jeana +mail: GroetseJ@49e173c530254128b2fa7a55a9ce39c1.bitwarden.com +carLicense: 332D2L +departmentNumber: 7217 +employeeType: Normal +homePhone: +1 804 868-4314 +initials: J. G. +mobile: +1 804 914-4570 +pager: +1 804 129-2213 +roomNumber: 9270 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Steinar Mathur,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steinar Mathur +sn: Mathur +description: This is Steinar Mathur's description +facsimileTelephoneNumber: +1 408 421-9635 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 402-3310 +title: Chief Product Development Fellow +userPassword: Password1 +uid: MathurS +givenName: Steinar +mail: MathurS@4c46c0ccb3eb4998b4cbc47cae874ac9.bitwarden.com +carLicense: 3FKFEF +departmentNumber: 1085 +employeeType: Normal +homePhone: +1 408 205-2447 +initials: S. M. +mobile: +1 408 371-1839 +pager: +1 408 800-9581 +roomNumber: 8751 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rchisn Reiser +sn: Reiser +description: This is Rchisn Reiser's description +facsimileTelephoneNumber: +1 510 183-1021 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 510 368-5337 +title: Junior Product Testing Director +userPassword: Password1 +uid: ReiserR +givenName: Rchisn +mail: ReiserR@82cd13218ce14af8a30de1517f768932.bitwarden.com +carLicense: M1SRSM +departmentNumber: 2807 +employeeType: Contract +homePhone: +1 510 502-7645 +initials: R. R. +mobile: +1 510 626-7346 +pager: +1 510 403-7744 +roomNumber: 9636 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jayme Shemwell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jayme Shemwell +sn: Shemwell +description: This is Jayme Shemwell's description +facsimileTelephoneNumber: +1 804 477-4438 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 458-9457 +title: Junior Payroll Warrior +userPassword: Password1 +uid: ShemwelJ +givenName: Jayme +mail: ShemwelJ@d1f70e2814da436e8e729474e3ae0ca1.bitwarden.com +carLicense: FPDPKY +departmentNumber: 6385 +employeeType: Normal +homePhone: +1 804 528-6833 +initials: J. S. +mobile: +1 804 452-8493 +pager: +1 804 920-1421 +roomNumber: 9787 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Masha McGinn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Masha McGinn +sn: McGinn +description: This is Masha McGinn's description +facsimileTelephoneNumber: +1 818 577-1188 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 807-8845 +title: Associate Administrative Director +userPassword: Password1 +uid: McGinnM +givenName: Masha +mail: McGinnM@7caae22d0df6421e81f8b88b910cd3d3.bitwarden.com +carLicense: Y0W4PM +departmentNumber: 4207 +employeeType: Normal +homePhone: +1 818 291-9317 +initials: M. M. +mobile: +1 818 320-4878 +pager: +1 818 318-4586 +roomNumber: 9205 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PeyKee McMonagle +sn: McMonagle +description: This is PeyKee McMonagle's description +facsimileTelephoneNumber: +1 408 971-6383 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 408 857-1869 +title: Master Janitorial Dictator +userPassword: Password1 +uid: McMonagP +givenName: PeyKee +mail: McMonagP@8d9767327a3c45ac99e8c87493980bd0.bitwarden.com +carLicense: 6VCGTW +departmentNumber: 1978 +employeeType: Employee +homePhone: +1 408 823-1537 +initials: P. M. +mobile: +1 408 742-8142 +pager: +1 408 344-7191 +roomNumber: 9210 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Astrix Tiller,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Astrix Tiller +sn: Tiller +description: This is Astrix Tiller's description +facsimileTelephoneNumber: +1 206 832-6873 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 342-6871 +title: Supreme Peons Warrior +userPassword: Password1 +uid: TillerA +givenName: Astrix +mail: TillerA@fc7406e3c8e34fce9e4288bfe13798e9.bitwarden.com +carLicense: RJSH7M +departmentNumber: 3479 +employeeType: Employee +homePhone: +1 206 176-9934 +initials: A. T. +mobile: +1 206 197-7083 +pager: +1 206 658-8701 +roomNumber: 8516 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arlan Fadel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlan Fadel +sn: Fadel +description: This is Arlan Fadel's description +facsimileTelephoneNumber: +1 818 489-2259 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 818 561-8401 +title: Junior Management Grunt +userPassword: Password1 +uid: FadelA +givenName: Arlan +mail: FadelA@f3bc4de2ab8548c1a2d64ce3115e2db5.bitwarden.com +carLicense: S6E0TH +departmentNumber: 2653 +employeeType: Contract +homePhone: +1 818 465-4192 +initials: A. F. +mobile: +1 818 229-2226 +pager: +1 818 378-4922 +roomNumber: 9735 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JulieAnne Wardrop +sn: Wardrop +description: This is JulieAnne Wardrop's description +facsimileTelephoneNumber: +1 510 227-7399 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 843-1629 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: WardropJ +givenName: JulieAnne +mail: WardropJ@7731926b8eba477c82aacfea38c5fc13.bitwarden.com +carLicense: MXRQFG +departmentNumber: 4569 +employeeType: Employee +homePhone: +1 510 963-2365 +initials: J. W. +mobile: +1 510 509-6865 +pager: +1 510 956-6642 +roomNumber: 8667 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Siouxie Norgaard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siouxie Norgaard +sn: Norgaard +description: This is Siouxie Norgaard's description +facsimileTelephoneNumber: +1 415 148-8307 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 251-9518 +title: Associate Management Grunt +userPassword: Password1 +uid: NorgaarS +givenName: Siouxie +mail: NorgaarS@ec668ee22c6346d2882aef8dfcb8696b.bitwarden.com +carLicense: HPPNOD +departmentNumber: 7150 +employeeType: Employee +homePhone: +1 415 685-4168 +initials: S. N. +mobile: +1 415 930-4063 +pager: +1 415 641-5378 +roomNumber: 9062 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffanie DeFrancesco +sn: DeFrancesco +description: This is Tiffanie DeFrancesco's description +facsimileTelephoneNumber: +1 408 667-4976 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 935-7977 +title: Junior Administrative Technician +userPassword: Password1 +uid: DeFrancT +givenName: Tiffanie +mail: DeFrancT@cf0ec0264ca64fe98e19bc5f405333ac.bitwarden.com +carLicense: FS1P9L +departmentNumber: 4961 +employeeType: Normal +homePhone: +1 408 370-9485 +initials: T. D. +mobile: +1 408 649-7468 +pager: +1 408 768-2311 +roomNumber: 9312 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Phaedra Mavrou,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phaedra Mavrou +sn: Mavrou +description: This is Phaedra Mavrou's description +facsimileTelephoneNumber: +1 206 824-1800 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 298-9009 +title: Junior Peons Madonna +userPassword: Password1 +uid: MavrouP +givenName: Phaedra +mail: MavrouP@c88c546a41dd403183cf489cf47f2715.bitwarden.com +carLicense: 0LNLJA +departmentNumber: 3025 +employeeType: Normal +homePhone: +1 206 329-8927 +initials: P. M. +mobile: +1 206 765-2643 +pager: +1 206 869-1825 +roomNumber: 8611 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Thang Kerr,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thang Kerr +sn: Kerr +description: This is Thang Kerr's description +facsimileTelephoneNumber: +1 804 240-4944 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 601-6559 +title: Master Peons Fellow +userPassword: Password1 +uid: KerrT +givenName: Thang +mail: KerrT@999c25847f9849ce9a6f746d005bddef.bitwarden.com +carLicense: MO4EN7 +departmentNumber: 3743 +employeeType: Contract +homePhone: +1 804 262-9554 +initials: T. K. +mobile: +1 804 252-3205 +pager: +1 804 195-4356 +roomNumber: 9305 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Helsa Cau,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helsa Cau +sn: Cau +description: This is Helsa Cau's description +facsimileTelephoneNumber: +1 510 266-9092 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 622-1788 +title: Associate Management Warrior +userPassword: Password1 +uid: CauH +givenName: Helsa +mail: CauH@cc71e71454d64842b764308435f8b9ce.bitwarden.com +carLicense: JWHS2Y +departmentNumber: 6671 +employeeType: Employee +homePhone: +1 510 270-4932 +initials: H. C. +mobile: +1 510 300-5134 +pager: +1 510 870-3831 +roomNumber: 9709 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dyana Tchir,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyana Tchir +sn: Tchir +description: This is Dyana Tchir's description +facsimileTelephoneNumber: +1 408 895-1055 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 417-4002 +title: Chief Management Vice President +userPassword: Password1 +uid: TchirD +givenName: Dyana +mail: TchirD@7b42a22455f94b9392fcbdbd3455eba3.bitwarden.com +carLicense: 5KGB51 +departmentNumber: 4479 +employeeType: Employee +homePhone: +1 408 598-3572 +initials: D. T. +mobile: +1 408 730-7644 +pager: +1 408 903-2691 +roomNumber: 8243 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elga Hrenyk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elga Hrenyk +sn: Hrenyk +description: This is Elga Hrenyk's description +facsimileTelephoneNumber: +1 206 188-3326 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 213-6251 +title: Junior Payroll Warrior +userPassword: Password1 +uid: HrenykE +givenName: Elga +mail: HrenykE@348e203028124b55ac20e45b299ae842.bitwarden.com +carLicense: DWH58U +departmentNumber: 1835 +employeeType: Normal +homePhone: +1 206 265-7664 +initials: E. H. +mobile: +1 206 913-3136 +pager: +1 206 331-7908 +roomNumber: 9024 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Brooks Helgeland,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brooks Helgeland +sn: Helgeland +description: This is Brooks Helgeland's description +facsimileTelephoneNumber: +1 510 256-9039 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 517-8535 +title: Associate Management Grunt +userPassword: Password1 +uid: HelgelaB +givenName: Brooks +mail: HelgelaB@59d0d0528b8d43efbf3f6b95ae91b41d.bitwarden.com +carLicense: DKYCPE +departmentNumber: 9239 +employeeType: Contract +homePhone: +1 510 292-9030 +initials: B. H. +mobile: +1 510 600-4930 +pager: +1 510 142-1262 +roomNumber: 9029 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Toshi Ircmer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toshi Ircmer +sn: Ircmer +description: This is Toshi Ircmer's description +facsimileTelephoneNumber: +1 408 798-1433 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 183-4395 +title: Master Administrative Technician +userPassword: Password1 +uid: IrcmerT +givenName: Toshi +mail: IrcmerT@0ae37e3d8fa14ddaa3b8f54015598091.bitwarden.com +carLicense: 2A6VGY +departmentNumber: 6053 +employeeType: Employee +homePhone: +1 408 240-8409 +initials: T. I. +mobile: +1 408 996-9755 +pager: +1 408 403-9451 +roomNumber: 9648 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rizzo Ohmaru +sn: Ohmaru +description: This is Rizzo Ohmaru's description +facsimileTelephoneNumber: +1 213 991-5118 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 750-5619 +title: Supreme Peons Mascot +userPassword: Password1 +uid: OhmaruR +givenName: Rizzo +mail: OhmaruR@1726f5bfacd044bf871463e64c567d5e.bitwarden.com +carLicense: PBPMK5 +departmentNumber: 3616 +employeeType: Contract +homePhone: +1 213 137-2365 +initials: R. O. +mobile: +1 213 273-3204 +pager: +1 213 696-1853 +roomNumber: 9169 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yosuf Diaconu,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yosuf Diaconu +sn: Diaconu +description: This is Yosuf Diaconu's description +facsimileTelephoneNumber: +1 510 836-4036 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 845-3147 +title: Master Peons Visionary +userPassword: Password1 +uid: DiaconuY +givenName: Yosuf +mail: DiaconuY@2f0e638056364f0ebcf3676022d443c8.bitwarden.com +carLicense: 292FQT +departmentNumber: 7861 +employeeType: Normal +homePhone: +1 510 533-3126 +initials: Y. D. +mobile: +1 510 244-6784 +pager: +1 510 331-7425 +roomNumber: 9018 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nomi Kielstra,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nomi Kielstra +sn: Kielstra +description: This is Nomi Kielstra's description +facsimileTelephoneNumber: +1 206 987-2670 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 778-9590 +title: Associate Administrative Assistant +userPassword: Password1 +uid: KielstrN +givenName: Nomi +mail: KielstrN@e5a014d6d0a246bab1688f8742395120.bitwarden.com +carLicense: L8D4YR +departmentNumber: 6624 +employeeType: Contract +homePhone: +1 206 760-2832 +initials: N. K. +mobile: +1 206 689-3222 +pager: +1 206 744-8209 +roomNumber: 8710 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Carolyn Sanche,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolyn Sanche +sn: Sanche +description: This is Carolyn Sanche's description +facsimileTelephoneNumber: +1 213 421-5255 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 802-1444 +title: Master Peons Writer +userPassword: Password1 +uid: SancheC +givenName: Carolyn +mail: SancheC@7670182abb394f41a5633ad118cf9427.bitwarden.com +carLicense: 39OU15 +departmentNumber: 6285 +employeeType: Contract +homePhone: +1 213 116-8417 +initials: C. S. +mobile: +1 213 862-6100 +pager: +1 213 609-8387 +roomNumber: 8023 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marj Anker,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marj Anker +sn: Anker +description: This is Marj Anker's description +facsimileTelephoneNumber: +1 213 659-1800 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 762-8036 +title: Master Janitorial Director +userPassword: Password1 +uid: AnkerM +givenName: Marj +mail: AnkerM@10c7f32d495b44929e9653824155ab35.bitwarden.com +carLicense: 3A6GMP +departmentNumber: 9605 +employeeType: Normal +homePhone: +1 213 724-5244 +initials: M. A. +mobile: +1 213 136-6852 +pager: +1 213 242-4501 +roomNumber: 8568 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Agneta Gundlach,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agneta Gundlach +sn: Gundlach +description: This is Agneta Gundlach's description +facsimileTelephoneNumber: +1 213 340-7830 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 673-9601 +title: Chief Peons Developer +userPassword: Password1 +uid: GundlacA +givenName: Agneta +mail: GundlacA@51229efcbb5c42119b299e0a2768aeae.bitwarden.com +carLicense: 3OLRDC +departmentNumber: 3454 +employeeType: Employee +homePhone: +1 213 531-6500 +initials: A. G. +mobile: +1 213 601-2515 +pager: +1 213 605-6531 +roomNumber: 9702 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jeffery Pafilis,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeffery Pafilis +sn: Pafilis +description: This is Jeffery Pafilis's description +facsimileTelephoneNumber: +1 415 368-4337 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 308-1136 +title: Junior Management Grunt +userPassword: Password1 +uid: PafilisJ +givenName: Jeffery +mail: PafilisJ@c4e315e8ab0343648ac206c0fcb55300.bitwarden.com +carLicense: I0FDV9 +departmentNumber: 4238 +employeeType: Normal +homePhone: +1 415 411-5334 +initials: J. P. +mobile: +1 415 324-5860 +pager: +1 415 556-9305 +roomNumber: 9915 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Isoft Buchanan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isoft Buchanan +sn: Buchanan +description: This is Isoft Buchanan's description +facsimileTelephoneNumber: +1 213 494-1637 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 574-9285 +title: Master Administrative Grunt +userPassword: Password1 +uid: BuchanaI +givenName: Isoft +mail: BuchanaI@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com +carLicense: Y572CB +departmentNumber: 2624 +employeeType: Contract +homePhone: +1 213 464-9496 +initials: I. B. +mobile: +1 213 192-6378 +pager: +1 213 629-1779 +roomNumber: 9949 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cassaundra Gerenser,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassaundra Gerenser +sn: Gerenser +description: This is Cassaundra Gerenser's description +facsimileTelephoneNumber: +1 206 955-8885 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 613-2356 +title: Associate Management Punk +userPassword: Password1 +uid: GerenseC +givenName: Cassaundra +mail: GerenseC@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com +carLicense: GWJP08 +departmentNumber: 1205 +employeeType: Employee +homePhone: +1 206 934-4246 +initials: C. G. +mobile: +1 206 245-9787 +pager: +1 206 547-5913 +roomNumber: 9956 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlyn Rourk +sn: Rourk +description: This is Arlyn Rourk's description +facsimileTelephoneNumber: +1 510 183-9628 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 565-4025 +title: Master Human Resources Technician +userPassword: Password1 +uid: RourkA +givenName: Arlyn +mail: RourkA@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com +carLicense: RAEG57 +departmentNumber: 8285 +employeeType: Normal +homePhone: +1 510 144-5756 +initials: A. R. +mobile: +1 510 877-3524 +pager: +1 510 889-2760 +roomNumber: 9785 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Roberta Rorie,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roberta Rorie +sn: Rorie +description: This is Roberta Rorie's description +facsimileTelephoneNumber: +1 804 502-3419 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 760-8598 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: RorieR +givenName: Roberta +mail: RorieR@42dc5c7bd0a9441fa8defd9c17a20190.bitwarden.com +carLicense: 015WO0 +departmentNumber: 1436 +employeeType: Employee +homePhone: +1 804 170-5158 +initials: R. R. +mobile: +1 804 573-3935 +pager: +1 804 274-5907 +roomNumber: 9821 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bliss Fahey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bliss Fahey +sn: Fahey +description: This is Bliss Fahey's description +facsimileTelephoneNumber: +1 804 574-1508 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 172-5131 +title: Master Product Development Manager +userPassword: Password1 +uid: FaheyB +givenName: Bliss +mail: FaheyB@60bda5017d9d4f298f75b11882690433.bitwarden.com +carLicense: FCSNL5 +departmentNumber: 7134 +employeeType: Employee +homePhone: +1 804 680-7060 +initials: B. F. +mobile: +1 804 428-6681 +pager: +1 804 170-5389 +roomNumber: 8426 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pivert JodoinStJean +sn: JodoinStJean +description: This is Pivert JodoinStJean's description +facsimileTelephoneNumber: +1 408 700-5471 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 726-8285 +title: Chief Peons Artist +userPassword: Password1 +uid: JodoinSP +givenName: Pivert +mail: JodoinSP@98bc3f5d71914c17aba390cbd1fb2317.bitwarden.com +carLicense: 24BWJR +departmentNumber: 6733 +employeeType: Employee +homePhone: +1 408 419-1614 +initials: P. J. +mobile: +1 408 303-9057 +pager: +1 408 670-9687 +roomNumber: 8075 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hafeezah Bombardier +sn: Bombardier +description: This is Hafeezah Bombardier's description +facsimileTelephoneNumber: +1 804 408-9126 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 895-8809 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: BombardH +givenName: Hafeezah +mail: BombardH@de898a326d21476c9afc54d7a723d91b.bitwarden.com +carLicense: 4NML3O +departmentNumber: 7403 +employeeType: Contract +homePhone: +1 804 546-3469 +initials: H. B. +mobile: +1 804 979-8103 +pager: +1 804 759-9556 +roomNumber: 9714 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Wargnier Deployment,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wargnier Deployment +sn: Deployment +description: This is Wargnier Deployment's description +facsimileTelephoneNumber: +1 804 698-2962 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 568-5955 +title: Supreme Management Punk +userPassword: Password1 +uid: DeploymW +givenName: Wargnier +mail: DeploymW@22acfb768c09448b9b9c3d7bd8e3a389.bitwarden.com +carLicense: 579PD0 +departmentNumber: 6961 +employeeType: Employee +homePhone: +1 804 363-5482 +initials: W. D. +mobile: +1 804 345-4197 +pager: +1 804 189-9578 +roomNumber: 9262 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Orsa Brunsting,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orsa Brunsting +sn: Brunsting +description: This is Orsa Brunsting's description +facsimileTelephoneNumber: +1 213 690-5773 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 615-7783 +title: Supreme Peons President +userPassword: Password1 +uid: BrunstiO +givenName: Orsa +mail: BrunstiO@484147050d834a1da350db4c28e9f45b.bitwarden.com +carLicense: 222VJB +departmentNumber: 5800 +employeeType: Employee +homePhone: +1 213 741-2322 +initials: O. B. +mobile: +1 213 421-3943 +pager: +1 213 485-8738 +roomNumber: 8673 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gudrun Yassa,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gudrun Yassa +sn: Yassa +description: This is Gudrun Yassa's description +facsimileTelephoneNumber: +1 415 449-9091 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 202-1681 +title: Chief Administrative Czar +userPassword: Password1 +uid: YassaG +givenName: Gudrun +mail: YassaG@217ec5edfeed4e93a10ae2e601d2972a.bitwarden.com +carLicense: 3TKLN8 +departmentNumber: 1360 +employeeType: Employee +homePhone: +1 415 734-1072 +initials: G. Y. +mobile: +1 415 281-7763 +pager: +1 415 450-1524 +roomNumber: 9036 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaquenette Nielson +sn: Nielson +description: This is Jaquenette Nielson's description +facsimileTelephoneNumber: +1 804 646-1251 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 777-6268 +title: Chief Janitorial Architect +userPassword: Password1 +uid: NielsonJ +givenName: Jaquenette +mail: NielsonJ@6eea686c67fb4ec88a09f208c487f7be.bitwarden.com +carLicense: GWUL25 +departmentNumber: 4969 +employeeType: Employee +homePhone: +1 804 618-4903 +initials: J. N. +mobile: +1 804 883-6323 +pager: +1 804 626-7179 +roomNumber: 8655 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AntonPhuoc Tyndall +sn: Tyndall +description: This is AntonPhuoc Tyndall's description +facsimileTelephoneNumber: +1 818 814-4819 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 241-8950 +title: Chief Management Engineer +userPassword: Password1 +uid: TyndallA +givenName: AntonPhuoc +mail: TyndallA@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com +carLicense: IN58PD +departmentNumber: 9665 +employeeType: Contract +homePhone: +1 818 714-9954 +initials: A. T. +mobile: +1 818 768-4586 +pager: +1 818 536-5877 +roomNumber: 8080 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Damon Bradbury,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Damon Bradbury +sn: Bradbury +description: This is Damon Bradbury's description +facsimileTelephoneNumber: +1 213 947-4028 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 575-5825 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: BradburD +givenName: Damon +mail: BradburD@c5677bf046324d648a7018e163260369.bitwarden.com +carLicense: LBI6IB +departmentNumber: 7694 +employeeType: Contract +homePhone: +1 213 176-5485 +initials: D. B. +mobile: +1 213 851-7892 +pager: +1 213 616-3851 +roomNumber: 9334 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheree ProgramOffice +sn: ProgramOffice +description: This is Sheree ProgramOffice's description +facsimileTelephoneNumber: +1 818 643-6247 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 383-9014 +title: Chief Peons Vice President +userPassword: Password1 +uid: ProgramS +givenName: Sheree +mail: ProgramS@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com +carLicense: OBTN7N +departmentNumber: 9377 +employeeType: Normal +homePhone: +1 818 774-9508 +initials: S. P. +mobile: +1 818 463-4753 +pager: +1 818 555-5948 +roomNumber: 8201 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Onette Garguilo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Onette Garguilo +sn: Garguilo +description: This is Onette Garguilo's description +facsimileTelephoneNumber: +1 206 417-2876 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 163-9034 +title: Supreme Peons Technician +userPassword: Password1 +uid: GarguilO +givenName: Onette +mail: GarguilO@f721dbef06364385bb5bd030d8447566.bitwarden.com +carLicense: R95RE9 +departmentNumber: 7208 +employeeType: Contract +homePhone: +1 206 674-3146 +initials: O. G. +mobile: +1 206 305-7631 +pager: +1 206 362-7940 +roomNumber: 8643 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Meridel Dahl,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meridel Dahl +sn: Dahl +description: This is Meridel Dahl's description +facsimileTelephoneNumber: +1 408 753-6096 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 958-4546 +title: Chief Management Janitor +userPassword: Password1 +uid: DahlM +givenName: Meridel +mail: DahlM@3eadf1668d9548a8a0a9a2df5d767d49.bitwarden.com +carLicense: 4K9GGY +departmentNumber: 5078 +employeeType: Normal +homePhone: +1 408 979-6969 +initials: M. D. +mobile: +1 408 890-6500 +pager: +1 408 437-9763 +roomNumber: 8150 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clem Gallagher,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clem Gallagher +sn: Gallagher +description: This is Clem Gallagher's description +facsimileTelephoneNumber: +1 213 434-9569 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 722-4370 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: GallaghC +givenName: Clem +mail: GallaghC@283ec365fe654c3fba136ca1c0a944d2.bitwarden.com +carLicense: 5F4H2B +departmentNumber: 8351 +employeeType: Normal +homePhone: +1 213 620-9312 +initials: C. G. +mobile: +1 213 190-6148 +pager: +1 213 632-1107 +roomNumber: 9124 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lanni Totti,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lanni Totti +sn: Totti +description: This is Lanni Totti's description +facsimileTelephoneNumber: +1 213 263-1564 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 154-9656 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: TottiL +givenName: Lanni +mail: TottiL@42ad681604354ebd8ba7299c92bab329.bitwarden.com +carLicense: O86LUG +departmentNumber: 1977 +employeeType: Contract +homePhone: +1 213 513-9220 +initials: L. T. +mobile: +1 213 112-1464 +pager: +1 213 983-9041 +roomNumber: 8405 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Robertson Soh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robertson Soh +sn: Soh +description: This is Robertson Soh's description +facsimileTelephoneNumber: +1 510 271-3411 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 510 566-6359 +title: Master Product Development Writer +userPassword: Password1 +uid: SohR +givenName: Robertson +mail: SohR@790b795bf7b24cf6af4ced64b738e341.bitwarden.com +carLicense: 65W8P3 +departmentNumber: 1309 +employeeType: Normal +homePhone: +1 510 746-6435 +initials: R. S. +mobile: +1 510 837-1498 +pager: +1 510 911-3508 +roomNumber: 9878 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maegan Nakamura +sn: Nakamura +description: This is Maegan Nakamura's description +facsimileTelephoneNumber: +1 804 247-2108 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 185-1085 +title: Junior Human Resources Evangelist +userPassword: Password1 +uid: NakamurM +givenName: Maegan +mail: NakamurM@753b48fb7ffe43dd87736153647baa4b.bitwarden.com +carLicense: W418PY +departmentNumber: 8301 +employeeType: Normal +homePhone: +1 804 154-8792 +initials: M. N. +mobile: +1 804 147-2858 +pager: +1 804 246-4482 +roomNumber: 9763 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pavia Costen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pavia Costen +sn: Costen +description: This is Pavia Costen's description +facsimileTelephoneNumber: +1 206 681-5655 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 211-7662 +title: Chief Administrative Czar +userPassword: Password1 +uid: CostenP +givenName: Pavia +mail: CostenP@8187109cbba7441ab35098b49dbd1de9.bitwarden.com +carLicense: FKLXBP +departmentNumber: 5148 +employeeType: Employee +homePhone: +1 206 677-8951 +initials: P. C. +mobile: +1 206 173-2801 +pager: +1 206 235-7423 +roomNumber: 8955 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karyn Holz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karyn Holz +sn: Holz +description: This is Karyn Holz's description +facsimileTelephoneNumber: +1 206 340-4865 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 253-2482 +title: Associate Administrative Technician +userPassword: Password1 +uid: HolzK +givenName: Karyn +mail: HolzK@bb08aadb4193484cae12aab63b02863d.bitwarden.com +carLicense: 5IEBEE +departmentNumber: 3679 +employeeType: Contract +homePhone: +1 206 817-2329 +initials: K. H. +mobile: +1 206 173-6787 +pager: +1 206 917-8341 +roomNumber: 8559 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ikram Thiel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ikram Thiel +sn: Thiel +description: This is Ikram Thiel's description +facsimileTelephoneNumber: +1 213 452-3200 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 656-2685 +title: Junior Payroll Stooge +userPassword: Password1 +uid: ThielI +givenName: Ikram +mail: ThielI@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com +carLicense: POEHB8 +departmentNumber: 4034 +employeeType: Normal +homePhone: +1 213 763-9898 +initials: I. T. +mobile: +1 213 701-4496 +pager: +1 213 698-4539 +roomNumber: 9936 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alkarim Hiraki +sn: Hiraki +description: This is Alkarim Hiraki's description +facsimileTelephoneNumber: +1 415 717-6592 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 679-7482 +title: Associate Administrative President +userPassword: Password1 +uid: HirakiA +givenName: Alkarim +mail: HirakiA@6b01ea5296ae43ddbca168736ac18b91.bitwarden.com +carLicense: J4PYMQ +departmentNumber: 4105 +employeeType: Normal +homePhone: +1 415 101-4231 +initials: A. H. +mobile: +1 415 543-5938 +pager: +1 415 565-6264 +roomNumber: 8358 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrzej Sylvie +sn: Sylvie +description: This is Andrzej Sylvie's description +facsimileTelephoneNumber: +1 408 117-9983 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 408 827-5189 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: SylvieA +givenName: Andrzej +mail: SylvieA@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com +carLicense: CUVYNS +departmentNumber: 5297 +employeeType: Employee +homePhone: +1 408 472-9362 +initials: A. S. +mobile: +1 408 345-9411 +pager: +1 408 660-4843 +roomNumber: 8652 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ladan Fabrizio,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ladan Fabrizio +sn: Fabrizio +description: This is Ladan Fabrizio's description +facsimileTelephoneNumber: +1 804 851-5644 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 728-7007 +title: Supreme Peons Czar +userPassword: Password1 +uid: FabriziL +givenName: Ladan +mail: FabriziL@a2ce9e15b99944e89da6ac3d6191a31a.bitwarden.com +carLicense: MVT0PJ +departmentNumber: 2027 +employeeType: Contract +homePhone: +1 804 283-5489 +initials: L. F. +mobile: +1 804 142-5620 +pager: +1 804 836-8071 +roomNumber: 9711 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Leeanne Credille,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leeanne Credille +sn: Credille +description: This is Leeanne Credille's description +facsimileTelephoneNumber: +1 510 284-6504 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 510 550-9337 +title: Associate Product Testing Director +userPassword: Password1 +uid: CredillL +givenName: Leeanne +mail: CredillL@e8711dcc34d6494b9af82b382ecdea7d.bitwarden.com +carLicense: T1H3W2 +departmentNumber: 6863 +employeeType: Employee +homePhone: +1 510 382-2975 +initials: L. C. +mobile: +1 510 357-3196 +pager: +1 510 234-4412 +roomNumber: 9533 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Augusto Aguiar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Augusto Aguiar +sn: Aguiar +description: This is Augusto Aguiar's description +facsimileTelephoneNumber: +1 510 164-7955 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 220-6155 +title: Associate Management Dictator +userPassword: Password1 +uid: AguiarA +givenName: Augusto +mail: AguiarA@4b32479366c74b46b2b68466f59bae46.bitwarden.com +carLicense: UJ1N5I +departmentNumber: 4896 +employeeType: Contract +homePhone: +1 510 850-3413 +initials: A. A. +mobile: +1 510 717-1534 +pager: +1 510 669-6712 +roomNumber: 8072 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gayl IBNTAS,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gayl IBNTAS +sn: IBNTAS +description: This is Gayl IBNTAS's description +facsimileTelephoneNumber: +1 206 789-7877 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 766-8830 +title: Supreme Peons Admin +userPassword: Password1 +uid: IBNTASG +givenName: Gayl +mail: IBNTASG@f7752e330a264f1884c22f0f347f41b4.bitwarden.com +carLicense: 1LAITG +departmentNumber: 8996 +employeeType: Normal +homePhone: +1 206 166-5570 +initials: G. I. +mobile: +1 206 234-8663 +pager: +1 206 601-4969 +roomNumber: 8453 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Painterson Watkinson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Painterson Watkinson +sn: Watkinson +description: This is Painterson Watkinson's description +facsimileTelephoneNumber: +1 206 551-2502 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 920-2456 +title: Master Administrative Czar +userPassword: Password1 +uid: WatkinsP +givenName: Painterson +mail: WatkinsP@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com +carLicense: ICVTUF +departmentNumber: 4575 +employeeType: Employee +homePhone: +1 206 380-1311 +initials: P. W. +mobile: +1 206 820-2600 +pager: +1 206 119-2602 +roomNumber: 9669 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jagjit Radovnikovic +sn: Radovnikovic +description: This is Jagjit Radovnikovic's description +facsimileTelephoneNumber: +1 818 121-5216 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 629-7255 +title: Supreme Payroll Sales Rep +userPassword: Password1 +uid: RadovniJ +givenName: Jagjit +mail: RadovniJ@c7ac29b8c7544beabc5b51db5b6a9b3a.bitwarden.com +carLicense: 5QW58Q +departmentNumber: 3017 +employeeType: Employee +homePhone: +1 818 335-5540 +initials: J. R. +mobile: +1 818 684-6122 +pager: +1 818 746-4732 +roomNumber: 9981 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kieran Copley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kieran Copley +sn: Copley +description: This is Kieran Copley's description +facsimileTelephoneNumber: +1 213 489-2801 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 693-6620 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: CopleyK +givenName: Kieran +mail: CopleyK@6ba6fd011294489da26fcecac46b96da.bitwarden.com +carLicense: Q3J5DG +departmentNumber: 4796 +employeeType: Contract +homePhone: +1 213 493-6334 +initials: K. C. +mobile: +1 213 742-2235 +pager: +1 213 522-2171 +roomNumber: 9120 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Othilie Sconzo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othilie Sconzo +sn: Sconzo +description: This is Othilie Sconzo's description +facsimileTelephoneNumber: +1 415 204-6412 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 272-3087 +title: Junior Peons Manager +userPassword: Password1 +uid: SconzoO +givenName: Othilie +mail: SconzoO@726a27d8fd0d444e9b0592ed813a614a.bitwarden.com +carLicense: PEIDE9 +departmentNumber: 6502 +employeeType: Normal +homePhone: +1 415 439-7244 +initials: O. S. +mobile: +1 415 581-8044 +pager: +1 415 113-5844 +roomNumber: 8471 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ottawa Schieber +sn: Schieber +description: This is Ottawa Schieber's description +facsimileTelephoneNumber: +1 206 488-9483 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 570-7685 +title: Chief Human Resources Manager +userPassword: Password1 +uid: SchiebeO +givenName: Ottawa +mail: SchiebeO@d8522133168344ce827a4130e7d16436.bitwarden.com +carLicense: K7JCM1 +departmentNumber: 1116 +employeeType: Contract +homePhone: +1 206 838-4773 +initials: O. S. +mobile: +1 206 440-5626 +pager: +1 206 879-2953 +roomNumber: 8977 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Raju Sellars,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raju Sellars +sn: Sellars +description: This is Raju Sellars's description +facsimileTelephoneNumber: +1 213 383-2768 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 783-4900 +title: Chief Payroll Fellow +userPassword: Password1 +uid: SellarsR +givenName: Raju +mail: SellarsR@a3f707626d6147889e378c357f0c4921.bitwarden.com +carLicense: B3FMNW +departmentNumber: 8237 +employeeType: Contract +homePhone: +1 213 427-7385 +initials: R. S. +mobile: +1 213 974-9934 +pager: +1 213 383-4200 +roomNumber: 8177 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carly Kammerer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carly Kammerer +sn: Kammerer +description: This is Carly Kammerer's description +facsimileTelephoneNumber: +1 213 578-4574 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 970-5794 +title: Master Janitorial Sales Rep +userPassword: Password1 +uid: KammereC +givenName: Carly +mail: KammereC@bd86eafb5d8348f2aca6e7dd76b8a0a1.bitwarden.com +carLicense: RT1NMA +departmentNumber: 4540 +employeeType: Normal +homePhone: +1 213 475-3190 +initials: C. K. +mobile: +1 213 263-7490 +pager: +1 213 198-6877 +roomNumber: 9953 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dian Rhoads,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dian Rhoads +sn: Rhoads +description: This is Dian Rhoads's description +facsimileTelephoneNumber: +1 804 986-8096 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 904-8595 +title: Chief Administrative Dictator +userPassword: Password1 +uid: RhoadsD +givenName: Dian +mail: RhoadsD@4288404d8e88496eb1da71471cd4a940.bitwarden.com +carLicense: 5EB9OL +departmentNumber: 6880 +employeeType: Contract +homePhone: +1 804 872-1138 +initials: D. R. +mobile: +1 804 376-3143 +pager: +1 804 797-7085 +roomNumber: 8675 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Utpala Weldon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Utpala Weldon +sn: Weldon +description: This is Utpala Weldon's description +facsimileTelephoneNumber: +1 213 518-3179 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 140-3458 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: WeldonU +givenName: Utpala +mail: WeldonU@c99bb7173b5043c2a474937e225abb28.bitwarden.com +carLicense: 4FNIFC +departmentNumber: 9243 +employeeType: Contract +homePhone: +1 213 422-3737 +initials: U. W. +mobile: +1 213 944-7429 +pager: +1 213 515-4588 +roomNumber: 8708 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elva JodoinStJean +sn: JodoinStJean +description: This is Elva JodoinStJean's description +facsimileTelephoneNumber: +1 510 548-7290 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 211-1212 +title: Supreme Product Development Artist +userPassword: Password1 +uid: JodoinSE +givenName: Elva +mail: JodoinSE@37b876b4a91540b4b71770c7a49beee8.bitwarden.com +carLicense: YLDHRN +departmentNumber: 7426 +employeeType: Normal +homePhone: +1 510 608-1287 +initials: E. J. +mobile: +1 510 594-3653 +pager: +1 510 982-8873 +roomNumber: 8381 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Thornton McDermott,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thornton McDermott +sn: McDermott +description: This is Thornton McDermott's description +facsimileTelephoneNumber: +1 804 424-6594 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 949-4051 +title: Junior Product Development Vice President +userPassword: Password1 +uid: McDermoT +givenName: Thornton +mail: McDermoT@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com +carLicense: IHGJ7G +departmentNumber: 6623 +employeeType: Normal +homePhone: +1 804 273-2874 +initials: T. M. +mobile: +1 804 369-3381 +pager: +1 804 482-1093 +roomNumber: 8912 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Juditha Shirai,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juditha Shirai +sn: Shirai +description: This is Juditha Shirai's description +facsimileTelephoneNumber: +1 804 673-2287 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 186-7727 +title: Master Janitorial Director +userPassword: Password1 +uid: ShiraiJ +givenName: Juditha +mail: ShiraiJ@95965185925a4793bf90f83b6e0b2310.bitwarden.com +carLicense: BVY8NB +departmentNumber: 5252 +employeeType: Contract +homePhone: +1 804 756-6348 +initials: J. S. +mobile: +1 804 566-1649 +pager: +1 804 720-2453 +roomNumber: 9275 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nijen Nevardauskis +sn: Nevardauskis +description: This is Nijen Nevardauskis's description +facsimileTelephoneNumber: +1 818 712-5636 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 653-9474 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: NevardaN +givenName: Nijen +mail: NevardaN@341c2a7aa79d4aa1aa97b332acebc155.bitwarden.com +carLicense: 57NFFK +departmentNumber: 8914 +employeeType: Employee +homePhone: +1 818 810-9064 +initials: N. N. +mobile: +1 818 540-7639 +pager: +1 818 863-8491 +roomNumber: 8863 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lauri Ramakesavan +sn: Ramakesavan +description: This is Lauri Ramakesavan's description +facsimileTelephoneNumber: +1 213 371-1197 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 222-6764 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: RamakesL +givenName: Lauri +mail: RamakesL@c9e737b9c70b4882afff21061f6d5241.bitwarden.com +carLicense: 1JBBH7 +departmentNumber: 9951 +employeeType: Normal +homePhone: +1 213 936-9234 +initials: L. R. +mobile: +1 213 274-1426 +pager: +1 213 162-8440 +roomNumber: 9218 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Wini Flynn,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wini Flynn +sn: Flynn +description: This is Wini Flynn's description +facsimileTelephoneNumber: +1 213 431-1990 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 360-9574 +title: Master Human Resources Technician +userPassword: Password1 +uid: FlynnW +givenName: Wini +mail: FlynnW@97e455d14de64fb1ac625485af466bd2.bitwarden.com +carLicense: WHXYT2 +departmentNumber: 9125 +employeeType: Employee +homePhone: +1 213 176-3856 +initials: W. F. +mobile: +1 213 964-3847 +pager: +1 213 633-7398 +roomNumber: 9803 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Open Simhan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Open Simhan +sn: Simhan +description: This is Open Simhan's description +facsimileTelephoneNumber: +1 415 722-6366 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 952-1049 +title: Master Product Testing Czar +userPassword: Password1 +uid: SimhanO +givenName: Open +mail: SimhanO@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com +carLicense: 4D9MII +departmentNumber: 6954 +employeeType: Normal +homePhone: +1 415 671-2971 +initials: O. S. +mobile: +1 415 398-5877 +pager: +1 415 411-6108 +roomNumber: 9621 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maala Ufomadu +sn: Ufomadu +description: This is Maala Ufomadu's description +facsimileTelephoneNumber: +1 510 538-6496 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 885-7632 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: UfomaduM +givenName: Maala +mail: UfomaduM@3dedccc8ea03468b9d15ac11ca05c230.bitwarden.com +carLicense: GX8P41 +departmentNumber: 2641 +employeeType: Employee +homePhone: +1 510 800-6448 +initials: M. U. +mobile: +1 510 904-6649 +pager: +1 510 661-5087 +roomNumber: 8985 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Adelina Grigsby,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adelina Grigsby +sn: Grigsby +description: This is Adelina Grigsby's description +facsimileTelephoneNumber: +1 213 944-8825 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 323-1075 +title: Junior Management Artist +userPassword: Password1 +uid: GrigsbyA +givenName: Adelina +mail: GrigsbyA@2a76555db2804fcd904317c1fab7d4f7.bitwarden.com +carLicense: XA1HM7 +departmentNumber: 7081 +employeeType: Employee +homePhone: +1 213 610-1722 +initials: A. G. +mobile: +1 213 883-7556 +pager: +1 213 886-3901 +roomNumber: 9879 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imtaz Sanderson +sn: Sanderson +description: This is Imtaz Sanderson's description +facsimileTelephoneNumber: +1 510 721-5016 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 508-2867 +title: Associate Product Testing Technician +userPassword: Password1 +uid: SandersI +givenName: Imtaz +mail: SandersI@01d981966ccd4e18a1de23880ee9b91c.bitwarden.com +carLicense: 9A0AWT +departmentNumber: 7387 +employeeType: Normal +homePhone: +1 510 427-2346 +initials: I. S. +mobile: +1 510 445-6822 +pager: +1 510 125-1838 +roomNumber: 8047 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yolanda Pendergrass +sn: Pendergrass +description: This is Yolanda Pendergrass's description +facsimileTelephoneNumber: +1 206 982-7204 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 206 496-5239 +title: Junior Payroll Stooge +userPassword: Password1 +uid: PendergY +givenName: Yolanda +mail: PendergY@b992faaca776477fbca286ae42f6aa1f.bitwarden.com +carLicense: NUXXO7 +departmentNumber: 9549 +employeeType: Normal +homePhone: +1 206 782-3643 +initials: Y. P. +mobile: +1 206 119-8230 +pager: +1 206 566-6945 +roomNumber: 9887 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Woon Gillis,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Woon Gillis +sn: Gillis +description: This is Woon Gillis's description +facsimileTelephoneNumber: +1 206 571-4707 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 206 573-2685 +title: Master Product Development Manager +userPassword: Password1 +uid: GillisW +givenName: Woon +mail: GillisW@00fb40554c314de29c0898550e0a0fe9.bitwarden.com +carLicense: ASKXPP +departmentNumber: 4001 +employeeType: Contract +homePhone: +1 206 687-2472 +initials: W. G. +mobile: +1 206 681-9208 +pager: +1 206 885-9560 +roomNumber: 8096 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Remi Lillis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Remi Lillis +sn: Lillis +description: This is Remi Lillis's description +facsimileTelephoneNumber: +1 206 402-4979 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 734-9113 +title: Supreme Payroll Dictator +userPassword: Password1 +uid: LillisR +givenName: Remi +mail: LillisR@ca687c982977464ab0f83bbb31a64113.bitwarden.com +carLicense: 54HPL3 +departmentNumber: 8688 +employeeType: Normal +homePhone: +1 206 115-4212 +initials: R. L. +mobile: +1 206 769-3541 +pager: +1 206 647-5650 +roomNumber: 9557 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dagmar Niles,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dagmar Niles +sn: Niles +description: This is Dagmar Niles's description +facsimileTelephoneNumber: +1 415 479-6662 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 415 556-8375 +title: Associate Product Development Writer +userPassword: Password1 +uid: NilesD +givenName: Dagmar +mail: NilesD@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com +carLicense: ASKADC +departmentNumber: 4399 +employeeType: Employee +homePhone: +1 415 835-2833 +initials: D. N. +mobile: +1 415 455-2058 +pager: +1 415 966-1404 +roomNumber: 8012 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramakant Majmudar +sn: Majmudar +description: This is Ramakant Majmudar's description +facsimileTelephoneNumber: +1 415 842-2775 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 473-8688 +title: Associate Human Resources Pinhead +userPassword: Password1 +uid: MajmudaR +givenName: Ramakant +mail: MajmudaR@a90573a98b164929a489e62b8b0a18ec.bitwarden.com +carLicense: F7KM9K +departmentNumber: 2480 +employeeType: Employee +homePhone: +1 415 815-7510 +initials: R. M. +mobile: +1 415 411-2163 +pager: +1 415 829-7928 +roomNumber: 9190 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Geralene Groleau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geralene Groleau +sn: Groleau +description: This is Geralene Groleau's description +facsimileTelephoneNumber: +1 206 428-2085 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 821-5275 +title: Junior Peons Admin +userPassword: Password1 +uid: GroleauG +givenName: Geralene +mail: GroleauG@1390fe347bf84da5b12ed2e7e03c14a9.bitwarden.com +carLicense: FDMWOY +departmentNumber: 6561 +employeeType: Employee +homePhone: +1 206 613-3034 +initials: G. G. +mobile: +1 206 697-7637 +pager: +1 206 516-1477 +roomNumber: 8830 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhansukh Gavidia +sn: Gavidia +description: This is Dhansukh Gavidia's description +facsimileTelephoneNumber: +1 206 796-5677 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 388-4031 +title: Master Product Development Warrior +userPassword: Password1 +uid: GavidiaD +givenName: Dhansukh +mail: GavidiaD@4c99bc2b2d23465586f952873471fdbc.bitwarden.com +carLicense: 6CWAAH +departmentNumber: 7577 +employeeType: Normal +homePhone: +1 206 416-5965 +initials: D. G. +mobile: +1 206 358-7396 +pager: +1 206 258-1792 +roomNumber: 8388 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Colm Katsouras,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colm Katsouras +sn: Katsouras +description: This is Colm Katsouras's description +facsimileTelephoneNumber: +1 415 158-1111 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 587-9555 +title: Chief Peons Admin +userPassword: Password1 +uid: KatsourC +givenName: Colm +mail: KatsourC@376885ebe2864fefa119c1511a764692.bitwarden.com +carLicense: UJG7D6 +departmentNumber: 7916 +employeeType: Normal +homePhone: +1 415 455-6876 +initials: C. K. +mobile: +1 415 595-9370 +pager: +1 415 506-9792 +roomNumber: 8646 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ermengarde Thedford +sn: Thedford +description: This is Ermengarde Thedford's description +facsimileTelephoneNumber: +1 206 165-9651 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 206 910-3813 +title: Junior Payroll Stooge +userPassword: Password1 +uid: ThedforE +givenName: Ermengarde +mail: ThedforE@8f64f66384734fcda6f7276e237047aa.bitwarden.com +carLicense: W7KV2C +departmentNumber: 9786 +employeeType: Employee +homePhone: +1 206 869-2664 +initials: E. T. +mobile: +1 206 320-8615 +pager: +1 206 587-3927 +roomNumber: 8887 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Caroline Darou,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caroline Darou +sn: Darou +description: This is Caroline Darou's description +facsimileTelephoneNumber: +1 408 647-8228 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 708-4150 +title: Associate Management Technician +userPassword: Password1 +uid: DarouC +givenName: Caroline +mail: DarouC@5d0b867d32fb46e6b508ea727cf0a4d7.bitwarden.com +carLicense: OIYAC9 +departmentNumber: 3166 +employeeType: Contract +homePhone: +1 408 364-8174 +initials: C. D. +mobile: +1 408 120-9704 +pager: +1 408 542-7038 +roomNumber: 9241 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaylyn Jubainville +sn: Jubainville +description: This is Shaylyn Jubainville's description +facsimileTelephoneNumber: +1 804 216-3221 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 774-6343 +title: Supreme Product Development Czar +userPassword: Password1 +uid: JubainvS +givenName: Shaylyn +mail: JubainvS@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com +carLicense: Y4XK5Q +departmentNumber: 6879 +employeeType: Contract +homePhone: +1 804 808-6476 +initials: S. J. +mobile: +1 804 758-1882 +pager: +1 804 584-8695 +roomNumber: 9916 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wai Aldhizer +sn: Aldhizer +description: This is Wai Aldhizer's description +facsimileTelephoneNumber: +1 818 426-5473 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 645-3034 +title: Master Janitorial Artist +userPassword: Password1 +uid: AldhizeW +givenName: Wai +mail: AldhizeW@237fc261a1ea4cd0aba9b13fec2d1761.bitwarden.com +carLicense: 722CU1 +departmentNumber: 9849 +employeeType: Contract +homePhone: +1 818 766-4039 +initials: W. A. +mobile: +1 818 445-6798 +pager: +1 818 464-1506 +roomNumber: 8405 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephen Fedoruk +sn: Fedoruk +description: This is Stephen Fedoruk's description +facsimileTelephoneNumber: +1 818 143-8228 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 400-6562 +title: Master Payroll Dictator +userPassword: Password1 +uid: FedorukS +givenName: Stephen +mail: FedorukS@08cd8d018d96499180ed835a506acb7e.bitwarden.com +carLicense: OIRQEE +departmentNumber: 9323 +employeeType: Normal +homePhone: +1 818 242-5240 +initials: S. F. +mobile: +1 818 953-7750 +pager: +1 818 344-7953 +roomNumber: 9826 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Maegan Rafter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maegan Rafter +sn: Rafter +description: This is Maegan Rafter's description +facsimileTelephoneNumber: +1 818 594-9250 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 295-2078 +title: Associate Product Development Vice President +userPassword: Password1 +uid: RafterM +givenName: Maegan +mail: RafterM@fc7648c9712348689a0bc53cb789244a.bitwarden.com +carLicense: FUYIDD +departmentNumber: 7348 +employeeType: Employee +homePhone: +1 818 194-7441 +initials: M. R. +mobile: +1 818 316-2557 +pager: +1 818 264-5463 +roomNumber: 9732 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Margery Buckalew,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margery Buckalew +sn: Buckalew +description: This is Margery Buckalew's description +facsimileTelephoneNumber: +1 408 247-8215 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 408 262-1156 +title: Chief Janitorial Manager +userPassword: Password1 +uid: BuckaleM +givenName: Margery +mail: BuckaleM@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com +carLicense: NQYMIB +departmentNumber: 8659 +employeeType: Normal +homePhone: +1 408 314-8825 +initials: M. B. +mobile: +1 408 242-3427 +pager: +1 408 117-6812 +roomNumber: 9043 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oliy Rigdon +sn: Rigdon +description: This is Oliy Rigdon's description +facsimileTelephoneNumber: +1 213 640-5522 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 187-1314 +title: Associate Janitorial Figurehead +userPassword: Password1 +uid: RigdonO +givenName: Oliy +mail: RigdonO@54b7c6b9ae32434d95317388edf7be04.bitwarden.com +carLicense: PBSWTX +departmentNumber: 4054 +employeeType: Employee +homePhone: +1 213 603-9708 +initials: O. R. +mobile: +1 213 179-4173 +pager: +1 213 205-2857 +roomNumber: 8446 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronan PCBOARDS +sn: PCBOARDS +description: This is Ronan PCBOARDS's description +facsimileTelephoneNumber: +1 206 152-3608 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 206 181-8430 +title: Master Product Development Consultant +userPassword: Password1 +uid: PCBOARDR +givenName: Ronan +mail: PCBOARDR@4325337fb43b4d3eaab4c085e23330be.bitwarden.com +carLicense: OWM0B6 +departmentNumber: 8983 +employeeType: Contract +homePhone: +1 206 543-8319 +initials: R. P. +mobile: +1 206 284-3435 +pager: +1 206 757-1089 +roomNumber: 8635 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marillin Rigsbee +sn: Rigsbee +description: This is Marillin Rigsbee's description +facsimileTelephoneNumber: +1 804 464-7914 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 136-7480 +title: Junior Product Testing Mascot +userPassword: Password1 +uid: RigsbeeM +givenName: Marillin +mail: RigsbeeM@fe393581310b47dd94b5b76f5b2a4efb.bitwarden.com +carLicense: 8OJKGS +departmentNumber: 3512 +employeeType: Contract +homePhone: +1 804 800-4287 +initials: M. R. +mobile: +1 804 419-4901 +pager: +1 804 511-2383 +roomNumber: 9119 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ariel Dillingham +sn: Dillingham +description: This is Ariel Dillingham's description +facsimileTelephoneNumber: +1 213 391-9515 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 213 765-2069 +title: Associate Product Testing Czar +userPassword: Password1 +uid: DillingA +givenName: Ariel +mail: DillingA@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com +carLicense: DSN6H4 +departmentNumber: 1075 +employeeType: Employee +homePhone: +1 213 229-6596 +initials: A. D. +mobile: +1 213 672-3459 +pager: +1 213 562-5956 +roomNumber: 9313 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Charleen Willison,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charleen Willison +sn: Willison +description: This is Charleen Willison's description +facsimileTelephoneNumber: +1 818 759-6607 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 219-3034 +title: Chief Human Resources Manager +userPassword: Password1 +uid: WillisoC +givenName: Charleen +mail: WillisoC@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com +carLicense: QSRRC0 +departmentNumber: 5076 +employeeType: Contract +homePhone: +1 818 993-8907 +initials: C. W. +mobile: +1 818 412-2050 +pager: +1 818 530-6533 +roomNumber: 8056 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatsuya Aguilar +sn: Aguilar +description: This is Tatsuya Aguilar's description +facsimileTelephoneNumber: +1 804 373-2794 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 140-7437 +title: Master Product Development Punk +userPassword: Password1 +uid: AguilarT +givenName: Tatsuya +mail: AguilarT@a083ce3425664c2eb55b289d24dc07f7.bitwarden.com +carLicense: 373UJ0 +departmentNumber: 6926 +employeeType: Normal +homePhone: +1 804 563-8544 +initials: T. A. +mobile: +1 804 619-9542 +pager: +1 804 972-5764 +roomNumber: 9787 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Basia Ouellette,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Basia Ouellette +sn: Ouellette +description: This is Basia Ouellette's description +facsimileTelephoneNumber: +1 206 295-9916 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 310-4754 +title: Associate Management Visionary +userPassword: Password1 +uid: OuelletB +givenName: Basia +mail: OuelletB@ef406855f5f845aab9324d8e46753d6b.bitwarden.com +carLicense: RUU9NI +departmentNumber: 5737 +employeeType: Normal +homePhone: +1 206 329-5128 +initials: B. O. +mobile: +1 206 580-1237 +pager: +1 206 348-7917 +roomNumber: 9725 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Latashia Ridgeway,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Latashia Ridgeway +sn: Ridgeway +description: This is Latashia Ridgeway's description +facsimileTelephoneNumber: +1 804 210-2895 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 364-8705 +title: Supreme Peons Developer +userPassword: Password1 +uid: RidgewaL +givenName: Latashia +mail: RidgewaL@c6f2558da4e64d1a92ecfa7046888845.bitwarden.com +carLicense: PB9UXG +departmentNumber: 9335 +employeeType: Normal +homePhone: +1 804 359-1441 +initials: L. R. +mobile: +1 804 304-1377 +pager: +1 804 180-8862 +roomNumber: 9497 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rhodia SOS,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhodia SOS +sn: SOS +description: This is Rhodia SOS's description +facsimileTelephoneNumber: +1 415 522-1838 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 415 140-5286 +title: Supreme Administrative Visionary +userPassword: Password1 +uid: SOSR +givenName: Rhodia +mail: SOSR@8148a52d859b468a9dde3ee8b81e013b.bitwarden.com +carLicense: XRBVAY +departmentNumber: 4488 +employeeType: Contract +homePhone: +1 415 385-2613 +initials: R. S. +mobile: +1 415 162-6021 +pager: +1 415 147-6609 +roomNumber: 8533 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=WaiHung Kan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WaiHung Kan +sn: Kan +description: This is WaiHung Kan's description +facsimileTelephoneNumber: +1 804 175-2238 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 976-1488 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: KanW +givenName: WaiHung +mail: KanW@37ef93fb374e4550b60ee55424a070b4.bitwarden.com +carLicense: GKGRY0 +departmentNumber: 5818 +employeeType: Contract +homePhone: +1 804 246-1673 +initials: W. K. +mobile: +1 804 888-7754 +pager: +1 804 424-9878 +roomNumber: 9737 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ehab Gidaro,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ehab Gidaro +sn: Gidaro +description: This is Ehab Gidaro's description +facsimileTelephoneNumber: +1 510 523-3087 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 665-6571 +title: Associate Administrative Grunt +userPassword: Password1 +uid: GidaroE +givenName: Ehab +mail: GidaroE@73187767f4034534bac7d61018b5ad2e.bitwarden.com +carLicense: 899HX3 +departmentNumber: 6048 +employeeType: Employee +homePhone: +1 510 862-5457 +initials: E. G. +mobile: +1 510 841-2815 +pager: +1 510 293-1456 +roomNumber: 9321 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Almeda Barstow,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Almeda Barstow +sn: Barstow +description: This is Almeda Barstow's description +facsimileTelephoneNumber: +1 818 163-8641 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 818 272-2388 +title: Chief Peons Vice President +userPassword: Password1 +uid: BarstowA +givenName: Almeda +mail: BarstowA@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com +carLicense: M87NJA +departmentNumber: 3826 +employeeType: Contract +homePhone: +1 818 619-2476 +initials: A. B. +mobile: +1 818 389-8305 +pager: +1 818 914-8453 +roomNumber: 9312 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hernan Newbold,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hernan Newbold +sn: Newbold +description: This is Hernan Newbold's description +facsimileTelephoneNumber: +1 408 719-1250 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 957-9492 +title: Associate Payroll Pinhead +userPassword: Password1 +uid: NewboldH +givenName: Hernan +mail: NewboldH@7d0d760c8b9f490e8a67dd2b61410f6b.bitwarden.com +carLicense: ETCV8G +departmentNumber: 5779 +employeeType: Contract +homePhone: +1 408 859-4788 +initials: H. N. +mobile: +1 408 750-4655 +pager: +1 408 846-3875 +roomNumber: 9219 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Elonore Lorenc,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elonore Lorenc +sn: Lorenc +description: This is Elonore Lorenc's description +facsimileTelephoneNumber: +1 415 501-8120 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 206-3987 +title: Master Product Development Artist +userPassword: Password1 +uid: LorencE +givenName: Elonore +mail: LorencE@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com +carLicense: C6J3FX +departmentNumber: 6795 +employeeType: Employee +homePhone: +1 415 833-6703 +initials: E. L. +mobile: +1 415 246-8075 +pager: +1 415 736-8238 +roomNumber: 8779 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melva Dingle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melva Dingle +sn: Dingle +description: This is Melva Dingle's description +facsimileTelephoneNumber: +1 818 565-5556 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 896-1115 +title: Associate Product Development Pinhead +userPassword: Password1 +uid: DingleM +givenName: Melva +mail: DingleM@155d92c95e034751a1d33e414cb11391.bitwarden.com +carLicense: 22SPBD +departmentNumber: 7764 +employeeType: Normal +homePhone: +1 818 413-2767 +initials: M. D. +mobile: +1 818 436-1279 +pager: +1 818 460-3430 +roomNumber: 8012 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Janka Gorfine,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janka Gorfine +sn: Gorfine +description: This is Janka Gorfine's description +facsimileTelephoneNumber: +1 415 593-5401 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 688-2973 +title: Master Peons Sales Rep +userPassword: Password1 +uid: GorfineJ +givenName: Janka +mail: GorfineJ@daeb41514d9e4eb79c108728fb0c78a2.bitwarden.com +carLicense: NBDB2E +departmentNumber: 4218 +employeeType: Normal +homePhone: +1 415 274-4174 +initials: J. G. +mobile: +1 415 345-2199 +pager: +1 415 585-2561 +roomNumber: 9093 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carleen Natiuk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carleen Natiuk +sn: Natiuk +description: This is Carleen Natiuk's description +facsimileTelephoneNumber: +1 510 115-2569 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 990-3839 +title: Supreme Management Artist +userPassword: Password1 +uid: NatiukC +givenName: Carleen +mail: NatiukC@8d16b23b37bd48708a820fa3c8c7f569.bitwarden.com +carLicense: 9LW0FC +departmentNumber: 3300 +employeeType: Contract +homePhone: +1 510 569-5980 +initials: C. N. +mobile: +1 510 821-9904 +pager: +1 510 357-9100 +roomNumber: 8261 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dimitra Prokes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dimitra Prokes +sn: Prokes +description: This is Dimitra Prokes's description +facsimileTelephoneNumber: +1 510 707-9125 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 559-5728 +title: Associate Management Developer +userPassword: Password1 +uid: ProkesD +givenName: Dimitra +mail: ProkesD@f32d0f90ff4e4d909353481cc0066b39.bitwarden.com +carLicense: WLSVVA +departmentNumber: 4315 +employeeType: Employee +homePhone: +1 510 833-2410 +initials: D. P. +mobile: +1 510 343-4593 +pager: +1 510 356-1112 +roomNumber: 8794 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camilla Furdoonji +sn: Furdoonji +description: This is Camilla Furdoonji's description +facsimileTelephoneNumber: +1 804 366-7736 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 328-7950 +title: Junior Human Resources Director +userPassword: Password1 +uid: FurdoonC +givenName: Camilla +mail: FurdoonC@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com +carLicense: B6KWQT +departmentNumber: 1538 +employeeType: Employee +homePhone: +1 804 769-1867 +initials: C. F. +mobile: +1 804 252-5660 +pager: +1 804 282-7099 +roomNumber: 9757 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=WaiMan Sinha,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WaiMan Sinha +sn: Sinha +description: This is WaiMan Sinha's description +facsimileTelephoneNumber: +1 510 423-2487 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 530-1673 +title: Junior Peons Director +userPassword: Password1 +uid: SinhaW +givenName: WaiMan +mail: SinhaW@83e997d320394a809a91b79c1caaf132.bitwarden.com +carLicense: KFQBSP +departmentNumber: 3870 +employeeType: Employee +homePhone: +1 510 801-1284 +initials: W. S. +mobile: +1 510 888-8631 +pager: +1 510 237-4222 +roomNumber: 8334 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Therese Nikfarjam,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Therese Nikfarjam +sn: Nikfarjam +description: This is Therese Nikfarjam's description +facsimileTelephoneNumber: +1 408 442-3948 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 148-6220 +title: Chief Peons Czar +userPassword: Password1 +uid: NikfarjT +givenName: Therese +mail: NikfarjT@1bc1409c08584b65b922db79a968ffbf.bitwarden.com +carLicense: BE0S9C +departmentNumber: 5209 +employeeType: Employee +homePhone: +1 408 410-3016 +initials: T. N. +mobile: +1 408 657-6122 +pager: +1 408 617-8289 +roomNumber: 8183 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Geer Lamonde,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geer Lamonde +sn: Lamonde +description: This is Geer Lamonde's description +facsimileTelephoneNumber: +1 415 285-6620 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 552-1240 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: LamondeG +givenName: Geer +mail: LamondeG@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com +carLicense: DB0S23 +departmentNumber: 4753 +employeeType: Contract +homePhone: +1 415 479-3211 +initials: G. L. +mobile: +1 415 363-6484 +pager: +1 415 726-2977 +roomNumber: 9461 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chelsae Polder,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsae Polder +sn: Polder +description: This is Chelsae Polder's description +facsimileTelephoneNumber: +1 408 137-9094 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 594-4122 +title: Master Janitorial Punk +userPassword: Password1 +uid: PolderC +givenName: Chelsae +mail: PolderC@646d6f014bf44c5484623c7f1ed699a0.bitwarden.com +carLicense: 2EK1WC +departmentNumber: 9859 +employeeType: Employee +homePhone: +1 408 740-5209 +initials: C. P. +mobile: +1 408 488-5944 +pager: +1 408 985-3138 +roomNumber: 8883 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shuji Pien,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shuji Pien +sn: Pien +description: This is Shuji Pien's description +facsimileTelephoneNumber: +1 213 688-3823 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 597-3910 +title: Chief Peons Dictator +userPassword: Password1 +uid: PienS +givenName: Shuji +mail: PienS@ea00f070c7ac4d9f845a3fd60ca8fef9.bitwarden.com +carLicense: 4Y48ED +departmentNumber: 1905 +employeeType: Employee +homePhone: +1 213 621-8283 +initials: S. P. +mobile: +1 213 742-1770 +pager: +1 213 609-5065 +roomNumber: 9409 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Annet Rege,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annet Rege +sn: Rege +description: This is Annet Rege's description +facsimileTelephoneNumber: +1 213 965-1316 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 816-2496 +title: Junior Administrative Architect +userPassword: Password1 +uid: RegeA +givenName: Annet +mail: RegeA@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com +carLicense: 3CX33J +departmentNumber: 1107 +employeeType: Normal +homePhone: +1 213 239-7753 +initials: A. R. +mobile: +1 213 714-4197 +pager: +1 213 197-1206 +roomNumber: 9967 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ellen Vertolli,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellen Vertolli +sn: Vertolli +description: This is Ellen Vertolli's description +facsimileTelephoneNumber: +1 415 687-4114 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 566-3916 +title: Junior Management President +userPassword: Password1 +uid: VertollE +givenName: Ellen +mail: VertollE@7b2671f4e02946de91c9978d935e087b.bitwarden.com +carLicense: R01GB8 +departmentNumber: 6910 +employeeType: Employee +homePhone: +1 415 395-8989 +initials: E. V. +mobile: +1 415 350-9122 +pager: +1 415 962-8427 +roomNumber: 9520 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Zandra Belk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zandra Belk +sn: Belk +description: This is Zandra Belk's description +facsimileTelephoneNumber: +1 510 394-7993 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 790-1891 +title: Associate Management Sales Rep +userPassword: Password1 +uid: BelkZ +givenName: Zandra +mail: BelkZ@3e63d8e6be204b07ac7dd7943bdd9def.bitwarden.com +carLicense: 1TXC7B +departmentNumber: 3697 +employeeType: Normal +homePhone: +1 510 808-9955 +initials: Z. B. +mobile: +1 510 543-7476 +pager: +1 510 866-3423 +roomNumber: 9069 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Milan Shu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milan Shu +sn: Shu +description: This is Milan Shu's description +facsimileTelephoneNumber: +1 415 248-9457 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 613-1221 +title: Associate Administrative Visionary +userPassword: Password1 +uid: ShuM +givenName: Milan +mail: ShuM@afe3f29824c043148d9eb0e4285bb233.bitwarden.com +carLicense: 76W0NK +departmentNumber: 6647 +employeeType: Normal +homePhone: +1 415 633-2025 +initials: M. S. +mobile: +1 415 508-5974 +pager: +1 415 182-7263 +roomNumber: 8963 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lubomir Carver,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lubomir Carver +sn: Carver +description: This is Lubomir Carver's description +facsimileTelephoneNumber: +1 510 127-9711 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 510 956-5004 +title: Junior Peons Architect +userPassword: Password1 +uid: CarverL +givenName: Lubomir +mail: CarverL@36afbe0488ac4cbf861f3b2611d891cd.bitwarden.com +carLicense: VY1JOH +departmentNumber: 9115 +employeeType: Employee +homePhone: +1 510 903-3200 +initials: L. C. +mobile: +1 510 824-5091 +pager: +1 510 364-6221 +roomNumber: 8489 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kieron Remrey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kieron Remrey +sn: Remrey +description: This is Kieron Remrey's description +facsimileTelephoneNumber: +1 818 557-1550 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 770-6504 +title: Supreme Payroll Stooge +userPassword: Password1 +uid: RemreyK +givenName: Kieron +mail: RemreyK@fd7e4056685f4c789c5948839975ec7d.bitwarden.com +carLicense: 89X2SH +departmentNumber: 3665 +employeeType: Employee +homePhone: +1 818 428-3039 +initials: K. R. +mobile: +1 818 971-1811 +pager: +1 818 496-1337 +roomNumber: 9365 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Frayda Urquhart,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frayda Urquhart +sn: Urquhart +description: This is Frayda Urquhart's description +facsimileTelephoneNumber: +1 510 788-4737 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 846-3673 +title: Associate Administrative Vice President +userPassword: Password1 +uid: UrquharF +givenName: Frayda +mail: UrquharF@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com +carLicense: JF1DRU +departmentNumber: 7186 +employeeType: Normal +homePhone: +1 510 712-3864 +initials: F. U. +mobile: +1 510 665-2706 +pager: +1 510 855-5850 +roomNumber: 9311 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kat Torok,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kat Torok +sn: Torok +description: This is Kat Torok's description +facsimileTelephoneNumber: +1 510 680-3857 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 336-7687 +title: Junior Human Resources Czar +userPassword: Password1 +uid: TorokK +givenName: Kat +mail: TorokK@c90beda51728416da468419570974ee9.bitwarden.com +carLicense: 91IFU8 +departmentNumber: 1929 +employeeType: Contract +homePhone: +1 510 902-5987 +initials: K. T. +mobile: +1 510 541-4302 +pager: +1 510 717-6664 +roomNumber: 8670 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Consuelo Dowell +sn: Dowell +description: This is Consuelo Dowell's description +facsimileTelephoneNumber: +1 510 962-9154 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 116-7451 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: DowellC +givenName: Consuelo +mail: DowellC@0e32fee851df4554931f75bb97b68b96.bitwarden.com +carLicense: 74174T +departmentNumber: 5584 +employeeType: Normal +homePhone: +1 510 143-8151 +initials: C. D. +mobile: +1 510 455-6578 +pager: +1 510 423-3392 +roomNumber: 8993 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Selina Sauder,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selina Sauder +sn: Sauder +description: This is Selina Sauder's description +facsimileTelephoneNumber: +1 818 260-5615 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 866-8022 +title: Associate Administrative Janitor +userPassword: Password1 +uid: SauderS +givenName: Selina +mail: SauderS@75dfcd3692074ff18248aebdf998f81c.bitwarden.com +carLicense: AT0U8M +departmentNumber: 8686 +employeeType: Employee +homePhone: +1 818 995-5351 +initials: S. S. +mobile: +1 818 469-2043 +pager: +1 818 589-6179 +roomNumber: 8159 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joshi Wery,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joshi Wery +sn: Wery +description: This is Joshi Wery's description +facsimileTelephoneNumber: +1 804 346-3937 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 804 665-7004 +title: Associate Administrative Director +userPassword: Password1 +uid: WeryJ +givenName: Joshi +mail: WeryJ@d4ec4569fe8f4ce58eb7942aa58953d0.bitwarden.com +carLicense: AP248J +departmentNumber: 7367 +employeeType: Normal +homePhone: +1 804 531-2383 +initials: J. W. +mobile: +1 804 181-9298 +pager: +1 804 797-4545 +roomNumber: 8327 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Corilla Carey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corilla Carey +sn: Carey +description: This is Corilla Carey's description +facsimileTelephoneNumber: +1 408 708-3738 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 489-7392 +title: Supreme Administrative Czar +userPassword: Password1 +uid: CareyC +givenName: Corilla +mail: CareyC@eff1fc06cb994f6c9978051d61306d1b.bitwarden.com +carLicense: XVBE14 +departmentNumber: 9698 +employeeType: Employee +homePhone: +1 408 306-3905 +initials: C. C. +mobile: +1 408 883-1644 +pager: +1 408 903-3253 +roomNumber: 9979 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Devon Patchcor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devon Patchcor +sn: Patchcor +description: This is Devon Patchcor's description +facsimileTelephoneNumber: +1 415 825-2885 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 757-1907 +title: Chief Peons Warrior +userPassword: Password1 +uid: PatchcoD +givenName: Devon +mail: PatchcoD@b89ab013f5694b158e7600fe86a66e9d.bitwarden.com +carLicense: FETT6E +departmentNumber: 5678 +employeeType: Employee +homePhone: +1 415 683-6317 +initials: D. P. +mobile: +1 415 715-7501 +pager: +1 415 832-7937 +roomNumber: 8171 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Thor Crompton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thor Crompton +sn: Crompton +description: This is Thor Crompton's description +facsimileTelephoneNumber: +1 804 312-5599 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 876-5220 +title: Associate Janitorial Director +userPassword: Password1 +uid: CromptoT +givenName: Thor +mail: CromptoT@c73dbaa0e70c411fa0d04bf8fe86f3a6.bitwarden.com +carLicense: PP9GKG +departmentNumber: 1196 +employeeType: Employee +homePhone: +1 804 309-2717 +initials: T. C. +mobile: +1 804 983-9738 +pager: +1 804 242-9634 +roomNumber: 8081 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saleem Postavsky +sn: Postavsky +description: This is Saleem Postavsky's description +facsimileTelephoneNumber: +1 804 694-7727 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 779-6693 +title: Chief Janitorial Developer +userPassword: Password1 +uid: PostavsS +givenName: Saleem +mail: PostavsS@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com +carLicense: 9IALSO +departmentNumber: 5855 +employeeType: Normal +homePhone: +1 804 473-7438 +initials: S. P. +mobile: +1 804 893-7288 +pager: +1 804 190-8128 +roomNumber: 8145 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sallee Demone,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sallee Demone +sn: Demone +description: This is Sallee Demone's description +facsimileTelephoneNumber: +1 804 711-7130 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 804 640-9577 +title: Master Janitorial Architect +userPassword: Password1 +uid: DemoneS +givenName: Sallee +mail: DemoneS@8c7907603b764cf9aa63ab1260b542bf.bitwarden.com +carLicense: 8M7X88 +departmentNumber: 8501 +employeeType: Contract +homePhone: +1 804 204-1676 +initials: S. D. +mobile: +1 804 615-7052 +pager: +1 804 327-1728 +roomNumber: 8414 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Patsy Hanley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patsy Hanley +sn: Hanley +description: This is Patsy Hanley's description +facsimileTelephoneNumber: +1 408 458-1584 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 680-9218 +title: Supreme Peons Mascot +userPassword: Password1 +uid: HanleyP +givenName: Patsy +mail: HanleyP@09c5f5e221b74d1bbb06bb0da6fd1e35.bitwarden.com +carLicense: KF29G8 +departmentNumber: 6924 +employeeType: Contract +homePhone: +1 408 391-4201 +initials: P. H. +mobile: +1 408 569-3387 +pager: +1 408 257-8382 +roomNumber: 9287 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lily Sturdivant,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lily Sturdivant +sn: Sturdivant +description: This is Lily Sturdivant's description +facsimileTelephoneNumber: +1 510 274-4414 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 545-5056 +title: Chief Management Punk +userPassword: Password1 +uid: SturdivL +givenName: Lily +mail: SturdivL@19227d32d4ac4d3c8783acb96838362f.bitwarden.com +carLicense: GHOPBR +departmentNumber: 2568 +employeeType: Normal +homePhone: +1 510 442-8935 +initials: L. S. +mobile: +1 510 734-5988 +pager: +1 510 354-3257 +roomNumber: 8129 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Howie Howarth,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Howie Howarth +sn: Howarth +description: This is Howie Howarth's description +facsimileTelephoneNumber: +1 818 470-3555 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 148-7478 +title: Master Product Development Artist +userPassword: Password1 +uid: HowarthH +givenName: Howie +mail: HowarthH@6c6664d2385d43519ebb52ff761aba92.bitwarden.com +carLicense: 1HKQJ6 +departmentNumber: 5051 +employeeType: Employee +homePhone: +1 818 775-1418 +initials: H. H. +mobile: +1 818 865-5354 +pager: +1 818 444-4240 +roomNumber: 8227 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jo Tropeano,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jo Tropeano +sn: Tropeano +description: This is Jo Tropeano's description +facsimileTelephoneNumber: +1 408 256-4070 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 725-4486 +title: Associate Administrative Director +userPassword: Password1 +uid: TropeanJ +givenName: Jo +mail: TropeanJ@9144995fa4c649da9d774d2a93d230da.bitwarden.com +carLicense: 9V98I6 +departmentNumber: 3269 +employeeType: Contract +homePhone: +1 408 447-8956 +initials: J. T. +mobile: +1 408 256-3200 +pager: +1 408 270-5597 +roomNumber: 9039 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Howard Acs,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Howard Acs +sn: Acs +description: This is Howard Acs's description +facsimileTelephoneNumber: +1 804 459-4757 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 804 378-7696 +title: Master Payroll Writer +userPassword: Password1 +uid: AcsH +givenName: Howard +mail: AcsH@c39b1ed7de78452e9d100510b4188a2b.bitwarden.com +carLicense: 1I9S9W +departmentNumber: 6970 +employeeType: Contract +homePhone: +1 804 942-3485 +initials: H. A. +mobile: +1 804 397-1794 +pager: +1 804 717-5230 +roomNumber: 9667 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liping Kulikowsky +sn: Kulikowsky +description: This is Liping Kulikowsky's description +facsimileTelephoneNumber: +1 213 443-4772 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 769-6380 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: KulikowL +givenName: Liping +mail: KulikowL@63e408cfc15a40c4ba49c3905036c334.bitwarden.com +carLicense: W2IS9V +departmentNumber: 9958 +employeeType: Contract +homePhone: +1 213 977-1381 +initials: L. K. +mobile: +1 213 738-1151 +pager: +1 213 790-5994 +roomNumber: 8194 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Otakar Carella,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Otakar Carella +sn: Carella +description: This is Otakar Carella's description +facsimileTelephoneNumber: +1 415 465-1479 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 767-7389 +title: Associate Janitorial Punk +userPassword: Password1 +uid: CarellaO +givenName: Otakar +mail: CarellaO@d375d17b83f44fc4be3924ad0f54b388.bitwarden.com +carLicense: 0U5I4S +departmentNumber: 9746 +employeeType: Contract +homePhone: +1 415 420-8034 +initials: O. C. +mobile: +1 415 650-8803 +pager: +1 415 904-9042 +roomNumber: 9375 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Digby Papajanis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Digby Papajanis +sn: Papajanis +description: This is Digby Papajanis's description +facsimileTelephoneNumber: +1 206 399-3382 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 332-8290 +title: Chief Peons Technician +userPassword: Password1 +uid: PapajanD +givenName: Digby +mail: PapajanD@0fefcde04743447b85983e188aaec0ea.bitwarden.com +carLicense: 6E51MX +departmentNumber: 5436 +employeeType: Employee +homePhone: +1 206 872-7666 +initials: D. P. +mobile: +1 206 478-3573 +pager: +1 206 443-8354 +roomNumber: 9512 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronnica Darcy +sn: Darcy +description: This is Ronnica Darcy's description +facsimileTelephoneNumber: +1 206 207-3657 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 587-5035 +title: Junior Product Testing Artist +userPassword: Password1 +uid: DarcyR +givenName: Ronnica +mail: DarcyR@caadb1299c604b6bb5f063bd78fb2a7a.bitwarden.com +carLicense: BXQFLE +departmentNumber: 5111 +employeeType: Contract +homePhone: +1 206 776-4056 +initials: R. D. +mobile: +1 206 807-9181 +pager: +1 206 491-3231 +roomNumber: 9530 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Courtenay Savanh +sn: Savanh +description: This is Courtenay Savanh's description +facsimileTelephoneNumber: +1 818 615-2613 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 487-1150 +title: Associate Human Resources Warrior +userPassword: Password1 +uid: SavanhC +givenName: Courtenay +mail: SavanhC@377af438e28144f198471c633c478745.bitwarden.com +carLicense: C0SQB7 +departmentNumber: 2916 +employeeType: Employee +homePhone: +1 818 823-6754 +initials: C. S. +mobile: +1 818 156-1443 +pager: +1 818 416-4197 +roomNumber: 9316 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deeyn Jonkheer +sn: Jonkheer +description: This is Deeyn Jonkheer's description +facsimileTelephoneNumber: +1 510 802-8361 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 665-3077 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: JonkheeD +givenName: Deeyn +mail: JonkheeD@5075a8f50d3242c58f81fcf47cd402b6.bitwarden.com +carLicense: KGPJJD +departmentNumber: 1727 +employeeType: Normal +homePhone: +1 510 724-4430 +initials: D. J. +mobile: +1 510 950-6128 +pager: +1 510 579-2271 +roomNumber: 9617 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pansy VanBenthem +sn: VanBenthem +description: This is Pansy VanBenthem's description +facsimileTelephoneNumber: +1 510 827-2501 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 787-3302 +title: Chief Product Testing Artist +userPassword: Password1 +uid: VanBentP +givenName: Pansy +mail: VanBentP@87de5470340f4f1ebdb1d5b65c157439.bitwarden.com +carLicense: 1EG04I +departmentNumber: 8339 +employeeType: Contract +homePhone: +1 510 775-9332 +initials: P. V. +mobile: +1 510 220-3262 +pager: +1 510 803-8846 +roomNumber: 9505 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Trixy Grewal,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trixy Grewal +sn: Grewal +description: This is Trixy Grewal's description +facsimileTelephoneNumber: +1 213 154-2676 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 752-9069 +title: Associate Janitorial Admin +userPassword: Password1 +uid: GrewalT +givenName: Trixy +mail: GrewalT@4c863b247c76467d94256795e24354de.bitwarden.com +carLicense: GY7A13 +departmentNumber: 5097 +employeeType: Employee +homePhone: +1 213 794-5453 +initials: T. G. +mobile: +1 213 466-8929 +pager: +1 213 769-6864 +roomNumber: 9653 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sami Huguin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sami Huguin +sn: Huguin +description: This is Sami Huguin's description +facsimileTelephoneNumber: +1 818 814-8374 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 953-3042 +title: Master Product Development Technician +userPassword: Password1 +uid: HuguinS +givenName: Sami +mail: HuguinS@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com +carLicense: WOW9RP +departmentNumber: 6466 +employeeType: Contract +homePhone: +1 818 741-8371 +initials: S. H. +mobile: +1 818 888-9980 +pager: +1 818 948-8305 +roomNumber: 8134 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kui Mulero,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kui Mulero +sn: Mulero +description: This is Kui Mulero's description +facsimileTelephoneNumber: +1 818 274-5070 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 818 570-9591 +title: Supreme Administrative Manager +userPassword: Password1 +uid: MuleroK +givenName: Kui +mail: MuleroK@4026de828f5c4d2faaf1a5de089b9c0e.bitwarden.com +carLicense: 0WL6Q3 +departmentNumber: 6919 +employeeType: Contract +homePhone: +1 818 790-9072 +initials: K. M. +mobile: +1 818 133-7243 +pager: +1 818 954-2150 +roomNumber: 8900 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tyne McHarg,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tyne McHarg +sn: McHarg +description: This is Tyne McHarg's description +facsimileTelephoneNumber: +1 206 505-3095 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 507-6941 +title: Master Product Development Dictator +userPassword: Password1 +uid: McHargT +givenName: Tyne +mail: McHargT@fd2e8792325547b4a50dd52cda4bc63f.bitwarden.com +carLicense: 568PKC +departmentNumber: 1162 +employeeType: Contract +homePhone: +1 206 686-1412 +initials: T. M. +mobile: +1 206 772-3221 +pager: +1 206 692-9234 +roomNumber: 8017 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Constantin Harkness,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constantin Harkness +sn: Harkness +description: This is Constantin Harkness's description +facsimileTelephoneNumber: +1 415 169-3753 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 342-4374 +title: Chief Product Development Artist +userPassword: Password1 +uid: HarknesC +givenName: Constantin +mail: HarknesC@57025360fa6449ed9005168a07164ed8.bitwarden.com +carLicense: L3OA8K +departmentNumber: 7032 +employeeType: Employee +homePhone: +1 415 987-4103 +initials: C. H. +mobile: +1 415 799-4786 +pager: +1 415 731-4317 +roomNumber: 9974 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Galen Mariani,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Galen Mariani +sn: Mariani +description: This is Galen Mariani's description +facsimileTelephoneNumber: +1 510 326-3704 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 806-2819 +title: Master Human Resources Czar +userPassword: Password1 +uid: MarianiG +givenName: Galen +mail: MarianiG@e772b0160cc74084b5086dc4bf71c633.bitwarden.com +carLicense: 46LBO2 +departmentNumber: 9047 +employeeType: Normal +homePhone: +1 510 315-5258 +initials: G. M. +mobile: +1 510 352-7247 +pager: +1 510 531-6606 +roomNumber: 9398 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dolores Lacosse,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dolores Lacosse +sn: Lacosse +description: This is Dolores Lacosse's description +facsimileTelephoneNumber: +1 408 767-2092 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 797-4252 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: LacosseD +givenName: Dolores +mail: LacosseD@790e9575d19b49f797a1e46c053b138e.bitwarden.com +carLicense: 7I02AX +departmentNumber: 4294 +employeeType: Normal +homePhone: +1 408 712-8418 +initials: D. L. +mobile: +1 408 945-1998 +pager: +1 408 523-3858 +roomNumber: 9728 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vradmin Aasen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vradmin Aasen +sn: Aasen +description: This is Vradmin Aasen's description +facsimileTelephoneNumber: +1 415 746-2451 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 474-1108 +title: Supreme Peons Czar +userPassword: Password1 +uid: AasenV +givenName: Vradmin +mail: AasenV@27d8375532a543b0aa95f943636664d5.bitwarden.com +carLicense: 2HEWX8 +departmentNumber: 9080 +employeeType: Normal +homePhone: +1 415 240-4022 +initials: V. A. +mobile: +1 415 961-4059 +pager: +1 415 194-1703 +roomNumber: 9422 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Roseline Revis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roseline Revis +sn: Revis +description: This is Roseline Revis's description +facsimileTelephoneNumber: +1 206 122-5582 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 177-5096 +title: Associate Janitorial Architect +userPassword: Password1 +uid: RevisR +givenName: Roseline +mail: RevisR@d470ef4083a54c788156afbe1d7bed68.bitwarden.com +carLicense: 7WXQBD +departmentNumber: 4069 +employeeType: Normal +homePhone: +1 206 565-6619 +initials: R. R. +mobile: +1 206 620-9887 +pager: +1 206 568-3094 +roomNumber: 8109 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eiji Tel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eiji Tel +sn: Tel +description: This is Eiji Tel's description +facsimileTelephoneNumber: +1 510 220-7491 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 510 303-4908 +title: Chief Administrative Visionary +userPassword: Password1 +uid: TelE +givenName: Eiji +mail: TelE@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com +carLicense: MOL0R9 +departmentNumber: 7007 +employeeType: Normal +homePhone: +1 510 958-6120 +initials: E. T. +mobile: +1 510 111-2713 +pager: +1 510 925-9695 +roomNumber: 8164 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mariesara Reichman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariesara Reichman +sn: Reichman +description: This is Mariesara Reichman's description +facsimileTelephoneNumber: +1 510 177-8157 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 750-5749 +title: Chief Product Development Developer +userPassword: Password1 +uid: ReichmaM +givenName: Mariesara +mail: ReichmaM@1a74feecd8df4dc187b3d1f94925b995.bitwarden.com +carLicense: 19NCKK +departmentNumber: 9636 +employeeType: Normal +homePhone: +1 510 824-8188 +initials: M. R. +mobile: +1 510 223-7749 +pager: +1 510 161-2800 +roomNumber: 8690 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brunhilda Lonnman +sn: Lonnman +description: This is Brunhilda Lonnman's description +facsimileTelephoneNumber: +1 818 535-7164 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 231-5160 +title: Master Janitorial Czar +userPassword: Password1 +uid: LonnmanB +givenName: Brunhilda +mail: LonnmanB@aea3f0a7f67b4eaaaa82cbd9284643da.bitwarden.com +carLicense: MEUE4P +departmentNumber: 8922 +employeeType: Normal +homePhone: +1 818 661-9272 +initials: B. L. +mobile: +1 818 924-9103 +pager: +1 818 580-3617 +roomNumber: 9275 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sandi Bush,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandi Bush +sn: Bush +description: This is Sandi Bush's description +facsimileTelephoneNumber: +1 804 581-3239 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 990-2801 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: BushS +givenName: Sandi +mail: BushS@eae6e0d3f5454385bf03afdceb5bde7a.bitwarden.com +carLicense: 7MYJDV +departmentNumber: 8857 +employeeType: Employee +homePhone: +1 804 624-1359 +initials: S. B. +mobile: +1 804 110-4284 +pager: +1 804 651-8034 +roomNumber: 8054 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emmalynn Dai,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emmalynn Dai +sn: Dai +description: This is Emmalynn Dai's description +facsimileTelephoneNumber: +1 415 277-5449 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 681-1938 +title: Junior Payroll Director +userPassword: Password1 +uid: DaiE +givenName: Emmalynn +mail: DaiE@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com +carLicense: M91WQW +departmentNumber: 8501 +employeeType: Employee +homePhone: +1 415 439-8687 +initials: E. D. +mobile: +1 415 304-5683 +pager: +1 415 276-5996 +roomNumber: 8572 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Josef Godcharles,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Josef Godcharles +sn: Godcharles +description: This is Josef Godcharles's description +facsimileTelephoneNumber: +1 804 426-7080 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 207-8797 +title: Junior Human Resources Director +userPassword: Password1 +uid: GodcharJ +givenName: Josef +mail: GodcharJ@60323e558c4a4bd4a555e49dd613a509.bitwarden.com +carLicense: D1YY6L +departmentNumber: 5014 +employeeType: Employee +homePhone: +1 804 179-2126 +initials: J. G. +mobile: +1 804 323-7352 +pager: +1 804 736-7835 +roomNumber: 9402 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tash Hurwitz +sn: Hurwitz +description: This is Tash Hurwitz's description +facsimileTelephoneNumber: +1 213 968-1277 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 804-9307 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: HurwitzT +givenName: Tash +mail: HurwitzT@faecae55819d4155ab4f3e2d05dac422.bitwarden.com +carLicense: JUOPQR +departmentNumber: 9174 +employeeType: Normal +homePhone: +1 213 392-5926 +initials: T. H. +mobile: +1 213 547-7465 +pager: +1 213 243-2320 +roomNumber: 8390 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gay Ondovcik,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gay Ondovcik +sn: Ondovcik +description: This is Gay Ondovcik's description +facsimileTelephoneNumber: +1 206 190-9854 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 458-8392 +title: Master Administrative Architect +userPassword: Password1 +uid: OndovciG +givenName: Gay +mail: OndovciG@6b2bbca4f311426b9d24c29f21d8799f.bitwarden.com +carLicense: HMWJ0J +departmentNumber: 1431 +employeeType: Normal +homePhone: +1 206 518-7979 +initials: G. O. +mobile: +1 206 207-8813 +pager: +1 206 572-8495 +roomNumber: 9728 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beverly Sidhu +sn: Sidhu +description: This is Beverly Sidhu's description +facsimileTelephoneNumber: +1 206 797-2187 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 595-9356 +title: Chief Product Testing Admin +userPassword: Password1 +uid: SidhuB +givenName: Beverly +mail: SidhuB@6e76f9c1c78c4006a9e635f43ae1e33a.bitwarden.com +carLicense: POLXEK +departmentNumber: 2013 +employeeType: Contract +homePhone: +1 206 683-9680 +initials: B. S. +mobile: +1 206 143-2012 +pager: +1 206 557-9479 +roomNumber: 8431 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cad fpsched,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cad fpsched +sn: fpsched +description: This is Cad fpsched's description +facsimileTelephoneNumber: +1 408 846-9376 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 520-8878 +title: Chief Administrative Architect +userPassword: Password1 +uid: fpschedC +givenName: Cad +mail: fpschedC@5e72004cd5c54ab885896ad64d562293.bitwarden.com +carLicense: 80WLCT +departmentNumber: 4678 +employeeType: Normal +homePhone: +1 408 985-1321 +initials: C. f. +mobile: +1 408 283-1927 +pager: +1 408 988-5892 +roomNumber: 9033 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Oscar Paris,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oscar Paris +sn: Paris +description: This is Oscar Paris's description +facsimileTelephoneNumber: +1 415 541-9298 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 467-7187 +title: Master Janitorial Mascot +userPassword: Password1 +uid: ParisO +givenName: Oscar +mail: ParisO@58b1feb535e94d39a943e5e96951c27d.bitwarden.com +carLicense: 50DGW5 +departmentNumber: 1705 +employeeType: Employee +homePhone: +1 415 333-7204 +initials: O. P. +mobile: +1 415 116-3884 +pager: +1 415 801-1598 +roomNumber: 9860 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Chan Blumer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chan Blumer +sn: Blumer +description: This is Chan Blumer's description +facsimileTelephoneNumber: +1 213 427-7590 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 632-3751 +title: Junior Janitorial Mascot +userPassword: Password1 +uid: BlumerC +givenName: Chan +mail: BlumerC@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com +carLicense: KWG84Y +departmentNumber: 8323 +employeeType: Normal +homePhone: +1 213 775-4822 +initials: C. B. +mobile: +1 213 448-6894 +pager: +1 213 898-4254 +roomNumber: 9941 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katharine Weitzel +sn: Weitzel +description: This is Katharine Weitzel's description +facsimileTelephoneNumber: +1 510 245-3181 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 498-4096 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: WeitzelK +givenName: Katharine +mail: WeitzelK@99fd889b48504677bce0dc492f7e0cf3.bitwarden.com +carLicense: 5W8RBA +departmentNumber: 5950 +employeeType: Employee +homePhone: +1 510 636-1737 +initials: K. W. +mobile: +1 510 540-5946 +pager: +1 510 304-7472 +roomNumber: 8635 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chabert Hawkins,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chabert Hawkins +sn: Hawkins +description: This is Chabert Hawkins's description +facsimileTelephoneNumber: +1 510 339-4532 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 974-8232 +title: Associate Payroll Grunt +userPassword: Password1 +uid: HawkinsC +givenName: Chabert +mail: HawkinsC@d356ac5b553f4400b101f5783a9cd0d4.bitwarden.com +carLicense: 7TCJ8N +departmentNumber: 1724 +employeeType: Contract +homePhone: +1 510 344-3698 +initials: C. H. +mobile: +1 510 557-7279 +pager: +1 510 719-3067 +roomNumber: 9290 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=VanKing Iskandar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: VanKing Iskandar +sn: Iskandar +description: This is VanKing Iskandar's description +facsimileTelephoneNumber: +1 206 665-2592 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 658-4226 +title: Chief Administrative Developer +userPassword: Password1 +uid: IskandaV +givenName: VanKing +mail: IskandaV@bbc2ed84411d4a40af49ae614b080b8d.bitwarden.com +carLicense: V94AMX +departmentNumber: 1940 +employeeType: Employee +homePhone: +1 206 664-5305 +initials: V. I. +mobile: +1 206 940-8268 +pager: +1 206 105-8062 +roomNumber: 8517 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carena Toplis,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carena Toplis +sn: Toplis +description: This is Carena Toplis's description +facsimileTelephoneNumber: +1 804 841-6620 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 145-1121 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: ToplisC +givenName: Carena +mail: ToplisC@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com +carLicense: EDNYT3 +departmentNumber: 2338 +employeeType: Normal +homePhone: +1 804 657-7421 +initials: C. T. +mobile: +1 804 672-9378 +pager: +1 804 354-9023 +roomNumber: 8789 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nelleke Fredette,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nelleke Fredette +sn: Fredette +description: This is Nelleke Fredette's description +facsimileTelephoneNumber: +1 213 134-3076 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 373-7717 +title: Master Payroll Grunt +userPassword: Password1 +uid: FredettN +givenName: Nelleke +mail: FredettN@26874cbc58cb45a4a2a676c29fc0a053.bitwarden.com +carLicense: 0RQ8I4 +departmentNumber: 6452 +employeeType: Normal +homePhone: +1 213 929-7604 +initials: N. F. +mobile: +1 213 489-7588 +pager: +1 213 468-6639 +roomNumber: 9135 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HweiLing Paparella +sn: Paparella +description: This is HweiLing Paparella's description +facsimileTelephoneNumber: +1 415 708-2998 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 750-4009 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: PaparelH +givenName: HweiLing +mail: PaparelH@c463cfcdffaa4d1cb3c37acf0334ead8.bitwarden.com +carLicense: M4WPAU +departmentNumber: 4627 +employeeType: Employee +homePhone: +1 415 383-2846 +initials: H. P. +mobile: +1 415 183-3131 +pager: +1 415 609-5768 +roomNumber: 8355 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shila Salyniuk +sn: Salyniuk +description: This is Shila Salyniuk's description +facsimileTelephoneNumber: +1 510 521-8490 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 643-6275 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: SalyniuS +givenName: Shila +mail: SalyniuS@4d5a130ce03f416380d14b9ae188b2a0.bitwarden.com +carLicense: SLEJLC +departmentNumber: 9150 +employeeType: Normal +homePhone: +1 510 753-9219 +initials: S. S. +mobile: +1 510 183-8201 +pager: +1 510 167-6131 +roomNumber: 9058 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jock Ahdieh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jock Ahdieh +sn: Ahdieh +description: This is Jock Ahdieh's description +facsimileTelephoneNumber: +1 510 305-4258 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 132-7221 +title: Chief Administrative Technician +userPassword: Password1 +uid: AhdiehJ +givenName: Jock +mail: AhdiehJ@2e50781374894ea497591fcdadb28725.bitwarden.com +carLicense: TCBNQK +departmentNumber: 1034 +employeeType: Contract +homePhone: +1 510 515-7275 +initials: J. A. +mobile: +1 510 655-6146 +pager: +1 510 383-8090 +roomNumber: 8491 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ru Lindt,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ru Lindt +sn: Lindt +description: This is Ru Lindt's description +facsimileTelephoneNumber: +1 510 609-5793 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 931-8014 +title: Associate Peons Punk +userPassword: Password1 +uid: LindtR +givenName: Ru +mail: LindtR@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com +carLicense: 0YUIWT +departmentNumber: 4367 +employeeType: Normal +homePhone: +1 510 858-4801 +initials: R. L. +mobile: +1 510 215-5809 +pager: +1 510 220-2700 +roomNumber: 8796 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klaas Boyajian +sn: Boyajian +description: This is Klaas Boyajian's description +facsimileTelephoneNumber: +1 206 711-4170 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 650-1881 +title: Master Product Testing Evangelist +userPassword: Password1 +uid: BoyajiaK +givenName: Klaas +mail: BoyajiaK@8386f2764ec04b659a8fc2d330c9443a.bitwarden.com +carLicense: DHMJ9J +departmentNumber: 8708 +employeeType: Normal +homePhone: +1 206 577-4650 +initials: K. B. +mobile: +1 206 532-5794 +pager: +1 206 887-4697 +roomNumber: 9293 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeffrey Stellitano +sn: Stellitano +description: This is Jeffrey Stellitano's description +facsimileTelephoneNumber: +1 818 852-2828 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 818 440-5924 +title: Master Payroll President +userPassword: Password1 +uid: StellitJ +givenName: Jeffrey +mail: StellitJ@f8ab716c26494879b2465829da010f5f.bitwarden.com +carLicense: V03SGB +departmentNumber: 6361 +employeeType: Normal +homePhone: +1 818 377-9046 +initials: J. S. +mobile: +1 818 670-7250 +pager: +1 818 325-1101 +roomNumber: 8801 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Desiri Picard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desiri Picard +sn: Picard +description: This is Desiri Picard's description +facsimileTelephoneNumber: +1 415 256-3511 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 349-6425 +title: Associate Management Figurehead +userPassword: Password1 +uid: PicardD +givenName: Desiri +mail: PicardD@8396829dbd6f4494811aec04c011380c.bitwarden.com +carLicense: 0U9LS2 +departmentNumber: 5270 +employeeType: Normal +homePhone: +1 415 263-1263 +initials: D. P. +mobile: +1 415 155-3497 +pager: +1 415 918-6705 +roomNumber: 8320 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mewa Melfi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mewa Melfi +sn: Melfi +description: This is Mewa Melfi's description +facsimileTelephoneNumber: +1 510 560-3782 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 400-8120 +title: Associate Payroll Admin +userPassword: Password1 +uid: MelfiM +givenName: Mewa +mail: MelfiM@7cfe2ffb0199421b9c038434ce9a5120.bitwarden.com +carLicense: 4BD82Y +departmentNumber: 3126 +employeeType: Employee +homePhone: +1 510 693-7277 +initials: M. M. +mobile: +1 510 515-2593 +pager: +1 510 436-4895 +roomNumber: 9836 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elio Naylor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elio Naylor +sn: Naylor +description: This is Elio Naylor's description +facsimileTelephoneNumber: +1 213 685-5437 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 981-6630 +title: Associate Peons Vice President +userPassword: Password1 +uid: NaylorE +givenName: Elio +mail: NaylorE@7fc160edec22498a9b7f16af82b6aca4.bitwarden.com +carLicense: 0A8KDT +departmentNumber: 4763 +employeeType: Normal +homePhone: +1 213 271-9991 +initials: E. N. +mobile: +1 213 576-7505 +pager: +1 213 214-4869 +roomNumber: 8146 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vince Adamowicz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vince Adamowicz +sn: Adamowicz +description: This is Vince Adamowicz's description +facsimileTelephoneNumber: +1 415 856-5656 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 954-2165 +title: Associate Peons Punk +userPassword: Password1 +uid: AdamowiV +givenName: Vince +mail: AdamowiV@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com +carLicense: 0L52DY +departmentNumber: 1871 +employeeType: Contract +homePhone: +1 415 354-2259 +initials: V. A. +mobile: +1 415 542-6663 +pager: +1 415 309-7063 +roomNumber: 9925 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Annis Emery,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annis Emery +sn: Emery +description: This is Annis Emery's description +facsimileTelephoneNumber: +1 206 836-5702 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 944-4166 +title: Chief Human Resources Vice President +userPassword: Password1 +uid: EmeryA +givenName: Annis +mail: EmeryA@a632ca3ec8844bd59c6fe3da28658b8e.bitwarden.com +carLicense: JP70KJ +departmentNumber: 9758 +employeeType: Normal +homePhone: +1 206 278-2382 +initials: A. E. +mobile: +1 206 463-2434 +pager: +1 206 910-2254 +roomNumber: 8978 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Valma Standen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valma Standen +sn: Standen +description: This is Valma Standen's description +facsimileTelephoneNumber: +1 415 266-9233 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 277-5392 +title: Chief Product Development Developer +userPassword: Password1 +uid: StandenV +givenName: Valma +mail: StandenV@71c4255308d847e6b55d8184e9b3d537.bitwarden.com +carLicense: 56M1B6 +departmentNumber: 2705 +employeeType: Employee +homePhone: +1 415 330-9268 +initials: V. S. +mobile: +1 415 171-4833 +pager: +1 415 450-8448 +roomNumber: 9463 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mauro Meres,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mauro Meres +sn: Meres +description: This is Mauro Meres's description +facsimileTelephoneNumber: +1 510 658-1679 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 259-8518 +title: Chief Product Development Artist +userPassword: Password1 +uid: MeresM +givenName: Mauro +mail: MeresM@f74860195dfd437aa0f4072ae1ebfe76.bitwarden.com +carLicense: ASCBLF +departmentNumber: 6602 +employeeType: Contract +homePhone: +1 510 909-2174 +initials: M. M. +mobile: +1 510 669-5381 +pager: +1 510 573-8079 +roomNumber: 8390 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Brianne Takagi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brianne Takagi +sn: Takagi +description: This is Brianne Takagi's description +facsimileTelephoneNumber: +1 804 466-5025 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 306-5696 +title: Junior Peons Technician +userPassword: Password1 +uid: TakagiB +givenName: Brianne +mail: TakagiB@7e77b31039db4b1f99292c84f6f816dd.bitwarden.com +carLicense: NVUNT4 +departmentNumber: 3912 +employeeType: Employee +homePhone: +1 804 136-7607 +initials: B. T. +mobile: +1 804 908-8319 +pager: +1 804 209-4401 +roomNumber: 9972 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Azra Gravely,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Azra Gravely +sn: Gravely +description: This is Azra Gravely's description +facsimileTelephoneNumber: +1 804 791-6538 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 686-6179 +title: Chief Management Writer +userPassword: Password1 +uid: GravelyA +givenName: Azra +mail: GravelyA@9d243e3e32d54bc397a12d4839b23572.bitwarden.com +carLicense: GW6GQS +departmentNumber: 2088 +employeeType: Contract +homePhone: +1 804 712-4839 +initials: A. G. +mobile: +1 804 429-4182 +pager: +1 804 372-8296 +roomNumber: 8138 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Liza Centeno,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liza Centeno +sn: Centeno +description: This is Liza Centeno's description +facsimileTelephoneNumber: +1 510 345-2727 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 677-4552 +title: Chief Payroll Admin +userPassword: Password1 +uid: CentenoL +givenName: Liza +mail: CentenoL@1ea928fc24024e4dbf51eb3081589728.bitwarden.com +carLicense: GQ7SJG +departmentNumber: 4172 +employeeType: Normal +homePhone: +1 510 688-7587 +initials: L. C. +mobile: +1 510 903-1961 +pager: +1 510 953-2156 +roomNumber: 9674 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lendon Pinney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lendon Pinney +sn: Pinney +description: This is Lendon Pinney's description +facsimileTelephoneNumber: +1 415 262-5734 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 713-2471 +title: Master Administrative Fellow +userPassword: Password1 +uid: PinneyL +givenName: Lendon +mail: PinneyL@a5f5618aa6144295ac3ab97f28aa1603.bitwarden.com +carLicense: I94WB9 +departmentNumber: 7315 +employeeType: Contract +homePhone: +1 415 368-1367 +initials: L. P. +mobile: +1 415 965-9374 +pager: +1 415 328-9969 +roomNumber: 8226 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Madelina Naolu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelina Naolu +sn: Naolu +description: This is Madelina Naolu's description +facsimileTelephoneNumber: +1 510 734-9511 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 211-3008 +title: Supreme Management Vice President +userPassword: Password1 +uid: NaoluM +givenName: Madelina +mail: NaoluM@199586ae1c4d4a59ab291484dbf1f208.bitwarden.com +carLicense: WJBUR6 +departmentNumber: 6172 +employeeType: Contract +homePhone: +1 510 977-9452 +initials: M. N. +mobile: +1 510 562-6326 +pager: +1 510 438-7450 +roomNumber: 9336 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brittan Vela,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brittan Vela +sn: Vela +description: This is Brittan Vela's description +facsimileTelephoneNumber: +1 804 493-6385 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 122-1634 +title: Master Peons Admin +userPassword: Password1 +uid: VelaB +givenName: Brittan +mail: VelaB@156df7528958433faec56aa3b7184ead.bitwarden.com +carLicense: NJ4HP4 +departmentNumber: 5478 +employeeType: Contract +homePhone: +1 804 623-6710 +initials: B. V. +mobile: +1 804 538-9120 +pager: +1 804 884-4828 +roomNumber: 8082 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cinnamon Kadlecik +sn: Kadlecik +description: This is Cinnamon Kadlecik's description +facsimileTelephoneNumber: +1 415 736-8325 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 227-4707 +title: Master Product Development Warrior +userPassword: Password1 +uid: KadleciC +givenName: Cinnamon +mail: KadleciC@70df15a19e614b9f9f00a61890d75319.bitwarden.com +carLicense: 6JGTYH +departmentNumber: 5027 +employeeType: Employee +homePhone: +1 415 231-3921 +initials: C. K. +mobile: +1 415 364-2549 +pager: +1 415 725-7476 +roomNumber: 9688 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marcos Spicer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcos Spicer +sn: Spicer +description: This is Marcos Spicer's description +facsimileTelephoneNumber: +1 213 837-1431 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 542-5889 +title: Junior Product Development Artist +userPassword: Password1 +uid: SpicerM +givenName: Marcos +mail: SpicerM@261fb819d58341d6876f6a82736b49d4.bitwarden.com +carLicense: HLVK9K +departmentNumber: 6920 +employeeType: Normal +homePhone: +1 213 103-4605 +initials: M. S. +mobile: +1 213 705-5752 +pager: +1 213 912-7621 +roomNumber: 9671 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pierrette Deleon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pierrette Deleon +sn: Deleon +description: This is Pierrette Deleon's description +facsimileTelephoneNumber: +1 213 422-8301 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 840-4497 +title: Supreme Management Czar +userPassword: Password1 +uid: DeleonP +givenName: Pierrette +mail: DeleonP@2f494a0423d24f8a8e3580abe2a5af0b.bitwarden.com +carLicense: OY5XQY +departmentNumber: 6104 +employeeType: Employee +homePhone: +1 213 225-8321 +initials: P. D. +mobile: +1 213 612-3167 +pager: +1 213 299-9981 +roomNumber: 8235 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Darell Groth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darell Groth +sn: Groth +description: This is Darell Groth's description +facsimileTelephoneNumber: +1 415 453-3353 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 616-7737 +title: Junior Janitorial Architect +userPassword: Password1 +uid: GrothD +givenName: Darell +mail: GrothD@aea4d2f23326488f8ebab4665e7ef975.bitwarden.com +carLicense: S3853G +departmentNumber: 5936 +employeeType: Contract +homePhone: +1 415 338-5561 +initials: D. G. +mobile: +1 415 513-7359 +pager: +1 415 551-4194 +roomNumber: 8421 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Goutam Kosiorska +sn: Kosiorska +description: This is Goutam Kosiorska's description +facsimileTelephoneNumber: +1 804 417-1711 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 994-3463 +title: Chief Product Development Punk +userPassword: Password1 +uid: KosiorsG +givenName: Goutam +mail: KosiorsG@5d8558331520489684cb760b329247ae.bitwarden.com +carLicense: LP1RSR +departmentNumber: 8582 +employeeType: Contract +homePhone: +1 804 524-1035 +initials: G. K. +mobile: +1 804 447-3197 +pager: +1 804 518-9815 +roomNumber: 9163 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kathi Altman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathi Altman +sn: Altman +description: This is Kathi Altman's description +facsimileTelephoneNumber: +1 818 380-8519 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 711-7852 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: AltmanK +givenName: Kathi +mail: AltmanK@a99e1da0f5f2400991be09c17f6454e6.bitwarden.com +carLicense: C0IAV1 +departmentNumber: 1005 +employeeType: Employee +homePhone: +1 818 207-9995 +initials: K. A. +mobile: +1 818 521-9041 +pager: +1 818 671-3529 +roomNumber: 9340 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Moel Pieroway,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moel Pieroway +sn: Pieroway +description: This is Moel Pieroway's description +facsimileTelephoneNumber: +1 818 173-4504 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 818 533-2944 +title: Associate Janitorial Architect +userPassword: Password1 +uid: PierowaM +givenName: Moel +mail: PierowaM@cda870670aa345148330b4790dab0c4f.bitwarden.com +carLicense: RXX3SX +departmentNumber: 6410 +employeeType: Contract +homePhone: +1 818 234-8445 +initials: M. P. +mobile: +1 818 247-8998 +pager: +1 818 886-7057 +roomNumber: 9884 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mildred Fansher,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mildred Fansher +sn: Fansher +description: This is Mildred Fansher's description +facsimileTelephoneNumber: +1 804 652-7961 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 909-8149 +title: Supreme Product Testing Sales Rep +userPassword: Password1 +uid: FansherM +givenName: Mildred +mail: FansherM@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com +carLicense: 586GCO +departmentNumber: 4934 +employeeType: Contract +homePhone: +1 804 980-2345 +initials: M. F. +mobile: +1 804 147-4785 +pager: +1 804 712-9890 +roomNumber: 9822 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Georgina Hardersen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgina Hardersen +sn: Hardersen +description: This is Georgina Hardersen's description +facsimileTelephoneNumber: +1 415 560-1252 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 852-4700 +title: Chief Product Development Developer +userPassword: Password1 +uid: HardersG +givenName: Georgina +mail: HardersG@44875ebf52f643b9a40efca5b647bdaa.bitwarden.com +carLicense: ILAC43 +departmentNumber: 4347 +employeeType: Contract +homePhone: +1 415 760-6805 +initials: G. H. +mobile: +1 415 843-8649 +pager: +1 415 938-3445 +roomNumber: 9806 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rasia Jakim,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rasia Jakim +sn: Jakim +description: This is Rasia Jakim's description +facsimileTelephoneNumber: +1 510 901-7170 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 197-3700 +title: Associate Product Testing Writer +userPassword: Password1 +uid: JakimR +givenName: Rasia +mail: JakimR@3ee502270a97467c9f16bb82f0538bb5.bitwarden.com +carLicense: MIPNF7 +departmentNumber: 5279 +employeeType: Contract +homePhone: +1 510 741-5537 +initials: R. J. +mobile: +1 510 306-2447 +pager: +1 510 647-4841 +roomNumber: 9172 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rycca Satterfield,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rycca Satterfield +sn: Satterfield +description: This is Rycca Satterfield's description +facsimileTelephoneNumber: +1 408 273-3953 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 307-4090 +title: Supreme Peons Manager +userPassword: Password1 +uid: SatterfR +givenName: Rycca +mail: SatterfR@c385ba2c8b694dba82e626dc336023e5.bitwarden.com +carLicense: KCLCL7 +departmentNumber: 8297 +employeeType: Normal +homePhone: +1 408 219-4724 +initials: R. S. +mobile: +1 408 788-1067 +pager: +1 408 781-2588 +roomNumber: 8615 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ShingCheong Repeta +sn: Repeta +description: This is ShingCheong Repeta's description +facsimileTelephoneNumber: +1 415 901-9152 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 859-7658 +title: Master Janitorial Stooge +userPassword: Password1 +uid: RepetaS +givenName: ShingCheong +mail: RepetaS@1bf120076f9247a7ab75ce12810b0f67.bitwarden.com +carLicense: 2I8OGM +departmentNumber: 2059 +employeeType: Employee +homePhone: +1 415 755-1485 +initials: S. R. +mobile: +1 415 931-7697 +pager: +1 415 839-8603 +roomNumber: 9479 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mellisent Snuggs +sn: Snuggs +description: This is Mellisent Snuggs's description +facsimileTelephoneNumber: +1 818 955-3093 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 818 156-2415 +title: Chief Administrative Punk +userPassword: Password1 +uid: SnuggsM +givenName: Mellisent +mail: SnuggsM@a630ce95d42f4236ab637742fd96135d.bitwarden.com +carLicense: RCOJGQ +departmentNumber: 7690 +employeeType: Contract +homePhone: +1 818 206-8776 +initials: M. S. +mobile: +1 818 727-9620 +pager: +1 818 260-2916 +roomNumber: 8479 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonelle Schlichting +sn: Schlichting +description: This is Leonelle Schlichting's description +facsimileTelephoneNumber: +1 206 528-2019 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 230-1631 +title: Master Product Development Vice President +userPassword: Password1 +uid: SchlichL +givenName: Leonelle +mail: SchlichL@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com +carLicense: M83IH1 +departmentNumber: 3432 +employeeType: Contract +homePhone: +1 206 705-1853 +initials: L. S. +mobile: +1 206 470-9539 +pager: +1 206 180-3180 +roomNumber: 8357 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Merissa Jessup,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merissa Jessup +sn: Jessup +description: This is Merissa Jessup's description +facsimileTelephoneNumber: +1 213 832-2765 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 858-6936 +title: Supreme Management Admin +userPassword: Password1 +uid: JessupM +givenName: Merissa +mail: JessupM@369d31e12885450e8a3e646342f4bbde.bitwarden.com +carLicense: 81J6S2 +departmentNumber: 9394 +employeeType: Employee +homePhone: +1 213 815-8920 +initials: M. J. +mobile: +1 213 535-5903 +pager: +1 213 975-8239 +roomNumber: 8180 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Divine Zarate,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Divine Zarate +sn: Zarate +description: This is Divine Zarate's description +facsimileTelephoneNumber: +1 510 200-3016 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 510 818-3561 +title: Associate Administrative Punk +userPassword: Password1 +uid: ZarateD +givenName: Divine +mail: ZarateD@7e667bf109b34912922cf458a184f322.bitwarden.com +carLicense: TDTAES +departmentNumber: 7120 +employeeType: Employee +homePhone: +1 510 292-3354 +initials: D. Z. +mobile: +1 510 684-6786 +pager: +1 510 571-9781 +roomNumber: 8525 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nitin Wolfe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nitin Wolfe +sn: Wolfe +description: This is Nitin Wolfe's description +facsimileTelephoneNumber: +1 408 611-2360 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 628-1716 +title: Supreme Payroll Czar +userPassword: Password1 +uid: WolfeN +givenName: Nitin +mail: WolfeN@039ec15b8547455eb4745e09f294d624.bitwarden.com +carLicense: D9GR5N +departmentNumber: 6793 +employeeType: Contract +homePhone: +1 408 335-9835 +initials: N. W. +mobile: +1 408 215-9223 +pager: +1 408 255-6298 +roomNumber: 8290 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hattie Nakonecznyj +sn: Nakonecznyj +description: This is Hattie Nakonecznyj's description +facsimileTelephoneNumber: +1 415 535-6784 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 260-6775 +title: Master Peons Engineer +userPassword: Password1 +uid: NakonecH +givenName: Hattie +mail: NakonecH@49cff37188af4618a262c09381a363cd.bitwarden.com +carLicense: HTP1EE +departmentNumber: 4236 +employeeType: Employee +homePhone: +1 415 649-4347 +initials: H. N. +mobile: +1 415 173-4813 +pager: +1 415 860-2309 +roomNumber: 8469 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonnnie Giamberardino +sn: Giamberardino +description: This is Sonnnie Giamberardino's description +facsimileTelephoneNumber: +1 206 854-1511 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 422-3848 +title: Master Janitorial Assistant +userPassword: Password1 +uid: GiamberS +givenName: Sonnnie +mail: GiamberS@9f05691ac53d429c8fd30f6c6f952561.bitwarden.com +carLicense: 7IHRVT +departmentNumber: 9432 +employeeType: Contract +homePhone: +1 206 710-1502 +initials: S. G. +mobile: +1 206 726-8300 +pager: +1 206 229-3179 +roomNumber: 9356 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bijan Badjari,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bijan Badjari +sn: Badjari +description: This is Bijan Badjari's description +facsimileTelephoneNumber: +1 408 517-1538 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 408 254-1000 +title: Associate Human Resources Writer +userPassword: Password1 +uid: BadjariB +givenName: Bijan +mail: BadjariB@e541b0cd05024e9aa895d5ed50a51779.bitwarden.com +carLicense: IIIIC2 +departmentNumber: 3332 +employeeType: Normal +homePhone: +1 408 535-6602 +initials: B. B. +mobile: +1 408 971-8326 +pager: +1 408 335-5074 +roomNumber: 8420 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Margy Chartrand,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margy Chartrand +sn: Chartrand +description: This is Margy Chartrand's description +facsimileTelephoneNumber: +1 510 320-8936 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 510 364-8545 +title: Master Human Resources Madonna +userPassword: Password1 +uid: ChartraM +givenName: Margy +mail: ChartraM@b360982dfbca4b8284c115441a6deb86.bitwarden.com +carLicense: NISHEC +departmentNumber: 5758 +employeeType: Employee +homePhone: +1 510 367-8947 +initials: M. C. +mobile: +1 510 146-8694 +pager: +1 510 451-7095 +roomNumber: 9178 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jennica Pakulski +sn: Pakulski +description: This is Jennica Pakulski's description +facsimileTelephoneNumber: +1 804 121-7698 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 804 988-5318 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: PakulskJ +givenName: Jennica +mail: PakulskJ@60df7d7038c54074b580441075f8c5a1.bitwarden.com +carLicense: JJKNMC +departmentNumber: 1727 +employeeType: Normal +homePhone: +1 804 449-9864 +initials: J. P. +mobile: +1 804 206-4950 +pager: +1 804 567-1693 +roomNumber: 9230 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Velma Portz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Velma Portz +sn: Portz +description: This is Velma Portz's description +facsimileTelephoneNumber: +1 415 369-8305 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 450-5940 +title: Junior Product Development Architect +userPassword: Password1 +uid: PortzV +givenName: Velma +mail: PortzV@5c62b86b5031426bb36534810b45c481.bitwarden.com +carLicense: RG31PT +departmentNumber: 3469 +employeeType: Employee +homePhone: +1 415 765-9077 +initials: V. P. +mobile: +1 415 456-9027 +pager: +1 415 323-4038 +roomNumber: 9068 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dodie Bandel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dodie Bandel +sn: Bandel +description: This is Dodie Bandel's description +facsimileTelephoneNumber: +1 804 329-2840 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 296-8170 +title: Associate Payroll Admin +userPassword: Password1 +uid: BandelD +givenName: Dodie +mail: BandelD@ec5b72978f304decbd01b86ff428bb78.bitwarden.com +carLicense: TSMU9P +departmentNumber: 2324 +employeeType: Employee +homePhone: +1 804 461-8330 +initials: D. B. +mobile: +1 804 454-2072 +pager: +1 804 742-2189 +roomNumber: 8802 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norma Ramakrishna +sn: Ramakrishna +description: This is Norma Ramakrishna's description +facsimileTelephoneNumber: +1 415 971-1893 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 175-3937 +title: Supreme Payroll Janitor +userPassword: Password1 +uid: RamakriN +givenName: Norma +mail: RamakriN@9c001781a73c4c5f974258a47b94b6cb.bitwarden.com +carLicense: TXIUME +departmentNumber: 8616 +employeeType: Contract +homePhone: +1 415 992-7981 +initials: N. R. +mobile: +1 415 247-6483 +pager: +1 415 697-9138 +roomNumber: 9561 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynwood Tullius +sn: Tullius +description: This is Lynwood Tullius's description +facsimileTelephoneNumber: +1 804 928-7628 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 804 725-9522 +title: Associate Human Resources Writer +userPassword: Password1 +uid: TulliusL +givenName: Lynwood +mail: TulliusL@339dae1666c141369c4355c1dbcfe99d.bitwarden.com +carLicense: UILH3B +departmentNumber: 6332 +employeeType: Employee +homePhone: +1 804 980-2303 +initials: L. T. +mobile: +1 804 299-4198 +pager: +1 804 405-3473 +roomNumber: 8804 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Georgianne Bydeley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgianne Bydeley +sn: Bydeley +description: This is Georgianne Bydeley's description +facsimileTelephoneNumber: +1 206 966-4097 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 496-5995 +title: Supreme Management Stooge +userPassword: Password1 +uid: BydeleyG +givenName: Georgianne +mail: BydeleyG@44d6da32cc49457fb610dc6e02cea7ae.bitwarden.com +carLicense: EBFYSW +departmentNumber: 8804 +employeeType: Employee +homePhone: +1 206 458-1982 +initials: G. B. +mobile: +1 206 574-6134 +pager: +1 206 236-6734 +roomNumber: 8227 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvina Gadzinowski +sn: Gadzinowski +description: This is Alvina Gadzinowski's description +facsimileTelephoneNumber: +1 206 282-8469 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 206 838-2858 +title: Associate Administrative Punk +userPassword: Password1 +uid: GadzinoA +givenName: Alvina +mail: GadzinoA@f04933e85545445793e3a5773ee7f65d.bitwarden.com +carLicense: 6AM5VH +departmentNumber: 8118 +employeeType: Normal +homePhone: +1 206 274-9152 +initials: A. G. +mobile: +1 206 517-1006 +pager: +1 206 334-6770 +roomNumber: 8256 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Barbe Bolduc,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbe Bolduc +sn: Bolduc +description: This is Barbe Bolduc's description +facsimileTelephoneNumber: +1 213 580-8110 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 285-2106 +title: Associate Administrative Technician +userPassword: Password1 +uid: BolducB +givenName: Barbe +mail: BolducB@fa0238e4957946f6b30d70f1a6cdea6e.bitwarden.com +carLicense: 72NY5V +departmentNumber: 2341 +employeeType: Employee +homePhone: +1 213 974-5466 +initials: B. B. +mobile: +1 213 575-5348 +pager: +1 213 437-8000 +roomNumber: 8624 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shaylah Demren,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaylah Demren +sn: Demren +description: This is Shaylah Demren's description +facsimileTelephoneNumber: +1 818 269-7077 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 265-9087 +title: Master Product Testing Visionary +userPassword: Password1 +uid: DemrenS +givenName: Shaylah +mail: DemrenS@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com +carLicense: TFYDL1 +departmentNumber: 8907 +employeeType: Employee +homePhone: +1 818 823-1745 +initials: S. D. +mobile: +1 818 122-5062 +pager: +1 818 458-2973 +roomNumber: 8742 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Judith Delgrosse +sn: Delgrosse +description: This is Judith Delgrosse's description +facsimileTelephoneNumber: +1 408 497-8882 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 764-3698 +title: Master Product Testing Engineer +userPassword: Password1 +uid: DelgrosJ +givenName: Judith +mail: DelgrosJ@a5390b0a929f4049987256511e1011a2.bitwarden.com +carLicense: WAXSWV +departmentNumber: 9622 +employeeType: Employee +homePhone: +1 408 107-1029 +initials: J. D. +mobile: +1 408 728-6050 +pager: +1 408 719-2414 +roomNumber: 9292 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ngai Konarski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ngai Konarski +sn: Konarski +description: This is Ngai Konarski's description +facsimileTelephoneNumber: +1 818 213-9241 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 286-3393 +title: Chief Human Resources Architect +userPassword: Password1 +uid: KonarskN +givenName: Ngai +mail: KonarskN@626bd1f6b43c43b3acf4ec37c2237915.bitwarden.com +carLicense: JTV151 +departmentNumber: 7353 +employeeType: Contract +homePhone: +1 818 337-9294 +initials: N. K. +mobile: +1 818 985-4568 +pager: +1 818 357-4494 +roomNumber: 8139 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Candi Ashley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candi Ashley +sn: Ashley +description: This is Candi Ashley's description +facsimileTelephoneNumber: +1 408 354-7986 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 452-3981 +title: Associate Peons Janitor +userPassword: Password1 +uid: AshleyC +givenName: Candi +mail: AshleyC@66f011cdb9ae4854a875f5226891a8d2.bitwarden.com +carLicense: K26VNI +departmentNumber: 5123 +employeeType: Normal +homePhone: +1 408 764-8356 +initials: C. A. +mobile: +1 408 943-6980 +pager: +1 408 968-5798 +roomNumber: 8385 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Darko Ledoux,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darko Ledoux +sn: Ledoux +description: This is Darko Ledoux's description +facsimileTelephoneNumber: +1 206 406-9650 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 915-6377 +title: Supreme Product Testing Dictator +userPassword: Password1 +uid: LedouxD +givenName: Darko +mail: LedouxD@66ff0edd83674a479ab5a1db42900b12.bitwarden.com +carLicense: V33PCM +departmentNumber: 1014 +employeeType: Contract +homePhone: +1 206 861-1605 +initials: D. L. +mobile: +1 206 764-2836 +pager: +1 206 992-2552 +roomNumber: 9028 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Trish Laberge,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trish Laberge +sn: Laberge +description: This is Trish Laberge's description +facsimileTelephoneNumber: +1 213 594-3125 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 213 131-3756 +title: Supreme Payroll Developer +userPassword: Password1 +uid: LabergeT +givenName: Trish +mail: LabergeT@b22727f208b94d678a41e54f04994fdf.bitwarden.com +carLicense: 51NW7B +departmentNumber: 6991 +employeeType: Contract +homePhone: +1 213 866-2913 +initials: T. L. +mobile: +1 213 853-7200 +pager: +1 213 184-1581 +roomNumber: 8271 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reyna Iwanyk +sn: Iwanyk +description: This is Reyna Iwanyk's description +facsimileTelephoneNumber: +1 510 816-7473 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 298-4000 +title: Junior Administrative Madonna +userPassword: Password1 +uid: IwanykR +givenName: Reyna +mail: IwanykR@18e5c35995c74b678bc1c6a71ea65f36.bitwarden.com +carLicense: XKQH41 +departmentNumber: 4717 +employeeType: Employee +homePhone: +1 510 695-3658 +initials: R. I. +mobile: +1 510 628-8726 +pager: +1 510 221-3570 +roomNumber: 9642 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Charee Fiegel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charee Fiegel +sn: Fiegel +description: This is Charee Fiegel's description +facsimileTelephoneNumber: +1 213 991-2894 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 596-7338 +title: Junior Human Resources Engineer +userPassword: Password1 +uid: FiegelC +givenName: Charee +mail: FiegelC@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com +carLicense: U16HPP +departmentNumber: 3939 +employeeType: Employee +homePhone: +1 213 924-2046 +initials: C. F. +mobile: +1 213 311-9253 +pager: +1 213 511-9414 +roomNumber: 8418 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kunitaka Shields +sn: Shields +description: This is Kunitaka Shields's description +facsimileTelephoneNumber: +1 213 204-5108 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 246-6183 +title: Associate Janitorial Assistant +userPassword: Password1 +uid: ShieldsK +givenName: Kunitaka +mail: ShieldsK@2ce2f5b513b046bfb06414d7f59708f5.bitwarden.com +carLicense: S4MCDJ +departmentNumber: 5335 +employeeType: Normal +homePhone: +1 213 728-5527 +initials: K. S. +mobile: +1 213 371-1957 +pager: +1 213 793-2471 +roomNumber: 9077 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eirena McNeese,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eirena McNeese +sn: McNeese +description: This is Eirena McNeese's description +facsimileTelephoneNumber: +1 408 186-2609 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 293-7374 +title: Junior Payroll Assistant +userPassword: Password1 +uid: McNeeseE +givenName: Eirena +mail: McNeeseE@f62b6f62dd4e412b8c6adfcff16239c3.bitwarden.com +carLicense: U8A5H7 +departmentNumber: 8814 +employeeType: Contract +homePhone: +1 408 788-1797 +initials: E. M. +mobile: +1 408 992-3366 +pager: +1 408 239-6030 +roomNumber: 8001 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosemaria Bagnato +sn: Bagnato +description: This is Rosemaria Bagnato's description +facsimileTelephoneNumber: +1 415 712-8289 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 202-4610 +title: Master Payroll Vice President +userPassword: Password1 +uid: BagnatoR +givenName: Rosemaria +mail: BagnatoR@96705dd7d66249d08ee808bb87068456.bitwarden.com +carLicense: J5NLJ2 +departmentNumber: 9525 +employeeType: Employee +homePhone: +1 415 760-4158 +initials: R. B. +mobile: +1 415 972-8235 +pager: +1 415 104-3577 +roomNumber: 9397 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Meade Epting,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meade Epting +sn: Epting +description: This is Meade Epting's description +facsimileTelephoneNumber: +1 206 469-5801 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 911-1454 +title: Master Janitorial Dictator +userPassword: Password1 +uid: EptingM +givenName: Meade +mail: EptingM@1bd38dfda0ec498fac15746919a63a0e.bitwarden.com +carLicense: L2SOCO +departmentNumber: 5303 +employeeType: Normal +homePhone: +1 206 461-2128 +initials: M. E. +mobile: +1 206 639-7952 +pager: +1 206 769-6900 +roomNumber: 9680 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eliza Marko,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eliza Marko +sn: Marko +description: This is Eliza Marko's description +facsimileTelephoneNumber: +1 804 677-3157 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 587-9782 +title: Junior Product Development Czar +userPassword: Password1 +uid: MarkoE +givenName: Eliza +mail: MarkoE@133a4b05f8ad44cc8eb15c516c740da5.bitwarden.com +carLicense: S1R2JI +departmentNumber: 8902 +employeeType: Employee +homePhone: +1 804 334-8612 +initials: E. M. +mobile: +1 804 545-2380 +pager: +1 804 336-8136 +roomNumber: 8943 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Doll Crutchfield,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doll Crutchfield +sn: Crutchfield +description: This is Doll Crutchfield's description +facsimileTelephoneNumber: +1 408 669-6686 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 156-6659 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: CrutchfD +givenName: Doll +mail: CrutchfD@9daf174545b8499b9318f63ffd3e7799.bitwarden.com +carLicense: G7VOU5 +departmentNumber: 6907 +employeeType: Normal +homePhone: +1 408 346-6809 +initials: D. C. +mobile: +1 408 484-2006 +pager: +1 408 312-8649 +roomNumber: 9345 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sergei Edwards,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sergei Edwards +sn: Edwards +description: This is Sergei Edwards's description +facsimileTelephoneNumber: +1 206 102-8732 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 905-4104 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: EdwardsS +givenName: Sergei +mail: EdwardsS@c8261f605fed4bb494dcc3af9b18f70f.bitwarden.com +carLicense: OY1BQR +departmentNumber: 2416 +employeeType: Normal +homePhone: +1 206 274-1815 +initials: S. E. +mobile: +1 206 876-8256 +pager: +1 206 700-1175 +roomNumber: 8093 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Alfons Besson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alfons Besson +sn: Besson +description: This is Alfons Besson's description +facsimileTelephoneNumber: +1 818 753-5546 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 368-7288 +title: Chief Product Testing Janitor +userPassword: Password1 +uid: BessonA +givenName: Alfons +mail: BessonA@0bd56636704d4f8e85795d32a0415211.bitwarden.com +carLicense: G1IDGP +departmentNumber: 4973 +employeeType: Normal +homePhone: +1 818 917-4939 +initials: A. B. +mobile: +1 818 889-2697 +pager: +1 818 334-6200 +roomNumber: 9575 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Delmar Modl,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delmar Modl +sn: Modl +description: This is Delmar Modl's description +facsimileTelephoneNumber: +1 408 946-3349 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 292-3787 +title: Associate Human Resources Admin +userPassword: Password1 +uid: ModlD +givenName: Delmar +mail: ModlD@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com +carLicense: DKPMAL +departmentNumber: 4672 +employeeType: Contract +homePhone: +1 408 366-2463 +initials: D. M. +mobile: +1 408 282-2978 +pager: +1 408 802-7848 +roomNumber: 8492 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Peggie Jung,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peggie Jung +sn: Jung +description: This is Peggie Jung's description +facsimileTelephoneNumber: +1 415 374-8304 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 466-7315 +title: Chief Human Resources Admin +userPassword: Password1 +uid: JungP +givenName: Peggie +mail: JungP@8232aa6ebca6495b9948a8e1eab554ef.bitwarden.com +carLicense: XB767R +departmentNumber: 3295 +employeeType: Employee +homePhone: +1 415 729-2511 +initials: P. J. +mobile: +1 415 755-6322 +pager: +1 415 198-1579 +roomNumber: 9216 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mot Goodner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mot Goodner +sn: Goodner +description: This is Mot Goodner's description +facsimileTelephoneNumber: +1 408 628-8852 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 275-6401 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: GoodnerM +givenName: Mot +mail: GoodnerM@063f8384c6d241e7ae0483f33483eb45.bitwarden.com +carLicense: HNF68G +departmentNumber: 8280 +employeeType: Normal +homePhone: +1 408 704-4411 +initials: M. G. +mobile: +1 408 759-2206 +pager: +1 408 875-1668 +roomNumber: 9766 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatsuya Dyba +sn: Dyba +description: This is Tatsuya Dyba's description +facsimileTelephoneNumber: +1 206 199-2538 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 847-3171 +title: Associate Payroll Pinhead +userPassword: Password1 +uid: DybaT +givenName: Tatsuya +mail: DybaT@83c0abbf294449be8e1bdffedc43f527.bitwarden.com +carLicense: 5QV4YP +departmentNumber: 8655 +employeeType: Employee +homePhone: +1 206 888-2779 +initials: T. D. +mobile: +1 206 453-5177 +pager: +1 206 226-9419 +roomNumber: 8715 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shaine Davalo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaine Davalo +sn: Davalo +description: This is Shaine Davalo's description +facsimileTelephoneNumber: +1 804 509-4238 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 524-6236 +title: Supreme Payroll Stooge +userPassword: Password1 +uid: DavaloS +givenName: Shaine +mail: DavaloS@a4f85fecd69348a29728c8e242a790a2.bitwarden.com +carLicense: DE567H +departmentNumber: 4894 +employeeType: Normal +homePhone: +1 804 244-3087 +initials: S. D. +mobile: +1 804 149-2207 +pager: +1 804 248-6583 +roomNumber: 8379 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rod Hingtgen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rod Hingtgen +sn: Hingtgen +description: This is Rod Hingtgen's description +facsimileTelephoneNumber: +1 213 331-9264 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 935-4092 +title: Master Peons Grunt +userPassword: Password1 +uid: HingtgeR +givenName: Rod +mail: HingtgeR@3faad65411ee4934ba03cc2bc3936056.bitwarden.com +carLicense: QN4HWK +departmentNumber: 4108 +employeeType: Normal +homePhone: +1 213 857-8555 +initials: R. H. +mobile: +1 213 889-2286 +pager: +1 213 724-4011 +roomNumber: 9742 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maddalena Melton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maddalena Melton +sn: Melton +description: This is Maddalena Melton's description +facsimileTelephoneNumber: +1 510 477-5913 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 247-6090 +title: Chief Peons Vice President +userPassword: Password1 +uid: MeltonM +givenName: Maddalena +mail: MeltonM@a651bab618794291bf5129fe307f0c99.bitwarden.com +carLicense: 2GYVRG +departmentNumber: 7627 +employeeType: Normal +homePhone: +1 510 670-5149 +initials: M. M. +mobile: +1 510 441-8000 +pager: +1 510 877-5889 +roomNumber: 8993 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jilleen Odegaard +sn: Odegaard +description: This is Jilleen Odegaard's description +facsimileTelephoneNumber: +1 415 608-8230 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 810-9847 +title: Junior Product Development Visionary +userPassword: Password1 +uid: OdegaarJ +givenName: Jilleen +mail: OdegaarJ@06929a8dcdce40d387113e867b6564b6.bitwarden.com +carLicense: 1PW3SQ +departmentNumber: 5126 +employeeType: Contract +homePhone: +1 415 680-3033 +initials: J. O. +mobile: +1 415 833-2526 +pager: +1 415 685-9798 +roomNumber: 8015 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gusta Reavis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gusta Reavis +sn: Reavis +description: This is Gusta Reavis's description +facsimileTelephoneNumber: +1 206 793-5521 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 206 894-7508 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: ReavisG +givenName: Gusta +mail: ReavisG@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com +carLicense: VXAPRU +departmentNumber: 1829 +employeeType: Employee +homePhone: +1 206 990-7163 +initials: G. R. +mobile: +1 206 754-8926 +pager: +1 206 473-9934 +roomNumber: 9536 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ramanand Noy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramanand Noy +sn: Noy +description: This is Ramanand Noy's description +facsimileTelephoneNumber: +1 510 858-9345 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 510 868-5062 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: NoyR +givenName: Ramanand +mail: NoyR@ba4a8572e0bf488184d4e003cd863d22.bitwarden.com +carLicense: 453UQV +departmentNumber: 9335 +employeeType: Employee +homePhone: +1 510 712-8560 +initials: R. N. +mobile: +1 510 726-4766 +pager: +1 510 871-8935 +roomNumber: 9655 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tom Gowens,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tom Gowens +sn: Gowens +description: This is Tom Gowens's description +facsimileTelephoneNumber: +1 510 689-1597 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 580-2348 +title: Chief Peons Fellow +userPassword: Password1 +uid: GowensT +givenName: Tom +mail: GowensT@96ee5954dbf645b89509b54bd70ed6ad.bitwarden.com +carLicense: E4MH6X +departmentNumber: 9932 +employeeType: Normal +homePhone: +1 510 699-5762 +initials: T. G. +mobile: +1 510 655-7006 +pager: +1 510 969-4459 +roomNumber: 8407 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sayed Wilke,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sayed Wilke +sn: Wilke +description: This is Sayed Wilke's description +facsimileTelephoneNumber: +1 804 846-9855 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 731-2140 +title: Associate Product Development Madonna +userPassword: Password1 +uid: WilkeS +givenName: Sayed +mail: WilkeS@fb5b6de9664f4611ab52db8eaf7e1865.bitwarden.com +carLicense: 81J0HM +departmentNumber: 6498 +employeeType: Normal +homePhone: +1 804 673-2410 +initials: S. W. +mobile: +1 804 472-7132 +pager: +1 804 776-4253 +roomNumber: 9601 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeralee Kiefer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeralee Kiefer +sn: Kiefer +description: This is Jeralee Kiefer's description +facsimileTelephoneNumber: +1 206 333-9078 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 752-6292 +title: Master Peons Technician +userPassword: Password1 +uid: KieferJ +givenName: Jeralee +mail: KieferJ@59f15b077c4a4aa5be8ad6d7b944d5f8.bitwarden.com +carLicense: 40G3CN +departmentNumber: 5086 +employeeType: Normal +homePhone: +1 206 840-7327 +initials: J. K. +mobile: +1 206 961-5609 +pager: +1 206 115-5559 +roomNumber: 8353 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tatsuya Kayle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatsuya Kayle +sn: Kayle +description: This is Tatsuya Kayle's description +facsimileTelephoneNumber: +1 804 980-9110 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 738-3176 +title: Supreme Management President +userPassword: Password1 +uid: KayleT +givenName: Tatsuya +mail: KayleT@f8b43c88d3f64387bc14adfa5600c275.bitwarden.com +carLicense: 13G0KI +departmentNumber: 1704 +employeeType: Contract +homePhone: +1 804 773-1180 +initials: T. K. +mobile: +1 804 649-9286 +pager: +1 804 664-3069 +roomNumber: 8324 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgetta Mayea +sn: Mayea +description: This is Georgetta Mayea's description +facsimileTelephoneNumber: +1 818 270-1008 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 830-2179 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: MayeaG +givenName: Georgetta +mail: MayeaG@191c836466354fe5b2fec288c1d53713.bitwarden.com +carLicense: I6TIIN +departmentNumber: 3500 +employeeType: Employee +homePhone: +1 818 721-2417 +initials: G. M. +mobile: +1 818 531-3967 +pager: +1 818 586-1262 +roomNumber: 9524 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Roselin Zahn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roselin Zahn +sn: Zahn +description: This is Roselin Zahn's description +facsimileTelephoneNumber: +1 213 275-5938 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 625-1292 +title: Master Administrative Writer +userPassword: Password1 +uid: ZahnR +givenName: Roselin +mail: ZahnR@dccd68e9261a427bb9a86d2b2c52f7a3.bitwarden.com +carLicense: 4AN7O3 +departmentNumber: 5782 +employeeType: Contract +homePhone: +1 213 852-9902 +initials: R. Z. +mobile: +1 213 130-1093 +pager: +1 213 241-1232 +roomNumber: 9928 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shanda deRosenroll,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shanda deRosenroll +sn: deRosenroll +description: This is Shanda deRosenroll's description +facsimileTelephoneNumber: +1 510 344-8945 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 516-3871 +title: Supreme Management Dictator +userPassword: Password1 +uid: deRosenS +givenName: Shanda +mail: deRosenS@0c943e2aeb85477e9598d33254e476f5.bitwarden.com +carLicense: B7KPP9 +departmentNumber: 7358 +employeeType: Contract +homePhone: +1 510 526-8931 +initials: S. d. +mobile: +1 510 433-8181 +pager: +1 510 640-3275 +roomNumber: 9346 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Meriline Parkin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meriline Parkin +sn: Parkin +description: This is Meriline Parkin's description +facsimileTelephoneNumber: +1 206 165-4424 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 652-8775 +title: Junior Management Director +userPassword: Password1 +uid: ParkinM +givenName: Meriline +mail: ParkinM@e16d9a3a0fb84d70b44156f5d07a222e.bitwarden.com +carLicense: 3SENX7 +departmentNumber: 2805 +employeeType: Contract +homePhone: +1 206 387-9541 +initials: M. P. +mobile: +1 206 691-7175 +pager: +1 206 385-9344 +roomNumber: 8370 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Minnesota Milway,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minnesota Milway +sn: Milway +description: This is Minnesota Milway's description +facsimileTelephoneNumber: +1 206 559-9927 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 159-6748 +title: Master Product Development President +userPassword: Password1 +uid: MilwayM +givenName: Minnesota +mail: MilwayM@5ee7d2eaa5b3419f93a42aabfc799bb4.bitwarden.com +carLicense: LNGYNO +departmentNumber: 1004 +employeeType: Employee +homePhone: +1 206 582-6306 +initials: M. M. +mobile: +1 206 690-6523 +pager: +1 206 279-4163 +roomNumber: 9556 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Oren Keffer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oren Keffer +sn: Keffer +description: This is Oren Keffer's description +facsimileTelephoneNumber: +1 213 586-4464 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 167-1000 +title: Chief Product Testing Director +userPassword: Password1 +uid: KefferO +givenName: Oren +mail: KefferO@b6f50213a01240498d68877ca5ffab54.bitwarden.com +carLicense: 6YQV4Q +departmentNumber: 3474 +employeeType: Normal +homePhone: +1 213 709-2246 +initials: O. K. +mobile: +1 213 654-8258 +pager: +1 213 414-5085 +roomNumber: 9881 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emyle Nagendra +sn: Nagendra +description: This is Emyle Nagendra's description +facsimileTelephoneNumber: +1 213 324-3888 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 176-5854 +title: Associate Janitorial Developer +userPassword: Password1 +uid: NagendrE +givenName: Emyle +mail: NagendrE@4590d260de3b4f249929a3f2b344a0fd.bitwarden.com +carLicense: II8R06 +departmentNumber: 5505 +employeeType: Contract +homePhone: +1 213 901-2118 +initials: E. N. +mobile: +1 213 525-2111 +pager: +1 213 783-4351 +roomNumber: 8583 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Blanche Lantto,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blanche Lantto +sn: Lantto +description: This is Blanche Lantto's description +facsimileTelephoneNumber: +1 206 909-9105 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 192-3407 +title: Supreme Peons Technician +userPassword: Password1 +uid: LanttoB +givenName: Blanche +mail: LanttoB@349cbf4e75d847c1a3a3932212036d74.bitwarden.com +carLicense: HO0KAQ +departmentNumber: 3778 +employeeType: Normal +homePhone: +1 206 648-7831 +initials: B. L. +mobile: +1 206 555-1366 +pager: +1 206 855-3610 +roomNumber: 8441 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Penny Polakowski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Penny Polakowski +sn: Polakowski +description: This is Penny Polakowski's description +facsimileTelephoneNumber: +1 408 776-6391 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 398-8165 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: PolakowP +givenName: Penny +mail: PolakowP@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com +carLicense: 60XMHW +departmentNumber: 1433 +employeeType: Contract +homePhone: +1 408 513-4054 +initials: P. P. +mobile: +1 408 764-7308 +pager: +1 408 419-6179 +roomNumber: 8659 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cariotta Cripps +sn: Cripps +description: This is Cariotta Cripps's description +facsimileTelephoneNumber: +1 818 508-2566 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 878-2041 +title: Associate Janitorial Director +userPassword: Password1 +uid: CrippsC +givenName: Cariotta +mail: CrippsC@f90310b3f5d94fb4800c4388cf6d1cc2.bitwarden.com +carLicense: IUKNWU +departmentNumber: 1368 +employeeType: Contract +homePhone: +1 818 633-9973 +initials: C. C. +mobile: +1 818 333-9680 +pager: +1 818 370-1248 +roomNumber: 8950 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martguerita DeBernardo +sn: DeBernardo +description: This is Martguerita DeBernardo's description +facsimileTelephoneNumber: +1 804 692-3379 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 307-8322 +title: Junior Janitorial President +userPassword: Password1 +uid: DeBernaM +givenName: Martguerita +mail: DeBernaM@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com +carLicense: B26JIF +departmentNumber: 2468 +employeeType: Contract +homePhone: +1 804 399-8761 +initials: M. D. +mobile: +1 804 152-9645 +pager: +1 804 419-8897 +roomNumber: 9709 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Helene Halford,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helene Halford +sn: Halford +description: This is Helene Halford's description +facsimileTelephoneNumber: +1 206 315-8918 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 870-4552 +title: Master Product Testing Admin +userPassword: Password1 +uid: HalfordH +givenName: Helene +mail: HalfordH@f2c3f0652e32488088bedf6cc0ca618f.bitwarden.com +carLicense: 3GJC7H +departmentNumber: 6899 +employeeType: Employee +homePhone: +1 206 587-9978 +initials: H. H. +mobile: +1 206 735-8204 +pager: +1 206 789-4569 +roomNumber: 9261 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ladonna Kester,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ladonna Kester +sn: Kester +description: This is Ladonna Kester's description +facsimileTelephoneNumber: +1 206 268-7942 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 746-8409 +title: Associate Payroll Dictator +userPassword: Password1 +uid: KesterL +givenName: Ladonna +mail: KesterL@6bff82c20ec04cdbbb19d4912ec16456.bitwarden.com +carLicense: KGSR2B +departmentNumber: 1032 +employeeType: Contract +homePhone: +1 206 961-7138 +initials: L. K. +mobile: +1 206 246-3492 +pager: +1 206 688-5101 +roomNumber: 9319 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carling Castillo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carling Castillo +sn: Castillo +description: This is Carling Castillo's description +facsimileTelephoneNumber: +1 510 685-6595 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 510 911-5837 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: CastillC +givenName: Carling +mail: CastillC@433de9bdc40a4b9bbae4e765d431d11d.bitwarden.com +carLicense: 8AAOWI +departmentNumber: 1479 +employeeType: Normal +homePhone: +1 510 144-9636 +initials: C. C. +mobile: +1 510 899-9939 +pager: +1 510 119-1396 +roomNumber: 8905 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cark Redish,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cark Redish +sn: Redish +description: This is Cark Redish's description +facsimileTelephoneNumber: +1 818 255-8001 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 985-6042 +title: Chief Management Sales Rep +userPassword: Password1 +uid: RedishC +givenName: Cark +mail: RedishC@1ef32944592240fbbf9c689cd4db1d9c.bitwarden.com +carLicense: AB22RB +departmentNumber: 5714 +employeeType: Contract +homePhone: +1 818 513-3063 +initials: C. R. +mobile: +1 818 854-6936 +pager: +1 818 306-2136 +roomNumber: 9090 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Caresse Appenzeller,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caresse Appenzeller +sn: Appenzeller +description: This is Caresse Appenzeller's description +facsimileTelephoneNumber: +1 415 732-8080 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 964-4427 +title: Chief Peons Evangelist +userPassword: Password1 +uid: AppenzeC +givenName: Caresse +mail: AppenzeC@3986b5b118ef4d79a84f9f227789123a.bitwarden.com +carLicense: XEGN8B +departmentNumber: 2897 +employeeType: Normal +homePhone: +1 415 751-5524 +initials: C. A. +mobile: +1 415 168-8303 +pager: +1 415 935-6837 +roomNumber: 9818 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sheree Berman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheree Berman +sn: Berman +description: This is Sheree Berman's description +facsimileTelephoneNumber: +1 206 392-1926 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 206 884-4863 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: BermanS +givenName: Sheree +mail: BermanS@47d8b5e2575042d4a80d6e271d2326c7.bitwarden.com +carLicense: 83OJW2 +departmentNumber: 5739 +employeeType: Normal +homePhone: +1 206 212-1573 +initials: S. B. +mobile: +1 206 298-8626 +pager: +1 206 405-1654 +roomNumber: 8696 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Domenic Kawauchi +sn: Kawauchi +description: This is Domenic Kawauchi's description +facsimileTelephoneNumber: +1 818 896-3073 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 818 938-1763 +title: Master Administrative Mascot +userPassword: Password1 +uid: KawauchD +givenName: Domenic +mail: KawauchD@29d0d437b2c147b0847b9dd994ec881e.bitwarden.com +carLicense: U0G404 +departmentNumber: 9835 +employeeType: Contract +homePhone: +1 818 570-5922 +initials: D. K. +mobile: +1 818 758-7058 +pager: +1 818 322-1993 +roomNumber: 9909 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anabal Hathaway,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anabal Hathaway +sn: Hathaway +description: This is Anabal Hathaway's description +facsimileTelephoneNumber: +1 415 209-4388 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 789-4130 +title: Associate Payroll Admin +userPassword: Password1 +uid: HathawaA +givenName: Anabal +mail: HathawaA@e1f0d918bf004e4781bc8a3f9e7beec7.bitwarden.com +carLicense: YI5TPN +departmentNumber: 8570 +employeeType: Employee +homePhone: +1 415 472-6940 +initials: A. H. +mobile: +1 415 877-1231 +pager: +1 415 570-7968 +roomNumber: 9878 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Valma Keffer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valma Keffer +sn: Keffer +description: This is Valma Keffer's description +facsimileTelephoneNumber: +1 818 196-8071 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 228-2168 +title: Chief Product Testing Admin +userPassword: Password1 +uid: KefferV +givenName: Valma +mail: KefferV@986a560d23c841b7ad18f2717af5b696.bitwarden.com +carLicense: A3IMN7 +departmentNumber: 7052 +employeeType: Contract +homePhone: +1 818 385-4930 +initials: V. K. +mobile: +1 818 803-1131 +pager: +1 818 268-6955 +roomNumber: 8262 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Johnny Harron,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnny Harron +sn: Harron +description: This is Johnny Harron's description +facsimileTelephoneNumber: +1 510 752-5694 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 587-1761 +title: Master Payroll Developer +userPassword: Password1 +uid: HarronJ +givenName: Johnny +mail: HarronJ@47bdbe19b290413cb5defd6e606815e0.bitwarden.com +carLicense: R3X396 +departmentNumber: 2055 +employeeType: Employee +homePhone: +1 510 190-4905 +initials: J. H. +mobile: +1 510 950-9479 +pager: +1 510 762-4061 +roomNumber: 8021 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Channa Brokaw,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Channa Brokaw +sn: Brokaw +description: This is Channa Brokaw's description +facsimileTelephoneNumber: +1 804 887-7776 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 613-4693 +title: Junior Product Development Technician +userPassword: Password1 +uid: BrokawC +givenName: Channa +mail: BrokawC@38e93300da7643e5ac4629316f76753a.bitwarden.com +carLicense: 26WKRT +departmentNumber: 2286 +employeeType: Employee +homePhone: +1 804 832-8367 +initials: C. B. +mobile: +1 804 659-7286 +pager: +1 804 790-2470 +roomNumber: 8169 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Annabella Spaugh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annabella Spaugh +sn: Spaugh +description: This is Annabella Spaugh's description +facsimileTelephoneNumber: +1 804 571-8146 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 188-3625 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: SpaughA +givenName: Annabella +mail: SpaughA@5d66866885fa4ba8b5860161fb0bcacc.bitwarden.com +carLicense: 0FD5D2 +departmentNumber: 9791 +employeeType: Normal +homePhone: +1 804 905-3519 +initials: A. S. +mobile: +1 804 576-1878 +pager: +1 804 445-1929 +roomNumber: 8741 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Klink Sprott,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klink Sprott +sn: Sprott +description: This is Klink Sprott's description +facsimileTelephoneNumber: +1 415 782-4599 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 842-6375 +title: Associate Administrative Consultant +userPassword: Password1 +uid: SprottK +givenName: Klink +mail: SprottK@9f3b5a22f2e64763918674c31a32bd5a.bitwarden.com +carLicense: 1LOD1K +departmentNumber: 9156 +employeeType: Employee +homePhone: +1 415 697-4120 +initials: K. S. +mobile: +1 415 879-9315 +pager: +1 415 437-5341 +roomNumber: 9974 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Roe Reinboth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roe Reinboth +sn: Reinboth +description: This is Roe Reinboth's description +facsimileTelephoneNumber: +1 408 903-3757 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 368-6863 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: ReinbotR +givenName: Roe +mail: ReinbotR@b2fd618943ca4dea935bf3787a6a78e4.bitwarden.com +carLicense: Q732G9 +departmentNumber: 2668 +employeeType: Contract +homePhone: +1 408 185-7904 +initials: R. R. +mobile: +1 408 459-1916 +pager: +1 408 465-7652 +roomNumber: 9272 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cathrine Mashura,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathrine Mashura +sn: Mashura +description: This is Cathrine Mashura's description +facsimileTelephoneNumber: +1 408 627-4454 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 293-9415 +title: Chief Administrative Manager +userPassword: Password1 +uid: MashuraC +givenName: Cathrine +mail: MashuraC@b79da789d7414b6e8a980b044433c3d3.bitwarden.com +carLicense: IKJ4CX +departmentNumber: 4212 +employeeType: Contract +homePhone: +1 408 821-7816 +initials: C. M. +mobile: +1 408 878-8924 +pager: +1 408 985-9421 +roomNumber: 9575 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shigeru Rausch,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shigeru Rausch +sn: Rausch +description: This is Shigeru Rausch's description +facsimileTelephoneNumber: +1 510 804-1178 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 745-3958 +title: Associate Payroll Dictator +userPassword: Password1 +uid: RauschS +givenName: Shigeru +mail: RauschS@a811d1067f2b449da56503c72e375ae8.bitwarden.com +carLicense: RLEFU3 +departmentNumber: 3898 +employeeType: Contract +homePhone: +1 510 641-5603 +initials: S. R. +mobile: +1 510 486-4649 +pager: +1 510 786-3126 +roomNumber: 8422 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felicdad Mordecai +sn: Mordecai +description: This is Felicdad Mordecai's description +facsimileTelephoneNumber: +1 415 570-3633 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 565-5657 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: MordecaF +givenName: Felicdad +mail: MordecaF@b6b4b20435244397b513458a7683e69c.bitwarden.com +carLicense: GHO7GY +departmentNumber: 5413 +employeeType: Contract +homePhone: +1 415 461-8016 +initials: F. M. +mobile: +1 415 566-7296 +pager: +1 415 798-5803 +roomNumber: 9028 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ingeberg Eagles,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ingeberg Eagles +sn: Eagles +description: This is Ingeberg Eagles's description +facsimileTelephoneNumber: +1 206 473-7733 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 557-7998 +title: Junior Management President +userPassword: Password1 +uid: EaglesI +givenName: Ingeberg +mail: EaglesI@97f7053b3d7f4f79b48d3e12171a5966.bitwarden.com +carLicense: YTMSOB +departmentNumber: 1724 +employeeType: Contract +homePhone: +1 206 887-6940 +initials: I. E. +mobile: +1 206 723-2009 +pager: +1 206 755-9389 +roomNumber: 8266 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Arjun Auker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arjun Auker +sn: Auker +description: This is Arjun Auker's description +facsimileTelephoneNumber: +1 818 151-1537 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 818 651-5949 +title: Chief Peons Artist +userPassword: Password1 +uid: AukerA +givenName: Arjun +mail: AukerA@2128bddbba18456fa2818ae450ffa7ac.bitwarden.com +carLicense: 0NRLKC +departmentNumber: 5028 +employeeType: Contract +homePhone: +1 818 838-9773 +initials: A. A. +mobile: +1 818 585-8609 +pager: +1 818 595-6803 +roomNumber: 9810 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cary Gillot,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cary Gillot +sn: Gillot +description: This is Cary Gillot's description +facsimileTelephoneNumber: +1 510 829-6274 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 330-8732 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: GillotC +givenName: Cary +mail: GillotC@b51d43f798c74d31975bc185013ed233.bitwarden.com +carLicense: 0GJFL4 +departmentNumber: 6676 +employeeType: Normal +homePhone: +1 510 741-1716 +initials: C. G. +mobile: +1 510 727-5252 +pager: +1 510 576-8008 +roomNumber: 9312 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kishor Aurelius,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kishor Aurelius +sn: Aurelius +description: This is Kishor Aurelius's description +facsimileTelephoneNumber: +1 408 448-9344 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 483-3944 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: AureliuK +givenName: Kishor +mail: AureliuK@728cea3206cf4fc9b4edca0209470b11.bitwarden.com +carLicense: 0DJ7H8 +departmentNumber: 6598 +employeeType: Employee +homePhone: +1 408 405-4121 +initials: K. A. +mobile: +1 408 544-6242 +pager: +1 408 983-2748 +roomNumber: 9720 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mair Dragert,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mair Dragert +sn: Dragert +description: This is Mair Dragert's description +facsimileTelephoneNumber: +1 206 705-1652 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 340-7904 +title: Supreme Payroll Admin +userPassword: Password1 +uid: DragertM +givenName: Mair +mail: DragertM@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com +carLicense: SEHRGG +departmentNumber: 6009 +employeeType: Contract +homePhone: +1 206 584-5588 +initials: M. D. +mobile: +1 206 848-5146 +pager: +1 206 387-4967 +roomNumber: 9281 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebekah Renwick +sn: Renwick +description: This is Rebekah Renwick's description +facsimileTelephoneNumber: +1 415 944-4429 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 875-4528 +title: Master Janitorial Technician +userPassword: Password1 +uid: RenwickR +givenName: Rebekah +mail: RenwickR@38381f1b65fe45f69608a5bb47db5a8f.bitwarden.com +carLicense: 8I15QC +departmentNumber: 5396 +employeeType: Normal +homePhone: +1 415 270-7026 +initials: R. R. +mobile: +1 415 339-8687 +pager: +1 415 641-9894 +roomNumber: 8505 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nata Manson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nata Manson +sn: Manson +description: This is Nata Manson's description +facsimileTelephoneNumber: +1 415 592-9579 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 943-3842 +title: Junior Management Manager +userPassword: Password1 +uid: MansonN +givenName: Nata +mail: MansonN@845b538f36d146aba352dadcef98bffb.bitwarden.com +carLicense: WC4IAX +departmentNumber: 8548 +employeeType: Employee +homePhone: +1 415 343-8493 +initials: N. M. +mobile: +1 415 699-7105 +pager: +1 415 499-9318 +roomNumber: 9709 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carmody Stough,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmody Stough +sn: Stough +description: This is Carmody Stough's description +facsimileTelephoneNumber: +1 408 300-4625 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 478-7973 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: StoughC +givenName: Carmody +mail: StoughC@a7918ff0fc7e4212984f8187650b768f.bitwarden.com +carLicense: SC3AJ1 +departmentNumber: 6431 +employeeType: Employee +homePhone: +1 408 646-6323 +initials: C. S. +mobile: +1 408 345-6303 +pager: +1 408 149-7545 +roomNumber: 8980 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vilok Difrancesco +sn: Difrancesco +description: This is Vilok Difrancesco's description +facsimileTelephoneNumber: +1 408 381-5787 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 459-4381 +title: Supreme Payroll Vice President +userPassword: Password1 +uid: DifrancV +givenName: Vilok +mail: DifrancV@ebddca96ab0c40e5a0ba8c1fb15aae94.bitwarden.com +carLicense: VBBXB9 +departmentNumber: 8448 +employeeType: Normal +homePhone: +1 408 254-9275 +initials: V. D. +mobile: +1 408 958-6954 +pager: +1 408 840-2945 +roomNumber: 8871 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vicky Kenol,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vicky Kenol +sn: Kenol +description: This is Vicky Kenol's description +facsimileTelephoneNumber: +1 206 738-5694 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 795-6169 +title: Chief Human Resources Artist +userPassword: Password1 +uid: KenolV +givenName: Vicky +mail: KenolV@45ff518891da43879283e296db76d389.bitwarden.com +carLicense: O8RI0Q +departmentNumber: 3206 +employeeType: Employee +homePhone: +1 206 100-2185 +initials: V. K. +mobile: +1 206 858-7334 +pager: +1 206 867-1869 +roomNumber: 8405 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pulak Heidepriem +sn: Heidepriem +description: This is Pulak Heidepriem's description +facsimileTelephoneNumber: +1 408 507-2127 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 208-1343 +title: Master Product Development Punk +userPassword: Password1 +uid: HeideprP +givenName: Pulak +mail: HeideprP@a31a40edc37d48cd9f5a5a655ca23fe5.bitwarden.com +carLicense: GNPWME +departmentNumber: 2454 +employeeType: Contract +homePhone: +1 408 730-4583 +initials: P. H. +mobile: +1 408 852-7449 +pager: +1 408 794-9426 +roomNumber: 9132 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorelle Korf,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorelle Korf +sn: Korf +description: This is Lorelle Korf's description +facsimileTelephoneNumber: +1 510 931-6126 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 717-9949 +title: Master Peons Engineer +userPassword: Password1 +uid: KorfL +givenName: Lorelle +mail: KorfL@7446f3de45684b1e99747992ecfe40c7.bitwarden.com +carLicense: T5C5L2 +departmentNumber: 1693 +employeeType: Normal +homePhone: +1 510 787-9196 +initials: L. K. +mobile: +1 510 587-1356 +pager: +1 510 477-7045 +roomNumber: 8467 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Angele Dangubic,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angele Dangubic +sn: Dangubic +description: This is Angele Dangubic's description +facsimileTelephoneNumber: +1 804 482-8198 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 168-5427 +title: Junior Peons Janitor +userPassword: Password1 +uid: DangubiA +givenName: Angele +mail: DangubiA@ca2c9c0aaeee459a81fa3d98c982e91a.bitwarden.com +carLicense: QDD6MX +departmentNumber: 4522 +employeeType: Normal +homePhone: +1 804 947-4803 +initials: A. D. +mobile: +1 804 235-1206 +pager: +1 804 977-8775 +roomNumber: 8861 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ilene Knio,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilene Knio +sn: Knio +description: This is Ilene Knio's description +facsimileTelephoneNumber: +1 415 266-5968 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 995-3085 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: KnioI +givenName: Ilene +mail: KnioI@5ff6438f1a694a8f92d3363ddbe1a8ce.bitwarden.com +carLicense: LSEHCR +departmentNumber: 3442 +employeeType: Contract +homePhone: +1 415 919-4623 +initials: I. K. +mobile: +1 415 687-2586 +pager: +1 415 365-1315 +roomNumber: 8395 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olympia Wessenberg +sn: Wessenberg +description: This is Olympia Wessenberg's description +facsimileTelephoneNumber: +1 206 888-5403 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 830-4470 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: WessenbO +givenName: Olympia +mail: WessenbO@837254eeede24c15906b803e5cce94f7.bitwarden.com +carLicense: A5HBB6 +departmentNumber: 2460 +employeeType: Contract +homePhone: +1 206 142-6877 +initials: O. W. +mobile: +1 206 859-1553 +pager: +1 206 383-8382 +roomNumber: 9530 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Harrison Klodt,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harrison Klodt +sn: Klodt +description: This is Harrison Klodt's description +facsimileTelephoneNumber: +1 818 635-4868 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 278-8703 +title: Associate Administrative Madonna +userPassword: Password1 +uid: KlodtH +givenName: Harrison +mail: KlodtH@b76954384b1448b9a3c0a3ababf6bbf1.bitwarden.com +carLicense: MI38EW +departmentNumber: 2159 +employeeType: Employee +homePhone: +1 818 386-5887 +initials: H. K. +mobile: +1 818 679-1598 +pager: +1 818 214-3852 +roomNumber: 8694 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evangelo Coldwell +sn: Coldwell +description: This is Evangelo Coldwell's description +facsimileTelephoneNumber: +1 415 339-5154 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 829-4885 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: ColdwelE +givenName: Evangelo +mail: ColdwelE@87bc15d42d8444788089ff676f599c5a.bitwarden.com +carLicense: VNULMF +departmentNumber: 1398 +employeeType: Normal +homePhone: +1 415 568-7638 +initials: E. C. +mobile: +1 415 952-6762 +pager: +1 415 451-1533 +roomNumber: 9646 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Orel Hassenklover,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orel Hassenklover +sn: Hassenklover +description: This is Orel Hassenklover's description +facsimileTelephoneNumber: +1 804 919-4288 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 690-8672 +title: Supreme Product Development Manager +userPassword: Password1 +uid: HassenkO +givenName: Orel +mail: HassenkO@f7a64cd3ec3949d4af95967a5d1451ef.bitwarden.com +carLicense: HOMM19 +departmentNumber: 8358 +employeeType: Employee +homePhone: +1 804 517-1826 +initials: O. H. +mobile: +1 804 658-2923 +pager: +1 804 447-9015 +roomNumber: 9314 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sonya Hixson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonya Hixson +sn: Hixson +description: This is Sonya Hixson's description +facsimileTelephoneNumber: +1 510 861-4284 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 387-9969 +title: Master Janitorial Manager +userPassword: Password1 +uid: HixsonS +givenName: Sonya +mail: HixsonS@3778b1152af945109595a1f1ddb3f5dc.bitwarden.com +carLicense: A5QI7R +departmentNumber: 9355 +employeeType: Employee +homePhone: +1 510 816-5395 +initials: S. H. +mobile: +1 510 387-5943 +pager: +1 510 236-6800 +roomNumber: 9599 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glynn Fedoruk +sn: Fedoruk +description: This is Glynn Fedoruk's description +facsimileTelephoneNumber: +1 213 326-9852 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 138-3584 +title: Chief Product Testing Dictator +userPassword: Password1 +uid: FedorukG +givenName: Glynn +mail: FedorukG@7a4184a5b77e4684af64e06b6add415a.bitwarden.com +carLicense: A0DKLW +departmentNumber: 8169 +employeeType: Normal +homePhone: +1 213 412-9651 +initials: G. F. +mobile: +1 213 607-3026 +pager: +1 213 459-6262 +roomNumber: 9802 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Simen Pankhurst,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Simen Pankhurst +sn: Pankhurst +description: This is Simen Pankhurst's description +facsimileTelephoneNumber: +1 510 846-5841 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 105-5117 +title: Associate Product Development Engineer +userPassword: Password1 +uid: PankhurS +givenName: Simen +mail: PankhurS@dbbc0930b0d2479ca97fea1080c3afcd.bitwarden.com +carLicense: WN4KJR +departmentNumber: 1354 +employeeType: Employee +homePhone: +1 510 981-6822 +initials: S. P. +mobile: +1 510 873-9535 +pager: +1 510 288-7190 +roomNumber: 8592 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alberta Roddy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alberta Roddy +sn: Roddy +description: This is Alberta Roddy's description +facsimileTelephoneNumber: +1 213 890-9613 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 581-3679 +title: Chief Human Resources President +userPassword: Password1 +uid: RoddyA +givenName: Alberta +mail: RoddyA@2d701440ade24b4a93552262ff2dfc96.bitwarden.com +carLicense: 7CE2HD +departmentNumber: 7935 +employeeType: Contract +homePhone: +1 213 636-1409 +initials: A. R. +mobile: +1 213 322-8784 +pager: +1 213 906-7051 +roomNumber: 9803 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shelley Guitard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelley Guitard +sn: Guitard +description: This is Shelley Guitard's description +facsimileTelephoneNumber: +1 804 252-9359 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 775-5389 +title: Master Product Testing Czar +userPassword: Password1 +uid: GuitardS +givenName: Shelley +mail: GuitardS@8e847e0d62ad4699bde39672507969bb.bitwarden.com +carLicense: Q45NWP +departmentNumber: 6556 +employeeType: Employee +homePhone: +1 804 771-1758 +initials: S. G. +mobile: +1 804 524-8807 +pager: +1 804 934-3289 +roomNumber: 9760 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Benthem Aghili,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benthem Aghili +sn: Aghili +description: This is Benthem Aghili's description +facsimileTelephoneNumber: +1 818 453-6988 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 818 473-7130 +title: Master Administrative Visionary +userPassword: Password1 +uid: AghiliB +givenName: Benthem +mail: AghiliB@696db7ebc26e4f86a6552c4f6f755d76.bitwarden.com +carLicense: AM0GG3 +departmentNumber: 6289 +employeeType: Employee +homePhone: +1 818 816-7013 +initials: B. A. +mobile: +1 818 171-3595 +pager: +1 818 580-5904 +roomNumber: 9783 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlyn Wertz +sn: Wertz +description: This is Marlyn Wertz's description +facsimileTelephoneNumber: +1 804 358-3127 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 822-4716 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: WertzM +givenName: Marlyn +mail: WertzM@489cf71c67f540958c438bff00511d0c.bitwarden.com +carLicense: RBM7G8 +departmentNumber: 1604 +employeeType: Contract +homePhone: +1 804 153-9049 +initials: M. W. +mobile: +1 804 257-6081 +pager: +1 804 605-5744 +roomNumber: 9497 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anastasie Kabolizadeh +sn: Kabolizadeh +description: This is Anastasie Kabolizadeh's description +facsimileTelephoneNumber: +1 206 489-7199 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 135-7920 +title: Chief Administrative Engineer +userPassword: Password1 +uid: KabolizA +givenName: Anastasie +mail: KabolizA@238a8169b7ac4fc183a387c242aca7b9.bitwarden.com +carLicense: 4USMVC +departmentNumber: 1081 +employeeType: Employee +homePhone: +1 206 750-9957 +initials: A. K. +mobile: +1 206 867-9137 +pager: +1 206 527-2372 +roomNumber: 8619 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fifi Pitcher +sn: Pitcher +description: This is Fifi Pitcher's description +facsimileTelephoneNumber: +1 804 812-3171 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 620-8125 +title: Chief Janitorial Madonna +userPassword: Password1 +uid: PitcherF +givenName: Fifi +mail: PitcherF@dd8de5abce6e4941a35b4e391450cd5c.bitwarden.com +carLicense: 3RW0Y7 +departmentNumber: 3657 +employeeType: Employee +homePhone: +1 804 253-4329 +initials: F. P. +mobile: +1 804 860-3716 +pager: +1 804 265-5382 +roomNumber: 9102 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ganesh Ghantous +sn: Ghantous +description: This is Ganesh Ghantous's description +facsimileTelephoneNumber: +1 213 855-6035 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 302-8901 +title: Associate Administrative Writer +userPassword: Password1 +uid: GhantouG +givenName: Ganesh +mail: GhantouG@e17a5226a90e492eaba210445362135c.bitwarden.com +carLicense: PO4356 +departmentNumber: 1029 +employeeType: Contract +homePhone: +1 213 768-2262 +initials: G. G. +mobile: +1 213 528-6079 +pager: +1 213 556-5112 +roomNumber: 9232 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nad Sheth,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nad Sheth +sn: Sheth +description: This is Nad Sheth's description +facsimileTelephoneNumber: +1 206 681-4990 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 758-8801 +title: Master Peons Fellow +userPassword: Password1 +uid: ShethN +givenName: Nad +mail: ShethN@35cbe55d624d41aaa7e77e5513292711.bitwarden.com +carLicense: Y0ATHA +departmentNumber: 5227 +employeeType: Contract +homePhone: +1 206 855-1050 +initials: N. S. +mobile: +1 206 705-1687 +pager: +1 206 594-4915 +roomNumber: 8979 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Katherine AuYeung,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katherine AuYeung +sn: AuYeung +description: This is Katherine AuYeung's description +facsimileTelephoneNumber: +1 408 458-4246 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 162-1246 +title: Supreme Payroll Consultant +userPassword: Password1 +uid: AuYeungK +givenName: Katherine +mail: AuYeungK@eae289de16194f21b28831dbf07663de.bitwarden.com +carLicense: FI05J6 +departmentNumber: 6012 +employeeType: Normal +homePhone: +1 408 525-6000 +initials: K. A. +mobile: +1 408 874-8683 +pager: +1 408 652-8994 +roomNumber: 8503 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rollie Lohoar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rollie Lohoar +sn: Lohoar +description: This is Rollie Lohoar's description +facsimileTelephoneNumber: +1 510 641-8563 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 375-4042 +title: Master Payroll Grunt +userPassword: Password1 +uid: LohoarR +givenName: Rollie +mail: LohoarR@cd59c483d6b34aad846a7430fcfb5a39.bitwarden.com +carLicense: O68WCF +departmentNumber: 8594 +employeeType: Employee +homePhone: +1 510 752-4953 +initials: R. L. +mobile: +1 510 867-4835 +pager: +1 510 104-9619 +roomNumber: 8748 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Siamak Tullo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siamak Tullo +sn: Tullo +description: This is Siamak Tullo's description +facsimileTelephoneNumber: +1 804 565-9848 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 860-5881 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: TulloS +givenName: Siamak +mail: TulloS@2a24d3bec1324ab39148d09712ff8aba.bitwarden.com +carLicense: 23OEND +departmentNumber: 7327 +employeeType: Contract +homePhone: +1 804 713-5439 +initials: S. T. +mobile: +1 804 254-1510 +pager: +1 804 197-2004 +roomNumber: 8080 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marco Trautman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marco Trautman +sn: Trautman +description: This is Marco Trautman's description +facsimileTelephoneNumber: +1 408 594-4070 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 292-6671 +title: Associate Management Sales Rep +userPassword: Password1 +uid: TrautmaM +givenName: Marco +mail: TrautmaM@a94a4e703f55451099134b3aaeedccbb.bitwarden.com +carLicense: CI3HC4 +departmentNumber: 9962 +employeeType: Employee +homePhone: +1 408 211-3663 +initials: M. T. +mobile: +1 408 424-6929 +pager: +1 408 234-7964 +roomNumber: 8839 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=James Silgardo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: James Silgardo +sn: Silgardo +description: This is James Silgardo's description +facsimileTelephoneNumber: +1 206 691-2243 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 410-6818 +title: Master Payroll Technician +userPassword: Password1 +uid: SilgardJ +givenName: James +mail: SilgardJ@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com +carLicense: C3LG0A +departmentNumber: 4078 +employeeType: Employee +homePhone: +1 206 524-9091 +initials: J. S. +mobile: +1 206 887-8005 +pager: +1 206 912-7103 +roomNumber: 9029 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gipsy Letulle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gipsy Letulle +sn: Letulle +description: This is Gipsy Letulle's description +facsimileTelephoneNumber: +1 804 109-2413 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 268-9073 +title: Associate Product Development Punk +userPassword: Password1 +uid: LetulleG +givenName: Gipsy +mail: LetulleG@b0752d34718948e7a2486d5209bda8f9.bitwarden.com +carLicense: XROESL +departmentNumber: 4793 +employeeType: Contract +homePhone: +1 804 820-3077 +initials: G. L. +mobile: +1 804 513-3302 +pager: +1 804 838-3112 +roomNumber: 9168 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Missagh Breglec,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Missagh Breglec +sn: Breglec +description: This is Missagh Breglec's description +facsimileTelephoneNumber: +1 206 620-9376 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 376-8553 +title: Supreme Payroll Technician +userPassword: Password1 +uid: BreglecM +givenName: Missagh +mail: BreglecM@1808029426c342b7ba28a7e8e39e2911.bitwarden.com +carLicense: NF67U0 +departmentNumber: 5267 +employeeType: Employee +homePhone: +1 206 184-1479 +initials: M. B. +mobile: +1 206 584-8928 +pager: +1 206 409-2067 +roomNumber: 8780 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Debadeep Karass,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debadeep Karass +sn: Karass +description: This is Debadeep Karass's description +facsimileTelephoneNumber: +1 818 106-8278 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 728-3054 +title: Associate Product Development Czar +userPassword: Password1 +uid: KarassD +givenName: Debadeep +mail: KarassD@af9a07b0bce44bbab1d5d8279d6d460c.bitwarden.com +carLicense: ARETYF +departmentNumber: 8769 +employeeType: Contract +homePhone: +1 818 820-5819 +initials: D. K. +mobile: +1 818 758-6034 +pager: +1 818 820-6049 +roomNumber: 8868 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Madeline Bir,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madeline Bir +sn: Bir +description: This is Madeline Bir's description +facsimileTelephoneNumber: +1 804 400-1654 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 701-1594 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: BirM +givenName: Madeline +mail: BirM@f545ecd56a5b4fe0a9748924d28342ea.bitwarden.com +carLicense: 9MCJSY +departmentNumber: 2865 +employeeType: Employee +homePhone: +1 804 718-2078 +initials: M. B. +mobile: +1 804 596-3814 +pager: +1 804 380-7549 +roomNumber: 8790 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Betsey Doi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betsey Doi +sn: Doi +description: This is Betsey Doi's description +facsimileTelephoneNumber: +1 213 920-5446 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 367-2511 +title: Associate Administrative Czar +userPassword: Password1 +uid: DoiB +givenName: Betsey +mail: DoiB@d06dcad3fe8b46a4aa1b3d7dd28ff6b8.bitwarden.com +carLicense: B5DRP7 +departmentNumber: 8512 +employeeType: Normal +homePhone: +1 213 727-1989 +initials: B. D. +mobile: +1 213 510-1293 +pager: +1 213 157-4936 +roomNumber: 8055 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicoli Cuccioletta +sn: Cuccioletta +description: This is Nicoli Cuccioletta's description +facsimileTelephoneNumber: +1 408 719-9371 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 671-7059 +title: Junior Management Consultant +userPassword: Password1 +uid: CucciolN +givenName: Nicoli +mail: CucciolN@960fde1bd9064545ac557eb042ebf65f.bitwarden.com +carLicense: LT7FPI +departmentNumber: 5781 +employeeType: Normal +homePhone: +1 408 717-4207 +initials: N. C. +mobile: +1 408 381-9104 +pager: +1 408 220-7374 +roomNumber: 9576 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Indiana Schejbal,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Indiana Schejbal +sn: Schejbal +description: This is Indiana Schejbal's description +facsimileTelephoneNumber: +1 408 354-1722 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 615-2523 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: SchejbaI +givenName: Indiana +mail: SchejbaI@518638c8b3ee480098591bd6806de72a.bitwarden.com +carLicense: 8PX61W +departmentNumber: 5986 +employeeType: Employee +homePhone: +1 408 766-3985 +initials: I. S. +mobile: +1 408 324-6292 +pager: +1 408 574-5040 +roomNumber: 8654 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mickie Farhan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mickie Farhan +sn: Farhan +description: This is Mickie Farhan's description +facsimileTelephoneNumber: +1 206 966-8312 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 568-5737 +title: Associate Payroll Dictator +userPassword: Password1 +uid: FarhanM +givenName: Mickie +mail: FarhanM@0f5b6ac1af33425fb656b97b6e7eab9a.bitwarden.com +carLicense: N1O6LA +departmentNumber: 7394 +employeeType: Employee +homePhone: +1 206 957-6534 +initials: M. F. +mobile: +1 206 823-3425 +pager: +1 206 495-3388 +roomNumber: 9162 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cubicle McMann,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cubicle McMann +sn: McMann +description: This is Cubicle McMann's description +facsimileTelephoneNumber: +1 213 335-5774 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 953-7439 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: McMannC +givenName: Cubicle +mail: McMannC@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com +carLicense: L18JH0 +departmentNumber: 2497 +employeeType: Contract +homePhone: +1 213 762-7945 +initials: C. M. +mobile: +1 213 188-6957 +pager: +1 213 571-9454 +roomNumber: 9251 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Olva Mathewson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olva Mathewson +sn: Mathewson +description: This is Olva Mathewson's description +facsimileTelephoneNumber: +1 415 745-9234 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 986-5702 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: MathewsO +givenName: Olva +mail: MathewsO@ac12834971014a349fe6bc34d09caa36.bitwarden.com +carLicense: IX8D61 +departmentNumber: 3806 +employeeType: Normal +homePhone: +1 415 593-6427 +initials: O. M. +mobile: +1 415 239-9076 +pager: +1 415 185-2034 +roomNumber: 8984 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zero Mendelsohn +sn: Mendelsohn +description: This is Zero Mendelsohn's description +facsimileTelephoneNumber: +1 818 943-7473 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 818 517-9798 +title: Supreme Payroll Punk +userPassword: Password1 +uid: MendelsZ +givenName: Zero +mail: MendelsZ@89a8ded54db64032804dc4a0a9dd8e92.bitwarden.com +carLicense: 941KC7 +departmentNumber: 2754 +employeeType: Employee +homePhone: +1 818 680-1492 +initials: Z. M. +mobile: +1 818 315-6196 +pager: +1 818 677-7116 +roomNumber: 8381 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kieran Ogrodnik +sn: Ogrodnik +description: This is Kieran Ogrodnik's description +facsimileTelephoneNumber: +1 818 697-8196 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 945-6551 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: OgrodniK +givenName: Kieran +mail: OgrodniK@e9937b9d7b6b4088972a1d9b7e93eab7.bitwarden.com +carLicense: M156A7 +departmentNumber: 1133 +employeeType: Contract +homePhone: +1 818 689-9237 +initials: K. O. +mobile: +1 818 175-5490 +pager: +1 818 696-8075 +roomNumber: 9875 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kiet Strober,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiet Strober +sn: Strober +description: This is Kiet Strober's description +facsimileTelephoneNumber: +1 510 204-8870 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 788-2072 +title: Master Human Resources Writer +userPassword: Password1 +uid: StroberK +givenName: Kiet +mail: StroberK@e75e76fca3054696a0a6baace9df29b1.bitwarden.com +carLicense: C81SP6 +departmentNumber: 3622 +employeeType: Employee +homePhone: +1 510 206-4154 +initials: K. S. +mobile: +1 510 816-8726 +pager: +1 510 348-1764 +roomNumber: 8936 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Meggy Vardy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meggy Vardy +sn: Vardy +description: This is Meggy Vardy's description +facsimileTelephoneNumber: +1 818 195-4586 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 620-8407 +title: Master Product Testing Director +userPassword: Password1 +uid: VardyM +givenName: Meggy +mail: VardyM@e4b8fec602c641a384899f1d585d679d.bitwarden.com +carLicense: NK777L +departmentNumber: 1730 +employeeType: Contract +homePhone: +1 818 287-4471 +initials: M. V. +mobile: +1 818 130-7291 +pager: +1 818 219-8596 +roomNumber: 8552 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cyrine Marceau,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyrine Marceau +sn: Marceau +description: This is Cyrine Marceau's description +facsimileTelephoneNumber: +1 415 373-1965 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 552-7938 +title: Chief Management Consultant +userPassword: Password1 +uid: MarceauC +givenName: Cyrine +mail: MarceauC@7dbb126638b0419eb87d5c967cdeef20.bitwarden.com +carLicense: JXKOMQ +departmentNumber: 7267 +employeeType: Normal +homePhone: +1 415 236-5517 +initials: C. M. +mobile: +1 415 911-9185 +pager: +1 415 615-4530 +roomNumber: 8864 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willetta DeMartino +sn: DeMartino +description: This is Willetta DeMartino's description +facsimileTelephoneNumber: +1 510 690-5217 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 248-9533 +title: Chief Human Resources Czar +userPassword: Password1 +uid: DeMartiW +givenName: Willetta +mail: DeMartiW@a6a05053959845178f0fed6cc2cd11a0.bitwarden.com +carLicense: 9091L1 +departmentNumber: 4132 +employeeType: Contract +homePhone: +1 510 709-2706 +initials: W. D. +mobile: +1 510 730-8208 +pager: +1 510 263-1297 +roomNumber: 8760 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shigeki Merryweather +sn: Merryweather +description: This is Shigeki Merryweather's description +facsimileTelephoneNumber: +1 408 452-1830 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 539-1488 +title: Associate Payroll Artist +userPassword: Password1 +uid: MerryweS +givenName: Shigeki +mail: MerryweS@dac0acbfef7c4da38b10a60b872b2190.bitwarden.com +carLicense: 2XGKPG +departmentNumber: 3086 +employeeType: Normal +homePhone: +1 408 177-8980 +initials: S. M. +mobile: +1 408 664-8084 +pager: +1 408 680-8951 +roomNumber: 8569 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marilyn Wiklund +sn: Wiklund +description: This is Marilyn Wiklund's description +facsimileTelephoneNumber: +1 510 729-2999 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 510 563-7031 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: WiklundM +givenName: Marilyn +mail: WiklundM@092396cbb25f48afadfced942905695a.bitwarden.com +carLicense: BYUNA1 +departmentNumber: 4964 +employeeType: Employee +homePhone: +1 510 330-8594 +initials: M. W. +mobile: +1 510 555-5728 +pager: +1 510 641-9266 +roomNumber: 9099 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Junk Kopala,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Junk Kopala +sn: Kopala +description: This is Junk Kopala's description +facsimileTelephoneNumber: +1 213 963-7296 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 826-3746 +title: Associate Payroll Pinhead +userPassword: Password1 +uid: KopalaJ +givenName: Junk +mail: KopalaJ@1544abc377ba4785bbb0b6f87c091972.bitwarden.com +carLicense: HHJVDO +departmentNumber: 7555 +employeeType: Normal +homePhone: +1 213 436-4956 +initials: J. K. +mobile: +1 213 314-9581 +pager: +1 213 961-3671 +roomNumber: 9865 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Skipper Patenaude +sn: Patenaude +description: This is Skipper Patenaude's description +facsimileTelephoneNumber: +1 818 835-5899 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 818 626-2639 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: PatenauS +givenName: Skipper +mail: PatenauS@06d31112a23c438e8cd439e22e02ac63.bitwarden.com +carLicense: Q4K0KX +departmentNumber: 7095 +employeeType: Normal +homePhone: +1 818 785-2497 +initials: S. P. +mobile: +1 818 522-7594 +pager: +1 818 224-1174 +roomNumber: 9699 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sayed Novisedlak +sn: Novisedlak +description: This is Sayed Novisedlak's description +facsimileTelephoneNumber: +1 408 552-1403 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 406-1729 +title: Junior Janitorial Manager +userPassword: Password1 +uid: NovisedS +givenName: Sayed +mail: NovisedS@336eedf545cc414b822f9458db1323a8.bitwarden.com +carLicense: KAQL6K +departmentNumber: 1134 +employeeType: Employee +homePhone: +1 408 132-5181 +initials: S. N. +mobile: +1 408 589-8320 +pager: +1 408 671-2265 +roomNumber: 8246 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shandra Connell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shandra Connell +sn: Connell +description: This is Shandra Connell's description +facsimileTelephoneNumber: +1 213 480-4455 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 761-8256 +title: Associate Management Dictator +userPassword: Password1 +uid: ConnellS +givenName: Shandra +mail: ConnellS@4a1e113d03e64aa594660480aad5198e.bitwarden.com +carLicense: HIXWSU +departmentNumber: 3916 +employeeType: Contract +homePhone: +1 213 689-4096 +initials: S. C. +mobile: +1 213 858-9997 +pager: +1 213 806-7893 +roomNumber: 9568 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgeta Elhage +sn: Elhage +description: This is Georgeta Elhage's description +facsimileTelephoneNumber: +1 213 219-1717 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 351-4991 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: ElhageG +givenName: Georgeta +mail: ElhageG@293d6ba342f34ea39d2f2770c6975255.bitwarden.com +carLicense: RJYAQH +departmentNumber: 6789 +employeeType: Contract +homePhone: +1 213 851-2011 +initials: G. E. +mobile: +1 213 801-8481 +pager: +1 213 278-1586 +roomNumber: 9006 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Munaz Reynolds,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Munaz Reynolds +sn: Reynolds +description: This is Munaz Reynolds's description +facsimileTelephoneNumber: +1 510 305-4130 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 605-6360 +title: Associate Payroll Fellow +userPassword: Password1 +uid: ReynoldM +givenName: Munaz +mail: ReynoldM@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com +carLicense: L1FFCG +departmentNumber: 3939 +employeeType: Normal +homePhone: +1 510 396-1140 +initials: M. R. +mobile: +1 510 575-3686 +pager: +1 510 566-8868 +roomNumber: 8049 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lavinia LaBauve,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lavinia LaBauve +sn: LaBauve +description: This is Lavinia LaBauve's description +facsimileTelephoneNumber: +1 510 193-9241 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 773-4547 +title: Junior Peons Fellow +userPassword: Password1 +uid: LaBauveL +givenName: Lavinia +mail: LaBauveL@f327ac80229d48289e3f8a60345fbfd5.bitwarden.com +carLicense: I1MXOU +departmentNumber: 3860 +employeeType: Employee +homePhone: +1 510 740-7048 +initials: L. L. +mobile: +1 510 109-8256 +pager: +1 510 756-2305 +roomNumber: 9071 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lilllie Ruthart,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilllie Ruthart +sn: Ruthart +description: This is Lilllie Ruthart's description +facsimileTelephoneNumber: +1 510 162-2521 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 510 184-5496 +title: Chief Peons Grunt +userPassword: Password1 +uid: RuthartL +givenName: Lilllie +mail: RuthartL@6acb8cb6e83344b2baf0ea01b349a09b.bitwarden.com +carLicense: HSW9W7 +departmentNumber: 2841 +employeeType: Employee +homePhone: +1 510 168-2465 +initials: L. R. +mobile: +1 510 817-1471 +pager: +1 510 465-6807 +roomNumber: 9309 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mani Keseris,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mani Keseris +sn: Keseris +description: This is Mani Keseris's description +facsimileTelephoneNumber: +1 213 721-4544 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 362-2902 +title: Associate Payroll Developer +userPassword: Password1 +uid: KeserisM +givenName: Mani +mail: KeserisM@57025360fa6449ed9005168a07164ed8.bitwarden.com +carLicense: EN4D1G +departmentNumber: 4304 +employeeType: Contract +homePhone: +1 213 653-7975 +initials: M. K. +mobile: +1 213 177-5509 +pager: +1 213 234-3027 +roomNumber: 8205 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Graciela Waytowich +sn: Waytowich +description: This is Graciela Waytowich's description +facsimileTelephoneNumber: +1 415 635-7819 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 611-7165 +title: Chief Human Resources Warrior +userPassword: Password1 +uid: WaytowiG +givenName: Graciela +mail: WaytowiG@e70e64793c734e619d9d8bf0e6d8cc1c.bitwarden.com +carLicense: EIJ12S +departmentNumber: 7019 +employeeType: Contract +homePhone: +1 415 871-1485 +initials: G. W. +mobile: +1 415 405-8644 +pager: +1 415 515-8774 +roomNumber: 9086 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lilith LLoyd,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilith LLoyd +sn: LLoyd +description: This is Lilith LLoyd's description +facsimileTelephoneNumber: +1 510 632-9937 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 158-9302 +title: Chief Management Architect +userPassword: Password1 +uid: LLoydL +givenName: Lilith +mail: LLoydL@a459e619246a4d3d9371a8063ff33b21.bitwarden.com +carLicense: NGLV4E +departmentNumber: 5909 +employeeType: Contract +homePhone: +1 510 367-5793 +initials: L. L. +mobile: +1 510 555-2518 +pager: +1 510 667-7912 +roomNumber: 8531 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delmar Amavisca +sn: Amavisca +description: This is Delmar Amavisca's description +facsimileTelephoneNumber: +1 213 840-2080 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 213 331-8471 +title: Master Janitorial Stooge +userPassword: Password1 +uid: AmaviscD +givenName: Delmar +mail: AmaviscD@30695216554045458b82454ddcf12f1b.bitwarden.com +carLicense: EPGMVY +departmentNumber: 7448 +employeeType: Normal +homePhone: +1 213 746-9431 +initials: D. A. +mobile: +1 213 975-9175 +pager: +1 213 263-7489 +roomNumber: 8370 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Luann Rodger,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luann Rodger +sn: Rodger +description: This is Luann Rodger's description +facsimileTelephoneNumber: +1 804 180-6492 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 309-3966 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: RodgerL +givenName: Luann +mail: RodgerL@261ef8139c1b42bbacfd98b8697feff4.bitwarden.com +carLicense: G5FRCB +departmentNumber: 8570 +employeeType: Employee +homePhone: +1 804 805-1203 +initials: L. R. +mobile: +1 804 956-8900 +pager: +1 804 697-3170 +roomNumber: 9177 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Evania Keehan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evania Keehan +sn: Keehan +description: This is Evania Keehan's description +facsimileTelephoneNumber: +1 818 966-6995 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 817-8102 +title: Junior Administrative Engineer +userPassword: Password1 +uid: KeehanE +givenName: Evania +mail: KeehanE@a0c3665d3c4148ef8e46512bcb5851c5.bitwarden.com +carLicense: KGO9F9 +departmentNumber: 6873 +employeeType: Normal +homePhone: +1 818 437-5543 +initials: E. K. +mobile: +1 818 267-1440 +pager: +1 818 937-2842 +roomNumber: 9606 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vivianna Rassell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivianna Rassell +sn: Rassell +description: This is Vivianna Rassell's description +facsimileTelephoneNumber: +1 804 978-7292 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 884-7413 +title: Supreme Administrative Admin +userPassword: Password1 +uid: RassellV +givenName: Vivianna +mail: RassellV@0981876efcf54647a835b91b97400e9a.bitwarden.com +carLicense: NXFSPR +departmentNumber: 7070 +employeeType: Employee +homePhone: +1 804 493-2605 +initials: V. R. +mobile: +1 804 681-2647 +pager: +1 804 306-9123 +roomNumber: 9771 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rudie Dunlay,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rudie Dunlay +sn: Dunlay +description: This is Rudie Dunlay's description +facsimileTelephoneNumber: +1 818 562-1121 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 818 547-6309 +title: Associate Payroll Manager +userPassword: Password1 +uid: DunlayR +givenName: Rudie +mail: DunlayR@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com +carLicense: 2KNPBI +departmentNumber: 4179 +employeeType: Employee +homePhone: +1 818 692-8585 +initials: R. D. +mobile: +1 818 967-2773 +pager: +1 818 295-1766 +roomNumber: 8479 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Berti JantzLee,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berti JantzLee +sn: JantzLee +description: This is Berti JantzLee's description +facsimileTelephoneNumber: +1 804 667-3134 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 159-4360 +title: Master Human Resources Assistant +userPassword: Password1 +uid: JantzLeB +givenName: Berti +mail: JantzLeB@f36f9c3d244c4345b6d2788fe9994b43.bitwarden.com +carLicense: 8ONKAJ +departmentNumber: 5300 +employeeType: Employee +homePhone: +1 804 250-2087 +initials: B. J. +mobile: +1 804 882-4173 +pager: +1 804 659-1265 +roomNumber: 8359 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Aigneis Marghetis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aigneis Marghetis +sn: Marghetis +description: This is Aigneis Marghetis's description +facsimileTelephoneNumber: +1 804 670-3905 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 468-3036 +title: Master Peons Pinhead +userPassword: Password1 +uid: MarghetA +givenName: Aigneis +mail: MarghetA@bac50bb727ca4a11b9ee1a82a995bcf0.bitwarden.com +carLicense: 0EKQSO +departmentNumber: 9883 +employeeType: Normal +homePhone: +1 804 120-8399 +initials: A. M. +mobile: +1 804 682-9720 +pager: +1 804 447-7961 +roomNumber: 8907 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gordon Buhler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gordon Buhler +sn: Buhler +description: This is Gordon Buhler's description +facsimileTelephoneNumber: +1 510 939-5286 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 710-4251 +title: Associate Management Dictator +userPassword: Password1 +uid: BuhlerG +givenName: Gordon +mail: BuhlerG@3e44eebfdc184e219c5f14c3aca38333.bitwarden.com +carLicense: 7OJQ96 +departmentNumber: 8998 +employeeType: Employee +homePhone: +1 510 700-1765 +initials: G. B. +mobile: +1 510 567-8574 +pager: +1 510 206-9302 +roomNumber: 9942 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berton Shayanpour +sn: Shayanpour +description: This is Berton Shayanpour's description +facsimileTelephoneNumber: +1 804 675-3525 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 804 228-8297 +title: Chief Product Testing Admin +userPassword: Password1 +uid: ShayanpB +givenName: Berton +mail: ShayanpB@4c5d84de03674c49a48c822bd1b74d2d.bitwarden.com +carLicense: M47HGS +departmentNumber: 8156 +employeeType: Contract +homePhone: +1 804 319-7197 +initials: B. S. +mobile: +1 804 871-9839 +pager: +1 804 110-7539 +roomNumber: 8120 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Austine ODale,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Austine ODale +sn: ODale +description: This is Austine ODale's description +facsimileTelephoneNumber: +1 415 463-3723 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 415 919-3274 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: ODaleA +givenName: Austine +mail: ODaleA@343f0f593aa240c5b8dbc9d9fe3ab95e.bitwarden.com +carLicense: 9ER0EB +departmentNumber: 5489 +employeeType: Contract +homePhone: +1 415 340-9545 +initials: A. O. +mobile: +1 415 544-6271 +pager: +1 415 335-4822 +roomNumber: 9141 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lab Carstensen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lab Carstensen +sn: Carstensen +description: This is Lab Carstensen's description +facsimileTelephoneNumber: +1 818 311-7542 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 664-2864 +title: Chief Product Testing Figurehead +userPassword: Password1 +uid: CarstenL +givenName: Lab +mail: CarstenL@fc0c286626334794ab4a83e723107bf2.bitwarden.com +carLicense: J1E0MJ +departmentNumber: 9431 +employeeType: Contract +homePhone: +1 818 600-2659 +initials: L. C. +mobile: +1 818 327-1360 +pager: +1 818 490-1890 +roomNumber: 9130 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Amalita Smith,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amalita Smith +sn: Smith +description: This is Amalita Smith's description +facsimileTelephoneNumber: +1 818 344-4553 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 818 987-6004 +title: Supreme Peons Developer +userPassword: Password1 +uid: SmithA +givenName: Amalita +mail: SmithA@21813dd069254b74bf250b7db15a806f.bitwarden.com +carLicense: 0OYDK8 +departmentNumber: 4890 +employeeType: Contract +homePhone: +1 818 145-4215 +initials: A. S. +mobile: +1 818 705-2729 +pager: +1 818 311-4413 +roomNumber: 8521 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Barbe Degen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbe Degen +sn: Degen +description: This is Barbe Degen's description +facsimileTelephoneNumber: +1 408 381-2566 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 728-1179 +title: Chief Management Visionary +userPassword: Password1 +uid: DegenB +givenName: Barbe +mail: DegenB@438e70287f6d4d35a04d438ca352f234.bitwarden.com +carLicense: WLQADV +departmentNumber: 6774 +employeeType: Normal +homePhone: +1 408 794-5663 +initials: B. D. +mobile: +1 408 833-1842 +pager: +1 408 201-4852 +roomNumber: 8141 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ros Varkel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ros Varkel +sn: Varkel +description: This is Ros Varkel's description +facsimileTelephoneNumber: +1 818 222-9633 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 584-8438 +title: Junior Human Resources Artist +userPassword: Password1 +uid: VarkelR +givenName: Ros +mail: VarkelR@c67a6c3f272e49d89894436b34e568ce.bitwarden.com +carLicense: VWNV0G +departmentNumber: 8832 +employeeType: Employee +homePhone: +1 818 666-3415 +initials: R. V. +mobile: +1 818 186-1835 +pager: +1 818 648-5230 +roomNumber: 9080 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anissa Belley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anissa Belley +sn: Belley +description: This is Anissa Belley's description +facsimileTelephoneNumber: +1 206 138-9533 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 161-8533 +title: Master Janitorial Writer +userPassword: Password1 +uid: BelleyA +givenName: Anissa +mail: BelleyA@7e7373daa08d4a3b834f2e415978d199.bitwarden.com +carLicense: UIWL08 +departmentNumber: 1177 +employeeType: Normal +homePhone: +1 206 689-4908 +initials: A. B. +mobile: +1 206 180-3289 +pager: +1 206 432-1424 +roomNumber: 8312 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Khurshid Balsas,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khurshid Balsas +sn: Balsas +description: This is Khurshid Balsas's description +facsimileTelephoneNumber: +1 206 789-2804 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 290-8602 +title: Junior Peons Madonna +userPassword: Password1 +uid: BalsasK +givenName: Khurshid +mail: BalsasK@83f450f8e8ed4c6282bc25450b6af548.bitwarden.com +carLicense: B6FGYC +departmentNumber: 1758 +employeeType: Contract +homePhone: +1 206 820-3738 +initials: K. B. +mobile: +1 206 809-9032 +pager: +1 206 448-2492 +roomNumber: 8080 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Amata Byers,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amata Byers +sn: Byers +description: This is Amata Byers's description +facsimileTelephoneNumber: +1 206 936-9740 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 894-8262 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: ByersA +givenName: Amata +mail: ByersA@ec1ddd180ec346c9ac4e8ff1fbae4cee.bitwarden.com +carLicense: CKEQO2 +departmentNumber: 1401 +employeeType: Contract +homePhone: +1 206 550-3663 +initials: A. B. +mobile: +1 206 293-7277 +pager: +1 206 418-9343 +roomNumber: 8578 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tonya Brough,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonya Brough +sn: Brough +description: This is Tonya Brough's description +facsimileTelephoneNumber: +1 415 810-7857 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 415 243-2286 +title: Associate Administrative Sales Rep +userPassword: Password1 +uid: BroughT +givenName: Tonya +mail: BroughT@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com +carLicense: 39A2UC +departmentNumber: 3094 +employeeType: Normal +homePhone: +1 415 390-8509 +initials: T. B. +mobile: +1 415 713-1210 +pager: +1 415 878-7336 +roomNumber: 8926 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nancy Stocker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nancy Stocker +sn: Stocker +description: This is Nancy Stocker's description +facsimileTelephoneNumber: +1 804 745-9004 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 309-8977 +title: Chief Peons Fellow +userPassword: Password1 +uid: StockerN +givenName: Nancy +mail: StockerN@bc24a263fb344aa0a892bcbfdbc90a0d.bitwarden.com +carLicense: F0Y3VA +departmentNumber: 2277 +employeeType: Contract +homePhone: +1 804 741-8797 +initials: N. S. +mobile: +1 804 528-4595 +pager: +1 804 852-9975 +roomNumber: 8146 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Analiese Hooper,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Analiese Hooper +sn: Hooper +description: This is Analiese Hooper's description +facsimileTelephoneNumber: +1 818 245-7189 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 332-3995 +title: Chief Human Resources Janitor +userPassword: Password1 +uid: HooperA +givenName: Analiese +mail: HooperA@d28a39336adb48ccb95a57463d617dbb.bitwarden.com +carLicense: 75X04W +departmentNumber: 1216 +employeeType: Normal +homePhone: +1 818 259-5721 +initials: A. H. +mobile: +1 818 660-7861 +pager: +1 818 991-4033 +roomNumber: 8006 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mikelis Chaves,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mikelis Chaves +sn: Chaves +description: This is Mikelis Chaves's description +facsimileTelephoneNumber: +1 213 972-8208 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 994-4220 +title: Supreme Administrative Admin +userPassword: Password1 +uid: ChavesM +givenName: Mikelis +mail: ChavesM@cff151d12e624a459ab90891be7ad6d7.bitwarden.com +carLicense: E1IAWY +departmentNumber: 9589 +employeeType: Contract +homePhone: +1 213 472-3452 +initials: M. C. +mobile: +1 213 424-4503 +pager: +1 213 667-3891 +roomNumber: 9590 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Liv Ayukawa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liv Ayukawa +sn: Ayukawa +description: This is Liv Ayukawa's description +facsimileTelephoneNumber: +1 818 137-1074 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 328-7978 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: AyukawaL +givenName: Liv +mail: AyukawaL@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com +carLicense: TWA64R +departmentNumber: 5597 +employeeType: Employee +homePhone: +1 818 159-7868 +initials: L. A. +mobile: +1 818 752-1120 +pager: +1 818 318-4455 +roomNumber: 8459 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Amir Andre,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amir Andre +sn: Andre +description: This is Amir Andre's description +facsimileTelephoneNumber: +1 818 325-3694 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 937-8128 +title: Chief Peons Stooge +userPassword: Password1 +uid: AndreA +givenName: Amir +mail: AndreA@6689aec4c2e947e78e303762aa98dbd3.bitwarden.com +carLicense: H3JIRI +departmentNumber: 6376 +employeeType: Contract +homePhone: +1 818 530-7719 +initials: A. A. +mobile: +1 818 257-6169 +pager: +1 818 591-5766 +roomNumber: 8424 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KaiMing Hetzel +sn: Hetzel +description: This is KaiMing Hetzel's description +facsimileTelephoneNumber: +1 213 156-9924 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 213 106-2291 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: HetzelK +givenName: KaiMing +mail: HetzelK@ad005e1f3e2c4d6ba75c2d9c48687591.bitwarden.com +carLicense: 12DO9B +departmentNumber: 7823 +employeeType: Employee +homePhone: +1 213 105-1823 +initials: K. H. +mobile: +1 213 775-2530 +pager: +1 213 305-5364 +roomNumber: 8622 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jacob Mahin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacob Mahin +sn: Mahin +description: This is Jacob Mahin's description +facsimileTelephoneNumber: +1 510 602-7294 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 946-5214 +title: Associate Management Mascot +userPassword: Password1 +uid: MahinJ +givenName: Jacob +mail: MahinJ@2f1e5586c9f34c7a81a461c2017b9960.bitwarden.com +carLicense: PMAQYR +departmentNumber: 3157 +employeeType: Normal +homePhone: +1 510 781-6155 +initials: J. M. +mobile: +1 510 374-3022 +pager: +1 510 900-6625 +roomNumber: 8141 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Genvieve Albers,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genvieve Albers +sn: Albers +description: This is Genvieve Albers's description +facsimileTelephoneNumber: +1 818 642-2534 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 956-2742 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: AlbersG +givenName: Genvieve +mail: AlbersG@d236a57ac59c480697085ae127e79e8f.bitwarden.com +carLicense: Y9C3GU +departmentNumber: 9738 +employeeType: Contract +homePhone: +1 818 266-7475 +initials: G. A. +mobile: +1 818 987-8595 +pager: +1 818 147-9431 +roomNumber: 8355 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mallory Xenos,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mallory Xenos +sn: Xenos +description: This is Mallory Xenos's description +facsimileTelephoneNumber: +1 818 325-4613 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 108-9920 +title: Junior Administrative Fellow +userPassword: Password1 +uid: XenosM +givenName: Mallory +mail: XenosM@280cee7caed9430b8fa7be7309b39563.bitwarden.com +carLicense: 2U08QH +departmentNumber: 8049 +employeeType: Contract +homePhone: +1 818 351-8805 +initials: M. X. +mobile: +1 818 393-2613 +pager: +1 818 404-5750 +roomNumber: 9698 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosalyn Pulcher +sn: Pulcher +description: This is Rosalyn Pulcher's description +facsimileTelephoneNumber: +1 206 861-9575 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 929-5753 +title: Chief Peons Manager +userPassword: Password1 +uid: PulcherR +givenName: Rosalyn +mail: PulcherR@98ee1decab4b4712b60ec9828a0d8c3a.bitwarden.com +carLicense: GPFI98 +departmentNumber: 9534 +employeeType: Normal +homePhone: +1 206 159-9721 +initials: R. P. +mobile: +1 206 756-8840 +pager: +1 206 439-3119 +roomNumber: 8584 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Christie Shapiro,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christie Shapiro +sn: Shapiro +description: This is Christie Shapiro's description +facsimileTelephoneNumber: +1 415 691-4249 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 358-7380 +title: Junior Janitorial Writer +userPassword: Password1 +uid: ShapiroC +givenName: Christie +mail: ShapiroC@0460dcc544ed4a46a87c85b64c5ff202.bitwarden.com +carLicense: RUITTL +departmentNumber: 6663 +employeeType: Employee +homePhone: +1 415 759-5817 +initials: C. S. +mobile: +1 415 590-4813 +pager: +1 415 512-9663 +roomNumber: 9559 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jackie Au,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jackie Au +sn: Au +description: This is Jackie Au's description +facsimileTelephoneNumber: +1 408 895-5263 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 415-3833 +title: Associate Payroll Manager +userPassword: Password1 +uid: AuJ +givenName: Jackie +mail: AuJ@5093424433404df7a9b5d20a18b7ae60.bitwarden.com +carLicense: AV2M08 +departmentNumber: 8570 +employeeType: Employee +homePhone: +1 408 176-9260 +initials: J. A. +mobile: +1 408 906-6116 +pager: +1 408 886-8722 +roomNumber: 8795 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ray Muttaqi +sn: Muttaqi +description: This is Ray Muttaqi's description +facsimileTelephoneNumber: +1 408 309-8785 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 304-9728 +title: Junior Human Resources Manager +userPassword: Password1 +uid: MuttaqiR +givenName: Ray +mail: MuttaqiR@8aca496809cf4238a39dc0c2b2a9c742.bitwarden.com +carLicense: J4GKAM +departmentNumber: 6212 +employeeType: Contract +homePhone: +1 408 643-4409 +initials: R. M. +mobile: +1 408 367-9584 +pager: +1 408 505-9169 +roomNumber: 9348 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marshall Paine,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marshall Paine +sn: Paine +description: This is Marshall Paine's description +facsimileTelephoneNumber: +1 818 741-6419 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 658-6711 +title: Junior Human Resources Fellow +userPassword: Password1 +uid: PaineM +givenName: Marshall +mail: PaineM@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com +carLicense: 2MFUYT +departmentNumber: 6506 +employeeType: Normal +homePhone: +1 818 167-5166 +initials: M. P. +mobile: +1 818 517-7361 +pager: +1 818 369-2745 +roomNumber: 9960 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doreen DeBoer +sn: DeBoer +description: This is Doreen DeBoer's description +facsimileTelephoneNumber: +1 213 313-4638 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 458-7478 +title: Junior Human Resources Developer +userPassword: Password1 +uid: DeBoerD +givenName: Doreen +mail: DeBoerD@f7e815f56fc1472f8f953f85688ba7a4.bitwarden.com +carLicense: QNL664 +departmentNumber: 9217 +employeeType: Contract +homePhone: +1 213 490-8224 +initials: D. D. +mobile: +1 213 122-1521 +pager: +1 213 222-2255 +roomNumber: 8755 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roman Materna,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roman Materna +sn: Materna +description: This is Roman Materna's description +facsimileTelephoneNumber: +1 408 749-6855 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 381-4961 +title: Chief Product Development Janitor +userPassword: Password1 +uid: MaternaR +givenName: Roman +mail: MaternaR@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com +carLicense: LN2WFJ +departmentNumber: 1231 +employeeType: Normal +homePhone: +1 408 710-1579 +initials: R. M. +mobile: +1 408 272-9480 +pager: +1 408 647-1101 +roomNumber: 8558 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jerald Gutcher,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jerald Gutcher +sn: Gutcher +description: This is Jerald Gutcher's description +facsimileTelephoneNumber: +1 213 493-5479 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 633-1427 +title: Associate Management Grunt +userPassword: Password1 +uid: GutcherJ +givenName: Jerald +mail: GutcherJ@422dc77807144e50a50666d3791c65d7.bitwarden.com +carLicense: Y9U2P0 +departmentNumber: 2934 +employeeType: Employee +homePhone: +1 213 832-3130 +initials: J. G. +mobile: +1 213 843-5678 +pager: +1 213 149-8968 +roomNumber: 9549 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Berty Bittman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berty Bittman +sn: Bittman +description: This is Berty Bittman's description +facsimileTelephoneNumber: +1 213 662-6185 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 213 200-8020 +title: Supreme Product Development Manager +userPassword: Password1 +uid: BittmanB +givenName: Berty +mail: BittmanB@68682c9b2559463bb9da0d98b541595f.bitwarden.com +carLicense: RUN2XQ +departmentNumber: 4759 +employeeType: Employee +homePhone: +1 213 226-4888 +initials: B. B. +mobile: +1 213 254-4929 +pager: +1 213 180-8361 +roomNumber: 8605 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zabrina Liddle +sn: Liddle +description: This is Zabrina Liddle's description +facsimileTelephoneNumber: +1 206 167-4275 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 206-7248 +title: Associate Janitorial Developer +userPassword: Password1 +uid: LiddleZ +givenName: Zabrina +mail: LiddleZ@2883c809f60044a59cf20989f8889d61.bitwarden.com +carLicense: TG5ROY +departmentNumber: 1509 +employeeType: Contract +homePhone: +1 206 898-7540 +initials: Z. L. +mobile: +1 206 169-9680 +pager: +1 206 259-3877 +roomNumber: 8535 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Happy Vreugdenhil +sn: Vreugdenhil +description: This is Happy Vreugdenhil's description +facsimileTelephoneNumber: +1 818 870-4107 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 818 566-4330 +title: Master Administrative Admin +userPassword: Password1 +uid: VreugdeH +givenName: Happy +mail: VreugdeH@bdf120f20bde4a2eb788dc5571823dc7.bitwarden.com +carLicense: 7X62BH +departmentNumber: 1450 +employeeType: Normal +homePhone: +1 818 843-6397 +initials: H. V. +mobile: +1 818 768-8123 +pager: +1 818 421-9588 +roomNumber: 9045 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Priore Hofstetter +sn: Hofstetter +description: This is Priore Hofstetter's description +facsimileTelephoneNumber: +1 818 470-5347 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 149-6582 +title: Master Janitorial Grunt +userPassword: Password1 +uid: HofstetP +givenName: Priore +mail: HofstetP@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com +carLicense: RAKFNR +departmentNumber: 8713 +employeeType: Contract +homePhone: +1 818 906-7147 +initials: P. H. +mobile: +1 818 662-4302 +pager: +1 818 787-2388 +roomNumber: 9414 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Adara Smyth,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adara Smyth +sn: Smyth +description: This is Adara Smyth's description +facsimileTelephoneNumber: +1 213 390-8800 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 313-3759 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: SmythA +givenName: Adara +mail: SmythA@893034d40ae747fcb94aa3c93f26d5c8.bitwarden.com +carLicense: AGQS8C +departmentNumber: 4261 +employeeType: Employee +homePhone: +1 213 967-7364 +initials: A. S. +mobile: +1 213 962-5451 +pager: +1 213 400-5259 +roomNumber: 8633 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Robenia Prescott,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robenia Prescott +sn: Prescott +description: This is Robenia Prescott's description +facsimileTelephoneNumber: +1 818 225-6807 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 131-4568 +title: Master Product Testing Stooge +userPassword: Password1 +uid: PrescotR +givenName: Robenia +mail: PrescotR@1782f7f16d8544ffa1ab9536782bcf24.bitwarden.com +carLicense: ECEAI2 +departmentNumber: 3108 +employeeType: Contract +homePhone: +1 818 611-6436 +initials: R. P. +mobile: +1 818 799-4883 +pager: +1 818 902-8322 +roomNumber: 8787 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wonda Zoerb +sn: Zoerb +description: This is Wonda Zoerb's description +facsimileTelephoneNumber: +1 206 505-7193 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 770-3454 +title: Associate Human Resources Director +userPassword: Password1 +uid: ZoerbW +givenName: Wonda +mail: ZoerbW@3ebdc674ebed47c4a4f33a4fcf39c448.bitwarden.com +carLicense: 4YELMC +departmentNumber: 3214 +employeeType: Employee +homePhone: +1 206 174-4091 +initials: W. Z. +mobile: +1 206 849-9971 +pager: +1 206 305-7550 +roomNumber: 9184 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Berna Mahaffee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berna Mahaffee +sn: Mahaffee +description: This is Berna Mahaffee's description +facsimileTelephoneNumber: +1 415 538-6833 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 605-9916 +title: Chief Product Development Mascot +userPassword: Password1 +uid: MahaffeB +givenName: Berna +mail: MahaffeB@15d351e2d51e4089aa0399e21432998b.bitwarden.com +carLicense: LTLK21 +departmentNumber: 4036 +employeeType: Employee +homePhone: +1 415 973-4424 +initials: B. M. +mobile: +1 415 307-5459 +pager: +1 415 979-2295 +roomNumber: 9599 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Drusilla Riou,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drusilla Riou +sn: Riou +description: This is Drusilla Riou's description +facsimileTelephoneNumber: +1 415 924-7840 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 474-2598 +title: Supreme Human Resources Consultant +userPassword: Password1 +uid: RiouD +givenName: Drusilla +mail: RiouD@6f161c0885be4a50be1e5e174b0c967a.bitwarden.com +carLicense: KAUMN0 +departmentNumber: 1928 +employeeType: Normal +homePhone: +1 415 595-8815 +initials: D. R. +mobile: +1 415 637-2906 +pager: +1 415 132-7310 +roomNumber: 9418 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elsie Ryals,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elsie Ryals +sn: Ryals +description: This is Elsie Ryals's description +facsimileTelephoneNumber: +1 804 715-1314 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 508-8671 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: RyalsE +givenName: Elsie +mail: RyalsE@5d0b867d32fb46e6b508ea727cf0a4d7.bitwarden.com +carLicense: Y67AJD +departmentNumber: 8632 +employeeType: Normal +homePhone: +1 804 350-5918 +initials: E. R. +mobile: +1 804 252-3690 +pager: +1 804 289-3822 +roomNumber: 9200 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sanae Glaser,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanae Glaser +sn: Glaser +description: This is Sanae Glaser's description +facsimileTelephoneNumber: +1 804 131-8453 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 521-2916 +title: Junior Human Resources Madonna +userPassword: Password1 +uid: GlaserS +givenName: Sanae +mail: GlaserS@83ad79c28f46486b8edfbe2ab2f124ce.bitwarden.com +carLicense: 1EJHO6 +departmentNumber: 9927 +employeeType: Employee +homePhone: +1 804 584-8422 +initials: S. G. +mobile: +1 804 974-7247 +pager: +1 804 902-5347 +roomNumber: 8377 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melisenda Shuster,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisenda Shuster +sn: Shuster +description: This is Melisenda Shuster's description +facsimileTelephoneNumber: +1 206 167-1533 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 226-4562 +title: Junior Peons Manager +userPassword: Password1 +uid: ShusterM +givenName: Melisenda +mail: ShusterM@6f1fa218146b4384aa588054962e9428.bitwarden.com +carLicense: KXVF72 +departmentNumber: 9059 +employeeType: Contract +homePhone: +1 206 102-8107 +initials: M. S. +mobile: +1 206 826-5056 +pager: +1 206 163-5489 +roomNumber: 9368 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jasver Loza,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jasver Loza +sn: Loza +description: This is Jasver Loza's description +facsimileTelephoneNumber: +1 415 572-7024 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 383-3038 +title: Supreme Management Janitor +userPassword: Password1 +uid: LozaJ +givenName: Jasver +mail: LozaJ@948fee4ac0644e21a6b3abc34aeaa20f.bitwarden.com +carLicense: 3T3YEX +departmentNumber: 2584 +employeeType: Normal +homePhone: +1 415 666-3080 +initials: J. L. +mobile: +1 415 548-2012 +pager: +1 415 345-1841 +roomNumber: 9870 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Joseph Beshai,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joseph Beshai +sn: Beshai +description: This is Joseph Beshai's description +facsimileTelephoneNumber: +1 206 799-5431 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 555-2579 +title: Junior Management Warrior +userPassword: Password1 +uid: BeshaiJ +givenName: Joseph +mail: BeshaiJ@f7fb17758cf24933ad847773d4770955.bitwarden.com +carLicense: 0SO4Q1 +departmentNumber: 5252 +employeeType: Contract +homePhone: +1 206 799-4096 +initials: J. B. +mobile: +1 206 678-6269 +pager: +1 206 510-1047 +roomNumber: 8170 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rebecca Landriault,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebecca Landriault +sn: Landriault +description: This is Rebecca Landriault's description +facsimileTelephoneNumber: +1 804 595-2891 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 323-8567 +title: Supreme Product Development Fellow +userPassword: Password1 +uid: LandriaR +givenName: Rebecca +mail: LandriaR@7ddc36790a7641e3ae418cec51fdf351.bitwarden.com +carLicense: YH2WE3 +departmentNumber: 6338 +employeeType: Employee +homePhone: +1 804 157-8353 +initials: R. L. +mobile: +1 804 455-9089 +pager: +1 804 485-6302 +roomNumber: 9776 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kokkhiang Holness,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kokkhiang Holness +sn: Holness +description: This is Kokkhiang Holness's description +facsimileTelephoneNumber: +1 213 784-1342 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 309-1819 +title: Chief Management Assistant +userPassword: Password1 +uid: HolnessK +givenName: Kokkhiang +mail: HolnessK@237d4965b17942d997e72bedf6b5b1ed.bitwarden.com +carLicense: 8TJWF6 +departmentNumber: 3031 +employeeType: Employee +homePhone: +1 213 156-9224 +initials: K. H. +mobile: +1 213 609-4339 +pager: +1 213 853-9078 +roomNumber: 9363 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stormy Berger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stormy Berger +sn: Berger +description: This is Stormy Berger's description +facsimileTelephoneNumber: +1 206 461-8026 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 980-6282 +title: Associate Management Czar +userPassword: Password1 +uid: BergerS +givenName: Stormy +mail: BergerS@5e8f47bf29ef420c9f1d1267ba3841e3.bitwarden.com +carLicense: UEXRUJ +departmentNumber: 1534 +employeeType: Employee +homePhone: +1 206 116-3374 +initials: S. B. +mobile: +1 206 785-8446 +pager: +1 206 132-4396 +roomNumber: 8881 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Olva Mooder,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olva Mooder +sn: Mooder +description: This is Olva Mooder's description +facsimileTelephoneNumber: +1 206 925-9155 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 206 539-2535 +title: Associate Peons Artist +userPassword: Password1 +uid: MooderO +givenName: Olva +mail: MooderO@00b74fb6ef364737950ddfdf6aa8c176.bitwarden.com +carLicense: VQIF62 +departmentNumber: 1927 +employeeType: Employee +homePhone: +1 206 410-9705 +initials: O. M. +mobile: +1 206 907-4817 +pager: +1 206 337-1480 +roomNumber: 8115 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tash Ficco,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tash Ficco +sn: Ficco +description: This is Tash Ficco's description +facsimileTelephoneNumber: +1 818 285-7428 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 818 347-6632 +title: Supreme Payroll Writer +userPassword: Password1 +uid: FiccoT +givenName: Tash +mail: FiccoT@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com +carLicense: R7PIPB +departmentNumber: 6294 +employeeType: Normal +homePhone: +1 818 180-7139 +initials: T. F. +mobile: +1 818 471-4862 +pager: +1 818 893-3161 +roomNumber: 9993 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Paulita Jobs,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulita Jobs +sn: Jobs +description: This is Paulita Jobs's description +facsimileTelephoneNumber: +1 206 557-3975 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 859-3962 +title: Associate Product Development Technician +userPassword: Password1 +uid: JobsP +givenName: Paulita +mail: JobsP@8b141724f39349e190b0bc072ac89f77.bitwarden.com +carLicense: 2XBCQA +departmentNumber: 9386 +employeeType: Contract +homePhone: +1 206 976-5641 +initials: P. J. +mobile: +1 206 759-6526 +pager: +1 206 803-4973 +roomNumber: 9115 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kanata Ning,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanata Ning +sn: Ning +description: This is Kanata Ning's description +facsimileTelephoneNumber: +1 804 889-7692 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 365-9700 +title: Junior Payroll Writer +userPassword: Password1 +uid: NingK +givenName: Kanata +mail: NingK@12339915e7824967ac90a6f27aeb00c7.bitwarden.com +carLicense: 6912MF +departmentNumber: 9267 +employeeType: Normal +homePhone: +1 804 583-7646 +initials: K. N. +mobile: +1 804 759-1340 +pager: +1 804 775-6839 +roomNumber: 8386 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dalila Shull,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dalila Shull +sn: Shull +description: This is Dalila Shull's description +facsimileTelephoneNumber: +1 804 756-6143 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 804 526-2994 +title: Associate Payroll Director +userPassword: Password1 +uid: ShullD +givenName: Dalila +mail: ShullD@32fe0278ad444a168aa2715b611540e7.bitwarden.com +carLicense: TJY259 +departmentNumber: 5034 +employeeType: Employee +homePhone: +1 804 771-1539 +initials: D. S. +mobile: +1 804 309-5586 +pager: +1 804 132-7319 +roomNumber: 9296 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Georgianne Bour,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgianne Bour +sn: Bour +description: This is Georgianne Bour's description +facsimileTelephoneNumber: +1 408 404-3577 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 963-2535 +title: Master Administrative Writer +userPassword: Password1 +uid: BourG +givenName: Georgianne +mail: BourG@0c871b0ecc1a46debc66287e828580e3.bitwarden.com +carLicense: 2NYD0D +departmentNumber: 5463 +employeeType: Normal +homePhone: +1 408 158-1760 +initials: G. B. +mobile: +1 408 935-7673 +pager: +1 408 788-7901 +roomNumber: 8627 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Venita Brandon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Venita Brandon +sn: Brandon +description: This is Venita Brandon's description +facsimileTelephoneNumber: +1 415 516-3539 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 602-5091 +title: Supreme Product Testing Visionary +userPassword: Password1 +uid: BrandonV +givenName: Venita +mail: BrandonV@f3d35636fac14230bdd8e3b7a9740351.bitwarden.com +carLicense: 3P0IKK +departmentNumber: 9026 +employeeType: Normal +homePhone: +1 415 404-7556 +initials: V. B. +mobile: +1 415 934-3995 +pager: +1 415 189-6229 +roomNumber: 9751 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Krishna Kiens,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krishna Kiens +sn: Kiens +description: This is Krishna Kiens's description +facsimileTelephoneNumber: +1 206 605-1902 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 206 282-1236 +title: Junior Product Development Punk +userPassword: Password1 +uid: KiensK +givenName: Krishna +mail: KiensK@579206d6574545e7827d4fefcb691059.bitwarden.com +carLicense: F3S303 +departmentNumber: 7538 +employeeType: Employee +homePhone: +1 206 333-9714 +initials: K. K. +mobile: +1 206 138-4469 +pager: +1 206 629-8087 +roomNumber: 9862 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ashlen Plssup,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashlen Plssup +sn: Plssup +description: This is Ashlen Plssup's description +facsimileTelephoneNumber: +1 408 259-9429 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 408 270-2058 +title: Associate Administrative Mascot +userPassword: Password1 +uid: PlssupA +givenName: Ashlen +mail: PlssupA@b17d54cce1be4bbcaff405b30e34b1e9.bitwarden.com +carLicense: HJINVD +departmentNumber: 3267 +employeeType: Contract +homePhone: +1 408 110-4907 +initials: A. P. +mobile: +1 408 579-9680 +pager: +1 408 781-9958 +roomNumber: 8200 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilyssa Woodley +sn: Woodley +description: This is Ilyssa Woodley's description +facsimileTelephoneNumber: +1 213 240-3327 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 218-7778 +title: Master Product Testing Madonna +userPassword: Password1 +uid: WoodleyI +givenName: Ilyssa +mail: WoodleyI@6994ff306ef64425a30543b5e9a42d04.bitwarden.com +carLicense: PY45G6 +departmentNumber: 5718 +employeeType: Employee +homePhone: +1 213 661-3596 +initials: I. W. +mobile: +1 213 459-4763 +pager: +1 213 923-8754 +roomNumber: 9996 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hojjat Burchat,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hojjat Burchat +sn: Burchat +description: This is Hojjat Burchat's description +facsimileTelephoneNumber: +1 408 989-9848 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 874-4323 +title: Associate Product Development Architect +userPassword: Password1 +uid: BurchatH +givenName: Hojjat +mail: BurchatH@15447e827d294576b427fe60b8e58e62.bitwarden.com +carLicense: BCH6YH +departmentNumber: 3455 +employeeType: Contract +homePhone: +1 408 425-3963 +initials: H. B. +mobile: +1 408 774-5228 +pager: +1 408 955-3901 +roomNumber: 9655 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mani Gravitte,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mani Gravitte +sn: Gravitte +description: This is Mani Gravitte's description +facsimileTelephoneNumber: +1 213 984-1989 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 503-5378 +title: Chief Janitorial Writer +userPassword: Password1 +uid: GravittM +givenName: Mani +mail: GravittM@3587dae0157a463b8f8e3e2bb5286ba6.bitwarden.com +carLicense: 3N93PT +departmentNumber: 2155 +employeeType: Contract +homePhone: +1 213 381-3158 +initials: M. G. +mobile: +1 213 773-9350 +pager: +1 213 850-5440 +roomNumber: 8019 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Chiu Pilipchuk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chiu Pilipchuk +sn: Pilipchuk +description: This is Chiu Pilipchuk's description +facsimileTelephoneNumber: +1 408 951-6078 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 270-3905 +title: Chief Management Janitor +userPassword: Password1 +uid: PilipchC +givenName: Chiu +mail: PilipchC@571742054064463fb2b552524cde124b.bitwarden.com +carLicense: GCKAKL +departmentNumber: 6060 +employeeType: Normal +homePhone: +1 408 979-3373 +initials: C. P. +mobile: +1 408 472-6637 +pager: +1 408 978-7294 +roomNumber: 9585 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shamim Uffner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shamim Uffner +sn: Uffner +description: This is Shamim Uffner's description +facsimileTelephoneNumber: +1 804 359-8970 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 672-1465 +title: Chief Human Resources Architect +userPassword: Password1 +uid: UffnerS +givenName: Shamim +mail: UffnerS@a83a79eb4e0e4d1da5d7fca900f14adf.bitwarden.com +carLicense: UU7U6H +departmentNumber: 6164 +employeeType: Employee +homePhone: +1 804 160-8975 +initials: S. U. +mobile: +1 804 139-7016 +pager: +1 804 633-6276 +roomNumber: 8268 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hyacintha Thurman +sn: Thurman +description: This is Hyacintha Thurman's description +facsimileTelephoneNumber: +1 804 451-1163 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 110-7195 +title: Junior Administrative Fellow +userPassword: Password1 +uid: ThurmanH +givenName: Hyacintha +mail: ThurmanH@4eb55ca292bb4599a29d162b3cac9e90.bitwarden.com +carLicense: SVIJTP +departmentNumber: 9099 +employeeType: Contract +homePhone: +1 804 463-8531 +initials: H. T. +mobile: +1 804 381-5777 +pager: +1 804 119-5036 +roomNumber: 8957 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jozsef Alspaugh +sn: Alspaugh +description: This is Jozsef Alspaugh's description +facsimileTelephoneNumber: +1 206 291-8099 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 461-7277 +title: Chief Product Development Manager +userPassword: Password1 +uid: AlspaugJ +givenName: Jozsef +mail: AlspaugJ@bc377f0c1b2b4d28a2ccf5abc5f2f5ed.bitwarden.com +carLicense: WYU6X3 +departmentNumber: 9073 +employeeType: Employee +homePhone: +1 206 830-7161 +initials: J. A. +mobile: +1 206 287-3972 +pager: +1 206 882-5589 +roomNumber: 8153 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Trude Graves,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trude Graves +sn: Graves +description: This is Trude Graves's description +facsimileTelephoneNumber: +1 415 591-4987 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 914-6752 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: GravesT +givenName: Trude +mail: GravesT@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com +carLicense: RKEOXB +departmentNumber: 4324 +employeeType: Normal +homePhone: +1 415 662-7230 +initials: T. G. +mobile: +1 415 929-6210 +pager: +1 415 499-4176 +roomNumber: 8862 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Caressa Balogh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caressa Balogh +sn: Balogh +description: This is Caressa Balogh's description +facsimileTelephoneNumber: +1 818 871-7921 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 852-7848 +title: Junior Product Development Dictator +userPassword: Password1 +uid: BaloghC +givenName: Caressa +mail: BaloghC@b5088b9f02d2438a84c66dee28f005b7.bitwarden.com +carLicense: 9RJ2X6 +departmentNumber: 6240 +employeeType: Contract +homePhone: +1 818 804-3679 +initials: C. B. +mobile: +1 818 878-8262 +pager: +1 818 607-1994 +roomNumber: 8799 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lyn Serre,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyn Serre +sn: Serre +description: This is Lyn Serre's description +facsimileTelephoneNumber: +1 408 702-6008 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 906-5210 +title: Junior Product Development Madonna +userPassword: Password1 +uid: SerreL +givenName: Lyn +mail: SerreL@edf7b6e6765c4b9395ab808390477139.bitwarden.com +carLicense: H10A9F +departmentNumber: 8913 +employeeType: Employee +homePhone: +1 408 405-2148 +initials: L. S. +mobile: +1 408 699-6757 +pager: +1 408 356-1983 +roomNumber: 8342 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Clemmy Doda,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clemmy Doda +sn: Doda +description: This is Clemmy Doda's description +facsimileTelephoneNumber: +1 206 516-1515 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 157-1048 +title: Junior Payroll Fellow +userPassword: Password1 +uid: DodaC +givenName: Clemmy +mail: DodaC@0942a8d54b72463a911186a66f7c67f1.bitwarden.com +carLicense: XGSJH4 +departmentNumber: 1742 +employeeType: Employee +homePhone: +1 206 292-8030 +initials: C. D. +mobile: +1 206 119-8190 +pager: +1 206 419-6113 +roomNumber: 8953 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kesley Nallengara,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kesley Nallengara +sn: Nallengara +description: This is Kesley Nallengara's description +facsimileTelephoneNumber: +1 206 279-3883 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 320-9548 +title: Associate Management Figurehead +userPassword: Password1 +uid: NallengK +givenName: Kesley +mail: NallengK@52e746b148db486a82aefd7394487227.bitwarden.com +carLicense: 0SAXUV +departmentNumber: 3925 +employeeType: Employee +homePhone: +1 206 571-7858 +initials: K. N. +mobile: +1 206 483-6524 +pager: +1 206 852-8512 +roomNumber: 8453 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joji Skeoch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joji Skeoch +sn: Skeoch +description: This is Joji Skeoch's description +facsimileTelephoneNumber: +1 206 566-4357 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 140-2288 +title: Associate Management Dictator +userPassword: Password1 +uid: SkeochJ +givenName: Joji +mail: SkeochJ@35f4596c2f6f4d62a06cffe0bc4a52f3.bitwarden.com +carLicense: J135J2 +departmentNumber: 5270 +employeeType: Employee +homePhone: +1 206 390-1616 +initials: J. S. +mobile: +1 206 634-4326 +pager: +1 206 820-6101 +roomNumber: 9711 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gwyn Peerman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwyn Peerman +sn: Peerman +description: This is Gwyn Peerman's description +facsimileTelephoneNumber: +1 818 679-2744 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 818 140-9894 +title: Supreme Management Mascot +userPassword: Password1 +uid: PeermanG +givenName: Gwyn +mail: PeermanG@2ad21f67126841ddab38e6a0de0bbf55.bitwarden.com +carLicense: N9MO5Y +departmentNumber: 3369 +employeeType: Employee +homePhone: +1 818 817-2699 +initials: G. P. +mobile: +1 818 852-4199 +pager: +1 818 904-2179 +roomNumber: 9338 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mila Lodeserto,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mila Lodeserto +sn: Lodeserto +description: This is Mila Lodeserto's description +facsimileTelephoneNumber: +1 510 840-6990 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 148-4213 +title: Associate Administrative Admin +userPassword: Password1 +uid: LodeserM +givenName: Mila +mail: LodeserM@ce606f959aaf4b37a3890f8fbd9f2472.bitwarden.com +carLicense: 5AF9TE +departmentNumber: 2214 +employeeType: Contract +homePhone: +1 510 725-1497 +initials: M. L. +mobile: +1 510 711-5271 +pager: +1 510 555-1533 +roomNumber: 8597 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corinne Honbarrier +sn: Honbarrier +description: This is Corinne Honbarrier's description +facsimileTelephoneNumber: +1 206 469-3241 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 943-3902 +title: Master Human Resources Grunt +userPassword: Password1 +uid: HonbarrC +givenName: Corinne +mail: HonbarrC@1ae32a15eca247e1b1d69b0caaf56b8d.bitwarden.com +carLicense: 9B051K +departmentNumber: 5358 +employeeType: Normal +homePhone: +1 206 834-3209 +initials: C. H. +mobile: +1 206 546-2777 +pager: +1 206 702-1594 +roomNumber: 8688 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bess Ottowa,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bess Ottowa +sn: Ottowa +description: This is Bess Ottowa's description +facsimileTelephoneNumber: +1 408 354-1542 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 853-9249 +title: Chief Administrative Janitor +userPassword: Password1 +uid: OttowaB +givenName: Bess +mail: OttowaB@0036c3527a724e3c9f25f047b6319884.bitwarden.com +carLicense: 7OAL8S +departmentNumber: 9517 +employeeType: Employee +homePhone: +1 408 864-9244 +initials: B. O. +mobile: +1 408 102-5892 +pager: +1 408 642-4324 +roomNumber: 8894 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sieber Churchill,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sieber Churchill +sn: Churchill +description: This is Sieber Churchill's description +facsimileTelephoneNumber: +1 510 513-3455 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 607-6409 +title: Associate Peons Fellow +userPassword: Password1 +uid: ChurchiS +givenName: Sieber +mail: ChurchiS@237c9936996c46d6817a8e3d08c30341.bitwarden.com +carLicense: YQ9A89 +departmentNumber: 6460 +employeeType: Employee +homePhone: +1 510 804-4113 +initials: S. C. +mobile: +1 510 374-4050 +pager: +1 510 916-2434 +roomNumber: 9008 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lyndy Sides,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndy Sides +sn: Sides +description: This is Lyndy Sides's description +facsimileTelephoneNumber: +1 510 967-5301 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 216-5396 +title: Junior Janitorial Artist +userPassword: Password1 +uid: SidesL +givenName: Lyndy +mail: SidesL@7d9cd1f5b4d645a6bff13b745f4db29e.bitwarden.com +carLicense: T7OGOL +departmentNumber: 6066 +employeeType: Normal +homePhone: +1 510 267-2915 +initials: L. S. +mobile: +1 510 219-9391 +pager: +1 510 431-7737 +roomNumber: 9249 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lino Rix,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lino Rix +sn: Rix +description: This is Lino Rix's description +facsimileTelephoneNumber: +1 818 225-9073 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 693-7594 +title: Chief Administrative Vice President +userPassword: Password1 +uid: RixL +givenName: Lino +mail: RixL@700d5dcd52ae4dffafb68bba2826fdd6.bitwarden.com +carLicense: OPDW9C +departmentNumber: 5575 +employeeType: Contract +homePhone: +1 818 417-6195 +initials: L. R. +mobile: +1 818 653-1266 +pager: +1 818 607-2179 +roomNumber: 8914 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Charangit Desplanque,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charangit Desplanque +sn: Desplanque +description: This is Charangit Desplanque's description +facsimileTelephoneNumber: +1 415 836-9222 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 717-7073 +title: Associate Product Development Writer +userPassword: Password1 +uid: DesplanC +givenName: Charangit +mail: DesplanC@777873609ce9463eb7000e930f9c88d2.bitwarden.com +carLicense: 7CI3OR +departmentNumber: 2795 +employeeType: Contract +homePhone: +1 415 570-8587 +initials: C. D. +mobile: +1 415 976-1081 +pager: +1 415 847-8922 +roomNumber: 9086 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KangYuan Recktenwald +sn: Recktenwald +description: This is KangYuan Recktenwald's description +facsimileTelephoneNumber: +1 415 629-6632 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 415 468-1412 +title: Chief Peons Manager +userPassword: Password1 +uid: RecktenK +givenName: KangYuan +mail: RecktenK@4d61ba95f33d443b8b11c381ee1d7607.bitwarden.com +carLicense: 6ABTXI +departmentNumber: 8852 +employeeType: Contract +homePhone: +1 415 560-9376 +initials: K. R. +mobile: +1 415 894-7702 +pager: +1 415 100-9940 +roomNumber: 8540 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Barry Vajentic,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barry Vajentic +sn: Vajentic +description: This is Barry Vajentic's description +facsimileTelephoneNumber: +1 213 318-2707 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 452-9106 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: VajentiB +givenName: Barry +mail: VajentiB@a53843fec33f4a5c95cde2f5b04f1643.bitwarden.com +carLicense: 6IGBSO +departmentNumber: 5658 +employeeType: Contract +homePhone: +1 213 506-4093 +initials: B. V. +mobile: +1 213 534-6596 +pager: +1 213 767-5980 +roomNumber: 9261 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Waiching Morrin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Waiching Morrin +sn: Morrin +description: This is Waiching Morrin's description +facsimileTelephoneNumber: +1 408 729-6046 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 370-7098 +title: Master Management Writer +userPassword: Password1 +uid: MorrinW +givenName: Waiching +mail: MorrinW@6ab835c0621d479dbd805d5189aa2b92.bitwarden.com +carLicense: FXXO4T +departmentNumber: 9289 +employeeType: Contract +homePhone: +1 408 106-7001 +initials: W. M. +mobile: +1 408 409-5172 +pager: +1 408 257-5234 +roomNumber: 9625 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sattar Kane,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sattar Kane +sn: Kane +description: This is Sattar Kane's description +facsimileTelephoneNumber: +1 408 108-4336 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 273-4162 +title: Master Payroll Stooge +userPassword: Password1 +uid: KaneS +givenName: Sattar +mail: KaneS@06573ce095c8443aa9769fdb7129baed.bitwarden.com +carLicense: 6A1LAT +departmentNumber: 3589 +employeeType: Contract +homePhone: +1 408 346-6953 +initials: S. K. +mobile: +1 408 848-3771 +pager: +1 408 230-8485 +roomNumber: 8488 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=YukWha Kielstra,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YukWha Kielstra +sn: Kielstra +description: This is YukWha Kielstra's description +facsimileTelephoneNumber: +1 213 498-8631 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 708-4152 +title: Master Management Dictator +userPassword: Password1 +uid: KielstrY +givenName: YukWha +mail: KielstrY@e8193f804bab49a9ab24a3360e9fb251.bitwarden.com +carLicense: 3WQOKQ +departmentNumber: 9185 +employeeType: Employee +homePhone: +1 213 367-3753 +initials: Y. K. +mobile: +1 213 757-8927 +pager: +1 213 893-2804 +roomNumber: 9985 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sharon Meletios,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharon Meletios +sn: Meletios +description: This is Sharon Meletios's description +facsimileTelephoneNumber: +1 415 879-9793 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 984-2861 +title: Supreme Management Director +userPassword: Password1 +uid: MeletioS +givenName: Sharon +mail: MeletioS@ec1065d4122045119a382b34586180cb.bitwarden.com +carLicense: HE7VGA +departmentNumber: 4595 +employeeType: Employee +homePhone: +1 415 651-1502 +initials: S. M. +mobile: +1 415 479-6858 +pager: +1 415 364-5303 +roomNumber: 8396 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Binni Gaines,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binni Gaines +sn: Gaines +description: This is Binni Gaines's description +facsimileTelephoneNumber: +1 206 425-6074 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 206 731-7472 +title: Chief Janitorial Czar +userPassword: Password1 +uid: GainesB +givenName: Binni +mail: GainesB@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com +carLicense: 63V2DY +departmentNumber: 9255 +employeeType: Employee +homePhone: +1 206 355-4253 +initials: B. G. +mobile: +1 206 203-1142 +pager: +1 206 977-6396 +roomNumber: 8933 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rasla Pagliarulo +sn: Pagliarulo +description: This is Rasla Pagliarulo's description +facsimileTelephoneNumber: +1 804 807-4738 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 539-6590 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: PagliarR +givenName: Rasla +mail: PagliarR@d69ecc02f7cc498a8c0f20edc1735b63.bitwarden.com +carLicense: I2SW6P +departmentNumber: 3876 +employeeType: Contract +homePhone: +1 804 943-2657 +initials: R. P. +mobile: +1 804 122-3164 +pager: +1 804 661-6977 +roomNumber: 9446 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ying Spejewski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ying Spejewski +sn: Spejewski +description: This is Ying Spejewski's description +facsimileTelephoneNumber: +1 510 712-9397 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 386-7411 +title: Chief Payroll Writer +userPassword: Password1 +uid: SpejewsY +givenName: Ying +mail: SpejewsY@15a73f4bf1a344b28ac5394e2a720618.bitwarden.com +carLicense: 2TSUN4 +departmentNumber: 1581 +employeeType: Contract +homePhone: +1 510 933-1605 +initials: Y. S. +mobile: +1 510 660-4300 +pager: +1 510 258-9076 +roomNumber: 8060 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Agnesse Nessman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnesse Nessman +sn: Nessman +description: This is Agnesse Nessman's description +facsimileTelephoneNumber: +1 818 899-9316 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 154-5019 +title: Associate Payroll Vice President +userPassword: Password1 +uid: NessmanA +givenName: Agnesse +mail: NessmanA@20c2d999fe734387b26090f6d88bafe4.bitwarden.com +carLicense: J4BKY0 +departmentNumber: 7038 +employeeType: Contract +homePhone: +1 818 661-5218 +initials: A. N. +mobile: +1 818 712-9431 +pager: +1 818 714-3218 +roomNumber: 9777 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yoda Milne,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoda Milne +sn: Milne +description: This is Yoda Milne's description +facsimileTelephoneNumber: +1 804 827-2786 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 671-7795 +title: Junior Peons Artist +userPassword: Password1 +uid: MilneY +givenName: Yoda +mail: MilneY@29cf82166a6a4ea0989e7e7b62bf4159.bitwarden.com +carLicense: LRWFQ7 +departmentNumber: 4171 +employeeType: Employee +homePhone: +1 804 721-3643 +initials: Y. M. +mobile: +1 804 186-4757 +pager: +1 804 465-3590 +roomNumber: 8423 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marsh McGurn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marsh McGurn +sn: McGurn +description: This is Marsh McGurn's description +facsimileTelephoneNumber: +1 213 735-9987 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 307-8624 +title: Supreme Janitorial Punk +userPassword: Password1 +uid: McGurnM +givenName: Marsh +mail: McGurnM@972828f1932145e2913d23d36d264e73.bitwarden.com +carLicense: OC45B2 +departmentNumber: 1381 +employeeType: Employee +homePhone: +1 213 612-6377 +initials: M. M. +mobile: +1 213 687-2158 +pager: +1 213 105-3772 +roomNumber: 9093 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hilda Baldridge,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilda Baldridge +sn: Baldridge +description: This is Hilda Baldridge's description +facsimileTelephoneNumber: +1 804 686-2162 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 345-7585 +title: Chief Management Warrior +userPassword: Password1 +uid: BaldridH +givenName: Hilda +mail: BaldridH@7e076071c1c04607a96e17ebf129b6b3.bitwarden.com +carLicense: BLIH02 +departmentNumber: 5977 +employeeType: Normal +homePhone: +1 804 359-8760 +initials: H. B. +mobile: +1 804 821-8569 +pager: +1 804 376-5751 +roomNumber: 8687 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Caro Vopalensky,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caro Vopalensky +sn: Vopalensky +description: This is Caro Vopalensky's description +facsimileTelephoneNumber: +1 510 395-7437 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 326-8480 +title: Master Product Development Consultant +userPassword: Password1 +uid: VopalenC +givenName: Caro +mail: VopalenC@a7918ff0fc7e4212984f8187650b768f.bitwarden.com +carLicense: G23X22 +departmentNumber: 8175 +employeeType: Normal +homePhone: +1 510 144-7335 +initials: C. V. +mobile: +1 510 902-7208 +pager: +1 510 852-3278 +roomNumber: 9578 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Buffy Naolu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Buffy Naolu +sn: Naolu +description: This is Buffy Naolu's description +facsimileTelephoneNumber: +1 213 895-7150 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 565-4369 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: NaoluB +givenName: Buffy +mail: NaoluB@0a7d4b9e2dcb482a9d690b9c06f7b141.bitwarden.com +carLicense: YD3UU7 +departmentNumber: 1375 +employeeType: Contract +homePhone: +1 213 298-1727 +initials: B. N. +mobile: +1 213 856-6319 +pager: +1 213 147-9063 +roomNumber: 8696 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Royal Parniani,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Royal Parniani +sn: Parniani +description: This is Royal Parniani's description +facsimileTelephoneNumber: +1 510 733-4516 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 293-5572 +title: Chief Human Resources Visionary +userPassword: Password1 +uid: ParnianR +givenName: Royal +mail: ParnianR@ba55eb721cbf4a0787e4fcebb6c309fa.bitwarden.com +carLicense: IO5SMM +departmentNumber: 8226 +employeeType: Contract +homePhone: +1 510 608-1000 +initials: R. P. +mobile: +1 510 350-8942 +pager: +1 510 462-4402 +roomNumber: 9009 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Materkowski Watkinson +sn: Watkinson +description: This is Materkowski Watkinson's description +facsimileTelephoneNumber: +1 206 226-3045 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 129-1632 +title: Junior Administrative Figurehead +userPassword: Password1 +uid: WatkinsM +givenName: Materkowski +mail: WatkinsM@38d6239d446040c7892f72bde901e5dc.bitwarden.com +carLicense: YKE9G7 +departmentNumber: 6108 +employeeType: Employee +homePhone: +1 206 516-8975 +initials: M. W. +mobile: +1 206 416-5246 +pager: +1 206 567-3735 +roomNumber: 9450 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anthea Eros,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anthea Eros +sn: Eros +description: This is Anthea Eros's description +facsimileTelephoneNumber: +1 206 625-9513 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 714-7244 +title: Chief Administrative Assistant +userPassword: Password1 +uid: ErosA +givenName: Anthea +mail: ErosA@1174f1cfd4db4d4e8122f3cc77544aa8.bitwarden.com +carLicense: APTG80 +departmentNumber: 7481 +employeeType: Employee +homePhone: +1 206 270-1349 +initials: A. E. +mobile: +1 206 875-4186 +pager: +1 206 288-7534 +roomNumber: 8786 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kiele Commazzi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiele Commazzi +sn: Commazzi +description: This is Kiele Commazzi's description +facsimileTelephoneNumber: +1 804 869-4225 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 990-8995 +title: Master Management Architect +userPassword: Password1 +uid: CommazzK +givenName: Kiele +mail: CommazzK@c7c8c5e66a3141e48cf8db523d4db0d0.bitwarden.com +carLicense: 6YW3F5 +departmentNumber: 1924 +employeeType: Normal +homePhone: +1 804 920-7001 +initials: K. C. +mobile: +1 804 886-2303 +pager: +1 804 471-3169 +roomNumber: 8286 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yvan Diaconu,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yvan Diaconu +sn: Diaconu +description: This is Yvan Diaconu's description +facsimileTelephoneNumber: +1 213 891-7959 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 927-2155 +title: Supreme Payroll Figurehead +userPassword: Password1 +uid: DiaconuY +givenName: Yvan +mail: DiaconuY@e9424fab29f84505b243cf3bcaec7fc6.bitwarden.com +carLicense: T9OHV7 +departmentNumber: 3682 +employeeType: Employee +homePhone: +1 213 955-9392 +initials: Y. D. +mobile: +1 213 481-6860 +pager: +1 213 384-2225 +roomNumber: 8489 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kitti Seshadri,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kitti Seshadri +sn: Seshadri +description: This is Kitti Seshadri's description +facsimileTelephoneNumber: +1 510 717-8133 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 748-8935 +title: Chief Payroll Technician +userPassword: Password1 +uid: SeshadrK +givenName: Kitti +mail: SeshadrK@316f28dee96a4927ae60609771465dfa.bitwarden.com +carLicense: 325KJM +departmentNumber: 2200 +employeeType: Contract +homePhone: +1 510 478-8670 +initials: K. S. +mobile: +1 510 728-2711 +pager: +1 510 887-6788 +roomNumber: 8212 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Camala McMillan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camala McMillan +sn: McMillan +description: This is Camala McMillan's description +facsimileTelephoneNumber: +1 804 775-9279 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 343-8672 +title: Junior Administrative Figurehead +userPassword: Password1 +uid: McMillaC +givenName: Camala +mail: McMillaC@fe875cd0e6c64e7b9c0162ab42b3016c.bitwarden.com +carLicense: SRRMS5 +departmentNumber: 6293 +employeeType: Normal +homePhone: +1 804 970-5888 +initials: C. M. +mobile: +1 804 371-8408 +pager: +1 804 149-8178 +roomNumber: 8830 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Asan Postlethwaite +sn: Postlethwaite +description: This is Asan Postlethwaite's description +facsimileTelephoneNumber: +1 804 126-5245 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 620-1634 +title: Junior Product Development Grunt +userPassword: Password1 +uid: PostletA +givenName: Asan +mail: PostletA@03ce2f739a2d423a9acbc734a72262d8.bitwarden.com +carLicense: N3VQ13 +departmentNumber: 4684 +employeeType: Contract +homePhone: +1 804 246-8255 +initials: A. P. +mobile: +1 804 242-4391 +pager: +1 804 846-7545 +roomNumber: 8739 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eamon Salvin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eamon Salvin +sn: Salvin +description: This is Eamon Salvin's description +facsimileTelephoneNumber: +1 804 893-6109 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 316-4030 +title: Associate Management Assistant +userPassword: Password1 +uid: SalvinE +givenName: Eamon +mail: SalvinE@1be6a576815d4ff2aa416eab6c9dd713.bitwarden.com +carLicense: QU34YF +departmentNumber: 3163 +employeeType: Employee +homePhone: +1 804 636-8813 +initials: E. S. +mobile: +1 804 722-6901 +pager: +1 804 775-6197 +roomNumber: 9728 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlyne Recycling +sn: Recycling +description: This is Marlyne Recycling's description +facsimileTelephoneNumber: +1 206 914-9617 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 966-6484 +title: Associate Human Resources Technician +userPassword: Password1 +uid: RecycliM +givenName: Marlyne +mail: RecycliM@fe3592b806204a8188677a7eeb59563a.bitwarden.com +carLicense: 5T4BN8 +departmentNumber: 4381 +employeeType: Contract +homePhone: +1 206 740-7598 +initials: M. R. +mobile: +1 206 306-7301 +pager: +1 206 300-6100 +roomNumber: 9169 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vito Calcote,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vito Calcote +sn: Calcote +description: This is Vito Calcote's description +facsimileTelephoneNumber: +1 408 590-2819 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 945-8330 +title: Master Janitorial Stooge +userPassword: Password1 +uid: CalcoteV +givenName: Vito +mail: CalcoteV@29ddc254020a4d509a3e447f6b0e374a.bitwarden.com +carLicense: OO0GFS +departmentNumber: 7348 +employeeType: Employee +homePhone: +1 408 650-3834 +initials: V. C. +mobile: +1 408 297-6644 +pager: +1 408 886-2100 +roomNumber: 9238 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jannel Demetrick +sn: Demetrick +description: This is Jannel Demetrick's description +facsimileTelephoneNumber: +1 818 447-7802 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 991-1859 +title: Associate Janitorial Technician +userPassword: Password1 +uid: DemetriJ +givenName: Jannel +mail: DemetriJ@d00112b411284f8aa1ae0e17d03d57d0.bitwarden.com +carLicense: T14SC4 +departmentNumber: 3413 +employeeType: Normal +homePhone: +1 818 184-7746 +initials: J. D. +mobile: +1 818 774-3173 +pager: +1 818 406-8509 +roomNumber: 9457 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mandie Kneeshaw,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mandie Kneeshaw +sn: Kneeshaw +description: This is Mandie Kneeshaw's description +facsimileTelephoneNumber: +1 415 834-9851 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 516-6954 +title: Junior Management Technician +userPassword: Password1 +uid: KneeshaM +givenName: Mandie +mail: KneeshaM@d12cf402dbab4ca98b370d7e2c59928b.bitwarden.com +carLicense: BF1EPR +departmentNumber: 6791 +employeeType: Contract +homePhone: +1 415 220-4315 +initials: M. K. +mobile: +1 415 953-1835 +pager: +1 415 212-8932 +roomNumber: 8666 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fiann Fouts,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fiann Fouts +sn: Fouts +description: This is Fiann Fouts's description +facsimileTelephoneNumber: +1 206 234-4236 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 684-7426 +title: Junior Administrative Artist +userPassword: Password1 +uid: FoutsF +givenName: Fiann +mail: FoutsF@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com +carLicense: 6IHKNW +departmentNumber: 5389 +employeeType: Employee +homePhone: +1 206 165-5225 +initials: F. F. +mobile: +1 206 668-9113 +pager: +1 206 318-6491 +roomNumber: 8545 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Patt Ferner,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patt Ferner +sn: Ferner +description: This is Patt Ferner's description +facsimileTelephoneNumber: +1 415 455-7579 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 157-2526 +title: Junior Management Technician +userPassword: Password1 +uid: FernerP +givenName: Patt +mail: FernerP@19620eb428924236b27e614bd4d00de7.bitwarden.com +carLicense: 548HJ9 +departmentNumber: 6467 +employeeType: Employee +homePhone: +1 415 641-8076 +initials: P. F. +mobile: +1 415 998-5722 +pager: +1 415 694-7062 +roomNumber: 9850 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhQuoc Lahey +sn: Lahey +description: This is ThanhQuoc Lahey's description +facsimileTelephoneNumber: +1 206 979-2083 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 798-5602 +title: Master Human Resources Assistant +userPassword: Password1 +uid: LaheyT +givenName: ThanhQuoc +mail: LaheyT@65bf8c21e22d4649a877cbced68034c8.bitwarden.com +carLicense: AL1RFQ +departmentNumber: 9968 +employeeType: Normal +homePhone: +1 206 118-3466 +initials: T. L. +mobile: +1 206 372-7982 +pager: +1 206 459-6509 +roomNumber: 8368 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryellen Wilhelmson +sn: Wilhelmson +description: This is Maryellen Wilhelmson's description +facsimileTelephoneNumber: +1 415 928-2623 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 294-1401 +title: Chief Product Development Dictator +userPassword: Password1 +uid: WilhelmM +givenName: Maryellen +mail: WilhelmM@f29a02eb60f740478f80d3c6d60d0269.bitwarden.com +carLicense: TCH2YC +departmentNumber: 9718 +employeeType: Contract +homePhone: +1 415 850-1963 +initials: M. W. +mobile: +1 415 587-9693 +pager: +1 415 269-8991 +roomNumber: 9754 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Grier Kovarik,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grier Kovarik +sn: Kovarik +description: This is Grier Kovarik's description +facsimileTelephoneNumber: +1 818 483-5690 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 818 176-6362 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: KovarikG +givenName: Grier +mail: KovarikG@50d7c806edce40aba32e1f9a44a2e284.bitwarden.com +carLicense: 8S0032 +departmentNumber: 9745 +employeeType: Contract +homePhone: +1 818 368-2868 +initials: G. K. +mobile: +1 818 824-3295 +pager: +1 818 268-6922 +roomNumber: 9088 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mela MacNeill,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mela MacNeill +sn: MacNeill +description: This is Mela MacNeill's description +facsimileTelephoneNumber: +1 818 239-8225 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 100-1052 +title: Chief Payroll Figurehead +userPassword: Password1 +uid: MacNeilM +givenName: Mela +mail: MacNeilM@5bcf0d060e574c65aeb6507d9efeab58.bitwarden.com +carLicense: 579CTV +departmentNumber: 3495 +employeeType: Employee +homePhone: +1 818 609-9434 +initials: M. M. +mobile: +1 818 382-6298 +pager: +1 818 384-3812 +roomNumber: 8339 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nikkie Sayed +sn: Sayed +description: This is Nikkie Sayed's description +facsimileTelephoneNumber: +1 408 888-5386 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 609-4557 +title: Chief Janitorial Sales Rep +userPassword: Password1 +uid: SayedN +givenName: Nikkie +mail: SayedN@d29cf4b9df4246ba980a85b6744ad20d.bitwarden.com +carLicense: QSV9GY +departmentNumber: 5651 +employeeType: Normal +homePhone: +1 408 949-9612 +initials: N. S. +mobile: +1 408 854-1178 +pager: +1 408 334-8931 +roomNumber: 8047 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Akram Rajwani,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akram Rajwani +sn: Rajwani +description: This is Akram Rajwani's description +facsimileTelephoneNumber: +1 408 712-3400 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 908-5755 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: RajwaniA +givenName: Akram +mail: RajwaniA@6114ed5b2ab14d15895d683682929e6e.bitwarden.com +carLicense: L6NCAX +departmentNumber: 9450 +employeeType: Normal +homePhone: +1 408 835-2059 +initials: A. R. +mobile: +1 408 433-9609 +pager: +1 408 189-2670 +roomNumber: 8330 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lendon Valin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lendon Valin +sn: Valin +description: This is Lendon Valin's description +facsimileTelephoneNumber: +1 415 671-6111 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 675-4273 +title: Junior Administrative Dictator +userPassword: Password1 +uid: ValinL +givenName: Lendon +mail: ValinL@923baf1ba66c43ddab40764da6c9cc33.bitwarden.com +carLicense: EI18K6 +departmentNumber: 8727 +employeeType: Contract +homePhone: +1 415 320-1418 +initials: L. V. +mobile: +1 415 875-1153 +pager: +1 415 607-6621 +roomNumber: 8799 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ikram Taylor,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ikram Taylor +sn: Taylor +description: This is Ikram Taylor's description +facsimileTelephoneNumber: +1 804 720-3087 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 984-6827 +title: Junior Payroll President +userPassword: Password1 +uid: TaylorI +givenName: Ikram +mail: TaylorI@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com +carLicense: JQ0DAV +departmentNumber: 4086 +employeeType: Employee +homePhone: +1 804 406-1197 +initials: I. T. +mobile: +1 804 649-8935 +pager: +1 804 979-2738 +roomNumber: 9331 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gert Grassmann,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gert Grassmann +sn: Grassmann +description: This is Gert Grassmann's description +facsimileTelephoneNumber: +1 206 573-5240 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 901-1684 +title: Junior Payroll Stooge +userPassword: Password1 +uid: GrassmaG +givenName: Gert +mail: GrassmaG@7388d6407a304050b7d1b21890b91ab6.bitwarden.com +carLicense: 6N1H4I +departmentNumber: 8380 +employeeType: Employee +homePhone: +1 206 422-8483 +initials: G. G. +mobile: +1 206 400-8798 +pager: +1 206 499-8790 +roomNumber: 8392 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Oksana Dorn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oksana Dorn +sn: Dorn +description: This is Oksana Dorn's description +facsimileTelephoneNumber: +1 415 535-5770 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 892-5041 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: DornO +givenName: Oksana +mail: DornO@bea0ce9c6190426d94993a855ef6515e.bitwarden.com +carLicense: PL0E86 +departmentNumber: 7679 +employeeType: Contract +homePhone: +1 415 139-1187 +initials: O. D. +mobile: +1 415 396-3567 +pager: +1 415 437-2723 +roomNumber: 9223 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karleen McKinley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karleen McKinley +sn: McKinley +description: This is Karleen McKinley's description +facsimileTelephoneNumber: +1 408 892-1194 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 415-1050 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: McKinleK +givenName: Karleen +mail: McKinleK@58351331fe224df1be3d4a98ae5bb106.bitwarden.com +carLicense: UXQGH5 +departmentNumber: 3969 +employeeType: Employee +homePhone: +1 408 601-2124 +initials: K. M. +mobile: +1 408 916-3417 +pager: +1 408 193-5772 +roomNumber: 8173 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Helmut Sigda,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helmut Sigda +sn: Sigda +description: This is Helmut Sigda's description +facsimileTelephoneNumber: +1 818 235-3464 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 540-7302 +title: Master Payroll Pinhead +userPassword: Password1 +uid: SigdaH +givenName: Helmut +mail: SigdaH@c53d26d2599d4e87839d1fcfc46deed3.bitwarden.com +carLicense: Q9EYQB +departmentNumber: 8878 +employeeType: Employee +homePhone: +1 818 257-6522 +initials: H. S. +mobile: +1 818 668-5884 +pager: +1 818 466-2969 +roomNumber: 8409 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Grover Au,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grover Au +sn: Au +description: This is Grover Au's description +facsimileTelephoneNumber: +1 206 614-4812 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 658-4493 +title: Supreme Product Testing Sales Rep +userPassword: Password1 +uid: AuG +givenName: Grover +mail: AuG@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com +carLicense: 3XSB8E +departmentNumber: 4994 +employeeType: Employee +homePhone: +1 206 955-1948 +initials: G. A. +mobile: +1 206 190-5302 +pager: +1 206 199-3185 +roomNumber: 8566 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Barb Ricketts,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barb Ricketts +sn: Ricketts +description: This is Barb Ricketts's description +facsimileTelephoneNumber: +1 408 425-7884 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 777-7567 +title: Associate Product Development Grunt +userPassword: Password1 +uid: RickettB +givenName: Barb +mail: RickettB@09d4226229cf4675bcb5278420d93bf0.bitwarden.com +carLicense: 5U23EE +departmentNumber: 6956 +employeeType: Normal +homePhone: +1 408 531-3329 +initials: B. R. +mobile: +1 408 383-4293 +pager: +1 408 753-1779 +roomNumber: 9635 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carina Akens,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carina Akens +sn: Akens +description: This is Carina Akens's description +facsimileTelephoneNumber: +1 510 467-4578 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 317-9131 +title: Junior Product Development Assistant +userPassword: Password1 +uid: AkensC +givenName: Carina +mail: AkensC@83d9635a552e4683a0d35cd1ae21b9aa.bitwarden.com +carLicense: MO1GVO +departmentNumber: 2402 +employeeType: Normal +homePhone: +1 510 577-4473 +initials: C. A. +mobile: +1 510 508-9130 +pager: +1 510 410-6669 +roomNumber: 8596 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Beilul Scheduling,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beilul Scheduling +sn: Scheduling +description: This is Beilul Scheduling's description +facsimileTelephoneNumber: +1 213 825-9031 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 772-3082 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: SchedulB +givenName: Beilul +mail: SchedulB@7560ab97b391438ca52c6e67c62ba90e.bitwarden.com +carLicense: BKN3NY +departmentNumber: 6400 +employeeType: Employee +homePhone: +1 213 265-1542 +initials: B. S. +mobile: +1 213 478-6762 +pager: +1 213 568-7074 +roomNumber: 9840 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kitson Nelon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kitson Nelon +sn: Nelon +description: This is Kitson Nelon's description +facsimileTelephoneNumber: +1 206 933-2619 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 502-6518 +title: Master Janitorial Stooge +userPassword: Password1 +uid: NelonK +givenName: Kitson +mail: NelonK@e96c9cff7aa94cde9b663e22d2426c28.bitwarden.com +carLicense: MCW3KI +departmentNumber: 6153 +employeeType: Employee +homePhone: +1 206 296-5450 +initials: K. N. +mobile: +1 206 557-8028 +pager: +1 206 100-6361 +roomNumber: 8691 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Daphna Ragde,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphna Ragde +sn: Ragde +description: This is Daphna Ragde's description +facsimileTelephoneNumber: +1 415 908-1775 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 858-2176 +title: Master Product Testing Grunt +userPassword: Password1 +uid: RagdeD +givenName: Daphna +mail: RagdeD@86b49aff19c241bd88b57af5d6c58aeb.bitwarden.com +carLicense: SGWFIU +departmentNumber: 3056 +employeeType: Employee +homePhone: +1 415 169-8290 +initials: D. R. +mobile: +1 415 186-9844 +pager: +1 415 103-2316 +roomNumber: 8073 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Paulina Early,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulina Early +sn: Early +description: This is Paulina Early's description +facsimileTelephoneNumber: +1 804 706-1436 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 658-6713 +title: Associate Administrative Pinhead +userPassword: Password1 +uid: EarlyP +givenName: Paulina +mail: EarlyP@ee2b03b1182d458c89ed3ab0221f6486.bitwarden.com +carLicense: 6MRGPT +departmentNumber: 8836 +employeeType: Normal +homePhone: +1 804 366-2687 +initials: P. E. +mobile: +1 804 383-3471 +pager: +1 804 585-2741 +roomNumber: 9228 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Abbie Jamshidi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abbie Jamshidi +sn: Jamshidi +description: This is Abbie Jamshidi's description +facsimileTelephoneNumber: +1 408 455-3412 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 541-1892 +title: Master Management Technician +userPassword: Password1 +uid: JamshidA +givenName: Abbie +mail: JamshidA@197532fdf2a14d7985433ec8c05668f9.bitwarden.com +carLicense: SDRWFJ +departmentNumber: 5643 +employeeType: Normal +homePhone: +1 408 109-5203 +initials: A. J. +mobile: +1 408 888-5368 +pager: +1 408 467-8838 +roomNumber: 9141 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Quynh Lorenc,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quynh Lorenc +sn: Lorenc +description: This is Quynh Lorenc's description +facsimileTelephoneNumber: +1 213 642-4931 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 761-2883 +title: Supreme Administrative Pinhead +userPassword: Password1 +uid: LorencQ +givenName: Quynh +mail: LorencQ@318df10c24464190a253b688eda7b7e6.bitwarden.com +carLicense: E4X7FB +departmentNumber: 1913 +employeeType: Employee +homePhone: +1 213 490-4741 +initials: Q. L. +mobile: +1 213 560-7704 +pager: +1 213 821-9543 +roomNumber: 9257 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kelwin Popadick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelwin Popadick +sn: Popadick +description: This is Kelwin Popadick's description +facsimileTelephoneNumber: +1 510 213-8219 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 428-5490 +title: Master Payroll Evangelist +userPassword: Password1 +uid: PopadicK +givenName: Kelwin +mail: PopadicK@bee273104901438cb51bc052b7b27c15.bitwarden.com +carLicense: 9VO7IK +departmentNumber: 3891 +employeeType: Employee +homePhone: +1 510 139-6735 +initials: K. P. +mobile: +1 510 123-1091 +pager: +1 510 189-3954 +roomNumber: 8662 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fitness Pape,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fitness Pape +sn: Pape +description: This is Fitness Pape's description +facsimileTelephoneNumber: +1 408 995-8299 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 352-5182 +title: Chief Management Technician +userPassword: Password1 +uid: PapeF +givenName: Fitness +mail: PapeF@2f2d085d4c3a4ad69f1b90ad6c4efe7a.bitwarden.com +carLicense: X1W7A3 +departmentNumber: 9082 +employeeType: Normal +homePhone: +1 408 204-2588 +initials: F. P. +mobile: +1 408 720-5515 +pager: +1 408 975-4020 +roomNumber: 9602 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dion Chiou,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dion Chiou +sn: Chiou +description: This is Dion Chiou's description +facsimileTelephoneNumber: +1 415 461-5825 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 415 211-3047 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: ChiouD +givenName: Dion +mail: ChiouD@0cd77054f0d24017b2619d6dacb27d84.bitwarden.com +carLicense: J9LML7 +departmentNumber: 2282 +employeeType: Normal +homePhone: +1 415 837-3111 +initials: D. C. +mobile: +1 415 940-4337 +pager: +1 415 666-2229 +roomNumber: 8039 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mayasandra Naor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mayasandra Naor +sn: Naor +description: This is Mayasandra Naor's description +facsimileTelephoneNumber: +1 206 359-8955 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 106-8581 +title: Supreme Management Technician +userPassword: Password1 +uid: NaorM +givenName: Mayasandra +mail: NaorM@4615d434564642a8bf9c9dbf63a45e29.bitwarden.com +carLicense: MB21K1 +departmentNumber: 7592 +employeeType: Employee +homePhone: +1 206 420-6642 +initials: M. N. +mobile: +1 206 284-3899 +pager: +1 206 487-8111 +roomNumber: 9577 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leddy Hitchcock +sn: Hitchcock +description: This is Leddy Hitchcock's description +facsimileTelephoneNumber: +1 804 712-9983 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 565-9711 +title: Associate Payroll Assistant +userPassword: Password1 +uid: HitchcoL +givenName: Leddy +mail: HitchcoL@56c31fbd3abf4ba89644df8f50b7055a.bitwarden.com +carLicense: A93LCO +departmentNumber: 2911 +employeeType: Normal +homePhone: +1 804 473-8704 +initials: L. H. +mobile: +1 804 860-6128 +pager: +1 804 625-1825 +roomNumber: 8916 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lauri Deligdisch +sn: Deligdisch +description: This is Lauri Deligdisch's description +facsimileTelephoneNumber: +1 804 469-8366 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 987-1961 +title: Master Human Resources Manager +userPassword: Password1 +uid: DeligdiL +givenName: Lauri +mail: DeligdiL@cf1207413cd7406ea5d1023535e380a4.bitwarden.com +carLicense: U1VE7K +departmentNumber: 9352 +employeeType: Normal +homePhone: +1 804 421-9470 +initials: L. D. +mobile: +1 804 946-7544 +pager: +1 804 985-2373 +roomNumber: 9226 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vince Soulliere,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vince Soulliere +sn: Soulliere +description: This is Vince Soulliere's description +facsimileTelephoneNumber: +1 415 978-9165 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 673-4315 +title: Master Janitorial Admin +userPassword: Password1 +uid: SoullieV +givenName: Vince +mail: SoullieV@da92b528ad714b68bb8622f4f41299c4.bitwarden.com +carLicense: IPFYGP +departmentNumber: 3000 +employeeType: Contract +homePhone: +1 415 889-1338 +initials: V. S. +mobile: +1 415 644-7063 +pager: +1 415 256-2655 +roomNumber: 8916 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kasey Turney,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kasey Turney +sn: Turney +description: This is Kasey Turney's description +facsimileTelephoneNumber: +1 510 206-1782 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 506-2393 +title: Chief Management Assistant +userPassword: Password1 +uid: TurneyK +givenName: Kasey +mail: TurneyK@3247d9930d174deba0cf4cead8361088.bitwarden.com +carLicense: LAERWO +departmentNumber: 8199 +employeeType: Contract +homePhone: +1 510 554-5079 +initials: K. T. +mobile: +1 510 863-4066 +pager: +1 510 736-2697 +roomNumber: 9035 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zonda Amato,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zonda Amato +sn: Amato +description: This is Zonda Amato's description +facsimileTelephoneNumber: +1 408 108-1719 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 352-6642 +title: Junior Human Resources Artist +userPassword: Password1 +uid: AmatoZ +givenName: Zonda +mail: AmatoZ@3b9a242739aa4b0aa6818d262f7df54b.bitwarden.com +carLicense: CM7TVX +departmentNumber: 2367 +employeeType: Contract +homePhone: +1 408 131-9154 +initials: Z. A. +mobile: +1 408 977-7734 +pager: +1 408 872-2322 +roomNumber: 9865 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eleanore Bertini,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eleanore Bertini +sn: Bertini +description: This is Eleanore Bertini's description +facsimileTelephoneNumber: +1 804 588-5300 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 982-6921 +title: Supreme Payroll Grunt +userPassword: Password1 +uid: BertiniE +givenName: Eleanore +mail: BertiniE@a6096cd0d9c54e7cb57ad3b57e445595.bitwarden.com +carLicense: 3VXX7V +departmentNumber: 7924 +employeeType: Employee +homePhone: +1 804 689-4239 +initials: E. B. +mobile: +1 804 582-1107 +pager: +1 804 643-6622 +roomNumber: 8806 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Georgetta Schreiber,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgetta Schreiber +sn: Schreiber +description: This is Georgetta Schreiber's description +facsimileTelephoneNumber: +1 415 784-5545 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 174-9503 +title: Junior Peons Sales Rep +userPassword: Password1 +uid: SchreibG +givenName: Georgetta +mail: SchreibG@0b30f746872444eb8267bbdcdf9f26b0.bitwarden.com +carLicense: JYC6I4 +departmentNumber: 4080 +employeeType: Contract +homePhone: +1 415 696-8632 +initials: G. S. +mobile: +1 415 696-9094 +pager: +1 415 628-7200 +roomNumber: 8483 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kalai Seatter,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalai Seatter +sn: Seatter +description: This is Kalai Seatter's description +facsimileTelephoneNumber: +1 206 283-4870 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 442-2301 +title: Master Peons Fellow +userPassword: Password1 +uid: SeatterK +givenName: Kalai +mail: SeatterK@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com +carLicense: NR939M +departmentNumber: 2450 +employeeType: Employee +homePhone: +1 206 768-2798 +initials: K. S. +mobile: +1 206 971-8300 +pager: +1 206 949-3101 +roomNumber: 8354 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Susie Moffett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susie Moffett +sn: Moffett +description: This is Susie Moffett's description +facsimileTelephoneNumber: +1 510 758-5079 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 146-2946 +title: Chief Product Development President +userPassword: Password1 +uid: MoffettS +givenName: Susie +mail: MoffettS@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com +carLicense: I42S04 +departmentNumber: 6071 +employeeType: Normal +homePhone: +1 510 325-3227 +initials: S. M. +mobile: +1 510 525-9079 +pager: +1 510 373-5911 +roomNumber: 9613 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariejeanne Mielke +sn: Mielke +description: This is Mariejeanne Mielke's description +facsimileTelephoneNumber: +1 213 663-6489 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 158-9436 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: MielkeM +givenName: Mariejeanne +mail: MielkeM@cf607f514ea94d249d7d25105dbb0762.bitwarden.com +carLicense: EXRHNH +departmentNumber: 4059 +employeeType: Contract +homePhone: +1 213 240-7860 +initials: M. M. +mobile: +1 213 732-2274 +pager: +1 213 774-7232 +roomNumber: 8311 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Garnet Vieregge,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Garnet Vieregge +sn: Vieregge +description: This is Garnet Vieregge's description +facsimileTelephoneNumber: +1 415 358-7237 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 339-7739 +title: Associate Peons Grunt +userPassword: Password1 +uid: ViereggG +givenName: Garnet +mail: ViereggG@93dd838ca8d949aca268d37f8c816502.bitwarden.com +carLicense: 5HQ3YH +departmentNumber: 5270 +employeeType: Normal +homePhone: +1 415 395-9781 +initials: G. V. +mobile: +1 415 585-8226 +pager: +1 415 547-1351 +roomNumber: 9900 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agneta Ninetyone +sn: Ninetyone +description: This is Agneta Ninetyone's description +facsimileTelephoneNumber: +1 415 765-2147 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 415 226-2677 +title: Chief Product Development President +userPassword: Password1 +uid: NinetyoA +givenName: Agneta +mail: NinetyoA@de6663da581c4c5286224c9b59be979f.bitwarden.com +carLicense: DWPBF9 +departmentNumber: 5264 +employeeType: Employee +homePhone: +1 415 690-8561 +initials: A. N. +mobile: +1 415 625-7027 +pager: +1 415 704-8482 +roomNumber: 8291 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Majid Liao,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Majid Liao +sn: Liao +description: This is Majid Liao's description +facsimileTelephoneNumber: +1 213 357-9088 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 298-1045 +title: Supreme Payroll Mascot +userPassword: Password1 +uid: LiaoM +givenName: Majid +mail: LiaoM@ab64d8db9da04b27bba1bfcb5bef47a6.bitwarden.com +carLicense: AF558C +departmentNumber: 3689 +employeeType: Employee +homePhone: +1 213 133-7602 +initials: M. L. +mobile: +1 213 298-8992 +pager: +1 213 365-3997 +roomNumber: 8047 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Abdallah Lobello,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abdallah Lobello +sn: Lobello +description: This is Abdallah Lobello's description +facsimileTelephoneNumber: +1 510 859-3272 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 148-4459 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: LobelloA +givenName: Abdallah +mail: LobelloA@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com +carLicense: AVEKBW +departmentNumber: 9692 +employeeType: Contract +homePhone: +1 510 346-4616 +initials: A. L. +mobile: +1 510 153-5052 +pager: +1 510 130-1472 +roomNumber: 8825 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Felecia Bnrecad,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felecia Bnrecad +sn: Bnrecad +description: This is Felecia Bnrecad's description +facsimileTelephoneNumber: +1 510 162-7609 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 802-7885 +title: Junior Peons Architect +userPassword: Password1 +uid: BnrecadF +givenName: Felecia +mail: BnrecadF@1cd5de40e5ac4cd695f9ff5aee94931d.bitwarden.com +carLicense: 7A4UCR +departmentNumber: 2575 +employeeType: Employee +homePhone: +1 510 289-3161 +initials: F. B. +mobile: +1 510 817-1248 +pager: +1 510 187-9064 +roomNumber: 9937 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Waja Eteminan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Waja Eteminan +sn: Eteminan +description: This is Waja Eteminan's description +facsimileTelephoneNumber: +1 213 966-5592 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 726-4591 +title: Master Human Resources Visionary +userPassword: Password1 +uid: EteminaW +givenName: Waja +mail: EteminaW@3b02e13d586c4243a74a50de88d81685.bitwarden.com +carLicense: 47HXGF +departmentNumber: 6206 +employeeType: Contract +homePhone: +1 213 668-9445 +initials: W. E. +mobile: +1 213 455-6021 +pager: +1 213 104-7732 +roomNumber: 8715 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lorrel Piercy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorrel Piercy +sn: Piercy +description: This is Lorrel Piercy's description +facsimileTelephoneNumber: +1 206 804-9291 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 201-4641 +title: Chief Product Development Janitor +userPassword: Password1 +uid: PiercyL +givenName: Lorrel +mail: PiercyL@5d9c2ba556874386a8e9edd75b2b2e09.bitwarden.com +carLicense: 5MAPIO +departmentNumber: 9484 +employeeType: Contract +homePhone: +1 206 420-4132 +initials: L. P. +mobile: +1 206 840-9668 +pager: +1 206 505-3825 +roomNumber: 8966 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pris Bobar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pris Bobar +sn: Bobar +description: This is Pris Bobar's description +facsimileTelephoneNumber: +1 415 681-2417 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 104-6994 +title: Master Janitorial Developer +userPassword: Password1 +uid: BobarP +givenName: Pris +mail: BobarP@a003e42ed50b459eb9c3a71f6a23c973.bitwarden.com +carLicense: LWNXRF +departmentNumber: 2186 +employeeType: Contract +homePhone: +1 415 746-8751 +initials: P. B. +mobile: +1 415 268-2911 +pager: +1 415 699-3719 +roomNumber: 8908 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Albertine Karass,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Albertine Karass +sn: Karass +description: This is Albertine Karass's description +facsimileTelephoneNumber: +1 818 437-1720 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 818 304-1063 +title: Master Payroll Developer +userPassword: Password1 +uid: KarassA +givenName: Albertine +mail: KarassA@7c2121c8588b42078879768992a11293.bitwarden.com +carLicense: IRYN31 +departmentNumber: 3961 +employeeType: Employee +homePhone: +1 818 194-2246 +initials: A. K. +mobile: +1 818 412-6560 +pager: +1 818 903-3146 +roomNumber: 9864 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Saskia Koskie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saskia Koskie +sn: Koskie +description: This is Saskia Koskie's description +facsimileTelephoneNumber: +1 804 411-2881 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 742-1134 +title: Junior Peons Fellow +userPassword: Password1 +uid: KoskieS +givenName: Saskia +mail: KoskieS@7920c9493dd44267bf71116a85f298e1.bitwarden.com +carLicense: UW315W +departmentNumber: 7561 +employeeType: Contract +homePhone: +1 804 992-7505 +initials: S. K. +mobile: +1 804 122-8117 +pager: +1 804 680-1488 +roomNumber: 8441 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Adda Paddon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adda Paddon +sn: Paddon +description: This is Adda Paddon's description +facsimileTelephoneNumber: +1 206 929-5828 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 364-5477 +title: Supreme Management Pinhead +userPassword: Password1 +uid: PaddonA +givenName: Adda +mail: PaddonA@abbddb7343124812b34ca376c77e32cf.bitwarden.com +carLicense: 449SKH +departmentNumber: 8486 +employeeType: Normal +homePhone: +1 206 381-2514 +initials: A. P. +mobile: +1 206 241-5036 +pager: +1 206 851-6665 +roomNumber: 8061 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Normand Tay,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Normand Tay +sn: Tay +description: This is Normand Tay's description +facsimileTelephoneNumber: +1 804 199-3060 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 990-1301 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: TayN +givenName: Normand +mail: TayN@238696ade728438aa3391299a0dc9901.bitwarden.com +carLicense: 1WEDLB +departmentNumber: 3899 +employeeType: Normal +homePhone: +1 804 940-6355 +initials: N. T. +mobile: +1 804 710-9472 +pager: +1 804 937-3961 +roomNumber: 9080 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzann Wolowidnyk +sn: Wolowidnyk +description: This is Suzann Wolowidnyk's description +facsimileTelephoneNumber: +1 804 278-7784 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 972-3780 +title: Chief Payroll Engineer +userPassword: Password1 +uid: WolowidS +givenName: Suzann +mail: WolowidS@42f6c709ced54560a282482057eafc53.bitwarden.com +carLicense: UGOBL2 +departmentNumber: 4562 +employeeType: Employee +homePhone: +1 804 918-2443 +initials: S. W. +mobile: +1 804 344-1655 +pager: +1 804 425-8607 +roomNumber: 8682 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dixie Yuhanna +sn: Yuhanna +description: This is Dixie Yuhanna's description +facsimileTelephoneNumber: +1 213 689-5155 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 213 674-1252 +title: Junior Product Development Dictator +userPassword: Password1 +uid: YuhannaD +givenName: Dixie +mail: YuhannaD@fb80550ae6b245dcb9c2cdf7ac12567e.bitwarden.com +carLicense: D6NQXU +departmentNumber: 8408 +employeeType: Employee +homePhone: +1 213 489-7028 +initials: D. Y. +mobile: +1 213 317-3425 +pager: +1 213 743-1582 +roomNumber: 9709 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ardene Hofstede,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardene Hofstede +sn: Hofstede +description: This is Ardene Hofstede's description +facsimileTelephoneNumber: +1 408 422-9070 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 500-9474 +title: Chief Product Development Artist +userPassword: Password1 +uid: HofstedA +givenName: Ardene +mail: HofstedA@52e746b148db486a82aefd7394487227.bitwarden.com +carLicense: E6KK6F +departmentNumber: 2818 +employeeType: Employee +homePhone: +1 408 514-3538 +initials: A. H. +mobile: +1 408 128-9937 +pager: +1 408 797-2197 +roomNumber: 8340 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Panos Wessell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Panos Wessell +sn: Wessell +description: This is Panos Wessell's description +facsimileTelephoneNumber: +1 408 903-8469 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 344-9927 +title: Master Payroll Mascot +userPassword: Password1 +uid: WessellP +givenName: Panos +mail: WessellP@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com +carLicense: D7L01X +departmentNumber: 5314 +employeeType: Employee +homePhone: +1 408 306-8077 +initials: P. W. +mobile: +1 408 265-4338 +pager: +1 408 338-9869 +roomNumber: 8530 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alanah Ananmalay +sn: Ananmalay +description: This is Alanah Ananmalay's description +facsimileTelephoneNumber: +1 213 850-6657 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 213 573-2252 +title: Junior Product Testing Figurehead +userPassword: Password1 +uid: AnanmalA +givenName: Alanah +mail: AnanmalA@83071766c35b4f64b633c2228d274ed7.bitwarden.com +carLicense: N8LW45 +departmentNumber: 2570 +employeeType: Employee +homePhone: +1 213 759-2685 +initials: A. A. +mobile: +1 213 275-5285 +pager: +1 213 368-8480 +roomNumber: 9367 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carolan Kamerson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolan Kamerson +sn: Kamerson +description: This is Carolan Kamerson's description +facsimileTelephoneNumber: +1 510 262-3342 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 583-3116 +title: Chief Management Mascot +userPassword: Password1 +uid: KamersoC +givenName: Carolan +mail: KamersoC@cc743470ff7d424999d3c3aceed5aa98.bitwarden.com +carLicense: MIK5VQ +departmentNumber: 2187 +employeeType: Normal +homePhone: +1 510 343-3813 +initials: C. K. +mobile: +1 510 782-8516 +pager: +1 510 690-8201 +roomNumber: 8295 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Stew Doan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stew Doan +sn: Doan +description: This is Stew Doan's description +facsimileTelephoneNumber: +1 408 663-6124 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 176-6067 +title: Master Peons Janitor +userPassword: Password1 +uid: DoanS +givenName: Stew +mail: DoanS@0ea39720ccd849b98e8f01497c06b283.bitwarden.com +carLicense: 1L6ER5 +departmentNumber: 5393 +employeeType: Normal +homePhone: +1 408 160-6836 +initials: S. D. +mobile: +1 408 288-5663 +pager: +1 408 882-9497 +roomNumber: 9723 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tap Moreau,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tap Moreau +sn: Moreau +description: This is Tap Moreau's description +facsimileTelephoneNumber: +1 818 316-9021 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 282-5702 +title: Junior Product Development Figurehead +userPassword: Password1 +uid: MoreauT +givenName: Tap +mail: MoreauT@518d5688f4c94956a0b481cd83e3e460.bitwarden.com +carLicense: 0GW3DJ +departmentNumber: 5297 +employeeType: Normal +homePhone: +1 818 636-7802 +initials: T. M. +mobile: +1 818 541-8187 +pager: +1 818 464-4711 +roomNumber: 8423 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Irena Pimiskern +sn: Pimiskern +description: This is Irena Pimiskern's description +facsimileTelephoneNumber: +1 415 189-5629 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 201-2061 +title: Junior Product Testing Madonna +userPassword: Password1 +uid: PimiskeI +givenName: Irena +mail: PimiskeI@51a4413e49e7448782016bff6d71f8fb.bitwarden.com +carLicense: 6JXK26 +departmentNumber: 2929 +employeeType: Normal +homePhone: +1 415 128-6827 +initials: I. P. +mobile: +1 415 311-8506 +pager: +1 415 978-1841 +roomNumber: 8898 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheilah Tiberghien +sn: Tiberghien +description: This is Sheilah Tiberghien's description +facsimileTelephoneNumber: +1 206 780-2802 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 872-6451 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: TiberghS +givenName: Sheilah +mail: TiberghS@d34dd7c3a21b4320a472b183ccccd155.bitwarden.com +carLicense: DXRSX6 +departmentNumber: 9516 +employeeType: Employee +homePhone: +1 206 948-3788 +initials: S. T. +mobile: +1 206 542-9589 +pager: +1 206 151-1535 +roomNumber: 8430 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Peg Alcott,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peg Alcott +sn: Alcott +description: This is Peg Alcott's description +facsimileTelephoneNumber: +1 415 179-5668 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 457-6770 +title: Associate Product Development Sales Rep +userPassword: Password1 +uid: AlcottP +givenName: Peg +mail: AlcottP@911bea6fd5eb467e8bf6c3f29ab2f42b.bitwarden.com +carLicense: 3H6SN0 +departmentNumber: 2244 +employeeType: Employee +homePhone: +1 415 903-4851 +initials: P. A. +mobile: +1 415 110-2801 +pager: +1 415 370-4503 +roomNumber: 9477 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Henrika Mihm,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henrika Mihm +sn: Mihm +description: This is Henrika Mihm's description +facsimileTelephoneNumber: +1 213 531-6040 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 213 118-3802 +title: Associate Product Testing Evangelist +userPassword: Password1 +uid: MihmH +givenName: Henrika +mail: MihmH@93c66893cda74239a9a56d1199a44457.bitwarden.com +carLicense: U1OV7H +departmentNumber: 2146 +employeeType: Employee +homePhone: +1 213 802-7436 +initials: H. M. +mobile: +1 213 844-3158 +pager: +1 213 591-9594 +roomNumber: 9070 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Count Watts,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Count Watts +sn: Watts +description: This is Count Watts's description +facsimileTelephoneNumber: +1 415 863-6412 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 499-4121 +title: Master Product Development Dictator +userPassword: Password1 +uid: WattsC +givenName: Count +mail: WattsC@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com +carLicense: M9YTXF +departmentNumber: 1785 +employeeType: Normal +homePhone: +1 415 710-4699 +initials: C. W. +mobile: +1 415 397-4641 +pager: +1 415 102-9116 +roomNumber: 9387 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lesly Engman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lesly Engman +sn: Engman +description: This is Lesly Engman's description +facsimileTelephoneNumber: +1 206 401-8098 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 228-1435 +title: Master Administrative Grunt +userPassword: Password1 +uid: EngmanL +givenName: Lesly +mail: EngmanL@aa1e8f7905ad4306b9351c481bfc8797.bitwarden.com +carLicense: DSVLIB +departmentNumber: 6277 +employeeType: Employee +homePhone: +1 206 571-6264 +initials: L. E. +mobile: +1 206 200-5094 +pager: +1 206 783-4148 +roomNumber: 9601 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalina Patwardhan +sn: Patwardhan +description: This is Kalina Patwardhan's description +facsimileTelephoneNumber: +1 206 279-5732 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 233-8939 +title: Associate Administrative Assistant +userPassword: Password1 +uid: PatwardK +givenName: Kalina +mail: PatwardK@06731df963584f3ca191849b64eabf87.bitwarden.com +carLicense: F46NIT +departmentNumber: 9226 +employeeType: Employee +homePhone: +1 206 855-3574 +initials: K. P. +mobile: +1 206 482-9499 +pager: +1 206 290-1995 +roomNumber: 8964 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Txp Calmejane,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Txp Calmejane +sn: Calmejane +description: This is Txp Calmejane's description +facsimileTelephoneNumber: +1 804 728-1725 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 368-6941 +title: Master Human Resources Director +userPassword: Password1 +uid: CalmejaT +givenName: Txp +mail: CalmejaT@721925c092ab4630a360f318924bd972.bitwarden.com +carLicense: T9YHTL +departmentNumber: 8135 +employeeType: Employee +homePhone: +1 804 813-6720 +initials: T. C. +mobile: +1 804 783-5486 +pager: +1 804 152-9772 +roomNumber: 8911 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorry Constantinides +sn: Constantinides +description: This is Lorry Constantinides's description +facsimileTelephoneNumber: +1 804 981-4883 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 394-9986 +title: Master Human Resources Mascot +userPassword: Password1 +uid: ConstanL +givenName: Lorry +mail: ConstanL@46fc9003cc604a8a9449c2533498fb92.bitwarden.com +carLicense: ALB4TQ +departmentNumber: 7595 +employeeType: Contract +homePhone: +1 804 554-7270 +initials: L. C. +mobile: +1 804 901-5285 +pager: +1 804 125-6961 +roomNumber: 9160 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aurore Hubers,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurore Hubers +sn: Hubers +description: This is Aurore Hubers's description +facsimileTelephoneNumber: +1 510 967-6387 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 532-3334 +title: Supreme Human Resources Pinhead +userPassword: Password1 +uid: HubersA +givenName: Aurore +mail: HubersA@f16cc86c487d4fe7b6b007e41eade44a.bitwarden.com +carLicense: EO6HO7 +departmentNumber: 9123 +employeeType: Employee +homePhone: +1 510 210-7473 +initials: A. H. +mobile: +1 510 379-8541 +pager: +1 510 744-3744 +roomNumber: 8865 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sharad Shearin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharad Shearin +sn: Shearin +description: This is Sharad Shearin's description +facsimileTelephoneNumber: +1 415 156-5640 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 512-3285 +title: Chief Payroll Director +userPassword: Password1 +uid: ShearinS +givenName: Sharad +mail: ShearinS@bf5f757433234192bb075cccda7f6941.bitwarden.com +carLicense: 8QVSNH +departmentNumber: 9102 +employeeType: Employee +homePhone: +1 415 752-3780 +initials: S. S. +mobile: +1 415 499-4601 +pager: +1 415 191-4325 +roomNumber: 8303 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jennica Vonck,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jennica Vonck +sn: Vonck +description: This is Jennica Vonck's description +facsimileTelephoneNumber: +1 818 390-9424 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 695-4753 +title: Associate Management Grunt +userPassword: Password1 +uid: VonckJ +givenName: Jennica +mail: VonckJ@fa6f1422a9064a168045966e8899109e.bitwarden.com +carLicense: B7WK7R +departmentNumber: 6514 +employeeType: Contract +homePhone: +1 818 459-2719 +initials: J. V. +mobile: +1 818 925-9580 +pager: +1 818 828-3455 +roomNumber: 8901 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charissa Hazenboom +sn: Hazenboom +description: This is Charissa Hazenboom's description +facsimileTelephoneNumber: +1 510 223-9984 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 206-8808 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: HazenboC +givenName: Charissa +mail: HazenboC@ecca4a8cb1474812a6ec4a57737ddfaf.bitwarden.com +carLicense: G9TUWK +departmentNumber: 4654 +employeeType: Employee +homePhone: +1 510 475-6058 +initials: C. H. +mobile: +1 510 942-3056 +pager: +1 510 254-7106 +roomNumber: 9969 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chesteen Wyant,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chesteen Wyant +sn: Wyant +description: This is Chesteen Wyant's description +facsimileTelephoneNumber: +1 213 758-1300 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 944-5784 +title: Junior Management Punk +userPassword: Password1 +uid: WyantC +givenName: Chesteen +mail: WyantC@40591993a80c4f498ba90d5c4df5bf9c.bitwarden.com +carLicense: VULAL5 +departmentNumber: 4249 +employeeType: Employee +homePhone: +1 213 673-2003 +initials: C. W. +mobile: +1 213 212-1202 +pager: +1 213 699-9632 +roomNumber: 9173 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Coraline Kolton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coraline Kolton +sn: Kolton +description: This is Coraline Kolton's description +facsimileTelephoneNumber: +1 804 363-7346 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 804 503-2463 +title: Junior Payroll Engineer +userPassword: Password1 +uid: KoltonC +givenName: Coraline +mail: KoltonC@cdfacd88fafe4ba8970bb7d5170496d3.bitwarden.com +carLicense: 93LBCR +departmentNumber: 1353 +employeeType: Employee +homePhone: +1 804 152-3996 +initials: C. K. +mobile: +1 804 373-8026 +pager: +1 804 435-8692 +roomNumber: 9930 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhianna Donaldson +sn: Donaldson +description: This is Rhianna Donaldson's description +facsimileTelephoneNumber: +1 213 416-6933 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 358-6780 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: DonaldsR +givenName: Rhianna +mail: DonaldsR@95581eb6a8bb49808363d11bfe34de80.bitwarden.com +carLicense: JIDMKU +departmentNumber: 6005 +employeeType: Contract +homePhone: +1 213 827-4958 +initials: R. D. +mobile: +1 213 192-4102 +pager: +1 213 489-9222 +roomNumber: 9889 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Horacio Oberpriller,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Horacio Oberpriller +sn: Oberpriller +description: This is Horacio Oberpriller's description +facsimileTelephoneNumber: +1 206 516-6520 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 732-3436 +title: Supreme Management Dictator +userPassword: Password1 +uid: OberpriH +givenName: Horacio +mail: OberpriH@841df0a2276144ffade10ec334e0a08c.bitwarden.com +carLicense: 983D8R +departmentNumber: 8654 +employeeType: Contract +homePhone: +1 206 640-4855 +initials: H. O. +mobile: +1 206 817-2132 +pager: +1 206 887-5119 +roomNumber: 8021 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Padriac Kortekaas +sn: Kortekaas +description: This is Padriac Kortekaas's description +facsimileTelephoneNumber: +1 818 617-3951 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 692-3838 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: KortekaP +givenName: Padriac +mail: KortekaP@0fd135b263b342ad9db4b39831f787af.bitwarden.com +carLicense: 41M0RA +departmentNumber: 9438 +employeeType: Contract +homePhone: +1 818 880-7880 +initials: P. K. +mobile: +1 818 655-5216 +pager: +1 818 976-9719 +roomNumber: 9116 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nathalia Hawker +sn: Hawker +description: This is Nathalia Hawker's description +facsimileTelephoneNumber: +1 206 892-6329 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 759-5185 +title: Master Human Resources Pinhead +userPassword: Password1 +uid: HawkerN +givenName: Nathalia +mail: HawkerN@5c0f96a3078844a4801dba9a3ab9ce0b.bitwarden.com +carLicense: L1ELM4 +departmentNumber: 1049 +employeeType: Normal +homePhone: +1 206 972-8938 +initials: N. H. +mobile: +1 206 752-4874 +pager: +1 206 448-1738 +roomNumber: 9625 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lsi Assistance,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lsi Assistance +sn: Assistance +description: This is Lsi Assistance's description +facsimileTelephoneNumber: +1 206 903-2521 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 540-7478 +title: Master Janitorial Director +userPassword: Password1 +uid: AssistaL +givenName: Lsi +mail: AssistaL@5d8927d9a18847879f1969c651cc8b72.bitwarden.com +carLicense: 6EO8D6 +departmentNumber: 8356 +employeeType: Contract +homePhone: +1 206 490-3989 +initials: L. A. +mobile: +1 206 592-8140 +pager: +1 206 775-4440 +roomNumber: 9465 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LouAnn Bamfo +sn: Bamfo +description: This is LouAnn Bamfo's description +facsimileTelephoneNumber: +1 818 275-3211 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 685-3831 +title: Chief Product Testing Artist +userPassword: Password1 +uid: BamfoL +givenName: LouAnn +mail: BamfoL@e06afc97bcee4a81b6e79620a6f216aa.bitwarden.com +carLicense: LQVKXW +departmentNumber: 2593 +employeeType: Contract +homePhone: +1 818 318-3577 +initials: L. B. +mobile: +1 818 703-2715 +pager: +1 818 103-7437 +roomNumber: 8584 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esmaria Jewell +sn: Jewell +description: This is Esmaria Jewell's description +facsimileTelephoneNumber: +1 818 116-5217 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 972-6434 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: JewellE +givenName: Esmaria +mail: JewellE@17530faabce9458899e793820a3f2801.bitwarden.com +carLicense: 6V9AID +departmentNumber: 8269 +employeeType: Normal +homePhone: +1 818 519-9035 +initials: E. J. +mobile: +1 818 632-9509 +pager: +1 818 354-8673 +roomNumber: 9611 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gusta Dadkhah,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gusta Dadkhah +sn: Dadkhah +description: This is Gusta Dadkhah's description +facsimileTelephoneNumber: +1 213 695-3069 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 970-3963 +title: Master Management Assistant +userPassword: Password1 +uid: DadkhahG +givenName: Gusta +mail: DadkhahG@f5fb4e9fecc04c5fb5218048682802f8.bitwarden.com +carLicense: D9C1GC +departmentNumber: 5749 +employeeType: Employee +homePhone: +1 213 759-8132 +initials: G. D. +mobile: +1 213 159-8133 +pager: +1 213 121-7144 +roomNumber: 9109 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Daphene Cho,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphene Cho +sn: Cho +description: This is Daphene Cho's description +facsimileTelephoneNumber: +1 510 106-2524 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 534-9635 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: ChoD +givenName: Daphene +mail: ChoD@c2620996c28c4914aa069de50088574a.bitwarden.com +carLicense: 4MIPO3 +departmentNumber: 6858 +employeeType: Normal +homePhone: +1 510 735-5391 +initials: D. C. +mobile: +1 510 433-3992 +pager: +1 510 939-6612 +roomNumber: 8322 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Minerva Arvin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minerva Arvin +sn: Arvin +description: This is Minerva Arvin's description +facsimileTelephoneNumber: +1 804 718-6926 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 744-9271 +title: Junior Human Resources Evangelist +userPassword: Password1 +uid: ArvinM +givenName: Minerva +mail: ArvinM@bd7ed784957343358f080e4bf8b3e472.bitwarden.com +carLicense: UKQUF8 +departmentNumber: 6855 +employeeType: Normal +homePhone: +1 804 991-4965 +initials: M. A. +mobile: +1 804 388-2282 +pager: +1 804 482-8493 +roomNumber: 8945 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lynna Gumb,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynna Gumb +sn: Gumb +description: This is Lynna Gumb's description +facsimileTelephoneNumber: +1 510 593-5081 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 106-3262 +title: Junior Management Artist +userPassword: Password1 +uid: GumbL +givenName: Lynna +mail: GumbL@6ef1e4ea7e0c4fbca97db771430b3181.bitwarden.com +carLicense: 0RYFW9 +departmentNumber: 8258 +employeeType: Contract +homePhone: +1 510 681-1193 +initials: L. G. +mobile: +1 510 820-5002 +pager: +1 510 168-4698 +roomNumber: 8823 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arleen Owen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arleen Owen +sn: Owen +description: This is Arleen Owen's description +facsimileTelephoneNumber: +1 213 163-3689 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 299-1534 +title: Junior Administrative Janitor +userPassword: Password1 +uid: OwenA +givenName: Arleen +mail: OwenA@d93d3e36ec7e4efdaa17aa90aca2f3e5.bitwarden.com +carLicense: XAR76B +departmentNumber: 5971 +employeeType: Employee +homePhone: +1 213 590-9638 +initials: A. O. +mobile: +1 213 324-5973 +pager: +1 213 615-1976 +roomNumber: 9765 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carsten Ewanchyna +sn: Ewanchyna +description: This is Carsten Ewanchyna's description +facsimileTelephoneNumber: +1 510 304-1514 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 851-7168 +title: Junior Product Development Stooge +userPassword: Password1 +uid: EwanchyC +givenName: Carsten +mail: EwanchyC@9f05691ac53d429c8fd30f6c6f952561.bitwarden.com +carLicense: DGAQD3 +departmentNumber: 3126 +employeeType: Normal +homePhone: +1 510 894-8224 +initials: C. E. +mobile: +1 510 946-5483 +pager: +1 510 839-6193 +roomNumber: 8820 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chelsae Geer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsae Geer +sn: Geer +description: This is Chelsae Geer's description +facsimileTelephoneNumber: +1 415 896-3519 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 415 450-9648 +title: Junior Janitorial Evangelist +userPassword: Password1 +uid: GeerC +givenName: Chelsae +mail: GeerC@ea33a214953b4a6b925d5d0efa8ea38e.bitwarden.com +carLicense: HEVCCK +departmentNumber: 2614 +employeeType: Employee +homePhone: +1 415 483-5624 +initials: C. G. +mobile: +1 415 301-2049 +pager: +1 415 243-6527 +roomNumber: 9317 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Abraham McDougald,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abraham McDougald +sn: McDougald +description: This is Abraham McDougald's description +facsimileTelephoneNumber: +1 213 258-7993 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 605-8787 +title: Master Management Writer +userPassword: Password1 +uid: McDougaA +givenName: Abraham +mail: McDougaA@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com +carLicense: W8DCO4 +departmentNumber: 1574 +employeeType: Employee +homePhone: +1 213 989-5329 +initials: A. M. +mobile: +1 213 708-1661 +pager: +1 213 969-5910 +roomNumber: 9194 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jessa Piasecki,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessa Piasecki +sn: Piasecki +description: This is Jessa Piasecki's description +facsimileTelephoneNumber: +1 213 545-5247 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 553-7368 +title: Chief Management Consultant +userPassword: Password1 +uid: PiaseckJ +givenName: Jessa +mail: PiaseckJ@af9d1266b1684989ab41423cdd351f7f.bitwarden.com +carLicense: 156SIE +departmentNumber: 2915 +employeeType: Employee +homePhone: +1 213 635-4637 +initials: J. P. +mobile: +1 213 537-3690 +pager: +1 213 756-3793 +roomNumber: 8873 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fabienne Deguire +sn: Deguire +description: This is Fabienne Deguire's description +facsimileTelephoneNumber: +1 415 485-7957 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 868-8678 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: DeguireF +givenName: Fabienne +mail: DeguireF@0651cd49040341648ef076fb9d224e36.bitwarden.com +carLicense: LONW4G +departmentNumber: 2219 +employeeType: Employee +homePhone: +1 415 929-1154 +initials: F. D. +mobile: +1 415 505-4286 +pager: +1 415 740-5699 +roomNumber: 9974 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hertha Wayler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hertha Wayler +sn: Wayler +description: This is Hertha Wayler's description +facsimileTelephoneNumber: +1 510 623-9725 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 352-2327 +title: Junior Janitorial Mascot +userPassword: Password1 +uid: WaylerH +givenName: Hertha +mail: WaylerH@2e3ea6fd47a04112b8fcd5e103e3ae77.bitwarden.com +carLicense: DWQJ2A +departmentNumber: 1395 +employeeType: Normal +homePhone: +1 510 305-7634 +initials: H. W. +mobile: +1 510 299-4780 +pager: +1 510 129-2709 +roomNumber: 9404 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gregg Lanzkron +sn: Lanzkron +description: This is Gregg Lanzkron's description +facsimileTelephoneNumber: +1 213 628-4388 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 213 134-2349 +title: Chief Human Resources Mascot +userPassword: Password1 +uid: LanzkroG +givenName: Gregg +mail: LanzkroG@eb5d81d98e0b481098d9b451ee211c82.bitwarden.com +carLicense: 74X0LO +departmentNumber: 8170 +employeeType: Normal +homePhone: +1 213 417-2673 +initials: G. L. +mobile: +1 213 572-5272 +pager: +1 213 988-8630 +roomNumber: 9846 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Richardson Hansquine +sn: Hansquine +description: This is Richardson Hansquine's description +facsimileTelephoneNumber: +1 804 116-3428 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 568-5924 +title: Associate Product Testing Writer +userPassword: Password1 +uid: HansquiR +givenName: Richardson +mail: HansquiR@3ffb284a6509471fa1b109716579396c.bitwarden.com +carLicense: T13CNN +departmentNumber: 4467 +employeeType: Employee +homePhone: +1 804 291-5399 +initials: R. H. +mobile: +1 804 612-2124 +pager: +1 804 174-2397 +roomNumber: 8915 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Haste Isherwood,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haste Isherwood +sn: Isherwood +description: This is Haste Isherwood's description +facsimileTelephoneNumber: +1 213 352-6831 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 960-4124 +title: Master Product Testing Visionary +userPassword: Password1 +uid: IsherwoH +givenName: Haste +mail: IsherwoH@ec8dc3c6877747ab888f5b203f49583b.bitwarden.com +carLicense: NA7E75 +departmentNumber: 9603 +employeeType: Employee +homePhone: +1 213 239-5504 +initials: H. I. +mobile: +1 213 323-9376 +pager: +1 213 892-7242 +roomNumber: 9235 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tonye Frumerie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonye Frumerie +sn: Frumerie +description: This is Tonye Frumerie's description +facsimileTelephoneNumber: +1 510 546-7438 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 612-7492 +title: Junior Management Grunt +userPassword: Password1 +uid: FrumeriT +givenName: Tonye +mail: FrumeriT@bc4791aff5914d0e95bbd2106b1c2de5.bitwarden.com +carLicense: IIMN4X +departmentNumber: 8660 +employeeType: Employee +homePhone: +1 510 632-5298 +initials: T. F. +mobile: +1 510 952-9012 +pager: +1 510 514-3877 +roomNumber: 8047 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nathalia Kinoshita +sn: Kinoshita +description: This is Nathalia Kinoshita's description +facsimileTelephoneNumber: +1 206 952-3807 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 922-2186 +title: Associate Janitorial Admin +userPassword: Password1 +uid: KinoshiN +givenName: Nathalia +mail: KinoshiN@29fc4f33a13046d58a2533f092f80d91.bitwarden.com +carLicense: J66LEE +departmentNumber: 3307 +employeeType: Employee +homePhone: +1 206 535-6396 +initials: N. K. +mobile: +1 206 432-8384 +pager: +1 206 426-6345 +roomNumber: 9608 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lilly Serapin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilly Serapin +sn: Serapin +description: This is Lilly Serapin's description +facsimileTelephoneNumber: +1 510 341-9574 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 510 672-1484 +title: Master Product Testing Janitor +userPassword: Password1 +uid: SerapinL +givenName: Lilly +mail: SerapinL@b9e3cd16f2b646b993b7e643861e809b.bitwarden.com +carLicense: QAYTUC +departmentNumber: 8693 +employeeType: Normal +homePhone: +1 510 346-9703 +initials: L. S. +mobile: +1 510 945-7389 +pager: +1 510 583-2564 +roomNumber: 9858 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Phebe Gordon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phebe Gordon +sn: Gordon +description: This is Phebe Gordon's description +facsimileTelephoneNumber: +1 818 100-5377 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 335-8050 +title: Junior Product Development Artist +userPassword: Password1 +uid: GordonP +givenName: Phebe +mail: GordonP@80ac534602434d3b9eab0832653d2f56.bitwarden.com +carLicense: GDHDDW +departmentNumber: 2024 +employeeType: Employee +homePhone: +1 818 309-2555 +initials: P. G. +mobile: +1 818 797-2259 +pager: +1 818 674-3603 +roomNumber: 9199 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvin Ermarkaryan +sn: Ermarkaryan +description: This is Alvin Ermarkaryan's description +facsimileTelephoneNumber: +1 206 100-9155 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 892-4830 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: ErmarkaA +givenName: Alvin +mail: ErmarkaA@8937c44c9bf6487fb42e97e582a0968a.bitwarden.com +carLicense: SMC05R +departmentNumber: 6531 +employeeType: Normal +homePhone: +1 206 488-7017 +initials: A. E. +mobile: +1 206 356-8830 +pager: +1 206 416-8137 +roomNumber: 9935 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cary Gronwall,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cary Gronwall +sn: Gronwall +description: This is Cary Gronwall's description +facsimileTelephoneNumber: +1 206 923-8140 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 259-6498 +title: Master Peons Engineer +userPassword: Password1 +uid: GronwalC +givenName: Cary +mail: GronwalC@da1dd7866db74262b18c0f383045bcff.bitwarden.com +carLicense: QTDMKV +departmentNumber: 2342 +employeeType: Normal +homePhone: +1 206 561-3963 +initials: C. G. +mobile: +1 206 287-9895 +pager: +1 206 369-3754 +roomNumber: 9284 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mer Kearney,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mer Kearney +sn: Kearney +description: This is Mer Kearney's description +facsimileTelephoneNumber: +1 213 482-5650 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 530-8558 +title: Master Management Figurehead +userPassword: Password1 +uid: KearneyM +givenName: Mer +mail: KearneyM@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com +carLicense: 4IUTTP +departmentNumber: 2264 +employeeType: Normal +homePhone: +1 213 640-3094 +initials: M. K. +mobile: +1 213 848-8805 +pager: +1 213 284-4009 +roomNumber: 9937 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Viqar Campeau,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viqar Campeau +sn: Campeau +description: This is Viqar Campeau's description +facsimileTelephoneNumber: +1 408 778-7705 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 212-4207 +title: Chief Administrative President +userPassword: Password1 +uid: CampeauV +givenName: Viqar +mail: CampeauV@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com +carLicense: 918U85 +departmentNumber: 8573 +employeeType: Contract +homePhone: +1 408 331-9464 +initials: V. C. +mobile: +1 408 378-2480 +pager: +1 408 566-3228 +roomNumber: 8943 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Annet Chatfield,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annet Chatfield +sn: Chatfield +description: This is Annet Chatfield's description +facsimileTelephoneNumber: +1 213 544-9353 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 360-4913 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: ChatfieA +givenName: Annet +mail: ChatfieA@02d556d8128c42b5aa2cd5d4238f40aa.bitwarden.com +carLicense: 4PQLYB +departmentNumber: 2750 +employeeType: Employee +homePhone: +1 213 213-5679 +initials: A. C. +mobile: +1 213 931-6230 +pager: +1 213 978-4738 +roomNumber: 9661 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lizzie Zaid,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lizzie Zaid +sn: Zaid +description: This is Lizzie Zaid's description +facsimileTelephoneNumber: +1 206 720-2557 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 246-2016 +title: Master Management Evangelist +userPassword: Password1 +uid: ZaidL +givenName: Lizzie +mail: ZaidL@4cf5733fc93742b8881de63253f58457.bitwarden.com +carLicense: 8C8HDX +departmentNumber: 9950 +employeeType: Normal +homePhone: +1 206 277-2831 +initials: L. Z. +mobile: +1 206 121-6830 +pager: +1 206 694-2106 +roomNumber: 9017 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Norcal Schrier,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norcal Schrier +sn: Schrier +description: This is Norcal Schrier's description +facsimileTelephoneNumber: +1 408 795-2209 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 588-1661 +title: Master Payroll Grunt +userPassword: Password1 +uid: SchrierN +givenName: Norcal +mail: SchrierN@6440b02815824326a0c464b5e91deecc.bitwarden.com +carLicense: N3T13P +departmentNumber: 9908 +employeeType: Employee +homePhone: +1 408 468-9809 +initials: N. S. +mobile: +1 408 872-2473 +pager: +1 408 833-9104 +roomNumber: 9272 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hesther Fujiwara +sn: Fujiwara +description: This is Hesther Fujiwara's description +facsimileTelephoneNumber: +1 213 828-5466 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 952-9862 +title: Master Janitorial Consultant +userPassword: Password1 +uid: FujiwarH +givenName: Hesther +mail: FujiwarH@98aff7abdd994400acf7af6980180281.bitwarden.com +carLicense: DM5OFV +departmentNumber: 3969 +employeeType: Employee +homePhone: +1 213 989-1636 +initials: H. F. +mobile: +1 213 566-5363 +pager: +1 213 206-2801 +roomNumber: 8680 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marlyne Tardiff,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlyne Tardiff +sn: Tardiff +description: This is Marlyne Tardiff's description +facsimileTelephoneNumber: +1 408 869-2681 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 445-4299 +title: Chief Management Developer +userPassword: Password1 +uid: TardiffM +givenName: Marlyne +mail: TardiffM@0ed116231128466cad659b85d73b9c7b.bitwarden.com +carLicense: KMN0KY +departmentNumber: 6715 +employeeType: Normal +homePhone: +1 408 576-1856 +initials: M. T. +mobile: +1 408 415-6419 +pager: +1 408 633-1861 +roomNumber: 8332 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Annabella Vogel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annabella Vogel +sn: Vogel +description: This is Annabella Vogel's description +facsimileTelephoneNumber: +1 415 718-9079 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 172-7337 +title: Supreme Peons Pinhead +userPassword: Password1 +uid: VogelA +givenName: Annabella +mail: VogelA@240320ec20894b66932f0d930796bec9.bitwarden.com +carLicense: KV5QOH +departmentNumber: 7249 +employeeType: Employee +homePhone: +1 415 966-2202 +initials: A. V. +mobile: +1 415 473-5041 +pager: +1 415 649-8821 +roomNumber: 9702 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Santiago Lorenzo +sn: Lorenzo +description: This is Santiago Lorenzo's description +facsimileTelephoneNumber: +1 804 834-2648 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 535-9560 +title: Associate Product Development Consultant +userPassword: Password1 +uid: LorenzoS +givenName: Santiago +mail: LorenzoS@783cff68e50c48949cc0f27986272654.bitwarden.com +carLicense: 4FMXAE +departmentNumber: 1230 +employeeType: Normal +homePhone: +1 804 279-4934 +initials: S. L. +mobile: +1 804 289-3625 +pager: +1 804 358-1387 +roomNumber: 9962 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bibbie Zeng +sn: Zeng +description: This is Bibbie Zeng's description +facsimileTelephoneNumber: +1 206 297-3438 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 366-4207 +title: Master Product Testing Warrior +userPassword: Password1 +uid: ZengB +givenName: Bibbie +mail: ZengB@135bb9fa72e24dc8b937d7f87525e62d.bitwarden.com +carLicense: NWD8SE +departmentNumber: 1431 +employeeType: Employee +homePhone: +1 206 505-6040 +initials: B. Z. +mobile: +1 206 938-1125 +pager: +1 206 841-3543 +roomNumber: 9777 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ferdinand Czarnecki +sn: Czarnecki +description: This is Ferdinand Czarnecki's description +facsimileTelephoneNumber: +1 510 256-3131 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 510 816-2488 +title: Supreme Janitorial President +userPassword: Password1 +uid: CzarnecF +givenName: Ferdinand +mail: CzarnecF@6c799d8435134ca299840a473c03c953.bitwarden.com +carLicense: NC4NPH +departmentNumber: 5283 +employeeType: Employee +homePhone: +1 510 553-1177 +initials: F. C. +mobile: +1 510 993-2471 +pager: +1 510 205-1108 +roomNumber: 8390 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Farzin Depooter,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farzin Depooter +sn: Depooter +description: This is Farzin Depooter's description +facsimileTelephoneNumber: +1 213 155-8820 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 310-2192 +title: Junior Product Testing Pinhead +userPassword: Password1 +uid: DepooteF +givenName: Farzin +mail: DepooteF@7ea8c6e071cb415baa4ccfac0bf339ef.bitwarden.com +carLicense: EIOQSK +departmentNumber: 9189 +employeeType: Contract +homePhone: +1 213 180-4083 +initials: F. D. +mobile: +1 213 824-4602 +pager: +1 213 162-8571 +roomNumber: 8006 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Denys Paone,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denys Paone +sn: Paone +description: This is Denys Paone's description +facsimileTelephoneNumber: +1 408 197-2825 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 625-9531 +title: Master Management Writer +userPassword: Password1 +uid: PaoneD +givenName: Denys +mail: PaoneD@a8abb07edeb74ec1ae70796a921d4f89.bitwarden.com +carLicense: UN8QW4 +departmentNumber: 1509 +employeeType: Contract +homePhone: +1 408 118-9344 +initials: D. P. +mobile: +1 408 195-8217 +pager: +1 408 267-2683 +roomNumber: 8261 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ghassan Payne,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ghassan Payne +sn: Payne +description: This is Ghassan Payne's description +facsimileTelephoneNumber: +1 415 681-5540 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 919-5206 +title: Associate Administrative Czar +userPassword: Password1 +uid: PayneG +givenName: Ghassan +mail: PayneG@abbaec0735d04a0996e4b288ba069955.bitwarden.com +carLicense: YXQLBS +departmentNumber: 4262 +employeeType: Normal +homePhone: +1 415 697-4463 +initials: G. P. +mobile: +1 415 874-3760 +pager: +1 415 448-5832 +roomNumber: 8750 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Heida Cripps,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heida Cripps +sn: Cripps +description: This is Heida Cripps's description +facsimileTelephoneNumber: +1 804 680-6029 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 246-1777 +title: Associate Management Madonna +userPassword: Password1 +uid: CrippsH +givenName: Heida +mail: CrippsH@5857bd6862ae44e0abdb84cc22875a30.bitwarden.com +carLicense: SRHJN5 +departmentNumber: 6104 +employeeType: Contract +homePhone: +1 804 670-4813 +initials: H. C. +mobile: +1 804 725-8786 +pager: +1 804 663-2395 +roomNumber: 8277 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sayed Belaire,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sayed Belaire +sn: Belaire +description: This is Sayed Belaire's description +facsimileTelephoneNumber: +1 213 661-6018 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 435-7517 +title: Junior Human Resources Punk +userPassword: Password1 +uid: BelaireS +givenName: Sayed +mail: BelaireS@40cd70dd1d24483692f5533e0ae7157a.bitwarden.com +carLicense: 0PP1ES +departmentNumber: 6331 +employeeType: Normal +homePhone: +1 213 439-6093 +initials: S. B. +mobile: +1 213 910-1233 +pager: +1 213 135-7234 +roomNumber: 9793 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelton Zumhagen +sn: Zumhagen +description: This is Shelton Zumhagen's description +facsimileTelephoneNumber: +1 818 890-5872 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 427-4264 +title: Chief Payroll Madonna +userPassword: Password1 +uid: ZumhageS +givenName: Shelton +mail: ZumhageS@1567184d0d9f4bd798c9d76aae00fe9e.bitwarden.com +carLicense: TGM14K +departmentNumber: 3060 +employeeType: Normal +homePhone: +1 818 342-1339 +initials: S. Z. +mobile: +1 818 350-4700 +pager: +1 818 411-6649 +roomNumber: 9510 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sileas Brungardt,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sileas Brungardt +sn: Brungardt +description: This is Sileas Brungardt's description +facsimileTelephoneNumber: +1 510 621-3443 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 510 250-2868 +title: Junior Management Visionary +userPassword: Password1 +uid: BrungarS +givenName: Sileas +mail: BrungarS@99efb52676a5438d8f4dfeb830e52009.bitwarden.com +carLicense: YMC6PP +departmentNumber: 5251 +employeeType: Normal +homePhone: +1 510 736-6864 +initials: S. B. +mobile: +1 510 952-8431 +pager: +1 510 807-8623 +roomNumber: 9843 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cantrell Seregelyi +sn: Seregelyi +description: This is Cantrell Seregelyi's description +facsimileTelephoneNumber: +1 510 973-7208 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 510 431-9753 +title: Associate Administrative Stooge +userPassword: Password1 +uid: SeregelC +givenName: Cantrell +mail: SeregelC@ba472466323f4495990396411f318b4e.bitwarden.com +carLicense: K1WOAM +departmentNumber: 9734 +employeeType: Normal +homePhone: +1 510 251-5952 +initials: C. S. +mobile: +1 510 829-2195 +pager: +1 510 631-3778 +roomNumber: 8577 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nicholas Shupe,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicholas Shupe +sn: Shupe +description: This is Nicholas Shupe's description +facsimileTelephoneNumber: +1 818 562-2919 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 961-6023 +title: Master Peons Dictator +userPassword: Password1 +uid: ShupeN +givenName: Nicholas +mail: ShupeN@ac9bf0e4278e4b36812b33be5aa4f608.bitwarden.com +carLicense: EC764R +departmentNumber: 6705 +employeeType: Normal +homePhone: +1 818 551-8325 +initials: N. S. +mobile: +1 818 578-1963 +pager: +1 818 770-8268 +roomNumber: 8147 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shayna Guinnane +sn: Guinnane +description: This is Shayna Guinnane's description +facsimileTelephoneNumber: +1 804 784-4357 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 534-5189 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: GuinnanS +givenName: Shayna +mail: GuinnanS@f88dd8b6188242cc853f83412105868d.bitwarden.com +carLicense: LQGH3Q +departmentNumber: 5856 +employeeType: Contract +homePhone: +1 804 484-7068 +initials: S. G. +mobile: +1 804 341-1769 +pager: +1 804 463-3908 +roomNumber: 8448 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Margaret Binda,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margaret Binda +sn: Binda +description: This is Margaret Binda's description +facsimileTelephoneNumber: +1 818 376-3120 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 232-4279 +title: Master Peons Technician +userPassword: Password1 +uid: BindaM +givenName: Margaret +mail: BindaM@0ec5cd8f3a4c4de5a7f274f9d3332893.bitwarden.com +carLicense: STLKHC +departmentNumber: 2802 +employeeType: Employee +homePhone: +1 818 612-3735 +initials: M. B. +mobile: +1 818 855-8357 +pager: +1 818 835-2108 +roomNumber: 8233 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=MaryAnn Windom,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryAnn Windom +sn: Windom +description: This is MaryAnn Windom's description +facsimileTelephoneNumber: +1 213 390-2535 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 279-7363 +title: Associate Peons Technician +userPassword: Password1 +uid: WindomM +givenName: MaryAnn +mail: WindomM@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com +carLicense: 2HAPYX +departmentNumber: 2815 +employeeType: Contract +homePhone: +1 213 141-2456 +initials: M. W. +mobile: +1 213 895-3653 +pager: +1 213 635-6565 +roomNumber: 9619 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cammie Lobello,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cammie Lobello +sn: Lobello +description: This is Cammie Lobello's description +facsimileTelephoneNumber: +1 804 111-1276 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 170-9574 +title: Master Payroll Warrior +userPassword: Password1 +uid: LobelloC +givenName: Cammie +mail: LobelloC@d4ad583ecaae406097e581a7aec5a780.bitwarden.com +carLicense: 7LVW6O +departmentNumber: 4685 +employeeType: Contract +homePhone: +1 804 669-6418 +initials: C. L. +mobile: +1 804 911-8386 +pager: +1 804 104-3924 +roomNumber: 9530 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=HangTong Shek,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HangTong Shek +sn: Shek +description: This is HangTong Shek's description +facsimileTelephoneNumber: +1 818 431-4754 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 198-3161 +title: Master Product Development Director +userPassword: Password1 +uid: ShekH +givenName: HangTong +mail: ShekH@edda584dd7a3409daa4b2eabe9e2cdb4.bitwarden.com +carLicense: UYAGON +departmentNumber: 5585 +employeeType: Contract +homePhone: +1 818 949-6312 +initials: H. S. +mobile: +1 818 302-1928 +pager: +1 818 402-1015 +roomNumber: 8418 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyrine Yoshioka +sn: Yoshioka +description: This is Cyrine Yoshioka's description +facsimileTelephoneNumber: +1 213 848-2084 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 985-1098 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: YoshiokC +givenName: Cyrine +mail: YoshiokC@abae44a8c9154a558b8ee514a89fd6ef.bitwarden.com +carLicense: 8JR8OM +departmentNumber: 9474 +employeeType: Normal +homePhone: +1 213 961-4237 +initials: C. Y. +mobile: +1 213 565-8457 +pager: +1 213 789-8305 +roomNumber: 9867 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Engin Mersinger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Engin Mersinger +sn: Mersinger +description: This is Engin Mersinger's description +facsimileTelephoneNumber: +1 206 587-7851 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 206 649-8333 +title: Chief Human Resources Manager +userPassword: Password1 +uid: MersingE +givenName: Engin +mail: MersingE@a424c942226a48928880fd6debd4c0c3.bitwarden.com +carLicense: N6CAYG +departmentNumber: 5881 +employeeType: Normal +homePhone: +1 206 430-4744 +initials: E. M. +mobile: +1 206 910-5713 +pager: +1 206 703-7695 +roomNumber: 9849 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rebbecca Perina,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebbecca Perina +sn: Perina +description: This is Rebbecca Perina's description +facsimileTelephoneNumber: +1 510 426-6909 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 197-9123 +title: Junior Management Developer +userPassword: Password1 +uid: PerinaR +givenName: Rebbecca +mail: PerinaR@89a8ded54db64032804dc4a0a9dd8e92.bitwarden.com +carLicense: Y7T5VT +departmentNumber: 9288 +employeeType: Normal +homePhone: +1 510 195-6392 +initials: R. P. +mobile: +1 510 932-5000 +pager: +1 510 737-7713 +roomNumber: 8140 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Piero Preece,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Piero Preece +sn: Preece +description: This is Piero Preece's description +facsimileTelephoneNumber: +1 510 550-9941 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 397-7276 +title: Supreme Peons Mascot +userPassword: Password1 +uid: PreeceP +givenName: Piero +mail: PreeceP@fc3a6a2ed2a041edaaee095273406b72.bitwarden.com +carLicense: 1YHSJL +departmentNumber: 5256 +employeeType: Employee +homePhone: +1 510 590-2276 +initials: P. P. +mobile: +1 510 775-8758 +pager: +1 510 263-9574 +roomNumber: 9799 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pradip Draffin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pradip Draffin +sn: Draffin +description: This is Pradip Draffin's description +facsimileTelephoneNumber: +1 408 479-8252 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 611-9729 +title: Junior Human Resources Admin +userPassword: Password1 +uid: DraffinP +givenName: Pradip +mail: DraffinP@315eb199a17945298e19ac4cd2657bca.bitwarden.com +carLicense: 2UM6EN +departmentNumber: 4375 +employeeType: Contract +homePhone: +1 408 723-9399 +initials: P. D. +mobile: +1 408 539-2558 +pager: +1 408 292-4765 +roomNumber: 9826 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaffney Bowler +sn: Bowler +description: This is Gaffney Bowler's description +facsimileTelephoneNumber: +1 213 592-9733 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 622-4390 +title: Master Human Resources Engineer +userPassword: Password1 +uid: BowlerG +givenName: Gaffney +mail: BowlerG@98febd962501443b89a9e8bfacf12a9e.bitwarden.com +carLicense: HLPH1Y +departmentNumber: 7151 +employeeType: Contract +homePhone: +1 213 424-3062 +initials: G. B. +mobile: +1 213 459-5462 +pager: +1 213 630-9607 +roomNumber: 8489 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jacynth Etemad,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacynth Etemad +sn: Etemad +description: This is Jacynth Etemad's description +facsimileTelephoneNumber: +1 415 234-3870 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 204-6229 +title: Chief Administrative Artist +userPassword: Password1 +uid: EtemadJ +givenName: Jacynth +mail: EtemadJ@8942e77394054acf85b23cffda0e66d1.bitwarden.com +carLicense: G53HMC +departmentNumber: 3738 +employeeType: Employee +homePhone: +1 415 841-1380 +initials: J. E. +mobile: +1 415 261-9152 +pager: +1 415 326-8701 +roomNumber: 9091 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Brittany Pokinko,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brittany Pokinko +sn: Pokinko +description: This is Brittany Pokinko's description +facsimileTelephoneNumber: +1 213 126-9518 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 795-9584 +title: Junior Management Mascot +userPassword: Password1 +uid: PokinkoB +givenName: Brittany +mail: PokinkoB@beb04887c3a74fa0ae74089e879db636.bitwarden.com +carLicense: M0F49C +departmentNumber: 9796 +employeeType: Contract +homePhone: +1 213 238-7530 +initials: B. P. +mobile: +1 213 343-9738 +pager: +1 213 723-6885 +roomNumber: 9594 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeannot Rch,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeannot Rch +sn: Rch +description: This is Jeannot Rch's description +facsimileTelephoneNumber: +1 415 205-5265 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 913-6631 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: RchJ +givenName: Jeannot +mail: RchJ@71f49fd634ac4515894d5fd3319ef9a6.bitwarden.com +carLicense: FGCSF4 +departmentNumber: 5631 +employeeType: Normal +homePhone: +1 415 831-6896 +initials: J. R. +mobile: +1 415 822-9078 +pager: +1 415 329-2756 +roomNumber: 9097 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Wiebren Zaia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wiebren Zaia +sn: Zaia +description: This is Wiebren Zaia's description +facsimileTelephoneNumber: +1 818 383-5474 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 787-9577 +title: Master Product Development Stooge +userPassword: Password1 +uid: ZaiaW +givenName: Wiebren +mail: ZaiaW@565c1161bdcb416b9e8012a23ab58823.bitwarden.com +carLicense: 5SGY1T +departmentNumber: 3988 +employeeType: Employee +homePhone: +1 818 646-3332 +initials: W. Z. +mobile: +1 818 310-7061 +pager: +1 818 542-5102 +roomNumber: 9839 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karlyn Kell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlyn Kell +sn: Kell +description: This is Karlyn Kell's description +facsimileTelephoneNumber: +1 206 749-6740 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 799-6330 +title: Supreme Product Testing Visionary +userPassword: Password1 +uid: KellK +givenName: Karlyn +mail: KellK@0be01d83222f46f7842093c364d584c6.bitwarden.com +carLicense: R75BXY +departmentNumber: 1345 +employeeType: Normal +homePhone: +1 206 667-3401 +initials: K. K. +mobile: +1 206 406-5268 +pager: +1 206 327-1021 +roomNumber: 8535 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Noriko Devenny,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noriko Devenny +sn: Devenny +description: This is Noriko Devenny's description +facsimileTelephoneNumber: +1 213 564-7100 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 710-6428 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: DevennyN +givenName: Noriko +mail: DevennyN@43188b75c2e34348ad81287ed476a6be.bitwarden.com +carLicense: QB4UXH +departmentNumber: 4107 +employeeType: Normal +homePhone: +1 213 748-5349 +initials: N. D. +mobile: +1 213 955-7333 +pager: +1 213 450-6562 +roomNumber: 9179 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharleen Sutherland +sn: Sutherland +description: This is Sharleen Sutherland's description +facsimileTelephoneNumber: +1 206 373-6034 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 149-4698 +title: Junior Janitorial President +userPassword: Password1 +uid: SutherlS +givenName: Sharleen +mail: SutherlS@29cf82166a6a4ea0989e7e7b62bf4159.bitwarden.com +carLicense: 673XLS +departmentNumber: 8562 +employeeType: Employee +homePhone: +1 206 276-5587 +initials: S. S. +mobile: +1 206 969-8063 +pager: +1 206 797-4289 +roomNumber: 8189 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MinhPhuc Racioppi +sn: Racioppi +description: This is MinhPhuc Racioppi's description +facsimileTelephoneNumber: +1 818 965-9795 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 244-6529 +title: Master Administrative Manager +userPassword: Password1 +uid: RacioppM +givenName: MinhPhuc +mail: RacioppM@9daad43b51a94c0ca7959dc6c27a0690.bitwarden.com +carLicense: KL18WV +departmentNumber: 6954 +employeeType: Normal +homePhone: +1 818 284-3573 +initials: M. R. +mobile: +1 818 475-3679 +pager: +1 818 300-1877 +roomNumber: 9169 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozelle Chisolm +sn: Chisolm +description: This is Rozelle Chisolm's description +facsimileTelephoneNumber: +1 804 479-1142 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 352-6700 +title: Master Human Resources Visionary +userPassword: Password1 +uid: ChisolmR +givenName: Rozelle +mail: ChisolmR@c10a1f2c3750409ea6ba15a45a2d3288.bitwarden.com +carLicense: FXNV84 +departmentNumber: 6517 +employeeType: Contract +homePhone: +1 804 983-2408 +initials: R. C. +mobile: +1 804 590-7025 +pager: +1 804 856-3664 +roomNumber: 9907 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Porfirio Epperson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Porfirio Epperson +sn: Epperson +description: This is Porfirio Epperson's description +facsimileTelephoneNumber: +1 818 315-1831 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 969-1940 +title: Chief Product Development Warrior +userPassword: Password1 +uid: EppersoP +givenName: Porfirio +mail: EppersoP@5411fa97ed104161bed6dae71e8cb050.bitwarden.com +carLicense: LP0Q2A +departmentNumber: 2693 +employeeType: Normal +homePhone: +1 818 117-3951 +initials: P. E. +mobile: +1 818 286-5727 +pager: +1 818 768-2027 +roomNumber: 9319 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Linnet Streight,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linnet Streight +sn: Streight +description: This is Linnet Streight's description +facsimileTelephoneNumber: +1 415 596-4807 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 816-5981 +title: Junior Management Assistant +userPassword: Password1 +uid: StreighL +givenName: Linnet +mail: StreighL@149bc1b766d74419a516a7f2cbdf7f66.bitwarden.com +carLicense: SQLICQ +departmentNumber: 9184 +employeeType: Normal +homePhone: +1 415 359-5739 +initials: L. S. +mobile: +1 415 925-7349 +pager: +1 415 554-3892 +roomNumber: 8098 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rici Hartkopf +sn: Hartkopf +description: This is Rici Hartkopf's description +facsimileTelephoneNumber: +1 818 165-8705 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 715-3466 +title: Associate Janitorial Stooge +userPassword: Password1 +uid: HartkopR +givenName: Rici +mail: HartkopR@2376664dd9b549139927cefdacae1cbe.bitwarden.com +carLicense: 1AKUYA +departmentNumber: 3500 +employeeType: Contract +homePhone: +1 818 151-3268 +initials: R. H. +mobile: +1 818 407-4036 +pager: +1 818 752-7471 +roomNumber: 9864 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tomi Bridges,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tomi Bridges +sn: Bridges +description: This is Tomi Bridges's description +facsimileTelephoneNumber: +1 804 507-2239 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 238-5417 +title: Associate Management Mascot +userPassword: Password1 +uid: BridgesT +givenName: Tomi +mail: BridgesT@df6375b797c34567a9e4770a61e55877.bitwarden.com +carLicense: WYSNYQ +departmentNumber: 3231 +employeeType: Employee +homePhone: +1 804 983-4997 +initials: T. B. +mobile: +1 804 673-6363 +pager: +1 804 828-2916 +roomNumber: 8028 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gerardo Walia,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerardo Walia +sn: Walia +description: This is Gerardo Walia's description +facsimileTelephoneNumber: +1 804 416-3015 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 230-6667 +title: Associate Management Developer +userPassword: Password1 +uid: WaliaG +givenName: Gerardo +mail: WaliaG@b2d1290fcbcc4431adfadb5c58eee36e.bitwarden.com +carLicense: WYIII1 +departmentNumber: 8543 +employeeType: Employee +homePhone: +1 804 713-1410 +initials: G. W. +mobile: +1 804 299-8156 +pager: +1 804 223-4463 +roomNumber: 8487 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hailee Corace,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hailee Corace +sn: Corace +description: This is Hailee Corace's description +facsimileTelephoneNumber: +1 213 733-9613 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 333-9138 +title: Master Administrative Stooge +userPassword: Password1 +uid: CoraceH +givenName: Hailee +mail: CoraceH@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com +carLicense: Y596U2 +departmentNumber: 5326 +employeeType: Normal +homePhone: +1 213 297-7494 +initials: H. C. +mobile: +1 213 444-9391 +pager: +1 213 118-5791 +roomNumber: 9827 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: VuHoan Kehler +sn: Kehler +description: This is VuHoan Kehler's description +facsimileTelephoneNumber: +1 510 948-3964 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 667-7035 +title: Supreme Product Testing Assistant +userPassword: Password1 +uid: KehlerV +givenName: VuHoan +mail: KehlerV@c6c3f852cc6d4b32801ebdde9e3265ae.bitwarden.com +carLicense: MLYFKM +departmentNumber: 4903 +employeeType: Normal +homePhone: +1 510 958-6590 +initials: V. K. +mobile: +1 510 670-8751 +pager: +1 510 588-9524 +roomNumber: 8686 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Munir Copes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Munir Copes +sn: Copes +description: This is Munir Copes's description +facsimileTelephoneNumber: +1 206 187-1900 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 351-2633 +title: Master Human Resources Warrior +userPassword: Password1 +uid: CopesM +givenName: Munir +mail: CopesM@16434353c1084964814de6cc676be364.bitwarden.com +carLicense: UIYMTJ +departmentNumber: 3084 +employeeType: Employee +homePhone: +1 206 224-8108 +initials: M. C. +mobile: +1 206 411-2438 +pager: +1 206 639-1760 +roomNumber: 9840 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Susan Fowler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susan Fowler +sn: Fowler +description: This is Susan Fowler's description +facsimileTelephoneNumber: +1 804 430-5659 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 341-6099 +title: Master Product Testing Madonna +userPassword: Password1 +uid: FowlerS +givenName: Susan +mail: FowlerS@d5a1c908aa0542dcbca729ee2090c302.bitwarden.com +carLicense: HP5PKR +departmentNumber: 6437 +employeeType: Contract +homePhone: +1 804 610-1091 +initials: S. F. +mobile: +1 804 425-6684 +pager: +1 804 814-1537 +roomNumber: 9987 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randhir Bushnik +sn: Bushnik +description: This is Randhir Bushnik's description +facsimileTelephoneNumber: +1 804 749-9531 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 256-2851 +title: Associate Human Resources Technician +userPassword: Password1 +uid: BushnikR +givenName: Randhir +mail: BushnikR@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com +carLicense: SEXHAG +departmentNumber: 1758 +employeeType: Normal +homePhone: +1 804 345-3470 +initials: R. B. +mobile: +1 804 158-8694 +pager: +1 804 285-5302 +roomNumber: 9940 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ethelyn Budimirovic +sn: Budimirovic +description: This is Ethelyn Budimirovic's description +facsimileTelephoneNumber: +1 206 936-2702 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 942-4419 +title: Chief Product Development Fellow +userPassword: Password1 +uid: BudimirE +givenName: Ethelyn +mail: BudimirE@a9b974f8337643ea8609cd0bff25a863.bitwarden.com +carLicense: QSW4EK +departmentNumber: 1129 +employeeType: Contract +homePhone: +1 206 114-9163 +initials: E. B. +mobile: +1 206 173-7869 +pager: +1 206 657-5862 +roomNumber: 9432 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozanne Fouillard +sn: Fouillard +description: This is Rozanne Fouillard's description +facsimileTelephoneNumber: +1 206 525-4352 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 893-1061 +title: Associate Human Resources Writer +userPassword: Password1 +uid: FouillaR +givenName: Rozanne +mail: FouillaR@7f44259fadc8467aa5ed92152f0f037e.bitwarden.com +carLicense: 3RXV5U +departmentNumber: 7174 +employeeType: Employee +homePhone: +1 206 912-9658 +initials: R. F. +mobile: +1 206 342-4333 +pager: +1 206 125-7295 +roomNumber: 9100 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Caye Setiawan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caye Setiawan +sn: Setiawan +description: This is Caye Setiawan's description +facsimileTelephoneNumber: +1 510 434-4155 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 443-3593 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: SetiawaC +givenName: Caye +mail: SetiawaC@899a157c5fcb4f20a59c759f3c7d4d65.bitwarden.com +carLicense: RA98O9 +departmentNumber: 1321 +employeeType: Employee +homePhone: +1 510 814-8051 +initials: C. S. +mobile: +1 510 225-5411 +pager: +1 510 645-1778 +roomNumber: 9403 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Daffy Hering,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daffy Hering +sn: Hering +description: This is Daffy Hering's description +facsimileTelephoneNumber: +1 213 188-6091 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 214-1645 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: HeringD +givenName: Daffy +mail: HeringD@0ffd7dc252424626a20bcce6a53d823f.bitwarden.com +carLicense: JNG93F +departmentNumber: 9556 +employeeType: Normal +homePhone: +1 213 525-8942 +initials: D. H. +mobile: +1 213 594-3695 +pager: +1 213 390-1010 +roomNumber: 9659 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=YoungJune Radford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YoungJune Radford +sn: Radford +description: This is YoungJune Radford's description +facsimileTelephoneNumber: +1 510 741-9992 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 510 139-3498 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: RadfordY +givenName: YoungJune +mail: RadfordY@e8e76146b3cf4785898d03ad6423f9d9.bitwarden.com +carLicense: TYBJSN +departmentNumber: 1107 +employeeType: Employee +homePhone: +1 510 842-2634 +initials: Y. R. +mobile: +1 510 796-6228 +pager: +1 510 422-3034 +roomNumber: 9864 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brana Susanto,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brana Susanto +sn: Susanto +description: This is Brana Susanto's description +facsimileTelephoneNumber: +1 213 510-5000 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 868-7690 +title: Junior Administrative Visionary +userPassword: Password1 +uid: SusantoB +givenName: Brana +mail: SusantoB@bc040a54299440bb80e6ade2d1ef97a9.bitwarden.com +carLicense: DUJXT1 +departmentNumber: 1806 +employeeType: Contract +homePhone: +1 213 849-9384 +initials: B. S. +mobile: +1 213 242-3619 +pager: +1 213 918-3132 +roomNumber: 9008 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Neile Niles,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neile Niles +sn: Niles +description: This is Neile Niles's description +facsimileTelephoneNumber: +1 206 122-7841 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 206 618-6954 +title: Chief Janitorial Sales Rep +userPassword: Password1 +uid: NilesN +givenName: Neile +mail: NilesN@0e50776aafcb4d6c9860210852e9591e.bitwarden.com +carLicense: LRXX6U +departmentNumber: 5906 +employeeType: Contract +homePhone: +1 206 141-3902 +initials: N. N. +mobile: +1 206 196-1861 +pager: +1 206 347-7325 +roomNumber: 9574 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Joydeep Loos,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joydeep Loos +sn: Loos +description: This is Joydeep Loos's description +facsimileTelephoneNumber: +1 206 536-9205 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 982-5147 +title: Chief Product Development Developer +userPassword: Password1 +uid: LoosJ +givenName: Joydeep +mail: LoosJ@3a57e18936584b66bbd6dab5016a2418.bitwarden.com +carLicense: 4CQ081 +departmentNumber: 2426 +employeeType: Normal +homePhone: +1 206 420-2969 +initials: J. L. +mobile: +1 206 879-1223 +pager: +1 206 840-2443 +roomNumber: 8079 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sohail Pilon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sohail Pilon +sn: Pilon +description: This is Sohail Pilon's description +facsimileTelephoneNumber: +1 415 891-5897 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 931-7823 +title: Master Product Development Grunt +userPassword: Password1 +uid: PilonS +givenName: Sohail +mail: PilonS@ba461e5be7394399aa72f7b05ba2fea3.bitwarden.com +carLicense: I4YQ86 +departmentNumber: 2192 +employeeType: Normal +homePhone: +1 415 422-1294 +initials: S. P. +mobile: +1 415 799-8067 +pager: +1 415 737-6681 +roomNumber: 9226 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Melisse Odum,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisse Odum +sn: Odum +description: This is Melisse Odum's description +facsimileTelephoneNumber: +1 804 203-6554 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 566-8022 +title: Associate Management President +userPassword: Password1 +uid: OdumM +givenName: Melisse +mail: OdumM@52253f5384a34a7d887f92c29a569c37.bitwarden.com +carLicense: S9DJDP +departmentNumber: 7151 +employeeType: Employee +homePhone: +1 804 467-2276 +initials: M. O. +mobile: +1 804 663-1597 +pager: +1 804 147-7181 +roomNumber: 8758 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Venkatakrishna Beardmore +sn: Beardmore +description: This is Venkatakrishna Beardmore's description +facsimileTelephoneNumber: +1 213 403-5116 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 971-3682 +title: Junior Management Writer +userPassword: Password1 +uid: BeardmoV +givenName: Venkatakrishna +mail: BeardmoV@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com +carLicense: MW8NIJ +departmentNumber: 4933 +employeeType: Contract +homePhone: +1 213 175-6997 +initials: V. B. +mobile: +1 213 815-4102 +pager: +1 213 802-2892 +roomNumber: 9205 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mellisa Lisenchuk +sn: Lisenchuk +description: This is Mellisa Lisenchuk's description +facsimileTelephoneNumber: +1 213 532-7032 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 822-5831 +title: Supreme Peons Visionary +userPassword: Password1 +uid: LisenchM +givenName: Mellisa +mail: LisenchM@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com +carLicense: HGTEV0 +departmentNumber: 2729 +employeeType: Contract +homePhone: +1 213 943-7550 +initials: M. L. +mobile: +1 213 146-3242 +pager: +1 213 309-7923 +roomNumber: 8577 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shay Fouchard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shay Fouchard +sn: Fouchard +description: This is Shay Fouchard's description +facsimileTelephoneNumber: +1 510 695-2219 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 698-7201 +title: Master Management Technician +userPassword: Password1 +uid: FoucharS +givenName: Shay +mail: FoucharS@5acaf493974e4933b27d5e78e25585d3.bitwarden.com +carLicense: W6SE80 +departmentNumber: 9486 +employeeType: Employee +homePhone: +1 510 131-8187 +initials: S. F. +mobile: +1 510 247-6322 +pager: +1 510 735-5836 +roomNumber: 8653 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lesly Checkland,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lesly Checkland +sn: Checkland +description: This is Lesly Checkland's description +facsimileTelephoneNumber: +1 415 477-7177 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 994-7742 +title: Master Peons Assistant +userPassword: Password1 +uid: ChecklaL +givenName: Lesly +mail: ChecklaL@9969b0f8851149aaa64ff3c67e9b6c53.bitwarden.com +carLicense: 5MLA3M +departmentNumber: 6706 +employeeType: Normal +homePhone: +1 415 602-4758 +initials: L. C. +mobile: +1 415 708-6754 +pager: +1 415 771-2995 +roomNumber: 8535 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Roelof Balascak,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roelof Balascak +sn: Balascak +description: This is Roelof Balascak's description +facsimileTelephoneNumber: +1 804 435-7134 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 580-7484 +title: Master Product Development Writer +userPassword: Password1 +uid: BalascaR +givenName: Roelof +mail: BalascaR@7f18e62561544141b6ccfe39f532339f.bitwarden.com +carLicense: OH6EM8 +departmentNumber: 5484 +employeeType: Employee +homePhone: +1 804 983-6481 +initials: R. B. +mobile: +1 804 374-8954 +pager: +1 804 715-5802 +roomNumber: 8340 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdalena Corpening +sn: Corpening +description: This is Magdalena Corpening's description +facsimileTelephoneNumber: +1 818 827-9295 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 521-7041 +title: Supreme Product Testing Technician +userPassword: Password1 +uid: CorpeniM +givenName: Magdalena +mail: CorpeniM@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com +carLicense: L1IJ0R +departmentNumber: 3361 +employeeType: Normal +homePhone: +1 818 957-7894 +initials: M. C. +mobile: +1 818 750-3806 +pager: +1 818 183-6987 +roomNumber: 9606 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Miguel Skof,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miguel Skof +sn: Skof +description: This is Miguel Skof's description +facsimileTelephoneNumber: +1 213 873-7692 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 213 823-5445 +title: Associate Product Development President +userPassword: Password1 +uid: SkofM +givenName: Miguel +mail: SkofM@3bd0291e8cff49548689d7d941f27f3f.bitwarden.com +carLicense: BMQK7S +departmentNumber: 6827 +employeeType: Contract +homePhone: +1 213 583-2827 +initials: M. S. +mobile: +1 213 796-4005 +pager: +1 213 873-6800 +roomNumber: 9098 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabriellia Todaro +sn: Todaro +description: This is Gabriellia Todaro's description +facsimileTelephoneNumber: +1 804 444-1255 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 601-8215 +title: Chief Administrative Manager +userPassword: Password1 +uid: TodaroG +givenName: Gabriellia +mail: TodaroG@bdf4207a20c5486ca943568e769c8344.bitwarden.com +carLicense: QYLWTU +departmentNumber: 3338 +employeeType: Normal +homePhone: +1 804 575-1755 +initials: G. T. +mobile: +1 804 691-6742 +pager: +1 804 257-6560 +roomNumber: 9332 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Larisa Hinkel +sn: Hinkel +description: This is Larisa Hinkel's description +facsimileTelephoneNumber: +1 818 289-8565 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 530-9082 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: HinkelL +givenName: Larisa +mail: HinkelL@1ea1e70e2ff14b90b31a900ccfe17f79.bitwarden.com +carLicense: 51W5CY +departmentNumber: 7483 +employeeType: Contract +homePhone: +1 818 921-3306 +initials: L. H. +mobile: +1 818 728-4237 +pager: +1 818 794-8790 +roomNumber: 9668 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zdenek Gahan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zdenek Gahan +sn: Gahan +description: This is Zdenek Gahan's description +facsimileTelephoneNumber: +1 206 299-7066 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 800-8139 +title: Chief Peons Developer +userPassword: Password1 +uid: GahanZ +givenName: Zdenek +mail: GahanZ@0b154eee289f4cc1b4a09755e63f9b87.bitwarden.com +carLicense: 18J6WD +departmentNumber: 1179 +employeeType: Normal +homePhone: +1 206 797-4705 +initials: Z. G. +mobile: +1 206 979-2952 +pager: +1 206 452-3383 +roomNumber: 9988 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lashonda Ramkissoon +sn: Ramkissoon +description: This is Lashonda Ramkissoon's description +facsimileTelephoneNumber: +1 804 892-2033 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 489-6987 +title: Chief Management Stooge +userPassword: Password1 +uid: RamkissL +givenName: Lashonda +mail: RamkissL@c25e2fe1ca694d8a8fe5c23754b47571.bitwarden.com +carLicense: 2E7KXY +departmentNumber: 7894 +employeeType: Normal +homePhone: +1 804 335-4223 +initials: L. R. +mobile: +1 804 785-2782 +pager: +1 804 155-3286 +roomNumber: 9853 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Romona TestNTMVAA +sn: TestNTMVAA +description: This is Romona TestNTMVAA's description +facsimileTelephoneNumber: +1 206 216-8266 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 206 674-8012 +title: Master Product Development Assistant +userPassword: Password1 +uid: TestNTMR +givenName: Romona +mail: TestNTMR@38fb869ba3244313992623d5e5856ca5.bitwarden.com +carLicense: KRPXK9 +departmentNumber: 8192 +employeeType: Employee +homePhone: +1 206 894-2505 +initials: R. T. +mobile: +1 206 218-6530 +pager: +1 206 954-5122 +roomNumber: 9481 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Merrile Lian,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrile Lian +sn: Lian +description: This is Merrile Lian's description +facsimileTelephoneNumber: +1 510 448-9332 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 145-9910 +title: Associate Payroll Assistant +userPassword: Password1 +uid: LianM +givenName: Merrile +mail: LianM@55c5ce522f7b4db190d4d14360a9a4fb.bitwarden.com +carLicense: O28M7Y +departmentNumber: 5560 +employeeType: Employee +homePhone: +1 510 664-6937 +initials: M. L. +mobile: +1 510 393-6911 +pager: +1 510 708-5719 +roomNumber: 8972 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Engracia Messick,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Engracia Messick +sn: Messick +description: This is Engracia Messick's description +facsimileTelephoneNumber: +1 510 668-3726 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 539-9265 +title: Associate Administrative Vice President +userPassword: Password1 +uid: MessickE +givenName: Engracia +mail: MessickE@9befe039acaf4d578a86c80d677d5d49.bitwarden.com +carLicense: Q232UJ +departmentNumber: 9511 +employeeType: Contract +homePhone: +1 510 666-2764 +initials: E. M. +mobile: +1 510 745-6640 +pager: +1 510 884-3697 +roomNumber: 8887 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamillah Wasylyk +sn: Wasylyk +description: This is Kamillah Wasylyk's description +facsimileTelephoneNumber: +1 510 994-8326 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 803-1872 +title: Associate Janitorial Director +userPassword: Password1 +uid: WasylykK +givenName: Kamillah +mail: WasylykK@1f8fe58d7a114a4583fc58f63a22a5b6.bitwarden.com +carLicense: LPR1VF +departmentNumber: 4034 +employeeType: Contract +homePhone: +1 510 753-2179 +initials: K. W. +mobile: +1 510 915-5308 +pager: +1 510 943-4738 +roomNumber: 9725 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Caron Sammon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caron Sammon +sn: Sammon +description: This is Caron Sammon's description +facsimileTelephoneNumber: +1 510 165-1286 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 772-4447 +title: Chief Janitorial Architect +userPassword: Password1 +uid: SammonC +givenName: Caron +mail: SammonC@db884c1075024ecfa29e3ec139ce7504.bitwarden.com +carLicense: NU98HC +departmentNumber: 2873 +employeeType: Contract +homePhone: +1 510 658-3367 +initials: C. S. +mobile: +1 510 439-3941 +pager: +1 510 653-4220 +roomNumber: 9384 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Charlotta McLennan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charlotta McLennan +sn: McLennan +description: This is Charlotta McLennan's description +facsimileTelephoneNumber: +1 510 349-5851 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 198-8445 +title: Supreme Management Janitor +userPassword: Password1 +uid: McLennaC +givenName: Charlotta +mail: McLennaC@9d8d4067dbc148d3a4106bfdfacf427c.bitwarden.com +carLicense: VP8QJC +departmentNumber: 6424 +employeeType: Normal +homePhone: +1 510 607-9626 +initials: C. M. +mobile: +1 510 570-2981 +pager: +1 510 617-1637 +roomNumber: 8422 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyssa Kuryliak +sn: Kuryliak +description: This is Lyssa Kuryliak's description +facsimileTelephoneNumber: +1 818 178-5295 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 819-1114 +title: Associate Human Resources Visionary +userPassword: Password1 +uid: KuryliaL +givenName: Lyssa +mail: KuryliaL@548e0585ebf342b985467eca55f4e5f8.bitwarden.com +carLicense: HTRN8X +departmentNumber: 9672 +employeeType: Employee +homePhone: +1 818 632-6371 +initials: L. K. +mobile: +1 818 330-9775 +pager: +1 818 357-5220 +roomNumber: 8186 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dexter Follett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dexter Follett +sn: Follett +description: This is Dexter Follett's description +facsimileTelephoneNumber: +1 206 133-6137 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 370-8638 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: FollettD +givenName: Dexter +mail: FollettD@22f8ba9a65234f13bdf03b22a8df34d6.bitwarden.com +carLicense: F5A3PY +departmentNumber: 6663 +employeeType: Normal +homePhone: +1 206 438-5717 +initials: D. F. +mobile: +1 206 256-2632 +pager: +1 206 922-1414 +roomNumber: 8756 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Una Ausley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Una Ausley +sn: Ausley +description: This is Una Ausley's description +facsimileTelephoneNumber: +1 213 567-4930 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 773-2507 +title: Supreme Management Mascot +userPassword: Password1 +uid: AusleyU +givenName: Una +mail: AusleyU@e5bf2a74f7d948bb97855f44d83972fe.bitwarden.com +carLicense: 38P8EP +departmentNumber: 2581 +employeeType: Employee +homePhone: +1 213 792-9893 +initials: U. A. +mobile: +1 213 201-9321 +pager: +1 213 750-3506 +roomNumber: 9872 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Adria Calow,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adria Calow +sn: Calow +description: This is Adria Calow's description +facsimileTelephoneNumber: +1 206 801-7701 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 206 930-5990 +title: Supreme Product Development Technician +userPassword: Password1 +uid: CalowA +givenName: Adria +mail: CalowA@95930feb4c9b47f8b0d685739e06e5ea.bitwarden.com +carLicense: 7YM6MQ +departmentNumber: 5052 +employeeType: Employee +homePhone: +1 206 939-6567 +initials: A. C. +mobile: +1 206 481-9864 +pager: +1 206 687-5786 +roomNumber: 9692 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Alora Bamfo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alora Bamfo +sn: Bamfo +description: This is Alora Bamfo's description +facsimileTelephoneNumber: +1 206 332-8575 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 120-7500 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: BamfoA +givenName: Alora +mail: BamfoA@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com +carLicense: GU4GGI +departmentNumber: 9451 +employeeType: Normal +homePhone: +1 206 502-1215 +initials: A. B. +mobile: +1 206 714-3807 +pager: +1 206 829-9931 +roomNumber: 8156 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bharat Wiederhold +sn: Wiederhold +description: This is Bharat Wiederhold's description +facsimileTelephoneNumber: +1 408 553-1512 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 562-6412 +title: Associate Administrative Warrior +userPassword: Password1 +uid: WiederhB +givenName: Bharat +mail: WiederhB@c533c4ce9d2d4ce095673ea3b06d665b.bitwarden.com +carLicense: GF4R0C +departmentNumber: 2808 +employeeType: Normal +homePhone: +1 408 448-1894 +initials: B. W. +mobile: +1 408 742-4971 +pager: +1 408 934-9185 +roomNumber: 8534 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gunnar Molani,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gunnar Molani +sn: Molani +description: This is Gunnar Molani's description +facsimileTelephoneNumber: +1 206 200-1120 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 343-3740 +title: Supreme Peons Assistant +userPassword: Password1 +uid: MolaniG +givenName: Gunnar +mail: MolaniG@21d4927a612549a1b797c77aee423501.bitwarden.com +carLicense: UVL54B +departmentNumber: 4038 +employeeType: Normal +homePhone: +1 206 574-5116 +initials: G. M. +mobile: +1 206 859-5979 +pager: +1 206 917-4680 +roomNumber: 8684 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabina Jayamanne +sn: Jayamanne +description: This is Sabina Jayamanne's description +facsimileTelephoneNumber: +1 818 430-1157 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 655-9222 +title: Associate Product Testing Architect +userPassword: Password1 +uid: JayamanS +givenName: Sabina +mail: JayamanS@c41f8f7aea354718b6ea3277359c3684.bitwarden.com +carLicense: KBOR74 +departmentNumber: 2564 +employeeType: Employee +homePhone: +1 818 227-2345 +initials: S. J. +mobile: +1 818 340-9858 +pager: +1 818 612-9572 +roomNumber: 8511 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lenee Marasco,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenee Marasco +sn: Marasco +description: This is Lenee Marasco's description +facsimileTelephoneNumber: +1 206 601-9431 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 141-3725 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: MarascoL +givenName: Lenee +mail: MarascoL@a63636764be2417c8862dba36d524669.bitwarden.com +carLicense: 5NMO0W +departmentNumber: 7048 +employeeType: Normal +homePhone: +1 206 514-3243 +initials: L. M. +mobile: +1 206 653-3542 +pager: +1 206 916-5799 +roomNumber: 8998 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Byron Shelegey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Byron Shelegey +sn: Shelegey +description: This is Byron Shelegey's description +facsimileTelephoneNumber: +1 510 339-6254 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 824-7565 +title: Associate Management Sales Rep +userPassword: Password1 +uid: ShelegeB +givenName: Byron +mail: ShelegeB@bf0924ca7ffa40efa64182b434d3b054.bitwarden.com +carLicense: SOCW01 +departmentNumber: 4681 +employeeType: Contract +homePhone: +1 510 470-9173 +initials: B. S. +mobile: +1 510 699-5229 +pager: +1 510 835-6143 +roomNumber: 9983 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Charline Jago,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charline Jago +sn: Jago +description: This is Charline Jago's description +facsimileTelephoneNumber: +1 804 777-8804 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 199-5635 +title: Supreme Payroll Writer +userPassword: Password1 +uid: JagoC +givenName: Charline +mail: JagoC@dede4ef26e0047b5ae95d810fbe16f29.bitwarden.com +carLicense: A9NT9A +departmentNumber: 4021 +employeeType: Normal +homePhone: +1 804 789-4180 +initials: C. J. +mobile: +1 804 433-7181 +pager: +1 804 647-6794 +roomNumber: 9400 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anette Holloway,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anette Holloway +sn: Holloway +description: This is Anette Holloway's description +facsimileTelephoneNumber: +1 213 317-4277 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 362-3111 +title: Master Janitorial Writer +userPassword: Password1 +uid: HollowaA +givenName: Anette +mail: HollowaA@3835da84e4cb44b5a38c776421814f8a.bitwarden.com +carLicense: R4FR0Q +departmentNumber: 1937 +employeeType: Employee +homePhone: +1 213 406-8773 +initials: A. H. +mobile: +1 213 190-5616 +pager: +1 213 876-9977 +roomNumber: 8898 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Florida Polashock,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florida Polashock +sn: Polashock +description: This is Florida Polashock's description +facsimileTelephoneNumber: +1 213 176-5568 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 892-4444 +title: Chief Human Resources Pinhead +userPassword: Password1 +uid: PolashoF +givenName: Florida +mail: PolashoF@9bca7e1fa66343078f8d2f441ac03fca.bitwarden.com +carLicense: KAG9WW +departmentNumber: 5140 +employeeType: Contract +homePhone: +1 213 470-8110 +initials: F. P. +mobile: +1 213 321-9331 +pager: +1 213 136-4491 +roomNumber: 8769 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Snair Mcshane,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Snair Mcshane +sn: Mcshane +description: This is Snair Mcshane's description +facsimileTelephoneNumber: +1 804 394-5623 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 805-6211 +title: Master Janitorial Madonna +userPassword: Password1 +uid: McshaneS +givenName: Snair +mail: McshaneS@4b02224ed79d49068514723b7495859b.bitwarden.com +carLicense: M9RKYA +departmentNumber: 4841 +employeeType: Contract +homePhone: +1 804 683-5164 +initials: S. M. +mobile: +1 804 553-8436 +pager: +1 804 927-8527 +roomNumber: 8026 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selcuk Fogelson +sn: Fogelson +description: This is Selcuk Fogelson's description +facsimileTelephoneNumber: +1 510 168-9195 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 372-5820 +title: Junior Product Development Artist +userPassword: Password1 +uid: FogelsoS +givenName: Selcuk +mail: FogelsoS@54ce292eb157498aac7b1683764ec867.bitwarden.com +carLicense: YKTCDW +departmentNumber: 4528 +employeeType: Contract +homePhone: +1 510 489-4629 +initials: S. F. +mobile: +1 510 989-5290 +pager: +1 510 635-3721 +roomNumber: 9737 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jackson Schraner,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jackson Schraner +sn: Schraner +description: This is Jackson Schraner's description +facsimileTelephoneNumber: +1 213 945-7906 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 123-2365 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: SchraneJ +givenName: Jackson +mail: SchraneJ@ab8c896427cc47d7a32f95081ee3cada.bitwarden.com +carLicense: G6FOKN +departmentNumber: 9682 +employeeType: Contract +homePhone: +1 213 490-6829 +initials: J. S. +mobile: +1 213 226-8560 +pager: +1 213 677-6584 +roomNumber: 8104 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhHoa Fisprod +sn: Fisprod +description: This is ThanhHoa Fisprod's description +facsimileTelephoneNumber: +1 818 527-6369 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 629-6278 +title: Master Management Admin +userPassword: Password1 +uid: FisprodT +givenName: ThanhHoa +mail: FisprodT@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com +carLicense: 8WWRCH +departmentNumber: 2028 +employeeType: Employee +homePhone: +1 818 229-1042 +initials: T. F. +mobile: +1 818 257-7344 +pager: +1 818 607-8497 +roomNumber: 9125 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cherianne Tidd,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherianne Tidd +sn: Tidd +description: This is Cherianne Tidd's description +facsimileTelephoneNumber: +1 213 467-3546 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 866-5143 +title: Chief Payroll Manager +userPassword: Password1 +uid: TiddC +givenName: Cherianne +mail: TiddC@848b025264d14e669cec02146f987418.bitwarden.com +carLicense: OWQL37 +departmentNumber: 7866 +employeeType: Employee +homePhone: +1 213 521-1857 +initials: C. T. +mobile: +1 213 864-2020 +pager: +1 213 114-9890 +roomNumber: 9249 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Melisent Sampat,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisent Sampat +sn: Sampat +description: This is Melisent Sampat's description +facsimileTelephoneNumber: +1 206 277-3859 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 206 219-2643 +title: Chief Human Resources Punk +userPassword: Password1 +uid: SampatM +givenName: Melisent +mail: SampatM@5297f06d12e84c7793e176a6624333e0.bitwarden.com +carLicense: VW2FC2 +departmentNumber: 9723 +employeeType: Normal +homePhone: +1 206 718-2383 +initials: M. S. +mobile: +1 206 732-8485 +pager: +1 206 744-4496 +roomNumber: 8570 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tiffy Udall,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffy Udall +sn: Udall +description: This is Tiffy Udall's description +facsimileTelephoneNumber: +1 206 963-8398 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 823-6633 +title: Chief Payroll Engineer +userPassword: Password1 +uid: UdallT +givenName: Tiffy +mail: UdallT@a80405df7aef4b3db059a6cc73288f61.bitwarden.com +carLicense: 5IE9TQ +departmentNumber: 5127 +employeeType: Contract +homePhone: +1 206 216-4816 +initials: T. U. +mobile: +1 206 445-7787 +pager: +1 206 884-8794 +roomNumber: 8106 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Adeline Cruz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adeline Cruz +sn: Cruz +description: This is Adeline Cruz's description +facsimileTelephoneNumber: +1 206 366-8217 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 918-2544 +title: Junior Product Testing Madonna +userPassword: Password1 +uid: CruzA +givenName: Adeline +mail: CruzA@068a0b6470f0444b9815d3ef36001ebd.bitwarden.com +carLicense: 241K7X +departmentNumber: 6664 +employeeType: Employee +homePhone: +1 206 490-5127 +initials: A. C. +mobile: +1 206 517-7791 +pager: +1 206 514-5265 +roomNumber: 9698 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tuan Fenati,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tuan Fenati +sn: Fenati +description: This is Tuan Fenati's description +facsimileTelephoneNumber: +1 804 838-4594 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 345-6146 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: FenatiT +givenName: Tuan +mail: FenatiT@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com +carLicense: RK6LLJ +departmentNumber: 8111 +employeeType: Contract +homePhone: +1 804 505-9469 +initials: T. F. +mobile: +1 804 762-4093 +pager: +1 804 921-6552 +roomNumber: 9850 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ljilyana Kanungo +sn: Kanungo +description: This is Ljilyana Kanungo's description +facsimileTelephoneNumber: +1 408 129-4371 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 515-7395 +title: Supreme Human Resources Consultant +userPassword: Password1 +uid: KanungoL +givenName: Ljilyana +mail: KanungoL@2a906f1560284502a1b19f87829f93ea.bitwarden.com +carLicense: FCH2PH +departmentNumber: 4756 +employeeType: Normal +homePhone: +1 408 660-6652 +initials: L. K. +mobile: +1 408 335-6272 +pager: +1 408 576-8652 +roomNumber: 9293 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: TiongHoe Cuthill +sn: Cuthill +description: This is TiongHoe Cuthill's description +facsimileTelephoneNumber: +1 415 563-9035 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 980-9940 +title: Master Product Testing Punk +userPassword: Password1 +uid: CuthillT +givenName: TiongHoe +mail: CuthillT@e059f798bf444774a99e078fccd4a4f3.bitwarden.com +carLicense: S90L16 +departmentNumber: 9345 +employeeType: Normal +homePhone: +1 415 706-4099 +initials: T. C. +mobile: +1 415 250-3186 +pager: +1 415 664-6394 +roomNumber: 9063 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jaclyn Hook,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaclyn Hook +sn: Hook +description: This is Jaclyn Hook's description +facsimileTelephoneNumber: +1 415 608-5645 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 960-7076 +title: Master Payroll Pinhead +userPassword: Password1 +uid: HookJ +givenName: Jaclyn +mail: HookJ@5c9986617ae9407ea5a172b5f4cff660.bitwarden.com +carLicense: L7QLHU +departmentNumber: 8108 +employeeType: Contract +homePhone: +1 415 373-4548 +initials: J. H. +mobile: +1 415 671-2833 +pager: +1 415 345-6919 +roomNumber: 9539 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lucky DeBaets,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucky DeBaets +sn: DeBaets +description: This is Lucky DeBaets's description +facsimileTelephoneNumber: +1 206 504-4598 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 748-3624 +title: Master Payroll Architect +userPassword: Password1 +uid: DeBaetsL +givenName: Lucky +mail: DeBaetsL@8b6f5b0e3bf1445e87a0ee0539e4853f.bitwarden.com +carLicense: BCW8FM +departmentNumber: 1976 +employeeType: Normal +homePhone: +1 206 655-6952 +initials: L. D. +mobile: +1 206 453-7774 +pager: +1 206 539-6948 +roomNumber: 9603 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Toma Belcher,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toma Belcher +sn: Belcher +description: This is Toma Belcher's description +facsimileTelephoneNumber: +1 818 306-1607 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 749-7405 +title: Chief Janitorial Grunt +userPassword: Password1 +uid: BelcherT +givenName: Toma +mail: BelcherT@e2cd61401de9414191cd26ece93eb8bb.bitwarden.com +carLicense: FOA1F1 +departmentNumber: 9378 +employeeType: Normal +homePhone: +1 818 216-8787 +initials: T. B. +mobile: +1 818 803-5166 +pager: +1 818 301-3718 +roomNumber: 9172 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ayda Ricketson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ayda Ricketson +sn: Ricketson +description: This is Ayda Ricketson's description +facsimileTelephoneNumber: +1 804 318-8689 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 423-8609 +title: Associate Administrative Visionary +userPassword: Password1 +uid: RicketsA +givenName: Ayda +mail: RicketsA@102d4dd16d9e43f0b636c4011b41a3bb.bitwarden.com +carLicense: P74QHK +departmentNumber: 1374 +employeeType: Normal +homePhone: +1 804 619-3521 +initials: A. R. +mobile: +1 804 752-2703 +pager: +1 804 977-4263 +roomNumber: 9212 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Edie Fuller,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edie Fuller +sn: Fuller +description: This is Edie Fuller's description +facsimileTelephoneNumber: +1 206 315-9216 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 986-3403 +title: Associate Product Development Engineer +userPassword: Password1 +uid: FullerE +givenName: Edie +mail: FullerE@6ce18e31fee44ca6a1d60162c1ff34ee.bitwarden.com +carLicense: 15M6QY +departmentNumber: 9018 +employeeType: Employee +homePhone: +1 206 810-9639 +initials: E. F. +mobile: +1 206 508-8455 +pager: +1 206 991-4822 +roomNumber: 9547 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Adrienne Teacher,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrienne Teacher +sn: Teacher +description: This is Adrienne Teacher's description +facsimileTelephoneNumber: +1 804 292-1738 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 325-7184 +title: Master Product Development Manager +userPassword: Password1 +uid: TeacherA +givenName: Adrienne +mail: TeacherA@a8f35a5fbab443c4bb234c040b553494.bitwarden.com +carLicense: Y1QYMU +departmentNumber: 8530 +employeeType: Contract +homePhone: +1 804 136-3532 +initials: A. T. +mobile: +1 804 212-5059 +pager: +1 804 296-9421 +roomNumber: 9652 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Karilynn Sokolowski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karilynn Sokolowski +sn: Sokolowski +description: This is Karilynn Sokolowski's description +facsimileTelephoneNumber: +1 818 965-4400 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 807-2311 +title: Master Management Janitor +userPassword: Password1 +uid: SokolowK +givenName: Karilynn +mail: SokolowK@59b79c4bb1de445bb80956c31a33b163.bitwarden.com +carLicense: V90BBQ +departmentNumber: 5725 +employeeType: Employee +homePhone: +1 818 987-7048 +initials: K. S. +mobile: +1 818 399-3538 +pager: +1 818 634-5638 +roomNumber: 9083 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Edna Etemad,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edna Etemad +sn: Etemad +description: This is Edna Etemad's description +facsimileTelephoneNumber: +1 415 978-3265 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 127-4939 +title: Master Management Developer +userPassword: Password1 +uid: EtemadE +givenName: Edna +mail: EtemadE@268e542432d8452492860decdd327bf6.bitwarden.com +carLicense: GSNILF +departmentNumber: 6349 +employeeType: Normal +homePhone: +1 415 134-3659 +initials: E. E. +mobile: +1 415 471-4265 +pager: +1 415 934-6256 +roomNumber: 8840 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Heike Hoxie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heike Hoxie +sn: Hoxie +description: This is Heike Hoxie's description +facsimileTelephoneNumber: +1 408 259-1383 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 408 648-4095 +title: Chief Payroll Warrior +userPassword: Password1 +uid: HoxieH +givenName: Heike +mail: HoxieH@8237422e949f4acf92d97f787e6bf098.bitwarden.com +carLicense: X50ETI +departmentNumber: 4732 +employeeType: Contract +homePhone: +1 408 659-9394 +initials: H. H. +mobile: +1 408 491-1041 +pager: +1 408 605-2965 +roomNumber: 9839 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Noelyn Snair,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noelyn Snair +sn: Snair +description: This is Noelyn Snair's description +facsimileTelephoneNumber: +1 206 419-2404 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 427-5773 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: SnairN +givenName: Noelyn +mail: SnairN@76bdb182929147bbb5f99a407f7da581.bitwarden.com +carLicense: 81C1YG +departmentNumber: 5559 +employeeType: Normal +homePhone: +1 206 236-1757 +initials: N. S. +mobile: +1 206 467-1655 +pager: +1 206 811-5234 +roomNumber: 9943 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Annis Yung,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annis Yung +sn: Yung +description: This is Annis Yung's description +facsimileTelephoneNumber: +1 510 235-5617 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 220-8299 +title: Junior Product Testing Pinhead +userPassword: Password1 +uid: YungA +givenName: Annis +mail: YungA@3dedccc8ea03468b9d15ac11ca05c230.bitwarden.com +carLicense: BVS7SJ +departmentNumber: 4646 +employeeType: Employee +homePhone: +1 510 660-7141 +initials: A. Y. +mobile: +1 510 737-6738 +pager: +1 510 648-9644 +roomNumber: 8318 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Olenka Gulis,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olenka Gulis +sn: Gulis +description: This is Olenka Gulis's description +facsimileTelephoneNumber: +1 818 994-4537 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 930-5130 +title: Chief Human Resources Artist +userPassword: Password1 +uid: GulisO +givenName: Olenka +mail: GulisO@4b5741ffe1ab4f72819c8cda7b7df64c.bitwarden.com +carLicense: LQULRB +departmentNumber: 1782 +employeeType: Contract +homePhone: +1 818 633-6964 +initials: O. G. +mobile: +1 818 674-1626 +pager: +1 818 830-4358 +roomNumber: 8513 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jeanna Brousseau,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeanna Brousseau +sn: Brousseau +description: This is Jeanna Brousseau's description +facsimileTelephoneNumber: +1 206 156-1463 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 123-6750 +title: Associate Management Assistant +userPassword: Password1 +uid: BrousseJ +givenName: Jeanna +mail: BrousseJ@d9a304fc4b9f41c9950557d3404312a3.bitwarden.com +carLicense: O020DI +departmentNumber: 8026 +employeeType: Normal +homePhone: +1 206 629-4841 +initials: J. B. +mobile: +1 206 633-9296 +pager: +1 206 924-6142 +roomNumber: 8148 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nikolaos Farley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nikolaos Farley +sn: Farley +description: This is Nikolaos Farley's description +facsimileTelephoneNumber: +1 804 577-5312 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 766-5708 +title: Supreme Management President +userPassword: Password1 +uid: FarleyN +givenName: Nikolaos +mail: FarleyN@3bf5412f9df744cdbfb41ee6ad860514.bitwarden.com +carLicense: KWG11X +departmentNumber: 1285 +employeeType: Employee +homePhone: +1 804 876-5060 +initials: N. F. +mobile: +1 804 599-8265 +pager: +1 804 206-6456 +roomNumber: 8957 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sydney Olivares,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sydney Olivares +sn: Olivares +description: This is Sydney Olivares's description +facsimileTelephoneNumber: +1 818 835-7999 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 652-2167 +title: Associate Management Figurehead +userPassword: Password1 +uid: OlivareS +givenName: Sydney +mail: OlivareS@ff087739d92a453c8986a21bbdeb6b99.bitwarden.com +carLicense: 77WY44 +departmentNumber: 8816 +employeeType: Contract +homePhone: +1 818 146-2943 +initials: S. O. +mobile: +1 818 807-1158 +pager: +1 818 209-8886 +roomNumber: 9841 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lary MacMillanBrown,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lary MacMillanBrown +sn: MacMillanBrown +description: This is Lary MacMillanBrown's description +facsimileTelephoneNumber: +1 804 543-3203 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 518-9220 +title: Master Management Stooge +userPassword: Password1 +uid: MacMillL +givenName: Lary +mail: MacMillL@4d9f7b6850444a8d801b43c9573addba.bitwarden.com +carLicense: 826UPP +departmentNumber: 7236 +employeeType: Employee +homePhone: +1 804 444-6670 +initials: L. M. +mobile: +1 804 357-3984 +pager: +1 804 501-6173 +roomNumber: 9316 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Makam Junaid,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Makam Junaid +sn: Junaid +description: This is Makam Junaid's description +facsimileTelephoneNumber: +1 415 417-3292 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 820-3081 +title: Chief Payroll Developer +userPassword: Password1 +uid: JunaidM +givenName: Makam +mail: JunaidM@bac802e94a68427ebf6e1f43dd3c8d74.bitwarden.com +carLicense: 9PFKFE +departmentNumber: 5039 +employeeType: Normal +homePhone: +1 415 671-3819 +initials: M. J. +mobile: +1 415 583-5581 +pager: +1 415 240-4431 +roomNumber: 8741 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Janson Breon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janson Breon +sn: Breon +description: This is Janson Breon's description +facsimileTelephoneNumber: +1 804 326-6041 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 171-4834 +title: Junior Human Resources President +userPassword: Password1 +uid: BreonJ +givenName: Janson +mail: BreonJ@efeb1d35d7fb4a6698c2e450cd5716f4.bitwarden.com +carLicense: V0PT44 +departmentNumber: 1361 +employeeType: Employee +homePhone: +1 804 881-5481 +initials: J. B. +mobile: +1 804 546-8161 +pager: +1 804 667-8061 +roomNumber: 9242 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Persis Bourret,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Persis Bourret +sn: Bourret +description: This is Persis Bourret's description +facsimileTelephoneNumber: +1 804 343-3199 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 350-2458 +title: Supreme Product Testing Fellow +userPassword: Password1 +uid: BourretP +givenName: Persis +mail: BourretP@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com +carLicense: 6JQBUT +departmentNumber: 1587 +employeeType: Contract +homePhone: +1 804 838-2039 +initials: P. B. +mobile: +1 804 565-1251 +pager: +1 804 198-4292 +roomNumber: 9737 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nonah Naylor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nonah Naylor +sn: Naylor +description: This is Nonah Naylor's description +facsimileTelephoneNumber: +1 408 792-9130 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 271-2350 +title: Associate Peons Architect +userPassword: Password1 +uid: NaylorN +givenName: Nonah +mail: NaylorN@0f8c40ba5d0843abbe9b0c196da09ca0.bitwarden.com +carLicense: MRRBLP +departmentNumber: 7644 +employeeType: Contract +homePhone: +1 408 980-2529 +initials: N. N. +mobile: +1 408 442-7456 +pager: +1 408 576-4128 +roomNumber: 8838 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Delmar Goold,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delmar Goold +sn: Goold +description: This is Delmar Goold's description +facsimileTelephoneNumber: +1 818 288-9881 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 167-2080 +title: Junior Management Admin +userPassword: Password1 +uid: GooldD +givenName: Delmar +mail: GooldD@6762e9a5ac5b4baaa52aa304581ce2d6.bitwarden.com +carLicense: I90DLG +departmentNumber: 2396 +employeeType: Employee +homePhone: +1 818 507-2703 +initials: D. G. +mobile: +1 818 526-1231 +pager: +1 818 482-6158 +roomNumber: 9751 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Noslab Despres,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noslab Despres +sn: Despres +description: This is Noslab Despres's description +facsimileTelephoneNumber: +1 213 349-3107 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 213 666-6502 +title: Master Product Development Dictator +userPassword: Password1 +uid: DespresN +givenName: Noslab +mail: DespresN@89a663a1a18c4ca7afe3412fbf2c4e97.bitwarden.com +carLicense: MK6WE1 +departmentNumber: 6417 +employeeType: Normal +homePhone: +1 213 947-2855 +initials: N. D. +mobile: +1 213 507-4764 +pager: +1 213 857-8746 +roomNumber: 8913 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Leonida Maloney,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonida Maloney +sn: Maloney +description: This is Leonida Maloney's description +facsimileTelephoneNumber: +1 213 266-8415 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 913-5023 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: MaloneyL +givenName: Leonida +mail: MaloneyL@bc9d8b4b30864998bd20fc77d040bd74.bitwarden.com +carLicense: JNPB72 +departmentNumber: 6747 +employeeType: Employee +homePhone: +1 213 500-9053 +initials: L. M. +mobile: +1 213 917-1250 +pager: +1 213 523-1052 +roomNumber: 8873 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Heida Witzmann,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heida Witzmann +sn: Witzmann +description: This is Heida Witzmann's description +facsimileTelephoneNumber: +1 804 561-6927 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 757-5763 +title: Supreme Product Development Technician +userPassword: Password1 +uid: WitzmanH +givenName: Heida +mail: WitzmanH@98503141bef84f26be5517cb6d1c3fb5.bitwarden.com +carLicense: RCR9S9 +departmentNumber: 6243 +employeeType: Employee +homePhone: +1 804 156-8036 +initials: H. W. +mobile: +1 804 782-3391 +pager: +1 804 636-6558 +roomNumber: 8486 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Azhar Klug,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Azhar Klug +sn: Klug +description: This is Azhar Klug's description +facsimileTelephoneNumber: +1 206 398-2992 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 529-1890 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: KlugA +givenName: Azhar +mail: KlugA@6efed6dc63bd46768f25dd1a717dc7fc.bitwarden.com +carLicense: IGWEKX +departmentNumber: 3753 +employeeType: Employee +homePhone: +1 206 631-7942 +initials: A. K. +mobile: +1 206 873-1656 +pager: +1 206 337-2940 +roomNumber: 8452 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lynnette Mirande,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynnette Mirande +sn: Mirande +description: This is Lynnette Mirande's description +facsimileTelephoneNumber: +1 206 365-7754 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 480-9392 +title: Master Product Development Architect +userPassword: Password1 +uid: MirandeL +givenName: Lynnette +mail: MirandeL@1112fe1439844e3ca725d40b9996ff1f.bitwarden.com +carLicense: 3IUCJI +departmentNumber: 1537 +employeeType: Normal +homePhone: +1 206 207-2400 +initials: L. M. +mobile: +1 206 248-2064 +pager: +1 206 287-8718 +roomNumber: 9948 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Esmond Ronald,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esmond Ronald +sn: Ronald +description: This is Esmond Ronald's description +facsimileTelephoneNumber: +1 804 717-9715 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 477-1984 +title: Chief Management Consultant +userPassword: Password1 +uid: RonaldE +givenName: Esmond +mail: RonaldE@364738d989114590842291a79ecffd92.bitwarden.com +carLicense: QBOJ0K +departmentNumber: 4457 +employeeType: Normal +homePhone: +1 804 699-8572 +initials: E. R. +mobile: +1 804 774-9718 +pager: +1 804 615-9102 +roomNumber: 9892 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ruthie Weyand,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruthie Weyand +sn: Weyand +description: This is Ruthie Weyand's description +facsimileTelephoneNumber: +1 213 877-6710 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 695-3567 +title: Chief Administrative President +userPassword: Password1 +uid: WeyandR +givenName: Ruthie +mail: WeyandR@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com +carLicense: SEX88R +departmentNumber: 7944 +employeeType: Normal +homePhone: +1 213 190-5418 +initials: R. W. +mobile: +1 213 942-2242 +pager: +1 213 483-1398 +roomNumber: 9306 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ileane DeWitte,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ileane DeWitte +sn: DeWitte +description: This is Ileane DeWitte's description +facsimileTelephoneNumber: +1 213 235-1837 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 425-6477 +title: Junior Peons Director +userPassword: Password1 +uid: DeWitteI +givenName: Ileane +mail: DeWitteI@6e1688424ec244adb10f2e8d17d9a231.bitwarden.com +carLicense: IVOEFL +departmentNumber: 2231 +employeeType: Employee +homePhone: +1 213 330-7780 +initials: I. D. +mobile: +1 213 195-5916 +pager: +1 213 429-6575 +roomNumber: 8433 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chocs Lanava,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chocs Lanava +sn: Lanava +description: This is Chocs Lanava's description +facsimileTelephoneNumber: +1 804 314-5045 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 540-7542 +title: Master Product Development Visionary +userPassword: Password1 +uid: LanavaC +givenName: Chocs +mail: LanavaC@e96c6aa872a44f27a69d8b17ae3ca387.bitwarden.com +carLicense: 50KMYX +departmentNumber: 4172 +employeeType: Employee +homePhone: +1 804 535-5236 +initials: C. L. +mobile: +1 804 275-9175 +pager: +1 804 331-7833 +roomNumber: 9489 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Abu Hubbard,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abu Hubbard +sn: Hubbard +description: This is Abu Hubbard's description +facsimileTelephoneNumber: +1 818 452-6451 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 314-6561 +title: Associate Peons Engineer +userPassword: Password1 +uid: HubbardA +givenName: Abu +mail: HubbardA@7b4016aa058a4e80b807fb4d0e4a0b36.bitwarden.com +carLicense: URT6A3 +departmentNumber: 5539 +employeeType: Contract +homePhone: +1 818 467-8553 +initials: A. H. +mobile: +1 818 267-3152 +pager: +1 818 943-9563 +roomNumber: 9721 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Felita Kaps,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felita Kaps +sn: Kaps +description: This is Felita Kaps's description +facsimileTelephoneNumber: +1 408 787-7300 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 399-2363 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: KapsF +givenName: Felita +mail: KapsF@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com +carLicense: BFH4SK +departmentNumber: 2327 +employeeType: Contract +homePhone: +1 408 940-4467 +initials: F. K. +mobile: +1 408 468-8104 +pager: +1 408 217-3464 +roomNumber: 9991 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Christin Shea,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christin Shea +sn: Shea +description: This is Christin Shea's description +facsimileTelephoneNumber: +1 206 973-9161 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 832-5894 +title: Supreme Administrative Admin +userPassword: Password1 +uid: SheaC +givenName: Christin +mail: SheaC@cda870670aa345148330b4790dab0c4f.bitwarden.com +carLicense: YBABMG +departmentNumber: 3492 +employeeType: Employee +homePhone: +1 206 115-3247 +initials: C. S. +mobile: +1 206 531-6658 +pager: +1 206 573-1484 +roomNumber: 8353 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Haroon Trese,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haroon Trese +sn: Trese +description: This is Haroon Trese's description +facsimileTelephoneNumber: +1 510 799-1026 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 742-9765 +title: Associate Payroll Technician +userPassword: Password1 +uid: TreseH +givenName: Haroon +mail: TreseH@37a456ace6484592af9ec4787e1dcc5f.bitwarden.com +carLicense: CWTQOB +departmentNumber: 6598 +employeeType: Normal +homePhone: +1 510 963-5872 +initials: H. T. +mobile: +1 510 610-4863 +pager: +1 510 589-7506 +roomNumber: 9655 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Norbert Ruest,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norbert Ruest +sn: Ruest +description: This is Norbert Ruest's description +facsimileTelephoneNumber: +1 510 248-3952 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 982-3204 +title: Master Human Resources Engineer +userPassword: Password1 +uid: RuestN +givenName: Norbert +mail: RuestN@8504384638364f5d9fea2c2c4a28b90e.bitwarden.com +carLicense: 7F5H10 +departmentNumber: 9132 +employeeType: Normal +homePhone: +1 510 732-6444 +initials: N. R. +mobile: +1 510 213-9647 +pager: +1 510 568-8503 +roomNumber: 9965 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farzin Gleditsch +sn: Gleditsch +description: This is Farzin Gleditsch's description +facsimileTelephoneNumber: +1 510 517-5261 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 903-6229 +title: Associate Janitorial Punk +userPassword: Password1 +uid: GleditsF +givenName: Farzin +mail: GleditsF@9ce658881e8c455194b88b370a33621e.bitwarden.com +carLicense: MDRQ8B +departmentNumber: 1827 +employeeType: Employee +homePhone: +1 510 184-4007 +initials: F. G. +mobile: +1 510 905-8511 +pager: +1 510 748-4692 +roomNumber: 8097 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Woody Bourlet,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Woody Bourlet +sn: Bourlet +description: This is Woody Bourlet's description +facsimileTelephoneNumber: +1 206 869-7496 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 206 715-9293 +title: Chief Administrative Grunt +userPassword: Password1 +uid: BourletW +givenName: Woody +mail: BourletW@b5a0b2f2ff6247cdb5697d2b9d25240d.bitwarden.com +carLicense: R06F3F +departmentNumber: 2810 +employeeType: Employee +homePhone: +1 206 154-6901 +initials: W. B. +mobile: +1 206 560-9454 +pager: +1 206 496-7085 +roomNumber: 8926 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Saied DeCristofaro,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saied DeCristofaro +sn: DeCristofaro +description: This is Saied DeCristofaro's description +facsimileTelephoneNumber: +1 206 952-8133 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 600-2082 +title: Chief Peons Architect +userPassword: Password1 +uid: DeCristS +givenName: Saied +mail: DeCristS@7011cb45501a4d689c26e15dc899ef15.bitwarden.com +carLicense: D0JXUJ +departmentNumber: 4379 +employeeType: Employee +homePhone: +1 206 838-3310 +initials: S. D. +mobile: +1 206 943-2377 +pager: +1 206 821-6390 +roomNumber: 8258 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dael Lariviere,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dael Lariviere +sn: Lariviere +description: This is Dael Lariviere's description +facsimileTelephoneNumber: +1 408 809-9021 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 206-7020 +title: Chief Administrative Stooge +userPassword: Password1 +uid: LarivieD +givenName: Dael +mail: LarivieD@864d7fffc05349a6937099b5cb95ba17.bitwarden.com +carLicense: PSYPF0 +departmentNumber: 9438 +employeeType: Contract +homePhone: +1 408 707-4599 +initials: D. L. +mobile: +1 408 277-3328 +pager: +1 408 901-5372 +roomNumber: 9691 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: XiaoMing Coddington +sn: Coddington +description: This is XiaoMing Coddington's description +facsimileTelephoneNumber: +1 818 403-5946 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 818 881-1432 +title: Master Product Testing Grunt +userPassword: Password1 +uid: CoddingX +givenName: XiaoMing +mail: CoddingX@b37b0ee1c3d74b79bd0b37182c5a200f.bitwarden.com +carLicense: 3AOUPC +departmentNumber: 6652 +employeeType: Normal +homePhone: +1 818 575-8078 +initials: X. C. +mobile: +1 818 773-6452 +pager: +1 818 279-1158 +roomNumber: 8438 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Miro Tabor,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miro Tabor +sn: Tabor +description: This is Miro Tabor's description +facsimileTelephoneNumber: +1 408 597-7730 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 400-1874 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: TaborM +givenName: Miro +mail: TaborM@be2fe06854024f6cb36c05d73bae2406.bitwarden.com +carLicense: 2F24YV +departmentNumber: 6324 +employeeType: Employee +homePhone: +1 408 269-7277 +initials: M. T. +mobile: +1 408 277-5305 +pager: +1 408 860-1896 +roomNumber: 8544 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liduine Witchlow +sn: Witchlow +description: This is Liduine Witchlow's description +facsimileTelephoneNumber: +1 206 460-7158 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 274-9428 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: WitchloL +givenName: Liduine +mail: WitchloL@118b35796ca44494b05a6b698be1d2a5.bitwarden.com +carLicense: D9YD33 +departmentNumber: 8826 +employeeType: Employee +homePhone: +1 206 788-3559 +initials: L. W. +mobile: +1 206 164-9490 +pager: +1 206 559-6816 +roomNumber: 8538 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Der Fernando,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Der Fernando +sn: Fernando +description: This is Der Fernando's description +facsimileTelephoneNumber: +1 408 347-7876 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 103-9793 +title: Associate Product Testing Artist +userPassword: Password1 +uid: FernandD +givenName: Der +mail: FernandD@a4f85fecd69348a29728c8e242a790a2.bitwarden.com +carLicense: S0R6HO +departmentNumber: 8092 +employeeType: Contract +homePhone: +1 408 692-4872 +initials: D. F. +mobile: +1 408 311-7601 +pager: +1 408 312-8728 +roomNumber: 9992 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bunny Ruzycki +sn: Ruzycki +description: This is Bunny Ruzycki's description +facsimileTelephoneNumber: +1 818 751-9358 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 818 673-1362 +title: Junior Human Resources Sales Rep +userPassword: Password1 +uid: RuzyckiB +givenName: Bunny +mail: RuzyckiB@1a851fc2814040d38d9f2abd59e828ec.bitwarden.com +carLicense: 5WUVVJ +departmentNumber: 8758 +employeeType: Contract +homePhone: +1 818 311-2841 +initials: B. R. +mobile: +1 818 669-4253 +pager: +1 818 506-4598 +roomNumber: 8039 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vivianne McCrain,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivianne McCrain +sn: McCrain +description: This is Vivianne McCrain's description +facsimileTelephoneNumber: +1 206 559-7997 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 861-4561 +title: Chief Peons Writer +userPassword: Password1 +uid: McCrainV +givenName: Vivianne +mail: McCrainV@b70f11362a424a69841534d3b1179197.bitwarden.com +carLicense: HOWG1U +departmentNumber: 5190 +employeeType: Normal +homePhone: +1 206 218-1508 +initials: V. M. +mobile: +1 206 693-5203 +pager: +1 206 596-9393 +roomNumber: 8077 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheri Sobolewski +sn: Sobolewski +description: This is Sheri Sobolewski's description +facsimileTelephoneNumber: +1 408 482-9648 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 216-6194 +title: Supreme Janitorial Sales Rep +userPassword: Password1 +uid: SobolewS +givenName: Sheri +mail: SobolewS@0d449385b7a34ab0b858a2ab5b17455a.bitwarden.com +carLicense: PCNVJL +departmentNumber: 8486 +employeeType: Contract +homePhone: +1 408 361-9354 +initials: S. S. +mobile: +1 408 753-8660 +pager: +1 408 466-3128 +roomNumber: 8737 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlane Lingafelter +sn: Lingafelter +description: This is Marlane Lingafelter's description +facsimileTelephoneNumber: +1 804 762-2981 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 746-2654 +title: Master Administrative President +userPassword: Password1 +uid: LingafeM +givenName: Marlane +mail: LingafeM@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com +carLicense: WWRR5E +departmentNumber: 5389 +employeeType: Contract +homePhone: +1 804 810-5361 +initials: M. L. +mobile: +1 804 506-8144 +pager: +1 804 711-8185 +roomNumber: 9014 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tetsuo VanBenthem +sn: VanBenthem +description: This is Tetsuo VanBenthem's description +facsimileTelephoneNumber: +1 415 909-5872 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 587-7615 +title: Master Management Warrior +userPassword: Password1 +uid: VanBentT +givenName: Tetsuo +mail: VanBentT@2e08496305794efd85d6a479c697a5c1.bitwarden.com +carLicense: HUG6CV +departmentNumber: 2133 +employeeType: Employee +homePhone: +1 415 645-9684 +initials: T. V. +mobile: +1 415 213-3715 +pager: +1 415 530-7764 +roomNumber: 8875 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarina Lacasse +sn: Lacasse +description: This is Sarina Lacasse's description +facsimileTelephoneNumber: +1 804 840-8585 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 535-3036 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: LacasseS +givenName: Sarina +mail: LacasseS@0c478e577f6c43f08e0c7154f215c7af.bitwarden.com +carLicense: 6QX7YB +departmentNumber: 8805 +employeeType: Normal +homePhone: +1 804 404-7676 +initials: S. L. +mobile: +1 804 491-8389 +pager: +1 804 552-1778 +roomNumber: 9625 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Madelina Todloski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelina Todloski +sn: Todloski +description: This is Madelina Todloski's description +facsimileTelephoneNumber: +1 206 784-1502 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 755-9592 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: TodloskM +givenName: Madelina +mail: TodloskM@ae68135eee9d4a26a1a58584ca226451.bitwarden.com +carLicense: UBAXS3 +departmentNumber: 1348 +employeeType: Contract +homePhone: +1 206 222-5164 +initials: M. T. +mobile: +1 206 273-9550 +pager: +1 206 939-8093 +roomNumber: 9517 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vijai Combaz,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vijai Combaz +sn: Combaz +description: This is Vijai Combaz's description +facsimileTelephoneNumber: +1 415 644-2633 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 415 270-4628 +title: Associate Management President +userPassword: Password1 +uid: CombazV +givenName: Vijai +mail: CombazV@6b94ae7a6d6747c8ba4de4161bb85768.bitwarden.com +carLicense: 6LXHOT +departmentNumber: 2182 +employeeType: Contract +homePhone: +1 415 577-8932 +initials: V. C. +mobile: +1 415 624-4069 +pager: +1 415 306-1060 +roomNumber: 8691 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sohayla Neate,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sohayla Neate +sn: Neate +description: This is Sohayla Neate's description +facsimileTelephoneNumber: +1 206 575-9658 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 206 581-4067 +title: Chief Product Development Artist +userPassword: Password1 +uid: NeateS +givenName: Sohayla +mail: NeateS@291647d2cd1d44a99560699f40c48fb8.bitwarden.com +carLicense: EKPES0 +departmentNumber: 8947 +employeeType: Employee +homePhone: +1 206 524-5960 +initials: S. N. +mobile: +1 206 655-7283 +pager: +1 206 948-2166 +roomNumber: 9846 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karrie Gagnon +sn: Gagnon +description: This is Karrie Gagnon's description +facsimileTelephoneNumber: +1 510 554-4700 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 896-8039 +title: Junior Product Testing Pinhead +userPassword: Password1 +uid: GagnonK +givenName: Karrie +mail: GagnonK@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com +carLicense: LJLO7I +departmentNumber: 9668 +employeeType: Normal +homePhone: +1 510 407-1549 +initials: K. G. +mobile: +1 510 747-8912 +pager: +1 510 644-9706 +roomNumber: 9198 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Weldon Robustness,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weldon Robustness +sn: Robustness +description: This is Weldon Robustness's description +facsimileTelephoneNumber: +1 206 193-7068 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 780-8361 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: RobustnW +givenName: Weldon +mail: RobustnW@4154a37503e24114bfe5421ecb627bb9.bitwarden.com +carLicense: 86P51H +departmentNumber: 6779 +employeeType: Employee +homePhone: +1 206 820-3146 +initials: W. R. +mobile: +1 206 343-3218 +pager: +1 206 264-6143 +roomNumber: 8621 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Freddy Jachym,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Freddy Jachym +sn: Jachym +description: This is Freddy Jachym's description +facsimileTelephoneNumber: +1 804 567-1435 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 671-2234 +title: Supreme Management Czar +userPassword: Password1 +uid: JachymF +givenName: Freddy +mail: JachymF@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com +carLicense: E04E9X +departmentNumber: 2804 +employeeType: Employee +homePhone: +1 804 807-1523 +initials: F. J. +mobile: +1 804 690-7755 +pager: +1 804 377-1178 +roomNumber: 8418 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eliezer Assistance,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eliezer Assistance +sn: Assistance +description: This is Eliezer Assistance's description +facsimileTelephoneNumber: +1 213 442-9464 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 619-3778 +title: Associate Management Visionary +userPassword: Password1 +uid: AssistaE +givenName: Eliezer +mail: AssistaE@2848b689935d4648b6061c4adab9255b.bitwarden.com +carLicense: CIQ9EI +departmentNumber: 9769 +employeeType: Normal +homePhone: +1 213 681-5975 +initials: E. A. +mobile: +1 213 347-1432 +pager: +1 213 719-5030 +roomNumber: 8460 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stevana Acelvari +sn: Acelvari +description: This is Stevana Acelvari's description +facsimileTelephoneNumber: +1 510 118-3171 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 985-7994 +title: Junior Human Resources Czar +userPassword: Password1 +uid: AcelvarS +givenName: Stevana +mail: AcelvarS@5b4286bc4af74709a0f65475a29d7c53.bitwarden.com +carLicense: KSY22N +departmentNumber: 7721 +employeeType: Normal +homePhone: +1 510 137-6369 +initials: S. A. +mobile: +1 510 710-8196 +pager: +1 510 276-3727 +roomNumber: 8625 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Orelia Pisani,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orelia Pisani +sn: Pisani +description: This is Orelia Pisani's description +facsimileTelephoneNumber: +1 510 466-4856 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 710-9224 +title: Master Peons Mascot +userPassword: Password1 +uid: PisaniO +givenName: Orelia +mail: PisaniO@572f2e7cd4c540ba82bdf3291fc77e32.bitwarden.com +carLicense: KM7848 +departmentNumber: 1892 +employeeType: Employee +homePhone: +1 510 359-1436 +initials: O. P. +mobile: +1 510 310-8560 +pager: +1 510 396-3908 +roomNumber: 8574 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shelton Spencer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelton Spencer +sn: Spencer +description: This is Shelton Spencer's description +facsimileTelephoneNumber: +1 415 638-3213 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 486-1419 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: SpencerS +givenName: Shelton +mail: SpencerS@6032a8b4894b42dc8d3f57130a5d8ef5.bitwarden.com +carLicense: 0FXPTP +departmentNumber: 9339 +employeeType: Normal +homePhone: +1 415 603-1831 +initials: S. S. +mobile: +1 415 244-6495 +pager: +1 415 135-4180 +roomNumber: 8252 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jonthan Khoury,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jonthan Khoury +sn: Khoury +description: This is Jonthan Khoury's description +facsimileTelephoneNumber: +1 213 755-1308 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 116-1213 +title: Supreme Product Development Stooge +userPassword: Password1 +uid: KhouryJ +givenName: Jonthan +mail: KhouryJ@95a0714026f54037aaa182b092f39903.bitwarden.com +carLicense: RCJUEM +departmentNumber: 8529 +employeeType: Contract +homePhone: +1 213 280-2312 +initials: J. K. +mobile: +1 213 410-1872 +pager: +1 213 288-6358 +roomNumber: 8021 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tricord Bresee,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tricord Bresee +sn: Bresee +description: This is Tricord Bresee's description +facsimileTelephoneNumber: +1 510 658-1905 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 519-6997 +title: Associate Product Testing Director +userPassword: Password1 +uid: BreseeT +givenName: Tricord +mail: BreseeT@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com +carLicense: CJ5OP2 +departmentNumber: 3369 +employeeType: Employee +homePhone: +1 510 976-8278 +initials: T. B. +mobile: +1 510 981-1030 +pager: +1 510 734-1781 +roomNumber: 8090 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Julietta Tillman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julietta Tillman +sn: Tillman +description: This is Julietta Tillman's description +facsimileTelephoneNumber: +1 408 212-5632 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 408 794-4968 +title: Supreme Peons Consultant +userPassword: Password1 +uid: TillmanJ +givenName: Julietta +mail: TillmanJ@44b2450bcee645ea9f41c30f5aa03fe5.bitwarden.com +carLicense: BYVT0C +departmentNumber: 9486 +employeeType: Employee +homePhone: +1 408 866-3841 +initials: J. T. +mobile: +1 408 113-9504 +pager: +1 408 920-4992 +roomNumber: 8361 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Almeria Falke,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Almeria Falke +sn: Falke +description: This is Almeria Falke's description +facsimileTelephoneNumber: +1 804 219-5804 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 804 189-3468 +title: Supreme Peons Visionary +userPassword: Password1 +uid: FalkeA +givenName: Almeria +mail: FalkeA@ce68beaef1d3485083c2f31b35928b95.bitwarden.com +carLicense: N2GBXD +departmentNumber: 6492 +employeeType: Normal +homePhone: +1 804 537-8244 +initials: A. F. +mobile: +1 804 858-5761 +pager: +1 804 469-2945 +roomNumber: 9154 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aaron Deakin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aaron Deakin +sn: Deakin +description: This is Aaron Deakin's description +facsimileTelephoneNumber: +1 818 576-2010 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 818 699-7525 +title: Master Product Development Architect +userPassword: Password1 +uid: DeakinA +givenName: Aaron +mail: DeakinA@1d4290d63a1444df823292a25ec59d0c.bitwarden.com +carLicense: HV7RTP +departmentNumber: 7371 +employeeType: Contract +homePhone: +1 818 179-9105 +initials: A. D. +mobile: +1 818 496-6666 +pager: +1 818 598-6735 +roomNumber: 9005 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Soyeh Noy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Soyeh Noy +sn: Noy +description: This is Soyeh Noy's description +facsimileTelephoneNumber: +1 206 173-3008 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 121-3494 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: NoyS +givenName: Soyeh +mail: NoyS@1174f1cfd4db4d4e8122f3cc77544aa8.bitwarden.com +carLicense: 0MLSRQ +departmentNumber: 6332 +employeeType: Contract +homePhone: +1 206 723-5904 +initials: S. N. +mobile: +1 206 563-5505 +pager: +1 206 635-7304 +roomNumber: 9118 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sylvia Fawcett +sn: Fawcett +description: This is Sylvia Fawcett's description +facsimileTelephoneNumber: +1 213 452-4117 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 478-5017 +title: Chief Janitorial Visionary +userPassword: Password1 +uid: FawcettS +givenName: Sylvia +mail: FawcettS@b39d8f666f1848e6abb69d85d224a354.bitwarden.com +carLicense: 5UF2JH +departmentNumber: 9677 +employeeType: Contract +homePhone: +1 213 249-3735 +initials: S. F. +mobile: +1 213 243-7634 +pager: +1 213 376-2053 +roomNumber: 9838 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jerrilee Purnell +sn: Purnell +description: This is Jerrilee Purnell's description +facsimileTelephoneNumber: +1 408 642-9246 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 831-7015 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: PurnellJ +givenName: Jerrilee +mail: PurnellJ@a035bec181ea4cd9abd3953e80704bef.bitwarden.com +carLicense: 98NERR +departmentNumber: 9617 +employeeType: Normal +homePhone: +1 408 299-9570 +initials: J. P. +mobile: +1 408 414-5724 +pager: +1 408 551-2224 +roomNumber: 8307 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Genia Mooken,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genia Mooken +sn: Mooken +description: This is Genia Mooken's description +facsimileTelephoneNumber: +1 510 750-2929 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 510 539-3628 +title: Junior Product Development Janitor +userPassword: Password1 +uid: MookenG +givenName: Genia +mail: MookenG@6874478c22ee4fbf87473317dba0c7aa.bitwarden.com +carLicense: NM81A5 +departmentNumber: 7462 +employeeType: Contract +homePhone: +1 510 740-3901 +initials: G. M. +mobile: +1 510 446-4911 +pager: +1 510 331-3025 +roomNumber: 8472 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Norton Chronowic,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norton Chronowic +sn: Chronowic +description: This is Norton Chronowic's description +facsimileTelephoneNumber: +1 510 252-4484 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 192-2434 +title: Chief Management Warrior +userPassword: Password1 +uid: ChronowN +givenName: Norton +mail: ChronowN@3628e26a28c645d7955cf8b078dbe56c.bitwarden.com +carLicense: 5OUCNE +departmentNumber: 3684 +employeeType: Contract +homePhone: +1 510 300-9116 +initials: N. C. +mobile: +1 510 251-6262 +pager: +1 510 916-8479 +roomNumber: 8782 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Thom Hink,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thom Hink +sn: Hink +description: This is Thom Hink's description +facsimileTelephoneNumber: +1 408 657-7967 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 328-7251 +title: Supreme Product Testing Dictator +userPassword: Password1 +uid: HinkT +givenName: Thom +mail: HinkT@c337fda07bbe40e2a0aa0860ad7ba681.bitwarden.com +carLicense: KI0K83 +departmentNumber: 5853 +employeeType: Employee +homePhone: +1 408 741-5564 +initials: T. H. +mobile: +1 408 860-3023 +pager: +1 408 935-3706 +roomNumber: 8545 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vanny Swepston,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanny Swepston +sn: Swepston +description: This is Vanny Swepston's description +facsimileTelephoneNumber: +1 408 196-4703 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 111-3152 +title: Master Peons Grunt +userPassword: Password1 +uid: SwepstoV +givenName: Vanny +mail: SwepstoV@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com +carLicense: AOI3TY +departmentNumber: 5944 +employeeType: Contract +homePhone: +1 408 584-1588 +initials: V. S. +mobile: +1 408 334-3657 +pager: +1 408 606-6733 +roomNumber: 9110 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mabel Bycenko,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mabel Bycenko +sn: Bycenko +description: This is Mabel Bycenko's description +facsimileTelephoneNumber: +1 415 114-8966 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 144-7605 +title: Chief Peons Punk +userPassword: Password1 +uid: BycenkoM +givenName: Mabel +mail: BycenkoM@3c89e3a711ca4ba7bd9dc3429c71b28e.bitwarden.com +carLicense: 4KB13O +departmentNumber: 8009 +employeeType: Employee +homePhone: +1 415 306-3042 +initials: M. B. +mobile: +1 415 533-6893 +pager: +1 415 898-6485 +roomNumber: 9140 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kiyoon Chau,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiyoon Chau +sn: Chau +description: This is Kiyoon Chau's description +facsimileTelephoneNumber: +1 206 325-3942 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 106-3127 +title: Supreme Administrative Punk +userPassword: Password1 +uid: ChauK +givenName: Kiyoon +mail: ChauK@c7cfbecdcc9244d89ede1a6fe93b790c.bitwarden.com +carLicense: 20LWFN +departmentNumber: 2800 +employeeType: Employee +homePhone: +1 206 352-9406 +initials: K. C. +mobile: +1 206 465-4249 +pager: +1 206 185-1884 +roomNumber: 8138 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nel Addetia,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nel Addetia +sn: Addetia +description: This is Nel Addetia's description +facsimileTelephoneNumber: +1 206 937-6516 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 994-7658 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: AddetiaN +givenName: Nel +mail: AddetiaN@4fe9499fc7c8456094066466aa426118.bitwarden.com +carLicense: MIJBAM +departmentNumber: 7581 +employeeType: Employee +homePhone: +1 206 336-4964 +initials: N. A. +mobile: +1 206 166-5000 +pager: +1 206 148-3013 +roomNumber: 9741 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Emeline Willmore,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emeline Willmore +sn: Willmore +description: This is Emeline Willmore's description +facsimileTelephoneNumber: +1 510 127-4870 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 507-9132 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: WillmorE +givenName: Emeline +mail: WillmorE@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com +carLicense: 3I2HQQ +departmentNumber: 6777 +employeeType: Normal +homePhone: +1 510 592-6365 +initials: E. W. +mobile: +1 510 928-2894 +pager: +1 510 374-9435 +roomNumber: 9606 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maged Bernardo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maged Bernardo +sn: Bernardo +description: This is Maged Bernardo's description +facsimileTelephoneNumber: +1 213 547-3530 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 213 723-9237 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: BernardM +givenName: Maged +mail: BernardM@bc873160594f405e8694c4dc707b88ee.bitwarden.com +carLicense: VYVGTV +departmentNumber: 4356 +employeeType: Employee +homePhone: +1 213 851-8663 +initials: M. B. +mobile: +1 213 948-6297 +pager: +1 213 536-7515 +roomNumber: 8044 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Murry Okafo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Murry Okafo +sn: Okafo +description: This is Murry Okafo's description +facsimileTelephoneNumber: +1 415 769-5338 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 415 322-7322 +title: Supreme Management Developer +userPassword: Password1 +uid: OkafoM +givenName: Murry +mail: OkafoM@7857a73234d945c08313b465094df60f.bitwarden.com +carLicense: 2QYD0I +departmentNumber: 3489 +employeeType: Employee +homePhone: +1 415 622-4251 +initials: M. O. +mobile: +1 415 969-7988 +pager: +1 415 582-3432 +roomNumber: 9087 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vita Coursol,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vita Coursol +sn: Coursol +description: This is Vita Coursol's description +facsimileTelephoneNumber: +1 415 431-9599 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 122-5197 +title: Junior Peons Developer +userPassword: Password1 +uid: CoursolV +givenName: Vita +mail: CoursolV@a69557e189c747b59333670f3ebf3a1e.bitwarden.com +carLicense: EO6QG8 +departmentNumber: 7093 +employeeType: Employee +homePhone: +1 415 872-5379 +initials: V. C. +mobile: +1 415 976-2315 +pager: +1 415 981-2544 +roomNumber: 9793 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kellina Hoffmann +sn: Hoffmann +description: This is Kellina Hoffmann's description +facsimileTelephoneNumber: +1 408 233-7052 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 713-2124 +title: Junior Janitorial Architect +userPassword: Password1 +uid: HoffmanK +givenName: Kellina +mail: HoffmanK@9bec1f480eec4baea66a1e4c2e434262.bitwarden.com +carLicense: L98NM1 +departmentNumber: 8331 +employeeType: Contract +homePhone: +1 408 910-2279 +initials: K. H. +mobile: +1 408 508-2512 +pager: +1 408 167-4744 +roomNumber: 8678 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Makiko Radojicic +sn: Radojicic +description: This is Makiko Radojicic's description +facsimileTelephoneNumber: +1 510 625-5812 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 341-5079 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: RadojicM +givenName: Makiko +mail: RadojicM@7e09e43498f24a77bbdff5fc55db68c6.bitwarden.com +carLicense: 5VMPAT +departmentNumber: 9717 +employeeType: Contract +homePhone: +1 510 564-8148 +initials: M. R. +mobile: +1 510 562-2851 +pager: +1 510 390-2507 +roomNumber: 9383 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jelene Rivest,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jelene Rivest +sn: Rivest +description: This is Jelene Rivest's description +facsimileTelephoneNumber: +1 804 677-3551 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 513-2879 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: RivestJ +givenName: Jelene +mail: RivestJ@53f0c5d55dd14a429126d3d8cfc0b6d1.bitwarden.com +carLicense: IVJ0IK +departmentNumber: 6767 +employeeType: Normal +homePhone: +1 804 742-9578 +initials: J. R. +mobile: +1 804 463-5427 +pager: +1 804 349-7523 +roomNumber: 8068 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Magda Sims,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magda Sims +sn: Sims +description: This is Magda Sims's description +facsimileTelephoneNumber: +1 804 891-1953 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 804 341-5017 +title: Supreme Human Resources Architect +userPassword: Password1 +uid: SimsM +givenName: Magda +mail: SimsM@a2e6c1d1859c490496277e66f6d6fefe.bitwarden.com +carLicense: YAXKA2 +departmentNumber: 8575 +employeeType: Contract +homePhone: +1 804 212-9964 +initials: M. S. +mobile: +1 804 674-2093 +pager: +1 804 717-3992 +roomNumber: 9125 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fanni Kelly,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fanni Kelly +sn: Kelly +description: This is Fanni Kelly's description +facsimileTelephoneNumber: +1 408 838-7582 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 321-2742 +title: Master Janitorial Evangelist +userPassword: Password1 +uid: KellyF +givenName: Fanni +mail: KellyF@30ee8b21e1bc41c1a7110da46046174f.bitwarden.com +carLicense: 8QCSOR +departmentNumber: 8066 +employeeType: Contract +homePhone: +1 408 651-3673 +initials: F. K. +mobile: +1 408 674-3170 +pager: +1 408 876-4198 +roomNumber: 8073 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Phyl Komatsu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phyl Komatsu +sn: Komatsu +description: This is Phyl Komatsu's description +facsimileTelephoneNumber: +1 818 616-1604 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 805-6912 +title: Junior Product Development Architect +userPassword: Password1 +uid: KomatsuP +givenName: Phyl +mail: KomatsuP@7f95f5d6a463478d81afd013c82a23e3.bitwarden.com +carLicense: 177N62 +departmentNumber: 5459 +employeeType: Contract +homePhone: +1 818 565-2129 +initials: P. K. +mobile: +1 818 593-9115 +pager: +1 818 739-7356 +roomNumber: 8737 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Blondie Bessette,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blondie Bessette +sn: Bessette +description: This is Blondie Bessette's description +facsimileTelephoneNumber: +1 415 685-7537 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 291-6148 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: BessettB +givenName: Blondie +mail: BessettB@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com +carLicense: G4XSM0 +departmentNumber: 5421 +employeeType: Normal +homePhone: +1 415 619-1092 +initials: B. B. +mobile: +1 415 581-7938 +pager: +1 415 241-5706 +roomNumber: 9145 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zonda Marette,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zonda Marette +sn: Marette +description: This is Zonda Marette's description +facsimileTelephoneNumber: +1 408 663-9017 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 348-1290 +title: Junior Janitorial Janitor +userPassword: Password1 +uid: MaretteZ +givenName: Zonda +mail: MaretteZ@d8b58b77cc0a4df1b559d499a84b4151.bitwarden.com +carLicense: 4NPP8V +departmentNumber: 2238 +employeeType: Employee +homePhone: +1 408 246-1398 +initials: Z. M. +mobile: +1 408 939-7982 +pager: +1 408 403-2537 +roomNumber: 9257 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gunfer Szaplonczay +sn: Szaplonczay +description: This is Gunfer Szaplonczay's description +facsimileTelephoneNumber: +1 415 602-2703 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 747-7204 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: SzaplonG +givenName: Gunfer +mail: SzaplonG@451ef49e42ac453eb09b3d6157d37259.bitwarden.com +carLicense: 72HNKP +departmentNumber: 4952 +employeeType: Employee +homePhone: +1 415 652-4236 +initials: G. S. +mobile: +1 415 692-3267 +pager: +1 415 365-3535 +roomNumber: 8390 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tavis Bovee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tavis Bovee +sn: Bovee +description: This is Tavis Bovee's description +facsimileTelephoneNumber: +1 804 392-5228 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 926-3109 +title: Junior Product Development Vice President +userPassword: Password1 +uid: BoveeT +givenName: Tavis +mail: BoveeT@15c43eefe4c649db9c3b5dfcf2c7ab4a.bitwarden.com +carLicense: 269INJ +departmentNumber: 7905 +employeeType: Normal +homePhone: +1 804 359-8304 +initials: T. B. +mobile: +1 804 670-5613 +pager: +1 804 984-1495 +roomNumber: 8371 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vittorio Depooter +sn: Depooter +description: This is Vittorio Depooter's description +facsimileTelephoneNumber: +1 408 731-1282 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 864-5503 +title: Supreme Product Testing Director +userPassword: Password1 +uid: DepooteV +givenName: Vittorio +mail: DepooteV@b6dc43d5b48948bcabf31d42dd4a3286.bitwarden.com +carLicense: 4SP2M0 +departmentNumber: 8929 +employeeType: Contract +homePhone: +1 408 138-3897 +initials: V. D. +mobile: +1 408 429-2377 +pager: +1 408 315-8667 +roomNumber: 9483 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rafaelia Salgado +sn: Salgado +description: This is Rafaelia Salgado's description +facsimileTelephoneNumber: +1 206 901-5018 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 501-1744 +title: Master Human Resources Technician +userPassword: Password1 +uid: SalgadoR +givenName: Rafaelia +mail: SalgadoR@87d497e060994207b70ef7bd8c3d6175.bitwarden.com +carLicense: XFSA2I +departmentNumber: 2146 +employeeType: Contract +homePhone: +1 206 947-6062 +initials: R. S. +mobile: +1 206 263-2118 +pager: +1 206 955-1276 +roomNumber: 8857 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aurore Danker,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurore Danker +sn: Danker +description: This is Aurore Danker's description +facsimileTelephoneNumber: +1 510 429-7922 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 964-9866 +title: Chief Human Resources Developer +userPassword: Password1 +uid: DankerA +givenName: Aurore +mail: DankerA@308bfff65d134099bb462e88bbd36698.bitwarden.com +carLicense: 9B66D3 +departmentNumber: 5682 +employeeType: Employee +homePhone: +1 510 847-3530 +initials: A. D. +mobile: +1 510 956-3169 +pager: +1 510 904-2879 +roomNumber: 8018 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yawar Benjes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yawar Benjes +sn: Benjes +description: This is Yawar Benjes's description +facsimileTelephoneNumber: +1 415 260-9925 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 415 116-3723 +title: Junior Human Resources Assistant +userPassword: Password1 +uid: BenjesY +givenName: Yawar +mail: BenjesY@a409de982bd04e36819d909bb7350629.bitwarden.com +carLicense: HS80JR +departmentNumber: 7513 +employeeType: Contract +homePhone: +1 415 961-7247 +initials: Y. B. +mobile: +1 415 126-5158 +pager: +1 415 628-2517 +roomNumber: 8552 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jayme Casey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jayme Casey +sn: Casey +description: This is Jayme Casey's description +facsimileTelephoneNumber: +1 510 714-5767 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 924-8312 +title: Chief Product Development Warrior +userPassword: Password1 +uid: CaseyJ +givenName: Jayme +mail: CaseyJ@786bf687e1984b2da694b96e1738976f.bitwarden.com +carLicense: XRS940 +departmentNumber: 1547 +employeeType: Employee +homePhone: +1 510 532-2045 +initials: J. C. +mobile: +1 510 583-3922 +pager: +1 510 657-7986 +roomNumber: 9751 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leanne Yurchuk +sn: Yurchuk +description: This is Leanne Yurchuk's description +facsimileTelephoneNumber: +1 415 996-4737 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 196-3711 +title: Chief Product Development Punk +userPassword: Password1 +uid: YurchukL +givenName: Leanne +mail: YurchukL@340ab58f2875411f8670d5765360d070.bitwarden.com +carLicense: PKEYJX +departmentNumber: 2040 +employeeType: Normal +homePhone: +1 415 388-5967 +initials: L. Y. +mobile: +1 415 526-8962 +pager: +1 415 328-2525 +roomNumber: 9953 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Daisi Encomenderos,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daisi Encomenderos +sn: Encomenderos +description: This is Daisi Encomenderos's description +facsimileTelephoneNumber: +1 804 435-8983 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 307-6998 +title: Master Management Vice President +userPassword: Password1 +uid: EncomenD +givenName: Daisi +mail: EncomenD@65740d0bd6fb4b44a86d2ab249218002.bitwarden.com +carLicense: 1P177T +departmentNumber: 1472 +employeeType: Normal +homePhone: +1 804 423-7246 +initials: D. E. +mobile: +1 804 116-5908 +pager: +1 804 168-6877 +roomNumber: 9466 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Biplab Caton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Biplab Caton +sn: Caton +description: This is Biplab Caton's description +facsimileTelephoneNumber: +1 415 332-8735 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 781-1511 +title: Associate Peons Janitor +userPassword: Password1 +uid: CatonB +givenName: Biplab +mail: CatonB@3466b47e8afc4d9d8ef0f5f1dbd0e25b.bitwarden.com +carLicense: SEWGB0 +departmentNumber: 8125 +employeeType: Contract +homePhone: +1 415 469-5844 +initials: B. C. +mobile: +1 415 693-6963 +pager: +1 415 336-3545 +roomNumber: 9286 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stu WyzgaTaplin +sn: WyzgaTaplin +description: This is Stu WyzgaTaplin's description +facsimileTelephoneNumber: +1 213 368-3218 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 824-4995 +title: Associate Payroll Admin +userPassword: Password1 +uid: WyzgaTaS +givenName: Stu +mail: WyzgaTaS@3ad303e52239495a9a4593b90983590a.bitwarden.com +carLicense: IGT89Y +departmentNumber: 7191 +employeeType: Contract +homePhone: +1 213 775-8031 +initials: S. W. +mobile: +1 213 151-4725 +pager: +1 213 786-1703 +roomNumber: 8498 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Izak Roussin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Izak Roussin +sn: Roussin +description: This is Izak Roussin's description +facsimileTelephoneNumber: +1 408 221-5952 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 295-1926 +title: Supreme Payroll Vice President +userPassword: Password1 +uid: RoussinI +givenName: Izak +mail: RoussinI@1ae1933dac97453a926e3efbe8067be8.bitwarden.com +carLicense: 4S7S6B +departmentNumber: 8801 +employeeType: Normal +homePhone: +1 408 346-1859 +initials: I. R. +mobile: +1 408 835-4336 +pager: +1 408 986-1411 +roomNumber: 9931 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Montreal Mersch,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Montreal Mersch +sn: Mersch +description: This is Montreal Mersch's description +facsimileTelephoneNumber: +1 818 193-7101 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 818 395-8959 +title: Chief Product Testing Technician +userPassword: Password1 +uid: MerschM +givenName: Montreal +mail: MerschM@0a5d24e43a114c95ae7921fe70fcb8e0.bitwarden.com +carLicense: C1NNHP +departmentNumber: 7431 +employeeType: Employee +homePhone: +1 818 316-4535 +initials: M. M. +mobile: +1 818 368-4121 +pager: +1 818 248-2302 +roomNumber: 8598 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sybille Shwed,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sybille Shwed +sn: Shwed +description: This is Sybille Shwed's description +facsimileTelephoneNumber: +1 206 598-9004 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 165-2652 +title: Master Management Artist +userPassword: Password1 +uid: ShwedS +givenName: Sybille +mail: ShwedS@1c2b637d619c43c18e3692a1390e6b11.bitwarden.com +carLicense: KIDN6F +departmentNumber: 7081 +employeeType: Employee +homePhone: +1 206 755-1097 +initials: S. S. +mobile: +1 206 385-1195 +pager: +1 206 113-1397 +roomNumber: 8245 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gordie Oey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gordie Oey +sn: Oey +description: This is Gordie Oey's description +facsimileTelephoneNumber: +1 408 918-7442 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 408 967-5836 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: OeyG +givenName: Gordie +mail: OeyG@a7e63ce77d0c4ec099d6b11874b8367f.bitwarden.com +carLicense: XQWVVT +departmentNumber: 5995 +employeeType: Contract +homePhone: +1 408 723-4087 +initials: G. O. +mobile: +1 408 619-1590 +pager: +1 408 231-4044 +roomNumber: 8393 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosmunda Artzer +sn: Artzer +description: This is Rosmunda Artzer's description +facsimileTelephoneNumber: +1 408 452-6217 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 604-7953 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: ArtzerR +givenName: Rosmunda +mail: ArtzerR@d3fe6fead68f4275b09ee98e35e3f745.bitwarden.com +carLicense: I0FLTI +departmentNumber: 4989 +employeeType: Normal +homePhone: +1 408 980-8509 +initials: R. A. +mobile: +1 408 699-3358 +pager: +1 408 825-1642 +roomNumber: 8180 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Radha Hazeldine +sn: Hazeldine +description: This is Radha Hazeldine's description +facsimileTelephoneNumber: +1 818 671-2627 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 269-6906 +title: Master Product Testing Warrior +userPassword: Password1 +uid: HazeldiR +givenName: Radha +mail: HazeldiR@6036cb6dd84a4edb923448591ed00b7c.bitwarden.com +carLicense: UO1A5S +departmentNumber: 2115 +employeeType: Contract +homePhone: +1 818 855-7476 +initials: R. H. +mobile: +1 818 796-6060 +pager: +1 818 907-7165 +roomNumber: 8848 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jester Lystiuk +sn: Lystiuk +description: This is Jester Lystiuk's description +facsimileTelephoneNumber: +1 213 876-8739 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 213 302-9476 +title: Master Product Testing Grunt +userPassword: Password1 +uid: LystiukJ +givenName: Jester +mail: LystiukJ@861f2fb047d7400fa0a3213fd039399d.bitwarden.com +carLicense: VBEFN0 +departmentNumber: 8146 +employeeType: Normal +homePhone: +1 213 622-5918 +initials: J. L. +mobile: +1 213 595-3792 +pager: +1 213 792-3567 +roomNumber: 9378 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nerte Diederichs,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nerte Diederichs +sn: Diederichs +description: This is Nerte Diederichs's description +facsimileTelephoneNumber: +1 415 672-9317 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 327-3522 +title: Associate Administrative Mascot +userPassword: Password1 +uid: DiederiN +givenName: Nerte +mail: DiederiN@fbefb364d68b4da5a9c97a7882a4fc8b.bitwarden.com +carLicense: 6P5SH9 +departmentNumber: 9102 +employeeType: Contract +homePhone: +1 415 359-3574 +initials: N. D. +mobile: +1 415 162-5551 +pager: +1 415 270-2914 +roomNumber: 8858 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Annemarie Harrell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annemarie Harrell +sn: Harrell +description: This is Annemarie Harrell's description +facsimileTelephoneNumber: +1 415 327-4636 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 374-6653 +title: Associate Product Development Czar +userPassword: Password1 +uid: HarrellA +givenName: Annemarie +mail: HarrellA@cd7ca9bf5f46417f8ba8aba6c8f7dba0.bitwarden.com +carLicense: 0MLYMN +departmentNumber: 6503 +employeeType: Contract +homePhone: +1 415 500-4794 +initials: A. H. +mobile: +1 415 850-8094 +pager: +1 415 768-2404 +roomNumber: 8581 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cynthea Guirguis +sn: Guirguis +description: This is Cynthea Guirguis's description +facsimileTelephoneNumber: +1 408 145-7739 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 430-3666 +title: Chief Product Development Stooge +userPassword: Password1 +uid: GuirguiC +givenName: Cynthea +mail: GuirguiC@f397541d0e814623b745c4fbd77b1a79.bitwarden.com +carLicense: 14S8EM +departmentNumber: 6911 +employeeType: Contract +homePhone: +1 408 260-8759 +initials: C. G. +mobile: +1 408 249-8066 +pager: +1 408 874-7654 +roomNumber: 9524 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ara Darcel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ara Darcel +sn: Darcel +description: This is Ara Darcel's description +facsimileTelephoneNumber: +1 510 167-8346 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 228-4880 +title: Chief Product Testing Punk +userPassword: Password1 +uid: DarcelA +givenName: Ara +mail: DarcelA@9373e277d74d47d1862d60d665ff05cf.bitwarden.com +carLicense: 78QXC2 +departmentNumber: 6501 +employeeType: Normal +homePhone: +1 510 313-3495 +initials: A. D. +mobile: +1 510 920-5772 +pager: +1 510 711-4336 +roomNumber: 9763 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lincoln TestNTMVAA +sn: TestNTMVAA +description: This is Lincoln TestNTMVAA's description +facsimileTelephoneNumber: +1 408 960-4360 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 515-5323 +title: Chief Product Testing Artist +userPassword: Password1 +uid: TestNTML +givenName: Lincoln +mail: TestNTML@425e3df8b9654b8fb5fafe68899d23b1.bitwarden.com +carLicense: 0WF28Y +departmentNumber: 3309 +employeeType: Employee +homePhone: +1 408 132-9739 +initials: L. T. +mobile: +1 408 655-2435 +pager: +1 408 693-7465 +roomNumber: 8547 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huelsman Quizmaster +sn: Quizmaster +description: This is Huelsman Quizmaster's description +facsimileTelephoneNumber: +1 804 428-5600 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 736-3611 +title: Supreme Administrative Visionary +userPassword: Password1 +uid: QuizmasH +givenName: Huelsman +mail: QuizmasH@677b24267b6440e9ad6bebb082604f25.bitwarden.com +carLicense: WBYLCN +departmentNumber: 4868 +employeeType: Employee +homePhone: +1 804 471-3481 +initials: H. Q. +mobile: +1 804 983-4368 +pager: +1 804 631-8919 +roomNumber: 9667 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eng Mangum,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eng Mangum +sn: Mangum +description: This is Eng Mangum's description +facsimileTelephoneNumber: +1 408 758-3549 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 444-5550 +title: Chief Administrative Admin +userPassword: Password1 +uid: MangumE +givenName: Eng +mail: MangumE@2351067d51a3467b820158a0674b058a.bitwarden.com +carLicense: 8Y6S92 +departmentNumber: 4771 +employeeType: Employee +homePhone: +1 408 519-2983 +initials: E. M. +mobile: +1 408 681-5552 +pager: +1 408 360-4053 +roomNumber: 8733 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kaye Dulude,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaye Dulude +sn: Dulude +description: This is Kaye Dulude's description +facsimileTelephoneNumber: +1 804 945-7063 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 428-8110 +title: Chief Management Vice President +userPassword: Password1 +uid: DuludeK +givenName: Kaye +mail: DuludeK@46b414ac9141409e8e0356bfba101dbd.bitwarden.com +carLicense: 0W017R +departmentNumber: 7746 +employeeType: Normal +homePhone: +1 804 326-1553 +initials: K. D. +mobile: +1 804 112-9188 +pager: +1 804 361-3492 +roomNumber: 9480 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dinny Farrell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dinny Farrell +sn: Farrell +description: This is Dinny Farrell's description +facsimileTelephoneNumber: +1 408 597-8248 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 111-8048 +title: Supreme Administrative Admin +userPassword: Password1 +uid: FarrellD +givenName: Dinny +mail: FarrellD@638ddd5f5c874c1fbe017c3aa0d978c8.bitwarden.com +carLicense: VXLSKW +departmentNumber: 4626 +employeeType: Employee +homePhone: +1 408 210-3673 +initials: D. F. +mobile: +1 408 756-8936 +pager: +1 408 639-5258 +roomNumber: 8777 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pru McIntomny,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pru McIntomny +sn: McIntomny +description: This is Pru McIntomny's description +facsimileTelephoneNumber: +1 818 141-1463 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 181-2028 +title: Supreme Management Fellow +userPassword: Password1 +uid: McIntomP +givenName: Pru +mail: McIntomP@fac421ca650e46139878bbd5f7498e19.bitwarden.com +carLicense: WXG4SR +departmentNumber: 7087 +employeeType: Normal +homePhone: +1 818 740-4210 +initials: P. M. +mobile: +1 818 211-9759 +pager: +1 818 381-6061 +roomNumber: 8764 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faizal Lesperance +sn: Lesperance +description: This is Faizal Lesperance's description +facsimileTelephoneNumber: +1 408 788-1926 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 818-7613 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: LesperaF +givenName: Faizal +mail: LesperaF@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com +carLicense: EVPDVF +departmentNumber: 7332 +employeeType: Employee +homePhone: +1 408 376-3361 +initials: F. L. +mobile: +1 408 120-4556 +pager: +1 408 376-9483 +roomNumber: 9444 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rosemary Liao,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosemary Liao +sn: Liao +description: This is Rosemary Liao's description +facsimileTelephoneNumber: +1 510 561-8170 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 979-5507 +title: Associate Product Development Engineer +userPassword: Password1 +uid: LiaoR +givenName: Rosemary +mail: LiaoR@14f0a617fa68422cb151ec721a7c3c6d.bitwarden.com +carLicense: L5WJ94 +departmentNumber: 9554 +employeeType: Contract +homePhone: +1 510 897-9108 +initials: R. L. +mobile: +1 510 402-1770 +pager: +1 510 458-9278 +roomNumber: 8898 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ketty Torrens,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ketty Torrens +sn: Torrens +description: This is Ketty Torrens's description +facsimileTelephoneNumber: +1 804 735-4157 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 488-9301 +title: Chief Peons Assistant +userPassword: Password1 +uid: TorrensK +givenName: Ketty +mail: TorrensK@ebe018472f8e47ffa07ca073c7579b78.bitwarden.com +carLicense: 3VGRGX +departmentNumber: 4496 +employeeType: Contract +homePhone: +1 804 558-5625 +initials: K. T. +mobile: +1 804 189-2892 +pager: +1 804 261-2172 +roomNumber: 9002 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dinny Meggitt,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dinny Meggitt +sn: Meggitt +description: This is Dinny Meggitt's description +facsimileTelephoneNumber: +1 206 447-6924 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 430-2292 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: MeggittD +givenName: Dinny +mail: MeggittD@8670b7b167164a8b9ce71d78ae9cb652.bitwarden.com +carLicense: 8YPDYS +departmentNumber: 4515 +employeeType: Contract +homePhone: +1 206 227-1988 +initials: D. M. +mobile: +1 206 533-6507 +pager: +1 206 903-2540 +roomNumber: 8174 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ashien Moran,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashien Moran +sn: Moran +description: This is Ashien Moran's description +facsimileTelephoneNumber: +1 818 878-4571 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 818 396-5293 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: MoranA +givenName: Ashien +mail: MoranA@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com +carLicense: 6D7BXP +departmentNumber: 9885 +employeeType: Contract +homePhone: +1 818 783-9831 +initials: A. M. +mobile: +1 818 118-5160 +pager: +1 818 413-6189 +roomNumber: 8229 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dacy Rolnick +sn: Rolnick +description: This is Dacy Rolnick's description +facsimileTelephoneNumber: +1 818 338-7620 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 818-5778 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: RolnickD +givenName: Dacy +mail: RolnickD@380e18f37efc4c72a3aed9a58017ec05.bitwarden.com +carLicense: R5JCDS +departmentNumber: 6372 +employeeType: Contract +homePhone: +1 818 740-1577 +initials: D. R. +mobile: +1 818 155-5117 +pager: +1 818 220-2744 +roomNumber: 9071 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nerissa Brkich,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nerissa Brkich +sn: Brkich +description: This is Nerissa Brkich's description +facsimileTelephoneNumber: +1 818 141-1469 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 519-7857 +title: Junior Management Vice President +userPassword: Password1 +uid: BrkichN +givenName: Nerissa +mail: BrkichN@5a9a5364a178494b8230100acff2f7c1.bitwarden.com +carLicense: 5LRBNS +departmentNumber: 6093 +employeeType: Contract +homePhone: +1 818 523-1510 +initials: N. B. +mobile: +1 818 828-1988 +pager: +1 818 905-6110 +roomNumber: 8715 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ioan Usrouter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ioan Usrouter +sn: Usrouter +description: This is Ioan Usrouter's description +facsimileTelephoneNumber: +1 818 834-4100 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 363-2940 +title: Junior Product Development President +userPassword: Password1 +uid: UsrouteI +givenName: Ioan +mail: UsrouteI@ce1152a8e6c84ca8a342fb4f07adbf4b.bitwarden.com +carLicense: VB5HFH +departmentNumber: 9808 +employeeType: Employee +homePhone: +1 818 367-4192 +initials: I. U. +mobile: +1 818 816-3447 +pager: +1 818 967-1163 +roomNumber: 8554 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bekki Blimkie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bekki Blimkie +sn: Blimkie +description: This is Bekki Blimkie's description +facsimileTelephoneNumber: +1 415 336-3793 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 216-6441 +title: Chief Payroll Warrior +userPassword: Password1 +uid: BlimkieB +givenName: Bekki +mail: BlimkieB@e4ba3a04463843c4bb028511bc17c6ff.bitwarden.com +carLicense: U9CRCO +departmentNumber: 9334 +employeeType: Contract +homePhone: +1 415 573-6798 +initials: B. B. +mobile: +1 415 200-3909 +pager: +1 415 745-3326 +roomNumber: 8364 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imtaz Pastuszok +sn: Pastuszok +description: This is Imtaz Pastuszok's description +facsimileTelephoneNumber: +1 213 130-8556 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 310-5705 +title: Associate Payroll Madonna +userPassword: Password1 +uid: PastuszI +givenName: Imtaz +mail: PastuszI@990be6633e6a426c826b4ed97cd246bb.bitwarden.com +carLicense: DDBUXD +departmentNumber: 9233 +employeeType: Employee +homePhone: +1 213 278-5881 +initials: I. P. +mobile: +1 213 396-5117 +pager: +1 213 647-7082 +roomNumber: 8816 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bryn Spieker,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryn Spieker +sn: Spieker +description: This is Bryn Spieker's description +facsimileTelephoneNumber: +1 213 915-7510 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 591-6829 +title: Supreme Payroll Developer +userPassword: Password1 +uid: SpiekerB +givenName: Bryn +mail: SpiekerB@71f6d4707a2444dbb86b027f8a679d91.bitwarden.com +carLicense: DK1BYU +departmentNumber: 8983 +employeeType: Normal +homePhone: +1 213 479-4060 +initials: B. S. +mobile: +1 213 433-4321 +pager: +1 213 349-8041 +roomNumber: 8859 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vijya Torian,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vijya Torian +sn: Torian +description: This is Vijya Torian's description +facsimileTelephoneNumber: +1 510 623-6990 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 510 619-9764 +title: Chief Payroll Janitor +userPassword: Password1 +uid: TorianV +givenName: Vijya +mail: TorianV@342a4bb5e4f14c8ea1f64e893deb961c.bitwarden.com +carLicense: 0NQEHN +departmentNumber: 9529 +employeeType: Contract +homePhone: +1 510 179-5021 +initials: V. T. +mobile: +1 510 367-6557 +pager: +1 510 944-6433 +roomNumber: 8553 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Teiichi Marconi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teiichi Marconi +sn: Marconi +description: This is Teiichi Marconi's description +facsimileTelephoneNumber: +1 415 817-8077 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 106-1662 +title: Associate Product Development Czar +userPassword: Password1 +uid: MarconiT +givenName: Teiichi +mail: MarconiT@623538f66c6d44c9949856d7b9d692ad.bitwarden.com +carLicense: RFPJS0 +departmentNumber: 4368 +employeeType: Normal +homePhone: +1 415 109-6562 +initials: T. M. +mobile: +1 415 171-2582 +pager: +1 415 649-2079 +roomNumber: 9583 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Allegra Chaaban,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allegra Chaaban +sn: Chaaban +description: This is Allegra Chaaban's description +facsimileTelephoneNumber: +1 510 186-2444 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 185-4855 +title: Supreme Peons Engineer +userPassword: Password1 +uid: ChaabanA +givenName: Allegra +mail: ChaabanA@46a1aedcb791477985797ad9b9abe5c0.bitwarden.com +carLicense: BJ98T9 +departmentNumber: 7844 +employeeType: Contract +homePhone: +1 510 669-5575 +initials: A. C. +mobile: +1 510 130-4644 +pager: +1 510 759-1500 +roomNumber: 8799 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mair Wefers,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mair Wefers +sn: Wefers +description: This is Mair Wefers's description +facsimileTelephoneNumber: +1 206 249-7742 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 785-4354 +title: Junior Administrative Punk +userPassword: Password1 +uid: WefersM +givenName: Mair +mail: WefersM@49672ac4642e4eb39566d542af0eef8f.bitwarden.com +carLicense: 4GV8KQ +departmentNumber: 8873 +employeeType: Contract +homePhone: +1 206 488-2289 +initials: M. W. +mobile: +1 206 332-5982 +pager: +1 206 701-6295 +roomNumber: 9973 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kerri Turbes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kerri Turbes +sn: Turbes +description: This is Kerri Turbes's description +facsimileTelephoneNumber: +1 804 997-5517 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 646-3495 +title: Associate Peons Pinhead +userPassword: Password1 +uid: TurbesK +givenName: Kerri +mail: TurbesK@34766460128a4ee582041f543b9bd242.bitwarden.com +carLicense: DWX7PA +departmentNumber: 8272 +employeeType: Normal +homePhone: +1 804 668-9992 +initials: K. T. +mobile: +1 804 812-5529 +pager: +1 804 986-8725 +roomNumber: 8852 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Debora Dion,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debora Dion +sn: Dion +description: This is Debora Dion's description +facsimileTelephoneNumber: +1 206 916-4871 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 549-9106 +title: Supreme Administrative Architect +userPassword: Password1 +uid: DionD +givenName: Debora +mail: DionD@1a2601d237fb4358a83d77ca67ea5fc3.bitwarden.com +carLicense: N562QY +departmentNumber: 7041 +employeeType: Contract +homePhone: +1 206 357-2354 +initials: D. D. +mobile: +1 206 892-9939 +pager: +1 206 315-9599 +roomNumber: 8305 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertrude Aldhizer +sn: Aldhizer +description: This is Gertrude Aldhizer's description +facsimileTelephoneNumber: +1 818 639-3402 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 368-4919 +title: Master Payroll Artist +userPassword: Password1 +uid: AldhizeG +givenName: Gertrude +mail: AldhizeG@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com +carLicense: 5NNWC9 +departmentNumber: 9009 +employeeType: Employee +homePhone: +1 818 424-1591 +initials: G. A. +mobile: +1 818 332-9362 +pager: +1 818 462-8290 +roomNumber: 9065 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Erdem Cowen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erdem Cowen +sn: Cowen +description: This is Erdem Cowen's description +facsimileTelephoneNumber: +1 408 881-5608 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 691-7448 +title: Chief Peons Vice President +userPassword: Password1 +uid: CowenE +givenName: Erdem +mail: CowenE@202ab1834ba741fea5a2334a7dedf7d0.bitwarden.com +carLicense: 6AH3GW +departmentNumber: 6895 +employeeType: Normal +homePhone: +1 408 473-9054 +initials: E. C. +mobile: +1 408 562-9248 +pager: +1 408 544-3600 +roomNumber: 9309 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Thierry Crockett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thierry Crockett +sn: Crockett +description: This is Thierry Crockett's description +facsimileTelephoneNumber: +1 818 676-9789 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 588-1407 +title: Junior Human Resources Assistant +userPassword: Password1 +uid: CrocketT +givenName: Thierry +mail: CrocketT@3979193f52104b6298b8b064a2ea1e8e.bitwarden.com +carLicense: 1AGB0N +departmentNumber: 5307 +employeeType: Normal +homePhone: +1 818 378-6126 +initials: T. C. +mobile: +1 818 820-2011 +pager: +1 818 850-6680 +roomNumber: 8929 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Karrah Kassam,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karrah Kassam +sn: Kassam +description: This is Karrah Kassam's description +facsimileTelephoneNumber: +1 415 191-1502 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 677-2132 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: KassamK +givenName: Karrah +mail: KassamK@44cbc1ffc61f4407b46df0ad2810f7c4.bitwarden.com +carLicense: KEHJJA +departmentNumber: 8913 +employeeType: Employee +homePhone: +1 415 313-3442 +initials: K. K. +mobile: +1 415 953-9224 +pager: +1 415 323-1743 +roomNumber: 9214 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Odile Dbs,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odile Dbs +sn: Dbs +description: This is Odile Dbs's description +facsimileTelephoneNumber: +1 206 116-1167 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 570-7732 +title: Master Management Grunt +userPassword: Password1 +uid: DbsO +givenName: Odile +mail: DbsO@16315dd92dc84985a220069911440155.bitwarden.com +carLicense: 0RYPN1 +departmentNumber: 9690 +employeeType: Employee +homePhone: +1 206 747-9004 +initials: O. D. +mobile: +1 206 702-1367 +pager: +1 206 624-2436 +roomNumber: 9032 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loleta Mulqueen +sn: Mulqueen +description: This is Loleta Mulqueen's description +facsimileTelephoneNumber: +1 510 130-5902 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 415-2644 +title: Junior Administrative Architect +userPassword: Password1 +uid: MulqueeL +givenName: Loleta +mail: MulqueeL@e859d60c0ffe4559a718b23dca588771.bitwarden.com +carLicense: JEA4K2 +departmentNumber: 1456 +employeeType: Contract +homePhone: +1 510 220-6485 +initials: L. M. +mobile: +1 510 193-7356 +pager: +1 510 429-1997 +roomNumber: 9700 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lacy Haughwout,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lacy Haughwout +sn: Haughwout +description: This is Lacy Haughwout's description +facsimileTelephoneNumber: +1 415 990-6561 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 303-8356 +title: Supreme Management Architect +userPassword: Password1 +uid: HaughwoL +givenName: Lacy +mail: HaughwoL@b42b6a99e6224e4c89291ebf380e3cbd.bitwarden.com +carLicense: U0JVP5 +departmentNumber: 2020 +employeeType: Employee +homePhone: +1 415 987-1588 +initials: L. H. +mobile: +1 415 840-1078 +pager: +1 415 551-8745 +roomNumber: 9380 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jimson Volfe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jimson Volfe +sn: Volfe +description: This is Jimson Volfe's description +facsimileTelephoneNumber: +1 415 625-2696 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 759-5320 +title: Junior Product Development Mascot +userPassword: Password1 +uid: VolfeJ +givenName: Jimson +mail: VolfeJ@1a4bc9dc35304b5f9c2dd94a61108938.bitwarden.com +carLicense: 8V23X5 +departmentNumber: 2788 +employeeType: Normal +homePhone: +1 415 446-5448 +initials: J. V. +mobile: +1 415 758-7417 +pager: +1 415 453-4399 +roomNumber: 9956 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dede Billingham,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dede Billingham +sn: Billingham +description: This is Dede Billingham's description +facsimileTelephoneNumber: +1 206 337-3208 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 581-6286 +title: Supreme Janitorial President +userPassword: Password1 +uid: BillingD +givenName: Dede +mail: BillingD@280e1fcf17ca42c7b9f1237963a3ba22.bitwarden.com +carLicense: D2YSLW +departmentNumber: 6118 +employeeType: Contract +homePhone: +1 206 345-6567 +initials: D. B. +mobile: +1 206 506-6084 +pager: +1 206 795-2406 +roomNumber: 9530 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Domenic Rykwalder +sn: Rykwalder +description: This is Domenic Rykwalder's description +facsimileTelephoneNumber: +1 408 624-1344 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 348-8277 +title: Master Payroll Assistant +userPassword: Password1 +uid: RykwaldD +givenName: Domenic +mail: RykwaldD@b8b0660e812e407ca6dcb94fde784926.bitwarden.com +carLicense: UHKWJ9 +departmentNumber: 9225 +employeeType: Normal +homePhone: +1 408 495-2338 +initials: D. R. +mobile: +1 408 847-8044 +pager: +1 408 741-4313 +roomNumber: 8622 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estrellita Ramroop +sn: Ramroop +description: This is Estrellita Ramroop's description +facsimileTelephoneNumber: +1 213 244-7138 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 163-6369 +title: Supreme Product Testing Vice President +userPassword: Password1 +uid: RamroopE +givenName: Estrellita +mail: RamroopE@c73aa3a091e049f6a7996bb3eca7f8f0.bitwarden.com +carLicense: IN2WNA +departmentNumber: 9418 +employeeType: Employee +homePhone: +1 213 890-2138 +initials: E. R. +mobile: +1 213 484-1542 +pager: +1 213 524-8486 +roomNumber: 9016 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kissee Gowan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kissee Gowan +sn: Gowan +description: This is Kissee Gowan's description +facsimileTelephoneNumber: +1 206 323-4396 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 322-6017 +title: Master Product Testing Admin +userPassword: Password1 +uid: GowanK +givenName: Kissee +mail: GowanK@9eeaca65c53d4c879749fbda1cbf479e.bitwarden.com +carLicense: S3EV5G +departmentNumber: 7949 +employeeType: Employee +homePhone: +1 206 668-1860 +initials: K. G. +mobile: +1 206 968-2084 +pager: +1 206 854-3354 +roomNumber: 9703 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Eulalie Webber,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eulalie Webber +sn: Webber +description: This is Eulalie Webber's description +facsimileTelephoneNumber: +1 818 583-2088 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 519-3215 +title: Junior Product Development Manager +userPassword: Password1 +uid: WebberE +givenName: Eulalie +mail: WebberE@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com +carLicense: OGGM4J +departmentNumber: 2646 +employeeType: Employee +homePhone: +1 818 834-1295 +initials: E. W. +mobile: +1 818 352-4942 +pager: +1 818 750-5233 +roomNumber: 8882 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Court Trefry,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Court Trefry +sn: Trefry +description: This is Court Trefry's description +facsimileTelephoneNumber: +1 510 353-8482 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 719-4826 +title: Associate Management Punk +userPassword: Password1 +uid: TrefryC +givenName: Court +mail: TrefryC@6f63c7f0bdc04832878e82c0e7196131.bitwarden.com +carLicense: JCI1AX +departmentNumber: 6949 +employeeType: Contract +homePhone: +1 510 413-7005 +initials: C. T. +mobile: +1 510 427-8463 +pager: +1 510 454-5242 +roomNumber: 9766 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Claretta Kilcoin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claretta Kilcoin +sn: Kilcoin +description: This is Claretta Kilcoin's description +facsimileTelephoneNumber: +1 408 462-5301 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 140-9609 +title: Junior Peons Visionary +userPassword: Password1 +uid: KilcoinC +givenName: Claretta +mail: KilcoinC@0714ade30c294e8fa73207b90b001e06.bitwarden.com +carLicense: KA6IAV +departmentNumber: 2295 +employeeType: Contract +homePhone: +1 408 451-3620 +initials: C. K. +mobile: +1 408 832-5025 +pager: +1 408 116-7461 +roomNumber: 8998 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kassia Daaboul,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kassia Daaboul +sn: Daaboul +description: This is Kassia Daaboul's description +facsimileTelephoneNumber: +1 206 126-9619 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 206 341-4332 +title: Supreme Product Development Dictator +userPassword: Password1 +uid: DaaboulK +givenName: Kassia +mail: DaaboulK@23ac82069da24dec85c6bfe8b5f2d4d4.bitwarden.com +carLicense: HKRQG6 +departmentNumber: 2115 +employeeType: Normal +homePhone: +1 206 450-1862 +initials: K. D. +mobile: +1 206 489-9307 +pager: +1 206 378-2130 +roomNumber: 8040 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bekki Zagorsek +sn: Zagorsek +description: This is Bekki Zagorsek's description +facsimileTelephoneNumber: +1 804 176-9461 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 733-5547 +title: Junior Product Development Evangelist +userPassword: Password1 +uid: ZagorseB +givenName: Bekki +mail: ZagorseB@225e1be6fb454e5cab9ce645e748d35d.bitwarden.com +carLicense: AVQBPI +departmentNumber: 9022 +employeeType: Normal +homePhone: +1 804 360-6858 +initials: B. Z. +mobile: +1 804 394-6371 +pager: +1 804 376-5686 +roomNumber: 8594 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Weber Gu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weber Gu +sn: Gu +description: This is Weber Gu's description +facsimileTelephoneNumber: +1 408 411-2692 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 610-7123 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: GuW +givenName: Weber +mail: GuW@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com +carLicense: 5H4NML +departmentNumber: 8218 +employeeType: Employee +homePhone: +1 408 497-5218 +initials: W. G. +mobile: +1 408 196-7742 +pager: +1 408 882-8549 +roomNumber: 9957 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rank Courtney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rank Courtney +sn: Courtney +description: This is Rank Courtney's description +facsimileTelephoneNumber: +1 510 696-9304 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 864-9088 +title: Junior Administrative Grunt +userPassword: Password1 +uid: CourtneR +givenName: Rank +mail: CourtneR@3087ee4d2688435e9ed4c4c6f3e8ba87.bitwarden.com +carLicense: VROREN +departmentNumber: 1647 +employeeType: Employee +homePhone: +1 510 935-6606 +initials: R. C. +mobile: +1 510 497-3615 +pager: +1 510 577-8419 +roomNumber: 8106 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aaren Neustifter,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aaren Neustifter +sn: Neustifter +description: This is Aaren Neustifter's description +facsimileTelephoneNumber: +1 510 644-3248 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 727-3417 +title: Supreme Management Figurehead +userPassword: Password1 +uid: NeustifA +givenName: Aaren +mail: NeustifA@f9c0f71d487646dca3eac1c7c5deeeaf.bitwarden.com +carLicense: SGE747 +departmentNumber: 4735 +employeeType: Contract +homePhone: +1 510 219-2939 +initials: A. N. +mobile: +1 510 206-7607 +pager: +1 510 684-3889 +roomNumber: 8400 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chiarra Moroz +sn: Moroz +description: This is Chiarra Moroz's description +facsimileTelephoneNumber: +1 206 514-5545 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 682-9980 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: MorozC +givenName: Chiarra +mail: MorozC@c3dcba6fd4804a9ab67d7734e84114c2.bitwarden.com +carLicense: UVOV21 +departmentNumber: 1033 +employeeType: Employee +homePhone: +1 206 948-5867 +initials: C. M. +mobile: +1 206 642-4902 +pager: +1 206 933-5258 +roomNumber: 8636 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clifford Forgues,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clifford Forgues +sn: Forgues +description: This is Clifford Forgues's description +facsimileTelephoneNumber: +1 213 133-3718 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 314-8123 +title: Master Peons Visionary +userPassword: Password1 +uid: ForguesC +givenName: Clifford +mail: ForguesC@b0e0a2bb3e4d4480b71edfd089eedd18.bitwarden.com +carLicense: CXTNEN +departmentNumber: 5319 +employeeType: Contract +homePhone: +1 213 312-7095 +initials: C. F. +mobile: +1 213 591-5681 +pager: +1 213 642-3143 +roomNumber: 9229 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Donnie Laverty,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donnie Laverty +sn: Laverty +description: This is Donnie Laverty's description +facsimileTelephoneNumber: +1 206 289-7894 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 471-4013 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: LavertyD +givenName: Donnie +mail: LavertyD@7448491b00a74a3e95be2c2010be9a72.bitwarden.com +carLicense: SMXOCG +departmentNumber: 1010 +employeeType: Employee +homePhone: +1 206 227-4246 +initials: D. L. +mobile: +1 206 681-6530 +pager: +1 206 190-9011 +roomNumber: 9046 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=How Sebastien,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: How Sebastien +sn: Sebastien +description: This is How Sebastien's description +facsimileTelephoneNumber: +1 408 669-7388 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 491-8218 +title: Associate Peons Developer +userPassword: Password1 +uid: SebastiH +givenName: How +mail: SebastiH@f759e44a1c504c63b3eae17c75b66fa2.bitwarden.com +carLicense: 4Q1774 +departmentNumber: 5806 +employeeType: Normal +homePhone: +1 408 112-4846 +initials: H. S. +mobile: +1 408 740-9565 +pager: +1 408 258-1025 +roomNumber: 8591 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hung Tabl,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hung Tabl +sn: Tabl +description: This is Hung Tabl's description +facsimileTelephoneNumber: +1 804 295-8327 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 496-4249 +title: Master Administrative Manager +userPassword: Password1 +uid: TablH +givenName: Hung +mail: TablH@89d768777d16464796c6d90c8e8f013b.bitwarden.com +carLicense: R2S7ID +departmentNumber: 2864 +employeeType: Normal +homePhone: +1 804 894-3342 +initials: H. T. +mobile: +1 804 270-4554 +pager: +1 804 521-7436 +roomNumber: 9241 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Maye Atoui,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maye Atoui +sn: Atoui +description: This is Maye Atoui's description +facsimileTelephoneNumber: +1 206 385-5399 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 572-1671 +title: Master Payroll Warrior +userPassword: Password1 +uid: AtouiM +givenName: Maye +mail: AtouiM@92820cdfa8c3401089a4d22b2ae2009e.bitwarden.com +carLicense: RYQPVB +departmentNumber: 1062 +employeeType: Contract +homePhone: +1 206 402-8375 +initials: M. A. +mobile: +1 206 478-4816 +pager: +1 206 407-7851 +roomNumber: 8867 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Deva Currie,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deva Currie +sn: Currie +description: This is Deva Currie's description +facsimileTelephoneNumber: +1 213 781-1109 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 169-4357 +title: Master Administrative Dictator +userPassword: Password1 +uid: CurrieD +givenName: Deva +mail: CurrieD@fae6085323bb4b59a529fb3b72784e6a.bitwarden.com +carLicense: EWGG8D +departmentNumber: 7843 +employeeType: Employee +homePhone: +1 213 327-3608 +initials: D. C. +mobile: +1 213 142-8046 +pager: +1 213 695-9175 +roomNumber: 9079 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vivienne Bourk,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivienne Bourk +sn: Bourk +description: This is Vivienne Bourk's description +facsimileTelephoneNumber: +1 510 222-2138 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 459-2261 +title: Junior Payroll Developer +userPassword: Password1 +uid: BourkV +givenName: Vivienne +mail: BourkV@a84df3e5c9b34623ae9b4e8378e01b53.bitwarden.com +carLicense: 8PXI16 +departmentNumber: 8765 +employeeType: Contract +homePhone: +1 510 110-3788 +initials: V. B. +mobile: +1 510 381-2666 +pager: +1 510 747-7119 +roomNumber: 9866 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gerber Kiernan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerber Kiernan +sn: Kiernan +description: This is Gerber Kiernan's description +facsimileTelephoneNumber: +1 510 278-7108 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 110-5224 +title: Junior Peons Punk +userPassword: Password1 +uid: KiernanG +givenName: Gerber +mail: KiernanG@caa46152d3004d829aedead9d70579b0.bitwarden.com +carLicense: B1HQ3O +departmentNumber: 9428 +employeeType: Normal +homePhone: +1 510 135-5645 +initials: G. K. +mobile: +1 510 901-8986 +pager: +1 510 735-3394 +roomNumber: 8846 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Me Muhammed,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Me Muhammed +sn: Muhammed +description: This is Me Muhammed's description +facsimileTelephoneNumber: +1 804 400-6915 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 478-3385 +title: Master Product Testing Artist +userPassword: Password1 +uid: MuhammeM +givenName: Me +mail: MuhammeM@280b34febbb74067854d58b8a20b3eb2.bitwarden.com +carLicense: 5M6DAX +departmentNumber: 9522 +employeeType: Contract +homePhone: +1 804 760-5848 +initials: M. M. +mobile: +1 804 818-4241 +pager: +1 804 924-2797 +roomNumber: 9562 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ragui Lorenc,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ragui Lorenc +sn: Lorenc +description: This is Ragui Lorenc's description +facsimileTelephoneNumber: +1 818 951-8872 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 635-9372 +title: Associate Peons Warrior +userPassword: Password1 +uid: LorencR +givenName: Ragui +mail: LorencR@7d5f96a7021f46fdb7df38ea2101330d.bitwarden.com +carLicense: APGCHJ +departmentNumber: 2766 +employeeType: Contract +homePhone: +1 818 830-1297 +initials: R. L. +mobile: +1 818 214-7379 +pager: +1 818 928-1879 +roomNumber: 8003 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorenza McCormick,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorenza McCormick +sn: McCormick +description: This is Lorenza McCormick's description +facsimileTelephoneNumber: +1 415 159-2950 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 415 911-4612 +title: Associate Peons Evangelist +userPassword: Password1 +uid: McCormiL +givenName: Lorenza +mail: McCormiL@b3a0ac978ba64a56a57f321d452537e5.bitwarden.com +carLicense: 6VCJXV +departmentNumber: 4118 +employeeType: Employee +homePhone: +1 415 730-4504 +initials: L. M. +mobile: +1 415 828-2668 +pager: +1 415 479-8723 +roomNumber: 8339 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beatrisa Malaher,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatrisa Malaher +sn: Malaher +description: This is Beatrisa Malaher's description +facsimileTelephoneNumber: +1 818 603-7876 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 818 184-1965 +title: Associate Peons Dictator +userPassword: Password1 +uid: MalaherB +givenName: Beatrisa +mail: MalaherB@8522aa5b68484728b6db62d65a666456.bitwarden.com +carLicense: L44G2B +departmentNumber: 9093 +employeeType: Normal +homePhone: +1 818 495-2641 +initials: B. M. +mobile: +1 818 209-6066 +pager: +1 818 207-8461 +roomNumber: 9485 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tiffi Beverly,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffi Beverly +sn: Beverly +description: This is Tiffi Beverly's description +facsimileTelephoneNumber: +1 510 471-5662 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 939-7285 +title: Chief Payroll Stooge +userPassword: Password1 +uid: BeverlyT +givenName: Tiffi +mail: BeverlyT@01c5fecdf9e14e82bff74d9b9c368891.bitwarden.com +carLicense: 0USTOB +departmentNumber: 3193 +employeeType: Employee +homePhone: +1 510 434-9442 +initials: T. B. +mobile: +1 510 760-9109 +pager: +1 510 166-4250 +roomNumber: 8810 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estrellita Bijons +sn: Bijons +description: This is Estrellita Bijons's description +facsimileTelephoneNumber: +1 408 956-5032 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 408 585-2638 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: BijonsE +givenName: Estrellita +mail: BijonsE@99adc70861e74db5b3e496e79ef1d82c.bitwarden.com +carLicense: NPNOB1 +departmentNumber: 8529 +employeeType: Contract +homePhone: +1 408 441-7969 +initials: E. B. +mobile: +1 408 774-3498 +pager: +1 408 546-8817 +roomNumber: 9872 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Analise Shiley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Analise Shiley +sn: Shiley +description: This is Analise Shiley's description +facsimileTelephoneNumber: +1 415 494-2662 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 791-9910 +title: Junior Janitorial Manager +userPassword: Password1 +uid: ShileyA +givenName: Analise +mail: ShileyA@e51aa6debfeb4cc88c68dfc76ad89784.bitwarden.com +carLicense: 29G9L4 +departmentNumber: 4898 +employeeType: Employee +homePhone: +1 415 235-9837 +initials: A. S. +mobile: +1 415 373-2496 +pager: +1 415 854-2785 +roomNumber: 8014 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Fan Neander,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fan Neander +sn: Neander +description: This is Fan Neander's description +facsimileTelephoneNumber: +1 206 917-9866 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 269-2663 +title: Master Janitorial Janitor +userPassword: Password1 +uid: NeanderF +givenName: Fan +mail: NeanderF@8fd38b10138d41afbb37c8037aaf6377.bitwarden.com +carLicense: SXSSVU +departmentNumber: 7700 +employeeType: Employee +homePhone: +1 206 504-8275 +initials: F. N. +mobile: +1 206 626-8639 +pager: +1 206 216-2700 +roomNumber: 8026 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Diamond Azer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diamond Azer +sn: Azer +description: This is Diamond Azer's description +facsimileTelephoneNumber: +1 415 412-4632 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 403-2520 +title: Chief Payroll Vice President +userPassword: Password1 +uid: AzerD +givenName: Diamond +mail: AzerD@5d8901804e424468b0bef6e0378317d6.bitwarden.com +carLicense: AENJM1 +departmentNumber: 5945 +employeeType: Contract +homePhone: +1 415 388-4423 +initials: D. A. +mobile: +1 415 283-4490 +pager: +1 415 868-4313 +roomNumber: 8088 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dorothee Azmak,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorothee Azmak +sn: Azmak +description: This is Dorothee Azmak's description +facsimileTelephoneNumber: +1 408 353-5831 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 351-8315 +title: Supreme Payroll Warrior +userPassword: Password1 +uid: AzmakD +givenName: Dorothee +mail: AzmakD@6882bb306b30484eac03893eca277bd3.bitwarden.com +carLicense: 2EBUB0 +departmentNumber: 9219 +employeeType: Employee +homePhone: +1 408 332-7999 +initials: D. A. +mobile: +1 408 803-8877 +pager: +1 408 565-6198 +roomNumber: 8280 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aloisia Svalesen +sn: Svalesen +description: This is Aloisia Svalesen's description +facsimileTelephoneNumber: +1 213 555-7527 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 272-4537 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: SvaleseA +givenName: Aloisia +mail: SvaleseA@8e7d48bf3a0c469095e8b24ecc1dd148.bitwarden.com +carLicense: RUWO6Q +departmentNumber: 4954 +employeeType: Employee +homePhone: +1 213 106-3287 +initials: A. S. +mobile: +1 213 741-5693 +pager: +1 213 997-8423 +roomNumber: 9607 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sydel MacGillivray,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sydel MacGillivray +sn: MacGillivray +description: This is Sydel MacGillivray's description +facsimileTelephoneNumber: +1 213 482-5325 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 125-3187 +title: Supreme Peons Evangelist +userPassword: Password1 +uid: MacGillS +givenName: Sydel +mail: MacGillS@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com +carLicense: LFFX7W +departmentNumber: 1224 +employeeType: Contract +homePhone: +1 213 398-6870 +initials: S. M. +mobile: +1 213 458-1344 +pager: +1 213 667-5344 +roomNumber: 8880 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Martelle Filpus,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martelle Filpus +sn: Filpus +description: This is Martelle Filpus's description +facsimileTelephoneNumber: +1 206 826-4708 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 133-3544 +title: Supreme Product Testing President +userPassword: Password1 +uid: FilpusM +givenName: Martelle +mail: FilpusM@0f18718d8483421a96ceacb15a634c41.bitwarden.com +carLicense: GV94L0 +departmentNumber: 4088 +employeeType: Employee +homePhone: +1 206 636-9062 +initials: M. F. +mobile: +1 206 404-4709 +pager: +1 206 700-5963 +roomNumber: 8634 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Merunix Fadlallah,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merunix Fadlallah +sn: Fadlallah +description: This is Merunix Fadlallah's description +facsimileTelephoneNumber: +1 818 565-7028 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 818 618-7364 +title: Junior Management Figurehead +userPassword: Password1 +uid: FadlallM +givenName: Merunix +mail: FadlallM@6dfbae5841184eee86f16ac4a1176697.bitwarden.com +carLicense: 5DQSML +departmentNumber: 5591 +employeeType: Normal +homePhone: +1 818 442-6156 +initials: M. F. +mobile: +1 818 460-5903 +pager: +1 818 961-8070 +roomNumber: 9373 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Faz Seegobin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faz Seegobin +sn: Seegobin +description: This is Faz Seegobin's description +facsimileTelephoneNumber: +1 206 361-2417 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 860-3516 +title: Master Janitorial President +userPassword: Password1 +uid: SeegobiF +givenName: Faz +mail: SeegobiF@71a24c1b73ef45498dfd1fbb9961fd57.bitwarden.com +carLicense: WVQ153 +departmentNumber: 1217 +employeeType: Contract +homePhone: +1 206 173-6036 +initials: F. S. +mobile: +1 206 384-1340 +pager: +1 206 322-6074 +roomNumber: 8545 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellie Hrvatin +sn: Hrvatin +description: This is Ellie Hrvatin's description +facsimileTelephoneNumber: +1 415 345-1698 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 800-2278 +title: Master Product Development Visionary +userPassword: Password1 +uid: HrvatinE +givenName: Ellie +mail: HrvatinE@7fedbd7312884d269b87f028bb6e0f4a.bitwarden.com +carLicense: J8CBEQ +departmentNumber: 9353 +employeeType: Contract +homePhone: +1 415 512-2134 +initials: E. H. +mobile: +1 415 573-3948 +pager: +1 415 941-9715 +roomNumber: 8924 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jeffery Panek,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeffery Panek +sn: Panek +description: This is Jeffery Panek's description +facsimileTelephoneNumber: +1 213 779-1404 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 213 875-1677 +title: Master Administrative Architect +userPassword: Password1 +uid: PanekJ +givenName: Jeffery +mail: PanekJ@0c478e577f6c43f08e0c7154f215c7af.bitwarden.com +carLicense: 9TLW1D +departmentNumber: 5714 +employeeType: Employee +homePhone: +1 213 369-8926 +initials: J. P. +mobile: +1 213 956-9645 +pager: +1 213 121-9470 +roomNumber: 8890 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chip Billard,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chip Billard +sn: Billard +description: This is Chip Billard's description +facsimileTelephoneNumber: +1 804 639-8541 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 989-4916 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: BillardC +givenName: Chip +mail: BillardC@f56fa15d6b7d4398bc29adc06e1de112.bitwarden.com +carLicense: LM57WH +departmentNumber: 2146 +employeeType: Employee +homePhone: +1 804 872-9663 +initials: C. B. +mobile: +1 804 584-5112 +pager: +1 804 963-1280 +roomNumber: 8428 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tran Selbrede,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tran Selbrede +sn: Selbrede +description: This is Tran Selbrede's description +facsimileTelephoneNumber: +1 415 757-8404 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 624-4686 +title: Supreme Peons Visionary +userPassword: Password1 +uid: SelbredT +givenName: Tran +mail: SelbredT@af40db009e314d829eef59ff73dce913.bitwarden.com +carLicense: 7RJP84 +departmentNumber: 5809 +employeeType: Contract +homePhone: +1 415 302-1896 +initials: T. S. +mobile: +1 415 174-9326 +pager: +1 415 573-7582 +roomNumber: 9759 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wade Boersma,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wade Boersma +sn: Boersma +description: This is Wade Boersma's description +facsimileTelephoneNumber: +1 818 521-6770 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 630-6323 +title: Associate Peons Director +userPassword: Password1 +uid: BoersmaW +givenName: Wade +mail: BoersmaW@24bb0910ae8142189acd6bd1e9a01a9a.bitwarden.com +carLicense: MPBT97 +departmentNumber: 3964 +employeeType: Employee +homePhone: +1 818 102-8095 +initials: W. B. +mobile: +1 818 123-9515 +pager: +1 818 192-2422 +roomNumber: 9047 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Quintana Huneault,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quintana Huneault +sn: Huneault +description: This is Quintana Huneault's description +facsimileTelephoneNumber: +1 206 906-7289 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 198-5299 +title: Master Administrative Developer +userPassword: Password1 +uid: HuneaulQ +givenName: Quintana +mail: HuneaulQ@0ffd7dc252424626a20bcce6a53d823f.bitwarden.com +carLicense: CT3KSB +departmentNumber: 5624 +employeeType: Normal +homePhone: +1 206 610-7586 +initials: Q. H. +mobile: +1 206 690-9992 +pager: +1 206 377-7860 +roomNumber: 9790 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Coors Beerkens,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coors Beerkens +sn: Beerkens +description: This is Coors Beerkens's description +facsimileTelephoneNumber: +1 408 708-8756 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 127-4797 +title: Junior Administrative Dictator +userPassword: Password1 +uid: BeerkenC +givenName: Coors +mail: BeerkenC@79a240440e8849ae9bc16c0dd8ed8e58.bitwarden.com +carLicense: YIJ9V2 +departmentNumber: 8403 +employeeType: Contract +homePhone: +1 408 726-2143 +initials: C. B. +mobile: +1 408 598-1857 +pager: +1 408 338-5368 +roomNumber: 8898 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Prudence Schacham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prudence Schacham +sn: Schacham +description: This is Prudence Schacham's description +facsimileTelephoneNumber: +1 818 686-1263 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 818 859-8869 +title: Master Product Testing President +userPassword: Password1 +uid: SchachaP +givenName: Prudence +mail: SchachaP@5dc8fd12cec3417ebac3e0369b557c5a.bitwarden.com +carLicense: L36QS4 +departmentNumber: 7907 +employeeType: Normal +homePhone: +1 818 748-2418 +initials: P. S. +mobile: +1 818 214-1875 +pager: +1 818 937-4687 +roomNumber: 8917 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verlyn Dunajski +sn: Dunajski +description: This is Verlyn Dunajski's description +facsimileTelephoneNumber: +1 408 780-2786 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 214-6927 +title: Supreme Payroll Czar +userPassword: Password1 +uid: DunajskV +givenName: Verlyn +mail: DunajskV@8cf79d720e6f4840b60a280dc34d992f.bitwarden.com +carLicense: VXRF5F +departmentNumber: 6627 +employeeType: Normal +homePhone: +1 408 745-3160 +initials: V. D. +mobile: +1 408 739-9888 +pager: +1 408 489-8595 +roomNumber: 8973 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Evita Cropper,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evita Cropper +sn: Cropper +description: This is Evita Cropper's description +facsimileTelephoneNumber: +1 415 309-7022 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 671-8822 +title: Associate Janitorial Artist +userPassword: Password1 +uid: CropperE +givenName: Evita +mail: CropperE@93856f312059479cb0ac63a8c6d54de8.bitwarden.com +carLicense: NMLAS5 +departmentNumber: 2841 +employeeType: Normal +homePhone: +1 415 221-2281 +initials: E. C. +mobile: +1 415 107-5275 +pager: +1 415 461-2527 +roomNumber: 8734 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joletta Senten,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joletta Senten +sn: Senten +description: This is Joletta Senten's description +facsimileTelephoneNumber: +1 818 253-1158 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 461-4311 +title: Supreme Peons Czar +userPassword: Password1 +uid: SentenJ +givenName: Joletta +mail: SentenJ@d267cba29e124e168b77cc7855c4f981.bitwarden.com +carLicense: H4HLNM +departmentNumber: 2366 +employeeType: Normal +homePhone: +1 818 118-3044 +initials: J. S. +mobile: +1 818 456-1685 +pager: +1 818 451-1044 +roomNumber: 8928 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kylie Wueppelmann +sn: Wueppelmann +description: This is Kylie Wueppelmann's description +facsimileTelephoneNumber: +1 804 309-8225 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 294-3299 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: WueppelK +givenName: Kylie +mail: WueppelK@9e342fa3efb14712a894fba19d56a8d2.bitwarden.com +carLicense: XDTT2V +departmentNumber: 9278 +employeeType: Contract +homePhone: +1 804 626-8125 +initials: K. W. +mobile: +1 804 291-8415 +pager: +1 804 110-4706 +roomNumber: 8332 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fotini Suyama,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fotini Suyama +sn: Suyama +description: This is Fotini Suyama's description +facsimileTelephoneNumber: +1 408 902-3009 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 997-9361 +title: Junior Management Director +userPassword: Password1 +uid: SuyamaF +givenName: Fotini +mail: SuyamaF@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com +carLicense: QA34NT +departmentNumber: 7633 +employeeType: Employee +homePhone: +1 408 537-2037 +initials: F. S. +mobile: +1 408 151-8470 +pager: +1 408 373-3722 +roomNumber: 9427 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hazel Gesino,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hazel Gesino +sn: Gesino +description: This is Hazel Gesino's description +facsimileTelephoneNumber: +1 510 633-5271 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 127-5825 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: GesinoH +givenName: Hazel +mail: GesinoH@9cd1df92f17b493a882aebc6152a1e6e.bitwarden.com +carLicense: E73SC2 +departmentNumber: 7704 +employeeType: Contract +homePhone: +1 510 626-4560 +initials: H. G. +mobile: +1 510 823-6628 +pager: +1 510 631-2463 +roomNumber: 8983 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ivie Murison,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivie Murison +sn: Murison +description: This is Ivie Murison's description +facsimileTelephoneNumber: +1 818 328-8466 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 215-5501 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: MurisonI +givenName: Ivie +mail: MurisonI@4c46c0ccb3eb4998b4cbc47cae874ac9.bitwarden.com +carLicense: ISVKCA +departmentNumber: 4612 +employeeType: Employee +homePhone: +1 818 236-3726 +initials: I. M. +mobile: +1 818 997-2877 +pager: +1 818 438-7528 +roomNumber: 9337 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mahesh Flach,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mahesh Flach +sn: Flach +description: This is Mahesh Flach's description +facsimileTelephoneNumber: +1 804 234-6867 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 474-8119 +title: Junior Payroll Madonna +userPassword: Password1 +uid: FlachM +givenName: Mahesh +mail: FlachM@09bb099d23204c85bbfd94efdb157b79.bitwarden.com +carLicense: BPGBLK +departmentNumber: 3340 +employeeType: Employee +homePhone: +1 804 402-8394 +initials: M. F. +mobile: +1 804 932-2699 +pager: +1 804 478-6743 +roomNumber: 8646 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Annalee Prikkel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annalee Prikkel +sn: Prikkel +description: This is Annalee Prikkel's description +facsimileTelephoneNumber: +1 818 399-1808 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 578-6541 +title: Master Management Figurehead +userPassword: Password1 +uid: PrikkelA +givenName: Annalee +mail: PrikkelA@578d34c128584bdeb42b389207ab706c.bitwarden.com +carLicense: D50D8F +departmentNumber: 6704 +employeeType: Contract +homePhone: +1 818 689-2862 +initials: A. P. +mobile: +1 818 959-6961 +pager: +1 818 860-3225 +roomNumber: 9058 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Catja Scholman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catja Scholman +sn: Scholman +description: This is Catja Scholman's description +facsimileTelephoneNumber: +1 213 822-8500 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 213 147-8386 +title: Master Human Resources Czar +userPassword: Password1 +uid: ScholmaC +givenName: Catja +mail: ScholmaC@fa78ddbf4a824e749170662a86f94ae1.bitwarden.com +carLicense: 30U25U +departmentNumber: 9089 +employeeType: Normal +homePhone: +1 213 762-9467 +initials: C. S. +mobile: +1 213 640-4450 +pager: +1 213 956-6780 +roomNumber: 8760 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: RoseAnne Dodson +sn: Dodson +description: This is RoseAnne Dodson's description +facsimileTelephoneNumber: +1 415 240-8784 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 413-2307 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: DodsonR +givenName: RoseAnne +mail: DodsonR@97f7053b3d7f4f79b48d3e12171a5966.bitwarden.com +carLicense: OTU31E +departmentNumber: 8365 +employeeType: Employee +homePhone: +1 415 127-9478 +initials: R. D. +mobile: +1 415 965-2139 +pager: +1 415 772-2731 +roomNumber: 8487 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anda Fastpack,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anda Fastpack +sn: Fastpack +description: This is Anda Fastpack's description +facsimileTelephoneNumber: +1 213 119-7006 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 306-7987 +title: Junior Product Testing Architect +userPassword: Password1 +uid: FastpacA +givenName: Anda +mail: FastpacA@a035bec181ea4cd9abd3953e80704bef.bitwarden.com +carLicense: 2K25Y2 +departmentNumber: 9119 +employeeType: Contract +homePhone: +1 213 723-6959 +initials: A. F. +mobile: +1 213 235-9213 +pager: +1 213 162-6643 +roomNumber: 8936 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Salis Nehring,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salis Nehring +sn: Nehring +description: This is Salis Nehring's description +facsimileTelephoneNumber: +1 213 749-3490 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 163-8074 +title: Associate Management Pinhead +userPassword: Password1 +uid: NehringS +givenName: Salis +mail: NehringS@0769d99dace1402cab1152a81fe3788b.bitwarden.com +carLicense: UHOD8Q +departmentNumber: 4187 +employeeType: Contract +homePhone: +1 213 248-6700 +initials: S. N. +mobile: +1 213 145-9115 +pager: +1 213 380-9206 +roomNumber: 9574 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Francis LeBlanc,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francis LeBlanc +sn: LeBlanc +description: This is Francis LeBlanc's description +facsimileTelephoneNumber: +1 415 601-4851 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 624-3039 +title: Junior Payroll Director +userPassword: Password1 +uid: LeBlancF +givenName: Francis +mail: LeBlancF@d8f95844461442f7932326cd41b836f9.bitwarden.com +carLicense: LKILFX +departmentNumber: 2122 +employeeType: Employee +homePhone: +1 415 378-9434 +initials: F. L. +mobile: +1 415 994-2538 +pager: +1 415 342-9924 +roomNumber: 9777 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Humberto Stensrud,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Humberto Stensrud +sn: Stensrud +description: This is Humberto Stensrud's description +facsimileTelephoneNumber: +1 206 183-2532 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 252-1546 +title: Supreme Management Developer +userPassword: Password1 +uid: StensruH +givenName: Humberto +mail: StensruH@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com +carLicense: EBG1K5 +departmentNumber: 7475 +employeeType: Employee +homePhone: +1 206 575-3468 +initials: H. S. +mobile: +1 206 979-9339 +pager: +1 206 327-1661 +roomNumber: 9124 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Manfred Wesolowski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manfred Wesolowski +sn: Wesolowski +description: This is Manfred Wesolowski's description +facsimileTelephoneNumber: +1 415 800-5360 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 867-6559 +title: Associate Peons Artist +userPassword: Password1 +uid: WesolowM +givenName: Manfred +mail: WesolowM@e3eea603d1ae4f4dbff063acf8c6da65.bitwarden.com +carLicense: F09KVU +departmentNumber: 9636 +employeeType: Employee +homePhone: +1 415 118-3840 +initials: M. W. +mobile: +1 415 767-2804 +pager: +1 415 231-1176 +roomNumber: 8210 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherwood Dziemian +sn: Dziemian +description: This is Sherwood Dziemian's description +facsimileTelephoneNumber: +1 415 248-2380 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 689-3511 +title: Chief Janitorial Manager +userPassword: Password1 +uid: DziemiaS +givenName: Sherwood +mail: DziemiaS@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com +carLicense: WPH92N +departmentNumber: 9304 +employeeType: Employee +homePhone: +1 415 238-6285 +initials: S. D. +mobile: +1 415 720-9335 +pager: +1 415 348-7156 +roomNumber: 8173 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Estele Fiest,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estele Fiest +sn: Fiest +description: This is Estele Fiest's description +facsimileTelephoneNumber: +1 408 161-2535 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 815-6919 +title: Master Peons Figurehead +userPassword: Password1 +uid: FiestE +givenName: Estele +mail: FiestE@9bf2c205467a41708e3322ff14ec009d.bitwarden.com +carLicense: 5GKT6D +departmentNumber: 3808 +employeeType: Normal +homePhone: +1 408 190-4683 +initials: E. F. +mobile: +1 408 588-8315 +pager: +1 408 493-5846 +roomNumber: 8639 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maciej Fucito,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maciej Fucito +sn: Fucito +description: This is Maciej Fucito's description +facsimileTelephoneNumber: +1 415 629-9326 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 932-8579 +title: Supreme Administrative Evangelist +userPassword: Password1 +uid: FucitoM +givenName: Maciej +mail: FucitoM@5e943e5d6d7b48d9af98d3041b109570.bitwarden.com +carLicense: NIM1XY +departmentNumber: 6914 +employeeType: Contract +homePhone: +1 415 162-5122 +initials: M. F. +mobile: +1 415 564-2735 +pager: +1 415 936-2460 +roomNumber: 8686 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnnLorrain Keer +sn: Keer +description: This is AnnLorrain Keer's description +facsimileTelephoneNumber: +1 818 407-3303 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 104-5891 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: KeerA +givenName: AnnLorrain +mail: KeerA@177cfb37cf074f4eb62daca714a1f711.bitwarden.com +carLicense: 6VSLT8 +departmentNumber: 8513 +employeeType: Employee +homePhone: +1 818 845-5049 +initials: A. K. +mobile: +1 818 716-8460 +pager: +1 818 937-7520 +roomNumber: 9635 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Frinel Veals,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frinel Veals +sn: Veals +description: This is Frinel Veals's description +facsimileTelephoneNumber: +1 213 140-2044 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 351-1333 +title: Chief Payroll Assistant +userPassword: Password1 +uid: VealsF +givenName: Frinel +mail: VealsF@7022b955bef74762989f3e8241ec17a6.bitwarden.com +carLicense: IXJ4BI +departmentNumber: 6118 +employeeType: Employee +homePhone: +1 213 137-5032 +initials: F. V. +mobile: +1 213 545-2180 +pager: +1 213 253-4763 +roomNumber: 8484 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Catha Ghossein,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catha Ghossein +sn: Ghossein +description: This is Catha Ghossein's description +facsimileTelephoneNumber: +1 206 919-1967 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 176-7983 +title: Master Human Resources Pinhead +userPassword: Password1 +uid: GhosseiC +givenName: Catha +mail: GhosseiC@afcd326ae5b94cedba790b89df39e139.bitwarden.com +carLicense: VDHG8L +departmentNumber: 9911 +employeeType: Normal +homePhone: +1 206 636-2603 +initials: C. G. +mobile: +1 206 978-5819 +pager: +1 206 318-2190 +roomNumber: 8513 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Basia Trinidad,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Basia Trinidad +sn: Trinidad +description: This is Basia Trinidad's description +facsimileTelephoneNumber: +1 213 816-1277 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 608-5787 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: TrinidaB +givenName: Basia +mail: TrinidaB@14e134bbcef94cbd9594aadae408ce91.bitwarden.com +carLicense: 40E5VW +departmentNumber: 3448 +employeeType: Contract +homePhone: +1 213 781-1404 +initials: B. T. +mobile: +1 213 394-4536 +pager: +1 213 776-7077 +roomNumber: 9146 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vita Leveille,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vita Leveille +sn: Leveille +description: This is Vita Leveille's description +facsimileTelephoneNumber: +1 818 719-5265 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 531-3746 +title: Chief Human Resources Mascot +userPassword: Password1 +uid: LeveillV +givenName: Vita +mail: LeveillV@156df7528958433faec56aa3b7184ead.bitwarden.com +carLicense: SPN04K +departmentNumber: 1433 +employeeType: Contract +homePhone: +1 818 730-6503 +initials: V. L. +mobile: +1 818 252-5444 +pager: +1 818 431-6529 +roomNumber: 8589 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lidio Toomer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lidio Toomer +sn: Toomer +description: This is Lidio Toomer's description +facsimileTelephoneNumber: +1 510 652-6787 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 616-8950 +title: Chief Human Resources Technician +userPassword: Password1 +uid: ToomerL +givenName: Lidio +mail: ToomerL@4ec011c6fc024dda9c255391b6f4f92f.bitwarden.com +carLicense: 9LFLH7 +departmentNumber: 7147 +employeeType: Employee +homePhone: +1 510 280-7443 +initials: L. T. +mobile: +1 510 534-1782 +pager: +1 510 660-3848 +roomNumber: 9311 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kessel Keveny,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kessel Keveny +sn: Keveny +description: This is Kessel Keveny's description +facsimileTelephoneNumber: +1 206 267-6786 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 257-6498 +title: Junior Product Development President +userPassword: Password1 +uid: KevenyK +givenName: Kessel +mail: KevenyK@60e7c26ff89e4b72b87e6f8a7af31f27.bitwarden.com +carLicense: 56M65Y +departmentNumber: 7089 +employeeType: Contract +homePhone: +1 206 320-2795 +initials: K. K. +mobile: +1 206 135-9339 +pager: +1 206 374-3478 +roomNumber: 9638 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alf Noorani,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alf Noorani +sn: Noorani +description: This is Alf Noorani's description +facsimileTelephoneNumber: +1 818 923-7718 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 818 361-2886 +title: Master Janitorial Director +userPassword: Password1 +uid: NooraniA +givenName: Alf +mail: NooraniA@9d5da66e74ac4d48878a287a4792d9ad.bitwarden.com +carLicense: 2XXQ87 +departmentNumber: 9439 +employeeType: Normal +homePhone: +1 818 300-5221 +initials: A. N. +mobile: +1 818 959-3697 +pager: +1 818 562-2578 +roomNumber: 9486 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmella Mivehchi +sn: Mivehchi +description: This is Carmella Mivehchi's description +facsimileTelephoneNumber: +1 818 591-1763 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 658-3562 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: MivehchC +givenName: Carmella +mail: MivehchC@f5afe6422dca491da65fa6a254990cc8.bitwarden.com +carLicense: CKMAXO +departmentNumber: 3717 +employeeType: Employee +homePhone: +1 818 994-5454 +initials: C. M. +mobile: +1 818 345-1987 +pager: +1 818 870-8514 +roomNumber: 8811 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kirstyn Hutt,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirstyn Hutt +sn: Hutt +description: This is Kirstyn Hutt's description +facsimileTelephoneNumber: +1 415 260-3390 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 801-2219 +title: Chief Management Visionary +userPassword: Password1 +uid: HuttK +givenName: Kirstyn +mail: HuttK@7d6035a424ee45dca06332e1186be7f6.bitwarden.com +carLicense: 3ITHID +departmentNumber: 6127 +employeeType: Employee +homePhone: +1 415 352-4285 +initials: K. H. +mobile: +1 415 240-2250 +pager: +1 415 217-9532 +roomNumber: 9543 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Blisse Lein,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blisse Lein +sn: Lein +description: This is Blisse Lein's description +facsimileTelephoneNumber: +1 206 842-4455 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 737-2081 +title: Associate Product Testing Developer +userPassword: Password1 +uid: LeinB +givenName: Blisse +mail: LeinB@94b95f6e458646f98e09b046007fece8.bitwarden.com +carLicense: LTXALO +departmentNumber: 5675 +employeeType: Contract +homePhone: +1 206 615-3916 +initials: B. L. +mobile: +1 206 468-4594 +pager: +1 206 212-3552 +roomNumber: 8380 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Edithe Dougall,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edithe Dougall +sn: Dougall +description: This is Edithe Dougall's description +facsimileTelephoneNumber: +1 206 262-6166 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 275-5490 +title: Chief Administrative Assistant +userPassword: Password1 +uid: DougallE +givenName: Edithe +mail: DougallE@e5b69381ba2b442b903a1a29bf25534d.bitwarden.com +carLicense: GV6X5B +departmentNumber: 1813 +employeeType: Normal +homePhone: +1 206 369-4092 +initials: E. D. +mobile: +1 206 266-1168 +pager: +1 206 660-4801 +roomNumber: 8391 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sage Randell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sage Randell +sn: Randell +description: This is Sage Randell's description +facsimileTelephoneNumber: +1 510 496-7067 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 762-6522 +title: Supreme Peons Manager +userPassword: Password1 +uid: RandellS +givenName: Sage +mail: RandellS@7f502c8cd29345a394629247bc437c0f.bitwarden.com +carLicense: MSS9J1 +departmentNumber: 6685 +employeeType: Contract +homePhone: +1 510 240-3274 +initials: S. R. +mobile: +1 510 231-5950 +pager: +1 510 875-6353 +roomNumber: 8876 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carina Hume,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carina Hume +sn: Hume +description: This is Carina Hume's description +facsimileTelephoneNumber: +1 510 389-7232 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 510 605-8532 +title: Chief Peons Engineer +userPassword: Password1 +uid: HumeC +givenName: Carina +mail: HumeC@8053af09c938471f9ad09445e16f631c.bitwarden.com +carLicense: KDYXN6 +departmentNumber: 2674 +employeeType: Contract +homePhone: +1 510 132-8592 +initials: C. H. +mobile: +1 510 531-8843 +pager: +1 510 200-8019 +roomNumber: 9023 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mickie Prystie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mickie Prystie +sn: Prystie +description: This is Mickie Prystie's description +facsimileTelephoneNumber: +1 206 573-8815 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 140-1404 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: PrystieM +givenName: Mickie +mail: PrystieM@ab27f4e751074bd087dace4a33698f66.bitwarden.com +carLicense: 77DJG8 +departmentNumber: 2075 +employeeType: Contract +homePhone: +1 206 901-4386 +initials: M. P. +mobile: +1 206 777-2105 +pager: +1 206 780-2992 +roomNumber: 9209 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nalin Levere,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nalin Levere +sn: Levere +description: This is Nalin Levere's description +facsimileTelephoneNumber: +1 415 662-5058 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 316-6195 +title: Master Human Resources Director +userPassword: Password1 +uid: LevereN +givenName: Nalin +mail: LevereN@14c49ff73612459cbe530fd5ad7a9b9f.bitwarden.com +carLicense: JBPYRC +departmentNumber: 6844 +employeeType: Normal +homePhone: +1 415 158-3072 +initials: N. L. +mobile: +1 415 440-9768 +pager: +1 415 517-1843 +roomNumber: 9559 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Allen Iannotti,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allen Iannotti +sn: Iannotti +description: This is Allen Iannotti's description +facsimileTelephoneNumber: +1 415 559-9107 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 332-4495 +title: Associate Administrative Writer +userPassword: Password1 +uid: IannottA +givenName: Allen +mail: IannottA@e37f5b0cfb234751951af2ec77381913.bitwarden.com +carLicense: HQKN1P +departmentNumber: 3134 +employeeType: Contract +homePhone: +1 415 399-9835 +initials: A. I. +mobile: +1 415 254-6185 +pager: +1 415 530-2637 +roomNumber: 8396 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Maressa Poulin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maressa Poulin +sn: Poulin +description: This is Maressa Poulin's description +facsimileTelephoneNumber: +1 206 411-1659 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 795-3798 +title: Chief Peons Figurehead +userPassword: Password1 +uid: PoulinM +givenName: Maressa +mail: PoulinM@97142716e28b4ec6bcc36b32805d9552.bitwarden.com +carLicense: XX9RKO +departmentNumber: 3753 +employeeType: Normal +homePhone: +1 206 984-7543 +initials: M. P. +mobile: +1 206 415-2777 +pager: +1 206 499-5687 +roomNumber: 9089 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Danni Hummerston,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danni Hummerston +sn: Hummerston +description: This is Danni Hummerston's description +facsimileTelephoneNumber: +1 818 836-7697 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 818 263-5972 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: HummersD +givenName: Danni +mail: HummersD@2111304740f548cf848d6dc98f3520ec.bitwarden.com +carLicense: BX3K9A +departmentNumber: 1900 +employeeType: Employee +homePhone: +1 818 581-1434 +initials: D. H. +mobile: +1 818 525-6295 +pager: +1 818 604-1392 +roomNumber: 8725 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rosabel Buley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosabel Buley +sn: Buley +description: This is Rosabel Buley's description +facsimileTelephoneNumber: +1 415 855-5056 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 431-4089 +title: Chief Management Mascot +userPassword: Password1 +uid: BuleyR +givenName: Rosabel +mail: BuleyR@2f1ccd0f317a4e42955b19a4c97fc5c6.bitwarden.com +carLicense: WBDI33 +departmentNumber: 5620 +employeeType: Normal +homePhone: +1 415 754-6209 +initials: R. B. +mobile: +1 415 869-9698 +pager: +1 415 291-4531 +roomNumber: 8574 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cindelyn Lethebinh +sn: Lethebinh +description: This is Cindelyn Lethebinh's description +facsimileTelephoneNumber: +1 415 183-6129 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 997-2920 +title: Master Janitorial Janitor +userPassword: Password1 +uid: LethebiC +givenName: Cindelyn +mail: LethebiC@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com +carLicense: 85P5HI +departmentNumber: 3164 +employeeType: Normal +homePhone: +1 415 480-5464 +initials: C. L. +mobile: +1 415 175-4494 +pager: +1 415 133-5310 +roomNumber: 9432 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sayed Virant,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sayed Virant +sn: Virant +description: This is Sayed Virant's description +facsimileTelephoneNumber: +1 510 355-8452 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 510 636-1005 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: VirantS +givenName: Sayed +mail: VirantS@8042d13a5bda4cd1ba81e78d19a6faff.bitwarden.com +carLicense: DGPMDV +departmentNumber: 7029 +employeeType: Contract +homePhone: +1 510 742-7919 +initials: S. V. +mobile: +1 510 163-1154 +pager: +1 510 957-7246 +roomNumber: 8196 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sundaram Lojewski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sundaram Lojewski +sn: Lojewski +description: This is Sundaram Lojewski's description +facsimileTelephoneNumber: +1 408 977-3184 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 698-9551 +title: Master Management Punk +userPassword: Password1 +uid: LojewskS +givenName: Sundaram +mail: LojewskS@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com +carLicense: ND7O9V +departmentNumber: 1334 +employeeType: Employee +homePhone: +1 408 180-6961 +initials: S. L. +mobile: +1 408 113-1519 +pager: +1 408 910-3775 +roomNumber: 9106 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Laina Ertl,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laina Ertl +sn: Ertl +description: This is Laina Ertl's description +facsimileTelephoneNumber: +1 510 757-8147 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 442-1403 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: ErtlL +givenName: Laina +mail: ErtlL@056a218e00ae4a2383ce03d97161e27d.bitwarden.com +carLicense: HD2KE7 +departmentNumber: 6231 +employeeType: Normal +homePhone: +1 510 223-7928 +initials: L. E. +mobile: +1 510 543-4959 +pager: +1 510 606-4996 +roomNumber: 8667 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeniece Bcs,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeniece Bcs +sn: Bcs +description: This is Jeniece Bcs's description +facsimileTelephoneNumber: +1 213 840-5418 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 128-8336 +title: Master Administrative Manager +userPassword: Password1 +uid: BcsJ +givenName: Jeniece +mail: BcsJ@724caed46aaf481fb3e0817c5c10cdb6.bitwarden.com +carLicense: Y01MXE +departmentNumber: 2265 +employeeType: Employee +homePhone: +1 213 419-9483 +initials: J. B. +mobile: +1 213 480-3339 +pager: +1 213 167-2265 +roomNumber: 8107 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sukhwant Eldreth +sn: Eldreth +description: This is Sukhwant Eldreth's description +facsimileTelephoneNumber: +1 206 435-8091 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 878-6220 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: EldrethS +givenName: Sukhwant +mail: EldrethS@b62493e12ad744b2b5583be842519934.bitwarden.com +carLicense: GJT2YU +departmentNumber: 8370 +employeeType: Contract +homePhone: +1 206 463-5816 +initials: S. E. +mobile: +1 206 551-6034 +pager: +1 206 312-5104 +roomNumber: 9253 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tammy Heikkila,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tammy Heikkila +sn: Heikkila +description: This is Tammy Heikkila's description +facsimileTelephoneNumber: +1 206 173-7403 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 851-7277 +title: Associate Payroll Director +userPassword: Password1 +uid: HeikkilT +givenName: Tammy +mail: HeikkilT@4781f85f1c214dff92b5f07239287faa.bitwarden.com +carLicense: C1SLIL +departmentNumber: 4823 +employeeType: Employee +homePhone: +1 206 139-8177 +initials: T. H. +mobile: +1 206 562-7031 +pager: +1 206 279-9584 +roomNumber: 8747 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pearle Bruketa,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pearle Bruketa +sn: Bruketa +description: This is Pearle Bruketa's description +facsimileTelephoneNumber: +1 510 465-5351 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 827-3779 +title: Chief Management Czar +userPassword: Password1 +uid: BruketaP +givenName: Pearle +mail: BruketaP@d01918c117a846518e67dbe5b2fd6ee8.bitwarden.com +carLicense: FJ6MCH +departmentNumber: 5600 +employeeType: Employee +homePhone: +1 510 544-3269 +initials: P. B. +mobile: +1 510 739-5219 +pager: +1 510 325-4550 +roomNumber: 8212 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cherie Brett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherie Brett +sn: Brett +description: This is Cherie Brett's description +facsimileTelephoneNumber: +1 415 184-9860 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 415 230-8910 +title: Master Peons Assistant +userPassword: Password1 +uid: BrettC +givenName: Cherie +mail: BrettC@878435e5887c47ef90f06778893d179e.bitwarden.com +carLicense: 0S1FGA +departmentNumber: 1368 +employeeType: Employee +homePhone: +1 415 690-8059 +initials: C. B. +mobile: +1 415 483-9700 +pager: +1 415 340-9094 +roomNumber: 8448 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hector Gingrich,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hector Gingrich +sn: Gingrich +description: This is Hector Gingrich's description +facsimileTelephoneNumber: +1 408 482-2137 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 793-9956 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: GingricH +givenName: Hector +mail: GingricH@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com +carLicense: RX01FE +departmentNumber: 3495 +employeeType: Contract +homePhone: +1 408 710-9866 +initials: H. G. +mobile: +1 408 192-6471 +pager: +1 408 790-7327 +roomNumber: 8267 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Biplab VanHaste,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Biplab VanHaste +sn: VanHaste +description: This is Biplab VanHaste's description +facsimileTelephoneNumber: +1 818 692-1665 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 393-3213 +title: Junior Administrative Figurehead +userPassword: Password1 +uid: VanHastB +givenName: Biplab +mail: VanHastB@a605402a36f347eeb8dcbbe3d61c2032.bitwarden.com +carLicense: 68N18C +departmentNumber: 4622 +employeeType: Employee +homePhone: +1 818 609-1128 +initials: B. V. +mobile: +1 818 810-1684 +pager: +1 818 228-9578 +roomNumber: 8288 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jermaine Sheffield +sn: Sheffield +description: This is Jermaine Sheffield's description +facsimileTelephoneNumber: +1 206 608-3232 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 391-2197 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: SheffieJ +givenName: Jermaine +mail: SheffieJ@c65f075234ae4ca0ba28441c293a5096.bitwarden.com +carLicense: A61RE0 +departmentNumber: 3354 +employeeType: Normal +homePhone: +1 206 874-1361 +initials: J. S. +mobile: +1 206 841-4231 +pager: +1 206 803-1096 +roomNumber: 9113 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roby Larin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roby Larin +sn: Larin +description: This is Roby Larin's description +facsimileTelephoneNumber: +1 408 631-3157 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 342-1452 +title: Master Management Evangelist +userPassword: Password1 +uid: LarinR +givenName: Roby +mail: LarinR@fc61927435a64fa9bae5f49cccd879ca.bitwarden.com +carLicense: G30PTO +departmentNumber: 8771 +employeeType: Normal +homePhone: +1 408 321-3249 +initials: R. L. +mobile: +1 408 677-2956 +pager: +1 408 455-3216 +roomNumber: 8687 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shirley Holvey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirley Holvey +sn: Holvey +description: This is Shirley Holvey's description +facsimileTelephoneNumber: +1 408 457-7804 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 583-3589 +title: Master Janitorial Engineer +userPassword: Password1 +uid: HolveyS +givenName: Shirley +mail: HolveyS@a32cc86a2bd244a1a69078536f474c4c.bitwarden.com +carLicense: 3X683L +departmentNumber: 5523 +employeeType: Normal +homePhone: +1 408 937-1357 +initials: S. H. +mobile: +1 408 786-6702 +pager: +1 408 276-3027 +roomNumber: 9750 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yettie Croisetiere +sn: Croisetiere +description: This is Yettie Croisetiere's description +facsimileTelephoneNumber: +1 818 660-3806 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 785-8964 +title: Associate Payroll Fellow +userPassword: Password1 +uid: CroisetY +givenName: Yettie +mail: CroisetY@01d981966ccd4e18a1de23880ee9b91c.bitwarden.com +carLicense: FI0LX0 +departmentNumber: 7634 +employeeType: Normal +homePhone: +1 818 486-2654 +initials: Y. C. +mobile: +1 818 969-4697 +pager: +1 818 274-1317 +roomNumber: 8946 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dolli Brownridge +sn: Brownridge +description: This is Dolli Brownridge's description +facsimileTelephoneNumber: +1 510 123-9318 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 671-7652 +title: Master Product Testing Fellow +userPassword: Password1 +uid: BrownriD +givenName: Dolli +mail: BrownriD@e9efa6e493c94e819a8af125d338efb9.bitwarden.com +carLicense: PAHLN7 +departmentNumber: 8494 +employeeType: Employee +homePhone: +1 510 640-2535 +initials: D. B. +mobile: +1 510 189-5025 +pager: +1 510 617-7779 +roomNumber: 9483 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shari Skaff,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shari Skaff +sn: Skaff +description: This is Shari Skaff's description +facsimileTelephoneNumber: +1 804 470-8144 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 349-7775 +title: Supreme Peons Technician +userPassword: Password1 +uid: SkaffS +givenName: Shari +mail: SkaffS@42f7f72ca79e451abe4a35d3706fd511.bitwarden.com +carLicense: NFHGIE +departmentNumber: 3708 +employeeType: Employee +homePhone: +1 804 330-5707 +initials: S. S. +mobile: +1 804 854-6844 +pager: +1 804 290-3274 +roomNumber: 9044 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hoa SanfordWright +sn: SanfordWright +description: This is Hoa SanfordWright's description +facsimileTelephoneNumber: +1 804 567-4593 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 452-7971 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: SanfordH +givenName: Hoa +mail: SanfordH@58eea1d96e4142748280c825c6b718b2.bitwarden.com +carLicense: RXJHCA +departmentNumber: 6948 +employeeType: Contract +homePhone: +1 804 463-3877 +initials: H. S. +mobile: +1 804 346-2820 +pager: +1 804 723-8752 +roomNumber: 9148 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Valida Fleischer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valida Fleischer +sn: Fleischer +description: This is Valida Fleischer's description +facsimileTelephoneNumber: +1 804 408-1612 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 240-6808 +title: Master Administrative Writer +userPassword: Password1 +uid: FleischV +givenName: Valida +mail: FleischV@2c5b6f0e18984fb3a1bf5177eef8b508.bitwarden.com +carLicense: DR74P4 +departmentNumber: 7056 +employeeType: Employee +homePhone: +1 804 538-7517 +initials: V. F. +mobile: +1 804 779-7557 +pager: +1 804 870-2597 +roomNumber: 8869 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=March Hess,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: March Hess +sn: Hess +description: This is March Hess's description +facsimileTelephoneNumber: +1 804 744-8895 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 719-8629 +title: Master Product Testing Vice President +userPassword: Password1 +uid: HessM +givenName: March +mail: HessM@90f7f0ce436d4b8ead2a23f5d4765511.bitwarden.com +carLicense: O35II9 +departmentNumber: 2572 +employeeType: Normal +homePhone: +1 804 645-2806 +initials: M. H. +mobile: +1 804 925-3096 +pager: +1 804 228-9291 +roomNumber: 9013 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kamran Shabatura,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamran Shabatura +sn: Shabatura +description: This is Kamran Shabatura's description +facsimileTelephoneNumber: +1 213 829-8630 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 241-8338 +title: Supreme Peons Artist +userPassword: Password1 +uid: ShabatuK +givenName: Kamran +mail: ShabatuK@e3c084d5a2b44c959d053319884f8497.bitwarden.com +carLicense: 89T32T +departmentNumber: 4281 +employeeType: Employee +homePhone: +1 213 766-4406 +initials: K. S. +mobile: +1 213 622-3221 +pager: +1 213 927-9318 +roomNumber: 8644 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Arturo Ensign,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arturo Ensign +sn: Ensign +description: This is Arturo Ensign's description +facsimileTelephoneNumber: +1 510 413-1926 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 625-4645 +title: Master Administrative President +userPassword: Password1 +uid: EnsignA +givenName: Arturo +mail: EnsignA@74472620f9a5441ba641f245e46fb09d.bitwarden.com +carLicense: JCM2MC +departmentNumber: 5958 +employeeType: Contract +homePhone: +1 510 849-4066 +initials: A. E. +mobile: +1 510 327-5309 +pager: +1 510 682-1787 +roomNumber: 8474 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oorschot Saifullah +sn: Saifullah +description: This is Oorschot Saifullah's description +facsimileTelephoneNumber: +1 804 605-2654 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 825-1734 +title: Associate Payroll Grunt +userPassword: Password1 +uid: SaifullO +givenName: Oorschot +mail: SaifullO@7be2adbfd042422e9bcc88e78cabf3cb.bitwarden.com +carLicense: DCIJDT +departmentNumber: 7407 +employeeType: Employee +homePhone: +1 804 339-3885 +initials: O. S. +mobile: +1 804 327-5906 +pager: +1 804 626-8513 +roomNumber: 8637 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gheorghe Feyen +sn: Feyen +description: This is Gheorghe Feyen's description +facsimileTelephoneNumber: +1 213 227-5604 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 199-3750 +title: Master Product Testing Director +userPassword: Password1 +uid: FeyenG +givenName: Gheorghe +mail: FeyenG@c881c186a173446ea0e986dc58eda7dc.bitwarden.com +carLicense: 6VWYQK +departmentNumber: 5130 +employeeType: Normal +homePhone: +1 213 988-7612 +initials: G. F. +mobile: +1 213 423-3966 +pager: +1 213 758-8924 +roomNumber: 8626 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lauryn Wever,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lauryn Wever +sn: Wever +description: This is Lauryn Wever's description +facsimileTelephoneNumber: +1 818 716-9804 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 196-5482 +title: Chief Administrative Stooge +userPassword: Password1 +uid: WeverL +givenName: Lauryn +mail: WeverL@a2a7439199d14d4790e860a2aa0ae08e.bitwarden.com +carLicense: NGK7TH +departmentNumber: 9270 +employeeType: Normal +homePhone: +1 818 986-6688 +initials: L. W. +mobile: +1 818 153-4119 +pager: +1 818 122-6060 +roomNumber: 9739 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Anda Wilhoit,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anda Wilhoit +sn: Wilhoit +description: This is Anda Wilhoit's description +facsimileTelephoneNumber: +1 510 253-3167 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 365-5367 +title: Junior Administrative Sales Rep +userPassword: Password1 +uid: WilhoitA +givenName: Anda +mail: WilhoitA@9834775790d142218cd7b62ee57a176b.bitwarden.com +carLicense: IINMD7 +departmentNumber: 1445 +employeeType: Employee +homePhone: +1 510 411-6764 +initials: A. W. +mobile: +1 510 406-3541 +pager: +1 510 748-5065 +roomNumber: 8180 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Samia Cochran,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Samia Cochran +sn: Cochran +description: This is Samia Cochran's description +facsimileTelephoneNumber: +1 804 248-6610 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 804 932-1984 +title: Supreme Janitorial President +userPassword: Password1 +uid: CochranS +givenName: Samia +mail: CochranS@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com +carLicense: T9PINR +departmentNumber: 9814 +employeeType: Normal +homePhone: +1 804 127-5523 +initials: S. C. +mobile: +1 804 636-8846 +pager: +1 804 865-3475 +roomNumber: 8974 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Michie ToDo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michie ToDo +sn: ToDo +description: This is Michie ToDo's description +facsimileTelephoneNumber: +1 818 875-7312 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 130-5118 +title: Associate Administrative Fellow +userPassword: Password1 +uid: ToDoM +givenName: Michie +mail: ToDoM@b3031d6ddd9541b6b0f40d995516638d.bitwarden.com +carLicense: O068WC +departmentNumber: 1234 +employeeType: Employee +homePhone: +1 818 894-7190 +initials: M. T. +mobile: +1 818 198-8369 +pager: +1 818 804-1025 +roomNumber: 9688 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Arvind Gundecha,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arvind Gundecha +sn: Gundecha +description: This is Arvind Gundecha's description +facsimileTelephoneNumber: +1 206 541-7726 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 668-2900 +title: Supreme Peons Writer +userPassword: Password1 +uid: GundechA +givenName: Arvind +mail: GundechA@44fa0b06635a4a55b59882def7b69891.bitwarden.com +carLicense: 95T0J0 +departmentNumber: 8258 +employeeType: Employee +homePhone: +1 206 973-5695 +initials: A. G. +mobile: +1 206 201-3482 +pager: +1 206 702-8094 +roomNumber: 9439 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Costas Watson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Costas Watson +sn: Watson +description: This is Costas Watson's description +facsimileTelephoneNumber: +1 213 616-1079 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 903-8113 +title: Master Product Testing Architect +userPassword: Password1 +uid: WatsonC +givenName: Costas +mail: WatsonC@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com +carLicense: 4SX5RT +departmentNumber: 2477 +employeeType: Contract +homePhone: +1 213 248-5326 +initials: C. W. +mobile: +1 213 670-3614 +pager: +1 213 745-8643 +roomNumber: 8036 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ebba Gutcher,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ebba Gutcher +sn: Gutcher +description: This is Ebba Gutcher's description +facsimileTelephoneNumber: +1 408 275-8960 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 256-5020 +title: Chief Peons Evangelist +userPassword: Password1 +uid: GutcherE +givenName: Ebba +mail: GutcherE@dd4f59cb9a1245048a34aa45906e0378.bitwarden.com +carLicense: UAT0FT +departmentNumber: 1443 +employeeType: Contract +homePhone: +1 408 875-3701 +initials: E. G. +mobile: +1 408 924-7634 +pager: +1 408 849-9550 +roomNumber: 9912 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gretal Kendrick +sn: Kendrick +description: This is Gretal Kendrick's description +facsimileTelephoneNumber: +1 804 827-2582 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 164-3899 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: KendricG +givenName: Gretal +mail: KendricG@5e8502c960c24fb593bf7dca3d40e2f2.bitwarden.com +carLicense: IB9SWB +departmentNumber: 9317 +employeeType: Normal +homePhone: +1 804 158-4444 +initials: G. K. +mobile: +1 804 702-4950 +pager: +1 804 496-9090 +roomNumber: 8569 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Peggie Madl,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peggie Madl +sn: Madl +description: This is Peggie Madl's description +facsimileTelephoneNumber: +1 510 746-6629 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 721-5289 +title: Chief Product Testing Madonna +userPassword: Password1 +uid: MadlP +givenName: Peggie +mail: MadlP@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com +carLicense: 4QNIU6 +departmentNumber: 5852 +employeeType: Contract +homePhone: +1 510 967-3851 +initials: P. M. +mobile: +1 510 840-2215 +pager: +1 510 275-4701 +roomNumber: 8123 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Norry Benjamin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norry Benjamin +sn: Benjamin +description: This is Norry Benjamin's description +facsimileTelephoneNumber: +1 206 449-4290 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 763-1534 +title: Junior Payroll Punk +userPassword: Password1 +uid: BenjamiN +givenName: Norry +mail: BenjamiN@65ea3b4fba9d486a8e6a9886164c5515.bitwarden.com +carLicense: 8ST64K +departmentNumber: 3827 +employeeType: Employee +homePhone: +1 206 174-3927 +initials: N. B. +mobile: +1 206 963-9260 +pager: +1 206 224-4834 +roomNumber: 9122 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Loreen Chapen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loreen Chapen +sn: Chapen +description: This is Loreen Chapen's description +facsimileTelephoneNumber: +1 213 835-9802 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 175-9112 +title: Associate Product Development Developer +userPassword: Password1 +uid: ChapenL +givenName: Loreen +mail: ChapenL@7bfc11514c5e4224a1e499acf9880451.bitwarden.com +carLicense: LYGIFK +departmentNumber: 7013 +employeeType: Contract +homePhone: +1 213 162-2469 +initials: L. C. +mobile: +1 213 358-6755 +pager: +1 213 615-4819 +roomNumber: 8284 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Loay Clairmont,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loay Clairmont +sn: Clairmont +description: This is Loay Clairmont's description +facsimileTelephoneNumber: +1 206 235-8608 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 206 568-1609 +title: Master Janitorial Pinhead +userPassword: Password1 +uid: ClairmoL +givenName: Loay +mail: ClairmoL@343f3e94452d4417ab72f456ef20099a.bitwarden.com +carLicense: DJOPM2 +departmentNumber: 5043 +employeeType: Normal +homePhone: +1 206 677-1553 +initials: L. C. +mobile: +1 206 463-8589 +pager: +1 206 941-1019 +roomNumber: 9958 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jagdev Eaton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jagdev Eaton +sn: Eaton +description: This is Jagdev Eaton's description +facsimileTelephoneNumber: +1 510 136-4709 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 892-8924 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: EatonJ +givenName: Jagdev +mail: EatonJ@56dc85c859e5439293a626149de045e1.bitwarden.com +carLicense: GAXHV8 +departmentNumber: 4796 +employeeType: Normal +homePhone: +1 510 983-9849 +initials: J. E. +mobile: +1 510 546-3717 +pager: +1 510 869-5122 +roomNumber: 9913 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vina Smothers,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vina Smothers +sn: Smothers +description: This is Vina Smothers's description +facsimileTelephoneNumber: +1 818 978-7526 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 601-7825 +title: Junior Product Development Stooge +userPassword: Password1 +uid: SmotherV +givenName: Vina +mail: SmotherV@22cb224a80984684b19d5e903a9e8f92.bitwarden.com +carLicense: JUX2I9 +departmentNumber: 7890 +employeeType: Contract +homePhone: +1 818 582-1075 +initials: V. S. +mobile: +1 818 360-5137 +pager: +1 818 487-5764 +roomNumber: 9915 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sultan Kalitzkus +sn: Kalitzkus +description: This is Sultan Kalitzkus's description +facsimileTelephoneNumber: +1 510 781-2979 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 429-8157 +title: Master Product Development Pinhead +userPassword: Password1 +uid: KalitzkS +givenName: Sultan +mail: KalitzkS@700cffdeffc944e3b104dbec36c347ba.bitwarden.com +carLicense: RHJML1 +departmentNumber: 7220 +employeeType: Normal +homePhone: +1 510 519-3406 +initials: S. K. +mobile: +1 510 419-7791 +pager: +1 510 223-1057 +roomNumber: 8326 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ravi Fontanini +sn: Fontanini +description: This is Ravi Fontanini's description +facsimileTelephoneNumber: +1 818 531-8489 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 858-6095 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: FontaniR +givenName: Ravi +mail: FontaniR@68267e214c7a487aa5678c0838a58e53.bitwarden.com +carLicense: Q3JATU +departmentNumber: 3869 +employeeType: Normal +homePhone: +1 818 190-5122 +initials: R. F. +mobile: +1 818 880-5840 +pager: +1 818 839-8617 +roomNumber: 8744 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Minerva Cuper,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minerva Cuper +sn: Cuper +description: This is Minerva Cuper's description +facsimileTelephoneNumber: +1 510 533-6235 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 213-3985 +title: Junior Payroll Visionary +userPassword: Password1 +uid: CuperM +givenName: Minerva +mail: CuperM@11006cb63c014ed78431f32c1edc2e50.bitwarden.com +carLicense: JD1CT6 +departmentNumber: 6482 +employeeType: Employee +homePhone: +1 510 231-5033 +initials: M. C. +mobile: +1 510 819-6329 +pager: +1 510 555-5266 +roomNumber: 9530 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lynette Cascarini,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynette Cascarini +sn: Cascarini +description: This is Lynette Cascarini's description +facsimileTelephoneNumber: +1 415 677-5106 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 585-9739 +title: Junior Product Development Mascot +userPassword: Password1 +uid: CascariL +givenName: Lynette +mail: CascariL@ac076ba79d124761ac4ec297033b1240.bitwarden.com +carLicense: 726Y1M +departmentNumber: 2869 +employeeType: Employee +homePhone: +1 415 921-1385 +initials: L. C. +mobile: +1 415 267-5403 +pager: +1 415 472-1668 +roomNumber: 8157 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lsi Loughran,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lsi Loughran +sn: Loughran +description: This is Lsi Loughran's description +facsimileTelephoneNumber: +1 804 545-5510 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 674-7398 +title: Junior Product Testing Punk +userPassword: Password1 +uid: LoughraL +givenName: Lsi +mail: LoughraL@8d3b1ae4e0a848b5802b107cdfc10b06.bitwarden.com +carLicense: VR6JQD +departmentNumber: 4582 +employeeType: Normal +homePhone: +1 804 982-7395 +initials: L. L. +mobile: +1 804 320-5826 +pager: +1 804 565-6265 +roomNumber: 8754 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cassandry Emmert,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassandry Emmert +sn: Emmert +description: This is Cassandry Emmert's description +facsimileTelephoneNumber: +1 206 835-6500 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 232-9580 +title: Chief Management Assistant +userPassword: Password1 +uid: EmmertC +givenName: Cassandry +mail: EmmertC@eaf942e23a8c4f86b819fb393327fb04.bitwarden.com +carLicense: Q678XO +departmentNumber: 8999 +employeeType: Employee +homePhone: +1 206 983-5029 +initials: C. E. +mobile: +1 206 783-9375 +pager: +1 206 461-7900 +roomNumber: 8181 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirstin Stephenson +sn: Stephenson +description: This is Kirstin Stephenson's description +facsimileTelephoneNumber: +1 818 847-9931 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 818 178-3157 +title: Associate Payroll Technician +userPassword: Password1 +uid: StephenK +givenName: Kirstin +mail: StephenK@98febd962501443b89a9e8bfacf12a9e.bitwarden.com +carLicense: 6JHIKX +departmentNumber: 5472 +employeeType: Employee +homePhone: +1 818 782-6669 +initials: K. S. +mobile: +1 818 459-1534 +pager: +1 818 598-1354 +roomNumber: 8343 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Minnesota Herzig,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minnesota Herzig +sn: Herzig +description: This is Minnesota Herzig's description +facsimileTelephoneNumber: +1 510 323-4007 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 510 493-9506 +title: Supreme Payroll Writer +userPassword: Password1 +uid: HerzigM +givenName: Minnesota +mail: HerzigM@84e0b1d8b0c84412a89683731e9fda1b.bitwarden.com +carLicense: XMU890 +departmentNumber: 2766 +employeeType: Employee +homePhone: +1 510 520-3502 +initials: M. H. +mobile: +1 510 570-3739 +pager: +1 510 446-1957 +roomNumber: 8165 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lauren Syrett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lauren Syrett +sn: Syrett +description: This is Lauren Syrett's description +facsimileTelephoneNumber: +1 818 671-2170 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 818 568-5692 +title: Junior Peons Mascot +userPassword: Password1 +uid: SyrettL +givenName: Lauren +mail: SyrettL@42ad681604354ebd8ba7299c92bab329.bitwarden.com +carLicense: 76OPG9 +departmentNumber: 8905 +employeeType: Contract +homePhone: +1 818 496-5172 +initials: L. S. +mobile: +1 818 738-9132 +pager: +1 818 381-9060 +roomNumber: 8900 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dyana Pennell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyana Pennell +sn: Pennell +description: This is Dyana Pennell's description +facsimileTelephoneNumber: +1 213 121-6565 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 167-8585 +title: Chief Janitorial Grunt +userPassword: Password1 +uid: PennellD +givenName: Dyana +mail: PennellD@0afc47bad19c46b99058f74e9901e6b0.bitwarden.com +carLicense: VGI0Y7 +departmentNumber: 7442 +employeeType: Contract +homePhone: +1 213 465-3563 +initials: D. P. +mobile: +1 213 506-9164 +pager: +1 213 452-4907 +roomNumber: 8309 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Camella IRCMARKET,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camella IRCMARKET +sn: IRCMARKET +description: This is Camella IRCMARKET's description +facsimileTelephoneNumber: +1 206 729-7221 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 520-7773 +title: Junior Peons Architect +userPassword: Password1 +uid: IRCMARKC +givenName: Camella +mail: IRCMARKC@8f8b16f7eeb64121b5894e2d12941301.bitwarden.com +carLicense: WV0A2O +departmentNumber: 5398 +employeeType: Contract +homePhone: +1 206 629-6276 +initials: C. I. +mobile: +1 206 785-1919 +pager: +1 206 430-2086 +roomNumber: 9239 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yvonne Goertzen +sn: Goertzen +description: This is Yvonne Goertzen's description +facsimileTelephoneNumber: +1 408 803-7019 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 504-3658 +title: Master Human Resources Janitor +userPassword: Password1 +uid: GoertzeY +givenName: Yvonne +mail: GoertzeY@f356862401984def8bd045192d245ee9.bitwarden.com +carLicense: PHAE4B +departmentNumber: 3017 +employeeType: Normal +homePhone: +1 408 480-3201 +initials: Y. G. +mobile: +1 408 523-2895 +pager: +1 408 269-4072 +roomNumber: 8949 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Doro Cottengim,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doro Cottengim +sn: Cottengim +description: This is Doro Cottengim's description +facsimileTelephoneNumber: +1 213 627-4728 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 590-3060 +title: Chief Peons Punk +userPassword: Password1 +uid: CottengD +givenName: Doro +mail: CottengD@c7cd8ed01ff4421e89b8fce69f567e72.bitwarden.com +carLicense: IT0TTA +departmentNumber: 6744 +employeeType: Employee +homePhone: +1 213 911-2675 +initials: D. C. +mobile: +1 213 132-7307 +pager: +1 213 133-9335 +roomNumber: 9727 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zorana Rodrigue +sn: Rodrigue +description: This is Zorana Rodrigue's description +facsimileTelephoneNumber: +1 206 572-7514 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 206 245-4724 +title: Supreme Janitorial Writer +userPassword: Password1 +uid: RodriguZ +givenName: Zorana +mail: RodriguZ@ea67abb740f54118a1219fbd4f51bc7f.bitwarden.com +carLicense: XY9HBJ +departmentNumber: 9596 +employeeType: Contract +homePhone: +1 206 831-4853 +initials: Z. R. +mobile: +1 206 366-1256 +pager: +1 206 345-7861 +roomNumber: 9406 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JinYun Gerlich +sn: Gerlich +description: This is JinYun Gerlich's description +facsimileTelephoneNumber: +1 510 863-6478 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 187-4873 +title: Associate Janitorial Evangelist +userPassword: Password1 +uid: GerlichJ +givenName: JinYun +mail: GerlichJ@c3692aa8bfcc4a689d45388238055ec4.bitwarden.com +carLicense: CJ40CQ +departmentNumber: 1944 +employeeType: Normal +homePhone: +1 510 558-6956 +initials: J. G. +mobile: +1 510 483-1333 +pager: +1 510 342-3912 +roomNumber: 9749 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nesta Bydeley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nesta Bydeley +sn: Bydeley +description: This is Nesta Bydeley's description +facsimileTelephoneNumber: +1 510 912-2123 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 760-6673 +title: Master Payroll Assistant +userPassword: Password1 +uid: BydeleyN +givenName: Nesta +mail: BydeleyN@592208e028cd436396db371d93b549f3.bitwarden.com +carLicense: PQ0RJ1 +departmentNumber: 4877 +employeeType: Employee +homePhone: +1 510 532-1964 +initials: N. B. +mobile: +1 510 982-6392 +pager: +1 510 219-4190 +roomNumber: 8857 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yogesh Meckley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yogesh Meckley +sn: Meckley +description: This is Yogesh Meckley's description +facsimileTelephoneNumber: +1 510 735-7268 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 159-8145 +title: Supreme Peons Assistant +userPassword: Password1 +uid: MeckleyY +givenName: Yogesh +mail: MeckleyY@ceb12762ef0641af91eccdee76fe34c8.bitwarden.com +carLicense: L9P8XM +departmentNumber: 4612 +employeeType: Normal +homePhone: +1 510 543-4078 +initials: Y. M. +mobile: +1 510 109-2473 +pager: +1 510 816-7182 +roomNumber: 9869 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheileagh Llaguno +sn: Llaguno +description: This is Sheileagh Llaguno's description +facsimileTelephoneNumber: +1 804 100-5550 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 804 564-7383 +title: Master Administrative Writer +userPassword: Password1 +uid: LlagunoS +givenName: Sheileagh +mail: LlagunoS@7391a6d3d59e40cd941b74d4ab20cfad.bitwarden.com +carLicense: KXE34J +departmentNumber: 5645 +employeeType: Contract +homePhone: +1 804 404-2559 +initials: S. L. +mobile: +1 804 427-5253 +pager: +1 804 213-2119 +roomNumber: 8853 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ailene Challice,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailene Challice +sn: Challice +description: This is Ailene Challice's description +facsimileTelephoneNumber: +1 818 191-1282 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 459-6242 +title: Junior Payroll Technician +userPassword: Password1 +uid: ChallicA +givenName: Ailene +mail: ChallicA@67d3a8519ac14347aeb58946a31a1f50.bitwarden.com +carLicense: 5U2FSE +departmentNumber: 3591 +employeeType: Contract +homePhone: +1 818 183-9960 +initials: A. C. +mobile: +1 818 872-1969 +pager: +1 818 974-6912 +roomNumber: 9465 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Viola Hately,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viola Hately +sn: Hately +description: This is Viola Hately's description +facsimileTelephoneNumber: +1 510 910-2634 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 817-4192 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: HatelyV +givenName: Viola +mail: HatelyV@fad4df468b1843c3916d4ae2eb3ff3a0.bitwarden.com +carLicense: 3QGA43 +departmentNumber: 2885 +employeeType: Contract +homePhone: +1 510 575-6505 +initials: V. H. +mobile: +1 510 453-1984 +pager: +1 510 242-1635 +roomNumber: 8031 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shunro Singer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shunro Singer +sn: Singer +description: This is Shunro Singer's description +facsimileTelephoneNumber: +1 408 264-6573 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 205-8031 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: SingerS +givenName: Shunro +mail: SingerS@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com +carLicense: 8F0CX6 +departmentNumber: 9064 +employeeType: Contract +homePhone: +1 408 261-2792 +initials: S. S. +mobile: +1 408 407-3512 +pager: +1 408 259-5414 +roomNumber: 9180 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chitra McAleer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chitra McAleer +sn: McAleer +description: This is Chitra McAleer's description +facsimileTelephoneNumber: +1 415 315-1814 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 423-6722 +title: Master Product Testing Dictator +userPassword: Password1 +uid: McAleerC +givenName: Chitra +mail: McAleerC@613949922305449dab3107a6d150066b.bitwarden.com +carLicense: 8MYEEA +departmentNumber: 9065 +employeeType: Normal +homePhone: +1 415 798-3729 +initials: C. M. +mobile: +1 415 716-2515 +pager: +1 415 618-8659 +roomNumber: 9135 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jay Biage,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jay Biage +sn: Biage +description: This is Jay Biage's description +facsimileTelephoneNumber: +1 408 189-4235 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 180-7097 +title: Associate Payroll Artist +userPassword: Password1 +uid: BiageJ +givenName: Jay +mail: BiageJ@908e2f7daa5c4f539482241df20bc43f.bitwarden.com +carLicense: F3S8EM +departmentNumber: 7781 +employeeType: Normal +homePhone: +1 408 966-1582 +initials: J. B. +mobile: +1 408 173-5411 +pager: +1 408 931-6770 +roomNumber: 9039 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Faydra Kandra,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faydra Kandra +sn: Kandra +description: This is Faydra Kandra's description +facsimileTelephoneNumber: +1 206 910-9606 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 254-9368 +title: Master Administrative Czar +userPassword: Password1 +uid: KandraF +givenName: Faydra +mail: KandraF@2fd47af450d743418108699823631680.bitwarden.com +carLicense: MA2ED0 +departmentNumber: 6400 +employeeType: Normal +homePhone: +1 206 836-3818 +initials: F. K. +mobile: +1 206 212-7622 +pager: +1 206 343-1851 +roomNumber: 8927 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shandee Safah,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shandee Safah +sn: Safah +description: This is Shandee Safah's description +facsimileTelephoneNumber: +1 408 769-9140 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 825-1986 +title: Master Product Testing Director +userPassword: Password1 +uid: SafahS +givenName: Shandee +mail: SafahS@375d13357cc946b587c8f99d2269c9f7.bitwarden.com +carLicense: K94ER9 +departmentNumber: 1381 +employeeType: Employee +homePhone: +1 408 716-4331 +initials: S. S. +mobile: +1 408 190-5613 +pager: +1 408 614-9210 +roomNumber: 8094 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gen Marano,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gen Marano +sn: Marano +description: This is Gen Marano's description +facsimileTelephoneNumber: +1 408 227-6513 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 431-8804 +title: Associate Payroll Vice President +userPassword: Password1 +uid: MaranoG +givenName: Gen +mail: MaranoG@89e33259b1f341dda582db87064be4b8.bitwarden.com +carLicense: 2YK8TX +departmentNumber: 2653 +employeeType: Employee +homePhone: +1 408 473-5691 +initials: G. M. +mobile: +1 408 651-4379 +pager: +1 408 413-2587 +roomNumber: 9314 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bettina Spinelli,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettina Spinelli +sn: Spinelli +description: This is Bettina Spinelli's description +facsimileTelephoneNumber: +1 408 375-7970 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 353-8773 +title: Chief Management Fellow +userPassword: Password1 +uid: SpinellB +givenName: Bettina +mail: SpinellB@e77a72af01c44ce88f609078a4d8d2a3.bitwarden.com +carLicense: QB8DHK +departmentNumber: 9362 +employeeType: Normal +homePhone: +1 408 406-2488 +initials: B. S. +mobile: +1 408 370-7167 +pager: +1 408 804-9331 +roomNumber: 8060 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mureil Vish,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mureil Vish +sn: Vish +description: This is Mureil Vish's description +facsimileTelephoneNumber: +1 818 548-7658 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 559-2781 +title: Junior Administrative Stooge +userPassword: Password1 +uid: VishM +givenName: Mureil +mail: VishM@47b62883b41b47caaa90c87545926566.bitwarden.com +carLicense: HEN2GM +departmentNumber: 9395 +employeeType: Employee +homePhone: +1 818 922-8086 +initials: M. V. +mobile: +1 818 634-4497 +pager: +1 818 420-3665 +roomNumber: 8566 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alane Carlisle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alane Carlisle +sn: Carlisle +description: This is Alane Carlisle's description +facsimileTelephoneNumber: +1 804 665-2051 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 378-8177 +title: Associate Management Assistant +userPassword: Password1 +uid: CarlislA +givenName: Alane +mail: CarlislA@c5dc40d5940e458ab33ccb9687a6e9df.bitwarden.com +carLicense: PNM526 +departmentNumber: 5349 +employeeType: Employee +homePhone: +1 804 123-6132 +initials: A. C. +mobile: +1 804 313-9644 +pager: +1 804 482-7695 +roomNumber: 8607 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sayre Paulett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sayre Paulett +sn: Paulett +description: This is Sayre Paulett's description +facsimileTelephoneNumber: +1 408 281-8470 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 692-7929 +title: Junior Management Pinhead +userPassword: Password1 +uid: PaulettS +givenName: Sayre +mail: PaulettS@f2946785e86743e2aa3ad5ba0ef200dd.bitwarden.com +carLicense: NNVOSU +departmentNumber: 6459 +employeeType: Contract +homePhone: +1 408 652-3922 +initials: S. P. +mobile: +1 408 867-8463 +pager: +1 408 661-2751 +roomNumber: 9746 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassandra Sasson +sn: Sasson +description: This is Cassandra Sasson's description +facsimileTelephoneNumber: +1 818 900-4459 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 429-7108 +title: Chief Human Resources Punk +userPassword: Password1 +uid: SassonC +givenName: Cassandra +mail: SassonC@76601b52ef094fb1a584255928f2a86b.bitwarden.com +carLicense: 2A73AA +departmentNumber: 4021 +employeeType: Contract +homePhone: +1 818 157-6823 +initials: C. S. +mobile: +1 818 176-1893 +pager: +1 818 914-7537 +roomNumber: 9897 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ambur Fernandez,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ambur Fernandez +sn: Fernandez +description: This is Ambur Fernandez's description +facsimileTelephoneNumber: +1 415 614-8668 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 260-1058 +title: Master Peons Punk +userPassword: Password1 +uid: FernandA +givenName: Ambur +mail: FernandA@d05ffeea80b94ea6b929bf19bf3cb1d7.bitwarden.com +carLicense: U6LBO9 +departmentNumber: 5604 +employeeType: Normal +homePhone: +1 415 888-2880 +initials: A. F. +mobile: +1 415 374-9208 +pager: +1 415 120-3388 +roomNumber: 9280 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carlye Puelma,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlye Puelma +sn: Puelma +description: This is Carlye Puelma's description +facsimileTelephoneNumber: +1 213 997-5122 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 499-6170 +title: Junior Management Mascot +userPassword: Password1 +uid: PuelmaC +givenName: Carlye +mail: PuelmaC@3918530762a64e8db535b65dcc80cbce.bitwarden.com +carLicense: YSV83S +departmentNumber: 9454 +employeeType: Employee +homePhone: +1 213 676-2373 +initials: C. P. +mobile: +1 213 732-4899 +pager: +1 213 490-8656 +roomNumber: 9521 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eleonore Edwige,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eleonore Edwige +sn: Edwige +description: This is Eleonore Edwige's description +facsimileTelephoneNumber: +1 408 923-4370 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 513-4791 +title: Chief Administrative Czar +userPassword: Password1 +uid: EdwigeE +givenName: Eleonore +mail: EdwigeE@3358f35c8d4144d59100e666ebc7914f.bitwarden.com +carLicense: C7F5RM +departmentNumber: 7399 +employeeType: Normal +homePhone: +1 408 861-3232 +initials: E. E. +mobile: +1 408 718-7374 +pager: +1 408 466-3780 +roomNumber: 9836 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yoshi Neustifter,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoshi Neustifter +sn: Neustifter +description: This is Yoshi Neustifter's description +facsimileTelephoneNumber: +1 408 544-7917 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 511-9894 +title: Junior Management Admin +userPassword: Password1 +uid: NeustifY +givenName: Yoshi +mail: NeustifY@21bcebc879234832b21c9a4bda0b84ca.bitwarden.com +carLicense: KVQ1S4 +departmentNumber: 2013 +employeeType: Contract +homePhone: +1 408 792-3534 +initials: Y. N. +mobile: +1 408 461-8534 +pager: +1 408 905-3442 +roomNumber: 8515 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Varennes Kapuscinski +sn: Kapuscinski +description: This is Varennes Kapuscinski's description +facsimileTelephoneNumber: +1 818 654-4509 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 645-3992 +title: Master Product Development Writer +userPassword: Password1 +uid: KapusciV +givenName: Varennes +mail: KapusciV@148b0748cafd4655898b3cdac38d15c1.bitwarden.com +carLicense: 1PQKR8 +departmentNumber: 8019 +employeeType: Contract +homePhone: +1 818 100-7892 +initials: V. K. +mobile: +1 818 988-4059 +pager: +1 818 692-4738 +roomNumber: 9726 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bernd Ribakovs,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernd Ribakovs +sn: Ribakovs +description: This is Bernd Ribakovs's description +facsimileTelephoneNumber: +1 206 638-4803 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 643-7257 +title: Junior Peons Engineer +userPassword: Password1 +uid: RibakovB +givenName: Bernd +mail: RibakovB@5c3854c0e45246a0b3fb22153a7146d3.bitwarden.com +carLicense: RSBQTQ +departmentNumber: 7017 +employeeType: Employee +homePhone: +1 206 336-3224 +initials: B. R. +mobile: +1 206 664-1408 +pager: +1 206 391-7391 +roomNumber: 9778 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ralph Taylor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ralph Taylor +sn: Taylor +description: This is Ralph Taylor's description +facsimileTelephoneNumber: +1 415 661-3269 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 441-6019 +title: Master Management Czar +userPassword: Password1 +uid: TaylorR +givenName: Ralph +mail: TaylorR@df91f02938d046d8adb3f260f0e722ef.bitwarden.com +carLicense: KM63HH +departmentNumber: 1982 +employeeType: Employee +homePhone: +1 415 888-4524 +initials: R. T. +mobile: +1 415 230-7562 +pager: +1 415 665-1442 +roomNumber: 9113 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Baldev Annab,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baldev Annab +sn: Annab +description: This is Baldev Annab's description +facsimileTelephoneNumber: +1 206 471-7271 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 206 140-4489 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: AnnabB +givenName: Baldev +mail: AnnabB@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com +carLicense: IBWXFR +departmentNumber: 9841 +employeeType: Contract +homePhone: +1 206 744-1454 +initials: B. A. +mobile: +1 206 307-7714 +pager: +1 206 180-8662 +roomNumber: 9668 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Me Cuany,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Me Cuany +sn: Cuany +description: This is Me Cuany's description +facsimileTelephoneNumber: +1 213 702-4209 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 213 574-6882 +title: Junior Janitorial Punk +userPassword: Password1 +uid: CuanyM +givenName: Me +mail: CuanyM@77f895f70886481eae5a63f9a86f7856.bitwarden.com +carLicense: 76UOOY +departmentNumber: 1917 +employeeType: Contract +homePhone: +1 213 574-5973 +initials: M. C. +mobile: +1 213 517-2376 +pager: +1 213 316-5344 +roomNumber: 9817 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Neville Doble,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neville Doble +sn: Doble +description: This is Neville Doble's description +facsimileTelephoneNumber: +1 415 833-4796 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 572-4438 +title: Master Product Testing Visionary +userPassword: Password1 +uid: DobleN +givenName: Neville +mail: DobleN@79d5277aef56406eb7a48c1a74d35976.bitwarden.com +carLicense: 9RM458 +departmentNumber: 8779 +employeeType: Normal +homePhone: +1 415 621-3510 +initials: N. D. +mobile: +1 415 452-3590 +pager: +1 415 568-5060 +roomNumber: 8473 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alidia Banens,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alidia Banens +sn: Banens +description: This is Alidia Banens's description +facsimileTelephoneNumber: +1 408 908-2540 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 408 923-3158 +title: Chief Administrative President +userPassword: Password1 +uid: BanensA +givenName: Alidia +mail: BanensA@ff6113da300b4b2aa7ff3a66734b4954.bitwarden.com +carLicense: WAU6Q1 +departmentNumber: 3199 +employeeType: Contract +homePhone: +1 408 968-4905 +initials: A. B. +mobile: +1 408 213-6292 +pager: +1 408 533-3145 +roomNumber: 9370 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hans Fahey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hans Fahey +sn: Fahey +description: This is Hans Fahey's description +facsimileTelephoneNumber: +1 213 415-6091 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 197-8432 +title: Chief Peons Grunt +userPassword: Password1 +uid: FaheyH +givenName: Hans +mail: FaheyH@9e0bdc0fb08d44118d9ae7567498b80c.bitwarden.com +carLicense: 9FNG2Y +departmentNumber: 5047 +employeeType: Normal +homePhone: +1 213 524-9359 +initials: H. F. +mobile: +1 213 727-4794 +pager: +1 213 215-7954 +roomNumber: 8976 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Luce Piper,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luce Piper +sn: Piper +description: This is Luce Piper's description +facsimileTelephoneNumber: +1 206 761-4773 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 140-7286 +title: Supreme Product Testing Director +userPassword: Password1 +uid: PiperL +givenName: Luce +mail: PiperL@1ef06389f2a545358cb76b8f3247552d.bitwarden.com +carLicense: 98NE7C +departmentNumber: 6633 +employeeType: Employee +homePhone: +1 206 749-3650 +initials: L. P. +mobile: +1 206 908-8950 +pager: +1 206 424-6211 +roomNumber: 8103 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maible Adamo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maible Adamo +sn: Adamo +description: This is Maible Adamo's description +facsimileTelephoneNumber: +1 213 903-1702 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 605-5418 +title: Junior Administrative Assistant +userPassword: Password1 +uid: AdamoM +givenName: Maible +mail: AdamoM@2514efb598094878a84945e42222f037.bitwarden.com +carLicense: 6GA65Q +departmentNumber: 1819 +employeeType: Employee +homePhone: +1 213 209-2874 +initials: M. A. +mobile: +1 213 588-8449 +pager: +1 213 593-7122 +roomNumber: 9222 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aartjan Brodersen +sn: Brodersen +description: This is Aartjan Brodersen's description +facsimileTelephoneNumber: +1 408 305-4136 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 309-1407 +title: Junior Product Testing Dictator +userPassword: Password1 +uid: BrodersA +givenName: Aartjan +mail: BrodersA@59ed31e1416a44f38102361f5e901aec.bitwarden.com +carLicense: BRXVUF +departmentNumber: 6569 +employeeType: Normal +homePhone: +1 408 617-8809 +initials: A. B. +mobile: +1 408 912-8909 +pager: +1 408 491-9725 +roomNumber: 8162 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fastmer Montreal +sn: Montreal +description: This is Fastmer Montreal's description +facsimileTelephoneNumber: +1 213 330-1247 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 768-2567 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: MontreaF +givenName: Fastmer +mail: MontreaF@9e2b20abc536451c80331d81dc08fb80.bitwarden.com +carLicense: DGVL6I +departmentNumber: 6255 +employeeType: Normal +homePhone: +1 213 651-7943 +initials: F. M. +mobile: +1 213 940-2994 +pager: +1 213 829-8646 +roomNumber: 9052 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leny Husarewych,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leny Husarewych +sn: Husarewych +description: This is Leny Husarewych's description +facsimileTelephoneNumber: +1 408 773-4042 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 691-1940 +title: Associate Management Architect +userPassword: Password1 +uid: HusarewL +givenName: Leny +mail: HusarewL@fd7f1413c0914fd9966db7121e375108.bitwarden.com +carLicense: S7H3WF +departmentNumber: 6880 +employeeType: Contract +homePhone: +1 408 445-2853 +initials: L. H. +mobile: +1 408 120-3235 +pager: +1 408 676-2732 +roomNumber: 9151 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gerald Bijjani,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerald Bijjani +sn: Bijjani +description: This is Gerald Bijjani's description +facsimileTelephoneNumber: +1 804 298-4374 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 899-8766 +title: Junior Peons Warrior +userPassword: Password1 +uid: BijjaniG +givenName: Gerald +mail: BijjaniG@648da49b32e0468cbaab8b6990a6bcd7.bitwarden.com +carLicense: UY83DR +departmentNumber: 6424 +employeeType: Contract +homePhone: +1 804 437-5743 +initials: G. B. +mobile: +1 804 421-6394 +pager: +1 804 588-9334 +roomNumber: 8009 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maint Olivares,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maint Olivares +sn: Olivares +description: This is Maint Olivares's description +facsimileTelephoneNumber: +1 818 873-9885 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 818 619-3888 +title: Master Administrative Assistant +userPassword: Password1 +uid: OlivareM +givenName: Maint +mail: OlivareM@3a6431b2f04c4152b1a57322f60c8410.bitwarden.com +carLicense: L1O5T3 +departmentNumber: 7751 +employeeType: Normal +homePhone: +1 818 434-1011 +initials: M. O. +mobile: +1 818 955-4722 +pager: +1 818 807-9220 +roomNumber: 8724 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bnrecad Higuchi +sn: Higuchi +description: This is Bnrecad Higuchi's description +facsimileTelephoneNumber: +1 408 308-8488 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 814-6238 +title: Supreme Janitorial Artist +userPassword: Password1 +uid: HiguchiB +givenName: Bnrecad +mail: HiguchiB@420d170835a74668b7399e0614ecc1a6.bitwarden.com +carLicense: 2TRWJI +departmentNumber: 9845 +employeeType: Contract +homePhone: +1 408 942-8031 +initials: B. H. +mobile: +1 408 967-7349 +pager: +1 408 984-6054 +roomNumber: 9362 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Arturo Groves,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arturo Groves +sn: Groves +description: This is Arturo Groves's description +facsimileTelephoneNumber: +1 213 852-7286 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 560-2634 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: GrovesA +givenName: Arturo +mail: GrovesA@61d7f2e9441545fa8ba2dcce7dd5448a.bitwarden.com +carLicense: 4JHJAU +departmentNumber: 1521 +employeeType: Contract +homePhone: +1 213 482-5196 +initials: A. G. +mobile: +1 213 516-5748 +pager: +1 213 592-5536 +roomNumber: 9614 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ho Rolnick,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ho Rolnick +sn: Rolnick +description: This is Ho Rolnick's description +facsimileTelephoneNumber: +1 206 981-5966 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 155-6700 +title: Junior Administrative Punk +userPassword: Password1 +uid: RolnickH +givenName: Ho +mail: RolnickH@8819cc07e7b545c38dcf521aa22a7f85.bitwarden.com +carLicense: G4WK8U +departmentNumber: 2250 +employeeType: Normal +homePhone: +1 206 169-9795 +initials: H. R. +mobile: +1 206 787-6107 +pager: +1 206 682-3566 +roomNumber: 8932 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Erning Lingafelter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erning Lingafelter +sn: Lingafelter +description: This is Erning Lingafelter's description +facsimileTelephoneNumber: +1 415 818-7972 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 324-2690 +title: Chief Product Development Architect +userPassword: Password1 +uid: LingafeE +givenName: Erning +mail: LingafeE@19f0b3104cc549c5972e2013b118e2bf.bitwarden.com +carLicense: VEL621 +departmentNumber: 5435 +employeeType: Employee +homePhone: +1 415 804-2286 +initials: E. L. +mobile: +1 415 479-6527 +pager: +1 415 133-4173 +roomNumber: 9795 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alanah Wolff,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alanah Wolff +sn: Wolff +description: This is Alanah Wolff's description +facsimileTelephoneNumber: +1 510 610-8451 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 219-8149 +title: Master Janitorial Czar +userPassword: Password1 +uid: WolffA +givenName: Alanah +mail: WolffA@8068d857ca8d45118464c596ca9f4192.bitwarden.com +carLicense: K75Y5T +departmentNumber: 9269 +employeeType: Contract +homePhone: +1 510 332-3660 +initials: A. W. +mobile: +1 510 322-8244 +pager: +1 510 500-4646 +roomNumber: 9670 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Corrianne Hughson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corrianne Hughson +sn: Hughson +description: This is Corrianne Hughson's description +facsimileTelephoneNumber: +1 408 476-6209 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 696-9151 +title: Junior Payroll Writer +userPassword: Password1 +uid: HughsonC +givenName: Corrianne +mail: HughsonC@ec27ad8054ec49e6b80dae8c88335049.bitwarden.com +carLicense: 9M7WPB +departmentNumber: 7274 +employeeType: Employee +homePhone: +1 408 430-8193 +initials: C. H. +mobile: +1 408 725-3725 +pager: +1 408 290-3457 +roomNumber: 9708 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Wallis Grubbs,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wallis Grubbs +sn: Grubbs +description: This is Wallis Grubbs's description +facsimileTelephoneNumber: +1 408 800-8471 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 230-5536 +title: Chief Management Evangelist +userPassword: Password1 +uid: GrubbsW +givenName: Wallis +mail: GrubbsW@c322a60d3bf04197a05d614b3aca2643.bitwarden.com +carLicense: 942PXL +departmentNumber: 8961 +employeeType: Normal +homePhone: +1 408 143-7439 +initials: W. G. +mobile: +1 408 243-9622 +pager: +1 408 583-3640 +roomNumber: 9827 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eran Sziladi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eran Sziladi +sn: Sziladi +description: This is Eran Sziladi's description +facsimileTelephoneNumber: +1 206 879-3810 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 582-7813 +title: Chief Payroll Developer +userPassword: Password1 +uid: SziladiE +givenName: Eran +mail: SziladiE@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com +carLicense: 8YQLMV +departmentNumber: 2617 +employeeType: Normal +homePhone: +1 206 479-2218 +initials: E. S. +mobile: +1 206 131-2647 +pager: +1 206 429-7913 +roomNumber: 8462 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Joji Cassar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joji Cassar +sn: Cassar +description: This is Joji Cassar's description +facsimileTelephoneNumber: +1 213 509-7153 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 632-7648 +title: Associate Product Development Admin +userPassword: Password1 +uid: CassarJ +givenName: Joji +mail: CassarJ@d06dcad3fe8b46a4aa1b3d7dd28ff6b8.bitwarden.com +carLicense: TJWGXJ +departmentNumber: 6893 +employeeType: Contract +homePhone: +1 213 921-1751 +initials: J. C. +mobile: +1 213 796-1967 +pager: +1 213 893-5037 +roomNumber: 8762 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sunil Brisebois,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sunil Brisebois +sn: Brisebois +description: This is Sunil Brisebois's description +facsimileTelephoneNumber: +1 213 128-1546 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 709-8718 +title: Chief Payroll Visionary +userPassword: Password1 +uid: BriseboS +givenName: Sunil +mail: BriseboS@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com +carLicense: 01PN60 +departmentNumber: 4567 +employeeType: Contract +homePhone: +1 213 839-3180 +initials: S. B. +mobile: +1 213 366-9095 +pager: +1 213 193-3704 +roomNumber: 8481 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Otha Dee,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Otha Dee +sn: Dee +description: This is Otha Dee's description +facsimileTelephoneNumber: +1 206 550-7482 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 412-3059 +title: Junior Peons Fellow +userPassword: Password1 +uid: DeeO +givenName: Otha +mail: DeeO@a34bb7d1546c462cb51396798bb22845.bitwarden.com +carLicense: Q9WC2O +departmentNumber: 7179 +employeeType: Contract +homePhone: +1 206 610-8931 +initials: O. D. +mobile: +1 206 341-8929 +pager: +1 206 491-3937 +roomNumber: 8869 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dyane Hungle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyane Hungle +sn: Hungle +description: This is Dyane Hungle's description +facsimileTelephoneNumber: +1 415 735-8832 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 881-3140 +title: Master Janitorial President +userPassword: Password1 +uid: HungleD +givenName: Dyane +mail: HungleD@4893d9d0765d4728aa63d94ce3265f28.bitwarden.com +carLicense: VFE81Q +departmentNumber: 4241 +employeeType: Employee +homePhone: +1 415 861-7927 +initials: D. H. +mobile: +1 415 360-9129 +pager: +1 415 943-3473 +roomNumber: 8874 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marlane Mitchell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlane Mitchell +sn: Mitchell +description: This is Marlane Mitchell's description +facsimileTelephoneNumber: +1 408 114-2227 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 664-5995 +title: Junior Product Development Writer +userPassword: Password1 +uid: MitchelM +givenName: Marlane +mail: MitchelM@77df1d4a30ab443892398806ba3c7576.bitwarden.com +carLicense: WQP8FR +departmentNumber: 8461 +employeeType: Contract +homePhone: +1 408 172-8689 +initials: M. M. +mobile: +1 408 221-4147 +pager: +1 408 722-3759 +roomNumber: 8949 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linnea Bulkovshteyn +sn: Bulkovshteyn +description: This is Linnea Bulkovshteyn's description +facsimileTelephoneNumber: +1 510 821-7603 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 936-6976 +title: Associate Human Resources Technician +userPassword: Password1 +uid: BulkovsL +givenName: Linnea +mail: BulkovsL@94747c09a3194eba8b7d52262cebca45.bitwarden.com +carLicense: TK5HVT +departmentNumber: 4134 +employeeType: Normal +homePhone: +1 510 998-1270 +initials: L. B. +mobile: +1 510 548-6382 +pager: +1 510 771-4480 +roomNumber: 8070 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Belva Knighten,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belva Knighten +sn: Knighten +description: This is Belva Knighten's description +facsimileTelephoneNumber: +1 408 270-8175 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 547-7261 +title: Junior Administrative Engineer +userPassword: Password1 +uid: KnighteB +givenName: Belva +mail: KnighteB@285b0b0b23104ddebe5d6348304a4148.bitwarden.com +carLicense: VS6MK2 +departmentNumber: 7926 +employeeType: Employee +homePhone: +1 408 513-7743 +initials: B. K. +mobile: +1 408 586-1563 +pager: +1 408 357-6959 +roomNumber: 9108 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claudie Oesterreicher +sn: Oesterreicher +description: This is Claudie Oesterreicher's description +facsimileTelephoneNumber: +1 804 911-2003 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 833-4023 +title: Supreme Payroll Architect +userPassword: Password1 +uid: OesterrC +givenName: Claudie +mail: OesterrC@8a9079e17fc440a78f208b233e58c2df.bitwarden.com +carLicense: UG46W7 +departmentNumber: 2592 +employeeType: Contract +homePhone: +1 804 870-6054 +initials: C. O. +mobile: +1 804 508-9684 +pager: +1 804 389-4647 +roomNumber: 9246 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xylina Iacovo +sn: Iacovo +description: This is Xylina Iacovo's description +facsimileTelephoneNumber: +1 510 399-2109 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 616-4618 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: IacovoX +givenName: Xylina +mail: IacovoX@98315d8e8bc34b77b08ac74a18e3be73.bitwarden.com +carLicense: 69MRUJ +departmentNumber: 4943 +employeeType: Normal +homePhone: +1 510 918-7583 +initials: X. I. +mobile: +1 510 725-7458 +pager: +1 510 559-9280 +roomNumber: 9261 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shahriar Upchurch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shahriar Upchurch +sn: Upchurch +description: This is Shahriar Upchurch's description +facsimileTelephoneNumber: +1 408 316-4406 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 434-7109 +title: Master Management Admin +userPassword: Password1 +uid: UpchurcS +givenName: Shahriar +mail: UpchurcS@35c01be12949443b81c64e5b90fceee5.bitwarden.com +carLicense: U70O57 +departmentNumber: 3211 +employeeType: Contract +homePhone: +1 408 110-6622 +initials: S. U. +mobile: +1 408 117-9377 +pager: +1 408 645-7612 +roomNumber: 8249 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Blaire Hr,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blaire Hr +sn: Hr +description: This is Blaire Hr's description +facsimileTelephoneNumber: +1 213 227-4931 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 100-7193 +title: Associate Product Development Grunt +userPassword: Password1 +uid: HrB +givenName: Blaire +mail: HrB@e52685d2fb89476596028e80c714ec4f.bitwarden.com +carLicense: WEYVU2 +departmentNumber: 3190 +employeeType: Normal +homePhone: +1 213 828-1127 +initials: B. H. +mobile: +1 213 408-5530 +pager: +1 213 498-9702 +roomNumber: 8968 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosaleen Hudecek +sn: Hudecek +description: This is Rosaleen Hudecek's description +facsimileTelephoneNumber: +1 206 454-9316 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 728-2810 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: HudecekR +givenName: Rosaleen +mail: HudecekR@783a0de8a8e24bc7b467cd3312aa159b.bitwarden.com +carLicense: OT9LLY +departmentNumber: 7830 +employeeType: Normal +homePhone: +1 206 263-2042 +initials: R. H. +mobile: +1 206 778-6934 +pager: +1 206 153-4879 +roomNumber: 9134 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Idalia Batura,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idalia Batura +sn: Batura +description: This is Idalia Batura's description +facsimileTelephoneNumber: +1 804 208-2803 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 432-4269 +title: Associate Human Resources Artist +userPassword: Password1 +uid: BaturaI +givenName: Idalia +mail: BaturaI@29c7ef7aeb474d4781eb49a7f52e61db.bitwarden.com +carLicense: Y0A7P7 +departmentNumber: 8871 +employeeType: Employee +homePhone: +1 804 119-4327 +initials: I. B. +mobile: +1 804 417-8053 +pager: +1 804 132-2778 +roomNumber: 8929 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bachittar Reneau,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bachittar Reneau +sn: Reneau +description: This is Bachittar Reneau's description +facsimileTelephoneNumber: +1 415 658-1728 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 773-3238 +title: Associate Management Sales Rep +userPassword: Password1 +uid: ReneauB +givenName: Bachittar +mail: ReneauB@94a04369a1f7454aa0b8a26e89e03c22.bitwarden.com +carLicense: XSSS60 +departmentNumber: 3906 +employeeType: Normal +homePhone: +1 415 581-7458 +initials: B. R. +mobile: +1 415 527-1834 +pager: +1 415 763-8211 +roomNumber: 8586 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Inger Oshiro,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inger Oshiro +sn: Oshiro +description: This is Inger Oshiro's description +facsimileTelephoneNumber: +1 804 801-4559 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 400-2839 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: OshiroI +givenName: Inger +mail: OshiroI@a8e37e10b84947b0991df30bd3cb9d8c.bitwarden.com +carLicense: FAGA4F +departmentNumber: 6375 +employeeType: Normal +homePhone: +1 804 489-6917 +initials: I. O. +mobile: +1 804 240-7913 +pager: +1 804 143-8994 +roomNumber: 9057 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sharline Chester,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharline Chester +sn: Chester +description: This is Sharline Chester's description +facsimileTelephoneNumber: +1 206 444-2403 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 704-3630 +title: Associate Payroll Pinhead +userPassword: Password1 +uid: ChesterS +givenName: Sharline +mail: ChesterS@733a0ed9ca244d1a87001be1b9e9514d.bitwarden.com +carLicense: 3DKRUL +departmentNumber: 9487 +employeeType: Contract +homePhone: +1 206 958-7098 +initials: S. C. +mobile: +1 206 404-4421 +pager: +1 206 785-1108 +roomNumber: 8792 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Glynn Surreau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glynn Surreau +sn: Surreau +description: This is Glynn Surreau's description +facsimileTelephoneNumber: +1 408 739-4323 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 170-9516 +title: Associate Peons Director +userPassword: Password1 +uid: SurreauG +givenName: Glynn +mail: SurreauG@9ba1788c88514e3e9788f75280ccf6c3.bitwarden.com +carLicense: LSG0PG +departmentNumber: 2754 +employeeType: Employee +homePhone: +1 408 255-7210 +initials: G. S. +mobile: +1 408 266-1260 +pager: +1 408 468-9319 +roomNumber: 8638 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hatti Griffiths,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hatti Griffiths +sn: Griffiths +description: This is Hatti Griffiths's description +facsimileTelephoneNumber: +1 510 576-6220 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 292-9639 +title: Junior Payroll Consultant +userPassword: Password1 +uid: GriffitH +givenName: Hatti +mail: GriffitH@ae52dcada2674f68a76a2c619d85f261.bitwarden.com +carLicense: Q9RXB4 +departmentNumber: 1771 +employeeType: Employee +homePhone: +1 510 237-3079 +initials: H. G. +mobile: +1 510 655-2938 +pager: +1 510 370-1602 +roomNumber: 9962 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gudrun Robson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gudrun Robson +sn: Robson +description: This is Gudrun Robson's description +facsimileTelephoneNumber: +1 415 769-3838 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 302-5827 +title: Junior Human Resources Sales Rep +userPassword: Password1 +uid: RobsonG +givenName: Gudrun +mail: RobsonG@dba7b5909e924eeda080d597d190e631.bitwarden.com +carLicense: UARKIF +departmentNumber: 7692 +employeeType: Contract +homePhone: +1 415 107-7042 +initials: G. R. +mobile: +1 415 359-2464 +pager: +1 415 960-8374 +roomNumber: 8510 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sati Hallett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sati Hallett +sn: Hallett +description: This is Sati Hallett's description +facsimileTelephoneNumber: +1 206 370-4254 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 831-4033 +title: Master Management President +userPassword: Password1 +uid: HallettS +givenName: Sati +mail: HallettS@58d046473fe24d0d8bf6f510239a1102.bitwarden.com +carLicense: 1VA1AH +departmentNumber: 4462 +employeeType: Contract +homePhone: +1 206 701-6272 +initials: S. H. +mobile: +1 206 129-9074 +pager: +1 206 484-4777 +roomNumber: 9770 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lotty Flansburg,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lotty Flansburg +sn: Flansburg +description: This is Lotty Flansburg's description +facsimileTelephoneNumber: +1 206 408-1619 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 632-3247 +title: Associate Payroll Czar +userPassword: Password1 +uid: FlansbuL +givenName: Lotty +mail: FlansbuL@995d47539bff49b8a85a5ecb474bd257.bitwarden.com +carLicense: E37N1G +departmentNumber: 8776 +employeeType: Employee +homePhone: +1 206 197-3031 +initials: L. F. +mobile: +1 206 346-1508 +pager: +1 206 127-9337 +roomNumber: 9140 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Larina Scanlon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Larina Scanlon +sn: Scanlon +description: This is Larina Scanlon's description +facsimileTelephoneNumber: +1 213 255-9590 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 541-1344 +title: Associate Peons Architect +userPassword: Password1 +uid: ScanlonL +givenName: Larina +mail: ScanlonL@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com +carLicense: CE1JRO +departmentNumber: 5665 +employeeType: Employee +homePhone: +1 213 450-6109 +initials: L. S. +mobile: +1 213 618-1209 +pager: +1 213 112-2272 +roomNumber: 8409 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Barney Surridge,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barney Surridge +sn: Surridge +description: This is Barney Surridge's description +facsimileTelephoneNumber: +1 415 528-2069 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 424-4935 +title: Chief Peons Czar +userPassword: Password1 +uid: SurridgB +givenName: Barney +mail: SurridgB@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com +carLicense: XNRH1H +departmentNumber: 3524 +employeeType: Normal +homePhone: +1 415 455-6940 +initials: B. S. +mobile: +1 415 461-5315 +pager: +1 415 708-5706 +roomNumber: 8409 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yolanda Wanda,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yolanda Wanda +sn: Wanda +description: This is Yolanda Wanda's description +facsimileTelephoneNumber: +1 408 822-7330 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 156-5289 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: WandaY +givenName: Yolanda +mail: WandaY@63e0235d1e58418d9082de40babcb995.bitwarden.com +carLicense: FFTXS4 +departmentNumber: 2644 +employeeType: Normal +homePhone: +1 408 881-2980 +initials: Y. W. +mobile: +1 408 653-3783 +pager: +1 408 765-7748 +roomNumber: 9027 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dasie Tougas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dasie Tougas +sn: Tougas +description: This is Dasie Tougas's description +facsimileTelephoneNumber: +1 415 365-8254 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 151-2117 +title: Junior Human Resources Consultant +userPassword: Password1 +uid: TougasD +givenName: Dasie +mail: TougasD@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com +carLicense: AH97EO +departmentNumber: 8039 +employeeType: Employee +homePhone: +1 415 695-6180 +initials: D. T. +mobile: +1 415 466-5045 +pager: +1 415 949-7029 +roomNumber: 8141 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Julee Milton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julee Milton +sn: Milton +description: This is Julee Milton's description +facsimileTelephoneNumber: +1 213 587-1320 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 580-9616 +title: Master Administrative Vice President +userPassword: Password1 +uid: MiltonJ +givenName: Julee +mail: MiltonJ@08af06c825e94cb392bd12261cb97963.bitwarden.com +carLicense: WY42WL +departmentNumber: 4134 +employeeType: Contract +homePhone: +1 213 326-3821 +initials: J. M. +mobile: +1 213 769-9295 +pager: +1 213 224-3590 +roomNumber: 8591 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Selle Oslund,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selle Oslund +sn: Oslund +description: This is Selle Oslund's description +facsimileTelephoneNumber: +1 510 663-2150 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 167-1631 +title: Chief Janitorial Writer +userPassword: Password1 +uid: OslundS +givenName: Selle +mail: OslundS@102d4dd16d9e43f0b636c4011b41a3bb.bitwarden.com +carLicense: H6H2BC +departmentNumber: 3340 +employeeType: Employee +homePhone: +1 510 612-4448 +initials: S. O. +mobile: +1 510 310-4062 +pager: +1 510 287-4218 +roomNumber: 9279 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benjamin Togasaki +sn: Togasaki +description: This is Benjamin Togasaki's description +facsimileTelephoneNumber: +1 804 655-5162 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 699-6001 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: TogasakB +givenName: Benjamin +mail: TogasakB@207f06c431db4f90babc987173636b40.bitwarden.com +carLicense: 7DUO4U +departmentNumber: 3517 +employeeType: Normal +homePhone: +1 804 860-9017 +initials: B. T. +mobile: +1 804 739-6194 +pager: +1 804 886-8250 +roomNumber: 8935 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Leelah Docherty,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leelah Docherty +sn: Docherty +description: This is Leelah Docherty's description +facsimileTelephoneNumber: +1 213 392-7333 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 182-9379 +title: Associate Product Testing Developer +userPassword: Password1 +uid: DochertL +givenName: Leelah +mail: DochertL@e47f64bef69f4dd48dddefa04608b96f.bitwarden.com +carLicense: 7N2CHA +departmentNumber: 8764 +employeeType: Normal +homePhone: +1 213 805-4851 +initials: L. D. +mobile: +1 213 890-4969 +pager: +1 213 336-9148 +roomNumber: 9987 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Clement Srivastava,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clement Srivastava +sn: Srivastava +description: This is Clement Srivastava's description +facsimileTelephoneNumber: +1 206 892-4135 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 206 923-6551 +title: Junior Management Writer +userPassword: Password1 +uid: SrivastC +givenName: Clement +mail: SrivastC@0e85bbb2cec745a29072d883820197db.bitwarden.com +carLicense: KEEGOD +departmentNumber: 3020 +employeeType: Normal +homePhone: +1 206 202-3550 +initials: C. S. +mobile: +1 206 763-8601 +pager: +1 206 143-6765 +roomNumber: 9871 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marsie Schreiber,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marsie Schreiber +sn: Schreiber +description: This is Marsie Schreiber's description +facsimileTelephoneNumber: +1 804 822-6669 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 469-1521 +title: Junior Payroll Punk +userPassword: Password1 +uid: SchreibM +givenName: Marsie +mail: SchreibM@60ce52bd5b3a49f19dc20ccd0b72445c.bitwarden.com +carLicense: N0VWWE +departmentNumber: 1982 +employeeType: Contract +homePhone: +1 804 830-8914 +initials: M. S. +mobile: +1 804 947-5760 +pager: +1 804 690-3873 +roomNumber: 8241 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cathryn Bokij,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathryn Bokij +sn: Bokij +description: This is Cathryn Bokij's description +facsimileTelephoneNumber: +1 206 418-9133 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 180-1481 +title: Master Payroll Consultant +userPassword: Password1 +uid: BokijC +givenName: Cathryn +mail: BokijC@9e84c2e1d4034838ad90a53f25c2fdbf.bitwarden.com +carLicense: AYV00D +departmentNumber: 1443 +employeeType: Contract +homePhone: +1 206 368-4285 +initials: C. B. +mobile: +1 206 654-6468 +pager: +1 206 695-4086 +roomNumber: 8918 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharone Bryttan +sn: Bryttan +description: This is Sharone Bryttan's description +facsimileTelephoneNumber: +1 213 732-9963 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 677-1189 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: BryttanS +givenName: Sharone +mail: BryttanS@f48d7d3b63134ad1b2fb9b6ebafa3028.bitwarden.com +carLicense: OWEBJC +departmentNumber: 3614 +employeeType: Employee +homePhone: +1 213 683-4111 +initials: S. B. +mobile: +1 213 602-3970 +pager: +1 213 803-4253 +roomNumber: 8340 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Schaffer Chronowic +sn: Chronowic +description: This is Schaffer Chronowic's description +facsimileTelephoneNumber: +1 213 479-1010 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 154-4531 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: ChronowS +givenName: Schaffer +mail: ChronowS@465c6a27d41345cf88d762adf10ae61e.bitwarden.com +carLicense: 3NV2GL +departmentNumber: 8531 +employeeType: Employee +homePhone: +1 213 186-7456 +initials: S. C. +mobile: +1 213 340-5142 +pager: +1 213 862-8192 +roomNumber: 8192 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Virginia Salyniuk +sn: Salyniuk +description: This is Virginia Salyniuk's description +facsimileTelephoneNumber: +1 206 895-2808 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 206 445-7098 +title: Associate Janitorial Admin +userPassword: Password1 +uid: SalyniuV +givenName: Virginia +mail: SalyniuV@a286103db60e4488ab30515042c203a5.bitwarden.com +carLicense: 5BKEKW +departmentNumber: 9190 +employeeType: Employee +homePhone: +1 206 562-1324 +initials: V. S. +mobile: +1 206 815-1765 +pager: +1 206 287-2081 +roomNumber: 8905 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SiewKiat Cassady +sn: Cassady +description: This is SiewKiat Cassady's description +facsimileTelephoneNumber: +1 804 721-9903 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 620-5169 +title: Master Payroll Figurehead +userPassword: Password1 +uid: CassadyS +givenName: SiewKiat +mail: CassadyS@4466c387ca38420ebdc497ef8de08842.bitwarden.com +carLicense: 2ITB0R +departmentNumber: 2873 +employeeType: Normal +homePhone: +1 804 389-6743 +initials: S. C. +mobile: +1 804 551-6748 +pager: +1 804 696-1860 +roomNumber: 9327 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Melody Fontana,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melody Fontana +sn: Fontana +description: This is Melody Fontana's description +facsimileTelephoneNumber: +1 818 957-5839 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 836-9941 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: FontanaM +givenName: Melody +mail: FontanaM@b183806c89d6447c809013ec636d07ae.bitwarden.com +carLicense: EXPBV0 +departmentNumber: 1756 +employeeType: Employee +homePhone: +1 818 787-6060 +initials: M. F. +mobile: +1 818 186-7980 +pager: +1 818 141-2210 +roomNumber: 8834 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Saul Fussell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saul Fussell +sn: Fussell +description: This is Saul Fussell's description +facsimileTelephoneNumber: +1 510 389-8939 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 188-6608 +title: Master Management Czar +userPassword: Password1 +uid: FussellS +givenName: Saul +mail: FussellS@4c905761dfd345f0bec1fb45af8eef64.bitwarden.com +carLicense: E4I7NX +departmentNumber: 4899 +employeeType: Employee +homePhone: +1 510 623-4721 +initials: S. F. +mobile: +1 510 994-9307 +pager: +1 510 479-5049 +roomNumber: 8648 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Livvie Kayalioglu +sn: Kayalioglu +description: This is Livvie Kayalioglu's description +facsimileTelephoneNumber: +1 804 509-1240 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 608-8259 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: KayalioL +givenName: Livvie +mail: KayalioL@758a671442c6456f8563c5ae42048214.bitwarden.com +carLicense: 4538BS +departmentNumber: 8199 +employeeType: Employee +homePhone: +1 804 250-5446 +initials: L. K. +mobile: +1 804 517-2586 +pager: +1 804 426-5090 +roomNumber: 8423 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Thomas Gourley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomas Gourley +sn: Gourley +description: This is Thomas Gourley's description +facsimileTelephoneNumber: +1 415 172-8626 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 586-9257 +title: Chief Peons Director +userPassword: Password1 +uid: GourleyT +givenName: Thomas +mail: GourleyT@e82a7163f0b1403c8ef83f8850e77a61.bitwarden.com +carLicense: J86VOT +departmentNumber: 7862 +employeeType: Contract +homePhone: +1 415 984-2670 +initials: T. G. +mobile: +1 415 917-6257 +pager: +1 415 845-9479 +roomNumber: 9302 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Norstar Trefts,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norstar Trefts +sn: Trefts +description: This is Norstar Trefts's description +facsimileTelephoneNumber: +1 510 162-6969 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 510 868-3055 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: TreftsN +givenName: Norstar +mail: TreftsN@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com +carLicense: IT2N6W +departmentNumber: 3857 +employeeType: Employee +homePhone: +1 510 784-9064 +initials: N. T. +mobile: +1 510 280-6806 +pager: +1 510 627-7110 +roomNumber: 8857 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cheuk Weatherly +sn: Weatherly +description: This is Cheuk Weatherly's description +facsimileTelephoneNumber: +1 510 560-3580 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 750-8807 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: WeatherC +givenName: Cheuk +mail: WeatherC@6994ff306ef64425a30543b5e9a42d04.bitwarden.com +carLicense: C2OU8Q +departmentNumber: 4027 +employeeType: Contract +homePhone: +1 510 986-6176 +initials: C. W. +mobile: +1 510 926-5729 +pager: +1 510 989-5693 +roomNumber: 9635 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ignatius Ocampo +sn: Ocampo +description: This is Ignatius Ocampo's description +facsimileTelephoneNumber: +1 213 185-2163 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 634-9632 +title: Master Human Resources Grunt +userPassword: Password1 +uid: OcampoI +givenName: Ignatius +mail: OcampoI@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com +carLicense: BF1SVC +departmentNumber: 6736 +employeeType: Normal +homePhone: +1 213 634-5806 +initials: I. O. +mobile: +1 213 945-5165 +pager: +1 213 209-5368 +roomNumber: 8314 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cathi Keiser,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathi Keiser +sn: Keiser +description: This is Cathi Keiser's description +facsimileTelephoneNumber: +1 804 483-4121 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 532-1634 +title: Associate Janitorial Assistant +userPassword: Password1 +uid: KeiserC +givenName: Cathi +mail: KeiserC@df6375b797c34567a9e4770a61e55877.bitwarden.com +carLicense: O5UMDG +departmentNumber: 2006 +employeeType: Contract +homePhone: +1 804 455-3892 +initials: C. K. +mobile: +1 804 249-9567 +pager: +1 804 798-4179 +roomNumber: 9198 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Apryle Haurie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Apryle Haurie +sn: Haurie +description: This is Apryle Haurie's description +facsimileTelephoneNumber: +1 804 974-5991 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 804 160-7595 +title: Associate Peons Madonna +userPassword: Password1 +uid: HaurieA +givenName: Apryle +mail: HaurieA@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com +carLicense: IFT808 +departmentNumber: 6017 +employeeType: Employee +homePhone: +1 804 661-5028 +initials: A. H. +mobile: +1 804 551-3062 +pager: +1 804 633-3479 +roomNumber: 8899 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rozanne Trouborst,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozanne Trouborst +sn: Trouborst +description: This is Rozanne Trouborst's description +facsimileTelephoneNumber: +1 804 400-7616 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 804 346-5842 +title: Supreme Peons Architect +userPassword: Password1 +uid: TrouborR +givenName: Rozanne +mail: TrouborR@c2eec700570a4e37a9895be568c7b846.bitwarden.com +carLicense: 3B59B9 +departmentNumber: 6244 +employeeType: Employee +homePhone: +1 804 632-7776 +initials: R. T. +mobile: +1 804 621-4300 +pager: +1 804 493-3204 +roomNumber: 8950 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Catlaina Intemann,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catlaina Intemann +sn: Intemann +description: This is Catlaina Intemann's description +facsimileTelephoneNumber: +1 415 767-1843 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 403-5574 +title: Associate Product Development Assistant +userPassword: Password1 +uid: IntemanC +givenName: Catlaina +mail: IntemanC@e91f9f908328437c89ad28a2affe5705.bitwarden.com +carLicense: UT9U74 +departmentNumber: 2292 +employeeType: Contract +homePhone: +1 415 192-8734 +initials: C. I. +mobile: +1 415 484-6188 +pager: +1 415 354-7636 +roomNumber: 9966 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anabel Intune,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anabel Intune +sn: Intune +description: This is Anabel Intune's description +facsimileTelephoneNumber: +1 804 283-8519 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 471-7911 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: IntuneA +givenName: Anabel +mail: IntuneA@e9f78b5202b6404b9ee727f9d75a47b9.bitwarden.com +carLicense: FH8CBN +departmentNumber: 3780 +employeeType: Contract +homePhone: +1 804 725-3456 +initials: A. I. +mobile: +1 804 506-8109 +pager: +1 804 513-7147 +roomNumber: 9644 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elnore Rigdon +sn: Rigdon +description: This is Elnore Rigdon's description +facsimileTelephoneNumber: +1 206 570-9803 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 287-1659 +title: Chief Product Testing Artist +userPassword: Password1 +uid: RigdonE +givenName: Elnore +mail: RigdonE@25954b1ed5924842b4df7800b058aeea.bitwarden.com +carLicense: 84H546 +departmentNumber: 8264 +employeeType: Employee +homePhone: +1 206 158-6497 +initials: E. R. +mobile: +1 206 215-7236 +pager: +1 206 800-7609 +roomNumber: 8095 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ninnetta Matney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninnetta Matney +sn: Matney +description: This is Ninnetta Matney's description +facsimileTelephoneNumber: +1 408 961-7478 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 744-9889 +title: Supreme Administrative Admin +userPassword: Password1 +uid: MatneyN +givenName: Ninnetta +mail: MatneyN@debbccc9cd9041e58d59a87945bc2243.bitwarden.com +carLicense: S98RSQ +departmentNumber: 6531 +employeeType: Normal +homePhone: +1 408 178-7996 +initials: N. M. +mobile: +1 408 332-3684 +pager: +1 408 409-3725 +roomNumber: 8499 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Regina Lemay,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regina Lemay +sn: Lemay +description: This is Regina Lemay's description +facsimileTelephoneNumber: +1 818 785-5769 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 518-7898 +title: Junior Janitorial Admin +userPassword: Password1 +uid: LemayR +givenName: Regina +mail: LemayR@8227646c55034cf9b21757fce681b53f.bitwarden.com +carLicense: EGGU5C +departmentNumber: 3048 +employeeType: Employee +homePhone: +1 818 426-7576 +initials: R. L. +mobile: +1 818 581-8195 +pager: +1 818 554-2895 +roomNumber: 9328 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Janos Davis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janos Davis +sn: Davis +description: This is Janos Davis's description +facsimileTelephoneNumber: +1 206 283-2195 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 131-2981 +title: Associate Payroll Director +userPassword: Password1 +uid: DavisJ +givenName: Janos +mail: DavisJ@0a9ba1c4790d4f00ae7cb9df0847c587.bitwarden.com +carLicense: C7QSKU +departmentNumber: 6854 +employeeType: Contract +homePhone: +1 206 100-5036 +initials: J. D. +mobile: +1 206 416-8734 +pager: +1 206 183-1924 +roomNumber: 8311 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dniren Serack,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dniren Serack +sn: Serack +description: This is Dniren Serack's description +facsimileTelephoneNumber: +1 804 817-5590 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 882-1170 +title: Chief Payroll Pinhead +userPassword: Password1 +uid: SerackD +givenName: Dniren +mail: SerackD@0d144b95e68f4087974ae09daf892d06.bitwarden.com +carLicense: S1JNVE +departmentNumber: 8799 +employeeType: Normal +homePhone: +1 804 316-4922 +initials: D. S. +mobile: +1 804 956-3343 +pager: +1 804 659-4245 +roomNumber: 8328 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jaffer Guty,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaffer Guty +sn: Guty +description: This is Jaffer Guty's description +facsimileTelephoneNumber: +1 804 903-7563 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 617-2773 +title: Master Payroll Czar +userPassword: Password1 +uid: GutyJ +givenName: Jaffer +mail: GutyJ@a2e835bbc90a4bb8aa8eed7abb9fcd6b.bitwarden.com +carLicense: 1YCFVY +departmentNumber: 3398 +employeeType: Normal +homePhone: +1 804 844-8515 +initials: J. G. +mobile: +1 804 333-6187 +pager: +1 804 448-6000 +roomNumber: 9319 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kalpit Devine,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalpit Devine +sn: Devine +description: This is Kalpit Devine's description +facsimileTelephoneNumber: +1 408 667-4874 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 408 258-4562 +title: Supreme Administrative Developer +userPassword: Password1 +uid: DevineK +givenName: Kalpit +mail: DevineK@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com +carLicense: DB287A +departmentNumber: 8331 +employeeType: Normal +homePhone: +1 408 733-2474 +initials: K. D. +mobile: +1 408 819-1333 +pager: +1 408 220-5793 +roomNumber: 8326 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zitella Sammon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zitella Sammon +sn: Sammon +description: This is Zitella Sammon's description +facsimileTelephoneNumber: +1 206 518-2446 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 331-8528 +title: Master Management Manager +userPassword: Password1 +uid: SammonZ +givenName: Zitella +mail: SammonZ@af539deff3b941ca83e2c33de648681b.bitwarden.com +carLicense: H133LG +departmentNumber: 4714 +employeeType: Normal +homePhone: +1 206 482-9097 +initials: Z. S. +mobile: +1 206 281-8749 +pager: +1 206 705-3422 +roomNumber: 8269 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Renate Worrall,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renate Worrall +sn: Worrall +description: This is Renate Worrall's description +facsimileTelephoneNumber: +1 510 502-3779 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 510 885-9913 +title: Associate Human Resources Developer +userPassword: Password1 +uid: WorrallR +givenName: Renate +mail: WorrallR@1f071e8813ad43c0a975571fab76b110.bitwarden.com +carLicense: 4C6PBN +departmentNumber: 2334 +employeeType: Contract +homePhone: +1 510 726-5244 +initials: R. W. +mobile: +1 510 199-5973 +pager: +1 510 815-2221 +roomNumber: 8678 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elka Masciarelli +sn: Masciarelli +description: This is Elka Masciarelli's description +facsimileTelephoneNumber: +1 415 782-1839 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 404-9410 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: MasciarE +givenName: Elka +mail: MasciarE@cbf6583826fd423d8f040079f215152c.bitwarden.com +carLicense: QQBNNG +departmentNumber: 8515 +employeeType: Employee +homePhone: +1 415 430-6353 +initials: E. M. +mobile: +1 415 843-9267 +pager: +1 415 865-2541 +roomNumber: 8611 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatrice Isherwood +sn: Isherwood +description: This is Beatrice Isherwood's description +facsimileTelephoneNumber: +1 804 875-6634 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 377-6245 +title: Associate Human Resources Admin +userPassword: Password1 +uid: IsherwoB +givenName: Beatrice +mail: IsherwoB@f82a375ba7e5476fb33407411380cda7.bitwarden.com +carLicense: BB4QLX +departmentNumber: 8841 +employeeType: Contract +homePhone: +1 804 736-5734 +initials: B. I. +mobile: +1 804 766-5456 +pager: +1 804 892-5437 +roomNumber: 8033 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maidsir Traynor +sn: Traynor +description: This is Maidsir Traynor's description +facsimileTelephoneNumber: +1 408 376-2292 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 413-8878 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: TraynorM +givenName: Maidsir +mail: TraynorM@a6d00429faa5499880c45615fd9223a3.bitwarden.com +carLicense: RBJO4D +departmentNumber: 2347 +employeeType: Normal +homePhone: +1 408 699-5849 +initials: M. T. +mobile: +1 408 302-4520 +pager: +1 408 736-7800 +roomNumber: 9509 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Medria Aribindi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Medria Aribindi +sn: Aribindi +description: This is Medria Aribindi's description +facsimileTelephoneNumber: +1 206 703-9624 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 972-7626 +title: Associate Administrative Architect +userPassword: Password1 +uid: AribindM +givenName: Medria +mail: AribindM@be56d01786b846e3aa64454147150e23.bitwarden.com +carLicense: X41B15 +departmentNumber: 6766 +employeeType: Employee +homePhone: +1 206 566-8383 +initials: M. A. +mobile: +1 206 385-7270 +pager: +1 206 589-5389 +roomNumber: 8231 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eba Bockaj,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eba Bockaj +sn: Bockaj +description: This is Eba Bockaj's description +facsimileTelephoneNumber: +1 510 825-7849 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 361-4625 +title: Master Payroll Dictator +userPassword: Password1 +uid: BockajE +givenName: Eba +mail: BockajE@3f93f60a8e804d55a6647c56c6c05eab.bitwarden.com +carLicense: 7X2KKM +departmentNumber: 2542 +employeeType: Employee +homePhone: +1 510 831-6615 +initials: E. B. +mobile: +1 510 295-8282 +pager: +1 510 542-2160 +roomNumber: 8131 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Calley Thaxton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calley Thaxton +sn: Thaxton +description: This is Calley Thaxton's description +facsimileTelephoneNumber: +1 510 914-4393 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 510 685-5652 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: ThaxtonC +givenName: Calley +mail: ThaxtonC@202ab1834ba741fea5a2334a7dedf7d0.bitwarden.com +carLicense: PMTTV8 +departmentNumber: 7128 +employeeType: Employee +homePhone: +1 510 466-3648 +initials: C. T. +mobile: +1 510 694-7209 +pager: +1 510 600-6975 +roomNumber: 8738 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rheal Dadgar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rheal Dadgar +sn: Dadgar +description: This is Rheal Dadgar's description +facsimileTelephoneNumber: +1 408 425-1015 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 101-8995 +title: Junior Payroll Visionary +userPassword: Password1 +uid: DadgarR +givenName: Rheal +mail: DadgarR@b3a78fcc94924efeb3886f806e14989c.bitwarden.com +carLicense: 2IXAP0 +departmentNumber: 4785 +employeeType: Contract +homePhone: +1 408 165-6138 +initials: R. D. +mobile: +1 408 103-7589 +pager: +1 408 542-9753 +roomNumber: 8426 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Daphene Bayno,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphene Bayno +sn: Bayno +description: This is Daphene Bayno's description +facsimileTelephoneNumber: +1 206 244-2623 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 586-4401 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: BaynoD +givenName: Daphene +mail: BaynoD@b1e31f863da04aa8b9a57d43a6e09dae.bitwarden.com +carLicense: 58EF5W +departmentNumber: 3470 +employeeType: Normal +homePhone: +1 206 208-3877 +initials: D. B. +mobile: +1 206 876-9269 +pager: +1 206 913-5761 +roomNumber: 8857 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dilpreet Javor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dilpreet Javor +sn: Javor +description: This is Dilpreet Javor's description +facsimileTelephoneNumber: +1 408 686-3026 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 729-6026 +title: Supreme Management Fellow +userPassword: Password1 +uid: JavorD +givenName: Dilpreet +mail: JavorD@3bc4d87aca5d46469b49fb22078e5414.bitwarden.com +carLicense: 7UQLF8 +departmentNumber: 5246 +employeeType: Employee +homePhone: +1 408 446-3821 +initials: D. J. +mobile: +1 408 810-9083 +pager: +1 408 399-9621 +roomNumber: 8978 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kambiz Nyce,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kambiz Nyce +sn: Nyce +description: This is Kambiz Nyce's description +facsimileTelephoneNumber: +1 510 937-7831 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 851-7073 +title: Associate Peons Fellow +userPassword: Password1 +uid: NyceK +givenName: Kambiz +mail: NyceK@ff8375ca1c294ee698da8ebb063821cf.bitwarden.com +carLicense: 9025QM +departmentNumber: 2210 +employeeType: Contract +homePhone: +1 510 380-2279 +initials: K. N. +mobile: +1 510 104-3720 +pager: +1 510 327-7966 +roomNumber: 9214 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karan Molochko,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karan Molochko +sn: Molochko +description: This is Karan Molochko's description +facsimileTelephoneNumber: +1 213 591-8293 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 500-4661 +title: Supreme Administrative Engineer +userPassword: Password1 +uid: MolochkK +givenName: Karan +mail: MolochkK@22bf652e14524f83bfef4f8562abff95.bitwarden.com +carLicense: HEP49K +departmentNumber: 8958 +employeeType: Employee +homePhone: +1 213 417-3610 +initials: K. M. +mobile: +1 213 544-3744 +pager: +1 213 550-4583 +roomNumber: 8917 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Olav Straub,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olav Straub +sn: Straub +description: This is Olav Straub's description +facsimileTelephoneNumber: +1 415 472-2880 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 818-5430 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: StraubO +givenName: Olav +mail: StraubO@0af04fcd60da40099a5a068c388bafe2.bitwarden.com +carLicense: MNMHQD +departmentNumber: 5322 +employeeType: Normal +homePhone: +1 415 282-8988 +initials: O. S. +mobile: +1 415 631-4470 +pager: +1 415 194-3585 +roomNumber: 9524 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgia Ashurkoff +sn: Ashurkoff +description: This is Georgia Ashurkoff's description +facsimileTelephoneNumber: +1 415 203-8435 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 318-8434 +title: Associate Product Testing Manager +userPassword: Password1 +uid: AshurkoG +givenName: Georgia +mail: AshurkoG@2885a23eb18143c0ac146276f9ab0afb.bitwarden.com +carLicense: O5N1DE +departmentNumber: 5110 +employeeType: Normal +homePhone: +1 415 434-8280 +initials: G. A. +mobile: +1 415 766-9353 +pager: +1 415 185-1108 +roomNumber: 8138 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyndy Ghatta +sn: Ghatta +description: This is Cyndy Ghatta's description +facsimileTelephoneNumber: +1 510 948-5333 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 522-2541 +title: Junior Human Resources Warrior +userPassword: Password1 +uid: GhattaC +givenName: Cyndy +mail: GhattaC@a18c15299e7f44c494cd2e3c44db021d.bitwarden.com +carLicense: P2F4D9 +departmentNumber: 2909 +employeeType: Normal +homePhone: +1 510 346-3647 +initials: C. G. +mobile: +1 510 991-7148 +pager: +1 510 559-7235 +roomNumber: 9513 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Berget Hnidek,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berget Hnidek +sn: Hnidek +description: This is Berget Hnidek's description +facsimileTelephoneNumber: +1 206 723-6306 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 509-4378 +title: Associate Peons Developer +userPassword: Password1 +uid: HnidekB +givenName: Berget +mail: HnidekB@54be91a814bf4836912c52cbba66eeef.bitwarden.com +carLicense: LA6UTY +departmentNumber: 3984 +employeeType: Employee +homePhone: +1 206 360-7149 +initials: B. H. +mobile: +1 206 843-6997 +pager: +1 206 140-3418 +roomNumber: 8532 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shahriar Benschop,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shahriar Benschop +sn: Benschop +description: This is Shahriar Benschop's description +facsimileTelephoneNumber: +1 408 872-2234 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 131-4236 +title: Supreme Peons Warrior +userPassword: Password1 +uid: BenschoS +givenName: Shahriar +mail: BenschoS@66ebe9b8d29246329e6e17db480edb7b.bitwarden.com +carLicense: JPMMY2 +departmentNumber: 4555 +employeeType: Normal +homePhone: +1 408 464-3406 +initials: S. B. +mobile: +1 408 497-1410 +pager: +1 408 267-1635 +roomNumber: 9858 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamyar Savarimuthu +sn: Savarimuthu +description: This is Kamyar Savarimuthu's description +facsimileTelephoneNumber: +1 818 974-5136 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 818 486-4813 +title: Associate Human Resources Developer +userPassword: Password1 +uid: SavarimK +givenName: Kamyar +mail: SavarimK@4be9f9f4318e4587b7d485613eb27d49.bitwarden.com +carLicense: JV5NJ7 +departmentNumber: 1898 +employeeType: Normal +homePhone: +1 818 239-2194 +initials: K. S. +mobile: +1 818 544-6797 +pager: +1 818 111-6666 +roomNumber: 9369 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wilkin Boinnard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilkin Boinnard +sn: Boinnard +description: This is Wilkin Boinnard's description +facsimileTelephoneNumber: +1 206 560-8557 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 123-2253 +title: Junior Management Czar +userPassword: Password1 +uid: BoinnarW +givenName: Wilkin +mail: BoinnarW@af9d1266b1684989ab41423cdd351f7f.bitwarden.com +carLicense: 7H6YEI +departmentNumber: 7969 +employeeType: Employee +homePhone: +1 206 757-8811 +initials: W. B. +mobile: +1 206 445-7750 +pager: +1 206 617-7943 +roomNumber: 9925 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vital Simcoe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vital Simcoe +sn: Simcoe +description: This is Vital Simcoe's description +facsimileTelephoneNumber: +1 206 847-7469 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 197-7665 +title: Junior Product Development Mascot +userPassword: Password1 +uid: SimcoeV +givenName: Vital +mail: SimcoeV@04f0b8f68f7043abbd5b8505c5bed917.bitwarden.com +carLicense: ESNXFB +departmentNumber: 4311 +employeeType: Employee +homePhone: +1 206 949-1174 +initials: V. S. +mobile: +1 206 162-8651 +pager: +1 206 450-8578 +roomNumber: 8030 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lydie Hooker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lydie Hooker +sn: Hooker +description: This is Lydie Hooker's description +facsimileTelephoneNumber: +1 213 299-1689 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 213 557-3720 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: HookerL +givenName: Lydie +mail: HookerL@4eab057e70644dff8f3d5ac041be0877.bitwarden.com +carLicense: UQUIWK +departmentNumber: 7190 +employeeType: Normal +homePhone: +1 213 781-5030 +initials: L. H. +mobile: +1 213 963-3930 +pager: +1 213 438-8254 +roomNumber: 9972 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Greta Minyard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greta Minyard +sn: Minyard +description: This is Greta Minyard's description +facsimileTelephoneNumber: +1 206 982-1902 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 206 784-3370 +title: Associate Management Mascot +userPassword: Password1 +uid: MinyardG +givenName: Greta +mail: MinyardG@43da9c69baa14266b4c8812eff59c738.bitwarden.com +carLicense: L1J7IF +departmentNumber: 7910 +employeeType: Employee +homePhone: +1 206 985-1568 +initials: G. M. +mobile: +1 206 480-2449 +pager: +1 206 390-9229 +roomNumber: 8073 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamiko Timleck +sn: Timleck +description: This is Tamiko Timleck's description +facsimileTelephoneNumber: +1 408 385-8844 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 872-9458 +title: Master Human Resources Architect +userPassword: Password1 +uid: TimleckT +givenName: Tamiko +mail: TimleckT@26786d0f68384beeae2a7df6b6635e8e.bitwarden.com +carLicense: D0LVQR +departmentNumber: 7133 +employeeType: Employee +homePhone: +1 408 532-6228 +initials: T. T. +mobile: +1 408 526-3262 +pager: +1 408 982-7189 +roomNumber: 8757 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Adelice Fishman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adelice Fishman +sn: Fishman +description: This is Adelice Fishman's description +facsimileTelephoneNumber: +1 415 645-1081 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 464-2451 +title: Chief Product Development Punk +userPassword: Password1 +uid: FishmanA +givenName: Adelice +mail: FishmanA@0b715661798e487f9f545ca818a81f7a.bitwarden.com +carLicense: DPL7E9 +departmentNumber: 4801 +employeeType: Normal +homePhone: +1 415 556-9790 +initials: A. F. +mobile: +1 415 169-8263 +pager: +1 415 964-1201 +roomNumber: 9330 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thaddeus Ciochon +sn: Ciochon +description: This is Thaddeus Ciochon's description +facsimileTelephoneNumber: +1 415 262-5262 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 888-8524 +title: Chief Administrative Vice President +userPassword: Password1 +uid: CiochonT +givenName: Thaddeus +mail: CiochonT@6fe854deca574173bc8de7c35ad137c6.bitwarden.com +carLicense: BQMNU0 +departmentNumber: 9197 +employeeType: Employee +homePhone: +1 415 213-6124 +initials: T. C. +mobile: +1 415 582-9184 +pager: +1 415 603-8767 +roomNumber: 9196 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibylle Cusato +sn: Cusato +description: This is Sibylle Cusato's description +facsimileTelephoneNumber: +1 408 721-9006 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 408 870-7253 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: CusatoS +givenName: Sibylle +mail: CusatoS@06ca177f7c6b4c2ab8f07911dfc0cb3f.bitwarden.com +carLicense: OME6BF +departmentNumber: 6470 +employeeType: Employee +homePhone: +1 408 233-6826 +initials: S. C. +mobile: +1 408 926-8190 +pager: +1 408 175-4955 +roomNumber: 8420 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Motaz Gobeli +sn: Gobeli +description: This is Motaz Gobeli's description +facsimileTelephoneNumber: +1 510 549-4605 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 692-2866 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: GobeliM +givenName: Motaz +mail: GobeliM@392a4a6a368341beb07fcc7da7744c10.bitwarden.com +carLicense: QNDSRN +departmentNumber: 8033 +employeeType: Employee +homePhone: +1 510 128-4413 +initials: M. G. +mobile: +1 510 535-5293 +pager: +1 510 800-8469 +roomNumber: 9447 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Devinne Kellum,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devinne Kellum +sn: Kellum +description: This is Devinne Kellum's description +facsimileTelephoneNumber: +1 510 103-3487 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 257-5784 +title: Associate Administrative Engineer +userPassword: Password1 +uid: KellumD +givenName: Devinne +mail: KellumD@5214956f0ee84ad493b8defdd90a23da.bitwarden.com +carLicense: 8HOIL8 +departmentNumber: 5261 +employeeType: Contract +homePhone: +1 510 402-1936 +initials: D. K. +mobile: +1 510 761-9363 +pager: +1 510 811-6665 +roomNumber: 9798 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Breena Telco,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Breena Telco +sn: Telco +description: This is Breena Telco's description +facsimileTelephoneNumber: +1 213 701-7158 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 347-1129 +title: Supreme Product Development Admin +userPassword: Password1 +uid: TelcoB +givenName: Breena +mail: TelcoB@ecf3a96f00b043e2b4c8c3e398a40978.bitwarden.com +carLicense: LJKPRG +departmentNumber: 7756 +employeeType: Employee +homePhone: +1 213 567-1653 +initials: B. T. +mobile: +1 213 726-7421 +pager: +1 213 469-8316 +roomNumber: 8332 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tianbao Gerlich,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tianbao Gerlich +sn: Gerlich +description: This is Tianbao Gerlich's description +facsimileTelephoneNumber: +1 408 565-9771 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 230-8661 +title: Chief Management Janitor +userPassword: Password1 +uid: GerlichT +givenName: Tianbao +mail: GerlichT@b156fd7640954c1b9e8fe3eb48376a55.bitwarden.com +carLicense: DKYUNQ +departmentNumber: 5471 +employeeType: Normal +homePhone: +1 408 313-2044 +initials: T. G. +mobile: +1 408 936-7655 +pager: +1 408 519-7136 +roomNumber: 8496 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gahn Lightfoot +sn: Lightfoot +description: This is Gahn Lightfoot's description +facsimileTelephoneNumber: +1 415 564-6499 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 873-4297 +title: Chief Administrative Consultant +userPassword: Password1 +uid: LightfoG +givenName: Gahn +mail: LightfoG@e6ab02c53a3c4216ba5b75ac65120e12.bitwarden.com +carLicense: D6ELW1 +departmentNumber: 3439 +employeeType: Normal +homePhone: +1 415 776-8405 +initials: G. L. +mobile: +1 415 733-5342 +pager: +1 415 779-9262 +roomNumber: 8998 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LyddaJune Thornber +sn: Thornber +description: This is LyddaJune Thornber's description +facsimileTelephoneNumber: +1 818 464-3907 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 598-8391 +title: Supreme Product Development Admin +userPassword: Password1 +uid: ThornbeL +givenName: LyddaJune +mail: ThornbeL@3badeafafe3b4639b92d03c5b1235944.bitwarden.com +carLicense: 4HJWIM +departmentNumber: 5114 +employeeType: Normal +homePhone: +1 818 237-5934 +initials: L. T. +mobile: +1 818 762-4748 +pager: +1 818 397-3028 +roomNumber: 9263 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lana Keates,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lana Keates +sn: Keates +description: This is Lana Keates's description +facsimileTelephoneNumber: +1 510 557-7407 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 670-2687 +title: Chief Administrative Mascot +userPassword: Password1 +uid: KeatesL +givenName: Lana +mail: KeatesL@bce67af47de54c1abf524bc004ae2e2b.bitwarden.com +carLicense: N065J7 +departmentNumber: 2681 +employeeType: Normal +homePhone: +1 510 568-8096 +initials: L. K. +mobile: +1 510 491-6379 +pager: +1 510 234-3142 +roomNumber: 9152 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Veena Richards,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veena Richards +sn: Richards +description: This is Veena Richards's description +facsimileTelephoneNumber: +1 213 663-3587 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 432-3521 +title: Supreme Human Resources Czar +userPassword: Password1 +uid: RichardV +givenName: Veena +mail: RichardV@7719bdff14bf4e9fa26a2dfe09ac0f3a.bitwarden.com +carLicense: RQT9IF +departmentNumber: 6064 +employeeType: Normal +homePhone: +1 213 305-2507 +initials: V. R. +mobile: +1 213 777-1050 +pager: +1 213 711-1668 +roomNumber: 8251 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Charin Clocklab,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charin Clocklab +sn: Clocklab +description: This is Charin Clocklab's description +facsimileTelephoneNumber: +1 415 533-9027 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 826-7957 +title: Master Human Resources Fellow +userPassword: Password1 +uid: ClocklaC +givenName: Charin +mail: ClocklaC@3905d18a9f18484ba7305c447e951282.bitwarden.com +carLicense: YSK9KD +departmentNumber: 2188 +employeeType: Normal +homePhone: +1 415 727-8972 +initials: C. C. +mobile: +1 415 751-2050 +pager: +1 415 576-7769 +roomNumber: 9903 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kollen Fenwick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kollen Fenwick +sn: Fenwick +description: This is Kollen Fenwick's description +facsimileTelephoneNumber: +1 510 343-3622 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 777-2364 +title: Master Management Dictator +userPassword: Password1 +uid: FenwickK +givenName: Kollen +mail: FenwickK@f4611bb6000b48cf9a5a0c6ff63070e9.bitwarden.com +carLicense: SWQ9DR +departmentNumber: 9932 +employeeType: Employee +homePhone: +1 510 798-7739 +initials: K. F. +mobile: +1 510 407-4966 +pager: +1 510 776-4995 +roomNumber: 8588 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lucille Orol,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucille Orol +sn: Orol +description: This is Lucille Orol's description +facsimileTelephoneNumber: +1 213 476-6089 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 671-6539 +title: Master Management President +userPassword: Password1 +uid: OrolL +givenName: Lucille +mail: OrolL@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com +carLicense: E3LG9E +departmentNumber: 3345 +employeeType: Normal +homePhone: +1 213 230-1356 +initials: L. O. +mobile: +1 213 171-1779 +pager: +1 213 665-4754 +roomNumber: 8149 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maier Bobar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maier Bobar +sn: Bobar +description: This is Maier Bobar's description +facsimileTelephoneNumber: +1 818 317-1178 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 928-7580 +title: Master Product Testing Artist +userPassword: Password1 +uid: BobarM +givenName: Maier +mail: BobarM@b39d8f666f1848e6abb69d85d224a354.bitwarden.com +carLicense: E5CAFF +departmentNumber: 2154 +employeeType: Normal +homePhone: +1 818 942-6682 +initials: M. B. +mobile: +1 818 664-7754 +pager: +1 818 594-3956 +roomNumber: 9346 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dori Garwood,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dori Garwood +sn: Garwood +description: This is Dori Garwood's description +facsimileTelephoneNumber: +1 818 930-8043 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 818 390-1803 +title: Supreme Administrative Punk +userPassword: Password1 +uid: GarwoodD +givenName: Dori +mail: GarwoodD@81e1c04932074375850663ac7b5d1387.bitwarden.com +carLicense: 0GSJ3J +departmentNumber: 2075 +employeeType: Employee +homePhone: +1 818 726-1435 +initials: D. G. +mobile: +1 818 101-2660 +pager: +1 818 943-1443 +roomNumber: 9880 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gussi Horak,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gussi Horak +sn: Horak +description: This is Gussi Horak's description +facsimileTelephoneNumber: +1 818 162-1725 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 873-1759 +title: Supreme Management Madonna +userPassword: Password1 +uid: HorakG +givenName: Gussi +mail: HorakG@d65cebe6024b47459c5e0ad8f6a8a5c2.bitwarden.com +carLicense: LE1N5I +departmentNumber: 3016 +employeeType: Employee +homePhone: +1 818 716-2486 +initials: G. H. +mobile: +1 818 670-9926 +pager: +1 818 989-6631 +roomNumber: 8758 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marillin Boroski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marillin Boroski +sn: Boroski +description: This is Marillin Boroski's description +facsimileTelephoneNumber: +1 818 605-3869 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 898-9610 +title: Chief Administrative Consultant +userPassword: Password1 +uid: BoroskiM +givenName: Marillin +mail: BoroskiM@8664d2779faf46baad47e305d363adc6.bitwarden.com +carLicense: A0IPL9 +departmentNumber: 5873 +employeeType: Normal +homePhone: +1 818 194-7113 +initials: M. B. +mobile: +1 818 306-2824 +pager: +1 818 635-9535 +roomNumber: 9760 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kitson Lundhild +sn: Lundhild +description: This is Kitson Lundhild's description +facsimileTelephoneNumber: +1 408 717-6071 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 408 373-8552 +title: Junior Janitorial Warrior +userPassword: Password1 +uid: LundhilK +givenName: Kitson +mail: LundhilK@e7504ea4712040488444ef96484ed4da.bitwarden.com +carLicense: BUT6GD +departmentNumber: 1632 +employeeType: Normal +homePhone: +1 408 437-4693 +initials: K. L. +mobile: +1 408 246-8480 +pager: +1 408 105-1686 +roomNumber: 8336 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Noelyn Hinkle,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noelyn Hinkle +sn: Hinkle +description: This is Noelyn Hinkle's description +facsimileTelephoneNumber: +1 206 707-6207 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 622-2404 +title: Chief Peons Admin +userPassword: Password1 +uid: HinkleN +givenName: Noelyn +mail: HinkleN@3efbea2d01d34d828998e7b903e8331e.bitwarden.com +carLicense: HHOK3O +departmentNumber: 6640 +employeeType: Normal +homePhone: +1 206 677-4216 +initials: N. H. +mobile: +1 206 638-8856 +pager: +1 206 749-9018 +roomNumber: 8309 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denise Wegrowicz +sn: Wegrowicz +description: This is Denise Wegrowicz's description +facsimileTelephoneNumber: +1 818 760-6045 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 666-1038 +title: Master Janitorial Punk +userPassword: Password1 +uid: WegrowiD +givenName: Denise +mail: WegrowiD@3ec760605c684f74be32825b3ebfaaaf.bitwarden.com +carLicense: 9DIEC0 +departmentNumber: 8233 +employeeType: Contract +homePhone: +1 818 918-2700 +initials: D. W. +mobile: +1 818 630-7804 +pager: +1 818 894-7400 +roomNumber: 8782 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Erlene Schirmer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erlene Schirmer +sn: Schirmer +description: This is Erlene Schirmer's description +facsimileTelephoneNumber: +1 408 441-3811 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 358-4027 +title: Junior Management Vice President +userPassword: Password1 +uid: SchirmeE +givenName: Erlene +mail: SchirmeE@e0c1b544468b4b8ea7c122f613b28724.bitwarden.com +carLicense: IU02WP +departmentNumber: 4654 +employeeType: Normal +homePhone: +1 408 875-2134 +initials: E. S. +mobile: +1 408 458-8164 +pager: +1 408 801-6056 +roomNumber: 8895 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fabienne McGonigal +sn: McGonigal +description: This is Fabienne McGonigal's description +facsimileTelephoneNumber: +1 415 935-4979 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 415 565-8417 +title: Associate Human Resources Technician +userPassword: Password1 +uid: McGonigF +givenName: Fabienne +mail: McGonigF@25d2cd968a404f8ab3144ef7402e2e12.bitwarden.com +carLicense: L4H6I5 +departmentNumber: 6588 +employeeType: Employee +homePhone: +1 415 869-5376 +initials: F. M. +mobile: +1 415 756-8927 +pager: +1 415 563-8690 +roomNumber: 8550 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Binh Hoagland,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Binh Hoagland +sn: Hoagland +description: This is Binh Hoagland's description +facsimileTelephoneNumber: +1 206 843-7258 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 590-7312 +title: Junior Peons Czar +userPassword: Password1 +uid: HoaglanB +givenName: Binh +mail: HoaglanB@6c33f97ba18845049fcf33d5c689185e.bitwarden.com +carLicense: BVR04L +departmentNumber: 5843 +employeeType: Normal +homePhone: +1 206 674-9416 +initials: B. H. +mobile: +1 206 176-1987 +pager: +1 206 164-4089 +roomNumber: 9098 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aviva McIsaac,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aviva McIsaac +sn: McIsaac +description: This is Aviva McIsaac's description +facsimileTelephoneNumber: +1 213 442-3593 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 521-2473 +title: Master Administrative Figurehead +userPassword: Password1 +uid: McIsaacA +givenName: Aviva +mail: McIsaacA@b2d36917909a45fd9de4c6c83faf6196.bitwarden.com +carLicense: KEYNQS +departmentNumber: 3002 +employeeType: Normal +homePhone: +1 213 487-6667 +initials: A. M. +mobile: +1 213 275-8376 +pager: +1 213 701-9697 +roomNumber: 9545 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Noami Cinicolo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noami Cinicolo +sn: Cinicolo +description: This is Noami Cinicolo's description +facsimileTelephoneNumber: +1 408 235-5773 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 776-9965 +title: Chief Peons Manager +userPassword: Password1 +uid: CinicolN +givenName: Noami +mail: CinicolN@cd70627629114669966294343a84f460.bitwarden.com +carLicense: U94S2Y +departmentNumber: 1645 +employeeType: Employee +homePhone: +1 408 389-9480 +initials: N. C. +mobile: +1 408 279-9048 +pager: +1 408 913-8869 +roomNumber: 9836 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yukuo Wolford,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yukuo Wolford +sn: Wolford +description: This is Yukuo Wolford's description +facsimileTelephoneNumber: +1 415 929-4249 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 228-3839 +title: Master Administrative Madonna +userPassword: Password1 +uid: WolfordY +givenName: Yukuo +mail: WolfordY@cbda3412be124725a29716dcee2b4b0d.bitwarden.com +carLicense: 5HH7NK +departmentNumber: 2668 +employeeType: Employee +homePhone: +1 415 307-9430 +initials: Y. W. +mobile: +1 415 147-1441 +pager: +1 415 985-4763 +roomNumber: 8677 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Amalea Kesler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amalea Kesler +sn: Kesler +description: This is Amalea Kesler's description +facsimileTelephoneNumber: +1 818 199-2626 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 559-6743 +title: Supreme Janitorial Visionary +userPassword: Password1 +uid: KeslerA +givenName: Amalea +mail: KeslerA@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com +carLicense: NP7TJH +departmentNumber: 8233 +employeeType: Normal +homePhone: +1 818 682-9650 +initials: A. K. +mobile: +1 818 104-9519 +pager: +1 818 373-8780 +roomNumber: 8372 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cyril Inglis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyril Inglis +sn: Inglis +description: This is Cyril Inglis's description +facsimileTelephoneNumber: +1 510 469-2427 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 665-2844 +title: Chief Payroll Sales Rep +userPassword: Password1 +uid: InglisC +givenName: Cyril +mail: InglisC@2e3c1feccfe647baaed9b76e554413c0.bitwarden.com +carLicense: U168HA +departmentNumber: 6630 +employeeType: Employee +homePhone: +1 510 444-2966 +initials: C. I. +mobile: +1 510 356-3426 +pager: +1 510 492-3100 +roomNumber: 8400 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ladan Schutz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ladan Schutz +sn: Schutz +description: This is Ladan Schutz's description +facsimileTelephoneNumber: +1 213 781-2730 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 269-3010 +title: Junior Administrative Artist +userPassword: Password1 +uid: SchutzL +givenName: Ladan +mail: SchutzL@3ee35d919ef5410b9a742e5fe9487a11.bitwarden.com +carLicense: FFTG4B +departmentNumber: 4744 +employeeType: Contract +homePhone: +1 213 223-7533 +initials: L. S. +mobile: +1 213 629-2768 +pager: +1 213 117-9037 +roomNumber: 8631 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bob Erbach,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bob Erbach +sn: Erbach +description: This is Bob Erbach's description +facsimileTelephoneNumber: +1 510 657-1482 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 584-8345 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: ErbachB +givenName: Bob +mail: ErbachB@2257b27ac7544235a333809d99a81f31.bitwarden.com +carLicense: H2QI4K +departmentNumber: 6459 +employeeType: Employee +homePhone: +1 510 588-4384 +initials: B. E. +mobile: +1 510 149-7627 +pager: +1 510 372-8985 +roomNumber: 9398 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hideki Fobert,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hideki Fobert +sn: Fobert +description: This is Hideki Fobert's description +facsimileTelephoneNumber: +1 415 455-4609 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 763-1112 +title: Supreme Management Dictator +userPassword: Password1 +uid: FobertH +givenName: Hideki +mail: FobertH@dabb673b74534388bb1466a7f0fed6b0.bitwarden.com +carLicense: AD33R8 +departmentNumber: 8236 +employeeType: Normal +homePhone: +1 415 635-9009 +initials: H. F. +mobile: +1 415 458-1222 +pager: +1 415 517-9154 +roomNumber: 9449 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Koral Bilton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koral Bilton +sn: Bilton +description: This is Koral Bilton's description +facsimileTelephoneNumber: +1 415 771-7523 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 184-7661 +title: Junior Peons President +userPassword: Password1 +uid: BiltonK +givenName: Koral +mail: BiltonK@6a1a5eea63134321b540021379837737.bitwarden.com +carLicense: J6MWOK +departmentNumber: 8952 +employeeType: Employee +homePhone: +1 415 258-1651 +initials: K. B. +mobile: +1 415 335-1518 +pager: +1 415 910-6445 +roomNumber: 9081 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Adriane Denike,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adriane Denike +sn: Denike +description: This is Adriane Denike's description +facsimileTelephoneNumber: +1 408 565-3501 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 516-8199 +title: Master Human Resources Assistant +userPassword: Password1 +uid: DenikeA +givenName: Adriane +mail: DenikeA@7a434719bc114db3972a25b2d060ed01.bitwarden.com +carLicense: 40HLSV +departmentNumber: 9092 +employeeType: Employee +homePhone: +1 408 814-8084 +initials: A. D. +mobile: +1 408 855-6743 +pager: +1 408 856-8577 +roomNumber: 9048 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ayako McCormick,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ayako McCormick +sn: McCormick +description: This is Ayako McCormick's description +facsimileTelephoneNumber: +1 818 653-3874 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 818 617-4087 +title: Master Human Resources Madonna +userPassword: Password1 +uid: McCormiA +givenName: Ayako +mail: McCormiA@1c56caf50dea44adacb785f044d171d8.bitwarden.com +carLicense: VFLW5G +departmentNumber: 6858 +employeeType: Normal +homePhone: +1 818 113-6765 +initials: A. M. +mobile: +1 818 779-3304 +pager: +1 818 820-1978 +roomNumber: 8958 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Renell Kales,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renell Kales +sn: Kales +description: This is Renell Kales's description +facsimileTelephoneNumber: +1 818 754-3557 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 497-6142 +title: Associate Human Resources Pinhead +userPassword: Password1 +uid: KalesR +givenName: Renell +mail: KalesR@9d6eea632d564a3387d6cca7f5f27cee.bitwarden.com +carLicense: AUJ6NO +departmentNumber: 7012 +employeeType: Normal +homePhone: +1 818 204-5920 +initials: R. K. +mobile: +1 818 281-1063 +pager: +1 818 989-7544 +roomNumber: 9540 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aggi Syssupport +sn: Syssupport +description: This is Aggi Syssupport's description +facsimileTelephoneNumber: +1 510 994-9981 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 132-7944 +title: Junior Product Testing Consultant +userPassword: Password1 +uid: SyssuppA +givenName: Aggi +mail: SyssuppA@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com +carLicense: 64JTCA +departmentNumber: 9789 +employeeType: Employee +homePhone: +1 510 170-2599 +initials: A. S. +mobile: +1 510 837-1290 +pager: +1 510 950-2480 +roomNumber: 8498 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brennan Wolter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brennan Wolter +sn: Wolter +description: This is Brennan Wolter's description +facsimileTelephoneNumber: +1 804 697-9499 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 349-7598 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: WolterB +givenName: Brennan +mail: WolterB@0c8d3d5d36af4ce7b5e4cfaf2e7114b4.bitwarden.com +carLicense: PTNICE +departmentNumber: 2485 +employeeType: Contract +homePhone: +1 804 327-8628 +initials: B. W. +mobile: +1 804 520-7196 +pager: +1 804 621-8318 +roomNumber: 8649 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mariya Wesselow,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariya Wesselow +sn: Wesselow +description: This is Mariya Wesselow's description +facsimileTelephoneNumber: +1 415 993-3863 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 802-6348 +title: Master Payroll Stooge +userPassword: Password1 +uid: WesseloM +givenName: Mariya +mail: WesseloM@38084e0586a041acbbdb2c1dfb35d2bb.bitwarden.com +carLicense: P5GNEA +departmentNumber: 1467 +employeeType: Contract +homePhone: +1 415 685-9470 +initials: M. W. +mobile: +1 415 753-1304 +pager: +1 415 187-3990 +roomNumber: 8117 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Roe Kathie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roe Kathie +sn: Kathie +description: This is Roe Kathie's description +facsimileTelephoneNumber: +1 510 973-3539 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 509-9315 +title: Master Product Development Grunt +userPassword: Password1 +uid: KathieR +givenName: Roe +mail: KathieR@b6b1bf8d77e842a3bc1d1dfc536f2c93.bitwarden.com +carLicense: M2440B +departmentNumber: 3796 +employeeType: Normal +homePhone: +1 510 938-7153 +initials: R. K. +mobile: +1 510 719-2065 +pager: +1 510 453-5802 +roomNumber: 8868 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rici Sobel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rici Sobel +sn: Sobel +description: This is Rici Sobel's description +facsimileTelephoneNumber: +1 510 160-6130 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 838-5575 +title: Associate Peons Stooge +userPassword: Password1 +uid: SobelR +givenName: Rici +mail: SobelR@8f9774ff98184bb9b97541409e8279a1.bitwarden.com +carLicense: CVOYLL +departmentNumber: 4165 +employeeType: Employee +homePhone: +1 510 426-2437 +initials: R. S. +mobile: +1 510 804-6977 +pager: +1 510 910-4857 +roomNumber: 9431 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eladio Malek,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eladio Malek +sn: Malek +description: This is Eladio Malek's description +facsimileTelephoneNumber: +1 206 814-4253 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 998-6145 +title: Master Product Testing Mascot +userPassword: Password1 +uid: MalekE +givenName: Eladio +mail: MalekE@a327e7a9db0a40bba24a9943db49f75e.bitwarden.com +carLicense: 6Y9B7H +departmentNumber: 7665 +employeeType: Normal +homePhone: +1 206 184-4394 +initials: E. M. +mobile: +1 206 115-3628 +pager: +1 206 309-3426 +roomNumber: 9970 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Siew Dunajski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siew Dunajski +sn: Dunajski +description: This is Siew Dunajski's description +facsimileTelephoneNumber: +1 804 177-4364 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 309-1422 +title: Associate Peons Madonna +userPassword: Password1 +uid: DunajskS +givenName: Siew +mail: DunajskS@5c0f96a3078844a4801dba9a3ab9ce0b.bitwarden.com +carLicense: SWOXC8 +departmentNumber: 2585 +employeeType: Contract +homePhone: +1 804 295-3907 +initials: S. D. +mobile: +1 804 857-8411 +pager: +1 804 473-3363 +roomNumber: 8425 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosalie Feild,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosalie Feild +sn: Feild +description: This is Rosalie Feild's description +facsimileTelephoneNumber: +1 408 351-4182 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 744-1076 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: FeildR +givenName: Rosalie +mail: FeildR@c2ddaecf94964357886149e7833e3267.bitwarden.com +carLicense: 2CV3AR +departmentNumber: 5368 +employeeType: Contract +homePhone: +1 408 260-3660 +initials: R. F. +mobile: +1 408 854-7847 +pager: +1 408 296-8301 +roomNumber: 9886 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Karyl Scarrow,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karyl Scarrow +sn: Scarrow +description: This is Karyl Scarrow's description +facsimileTelephoneNumber: +1 818 689-1410 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 342-2363 +title: Chief Management Janitor +userPassword: Password1 +uid: ScarrowK +givenName: Karyl +mail: ScarrowK@9c2e6c9cd4a84de798c45d0f7e513159.bitwarden.com +carLicense: 4RW67U +departmentNumber: 6427 +employeeType: Normal +homePhone: +1 818 346-1666 +initials: K. S. +mobile: +1 818 931-4632 +pager: +1 818 938-3591 +roomNumber: 9823 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imtaz Rafflin +sn: Rafflin +description: This is Imtaz Rafflin's description +facsimileTelephoneNumber: +1 408 295-3631 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 408 988-6532 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: RafflinI +givenName: Imtaz +mail: RafflinI@289c2891b86d472eb2e530ea709a709c.bitwarden.com +carLicense: 8FP6OX +departmentNumber: 8019 +employeeType: Normal +homePhone: +1 408 141-3541 +initials: I. R. +mobile: +1 408 296-8095 +pager: +1 408 104-5250 +roomNumber: 8063 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hoog Fielden,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hoog Fielden +sn: Fielden +description: This is Hoog Fielden's description +facsimileTelephoneNumber: +1 510 811-3203 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 835-2910 +title: Junior Administrative Admin +userPassword: Password1 +uid: FieldenH +givenName: Hoog +mail: FieldenH@132c49195697451c98a0a564a1ead019.bitwarden.com +carLicense: RY1MFV +departmentNumber: 2971 +employeeType: Contract +homePhone: +1 510 162-5196 +initials: H. F. +mobile: +1 510 787-1179 +pager: +1 510 584-8538 +roomNumber: 8162 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fredericka Corbett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fredericka Corbett +sn: Corbett +description: This is Fredericka Corbett's description +facsimileTelephoneNumber: +1 510 423-6836 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 510 699-6586 +title: Associate Payroll Assistant +userPassword: Password1 +uid: CorbettF +givenName: Fredericka +mail: CorbettF@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com +carLicense: C5CIX0 +departmentNumber: 8748 +employeeType: Normal +homePhone: +1 510 202-6174 +initials: F. C. +mobile: +1 510 727-9108 +pager: +1 510 189-5151 +roomNumber: 9654 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mabelle Bondurant,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mabelle Bondurant +sn: Bondurant +description: This is Mabelle Bondurant's description +facsimileTelephoneNumber: +1 415 958-3168 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 384-7641 +title: Junior Management Developer +userPassword: Password1 +uid: BonduraM +givenName: Mabelle +mail: BonduraM@81e6fd93e0bf4f1694c27f343181e2cc.bitwarden.com +carLicense: 25WFDK +departmentNumber: 2258 +employeeType: Normal +homePhone: +1 415 100-5146 +initials: M. B. +mobile: +1 415 709-2556 +pager: +1 415 730-1269 +roomNumber: 9312 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Zafar McCarron,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zafar McCarron +sn: McCarron +description: This is Zafar McCarron's description +facsimileTelephoneNumber: +1 206 532-8471 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 908-1544 +title: Junior Management Fellow +userPassword: Password1 +uid: McCarroZ +givenName: Zafar +mail: McCarroZ@bc040a54299440bb80e6ade2d1ef97a9.bitwarden.com +carLicense: OW3X28 +departmentNumber: 8104 +employeeType: Employee +homePhone: +1 206 723-2461 +initials: Z. M. +mobile: +1 206 393-5607 +pager: +1 206 295-7373 +roomNumber: 8006 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winne Pitcairn +sn: Pitcairn +description: This is Winne Pitcairn's description +facsimileTelephoneNumber: +1 804 758-7145 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 416-1408 +title: Junior Product Testing Sales Rep +userPassword: Password1 +uid: PitcairW +givenName: Winne +mail: PitcairW@dc3b17872e63439bbb080a2a2f978fc9.bitwarden.com +carLicense: XOAXR1 +departmentNumber: 6417 +employeeType: Contract +homePhone: +1 804 986-9744 +initials: W. P. +mobile: +1 804 215-4656 +pager: +1 804 425-9936 +roomNumber: 8026 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Malia Faletti,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malia Faletti +sn: Faletti +description: This is Malia Faletti's description +facsimileTelephoneNumber: +1 818 171-7183 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 818 586-6464 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: FalettiM +givenName: Malia +mail: FalettiM@6ab6d840c20844eead1fabc30b82fca2.bitwarden.com +carLicense: DEUBPW +departmentNumber: 8881 +employeeType: Contract +homePhone: +1 818 966-3312 +initials: M. F. +mobile: +1 818 997-4004 +pager: +1 818 673-8479 +roomNumber: 8498 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nesta Mawji,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nesta Mawji +sn: Mawji +description: This is Nesta Mawji's description +facsimileTelephoneNumber: +1 206 665-8957 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 319-5312 +title: Chief Management Figurehead +userPassword: Password1 +uid: MawjiN +givenName: Nesta +mail: MawjiN@939e12c12d5d4580810a1d6603b95234.bitwarden.com +carLicense: TS3TJD +departmentNumber: 7833 +employeeType: Employee +homePhone: +1 206 152-5103 +initials: N. M. +mobile: +1 206 907-5652 +pager: +1 206 876-3082 +roomNumber: 8194 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlette Fieldsup +sn: Fieldsup +description: This is Arlette Fieldsup's description +facsimileTelephoneNumber: +1 804 546-3018 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 922-3923 +title: Associate Human Resources Artist +userPassword: Password1 +uid: FieldsuA +givenName: Arlette +mail: FieldsuA@ac51bd925c934bb88fa663b44a5d364d.bitwarden.com +carLicense: PFQX8Q +departmentNumber: 9455 +employeeType: Normal +homePhone: +1 804 314-9189 +initials: A. F. +mobile: +1 804 508-4981 +pager: +1 804 744-7338 +roomNumber: 9624 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandrine Cotugno +sn: Cotugno +description: This is Sandrine Cotugno's description +facsimileTelephoneNumber: +1 213 276-9344 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 261-6517 +title: Junior Administrative Fellow +userPassword: Password1 +uid: CotugnoS +givenName: Sandrine +mail: CotugnoS@01fa9120f2a14ce7afdb05e2fa84950c.bitwarden.com +carLicense: TQCAKS +departmentNumber: 7250 +employeeType: Contract +homePhone: +1 213 455-6133 +initials: S. C. +mobile: +1 213 966-5868 +pager: +1 213 814-7367 +roomNumber: 9231 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Liliana Vaillant,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liliana Vaillant +sn: Vaillant +description: This is Liliana Vaillant's description +facsimileTelephoneNumber: +1 818 145-9032 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 591-9872 +title: Junior Payroll Architect +userPassword: Password1 +uid: VaillanL +givenName: Liliana +mail: VaillanL@fd092081b1e04b7d8cd5c22f860fda23.bitwarden.com +carLicense: QVKEPI +departmentNumber: 2826 +employeeType: Contract +homePhone: +1 818 840-4844 +initials: L. V. +mobile: +1 818 682-1609 +pager: +1 818 440-8718 +roomNumber: 8000 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Den Arora,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Den Arora +sn: Arora +description: This is Den Arora's description +facsimileTelephoneNumber: +1 206 819-6466 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 699-1816 +title: Associate Administrative Manager +userPassword: Password1 +uid: AroraD +givenName: Den +mail: AroraD@dbc4eab54b5f4d779246b56a41ba3d42.bitwarden.com +carLicense: 87GEY1 +departmentNumber: 8851 +employeeType: Contract +homePhone: +1 206 871-9590 +initials: D. A. +mobile: +1 206 375-2306 +pager: +1 206 591-8563 +roomNumber: 8691 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rosabel Parkins,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosabel Parkins +sn: Parkins +description: This is Rosabel Parkins's description +facsimileTelephoneNumber: +1 510 572-5184 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 510 808-8811 +title: Associate Product Development Punk +userPassword: Password1 +uid: ParkinsR +givenName: Rosabel +mail: ParkinsR@e0bce7062963483283b8f7e6ab9a5e11.bitwarden.com +carLicense: 20TQXK +departmentNumber: 1240 +employeeType: Employee +homePhone: +1 510 341-5405 +initials: R. P. +mobile: +1 510 975-1956 +pager: +1 510 996-1991 +roomNumber: 8931 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Edyta Moroz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edyta Moroz +sn: Moroz +description: This is Edyta Moroz's description +facsimileTelephoneNumber: +1 510 348-9536 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 994-2435 +title: Master Human Resources Admin +userPassword: Password1 +uid: MorozE +givenName: Edyta +mail: MorozE@a82ac5cd9b7b4528b6af3599600d610a.bitwarden.com +carLicense: 2XXM9X +departmentNumber: 6060 +employeeType: Employee +homePhone: +1 510 510-2772 +initials: E. M. +mobile: +1 510 753-9810 +pager: +1 510 638-3770 +roomNumber: 8151 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=James Brunato,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: James Brunato +sn: Brunato +description: This is James Brunato's description +facsimileTelephoneNumber: +1 213 491-1305 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 213 239-5491 +title: Chief Product Development President +userPassword: Password1 +uid: BrunatoJ +givenName: James +mail: BrunatoJ@a30b452edd62411b874edf6881fc9b52.bitwarden.com +carLicense: SR5TWE +departmentNumber: 3350 +employeeType: Contract +homePhone: +1 213 409-3150 +initials: J. B. +mobile: +1 213 549-7610 +pager: +1 213 172-7782 +roomNumber: 8377 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Retha Miceli,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Retha Miceli +sn: Miceli +description: This is Retha Miceli's description +facsimileTelephoneNumber: +1 818 228-2447 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 323-1337 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: MiceliR +givenName: Retha +mail: MiceliR@4275578a22d3494fb8ea30d676dc9c77.bitwarden.com +carLicense: LHQ2YE +departmentNumber: 6104 +employeeType: Employee +homePhone: +1 818 459-9479 +initials: R. M. +mobile: +1 818 615-9120 +pager: +1 818 739-6833 +roomNumber: 9118 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bregitte DiFalco +sn: DiFalco +description: This is Bregitte DiFalco's description +facsimileTelephoneNumber: +1 818 768-9974 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 818 979-2704 +title: Chief Administrative Vice President +userPassword: Password1 +uid: DiFalcoB +givenName: Bregitte +mail: DiFalcoB@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com +carLicense: NLG1CP +departmentNumber: 4976 +employeeType: Contract +homePhone: +1 818 477-6929 +initials: B. D. +mobile: +1 818 961-8248 +pager: +1 818 464-4892 +roomNumber: 9568 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Emmie Hage,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emmie Hage +sn: Hage +description: This is Emmie Hage's description +facsimileTelephoneNumber: +1 510 423-9860 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 593-4118 +title: Chief Product Development Dictator +userPassword: Password1 +uid: HageE +givenName: Emmie +mail: HageE@c109e0def6a3408dba244e442ff2c165.bitwarden.com +carLicense: SVRIS8 +departmentNumber: 6204 +employeeType: Contract +homePhone: +1 510 925-7627 +initials: E. H. +mobile: +1 510 341-1228 +pager: +1 510 598-2009 +roomNumber: 9312 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Open Kozsukan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Open Kozsukan +sn: Kozsukan +description: This is Open Kozsukan's description +facsimileTelephoneNumber: +1 408 355-1405 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 408 287-6046 +title: Master Human Resources Engineer +userPassword: Password1 +uid: KozsukaO +givenName: Open +mail: KozsukaO@d1b17deb97cd4cec88efa6e9b4d6e774.bitwarden.com +carLicense: YXMU6I +departmentNumber: 3169 +employeeType: Contract +homePhone: +1 408 398-9051 +initials: O. K. +mobile: +1 408 284-8477 +pager: +1 408 303-6987 +roomNumber: 8171 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Crystal Dommety,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crystal Dommety +sn: Dommety +description: This is Crystal Dommety's description +facsimileTelephoneNumber: +1 818 800-5073 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 683-4078 +title: Chief Product Testing Technician +userPassword: Password1 +uid: DommetyC +givenName: Crystal +mail: DommetyC@b2f3aa04c0ef4b03a42b0509b9df028c.bitwarden.com +carLicense: XOXTGE +departmentNumber: 9666 +employeeType: Contract +homePhone: +1 818 800-9778 +initials: C. D. +mobile: +1 818 164-3793 +pager: +1 818 864-5123 +roomNumber: 8760 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alfreda VanLaten +sn: VanLaten +description: This is Alfreda VanLaten's description +facsimileTelephoneNumber: +1 206 447-6734 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 560-5161 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: VanLateA +givenName: Alfreda +mail: VanLateA@795d165ac426423b9759f469242c1c41.bitwarden.com +carLicense: EY041S +departmentNumber: 8952 +employeeType: Employee +homePhone: +1 206 199-3573 +initials: A. V. +mobile: +1 206 445-7692 +pager: +1 206 403-1525 +roomNumber: 9561 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lindsey Coxall,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lindsey Coxall +sn: Coxall +description: This is Lindsey Coxall's description +facsimileTelephoneNumber: +1 213 853-2356 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 957-3869 +title: Master Product Development Sales Rep +userPassword: Password1 +uid: CoxallL +givenName: Lindsey +mail: CoxallL@7ed78fa65633416c973b406fcda1b087.bitwarden.com +carLicense: JBUR8M +departmentNumber: 6663 +employeeType: Normal +homePhone: +1 213 615-1556 +initials: L. C. +mobile: +1 213 488-7154 +pager: +1 213 997-6082 +roomNumber: 8285 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Morgen Theoret,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morgen Theoret +sn: Theoret +description: This is Morgen Theoret's description +facsimileTelephoneNumber: +1 213 335-3717 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 427-3726 +title: Chief Management Madonna +userPassword: Password1 +uid: TheoretM +givenName: Morgen +mail: TheoretM@dcdbaaadaaee46828eda807cdf13cfd2.bitwarden.com +carLicense: IDDMPP +departmentNumber: 4965 +employeeType: Employee +homePhone: +1 213 542-1811 +initials: M. T. +mobile: +1 213 746-4515 +pager: +1 213 723-2465 +roomNumber: 8013 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coralyn Hinchey +sn: Hinchey +description: This is Coralyn Hinchey's description +facsimileTelephoneNumber: +1 206 671-5246 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 205-9033 +title: Supreme Administrative Director +userPassword: Password1 +uid: HincheyC +givenName: Coralyn +mail: HincheyC@06ae8344cdf64f67b4eccb16dbf6b4a7.bitwarden.com +carLicense: 77W2I1 +departmentNumber: 9146 +employeeType: Employee +homePhone: +1 206 395-3738 +initials: C. H. +mobile: +1 206 144-3068 +pager: +1 206 894-1950 +roomNumber: 8347 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anallise Golas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anallise Golas +sn: Golas +description: This is Anallise Golas's description +facsimileTelephoneNumber: +1 206 643-3278 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 477-7543 +title: Associate Human Resources Figurehead +userPassword: Password1 +uid: GolasA +givenName: Anallise +mail: GolasA@cb658de379fe4207855897a811933c01.bitwarden.com +carLicense: BGEO95 +departmentNumber: 2485 +employeeType: Normal +homePhone: +1 206 550-1632 +initials: A. G. +mobile: +1 206 515-9469 +pager: +1 206 851-7239 +roomNumber: 9717 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emad Sztein,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emad Sztein +sn: Sztein +description: This is Emad Sztein's description +facsimileTelephoneNumber: +1 804 446-5395 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 951-7352 +title: Master Janitorial Fellow +userPassword: Password1 +uid: SzteinE +givenName: Emad +mail: SzteinE@708a672c33064628b91c3dd2fa37a575.bitwarden.com +carLicense: XJ3HQU +departmentNumber: 7469 +employeeType: Employee +homePhone: +1 804 395-4729 +initials: E. S. +mobile: +1 804 274-1856 +pager: +1 804 254-8863 +roomNumber: 9581 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tam Schlagenhauf +sn: Schlagenhauf +description: This is Tam Schlagenhauf's description +facsimileTelephoneNumber: +1 213 431-9007 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 552-6662 +title: Master Human Resources Visionary +userPassword: Password1 +uid: SchlageT +givenName: Tam +mail: SchlageT@784a879fa47d45e28a6db940d17f13d2.bitwarden.com +carLicense: T6CSII +departmentNumber: 2966 +employeeType: Normal +homePhone: +1 213 190-6405 +initials: T. S. +mobile: +1 213 673-3558 +pager: +1 213 492-3734 +roomNumber: 8185 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marianne Makarenko,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marianne Makarenko +sn: Makarenko +description: This is Marianne Makarenko's description +facsimileTelephoneNumber: +1 804 967-4342 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 310-3400 +title: Supreme Payroll President +userPassword: Password1 +uid: MakarenM +givenName: Marianne +mail: MakarenM@296a8499fb454ab5ab80945b9f63d6db.bitwarden.com +carLicense: OXMPYO +departmentNumber: 1433 +employeeType: Employee +homePhone: +1 804 291-4331 +initials: M. M. +mobile: +1 804 560-3097 +pager: +1 804 166-4306 +roomNumber: 9288 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anda Lytle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anda Lytle +sn: Lytle +description: This is Anda Lytle's description +facsimileTelephoneNumber: +1 510 571-8490 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 574-6337 +title: Supreme Management Architect +userPassword: Password1 +uid: LytleA +givenName: Anda +mail: LytleA@b2ea217e485947069435a94bbac69038.bitwarden.com +carLicense: GOIG78 +departmentNumber: 4043 +employeeType: Employee +homePhone: +1 510 884-1753 +initials: A. L. +mobile: +1 510 241-1020 +pager: +1 510 703-1684 +roomNumber: 8499 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anneliese Hanser,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anneliese Hanser +sn: Hanser +description: This is Anneliese Hanser's description +facsimileTelephoneNumber: +1 804 252-1747 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 804 466-1296 +title: Supreme Product Development Admin +userPassword: Password1 +uid: HanserA +givenName: Anneliese +mail: HanserA@e6469211170045b582fc8ba959023885.bitwarden.com +carLicense: BNV2CY +departmentNumber: 5169 +employeeType: Normal +homePhone: +1 804 714-8056 +initials: A. H. +mobile: +1 804 148-3834 +pager: +1 804 689-8113 +roomNumber: 9050 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Herb Gagnon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herb Gagnon +sn: Gagnon +description: This is Herb Gagnon's description +facsimileTelephoneNumber: +1 206 133-8644 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 103-7815 +title: Junior Peons Stooge +userPassword: Password1 +uid: GagnonH +givenName: Herb +mail: GagnonH@dbfb37190cec481f85ffb172616576b1.bitwarden.com +carLicense: GYY5MY +departmentNumber: 8490 +employeeType: Employee +homePhone: +1 206 792-7885 +initials: H. G. +mobile: +1 206 486-2122 +pager: +1 206 106-4674 +roomNumber: 9244 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Isabella Conroy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isabella Conroy +sn: Conroy +description: This is Isabella Conroy's description +facsimileTelephoneNumber: +1 415 567-6443 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 814-9435 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: ConroyI +givenName: Isabella +mail: ConroyI@bedabc2584d54b45a84df472911e0618.bitwarden.com +carLicense: PBCOI3 +departmentNumber: 1067 +employeeType: Normal +homePhone: +1 415 798-5925 +initials: I. C. +mobile: +1 415 872-2115 +pager: +1 415 717-9868 +roomNumber: 8328 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brandon Menaker,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandon Menaker +sn: Menaker +description: This is Brandon Menaker's description +facsimileTelephoneNumber: +1 206 949-4786 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 275-2500 +title: Associate Janitorial Technician +userPassword: Password1 +uid: MenakerB +givenName: Brandon +mail: MenakerB@f22b1e0b52f04f96b88d6fd9a1b75a51.bitwarden.com +carLicense: PD3U9T +departmentNumber: 1609 +employeeType: Employee +homePhone: +1 206 889-5048 +initials: B. M. +mobile: +1 206 180-5305 +pager: +1 206 576-8813 +roomNumber: 8405 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mame Sanford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mame Sanford +sn: Sanford +description: This is Mame Sanford's description +facsimileTelephoneNumber: +1 408 307-1100 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 835-9391 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: SanfordM +givenName: Mame +mail: SanfordM@1bd9378f4faa43eeb60412b52d7ba309.bitwarden.com +carLicense: 0YIWW5 +departmentNumber: 5769 +employeeType: Employee +homePhone: +1 408 284-9247 +initials: M. S. +mobile: +1 408 953-8618 +pager: +1 408 940-1929 +roomNumber: 8509 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bea Aloi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bea Aloi +sn: Aloi +description: This is Bea Aloi's description +facsimileTelephoneNumber: +1 818 922-5446 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 297-4674 +title: Master Peons Vice President +userPassword: Password1 +uid: AloiB +givenName: Bea +mail: AloiB@634978d04fca41d6af5289220bc42474.bitwarden.com +carLicense: XSK8ND +departmentNumber: 4803 +employeeType: Normal +homePhone: +1 818 874-5397 +initials: B. A. +mobile: +1 818 885-1732 +pager: +1 818 731-9504 +roomNumber: 8720 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sylvia Alink,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sylvia Alink +sn: Alink +description: This is Sylvia Alink's description +facsimileTelephoneNumber: +1 408 121-8978 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 542-2122 +title: Associate Management Architect +userPassword: Password1 +uid: AlinkS +givenName: Sylvia +mail: AlinkS@a788cde9cf67461c89ae1bce3d05e3df.bitwarden.com +carLicense: K1KA6W +departmentNumber: 8197 +employeeType: Normal +homePhone: +1 408 513-7225 +initials: S. A. +mobile: +1 408 191-8154 +pager: +1 408 750-3208 +roomNumber: 8556 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mora McGovern,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mora McGovern +sn: McGovern +description: This is Mora McGovern's description +facsimileTelephoneNumber: +1 510 571-7124 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 414-7011 +title: Junior Human Resources Punk +userPassword: Password1 +uid: McGoverM +givenName: Mora +mail: McGoverM@cf949ad46d1d4454911d4e2468d96da8.bitwarden.com +carLicense: XU2DDD +departmentNumber: 8148 +employeeType: Employee +homePhone: +1 510 840-9557 +initials: M. M. +mobile: +1 510 784-9886 +pager: +1 510 118-4179 +roomNumber: 9287 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tiphani Lieure,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiphani Lieure +sn: Lieure +description: This is Tiphani Lieure's description +facsimileTelephoneNumber: +1 818 618-7213 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 818 295-9297 +title: Associate Administrative Czar +userPassword: Password1 +uid: LieureT +givenName: Tiphani +mail: LieureT@dae020ec31d14d5190cd1eb64ded6424.bitwarden.com +carLicense: M1UXNQ +departmentNumber: 4143 +employeeType: Normal +homePhone: +1 818 106-4741 +initials: T. L. +mobile: +1 818 646-2598 +pager: +1 818 566-7311 +roomNumber: 9447 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Consolata Bejar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Consolata Bejar +sn: Bejar +description: This is Consolata Bejar's description +facsimileTelephoneNumber: +1 213 347-2877 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 237-1984 +title: Chief Peons Warrior +userPassword: Password1 +uid: BejarC +givenName: Consolata +mail: BejarC@b8b19224acee46229ad2985e549b9721.bitwarden.com +carLicense: 0F0QJD +departmentNumber: 9500 +employeeType: Contract +homePhone: +1 213 954-6217 +initials: C. B. +mobile: +1 213 640-7414 +pager: +1 213 300-2229 +roomNumber: 8107 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Winnie Jensenworth,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winnie Jensenworth +sn: Jensenworth +description: This is Winnie Jensenworth's description +facsimileTelephoneNumber: +1 415 517-9142 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 545-2433 +title: Junior Management Technician +userPassword: Password1 +uid: JensenwW +givenName: Winnie +mail: JensenwW@3e500286762446ec8a3697b2944efa12.bitwarden.com +carLicense: B9GSI7 +departmentNumber: 1305 +employeeType: Employee +homePhone: +1 415 931-7838 +initials: W. J. +mobile: +1 415 810-6459 +pager: +1 415 189-4761 +roomNumber: 8947 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcy Zelenka +sn: Zelenka +description: This is Marcy Zelenka's description +facsimileTelephoneNumber: +1 804 243-5046 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 804 238-8148 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: ZelenkaM +givenName: Marcy +mail: ZelenkaM@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com +carLicense: SI7I67 +departmentNumber: 9218 +employeeType: Employee +homePhone: +1 804 207-8249 +initials: M. Z. +mobile: +1 804 800-8124 +pager: +1 804 494-5287 +roomNumber: 9173 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Takashi Lamirande,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Takashi Lamirande +sn: Lamirande +description: This is Takashi Lamirande's description +facsimileTelephoneNumber: +1 408 692-6531 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 372-1431 +title: Associate Product Development Czar +userPassword: Password1 +uid: LamiranT +givenName: Takashi +mail: LamiranT@1ae520db2b4049958bea389114d0192d.bitwarden.com +carLicense: TWY3HK +departmentNumber: 3514 +employeeType: Normal +homePhone: +1 408 643-6046 +initials: T. L. +mobile: +1 408 594-4215 +pager: +1 408 165-9251 +roomNumber: 9603 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiyoon Pape +sn: Pape +description: This is Kiyoon Pape's description +facsimileTelephoneNumber: +1 408 159-2729 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 408 925-8396 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: PapeK +givenName: Kiyoon +mail: PapeK@01c459dd18154d91bb999b9b97f18487.bitwarden.com +carLicense: W571AC +departmentNumber: 7140 +employeeType: Employee +homePhone: +1 408 572-7031 +initials: K. P. +mobile: +1 408 773-1442 +pager: +1 408 938-2409 +roomNumber: 8610 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosamund Serack,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosamund Serack +sn: Serack +description: This is Rosamund Serack's description +facsimileTelephoneNumber: +1 415 108-6717 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 350-6471 +title: Junior Payroll Consultant +userPassword: Password1 +uid: SerackR +givenName: Rosamund +mail: SerackR@bf2f61fe09a540bebb83fd50294209be.bitwarden.com +carLicense: 4PVW9K +departmentNumber: 6295 +employeeType: Employee +homePhone: +1 415 724-3244 +initials: R. S. +mobile: +1 415 290-1438 +pager: +1 415 363-7578 +roomNumber: 9194 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdalena Nagenthiram +sn: Nagenthiram +description: This is Magdalena Nagenthiram's description +facsimileTelephoneNumber: +1 415 584-9052 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 570-5366 +title: Associate Janitorial President +userPassword: Password1 +uid: NagenthM +givenName: Magdalena +mail: NagenthM@43e074754773490d9b66c094be93c694.bitwarden.com +carLicense: XK0MTQ +departmentNumber: 5053 +employeeType: Normal +homePhone: +1 415 552-6346 +initials: M. N. +mobile: +1 415 149-6228 +pager: +1 415 709-4385 +roomNumber: 8025 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Natalee Keitel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natalee Keitel +sn: Keitel +description: This is Natalee Keitel's description +facsimileTelephoneNumber: +1 510 235-9472 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 636-1969 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: KeitelN +givenName: Natalee +mail: KeitelN@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com +carLicense: 5QABYB +departmentNumber: 9713 +employeeType: Normal +homePhone: +1 510 842-8515 +initials: N. K. +mobile: +1 510 609-4037 +pager: +1 510 993-9563 +roomNumber: 8995 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Desiree Conde,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desiree Conde +sn: Conde +description: This is Desiree Conde's description +facsimileTelephoneNumber: +1 818 397-8323 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 866-1530 +title: Chief Peons Consultant +userPassword: Password1 +uid: CondeD +givenName: Desiree +mail: CondeD@76f6104d33de482eb35b100eb7033678.bitwarden.com +carLicense: Q1W7ST +departmentNumber: 7228 +employeeType: Employee +homePhone: +1 818 324-2748 +initials: D. C. +mobile: +1 818 631-6205 +pager: +1 818 386-8966 +roomNumber: 8440 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clyde Kamal,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clyde Kamal +sn: Kamal +description: This is Clyde Kamal's description +facsimileTelephoneNumber: +1 408 572-8562 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 207-4374 +title: Associate Human Resources Figurehead +userPassword: Password1 +uid: KamalC +givenName: Clyde +mail: KamalC@ae9e40f26a5947a6a794749db94a6421.bitwarden.com +carLicense: 86ESHU +departmentNumber: 2214 +employeeType: Normal +homePhone: +1 408 753-1828 +initials: C. K. +mobile: +1 408 284-9675 +pager: +1 408 850-9525 +roomNumber: 9913 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shana Mulvie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shana Mulvie +sn: Mulvie +description: This is Shana Mulvie's description +facsimileTelephoneNumber: +1 415 446-4885 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 698-7215 +title: Master Management Evangelist +userPassword: Password1 +uid: MulvieS +givenName: Shana +mail: MulvieS@a2c9df9a4cd24389b4a0116cc38b3328.bitwarden.com +carLicense: C6KOUS +departmentNumber: 6408 +employeeType: Contract +homePhone: +1 415 855-5751 +initials: S. M. +mobile: +1 415 373-3953 +pager: +1 415 261-9593 +roomNumber: 8838 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=PeyKee Rios,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PeyKee Rios +sn: Rios +description: This is PeyKee Rios's description +facsimileTelephoneNumber: +1 804 189-7688 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 131-5748 +title: Junior Management Visionary +userPassword: Password1 +uid: RiosP +givenName: PeyKee +mail: RiosP@8fd45f1616e84409af12cbcbd209c8d9.bitwarden.com +carLicense: LPRAG7 +departmentNumber: 7986 +employeeType: Employee +homePhone: +1 804 713-8404 +initials: P. R. +mobile: +1 804 459-3762 +pager: +1 804 945-1600 +roomNumber: 8986 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Costas Szabo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Costas Szabo +sn: Szabo +description: This is Costas Szabo's description +facsimileTelephoneNumber: +1 408 310-2051 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 523-2590 +title: Junior Product Development Architect +userPassword: Password1 +uid: SzaboC +givenName: Costas +mail: SzaboC@a6010d4cf59f403c9d7f9d2a99b954e8.bitwarden.com +carLicense: VD9BDI +departmentNumber: 7391 +employeeType: Contract +homePhone: +1 408 416-4524 +initials: C. S. +mobile: +1 408 763-8379 +pager: +1 408 629-8020 +roomNumber: 8991 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilf GaudetMontsion +sn: GaudetMontsion +description: This is Wilf GaudetMontsion's description +facsimileTelephoneNumber: +1 804 497-8779 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 138-5546 +title: Master Human Resources Admin +userPassword: Password1 +uid: GaudetMW +givenName: Wilf +mail: GaudetMW@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com +carLicense: HJR9H5 +departmentNumber: 1591 +employeeType: Employee +homePhone: +1 804 676-7491 +initials: W. G. +mobile: +1 804 711-3758 +pager: +1 804 111-9287 +roomNumber: 8927 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Su Organization,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Su Organization +sn: Organization +description: This is Su Organization's description +facsimileTelephoneNumber: +1 510 364-7646 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 695-2447 +title: Master Management Pinhead +userPassword: Password1 +uid: OrganizS +givenName: Su +mail: OrganizS@85b8d92598e444df802ef3bb350fde3d.bitwarden.com +carLicense: ADT8CR +departmentNumber: 7642 +employeeType: Employee +homePhone: +1 510 966-1049 +initials: S. O. +mobile: +1 510 579-3475 +pager: +1 510 139-9938 +roomNumber: 8545 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bonni Lonnman +sn: Lonnman +description: This is Bonni Lonnman's description +facsimileTelephoneNumber: +1 206 194-8731 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 206 154-2278 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: LonnmanB +givenName: Bonni +mail: LonnmanB@0c57744da3fe41ddac31ce862540bae7.bitwarden.com +carLicense: CJBMFC +departmentNumber: 3837 +employeeType: Employee +homePhone: +1 206 324-8349 +initials: B. L. +mobile: +1 206 871-5536 +pager: +1 206 895-4971 +roomNumber: 8510 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Norean Brien,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norean Brien +sn: Brien +description: This is Norean Brien's description +facsimileTelephoneNumber: +1 818 900-7253 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 176-2098 +title: Associate Administrative Mascot +userPassword: Password1 +uid: BrienN +givenName: Norean +mail: BrienN@6350670014bc4ca5b2d98b891ee95b9e.bitwarden.com +carLicense: O2L80U +departmentNumber: 4432 +employeeType: Employee +homePhone: +1 818 933-8120 +initials: N. B. +mobile: +1 818 695-3009 +pager: +1 818 734-5305 +roomNumber: 8062 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tiena Clapham,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiena Clapham +sn: Clapham +description: This is Tiena Clapham's description +facsimileTelephoneNumber: +1 818 907-1667 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 941-2061 +title: Chief Management Figurehead +userPassword: Password1 +uid: ClaphamT +givenName: Tiena +mail: ClaphamT@519077386b7144648a1af65801ba340e.bitwarden.com +carLicense: 5PGXMG +departmentNumber: 4800 +employeeType: Employee +homePhone: +1 818 299-8561 +initials: T. C. +mobile: +1 818 501-5123 +pager: +1 818 595-8147 +roomNumber: 9815 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oralia Laviolette +sn: Laviolette +description: This is Oralia Laviolette's description +facsimileTelephoneNumber: +1 415 724-7561 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 762-4107 +title: Supreme Janitorial Director +userPassword: Password1 +uid: LavioleO +givenName: Oralia +mail: LavioleO@0bf16d212dca48d58b5ba2e7e2475978.bitwarden.com +carLicense: DIK6FU +departmentNumber: 3058 +employeeType: Contract +homePhone: +1 415 303-8972 +initials: O. L. +mobile: +1 415 622-5890 +pager: +1 415 404-7052 +roomNumber: 8672 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krishnamurthy Melton +sn: Melton +description: This is Krishnamurthy Melton's description +facsimileTelephoneNumber: +1 510 521-2408 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 401-3752 +title: Master Payroll Stooge +userPassword: Password1 +uid: MeltonK +givenName: Krishnamurthy +mail: MeltonK@7bb52bb06b244b41a3cd78dfcc311e5f.bitwarden.com +carLicense: FP0EBP +departmentNumber: 5367 +employeeType: Normal +homePhone: +1 510 243-5247 +initials: K. M. +mobile: +1 510 196-4172 +pager: +1 510 859-3339 +roomNumber: 8950 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gursharan Athwal +sn: Athwal +description: This is Gursharan Athwal's description +facsimileTelephoneNumber: +1 818 179-8611 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 589-7470 +title: Associate Human Resources Visionary +userPassword: Password1 +uid: AthwalG +givenName: Gursharan +mail: AthwalG@5fcb2729c2db4bbc94757b6ad2c7a275.bitwarden.com +carLicense: F07TR8 +departmentNumber: 2927 +employeeType: Normal +homePhone: +1 818 893-8022 +initials: G. A. +mobile: +1 818 147-4181 +pager: +1 818 301-8777 +roomNumber: 9934 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jade Jims,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jade Jims +sn: Jims +description: This is Jade Jims's description +facsimileTelephoneNumber: +1 213 104-3922 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 704-1417 +title: Junior Management Architect +userPassword: Password1 +uid: JimsJ +givenName: Jade +mail: JimsJ@0a6ccfe4eb2e49debe0647e11b1f99cc.bitwarden.com +carLicense: 0PA2W8 +departmentNumber: 8847 +employeeType: Normal +homePhone: +1 213 573-5873 +initials: J. J. +mobile: +1 213 993-1445 +pager: +1 213 184-8000 +roomNumber: 9403 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ramin McKeen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramin McKeen +sn: McKeen +description: This is Ramin McKeen's description +facsimileTelephoneNumber: +1 818 274-1645 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 292-7438 +title: Associate Human Resources Punk +userPassword: Password1 +uid: McKeenR +givenName: Ramin +mail: McKeenR@866f4a15cdb24c75a67bad9f00bdce9e.bitwarden.com +carLicense: 1J82G6 +departmentNumber: 5287 +employeeType: Employee +homePhone: +1 818 775-1010 +initials: R. M. +mobile: +1 818 358-2283 +pager: +1 818 258-2833 +roomNumber: 9927 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Satyajit Bryenton +sn: Bryenton +description: This is Satyajit Bryenton's description +facsimileTelephoneNumber: +1 408 117-5039 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 537-3971 +title: Supreme Human Resources Architect +userPassword: Password1 +uid: BryentoS +givenName: Satyajit +mail: BryentoS@25cd954a684b4b73a5dc6672df8e79ee.bitwarden.com +carLicense: 9VRBUN +departmentNumber: 3350 +employeeType: Normal +homePhone: +1 408 962-8416 +initials: S. B. +mobile: +1 408 785-3376 +pager: +1 408 553-1191 +roomNumber: 8809 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quintilla Schirtzinger +sn: Schirtzinger +description: This is Quintilla Schirtzinger's description +facsimileTelephoneNumber: +1 804 108-6995 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 351-6738 +title: Supreme Management Admin +userPassword: Password1 +uid: SchirtzQ +givenName: Quintilla +mail: SchirtzQ@3703481ba2f54b52ba43477946921782.bitwarden.com +carLicense: T6X117 +departmentNumber: 4587 +employeeType: Contract +homePhone: +1 804 976-5293 +initials: Q. S. +mobile: +1 804 126-1125 +pager: +1 804 139-1272 +roomNumber: 8048 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Steffie Bohn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steffie Bohn +sn: Bohn +description: This is Steffie Bohn's description +facsimileTelephoneNumber: +1 206 487-7797 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 751-3251 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: BohnS +givenName: Steffie +mail: BohnS@50c897b07621433593f9bdfb9cb664c4.bitwarden.com +carLicense: DPI0YJ +departmentNumber: 8128 +employeeType: Normal +homePhone: +1 206 321-1757 +initials: S. B. +mobile: +1 206 925-5138 +pager: +1 206 178-4622 +roomNumber: 8174 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rachael DuBois,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rachael DuBois +sn: DuBois +description: This is Rachael DuBois's description +facsimileTelephoneNumber: +1 408 917-7354 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 130-1489 +title: Associate Payroll Writer +userPassword: Password1 +uid: DuBoisR +givenName: Rachael +mail: DuBoisR@d5e1ce2fb74a43bfad3a9a3884b1f907.bitwarden.com +carLicense: 0V3FDP +departmentNumber: 3177 +employeeType: Employee +homePhone: +1 408 381-4207 +initials: R. D. +mobile: +1 408 810-7346 +pager: +1 408 617-7438 +roomNumber: 8643 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kore Mayhugh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kore Mayhugh +sn: Mayhugh +description: This is Kore Mayhugh's description +facsimileTelephoneNumber: +1 415 640-2418 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 702-9860 +title: Master Product Development Engineer +userPassword: Password1 +uid: MayhughK +givenName: Kore +mail: MayhughK@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com +carLicense: YG3E2Q +departmentNumber: 1681 +employeeType: Contract +homePhone: +1 415 507-6956 +initials: K. M. +mobile: +1 415 421-5223 +pager: +1 415 475-9439 +roomNumber: 9346 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eleen Moledina,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eleen Moledina +sn: Moledina +description: This is Eleen Moledina's description +facsimileTelephoneNumber: +1 818 387-7728 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 641-3066 +title: Chief Administrative Stooge +userPassword: Password1 +uid: MoledinE +givenName: Eleen +mail: MoledinE@4bba23a995da4ee98c2c53bd5fa682de.bitwarden.com +carLicense: JBXFCG +departmentNumber: 3762 +employeeType: Contract +homePhone: +1 818 496-2287 +initials: E. M. +mobile: +1 818 368-3856 +pager: +1 818 161-7262 +roomNumber: 8837 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kaminsky Meany,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaminsky Meany +sn: Meany +description: This is Kaminsky Meany's description +facsimileTelephoneNumber: +1 408 177-5412 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 935-2430 +title: Supreme Product Development Visionary +userPassword: Password1 +uid: MeanyK +givenName: Kaminsky +mail: MeanyK@7aef78da99704981a62a4bf14dcfd6be.bitwarden.com +carLicense: S8O3I9 +departmentNumber: 3114 +employeeType: Employee +homePhone: +1 408 260-4915 +initials: K. M. +mobile: +1 408 179-4546 +pager: +1 408 852-6050 +roomNumber: 8948 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermione Adminmtv +sn: Adminmtv +description: This is Hermione Adminmtv's description +facsimileTelephoneNumber: +1 213 616-2661 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 213 467-7380 +title: Associate Product Development Dictator +userPassword: Password1 +uid: AdminmtH +givenName: Hermione +mail: AdminmtH@087a871812bc441ea91b6630e3a79d9d.bitwarden.com +carLicense: 4JEPUK +departmentNumber: 9636 +employeeType: Normal +homePhone: +1 213 921-8257 +initials: H. A. +mobile: +1 213 530-3168 +pager: +1 213 230-9831 +roomNumber: 9271 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pammi Overton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pammi Overton +sn: Overton +description: This is Pammi Overton's description +facsimileTelephoneNumber: +1 408 290-4288 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 756-7863 +title: Junior Human Resources Artist +userPassword: Password1 +uid: OvertonP +givenName: Pammi +mail: OvertonP@7f63e51441fc4e1aab1257e0bb185e66.bitwarden.com +carLicense: XIO3TE +departmentNumber: 2536 +employeeType: Contract +homePhone: +1 408 550-3736 +initials: P. O. +mobile: +1 408 108-5457 +pager: +1 408 957-1692 +roomNumber: 9388 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sinh Abbott,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sinh Abbott +sn: Abbott +description: This is Sinh Abbott's description +facsimileTelephoneNumber: +1 818 739-8655 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 240-5514 +title: Junior Peons Sales Rep +userPassword: Password1 +uid: AbbottS +givenName: Sinh +mail: AbbottS@27847b451a7948ddad5e776a210cd769.bitwarden.com +carLicense: J3NX5L +departmentNumber: 6044 +employeeType: Employee +homePhone: +1 818 539-8928 +initials: S. A. +mobile: +1 818 950-3884 +pager: +1 818 100-8683 +roomNumber: 8100 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=LouAnn Gaines,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LouAnn Gaines +sn: Gaines +description: This is LouAnn Gaines's description +facsimileTelephoneNumber: +1 415 506-5108 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 802-8531 +title: Master Product Development Manager +userPassword: Password1 +uid: GainesL +givenName: LouAnn +mail: GainesL@10343387398a4a139abd0771818be0c8.bitwarden.com +carLicense: E2QLTB +departmentNumber: 9396 +employeeType: Contract +homePhone: +1 415 947-2937 +initials: L. G. +mobile: +1 415 617-8851 +pager: +1 415 799-9067 +roomNumber: 8825 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Arabella Shamblin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arabella Shamblin +sn: Shamblin +description: This is Arabella Shamblin's description +facsimileTelephoneNumber: +1 415 231-2024 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 240-8278 +title: Associate Administrative Warrior +userPassword: Password1 +uid: ShambliA +givenName: Arabella +mail: ShambliA@6fd2244f1eb4433c9c4032eadff24678.bitwarden.com +carLicense: IC2X5P +departmentNumber: 8514 +employeeType: Employee +homePhone: +1 415 837-8106 +initials: A. S. +mobile: +1 415 375-3043 +pager: +1 415 328-5127 +roomNumber: 9754 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonard McFarlane +sn: McFarlane +description: This is Leonard McFarlane's description +facsimileTelephoneNumber: +1 510 740-7208 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 290-4993 +title: Supreme Product Testing Dictator +userPassword: Password1 +uid: McFarlaL +givenName: Leonard +mail: McFarlaL@b5110eee63164b03a1156fbe465ff053.bitwarden.com +carLicense: 8VMYCA +departmentNumber: 1489 +employeeType: Contract +homePhone: +1 510 815-1173 +initials: L. M. +mobile: +1 510 966-3141 +pager: +1 510 471-8893 +roomNumber: 9416 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cammie Erbach,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cammie Erbach +sn: Erbach +description: This is Cammie Erbach's description +facsimileTelephoneNumber: +1 804 501-3676 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 856-9064 +title: Master Management Czar +userPassword: Password1 +uid: ErbachC +givenName: Cammie +mail: ErbachC@703805ed33844be785223bfd3a5cb030.bitwarden.com +carLicense: H0YDAD +departmentNumber: 8052 +employeeType: Contract +homePhone: +1 804 598-9599 +initials: C. E. +mobile: +1 804 627-4197 +pager: +1 804 189-8931 +roomNumber: 9922 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eugenia LeCouteur +sn: LeCouteur +description: This is Eugenia LeCouteur's description +facsimileTelephoneNumber: +1 818 637-5328 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 172-6557 +title: Chief Peons Vice President +userPassword: Password1 +uid: LeCouteE +givenName: Eugenia +mail: LeCouteE@86d24a798dce4653a3b75c56ae675864.bitwarden.com +carLicense: J1WK3B +departmentNumber: 5127 +employeeType: Employee +homePhone: +1 818 795-9610 +initials: E. L. +mobile: +1 818 577-1636 +pager: +1 818 241-3360 +roomNumber: 9336 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dayton Baughan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dayton Baughan +sn: Baughan +description: This is Dayton Baughan's description +facsimileTelephoneNumber: +1 510 537-4508 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 560-1408 +title: Master Peons Consultant +userPassword: Password1 +uid: BaughanD +givenName: Dayton +mail: BaughanD@518638c8b3ee480098591bd6806de72a.bitwarden.com +carLicense: IJUUAH +departmentNumber: 3727 +employeeType: Contract +homePhone: +1 510 678-3389 +initials: D. B. +mobile: +1 510 221-3607 +pager: +1 510 467-2069 +roomNumber: 8944 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Meggi Rozier,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meggi Rozier +sn: Rozier +description: This is Meggi Rozier's description +facsimileTelephoneNumber: +1 408 796-3243 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 408 186-3962 +title: Associate Product Testing Stooge +userPassword: Password1 +uid: RozierM +givenName: Meggi +mail: RozierM@dfaff98f73b34c5995272b067ac045a0.bitwarden.com +carLicense: 0E32K6 +departmentNumber: 5120 +employeeType: Normal +homePhone: +1 408 643-3703 +initials: M. R. +mobile: +1 408 446-8175 +pager: +1 408 551-3178 +roomNumber: 8552 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Romulus Zuk,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Romulus Zuk +sn: Zuk +description: This is Romulus Zuk's description +facsimileTelephoneNumber: +1 213 312-1641 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 726-1010 +title: Master Human Resources Consultant +userPassword: Password1 +uid: ZukR +givenName: Romulus +mail: ZukR@e3f89583f77e4884a1d8183b4faa15a7.bitwarden.com +carLicense: JGS8GH +departmentNumber: 1643 +employeeType: Contract +homePhone: +1 213 435-8486 +initials: R. Z. +mobile: +1 213 697-9459 +pager: +1 213 944-6140 +roomNumber: 8442 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marce Tiller,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marce Tiller +sn: Tiller +description: This is Marce Tiller's description +facsimileTelephoneNumber: +1 408 448-4330 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 364-1325 +title: Associate Payroll President +userPassword: Password1 +uid: TillerM +givenName: Marce +mail: TillerM@92160f75073741b5a487392a12009a3d.bitwarden.com +carLicense: RD9JQ7 +departmentNumber: 6855 +employeeType: Normal +homePhone: +1 408 206-1878 +initials: M. T. +mobile: +1 408 905-4166 +pager: +1 408 724-1598 +roomNumber: 9888 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oryal Eveleigh +sn: Eveleigh +description: This is Oryal Eveleigh's description +facsimileTelephoneNumber: +1 818 351-8294 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 208-5609 +title: Supreme Payroll Stooge +userPassword: Password1 +uid: EveleigO +givenName: Oryal +mail: EveleigO@fa687144921b436e82405266f480b00e.bitwarden.com +carLicense: EA3G44 +departmentNumber: 8695 +employeeType: Normal +homePhone: +1 818 952-3755 +initials: O. E. +mobile: +1 818 240-5739 +pager: +1 818 198-5212 +roomNumber: 9744 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Patt Brennand,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patt Brennand +sn: Brennand +description: This is Patt Brennand's description +facsimileTelephoneNumber: +1 415 310-3615 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 922-6264 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: BrennanP +givenName: Patt +mail: BrennanP@c41f8f7aea354718b6ea3277359c3684.bitwarden.com +carLicense: 52HYN9 +departmentNumber: 5487 +employeeType: Employee +homePhone: +1 415 638-2025 +initials: P. B. +mobile: +1 415 233-7509 +pager: +1 415 544-1435 +roomNumber: 9712 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fanchon Noujeim +sn: Noujeim +description: This is Fanchon Noujeim's description +facsimileTelephoneNumber: +1 415 823-9766 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 592-1017 +title: Supreme Product Testing Visionary +userPassword: Password1 +uid: NoujeimF +givenName: Fanchon +mail: NoujeimF@f1c1878671bd497c916d8d6aa3e192fd.bitwarden.com +carLicense: 7NFP2D +departmentNumber: 5735 +employeeType: Normal +homePhone: +1 415 777-4102 +initials: F. N. +mobile: +1 415 704-9584 +pager: +1 415 894-9036 +roomNumber: 8823 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Claus Depew,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claus Depew +sn: Depew +description: This is Claus Depew's description +facsimileTelephoneNumber: +1 408 561-8473 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 408 535-5939 +title: Master Janitorial Assistant +userPassword: Password1 +uid: DepewC +givenName: Claus +mail: DepewC@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com +carLicense: 9E9V1S +departmentNumber: 5956 +employeeType: Contract +homePhone: +1 408 161-3024 +initials: C. D. +mobile: +1 408 399-9444 +pager: +1 408 308-8946 +roomNumber: 9932 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vahe Kerwin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vahe Kerwin +sn: Kerwin +description: This is Vahe Kerwin's description +facsimileTelephoneNumber: +1 510 878-4238 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 376-8305 +title: Junior Peons Technician +userPassword: Password1 +uid: KerwinV +givenName: Vahe +mail: KerwinV@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com +carLicense: XEANRO +departmentNumber: 1510 +employeeType: Normal +homePhone: +1 510 217-4152 +initials: V. K. +mobile: +1 510 374-7142 +pager: +1 510 710-7720 +roomNumber: 8942 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pauletta Crocker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pauletta Crocker +sn: Crocker +description: This is Pauletta Crocker's description +facsimileTelephoneNumber: +1 206 730-2148 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 738-3732 +title: Supreme Peons Fellow +userPassword: Password1 +uid: CrockerP +givenName: Pauletta +mail: CrockerP@cd73f05f4ce24da39ba208c39afe4699.bitwarden.com +carLicense: QCGMKX +departmentNumber: 6940 +employeeType: Normal +homePhone: +1 206 433-6820 +initials: P. C. +mobile: +1 206 266-6538 +pager: +1 206 927-8403 +roomNumber: 8168 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rusty Zaretsky +sn: Zaretsky +description: This is Rusty Zaretsky's description +facsimileTelephoneNumber: +1 206 474-6158 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 372-1450 +title: Supreme Administrative Admin +userPassword: Password1 +uid: ZaretskR +givenName: Rusty +mail: ZaretskR@29091675735e43659fad673363e0d6e8.bitwarden.com +carLicense: Q4IH66 +departmentNumber: 8803 +employeeType: Contract +homePhone: +1 206 810-4684 +initials: R. Z. +mobile: +1 206 203-5095 +pager: +1 206 982-9568 +roomNumber: 9789 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sterling Shostak,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sterling Shostak +sn: Shostak +description: This is Sterling Shostak's description +facsimileTelephoneNumber: +1 804 957-3057 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 803-2466 +title: Master Payroll Visionary +userPassword: Password1 +uid: ShostakS +givenName: Sterling +mail: ShostakS@5e804d1ca9ae4836a819c9a675bca682.bitwarden.com +carLicense: LKFPPL +departmentNumber: 3937 +employeeType: Normal +homePhone: +1 804 670-4481 +initials: S. S. +mobile: +1 804 203-8826 +pager: +1 804 540-2259 +roomNumber: 8608 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kartik Rogge,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kartik Rogge +sn: Rogge +description: This is Kartik Rogge's description +facsimileTelephoneNumber: +1 206 899-8270 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 206 663-9402 +title: Associate Product Development Pinhead +userPassword: Password1 +uid: RoggeK +givenName: Kartik +mail: RoggeK@ed2fd27c6a094387b519147346c69de2.bitwarden.com +carLicense: GC2R3Q +departmentNumber: 6996 +employeeType: Contract +homePhone: +1 206 649-8271 +initials: K. R. +mobile: +1 206 801-5602 +pager: +1 206 617-4947 +roomNumber: 9447 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shutterbug Decleir +sn: Decleir +description: This is Shutterbug Decleir's description +facsimileTelephoneNumber: +1 408 673-6094 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 260-7891 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: DecleirS +givenName: Shutterbug +mail: DecleirS@e960715ae7d94ea9beaf0d6200cce087.bitwarden.com +carLicense: 20QM1O +departmentNumber: 3372 +employeeType: Contract +homePhone: +1 408 512-6493 +initials: S. D. +mobile: +1 408 985-1774 +pager: +1 408 732-1255 +roomNumber: 9843 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fei Reich,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fei Reich +sn: Reich +description: This is Fei Reich's description +facsimileTelephoneNumber: +1 510 227-5502 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 326-5560 +title: Supreme Payroll Architect +userPassword: Password1 +uid: ReichF +givenName: Fei +mail: ReichF@1df73cc203344a569c1b4737122f78a2.bitwarden.com +carLicense: CP1356 +departmentNumber: 1405 +employeeType: Normal +homePhone: +1 510 433-9991 +initials: F. R. +mobile: +1 510 958-3917 +pager: +1 510 873-7906 +roomNumber: 9990 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leyla Etten,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leyla Etten +sn: Etten +description: This is Leyla Etten's description +facsimileTelephoneNumber: +1 408 713-7757 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 408 305-8350 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: EttenL +givenName: Leyla +mail: EttenL@c57373b0d5374d00a3d6688cc686509b.bitwarden.com +carLicense: 52K2V4 +departmentNumber: 4138 +employeeType: Contract +homePhone: +1 408 522-1661 +initials: L. E. +mobile: +1 408 555-3001 +pager: +1 408 404-7229 +roomNumber: 9810 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sattar Sergent,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sattar Sergent +sn: Sergent +description: This is Sattar Sergent's description +facsimileTelephoneNumber: +1 804 769-8979 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 972-2539 +title: Junior Product Development Dictator +userPassword: Password1 +uid: SergentS +givenName: Sattar +mail: SergentS@d44f5cb4445645618f46dbaf398e001b.bitwarden.com +carLicense: MBJDPT +departmentNumber: 2330 +employeeType: Contract +homePhone: +1 804 467-7995 +initials: S. S. +mobile: +1 804 179-9454 +pager: +1 804 825-3042 +roomNumber: 8160 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kare Hochberger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kare Hochberger +sn: Hochberger +description: This is Kare Hochberger's description +facsimileTelephoneNumber: +1 408 665-4927 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 584-2717 +title: Junior Human Resources Stooge +userPassword: Password1 +uid: HochberK +givenName: Kare +mail: HochberK@9bffc8dac39c4d7a8d074f9c52e78d4e.bitwarden.com +carLicense: 5FF9FD +departmentNumber: 8458 +employeeType: Contract +homePhone: +1 408 677-4580 +initials: K. H. +mobile: +1 408 392-8736 +pager: +1 408 547-8346 +roomNumber: 9253 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lilly Kuykendall,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilly Kuykendall +sn: Kuykendall +description: This is Lilly Kuykendall's description +facsimileTelephoneNumber: +1 804 106-8290 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 903-1992 +title: Master Management Fellow +userPassword: Password1 +uid: KuykendL +givenName: Lilly +mail: KuykendL@ed036fc76d5d414c9c14953da4ed7bc3.bitwarden.com +carLicense: X67VG4 +departmentNumber: 6914 +employeeType: Contract +homePhone: +1 804 304-1463 +initials: L. K. +mobile: +1 804 885-2062 +pager: +1 804 256-1680 +roomNumber: 8376 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rachele Fullum,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rachele Fullum +sn: Fullum +description: This is Rachele Fullum's description +facsimileTelephoneNumber: +1 213 459-4232 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 901-2958 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: FullumR +givenName: Rachele +mail: FullumR@5d439b9e1cae4e6b90829e7c5b63fe41.bitwarden.com +carLicense: 3YVRB0 +departmentNumber: 5339 +employeeType: Employee +homePhone: +1 213 112-8895 +initials: R. F. +mobile: +1 213 693-2075 +pager: +1 213 588-3970 +roomNumber: 8672 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Madella Forslund,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madella Forslund +sn: Forslund +description: This is Madella Forslund's description +facsimileTelephoneNumber: +1 408 905-9574 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 626-4140 +title: Master Product Development Admin +userPassword: Password1 +uid: ForslunM +givenName: Madella +mail: ForslunM@fc156685829a4314bfd89bdd05aebbdf.bitwarden.com +carLicense: 4709TF +departmentNumber: 4454 +employeeType: Employee +homePhone: +1 408 348-2750 +initials: M. F. +mobile: +1 408 358-5368 +pager: +1 408 538-8917 +roomNumber: 8478 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sissela Nahabedian +sn: Nahabedian +description: This is Sissela Nahabedian's description +facsimileTelephoneNumber: +1 213 225-8866 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 796-4641 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: NahabedS +givenName: Sissela +mail: NahabedS@a8f7a07ce7504ae4bfde0cfae682a40b.bitwarden.com +carLicense: 4VVVNF +departmentNumber: 9492 +employeeType: Normal +homePhone: +1 213 994-3402 +initials: S. N. +mobile: +1 213 106-3613 +pager: +1 213 191-4447 +roomNumber: 9488 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Janio Fussell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janio Fussell +sn: Fussell +description: This is Janio Fussell's description +facsimileTelephoneNumber: +1 415 183-2520 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 325-9330 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: FussellJ +givenName: Janio +mail: FussellJ@203f595734f14fd4a19d2bdd33a37227.bitwarden.com +carLicense: 6CKCKW +departmentNumber: 7207 +employeeType: Normal +homePhone: +1 415 888-8034 +initials: J. F. +mobile: +1 415 185-6785 +pager: +1 415 313-5897 +roomNumber: 8805 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lacy Carr,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lacy Carr +sn: Carr +description: This is Lacy Carr's description +facsimileTelephoneNumber: +1 510 763-7605 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 237-3432 +title: Master Payroll Czar +userPassword: Password1 +uid: CarrL +givenName: Lacy +mail: CarrL@a4017bf573f740adae75dd44a602bed4.bitwarden.com +carLicense: 2WNFR1 +departmentNumber: 2824 +employeeType: Normal +homePhone: +1 510 595-3152 +initials: L. C. +mobile: +1 510 891-7881 +pager: +1 510 433-3626 +roomNumber: 9585 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Erinna Odden,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erinna Odden +sn: Odden +description: This is Erinna Odden's description +facsimileTelephoneNumber: +1 415 375-8179 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 676-3072 +title: Junior Peons Assistant +userPassword: Password1 +uid: OddenE +givenName: Erinna +mail: OddenE@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com +carLicense: RH03UF +departmentNumber: 5483 +employeeType: Employee +homePhone: +1 415 457-4831 +initials: E. O. +mobile: +1 415 739-6218 +pager: +1 415 164-2271 +roomNumber: 9678 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bertrand Devgon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bertrand Devgon +sn: Devgon +description: This is Bertrand Devgon's description +facsimileTelephoneNumber: +1 213 385-3559 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 284-2149 +title: Associate Administrative Artist +userPassword: Password1 +uid: DevgonB +givenName: Bertrand +mail: DevgonB@802b05236c97484db9a6d34278cbb7c2.bitwarden.com +carLicense: ET32E8 +departmentNumber: 1093 +employeeType: Normal +homePhone: +1 213 798-4276 +initials: B. D. +mobile: +1 213 800-9910 +pager: +1 213 932-7141 +roomNumber: 9153 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ahmet Achille,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ahmet Achille +sn: Achille +description: This is Ahmet Achille's description +facsimileTelephoneNumber: +1 213 568-2047 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 213 203-4295 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: AchilleA +givenName: Ahmet +mail: AchilleA@ad4fa0aaba714bddbb75e4f5cdfd0a13.bitwarden.com +carLicense: RF7D3K +departmentNumber: 3888 +employeeType: Contract +homePhone: +1 213 356-6555 +initials: A. A. +mobile: +1 213 974-1683 +pager: +1 213 728-5421 +roomNumber: 8227 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Heike Jenner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heike Jenner +sn: Jenner +description: This is Heike Jenner's description +facsimileTelephoneNumber: +1 213 555-8977 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 213 643-8508 +title: Supreme Human Resources Architect +userPassword: Password1 +uid: JennerH +givenName: Heike +mail: JennerH@a58e2e7328b140e6b9088aee54dad46e.bitwarden.com +carLicense: 0HILXG +departmentNumber: 5237 +employeeType: Employee +homePhone: +1 213 224-4757 +initials: H. J. +mobile: +1 213 355-2579 +pager: +1 213 453-1330 +roomNumber: 9127 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lynde Staats,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynde Staats +sn: Staats +description: This is Lynde Staats's description +facsimileTelephoneNumber: +1 510 755-3177 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 120-1124 +title: Supreme Janitorial Technician +userPassword: Password1 +uid: StaatsL +givenName: Lynde +mail: StaatsL@5ed725aaaff54f8794312c34ad60e5f2.bitwarden.com +carLicense: FV75MU +departmentNumber: 4989 +employeeType: Normal +homePhone: +1 510 230-1317 +initials: L. S. +mobile: +1 510 210-5187 +pager: +1 510 314-1711 +roomNumber: 8756 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Estele Kolappa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estele Kolappa +sn: Kolappa +description: This is Estele Kolappa's description +facsimileTelephoneNumber: +1 213 902-1312 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 600-9253 +title: Master Payroll Dictator +userPassword: Password1 +uid: KolappaE +givenName: Estele +mail: KolappaE@0565c5e96dfc4577b9a5d67dbae6882a.bitwarden.com +carLicense: CV44QE +departmentNumber: 8561 +employeeType: Normal +homePhone: +1 213 642-8345 +initials: E. K. +mobile: +1 213 495-5086 +pager: +1 213 412-8887 +roomNumber: 8973 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Oriana Hughes,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oriana Hughes +sn: Hughes +description: This is Oriana Hughes's description +facsimileTelephoneNumber: +1 206 153-6874 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 728-9708 +title: Associate Janitorial Warrior +userPassword: Password1 +uid: HughesO +givenName: Oriana +mail: HughesO@e2397feadabe41139e01dea5a3231c3b.bitwarden.com +carLicense: C3K8QM +departmentNumber: 3679 +employeeType: Contract +homePhone: +1 206 146-1954 +initials: O. H. +mobile: +1 206 183-5601 +pager: +1 206 238-1219 +roomNumber: 8964 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lucila Rand,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucila Rand +sn: Rand +description: This is Lucila Rand's description +facsimileTelephoneNumber: +1 408 335-8103 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 177-7503 +title: Chief Payroll Engineer +userPassword: Password1 +uid: RandL +givenName: Lucila +mail: RandL@dccd68e9261a427bb9a86d2b2c52f7a3.bitwarden.com +carLicense: 59IEHI +departmentNumber: 3218 +employeeType: Contract +homePhone: +1 408 588-2845 +initials: L. R. +mobile: +1 408 110-7324 +pager: +1 408 533-8637 +roomNumber: 8792 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emile Bellis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emile Bellis +sn: Bellis +description: This is Emile Bellis's description +facsimileTelephoneNumber: +1 206 359-9930 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 544-4586 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: BellisE +givenName: Emile +mail: BellisE@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com +carLicense: CWLD5O +departmentNumber: 8755 +employeeType: Contract +homePhone: +1 206 214-5571 +initials: E. B. +mobile: +1 206 692-3317 +pager: +1 206 475-8721 +roomNumber: 9546 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=LouisPhilippe Hann,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LouisPhilippe Hann +sn: Hann +description: This is LouisPhilippe Hann's description +facsimileTelephoneNumber: +1 510 691-3604 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 855-2837 +title: Associate Management Czar +userPassword: Password1 +uid: HannL +givenName: LouisPhilippe +mail: HannL@9b8cc74fde31459a93e65b46f65c8533.bitwarden.com +carLicense: AA3OW4 +departmentNumber: 3784 +employeeType: Contract +homePhone: +1 510 497-3950 +initials: L. H. +mobile: +1 510 376-3915 +pager: +1 510 827-1440 +roomNumber: 9769 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Franka Frey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franka Frey +sn: Frey +description: This is Franka Frey's description +facsimileTelephoneNumber: +1 415 431-7629 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 885-3743 +title: Associate Administrative Architect +userPassword: Password1 +uid: FreyF +givenName: Franka +mail: FreyF@5319f4b5e8194323b5cce9067279026f.bitwarden.com +carLicense: EO9CFB +departmentNumber: 7558 +employeeType: Employee +homePhone: +1 415 646-7633 +initials: F. F. +mobile: +1 415 438-8520 +pager: +1 415 222-7831 +roomNumber: 9031 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jillian Unger,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jillian Unger +sn: Unger +description: This is Jillian Unger's description +facsimileTelephoneNumber: +1 415 896-8714 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 414-3254 +title: Master Product Testing Writer +userPassword: Password1 +uid: UngerJ +givenName: Jillian +mail: UngerJ@8f055851cf2e446194b128d0faf47339.bitwarden.com +carLicense: PC90PK +departmentNumber: 6537 +employeeType: Employee +homePhone: +1 415 199-7259 +initials: J. U. +mobile: +1 415 981-8564 +pager: +1 415 501-7591 +roomNumber: 9925 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mathilda Diederichs,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mathilda Diederichs +sn: Diederichs +description: This is Mathilda Diederichs's description +facsimileTelephoneNumber: +1 206 852-5406 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 511-2217 +title: Supreme Management President +userPassword: Password1 +uid: DiederiM +givenName: Mathilda +mail: DiederiM@ceea5b3f3fff489eb3469f368fd35271.bitwarden.com +carLicense: J85TXV +departmentNumber: 9653 +employeeType: Normal +homePhone: +1 206 944-1040 +initials: M. D. +mobile: +1 206 920-5229 +pager: +1 206 141-3334 +roomNumber: 9375 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Susanna Vlahos,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susanna Vlahos +sn: Vlahos +description: This is Susanna Vlahos's description +facsimileTelephoneNumber: +1 206 333-7933 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 206 634-5374 +title: Associate Product Development Assistant +userPassword: Password1 +uid: VlahosS +givenName: Susanna +mail: VlahosS@8a8d1631964049f182939e971c150026.bitwarden.com +carLicense: LIV0N0 +departmentNumber: 6650 +employeeType: Employee +homePhone: +1 206 183-5485 +initials: S. V. +mobile: +1 206 655-7936 +pager: +1 206 128-6945 +roomNumber: 8209 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermina Abbatantuono +sn: Abbatantuono +description: This is Hermina Abbatantuono's description +facsimileTelephoneNumber: +1 408 673-2448 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 723-3847 +title: Associate Administrative Writer +userPassword: Password1 +uid: AbbatanH +givenName: Hermina +mail: AbbatanH@5ecc6915b8f34c488bb751101ec4f57f.bitwarden.com +carLicense: C4NHFX +departmentNumber: 4669 +employeeType: Employee +homePhone: +1 408 400-9708 +initials: H. A. +mobile: +1 408 885-8066 +pager: +1 408 789-6880 +roomNumber: 9671 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aila Henninger,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aila Henninger +sn: Henninger +description: This is Aila Henninger's description +facsimileTelephoneNumber: +1 804 600-9175 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 804 267-2322 +title: Associate Product Testing Madonna +userPassword: Password1 +uid: HenningA +givenName: Aila +mail: HenningA@9f0054716a414ce084f33e268195dbbd.bitwarden.com +carLicense: VCAMR9 +departmentNumber: 3751 +employeeType: Contract +homePhone: +1 804 537-8365 +initials: A. H. +mobile: +1 804 367-5950 +pager: +1 804 697-9480 +roomNumber: 8404 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bettye Guth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettye Guth +sn: Guth +description: This is Bettye Guth's description +facsimileTelephoneNumber: +1 415 653-1836 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 877-1684 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: GuthB +givenName: Bettye +mail: GuthB@36d678241c3f4fb4beaa7d9336f3b523.bitwarden.com +carLicense: C9335H +departmentNumber: 9549 +employeeType: Employee +homePhone: +1 415 370-6478 +initials: B. G. +mobile: +1 415 726-5916 +pager: +1 415 144-9952 +roomNumber: 9373 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Livvie Benwell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Livvie Benwell +sn: Benwell +description: This is Livvie Benwell's description +facsimileTelephoneNumber: +1 206 642-5147 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 161-6244 +title: Supreme Peons Technician +userPassword: Password1 +uid: BenwellL +givenName: Livvie +mail: BenwellL@c65f075234ae4ca0ba28441c293a5096.bitwarden.com +carLicense: BU8NQW +departmentNumber: 6168 +employeeType: Normal +homePhone: +1 206 226-7122 +initials: L. B. +mobile: +1 206 249-3013 +pager: +1 206 468-6553 +roomNumber: 8253 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pierette Gonsalves +sn: Gonsalves +description: This is Pierette Gonsalves's description +facsimileTelephoneNumber: +1 804 697-2441 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 982-4564 +title: Chief Administrative Warrior +userPassword: Password1 +uid: GonsalvP +givenName: Pierette +mail: GonsalvP@6c6664d2385d43519ebb52ff761aba92.bitwarden.com +carLicense: 149446 +departmentNumber: 7630 +employeeType: Contract +homePhone: +1 804 303-8210 +initials: P. G. +mobile: +1 804 877-9959 +pager: +1 804 380-3908 +roomNumber: 8917 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Melek Nagendra,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melek Nagendra +sn: Nagendra +description: This is Melek Nagendra's description +facsimileTelephoneNumber: +1 213 698-7156 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 484-8094 +title: Junior Janitorial Mascot +userPassword: Password1 +uid: NagendrM +givenName: Melek +mail: NagendrM@7a1816127b6749e79a6ce3a8a34ebdb5.bitwarden.com +carLicense: JTVEHO +departmentNumber: 6240 +employeeType: Employee +homePhone: +1 213 941-2996 +initials: M. N. +mobile: +1 213 424-4653 +pager: +1 213 916-7357 +roomNumber: 8940 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gretel McCorquodale +sn: McCorquodale +description: This is Gretel McCorquodale's description +facsimileTelephoneNumber: +1 415 898-3371 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 954-2695 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: McCorquG +givenName: Gretel +mail: McCorquG@9c4f9eaf4eea42848e2ed65a10014c07.bitwarden.com +carLicense: JJ2DNB +departmentNumber: 6636 +employeeType: Contract +homePhone: +1 415 493-3752 +initials: G. M. +mobile: +1 415 155-7819 +pager: +1 415 669-4978 +roomNumber: 8254 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lesli Tobias,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lesli Tobias +sn: Tobias +description: This is Lesli Tobias's description +facsimileTelephoneNumber: +1 510 117-3310 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 794-8831 +title: Junior Human Resources Architect +userPassword: Password1 +uid: TobiasL +givenName: Lesli +mail: TobiasL@d90d5ffcbe644d5f8785140dc4df2905.bitwarden.com +carLicense: 7S89KQ +departmentNumber: 6227 +employeeType: Employee +homePhone: +1 510 199-7737 +initials: L. T. +mobile: +1 510 384-4099 +pager: +1 510 524-7236 +roomNumber: 9838 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Greta Schecter,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greta Schecter +sn: Schecter +description: This is Greta Schecter's description +facsimileTelephoneNumber: +1 213 816-3025 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 273-1239 +title: Supreme Management Engineer +userPassword: Password1 +uid: SchecteG +givenName: Greta +mail: SchecteG@75a7fc9d939e4f5bbf93de65e9cc63e4.bitwarden.com +carLicense: GRQPQF +departmentNumber: 8004 +employeeType: Contract +homePhone: +1 213 366-6879 +initials: G. S. +mobile: +1 213 458-9138 +pager: +1 213 714-8827 +roomNumber: 8129 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphne Brodfuehrer +sn: Brodfuehrer +description: This is Daphne Brodfuehrer's description +facsimileTelephoneNumber: +1 415 979-1010 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 726-2457 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: BrodfueD +givenName: Daphne +mail: BrodfueD@f920b917085d494384c9f6cf31731d98.bitwarden.com +carLicense: 24G76P +departmentNumber: 9226 +employeeType: Contract +homePhone: +1 415 980-2284 +initials: D. B. +mobile: +1 415 593-8457 +pager: +1 415 435-2814 +roomNumber: 9833 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwyn Khadbai +sn: Khadbai +description: This is Gwyn Khadbai's description +facsimileTelephoneNumber: +1 408 486-2937 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 408 841-1971 +title: Master Product Testing Madonna +userPassword: Password1 +uid: KhadbaiG +givenName: Gwyn +mail: KhadbaiG@b26dd8079ae74537bc6512a712066520.bitwarden.com +carLicense: JOWD2S +departmentNumber: 7357 +employeeType: Employee +homePhone: +1 408 935-2822 +initials: G. K. +mobile: +1 408 835-1791 +pager: +1 408 362-3121 +roomNumber: 9261 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nevil Padgett,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nevil Padgett +sn: Padgett +description: This is Nevil Padgett's description +facsimileTelephoneNumber: +1 213 893-5326 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 782-9236 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: PadgettN +givenName: Nevil +mail: PadgettN@8ac9cfdbb2124b0e9c0547e5d43a4e68.bitwarden.com +carLicense: PICEXK +departmentNumber: 8122 +employeeType: Employee +homePhone: +1 213 976-7555 +initials: N. P. +mobile: +1 213 986-5319 +pager: +1 213 235-5236 +roomNumber: 9595 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bianka Cooke,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bianka Cooke +sn: Cooke +description: This is Bianka Cooke's description +facsimileTelephoneNumber: +1 408 687-1095 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 408 702-3554 +title: Junior Management Mascot +userPassword: Password1 +uid: CookeB +givenName: Bianka +mail: CookeB@df66a35b0d0f4b4c94777a0a93eec996.bitwarden.com +carLicense: TG27H3 +departmentNumber: 1596 +employeeType: Employee +homePhone: +1 408 310-8250 +initials: B. C. +mobile: +1 408 539-6152 +pager: +1 408 493-6248 +roomNumber: 8445 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivonne Rybczynski +sn: Rybczynski +description: This is Ivonne Rybczynski's description +facsimileTelephoneNumber: +1 818 322-4005 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 305-6759 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: RybczynI +givenName: Ivonne +mail: RybczynI@36bf168f83f54de6b68d81c3236caec7.bitwarden.com +carLicense: J6LW2U +departmentNumber: 3320 +employeeType: Employee +homePhone: +1 818 224-9193 +initials: I. R. +mobile: +1 818 674-6946 +pager: +1 818 713-1316 +roomNumber: 8106 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marjan Lyman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjan Lyman +sn: Lyman +description: This is Marjan Lyman's description +facsimileTelephoneNumber: +1 804 171-5186 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 697-7160 +title: Chief Administrative Figurehead +userPassword: Password1 +uid: LymanM +givenName: Marjan +mail: LymanM@3bd0291e8cff49548689d7d941f27f3f.bitwarden.com +carLicense: Y5MQGE +departmentNumber: 6057 +employeeType: Contract +homePhone: +1 804 294-7259 +initials: M. L. +mobile: +1 804 589-1376 +pager: +1 804 194-9777 +roomNumber: 8583 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aurora Bayno,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurora Bayno +sn: Bayno +description: This is Aurora Bayno's description +facsimileTelephoneNumber: +1 415 200-6783 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 918-4970 +title: Junior Peons Figurehead +userPassword: Password1 +uid: BaynoA +givenName: Aurora +mail: BaynoA@0ad766b055ac4f6f8498d26e88dc0654.bitwarden.com +carLicense: 8QD8JH +departmentNumber: 9760 +employeeType: Normal +homePhone: +1 415 919-3179 +initials: A. B. +mobile: +1 415 723-7003 +pager: +1 415 822-1381 +roomNumber: 9891 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Housseini Dominguez,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Housseini Dominguez +sn: Dominguez +description: This is Housseini Dominguez's description +facsimileTelephoneNumber: +1 510 841-9109 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 820-7316 +title: Associate Administrative Assistant +userPassword: Password1 +uid: DominguH +givenName: Housseini +mail: DominguH@1702c7050ede4a30a493b614c6f96d2a.bitwarden.com +carLicense: 6TYU5Y +departmentNumber: 2880 +employeeType: Normal +homePhone: +1 510 986-5306 +initials: H. D. +mobile: +1 510 837-5089 +pager: +1 510 953-4241 +roomNumber: 9472 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Arnie Ulrich,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arnie Ulrich +sn: Ulrich +description: This is Arnie Ulrich's description +facsimileTelephoneNumber: +1 408 405-5829 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 611-6303 +title: Associate Administrative Janitor +userPassword: Password1 +uid: UlrichA +givenName: Arnie +mail: UlrichA@abe51797f5124683a93236751a4e6fc3.bitwarden.com +carLicense: LK8FVT +departmentNumber: 8091 +employeeType: Contract +homePhone: +1 408 845-1280 +initials: A. U. +mobile: +1 408 626-5084 +pager: +1 408 467-8004 +roomNumber: 9625 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Amrik Carlock,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amrik Carlock +sn: Carlock +description: This is Amrik Carlock's description +facsimileTelephoneNumber: +1 415 435-2984 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 213-5305 +title: Supreme Administrative Developer +userPassword: Password1 +uid: CarlockA +givenName: Amrik +mail: CarlockA@431bd1e3a1554ddda35b23b44d614abd.bitwarden.com +carLicense: S2QGWK +departmentNumber: 8684 +employeeType: Employee +homePhone: +1 415 948-6363 +initials: A. C. +mobile: +1 415 576-7996 +pager: +1 415 723-9093 +roomNumber: 9833 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Saundra Crapco,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saundra Crapco +sn: Crapco +description: This is Saundra Crapco's description +facsimileTelephoneNumber: +1 804 873-4470 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 804 371-3286 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: CrapcoS +givenName: Saundra +mail: CrapcoS@a38a54d93a9a4ec1a621a87e5a204d4b.bitwarden.com +carLicense: LUNOM0 +departmentNumber: 8013 +employeeType: Normal +homePhone: +1 804 363-2329 +initials: S. C. +mobile: +1 804 254-6488 +pager: +1 804 248-1471 +roomNumber: 8833 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shashi Ketcheson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shashi Ketcheson +sn: Ketcheson +description: This is Shashi Ketcheson's description +facsimileTelephoneNumber: +1 213 241-7291 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 761-3708 +title: Master Management Stooge +userPassword: Password1 +uid: KetchesS +givenName: Shashi +mail: KetchesS@79e870d6aec04b1188d3b93e080d363c.bitwarden.com +carLicense: CC5DQW +departmentNumber: 7182 +employeeType: Contract +homePhone: +1 213 291-1657 +initials: S. K. +mobile: +1 213 446-7610 +pager: +1 213 818-9394 +roomNumber: 8169 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maidlab McMillion,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maidlab McMillion +sn: McMillion +description: This is Maidlab McMillion's description +facsimileTelephoneNumber: +1 510 163-1403 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 133-6595 +title: Master Peons Vice President +userPassword: Password1 +uid: McMilliM +givenName: Maidlab +mail: McMilliM@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com +carLicense: RNGYE0 +departmentNumber: 5719 +employeeType: Normal +homePhone: +1 510 916-3492 +initials: M. M. +mobile: +1 510 573-7977 +pager: +1 510 768-3158 +roomNumber: 8081 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cloe Marquart,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cloe Marquart +sn: Marquart +description: This is Cloe Marquart's description +facsimileTelephoneNumber: +1 213 833-8355 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 153-5586 +title: Chief Payroll Engineer +userPassword: Password1 +uid: MarquarC +givenName: Cloe +mail: MarquarC@27d8549892a84dfab24d317e0ea5c6f9.bitwarden.com +carLicense: 4571B9 +departmentNumber: 4905 +employeeType: Contract +homePhone: +1 213 583-1711 +initials: C. M. +mobile: +1 213 509-9490 +pager: +1 213 147-1651 +roomNumber: 9953 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Roselle Donald,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roselle Donald +sn: Donald +description: This is Roselle Donald's description +facsimileTelephoneNumber: +1 408 343-1627 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 297-6408 +title: Chief Human Resources Artist +userPassword: Password1 +uid: DonaldR +givenName: Roselle +mail: DonaldR@98ae5dd6e4ab44b5ae67cbaf5772c205.bitwarden.com +carLicense: IQ0FQ9 +departmentNumber: 5428 +employeeType: Employee +homePhone: +1 408 798-1404 +initials: R. D. +mobile: +1 408 223-7007 +pager: +1 408 692-8675 +roomNumber: 9252 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chander Roussy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chander Roussy +sn: Roussy +description: This is Chander Roussy's description +facsimileTelephoneNumber: +1 213 228-2078 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 280-6877 +title: Junior Product Testing Dictator +userPassword: Password1 +uid: RoussyC +givenName: Chander +mail: RoussyC@eb78b63b75ba4f27a8837a49801a5d87.bitwarden.com +carLicense: V59E6T +departmentNumber: 8715 +employeeType: Contract +homePhone: +1 213 399-3955 +initials: C. R. +mobile: +1 213 436-4471 +pager: +1 213 287-7361 +roomNumber: 9510 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sunny Rollin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sunny Rollin +sn: Rollin +description: This is Sunny Rollin's description +facsimileTelephoneNumber: +1 206 610-7067 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 206 592-1573 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: RollinS +givenName: Sunny +mail: RollinS@1bb0accf179c40f18fe1bf2f50f413b1.bitwarden.com +carLicense: GABKKJ +departmentNumber: 7165 +employeeType: Contract +homePhone: +1 206 326-9400 +initials: S. R. +mobile: +1 206 430-4349 +pager: +1 206 636-5301 +roomNumber: 9135 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gray Wroblewski +sn: Wroblewski +description: This is Gray Wroblewski's description +facsimileTelephoneNumber: +1 804 108-1773 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 804 173-1016 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: WroblewG +givenName: Gray +mail: WroblewG@823588f41bb949d9803b8c0afb801dd3.bitwarden.com +carLicense: OV9UO1 +departmentNumber: 1774 +employeeType: Normal +homePhone: +1 804 483-3926 +initials: G. W. +mobile: +1 804 721-8692 +pager: +1 804 659-8302 +roomNumber: 9589 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sam Meldrum,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sam Meldrum +sn: Meldrum +description: This is Sam Meldrum's description +facsimileTelephoneNumber: +1 818 856-5855 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 939-6394 +title: Chief Human Resources Manager +userPassword: Password1 +uid: MeldrumS +givenName: Sam +mail: MeldrumS@003f2218b9fd4a96bb2b10368a1c04ce.bitwarden.com +carLicense: 89QYG1 +departmentNumber: 2685 +employeeType: Normal +homePhone: +1 818 166-8080 +initials: S. M. +mobile: +1 818 197-1381 +pager: +1 818 874-6129 +roomNumber: 8563 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kitson Sture,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kitson Sture +sn: Sture +description: This is Kitson Sture's description +facsimileTelephoneNumber: +1 804 682-3692 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 228-9366 +title: Chief Management Director +userPassword: Password1 +uid: StureK +givenName: Kitson +mail: StureK@374ee8e2d55948f4b3d3959e5c870fde.bitwarden.com +carLicense: VTJ9HA +departmentNumber: 7093 +employeeType: Employee +homePhone: +1 804 186-7906 +initials: K. S. +mobile: +1 804 668-7963 +pager: +1 804 413-7966 +roomNumber: 8974 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Janot Breglec,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janot Breglec +sn: Breglec +description: This is Janot Breglec's description +facsimileTelephoneNumber: +1 408 520-9045 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 408 627-3296 +title: Junior Human Resources Developer +userPassword: Password1 +uid: BreglecJ +givenName: Janot +mail: BreglecJ@e915bf6c406f46f5ac163116df6fd9b3.bitwarden.com +carLicense: O9C6FF +departmentNumber: 9677 +employeeType: Normal +homePhone: +1 408 252-2874 +initials: J. B. +mobile: +1 408 281-4465 +pager: +1 408 920-4437 +roomNumber: 8515 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gaye Rothwell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaye Rothwell +sn: Rothwell +description: This is Gaye Rothwell's description +facsimileTelephoneNumber: +1 415 408-7998 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 266-2044 +title: Master Administrative Technician +userPassword: Password1 +uid: RothwelG +givenName: Gaye +mail: RothwelG@83a3c9a6bd4547dd81cf1dad18f71e7f.bitwarden.com +carLicense: F8XMWI +departmentNumber: 3769 +employeeType: Normal +homePhone: +1 415 938-2181 +initials: G. R. +mobile: +1 415 646-4716 +pager: +1 415 599-2990 +roomNumber: 9355 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Moe Schumann,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moe Schumann +sn: Schumann +description: This is Moe Schumann's description +facsimileTelephoneNumber: +1 206 436-5533 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 734-7431 +title: Supreme Janitorial Mascot +userPassword: Password1 +uid: SchumanM +givenName: Moe +mail: SchumanM@fc8a319bf73b4066b064fbad43614c48.bitwarden.com +carLicense: 3678M4 +departmentNumber: 5975 +employeeType: Employee +homePhone: +1 206 806-1779 +initials: M. S. +mobile: +1 206 384-8308 +pager: +1 206 103-8220 +roomNumber: 9260 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sarene Keifer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarene Keifer +sn: Keifer +description: This is Sarene Keifer's description +facsimileTelephoneNumber: +1 804 872-3866 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 536-6055 +title: Supreme Product Development Fellow +userPassword: Password1 +uid: KeiferS +givenName: Sarene +mail: KeiferS@28da466dba2a49fabba592c4c805fca1.bitwarden.com +carLicense: 5ROPOS +departmentNumber: 6630 +employeeType: Contract +homePhone: +1 804 331-9212 +initials: S. K. +mobile: +1 804 317-7942 +pager: +1 804 528-7813 +roomNumber: 9183 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adelice Limbaugh +sn: Limbaugh +description: This is Adelice Limbaugh's description +facsimileTelephoneNumber: +1 415 769-9272 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 966-7340 +title: Junior Product Development Czar +userPassword: Password1 +uid: LimbaugA +givenName: Adelice +mail: LimbaugA@d843134b5a6249eda76a289f48094398.bitwarden.com +carLicense: KSOPIN +departmentNumber: 5379 +employeeType: Normal +homePhone: +1 415 649-8426 +initials: A. L. +mobile: +1 415 264-1778 +pager: +1 415 619-7442 +roomNumber: 8545 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Janette Npi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janette Npi +sn: Npi +description: This is Janette Npi's description +facsimileTelephoneNumber: +1 415 472-6146 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 382-3909 +title: Chief Payroll Fellow +userPassword: Password1 +uid: NpiJ +givenName: Janette +mail: NpiJ@7e68fcf7d1c0481096800d5b87b7212d.bitwarden.com +carLicense: FE5A73 +departmentNumber: 4979 +employeeType: Contract +homePhone: +1 415 752-6441 +initials: J. N. +mobile: +1 415 852-3898 +pager: +1 415 687-1811 +roomNumber: 9263 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Danette Galloway,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danette Galloway +sn: Galloway +description: This is Danette Galloway's description +facsimileTelephoneNumber: +1 408 271-2538 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 481-1316 +title: Master Peons Assistant +userPassword: Password1 +uid: GallowaD +givenName: Danette +mail: GallowaD@9dd46e72015c4014b5f15189a14009e2.bitwarden.com +carLicense: 140Q3J +departmentNumber: 5465 +employeeType: Employee +homePhone: +1 408 694-7794 +initials: D. G. +mobile: +1 408 199-7287 +pager: +1 408 691-4310 +roomNumber: 9756 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lorianne Mullett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorianne Mullett +sn: Mullett +description: This is Lorianne Mullett's description +facsimileTelephoneNumber: +1 510 239-8989 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 642-5544 +title: Chief Product Development Fellow +userPassword: Password1 +uid: MullettL +givenName: Lorianne +mail: MullettL@8970f66e3c7349128b71099e5c1cee90.bitwarden.com +carLicense: RO2CWV +departmentNumber: 9716 +employeeType: Employee +homePhone: +1 510 866-2329 +initials: L. M. +mobile: +1 510 477-7923 +pager: +1 510 675-3805 +roomNumber: 8049 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Isabeau Wippel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isabeau Wippel +sn: Wippel +description: This is Isabeau Wippel's description +facsimileTelephoneNumber: +1 213 859-4236 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 231-9276 +title: Chief Administrative Developer +userPassword: Password1 +uid: WippelI +givenName: Isabeau +mail: WippelI@948682def8064e8b984ddc8e87e5fdee.bitwarden.com +carLicense: YXCQBX +departmentNumber: 7255 +employeeType: Employee +homePhone: +1 213 282-5873 +initials: I. W. +mobile: +1 213 250-3139 +pager: +1 213 221-5355 +roomNumber: 9609 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cassi McRae,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassi McRae +sn: McRae +description: This is Cassi McRae's description +facsimileTelephoneNumber: +1 415 510-8542 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 506-8414 +title: Associate Human Resources Czar +userPassword: Password1 +uid: McRaeC +givenName: Cassi +mail: McRaeC@0241a0d3cbf64f09a3380b82cf315d15.bitwarden.com +carLicense: JUWXU1 +departmentNumber: 4147 +employeeType: Normal +homePhone: +1 415 218-4969 +initials: C. M. +mobile: +1 415 383-7579 +pager: +1 415 520-8226 +roomNumber: 8390 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=WaiLeung Marples,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WaiLeung Marples +sn: Marples +description: This is WaiLeung Marples's description +facsimileTelephoneNumber: +1 510 220-8422 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 697-4198 +title: Chief Product Development Madonna +userPassword: Password1 +uid: MarplesW +givenName: WaiLeung +mail: MarplesW@53b43fb5d4e34daa86eaa9d6dd2bd917.bitwarden.com +carLicense: G7DPBX +departmentNumber: 5211 +employeeType: Normal +homePhone: +1 510 198-8084 +initials: W. M. +mobile: +1 510 374-4843 +pager: +1 510 121-7822 +roomNumber: 9218 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Joceline Seifried,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joceline Seifried +sn: Seifried +description: This is Joceline Seifried's description +facsimileTelephoneNumber: +1 804 126-6317 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 363-2666 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: SeifrieJ +givenName: Joceline +mail: SeifrieJ@911b346497874da4b48522c31ad5633c.bitwarden.com +carLicense: NWU5OD +departmentNumber: 6326 +employeeType: Employee +homePhone: +1 804 407-5683 +initials: J. S. +mobile: +1 804 802-5767 +pager: +1 804 658-7066 +roomNumber: 8167 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bill Coldwell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bill Coldwell +sn: Coldwell +description: This is Bill Coldwell's description +facsimileTelephoneNumber: +1 213 968-6275 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 213 629-4658 +title: Junior Payroll Architect +userPassword: Password1 +uid: ColdwelB +givenName: Bill +mail: ColdwelB@79e870d6aec04b1188d3b93e080d363c.bitwarden.com +carLicense: 34CUKO +departmentNumber: 4892 +employeeType: Contract +homePhone: +1 213 567-8723 +initials: B. C. +mobile: +1 213 657-2235 +pager: +1 213 957-1138 +roomNumber: 8032 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjorie deMontluzin +sn: deMontluzin +description: This is Marjorie deMontluzin's description +facsimileTelephoneNumber: +1 408 918-8965 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 917-2422 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: deMontlM +givenName: Marjorie +mail: deMontlM@f115ded519524610ab74393c6ce8cdfc.bitwarden.com +carLicense: 94CIQS +departmentNumber: 3530 +employeeType: Employee +homePhone: +1 408 440-3000 +initials: M. d. +mobile: +1 408 595-3996 +pager: +1 408 790-3545 +roomNumber: 9182 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marlo Belich,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlo Belich +sn: Belich +description: This is Marlo Belich's description +facsimileTelephoneNumber: +1 408 170-3902 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 706-9655 +title: Master Product Development Grunt +userPassword: Password1 +uid: BelichM +givenName: Marlo +mail: BelichM@e8760cb58ba74207a1122bd21950ad46.bitwarden.com +carLicense: BA0SFN +departmentNumber: 7394 +employeeType: Normal +homePhone: +1 408 358-1004 +initials: M. B. +mobile: +1 408 431-3439 +pager: +1 408 356-3443 +roomNumber: 9912 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicholle Markmeyer +sn: Markmeyer +description: This is Nicholle Markmeyer's description +facsimileTelephoneNumber: +1 804 363-1079 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 639-7576 +title: Chief Human Resources Director +userPassword: Password1 +uid: MarkmeyN +givenName: Nicholle +mail: MarkmeyN@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com +carLicense: 66CF09 +departmentNumber: 3546 +employeeType: Normal +homePhone: +1 804 454-6223 +initials: N. M. +mobile: +1 804 398-6884 +pager: +1 804 303-1637 +roomNumber: 8507 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Prams StOnge,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prams StOnge +sn: StOnge +description: This is Prams StOnge's description +facsimileTelephoneNumber: +1 206 191-4830 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 123-5029 +title: Associate Peons Assistant +userPassword: Password1 +uid: StOngeP +givenName: Prams +mail: StOngeP@004a67613be24dd1bb7727566082246b.bitwarden.com +carLicense: 15OJSG +departmentNumber: 3887 +employeeType: Employee +homePhone: +1 206 830-1212 +initials: P. S. +mobile: +1 206 712-4447 +pager: +1 206 396-6831 +roomNumber: 8600 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Eudora Dunstan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eudora Dunstan +sn: Dunstan +description: This is Eudora Dunstan's description +facsimileTelephoneNumber: +1 510 650-1266 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 510 963-2469 +title: Junior Management Admin +userPassword: Password1 +uid: DunstanE +givenName: Eudora +mail: DunstanE@700aa0e6ff224df9962657c1adbdf0d8.bitwarden.com +carLicense: KVK537 +departmentNumber: 7282 +employeeType: Employee +homePhone: +1 510 104-3362 +initials: E. D. +mobile: +1 510 538-2101 +pager: +1 510 637-2572 +roomNumber: 9092 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Thor Ritz,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thor Ritz +sn: Ritz +description: This is Thor Ritz's description +facsimileTelephoneNumber: +1 206 870-2150 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 817-3586 +title: Associate Management Assistant +userPassword: Password1 +uid: RitzT +givenName: Thor +mail: RitzT@7ecd6e3be3c34590b3634684f3566a34.bitwarden.com +carLicense: E0KUYM +departmentNumber: 9191 +employeeType: Employee +homePhone: +1 206 134-5785 +initials: T. R. +mobile: +1 206 986-9026 +pager: +1 206 114-2980 +roomNumber: 8009 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Manhatten Isert,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manhatten Isert +sn: Isert +description: This is Manhatten Isert's description +facsimileTelephoneNumber: +1 510 822-1558 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 494-7522 +title: Associate Product Development Warrior +userPassword: Password1 +uid: IsertM +givenName: Manhatten +mail: IsertM@1b075a91584f496088ea7442a5922cef.bitwarden.com +carLicense: KOVBG4 +departmentNumber: 4104 +employeeType: Normal +homePhone: +1 510 756-8227 +initials: M. I. +mobile: +1 510 785-3504 +pager: +1 510 522-3621 +roomNumber: 9031 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Farra Garee,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farra Garee +sn: Garee +description: This is Farra Garee's description +facsimileTelephoneNumber: +1 206 215-7418 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 256-7792 +title: Associate Payroll Dictator +userPassword: Password1 +uid: GareeF +givenName: Farra +mail: GareeF@78e66db4daf244269be3e0f7fc49db85.bitwarden.com +carLicense: DYFQ6B +departmentNumber: 6101 +employeeType: Contract +homePhone: +1 206 409-5293 +initials: F. G. +mobile: +1 206 923-3315 +pager: +1 206 201-8506 +roomNumber: 9537 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Arun Xpm,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arun Xpm +sn: Xpm +description: This is Arun Xpm's description +facsimileTelephoneNumber: +1 818 430-3008 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 653-5281 +title: Junior Human Resources Sales Rep +userPassword: Password1 +uid: XpmA +givenName: Arun +mail: XpmA@412a31e8728a4c5a8ecbcd1736c486e9.bitwarden.com +carLicense: MBQ029 +departmentNumber: 6453 +employeeType: Contract +homePhone: +1 818 582-6585 +initials: A. X. +mobile: +1 818 659-6320 +pager: +1 818 674-5390 +roomNumber: 9393 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shigeru Albritton +sn: Albritton +description: This is Shigeru Albritton's description +facsimileTelephoneNumber: +1 213 825-1377 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 114-3609 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: AlbrittS +givenName: Shigeru +mail: AlbrittS@2ec15169d3824bb991e5ec642147de0b.bitwarden.com +carLicense: 8OH2CQ +departmentNumber: 9680 +employeeType: Contract +homePhone: +1 213 209-6095 +initials: S. A. +mobile: +1 213 669-5889 +pager: +1 213 107-6024 +roomNumber: 8903 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alida Ausley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alida Ausley +sn: Ausley +description: This is Alida Ausley's description +facsimileTelephoneNumber: +1 818 881-6065 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 747-6692 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: AusleyA +givenName: Alida +mail: AusleyA@f8ab716c26494879b2465829da010f5f.bitwarden.com +carLicense: 3O346U +departmentNumber: 1387 +employeeType: Contract +homePhone: +1 818 779-1367 +initials: A. A. +mobile: +1 818 214-5145 +pager: +1 818 299-1726 +roomNumber: 9070 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jasmina Kraehenbuehl +sn: Kraehenbuehl +description: This is Jasmina Kraehenbuehl's description +facsimileTelephoneNumber: +1 510 685-8598 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 602-1137 +title: Chief Administrative Developer +userPassword: Password1 +uid: KraehenJ +givenName: Jasmina +mail: KraehenJ@6131da53a3b54b04a03670080f19a44f.bitwarden.com +carLicense: 9K6KOO +departmentNumber: 3971 +employeeType: Employee +homePhone: +1 510 133-3885 +initials: J. K. +mobile: +1 510 560-6313 +pager: +1 510 681-4293 +roomNumber: 9555 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Trina Okon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trina Okon +sn: Okon +description: This is Trina Okon's description +facsimileTelephoneNumber: +1 206 258-9304 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 206 210-4984 +title: Associate Payroll Grunt +userPassword: Password1 +uid: OkonT +givenName: Trina +mail: OkonT@f253a86f6ff647d3aa19776207af5865.bitwarden.com +carLicense: Y3DPRT +departmentNumber: 1318 +employeeType: Employee +homePhone: +1 206 786-1269 +initials: T. O. +mobile: +1 206 314-4439 +pager: +1 206 788-2882 +roomNumber: 9918 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kania Harter,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kania Harter +sn: Harter +description: This is Kania Harter's description +facsimileTelephoneNumber: +1 206 264-1182 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 735-4481 +title: Associate Payroll Architect +userPassword: Password1 +uid: HarterK +givenName: Kania +mail: HarterK@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com +carLicense: 72QRQJ +departmentNumber: 9878 +employeeType: Normal +homePhone: +1 206 512-5332 +initials: K. H. +mobile: +1 206 564-8307 +pager: +1 206 537-1035 +roomNumber: 9912 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Samantha Gantt,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Samantha Gantt +sn: Gantt +description: This is Samantha Gantt's description +facsimileTelephoneNumber: +1 510 109-3752 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 919-8353 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: GanttS +givenName: Samantha +mail: GanttS@57aded8fb98d4e528d1fb70b95b777c6.bitwarden.com +carLicense: 8EBY91 +departmentNumber: 8390 +employeeType: Contract +homePhone: +1 510 291-7759 +initials: S. G. +mobile: +1 510 731-9178 +pager: +1 510 800-2876 +roomNumber: 9709 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Akin Houde,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akin Houde +sn: Houde +description: This is Akin Houde's description +facsimileTelephoneNumber: +1 213 364-9538 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 154-2145 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: HoudeA +givenName: Akin +mail: HoudeA@8df41f7f77284af88f6f74347b022fef.bitwarden.com +carLicense: IWMOC0 +departmentNumber: 6550 +employeeType: Normal +homePhone: +1 213 890-6558 +initials: A. H. +mobile: +1 213 640-3895 +pager: +1 213 866-7023 +roomNumber: 9755 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vince Herscovici,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vince Herscovici +sn: Herscovici +description: This is Vince Herscovici's description +facsimileTelephoneNumber: +1 213 722-3680 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 978-8313 +title: Junior Peons Grunt +userPassword: Password1 +uid: HerscovV +givenName: Vince +mail: HerscovV@2cb925e97f384833b8feb793c0daf990.bitwarden.com +carLicense: S5DQMD +departmentNumber: 4145 +employeeType: Normal +homePhone: +1 213 722-8422 +initials: V. H. +mobile: +1 213 476-6354 +pager: +1 213 425-4076 +roomNumber: 9940 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Issy Bachecongi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Issy Bachecongi +sn: Bachecongi +description: This is Issy Bachecongi's description +facsimileTelephoneNumber: +1 206 162-4117 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 158-9224 +title: Associate Administrative Artist +userPassword: Password1 +uid: BachecoI +givenName: Issy +mail: BachecoI@ebb963e9a1d74047879876a5672477e4.bitwarden.com +carLicense: D44YPV +departmentNumber: 4354 +employeeType: Employee +homePhone: +1 206 213-6379 +initials: I. B. +mobile: +1 206 922-9245 +pager: +1 206 505-8786 +roomNumber: 8575 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daffie Nethersole +sn: Nethersole +description: This is Daffie Nethersole's description +facsimileTelephoneNumber: +1 415 622-6093 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 217-8050 +title: Junior Human Resources Evangelist +userPassword: Password1 +uid: NethersD +givenName: Daffie +mail: NethersD@5e4d473173474c608ac03e0447167cc7.bitwarden.com +carLicense: 3D4QDR +departmentNumber: 3595 +employeeType: Normal +homePhone: +1 415 401-8498 +initials: D. N. +mobile: +1 415 423-4897 +pager: +1 415 858-1119 +roomNumber: 8407 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ric Pietrzak +sn: Pietrzak +description: This is Ric Pietrzak's description +facsimileTelephoneNumber: +1 804 474-1118 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 804 143-2921 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: PietrzaR +givenName: Ric +mail: PietrzaR@2169be3657ca457db7de27d69c3db365.bitwarden.com +carLicense: KDYKTO +departmentNumber: 4761 +employeeType: Employee +homePhone: +1 804 489-2877 +initials: R. P. +mobile: +1 804 805-6746 +pager: +1 804 574-1153 +roomNumber: 8788 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fuzal NTPADMIN +sn: NTPADMIN +description: This is Fuzal NTPADMIN's description +facsimileTelephoneNumber: +1 818 191-5900 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 818 663-6776 +title: Chief Product Development Stooge +userPassword: Password1 +uid: NTPADMIF +givenName: Fuzal +mail: NTPADMIF@ca5cfe9e2bd34d4daa1788a54ae9670d.bitwarden.com +carLicense: ASHVFQ +departmentNumber: 6158 +employeeType: Employee +homePhone: +1 818 754-8790 +initials: F. N. +mobile: +1 818 821-8572 +pager: +1 818 484-6085 +roomNumber: 8275 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Seelan Licandro,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seelan Licandro +sn: Licandro +description: This is Seelan Licandro's description +facsimileTelephoneNumber: +1 415 693-4195 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 422-9250 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: LicandrS +givenName: Seelan +mail: LicandrS@3ba4a4ede18c4c8db3f772d09fc2a81c.bitwarden.com +carLicense: OV54SR +departmentNumber: 8160 +employeeType: Employee +homePhone: +1 415 906-6766 +initials: S. L. +mobile: +1 415 683-3998 +pager: +1 415 789-3422 +roomNumber: 9031 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashraf Owsiak +sn: Owsiak +description: This is Ashraf Owsiak's description +facsimileTelephoneNumber: +1 408 910-1246 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 251-7868 +title: Junior Administrative Vice President +userPassword: Password1 +uid: OwsiakA +givenName: Ashraf +mail: OwsiakA@94a04369a1f7454aa0b8a26e89e03c22.bitwarden.com +carLicense: 9E9K1Y +departmentNumber: 5224 +employeeType: Contract +homePhone: +1 408 946-1230 +initials: A. O. +mobile: +1 408 145-7878 +pager: +1 408 103-8311 +roomNumber: 9109 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hqs Dipper,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hqs Dipper +sn: Dipper +description: This is Hqs Dipper's description +facsimileTelephoneNumber: +1 510 885-6806 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 484-1491 +title: Master Janitorial Engineer +userPassword: Password1 +uid: DipperH +givenName: Hqs +mail: DipperH@6d4cfa9f4f814c42be18efd66cfafd41.bitwarden.com +carLicense: CGW47T +departmentNumber: 7579 +employeeType: Normal +homePhone: +1 510 614-9100 +initials: H. D. +mobile: +1 510 975-6735 +pager: +1 510 961-9207 +roomNumber: 8207 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sidone Ricks,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sidone Ricks +sn: Ricks +description: This is Sidone Ricks's description +facsimileTelephoneNumber: +1 804 407-8347 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 487-3777 +title: Chief Janitorial Figurehead +userPassword: Password1 +uid: RicksS +givenName: Sidone +mail: RicksS@d9b9bb6f2d1e411b9f5df67c724690de.bitwarden.com +carLicense: UQWX25 +departmentNumber: 7617 +employeeType: Normal +homePhone: +1 804 346-7303 +initials: S. R. +mobile: +1 804 296-9093 +pager: +1 804 450-4441 +roomNumber: 8513 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Meghan Wai,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meghan Wai +sn: Wai +description: This is Meghan Wai's description +facsimileTelephoneNumber: +1 408 429-9795 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 408 210-5490 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: WaiM +givenName: Meghan +mail: WaiM@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com +carLicense: ROSFWC +departmentNumber: 1031 +employeeType: Employee +homePhone: +1 408 635-5001 +initials: M. W. +mobile: +1 408 973-4722 +pager: +1 408 467-6649 +roomNumber: 8964 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Koen MacInnes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koen MacInnes +sn: MacInnes +description: This is Koen MacInnes's description +facsimileTelephoneNumber: +1 415 910-1584 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 845-2714 +title: Junior Human Resources Technician +userPassword: Password1 +uid: MacInneK +givenName: Koen +mail: MacInneK@7ac19f1f7e20467f8c026cc1031d7f95.bitwarden.com +carLicense: VRCJCM +departmentNumber: 8881 +employeeType: Employee +homePhone: +1 415 757-3091 +initials: K. M. +mobile: +1 415 704-3281 +pager: +1 415 729-7322 +roomNumber: 9762 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ertan Boddeveld +sn: Boddeveld +description: This is Ertan Boddeveld's description +facsimileTelephoneNumber: +1 510 458-3626 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 893-5296 +title: Master Product Development Writer +userPassword: Password1 +uid: BoddeveE +givenName: Ertan +mail: BoddeveE@deb24c82a57b4b4ba4fd2ff9dfbbb9d6.bitwarden.com +carLicense: GDROPS +departmentNumber: 4289 +employeeType: Employee +homePhone: +1 510 298-3538 +initials: E. B. +mobile: +1 510 298-1873 +pager: +1 510 480-2349 +roomNumber: 9050 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Doralin Worthington,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doralin Worthington +sn: Worthington +description: This is Doralin Worthington's description +facsimileTelephoneNumber: +1 415 647-3089 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 415 764-9184 +title: Master Management Artist +userPassword: Password1 +uid: WorthinD +givenName: Doralin +mail: WorthinD@3603f9fb94e045a59b767f557fde78c8.bitwarden.com +carLicense: F8Q9GL +departmentNumber: 8615 +employeeType: Contract +homePhone: +1 415 812-1866 +initials: D. W. +mobile: +1 415 211-5369 +pager: +1 415 528-5344 +roomNumber: 9344 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilith Dalsiel +sn: Dalsiel +description: This is Lilith Dalsiel's description +facsimileTelephoneNumber: +1 415 271-5058 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 415 574-8817 +title: Master Janitorial Artist +userPassword: Password1 +uid: DalsielL +givenName: Lilith +mail: DalsielL@f6d7bbdd5dca40ffa7d958eea386a355.bitwarden.com +carLicense: C6DETX +departmentNumber: 7461 +employeeType: Employee +homePhone: +1 415 230-9424 +initials: L. D. +mobile: +1 415 745-4028 +pager: +1 415 332-7250 +roomNumber: 8894 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Loris Godfrey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loris Godfrey +sn: Godfrey +description: This is Loris Godfrey's description +facsimileTelephoneNumber: +1 804 988-8964 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 974-9037 +title: Associate Product Testing Grunt +userPassword: Password1 +uid: GodfreyL +givenName: Loris +mail: GodfreyL@612e506d26154bfda9f499632b50c09f.bitwarden.com +carLicense: RGK5TF +departmentNumber: 4331 +employeeType: Employee +homePhone: +1 804 510-4718 +initials: L. G. +mobile: +1 804 178-8587 +pager: +1 804 503-8801 +roomNumber: 8379 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Monroe Halpin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monroe Halpin +sn: Halpin +description: This is Monroe Halpin's description +facsimileTelephoneNumber: +1 213 493-1474 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 867-1731 +title: Chief Management Madonna +userPassword: Password1 +uid: HalpinM +givenName: Monroe +mail: HalpinM@9a472823c68140e2a8970835c083aba5.bitwarden.com +carLicense: MANP8K +departmentNumber: 1614 +employeeType: Normal +homePhone: +1 213 855-7017 +initials: M. H. +mobile: +1 213 251-5579 +pager: +1 213 557-9815 +roomNumber: 8990 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gerianna Arnon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerianna Arnon +sn: Arnon +description: This is Gerianna Arnon's description +facsimileTelephoneNumber: +1 408 197-7588 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 560-5354 +title: Chief Administrative Consultant +userPassword: Password1 +uid: ArnonG +givenName: Gerianna +mail: ArnonG@b2ae4069e86943268e686f6fe06ee4a9.bitwarden.com +carLicense: T58H19 +departmentNumber: 8926 +employeeType: Employee +homePhone: +1 408 964-5224 +initials: G. A. +mobile: +1 408 936-3213 +pager: +1 408 982-1335 +roomNumber: 9276 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eustacia DIngianni +sn: DIngianni +description: This is Eustacia DIngianni's description +facsimileTelephoneNumber: +1 804 417-5312 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 260-8201 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: DIngianE +givenName: Eustacia +mail: DIngianE@5c5bca41c1084c1a8e475f6b76094495.bitwarden.com +carLicense: 0BVBT1 +departmentNumber: 3932 +employeeType: Employee +homePhone: +1 804 206-8898 +initials: E. D. +mobile: +1 804 523-7210 +pager: +1 804 390-6417 +roomNumber: 9551 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hazem Pien,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hazem Pien +sn: Pien +description: This is Hazem Pien's description +facsimileTelephoneNumber: +1 818 725-6260 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 963-1442 +title: Master Product Testing Engineer +userPassword: Password1 +uid: PienH +givenName: Hazem +mail: PienH@553ab4a4d0034a748d4563ad14308038.bitwarden.com +carLicense: FE4A8M +departmentNumber: 6105 +employeeType: Normal +homePhone: +1 818 252-1093 +initials: H. P. +mobile: +1 818 936-7549 +pager: +1 818 681-2601 +roomNumber: 9806 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cristofaro Dysart,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristofaro Dysart +sn: Dysart +description: This is Cristofaro Dysart's description +facsimileTelephoneNumber: +1 818 893-4847 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 818 693-9427 +title: Associate Peons Admin +userPassword: Password1 +uid: DysartC +givenName: Cristofaro +mail: DysartC@74f64cadc50c45bab4d4e7ff4e9f7687.bitwarden.com +carLicense: FJG7P7 +departmentNumber: 3881 +employeeType: Employee +homePhone: +1 818 964-1912 +initials: C. D. +mobile: +1 818 251-8000 +pager: +1 818 656-3948 +roomNumber: 9316 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Margot Muzio,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margot Muzio +sn: Muzio +description: This is Margot Muzio's description +facsimileTelephoneNumber: +1 206 765-3617 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 727-8853 +title: Master Peons Consultant +userPassword: Password1 +uid: MuzioM +givenName: Margot +mail: MuzioM@65efa32362a041c6bf7a11231598ac71.bitwarden.com +carLicense: LDEKMP +departmentNumber: 3665 +employeeType: Contract +homePhone: +1 206 620-6900 +initials: M. M. +mobile: +1 206 556-3746 +pager: +1 206 869-5722 +roomNumber: 8432 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Makary Wagers,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Makary Wagers +sn: Wagers +description: This is Makary Wagers's description +facsimileTelephoneNumber: +1 804 844-2349 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 964-8776 +title: Supreme Peons Director +userPassword: Password1 +uid: WagersM +givenName: Makary +mail: WagersM@ab6b4dd3e6a9481bb932dc2b39ad4c1b.bitwarden.com +carLicense: B1FJE4 +departmentNumber: 5355 +employeeType: Contract +homePhone: +1 804 913-5593 +initials: M. W. +mobile: +1 804 705-6583 +pager: +1 804 373-2411 +roomNumber: 9321 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Yudy Sandford,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yudy Sandford +sn: Sandford +description: This is Yudy Sandford's description +facsimileTelephoneNumber: +1 510 650-4829 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 882-3738 +title: Master Payroll Warrior +userPassword: Password1 +uid: SandforY +givenName: Yudy +mail: SandforY@d5cc15f6bb6b4357bd0ce84100b284f9.bitwarden.com +carLicense: RCWGAX +departmentNumber: 1011 +employeeType: Contract +homePhone: +1 510 633-4463 +initials: Y. S. +mobile: +1 510 200-7649 +pager: +1 510 603-4166 +roomNumber: 8366 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Baruk Junaid,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baruk Junaid +sn: Junaid +description: This is Baruk Junaid's description +facsimileTelephoneNumber: +1 804 988-2557 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 587-3349 +title: Supreme Peons Manager +userPassword: Password1 +uid: JunaidB +givenName: Baruk +mail: JunaidB@9f557b7cfb384a169129c691f7b5eeed.bitwarden.com +carLicense: 8TWAEW +departmentNumber: 2071 +employeeType: Normal +homePhone: +1 804 483-2345 +initials: B. J. +mobile: +1 804 303-3404 +pager: +1 804 841-4002 +roomNumber: 8200 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Morganne Grimmell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morganne Grimmell +sn: Grimmell +description: This is Morganne Grimmell's description +facsimileTelephoneNumber: +1 213 661-7046 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 241-4267 +title: Master Management Fellow +userPassword: Password1 +uid: GrimmelM +givenName: Morganne +mail: GrimmelM@477794cc09b1403eae274b941a7cdeff.bitwarden.com +carLicense: F45P7D +departmentNumber: 7473 +employeeType: Normal +homePhone: +1 213 220-5869 +initials: M. G. +mobile: +1 213 671-3574 +pager: +1 213 411-2595 +roomNumber: 8476 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Evaleen Beine,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evaleen Beine +sn: Beine +description: This is Evaleen Beine's description +facsimileTelephoneNumber: +1 804 380-7858 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 964-7956 +title: Master Product Testing Dictator +userPassword: Password1 +uid: BeineE +givenName: Evaleen +mail: BeineE@58d52c34bc5a4b32a84addaebe6b1c8a.bitwarden.com +carLicense: XNACIL +departmentNumber: 8796 +employeeType: Employee +homePhone: +1 804 169-1417 +initials: E. B. +mobile: +1 804 643-4638 +pager: +1 804 908-8870 +roomNumber: 8155 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yumi Mudry,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yumi Mudry +sn: Mudry +description: This is Yumi Mudry's description +facsimileTelephoneNumber: +1 206 448-3715 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 206 894-9379 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: MudryY +givenName: Yumi +mail: MudryY@30ca0b4b2c6d4aff9d3ac9b5f46982e5.bitwarden.com +carLicense: U8GQWH +departmentNumber: 8855 +employeeType: Normal +homePhone: +1 206 676-3306 +initials: Y. M. +mobile: +1 206 102-2809 +pager: +1 206 585-9105 +roomNumber: 8968 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Salomi Heisler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salomi Heisler +sn: Heisler +description: This is Salomi Heisler's description +facsimileTelephoneNumber: +1 818 719-2614 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 835-8382 +title: Supreme Management Mascot +userPassword: Password1 +uid: HeislerS +givenName: Salomi +mail: HeislerS@de69795c4c4c4284812c4db5353fa4eb.bitwarden.com +carLicense: Y92G7G +departmentNumber: 4068 +employeeType: Contract +homePhone: +1 818 940-9103 +initials: S. H. +mobile: +1 818 246-6905 +pager: +1 818 894-1128 +roomNumber: 8435 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Trey ETAS,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trey ETAS +sn: ETAS +description: This is Trey ETAS's description +facsimileTelephoneNumber: +1 510 403-3621 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 987-2792 +title: Chief Product Testing Punk +userPassword: Password1 +uid: ETAST +givenName: Trey +mail: ETAST@d79e418348c94168b4dd89d46432d83f.bitwarden.com +carLicense: V0AQW1 +departmentNumber: 1113 +employeeType: Contract +homePhone: +1 510 607-2057 +initials: T. E. +mobile: +1 510 366-3125 +pager: +1 510 115-3944 +roomNumber: 9139 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delisle Wishewan +sn: Wishewan +description: This is Delisle Wishewan's description +facsimileTelephoneNumber: +1 213 425-6258 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 691-5581 +title: Junior Janitorial Director +userPassword: Password1 +uid: WishewaD +givenName: Delisle +mail: WishewaD@35193777bef64194b24098fc1b98f7ef.bitwarden.com +carLicense: WBKXAD +departmentNumber: 6671 +employeeType: Normal +homePhone: +1 213 477-6447 +initials: D. W. +mobile: +1 213 745-9231 +pager: +1 213 819-5120 +roomNumber: 9383 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Co Knighten,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Co Knighten +sn: Knighten +description: This is Co Knighten's description +facsimileTelephoneNumber: +1 818 282-9038 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 383-7685 +title: Master Product Development Madonna +userPassword: Password1 +uid: KnighteC +givenName: Co +mail: KnighteC@87dcc1359cb14e3b85fed9765ee13d91.bitwarden.com +carLicense: DGBV0B +departmentNumber: 4707 +employeeType: Contract +homePhone: +1 818 697-3075 +initials: C. K. +mobile: +1 818 175-2183 +pager: +1 818 847-5630 +roomNumber: 9250 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gillie Rheaume,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gillie Rheaume +sn: Rheaume +description: This is Gillie Rheaume's description +facsimileTelephoneNumber: +1 206 265-9922 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 185-3529 +title: Master Product Development Warrior +userPassword: Password1 +uid: RheaumeG +givenName: Gillie +mail: RheaumeG@7741374717804087bc8fc55c986de74b.bitwarden.com +carLicense: S9GKML +departmentNumber: 3710 +employeeType: Employee +homePhone: +1 206 253-2465 +initials: G. R. +mobile: +1 206 294-2984 +pager: +1 206 327-7882 +roomNumber: 8355 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yvonne Benavidez +sn: Benavidez +description: This is Yvonne Benavidez's description +facsimileTelephoneNumber: +1 804 829-7981 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 745-5159 +title: Chief Product Development Technician +userPassword: Password1 +uid: BenavidY +givenName: Yvonne +mail: BenavidY@32037f3bd743420296270ff80da78e1b.bitwarden.com +carLicense: RFK2GF +departmentNumber: 6438 +employeeType: Employee +homePhone: +1 804 145-1011 +initials: Y. B. +mobile: +1 804 227-7193 +pager: +1 804 952-5578 +roomNumber: 8158 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jamal Scotti,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jamal Scotti +sn: Scotti +description: This is Jamal Scotti's description +facsimileTelephoneNumber: +1 510 799-6793 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 585-7303 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: ScottiJ +givenName: Jamal +mail: ScottiJ@13b504a8a169451f93c28e40583299e2.bitwarden.com +carLicense: P68Q27 +departmentNumber: 7767 +employeeType: Normal +homePhone: +1 510 632-3315 +initials: J. S. +mobile: +1 510 887-5981 +pager: +1 510 200-9636 +roomNumber: 9277 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sharri Lotz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharri Lotz +sn: Lotz +description: This is Sharri Lotz's description +facsimileTelephoneNumber: +1 804 182-7326 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 318-5508 +title: Supreme Product Development Director +userPassword: Password1 +uid: LotzS +givenName: Sharri +mail: LotzS@496d582fba1f48fead6391e894698c13.bitwarden.com +carLicense: R31FGO +departmentNumber: 7072 +employeeType: Employee +homePhone: +1 804 934-2794 +initials: S. L. +mobile: +1 804 717-7395 +pager: +1 804 348-5490 +roomNumber: 9223 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Agnella Loi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnella Loi +sn: Loi +description: This is Agnella Loi's description +facsimileTelephoneNumber: +1 213 691-4524 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 128-5088 +title: Chief Janitorial Technician +userPassword: Password1 +uid: LoiA +givenName: Agnella +mail: LoiA@e1f896403d134dc18441efaefd89f914.bitwarden.com +carLicense: J8V9ST +departmentNumber: 1820 +employeeType: Contract +homePhone: +1 213 921-3845 +initials: A. L. +mobile: +1 213 411-7720 +pager: +1 213 293-8147 +roomNumber: 9326 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Leno Henley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leno Henley +sn: Henley +description: This is Leno Henley's description +facsimileTelephoneNumber: +1 415 226-4955 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 564-2672 +title: Associate Management Technician +userPassword: Password1 +uid: HenleyL +givenName: Leno +mail: HenleyL@e29946cbb54948f9aec00f7a05eb0737.bitwarden.com +carLicense: 5CYCOK +departmentNumber: 6219 +employeeType: Normal +homePhone: +1 415 417-6026 +initials: L. H. +mobile: +1 415 356-2403 +pager: +1 415 234-3033 +roomNumber: 8896 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelbi Szeto +sn: Szeto +description: This is Shelbi Szeto's description +facsimileTelephoneNumber: +1 510 210-3792 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 161-7160 +title: Supreme Human Resources President +userPassword: Password1 +uid: SzetoS +givenName: Shelbi +mail: SzetoS@ef52200320a34601b7e10e8ff147afd3.bitwarden.com +carLicense: I9C6A1 +departmentNumber: 7482 +employeeType: Contract +homePhone: +1 510 622-5393 +initials: S. S. +mobile: +1 510 214-6585 +pager: +1 510 364-6113 +roomNumber: 8615 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rajinderpal Dace +sn: Dace +description: This is Rajinderpal Dace's description +facsimileTelephoneNumber: +1 415 409-6145 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 992-4286 +title: Junior Janitorial Architect +userPassword: Password1 +uid: DaceR +givenName: Rajinderpal +mail: DaceR@6caa5a9ac52c4d64b49fd033d3499ddc.bitwarden.com +carLicense: QHX2LV +departmentNumber: 2269 +employeeType: Normal +homePhone: +1 415 778-5806 +initials: R. D. +mobile: +1 415 271-1864 +pager: +1 415 749-7319 +roomNumber: 8470 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelcey Gregorio +sn: Gregorio +description: This is Kelcey Gregorio's description +facsimileTelephoneNumber: +1 818 825-5601 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 818 139-2118 +title: Chief Product Development Writer +userPassword: Password1 +uid: GregoriK +givenName: Kelcey +mail: GregoriK@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com +carLicense: TNCTST +departmentNumber: 3204 +employeeType: Contract +homePhone: +1 818 627-2437 +initials: K. G. +mobile: +1 818 270-3824 +pager: +1 818 124-7567 +roomNumber: 8807 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Elex Langer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elex Langer +sn: Langer +description: This is Elex Langer's description +facsimileTelephoneNumber: +1 415 248-5242 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 146-6831 +title: Associate Peons Mascot +userPassword: Password1 +uid: LangerE +givenName: Elex +mail: LangerE@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com +carLicense: E2694F +departmentNumber: 7964 +employeeType: Employee +homePhone: +1 415 514-8486 +initials: E. L. +mobile: +1 415 135-5887 +pager: +1 415 438-8087 +roomNumber: 8793 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dwain Bielby,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dwain Bielby +sn: Bielby +description: This is Dwain Bielby's description +facsimileTelephoneNumber: +1 213 676-4474 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 405-5894 +title: Chief Product Development Fellow +userPassword: Password1 +uid: BielbyD +givenName: Dwain +mail: BielbyD@0d89387630504e3d959bb5ff8f1b89ae.bitwarden.com +carLicense: 30O2GY +departmentNumber: 2388 +employeeType: Contract +homePhone: +1 213 560-9864 +initials: D. B. +mobile: +1 213 862-2544 +pager: +1 213 776-6182 +roomNumber: 8370 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhSon Mannion +sn: Mannion +description: This is ThanhSon Mannion's description +facsimileTelephoneNumber: +1 818 674-4805 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 928-2501 +title: Chief Human Resources Manager +userPassword: Password1 +uid: MannionT +givenName: ThanhSon +mail: MannionT@995756bc696444e0925a45b2d907b2e0.bitwarden.com +carLicense: AIRD81 +departmentNumber: 1833 +employeeType: Normal +homePhone: +1 818 317-9927 +initials: T. M. +mobile: +1 818 590-7578 +pager: +1 818 991-5317 +roomNumber: 8246 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Roy Terranova,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roy Terranova +sn: Terranova +description: This is Roy Terranova's description +facsimileTelephoneNumber: +1 206 809-9382 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 808-1261 +title: Junior Peons Fellow +userPassword: Password1 +uid: TerranoR +givenName: Roy +mail: TerranoR@57a6ba7501424a8abade55339f684e3b.bitwarden.com +carLicense: R0ON7T +departmentNumber: 1622 +employeeType: Employee +homePhone: +1 206 266-8848 +initials: R. T. +mobile: +1 206 986-7775 +pager: +1 206 272-5320 +roomNumber: 9560 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicol Fowlkes +sn: Fowlkes +description: This is Nicol Fowlkes's description +facsimileTelephoneNumber: +1 415 711-5409 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 239-3111 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: FowlkesN +givenName: Nicol +mail: FowlkesN@d40125293395457eaed2134155d04681.bitwarden.com +carLicense: 7NUGU5 +departmentNumber: 4263 +employeeType: Contract +homePhone: +1 415 642-4979 +initials: N. F. +mobile: +1 415 119-6789 +pager: +1 415 137-6223 +roomNumber: 8343 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vaughn Corlett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vaughn Corlett +sn: Corlett +description: This is Vaughn Corlett's description +facsimileTelephoneNumber: +1 213 786-3560 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 738-2025 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: CorlettV +givenName: Vaughn +mail: CorlettV@bb783944cdf1498cb4614b490b25cc0a.bitwarden.com +carLicense: OBNAMM +departmentNumber: 4720 +employeeType: Normal +homePhone: +1 213 281-3274 +initials: V. C. +mobile: +1 213 957-2146 +pager: +1 213 191-9372 +roomNumber: 9449 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gladys Helmy,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gladys Helmy +sn: Helmy +description: This is Gladys Helmy's description +facsimileTelephoneNumber: +1 206 796-3040 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 410-2927 +title: Supreme Management Pinhead +userPassword: Password1 +uid: HelmyG +givenName: Gladys +mail: HelmyG@df40332a741445b7a8fa73b2a928c4b0.bitwarden.com +carLicense: OBQBX2 +departmentNumber: 9007 +employeeType: Normal +homePhone: +1 206 136-1309 +initials: G. H. +mobile: +1 206 898-4192 +pager: +1 206 583-5044 +roomNumber: 8234 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bihari Mirek,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bihari Mirek +sn: Mirek +description: This is Bihari Mirek's description +facsimileTelephoneNumber: +1 510 329-4800 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 969-3044 +title: Master Product Development Technician +userPassword: Password1 +uid: MirekB +givenName: Bihari +mail: MirekB@3e044de8fdd14b83b9b0d85310545f1e.bitwarden.com +carLicense: H3IPIE +departmentNumber: 3311 +employeeType: Contract +homePhone: +1 510 362-3733 +initials: B. M. +mobile: +1 510 234-6522 +pager: +1 510 817-8524 +roomNumber: 8796 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bunni Dewitt +sn: Dewitt +description: This is Bunni Dewitt's description +facsimileTelephoneNumber: +1 818 794-6292 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 460-8654 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: DewittB +givenName: Bunni +mail: DewittB@fe07d129e5344ba9b03e2ffcc8db4597.bitwarden.com +carLicense: T9DAIF +departmentNumber: 4801 +employeeType: Employee +homePhone: +1 818 746-3765 +initials: B. D. +mobile: +1 818 951-4590 +pager: +1 818 633-2518 +roomNumber: 8671 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lissa Hernandez,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lissa Hernandez +sn: Hernandez +description: This is Lissa Hernandez's description +facsimileTelephoneNumber: +1 804 398-2204 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 239-9106 +title: Master Administrative Pinhead +userPassword: Password1 +uid: HernandL +givenName: Lissa +mail: HernandL@89e4e0e6aba5481cb5a471d8c425e9ac.bitwarden.com +carLicense: HUMJHV +departmentNumber: 7707 +employeeType: Normal +homePhone: +1 804 706-4911 +initials: L. H. +mobile: +1 804 781-1987 +pager: +1 804 125-7636 +roomNumber: 9763 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tabatha Shillingford +sn: Shillingford +description: This is Tabatha Shillingford's description +facsimileTelephoneNumber: +1 804 986-3208 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 449-5081 +title: Junior Product Development Artist +userPassword: Password1 +uid: ShillinT +givenName: Tabatha +mail: ShillinT@a33324bfbeba45c9aed68650670aad46.bitwarden.com +carLicense: M4KGSR +departmentNumber: 9599 +employeeType: Normal +homePhone: +1 804 453-9368 +initials: T. S. +mobile: +1 804 726-9680 +pager: +1 804 516-1513 +roomNumber: 9693 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deeanne Alfred +sn: Alfred +description: This is Deeanne Alfred's description +facsimileTelephoneNumber: +1 206 893-6369 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 206 606-6941 +title: Chief Human Resources Punk +userPassword: Password1 +uid: AlfredD +givenName: Deeanne +mail: AlfredD@6f609804b5454243a8f49419cf4fa238.bitwarden.com +carLicense: S4AIMI +departmentNumber: 6344 +employeeType: Contract +homePhone: +1 206 672-3874 +initials: D. A. +mobile: +1 206 130-2336 +pager: +1 206 174-8945 +roomNumber: 8412 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Torre Monahan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Torre Monahan +sn: Monahan +description: This is Torre Monahan's description +facsimileTelephoneNumber: +1 408 573-5856 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 423-5256 +title: Master Product Development Janitor +userPassword: Password1 +uid: MonahanT +givenName: Torre +mail: MonahanT@70748fe689e2445ebbe07527f7179bb2.bitwarden.com +carLicense: CBDA94 +departmentNumber: 9074 +employeeType: Normal +homePhone: +1 408 428-5262 +initials: T. M. +mobile: +1 408 653-2071 +pager: +1 408 736-6348 +roomNumber: 9331 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maia Arellano,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maia Arellano +sn: Arellano +description: This is Maia Arellano's description +facsimileTelephoneNumber: +1 206 635-6180 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 731-9306 +title: Master Janitorial Developer +userPassword: Password1 +uid: ArellanM +givenName: Maia +mail: ArellanM@f397e344461e4f9a88c49c97eb320637.bitwarden.com +carLicense: RYWLPL +departmentNumber: 3398 +employeeType: Normal +homePhone: +1 206 512-9839 +initials: M. A. +mobile: +1 206 669-5721 +pager: +1 206 505-1175 +roomNumber: 8954 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gina Hattar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gina Hattar +sn: Hattar +description: This is Gina Hattar's description +facsimileTelephoneNumber: +1 818 615-7822 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 721-4812 +title: Chief Management Figurehead +userPassword: Password1 +uid: HattarG +givenName: Gina +mail: HattarG@6d6628d9da624cadbb049fbfa6bdf2da.bitwarden.com +carLicense: AJDVBD +departmentNumber: 8513 +employeeType: Contract +homePhone: +1 818 197-7066 +initials: G. H. +mobile: +1 818 988-8188 +pager: +1 818 154-6497 +roomNumber: 9449 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dena Trottier,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dena Trottier +sn: Trottier +description: This is Dena Trottier's description +facsimileTelephoneNumber: +1 510 648-9781 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 394-7719 +title: Supreme Peons Czar +userPassword: Password1 +uid: TrottieD +givenName: Dena +mail: TrottieD@f4b8173477b44cefa65ae7313aaf8ebf.bitwarden.com +carLicense: 0DP0SS +departmentNumber: 6216 +employeeType: Employee +homePhone: +1 510 231-6818 +initials: D. T. +mobile: +1 510 657-9409 +pager: +1 510 317-7544 +roomNumber: 8825 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vmchange Cavan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vmchange Cavan +sn: Cavan +description: This is Vmchange Cavan's description +facsimileTelephoneNumber: +1 510 481-1671 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 510 967-9753 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: CavanV +givenName: Vmchange +mail: CavanV@1eb2456e111c4bd988f50cdf3b94db14.bitwarden.com +carLicense: 8R67FJ +departmentNumber: 8985 +employeeType: Contract +homePhone: +1 510 218-8948 +initials: V. C. +mobile: +1 510 966-1280 +pager: +1 510 343-2542 +roomNumber: 8229 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lorie Brickey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorie Brickey +sn: Brickey +description: This is Lorie Brickey's description +facsimileTelephoneNumber: +1 804 277-2908 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 684-9578 +title: Associate Product Development Janitor +userPassword: Password1 +uid: BrickeyL +givenName: Lorie +mail: BrickeyL@34a1d693e4fb4c4b93e2ff11c22319d7.bitwarden.com +carLicense: 6J5XYC +departmentNumber: 9044 +employeeType: Employee +homePhone: +1 804 825-8379 +initials: L. B. +mobile: +1 804 555-8688 +pager: +1 804 267-1569 +roomNumber: 9335 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ardie Dix,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardie Dix +sn: Dix +description: This is Ardie Dix's description +facsimileTelephoneNumber: +1 415 952-7653 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 327-7914 +title: Supreme Peons Consultant +userPassword: Password1 +uid: DixA +givenName: Ardie +mail: DixA@9572e6f979bb4b11856883fbf4267c29.bitwarden.com +carLicense: 1AWWLL +departmentNumber: 7140 +employeeType: Normal +homePhone: +1 415 956-7351 +initials: A. D. +mobile: +1 415 525-4900 +pager: +1 415 231-7326 +roomNumber: 8455 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maybelle Augustus,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maybelle Augustus +sn: Augustus +description: This is Maybelle Augustus's description +facsimileTelephoneNumber: +1 415 265-4889 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 207-4773 +title: Chief Product Development Czar +userPassword: Password1 +uid: AugustuM +givenName: Maybelle +mail: AugustuM@e822f80dc4b84873b9cd6725909b316b.bitwarden.com +carLicense: XFTCQM +departmentNumber: 3974 +employeeType: Contract +homePhone: +1 415 650-1324 +initials: M. A. +mobile: +1 415 293-3469 +pager: +1 415 775-4267 +roomNumber: 8050 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Engracia Materkowski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Engracia Materkowski +sn: Materkowski +description: This is Engracia Materkowski's description +facsimileTelephoneNumber: +1 804 250-3503 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 515-1406 +title: Supreme Payroll Developer +userPassword: Password1 +uid: MaterkoE +givenName: Engracia +mail: MaterkoE@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com +carLicense: AHCH2L +departmentNumber: 5124 +employeeType: Normal +homePhone: +1 804 518-3380 +initials: E. M. +mobile: +1 804 461-9116 +pager: +1 804 545-5798 +roomNumber: 9331 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jacqueline Durant,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacqueline Durant +sn: Durant +description: This is Jacqueline Durant's description +facsimileTelephoneNumber: +1 804 489-6456 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 804 362-4351 +title: Associate Payroll Consultant +userPassword: Password1 +uid: DurantJ +givenName: Jacqueline +mail: DurantJ@fd4b1798fa4b4adcbc4df665d1546e59.bitwarden.com +carLicense: A9NT2U +departmentNumber: 4905 +employeeType: Contract +homePhone: +1 804 625-2309 +initials: J. D. +mobile: +1 804 968-3835 +pager: +1 804 499-5052 +roomNumber: 9637 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Charly Klapper,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charly Klapper +sn: Klapper +description: This is Charly Klapper's description +facsimileTelephoneNumber: +1 408 235-2362 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 408 382-1679 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: KlapperC +givenName: Charly +mail: KlapperC@6c41c4f512984d04a91eed45d8e765ab.bitwarden.com +carLicense: S38VXG +departmentNumber: 2082 +employeeType: Normal +homePhone: +1 408 120-7558 +initials: C. K. +mobile: +1 408 615-2788 +pager: +1 408 120-2791 +roomNumber: 8309 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elpida Doerr,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elpida Doerr +sn: Doerr +description: This is Elpida Doerr's description +facsimileTelephoneNumber: +1 206 411-1866 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 490-9998 +title: Junior Payroll Janitor +userPassword: Password1 +uid: DoerrE +givenName: Elpida +mail: DoerrE@4310e2be3a3a4f5d87f9af032cb0053b.bitwarden.com +carLicense: 94IOXF +departmentNumber: 1541 +employeeType: Contract +homePhone: +1 206 481-2456 +initials: E. D. +mobile: +1 206 700-7304 +pager: +1 206 128-2987 +roomNumber: 9285 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bethena Parniani,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bethena Parniani +sn: Parniani +description: This is Bethena Parniani's description +facsimileTelephoneNumber: +1 818 400-6884 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 621-5989 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: ParnianB +givenName: Bethena +mail: ParnianB@6deaeb16d80f44ffa2ca06dfc1f89c97.bitwarden.com +carLicense: AB026B +departmentNumber: 9935 +employeeType: Contract +homePhone: +1 818 585-2219 +initials: B. P. +mobile: +1 818 215-1687 +pager: +1 818 160-8046 +roomNumber: 8835 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashlen Vaillant +sn: Vaillant +description: This is Ashlen Vaillant's description +facsimileTelephoneNumber: +1 818 917-6996 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 348-7099 +title: Junior Human Resources Writer +userPassword: Password1 +uid: VaillanA +givenName: Ashlen +mail: VaillanA@544f7671c8074caba5e197489f1c082c.bitwarden.com +carLicense: O5EFE2 +departmentNumber: 4329 +employeeType: Employee +homePhone: +1 818 230-1534 +initials: A. V. +mobile: +1 818 309-7645 +pager: +1 818 777-9230 +roomNumber: 9437 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Janka Macklem,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janka Macklem +sn: Macklem +description: This is Janka Macklem's description +facsimileTelephoneNumber: +1 206 559-5809 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 122-4159 +title: Master Management Evangelist +userPassword: Password1 +uid: MacklemJ +givenName: Janka +mail: MacklemJ@194b01da4c0947188a08ceb5675d4f64.bitwarden.com +carLicense: JLHH9K +departmentNumber: 3983 +employeeType: Contract +homePhone: +1 206 190-9624 +initials: J. M. +mobile: +1 206 127-8435 +pager: +1 206 926-8965 +roomNumber: 9162 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Myrtie Mc,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrtie Mc +sn: Mc +description: This is Myrtie Mc's description +facsimileTelephoneNumber: +1 206 339-2990 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 510-1966 +title: Master Administrative Czar +userPassword: Password1 +uid: McM +givenName: Myrtie +mail: McM@c91f0550b80f407f9309a7740af038d8.bitwarden.com +carLicense: 5JF241 +departmentNumber: 4974 +employeeType: Contract +homePhone: +1 206 898-9407 +initials: M. M. +mobile: +1 206 626-2218 +pager: +1 206 505-8400 +roomNumber: 9680 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edyta Gonzalez +sn: Gonzalez +description: This is Edyta Gonzalez's description +facsimileTelephoneNumber: +1 206 288-3863 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 290-9130 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: GonzaleE +givenName: Edyta +mail: GonzaleE@6b1195b29ef347f9ab299fd5409ce2bd.bitwarden.com +carLicense: 7AQD0W +departmentNumber: 8844 +employeeType: Normal +homePhone: +1 206 909-9786 +initials: E. G. +mobile: +1 206 383-9621 +pager: +1 206 558-4852 +roomNumber: 8360 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ludovika McKnight,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ludovika McKnight +sn: McKnight +description: This is Ludovika McKnight's description +facsimileTelephoneNumber: +1 408 737-4846 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 780-6370 +title: Chief Product Development Vice President +userPassword: Password1 +uid: McKnighL +givenName: Ludovika +mail: McKnighL@b1a6b6a5513044a8a462e54235172118.bitwarden.com +carLicense: NJJEU8 +departmentNumber: 9296 +employeeType: Normal +homePhone: +1 408 380-9509 +initials: L. M. +mobile: +1 408 582-3808 +pager: +1 408 837-1824 +roomNumber: 8151 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anil Cotuna,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anil Cotuna +sn: Cotuna +description: This is Anil Cotuna's description +facsimileTelephoneNumber: +1 818 886-4935 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 778-8916 +title: Associate Management Janitor +userPassword: Password1 +uid: CotunaA +givenName: Anil +mail: CotunaA@d0ee722bb1a5461aa78c6da256abd9e1.bitwarden.com +carLicense: 970UPB +departmentNumber: 9878 +employeeType: Employee +homePhone: +1 818 260-5064 +initials: A. C. +mobile: +1 818 432-3072 +pager: +1 818 783-4012 +roomNumber: 8388 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Merrile Wilson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrile Wilson +sn: Wilson +description: This is Merrile Wilson's description +facsimileTelephoneNumber: +1 206 280-5538 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 688-7852 +title: Junior Management Engineer +userPassword: Password1 +uid: WilsonM +givenName: Merrile +mail: WilsonM@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com +carLicense: 3ONDQP +departmentNumber: 6844 +employeeType: Contract +homePhone: +1 206 368-9675 +initials: M. W. +mobile: +1 206 958-4405 +pager: +1 206 382-3641 +roomNumber: 8400 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Zahara Ferree,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zahara Ferree +sn: Ferree +description: This is Zahara Ferree's description +facsimileTelephoneNumber: +1 206 761-9354 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 204-6079 +title: Chief Administrative Assistant +userPassword: Password1 +uid: FerreeZ +givenName: Zahara +mail: FerreeZ@fc85f8e4436a4774ae1c7ec792457997.bitwarden.com +carLicense: YKNU1W +departmentNumber: 5588 +employeeType: Employee +homePhone: +1 206 821-1336 +initials: Z. F. +mobile: +1 206 194-7508 +pager: +1 206 434-5837 +roomNumber: 9766 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maryrose Sagan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryrose Sagan +sn: Sagan +description: This is Maryrose Sagan's description +facsimileTelephoneNumber: +1 213 767-2007 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 815-7368 +title: Master Peons Sales Rep +userPassword: Password1 +uid: SaganM +givenName: Maryrose +mail: SaganM@78e9cef1d0e74415b642613eadf820dc.bitwarden.com +carLicense: 5SSQ5V +departmentNumber: 1615 +employeeType: Normal +homePhone: +1 213 741-5628 +initials: M. S. +mobile: +1 213 151-5643 +pager: +1 213 205-2019 +roomNumber: 9440 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Legra Binder,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Legra Binder +sn: Binder +description: This is Legra Binder's description +facsimileTelephoneNumber: +1 206 430-6271 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 368-5799 +title: Chief Administrative Director +userPassword: Password1 +uid: BinderL +givenName: Legra +mail: BinderL@16c9187062174be89c2c9f0c8fb48cf0.bitwarden.com +carLicense: 30RC1D +departmentNumber: 6918 +employeeType: Employee +homePhone: +1 206 933-5084 +initials: L. B. +mobile: +1 206 173-5180 +pager: +1 206 631-1053 +roomNumber: 8815 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ernaline Tierney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ernaline Tierney +sn: Tierney +description: This is Ernaline Tierney's description +facsimileTelephoneNumber: +1 213 210-7308 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 589-6603 +title: Chief Product Development Director +userPassword: Password1 +uid: TierneyE +givenName: Ernaline +mail: TierneyE@7e23b8de808e4c8687b7d328cf2c1f4d.bitwarden.com +carLicense: S89GTT +departmentNumber: 1770 +employeeType: Employee +homePhone: +1 213 626-2298 +initials: E. T. +mobile: +1 213 246-2959 +pager: +1 213 130-4285 +roomNumber: 9889 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Seven Nicol,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seven Nicol +sn: Nicol +description: This is Seven Nicol's description +facsimileTelephoneNumber: +1 804 131-9362 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 323-7184 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: NicolS +givenName: Seven +mail: NicolS@3f7557160f794dbf9536e20aa95467b3.bitwarden.com +carLicense: HTLQCO +departmentNumber: 1643 +employeeType: Employee +homePhone: +1 804 986-6395 +initials: S. N. +mobile: +1 804 788-1642 +pager: +1 804 959-4406 +roomNumber: 9431 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jeannine Forsythe,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeannine Forsythe +sn: Forsythe +description: This is Jeannine Forsythe's description +facsimileTelephoneNumber: +1 804 645-1581 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 180-7461 +title: Chief Peons Developer +userPassword: Password1 +uid: ForsythJ +givenName: Jeannine +mail: ForsythJ@a58f1d89c8df4bb585be88ea46688614.bitwarden.com +carLicense: AQ9OCU +departmentNumber: 3863 +employeeType: Contract +homePhone: +1 804 652-3441 +initials: J. F. +mobile: +1 804 980-1816 +pager: +1 804 959-7735 +roomNumber: 9040 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tilmon Taheri,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilmon Taheri +sn: Taheri +description: This is Tilmon Taheri's description +facsimileTelephoneNumber: +1 206 652-9779 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 206 849-8749 +title: Associate Administrative Admin +userPassword: Password1 +uid: TaheriT +givenName: Tilmon +mail: TaheriT@8c0b7ef96d07487ba2923e77c73234f0.bitwarden.com +carLicense: U2M4PN +departmentNumber: 8482 +employeeType: Employee +homePhone: +1 206 625-9592 +initials: T. T. +mobile: +1 206 106-4854 +pager: +1 206 601-9212 +roomNumber: 9270 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Svr Krishnan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Svr Krishnan +sn: Krishnan +description: This is Svr Krishnan's description +facsimileTelephoneNumber: +1 408 973-3817 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 298-5817 +title: Supreme Janitorial Punk +userPassword: Password1 +uid: KrishnaS +givenName: Svr +mail: KrishnaS@36d678241c3f4fb4beaa7d9336f3b523.bitwarden.com +carLicense: 1Y5EH8 +departmentNumber: 1895 +employeeType: Contract +homePhone: +1 408 932-9668 +initials: S. K. +mobile: +1 408 957-6552 +pager: +1 408 567-7524 +roomNumber: 8958 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Niki Khurana,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niki Khurana +sn: Khurana +description: This is Niki Khurana's description +facsimileTelephoneNumber: +1 510 545-8200 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 313-4718 +title: Master Product Development Fellow +userPassword: Password1 +uid: KhuranaN +givenName: Niki +mail: KhuranaN@b034a4332db1440db9d21ffa224b40ad.bitwarden.com +carLicense: 468JSO +departmentNumber: 8804 +employeeType: Normal +homePhone: +1 510 473-3011 +initials: N. K. +mobile: +1 510 992-3055 +pager: +1 510 473-5220 +roomNumber: 9507 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vmcord Saikaley +sn: Saikaley +description: This is Vmcord Saikaley's description +facsimileTelephoneNumber: +1 213 646-9780 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 523-8542 +title: Junior Product Development Writer +userPassword: Password1 +uid: SaikaleV +givenName: Vmcord +mail: SaikaleV@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com +carLicense: J1IACA +departmentNumber: 3891 +employeeType: Contract +homePhone: +1 213 432-3803 +initials: V. S. +mobile: +1 213 886-7489 +pager: +1 213 128-3914 +roomNumber: 9625 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Duong Laux,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duong Laux +sn: Laux +description: This is Duong Laux's description +facsimileTelephoneNumber: +1 804 959-4191 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 103-5198 +title: Junior Human Resources Director +userPassword: Password1 +uid: LauxD +givenName: Duong +mail: LauxD@6ad50b5570274446ac57cf22bb8d002a.bitwarden.com +carLicense: TRWB6B +departmentNumber: 2978 +employeeType: Employee +homePhone: +1 804 979-1123 +initials: D. L. +mobile: +1 804 826-8891 +pager: +1 804 602-2313 +roomNumber: 8106 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vevay Isert,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vevay Isert +sn: Isert +description: This is Vevay Isert's description +facsimileTelephoneNumber: +1 510 327-3634 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 942-5379 +title: Associate Management Technician +userPassword: Password1 +uid: IsertV +givenName: Vevay +mail: IsertV@761b142c7930458e927f8f3e0fb5672f.bitwarden.com +carLicense: 90C6EN +departmentNumber: 8034 +employeeType: Contract +homePhone: +1 510 735-6468 +initials: V. I. +mobile: +1 510 394-6538 +pager: +1 510 963-5632 +roomNumber: 8804 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lonnie Visser,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lonnie Visser +sn: Visser +description: This is Lonnie Visser's description +facsimileTelephoneNumber: +1 415 206-9597 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 183-8217 +title: Master Management Punk +userPassword: Password1 +uid: VisserL +givenName: Lonnie +mail: VisserL@a67ff5b1ad97429ba599b05adf0b8c32.bitwarden.com +carLicense: I052GD +departmentNumber: 7706 +employeeType: Contract +homePhone: +1 415 453-6327 +initials: L. V. +mobile: +1 415 835-9367 +pager: +1 415 315-7281 +roomNumber: 8970 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chungsik Choquette,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chungsik Choquette +sn: Choquette +description: This is Chungsik Choquette's description +facsimileTelephoneNumber: +1 213 918-4128 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 213 679-8018 +title: Chief Product Development Consultant +userPassword: Password1 +uid: ChoquetC +givenName: Chungsik +mail: ChoquetC@683e25fc9db544c199938de64838b325.bitwarden.com +carLicense: MB5L3D +departmentNumber: 9755 +employeeType: Employee +homePhone: +1 213 580-1140 +initials: C. C. +mobile: +1 213 568-8456 +pager: +1 213 873-6107 +roomNumber: 9590 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kalli Meilleur,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalli Meilleur +sn: Meilleur +description: This is Kalli Meilleur's description +facsimileTelephoneNumber: +1 206 960-5995 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 571-5765 +title: Associate Administrative Writer +userPassword: Password1 +uid: MeilleuK +givenName: Kalli +mail: MeilleuK@f48d7d3b63134ad1b2fb9b6ebafa3028.bitwarden.com +carLicense: 8TL1K9 +departmentNumber: 3068 +employeeType: Employee +homePhone: +1 206 616-7623 +initials: K. M. +mobile: +1 206 303-7825 +pager: +1 206 895-2652 +roomNumber: 8356 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Merline Riggs,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merline Riggs +sn: Riggs +description: This is Merline Riggs's description +facsimileTelephoneNumber: +1 804 955-6962 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 767-4850 +title: Junior Product Development Admin +userPassword: Password1 +uid: RiggsM +givenName: Merline +mail: RiggsM@baace83050b144e78a7deeac3e4a1a83.bitwarden.com +carLicense: YDRSX9 +departmentNumber: 4936 +employeeType: Employee +homePhone: +1 804 366-7038 +initials: M. R. +mobile: +1 804 333-7437 +pager: +1 804 940-8768 +roomNumber: 9347 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Milka Parkes,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milka Parkes +sn: Parkes +description: This is Milka Parkes's description +facsimileTelephoneNumber: +1 804 740-4796 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 456-8736 +title: Associate Administrative Evangelist +userPassword: Password1 +uid: ParkesM +givenName: Milka +mail: ParkesM@b0926f5fa5f345dab897ee36737c0cbd.bitwarden.com +carLicense: 5VWA47 +departmentNumber: 4082 +employeeType: Employee +homePhone: +1 804 230-5243 +initials: M. P. +mobile: +1 804 256-9320 +pager: +1 804 444-8997 +roomNumber: 8353 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bakel Fisette,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bakel Fisette +sn: Fisette +description: This is Bakel Fisette's description +facsimileTelephoneNumber: +1 415 563-4902 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 817-6835 +title: Associate Management Grunt +userPassword: Password1 +uid: FisetteB +givenName: Bakel +mail: FisetteB@78e39349ef7749648d2cb3e7b1e56508.bitwarden.com +carLicense: F8R4M4 +departmentNumber: 8661 +employeeType: Employee +homePhone: +1 415 859-8505 +initials: B. F. +mobile: +1 415 530-8957 +pager: +1 415 850-6358 +roomNumber: 9017 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anjanette Sookdeo +sn: Sookdeo +description: This is Anjanette Sookdeo's description +facsimileTelephoneNumber: +1 510 209-7048 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 515-5711 +title: Junior Payroll Fellow +userPassword: Password1 +uid: SookdeoA +givenName: Anjanette +mail: SookdeoA@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com +carLicense: 8G5DDV +departmentNumber: 1779 +employeeType: Normal +homePhone: +1 510 748-1141 +initials: A. S. +mobile: +1 510 425-9297 +pager: +1 510 426-2808 +roomNumber: 9822 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kiley Hester,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiley Hester +sn: Hester +description: This is Kiley Hester's description +facsimileTelephoneNumber: +1 213 302-5020 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 602-3272 +title: Junior Product Testing Figurehead +userPassword: Password1 +uid: HesterK +givenName: Kiley +mail: HesterK@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com +carLicense: CV580V +departmentNumber: 8970 +employeeType: Normal +homePhone: +1 213 221-7785 +initials: K. H. +mobile: +1 213 274-4745 +pager: +1 213 191-5189 +roomNumber: 8878 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eydie Edgar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eydie Edgar +sn: Edgar +description: This is Eydie Edgar's description +facsimileTelephoneNumber: +1 206 605-2720 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 352-8117 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: EdgarE +givenName: Eydie +mail: EdgarE@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com +carLicense: 8TB8JL +departmentNumber: 8471 +employeeType: Employee +homePhone: +1 206 404-8658 +initials: E. E. +mobile: +1 206 218-8212 +pager: +1 206 668-1283 +roomNumber: 9222 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sherwyn Monn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherwyn Monn +sn: Monn +description: This is Sherwyn Monn's description +facsimileTelephoneNumber: +1 818 126-5275 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 187-7888 +title: Supreme Administrative Manager +userPassword: Password1 +uid: MonnS +givenName: Sherwyn +mail: MonnS@173d5ea897d34c6da6358f054024f707.bitwarden.com +carLicense: 81Y7R3 +departmentNumber: 4760 +employeeType: Employee +homePhone: +1 818 513-7736 +initials: S. M. +mobile: +1 818 219-8353 +pager: +1 818 727-9161 +roomNumber: 8278 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Danna Hagenbuch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danna Hagenbuch +sn: Hagenbuch +description: This is Danna Hagenbuch's description +facsimileTelephoneNumber: +1 408 207-4671 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 666-2052 +title: Supreme Management Figurehead +userPassword: Password1 +uid: HagenbuD +givenName: Danna +mail: HagenbuD@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com +carLicense: 04G25A +departmentNumber: 1954 +employeeType: Employee +homePhone: +1 408 521-6037 +initials: D. H. +mobile: +1 408 853-9080 +pager: +1 408 813-7500 +roomNumber: 9644 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Flossi Davidson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flossi Davidson +sn: Davidson +description: This is Flossi Davidson's description +facsimileTelephoneNumber: +1 213 630-2597 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 800-8071 +title: Associate Management Grunt +userPassword: Password1 +uid: DavidsoF +givenName: Flossi +mail: DavidsoF@7f720158632c42a398491b4d094f5558.bitwarden.com +carLicense: 5JNCPL +departmentNumber: 9196 +employeeType: Normal +homePhone: +1 213 799-4783 +initials: F. D. +mobile: +1 213 907-3834 +pager: +1 213 654-2288 +roomNumber: 8392 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rosy Bergmann,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosy Bergmann +sn: Bergmann +description: This is Rosy Bergmann's description +facsimileTelephoneNumber: +1 206 218-3410 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 479-2533 +title: Junior Administrative Manager +userPassword: Password1 +uid: BergmanR +givenName: Rosy +mail: BergmanR@57edeceb332942988b2e62feed2c524a.bitwarden.com +carLicense: IK3M2P +departmentNumber: 8548 +employeeType: Employee +homePhone: +1 206 119-1467 +initials: R. B. +mobile: +1 206 197-7705 +pager: +1 206 131-9206 +roomNumber: 8184 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosabel VanDyke +sn: VanDyke +description: This is Rosabel VanDyke's description +facsimileTelephoneNumber: +1 213 491-4907 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 254-6873 +title: Master Human Resources Punk +userPassword: Password1 +uid: VanDykeR +givenName: Rosabel +mail: VanDykeR@07a219dc36ae49e5a7c3fca4d77987a8.bitwarden.com +carLicense: IW73SW +departmentNumber: 3420 +employeeType: Employee +homePhone: +1 213 897-8097 +initials: R. V. +mobile: +1 213 593-4830 +pager: +1 213 623-9648 +roomNumber: 8451 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huanyu Longfield +sn: Longfield +description: This is Huanyu Longfield's description +facsimileTelephoneNumber: +1 415 326-9200 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 819-4213 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: LongfieH +givenName: Huanyu +mail: LongfieH@40a22fdf1b874c29a422cf0d00644473.bitwarden.com +carLicense: WBEV5G +departmentNumber: 2518 +employeeType: Employee +homePhone: +1 415 772-1327 +initials: H. L. +mobile: +1 415 647-5331 +pager: +1 415 591-4686 +roomNumber: 9789 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chrystel Thorslund +sn: Thorslund +description: This is Chrystel Thorslund's description +facsimileTelephoneNumber: +1 510 605-5501 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 542-6689 +title: Chief Payroll Manager +userPassword: Password1 +uid: ThorsluC +givenName: Chrystel +mail: ThorsluC@3eb77d9e6bdc439197d45c120ada5eb9.bitwarden.com +carLicense: TQQD0M +departmentNumber: 9066 +employeeType: Contract +homePhone: +1 510 784-6154 +initials: C. T. +mobile: +1 510 423-4075 +pager: +1 510 724-7877 +roomNumber: 8428 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Larine Broca,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Larine Broca +sn: Broca +description: This is Larine Broca's description +facsimileTelephoneNumber: +1 213 628-4486 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 866-3875 +title: Master Peons Developer +userPassword: Password1 +uid: BrocaL +givenName: Larine +mail: BrocaL@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com +carLicense: XEGL20 +departmentNumber: 9899 +employeeType: Employee +homePhone: +1 213 743-8253 +initials: L. B. +mobile: +1 213 823-1017 +pager: +1 213 927-3866 +roomNumber: 8074 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherish Sandhu +sn: Sandhu +description: This is Cherish Sandhu's description +facsimileTelephoneNumber: +1 510 737-6106 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 883-9808 +title: Master Product Testing Evangelist +userPassword: Password1 +uid: SandhuC +givenName: Cherish +mail: SandhuC@b521092c73d244d8bb078d1c52e80bae.bitwarden.com +carLicense: 3Y6JFO +departmentNumber: 9217 +employeeType: Normal +homePhone: +1 510 271-2032 +initials: C. S. +mobile: +1 510 502-8401 +pager: +1 510 752-6585 +roomNumber: 8773 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Therine McCurdy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Therine McCurdy +sn: McCurdy +description: This is Therine McCurdy's description +facsimileTelephoneNumber: +1 206 161-6343 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 818-1738 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: McCurdyT +givenName: Therine +mail: McCurdyT@6f2328709fbe4233b85bba3d4ce3d844.bitwarden.com +carLicense: BTPNC2 +departmentNumber: 6971 +employeeType: Employee +homePhone: +1 206 395-6196 +initials: T. M. +mobile: +1 206 485-1771 +pager: +1 206 129-5505 +roomNumber: 8132 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Clarice Travers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarice Travers +sn: Travers +description: This is Clarice Travers's description +facsimileTelephoneNumber: +1 206 701-6937 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 225-2046 +title: Supreme Payroll Czar +userPassword: Password1 +uid: TraversC +givenName: Clarice +mail: TraversC@06521bdd507441e9a09de35a0e462c1a.bitwarden.com +carLicense: 3M6K9S +departmentNumber: 5856 +employeeType: Contract +homePhone: +1 206 794-5531 +initials: C. T. +mobile: +1 206 125-8378 +pager: +1 206 500-9513 +roomNumber: 9617 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dacey Bedard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dacey Bedard +sn: Bedard +description: This is Dacey Bedard's description +facsimileTelephoneNumber: +1 213 998-4798 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 837-3841 +title: Supreme Product Testing Architect +userPassword: Password1 +uid: BedardD +givenName: Dacey +mail: BedardD@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com +carLicense: AJOC75 +departmentNumber: 4814 +employeeType: Contract +homePhone: +1 213 181-9546 +initials: D. B. +mobile: +1 213 172-9180 +pager: +1 213 340-6914 +roomNumber: 9194 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lissa Barsky,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lissa Barsky +sn: Barsky +description: This is Lissa Barsky's description +facsimileTelephoneNumber: +1 415 333-6435 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 415 214-5955 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: BarskyL +givenName: Lissa +mail: BarskyL@72d3ee658b6a43d28d374f5d8eed91ab.bitwarden.com +carLicense: UE0SYH +departmentNumber: 6110 +employeeType: Contract +homePhone: +1 415 922-1314 +initials: L. B. +mobile: +1 415 120-2240 +pager: +1 415 690-3892 +roomNumber: 9992 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lino Endrys,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lino Endrys +sn: Endrys +description: This is Lino Endrys's description +facsimileTelephoneNumber: +1 213 185-1397 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 828-1574 +title: Supreme Peons Artist +userPassword: Password1 +uid: EndrysL +givenName: Lino +mail: EndrysL@fc250c767129499c871d245494e9d9b6.bitwarden.com +carLicense: BT6161 +departmentNumber: 5485 +employeeType: Contract +homePhone: +1 213 899-1162 +initials: L. E. +mobile: +1 213 657-8633 +pager: +1 213 880-8515 +roomNumber: 9138 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fina WGA,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fina WGA +sn: WGA +description: This is Fina WGA's description +facsimileTelephoneNumber: +1 510 665-2611 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 510 992-9559 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: WGAF +givenName: Fina +mail: WGAF@a4017bf573f740adae75dd44a602bed4.bitwarden.com +carLicense: 5SD51S +departmentNumber: 1253 +employeeType: Contract +homePhone: +1 510 136-1621 +initials: F. W. +mobile: +1 510 891-6904 +pager: +1 510 532-3366 +roomNumber: 8642 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Munir Colton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Munir Colton +sn: Colton +description: This is Munir Colton's description +facsimileTelephoneNumber: +1 804 474-9068 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 558-7660 +title: Junior Human Resources Architect +userPassword: Password1 +uid: ColtonM +givenName: Munir +mail: ColtonM@0e3cc15d16b54ddeae75d206f48f1204.bitwarden.com +carLicense: N2YW90 +departmentNumber: 6020 +employeeType: Normal +homePhone: +1 804 778-2183 +initials: M. C. +mobile: +1 804 577-2907 +pager: +1 804 755-9021 +roomNumber: 8524 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marje Dallaire,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marje Dallaire +sn: Dallaire +description: This is Marje Dallaire's description +facsimileTelephoneNumber: +1 510 846-1263 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 510 200-9312 +title: Associate Payroll Dictator +userPassword: Password1 +uid: DallairM +givenName: Marje +mail: DallairM@b6643004ae7246a0a5c8bc0fc567f1b8.bitwarden.com +carLicense: X5MSE7 +departmentNumber: 9627 +employeeType: Normal +homePhone: +1 510 138-1390 +initials: M. D. +mobile: +1 510 301-6461 +pager: +1 510 158-7626 +roomNumber: 8881 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Farrah Meehan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farrah Meehan +sn: Meehan +description: This is Farrah Meehan's description +facsimileTelephoneNumber: +1 415 670-5708 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 932-8671 +title: Junior Administrative Dictator +userPassword: Password1 +uid: MeehanF +givenName: Farrah +mail: MeehanF@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com +carLicense: WB9BU7 +departmentNumber: 9525 +employeeType: Contract +homePhone: +1 415 254-3151 +initials: F. M. +mobile: +1 415 623-1835 +pager: +1 415 356-9899 +roomNumber: 9702 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tilda Alsop,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilda Alsop +sn: Alsop +description: This is Tilda Alsop's description +facsimileTelephoneNumber: +1 415 735-8642 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 372-6132 +title: Supreme Peons Janitor +userPassword: Password1 +uid: AlsopT +givenName: Tilda +mail: AlsopT@4ae1d64c9a5a4ca1a7356298a39877d9.bitwarden.com +carLicense: R03HHD +departmentNumber: 7355 +employeeType: Employee +homePhone: +1 415 557-6244 +initials: T. A. +mobile: +1 415 909-6484 +pager: +1 415 381-1027 +roomNumber: 9535 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leni Janovich,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leni Janovich +sn: Janovich +description: This is Leni Janovich's description +facsimileTelephoneNumber: +1 510 650-5699 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 872-4145 +title: Junior Peons Assistant +userPassword: Password1 +uid: JanovicL +givenName: Leni +mail: JanovicL@7e56f35864a04d13abbef377d8dec333.bitwarden.com +carLicense: 8GB7B8 +departmentNumber: 2899 +employeeType: Contract +homePhone: +1 510 523-7325 +initials: L. J. +mobile: +1 510 960-6617 +pager: +1 510 856-5092 +roomNumber: 8416 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Katrina Morreale,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katrina Morreale +sn: Morreale +description: This is Katrina Morreale's description +facsimileTelephoneNumber: +1 213 307-2688 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 877-4534 +title: Associate Payroll Admin +userPassword: Password1 +uid: MorrealK +givenName: Katrina +mail: MorrealK@dde38d4cf79a43e6be6fc2e886efaf99.bitwarden.com +carLicense: JD6IX0 +departmentNumber: 8154 +employeeType: Normal +homePhone: +1 213 746-9160 +initials: K. M. +mobile: +1 213 236-4153 +pager: +1 213 155-7185 +roomNumber: 8430 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hinda Briante,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hinda Briante +sn: Briante +description: This is Hinda Briante's description +facsimileTelephoneNumber: +1 408 550-2883 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 295-2016 +title: Chief Payroll Admin +userPassword: Password1 +uid: BrianteH +givenName: Hinda +mail: BrianteH@4d239de3030746348f24ce6068a42829.bitwarden.com +carLicense: CM24H3 +departmentNumber: 4675 +employeeType: Employee +homePhone: +1 408 678-3186 +initials: H. B. +mobile: +1 408 148-3394 +pager: +1 408 128-2023 +roomNumber: 9339 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Helli Frie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helli Frie +sn: Frie +description: This is Helli Frie's description +facsimileTelephoneNumber: +1 206 822-9485 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 499-9965 +title: Junior Human Resources Writer +userPassword: Password1 +uid: FrieH +givenName: Helli +mail: FrieH@ce4d0d0fb96d4c2eaa1d4595e57562a4.bitwarden.com +carLicense: V6NTLT +departmentNumber: 1629 +employeeType: Normal +homePhone: +1 206 832-2279 +initials: H. F. +mobile: +1 206 422-5293 +pager: +1 206 289-2988 +roomNumber: 9755 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Renell Ulrich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renell Ulrich +sn: Ulrich +description: This is Renell Ulrich's description +facsimileTelephoneNumber: +1 510 955-2084 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 510 341-8405 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: UlrichR +givenName: Renell +mail: UlrichR@d753a61915314cb8b467492897701efa.bitwarden.com +carLicense: 5G6Y9J +departmentNumber: 8708 +employeeType: Contract +homePhone: +1 510 259-8310 +initials: R. U. +mobile: +1 510 339-8179 +pager: +1 510 290-5097 +roomNumber: 9515 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raven EmdinSproule +sn: EmdinSproule +description: This is Raven EmdinSproule's description +facsimileTelephoneNumber: +1 818 680-5490 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 102-7469 +title: Associate Payroll Assistant +userPassword: Password1 +uid: EmdinSpR +givenName: Raven +mail: EmdinSpR@f57569f7524f4479b4d43ec8c220c303.bitwarden.com +carLicense: BEPKI6 +departmentNumber: 6199 +employeeType: Employee +homePhone: +1 818 554-6451 +initials: R. E. +mobile: +1 818 374-8185 +pager: +1 818 399-2603 +roomNumber: 9757 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Moel Taralp,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moel Taralp +sn: Taralp +description: This is Moel Taralp's description +facsimileTelephoneNumber: +1 510 825-3294 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 582-6402 +title: Supreme Human Resources Artist +userPassword: Password1 +uid: TaralpM +givenName: Moel +mail: TaralpM@541a9a67add74942af05ec9661f08230.bitwarden.com +carLicense: DPBA7P +departmentNumber: 4512 +employeeType: Normal +homePhone: +1 510 897-3845 +initials: M. T. +mobile: +1 510 737-4581 +pager: +1 510 124-8627 +roomNumber: 9989 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estel Hawryluk +sn: Hawryluk +description: This is Estel Hawryluk's description +facsimileTelephoneNumber: +1 804 499-1180 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 930-2632 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: HawryluE +givenName: Estel +mail: HawryluE@7a76f51f9f0b406b9e567bf7dd0f00c8.bitwarden.com +carLicense: QRK3P3 +departmentNumber: 1223 +employeeType: Normal +homePhone: +1 804 440-8771 +initials: E. H. +mobile: +1 804 760-6456 +pager: +1 804 194-2006 +roomNumber: 9376 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Keeley Rok,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keeley Rok +sn: Rok +description: This is Keeley Rok's description +facsimileTelephoneNumber: +1 408 743-8568 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 826-1634 +title: Chief Peons Evangelist +userPassword: Password1 +uid: RokK +givenName: Keeley +mail: RokK@1808029426c342b7ba28a7e8e39e2911.bitwarden.com +carLicense: KMALDV +departmentNumber: 7477 +employeeType: Employee +homePhone: +1 408 723-2791 +initials: K. R. +mobile: +1 408 805-8296 +pager: +1 408 529-9369 +roomNumber: 8489 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Britta Melucci,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Britta Melucci +sn: Melucci +description: This is Britta Melucci's description +facsimileTelephoneNumber: +1 213 998-2042 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 220-7685 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: MelucciB +givenName: Britta +mail: MelucciB@fa0b8cf1d3c34137bfd563ac76c1d5af.bitwarden.com +carLicense: 6TJEWG +departmentNumber: 1688 +employeeType: Employee +homePhone: +1 213 864-8346 +initials: B. M. +mobile: +1 213 769-9454 +pager: +1 213 222-3144 +roomNumber: 8631 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=StClair Farren,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: StClair Farren +sn: Farren +description: This is StClair Farren's description +facsimileTelephoneNumber: +1 415 990-7324 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 362-9934 +title: Master Product Development Engineer +userPassword: Password1 +uid: FarrenS +givenName: StClair +mail: FarrenS@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com +carLicense: UK3WE9 +departmentNumber: 7031 +employeeType: Contract +homePhone: +1 415 184-4648 +initials: S. F. +mobile: +1 415 230-5483 +pager: +1 415 479-1633 +roomNumber: 9530 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vino Papantonis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vino Papantonis +sn: Papantonis +description: This is Vino Papantonis's description +facsimileTelephoneNumber: +1 818 180-8167 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 959-4957 +title: Supreme Peons Grunt +userPassword: Password1 +uid: PapantoV +givenName: Vino +mail: PapantoV@ac22893bf0684aefaebb0a0decbe182b.bitwarden.com +carLicense: 6VAMTF +departmentNumber: 9659 +employeeType: Normal +homePhone: +1 818 495-5440 +initials: V. P. +mobile: +1 818 286-6703 +pager: +1 818 129-3129 +roomNumber: 8358 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sandi ENG,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandi ENG +sn: ENG +description: This is Sandi ENG's description +facsimileTelephoneNumber: +1 408 856-2673 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 879-2925 +title: Junior Administrative Engineer +userPassword: Password1 +uid: ENGS +givenName: Sandi +mail: ENGS@e0e7355126af4d6f962ec720851e512c.bitwarden.com +carLicense: WMATXW +departmentNumber: 2696 +employeeType: Contract +homePhone: +1 408 335-6050 +initials: S. E. +mobile: +1 408 161-3115 +pager: +1 408 614-2649 +roomNumber: 9134 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Michaela Blimkie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michaela Blimkie +sn: Blimkie +description: This is Michaela Blimkie's description +facsimileTelephoneNumber: +1 415 717-8385 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 679-3934 +title: Associate Payroll Architect +userPassword: Password1 +uid: BlimkieM +givenName: Michaela +mail: BlimkieM@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com +carLicense: 0BY5HP +departmentNumber: 5439 +employeeType: Contract +homePhone: +1 415 379-8473 +initials: M. B. +mobile: +1 415 408-9078 +pager: +1 415 926-7483 +roomNumber: 9256 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mort Kestelman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mort Kestelman +sn: Kestelman +description: This is Mort Kestelman's description +facsimileTelephoneNumber: +1 804 987-1167 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 810-1228 +title: Supreme Payroll Vice President +userPassword: Password1 +uid: KestelmM +givenName: Mort +mail: KestelmM@e1893d7ef9564395a0b1b816030adce2.bitwarden.com +carLicense: 6OQF3J +departmentNumber: 8981 +employeeType: Contract +homePhone: +1 804 721-7318 +initials: M. K. +mobile: +1 804 123-5211 +pager: +1 804 486-8089 +roomNumber: 9820 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ealasaid Kiang +sn: Kiang +description: This is Ealasaid Kiang's description +facsimileTelephoneNumber: +1 213 141-1301 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 410-8737 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: KiangE +givenName: Ealasaid +mail: KiangE@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com +carLicense: OY32XO +departmentNumber: 1919 +employeeType: Employee +homePhone: +1 213 816-6689 +initials: E. K. +mobile: +1 213 541-1468 +pager: +1 213 233-1199 +roomNumber: 9221 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Reinhold Briggs,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reinhold Briggs +sn: Briggs +description: This is Reinhold Briggs's description +facsimileTelephoneNumber: +1 206 179-2389 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 156-3443 +title: Associate Peons Fellow +userPassword: Password1 +uid: BriggsR +givenName: Reinhold +mail: BriggsR@7408ed731222450eb6a92df81540fc99.bitwarden.com +carLicense: FKYN38 +departmentNumber: 4621 +employeeType: Employee +homePhone: +1 206 686-2957 +initials: R. B. +mobile: +1 206 952-6269 +pager: +1 206 512-3448 +roomNumber: 9082 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Norbert Rider,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norbert Rider +sn: Rider +description: This is Norbert Rider's description +facsimileTelephoneNumber: +1 408 888-8767 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 596-8284 +title: Chief Payroll Writer +userPassword: Password1 +uid: RiderN +givenName: Norbert +mail: RiderN@1f0f559b444d45e3b1fe4488d0fe440e.bitwarden.com +carLicense: CPC38G +departmentNumber: 6406 +employeeType: Contract +homePhone: +1 408 735-1203 +initials: N. R. +mobile: +1 408 833-8153 +pager: +1 408 428-5452 +roomNumber: 8527 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eveline Smelters,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eveline Smelters +sn: Smelters +description: This is Eveline Smelters's description +facsimileTelephoneNumber: +1 206 988-5533 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 271-2058 +title: Master Administrative Stooge +userPassword: Password1 +uid: SmelterE +givenName: Eveline +mail: SmelterE@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com +carLicense: 95G06N +departmentNumber: 5745 +employeeType: Normal +homePhone: +1 206 323-7672 +initials: E. S. +mobile: +1 206 576-3911 +pager: +1 206 817-3299 +roomNumber: 8606 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elinor Stambouli,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elinor Stambouli +sn: Stambouli +description: This is Elinor Stambouli's description +facsimileTelephoneNumber: +1 818 113-6651 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 362-3157 +title: Chief Management Evangelist +userPassword: Password1 +uid: StambouE +givenName: Elinor +mail: StambouE@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com +carLicense: BUM884 +departmentNumber: 2778 +employeeType: Normal +homePhone: +1 818 726-6099 +initials: E. S. +mobile: +1 818 310-4576 +pager: +1 818 460-2086 +roomNumber: 8746 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maribel Whiteford +sn: Whiteford +description: This is Maribel Whiteford's description +facsimileTelephoneNumber: +1 818 556-4977 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 244-1395 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: WhitefoM +givenName: Maribel +mail: WhitefoM@b0c48599d24847958412615828406699.bitwarden.com +carLicense: GHN2IK +departmentNumber: 2077 +employeeType: Employee +homePhone: +1 818 124-7012 +initials: M. W. +mobile: +1 818 150-2493 +pager: +1 818 295-2365 +roomNumber: 8447 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Donnette Kenol,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donnette Kenol +sn: Kenol +description: This is Donnette Kenol's description +facsimileTelephoneNumber: +1 213 661-8815 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 797-6731 +title: Supreme Administrative Evangelist +userPassword: Password1 +uid: KenolD +givenName: Donnette +mail: KenolD@f9cc3d472225428da9ff7fce4cb3bfb3.bitwarden.com +carLicense: HMG667 +departmentNumber: 1992 +employeeType: Normal +homePhone: +1 213 444-6332 +initials: D. K. +mobile: +1 213 398-9898 +pager: +1 213 714-7255 +roomNumber: 9504 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Margette Keogh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margette Keogh +sn: Keogh +description: This is Margette Keogh's description +facsimileTelephoneNumber: +1 206 765-2237 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 782-1346 +title: Junior Product Development Technician +userPassword: Password1 +uid: KeoghM +givenName: Margette +mail: KeoghM@3f1cc5153abb4e0f860ad9c6b08e10e5.bitwarden.com +carLicense: EMD5AC +departmentNumber: 4233 +employeeType: Contract +homePhone: +1 206 534-2782 +initials: M. K. +mobile: +1 206 950-1686 +pager: +1 206 659-5346 +roomNumber: 9888 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Qainfo Goodbar +sn: Goodbar +description: This is Qainfo Goodbar's description +facsimileTelephoneNumber: +1 213 248-3247 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 166-9295 +title: Supreme Human Resources Director +userPassword: Password1 +uid: GoodbarQ +givenName: Qainfo +mail: GoodbarQ@e3e39ba9c49a4a66982393d6f26bc8b1.bitwarden.com +carLicense: V9M8CL +departmentNumber: 3315 +employeeType: Normal +homePhone: +1 213 377-2105 +initials: Q. G. +mobile: +1 213 174-6964 +pager: +1 213 678-6737 +roomNumber: 9631 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Makam Kumagai,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Makam Kumagai +sn: Kumagai +description: This is Makam Kumagai's description +facsimileTelephoneNumber: +1 415 835-6422 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 495-2463 +title: Associate Product Development Warrior +userPassword: Password1 +uid: KumagaiM +givenName: Makam +mail: KumagaiM@f41afebdf3e64dc8bbc4c83491a13722.bitwarden.com +carLicense: J3HB6Q +departmentNumber: 2123 +employeeType: Contract +homePhone: +1 415 242-3034 +initials: M. K. +mobile: +1 415 684-4876 +pager: +1 415 233-1022 +roomNumber: 9932 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tallou Vairavan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tallou Vairavan +sn: Vairavan +description: This is Tallou Vairavan's description +facsimileTelephoneNumber: +1 408 727-6878 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 408 495-3327 +title: Master Management Consultant +userPassword: Password1 +uid: VairavaT +givenName: Tallou +mail: VairavaT@f36f45f8205e4b108d066ef8eb28e68b.bitwarden.com +carLicense: FJJ6JO +departmentNumber: 4592 +employeeType: Employee +homePhone: +1 408 123-9214 +initials: T. V. +mobile: +1 408 235-8483 +pager: +1 408 183-9535 +roomNumber: 8153 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Elana Derrett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elana Derrett +sn: Derrett +description: This is Elana Derrett's description +facsimileTelephoneNumber: +1 408 572-9624 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 356-3255 +title: Master Management Figurehead +userPassword: Password1 +uid: DerrettE +givenName: Elana +mail: DerrettE@d7e8af68284e4062b608faac310d89ae.bitwarden.com +carLicense: TOU6YX +departmentNumber: 4300 +employeeType: Employee +homePhone: +1 408 273-3823 +initials: E. D. +mobile: +1 408 261-7771 +pager: +1 408 438-9326 +roomNumber: 9501 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hanny Farranto,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanny Farranto +sn: Farranto +description: This is Hanny Farranto's description +facsimileTelephoneNumber: +1 206 895-1230 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 248-5090 +title: Junior Human Resources Writer +userPassword: Password1 +uid: FarrantH +givenName: Hanny +mail: FarrantH@ea15a193a8df46519e51db6c6a047dbd.bitwarden.com +carLicense: 94MQJ0 +departmentNumber: 9951 +employeeType: Employee +homePhone: +1 206 514-6232 +initials: H. F. +mobile: +1 206 130-9737 +pager: +1 206 139-3913 +roomNumber: 8872 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lucina Hobesh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucina Hobesh +sn: Hobesh +description: This is Lucina Hobesh's description +facsimileTelephoneNumber: +1 818 775-5842 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 818 492-9669 +title: Chief Payroll Assistant +userPassword: Password1 +uid: HobeshL +givenName: Lucina +mail: HobeshL@93250e1458e9462fb7830f342f899a75.bitwarden.com +carLicense: 83B63M +departmentNumber: 5729 +employeeType: Contract +homePhone: +1 818 672-9547 +initials: L. H. +mobile: +1 818 235-6750 +pager: +1 818 832-6713 +roomNumber: 9464 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jashvant Mellor,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jashvant Mellor +sn: Mellor +description: This is Jashvant Mellor's description +facsimileTelephoneNumber: +1 213 984-7103 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 633-3734 +title: Chief Administrative Czar +userPassword: Password1 +uid: MellorJ +givenName: Jashvant +mail: MellorJ@55336785d1804c1187eaae0c065b51fd.bitwarden.com +carLicense: 4OBG8M +departmentNumber: 2393 +employeeType: Contract +homePhone: +1 213 189-5312 +initials: J. M. +mobile: +1 213 836-6062 +pager: +1 213 677-1887 +roomNumber: 8370 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dupuy McNeese,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dupuy McNeese +sn: McNeese +description: This is Dupuy McNeese's description +facsimileTelephoneNumber: +1 408 694-2377 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 662-8092 +title: Supreme Administrative Consultant +userPassword: Password1 +uid: McNeeseD +givenName: Dupuy +mail: McNeeseD@86125263637c4474aade3dd7790bda7e.bitwarden.com +carLicense: WRMG28 +departmentNumber: 5912 +employeeType: Normal +homePhone: +1 408 882-3537 +initials: D. M. +mobile: +1 408 664-4020 +pager: +1 408 132-9081 +roomNumber: 9929 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ying Forbs,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ying Forbs +sn: Forbs +description: This is Ying Forbs's description +facsimileTelephoneNumber: +1 415 956-9902 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 896-7997 +title: Master Janitorial Madonna +userPassword: Password1 +uid: ForbsY +givenName: Ying +mail: ForbsY@56ff7c3ad2a74f428698e9d39e33820f.bitwarden.com +carLicense: C0QPKX +departmentNumber: 2294 +employeeType: Normal +homePhone: +1 415 570-2932 +initials: Y. F. +mobile: +1 415 650-5374 +pager: +1 415 140-3941 +roomNumber: 9315 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Paper Cowell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paper Cowell +sn: Cowell +description: This is Paper Cowell's description +facsimileTelephoneNumber: +1 213 482-1760 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 935-7015 +title: Associate Payroll Czar +userPassword: Password1 +uid: CowellP +givenName: Paper +mail: CowellP@625cb40efd254ff9b90ed168d6dd3db9.bitwarden.com +carLicense: L3MH4P +departmentNumber: 4606 +employeeType: Normal +homePhone: +1 213 691-3946 +initials: P. C. +mobile: +1 213 335-1191 +pager: +1 213 769-5004 +roomNumber: 9332 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vispy Snair,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vispy Snair +sn: Snair +description: This is Vispy Snair's description +facsimileTelephoneNumber: +1 804 773-9228 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 913-4181 +title: Associate Product Development Fellow +userPassword: Password1 +uid: SnairV +givenName: Vispy +mail: SnairV@9d84faf7708a4fd5a3f8345e3cbc0463.bitwarden.com +carLicense: 3V68IY +departmentNumber: 3755 +employeeType: Employee +homePhone: +1 804 106-1656 +initials: V. S. +mobile: +1 804 848-4588 +pager: +1 804 124-6377 +roomNumber: 9907 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mona DeCecco,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mona DeCecco +sn: DeCecco +description: This is Mona DeCecco's description +facsimileTelephoneNumber: +1 213 882-3716 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 428-6480 +title: Master Product Development Stooge +userPassword: Password1 +uid: DeCeccoM +givenName: Mona +mail: DeCeccoM@3b5097c7d33f4dd5b850d3928945e3fb.bitwarden.com +carLicense: 51EVGS +departmentNumber: 1100 +employeeType: Contract +homePhone: +1 213 425-1001 +initials: M. D. +mobile: +1 213 502-6296 +pager: +1 213 448-2216 +roomNumber: 9835 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karolien Beznowski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karolien Beznowski +sn: Beznowski +description: This is Karolien Beznowski's description +facsimileTelephoneNumber: +1 415 286-5391 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 509-2248 +title: Junior Payroll Director +userPassword: Password1 +uid: BeznowsK +givenName: Karolien +mail: BeznowsK@3e2956746c7c41b7b4dc5e63792f43cc.bitwarden.com +carLicense: CJ40CJ +departmentNumber: 1825 +employeeType: Contract +homePhone: +1 415 867-2982 +initials: K. B. +mobile: +1 415 973-1275 +pager: +1 415 303-1466 +roomNumber: 8300 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arabela Lobaugh +sn: Lobaugh +description: This is Arabela Lobaugh's description +facsimileTelephoneNumber: +1 510 243-8722 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 592-9601 +title: Junior Product Testing Architect +userPassword: Password1 +uid: LobaughA +givenName: Arabela +mail: LobaughA@5bd598c0d9694b5a98586530464323e1.bitwarden.com +carLicense: 6E57JC +departmentNumber: 6250 +employeeType: Normal +homePhone: +1 510 247-1207 +initials: A. L. +mobile: +1 510 323-2838 +pager: +1 510 825-2075 +roomNumber: 8985 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Frinel Godcharles,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frinel Godcharles +sn: Godcharles +description: This is Frinel Godcharles's description +facsimileTelephoneNumber: +1 408 935-7314 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 950-9979 +title: Chief Product Development Manager +userPassword: Password1 +uid: GodcharF +givenName: Frinel +mail: GodcharF@56069289c8d64d7e83fba8ed9cea781f.bitwarden.com +carLicense: DFFX2I +departmentNumber: 9780 +employeeType: Employee +homePhone: +1 408 351-7660 +initials: F. G. +mobile: +1 408 687-8846 +pager: +1 408 437-6164 +roomNumber: 8943 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dung Goldstein,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dung Goldstein +sn: Goldstein +description: This is Dung Goldstein's description +facsimileTelephoneNumber: +1 818 548-7051 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 493-1750 +title: Junior Product Development Madonna +userPassword: Password1 +uid: GoldsteD +givenName: Dung +mail: GoldsteD@a0e76cfa1c434c8b8797cc038ac77ad3.bitwarden.com +carLicense: LNYHIC +departmentNumber: 9658 +employeeType: Contract +homePhone: +1 818 228-4673 +initials: D. G. +mobile: +1 818 334-5396 +pager: +1 818 611-6052 +roomNumber: 8109 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Scarlet Coody,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Scarlet Coody +sn: Coody +description: This is Scarlet Coody's description +facsimileTelephoneNumber: +1 804 480-1167 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 967-8353 +title: Chief Product Development Janitor +userPassword: Password1 +uid: CoodyS +givenName: Scarlet +mail: CoodyS@ae5f65ffb5c9447faad9235fe08e30d3.bitwarden.com +carLicense: N1UMWG +departmentNumber: 3127 +employeeType: Employee +homePhone: +1 804 265-2421 +initials: S. C. +mobile: +1 804 841-6212 +pager: +1 804 133-6911 +roomNumber: 9453 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Julina Stahly,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julina Stahly +sn: Stahly +description: This is Julina Stahly's description +facsimileTelephoneNumber: +1 213 628-6371 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 986-1201 +title: Chief Product Testing Technician +userPassword: Password1 +uid: StahlyJ +givenName: Julina +mail: StahlyJ@9d473530c714418981d7e4ad1f672212.bitwarden.com +carLicense: U7N03A +departmentNumber: 5305 +employeeType: Employee +homePhone: +1 213 596-2773 +initials: J. S. +mobile: +1 213 950-2121 +pager: +1 213 552-5050 +roomNumber: 8800 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kippy Roman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kippy Roman +sn: Roman +description: This is Kippy Roman's description +facsimileTelephoneNumber: +1 213 348-9426 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 411-8616 +title: Supreme Payroll Admin +userPassword: Password1 +uid: RomanK +givenName: Kippy +mail: RomanK@3986b5b118ef4d79a84f9f227789123a.bitwarden.com +carLicense: KCQQ2G +departmentNumber: 6426 +employeeType: Normal +homePhone: +1 213 291-8687 +initials: K. R. +mobile: +1 213 503-8541 +pager: +1 213 448-8494 +roomNumber: 8624 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Helsa Stahly,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helsa Stahly +sn: Stahly +description: This is Helsa Stahly's description +facsimileTelephoneNumber: +1 213 838-4877 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 529-3683 +title: Junior Management Architect +userPassword: Password1 +uid: StahlyH +givenName: Helsa +mail: StahlyH@e28d4d2595974c10b2f19b4fce54fe69.bitwarden.com +carLicense: 2FBQH0 +departmentNumber: 7774 +employeeType: Employee +homePhone: +1 213 812-1363 +initials: H. S. +mobile: +1 213 884-8466 +pager: +1 213 421-4298 +roomNumber: 9621 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hiroko Whetston,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hiroko Whetston +sn: Whetston +description: This is Hiroko Whetston's description +facsimileTelephoneNumber: +1 408 663-7539 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 316-7491 +title: Chief Product Development Consultant +userPassword: Password1 +uid: WhetstoH +givenName: Hiroko +mail: WhetstoH@44b6ea0e30a2464c8f90bd5c6aec9902.bitwarden.com +carLicense: PJ7XPC +departmentNumber: 8704 +employeeType: Employee +homePhone: +1 408 997-3204 +initials: H. W. +mobile: +1 408 739-5374 +pager: +1 408 470-7777 +roomNumber: 8787 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aviva Harwerth,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aviva Harwerth +sn: Harwerth +description: This is Aviva Harwerth's description +facsimileTelephoneNumber: +1 415 662-7824 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 380-8984 +title: Master Peons Vice President +userPassword: Password1 +uid: HarwertA +givenName: Aviva +mail: HarwertA@6ee94998653244b3b64234a9ee1b8607.bitwarden.com +carLicense: 5F7KNO +departmentNumber: 9727 +employeeType: Normal +homePhone: +1 415 562-7034 +initials: A. H. +mobile: +1 415 644-3632 +pager: +1 415 445-1694 +roomNumber: 8192 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ambur McNerlan +sn: McNerlan +description: This is Ambur McNerlan's description +facsimileTelephoneNumber: +1 510 343-1654 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 450-4450 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: McNerlaA +givenName: Ambur +mail: McNerlaA@668a7be7467f426eaa481fcc0af0008d.bitwarden.com +carLicense: DRUXYU +departmentNumber: 5810 +employeeType: Contract +homePhone: +1 510 994-2106 +initials: A. M. +mobile: +1 510 809-1567 +pager: +1 510 193-9412 +roomNumber: 9235 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alida Ferriera,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alida Ferriera +sn: Ferriera +description: This is Alida Ferriera's description +facsimileTelephoneNumber: +1 408 658-7202 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 133-9302 +title: Associate Peons Consultant +userPassword: Password1 +uid: FerrierA +givenName: Alida +mail: FerrierA@35f280bc0ed641759cb3d7609114d8c5.bitwarden.com +carLicense: VH0M3M +departmentNumber: 4149 +employeeType: Normal +homePhone: +1 408 581-8985 +initials: A. F. +mobile: +1 408 722-2785 +pager: +1 408 761-6106 +roomNumber: 9209 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vyky ONeal,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vyky ONeal +sn: ONeal +description: This is Vyky ONeal's description +facsimileTelephoneNumber: +1 804 814-2474 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 804 665-1504 +title: Junior Payroll Stooge +userPassword: Password1 +uid: ONealV +givenName: Vyky +mail: ONealV@b847cd495a564fd88ad378e323d86f9e.bitwarden.com +carLicense: 8K816W +departmentNumber: 6950 +employeeType: Employee +homePhone: +1 804 183-6362 +initials: V. O. +mobile: +1 804 396-7673 +pager: +1 804 877-7904 +roomNumber: 9364 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Daya Loader,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daya Loader +sn: Loader +description: This is Daya Loader's description +facsimileTelephoneNumber: +1 415 982-5922 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 314-7060 +title: Supreme Peons Stooge +userPassword: Password1 +uid: LoaderD +givenName: Daya +mail: LoaderD@32037f3bd743420296270ff80da78e1b.bitwarden.com +carLicense: AW6LJR +departmentNumber: 1410 +employeeType: Contract +homePhone: +1 415 507-8798 +initials: D. L. +mobile: +1 415 143-7968 +pager: +1 415 932-6127 +roomNumber: 8604 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Katsunori Bouret,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katsunori Bouret +sn: Bouret +description: This is Katsunori Bouret's description +facsimileTelephoneNumber: +1 415 553-7926 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 880-7122 +title: Chief Management Dictator +userPassword: Password1 +uid: BouretK +givenName: Katsunori +mail: BouretK@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com +carLicense: 9S5UQD +departmentNumber: 7140 +employeeType: Employee +homePhone: +1 415 292-4965 +initials: K. B. +mobile: +1 415 607-2381 +pager: +1 415 384-3284 +roomNumber: 9022 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phyllys Eisler +sn: Eisler +description: This is Phyllys Eisler's description +facsimileTelephoneNumber: +1 818 873-6957 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 495-4824 +title: Junior Janitorial Warrior +userPassword: Password1 +uid: EislerP +givenName: Phyllys +mail: EislerP@9a848a7f732f427f954ab2017da007b8.bitwarden.com +carLicense: L2HEW6 +departmentNumber: 3674 +employeeType: Employee +homePhone: +1 818 552-3953 +initials: P. E. +mobile: +1 818 248-9608 +pager: +1 818 726-6335 +roomNumber: 8652 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorthy VanKessel +sn: VanKessel +description: This is Dorthy VanKessel's description +facsimileTelephoneNumber: +1 804 616-9621 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 122-3294 +title: Associate Payroll Stooge +userPassword: Password1 +uid: VanKessD +givenName: Dorthy +mail: VanKessD@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com +carLicense: O7P3VU +departmentNumber: 3061 +employeeType: Contract +homePhone: +1 804 428-6622 +initials: D. V. +mobile: +1 804 555-5867 +pager: +1 804 996-3485 +roomNumber: 9401 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rex Combellack,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rex Combellack +sn: Combellack +description: This is Rex Combellack's description +facsimileTelephoneNumber: +1 408 761-5099 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 273-2661 +title: Supreme Payroll Artist +userPassword: Password1 +uid: CombellR +givenName: Rex +mail: CombellR@6befdabbbc374615aeeed6f7a15c3c4b.bitwarden.com +carLicense: G2JRCJ +departmentNumber: 7455 +employeeType: Contract +homePhone: +1 408 615-9352 +initials: R. C. +mobile: +1 408 414-2400 +pager: +1 408 306-4326 +roomNumber: 9494 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tallia Videa,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tallia Videa +sn: Videa +description: This is Tallia Videa's description +facsimileTelephoneNumber: +1 213 488-2319 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 507-4173 +title: Master Management Madonna +userPassword: Password1 +uid: VideaT +givenName: Tallia +mail: VideaT@2c2f26204fa44156bad4b2a1a9213033.bitwarden.com +carLicense: 9OV504 +departmentNumber: 7584 +employeeType: Employee +homePhone: +1 213 816-1953 +initials: T. V. +mobile: +1 213 428-6648 +pager: +1 213 107-3807 +roomNumber: 8873 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Remy Lalonde,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Remy Lalonde +sn: Lalonde +description: This is Remy Lalonde's description +facsimileTelephoneNumber: +1 213 343-8610 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 778-7835 +title: Master Administrative Punk +userPassword: Password1 +uid: LalondeR +givenName: Remy +mail: LalondeR@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com +carLicense: CH4KTV +departmentNumber: 9165 +employeeType: Normal +homePhone: +1 213 717-2194 +initials: R. L. +mobile: +1 213 986-9708 +pager: +1 213 299-2910 +roomNumber: 8560 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tobi Houde,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tobi Houde +sn: Houde +description: This is Tobi Houde's description +facsimileTelephoneNumber: +1 206 165-6408 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 773-8642 +title: Chief Management Technician +userPassword: Password1 +uid: HoudeT +givenName: Tobi +mail: HoudeT@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com +carLicense: 0XUFQM +departmentNumber: 1472 +employeeType: Contract +homePhone: +1 206 478-6343 +initials: T. H. +mobile: +1 206 981-2290 +pager: +1 206 990-2745 +roomNumber: 8518 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tommi Luna,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tommi Luna +sn: Luna +description: This is Tommi Luna's description +facsimileTelephoneNumber: +1 213 230-7445 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 746-9606 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: LunaT +givenName: Tommi +mail: LunaT@e33560f5a7ee4aa48f9e5af574f51dac.bitwarden.com +carLicense: E3QQWM +departmentNumber: 7102 +employeeType: Normal +homePhone: +1 213 673-2098 +initials: T. L. +mobile: +1 213 825-8658 +pager: +1 213 960-6792 +roomNumber: 9379 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alkarim Kosnaskie +sn: Kosnaskie +description: This is Alkarim Kosnaskie's description +facsimileTelephoneNumber: +1 510 295-4944 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 485-7356 +title: Associate Peons Grunt +userPassword: Password1 +uid: KosnaskA +givenName: Alkarim +mail: KosnaskA@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com +carLicense: DRLSQD +departmentNumber: 5490 +employeeType: Employee +homePhone: +1 510 531-9426 +initials: A. K. +mobile: +1 510 114-9995 +pager: +1 510 746-2990 +roomNumber: 8301 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alana Gelo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alana Gelo +sn: Gelo +description: This is Alana Gelo's description +facsimileTelephoneNumber: +1 408 943-5919 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 558-4254 +title: Junior Human Resources Madonna +userPassword: Password1 +uid: GeloA +givenName: Alana +mail: GeloA@218d5b5316c646fa8e9db29549e3afff.bitwarden.com +carLicense: 9PFGU7 +departmentNumber: 8084 +employeeType: Normal +homePhone: +1 408 644-3258 +initials: A. G. +mobile: +1 408 784-9897 +pager: +1 408 563-6782 +roomNumber: 8338 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdaia Barnhart +sn: Barnhart +description: This is Magdaia Barnhart's description +facsimileTelephoneNumber: +1 213 367-5381 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 703-9894 +title: Junior Product Development Mascot +userPassword: Password1 +uid: BarnharM +givenName: Magdaia +mail: BarnharM@ad4942d8c3c341119939c679c4dae154.bitwarden.com +carLicense: H4UMCS +departmentNumber: 8829 +employeeType: Contract +homePhone: +1 213 519-5216 +initials: M. B. +mobile: +1 213 957-7341 +pager: +1 213 476-6993 +roomNumber: 8924 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Seven Salazar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seven Salazar +sn: Salazar +description: This is Seven Salazar's description +facsimileTelephoneNumber: +1 818 855-2504 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 117-5940 +title: Associate Management President +userPassword: Password1 +uid: SalazarS +givenName: Seven +mail: SalazarS@31218813d50546c8962cb2d31042f36f.bitwarden.com +carLicense: CF1RNT +departmentNumber: 4309 +employeeType: Contract +homePhone: +1 818 387-8984 +initials: S. S. +mobile: +1 818 334-9441 +pager: +1 818 774-8389 +roomNumber: 8449 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeffrey Zukas +sn: Zukas +description: This is Jeffrey Zukas's description +facsimileTelephoneNumber: +1 206 145-4849 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 271-4243 +title: Junior Human Resources President +userPassword: Password1 +uid: ZukasJ +givenName: Jeffrey +mail: ZukasJ@b9106f7d57f74a7b92af146111acb57d.bitwarden.com +carLicense: 3NC45L +departmentNumber: 8568 +employeeType: Employee +homePhone: +1 206 324-9868 +initials: J. Z. +mobile: +1 206 937-2079 +pager: +1 206 618-7115 +roomNumber: 9865 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bethanne DeSouza +sn: DeSouza +description: This is Bethanne DeSouza's description +facsimileTelephoneNumber: +1 415 140-2619 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 882-8439 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: DeSouzaB +givenName: Bethanne +mail: DeSouzaB@f78034ad70854ccbacb0124129d464fa.bitwarden.com +carLicense: 2CVW9F +departmentNumber: 3184 +employeeType: Employee +homePhone: +1 415 252-5772 +initials: B. D. +mobile: +1 415 813-7823 +pager: +1 415 352-9322 +roomNumber: 9948 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Conway Jenness,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Conway Jenness +sn: Jenness +description: This is Conway Jenness's description +facsimileTelephoneNumber: +1 206 260-1666 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 259-5103 +title: Chief Administrative Figurehead +userPassword: Password1 +uid: JennessC +givenName: Conway +mail: JennessC@752014cef4c74a4ea8012d4193349e8f.bitwarden.com +carLicense: EEQ2PE +departmentNumber: 5828 +employeeType: Normal +homePhone: +1 206 762-3278 +initials: C. J. +mobile: +1 206 842-2192 +pager: +1 206 219-4468 +roomNumber: 8087 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=VanKing Padgett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: VanKing Padgett +sn: Padgett +description: This is VanKing Padgett's description +facsimileTelephoneNumber: +1 408 367-3454 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 772-7538 +title: Associate Human Resources Writer +userPassword: Password1 +uid: PadgettV +givenName: VanKing +mail: PadgettV@7770d32208f64a63bf44fae15e8c6935.bitwarden.com +carLicense: 954R93 +departmentNumber: 5374 +employeeType: Normal +homePhone: +1 408 861-7749 +initials: V. P. +mobile: +1 408 264-4292 +pager: +1 408 255-5709 +roomNumber: 8111 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tansy Aronovich,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tansy Aronovich +sn: Aronovich +description: This is Tansy Aronovich's description +facsimileTelephoneNumber: +1 213 133-9450 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 397-2070 +title: Associate Product Development Evangelist +userPassword: Password1 +uid: AronoviT +givenName: Tansy +mail: AronoviT@281ce2096ed0496b9bf2ff2a6d46ed5b.bitwarden.com +carLicense: 7WT68N +departmentNumber: 9631 +employeeType: Contract +homePhone: +1 213 196-2010 +initials: T. A. +mobile: +1 213 677-1003 +pager: +1 213 620-6787 +roomNumber: 8317 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fidelity Shelley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fidelity Shelley +sn: Shelley +description: This is Fidelity Shelley's description +facsimileTelephoneNumber: +1 206 533-7386 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 206 315-5389 +title: Master Payroll Assistant +userPassword: Password1 +uid: ShelleyF +givenName: Fidelity +mail: ShelleyF@72be16396166453d9bb6d2ec3f220789.bitwarden.com +carLicense: 3O0DM3 +departmentNumber: 6037 +employeeType: Employee +homePhone: +1 206 860-5226 +initials: F. S. +mobile: +1 206 872-3934 +pager: +1 206 823-6949 +roomNumber: 9025 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eirena Hrushowy +sn: Hrushowy +description: This is Eirena Hrushowy's description +facsimileTelephoneNumber: +1 510 697-6792 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 508-5098 +title: Junior Payroll Mascot +userPassword: Password1 +uid: HrushowE +givenName: Eirena +mail: HrushowE@1a8c60a83e6243159e036bc3f0b25375.bitwarden.com +carLicense: T1XTI5 +departmentNumber: 1001 +employeeType: Contract +homePhone: +1 510 718-6028 +initials: E. H. +mobile: +1 510 371-5938 +pager: +1 510 902-3551 +roomNumber: 9675 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tres Parr,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tres Parr +sn: Parr +description: This is Tres Parr's description +facsimileTelephoneNumber: +1 415 336-1161 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 857-4933 +title: Supreme Management Writer +userPassword: Password1 +uid: ParrT +givenName: Tres +mail: ParrT@6b3d33b809ec4793b446277435a68094.bitwarden.com +carLicense: PBBR1L +departmentNumber: 8998 +employeeType: Contract +homePhone: +1 415 378-5758 +initials: T. P. +mobile: +1 415 842-3344 +pager: +1 415 662-5788 +roomNumber: 8931 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Myrtice Graver,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrtice Graver +sn: Graver +description: This is Myrtice Graver's description +facsimileTelephoneNumber: +1 415 988-2243 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 674-9240 +title: Master Janitorial Grunt +userPassword: Password1 +uid: GraverM +givenName: Myrtice +mail: GraverM@710eac99d23b4aba917dbd3cddce9e4d.bitwarden.com +carLicense: LAJPBB +departmentNumber: 9504 +employeeType: Normal +homePhone: +1 415 366-3075 +initials: M. G. +mobile: +1 415 502-1178 +pager: +1 415 166-4859 +roomNumber: 8431 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Junette Weyand,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Junette Weyand +sn: Weyand +description: This is Junette Weyand's description +facsimileTelephoneNumber: +1 510 982-1040 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 545-5587 +title: Master Product Development Figurehead +userPassword: Password1 +uid: WeyandJ +givenName: Junette +mail: WeyandJ@46fec3df47bd4fac9e1c336da359be09.bitwarden.com +carLicense: LRG1QP +departmentNumber: 7359 +employeeType: Employee +homePhone: +1 510 985-6123 +initials: J. W. +mobile: +1 510 712-9169 +pager: +1 510 608-6442 +roomNumber: 8438 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Daune Gosset,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daune Gosset +sn: Gosset +description: This is Daune Gosset's description +facsimileTelephoneNumber: +1 206 803-6016 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 542-7764 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: GossetD +givenName: Daune +mail: GossetD@65b1e6b48cf94926a986434aa0ba38db.bitwarden.com +carLicense: M2303V +departmentNumber: 6901 +employeeType: Contract +homePhone: +1 206 712-8825 +initials: D. G. +mobile: +1 206 171-9436 +pager: +1 206 566-2504 +roomNumber: 9616 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ingrid Ghaemi +sn: Ghaemi +description: This is Ingrid Ghaemi's description +facsimileTelephoneNumber: +1 213 274-3602 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 285-1526 +title: Supreme Peons Dictator +userPassword: Password1 +uid: GhaemiI +givenName: Ingrid +mail: GhaemiI@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com +carLicense: 0GAGWN +departmentNumber: 1385 +employeeType: Contract +homePhone: +1 213 391-7501 +initials: I. G. +mobile: +1 213 937-4039 +pager: +1 213 119-1364 +roomNumber: 9032 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rolando McNally,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rolando McNally +sn: McNally +description: This is Rolando McNally's description +facsimileTelephoneNumber: +1 415 674-8910 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 334-4805 +title: Master Administrative Fellow +userPassword: Password1 +uid: McNallyR +givenName: Rolando +mail: McNallyR@e60dd9bce03a413a915d470a19570918.bitwarden.com +carLicense: WRNN7P +departmentNumber: 1949 +employeeType: Normal +homePhone: +1 415 951-3129 +initials: R. M. +mobile: +1 415 580-4879 +pager: +1 415 685-4522 +roomNumber: 9804 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ulf Sharpe +sn: Sharpe +description: This is Ulf Sharpe's description +facsimileTelephoneNumber: +1 408 652-6520 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 856-1648 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: SharpeU +givenName: Ulf +mail: SharpeU@ff8375ca1c294ee698da8ebb063821cf.bitwarden.com +carLicense: MUPLO5 +departmentNumber: 7661 +employeeType: Employee +homePhone: +1 408 876-5095 +initials: U. S. +mobile: +1 408 735-5262 +pager: +1 408 433-7554 +roomNumber: 8054 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kirstie Trochu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirstie Trochu +sn: Trochu +description: This is Kirstie Trochu's description +facsimileTelephoneNumber: +1 818 160-1809 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 621-5904 +title: Master Product Development Assistant +userPassword: Password1 +uid: TrochuK +givenName: Kirstie +mail: TrochuK@b7e8ffd7abe14e2bbc8f66f6d437394f.bitwarden.com +carLicense: H9E9Y9 +departmentNumber: 2878 +employeeType: Contract +homePhone: +1 818 876-9939 +initials: K. T. +mobile: +1 818 411-1483 +pager: +1 818 375-1214 +roomNumber: 8380 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=MaryLou Brock,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryLou Brock +sn: Brock +description: This is MaryLou Brock's description +facsimileTelephoneNumber: +1 510 125-9404 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 942-3057 +title: Junior Peons Janitor +userPassword: Password1 +uid: BrockM +givenName: MaryLou +mail: BrockM@c6c77a4e90174b75a23b2f90eeee4364.bitwarden.com +carLicense: 15OG2Y +departmentNumber: 5398 +employeeType: Contract +homePhone: +1 510 834-6278 +initials: M. B. +mobile: +1 510 774-9464 +pager: +1 510 617-5551 +roomNumber: 9266 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farrah Kobreek +sn: Kobreek +description: This is Farrah Kobreek's description +facsimileTelephoneNumber: +1 415 454-2133 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 286-7150 +title: Supreme Janitorial President +userPassword: Password1 +uid: KobreekF +givenName: Farrah +mail: KobreekF@80b32d7e2c334eb6876146c942d4c564.bitwarden.com +carLicense: 6AK4DI +departmentNumber: 5893 +employeeType: Contract +homePhone: +1 415 226-2210 +initials: F. K. +mobile: +1 415 830-9979 +pager: +1 415 575-4565 +roomNumber: 8714 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Edy Singbeil,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edy Singbeil +sn: Singbeil +description: This is Edy Singbeil's description +facsimileTelephoneNumber: +1 415 894-3844 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 798-7357 +title: Supreme Product Development Czar +userPassword: Password1 +uid: SingbeiE +givenName: Edy +mail: SingbeiE@693e5301c4924e0195024b48e34f4838.bitwarden.com +carLicense: IHR3TN +departmentNumber: 9544 +employeeType: Employee +homePhone: +1 415 709-9004 +initials: E. S. +mobile: +1 415 436-2374 +pager: +1 415 427-3815 +roomNumber: 8014 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carsten Macklin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carsten Macklin +sn: Macklin +description: This is Carsten Macklin's description +facsimileTelephoneNumber: +1 206 164-9395 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 681-9978 +title: Junior Management Stooge +userPassword: Password1 +uid: MacklinC +givenName: Carsten +mail: MacklinC@b32e7088c3e746f58c4546405599fbf1.bitwarden.com +carLicense: 185GSR +departmentNumber: 4777 +employeeType: Employee +homePhone: +1 206 755-3495 +initials: C. M. +mobile: +1 206 777-5588 +pager: +1 206 886-7369 +roomNumber: 9849 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Weiping Arnone,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weiping Arnone +sn: Arnone +description: This is Weiping Arnone's description +facsimileTelephoneNumber: +1 206 319-5989 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 786-7158 +title: Master Peons President +userPassword: Password1 +uid: ArnoneW +givenName: Weiping +mail: ArnoneW@6f7b8496d2cc4db2b31e0a14360cc11d.bitwarden.com +carLicense: Q8RF3R +departmentNumber: 4253 +employeeType: Normal +homePhone: +1 206 157-6321 +initials: W. A. +mobile: +1 206 437-3114 +pager: +1 206 483-2140 +roomNumber: 9100 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joceline Muir,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joceline Muir +sn: Muir +description: This is Joceline Muir's description +facsimileTelephoneNumber: +1 510 500-7018 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 529-6035 +title: Chief Administrative Manager +userPassword: Password1 +uid: MuirJ +givenName: Joceline +mail: MuirJ@ac4d7f7fd78147f7b89e17731422f227.bitwarden.com +carLicense: 0QQ1G2 +departmentNumber: 8767 +employeeType: Normal +homePhone: +1 510 807-1619 +initials: J. M. +mobile: +1 510 333-4983 +pager: +1 510 233-6495 +roomNumber: 8498 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Opal Isaac,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opal Isaac +sn: Isaac +description: This is Opal Isaac's description +facsimileTelephoneNumber: +1 510 113-1858 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 327-4001 +title: Supreme Management Pinhead +userPassword: Password1 +uid: IsaacO +givenName: Opal +mail: IsaacO@f1199a5aeaa742f5bdd847407289b4a5.bitwarden.com +carLicense: 7URWAS +departmentNumber: 5848 +employeeType: Employee +homePhone: +1 510 672-5149 +initials: O. I. +mobile: +1 510 510-8158 +pager: +1 510 389-5444 +roomNumber: 9175 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eloise Tardioli +sn: Tardioli +description: This is Eloise Tardioli's description +facsimileTelephoneNumber: +1 213 226-2063 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 230-9160 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: TardiolE +givenName: Eloise +mail: TardiolE@fa561c4932fd49ab95806925cc7bd285.bitwarden.com +carLicense: F1FUW1 +departmentNumber: 2028 +employeeType: Normal +homePhone: +1 213 108-7213 +initials: E. T. +mobile: +1 213 552-1747 +pager: +1 213 503-7438 +roomNumber: 9421 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dedra Bastien,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dedra Bastien +sn: Bastien +description: This is Dedra Bastien's description +facsimileTelephoneNumber: +1 206 804-9411 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 206 204-3840 +title: Supreme Human Resources Czar +userPassword: Password1 +uid: BastienD +givenName: Dedra +mail: BastienD@976adcda025f45689f8ecd72de9c606c.bitwarden.com +carLicense: 2AR7VA +departmentNumber: 8484 +employeeType: Employee +homePhone: +1 206 739-6350 +initials: D. B. +mobile: +1 206 731-6470 +pager: +1 206 965-5317 +roomNumber: 9974 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kiri Gillon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiri Gillon +sn: Gillon +description: This is Kiri Gillon's description +facsimileTelephoneNumber: +1 804 966-1995 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 648-8955 +title: Supreme Management Visionary +userPassword: Password1 +uid: GillonK +givenName: Kiri +mail: GillonK@3835973847234e04a569100bfecc8dae.bitwarden.com +carLicense: XIFN3W +departmentNumber: 7625 +employeeType: Contract +homePhone: +1 804 104-3808 +initials: K. G. +mobile: +1 804 416-7845 +pager: +1 804 377-5173 +roomNumber: 9235 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Geoff Bergstrom,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geoff Bergstrom +sn: Bergstrom +description: This is Geoff Bergstrom's description +facsimileTelephoneNumber: +1 510 916-3934 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 422-4501 +title: Junior Peons Stooge +userPassword: Password1 +uid: BergstrG +givenName: Geoff +mail: BergstrG@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com +carLicense: Q8E81I +departmentNumber: 2502 +employeeType: Contract +homePhone: +1 510 103-1956 +initials: G. B. +mobile: +1 510 806-2370 +pager: +1 510 368-5600 +roomNumber: 9294 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ngai Dorion,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ngai Dorion +sn: Dorion +description: This is Ngai Dorion's description +facsimileTelephoneNumber: +1 415 451-1904 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 490-8133 +title: Supreme Human Resources Czar +userPassword: Password1 +uid: DorionN +givenName: Ngai +mail: DorionN@20dec23f741b4bdbb6cfe2ede2355e8a.bitwarden.com +carLicense: TA5V6T +departmentNumber: 3712 +employeeType: Contract +homePhone: +1 415 666-1433 +initials: N. D. +mobile: +1 415 123-4601 +pager: +1 415 173-9121 +roomNumber: 8445 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dayna Bragg,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dayna Bragg +sn: Bragg +description: This is Dayna Bragg's description +facsimileTelephoneNumber: +1 818 406-3629 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 377-5865 +title: Supreme Management Consultant +userPassword: Password1 +uid: BraggD +givenName: Dayna +mail: BraggD@ef52200320a34601b7e10e8ff147afd3.bitwarden.com +carLicense: YVFNS5 +departmentNumber: 7058 +employeeType: Contract +homePhone: +1 818 324-1155 +initials: D. B. +mobile: +1 818 973-3149 +pager: +1 818 407-3252 +roomNumber: 9766 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Madonna Parihar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madonna Parihar +sn: Parihar +description: This is Madonna Parihar's description +facsimileTelephoneNumber: +1 213 264-5570 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 213 989-3222 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: PariharM +givenName: Madonna +mail: PariharM@8fe8053cf30a4c47b93e0a3f02958712.bitwarden.com +carLicense: 3GK8ET +departmentNumber: 6875 +employeeType: Normal +homePhone: +1 213 668-4067 +initials: M. P. +mobile: +1 213 636-2953 +pager: +1 213 735-9881 +roomNumber: 8857 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ari Fergusson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ari Fergusson +sn: Fergusson +description: This is Ari Fergusson's description +facsimileTelephoneNumber: +1 206 372-1969 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 529-7200 +title: Associate Product Development Punk +userPassword: Password1 +uid: FergussA +givenName: Ari +mail: FergussA@0f1f84ce6579498d8497bfb021e0f4e9.bitwarden.com +carLicense: J24TRX +departmentNumber: 3922 +employeeType: Employee +homePhone: +1 206 634-7342 +initials: A. F. +mobile: +1 206 482-4485 +pager: +1 206 478-6881 +roomNumber: 8877 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ramonda Tromm,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramonda Tromm +sn: Tromm +description: This is Ramonda Tromm's description +facsimileTelephoneNumber: +1 804 566-1498 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 463-2112 +title: Chief Product Development Vice President +userPassword: Password1 +uid: TrommR +givenName: Ramonda +mail: TrommR@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com +carLicense: Y7HGDT +departmentNumber: 9335 +employeeType: Contract +homePhone: +1 804 678-5681 +initials: R. T. +mobile: +1 804 959-3023 +pager: +1 804 841-9301 +roomNumber: 9536 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Foster Cre,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Foster Cre +sn: Cre +description: This is Foster Cre's description +facsimileTelephoneNumber: +1 415 596-8584 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 275-9030 +title: Master Administrative Dictator +userPassword: Password1 +uid: CreF +givenName: Foster +mail: CreF@b2211048e736402188d0e7245e86301c.bitwarden.com +carLicense: 7NGW0W +departmentNumber: 3931 +employeeType: Employee +homePhone: +1 415 998-3567 +initials: F. C. +mobile: +1 415 555-1071 +pager: +1 415 522-5368 +roomNumber: 9982 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pennie Wolfenbarger +sn: Wolfenbarger +description: This is Pennie Wolfenbarger's description +facsimileTelephoneNumber: +1 510 682-2693 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 205-5931 +title: Chief Administrative Developer +userPassword: Password1 +uid: WolfenbP +givenName: Pennie +mail: WolfenbP@efeb1d35d7fb4a6698c2e450cd5716f4.bitwarden.com +carLicense: UAFAP1 +departmentNumber: 9363 +employeeType: Contract +homePhone: +1 510 668-5648 +initials: P. W. +mobile: +1 510 982-7801 +pager: +1 510 273-6895 +roomNumber: 9926 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Willette Juhan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willette Juhan +sn: Juhan +description: This is Willette Juhan's description +facsimileTelephoneNumber: +1 213 874-2702 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 712-4031 +title: Chief Human Resources Director +userPassword: Password1 +uid: JuhanW +givenName: Willette +mail: JuhanW@f74860195dfd437aa0f4072ae1ebfe76.bitwarden.com +carLicense: R7R449 +departmentNumber: 9210 +employeeType: Contract +homePhone: +1 213 803-5836 +initials: W. J. +mobile: +1 213 371-2959 +pager: +1 213 196-1866 +roomNumber: 8645 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Melamie Darcel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melamie Darcel +sn: Darcel +description: This is Melamie Darcel's description +facsimileTelephoneNumber: +1 213 135-8685 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 289-5103 +title: Master Product Development Writer +userPassword: Password1 +uid: DarcelM +givenName: Melamie +mail: DarcelM@fa1c0131e1b849f6a92c26986c36bbfc.bitwarden.com +carLicense: DX26YY +departmentNumber: 6744 +employeeType: Contract +homePhone: +1 213 298-9380 +initials: M. D. +mobile: +1 213 244-1882 +pager: +1 213 277-8643 +roomNumber: 9452 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Arlena Joe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlena Joe +sn: Joe +description: This is Arlena Joe's description +facsimileTelephoneNumber: +1 408 801-1786 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 466-6795 +title: Supreme Product Development Czar +userPassword: Password1 +uid: JoeA +givenName: Arlena +mail: JoeA@ab9c48ef1f7c4b329b69e3276189b579.bitwarden.com +carLicense: EG5G6G +departmentNumber: 2092 +employeeType: Contract +homePhone: +1 408 588-4177 +initials: A. J. +mobile: +1 408 130-8083 +pager: +1 408 995-4178 +roomNumber: 8357 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mufi Higgins,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mufi Higgins +sn: Higgins +description: This is Mufi Higgins's description +facsimileTelephoneNumber: +1 804 639-5415 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 862-4633 +title: Chief Management Grunt +userPassword: Password1 +uid: HigginsM +givenName: Mufi +mail: HigginsM@9aa4f24ee25742128efa49d5c6b540fd.bitwarden.com +carLicense: G1XJ84 +departmentNumber: 1970 +employeeType: Employee +homePhone: +1 804 382-7983 +initials: M. H. +mobile: +1 804 193-8040 +pager: +1 804 717-3682 +roomNumber: 8405 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Viera Paetsch,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viera Paetsch +sn: Paetsch +description: This is Viera Paetsch's description +facsimileTelephoneNumber: +1 804 432-1400 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 631-4772 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: PaetschV +givenName: Viera +mail: PaetschV@47581aa1612b49fdb2540d1094155bc6.bitwarden.com +carLicense: 5A7SVE +departmentNumber: 4523 +employeeType: Normal +homePhone: +1 804 217-7478 +initials: V. P. +mobile: +1 804 598-3588 +pager: +1 804 563-8201 +roomNumber: 8786 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Roy Wai,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roy Wai +sn: Wai +description: This is Roy Wai's description +facsimileTelephoneNumber: +1 510 161-8793 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 612-2429 +title: Chief Product Development Grunt +userPassword: Password1 +uid: WaiR +givenName: Roy +mail: WaiR@18a7c545624d4840b8b6f5a185043430.bitwarden.com +carLicense: PVN1DG +departmentNumber: 5056 +employeeType: Normal +homePhone: +1 510 402-1650 +initials: R. W. +mobile: +1 510 327-8749 +pager: +1 510 316-5511 +roomNumber: 8207 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cheslie Lamont,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cheslie Lamont +sn: Lamont +description: This is Cheslie Lamont's description +facsimileTelephoneNumber: +1 804 851-8578 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 715-1758 +title: Associate Administrative Fellow +userPassword: Password1 +uid: LamontC +givenName: Cheslie +mail: LamontC@34766460128a4ee582041f543b9bd242.bitwarden.com +carLicense: C8NTOS +departmentNumber: 2215 +employeeType: Contract +homePhone: +1 804 521-8548 +initials: C. L. +mobile: +1 804 807-8344 +pager: +1 804 372-2569 +roomNumber: 9211 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ash Moomey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ash Moomey +sn: Moomey +description: This is Ash Moomey's description +facsimileTelephoneNumber: +1 510 624-9530 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 510 745-8092 +title: Associate Payroll Punk +userPassword: Password1 +uid: MoomeyA +givenName: Ash +mail: MoomeyA@7f942390e1bf40f296074b513660c50e.bitwarden.com +carLicense: R6NWJH +departmentNumber: 4650 +employeeType: Contract +homePhone: +1 510 890-2126 +initials: A. M. +mobile: +1 510 261-5262 +pager: +1 510 580-3840 +roomNumber: 8999 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prashant Lawbaugh +sn: Lawbaugh +description: This is Prashant Lawbaugh's description +facsimileTelephoneNumber: +1 818 257-4817 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 471-2617 +title: Master Janitorial Mascot +userPassword: Password1 +uid: LawbaugP +givenName: Prashant +mail: LawbaugP@feae037fe44941bbb430bf940494ca20.bitwarden.com +carLicense: AYVTQR +departmentNumber: 5494 +employeeType: Normal +homePhone: +1 818 711-7228 +initials: P. L. +mobile: +1 818 641-3346 +pager: +1 818 165-4396 +roomNumber: 8636 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Humphrey Culver,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Humphrey Culver +sn: Culver +description: This is Humphrey Culver's description +facsimileTelephoneNumber: +1 408 685-7520 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 550-4707 +title: Junior Product Development Architect +userPassword: Password1 +uid: CulverH +givenName: Humphrey +mail: CulverH@64455353115942ebbac2f03b722980cb.bitwarden.com +carLicense: GLN7UH +departmentNumber: 3321 +employeeType: Employee +homePhone: +1 408 226-8469 +initials: H. C. +mobile: +1 408 123-5570 +pager: +1 408 991-9336 +roomNumber: 8846 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Consolata Daniells,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Consolata Daniells +sn: Daniells +description: This is Consolata Daniells's description +facsimileTelephoneNumber: +1 408 337-1950 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 408 300-4130 +title: Master Janitorial Janitor +userPassword: Password1 +uid: DaniellC +givenName: Consolata +mail: DaniellC@f8ab716c26494879b2465829da010f5f.bitwarden.com +carLicense: 6UCQG6 +departmentNumber: 6454 +employeeType: Employee +homePhone: +1 408 402-9142 +initials: C. D. +mobile: +1 408 110-9060 +pager: +1 408 520-2831 +roomNumber: 8937 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oleesa Tariq +sn: Tariq +description: This is Oleesa Tariq's description +facsimileTelephoneNumber: +1 804 554-7779 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 519-8826 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: TariqO +givenName: Oleesa +mail: TariqO@367f3fe3a2324b2a8f4bae7b4fa61161.bitwarden.com +carLicense: 1K7KXG +departmentNumber: 4695 +employeeType: Contract +homePhone: +1 804 997-3334 +initials: O. T. +mobile: +1 804 942-4680 +pager: +1 804 892-1672 +roomNumber: 9265 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cark Lowman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cark Lowman +sn: Lowman +description: This is Cark Lowman's description +facsimileTelephoneNumber: +1 206 906-6432 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 598-3378 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: LowmanC +givenName: Cark +mail: LowmanC@46fcd2052d404a708ecce9dd268b7838.bitwarden.com +carLicense: UA7NL6 +departmentNumber: 9667 +employeeType: Contract +homePhone: +1 206 318-8282 +initials: C. L. +mobile: +1 206 789-5032 +pager: +1 206 471-3277 +roomNumber: 8161 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carolien Tabl,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolien Tabl +sn: Tabl +description: This is Carolien Tabl's description +facsimileTelephoneNumber: +1 415 363-5478 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 827-8734 +title: Associate Peons Figurehead +userPassword: Password1 +uid: TablC +givenName: Carolien +mail: TablC@2c933403160143d19a899179ef24cca2.bitwarden.com +carLicense: XCLYFE +departmentNumber: 2725 +employeeType: Normal +homePhone: +1 415 668-1958 +initials: C. T. +mobile: +1 415 339-8853 +pager: +1 415 581-6498 +roomNumber: 8600 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jere Nadon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jere Nadon +sn: Nadon +description: This is Jere Nadon's description +facsimileTelephoneNumber: +1 510 660-6289 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 312-2126 +title: Associate Administrative Developer +userPassword: Password1 +uid: NadonJ +givenName: Jere +mail: NadonJ@b2dba5d211e74e1e8b9beacd1ae0b042.bitwarden.com +carLicense: EC3QU2 +departmentNumber: 5994 +employeeType: Contract +homePhone: +1 510 153-9631 +initials: J. N. +mobile: +1 510 939-5912 +pager: +1 510 889-7549 +roomNumber: 9617 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Weber Chouinard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weber Chouinard +sn: Chouinard +description: This is Weber Chouinard's description +facsimileTelephoneNumber: +1 510 220-8732 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 392-4067 +title: Chief Management Figurehead +userPassword: Password1 +uid: ChouinaW +givenName: Weber +mail: ChouinaW@3a320a2664cd48219711b2ffaa2e5892.bitwarden.com +carLicense: R00CCS +departmentNumber: 4574 +employeeType: Contract +homePhone: +1 510 420-7228 +initials: W. C. +mobile: +1 510 512-3160 +pager: +1 510 498-9557 +roomNumber: 8241 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Othilia Redfoot,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othilia Redfoot +sn: Redfoot +description: This is Othilia Redfoot's description +facsimileTelephoneNumber: +1 408 690-7813 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 236-3909 +title: Junior Product Development Grunt +userPassword: Password1 +uid: RedfootO +givenName: Othilia +mail: RedfootO@89e33259b1f341dda582db87064be4b8.bitwarden.com +carLicense: 1GS50L +departmentNumber: 2805 +employeeType: Contract +homePhone: +1 408 228-4269 +initials: O. R. +mobile: +1 408 617-5020 +pager: +1 408 860-5112 +roomNumber: 8874 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Drudy Joffe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drudy Joffe +sn: Joffe +description: This is Drudy Joffe's description +facsimileTelephoneNumber: +1 804 720-4461 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 545-8897 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: JoffeD +givenName: Drudy +mail: JoffeD@f928f43ad9cc43d983b210ccab6e69b0.bitwarden.com +carLicense: 6D043K +departmentNumber: 3216 +employeeType: Contract +homePhone: +1 804 916-3314 +initials: D. J. +mobile: +1 804 593-2302 +pager: +1 804 326-3966 +roomNumber: 8968 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Moris Abdullah,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moris Abdullah +sn: Abdullah +description: This is Moris Abdullah's description +facsimileTelephoneNumber: +1 415 630-5863 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 338-2284 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: AbdullaM +givenName: Moris +mail: AbdullaM@ee1df761a37f416c8ab1cdfe97a867af.bitwarden.com +carLicense: J8P2GC +departmentNumber: 9297 +employeeType: Contract +homePhone: +1 415 521-3244 +initials: M. A. +mobile: +1 415 444-6704 +pager: +1 415 210-1512 +roomNumber: 9693 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Misbah Mach,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Misbah Mach +sn: Mach +description: This is Misbah Mach's description +facsimileTelephoneNumber: +1 408 894-2143 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 320-9632 +title: Master Human Resources Assistant +userPassword: Password1 +uid: MachM +givenName: Misbah +mail: MachM@234b370628574e5ea51ed780065f5c50.bitwarden.com +carLicense: D8MVJ2 +departmentNumber: 8519 +employeeType: Employee +homePhone: +1 408 406-7581 +initials: M. M. +mobile: +1 408 197-5331 +pager: +1 408 984-1014 +roomNumber: 8092 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charlena Angermeyr +sn: Angermeyr +description: This is Charlena Angermeyr's description +facsimileTelephoneNumber: +1 206 120-8844 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 938-4578 +title: Master Product Development Architect +userPassword: Password1 +uid: AngermeC +givenName: Charlena +mail: AngermeC@cbaa630e3a194faaa797a1d7d5ab2466.bitwarden.com +carLicense: AFBGWD +departmentNumber: 1126 +employeeType: Contract +homePhone: +1 206 184-1838 +initials: C. A. +mobile: +1 206 722-3264 +pager: +1 206 492-2305 +roomNumber: 8631 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maribel Searles,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maribel Searles +sn: Searles +description: This is Maribel Searles's description +facsimileTelephoneNumber: +1 206 671-7081 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 821-9182 +title: Junior Administrative Consultant +userPassword: Password1 +uid: SearlesM +givenName: Maribel +mail: SearlesM@3d84a4bfc0dd4c1f9fe55a53bcc58c24.bitwarden.com +carLicense: E7P453 +departmentNumber: 5531 +employeeType: Normal +homePhone: +1 206 371-5339 +initials: M. S. +mobile: +1 206 329-3532 +pager: +1 206 443-9267 +roomNumber: 9832 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lilah Haverkamp,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilah Haverkamp +sn: Haverkamp +description: This is Lilah Haverkamp's description +facsimileTelephoneNumber: +1 510 988-4556 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 481-7594 +title: Junior Management Pinhead +userPassword: Password1 +uid: HaverkaL +givenName: Lilah +mail: HaverkaL@e8e76146b3cf4785898d03ad6423f9d9.bitwarden.com +carLicense: KECE5P +departmentNumber: 3174 +employeeType: Normal +homePhone: +1 510 559-9076 +initials: L. H. +mobile: +1 510 558-4323 +pager: +1 510 879-8341 +roomNumber: 8558 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fanny Baril,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fanny Baril +sn: Baril +description: This is Fanny Baril's description +facsimileTelephoneNumber: +1 510 180-4072 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 175-7453 +title: Associate Payroll Consultant +userPassword: Password1 +uid: BarilF +givenName: Fanny +mail: BarilF@48e1fa01ec994d088dcb4d2bf8fc5515.bitwarden.com +carLicense: 4SQ5PN +departmentNumber: 6565 +employeeType: Employee +homePhone: +1 510 790-2214 +initials: F. B. +mobile: +1 510 493-3508 +pager: +1 510 639-5249 +roomNumber: 8898 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Milou Dada,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milou Dada +sn: Dada +description: This is Milou Dada's description +facsimileTelephoneNumber: +1 818 662-8510 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 450-2159 +title: Associate Janitorial Manager +userPassword: Password1 +uid: DadaM +givenName: Milou +mail: DadaM@95aba425683d4bd1840a81fc67427bb1.bitwarden.com +carLicense: EW7DIT +departmentNumber: 2610 +employeeType: Employee +homePhone: +1 818 823-3531 +initials: M. D. +mobile: +1 818 465-8456 +pager: +1 818 877-7188 +roomNumber: 9014 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherye Jarvie +sn: Jarvie +description: This is Sherye Jarvie's description +facsimileTelephoneNumber: +1 804 390-6435 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 957-5671 +title: Master Janitorial Artist +userPassword: Password1 +uid: JarvieS +givenName: Sherye +mail: JarvieS@c3ea2e07159b4059b3afc3ddc88034c1.bitwarden.com +carLicense: 7XUH63 +departmentNumber: 6005 +employeeType: Contract +homePhone: +1 804 112-4006 +initials: S. J. +mobile: +1 804 798-8398 +pager: +1 804 159-5246 +roomNumber: 9141 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Earnest Walters,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Earnest Walters +sn: Walters +description: This is Earnest Walters's description +facsimileTelephoneNumber: +1 206 747-3535 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 771-7232 +title: Associate Administrative Grunt +userPassword: Password1 +uid: WaltersE +givenName: Earnest +mail: WaltersE@7e60750ac4784fc193bbbefd09b6a791.bitwarden.com +carLicense: KXQ89X +departmentNumber: 4488 +employeeType: Normal +homePhone: +1 206 147-6465 +initials: E. W. +mobile: +1 206 870-2318 +pager: +1 206 902-5897 +roomNumber: 9930 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alphonso Ramakrishna +sn: Ramakrishna +description: This is Alphonso Ramakrishna's description +facsimileTelephoneNumber: +1 408 961-9792 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 433-1872 +title: Chief Product Testing Technician +userPassword: Password1 +uid: RamakriA +givenName: Alphonso +mail: RamakriA@4f2c26d60a654639aab7c46dc90f555c.bitwarden.com +carLicense: KEVDR3 +departmentNumber: 2636 +employeeType: Employee +homePhone: +1 408 349-8782 +initials: A. R. +mobile: +1 408 774-3373 +pager: +1 408 131-3958 +roomNumber: 8411 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rochelle Buford,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rochelle Buford +sn: Buford +description: This is Rochelle Buford's description +facsimileTelephoneNumber: +1 510 489-9892 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 968-4381 +title: Associate Management Admin +userPassword: Password1 +uid: BufordR +givenName: Rochelle +mail: BufordR@cad34ac8884647e3aa084b319084cb10.bitwarden.com +carLicense: MN6BO4 +departmentNumber: 1347 +employeeType: Employee +homePhone: +1 510 354-1884 +initials: R. B. +mobile: +1 510 225-6399 +pager: +1 510 253-7119 +roomNumber: 9535 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rajani Enns,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rajani Enns +sn: Enns +description: This is Rajani Enns's description +facsimileTelephoneNumber: +1 408 942-5200 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 833-8660 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: EnnsR +givenName: Rajani +mail: EnnsR@36c858bc990c4f6890c6cb5179e5811d.bitwarden.com +carLicense: 62P9XC +departmentNumber: 8072 +employeeType: Contract +homePhone: +1 408 264-8351 +initials: R. E. +mobile: +1 408 297-4083 +pager: +1 408 346-4717 +roomNumber: 8624 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ofella Nessman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ofella Nessman +sn: Nessman +description: This is Ofella Nessman's description +facsimileTelephoneNumber: +1 818 748-9446 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 784-4462 +title: Master Product Testing Vice President +userPassword: Password1 +uid: NessmanO +givenName: Ofella +mail: NessmanO@eff4b5c8cdd74572a1896b15aff841f1.bitwarden.com +carLicense: RO5W0X +departmentNumber: 7207 +employeeType: Contract +homePhone: +1 818 929-1483 +initials: O. N. +mobile: +1 818 913-6866 +pager: +1 818 372-9180 +roomNumber: 8584 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Donella Lethebinh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donella Lethebinh +sn: Lethebinh +description: This is Donella Lethebinh's description +facsimileTelephoneNumber: +1 206 681-6967 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 863-8617 +title: Supreme Administrative Evangelist +userPassword: Password1 +uid: LethebiD +givenName: Donella +mail: LethebiD@5b4286bc4af74709a0f65475a29d7c53.bitwarden.com +carLicense: 62T3YS +departmentNumber: 7379 +employeeType: Normal +homePhone: +1 206 712-3232 +initials: D. L. +mobile: +1 206 328-5749 +pager: +1 206 867-7736 +roomNumber: 8439 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tzung Camillucci,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tzung Camillucci +sn: Camillucci +description: This is Tzung Camillucci's description +facsimileTelephoneNumber: +1 510 749-4301 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 521-6710 +title: Junior Management Architect +userPassword: Password1 +uid: CamilluT +givenName: Tzung +mail: CamilluT@b37b8170c2a14be99b8672023148d924.bitwarden.com +carLicense: QU0NNG +departmentNumber: 5411 +employeeType: Employee +homePhone: +1 510 312-7835 +initials: T. C. +mobile: +1 510 610-3021 +pager: +1 510 442-1944 +roomNumber: 8622 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atsuo Mayne +sn: Mayne +description: This is Atsuo Mayne's description +facsimileTelephoneNumber: +1 510 555-9469 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 796-6128 +title: Supreme Product Testing Fellow +userPassword: Password1 +uid: MayneA +givenName: Atsuo +mail: MayneA@903617d1ed564473826d5f2c9b25fe7c.bitwarden.com +carLicense: 1VAQA6 +departmentNumber: 1594 +employeeType: Normal +homePhone: +1 510 865-3759 +initials: A. M. +mobile: +1 510 807-3506 +pager: +1 510 207-5022 +roomNumber: 9797 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rowena Vasudeva +sn: Vasudeva +description: This is Rowena Vasudeva's description +facsimileTelephoneNumber: +1 818 129-7305 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 687-3573 +title: Junior Administrative Assistant +userPassword: Password1 +uid: VasudevR +givenName: Rowena +mail: VasudevR@f06dcb9a7c274d2c8b61f4765bcce046.bitwarden.com +carLicense: GO4V68 +departmentNumber: 4512 +employeeType: Normal +homePhone: +1 818 148-4079 +initials: R. V. +mobile: +1 818 364-1787 +pager: +1 818 487-2556 +roomNumber: 9382 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laverna Gorlick +sn: Gorlick +description: This is Laverna Gorlick's description +facsimileTelephoneNumber: +1 408 590-2423 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 703-6086 +title: Chief Janitorial Stooge +userPassword: Password1 +uid: GorlickL +givenName: Laverna +mail: GorlickL@685edfe843f3410a96aa97440113374e.bitwarden.com +carLicense: 6NJK7R +departmentNumber: 4411 +employeeType: Contract +homePhone: +1 408 655-9429 +initials: L. G. +mobile: +1 408 100-6503 +pager: +1 408 939-5844 +roomNumber: 8608 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Suzanna Furst,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzanna Furst +sn: Furst +description: This is Suzanna Furst's description +facsimileTelephoneNumber: +1 510 620-4121 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 211-1987 +title: Associate Payroll Admin +userPassword: Password1 +uid: FurstS +givenName: Suzanna +mail: FurstS@70e46e55dad94d7bba82bf79618dd363.bitwarden.com +carLicense: B7AVG6 +departmentNumber: 4172 +employeeType: Employee +homePhone: +1 510 472-9286 +initials: S. F. +mobile: +1 510 956-5543 +pager: +1 510 887-2421 +roomNumber: 9217 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Masha Bridenstine +sn: Bridenstine +description: This is Masha Bridenstine's description +facsimileTelephoneNumber: +1 213 995-1153 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 968-8387 +title: Supreme Janitorial President +userPassword: Password1 +uid: BridensM +givenName: Masha +mail: BridensM@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com +carLicense: UME958 +departmentNumber: 7436 +employeeType: Employee +homePhone: +1 213 551-4495 +initials: M. B. +mobile: +1 213 828-9441 +pager: +1 213 973-7887 +roomNumber: 8388 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Berri Pracht,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berri Pracht +sn: Pracht +description: This is Berri Pracht's description +facsimileTelephoneNumber: +1 804 369-6890 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 406-4629 +title: Master Payroll Warrior +userPassword: Password1 +uid: PrachtB +givenName: Berri +mail: PrachtB@ac2881cfd212410799e38769b052602b.bitwarden.com +carLicense: 2I3I0M +departmentNumber: 6464 +employeeType: Employee +homePhone: +1 804 277-3936 +initials: B. P. +mobile: +1 804 166-6057 +pager: +1 804 519-9543 +roomNumber: 8558 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Esko Feist,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esko Feist +sn: Feist +description: This is Esko Feist's description +facsimileTelephoneNumber: +1 818 163-8961 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 818 850-5707 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: FeistE +givenName: Esko +mail: FeistE@f131b0c80bf2427c8f1448cabfd51b89.bitwarden.com +carLicense: 6S16R2 +departmentNumber: 1863 +employeeType: Normal +homePhone: +1 818 913-3835 +initials: E. F. +mobile: +1 818 392-4244 +pager: +1 818 629-7053 +roomNumber: 8770 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dorin McNerney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorin McNerney +sn: McNerney +description: This is Dorin McNerney's description +facsimileTelephoneNumber: +1 408 364-6082 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 435-3857 +title: Master Product Development Warrior +userPassword: Password1 +uid: McNerneD +givenName: Dorin +mail: McNerneD@c27a22599aa849ec8d6e0057e5fc89b1.bitwarden.com +carLicense: 81TKDB +departmentNumber: 6232 +employeeType: Contract +homePhone: +1 408 882-3902 +initials: D. M. +mobile: +1 408 498-1297 +pager: +1 408 518-4271 +roomNumber: 8268 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kataryna Vaters,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kataryna Vaters +sn: Vaters +description: This is Kataryna Vaters's description +facsimileTelephoneNumber: +1 415 404-3879 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 545-6272 +title: Junior Peons Admin +userPassword: Password1 +uid: VatersK +givenName: Kataryna +mail: VatersK@9aed867d53c546c79f7cb774a38dec77.bitwarden.com +carLicense: UNTE4U +departmentNumber: 9592 +employeeType: Contract +homePhone: +1 415 304-7625 +initials: K. V. +mobile: +1 415 904-9164 +pager: +1 415 149-9304 +roomNumber: 8021 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nikki Captives,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nikki Captives +sn: Captives +description: This is Nikki Captives's description +facsimileTelephoneNumber: +1 213 635-1159 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 513-9009 +title: Associate Product Development Engineer +userPassword: Password1 +uid: CaptiveN +givenName: Nikki +mail: CaptiveN@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com +carLicense: EQQ15W +departmentNumber: 8445 +employeeType: Normal +homePhone: +1 213 619-5889 +initials: N. C. +mobile: +1 213 195-8524 +pager: +1 213 620-1248 +roomNumber: 8275 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mureil Fowlkes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mureil Fowlkes +sn: Fowlkes +description: This is Mureil Fowlkes's description +facsimileTelephoneNumber: +1 415 655-7991 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 154-2522 +title: Associate Peons Dictator +userPassword: Password1 +uid: FowlkesM +givenName: Mureil +mail: FowlkesM@bf899684934849bcb7f3a0d86a890838.bitwarden.com +carLicense: CP5FFD +departmentNumber: 3180 +employeeType: Normal +homePhone: +1 415 326-5507 +initials: M. F. +mobile: +1 415 912-9119 +pager: +1 415 387-8278 +roomNumber: 9889 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Charla Silieff,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charla Silieff +sn: Silieff +description: This is Charla Silieff's description +facsimileTelephoneNumber: +1 408 190-4989 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 408 993-2477 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: SilieffC +givenName: Charla +mail: SilieffC@fdc7d191201f48f4ad7e078c4bc3a04a.bitwarden.com +carLicense: LL381W +departmentNumber: 1648 +employeeType: Normal +homePhone: +1 408 418-9619 +initials: C. S. +mobile: +1 408 901-3108 +pager: +1 408 792-8632 +roomNumber: 8727 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gladys Jarvah,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gladys Jarvah +sn: Jarvah +description: This is Gladys Jarvah's description +facsimileTelephoneNumber: +1 510 130-4341 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 462-4535 +title: Junior Management Developer +userPassword: Password1 +uid: JarvahG +givenName: Gladys +mail: JarvahG@1365456b38df40e8b356de5ec434637e.bitwarden.com +carLicense: VA9KPX +departmentNumber: 7955 +employeeType: Normal +homePhone: +1 510 727-5107 +initials: G. J. +mobile: +1 510 627-5667 +pager: +1 510 442-4397 +roomNumber: 9426 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Juan Hummel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juan Hummel +sn: Hummel +description: This is Juan Hummel's description +facsimileTelephoneNumber: +1 213 300-8353 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 539-8037 +title: Associate Peons Technician +userPassword: Password1 +uid: HummelJ +givenName: Juan +mail: HummelJ@25f3da6efbac4e1a943679d0eb7798c3.bitwarden.com +carLicense: LNFFY1 +departmentNumber: 1860 +employeeType: Employee +homePhone: +1 213 344-1832 +initials: J. H. +mobile: +1 213 586-5327 +pager: +1 213 544-2740 +roomNumber: 9988 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cathryn Scheible,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathryn Scheible +sn: Scheible +description: This is Cathryn Scheible's description +facsimileTelephoneNumber: +1 804 635-2968 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 804 644-8387 +title: Supreme Peons Consultant +userPassword: Password1 +uid: ScheiblC +givenName: Cathryn +mail: ScheiblC@64a69cddd7bb4b56b7df20af602c35fb.bitwarden.com +carLicense: XCK78C +departmentNumber: 2128 +employeeType: Employee +homePhone: +1 804 335-7126 +initials: C. S. +mobile: +1 804 567-6259 +pager: +1 804 498-5428 +roomNumber: 9826 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Harri Senese,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harri Senese +sn: Senese +description: This is Harri Senese's description +facsimileTelephoneNumber: +1 415 609-2155 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 350-2853 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: SeneseH +givenName: Harri +mail: SeneseH@6c746d4a7e6b46028821b547cb3cb61f.bitwarden.com +carLicense: BJRSEE +departmentNumber: 9835 +employeeType: Employee +homePhone: +1 415 257-2025 +initials: H. S. +mobile: +1 415 319-9306 +pager: +1 415 487-3871 +roomNumber: 8507 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Moreen Lemay,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moreen Lemay +sn: Lemay +description: This is Moreen Lemay's description +facsimileTelephoneNumber: +1 804 909-4790 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 474-6102 +title: Junior Management Mascot +userPassword: Password1 +uid: LemayM +givenName: Moreen +mail: LemayM@2534553c6cb5454888e3c62e4dc7cbc2.bitwarden.com +carLicense: 2GG2ON +departmentNumber: 5694 +employeeType: Employee +homePhone: +1 804 992-5064 +initials: M. L. +mobile: +1 804 652-4129 +pager: +1 804 621-2385 +roomNumber: 9265 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlena Frodsham +sn: Frodsham +description: This is Marlena Frodsham's description +facsimileTelephoneNumber: +1 804 347-2094 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 193-6688 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: FrodshaM +givenName: Marlena +mail: FrodshaM@494f2548825245788f70b0629ca28b58.bitwarden.com +carLicense: 1IXURJ +departmentNumber: 5076 +employeeType: Normal +homePhone: +1 804 945-2648 +initials: M. F. +mobile: +1 804 937-8550 +pager: +1 804 636-5482 +roomNumber: 9698 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeannette Jedrysiak +sn: Jedrysiak +description: This is Jeannette Jedrysiak's description +facsimileTelephoneNumber: +1 408 942-1952 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 524-1601 +title: Associate Product Testing Director +userPassword: Password1 +uid: JedrysiJ +givenName: Jeannette +mail: JedrysiJ@4023635f5fb04eb5b921a5e9cca7220e.bitwarden.com +carLicense: GV2K0K +departmentNumber: 2022 +employeeType: Normal +homePhone: +1 408 132-7037 +initials: J. J. +mobile: +1 408 892-1844 +pager: +1 408 759-1454 +roomNumber: 9245 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jabir Gunn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jabir Gunn +sn: Gunn +description: This is Jabir Gunn's description +facsimileTelephoneNumber: +1 408 353-4869 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 260-1262 +title: Master Administrative Warrior +userPassword: Password1 +uid: GunnJ +givenName: Jabir +mail: GunnJ@612e8eb188de48388f43236fca542654.bitwarden.com +carLicense: 9H6NBQ +departmentNumber: 3117 +employeeType: Employee +homePhone: +1 408 534-2111 +initials: J. G. +mobile: +1 408 489-3242 +pager: +1 408 450-8327 +roomNumber: 8358 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dotty Oman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dotty Oman +sn: Oman +description: This is Dotty Oman's description +facsimileTelephoneNumber: +1 206 226-6103 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 383-9332 +title: Junior Product Development Grunt +userPassword: Password1 +uid: OmanD +givenName: Dotty +mail: OmanD@1c75dd756d3646528231e24a92716bd4.bitwarden.com +carLicense: 463M6L +departmentNumber: 9027 +employeeType: Contract +homePhone: +1 206 556-4059 +initials: D. O. +mobile: +1 206 422-7664 +pager: +1 206 518-5034 +roomNumber: 8607 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Quintina Mallett,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quintina Mallett +sn: Mallett +description: This is Quintina Mallett's description +facsimileTelephoneNumber: +1 818 585-5858 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 864-9931 +title: Master Janitorial Writer +userPassword: Password1 +uid: MallettQ +givenName: Quintina +mail: MallettQ@231cbd7e6f7348cfac07641066e2fec0.bitwarden.com +carLicense: EBL58L +departmentNumber: 2507 +employeeType: Employee +homePhone: +1 818 668-3206 +initials: Q. M. +mobile: +1 818 364-6204 +pager: +1 818 376-3869 +roomNumber: 9484 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natascha Stansbury +sn: Stansbury +description: This is Natascha Stansbury's description +facsimileTelephoneNumber: +1 408 668-1393 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 354-5934 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: StansbuN +givenName: Natascha +mail: StansbuN@5c0a8df1a6ec4beaa217c5f72f1c4620.bitwarden.com +carLicense: 4EMLLV +departmentNumber: 3064 +employeeType: Normal +homePhone: +1 408 118-9175 +initials: N. S. +mobile: +1 408 326-3347 +pager: +1 408 817-4256 +roomNumber: 9106 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabra McCuaig +sn: McCuaig +description: This is Sabra McCuaig's description +facsimileTelephoneNumber: +1 415 328-2724 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 451-5176 +title: Master Product Testing Czar +userPassword: Password1 +uid: McCuaigS +givenName: Sabra +mail: McCuaigS@275ceeebf2b5444f8cf460d56ec9ab83.bitwarden.com +carLicense: IMXCPX +departmentNumber: 8459 +employeeType: Contract +homePhone: +1 415 758-4969 +initials: S. M. +mobile: +1 415 540-5871 +pager: +1 415 392-9412 +roomNumber: 8951 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adie Itah,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adie Itah +sn: Itah +description: This is Adie Itah's description +facsimileTelephoneNumber: +1 818 674-2579 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 818 427-8908 +title: Master Payroll President +userPassword: Password1 +uid: ItahA +givenName: Adie +mail: ItahA@34f90a14c10941158575c36d0a318149.bitwarden.com +carLicense: FGU0A3 +departmentNumber: 5305 +employeeType: Employee +homePhone: +1 818 255-6428 +initials: A. I. +mobile: +1 818 363-3486 +pager: +1 818 879-6512 +roomNumber: 8175 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Philippine Corcoran,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Philippine Corcoran +sn: Corcoran +description: This is Philippine Corcoran's description +facsimileTelephoneNumber: +1 213 216-8942 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 857-5075 +title: Chief Peons Stooge +userPassword: Password1 +uid: CorcoraP +givenName: Philippine +mail: CorcoraP@a0ec5611c8b0407f85380c4a00447de2.bitwarden.com +carLicense: ACA5DO +departmentNumber: 4748 +employeeType: Normal +homePhone: +1 213 810-4883 +initials: P. C. +mobile: +1 213 757-3545 +pager: +1 213 374-4960 +roomNumber: 9946 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ollie Panter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ollie Panter +sn: Panter +description: This is Ollie Panter's description +facsimileTelephoneNumber: +1 206 836-4839 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 349-3320 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: PanterO +givenName: Ollie +mail: PanterO@8230b7d1e75c49b4b334d59396eca240.bitwarden.com +carLicense: TTSJG1 +departmentNumber: 6280 +employeeType: Employee +homePhone: +1 206 862-4425 +initials: O. P. +mobile: +1 206 105-6079 +pager: +1 206 458-6723 +roomNumber: 9169 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elaina Karkotsky +sn: Karkotsky +description: This is Elaina Karkotsky's description +facsimileTelephoneNumber: +1 510 137-8166 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 510 980-8592 +title: Junior Administrative Artist +userPassword: Password1 +uid: KarkotsE +givenName: Elaina +mail: KarkotsE@4691b2eac8ba4d1390582076e407a460.bitwarden.com +carLicense: EWWOG3 +departmentNumber: 4702 +employeeType: Employee +homePhone: +1 510 907-3349 +initials: E. K. +mobile: +1 510 616-5980 +pager: +1 510 666-7259 +roomNumber: 8238 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Clint Jesty,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clint Jesty +sn: Jesty +description: This is Clint Jesty's description +facsimileTelephoneNumber: +1 818 734-9070 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 185-9923 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: JestyC +givenName: Clint +mail: JestyC@742a0235bc3841709c6d6197d9db9a18.bitwarden.com +carLicense: G4OALC +departmentNumber: 3367 +employeeType: Normal +homePhone: +1 818 375-2458 +initials: C. J. +mobile: +1 818 948-1328 +pager: +1 818 719-9225 +roomNumber: 8465 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edythe Khodosh +sn: Khodosh +description: This is Edythe Khodosh's description +facsimileTelephoneNumber: +1 510 236-8124 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 255-8855 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: KhodoshE +givenName: Edythe +mail: KhodoshE@574eddc7483948a59c9d38d5c8f6a354.bitwarden.com +carLicense: G2VK68 +departmentNumber: 9882 +employeeType: Employee +homePhone: +1 510 905-7441 +initials: E. K. +mobile: +1 510 228-3840 +pager: +1 510 869-6914 +roomNumber: 9220 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tomasina Gofron,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tomasina Gofron +sn: Gofron +description: This is Tomasina Gofron's description +facsimileTelephoneNumber: +1 206 101-8901 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 684-3358 +title: Chief Product Development Architect +userPassword: Password1 +uid: GofronT +givenName: Tomasina +mail: GofronT@9c0732c5de1c4903a2c7114c9e303d9e.bitwarden.com +carLicense: C8IC47 +departmentNumber: 2593 +employeeType: Contract +homePhone: +1 206 928-5902 +initials: T. G. +mobile: +1 206 258-9067 +pager: +1 206 563-3779 +roomNumber: 8215 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nong Bnrecad,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nong Bnrecad +sn: Bnrecad +description: This is Nong Bnrecad's description +facsimileTelephoneNumber: +1 206 993-1390 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 639-8487 +title: Junior Peons Sales Rep +userPassword: Password1 +uid: BnrecadN +givenName: Nong +mail: BnrecadN@248d38bb7c664c8f9d2a64525819610e.bitwarden.com +carLicense: T09GQJ +departmentNumber: 9537 +employeeType: Contract +homePhone: +1 206 555-2023 +initials: N. B. +mobile: +1 206 696-9851 +pager: +1 206 862-2112 +roomNumber: 8948 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Margy Lucas,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margy Lucas +sn: Lucas +description: This is Margy Lucas's description +facsimileTelephoneNumber: +1 415 758-7136 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 572-1455 +title: Supreme Management Pinhead +userPassword: Password1 +uid: LucasM +givenName: Margy +mail: LucasM@3fbf482bd66842dfadf615e0e20dc12e.bitwarden.com +carLicense: 52EQ0B +departmentNumber: 1653 +employeeType: Employee +homePhone: +1 415 714-3825 +initials: M. L. +mobile: +1 415 476-5906 +pager: +1 415 637-2808 +roomNumber: 9167 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Melvin Cohen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melvin Cohen +sn: Cohen +description: This is Melvin Cohen's description +facsimileTelephoneNumber: +1 408 889-4537 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 597-9174 +title: Junior Peons Madonna +userPassword: Password1 +uid: CohenM +givenName: Melvin +mail: CohenM@ccd3c7eb497f45ed91b85ebe03c21037.bitwarden.com +carLicense: IKTYHQ +departmentNumber: 9941 +employeeType: Contract +homePhone: +1 408 866-9241 +initials: M. C. +mobile: +1 408 335-7629 +pager: +1 408 299-1602 +roomNumber: 8883 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Milissent Rolls,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milissent Rolls +sn: Rolls +description: This is Milissent Rolls's description +facsimileTelephoneNumber: +1 213 221-2567 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 497-1427 +title: Junior Peons Fellow +userPassword: Password1 +uid: RollsM +givenName: Milissent +mail: RollsM@ddf56813dd4c431986e007d26b82799f.bitwarden.com +carLicense: P759UW +departmentNumber: 9844 +employeeType: Employee +homePhone: +1 213 657-2304 +initials: M. R. +mobile: +1 213 605-3892 +pager: +1 213 529-8008 +roomNumber: 8573 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquie Freeley +sn: Freeley +description: This is Jacquie Freeley's description +facsimileTelephoneNumber: +1 818 819-4428 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 818 166-4705 +title: Junior Janitorial Admin +userPassword: Password1 +uid: FreeleyJ +givenName: Jacquie +mail: FreeleyJ@899743aa481a45efb507e6d61189c383.bitwarden.com +carLicense: X50JS3 +departmentNumber: 8183 +employeeType: Normal +homePhone: +1 818 243-3940 +initials: J. F. +mobile: +1 818 867-3185 +pager: +1 818 135-3488 +roomNumber: 9587 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Theodore Egdorf,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theodore Egdorf +sn: Egdorf +description: This is Theodore Egdorf's description +facsimileTelephoneNumber: +1 415 819-9106 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 966-3807 +title: Chief Peons Technician +userPassword: Password1 +uid: EgdorfT +givenName: Theodore +mail: EgdorfT@107125a246e24f24a9cf40da49e16737.bitwarden.com +carLicense: 7KUURY +departmentNumber: 2708 +employeeType: Contract +homePhone: +1 415 535-4378 +initials: T. E. +mobile: +1 415 223-4765 +pager: +1 415 845-3806 +roomNumber: 8621 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vernice Drynan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vernice Drynan +sn: Drynan +description: This is Vernice Drynan's description +facsimileTelephoneNumber: +1 206 221-3200 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 513-2634 +title: Associate Management Evangelist +userPassword: Password1 +uid: DrynanV +givenName: Vernice +mail: DrynanV@22c1616450914b67aaa0021953493b44.bitwarden.com +carLicense: VOHT0F +departmentNumber: 1262 +employeeType: Normal +homePhone: +1 206 511-5632 +initials: V. D. +mobile: +1 206 828-9277 +pager: +1 206 898-6423 +roomNumber: 9227 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hensley Parrish,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hensley Parrish +sn: Parrish +description: This is Hensley Parrish's description +facsimileTelephoneNumber: +1 415 137-6302 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 535-3391 +title: Master Janitorial Warrior +userPassword: Password1 +uid: ParrishH +givenName: Hensley +mail: ParrishH@cbb46474a4d64b6d94b0841f08da9a09.bitwarden.com +carLicense: GW9LB4 +departmentNumber: 3309 +employeeType: Employee +homePhone: +1 415 690-7114 +initials: H. P. +mobile: +1 415 321-7363 +pager: +1 415 584-2672 +roomNumber: 9935 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrzej SalimYasuda +sn: SalimYasuda +description: This is Andrzej SalimYasuda's description +facsimileTelephoneNumber: +1 415 520-4585 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 371-9473 +title: Junior Peons Artist +userPassword: Password1 +uid: SalimYaA +givenName: Andrzej +mail: SalimYaA@21cc8cee33394af98a10a365eddcb55c.bitwarden.com +carLicense: PJX6ES +departmentNumber: 1655 +employeeType: Normal +homePhone: +1 415 564-9781 +initials: A. S. +mobile: +1 415 441-5791 +pager: +1 415 438-2967 +roomNumber: 8806 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christyna Manwaring +sn: Manwaring +description: This is Christyna Manwaring's description +facsimileTelephoneNumber: +1 408 638-9032 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 965-3183 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: ManwariC +givenName: Christyna +mail: ManwariC@6a03900e00f041c8bad5cf924164b20c.bitwarden.com +carLicense: 3QGGA1 +departmentNumber: 9144 +employeeType: Normal +homePhone: +1 408 940-6274 +initials: C. M. +mobile: +1 408 592-5572 +pager: +1 408 146-2393 +roomNumber: 8250 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elbert Culley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elbert Culley +sn: Culley +description: This is Elbert Culley's description +facsimileTelephoneNumber: +1 408 627-3281 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 103-8716 +title: Associate Payroll Director +userPassword: Password1 +uid: CulleyE +givenName: Elbert +mail: CulleyE@38bb69a498e64b7781901ef7c50df3ad.bitwarden.com +carLicense: JDO9WY +departmentNumber: 9018 +employeeType: Normal +homePhone: +1 408 690-6306 +initials: E. C. +mobile: +1 408 610-1001 +pager: +1 408 403-6181 +roomNumber: 9528 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fady Benavides,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fady Benavides +sn: Benavides +description: This is Fady Benavides's description +facsimileTelephoneNumber: +1 206 324-8015 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 206 281-9979 +title: Junior Human Resources President +userPassword: Password1 +uid: BenavidF +givenName: Fady +mail: BenavidF@ae1d3c73ac3541698f9376eee53602f8.bitwarden.com +carLicense: R6B6FR +departmentNumber: 2320 +employeeType: Employee +homePhone: +1 206 181-3305 +initials: F. B. +mobile: +1 206 498-7060 +pager: +1 206 857-9279 +roomNumber: 8499 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Djenana LeGuen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Djenana LeGuen +sn: LeGuen +description: This is Djenana LeGuen's description +facsimileTelephoneNumber: +1 408 785-3520 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 946-2691 +title: Junior Payroll Figurehead +userPassword: Password1 +uid: LeGuenD +givenName: Djenana +mail: LeGuenD@e80ca250f89b403b9611f3035a6f2a93.bitwarden.com +carLicense: F1L1VK +departmentNumber: 4369 +employeeType: Normal +homePhone: +1 408 991-7020 +initials: D. L. +mobile: +1 408 468-3253 +pager: +1 408 997-7526 +roomNumber: 8449 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pratibha Danbrook +sn: Danbrook +description: This is Pratibha Danbrook's description +facsimileTelephoneNumber: +1 804 580-3374 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 212-5237 +title: Chief Administrative Punk +userPassword: Password1 +uid: DanbrooP +givenName: Pratibha +mail: DanbrooP@cfe29e1726394f4a9a5f2244fdfdbc63.bitwarden.com +carLicense: RS2ONU +departmentNumber: 7920 +employeeType: Contract +homePhone: +1 804 235-1384 +initials: P. D. +mobile: +1 804 120-2610 +pager: +1 804 660-8063 +roomNumber: 9734 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tele Travers,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tele Travers +sn: Travers +description: This is Tele Travers's description +facsimileTelephoneNumber: +1 804 417-6366 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 117-6111 +title: Master Product Testing Manager +userPassword: Password1 +uid: TraversT +givenName: Tele +mail: TraversT@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com +carLicense: 2ST6P1 +departmentNumber: 6586 +employeeType: Normal +homePhone: +1 804 373-9515 +initials: T. T. +mobile: +1 804 563-1714 +pager: +1 804 766-8833 +roomNumber: 8642 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susy Tatangsurja +sn: Tatangsurja +description: This is Susy Tatangsurja's description +facsimileTelephoneNumber: +1 408 700-1796 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 618-3146 +title: Chief Product Development Architect +userPassword: Password1 +uid: TatangsS +givenName: Susy +mail: TatangsS@ee6afb048cfd44e18bba35da7b089f24.bitwarden.com +carLicense: 4YTOSB +departmentNumber: 4702 +employeeType: Employee +homePhone: +1 408 388-4009 +initials: S. T. +mobile: +1 408 311-9691 +pager: +1 408 700-7098 +roomNumber: 9189 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cherilyn Stults,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherilyn Stults +sn: Stults +description: This is Cherilyn Stults's description +facsimileTelephoneNumber: +1 818 642-4701 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 847-8175 +title: Chief Administrative Janitor +userPassword: Password1 +uid: StultsC +givenName: Cherilyn +mail: StultsC@ae1bd8aa112143fa87c88a44e69aa310.bitwarden.com +carLicense: QEV2S6 +departmentNumber: 5369 +employeeType: Contract +homePhone: +1 818 845-1640 +initials: C. S. +mobile: +1 818 273-2983 +pager: +1 818 937-1049 +roomNumber: 8462 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Harri Kuntova,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harri Kuntova +sn: Kuntova +description: This is Harri Kuntova's description +facsimileTelephoneNumber: +1 510 649-4914 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 998-5115 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: KuntovaH +givenName: Harri +mail: KuntovaH@5a8cc902fcc5423d892dfdcc048c73b2.bitwarden.com +carLicense: T7XJRV +departmentNumber: 9641 +employeeType: Employee +homePhone: +1 510 556-8732 +initials: H. K. +mobile: +1 510 927-4190 +pager: +1 510 353-3910 +roomNumber: 9791 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dulcine Litherland,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulcine Litherland +sn: Litherland +description: This is Dulcine Litherland's description +facsimileTelephoneNumber: +1 206 141-8482 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 667-1376 +title: Chief Peons Figurehead +userPassword: Password1 +uid: LitherlD +givenName: Dulcine +mail: LitherlD@bbf9c04e50a241698a5503a647ae8281.bitwarden.com +carLicense: 6WUTXL +departmentNumber: 2262 +employeeType: Employee +homePhone: +1 206 792-7050 +initials: D. L. +mobile: +1 206 719-6941 +pager: +1 206 398-4416 +roomNumber: 9056 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kelwin Diee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelwin Diee +sn: Diee +description: This is Kelwin Diee's description +facsimileTelephoneNumber: +1 415 408-5418 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 148-4125 +title: Associate Product Development Visionary +userPassword: Password1 +uid: DieeK +givenName: Kelwin +mail: DieeK@575b96dd8e82439988861ea4db931c38.bitwarden.com +carLicense: 71DSSW +departmentNumber: 5326 +employeeType: Normal +homePhone: +1 415 736-6766 +initials: K. D. +mobile: +1 415 341-4820 +pager: +1 415 756-3395 +roomNumber: 8726 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wylo Dirbm +sn: Dirbm +description: This is Wylo Dirbm's description +facsimileTelephoneNumber: +1 818 742-9817 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 414-2280 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: DirbmW +givenName: Wylo +mail: DirbmW@5da44ffb6b534c2a8e8e949cd515b1cd.bitwarden.com +carLicense: UDX2FQ +departmentNumber: 2369 +employeeType: Contract +homePhone: +1 818 842-8824 +initials: W. D. +mobile: +1 818 683-3073 +pager: +1 818 883-2360 +roomNumber: 9159 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurelea Brunoni +sn: Brunoni +description: This is Aurelea Brunoni's description +facsimileTelephoneNumber: +1 804 403-5813 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 781-9747 +title: Chief Administrative Fellow +userPassword: Password1 +uid: BrunoniA +givenName: Aurelea +mail: BrunoniA@d89a4c96e85d46e9b90aee84eca8553c.bitwarden.com +carLicense: IYQTKB +departmentNumber: 6486 +employeeType: Contract +homePhone: +1 804 560-3110 +initials: A. B. +mobile: +1 804 940-2641 +pager: +1 804 423-9276 +roomNumber: 9082 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Veen Tarver,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veen Tarver +sn: Tarver +description: This is Veen Tarver's description +facsimileTelephoneNumber: +1 510 591-6003 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 413-2585 +title: Supreme Human Resources Manager +userPassword: Password1 +uid: TarverV +givenName: Veen +mail: TarverV@89cc2a9b2ec949b1a8070c39d600dc45.bitwarden.com +carLicense: QI2H2V +departmentNumber: 5903 +employeeType: Normal +homePhone: +1 510 332-3789 +initials: V. T. +mobile: +1 510 721-6922 +pager: +1 510 171-3343 +roomNumber: 8775 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kimberlee Malee,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kimberlee Malee +sn: Malee +description: This is Kimberlee Malee's description +facsimileTelephoneNumber: +1 206 684-2305 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 400-3575 +title: Junior Payroll Engineer +userPassword: Password1 +uid: MaleeK +givenName: Kimberlee +mail: MaleeK@b808f16625dc4c2a96aed338660eeca1.bitwarden.com +carLicense: 1E4YPS +departmentNumber: 2982 +employeeType: Contract +homePhone: +1 206 140-2851 +initials: K. M. +mobile: +1 206 718-2587 +pager: +1 206 686-7714 +roomNumber: 8154 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chiho Larmour,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chiho Larmour +sn: Larmour +description: This is Chiho Larmour's description +facsimileTelephoneNumber: +1 415 237-8283 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 475-6746 +title: Associate Management Fellow +userPassword: Password1 +uid: LarmourC +givenName: Chiho +mail: LarmourC@25466f5c2b4e4320afbe3eeabe295830.bitwarden.com +carLicense: PGLE2B +departmentNumber: 3867 +employeeType: Contract +homePhone: +1 415 990-1528 +initials: C. L. +mobile: +1 415 884-5951 +pager: +1 415 109-1914 +roomNumber: 8609 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Merrily Provencal,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrily Provencal +sn: Provencal +description: This is Merrily Provencal's description +facsimileTelephoneNumber: +1 804 146-8700 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 289-4673 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: ProvencM +givenName: Merrily +mail: ProvencM@5ed2a85f8436420b8aa9acd30085ca22.bitwarden.com +carLicense: BAI749 +departmentNumber: 2039 +employeeType: Contract +homePhone: +1 804 282-5070 +initials: M. P. +mobile: +1 804 546-6022 +pager: +1 804 510-3010 +roomNumber: 9278 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jorey Roehrig +sn: Roehrig +description: This is Jorey Roehrig's description +facsimileTelephoneNumber: +1 818 746-5565 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 488-9226 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: RoehrigJ +givenName: Jorey +mail: RoehrigJ@39ca6877ef574ca3bc5bd5f5e2e96e7c.bitwarden.com +carLicense: 8A7OC7 +departmentNumber: 5148 +employeeType: Contract +homePhone: +1 818 262-7180 +initials: J. R. +mobile: +1 818 138-9885 +pager: +1 818 678-2920 +roomNumber: 8360 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Divina Brevard,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Divina Brevard +sn: Brevard +description: This is Divina Brevard's description +facsimileTelephoneNumber: +1 415 718-9311 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 128-7115 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: BrevardD +givenName: Divina +mail: BrevardD@e707a4307e404826b821947945a42b00.bitwarden.com +carLicense: W6M7WF +departmentNumber: 2943 +employeeType: Normal +homePhone: +1 415 797-2251 +initials: D. B. +mobile: +1 415 888-8838 +pager: +1 415 842-2938 +roomNumber: 9806 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Celine Lotan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celine Lotan +sn: Lotan +description: This is Celine Lotan's description +facsimileTelephoneNumber: +1 408 461-9624 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 842-9023 +title: Master Payroll Mascot +userPassword: Password1 +uid: LotanC +givenName: Celine +mail: LotanC@e8e7ee5b6e064589b4c7f97fde4b37f5.bitwarden.com +carLicense: CBCFY1 +departmentNumber: 4993 +employeeType: Employee +homePhone: +1 408 281-9973 +initials: C. L. +mobile: +1 408 108-2465 +pager: +1 408 848-4148 +roomNumber: 8623 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Noriko Corner,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noriko Corner +sn: Corner +description: This is Noriko Corner's description +facsimileTelephoneNumber: +1 804 872-8332 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 643-7077 +title: Supreme Management Architect +userPassword: Password1 +uid: CornerN +givenName: Noriko +mail: CornerN@5cadcfe79eb54c65992596d7e8e0c690.bitwarden.com +carLicense: T5WNPW +departmentNumber: 4810 +employeeType: Contract +homePhone: +1 804 113-5019 +initials: N. C. +mobile: +1 804 484-7828 +pager: +1 804 543-8884 +roomNumber: 9115 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Janean Hoshi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janean Hoshi +sn: Hoshi +description: This is Janean Hoshi's description +facsimileTelephoneNumber: +1 213 279-8344 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 177-4902 +title: Junior Administrative Consultant +userPassword: Password1 +uid: HoshiJ +givenName: Janean +mail: HoshiJ@1435fdc2b771411ca35fcc6cc2698b9c.bitwarden.com +carLicense: 4P32HU +departmentNumber: 1699 +employeeType: Normal +homePhone: +1 213 818-9267 +initials: J. H. +mobile: +1 213 517-4831 +pager: +1 213 440-8092 +roomNumber: 8758 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shorwan Womack,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shorwan Womack +sn: Womack +description: This is Shorwan Womack's description +facsimileTelephoneNumber: +1 804 176-6305 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 940-7775 +title: Master Product Testing Dictator +userPassword: Password1 +uid: WomackS +givenName: Shorwan +mail: WomackS@54ae4b8946dd40ba8c99c8bc8b14cd1b.bitwarden.com +carLicense: J9W4IJ +departmentNumber: 9829 +employeeType: Contract +homePhone: +1 804 510-2291 +initials: S. W. +mobile: +1 804 656-8331 +pager: +1 804 274-3455 +roomNumber: 9194 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deloria Kelsay +sn: Kelsay +description: This is Deloria Kelsay's description +facsimileTelephoneNumber: +1 408 383-1792 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 408 486-9496 +title: Junior Product Testing Developer +userPassword: Password1 +uid: KelsayD +givenName: Deloria +mail: KelsayD@36fbb38d5bbe4aa29ae95e79bf727529.bitwarden.com +carLicense: IS7WFJ +departmentNumber: 4617 +employeeType: Contract +homePhone: +1 408 185-8142 +initials: D. K. +mobile: +1 408 324-1553 +pager: +1 408 392-7210 +roomNumber: 9841 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leeanne Keyes +sn: Keyes +description: This is Leeanne Keyes's description +facsimileTelephoneNumber: +1 408 304-5050 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 408 315-7576 +title: Supreme Human Resources Janitor +userPassword: Password1 +uid: KeyesL +givenName: Leeanne +mail: KeyesL@ed9ac14d0dc747adb394c56c700ac22a.bitwarden.com +carLicense: LTBH0G +departmentNumber: 3614 +employeeType: Contract +homePhone: +1 408 529-8708 +initials: L. K. +mobile: +1 408 603-7982 +pager: +1 408 288-1745 +roomNumber: 9251 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fiorenze Chrisman +sn: Chrisman +description: This is Fiorenze Chrisman's description +facsimileTelephoneNumber: +1 804 105-4255 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 437-8948 +title: Chief Administrative Vice President +userPassword: Password1 +uid: ChrismaF +givenName: Fiorenze +mail: ChrismaF@c0e08a4a1d724001a5c641abeefefcdf.bitwarden.com +carLicense: P8GVHN +departmentNumber: 8173 +employeeType: Normal +homePhone: +1 804 354-4232 +initials: F. C. +mobile: +1 804 972-1738 +pager: +1 804 361-4082 +roomNumber: 9965 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hattie Beilin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hattie Beilin +sn: Beilin +description: This is Hattie Beilin's description +facsimileTelephoneNumber: +1 510 476-6459 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 553-2058 +title: Master Product Testing Madonna +userPassword: Password1 +uid: BeilinH +givenName: Hattie +mail: BeilinH@3bfc3de402e042a394d461b86f93128b.bitwarden.com +carLicense: A8AW8Y +departmentNumber: 9469 +employeeType: Employee +homePhone: +1 510 686-9623 +initials: H. B. +mobile: +1 510 899-1950 +pager: +1 510 357-8753 +roomNumber: 9479 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Loralie Cumming,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loralie Cumming +sn: Cumming +description: This is Loralie Cumming's description +facsimileTelephoneNumber: +1 408 899-9160 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 800-7039 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: CummingL +givenName: Loralie +mail: CummingL@0eb174a38cfc4a95b6e9e718029db463.bitwarden.com +carLicense: MH6Q7D +departmentNumber: 3099 +employeeType: Normal +homePhone: +1 408 861-8727 +initials: L. C. +mobile: +1 408 100-5699 +pager: +1 408 442-1109 +roomNumber: 8370 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sanae Zalameda,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanae Zalameda +sn: Zalameda +description: This is Sanae Zalameda's description +facsimileTelephoneNumber: +1 206 821-4772 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 504-6026 +title: Master Peons Artist +userPassword: Password1 +uid: ZalamedS +givenName: Sanae +mail: ZalamedS@848b025264d14e669cec02146f987418.bitwarden.com +carLicense: WHMJM1 +departmentNumber: 2905 +employeeType: Normal +homePhone: +1 206 270-8339 +initials: S. Z. +mobile: +1 206 571-7085 +pager: +1 206 116-7930 +roomNumber: 9866 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rivalee Bragado +sn: Bragado +description: This is Rivalee Bragado's description +facsimileTelephoneNumber: +1 818 436-4489 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 296-2126 +title: Chief Product Testing Janitor +userPassword: Password1 +uid: BragadoR +givenName: Rivalee +mail: BragadoR@57ec55e059164473a2641a0802a3d2ba.bitwarden.com +carLicense: N6MDN7 +departmentNumber: 2384 +employeeType: Contract +homePhone: +1 818 309-9287 +initials: R. B. +mobile: +1 818 876-5866 +pager: +1 818 448-5262 +roomNumber: 9059 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Krystalle Logue,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krystalle Logue +sn: Logue +description: This is Krystalle Logue's description +facsimileTelephoneNumber: +1 408 126-8097 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 580-6140 +title: Master Peons Warrior +userPassword: Password1 +uid: LogueK +givenName: Krystalle +mail: LogueK@8dacb3afea62411d83ceb1bc304c1028.bitwarden.com +carLicense: ULNFCN +departmentNumber: 2210 +employeeType: Normal +homePhone: +1 408 797-9006 +initials: K. L. +mobile: +1 408 568-4240 +pager: +1 408 613-3699 +roomNumber: 8558 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fara Dillow,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fara Dillow +sn: Dillow +description: This is Fara Dillow's description +facsimileTelephoneNumber: +1 213 940-5486 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 604-6554 +title: Junior Human Resources Admin +userPassword: Password1 +uid: DillowF +givenName: Fara +mail: DillowF@ec9572b6571741cba193e664e197377a.bitwarden.com +carLicense: 40UKLU +departmentNumber: 8515 +employeeType: Employee +homePhone: +1 213 132-2386 +initials: F. D. +mobile: +1 213 232-5564 +pager: +1 213 711-3764 +roomNumber: 9331 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lonna Willcock,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lonna Willcock +sn: Willcock +description: This is Lonna Willcock's description +facsimileTelephoneNumber: +1 415 233-4268 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 415 987-5738 +title: Junior Product Testing Consultant +userPassword: Password1 +uid: WillcocL +givenName: Lonna +mail: WillcocL@cdf65b883c4c457a86f2eba62ef732a4.bitwarden.com +carLicense: J4GJKE +departmentNumber: 1571 +employeeType: Normal +homePhone: +1 415 647-2405 +initials: L. W. +mobile: +1 415 231-2614 +pager: +1 415 366-5285 +roomNumber: 8900 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hukam Ozersky +sn: Ozersky +description: This is Hukam Ozersky's description +facsimileTelephoneNumber: +1 818 142-4295 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 412-8258 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: OzerskyH +givenName: Hukam +mail: OzerskyH@621ecc47be084539a10e5521c8efa92f.bitwarden.com +carLicense: 2VVKPC +departmentNumber: 2303 +employeeType: Employee +homePhone: +1 818 130-8184 +initials: H. O. +mobile: +1 818 800-5894 +pager: +1 818 916-6464 +roomNumber: 9007 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Thrift McClelland,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thrift McClelland +sn: McClelland +description: This is Thrift McClelland's description +facsimileTelephoneNumber: +1 415 182-6664 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 415 257-1763 +title: Chief Administrative Writer +userPassword: Password1 +uid: McClellT +givenName: Thrift +mail: McClellT@d6ce39ad034b466eab6163a0fd6a84a6.bitwarden.com +carLicense: UF1X56 +departmentNumber: 9560 +employeeType: Normal +homePhone: +1 415 679-2347 +initials: T. M. +mobile: +1 415 583-7246 +pager: +1 415 157-8628 +roomNumber: 9355 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tres Bashton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tres Bashton +sn: Bashton +description: This is Tres Bashton's description +facsimileTelephoneNumber: +1 804 610-4110 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 877-2608 +title: Associate Peons Visionary +userPassword: Password1 +uid: BashtonT +givenName: Tres +mail: BashtonT@63cf6afc822f42ed95e0208899f901bf.bitwarden.com +carLicense: V5IOEL +departmentNumber: 1196 +employeeType: Contract +homePhone: +1 804 703-4783 +initials: T. B. +mobile: +1 804 708-4313 +pager: +1 804 171-3032 +roomNumber: 8940 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lara Terneus,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lara Terneus +sn: Terneus +description: This is Lara Terneus's description +facsimileTelephoneNumber: +1 213 645-2777 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 884-5671 +title: Associate Product Development Mascot +userPassword: Password1 +uid: TerneusL +givenName: Lara +mail: TerneusL@2d82e4fbfc604880a9f0d07a8531daa9.bitwarden.com +carLicense: VKQL73 +departmentNumber: 2024 +employeeType: Normal +homePhone: +1 213 527-4189 +initials: L. T. +mobile: +1 213 676-4706 +pager: +1 213 942-7443 +roomNumber: 8972 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Taryna Ganguly,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Taryna Ganguly +sn: Ganguly +description: This is Taryna Ganguly's description +facsimileTelephoneNumber: +1 804 841-6422 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 804 634-9041 +title: Junior Administrative Dictator +userPassword: Password1 +uid: GangulyT +givenName: Taryna +mail: GangulyT@41c0d9c6f1d54ffeb7ac5aa235429b41.bitwarden.com +carLicense: 2GFRSW +departmentNumber: 7065 +employeeType: Normal +homePhone: +1 804 712-5819 +initials: T. G. +mobile: +1 804 139-1658 +pager: +1 804 881-4800 +roomNumber: 8398 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giulietta Dropin +sn: Dropin +description: This is Giulietta Dropin's description +facsimileTelephoneNumber: +1 206 357-1883 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 206 243-4365 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: DropinG +givenName: Giulietta +mail: DropinG@130ee20fbdf449ab8c20d59d7bb0a698.bitwarden.com +carLicense: 5N17DX +departmentNumber: 5344 +employeeType: Normal +homePhone: +1 206 582-1846 +initials: G. D. +mobile: +1 206 739-5530 +pager: +1 206 852-5132 +roomNumber: 9898 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Serge Systems,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Serge Systems +sn: Systems +description: This is Serge Systems's description +facsimileTelephoneNumber: +1 206 840-6081 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 636-6602 +title: Associate Product Testing Dictator +userPassword: Password1 +uid: SystemsS +givenName: Serge +mail: SystemsS@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com +carLicense: LWI8LK +departmentNumber: 3205 +employeeType: Contract +homePhone: +1 206 732-5210 +initials: S. S. +mobile: +1 206 911-7348 +pager: +1 206 117-1432 +roomNumber: 8585 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marisca Parise,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marisca Parise +sn: Parise +description: This is Marisca Parise's description +facsimileTelephoneNumber: +1 818 546-6389 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 818 152-3649 +title: Master Payroll Punk +userPassword: Password1 +uid: PariseM +givenName: Marisca +mail: PariseM@c8037935d7cf4de6af85f4cdef77691d.bitwarden.com +carLicense: NVS6HU +departmentNumber: 3973 +employeeType: Normal +homePhone: +1 818 712-1702 +initials: M. P. +mobile: +1 818 525-7315 +pager: +1 818 946-9914 +roomNumber: 9312 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brook Ta,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brook Ta +sn: Ta +description: This is Brook Ta's description +facsimileTelephoneNumber: +1 213 436-5944 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 918-7603 +title: Supreme Product Testing Dictator +userPassword: Password1 +uid: TaB +givenName: Brook +mail: TaB@bb9e5ffb29744b338b8694a9d1283b9e.bitwarden.com +carLicense: 0YX5T1 +departmentNumber: 6754 +employeeType: Normal +homePhone: +1 213 795-8869 +initials: B. T. +mobile: +1 213 792-3941 +pager: +1 213 964-6282 +roomNumber: 9994 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Evanne Servance,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evanne Servance +sn: Servance +description: This is Evanne Servance's description +facsimileTelephoneNumber: +1 510 601-9561 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 676-3375 +title: Junior Janitorial Stooge +userPassword: Password1 +uid: ServancE +givenName: Evanne +mail: ServancE@86e8412a02bb46a19030741add17aeda.bitwarden.com +carLicense: T26CYB +departmentNumber: 1387 +employeeType: Employee +homePhone: +1 510 749-1463 +initials: E. S. +mobile: +1 510 300-6697 +pager: +1 510 573-5855 +roomNumber: 8430 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hamzeh Lyall,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hamzeh Lyall +sn: Lyall +description: This is Hamzeh Lyall's description +facsimileTelephoneNumber: +1 818 452-6457 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 525-6186 +title: Junior Peons Assistant +userPassword: Password1 +uid: LyallH +givenName: Hamzeh +mail: LyallH@cefcb38cb33a403e8d9697238eb1c561.bitwarden.com +carLicense: D4QRSA +departmentNumber: 6153 +employeeType: Normal +homePhone: +1 818 967-8777 +initials: H. L. +mobile: +1 818 633-9116 +pager: +1 818 555-1733 +roomNumber: 9676 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Collette Yao,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Collette Yao +sn: Yao +description: This is Collette Yao's description +facsimileTelephoneNumber: +1 510 478-3013 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 537-4935 +title: Junior Payroll Punk +userPassword: Password1 +uid: YaoC +givenName: Collette +mail: YaoC@415554f5adbe4c70a27d90a1a4deab5a.bitwarden.com +carLicense: C1OECC +departmentNumber: 5294 +employeeType: Employee +homePhone: +1 510 455-7720 +initials: C. Y. +mobile: +1 510 350-1543 +pager: +1 510 501-5193 +roomNumber: 8055 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mandy Heiliger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mandy Heiliger +sn: Heiliger +description: This is Mandy Heiliger's description +facsimileTelephoneNumber: +1 213 730-1223 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 151-7695 +title: Master Peons Grunt +userPassword: Password1 +uid: HeiligeM +givenName: Mandy +mail: HeiligeM@b22e59b4024b4e11ba0f1478fca2893a.bitwarden.com +carLicense: FNQ0DS +departmentNumber: 4787 +employeeType: Normal +homePhone: +1 213 176-1024 +initials: M. H. +mobile: +1 213 268-1656 +pager: +1 213 192-5767 +roomNumber: 9990 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Liduine Farah,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liduine Farah +sn: Farah +description: This is Liduine Farah's description +facsimileTelephoneNumber: +1 804 480-1888 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 804 678-5032 +title: Supreme Product Testing Evangelist +userPassword: Password1 +uid: FarahL +givenName: Liduine +mail: FarahL@eea2d462871e4840a27187b37bea3ed3.bitwarden.com +carLicense: XDUA3R +departmentNumber: 9636 +employeeType: Contract +homePhone: +1 804 540-5366 +initials: L. F. +mobile: +1 804 751-6760 +pager: +1 804 799-1224 +roomNumber: 8371 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arlee Hawley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlee Hawley +sn: Hawley +description: This is Arlee Hawley's description +facsimileTelephoneNumber: +1 804 773-3671 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 434-5014 +title: Junior Human Resources Artist +userPassword: Password1 +uid: HawleyA +givenName: Arlee +mail: HawleyA@b5dacfa66cfb4bc194ded29a6978a103.bitwarden.com +carLicense: T9A6PJ +departmentNumber: 8902 +employeeType: Contract +homePhone: +1 804 914-1614 +initials: A. H. +mobile: +1 804 526-8405 +pager: +1 804 237-3340 +roomNumber: 9830 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Theresina Reinink,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theresina Reinink +sn: Reinink +description: This is Theresina Reinink's description +facsimileTelephoneNumber: +1 408 332-7453 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 408 174-4738 +title: Associate Administrative Assistant +userPassword: Password1 +uid: ReininkT +givenName: Theresina +mail: ReininkT@c3dcba6fd4804a9ab67d7734e84114c2.bitwarden.com +carLicense: ICG2SQ +departmentNumber: 7162 +employeeType: Normal +homePhone: +1 408 544-6102 +initials: T. R. +mobile: +1 408 843-7025 +pager: +1 408 495-9012 +roomNumber: 9463 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hanny Hassey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanny Hassey +sn: Hassey +description: This is Hanny Hassey's description +facsimileTelephoneNumber: +1 213 472-8885 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 619-1511 +title: Junior Janitorial Artist +userPassword: Password1 +uid: HasseyH +givenName: Hanny +mail: HasseyH@f908b5237c0945e690da76df38180ee9.bitwarden.com +carLicense: CO0HPF +departmentNumber: 8030 +employeeType: Normal +homePhone: +1 213 609-6397 +initials: H. H. +mobile: +1 213 801-9017 +pager: +1 213 954-9332 +roomNumber: 9656 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gil Zhou,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gil Zhou +sn: Zhou +description: This is Gil Zhou's description +facsimileTelephoneNumber: +1 415 322-6018 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 544-2097 +title: Supreme Human Resources President +userPassword: Password1 +uid: ZhouG +givenName: Gil +mail: ZhouG@6867271f9fab4191b63db7db8f13930c.bitwarden.com +carLicense: H5RX1G +departmentNumber: 4137 +employeeType: Normal +homePhone: +1 415 680-7681 +initials: G. Z. +mobile: +1 415 196-4883 +pager: +1 415 559-3214 +roomNumber: 8698 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jurgen Strauss,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jurgen Strauss +sn: Strauss +description: This is Jurgen Strauss's description +facsimileTelephoneNumber: +1 510 382-4514 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 510 956-4978 +title: Supreme Product Development Admin +userPassword: Password1 +uid: StraussJ +givenName: Jurgen +mail: StraussJ@8983b5ec67954736aa1e1d407ad9bb05.bitwarden.com +carLicense: GAL894 +departmentNumber: 1766 +employeeType: Employee +homePhone: +1 510 852-8561 +initials: J. S. +mobile: +1 510 726-1106 +pager: +1 510 997-4847 +roomNumber: 8949 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anestassia Phair,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anestassia Phair +sn: Phair +description: This is Anestassia Phair's description +facsimileTelephoneNumber: +1 818 958-3234 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 134-4578 +title: Junior Product Testing Artist +userPassword: Password1 +uid: PhairA +givenName: Anestassia +mail: PhairA@c87d7949ca254b4faaba46ba985802e7.bitwarden.com +carLicense: AK1QFQ +departmentNumber: 5929 +employeeType: Employee +homePhone: +1 818 148-6803 +initials: A. P. +mobile: +1 818 597-5687 +pager: +1 818 383-7328 +roomNumber: 8544 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Koko Fetzko,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koko Fetzko +sn: Fetzko +description: This is Koko Fetzko's description +facsimileTelephoneNumber: +1 510 254-5106 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 339-4652 +title: Supreme Management Grunt +userPassword: Password1 +uid: FetzkoK +givenName: Koko +mail: FetzkoK@cfebb9c9e4244917aa4f9253ae236cdf.bitwarden.com +carLicense: Q5V7AV +departmentNumber: 6388 +employeeType: Normal +homePhone: +1 510 687-8866 +initials: K. F. +mobile: +1 510 564-9735 +pager: +1 510 720-8148 +roomNumber: 8982 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Irc McRae,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Irc McRae +sn: McRae +description: This is Irc McRae's description +facsimileTelephoneNumber: +1 510 414-6521 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 691-8837 +title: Master Management Director +userPassword: Password1 +uid: McRaeI +givenName: Irc +mail: McRaeI@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com +carLicense: C0W37X +departmentNumber: 7652 +employeeType: Employee +homePhone: +1 510 100-7966 +initials: I. M. +mobile: +1 510 975-1153 +pager: +1 510 729-4648 +roomNumber: 9746 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Aime Reno,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aime Reno +sn: Reno +description: This is Aime Reno's description +facsimileTelephoneNumber: +1 804 651-7670 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 225-4020 +title: Master Human Resources Fellow +userPassword: Password1 +uid: RenoA +givenName: Aime +mail: RenoA@d7af2d36201f488d997c6f7eea13f491.bitwarden.com +carLicense: 858O84 +departmentNumber: 5453 +employeeType: Normal +homePhone: +1 804 116-5504 +initials: A. R. +mobile: +1 804 969-4233 +pager: +1 804 256-3276 +roomNumber: 9339 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maddalena Duncan +sn: Duncan +description: This is Maddalena Duncan's description +facsimileTelephoneNumber: +1 206 793-5413 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 473-2621 +title: Master Human Resources Janitor +userPassword: Password1 +uid: DuncanM +givenName: Maddalena +mail: DuncanM@0a93c6c7853c48a3ac4722063dc9067d.bitwarden.com +carLicense: 2LVKJ2 +departmentNumber: 3042 +employeeType: Contract +homePhone: +1 206 605-6582 +initials: M. D. +mobile: +1 206 853-3198 +pager: +1 206 120-3451 +roomNumber: 8644 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Olympe Aston,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olympe Aston +sn: Aston +description: This is Olympe Aston's description +facsimileTelephoneNumber: +1 510 649-5575 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 962-7328 +title: Junior Administrative Engineer +userPassword: Password1 +uid: AstonO +givenName: Olympe +mail: AstonO@fa78004a0e4e45e5ac5f338a764f9f48.bitwarden.com +carLicense: XOHK3E +departmentNumber: 8425 +employeeType: Contract +homePhone: +1 510 277-9380 +initials: O. A. +mobile: +1 510 224-4434 +pager: +1 510 995-9878 +roomNumber: 9397 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Janenna Durnford,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janenna Durnford +sn: Durnford +description: This is Janenna Durnford's description +facsimileTelephoneNumber: +1 213 759-9933 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 545-8201 +title: Master Janitorial Artist +userPassword: Password1 +uid: DurnforJ +givenName: Janenna +mail: DurnforJ@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com +carLicense: VWC5D3 +departmentNumber: 2729 +employeeType: Normal +homePhone: +1 213 569-3031 +initials: J. D. +mobile: +1 213 614-9299 +pager: +1 213 790-4884 +roomNumber: 8875 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Selcuk Sochovka,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selcuk Sochovka +sn: Sochovka +description: This is Selcuk Sochovka's description +facsimileTelephoneNumber: +1 213 812-1585 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 997-2320 +title: Junior Peons Evangelist +userPassword: Password1 +uid: SochovkS +givenName: Selcuk +mail: SochovkS@442794dffd624b3d835092b89be2e152.bitwarden.com +carLicense: 6GXPR8 +departmentNumber: 5446 +employeeType: Contract +homePhone: +1 213 227-8513 +initials: S. S. +mobile: +1 213 539-4668 +pager: +1 213 542-1304 +roomNumber: 8767 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lauretta Abell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lauretta Abell +sn: Abell +description: This is Lauretta Abell's description +facsimileTelephoneNumber: +1 206 235-2983 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 206 198-5297 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: AbellL +givenName: Lauretta +mail: AbellL@4654bae9a87c447a9b895fec0c062c67.bitwarden.com +carLicense: IQFF9E +departmentNumber: 7925 +employeeType: Employee +homePhone: +1 206 795-2500 +initials: L. A. +mobile: +1 206 208-6637 +pager: +1 206 324-1241 +roomNumber: 8988 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Akin Algood,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akin Algood +sn: Algood +description: This is Akin Algood's description +facsimileTelephoneNumber: +1 804 849-7625 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 923-4413 +title: Master Administrative President +userPassword: Password1 +uid: AlgoodA +givenName: Akin +mail: AlgoodA@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com +carLicense: MIPBIC +departmentNumber: 2858 +employeeType: Contract +homePhone: +1 804 581-4670 +initials: A. A. +mobile: +1 804 831-8187 +pager: +1 804 790-6638 +roomNumber: 8315 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lenette Rance,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenette Rance +sn: Rance +description: This is Lenette Rance's description +facsimileTelephoneNumber: +1 510 943-5502 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 447-9608 +title: Associate Human Resources Developer +userPassword: Password1 +uid: RanceL +givenName: Lenette +mail: RanceL@efa9f7679ea94344a42e6df58b28f7ca.bitwarden.com +carLicense: V2TECN +departmentNumber: 2404 +employeeType: Contract +homePhone: +1 510 517-9981 +initials: L. R. +mobile: +1 510 103-2741 +pager: +1 510 286-4087 +roomNumber: 9199 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamilah Findlay +sn: Findlay +description: This is Kamilah Findlay's description +facsimileTelephoneNumber: +1 415 366-7537 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 477-1656 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: FindlayK +givenName: Kamilah +mail: FindlayK@eeef0f1cc6484967a0425927e4f0c510.bitwarden.com +carLicense: 00O6FD +departmentNumber: 7822 +employeeType: Employee +homePhone: +1 415 236-5824 +initials: K. F. +mobile: +1 415 324-6387 +pager: +1 415 674-4874 +roomNumber: 8457 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lauretta Cleroux +sn: Cleroux +description: This is Lauretta Cleroux's description +facsimileTelephoneNumber: +1 818 864-6375 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 895-4813 +title: Supreme Product Development Architect +userPassword: Password1 +uid: ClerouxL +givenName: Lauretta +mail: ClerouxL@a9d112e2c8734cf88b105800c98f72cf.bitwarden.com +carLicense: 42NKYU +departmentNumber: 3756 +employeeType: Employee +homePhone: +1 818 279-3326 +initials: L. C. +mobile: +1 818 994-4442 +pager: +1 818 132-1471 +roomNumber: 9973 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Louisa Thorne,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Louisa Thorne +sn: Thorne +description: This is Louisa Thorne's description +facsimileTelephoneNumber: +1 804 740-8741 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 804 720-1111 +title: Associate Janitorial Developer +userPassword: Password1 +uid: ThorneL +givenName: Louisa +mail: ThorneL@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com +carLicense: WNBXQ7 +departmentNumber: 8376 +employeeType: Contract +homePhone: +1 804 982-2010 +initials: L. T. +mobile: +1 804 846-8505 +pager: +1 804 536-9702 +roomNumber: 8865 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AntonPhuoc Marrett +sn: Marrett +description: This is AntonPhuoc Marrett's description +facsimileTelephoneNumber: +1 408 100-8388 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 408 437-1122 +title: Chief Product Testing Grunt +userPassword: Password1 +uid: MarrettA +givenName: AntonPhuoc +mail: MarrettA@b6debf4c211f43749c69c905c5857018.bitwarden.com +carLicense: 5OMEH9 +departmentNumber: 7801 +employeeType: Employee +homePhone: +1 408 871-4776 +initials: A. M. +mobile: +1 408 636-2985 +pager: +1 408 415-3291 +roomNumber: 9752 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ShingChi Beardmore +sn: Beardmore +description: This is ShingChi Beardmore's description +facsimileTelephoneNumber: +1 415 901-7719 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 901-4758 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: BeardmoS +givenName: ShingChi +mail: BeardmoS@daecf76d8c3940f1a79ca6f29fd09de1.bitwarden.com +carLicense: 5DVU8Y +departmentNumber: 5971 +employeeType: Contract +homePhone: +1 415 137-2925 +initials: S. B. +mobile: +1 415 885-7823 +pager: +1 415 778-6990 +roomNumber: 9193 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malcolm Shyu +sn: Shyu +description: This is Malcolm Shyu's description +facsimileTelephoneNumber: +1 206 933-5920 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 206 510-1852 +title: Associate Janitorial Evangelist +userPassword: Password1 +uid: ShyuM +givenName: Malcolm +mail: ShyuM@89819b213b4e4eb69e461ea54d755f38.bitwarden.com +carLicense: IQB3PW +departmentNumber: 7823 +employeeType: Contract +homePhone: +1 206 646-7955 +initials: M. S. +mobile: +1 206 848-2761 +pager: +1 206 687-3871 +roomNumber: 8633 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ichiro Schill,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ichiro Schill +sn: Schill +description: This is Ichiro Schill's description +facsimileTelephoneNumber: +1 206 579-5817 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 168-5877 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: SchillI +givenName: Ichiro +mail: SchillI@bf9ca547b016429e8b1013b51e16d909.bitwarden.com +carLicense: I2P1V1 +departmentNumber: 8060 +employeeType: Normal +homePhone: +1 206 910-5964 +initials: I. S. +mobile: +1 206 430-1116 +pager: +1 206 590-9226 +roomNumber: 8789 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Delila Swinson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delila Swinson +sn: Swinson +description: This is Delila Swinson's description +facsimileTelephoneNumber: +1 510 801-6782 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 356-1796 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: SwinsonD +givenName: Delila +mail: SwinsonD@1622721c590542e0bda86ad6de9cffcc.bitwarden.com +carLicense: NF3KVR +departmentNumber: 3588 +employeeType: Contract +homePhone: +1 510 366-7348 +initials: D. S. +mobile: +1 510 959-6150 +pager: +1 510 919-9177 +roomNumber: 9941 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sriv Paul,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sriv Paul +sn: Paul +description: This is Sriv Paul's description +facsimileTelephoneNumber: +1 818 862-3068 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 126-6961 +title: Supreme Peons President +userPassword: Password1 +uid: PaulS +givenName: Sriv +mail: PaulS@8ac0b632f576407ba66f1733b0c4738e.bitwarden.com +carLicense: WQ0M43 +departmentNumber: 1213 +employeeType: Contract +homePhone: +1 818 682-2111 +initials: S. P. +mobile: +1 818 966-3687 +pager: +1 818 853-3049 +roomNumber: 9061 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Trish Rombeek,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trish Rombeek +sn: Rombeek +description: This is Trish Rombeek's description +facsimileTelephoneNumber: +1 206 427-2879 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 401-2890 +title: Junior Human Resources Admin +userPassword: Password1 +uid: RombeekT +givenName: Trish +mail: RombeekT@11e98c2ee48b45178d13435be794eede.bitwarden.com +carLicense: 9L3GA3 +departmentNumber: 5256 +employeeType: Normal +homePhone: +1 206 265-2638 +initials: T. R. +mobile: +1 206 157-5036 +pager: +1 206 751-7360 +roomNumber: 8237 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tien Aghi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tien Aghi +sn: Aghi +description: This is Tien Aghi's description +facsimileTelephoneNumber: +1 510 185-2028 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 707-2890 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: AghiT +givenName: Tien +mail: AghiT@66f011cdb9ae4854a875f5226891a8d2.bitwarden.com +carLicense: 8O2WLW +departmentNumber: 6495 +employeeType: Contract +homePhone: +1 510 194-8561 +initials: T. A. +mobile: +1 510 374-5472 +pager: +1 510 425-9798 +roomNumber: 8530 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlyn Hewer +sn: Hewer +description: This is Carlyn Hewer's description +facsimileTelephoneNumber: +1 818 870-8684 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 188-5574 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: HewerC +givenName: Carlyn +mail: HewerC@b5658d38a0434cce9ace31ecf66a3835.bitwarden.com +carLicense: MLEYJ9 +departmentNumber: 7005 +employeeType: Employee +homePhone: +1 818 816-2632 +initials: C. H. +mobile: +1 818 731-9439 +pager: +1 818 299-2174 +roomNumber: 9653 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Barlas Discover,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barlas Discover +sn: Discover +description: This is Barlas Discover's description +facsimileTelephoneNumber: +1 206 271-1489 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 592-6047 +title: Junior Peons Pinhead +userPassword: Password1 +uid: DiscoveB +givenName: Barlas +mail: DiscoveB@7342ee713ddb492bb8f187e76f68e083.bitwarden.com +carLicense: WCXFM3 +departmentNumber: 9870 +employeeType: Employee +homePhone: +1 206 875-2992 +initials: B. D. +mobile: +1 206 477-3504 +pager: +1 206 818-3068 +roomNumber: 9661 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sarita Cescon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarita Cescon +sn: Cescon +description: This is Sarita Cescon's description +facsimileTelephoneNumber: +1 415 736-5136 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 415 383-2430 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: CesconS +givenName: Sarita +mail: CesconS@c44c933bac8b4cc8954bde72968abe20.bitwarden.com +carLicense: G9W4AI +departmentNumber: 8599 +employeeType: Normal +homePhone: +1 415 550-2214 +initials: S. C. +mobile: +1 415 450-7367 +pager: +1 415 764-1803 +roomNumber: 8183 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Errol MAINT,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Errol MAINT +sn: MAINT +description: This is Errol MAINT's description +facsimileTelephoneNumber: +1 818 966-8279 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 818 558-1712 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: MAINTE +givenName: Errol +mail: MAINTE@4a381f5d86cf400c9010a8a96d5cde80.bitwarden.com +carLicense: NNBKFK +departmentNumber: 9574 +employeeType: Employee +homePhone: +1 818 777-7257 +initials: E. M. +mobile: +1 818 123-5989 +pager: +1 818 838-3225 +roomNumber: 8263 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vonny Sheu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vonny Sheu +sn: Sheu +description: This is Vonny Sheu's description +facsimileTelephoneNumber: +1 408 560-9567 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 369-3870 +title: Supreme Management Pinhead +userPassword: Password1 +uid: SheuV +givenName: Vonny +mail: SheuV@c711a2b311664a188cabd37fda0821b6.bitwarden.com +carLicense: M03QJ7 +departmentNumber: 2838 +employeeType: Contract +homePhone: +1 408 292-8005 +initials: V. S. +mobile: +1 408 418-1263 +pager: +1 408 446-4239 +roomNumber: 8989 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Guilford Kung,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guilford Kung +sn: Kung +description: This is Guilford Kung's description +facsimileTelephoneNumber: +1 408 416-2828 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 152-8354 +title: Chief Administrative Mascot +userPassword: Password1 +uid: KungG +givenName: Guilford +mail: KungG@a989bc4f0b1a4c80b486110777685af8.bitwarden.com +carLicense: 9EHGGW +departmentNumber: 4261 +employeeType: Contract +homePhone: +1 408 777-5401 +initials: G. K. +mobile: +1 408 724-3856 +pager: +1 408 419-9149 +roomNumber: 9956 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marguerite Markland,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marguerite Markland +sn: Markland +description: This is Marguerite Markland's description +facsimileTelephoneNumber: +1 804 794-3998 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 221-4533 +title: Junior Peons Admin +userPassword: Password1 +uid: MarklanM +givenName: Marguerite +mail: MarklanM@87bd41c90d2e4626aa1a8435072906ff.bitwarden.com +carLicense: PS8GOP +departmentNumber: 2387 +employeeType: Normal +homePhone: +1 804 250-3960 +initials: M. M. +mobile: +1 804 164-1826 +pager: +1 804 106-6919 +roomNumber: 9802 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HoiKin Gebhardt +sn: Gebhardt +description: This is HoiKin Gebhardt's description +facsimileTelephoneNumber: +1 206 633-6547 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 780-5063 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: GebhardH +givenName: HoiKin +mail: GebhardH@92468910821a458ca936a273ecde380f.bitwarden.com +carLicense: QXM32O +departmentNumber: 4598 +employeeType: Employee +homePhone: +1 206 919-8400 +initials: H. G. +mobile: +1 206 492-2229 +pager: +1 206 163-9642 +roomNumber: 9032 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Viviane Lenox,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viviane Lenox +sn: Lenox +description: This is Viviane Lenox's description +facsimileTelephoneNumber: +1 804 826-1933 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 649-4249 +title: Junior Payroll Director +userPassword: Password1 +uid: LenoxV +givenName: Viviane +mail: LenoxV@e6ab02c53a3c4216ba5b75ac65120e12.bitwarden.com +carLicense: IJTEOF +departmentNumber: 1674 +employeeType: Normal +homePhone: +1 804 753-4736 +initials: V. L. +mobile: +1 804 418-5742 +pager: +1 804 385-9180 +roomNumber: 9776 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Walliw Borrelli,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walliw Borrelli +sn: Borrelli +description: This is Walliw Borrelli's description +facsimileTelephoneNumber: +1 415 632-8334 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 452-6709 +title: Supreme Management Czar +userPassword: Password1 +uid: BorrellW +givenName: Walliw +mail: BorrellW@9da8707f84d94fc6a64c7ccfeaa1b78b.bitwarden.com +carLicense: RTISS9 +departmentNumber: 9541 +employeeType: Normal +homePhone: +1 415 920-6093 +initials: W. B. +mobile: +1 415 250-3505 +pager: +1 415 783-9893 +roomNumber: 9900 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhiren Vasil +sn: Vasil +description: This is Dhiren Vasil's description +facsimileTelephoneNumber: +1 804 522-6179 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 615-4856 +title: Junior Product Testing Writer +userPassword: Password1 +uid: VasilD +givenName: Dhiren +mail: VasilD@d31bfc50f85342329bba0a1a96f5ad95.bitwarden.com +carLicense: 85GP7N +departmentNumber: 2216 +employeeType: Employee +homePhone: +1 804 555-4138 +initials: D. V. +mobile: +1 804 637-6117 +pager: +1 804 210-2308 +roomNumber: 8630 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clayton Kingsbury +sn: Kingsbury +description: This is Clayton Kingsbury's description +facsimileTelephoneNumber: +1 804 890-3095 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 952-7774 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: KingsbuC +givenName: Clayton +mail: KingsbuC@5ecfe4c8aaf4487fb624902f7b975e7f.bitwarden.com +carLicense: WPMWFL +departmentNumber: 6049 +employeeType: Contract +homePhone: +1 804 987-3084 +initials: C. K. +mobile: +1 804 372-8510 +pager: +1 804 486-8931 +roomNumber: 8070 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Amalea Laskin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amalea Laskin +sn: Laskin +description: This is Amalea Laskin's description +facsimileTelephoneNumber: +1 213 993-9218 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 180-4316 +title: Junior Janitorial Evangelist +userPassword: Password1 +uid: LaskinA +givenName: Amalea +mail: LaskinA@520ff39da95249c7ade86c3a64b17f3f.bitwarden.com +carLicense: N4TTL7 +departmentNumber: 2548 +employeeType: Contract +homePhone: +1 213 101-7386 +initials: A. L. +mobile: +1 213 986-9344 +pager: +1 213 113-4709 +roomNumber: 8547 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Florida Gebrael,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florida Gebrael +sn: Gebrael +description: This is Florida Gebrael's description +facsimileTelephoneNumber: +1 818 946-8773 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 818 499-6102 +title: Chief Janitorial Technician +userPassword: Password1 +uid: GebraelF +givenName: Florida +mail: GebraelF@5d869bea03ed495786efc921360e43b4.bitwarden.com +carLicense: CRL5HH +departmentNumber: 8644 +employeeType: Employee +homePhone: +1 818 974-1043 +initials: F. G. +mobile: +1 818 617-3461 +pager: +1 818 256-1716 +roomNumber: 8053 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kieron Walkins,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kieron Walkins +sn: Walkins +description: This is Kieron Walkins's description +facsimileTelephoneNumber: +1 206 147-7887 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 395-8400 +title: Chief Product Development Manager +userPassword: Password1 +uid: WalkinsK +givenName: Kieron +mail: WalkinsK@9f9dd66ef9e34a42ab7a2c5eaff108f5.bitwarden.com +carLicense: 690B05 +departmentNumber: 7715 +employeeType: Normal +homePhone: +1 206 969-4285 +initials: K. W. +mobile: +1 206 225-4308 +pager: +1 206 522-7810 +roomNumber: 8533 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Andree Junkin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andree Junkin +sn: Junkin +description: This is Andree Junkin's description +facsimileTelephoneNumber: +1 510 720-1123 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 290-7012 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: JunkinA +givenName: Andree +mail: JunkinA@01b74c7732624f42a6fbbc33b3652f66.bitwarden.com +carLicense: TN5W1D +departmentNumber: 3347 +employeeType: Contract +homePhone: +1 510 450-1987 +initials: A. J. +mobile: +1 510 901-6524 +pager: +1 510 278-9333 +roomNumber: 9448 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Louise Joudrey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Louise Joudrey +sn: Joudrey +description: This is Louise Joudrey's description +facsimileTelephoneNumber: +1 213 837-5418 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 283-5767 +title: Chief Peons Janitor +userPassword: Password1 +uid: JoudreyL +givenName: Louise +mail: JoudreyL@cfc8b9e4a2f14b128363b00bdc84ff74.bitwarden.com +carLicense: UUMQ8E +departmentNumber: 9336 +employeeType: Normal +homePhone: +1 213 812-8085 +initials: L. J. +mobile: +1 213 199-3866 +pager: +1 213 532-9319 +roomNumber: 8848 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gillie Achcar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gillie Achcar +sn: Achcar +description: This is Gillie Achcar's description +facsimileTelephoneNumber: +1 415 863-5229 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 731-5169 +title: Supreme Product Development Punk +userPassword: Password1 +uid: AchcarG +givenName: Gillie +mail: AchcarG@f545ecd56a5b4fe0a9748924d28342ea.bitwarden.com +carLicense: DWP408 +departmentNumber: 5136 +employeeType: Contract +homePhone: +1 415 149-2528 +initials: G. A. +mobile: +1 415 679-2506 +pager: +1 415 111-6899 +roomNumber: 9542 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Divine Ferriss,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Divine Ferriss +sn: Ferriss +description: This is Divine Ferriss's description +facsimileTelephoneNumber: +1 415 744-3324 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 104-8599 +title: Master Administrative Warrior +userPassword: Password1 +uid: FerrissD +givenName: Divine +mail: FerrissD@20649d21fd1148cb824fc7af995ba516.bitwarden.com +carLicense: EI94KR +departmentNumber: 8905 +employeeType: Contract +homePhone: +1 415 463-9671 +initials: D. F. +mobile: +1 415 886-1825 +pager: +1 415 855-9329 +roomNumber: 9199 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Noella Charlebois,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noella Charlebois +sn: Charlebois +description: This is Noella Charlebois's description +facsimileTelephoneNumber: +1 804 536-2756 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 700-2671 +title: Junior Product Testing Grunt +userPassword: Password1 +uid: CharlebN +givenName: Noella +mail: CharlebN@5bff87b1f64343a6ba2b4c6f245cd371.bitwarden.com +carLicense: MQPIKM +departmentNumber: 1385 +employeeType: Contract +homePhone: +1 804 427-4925 +initials: N. C. +mobile: +1 804 102-5400 +pager: +1 804 391-5867 +roomNumber: 8249 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Brenn Screener,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brenn Screener +sn: Screener +description: This is Brenn Screener's description +facsimileTelephoneNumber: +1 415 215-1817 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 103-3305 +title: Supreme Human Resources Pinhead +userPassword: Password1 +uid: ScreeneB +givenName: Brenn +mail: ScreeneB@19a8f5526a554f0cb06e7cba3da0c581.bitwarden.com +carLicense: T7JCQ8 +departmentNumber: 9695 +employeeType: Contract +homePhone: +1 415 279-8016 +initials: B. S. +mobile: +1 415 599-9608 +pager: +1 415 664-2467 +roomNumber: 8780 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agretha Decourcy +sn: Decourcy +description: This is Agretha Decourcy's description +facsimileTelephoneNumber: +1 206 754-6846 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 952-6976 +title: Associate Product Testing President +userPassword: Password1 +uid: DecourcA +givenName: Agretha +mail: DecourcA@726a4125a7d94ad38a1dc92c2882e4bd.bitwarden.com +carLicense: DQR0F5 +departmentNumber: 3242 +employeeType: Contract +homePhone: +1 206 983-7099 +initials: A. D. +mobile: +1 206 569-9808 +pager: +1 206 131-7375 +roomNumber: 9149 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Olivie Bruneau,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olivie Bruneau +sn: Bruneau +description: This is Olivie Bruneau's description +facsimileTelephoneNumber: +1 804 373-3203 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 395-2575 +title: Chief Management Artist +userPassword: Password1 +uid: BruneauO +givenName: Olivie +mail: BruneauO@7feea2d1b4e04d13bf5dd19cb643d02d.bitwarden.com +carLicense: WAE616 +departmentNumber: 9391 +employeeType: Normal +homePhone: +1 804 733-5612 +initials: O. B. +mobile: +1 804 849-7804 +pager: +1 804 306-5168 +roomNumber: 8731 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Annemarie VanMeter,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annemarie VanMeter +sn: VanMeter +description: This is Annemarie VanMeter's description +facsimileTelephoneNumber: +1 818 454-1361 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 818 207-8221 +title: Junior Peons Architect +userPassword: Password1 +uid: VanMeteA +givenName: Annemarie +mail: VanMeteA@c6917cdcf88c4b1cb24fafd7c4f07601.bitwarden.com +carLicense: SVW95F +departmentNumber: 2695 +employeeType: Normal +homePhone: +1 818 937-9337 +initials: A. V. +mobile: +1 818 883-5821 +pager: +1 818 240-2299 +roomNumber: 8735 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seiko Stachowiak +sn: Stachowiak +description: This is Seiko Stachowiak's description +facsimileTelephoneNumber: +1 408 705-5864 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 158-4209 +title: Associate Human Resources Assistant +userPassword: Password1 +uid: StachowS +givenName: Seiko +mail: StachowS@7d7a686ce6534dc2b82bd3604eea7f8b.bitwarden.com +carLicense: 2L742G +departmentNumber: 7753 +employeeType: Contract +homePhone: +1 408 371-9101 +initials: S. S. +mobile: +1 408 440-8692 +pager: +1 408 621-5921 +roomNumber: 8825 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rudy Piper,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rudy Piper +sn: Piper +description: This is Rudy Piper's description +facsimileTelephoneNumber: +1 415 628-9230 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 542-7219 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: PiperR +givenName: Rudy +mail: PiperR@2f5fd5dddfb54bca86a1d0320ba60e06.bitwarden.com +carLicense: FPHBDB +departmentNumber: 9384 +employeeType: Normal +homePhone: +1 415 418-5153 +initials: R. P. +mobile: +1 415 771-2019 +pager: +1 415 949-9204 +roomNumber: 9682 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janessa Dunnion +sn: Dunnion +description: This is Janessa Dunnion's description +facsimileTelephoneNumber: +1 213 882-8889 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 270-7753 +title: Master Product Testing Evangelist +userPassword: Password1 +uid: DunnionJ +givenName: Janessa +mail: DunnionJ@bf22abb443f242d591554d5b4dde5bdb.bitwarden.com +carLicense: VS263A +departmentNumber: 4955 +employeeType: Employee +homePhone: +1 213 197-5371 +initials: J. D. +mobile: +1 213 162-4153 +pager: +1 213 480-5282 +roomNumber: 8495 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Berny Burger,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berny Burger +sn: Burger +description: This is Berny Burger's description +facsimileTelephoneNumber: +1 510 636-3569 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 510 721-3233 +title: Chief Product Development Technician +userPassword: Password1 +uid: BurgerB +givenName: Berny +mail: BurgerB@634978d04fca41d6af5289220bc42474.bitwarden.com +carLicense: 973KC0 +departmentNumber: 1481 +employeeType: Normal +homePhone: +1 510 379-4598 +initials: B. B. +mobile: +1 510 970-3173 +pager: +1 510 988-2291 +roomNumber: 9233 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shirene Moyers,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirene Moyers +sn: Moyers +description: This is Shirene Moyers's description +facsimileTelephoneNumber: +1 206 689-5819 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 380-8822 +title: Junior Product Development Czar +userPassword: Password1 +uid: MoyersS +givenName: Shirene +mail: MoyersS@ed6a92d94db74753ac56089472178365.bitwarden.com +carLicense: SNHPXL +departmentNumber: 3906 +employeeType: Contract +homePhone: +1 206 154-3811 +initials: S. M. +mobile: +1 206 663-5897 +pager: +1 206 425-3653 +roomNumber: 9312 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hideki Willis,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hideki Willis +sn: Willis +description: This is Hideki Willis's description +facsimileTelephoneNumber: +1 510 427-6424 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 815-6246 +title: Supreme Human Resources Pinhead +userPassword: Password1 +uid: WillisH +givenName: Hideki +mail: WillisH@3badeafafe3b4639b92d03c5b1235944.bitwarden.com +carLicense: R474V0 +departmentNumber: 3462 +employeeType: Normal +homePhone: +1 510 168-9529 +initials: H. W. +mobile: +1 510 431-7030 +pager: +1 510 711-8492 +roomNumber: 9294 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Manas Leveille,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manas Leveille +sn: Leveille +description: This is Manas Leveille's description +facsimileTelephoneNumber: +1 213 512-1123 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 761-8280 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: LeveillM +givenName: Manas +mail: LeveillM@4e4132396a384237a0a15d5888e86f73.bitwarden.com +carLicense: GXQYSB +departmentNumber: 4474 +employeeType: Employee +homePhone: +1 213 797-1979 +initials: M. L. +mobile: +1 213 928-7351 +pager: +1 213 325-7080 +roomNumber: 8543 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Collette Quane,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Collette Quane +sn: Quane +description: This is Collette Quane's description +facsimileTelephoneNumber: +1 510 247-4710 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 440-2378 +title: Chief Product Development Technician +userPassword: Password1 +uid: QuaneC +givenName: Collette +mail: QuaneC@7c0df7bf9a9345799ef1f7a5139ff67d.bitwarden.com +carLicense: 940LNY +departmentNumber: 6394 +employeeType: Contract +homePhone: +1 510 804-7062 +initials: C. Q. +mobile: +1 510 252-1104 +pager: +1 510 160-5413 +roomNumber: 9820 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Renu Schallenberg,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renu Schallenberg +sn: Schallenberg +description: This is Renu Schallenberg's description +facsimileTelephoneNumber: +1 510 388-3278 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 806-9121 +title: Associate Administrative Technician +userPassword: Password1 +uid: SchalleR +givenName: Renu +mail: SchalleR@8bced59a99724d5eb08954ec3497f98c.bitwarden.com +carLicense: 7CW91R +departmentNumber: 7554 +employeeType: Contract +homePhone: +1 510 850-2938 +initials: R. S. +mobile: +1 510 378-4798 +pager: +1 510 459-1999 +roomNumber: 9750 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Craig Fleischer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Craig Fleischer +sn: Fleischer +description: This is Craig Fleischer's description +facsimileTelephoneNumber: +1 818 409-8382 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 795-5137 +title: Chief Janitorial Janitor +userPassword: Password1 +uid: FleischC +givenName: Craig +mail: FleischC@b54cd58bbda74ccca6cdaefde6caedc2.bitwarden.com +carLicense: 977GOS +departmentNumber: 2594 +employeeType: Normal +homePhone: +1 818 544-1342 +initials: C. F. +mobile: +1 818 781-3401 +pager: +1 818 312-1787 +roomNumber: 8057 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marla Visentin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marla Visentin +sn: Visentin +description: This is Marla Visentin's description +facsimileTelephoneNumber: +1 818 591-8596 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 818 575-7556 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: VisentiM +givenName: Marla +mail: VisentiM@0d089601fe8d4842aca2c104051c6a49.bitwarden.com +carLicense: I5N2MN +departmentNumber: 7096 +employeeType: Contract +homePhone: +1 818 533-9974 +initials: M. V. +mobile: +1 818 122-5985 +pager: +1 818 240-6378 +roomNumber: 8265 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathryn Maidenhead +sn: Maidenhead +description: This is Kathryn Maidenhead's description +facsimileTelephoneNumber: +1 408 890-3242 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 245-5533 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: MaidenhK +givenName: Kathryn +mail: MaidenhK@541a80b7aa9b481bbf28921cf43e3f5e.bitwarden.com +carLicense: T3KN06 +departmentNumber: 5101 +employeeType: Normal +homePhone: +1 408 929-8915 +initials: K. M. +mobile: +1 408 968-5741 +pager: +1 408 570-1059 +roomNumber: 9998 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlynne Coppedge +sn: Coppedge +description: This is Carlynne Coppedge's description +facsimileTelephoneNumber: +1 206 145-9357 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 952-4883 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: CoppedgC +givenName: Carlynne +mail: CoppedgC@623d62a2d1154923b1c9152d9f2876da.bitwarden.com +carLicense: PRKLVU +departmentNumber: 3091 +employeeType: Normal +homePhone: +1 206 916-7321 +initials: C. C. +mobile: +1 206 736-7571 +pager: +1 206 500-7920 +roomNumber: 9437 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Baris Ralph,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baris Ralph +sn: Ralph +description: This is Baris Ralph's description +facsimileTelephoneNumber: +1 408 649-7096 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 251-8102 +title: Chief Janitorial Consultant +userPassword: Password1 +uid: RalphB +givenName: Baris +mail: RalphB@e0c514219e7e4e7cba9db3753f3ca628.bitwarden.com +carLicense: S7VC31 +departmentNumber: 7953 +employeeType: Contract +homePhone: +1 408 635-6315 +initials: B. R. +mobile: +1 408 568-8653 +pager: +1 408 681-8356 +roomNumber: 8054 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gusta Nugent,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gusta Nugent +sn: Nugent +description: This is Gusta Nugent's description +facsimileTelephoneNumber: +1 415 842-7070 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 500-2448 +title: Master Management Mascot +userPassword: Password1 +uid: NugentG +givenName: Gusta +mail: NugentG@e3adbf44503541a8a477fd522db5f455.bitwarden.com +carLicense: HH6FJK +departmentNumber: 1191 +employeeType: Contract +homePhone: +1 415 952-3127 +initials: G. N. +mobile: +1 415 701-9246 +pager: +1 415 188-3830 +roomNumber: 9075 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Boer Jago,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Boer Jago +sn: Jago +description: This is Boer Jago's description +facsimileTelephoneNumber: +1 206 471-8972 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 764-6578 +title: Junior Product Development Technician +userPassword: Password1 +uid: JagoB +givenName: Boer +mail: JagoB@dac0539de4424fe28175329373de09c0.bitwarden.com +carLicense: 2SJ9F2 +departmentNumber: 3654 +employeeType: Normal +homePhone: +1 206 369-8405 +initials: B. J. +mobile: +1 206 183-1256 +pager: +1 206 192-7128 +roomNumber: 8092 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kieran Wattier,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kieran Wattier +sn: Wattier +description: This is Kieran Wattier's description +facsimileTelephoneNumber: +1 818 968-1481 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 129-4848 +title: Master Administrative President +userPassword: Password1 +uid: WattierK +givenName: Kieran +mail: WattierK@577dbf91ec444b2fa84d20b944b95da9.bitwarden.com +carLicense: CMBAY1 +departmentNumber: 7782 +employeeType: Normal +homePhone: +1 818 902-1473 +initials: K. W. +mobile: +1 818 143-2996 +pager: +1 818 833-1839 +roomNumber: 8486 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mala Shillingford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mala Shillingford +sn: Shillingford +description: This is Mala Shillingford's description +facsimileTelephoneNumber: +1 213 636-4902 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 785-3011 +title: Junior Human Resources Fellow +userPassword: Password1 +uid: ShillinM +givenName: Mala +mail: ShillinM@7080ace676f14d789edd6d153887110b.bitwarden.com +carLicense: 44C3T9 +departmentNumber: 5968 +employeeType: Contract +homePhone: +1 213 646-3315 +initials: M. S. +mobile: +1 213 439-8742 +pager: +1 213 266-2321 +roomNumber: 8598 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Charyl Whitty,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charyl Whitty +sn: Whitty +description: This is Charyl Whitty's description +facsimileTelephoneNumber: +1 408 690-7038 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 639-3056 +title: Junior Management Developer +userPassword: Password1 +uid: WhittyC +givenName: Charyl +mail: WhittyC@e8e08beeff9a4cdcaf143e74a433e1d5.bitwarden.com +carLicense: I8XYR2 +departmentNumber: 7883 +employeeType: Contract +homePhone: +1 408 248-6083 +initials: C. W. +mobile: +1 408 407-7346 +pager: +1 408 720-9239 +roomNumber: 8327 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jawad Waller,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jawad Waller +sn: Waller +description: This is Jawad Waller's description +facsimileTelephoneNumber: +1 804 539-2768 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 804 962-6800 +title: Associate Management Assistant +userPassword: Password1 +uid: WallerJ +givenName: Jawad +mail: WallerJ@2ef868dd48b240d78fd77732e9fe3cda.bitwarden.com +carLicense: YQULXH +departmentNumber: 5204 +employeeType: Contract +homePhone: +1 804 490-9262 +initials: J. W. +mobile: +1 804 725-3334 +pager: +1 804 105-8835 +roomNumber: 8692 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berta DorionMagnan +sn: DorionMagnan +description: This is Berta DorionMagnan's description +facsimileTelephoneNumber: +1 415 385-5588 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 696-6910 +title: Associate Product Development Madonna +userPassword: Password1 +uid: DorionMB +givenName: Berta +mail: DorionMB@796636c316134f4ea242b8ffac574e0e.bitwarden.com +carLicense: B4N9HM +departmentNumber: 8259 +employeeType: Normal +homePhone: +1 415 771-7861 +initials: B. D. +mobile: +1 415 429-4148 +pager: +1 415 730-9931 +roomNumber: 9562 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Glynda Tisdall,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glynda Tisdall +sn: Tisdall +description: This is Glynda Tisdall's description +facsimileTelephoneNumber: +1 415 758-5824 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 694-1455 +title: Chief Payroll Visionary +userPassword: Password1 +uid: TisdallG +givenName: Glynda +mail: TisdallG@5e62af5b40314ecea84813300a46dd77.bitwarden.com +carLicense: 2K6UO4 +departmentNumber: 9705 +employeeType: Contract +homePhone: +1 415 657-8249 +initials: G. T. +mobile: +1 415 478-5858 +pager: +1 415 580-7910 +roomNumber: 8357 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Aditya Runnels,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aditya Runnels +sn: Runnels +description: This is Aditya Runnels's description +facsimileTelephoneNumber: +1 510 642-8999 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 501-2383 +title: Junior Product Testing Writer +userPassword: Password1 +uid: RunnelsA +givenName: Aditya +mail: RunnelsA@ccab46deb94e4a1ab4ac6683d09bb4f7.bitwarden.com +carLicense: OUVDWF +departmentNumber: 2261 +employeeType: Normal +homePhone: +1 510 102-8350 +initials: A. R. +mobile: +1 510 876-8266 +pager: +1 510 216-9879 +roomNumber: 8057 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nannette Wasylenko +sn: Wasylenko +description: This is Nannette Wasylenko's description +facsimileTelephoneNumber: +1 804 234-3715 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 804 301-5959 +title: Master Product Testing Architect +userPassword: Password1 +uid: WasylenN +givenName: Nannette +mail: WasylenN@bbdf84c7202d4fed8ebf04b035151774.bitwarden.com +carLicense: 1YB87U +departmentNumber: 2577 +employeeType: Employee +homePhone: +1 804 334-8439 +initials: N. W. +mobile: +1 804 742-3793 +pager: +1 804 961-5181 +roomNumber: 8389 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shuji Lisch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shuji Lisch +sn: Lisch +description: This is Shuji Lisch's description +facsimileTelephoneNumber: +1 415 299-6030 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 990-3581 +title: Master Management Madonna +userPassword: Password1 +uid: LischS +givenName: Shuji +mail: LischS@6acb8cb6e83344b2baf0ea01b349a09b.bitwarden.com +carLicense: T4PMMV +departmentNumber: 2647 +employeeType: Normal +homePhone: +1 415 100-8848 +initials: S. L. +mobile: +1 415 356-7961 +pager: +1 415 688-4628 +roomNumber: 9255 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Corette Biggers,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corette Biggers +sn: Biggers +description: This is Corette Biggers's description +facsimileTelephoneNumber: +1 510 278-7747 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 239-2292 +title: Chief Product Development Punk +userPassword: Password1 +uid: BiggersC +givenName: Corette +mail: BiggersC@536233742e094d32a93b46e75cbb8e9e.bitwarden.com +carLicense: B6F7GL +departmentNumber: 2635 +employeeType: Normal +homePhone: +1 510 734-6166 +initials: C. B. +mobile: +1 510 125-8848 +pager: +1 510 650-8233 +roomNumber: 9288 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sarah Marceau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarah Marceau +sn: Marceau +description: This is Sarah Marceau's description +facsimileTelephoneNumber: +1 206 329-6966 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 948-8039 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: MarceauS +givenName: Sarah +mail: MarceauS@69b4d60a542046658c2cab83a8afa560.bitwarden.com +carLicense: 6IY2B9 +departmentNumber: 2106 +employeeType: Contract +homePhone: +1 206 637-7293 +initials: S. M. +mobile: +1 206 415-6777 +pager: +1 206 389-2648 +roomNumber: 8454 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Huy Reporting,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huy Reporting +sn: Reporting +description: This is Huy Reporting's description +facsimileTelephoneNumber: +1 510 585-6628 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 261-5382 +title: Junior Payroll Dictator +userPassword: Password1 +uid: ReportiH +givenName: Huy +mail: ReportiH@1076925fed8248679e5db581a4d397c4.bitwarden.com +carLicense: ROFEKS +departmentNumber: 6389 +employeeType: Employee +homePhone: +1 510 179-2716 +initials: H. R. +mobile: +1 510 215-2148 +pager: +1 510 556-1069 +roomNumber: 9575 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Charissa Douglas,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charissa Douglas +sn: Douglas +description: This is Charissa Douglas's description +facsimileTelephoneNumber: +1 408 506-8204 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 921-9330 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: DouglasC +givenName: Charissa +mail: DouglasC@c5507fb1b7424c01bac1a4fbf30f64fa.bitwarden.com +carLicense: OJDNG5 +departmentNumber: 2826 +employeeType: Normal +homePhone: +1 408 226-1675 +initials: C. D. +mobile: +1 408 685-8453 +pager: +1 408 301-1092 +roomNumber: 9293 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephenie Maynes +sn: Maynes +description: This is Stephenie Maynes's description +facsimileTelephoneNumber: +1 206 536-6030 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 503-8865 +title: Master Janitorial Consultant +userPassword: Password1 +uid: MaynesS +givenName: Stephenie +mail: MaynesS@dc25e6259a754e12b71b6ceb921f6e43.bitwarden.com +carLicense: CKI352 +departmentNumber: 1064 +employeeType: Employee +homePhone: +1 206 892-6312 +initials: S. M. +mobile: +1 206 630-5689 +pager: +1 206 805-8967 +roomNumber: 9125 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cortney Okamoto,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cortney Okamoto +sn: Okamoto +description: This is Cortney Okamoto's description +facsimileTelephoneNumber: +1 408 740-2499 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 520-1517 +title: Master Product Development Fellow +userPassword: Password1 +uid: OkamotoC +givenName: Cortney +mail: OkamotoC@649a503dbd264f3ba9e14eb9795c58eb.bitwarden.com +carLicense: IJ6HLK +departmentNumber: 2293 +employeeType: Employee +homePhone: +1 408 964-6271 +initials: C. O. +mobile: +1 408 122-4138 +pager: +1 408 676-4044 +roomNumber: 8281 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rene Fletcher,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rene Fletcher +sn: Fletcher +description: This is Rene Fletcher's description +facsimileTelephoneNumber: +1 213 600-2009 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 584-5486 +title: Supreme Payroll Czar +userPassword: Password1 +uid: FletcheR +givenName: Rene +mail: FletcheR@eae289de16194f21b28831dbf07663de.bitwarden.com +carLicense: FCVA19 +departmentNumber: 6870 +employeeType: Employee +homePhone: +1 213 648-8922 +initials: R. F. +mobile: +1 213 767-4812 +pager: +1 213 863-9205 +roomNumber: 9389 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Deryck Nassr,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deryck Nassr +sn: Nassr +description: This is Deryck Nassr's description +facsimileTelephoneNumber: +1 510 398-9821 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 745-9821 +title: Associate Janitorial Assistant +userPassword: Password1 +uid: NassrD +givenName: Deryck +mail: NassrD@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com +carLicense: 8JBTB9 +departmentNumber: 5003 +employeeType: Employee +homePhone: +1 510 207-3738 +initials: D. N. +mobile: +1 510 660-1127 +pager: +1 510 833-5287 +roomNumber: 9518 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merline Dmsrtime +sn: Dmsrtime +description: This is Merline Dmsrtime's description +facsimileTelephoneNumber: +1 213 132-9576 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 615-6676 +title: Junior Payroll President +userPassword: Password1 +uid: DmsrtimM +givenName: Merline +mail: DmsrtimM@7f1848e959b9431aae2d7ba89294b649.bitwarden.com +carLicense: QS1ACD +departmentNumber: 4938 +employeeType: Contract +homePhone: +1 213 418-6911 +initials: M. D. +mobile: +1 213 768-5021 +pager: +1 213 358-7489 +roomNumber: 9794 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruthie Kingshott +sn: Kingshott +description: This is Ruthie Kingshott's description +facsimileTelephoneNumber: +1 415 615-4085 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 830-6018 +title: Master Human Resources Mascot +userPassword: Password1 +uid: KingshoR +givenName: Ruthie +mail: KingshoR@e084ec394e994677a50d409a6357c42a.bitwarden.com +carLicense: E790QK +departmentNumber: 7896 +employeeType: Contract +homePhone: +1 415 187-2647 +initials: R. K. +mobile: +1 415 405-8955 +pager: +1 415 963-1712 +roomNumber: 9873 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Coraline Kato,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coraline Kato +sn: Kato +description: This is Coraline Kato's description +facsimileTelephoneNumber: +1 408 638-1440 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 162-6084 +title: Chief Peons Fellow +userPassword: Password1 +uid: KatoC +givenName: Coraline +mail: KatoC@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com +carLicense: HWEFQF +departmentNumber: 2959 +employeeType: Normal +homePhone: +1 408 451-2707 +initials: C. K. +mobile: +1 408 768-8662 +pager: +1 408 356-5857 +roomNumber: 9555 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Becca Hallenbeck,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Becca Hallenbeck +sn: Hallenbeck +description: This is Becca Hallenbeck's description +facsimileTelephoneNumber: +1 415 823-1984 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 191-9987 +title: Junior Peons Visionary +userPassword: Password1 +uid: HallenbB +givenName: Becca +mail: HallenbB@0a414dfa34d6439f8f6befcf71900bba.bitwarden.com +carLicense: L3XWRY +departmentNumber: 7000 +employeeType: Employee +homePhone: +1 415 965-1336 +initials: B. H. +mobile: +1 415 809-6335 +pager: +1 415 736-3831 +roomNumber: 9581 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadye Urbanowich +sn: Urbanowich +description: This is Sadye Urbanowich's description +facsimileTelephoneNumber: +1 804 806-5332 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 605-4635 +title: Master Product Development Mascot +userPassword: Password1 +uid: UrbanowS +givenName: Sadye +mail: UrbanowS@0864b9b0dd32492b822981ac2a2f6875.bitwarden.com +carLicense: 8A11LU +departmentNumber: 6431 +employeeType: Employee +homePhone: +1 804 608-9418 +initials: S. U. +mobile: +1 804 646-1529 +pager: +1 804 974-8256 +roomNumber: 8692 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carin Briggs,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carin Briggs +sn: Briggs +description: This is Carin Briggs's description +facsimileTelephoneNumber: +1 510 800-4206 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 307-4901 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: BriggsC +givenName: Carin +mail: BriggsC@60ffb350fa6740079313430abf25721b.bitwarden.com +carLicense: 2GF0HW +departmentNumber: 1157 +employeeType: Normal +homePhone: +1 510 436-7668 +initials: C. B. +mobile: +1 510 686-9069 +pager: +1 510 529-4901 +roomNumber: 9571 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Wai Pellizzeri,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wai Pellizzeri +sn: Pellizzeri +description: This is Wai Pellizzeri's description +facsimileTelephoneNumber: +1 510 523-5933 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 325-6931 +title: Supreme Peons Architect +userPassword: Password1 +uid: PellizzW +givenName: Wai +mail: PellizzW@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com +carLicense: OKFJVU +departmentNumber: 3448 +employeeType: Contract +homePhone: +1 510 549-4909 +initials: W. P. +mobile: +1 510 898-9294 +pager: +1 510 458-6754 +roomNumber: 8035 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Joachim Nesrallah,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joachim Nesrallah +sn: Nesrallah +description: This is Joachim Nesrallah's description +facsimileTelephoneNumber: +1 804 792-8476 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 565-7301 +title: Junior Peons Dictator +userPassword: Password1 +uid: NesrallJ +givenName: Joachim +mail: NesrallJ@6211d58c45444a489ca2a34f354f2ae9.bitwarden.com +carLicense: BGU3T0 +departmentNumber: 4807 +employeeType: Employee +homePhone: +1 804 347-1512 +initials: J. N. +mobile: +1 804 907-4154 +pager: +1 804 675-2909 +roomNumber: 9022 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glenn Nordstrom +sn: Nordstrom +description: This is Glenn Nordstrom's description +facsimileTelephoneNumber: +1 213 766-8540 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 251-2432 +title: Junior Janitorial Technician +userPassword: Password1 +uid: NordstrG +givenName: Glenn +mail: NordstrG@3ee35d919ef5410b9a742e5fe9487a11.bitwarden.com +carLicense: OEVH29 +departmentNumber: 2789 +employeeType: Employee +homePhone: +1 213 253-5735 +initials: G. N. +mobile: +1 213 751-3709 +pager: +1 213 606-3753 +roomNumber: 9936 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Loesje Smothers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loesje Smothers +sn: Smothers +description: This is Loesje Smothers's description +facsimileTelephoneNumber: +1 510 439-2667 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 698-9478 +title: Junior Management Engineer +userPassword: Password1 +uid: SmotherL +givenName: Loesje +mail: SmotherL@e2ac30b0774145abbea79773529c940e.bitwarden.com +carLicense: A51XXF +departmentNumber: 8058 +employeeType: Normal +homePhone: +1 510 973-9243 +initials: L. S. +mobile: +1 510 715-1776 +pager: +1 510 165-8528 +roomNumber: 8652 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chester Crawshaw +sn: Crawshaw +description: This is Chester Crawshaw's description +facsimileTelephoneNumber: +1 206 765-2159 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 636-9877 +title: Junior Human Resources Consultant +userPassword: Password1 +uid: CrawshaC +givenName: Chester +mail: CrawshaC@638ddd5f5c874c1fbe017c3aa0d978c8.bitwarden.com +carLicense: 4B9UWC +departmentNumber: 8941 +employeeType: Normal +homePhone: +1 206 892-2903 +initials: C. C. +mobile: +1 206 163-2868 +pager: +1 206 316-2667 +roomNumber: 9801 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dani Maksoud,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dani Maksoud +sn: Maksoud +description: This is Dani Maksoud's description +facsimileTelephoneNumber: +1 804 607-6361 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 407-5214 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: MaksoudD +givenName: Dani +mail: MaksoudD@a549bdf5420c411a867c314ba75b6975.bitwarden.com +carLicense: DPYOPP +departmentNumber: 5323 +employeeType: Contract +homePhone: +1 804 541-4464 +initials: D. M. +mobile: +1 804 939-9068 +pager: +1 804 524-8960 +roomNumber: 9725 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kieran Forghani,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kieran Forghani +sn: Forghani +description: This is Kieran Forghani's description +facsimileTelephoneNumber: +1 804 657-8160 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 519-2924 +title: Supreme Management Developer +userPassword: Password1 +uid: ForghanK +givenName: Kieran +mail: ForghanK@ea750648663b4e85ae486d2e32c216dd.bitwarden.com +carLicense: 941I01 +departmentNumber: 6699 +employeeType: Normal +homePhone: +1 804 338-5501 +initials: K. F. +mobile: +1 804 557-7223 +pager: +1 804 706-3620 +roomNumber: 8930 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lusa Korpela,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lusa Korpela +sn: Korpela +description: This is Lusa Korpela's description +facsimileTelephoneNumber: +1 206 124-5832 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 206 639-6147 +title: Junior Payroll Artist +userPassword: Password1 +uid: KorpelaL +givenName: Lusa +mail: KorpelaL@3105b5dc96c343758f704f474866d911.bitwarden.com +carLicense: A8O368 +departmentNumber: 2306 +employeeType: Employee +homePhone: +1 206 729-2115 +initials: L. K. +mobile: +1 206 593-3294 +pager: +1 206 743-3624 +roomNumber: 8732 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherianne Armstrong +sn: Armstrong +description: This is Cherianne Armstrong's description +facsimileTelephoneNumber: +1 510 495-6215 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 285-5602 +title: Master Janitorial Admin +userPassword: Password1 +uid: ArmstroC +givenName: Cherianne +mail: ArmstroC@0932a94d4e324368929167f71e7881a8.bitwarden.com +carLicense: H37MPJ +departmentNumber: 4395 +employeeType: Contract +homePhone: +1 510 541-9060 +initials: C. A. +mobile: +1 510 286-4699 +pager: +1 510 245-1758 +roomNumber: 9471 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Data Roussin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Data Roussin +sn: Roussin +description: This is Data Roussin's description +facsimileTelephoneNumber: +1 415 526-4405 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 140-8328 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: RoussinD +givenName: Data +mail: RoussinD@57c8e316985b48038aad56a3f94817a1.bitwarden.com +carLicense: DPQIKF +departmentNumber: 5636 +employeeType: Normal +homePhone: +1 415 459-2085 +initials: D. R. +mobile: +1 415 229-3019 +pager: +1 415 933-5894 +roomNumber: 9776 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Stone Scholes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stone Scholes +sn: Scholes +description: This is Stone Scholes's description +facsimileTelephoneNumber: +1 213 977-7124 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 397-8655 +title: Associate Peons Engineer +userPassword: Password1 +uid: ScholesS +givenName: Stone +mail: ScholesS@58bd5c0a9abd418c929331ed9ab0ec61.bitwarden.com +carLicense: KY31XT +departmentNumber: 7685 +employeeType: Contract +homePhone: +1 213 653-1746 +initials: S. S. +mobile: +1 213 800-9126 +pager: +1 213 824-2787 +roomNumber: 8247 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Painterson Popowicz +sn: Popowicz +description: This is Painterson Popowicz's description +facsimileTelephoneNumber: +1 408 923-6757 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 304-7482 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: PopowicP +givenName: Painterson +mail: PopowicP@1325c87839d04240ac1a16f9b96e2aee.bitwarden.com +carLicense: 06BIXR +departmentNumber: 6059 +employeeType: Contract +homePhone: +1 408 276-3609 +initials: P. P. +mobile: +1 408 281-9157 +pager: +1 408 800-4688 +roomNumber: 9910 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subra Mezzoiuso +sn: Mezzoiuso +description: This is Subra Mezzoiuso's description +facsimileTelephoneNumber: +1 804 311-2455 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 496-7435 +title: Chief Human Resources President +userPassword: Password1 +uid: MezzoiuS +givenName: Subra +mail: MezzoiuS@6993d016013446bf8c45519f739f4a8a.bitwarden.com +carLicense: 84S7KH +departmentNumber: 8228 +employeeType: Contract +homePhone: +1 804 420-1539 +initials: S. M. +mobile: +1 804 120-1586 +pager: +1 804 218-4850 +roomNumber: 9107 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Agathe Huddleston,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agathe Huddleston +sn: Huddleston +description: This is Agathe Huddleston's description +facsimileTelephoneNumber: +1 804 572-1364 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 615-9897 +title: Supreme Administrative Figurehead +userPassword: Password1 +uid: HuddlesA +givenName: Agathe +mail: HuddlesA@9c640b9ada7e43fd815986e9b791454d.bitwarden.com +carLicense: 061JRN +departmentNumber: 8439 +employeeType: Normal +homePhone: +1 804 469-7871 +initials: A. H. +mobile: +1 804 655-5070 +pager: +1 804 803-8859 +roomNumber: 8681 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vmchange Vacher,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vmchange Vacher +sn: Vacher +description: This is Vmchange Vacher's description +facsimileTelephoneNumber: +1 818 554-5886 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 904-9397 +title: Master Payroll Grunt +userPassword: Password1 +uid: VacherV +givenName: Vmchange +mail: VacherV@dbb8e15fda2d4a1582516a0de74d9827.bitwarden.com +carLicense: 3KAMYK +departmentNumber: 1663 +employeeType: Contract +homePhone: +1 818 649-3752 +initials: V. V. +mobile: +1 818 165-2908 +pager: +1 818 865-8738 +roomNumber: 8438 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aleta Buntrock,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aleta Buntrock +sn: Buntrock +description: This is Aleta Buntrock's description +facsimileTelephoneNumber: +1 408 197-2044 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 444-3238 +title: Master Product Development Vice President +userPassword: Password1 +uid: BuntrocA +givenName: Aleta +mail: BuntrocA@1e8d211c25e74db48892bf1ab2e65581.bitwarden.com +carLicense: P6E70V +departmentNumber: 4595 +employeeType: Normal +homePhone: +1 408 713-2487 +initials: A. B. +mobile: +1 408 693-9161 +pager: +1 408 523-2117 +roomNumber: 8982 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Darlleen Murris,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darlleen Murris +sn: Murris +description: This is Darlleen Murris's description +facsimileTelephoneNumber: +1 408 740-7115 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 641-1710 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: MurrisD +givenName: Darlleen +mail: MurrisD@40d320f39b3b4ec6b2aa4be872b12e34.bitwarden.com +carLicense: WDJR77 +departmentNumber: 8194 +employeeType: Employee +homePhone: +1 408 478-3739 +initials: D. M. +mobile: +1 408 377-8625 +pager: +1 408 738-9887 +roomNumber: 8196 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carrissa Smulders +sn: Smulders +description: This is Carrissa Smulders's description +facsimileTelephoneNumber: +1 415 663-7394 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 328-6664 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: SmulderC +givenName: Carrissa +mail: SmulderC@eb7a1c92edb446a9823944e09f0b6b2e.bitwarden.com +carLicense: 0HIY9L +departmentNumber: 2565 +employeeType: Contract +homePhone: +1 415 592-8463 +initials: C. S. +mobile: +1 415 868-5514 +pager: +1 415 922-4472 +roomNumber: 9745 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mysore Kenlan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mysore Kenlan +sn: Kenlan +description: This is Mysore Kenlan's description +facsimileTelephoneNumber: +1 408 689-4087 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 790-7737 +title: Master Product Development Architect +userPassword: Password1 +uid: KenlanM +givenName: Mysore +mail: KenlanM@62762c759020411b89296a80fdd53afd.bitwarden.com +carLicense: 4RE2XL +departmentNumber: 3254 +employeeType: Employee +homePhone: +1 408 696-3659 +initials: M. K. +mobile: +1 408 104-5342 +pager: +1 408 285-9295 +roomNumber: 8772 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roscoe Dhuga +sn: Dhuga +description: This is Roscoe Dhuga's description +facsimileTelephoneNumber: +1 415 436-1406 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 787-6518 +title: Associate Administrative Artist +userPassword: Password1 +uid: DhugaR +givenName: Roscoe +mail: DhugaR@59778d9e834c452586d9e26b970164f5.bitwarden.com +carLicense: 8N3QVY +departmentNumber: 1778 +employeeType: Contract +homePhone: +1 415 323-3657 +initials: R. D. +mobile: +1 415 486-3442 +pager: +1 415 860-3481 +roomNumber: 9904 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roxanne Janning,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxanne Janning +sn: Janning +description: This is Roxanne Janning's description +facsimileTelephoneNumber: +1 818 481-8702 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 818 823-2456 +title: Associate Janitorial Artist +userPassword: Password1 +uid: JanningR +givenName: Roxanne +mail: JanningR@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com +carLicense: IGAV3O +departmentNumber: 1673 +employeeType: Contract +homePhone: +1 818 281-9046 +initials: R. J. +mobile: +1 818 969-3877 +pager: +1 818 785-5657 +roomNumber: 9600 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alexander Enns,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alexander Enns +sn: Enns +description: This is Alexander Enns's description +facsimileTelephoneNumber: +1 415 678-6543 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 325-5383 +title: Master Peons Evangelist +userPassword: Password1 +uid: EnnsA +givenName: Alexander +mail: EnnsA@3d692d684ca742119b69b3914fc21732.bitwarden.com +carLicense: 85X01T +departmentNumber: 2873 +employeeType: Normal +homePhone: +1 415 944-7127 +initials: A. E. +mobile: +1 415 158-2877 +pager: +1 415 455-2993 +roomNumber: 8019 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Koen Keith,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koen Keith +sn: Keith +description: This is Koen Keith's description +facsimileTelephoneNumber: +1 510 433-2310 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 563-4989 +title: Chief Janitorial Czar +userPassword: Password1 +uid: KeithK +givenName: Koen +mail: KeithK@db7691c9dca24eb7875f7a9259652b96.bitwarden.com +carLicense: QSMISD +departmentNumber: 5571 +employeeType: Normal +homePhone: +1 510 655-5284 +initials: K. K. +mobile: +1 510 493-5856 +pager: +1 510 390-1925 +roomNumber: 8845 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mohan Parulekar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mohan Parulekar +sn: Parulekar +description: This is Mohan Parulekar's description +facsimileTelephoneNumber: +1 804 246-2566 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 894-8803 +title: Supreme Peons Madonna +userPassword: Password1 +uid: ParulekM +givenName: Mohan +mail: ParulekM@de898a326d21476c9afc54d7a723d91b.bitwarden.com +carLicense: 6NIINP +departmentNumber: 9196 +employeeType: Contract +homePhone: +1 804 405-8816 +initials: M. P. +mobile: +1 804 397-1785 +pager: +1 804 686-1275 +roomNumber: 9535 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ronna Esparza,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronna Esparza +sn: Esparza +description: This is Ronna Esparza's description +facsimileTelephoneNumber: +1 213 859-9577 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 856-2990 +title: Chief Administrative Punk +userPassword: Password1 +uid: EsparzaR +givenName: Ronna +mail: EsparzaR@6f40fd1f57664424aae86977d815ec60.bitwarden.com +carLicense: EXNKBG +departmentNumber: 1181 +employeeType: Employee +homePhone: +1 213 932-7545 +initials: R. E. +mobile: +1 213 915-2649 +pager: +1 213 538-3267 +roomNumber: 9950 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hot Terrel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hot Terrel +sn: Terrel +description: This is Hot Terrel's description +facsimileTelephoneNumber: +1 415 270-7780 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 369-9144 +title: Master Product Development Sales Rep +userPassword: Password1 +uid: TerrelH +givenName: Hot +mail: TerrelH@d32e39b1240444d599938e20b2b9a2af.bitwarden.com +carLicense: TX7Y0O +departmentNumber: 4811 +employeeType: Normal +homePhone: +1 415 734-2645 +initials: H. T. +mobile: +1 415 655-5547 +pager: +1 415 654-1928 +roomNumber: 8271 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Aparna Loiseau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aparna Loiseau +sn: Loiseau +description: This is Aparna Loiseau's description +facsimileTelephoneNumber: +1 818 210-2020 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 471-3488 +title: Associate Peons Mascot +userPassword: Password1 +uid: LoiseauA +givenName: Aparna +mail: LoiseauA@3f22733d317d4f91854fb0b865164d32.bitwarden.com +carLicense: TJWEBD +departmentNumber: 5397 +employeeType: Normal +homePhone: +1 818 452-9469 +initials: A. L. +mobile: +1 818 270-5466 +pager: +1 818 798-5608 +roomNumber: 9912 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lana Fasken,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lana Fasken +sn: Fasken +description: This is Lana Fasken's description +facsimileTelephoneNumber: +1 206 613-8789 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 738-3801 +title: Master Janitorial Fellow +userPassword: Password1 +uid: FaskenL +givenName: Lana +mail: FaskenL@3177f113b2494bf084a4349d34933284.bitwarden.com +carLicense: P57GAJ +departmentNumber: 8766 +employeeType: Normal +homePhone: +1 206 110-7160 +initials: L. F. +mobile: +1 206 249-1466 +pager: +1 206 976-9173 +roomNumber: 9440 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fariborz Neefs,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fariborz Neefs +sn: Neefs +description: This is Fariborz Neefs's description +facsimileTelephoneNumber: +1 408 689-4012 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 783-7518 +title: Master Peons Visionary +userPassword: Password1 +uid: NeefsF +givenName: Fariborz +mail: NeefsF@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com +carLicense: QXNMIP +departmentNumber: 8401 +employeeType: Employee +homePhone: +1 408 305-6009 +initials: F. N. +mobile: +1 408 632-3636 +pager: +1 408 437-6399 +roomNumber: 8502 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Netty Eustace,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Netty Eustace +sn: Eustace +description: This is Netty Eustace's description +facsimileTelephoneNumber: +1 804 138-2785 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 128-9029 +title: Supreme Peons Admin +userPassword: Password1 +uid: EustaceN +givenName: Netty +mail: EustaceN@af1c936dc969478a898b38c058f5ed5e.bitwarden.com +carLicense: XDKATL +departmentNumber: 6054 +employeeType: Employee +homePhone: +1 804 585-4955 +initials: N. E. +mobile: +1 804 255-5283 +pager: +1 804 927-4038 +roomNumber: 8247 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rio Philion,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rio Philion +sn: Philion +description: This is Rio Philion's description +facsimileTelephoneNumber: +1 206 373-9806 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 773-3595 +title: Supreme Product Development Writer +userPassword: Password1 +uid: PhilionR +givenName: Rio +mail: PhilionR@60d49768d4644227a17f0fda0b9acae9.bitwarden.com +carLicense: HW9FM8 +departmentNumber: 8360 +employeeType: Contract +homePhone: +1 206 908-5030 +initials: R. P. +mobile: +1 206 704-1978 +pager: +1 206 505-3749 +roomNumber: 9008 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beverlie Kutten,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beverlie Kutten +sn: Kutten +description: This is Beverlie Kutten's description +facsimileTelephoneNumber: +1 415 190-1967 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 975-8750 +title: Junior Administrative Madonna +userPassword: Password1 +uid: KuttenB +givenName: Beverlie +mail: KuttenB@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com +carLicense: ARVG8R +departmentNumber: 6288 +employeeType: Contract +homePhone: +1 415 106-5183 +initials: B. K. +mobile: +1 415 723-8936 +pager: +1 415 762-5959 +roomNumber: 9659 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tammi Hodgkin +sn: Hodgkin +description: This is Tammi Hodgkin's description +facsimileTelephoneNumber: +1 818 621-5490 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 240-6794 +title: Chief Human Resources Developer +userPassword: Password1 +uid: HodgkinT +givenName: Tammi +mail: HodgkinT@c58d896de82b440ca30e70c88676b48e.bitwarden.com +carLicense: 0FS5SP +departmentNumber: 2308 +employeeType: Contract +homePhone: +1 818 935-3793 +initials: T. H. +mobile: +1 818 620-7765 +pager: +1 818 171-9202 +roomNumber: 8169 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=William Ridgewell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: William Ridgewell +sn: Ridgewell +description: This is William Ridgewell's description +facsimileTelephoneNumber: +1 510 276-1486 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 510 361-9190 +title: Chief Product Testing Admin +userPassword: Password1 +uid: RidgeweW +givenName: William +mail: RidgeweW@6440b02815824326a0c464b5e91deecc.bitwarden.com +carLicense: U40S2Y +departmentNumber: 6231 +employeeType: Contract +homePhone: +1 510 520-9000 +initials: W. R. +mobile: +1 510 361-7224 +pager: +1 510 599-2696 +roomNumber: 8683 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nonah McGlynn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nonah McGlynn +sn: McGlynn +description: This is Nonah McGlynn's description +facsimileTelephoneNumber: +1 804 328-6029 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 331-6886 +title: Associate Administrative President +userPassword: Password1 +uid: McGlynnN +givenName: Nonah +mail: McGlynnN@c320d110c7a241ddbb5147ef5aebd508.bitwarden.com +carLicense: JXX21B +departmentNumber: 3100 +employeeType: Normal +homePhone: +1 804 708-6631 +initials: N. M. +mobile: +1 804 432-4644 +pager: +1 804 385-3004 +roomNumber: 9261 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Grace Hickerson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grace Hickerson +sn: Hickerson +description: This is Grace Hickerson's description +facsimileTelephoneNumber: +1 510 960-3379 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 559-4979 +title: Master Product Development Writer +userPassword: Password1 +uid: HickersG +givenName: Grace +mail: HickersG@396057d601294ebc9d5c0c43a2c7528b.bitwarden.com +carLicense: TYEI17 +departmentNumber: 3128 +employeeType: Contract +homePhone: +1 510 649-7676 +initials: G. H. +mobile: +1 510 147-5696 +pager: +1 510 277-2161 +roomNumber: 9332 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donn Thirugnanam +sn: Thirugnanam +description: This is Donn Thirugnanam's description +facsimileTelephoneNumber: +1 510 374-4855 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 510 336-7782 +title: Associate Product Development Sales Rep +userPassword: Password1 +uid: ThirugnD +givenName: Donn +mail: ThirugnD@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com +carLicense: E0UWSL +departmentNumber: 3133 +employeeType: Contract +homePhone: +1 510 358-3427 +initials: D. T. +mobile: +1 510 456-1582 +pager: +1 510 333-2267 +roomNumber: 9648 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Liping Levi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liping Levi +sn: Levi +description: This is Liping Levi's description +facsimileTelephoneNumber: +1 206 795-4819 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 813-3820 +title: Master Administrative Visionary +userPassword: Password1 +uid: LeviL +givenName: Liping +mail: LeviL@64d7ecf288c04c558094c63f6b45f377.bitwarden.com +carLicense: A7P6UP +departmentNumber: 5006 +employeeType: Employee +homePhone: +1 206 444-9458 +initials: L. L. +mobile: +1 206 571-8917 +pager: +1 206 314-3075 +roomNumber: 8530 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mauro Meubus,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mauro Meubus +sn: Meubus +description: This is Mauro Meubus's description +facsimileTelephoneNumber: +1 415 635-8479 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 237-2452 +title: Master Administrative Warrior +userPassword: Password1 +uid: MeubusM +givenName: Mauro +mail: MeubusM@04ab0dd813964f258093cf5c76d47099.bitwarden.com +carLicense: 6PN7QH +departmentNumber: 4840 +employeeType: Contract +homePhone: +1 415 123-6054 +initials: M. M. +mobile: +1 415 904-1222 +pager: +1 415 469-7165 +roomNumber: 9093 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Iteke Abbatantuono +sn: Abbatantuono +description: This is Iteke Abbatantuono's description +facsimileTelephoneNumber: +1 510 135-5507 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 553-4210 +title: Associate Administrative Technician +userPassword: Password1 +uid: AbbatanI +givenName: Iteke +mail: AbbatanI@d1dc373d110a4e68987e8e8fc1e917b4.bitwarden.com +carLicense: 3QLPEL +departmentNumber: 8628 +employeeType: Contract +homePhone: +1 510 344-6397 +initials: I. A. +mobile: +1 510 278-5554 +pager: +1 510 743-7138 +roomNumber: 8157 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Minny Southon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minny Southon +sn: Southon +description: This is Minny Southon's description +facsimileTelephoneNumber: +1 818 458-4613 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 818 152-1861 +title: Master Product Testing Madonna +userPassword: Password1 +uid: SouthonM +givenName: Minny +mail: SouthonM@a209c275d5e54dc2a7f8bab915f03396.bitwarden.com +carLicense: L5ALM6 +departmentNumber: 2340 +employeeType: Employee +homePhone: +1 818 831-3439 +initials: M. S. +mobile: +1 818 281-8400 +pager: +1 818 416-2240 +roomNumber: 9092 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Halina Zenar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Halina Zenar +sn: Zenar +description: This is Halina Zenar's description +facsimileTelephoneNumber: +1 213 404-9446 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 182-7910 +title: Chief Management Manager +userPassword: Password1 +uid: ZenarH +givenName: Halina +mail: ZenarH@3d26bfa9cedd4f12a12c0adbf8a4e691.bitwarden.com +carLicense: 5DHTF6 +departmentNumber: 3005 +employeeType: Employee +homePhone: +1 213 263-7742 +initials: H. Z. +mobile: +1 213 866-8234 +pager: +1 213 887-8224 +roomNumber: 9137 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gwenny Bertram,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwenny Bertram +sn: Bertram +description: This is Gwenny Bertram's description +facsimileTelephoneNumber: +1 510 833-3317 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 510 149-4547 +title: Master Payroll Architect +userPassword: Password1 +uid: BertramG +givenName: Gwenny +mail: BertramG@67a50420f0564b4b9d502195a9eb7324.bitwarden.com +carLicense: BLG9FB +departmentNumber: 7838 +employeeType: Contract +homePhone: +1 510 462-6823 +initials: G. B. +mobile: +1 510 825-9350 +pager: +1 510 173-5055 +roomNumber: 9901 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Andreana Gaube,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andreana Gaube +sn: Gaube +description: This is Andreana Gaube's description +facsimileTelephoneNumber: +1 415 851-3041 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 702-6520 +title: Chief Peons Writer +userPassword: Password1 +uid: GaubeA +givenName: Andreana +mail: GaubeA@c026df84b73b4f16beec47c31ac06303.bitwarden.com +carLicense: TW689P +departmentNumber: 3220 +employeeType: Contract +homePhone: +1 415 513-4665 +initials: A. G. +mobile: +1 415 938-6767 +pager: +1 415 598-2438 +roomNumber: 8191 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Michelina Zbib,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michelina Zbib +sn: Zbib +description: This is Michelina Zbib's description +facsimileTelephoneNumber: +1 206 124-5067 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 206 804-4006 +title: Junior Payroll Architect +userPassword: Password1 +uid: ZbibM +givenName: Michelina +mail: ZbibM@2f60971fa268439caffee9f84b2be8cb.bitwarden.com +carLicense: VVEQ30 +departmentNumber: 1411 +employeeType: Contract +homePhone: +1 206 413-2065 +initials: M. Z. +mobile: +1 206 749-4990 +pager: +1 206 119-5399 +roomNumber: 8331 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Davis Mutcher,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davis Mutcher +sn: Mutcher +description: This is Davis Mutcher's description +facsimileTelephoneNumber: +1 213 806-8086 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 751-7399 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: MutcherD +givenName: Davis +mail: MutcherD@b3865bcd46934100886192af9061706f.bitwarden.com +carLicense: XONTWF +departmentNumber: 7711 +employeeType: Employee +homePhone: +1 213 108-6001 +initials: D. M. +mobile: +1 213 132-7948 +pager: +1 213 266-9646 +roomNumber: 9755 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dannye Vopalensky +sn: Vopalensky +description: This is Dannye Vopalensky's description +facsimileTelephoneNumber: +1 804 213-2032 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 265-9970 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: VopalenD +givenName: Dannye +mail: VopalenD@b48cddaf61864244b80c9ba3e8279301.bitwarden.com +carLicense: WD37M4 +departmentNumber: 3900 +employeeType: Employee +homePhone: +1 804 805-4044 +initials: D. V. +mobile: +1 804 207-6719 +pager: +1 804 110-4617 +roomNumber: 8713 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kelcey Yedema,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelcey Yedema +sn: Yedema +description: This is Kelcey Yedema's description +facsimileTelephoneNumber: +1 206 457-8050 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 206 878-6499 +title: Master Payroll Consultant +userPassword: Password1 +uid: YedemaK +givenName: Kelcey +mail: YedemaK@03e01270dec047a5b17f2fbfe7ee61b3.bitwarden.com +carLicense: TG09XI +departmentNumber: 9183 +employeeType: Employee +homePhone: +1 206 680-3636 +initials: K. Y. +mobile: +1 206 212-9115 +pager: +1 206 265-7291 +roomNumber: 9434 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kaila Squizzato,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaila Squizzato +sn: Squizzato +description: This is Kaila Squizzato's description +facsimileTelephoneNumber: +1 213 691-3205 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 534-4732 +title: Junior Peons Stooge +userPassword: Password1 +uid: SquizzaK +givenName: Kaila +mail: SquizzaK@c9a4b60fa1eb470eb513b6d959a476c0.bitwarden.com +carLicense: WNAO2D +departmentNumber: 4987 +employeeType: Employee +homePhone: +1 213 618-3211 +initials: K. S. +mobile: +1 213 285-5829 +pager: +1 213 785-2241 +roomNumber: 9961 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ddene Ciocca,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ddene Ciocca +sn: Ciocca +description: This is Ddene Ciocca's description +facsimileTelephoneNumber: +1 206 838-7182 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 711-4650 +title: Associate Product Development Evangelist +userPassword: Password1 +uid: CioccaD +givenName: Ddene +mail: CioccaD@defab017f9734cfab5b3fea4ed24112c.bitwarden.com +carLicense: 0A7W3F +departmentNumber: 3089 +employeeType: Normal +homePhone: +1 206 321-8291 +initials: D. C. +mobile: +1 206 849-4182 +pager: +1 206 203-7273 +roomNumber: 9208 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Harmony Peschke,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harmony Peschke +sn: Peschke +description: This is Harmony Peschke's description +facsimileTelephoneNumber: +1 818 672-4562 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 283-8377 +title: Chief Human Resources Consultant +userPassword: Password1 +uid: PeschkeH +givenName: Harmony +mail: PeschkeH@2721cfc08f0240658ce3169305abe945.bitwarden.com +carLicense: WBL35B +departmentNumber: 1773 +employeeType: Contract +homePhone: +1 818 407-2483 +initials: H. P. +mobile: +1 818 557-5374 +pager: +1 818 248-8872 +roomNumber: 9304 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelena Ciaschi +sn: Ciaschi +description: This is Madelena Ciaschi's description +facsimileTelephoneNumber: +1 206 174-2397 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 455-9684 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: CiaschiM +givenName: Madelena +mail: CiaschiM@cc252680b96a4999bccdcb3df4f9a7ab.bitwarden.com +carLicense: FP9PK2 +departmentNumber: 2206 +employeeType: Normal +homePhone: +1 206 492-9520 +initials: M. C. +mobile: +1 206 369-8837 +pager: +1 206 357-1274 +roomNumber: 9178 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cheslie NTINASH,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cheslie NTINASH +sn: NTINASH +description: This is Cheslie NTINASH's description +facsimileTelephoneNumber: +1 408 390-8849 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 792-6151 +title: Supreme Management Artist +userPassword: Password1 +uid: NTINASHC +givenName: Cheslie +mail: NTINASHC@4e240d85327f4f81b9a139f4d41efb41.bitwarden.com +carLicense: QQTI43 +departmentNumber: 1386 +employeeType: Contract +homePhone: +1 408 927-7076 +initials: C. N. +mobile: +1 408 985-6672 +pager: +1 408 957-2061 +roomNumber: 9966 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Celisse Malizia,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celisse Malizia +sn: Malizia +description: This is Celisse Malizia's description +facsimileTelephoneNumber: +1 818 524-2560 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 817-3744 +title: Junior Management Engineer +userPassword: Password1 +uid: MaliziaC +givenName: Celisse +mail: MaliziaC@37c4f9ee232544a4846bc4a3466039ef.bitwarden.com +carLicense: C3Y404 +departmentNumber: 4882 +employeeType: Employee +homePhone: +1 818 938-4288 +initials: C. M. +mobile: +1 818 916-6716 +pager: +1 818 434-7542 +roomNumber: 9749 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jolyn Amarsi +sn: Amarsi +description: This is Jolyn Amarsi's description +facsimileTelephoneNumber: +1 408 127-5020 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 397-8703 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: AmarsiJ +givenName: Jolyn +mail: AmarsiJ@afcd326ae5b94cedba790b89df39e139.bitwarden.com +carLicense: HHT2VI +departmentNumber: 8342 +employeeType: Normal +homePhone: +1 408 628-9254 +initials: J. A. +mobile: +1 408 921-8558 +pager: +1 408 554-4882 +roomNumber: 8009 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rachelle Siew,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rachelle Siew +sn: Siew +description: This is Rachelle Siew's description +facsimileTelephoneNumber: +1 818 386-3510 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 142-3573 +title: Junior Product Development Dictator +userPassword: Password1 +uid: SiewR +givenName: Rachelle +mail: SiewR@70d73737dc5e4bc597c3edd093f95a4a.bitwarden.com +carLicense: 39X42D +departmentNumber: 6162 +employeeType: Contract +homePhone: +1 818 734-3861 +initials: R. S. +mobile: +1 818 150-6912 +pager: +1 818 696-7229 +roomNumber: 8564 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Charlean Robson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charlean Robson +sn: Robson +description: This is Charlean Robson's description +facsimileTelephoneNumber: +1 818 565-9604 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 818 573-8183 +title: Junior Peons President +userPassword: Password1 +uid: RobsonC +givenName: Charlean +mail: RobsonC@9f88732cfcc040c9ac7a9586e3020a63.bitwarden.com +carLicense: 44C44P +departmentNumber: 3917 +employeeType: Normal +homePhone: +1 818 312-9877 +initials: C. R. +mobile: +1 818 518-2787 +pager: +1 818 266-3274 +roomNumber: 8463 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gabriela Mustillo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabriela Mustillo +sn: Mustillo +description: This is Gabriela Mustillo's description +facsimileTelephoneNumber: +1 206 497-3745 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 805-3781 +title: Junior Management Developer +userPassword: Password1 +uid: MustillG +givenName: Gabriela +mail: MustillG@3105b5dc96c343758f704f474866d911.bitwarden.com +carLicense: SIY153 +departmentNumber: 5551 +employeeType: Contract +homePhone: +1 206 813-9665 +initials: G. M. +mobile: +1 206 397-9435 +pager: +1 206 400-5845 +roomNumber: 9029 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Latia Viau,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Latia Viau +sn: Viau +description: This is Latia Viau's description +facsimileTelephoneNumber: +1 818 101-4836 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 959-2379 +title: Supreme Product Testing Assistant +userPassword: Password1 +uid: ViauL +givenName: Latia +mail: ViauL@49b304035fc44bb4a3e211286fc4d652.bitwarden.com +carLicense: 423VS4 +departmentNumber: 4829 +employeeType: Normal +homePhone: +1 818 860-7886 +initials: L. V. +mobile: +1 818 185-1396 +pager: +1 818 917-5590 +roomNumber: 8110 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Madlen Venning,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madlen Venning +sn: Venning +description: This is Madlen Venning's description +facsimileTelephoneNumber: +1 804 328-6890 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 445-7911 +title: Chief Management Warrior +userPassword: Password1 +uid: VenningM +givenName: Madlen +mail: VenningM@b1e0fad1a7db4b25889e8df2c424913a.bitwarden.com +carLicense: CAGTV6 +departmentNumber: 7198 +employeeType: Contract +homePhone: +1 804 809-6455 +initials: M. V. +mobile: +1 804 350-4271 +pager: +1 804 836-6662 +roomNumber: 9319 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claretta Sehgal +sn: Sehgal +description: This is Claretta Sehgal's description +facsimileTelephoneNumber: +1 804 559-5569 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 804 477-7887 +title: Chief Product Testing Architect +userPassword: Password1 +uid: SehgalC +givenName: Claretta +mail: SehgalC@62ebc0cac09c4b59836fa31868a1365d.bitwarden.com +carLicense: US28UN +departmentNumber: 3399 +employeeType: Employee +homePhone: +1 804 224-5190 +initials: C. S. +mobile: +1 804 341-4252 +pager: +1 804 386-3640 +roomNumber: 9159 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gunilla Skene,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gunilla Skene +sn: Skene +description: This is Gunilla Skene's description +facsimileTelephoneNumber: +1 408 309-4142 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 173-5023 +title: Associate Management Technician +userPassword: Password1 +uid: SkeneG +givenName: Gunilla +mail: SkeneG@542303b775fa43b8b70b70cdc2197657.bitwarden.com +carLicense: 91BKGL +departmentNumber: 7327 +employeeType: Contract +homePhone: +1 408 512-8458 +initials: G. S. +mobile: +1 408 541-7730 +pager: +1 408 777-7603 +roomNumber: 9997 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anestassia Ting,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anestassia Ting +sn: Ting +description: This is Anestassia Ting's description +facsimileTelephoneNumber: +1 408 702-6857 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 102-1950 +title: Master Management Artist +userPassword: Password1 +uid: TingA +givenName: Anestassia +mail: TingA@b3c8c2a69311430c95d255cf755caf65.bitwarden.com +carLicense: 3QWLI0 +departmentNumber: 1877 +employeeType: Normal +homePhone: +1 408 106-4286 +initials: A. T. +mobile: +1 408 740-8074 +pager: +1 408 155-6985 +roomNumber: 8907 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=MaryJane Telco,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryJane Telco +sn: Telco +description: This is MaryJane Telco's description +facsimileTelephoneNumber: +1 408 291-1692 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 408 880-3203 +title: Chief Janitorial Admin +userPassword: Password1 +uid: TelcoM +givenName: MaryJane +mail: TelcoM@9f9fe6d238ce4f8cb29cecfb73bf648a.bitwarden.com +carLicense: 2WDNN7 +departmentNumber: 7214 +employeeType: Contract +homePhone: +1 408 190-2633 +initials: M. T. +mobile: +1 408 376-1108 +pager: +1 408 634-1593 +roomNumber: 8368 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genowefa Etzell +sn: Etzell +description: This is Genowefa Etzell's description +facsimileTelephoneNumber: +1 415 978-9675 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 222-7180 +title: Master Product Testing Stooge +userPassword: Password1 +uid: EtzellG +givenName: Genowefa +mail: EtzellG@9322f20face84b0a8db4dbabb4f4c507.bitwarden.com +carLicense: 91YDOW +departmentNumber: 5016 +employeeType: Contract +homePhone: +1 415 628-7979 +initials: G. E. +mobile: +1 415 759-8746 +pager: +1 415 124-1280 +roomNumber: 8989 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mansukha Tchir,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mansukha Tchir +sn: Tchir +description: This is Mansukha Tchir's description +facsimileTelephoneNumber: +1 818 141-8422 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 126-4362 +title: Associate Product Development Architect +userPassword: Password1 +uid: TchirM +givenName: Mansukha +mail: TchirM@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com +carLicense: DTJC67 +departmentNumber: 8973 +employeeType: Employee +homePhone: +1 818 328-6225 +initials: M. T. +mobile: +1 818 187-5971 +pager: +1 818 471-6943 +roomNumber: 9998 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caralie AbdulNour +sn: AbdulNour +description: This is Caralie AbdulNour's description +facsimileTelephoneNumber: +1 804 146-3904 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 112-1492 +title: Master Product Development Sales Rep +userPassword: Password1 +uid: AbdulNoC +givenName: Caralie +mail: AbdulNoC@9b79b6cacc7d4ea9a3519bd3f9441c87.bitwarden.com +carLicense: BF92QB +departmentNumber: 7920 +employeeType: Employee +homePhone: +1 804 832-9740 +initials: C. A. +mobile: +1 804 633-3996 +pager: +1 804 891-2181 +roomNumber: 8053 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sherline Gillard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherline Gillard +sn: Gillard +description: This is Sherline Gillard's description +facsimileTelephoneNumber: +1 510 591-1010 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 904-5638 +title: Junior Administrative Manager +userPassword: Password1 +uid: GillardS +givenName: Sherline +mail: GillardS@05749581377d47ba8047ee7237ce7f83.bitwarden.com +carLicense: 1WTDD4 +departmentNumber: 9042 +employeeType: Employee +homePhone: +1 510 632-3184 +initials: S. G. +mobile: +1 510 775-4008 +pager: +1 510 399-9493 +roomNumber: 8712 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Inm Stefanac,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inm Stefanac +sn: Stefanac +description: This is Inm Stefanac's description +facsimileTelephoneNumber: +1 408 208-6964 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 739-4691 +title: Master Product Testing Grunt +userPassword: Password1 +uid: StefanaI +givenName: Inm +mail: StefanaI@36a375859cdd487ea0bae44e1c40b92f.bitwarden.com +carLicense: 7P94K1 +departmentNumber: 7173 +employeeType: Employee +homePhone: +1 408 545-3784 +initials: I. S. +mobile: +1 408 790-1241 +pager: +1 408 887-3891 +roomNumber: 8795 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cosimo Haugrud +sn: Haugrud +description: This is Cosimo Haugrud's description +facsimileTelephoneNumber: +1 408 844-9832 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 408 548-8653 +title: Associate Product Testing Architect +userPassword: Password1 +uid: HaugrudC +givenName: Cosimo +mail: HaugrudC@be3459b8963e4676a7255dc7efa74560.bitwarden.com +carLicense: 4V9UA7 +departmentNumber: 4244 +employeeType: Employee +homePhone: +1 408 101-5675 +initials: C. H. +mobile: +1 408 510-4201 +pager: +1 408 335-4723 +roomNumber: 8925 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=PengDavid Pryor,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PengDavid Pryor +sn: Pryor +description: This is PengDavid Pryor's description +facsimileTelephoneNumber: +1 206 566-4709 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 206 627-8911 +title: Junior Payroll Manager +userPassword: Password1 +uid: PryorP +givenName: PengDavid +mail: PryorP@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com +carLicense: N29MK3 +departmentNumber: 7748 +employeeType: Employee +homePhone: +1 206 539-6940 +initials: P. P. +mobile: +1 206 716-3701 +pager: +1 206 293-6954 +roomNumber: 9882 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Agathe Hr,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agathe Hr +sn: Hr +description: This is Agathe Hr's description +facsimileTelephoneNumber: +1 510 673-1971 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 700-3261 +title: Associate Human Resources Punk +userPassword: Password1 +uid: HrA +givenName: Agathe +mail: HrA@aba92373b9e6445487406838438e9c43.bitwarden.com +carLicense: 8V6FI6 +departmentNumber: 2893 +employeeType: Employee +homePhone: +1 510 139-3342 +initials: A. H. +mobile: +1 510 338-1395 +pager: +1 510 156-6628 +roomNumber: 8491 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sastry Michelussi +sn: Michelussi +description: This is Sastry Michelussi's description +facsimileTelephoneNumber: +1 206 348-1696 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 340-3626 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: MicheluS +givenName: Sastry +mail: MicheluS@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com +carLicense: E62BOD +departmentNumber: 9474 +employeeType: Contract +homePhone: +1 206 184-5726 +initials: S. M. +mobile: +1 206 697-1349 +pager: +1 206 206-1583 +roomNumber: 9273 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ervin Biage,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ervin Biage +sn: Biage +description: This is Ervin Biage's description +facsimileTelephoneNumber: +1 510 667-3441 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 510 251-8827 +title: Junior Human Resources Warrior +userPassword: Password1 +uid: BiageE +givenName: Ervin +mail: BiageE@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com +carLicense: SXA7Q6 +departmentNumber: 3825 +employeeType: Employee +homePhone: +1 510 758-6189 +initials: E. B. +mobile: +1 510 801-8969 +pager: +1 510 513-1124 +roomNumber: 8106 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Brandie Vargo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandie Vargo +sn: Vargo +description: This is Brandie Vargo's description +facsimileTelephoneNumber: +1 818 528-1402 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 833-9251 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: VargoB +givenName: Brandie +mail: VargoB@6032a8b4894b42dc8d3f57130a5d8ef5.bitwarden.com +carLicense: MJG04W +departmentNumber: 4972 +employeeType: Employee +homePhone: +1 818 942-4329 +initials: B. V. +mobile: +1 818 766-7341 +pager: +1 818 841-9757 +roomNumber: 8740 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WoeiPeng Heinen +sn: Heinen +description: This is WoeiPeng Heinen's description +facsimileTelephoneNumber: +1 510 723-4760 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 510 475-6380 +title: Associate Administrative President +userPassword: Password1 +uid: HeinenW +givenName: WoeiPeng +mail: HeinenW@f928f43ad9cc43d983b210ccab6e69b0.bitwarden.com +carLicense: BGYF9X +departmentNumber: 8788 +employeeType: Normal +homePhone: +1 510 592-6391 +initials: W. H. +mobile: +1 510 184-8612 +pager: +1 510 267-9027 +roomNumber: 8599 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Augusto Audette,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Augusto Audette +sn: Audette +description: This is Augusto Audette's description +facsimileTelephoneNumber: +1 818 169-3320 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 818 393-8820 +title: Master Janitorial Admin +userPassword: Password1 +uid: AudetteA +givenName: Augusto +mail: AudetteA@77209db2428f411d91371f32d860ae4c.bitwarden.com +carLicense: 1Y50C5 +departmentNumber: 2521 +employeeType: Contract +homePhone: +1 818 472-9476 +initials: A. A. +mobile: +1 818 849-5985 +pager: +1 818 151-7201 +roomNumber: 9506 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Loella Haydock,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loella Haydock +sn: Haydock +description: This is Loella Haydock's description +facsimileTelephoneNumber: +1 818 283-6712 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 752-6344 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: HaydockL +givenName: Loella +mail: HaydockL@40b96b5eb0af49388ddf599aff4277e7.bitwarden.com +carLicense: SYEWB7 +departmentNumber: 4360 +employeeType: Employee +homePhone: +1 818 855-3193 +initials: L. H. +mobile: +1 818 541-6133 +pager: +1 818 143-6447 +roomNumber: 8403 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farrukh Dalsiel +sn: Dalsiel +description: This is Farrukh Dalsiel's description +facsimileTelephoneNumber: +1 408 753-8311 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 511-4191 +title: Supreme Payroll Sales Rep +userPassword: Password1 +uid: DalsielF +givenName: Farrukh +mail: DalsielF@deb5b33726e1467b8ad98f9d4d53798a.bitwarden.com +carLicense: 7R6ECE +departmentNumber: 6144 +employeeType: Employee +homePhone: +1 408 419-1519 +initials: F. D. +mobile: +1 408 742-8409 +pager: +1 408 362-3742 +roomNumber: 8154 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liesbeth Grimble +sn: Grimble +description: This is Liesbeth Grimble's description +facsimileTelephoneNumber: +1 510 601-1414 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 510 355-3678 +title: Associate Human Resources President +userPassword: Password1 +uid: GrimbleL +givenName: Liesbeth +mail: GrimbleL@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com +carLicense: X3OGXO +departmentNumber: 3064 +employeeType: Employee +homePhone: +1 510 337-7549 +initials: L. G. +mobile: +1 510 488-5909 +pager: +1 510 711-3532 +roomNumber: 9133 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tami Scarlett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tami Scarlett +sn: Scarlett +description: This is Tami Scarlett's description +facsimileTelephoneNumber: +1 408 284-4097 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 127-8397 +title: Master Peons Writer +userPassword: Password1 +uid: ScarletT +givenName: Tami +mail: ScarletT@de7b9b88f1af455bb9296186f4010a0e.bitwarden.com +carLicense: 7GT0CA +departmentNumber: 7624 +employeeType: Employee +homePhone: +1 408 664-6044 +initials: T. S. +mobile: +1 408 693-5553 +pager: +1 408 650-4228 +roomNumber: 9322 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Betteanne Badza,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betteanne Badza +sn: Badza +description: This is Betteanne Badza's description +facsimileTelephoneNumber: +1 206 304-9780 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 515-9102 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: BadzaB +givenName: Betteanne +mail: BadzaB@641b39435c6a4345a08d44348f2bfdaa.bitwarden.com +carLicense: WT42EX +departmentNumber: 4186 +employeeType: Contract +homePhone: +1 206 873-4609 +initials: B. B. +mobile: +1 206 941-5955 +pager: +1 206 848-7667 +roomNumber: 8966 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roman Barsony,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roman Barsony +sn: Barsony +description: This is Roman Barsony's description +facsimileTelephoneNumber: +1 510 690-4119 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 900-9219 +title: Junior Payroll Mascot +userPassword: Password1 +uid: BarsonyR +givenName: Roman +mail: BarsonyR@130d7984e3224d79a3593bfbc13ee192.bitwarden.com +carLicense: UP5DSB +departmentNumber: 3147 +employeeType: Normal +homePhone: +1 510 308-4755 +initials: R. B. +mobile: +1 510 988-6079 +pager: +1 510 634-3947 +roomNumber: 8677 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernardine Bergman +sn: Bergman +description: This is Bernardine Bergman's description +facsimileTelephoneNumber: +1 415 814-8586 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 410-6059 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: BergmanB +givenName: Bernardine +mail: BergmanB@a8a3f1161ef54158b589de8fea58b91e.bitwarden.com +carLicense: HXXSS8 +departmentNumber: 8478 +employeeType: Contract +homePhone: +1 415 872-7299 +initials: B. B. +mobile: +1 415 807-7691 +pager: +1 415 628-9851 +roomNumber: 9931 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gloriana Wessel +sn: Wessel +description: This is Gloriana Wessel's description +facsimileTelephoneNumber: +1 415 781-4200 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 422-1163 +title: Chief Human Resources Janitor +userPassword: Password1 +uid: WesselG +givenName: Gloriana +mail: WesselG@07350d30e5bc4da4ac617cefe2dea284.bitwarden.com +carLicense: 1D6C0S +departmentNumber: 2703 +employeeType: Employee +homePhone: +1 415 242-5238 +initials: G. W. +mobile: +1 415 337-2951 +pager: +1 415 289-5503 +roomNumber: 9946 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katrinka Debortoli,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katrinka Debortoli +sn: Debortoli +description: This is Katrinka Debortoli's description +facsimileTelephoneNumber: +1 510 877-5894 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 562-1846 +title: Junior Peons Evangelist +userPassword: Password1 +uid: DebortoK +givenName: Katrinka +mail: DebortoK@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com +carLicense: NH8EP8 +departmentNumber: 5850 +employeeType: Normal +homePhone: +1 510 453-1120 +initials: K. D. +mobile: +1 510 391-6253 +pager: +1 510 839-1990 +roomNumber: 8761 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jillana Alary,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jillana Alary +sn: Alary +description: This is Jillana Alary's description +facsimileTelephoneNumber: +1 510 213-1283 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 758-3433 +title: Supreme Janitorial President +userPassword: Password1 +uid: AlaryJ +givenName: Jillana +mail: AlaryJ@9b1cd0d4cbb340edaa08f757750c510b.bitwarden.com +carLicense: KF4DTS +departmentNumber: 9198 +employeeType: Normal +homePhone: +1 510 469-1583 +initials: J. A. +mobile: +1 510 150-8106 +pager: +1 510 394-5780 +roomNumber: 8792 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Margeaux Raines,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margeaux Raines +sn: Raines +description: This is Margeaux Raines's description +facsimileTelephoneNumber: +1 818 100-9388 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 437-9313 +title: Junior Administrative Assistant +userPassword: Password1 +uid: RainesM +givenName: Margeaux +mail: RainesM@8a34c70e0b134b1abc06ed65698294f3.bitwarden.com +carLicense: 2DN4QR +departmentNumber: 5697 +employeeType: Normal +homePhone: +1 818 461-8693 +initials: M. R. +mobile: +1 818 110-9625 +pager: +1 818 160-3597 +roomNumber: 9454 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Augustin Hollandsworth +sn: Hollandsworth +description: This is Augustin Hollandsworth's description +facsimileTelephoneNumber: +1 206 961-9599 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 394-1836 +title: Supreme Product Testing Architect +userPassword: Password1 +uid: HollandA +givenName: Augustin +mail: HollandA@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com +carLicense: TC4KWN +departmentNumber: 8123 +employeeType: Contract +homePhone: +1 206 325-7418 +initials: A. H. +mobile: +1 206 515-7876 +pager: +1 206 589-4000 +roomNumber: 8770 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cassi Moritz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassi Moritz +sn: Moritz +description: This is Cassi Moritz's description +facsimileTelephoneNumber: +1 213 979-3630 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 973-4632 +title: Junior Product Testing Punk +userPassword: Password1 +uid: MoritzC +givenName: Cassi +mail: MoritzC@85684be84b6e4d138199715b368d851b.bitwarden.com +carLicense: 6QFCSC +departmentNumber: 7961 +employeeType: Normal +homePhone: +1 213 111-7880 +initials: C. M. +mobile: +1 213 737-8212 +pager: +1 213 811-1444 +roomNumber: 8253 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othilia VanMansum +sn: VanMansum +description: This is Othilia VanMansum's description +facsimileTelephoneNumber: +1 818 561-9186 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 720-4676 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: VanMansO +givenName: Othilia +mail: VanMansO@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com +carLicense: 9WHGIH +departmentNumber: 2867 +employeeType: Contract +homePhone: +1 818 457-2931 +initials: O. V. +mobile: +1 818 704-4906 +pager: +1 818 518-3617 +roomNumber: 9581 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sales Rasmus,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sales Rasmus +sn: Rasmus +description: This is Sales Rasmus's description +facsimileTelephoneNumber: +1 415 191-9616 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 484-9016 +title: Master Administrative Figurehead +userPassword: Password1 +uid: RasmusS +givenName: Sales +mail: RasmusS@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com +carLicense: FKVM24 +departmentNumber: 9201 +employeeType: Contract +homePhone: +1 415 222-5862 +initials: S. R. +mobile: +1 415 618-2881 +pager: +1 415 510-6414 +roomNumber: 8953 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Katrine Thomason,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katrine Thomason +sn: Thomason +description: This is Katrine Thomason's description +facsimileTelephoneNumber: +1 408 444-3608 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 440-3227 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: ThomasoK +givenName: Katrine +mail: ThomasoK@08761145d0ee492388590ebc755ffc11.bitwarden.com +carLicense: U8H62E +departmentNumber: 1374 +employeeType: Employee +homePhone: +1 408 817-2987 +initials: K. T. +mobile: +1 408 867-6080 +pager: +1 408 277-4281 +roomNumber: 8494 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Celka Kester,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celka Kester +sn: Kester +description: This is Celka Kester's description +facsimileTelephoneNumber: +1 213 217-9540 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 813-4786 +title: Chief Management Artist +userPassword: Password1 +uid: KesterC +givenName: Celka +mail: KesterC@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com +carLicense: JUSMM3 +departmentNumber: 2682 +employeeType: Contract +homePhone: +1 213 320-7305 +initials: C. K. +mobile: +1 213 343-7797 +pager: +1 213 980-7641 +roomNumber: 9396 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pansie Mayea,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pansie Mayea +sn: Mayea +description: This is Pansie Mayea's description +facsimileTelephoneNumber: +1 408 374-1953 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 103-4005 +title: Associate Payroll Vice President +userPassword: Password1 +uid: MayeaP +givenName: Pansie +mail: MayeaP@97332f0466d142b5a0521dc2f85817c3.bitwarden.com +carLicense: YBJJOQ +departmentNumber: 5871 +employeeType: Employee +homePhone: +1 408 654-6988 +initials: P. M. +mobile: +1 408 918-5101 +pager: +1 408 955-4642 +roomNumber: 8897 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Burton Shearer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Burton Shearer +sn: Shearer +description: This is Burton Shearer's description +facsimileTelephoneNumber: +1 408 297-6892 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 408 136-7199 +title: Chief Administrative Consultant +userPassword: Password1 +uid: ShearerB +givenName: Burton +mail: ShearerB@9168c74ef41149569e1e454986f240f5.bitwarden.com +carLicense: SPSYU7 +departmentNumber: 5197 +employeeType: Normal +homePhone: +1 408 183-8989 +initials: B. S. +mobile: +1 408 863-3664 +pager: +1 408 797-3064 +roomNumber: 9854 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgiana Lacosse +sn: Lacosse +description: This is Georgiana Lacosse's description +facsimileTelephoneNumber: +1 510 323-7253 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 510 619-5332 +title: Associate Payroll President +userPassword: Password1 +uid: LacosseG +givenName: Georgiana +mail: LacosseG@39906d66250a450299ac97c0daaa1661.bitwarden.com +carLicense: RBU1QC +departmentNumber: 7643 +employeeType: Employee +homePhone: +1 510 450-2405 +initials: G. L. +mobile: +1 510 298-3323 +pager: +1 510 144-2200 +roomNumber: 8130 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Augusto Montero,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Augusto Montero +sn: Montero +description: This is Augusto Montero's description +facsimileTelephoneNumber: +1 804 313-3969 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 791-2258 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: MonteroA +givenName: Augusto +mail: MonteroA@ead1ebc11a6a43c4a4973f8778d92cf0.bitwarden.com +carLicense: X7OY4F +departmentNumber: 9786 +employeeType: Normal +homePhone: +1 804 643-5614 +initials: A. M. +mobile: +1 804 555-3592 +pager: +1 804 890-9115 +roomNumber: 8452 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenson Kpodzo +sn: Kpodzo +description: This is Jenson Kpodzo's description +facsimileTelephoneNumber: +1 408 461-3370 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 734-4101 +title: Chief Administrative Fellow +userPassword: Password1 +uid: KpodzoJ +givenName: Jenson +mail: KpodzoJ@4a68315fca8a4b9cbfc30c913a972220.bitwarden.com +carLicense: 4C068G +departmentNumber: 6913 +employeeType: Employee +homePhone: +1 408 641-6918 +initials: J. K. +mobile: +1 408 438-6916 +pager: +1 408 894-5234 +roomNumber: 8302 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saloma Tiegs +sn: Tiegs +description: This is Saloma Tiegs's description +facsimileTelephoneNumber: +1 818 708-4645 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 704-1182 +title: Master Product Testing Czar +userPassword: Password1 +uid: TiegsS +givenName: Saloma +mail: TiegsS@bb1a549f208840af8ec52ae7c5ebc4f5.bitwarden.com +carLicense: E7TNIR +departmentNumber: 9170 +employeeType: Normal +homePhone: +1 818 618-7536 +initials: S. T. +mobile: +1 818 102-2605 +pager: +1 818 649-8204 +roomNumber: 8170 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eyde Gallion,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eyde Gallion +sn: Gallion +description: This is Eyde Gallion's description +facsimileTelephoneNumber: +1 206 920-8285 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 334-5374 +title: Chief Management Janitor +userPassword: Password1 +uid: GallionE +givenName: Eyde +mail: GallionE@e91e9d47322f42e0863a6aa1fe777b71.bitwarden.com +carLicense: 61FC0H +departmentNumber: 8407 +employeeType: Normal +homePhone: +1 206 496-6741 +initials: E. G. +mobile: +1 206 458-8327 +pager: +1 206 969-5392 +roomNumber: 9260 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blancha Kauffman +sn: Kauffman +description: This is Blancha Kauffman's description +facsimileTelephoneNumber: +1 206 575-3758 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 900-9300 +title: Supreme Human Resources President +userPassword: Password1 +uid: KauffmaB +givenName: Blancha +mail: KauffmaB@a767b0f434554c6788caabae2da7ee65.bitwarden.com +carLicense: 0PURMY +departmentNumber: 6719 +employeeType: Contract +homePhone: +1 206 232-2110 +initials: B. K. +mobile: +1 206 373-8913 +pager: +1 206 496-1911 +roomNumber: 8080 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sule Valenziano,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sule Valenziano +sn: Valenziano +description: This is Sule Valenziano's description +facsimileTelephoneNumber: +1 415 151-2330 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 107-2988 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: ValenziS +givenName: Sule +mail: ValenziS@dc21b90d233e4262bb0c379c7e3b2a15.bitwarden.com +carLicense: CBXLTI +departmentNumber: 7345 +employeeType: Employee +homePhone: +1 415 634-2758 +initials: S. V. +mobile: +1 415 260-1290 +pager: +1 415 625-4643 +roomNumber: 9188 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ott Kristjanson +sn: Kristjanson +description: This is Ott Kristjanson's description +facsimileTelephoneNumber: +1 408 397-4725 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 408 887-3540 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: KristjaO +givenName: Ott +mail: KristjaO@170b1e3aafb44ce5931865d83bab2b73.bitwarden.com +carLicense: 1IGM07 +departmentNumber: 1502 +employeeType: Normal +homePhone: +1 408 514-1438 +initials: O. K. +mobile: +1 408 736-7882 +pager: +1 408 562-4183 +roomNumber: 8691 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Therese Totti,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Therese Totti +sn: Totti +description: This is Therese Totti's description +facsimileTelephoneNumber: +1 415 487-3679 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 500-4967 +title: Chief Administrative Madonna +userPassword: Password1 +uid: TottiT +givenName: Therese +mail: TottiT@f84feca728aa4b08a80aa164ca1230d9.bitwarden.com +carLicense: LRLFVD +departmentNumber: 3671 +employeeType: Contract +homePhone: +1 415 476-4627 +initials: T. T. +mobile: +1 415 365-2018 +pager: +1 415 621-9766 +roomNumber: 9239 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dyana ChampionDemers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyana ChampionDemers +sn: ChampionDemers +description: This is Dyana ChampionDemers's description +facsimileTelephoneNumber: +1 213 235-7407 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 177-8272 +title: Associate Management Grunt +userPassword: Password1 +uid: ChampioD +givenName: Dyana +mail: ChampioD@a4e9de5e0b9246278e213e7f89e8ab95.bitwarden.com +carLicense: O6O9TV +departmentNumber: 5212 +employeeType: Employee +homePhone: +1 213 727-1304 +initials: D. C. +mobile: +1 213 441-4904 +pager: +1 213 442-4128 +roomNumber: 9721 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joannie Paprocki +sn: Paprocki +description: This is Joannie Paprocki's description +facsimileTelephoneNumber: +1 213 508-3938 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 526-5479 +title: Chief Human Resources Director +userPassword: Password1 +uid: PaprockJ +givenName: Joannie +mail: PaprockJ@7a24f959bf7143f0a384d6a356f5332c.bitwarden.com +carLicense: P5NOMQ +departmentNumber: 2969 +employeeType: Normal +homePhone: +1 213 632-6473 +initials: J. P. +mobile: +1 213 399-5086 +pager: +1 213 533-8829 +roomNumber: 8666 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ranea Zitko,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranea Zitko +sn: Zitko +description: This is Ranea Zitko's description +facsimileTelephoneNumber: +1 804 649-4054 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 681-2601 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: ZitkoR +givenName: Ranea +mail: ZitkoR@145a2cc169a84041837ab176f4869676.bitwarden.com +carLicense: 78051Y +departmentNumber: 2698 +employeeType: Contract +homePhone: +1 804 437-6556 +initials: R. Z. +mobile: +1 804 741-1478 +pager: +1 804 565-8039 +roomNumber: 8889 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Thayne Langer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thayne Langer +sn: Langer +description: This is Thayne Langer's description +facsimileTelephoneNumber: +1 213 216-3076 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 156-4950 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: LangerT +givenName: Thayne +mail: LangerT@49f5a591a2774e04b74eeb9adebf4303.bitwarden.com +carLicense: L6A95L +departmentNumber: 5510 +employeeType: Normal +homePhone: +1 213 825-3563 +initials: T. L. +mobile: +1 213 171-2215 +pager: +1 213 560-1452 +roomNumber: 9244 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Chie Hilton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chie Hilton +sn: Hilton +description: This is Chie Hilton's description +facsimileTelephoneNumber: +1 408 315-5129 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 745-6971 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: HiltonC +givenName: Chie +mail: HiltonC@a007e0bbe2b74c31b4d55b35ce3884b6.bitwarden.com +carLicense: U2FN6W +departmentNumber: 4889 +employeeType: Contract +homePhone: +1 408 575-3681 +initials: C. H. +mobile: +1 408 884-6641 +pager: +1 408 831-7006 +roomNumber: 9595 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gisela Enet,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gisela Enet +sn: Enet +description: This is Gisela Enet's description +facsimileTelephoneNumber: +1 213 770-7081 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 341-7955 +title: Junior Administrative Writer +userPassword: Password1 +uid: EnetG +givenName: Gisela +mail: EnetG@f87927b66c3847ba8ab3947482034e19.bitwarden.com +carLicense: E4852D +departmentNumber: 7692 +employeeType: Contract +homePhone: +1 213 357-6155 +initials: G. E. +mobile: +1 213 945-3632 +pager: +1 213 925-6349 +roomNumber: 8089 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Erlene Krajesky,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erlene Krajesky +sn: Krajesky +description: This is Erlene Krajesky's description +facsimileTelephoneNumber: +1 408 437-6689 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 556-7353 +title: Chief Peons Director +userPassword: Password1 +uid: KrajeskE +givenName: Erlene +mail: KrajeskE@1a2826f06614436585f4faa14772cf1b.bitwarden.com +carLicense: 86TYII +departmentNumber: 5501 +employeeType: Contract +homePhone: +1 408 904-4214 +initials: E. K. +mobile: +1 408 678-1766 +pager: +1 408 654-8757 +roomNumber: 8964 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ileane Steinbacher +sn: Steinbacher +description: This is Ileane Steinbacher's description +facsimileTelephoneNumber: +1 510 728-7125 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 490-3649 +title: Supreme Product Development Madonna +userPassword: Password1 +uid: SteinbaI +givenName: Ileane +mail: SteinbaI@6553f6f625ef4decb458591c6b034f5c.bitwarden.com +carLicense: BUWALJ +departmentNumber: 3990 +employeeType: Contract +homePhone: +1 510 555-1622 +initials: I. S. +mobile: +1 510 105-5509 +pager: +1 510 608-2543 +roomNumber: 8959 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cezary Stephens,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cezary Stephens +sn: Stephens +description: This is Cezary Stephens's description +facsimileTelephoneNumber: +1 510 176-8384 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 546-6308 +title: Junior Payroll Stooge +userPassword: Password1 +uid: StephenC +givenName: Cezary +mail: StephenC@03381a6be0334d469597ceb0055fc710.bitwarden.com +carLicense: B6LLPF +departmentNumber: 8313 +employeeType: Normal +homePhone: +1 510 931-3398 +initials: C. S. +mobile: +1 510 706-5757 +pager: +1 510 474-5382 +roomNumber: 9575 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cyndie Therrien,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyndie Therrien +sn: Therrien +description: This is Cyndie Therrien's description +facsimileTelephoneNumber: +1 415 182-2329 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 362-9586 +title: Chief Payroll Grunt +userPassword: Password1 +uid: TherrieC +givenName: Cyndie +mail: TherrieC@c2c56cba4b164b91a9cad88cb6fbbaa7.bitwarden.com +carLicense: 0SG3EN +departmentNumber: 2264 +employeeType: Employee +homePhone: +1 415 242-7269 +initials: C. T. +mobile: +1 415 530-2084 +pager: +1 415 685-5889 +roomNumber: 9448 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shandie Ghelarducci +sn: Ghelarducci +description: This is Shandie Ghelarducci's description +facsimileTelephoneNumber: +1 206 479-9312 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 139-4023 +title: Master Product Testing Technician +userPassword: Password1 +uid: GhelardS +givenName: Shandie +mail: GhelardS@25209ef0bef9422ba827a4158c5d2eb7.bitwarden.com +carLicense: Y04CQC +departmentNumber: 1164 +employeeType: Employee +homePhone: +1 206 807-3446 +initials: S. G. +mobile: +1 206 707-8510 +pager: +1 206 469-6499 +roomNumber: 9507 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rolf Philip,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rolf Philip +sn: Philip +description: This is Rolf Philip's description +facsimileTelephoneNumber: +1 206 959-8034 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 794-7591 +title: Master Administrative Madonna +userPassword: Password1 +uid: PhilipR +givenName: Rolf +mail: PhilipR@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com +carLicense: 0EXATO +departmentNumber: 6549 +employeeType: Employee +homePhone: +1 206 719-9083 +initials: R. P. +mobile: +1 206 304-2768 +pager: +1 206 738-1183 +roomNumber: 8607 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karla Biss,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karla Biss +sn: Biss +description: This is Karla Biss's description +facsimileTelephoneNumber: +1 415 934-2687 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 683-7090 +title: Master Peons Sales Rep +userPassword: Password1 +uid: BissK +givenName: Karla +mail: BissK@49c32b5d70594069be5f4296d6c76171.bitwarden.com +carLicense: 557KO8 +departmentNumber: 5396 +employeeType: Normal +homePhone: +1 415 862-9628 +initials: K. B. +mobile: +1 415 372-6160 +pager: +1 415 894-4110 +roomNumber: 8537 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Danica Margittai,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danica Margittai +sn: Margittai +description: This is Danica Margittai's description +facsimileTelephoneNumber: +1 804 986-3984 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 984-1713 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: MargittD +givenName: Danica +mail: MargittD@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com +carLicense: KFFQ6W +departmentNumber: 6406 +employeeType: Normal +homePhone: +1 804 728-6190 +initials: D. M. +mobile: +1 804 392-5101 +pager: +1 804 173-9885 +roomNumber: 8665 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shelly Fabris,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelly Fabris +sn: Fabris +description: This is Shelly Fabris's description +facsimileTelephoneNumber: +1 415 117-7801 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 674-4661 +title: Supreme Management Fellow +userPassword: Password1 +uid: FabrisS +givenName: Shelly +mail: FabrisS@871acffc5fd64b9296d59bdd7ff870b0.bitwarden.com +carLicense: VOYEMU +departmentNumber: 8669 +employeeType: Contract +homePhone: +1 415 669-3620 +initials: S. F. +mobile: +1 415 128-3666 +pager: +1 415 115-1309 +roomNumber: 8948 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Netta Gregorio,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Netta Gregorio +sn: Gregorio +description: This is Netta Gregorio's description +facsimileTelephoneNumber: +1 415 195-3536 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 705-3871 +title: Supreme Product Development Artist +userPassword: Password1 +uid: GregoriN +givenName: Netta +mail: GregoriN@ab80825fb9f64e0fa2550d84decf8401.bitwarden.com +carLicense: 2V9H42 +departmentNumber: 5697 +employeeType: Employee +homePhone: +1 415 101-9065 +initials: N. G. +mobile: +1 415 633-4474 +pager: +1 415 614-3907 +roomNumber: 8317 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flossi PenaFernandez +sn: PenaFernandez +description: This is Flossi PenaFernandez's description +facsimileTelephoneNumber: +1 408 242-7144 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 851-1533 +title: Master Administrative Figurehead +userPassword: Password1 +uid: PenaFerF +givenName: Flossi +mail: PenaFerF@b25f9197eb164e0e80b05e75586a2055.bitwarden.com +carLicense: QJNIF9 +departmentNumber: 8462 +employeeType: Employee +homePhone: +1 408 317-8441 +initials: F. P. +mobile: +1 408 295-9935 +pager: +1 408 771-2561 +roomNumber: 8606 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lu Tsai,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lu Tsai +sn: Tsai +description: This is Lu Tsai's description +facsimileTelephoneNumber: +1 818 111-3276 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 709-5071 +title: Supreme Product Testing Vice President +userPassword: Password1 +uid: TsaiL +givenName: Lu +mail: TsaiL@268e542432d8452492860decdd327bf6.bitwarden.com +carLicense: 9C98DM +departmentNumber: 2922 +employeeType: Contract +homePhone: +1 818 842-8588 +initials: L. T. +mobile: +1 818 105-3224 +pager: +1 818 495-8523 +roomNumber: 8293 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aruna Loeffler +sn: Loeffler +description: This is Aruna Loeffler's description +facsimileTelephoneNumber: +1 408 407-5842 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 255-5592 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: LoeffleA +givenName: Aruna +mail: LoeffleA@932da8f75fc34afb858807b155e78d58.bitwarden.com +carLicense: JVOEAN +departmentNumber: 6237 +employeeType: Contract +homePhone: +1 408 377-6387 +initials: A. L. +mobile: +1 408 158-3119 +pager: +1 408 302-7467 +roomNumber: 8699 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shalna Terwilligar +sn: Terwilligar +description: This is Shalna Terwilligar's description +facsimileTelephoneNumber: +1 804 539-2805 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 108-3034 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: TerwillS +givenName: Shalna +mail: TerwillS@037b2dcc29f840fa8751d096972382fe.bitwarden.com +carLicense: SPJ2OP +departmentNumber: 4017 +employeeType: Normal +homePhone: +1 804 562-7552 +initials: S. T. +mobile: +1 804 294-5476 +pager: +1 804 321-2398 +roomNumber: 9375 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anabella McManus,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anabella McManus +sn: McManus +description: This is Anabella McManus's description +facsimileTelephoneNumber: +1 415 607-3766 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 864-1589 +title: Associate Payroll Czar +userPassword: Password1 +uid: McManusA +givenName: Anabella +mail: McManusA@4b2618e65445493fb6bf16ca350497be.bitwarden.com +carLicense: CVLBYX +departmentNumber: 5983 +employeeType: Normal +homePhone: +1 415 472-9295 +initials: A. M. +mobile: +1 415 196-9860 +pager: +1 415 116-1787 +roomNumber: 9938 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sandeep Deneen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandeep Deneen +sn: Deneen +description: This is Sandeep Deneen's description +facsimileTelephoneNumber: +1 510 356-4318 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 229-2218 +title: Associate Product Development Assistant +userPassword: Password1 +uid: DeneenS +givenName: Sandeep +mail: DeneenS@69229a215bfd45fb93b4b714a125f8c1.bitwarden.com +carLicense: 2BNA0G +departmentNumber: 2848 +employeeType: Normal +homePhone: +1 510 766-8193 +initials: S. D. +mobile: +1 510 985-5496 +pager: +1 510 139-6880 +roomNumber: 9043 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fiore Brogdon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fiore Brogdon +sn: Brogdon +description: This is Fiore Brogdon's description +facsimileTelephoneNumber: +1 510 864-4374 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 624-8398 +title: Junior Management Punk +userPassword: Password1 +uid: BrogdonF +givenName: Fiore +mail: BrogdonF@c7f3f4b5404343009726750451b5ec5f.bitwarden.com +carLicense: DSEFTS +departmentNumber: 5120 +employeeType: Employee +homePhone: +1 510 810-6999 +initials: F. B. +mobile: +1 510 676-8401 +pager: +1 510 222-4315 +roomNumber: 8695 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquenetta Busko +sn: Busko +description: This is Jacquenetta Busko's description +facsimileTelephoneNumber: +1 206 626-1312 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 516-9661 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: BuskoJ +givenName: Jacquenetta +mail: BuskoJ@1783baab8b3341f48bad6f9721f7eb73.bitwarden.com +carLicense: E605BY +departmentNumber: 7114 +employeeType: Employee +homePhone: +1 206 879-8857 +initials: J. B. +mobile: +1 206 912-2231 +pager: +1 206 159-2915 +roomNumber: 9194 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mariellen Tilley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariellen Tilley +sn: Tilley +description: This is Mariellen Tilley's description +facsimileTelephoneNumber: +1 818 572-1139 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 308-9784 +title: Junior Management Technician +userPassword: Password1 +uid: TilleyM +givenName: Mariellen +mail: TilleyM@54d404ee0ed9466bae5e36b6d97997f9.bitwarden.com +carLicense: B51WAB +departmentNumber: 6047 +employeeType: Contract +homePhone: +1 818 871-1581 +initials: M. T. +mobile: +1 818 908-4743 +pager: +1 818 721-5206 +roomNumber: 8861 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndsey Crothers +sn: Crothers +description: This is Lyndsey Crothers's description +facsimileTelephoneNumber: +1 206 477-3207 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 318-7223 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: CrotherL +givenName: Lyndsey +mail: CrotherL@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com +carLicense: M5GSLL +departmentNumber: 2895 +employeeType: Contract +homePhone: +1 206 404-8681 +initials: L. C. +mobile: +1 206 274-4763 +pager: +1 206 425-1605 +roomNumber: 9829 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ina Joudrey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ina Joudrey +sn: Joudrey +description: This is Ina Joudrey's description +facsimileTelephoneNumber: +1 213 626-8944 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 688-3046 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: JoudreyI +givenName: Ina +mail: JoudreyI@24838fbbf5b94e89a9506c6185ca825f.bitwarden.com +carLicense: JI9EWR +departmentNumber: 6888 +employeeType: Normal +homePhone: +1 213 254-6124 +initials: I. J. +mobile: +1 213 815-3306 +pager: +1 213 548-9689 +roomNumber: 8077 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Baines Buettgen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baines Buettgen +sn: Buettgen +description: This is Baines Buettgen's description +facsimileTelephoneNumber: +1 213 466-4494 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 560-9191 +title: Junior Administrative Mascot +userPassword: Password1 +uid: BuettgeB +givenName: Baines +mail: BuettgeB@2669130b306244a5bdb654170929e2da.bitwarden.com +carLicense: 2PEFYF +departmentNumber: 9587 +employeeType: Normal +homePhone: +1 213 338-6289 +initials: B. B. +mobile: +1 213 904-4356 +pager: +1 213 160-6899 +roomNumber: 9184 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carie Pitcher,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carie Pitcher +sn: Pitcher +description: This is Carie Pitcher's description +facsimileTelephoneNumber: +1 213 884-6476 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 512-7702 +title: Junior Administrative Architect +userPassword: Password1 +uid: PitcherC +givenName: Carie +mail: PitcherC@a2d6d422fc8c477489979808c2bf1f24.bitwarden.com +carLicense: 1DR0Q7 +departmentNumber: 6412 +employeeType: Contract +homePhone: +1 213 327-9997 +initials: C. P. +mobile: +1 213 354-1757 +pager: +1 213 924-9791 +roomNumber: 8156 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Candie Gurer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candie Gurer +sn: Gurer +description: This is Candie Gurer's description +facsimileTelephoneNumber: +1 818 981-8376 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 464-4759 +title: Master Human Resources Assistant +userPassword: Password1 +uid: GurerC +givenName: Candie +mail: GurerC@83f78532c82a4f77a10f2d7460348b85.bitwarden.com +carLicense: 8LG059 +departmentNumber: 8377 +employeeType: Normal +homePhone: +1 818 994-1224 +initials: C. G. +mobile: +1 818 644-6631 +pager: +1 818 147-4151 +roomNumber: 8617 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zino Swinson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zino Swinson +sn: Swinson +description: This is Zino Swinson's description +facsimileTelephoneNumber: +1 415 465-6044 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 383-7167 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: SwinsonZ +givenName: Zino +mail: SwinsonZ@364480d740db4258a296b16c78eb71b1.bitwarden.com +carLicense: 68ACJI +departmentNumber: 8617 +employeeType: Employee +homePhone: +1 415 386-4568 +initials: Z. S. +mobile: +1 415 431-6820 +pager: +1 415 577-1236 +roomNumber: 9830 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Layla Rabiasz +sn: Rabiasz +description: This is Layla Rabiasz's description +facsimileTelephoneNumber: +1 206 775-7254 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 947-6259 +title: Chief Janitorial Punk +userPassword: Password1 +uid: RabiaszL +givenName: Layla +mail: RabiaszL@834378ce6fad4960b9d95b1599b2d8c0.bitwarden.com +carLicense: HHWQ9G +departmentNumber: 4846 +employeeType: Contract +homePhone: +1 206 679-4653 +initials: L. R. +mobile: +1 206 718-3780 +pager: +1 206 104-4120 +roomNumber: 9308 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Terese Beton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terese Beton +sn: Beton +description: This is Terese Beton's description +facsimileTelephoneNumber: +1 804 702-7286 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 804 780-6099 +title: Associate Peons Fellow +userPassword: Password1 +uid: BetonT +givenName: Terese +mail: BetonT@536c0f4fa5054c52a7d0385b00e9be00.bitwarden.com +carLicense: KM2V4V +departmentNumber: 9391 +employeeType: Normal +homePhone: +1 804 451-6726 +initials: T. B. +mobile: +1 804 620-6507 +pager: +1 804 255-8358 +roomNumber: 9733 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Reena Gullekson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reena Gullekson +sn: Gullekson +description: This is Reena Gullekson's description +facsimileTelephoneNumber: +1 213 488-6454 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 371-2555 +title: Supreme Peons Mascot +userPassword: Password1 +uid: GulleksR +givenName: Reena +mail: GulleksR@5742495432584883ba0607d82fbbf002.bitwarden.com +carLicense: D8RBLH +departmentNumber: 7932 +employeeType: Normal +homePhone: +1 213 392-3422 +initials: R. G. +mobile: +1 213 249-6814 +pager: +1 213 802-1636 +roomNumber: 8793 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yoda Prado,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoda Prado +sn: Prado +description: This is Yoda Prado's description +facsimileTelephoneNumber: +1 510 558-9031 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 200-4854 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: PradoY +givenName: Yoda +mail: PradoY@e2e4684a59f0411fb17c22a8c54500dc.bitwarden.com +carLicense: VO28PD +departmentNumber: 1376 +employeeType: Employee +homePhone: +1 510 529-4201 +initials: Y. P. +mobile: +1 510 901-4235 +pager: +1 510 214-4473 +roomNumber: 9910 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Waneta Irwin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Waneta Irwin +sn: Irwin +description: This is Waneta Irwin's description +facsimileTelephoneNumber: +1 408 285-2529 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 408 359-6370 +title: Supreme Peons Stooge +userPassword: Password1 +uid: IrwinW +givenName: Waneta +mail: IrwinW@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com +carLicense: SO293Y +departmentNumber: 1626 +employeeType: Normal +homePhone: +1 408 591-3155 +initials: W. I. +mobile: +1 408 618-3775 +pager: +1 408 858-1062 +roomNumber: 8292 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Prity Wyllie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prity Wyllie +sn: Wyllie +description: This is Prity Wyllie's description +facsimileTelephoneNumber: +1 206 590-8728 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 297-1993 +title: Associate Janitorial Developer +userPassword: Password1 +uid: WyllieP +givenName: Prity +mail: WyllieP@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com +carLicense: NGWXTJ +departmentNumber: 1747 +employeeType: Employee +homePhone: +1 206 837-9569 +initials: P. W. +mobile: +1 206 896-7162 +pager: +1 206 559-9153 +roomNumber: 9654 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brennan Kapuscinski +sn: Kapuscinski +description: This is Brennan Kapuscinski's description +facsimileTelephoneNumber: +1 510 784-7498 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 494-9497 +title: Master Payroll Czar +userPassword: Password1 +uid: KapusciB +givenName: Brennan +mail: KapusciB@ba60a08b258046f98633fd3c737e4f83.bitwarden.com +carLicense: AELIUU +departmentNumber: 9332 +employeeType: Normal +homePhone: +1 510 844-6324 +initials: B. K. +mobile: +1 510 314-1468 +pager: +1 510 961-2180 +roomNumber: 8480 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jillian Borzic,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jillian Borzic +sn: Borzic +description: This is Jillian Borzic's description +facsimileTelephoneNumber: +1 206 914-9117 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 962-3691 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: BorzicJ +givenName: Jillian +mail: BorzicJ@484147050d834a1da350db4c28e9f45b.bitwarden.com +carLicense: 0GHT46 +departmentNumber: 3665 +employeeType: Contract +homePhone: +1 206 778-4683 +initials: J. B. +mobile: +1 206 759-5616 +pager: +1 206 296-8405 +roomNumber: 9418 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Akio Broussard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akio Broussard +sn: Broussard +description: This is Akio Broussard's description +facsimileTelephoneNumber: +1 415 542-3629 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 415 407-2830 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: BroussaA +givenName: Akio +mail: BroussaA@14718a04ba8345b68b85209d455c92d5.bitwarden.com +carLicense: 2PFUTL +departmentNumber: 4523 +employeeType: Contract +homePhone: +1 415 181-8163 +initials: A. B. +mobile: +1 415 387-3796 +pager: +1 415 502-9893 +roomNumber: 9043 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanchez Gunasekera +sn: Gunasekera +description: This is Sanchez Gunasekera's description +facsimileTelephoneNumber: +1 510 751-9513 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 962-7858 +title: Associate Product Development Vice President +userPassword: Password1 +uid: GunasekS +givenName: Sanchez +mail: GunasekS@823b0e5ae5554412ad321149e939b14a.bitwarden.com +carLicense: IGO6WQ +departmentNumber: 1146 +employeeType: Employee +homePhone: +1 510 398-9772 +initials: S. G. +mobile: +1 510 240-3767 +pager: +1 510 970-2286 +roomNumber: 9602 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ind Suitt,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ind Suitt +sn: Suitt +description: This is Ind Suitt's description +facsimileTelephoneNumber: +1 415 262-9785 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 705-1049 +title: Supreme Peons Mascot +userPassword: Password1 +uid: SuittI +givenName: Ind +mail: SuittI@ba26067a6b444f7cbcc6de889b198ade.bitwarden.com +carLicense: 3SNLM7 +departmentNumber: 1959 +employeeType: Contract +homePhone: +1 415 500-7158 +initials: I. S. +mobile: +1 415 470-9298 +pager: +1 415 656-6806 +roomNumber: 8897 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alyse Walkley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alyse Walkley +sn: Walkley +description: This is Alyse Walkley's description +facsimileTelephoneNumber: +1 818 473-1944 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 549-1502 +title: Chief Janitorial Sales Rep +userPassword: Password1 +uid: WalkleyA +givenName: Alyse +mail: WalkleyA@aadb572867dc4b7098efde5813eb2d27.bitwarden.com +carLicense: A6GC17 +departmentNumber: 2825 +employeeType: Employee +homePhone: +1 818 998-3999 +initials: A. W. +mobile: +1 818 862-7616 +pager: +1 818 161-2556 +roomNumber: 8429 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Julienne Milne,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julienne Milne +sn: Milne +description: This is Julienne Milne's description +facsimileTelephoneNumber: +1 213 664-6446 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 142-3135 +title: Junior Administrative Developer +userPassword: Password1 +uid: MilneJ +givenName: Julienne +mail: MilneJ@738b42a56ab44af39fa9da7b9eaffcee.bitwarden.com +carLicense: 24WBEA +departmentNumber: 6761 +employeeType: Employee +homePhone: +1 213 509-1105 +initials: J. M. +mobile: +1 213 704-5803 +pager: +1 213 754-2707 +roomNumber: 8711 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kit Lesperance,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kit Lesperance +sn: Lesperance +description: This is Kit Lesperance's description +facsimileTelephoneNumber: +1 818 115-1530 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 197-8322 +title: Junior Peons Figurehead +userPassword: Password1 +uid: LesperaK +givenName: Kit +mail: LesperaK@c3ac4e6d63bf42469f2e271613915683.bitwarden.com +carLicense: PFPCWJ +departmentNumber: 7791 +employeeType: Contract +homePhone: +1 818 657-2103 +initials: K. L. +mobile: +1 818 574-1434 +pager: +1 818 156-2494 +roomNumber: 8010 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ladell Jefferson +sn: Jefferson +description: This is Ladell Jefferson's description +facsimileTelephoneNumber: +1 408 865-4258 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 744-8998 +title: Associate Janitorial Czar +userPassword: Password1 +uid: JeffersL +givenName: Ladell +mail: JeffersL@4c2706f148d24c978855dfe00601ca6a.bitwarden.com +carLicense: 2TW4VP +departmentNumber: 8203 +employeeType: Contract +homePhone: +1 408 908-5505 +initials: L. J. +mobile: +1 408 236-8379 +pager: +1 408 538-7678 +roomNumber: 8898 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Libbi Niccolls,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Libbi Niccolls +sn: Niccolls +description: This is Libbi Niccolls's description +facsimileTelephoneNumber: +1 415 874-8582 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 631-9137 +title: Supreme Management Czar +userPassword: Password1 +uid: NiccollL +givenName: Libbi +mail: NiccollL@1db0a368d0764b8fbfe7762b10114efc.bitwarden.com +carLicense: D7K58S +departmentNumber: 6502 +employeeType: Contract +homePhone: +1 415 618-8966 +initials: L. N. +mobile: +1 415 630-6710 +pager: +1 415 206-9551 +roomNumber: 8674 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kas Ashraf,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kas Ashraf +sn: Ashraf +description: This is Kas Ashraf's description +facsimileTelephoneNumber: +1 213 492-9318 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 213 351-7215 +title: Junior Payroll Director +userPassword: Password1 +uid: AshrafK +givenName: Kas +mail: AshrafK@1cb0893ea33843b2b6fb5ad305e95a15.bitwarden.com +carLicense: 83XII3 +departmentNumber: 4512 +employeeType: Contract +homePhone: +1 213 362-3920 +initials: K. A. +mobile: +1 213 422-5945 +pager: +1 213 931-4468 +roomNumber: 8739 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Georgia Henderson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgia Henderson +sn: Henderson +description: This is Georgia Henderson's description +facsimileTelephoneNumber: +1 213 846-5306 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 793-1032 +title: Supreme Peons Developer +userPassword: Password1 +uid: HendersG +givenName: Georgia +mail: HendersG@47451620be86447cb3f001d648f21e9d.bitwarden.com +carLicense: 30YQ7G +departmentNumber: 2452 +employeeType: Employee +homePhone: +1 213 996-5718 +initials: G. H. +mobile: +1 213 138-7941 +pager: +1 213 819-7908 +roomNumber: 9277 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nuri Mand,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nuri Mand +sn: Mand +description: This is Nuri Mand's description +facsimileTelephoneNumber: +1 510 759-4101 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 402-3623 +title: Associate Human Resources Warrior +userPassword: Password1 +uid: MandN +givenName: Nuri +mail: MandN@af4484e6bd354321bc237bc7b6d97e88.bitwarden.com +carLicense: 83QLCG +departmentNumber: 8619 +employeeType: Employee +homePhone: +1 510 812-7574 +initials: N. M. +mobile: +1 510 227-6461 +pager: +1 510 768-5589 +roomNumber: 8644 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shafiq Doi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shafiq Doi +sn: Doi +description: This is Shafiq Doi's description +facsimileTelephoneNumber: +1 415 124-5176 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 802-2582 +title: Master Management Mascot +userPassword: Password1 +uid: DoiS +givenName: Shafiq +mail: DoiS@165536f4f8824483a0990647a9cb54c6.bitwarden.com +carLicense: PS56US +departmentNumber: 7775 +employeeType: Contract +homePhone: +1 415 623-8238 +initials: S. D. +mobile: +1 415 997-7200 +pager: +1 415 424-9698 +roomNumber: 9059 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mamie Angerer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mamie Angerer +sn: Angerer +description: This is Mamie Angerer's description +facsimileTelephoneNumber: +1 510 326-8086 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 333-4582 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: AngererM +givenName: Mamie +mail: AngererM@aa3946ad28f244b28a9df39dee97d247.bitwarden.com +carLicense: A4GFYB +departmentNumber: 5579 +employeeType: Employee +homePhone: +1 510 532-4631 +initials: M. A. +mobile: +1 510 782-2232 +pager: +1 510 844-6542 +roomNumber: 9299 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Trula Ledou,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trula Ledou +sn: Ledou +description: This is Trula Ledou's description +facsimileTelephoneNumber: +1 804 400-6267 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 930-4229 +title: Master Product Development Developer +userPassword: Password1 +uid: LedouT +givenName: Trula +mail: LedouT@cd9e9d5ccd3a4afa9af65d048dc3405e.bitwarden.com +carLicense: YYWWY4 +departmentNumber: 2160 +employeeType: Employee +homePhone: +1 804 644-1081 +initials: T. L. +mobile: +1 804 396-6843 +pager: +1 804 364-6863 +roomNumber: 9417 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hoy Rushton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hoy Rushton +sn: Rushton +description: This is Hoy Rushton's description +facsimileTelephoneNumber: +1 206 749-7871 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 391-2013 +title: Chief Management Consultant +userPassword: Password1 +uid: RushtonH +givenName: Hoy +mail: RushtonH@ec3e2a8f77f04a04b0562ffb64100067.bitwarden.com +carLicense: UNEYB0 +departmentNumber: 3942 +employeeType: Contract +homePhone: +1 206 753-1450 +initials: H. R. +mobile: +1 206 379-1605 +pager: +1 206 719-5598 +roomNumber: 8064 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klarrisa Maciejewski +sn: Maciejewski +description: This is Klarrisa Maciejewski's description +facsimileTelephoneNumber: +1 415 240-2729 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 195-2566 +title: Junior Management Madonna +userPassword: Password1 +uid: MaciejeK +givenName: Klarrisa +mail: MaciejeK@503bf02919104cafa1d31446cc7f0505.bitwarden.com +carLicense: O2NMWG +departmentNumber: 8029 +employeeType: Employee +homePhone: +1 415 569-6205 +initials: K. M. +mobile: +1 415 344-7217 +pager: +1 415 587-5783 +roomNumber: 8714 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bobette Tohama,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobette Tohama +sn: Tohama +description: This is Bobette Tohama's description +facsimileTelephoneNumber: +1 804 221-4799 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 903-3373 +title: Chief Product Development President +userPassword: Password1 +uid: TohamaB +givenName: Bobette +mail: TohamaB@f8d4033617914caebdc40bc652a17f49.bitwarden.com +carLicense: 4Q2XG1 +departmentNumber: 3327 +employeeType: Contract +homePhone: +1 804 597-9587 +initials: B. T. +mobile: +1 804 986-9022 +pager: +1 804 273-7296 +roomNumber: 9580 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Four Elks,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Four Elks +sn: Elks +description: This is Four Elks's description +facsimileTelephoneNumber: +1 804 997-2762 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 488-8234 +title: Chief Human Resources Grunt +userPassword: Password1 +uid: ElksF +givenName: Four +mail: ElksF@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com +carLicense: PF9DFX +departmentNumber: 2355 +employeeType: Normal +homePhone: +1 804 924-8635 +initials: F. E. +mobile: +1 804 916-5582 +pager: +1 804 624-9183 +roomNumber: 8456 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazuo Hempinstall +sn: Hempinstall +description: This is Kazuo Hempinstall's description +facsimileTelephoneNumber: +1 213 945-7514 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 397-9997 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: HempinsK +givenName: Kazuo +mail: HempinsK@f9ccaba996b948fd826c0c115f90045a.bitwarden.com +carLicense: XEU4TV +departmentNumber: 1744 +employeeType: Contract +homePhone: +1 213 311-4697 +initials: K. H. +mobile: +1 213 866-8676 +pager: +1 213 521-2839 +roomNumber: 9759 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alli Kaura,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alli Kaura +sn: Kaura +description: This is Alli Kaura's description +facsimileTelephoneNumber: +1 408 394-4477 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 623-1249 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: KauraA +givenName: Alli +mail: KauraA@86262c8a96f6428ca6c85ec378671d82.bitwarden.com +carLicense: DWEG0O +departmentNumber: 5519 +employeeType: Contract +homePhone: +1 408 408-3446 +initials: A. K. +mobile: +1 408 560-3246 +pager: +1 408 451-3942 +roomNumber: 8525 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gil Walston,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gil Walston +sn: Walston +description: This is Gil Walston's description +facsimileTelephoneNumber: +1 804 975-7561 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 227-9568 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: WalstonG +givenName: Gil +mail: WalstonG@0b7ec0c2364e4e4f8de90b2b167baf77.bitwarden.com +carLicense: 9GE9A8 +departmentNumber: 6673 +employeeType: Contract +homePhone: +1 804 796-2382 +initials: G. W. +mobile: +1 804 588-3886 +pager: +1 804 394-2359 +roomNumber: 9668 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Viole Lopinski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viole Lopinski +sn: Lopinski +description: This is Viole Lopinski's description +facsimileTelephoneNumber: +1 415 335-4028 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 990-2939 +title: Chief Peons President +userPassword: Password1 +uid: LopinskV +givenName: Viole +mail: LopinskV@72255f0203e94d058b1c15913072ab66.bitwarden.com +carLicense: 4KOSNV +departmentNumber: 8989 +employeeType: Normal +homePhone: +1 415 178-1654 +initials: V. L. +mobile: +1 415 258-1353 +pager: +1 415 193-4557 +roomNumber: 9869 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amy StOnge,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amy StOnge +sn: StOnge +description: This is Amy StOnge's description +facsimileTelephoneNumber: +1 213 410-1730 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 331-4588 +title: Chief Payroll Manager +userPassword: Password1 +uid: StOngeA +givenName: Amy +mail: StOngeA@0942a8d54b72463a911186a66f7c67f1.bitwarden.com +carLicense: XQQUBC +departmentNumber: 7390 +employeeType: Normal +homePhone: +1 213 141-1528 +initials: A. S. +mobile: +1 213 388-9518 +pager: +1 213 296-1552 +roomNumber: 8220 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Emogene Cocke,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emogene Cocke +sn: Cocke +description: This is Emogene Cocke's description +facsimileTelephoneNumber: +1 818 695-6440 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 818 964-8921 +title: Junior Peons Fellow +userPassword: Password1 +uid: CockeE +givenName: Emogene +mail: CockeE@837254eeede24c15906b803e5cce94f7.bitwarden.com +carLicense: H102WR +departmentNumber: 5474 +employeeType: Normal +homePhone: +1 818 159-8640 +initials: E. C. +mobile: +1 818 992-9355 +pager: +1 818 679-1850 +roomNumber: 9626 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tash Sails,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tash Sails +sn: Sails +description: This is Tash Sails's description +facsimileTelephoneNumber: +1 804 873-3120 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 626-1361 +title: Associate Product Development Artist +userPassword: Password1 +uid: SailsT +givenName: Tash +mail: SailsT@cb28429eacc145eba144e472491c78c9.bitwarden.com +carLicense: XJRAIJ +departmentNumber: 3778 +employeeType: Contract +homePhone: +1 804 351-9819 +initials: T. S. +mobile: +1 804 909-1117 +pager: +1 804 990-5755 +roomNumber: 8478 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Coral Viriato,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coral Viriato +sn: Viriato +description: This is Coral Viriato's description +facsimileTelephoneNumber: +1 415 537-9867 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 965-5259 +title: Master Human Resources President +userPassword: Password1 +uid: ViriatoC +givenName: Coral +mail: ViriatoC@a3a401e9d5694d8c8d647950b6db5b18.bitwarden.com +carLicense: O3A0Y3 +departmentNumber: 5238 +employeeType: Employee +homePhone: +1 415 264-4365 +initials: C. V. +mobile: +1 415 552-8546 +pager: +1 415 942-6030 +roomNumber: 8242 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Des Zacharias,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Des Zacharias +sn: Zacharias +description: This is Des Zacharias's description +facsimileTelephoneNumber: +1 213 500-3146 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 815-2148 +title: Junior Payroll Stooge +userPassword: Password1 +uid: ZachariD +givenName: Des +mail: ZachariD@4227d8ce5e1a40d984414347da920f58.bitwarden.com +carLicense: C6ABQE +departmentNumber: 2105 +employeeType: Normal +homePhone: +1 213 777-1838 +initials: D. Z. +mobile: +1 213 187-3264 +pager: +1 213 292-7003 +roomNumber: 8424 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Durantaye Skelly,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Durantaye Skelly +sn: Skelly +description: This is Durantaye Skelly's description +facsimileTelephoneNumber: +1 213 860-2211 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 691-4369 +title: Master Product Development Fellow +userPassword: Password1 +uid: SkellyD +givenName: Durantaye +mail: SkellyD@4115c8a730274bce89da518202dd0d0d.bitwarden.com +carLicense: 0QFM5J +departmentNumber: 6596 +employeeType: Contract +homePhone: +1 213 432-9710 +initials: D. S. +mobile: +1 213 564-9120 +pager: +1 213 765-1401 +roomNumber: 8099 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ingaborg Frisk +sn: Frisk +description: This is Ingaborg Frisk's description +facsimileTelephoneNumber: +1 206 966-4939 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 527-7836 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: FriskI +givenName: Ingaborg +mail: FriskI@742e6acfb3ee43e195f05147276956cf.bitwarden.com +carLicense: LODEU9 +departmentNumber: 5307 +employeeType: Contract +homePhone: +1 206 615-8435 +initials: I. F. +mobile: +1 206 478-7804 +pager: +1 206 164-9205 +roomNumber: 8902 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Candie Mitsui,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candie Mitsui +sn: Mitsui +description: This is Candie Mitsui's description +facsimileTelephoneNumber: +1 206 303-4314 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 788-3898 +title: Junior Management Dictator +userPassword: Password1 +uid: MitsuiC +givenName: Candie +mail: MitsuiC@0230c484eaf84d819fed9b62063a4729.bitwarden.com +carLicense: DKKMYF +departmentNumber: 7864 +employeeType: Employee +homePhone: +1 206 128-8891 +initials: C. M. +mobile: +1 206 312-3140 +pager: +1 206 121-2879 +roomNumber: 9821 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinet Brisebois +sn: Brisebois +description: This is Robinet Brisebois's description +facsimileTelephoneNumber: +1 804 684-9085 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 195-7270 +title: Supreme Human Resources Figurehead +userPassword: Password1 +uid: BriseboR +givenName: Robinet +mail: BriseboR@3fc826f5777843e2bdb2f367b35e8c35.bitwarden.com +carLicense: G114L2 +departmentNumber: 2084 +employeeType: Normal +homePhone: +1 804 515-1661 +initials: R. B. +mobile: +1 804 755-1477 +pager: +1 804 156-2037 +roomNumber: 9969 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eline Vanderheyden +sn: Vanderheyden +description: This is Eline Vanderheyden's description +facsimileTelephoneNumber: +1 818 424-7816 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 142-4365 +title: Junior Administrative Mascot +userPassword: Password1 +uid: VanderhE +givenName: Eline +mail: VanderhE@214f04c971b04f9d856cc90c519f21fc.bitwarden.com +carLicense: QAV6P9 +departmentNumber: 9030 +employeeType: Employee +homePhone: +1 818 351-6779 +initials: E. V. +mobile: +1 818 385-6294 +pager: +1 818 234-8561 +roomNumber: 9427 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mathilda Kibler +sn: Kibler +description: This is Mathilda Kibler's description +facsimileTelephoneNumber: +1 415 988-3696 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 415 612-8512 +title: Chief Product Testing Admin +userPassword: Password1 +uid: KiblerM +givenName: Mathilda +mail: KiblerM@0c3e5c070ad6421e82c1342b233868ed.bitwarden.com +carLicense: N963BC +departmentNumber: 3380 +employeeType: Contract +homePhone: +1 415 815-5974 +initials: M. K. +mobile: +1 415 394-7949 +pager: +1 415 266-2944 +roomNumber: 9159 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rocke Baughan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rocke Baughan +sn: Baughan +description: This is Rocke Baughan's description +facsimileTelephoneNumber: +1 408 175-8131 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 750-8700 +title: Supreme Peons Writer +userPassword: Password1 +uid: BaughanR +givenName: Rocke +mail: BaughanR@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com +carLicense: V248W8 +departmentNumber: 3173 +employeeType: Contract +homePhone: +1 408 931-4920 +initials: R. B. +mobile: +1 408 465-9434 +pager: +1 408 403-6634 +roomNumber: 8304 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vyza Tsuk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vyza Tsuk +sn: Tsuk +description: This is Vyza Tsuk's description +facsimileTelephoneNumber: +1 213 542-7363 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 169-9088 +title: Associate Product Development Architect +userPassword: Password1 +uid: TsukV +givenName: Vyza +mail: TsukV@2f60f554d60143df8c782af78b69eca5.bitwarden.com +carLicense: 2ON0A9 +departmentNumber: 5336 +employeeType: Employee +homePhone: +1 213 814-3655 +initials: V. T. +mobile: +1 213 283-7977 +pager: +1 213 629-4452 +roomNumber: 8495 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilf Timmerman +sn: Timmerman +description: This is Wilf Timmerman's description +facsimileTelephoneNumber: +1 408 394-5287 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 408 127-8834 +title: Master Janitorial Warrior +userPassword: Password1 +uid: TimmermW +givenName: Wilf +mail: TimmermW@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com +carLicense: XQ3PP9 +departmentNumber: 8077 +employeeType: Contract +homePhone: +1 408 602-4081 +initials: W. T. +mobile: +1 408 709-5223 +pager: +1 408 425-4066 +roomNumber: 8085 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tiffany Fisprod,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffany Fisprod +sn: Fisprod +description: This is Tiffany Fisprod's description +facsimileTelephoneNumber: +1 213 595-2820 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 569-6179 +title: Master Management Technician +userPassword: Password1 +uid: FisprodT +givenName: Tiffany +mail: FisprodT@47b619accc2242b98a908129e561089a.bitwarden.com +carLicense: T2N2G2 +departmentNumber: 5099 +employeeType: Employee +homePhone: +1 213 897-5656 +initials: T. F. +mobile: +1 213 212-9655 +pager: +1 213 666-7764 +roomNumber: 8273 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rafael Tucker,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rafael Tucker +sn: Tucker +description: This is Rafael Tucker's description +facsimileTelephoneNumber: +1 510 670-3859 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 527-4237 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: TuckerR +givenName: Rafael +mail: TuckerR@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com +carLicense: JE3ULW +departmentNumber: 3372 +employeeType: Employee +homePhone: +1 510 601-8845 +initials: R. T. +mobile: +1 510 446-4497 +pager: +1 510 167-7766 +roomNumber: 9818 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kayle Gedman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kayle Gedman +sn: Gedman +description: This is Kayle Gedman's description +facsimileTelephoneNumber: +1 510 986-4844 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 547-7019 +title: Junior Product Testing Consultant +userPassword: Password1 +uid: GedmanK +givenName: Kayle +mail: GedmanK@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com +carLicense: KJCITQ +departmentNumber: 7962 +employeeType: Employee +homePhone: +1 510 845-2338 +initials: K. G. +mobile: +1 510 582-4904 +pager: +1 510 101-3811 +roomNumber: 8039 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Arthur Axberg,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arthur Axberg +sn: Axberg +description: This is Arthur Axberg's description +facsimileTelephoneNumber: +1 818 128-3744 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 937-7461 +title: Junior Administrative Sales Rep +userPassword: Password1 +uid: AxbergA +givenName: Arthur +mail: AxbergA@8dd73cf85da34f708a5ea6c9b1ceb858.bitwarden.com +carLicense: 5JI616 +departmentNumber: 8910 +employeeType: Employee +homePhone: +1 818 340-1230 +initials: A. A. +mobile: +1 818 253-8394 +pager: +1 818 709-5129 +roomNumber: 8632 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Deeanne Armstead,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deeanne Armstead +sn: Armstead +description: This is Deeanne Armstead's description +facsimileTelephoneNumber: +1 213 798-8237 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 274-9821 +title: Supreme Management Punk +userPassword: Password1 +uid: ArmsteaD +givenName: Deeanne +mail: ArmsteaD@d1d8d0f2434243eabd270c2b3bcc4c7a.bitwarden.com +carLicense: F6XVWG +departmentNumber: 2599 +employeeType: Contract +homePhone: +1 213 871-9166 +initials: D. A. +mobile: +1 213 647-9305 +pager: +1 213 240-3693 +roomNumber: 9675 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gaye Sils,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaye Sils +sn: Sils +description: This is Gaye Sils's description +facsimileTelephoneNumber: +1 206 887-5403 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 599-6442 +title: Chief Product Testing Admin +userPassword: Password1 +uid: SilsG +givenName: Gaye +mail: SilsG@64ae800c21ed412e8086ba9f98972fde.bitwarden.com +carLicense: J3NCSM +departmentNumber: 3912 +employeeType: Normal +homePhone: +1 206 937-5984 +initials: G. S. +mobile: +1 206 839-7839 +pager: +1 206 174-3660 +roomNumber: 8765 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sadan Trottier,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadan Trottier +sn: Trottier +description: This is Sadan Trottier's description +facsimileTelephoneNumber: +1 206 128-9180 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 605-6556 +title: Supreme Peons Stooge +userPassword: Password1 +uid: TrottieS +givenName: Sadan +mail: TrottieS@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com +carLicense: YICAJA +departmentNumber: 3460 +employeeType: Contract +homePhone: +1 206 180-1120 +initials: S. T. +mobile: +1 206 374-8105 +pager: +1 206 885-2027 +roomNumber: 8968 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Reina Woods,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reina Woods +sn: Woods +description: This is Reina Woods's description +facsimileTelephoneNumber: +1 804 883-7900 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 222-9440 +title: Chief Peons Admin +userPassword: Password1 +uid: WoodsR +givenName: Reina +mail: WoodsR@93c66893cda74239a9a56d1199a44457.bitwarden.com +carLicense: SX1EY4 +departmentNumber: 6788 +employeeType: Employee +homePhone: +1 804 828-7836 +initials: R. W. +mobile: +1 804 127-6458 +pager: +1 804 651-2692 +roomNumber: 8510 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Krystalle Evers,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krystalle Evers +sn: Evers +description: This is Krystalle Evers's description +facsimileTelephoneNumber: +1 415 249-1488 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 655-6908 +title: Master Human Resources Dictator +userPassword: Password1 +uid: EversK +givenName: Krystalle +mail: EversK@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com +carLicense: LU92CH +departmentNumber: 2996 +employeeType: Contract +homePhone: +1 415 403-1840 +initials: K. E. +mobile: +1 415 686-2303 +pager: +1 415 868-8756 +roomNumber: 9938 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mair Bascombe,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mair Bascombe +sn: Bascombe +description: This is Mair Bascombe's description +facsimileTelephoneNumber: +1 510 583-3254 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 510 627-7949 +title: Master Management Madonna +userPassword: Password1 +uid: BascombM +givenName: Mair +mail: BascombM@8c75d8449fe241b583cdc3782aba550b.bitwarden.com +carLicense: B6QF24 +departmentNumber: 3769 +employeeType: Employee +homePhone: +1 510 752-2438 +initials: M. B. +mobile: +1 510 865-7821 +pager: +1 510 947-1777 +roomNumber: 9535 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dinker Meehan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dinker Meehan +sn: Meehan +description: This is Dinker Meehan's description +facsimileTelephoneNumber: +1 510 500-4254 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 200-9449 +title: Supreme Product Testing Vice President +userPassword: Password1 +uid: MeehanD +givenName: Dinker +mail: MeehanD@1149878f7b4f4987a9a8b6d8df86a532.bitwarden.com +carLicense: S6SI0T +departmentNumber: 6046 +employeeType: Normal +homePhone: +1 510 163-9156 +initials: D. M. +mobile: +1 510 165-4606 +pager: +1 510 645-7126 +roomNumber: 8056 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Elena Chabrat,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elena Chabrat +sn: Chabrat +description: This is Elena Chabrat's description +facsimileTelephoneNumber: +1 415 466-5158 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 415 506-5303 +title: Chief Payroll Figurehead +userPassword: Password1 +uid: ChabratE +givenName: Elena +mail: ChabratE@3a3f7974ffc147bc8e5ab8732ee37359.bitwarden.com +carLicense: UW30G7 +departmentNumber: 5627 +employeeType: Contract +homePhone: +1 415 653-5566 +initials: E. C. +mobile: +1 415 118-1305 +pager: +1 415 934-8213 +roomNumber: 8667 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rozelle Kunkel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozelle Kunkel +sn: Kunkel +description: This is Rozelle Kunkel's description +facsimileTelephoneNumber: +1 818 481-8399 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 624-3786 +title: Junior Management Manager +userPassword: Password1 +uid: KunkelR +givenName: Rozelle +mail: KunkelR@dd128ede6e3a4a6bba3ffbcc6309e61f.bitwarden.com +carLicense: ISR734 +departmentNumber: 9357 +employeeType: Normal +homePhone: +1 818 235-3235 +initials: R. K. +mobile: +1 818 509-9633 +pager: +1 818 552-1800 +roomNumber: 8977 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hengameh Hebbar +sn: Hebbar +description: This is Hengameh Hebbar's description +facsimileTelephoneNumber: +1 804 469-5551 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 707-8897 +title: Associate Product Development Mascot +userPassword: Password1 +uid: HebbarH +givenName: Hengameh +mail: HebbarH@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com +carLicense: 7O7YJN +departmentNumber: 9609 +employeeType: Normal +homePhone: +1 804 658-1188 +initials: H. H. +mobile: +1 804 302-9804 +pager: +1 804 387-4236 +roomNumber: 9454 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Christine Moree,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christine Moree +sn: Moree +description: This is Christine Moree's description +facsimileTelephoneNumber: +1 818 213-3644 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 592-9002 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: MoreeC +givenName: Christine +mail: MoreeC@81e30a9ac6dd4fba89da9846767cb24b.bitwarden.com +carLicense: ROCI5L +departmentNumber: 6585 +employeeType: Contract +homePhone: +1 818 124-2585 +initials: C. M. +mobile: +1 818 110-1401 +pager: +1 818 251-6672 +roomNumber: 8922 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlyn McGillicuddy +sn: McGillicuddy +description: This is Karlyn McGillicuddy's description +facsimileTelephoneNumber: +1 818 605-5077 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 720-5330 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: McGilliK +givenName: Karlyn +mail: McGilliK@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com +carLicense: YD68SI +departmentNumber: 1210 +employeeType: Normal +homePhone: +1 818 102-7114 +initials: K. M. +mobile: +1 818 124-9202 +pager: +1 818 109-9841 +roomNumber: 9909 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hildegaard Ornburn +sn: Ornburn +description: This is Hildegaard Ornburn's description +facsimileTelephoneNumber: +1 213 991-2180 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 786-5171 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: OrnburnH +givenName: Hildegaard +mail: OrnburnH@9db63434a78e416392ae93e3976c1bfc.bitwarden.com +carLicense: 4DMTES +departmentNumber: 8252 +employeeType: Normal +homePhone: +1 213 832-3899 +initials: H. O. +mobile: +1 213 806-4379 +pager: +1 213 765-5370 +roomNumber: 8516 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elisa Trevethan +sn: Trevethan +description: This is Elisa Trevethan's description +facsimileTelephoneNumber: +1 206 937-6696 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 206 955-6248 +title: Junior Product Testing Technician +userPassword: Password1 +uid: TrevethE +givenName: Elisa +mail: TrevethE@cafef01f34b44ba5b82ee993bce42d43.bitwarden.com +carLicense: LOBUQ0 +departmentNumber: 1735 +employeeType: Employee +homePhone: +1 206 741-4448 +initials: E. T. +mobile: +1 206 329-6292 +pager: +1 206 900-7457 +roomNumber: 9236 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daune Sauvageau +sn: Sauvageau +description: This is Daune Sauvageau's description +facsimileTelephoneNumber: +1 408 121-5580 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 366-8566 +title: Chief Product Testing Dictator +userPassword: Password1 +uid: SauvageD +givenName: Daune +mail: SauvageD@68388d901e1d4ae598f24f58170951da.bitwarden.com +carLicense: 6ERXQ2 +departmentNumber: 1566 +employeeType: Employee +homePhone: +1 408 718-6614 +initials: D. S. +mobile: +1 408 102-2205 +pager: +1 408 959-8563 +roomNumber: 8547 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anje Saward,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anje Saward +sn: Saward +description: This is Anje Saward's description +facsimileTelephoneNumber: +1 510 678-9745 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 538-2574 +title: Chief Janitorial Developer +userPassword: Password1 +uid: SawardA +givenName: Anje +mail: SawardA@742e0d6a67274517a5c3f77f64edc637.bitwarden.com +carLicense: 62TMP3 +departmentNumber: 3920 +employeeType: Normal +homePhone: +1 510 689-4089 +initials: A. S. +mobile: +1 510 965-4158 +pager: +1 510 970-9532 +roomNumber: 9595 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kwok Pringle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kwok Pringle +sn: Pringle +description: This is Kwok Pringle's description +facsimileTelephoneNumber: +1 408 130-3363 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 440-6262 +title: Master Human Resources Pinhead +userPassword: Password1 +uid: PringleK +givenName: Kwok +mail: PringleK@613c9a81ad7c44b9855320367cfca10a.bitwarden.com +carLicense: YS82J3 +departmentNumber: 6604 +employeeType: Employee +homePhone: +1 408 796-5124 +initials: K. P. +mobile: +1 408 329-3611 +pager: +1 408 470-3048 +roomNumber: 8184 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chiho Zilaie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chiho Zilaie +sn: Zilaie +description: This is Chiho Zilaie's description +facsimileTelephoneNumber: +1 818 254-2476 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 818 162-3601 +title: Chief Peons Manager +userPassword: Password1 +uid: ZilaieC +givenName: Chiho +mail: ZilaieC@fd92acc2e6b64b87b315aebd5398fa83.bitwarden.com +carLicense: W8E0QW +departmentNumber: 4680 +employeeType: Contract +homePhone: +1 818 588-7890 +initials: C. Z. +mobile: +1 818 459-1536 +pager: +1 818 111-5706 +roomNumber: 9071 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shaw Leigh,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaw Leigh +sn: Leigh +description: This is Shaw Leigh's description +facsimileTelephoneNumber: +1 818 323-4904 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 845-8736 +title: Junior Janitorial Writer +userPassword: Password1 +uid: LeighS +givenName: Shaw +mail: LeighS@b8d71981403d4ad3936eae858f7c09c1.bitwarden.com +carLicense: 750SOP +departmentNumber: 1757 +employeeType: Normal +homePhone: +1 818 992-1728 +initials: S. L. +mobile: +1 818 707-7530 +pager: +1 818 988-5677 +roomNumber: 8434 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saundra Cizmar +sn: Cizmar +description: This is Saundra Cizmar's description +facsimileTelephoneNumber: +1 415 662-1020 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 569-3992 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: CizmarS +givenName: Saundra +mail: CizmarS@6e9d465e02444df3bab419ab8506be32.bitwarden.com +carLicense: LJTF0G +departmentNumber: 5075 +employeeType: Employee +homePhone: +1 415 196-2152 +initials: S. C. +mobile: +1 415 186-6168 +pager: +1 415 293-6662 +roomNumber: 8285 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosita Updt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosita Updt +sn: Updt +description: This is Rosita Updt's description +facsimileTelephoneNumber: +1 818 892-1777 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 107-5245 +title: Chief Payroll Punk +userPassword: Password1 +uid: UpdtR +givenName: Rosita +mail: UpdtR@cf19b52e52064a0db712a3ef1a76cd1a.bitwarden.com +carLicense: 9G1P7I +departmentNumber: 1290 +employeeType: Contract +homePhone: +1 818 612-8970 +initials: R. U. +mobile: +1 818 526-9892 +pager: +1 818 911-7321 +roomNumber: 8381 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryPat Wentworth +sn: Wentworth +description: This is MaryPat Wentworth's description +facsimileTelephoneNumber: +1 510 378-9192 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 443-3477 +title: Junior Product Testing Punk +userPassword: Password1 +uid: WentworM +givenName: MaryPat +mail: WentworM@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com +carLicense: LU6D42 +departmentNumber: 3614 +employeeType: Employee +homePhone: +1 510 332-6614 +initials: M. W. +mobile: +1 510 900-2074 +pager: +1 510 254-2497 +roomNumber: 8096 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baljinder Weisenberg +sn: Weisenberg +description: This is Baljinder Weisenberg's description +facsimileTelephoneNumber: +1 408 660-8667 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 408 255-5277 +title: Master Janitorial Stooge +userPassword: Password1 +uid: WeisenbB +givenName: Baljinder +mail: WeisenbB@f4d67a28b94c425786eaa6b689514463.bitwarden.com +carLicense: HKQ5SF +departmentNumber: 1571 +employeeType: Employee +homePhone: +1 408 962-6022 +initials: B. W. +mobile: +1 408 680-3722 +pager: +1 408 409-9609 +roomNumber: 8290 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanda DeStefani +sn: DeStefani +description: This is Vanda DeStefani's description +facsimileTelephoneNumber: +1 206 842-5491 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 206 971-9562 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: DeStefaV +givenName: Vanda +mail: DeStefaV@9dcbc984add8456599771980772d506e.bitwarden.com +carLicense: 4BQB6R +departmentNumber: 6121 +employeeType: Employee +homePhone: +1 206 147-4827 +initials: V. D. +mobile: +1 206 891-4689 +pager: +1 206 168-8896 +roomNumber: 8204 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Selim Kriegler,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selim Kriegler +sn: Kriegler +description: This is Selim Kriegler's description +facsimileTelephoneNumber: +1 213 115-1291 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 865-5625 +title: Associate Peons Mascot +userPassword: Password1 +uid: KriegleS +givenName: Selim +mail: KriegleS@b037ffa0817e41fb9bd6ea3947c6a216.bitwarden.com +carLicense: EX8X42 +departmentNumber: 9900 +employeeType: Contract +homePhone: +1 213 247-9873 +initials: S. K. +mobile: +1 213 212-9305 +pager: +1 213 747-7047 +roomNumber: 9873 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tae Jeng,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tae Jeng +sn: Jeng +description: This is Tae Jeng's description +facsimileTelephoneNumber: +1 818 457-2027 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 473-7664 +title: Junior Administrative Fellow +userPassword: Password1 +uid: JengT +givenName: Tae +mail: JengT@96b2a23653bd4867b5a7bf172ebf238c.bitwarden.com +carLicense: V1LL10 +departmentNumber: 6920 +employeeType: Contract +homePhone: +1 818 943-4312 +initials: T. J. +mobile: +1 818 262-1142 +pager: +1 818 631-8064 +roomNumber: 8896 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bahadir Grassmann +sn: Grassmann +description: This is Bahadir Grassmann's description +facsimileTelephoneNumber: +1 415 707-2277 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 438-5866 +title: Associate Payroll Developer +userPassword: Password1 +uid: GrassmaB +givenName: Bahadir +mail: GrassmaB@6776642cb6824166a999264ad8dc48c5.bitwarden.com +carLicense: XYQO73 +departmentNumber: 7144 +employeeType: Employee +homePhone: +1 415 586-3350 +initials: B. G. +mobile: +1 415 632-3978 +pager: +1 415 883-8244 +roomNumber: 8752 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Faz Chan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faz Chan +sn: Chan +description: This is Faz Chan's description +facsimileTelephoneNumber: +1 415 713-5386 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 415 765-2739 +title: Junior Payroll Dictator +userPassword: Password1 +uid: ChanF +givenName: Faz +mail: ChanF@fadd1eac8fe2451fa3ba21f515baaf1e.bitwarden.com +carLicense: V94R0C +departmentNumber: 9743 +employeeType: Employee +homePhone: +1 415 779-6966 +initials: F. C. +mobile: +1 415 714-8053 +pager: +1 415 845-5279 +roomNumber: 9453 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ericka Hayes,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ericka Hayes +sn: Hayes +description: This is Ericka Hayes's description +facsimileTelephoneNumber: +1 818 782-4515 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 447-2961 +title: Chief Administrative Developer +userPassword: Password1 +uid: HayesE +givenName: Ericka +mail: HayesE@a90573a98b164929a489e62b8b0a18ec.bitwarden.com +carLicense: UL1RIH +departmentNumber: 1076 +employeeType: Employee +homePhone: +1 818 580-9428 +initials: E. H. +mobile: +1 818 377-6647 +pager: +1 818 950-3458 +roomNumber: 8708 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Calli Pharr,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calli Pharr +sn: Pharr +description: This is Calli Pharr's description +facsimileTelephoneNumber: +1 206 332-3247 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 765-8866 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: PharrC +givenName: Calli +mail: PharrC@b4ffcfe46a614ae194b415ba89e17560.bitwarden.com +carLicense: DE4O2K +departmentNumber: 8439 +employeeType: Contract +homePhone: +1 206 737-5092 +initials: C. P. +mobile: +1 206 328-9213 +pager: +1 206 137-9843 +roomNumber: 8975 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pamela Hufana,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pamela Hufana +sn: Hufana +description: This is Pamela Hufana's description +facsimileTelephoneNumber: +1 213 274-4662 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 628-7071 +title: Chief Janitorial Consultant +userPassword: Password1 +uid: HufanaP +givenName: Pamela +mail: HufanaP@b524d22ec70741b18bc6152d2cf11515.bitwarden.com +carLicense: G2W2L4 +departmentNumber: 9129 +employeeType: Normal +homePhone: +1 213 283-8005 +initials: P. H. +mobile: +1 213 151-4215 +pager: +1 213 550-4038 +roomNumber: 9922 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jazmin Wobbrock +sn: Wobbrock +description: This is Jazmin Wobbrock's description +facsimileTelephoneNumber: +1 804 846-9422 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 452-4151 +title: Associate Product Testing Consultant +userPassword: Password1 +uid: WobbrocJ +givenName: Jazmin +mail: WobbrocJ@3b0170f109034332b61e67bb6799825e.bitwarden.com +carLicense: PQ1TVF +departmentNumber: 1326 +employeeType: Employee +homePhone: +1 804 480-2061 +initials: J. W. +mobile: +1 804 935-2705 +pager: +1 804 754-9429 +roomNumber: 9286 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carley Fogleman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carley Fogleman +sn: Fogleman +description: This is Carley Fogleman's description +facsimileTelephoneNumber: +1 818 252-5407 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 818 502-6725 +title: Associate Payroll Stooge +userPassword: Password1 +uid: FoglemaC +givenName: Carley +mail: FoglemaC@aef5e63df5f745ab8b099bc2096e5d54.bitwarden.com +carLicense: 6ML7IO +departmentNumber: 4752 +employeeType: Employee +homePhone: +1 818 136-3115 +initials: C. F. +mobile: +1 818 270-6922 +pager: +1 818 153-3243 +roomNumber: 9920 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marsh Gribbons,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marsh Gribbons +sn: Gribbons +description: This is Marsh Gribbons's description +facsimileTelephoneNumber: +1 213 697-4479 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 846-7783 +title: Master Peons Artist +userPassword: Password1 +uid: GribbonM +givenName: Marsh +mail: GribbonM@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com +carLicense: 2E5U7O +departmentNumber: 9777 +employeeType: Contract +homePhone: +1 213 225-3664 +initials: M. G. +mobile: +1 213 248-4430 +pager: +1 213 148-6373 +roomNumber: 8850 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Herminia Corvo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herminia Corvo +sn: Corvo +description: This is Herminia Corvo's description +facsimileTelephoneNumber: +1 415 914-8673 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 987-8977 +title: Supreme Peons Czar +userPassword: Password1 +uid: CorvoH +givenName: Herminia +mail: CorvoH@755e2f2f01064fb58f5836b47a9f6953.bitwarden.com +carLicense: UMLIPY +departmentNumber: 3318 +employeeType: Contract +homePhone: +1 415 718-3303 +initials: H. C. +mobile: +1 415 998-1237 +pager: +1 415 358-9473 +roomNumber: 9752 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Loutitia Bruce,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loutitia Bruce +sn: Bruce +description: This is Loutitia Bruce's description +facsimileTelephoneNumber: +1 510 482-2687 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 743-4828 +title: Master Product Development Grunt +userPassword: Password1 +uid: BruceL +givenName: Loutitia +mail: BruceL@c5db51a01b18429da119a54ca0483290.bitwarden.com +carLicense: BPGFU7 +departmentNumber: 4422 +employeeType: Contract +homePhone: +1 510 118-1915 +initials: L. B. +mobile: +1 510 449-8409 +pager: +1 510 922-2419 +roomNumber: 9185 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirlene Twyman +sn: Twyman +description: This is Shirlene Twyman's description +facsimileTelephoneNumber: +1 415 160-7451 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 930-1794 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: TwymanS +givenName: Shirlene +mail: TwymanS@f0819837e05a4186824c71a4f41886b6.bitwarden.com +carLicense: 77JCDD +departmentNumber: 7273 +employeeType: Normal +homePhone: +1 415 908-4340 +initials: S. T. +mobile: +1 415 382-7137 +pager: +1 415 857-6002 +roomNumber: 8478 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Genga Poley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genga Poley +sn: Poley +description: This is Genga Poley's description +facsimileTelephoneNumber: +1 510 695-1558 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 364-4299 +title: Supreme Peons Vice President +userPassword: Password1 +uid: PoleyG +givenName: Genga +mail: PoleyG@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com +carLicense: LTY84T +departmentNumber: 3842 +employeeType: Employee +homePhone: +1 510 880-2079 +initials: G. P. +mobile: +1 510 682-6477 +pager: +1 510 229-9659 +roomNumber: 8464 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JamesMichael Creamer +sn: Creamer +description: This is JamesMichael Creamer's description +facsimileTelephoneNumber: +1 206 867-5890 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 523-3146 +title: Master Product Development Consultant +userPassword: Password1 +uid: CreamerJ +givenName: JamesMichael +mail: CreamerJ@592065f7f9cc4bfea26a7ca4df44dee5.bitwarden.com +carLicense: LIW6BT +departmentNumber: 6200 +employeeType: Employee +homePhone: +1 206 641-5832 +initials: J. C. +mobile: +1 206 738-8149 +pager: +1 206 956-5301 +roomNumber: 8307 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Petunia Gunther,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petunia Gunther +sn: Gunther +description: This is Petunia Gunther's description +facsimileTelephoneNumber: +1 415 635-8648 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 396-4515 +title: Chief Administrative Fellow +userPassword: Password1 +uid: GuntherP +givenName: Petunia +mail: GuntherP@c1fb4f6fb6854ac09da830fa08bf174b.bitwarden.com +carLicense: 6FUTYE +departmentNumber: 6981 +employeeType: Employee +homePhone: +1 415 281-5811 +initials: P. G. +mobile: +1 415 573-2195 +pager: +1 415 367-5405 +roomNumber: 8731 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zahirul Dinkel +sn: Dinkel +description: This is Zahirul Dinkel's description +facsimileTelephoneNumber: +1 408 979-2853 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 408 304-5748 +title: Chief Janitorial Technician +userPassword: Password1 +uid: DinkelZ +givenName: Zahirul +mail: DinkelZ@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com +carLicense: 1PDR96 +departmentNumber: 6487 +employeeType: Employee +homePhone: +1 408 443-6033 +initials: Z. D. +mobile: +1 408 630-6822 +pager: +1 408 559-1339 +roomNumber: 9396 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shabbir Throgmorton +sn: Throgmorton +description: This is Shabbir Throgmorton's description +facsimileTelephoneNumber: +1 510 974-7274 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 709-5728 +title: Chief Product Development Consultant +userPassword: Password1 +uid: ThrogmoS +givenName: Shabbir +mail: ThrogmoS@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com +carLicense: AIX6HV +departmentNumber: 3650 +employeeType: Normal +homePhone: +1 510 893-3323 +initials: S. T. +mobile: +1 510 168-1616 +pager: +1 510 178-5479 +roomNumber: 9530 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bernice Yuan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernice Yuan +sn: Yuan +description: This is Bernice Yuan's description +facsimileTelephoneNumber: +1 213 279-4000 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 216-1566 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: YuanB +givenName: Bernice +mail: YuanB@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com +carLicense: 1R3YO1 +departmentNumber: 3837 +employeeType: Normal +homePhone: +1 213 359-2175 +initials: B. Y. +mobile: +1 213 736-4611 +pager: +1 213 834-6169 +roomNumber: 9873 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Brigitte Zahn,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigitte Zahn +sn: Zahn +description: This is Brigitte Zahn's description +facsimileTelephoneNumber: +1 415 529-6300 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 814-1492 +title: Chief Payroll Technician +userPassword: Password1 +uid: ZahnB +givenName: Brigitte +mail: ZahnB@b2efef5ed30b40fb860407b9142be3e0.bitwarden.com +carLicense: FLY8R8 +departmentNumber: 6779 +employeeType: Contract +homePhone: +1 415 262-1387 +initials: B. Z. +mobile: +1 415 580-3140 +pager: +1 415 893-2854 +roomNumber: 8775 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lexis Otsuka,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lexis Otsuka +sn: Otsuka +description: This is Lexis Otsuka's description +facsimileTelephoneNumber: +1 510 714-5286 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 465-7264 +title: Associate Management Engineer +userPassword: Password1 +uid: OtsukaL +givenName: Lexis +mail: OtsukaL@e0abe3f47abe4097a988502110393014.bitwarden.com +carLicense: X8KUAH +departmentNumber: 1565 +employeeType: Normal +homePhone: +1 510 825-1823 +initials: L. O. +mobile: +1 510 284-2032 +pager: +1 510 837-3897 +roomNumber: 9683 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Avril Hoffelt,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avril Hoffelt +sn: Hoffelt +description: This is Avril Hoffelt's description +facsimileTelephoneNumber: +1 206 317-9008 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 187-5345 +title: Master Management Dictator +userPassword: Password1 +uid: HoffeltA +givenName: Avril +mail: HoffeltA@41667abeeb534d61bc80cd7b46b3bcf0.bitwarden.com +carLicense: RWUHGH +departmentNumber: 5159 +employeeType: Normal +homePhone: +1 206 193-4071 +initials: A. H. +mobile: +1 206 986-2562 +pager: +1 206 729-7201 +roomNumber: 9852 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caye Kazimierski +sn: Kazimierski +description: This is Caye Kazimierski's description +facsimileTelephoneNumber: +1 510 527-2331 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 502-3694 +title: Junior Human Resources Punk +userPassword: Password1 +uid: KazimieC +givenName: Caye +mail: KazimieC@62f64ab8f08042e48744a09da3d99a8f.bitwarden.com +carLicense: 1X895J +departmentNumber: 6620 +employeeType: Employee +homePhone: +1 510 706-5180 +initials: C. K. +mobile: +1 510 504-3128 +pager: +1 510 833-5240 +roomNumber: 9422 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgeta Gidaro +sn: Gidaro +description: This is Georgeta Gidaro's description +facsimileTelephoneNumber: +1 510 244-9397 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 224-8468 +title: Master Administrative Janitor +userPassword: Password1 +uid: GidaroG +givenName: Georgeta +mail: GidaroG@ba870021396f4a5691ef47f553098ab0.bitwarden.com +carLicense: WCJNGR +departmentNumber: 4362 +employeeType: Contract +homePhone: +1 510 719-8198 +initials: G. G. +mobile: +1 510 933-5553 +pager: +1 510 923-7499 +roomNumber: 8809 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vax Regier,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vax Regier +sn: Regier +description: This is Vax Regier's description +facsimileTelephoneNumber: +1 510 472-7089 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 925-5073 +title: Master Peons Madonna +userPassword: Password1 +uid: RegierV +givenName: Vax +mail: RegierV@871acffc5fd64b9296d59bdd7ff870b0.bitwarden.com +carLicense: TL54MN +departmentNumber: 1119 +employeeType: Employee +homePhone: +1 510 480-4062 +initials: V. R. +mobile: +1 510 879-8152 +pager: +1 510 428-8656 +roomNumber: 9809 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Meara Lindsey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meara Lindsey +sn: Lindsey +description: This is Meara Lindsey's description +facsimileTelephoneNumber: +1 408 196-3111 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 682-4336 +title: Master Peons Figurehead +userPassword: Password1 +uid: LindseyM +givenName: Meara +mail: LindseyM@f48b3f3250734c97804fc50043b90fe4.bitwarden.com +carLicense: AY7U2M +departmentNumber: 7825 +employeeType: Normal +homePhone: +1 408 930-4948 +initials: M. L. +mobile: +1 408 321-8852 +pager: +1 408 823-7481 +roomNumber: 8199 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Aeriel Juan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aeriel Juan +sn: Juan +description: This is Aeriel Juan's description +facsimileTelephoneNumber: +1 804 576-5699 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 555-5652 +title: Master Product Development Developer +userPassword: Password1 +uid: JuanA +givenName: Aeriel +mail: JuanA@6cf8a50be5a34e5ca28a7f3503d636ef.bitwarden.com +carLicense: EVUCG0 +departmentNumber: 7732 +employeeType: Contract +homePhone: +1 804 161-7588 +initials: A. J. +mobile: +1 804 512-2040 +pager: +1 804 700-2646 +roomNumber: 9508 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dear Valerien,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dear Valerien +sn: Valerien +description: This is Dear Valerien's description +facsimileTelephoneNumber: +1 510 358-1714 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 938-5491 +title: Associate Human Resources Czar +userPassword: Password1 +uid: ValerieD +givenName: Dear +mail: ValerieD@8e1298be63e547e0a393778bd9158d77.bitwarden.com +carLicense: 89GERV +departmentNumber: 9422 +employeeType: Contract +homePhone: +1 510 660-8998 +initials: D. V. +mobile: +1 510 749-4150 +pager: +1 510 263-8951 +roomNumber: 8701 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madlin Dagoulis +sn: Dagoulis +description: This is Madlin Dagoulis's description +facsimileTelephoneNumber: +1 408 949-1247 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 498-8380 +title: Supreme Product Development Consultant +userPassword: Password1 +uid: DagouliM +givenName: Madlin +mail: DagouliM@c9027f607987451aa869ec32b2ad0708.bitwarden.com +carLicense: S28WV3 +departmentNumber: 3165 +employeeType: Normal +homePhone: +1 408 797-9507 +initials: M. D. +mobile: +1 408 397-1997 +pager: +1 408 577-6276 +roomNumber: 8978 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jennica Wasylyk +sn: Wasylyk +description: This is Jennica Wasylyk's description +facsimileTelephoneNumber: +1 510 812-9308 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 296-2018 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: WasylykJ +givenName: Jennica +mail: WasylykJ@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com +carLicense: H7I32G +departmentNumber: 6860 +employeeType: Contract +homePhone: +1 510 492-7138 +initials: J. W. +mobile: +1 510 889-1861 +pager: +1 510 407-6826 +roomNumber: 8754 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shobana Bardsley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shobana Bardsley +sn: Bardsley +description: This is Shobana Bardsley's description +facsimileTelephoneNumber: +1 415 340-6690 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 861-1232 +title: Chief Payroll Czar +userPassword: Password1 +uid: BardsleS +givenName: Shobana +mail: BardsleS@190762f539394f3d8d0e37edbd48fa26.bitwarden.com +carLicense: PIM19O +departmentNumber: 8065 +employeeType: Contract +homePhone: +1 415 557-9069 +initials: S. B. +mobile: +1 415 658-7887 +pager: +1 415 800-9689 +roomNumber: 8000 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Taffy Jemczyk +sn: Jemczyk +description: This is Taffy Jemczyk's description +facsimileTelephoneNumber: +1 510 955-5634 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 335-6561 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: JemczykT +givenName: Taffy +mail: JemczykT@d9a2b19f9cc14fe692b39c04dad264af.bitwarden.com +carLicense: JUPQK8 +departmentNumber: 1954 +employeeType: Employee +homePhone: +1 510 197-1248 +initials: T. J. +mobile: +1 510 158-5407 +pager: +1 510 407-3622 +roomNumber: 9941 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Iona Kohl,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Iona Kohl +sn: Kohl +description: This is Iona Kohl's description +facsimileTelephoneNumber: +1 408 843-6914 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 856-7914 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: KohlI +givenName: Iona +mail: KohlI@6de130a8139a479abd748cccf12fccd5.bitwarden.com +carLicense: RC02KG +departmentNumber: 3975 +employeeType: Employee +homePhone: +1 408 612-1684 +initials: I. K. +mobile: +1 408 881-8220 +pager: +1 408 838-5690 +roomNumber: 9326 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Idette Ramage,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idette Ramage +sn: Ramage +description: This is Idette Ramage's description +facsimileTelephoneNumber: +1 206 587-9075 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 998-7826 +title: Master Product Testing Artist +userPassword: Password1 +uid: RamageI +givenName: Idette +mail: RamageI@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com +carLicense: 1B9YWQ +departmentNumber: 1970 +employeeType: Employee +homePhone: +1 206 911-7141 +initials: I. R. +mobile: +1 206 330-8525 +pager: +1 206 799-8446 +roomNumber: 9729 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mick Jakab,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mick Jakab +sn: Jakab +description: This is Mick Jakab's description +facsimileTelephoneNumber: +1 213 697-5784 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 115-8602 +title: Junior Product Development Visionary +userPassword: Password1 +uid: JakabM +givenName: Mick +mail: JakabM@8ae2116c03884751957c5ca2ff18a644.bitwarden.com +carLicense: BJ8V90 +departmentNumber: 7491 +employeeType: Employee +homePhone: +1 213 688-9564 +initials: M. J. +mobile: +1 213 661-1361 +pager: +1 213 357-4450 +roomNumber: 9476 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LeRoy Wissinger +sn: Wissinger +description: This is LeRoy Wissinger's description +facsimileTelephoneNumber: +1 415 492-4787 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 911-3261 +title: Junior Payroll Engineer +userPassword: Password1 +uid: WissingL +givenName: LeRoy +mail: WissingL@d0cf6383cc594af9bf44d435b5ef79a1.bitwarden.com +carLicense: 1QO17F +departmentNumber: 8672 +employeeType: Normal +homePhone: +1 415 292-5209 +initials: L. W. +mobile: +1 415 520-7635 +pager: +1 415 743-5492 +roomNumber: 9892 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Clay Staats,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clay Staats +sn: Staats +description: This is Clay Staats's description +facsimileTelephoneNumber: +1 804 537-9170 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 957-8693 +title: Chief Janitorial Writer +userPassword: Password1 +uid: StaatsC +givenName: Clay +mail: StaatsC@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com +carLicense: UOT7LB +departmentNumber: 7920 +employeeType: Employee +homePhone: +1 804 441-5431 +initials: C. S. +mobile: +1 804 608-3643 +pager: +1 804 778-8174 +roomNumber: 8037 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zulema Leavitt +sn: Leavitt +description: This is Zulema Leavitt's description +facsimileTelephoneNumber: +1 818 568-5860 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 818 122-6308 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: LeavittZ +givenName: Zulema +mail: LeavittZ@3f14bb0cade24248b56a7e113187211c.bitwarden.com +carLicense: 3UWB93 +departmentNumber: 6012 +employeeType: Contract +homePhone: +1 818 880-8058 +initials: Z. L. +mobile: +1 818 568-7255 +pager: +1 818 241-6498 +roomNumber: 9499 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elsbeth Schadan +sn: Schadan +description: This is Elsbeth Schadan's description +facsimileTelephoneNumber: +1 206 458-2215 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 206 137-5347 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: SchadanE +givenName: Elsbeth +mail: SchadanE@82a02eb22e9446a98ae50c8b159eeb8e.bitwarden.com +carLicense: QT97O6 +departmentNumber: 3774 +employeeType: Normal +homePhone: +1 206 415-7393 +initials: E. S. +mobile: +1 206 972-9087 +pager: +1 206 812-6994 +roomNumber: 9519 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ronica Dummer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronica Dummer +sn: Dummer +description: This is Ronica Dummer's description +facsimileTelephoneNumber: +1 408 695-2140 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 562-8958 +title: Associate Product Testing President +userPassword: Password1 +uid: DummerR +givenName: Ronica +mail: DummerR@c643a761475a4a67b1e62fab24451a4d.bitwarden.com +carLicense: C4O324 +departmentNumber: 4469 +employeeType: Normal +homePhone: +1 408 448-8321 +initials: R. D. +mobile: +1 408 796-5361 +pager: +1 408 629-8056 +roomNumber: 8198 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanBernard Vandergeest +sn: Vandergeest +description: This is JeanBernard Vandergeest's description +facsimileTelephoneNumber: +1 415 933-7301 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 989-1199 +title: Master Product Testing Fellow +userPassword: Password1 +uid: VandergJ +givenName: JeanBernard +mail: VandergJ@61697331f90443959b7bd23e7a2ee775.bitwarden.com +carLicense: W77YQ6 +departmentNumber: 3503 +employeeType: Normal +homePhone: +1 415 488-5274 +initials: J. V. +mobile: +1 415 235-4826 +pager: +1 415 130-2373 +roomNumber: 8051 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rolf Maudrie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rolf Maudrie +sn: Maudrie +description: This is Rolf Maudrie's description +facsimileTelephoneNumber: +1 213 805-2149 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 166-7833 +title: Chief Peons Technician +userPassword: Password1 +uid: MaudrieR +givenName: Rolf +mail: MaudrieR@8717d7d6686445eba152afa0241a3ea0.bitwarden.com +carLicense: ISWXC0 +departmentNumber: 2606 +employeeType: Employee +homePhone: +1 213 152-9255 +initials: R. M. +mobile: +1 213 354-2827 +pager: +1 213 263-2172 +roomNumber: 9041 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sidonnie Comp,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sidonnie Comp +sn: Comp +description: This is Sidonnie Comp's description +facsimileTelephoneNumber: +1 510 370-6879 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 510 244-6798 +title: Chief Peons Engineer +userPassword: Password1 +uid: CompS +givenName: Sidonnie +mail: CompS@ec75342deb7d449a90956cf996c042fb.bitwarden.com +carLicense: OFOND1 +departmentNumber: 1965 +employeeType: Contract +homePhone: +1 510 301-6358 +initials: S. C. +mobile: +1 510 987-3878 +pager: +1 510 844-9227 +roomNumber: 9548 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jimmie Mand,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jimmie Mand +sn: Mand +description: This is Jimmie Mand's description +facsimileTelephoneNumber: +1 510 876-8939 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 688-1435 +title: Supreme Management Technician +userPassword: Password1 +uid: MandJ +givenName: Jimmie +mail: MandJ@02331ebbeac0451ea60775fb2cc7fdc9.bitwarden.com +carLicense: 1FQ0VP +departmentNumber: 4268 +employeeType: Contract +homePhone: +1 510 313-5612 +initials: J. M. +mobile: +1 510 955-5647 +pager: +1 510 179-7522 +roomNumber: 8266 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Esmaria Walston,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esmaria Walston +sn: Walston +description: This is Esmaria Walston's description +facsimileTelephoneNumber: +1 206 669-3400 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 625-9788 +title: Associate Peons Technician +userPassword: Password1 +uid: WalstonE +givenName: Esmaria +mail: WalstonE@c66615aa805449f0a34309614a139187.bitwarden.com +carLicense: DX2Y4H +departmentNumber: 7663 +employeeType: Contract +homePhone: +1 206 558-5169 +initials: E. W. +mobile: +1 206 474-3112 +pager: +1 206 913-6095 +roomNumber: 9225 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Claude LaVecchia,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claude LaVecchia +sn: LaVecchia +description: This is Claude LaVecchia's description +facsimileTelephoneNumber: +1 213 651-5188 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 677-1746 +title: Master Management Artist +userPassword: Password1 +uid: LaVecchC +givenName: Claude +mail: LaVecchC@537a7fb8e8084a50ad524dcf8366437e.bitwarden.com +carLicense: 73R6NR +departmentNumber: 6758 +employeeType: Employee +homePhone: +1 213 705-2074 +initials: C. L. +mobile: +1 213 902-8519 +pager: +1 213 775-2263 +roomNumber: 9793 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rusty Montgomery,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rusty Montgomery +sn: Montgomery +description: This is Rusty Montgomery's description +facsimileTelephoneNumber: +1 510 285-2755 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 411-7308 +title: Master Product Development Technician +userPassword: Password1 +uid: MontgomR +givenName: Rusty +mail: MontgomR@d89a4c96e85d46e9b90aee84eca8553c.bitwarden.com +carLicense: W5F3VF +departmentNumber: 4779 +employeeType: Contract +homePhone: +1 510 959-2152 +initials: R. M. +mobile: +1 510 485-1344 +pager: +1 510 264-4438 +roomNumber: 8428 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Chelsey Favreau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsey Favreau +sn: Favreau +description: This is Chelsey Favreau's description +facsimileTelephoneNumber: +1 213 352-1672 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 450-7317 +title: Supreme Peons Admin +userPassword: Password1 +uid: FavreauC +givenName: Chelsey +mail: FavreauC@a80e7f60ec3848439689791d9f11c058.bitwarden.com +carLicense: OPDT5R +departmentNumber: 2104 +employeeType: Normal +homePhone: +1 213 282-4731 +initials: C. F. +mobile: +1 213 774-3703 +pager: +1 213 212-2234 +roomNumber: 9382 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=JulieAnne Drubld,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JulieAnne Drubld +sn: Drubld +description: This is JulieAnne Drubld's description +facsimileTelephoneNumber: +1 213 484-3433 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 106-9700 +title: Associate Management Dictator +userPassword: Password1 +uid: DrubldJ +givenName: JulieAnne +mail: DrubldJ@377af438e28144f198471c633c478745.bitwarden.com +carLicense: 68BOKG +departmentNumber: 1983 +employeeType: Contract +homePhone: +1 213 775-3431 +initials: J. D. +mobile: +1 213 946-5212 +pager: +1 213 929-1717 +roomNumber: 8729 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rafiq Mihara +sn: Mihara +description: This is Rafiq Mihara's description +facsimileTelephoneNumber: +1 510 172-4475 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 170-3878 +title: Chief Human Resources Warrior +userPassword: Password1 +uid: MiharaR +givenName: Rafiq +mail: MiharaR@5961547593ce4d3d831c972ef1cd392b.bitwarden.com +carLicense: KHA6RW +departmentNumber: 9149 +employeeType: Normal +homePhone: +1 510 940-2359 +initials: R. M. +mobile: +1 510 888-9762 +pager: +1 510 196-5722 +roomNumber: 9294 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninetta Kadlecik +sn: Kadlecik +description: This is Ninetta Kadlecik's description +facsimileTelephoneNumber: +1 818 853-3478 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 104-5359 +title: Junior Payroll Director +userPassword: Password1 +uid: KadleciN +givenName: Ninetta +mail: KadleciN@f84feca728aa4b08a80aa164ca1230d9.bitwarden.com +carLicense: 5MA1DI +departmentNumber: 3621 +employeeType: Normal +homePhone: +1 818 987-8186 +initials: N. K. +mobile: +1 818 362-5880 +pager: +1 818 190-1042 +roomNumber: 9425 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shantee Moulton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shantee Moulton +sn: Moulton +description: This is Shantee Moulton's description +facsimileTelephoneNumber: +1 213 893-1535 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 102-3914 +title: Master Payroll Fellow +userPassword: Password1 +uid: MoultonS +givenName: Shantee +mail: MoultonS@5c0caf6aaf894e2787d090d3ee4667c0.bitwarden.com +carLicense: DPR6VE +departmentNumber: 6043 +employeeType: Contract +homePhone: +1 213 446-9634 +initials: S. M. +mobile: +1 213 389-4120 +pager: +1 213 442-1961 +roomNumber: 8281 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Camilla Sayegh,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camilla Sayegh +sn: Sayegh +description: This is Camilla Sayegh's description +facsimileTelephoneNumber: +1 408 338-1200 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 785-2282 +title: Chief Management Architect +userPassword: Password1 +uid: SayeghC +givenName: Camilla +mail: SayeghC@4ecb285ebb064bbf967c6e0c912612d7.bitwarden.com +carLicense: 1PO89Q +departmentNumber: 3593 +employeeType: Normal +homePhone: +1 408 580-6456 +initials: C. S. +mobile: +1 408 806-4963 +pager: +1 408 871-5047 +roomNumber: 9332 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Txp Wojdylo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Txp Wojdylo +sn: Wojdylo +description: This is Txp Wojdylo's description +facsimileTelephoneNumber: +1 818 427-8819 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 957-4535 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: WojdyloT +givenName: Txp +mail: WojdyloT@5f41ae90bad64d5e97b0ef849f0cfd8f.bitwarden.com +carLicense: OPVKQN +departmentNumber: 1832 +employeeType: Normal +homePhone: +1 818 744-6514 +initials: T. W. +mobile: +1 818 431-8827 +pager: +1 818 624-4209 +roomNumber: 8018 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Belen Miernik,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belen Miernik +sn: Miernik +description: This is Belen Miernik's description +facsimileTelephoneNumber: +1 415 958-8919 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 115-1389 +title: Supreme Payroll Grunt +userPassword: Password1 +uid: MiernikB +givenName: Belen +mail: MiernikB@daf3844d93884659a4691cd15a58290b.bitwarden.com +carLicense: 79910W +departmentNumber: 4136 +employeeType: Employee +homePhone: +1 415 259-9783 +initials: B. M. +mobile: +1 415 696-5127 +pager: +1 415 927-4987 +roomNumber: 9146 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mani Skillen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mani Skillen +sn: Skillen +description: This is Mani Skillen's description +facsimileTelephoneNumber: +1 213 839-6154 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 870-2867 +title: Chief Payroll Grunt +userPassword: Password1 +uid: SkillenM +givenName: Mani +mail: SkillenM@e843ca68e55442fdb294c3e4c51a76f2.bitwarden.com +carLicense: E2JF2F +departmentNumber: 3225 +employeeType: Normal +homePhone: +1 213 767-9515 +initials: M. S. +mobile: +1 213 574-1973 +pager: +1 213 317-5264 +roomNumber: 8103 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Diahann Roeten,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diahann Roeten +sn: Roeten +description: This is Diahann Roeten's description +facsimileTelephoneNumber: +1 415 303-3775 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 446-4900 +title: Supreme Janitorial Figurehead +userPassword: Password1 +uid: RoetenD +givenName: Diahann +mail: RoetenD@cff29f28824b49c2bb3b80efc41d7e67.bitwarden.com +carLicense: JEO37U +departmentNumber: 6502 +employeeType: Employee +homePhone: +1 415 634-9111 +initials: D. R. +mobile: +1 415 746-9323 +pager: +1 415 759-8738 +roomNumber: 8942 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=KaiWai COKOL,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KaiWai COKOL +sn: COKOL +description: This is KaiWai COKOL's description +facsimileTelephoneNumber: +1 804 149-9741 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 737-7639 +title: Chief Payroll Consultant +userPassword: Password1 +uid: COKOLK +givenName: KaiWai +mail: COKOLK@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com +carLicense: QM3S28 +departmentNumber: 2407 +employeeType: Normal +homePhone: +1 804 410-3009 +initials: K. C. +mobile: +1 804 107-3090 +pager: +1 804 961-4645 +roomNumber: 8089 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maible Adorno,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maible Adorno +sn: Adorno +description: This is Maible Adorno's description +facsimileTelephoneNumber: +1 206 460-1500 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 509-4571 +title: Master Product Development Artist +userPassword: Password1 +uid: AdornoM +givenName: Maible +mail: AdornoM@76c55b991b154687a6c440a29ba279b1.bitwarden.com +carLicense: E603BR +departmentNumber: 2566 +employeeType: Contract +homePhone: +1 206 465-3010 +initials: M. A. +mobile: +1 206 406-3221 +pager: +1 206 284-7543 +roomNumber: 8155 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zero Fletcher,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zero Fletcher +sn: Fletcher +description: This is Zero Fletcher's description +facsimileTelephoneNumber: +1 804 293-1768 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 590-2691 +title: Junior Management Assistant +userPassword: Password1 +uid: FletcheZ +givenName: Zero +mail: FletcheZ@9b70e886a18d422fa3404374b5a9613c.bitwarden.com +carLicense: KSXY4M +departmentNumber: 9776 +employeeType: Employee +homePhone: +1 804 803-2931 +initials: Z. F. +mobile: +1 804 411-8431 +pager: +1 804 824-8693 +roomNumber: 8530 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Daveen Burnage,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daveen Burnage +sn: Burnage +description: This is Daveen Burnage's description +facsimileTelephoneNumber: +1 408 966-5320 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 840-1592 +title: Associate Management Consultant +userPassword: Password1 +uid: BurnageD +givenName: Daveen +mail: BurnageD@d5a1c908aa0542dcbca729ee2090c302.bitwarden.com +carLicense: X3I6AC +departmentNumber: 5063 +employeeType: Contract +homePhone: +1 408 584-8457 +initials: D. B. +mobile: +1 408 556-9707 +pager: +1 408 944-3681 +roomNumber: 9452 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ebony Duquette,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ebony Duquette +sn: Duquette +description: This is Ebony Duquette's description +facsimileTelephoneNumber: +1 818 479-2228 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 980-3895 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: DuquettE +givenName: Ebony +mail: DuquettE@fc77f4d906ff4b3cb588df36a2010c58.bitwarden.com +carLicense: 4SLMPE +departmentNumber: 7934 +employeeType: Normal +homePhone: +1 818 564-4382 +initials: E. D. +mobile: +1 818 936-2685 +pager: +1 818 829-7420 +roomNumber: 8658 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tracie Holinski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tracie Holinski +sn: Holinski +description: This is Tracie Holinski's description +facsimileTelephoneNumber: +1 206 788-4411 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 826-1596 +title: Supreme Peons Madonna +userPassword: Password1 +uid: HolinskT +givenName: Tracie +mail: HolinskT@6da551849f104f33a2eea46618b3ca98.bitwarden.com +carLicense: NJAEK9 +departmentNumber: 4921 +employeeType: Contract +homePhone: +1 206 285-6372 +initials: T. H. +mobile: +1 206 446-4204 +pager: +1 206 968-5166 +roomNumber: 8263 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rio Naem,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rio Naem +sn: Naem +description: This is Rio Naem's description +facsimileTelephoneNumber: +1 415 490-2668 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 221-7067 +title: Supreme Payroll Director +userPassword: Password1 +uid: NaemR +givenName: Rio +mail: NaemR@ed87fa3a81eb418da1bb630466cba42d.bitwarden.com +carLicense: POYITD +departmentNumber: 1262 +employeeType: Contract +homePhone: +1 415 349-8495 +initials: R. N. +mobile: +1 415 506-8167 +pager: +1 415 131-4758 +roomNumber: 9834 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Reeta Abel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reeta Abel +sn: Abel +description: This is Reeta Abel's description +facsimileTelephoneNumber: +1 510 303-9245 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 371-2535 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: AbelR +givenName: Reeta +mail: AbelR@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com +carLicense: 6FCPQF +departmentNumber: 1839 +employeeType: Employee +homePhone: +1 510 724-7195 +initials: R. A. +mobile: +1 510 145-5145 +pager: +1 510 891-6270 +roomNumber: 9624 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Felicle McCartin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felicle McCartin +sn: McCartin +description: This is Felicle McCartin's description +facsimileTelephoneNumber: +1 510 928-3727 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 929-6148 +title: Supreme Administrative Figurehead +userPassword: Password1 +uid: McCartiF +givenName: Felicle +mail: McCartiF@78c782ee988042558677d060e6dcc145.bitwarden.com +carLicense: CRGED6 +departmentNumber: 7069 +employeeType: Contract +homePhone: +1 510 509-4286 +initials: F. M. +mobile: +1 510 961-3434 +pager: +1 510 105-4314 +roomNumber: 9209 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Darrell Presgrove,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrell Presgrove +sn: Presgrove +description: This is Darrell Presgrove's description +facsimileTelephoneNumber: +1 510 295-5374 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 151-9531 +title: Associate Payroll Madonna +userPassword: Password1 +uid: PresgroD +givenName: Darrell +mail: PresgroD@08314372b4e24a1c8e4f541db86c96af.bitwarden.com +carLicense: GVC75R +departmentNumber: 1541 +employeeType: Contract +homePhone: +1 510 543-7379 +initials: D. P. +mobile: +1 510 229-3443 +pager: +1 510 299-3775 +roomNumber: 9867 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Faizal Awadalla,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faizal Awadalla +sn: Awadalla +description: This is Faizal Awadalla's description +facsimileTelephoneNumber: +1 213 964-5098 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 892-2662 +title: Junior Management Evangelist +userPassword: Password1 +uid: AwadallF +givenName: Faizal +mail: AwadallF@85be5888418240a8880dd2671e654a34.bitwarden.com +carLicense: UUAJBQ +departmentNumber: 3833 +employeeType: Contract +homePhone: +1 213 418-1876 +initials: F. A. +mobile: +1 213 203-7213 +pager: +1 213 790-1236 +roomNumber: 9470 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=SikYin Borha,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SikYin Borha +sn: Borha +description: This is SikYin Borha's description +facsimileTelephoneNumber: +1 206 861-6705 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 900-1691 +title: Associate Administrative Evangelist +userPassword: Password1 +uid: BorhaS +givenName: SikYin +mail: BorhaS@8cf60560d9f94210b078d7fde7752144.bitwarden.com +carLicense: B2KM2V +departmentNumber: 2924 +employeeType: Normal +homePhone: +1 206 812-9058 +initials: S. B. +mobile: +1 206 788-9165 +pager: +1 206 141-2627 +roomNumber: 8275 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Steve Marette,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steve Marette +sn: Marette +description: This is Steve Marette's description +facsimileTelephoneNumber: +1 818 682-6869 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 965-2104 +title: Junior Human Resources Writer +userPassword: Password1 +uid: MaretteS +givenName: Steve +mail: MaretteS@83fe03b0ea334785886a9e6e12b6449f.bitwarden.com +carLicense: SBO4LN +departmentNumber: 7904 +employeeType: Contract +homePhone: +1 818 805-1027 +initials: S. M. +mobile: +1 818 712-3880 +pager: +1 818 532-8746 +roomNumber: 9946 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jelene Kuykendall +sn: Kuykendall +description: This is Jelene Kuykendall's description +facsimileTelephoneNumber: +1 510 326-5621 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 477-2752 +title: Associate Product Testing Artist +userPassword: Password1 +uid: KuykendJ +givenName: Jelene +mail: KuykendJ@60ec121ba9714e3489eb920608ad92c6.bitwarden.com +carLicense: 3T5WDY +departmentNumber: 1449 +employeeType: Normal +homePhone: +1 510 272-3101 +initials: J. K. +mobile: +1 510 243-4361 +pager: +1 510 775-9904 +roomNumber: 8125 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Janeva Diener,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janeva Diener +sn: Diener +description: This is Janeva Diener's description +facsimileTelephoneNumber: +1 408 994-4790 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 790-7152 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: DienerJ +givenName: Janeva +mail: DienerJ@5b2a3a94c4fc4b63a1c4a61fe0867664.bitwarden.com +carLicense: OBIUJP +departmentNumber: 7309 +employeeType: Contract +homePhone: +1 408 869-3450 +initials: J. D. +mobile: +1 408 513-5851 +pager: +1 408 757-2627 +roomNumber: 8023 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Amelie Brashear,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amelie Brashear +sn: Brashear +description: This is Amelie Brashear's description +facsimileTelephoneNumber: +1 213 111-6951 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 524-3180 +title: Associate Administrative Fellow +userPassword: Password1 +uid: BrasheaA +givenName: Amelie +mail: BrasheaA@2a4ac17a2dac443185eb76e92ebd37d9.bitwarden.com +carLicense: VY4DAE +departmentNumber: 3120 +employeeType: Employee +homePhone: +1 213 245-8105 +initials: A. B. +mobile: +1 213 868-6801 +pager: +1 213 547-3463 +roomNumber: 9568 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kenneth Tahamont,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kenneth Tahamont +sn: Tahamont +description: This is Kenneth Tahamont's description +facsimileTelephoneNumber: +1 408 186-6318 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 802-8020 +title: Associate Peons Director +userPassword: Password1 +uid: TahamonK +givenName: Kenneth +mail: TahamonK@06f45b5a620c43d78c14ccaab146b491.bitwarden.com +carLicense: HMO1E7 +departmentNumber: 2664 +employeeType: Contract +homePhone: +1 408 467-1281 +initials: K. T. +mobile: +1 408 962-6075 +pager: +1 408 464-9024 +roomNumber: 8021 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mario Pappu,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mario Pappu +sn: Pappu +description: This is Mario Pappu's description +facsimileTelephoneNumber: +1 415 298-1773 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 278-9597 +title: Supreme Peons Evangelist +userPassword: Password1 +uid: PappuM +givenName: Mario +mail: PappuM@adc1aa4054664ff28e6c264f378bb34d.bitwarden.com +carLicense: Y8QIXJ +departmentNumber: 3848 +employeeType: Employee +homePhone: +1 415 273-8259 +initials: M. P. +mobile: +1 415 255-9575 +pager: +1 415 967-3474 +roomNumber: 8067 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bethena Arnauld,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bethena Arnauld +sn: Arnauld +description: This is Bethena Arnauld's description +facsimileTelephoneNumber: +1 408 867-9837 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 193-4098 +title: Supreme Peons Director +userPassword: Password1 +uid: ArnauldB +givenName: Bethena +mail: ArnauldB@8e5803ba8a994346b2021a6c4699f1e0.bitwarden.com +carLicense: RIDJ80 +departmentNumber: 7863 +employeeType: Contract +homePhone: +1 408 294-1337 +initials: B. A. +mobile: +1 408 429-2596 +pager: +1 408 198-8826 +roomNumber: 8051 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nhut Hollis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nhut Hollis +sn: Hollis +description: This is Nhut Hollis's description +facsimileTelephoneNumber: +1 510 984-3971 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 148-2748 +title: Associate Product Testing Technician +userPassword: Password1 +uid: HollisN +givenName: Nhut +mail: HollisN@eb263435394f4d6ab9827469c04cb342.bitwarden.com +carLicense: 51I1O6 +departmentNumber: 1565 +employeeType: Employee +homePhone: +1 510 396-1233 +initials: N. H. +mobile: +1 510 896-2388 +pager: +1 510 768-3876 +roomNumber: 9041 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Claudette Murton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claudette Murton +sn: Murton +description: This is Claudette Murton's description +facsimileTelephoneNumber: +1 213 521-8300 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 693-6034 +title: Associate Management Assistant +userPassword: Password1 +uid: MurtonC +givenName: Claudette +mail: MurtonC@e0f19e47c9c84b21b125848518ec6067.bitwarden.com +carLicense: EVGDAW +departmentNumber: 2743 +employeeType: Employee +homePhone: +1 213 234-8660 +initials: C. M. +mobile: +1 213 690-4987 +pager: +1 213 557-5056 +roomNumber: 9115 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heidie Rasmussen +sn: Rasmussen +description: This is Heidie Rasmussen's description +facsimileTelephoneNumber: +1 818 724-7519 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 299-8914 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: RasmussH +givenName: Heidie +mail: RasmussH@f185c5336698451d9003f4fee19cdce1.bitwarden.com +carLicense: NS2AFV +departmentNumber: 3962 +employeeType: Employee +homePhone: +1 818 297-1916 +initials: H. R. +mobile: +1 818 263-6162 +pager: +1 818 734-3476 +roomNumber: 8590 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liem Fahrenthold +sn: Fahrenthold +description: This is Liem Fahrenthold's description +facsimileTelephoneNumber: +1 206 106-8354 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 319-5809 +title: Associate Human Resources Stooge +userPassword: Password1 +uid: FahrentL +givenName: Liem +mail: FahrentL@11006cb63c014ed78431f32c1edc2e50.bitwarden.com +carLicense: BJPO6M +departmentNumber: 6987 +employeeType: Contract +homePhone: +1 206 297-9918 +initials: L. F. +mobile: +1 206 436-6143 +pager: +1 206 718-9197 +roomNumber: 9248 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dalila Solomon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dalila Solomon +sn: Solomon +description: This is Dalila Solomon's description +facsimileTelephoneNumber: +1 818 456-4543 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 972-4675 +title: Junior Janitorial Technician +userPassword: Password1 +uid: SolomonD +givenName: Dalila +mail: SolomonD@1992283e02a14cd2a3449a7bd08c0ed9.bitwarden.com +carLicense: MNKOUQ +departmentNumber: 5530 +employeeType: Contract +homePhone: +1 818 176-4787 +initials: D. S. +mobile: +1 818 478-5770 +pager: +1 818 161-2685 +roomNumber: 8210 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Veriee Aksel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veriee Aksel +sn: Aksel +description: This is Veriee Aksel's description +facsimileTelephoneNumber: +1 818 794-4167 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 346-1087 +title: Supreme Peons Vice President +userPassword: Password1 +uid: AkselV +givenName: Veriee +mail: AkselV@44ecb368c6be4359b7f35b951bbf9473.bitwarden.com +carLicense: 5JWDYU +departmentNumber: 6741 +employeeType: Contract +homePhone: +1 818 924-8950 +initials: V. A. +mobile: +1 818 351-5995 +pager: +1 818 165-4248 +roomNumber: 9645 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mirella Lambregts,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirella Lambregts +sn: Lambregts +description: This is Mirella Lambregts's description +facsimileTelephoneNumber: +1 408 258-5740 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 101-8872 +title: Chief Payroll Engineer +userPassword: Password1 +uid: LambregM +givenName: Mirella +mail: LambregM@9aa7896234604e35853331a58b365781.bitwarden.com +carLicense: E50NNJ +departmentNumber: 4605 +employeeType: Employee +homePhone: +1 408 388-4661 +initials: M. L. +mobile: +1 408 894-9209 +pager: +1 408 271-1556 +roomNumber: 9912 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Paulinus Bagi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulinus Bagi +sn: Bagi +description: This is Paulinus Bagi's description +facsimileTelephoneNumber: +1 804 852-4891 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 977-5364 +title: Chief Administrative Grunt +userPassword: Password1 +uid: BagiP +givenName: Paulinus +mail: BagiP@5ad3d7530e0c4ae2a02dadf40f602049.bitwarden.com +carLicense: WKL5GP +departmentNumber: 9225 +employeeType: Contract +homePhone: +1 804 262-2221 +initials: P. B. +mobile: +1 804 511-4726 +pager: +1 804 848-2284 +roomNumber: 8776 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rodrigo Healy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rodrigo Healy +sn: Healy +description: This is Rodrigo Healy's description +facsimileTelephoneNumber: +1 804 356-5971 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 482-8888 +title: Chief Peons Engineer +userPassword: Password1 +uid: HealyR +givenName: Rodrigo +mail: HealyR@dc401fe14a3e4403a51a351982eb441b.bitwarden.com +carLicense: TUDJWN +departmentNumber: 2084 +employeeType: Contract +homePhone: +1 804 364-7211 +initials: R. H. +mobile: +1 804 800-9914 +pager: +1 804 320-1960 +roomNumber: 8494 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vicheara Reimann,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vicheara Reimann +sn: Reimann +description: This is Vicheara Reimann's description +facsimileTelephoneNumber: +1 408 956-3140 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 375-4461 +title: Master Payroll Consultant +userPassword: Password1 +uid: ReimannV +givenName: Vicheara +mail: ReimannV@16061e068871412f8042ab726cfbe1cf.bitwarden.com +carLicense: SYI0UY +departmentNumber: 8627 +employeeType: Normal +homePhone: +1 408 420-7160 +initials: V. R. +mobile: +1 408 705-8116 +pager: +1 408 561-7153 +roomNumber: 9843 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JoAnne Selchow +sn: Selchow +description: This is JoAnne Selchow's description +facsimileTelephoneNumber: +1 818 312-2768 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 961-8326 +title: Associate Human Resources President +userPassword: Password1 +uid: SelchowJ +givenName: JoAnne +mail: SelchowJ@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com +carLicense: BCCGAS +departmentNumber: 5924 +employeeType: Employee +homePhone: +1 818 262-5324 +initials: J. S. +mobile: +1 818 562-5227 +pager: +1 818 208-9664 +roomNumber: 8705 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sylvie Tesfamariam +sn: Tesfamariam +description: This is Sylvie Tesfamariam's description +facsimileTelephoneNumber: +1 510 250-4709 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 141-9273 +title: Chief Janitorial Czar +userPassword: Password1 +uid: TesfamaS +givenName: Sylvie +mail: TesfamaS@9969b0f8851149aaa64ff3c67e9b6c53.bitwarden.com +carLicense: WPLV5D +departmentNumber: 1849 +employeeType: Contract +homePhone: +1 510 940-6714 +initials: S. T. +mobile: +1 510 312-4496 +pager: +1 510 413-6566 +roomNumber: 9082 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marissa Galluzzi +sn: Galluzzi +description: This is Marissa Galluzzi's description +facsimileTelephoneNumber: +1 804 470-5921 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 771-5276 +title: Associate Administrative Czar +userPassword: Password1 +uid: GalluzzM +givenName: Marissa +mail: GalluzzM@dd011395008c45a78a4a604d3e2ee63f.bitwarden.com +carLicense: 2WUR61 +departmentNumber: 8986 +employeeType: Contract +homePhone: +1 804 765-3449 +initials: M. G. +mobile: +1 804 105-7268 +pager: +1 804 996-6350 +roomNumber: 8482 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Johan Srivastava,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johan Srivastava +sn: Srivastava +description: This is Johan Srivastava's description +facsimileTelephoneNumber: +1 415 203-7305 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 196-5405 +title: Junior Peons Visionary +userPassword: Password1 +uid: SrivastJ +givenName: Johan +mail: SrivastJ@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com +carLicense: YK94V2 +departmentNumber: 5833 +employeeType: Contract +homePhone: +1 415 253-7504 +initials: J. S. +mobile: +1 415 177-2480 +pager: +1 415 141-1977 +roomNumber: 9243 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Isl Luciani,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isl Luciani +sn: Luciani +description: This is Isl Luciani's description +facsimileTelephoneNumber: +1 510 279-4546 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 193-2419 +title: Supreme Human Resources Assistant +userPassword: Password1 +uid: LucianiI +givenName: Isl +mail: LucianiI@93274af28e624bc39a43d4c6197969b8.bitwarden.com +carLicense: DNOV0P +departmentNumber: 5082 +employeeType: Normal +homePhone: +1 510 146-9522 +initials: I. L. +mobile: +1 510 719-3758 +pager: +1 510 598-9360 +roomNumber: 8287 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rafaela Paglia +sn: Paglia +description: This is Rafaela Paglia's description +facsimileTelephoneNumber: +1 206 690-6100 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 935-2923 +title: Chief Human Resources Fellow +userPassword: Password1 +uid: PagliaR +givenName: Rafaela +mail: PagliaR@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com +carLicense: LBFS1C +departmentNumber: 8756 +employeeType: Employee +homePhone: +1 206 706-7558 +initials: R. P. +mobile: +1 206 333-2862 +pager: +1 206 545-9056 +roomNumber: 8229 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Monah Nipper,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monah Nipper +sn: Nipper +description: This is Monah Nipper's description +facsimileTelephoneNumber: +1 408 929-9913 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 368-5076 +title: Chief Administrative Madonna +userPassword: Password1 +uid: NipperM +givenName: Monah +mail: NipperM@45b2aea3ceaf4960a311478dd3996fb9.bitwarden.com +carLicense: 5L0JQV +departmentNumber: 7952 +employeeType: Contract +homePhone: +1 408 933-5114 +initials: M. N. +mobile: +1 408 142-1567 +pager: +1 408 644-9983 +roomNumber: 9536 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sibyl Luettchau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibyl Luettchau +sn: Luettchau +description: This is Sibyl Luettchau's description +facsimileTelephoneNumber: +1 510 545-4940 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 783-5232 +title: Associate Peons Admin +userPassword: Password1 +uid: LuettchS +givenName: Sibyl +mail: LuettchS@4c76717060934e34ac6c2ce08f3c0eb2.bitwarden.com +carLicense: KI5KMN +departmentNumber: 5257 +employeeType: Employee +homePhone: +1 510 332-5042 +initials: S. L. +mobile: +1 510 734-9671 +pager: +1 510 966-8041 +roomNumber: 9598 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maryl Feeley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryl Feeley +sn: Feeley +description: This is Maryl Feeley's description +facsimileTelephoneNumber: +1 213 182-4452 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 831-8824 +title: Associate Peons Director +userPassword: Password1 +uid: FeeleyM +givenName: Maryl +mail: FeeleyM@3ee0cf8e98f2453e9621b886fd38e19c.bitwarden.com +carLicense: 0YWBLG +departmentNumber: 2048 +employeeType: Employee +homePhone: +1 213 329-6776 +initials: M. F. +mobile: +1 213 717-2573 +pager: +1 213 175-1394 +roomNumber: 8704 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Moyna Syres,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moyna Syres +sn: Syres +description: This is Moyna Syres's description +facsimileTelephoneNumber: +1 415 702-4194 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 812-9779 +title: Junior Management Technician +userPassword: Password1 +uid: SyresM +givenName: Moyna +mail: SyresM@f04f08ea3a55432db354ee9760194fa6.bitwarden.com +carLicense: EUECL9 +departmentNumber: 9124 +employeeType: Normal +homePhone: +1 415 608-9077 +initials: M. S. +mobile: +1 415 487-6228 +pager: +1 415 876-9484 +roomNumber: 9520 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Demi Postlethwaite +sn: Postlethwaite +description: This is Demi Postlethwaite's description +facsimileTelephoneNumber: +1 804 542-8058 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 690-2803 +title: Junior Product Testing President +userPassword: Password1 +uid: PostletD +givenName: Demi +mail: PostletD@6e135dde94f540bebc4c8457eb8935d7.bitwarden.com +carLicense: QQKCU3 +departmentNumber: 7049 +employeeType: Normal +homePhone: +1 804 809-3218 +initials: D. P. +mobile: +1 804 584-9365 +pager: +1 804 778-8519 +roomNumber: 9797 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Petri Jimenez,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petri Jimenez +sn: Jimenez +description: This is Petri Jimenez's description +facsimileTelephoneNumber: +1 415 971-4732 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 311-2327 +title: Master Janitorial Warrior +userPassword: Password1 +uid: JimenezP +givenName: Petri +mail: JimenezP@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com +carLicense: UNTUAD +departmentNumber: 9456 +employeeType: Contract +homePhone: +1 415 839-7792 +initials: P. J. +mobile: +1 415 182-4105 +pager: +1 415 228-2365 +roomNumber: 9262 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mike Inoue,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mike Inoue +sn: Inoue +description: This is Mike Inoue's description +facsimileTelephoneNumber: +1 415 862-6843 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 969-7545 +title: Junior Administrative Fellow +userPassword: Password1 +uid: InoueM +givenName: Mike +mail: InoueM@398ea17d6f974da4b9c05b23fe6460f8.bitwarden.com +carLicense: F58D66 +departmentNumber: 3657 +employeeType: Normal +homePhone: +1 415 585-7133 +initials: M. I. +mobile: +1 415 434-7686 +pager: +1 415 567-4419 +roomNumber: 8650 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anita Gonsalves,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anita Gonsalves +sn: Gonsalves +description: This is Anita Gonsalves's description +facsimileTelephoneNumber: +1 415 180-7070 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 181-8468 +title: Master Payroll Assistant +userPassword: Password1 +uid: GonsalvA +givenName: Anita +mail: GonsalvA@1bc81f639d7b4a75a6776b919ea7ed35.bitwarden.com +carLicense: 30GP62 +departmentNumber: 5746 +employeeType: Employee +homePhone: +1 415 723-1090 +initials: A. G. +mobile: +1 415 880-8974 +pager: +1 415 741-9574 +roomNumber: 9267 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dennis Saad,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dennis Saad +sn: Saad +description: This is Dennis Saad's description +facsimileTelephoneNumber: +1 206 957-5583 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 159-8553 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: SaadD +givenName: Dennis +mail: SaadD@194b01da4c0947188a08ceb5675d4f64.bitwarden.com +carLicense: 0JP52M +departmentNumber: 7348 +employeeType: Normal +homePhone: +1 206 814-4360 +initials: D. S. +mobile: +1 206 599-4548 +pager: +1 206 462-6361 +roomNumber: 9177 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Taryna Anchia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Taryna Anchia +sn: Anchia +description: This is Taryna Anchia's description +facsimileTelephoneNumber: +1 408 372-6562 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 362-8646 +title: Supreme Product Development Janitor +userPassword: Password1 +uid: AnchiaT +givenName: Taryna +mail: AnchiaT@87bc15d42d8444788089ff676f599c5a.bitwarden.com +carLicense: 5RKB4B +departmentNumber: 4755 +employeeType: Contract +homePhone: +1 408 672-1200 +initials: T. A. +mobile: +1 408 372-1274 +pager: +1 408 857-9330 +roomNumber: 8122 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roseann Dattalo +sn: Dattalo +description: This is Roseann Dattalo's description +facsimileTelephoneNumber: +1 510 774-3286 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 601-3068 +title: Chief Product Testing Developer +userPassword: Password1 +uid: DattaloR +givenName: Roseann +mail: DattaloR@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com +carLicense: 7L918J +departmentNumber: 7905 +employeeType: Employee +homePhone: +1 510 831-4276 +initials: R. D. +mobile: +1 510 843-6190 +pager: +1 510 139-7428 +roomNumber: 9455 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Abigale Dacal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abigale Dacal +sn: Dacal +description: This is Abigale Dacal's description +facsimileTelephoneNumber: +1 213 775-2522 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 728-9168 +title: Junior Peons Writer +userPassword: Password1 +uid: DacalA +givenName: Abigale +mail: DacalA@a2e6c1d1859c490496277e66f6d6fefe.bitwarden.com +carLicense: VFRN16 +departmentNumber: 6193 +employeeType: Normal +homePhone: +1 213 633-2437 +initials: A. D. +mobile: +1 213 621-5421 +pager: +1 213 797-1537 +roomNumber: 9373 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kana Gantt,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kana Gantt +sn: Gantt +description: This is Kana Gantt's description +facsimileTelephoneNumber: +1 804 574-1488 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 975-8290 +title: Supreme Peons Grunt +userPassword: Password1 +uid: GanttK +givenName: Kana +mail: GanttK@c641e89a05dc4a0b90f1fb133a4ef5f0.bitwarden.com +carLicense: 27FUDN +departmentNumber: 1996 +employeeType: Employee +homePhone: +1 804 782-8906 +initials: K. G. +mobile: +1 804 992-7291 +pager: +1 804 304-6611 +roomNumber: 8217 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hans Raing,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hans Raing +sn: Raing +description: This is Hans Raing's description +facsimileTelephoneNumber: +1 408 761-5705 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 392-1559 +title: Supreme Payroll Janitor +userPassword: Password1 +uid: RaingH +givenName: Hans +mail: RaingH@5527d18878ce414192acda3c6755e170.bitwarden.com +carLicense: IKCPHT +departmentNumber: 8335 +employeeType: Contract +homePhone: +1 408 985-8541 +initials: H. R. +mobile: +1 408 442-8312 +pager: +1 408 675-9197 +roomNumber: 9758 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Melford Lopes,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melford Lopes +sn: Lopes +description: This is Melford Lopes's description +facsimileTelephoneNumber: +1 206 628-7012 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 976-4879 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: LopesM +givenName: Melford +mail: LopesM@dabe1d11b71042a7a449964bb8bad569.bitwarden.com +carLicense: HE6TRE +departmentNumber: 4748 +employeeType: Employee +homePhone: +1 206 977-2676 +initials: M. L. +mobile: +1 206 804-2091 +pager: +1 206 721-1138 +roomNumber: 9230 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Taryna Krumwiede +sn: Krumwiede +description: This is Taryna Krumwiede's description +facsimileTelephoneNumber: +1 818 313-8622 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 965-5871 +title: Associate Human Resources Writer +userPassword: Password1 +uid: KrumwieT +givenName: Taryna +mail: KrumwieT@d041e9b74a124206a91f318978266966.bitwarden.com +carLicense: YOSW2V +departmentNumber: 9577 +employeeType: Contract +homePhone: +1 818 277-2401 +initials: T. K. +mobile: +1 818 465-7800 +pager: +1 818 812-1319 +roomNumber: 8039 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hermina Ng,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermina Ng +sn: Ng +description: This is Hermina Ng's description +facsimileTelephoneNumber: +1 510 462-6731 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 454-6236 +title: Associate Administrative Dictator +userPassword: Password1 +uid: NgH +givenName: Hermina +mail: NgH@bc08bb83b4a9449f96909ee779df6288.bitwarden.com +carLicense: 59VADV +departmentNumber: 5924 +employeeType: Employee +homePhone: +1 510 844-4565 +initials: H. N. +mobile: +1 510 677-8709 +pager: +1 510 166-6665 +roomNumber: 8331 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ren Schwenk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ren Schwenk +sn: Schwenk +description: This is Ren Schwenk's description +facsimileTelephoneNumber: +1 804 304-3123 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 389-4963 +title: Chief Administrative Evangelist +userPassword: Password1 +uid: SchwenkR +givenName: Ren +mail: SchwenkR@01a39cd47fba422abe5be28943be33a3.bitwarden.com +carLicense: I09S5N +departmentNumber: 9737 +employeeType: Normal +homePhone: +1 804 142-1146 +initials: R. S. +mobile: +1 804 662-1905 +pager: +1 804 657-2099 +roomNumber: 9352 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Subramaniam Cranston,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subramaniam Cranston +sn: Cranston +description: This is Subramaniam Cranston's description +facsimileTelephoneNumber: +1 408 819-1682 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 696-2726 +title: Master Peons Janitor +userPassword: Password1 +uid: CranstoS +givenName: Subramaniam +mail: CranstoS@7dae041718544c45a452ecb7fa3d7247.bitwarden.com +carLicense: MGPX1Q +departmentNumber: 9475 +employeeType: Employee +homePhone: +1 408 597-9371 +initials: S. C. +mobile: +1 408 719-5768 +pager: +1 408 653-8115 +roomNumber: 9335 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Coors Livas,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coors Livas +sn: Livas +description: This is Coors Livas's description +facsimileTelephoneNumber: +1 213 128-1062 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 469-3045 +title: Chief Management Artist +userPassword: Password1 +uid: LivasC +givenName: Coors +mail: LivasC@289444924c894df68dc76e9d8add4066.bitwarden.com +carLicense: IL1FUW +departmentNumber: 6712 +employeeType: Contract +homePhone: +1 213 889-1801 +initials: C. L. +mobile: +1 213 454-6302 +pager: +1 213 435-3724 +roomNumber: 8197 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Arleyne Schreier,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arleyne Schreier +sn: Schreier +description: This is Arleyne Schreier's description +facsimileTelephoneNumber: +1 804 402-2129 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 969-9552 +title: Master Product Development Janitor +userPassword: Password1 +uid: SchreieA +givenName: Arleyne +mail: SchreieA@eab743ec7e88405c97ab071366098384.bitwarden.com +carLicense: 7YOTW8 +departmentNumber: 2698 +employeeType: Normal +homePhone: +1 804 725-1547 +initials: A. S. +mobile: +1 804 225-3305 +pager: +1 804 634-1984 +roomNumber: 9552 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ko Yuen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ko Yuen +sn: Yuen +description: This is Ko Yuen's description +facsimileTelephoneNumber: +1 408 508-8787 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 361-1873 +title: Associate Human Resources President +userPassword: Password1 +uid: YuenK +givenName: Ko +mail: YuenK@8fe8053cf30a4c47b93e0a3f02958712.bitwarden.com +carLicense: V57DCK +departmentNumber: 3420 +employeeType: Contract +homePhone: +1 408 209-7273 +initials: K. Y. +mobile: +1 408 352-1252 +pager: +1 408 564-8119 +roomNumber: 8176 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kentaro Vetrano +sn: Vetrano +description: This is Kentaro Vetrano's description +facsimileTelephoneNumber: +1 510 302-5609 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 510 795-9204 +title: Junior Product Development Janitor +userPassword: Password1 +uid: VetranoK +givenName: Kentaro +mail: VetranoK@974ece3e63104cd593ac8a6d9de7a620.bitwarden.com +carLicense: 0UF275 +departmentNumber: 4693 +employeeType: Contract +homePhone: +1 510 196-2372 +initials: K. V. +mobile: +1 510 894-6764 +pager: +1 510 912-5061 +roomNumber: 8886 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fayth Kamboh +sn: Kamboh +description: This is Fayth Kamboh's description +facsimileTelephoneNumber: +1 206 782-9275 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 523-8738 +title: Supreme Human Resources Stooge +userPassword: Password1 +uid: KambohF +givenName: Fayth +mail: KambohF@e1f0d918bf004e4781bc8a3f9e7beec7.bitwarden.com +carLicense: GVY2IS +departmentNumber: 9946 +employeeType: Normal +homePhone: +1 206 682-6153 +initials: F. K. +mobile: +1 206 469-4622 +pager: +1 206 403-4202 +roomNumber: 8255 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joelly Dorrell +sn: Dorrell +description: This is Joelly Dorrell's description +facsimileTelephoneNumber: +1 408 246-9601 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 997-7557 +title: Master Product Testing Manager +userPassword: Password1 +uid: DorrellJ +givenName: Joelly +mail: DorrellJ@8c9d5524ef4a437cbd972be9daff51a3.bitwarden.com +carLicense: 2PRAT1 +departmentNumber: 1928 +employeeType: Contract +homePhone: +1 408 836-9087 +initials: J. D. +mobile: +1 408 280-6358 +pager: +1 408 713-7559 +roomNumber: 9295 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=HsingJu Kellogg,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HsingJu Kellogg +sn: Kellogg +description: This is HsingJu Kellogg's description +facsimileTelephoneNumber: +1 408 773-4725 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 461-7101 +title: Associate Peons Mascot +userPassword: Password1 +uid: KelloggH +givenName: HsingJu +mail: KelloggH@4b73d5c781bf4b6e9f4e5ee08640ddde.bitwarden.com +carLicense: YOEW4X +departmentNumber: 5645 +employeeType: Employee +homePhone: +1 408 919-7199 +initials: H. K. +mobile: +1 408 361-9006 +pager: +1 408 655-7083 +roomNumber: 9961 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Juanita Beisel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juanita Beisel +sn: Beisel +description: This is Juanita Beisel's description +facsimileTelephoneNumber: +1 213 321-3255 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 213 665-1667 +title: Master Product Development Manager +userPassword: Password1 +uid: BeiselJ +givenName: Juanita +mail: BeiselJ@1f7da6ad1bec427086c129ba155297d7.bitwarden.com +carLicense: XLO42H +departmentNumber: 5279 +employeeType: Normal +homePhone: +1 213 872-1568 +initials: J. B. +mobile: +1 213 790-1145 +pager: +1 213 546-5944 +roomNumber: 8508 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jackson Forbes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jackson Forbes +sn: Forbes +description: This is Jackson Forbes's description +facsimileTelephoneNumber: +1 213 427-9510 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 682-1464 +title: Junior Product Testing Manager +userPassword: Password1 +uid: ForbesJ +givenName: Jackson +mail: ForbesJ@ce56c75a600546b9ade2ff9aaa1b992b.bitwarden.com +carLicense: YARI2V +departmentNumber: 4541 +employeeType: Contract +homePhone: +1 213 385-4789 +initials: J. F. +mobile: +1 213 131-2576 +pager: +1 213 598-5604 +roomNumber: 9635 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bethina Rosvick,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bethina Rosvick +sn: Rosvick +description: This is Bethina Rosvick's description +facsimileTelephoneNumber: +1 415 251-5007 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 415 636-5956 +title: Chief Peons Fellow +userPassword: Password1 +uid: RosvickB +givenName: Bethina +mail: RosvickB@ade29194809c470d9cdfd87fd5b67232.bitwarden.com +carLicense: 718V9D +departmentNumber: 5753 +employeeType: Contract +homePhone: +1 415 253-9522 +initials: B. R. +mobile: +1 415 321-3426 +pager: +1 415 510-5800 +roomNumber: 9154 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Osama Bitton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Osama Bitton +sn: Bitton +description: This is Osama Bitton's description +facsimileTelephoneNumber: +1 804 675-8556 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 520-1457 +title: Junior Peons Manager +userPassword: Password1 +uid: BittonO +givenName: Osama +mail: BittonO@39518f40f570412d8781523094828b83.bitwarden.com +carLicense: WVB2WB +departmentNumber: 5830 +employeeType: Normal +homePhone: +1 804 359-7142 +initials: O. B. +mobile: +1 804 605-8764 +pager: +1 804 392-7582 +roomNumber: 9023 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Douglass Eales,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Douglass Eales +sn: Eales +description: This is Douglass Eales's description +facsimileTelephoneNumber: +1 206 349-1070 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 350-4520 +title: Junior Janitorial Admin +userPassword: Password1 +uid: EalesD +givenName: Douglass +mail: EalesD@fda558d35380465a89fa3c01f8acc3f5.bitwarden.com +carLicense: ENKQ0A +departmentNumber: 7901 +employeeType: Employee +homePhone: +1 206 376-4418 +initials: D. E. +mobile: +1 206 354-4253 +pager: +1 206 166-4004 +roomNumber: 9570 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Linh Ostifichuk,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linh Ostifichuk +sn: Ostifichuk +description: This is Linh Ostifichuk's description +facsimileTelephoneNumber: +1 408 685-5564 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 366-8260 +title: Junior Peons Visionary +userPassword: Password1 +uid: OstificL +givenName: Linh +mail: OstificL@d324387fa53747b48c6c4daf8c273d2a.bitwarden.com +carLicense: FVTOU6 +departmentNumber: 3120 +employeeType: Employee +homePhone: +1 408 467-6204 +initials: L. O. +mobile: +1 408 821-5994 +pager: +1 408 772-3925 +roomNumber: 9585 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Leonor Hepburn,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonor Hepburn +sn: Hepburn +description: This is Leonor Hepburn's description +facsimileTelephoneNumber: +1 510 326-2119 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 602-5076 +title: Master Peons Director +userPassword: Password1 +uid: HepburnL +givenName: Leonor +mail: HepburnL@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com +carLicense: 0PRJR4 +departmentNumber: 9418 +employeeType: Employee +homePhone: +1 510 765-9783 +initials: L. H. +mobile: +1 510 644-8635 +pager: +1 510 846-2185 +roomNumber: 8793 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Umesh Mayhugh,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Umesh Mayhugh +sn: Mayhugh +description: This is Umesh Mayhugh's description +facsimileTelephoneNumber: +1 818 605-1829 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 121-1875 +title: Junior Management Dictator +userPassword: Password1 +uid: MayhughU +givenName: Umesh +mail: MayhughU@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com +carLicense: 5CROAT +departmentNumber: 5306 +employeeType: Employee +homePhone: +1 818 972-1661 +initials: U. M. +mobile: +1 818 622-2406 +pager: +1 818 136-6782 +roomNumber: 9215 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cecile Chorley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cecile Chorley +sn: Chorley +description: This is Cecile Chorley's description +facsimileTelephoneNumber: +1 415 568-7251 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 213-8364 +title: Junior Administrative Visionary +userPassword: Password1 +uid: ChorleyC +givenName: Cecile +mail: ChorleyC@92468910821a458ca936a273ecde380f.bitwarden.com +carLicense: 4JSACV +departmentNumber: 1388 +employeeType: Contract +homePhone: +1 415 662-7928 +initials: C. C. +mobile: +1 415 727-2939 +pager: +1 415 761-8305 +roomNumber: 8445 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alia Kuehne,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alia Kuehne +sn: Kuehne +description: This is Alia Kuehne's description +facsimileTelephoneNumber: +1 818 760-4985 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 316-7445 +title: Master Peons Madonna +userPassword: Password1 +uid: KuehneA +givenName: Alia +mail: KuehneA@4440d5a8c29244aaa65d7ce99130f973.bitwarden.com +carLicense: C3PXDT +departmentNumber: 4038 +employeeType: Employee +homePhone: +1 818 661-3772 +initials: A. K. +mobile: +1 818 872-7770 +pager: +1 818 162-2293 +roomNumber: 8693 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prudence Pelkie +sn: Pelkie +description: This is Prudence Pelkie's description +facsimileTelephoneNumber: +1 206 925-1415 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 500-9049 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: PelkieP +givenName: Prudence +mail: PelkieP@4db0de6fc0354c61b2c3ca3477ce6f09.bitwarden.com +carLicense: 5PXUXW +departmentNumber: 5405 +employeeType: Employee +homePhone: +1 206 134-8158 +initials: P. P. +mobile: +1 206 572-1701 +pager: +1 206 857-3099 +roomNumber: 8721 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fernando Pacey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fernando Pacey +sn: Pacey +description: This is Fernando Pacey's description +facsimileTelephoneNumber: +1 213 836-2286 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 145-6124 +title: Master Product Development Dictator +userPassword: Password1 +uid: PaceyF +givenName: Fernando +mail: PaceyF@7a081f2b6b9244909f5b879d315b7d98.bitwarden.com +carLicense: FT85UX +departmentNumber: 9175 +employeeType: Employee +homePhone: +1 213 796-8321 +initials: F. P. +mobile: +1 213 993-9210 +pager: +1 213 517-2409 +roomNumber: 8373 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sela Sandlford,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sela Sandlford +sn: Sandlford +description: This is Sela Sandlford's description +facsimileTelephoneNumber: +1 408 567-5444 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 344-2652 +title: Master Management Technician +userPassword: Password1 +uid: SandlfoS +givenName: Sela +mail: SandlfoS@5590d64af7534c85b57333acc4273b5d.bitwarden.com +carLicense: JBNSKH +departmentNumber: 5099 +employeeType: Employee +homePhone: +1 408 844-7229 +initials: S. S. +mobile: +1 408 515-3581 +pager: +1 408 696-5273 +roomNumber: 9601 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Latashia McCuaig,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Latashia McCuaig +sn: McCuaig +description: This is Latashia McCuaig's description +facsimileTelephoneNumber: +1 804 180-3564 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 170-3298 +title: Associate Peons Mascot +userPassword: Password1 +uid: McCuaigL +givenName: Latashia +mail: McCuaigL@89d246bbdd9b435a85f71ab6a1baf316.bitwarden.com +carLicense: MBVEK7 +departmentNumber: 4460 +employeeType: Contract +homePhone: +1 804 262-6484 +initials: L. M. +mobile: +1 804 943-4036 +pager: +1 804 725-3758 +roomNumber: 9584 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dara Goodwin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dara Goodwin +sn: Goodwin +description: This is Dara Goodwin's description +facsimileTelephoneNumber: +1 213 177-2951 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 458-2870 +title: Associate Human Resources Artist +userPassword: Password1 +uid: GoodwinD +givenName: Dara +mail: GoodwinD@96301228f26045a98bca1aa7a6828ccb.bitwarden.com +carLicense: F8JRUO +departmentNumber: 8640 +employeeType: Contract +homePhone: +1 213 807-3560 +initials: D. G. +mobile: +1 213 224-4647 +pager: +1 213 513-6675 +roomNumber: 9917 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Helli Charlino,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helli Charlino +sn: Charlino +description: This is Helli Charlino's description +facsimileTelephoneNumber: +1 206 534-8994 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 816-7508 +title: Junior Peons Writer +userPassword: Password1 +uid: CharlinH +givenName: Helli +mail: CharlinH@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com +carLicense: MY4J23 +departmentNumber: 7288 +employeeType: Employee +homePhone: +1 206 799-1981 +initials: H. C. +mobile: +1 206 863-7599 +pager: +1 206 270-3081 +roomNumber: 8050 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duquette MacCarthy +sn: MacCarthy +description: This is Duquette MacCarthy's description +facsimileTelephoneNumber: +1 408 219-9807 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 921-5323 +title: Chief Product Development Artist +userPassword: Password1 +uid: MacCartD +givenName: Duquette +mail: MacCartD@599d357394854e689476d822b0b57fa1.bitwarden.com +carLicense: LN1Y3A +departmentNumber: 5389 +employeeType: Normal +homePhone: +1 408 952-2175 +initials: D. M. +mobile: +1 408 391-5773 +pager: +1 408 242-8221 +roomNumber: 8674 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Erhard Ikeda,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erhard Ikeda +sn: Ikeda +description: This is Erhard Ikeda's description +facsimileTelephoneNumber: +1 818 452-1523 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 818 486-9362 +title: Master Administrative Janitor +userPassword: Password1 +uid: IkedaE +givenName: Erhard +mail: IkedaE@91023564560e4387b5bc8c338afb8d2d.bitwarden.com +carLicense: PTCJBA +departmentNumber: 8075 +employeeType: Employee +homePhone: +1 818 762-4692 +initials: E. I. +mobile: +1 818 593-8536 +pager: +1 818 133-1302 +roomNumber: 8743 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Perrin Lai,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perrin Lai +sn: Lai +description: This is Perrin Lai's description +facsimileTelephoneNumber: +1 408 359-9086 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 339-1821 +title: Master Peons Warrior +userPassword: Password1 +uid: LaiP +givenName: Perrin +mail: LaiP@191560c093d04e6eb83773b23b4a75c7.bitwarden.com +carLicense: 8S84SB +departmentNumber: 9342 +employeeType: Employee +homePhone: +1 408 383-3809 +initials: P. L. +mobile: +1 408 695-9535 +pager: +1 408 781-7734 +roomNumber: 8440 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vickie Bardsley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vickie Bardsley +sn: Bardsley +description: This is Vickie Bardsley's description +facsimileTelephoneNumber: +1 206 560-7657 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 206 942-1958 +title: Supreme Peons Admin +userPassword: Password1 +uid: BardsleV +givenName: Vickie +mail: BardsleV@34b9dab44b4c429bac836e963718507e.bitwarden.com +carLicense: 04OFTT +departmentNumber: 1182 +employeeType: Contract +homePhone: +1 206 114-7630 +initials: V. B. +mobile: +1 206 738-5300 +pager: +1 206 337-9113 +roomNumber: 9978 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yasmeen Uhl +sn: Uhl +description: This is Yasmeen Uhl's description +facsimileTelephoneNumber: +1 415 733-9650 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 836-6947 +title: Chief Payroll Madonna +userPassword: Password1 +uid: UhlY +givenName: Yasmeen +mail: UhlY@2e914230190e4b26af40b18447e81c89.bitwarden.com +carLicense: MQA8A9 +departmentNumber: 6439 +employeeType: Contract +homePhone: +1 415 756-1839 +initials: Y. U. +mobile: +1 415 945-3455 +pager: +1 415 925-1461 +roomNumber: 9128 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jackquelin Gavens +sn: Gavens +description: This is Jackquelin Gavens's description +facsimileTelephoneNumber: +1 804 594-8291 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 499-5388 +title: Associate Administrative Czar +userPassword: Password1 +uid: GavensJ +givenName: Jackquelin +mail: GavensJ@48d89f6366ec4bc9a3dc2bca58802c17.bitwarden.com +carLicense: XDXFCR +departmentNumber: 8344 +employeeType: Normal +homePhone: +1 804 746-2703 +initials: J. G. +mobile: +1 804 260-3026 +pager: +1 804 427-6609 +roomNumber: 8911 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katherin Habert,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katherin Habert +sn: Habert +description: This is Katherin Habert's description +facsimileTelephoneNumber: +1 804 529-6776 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 572-1476 +title: Associate Administrative Dictator +userPassword: Password1 +uid: HabertK +givenName: Katherin +mail: HabertK@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com +carLicense: EHP80P +departmentNumber: 8951 +employeeType: Contract +homePhone: +1 804 947-1985 +initials: K. H. +mobile: +1 804 641-3968 +pager: +1 804 706-4141 +roomNumber: 8871 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mehrzad Stults +sn: Stults +description: This is Mehrzad Stults's description +facsimileTelephoneNumber: +1 818 737-8430 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 258-6808 +title: Junior Human Resources Visionary +userPassword: Password1 +uid: StultsM +givenName: Mehrzad +mail: StultsM@a94f02e2207d4ffea5ed4b894690e8bb.bitwarden.com +carLicense: IW66XH +departmentNumber: 7094 +employeeType: Normal +homePhone: +1 818 616-9722 +initials: M. S. +mobile: +1 818 856-9741 +pager: +1 818 790-6800 +roomNumber: 8955 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nobuko Prickett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nobuko Prickett +sn: Prickett +description: This is Nobuko Prickett's description +facsimileTelephoneNumber: +1 206 816-5114 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 751-9623 +title: Supreme Peons Sales Rep +userPassword: Password1 +uid: PricketN +givenName: Nobuko +mail: PricketN@7a0a42a221e54534bde4f77162bffa38.bitwarden.com +carLicense: QKAA90 +departmentNumber: 1685 +employeeType: Contract +homePhone: +1 206 522-1648 +initials: N. P. +mobile: +1 206 955-7740 +pager: +1 206 500-8866 +roomNumber: 9366 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amye Seery,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amye Seery +sn: Seery +description: This is Amye Seery's description +facsimileTelephoneNumber: +1 510 392-5116 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 510 616-7681 +title: Supreme Human Resources Consultant +userPassword: Password1 +uid: SeeryA +givenName: Amye +mail: SeeryA@5a862ee432d84b02b5e7449c7e7e57de.bitwarden.com +carLicense: J177EP +departmentNumber: 6520 +employeeType: Normal +homePhone: +1 510 481-1891 +initials: A. S. +mobile: +1 510 384-8118 +pager: +1 510 496-6442 +roomNumber: 8090 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Illinois Bolgos,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Illinois Bolgos +sn: Bolgos +description: This is Illinois Bolgos's description +facsimileTelephoneNumber: +1 213 103-5863 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 495-9414 +title: Associate Peons Pinhead +userPassword: Password1 +uid: BolgosI +givenName: Illinois +mail: BolgosI@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com +carLicense: 81P2PO +departmentNumber: 4402 +employeeType: Employee +homePhone: +1 213 129-6288 +initials: I. B. +mobile: +1 213 995-2661 +pager: +1 213 314-1770 +roomNumber: 8954 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sandro Ploof,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandro Ploof +sn: Ploof +description: This is Sandro Ploof's description +facsimileTelephoneNumber: +1 818 851-1954 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 675-6683 +title: Supreme Product Testing Figurehead +userPassword: Password1 +uid: PloofS +givenName: Sandro +mail: PloofS@5b74ae7e4b63404ca474f585b4fa1a15.bitwarden.com +carLicense: 793OHB +departmentNumber: 9705 +employeeType: Normal +homePhone: +1 818 871-4787 +initials: S. P. +mobile: +1 818 786-9987 +pager: +1 818 785-7376 +roomNumber: 9776 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Turgay Potesta,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Turgay Potesta +sn: Potesta +description: This is Turgay Potesta's description +facsimileTelephoneNumber: +1 408 254-2394 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 408 426-6221 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: PotestaT +givenName: Turgay +mail: PotestaT@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com +carLicense: E00EOU +departmentNumber: 7353 +employeeType: Normal +homePhone: +1 408 900-7605 +initials: T. P. +mobile: +1 408 266-5086 +pager: +1 408 380-5021 +roomNumber: 8688 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Debi Hore,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debi Hore +sn: Hore +description: This is Debi Hore's description +facsimileTelephoneNumber: +1 408 345-4235 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 111-2987 +title: Chief Payroll Figurehead +userPassword: Password1 +uid: HoreD +givenName: Debi +mail: HoreD@399088e535dc444183a128d7fd1a5d16.bitwarden.com +carLicense: JY5H2G +departmentNumber: 6485 +employeeType: Normal +homePhone: +1 408 537-2798 +initials: D. H. +mobile: +1 408 698-8964 +pager: +1 408 932-4828 +roomNumber: 8566 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Leyla Toulson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leyla Toulson +sn: Toulson +description: This is Leyla Toulson's description +facsimileTelephoneNumber: +1 213 216-5898 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 838-1691 +title: Chief Janitorial Technician +userPassword: Password1 +uid: ToulsonL +givenName: Leyla +mail: ToulsonL@4fdb4b1142dd43e2b745e38a2e8dcfc4.bitwarden.com +carLicense: 2QYAJ4 +departmentNumber: 8817 +employeeType: Employee +homePhone: +1 213 601-3566 +initials: L. T. +mobile: +1 213 576-2820 +pager: +1 213 338-4897 +roomNumber: 9072 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Morris Asghar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morris Asghar +sn: Asghar +description: This is Morris Asghar's description +facsimileTelephoneNumber: +1 206 665-1846 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 555-3535 +title: Junior Janitorial Evangelist +userPassword: Password1 +uid: AsgharM +givenName: Morris +mail: AsgharM@dd44ac1957c74a4cb7889302d7ebe0e9.bitwarden.com +carLicense: 4CYV26 +departmentNumber: 9068 +employeeType: Normal +homePhone: +1 206 979-2022 +initials: M. A. +mobile: +1 206 329-7365 +pager: +1 206 666-8723 +roomNumber: 9440 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Eirik Satkamp,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eirik Satkamp +sn: Satkamp +description: This is Eirik Satkamp's description +facsimileTelephoneNumber: +1 213 537-2297 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 606-5520 +title: Master Payroll Artist +userPassword: Password1 +uid: SatkampE +givenName: Eirik +mail: SatkampE@a58e2e7328b140e6b9088aee54dad46e.bitwarden.com +carLicense: LEMYU9 +departmentNumber: 7766 +employeeType: Employee +homePhone: +1 213 777-4697 +initials: E. S. +mobile: +1 213 313-9239 +pager: +1 213 178-9078 +roomNumber: 8523 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Asghar Graziano,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Asghar Graziano +sn: Graziano +description: This is Asghar Graziano's description +facsimileTelephoneNumber: +1 408 170-3320 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 789-7286 +title: Master Product Testing Developer +userPassword: Password1 +uid: GrazianA +givenName: Asghar +mail: GrazianA@ed467736f9c84503b862ff0dede491f5.bitwarden.com +carLicense: PLWPCG +departmentNumber: 5636 +employeeType: Employee +homePhone: +1 408 939-3980 +initials: A. G. +mobile: +1 408 337-2895 +pager: +1 408 545-3696 +roomNumber: 9456 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Randee McIntee,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randee McIntee +sn: McIntee +description: This is Randee McIntee's description +facsimileTelephoneNumber: +1 818 341-2080 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 656-1114 +title: Supreme Management Warrior +userPassword: Password1 +uid: McInteeR +givenName: Randee +mail: McInteeR@51d2d36aebb34355849c7e53ff1c0f7f.bitwarden.com +carLicense: PV2KFQ +departmentNumber: 8355 +employeeType: Contract +homePhone: +1 818 288-5600 +initials: R. M. +mobile: +1 818 656-9125 +pager: +1 818 151-7295 +roomNumber: 8148 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Magnolia Aderhold,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magnolia Aderhold +sn: Aderhold +description: This is Magnolia Aderhold's description +facsimileTelephoneNumber: +1 206 765-6235 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 955-2574 +title: Master Peons Sales Rep +userPassword: Password1 +uid: AderholM +givenName: Magnolia +mail: AderholM@af1c936dc969478a898b38c058f5ed5e.bitwarden.com +carLicense: W6P4VC +departmentNumber: 8477 +employeeType: Employee +homePhone: +1 206 624-8169 +initials: M. A. +mobile: +1 206 765-8915 +pager: +1 206 446-9781 +roomNumber: 8899 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gert Thibert,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gert Thibert +sn: Thibert +description: This is Gert Thibert's description +facsimileTelephoneNumber: +1 408 108-6741 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 619-5016 +title: Chief Administrative Consultant +userPassword: Password1 +uid: ThibertG +givenName: Gert +mail: ThibertG@df1e12962002409b9a20ed25bb4fc517.bitwarden.com +carLicense: FHF58K +departmentNumber: 3499 +employeeType: Contract +homePhone: +1 408 616-1967 +initials: G. T. +mobile: +1 408 489-5235 +pager: +1 408 240-5085 +roomNumber: 9332 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hunter Durant,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hunter Durant +sn: Durant +description: This is Hunter Durant's description +facsimileTelephoneNumber: +1 408 689-6392 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 318-1854 +title: Associate Payroll Manager +userPassword: Password1 +uid: DurantH +givenName: Hunter +mail: DurantH@4a47eda5b0994d6aac96fd9eb9bf327f.bitwarden.com +carLicense: 02XI8X +departmentNumber: 9479 +employeeType: Contract +homePhone: +1 408 344-5514 +initials: H. D. +mobile: +1 408 561-8712 +pager: +1 408 139-8229 +roomNumber: 8415 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Luci Gergen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luci Gergen +sn: Gergen +description: This is Luci Gergen's description +facsimileTelephoneNumber: +1 804 326-4613 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 804 848-9750 +title: Master Administrative Assistant +userPassword: Password1 +uid: GergenL +givenName: Luci +mail: GergenL@7ac0e2ad61544d40bfea2cd31be985e5.bitwarden.com +carLicense: X6LH4N +departmentNumber: 2907 +employeeType: Contract +homePhone: +1 804 964-7866 +initials: L. G. +mobile: +1 804 623-5011 +pager: +1 804 105-6325 +roomNumber: 8847 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilak Samsonenko +sn: Samsonenko +description: This is Tilak Samsonenko's description +facsimileTelephoneNumber: +1 408 915-2343 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 105-1850 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: SamsoneT +givenName: Tilak +mail: SamsoneT@a36ae0077844436e8862dc02ec43b8a5.bitwarden.com +carLicense: URFASO +departmentNumber: 4919 +employeeType: Contract +homePhone: +1 408 291-3110 +initials: T. S. +mobile: +1 408 165-5607 +pager: +1 408 870-1662 +roomNumber: 8698 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yousef Musick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yousef Musick +sn: Musick +description: This is Yousef Musick's description +facsimileTelephoneNumber: +1 415 525-9665 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 885-7879 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: MusickY +givenName: Yousef +mail: MusickY@2a9b1bb4219c473fa5e7f0b996562330.bitwarden.com +carLicense: 1RTQWR +departmentNumber: 8132 +employeeType: Normal +homePhone: +1 415 506-1690 +initials: Y. M. +mobile: +1 415 895-3545 +pager: +1 415 902-4168 +roomNumber: 8829 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shabbir Derganc,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shabbir Derganc +sn: Derganc +description: This is Shabbir Derganc's description +facsimileTelephoneNumber: +1 213 978-4400 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 297-1808 +title: Supreme Peons Evangelist +userPassword: Password1 +uid: DergancS +givenName: Shabbir +mail: DergancS@fcae2d9ced4b428b9a9d2a090c1d7f7e.bitwarden.com +carLicense: JFAMC8 +departmentNumber: 7936 +employeeType: Normal +homePhone: +1 213 450-3934 +initials: S. D. +mobile: +1 213 449-4942 +pager: +1 213 360-4820 +roomNumber: 8594 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Amalita Korey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amalita Korey +sn: Korey +description: This is Amalita Korey's description +facsimileTelephoneNumber: +1 415 287-2188 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 109-7066 +title: Junior Janitorial Architect +userPassword: Password1 +uid: KoreyA +givenName: Amalita +mail: KoreyA@7f43ce627c55498db87bd6bc96b3db06.bitwarden.com +carLicense: UHGPB3 +departmentNumber: 5255 +employeeType: Employee +homePhone: +1 415 988-7567 +initials: A. K. +mobile: +1 415 332-6389 +pager: +1 415 336-7470 +roomNumber: 8018 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Herbie Merrils,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herbie Merrils +sn: Merrils +description: This is Herbie Merrils's description +facsimileTelephoneNumber: +1 804 343-3543 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 772-1229 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: MerrilsH +givenName: Herbie +mail: MerrilsH@ea8c137275494c24a45d33c847e472b4.bitwarden.com +carLicense: VNW7GW +departmentNumber: 4979 +employeeType: Normal +homePhone: +1 804 918-4906 +initials: H. M. +mobile: +1 804 298-6138 +pager: +1 804 146-6097 +roomNumber: 8472 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=YuenPui Woodford,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YuenPui Woodford +sn: Woodford +description: This is YuenPui Woodford's description +facsimileTelephoneNumber: +1 213 455-7452 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 455-8572 +title: Chief Product Development Punk +userPassword: Password1 +uid: WoodforY +givenName: YuenPui +mail: WoodforY@352885b42f264ade8eacdfa709cc8cc4.bitwarden.com +carLicense: MEIVKK +departmentNumber: 3654 +employeeType: Employee +homePhone: +1 213 626-3398 +initials: Y. W. +mobile: +1 213 149-3913 +pager: +1 213 372-7502 +roomNumber: 8172 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mair Dobransky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mair Dobransky +sn: Dobransky +description: This is Mair Dobransky's description +facsimileTelephoneNumber: +1 408 277-3589 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 860-7764 +title: Associate Administrative Pinhead +userPassword: Password1 +uid: DobransM +givenName: Mair +mail: DobransM@fb42541289ea4a75a098aa5071cf2a78.bitwarden.com +carLicense: EO9TF6 +departmentNumber: 3196 +employeeType: Contract +homePhone: +1 408 945-7210 +initials: M. D. +mobile: +1 408 697-9992 +pager: +1 408 306-5296 +roomNumber: 8988 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fae Molson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fae Molson +sn: Molson +description: This is Fae Molson's description +facsimileTelephoneNumber: +1 415 770-7225 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 995-6404 +title: Master Management Artist +userPassword: Password1 +uid: MolsonF +givenName: Fae +mail: MolsonF@88e71895091a44a391aaaea86b3a2139.bitwarden.com +carLicense: AJ7YWU +departmentNumber: 8652 +employeeType: Contract +homePhone: +1 415 936-6724 +initials: F. M. +mobile: +1 415 150-3091 +pager: +1 415 203-3544 +roomNumber: 8602 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Subhash Moizer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subhash Moizer +sn: Moizer +description: This is Subhash Moizer's description +facsimileTelephoneNumber: +1 206 429-3335 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 677-1399 +title: Junior Product Testing Evangelist +userPassword: Password1 +uid: MoizerS +givenName: Subhash +mail: MoizerS@1a8c60a83e6243159e036bc3f0b25375.bitwarden.com +carLicense: M7IN32 +departmentNumber: 7217 +employeeType: Normal +homePhone: +1 206 481-5056 +initials: S. M. +mobile: +1 206 223-1384 +pager: +1 206 788-4051 +roomNumber: 8899 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rosella Spillane,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosella Spillane +sn: Spillane +description: This is Rosella Spillane's description +facsimileTelephoneNumber: +1 415 210-5167 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 210-7599 +title: Associate Peons Developer +userPassword: Password1 +uid: SpillanR +givenName: Rosella +mail: SpillanR@7d0b6de1366f4854a2055e12fa1d2f25.bitwarden.com +carLicense: IL3AIU +departmentNumber: 9366 +employeeType: Contract +homePhone: +1 415 549-4404 +initials: R. S. +mobile: +1 415 503-8281 +pager: +1 415 697-9785 +roomNumber: 9389 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Persis Modi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Persis Modi +sn: Modi +description: This is Persis Modi's description +facsimileTelephoneNumber: +1 510 960-7140 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 121-1069 +title: Associate Payroll Engineer +userPassword: Password1 +uid: ModiP +givenName: Persis +mail: ModiP@e01f22d28f98422baeb51e5c86b12ea4.bitwarden.com +carLicense: JULFSC +departmentNumber: 7432 +employeeType: Employee +homePhone: +1 510 211-7502 +initials: P. M. +mobile: +1 510 528-1527 +pager: +1 510 343-5936 +roomNumber: 9538 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tamar Haggart,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamar Haggart +sn: Haggart +description: This is Tamar Haggart's description +facsimileTelephoneNumber: +1 818 215-7277 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 818 765-9300 +title: Master Payroll Warrior +userPassword: Password1 +uid: HaggartT +givenName: Tamar +mail: HaggartT@0bbb8d3aae5445bdac2a449666fb01f5.bitwarden.com +carLicense: GXJYVY +departmentNumber: 4009 +employeeType: Normal +homePhone: +1 818 663-6288 +initials: T. H. +mobile: +1 818 419-4606 +pager: +1 818 910-1467 +roomNumber: 9005 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Orelie Cheval,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orelie Cheval +sn: Cheval +description: This is Orelie Cheval's description +facsimileTelephoneNumber: +1 818 182-4464 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 818 887-1695 +title: Chief Payroll Grunt +userPassword: Password1 +uid: ChevalO +givenName: Orelie +mail: ChevalO@ad4f2c28add24fbaa47ce2429cc8c126.bitwarden.com +carLicense: TAF5RD +departmentNumber: 3410 +employeeType: Employee +homePhone: +1 818 909-6125 +initials: O. C. +mobile: +1 818 800-2503 +pager: +1 818 651-4773 +roomNumber: 8191 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ronna Morton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronna Morton +sn: Morton +description: This is Ronna Morton's description +facsimileTelephoneNumber: +1 206 373-8354 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 541-7768 +title: Supreme Product Development President +userPassword: Password1 +uid: MortonR +givenName: Ronna +mail: MortonR@bf06b384703e4fb1b93b31fc9bbac8e5.bitwarden.com +carLicense: NREFIR +departmentNumber: 1084 +employeeType: Normal +homePhone: +1 206 208-5592 +initials: R. M. +mobile: +1 206 322-7328 +pager: +1 206 762-6113 +roomNumber: 9028 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Eryn Avirett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eryn Avirett +sn: Avirett +description: This is Eryn Avirett's description +facsimileTelephoneNumber: +1 804 460-9771 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 737-4806 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: AvirettE +givenName: Eryn +mail: AvirettE@764613c40e224c12ab1c1cb80b18e644.bitwarden.com +carLicense: LP23GH +departmentNumber: 6470 +employeeType: Employee +homePhone: +1 804 266-5620 +initials: E. A. +mobile: +1 804 607-5167 +pager: +1 804 233-8084 +roomNumber: 8568 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YeeNing Minegishi +sn: Minegishi +description: This is YeeNing Minegishi's description +facsimileTelephoneNumber: +1 206 515-6256 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 998-4545 +title: Chief Administrative Visionary +userPassword: Password1 +uid: MinegisY +givenName: YeeNing +mail: MinegisY@76c064fc8a52468faf02f6f037383b43.bitwarden.com +carLicense: DX2FBY +departmentNumber: 5695 +employeeType: Employee +homePhone: +1 206 126-3363 +initials: Y. M. +mobile: +1 206 102-7328 +pager: +1 206 612-4748 +roomNumber: 8233 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amaleta Chuah +sn: Chuah +description: This is Amaleta Chuah's description +facsimileTelephoneNumber: +1 408 846-3050 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 408 494-2302 +title: Junior Product Testing Developer +userPassword: Password1 +uid: ChuahA +givenName: Amaleta +mail: ChuahA@7fd0c28d96684690bb3ec812bcbe54dc.bitwarden.com +carLicense: PD54DP +departmentNumber: 7777 +employeeType: Normal +homePhone: +1 408 178-9231 +initials: A. C. +mobile: +1 408 463-6016 +pager: +1 408 300-6296 +roomNumber: 9671 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rowe Firment,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rowe Firment +sn: Firment +description: This is Rowe Firment's description +facsimileTelephoneNumber: +1 818 819-9520 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 945-3583 +title: Chief Payroll President +userPassword: Password1 +uid: FirmentR +givenName: Rowe +mail: FirmentR@341209807c3b449193b094017d62cb24.bitwarden.com +carLicense: PURHPD +departmentNumber: 2087 +employeeType: Normal +homePhone: +1 818 685-6192 +initials: R. F. +mobile: +1 818 517-7016 +pager: +1 818 503-6771 +roomNumber: 9831 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fidela Irving,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fidela Irving +sn: Irving +description: This is Fidela Irving's description +facsimileTelephoneNumber: +1 510 657-2504 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 510 319-2328 +title: Junior Product Development Writer +userPassword: Password1 +uid: IrvingF +givenName: Fidela +mail: IrvingF@edc642e0d4114142a514590d284702bf.bitwarden.com +carLicense: UB06F5 +departmentNumber: 3607 +employeeType: Contract +homePhone: +1 510 663-8179 +initials: F. I. +mobile: +1 510 136-7374 +pager: +1 510 131-4983 +roomNumber: 8923 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giambattista Hawryluk +sn: Hawryluk +description: This is Giambattista Hawryluk's description +facsimileTelephoneNumber: +1 510 350-4182 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 806-2076 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: HawryluG +givenName: Giambattista +mail: HawryluG@b1b7656e019d440a9a3ca7d6d074faa1.bitwarden.com +carLicense: HNOVP4 +departmentNumber: 1019 +employeeType: Contract +homePhone: +1 510 344-5628 +initials: G. H. +mobile: +1 510 742-1059 +pager: +1 510 913-4845 +roomNumber: 9123 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Desire Rutter,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desire Rutter +sn: Rutter +description: This is Desire Rutter's description +facsimileTelephoneNumber: +1 818 846-9397 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 567-4869 +title: Junior Administrative Architect +userPassword: Password1 +uid: RutterD +givenName: Desire +mail: RutterD@17dcf13b7e684c4a9ba2dcc27a684a76.bitwarden.com +carLicense: KGXFC0 +departmentNumber: 6924 +employeeType: Employee +homePhone: +1 818 428-5498 +initials: D. R. +mobile: +1 818 706-6426 +pager: +1 818 791-1359 +roomNumber: 8184 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Xaviera Anstead,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xaviera Anstead +sn: Anstead +description: This is Xaviera Anstead's description +facsimileTelephoneNumber: +1 818 220-4275 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 948-7285 +title: Supreme Management Evangelist +userPassword: Password1 +uid: AnsteadX +givenName: Xaviera +mail: AnsteadX@c7ac29b8c7544beabc5b51db5b6a9b3a.bitwarden.com +carLicense: QS30JX +departmentNumber: 6426 +employeeType: Employee +homePhone: +1 818 364-1272 +initials: X. A. +mobile: +1 818 706-4657 +pager: +1 818 925-5457 +roomNumber: 9299 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kelsi McAlister,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelsi McAlister +sn: McAlister +description: This is Kelsi McAlister's description +facsimileTelephoneNumber: +1 818 901-3669 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 328-6094 +title: Supreme Management Technician +userPassword: Password1 +uid: McAlistK +givenName: Kelsi +mail: McAlistK@78b14e83ea6c430b9dbf5891d9c7ea13.bitwarden.com +carLicense: D3GOXN +departmentNumber: 5160 +employeeType: Contract +homePhone: +1 818 392-6784 +initials: K. M. +mobile: +1 818 275-2790 +pager: +1 818 403-4317 +roomNumber: 9624 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marce Onyshko,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marce Onyshko +sn: Onyshko +description: This is Marce Onyshko's description +facsimileTelephoneNumber: +1 408 742-1114 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 436-7057 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: OnyshkoM +givenName: Marce +mail: OnyshkoM@cd70627629114669966294343a84f460.bitwarden.com +carLicense: 22MVAT +departmentNumber: 8905 +employeeType: Contract +homePhone: +1 408 944-9215 +initials: M. O. +mobile: +1 408 858-7712 +pager: +1 408 859-9050 +roomNumber: 8213 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Son AlBasi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Son AlBasi +sn: AlBasi +description: This is Son AlBasi's description +facsimileTelephoneNumber: +1 818 370-4186 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 214-9323 +title: Junior Peons Developer +userPassword: Password1 +uid: AlBasiS +givenName: Son +mail: AlBasiS@380d2cfedb114628852f31e5ec3504d8.bitwarden.com +carLicense: U2NDJ0 +departmentNumber: 4880 +employeeType: Employee +homePhone: +1 818 946-1892 +initials: S. A. +mobile: +1 818 428-2583 +pager: +1 818 696-8084 +roomNumber: 9023 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zdenko Burrowes +sn: Burrowes +description: This is Zdenko Burrowes's description +facsimileTelephoneNumber: +1 206 473-8165 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 206 859-7395 +title: Junior Product Development Dictator +userPassword: Password1 +uid: BurroweZ +givenName: Zdenko +mail: BurroweZ@42ed2713079345ee9a1fa2e4e2a26d0d.bitwarden.com +carLicense: E7ORUC +departmentNumber: 5987 +employeeType: Contract +homePhone: +1 206 421-9981 +initials: Z. B. +mobile: +1 206 746-7992 +pager: +1 206 434-5767 +roomNumber: 8498 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Julianne Temp,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julianne Temp +sn: Temp +description: This is Julianne Temp's description +facsimileTelephoneNumber: +1 804 604-9011 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 804 772-2219 +title: Junior Administrative Czar +userPassword: Password1 +uid: TempJ +givenName: Julianne +mail: TempJ@d90060a8a6214d68a708f85a619deb45.bitwarden.com +carLicense: 0L5WR7 +departmentNumber: 1194 +employeeType: Contract +homePhone: +1 804 699-5237 +initials: J. T. +mobile: +1 804 736-2942 +pager: +1 804 915-9630 +roomNumber: 9258 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Seamus Sathe,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seamus Sathe +sn: Sathe +description: This is Seamus Sathe's description +facsimileTelephoneNumber: +1 408 257-4849 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 408 559-5981 +title: Master Human Resources Architect +userPassword: Password1 +uid: SatheS +givenName: Seamus +mail: SatheS@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com +carLicense: R60336 +departmentNumber: 3092 +employeeType: Employee +homePhone: +1 408 276-6075 +initials: S. S. +mobile: +1 408 331-2268 +pager: +1 408 632-2681 +roomNumber: 8500 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Terra Tanatichat,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terra Tanatichat +sn: Tanatichat +description: This is Terra Tanatichat's description +facsimileTelephoneNumber: +1 818 719-9668 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 818 167-3252 +title: Master Product Development Punk +userPassword: Password1 +uid: TanaticT +givenName: Terra +mail: TanaticT@228cb153fdc24b46957a116ec2859b16.bitwarden.com +carLicense: 7HYQIS +departmentNumber: 9732 +employeeType: Employee +homePhone: +1 818 690-1313 +initials: T. T. +mobile: +1 818 339-2352 +pager: +1 818 846-7551 +roomNumber: 9312 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlisle Hazelton +sn: Hazelton +description: This is Carlisle Hazelton's description +facsimileTelephoneNumber: +1 213 711-4357 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 613-1627 +title: Master Payroll President +userPassword: Password1 +uid: HazeltoC +givenName: Carlisle +mail: HazeltoC@51972c3fcd684339942be0fdc3e53b2a.bitwarden.com +carLicense: H42FL5 +departmentNumber: 4605 +employeeType: Normal +homePhone: +1 213 896-5873 +initials: C. H. +mobile: +1 213 335-3542 +pager: +1 213 455-2048 +roomNumber: 9430 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Emil Hogeboom,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emil Hogeboom +sn: Hogeboom +description: This is Emil Hogeboom's description +facsimileTelephoneNumber: +1 510 192-1983 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 464-2372 +title: Master Administrative Artist +userPassword: Password1 +uid: HogebooE +givenName: Emil +mail: HogebooE@e6ed933c0a1d45ec83769226267acd7a.bitwarden.com +carLicense: I86VTP +departmentNumber: 8290 +employeeType: Normal +homePhone: +1 510 771-6653 +initials: E. H. +mobile: +1 510 341-2644 +pager: +1 510 820-3790 +roomNumber: 9997 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anup Volkmer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anup Volkmer +sn: Volkmer +description: This is Anup Volkmer's description +facsimileTelephoneNumber: +1 213 835-2819 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 133-6190 +title: Supreme Human Resources Assistant +userPassword: Password1 +uid: VolkmerA +givenName: Anup +mail: VolkmerA@6e287118b6904f0fb9c650aef9285536.bitwarden.com +carLicense: 9F9XYV +departmentNumber: 9361 +employeeType: Normal +homePhone: +1 213 780-8504 +initials: A. V. +mobile: +1 213 246-5432 +pager: +1 213 586-7383 +roomNumber: 9278 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kevin Tangren,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kevin Tangren +sn: Tangren +description: This is Kevin Tangren's description +facsimileTelephoneNumber: +1 213 622-4206 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 425-9081 +title: Chief Human Resources Punk +userPassword: Password1 +uid: TangrenK +givenName: Kevin +mail: TangrenK@1f071e8813ad43c0a975571fab76b110.bitwarden.com +carLicense: 9MVHYU +departmentNumber: 7487 +employeeType: Employee +homePhone: +1 213 735-8288 +initials: K. T. +mobile: +1 213 921-4727 +pager: +1 213 955-4363 +roomNumber: 8309 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miguel Lamoureux +sn: Lamoureux +description: This is Miguel Lamoureux's description +facsimileTelephoneNumber: +1 510 919-9457 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 207-1033 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: LamoureM +givenName: Miguel +mail: LamoureM@a71c06be904c4f5a89c92e6a220b8c20.bitwarden.com +carLicense: GR8G5N +departmentNumber: 4578 +employeeType: Employee +homePhone: +1 510 176-1640 +initials: M. L. +mobile: +1 510 944-2628 +pager: +1 510 524-6676 +roomNumber: 9165 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Germaine Lisak,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Germaine Lisak +sn: Lisak +description: This is Germaine Lisak's description +facsimileTelephoneNumber: +1 408 850-9650 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 815-7873 +title: Supreme Product Testing Figurehead +userPassword: Password1 +uid: LisakG +givenName: Germaine +mail: LisakG@83ae92312ed14d6f8e9439baa2583cab.bitwarden.com +carLicense: XJO2DP +departmentNumber: 1958 +employeeType: Normal +homePhone: +1 408 759-1857 +initials: G. L. +mobile: +1 408 523-1017 +pager: +1 408 103-5503 +roomNumber: 8459 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Deni Chea,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deni Chea +sn: Chea +description: This is Deni Chea's description +facsimileTelephoneNumber: +1 818 666-3090 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 486-2464 +title: Chief Management Assistant +userPassword: Password1 +uid: CheaD +givenName: Deni +mail: CheaD@8743427566014d61952feea02c990670.bitwarden.com +carLicense: V1VCIM +departmentNumber: 3845 +employeeType: Employee +homePhone: +1 818 304-4119 +initials: D. C. +mobile: +1 818 174-2083 +pager: +1 818 536-5616 +roomNumber: 9085 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: GuoQiang Ortiz +sn: Ortiz +description: This is GuoQiang Ortiz's description +facsimileTelephoneNumber: +1 408 416-4091 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 694-7337 +title: Chief Product Testing Admin +userPassword: Password1 +uid: OrtizG +givenName: GuoQiang +mail: OrtizG@e0abe3f47abe4097a988502110393014.bitwarden.com +carLicense: W97NP8 +departmentNumber: 7230 +employeeType: Contract +homePhone: +1 408 555-3150 +initials: G. O. +mobile: +1 408 998-7222 +pager: +1 408 161-7323 +roomNumber: 8451 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardavan Dittburner +sn: Dittburner +description: This is Ardavan Dittburner's description +facsimileTelephoneNumber: +1 213 547-2802 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 900-8010 +title: Associate Administrative Visionary +userPassword: Password1 +uid: DittburA +givenName: Ardavan +mail: DittburA@8ae5753568884557b826bbbe6815b824.bitwarden.com +carLicense: QM5QIA +departmentNumber: 3949 +employeeType: Normal +homePhone: +1 213 818-9577 +initials: A. D. +mobile: +1 213 203-1899 +pager: +1 213 207-5423 +roomNumber: 9565 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jooran Hilton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jooran Hilton +sn: Hilton +description: This is Jooran Hilton's description +facsimileTelephoneNumber: +1 213 961-4584 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 541-4208 +title: Master Peons Janitor +userPassword: Password1 +uid: HiltonJ +givenName: Jooran +mail: HiltonJ@22805ca86db349db82f4caa9262213d7.bitwarden.com +carLicense: E1TQ0B +departmentNumber: 7990 +employeeType: Contract +homePhone: +1 213 136-5943 +initials: J. H. +mobile: +1 213 258-2476 +pager: +1 213 897-9012 +roomNumber: 8516 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pramod Piltz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pramod Piltz +sn: Piltz +description: This is Pramod Piltz's description +facsimileTelephoneNumber: +1 408 993-4783 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 944-6608 +title: Associate Administrative Visionary +userPassword: Password1 +uid: PiltzP +givenName: Pramod +mail: PiltzP@ffa8cd3aeeee4cfeb19b5276a68d00ba.bitwarden.com +carLicense: WOG6GS +departmentNumber: 1025 +employeeType: Normal +homePhone: +1 408 216-7447 +initials: P. P. +mobile: +1 408 616-5503 +pager: +1 408 135-8385 +roomNumber: 9075 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Reyaud Kurio,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reyaud Kurio +sn: Kurio +description: This is Reyaud Kurio's description +facsimileTelephoneNumber: +1 818 442-1375 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 210-8263 +title: Supreme Management Vice President +userPassword: Password1 +uid: KurioR +givenName: Reyaud +mail: KurioR@c7060db9738740d2956d55565559b7e1.bitwarden.com +carLicense: JKFUEG +departmentNumber: 9318 +employeeType: Normal +homePhone: +1 818 995-2581 +initials: R. K. +mobile: +1 818 380-6100 +pager: +1 818 724-7230 +roomNumber: 9954 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wiebren Bessey +sn: Bessey +description: This is Wiebren Bessey's description +facsimileTelephoneNumber: +1 818 998-5100 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 447-6075 +title: Master Product Testing Warrior +userPassword: Password1 +uid: BesseyW +givenName: Wiebren +mail: BesseyW@a97141a360d8445daa6a6439dfbbd290.bitwarden.com +carLicense: P8BIR8 +departmentNumber: 3953 +employeeType: Normal +homePhone: +1 818 455-1815 +initials: W. B. +mobile: +1 818 607-7158 +pager: +1 818 293-6772 +roomNumber: 9449 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shivdarsan DiLoreto +sn: DiLoreto +description: This is Shivdarsan DiLoreto's description +facsimileTelephoneNumber: +1 804 313-7658 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 288-4340 +title: Junior Management Architect +userPassword: Password1 +uid: DiLoretS +givenName: Shivdarsan +mail: DiLoretS@553a74428bb643038d327a6c4003715b.bitwarden.com +carLicense: D2EDAM +departmentNumber: 1039 +employeeType: Employee +homePhone: +1 804 560-1499 +initials: S. D. +mobile: +1 804 110-2711 +pager: +1 804 465-1859 +roomNumber: 9297 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Radio DiNinno,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Radio DiNinno +sn: DiNinno +description: This is Radio DiNinno's description +facsimileTelephoneNumber: +1 818 326-4819 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 818 723-5526 +title: Master Janitorial Warrior +userPassword: Password1 +uid: DiNinnoR +givenName: Radio +mail: DiNinnoR@954e6390e22749f58bb26b8cbf617fd4.bitwarden.com +carLicense: VHQK3I +departmentNumber: 2594 +employeeType: Normal +homePhone: +1 818 234-7484 +initials: R. D. +mobile: +1 818 749-1344 +pager: +1 818 993-1609 +roomNumber: 9590 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChyeLian Gaspard +sn: Gaspard +description: This is ChyeLian Gaspard's description +facsimileTelephoneNumber: +1 818 760-3324 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 372-4251 +title: Chief Product Development Mascot +userPassword: Password1 +uid: GaspardC +givenName: ChyeLian +mail: GaspardC@6b282dc55aa94d768c03263feaea873d.bitwarden.com +carLicense: H1HIWY +departmentNumber: 5065 +employeeType: Normal +homePhone: +1 818 486-7207 +initials: C. G. +mobile: +1 818 130-2025 +pager: +1 818 741-6420 +roomNumber: 8851 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cynde Tudo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cynde Tudo +sn: Tudo +description: This is Cynde Tudo's description +facsimileTelephoneNumber: +1 415 568-2698 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 332-9530 +title: Supreme Peons Pinhead +userPassword: Password1 +uid: TudoC +givenName: Cynde +mail: TudoC@34b8819121134165801d80019693f357.bitwarden.com +carLicense: 5MFO6F +departmentNumber: 3290 +employeeType: Employee +homePhone: +1 415 518-6375 +initials: C. T. +mobile: +1 415 751-5522 +pager: +1 415 752-4121 +roomNumber: 9830 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Genga Huor,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genga Huor +sn: Huor +description: This is Genga Huor's description +facsimileTelephoneNumber: +1 206 907-4843 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 206 425-1281 +title: Junior Administrative Admin +userPassword: Password1 +uid: HuorG +givenName: Genga +mail: HuorG@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com +carLicense: JV5JKC +departmentNumber: 8147 +employeeType: Employee +homePhone: +1 206 845-5018 +initials: G. H. +mobile: +1 206 935-6691 +pager: +1 206 738-2902 +roomNumber: 9160 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stepha Prodmfg +sn: Prodmfg +description: This is Stepha Prodmfg's description +facsimileTelephoneNumber: +1 510 845-2173 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 724-4384 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: ProdmfgS +givenName: Stepha +mail: ProdmfgS@8342e98dcb144504925e856ae40dc976.bitwarden.com +carLicense: OPH3LO +departmentNumber: 6640 +employeeType: Contract +homePhone: +1 510 360-8932 +initials: S. P. +mobile: +1 510 564-8814 +pager: +1 510 993-2996 +roomNumber: 9964 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Leandra Steffy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leandra Steffy +sn: Steffy +description: This is Leandra Steffy's description +facsimileTelephoneNumber: +1 415 631-9289 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 592-6527 +title: Associate Administrative Technician +userPassword: Password1 +uid: SteffyL +givenName: Leandra +mail: SteffyL@fde818a61bf74c84a96e4a6b3a93254c.bitwarden.com +carLicense: O8HQGD +departmentNumber: 2662 +employeeType: Normal +homePhone: +1 415 692-7398 +initials: L. S. +mobile: +1 415 732-6401 +pager: +1 415 160-9354 +roomNumber: 9917 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nikoletta Milakovic +sn: Milakovic +description: This is Nikoletta Milakovic's description +facsimileTelephoneNumber: +1 804 366-1706 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 581-9279 +title: Chief Product Development Technician +userPassword: Password1 +uid: MilakovN +givenName: Nikoletta +mail: MilakovN@173a9f8ca9674f02b63ed62bf1ee045c.bitwarden.com +carLicense: L08GFH +departmentNumber: 8612 +employeeType: Contract +homePhone: +1 804 203-3074 +initials: N. M. +mobile: +1 804 627-7921 +pager: +1 804 169-3856 +roomNumber: 9123 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opaline Nonkes +sn: Nonkes +description: This is Opaline Nonkes's description +facsimileTelephoneNumber: +1 804 234-5853 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 591-1906 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: NonkesO +givenName: Opaline +mail: NonkesO@3ae9bbbfe6944aab8c1da1dd2e25c83e.bitwarden.com +carLicense: ED1RNC +departmentNumber: 2298 +employeeType: Contract +homePhone: +1 804 963-6919 +initials: O. N. +mobile: +1 804 107-2703 +pager: +1 804 624-4583 +roomNumber: 8833 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Trisha Walpole,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trisha Walpole +sn: Walpole +description: This is Trisha Walpole's description +facsimileTelephoneNumber: +1 213 755-3188 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 441-2038 +title: Junior Peons Figurehead +userPassword: Password1 +uid: WalpoleT +givenName: Trisha +mail: WalpoleT@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com +carLicense: TFE9MK +departmentNumber: 8490 +employeeType: Contract +homePhone: +1 213 889-7560 +initials: T. W. +mobile: +1 213 691-5020 +pager: +1 213 234-8763 +roomNumber: 9161 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Valli Buzzell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valli Buzzell +sn: Buzzell +description: This is Valli Buzzell's description +facsimileTelephoneNumber: +1 408 972-8231 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 765-1175 +title: Associate Administrative Engineer +userPassword: Password1 +uid: BuzzellV +givenName: Valli +mail: BuzzellV@b847cd495a564fd88ad378e323d86f9e.bitwarden.com +carLicense: DR4FE7 +departmentNumber: 2424 +employeeType: Employee +homePhone: +1 408 745-7276 +initials: V. B. +mobile: +1 408 475-3710 +pager: +1 408 580-5066 +roomNumber: 9718 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gita Manuszak,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gita Manuszak +sn: Manuszak +description: This is Gita Manuszak's description +facsimileTelephoneNumber: +1 213 472-6670 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 679-2377 +title: Master Management Evangelist +userPassword: Password1 +uid: ManuszaG +givenName: Gita +mail: ManuszaG@f9d71b3d7756421faee1ebdbe5841d08.bitwarden.com +carLicense: C87AYE +departmentNumber: 5707 +employeeType: Contract +homePhone: +1 213 127-4057 +initials: G. M. +mobile: +1 213 796-9516 +pager: +1 213 238-3265 +roomNumber: 8995 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sadru Suda,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadru Suda +sn: Suda +description: This is Sadru Suda's description +facsimileTelephoneNumber: +1 510 400-5159 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 252-2926 +title: Associate Human Resources Warrior +userPassword: Password1 +uid: SudaS +givenName: Sadru +mail: SudaS@cc31cd53eb2f42d5bed8552ceaa8d352.bitwarden.com +carLicense: CIU75D +departmentNumber: 7774 +employeeType: Contract +homePhone: +1 510 189-1923 +initials: S. S. +mobile: +1 510 847-3640 +pager: +1 510 243-9509 +roomNumber: 8768 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Susana Mattes,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susana Mattes +sn: Mattes +description: This is Susana Mattes's description +facsimileTelephoneNumber: +1 804 493-3313 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 466-2027 +title: Chief Administrative Stooge +userPassword: Password1 +uid: MattesS +givenName: Susana +mail: MattesS@143f4decc1ea4d51bb83bcbd0e097784.bitwarden.com +carLicense: CPPNVA +departmentNumber: 4194 +employeeType: Normal +homePhone: +1 804 748-9745 +initials: S. M. +mobile: +1 804 563-2781 +pager: +1 804 602-9570 +roomNumber: 8270 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Diannne Geuder,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diannne Geuder +sn: Geuder +description: This is Diannne Geuder's description +facsimileTelephoneNumber: +1 206 419-7797 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 204-6002 +title: Supreme Peons Technician +userPassword: Password1 +uid: GeuderD +givenName: Diannne +mail: GeuderD@b22ff28e3c9d44f9a2be9fd304adde71.bitwarden.com +carLicense: TTU7U2 +departmentNumber: 5383 +employeeType: Contract +homePhone: +1 206 593-7894 +initials: D. G. +mobile: +1 206 120-8958 +pager: +1 206 435-5458 +roomNumber: 9436 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorilyn Palermo +sn: Palermo +description: This is Lorilyn Palermo's description +facsimileTelephoneNumber: +1 408 736-1411 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 212-7358 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: PalermoL +givenName: Lorilyn +mail: PalermoL@79732267294c4ff69a75a9c93c8c2c5a.bitwarden.com +carLicense: SEOX58 +departmentNumber: 2601 +employeeType: Contract +homePhone: +1 408 859-7092 +initials: L. P. +mobile: +1 408 519-5843 +pager: +1 408 639-8787 +roomNumber: 9064 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ned Faletti,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ned Faletti +sn: Faletti +description: This is Ned Faletti's description +facsimileTelephoneNumber: +1 213 563-9477 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 346-9144 +title: Supreme Management Writer +userPassword: Password1 +uid: FalettiN +givenName: Ned +mail: FalettiN@4f1a95a3a24b45ab865ea73c936d9882.bitwarden.com +carLicense: KYUIPE +departmentNumber: 7654 +employeeType: Normal +homePhone: +1 213 536-6449 +initials: N. F. +mobile: +1 213 455-6711 +pager: +1 213 270-1851 +roomNumber: 8000 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gwenni Felske,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwenni Felske +sn: Felske +description: This is Gwenni Felske's description +facsimileTelephoneNumber: +1 818 420-3471 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 104-8141 +title: Chief Peons Grunt +userPassword: Password1 +uid: FelskeG +givenName: Gwenni +mail: FelskeG@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com +carLicense: SOGE6J +departmentNumber: 4689 +employeeType: Contract +homePhone: +1 818 459-9828 +initials: G. F. +mobile: +1 818 703-4782 +pager: +1 818 114-9493 +roomNumber: 9279 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Coretta Mayne,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coretta Mayne +sn: Mayne +description: This is Coretta Mayne's description +facsimileTelephoneNumber: +1 415 998-7324 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 538-7890 +title: Junior Management Admin +userPassword: Password1 +uid: MayneC +givenName: Coretta +mail: MayneC@d53702797f754da285804836fd6dc130.bitwarden.com +carLicense: MWW4NO +departmentNumber: 4556 +employeeType: Contract +homePhone: +1 415 146-8168 +initials: C. M. +mobile: +1 415 581-6876 +pager: +1 415 811-5833 +roomNumber: 8581 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurice INFOMANAGEMENT +sn: INFOMANAGEMENT +description: This is Maurice INFOMANAGEMENT's description +facsimileTelephoneNumber: +1 818 998-3937 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 826-6693 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: INFOMANM +givenName: Maurice +mail: INFOMANM@0755ab53fc1e4e03afc45f28e9749da3.bitwarden.com +carLicense: 8H5OEO +departmentNumber: 5410 +employeeType: Normal +homePhone: +1 818 485-8793 +initials: M. I. +mobile: +1 818 327-5001 +pager: +1 818 220-2090 +roomNumber: 9459 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cissiee Hampton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cissiee Hampton +sn: Hampton +description: This is Cissiee Hampton's description +facsimileTelephoneNumber: +1 408 875-6076 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 772-1912 +title: Chief Administrative Dictator +userPassword: Password1 +uid: HamptonC +givenName: Cissiee +mail: HamptonC@974ece3e63104cd593ac8a6d9de7a620.bitwarden.com +carLicense: QD5OFF +departmentNumber: 3856 +employeeType: Normal +homePhone: +1 408 479-1078 +initials: C. H. +mobile: +1 408 140-4214 +pager: +1 408 123-9848 +roomNumber: 9804 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kalina Fangio,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalina Fangio +sn: Fangio +description: This is Kalina Fangio's description +facsimileTelephoneNumber: +1 818 197-3138 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 679-8062 +title: Associate Management Dictator +userPassword: Password1 +uid: FangioK +givenName: Kalina +mail: FangioK@937ccb2001694e2680b8217ebfc1227e.bitwarden.com +carLicense: QOHPMO +departmentNumber: 7983 +employeeType: Normal +homePhone: +1 818 776-1184 +initials: K. F. +mobile: +1 818 958-8186 +pager: +1 818 823-4577 +roomNumber: 9854 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Petter Sarna,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petter Sarna +sn: Sarna +description: This is Petter Sarna's description +facsimileTelephoneNumber: +1 510 646-4668 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 478-5769 +title: Chief Management Vice President +userPassword: Password1 +uid: SarnaP +givenName: Petter +mail: SarnaP@a08a36a3e7a643d9a21fd4a80adf64e7.bitwarden.com +carLicense: QGX0RR +departmentNumber: 3730 +employeeType: Normal +homePhone: +1 510 370-4226 +initials: P. S. +mobile: +1 510 307-9540 +pager: +1 510 557-1325 +roomNumber: 8240 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nando Shurtleff,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nando Shurtleff +sn: Shurtleff +description: This is Nando Shurtleff's description +facsimileTelephoneNumber: +1 510 222-1979 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 788-8458 +title: Junior Management Artist +userPassword: Password1 +uid: ShurtleN +givenName: Nando +mail: ShurtleN@e2ee1ddb67844a4eb1bfd125d596f6dc.bitwarden.com +carLicense: 4MN7E5 +departmentNumber: 4445 +employeeType: Contract +homePhone: +1 510 505-7477 +initials: N. S. +mobile: +1 510 820-3298 +pager: +1 510 755-4134 +roomNumber: 9820 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Valene St,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valene St +sn: St +description: This is Valene St's description +facsimileTelephoneNumber: +1 818 741-9801 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 818 376-8215 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: StV +givenName: Valene +mail: StV@e62b6bada3794f6abc6e683f712748b4.bitwarden.com +carLicense: K75DPM +departmentNumber: 2633 +employeeType: Contract +homePhone: +1 818 989-2143 +initials: V. S. +mobile: +1 818 229-7485 +pager: +1 818 656-4254 +roomNumber: 8014 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elysia Swiat,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elysia Swiat +sn: Swiat +description: This is Elysia Swiat's description +facsimileTelephoneNumber: +1 804 387-8267 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 907-6903 +title: Junior Administrative Grunt +userPassword: Password1 +uid: SwiatE +givenName: Elysia +mail: SwiatE@3a43957f1ee74e77816af0da1f628f5f.bitwarden.com +carLicense: 9T8L6B +departmentNumber: 1148 +employeeType: Contract +homePhone: +1 804 769-4932 +initials: E. S. +mobile: +1 804 178-2242 +pager: +1 804 944-8432 +roomNumber: 8651 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yonik Valerien,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yonik Valerien +sn: Valerien +description: This is Yonik Valerien's description +facsimileTelephoneNumber: +1 818 187-2974 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 818 168-3832 +title: Master Administrative Pinhead +userPassword: Password1 +uid: ValerieY +givenName: Yonik +mail: ValerieY@1def8313ad68443a9c5bea174f8d550c.bitwarden.com +carLicense: 36X6ED +departmentNumber: 9479 +employeeType: Contract +homePhone: +1 818 272-5459 +initials: Y. V. +mobile: +1 818 210-2482 +pager: +1 818 509-6358 +roomNumber: 8481 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jania Clouthier,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jania Clouthier +sn: Clouthier +description: This is Jania Clouthier's description +facsimileTelephoneNumber: +1 818 830-3795 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 643-2561 +title: Supreme Management Technician +userPassword: Password1 +uid: ClouthiJ +givenName: Jania +mail: ClouthiJ@570987c9633d4a6fa09773cb5695f8f5.bitwarden.com +carLicense: U66CA5 +departmentNumber: 2054 +employeeType: Contract +homePhone: +1 818 641-1485 +initials: J. C. +mobile: +1 818 594-8710 +pager: +1 818 475-7213 +roomNumber: 9022 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lennart Whang,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lennart Whang +sn: Whang +description: This is Lennart Whang's description +facsimileTelephoneNumber: +1 206 925-1493 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 550-6833 +title: Chief Management Pinhead +userPassword: Password1 +uid: WhangL +givenName: Lennart +mail: WhangL@27b3ace1dd6948c9b5b4ab8ce5109020.bitwarden.com +carLicense: QA0SSF +departmentNumber: 6440 +employeeType: Normal +homePhone: +1 206 942-4737 +initials: L. W. +mobile: +1 206 852-3098 +pager: +1 206 872-5001 +roomNumber: 9044 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toshinari Shiley +sn: Shiley +description: This is Toshinari Shiley's description +facsimileTelephoneNumber: +1 510 184-9734 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 907-8883 +title: Master Product Testing Evangelist +userPassword: Password1 +uid: ShileyT +givenName: Toshinari +mail: ShileyT@df4c81c501de459185b071b55cec7800.bitwarden.com +carLicense: KTRR1C +departmentNumber: 4767 +employeeType: Employee +homePhone: +1 510 153-5594 +initials: T. S. +mobile: +1 510 667-7590 +pager: +1 510 544-6240 +roomNumber: 9728 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hala Wallis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hala Wallis +sn: Wallis +description: This is Hala Wallis's description +facsimileTelephoneNumber: +1 510 357-5721 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 510 135-5432 +title: Associate Payroll Engineer +userPassword: Password1 +uid: WallisH +givenName: Hala +mail: WallisH@d1b4a8f4bfcd4e2c9e8835bd8152821a.bitwarden.com +carLicense: S3A2G9 +departmentNumber: 9073 +employeeType: Contract +homePhone: +1 510 140-3693 +initials: H. W. +mobile: +1 510 830-1546 +pager: +1 510 679-1674 +roomNumber: 9127 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Levy Younger,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Levy Younger +sn: Younger +description: This is Levy Younger's description +facsimileTelephoneNumber: +1 510 123-9833 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 245-5684 +title: Junior Product Testing Evangelist +userPassword: Password1 +uid: YoungerL +givenName: Levy +mail: YoungerL@bd95fb0b94e54dbeaa76998f864c682b.bitwarden.com +carLicense: ARPCY7 +departmentNumber: 7030 +employeeType: Employee +homePhone: +1 510 967-5322 +initials: L. Y. +mobile: +1 510 144-9763 +pager: +1 510 271-3653 +roomNumber: 8495 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rahel Strober,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rahel Strober +sn: Strober +description: This is Rahel Strober's description +facsimileTelephoneNumber: +1 213 652-7353 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 998-3286 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: StroberR +givenName: Rahel +mail: StroberR@b10541570bad45a48e9ecd8a1385a852.bitwarden.com +carLicense: 8UYN7J +departmentNumber: 8401 +employeeType: Normal +homePhone: +1 213 436-2651 +initials: R. S. +mobile: +1 213 831-9837 +pager: +1 213 212-2898 +roomNumber: 9867 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Casi Swick,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Casi Swick +sn: Swick +description: This is Casi Swick's description +facsimileTelephoneNumber: +1 415 367-8775 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 292-5623 +title: Master Peons Admin +userPassword: Password1 +uid: SwickC +givenName: Casi +mail: SwickC@96ba8081521e4fe79c79c0f0b9ef5643.bitwarden.com +carLicense: SKG0QS +departmentNumber: 4615 +employeeType: Contract +homePhone: +1 415 563-4416 +initials: C. S. +mobile: +1 415 958-9412 +pager: +1 415 990-4381 +roomNumber: 9639 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dimitrios Coop,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dimitrios Coop +sn: Coop +description: This is Dimitrios Coop's description +facsimileTelephoneNumber: +1 206 505-6172 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 753-6997 +title: Master Payroll Punk +userPassword: Password1 +uid: CoopD +givenName: Dimitrios +mail: CoopD@66a31a3d20a943048dbdda8f5b8317cc.bitwarden.com +carLicense: QQ2C1Y +departmentNumber: 8709 +employeeType: Contract +homePhone: +1 206 852-8006 +initials: D. C. +mobile: +1 206 799-7415 +pager: +1 206 268-9902 +roomNumber: 8449 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elga Ashton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elga Ashton +sn: Ashton +description: This is Elga Ashton's description +facsimileTelephoneNumber: +1 415 191-8419 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 532-3199 +title: Chief Payroll Stooge +userPassword: Password1 +uid: AshtonE +givenName: Elga +mail: AshtonE@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com +carLicense: AABD14 +departmentNumber: 3650 +employeeType: Normal +homePhone: +1 415 194-8233 +initials: E. A. +mobile: +1 415 268-1428 +pager: +1 415 331-9399 +roomNumber: 8990 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Harley Streatfield,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harley Streatfield +sn: Streatfield +description: This is Harley Streatfield's description +facsimileTelephoneNumber: +1 415 777-1096 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 891-4565 +title: Associate Human Resources Assistant +userPassword: Password1 +uid: StreatfH +givenName: Harley +mail: StreatfH@c04c96e3607342d4a6bf3509ce60159a.bitwarden.com +carLicense: G2URVE +departmentNumber: 2823 +employeeType: Contract +homePhone: +1 415 760-8055 +initials: H. S. +mobile: +1 415 423-2320 +pager: +1 415 410-3742 +roomNumber: 8086 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Khamdy Quinn,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khamdy Quinn +sn: Quinn +description: This is Khamdy Quinn's description +facsimileTelephoneNumber: +1 415 281-3186 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 545-8602 +title: Master Payroll Developer +userPassword: Password1 +uid: QuinnK +givenName: Khamdy +mail: QuinnK@2c1574455ead4b0fb0046ceddcdf6a0b.bitwarden.com +carLicense: VF9W5D +departmentNumber: 3549 +employeeType: Normal +homePhone: +1 415 830-8263 +initials: K. Q. +mobile: +1 415 253-2741 +pager: +1 415 814-9326 +roomNumber: 8833 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Devan Kashima,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devan Kashima +sn: Kashima +description: This is Devan Kashima's description +facsimileTelephoneNumber: +1 415 186-7926 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 287-3253 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: KashimaD +givenName: Devan +mail: KashimaD@94871f5c5c9f4476ab9f2c6fcd362b35.bitwarden.com +carLicense: BUYWP9 +departmentNumber: 8237 +employeeType: Contract +homePhone: +1 415 208-8098 +initials: D. K. +mobile: +1 415 574-7261 +pager: +1 415 950-1570 +roomNumber: 8041 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Regine Frizado,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regine Frizado +sn: Frizado +description: This is Regine Frizado's description +facsimileTelephoneNumber: +1 206 761-1905 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 617-1369 +title: Associate Payroll Czar +userPassword: Password1 +uid: FrizadoR +givenName: Regine +mail: FrizadoR@60ec121ba9714e3489eb920608ad92c6.bitwarden.com +carLicense: U4UHVC +departmentNumber: 5458 +employeeType: Contract +homePhone: +1 206 692-7392 +initials: R. F. +mobile: +1 206 509-2765 +pager: +1 206 660-7990 +roomNumber: 8403 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roger Bondurant,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roger Bondurant +sn: Bondurant +description: This is Roger Bondurant's description +facsimileTelephoneNumber: +1 510 714-2697 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 901-7462 +title: Junior Peons President +userPassword: Password1 +uid: BonduraR +givenName: Roger +mail: BonduraR@91bb90ade3ed45329bdbe468ae424f00.bitwarden.com +carLicense: 6IRJB4 +departmentNumber: 3549 +employeeType: Normal +homePhone: +1 510 147-6330 +initials: R. B. +mobile: +1 510 940-6365 +pager: +1 510 156-2239 +roomNumber: 9884 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Taffy Solkoff,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Taffy Solkoff +sn: Solkoff +description: This is Taffy Solkoff's description +facsimileTelephoneNumber: +1 818 742-6809 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 818 914-2975 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: SolkoffT +givenName: Taffy +mail: SolkoffT@5059d6584df44d409840773250e30d06.bitwarden.com +carLicense: 8MEG6D +departmentNumber: 1751 +employeeType: Contract +homePhone: +1 818 543-6467 +initials: T. S. +mobile: +1 818 612-1535 +pager: +1 818 142-5995 +roomNumber: 9564 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melford Leonhardt +sn: Leonhardt +description: This is Melford Leonhardt's description +facsimileTelephoneNumber: +1 213 902-6032 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 848-2545 +title: Master Product Testing Architect +userPassword: Password1 +uid: LeonharM +givenName: Melford +mail: LeonharM@7012522876084229bee482efdda1e27f.bitwarden.com +carLicense: 86WDDQ +departmentNumber: 3261 +employeeType: Employee +homePhone: +1 213 615-3293 +initials: M. L. +mobile: +1 213 602-1319 +pager: +1 213 659-4562 +roomNumber: 9231 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marscha Cunningham +sn: Cunningham +description: This is Marscha Cunningham's description +facsimileTelephoneNumber: +1 408 479-6296 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 997-8308 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: CunningM +givenName: Marscha +mail: CunningM@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com +carLicense: T5S0M4 +departmentNumber: 3875 +employeeType: Employee +homePhone: +1 408 695-9251 +initials: M. C. +mobile: +1 408 675-6690 +pager: +1 408 900-2739 +roomNumber: 9003 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mame Muradia,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mame Muradia +sn: Muradia +description: This is Mame Muradia's description +facsimileTelephoneNumber: +1 206 564-8176 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 346-8168 +title: Master Human Resources Visionary +userPassword: Password1 +uid: MuradiaM +givenName: Mame +mail: MuradiaM@462635d48ea740ba9a66cf325662e6a5.bitwarden.com +carLicense: 6Y8IA2 +departmentNumber: 5459 +employeeType: Employee +homePhone: +1 206 135-5749 +initials: M. M. +mobile: +1 206 157-9304 +pager: +1 206 786-5820 +roomNumber: 9790 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hoang Krawchuk +sn: Krawchuk +description: This is Hoang Krawchuk's description +facsimileTelephoneNumber: +1 408 882-5159 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 623-2589 +title: Master Product Testing Admin +userPassword: Password1 +uid: KrawchuH +givenName: Hoang +mail: KrawchuH@91d86ca600e34a88b5fa8a48c064942b.bitwarden.com +carLicense: 5N4BDF +departmentNumber: 8626 +employeeType: Contract +homePhone: +1 408 877-8297 +initials: H. K. +mobile: +1 408 603-8649 +pager: +1 408 152-3705 +roomNumber: 8556 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shirlee Mackey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirlee Mackey +sn: Mackey +description: This is Shirlee Mackey's description +facsimileTelephoneNumber: +1 818 132-4944 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 256-3536 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: MackeyS +givenName: Shirlee +mail: MackeyS@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com +carLicense: 409HC0 +departmentNumber: 8409 +employeeType: Normal +homePhone: +1 818 842-7370 +initials: S. M. +mobile: +1 818 219-8860 +pager: +1 818 574-7135 +roomNumber: 9441 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Terrye Redish,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terrye Redish +sn: Redish +description: This is Terrye Redish's description +facsimileTelephoneNumber: +1 818 269-9028 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 761-5738 +title: Associate Product Development Fellow +userPassword: Password1 +uid: RedishT +givenName: Terrye +mail: RedishT@8f2591e5f396463da221dbcfdfd8f21f.bitwarden.com +carLicense: MQF322 +departmentNumber: 8764 +employeeType: Normal +homePhone: +1 818 153-2067 +initials: T. R. +mobile: +1 818 531-1333 +pager: +1 818 188-3281 +roomNumber: 9511 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Penelope Rey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Penelope Rey +sn: Rey +description: This is Penelope Rey's description +facsimileTelephoneNumber: +1 206 669-2360 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 972-1957 +title: Master Human Resources Writer +userPassword: Password1 +uid: ReyP +givenName: Penelope +mail: ReyP@6ba20748a72b4cee894c912c97374a56.bitwarden.com +carLicense: EB1IMD +departmentNumber: 8541 +employeeType: Employee +homePhone: +1 206 905-3766 +initials: P. R. +mobile: +1 206 603-6782 +pager: +1 206 158-9396 +roomNumber: 8837 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anthony Meyer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anthony Meyer +sn: Meyer +description: This is Anthony Meyer's description +facsimileTelephoneNumber: +1 818 166-2410 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 818 267-3085 +title: Associate Human Resources Manager +userPassword: Password1 +uid: MeyerA +givenName: Anthony +mail: MeyerA@0709c1c68975470c9ca0f7b0b26d3479.bitwarden.com +carLicense: 9J8YY8 +departmentNumber: 7124 +employeeType: Contract +homePhone: +1 818 584-9921 +initials: A. M. +mobile: +1 818 642-5261 +pager: +1 818 596-6732 +roomNumber: 9176 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dre McNerney,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dre McNerney +sn: McNerney +description: This is Dre McNerney's description +facsimileTelephoneNumber: +1 206 972-2977 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 206 252-1604 +title: Master Payroll Technician +userPassword: Password1 +uid: McNerneD +givenName: Dre +mail: McNerneD@5f494e5d5c2b48bd9e0d3f42e62d76ee.bitwarden.com +carLicense: YFXNTN +departmentNumber: 1254 +employeeType: Normal +homePhone: +1 206 220-2497 +initials: D. M. +mobile: +1 206 320-6201 +pager: +1 206 848-7780 +roomNumber: 8333 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cantrell Freeburn +sn: Freeburn +description: This is Cantrell Freeburn's description +facsimileTelephoneNumber: +1 415 455-6389 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 469-2851 +title: Chief Product Development Director +userPassword: Password1 +uid: FreeburC +givenName: Cantrell +mail: FreeburC@713ec84902e3407ea7c47d43e09273a9.bitwarden.com +carLicense: 5YTJTQ +departmentNumber: 1561 +employeeType: Contract +homePhone: +1 415 890-5453 +initials: C. F. +mobile: +1 415 829-7267 +pager: +1 415 805-7147 +roomNumber: 9588 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brooks Drescher,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brooks Drescher +sn: Drescher +description: This is Brooks Drescher's description +facsimileTelephoneNumber: +1 804 318-1053 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 870-8660 +title: Junior Payroll Consultant +userPassword: Password1 +uid: DrescheB +givenName: Brooks +mail: DrescheB@3bd17db97361499690e9a4a1c0655d19.bitwarden.com +carLicense: FHDI9R +departmentNumber: 2284 +employeeType: Contract +homePhone: +1 804 499-2706 +initials: B. D. +mobile: +1 804 626-7014 +pager: +1 804 990-8941 +roomNumber: 8110 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Brandea Dziemian,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandea Dziemian +sn: Dziemian +description: This is Brandea Dziemian's description +facsimileTelephoneNumber: +1 804 588-8041 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 804 635-4045 +title: Junior Administrative Stooge +userPassword: Password1 +uid: DziemiaB +givenName: Brandea +mail: DziemiaB@f615417804714e2b90444d84fdf4c3ba.bitwarden.com +carLicense: D26MLR +departmentNumber: 5037 +employeeType: Normal +homePhone: +1 804 775-6699 +initials: B. D. +mobile: +1 804 117-8771 +pager: +1 804 874-6432 +roomNumber: 9302 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Candis Richer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candis Richer +sn: Richer +description: This is Candis Richer's description +facsimileTelephoneNumber: +1 415 195-4966 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 169-9573 +title: Associate Peons Madonna +userPassword: Password1 +uid: RicherC +givenName: Candis +mail: RicherC@d5f78709240a4b7ea8f13e25bed4f996.bitwarden.com +carLicense: A9J3SN +departmentNumber: 8975 +employeeType: Normal +homePhone: +1 415 663-3252 +initials: C. R. +mobile: +1 415 622-7709 +pager: +1 415 863-1868 +roomNumber: 9396 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kandace Fitzgerald +sn: Fitzgerald +description: This is Kandace Fitzgerald's description +facsimileTelephoneNumber: +1 804 418-8279 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 377-5927 +title: Junior Peons Warrior +userPassword: Password1 +uid: FitzgerK +givenName: Kandace +mail: FitzgerK@679765b52d394d7ba89a59f3e71121ce.bitwarden.com +carLicense: FJI4TW +departmentNumber: 6509 +employeeType: Employee +homePhone: +1 804 439-8298 +initials: K. F. +mobile: +1 804 881-1098 +pager: +1 804 102-5127 +roomNumber: 8389 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huppert Hollenbeck +sn: Hollenbeck +description: This is Huppert Hollenbeck's description +facsimileTelephoneNumber: +1 510 268-5342 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 339-5155 +title: Junior Peons Admin +userPassword: Password1 +uid: HollenbH +givenName: Huppert +mail: HollenbH@27675f086a934218bc91689ddec78148.bitwarden.com +carLicense: 30WVVR +departmentNumber: 3102 +employeeType: Normal +homePhone: +1 510 929-2989 +initials: H. H. +mobile: +1 510 881-4387 +pager: +1 510 418-3318 +roomNumber: 8846 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ludovico Gleason,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ludovico Gleason +sn: Gleason +description: This is Ludovico Gleason's description +facsimileTelephoneNumber: +1 213 926-2493 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 213-4828 +title: Junior Management Pinhead +userPassword: Password1 +uid: GleasonL +givenName: Ludovico +mail: GleasonL@5b7e72dec03d45d4a2b2f3c9c9cd9206.bitwarden.com +carLicense: AMV1YA +departmentNumber: 2072 +employeeType: Contract +homePhone: +1 213 736-3055 +initials: L. G. +mobile: +1 213 394-7581 +pager: +1 213 699-6306 +roomNumber: 9009 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ninette McTiernan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninette McTiernan +sn: McTiernan +description: This is Ninette McTiernan's description +facsimileTelephoneNumber: +1 213 703-4073 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 543-7951 +title: Master Management Visionary +userPassword: Password1 +uid: McTiernN +givenName: Ninette +mail: McTiernN@7bdb7e04a26d459886f8fcaa0d3da8fb.bitwarden.com +carLicense: 9P1O5Y +departmentNumber: 4608 +employeeType: Contract +homePhone: +1 213 102-3271 +initials: N. M. +mobile: +1 213 653-8816 +pager: +1 213 771-6408 +roomNumber: 9429 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=TunLin Pinney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: TunLin Pinney +sn: Pinney +description: This is TunLin Pinney's description +facsimileTelephoneNumber: +1 206 635-6256 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 384-7441 +title: Associate Administrative Sales Rep +userPassword: Password1 +uid: PinneyT +givenName: TunLin +mail: PinneyT@75d6e7c6ef474c5e97f655497c047d1f.bitwarden.com +carLicense: P9QGEA +departmentNumber: 7500 +employeeType: Normal +homePhone: +1 206 483-8828 +initials: T. P. +mobile: +1 206 782-1132 +pager: +1 206 423-6018 +roomNumber: 9358 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joshi Cassese,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joshi Cassese +sn: Cassese +description: This is Joshi Cassese's description +facsimileTelephoneNumber: +1 818 733-7057 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 855-8280 +title: Supreme Janitorial Figurehead +userPassword: Password1 +uid: CasseseJ +givenName: Joshi +mail: CasseseJ@b2f73c176c104e9dad8630c2f13ec103.bitwarden.com +carLicense: U638C5 +departmentNumber: 2740 +employeeType: Normal +homePhone: +1 818 631-9693 +initials: J. C. +mobile: +1 818 316-2928 +pager: +1 818 194-4978 +roomNumber: 9237 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Miroslav StPierre,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miroslav StPierre +sn: StPierre +description: This is Miroslav StPierre's description +facsimileTelephoneNumber: +1 415 519-6733 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 688-8870 +title: Master Management Artist +userPassword: Password1 +uid: StPierrM +givenName: Miroslav +mail: StPierrM@ba8402a4d315465dbb751a651c142686.bitwarden.com +carLicense: NJMABY +departmentNumber: 5884 +employeeType: Normal +homePhone: +1 415 807-1886 +initials: M. S. +mobile: +1 415 886-7159 +pager: +1 415 847-7155 +roomNumber: 8637 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sammy Krater,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sammy Krater +sn: Krater +description: This is Sammy Krater's description +facsimileTelephoneNumber: +1 510 666-5124 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 321-2754 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: KraterS +givenName: Sammy +mail: KraterS@5b0366ebbad440278f42b372885b0850.bitwarden.com +carLicense: B2NJ72 +departmentNumber: 8239 +employeeType: Employee +homePhone: +1 510 826-8646 +initials: S. K. +mobile: +1 510 227-9930 +pager: +1 510 982-2328 +roomNumber: 9187 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sapphira McCain,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sapphira McCain +sn: McCain +description: This is Sapphira McCain's description +facsimileTelephoneNumber: +1 415 869-6493 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 200-4192 +title: Associate Peons Stooge +userPassword: Password1 +uid: McCainS +givenName: Sapphira +mail: McCainS@daad5c4834094fe8a7fb1d49865ce62a.bitwarden.com +carLicense: RDOMC3 +departmentNumber: 4082 +employeeType: Normal +homePhone: +1 415 211-5130 +initials: S. M. +mobile: +1 415 352-6714 +pager: +1 415 195-5017 +roomNumber: 9078 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pierrette Discover,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pierrette Discover +sn: Discover +description: This is Pierrette Discover's description +facsimileTelephoneNumber: +1 213 483-9357 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 976-8750 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: DiscoveP +givenName: Pierrette +mail: DiscoveP@57489e8bbf1e49e181fb589ad5609ed3.bitwarden.com +carLicense: EDLAYI +departmentNumber: 3960 +employeeType: Employee +homePhone: +1 213 606-1252 +initials: P. D. +mobile: +1 213 605-1105 +pager: +1 213 395-2734 +roomNumber: 8436 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ulf Willcox,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ulf Willcox +sn: Willcox +description: This is Ulf Willcox's description +facsimileTelephoneNumber: +1 213 129-8033 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 449-3116 +title: Junior Management Writer +userPassword: Password1 +uid: WillcoxU +givenName: Ulf +mail: WillcoxU@fe15495430cf4a14818cfd7560baaf99.bitwarden.com +carLicense: NEFG4W +departmentNumber: 1348 +employeeType: Contract +homePhone: +1 213 169-7452 +initials: U. W. +mobile: +1 213 896-2907 +pager: +1 213 988-1920 +roomNumber: 9843 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carmen Trame,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmen Trame +sn: Trame +description: This is Carmen Trame's description +facsimileTelephoneNumber: +1 415 709-5521 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 966-8129 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: TrameC +givenName: Carmen +mail: TrameC@fd22571d8af640feaa4dd26e71d415f8.bitwarden.com +carLicense: FENHAP +departmentNumber: 9450 +employeeType: Normal +homePhone: +1 415 327-8648 +initials: C. T. +mobile: +1 415 933-5921 +pager: +1 415 138-3327 +roomNumber: 8802 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cornelia Karim,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cornelia Karim +sn: Karim +description: This is Cornelia Karim's description +facsimileTelephoneNumber: +1 510 392-1950 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 285-2810 +title: Junior Peons Architect +userPassword: Password1 +uid: KarimC +givenName: Cornelia +mail: KarimC@d0d4dffbb82e4dbdbf12aa7aeb40f542.bitwarden.com +carLicense: 39MQQK +departmentNumber: 6534 +employeeType: Contract +homePhone: +1 510 485-1932 +initials: C. K. +mobile: +1 510 479-4945 +pager: +1 510 892-9160 +roomNumber: 9270 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronnie Krikorian +sn: Krikorian +description: This is Ronnie Krikorian's description +facsimileTelephoneNumber: +1 818 586-5997 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 809-3301 +title: Associate Product Development Madonna +userPassword: Password1 +uid: KrikoriR +givenName: Ronnie +mail: KrikoriR@bf9abf080c8e473981cdddb36932f679.bitwarden.com +carLicense: F3GLWK +departmentNumber: 7033 +employeeType: Employee +homePhone: +1 818 961-8907 +initials: R. K. +mobile: +1 818 265-8679 +pager: +1 818 133-5946 +roomNumber: 9913 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isabeau Jagodzinski +sn: Jagodzinski +description: This is Isabeau Jagodzinski's description +facsimileTelephoneNumber: +1 818 875-7668 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 169-9606 +title: Associate Human Resources Figurehead +userPassword: Password1 +uid: JagodziI +givenName: Isabeau +mail: JagodziI@406a5f63a2784737a47e7de7eb972559.bitwarden.com +carLicense: 4AKUNY +departmentNumber: 5320 +employeeType: Employee +homePhone: +1 818 673-3350 +initials: I. J. +mobile: +1 818 968-1350 +pager: +1 818 312-6905 +roomNumber: 9209 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Roobbie Stars,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roobbie Stars +sn: Stars +description: This is Roobbie Stars's description +facsimileTelephoneNumber: +1 213 639-5182 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 168-1585 +title: Junior Payroll Warrior +userPassword: Password1 +uid: StarsR +givenName: Roobbie +mail: StarsR@c754a8f7d7fa49ebaf2160183ff968df.bitwarden.com +carLicense: 676K14 +departmentNumber: 7237 +employeeType: Contract +homePhone: +1 213 945-3215 +initials: R. S. +mobile: +1 213 877-9325 +pager: +1 213 513-2200 +roomNumber: 8256 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sharee Wynes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharee Wynes +sn: Wynes +description: This is Sharee Wynes's description +facsimileTelephoneNumber: +1 818 738-2607 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 253-4218 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: WynesS +givenName: Sharee +mail: WynesS@1ca19b62d3954b7bb5f9d3604d3a6b84.bitwarden.com +carLicense: AFRVD8 +departmentNumber: 6557 +employeeType: Contract +homePhone: +1 818 126-9864 +initials: S. W. +mobile: +1 818 795-8384 +pager: +1 818 152-9773 +roomNumber: 8306 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaine Zauhar +sn: Zauhar +description: This is Shaine Zauhar's description +facsimileTelephoneNumber: +1 415 677-6213 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 415 968-1803 +title: Master Product Testing Czar +userPassword: Password1 +uid: ZauharS +givenName: Shaine +mail: ZauharS@e859fe816a744187a2626d82cb0ba406.bitwarden.com +carLicense: DSIMCJ +departmentNumber: 7876 +employeeType: Employee +homePhone: +1 415 791-9694 +initials: S. Z. +mobile: +1 415 478-4461 +pager: +1 415 529-8360 +roomNumber: 8986 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fred Hollenbeck +sn: Hollenbeck +description: This is Fred Hollenbeck's description +facsimileTelephoneNumber: +1 415 890-2476 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 710-1546 +title: Supreme Human Resources Director +userPassword: Password1 +uid: HollenbF +givenName: Fred +mail: HollenbF@584a3cc4e33b4aba88136456bbc15fd2.bitwarden.com +carLicense: 0IU0JY +departmentNumber: 5561 +employeeType: Employee +homePhone: +1 415 735-4038 +initials: F. H. +mobile: +1 415 968-4576 +pager: +1 415 952-9853 +roomNumber: 8312 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sil Marano,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sil Marano +sn: Marano +description: This is Sil Marano's description +facsimileTelephoneNumber: +1 213 295-6705 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 608-6722 +title: Master Peons Pinhead +userPassword: Password1 +uid: MaranoS +givenName: Sil +mail: MaranoS@6312a8bfcfc64f4fa1700b6ca4b67dc3.bitwarden.com +carLicense: 0VHRDT +departmentNumber: 8606 +employeeType: Normal +homePhone: +1 213 183-1965 +initials: S. M. +mobile: +1 213 422-8207 +pager: +1 213 448-4826 +roomNumber: 8200 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leonor Maginley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonor Maginley +sn: Maginley +description: This is Leonor Maginley's description +facsimileTelephoneNumber: +1 206 886-5574 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 206 698-3356 +title: Supreme Human Resources Director +userPassword: Password1 +uid: MaginleL +givenName: Leonor +mail: MaginleL@06bce776ad5946a6be606d0392cec3ca.bitwarden.com +carLicense: 8DI63X +departmentNumber: 5233 +employeeType: Normal +homePhone: +1 206 902-2114 +initials: L. M. +mobile: +1 206 790-7804 +pager: +1 206 358-5723 +roomNumber: 9774 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nicoline Magee,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicoline Magee +sn: Magee +description: This is Nicoline Magee's description +facsimileTelephoneNumber: +1 206 171-1411 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 318-3856 +title: Master Human Resources Director +userPassword: Password1 +uid: MageeN +givenName: Nicoline +mail: MageeN@98c506bf5a294f7a9f046f2404687224.bitwarden.com +carLicense: 4VR7J6 +departmentNumber: 4703 +employeeType: Employee +homePhone: +1 206 572-6599 +initials: N. M. +mobile: +1 206 876-1098 +pager: +1 206 764-8258 +roomNumber: 9152 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Penang Musca,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Penang Musca +sn: Musca +description: This is Penang Musca's description +facsimileTelephoneNumber: +1 408 802-3034 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 848-5222 +title: Junior Janitorial President +userPassword: Password1 +uid: MuscaP +givenName: Penang +mail: MuscaP@0834bcacddfd4229b6702a62e2551569.bitwarden.com +carLicense: H72PJF +departmentNumber: 7068 +employeeType: Normal +homePhone: +1 408 567-4209 +initials: P. M. +mobile: +1 408 145-8131 +pager: +1 408 950-9511 +roomNumber: 8040 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherilynn Campagna +sn: Campagna +description: This is Cherilynn Campagna's description +facsimileTelephoneNumber: +1 408 755-8639 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 812-5080 +title: Junior Human Resources Assistant +userPassword: Password1 +uid: CampagnC +givenName: Cherilynn +mail: CampagnC@9fbf462dffb84d01b4efd7ea06cb46c2.bitwarden.com +carLicense: PMVT8M +departmentNumber: 4182 +employeeType: Employee +homePhone: +1 408 276-5407 +initials: C. C. +mobile: +1 408 688-6086 +pager: +1 408 227-3836 +roomNumber: 9046 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carlos Smyth,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlos Smyth +sn: Smyth +description: This is Carlos Smyth's description +facsimileTelephoneNumber: +1 415 909-6036 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 932-1434 +title: Chief Payroll Madonna +userPassword: Password1 +uid: SmythC +givenName: Carlos +mail: SmythC@964166b8cdd041c68aaae270afb90271.bitwarden.com +carLicense: VKC04H +departmentNumber: 6274 +employeeType: Employee +homePhone: +1 415 836-6534 +initials: C. S. +mobile: +1 415 864-9960 +pager: +1 415 119-5146 +roomNumber: 8655 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosalinde Harapiak +sn: Harapiak +description: This is Rosalinde Harapiak's description +facsimileTelephoneNumber: +1 510 474-8849 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 510 721-9637 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: HarapiaR +givenName: Rosalinde +mail: HarapiaR@83e659b7a46148c68a7895067104477c.bitwarden.com +carLicense: RMLQ2E +departmentNumber: 8040 +employeeType: Contract +homePhone: +1 510 314-2786 +initials: R. H. +mobile: +1 510 105-2087 +pager: +1 510 686-8998 +roomNumber: 9228 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Evania Copello,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evania Copello +sn: Copello +description: This is Evania Copello's description +facsimileTelephoneNumber: +1 206 207-9499 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 206 101-7253 +title: Master Management Director +userPassword: Password1 +uid: CopelloE +givenName: Evania +mail: CopelloE@b4622719a7ee45c98d3b8a7b78001ff6.bitwarden.com +carLicense: PNFCQV +departmentNumber: 5163 +employeeType: Contract +homePhone: +1 206 948-8841 +initials: E. C. +mobile: +1 206 216-1976 +pager: +1 206 224-8596 +roomNumber: 9187 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jamie Tschaja,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jamie Tschaja +sn: Tschaja +description: This is Jamie Tschaja's description +facsimileTelephoneNumber: +1 804 776-8750 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 133-3108 +title: Chief Peons Evangelist +userPassword: Password1 +uid: TschajaJ +givenName: Jamie +mail: TschajaJ@fa528be784314ab7a2c058d1610cf1bb.bitwarden.com +carLicense: 7FP2XF +departmentNumber: 7208 +employeeType: Employee +homePhone: +1 804 463-7128 +initials: J. T. +mobile: +1 804 844-3930 +pager: +1 804 190-8809 +roomNumber: 9343 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Thang Dallaire,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thang Dallaire +sn: Dallaire +description: This is Thang Dallaire's description +facsimileTelephoneNumber: +1 206 895-2647 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 191-5983 +title: Junior Human Resources Fellow +userPassword: Password1 +uid: DallairT +givenName: Thang +mail: DallairT@dd8de5abce6e4941a35b4e391450cd5c.bitwarden.com +carLicense: DPJPRR +departmentNumber: 2692 +employeeType: Employee +homePhone: +1 206 985-5232 +initials: T. D. +mobile: +1 206 911-3713 +pager: +1 206 580-1832 +roomNumber: 9720 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Daphine Chandra,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphine Chandra +sn: Chandra +description: This is Daphine Chandra's description +facsimileTelephoneNumber: +1 804 708-7522 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 112-5342 +title: Junior Administrative Punk +userPassword: Password1 +uid: ChandraD +givenName: Daphine +mail: ChandraD@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com +carLicense: 0SSMIU +departmentNumber: 6116 +employeeType: Employee +homePhone: +1 804 416-3462 +initials: D. C. +mobile: +1 804 180-7773 +pager: +1 804 822-1049 +roomNumber: 9462 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ohio Baerg,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ohio Baerg +sn: Baerg +description: This is Ohio Baerg's description +facsimileTelephoneNumber: +1 510 790-8693 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 668-6256 +title: Associate Payroll Engineer +userPassword: Password1 +uid: BaergO +givenName: Ohio +mail: BaergO@20652fd58932448b926b6d40287545d2.bitwarden.com +carLicense: CIF0H3 +departmentNumber: 8014 +employeeType: Employee +homePhone: +1 510 389-7117 +initials: O. B. +mobile: +1 510 971-3835 +pager: +1 510 674-7386 +roomNumber: 9969 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wiebe Kirouac +sn: Kirouac +description: This is Wiebe Kirouac's description +facsimileTelephoneNumber: +1 818 904-1780 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 500-5643 +title: Associate Product Development Technician +userPassword: Password1 +uid: KirouacW +givenName: Wiebe +mail: KirouacW@40d320f39b3b4ec6b2aa4be872b12e34.bitwarden.com +carLicense: CHDS4X +departmentNumber: 7034 +employeeType: Employee +homePhone: +1 818 157-7938 +initials: W. K. +mobile: +1 818 372-5017 +pager: +1 818 468-9810 +roomNumber: 9708 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othelia Torrealba +sn: Torrealba +description: This is Othelia Torrealba's description +facsimileTelephoneNumber: +1 206 377-4985 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 206 859-9849 +title: Chief Janitorial Figurehead +userPassword: Password1 +uid: TorrealO +givenName: Othelia +mail: TorrealO@a662180554134ff2859bfab952c71e82.bitwarden.com +carLicense: TXYPG4 +departmentNumber: 2395 +employeeType: Contract +homePhone: +1 206 235-3408 +initials: O. T. +mobile: +1 206 707-7986 +pager: +1 206 755-9608 +roomNumber: 9022 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Else Brien,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Else Brien +sn: Brien +description: This is Else Brien's description +facsimileTelephoneNumber: +1 415 507-7515 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 346-8975 +title: Associate Administrative Fellow +userPassword: Password1 +uid: BrienE +givenName: Else +mail: BrienE@1f52489263294bdcb74bf08e15dc639b.bitwarden.com +carLicense: VYXO6P +departmentNumber: 4536 +employeeType: Contract +homePhone: +1 415 670-5788 +initials: E. B. +mobile: +1 415 805-4130 +pager: +1 415 299-3473 +roomNumber: 9024 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Giampaolo Gu,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giampaolo Gu +sn: Gu +description: This is Giampaolo Gu's description +facsimileTelephoneNumber: +1 804 269-4226 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 629-6212 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: GuG +givenName: Giampaolo +mail: GuG@8274c561263849f296aeed4664c2eecc.bitwarden.com +carLicense: 06W2J0 +departmentNumber: 2209 +employeeType: Normal +homePhone: +1 804 719-5022 +initials: G. G. +mobile: +1 804 147-8323 +pager: +1 804 249-3421 +roomNumber: 8700 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Seven Tregenza,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seven Tregenza +sn: Tregenza +description: This is Seven Tregenza's description +facsimileTelephoneNumber: +1 213 734-9079 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 621-5809 +title: Chief Peons Pinhead +userPassword: Password1 +uid: TregenzS +givenName: Seven +mail: TregenzS@b7db7b74741043f1bc70179c65d8c474.bitwarden.com +carLicense: EAKU5M +departmentNumber: 1135 +employeeType: Employee +homePhone: +1 213 637-6892 +initials: S. T. +mobile: +1 213 582-4717 +pager: +1 213 196-9754 +roomNumber: 9616 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rakel Ressner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rakel Ressner +sn: Ressner +description: This is Rakel Ressner's description +facsimileTelephoneNumber: +1 804 941-8047 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 804 821-8505 +title: Supreme Peons Manager +userPassword: Password1 +uid: RessnerR +givenName: Rakel +mail: RessnerR@2a906f1560284502a1b19f87829f93ea.bitwarden.com +carLicense: B49QFO +departmentNumber: 8486 +employeeType: Employee +homePhone: +1 804 340-7919 +initials: R. R. +mobile: +1 804 305-9070 +pager: +1 804 122-9750 +roomNumber: 8456 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eloisa Meseberg +sn: Meseberg +description: This is Eloisa Meseberg's description +facsimileTelephoneNumber: +1 213 192-1852 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 633-8997 +title: Supreme Product Development Director +userPassword: Password1 +uid: MeseberE +givenName: Eloisa +mail: MeseberE@572f2e7cd4c540ba82bdf3291fc77e32.bitwarden.com +carLicense: V6WBUV +departmentNumber: 6185 +employeeType: Contract +homePhone: +1 213 615-1569 +initials: E. M. +mobile: +1 213 464-1247 +pager: +1 213 336-3548 +roomNumber: 8426 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marvell Chapdelaine +sn: Chapdelaine +description: This is Marvell Chapdelaine's description +facsimileTelephoneNumber: +1 818 769-7486 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 680-5151 +title: Chief Janitorial Technician +userPassword: Password1 +uid: ChapdelM +givenName: Marvell +mail: ChapdelM@bfbe96af9d94476ba3dcfc88f7bdf41b.bitwarden.com +carLicense: XBM42Y +departmentNumber: 8250 +employeeType: Contract +homePhone: +1 818 270-3828 +initials: M. C. +mobile: +1 818 412-6046 +pager: +1 818 114-3724 +roomNumber: 8257 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Britney Prestia,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Britney Prestia +sn: Prestia +description: This is Britney Prestia's description +facsimileTelephoneNumber: +1 510 501-8899 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 801-2642 +title: Junior Peons Stooge +userPassword: Password1 +uid: PrestiaB +givenName: Britney +mail: PrestiaB@e6c11ea0a5f743ce85492782888f6da6.bitwarden.com +carLicense: 7H0RE4 +departmentNumber: 5246 +employeeType: Normal +homePhone: +1 510 193-1833 +initials: B. P. +mobile: +1 510 843-3216 +pager: +1 510 833-2905 +roomNumber: 9516 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jonathan Guty,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jonathan Guty +sn: Guty +description: This is Jonathan Guty's description +facsimileTelephoneNumber: +1 206 354-3597 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 159-1155 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: GutyJ +givenName: Jonathan +mail: GutyJ@7bf8a8dbfcea42b08cac76925d0219d8.bitwarden.com +carLicense: EFVUPJ +departmentNumber: 6887 +employeeType: Employee +homePhone: +1 206 862-6805 +initials: J. G. +mobile: +1 206 777-8259 +pager: +1 206 953-9861 +roomNumber: 9887 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Livvy Hoag,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Livvy Hoag +sn: Hoag +description: This is Livvy Hoag's description +facsimileTelephoneNumber: +1 804 369-4009 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 668-2313 +title: Supreme Human Resources Director +userPassword: Password1 +uid: HoagL +givenName: Livvy +mail: HoagL@9be993140021475092d7ba3a41ede5b4.bitwarden.com +carLicense: 378TGX +departmentNumber: 1362 +employeeType: Contract +homePhone: +1 804 329-3689 +initials: L. H. +mobile: +1 804 580-5553 +pager: +1 804 519-5655 +roomNumber: 9859 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rennie Postolek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rennie Postolek +sn: Postolek +description: This is Rennie Postolek's description +facsimileTelephoneNumber: +1 415 725-8853 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 217-7053 +title: Master Janitorial Manager +userPassword: Password1 +uid: PostoleR +givenName: Rennie +mail: PostoleR@1866a7eb1fab4dc78251b68a046aa8f6.bitwarden.com +carLicense: GDL4GG +departmentNumber: 8586 +employeeType: Employee +homePhone: +1 415 790-6308 +initials: R. P. +mobile: +1 415 569-6342 +pager: +1 415 565-2733 +roomNumber: 9872 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jayesh Liao,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jayesh Liao +sn: Liao +description: This is Jayesh Liao's description +facsimileTelephoneNumber: +1 206 226-4573 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 187-6673 +title: Junior Peons Pinhead +userPassword: Password1 +uid: LiaoJ +givenName: Jayesh +mail: LiaoJ@c8b8d0d540194a31b14e399b8e0ac7ff.bitwarden.com +carLicense: GPHFHS +departmentNumber: 7103 +employeeType: Employee +homePhone: +1 206 568-9191 +initials: J. L. +mobile: +1 206 279-1190 +pager: +1 206 610-1718 +roomNumber: 8199 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tiffany Fougere,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffany Fougere +sn: Fougere +description: This is Tiffany Fougere's description +facsimileTelephoneNumber: +1 415 527-7729 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 244-3970 +title: Supreme Management Janitor +userPassword: Password1 +uid: FougereT +givenName: Tiffany +mail: FougereT@6f03f1adf7c149889e4e46274861a90d.bitwarden.com +carLicense: 5NJS3J +departmentNumber: 3177 +employeeType: Contract +homePhone: +1 415 445-4293 +initials: T. F. +mobile: +1 415 505-6954 +pager: +1 415 454-3134 +roomNumber: 8579 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Darline Swinson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darline Swinson +sn: Swinson +description: This is Darline Swinson's description +facsimileTelephoneNumber: +1 510 245-5210 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 811-2842 +title: Associate Payroll Technician +userPassword: Password1 +uid: SwinsonD +givenName: Darline +mail: SwinsonD@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com +carLicense: 278B56 +departmentNumber: 5708 +employeeType: Employee +homePhone: +1 510 781-7564 +initials: D. S. +mobile: +1 510 450-1874 +pager: +1 510 869-4715 +roomNumber: 9512 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Biddie Scp,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Biddie Scp +sn: Scp +description: This is Biddie Scp's description +facsimileTelephoneNumber: +1 408 373-4386 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 253-5355 +title: Junior Management Dictator +userPassword: Password1 +uid: ScpB +givenName: Biddie +mail: ScpB@c536300f550c4bf4aefa167ad65dc37b.bitwarden.com +carLicense: N1W897 +departmentNumber: 2444 +employeeType: Normal +homePhone: +1 408 365-5006 +initials: B. S. +mobile: +1 408 506-2195 +pager: +1 408 856-2552 +roomNumber: 9961 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Colin Irick,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colin Irick +sn: Irick +description: This is Colin Irick's description +facsimileTelephoneNumber: +1 818 989-3558 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 580-2860 +title: Supreme Product Development Dictator +userPassword: Password1 +uid: IrickC +givenName: Colin +mail: IrickC@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com +carLicense: XD8RND +departmentNumber: 2549 +employeeType: Employee +homePhone: +1 818 284-4513 +initials: C. I. +mobile: +1 818 628-8206 +pager: +1 818 457-9204 +roomNumber: 9872 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Yueli Clinger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yueli Clinger +sn: Clinger +description: This is Yueli Clinger's description +facsimileTelephoneNumber: +1 510 350-7253 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 183-8198 +title: Junior Peons Writer +userPassword: Password1 +uid: ClingerY +givenName: Yueli +mail: ClingerY@40544cfce21b453a8a348a622d569594.bitwarden.com +carLicense: YK9W7X +departmentNumber: 9067 +employeeType: Normal +homePhone: +1 510 623-3731 +initials: Y. C. +mobile: +1 510 499-7165 +pager: +1 510 373-1448 +roomNumber: 9681 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WingMan Simonsen +sn: Simonsen +description: This is WingMan Simonsen's description +facsimileTelephoneNumber: +1 510 783-9296 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 320-7651 +title: Master Janitorial Vice President +userPassword: Password1 +uid: SimonseW +givenName: WingMan +mail: SimonseW@9342f9a1c6b2408b96d8cb0c883aae65.bitwarden.com +carLicense: K97VTT +departmentNumber: 4696 +employeeType: Contract +homePhone: +1 510 315-2789 +initials: W. S. +mobile: +1 510 894-9941 +pager: +1 510 219-7350 +roomNumber: 9120 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Randa Wery,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randa Wery +sn: Wery +description: This is Randa Wery's description +facsimileTelephoneNumber: +1 415 656-5802 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 849-9664 +title: Supreme Payroll Assistant +userPassword: Password1 +uid: WeryR +givenName: Randa +mail: WeryR@a5373e4d5e704daba1d3dbf799f28ac8.bitwarden.com +carLicense: 9IXUWN +departmentNumber: 1657 +employeeType: Employee +homePhone: +1 415 840-4202 +initials: R. W. +mobile: +1 415 742-5747 +pager: +1 415 352-7218 +roomNumber: 9171 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Theodor Schute,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theodor Schute +sn: Schute +description: This is Theodor Schute's description +facsimileTelephoneNumber: +1 415 178-9957 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 481-8571 +title: Master Human Resources Visionary +userPassword: Password1 +uid: SchuteT +givenName: Theodor +mail: SchuteT@37c3227000a74816851448e0169c372e.bitwarden.com +carLicense: A1PQO8 +departmentNumber: 5960 +employeeType: Normal +homePhone: +1 415 650-3408 +initials: T. S. +mobile: +1 415 122-7597 +pager: +1 415 189-4992 +roomNumber: 9815 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhiren Simonovich +sn: Simonovich +description: This is Dhiren Simonovich's description +facsimileTelephoneNumber: +1 415 383-8050 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 415 467-4428 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: SimonovD +givenName: Dhiren +mail: SimonovD@f4e75eb09db6479c9f66375f6d4f78a9.bitwarden.com +carLicense: MB1PGW +departmentNumber: 3318 +employeeType: Employee +homePhone: +1 415 219-3200 +initials: D. S. +mobile: +1 415 677-2658 +pager: +1 415 379-1987 +roomNumber: 9422 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Keeley Basa,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keeley Basa +sn: Basa +description: This is Keeley Basa's description +facsimileTelephoneNumber: +1 213 410-4802 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 478-7891 +title: Master Management Warrior +userPassword: Password1 +uid: BasaK +givenName: Keeley +mail: BasaK@527588b4f1b4422fb6b034c9d08f2576.bitwarden.com +carLicense: X84NW1 +departmentNumber: 3187 +employeeType: Employee +homePhone: +1 213 113-2149 +initials: K. B. +mobile: +1 213 105-7718 +pager: +1 213 705-8774 +roomNumber: 8180 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mimi Clements,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mimi Clements +sn: Clements +description: This is Mimi Clements's description +facsimileTelephoneNumber: +1 213 824-8953 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 512-9180 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: ClementM +givenName: Mimi +mail: ClementM@16269c126bd14ac9a93025afee70dceb.bitwarden.com +carLicense: XVD5IT +departmentNumber: 9094 +employeeType: Contract +homePhone: +1 213 888-3470 +initials: M. C. +mobile: +1 213 870-8809 +pager: +1 213 748-3315 +roomNumber: 8082 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Igor Venguswamy +sn: Venguswamy +description: This is Igor Venguswamy's description +facsimileTelephoneNumber: +1 206 381-5954 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 322-2802 +title: Junior Product Testing Evangelist +userPassword: Password1 +uid: VenguswI +givenName: Igor +mail: VenguswI@736366bf947d4889a5087519dbc9eaff.bitwarden.com +carLicense: A9QCAF +departmentNumber: 7504 +employeeType: Contract +homePhone: +1 206 935-8132 +initials: I. V. +mobile: +1 206 458-3083 +pager: +1 206 252-7590 +roomNumber: 9376 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dasi Baader,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dasi Baader +sn: Baader +description: This is Dasi Baader's description +facsimileTelephoneNumber: +1 818 791-1599 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 679-5320 +title: Associate Human Resources Architect +userPassword: Password1 +uid: BaaderD +givenName: Dasi +mail: BaaderD@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com +carLicense: RPLLIF +departmentNumber: 7514 +employeeType: Employee +homePhone: +1 818 734-4797 +initials: D. B. +mobile: +1 818 705-1180 +pager: +1 818 154-3161 +roomNumber: 8829 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kerrin Miner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kerrin Miner +sn: Miner +description: This is Kerrin Miner's description +facsimileTelephoneNumber: +1 804 151-1807 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 520-5441 +title: Junior Human Resources President +userPassword: Password1 +uid: MinerK +givenName: Kerrin +mail: MinerK@59a0bbafd91247c6851ee2f7bf13b081.bitwarden.com +carLicense: 0HSLPR +departmentNumber: 7325 +employeeType: Contract +homePhone: +1 804 346-7409 +initials: K. M. +mobile: +1 804 398-3378 +pager: +1 804 492-6125 +roomNumber: 9392 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tania Guimond,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tania Guimond +sn: Guimond +description: This is Tania Guimond's description +facsimileTelephoneNumber: +1 818 385-3147 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 818 952-6669 +title: Supreme Peons Engineer +userPassword: Password1 +uid: GuimondT +givenName: Tania +mail: GuimondT@177be20238ac48a3b552f8e87a11e1b1.bitwarden.com +carLicense: HP8H08 +departmentNumber: 8305 +employeeType: Contract +homePhone: +1 818 756-3814 +initials: T. G. +mobile: +1 818 104-1141 +pager: +1 818 221-8158 +roomNumber: 9824 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninetta Hendriks +sn: Hendriks +description: This is Ninetta Hendriks's description +facsimileTelephoneNumber: +1 213 556-9763 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 213 630-9443 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: HendrikN +givenName: Ninetta +mail: HendrikN@8fd38b10138d41afbb37c8037aaf6377.bitwarden.com +carLicense: P3XV54 +departmentNumber: 1363 +employeeType: Employee +homePhone: +1 213 885-4497 +initials: N. H. +mobile: +1 213 527-9892 +pager: +1 213 382-6040 +roomNumber: 8840 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hedvige Doran,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hedvige Doran +sn: Doran +description: This is Hedvige Doran's description +facsimileTelephoneNumber: +1 408 855-1431 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 846-3193 +title: Junior Management President +userPassword: Password1 +uid: DoranH +givenName: Hedvige +mail: DoranH@27bcaa4785014c5c91369f5095a41ea2.bitwarden.com +carLicense: B8NBVF +departmentNumber: 2145 +employeeType: Contract +homePhone: +1 408 548-9683 +initials: H. D. +mobile: +1 408 250-2583 +pager: +1 408 325-1663 +roomNumber: 9718 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aviva Andruzzi +sn: Andruzzi +description: This is Aviva Andruzzi's description +facsimileTelephoneNumber: +1 415 922-5954 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 872-6033 +title: Chief Administrative Admin +userPassword: Password1 +uid: AndruzzA +givenName: Aviva +mail: AndruzzA@a5d6a2bda97a44e782e3c73dfaefdb63.bitwarden.com +carLicense: 3WE8D5 +departmentNumber: 6323 +employeeType: Contract +homePhone: +1 415 496-7553 +initials: A. A. +mobile: +1 415 917-5729 +pager: +1 415 881-9437 +roomNumber: 9001 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Diahann Nason,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diahann Nason +sn: Nason +description: This is Diahann Nason's description +facsimileTelephoneNumber: +1 510 652-2673 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 110-4403 +title: Junior Peons Pinhead +userPassword: Password1 +uid: NasonD +givenName: Diahann +mail: NasonD@8a594838d3824283aa7aa83d94d57d44.bitwarden.com +carLicense: F97RJK +departmentNumber: 3281 +employeeType: Contract +homePhone: +1 510 331-7792 +initials: D. N. +mobile: +1 510 564-8300 +pager: +1 510 503-3087 +roomNumber: 9533 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Leecia Guarino,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leecia Guarino +sn: Guarino +description: This is Leecia Guarino's description +facsimileTelephoneNumber: +1 415 275-7964 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 985-4003 +title: Associate Administrative Figurehead +userPassword: Password1 +uid: GuarinoL +givenName: Leecia +mail: GuarinoL@0c6cf7ff0570476c863c26cda41eed02.bitwarden.com +carLicense: WXQ9SQ +departmentNumber: 1796 +employeeType: Contract +homePhone: +1 415 304-4542 +initials: L. G. +mobile: +1 415 294-8568 +pager: +1 415 736-5374 +roomNumber: 9784 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kacie Moyano,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kacie Moyano +sn: Moyano +description: This is Kacie Moyano's description +facsimileTelephoneNumber: +1 510 421-2441 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 937-9752 +title: Supreme Management Artist +userPassword: Password1 +uid: MoyanoK +givenName: Kacie +mail: MoyanoK@053c075cfea943a49184d56a51ed4603.bitwarden.com +carLicense: MX4JX1 +departmentNumber: 5642 +employeeType: Contract +homePhone: +1 510 234-3717 +initials: K. M. +mobile: +1 510 752-1328 +pager: +1 510 298-8522 +roomNumber: 9254 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dicky Guignon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dicky Guignon +sn: Guignon +description: This is Dicky Guignon's description +facsimileTelephoneNumber: +1 818 294-7800 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 280-6761 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: GuignonD +givenName: Dicky +mail: GuignonD@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com +carLicense: 51Q8VQ +departmentNumber: 5183 +employeeType: Normal +homePhone: +1 818 792-1471 +initials: D. G. +mobile: +1 818 522-7940 +pager: +1 818 835-3321 +roomNumber: 8766 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bobbie Suwala,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobbie Suwala +sn: Suwala +description: This is Bobbie Suwala's description +facsimileTelephoneNumber: +1 818 626-7409 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 915-3709 +title: Chief Peons Dictator +userPassword: Password1 +uid: SuwalaB +givenName: Bobbie +mail: SuwalaB@ff314e0aa2d4448bb24e44e3596bf8bd.bitwarden.com +carLicense: UXSXGQ +departmentNumber: 1055 +employeeType: Employee +homePhone: +1 818 499-4522 +initials: B. S. +mobile: +1 818 548-4232 +pager: +1 818 103-5507 +roomNumber: 9706 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Melissa Adkinson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melissa Adkinson +sn: Adkinson +description: This is Melissa Adkinson's description +facsimileTelephoneNumber: +1 804 546-7382 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 636-9986 +title: Associate Peons Fellow +userPassword: Password1 +uid: AdkinsoM +givenName: Melissa +mail: AdkinsoM@770389a9db90496190b610f069530ad6.bitwarden.com +carLicense: PXKTBO +departmentNumber: 1686 +employeeType: Normal +homePhone: +1 804 882-3649 +initials: M. A. +mobile: +1 804 699-8404 +pager: +1 804 489-6389 +roomNumber: 8095 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Georgine Lantto,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgine Lantto +sn: Lantto +description: This is Georgine Lantto's description +facsimileTelephoneNumber: +1 804 305-6693 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 804 355-4873 +title: Supreme Peons Stooge +userPassword: Password1 +uid: LanttoG +givenName: Georgine +mail: LanttoG@5320b952794a47b19c6e19d7dbdf3f99.bitwarden.com +carLicense: 5GRJM4 +departmentNumber: 4451 +employeeType: Normal +homePhone: +1 804 572-6780 +initials: G. L. +mobile: +1 804 808-1704 +pager: +1 804 193-3048 +roomNumber: 8137 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonnie Gilles +sn: Gilles +description: This is Sonnie Gilles's description +facsimileTelephoneNumber: +1 804 213-4157 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 407-3086 +title: Associate Janitorial Visionary +userPassword: Password1 +uid: GillesS +givenName: Sonnie +mail: GillesS@3b8e28899e6c47f3b2c13e23a394c405.bitwarden.com +carLicense: N3XJVK +departmentNumber: 6400 +employeeType: Employee +homePhone: +1 804 779-6271 +initials: S. G. +mobile: +1 804 390-3879 +pager: +1 804 917-9874 +roomNumber: 8008 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Johnnie Mayes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnnie Mayes +sn: Mayes +description: This is Johnnie Mayes's description +facsimileTelephoneNumber: +1 213 950-7780 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 325-5386 +title: Supreme Management Artist +userPassword: Password1 +uid: MayesJ +givenName: Johnnie +mail: MayesJ@c3e5be71fdd14cfab6350245e2c34701.bitwarden.com +carLicense: 38LQ94 +departmentNumber: 6359 +employeeType: Normal +homePhone: +1 213 150-6854 +initials: J. M. +mobile: +1 213 655-5254 +pager: +1 213 720-8994 +roomNumber: 8587 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selestina Kozlowski +sn: Kozlowski +description: This is Selestina Kozlowski's description +facsimileTelephoneNumber: +1 213 667-9647 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 213 518-5828 +title: Associate Payroll Madonna +userPassword: Password1 +uid: KozlowsS +givenName: Selestina +mail: KozlowsS@0854599c24014bdf969745fad472960b.bitwarden.com +carLicense: LJW9KF +departmentNumber: 3445 +employeeType: Employee +homePhone: +1 213 633-9010 +initials: S. K. +mobile: +1 213 151-7904 +pager: +1 213 961-8015 +roomNumber: 9207 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anker Serapin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anker Serapin +sn: Serapin +description: This is Anker Serapin's description +facsimileTelephoneNumber: +1 510 376-8054 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 554-1084 +title: Associate Management Developer +userPassword: Password1 +uid: SerapinA +givenName: Anker +mail: SerapinA@13e3dc6812b646519614bfe380e524a9.bitwarden.com +carLicense: WKJKYH +departmentNumber: 5401 +employeeType: Normal +homePhone: +1 510 425-9686 +initials: A. S. +mobile: +1 510 442-4123 +pager: +1 510 803-3718 +roomNumber: 9690 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mable Thirugnanam,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mable Thirugnanam +sn: Thirugnanam +description: This is Mable Thirugnanam's description +facsimileTelephoneNumber: +1 510 349-9026 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 396-7347 +title: Chief Management Madonna +userPassword: Password1 +uid: ThirugnM +givenName: Mable +mail: ThirugnM@0f6317f19e074d3eacd8b09d7fafccf0.bitwarden.com +carLicense: 8KY61B +departmentNumber: 1382 +employeeType: Normal +homePhone: +1 510 345-4210 +initials: M. T. +mobile: +1 510 648-5347 +pager: +1 510 319-2579 +roomNumber: 9175 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Allan Rizewiski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allan Rizewiski +sn: Rizewiski +description: This is Allan Rizewiski's description +facsimileTelephoneNumber: +1 818 920-6125 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 582-7694 +title: Chief Management Visionary +userPassword: Password1 +uid: RizewisA +givenName: Allan +mail: RizewisA@36bc6957b14948c298f68fedb3e83da0.bitwarden.com +carLicense: 1G11BL +departmentNumber: 9035 +employeeType: Normal +homePhone: +1 818 994-3252 +initials: A. R. +mobile: +1 818 377-5194 +pager: +1 818 980-3806 +roomNumber: 9905 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Peng Quantrill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peng Quantrill +sn: Quantrill +description: This is Peng Quantrill's description +facsimileTelephoneNumber: +1 206 806-7825 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 307-3044 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: QuantriP +givenName: Peng +mail: QuantriP@5b8fdd487f414248bc005f588420c84d.bitwarden.com +carLicense: E4WXQ5 +departmentNumber: 9038 +employeeType: Contract +homePhone: +1 206 104-4521 +initials: P. Q. +mobile: +1 206 753-5580 +pager: +1 206 862-2299 +roomNumber: 9849 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Addy Paunins,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Addy Paunins +sn: Paunins +description: This is Addy Paunins's description +facsimileTelephoneNumber: +1 213 417-8698 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 213 377-6209 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: PauninsA +givenName: Addy +mail: PauninsA@65678c07e8734c7890d5cf5e76fde9cc.bitwarden.com +carLicense: N4TACK +departmentNumber: 5692 +employeeType: Contract +homePhone: +1 213 112-8269 +initials: A. P. +mobile: +1 213 321-2122 +pager: +1 213 348-8477 +roomNumber: 8972 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Friederike Constable,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Friederike Constable +sn: Constable +description: This is Friederike Constable's description +facsimileTelephoneNumber: +1 408 132-6226 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 387-9964 +title: Junior Human Resources Czar +userPassword: Password1 +uid: ConstabF +givenName: Friederike +mail: ConstabF@2a2c0e37e6624d4cbca590425919a502.bitwarden.com +carLicense: NM9E2V +departmentNumber: 1446 +employeeType: Normal +homePhone: +1 408 541-2072 +initials: F. C. +mobile: +1 408 897-9352 +pager: +1 408 958-6950 +roomNumber: 8877 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Starlene Solodko,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Starlene Solodko +sn: Solodko +description: This is Starlene Solodko's description +facsimileTelephoneNumber: +1 206 204-7889 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 555-2824 +title: Junior Payroll Vice President +userPassword: Password1 +uid: SolodkoS +givenName: Starlene +mail: SolodkoS@1f2d8d4c2ab74a83be61634a4213379d.bitwarden.com +carLicense: 8QTRQ6 +departmentNumber: 8606 +employeeType: Employee +homePhone: +1 206 990-5439 +initials: S. S. +mobile: +1 206 460-4286 +pager: +1 206 548-4784 +roomNumber: 8721 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Verene Ludchen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verene Ludchen +sn: Ludchen +description: This is Verene Ludchen's description +facsimileTelephoneNumber: +1 415 758-1639 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 991-8959 +title: Chief Janitorial Consultant +userPassword: Password1 +uid: LudchenV +givenName: Verene +mail: LudchenV@6fe2230bebbe45c4b4897cbd6f689c6c.bitwarden.com +carLicense: 7FF7CS +departmentNumber: 3559 +employeeType: Contract +homePhone: +1 415 690-6675 +initials: V. L. +mobile: +1 415 854-6890 +pager: +1 415 419-1684 +roomNumber: 8640 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Curtis Mersch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Curtis Mersch +sn: Mersch +description: This is Curtis Mersch's description +facsimileTelephoneNumber: +1 408 517-5525 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 514-9484 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: MerschC +givenName: Curtis +mail: MerschC@d73ef9502e9045388e89e90d1beb22e0.bitwarden.com +carLicense: RS388D +departmentNumber: 1468 +employeeType: Normal +homePhone: +1 408 705-4113 +initials: C. M. +mobile: +1 408 355-5177 +pager: +1 408 218-4830 +roomNumber: 9704 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Piper Brander,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Piper Brander +sn: Brander +description: This is Piper Brander's description +facsimileTelephoneNumber: +1 408 528-6023 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 839-2248 +title: Chief Administrative Developer +userPassword: Password1 +uid: BranderP +givenName: Piper +mail: BranderP@1365456b38df40e8b356de5ec434637e.bitwarden.com +carLicense: U789CR +departmentNumber: 6408 +employeeType: Contract +homePhone: +1 408 940-4027 +initials: P. B. +mobile: +1 408 751-3938 +pager: +1 408 289-4976 +roomNumber: 8121 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bedford Berenbach +sn: Berenbach +description: This is Bedford Berenbach's description +facsimileTelephoneNumber: +1 818 898-6858 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 574-9379 +title: Chief Human Resources Artist +userPassword: Password1 +uid: BerenbaB +givenName: Bedford +mail: BerenbaB@2a0cae73d63c458d9d5daaf71efd50df.bitwarden.com +carLicense: I6WUIR +departmentNumber: 6370 +employeeType: Contract +homePhone: +1 818 635-9498 +initials: B. B. +mobile: +1 818 460-4591 +pager: +1 818 147-1212 +roomNumber: 8847 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rozalin Heppes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozalin Heppes +sn: Heppes +description: This is Rozalin Heppes's description +facsimileTelephoneNumber: +1 818 180-5937 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 786-2635 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: HeppesR +givenName: Rozalin +mail: HeppesR@7016343b9c7c41d58eb428f022d1c9f0.bitwarden.com +carLicense: D40VPY +departmentNumber: 4722 +employeeType: Normal +homePhone: +1 818 333-8500 +initials: R. H. +mobile: +1 818 324-7582 +pager: +1 818 728-3600 +roomNumber: 9962 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirabelle DropBox +sn: DropBox +description: This is Mirabelle DropBox's description +facsimileTelephoneNumber: +1 408 212-1489 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 420-2830 +title: Supreme Product Testing Manager +userPassword: Password1 +uid: DropBoxM +givenName: Mirabelle +mail: DropBoxM@812ac6eec5fc41f6927bb014fa31a1aa.bitwarden.com +carLicense: 44I4EO +departmentNumber: 3398 +employeeType: Normal +homePhone: +1 408 404-8863 +initials: M. D. +mobile: +1 408 355-1653 +pager: +1 408 771-4033 +roomNumber: 8651 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cad Ajersch,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cad Ajersch +sn: Ajersch +description: This is Cad Ajersch's description +facsimileTelephoneNumber: +1 415 583-6052 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 415 163-9235 +title: Master Human Resources Manager +userPassword: Password1 +uid: AjerschC +givenName: Cad +mail: AjerschC@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com +carLicense: 7YQ5HT +departmentNumber: 1824 +employeeType: Normal +homePhone: +1 415 489-7864 +initials: C. A. +mobile: +1 415 842-8820 +pager: +1 415 215-5096 +roomNumber: 9086 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=TakWai Wagoner,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: TakWai Wagoner +sn: Wagoner +description: This is TakWai Wagoner's description +facsimileTelephoneNumber: +1 206 590-8277 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 742-4613 +title: Associate Administrative Manager +userPassword: Password1 +uid: WagonerT +givenName: TakWai +mail: WagonerT@f190d7cfec0941b2829b0757aff4e20f.bitwarden.com +carLicense: UNF8P2 +departmentNumber: 9094 +employeeType: Employee +homePhone: +1 206 620-1800 +initials: T. W. +mobile: +1 206 471-4184 +pager: +1 206 200-7295 +roomNumber: 9214 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlena Ramachandran +sn: Ramachandran +description: This is Marlena Ramachandran's description +facsimileTelephoneNumber: +1 213 335-7471 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 428-4740 +title: Associate Administrative Fellow +userPassword: Password1 +uid: RamachaM +givenName: Marlena +mail: RamachaM@1d184a251b65443396a8cb4416166285.bitwarden.com +carLicense: L05T9N +departmentNumber: 4483 +employeeType: Normal +homePhone: +1 213 674-1289 +initials: M. R. +mobile: +1 213 916-4182 +pager: +1 213 936-4340 +roomNumber: 9867 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carran Rokas,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carran Rokas +sn: Rokas +description: This is Carran Rokas's description +facsimileTelephoneNumber: +1 415 755-4817 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 855-7232 +title: Supreme Administrative Vice President +userPassword: Password1 +uid: RokasC +givenName: Carran +mail: RokasC@5a771b0086d24bceafcaac2a637338d8.bitwarden.com +carLicense: 8RPF6I +departmentNumber: 4378 +employeeType: Contract +homePhone: +1 415 728-5431 +initials: C. R. +mobile: +1 415 680-5306 +pager: +1 415 988-5660 +roomNumber: 8668 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Idus Wayling,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idus Wayling +sn: Wayling +description: This is Idus Wayling's description +facsimileTelephoneNumber: +1 510 914-6015 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 683-9916 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: WaylingI +givenName: Idus +mail: WaylingI@4a7f898eb8954829907d34eeb46064e6.bitwarden.com +carLicense: A6RG04 +departmentNumber: 1694 +employeeType: Contract +homePhone: +1 510 637-6151 +initials: I. W. +mobile: +1 510 954-4870 +pager: +1 510 139-7593 +roomNumber: 9172 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maryann Somerville,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryann Somerville +sn: Somerville +description: This is Maryann Somerville's description +facsimileTelephoneNumber: +1 804 936-2066 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 789-7849 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: SomerviM +givenName: Maryann +mail: SomerviM@f0291ad4694a4c4989e17e0aede36a7b.bitwarden.com +carLicense: 5PV0HJ +departmentNumber: 7386 +employeeType: Employee +homePhone: +1 804 671-3344 +initials: M. S. +mobile: +1 804 835-8590 +pager: +1 804 257-6081 +roomNumber: 9912 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mildred Dumas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mildred Dumas +sn: Dumas +description: This is Mildred Dumas's description +facsimileTelephoneNumber: +1 206 824-7978 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 696-2810 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: DumasM +givenName: Mildred +mail: DumasM@993e28bbac384cdfa91177630e4e7ee6.bitwarden.com +carLicense: 0CUT83 +departmentNumber: 4033 +employeeType: Employee +homePhone: +1 206 661-2934 +initials: M. D. +mobile: +1 206 424-5382 +pager: +1 206 307-5465 +roomNumber: 8743 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ilda Bisson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilda Bisson +sn: Bisson +description: This is Ilda Bisson's description +facsimileTelephoneNumber: +1 415 706-6207 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 870-9541 +title: Junior Payroll Artist +userPassword: Password1 +uid: BissonI +givenName: Ilda +mail: BissonI@1a3958d626a64b60bde6bf0034916d09.bitwarden.com +carLicense: A9XRPM +departmentNumber: 4440 +employeeType: Normal +homePhone: +1 415 738-3482 +initials: I. B. +mobile: +1 415 553-2082 +pager: +1 415 276-1835 +roomNumber: 9319 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashien Afkhamebrahimi +sn: Afkhamebrahimi +description: This is Ashien Afkhamebrahimi's description +facsimileTelephoneNumber: +1 818 735-1953 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 540-1784 +title: Supreme Administrative Visionary +userPassword: Password1 +uid: AfkhameA +givenName: Ashien +mail: AfkhameA@8be485b278d14bd09bb99f460e4b8889.bitwarden.com +carLicense: E2C3VD +departmentNumber: 7800 +employeeType: Contract +homePhone: +1 818 582-9845 +initials: A. A. +mobile: +1 818 443-6179 +pager: +1 818 429-3189 +roomNumber: 8379 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheilakathryn Seay +sn: Seay +description: This is Sheilakathryn Seay's description +facsimileTelephoneNumber: +1 804 806-6791 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 301-2835 +title: Associate Human Resources Czar +userPassword: Password1 +uid: SeayS +givenName: Sheilakathryn +mail: SeayS@982a9dc04ec64d818da9977446a91014.bitwarden.com +carLicense: QCTISE +departmentNumber: 9345 +employeeType: Normal +homePhone: +1 804 777-5760 +initials: S. S. +mobile: +1 804 418-7461 +pager: +1 804 162-6783 +roomNumber: 9794 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Babb Nicolle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Babb Nicolle +sn: Nicolle +description: This is Babb Nicolle's description +facsimileTelephoneNumber: +1 213 857-3930 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 966-1348 +title: Supreme Management Engineer +userPassword: Password1 +uid: NicolleB +givenName: Babb +mail: NicolleB@d9c6a4248c7f4569bc85ec9d29b8d415.bitwarden.com +carLicense: GPJ4TI +departmentNumber: 1898 +employeeType: Contract +homePhone: +1 213 998-9071 +initials: B. N. +mobile: +1 213 507-9377 +pager: +1 213 417-1565 +roomNumber: 8061 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karyn Pagani,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karyn Pagani +sn: Pagani +description: This is Karyn Pagani's description +facsimileTelephoneNumber: +1 510 953-2467 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 822-4994 +title: Junior Product Testing Czar +userPassword: Password1 +uid: PaganiK +givenName: Karyn +mail: PaganiK@4e7c646d43994aefbe621ec9a0481c2c.bitwarden.com +carLicense: P9S3IC +departmentNumber: 1931 +employeeType: Normal +homePhone: +1 510 264-1937 +initials: K. P. +mobile: +1 510 752-1383 +pager: +1 510 793-9689 +roomNumber: 9497 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tricia Rahrer +sn: Rahrer +description: This is Tricia Rahrer's description +facsimileTelephoneNumber: +1 213 536-1660 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 407-6994 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: RahrerT +givenName: Tricia +mail: RahrerT@54ce292eb157498aac7b1683764ec867.bitwarden.com +carLicense: H8HS2Q +departmentNumber: 4655 +employeeType: Contract +homePhone: +1 213 525-4870 +initials: T. R. +mobile: +1 213 881-6492 +pager: +1 213 261-6777 +roomNumber: 8091 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Agnola MacRae,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnola MacRae +sn: MacRae +description: This is Agnola MacRae's description +facsimileTelephoneNumber: +1 408 816-8334 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 450-7320 +title: Associate Administrative Warrior +userPassword: Password1 +uid: MacRaeA +givenName: Agnola +mail: MacRaeA@0d089601fe8d4842aca2c104051c6a49.bitwarden.com +carLicense: 646TEW +departmentNumber: 5872 +employeeType: Employee +homePhone: +1 408 608-4403 +initials: A. M. +mobile: +1 408 940-2152 +pager: +1 408 853-9867 +roomNumber: 8268 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tessi Borha,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tessi Borha +sn: Borha +description: This is Tessi Borha's description +facsimileTelephoneNumber: +1 804 966-4797 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 860-6931 +title: Master Peons Stooge +userPassword: Password1 +uid: BorhaT +givenName: Tessi +mail: BorhaT@ebda9764758246a4bb15c2161573a88b.bitwarden.com +carLicense: XSGF0E +departmentNumber: 7888 +employeeType: Normal +homePhone: +1 804 836-3711 +initials: T. B. +mobile: +1 804 527-2792 +pager: +1 804 308-2478 +roomNumber: 8240 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tonia OToole,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonia OToole +sn: OToole +description: This is Tonia OToole's description +facsimileTelephoneNumber: +1 408 594-6490 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 334-7041 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: OTooleT +givenName: Tonia +mail: OTooleT@fd421e6c5b5a481fb2a85be843f33d5e.bitwarden.com +carLicense: 3RQ52D +departmentNumber: 7434 +employeeType: Normal +homePhone: +1 408 832-2163 +initials: T. O. +mobile: +1 408 970-7969 +pager: +1 408 709-9539 +roomNumber: 9540 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xiaojing Thomaier +sn: Thomaier +description: This is Xiaojing Thomaier's description +facsimileTelephoneNumber: +1 408 122-3662 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 103-3609 +title: Junior Product Testing Manager +userPassword: Password1 +uid: ThomaieX +givenName: Xiaojing +mail: ThomaieX@fc97577a08a94700a5a94546b6e00dae.bitwarden.com +carLicense: C2UT4R +departmentNumber: 8217 +employeeType: Employee +homePhone: +1 408 179-6708 +initials: X. T. +mobile: +1 408 679-9872 +pager: +1 408 966-4952 +roomNumber: 9869 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gheorghe Eros,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gheorghe Eros +sn: Eros +description: This is Gheorghe Eros's description +facsimileTelephoneNumber: +1 408 237-6267 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 490-8782 +title: Supreme Management Manager +userPassword: Password1 +uid: ErosG +givenName: Gheorghe +mail: ErosG@9f934672a4d04b0083671f6289891300.bitwarden.com +carLicense: DY11LA +departmentNumber: 8755 +employeeType: Normal +homePhone: +1 408 177-5795 +initials: G. E. +mobile: +1 408 664-1124 +pager: +1 408 329-7717 +roomNumber: 8177 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Halie Dautenhahn +sn: Dautenhahn +description: This is Halie Dautenhahn's description +facsimileTelephoneNumber: +1 415 222-4849 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 868-7963 +title: Master Human Resources Punk +userPassword: Password1 +uid: DautenhH +givenName: Halie +mail: DautenhH@ae44e6b70ddd49aaaf586776542680b1.bitwarden.com +carLicense: WBFVYU +departmentNumber: 8456 +employeeType: Contract +homePhone: +1 415 625-3495 +initials: H. D. +mobile: +1 415 198-3908 +pager: +1 415 118-3928 +roomNumber: 9668 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wladyslaw Emesh +sn: Emesh +description: This is Wladyslaw Emesh's description +facsimileTelephoneNumber: +1 408 165-6717 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 568-9633 +title: Chief Payroll Dictator +userPassword: Password1 +uid: EmeshW +givenName: Wladyslaw +mail: EmeshW@0d0f9cb8c311472e8db0a980c10d0d76.bitwarden.com +carLicense: IPSSBY +departmentNumber: 8968 +employeeType: Contract +homePhone: +1 408 695-3406 +initials: W. E. +mobile: +1 408 411-3651 +pager: +1 408 217-1857 +roomNumber: 9534 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Robina Chaikowsky,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robina Chaikowsky +sn: Chaikowsky +description: This is Robina Chaikowsky's description +facsimileTelephoneNumber: +1 415 709-3963 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 314-3721 +title: Junior Peons Figurehead +userPassword: Password1 +uid: ChaikowR +givenName: Robina +mail: ChaikowR@b0cf0a9a60924176bbfa4764c3650166.bitwarden.com +carLicense: TKJPHK +departmentNumber: 6031 +employeeType: Employee +homePhone: +1 415 663-5271 +initials: R. C. +mobile: +1 415 439-7239 +pager: +1 415 582-4001 +roomNumber: 9872 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veen Wasylyk +sn: Wasylyk +description: This is Veen Wasylyk's description +facsimileTelephoneNumber: +1 818 346-5470 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 690-7824 +title: Master Janitorial Sales Rep +userPassword: Password1 +uid: WasylykV +givenName: Veen +mail: WasylykV@c5f103343b7e4b25bc1a4d2fdd71d622.bitwarden.com +carLicense: HE06JO +departmentNumber: 2170 +employeeType: Employee +homePhone: +1 818 660-2570 +initials: V. W. +mobile: +1 818 595-8807 +pager: +1 818 746-1506 +roomNumber: 8229 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ursala Wadden,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ursala Wadden +sn: Wadden +description: This is Ursala Wadden's description +facsimileTelephoneNumber: +1 206 652-8037 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 566-1424 +title: Junior Management Madonna +userPassword: Password1 +uid: WaddenU +givenName: Ursala +mail: WaddenU@2c712498ce76440fbd827369876f0a82.bitwarden.com +carLicense: 0W2PCU +departmentNumber: 7955 +employeeType: Employee +homePhone: +1 206 375-2038 +initials: U. W. +mobile: +1 206 517-1129 +pager: +1 206 751-8807 +roomNumber: 9981 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elysha Bonnefoy +sn: Bonnefoy +description: This is Elysha Bonnefoy's description +facsimileTelephoneNumber: +1 206 247-1499 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 800-5064 +title: Master Product Testing Stooge +userPassword: Password1 +uid: BonnefoE +givenName: Elysha +mail: BonnefoE@ad623334663c4947b77eb81b44ea11ea.bitwarden.com +carLicense: GKKV2F +departmentNumber: 6179 +employeeType: Normal +homePhone: +1 206 481-5993 +initials: E. B. +mobile: +1 206 973-5915 +pager: +1 206 511-5838 +roomNumber: 8851 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ysabel Verkroost +sn: Verkroost +description: This is Ysabel Verkroost's description +facsimileTelephoneNumber: +1 804 589-5494 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 804 123-1577 +title: Master Janitorial Czar +userPassword: Password1 +uid: VerkrooY +givenName: Ysabel +mail: VerkrooY@11c71c9968bd42f7992b3fededa67ace.bitwarden.com +carLicense: QL58W5 +departmentNumber: 6046 +employeeType: Normal +homePhone: +1 804 142-6872 +initials: Y. V. +mobile: +1 804 656-7537 +pager: +1 804 757-2403 +roomNumber: 8482 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sephira Munsey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sephira Munsey +sn: Munsey +description: This is Sephira Munsey's description +facsimileTelephoneNumber: +1 818 103-8670 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 677-6487 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: MunseyS +givenName: Sephira +mail: MunseyS@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com +carLicense: Y5BB6R +departmentNumber: 9904 +employeeType: Employee +homePhone: +1 818 827-2122 +initials: S. M. +mobile: +1 818 757-6022 +pager: +1 818 545-9411 +roomNumber: 9578 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Neal Astle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neal Astle +sn: Astle +description: This is Neal Astle's description +facsimileTelephoneNumber: +1 415 726-2188 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 368-9219 +title: Supreme Management Mascot +userPassword: Password1 +uid: AstleN +givenName: Neal +mail: AstleN@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com +carLicense: MQQ39B +departmentNumber: 2399 +employeeType: Contract +homePhone: +1 415 217-7581 +initials: N. A. +mobile: +1 415 567-4774 +pager: +1 415 528-4765 +roomNumber: 8026 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcie Dermardiros +sn: Dermardiros +description: This is Marcie Dermardiros's description +facsimileTelephoneNumber: +1 213 343-3138 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 213 291-4810 +title: Chief Product Development Warrior +userPassword: Password1 +uid: DermardM +givenName: Marcie +mail: DermardM@0cf6d44baded4f949aa6f553554f8d65.bitwarden.com +carLicense: 71CLES +departmentNumber: 1107 +employeeType: Normal +homePhone: +1 213 925-9991 +initials: M. D. +mobile: +1 213 658-3438 +pager: +1 213 414-2870 +roomNumber: 9378 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vacman Lapostolle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vacman Lapostolle +sn: Lapostolle +description: This is Vacman Lapostolle's description +facsimileTelephoneNumber: +1 415 377-8853 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 689-7270 +title: Associate Management Assistant +userPassword: Password1 +uid: LapostoV +givenName: Vacman +mail: LapostoV@8dfa40622d12496d8e4833fcf53dcbd6.bitwarden.com +carLicense: 0LIO28 +departmentNumber: 4656 +employeeType: Employee +homePhone: +1 415 539-7750 +initials: V. L. +mobile: +1 415 471-8260 +pager: +1 415 518-5897 +roomNumber: 8516 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Genna Rappoport,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genna Rappoport +sn: Rappoport +description: This is Genna Rappoport's description +facsimileTelephoneNumber: +1 206 487-7906 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 223-4381 +title: Chief Management Evangelist +userPassword: Password1 +uid: RappopoG +givenName: Genna +mail: RappopoG@88d79029cf4a42f2bfb0339dce25f1ba.bitwarden.com +carLicense: DA89DM +departmentNumber: 6176 +employeeType: Contract +homePhone: +1 206 531-6372 +initials: G. R. +mobile: +1 206 862-3253 +pager: +1 206 860-2622 +roomNumber: 8490 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lenny Mundi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenny Mundi +sn: Mundi +description: This is Lenny Mundi's description +facsimileTelephoneNumber: +1 213 581-6296 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 336-4692 +title: Associate Administrative Admin +userPassword: Password1 +uid: MundiL +givenName: Lenny +mail: MundiL@ee8fbaff37fe43098ee69cb9ce7da138.bitwarden.com +carLicense: XENGDH +departmentNumber: 7316 +employeeType: Normal +homePhone: +1 213 735-4863 +initials: L. M. +mobile: +1 213 614-8711 +pager: +1 213 427-2440 +roomNumber: 8834 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenilee Murdaugh +sn: Murdaugh +description: This is Jenilee Murdaugh's description +facsimileTelephoneNumber: +1 408 823-5337 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 850-6288 +title: Junior Product Testing Assistant +userPassword: Password1 +uid: MurdaugJ +givenName: Jenilee +mail: MurdaugJ@dd6d4c6b1dd34999828d0c453a81ce8e.bitwarden.com +carLicense: PTDHBT +departmentNumber: 9925 +employeeType: Employee +homePhone: +1 408 701-2691 +initials: J. M. +mobile: +1 408 300-8800 +pager: +1 408 302-8960 +roomNumber: 9635 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koji GaudetMontsion +sn: GaudetMontsion +description: This is Koji GaudetMontsion's description +facsimileTelephoneNumber: +1 206 610-2945 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 696-3606 +title: Chief Product Development Dictator +userPassword: Password1 +uid: GaudetMK +givenName: Koji +mail: GaudetMK@36a375859cdd487ea0bae44e1c40b92f.bitwarden.com +carLicense: GGFKNU +departmentNumber: 6776 +employeeType: Employee +homePhone: +1 206 480-5011 +initials: K. G. +mobile: +1 206 489-4342 +pager: +1 206 741-7484 +roomNumber: 8285 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Iva Pilote,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Iva Pilote +sn: Pilote +description: This is Iva Pilote's description +facsimileTelephoneNumber: +1 206 961-8570 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 280-6012 +title: Associate Human Resources Architect +userPassword: Password1 +uid: PiloteI +givenName: Iva +mail: PiloteI@c1ba14a57c91416b9263e6ed2bcbb54e.bitwarden.com +carLicense: RQ6H6F +departmentNumber: 3227 +employeeType: Contract +homePhone: +1 206 622-5252 +initials: I. P. +mobile: +1 206 590-6337 +pager: +1 206 378-5496 +roomNumber: 8453 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Caridad Spolar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caridad Spolar +sn: Spolar +description: This is Caridad Spolar's description +facsimileTelephoneNumber: +1 804 745-5502 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 779-5396 +title: Chief Product Testing Grunt +userPassword: Password1 +uid: SpolarC +givenName: Caridad +mail: SpolarC@67e1d92e08fe4a64be64c20e9ec9029c.bitwarden.com +carLicense: XJQ4KQ +departmentNumber: 7134 +employeeType: Normal +homePhone: +1 804 623-8363 +initials: C. S. +mobile: +1 804 998-4803 +pager: +1 804 850-3109 +roomNumber: 9800 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elenore Jatar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elenore Jatar +sn: Jatar +description: This is Elenore Jatar's description +facsimileTelephoneNumber: +1 804 858-5810 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 380-2398 +title: Master Payroll Figurehead +userPassword: Password1 +uid: JatarE +givenName: Elenore +mail: JatarE@f159a3a05dc14db0911c353e03a8ce19.bitwarden.com +carLicense: RUJVD0 +departmentNumber: 7009 +employeeType: Employee +homePhone: +1 804 327-4691 +initials: E. J. +mobile: +1 804 632-7516 +pager: +1 804 949-7789 +roomNumber: 9349 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Otha Scheffler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Otha Scheffler +sn: Scheffler +description: This is Otha Scheffler's description +facsimileTelephoneNumber: +1 408 929-5430 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 931-3315 +title: Master Product Development Pinhead +userPassword: Password1 +uid: SchefflO +givenName: Otha +mail: SchefflO@80fa9db759cf45d8a9f0fb7fa92c1396.bitwarden.com +carLicense: YAXCNY +departmentNumber: 7730 +employeeType: Employee +homePhone: +1 408 922-2949 +initials: O. S. +mobile: +1 408 141-2137 +pager: +1 408 526-7410 +roomNumber: 9322 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Janot Greenway,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janot Greenway +sn: Greenway +description: This is Janot Greenway's description +facsimileTelephoneNumber: +1 804 627-1848 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 272-7771 +title: Chief Human Resources Czar +userPassword: Password1 +uid: GreenwaJ +givenName: Janot +mail: GreenwaJ@44fa0b06635a4a55b59882def7b69891.bitwarden.com +carLicense: 6UL5G3 +departmentNumber: 6704 +employeeType: Normal +homePhone: +1 804 923-6927 +initials: J. G. +mobile: +1 804 222-1609 +pager: +1 804 237-2728 +roomNumber: 9085 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rowan Hicks,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rowan Hicks +sn: Hicks +description: This is Rowan Hicks's description +facsimileTelephoneNumber: +1 415 278-6960 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 986-7650 +title: Master Product Testing Czar +userPassword: Password1 +uid: HicksR +givenName: Rowan +mail: HicksR@a3e17557b4384961a999c1890d509b79.bitwarden.com +carLicense: 7B0YWN +departmentNumber: 3098 +employeeType: Employee +homePhone: +1 415 216-8862 +initials: R. H. +mobile: +1 415 290-2230 +pager: +1 415 342-2207 +roomNumber: 8061 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bertina Harkness,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bertina Harkness +sn: Harkness +description: This is Bertina Harkness's description +facsimileTelephoneNumber: +1 213 535-9595 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 107-3574 +title: Chief Management President +userPassword: Password1 +uid: HarknesB +givenName: Bertina +mail: HarknesB@850cbba5cfd34abd81656df859ecb75f.bitwarden.com +carLicense: T7500L +departmentNumber: 6060 +employeeType: Normal +homePhone: +1 213 365-5400 +initials: B. H. +mobile: +1 213 395-7948 +pager: +1 213 908-6323 +roomNumber: 9715 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmelita Grimble +sn: Grimble +description: This is Carmelita Grimble's description +facsimileTelephoneNumber: +1 408 716-9935 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 638-2397 +title: Master Human Resources Mascot +userPassword: Password1 +uid: GrimbleC +givenName: Carmelita +mail: GrimbleC@a6e3e90234e3445ebd3b85eaa541b715.bitwarden.com +carLicense: TB1OHR +departmentNumber: 1835 +employeeType: Employee +homePhone: +1 408 623-2628 +initials: C. G. +mobile: +1 408 751-5859 +pager: +1 408 180-6799 +roomNumber: 8851 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Misbah Desautels,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Misbah Desautels +sn: Desautels +description: This is Misbah Desautels's description +facsimileTelephoneNumber: +1 213 708-7020 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 213 737-1732 +title: Junior Payroll Writer +userPassword: Password1 +uid: DesauteM +givenName: Misbah +mail: DesauteM@17893613ce1c4281965c9aa5767bbf90.bitwarden.com +carLicense: O4CG39 +departmentNumber: 4427 +employeeType: Employee +homePhone: +1 213 298-1701 +initials: M. D. +mobile: +1 213 965-5966 +pager: +1 213 150-8965 +roomNumber: 9799 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=TakWai Miranda,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: TakWai Miranda +sn: Miranda +description: This is TakWai Miranda's description +facsimileTelephoneNumber: +1 206 730-2385 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 496-8495 +title: Junior Peons Fellow +userPassword: Password1 +uid: MirandaT +givenName: TakWai +mail: MirandaT@4a0e814607ef4adf977758aa230a12dd.bitwarden.com +carLicense: LUV247 +departmentNumber: 5236 +employeeType: Employee +homePhone: +1 206 698-8739 +initials: T. M. +mobile: +1 206 227-6850 +pager: +1 206 483-8076 +roomNumber: 9112 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Blisse Silverman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blisse Silverman +sn: Silverman +description: This is Blisse Silverman's description +facsimileTelephoneNumber: +1 510 147-2960 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 606-3378 +title: Associate Product Testing Admin +userPassword: Password1 +uid: SilvermB +givenName: Blisse +mail: SilvermB@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com +carLicense: GYK9FR +departmentNumber: 7132 +employeeType: Contract +homePhone: +1 510 251-9998 +initials: B. S. +mobile: +1 510 337-2761 +pager: +1 510 252-3577 +roomNumber: 9394 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nong Saidzadeh +sn: Saidzadeh +description: This is Nong Saidzadeh's description +facsimileTelephoneNumber: +1 804 109-8565 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 804 835-5462 +title: Associate Product Development Mascot +userPassword: Password1 +uid: SaidzadN +givenName: Nong +mail: SaidzadN@3fc70e948ed143488b3a65dc900da1f7.bitwarden.com +carLicense: A65U5J +departmentNumber: 8866 +employeeType: Employee +homePhone: +1 804 951-3487 +initials: N. S. +mobile: +1 804 507-4610 +pager: +1 804 719-4524 +roomNumber: 9287 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glyn Vasudeva +sn: Vasudeva +description: This is Glyn Vasudeva's description +facsimileTelephoneNumber: +1 804 190-7717 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 691-8336 +title: Supreme Payroll Technician +userPassword: Password1 +uid: VasudevG +givenName: Glyn +mail: VasudevG@514c4dabf5514f759283b3fa82dba706.bitwarden.com +carLicense: 8UMI4Q +departmentNumber: 7617 +employeeType: Contract +homePhone: +1 804 638-8229 +initials: G. V. +mobile: +1 804 310-4550 +pager: +1 804 278-7438 +roomNumber: 8611 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nerty Longchamps,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nerty Longchamps +sn: Longchamps +description: This is Nerty Longchamps's description +facsimileTelephoneNumber: +1 804 391-5766 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 464-2912 +title: Associate Management Developer +userPassword: Password1 +uid: LongchaN +givenName: Nerty +mail: LongchaN@43f8c4083e544056b3c9e572e90b60ab.bitwarden.com +carLicense: MX2A03 +departmentNumber: 8583 +employeeType: Normal +homePhone: +1 804 773-7006 +initials: N. L. +mobile: +1 804 777-5358 +pager: +1 804 879-2227 +roomNumber: 9573 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aniko Jaakkola +sn: Jaakkola +description: This is Aniko Jaakkola's description +facsimileTelephoneNumber: +1 408 106-3193 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 280-1014 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: JaakkolA +givenName: Aniko +mail: JaakkolA@4da7d564972d46f2924a6a8ae018f420.bitwarden.com +carLicense: W13V7H +departmentNumber: 9597 +employeeType: Contract +homePhone: +1 408 489-5851 +initials: A. J. +mobile: +1 408 518-3883 +pager: +1 408 778-7184 +roomNumber: 9990 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hilary Mendonca,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilary Mendonca +sn: Mendonca +description: This is Hilary Mendonca's description +facsimileTelephoneNumber: +1 818 616-2942 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 818 176-4320 +title: Chief Peons Warrior +userPassword: Password1 +uid: MendoncH +givenName: Hilary +mail: MendoncH@1b0566a255d64dd68603a81a67ba1612.bitwarden.com +carLicense: X50JNK +departmentNumber: 2187 +employeeType: Contract +homePhone: +1 818 667-8408 +initials: H. M. +mobile: +1 818 154-5223 +pager: +1 818 597-8766 +roomNumber: 9341 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vivien Seager,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivien Seager +sn: Seager +description: This is Vivien Seager's description +facsimileTelephoneNumber: +1 804 443-3578 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 179-6813 +title: Supreme Payroll Dictator +userPassword: Password1 +uid: SeagerV +givenName: Vivien +mail: SeagerV@f2fa8ee45795461bbc9031c0c39e2316.bitwarden.com +carLicense: T0XBIM +departmentNumber: 3993 +employeeType: Employee +homePhone: +1 804 539-8272 +initials: V. S. +mobile: +1 804 918-7122 +pager: +1 804 513-8699 +roomNumber: 9098 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Estele Dasch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estele Dasch +sn: Dasch +description: This is Estele Dasch's description +facsimileTelephoneNumber: +1 206 527-5923 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 206 397-5968 +title: Supreme Janitorial Sales Rep +userPassword: Password1 +uid: DaschE +givenName: Estele +mail: DaschE@f7b0e9e87641416f8b0c6d87c885e484.bitwarden.com +carLicense: F232DM +departmentNumber: 1714 +employeeType: Contract +homePhone: +1 206 967-5978 +initials: E. D. +mobile: +1 206 943-9147 +pager: +1 206 490-8555 +roomNumber: 8224 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Joyous Belson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joyous Belson +sn: Belson +description: This is Joyous Belson's description +facsimileTelephoneNumber: +1 804 854-8930 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 215-1734 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: BelsonJ +givenName: Joyous +mail: BelsonJ@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com +carLicense: K4RNR9 +departmentNumber: 3505 +employeeType: Employee +homePhone: +1 804 805-8975 +initials: J. B. +mobile: +1 804 787-8796 +pager: +1 804 610-1345 +roomNumber: 9856 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zorine OLeary,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zorine OLeary +sn: OLeary +description: This is Zorine OLeary's description +facsimileTelephoneNumber: +1 213 575-9102 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 879-1199 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: OLearyZ +givenName: Zorine +mail: OLearyZ@a19b5183a0f945f9a17fc014e4433008.bitwarden.com +carLicense: 0XFW4N +departmentNumber: 8304 +employeeType: Employee +homePhone: +1 213 633-9282 +initials: Z. O. +mobile: +1 213 986-6954 +pager: +1 213 741-6216 +roomNumber: 8122 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kanata Kilby,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanata Kilby +sn: Kilby +description: This is Kanata Kilby's description +facsimileTelephoneNumber: +1 206 857-1912 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 356-2490 +title: Junior Peons Engineer +userPassword: Password1 +uid: KilbyK +givenName: Kanata +mail: KilbyK@340ca4c3449a4788b8cf0565433518e3.bitwarden.com +carLicense: HNEDB4 +departmentNumber: 6647 +employeeType: Contract +homePhone: +1 206 442-2174 +initials: K. K. +mobile: +1 206 886-5388 +pager: +1 206 565-3863 +roomNumber: 8962 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Peder Gaylor,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peder Gaylor +sn: Gaylor +description: This is Peder Gaylor's description +facsimileTelephoneNumber: +1 510 413-1966 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 743-7178 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: GaylorP +givenName: Peder +mail: GaylorP@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com +carLicense: OIG09R +departmentNumber: 8746 +employeeType: Normal +homePhone: +1 510 983-4424 +initials: P. G. +mobile: +1 510 891-9412 +pager: +1 510 623-7868 +roomNumber: 8008 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carter MacMaid,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carter MacMaid +sn: MacMaid +description: This is Carter MacMaid's description +facsimileTelephoneNumber: +1 510 290-7608 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 968-2072 +title: Chief Payroll Architect +userPassword: Password1 +uid: MacMaidC +givenName: Carter +mail: MacMaidC@f29a02eb60f740478f80d3c6d60d0269.bitwarden.com +carLicense: G61E7M +departmentNumber: 1724 +employeeType: Employee +homePhone: +1 510 545-7071 +initials: C. M. +mobile: +1 510 570-5378 +pager: +1 510 267-2524 +roomNumber: 8317 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Man Dacre,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Man Dacre +sn: Dacre +description: This is Man Dacre's description +facsimileTelephoneNumber: +1 408 637-2467 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 605-9727 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: DacreM +givenName: Man +mail: DacreM@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com +carLicense: 6MB74Q +departmentNumber: 9847 +employeeType: Employee +homePhone: +1 408 681-8773 +initials: M. D. +mobile: +1 408 483-6351 +pager: +1 408 131-9463 +roomNumber: 9897 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Theresina Torrell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theresina Torrell +sn: Torrell +description: This is Theresina Torrell's description +facsimileTelephoneNumber: +1 408 546-4361 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 408 515-7906 +title: Associate Administrative Visionary +userPassword: Password1 +uid: TorrellT +givenName: Theresina +mail: TorrellT@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com +carLicense: 7XML18 +departmentNumber: 8842 +employeeType: Normal +homePhone: +1 408 669-5987 +initials: T. T. +mobile: +1 408 795-8323 +pager: +1 408 477-8703 +roomNumber: 9801 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Emelda Neely,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emelda Neely +sn: Neely +description: This is Emelda Neely's description +facsimileTelephoneNumber: +1 510 237-4568 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 271-3753 +title: Associate Human Resources Director +userPassword: Password1 +uid: NeelyE +givenName: Emelda +mail: NeelyE@c66e42835f2044cdbf51d67978ad100e.bitwarden.com +carLicense: POQ1N9 +departmentNumber: 5526 +employeeType: Contract +homePhone: +1 510 349-2736 +initials: E. N. +mobile: +1 510 346-8580 +pager: +1 510 407-1843 +roomNumber: 8468 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Avinash Kingaby,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avinash Kingaby +sn: Kingaby +description: This is Avinash Kingaby's description +facsimileTelephoneNumber: +1 206 673-7916 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 949-5633 +title: Junior Product Development Assistant +userPassword: Password1 +uid: KingabyA +givenName: Avinash +mail: KingabyA@7f21c59f99c4477b9018498e8a1c114e.bitwarden.com +carLicense: 4QQG0T +departmentNumber: 8659 +employeeType: Normal +homePhone: +1 206 528-2053 +initials: A. K. +mobile: +1 206 668-9151 +pager: +1 206 211-1183 +roomNumber: 8922 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Crysta Sloan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crysta Sloan +sn: Sloan +description: This is Crysta Sloan's description +facsimileTelephoneNumber: +1 818 362-3405 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 818 194-9805 +title: Associate Peons Stooge +userPassword: Password1 +uid: SloanC +givenName: Crysta +mail: SloanC@97b3948d7aca41509a9b5d6b2dac6af7.bitwarden.com +carLicense: 7QYW8H +departmentNumber: 8874 +employeeType: Contract +homePhone: +1 818 309-4825 +initials: C. S. +mobile: +1 818 714-8032 +pager: +1 818 337-6391 +roomNumber: 9886 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Buck Auerbach,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Buck Auerbach +sn: Auerbach +description: This is Buck Auerbach's description +facsimileTelephoneNumber: +1 510 755-8505 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 532-3968 +title: Supreme Product Development Developer +userPassword: Password1 +uid: AuerbacB +givenName: Buck +mail: AuerbacB@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com +carLicense: SJK5E6 +departmentNumber: 6186 +employeeType: Contract +homePhone: +1 510 287-1777 +initials: B. A. +mobile: +1 510 568-6003 +pager: +1 510 407-3396 +roomNumber: 8917 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fallon Windom,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fallon Windom +sn: Windom +description: This is Fallon Windom's description +facsimileTelephoneNumber: +1 415 951-1903 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 415 196-5802 +title: Supreme Payroll Grunt +userPassword: Password1 +uid: WindomF +givenName: Fallon +mail: WindomF@fa8dd30a7166419e97723182660d3ed8.bitwarden.com +carLicense: JSOFU7 +departmentNumber: 2010 +employeeType: Normal +homePhone: +1 415 806-7461 +initials: F. W. +mobile: +1 415 121-9241 +pager: +1 415 449-2584 +roomNumber: 8916 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernadine Galluzzi +sn: Galluzzi +description: This is Bernadine Galluzzi's description +facsimileTelephoneNumber: +1 408 899-4774 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 508-5330 +title: Associate Administrative Czar +userPassword: Password1 +uid: GalluzzB +givenName: Bernadine +mail: GalluzzB@29091675735e43659fad673363e0d6e8.bitwarden.com +carLicense: VI9ESY +departmentNumber: 7310 +employeeType: Contract +homePhone: +1 408 337-3192 +initials: B. G. +mobile: +1 408 168-3816 +pager: +1 408 105-8031 +roomNumber: 9500 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sapphira Lacroix +sn: Lacroix +description: This is Sapphira Lacroix's description +facsimileTelephoneNumber: +1 408 160-2212 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 408 481-9050 +title: Chief Administrative Technician +userPassword: Password1 +uid: LacroixS +givenName: Sapphira +mail: LacroixS@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com +carLicense: 5K35I2 +departmentNumber: 4009 +employeeType: Normal +homePhone: +1 408 609-7732 +initials: S. L. +mobile: +1 408 724-1711 +pager: +1 408 516-1939 +roomNumber: 9378 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Samir Wesenberg,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Samir Wesenberg +sn: Wesenberg +description: This is Samir Wesenberg's description +facsimileTelephoneNumber: +1 415 683-2056 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 765-5998 +title: Chief Administrative Evangelist +userPassword: Password1 +uid: WesenbeS +givenName: Samir +mail: WesenbeS@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com +carLicense: Q66RKT +departmentNumber: 3307 +employeeType: Normal +homePhone: +1 415 900-2213 +initials: S. W. +mobile: +1 415 779-5959 +pager: +1 415 101-4957 +roomNumber: 8951 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hildegaard Valko,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hildegaard Valko +sn: Valko +description: This is Hildegaard Valko's description +facsimileTelephoneNumber: +1 804 945-5282 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 187-2578 +title: Junior Management Sales Rep +userPassword: Password1 +uid: ValkoH +givenName: Hildegaard +mail: ValkoH@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com +carLicense: BGVH5V +departmentNumber: 6210 +employeeType: Employee +homePhone: +1 804 706-3314 +initials: H. V. +mobile: +1 804 237-3515 +pager: +1 804 767-8006 +roomNumber: 8618 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Azmina Irvine,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Azmina Irvine +sn: Irvine +description: This is Azmina Irvine's description +facsimileTelephoneNumber: +1 213 800-8707 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 803-9595 +title: Associate Peons Manager +userPassword: Password1 +uid: IrvineA +givenName: Azmina +mail: IrvineA@68fc69596c6045e19e9dcc172277d770.bitwarden.com +carLicense: OYU3JB +departmentNumber: 3915 +employeeType: Contract +homePhone: +1 213 522-5251 +initials: A. I. +mobile: +1 213 300-6621 +pager: +1 213 348-3808 +roomNumber: 9174 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cortland Kwa,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cortland Kwa +sn: Kwa +description: This is Cortland Kwa's description +facsimileTelephoneNumber: +1 510 294-5584 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 115-3084 +title: Supreme Administrative Punk +userPassword: Password1 +uid: KwaC +givenName: Cortland +mail: KwaC@08761145d0ee492388590ebc755ffc11.bitwarden.com +carLicense: YPYQF3 +departmentNumber: 6815 +employeeType: Normal +homePhone: +1 510 871-8885 +initials: C. K. +mobile: +1 510 611-7857 +pager: +1 510 714-4341 +roomNumber: 8232 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Franz Artspssa,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franz Artspssa +sn: Artspssa +description: This is Franz Artspssa's description +facsimileTelephoneNumber: +1 818 274-7974 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 866-2843 +title: Chief Administrative Warrior +userPassword: Password1 +uid: ArtspssF +givenName: Franz +mail: ArtspssF@c47a29535a2d448ab99d5532c1ef090b.bitwarden.com +carLicense: OKO7LD +departmentNumber: 2656 +employeeType: Employee +homePhone: +1 818 451-9971 +initials: F. A. +mobile: +1 818 426-8366 +pager: +1 818 621-1996 +roomNumber: 9611 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annelise KingsleyEvans +sn: KingsleyEvans +description: This is Annelise KingsleyEvans's description +facsimileTelephoneNumber: +1 510 881-6428 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 920-5384 +title: Master Janitorial Dictator +userPassword: Password1 +uid: KingsleA +givenName: Annelise +mail: KingsleA@e510453d1c104238a1217f13ba1acf7e.bitwarden.com +carLicense: CY0IEK +departmentNumber: 6686 +employeeType: Employee +homePhone: +1 510 993-6171 +initials: A. K. +mobile: +1 510 231-2650 +pager: +1 510 879-5206 +roomNumber: 9903 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marrissa Ronan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marrissa Ronan +sn: Ronan +description: This is Marrissa Ronan's description +facsimileTelephoneNumber: +1 408 798-8559 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 213-7305 +title: Master Peons Consultant +userPassword: Password1 +uid: RonanM +givenName: Marrissa +mail: RonanM@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com +carLicense: 39A1IW +departmentNumber: 8945 +employeeType: Employee +homePhone: +1 408 336-1106 +initials: M. R. +mobile: +1 408 907-9515 +pager: +1 408 938-5501 +roomNumber: 9637 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Stanislas Sehgal,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stanislas Sehgal +sn: Sehgal +description: This is Stanislas Sehgal's description +facsimileTelephoneNumber: +1 415 470-8337 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 924-8346 +title: Supreme Management Warrior +userPassword: Password1 +uid: SehgalS +givenName: Stanislas +mail: SehgalS@b165e0007c404dd983e15ae72daa2756.bitwarden.com +carLicense: Y2G6XO +departmentNumber: 7576 +employeeType: Contract +homePhone: +1 415 222-9853 +initials: S. S. +mobile: +1 415 317-4043 +pager: +1 415 431-3289 +roomNumber: 8110 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Woody Morocz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Woody Morocz +sn: Morocz +description: This is Woody Morocz's description +facsimileTelephoneNumber: +1 415 318-3505 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 779-1764 +title: Associate Payroll Architect +userPassword: Password1 +uid: MoroczW +givenName: Woody +mail: MoroczW@753c6429447d4f10a50d93378fa5dbb6.bitwarden.com +carLicense: R69LU6 +departmentNumber: 5854 +employeeType: Normal +homePhone: +1 415 821-1539 +initials: W. M. +mobile: +1 415 765-7978 +pager: +1 415 893-7323 +roomNumber: 8462 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karla Proffit,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karla Proffit +sn: Proffit +description: This is Karla Proffit's description +facsimileTelephoneNumber: +1 415 101-4264 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 659-9779 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: ProffitK +givenName: Karla +mail: ProffitK@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com +carLicense: AAYGQB +departmentNumber: 9899 +employeeType: Normal +homePhone: +1 415 609-4872 +initials: K. P. +mobile: +1 415 296-8997 +pager: +1 415 146-4937 +roomNumber: 8961 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynwood Nigam +sn: Nigam +description: This is Lynwood Nigam's description +facsimileTelephoneNumber: +1 408 654-7577 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 536-3277 +title: Associate Human Resources Assistant +userPassword: Password1 +uid: NigamL +givenName: Lynwood +mail: NigamL@714f1bf2d24848f0ad123708496baebc.bitwarden.com +carLicense: UMC8KG +departmentNumber: 1368 +employeeType: Employee +homePhone: +1 408 470-8749 +initials: L. N. +mobile: +1 408 536-6741 +pager: +1 408 522-7938 +roomNumber: 9273 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Julianna Varughese,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julianna Varughese +sn: Varughese +description: This is Julianna Varughese's description +facsimileTelephoneNumber: +1 804 424-4592 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 562-2379 +title: Master Management Fellow +userPassword: Password1 +uid: VarugheJ +givenName: Julianna +mail: VarugheJ@2ad53b2716404c5fb1c859b311309552.bitwarden.com +carLicense: LKY54W +departmentNumber: 3593 +employeeType: Normal +homePhone: +1 804 736-7904 +initials: J. V. +mobile: +1 804 359-3427 +pager: +1 804 907-6133 +roomNumber: 9245 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elset Neustifter,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elset Neustifter +sn: Neustifter +description: This is Elset Neustifter's description +facsimileTelephoneNumber: +1 510 884-6357 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 433-5231 +title: Chief Peons Mascot +userPassword: Password1 +uid: NeustifE +givenName: Elset +mail: NeustifE@c3ac4e6d63bf42469f2e271613915683.bitwarden.com +carLicense: VVVUWU +departmentNumber: 8700 +employeeType: Normal +homePhone: +1 510 234-8474 +initials: E. N. +mobile: +1 510 654-5412 +pager: +1 510 952-5097 +roomNumber: 8985 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Grete Daymond,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grete Daymond +sn: Daymond +description: This is Grete Daymond's description +facsimileTelephoneNumber: +1 415 351-9466 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 679-7004 +title: Master Peons Evangelist +userPassword: Password1 +uid: DaymondG +givenName: Grete +mail: DaymondG@e1917d4b55f54cdabe70551a3f731376.bitwarden.com +carLicense: ODVBCQ +departmentNumber: 6619 +employeeType: Normal +homePhone: +1 415 793-3159 +initials: G. D. +mobile: +1 415 117-5773 +pager: +1 415 848-5524 +roomNumber: 8073 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Thekla Wokoma,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thekla Wokoma +sn: Wokoma +description: This is Thekla Wokoma's description +facsimileTelephoneNumber: +1 206 789-2529 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 206 839-1785 +title: Supreme Management Director +userPassword: Password1 +uid: WokomaT +givenName: Thekla +mail: WokomaT@9e5927de12b74c838a654764d2be5fec.bitwarden.com +carLicense: WGYN8A +departmentNumber: 5668 +employeeType: Contract +homePhone: +1 206 525-6049 +initials: T. W. +mobile: +1 206 551-4053 +pager: +1 206 128-9026 +roomNumber: 9314 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sika Koller,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sika Koller +sn: Koller +description: This is Sika Koller's description +facsimileTelephoneNumber: +1 408 260-3880 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 561-4274 +title: Master Payroll Czar +userPassword: Password1 +uid: KollerS +givenName: Sika +mail: KollerS@ae0c95aead594ff9b592cce5fd7bcc50.bitwarden.com +carLicense: CXBAPH +departmentNumber: 9227 +employeeType: Contract +homePhone: +1 408 705-9260 +initials: S. K. +mobile: +1 408 564-3541 +pager: +1 408 874-9023 +roomNumber: 9770 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sukey Strauss,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sukey Strauss +sn: Strauss +description: This is Sukey Strauss's description +facsimileTelephoneNumber: +1 818 922-5084 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 914-1844 +title: Chief Administrative Developer +userPassword: Password1 +uid: StraussS +givenName: Sukey +mail: StraussS@5bc61e2f4a114bf3bbb2a4d0973b7fa5.bitwarden.com +carLicense: ORY29U +departmentNumber: 9030 +employeeType: Normal +homePhone: +1 818 342-8816 +initials: S. S. +mobile: +1 818 196-5290 +pager: +1 818 726-2053 +roomNumber: 8808 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Icy Foeppel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Icy Foeppel +sn: Foeppel +description: This is Icy Foeppel's description +facsimileTelephoneNumber: +1 213 618-9093 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 363-4924 +title: Chief Product Development Vice President +userPassword: Password1 +uid: FoeppelI +givenName: Icy +mail: FoeppelI@cbaf8ba54a4e4d25a6793e6fa4afc667.bitwarden.com +carLicense: O6NSRD +departmentNumber: 5889 +employeeType: Normal +homePhone: +1 213 128-1496 +initials: I. F. +mobile: +1 213 794-6155 +pager: +1 213 921-8190 +roomNumber: 8753 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yongli Barrows,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yongli Barrows +sn: Barrows +description: This is Yongli Barrows's description +facsimileTelephoneNumber: +1 408 310-7046 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 219-3200 +title: Junior Peons Engineer +userPassword: Password1 +uid: BarrowsY +givenName: Yongli +mail: BarrowsY@4790190082cb4f5abacc6cccbd58144a.bitwarden.com +carLicense: 40UNY5 +departmentNumber: 9059 +employeeType: Normal +homePhone: +1 408 514-1300 +initials: Y. B. +mobile: +1 408 288-6925 +pager: +1 408 901-9917 +roomNumber: 8724 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Xaviera Broca,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xaviera Broca +sn: Broca +description: This is Xaviera Broca's description +facsimileTelephoneNumber: +1 510 672-3176 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 135-9342 +title: Master Product Development Sales Rep +userPassword: Password1 +uid: BrocaX +givenName: Xaviera +mail: BrocaX@a0c1a8d85b65449b85c62e8e6a7af57f.bitwarden.com +carLicense: EKI896 +departmentNumber: 5155 +employeeType: Contract +homePhone: +1 510 592-6915 +initials: X. B. +mobile: +1 510 888-3588 +pager: +1 510 367-3834 +roomNumber: 9442 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Scptest Aucoin +sn: Aucoin +description: This is Scptest Aucoin's description +facsimileTelephoneNumber: +1 818 216-9810 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 702-5813 +title: Master Product Testing President +userPassword: Password1 +uid: AucoinS +givenName: Scptest +mail: AucoinS@0370bf4c8f0643cdbb05f71db44e6eda.bitwarden.com +carLicense: UQKSO6 +departmentNumber: 7442 +employeeType: Contract +homePhone: +1 818 802-2720 +initials: S. A. +mobile: +1 818 737-5697 +pager: +1 818 106-3410 +roomNumber: 8263 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lanie Lowrie +sn: Lowrie +description: This is Lanie Lowrie's description +facsimileTelephoneNumber: +1 408 100-1066 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 397-3716 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: LowrieL +givenName: Lanie +mail: LowrieL@c754a8f7d7fa49ebaf2160183ff968df.bitwarden.com +carLicense: JV2Y1U +departmentNumber: 7297 +employeeType: Employee +homePhone: +1 408 707-6914 +initials: L. L. +mobile: +1 408 848-6166 +pager: +1 408 491-1300 +roomNumber: 8266 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Junette Foos,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Junette Foos +sn: Foos +description: This is Junette Foos's description +facsimileTelephoneNumber: +1 415 472-5665 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 402-1886 +title: Junior Product Development Grunt +userPassword: Password1 +uid: FoosJ +givenName: Junette +mail: FoosJ@541638be8f3848afaf3f77f1a6d8871f.bitwarden.com +carLicense: BJ6H9P +departmentNumber: 9072 +employeeType: Normal +homePhone: +1 415 719-5353 +initials: J. F. +mobile: +1 415 414-5588 +pager: +1 415 663-4231 +roomNumber: 9620 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ashraf Denter,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashraf Denter +sn: Denter +description: This is Ashraf Denter's description +facsimileTelephoneNumber: +1 804 531-8186 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 193-9878 +title: Supreme Product Testing Punk +userPassword: Password1 +uid: DenterA +givenName: Ashraf +mail: DenterA@1f6908f83168487381e06e15278e01a3.bitwarden.com +carLicense: IJNMAE +departmentNumber: 3291 +employeeType: Contract +homePhone: +1 804 997-4267 +initials: A. D. +mobile: +1 804 283-4299 +pager: +1 804 795-2631 +roomNumber: 8559 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Amelina Marceau,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amelina Marceau +sn: Marceau +description: This is Amelina Marceau's description +facsimileTelephoneNumber: +1 206 410-3940 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 462-9038 +title: Supreme Management Madonna +userPassword: Password1 +uid: MarceauA +givenName: Amelina +mail: MarceauA@cfc30ea4a75d4490969ab077dd8e92a6.bitwarden.com +carLicense: BQ4HR5 +departmentNumber: 3233 +employeeType: Contract +homePhone: +1 206 448-5292 +initials: A. M. +mobile: +1 206 631-2796 +pager: +1 206 959-2069 +roomNumber: 8745 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dnsproj Hargreaves +sn: Hargreaves +description: This is Dnsproj Hargreaves's description +facsimileTelephoneNumber: +1 804 337-4840 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 644-5052 +title: Supreme Product Development Manager +userPassword: Password1 +uid: HargreaD +givenName: Dnsproj +mail: HargreaD@96d9bfed88fc4c2fb6c7e654ef7ed3a4.bitwarden.com +carLicense: 6NAPIW +departmentNumber: 5818 +employeeType: Normal +homePhone: +1 804 672-4430 +initials: D. H. +mobile: +1 804 326-6755 +pager: +1 804 210-9802 +roomNumber: 9666 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yuen Huppert,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yuen Huppert +sn: Huppert +description: This is Yuen Huppert's description +facsimileTelephoneNumber: +1 213 268-5500 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 876-9186 +title: Associate Product Development Janitor +userPassword: Password1 +uid: HuppertY +givenName: Yuen +mail: HuppertY@4cf289446e164bf8828133d117ff1a2f.bitwarden.com +carLicense: PN5FKS +departmentNumber: 7265 +employeeType: Employee +homePhone: +1 213 304-7696 +initials: Y. H. +mobile: +1 213 695-9176 +pager: +1 213 929-6181 +roomNumber: 9428 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vijai Bergeron,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vijai Bergeron +sn: Bergeron +description: This is Vijai Bergeron's description +facsimileTelephoneNumber: +1 213 370-4947 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 175-8506 +title: Supreme Administrative Director +userPassword: Password1 +uid: BergeroV +givenName: Vijai +mail: BergeroV@5781c2590a3143098713fe135c23c693.bitwarden.com +carLicense: OU45R3 +departmentNumber: 1825 +employeeType: Normal +homePhone: +1 213 248-7331 +initials: V. B. +mobile: +1 213 174-8506 +pager: +1 213 786-4565 +roomNumber: 8677 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imtaz Saltamartini +sn: Saltamartini +description: This is Imtaz Saltamartini's description +facsimileTelephoneNumber: +1 213 300-8229 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 745-8150 +title: Junior Human Resources Technician +userPassword: Password1 +uid: SaltamaI +givenName: Imtaz +mail: SaltamaI@a47f14ec57a442c6be46361f07eafc1b.bitwarden.com +carLicense: 42U6VY +departmentNumber: 8403 +employeeType: Employee +homePhone: +1 213 986-9418 +initials: I. S. +mobile: +1 213 239-8446 +pager: +1 213 982-5319 +roomNumber: 9239 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaukat Simzer +sn: Simzer +description: This is Shaukat Simzer's description +facsimileTelephoneNumber: +1 408 356-7244 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 361-4507 +title: Master Product Testing Manager +userPassword: Password1 +uid: SimzerS +givenName: Shaukat +mail: SimzerS@0d49ff7674854a67967e989b8902a24c.bitwarden.com +carLicense: WNS0SH +departmentNumber: 4747 +employeeType: Employee +homePhone: +1 408 128-4626 +initials: S. S. +mobile: +1 408 366-5937 +pager: +1 408 621-1957 +roomNumber: 8889 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Diane Andersen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diane Andersen +sn: Andersen +description: This is Diane Andersen's description +facsimileTelephoneNumber: +1 415 662-7858 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 201-2828 +title: Associate Management Punk +userPassword: Password1 +uid: AnderseD +givenName: Diane +mail: AnderseD@fde818a61bf74c84a96e4a6b3a93254c.bitwarden.com +carLicense: 1KW9AV +departmentNumber: 9376 +employeeType: Normal +homePhone: +1 415 773-7294 +initials: D. A. +mobile: +1 415 488-6858 +pager: +1 415 115-4071 +roomNumber: 9014 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jester Mannion,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jester Mannion +sn: Mannion +description: This is Jester Mannion's description +facsimileTelephoneNumber: +1 408 635-7930 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 408 298-6431 +title: Junior Product Testing Pinhead +userPassword: Password1 +uid: MannionJ +givenName: Jester +mail: MannionJ@b6e18f81bdff48d2be264df85bc74095.bitwarden.com +carLicense: AWK9DU +departmentNumber: 9932 +employeeType: Employee +homePhone: +1 408 148-1788 +initials: J. M. +mobile: +1 408 818-1210 +pager: +1 408 687-5161 +roomNumber: 9012 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Christy Townsel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christy Townsel +sn: Townsel +description: This is Christy Townsel's description +facsimileTelephoneNumber: +1 213 225-6967 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 251-1694 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: TownselC +givenName: Christy +mail: TownselC@8227646c55034cf9b21757fce681b53f.bitwarden.com +carLicense: LXE80L +departmentNumber: 7840 +employeeType: Employee +homePhone: +1 213 822-5673 +initials: C. T. +mobile: +1 213 571-2950 +pager: +1 213 178-4571 +roomNumber: 9626 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernardine Sandell +sn: Sandell +description: This is Bernardine Sandell's description +facsimileTelephoneNumber: +1 510 262-1041 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 532-7473 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: SandellB +givenName: Bernardine +mail: SandellB@3e500286762446ec8a3697b2944efa12.bitwarden.com +carLicense: S3INB8 +departmentNumber: 5762 +employeeType: Employee +homePhone: +1 510 847-9249 +initials: B. S. +mobile: +1 510 136-7439 +pager: +1 510 986-6545 +roomNumber: 9731 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Raine Assistance,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raine Assistance +sn: Assistance +description: This is Raine Assistance's description +facsimileTelephoneNumber: +1 804 969-9671 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 154-5840 +title: Junior Payroll Czar +userPassword: Password1 +uid: AssistaR +givenName: Raine +mail: AssistaR@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com +carLicense: 4FVKL2 +departmentNumber: 4093 +employeeType: Contract +homePhone: +1 804 501-2696 +initials: R. A. +mobile: +1 804 867-4543 +pager: +1 804 661-1308 +roomNumber: 8197 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giampaolo Hoang +sn: Hoang +description: This is Giampaolo Hoang's description +facsimileTelephoneNumber: +1 408 637-9015 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 210-2970 +title: Junior Product Testing Consultant +userPassword: Password1 +uid: HoangG +givenName: Giampaolo +mail: HoangG@e02ff45a3d1d4535aaac64a1cea6a68b.bitwarden.com +carLicense: 88DHSS +departmentNumber: 9870 +employeeType: Contract +homePhone: +1 408 782-3979 +initials: G. H. +mobile: +1 408 276-8242 +pager: +1 408 428-8557 +roomNumber: 9838 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ireland Ciochon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ireland Ciochon +sn: Ciochon +description: This is Ireland Ciochon's description +facsimileTelephoneNumber: +1 408 532-9079 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 482-3682 +title: Junior Administrative Mascot +userPassword: Password1 +uid: CiochonI +givenName: Ireland +mail: CiochonI@e6477a83acf9482988792cb439447756.bitwarden.com +carLicense: 4P8Q75 +departmentNumber: 9729 +employeeType: Normal +homePhone: +1 408 204-8712 +initials: I. C. +mobile: +1 408 458-5827 +pager: +1 408 732-9549 +roomNumber: 9060 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=WaiMan Binner,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WaiMan Binner +sn: Binner +description: This is WaiMan Binner's description +facsimileTelephoneNumber: +1 510 757-3264 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 747-5138 +title: Junior Payroll Technician +userPassword: Password1 +uid: BinnerW +givenName: WaiMan +mail: BinnerW@8cc6e0388936480cbe8d5339b6e6f58a.bitwarden.com +carLicense: 6FHS2I +departmentNumber: 7543 +employeeType: Contract +homePhone: +1 510 258-6719 +initials: W. B. +mobile: +1 510 942-7045 +pager: +1 510 896-3986 +roomNumber: 8251 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ruperta Jodoin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruperta Jodoin +sn: Jodoin +description: This is Ruperta Jodoin's description +facsimileTelephoneNumber: +1 415 865-1622 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 336-4143 +title: Associate Peons Visionary +userPassword: Password1 +uid: JodoinR +givenName: Ruperta +mail: JodoinR@d3284c9107174588867290b3601e936f.bitwarden.com +carLicense: OIGYN6 +departmentNumber: 8487 +employeeType: Employee +homePhone: +1 415 436-8210 +initials: R. J. +mobile: +1 415 643-7402 +pager: +1 415 886-9382 +roomNumber: 9600 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Narrima Tu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Narrima Tu +sn: Tu +description: This is Narrima Tu's description +facsimileTelephoneNumber: +1 213 262-6978 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 344-8253 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: TuN +givenName: Narrima +mail: TuN@42514b410f5644f5ba762f40cca2f3cc.bitwarden.com +carLicense: 06KMVA +departmentNumber: 5281 +employeeType: Contract +homePhone: +1 213 588-4846 +initials: N. T. +mobile: +1 213 577-1782 +pager: +1 213 416-6098 +roomNumber: 9381 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eolanda Archibald +sn: Archibald +description: This is Eolanda Archibald's description +facsimileTelephoneNumber: +1 818 622-4842 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 391-9209 +title: Chief Human Resources Grunt +userPassword: Password1 +uid: ArchibaE +givenName: Eolanda +mail: ArchibaE@753deba7c8fd4a2dae8fd98ba21902e7.bitwarden.com +carLicense: PUFACO +departmentNumber: 8597 +employeeType: Contract +homePhone: +1 818 967-9167 +initials: E. A. +mobile: +1 818 309-6455 +pager: +1 818 151-6502 +roomNumber: 8657 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wallie Pietropaolo +sn: Pietropaolo +description: This is Wallie Pietropaolo's description +facsimileTelephoneNumber: +1 408 691-6031 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 408 578-4310 +title: Supreme Product Testing Manager +userPassword: Password1 +uid: PietropW +givenName: Wallie +mail: PietropW@9a406ba2121745648c9bbba5e667d06f.bitwarden.com +carLicense: 7PK4OI +departmentNumber: 2331 +employeeType: Normal +homePhone: +1 408 189-7636 +initials: W. P. +mobile: +1 408 574-1889 +pager: +1 408 858-4695 +roomNumber: 8330 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorianna DeVries +sn: DeVries +description: This is Lorianna DeVries's description +facsimileTelephoneNumber: +1 818 728-2304 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 522-1573 +title: Chief Human Resources Pinhead +userPassword: Password1 +uid: DeVriesL +givenName: Lorianna +mail: DeVriesL@621ecc47be084539a10e5521c8efa92f.bitwarden.com +carLicense: FCPRLT +departmentNumber: 6757 +employeeType: Normal +homePhone: +1 818 964-7966 +initials: L. D. +mobile: +1 818 744-7938 +pager: +1 818 893-2498 +roomNumber: 9357 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elonore Spieker,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elonore Spieker +sn: Spieker +description: This is Elonore Spieker's description +facsimileTelephoneNumber: +1 415 483-4866 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 284-8900 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: SpiekerE +givenName: Elonore +mail: SpiekerE@4eb1edea9f7c46b6afcdd3596ca826d8.bitwarden.com +carLicense: QWCXWS +departmentNumber: 7915 +employeeType: Employee +homePhone: +1 415 376-3483 +initials: E. S. +mobile: +1 415 888-8323 +pager: +1 415 733-9320 +roomNumber: 9572 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pick Santella,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pick Santella +sn: Santella +description: This is Pick Santella's description +facsimileTelephoneNumber: +1 415 323-7177 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 385-4207 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: SantellP +givenName: Pick +mail: SantellP@769e30d0f6604e35b8172b0e1fcd3695.bitwarden.com +carLicense: W0GGCI +departmentNumber: 3800 +employeeType: Normal +homePhone: +1 415 598-1656 +initials: P. S. +mobile: +1 415 700-1033 +pager: +1 415 347-7569 +roomNumber: 9301 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lynea Newcomb,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynea Newcomb +sn: Newcomb +description: This is Lynea Newcomb's description +facsimileTelephoneNumber: +1 804 760-8481 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 463-6577 +title: Supreme Product Development Sales Rep +userPassword: Password1 +uid: NewcombL +givenName: Lynea +mail: NewcombL@ca8ef169aecd439b84062b84d007e951.bitwarden.com +carLicense: AVTSQI +departmentNumber: 8765 +employeeType: Contract +homePhone: +1 804 204-6467 +initials: L. N. +mobile: +1 804 824-6461 +pager: +1 804 431-2098 +roomNumber: 8517 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yukinaga Brander,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yukinaga Brander +sn: Brander +description: This is Yukinaga Brander's description +facsimileTelephoneNumber: +1 510 981-9211 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 434-4905 +title: Master Peons Sales Rep +userPassword: Password1 +uid: BranderY +givenName: Yukinaga +mail: BranderY@b400fcdf725047b698292665de84946c.bitwarden.com +carLicense: AU5CPS +departmentNumber: 8289 +employeeType: Contract +homePhone: +1 510 310-8038 +initials: Y. B. +mobile: +1 510 249-7377 +pager: +1 510 437-5345 +roomNumber: 9527 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jerrylee Galloway,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jerrylee Galloway +sn: Galloway +description: This is Jerrylee Galloway's description +facsimileTelephoneNumber: +1 818 817-9199 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 563-5856 +title: Associate Peons Technician +userPassword: Password1 +uid: GallowaJ +givenName: Jerrylee +mail: GallowaJ@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com +carLicense: YFRSK9 +departmentNumber: 1081 +employeeType: Contract +homePhone: +1 818 697-6798 +initials: J. G. +mobile: +1 818 362-9753 +pager: +1 818 169-2463 +roomNumber: 9700 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mia Amarsi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mia Amarsi +sn: Amarsi +description: This is Mia Amarsi's description +facsimileTelephoneNumber: +1 213 327-3401 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 754-3677 +title: Supreme Peons Admin +userPassword: Password1 +uid: AmarsiM +givenName: Mia +mail: AmarsiM@b1b5d1efd1034316a83f5b2451301ba7.bitwarden.com +carLicense: DWTAM7 +departmentNumber: 6301 +employeeType: Employee +homePhone: +1 213 276-1739 +initials: M. A. +mobile: +1 213 270-4542 +pager: +1 213 514-1034 +roomNumber: 9281 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Joyous Smecca,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joyous Smecca +sn: Smecca +description: This is Joyous Smecca's description +facsimileTelephoneNumber: +1 213 965-5462 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 620-6010 +title: Master Management Madonna +userPassword: Password1 +uid: SmeccaJ +givenName: Joyous +mail: SmeccaJ@0a781c09ef6744b2865e8b65aa244d80.bitwarden.com +carLicense: UMQ650 +departmentNumber: 4841 +employeeType: Contract +homePhone: +1 213 941-2129 +initials: J. S. +mobile: +1 213 959-9579 +pager: +1 213 600-7298 +roomNumber: 8231 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Larkin Baughan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Larkin Baughan +sn: Baughan +description: This is Larkin Baughan's description +facsimileTelephoneNumber: +1 206 992-4213 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 976-1992 +title: Master Human Resources Fellow +userPassword: Password1 +uid: BaughanL +givenName: Larkin +mail: BaughanL@cfc4bf2e36b5400ca6e0b6d8bcad286e.bitwarden.com +carLicense: EUDO78 +departmentNumber: 4203 +employeeType: Employee +homePhone: +1 206 274-1592 +initials: L. B. +mobile: +1 206 914-4235 +pager: +1 206 475-9492 +roomNumber: 9077 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquelyn Casten +sn: Casten +description: This is Jacquelyn Casten's description +facsimileTelephoneNumber: +1 408 713-7968 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 408 532-9142 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: CastenJ +givenName: Jacquelyn +mail: CastenJ@39b12e29c92b4f519f2ec6d311b9ff35.bitwarden.com +carLicense: YGDMW4 +departmentNumber: 2028 +employeeType: Normal +homePhone: +1 408 872-1282 +initials: J. C. +mobile: +1 408 681-2123 +pager: +1 408 568-7183 +roomNumber: 9684 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lillis Tyler,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lillis Tyler +sn: Tyler +description: This is Lillis Tyler's description +facsimileTelephoneNumber: +1 818 605-9909 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 386-7466 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: TylerL +givenName: Lillis +mail: TylerL@70d36f0b334a42e2bb084b23945923e0.bitwarden.com +carLicense: CJUM9S +departmentNumber: 7307 +employeeType: Employee +homePhone: +1 818 439-8198 +initials: L. T. +mobile: +1 818 437-5910 +pager: +1 818 614-5880 +roomNumber: 9271 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rosy Stctest,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosy Stctest +sn: Stctest +description: This is Rosy Stctest's description +facsimileTelephoneNumber: +1 206 881-3447 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 906-3099 +title: Master Human Resources Warrior +userPassword: Password1 +uid: StctestR +givenName: Rosy +mail: StctestR@fcbf2ef1cdb340fcb4c052a580a37b96.bitwarden.com +carLicense: SBE8NK +departmentNumber: 7814 +employeeType: Normal +homePhone: +1 206 307-8856 +initials: R. S. +mobile: +1 206 447-8785 +pager: +1 206 916-3377 +roomNumber: 9932 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Costas Zanetti,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Costas Zanetti +sn: Zanetti +description: This is Costas Zanetti's description +facsimileTelephoneNumber: +1 510 821-9091 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 510 953-7208 +title: Chief Administrative Dictator +userPassword: Password1 +uid: ZanettiC +givenName: Costas +mail: ZanettiC@b1f81108ccde47b8a2df0aba6ea7b365.bitwarden.com +carLicense: Y599W1 +departmentNumber: 4560 +employeeType: Employee +homePhone: +1 510 183-7205 +initials: C. Z. +mobile: +1 510 823-3938 +pager: +1 510 717-5922 +roomNumber: 9527 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Technical Carpentier,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Technical Carpentier +sn: Carpentier +description: This is Technical Carpentier's description +facsimileTelephoneNumber: +1 408 221-7176 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 623-5375 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: CarpentT +givenName: Technical +mail: CarpentT@b7e1a16b9cde4b3eaeea7ec65d5e0355.bitwarden.com +carLicense: 4LVJ4J +departmentNumber: 3048 +employeeType: Contract +homePhone: +1 408 153-3597 +initials: T. C. +mobile: +1 408 681-1356 +pager: +1 408 260-5207 +roomNumber: 8808 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lanie Geesman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lanie Geesman +sn: Geesman +description: This is Lanie Geesman's description +facsimileTelephoneNumber: +1 206 663-5219 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 809-6205 +title: Associate Human Resources Grunt +userPassword: Password1 +uid: GeesmanL +givenName: Lanie +mail: GeesmanL@4b02224ed79d49068514723b7495859b.bitwarden.com +carLicense: WUXITC +departmentNumber: 7699 +employeeType: Employee +homePhone: +1 206 206-8556 +initials: L. G. +mobile: +1 206 234-3906 +pager: +1 206 103-3737 +roomNumber: 9628 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eydie Sliter,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eydie Sliter +sn: Sliter +description: This is Eydie Sliter's description +facsimileTelephoneNumber: +1 818 594-2730 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 406-9327 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: SliterE +givenName: Eydie +mail: SliterE@c14faf1ad0834d6d9e4b1880a48b9d9e.bitwarden.com +carLicense: QUORLQ +departmentNumber: 4514 +employeeType: Normal +homePhone: +1 818 982-4911 +initials: E. S. +mobile: +1 818 547-6912 +pager: +1 818 363-2371 +roomNumber: 9265 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Trista Farag,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trista Farag +sn: Farag +description: This is Trista Farag's description +facsimileTelephoneNumber: +1 804 795-2624 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 642-9241 +title: Associate Product Development Stooge +userPassword: Password1 +uid: FaragT +givenName: Trista +mail: FaragT@6553f6f625ef4decb458591c6b034f5c.bitwarden.com +carLicense: OKJ960 +departmentNumber: 1089 +employeeType: Normal +homePhone: +1 804 779-7488 +initials: T. F. +mobile: +1 804 461-8470 +pager: +1 804 923-1330 +roomNumber: 8167 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Chery Greaver,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chery Greaver +sn: Greaver +description: This is Chery Greaver's description +facsimileTelephoneNumber: +1 206 186-7325 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 397-9011 +title: Associate Product Testing Evangelist +userPassword: Password1 +uid: GreaverC +givenName: Chery +mail: GreaverC@76c73cbc758e46b8951ff1931d80f8ca.bitwarden.com +carLicense: VMLNHH +departmentNumber: 1496 +employeeType: Contract +homePhone: +1 206 445-3267 +initials: C. G. +mobile: +1 206 979-8826 +pager: +1 206 158-1825 +roomNumber: 8232 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maidisn Dovydaitis +sn: Dovydaitis +description: This is Maidisn Dovydaitis's description +facsimileTelephoneNumber: +1 804 691-8048 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 826-5029 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: DovydaiM +givenName: Maidisn +mail: DovydaiM@7146b0dabf794daa8f39018535047aad.bitwarden.com +carLicense: E9OIB1 +departmentNumber: 8461 +employeeType: Employee +homePhone: +1 804 240-2757 +initials: M. D. +mobile: +1 804 633-6765 +pager: +1 804 228-8668 +roomNumber: 9130 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernardine Tanniere +sn: Tanniere +description: This is Bernardine Tanniere's description +facsimileTelephoneNumber: +1 213 505-3970 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 846-3962 +title: Supreme Janitorial Dictator +userPassword: Password1 +uid: TannierB +givenName: Bernardine +mail: TannierB@d54865a52eaf482a9e519ad4811b26bc.bitwarden.com +carLicense: 5KEV62 +departmentNumber: 6010 +employeeType: Normal +homePhone: +1 213 647-2221 +initials: B. T. +mobile: +1 213 553-6670 +pager: +1 213 710-6379 +roomNumber: 9424 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Griselda Breedlove +sn: Breedlove +description: This is Griselda Breedlove's description +facsimileTelephoneNumber: +1 415 670-2413 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 518-5352 +title: Master Human Resources Architect +userPassword: Password1 +uid: BreedloG +givenName: Griselda +mail: BreedloG@5c9b9d5c8575423f84d184975eedd13e.bitwarden.com +carLicense: 7TE4BP +departmentNumber: 7588 +employeeType: Contract +homePhone: +1 415 283-7385 +initials: G. B. +mobile: +1 415 724-9649 +pager: +1 415 165-7836 +roomNumber: 9723 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Katuscha Huor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katuscha Huor +sn: Huor +description: This is Katuscha Huor's description +facsimileTelephoneNumber: +1 408 370-9198 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 493-9191 +title: Junior Management Sales Rep +userPassword: Password1 +uid: HuorK +givenName: Katuscha +mail: HuorK@c47a29535a2d448ab99d5532c1ef090b.bitwarden.com +carLicense: 1PWRNL +departmentNumber: 9450 +employeeType: Employee +homePhone: +1 408 265-2233 +initials: K. H. +mobile: +1 408 222-9503 +pager: +1 408 351-8173 +roomNumber: 8123 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bue Satta,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bue Satta +sn: Satta +description: This is Bue Satta's description +facsimileTelephoneNumber: +1 818 331-2943 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 562-2431 +title: Supreme Administrative Technician +userPassword: Password1 +uid: SattaB +givenName: Bue +mail: SattaB@52c0af83c3aa40458e4bfbccce98b0cc.bitwarden.com +carLicense: XFMYC8 +departmentNumber: 8122 +employeeType: Normal +homePhone: +1 818 315-2778 +initials: B. S. +mobile: +1 818 313-7462 +pager: +1 818 319-5848 +roomNumber: 9472 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SvennErik Gaudet +sn: Gaudet +description: This is SvennErik Gaudet's description +facsimileTelephoneNumber: +1 510 574-8543 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 695-7055 +title: Supreme Product Development Visionary +userPassword: Password1 +uid: GaudetS +givenName: SvennErik +mail: GaudetS@503bf02919104cafa1d31446cc7f0505.bitwarden.com +carLicense: CUGYWO +departmentNumber: 1608 +employeeType: Normal +homePhone: +1 510 793-7699 +initials: S. G. +mobile: +1 510 792-5187 +pager: +1 510 638-2415 +roomNumber: 8046 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Justine Manolios,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Justine Manolios +sn: Manolios +description: This is Justine Manolios's description +facsimileTelephoneNumber: +1 818 211-2381 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 818 812-6448 +title: Associate Administrative Consultant +userPassword: Password1 +uid: ManolioJ +givenName: Justine +mail: ManolioJ@78f3e2c9e6614873ad31be2d1ce53b23.bitwarden.com +carLicense: S10FCI +departmentNumber: 9757 +employeeType: Contract +homePhone: +1 818 485-4772 +initials: J. M. +mobile: +1 818 982-3777 +pager: +1 818 668-5173 +roomNumber: 9717 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Guenna Sullivan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guenna Sullivan +sn: Sullivan +description: This is Guenna Sullivan's description +facsimileTelephoneNumber: +1 408 642-9886 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 339-8289 +title: Junior Peons Writer +userPassword: Password1 +uid: SullivaG +givenName: Guenna +mail: SullivaG@298f1a44ea7f452799d70af39fda7e0d.bitwarden.com +carLicense: MV31NY +departmentNumber: 1276 +employeeType: Employee +homePhone: +1 408 189-3046 +initials: G. S. +mobile: +1 408 394-5374 +pager: +1 408 952-4594 +roomNumber: 9011 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Behnam Cellucci +sn: Cellucci +description: This is Behnam Cellucci's description +facsimileTelephoneNumber: +1 804 994-9174 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 804 938-3156 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: CelluccB +givenName: Behnam +mail: CelluccB@b3f72c79ff9a44a8bc1416079d9b6469.bitwarden.com +carLicense: OW5QNB +departmentNumber: 5742 +employeeType: Contract +homePhone: +1 804 344-4658 +initials: B. C. +mobile: +1 804 917-9586 +pager: +1 804 247-2646 +roomNumber: 9845 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raven Vitaglian +sn: Vitaglian +description: This is Raven Vitaglian's description +facsimileTelephoneNumber: +1 213 941-7474 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 213 740-1227 +title: Chief Product Testing Figurehead +userPassword: Password1 +uid: VitagliR +givenName: Raven +mail: VitagliR@0371c25b461f4ad19b855c4d34af7211.bitwarden.com +carLicense: 3QXRRP +departmentNumber: 7066 +employeeType: Employee +homePhone: +1 213 353-6144 +initials: R. V. +mobile: +1 213 601-3377 +pager: +1 213 242-6062 +roomNumber: 9036 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Deb Sehmbey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deb Sehmbey +sn: Sehmbey +description: This is Deb Sehmbey's description +facsimileTelephoneNumber: +1 213 125-9630 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 698-5864 +title: Junior Management Sales Rep +userPassword: Password1 +uid: SehmbeyD +givenName: Deb +mail: SehmbeyD@ae1c8a23e1dd413a9249a93f83a32cff.bitwarden.com +carLicense: U0CNUI +departmentNumber: 5423 +employeeType: Normal +homePhone: +1 213 905-2155 +initials: D. S. +mobile: +1 213 826-9977 +pager: +1 213 726-3986 +roomNumber: 8112 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gavra Skrobanski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gavra Skrobanski +sn: Skrobanski +description: This is Gavra Skrobanski's description +facsimileTelephoneNumber: +1 408 757-7838 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 937-6079 +title: Chief Peons Artist +userPassword: Password1 +uid: SkrobanG +givenName: Gavra +mail: SkrobanG@708f514c40d3498b80918d7964115131.bitwarden.com +carLicense: JF199B +departmentNumber: 1072 +employeeType: Normal +homePhone: +1 408 245-3260 +initials: G. S. +mobile: +1 408 464-9754 +pager: +1 408 133-7612 +roomNumber: 8686 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gajendra Deibert,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gajendra Deibert +sn: Deibert +description: This is Gajendra Deibert's description +facsimileTelephoneNumber: +1 213 904-9177 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 775-4907 +title: Associate Management Developer +userPassword: Password1 +uid: DeibertG +givenName: Gajendra +mail: DeibertG@103bd05858c64a81aa3e2443bd1b0b6b.bitwarden.com +carLicense: J0LRCX +departmentNumber: 3278 +employeeType: Contract +homePhone: +1 213 451-8323 +initials: G. D. +mobile: +1 213 550-7809 +pager: +1 213 866-7889 +roomNumber: 8732 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yong Nuttall,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yong Nuttall +sn: Nuttall +description: This is Yong Nuttall's description +facsimileTelephoneNumber: +1 206 123-7303 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 306-2966 +title: Supreme Product Development Admin +userPassword: Password1 +uid: NuttallY +givenName: Yong +mail: NuttallY@ca2c9c0aaeee459a81fa3d98c982e91a.bitwarden.com +carLicense: 66JIP7 +departmentNumber: 7429 +employeeType: Contract +homePhone: +1 206 541-5552 +initials: Y. N. +mobile: +1 206 551-4562 +pager: +1 206 244-8704 +roomNumber: 8714 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Siew Saiyed,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siew Saiyed +sn: Saiyed +description: This is Siew Saiyed's description +facsimileTelephoneNumber: +1 804 822-6146 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 991-1335 +title: Chief Product Testing Dictator +userPassword: Password1 +uid: SaiyedS +givenName: Siew +mail: SaiyedS@3c4dbb6665a7445fa14802eb54e6a9d0.bitwarden.com +carLicense: 75TAFU +departmentNumber: 7653 +employeeType: Normal +homePhone: +1 804 112-3373 +initials: S. S. +mobile: +1 804 382-7426 +pager: +1 804 149-5687 +roomNumber: 8236 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Access McCullough,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Access McCullough +sn: McCullough +description: This is Access McCullough's description +facsimileTelephoneNumber: +1 415 736-5199 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 888-9076 +title: Chief Peons Manager +userPassword: Password1 +uid: McCulloA +givenName: Access +mail: McCulloA@33105c2098dd4c88945d3f8eafc36dc3.bitwarden.com +carLicense: 7H61LS +departmentNumber: 5927 +employeeType: Normal +homePhone: +1 415 584-5426 +initials: A. M. +mobile: +1 415 303-4362 +pager: +1 415 935-1799 +roomNumber: 9324 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Charmion Sathe,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charmion Sathe +sn: Sathe +description: This is Charmion Sathe's description +facsimileTelephoneNumber: +1 213 539-2968 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 786-4272 +title: Junior Management Engineer +userPassword: Password1 +uid: SatheC +givenName: Charmion +mail: SatheC@7152bab40da14de79b0ae747b744928c.bitwarden.com +carLicense: S2MG4I +departmentNumber: 3524 +employeeType: Employee +homePhone: +1 213 235-1827 +initials: C. S. +mobile: +1 213 745-8029 +pager: +1 213 287-5291 +roomNumber: 8468 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wilow Tools,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilow Tools +sn: Tools +description: This is Wilow Tools's description +facsimileTelephoneNumber: +1 213 184-9783 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 424-7448 +title: Master Human Resources Admin +userPassword: Password1 +uid: ToolsW +givenName: Wilow +mail: ToolsW@051b892e4657474a87006ab9ebfe221e.bitwarden.com +carLicense: XO8B55 +departmentNumber: 6832 +employeeType: Normal +homePhone: +1 213 818-9502 +initials: W. T. +mobile: +1 213 233-2776 +pager: +1 213 825-8304 +roomNumber: 9522 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PingKong Beaudin +sn: Beaudin +description: This is PingKong Beaudin's description +facsimileTelephoneNumber: +1 510 975-4444 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 419-9458 +title: Supreme Product Testing Manager +userPassword: Password1 +uid: BeaudinP +givenName: PingKong +mail: BeaudinP@0f8613dd82654e89b45a34cb62ca4eb2.bitwarden.com +carLicense: E2QHEN +departmentNumber: 4299 +employeeType: Contract +homePhone: +1 510 162-3618 +initials: P. B. +mobile: +1 510 517-3583 +pager: +1 510 452-1464 +roomNumber: 9652 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florine Matsuzawa +sn: Matsuzawa +description: This is Florine Matsuzawa's description +facsimileTelephoneNumber: +1 818 498-3999 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 818 183-2365 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: MatsuzaF +givenName: Florine +mail: MatsuzaF@053cdccb3446469397047f2320d54d6c.bitwarden.com +carLicense: J75U0X +departmentNumber: 4434 +employeeType: Contract +homePhone: +1 818 449-3000 +initials: F. M. +mobile: +1 818 672-3386 +pager: +1 818 588-8411 +roomNumber: 9173 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marylin Fradette,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marylin Fradette +sn: Fradette +description: This is Marylin Fradette's description +facsimileTelephoneNumber: +1 408 289-9015 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 729-7557 +title: Junior Product Development Technician +userPassword: Password1 +uid: FradettM +givenName: Marylin +mail: FradettM@5208267913f745bcb26fb5107268d9fb.bitwarden.com +carLicense: DCTUNV +departmentNumber: 2021 +employeeType: Normal +homePhone: +1 408 502-8641 +initials: M. F. +mobile: +1 408 478-6230 +pager: +1 408 845-9964 +roomNumber: 8881 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bellina Capobianco,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bellina Capobianco +sn: Capobianco +description: This is Bellina Capobianco's description +facsimileTelephoneNumber: +1 510 816-6726 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 664-3044 +title: Associate Payroll Manager +userPassword: Password1 +uid: CapobiaB +givenName: Bellina +mail: CapobiaB@7a8ab7eb659841c5a733e8ce0e681fba.bitwarden.com +carLicense: U08T67 +departmentNumber: 4313 +employeeType: Normal +homePhone: +1 510 820-2562 +initials: B. C. +mobile: +1 510 350-3011 +pager: +1 510 993-4321 +roomNumber: 8628 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Darcee Stegall,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darcee Stegall +sn: Stegall +description: This is Darcee Stegall's description +facsimileTelephoneNumber: +1 818 595-9842 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 818 422-8955 +title: Junior Peons Warrior +userPassword: Password1 +uid: StegallD +givenName: Darcee +mail: StegallD@108d9f732ac3490887754db53858df8a.bitwarden.com +carLicense: ONLQ1L +departmentNumber: 1400 +employeeType: Employee +homePhone: +1 818 562-8759 +initials: D. S. +mobile: +1 818 656-2233 +pager: +1 818 213-4403 +roomNumber: 9000 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manimozhi Coggins +sn: Coggins +description: This is Manimozhi Coggins's description +facsimileTelephoneNumber: +1 408 157-8535 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 972-4206 +title: Supreme Human Resources Consultant +userPassword: Password1 +uid: CogginsM +givenName: Manimozhi +mail: CogginsM@44cd0ae3ed0a4c44a7cec68159d433e6.bitwarden.com +carLicense: D3T80A +departmentNumber: 7034 +employeeType: Contract +homePhone: +1 408 384-5567 +initials: M. C. +mobile: +1 408 983-9318 +pager: +1 408 148-3356 +roomNumber: 8649 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tonie Georgiou,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonie Georgiou +sn: Georgiou +description: This is Tonie Georgiou's description +facsimileTelephoneNumber: +1 818 724-3210 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 818 902-6041 +title: Junior Administrative Figurehead +userPassword: Password1 +uid: GeorgioT +givenName: Tonie +mail: GeorgioT@edf9173cd755418183d71bfbac4d7308.bitwarden.com +carLicense: LQMDAS +departmentNumber: 7185 +employeeType: Employee +homePhone: +1 818 153-9339 +initials: T. G. +mobile: +1 818 850-3005 +pager: +1 818 641-3431 +roomNumber: 8813 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vahe Jasen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vahe Jasen +sn: Jasen +description: This is Vahe Jasen's description +facsimileTelephoneNumber: +1 408 494-5838 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 501-7398 +title: Master Peons Developer +userPassword: Password1 +uid: JasenV +givenName: Vahe +mail: JasenV@5d8558331520489684cb760b329247ae.bitwarden.com +carLicense: W2THA1 +departmentNumber: 6653 +employeeType: Employee +homePhone: +1 408 113-9426 +initials: V. J. +mobile: +1 408 895-2263 +pager: +1 408 232-3520 +roomNumber: 8358 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanh Kalnitsky +sn: Kalnitsky +description: This is Hanh Kalnitsky's description +facsimileTelephoneNumber: +1 510 885-5672 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 212-2420 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: KalnitsH +givenName: Hanh +mail: KalnitsH@ffa895bc8daa4c0f81a78140a99f5460.bitwarden.com +carLicense: JDAX0J +departmentNumber: 3848 +employeeType: Contract +homePhone: +1 510 406-4398 +initials: H. K. +mobile: +1 510 515-4630 +pager: +1 510 116-4255 +roomNumber: 8605 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamqrah Rolls +sn: Rolls +description: This is Tamqrah Rolls's description +facsimileTelephoneNumber: +1 510 803-6433 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 953-8394 +title: Associate Human Resources Writer +userPassword: Password1 +uid: RollsT +givenName: Tamqrah +mail: RollsT@20f6772e8c3743a5846a7cce62bda2f7.bitwarden.com +carLicense: OATHFN +departmentNumber: 7358 +employeeType: Contract +homePhone: +1 510 122-3264 +initials: T. R. +mobile: +1 510 327-6881 +pager: +1 510 179-5842 +roomNumber: 9948 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dien Plambeck,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dien Plambeck +sn: Plambeck +description: This is Dien Plambeck's description +facsimileTelephoneNumber: +1 213 215-1521 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 112-1645 +title: Associate Product Development Admin +userPassword: Password1 +uid: PlambecD +givenName: Dien +mail: PlambecD@8f2a1e9d087d433f9b3d1ae45af01378.bitwarden.com +carLicense: Q81UOE +departmentNumber: 4560 +employeeType: Normal +homePhone: +1 213 925-2817 +initials: D. P. +mobile: +1 213 910-3320 +pager: +1 213 977-1738 +roomNumber: 9214 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pamella Royle,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pamella Royle +sn: Royle +description: This is Pamella Royle's description +facsimileTelephoneNumber: +1 206 289-7799 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 966-5457 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: RoyleP +givenName: Pamella +mail: RoyleP@1f8860f288da4464a786f1e18a6c5fa9.bitwarden.com +carLicense: HX82O0 +departmentNumber: 1491 +employeeType: Normal +homePhone: +1 206 458-3407 +initials: P. R. +mobile: +1 206 994-2030 +pager: +1 206 415-9383 +roomNumber: 8373 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Miro Doolittle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miro Doolittle +sn: Doolittle +description: This is Miro Doolittle's description +facsimileTelephoneNumber: +1 408 492-8299 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 408 368-4930 +title: Chief Janitorial Architect +userPassword: Password1 +uid: DoolittM +givenName: Miro +mail: DoolittM@fe184af833734409842cae4ea614a7b7.bitwarden.com +carLicense: TPEHBF +departmentNumber: 2180 +employeeType: Normal +homePhone: +1 408 709-2494 +initials: M. D. +mobile: +1 408 777-1301 +pager: +1 408 934-5879 +roomNumber: 8143 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cody Gopisetty +sn: Gopisetty +description: This is Cody Gopisetty's description +facsimileTelephoneNumber: +1 818 838-6807 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 360-1107 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: GopisetC +givenName: Cody +mail: GopisetC@78da39afd8f041eaad04623e643dcf1d.bitwarden.com +carLicense: CHPF9B +departmentNumber: 3746 +employeeType: Normal +homePhone: +1 818 614-7480 +initials: C. G. +mobile: +1 818 442-5771 +pager: +1 818 569-9358 +roomNumber: 8615 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cornelle Rahmany +sn: Rahmany +description: This is Cornelle Rahmany's description +facsimileTelephoneNumber: +1 206 316-3791 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 831-1445 +title: Associate Payroll President +userPassword: Password1 +uid: RahmanyC +givenName: Cornelle +mail: RahmanyC@9d21b507c1954275a6eb8b1bf7521c8d.bitwarden.com +carLicense: XAO38S +departmentNumber: 7398 +employeeType: Normal +homePhone: +1 206 649-7206 +initials: C. R. +mobile: +1 206 786-9917 +pager: +1 206 626-1427 +roomNumber: 9509 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Esmaria Ligurs,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esmaria Ligurs +sn: Ligurs +description: This is Esmaria Ligurs's description +facsimileTelephoneNumber: +1 213 834-1221 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 997-3230 +title: Junior Management Assistant +userPassword: Password1 +uid: LigursE +givenName: Esmaria +mail: LigursE@5214956f0ee84ad493b8defdd90a23da.bitwarden.com +carLicense: 5SJTG2 +departmentNumber: 2305 +employeeType: Normal +homePhone: +1 213 549-6023 +initials: E. L. +mobile: +1 213 410-7152 +pager: +1 213 472-7189 +roomNumber: 8848 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jim Gillespie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jim Gillespie +sn: Gillespie +description: This is Jim Gillespie's description +facsimileTelephoneNumber: +1 415 630-5667 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 352-8577 +title: Master Janitorial Consultant +userPassword: Password1 +uid: GillespJ +givenName: Jim +mail: GillespJ@60ffb350fa6740079313430abf25721b.bitwarden.com +carLicense: 6D5DI8 +departmentNumber: 9835 +employeeType: Employee +homePhone: +1 415 540-8063 +initials: J. G. +mobile: +1 415 128-6081 +pager: +1 415 995-4628 +roomNumber: 9109 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lottie Patoka,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lottie Patoka +sn: Patoka +description: This is Lottie Patoka's description +facsimileTelephoneNumber: +1 206 850-4725 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 196-7072 +title: Master Peons Warrior +userPassword: Password1 +uid: PatokaL +givenName: Lottie +mail: PatokaL@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com +carLicense: VNE786 +departmentNumber: 5472 +employeeType: Normal +homePhone: +1 206 380-5461 +initials: L. P. +mobile: +1 206 403-6476 +pager: +1 206 554-9033 +roomNumber: 8961 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Keven Camillucci,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keven Camillucci +sn: Camillucci +description: This is Keven Camillucci's description +facsimileTelephoneNumber: +1 818 493-3447 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 818 191-7618 +title: Associate Product Testing Developer +userPassword: Password1 +uid: CamilluK +givenName: Keven +mail: CamilluK@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com +carLicense: B5ODS0 +departmentNumber: 3404 +employeeType: Contract +homePhone: +1 818 808-7997 +initials: K. C. +mobile: +1 818 223-4184 +pager: +1 818 495-6489 +roomNumber: 9317 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ning Schiegl,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ning Schiegl +sn: Schiegl +description: This is Ning Schiegl's description +facsimileTelephoneNumber: +1 818 828-9217 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 690-2952 +title: Master Product Development Admin +userPassword: Password1 +uid: SchieglN +givenName: Ning +mail: SchieglN@9c276cf6fc574cef93bc0a3a6cf33a5f.bitwarden.com +carLicense: 958VSP +departmentNumber: 4172 +employeeType: Contract +homePhone: +1 818 103-6363 +initials: N. S. +mobile: +1 818 871-8559 +pager: +1 818 441-3682 +roomNumber: 8415 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandrine Chaar +sn: Chaar +description: This is Sandrine Chaar's description +facsimileTelephoneNumber: +1 818 952-9642 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 631-9503 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: ChaarS +givenName: Sandrine +mail: ChaarS@bca72db9505940d88abc6d6738cc2f4f.bitwarden.com +carLicense: NOJEX7 +departmentNumber: 9540 +employeeType: Contract +homePhone: +1 818 802-7646 +initials: S. C. +mobile: +1 818 478-9615 +pager: +1 818 876-4139 +roomNumber: 9770 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Torie Sridaran,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Torie Sridaran +sn: Sridaran +description: This is Torie Sridaran's description +facsimileTelephoneNumber: +1 804 118-3343 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 379-4970 +title: Chief Management President +userPassword: Password1 +uid: SridaraT +givenName: Torie +mail: SridaraT@96b8e349b3fa4d379cf18c56e159fe83.bitwarden.com +carLicense: 13H2K8 +departmentNumber: 6745 +employeeType: Contract +homePhone: +1 804 778-5654 +initials: T. S. +mobile: +1 804 264-9297 +pager: +1 804 894-5655 +roomNumber: 8621 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jilly Ziai,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jilly Ziai +sn: Ziai +description: This is Jilly Ziai's description +facsimileTelephoneNumber: +1 213 107-8920 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 924-5336 +title: Master Janitorial Visionary +userPassword: Password1 +uid: ZiaiJ +givenName: Jilly +mail: ZiaiJ@2d4d35e5bd0f4e7dbb9261b02c16e31d.bitwarden.com +carLicense: XVHGPQ +departmentNumber: 4349 +employeeType: Contract +homePhone: +1 213 559-9460 +initials: J. Z. +mobile: +1 213 728-5100 +pager: +1 213 298-3345 +roomNumber: 8123 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Katharyn Herak,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katharyn Herak +sn: Herak +description: This is Katharyn Herak's description +facsimileTelephoneNumber: +1 408 583-7693 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 408 561-1499 +title: Supreme Payroll Sales Rep +userPassword: Password1 +uid: HerakK +givenName: Katharyn +mail: HerakK@7bb8f37e955d4f04a6cccdb2666d9559.bitwarden.com +carLicense: 9AFFRU +departmentNumber: 3367 +employeeType: Normal +homePhone: +1 408 653-8400 +initials: K. H. +mobile: +1 408 414-7895 +pager: +1 408 203-2318 +roomNumber: 9452 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carmina Slade,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmina Slade +sn: Slade +description: This is Carmina Slade's description +facsimileTelephoneNumber: +1 408 306-4560 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 283-3253 +title: Supreme Peons Pinhead +userPassword: Password1 +uid: SladeC +givenName: Carmina +mail: SladeC@94efd997fd9d41de91869cc1beb2c9ae.bitwarden.com +carLicense: 1OEKHW +departmentNumber: 8734 +employeeType: Contract +homePhone: +1 408 995-5785 +initials: C. S. +mobile: +1 408 495-5115 +pager: +1 408 626-5122 +roomNumber: 9812 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nayneshkumar Marui +sn: Marui +description: This is Nayneshkumar Marui's description +facsimileTelephoneNumber: +1 213 182-1623 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 651-4182 +title: Associate Product Testing Czar +userPassword: Password1 +uid: MaruiN +givenName: Nayneshkumar +mail: MaruiN@17e6e9bce9be4a43964f6f155661a373.bitwarden.com +carLicense: 7PRG9T +departmentNumber: 9702 +employeeType: Employee +homePhone: +1 213 375-4698 +initials: N. M. +mobile: +1 213 145-9886 +pager: +1 213 214-6519 +roomNumber: 9831 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ghislaine Forester +sn: Forester +description: This is Ghislaine Forester's description +facsimileTelephoneNumber: +1 408 320-5642 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 259-5243 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: ForesteG +givenName: Ghislaine +mail: ForesteG@6ba8baad97224f009bad99f9ff3a1b6b.bitwarden.com +carLicense: FE4NMY +departmentNumber: 9449 +employeeType: Employee +homePhone: +1 408 744-3271 +initials: G. F. +mobile: +1 408 344-5138 +pager: +1 408 773-7665 +roomNumber: 9406 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=NamKiet Dada,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: NamKiet Dada +sn: Dada +description: This is NamKiet Dada's description +facsimileTelephoneNumber: +1 415 185-8345 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 415 780-8223 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: DadaN +givenName: NamKiet +mail: DadaN@0834a0a1dc434fff9ff2dcff91cb1428.bitwarden.com +carLicense: I5GT6S +departmentNumber: 6005 +employeeType: Normal +homePhone: +1 415 610-2949 +initials: N. D. +mobile: +1 415 711-1066 +pager: +1 415 844-7151 +roomNumber: 9108 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nashir SUPPORT,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nashir SUPPORT +sn: SUPPORT +description: This is Nashir SUPPORT's description +facsimileTelephoneNumber: +1 213 571-6873 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 720-6982 +title: Junior Management Punk +userPassword: Password1 +uid: SUPPORTN +givenName: Nashir +mail: SUPPORTN@a882281c1b844c5997ce4401b36f83a4.bitwarden.com +carLicense: TQSGXI +departmentNumber: 6405 +employeeType: Contract +homePhone: +1 213 540-1713 +initials: N. S. +mobile: +1 213 854-7282 +pager: +1 213 899-9495 +roomNumber: 9276 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bonni Gehring,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bonni Gehring +sn: Gehring +description: This is Bonni Gehring's description +facsimileTelephoneNumber: +1 804 206-9018 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 662-7516 +title: Master Product Development Technician +userPassword: Password1 +uid: GehringB +givenName: Bonni +mail: GehringB@39cad30acf654cd592e26cbcce758e66.bitwarden.com +carLicense: 6JMPUI +departmentNumber: 3026 +employeeType: Employee +homePhone: +1 804 571-3507 +initials: B. G. +mobile: +1 804 785-6552 +pager: +1 804 888-3179 +roomNumber: 8513 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Agenia Deboer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agenia Deboer +sn: Deboer +description: This is Agenia Deboer's description +facsimileTelephoneNumber: +1 804 929-4895 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 379-2173 +title: Master Payroll Director +userPassword: Password1 +uid: DeboerA +givenName: Agenia +mail: DeboerA@909269ac94be4e5b9ff6809f52b1dda3.bitwarden.com +carLicense: 5FK0LW +departmentNumber: 5535 +employeeType: Normal +homePhone: +1 804 446-8419 +initials: A. D. +mobile: +1 804 888-3289 +pager: +1 804 113-7307 +roomNumber: 8026 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tatiana Keene,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatiana Keene +sn: Keene +description: This is Tatiana Keene's description +facsimileTelephoneNumber: +1 408 738-4540 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 458-3177 +title: Associate Peons Figurehead +userPassword: Password1 +uid: KeeneT +givenName: Tatiana +mail: KeeneT@1567184d0d9f4bd798c9d76aae00fe9e.bitwarden.com +carLicense: MC9JU8 +departmentNumber: 8938 +employeeType: Normal +homePhone: +1 408 203-2244 +initials: T. K. +mobile: +1 408 627-8542 +pager: +1 408 270-4181 +roomNumber: 9576 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madonna Rabipour +sn: Rabipour +description: This is Madonna Rabipour's description +facsimileTelephoneNumber: +1 408 884-3546 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 408 479-9473 +title: Master Product Testing Grunt +userPassword: Password1 +uid: RabipouM +givenName: Madonna +mail: RabipouM@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com +carLicense: XV556W +departmentNumber: 8233 +employeeType: Normal +homePhone: +1 408 127-4307 +initials: M. R. +mobile: +1 408 840-7292 +pager: +1 408 863-8991 +roomNumber: 9993 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ora Trayer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ora Trayer +sn: Trayer +description: This is Ora Trayer's description +facsimileTelephoneNumber: +1 408 450-8008 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 469-7396 +title: Chief Human Resources Mascot +userPassword: Password1 +uid: TrayerO +givenName: Ora +mail: TrayerO@f96326cbae60420087d9ffc7eb8e7b96.bitwarden.com +carLicense: 1XW7GF +departmentNumber: 9834 +employeeType: Normal +homePhone: +1 408 884-5412 +initials: O. T. +mobile: +1 408 211-6050 +pager: +1 408 936-7293 +roomNumber: 8390 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Malissa Walta,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malissa Walta +sn: Walta +description: This is Malissa Walta's description +facsimileTelephoneNumber: +1 510 936-9589 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 895-5671 +title: Junior Human Resources Technician +userPassword: Password1 +uid: WaltaM +givenName: Malissa +mail: WaltaM@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com +carLicense: AJLLSN +departmentNumber: 9196 +employeeType: Contract +homePhone: +1 510 618-6568 +initials: M. W. +mobile: +1 510 955-9414 +pager: +1 510 845-5460 +roomNumber: 9546 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sage Jones,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sage Jones +sn: Jones +description: This is Sage Jones's description +facsimileTelephoneNumber: +1 818 898-3187 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 936-7981 +title: Chief Administrative Assistant +userPassword: Password1 +uid: JonesS +givenName: Sage +mail: JonesS@a524fcb1eac4447e976069bb86ce0e2a.bitwarden.com +carLicense: UVWJMH +departmentNumber: 7875 +employeeType: Normal +homePhone: +1 818 972-5242 +initials: S. J. +mobile: +1 818 729-2374 +pager: +1 818 117-5777 +roomNumber: 8532 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Homer Boothroyd,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Homer Boothroyd +sn: Boothroyd +description: This is Homer Boothroyd's description +facsimileTelephoneNumber: +1 818 365-5421 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 885-4714 +title: Master Administrative Punk +userPassword: Password1 +uid: BoothroH +givenName: Homer +mail: BoothroH@cb353017148241c88e44cd0d35f2614b.bitwarden.com +carLicense: 534BIQ +departmentNumber: 7420 +employeeType: Employee +homePhone: +1 818 956-4000 +initials: H. B. +mobile: +1 818 843-1994 +pager: +1 818 824-6754 +roomNumber: 8939 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Oksana Baran,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oksana Baran +sn: Baran +description: This is Oksana Baran's description +facsimileTelephoneNumber: +1 818 511-8577 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 994-5184 +title: Master Administrative Architect +userPassword: Password1 +uid: BaranO +givenName: Oksana +mail: BaranO@ae52dcada2674f68a76a2c619d85f261.bitwarden.com +carLicense: CVH53A +departmentNumber: 2200 +employeeType: Normal +homePhone: +1 818 933-4769 +initials: O. B. +mobile: +1 818 552-5392 +pager: +1 818 419-9031 +roomNumber: 8536 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gill Stalter,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gill Stalter +sn: Stalter +description: This is Gill Stalter's description +facsimileTelephoneNumber: +1 415 493-4271 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 415 896-2782 +title: Chief Peons Madonna +userPassword: Password1 +uid: StalterG +givenName: Gill +mail: StalterG@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com +carLicense: 7MS7CQ +departmentNumber: 2504 +employeeType: Normal +homePhone: +1 415 989-7898 +initials: G. S. +mobile: +1 415 837-3742 +pager: +1 415 744-8454 +roomNumber: 8140 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Starlene Andrusiak +sn: Andrusiak +description: This is Starlene Andrusiak's description +facsimileTelephoneNumber: +1 408 851-7672 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 598-7699 +title: Master Product Development Architect +userPassword: Password1 +uid: AndrusiS +givenName: Starlene +mail: AndrusiS@005903ef4e084b96990707819b3e2e17.bitwarden.com +carLicense: 9ULQN0 +departmentNumber: 8081 +employeeType: Contract +homePhone: +1 408 792-2783 +initials: S. A. +mobile: +1 408 390-6110 +pager: +1 408 494-7774 +roomNumber: 8347 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=PohSoon Carter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PohSoon Carter +sn: Carter +description: This is PohSoon Carter's description +facsimileTelephoneNumber: +1 510 244-4519 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 830-5548 +title: Master Human Resources Punk +userPassword: Password1 +uid: CarterP +givenName: PohSoon +mail: CarterP@e2851fa9dbce4fe68e4f43ec7a7e00f0.bitwarden.com +carLicense: IMFBE4 +departmentNumber: 9219 +employeeType: Contract +homePhone: +1 510 982-3396 +initials: P. C. +mobile: +1 510 368-2044 +pager: +1 510 230-9523 +roomNumber: 9342 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arvin Hrushowy +sn: Hrushowy +description: This is Arvin Hrushowy's description +facsimileTelephoneNumber: +1 415 197-2417 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 535-1699 +title: Chief Payroll Engineer +userPassword: Password1 +uid: HrushowA +givenName: Arvin +mail: HrushowA@bd88542b35754611b56bc9f67e5f51df.bitwarden.com +carLicense: AOGQEL +departmentNumber: 8155 +employeeType: Normal +homePhone: +1 415 685-3769 +initials: A. H. +mobile: +1 415 997-9586 +pager: +1 415 557-1769 +roomNumber: 8055 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cherilynn Munden,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherilynn Munden +sn: Munden +description: This is Cherilynn Munden's description +facsimileTelephoneNumber: +1 510 864-2837 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 510 506-4626 +title: Master Product Development Engineer +userPassword: Password1 +uid: MundenC +givenName: Cherilynn +mail: MundenC@94dbeedce77e435482fe6d405df83d4c.bitwarden.com +carLicense: PP6G9K +departmentNumber: 9815 +employeeType: Contract +homePhone: +1 510 262-6812 +initials: C. M. +mobile: +1 510 162-4906 +pager: +1 510 311-6034 +roomNumber: 8467 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Stephie Wong,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephie Wong +sn: Wong +description: This is Stephie Wong's description +facsimileTelephoneNumber: +1 415 539-8781 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 415 557-7259 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: WongS +givenName: Stephie +mail: WongS@1d53b6921bf64610aacf1176185cce32.bitwarden.com +carLicense: AHOGDX +departmentNumber: 5804 +employeeType: Normal +homePhone: +1 415 785-6162 +initials: S. W. +mobile: +1 415 492-2517 +pager: +1 415 991-2480 +roomNumber: 8227 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leah Makoid,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leah Makoid +sn: Makoid +description: This is Leah Makoid's description +facsimileTelephoneNumber: +1 818 578-9308 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 623-9040 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: MakoidL +givenName: Leah +mail: MakoidL@5191509f48d94538ad03dc3532ab7b16.bitwarden.com +carLicense: X7FSEM +departmentNumber: 2171 +employeeType: Employee +homePhone: +1 818 945-7519 +initials: L. M. +mobile: +1 818 794-7804 +pager: +1 818 374-6186 +roomNumber: 8061 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sisely Cameron,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sisely Cameron +sn: Cameron +description: This is Sisely Cameron's description +facsimileTelephoneNumber: +1 206 916-4394 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 968-5903 +title: Chief Administrative Stooge +userPassword: Password1 +uid: CameronS +givenName: Sisely +mail: CameronS@a70ffb71353245b59b898173a6c12cbc.bitwarden.com +carLicense: NEAOP7 +departmentNumber: 1101 +employeeType: Normal +homePhone: +1 206 360-5704 +initials: S. C. +mobile: +1 206 318-1563 +pager: +1 206 501-5696 +roomNumber: 9801 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lacie Seddigh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lacie Seddigh +sn: Seddigh +description: This is Lacie Seddigh's description +facsimileTelephoneNumber: +1 213 200-1039 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 304-3526 +title: Chief Product Development Consultant +userPassword: Password1 +uid: SeddighL +givenName: Lacie +mail: SeddighL@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com +carLicense: SQJGY4 +departmentNumber: 7543 +employeeType: Contract +homePhone: +1 213 856-9824 +initials: L. S. +mobile: +1 213 465-9326 +pager: +1 213 575-2711 +roomNumber: 9204 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Golda Decasper,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Golda Decasper +sn: Decasper +description: This is Golda Decasper's description +facsimileTelephoneNumber: +1 510 989-8805 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 791-8476 +title: Master Peons Evangelist +userPassword: Password1 +uid: DecaspeG +givenName: Golda +mail: DecaspeG@5a068c1bd8fb448da04352f8a1f4d9ad.bitwarden.com +carLicense: B64TS3 +departmentNumber: 2904 +employeeType: Contract +homePhone: +1 510 479-9038 +initials: G. D. +mobile: +1 510 451-6782 +pager: +1 510 699-7789 +roomNumber: 9658 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Chander Kernahan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chander Kernahan +sn: Kernahan +description: This is Chander Kernahan's description +facsimileTelephoneNumber: +1 818 775-5605 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 317-4366 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: KernahaC +givenName: Chander +mail: KernahaC@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com +carLicense: UAY32P +departmentNumber: 4813 +employeeType: Normal +homePhone: +1 818 542-5199 +initials: C. K. +mobile: +1 818 356-8824 +pager: +1 818 536-9823 +roomNumber: 8547 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HsingJu Delahay +sn: Delahay +description: This is HsingJu Delahay's description +facsimileTelephoneNumber: +1 206 970-9313 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 206 886-8058 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: DelahayH +givenName: HsingJu +mail: DelahayH@025b753c71134f47b62832fe77834232.bitwarden.com +carLicense: Q0MHX1 +departmentNumber: 3388 +employeeType: Contract +homePhone: +1 206 128-1211 +initials: H. D. +mobile: +1 206 729-4855 +pager: +1 206 635-4521 +roomNumber: 8200 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nicola Haupt,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicola Haupt +sn: Haupt +description: This is Nicola Haupt's description +facsimileTelephoneNumber: +1 213 371-6518 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 769-9427 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: HauptN +givenName: Nicola +mail: HauptN@0482a6f8c34647958dbfe3e2649faae2.bitwarden.com +carLicense: 43FR79 +departmentNumber: 7455 +employeeType: Employee +homePhone: +1 213 878-6305 +initials: N. H. +mobile: +1 213 189-2691 +pager: +1 213 473-1207 +roomNumber: 8751 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Orelle Ifact,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orelle Ifact +sn: Ifact +description: This is Orelle Ifact's description +facsimileTelephoneNumber: +1 510 338-3690 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 555-3447 +title: Associate Administrative Fellow +userPassword: Password1 +uid: IfactO +givenName: Orelle +mail: IfactO@0f5c9983e32c410788faa72a9c3d7c88.bitwarden.com +carLicense: 823HQF +departmentNumber: 1239 +employeeType: Contract +homePhone: +1 510 614-6796 +initials: O. I. +mobile: +1 510 105-5528 +pager: +1 510 808-7049 +roomNumber: 9638 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jak Locken,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jak Locken +sn: Locken +description: This is Jak Locken's description +facsimileTelephoneNumber: +1 804 745-6294 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 777-2295 +title: Master Product Development Dictator +userPassword: Password1 +uid: LockenJ +givenName: Jak +mail: LockenJ@2f5b8316f26f4fc481de13effbbd4ea6.bitwarden.com +carLicense: KC1CND +departmentNumber: 6576 +employeeType: Employee +homePhone: +1 804 196-8184 +initials: J. L. +mobile: +1 804 526-6488 +pager: +1 804 589-4849 +roomNumber: 8831 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Phillis Hermack,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phillis Hermack +sn: Hermack +description: This is Phillis Hermack's description +facsimileTelephoneNumber: +1 415 970-8438 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 556-5709 +title: Chief Product Testing Director +userPassword: Password1 +uid: HermackP +givenName: Phillis +mail: HermackP@bd6dedb04a504f54bb83fff2aa24490b.bitwarden.com +carLicense: DJUDHX +departmentNumber: 1030 +employeeType: Normal +homePhone: +1 415 429-8618 +initials: P. H. +mobile: +1 415 926-7616 +pager: +1 415 697-1094 +roomNumber: 8038 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorrel Greenfield +sn: Greenfield +description: This is Lorrel Greenfield's description +facsimileTelephoneNumber: +1 213 815-6379 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 916-8542 +title: Junior Administrative Mascot +userPassword: Password1 +uid: GreenfiL +givenName: Lorrel +mail: GreenfiL@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com +carLicense: JKH3UU +departmentNumber: 2366 +employeeType: Contract +homePhone: +1 213 534-3898 +initials: L. G. +mobile: +1 213 154-8824 +pager: +1 213 377-7164 +roomNumber: 9845 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marcellina Knighton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcellina Knighton +sn: Knighton +description: This is Marcellina Knighton's description +facsimileTelephoneNumber: +1 213 692-1964 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 213 287-7330 +title: Chief Product Development Consultant +userPassword: Password1 +uid: KnightoM +givenName: Marcellina +mail: KnightoM@48f6e6bce8ac404d917503a6c43988fa.bitwarden.com +carLicense: XRXDGE +departmentNumber: 9836 +employeeType: Normal +homePhone: +1 213 290-8221 +initials: M. K. +mobile: +1 213 211-1445 +pager: +1 213 317-1565 +roomNumber: 8463 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Krystal Runnels,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krystal Runnels +sn: Runnels +description: This is Krystal Runnels's description +facsimileTelephoneNumber: +1 213 205-9476 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 668-7005 +title: Chief Janitorial Admin +userPassword: Password1 +uid: RunnelsK +givenName: Krystal +mail: RunnelsK@7e96834d9f214835923bce90da137a59.bitwarden.com +carLicense: GB9MY7 +departmentNumber: 8631 +employeeType: Contract +homePhone: +1 213 776-8356 +initials: K. R. +mobile: +1 213 283-5013 +pager: +1 213 455-3951 +roomNumber: 9923 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sonnnie Steven,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonnnie Steven +sn: Steven +description: This is Sonnnie Steven's description +facsimileTelephoneNumber: +1 206 720-1229 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 757-4891 +title: Master Administrative Writer +userPassword: Password1 +uid: StevenS +givenName: Sonnnie +mail: StevenS@6942f38ba5484ef1a5acaa3b04cfa3d9.bitwarden.com +carLicense: BL8SNR +departmentNumber: 1652 +employeeType: Contract +homePhone: +1 206 861-6188 +initials: S. S. +mobile: +1 206 374-3469 +pager: +1 206 849-1993 +roomNumber: 9266 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Catherin Whaley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catherin Whaley +sn: Whaley +description: This is Catherin Whaley's description +facsimileTelephoneNumber: +1 213 953-8815 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 404-6737 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: WhaleyC +givenName: Catherin +mail: WhaleyC@912b93525781475c9b76c550ff34b491.bitwarden.com +carLicense: FGECKL +departmentNumber: 3184 +employeeType: Employee +homePhone: +1 213 292-4215 +initials: C. W. +mobile: +1 213 982-1744 +pager: +1 213 542-8554 +roomNumber: 9837 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fernanda Michalos,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fernanda Michalos +sn: Michalos +description: This is Fernanda Michalos's description +facsimileTelephoneNumber: +1 415 737-8058 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 890-8657 +title: Supreme Payroll Consultant +userPassword: Password1 +uid: MichaloF +givenName: Fernanda +mail: MichaloF@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com +carLicense: RC3K4N +departmentNumber: 4909 +employeeType: Employee +homePhone: +1 415 364-6267 +initials: F. M. +mobile: +1 415 261-7847 +pager: +1 415 218-5576 +roomNumber: 9705 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Darline Worpell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darline Worpell +sn: Worpell +description: This is Darline Worpell's description +facsimileTelephoneNumber: +1 510 903-4854 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 242-9446 +title: Supreme Management Stooge +userPassword: Password1 +uid: WorpellD +givenName: Darline +mail: WorpellD@b0543cf71f3c4487af9098421c49968e.bitwarden.com +carLicense: CDIN3F +departmentNumber: 7783 +employeeType: Normal +homePhone: +1 510 839-8347 +initials: D. W. +mobile: +1 510 678-3842 +pager: +1 510 333-5381 +roomNumber: 9650 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jose Brading,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jose Brading +sn: Brading +description: This is Jose Brading's description +facsimileTelephoneNumber: +1 213 649-1220 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 608-1361 +title: Associate Administrative Manager +userPassword: Password1 +uid: BradingJ +givenName: Jose +mail: BradingJ@a2fc6a711cba4ec98d716bb4c3e20f83.bitwarden.com +carLicense: 76G5CP +departmentNumber: 3011 +employeeType: Contract +homePhone: +1 213 246-2924 +initials: J. B. +mobile: +1 213 660-3530 +pager: +1 213 741-5742 +roomNumber: 9387 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Garney Wilkinson +sn: Wilkinson +description: This is Garney Wilkinson's description +facsimileTelephoneNumber: +1 213 312-1364 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 560-1078 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: WilkinsG +givenName: Garney +mail: WilkinsG@6a7ccf71870148fe8f9ac4d527b4d501.bitwarden.com +carLicense: 9J4MDW +departmentNumber: 5660 +employeeType: Contract +homePhone: +1 213 273-1475 +initials: G. W. +mobile: +1 213 963-1010 +pager: +1 213 116-7840 +roomNumber: 9874 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adrie Coverdale,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrie Coverdale +sn: Coverdale +description: This is Adrie Coverdale's description +facsimileTelephoneNumber: +1 408 459-4328 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 880-5605 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: CoverdaA +givenName: Adrie +mail: CoverdaA@649a503dbd264f3ba9e14eb9795c58eb.bitwarden.com +carLicense: DOYBDP +departmentNumber: 9108 +employeeType: Normal +homePhone: +1 408 873-3148 +initials: A. C. +mobile: +1 408 316-9175 +pager: +1 408 622-7488 +roomNumber: 9439 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Coral Larrigan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coral Larrigan +sn: Larrigan +description: This is Coral Larrigan's description +facsimileTelephoneNumber: +1 804 835-7917 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 967-9595 +title: Associate Human Resources President +userPassword: Password1 +uid: LarrigaC +givenName: Coral +mail: LarrigaC@697f4570719c4b51867f3d1f0d4cdafe.bitwarden.com +carLicense: EEHQPU +departmentNumber: 6350 +employeeType: Employee +homePhone: +1 804 495-6710 +initials: C. L. +mobile: +1 804 252-1124 +pager: +1 804 123-1318 +roomNumber: 8887 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharlene Boleda +sn: Boleda +description: This is Sharlene Boleda's description +facsimileTelephoneNumber: +1 206 590-2503 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 324-7131 +title: Chief Janitorial Writer +userPassword: Password1 +uid: BoledaS +givenName: Sharlene +mail: BoledaS@c2a7b578a92f4e2b90afb4532b24efa1.bitwarden.com +carLicense: AHMAGB +departmentNumber: 3037 +employeeType: Normal +homePhone: +1 206 276-4505 +initials: S. B. +mobile: +1 206 517-1326 +pager: +1 206 673-4682 +roomNumber: 9868 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lorrin Derrett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorrin Derrett +sn: Derrett +description: This is Lorrin Derrett's description +facsimileTelephoneNumber: +1 804 290-8888 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 410-3915 +title: Master Product Development Fellow +userPassword: Password1 +uid: DerrettL +givenName: Lorrin +mail: DerrettL@defab017f9734cfab5b3fea4ed24112c.bitwarden.com +carLicense: 6FM72A +departmentNumber: 8814 +employeeType: Normal +homePhone: +1 804 520-6509 +initials: L. D. +mobile: +1 804 995-8995 +pager: +1 804 216-1353 +roomNumber: 9560 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Xu Gertridge,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xu Gertridge +sn: Gertridge +description: This is Xu Gertridge's description +facsimileTelephoneNumber: +1 804 632-9827 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 850-4327 +title: Master Product Development Czar +userPassword: Password1 +uid: GertridX +givenName: Xu +mail: GertridX@1d23264dcd2241baa77e90f901c50315.bitwarden.com +carLicense: 2NFIWR +departmentNumber: 6867 +employeeType: Normal +homePhone: +1 804 353-8847 +initials: X. G. +mobile: +1 804 880-7937 +pager: +1 804 450-1883 +roomNumber: 8380 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhiren Arwakhi +sn: Arwakhi +description: This is Dhiren Arwakhi's description +facsimileTelephoneNumber: +1 804 853-9736 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 201-2006 +title: Master Product Development Pinhead +userPassword: Password1 +uid: ArwakhiD +givenName: Dhiren +mail: ArwakhiD@a72a30514dd84739adf3beae6a3c71bb.bitwarden.com +carLicense: LV2J2L +departmentNumber: 5594 +employeeType: Normal +homePhone: +1 804 659-7490 +initials: D. A. +mobile: +1 804 832-6140 +pager: +1 804 916-8721 +roomNumber: 8397 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carlisle Wokoma,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlisle Wokoma +sn: Wokoma +description: This is Carlisle Wokoma's description +facsimileTelephoneNumber: +1 408 896-5162 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 114-1087 +title: Associate Management Czar +userPassword: Password1 +uid: WokomaC +givenName: Carlisle +mail: WokomaC@098e681e17464ddaaa4b5aa6ff614551.bitwarden.com +carLicense: AUWWXF +departmentNumber: 9432 +employeeType: Employee +homePhone: +1 408 968-4095 +initials: C. W. +mobile: +1 408 234-8361 +pager: +1 408 887-7445 +roomNumber: 8282 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parnell Scanlan +sn: Scanlan +description: This is Parnell Scanlan's description +facsimileTelephoneNumber: +1 510 201-2310 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 366-5627 +title: Chief Human Resources Vice President +userPassword: Password1 +uid: ScanlanP +givenName: Parnell +mail: ScanlanP@31c61f2c8f9340ee8037a78602dae0c7.bitwarden.com +carLicense: RV77F0 +departmentNumber: 4751 +employeeType: Normal +homePhone: +1 510 835-4550 +initials: P. S. +mobile: +1 510 360-8611 +pager: +1 510 555-5353 +roomNumber: 9174 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tatsuya Standel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatsuya Standel +sn: Standel +description: This is Tatsuya Standel's description +facsimileTelephoneNumber: +1 408 566-8177 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 335-6413 +title: Supreme Management Architect +userPassword: Password1 +uid: StandelT +givenName: Tatsuya +mail: StandelT@0f34709435f94e12b6b00a3cb3cfaead.bitwarden.com +carLicense: Y40DPH +departmentNumber: 2758 +employeeType: Employee +homePhone: +1 408 866-4779 +initials: T. S. +mobile: +1 408 349-6041 +pager: +1 408 690-5462 +roomNumber: 9476 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shirline Dahl,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirline Dahl +sn: Dahl +description: This is Shirline Dahl's description +facsimileTelephoneNumber: +1 510 726-1384 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 824-2079 +title: Supreme Peons Pinhead +userPassword: Password1 +uid: DahlS +givenName: Shirline +mail: DahlS@98febd962501443b89a9e8bfacf12a9e.bitwarden.com +carLicense: F12YH4 +departmentNumber: 9152 +employeeType: Normal +homePhone: +1 510 329-2576 +initials: S. D. +mobile: +1 510 813-9252 +pager: +1 510 267-6884 +roomNumber: 8731 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mandie Tota,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mandie Tota +sn: Tota +description: This is Mandie Tota's description +facsimileTelephoneNumber: +1 510 165-7288 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 510 204-3709 +title: Associate Administrative Architect +userPassword: Password1 +uid: TotaM +givenName: Mandie +mail: TotaM@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com +carLicense: 0USURD +departmentNumber: 9000 +employeeType: Contract +homePhone: +1 510 489-6186 +initials: M. T. +mobile: +1 510 439-6571 +pager: +1 510 790-5438 +roomNumber: 9869 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nicolea Garee,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolea Garee +sn: Garee +description: This is Nicolea Garee's description +facsimileTelephoneNumber: +1 804 714-5176 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 536-9116 +title: Chief Management Warrior +userPassword: Password1 +uid: GareeN +givenName: Nicolea +mail: GareeN@b01b1bd56e3f464896b7135dd1b7da99.bitwarden.com +carLicense: B9DOB8 +departmentNumber: 8790 +employeeType: Employee +homePhone: +1 804 971-9394 +initials: N. G. +mobile: +1 804 946-4325 +pager: +1 804 462-7925 +roomNumber: 9110 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Geraldine Meehan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geraldine Meehan +sn: Meehan +description: This is Geraldine Meehan's description +facsimileTelephoneNumber: +1 510 361-2208 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 157-3736 +title: Junior Administrative Writer +userPassword: Password1 +uid: MeehanG +givenName: Geraldine +mail: MeehanG@926986a7a9224c51b55271804ad9a9d9.bitwarden.com +carLicense: VCT3QM +departmentNumber: 4741 +employeeType: Normal +homePhone: +1 510 894-1191 +initials: G. M. +mobile: +1 510 175-6311 +pager: +1 510 454-4159 +roomNumber: 9853 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ShingChi Ciolfi +sn: Ciolfi +description: This is ShingChi Ciolfi's description +facsimileTelephoneNumber: +1 818 990-6487 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 862-3056 +title: Master Product Development Developer +userPassword: Password1 +uid: CiolfiS +givenName: ShingChi +mail: CiolfiS@49c1a115ac8b439f9ab99f302ba59751.bitwarden.com +carLicense: J902UR +departmentNumber: 5286 +employeeType: Employee +homePhone: +1 818 225-7408 +initials: S. C. +mobile: +1 818 223-4248 +pager: +1 818 955-7535 +roomNumber: 9340 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mickie Budhram,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mickie Budhram +sn: Budhram +description: This is Mickie Budhram's description +facsimileTelephoneNumber: +1 213 345-8055 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 319-4988 +title: Master Janitorial Director +userPassword: Password1 +uid: BudhramM +givenName: Mickie +mail: BudhramM@08eacc9f081b46aa9b5cc2682b8df342.bitwarden.com +carLicense: NTCIP5 +departmentNumber: 3562 +employeeType: Normal +homePhone: +1 213 826-3298 +initials: M. B. +mobile: +1 213 734-9756 +pager: +1 213 544-1970 +roomNumber: 8994 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Faustina Severinac,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faustina Severinac +sn: Severinac +description: This is Faustina Severinac's description +facsimileTelephoneNumber: +1 510 219-9931 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 156-3659 +title: Chief Management Admin +userPassword: Password1 +uid: SeverinF +givenName: Faustina +mail: SeverinF@679765b52d394d7ba89a59f3e71121ce.bitwarden.com +carLicense: Y5V3G2 +departmentNumber: 9341 +employeeType: Contract +homePhone: +1 510 677-6303 +initials: F. S. +mobile: +1 510 478-9767 +pager: +1 510 302-3463 +roomNumber: 9245 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Roy Zaloker,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roy Zaloker +sn: Zaloker +description: This is Roy Zaloker's description +facsimileTelephoneNumber: +1 804 949-3485 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 804 805-9046 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: ZalokerR +givenName: Roy +mail: ZalokerR@cfa9cc9c255049a290ed0760c3f25871.bitwarden.com +carLicense: BHL5PA +departmentNumber: 4005 +employeeType: Normal +homePhone: +1 804 139-6968 +initials: R. Z. +mobile: +1 804 173-4820 +pager: +1 804 135-8625 +roomNumber: 9095 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karel Padiou,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karel Padiou +sn: Padiou +description: This is Karel Padiou's description +facsimileTelephoneNumber: +1 818 413-3214 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 326-1547 +title: Chief Peons Artist +userPassword: Password1 +uid: PadiouK +givenName: Karel +mail: PadiouK@28fe718e73d141bb8aec4e57b4f0fed7.bitwarden.com +carLicense: 71K9HI +departmentNumber: 9791 +employeeType: Normal +homePhone: +1 818 965-6536 +initials: K. P. +mobile: +1 818 883-4316 +pager: +1 818 528-1832 +roomNumber: 8285 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: BettyAnne Grondin +sn: Grondin +description: This is BettyAnne Grondin's description +facsimileTelephoneNumber: +1 408 112-6174 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 550-7121 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: GrondinB +givenName: BettyAnne +mail: GrondinB@03a260d7792e49df9dcbf44341e41013.bitwarden.com +carLicense: X1CGYG +departmentNumber: 6491 +employeeType: Normal +homePhone: +1 408 606-9359 +initials: B. G. +mobile: +1 408 689-9840 +pager: +1 408 338-6349 +roomNumber: 8955 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Taiwana Rhodes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Taiwana Rhodes +sn: Rhodes +description: This is Taiwana Rhodes's description +facsimileTelephoneNumber: +1 206 415-9843 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 772-5257 +title: Junior Management Director +userPassword: Password1 +uid: RhodesT +givenName: Taiwana +mail: RhodesT@9fd53b74c90b49729f78c608ecaf52b4.bitwarden.com +carLicense: 0YPXNV +departmentNumber: 2064 +employeeType: Employee +homePhone: +1 206 477-4622 +initials: T. R. +mobile: +1 206 535-4723 +pager: +1 206 594-4189 +roomNumber: 9628 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hedi Cicci,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hedi Cicci +sn: Cicci +description: This is Hedi Cicci's description +facsimileTelephoneNumber: +1 804 922-8897 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 448-8505 +title: Associate Human Resources Czar +userPassword: Password1 +uid: CicciH +givenName: Hedi +mail: CicciH@043d56c5a9b5484da04c37031ff21f8c.bitwarden.com +carLicense: Y9MBNJ +departmentNumber: 5837 +employeeType: Contract +homePhone: +1 804 348-9406 +initials: H. C. +mobile: +1 804 883-8916 +pager: +1 804 249-9773 +roomNumber: 8360 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabriellia Falbee +sn: Falbee +description: This is Gabriellia Falbee's description +facsimileTelephoneNumber: +1 408 293-5429 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 408 729-4005 +title: Associate Janitorial President +userPassword: Password1 +uid: FalbeeG +givenName: Gabriellia +mail: FalbeeG@8f6cef22f95545eb970358eaab952ea6.bitwarden.com +carLicense: X0N6KJ +departmentNumber: 2411 +employeeType: Normal +homePhone: +1 408 337-1005 +initials: G. F. +mobile: +1 408 636-5821 +pager: +1 408 305-2724 +roomNumber: 8608 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Valaria Limerick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valaria Limerick +sn: Limerick +description: This is Valaria Limerick's description +facsimileTelephoneNumber: +1 408 227-3536 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 895-7004 +title: Master Product Testing Mascot +userPassword: Password1 +uid: LimericV +givenName: Valaria +mail: LimericV@47da44f4e5614af2b9a07b9460a560de.bitwarden.com +carLicense: EFT107 +departmentNumber: 3544 +employeeType: Contract +homePhone: +1 408 608-6373 +initials: V. L. +mobile: +1 408 623-8605 +pager: +1 408 309-2175 +roomNumber: 9125 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Oralia Hoggan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oralia Hoggan +sn: Hoggan +description: This is Oralia Hoggan's description +facsimileTelephoneNumber: +1 818 483-3740 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 990-2125 +title: Junior Management Architect +userPassword: Password1 +uid: HogganO +givenName: Oralia +mail: HogganO@95c37524ee9249b9a3a0c719599d89eb.bitwarden.com +carLicense: KOR8BP +departmentNumber: 8894 +employeeType: Employee +homePhone: +1 818 723-7862 +initials: O. H. +mobile: +1 818 402-1069 +pager: +1 818 938-1037 +roomNumber: 8884 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Leyla Parham,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leyla Parham +sn: Parham +description: This is Leyla Parham's description +facsimileTelephoneNumber: +1 818 257-4744 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 874-9188 +title: Chief Management Artist +userPassword: Password1 +uid: ParhamL +givenName: Leyla +mail: ParhamL@cb7ed07b9f1d4c06aa0fee9e92377dab.bitwarden.com +carLicense: T9MNSV +departmentNumber: 2307 +employeeType: Employee +homePhone: +1 818 431-5318 +initials: L. P. +mobile: +1 818 651-7629 +pager: +1 818 792-1035 +roomNumber: 9456 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Derick Paar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Derick Paar +sn: Paar +description: This is Derick Paar's description +facsimileTelephoneNumber: +1 510 838-3924 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 359-2791 +title: Supreme Peons Evangelist +userPassword: Password1 +uid: PaarD +givenName: Derick +mail: PaarD@f26f4cdf87cd4a378442f5716c6bc0c3.bitwarden.com +carLicense: S895O7 +departmentNumber: 2942 +employeeType: Contract +homePhone: +1 510 445-5592 +initials: D. P. +mobile: +1 510 989-4689 +pager: +1 510 256-6387 +roomNumber: 9306 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dau Peart,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dau Peart +sn: Peart +description: This is Dau Peart's description +facsimileTelephoneNumber: +1 818 372-1499 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 818 264-9572 +title: Chief Peons Artist +userPassword: Password1 +uid: PeartD +givenName: Dau +mail: PeartD@5a071e6ada864fbfb27301166664af38.bitwarden.com +carLicense: LJVQ3W +departmentNumber: 9772 +employeeType: Employee +homePhone: +1 818 472-3234 +initials: D. P. +mobile: +1 818 779-4862 +pager: +1 818 150-5159 +roomNumber: 8128 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Danell Kapp,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danell Kapp +sn: Kapp +description: This is Danell Kapp's description +facsimileTelephoneNumber: +1 213 241-3683 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 756-4887 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: KappD +givenName: Danell +mail: KappD@6f354943caba4900b471133a6c94292f.bitwarden.com +carLicense: X5A259 +departmentNumber: 4170 +employeeType: Normal +homePhone: +1 213 508-6421 +initials: D. K. +mobile: +1 213 464-3135 +pager: +1 213 298-3489 +roomNumber: 9163 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pen Marshall,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pen Marshall +sn: Marshall +description: This is Pen Marshall's description +facsimileTelephoneNumber: +1 415 845-7507 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 693-4311 +title: Supreme Product Development Manager +userPassword: Password1 +uid: MarshalP +givenName: Pen +mail: MarshalP@f916ce27ce81484dbb62ae97089dfb33.bitwarden.com +carLicense: 888W0Q +departmentNumber: 4355 +employeeType: Contract +homePhone: +1 415 420-2462 +initials: P. M. +mobile: +1 415 527-9470 +pager: +1 415 345-1203 +roomNumber: 9890 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacalyn Dodgson +sn: Dodgson +description: This is Jacalyn Dodgson's description +facsimileTelephoneNumber: +1 213 591-6735 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 878-9413 +title: Junior Human Resources Warrior +userPassword: Password1 +uid: DodgsonJ +givenName: Jacalyn +mail: DodgsonJ@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com +carLicense: OWEY47 +departmentNumber: 3432 +employeeType: Normal +homePhone: +1 213 516-4399 +initials: J. D. +mobile: +1 213 588-1743 +pager: +1 213 120-2111 +roomNumber: 8004 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kary Soo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kary Soo +sn: Soo +description: This is Kary Soo's description +facsimileTelephoneNumber: +1 206 295-3554 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 206 534-3311 +title: Junior Management Evangelist +userPassword: Password1 +uid: SooK +givenName: Kary +mail: SooK@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com +carLicense: WUD90S +departmentNumber: 5211 +employeeType: Normal +homePhone: +1 206 952-2866 +initials: K. S. +mobile: +1 206 859-9368 +pager: +1 206 435-5300 +roomNumber: 8453 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dhanvinder Clipperton +sn: Clipperton +description: This is Dhanvinder Clipperton's description +facsimileTelephoneNumber: +1 818 646-8600 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 830-4953 +title: Master Human Resources Madonna +userPassword: Password1 +uid: ClipperD +givenName: Dhanvinder +mail: ClipperD@b9a2e7612aef443ebd9966e99249a73c.bitwarden.com +carLicense: RBD0EQ +departmentNumber: 3793 +employeeType: Employee +homePhone: +1 818 910-5809 +initials: D. C. +mobile: +1 818 379-3734 +pager: +1 818 266-5764 +roomNumber: 8431 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kiem Pracht,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiem Pracht +sn: Pracht +description: This is Kiem Pracht's description +facsimileTelephoneNumber: +1 408 333-3245 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 364-7043 +title: Supreme Payroll Technician +userPassword: Password1 +uid: PrachtK +givenName: Kiem +mail: PrachtK@e677741303634ac2804273adce139081.bitwarden.com +carLicense: 8VQ0LB +departmentNumber: 8598 +employeeType: Normal +homePhone: +1 408 397-2286 +initials: K. P. +mobile: +1 408 124-3745 +pager: +1 408 117-2828 +roomNumber: 9480 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dominga Senyildiz +sn: Senyildiz +description: This is Dominga Senyildiz's description +facsimileTelephoneNumber: +1 206 309-2725 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 728-8593 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: SenyildD +givenName: Dominga +mail: SenyildD@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com +carLicense: EL28F6 +departmentNumber: 7261 +employeeType: Contract +homePhone: +1 206 745-2572 +initials: D. S. +mobile: +1 206 476-5564 +pager: +1 206 759-6038 +roomNumber: 9038 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vick Marleau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vick Marleau +sn: Marleau +description: This is Vick Marleau's description +facsimileTelephoneNumber: +1 213 814-3028 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 803-6012 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: MarleauV +givenName: Vick +mail: MarleauV@9833226d7baa41fe919293bebd42f796.bitwarden.com +carLicense: LQ0012 +departmentNumber: 5500 +employeeType: Employee +homePhone: +1 213 521-7313 +initials: V. M. +mobile: +1 213 181-7975 +pager: +1 213 644-6354 +roomNumber: 8346 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Adrianna Bruder,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrianna Bruder +sn: Bruder +description: This is Adrianna Bruder's description +facsimileTelephoneNumber: +1 818 615-2138 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 530-9423 +title: Junior Management Technician +userPassword: Password1 +uid: BruderA +givenName: Adrianna +mail: BruderA@ba870021396f4a5691ef47f553098ab0.bitwarden.com +carLicense: 2I4U5K +departmentNumber: 9051 +employeeType: Normal +homePhone: +1 818 886-1063 +initials: A. B. +mobile: +1 818 113-6509 +pager: +1 818 273-1747 +roomNumber: 9261 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Isabelita Swinney,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isabelita Swinney +sn: Swinney +description: This is Isabelita Swinney's description +facsimileTelephoneNumber: +1 510 461-5923 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 510 900-6430 +title: Junior Peons Janitor +userPassword: Password1 +uid: SwinneyI +givenName: Isabelita +mail: SwinneyI@a67fe9a0cfe2484f900b487d2bc8fbf2.bitwarden.com +carLicense: 4VE3YJ +departmentNumber: 1046 +employeeType: Contract +homePhone: +1 510 976-8439 +initials: I. S. +mobile: +1 510 458-2896 +pager: +1 510 533-4394 +roomNumber: 8825 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fereidoon Shypski +sn: Shypski +description: This is Fereidoon Shypski's description +facsimileTelephoneNumber: +1 510 465-6333 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 323-7571 +title: Junior Human Resources Madonna +userPassword: Password1 +uid: ShypskiF +givenName: Fereidoon +mail: ShypskiF@5e72004cd5c54ab885896ad64d562293.bitwarden.com +carLicense: DIT9VB +departmentNumber: 6015 +employeeType: Normal +homePhone: +1 510 991-3584 +initials: F. S. +mobile: +1 510 430-8512 +pager: +1 510 921-4436 +roomNumber: 9856 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kelcey Lee,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelcey Lee +sn: Lee +description: This is Kelcey Lee's description +facsimileTelephoneNumber: +1 213 675-8465 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 704-9318 +title: Master Administrative Fellow +userPassword: Password1 +uid: LeeK +givenName: Kelcey +mail: LeeK@8349ed265bc74cb3b9674a8fb6ff8c4a.bitwarden.com +carLicense: 7PFJXC +departmentNumber: 8805 +employeeType: Employee +homePhone: +1 213 641-5515 +initials: K. L. +mobile: +1 213 225-3247 +pager: +1 213 326-8652 +roomNumber: 8774 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Brandy Koellner,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandy Koellner +sn: Koellner +description: This is Brandy Koellner's description +facsimileTelephoneNumber: +1 213 761-4118 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 234-5710 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: KoellneB +givenName: Brandy +mail: KoellneB@81a5522a2a9d4dc49f8fbc517ee60b13.bitwarden.com +carLicense: 40FWCY +departmentNumber: 9630 +employeeType: Employee +homePhone: +1 213 662-2124 +initials: B. K. +mobile: +1 213 831-6346 +pager: +1 213 933-4835 +roomNumber: 9248 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Selie Schedulers,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selie Schedulers +sn: Schedulers +description: This is Selie Schedulers's description +facsimileTelephoneNumber: +1 804 461-5892 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 615-8895 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: SchedulS +givenName: Selie +mail: SchedulS@59fd7fd5c9b94eff897d05888fea4340.bitwarden.com +carLicense: DNB85E +departmentNumber: 9337 +employeeType: Employee +homePhone: +1 804 956-7350 +initials: S. S. +mobile: +1 804 250-5995 +pager: +1 804 113-7453 +roomNumber: 9901 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Addons Dieter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Addons Dieter +sn: Dieter +description: This is Addons Dieter's description +facsimileTelephoneNumber: +1 415 641-9472 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 136-1123 +title: Chief Product Development Visionary +userPassword: Password1 +uid: DieterA +givenName: Addons +mail: DieterA@c17ef8e190ef47c58a216f111cfa28dc.bitwarden.com +carLicense: BKMWF4 +departmentNumber: 5582 +employeeType: Normal +homePhone: +1 415 567-4195 +initials: A. D. +mobile: +1 415 513-2691 +pager: +1 415 859-3130 +roomNumber: 9435 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lesly Willett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lesly Willett +sn: Willett +description: This is Lesly Willett's description +facsimileTelephoneNumber: +1 510 885-2177 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 329-9977 +title: Chief Peons Visionary +userPassword: Password1 +uid: WillettL +givenName: Lesly +mail: WillettL@1a46c6e7f89a43fabb02c5bfef5febd5.bitwarden.com +carLicense: Y823JA +departmentNumber: 4477 +employeeType: Employee +homePhone: +1 510 478-8817 +initials: L. W. +mobile: +1 510 362-7908 +pager: +1 510 485-2860 +roomNumber: 9397 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Coleman Wolski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coleman Wolski +sn: Wolski +description: This is Coleman Wolski's description +facsimileTelephoneNumber: +1 206 442-6711 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 206 688-2733 +title: Master Product Development Figurehead +userPassword: Password1 +uid: WolskiC +givenName: Coleman +mail: WolskiC@dff7261f6b3e4cf09c06f21dd7c7d26c.bitwarden.com +carLicense: 7NLKJH +departmentNumber: 6873 +employeeType: Employee +homePhone: +1 206 772-9456 +initials: C. W. +mobile: +1 206 993-1829 +pager: +1 206 863-5917 +roomNumber: 9755 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shutterbug Lauson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shutterbug Lauson +sn: Lauson +description: This is Shutterbug Lauson's description +facsimileTelephoneNumber: +1 510 432-1431 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 262-1748 +title: Master Management Vice President +userPassword: Password1 +uid: LausonS +givenName: Shutterbug +mail: LausonS@ea44c2476f934218bf3d758975e567c8.bitwarden.com +carLicense: BVC253 +departmentNumber: 9954 +employeeType: Employee +homePhone: +1 510 763-6975 +initials: S. L. +mobile: +1 510 145-1072 +pager: +1 510 965-8577 +roomNumber: 8773 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aveline Seetharaman +sn: Seetharaman +description: This is Aveline Seetharaman's description +facsimileTelephoneNumber: +1 213 988-6385 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 673-1773 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: SeetharA +givenName: Aveline +mail: SeetharA@58d046473fe24d0d8bf6f510239a1102.bitwarden.com +carLicense: PE16B7 +departmentNumber: 8984 +employeeType: Contract +homePhone: +1 213 277-7443 +initials: A. S. +mobile: +1 213 956-3498 +pager: +1 213 602-1281 +roomNumber: 8248 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nancy Oziskender,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nancy Oziskender +sn: Oziskender +description: This is Nancy Oziskender's description +facsimileTelephoneNumber: +1 213 485-2972 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 153-1917 +title: Supreme Payroll Writer +userPassword: Password1 +uid: OziskenN +givenName: Nancy +mail: OziskenN@d6177daa79a64f8eb62f8d79f0c41ce3.bitwarden.com +carLicense: 1MMN4K +departmentNumber: 2641 +employeeType: Contract +homePhone: +1 213 955-9613 +initials: N. O. +mobile: +1 213 798-7178 +pager: +1 213 648-8007 +roomNumber: 9416 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Doloritas Flowers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doloritas Flowers +sn: Flowers +description: This is Doloritas Flowers's description +facsimileTelephoneNumber: +1 206 443-5041 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 206 181-7849 +title: Master Management Consultant +userPassword: Password1 +uid: FlowersD +givenName: Doloritas +mail: FlowersD@6a1a5eea63134321b540021379837737.bitwarden.com +carLicense: VXTI32 +departmentNumber: 4880 +employeeType: Employee +homePhone: +1 206 322-2151 +initials: D. F. +mobile: +1 206 685-9007 +pager: +1 206 517-3289 +roomNumber: 9780 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Veleta Lun,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veleta Lun +sn: Lun +description: This is Veleta Lun's description +facsimileTelephoneNumber: +1 206 757-5319 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 756-1894 +title: Chief Payroll Mascot +userPassword: Password1 +uid: LunV +givenName: Veleta +mail: LunV@79eafeb75c844d3eaf6f5efd1b8c0977.bitwarden.com +carLicense: CQ80NM +departmentNumber: 1724 +employeeType: Employee +homePhone: +1 206 360-9309 +initials: V. L. +mobile: +1 206 780-5013 +pager: +1 206 727-8247 +roomNumber: 8830 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aila Speaker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aila Speaker +sn: Speaker +description: This is Aila Speaker's description +facsimileTelephoneNumber: +1 510 654-6685 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 510 451-8013 +title: Master Product Testing Manager +userPassword: Password1 +uid: SpeakerA +givenName: Aila +mail: SpeakerA@22b676e4c7dd4fe79235ea7758399705.bitwarden.com +carLicense: MBCIV4 +departmentNumber: 4794 +employeeType: Contract +homePhone: +1 510 359-7456 +initials: A. S. +mobile: +1 510 388-4934 +pager: +1 510 787-1447 +roomNumber: 8566 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Scptest Menna,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Scptest Menna +sn: Menna +description: This is Scptest Menna's description +facsimileTelephoneNumber: +1 213 735-5136 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 584-9161 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: MennaS +givenName: Scptest +mail: MennaS@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com +carLicense: HP5MBG +departmentNumber: 8634 +employeeType: Contract +homePhone: +1 213 207-4660 +initials: S. M. +mobile: +1 213 720-3123 +pager: +1 213 469-7193 +roomNumber: 8458 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Madeleine Goss,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madeleine Goss +sn: Goss +description: This is Madeleine Goss's description +facsimileTelephoneNumber: +1 804 705-1805 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 596-5433 +title: Chief Administrative Warrior +userPassword: Password1 +uid: GossM +givenName: Madeleine +mail: GossM@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com +carLicense: BC0IO8 +departmentNumber: 6320 +employeeType: Employee +homePhone: +1 804 920-7667 +initials: M. G. +mobile: +1 804 816-5773 +pager: +1 804 549-3064 +roomNumber: 8396 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Thuy Sullivan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thuy Sullivan +sn: Sullivan +description: This is Thuy Sullivan's description +facsimileTelephoneNumber: +1 206 129-7688 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 627-7831 +title: Supreme Product Development Architect +userPassword: Password1 +uid: SullivaT +givenName: Thuy +mail: SullivaT@f260a92a20974e44926d8337feae7384.bitwarden.com +carLicense: 6G6MLD +departmentNumber: 5416 +employeeType: Normal +homePhone: +1 206 629-9214 +initials: T. S. +mobile: +1 206 966-9205 +pager: +1 206 565-6050 +roomNumber: 9108 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sheridan Sandner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheridan Sandner +sn: Sandner +description: This is Sheridan Sandner's description +facsimileTelephoneNumber: +1 408 969-6700 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 236-5641 +title: Junior Product Development Writer +userPassword: Password1 +uid: SandnerS +givenName: Sheridan +mail: SandnerS@7022b955bef74762989f3e8241ec17a6.bitwarden.com +carLicense: 6URVNY +departmentNumber: 8610 +employeeType: Normal +homePhone: +1 408 578-8534 +initials: S. S. +mobile: +1 408 644-6831 +pager: +1 408 295-6047 +roomNumber: 9649 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Malory Groff,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malory Groff +sn: Groff +description: This is Malory Groff's description +facsimileTelephoneNumber: +1 213 769-1229 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 620-6590 +title: Supreme Payroll Madonna +userPassword: Password1 +uid: GroffM +givenName: Malory +mail: GroffM@83a8c1265a2948b59ee00a06831fe99b.bitwarden.com +carLicense: 6PAAVY +departmentNumber: 9500 +employeeType: Normal +homePhone: +1 213 516-5165 +initials: M. G. +mobile: +1 213 400-1915 +pager: +1 213 545-6137 +roomNumber: 9106 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Armine livinston,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Armine livinston +sn: livinston +description: This is Armine livinston's description +facsimileTelephoneNumber: +1 818 850-3485 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 818 621-3101 +title: Junior Administrative Stooge +userPassword: Password1 +uid: livinstA +givenName: Armine +mail: livinstA@eb2999c8fa284a3f8c9f7cd764a9ece1.bitwarden.com +carLicense: J0UMOK +departmentNumber: 5701 +employeeType: Normal +homePhone: +1 818 616-3454 +initials: A. l. +mobile: +1 818 249-3224 +pager: +1 818 676-5612 +roomNumber: 8771 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaukat Hankins +sn: Hankins +description: This is Shaukat Hankins's description +facsimileTelephoneNumber: +1 415 799-5873 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 248-5596 +title: Master Human Resources Artist +userPassword: Password1 +uid: HankinsS +givenName: Shaukat +mail: HankinsS@72d3ee658b6a43d28d374f5d8eed91ab.bitwarden.com +carLicense: 1SS1O9 +departmentNumber: 4051 +employeeType: Employee +homePhone: +1 415 143-6682 +initials: S. H. +mobile: +1 415 713-3740 +pager: +1 415 632-5642 +roomNumber: 9931 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Anibal Ribakovs,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anibal Ribakovs +sn: Ribakovs +description: This is Anibal Ribakovs's description +facsimileTelephoneNumber: +1 213 801-2177 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 748-9237 +title: Associate Management Engineer +userPassword: Password1 +uid: RibakovA +givenName: Anibal +mail: RibakovA@cd4acec6c2bb4065b089eb7a74e04db1.bitwarden.com +carLicense: L9Y6YC +departmentNumber: 4205 +employeeType: Normal +homePhone: +1 213 220-4615 +initials: A. R. +mobile: +1 213 528-7360 +pager: +1 213 681-3278 +roomNumber: 9968 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tao Kardomateas,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tao Kardomateas +sn: Kardomateas +description: This is Tao Kardomateas's description +facsimileTelephoneNumber: +1 510 851-4391 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 510 262-7863 +title: Junior Administrative Czar +userPassword: Password1 +uid: KardomaT +givenName: Tao +mail: KardomaT@f8af09b819014024bd18d58f41da44cd.bitwarden.com +carLicense: FNYNH9 +departmentNumber: 5552 +employeeType: Normal +homePhone: +1 510 571-4746 +initials: T. K. +mobile: +1 510 970-2189 +pager: +1 510 783-4483 +roomNumber: 9090 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisenda Gultekin +sn: Gultekin +description: This is Melisenda Gultekin's description +facsimileTelephoneNumber: +1 213 295-2257 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 213 246-2237 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: GultekiM +givenName: Melisenda +mail: GultekiM@8053af09c938471f9ad09445e16f631c.bitwarden.com +carLicense: JMVV38 +departmentNumber: 4975 +employeeType: Normal +homePhone: +1 213 585-6628 +initials: M. G. +mobile: +1 213 635-7647 +pager: +1 213 153-7144 +roomNumber: 8073 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mommy Neto,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mommy Neto +sn: Neto +description: This is Mommy Neto's description +facsimileTelephoneNumber: +1 804 159-7713 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 901-4230 +title: Chief Human Resources Artist +userPassword: Password1 +uid: NetoM +givenName: Mommy +mail: NetoM@9f63e83dc7124376aa907e1f46aa8250.bitwarden.com +carLicense: X8OHR8 +departmentNumber: 6942 +employeeType: Contract +homePhone: +1 804 636-4643 +initials: M. N. +mobile: +1 804 641-8348 +pager: +1 804 320-4392 +roomNumber: 9360 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Goldwyn Lister,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Goldwyn Lister +sn: Lister +description: This is Goldwyn Lister's description +facsimileTelephoneNumber: +1 408 385-3002 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 429-8048 +title: Junior Administrative Warrior +userPassword: Password1 +uid: ListerG +givenName: Goldwyn +mail: ListerG@beba94b4890142a087b66411df53d92a.bitwarden.com +carLicense: PH1EAH +departmentNumber: 1536 +employeeType: Employee +homePhone: +1 408 427-4254 +initials: G. L. +mobile: +1 408 197-4142 +pager: +1 408 992-5472 +roomNumber: 9158 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jesus Fraser,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jesus Fraser +sn: Fraser +description: This is Jesus Fraser's description +facsimileTelephoneNumber: +1 415 346-9519 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 693-9751 +title: Supreme Payroll Vice President +userPassword: Password1 +uid: FraserJ +givenName: Jesus +mail: FraserJ@8b756558381d4f26bb25a8056450ac9f.bitwarden.com +carLicense: CAET64 +departmentNumber: 3762 +employeeType: Contract +homePhone: +1 415 260-1197 +initials: J. F. +mobile: +1 415 222-1286 +pager: +1 415 838-9083 +roomNumber: 9434 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sabina Davison,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabina Davison +sn: Davison +description: This is Sabina Davison's description +facsimileTelephoneNumber: +1 213 956-6796 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 131-9723 +title: Master Peons Fellow +userPassword: Password1 +uid: DavisonS +givenName: Sabina +mail: DavisonS@daa1e24c0eb048798f1d4ee756ce865c.bitwarden.com +carLicense: QAMFNR +departmentNumber: 8711 +employeeType: Employee +homePhone: +1 213 574-1944 +initials: S. D. +mobile: +1 213 549-6904 +pager: +1 213 217-5908 +roomNumber: 9089 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aniko Scarborough +sn: Scarborough +description: This is Aniko Scarborough's description +facsimileTelephoneNumber: +1 408 623-9497 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 414-9854 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: ScarborA +givenName: Aniko +mail: ScarborA@7662f3c56c8f438dafc48f46ab18bd48.bitwarden.com +carLicense: YF725L +departmentNumber: 9873 +employeeType: Employee +homePhone: +1 408 440-7954 +initials: A. S. +mobile: +1 408 738-3882 +pager: +1 408 535-4196 +roomNumber: 8271 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tawnya Thiel +sn: Thiel +description: This is Tawnya Thiel's description +facsimileTelephoneNumber: +1 415 974-1779 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 381-5916 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: ThielT +givenName: Tawnya +mail: ThielT@a41e77135c5346be96b465a7d5d633c0.bitwarden.com +carLicense: Q0QJJ3 +departmentNumber: 8038 +employeeType: Contract +homePhone: +1 415 112-3861 +initials: T. T. +mobile: +1 415 991-8317 +pager: +1 415 423-1775 +roomNumber: 9347 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ohio Leong,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ohio Leong +sn: Leong +description: This is Ohio Leong's description +facsimileTelephoneNumber: +1 510 556-9500 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 864-3058 +title: Master Peons Engineer +userPassword: Password1 +uid: LeongO +givenName: Ohio +mail: LeongO@4664a2b63b254ce9b3d95a8c77ae6508.bitwarden.com +carLicense: S21WX8 +departmentNumber: 1408 +employeeType: Employee +homePhone: +1 510 165-3157 +initials: O. L. +mobile: +1 510 674-2130 +pager: +1 510 198-3838 +roomNumber: 9609 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Helma Fulford,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helma Fulford +sn: Fulford +description: This is Helma Fulford's description +facsimileTelephoneNumber: +1 510 752-7080 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 116-6250 +title: Master Janitorial Dictator +userPassword: Password1 +uid: FulfordH +givenName: Helma +mail: FulfordH@53f2a179085949f9929a0abb8a150cb6.bitwarden.com +carLicense: AIIA3A +departmentNumber: 4110 +employeeType: Employee +homePhone: +1 510 740-7949 +initials: H. F. +mobile: +1 510 910-3496 +pager: +1 510 197-7094 +roomNumber: 9057 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Wendy Ashford,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wendy Ashford +sn: Ashford +description: This is Wendy Ashford's description +facsimileTelephoneNumber: +1 804 380-6278 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 783-1607 +title: Junior Product Development Technician +userPassword: Password1 +uid: AshfordW +givenName: Wendy +mail: AshfordW@f409013fa2954a03ae4501e12af3b06b.bitwarden.com +carLicense: CMS4YS +departmentNumber: 4203 +employeeType: Normal +homePhone: +1 804 431-7667 +initials: W. A. +mobile: +1 804 854-8513 +pager: +1 804 922-1372 +roomNumber: 8196 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ricki Schadan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ricki Schadan +sn: Schadan +description: This is Ricki Schadan's description +facsimileTelephoneNumber: +1 818 626-7255 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 203-5966 +title: Associate Administrative Czar +userPassword: Password1 +uid: SchadanR +givenName: Ricki +mail: SchadanR@b8ae2136bfb44521a9e99c5d81fc17f7.bitwarden.com +carLicense: BEWH00 +departmentNumber: 9838 +employeeType: Contract +homePhone: +1 818 211-6352 +initials: R. S. +mobile: +1 818 950-2221 +pager: +1 818 888-5298 +roomNumber: 9159 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Carolee McClintock,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolee McClintock +sn: McClintock +description: This is Carolee McClintock's description +facsimileTelephoneNumber: +1 818 776-2950 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 818 433-1732 +title: Master Product Development Engineer +userPassword: Password1 +uid: McClintC +givenName: Carolee +mail: McClintC@27eb42f1314e46fc8bcbc24a42e4598e.bitwarden.com +carLicense: IQG3QH +departmentNumber: 9881 +employeeType: Contract +homePhone: +1 818 894-3372 +initials: C. M. +mobile: +1 818 287-7680 +pager: +1 818 358-4091 +roomNumber: 8696 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fara Phifer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fara Phifer +sn: Phifer +description: This is Fara Phifer's description +facsimileTelephoneNumber: +1 213 803-2044 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 288-9095 +title: Master Payroll Consultant +userPassword: Password1 +uid: PhiferF +givenName: Fara +mail: PhiferF@772d4127578e47699e9b196a161e8a46.bitwarden.com +carLicense: 0UYWPT +departmentNumber: 1738 +employeeType: Contract +homePhone: +1 213 795-5989 +initials: F. P. +mobile: +1 213 881-4379 +pager: +1 213 360-7424 +roomNumber: 9654 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jennee Jasmin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jennee Jasmin +sn: Jasmin +description: This is Jennee Jasmin's description +facsimileTelephoneNumber: +1 510 885-9004 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 857-4165 +title: Associate Administrative Madonna +userPassword: Password1 +uid: JasminJ +givenName: Jennee +mail: JasminJ@5b146323be6643e092b53ceb21e379e8.bitwarden.com +carLicense: TSEVC5 +departmentNumber: 7045 +employeeType: Contract +homePhone: +1 510 287-8941 +initials: J. J. +mobile: +1 510 766-2015 +pager: +1 510 358-1282 +roomNumber: 8381 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yatish Streng,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yatish Streng +sn: Streng +description: This is Yatish Streng's description +facsimileTelephoneNumber: +1 804 888-3591 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 110-4668 +title: Associate Janitorial Writer +userPassword: Password1 +uid: StrengY +givenName: Yatish +mail: StrengY@7d2914d75d254468950490f34fff79f9.bitwarden.com +carLicense: 32FWLP +departmentNumber: 1603 +employeeType: Employee +homePhone: +1 804 193-8655 +initials: Y. S. +mobile: +1 804 286-6666 +pager: +1 804 417-5045 +roomNumber: 9342 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mair Basladynski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mair Basladynski +sn: Basladynski +description: This is Mair Basladynski's description +facsimileTelephoneNumber: +1 804 619-9695 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 959-7795 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: BasladyM +givenName: Mair +mail: BasladyM@d4b58fe2bfde4032862e5386c0e20902.bitwarden.com +carLicense: AWTEI4 +departmentNumber: 5219 +employeeType: Employee +homePhone: +1 804 170-1072 +initials: M. B. +mobile: +1 804 776-6951 +pager: +1 804 703-6046 +roomNumber: 8158 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Karyn Bender,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karyn Bender +sn: Bender +description: This is Karyn Bender's description +facsimileTelephoneNumber: +1 510 449-3748 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 171-8712 +title: Master Administrative Vice President +userPassword: Password1 +uid: BenderK +givenName: Karyn +mail: BenderK@c26e885b4f4a47e7befaa9bedce07d04.bitwarden.com +carLicense: JV754G +departmentNumber: 2189 +employeeType: Contract +homePhone: +1 510 842-7288 +initials: K. B. +mobile: +1 510 490-4425 +pager: +1 510 984-3354 +roomNumber: 8689 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beate Ahlberg,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beate Ahlberg +sn: Ahlberg +description: This is Beate Ahlberg's description +facsimileTelephoneNumber: +1 213 939-9425 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 571-6021 +title: Associate Payroll Writer +userPassword: Password1 +uid: AhlbergB +givenName: Beate +mail: AhlbergB@b064b72d68464a06b3938f3f2abab372.bitwarden.com +carLicense: QBTB30 +departmentNumber: 7817 +employeeType: Contract +homePhone: +1 213 244-4441 +initials: B. A. +mobile: +1 213 620-6478 +pager: +1 213 204-7413 +roomNumber: 8984 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Roberto Binder,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roberto Binder +sn: Binder +description: This is Roberto Binder's description +facsimileTelephoneNumber: +1 408 887-9269 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 400-3529 +title: Chief Human Resources Artist +userPassword: Password1 +uid: BinderR +givenName: Roberto +mail: BinderR@b821fa0513d7408ebbfe73c94767102c.bitwarden.com +carLicense: 4DYT5C +departmentNumber: 1199 +employeeType: Employee +homePhone: +1 408 360-4449 +initials: R. B. +mobile: +1 408 391-3012 +pager: +1 408 859-8530 +roomNumber: 8845 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Miro Sparksman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miro Sparksman +sn: Sparksman +description: This is Miro Sparksman's description +facsimileTelephoneNumber: +1 510 595-4240 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 179-5998 +title: Master Janitorial Writer +userPassword: Password1 +uid: SparksmM +givenName: Miro +mail: SparksmM@4c2706f148d24c978855dfe00601ca6a.bitwarden.com +carLicense: SWRHA2 +departmentNumber: 6834 +employeeType: Normal +homePhone: +1 510 250-8054 +initials: M. S. +mobile: +1 510 864-9204 +pager: +1 510 536-4376 +roomNumber: 8970 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ethan Salazar,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ethan Salazar +sn: Salazar +description: This is Ethan Salazar's description +facsimileTelephoneNumber: +1 804 116-4333 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 994-5624 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: SalazarE +givenName: Ethan +mail: SalazarE@652b9ea2520d46da8b923406e54cf707.bitwarden.com +carLicense: NHH9XT +departmentNumber: 3364 +employeeType: Contract +homePhone: +1 804 909-8455 +initials: E. S. +mobile: +1 804 665-5596 +pager: +1 804 188-4622 +roomNumber: 8332 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elza Meubus,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elza Meubus +sn: Meubus +description: This is Elza Meubus's description +facsimileTelephoneNumber: +1 818 366-4330 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 246-3384 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: MeubusE +givenName: Elza +mail: MeubusE@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com +carLicense: 5S0WL0 +departmentNumber: 4702 +employeeType: Contract +homePhone: +1 818 197-3906 +initials: E. M. +mobile: +1 818 329-8873 +pager: +1 818 821-3083 +roomNumber: 9422 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: GokulChandra Vandagriff +sn: Vandagriff +description: This is GokulChandra Vandagriff's description +facsimileTelephoneNumber: +1 415 177-9246 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 353-6747 +title: Associate Product Development Developer +userPassword: Password1 +uid: VandagrG +givenName: GokulChandra +mail: VandagrG@9401b30c07d641ad85c9d343e51620fa.bitwarden.com +carLicense: O21PI7 +departmentNumber: 2475 +employeeType: Contract +homePhone: +1 415 935-9712 +initials: G. V. +mobile: +1 415 520-1788 +pager: +1 415 545-2491 +roomNumber: 9497 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Phyllida Peng,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phyllida Peng +sn: Peng +description: This is Phyllida Peng's description +facsimileTelephoneNumber: +1 415 148-5058 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 511-9899 +title: Supreme Product Development Architect +userPassword: Password1 +uid: PengP +givenName: Phyllida +mail: PengP@3b5097c7d33f4dd5b850d3928945e3fb.bitwarden.com +carLicense: X5OLYA +departmentNumber: 7414 +employeeType: Employee +homePhone: +1 415 316-7894 +initials: P. P. +mobile: +1 415 830-6892 +pager: +1 415 103-5055 +roomNumber: 8255 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Leslie Wagoner,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leslie Wagoner +sn: Wagoner +description: This is Leslie Wagoner's description +facsimileTelephoneNumber: +1 408 695-5343 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 540-5296 +title: Associate Administrative Mascot +userPassword: Password1 +uid: WagonerL +givenName: Leslie +mail: WagonerL@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com +carLicense: ORILIH +departmentNumber: 9872 +employeeType: Employee +homePhone: +1 408 423-7604 +initials: L. W. +mobile: +1 408 277-5283 +pager: +1 408 636-2071 +roomNumber: 8974 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Erning Dmsrtime,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erning Dmsrtime +sn: Dmsrtime +description: This is Erning Dmsrtime's description +facsimileTelephoneNumber: +1 415 584-6158 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 172-5870 +title: Master Peons Assistant +userPassword: Password1 +uid: DmsrtimE +givenName: Erning +mail: DmsrtimE@984a33b6fcea4c229307cb5a753888dd.bitwarden.com +carLicense: AY6EFU +departmentNumber: 3669 +employeeType: Contract +homePhone: +1 415 791-1445 +initials: E. D. +mobile: +1 415 558-3996 +pager: +1 415 114-9095 +roomNumber: 9238 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Frederica Barel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frederica Barel +sn: Barel +description: This is Frederica Barel's description +facsimileTelephoneNumber: +1 804 525-3318 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 535-9002 +title: Associate Janitorial Manager +userPassword: Password1 +uid: BarelF +givenName: Frederica +mail: BarelF@46b9c76000e34e4685e646b4677138bc.bitwarden.com +carLicense: YGG4BV +departmentNumber: 6576 +employeeType: Employee +homePhone: +1 804 420-9269 +initials: F. B. +mobile: +1 804 882-2775 +pager: +1 804 695-8028 +roomNumber: 9935 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wilkin Coupal,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilkin Coupal +sn: Coupal +description: This is Wilkin Coupal's description +facsimileTelephoneNumber: +1 213 626-2769 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 870-9787 +title: Master Management Writer +userPassword: Password1 +uid: CoupalW +givenName: Wilkin +mail: CoupalW@4e301d4682ea4f23b3797582ef8f2c42.bitwarden.com +carLicense: QV302N +departmentNumber: 3018 +employeeType: Contract +homePhone: +1 213 677-7442 +initials: W. C. +mobile: +1 213 826-5568 +pager: +1 213 685-7470 +roomNumber: 8737 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nancie BlakeKnox +sn: BlakeKnox +description: This is Nancie BlakeKnox's description +facsimileTelephoneNumber: +1 206 465-6852 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 613-3923 +title: Associate Peons Stooge +userPassword: Password1 +uid: BlakeKnN +givenName: Nancie +mail: BlakeKnN@e1893d7ef9564395a0b1b816030adce2.bitwarden.com +carLicense: 5NNVBG +departmentNumber: 6205 +employeeType: Normal +homePhone: +1 206 654-5842 +initials: N. B. +mobile: +1 206 118-4448 +pager: +1 206 504-4543 +roomNumber: 9723 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Millie Kenol,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Millie Kenol +sn: Kenol +description: This is Millie Kenol's description +facsimileTelephoneNumber: +1 408 484-5914 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 408-4887 +title: Chief Payroll Writer +userPassword: Password1 +uid: KenolM +givenName: Millie +mail: KenolM@d37901086196495ab5d77980959c7f35.bitwarden.com +carLicense: LATO72 +departmentNumber: 1546 +employeeType: Contract +homePhone: +1 408 748-3626 +initials: M. K. +mobile: +1 408 923-9721 +pager: +1 408 832-5674 +roomNumber: 9077 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Miklos Menzies,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miklos Menzies +sn: Menzies +description: This is Miklos Menzies's description +facsimileTelephoneNumber: +1 213 531-3896 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 213 849-5677 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: MenziesM +givenName: Miklos +mail: MenziesM@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com +carLicense: RSSXOC +departmentNumber: 7908 +employeeType: Contract +homePhone: +1 213 815-7781 +initials: M. M. +mobile: +1 213 304-6122 +pager: +1 213 619-1040 +roomNumber: 9618 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xantippe Ohmayer +sn: Ohmayer +description: This is Xantippe Ohmayer's description +facsimileTelephoneNumber: +1 408 174-4127 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 981-2175 +title: Master Janitorial Grunt +userPassword: Password1 +uid: OhmayerX +givenName: Xantippe +mail: OhmayerX@39abbceda00e41858d81e19cc3b490e4.bitwarden.com +carLicense: 9GTUAL +departmentNumber: 9974 +employeeType: Contract +homePhone: +1 408 823-3465 +initials: X. O. +mobile: +1 408 349-5794 +pager: +1 408 661-6299 +roomNumber: 9816 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=WenKai Peleato,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WenKai Peleato +sn: Peleato +description: This is WenKai Peleato's description +facsimileTelephoneNumber: +1 804 318-2698 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 510-7810 +title: Master Payroll Admin +userPassword: Password1 +uid: PeleatoW +givenName: WenKai +mail: PeleatoW@c2ddaecf94964357886149e7833e3267.bitwarden.com +carLicense: 8H8M38 +departmentNumber: 9239 +employeeType: Contract +homePhone: +1 804 770-7612 +initials: W. P. +mobile: +1 804 292-2249 +pager: +1 804 922-3407 +roomNumber: 8041 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=ChoLun Simser,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChoLun Simser +sn: Simser +description: This is ChoLun Simser's description +facsimileTelephoneNumber: +1 510 342-1438 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 547-6514 +title: Associate Janitorial Visionary +userPassword: Password1 +uid: SimserC +givenName: ChoLun +mail: SimserC@52375a276d8e4116b12e682b77fe0b05.bitwarden.com +carLicense: FBVN6P +departmentNumber: 2328 +employeeType: Contract +homePhone: +1 510 139-8603 +initials: C. S. +mobile: +1 510 141-6228 +pager: +1 510 573-7910 +roomNumber: 9440 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Minerva Paulett,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minerva Paulett +sn: Paulett +description: This is Minerva Paulett's description +facsimileTelephoneNumber: +1 804 527-1966 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 695-4234 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: PaulettM +givenName: Minerva +mail: PaulettM@0b6df1c2b33a45858d2011f826942879.bitwarden.com +carLicense: MEJLGA +departmentNumber: 4387 +employeeType: Employee +homePhone: +1 804 483-8997 +initials: M. P. +mobile: +1 804 292-3932 +pager: +1 804 542-4980 +roomNumber: 8242 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Asia Aleong,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Asia Aleong +sn: Aleong +description: This is Asia Aleong's description +facsimileTelephoneNumber: +1 213 206-6898 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 213 774-6408 +title: Associate Product Development Visionary +userPassword: Password1 +uid: AleongA +givenName: Asia +mail: AleongA@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com +carLicense: EH8DPR +departmentNumber: 1332 +employeeType: Normal +homePhone: +1 213 902-4526 +initials: A. A. +mobile: +1 213 196-4489 +pager: +1 213 238-7044 +roomNumber: 9783 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Xantippe Sydor,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xantippe Sydor +sn: Sydor +description: This is Xantippe Sydor's description +facsimileTelephoneNumber: +1 510 269-8949 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 300-4618 +title: Junior Product Development Director +userPassword: Password1 +uid: SydorX +givenName: Xantippe +mail: SydorX@c228283c030a4839b23b0d238ebb64f6.bitwarden.com +carLicense: 4QNNHL +departmentNumber: 1146 +employeeType: Normal +homePhone: +1 510 973-4318 +initials: X. S. +mobile: +1 510 908-6579 +pager: +1 510 693-7789 +roomNumber: 9664 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Devora Bunker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devora Bunker +sn: Bunker +description: This is Devora Bunker's description +facsimileTelephoneNumber: +1 408 836-7929 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 977-4615 +title: Associate Peons Visionary +userPassword: Password1 +uid: BunkerD +givenName: Devora +mail: BunkerD@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com +carLicense: 0U40GB +departmentNumber: 8868 +employeeType: Employee +homePhone: +1 408 666-5545 +initials: D. B. +mobile: +1 408 488-7363 +pager: +1 408 769-7813 +roomNumber: 9757 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hudai Dallago,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hudai Dallago +sn: Dallago +description: This is Hudai Dallago's description +facsimileTelephoneNumber: +1 206 566-3150 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 311-3889 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: DallagoH +givenName: Hudai +mail: DallagoH@a85c3929256747e4a90337c3ba0f9538.bitwarden.com +carLicense: 4N5IIO +departmentNumber: 8080 +employeeType: Contract +homePhone: +1 206 512-9288 +initials: H. D. +mobile: +1 206 364-8088 +pager: +1 206 544-8023 +roomNumber: 9675 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pamella Herman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pamella Herman +sn: Herman +description: This is Pamella Herman's description +facsimileTelephoneNumber: +1 408 803-6277 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 258-8444 +title: Associate Janitorial President +userPassword: Password1 +uid: HermanP +givenName: Pamella +mail: HermanP@bbf9c04e50a241698a5503a647ae8281.bitwarden.com +carLicense: DSRTHP +departmentNumber: 1829 +employeeType: Employee +homePhone: +1 408 366-8390 +initials: P. H. +mobile: +1 408 445-9768 +pager: +1 408 841-1862 +roomNumber: 8702 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Preston Marco,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Preston Marco +sn: Marco +description: This is Preston Marco's description +facsimileTelephoneNumber: +1 213 897-1338 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 235-4999 +title: Associate Administrative Engineer +userPassword: Password1 +uid: MarcoP +givenName: Preston +mail: MarcoP@232ca6cb0ac84bf8be33192693a35ba0.bitwarden.com +carLicense: JIR4M9 +departmentNumber: 1538 +employeeType: Normal +homePhone: +1 213 107-5124 +initials: P. M. +mobile: +1 213 409-6941 +pager: +1 213 326-1790 +roomNumber: 9232 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sybyl McIver,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sybyl McIver +sn: McIver +description: This is Sybyl McIver's description +facsimileTelephoneNumber: +1 213 785-9767 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 805-8325 +title: Chief Human Resources Janitor +userPassword: Password1 +uid: McIverS +givenName: Sybyl +mail: McIverS@a91ef43faba348c6bf66e409d4fd354b.bitwarden.com +carLicense: 7GNGJE +departmentNumber: 3526 +employeeType: Normal +homePhone: +1 213 246-8545 +initials: S. M. +mobile: +1 213 715-6923 +pager: +1 213 641-7698 +roomNumber: 8907 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fidelia Mehta,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fidelia Mehta +sn: Mehta +description: This is Fidelia Mehta's description +facsimileTelephoneNumber: +1 818 877-6899 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 260-8069 +title: Junior Peons Visionary +userPassword: Password1 +uid: MehtaF +givenName: Fidelia +mail: MehtaF@4f5cf3c68fb84cb583c3e869db2086bb.bitwarden.com +carLicense: VXOO8Y +departmentNumber: 4700 +employeeType: Normal +homePhone: +1 818 917-8116 +initials: F. M. +mobile: +1 818 460-2172 +pager: +1 818 177-2182 +roomNumber: 8811 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tom Boose,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tom Boose +sn: Boose +description: This is Tom Boose's description +facsimileTelephoneNumber: +1 415 564-1372 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 880-7764 +title: Chief Human Resources Director +userPassword: Password1 +uid: BooseT +givenName: Tom +mail: BooseT@5412480f8c82450aa52600d4e3893c99.bitwarden.com +carLicense: KLV0LE +departmentNumber: 8777 +employeeType: Normal +homePhone: +1 415 995-8254 +initials: T. B. +mobile: +1 415 833-2189 +pager: +1 415 935-5616 +roomNumber: 9077 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valentine Allahyari +sn: Allahyari +description: This is Valentine Allahyari's description +facsimileTelephoneNumber: +1 818 228-1724 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 235-1229 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: AllahyaV +givenName: Valentine +mail: AllahyaV@2941b888378b4b868ece831a080444c0.bitwarden.com +carLicense: JHXHP0 +departmentNumber: 9377 +employeeType: Employee +homePhone: +1 818 221-9284 +initials: V. A. +mobile: +1 818 928-5407 +pager: +1 818 423-9585 +roomNumber: 8164 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lorrel Manno,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorrel Manno +sn: Manno +description: This is Lorrel Manno's description +facsimileTelephoneNumber: +1 804 863-7619 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 801-7469 +title: Supreme Product Testing Technician +userPassword: Password1 +uid: MannoL +givenName: Lorrel +mail: MannoL@78bde8bce82c4d1dbca4b21bf7784813.bitwarden.com +carLicense: QMIY9U +departmentNumber: 5764 +employeeType: Employee +homePhone: +1 804 794-4793 +initials: L. M. +mobile: +1 804 429-8147 +pager: +1 804 227-7173 +roomNumber: 9926 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Stacee Finnie,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacee Finnie +sn: Finnie +description: This is Stacee Finnie's description +facsimileTelephoneNumber: +1 804 465-1368 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 375-9896 +title: Chief Administrative Architect +userPassword: Password1 +uid: FinnieS +givenName: Stacee +mail: FinnieS@01d98aa12a484f229c38604f374f5102.bitwarden.com +carLicense: VDW1NQ +departmentNumber: 8552 +employeeType: Normal +homePhone: +1 804 941-6797 +initials: S. F. +mobile: +1 804 365-3194 +pager: +1 804 634-9163 +roomNumber: 8645 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Clari Beshai,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clari Beshai +sn: Beshai +description: This is Clari Beshai's description +facsimileTelephoneNumber: +1 804 178-8573 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 804 229-4301 +title: Supreme Management President +userPassword: Password1 +uid: BeshaiC +givenName: Clari +mail: BeshaiC@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com +carLicense: RP5OYU +departmentNumber: 9159 +employeeType: Employee +homePhone: +1 804 871-4031 +initials: C. B. +mobile: +1 804 895-1960 +pager: +1 804 716-1894 +roomNumber: 9127 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lincoln Sasaki +sn: Sasaki +description: This is Lincoln Sasaki's description +facsimileTelephoneNumber: +1 408 107-4601 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 408 835-2695 +title: Associate Product Development Sales Rep +userPassword: Password1 +uid: SasakiL +givenName: Lincoln +mail: SasakiL@222d66226d1243a5a6fdebd55db86add.bitwarden.com +carLicense: O91AUS +departmentNumber: 6575 +employeeType: Normal +homePhone: +1 408 177-9659 +initials: L. S. +mobile: +1 408 228-3729 +pager: +1 408 546-6018 +roomNumber: 9327 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnnLorrain Sompong +sn: Sompong +description: This is AnnLorrain Sompong's description +facsimileTelephoneNumber: +1 408 627-6757 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 914-9538 +title: Junior Product Development Vice President +userPassword: Password1 +uid: SompongA +givenName: AnnLorrain +mail: SompongA@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com +carLicense: NNDALH +departmentNumber: 1191 +employeeType: Normal +homePhone: +1 408 627-8306 +initials: A. S. +mobile: +1 408 745-9957 +pager: +1 408 723-9283 +roomNumber: 9587 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Clovis Banigan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clovis Banigan +sn: Banigan +description: This is Clovis Banigan's description +facsimileTelephoneNumber: +1 818 640-7791 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 575-5003 +title: Chief Janitorial President +userPassword: Password1 +uid: BaniganC +givenName: Clovis +mail: BaniganC@b481e78cdf2a4d77b00e3eea0c5aaf43.bitwarden.com +carLicense: NITGS7 +departmentNumber: 8328 +employeeType: Contract +homePhone: +1 818 798-6050 +initials: C. B. +mobile: +1 818 336-5226 +pager: +1 818 989-1991 +roomNumber: 9286 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: VanKing Jarzemsky +sn: Jarzemsky +description: This is VanKing Jarzemsky's description +facsimileTelephoneNumber: +1 206 703-3908 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 870-7324 +title: Chief Administrative Artist +userPassword: Password1 +uid: JarzemsV +givenName: VanKing +mail: JarzemsV@7a9336a35e1e452eaecd685206f3ad31.bitwarden.com +carLicense: U6C5T5 +departmentNumber: 7132 +employeeType: Employee +homePhone: +1 206 365-4624 +initials: V. J. +mobile: +1 206 712-1532 +pager: +1 206 404-3805 +roomNumber: 8496 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cherin Shedd,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherin Shedd +sn: Shedd +description: This is Cherin Shedd's description +facsimileTelephoneNumber: +1 818 433-6865 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 939-9608 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: SheddC +givenName: Cherin +mail: SheddC@8687f426e30946c59d63176bb5ab09a5.bitwarden.com +carLicense: RQCEPB +departmentNumber: 4972 +employeeType: Contract +homePhone: +1 818 743-1270 +initials: C. S. +mobile: +1 818 414-4957 +pager: +1 818 277-2556 +roomNumber: 9237 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ivonne Whiting,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivonne Whiting +sn: Whiting +description: This is Ivonne Whiting's description +facsimileTelephoneNumber: +1 818 638-4592 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 663-2167 +title: Junior Product Development Manager +userPassword: Password1 +uid: WhitingI +givenName: Ivonne +mail: WhitingI@a3cf3eb4e8384906b167f943f1276871.bitwarden.com +carLicense: 018M9W +departmentNumber: 9773 +employeeType: Contract +homePhone: +1 818 872-4907 +initials: I. W. +mobile: +1 818 594-6501 +pager: +1 818 603-7564 +roomNumber: 9160 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ardra Gemmill,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardra Gemmill +sn: Gemmill +description: This is Ardra Gemmill's description +facsimileTelephoneNumber: +1 213 853-1060 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 683-1949 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: GemmillA +givenName: Ardra +mail: GemmillA@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com +carLicense: OQ7TK1 +departmentNumber: 1933 +employeeType: Normal +homePhone: +1 213 195-9121 +initials: A. G. +mobile: +1 213 284-9251 +pager: +1 213 513-9487 +roomNumber: 9300 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donielle OrgrenStreb +sn: OrgrenStreb +description: This is Donielle OrgrenStreb's description +facsimileTelephoneNumber: +1 804 890-4873 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 191-1168 +title: Supreme Product Development Janitor +userPassword: Password1 +uid: OrgrenSD +givenName: Donielle +mail: OrgrenSD@be56d01786b846e3aa64454147150e23.bitwarden.com +carLicense: SID4LD +departmentNumber: 5559 +employeeType: Normal +homePhone: +1 804 104-5297 +initials: D. O. +mobile: +1 804 340-8912 +pager: +1 804 749-4868 +roomNumber: 9030 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhHung Avery +sn: Avery +description: This is ThanhHung Avery's description +facsimileTelephoneNumber: +1 213 292-9871 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 302-5004 +title: Chief Janitorial Manager +userPassword: Password1 +uid: AveryT +givenName: ThanhHung +mail: AveryT@9dae1c3f52e14b249ec881c64e974c27.bitwarden.com +carLicense: GWWAED +departmentNumber: 1055 +employeeType: Employee +homePhone: +1 213 891-5999 +initials: T. A. +mobile: +1 213 543-9691 +pager: +1 213 356-8573 +roomNumber: 8800 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arthur Koch,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arthur Koch +sn: Koch +description: This is Arthur Koch's description +facsimileTelephoneNumber: +1 415 543-6024 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 236-9853 +title: Junior Product Testing Admin +userPassword: Password1 +uid: KochA +givenName: Arthur +mail: KochA@f3364372be9a4d4583e3d68752e6c188.bitwarden.com +carLicense: FI0IUA +departmentNumber: 9001 +employeeType: Employee +homePhone: +1 415 310-2270 +initials: A. K. +mobile: +1 415 295-9069 +pager: +1 415 805-7570 +roomNumber: 9035 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ursuline Wasmeier +sn: Wasmeier +description: This is Ursuline Wasmeier's description +facsimileTelephoneNumber: +1 818 305-7529 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 818 282-1199 +title: Master Payroll Consultant +userPassword: Password1 +uid: WasmeieU +givenName: Ursuline +mail: WasmeieU@566acb80e4d1481e9b6326f02804831d.bitwarden.com +carLicense: J6VCPX +departmentNumber: 7563 +employeeType: Contract +homePhone: +1 818 435-8630 +initials: U. W. +mobile: +1 818 622-6058 +pager: +1 818 676-7385 +roomNumber: 9356 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Leonie Begley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonie Begley +sn: Begley +description: This is Leonie Begley's description +facsimileTelephoneNumber: +1 818 865-8914 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 745-2822 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: BegleyL +givenName: Leonie +mail: BegleyL@08b747ef36c043dc831ace544361b178.bitwarden.com +carLicense: WFJVJ8 +departmentNumber: 9920 +employeeType: Contract +homePhone: +1 818 550-1373 +initials: L. B. +mobile: +1 818 419-2296 +pager: +1 818 537-6408 +roomNumber: 8180 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vanessa Thum,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanessa Thum +sn: Thum +description: This is Vanessa Thum's description +facsimileTelephoneNumber: +1 818 679-3715 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 652-7957 +title: Chief Human Resources Developer +userPassword: Password1 +uid: ThumV +givenName: Vanessa +mail: ThumV@c41cc1e3b0d842d3bbad24db018def06.bitwarden.com +carLicense: 443RH8 +departmentNumber: 2082 +employeeType: Normal +homePhone: +1 818 559-2687 +initials: V. T. +mobile: +1 818 430-3873 +pager: +1 818 267-7486 +roomNumber: 9838 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ursula ODwyer +sn: ODwyer +description: This is Ursula ODwyer's description +facsimileTelephoneNumber: +1 415 233-2514 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 222-3339 +title: Chief Product Testing Grunt +userPassword: Password1 +uid: ODwyerU +givenName: Ursula +mail: ODwyerU@2bc9bfa10bf3492f87ecd4ba4a4d9a54.bitwarden.com +carLicense: OV3LGV +departmentNumber: 6196 +employeeType: Contract +homePhone: +1 415 641-2743 +initials: U. O. +mobile: +1 415 940-5317 +pager: +1 415 972-3249 +roomNumber: 9835 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hugh Iannozzi +sn: Iannozzi +description: This is Hugh Iannozzi's description +facsimileTelephoneNumber: +1 213 541-7251 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 204-8239 +title: Chief Product Testing Technician +userPassword: Password1 +uid: IannozzH +givenName: Hugh +mail: IannozzH@93bb2a719868497094d1e687804f1eb7.bitwarden.com +carLicense: R6LPGS +departmentNumber: 2011 +employeeType: Normal +homePhone: +1 213 505-5123 +initials: H. I. +mobile: +1 213 660-7356 +pager: +1 213 383-5558 +roomNumber: 9754 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rey Boyer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rey Boyer +sn: Boyer +description: This is Rey Boyer's description +facsimileTelephoneNumber: +1 804 194-8707 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 804 956-5887 +title: Associate Management President +userPassword: Password1 +uid: BoyerR +givenName: Rey +mail: BoyerR@2b46da502e6546eaa33fd138fef00ac3.bitwarden.com +carLicense: 0ILN7E +departmentNumber: 5027 +employeeType: Normal +homePhone: +1 804 139-7151 +initials: R. B. +mobile: +1 804 967-4131 +pager: +1 804 622-3946 +roomNumber: 8447 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nanete Tomlinson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nanete Tomlinson +sn: Tomlinson +description: This is Nanete Tomlinson's description +facsimileTelephoneNumber: +1 213 579-1221 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 957-4029 +title: Master Peons Pinhead +userPassword: Password1 +uid: TomlinsN +givenName: Nanete +mail: TomlinsN@34766460128a4ee582041f543b9bd242.bitwarden.com +carLicense: 203OXS +departmentNumber: 9539 +employeeType: Normal +homePhone: +1 213 525-2744 +initials: N. T. +mobile: +1 213 909-7825 +pager: +1 213 328-6896 +roomNumber: 8168 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lorrie Lamy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorrie Lamy +sn: Lamy +description: This is Lorrie Lamy's description +facsimileTelephoneNumber: +1 804 542-2759 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 101-8125 +title: Master Administrative Artist +userPassword: Password1 +uid: LamyL +givenName: Lorrie +mail: LamyL@6882bb306b30484eac03893eca277bd3.bitwarden.com +carLicense: 5ISV6G +departmentNumber: 1965 +employeeType: Normal +homePhone: +1 804 612-1093 +initials: L. L. +mobile: +1 804 603-2974 +pager: +1 804 913-8809 +roomNumber: 8167 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Donal DorisHampton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donal DorisHampton +sn: DorisHampton +description: This is Donal DorisHampton's description +facsimileTelephoneNumber: +1 818 590-4402 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 364-8048 +title: Supreme Administrative Admin +userPassword: Password1 +uid: DorisHaD +givenName: Donal +mail: DorisHaD@b4ec3c43774d4a4baac80f55d5751b78.bitwarden.com +carLicense: MXXF67 +departmentNumber: 7781 +employeeType: Normal +homePhone: +1 818 404-5382 +initials: D. D. +mobile: +1 818 901-6595 +pager: +1 818 108-1545 +roomNumber: 8784 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leonardo Palasek,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonardo Palasek +sn: Palasek +description: This is Leonardo Palasek's description +facsimileTelephoneNumber: +1 206 485-2425 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 311-3163 +title: Chief Product Development Consultant +userPassword: Password1 +uid: PalasekL +givenName: Leonardo +mail: PalasekL@5406f1a2a8b3462dade05957b7fb225f.bitwarden.com +carLicense: 7NTB4S +departmentNumber: 6829 +employeeType: Employee +homePhone: +1 206 274-8197 +initials: L. P. +mobile: +1 206 413-5427 +pager: +1 206 107-4889 +roomNumber: 9368 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rhodie Seery,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhodie Seery +sn: Seery +description: This is Rhodie Seery's description +facsimileTelephoneNumber: +1 213 387-2286 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 407-4887 +title: Master Payroll Pinhead +userPassword: Password1 +uid: SeeryR +givenName: Rhodie +mail: SeeryR@069bff2c38b341aca5c431f6580b51ea.bitwarden.com +carLicense: EEEPX0 +departmentNumber: 6336 +employeeType: Normal +homePhone: +1 213 181-3797 +initials: R. S. +mobile: +1 213 448-2548 +pager: +1 213 430-6739 +roomNumber: 9835 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leonas Salomon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leonas Salomon +sn: Salomon +description: This is Leonas Salomon's description +facsimileTelephoneNumber: +1 415 255-8050 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 558-7483 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: SalomonL +givenName: Leonas +mail: SalomonL@2469cbc5a5404c8d818a74f1684adb09.bitwarden.com +carLicense: SSD1EW +departmentNumber: 5469 +employeeType: Employee +homePhone: +1 415 406-5635 +initials: L. S. +mobile: +1 415 529-3308 +pager: +1 415 825-5409 +roomNumber: 9631 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sibel McKnight,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibel McKnight +sn: McKnight +description: This is Sibel McKnight's description +facsimileTelephoneNumber: +1 804 214-3962 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 772-7636 +title: Master Administrative Engineer +userPassword: Password1 +uid: McKnighS +givenName: Sibel +mail: McKnighS@700c5d89fc4943989681c73525ca7752.bitwarden.com +carLicense: M53BMI +departmentNumber: 7285 +employeeType: Contract +homePhone: +1 804 307-8119 +initials: S. M. +mobile: +1 804 778-5913 +pager: +1 804 116-9340 +roomNumber: 8521 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anabel Borel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anabel Borel +sn: Borel +description: This is Anabel Borel's description +facsimileTelephoneNumber: +1 510 786-8605 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 510 259-5454 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: BorelA +givenName: Anabel +mail: BorelA@a8b705848c504748848b8aba539736f1.bitwarden.com +carLicense: RF3G5R +departmentNumber: 7245 +employeeType: Normal +homePhone: +1 510 887-8900 +initials: A. B. +mobile: +1 510 669-3549 +pager: +1 510 930-7799 +roomNumber: 8576 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Milo Gravitte,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milo Gravitte +sn: Gravitte +description: This is Milo Gravitte's description +facsimileTelephoneNumber: +1 510 929-7899 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 510 363-2497 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: GravittM +givenName: Milo +mail: GravittM@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com +carLicense: KJG0QW +departmentNumber: 1114 +employeeType: Contract +homePhone: +1 510 215-2455 +initials: M. G. +mobile: +1 510 788-1986 +pager: +1 510 673-7479 +roomNumber: 9479 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Katha Noddin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katha Noddin +sn: Noddin +description: This is Katha Noddin's description +facsimileTelephoneNumber: +1 408 771-9285 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 467-6433 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: NoddinK +givenName: Katha +mail: NoddinK@c7211550a0e54b11899929b0d44158ff.bitwarden.com +carLicense: QQ2PNT +departmentNumber: 4526 +employeeType: Normal +homePhone: +1 408 251-6377 +initials: K. N. +mobile: +1 408 146-1055 +pager: +1 408 208-8984 +roomNumber: 9569 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jami Baab,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jami Baab +sn: Baab +description: This is Jami Baab's description +facsimileTelephoneNumber: +1 213 122-4220 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 565-7629 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: BaabJ +givenName: Jami +mail: BaabJ@b8d27f90baae497697af4ac7133d782a.bitwarden.com +carLicense: BTU5NB +departmentNumber: 6326 +employeeType: Employee +homePhone: +1 213 591-2651 +initials: J. B. +mobile: +1 213 180-5079 +pager: +1 213 553-7407 +roomNumber: 9401 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Verna Petree,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verna Petree +sn: Petree +description: This is Verna Petree's description +facsimileTelephoneNumber: +1 804 286-6018 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 785-7237 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: PetreeV +givenName: Verna +mail: PetreeV@726a4125a7d94ad38a1dc92c2882e4bd.bitwarden.com +carLicense: 7UN8Q6 +departmentNumber: 6408 +employeeType: Normal +homePhone: +1 804 694-4993 +initials: V. P. +mobile: +1 804 981-4361 +pager: +1 804 121-9195 +roomNumber: 9147 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Adelia Leibich,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adelia Leibich +sn: Leibich +description: This is Adelia Leibich's description +facsimileTelephoneNumber: +1 804 525-2646 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 673-8489 +title: Chief Administrative Stooge +userPassword: Password1 +uid: LeibichA +givenName: Adelia +mail: LeibichA@1d233bc1764446c09e064881135ef88f.bitwarden.com +carLicense: KYU4C8 +departmentNumber: 4476 +employeeType: Employee +homePhone: +1 804 540-3626 +initials: A. L. +mobile: +1 804 710-1486 +pager: +1 804 979-3847 +roomNumber: 8468 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jann Marquart,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jann Marquart +sn: Marquart +description: This is Jann Marquart's description +facsimileTelephoneNumber: +1 213 815-6009 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 213 371-9433 +title: Junior Payroll Engineer +userPassword: Password1 +uid: MarquarJ +givenName: Jann +mail: MarquarJ@38e93300da7643e5ac4629316f76753a.bitwarden.com +carLicense: E5VX0N +departmentNumber: 1821 +employeeType: Normal +homePhone: +1 213 244-7785 +initials: J. M. +mobile: +1 213 360-1154 +pager: +1 213 371-4020 +roomNumber: 8579 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mirjam Cleary,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirjam Cleary +sn: Cleary +description: This is Mirjam Cleary's description +facsimileTelephoneNumber: +1 510 722-7999 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 196-1100 +title: Associate Peons Writer +userPassword: Password1 +uid: ClearyM +givenName: Mirjam +mail: ClearyM@3498d55f6fdc4726b3007b6eece0bd27.bitwarden.com +carLicense: HLNDS2 +departmentNumber: 2462 +employeeType: Contract +homePhone: +1 510 565-9680 +initials: M. C. +mobile: +1 510 211-5654 +pager: +1 510 396-2421 +roomNumber: 9561 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cissiee Osborne +sn: Osborne +description: This is Cissiee Osborne's description +facsimileTelephoneNumber: +1 415 749-4110 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 706-6971 +title: Master Product Testing Assistant +userPassword: Password1 +uid: OsborneC +givenName: Cissiee +mail: OsborneC@d5bcdf8a8a07400f8fa8236d15a8595d.bitwarden.com +carLicense: IWL73D +departmentNumber: 6145 +employeeType: Contract +homePhone: +1 415 416-7078 +initials: C. O. +mobile: +1 415 524-6419 +pager: +1 415 303-1984 +roomNumber: 9741 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anselma Sabat,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anselma Sabat +sn: Sabat +description: This is Anselma Sabat's description +facsimileTelephoneNumber: +1 415 581-1853 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 415 795-4232 +title: Supreme Human Resources Evangelist +userPassword: Password1 +uid: SabatA +givenName: Anselma +mail: SabatA@3b5bce68a3bf4abeb7101b36a2d13246.bitwarden.com +carLicense: HV2EV6 +departmentNumber: 3017 +employeeType: Contract +homePhone: +1 415 292-9596 +initials: A. S. +mobile: +1 415 618-9299 +pager: +1 415 755-8226 +roomNumber: 8229 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ursola Zagorski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ursola Zagorski +sn: Zagorski +description: This is Ursola Zagorski's description +facsimileTelephoneNumber: +1 415 852-9856 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 939-1152 +title: Junior Payroll Czar +userPassword: Password1 +uid: ZagorskU +givenName: Ursola +mail: ZagorskU@dff7cc6e7ee04fe98e5fdfa8cb0e3b40.bitwarden.com +carLicense: MFGIFY +departmentNumber: 6796 +employeeType: Employee +homePhone: +1 415 557-8860 +initials: U. Z. +mobile: +1 415 418-4964 +pager: +1 415 520-3555 +roomNumber: 9473 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gael Cho,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gael Cho +sn: Cho +description: This is Gael Cho's description +facsimileTelephoneNumber: +1 510 264-8001 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 510 749-8067 +title: Chief Peons Mascot +userPassword: Password1 +uid: ChoG +givenName: Gael +mail: ChoG@f1a2b4c9009a4b058da6b6f5ee233883.bitwarden.com +carLicense: B3FRCI +departmentNumber: 2240 +employeeType: Contract +homePhone: +1 510 668-5365 +initials: G. C. +mobile: +1 510 421-9704 +pager: +1 510 275-9319 +roomNumber: 9199 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacqueline Gallo +sn: Gallo +description: This is Jacqueline Gallo's description +facsimileTelephoneNumber: +1 818 322-4079 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 922-1462 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: GalloJ +givenName: Jacqueline +mail: GalloJ@a767b0f434554c6788caabae2da7ee65.bitwarden.com +carLicense: 0LF232 +departmentNumber: 4761 +employeeType: Contract +homePhone: +1 818 957-8334 +initials: J. G. +mobile: +1 818 339-9419 +pager: +1 818 906-4681 +roomNumber: 8291 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kris Rotzjean,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kris Rotzjean +sn: Rotzjean +description: This is Kris Rotzjean's description +facsimileTelephoneNumber: +1 213 998-8763 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 208-3904 +title: Associate Administrative Engineer +userPassword: Password1 +uid: RotzjeaK +givenName: Kris +mail: RotzjeaK@2f4e34ec099849fb8849d25db17f5d45.bitwarden.com +carLicense: BDNG15 +departmentNumber: 9952 +employeeType: Contract +homePhone: +1 213 326-4716 +initials: K. R. +mobile: +1 213 908-9527 +pager: +1 213 592-2017 +roomNumber: 8630 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zaneta Wun,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zaneta Wun +sn: Wun +description: This is Zaneta Wun's description +facsimileTelephoneNumber: +1 408 854-3711 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 621-7485 +title: Chief Product Development Artist +userPassword: Password1 +uid: WunZ +givenName: Zaneta +mail: WunZ@e17fea6e1c564882ab9a476cab0dc5ce.bitwarden.com +carLicense: 5LKMYR +departmentNumber: 8043 +employeeType: Contract +homePhone: +1 408 277-8383 +initials: Z. W. +mobile: +1 408 571-2093 +pager: +1 408 942-7978 +roomNumber: 8984 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guanyun McAdorey +sn: McAdorey +description: This is Guanyun McAdorey's description +facsimileTelephoneNumber: +1 818 968-5064 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 190-7996 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: McAdoreG +givenName: Guanyun +mail: McAdoreG@85bf85b5b4ba4460993e464e81ad3a57.bitwarden.com +carLicense: O91LDF +departmentNumber: 1843 +employeeType: Contract +homePhone: +1 818 411-4084 +initials: G. M. +mobile: +1 818 707-4795 +pager: +1 818 961-1393 +roomNumber: 9570 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ania Scalabrini,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ania Scalabrini +sn: Scalabrini +description: This is Ania Scalabrini's description +facsimileTelephoneNumber: +1 415 645-9438 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 437-3123 +title: Supreme Administrative Writer +userPassword: Password1 +uid: ScalabrA +givenName: Ania +mail: ScalabrA@6fd7a8381bd04762a7cac00d6e4b256a.bitwarden.com +carLicense: E46Q2J +departmentNumber: 9301 +employeeType: Employee +homePhone: +1 415 113-4539 +initials: A. S. +mobile: +1 415 714-4152 +pager: +1 415 948-1501 +roomNumber: 8168 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Andras Maruszak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andras Maruszak +sn: Maruszak +description: This is Andras Maruszak's description +facsimileTelephoneNumber: +1 510 785-2720 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 194-8002 +title: Supreme Human Resources Director +userPassword: Password1 +uid: MaruszaA +givenName: Andras +mail: MaruszaA@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com +carLicense: VP863E +departmentNumber: 6144 +employeeType: Employee +homePhone: +1 510 739-7707 +initials: A. M. +mobile: +1 510 772-8845 +pager: +1 510 504-5263 +roomNumber: 9282 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tab Kalair,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tab Kalair +sn: Kalair +description: This is Tab Kalair's description +facsimileTelephoneNumber: +1 804 275-8443 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 884-2099 +title: Chief Peons Writer +userPassword: Password1 +uid: KalairT +givenName: Tab +mail: KalairT@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com +carLicense: C8VEPW +departmentNumber: 8076 +employeeType: Normal +homePhone: +1 804 899-8765 +initials: T. K. +mobile: +1 804 985-5197 +pager: +1 804 764-7177 +roomNumber: 9914 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nadya Speer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nadya Speer +sn: Speer +description: This is Nadya Speer's description +facsimileTelephoneNumber: +1 818 818-8370 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 296-5621 +title: Supreme Administrative Architect +userPassword: Password1 +uid: SpeerN +givenName: Nadya +mail: SpeerN@cb407f95d05e476fad36365e35d9b1be.bitwarden.com +carLicense: 7FFUWV +departmentNumber: 4401 +employeeType: Employee +homePhone: +1 818 160-7715 +initials: N. S. +mobile: +1 818 925-3001 +pager: +1 818 718-5894 +roomNumber: 8007 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Turus Bisson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Turus Bisson +sn: Bisson +description: This is Turus Bisson's description +facsimileTelephoneNumber: +1 510 805-4602 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 789-5165 +title: Master Payroll Director +userPassword: Password1 +uid: BissonT +givenName: Turus +mail: BissonT@d3a0338aa0d94b49aa2150a5e12f9d53.bitwarden.com +carLicense: F2SXSC +departmentNumber: 2799 +employeeType: Contract +homePhone: +1 510 685-4893 +initials: T. B. +mobile: +1 510 128-7829 +pager: +1 510 144-8658 +roomNumber: 8550 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ioan Naylor,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ioan Naylor +sn: Naylor +description: This is Ioan Naylor's description +facsimileTelephoneNumber: +1 408 136-2008 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 962-9311 +title: Associate Payroll Architect +userPassword: Password1 +uid: NaylorI +givenName: Ioan +mail: NaylorI@6de603ec7e3b4b039bef3c781848cf1f.bitwarden.com +carLicense: JBQOON +departmentNumber: 5698 +employeeType: Normal +homePhone: +1 408 958-4170 +initials: I. N. +mobile: +1 408 586-3909 +pager: +1 408 929-6721 +roomNumber: 8391 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeroen Fleurima,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeroen Fleurima +sn: Fleurima +description: This is Jeroen Fleurima's description +facsimileTelephoneNumber: +1 408 885-5518 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 645-3185 +title: Junior Peons Grunt +userPassword: Password1 +uid: FleurimJ +givenName: Jeroen +mail: FleurimJ@b4c1c06974d240f190a6b3bfe9fdd375.bitwarden.com +carLicense: XHT4EB +departmentNumber: 4828 +employeeType: Contract +homePhone: +1 408 544-3278 +initials: J. F. +mobile: +1 408 293-1461 +pager: +1 408 685-9231 +roomNumber: 8442 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lacy Arai,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lacy Arai +sn: Arai +description: This is Lacy Arai's description +facsimileTelephoneNumber: +1 206 225-9379 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 206 573-8823 +title: Master Janitorial Writer +userPassword: Password1 +uid: AraiL +givenName: Lacy +mail: AraiL@341957991cd048f28879d34846561132.bitwarden.com +carLicense: SQC472 +departmentNumber: 2701 +employeeType: Employee +homePhone: +1 206 355-2156 +initials: L. A. +mobile: +1 206 310-5148 +pager: +1 206 535-3765 +roomNumber: 9240 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sylvain Hickin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sylvain Hickin +sn: Hickin +description: This is Sylvain Hickin's description +facsimileTelephoneNumber: +1 510 245-1512 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 789-9631 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: HickinS +givenName: Sylvain +mail: HickinS@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com +carLicense: FKWLNV +departmentNumber: 1230 +employeeType: Contract +homePhone: +1 510 249-5442 +initials: S. H. +mobile: +1 510 958-2606 +pager: +1 510 409-3346 +roomNumber: 9415 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Margaret Begley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margaret Begley +sn: Begley +description: This is Margaret Begley's description +facsimileTelephoneNumber: +1 206 343-8043 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 705-5555 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: BegleyM +givenName: Margaret +mail: BegleyM@b4ae1434dbd74e3f9fda915972e536aa.bitwarden.com +carLicense: P68KCB +departmentNumber: 8036 +employeeType: Contract +homePhone: +1 206 952-3031 +initials: M. B. +mobile: +1 206 185-2547 +pager: +1 206 976-4955 +roomNumber: 8529 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vick Lovegrove,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vick Lovegrove +sn: Lovegrove +description: This is Vick Lovegrove's description +facsimileTelephoneNumber: +1 804 626-9146 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 553-3811 +title: Chief Administrative Madonna +userPassword: Password1 +uid: LovegroV +givenName: Vick +mail: LovegroV@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com +carLicense: JFPU8N +departmentNumber: 6725 +employeeType: Employee +homePhone: +1 804 297-4227 +initials: V. L. +mobile: +1 804 714-7769 +pager: +1 804 544-6291 +roomNumber: 8068 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bob Acres,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bob Acres +sn: Acres +description: This is Bob Acres's description +facsimileTelephoneNumber: +1 804 818-9398 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 551-8326 +title: Junior Product Development Technician +userPassword: Password1 +uid: AcresB +givenName: Bob +mail: AcresB@392576165dfe4cafb8fa1d35ef39e725.bitwarden.com +carLicense: BF37AX +departmentNumber: 8006 +employeeType: Employee +homePhone: +1 804 767-2586 +initials: B. A. +mobile: +1 804 624-5737 +pager: +1 804 697-3045 +roomNumber: 8308 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dahlia Oost,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dahlia Oost +sn: Oost +description: This is Dahlia Oost's description +facsimileTelephoneNumber: +1 510 105-9393 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 440-2834 +title: Junior Management Admin +userPassword: Password1 +uid: OostD +givenName: Dahlia +mail: OostD@b4277bbde59048f39a27a7d14145a06f.bitwarden.com +carLicense: CLY94A +departmentNumber: 4669 +employeeType: Contract +homePhone: +1 510 752-4631 +initials: D. O. +mobile: +1 510 102-7320 +pager: +1 510 517-3466 +roomNumber: 9193 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claudie Hafiz +sn: Hafiz +description: This is Claudie Hafiz's description +facsimileTelephoneNumber: +1 818 428-9325 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 951-8484 +title: Chief Product Testing President +userPassword: Password1 +uid: HafizC +givenName: Claudie +mail: HafizC@6e374f55c08a4f9ea474b0f388c5e697.bitwarden.com +carLicense: T5V9DO +departmentNumber: 7514 +employeeType: Normal +homePhone: +1 818 877-8176 +initials: C. H. +mobile: +1 818 857-2942 +pager: +1 818 313-8233 +roomNumber: 8548 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reginald Cucuzzella +sn: Cucuzzella +description: This is Reginald Cucuzzella's description +facsimileTelephoneNumber: +1 408 218-6562 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 824-5257 +title: Supreme Administrative Czar +userPassword: Password1 +uid: CucuzzeR +givenName: Reginald +mail: CucuzzeR@7408ed731222450eb6a92df81540fc99.bitwarden.com +carLicense: 5FMO4N +departmentNumber: 8961 +employeeType: Normal +homePhone: +1 408 584-3764 +initials: R. C. +mobile: +1 408 436-7505 +pager: +1 408 455-6951 +roomNumber: 9840 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ianthe Yum,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ianthe Yum +sn: Yum +description: This is Ianthe Yum's description +facsimileTelephoneNumber: +1 818 614-7983 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 818 723-1286 +title: Junior Management Admin +userPassword: Password1 +uid: YumI +givenName: Ianthe +mail: YumI@8ded8bbd82ce42aeaa0782da2c17da44.bitwarden.com +carLicense: NNKPN4 +departmentNumber: 4422 +employeeType: Normal +homePhone: +1 818 373-5549 +initials: I. Y. +mobile: +1 818 795-8951 +pager: +1 818 122-9740 +roomNumber: 9307 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Judi Adamo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Judi Adamo +sn: Adamo +description: This is Judi Adamo's description +facsimileTelephoneNumber: +1 213 154-4589 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 497-9459 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: AdamoJ +givenName: Judi +mail: AdamoJ@f3ac3ffab8324597a10f7fe805a2cec5.bitwarden.com +carLicense: ADP319 +departmentNumber: 6338 +employeeType: Normal +homePhone: +1 213 675-9745 +initials: J. A. +mobile: +1 213 547-1268 +pager: +1 213 566-1729 +roomNumber: 8450 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinett Grzegorek +sn: Grzegorek +description: This is Robinett Grzegorek's description +facsimileTelephoneNumber: +1 408 138-4609 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 181-4277 +title: Master Human Resources Mascot +userPassword: Password1 +uid: GrzegorR +givenName: Robinett +mail: GrzegorR@e0413af3109149e7b81465a2065b0fa5.bitwarden.com +carLicense: TGOP5E +departmentNumber: 6230 +employeeType: Contract +homePhone: +1 408 466-4096 +initials: R. G. +mobile: +1 408 748-2395 +pager: +1 408 981-9515 +roomNumber: 8044 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Filibert Pachulski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Filibert Pachulski +sn: Pachulski +description: This is Filibert Pachulski's description +facsimileTelephoneNumber: +1 408 796-1964 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 407-1463 +title: Chief Peons Manager +userPassword: Password1 +uid: PachulsF +givenName: Filibert +mail: PachulsF@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com +carLicense: 0X4POE +departmentNumber: 1020 +employeeType: Employee +homePhone: +1 408 251-5070 +initials: F. P. +mobile: +1 408 534-9887 +pager: +1 408 197-4434 +roomNumber: 8257 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carmon Kroeger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmon Kroeger +sn: Kroeger +description: This is Carmon Kroeger's description +facsimileTelephoneNumber: +1 408 430-9617 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 552-2920 +title: Master Management Admin +userPassword: Password1 +uid: KroegerC +givenName: Carmon +mail: KroegerC@db74de76c5374bf883b5c0e4951495b9.bitwarden.com +carLicense: 2VE90I +departmentNumber: 8696 +employeeType: Employee +homePhone: +1 408 399-6581 +initials: C. K. +mobile: +1 408 701-4798 +pager: +1 408 486-9038 +roomNumber: 8399 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ZehirCharlie Rashidi +sn: Rashidi +description: This is ZehirCharlie Rashidi's description +facsimileTelephoneNumber: +1 818 649-4006 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 615-4902 +title: Supreme Administrative Czar +userPassword: Password1 +uid: RashidiZ +givenName: ZehirCharlie +mail: RashidiZ@8f2a1e9d087d433f9b3d1ae45af01378.bitwarden.com +carLicense: 01XSFG +departmentNumber: 7859 +employeeType: Employee +homePhone: +1 818 238-7844 +initials: Z. R. +mobile: +1 818 780-2888 +pager: +1 818 557-5121 +roomNumber: 9418 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Camellia Gavidia,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camellia Gavidia +sn: Gavidia +description: This is Camellia Gavidia's description +facsimileTelephoneNumber: +1 804 983-7540 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 804 579-5279 +title: Junior Administrative Madonna +userPassword: Password1 +uid: GavidiaC +givenName: Camellia +mail: GavidiaC@79642b513783409691dc1a7cf728c883.bitwarden.com +carLicense: MOJ6PQ +departmentNumber: 7972 +employeeType: Contract +homePhone: +1 804 917-1225 +initials: C. G. +mobile: +1 804 311-7847 +pager: +1 804 471-5026 +roomNumber: 9551 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fqa Abrams,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fqa Abrams +sn: Abrams +description: This is Fqa Abrams's description +facsimileTelephoneNumber: +1 510 636-8923 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 700-4730 +title: Chief Product Development Artist +userPassword: Password1 +uid: AbramsF +givenName: Fqa +mail: AbramsF@d8f66ef1670a411fb693fa464f75d8f1.bitwarden.com +carLicense: B6JOHY +departmentNumber: 8981 +employeeType: Employee +homePhone: +1 510 332-2247 +initials: F. A. +mobile: +1 510 136-4269 +pager: +1 510 645-6566 +roomNumber: 8096 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pepita Houston,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pepita Houston +sn: Houston +description: This is Pepita Houston's description +facsimileTelephoneNumber: +1 804 420-3510 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 596-4200 +title: Master Janitorial Janitor +userPassword: Password1 +uid: HoustonP +givenName: Pepita +mail: HoustonP@73f0541d56094177a29a390ca43c2beb.bitwarden.com +carLicense: EXCEJR +departmentNumber: 7624 +employeeType: Contract +homePhone: +1 804 195-5497 +initials: P. H. +mobile: +1 804 957-9628 +pager: +1 804 673-8525 +roomNumber: 8377 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harmi Yahyapour +sn: Yahyapour +description: This is Harmi Yahyapour's description +facsimileTelephoneNumber: +1 408 805-1872 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 351-6319 +title: Supreme Product Development Technician +userPassword: Password1 +uid: YahyapoH +givenName: Harmi +mail: YahyapoH@fff697695b6a47fc8837138d253e90f2.bitwarden.com +carLicense: NS27RO +departmentNumber: 4507 +employeeType: Normal +homePhone: +1 408 153-5940 +initials: H. Y. +mobile: +1 408 501-5751 +pager: +1 408 237-7945 +roomNumber: 9478 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Horst Becan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Horst Becan +sn: Becan +description: This is Horst Becan's description +facsimileTelephoneNumber: +1 510 625-8217 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 218-4987 +title: Associate Janitorial Visionary +userPassword: Password1 +uid: BecanH +givenName: Horst +mail: BecanH@3a9565077b2a44b684e188fe7f0cd0a1.bitwarden.com +carLicense: INIQN3 +departmentNumber: 7363 +employeeType: Employee +homePhone: +1 510 883-8037 +initials: H. B. +mobile: +1 510 639-2238 +pager: +1 510 495-4914 +roomNumber: 9657 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ericha Akai,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ericha Akai +sn: Akai +description: This is Ericha Akai's description +facsimileTelephoneNumber: +1 415 707-5990 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 780-9421 +title: Master Product Development Warrior +userPassword: Password1 +uid: AkaiE +givenName: Ericha +mail: AkaiE@ead1ebc11a6a43c4a4973f8778d92cf0.bitwarden.com +carLicense: WCDMMR +departmentNumber: 7195 +employeeType: Employee +homePhone: +1 415 813-1030 +initials: E. A. +mobile: +1 415 854-7194 +pager: +1 415 295-8346 +roomNumber: 8498 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mina Amato,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mina Amato +sn: Amato +description: This is Mina Amato's description +facsimileTelephoneNumber: +1 206 904-3485 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 352-7828 +title: Chief Payroll Vice President +userPassword: Password1 +uid: AmatoM +givenName: Mina +mail: AmatoM@9ce658881e8c455194b88b370a33621e.bitwarden.com +carLicense: AI11MC +departmentNumber: 8842 +employeeType: Employee +homePhone: +1 206 777-9390 +initials: M. A. +mobile: +1 206 596-1923 +pager: +1 206 778-4027 +roomNumber: 8001 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Katherine Ostarello,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katherine Ostarello +sn: Ostarello +description: This is Katherine Ostarello's description +facsimileTelephoneNumber: +1 213 617-5826 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 520-9440 +title: Supreme Management Developer +userPassword: Password1 +uid: OstarelK +givenName: Katherine +mail: OstarelK@f374f272c7c44ad9bdc88a75e3e22f88.bitwarden.com +carLicense: NP41P8 +departmentNumber: 1146 +employeeType: Normal +homePhone: +1 213 970-5491 +initials: K. O. +mobile: +1 213 324-2405 +pager: +1 213 175-6248 +roomNumber: 9173 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mario Bice,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mario Bice +sn: Bice +description: This is Mario Bice's description +facsimileTelephoneNumber: +1 213 359-1087 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 924-7960 +title: Junior Product Testing Assistant +userPassword: Password1 +uid: BiceM +givenName: Mario +mail: BiceM@01d519b2c3cc4b749d2c74cc03a56716.bitwarden.com +carLicense: FDSBFN +departmentNumber: 1424 +employeeType: Normal +homePhone: +1 213 472-7695 +initials: M. B. +mobile: +1 213 446-3670 +pager: +1 213 779-4406 +roomNumber: 9048 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Srinivas Rolls +sn: Rolls +description: This is Srinivas Rolls's description +facsimileTelephoneNumber: +1 415 860-3983 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 187-7297 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: RollsS +givenName: Srinivas +mail: RollsS@4781f85f1c214dff92b5f07239287faa.bitwarden.com +carLicense: SVTTVT +departmentNumber: 8485 +employeeType: Normal +homePhone: +1 415 973-1515 +initials: S. R. +mobile: +1 415 376-9762 +pager: +1 415 307-8557 +roomNumber: 8926 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Othelia Radford,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Othelia Radford +sn: Radford +description: This is Othelia Radford's description +facsimileTelephoneNumber: +1 213 786-7441 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 122-4302 +title: Master Payroll Vice President +userPassword: Password1 +uid: RadfordO +givenName: Othelia +mail: RadfordO@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com +carLicense: ETOMKH +departmentNumber: 7632 +employeeType: Contract +homePhone: +1 213 688-1414 +initials: O. R. +mobile: +1 213 456-7009 +pager: +1 213 829-5067 +roomNumber: 9794 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Meta Todloski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meta Todloski +sn: Todloski +description: This is Meta Todloski's description +facsimileTelephoneNumber: +1 510 518-1570 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 510 656-1272 +title: Supreme Payroll Developer +userPassword: Password1 +uid: TodloskM +givenName: Meta +mail: TodloskM@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com +carLicense: DR5BJ9 +departmentNumber: 3168 +employeeType: Employee +homePhone: +1 510 966-2137 +initials: M. T. +mobile: +1 510 686-1743 +pager: +1 510 610-2157 +roomNumber: 8654 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tabbitha Hershberger +sn: Hershberger +description: This is Tabbitha Hershberger's description +facsimileTelephoneNumber: +1 415 434-9123 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 338-2257 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: HershbeT +givenName: Tabbitha +mail: HershbeT@014bccc9396c433988180fbafa28a36d.bitwarden.com +carLicense: 9GTPQP +departmentNumber: 5865 +employeeType: Employee +homePhone: +1 415 382-2974 +initials: T. H. +mobile: +1 415 889-5784 +pager: +1 415 749-7007 +roomNumber: 9840 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacinda Gadzinowski +sn: Gadzinowski +description: This is Jacinda Gadzinowski's description +facsimileTelephoneNumber: +1 213 468-7929 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 574-8068 +title: Chief Janitorial Punk +userPassword: Password1 +uid: GadzinoJ +givenName: Jacinda +mail: GadzinoJ@3beca394b1bb4c3c97c7025a5ba48c80.bitwarden.com +carLicense: 8ECHON +departmentNumber: 7134 +employeeType: Employee +homePhone: +1 213 789-6648 +initials: J. G. +mobile: +1 213 398-9353 +pager: +1 213 182-6934 +roomNumber: 9763 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Riyaz Georges,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Riyaz Georges +sn: Georges +description: This is Riyaz Georges's description +facsimileTelephoneNumber: +1 408 779-7054 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 649-7842 +title: Chief Administrative Architect +userPassword: Password1 +uid: GeorgesR +givenName: Riyaz +mail: GeorgesR@5c4a37a22c51408494bd04d688d4cd1a.bitwarden.com +carLicense: HGNAQF +departmentNumber: 8156 +employeeType: Employee +homePhone: +1 408 452-2864 +initials: R. G. +mobile: +1 408 978-6168 +pager: +1 408 837-3074 +roomNumber: 9887 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Teddi Connell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teddi Connell +sn: Connell +description: This is Teddi Connell's description +facsimileTelephoneNumber: +1 213 138-3957 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 643-6588 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: ConnellT +givenName: Teddi +mail: ConnellT@cb0fd14a62264345a0844bec81676fd8.bitwarden.com +carLicense: L0CN7T +departmentNumber: 1958 +employeeType: Contract +homePhone: +1 213 887-8606 +initials: T. C. +mobile: +1 213 135-2931 +pager: +1 213 938-2131 +roomNumber: 8252 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Huong OKelly,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huong OKelly +sn: OKelly +description: This is Huong OKelly's description +facsimileTelephoneNumber: +1 804 991-1925 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 378-5115 +title: Master Human Resources Fellow +userPassword: Password1 +uid: OKellyH +givenName: Huong +mail: OKellyH@1babd519a8034b2d99c4603db1b7c5f2.bitwarden.com +carLicense: COFXL1 +departmentNumber: 9585 +employeeType: Employee +homePhone: +1 804 499-8984 +initials: H. O. +mobile: +1 804 710-1601 +pager: +1 804 419-9860 +roomNumber: 9048 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kokkhiang Instal +sn: Instal +description: This is Kokkhiang Instal's description +facsimileTelephoneNumber: +1 206 301-9359 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 832-8156 +title: Supreme Payroll Grunt +userPassword: Password1 +uid: InstalK +givenName: Kokkhiang +mail: InstalK@e460ad35028e4180bb22b6ed74c22cc7.bitwarden.com +carLicense: R7JHLA +departmentNumber: 6704 +employeeType: Employee +homePhone: +1 206 366-9883 +initials: K. I. +mobile: +1 206 332-5499 +pager: +1 206 357-2988 +roomNumber: 8879 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maddalena Dillard,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maddalena Dillard +sn: Dillard +description: This is Maddalena Dillard's description +facsimileTelephoneNumber: +1 408 950-1981 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 262-9578 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: DillardM +givenName: Maddalena +mail: DillardM@bc7abecae5134db19820cef4bc298003.bitwarden.com +carLicense: MYFMX0 +departmentNumber: 7514 +employeeType: Normal +homePhone: +1 408 737-6795 +initials: M. D. +mobile: +1 408 459-1417 +pager: +1 408 611-6358 +roomNumber: 8403 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Amandip Lescot,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amandip Lescot +sn: Lescot +description: This is Amandip Lescot's description +facsimileTelephoneNumber: +1 415 823-2734 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 848-9574 +title: Chief Product Testing President +userPassword: Password1 +uid: LescotA +givenName: Amandip +mail: LescotA@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com +carLicense: NVTVO5 +departmentNumber: 1336 +employeeType: Contract +homePhone: +1 415 957-5992 +initials: A. L. +mobile: +1 415 961-9141 +pager: +1 415 757-5873 +roomNumber: 9217 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fletcher Buckalew +sn: Buckalew +description: This is Fletcher Buckalew's description +facsimileTelephoneNumber: +1 408 291-3466 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 408 362-4371 +title: Chief Janitorial Technician +userPassword: Password1 +uid: BuckaleF +givenName: Fletcher +mail: BuckaleF@a6b1af155ea940a7a1d1c1985151458a.bitwarden.com +carLicense: JTBSSC +departmentNumber: 4929 +employeeType: Contract +homePhone: +1 408 247-6569 +initials: F. B. +mobile: +1 408 335-9890 +pager: +1 408 789-1358 +roomNumber: 9325 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Verinder Chiou,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verinder Chiou +sn: Chiou +description: This is Verinder Chiou's description +facsimileTelephoneNumber: +1 415 738-2773 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 856-3756 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: ChiouV +givenName: Verinder +mail: ChiouV@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com +carLicense: M7JB4M +departmentNumber: 7658 +employeeType: Employee +homePhone: +1 415 543-3709 +initials: V. C. +mobile: +1 415 457-1213 +pager: +1 415 963-4655 +roomNumber: 9403 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Helmut Asdel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helmut Asdel +sn: Asdel +description: This is Helmut Asdel's description +facsimileTelephoneNumber: +1 818 898-7535 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 818 150-6916 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: AsdelH +givenName: Helmut +mail: AsdelH@fdc4e6b69a144dc99f4eca6e90ea8737.bitwarden.com +carLicense: GS4SDA +departmentNumber: 8169 +employeeType: Contract +homePhone: +1 818 624-4774 +initials: H. A. +mobile: +1 818 307-5490 +pager: +1 818 727-9910 +roomNumber: 8823 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vital Therrien,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vital Therrien +sn: Therrien +description: This is Vital Therrien's description +facsimileTelephoneNumber: +1 818 853-7249 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 818 237-9320 +title: Master Human Resources Visionary +userPassword: Password1 +uid: TherrieV +givenName: Vital +mail: TherrieV@6f8fc3d9f81d4922bdbfea87952e7cbd.bitwarden.com +carLicense: O99L9R +departmentNumber: 2881 +employeeType: Contract +homePhone: +1 818 301-9402 +initials: V. T. +mobile: +1 818 519-3686 +pager: +1 818 929-1471 +roomNumber: 9977 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ileana Bottomley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ileana Bottomley +sn: Bottomley +description: This is Ileana Bottomley's description +facsimileTelephoneNumber: +1 818 750-7892 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 474-5610 +title: Junior Payroll Warrior +userPassword: Password1 +uid: BottomlI +givenName: Ileana +mail: BottomlI@7a5d1ad8eb2448ff80683da3323f6f84.bitwarden.com +carLicense: CPPID2 +departmentNumber: 6209 +employeeType: Employee +homePhone: +1 818 443-4751 +initials: I. B. +mobile: +1 818 966-2968 +pager: +1 818 700-8865 +roomNumber: 8338 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Julian Condurelis,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julian Condurelis +sn: Condurelis +description: This is Julian Condurelis's description +facsimileTelephoneNumber: +1 818 382-6170 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 818 704-4110 +title: Associate Management Assistant +userPassword: Password1 +uid: CondureJ +givenName: Julian +mail: CondureJ@f648ab5b740d44ca8b0dc821ba7c94a0.bitwarden.com +carLicense: FWFPTW +departmentNumber: 7117 +employeeType: Employee +homePhone: +1 818 702-6147 +initials: J. C. +mobile: +1 818 224-2094 +pager: +1 818 355-2966 +roomNumber: 8273 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilhelmus Lupher +sn: Lupher +description: This is Wilhelmus Lupher's description +facsimileTelephoneNumber: +1 213 990-1789 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 397-6218 +title: Associate Payroll Consultant +userPassword: Password1 +uid: LupherW +givenName: Wilhelmus +mail: LupherW@a3d3bf444e8449f58c24d388c9e4253b.bitwarden.com +carLicense: KGFX4T +departmentNumber: 5086 +employeeType: Normal +homePhone: +1 213 269-5476 +initials: W. L. +mobile: +1 213 985-5587 +pager: +1 213 263-6711 +roomNumber: 8917 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nashib Mikulka,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nashib Mikulka +sn: Mikulka +description: This is Nashib Mikulka's description +facsimileTelephoneNumber: +1 804 355-5486 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 297-3066 +title: Associate Payroll Vice President +userPassword: Password1 +uid: MikulkaN +givenName: Nashib +mail: MikulkaN@a21f8badf17c4b4dbce73be0734b9d87.bitwarden.com +carLicense: O2CF6K +departmentNumber: 4597 +employeeType: Employee +homePhone: +1 804 372-4408 +initials: N. M. +mobile: +1 804 701-1538 +pager: +1 804 101-3527 +roomNumber: 9262 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Payroll Dantzler +sn: Dantzler +description: This is Payroll Dantzler's description +facsimileTelephoneNumber: +1 408 609-3165 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 555-8377 +title: Supreme Janitorial President +userPassword: Password1 +uid: DantzleP +givenName: Payroll +mail: DantzleP@44c07bc2a46540df9dcdebec16008404.bitwarden.com +carLicense: OVFCCC +departmentNumber: 3084 +employeeType: Normal +homePhone: +1 408 724-1176 +initials: P. D. +mobile: +1 408 465-8723 +pager: +1 408 318-7691 +roomNumber: 9204 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brena Foxworthy +sn: Foxworthy +description: This is Brena Foxworthy's description +facsimileTelephoneNumber: +1 818 777-1158 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 297-1039 +title: Associate Human Resources Developer +userPassword: Password1 +uid: FoxwortB +givenName: Brena +mail: FoxwortB@e358162fa0384d918adc01a68c3773f5.bitwarden.com +carLicense: EXDC2R +departmentNumber: 1889 +employeeType: Normal +homePhone: +1 818 496-9921 +initials: B. F. +mobile: +1 818 431-9727 +pager: +1 818 353-9504 +roomNumber: 8790 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cristie Nill,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristie Nill +sn: Nill +description: This is Cristie Nill's description +facsimileTelephoneNumber: +1 818 412-4095 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 810-9839 +title: Junior Product Development Evangelist +userPassword: Password1 +uid: NillC +givenName: Cristie +mail: NillC@0573bd112aca464284b0d9eac2753606.bitwarden.com +carLicense: WRWX3N +departmentNumber: 7625 +employeeType: Contract +homePhone: +1 818 464-6855 +initials: C. N. +mobile: +1 818 517-6742 +pager: +1 818 616-4647 +roomNumber: 8472 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ibrahim Maheu +sn: Maheu +description: This is Ibrahim Maheu's description +facsimileTelephoneNumber: +1 206 575-8661 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 796-9615 +title: Supreme Janitorial Stooge +userPassword: Password1 +uid: MaheuI +givenName: Ibrahim +mail: MaheuI@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com +carLicense: 13YYY1 +departmentNumber: 5769 +employeeType: Contract +homePhone: +1 206 847-1226 +initials: I. M. +mobile: +1 206 523-9758 +pager: +1 206 756-1004 +roomNumber: 9675 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Oliy Maloney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oliy Maloney +sn: Maloney +description: This is Oliy Maloney's description +facsimileTelephoneNumber: +1 804 902-4926 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 379-8955 +title: Associate Administrative Madonna +userPassword: Password1 +uid: MaloneyO +givenName: Oliy +mail: MaloneyO@9394232bb6834307ab4f6670c80c01e8.bitwarden.com +carLicense: CEOY1R +departmentNumber: 2138 +employeeType: Contract +homePhone: +1 804 676-3609 +initials: O. M. +mobile: +1 804 164-8762 +pager: +1 804 607-4029 +roomNumber: 8801 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Davita Berger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davita Berger +sn: Berger +description: This is Davita Berger's description +facsimileTelephoneNumber: +1 415 853-2472 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 774-2195 +title: Supreme Peons Architect +userPassword: Password1 +uid: BergerD +givenName: Davita +mail: BergerD@623538f66c6d44c9949856d7b9d692ad.bitwarden.com +carLicense: KXLEFT +departmentNumber: 2706 +employeeType: Contract +homePhone: +1 415 124-2289 +initials: D. B. +mobile: +1 415 316-9915 +pager: +1 415 373-6142 +roomNumber: 9729 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Metyn Mullaly,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Metyn Mullaly +sn: Mullaly +description: This is Metyn Mullaly's description +facsimileTelephoneNumber: +1 206 939-8337 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 206 489-5546 +title: Supreme Product Development Developer +userPassword: Password1 +uid: MullalyM +givenName: Metyn +mail: MullalyM@beb04887c3a74fa0ae74089e879db636.bitwarden.com +carLicense: A2O0HN +departmentNumber: 8733 +employeeType: Contract +homePhone: +1 206 994-7314 +initials: M. M. +mobile: +1 206 223-5698 +pager: +1 206 727-1681 +roomNumber: 9600 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ning Suitt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ning Suitt +sn: Suitt +description: This is Ning Suitt's description +facsimileTelephoneNumber: +1 408 305-2146 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 631-2934 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: SuittN +givenName: Ning +mail: SuittN@8964e184da0347bdb7b4df11050a3a32.bitwarden.com +carLicense: EIL0W5 +departmentNumber: 7998 +employeeType: Employee +homePhone: +1 408 789-6495 +initials: N. S. +mobile: +1 408 653-1972 +pager: +1 408 707-9658 +roomNumber: 9694 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rafa Vilozny,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rafa Vilozny +sn: Vilozny +description: This is Rafa Vilozny's description +facsimileTelephoneNumber: +1 206 120-6390 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 238-8494 +title: Junior Administrative Manager +userPassword: Password1 +uid: ViloznyR +givenName: Rafa +mail: ViloznyR@bac50bb727ca4a11b9ee1a82a995bcf0.bitwarden.com +carLicense: 2JJQD9 +departmentNumber: 4282 +employeeType: Employee +homePhone: +1 206 862-8494 +initials: R. V. +mobile: +1 206 841-5161 +pager: +1 206 680-6372 +roomNumber: 9607 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kessel Ferenz +sn: Ferenz +description: This is Kessel Ferenz's description +facsimileTelephoneNumber: +1 213 378-7937 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 544-8137 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: FerenzK +givenName: Kessel +mail: FerenzK@123877216cf647dc9c161017fd0bf922.bitwarden.com +carLicense: A7PQNP +departmentNumber: 6219 +employeeType: Normal +homePhone: +1 213 415-3592 +initials: K. F. +mobile: +1 213 450-9671 +pager: +1 213 834-7922 +roomNumber: 9524 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donnamarie Proudfoot +sn: Proudfoot +description: This is Donnamarie Proudfoot's description +facsimileTelephoneNumber: +1 804 912-4371 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 804 200-6744 +title: Associate Management Admin +userPassword: Password1 +uid: ProudfoD +givenName: Donnamarie +mail: ProudfoD@aa592c2222884248a08151cbea9b9464.bitwarden.com +carLicense: 6937ED +departmentNumber: 5445 +employeeType: Contract +homePhone: +1 804 718-8641 +initials: D. P. +mobile: +1 804 535-7061 +pager: +1 804 259-8096 +roomNumber: 8948 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Anita Bui,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anita Bui +sn: Bui +description: This is Anita Bui's description +facsimileTelephoneNumber: +1 415 784-4565 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 568-9727 +title: Supreme Product Development Pinhead +userPassword: Password1 +uid: BuiA +givenName: Anita +mail: BuiA@fc6cfedbbb404c7db9497f0971d6cf66.bitwarden.com +carLicense: U4PVBT +departmentNumber: 7207 +employeeType: Employee +homePhone: +1 415 923-7237 +initials: A. B. +mobile: +1 415 432-8533 +pager: +1 415 881-7793 +roomNumber: 9817 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laverne CunhaGomes +sn: CunhaGomes +description: This is Laverne CunhaGomes's description +facsimileTelephoneNumber: +1 213 123-9955 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 871-3455 +title: Master Human Resources Warrior +userPassword: Password1 +uid: CunhaGoL +givenName: Laverne +mail: CunhaGoL@5e4575ba15004635a07ebaa5c8dd9475.bitwarden.com +carLicense: YRFKYS +departmentNumber: 7927 +employeeType: Contract +homePhone: +1 213 255-5647 +initials: L. C. +mobile: +1 213 877-9003 +pager: +1 213 500-9381 +roomNumber: 8253 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Verina Lamirande,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verina Lamirande +sn: Lamirande +description: This is Verina Lamirande's description +facsimileTelephoneNumber: +1 818 656-2320 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 749-6222 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: LamiranV +givenName: Verina +mail: LamiranV@f86eaf6fda40440ead0c03f269cfec3a.bitwarden.com +carLicense: KKYB5W +departmentNumber: 6198 +employeeType: Contract +homePhone: +1 818 172-5160 +initials: V. L. +mobile: +1 818 157-7357 +pager: +1 818 919-2800 +roomNumber: 8641 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gusella Loggins,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gusella Loggins +sn: Loggins +description: This is Gusella Loggins's description +facsimileTelephoneNumber: +1 510 996-6377 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 561-9208 +title: Chief Payroll Manager +userPassword: Password1 +uid: LogginsG +givenName: Gusella +mail: LogginsG@bdde3595ac2c4a339c7f74eb56b2523f.bitwarden.com +carLicense: AOD95W +departmentNumber: 7747 +employeeType: Employee +homePhone: +1 510 817-6138 +initials: G. L. +mobile: +1 510 363-8693 +pager: +1 510 277-2094 +roomNumber: 8388 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hatty Murash,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hatty Murash +sn: Murash +description: This is Hatty Murash's description +facsimileTelephoneNumber: +1 804 593-8204 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 352-6250 +title: Associate Product Testing Artist +userPassword: Password1 +uid: MurashH +givenName: Hatty +mail: MurashH@3e7b5d0f173b44b5bb6ae270e2b8fdcb.bitwarden.com +carLicense: 6EUK50 +departmentNumber: 4431 +employeeType: Normal +homePhone: +1 804 613-4691 +initials: H. M. +mobile: +1 804 759-5417 +pager: +1 804 413-7015 +roomNumber: 9433 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Clyde Labenek,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clyde Labenek +sn: Labenek +description: This is Clyde Labenek's description +facsimileTelephoneNumber: +1 213 360-6928 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 539-2993 +title: Junior Product Development Manager +userPassword: Password1 +uid: LabenekC +givenName: Clyde +mail: LabenekC@28fab2a5e4034ede9d4f584a0fd75e72.bitwarden.com +carLicense: 3NT0DB +departmentNumber: 3448 +employeeType: Employee +homePhone: +1 213 333-2943 +initials: C. L. +mobile: +1 213 521-2839 +pager: +1 213 760-2390 +roomNumber: 8976 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=New Koay,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: New Koay +sn: Koay +description: This is New Koay's description +facsimileTelephoneNumber: +1 510 905-6080 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 866-3782 +title: Associate Payroll Admin +userPassword: Password1 +uid: KoayN +givenName: New +mail: KoayN@eb362d3928c448a4b72d63b85283da63.bitwarden.com +carLicense: B2T70O +departmentNumber: 9343 +employeeType: Normal +homePhone: +1 510 126-8157 +initials: N. K. +mobile: +1 510 154-6027 +pager: +1 510 791-8589 +roomNumber: 8225 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petronilla Greytock +sn: Greytock +description: This is Petronilla Greytock's description +facsimileTelephoneNumber: +1 804 258-4215 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 717-1444 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: GreytocP +givenName: Petronilla +mail: GreytocP@ad623334663c4947b77eb81b44ea11ea.bitwarden.com +carLicense: K0234S +departmentNumber: 6349 +employeeType: Employee +homePhone: +1 804 125-2715 +initials: P. G. +mobile: +1 804 944-3801 +pager: +1 804 601-9572 +roomNumber: 8611 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Doria Smothers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doria Smothers +sn: Smothers +description: This is Doria Smothers's description +facsimileTelephoneNumber: +1 415 991-9984 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 562-5324 +title: Supreme Management Artist +userPassword: Password1 +uid: SmotherD +givenName: Doria +mail: SmotherD@4e240d85327f4f81b9a139f4d41efb41.bitwarden.com +carLicense: BLHG61 +departmentNumber: 3591 +employeeType: Contract +homePhone: +1 415 145-1877 +initials: D. S. +mobile: +1 415 311-9967 +pager: +1 415 223-1767 +roomNumber: 9050 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tonia Gahan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonia Gahan +sn: Gahan +description: This is Tonia Gahan's description +facsimileTelephoneNumber: +1 206 790-4197 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 852-3549 +title: Chief Human Resources Pinhead +userPassword: Password1 +uid: GahanT +givenName: Tonia +mail: GahanT@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com +carLicense: W4TNGN +departmentNumber: 3012 +employeeType: Contract +homePhone: +1 206 560-2901 +initials: T. G. +mobile: +1 206 237-3815 +pager: +1 206 661-4223 +roomNumber: 9062 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Reina Gracey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reina Gracey +sn: Gracey +description: This is Reina Gracey's description +facsimileTelephoneNumber: +1 213 980-1003 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 560-4204 +title: Master Management Stooge +userPassword: Password1 +uid: GraceyR +givenName: Reina +mail: GraceyR@c07b5bb2f94643578becb647cd136c33.bitwarden.com +carLicense: HP92V9 +departmentNumber: 9741 +employeeType: Contract +homePhone: +1 213 448-9711 +initials: R. G. +mobile: +1 213 290-1439 +pager: +1 213 867-8861 +roomNumber: 9477 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vale Harwerth,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vale Harwerth +sn: Harwerth +description: This is Vale Harwerth's description +facsimileTelephoneNumber: +1 408 254-1656 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 331-7478 +title: Junior Product Development Visionary +userPassword: Password1 +uid: HarwertV +givenName: Vale +mail: HarwertV@e83fceefe07e4de6ba8b4f0b48751aec.bitwarden.com +carLicense: 5HDI63 +departmentNumber: 3136 +employeeType: Normal +homePhone: +1 408 225-2258 +initials: V. H. +mobile: +1 408 158-5352 +pager: +1 408 765-8227 +roomNumber: 8796 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anjela Dyrdahl +sn: Dyrdahl +description: This is Anjela Dyrdahl's description +facsimileTelephoneNumber: +1 510 213-1800 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 980-9639 +title: Associate Administrative Warrior +userPassword: Password1 +uid: DyrdahlA +givenName: Anjela +mail: DyrdahlA@5b44f69cb0e74cb5b8b37bde0d083579.bitwarden.com +carLicense: BI255W +departmentNumber: 3863 +employeeType: Employee +homePhone: +1 510 420-9656 +initials: A. D. +mobile: +1 510 574-7528 +pager: +1 510 115-9997 +roomNumber: 9369 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gavra Brule,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gavra Brule +sn: Brule +description: This is Gavra Brule's description +facsimileTelephoneNumber: +1 804 819-6050 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 527-6936 +title: Associate Peons Visionary +userPassword: Password1 +uid: BruleG +givenName: Gavra +mail: BruleG@9b5bbecfd65b422e95fd8bc7721876ac.bitwarden.com +carLicense: 2CYMYG +departmentNumber: 5704 +employeeType: Contract +homePhone: +1 804 325-1697 +initials: G. B. +mobile: +1 804 911-3221 +pager: +1 804 755-7019 +roomNumber: 8098 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Corilla Angustia,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corilla Angustia +sn: Angustia +description: This is Corilla Angustia's description +facsimileTelephoneNumber: +1 804 901-6251 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 467-6146 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: AngustiC +givenName: Corilla +mail: AngustiC@492b9c186a41410b8362945cf33f6ac7.bitwarden.com +carLicense: CCIKP3 +departmentNumber: 5971 +employeeType: Employee +homePhone: +1 804 993-7634 +initials: C. A. +mobile: +1 804 910-1388 +pager: +1 804 377-3987 +roomNumber: 9653 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rochelle Wokoma +sn: Wokoma +description: This is Rochelle Wokoma's description +facsimileTelephoneNumber: +1 415 241-4084 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 547-3874 +title: Supreme Human Resources Director +userPassword: Password1 +uid: WokomaR +givenName: Rochelle +mail: WokomaR@aa40bc3bf6d0491ea79629a0660ec362.bitwarden.com +carLicense: OVMKGQ +departmentNumber: 1809 +employeeType: Normal +homePhone: +1 415 862-3739 +initials: R. W. +mobile: +1 415 301-3249 +pager: +1 415 634-9532 +roomNumber: 9817 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Simona Lemyre,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Simona Lemyre +sn: Lemyre +description: This is Simona Lemyre's description +facsimileTelephoneNumber: +1 510 441-5014 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 596-1197 +title: Junior Management Grunt +userPassword: Password1 +uid: LemyreS +givenName: Simona +mail: LemyreS@4f8304c7c82a40568829a62a3d95ae6e.bitwarden.com +carLicense: CDR90K +departmentNumber: 8039 +employeeType: Normal +homePhone: +1 510 921-2494 +initials: S. L. +mobile: +1 510 908-1920 +pager: +1 510 292-9784 +roomNumber: 8881 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Loris Knappe,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loris Knappe +sn: Knappe +description: This is Loris Knappe's description +facsimileTelephoneNumber: +1 206 509-7158 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 808-1307 +title: Chief Administrative President +userPassword: Password1 +uid: KnappeL +givenName: Loris +mail: KnappeL@466f24c0ae9947d2a9b6e4673a116085.bitwarden.com +carLicense: NT258Q +departmentNumber: 3967 +employeeType: Contract +homePhone: +1 206 611-5390 +initials: L. K. +mobile: +1 206 185-2235 +pager: +1 206 838-2098 +roomNumber: 8039 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mariya Frumerie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariya Frumerie +sn: Frumerie +description: This is Mariya Frumerie's description +facsimileTelephoneNumber: +1 408 150-7952 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 840-8848 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: FrumeriM +givenName: Mariya +mail: FrumeriM@74b04bb2dca3456d9dd381e9b32a85a5.bitwarden.com +carLicense: O6WUWQ +departmentNumber: 3756 +employeeType: Normal +homePhone: +1 408 958-1101 +initials: M. F. +mobile: +1 408 466-5889 +pager: +1 408 980-6547 +roomNumber: 9170 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pradip Wesenberg,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pradip Wesenberg +sn: Wesenberg +description: This is Pradip Wesenberg's description +facsimileTelephoneNumber: +1 408 315-8416 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 699-1887 +title: Associate Peons Director +userPassword: Password1 +uid: WesenbeP +givenName: Pradip +mail: WesenbeP@35335990ab014019917e13dee53dd406.bitwarden.com +carLicense: UTP8PY +departmentNumber: 5013 +employeeType: Normal +homePhone: +1 408 414-7666 +initials: P. W. +mobile: +1 408 724-5743 +pager: +1 408 287-9118 +roomNumber: 8067 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Teena Szuminski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teena Szuminski +sn: Szuminski +description: This is Teena Szuminski's description +facsimileTelephoneNumber: +1 206 799-5258 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 288-6239 +title: Chief Product Testing Writer +userPassword: Password1 +uid: SzuminsT +givenName: Teena +mail: SzuminsT@a4f85fecd69348a29728c8e242a790a2.bitwarden.com +carLicense: D759IH +departmentNumber: 1333 +employeeType: Employee +homePhone: +1 206 821-2077 +initials: T. S. +mobile: +1 206 325-2772 +pager: +1 206 587-4487 +roomNumber: 9317 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carline Urbanowich +sn: Urbanowich +description: This is Carline Urbanowich's description +facsimileTelephoneNumber: +1 213 737-4985 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 679-8980 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: UrbanowC +givenName: Carline +mail: UrbanowC@f6866989cc784904871bcaa73d189a85.bitwarden.com +carLicense: N3PBQ4 +departmentNumber: 4094 +employeeType: Normal +homePhone: +1 213 464-7304 +initials: C. U. +mobile: +1 213 817-9454 +pager: +1 213 182-5354 +roomNumber: 9637 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jeanie Shumate,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeanie Shumate +sn: Shumate +description: This is Jeanie Shumate's description +facsimileTelephoneNumber: +1 415 947-8241 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 617-8358 +title: Junior Management Punk +userPassword: Password1 +uid: ShumateJ +givenName: Jeanie +mail: ShumateJ@fd0854655b5f4982bc6e7a95b12dd3fe.bitwarden.com +carLicense: 6SFR1A +departmentNumber: 1579 +employeeType: Normal +homePhone: +1 415 240-3584 +initials: J. S. +mobile: +1 415 522-4736 +pager: +1 415 200-7479 +roomNumber: 8285 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mindy Agnew,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mindy Agnew +sn: Agnew +description: This is Mindy Agnew's description +facsimileTelephoneNumber: +1 510 725-4216 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 284-6637 +title: Associate Peons Engineer +userPassword: Password1 +uid: AgnewM +givenName: Mindy +mail: AgnewM@dad8b7b440374db79e9b58cd390854c3.bitwarden.com +carLicense: 8RN8HX +departmentNumber: 7871 +employeeType: Contract +homePhone: +1 510 957-7119 +initials: M. A. +mobile: +1 510 492-2426 +pager: +1 510 191-9090 +roomNumber: 9189 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cosette Hagley,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cosette Hagley +sn: Hagley +description: This is Cosette Hagley's description +facsimileTelephoneNumber: +1 213 557-3365 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 201-2032 +title: Associate Peons Evangelist +userPassword: Password1 +uid: HagleyC +givenName: Cosette +mail: HagleyC@bbf5361396904a4082fadb57709a5d90.bitwarden.com +carLicense: IOOAFG +departmentNumber: 5423 +employeeType: Normal +homePhone: +1 213 619-8017 +initials: C. H. +mobile: +1 213 101-2184 +pager: +1 213 794-4095 +roomNumber: 9649 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChristieAnne Nyce +sn: Nyce +description: This is ChristieAnne Nyce's description +facsimileTelephoneNumber: +1 804 281-2045 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 432-1018 +title: Chief Human Resources Punk +userPassword: Password1 +uid: NyceC +givenName: ChristieAnne +mail: NyceC@ebdda7804b294714949d48657bdd3830.bitwarden.com +carLicense: C3G68L +departmentNumber: 7431 +employeeType: Contract +homePhone: +1 804 552-1676 +initials: C. N. +mobile: +1 804 241-5413 +pager: +1 804 869-4649 +roomNumber: 9094 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Darnell Gombos,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darnell Gombos +sn: Gombos +description: This is Darnell Gombos's description +facsimileTelephoneNumber: +1 510 874-4072 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 953-2852 +title: Associate Product Development Artist +userPassword: Password1 +uid: GombosD +givenName: Darnell +mail: GombosD@a5f5618aa6144295ac3ab97f28aa1603.bitwarden.com +carLicense: UA4QNE +departmentNumber: 9180 +employeeType: Normal +homePhone: +1 510 137-6730 +initials: D. G. +mobile: +1 510 230-2957 +pager: +1 510 598-1924 +roomNumber: 8996 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Odille Belisle,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odille Belisle +sn: Belisle +description: This is Odille Belisle's description +facsimileTelephoneNumber: +1 804 181-3142 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 804 522-6984 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: BelisleO +givenName: Odille +mail: BelisleO@770858a0ba27427fa80380c180b40ddb.bitwarden.com +carLicense: 6GJJG3 +departmentNumber: 2633 +employeeType: Contract +homePhone: +1 804 437-9530 +initials: O. B. +mobile: +1 804 798-3581 +pager: +1 804 514-3858 +roomNumber: 8007 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mirilla Malik,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirilla Malik +sn: Malik +description: This is Mirilla Malik's description +facsimileTelephoneNumber: +1 213 809-7069 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 634-2595 +title: Master Janitorial Manager +userPassword: Password1 +uid: MalikM +givenName: Mirilla +mail: MalikM@f2e037d77334498ab9322f95dd7d350d.bitwarden.com +carLicense: X7H2NN +departmentNumber: 1605 +employeeType: Contract +homePhone: +1 213 568-5549 +initials: M. M. +mobile: +1 213 439-7880 +pager: +1 213 952-5674 +roomNumber: 8573 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alena Winklemaier +sn: Winklemaier +description: This is Alena Winklemaier's description +facsimileTelephoneNumber: +1 213 294-7554 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 567-2569 +title: Chief Janitorial Director +userPassword: Password1 +uid: WinklemA +givenName: Alena +mail: WinklemA@863337bc153343e09522d2f9b00e1379.bitwarden.com +carLicense: 4C1OY0 +departmentNumber: 1533 +employeeType: Normal +homePhone: +1 213 495-8656 +initials: A. W. +mobile: +1 213 130-6758 +pager: +1 213 343-2080 +roomNumber: 9381 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lise Disalvo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lise Disalvo +sn: Disalvo +description: This is Lise Disalvo's description +facsimileTelephoneNumber: +1 804 721-7016 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 804 771-2859 +title: Master Human Resources Czar +userPassword: Password1 +uid: DisalvoL +givenName: Lise +mail: DisalvoL@4a8d22894cf24b2dbddb3ccac895cba0.bitwarden.com +carLicense: Y39VFT +departmentNumber: 8639 +employeeType: Contract +homePhone: +1 804 492-2162 +initials: L. D. +mobile: +1 804 162-3202 +pager: +1 804 481-1634 +roomNumber: 9969 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lou Burchat,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lou Burchat +sn: Burchat +description: This is Lou Burchat's description +facsimileTelephoneNumber: +1 818 769-6700 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 818 595-9114 +title: Associate Peons Vice President +userPassword: Password1 +uid: BurchatL +givenName: Lou +mail: BurchatL@f58a1be9c5d84ac9b0da725b5fef956c.bitwarden.com +carLicense: EAL2PC +departmentNumber: 8269 +employeeType: Employee +homePhone: +1 818 163-7106 +initials: L. B. +mobile: +1 818 971-8470 +pager: +1 818 816-8684 +roomNumber: 8258 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celinka Macaulay +sn: Macaulay +description: This is Celinka Macaulay's description +facsimileTelephoneNumber: +1 415 279-9898 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 107-8207 +title: Master Product Testing Mascot +userPassword: Password1 +uid: MacaulaC +givenName: Celinka +mail: MacaulaC@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com +carLicense: IB55FF +departmentNumber: 2892 +employeeType: Employee +homePhone: +1 415 482-8616 +initials: C. M. +mobile: +1 415 823-3667 +pager: +1 415 952-7119 +roomNumber: 9741 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Donita Teichman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donita Teichman +sn: Teichman +description: This is Donita Teichman's description +facsimileTelephoneNumber: +1 213 330-3675 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 825-7992 +title: Supreme Peons Madonna +userPassword: Password1 +uid: TeichmaD +givenName: Donita +mail: TeichmaD@d7baf4e3c12a4ed9850be956d310a59c.bitwarden.com +carLicense: C47FC7 +departmentNumber: 2328 +employeeType: Contract +homePhone: +1 213 227-9003 +initials: D. T. +mobile: +1 213 788-2293 +pager: +1 213 853-8283 +roomNumber: 9078 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hermione Monet,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermione Monet +sn: Monet +description: This is Hermione Monet's description +facsimileTelephoneNumber: +1 415 672-7043 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 618-4617 +title: Master Peons Stooge +userPassword: Password1 +uid: MonetH +givenName: Hermione +mail: MonetH@9fc16f31309a4e5489f1a046e558b353.bitwarden.com +carLicense: 9JNAYK +departmentNumber: 4881 +employeeType: Employee +homePhone: +1 415 335-7085 +initials: H. M. +mobile: +1 415 740-6591 +pager: +1 415 962-7122 +roomNumber: 8686 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joann Vermeesch +sn: Vermeesch +description: This is Joann Vermeesch's description +facsimileTelephoneNumber: +1 206 584-9537 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 206 805-6579 +title: Associate Product Testing Developer +userPassword: Password1 +uid: VermeesJ +givenName: Joann +mail: VermeesJ@c912ac8eb3d148c49f0011f93774eeca.bitwarden.com +carLicense: VX9QN3 +departmentNumber: 9790 +employeeType: Normal +homePhone: +1 206 564-6868 +initials: J. V. +mobile: +1 206 796-6261 +pager: +1 206 774-4556 +roomNumber: 8941 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nopi Bulifant +sn: Bulifant +description: This is Nopi Bulifant's description +facsimileTelephoneNumber: +1 206 464-4268 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 596-4604 +title: Supreme Product Testing Director +userPassword: Password1 +uid: BulifanN +givenName: Nopi +mail: BulifanN@737a8e314bb541f2971ef676e8e10c83.bitwarden.com +carLicense: 0BEXLN +departmentNumber: 6290 +employeeType: Normal +homePhone: +1 206 709-6939 +initials: N. B. +mobile: +1 206 840-1339 +pager: +1 206 925-2352 +roomNumber: 9989 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Belicia Kupitz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belicia Kupitz +sn: Kupitz +description: This is Belicia Kupitz's description +facsimileTelephoneNumber: +1 206 221-5988 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 825-2750 +title: Master Peons Dictator +userPassword: Password1 +uid: KupitzB +givenName: Belicia +mail: KupitzB@8d562bd365da4cdca86c1d397fe1741a.bitwarden.com +carLicense: YTMTX2 +departmentNumber: 3582 +employeeType: Employee +homePhone: +1 206 613-2646 +initials: B. K. +mobile: +1 206 281-1975 +pager: +1 206 495-4980 +roomNumber: 9994 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tani Rausch,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tani Rausch +sn: Rausch +description: This is Tani Rausch's description +facsimileTelephoneNumber: +1 408 818-5214 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 408 277-5158 +title: Chief Administrative Fellow +userPassword: Password1 +uid: RauschT +givenName: Tani +mail: RauschT@0b42d23f708a491ab7e35398744c7140.bitwarden.com +carLicense: 2ODHFG +departmentNumber: 4835 +employeeType: Contract +homePhone: +1 408 175-6424 +initials: T. R. +mobile: +1 408 344-6912 +pager: +1 408 360-6049 +roomNumber: 8173 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Berget Baerg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berget Baerg +sn: Baerg +description: This is Berget Baerg's description +facsimileTelephoneNumber: +1 408 354-5431 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 918-4430 +title: Associate Janitorial Czar +userPassword: Password1 +uid: BaergB +givenName: Berget +mail: BaergB@77627e1e8f8e4cdc88cd6606136ffbcf.bitwarden.com +carLicense: V0GPAA +departmentNumber: 7569 +employeeType: Normal +homePhone: +1 408 800-3065 +initials: B. B. +mobile: +1 408 455-9787 +pager: +1 408 177-2298 +roomNumber: 9960 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Skyler Hariman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Skyler Hariman +sn: Hariman +description: This is Skyler Hariman's description +facsimileTelephoneNumber: +1 415 644-9163 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 415 988-2755 +title: Master Payroll Warrior +userPassword: Password1 +uid: HarimanS +givenName: Skyler +mail: HarimanS@162057a27e094561a78012351f7383c7.bitwarden.com +carLicense: LIVCIS +departmentNumber: 1500 +employeeType: Contract +homePhone: +1 415 385-5134 +initials: S. H. +mobile: +1 415 212-4683 +pager: +1 415 745-2057 +roomNumber: 9792 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Toni Shaddock,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toni Shaddock +sn: Shaddock +description: This is Toni Shaddock's description +facsimileTelephoneNumber: +1 818 374-2742 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 595-1051 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: ShaddocT +givenName: Toni +mail: ShaddocT@6a01aba5dc8f451b8404750bb95136ca.bitwarden.com +carLicense: FLPDPT +departmentNumber: 3765 +employeeType: Employee +homePhone: +1 818 899-9937 +initials: T. S. +mobile: +1 818 835-9287 +pager: +1 818 751-1956 +roomNumber: 9647 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Foad Roberts,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Foad Roberts +sn: Roberts +description: This is Foad Roberts's description +facsimileTelephoneNumber: +1 408 780-6958 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 760-2834 +title: Associate Peons Assistant +userPassword: Password1 +uid: RobertsF +givenName: Foad +mail: RobertsF@f76cbd44b02547b883b5a9a34e1c9fd0.bitwarden.com +carLicense: TPODSH +departmentNumber: 1857 +employeeType: Normal +homePhone: +1 408 322-8054 +initials: F. R. +mobile: +1 408 145-9308 +pager: +1 408 884-7861 +roomNumber: 9169 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parks Shtivelman +sn: Shtivelman +description: This is Parks Shtivelman's description +facsimileTelephoneNumber: +1 804 609-7497 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 737-4889 +title: Master Product Testing Director +userPassword: Password1 +uid: ShtivelP +givenName: Parks +mail: ShtivelP@05da0d5cd1904deaaf3f5d8c791005d2.bitwarden.com +carLicense: XX9V70 +departmentNumber: 9666 +employeeType: Employee +homePhone: +1 804 349-5606 +initials: P. S. +mobile: +1 804 268-2907 +pager: +1 804 562-9231 +roomNumber: 9680 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Keely Dee,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keely Dee +sn: Dee +description: This is Keely Dee's description +facsimileTelephoneNumber: +1 206 553-9696 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 759-5837 +title: Master Peons Developer +userPassword: Password1 +uid: DeeK +givenName: Keely +mail: DeeK@2974cf90fe1d4835b1ba05177dd29243.bitwarden.com +carLicense: J0K8R7 +departmentNumber: 8254 +employeeType: Employee +homePhone: +1 206 635-8100 +initials: K. D. +mobile: +1 206 716-2231 +pager: +1 206 202-1712 +roomNumber: 9454 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shiu Trimble,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shiu Trimble +sn: Trimble +description: This is Shiu Trimble's description +facsimileTelephoneNumber: +1 415 256-5396 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 893-8328 +title: Master Management Technician +userPassword: Password1 +uid: TrimbleS +givenName: Shiu +mail: TrimbleS@75dfcd3692074ff18248aebdf998f81c.bitwarden.com +carLicense: 59SG4U +departmentNumber: 8481 +employeeType: Contract +homePhone: +1 415 619-2805 +initials: S. T. +mobile: +1 415 166-6641 +pager: +1 415 566-5160 +roomNumber: 9464 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gwenore Taren,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwenore Taren +sn: Taren +description: This is Gwenore Taren's description +facsimileTelephoneNumber: +1 415 543-9088 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 380-2580 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: TarenG +givenName: Gwenore +mail: TarenG@ed1174f9049747fb9c8ea909f860d6ca.bitwarden.com +carLicense: NLVQ4V +departmentNumber: 5524 +employeeType: Employee +homePhone: +1 415 927-2620 +initials: G. T. +mobile: +1 415 917-8695 +pager: +1 415 339-1158 +roomNumber: 9962 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Saraann Millen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saraann Millen +sn: Millen +description: This is Saraann Millen's description +facsimileTelephoneNumber: +1 415 872-6733 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 140-7148 +title: Junior Peons Writer +userPassword: Password1 +uid: MillenS +givenName: Saraann +mail: MillenS@20d733e4c13941c7bc31419a4b4229c6.bitwarden.com +carLicense: GUIP16 +departmentNumber: 2481 +employeeType: Normal +homePhone: +1 415 532-9489 +initials: S. M. +mobile: +1 415 224-1409 +pager: +1 415 850-4725 +roomNumber: 8258 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sandra Mosley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandra Mosley +sn: Mosley +description: This is Sandra Mosley's description +facsimileTelephoneNumber: +1 510 210-1926 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 773-6718 +title: Supreme Administrative Vice President +userPassword: Password1 +uid: MosleyS +givenName: Sandra +mail: MosleyS@e800254840ec4cdd98916b4e083fcf9a.bitwarden.com +carLicense: 5PGG2P +departmentNumber: 9702 +employeeType: Normal +homePhone: +1 510 780-9792 +initials: S. M. +mobile: +1 510 817-8947 +pager: +1 510 150-4744 +roomNumber: 8783 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SheriLynn Hemphill +sn: Hemphill +description: This is SheriLynn Hemphill's description +facsimileTelephoneNumber: +1 213 512-7005 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 261-9282 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: HemphilS +givenName: SheriLynn +mail: HemphilS@819341cb2af84d6c855b3feecf7b45b9.bitwarden.com +carLicense: RKSSQ4 +departmentNumber: 8408 +employeeType: Contract +homePhone: +1 213 569-4342 +initials: S. H. +mobile: +1 213 302-9134 +pager: +1 213 510-3027 +roomNumber: 9646 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bernhard Niro,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernhard Niro +sn: Niro +description: This is Bernhard Niro's description +facsimileTelephoneNumber: +1 415 665-1209 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 415 789-6031 +title: Master Product Development Artist +userPassword: Password1 +uid: NiroB +givenName: Bernhard +mail: NiroB@2c3e110ee6f849dd9d12214b3161a037.bitwarden.com +carLicense: 5DADJ6 +departmentNumber: 2005 +employeeType: Normal +homePhone: +1 415 870-7242 +initials: B. N. +mobile: +1 415 471-1709 +pager: +1 415 760-2657 +roomNumber: 9572 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ema Kelkar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ema Kelkar +sn: Kelkar +description: This is Ema Kelkar's description +facsimileTelephoneNumber: +1 804 300-2085 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 571-5197 +title: Supreme Peons Artist +userPassword: Password1 +uid: KelkarE +givenName: Ema +mail: KelkarE@4dd9b19c6f6848e2a0768f206ad89104.bitwarden.com +carLicense: 3HTJ7V +departmentNumber: 5432 +employeeType: Employee +homePhone: +1 804 860-9102 +initials: E. K. +mobile: +1 804 377-5246 +pager: +1 804 719-2249 +roomNumber: 9209 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lawrence Riedel +sn: Riedel +description: This is Lawrence Riedel's description +facsimileTelephoneNumber: +1 818 164-8787 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 483-5344 +title: Associate Janitorial Architect +userPassword: Password1 +uid: RiedelL +givenName: Lawrence +mail: RiedelL@80d7e63066f84141a410585d6b524a04.bitwarden.com +carLicense: OCX3OL +departmentNumber: 8164 +employeeType: Normal +homePhone: +1 818 427-2786 +initials: L. R. +mobile: +1 818 712-7053 +pager: +1 818 464-9504 +roomNumber: 8942 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selvaraj Bazemore +sn: Bazemore +description: This is Selvaraj Bazemore's description +facsimileTelephoneNumber: +1 415 336-1030 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 187-7654 +title: Master Product Testing Visionary +userPassword: Password1 +uid: BazemorS +givenName: Selvaraj +mail: BazemorS@2ba610dbd4ca4724a5aac54e36ab5ab0.bitwarden.com +carLicense: VE778E +departmentNumber: 7649 +employeeType: Contract +homePhone: +1 415 774-9541 +initials: S. B. +mobile: +1 415 144-1448 +pager: +1 415 566-9074 +roomNumber: 9753 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Erich Pandey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erich Pandey +sn: Pandey +description: This is Erich Pandey's description +facsimileTelephoneNumber: +1 818 127-3095 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 540-4905 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: PandeyE +givenName: Erich +mail: PandeyE@71c4255308d847e6b55d8184e9b3d537.bitwarden.com +carLicense: BT681J +departmentNumber: 5148 +employeeType: Contract +homePhone: +1 818 583-9027 +initials: E. P. +mobile: +1 818 104-7773 +pager: +1 818 902-1855 +roomNumber: 8100 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Farshid Sattler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farshid Sattler +sn: Sattler +description: This is Farshid Sattler's description +facsimileTelephoneNumber: +1 804 234-7828 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 841-3690 +title: Supreme Product Testing Vice President +userPassword: Password1 +uid: SattlerF +givenName: Farshid +mail: SattlerF@7e9f6d17b8fc4a199e49adcccc9ca5e1.bitwarden.com +carLicense: AYJM08 +departmentNumber: 4209 +employeeType: Employee +homePhone: +1 804 945-4394 +initials: F. S. +mobile: +1 804 721-7191 +pager: +1 804 200-4058 +roomNumber: 8718 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flying Pimiskern +sn: Pimiskern +description: This is Flying Pimiskern's description +facsimileTelephoneNumber: +1 206 556-2166 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 438-6480 +title: Supreme Janitorial Visionary +userPassword: Password1 +uid: PimiskeF +givenName: Flying +mail: PimiskeF@8e939e1720cd4eec84cf0ef4b954cc46.bitwarden.com +carLicense: A1V7NL +departmentNumber: 3318 +employeeType: Contract +homePhone: +1 206 786-8936 +initials: F. P. +mobile: +1 206 928-4321 +pager: +1 206 135-4428 +roomNumber: 8532 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anissa Nasato,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anissa Nasato +sn: Nasato +description: This is Anissa Nasato's description +facsimileTelephoneNumber: +1 408 512-2295 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 439-5238 +title: Junior Payroll President +userPassword: Password1 +uid: NasatoA +givenName: Anissa +mail: NasatoA@f189d642e6af44169fd7101889f8b06f.bitwarden.com +carLicense: 4BMDQX +departmentNumber: 6272 +employeeType: Employee +homePhone: +1 408 745-8791 +initials: A. N. +mobile: +1 408 654-6023 +pager: +1 408 671-7524 +roomNumber: 9773 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monroe Deardurff +sn: Deardurff +description: This is Monroe Deardurff's description +facsimileTelephoneNumber: +1 415 523-1000 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 414-1259 +title: Associate Product Testing Admin +userPassword: Password1 +uid: DeardurM +givenName: Monroe +mail: DeardurM@646791cae30048e78e840ca24e142dc7.bitwarden.com +carLicense: UF1AEQ +departmentNumber: 4275 +employeeType: Normal +homePhone: +1 415 301-7795 +initials: M. D. +mobile: +1 415 506-4448 +pager: +1 415 971-6871 +roomNumber: 8497 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Grietje Dionne,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grietje Dionne +sn: Dionne +description: This is Grietje Dionne's description +facsimileTelephoneNumber: +1 510 143-6293 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 114-3193 +title: Junior Management Director +userPassword: Password1 +uid: DionneG +givenName: Grietje +mail: DionneG@ebda9764758246a4bb15c2161573a88b.bitwarden.com +carLicense: VEJPJG +departmentNumber: 7798 +employeeType: Normal +homePhone: +1 510 498-4437 +initials: G. D. +mobile: +1 510 691-8549 +pager: +1 510 679-2788 +roomNumber: 8519 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vinny Grandbois +sn: Grandbois +description: This is Vinny Grandbois's description +facsimileTelephoneNumber: +1 804 182-5242 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 987-6376 +title: Junior Product Testing Mascot +userPassword: Password1 +uid: GrandboV +givenName: Vinny +mail: GrandboV@51a0ff7129454952917fdd91842316b9.bitwarden.com +carLicense: X32OCX +departmentNumber: 7829 +employeeType: Contract +homePhone: +1 804 263-8593 +initials: V. G. +mobile: +1 804 212-7166 +pager: +1 804 214-9149 +roomNumber: 9521 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Asia Dobbs,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Asia Dobbs +sn: Dobbs +description: This is Asia Dobbs's description +facsimileTelephoneNumber: +1 818 455-4205 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 997-7584 +title: Chief Administrative Technician +userPassword: Password1 +uid: DobbsA +givenName: Asia +mail: DobbsA@64ddc1375a2449c3b91480ef133e087e.bitwarden.com +carLicense: BV1EUS +departmentNumber: 5472 +employeeType: Employee +homePhone: +1 818 425-3267 +initials: A. D. +mobile: +1 818 225-2571 +pager: +1 818 552-4460 +roomNumber: 8302 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Flor Powney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Flor Powney +sn: Powney +description: This is Flor Powney's description +facsimileTelephoneNumber: +1 804 603-4834 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 567-6296 +title: Master Administrative Figurehead +userPassword: Password1 +uid: PowneyF +givenName: Flor +mail: PowneyF@9c1d18cc96a9431ba0c70f9056ae3646.bitwarden.com +carLicense: 1CHBQ0 +departmentNumber: 8010 +employeeType: Employee +homePhone: +1 804 168-3509 +initials: F. P. +mobile: +1 804 122-9945 +pager: +1 804 969-4466 +roomNumber: 8255 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeniffer Babasaki +sn: Babasaki +description: This is Jeniffer Babasaki's description +facsimileTelephoneNumber: +1 804 915-9781 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 804 754-5578 +title: Associate Human Resources Grunt +userPassword: Password1 +uid: BabasakJ +givenName: Jeniffer +mail: BabasakJ@65445bf488744fbfb52fae9b404c1cd5.bitwarden.com +carLicense: 5X2XS3 +departmentNumber: 6654 +employeeType: Normal +homePhone: +1 804 457-3236 +initials: J. B. +mobile: +1 804 935-4693 +pager: +1 804 125-3765 +roomNumber: 9462 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Valera Fogelson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valera Fogelson +sn: Fogelson +description: This is Valera Fogelson's description +facsimileTelephoneNumber: +1 804 627-9807 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 869-6130 +title: Master Product Development Manager +userPassword: Password1 +uid: FogelsoV +givenName: Valera +mail: FogelsoV@7279f15d1e764fb3b1076fe52d173852.bitwarden.com +carLicense: SVYFUW +departmentNumber: 6962 +employeeType: Contract +homePhone: +1 804 221-2790 +initials: V. F. +mobile: +1 804 803-3639 +pager: +1 804 331-1990 +roomNumber: 9010 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aideen Vanaman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aideen Vanaman +sn: Vanaman +description: This is Aideen Vanaman's description +facsimileTelephoneNumber: +1 415 415-6531 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 880-1467 +title: Junior Peons Architect +userPassword: Password1 +uid: VanamanA +givenName: Aideen +mail: VanamanA@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com +carLicense: 0I59BE +departmentNumber: 3152 +employeeType: Normal +homePhone: +1 415 680-6860 +initials: A. V. +mobile: +1 415 417-8081 +pager: +1 415 395-8143 +roomNumber: 9798 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pattie McLemore,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pattie McLemore +sn: McLemore +description: This is Pattie McLemore's description +facsimileTelephoneNumber: +1 510 495-7351 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 564-5092 +title: Junior Payroll Grunt +userPassword: Password1 +uid: McLemorP +givenName: Pattie +mail: McLemorP@e616c55f2d0a4bbca2cb265dfd9eacbd.bitwarden.com +carLicense: 944Y67 +departmentNumber: 6753 +employeeType: Normal +homePhone: +1 510 905-1598 +initials: P. M. +mobile: +1 510 613-7795 +pager: +1 510 988-4657 +roomNumber: 8361 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Levy Wolfson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Levy Wolfson +sn: Wolfson +description: This is Levy Wolfson's description +facsimileTelephoneNumber: +1 206 148-2996 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 206 654-8282 +title: Master Administrative Architect +userPassword: Password1 +uid: WolfsonL +givenName: Levy +mail: WolfsonL@786e681f87b049719b525ef674ebcc90.bitwarden.com +carLicense: XOX1I1 +departmentNumber: 7438 +employeeType: Contract +homePhone: +1 206 808-4508 +initials: L. W. +mobile: +1 206 412-6973 +pager: +1 206 211-2603 +roomNumber: 9967 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhea VanTerrie +sn: VanTerrie +description: This is Rhea VanTerrie's description +facsimileTelephoneNumber: +1 206 498-8834 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 784-5732 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: VanTerrR +givenName: Rhea +mail: VanTerrR@5beefb1d47ee4fae97ea786f427a3d27.bitwarden.com +carLicense: 9TV3NP +departmentNumber: 2862 +employeeType: Employee +homePhone: +1 206 523-3732 +initials: R. V. +mobile: +1 206 930-4780 +pager: +1 206 507-2659 +roomNumber: 8837 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doloritas Matheson +sn: Matheson +description: This is Doloritas Matheson's description +facsimileTelephoneNumber: +1 213 196-3230 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 551-3326 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: MathesoD +givenName: Doloritas +mail: MathesoD@79eafeb75c844d3eaf6f5efd1b8c0977.bitwarden.com +carLicense: 7M91JE +departmentNumber: 5510 +employeeType: Contract +homePhone: +1 213 350-6060 +initials: D. M. +mobile: +1 213 497-4766 +pager: +1 213 803-4397 +roomNumber: 8681 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Patricia Pappas,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patricia Pappas +sn: Pappas +description: This is Patricia Pappas's description +facsimileTelephoneNumber: +1 206 645-8767 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 877-2375 +title: Associate Administrative Janitor +userPassword: Password1 +uid: PappasP +givenName: Patricia +mail: PappasP@7fe664076c0040b6a8babd9da4c475ee.bitwarden.com +carLicense: S66EOO +departmentNumber: 5804 +employeeType: Contract +homePhone: +1 206 223-2184 +initials: P. P. +mobile: +1 206 317-5905 +pager: +1 206 326-8834 +roomNumber: 8829 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Miguel Kozak,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miguel Kozak +sn: Kozak +description: This is Miguel Kozak's description +facsimileTelephoneNumber: +1 213 834-9358 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 734-3035 +title: Master Payroll Figurehead +userPassword: Password1 +uid: KozakM +givenName: Miguel +mail: KozakM@a2d069dbe5bd40cca53d8a120576f5a6.bitwarden.com +carLicense: QNO1E9 +departmentNumber: 4326 +employeeType: Contract +homePhone: +1 213 320-7476 +initials: M. K. +mobile: +1 213 268-9682 +pager: +1 213 299-5714 +roomNumber: 8434 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gina Toolroom,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gina Toolroom +sn: Toolroom +description: This is Gina Toolroom's description +facsimileTelephoneNumber: +1 213 996-8962 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 116-3518 +title: Chief Payroll Architect +userPassword: Password1 +uid: ToolrooG +givenName: Gina +mail: ToolrooG@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com +carLicense: SO7RSV +departmentNumber: 5619 +employeeType: Normal +homePhone: +1 213 791-5100 +initials: G. T. +mobile: +1 213 566-6443 +pager: +1 213 243-5338 +roomNumber: 9852 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fairy Tables,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fairy Tables +sn: Tables +description: This is Fairy Tables's description +facsimileTelephoneNumber: +1 818 552-1848 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 894-9733 +title: Junior Management Engineer +userPassword: Password1 +uid: TablesF +givenName: Fairy +mail: TablesF@e85fdc3041fd4381ad23f20fda20358e.bitwarden.com +carLicense: RMRDQX +departmentNumber: 3214 +employeeType: Employee +homePhone: +1 818 673-1359 +initials: F. T. +mobile: +1 818 341-3020 +pager: +1 818 115-5816 +roomNumber: 8790 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Selia Larocque,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selia Larocque +sn: Larocque +description: This is Selia Larocque's description +facsimileTelephoneNumber: +1 408 590-1988 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 570-3321 +title: Junior Management President +userPassword: Password1 +uid: LarocquS +givenName: Selia +mail: LarocquS@d6fe37840529443585725bc6aa7732d9.bitwarden.com +carLicense: A77YBK +departmentNumber: 9145 +employeeType: Normal +homePhone: +1 408 528-4683 +initials: S. L. +mobile: +1 408 320-6707 +pager: +1 408 761-7446 +roomNumber: 8304 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pankaj Moroz +sn: Moroz +description: This is Pankaj Moroz's description +facsimileTelephoneNumber: +1 818 930-1393 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 802-9613 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: MorozP +givenName: Pankaj +mail: MorozP@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com +carLicense: BGYBA6 +departmentNumber: 5527 +employeeType: Employee +homePhone: +1 818 759-6048 +initials: P. M. +mobile: +1 818 331-9328 +pager: +1 818 689-8676 +roomNumber: 9091 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jozef Altmann,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jozef Altmann +sn: Altmann +description: This is Jozef Altmann's description +facsimileTelephoneNumber: +1 213 263-9778 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 162-7855 +title: Junior Janitorial Czar +userPassword: Password1 +uid: AltmannJ +givenName: Jozef +mail: AltmannJ@5f64fd34bdee4ec1abef179411f4dce1.bitwarden.com +carLicense: UCJ13H +departmentNumber: 1804 +employeeType: Normal +homePhone: +1 213 216-6780 +initials: J. A. +mobile: +1 213 592-1127 +pager: +1 213 840-2244 +roomNumber: 8811 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Octavio Doud,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Octavio Doud +sn: Doud +description: This is Octavio Doud's description +facsimileTelephoneNumber: +1 415 835-3517 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 250-6353 +title: Junior Peons Pinhead +userPassword: Password1 +uid: DoudO +givenName: Octavio +mail: DoudO@8d16e0fff20443f99b6f78b0996f117b.bitwarden.com +carLicense: DUIRQL +departmentNumber: 6200 +employeeType: Employee +homePhone: +1 415 256-6997 +initials: O. D. +mobile: +1 415 565-3831 +pager: +1 415 105-8891 +roomNumber: 9436 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Atl Baugnon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atl Baugnon +sn: Baugnon +description: This is Atl Baugnon's description +facsimileTelephoneNumber: +1 213 295-9901 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 406-5749 +title: Chief Administrative Writer +userPassword: Password1 +uid: BaugnonA +givenName: Atl +mail: BaugnonA@fded6a4ffab747d786306ddc62c3c811.bitwarden.com +carLicense: H16M4Q +departmentNumber: 7288 +employeeType: Contract +homePhone: +1 213 384-3682 +initials: A. B. +mobile: +1 213 108-3558 +pager: +1 213 861-4079 +roomNumber: 9036 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Stacie Tabler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacie Tabler +sn: Tabler +description: This is Stacie Tabler's description +facsimileTelephoneNumber: +1 510 264-2772 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 446-9330 +title: Supreme Product Development Architect +userPassword: Password1 +uid: TablerS +givenName: Stacie +mail: TablerS@530608b4f9df417187aa615866b37d82.bitwarden.com +carLicense: JN45C9 +departmentNumber: 4424 +employeeType: Normal +homePhone: +1 510 572-1126 +initials: S. T. +mobile: +1 510 414-2258 +pager: +1 510 637-5908 +roomNumber: 9217 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chantal Feil,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chantal Feil +sn: Feil +description: This is Chantal Feil's description +facsimileTelephoneNumber: +1 818 847-5617 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 818 988-6752 +title: Supreme Payroll Mascot +userPassword: Password1 +uid: FeilC +givenName: Chantal +mail: FeilC@1949e3794fc14232b5b71dc9b3dfa654.bitwarden.com +carLicense: H9Y753 +departmentNumber: 5487 +employeeType: Employee +homePhone: +1 818 385-7611 +initials: C. F. +mobile: +1 818 213-7171 +pager: +1 818 304-2393 +roomNumber: 8634 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Waverly Caron,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Waverly Caron +sn: Caron +description: This is Waverly Caron's description +facsimileTelephoneNumber: +1 804 501-3881 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 508-6321 +title: Master Product Testing Visionary +userPassword: Password1 +uid: CaronW +givenName: Waverly +mail: CaronW@816dd137672046b4800988231b34434d.bitwarden.com +carLicense: T6I9M5 +departmentNumber: 2818 +employeeType: Contract +homePhone: +1 804 968-2835 +initials: W. C. +mobile: +1 804 529-2979 +pager: +1 804 139-1308 +roomNumber: 8591 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cindy McTurner,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cindy McTurner +sn: McTurner +description: This is Cindy McTurner's description +facsimileTelephoneNumber: +1 510 450-6834 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 556-2036 +title: Master Administrative Engineer +userPassword: Password1 +uid: McTurneC +givenName: Cindy +mail: McTurneC@0219ab31249e4e48be0f58ce8b0b2611.bitwarden.com +carLicense: YB84U5 +departmentNumber: 5242 +employeeType: Normal +homePhone: +1 510 645-4728 +initials: C. M. +mobile: +1 510 176-8777 +pager: +1 510 874-8325 +roomNumber: 9364 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ermentrude Rosson +sn: Rosson +description: This is Ermentrude Rosson's description +facsimileTelephoneNumber: +1 213 139-6009 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 771-3420 +title: Junior Administrative Consultant +userPassword: Password1 +uid: RossonE +givenName: Ermentrude +mail: RossonE@78331c826d114da29aeafea87c090905.bitwarden.com +carLicense: E3EJGU +departmentNumber: 6971 +employeeType: Employee +homePhone: +1 213 852-8950 +initials: E. R. +mobile: +1 213 975-5760 +pager: +1 213 323-1905 +roomNumber: 8744 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cherri Loper,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherri Loper +sn: Loper +description: This is Cherri Loper's description +facsimileTelephoneNumber: +1 804 393-1441 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 928-3788 +title: Master Management Developer +userPassword: Password1 +uid: LoperC +givenName: Cherri +mail: LoperC@9e9dcbe516e7453a9ec2c4f34261ca62.bitwarden.com +carLicense: WAT25V +departmentNumber: 7032 +employeeType: Normal +homePhone: +1 804 482-8424 +initials: C. L. +mobile: +1 804 715-1285 +pager: +1 804 310-1643 +roomNumber: 8421 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Joleen Fobert,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joleen Fobert +sn: Fobert +description: This is Joleen Fobert's description +facsimileTelephoneNumber: +1 206 729-6364 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 406-7561 +title: Chief Human Resources Stooge +userPassword: Password1 +uid: FobertJ +givenName: Joleen +mail: FobertJ@ce472d3fc80444b983f47fbd786a2ed7.bitwarden.com +carLicense: 3EHK7P +departmentNumber: 6452 +employeeType: Employee +homePhone: +1 206 647-5998 +initials: J. F. +mobile: +1 206 613-8542 +pager: +1 206 249-4890 +roomNumber: 9869 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crystal Ehlers +sn: Ehlers +description: This is Crystal Ehlers's description +facsimileTelephoneNumber: +1 213 696-4821 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 610-2020 +title: Supreme Janitorial Visionary +userPassword: Password1 +uid: EhlersC +givenName: Crystal +mail: EhlersC@38b2663172424c999e78408a67cf7851.bitwarden.com +carLicense: E79T25 +departmentNumber: 1990 +employeeType: Contract +homePhone: +1 213 153-3274 +initials: C. E. +mobile: +1 213 977-8960 +pager: +1 213 813-2342 +roomNumber: 8748 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marley Dadalt,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marley Dadalt +sn: Dadalt +description: This is Marley Dadalt's description +facsimileTelephoneNumber: +1 408 893-5834 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 256-5286 +title: Chief Product Development Technician +userPassword: Password1 +uid: DadaltM +givenName: Marley +mail: DadaltM@c37d437270714fb682259a0e5006b543.bitwarden.com +carLicense: MNLN4K +departmentNumber: 8885 +employeeType: Normal +homePhone: +1 408 799-7371 +initials: M. D. +mobile: +1 408 599-4562 +pager: +1 408 330-9279 +roomNumber: 9804 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jocelin Mensinkai +sn: Mensinkai +description: This is Jocelin Mensinkai's description +facsimileTelephoneNumber: +1 213 722-1669 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 567-8269 +title: Supreme Human Resources President +userPassword: Password1 +uid: MensinkJ +givenName: Jocelin +mail: MensinkJ@0148ea24c11b461eaf1bfa51c7f254fe.bitwarden.com +carLicense: B484XB +departmentNumber: 2304 +employeeType: Normal +homePhone: +1 213 418-7745 +initials: J. M. +mobile: +1 213 496-8882 +pager: +1 213 432-9417 +roomNumber: 8422 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jennee Reznick,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jennee Reznick +sn: Reznick +description: This is Jennee Reznick's description +facsimileTelephoneNumber: +1 415 491-7387 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 619-3462 +title: Junior Peons Grunt +userPassword: Password1 +uid: ReznickJ +givenName: Jennee +mail: ReznickJ@d69d50a7aa3e4ebf9808282c9a27c7b8.bitwarden.com +carLicense: ISVCJH +departmentNumber: 7371 +employeeType: Contract +homePhone: +1 415 844-8638 +initials: J. R. +mobile: +1 415 521-2321 +pager: +1 415 980-2596 +roomNumber: 9040 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gerrit Pullan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerrit Pullan +sn: Pullan +description: This is Gerrit Pullan's description +facsimileTelephoneNumber: +1 818 393-3481 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 835-7374 +title: Associate Peons Punk +userPassword: Password1 +uid: PullanG +givenName: Gerrit +mail: PullanG@f07a2704744543c99ec010f0a9ec3d24.bitwarden.com +carLicense: 325NC4 +departmentNumber: 2244 +employeeType: Employee +homePhone: +1 818 528-5543 +initials: G. P. +mobile: +1 818 690-9466 +pager: +1 818 264-3923 +roomNumber: 8176 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Duke Ness,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duke Ness +sn: Ness +description: This is Duke Ness's description +facsimileTelephoneNumber: +1 804 901-4947 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 335-9923 +title: Supreme Administrative Figurehead +userPassword: Password1 +uid: NessD +givenName: Duke +mail: NessD@4520c387caf14590a3143afb1ef72ec6.bitwarden.com +carLicense: LEJJ07 +departmentNumber: 8989 +employeeType: Contract +homePhone: +1 804 759-6671 +initials: D. N. +mobile: +1 804 440-6649 +pager: +1 804 297-7657 +roomNumber: 8062 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emilie Grigsby,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emilie Grigsby +sn: Grigsby +description: This is Emilie Grigsby's description +facsimileTelephoneNumber: +1 213 893-6815 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 882-4417 +title: Master Product Development Writer +userPassword: Password1 +uid: GrigsbyE +givenName: Emilie +mail: GrigsbyE@aec32be154e9468aaf07e631090cf3e2.bitwarden.com +carLicense: 0SK3PU +departmentNumber: 5544 +employeeType: Employee +homePhone: +1 213 633-9766 +initials: E. G. +mobile: +1 213 517-9524 +pager: +1 213 948-9587 +roomNumber: 8811 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shiroshi Thorsen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shiroshi Thorsen +sn: Thorsen +description: This is Shiroshi Thorsen's description +facsimileTelephoneNumber: +1 804 483-4621 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 605-1509 +title: Master Management Janitor +userPassword: Password1 +uid: ThorsenS +givenName: Shiroshi +mail: ThorsenS@03a382a7724f452d85abab30e3c678e3.bitwarden.com +carLicense: 8QEG3X +departmentNumber: 1387 +employeeType: Normal +homePhone: +1 804 619-6011 +initials: S. T. +mobile: +1 804 542-2158 +pager: +1 804 952-9159 +roomNumber: 9330 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Katey Dorr,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katey Dorr +sn: Dorr +description: This is Katey Dorr's description +facsimileTelephoneNumber: +1 818 503-8722 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 818 578-5292 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: DorrK +givenName: Katey +mail: DorrK@7e22fa8dfa8e4caa8ba807b20db9639f.bitwarden.com +carLicense: OB02OX +departmentNumber: 4487 +employeeType: Contract +homePhone: +1 818 265-5555 +initials: K. D. +mobile: +1 818 655-2499 +pager: +1 818 956-6511 +roomNumber: 9687 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Manuela Whitsell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manuela Whitsell +sn: Whitsell +description: This is Manuela Whitsell's description +facsimileTelephoneNumber: +1 804 451-9871 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 791-2778 +title: Chief Payroll Architect +userPassword: Password1 +uid: WhitselM +givenName: Manuela +mail: WhitselM@d402d45df6ee44758d534e95cb5617f0.bitwarden.com +carLicense: E2TV0L +departmentNumber: 6022 +employeeType: Normal +homePhone: +1 804 181-7771 +initials: M. W. +mobile: +1 804 228-6123 +pager: +1 804 447-7354 +roomNumber: 9538 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kedah Kupferschmidt +sn: Kupferschmidt +description: This is Kedah Kupferschmidt's description +facsimileTelephoneNumber: +1 415 556-7239 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 415 656-5154 +title: Associate Payroll Madonna +userPassword: Password1 +uid: KupfersK +givenName: Kedah +mail: KupfersK@0b91b187654d42f6ab62dc14d39a1abd.bitwarden.com +carLicense: 5MPDM0 +departmentNumber: 3136 +employeeType: Contract +homePhone: +1 415 801-5213 +initials: K. K. +mobile: +1 415 685-4246 +pager: +1 415 427-4834 +roomNumber: 8594 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alvina Stokoe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvina Stokoe +sn: Stokoe +description: This is Alvina Stokoe's description +facsimileTelephoneNumber: +1 818 755-6987 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 818 959-3007 +title: Supreme Product Development Fellow +userPassword: Password1 +uid: StokoeA +givenName: Alvina +mail: StokoeA@ad964ba902a44170917694925f5549f0.bitwarden.com +carLicense: LYY60K +departmentNumber: 8585 +employeeType: Normal +homePhone: +1 818 538-7482 +initials: A. S. +mobile: +1 818 352-1343 +pager: +1 818 398-3205 +roomNumber: 9096 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Theo TestNTMVAA,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theo TestNTMVAA +sn: TestNTMVAA +description: This is Theo TestNTMVAA's description +facsimileTelephoneNumber: +1 206 862-4139 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 697-9794 +title: Junior Management Dictator +userPassword: Password1 +uid: TestNTMT +givenName: Theo +mail: TestNTMT@35bee35564684f309794106202d3e01a.bitwarden.com +carLicense: 22OG2Q +departmentNumber: 1826 +employeeType: Normal +homePhone: +1 206 704-2769 +initials: T. T. +mobile: +1 206 904-8921 +pager: +1 206 680-3466 +roomNumber: 9645 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maidsir Spaugh,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maidsir Spaugh +sn: Spaugh +description: This is Maidsir Spaugh's description +facsimileTelephoneNumber: +1 415 630-8999 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 228-9530 +title: Master Management Figurehead +userPassword: Password1 +uid: SpaughM +givenName: Maidsir +mail: SpaughM@95c484b7ceeb496da14312d962454e22.bitwarden.com +carLicense: NVAA6G +departmentNumber: 8838 +employeeType: Employee +homePhone: +1 415 516-9249 +initials: M. S. +mobile: +1 415 247-6626 +pager: +1 415 831-1219 +roomNumber: 8101 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoshimitsu Whetzel +sn: Whetzel +description: This is Yoshimitsu Whetzel's description +facsimileTelephoneNumber: +1 415 422-4434 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 474-1685 +title: Master Human Resources Czar +userPassword: Password1 +uid: WhetzelY +givenName: Yoshimitsu +mail: WhetzelY@7ac3538c32ef4218882c130acb03a83a.bitwarden.com +carLicense: 6OFD8X +departmentNumber: 7946 +employeeType: Normal +homePhone: +1 415 398-5303 +initials: Y. W. +mobile: +1 415 358-4686 +pager: +1 415 292-5923 +roomNumber: 9594 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yuksel Zaretsky +sn: Zaretsky +description: This is Yuksel Zaretsky's description +facsimileTelephoneNumber: +1 206 574-5723 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 206 611-7440 +title: Master Administrative Stooge +userPassword: Password1 +uid: ZaretskY +givenName: Yuksel +mail: ZaretskY@35ae2ba8abf646adb2f5a5352a90490c.bitwarden.com +carLicense: LIW33H +departmentNumber: 8365 +employeeType: Contract +homePhone: +1 206 856-4713 +initials: Y. Z. +mobile: +1 206 885-7788 +pager: +1 206 413-2928 +roomNumber: 9057 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vilas Jarvah,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vilas Jarvah +sn: Jarvah +description: This is Vilas Jarvah's description +facsimileTelephoneNumber: +1 804 308-4191 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 636-8970 +title: Junior Administrative Janitor +userPassword: Password1 +uid: JarvahV +givenName: Vilas +mail: JarvahV@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com +carLicense: C5K6LS +departmentNumber: 1598 +employeeType: Contract +homePhone: +1 804 896-4768 +initials: V. J. +mobile: +1 804 700-2167 +pager: +1 804 961-3008 +roomNumber: 8083 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cilka Chadha,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cilka Chadha +sn: Chadha +description: This is Cilka Chadha's description +facsimileTelephoneNumber: +1 213 820-6379 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 213 761-7220 +title: Chief Product Development President +userPassword: Password1 +uid: ChadhaC +givenName: Cilka +mail: ChadhaC@f4030ab817ff48ca98e8cd4e669c479e.bitwarden.com +carLicense: F3ND6C +departmentNumber: 4995 +employeeType: Normal +homePhone: +1 213 220-6266 +initials: C. C. +mobile: +1 213 293-5937 +pager: +1 213 869-8094 +roomNumber: 9050 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ludovico Kurth +sn: Kurth +description: This is Ludovico Kurth's description +facsimileTelephoneNumber: +1 213 337-8143 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 754-7837 +title: Associate Product Testing Evangelist +userPassword: Password1 +uid: KurthL +givenName: Ludovico +mail: KurthL@5df9c27aac564967ba9cd99480636500.bitwarden.com +carLicense: SWTO0N +departmentNumber: 6129 +employeeType: Normal +homePhone: +1 213 560-7976 +initials: L. K. +mobile: +1 213 581-9194 +pager: +1 213 532-1285 +roomNumber: 9758 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Merl Heffner,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merl Heffner +sn: Heffner +description: This is Merl Heffner's description +facsimileTelephoneNumber: +1 213 599-1752 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 213 884-3752 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: HeffnerM +givenName: Merl +mail: HeffnerM@8717d7d6686445eba152afa0241a3ea0.bitwarden.com +carLicense: DR6QAC +departmentNumber: 1488 +employeeType: Contract +homePhone: +1 213 107-9042 +initials: M. H. +mobile: +1 213 541-3612 +pager: +1 213 803-3205 +roomNumber: 9540 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shelly Adler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelly Adler +sn: Adler +description: This is Shelly Adler's description +facsimileTelephoneNumber: +1 818 333-4386 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 420-1594 +title: Associate Management Fellow +userPassword: Password1 +uid: AdlerS +givenName: Shelly +mail: AdlerS@55c6c435877940599b41e6e5d6f01b1d.bitwarden.com +carLicense: WUXAM7 +departmentNumber: 6423 +employeeType: Employee +homePhone: +1 818 564-7676 +initials: S. A. +mobile: +1 818 443-2987 +pager: +1 818 326-2809 +roomNumber: 8506 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marchelle Howie,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marchelle Howie +sn: Howie +description: This is Marchelle Howie's description +facsimileTelephoneNumber: +1 213 181-9357 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 291-4664 +title: Associate Administrative Stooge +userPassword: Password1 +uid: HowieM +givenName: Marchelle +mail: HowieM@8d06f5c0b94f46838a9f2ef1a0adee08.bitwarden.com +carLicense: SVLRMD +departmentNumber: 6291 +employeeType: Normal +homePhone: +1 213 549-4898 +initials: M. H. +mobile: +1 213 216-4944 +pager: +1 213 568-4209 +roomNumber: 8280 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chick Doucet,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chick Doucet +sn: Doucet +description: This is Chick Doucet's description +facsimileTelephoneNumber: +1 510 937-4737 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 698-3732 +title: Supreme Management Manager +userPassword: Password1 +uid: DoucetC +givenName: Chick +mail: DoucetC@7475aa279ff64b9683e6188f03eefc3d.bitwarden.com +carLicense: IPLV7V +departmentNumber: 7127 +employeeType: Contract +homePhone: +1 510 559-2671 +initials: C. D. +mobile: +1 510 737-2215 +pager: +1 510 801-7963 +roomNumber: 8593 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vittoria Astley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vittoria Astley +sn: Astley +description: This is Vittoria Astley's description +facsimileTelephoneNumber: +1 818 702-9402 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 851-5421 +title: Junior Human Resources Czar +userPassword: Password1 +uid: AstleyV +givenName: Vittoria +mail: AstleyV@f318f75c01ee43e0921a0e961414763d.bitwarden.com +carLicense: 6ULI00 +departmentNumber: 4838 +employeeType: Employee +homePhone: +1 818 813-2778 +initials: V. A. +mobile: +1 818 995-1815 +pager: +1 818 339-6151 +roomNumber: 8978 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hector Easaw,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hector Easaw +sn: Easaw +description: This is Hector Easaw's description +facsimileTelephoneNumber: +1 510 269-5958 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 414-6758 +title: Junior Payroll Engineer +userPassword: Password1 +uid: EasawH +givenName: Hector +mail: EasawH@d3e5ff3d0e59404589f0f6d57f8f6108.bitwarden.com +carLicense: IYCXOD +departmentNumber: 1182 +employeeType: Employee +homePhone: +1 510 297-5823 +initials: H. E. +mobile: +1 510 197-7366 +pager: +1 510 735-4087 +roomNumber: 9893 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Matilda Gomez,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matilda Gomez +sn: Gomez +description: This is Matilda Gomez's description +facsimileTelephoneNumber: +1 415 691-7351 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 415 389-5770 +title: Master Human Resources Stooge +userPassword: Password1 +uid: GomezM +givenName: Matilda +mail: GomezM@ccf238ac72764498a2a4e871140940fd.bitwarden.com +carLicense: 4SXYAI +departmentNumber: 8094 +employeeType: Contract +homePhone: +1 415 930-1157 +initials: M. G. +mobile: +1 415 600-9353 +pager: +1 415 219-4814 +roomNumber: 9843 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Crista McMasters,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crista McMasters +sn: McMasters +description: This is Crista McMasters's description +facsimileTelephoneNumber: +1 206 940-5348 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 224-6771 +title: Chief Management Punk +userPassword: Password1 +uid: McMasteC +givenName: Crista +mail: McMasteC@444794b5113d44779ace93e2616392cf.bitwarden.com +carLicense: RYCNM0 +departmentNumber: 9235 +employeeType: Employee +homePhone: +1 206 981-1389 +initials: C. M. +mobile: +1 206 570-6901 +pager: +1 206 866-8437 +roomNumber: 9903 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laury Abbatantuono +sn: Abbatantuono +description: This is Laury Abbatantuono's description +facsimileTelephoneNumber: +1 415 465-6957 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 837-5389 +title: Master Payroll Evangelist +userPassword: Password1 +uid: AbbatanL +givenName: Laury +mail: AbbatanL@eb362d3928c448a4b72d63b85283da63.bitwarden.com +carLicense: DJSEQ7 +departmentNumber: 8576 +employeeType: Normal +homePhone: +1 415 944-8232 +initials: L. A. +mobile: +1 415 985-8524 +pager: +1 415 231-6512 +roomNumber: 8350 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amnish Haydock,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amnish Haydock +sn: Haydock +description: This is Amnish Haydock's description +facsimileTelephoneNumber: +1 804 134-3655 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 998-6792 +title: Junior Management Fellow +userPassword: Password1 +uid: HaydockA +givenName: Amnish +mail: HaydockA@e326aad292d2417588aee72e8914fb32.bitwarden.com +carLicense: E8ED8Y +departmentNumber: 7673 +employeeType: Contract +homePhone: +1 804 519-5803 +initials: A. H. +mobile: +1 804 230-4345 +pager: +1 804 499-1771 +roomNumber: 8513 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mignonne Shull,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mignonne Shull +sn: Shull +description: This is Mignonne Shull's description +facsimileTelephoneNumber: +1 510 689-9177 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 799-1577 +title: Master Product Development President +userPassword: Password1 +uid: ShullM +givenName: Mignonne +mail: ShullM@5eddd4d764454fa48632e5c1f8824445.bitwarden.com +carLicense: C1Q32N +departmentNumber: 5044 +employeeType: Normal +homePhone: +1 510 849-3259 +initials: M. S. +mobile: +1 510 376-5844 +pager: +1 510 705-7503 +roomNumber: 8002 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lizzy Monson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lizzy Monson +sn: Monson +description: This is Lizzy Monson's description +facsimileTelephoneNumber: +1 415 256-7771 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 437-7516 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: MonsonL +givenName: Lizzy +mail: MonsonL@5dfbfc6402474d4a84deb330c0f4315f.bitwarden.com +carLicense: V9NYD6 +departmentNumber: 2679 +employeeType: Employee +homePhone: +1 415 532-1802 +initials: L. M. +mobile: +1 415 337-1677 +pager: +1 415 363-1349 +roomNumber: 8260 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Riyad Stropp,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Riyad Stropp +sn: Stropp +description: This is Riyad Stropp's description +facsimileTelephoneNumber: +1 415 279-6171 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 485-3020 +title: Chief Peons Assistant +userPassword: Password1 +uid: StroppR +givenName: Riyad +mail: StroppR@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com +carLicense: Y5DBU7 +departmentNumber: 7315 +employeeType: Contract +homePhone: +1 415 540-7921 +initials: R. S. +mobile: +1 415 608-4736 +pager: +1 415 663-5535 +roomNumber: 9561 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jennee Tipping,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jennee Tipping +sn: Tipping +description: This is Jennee Tipping's description +facsimileTelephoneNumber: +1 415 499-1555 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 207-3596 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: TippingJ +givenName: Jennee +mail: TippingJ@7a8159a4b38d481598c0559b90aec74d.bitwarden.com +carLicense: L6GDR5 +departmentNumber: 6028 +employeeType: Contract +homePhone: +1 415 831-6690 +initials: J. T. +mobile: +1 415 279-3234 +pager: +1 415 172-3558 +roomNumber: 9495 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lorianne Devera,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorianne Devera +sn: Devera +description: This is Lorianne Devera's description +facsimileTelephoneNumber: +1 804 258-2280 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 749-7013 +title: Chief Peons Artist +userPassword: Password1 +uid: DeveraL +givenName: Lorianne +mail: DeveraL@086cd0723f0c4d19b12b0a6c52b08ed8.bitwarden.com +carLicense: YUMNNU +departmentNumber: 1164 +employeeType: Contract +homePhone: +1 804 761-7656 +initials: L. D. +mobile: +1 804 187-4733 +pager: +1 804 619-2784 +roomNumber: 9378 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kana VanSickle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kana VanSickle +sn: VanSickle +description: This is Kana VanSickle's description +facsimileTelephoneNumber: +1 415 754-5450 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 826-2745 +title: Master Human Resources Artist +userPassword: Password1 +uid: VanSickK +givenName: Kana +mail: VanSickK@fc1572b2278f4aeabefffc267baf4272.bitwarden.com +carLicense: 2XQX77 +departmentNumber: 9369 +employeeType: Employee +homePhone: +1 415 785-2404 +initials: K. V. +mobile: +1 415 546-3001 +pager: +1 415 214-2630 +roomNumber: 8264 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bina Scales,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bina Scales +sn: Scales +description: This is Bina Scales's description +facsimileTelephoneNumber: +1 213 135-8025 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 213 239-3773 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: ScalesB +givenName: Bina +mail: ScalesB@166fd602ceb04a58b9e0bfc4c39bf95b.bitwarden.com +carLicense: HITU81 +departmentNumber: 8217 +employeeType: Normal +homePhone: +1 213 533-5779 +initials: B. S. +mobile: +1 213 815-1610 +pager: +1 213 348-8180 +roomNumber: 9937 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ariela Stachowiak,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ariela Stachowiak +sn: Stachowiak +description: This is Ariela Stachowiak's description +facsimileTelephoneNumber: +1 818 154-8551 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 988-7060 +title: Junior Peons Admin +userPassword: Password1 +uid: StachowA +givenName: Ariela +mail: StachowA@90463e36c9634ed7af09a58415debfe0.bitwarden.com +carLicense: K0XL5D +departmentNumber: 6588 +employeeType: Normal +homePhone: +1 818 206-5406 +initials: A. S. +mobile: +1 818 621-3665 +pager: +1 818 801-9144 +roomNumber: 8360 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Leontine Kresl,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leontine Kresl +sn: Kresl +description: This is Leontine Kresl's description +facsimileTelephoneNumber: +1 206 847-5741 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 860-5504 +title: Supreme Human Resources Assistant +userPassword: Password1 +uid: KreslL +givenName: Leontine +mail: KreslL@123877216cf647dc9c161017fd0bf922.bitwarden.com +carLicense: OGBJ48 +departmentNumber: 7457 +employeeType: Employee +homePhone: +1 206 603-6322 +initials: L. K. +mobile: +1 206 738-9799 +pager: +1 206 362-2331 +roomNumber: 8359 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tomasine Borza,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tomasine Borza +sn: Borza +description: This is Tomasine Borza's description +facsimileTelephoneNumber: +1 415 108-2930 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 679-5229 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: BorzaT +givenName: Tomasine +mail: BorzaT@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com +carLicense: 8ROOLS +departmentNumber: 3103 +employeeType: Normal +homePhone: +1 415 450-5210 +initials: T. B. +mobile: +1 415 915-1388 +pager: +1 415 674-3693 +roomNumber: 8127 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Emory Ramnarine,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emory Ramnarine +sn: Ramnarine +description: This is Emory Ramnarine's description +facsimileTelephoneNumber: +1 213 240-7906 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 506-7784 +title: Supreme Product Development Writer +userPassword: Password1 +uid: RamnariE +givenName: Emory +mail: RamnariE@391d8dba5fa94d8e974df50be3a6709e.bitwarden.com +carLicense: 82B0BN +departmentNumber: 2909 +employeeType: Employee +homePhone: +1 213 904-8202 +initials: E. R. +mobile: +1 213 487-4482 +pager: +1 213 693-7831 +roomNumber: 8806 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Corella Loperena,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corella Loperena +sn: Loperena +description: This is Corella Loperena's description +facsimileTelephoneNumber: +1 510 162-9166 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 330-5809 +title: Master Management Visionary +userPassword: Password1 +uid: LoperenC +givenName: Corella +mail: LoperenC@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com +carLicense: CJ3CSD +departmentNumber: 3975 +employeeType: Normal +homePhone: +1 510 808-8974 +initials: C. L. +mobile: +1 510 134-4598 +pager: +1 510 159-3247 +roomNumber: 9266 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mirna Kashef,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirna Kashef +sn: Kashef +description: This is Mirna Kashef's description +facsimileTelephoneNumber: +1 206 452-3758 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 241-7438 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: KashefM +givenName: Mirna +mail: KashefM@072112936d7540f191ae5e1941e3f66c.bitwarden.com +carLicense: F5LCV3 +departmentNumber: 6900 +employeeType: Normal +homePhone: +1 206 496-2415 +initials: M. K. +mobile: +1 206 386-9955 +pager: +1 206 231-4699 +roomNumber: 9630 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Roseann Coyne,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roseann Coyne +sn: Coyne +description: This is Roseann Coyne's description +facsimileTelephoneNumber: +1 213 837-8164 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 997-8805 +title: Supreme Product Development Visionary +userPassword: Password1 +uid: CoyneR +givenName: Roseann +mail: CoyneR@3dd9413931df4d5d906784831a201dd2.bitwarden.com +carLicense: MV8XTO +departmentNumber: 6378 +employeeType: Employee +homePhone: +1 213 269-1584 +initials: R. C. +mobile: +1 213 774-8768 +pager: +1 213 881-1756 +roomNumber: 9842 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaela Amarsi +sn: Amarsi +description: This is Kaela Amarsi's description +facsimileTelephoneNumber: +1 213 154-4117 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 116-1539 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: AmarsiK +givenName: Kaela +mail: AmarsiK@4b0a9ffaaeec4cc3ae5daf192d65fc6b.bitwarden.com +carLicense: D2Q9VT +departmentNumber: 8096 +employeeType: Normal +homePhone: +1 213 315-6574 +initials: K. A. +mobile: +1 213 717-9933 +pager: +1 213 894-2798 +roomNumber: 8673 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Agenia Zampino,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agenia Zampino +sn: Zampino +description: This is Agenia Zampino's description +facsimileTelephoneNumber: +1 213 881-1712 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 581-6636 +title: Junior Administrative Fellow +userPassword: Password1 +uid: ZampinoA +givenName: Agenia +mail: ZampinoA@52895e87978c4f7a853b254ac3b4e18f.bitwarden.com +carLicense: PJE7B4 +departmentNumber: 3154 +employeeType: Employee +homePhone: +1 213 373-1976 +initials: A. Z. +mobile: +1 213 780-3758 +pager: +1 213 312-3665 +roomNumber: 9374 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vic Lenox,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vic Lenox +sn: Lenox +description: This is Vic Lenox's description +facsimileTelephoneNumber: +1 206 773-9911 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 685-2288 +title: Master Product Testing Technician +userPassword: Password1 +uid: LenoxV +givenName: Vic +mail: LenoxV@9c640b9ada7e43fd815986e9b791454d.bitwarden.com +carLicense: 7V8K67 +departmentNumber: 6033 +employeeType: Contract +homePhone: +1 206 488-3914 +initials: V. L. +mobile: +1 206 709-6450 +pager: +1 206 793-1410 +roomNumber: 9406 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sissie Rao,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sissie Rao +sn: Rao +description: This is Sissie Rao's description +facsimileTelephoneNumber: +1 206 686-7156 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 153-2713 +title: Associate Administrative Mascot +userPassword: Password1 +uid: RaoS +givenName: Sissie +mail: RaoS@ad2f81222ff04e688459bdc291415016.bitwarden.com +carLicense: IB0SKX +departmentNumber: 8821 +employeeType: Contract +homePhone: +1 206 106-2710 +initials: S. R. +mobile: +1 206 510-6564 +pager: +1 206 828-7901 +roomNumber: 8625 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chi Shreve,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chi Shreve +sn: Shreve +description: This is Chi Shreve's description +facsimileTelephoneNumber: +1 510 808-2607 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 361-5011 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: ShreveC +givenName: Chi +mail: ShreveC@b2b61d7107f642f5a98b64baa9303c9a.bitwarden.com +carLicense: IJFOXL +departmentNumber: 7219 +employeeType: Normal +homePhone: +1 510 140-3617 +initials: C. S. +mobile: +1 510 818-3978 +pager: +1 510 470-5664 +roomNumber: 9955 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gloria DeGrandis,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gloria DeGrandis +sn: DeGrandis +description: This is Gloria DeGrandis's description +facsimileTelephoneNumber: +1 818 198-1706 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 360-7186 +title: Supreme Management Pinhead +userPassword: Password1 +uid: DeGrandG +givenName: Gloria +mail: DeGrandG@8a604e644ae34afd98bb9ace2d3d942b.bitwarden.com +carLicense: SK9DBR +departmentNumber: 4931 +employeeType: Employee +homePhone: +1 818 463-8968 +initials: G. D. +mobile: +1 818 224-8833 +pager: +1 818 260-2099 +roomNumber: 8119 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ryann Teacher,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ryann Teacher +sn: Teacher +description: This is Ryann Teacher's description +facsimileTelephoneNumber: +1 408 704-2878 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 754-4002 +title: Junior Management Technician +userPassword: Password1 +uid: TeacherR +givenName: Ryann +mail: TeacherR@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com +carLicense: YUFS46 +departmentNumber: 3293 +employeeType: Normal +homePhone: +1 408 171-4725 +initials: R. T. +mobile: +1 408 380-4541 +pager: +1 408 360-2744 +roomNumber: 8146 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanjeev Chirachanchai +sn: Chirachanchai +description: This is Sanjeev Chirachanchai's description +facsimileTelephoneNumber: +1 415 948-2050 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 815-7719 +title: Supreme Product Development Pinhead +userPassword: Password1 +uid: ChirachS +givenName: Sanjeev +mail: ChirachS@c50e1d17976a4acebd18f01bbfd46623.bitwarden.com +carLicense: IEJW1N +departmentNumber: 4566 +employeeType: Employee +homePhone: +1 415 922-6058 +initials: S. C. +mobile: +1 415 562-3885 +pager: +1 415 801-4475 +roomNumber: 8848 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Naveen Kollman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naveen Kollman +sn: Kollman +description: This is Naveen Kollman's description +facsimileTelephoneNumber: +1 408 497-7411 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 821-2016 +title: Associate Peons President +userPassword: Password1 +uid: KollmanN +givenName: Naveen +mail: KollmanN@dc25e6259a754e12b71b6ceb921f6e43.bitwarden.com +carLicense: MNTC1G +departmentNumber: 4143 +employeeType: Normal +homePhone: +1 408 901-4559 +initials: N. K. +mobile: +1 408 809-5210 +pager: +1 408 844-3016 +roomNumber: 8332 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rozina Schipper,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozina Schipper +sn: Schipper +description: This is Rozina Schipper's description +facsimileTelephoneNumber: +1 818 384-9445 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 600-9898 +title: Master Management Writer +userPassword: Password1 +uid: SchippeR +givenName: Rozina +mail: SchippeR@388f37e043f44f87a961652591a7a940.bitwarden.com +carLicense: SR91NS +departmentNumber: 5326 +employeeType: Contract +homePhone: +1 818 383-4472 +initials: R. S. +mobile: +1 818 296-9938 +pager: +1 818 362-8899 +roomNumber: 9760 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Partha Kelsay,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Partha Kelsay +sn: Kelsay +description: This is Partha Kelsay's description +facsimileTelephoneNumber: +1 510 956-1803 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 503-7829 +title: Chief Peons Evangelist +userPassword: Password1 +uid: KelsayP +givenName: Partha +mail: KelsayP@fac421ca650e46139878bbd5f7498e19.bitwarden.com +carLicense: PT2BU3 +departmentNumber: 4161 +employeeType: Normal +homePhone: +1 510 983-4878 +initials: P. K. +mobile: +1 510 752-9471 +pager: +1 510 518-9996 +roomNumber: 9995 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mccauley HowePatterson +sn: HowePatterson +description: This is Mccauley HowePatterson's description +facsimileTelephoneNumber: +1 206 523-3136 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 625-2657 +title: Junior Administrative Visionary +userPassword: Password1 +uid: HowePatM +givenName: Mccauley +mail: HowePatM@cce34a85aeda4eaa8425019b868727c6.bitwarden.com +carLicense: 0BJ604 +departmentNumber: 9692 +employeeType: Normal +homePhone: +1 206 621-2054 +initials: M. H. +mobile: +1 206 804-6574 +pager: +1 206 104-5317 +roomNumber: 8882 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vinh Dhar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vinh Dhar +sn: Dhar +description: This is Vinh Dhar's description +facsimileTelephoneNumber: +1 804 576-5290 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 321-8104 +title: Junior Administrative Manager +userPassword: Password1 +uid: DharV +givenName: Vinh +mail: DharV@6f03f1adf7c149889e4e46274861a90d.bitwarden.com +carLicense: 564876 +departmentNumber: 7196 +employeeType: Employee +homePhone: +1 804 647-3361 +initials: V. D. +mobile: +1 804 375-4496 +pager: +1 804 111-9334 +roomNumber: 9283 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilde PlaterZyberk +sn: PlaterZyberk +description: This is Hilde PlaterZyberk's description +facsimileTelephoneNumber: +1 206 635-2648 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 364-7388 +title: Supreme Peons Consultant +userPassword: Password1 +uid: PlaterZH +givenName: Hilde +mail: PlaterZH@05c9124444ac41d598fb0334940751db.bitwarden.com +carLicense: 11H3Y3 +departmentNumber: 3572 +employeeType: Normal +homePhone: +1 206 490-8670 +initials: H. P. +mobile: +1 206 730-1222 +pager: +1 206 238-8253 +roomNumber: 9848 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cart Cardozo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cart Cardozo +sn: Cardozo +description: This is Cart Cardozo's description +facsimileTelephoneNumber: +1 415 928-6261 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 440-2020 +title: Master Management Consultant +userPassword: Password1 +uid: CardozoC +givenName: Cart +mail: CardozoC@e5c90ecebea1435c996209dde46c0296.bitwarden.com +carLicense: 335JNN +departmentNumber: 3349 +employeeType: Employee +homePhone: +1 415 495-5406 +initials: C. C. +mobile: +1 415 568-1725 +pager: +1 415 280-3307 +roomNumber: 9447 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Briana Ambler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Briana Ambler +sn: Ambler +description: This is Briana Ambler's description +facsimileTelephoneNumber: +1 408 809-2606 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 803-3732 +title: Supreme Product Development Janitor +userPassword: Password1 +uid: AmblerB +givenName: Briana +mail: AmblerB@a94a4e703f55451099134b3aaeedccbb.bitwarden.com +carLicense: WGL12P +departmentNumber: 3481 +employeeType: Contract +homePhone: +1 408 319-3538 +initials: B. A. +mobile: +1 408 100-9327 +pager: +1 408 180-8937 +roomNumber: 8544 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kemp Akai,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kemp Akai +sn: Akai +description: This is Kemp Akai's description +facsimileTelephoneNumber: +1 818 645-6915 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 993-8370 +title: Associate Management Technician +userPassword: Password1 +uid: AkaiK +givenName: Kemp +mail: AkaiK@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com +carLicense: V5IM3R +departmentNumber: 9154 +employeeType: Employee +homePhone: +1 818 324-9451 +initials: K. A. +mobile: +1 818 295-4816 +pager: +1 818 664-3094 +roomNumber: 9549 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anjela Gribbons,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anjela Gribbons +sn: Gribbons +description: This is Anjela Gribbons's description +facsimileTelephoneNumber: +1 415 380-3052 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 186-5518 +title: Chief Product Development Director +userPassword: Password1 +uid: GribbonA +givenName: Anjela +mail: GribbonA@039e3a194ecb4b229b6171f883dbe2ca.bitwarden.com +carLicense: I4UW4H +departmentNumber: 2677 +employeeType: Contract +homePhone: +1 415 966-3029 +initials: A. G. +mobile: +1 415 859-3881 +pager: +1 415 454-5646 +roomNumber: 9563 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florri Pankhurst +sn: Pankhurst +description: This is Florri Pankhurst's description +facsimileTelephoneNumber: +1 804 327-9250 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 237-6325 +title: Junior Product Testing President +userPassword: Password1 +uid: PankhurF +givenName: Florri +mail: PankhurF@f97d3d1fbfb54eb9846b54af1e96be37.bitwarden.com +carLicense: 98OD8H +departmentNumber: 4652 +employeeType: Normal +homePhone: +1 804 853-3608 +initials: F. P. +mobile: +1 804 277-4041 +pager: +1 804 237-7001 +roomNumber: 8515 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hudai Baulch,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hudai Baulch +sn: Baulch +description: This is Hudai Baulch's description +facsimileTelephoneNumber: +1 213 394-8921 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 426-2456 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: BaulchH +givenName: Hudai +mail: BaulchH@ebbd3bd6f4c84c3b86ade3725f39d1ef.bitwarden.com +carLicense: 3CPJTK +departmentNumber: 9054 +employeeType: Employee +homePhone: +1 213 628-4254 +initials: H. B. +mobile: +1 213 204-3888 +pager: +1 213 524-7468 +roomNumber: 9340 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryKay Reichinger +sn: Reichinger +description: This is MaryKay Reichinger's description +facsimileTelephoneNumber: +1 510 130-2235 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 963-8281 +title: Master Human Resources Engineer +userPassword: Password1 +uid: ReichinM +givenName: MaryKay +mail: ReichinM@ae95a9e30a2b4495b405c300be234d38.bitwarden.com +carLicense: WC3UJ9 +departmentNumber: 8428 +employeeType: Contract +homePhone: +1 510 976-8290 +initials: M. R. +mobile: +1 510 744-1835 +pager: +1 510 209-3120 +roomNumber: 9825 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kee Gilchrist,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kee Gilchrist +sn: Gilchrist +description: This is Kee Gilchrist's description +facsimileTelephoneNumber: +1 510 137-9785 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 179-8128 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: GilchriK +givenName: Kee +mail: GilchriK@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com +carLicense: K37BGI +departmentNumber: 3988 +employeeType: Normal +homePhone: +1 510 114-3689 +initials: K. G. +mobile: +1 510 293-7716 +pager: +1 510 562-4167 +roomNumber: 8437 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphna Pewitt +sn: Pewitt +description: This is Daphna Pewitt's description +facsimileTelephoneNumber: +1 213 201-9758 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 670-1980 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: PewittD +givenName: Daphna +mail: PewittD@3569446edc67492da6f3555168f86d08.bitwarden.com +carLicense: 631PHN +departmentNumber: 2177 +employeeType: Employee +homePhone: +1 213 901-8916 +initials: D. P. +mobile: +1 213 706-2226 +pager: +1 213 270-4919 +roomNumber: 9332 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ellis Brunner,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellis Brunner +sn: Brunner +description: This is Ellis Brunner's description +facsimileTelephoneNumber: +1 408 316-8469 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 124-4551 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: BrunnerE +givenName: Ellis +mail: BrunnerE@a649078d65524cbb8ff458be0026774e.bitwarden.com +carLicense: N2KMEL +departmentNumber: 9621 +employeeType: Normal +homePhone: +1 408 406-8992 +initials: E. B. +mobile: +1 408 950-2363 +pager: +1 408 906-9234 +roomNumber: 9750 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Violet Luwemba,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Violet Luwemba +sn: Luwemba +description: This is Violet Luwemba's description +facsimileTelephoneNumber: +1 206 273-9595 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 591-7159 +title: Associate Payroll Writer +userPassword: Password1 +uid: LuwembaV +givenName: Violet +mail: LuwembaV@ecbe7413d7a74dce8478d8a77a5f394f.bitwarden.com +carLicense: 2IUHLW +departmentNumber: 4504 +employeeType: Employee +homePhone: +1 206 263-6169 +initials: V. L. +mobile: +1 206 944-7447 +pager: +1 206 259-8647 +roomNumber: 8331 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kessia McVicker,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kessia McVicker +sn: McVicker +description: This is Kessia McVicker's description +facsimileTelephoneNumber: +1 510 627-2490 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 411-5024 +title: Junior Management Grunt +userPassword: Password1 +uid: McVickeK +givenName: Kessia +mail: McVickeK@9655cd36a01c4aa6b915b07f385eebda.bitwarden.com +carLicense: NBI8H1 +departmentNumber: 6948 +employeeType: Contract +homePhone: +1 510 393-6781 +initials: K. M. +mobile: +1 510 741-5642 +pager: +1 510 423-5885 +roomNumber: 9335 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Buffy Treen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Buffy Treen +sn: Treen +description: This is Buffy Treen's description +facsimileTelephoneNumber: +1 818 654-3676 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 818 818-8220 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: TreenB +givenName: Buffy +mail: TreenB@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com +carLicense: F1CCEC +departmentNumber: 2547 +employeeType: Employee +homePhone: +1 818 483-6819 +initials: B. T. +mobile: +1 818 279-8675 +pager: +1 818 337-7283 +roomNumber: 9866 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Huub Palfreyman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huub Palfreyman +sn: Palfreyman +description: This is Huub Palfreyman's description +facsimileTelephoneNumber: +1 213 549-7393 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 786-1444 +title: Junior Administrative Vice President +userPassword: Password1 +uid: PalfreyH +givenName: Huub +mail: PalfreyH@39279f1fe7e44c90a8b6ba9604608e10.bitwarden.com +carLicense: U47R55 +departmentNumber: 7637 +employeeType: Normal +homePhone: +1 213 901-3952 +initials: H. P. +mobile: +1 213 965-3534 +pager: +1 213 386-5845 +roomNumber: 8647 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Walt Pringle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walt Pringle +sn: Pringle +description: This is Walt Pringle's description +facsimileTelephoneNumber: +1 818 976-4394 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 760-6694 +title: Junior Human Resources Janitor +userPassword: Password1 +uid: PringleW +givenName: Walt +mail: PringleW@1165c0fd18ed4ab3a49c1b798696e277.bitwarden.com +carLicense: PXPC4R +departmentNumber: 2472 +employeeType: Contract +homePhone: +1 818 603-4508 +initials: W. P. +mobile: +1 818 639-8097 +pager: +1 818 933-2411 +roomNumber: 9076 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wladyslaw Angerer +sn: Angerer +description: This is Wladyslaw Angerer's description +facsimileTelephoneNumber: +1 415 265-7824 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 415 250-7249 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: AngererW +givenName: Wladyslaw +mail: AngererW@6de130a8139a479abd748cccf12fccd5.bitwarden.com +carLicense: 1IO3D4 +departmentNumber: 5681 +employeeType: Contract +homePhone: +1 415 349-6277 +initials: W. A. +mobile: +1 415 947-3608 +pager: +1 415 847-5753 +roomNumber: 9225 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betteanne Ferguson +sn: Ferguson +description: This is Betteanne Ferguson's description +facsimileTelephoneNumber: +1 804 472-4964 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 185-5337 +title: Chief Payroll Sales Rep +userPassword: Password1 +uid: FergusoB +givenName: Betteanne +mail: FergusoB@d404d6f67aee4480aef4deb01202b0ce.bitwarden.com +carLicense: IO0ES9 +departmentNumber: 2573 +employeeType: Contract +homePhone: +1 804 234-8306 +initials: B. F. +mobile: +1 804 611-7518 +pager: +1 804 582-2535 +roomNumber: 8691 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rima OBrien,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rima OBrien +sn: OBrien +description: This is Rima OBrien's description +facsimileTelephoneNumber: +1 408 936-5893 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 764-6348 +title: Junior Peons Evangelist +userPassword: Password1 +uid: OBrienR +givenName: Rima +mail: OBrienR@fecfcf752c6e4027af9fd19570ebc44a.bitwarden.com +carLicense: JP8B28 +departmentNumber: 8978 +employeeType: Employee +homePhone: +1 408 975-2111 +initials: R. O. +mobile: +1 408 215-9457 +pager: +1 408 239-7318 +roomNumber: 8730 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tesfagaber Stites +sn: Stites +description: This is Tesfagaber Stites's description +facsimileTelephoneNumber: +1 510 333-7438 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 806-9799 +title: Associate Payroll Dictator +userPassword: Password1 +uid: StitesT +givenName: Tesfagaber +mail: StitesT@fdcc23b3e21f4f0fa3bffbc78ce6d7d0.bitwarden.com +carLicense: F9MDC0 +departmentNumber: 1852 +employeeType: Employee +homePhone: +1 510 142-4564 +initials: T. S. +mobile: +1 510 764-5061 +pager: +1 510 624-6466 +roomNumber: 9171 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Robinett Borg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinett Borg +sn: Borg +description: This is Robinett Borg's description +facsimileTelephoneNumber: +1 804 398-4208 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 411-1750 +title: Master Janitorial Janitor +userPassword: Password1 +uid: BorgR +givenName: Robinett +mail: BorgR@20f59cdd83ae48b3816d0ba42aaa0a71.bitwarden.com +carLicense: EJEB3Q +departmentNumber: 3555 +employeeType: Normal +homePhone: +1 804 939-2040 +initials: R. B. +mobile: +1 804 170-1152 +pager: +1 804 249-2560 +roomNumber: 9770 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marielle Kruziak +sn: Kruziak +description: This is Marielle Kruziak's description +facsimileTelephoneNumber: +1 206 922-5654 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 206 177-6402 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: KruziakM +givenName: Marielle +mail: KruziakM@256ea15783c347f9b9c84e579468618d.bitwarden.com +carLicense: YMXNAK +departmentNumber: 2001 +employeeType: Employee +homePhone: +1 206 213-5723 +initials: M. K. +mobile: +1 206 222-2439 +pager: +1 206 769-5476 +roomNumber: 8290 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaughan Thornley +sn: Thornley +description: This is Shaughan Thornley's description +facsimileTelephoneNumber: +1 415 621-1556 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 278-9199 +title: Chief Janitorial Punk +userPassword: Password1 +uid: ThornleS +givenName: Shaughan +mail: ThornleS@1e2b67f93f814f68b5e4aa746670a4e8.bitwarden.com +carLicense: 7L081S +departmentNumber: 5474 +employeeType: Normal +homePhone: +1 415 180-6008 +initials: S. T. +mobile: +1 415 580-6383 +pager: +1 415 513-2007 +roomNumber: 8052 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wai Elms,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wai Elms +sn: Elms +description: This is Wai Elms's description +facsimileTelephoneNumber: +1 415 755-1145 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 753-9844 +title: Junior Product Testing Punk +userPassword: Password1 +uid: ElmsW +givenName: Wai +mail: ElmsW@d28530c9df644cffbc9c3ddd841cc9a4.bitwarden.com +carLicense: 1VQB6X +departmentNumber: 6963 +employeeType: Contract +homePhone: +1 415 514-7692 +initials: W. E. +mobile: +1 415 805-7297 +pager: +1 415 861-6596 +roomNumber: 9607 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shoshanna Epplett +sn: Epplett +description: This is Shoshanna Epplett's description +facsimileTelephoneNumber: +1 408 383-5108 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 989-1465 +title: Junior Product Development Manager +userPassword: Password1 +uid: EpplettS +givenName: Shoshanna +mail: EpplettS@09c55424f60f401a820af7f109784bda.bitwarden.com +carLicense: S3SQA8 +departmentNumber: 6524 +employeeType: Normal +homePhone: +1 408 299-8146 +initials: S. E. +mobile: +1 408 108-8871 +pager: +1 408 568-3009 +roomNumber: 8856 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alikee Seay,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alikee Seay +sn: Seay +description: This is Alikee Seay's description +facsimileTelephoneNumber: +1 213 512-7899 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 645-1068 +title: Chief Janitorial Artist +userPassword: Password1 +uid: SeayA +givenName: Alikee +mail: SeayA@99a51e3de4824b82894f80e7490fdc98.bitwarden.com +carLicense: 14K6KB +departmentNumber: 2937 +employeeType: Employee +homePhone: +1 213 729-7748 +initials: A. S. +mobile: +1 213 446-6570 +pager: +1 213 110-2846 +roomNumber: 8341 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: DiaEdin Simonsen +sn: Simonsen +description: This is DiaEdin Simonsen's description +facsimileTelephoneNumber: +1 206 743-1860 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 206 479-9431 +title: Associate Human Resources Vice President +userPassword: Password1 +uid: SimonseD +givenName: DiaEdin +mail: SimonseD@b67254eafc794e8aadd067850b852e05.bitwarden.com +carLicense: VOK4PO +departmentNumber: 6528 +employeeType: Contract +homePhone: +1 206 350-4089 +initials: D. S. +mobile: +1 206 648-2795 +pager: +1 206 460-1209 +roomNumber: 8580 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pammi Abrams,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pammi Abrams +sn: Abrams +description: This is Pammi Abrams's description +facsimileTelephoneNumber: +1 818 607-3481 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 516-1341 +title: Supreme Peons Mascot +userPassword: Password1 +uid: AbramsP +givenName: Pammi +mail: AbramsP@860c7d85ea254a79a064b6a2375bb2e5.bitwarden.com +carLicense: B8627G +departmentNumber: 7437 +employeeType: Contract +homePhone: +1 818 647-7211 +initials: P. A. +mobile: +1 818 636-3108 +pager: +1 818 330-5851 +roomNumber: 8653 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gateway Benzick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gateway Benzick +sn: Benzick +description: This is Gateway Benzick's description +facsimileTelephoneNumber: +1 818 778-9495 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 818 991-5638 +title: Supreme Product Testing President +userPassword: Password1 +uid: BenzickG +givenName: Gateway +mail: BenzickG@ef52200320a34601b7e10e8ff147afd3.bitwarden.com +carLicense: 3YQOCA +departmentNumber: 4914 +employeeType: Contract +homePhone: +1 818 537-8740 +initials: G. B. +mobile: +1 818 536-5283 +pager: +1 818 544-4678 +roomNumber: 8379 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rhody Birk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhody Birk +sn: Birk +description: This is Rhody Birk's description +facsimileTelephoneNumber: +1 804 811-6966 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 297-9899 +title: Master Administrative Warrior +userPassword: Password1 +uid: BirkR +givenName: Rhody +mail: BirkR@0700db396e394f2aa0ec4417fdd37e22.bitwarden.com +carLicense: JSNSEE +departmentNumber: 4524 +employeeType: Contract +homePhone: +1 804 433-6265 +initials: R. B. +mobile: +1 804 726-5791 +pager: +1 804 783-1975 +roomNumber: 8398 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pinecrest Ramakrishna +sn: Ramakrishna +description: This is Pinecrest Ramakrishna's description +facsimileTelephoneNumber: +1 415 565-5273 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 113-8667 +title: Master Human Resources Vice President +userPassword: Password1 +uid: RamakriP +givenName: Pinecrest +mail: RamakriP@7bd1348caadc49fd912c79c585334210.bitwarden.com +carLicense: N2USXE +departmentNumber: 4446 +employeeType: Employee +homePhone: +1 415 955-9825 +initials: P. R. +mobile: +1 415 614-3206 +pager: +1 415 701-6492 +roomNumber: 8098 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Atlanta Brannon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atlanta Brannon +sn: Brannon +description: This is Atlanta Brannon's description +facsimileTelephoneNumber: +1 213 148-6992 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 633-2566 +title: Supreme Management Technician +userPassword: Password1 +uid: BrannonA +givenName: Atlanta +mail: BrannonA@8148a52d859b468a9dde3ee8b81e013b.bitwarden.com +carLicense: 93STE4 +departmentNumber: 2326 +employeeType: Employee +homePhone: +1 213 736-3733 +initials: A. B. +mobile: +1 213 449-6390 +pager: +1 213 597-8166 +roomNumber: 9106 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mentor MACKenzie +sn: MACKenzie +description: This is Mentor MACKenzie's description +facsimileTelephoneNumber: +1 408 597-7346 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 610-5954 +title: Supreme Product Development Admin +userPassword: Password1 +uid: MACKenzM +givenName: Mentor +mail: MACKenzM@a4ebc705137a4ddb9ebce3e4b095eec3.bitwarden.com +carLicense: 09AWK8 +departmentNumber: 1733 +employeeType: Employee +homePhone: +1 408 399-9345 +initials: M. M. +mobile: +1 408 359-1354 +pager: +1 408 760-8934 +roomNumber: 8069 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JFrancois Nickerson +sn: Nickerson +description: This is JFrancois Nickerson's description +facsimileTelephoneNumber: +1 408 435-3900 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 173-6137 +title: Master Janitorial Developer +userPassword: Password1 +uid: NickersJ +givenName: JFrancois +mail: NickersJ@dc196a8022ff465cb8dbe2eba3225125.bitwarden.com +carLicense: RUE9GJ +departmentNumber: 2397 +employeeType: Employee +homePhone: +1 408 741-4648 +initials: J. N. +mobile: +1 408 536-7547 +pager: +1 408 567-4895 +roomNumber: 9701 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khosro ODonnell +sn: ODonnell +description: This is Khosro ODonnell's description +facsimileTelephoneNumber: +1 818 209-9580 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 196-1985 +title: Associate Human Resources Architect +userPassword: Password1 +uid: ODonnelK +givenName: Khosro +mail: ODonnelK@c7537618f37d4b7db41aeb4dbd21158d.bitwarden.com +carLicense: 1PLHDN +departmentNumber: 9365 +employeeType: Employee +homePhone: +1 818 363-4566 +initials: K. O. +mobile: +1 818 463-3427 +pager: +1 818 925-8157 +roomNumber: 9591 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lisabeth Gedman +sn: Gedman +description: This is Lisabeth Gedman's description +facsimileTelephoneNumber: +1 213 156-9872 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 166-4220 +title: Associate Administrative Janitor +userPassword: Password1 +uid: GedmanL +givenName: Lisabeth +mail: GedmanL@521dc01836174c9fbceba2f0cdb64374.bitwarden.com +carLicense: CJXHWC +departmentNumber: 5312 +employeeType: Employee +homePhone: +1 213 355-8002 +initials: L. G. +mobile: +1 213 156-4915 +pager: +1 213 125-6897 +roomNumber: 8569 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Moshe Bowick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moshe Bowick +sn: Bowick +description: This is Moshe Bowick's description +facsimileTelephoneNumber: +1 804 129-5656 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 556-1860 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: BowickM +givenName: Moshe +mail: BowickM@0d2070a7704249ccae81fc4b91659074.bitwarden.com +carLicense: K8BMKP +departmentNumber: 4798 +employeeType: Employee +homePhone: +1 804 320-6721 +initials: M. B. +mobile: +1 804 143-9407 +pager: +1 804 314-6257 +roomNumber: 8996 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shirene Lommen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirene Lommen +sn: Lommen +description: This is Shirene Lommen's description +facsimileTelephoneNumber: +1 206 139-8341 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 924-8102 +title: Chief Management Grunt +userPassword: Password1 +uid: LommenS +givenName: Shirene +mail: LommenS@68783c5d6bc743ddb0d94e6abd382e0a.bitwarden.com +carLicense: TSN5IF +departmentNumber: 7242 +employeeType: Normal +homePhone: +1 206 284-4879 +initials: S. L. +mobile: +1 206 918-8909 +pager: +1 206 214-8230 +roomNumber: 8349 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chand Fusca,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chand Fusca +sn: Fusca +description: This is Chand Fusca's description +facsimileTelephoneNumber: +1 804 669-9414 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 762-6037 +title: Associate Peons Consultant +userPassword: Password1 +uid: FuscaC +givenName: Chand +mail: FuscaC@805e256767ba408cbe90aeb2944a8e9b.bitwarden.com +carLicense: TAQYR5 +departmentNumber: 5026 +employeeType: Normal +homePhone: +1 804 126-2158 +initials: C. F. +mobile: +1 804 473-8550 +pager: +1 804 399-6229 +roomNumber: 9915 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bethina Kigyos,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bethina Kigyos +sn: Kigyos +description: This is Bethina Kigyos's description +facsimileTelephoneNumber: +1 510 220-1353 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 942-2586 +title: Associate Peons Admin +userPassword: Password1 +uid: KigyosB +givenName: Bethina +mail: KigyosB@64b7c8578355450790f3fb63c15436b2.bitwarden.com +carLicense: 5TJDVA +departmentNumber: 6398 +employeeType: Normal +homePhone: +1 510 369-4396 +initials: B. K. +mobile: +1 510 339-6450 +pager: +1 510 892-4267 +roomNumber: 8793 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theodore Sutherland +sn: Sutherland +description: This is Theodore Sutherland's description +facsimileTelephoneNumber: +1 804 861-5020 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 201-5013 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: SutherlT +givenName: Theodore +mail: SutherlT@398ea17d6f974da4b9c05b23fe6460f8.bitwarden.com +carLicense: P5XNTK +departmentNumber: 8382 +employeeType: Employee +homePhone: +1 804 728-1299 +initials: T. S. +mobile: +1 804 224-1405 +pager: +1 804 911-8753 +roomNumber: 8477 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Paolina Ricketson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paolina Ricketson +sn: Ricketson +description: This is Paolina Ricketson's description +facsimileTelephoneNumber: +1 213 784-8541 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 599-3698 +title: Chief Administrative Madonna +userPassword: Password1 +uid: RicketsP +givenName: Paolina +mail: RicketsP@fa8dd30a7166419e97723182660d3ed8.bitwarden.com +carLicense: YGOFE2 +departmentNumber: 7556 +employeeType: Employee +homePhone: +1 213 851-6250 +initials: P. R. +mobile: +1 213 240-5662 +pager: +1 213 793-7427 +roomNumber: 8765 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teresita Artspssa +sn: Artspssa +description: This is Teresita Artspssa's description +facsimileTelephoneNumber: +1 213 132-5133 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 221-9705 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: ArtspssT +givenName: Teresita +mail: ArtspssT@f6fe529f06ac433fab898dee2f04e9dc.bitwarden.com +carLicense: R7E82L +departmentNumber: 2687 +employeeType: Normal +homePhone: +1 213 631-8291 +initials: T. A. +mobile: +1 213 360-5080 +pager: +1 213 507-8790 +roomNumber: 9370 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Isaac McNeil,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isaac McNeil +sn: McNeil +description: This is Isaac McNeil's description +facsimileTelephoneNumber: +1 213 674-5243 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 554-8160 +title: Chief Payroll Mascot +userPassword: Password1 +uid: McNeilI +givenName: Isaac +mail: McNeilI@af019db996df414484b0d304e9b3637a.bitwarden.com +carLicense: PL3EK4 +departmentNumber: 4653 +employeeType: Contract +homePhone: +1 213 487-1617 +initials: I. M. +mobile: +1 213 625-9507 +pager: +1 213 909-9081 +roomNumber: 8355 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jaman Churchill,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaman Churchill +sn: Churchill +description: This is Jaman Churchill's description +facsimileTelephoneNumber: +1 408 694-4101 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 118-5296 +title: Junior Human Resources Stooge +userPassword: Password1 +uid: ChurchiJ +givenName: Jaman +mail: ChurchiJ@b9f540485b314fbf8d07b00822dff971.bitwarden.com +carLicense: SINT5V +departmentNumber: 2782 +employeeType: Normal +homePhone: +1 408 642-4018 +initials: J. C. +mobile: +1 408 765-1679 +pager: +1 408 163-1244 +roomNumber: 9283 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Erick Heynen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erick Heynen +sn: Heynen +description: This is Erick Heynen's description +facsimileTelephoneNumber: +1 415 784-2680 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 415 943-3304 +title: Junior Product Development Architect +userPassword: Password1 +uid: HeynenE +givenName: Erick +mail: HeynenE@71334519f85d4ff38bd6a6b8f4192c09.bitwarden.com +carLicense: 5SOQCC +departmentNumber: 4492 +employeeType: Normal +homePhone: +1 415 648-3225 +initials: E. H. +mobile: +1 415 144-8011 +pager: +1 415 660-6409 +roomNumber: 9950 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sondra Frie,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sondra Frie +sn: Frie +description: This is Sondra Frie's description +facsimileTelephoneNumber: +1 415 888-9589 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 128-8608 +title: Associate Administrative Sales Rep +userPassword: Password1 +uid: FrieS +givenName: Sondra +mail: FrieS@1c3f38c01ffe4fd78e55d74bc900ca15.bitwarden.com +carLicense: 9V21LL +departmentNumber: 5106 +employeeType: Normal +homePhone: +1 415 298-2843 +initials: S. F. +mobile: +1 415 520-7397 +pager: +1 415 921-5794 +roomNumber: 8927 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mack Hermanns,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mack Hermanns +sn: Hermanns +description: This is Mack Hermanns's description +facsimileTelephoneNumber: +1 510 564-4651 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 111-6316 +title: Associate Product Testing Artist +userPassword: Password1 +uid: HermannM +givenName: Mack +mail: HermannM@30919d15fb3f4281a17499420dcfbd91.bitwarden.com +carLicense: 2OKY2L +departmentNumber: 6175 +employeeType: Employee +homePhone: +1 510 681-3454 +initials: M. H. +mobile: +1 510 955-7908 +pager: +1 510 283-2176 +roomNumber: 8553 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Patchit Panesar,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patchit Panesar +sn: Panesar +description: This is Patchit Panesar's description +facsimileTelephoneNumber: +1 206 746-9353 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 347-1761 +title: Chief Human Resources Admin +userPassword: Password1 +uid: PanesarP +givenName: Patchit +mail: PanesarP@99efb52676a5438d8f4dfeb830e52009.bitwarden.com +carLicense: RG4AJL +departmentNumber: 1848 +employeeType: Contract +homePhone: +1 206 428-7879 +initials: P. P. +mobile: +1 206 337-6867 +pager: +1 206 289-6173 +roomNumber: 8301 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mohamad Ng,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mohamad Ng +sn: Ng +description: This is Mohamad Ng's description +facsimileTelephoneNumber: +1 818 204-3656 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 632-8415 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: NgM +givenName: Mohamad +mail: NgM@799bf34e24074827963968e6e62fb541.bitwarden.com +carLicense: W1VIJ3 +departmentNumber: 3087 +employeeType: Employee +homePhone: +1 818 141-3009 +initials: M. N. +mobile: +1 818 939-9624 +pager: +1 818 586-1377 +roomNumber: 8839 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacynthe Mtcbase +sn: Mtcbase +description: This is Jacynthe Mtcbase's description +facsimileTelephoneNumber: +1 818 926-6739 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 818 101-9263 +title: Chief Administrative Assistant +userPassword: Password1 +uid: MtcbaseJ +givenName: Jacynthe +mail: MtcbaseJ@ca73de7d8fb447f899df1cc98c2c34a2.bitwarden.com +carLicense: CFKM0F +departmentNumber: 6665 +employeeType: Employee +homePhone: +1 818 746-7718 +initials: J. M. +mobile: +1 818 821-6229 +pager: +1 818 551-7884 +roomNumber: 9267 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jayme McMillen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jayme McMillen +sn: McMillen +description: This is Jayme McMillen's description +facsimileTelephoneNumber: +1 408 634-2347 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 772-9550 +title: Junior Payroll Dictator +userPassword: Password1 +uid: McMilleJ +givenName: Jayme +mail: McMilleJ@7a5ece6d9adf44888506b316b6709917.bitwarden.com +carLicense: 54PQ9U +departmentNumber: 9309 +employeeType: Employee +homePhone: +1 408 406-5585 +initials: J. M. +mobile: +1 408 922-6746 +pager: +1 408 916-8090 +roomNumber: 8191 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Perrin McMasters,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perrin McMasters +sn: McMasters +description: This is Perrin McMasters's description +facsimileTelephoneNumber: +1 213 385-7693 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 723-7850 +title: Associate Administrative Consultant +userPassword: Password1 +uid: McMasteP +givenName: Perrin +mail: McMasteP@22431f0d07b34bd39089fef51c341d61.bitwarden.com +carLicense: 0W4XHQ +departmentNumber: 6324 +employeeType: Normal +homePhone: +1 213 121-8324 +initials: P. M. +mobile: +1 213 996-8502 +pager: +1 213 663-2568 +roomNumber: 9681 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwynne Kotamarti +sn: Kotamarti +description: This is Gwynne Kotamarti's description +facsimileTelephoneNumber: +1 818 919-6347 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 969-8483 +title: Chief Payroll Dictator +userPassword: Password1 +uid: KotamarG +givenName: Gwynne +mail: KotamarG@764613c40e224c12ab1c1cb80b18e644.bitwarden.com +carLicense: IRKSDV +departmentNumber: 4420 +employeeType: Contract +homePhone: +1 818 424-9648 +initials: G. K. +mobile: +1 818 479-6096 +pager: +1 818 729-1017 +roomNumber: 8426 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlee HowePatterson +sn: HowePatterson +description: This is Marlee HowePatterson's description +facsimileTelephoneNumber: +1 804 454-8741 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 804 638-9298 +title: Junior Janitorial Warrior +userPassword: Password1 +uid: HowePatM +givenName: Marlee +mail: HowePatM@1f747432623a4f53b844c44224754693.bitwarden.com +carLicense: BW7MG6 +departmentNumber: 7704 +employeeType: Contract +homePhone: +1 804 357-9441 +initials: M. H. +mobile: +1 804 726-9487 +pager: +1 804 973-8498 +roomNumber: 9073 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joell Veloz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joell Veloz +sn: Veloz +description: This is Joell Veloz's description +facsimileTelephoneNumber: +1 510 561-5103 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 962-7966 +title: Supreme Human Resources Director +userPassword: Password1 +uid: VelozJ +givenName: Joell +mail: VelozJ@76f6104d33de482eb35b100eb7033678.bitwarden.com +carLicense: G9CJD0 +departmentNumber: 6929 +employeeType: Normal +homePhone: +1 510 245-2439 +initials: J. V. +mobile: +1 510 391-2955 +pager: +1 510 721-4906 +roomNumber: 9989 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tootsie DeAlmeida +sn: DeAlmeida +description: This is Tootsie DeAlmeida's description +facsimileTelephoneNumber: +1 510 820-8415 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 928-7741 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: DeAlmeiT +givenName: Tootsie +mail: DeAlmeiT@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com +carLicense: B8FXS3 +departmentNumber: 7722 +employeeType: Employee +homePhone: +1 510 218-6729 +initials: T. D. +mobile: +1 510 987-1321 +pager: +1 510 606-5815 +roomNumber: 8509 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Naima Swinks,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naima Swinks +sn: Swinks +description: This is Naima Swinks's description +facsimileTelephoneNumber: +1 213 276-8641 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 369-7458 +title: Supreme Management Grunt +userPassword: Password1 +uid: SwinksN +givenName: Naima +mail: SwinksN@08a7e5e74be04f44a364a958dd103e80.bitwarden.com +carLicense: X4OIFM +departmentNumber: 6880 +employeeType: Employee +homePhone: +1 213 538-5964 +initials: N. S. +mobile: +1 213 216-4100 +pager: +1 213 250-5836 +roomNumber: 8101 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mab Amato,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mab Amato +sn: Amato +description: This is Mab Amato's description +facsimileTelephoneNumber: +1 206 242-5248 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 923-2728 +title: Supreme Payroll Artist +userPassword: Password1 +uid: AmatoM +givenName: Mab +mail: AmatoM@481a6dfc2726429788928adbad28f42a.bitwarden.com +carLicense: J1J7LJ +departmentNumber: 3951 +employeeType: Contract +homePhone: +1 206 404-5123 +initials: M. A. +mobile: +1 206 277-7689 +pager: +1 206 808-6904 +roomNumber: 8617 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jeanna Lawther,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeanna Lawther +sn: Lawther +description: This is Jeanna Lawther's description +facsimileTelephoneNumber: +1 206 268-1669 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 893-7281 +title: Chief Product Development Fellow +userPassword: Password1 +uid: LawtherJ +givenName: Jeanna +mail: LawtherJ@ce09eff4e27d456d8a017939b41c80b4.bitwarden.com +carLicense: O1AVVL +departmentNumber: 8893 +employeeType: Contract +homePhone: +1 206 277-6573 +initials: J. L. +mobile: +1 206 196-3370 +pager: +1 206 984-7287 +roomNumber: 9556 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariel DeBrusk +sn: DeBrusk +description: This is Mariel DeBrusk's description +facsimileTelephoneNumber: +1 804 369-9601 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 219-9930 +title: Junior Product Development Technician +userPassword: Password1 +uid: DeBruskM +givenName: Mariel +mail: DeBruskM@56ee0442f1a84dbfb882b36d77def9ff.bitwarden.com +carLicense: CD2DSN +departmentNumber: 1785 +employeeType: Employee +homePhone: +1 804 478-3015 +initials: M. D. +mobile: +1 804 606-9991 +pager: +1 804 186-4907 +roomNumber: 8192 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Luther Kordik,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luther Kordik +sn: Kordik +description: This is Luther Kordik's description +facsimileTelephoneNumber: +1 213 887-2188 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 731-2303 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: KordikL +givenName: Luther +mail: KordikL@c84c1685109349e381c9c3b76d3c081d.bitwarden.com +carLicense: WQ85DI +departmentNumber: 3083 +employeeType: Normal +homePhone: +1 213 741-2361 +initials: L. K. +mobile: +1 213 538-1936 +pager: +1 213 687-8208 +roomNumber: 9870 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hellmut Tebinka +sn: Tebinka +description: This is Hellmut Tebinka's description +facsimileTelephoneNumber: +1 804 750-5260 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 213-4504 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: TebinkaH +givenName: Hellmut +mail: TebinkaH@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com +carLicense: T1SI9G +departmentNumber: 1005 +employeeType: Employee +homePhone: +1 804 186-3154 +initials: H. T. +mobile: +1 804 466-9910 +pager: +1 804 569-4901 +roomNumber: 8962 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jenine Sutton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenine Sutton +sn: Sutton +description: This is Jenine Sutton's description +facsimileTelephoneNumber: +1 510 126-7551 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 849-3353 +title: Associate Peons Madonna +userPassword: Password1 +uid: SuttonJ +givenName: Jenine +mail: SuttonJ@3546d29dd7834be9b84722d152b319e0.bitwarden.com +carLicense: 9SQH30 +departmentNumber: 5428 +employeeType: Contract +homePhone: +1 510 236-9971 +initials: J. S. +mobile: +1 510 846-4238 +pager: +1 510 575-5022 +roomNumber: 9512 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanMarie Gordon +sn: Gordon +description: This is JeanMarie Gordon's description +facsimileTelephoneNumber: +1 804 938-1318 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 892-5355 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: GordonJ +givenName: JeanMarie +mail: GordonJ@c914251ab9404c90af6d46fa9bf97baa.bitwarden.com +carLicense: XKU0UV +departmentNumber: 7089 +employeeType: Normal +homePhone: +1 804 312-3598 +initials: J. G. +mobile: +1 804 785-9570 +pager: +1 804 358-2114 +roomNumber: 8087 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ronny Blomquist,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronny Blomquist +sn: Blomquist +description: This is Ronny Blomquist's description +facsimileTelephoneNumber: +1 818 753-9839 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 383-8945 +title: Chief Management Stooge +userPassword: Password1 +uid: BlomquiR +givenName: Ronny +mail: BlomquiR@a651bab618794291bf5129fe307f0c99.bitwarden.com +carLicense: QWMJPJ +departmentNumber: 5790 +employeeType: Employee +homePhone: +1 818 341-9286 +initials: R. B. +mobile: +1 818 336-9672 +pager: +1 818 980-2040 +roomNumber: 8103 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Krystal Noel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krystal Noel +sn: Noel +description: This is Krystal Noel's description +facsimileTelephoneNumber: +1 804 240-3073 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 415-8818 +title: Associate Product Development Dictator +userPassword: Password1 +uid: NoelK +givenName: Krystal +mail: NoelK@80695950877a41d48624da7d4574c893.bitwarden.com +carLicense: YJJHX6 +departmentNumber: 5137 +employeeType: Contract +homePhone: +1 804 172-7015 +initials: K. N. +mobile: +1 804 683-3102 +pager: +1 804 713-6811 +roomNumber: 8742 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Clark Bruneau,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clark Bruneau +sn: Bruneau +description: This is Clark Bruneau's description +facsimileTelephoneNumber: +1 213 301-7985 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 679-6031 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: BruneauC +givenName: Clark +mail: BruneauC@1f047af09330424c80ddd51cf37e0010.bitwarden.com +carLicense: W0N5JD +departmentNumber: 4325 +employeeType: Normal +homePhone: +1 213 602-6550 +initials: C. B. +mobile: +1 213 457-2292 +pager: +1 213 123-8802 +roomNumber: 8913 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anallese Bloemker,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anallese Bloemker +sn: Bloemker +description: This is Anallese Bloemker's description +facsimileTelephoneNumber: +1 818 969-8094 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 491-5314 +title: Chief Administrative Manager +userPassword: Password1 +uid: BloemkeA +givenName: Anallese +mail: BloemkeA@984a33b6fcea4c229307cb5a753888dd.bitwarden.com +carLicense: KQFCGW +departmentNumber: 2892 +employeeType: Contract +homePhone: +1 818 228-3507 +initials: A. B. +mobile: +1 818 465-2299 +pager: +1 818 150-2169 +roomNumber: 8213 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=WenKai Schemena,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WenKai Schemena +sn: Schemena +description: This is WenKai Schemena's description +facsimileTelephoneNumber: +1 213 559-1965 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 213 639-5306 +title: Supreme Peons Czar +userPassword: Password1 +uid: SchemenW +givenName: WenKai +mail: SchemenW@776174eadbeb4db89457f08eae37cc43.bitwarden.com +carLicense: 30LIM9 +departmentNumber: 6483 +employeeType: Employee +homePhone: +1 213 265-4869 +initials: W. S. +mobile: +1 213 279-9754 +pager: +1 213 681-5923 +roomNumber: 9423 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Luan Goupil,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luan Goupil +sn: Goupil +description: This is Luan Goupil's description +facsimileTelephoneNumber: +1 206 159-5148 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 807-7911 +title: Associate Human Resources Writer +userPassword: Password1 +uid: GoupilL +givenName: Luan +mail: GoupilL@729666359ed04f0995bf97703c170436.bitwarden.com +carLicense: AN4AAU +departmentNumber: 2941 +employeeType: Normal +homePhone: +1 206 893-6154 +initials: L. G. +mobile: +1 206 275-1204 +pager: +1 206 328-2359 +roomNumber: 9495 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dimitra Loponen +sn: Loponen +description: This is Dimitra Loponen's description +facsimileTelephoneNumber: +1 408 539-8776 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 764-6974 +title: Chief Product Testing Madonna +userPassword: Password1 +uid: LoponenD +givenName: Dimitra +mail: LoponenD@b2ad1fc1ea554b8f973d1f9ef9821f73.bitwarden.com +carLicense: ED5GXB +departmentNumber: 2192 +employeeType: Employee +homePhone: +1 408 356-6346 +initials: D. L. +mobile: +1 408 598-6063 +pager: +1 408 240-3707 +roomNumber: 8288 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Verna Britt,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verna Britt +sn: Britt +description: This is Verna Britt's description +facsimileTelephoneNumber: +1 510 147-7429 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 235-4833 +title: Chief Management Warrior +userPassword: Password1 +uid: BrittV +givenName: Verna +mail: BrittV@2589cc141c4e4b5c8c4573c04cd3f678.bitwarden.com +carLicense: IFXR05 +departmentNumber: 9029 +employeeType: Normal +homePhone: +1 510 855-4746 +initials: V. B. +mobile: +1 510 149-1610 +pager: +1 510 181-3145 +roomNumber: 9397 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hoog Gareis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hoog Gareis +sn: Gareis +description: This is Hoog Gareis's description +facsimileTelephoneNumber: +1 415 794-9348 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 401-8373 +title: Chief Janitorial Janitor +userPassword: Password1 +uid: GareisH +givenName: Hoog +mail: GareisH@5f79b20f5b7f4ae1afe25eb5f16c5923.bitwarden.com +carLicense: VCXHCY +departmentNumber: 4067 +employeeType: Employee +homePhone: +1 415 291-7799 +initials: H. G. +mobile: +1 415 269-7802 +pager: +1 415 623-2494 +roomNumber: 8207 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SiewKiat Tsui +sn: Tsui +description: This is SiewKiat Tsui's description +facsimileTelephoneNumber: +1 510 276-3591 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 242-4238 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: TsuiS +givenName: SiewKiat +mail: TsuiS@289444924c894df68dc76e9d8add4066.bitwarden.com +carLicense: N19JWS +departmentNumber: 5044 +employeeType: Normal +homePhone: +1 510 988-4926 +initials: S. T. +mobile: +1 510 241-6327 +pager: +1 510 606-1622 +roomNumber: 8790 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Skyler Lamy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Skyler Lamy +sn: Lamy +description: This is Skyler Lamy's description +facsimileTelephoneNumber: +1 213 681-9464 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 155-8839 +title: Associate Product Development President +userPassword: Password1 +uid: LamyS +givenName: Skyler +mail: LamyS@df91f02938d046d8adb3f260f0e722ef.bitwarden.com +carLicense: R3UHVO +departmentNumber: 8529 +employeeType: Normal +homePhone: +1 213 885-2148 +initials: S. L. +mobile: +1 213 372-2393 +pager: +1 213 389-8236 +roomNumber: 8135 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bcs Hoyer +sn: Hoyer +description: This is Bcs Hoyer's description +facsimileTelephoneNumber: +1 818 585-1126 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 770-2644 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: HoyerB +givenName: Bcs +mail: HoyerB@553a74428bb643038d327a6c4003715b.bitwarden.com +carLicense: UK6AUH +departmentNumber: 4147 +employeeType: Normal +homePhone: +1 818 135-9944 +initials: B. H. +mobile: +1 818 377-1729 +pager: +1 818 793-2795 +roomNumber: 8142 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Layne Esry,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Layne Esry +sn: Esry +description: This is Layne Esry's description +facsimileTelephoneNumber: +1 408 167-1118 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 408 632-5158 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: EsryL +givenName: Layne +mail: EsryL@c3c0f7a355cb4430990b12849cd4234b.bitwarden.com +carLicense: 7YHHNM +departmentNumber: 3927 +employeeType: Contract +homePhone: +1 408 871-1420 +initials: L. E. +mobile: +1 408 763-6024 +pager: +1 408 128-3761 +roomNumber: 8366 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Amrik Thornber,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amrik Thornber +sn: Thornber +description: This is Amrik Thornber's description +facsimileTelephoneNumber: +1 408 328-4913 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 404-1879 +title: Junior Payroll Punk +userPassword: Password1 +uid: ThornbeA +givenName: Amrik +mail: ThornbeA@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com +carLicense: 7WARFR +departmentNumber: 3338 +employeeType: Contract +homePhone: +1 408 981-4891 +initials: A. T. +mobile: +1 408 970-3163 +pager: +1 408 946-2735 +roomNumber: 8085 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Michaela Lobianco,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michaela Lobianco +sn: Lobianco +description: This is Michaela Lobianco's description +facsimileTelephoneNumber: +1 408 975-7493 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 497-8786 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: LobiancM +givenName: Michaela +mail: LobiancM@5957c85f3b4a4b49903492c9f27c830b.bitwarden.com +carLicense: U30MUD +departmentNumber: 6158 +employeeType: Normal +homePhone: +1 408 940-8343 +initials: M. L. +mobile: +1 408 877-8869 +pager: +1 408 727-3788 +roomNumber: 9976 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hyacinthie Closson +sn: Closson +description: This is Hyacinthie Closson's description +facsimileTelephoneNumber: +1 206 760-2843 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 874-2639 +title: Junior Human Resources Artist +userPassword: Password1 +uid: ClossonH +givenName: Hyacinthie +mail: ClossonH@776174eadbeb4db89457f08eae37cc43.bitwarden.com +carLicense: 5HXQCY +departmentNumber: 8512 +employeeType: Contract +homePhone: +1 206 759-9391 +initials: H. C. +mobile: +1 206 583-7711 +pager: +1 206 819-4818 +roomNumber: 8910 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mounir Gubbins +sn: Gubbins +description: This is Mounir Gubbins's description +facsimileTelephoneNumber: +1 804 753-5580 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 105-5946 +title: Associate Product Testing Mascot +userPassword: Password1 +uid: GubbinsM +givenName: Mounir +mail: GubbinsM@853be251133d4fadac48c2adaa97ca8b.bitwarden.com +carLicense: REIAEG +departmentNumber: 3745 +employeeType: Contract +homePhone: +1 804 336-4314 +initials: M. G. +mobile: +1 804 450-6358 +pager: +1 804 191-4123 +roomNumber: 9334 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ebrahim Hoes +sn: Hoes +description: This is Ebrahim Hoes's description +facsimileTelephoneNumber: +1 213 192-3179 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 509-9695 +title: Junior Product Development Consultant +userPassword: Password1 +uid: HoesE +givenName: Ebrahim +mail: HoesE@b78fed9ef6a94b4d9e8bb1b5d1719aef.bitwarden.com +carLicense: SV8MGX +departmentNumber: 2097 +employeeType: Employee +homePhone: +1 213 272-3975 +initials: E. H. +mobile: +1 213 881-4568 +pager: +1 213 913-1629 +roomNumber: 9399 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roxy Banerjee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxy Banerjee +sn: Banerjee +description: This is Roxy Banerjee's description +facsimileTelephoneNumber: +1 818 413-7564 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 153-1597 +title: Chief Product Development Grunt +userPassword: Password1 +uid: BanerjeR +givenName: Roxy +mail: BanerjeR@26baa80c82b44c14a3680a99c80f4149.bitwarden.com +carLicense: D4HGJW +departmentNumber: 1976 +employeeType: Contract +homePhone: +1 818 663-8445 +initials: R. B. +mobile: +1 818 658-9939 +pager: +1 818 924-7442 +roomNumber: 9684 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Derek Ukena,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Derek Ukena +sn: Ukena +description: This is Derek Ukena's description +facsimileTelephoneNumber: +1 818 614-9694 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 762-2187 +title: Associate Payroll Fellow +userPassword: Password1 +uid: UkenaD +givenName: Derek +mail: UkenaD@2d0e71959712498892398e30a50d5bec.bitwarden.com +carLicense: T5KDI7 +departmentNumber: 7167 +employeeType: Normal +homePhone: +1 818 772-9660 +initials: D. U. +mobile: +1 818 151-5581 +pager: +1 818 841-7937 +roomNumber: 8267 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jenelle Crothers,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenelle Crothers +sn: Crothers +description: This is Jenelle Crothers's description +facsimileTelephoneNumber: +1 206 490-2160 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 206 190-5079 +title: Master Administrative President +userPassword: Password1 +uid: CrotherJ +givenName: Jenelle +mail: CrotherJ@fc7406e3c8e34fce9e4288bfe13798e9.bitwarden.com +carLicense: VNWED2 +departmentNumber: 5894 +employeeType: Normal +homePhone: +1 206 395-9653 +initials: J. C. +mobile: +1 206 424-7978 +pager: +1 206 134-1281 +roomNumber: 8345 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Devonna Caron,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devonna Caron +sn: Caron +description: This is Devonna Caron's description +facsimileTelephoneNumber: +1 415 511-1858 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 216-6885 +title: Supreme Product Testing Manager +userPassword: Password1 +uid: CaronD +givenName: Devonna +mail: CaronD@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com +carLicense: HSC8WW +departmentNumber: 3010 +employeeType: Employee +homePhone: +1 415 356-7861 +initials: D. C. +mobile: +1 415 290-3882 +pager: +1 415 410-5754 +roomNumber: 8577 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Neill Droste,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neill Droste +sn: Droste +description: This is Neill Droste's description +facsimileTelephoneNumber: +1 804 248-5207 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 837-1376 +title: Associate Peons Pinhead +userPassword: Password1 +uid: DrosteN +givenName: Neill +mail: DrosteN@aac869a9d66f41deb273e8c857d2f2a2.bitwarden.com +carLicense: XHNPGR +departmentNumber: 2810 +employeeType: Normal +homePhone: +1 804 131-3652 +initials: N. D. +mobile: +1 804 906-5900 +pager: +1 804 800-9405 +roomNumber: 9795 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lissy MooYoung,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lissy MooYoung +sn: MooYoung +description: This is Lissy MooYoung's description +facsimileTelephoneNumber: +1 804 100-5187 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 832-9178 +title: Junior Payroll Manager +userPassword: Password1 +uid: MooYounL +givenName: Lissy +mail: MooYounL@4a32da5e6b0c44ddb6046a41d38421fc.bitwarden.com +carLicense: WL7DNI +departmentNumber: 4579 +employeeType: Employee +homePhone: +1 804 594-6389 +initials: L. M. +mobile: +1 804 514-2352 +pager: +1 804 150-6803 +roomNumber: 9647 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Frederica Herbers,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frederica Herbers +sn: Herbers +description: This is Frederica Herbers's description +facsimileTelephoneNumber: +1 415 469-6121 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 950-6280 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: HerbersF +givenName: Frederica +mail: HerbersF@940a7593b88c4fb0afde713027fc2a16.bitwarden.com +carLicense: BMOBFL +departmentNumber: 5456 +employeeType: Employee +homePhone: +1 415 531-4874 +initials: F. H. +mobile: +1 415 319-8659 +pager: +1 415 646-1191 +roomNumber: 8299 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Geir Madigan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geir Madigan +sn: Madigan +description: This is Geir Madigan's description +facsimileTelephoneNumber: +1 408 422-6906 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 426-1884 +title: Master Peons Consultant +userPassword: Password1 +uid: MadiganG +givenName: Geir +mail: MadiganG@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com +carLicense: CI1H2O +departmentNumber: 4762 +employeeType: Contract +homePhone: +1 408 953-7176 +initials: G. M. +mobile: +1 408 867-7064 +pager: +1 408 484-4285 +roomNumber: 9062 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cal Vosburg,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cal Vosburg +sn: Vosburg +description: This is Cal Vosburg's description +facsimileTelephoneNumber: +1 408 170-5417 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 971-1459 +title: Associate Product Development President +userPassword: Password1 +uid: VosburgC +givenName: Cal +mail: VosburgC@88f0e01d6ade41fe9e8249c17671d036.bitwarden.com +carLicense: 7F4IPT +departmentNumber: 4144 +employeeType: Normal +homePhone: +1 408 837-3183 +initials: C. V. +mobile: +1 408 740-1954 +pager: +1 408 571-7885 +roomNumber: 9331 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Darrol Schluter,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrol Schluter +sn: Schluter +description: This is Darrol Schluter's description +facsimileTelephoneNumber: +1 415 860-1781 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 831-2459 +title: Junior Janitorial Technician +userPassword: Password1 +uid: SchluteD +givenName: Darrol +mail: SchluteD@5b2cdd0210f9439bba35839f38589b93.bitwarden.com +carLicense: VSD3X3 +departmentNumber: 3607 +employeeType: Normal +homePhone: +1 415 697-8726 +initials: D. S. +mobile: +1 415 291-3407 +pager: +1 415 442-1719 +roomNumber: 9346 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Augustin Polashock,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Augustin Polashock +sn: Polashock +description: This is Augustin Polashock's description +facsimileTelephoneNumber: +1 206 812-6114 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 393-8735 +title: Master Administrative Figurehead +userPassword: Password1 +uid: PolashoA +givenName: Augustin +mail: PolashoA@71a3a2f552a3442caaba57d329355ad2.bitwarden.com +carLicense: 4AU91Y +departmentNumber: 3319 +employeeType: Contract +homePhone: +1 206 808-9265 +initials: A. P. +mobile: +1 206 203-5972 +pager: +1 206 898-8944 +roomNumber: 8554 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Karrah Federico,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karrah Federico +sn: Federico +description: This is Karrah Federico's description +facsimileTelephoneNumber: +1 415 842-1479 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 824-6880 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: FedericK +givenName: Karrah +mail: FedericK@1f90981d05564d038a0c312379adcdd2.bitwarden.com +carLicense: QF5XRP +departmentNumber: 2264 +employeeType: Normal +homePhone: +1 415 124-1086 +initials: K. F. +mobile: +1 415 978-4754 +pager: +1 415 321-2615 +roomNumber: 9519 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Arlina Douet,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlina Douet +sn: Douet +description: This is Arlina Douet's description +facsimileTelephoneNumber: +1 818 398-9666 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 558-8739 +title: Master Product Testing Dictator +userPassword: Password1 +uid: DouetA +givenName: Arlina +mail: DouetA@0370bf4c8f0643cdbb05f71db44e6eda.bitwarden.com +carLicense: AP72VI +departmentNumber: 4843 +employeeType: Employee +homePhone: +1 818 370-9597 +initials: A. D. +mobile: +1 818 110-2919 +pager: +1 818 978-6937 +roomNumber: 8845 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Herb Cantrell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herb Cantrell +sn: Cantrell +description: This is Herb Cantrell's description +facsimileTelephoneNumber: +1 510 281-3015 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 855-4589 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: CantrelH +givenName: Herb +mail: CantrelH@33bf50a72a3544c9bdfe2238d2123ad0.bitwarden.com +carLicense: KF1555 +departmentNumber: 9675 +employeeType: Contract +homePhone: +1 510 288-5123 +initials: H. C. +mobile: +1 510 274-8185 +pager: +1 510 630-1256 +roomNumber: 9561 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ott Beresnikow,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ott Beresnikow +sn: Beresnikow +description: This is Ott Beresnikow's description +facsimileTelephoneNumber: +1 804 491-3610 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 443-4538 +title: Junior Management Director +userPassword: Password1 +uid: BeresniO +givenName: Ott +mail: BeresniO@ccd602a706b2492c8998dcf7c17bd36f.bitwarden.com +carLicense: 460A7T +departmentNumber: 7517 +employeeType: Normal +homePhone: +1 804 470-8190 +initials: O. B. +mobile: +1 804 554-6593 +pager: +1 804 761-9629 +roomNumber: 9610 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tracey Tates,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tracey Tates +sn: Tates +description: This is Tracey Tates's description +facsimileTelephoneNumber: +1 213 883-2818 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 213 753-7731 +title: Associate Payroll Technician +userPassword: Password1 +uid: TatesT +givenName: Tracey +mail: TatesT@cbda675e7e2a4c7e8469f0d5f6b406ad.bitwarden.com +carLicense: FKXVNQ +departmentNumber: 9274 +employeeType: Contract +homePhone: +1 213 635-8539 +initials: T. T. +mobile: +1 213 945-1136 +pager: +1 213 774-4196 +roomNumber: 9468 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeniece Belmont,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeniece Belmont +sn: Belmont +description: This is Jeniece Belmont's description +facsimileTelephoneNumber: +1 804 558-5806 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 856-4396 +title: Associate Peons Dictator +userPassword: Password1 +uid: BelmontJ +givenName: Jeniece +mail: BelmontJ@5128133359594cd18d137c259ecf1184.bitwarden.com +carLicense: R1DI6Q +departmentNumber: 4499 +employeeType: Employee +homePhone: +1 804 669-8629 +initials: J. B. +mobile: +1 804 321-2469 +pager: +1 804 113-9584 +roomNumber: 9655 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vern Vosup,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vern Vosup +sn: Vosup +description: This is Vern Vosup's description +facsimileTelephoneNumber: +1 206 970-7991 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 484-2480 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: VosupV +givenName: Vern +mail: VosupV@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com +carLicense: VYJ74L +departmentNumber: 7577 +employeeType: Contract +homePhone: +1 206 139-5556 +initials: V. V. +mobile: +1 206 108-8489 +pager: +1 206 452-2031 +roomNumber: 9442 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zoltan Zumhagen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zoltan Zumhagen +sn: Zumhagen +description: This is Zoltan Zumhagen's description +facsimileTelephoneNumber: +1 213 502-8138 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 820-8912 +title: Chief Management Vice President +userPassword: Password1 +uid: ZumhageZ +givenName: Zoltan +mail: ZumhageZ@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com +carLicense: 1A0O03 +departmentNumber: 3507 +employeeType: Employee +homePhone: +1 213 149-2210 +initials: Z. Z. +mobile: +1 213 163-3334 +pager: +1 213 246-8111 +roomNumber: 8822 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginnie Wignall +sn: Wignall +description: This is Ginnie Wignall's description +facsimileTelephoneNumber: +1 408 707-8425 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 408 262-6774 +title: Chief Janitorial Admin +userPassword: Password1 +uid: WignallG +givenName: Ginnie +mail: WignallG@e52982c108d74f959048f88b7dd46e6f.bitwarden.com +carLicense: FEKPW6 +departmentNumber: 7995 +employeeType: Contract +homePhone: +1 408 567-4870 +initials: G. W. +mobile: +1 408 905-6523 +pager: +1 408 933-2110 +roomNumber: 8700 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Makiko Walta,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Makiko Walta +sn: Walta +description: This is Makiko Walta's description +facsimileTelephoneNumber: +1 510 283-4939 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 836-7956 +title: Master Management Manager +userPassword: Password1 +uid: WaltaM +givenName: Makiko +mail: WaltaM@4c9ea5cb0c6d47f0bff8da92c6c9d0eb.bitwarden.com +carLicense: 883Y98 +departmentNumber: 3573 +employeeType: Employee +homePhone: +1 510 528-6861 +initials: M. W. +mobile: +1 510 392-4473 +pager: +1 510 589-7582 +roomNumber: 8607 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ermentrude Boult,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ermentrude Boult +sn: Boult +description: This is Ermentrude Boult's description +facsimileTelephoneNumber: +1 804 529-2071 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 662-8230 +title: Associate Management Mascot +userPassword: Password1 +uid: BoultE +givenName: Ermentrude +mail: BoultE@6114ed5b2ab14d15895d683682929e6e.bitwarden.com +carLicense: G028GL +departmentNumber: 6879 +employeeType: Employee +homePhone: +1 804 620-4241 +initials: E. B. +mobile: +1 804 102-9792 +pager: +1 804 922-7712 +roomNumber: 9795 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinetta Paetsch +sn: Paetsch +description: This is Robinetta Paetsch's description +facsimileTelephoneNumber: +1 818 528-5170 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 836-2128 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: PaetschR +givenName: Robinetta +mail: PaetschR@111d7547650243e9b05c0ec5c87bdfcd.bitwarden.com +carLicense: HIUEEU +departmentNumber: 2309 +employeeType: Normal +homePhone: +1 818 597-1539 +initials: R. P. +mobile: +1 818 636-5099 +pager: +1 818 515-2126 +roomNumber: 8345 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Larisa Szura,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Larisa Szura +sn: Szura +description: This is Larisa Szura's description +facsimileTelephoneNumber: +1 818 765-3753 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 699-5044 +title: Master Product Testing Writer +userPassword: Password1 +uid: SzuraL +givenName: Larisa +mail: SzuraL@c4198b8f2847457c97c168c8fc0c7617.bitwarden.com +carLicense: F31QGR +departmentNumber: 1954 +employeeType: Normal +homePhone: +1 818 843-2604 +initials: L. S. +mobile: +1 818 646-4801 +pager: +1 818 414-3977 +roomNumber: 9436 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wiebe Ku,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wiebe Ku +sn: Ku +description: This is Wiebe Ku's description +facsimileTelephoneNumber: +1 408 780-9895 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 433-2197 +title: Supreme Peons Consultant +userPassword: Password1 +uid: KuW +givenName: Wiebe +mail: KuW@b4cc71653cab4b938d868f66a601e950.bitwarden.com +carLicense: NT6C05 +departmentNumber: 6649 +employeeType: Employee +homePhone: +1 408 237-6798 +initials: W. K. +mobile: +1 408 657-4846 +pager: +1 408 328-9489 +roomNumber: 8736 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zeljko Subick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zeljko Subick +sn: Subick +description: This is Zeljko Subick's description +facsimileTelephoneNumber: +1 415 209-1273 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 993-7748 +title: Supreme Management Sales Rep +userPassword: Password1 +uid: SubickZ +givenName: Zeljko +mail: SubickZ@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com +carLicense: F6EGFM +departmentNumber: 8811 +employeeType: Employee +homePhone: +1 415 970-7029 +initials: Z. S. +mobile: +1 415 179-7089 +pager: +1 415 612-6410 +roomNumber: 8049 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Liese Neill,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liese Neill +sn: Neill +description: This is Liese Neill's description +facsimileTelephoneNumber: +1 804 348-8698 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 330-5255 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: NeillL +givenName: Liese +mail: NeillL@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com +carLicense: AP6290 +departmentNumber: 2368 +employeeType: Contract +homePhone: +1 804 290-6400 +initials: L. N. +mobile: +1 804 670-2103 +pager: +1 804 403-1074 +roomNumber: 9443 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faz Chotkowski +sn: Chotkowski +description: This is Faz Chotkowski's description +facsimileTelephoneNumber: +1 415 169-9986 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 562-8810 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: ChotkowF +givenName: Faz +mail: ChotkowF@8971a4377828437190f1287041d02525.bitwarden.com +carLicense: O6CXTS +departmentNumber: 1784 +employeeType: Employee +homePhone: +1 415 195-9394 +initials: F. C. +mobile: +1 415 389-1136 +pager: +1 415 499-8934 +roomNumber: 8980 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Doralin PATCOR,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doralin PATCOR +sn: PATCOR +description: This is Doralin PATCOR's description +facsimileTelephoneNumber: +1 415 860-6773 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 140-3534 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: PATCORD +givenName: Doralin +mail: PATCORD@003e771d29284236b967f25e9416ed07.bitwarden.com +carLicense: DFLLTX +departmentNumber: 8710 +employeeType: Normal +homePhone: +1 415 143-8228 +initials: D. P. +mobile: +1 415 840-1450 +pager: +1 415 605-5282 +roomNumber: 9615 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tillie Erskine,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tillie Erskine +sn: Erskine +description: This is Tillie Erskine's description +facsimileTelephoneNumber: +1 408 850-7820 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 248-8792 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: ErskineT +givenName: Tillie +mail: ErskineT@57dc19fb72ed48a88f045569d12c771f.bitwarden.com +carLicense: N9W74W +departmentNumber: 6512 +employeeType: Normal +homePhone: +1 408 421-6202 +initials: T. E. +mobile: +1 408 161-1226 +pager: +1 408 575-2802 +roomNumber: 8229 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davinder Jacobsen +sn: Jacobsen +description: This is Davinder Jacobsen's description +facsimileTelephoneNumber: +1 213 933-5673 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 664-6213 +title: Junior Human Resources Director +userPassword: Password1 +uid: JacobseD +givenName: Davinder +mail: JacobseD@1e6e292197c54bb68d0f062bfc704a5f.bitwarden.com +carLicense: JX33BA +departmentNumber: 1287 +employeeType: Contract +homePhone: +1 213 348-6592 +initials: D. J. +mobile: +1 213 493-2218 +pager: +1 213 662-7761 +roomNumber: 9283 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sheeree Petrunka,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheeree Petrunka +sn: Petrunka +description: This is Sheeree Petrunka's description +facsimileTelephoneNumber: +1 213 198-7521 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 210-3828 +title: Chief Management Dictator +userPassword: Password1 +uid: PetrunkS +givenName: Sheeree +mail: PetrunkS@3eadf1668d9548a8a0a9a2df5d767d49.bitwarden.com +carLicense: AKJAPB +departmentNumber: 6788 +employeeType: Employee +homePhone: +1 213 306-4207 +initials: S. P. +mobile: +1 213 455-3640 +pager: +1 213 169-9147 +roomNumber: 9505 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Winifred Grelck,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winifred Grelck +sn: Grelck +description: This is Winifred Grelck's description +facsimileTelephoneNumber: +1 804 180-4450 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 839-5009 +title: Junior Management Architect +userPassword: Password1 +uid: GrelckW +givenName: Winifred +mail: GrelckW@33b35540a4bc4f6baa81886f1273a7c9.bitwarden.com +carLicense: LQSO5C +departmentNumber: 6158 +employeeType: Employee +homePhone: +1 804 577-8205 +initials: W. G. +mobile: +1 804 959-5196 +pager: +1 804 423-8410 +roomNumber: 8219 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Douglas Wilemon +sn: Wilemon +description: This is Douglas Wilemon's description +facsimileTelephoneNumber: +1 818 628-1615 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 818 508-6433 +title: Junior Janitorial Admin +userPassword: Password1 +uid: WilemonD +givenName: Douglas +mail: WilemonD@7be2adbfd042422e9bcc88e78cabf3cb.bitwarden.com +carLicense: M8WT95 +departmentNumber: 3661 +employeeType: Employee +homePhone: +1 818 160-8225 +initials: D. W. +mobile: +1 818 950-9373 +pager: +1 818 384-5419 +roomNumber: 8255 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jastinder Polakowski +sn: Polakowski +description: This is Jastinder Polakowski's description +facsimileTelephoneNumber: +1 415 124-7967 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 516-8538 +title: Master Administrative Janitor +userPassword: Password1 +uid: PolakowJ +givenName: Jastinder +mail: PolakowJ@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com +carLicense: KL7JP8 +departmentNumber: 2009 +employeeType: Normal +homePhone: +1 415 824-2850 +initials: J. P. +mobile: +1 415 683-2050 +pager: +1 415 652-7302 +roomNumber: 8464 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Toni Volkmer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toni Volkmer +sn: Volkmer +description: This is Toni Volkmer's description +facsimileTelephoneNumber: +1 804 706-1876 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 462-6037 +title: Junior Payroll Consultant +userPassword: Password1 +uid: VolkmerT +givenName: Toni +mail: VolkmerT@3f22733d317d4f91854fb0b865164d32.bitwarden.com +carLicense: N62Y5I +departmentNumber: 4028 +employeeType: Normal +homePhone: +1 804 760-2718 +initials: T. V. +mobile: +1 804 169-1765 +pager: +1 804 932-3925 +roomNumber: 9985 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alexandra Bassett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alexandra Bassett +sn: Bassett +description: This is Alexandra Bassett's description +facsimileTelephoneNumber: +1 818 729-7179 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 419-1588 +title: Junior Payroll Architect +userPassword: Password1 +uid: BassettA +givenName: Alexandra +mail: BassettA@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com +carLicense: JGKMRD +departmentNumber: 9778 +employeeType: Employee +homePhone: +1 818 679-5158 +initials: A. B. +mobile: +1 818 689-1911 +pager: +1 818 372-3640 +roomNumber: 8231 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ineke Aloi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ineke Aloi +sn: Aloi +description: This is Ineke Aloi's description +facsimileTelephoneNumber: +1 804 927-1368 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 237-3240 +title: Junior Management Architect +userPassword: Password1 +uid: AloiI +givenName: Ineke +mail: AloiI@2b13da408414484c934b524c33272c48.bitwarden.com +carLicense: R58MOS +departmentNumber: 5172 +employeeType: Contract +homePhone: +1 804 650-3137 +initials: I. A. +mobile: +1 804 755-7723 +pager: +1 804 182-8674 +roomNumber: 8018 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meredithe Comtois +sn: Comtois +description: This is Meredithe Comtois's description +facsimileTelephoneNumber: +1 206 456-4604 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 930-9312 +title: Junior Human Resources Artist +userPassword: Password1 +uid: ComtoisM +givenName: Meredithe +mail: ComtoisM@1fa19cc59b0a4b048ab223f06dc01275.bitwarden.com +carLicense: JDDUC4 +departmentNumber: 7821 +employeeType: Employee +homePhone: +1 206 944-3844 +initials: M. C. +mobile: +1 206 647-8317 +pager: +1 206 569-8527 +roomNumber: 9762 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shafiq Hearn,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shafiq Hearn +sn: Hearn +description: This is Shafiq Hearn's description +facsimileTelephoneNumber: +1 213 338-1111 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 230-2820 +title: Master Payroll Vice President +userPassword: Password1 +uid: HearnS +givenName: Shafiq +mail: HearnS@3118b07730ef4ee1ba02df2d8acb61a4.bitwarden.com +carLicense: 0LF895 +departmentNumber: 9701 +employeeType: Contract +homePhone: +1 213 781-3951 +initials: S. H. +mobile: +1 213 280-8918 +pager: +1 213 456-3574 +roomNumber: 8043 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bucklin Venne,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bucklin Venne +sn: Venne +description: This is Bucklin Venne's description +facsimileTelephoneNumber: +1 818 365-9830 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 852-4838 +title: Supreme Management Janitor +userPassword: Password1 +uid: VenneB +givenName: Bucklin +mail: VenneB@0dc9183f5edd4f868911cb0b9c90c604.bitwarden.com +carLicense: 7HEHQY +departmentNumber: 4705 +employeeType: Normal +homePhone: +1 818 390-8511 +initials: B. V. +mobile: +1 818 468-7151 +pager: +1 818 622-7695 +roomNumber: 9043 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Modesta Moetteli +sn: Moetteli +description: This is Modesta Moetteli's description +facsimileTelephoneNumber: +1 415 893-7335 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 866-4905 +title: Chief Human Resources Czar +userPassword: Password1 +uid: MoettelM +givenName: Modesta +mail: MoettelM@c51f0fa4b3c84c5e87c57318cac19216.bitwarden.com +carLicense: 6S0VIV +departmentNumber: 1430 +employeeType: Contract +homePhone: +1 415 170-2506 +initials: M. M. +mobile: +1 415 915-5503 +pager: +1 415 515-2492 +roomNumber: 9953 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gisele Gaudet +sn: Gaudet +description: This is Gisele Gaudet's description +facsimileTelephoneNumber: +1 818 349-5371 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 184-2376 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: GaudetG +givenName: Gisele +mail: GaudetG@ba5fbd8ccee64957820f429bea9cbd2b.bitwarden.com +carLicense: 1K6E1L +departmentNumber: 2546 +employeeType: Normal +homePhone: +1 818 708-9625 +initials: G. G. +mobile: +1 818 160-1457 +pager: +1 818 483-6398 +roomNumber: 8320 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Theodora Kendall,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theodora Kendall +sn: Kendall +description: This is Theodora Kendall's description +facsimileTelephoneNumber: +1 818 933-5393 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 200-6027 +title: Associate Management Evangelist +userPassword: Password1 +uid: KendallT +givenName: Theodora +mail: KendallT@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com +carLicense: NHLHCK +departmentNumber: 4759 +employeeType: Employee +homePhone: +1 818 390-3760 +initials: T. K. +mobile: +1 818 952-2011 +pager: +1 818 665-2300 +roomNumber: 8183 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kee Simanskis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kee Simanskis +sn: Simanskis +description: This is Kee Simanskis's description +facsimileTelephoneNumber: +1 213 785-8981 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 968-4165 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: SimanskK +givenName: Kee +mail: SimanskK@084a0f09394c4019a2e37bab0c6dfc4d.bitwarden.com +carLicense: N4IDAH +departmentNumber: 2547 +employeeType: Contract +homePhone: +1 213 930-9652 +initials: K. S. +mobile: +1 213 763-6360 +pager: +1 213 560-2887 +roomNumber: 8658 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Micky Moorefield,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micky Moorefield +sn: Moorefield +description: This is Micky Moorefield's description +facsimileTelephoneNumber: +1 213 641-1358 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 258-8505 +title: Supreme Management Technician +userPassword: Password1 +uid: MoorefiM +givenName: Micky +mail: MoorefiM@e57ea92ee58c48afbafa0ac14075f3d3.bitwarden.com +carLicense: F2YJL4 +departmentNumber: 3970 +employeeType: Employee +homePhone: +1 213 459-1041 +initials: M. M. +mobile: +1 213 132-9810 +pager: +1 213 996-8101 +roomNumber: 9399 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Saraann Helpline,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saraann Helpline +sn: Helpline +description: This is Saraann Helpline's description +facsimileTelephoneNumber: +1 818 809-1370 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 330-2823 +title: Master Product Testing Architect +userPassword: Password1 +uid: HelplinS +givenName: Saraann +mail: HelplinS@d4be1d4cbeff459bb380038ad268b7ac.bitwarden.com +carLicense: F0TCIG +departmentNumber: 4544 +employeeType: Employee +homePhone: +1 818 272-6093 +initials: S. H. +mobile: +1 818 410-7529 +pager: +1 818 485-6203 +roomNumber: 9474 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Blondy Kluke,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blondy Kluke +sn: Kluke +description: This is Blondy Kluke's description +facsimileTelephoneNumber: +1 213 462-4999 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 392-8791 +title: Supreme Management Figurehead +userPassword: Password1 +uid: KlukeB +givenName: Blondy +mail: KlukeB@de96a17ce06e4487ba5f98c80195f121.bitwarden.com +carLicense: 4171QU +departmentNumber: 3471 +employeeType: Normal +homePhone: +1 213 356-6591 +initials: B. K. +mobile: +1 213 973-8720 +pager: +1 213 813-3075 +roomNumber: 8942 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marys Edgette,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marys Edgette +sn: Edgette +description: This is Marys Edgette's description +facsimileTelephoneNumber: +1 213 839-1193 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 156-4641 +title: Associate Administrative Sales Rep +userPassword: Password1 +uid: EdgetteM +givenName: Marys +mail: EdgetteM@e8e2b56db83b4ff19e981322f6e68e27.bitwarden.com +carLicense: 4VJIP0 +departmentNumber: 2608 +employeeType: Normal +homePhone: +1 213 176-4029 +initials: M. E. +mobile: +1 213 340-4701 +pager: +1 213 177-2057 +roomNumber: 8471 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilyssa Norczen +sn: Norczen +description: This is Ilyssa Norczen's description +facsimileTelephoneNumber: +1 408 933-2415 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 408 793-9665 +title: Master Product Testing Visionary +userPassword: Password1 +uid: NorczenI +givenName: Ilyssa +mail: NorczenI@37ef93fb374e4550b60ee55424a070b4.bitwarden.com +carLicense: 8LKGKO +departmentNumber: 3842 +employeeType: Contract +homePhone: +1 408 207-8875 +initials: I. N. +mobile: +1 408 504-5929 +pager: +1 408 517-6589 +roomNumber: 9073 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Verina McGuigan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verina McGuigan +sn: McGuigan +description: This is Verina McGuigan's description +facsimileTelephoneNumber: +1 415 700-4606 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 368-8260 +title: Associate Payroll Consultant +userPassword: Password1 +uid: McGuigaV +givenName: Verina +mail: McGuigaV@5f494e5d5c2b48bd9e0d3f42e62d76ee.bitwarden.com +carLicense: FHVKPP +departmentNumber: 7699 +employeeType: Normal +homePhone: +1 415 801-8092 +initials: V. M. +mobile: +1 415 385-9072 +pager: +1 415 361-9295 +roomNumber: 8511 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Beryl Desmond,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beryl Desmond +sn: Desmond +description: This is Beryl Desmond's description +facsimileTelephoneNumber: +1 408 851-8723 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 759-7000 +title: Associate Management Admin +userPassword: Password1 +uid: DesmondB +givenName: Beryl +mail: DesmondB@7f8aff875b274954baafb6b3b56714e2.bitwarden.com +carLicense: UPPL20 +departmentNumber: 5439 +employeeType: Contract +homePhone: +1 408 207-4281 +initials: B. D. +mobile: +1 408 931-4547 +pager: +1 408 988-8607 +roomNumber: 9815 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sydel Staples,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sydel Staples +sn: Staples +description: This is Sydel Staples's description +facsimileTelephoneNumber: +1 415 364-7326 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 415 111-4604 +title: Master Janitorial Technician +userPassword: Password1 +uid: StaplesS +givenName: Sydel +mail: StaplesS@f8d4f8ae5e28413fb1f47c0eed0d375d.bitwarden.com +carLicense: SCLBDV +departmentNumber: 1884 +employeeType: Contract +homePhone: +1 415 829-1100 +initials: S. S. +mobile: +1 415 343-9578 +pager: +1 415 367-9113 +roomNumber: 8067 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Letta Kalyani,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Letta Kalyani +sn: Kalyani +description: This is Letta Kalyani's description +facsimileTelephoneNumber: +1 510 100-5668 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 510 170-1130 +title: Supreme Peons Engineer +userPassword: Password1 +uid: KalyaniL +givenName: Letta +mail: KalyaniL@06b92eab0752450c93185ff5957a8ffb.bitwarden.com +carLicense: 4G3F7I +departmentNumber: 1915 +employeeType: Normal +homePhone: +1 510 115-4784 +initials: L. K. +mobile: +1 510 626-7229 +pager: +1 510 140-2560 +roomNumber: 8409 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shuo Anstett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shuo Anstett +sn: Anstett +description: This is Shuo Anstett's description +facsimileTelephoneNumber: +1 213 647-5264 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 240-6582 +title: Supreme Product Development Sales Rep +userPassword: Password1 +uid: AnstettS +givenName: Shuo +mail: AnstettS@06fecf470a2d4fa2a3e3213e29056ac5.bitwarden.com +carLicense: DKBRCR +departmentNumber: 9301 +employeeType: Contract +homePhone: +1 213 592-6217 +initials: S. A. +mobile: +1 213 866-1192 +pager: +1 213 542-6046 +roomNumber: 8558 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Winifred Billing,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winifred Billing +sn: Billing +description: This is Winifred Billing's description +facsimileTelephoneNumber: +1 818 164-1139 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 699-4679 +title: Junior Payroll Assistant +userPassword: Password1 +uid: BillingW +givenName: Winifred +mail: BillingW@504b7fa15e81498b91140ca23e9bafd1.bitwarden.com +carLicense: SXJGRE +departmentNumber: 7651 +employeeType: Contract +homePhone: +1 818 958-2578 +initials: W. B. +mobile: +1 818 811-4394 +pager: +1 818 658-6633 +roomNumber: 9530 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Colene Colwell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colene Colwell +sn: Colwell +description: This is Colene Colwell's description +facsimileTelephoneNumber: +1 408 268-6850 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 679-3008 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: ColwellC +givenName: Colene +mail: ColwellC@c6c308b188d84d848e3ff3cf9a7dd81c.bitwarden.com +carLicense: FVUFNU +departmentNumber: 2834 +employeeType: Normal +homePhone: +1 408 623-5103 +initials: C. C. +mobile: +1 408 106-4665 +pager: +1 408 538-7845 +roomNumber: 9934 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Isabelita Irving,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isabelita Irving +sn: Irving +description: This is Isabelita Irving's description +facsimileTelephoneNumber: +1 804 903-3306 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 752-8608 +title: Junior Management Punk +userPassword: Password1 +uid: IrvingI +givenName: Isabelita +mail: IrvingI@93ab0817a8144a1a8bd2837bd0ee0f5c.bitwarden.com +carLicense: DSB09H +departmentNumber: 8609 +employeeType: Normal +homePhone: +1 804 357-7099 +initials: I. I. +mobile: +1 804 307-5521 +pager: +1 804 827-3298 +roomNumber: 8608 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Raudres Fleischer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raudres Fleischer +sn: Fleischer +description: This is Raudres Fleischer's description +facsimileTelephoneNumber: +1 415 493-5132 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 163-2381 +title: Junior Administrative Director +userPassword: Password1 +uid: FleischR +givenName: Raudres +mail: FleischR@feab464eed244fca93a5368f188977a1.bitwarden.com +carLicense: AY2XTD +departmentNumber: 3249 +employeeType: Contract +homePhone: +1 415 960-9760 +initials: R. F. +mobile: +1 415 676-6306 +pager: +1 415 564-4777 +roomNumber: 9313 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomson Barkwill +sn: Barkwill +description: This is Thomson Barkwill's description +facsimileTelephoneNumber: +1 804 525-7209 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 792-4833 +title: Master Product Testing Punk +userPassword: Password1 +uid: BarkwilT +givenName: Thomson +mail: BarkwilT@8f055851cf2e446194b128d0faf47339.bitwarden.com +carLicense: PA5HC2 +departmentNumber: 9463 +employeeType: Contract +homePhone: +1 804 965-5971 +initials: T. B. +mobile: +1 804 731-5253 +pager: +1 804 795-7998 +roomNumber: 8995 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Laslo Anstett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laslo Anstett +sn: Anstett +description: This is Laslo Anstett's description +facsimileTelephoneNumber: +1 818 998-5046 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 711-2009 +title: Master Human Resources Visionary +userPassword: Password1 +uid: AnstettL +givenName: Laslo +mail: AnstettL@427178a8618c4a42931dd481e9a5bd65.bitwarden.com +carLicense: X31V8O +departmentNumber: 4692 +employeeType: Normal +homePhone: +1 818 596-1805 +initials: L. A. +mobile: +1 818 646-2787 +pager: +1 818 363-3837 +roomNumber: 9124 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ovila Liverman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ovila Liverman +sn: Liverman +description: This is Ovila Liverman's description +facsimileTelephoneNumber: +1 415 367-4087 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 475-1484 +title: Junior Management Admin +userPassword: Password1 +uid: LivermaO +givenName: Ovila +mail: LivermaO@4a562374ace845b8b062489d81f91f68.bitwarden.com +carLicense: 12FNEG +departmentNumber: 9836 +employeeType: Contract +homePhone: +1 415 836-9632 +initials: O. L. +mobile: +1 415 249-4481 +pager: +1 415 546-6292 +roomNumber: 8949 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Angy Walkins,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angy Walkins +sn: Walkins +description: This is Angy Walkins's description +facsimileTelephoneNumber: +1 415 575-4791 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 109-6204 +title: Associate Payroll Technician +userPassword: Password1 +uid: WalkinsA +givenName: Angy +mail: WalkinsA@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com +carLicense: OMPTJE +departmentNumber: 5843 +employeeType: Normal +homePhone: +1 415 134-9347 +initials: A. W. +mobile: +1 415 579-1660 +pager: +1 415 331-6867 +roomNumber: 9883 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hesham Ellison,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hesham Ellison +sn: Ellison +description: This is Hesham Ellison's description +facsimileTelephoneNumber: +1 206 179-5273 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 794-6859 +title: Chief Management Fellow +userPassword: Password1 +uid: EllisonH +givenName: Hesham +mail: EllisonH@dcfeb1e34dfd4d498a4c69e47113773f.bitwarden.com +carLicense: GQXI8H +departmentNumber: 5054 +employeeType: Employee +homePhone: +1 206 497-6502 +initials: H. E. +mobile: +1 206 904-3258 +pager: +1 206 587-4895 +roomNumber: 8777 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Arnett Boone,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arnett Boone +sn: Boone +description: This is Arnett Boone's description +facsimileTelephoneNumber: +1 408 833-4301 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 408 594-8441 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: BooneA +givenName: Arnett +mail: BooneA@3ab4b0bbf0e7419c9f849fbf29c78286.bitwarden.com +carLicense: YUPBQU +departmentNumber: 2475 +employeeType: Employee +homePhone: +1 408 359-8788 +initials: A. B. +mobile: +1 408 689-5519 +pager: +1 408 506-3357 +roomNumber: 8218 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tawauna Culver,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tawauna Culver +sn: Culver +description: This is Tawauna Culver's description +facsimileTelephoneNumber: +1 408 506-7403 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 505-2920 +title: Master Human Resources Assistant +userPassword: Password1 +uid: CulverT +givenName: Tawauna +mail: CulverT@826f44c090e247dea6dde88876c0151e.bitwarden.com +carLicense: LI9YBJ +departmentNumber: 7879 +employeeType: Employee +homePhone: +1 408 313-9378 +initials: T. C. +mobile: +1 408 895-2578 +pager: +1 408 316-6648 +roomNumber: 9438 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Annelise Traulich,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annelise Traulich +sn: Traulich +description: This is Annelise Traulich's description +facsimileTelephoneNumber: +1 510 125-8557 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 732-3240 +title: Associate Human Resources President +userPassword: Password1 +uid: TraulicA +givenName: Annelise +mail: TraulicA@04afc29a247d444f9a8e905bda30c780.bitwarden.com +carLicense: OWKO8B +departmentNumber: 9018 +employeeType: Contract +homePhone: +1 510 103-3745 +initials: A. T. +mobile: +1 510 246-2582 +pager: +1 510 123-6257 +roomNumber: 8541 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Farouk Goridkov,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farouk Goridkov +sn: Goridkov +description: This is Farouk Goridkov's description +facsimileTelephoneNumber: +1 510 623-1268 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 595-4008 +title: Master Peons Evangelist +userPassword: Password1 +uid: GoridkoF +givenName: Farouk +mail: GoridkoF@685481fe6bd14be085fc26453aa34d71.bitwarden.com +carLicense: S5SMK5 +departmentNumber: 7571 +employeeType: Normal +homePhone: +1 510 155-6101 +initials: F. G. +mobile: +1 510 602-1698 +pager: +1 510 633-6254 +roomNumber: 8597 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Loris Huestis,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loris Huestis +sn: Huestis +description: This is Loris Huestis's description +facsimileTelephoneNumber: +1 206 675-9210 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 253-3871 +title: Associate Management Vice President +userPassword: Password1 +uid: HuestisL +givenName: Loris +mail: HuestisL@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com +carLicense: JO1T4T +departmentNumber: 1742 +employeeType: Normal +homePhone: +1 206 601-3954 +initials: L. H. +mobile: +1 206 129-7534 +pager: +1 206 898-1140 +roomNumber: 9516 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabrina Gascho +sn: Gascho +description: This is Sabrina Gascho's description +facsimileTelephoneNumber: +1 206 649-1926 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 307-1408 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: GaschoS +givenName: Sabrina +mail: GaschoS@c3a00c67940342bebf6eb781d8fd6a4c.bitwarden.com +carLicense: EHRYOI +departmentNumber: 9679 +employeeType: Normal +homePhone: +1 206 607-6042 +initials: S. G. +mobile: +1 206 565-3176 +pager: +1 206 728-4131 +roomNumber: 9914 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sile Creighton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sile Creighton +sn: Creighton +description: This is Sile Creighton's description +facsimileTelephoneNumber: +1 510 829-4593 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 291-7375 +title: Associate Human Resources Artist +userPassword: Password1 +uid: CreightS +givenName: Sile +mail: CreightS@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com +carLicense: 7JGVWC +departmentNumber: 1918 +employeeType: Employee +homePhone: +1 510 158-4758 +initials: S. C. +mobile: +1 510 521-9158 +pager: +1 510 748-4513 +roomNumber: 9311 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Deborah Marui,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deborah Marui +sn: Marui +description: This is Deborah Marui's description +facsimileTelephoneNumber: +1 818 531-4239 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 145-6132 +title: Chief Payroll Technician +userPassword: Password1 +uid: MaruiD +givenName: Deborah +mail: MaruiD@b5bcc4ce776e4805ab4216703177730e.bitwarden.com +carLicense: 7Q3DTB +departmentNumber: 1827 +employeeType: Contract +homePhone: +1 818 240-2124 +initials: D. M. +mobile: +1 818 667-5704 +pager: +1 818 354-4004 +roomNumber: 8413 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Drona Hahn,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drona Hahn +sn: Hahn +description: This is Drona Hahn's description +facsimileTelephoneNumber: +1 408 676-5962 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 850-4399 +title: Associate Peons Figurehead +userPassword: Password1 +uid: HahnD +givenName: Drona +mail: HahnD@59110a8eb1b44c7887a8222252c623b1.bitwarden.com +carLicense: P4WGK5 +departmentNumber: 4597 +employeeType: Contract +homePhone: +1 408 899-3324 +initials: D. H. +mobile: +1 408 739-9181 +pager: +1 408 724-9716 +roomNumber: 9771 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florenza Nyberg +sn: Nyberg +description: This is Florenza Nyberg's description +facsimileTelephoneNumber: +1 804 317-6007 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 137-2138 +title: Master Product Testing Vice President +userPassword: Password1 +uid: NybergF +givenName: Florenza +mail: NybergF@1ee541f8be124dfb9bee70e5bd91693b.bitwarden.com +carLicense: V6TRX0 +departmentNumber: 4968 +employeeType: Normal +homePhone: +1 804 206-7430 +initials: F. N. +mobile: +1 804 150-8006 +pager: +1 804 393-9740 +roomNumber: 8393 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Genia Pewitt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genia Pewitt +sn: Pewitt +description: This is Genia Pewitt's description +facsimileTelephoneNumber: +1 408 450-8492 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 702-5177 +title: Master Product Testing Stooge +userPassword: Password1 +uid: PewittG +givenName: Genia +mail: PewittG@0c75759c6a414aae8103d4c8529d60da.bitwarden.com +carLicense: QAAKPS +departmentNumber: 6568 +employeeType: Employee +homePhone: +1 408 628-4546 +initials: G. P. +mobile: +1 408 385-4908 +pager: +1 408 420-4131 +roomNumber: 8041 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Annet Bagshaw,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annet Bagshaw +sn: Bagshaw +description: This is Annet Bagshaw's description +facsimileTelephoneNumber: +1 415 479-7754 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 415 365-4944 +title: Master Peons President +userPassword: Password1 +uid: BagshawA +givenName: Annet +mail: BagshawA@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com +carLicense: F0NHAY +departmentNumber: 3626 +employeeType: Normal +homePhone: +1 415 346-4739 +initials: A. B. +mobile: +1 415 579-8538 +pager: +1 415 911-6110 +roomNumber: 9761 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Martha Hilaire,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martha Hilaire +sn: Hilaire +description: This is Martha Hilaire's description +facsimileTelephoneNumber: +1 818 953-3816 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 941-2317 +title: Supreme Product Development Janitor +userPassword: Password1 +uid: HilaireM +givenName: Martha +mail: HilaireM@60825058a7f74da9878a9c767bd93e3a.bitwarden.com +carLicense: MAA0MN +departmentNumber: 7038 +employeeType: Employee +homePhone: +1 818 317-5226 +initials: M. H. +mobile: +1 818 541-8199 +pager: +1 818 379-6759 +roomNumber: 8895 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Consuelo Welch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Consuelo Welch +sn: Welch +description: This is Consuelo Welch's description +facsimileTelephoneNumber: +1 213 787-1645 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 818-3520 +title: Associate Management Figurehead +userPassword: Password1 +uid: WelchC +givenName: Consuelo +mail: WelchC@303ac29ae28a4feca207111066bb217f.bitwarden.com +carLicense: 4KD181 +departmentNumber: 2041 +employeeType: Normal +homePhone: +1 213 744-7152 +initials: C. W. +mobile: +1 213 361-9944 +pager: +1 213 967-9565 +roomNumber: 9107 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marti Petrea,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marti Petrea +sn: Petrea +description: This is Marti Petrea's description +facsimileTelephoneNumber: +1 818 894-1794 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 673-1044 +title: Junior Product Development Grunt +userPassword: Password1 +uid: PetreaM +givenName: Marti +mail: PetreaM@92d64cb2a6f949499e2d502731b02c99.bitwarden.com +carLicense: A46YIS +departmentNumber: 7950 +employeeType: Contract +homePhone: +1 818 122-5817 +initials: M. P. +mobile: +1 818 101-1309 +pager: +1 818 528-1373 +roomNumber: 9903 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pratibha Gater,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pratibha Gater +sn: Gater +description: This is Pratibha Gater's description +facsimileTelephoneNumber: +1 213 559-8066 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 617-9147 +title: Associate Product Testing Punk +userPassword: Password1 +uid: GaterP +givenName: Pratibha +mail: GaterP@b1466a7610494a6ebb6083b758d41799.bitwarden.com +carLicense: ATYVTE +departmentNumber: 5291 +employeeType: Normal +homePhone: +1 213 638-5986 +initials: P. G. +mobile: +1 213 173-4109 +pager: +1 213 870-7156 +roomNumber: 9147 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lottie Cochrane +sn: Cochrane +description: This is Lottie Cochrane's description +facsimileTelephoneNumber: +1 213 236-6583 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 580-1982 +title: Junior Janitorial Czar +userPassword: Password1 +uid: CochranL +givenName: Lottie +mail: CochranL@18060edcc6234a8b8fe795c650ecf126.bitwarden.com +carLicense: N28A7T +departmentNumber: 2281 +employeeType: Contract +homePhone: +1 213 214-1136 +initials: L. C. +mobile: +1 213 800-7137 +pager: +1 213 953-6852 +roomNumber: 8966 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pojanart Edey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pojanart Edey +sn: Edey +description: This is Pojanart Edey's description +facsimileTelephoneNumber: +1 818 990-8212 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 818 659-7439 +title: Supreme Peons Technician +userPassword: Password1 +uid: EdeyP +givenName: Pojanart +mail: EdeyP@e116936732ce45789365cbd54acef482.bitwarden.com +carLicense: JFY00A +departmentNumber: 1661 +employeeType: Contract +homePhone: +1 818 714-4073 +initials: P. E. +mobile: +1 818 884-3376 +pager: +1 818 564-7325 +roomNumber: 9384 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maynard Shennan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maynard Shennan +sn: Shennan +description: This is Maynard Shennan's description +facsimileTelephoneNumber: +1 408 176-3907 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 832-5675 +title: Master Product Development Dictator +userPassword: Password1 +uid: ShennanM +givenName: Maynard +mail: ShennanM@221f532d70be4be481e9ed7c17f0c9ef.bitwarden.com +carLicense: NXYYUU +departmentNumber: 1486 +employeeType: Normal +homePhone: +1 408 250-9702 +initials: M. S. +mobile: +1 408 580-2303 +pager: +1 408 876-8817 +roomNumber: 8341 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Theressa Schultze,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theressa Schultze +sn: Schultze +description: This is Theressa Schultze's description +facsimileTelephoneNumber: +1 804 734-8708 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 804 621-1765 +title: Supreme Peons Czar +userPassword: Password1 +uid: SchultzT +givenName: Theressa +mail: SchultzT@96ba8bbe2ea64681a15c64fdfef143e6.bitwarden.com +carLicense: YI2WA0 +departmentNumber: 9736 +employeeType: Contract +homePhone: +1 804 103-9709 +initials: T. S. +mobile: +1 804 644-9324 +pager: +1 804 428-3416 +roomNumber: 9056 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nanon McIntyre,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nanon McIntyre +sn: McIntyre +description: This is Nanon McIntyre's description +facsimileTelephoneNumber: +1 415 372-6441 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 439-9424 +title: Associate Product Development Architect +userPassword: Password1 +uid: McIntyrN +givenName: Nanon +mail: McIntyrN@3013258ee5854ddca90a2234ad0323a5.bitwarden.com +carLicense: U7FNL8 +departmentNumber: 3899 +employeeType: Employee +homePhone: +1 415 274-6553 +initials: N. M. +mobile: +1 415 543-9930 +pager: +1 415 172-1785 +roomNumber: 9873 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Silvia Peiser,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silvia Peiser +sn: Peiser +description: This is Silvia Peiser's description +facsimileTelephoneNumber: +1 415 729-2550 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 188-1921 +title: Chief Peons Madonna +userPassword: Password1 +uid: PeiserS +givenName: Silvia +mail: PeiserS@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com +carLicense: IKPAU1 +departmentNumber: 9593 +employeeType: Employee +homePhone: +1 415 218-9170 +initials: S. P. +mobile: +1 415 431-6002 +pager: +1 415 965-8483 +roomNumber: 9204 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Meryl LeClair,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meryl LeClair +sn: LeClair +description: This is Meryl LeClair's description +facsimileTelephoneNumber: +1 415 349-7772 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 906-3369 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: LeClairM +givenName: Meryl +mail: LeClairM@7d4c2ab04b8a46e18a0c092fdac02490.bitwarden.com +carLicense: FAVHDL +departmentNumber: 7741 +employeeType: Employee +homePhone: +1 415 106-6387 +initials: M. L. +mobile: +1 415 495-6377 +pager: +1 415 202-9802 +roomNumber: 9369 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tariq Standel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tariq Standel +sn: Standel +description: This is Tariq Standel's description +facsimileTelephoneNumber: +1 804 768-6244 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 237-8414 +title: Supreme Janitorial Sales Rep +userPassword: Password1 +uid: StandelT +givenName: Tariq +mail: StandelT@831a31deb2a74949a5486f724fd8cfc2.bitwarden.com +carLicense: P57KQL +departmentNumber: 5014 +employeeType: Employee +homePhone: +1 804 161-1152 +initials: T. S. +mobile: +1 804 171-8349 +pager: +1 804 294-8614 +roomNumber: 9655 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jsandye Fouillard +sn: Fouillard +description: This is Jsandye Fouillard's description +facsimileTelephoneNumber: +1 415 292-9746 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 531-1386 +title: Chief Administrative Punk +userPassword: Password1 +uid: FouillaJ +givenName: Jsandye +mail: FouillaJ@94c56b5673e64272b822168ca80bb244.bitwarden.com +carLicense: WXRL5Y +departmentNumber: 6254 +employeeType: Normal +homePhone: +1 415 716-9210 +initials: J. F. +mobile: +1 415 440-8700 +pager: +1 415 909-6746 +roomNumber: 9426 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yeung Walpole,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yeung Walpole +sn: Walpole +description: This is Yeung Walpole's description +facsimileTelephoneNumber: +1 818 109-5494 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 582-5131 +title: Chief Human Resources Engineer +userPassword: Password1 +uid: WalpoleY +givenName: Yeung +mail: WalpoleY@ca56dc5bc8e34932af430390e3ed31ad.bitwarden.com +carLicense: A7JUBI +departmentNumber: 9642 +employeeType: Normal +homePhone: +1 818 309-4392 +initials: Y. W. +mobile: +1 818 277-6003 +pager: +1 818 639-7711 +roomNumber: 9754 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carita Timmerman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carita Timmerman +sn: Timmerman +description: This is Carita Timmerman's description +facsimileTelephoneNumber: +1 804 595-6560 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 890-2024 +title: Junior Janitorial Technician +userPassword: Password1 +uid: TimmermC +givenName: Carita +mail: TimmermC@f5b75ffb6f5e450e9b2f76ee0ad4b23f.bitwarden.com +carLicense: RYUFUQ +departmentNumber: 9614 +employeeType: Contract +homePhone: +1 804 350-4659 +initials: C. T. +mobile: +1 804 382-3147 +pager: +1 804 791-2118 +roomNumber: 8121 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ansley Kuczynski +sn: Kuczynski +description: This is Ansley Kuczynski's description +facsimileTelephoneNumber: +1 510 295-5171 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 265-6654 +title: Master Product Testing Stooge +userPassword: Password1 +uid: KuczynsA +givenName: Ansley +mail: KuczynsA@b1a6b6a5513044a8a462e54235172118.bitwarden.com +carLicense: GQDY8A +departmentNumber: 4702 +employeeType: Employee +homePhone: +1 510 668-7424 +initials: A. K. +mobile: +1 510 829-3211 +pager: +1 510 164-2819 +roomNumber: 9279 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Haley Herren,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haley Herren +sn: Herren +description: This is Haley Herren's description +facsimileTelephoneNumber: +1 415 490-8596 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 415 135-4313 +title: Chief Administrative Architect +userPassword: Password1 +uid: HerrenH +givenName: Haley +mail: HerrenH@faf6dcfa970440eb9717745c6f18eb4c.bitwarden.com +carLicense: 00D04I +departmentNumber: 7086 +employeeType: Contract +homePhone: +1 415 277-1971 +initials: H. H. +mobile: +1 415 302-6374 +pager: +1 415 271-2682 +roomNumber: 9422 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elbert Allard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elbert Allard +sn: Allard +description: This is Elbert Allard's description +facsimileTelephoneNumber: +1 213 790-1231 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 296-1892 +title: Supreme Human Resources Architect +userPassword: Password1 +uid: AllardE +givenName: Elbert +mail: AllardE@5410deb36536455cba5926244af94c93.bitwarden.com +carLicense: PRK2NI +departmentNumber: 1581 +employeeType: Contract +homePhone: +1 213 966-8165 +initials: E. A. +mobile: +1 213 532-9613 +pager: +1 213 129-7801 +roomNumber: 8523 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caterina Sguigna +sn: Sguigna +description: This is Caterina Sguigna's description +facsimileTelephoneNumber: +1 804 266-2818 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 867-5049 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: SguignaC +givenName: Caterina +mail: SguignaC@c14faf1ad0834d6d9e4b1880a48b9d9e.bitwarden.com +carLicense: S1IMNE +departmentNumber: 2160 +employeeType: Employee +homePhone: +1 804 587-6695 +initials: C. S. +mobile: +1 804 444-8947 +pager: +1 804 103-9606 +roomNumber: 8662 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Trix VO,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trix VO +sn: VO +description: This is Trix VO's description +facsimileTelephoneNumber: +1 510 604-3186 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 147-2081 +title: Junior Product Development Grunt +userPassword: Password1 +uid: VOT +givenName: Trix +mail: VOT@da7bd2be911046399d0c6417c3572f36.bitwarden.com +carLicense: XYLLCE +departmentNumber: 3814 +employeeType: Employee +homePhone: +1 510 472-1817 +initials: T. V. +mobile: +1 510 111-6053 +pager: +1 510 555-8294 +roomNumber: 8937 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tommi Kapsa,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tommi Kapsa +sn: Kapsa +description: This is Tommi Kapsa's description +facsimileTelephoneNumber: +1 804 663-2820 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 830-9938 +title: Supreme Peons President +userPassword: Password1 +uid: KapsaT +givenName: Tommi +mail: KapsaT@7ff24b8ce0c74adabb9529e4076ad209.bitwarden.com +carLicense: PGV9YQ +departmentNumber: 8907 +employeeType: Employee +homePhone: +1 804 684-1610 +initials: T. K. +mobile: +1 804 236-1935 +pager: +1 804 662-5963 +roomNumber: 8417 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Teriann Stastny,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teriann Stastny +sn: Stastny +description: This is Teriann Stastny's description +facsimileTelephoneNumber: +1 408 769-1063 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 860-1305 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: StastnyT +givenName: Teriann +mail: StastnyT@232ca6cb0ac84bf8be33192693a35ba0.bitwarden.com +carLicense: W84CXE +departmentNumber: 7449 +employeeType: Normal +homePhone: +1 408 180-4401 +initials: T. S. +mobile: +1 408 691-3998 +pager: +1 408 501-9702 +roomNumber: 9058 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khamdy Hennebury +sn: Hennebury +description: This is Khamdy Hennebury's description +facsimileTelephoneNumber: +1 408 612-7190 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 719-1077 +title: Junior Human Resources Architect +userPassword: Password1 +uid: HennebuK +givenName: Khamdy +mail: HennebuK@dab11b4d8bc0443d8cd54025f08f0682.bitwarden.com +carLicense: DNCY3D +departmentNumber: 9174 +employeeType: Normal +homePhone: +1 408 925-6048 +initials: K. H. +mobile: +1 408 604-2049 +pager: +1 408 128-6881 +roomNumber: 9856 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bryant Goel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryant Goel +sn: Goel +description: This is Bryant Goel's description +facsimileTelephoneNumber: +1 213 893-7330 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 247-6474 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: GoelB +givenName: Bryant +mail: GoelB@c73f6f11deac479aa597cfaff3007ea1.bitwarden.com +carLicense: T4O7JY +departmentNumber: 3255 +employeeType: Contract +homePhone: +1 213 870-4225 +initials: B. G. +mobile: +1 213 560-5624 +pager: +1 213 728-6509 +roomNumber: 9271 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Willabella Darnell,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willabella Darnell +sn: Darnell +description: This is Willabella Darnell's description +facsimileTelephoneNumber: +1 213 967-4735 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 902-3020 +title: Chief Peons Consultant +userPassword: Password1 +uid: DarnellW +givenName: Willabella +mail: DarnellW@5415c52be549497a9568e3a1cfa7947d.bitwarden.com +carLicense: CQ53JD +departmentNumber: 7388 +employeeType: Employee +homePhone: +1 213 344-9091 +initials: W. D. +mobile: +1 213 424-2650 +pager: +1 213 519-5575 +roomNumber: 9922 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Noemi Skerlak,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noemi Skerlak +sn: Skerlak +description: This is Noemi Skerlak's description +facsimileTelephoneNumber: +1 206 795-9583 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 390-4773 +title: Master Peons Evangelist +userPassword: Password1 +uid: SkerlakN +givenName: Noemi +mail: SkerlakN@9bbd1f32714548669db47c8054fa83ca.bitwarden.com +carLicense: P0T24B +departmentNumber: 9751 +employeeType: Contract +homePhone: +1 206 460-7786 +initials: N. S. +mobile: +1 206 264-1840 +pager: +1 206 952-3191 +roomNumber: 9861 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Veena Siefert,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veena Siefert +sn: Siefert +description: This is Veena Siefert's description +facsimileTelephoneNumber: +1 818 274-8608 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 363-1797 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: SiefertV +givenName: Veena +mail: SiefertV@66522c1458fb4708a90c5e0bc4989ef8.bitwarden.com +carLicense: B34Y9O +departmentNumber: 1646 +employeeType: Normal +homePhone: +1 818 996-2857 +initials: V. S. +mobile: +1 818 173-1336 +pager: +1 818 783-3191 +roomNumber: 9478 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xylina Shiflett +sn: Shiflett +description: This is Xylina Shiflett's description +facsimileTelephoneNumber: +1 408 563-1020 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 925-3912 +title: Master Product Testing President +userPassword: Password1 +uid: ShifletX +givenName: Xylina +mail: ShifletX@509acce88e824dae901a9dc813095e54.bitwarden.com +carLicense: OKPSGF +departmentNumber: 3437 +employeeType: Contract +homePhone: +1 408 530-4083 +initials: X. S. +mobile: +1 408 646-4928 +pager: +1 408 601-4296 +roomNumber: 9998 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karyn Frankenberger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karyn Frankenberger +sn: Frankenberger +description: This is Karyn Frankenberger's description +facsimileTelephoneNumber: +1 510 469-8147 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 103-4807 +title: Junior Management Vice President +userPassword: Password1 +uid: FrankenK +givenName: Karyn +mail: FrankenK@9f4dcfc9947f4a519924493e85b35351.bitwarden.com +carLicense: XGQXXP +departmentNumber: 4013 +employeeType: Employee +homePhone: +1 510 580-6380 +initials: K. F. +mobile: +1 510 212-4092 +pager: +1 510 749-4341 +roomNumber: 9054 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Angil Simpkin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angil Simpkin +sn: Simpkin +description: This is Angil Simpkin's description +facsimileTelephoneNumber: +1 415 573-6091 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 562-3485 +title: Junior Human Resources Madonna +userPassword: Password1 +uid: SimpkinA +givenName: Angil +mail: SimpkinA@a8ee069794fb480895e756160591d5bb.bitwarden.com +carLicense: X0LBP5 +departmentNumber: 3238 +employeeType: Employee +homePhone: +1 415 639-6838 +initials: A. S. +mobile: +1 415 282-6054 +pager: +1 415 969-6492 +roomNumber: 9569 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Berta Fetzko,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berta Fetzko +sn: Fetzko +description: This is Berta Fetzko's description +facsimileTelephoneNumber: +1 818 835-4879 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 818 317-1642 +title: Chief Product Development Architect +userPassword: Password1 +uid: FetzkoB +givenName: Berta +mail: FetzkoB@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com +carLicense: M606TR +departmentNumber: 9784 +employeeType: Normal +homePhone: +1 818 479-2513 +initials: B. F. +mobile: +1 818 331-6409 +pager: +1 818 337-4068 +roomNumber: 8010 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lance Saltsider,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lance Saltsider +sn: Saltsider +description: This is Lance Saltsider's description +facsimileTelephoneNumber: +1 408 588-5914 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 503-3824 +title: Associate Peons Assistant +userPassword: Password1 +uid: SaltsidL +givenName: Lance +mail: SaltsidL@0803272b02904fab981fd623789c71d1.bitwarden.com +carLicense: 5RXNYU +departmentNumber: 7377 +employeeType: Normal +homePhone: +1 408 411-5006 +initials: L. S. +mobile: +1 408 760-8634 +pager: +1 408 810-4620 +roomNumber: 8776 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vijai Brent,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vijai Brent +sn: Brent +description: This is Vijai Brent's description +facsimileTelephoneNumber: +1 818 512-1014 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 690-5418 +title: Associate Product Testing Punk +userPassword: Password1 +uid: BrentV +givenName: Vijai +mail: BrentV@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com +carLicense: 2MTIHK +departmentNumber: 8560 +employeeType: Normal +homePhone: +1 818 797-2291 +initials: V. B. +mobile: +1 818 786-9690 +pager: +1 818 328-9674 +roomNumber: 9383 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Miss Casper,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miss Casper +sn: Casper +description: This is Miss Casper's description +facsimileTelephoneNumber: +1 408 668-1795 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 914-6593 +title: Supreme Peons President +userPassword: Password1 +uid: CasperM +givenName: Miss +mail: CasperM@d71dc23a803f40a68bc3a90e123ecace.bitwarden.com +carLicense: 9ASXTM +departmentNumber: 8350 +employeeType: Contract +homePhone: +1 408 946-2484 +initials: M. C. +mobile: +1 408 648-8582 +pager: +1 408 288-6265 +roomNumber: 8632 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robyn Rousseau +sn: Rousseau +description: This is Robyn Rousseau's description +facsimileTelephoneNumber: +1 415 690-2541 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 980-6743 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: RousseaR +givenName: Robyn +mail: RousseaR@dec23ba70c794c32b757bd3a5f9b8dc4.bitwarden.com +carLicense: 1H1NUN +departmentNumber: 2344 +employeeType: Normal +homePhone: +1 415 418-7550 +initials: R. R. +mobile: +1 415 106-1923 +pager: +1 415 758-2645 +roomNumber: 8382 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Adrienne Askins,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrienne Askins +sn: Askins +description: This is Adrienne Askins's description +facsimileTelephoneNumber: +1 510 622-1836 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 510 266-2768 +title: Master Peons Admin +userPassword: Password1 +uid: AskinsA +givenName: Adrienne +mail: AskinsA@391d8dba5fa94d8e974df50be3a6709e.bitwarden.com +carLicense: 1N9J2R +departmentNumber: 2825 +employeeType: Contract +homePhone: +1 510 495-2476 +initials: A. A. +mobile: +1 510 234-8449 +pager: +1 510 405-6896 +roomNumber: 8686 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Omayma Kinos,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Omayma Kinos +sn: Kinos +description: This is Omayma Kinos's description +facsimileTelephoneNumber: +1 804 407-8159 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 202-8129 +title: Associate Management Admin +userPassword: Password1 +uid: KinosO +givenName: Omayma +mail: KinosO@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com +carLicense: HGEP57 +departmentNumber: 3517 +employeeType: Contract +homePhone: +1 804 521-6068 +initials: O. K. +mobile: +1 804 620-5374 +pager: +1 804 455-3458 +roomNumber: 8587 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Francene Babin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francene Babin +sn: Babin +description: This is Francene Babin's description +facsimileTelephoneNumber: +1 415 187-1335 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 693-3007 +title: Associate Administrative Punk +userPassword: Password1 +uid: BabinF +givenName: Francene +mail: BabinF@085bf0384c944c1888b51dc3d32dbe90.bitwarden.com +carLicense: V6OGE7 +departmentNumber: 5056 +employeeType: Contract +homePhone: +1 415 815-1965 +initials: F. B. +mobile: +1 415 993-7460 +pager: +1 415 321-1922 +roomNumber: 9424 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maitilde Clerke,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maitilde Clerke +sn: Clerke +description: This is Maitilde Clerke's description +facsimileTelephoneNumber: +1 408 857-7667 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 408 704-9769 +title: Supreme Management Engineer +userPassword: Password1 +uid: ClerkeM +givenName: Maitilde +mail: ClerkeM@4f865f7d6d624277ad8d5380d84e9135.bitwarden.com +carLicense: WAS0A2 +departmentNumber: 3869 +employeeType: Normal +homePhone: +1 408 764-1411 +initials: M. C. +mobile: +1 408 289-7842 +pager: +1 408 362-2142 +roomNumber: 9283 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wileen Martel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wileen Martel +sn: Martel +description: This is Wileen Martel's description +facsimileTelephoneNumber: +1 213 353-2164 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 938-6271 +title: Associate Administrative Admin +userPassword: Password1 +uid: MartelW +givenName: Wileen +mail: MartelW@232786cf6be745b08d532519f75fd65e.bitwarden.com +carLicense: RVFSOG +departmentNumber: 8951 +employeeType: Employee +homePhone: +1 213 354-7413 +initials: W. M. +mobile: +1 213 581-5074 +pager: +1 213 510-2831 +roomNumber: 9033 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zarah Ibarra +sn: Ibarra +description: This is Zarah Ibarra's description +facsimileTelephoneNumber: +1 213 777-9460 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 296-6149 +title: Chief Human Resources Stooge +userPassword: Password1 +uid: IbarraZ +givenName: Zarah +mail: IbarraZ@a33f574fa0a24162b343e74178659859.bitwarden.com +carLicense: 9R5R41 +departmentNumber: 9790 +employeeType: Normal +homePhone: +1 213 731-3187 +initials: Z. I. +mobile: +1 213 116-3631 +pager: +1 213 538-7238 +roomNumber: 8748 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charangit Fujiwara +sn: Fujiwara +description: This is Charangit Fujiwara's description +facsimileTelephoneNumber: +1 510 860-6574 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 936-3454 +title: Supreme Payroll Warrior +userPassword: Password1 +uid: FujiwarC +givenName: Charangit +mail: FujiwarC@dddb0ef21490453ca7770ab3e7c98c8a.bitwarden.com +carLicense: 0DGPVP +departmentNumber: 9836 +employeeType: Employee +homePhone: +1 510 508-2056 +initials: C. F. +mobile: +1 510 764-3903 +pager: +1 510 282-1912 +roomNumber: 8206 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pooh Wargnier +sn: Wargnier +description: This is Pooh Wargnier's description +facsimileTelephoneNumber: +1 510 465-8084 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 175-5840 +title: Junior Human Resources Artist +userPassword: Password1 +uid: WargnieP +givenName: Pooh +mail: WargnieP@cb0fd14a62264345a0844bec81676fd8.bitwarden.com +carLicense: TII8HB +departmentNumber: 2385 +employeeType: Contract +homePhone: +1 510 760-5196 +initials: P. W. +mobile: +1 510 500-6376 +pager: +1 510 857-3806 +roomNumber: 9106 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Salli Boroski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salli Boroski +sn: Boroski +description: This is Salli Boroski's description +facsimileTelephoneNumber: +1 415 707-8753 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 711-2341 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: BoroskiS +givenName: Salli +mail: BoroskiS@33ab1151291f417888dc3f1306704323.bitwarden.com +carLicense: 00GAE5 +departmentNumber: 2308 +employeeType: Employee +homePhone: +1 415 428-8128 +initials: S. B. +mobile: +1 415 228-4493 +pager: +1 415 839-5355 +roomNumber: 9484 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lissi Straub,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lissi Straub +sn: Straub +description: This is Lissi Straub's description +facsimileTelephoneNumber: +1 206 948-4158 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 782-3094 +title: Junior Peons Architect +userPassword: Password1 +uid: StraubL +givenName: Lissi +mail: StraubL@cb549985165642e0959235024946d6c4.bitwarden.com +carLicense: MDYAIP +departmentNumber: 3842 +employeeType: Normal +homePhone: +1 206 969-2461 +initials: L. S. +mobile: +1 206 384-3909 +pager: +1 206 262-9535 +roomNumber: 9901 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emmalynn Rintala +sn: Rintala +description: This is Emmalynn Rintala's description +facsimileTelephoneNumber: +1 408 499-3346 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 925-4307 +title: Chief Product Testing Artist +userPassword: Password1 +uid: RintalaE +givenName: Emmalynn +mail: RintalaE@4f1519512714466da3525736d08bec31.bitwarden.com +carLicense: 573NTE +departmentNumber: 1278 +employeeType: Contract +homePhone: +1 408 207-1745 +initials: E. R. +mobile: +1 408 518-4478 +pager: +1 408 141-7767 +roomNumber: 8940 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Adrian Paialunga,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrian Paialunga +sn: Paialunga +description: This is Adrian Paialunga's description +facsimileTelephoneNumber: +1 818 652-9383 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 818 887-8765 +title: Junior Administrative Writer +userPassword: Password1 +uid: PaialunA +givenName: Adrian +mail: PaialunA@8d7191d93987404d9ebb78d6e94231f3.bitwarden.com +carLicense: 73YRTN +departmentNumber: 4500 +employeeType: Employee +homePhone: +1 818 765-9530 +initials: A. P. +mobile: +1 818 959-9880 +pager: +1 818 767-1782 +roomNumber: 8495 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dido Kohl,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dido Kohl +sn: Kohl +description: This is Dido Kohl's description +facsimileTelephoneNumber: +1 206 321-7970 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 206 125-8580 +title: Junior Human Resources Artist +userPassword: Password1 +uid: KohlD +givenName: Dido +mail: KohlD@5c05b76ad7494928a53980603065304f.bitwarden.com +carLicense: FX3C4O +departmentNumber: 1179 +employeeType: Contract +homePhone: +1 206 996-5366 +initials: D. K. +mobile: +1 206 718-7635 +pager: +1 206 699-9487 +roomNumber: 9810 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hedwig Caviness +sn: Caviness +description: This is Hedwig Caviness's description +facsimileTelephoneNumber: +1 804 947-6378 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 804 239-1553 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: CavinesH +givenName: Hedwig +mail: CavinesH@1487aec275284e49a79c5c4099f33bdb.bitwarden.com +carLicense: QF14L6 +departmentNumber: 4353 +employeeType: Normal +homePhone: +1 804 865-9921 +initials: H. C. +mobile: +1 804 713-7924 +pager: +1 804 855-9352 +roomNumber: 9088 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joan Kamyszek +sn: Kamyszek +description: This is Joan Kamyszek's description +facsimileTelephoneNumber: +1 206 894-5183 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 206 604-3916 +title: Chief Janitorial Director +userPassword: Password1 +uid: KamyszeJ +givenName: Joan +mail: KamyszeJ@47f2dfd3a9d34b3ab2e3a42042757f0d.bitwarden.com +carLicense: I9QPA1 +departmentNumber: 8126 +employeeType: Contract +homePhone: +1 206 427-3217 +initials: J. K. +mobile: +1 206 417-6749 +pager: +1 206 883-3989 +roomNumber: 8830 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chung Yarber,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chung Yarber +sn: Yarber +description: This is Chung Yarber's description +facsimileTelephoneNumber: +1 804 147-3804 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 250-1576 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: YarberC +givenName: Chung +mail: YarberC@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com +carLicense: XYPJ51 +departmentNumber: 9961 +employeeType: Contract +homePhone: +1 804 753-2908 +initials: C. Y. +mobile: +1 804 757-5173 +pager: +1 804 442-8251 +roomNumber: 8720 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=KwokLan Starowicz,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KwokLan Starowicz +sn: Starowicz +description: This is KwokLan Starowicz's description +facsimileTelephoneNumber: +1 206 276-8647 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 206 415-4794 +title: Chief Management Artist +userPassword: Password1 +uid: StarowiK +givenName: KwokLan +mail: StarowiK@a377e29ea3c74b90af1de2d7e1b3a80b.bitwarden.com +carLicense: 0Q5UQT +departmentNumber: 3030 +employeeType: Contract +homePhone: +1 206 378-7474 +initials: K. S. +mobile: +1 206 613-5943 +pager: +1 206 284-9619 +roomNumber: 8066 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Odile Finane,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odile Finane +sn: Finane +description: This is Odile Finane's description +facsimileTelephoneNumber: +1 804 443-6423 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 405-9527 +title: Junior Peons Engineer +userPassword: Password1 +uid: FinaneO +givenName: Odile +mail: FinaneO@09d26a3ec6db4402823e536bf9d9abd8.bitwarden.com +carLicense: 6O7X2Y +departmentNumber: 1544 +employeeType: Contract +homePhone: +1 804 479-3338 +initials: O. F. +mobile: +1 804 820-1679 +pager: +1 804 620-9993 +roomNumber: 8161 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shila Wykoff,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shila Wykoff +sn: Wykoff +description: This is Shila Wykoff's description +facsimileTelephoneNumber: +1 804 966-3777 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 115-9159 +title: Master Janitorial Developer +userPassword: Password1 +uid: WykoffS +givenName: Shila +mail: WykoffS@22f46c043948431eb629c2788e97867d.bitwarden.com +carLicense: BWI5C2 +departmentNumber: 6837 +employeeType: Employee +homePhone: +1 804 955-3811 +initials: S. W. +mobile: +1 804 265-3370 +pager: +1 804 149-9973 +roomNumber: 9545 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nga Seroka,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nga Seroka +sn: Seroka +description: This is Nga Seroka's description +facsimileTelephoneNumber: +1 510 785-1765 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 629-8469 +title: Junior Human Resources Stooge +userPassword: Password1 +uid: SerokaN +givenName: Nga +mail: SerokaN@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com +carLicense: JS2SL7 +departmentNumber: 9465 +employeeType: Normal +homePhone: +1 510 961-8803 +initials: N. S. +mobile: +1 510 667-2036 +pager: +1 510 496-6697 +roomNumber: 9307 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gleda Ircstandards +sn: Ircstandards +description: This is Gleda Ircstandards's description +facsimileTelephoneNumber: +1 408 673-6735 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 444-8774 +title: Master Product Development Consultant +userPassword: Password1 +uid: IrcstanG +givenName: Gleda +mail: IrcstanG@6230ce48d06c4adba4fee16dacf3aacb.bitwarden.com +carLicense: KXSRCF +departmentNumber: 3023 +employeeType: Normal +homePhone: +1 408 510-4981 +initials: G. I. +mobile: +1 408 108-4878 +pager: +1 408 657-9542 +roomNumber: 9593 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Laurel Godfrey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laurel Godfrey +sn: Godfrey +description: This is Laurel Godfrey's description +facsimileTelephoneNumber: +1 206 127-3339 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 344-5232 +title: Associate Payroll Technician +userPassword: Password1 +uid: GodfreyL +givenName: Laurel +mail: GodfreyL@a9638d8de81a4990b97d38b8ec08064b.bitwarden.com +carLicense: DDLPP6 +departmentNumber: 9510 +employeeType: Employee +homePhone: +1 206 348-2640 +initials: L. G. +mobile: +1 206 317-8154 +pager: +1 206 337-5321 +roomNumber: 8042 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marja Brivet,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marja Brivet +sn: Brivet +description: This is Marja Brivet's description +facsimileTelephoneNumber: +1 408 173-4908 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 178-8763 +title: Associate Janitorial President +userPassword: Password1 +uid: BrivetM +givenName: Marja +mail: BrivetM@457f2ac4e79241acb223143f8483a7d0.bitwarden.com +carLicense: G2I5KQ +departmentNumber: 6454 +employeeType: Normal +homePhone: +1 408 124-3709 +initials: M. B. +mobile: +1 408 934-7176 +pager: +1 408 192-4913 +roomNumber: 8244 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aryn Kellerman +sn: Kellerman +description: This is Aryn Kellerman's description +facsimileTelephoneNumber: +1 510 891-2859 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 898-8782 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: KellermA +givenName: Aryn +mail: KellermA@9b4bb145d7634b188d0d60fab9cb2fce.bitwarden.com +carLicense: KWT7AF +departmentNumber: 8787 +employeeType: Contract +homePhone: +1 510 790-6927 +initials: A. K. +mobile: +1 510 326-8732 +pager: +1 510 297-3290 +roomNumber: 8447 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Fung Holvey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fung Holvey +sn: Holvey +description: This is Fung Holvey's description +facsimileTelephoneNumber: +1 415 476-1475 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 723-6718 +title: Supreme Management Madonna +userPassword: Password1 +uid: HolveyF +givenName: Fung +mail: HolveyF@785d053c77824c6b9058fedb831b5054.bitwarden.com +carLicense: TPUP55 +departmentNumber: 7997 +employeeType: Normal +homePhone: +1 415 818-4244 +initials: F. H. +mobile: +1 415 206-8016 +pager: +1 415 490-8297 +roomNumber: 8734 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Remy Freeth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Remy Freeth +sn: Freeth +description: This is Remy Freeth's description +facsimileTelephoneNumber: +1 415 956-6136 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 168-8311 +title: Master Product Testing Visionary +userPassword: Password1 +uid: FreethR +givenName: Remy +mail: FreethR@1c65db93a4244f2389821a52627d325e.bitwarden.com +carLicense: BJ42BY +departmentNumber: 2006 +employeeType: Contract +homePhone: +1 415 213-6427 +initials: R. F. +mobile: +1 415 776-9757 +pager: +1 415 860-9110 +roomNumber: 9882 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Christina Schwartz,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christina Schwartz +sn: Schwartz +description: This is Christina Schwartz's description +facsimileTelephoneNumber: +1 818 570-3099 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 223-1118 +title: Supreme Management Admin +userPassword: Password1 +uid: SchwartC +givenName: Christina +mail: SchwartC@09c55424f60f401a820af7f109784bda.bitwarden.com +carLicense: WPJ5TW +departmentNumber: 5405 +employeeType: Normal +homePhone: +1 818 386-4493 +initials: C. S. +mobile: +1 818 542-8474 +pager: +1 818 759-2490 +roomNumber: 8872 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sissy Snelling,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sissy Snelling +sn: Snelling +description: This is Sissy Snelling's description +facsimileTelephoneNumber: +1 804 560-2656 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 562-8523 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: SnellinS +givenName: Sissy +mail: SnellinS@33bb1d9a8f7a4440aa69d0f82177e2a4.bitwarden.com +carLicense: 8GW0XU +departmentNumber: 9008 +employeeType: Employee +homePhone: +1 804 786-2232 +initials: S. S. +mobile: +1 804 689-7100 +pager: +1 804 760-5339 +roomNumber: 8339 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Randa Cumpston,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randa Cumpston +sn: Cumpston +description: This is Randa Cumpston's description +facsimileTelephoneNumber: +1 510 824-4560 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 510 841-5976 +title: Chief Administrative Warrior +userPassword: Password1 +uid: CumpstoR +givenName: Randa +mail: CumpstoR@af5f99a04b4d4049bab4751bf65043cb.bitwarden.com +carLicense: S6EPX2 +departmentNumber: 7717 +employeeType: Contract +homePhone: +1 510 397-6348 +initials: R. C. +mobile: +1 510 147-4566 +pager: +1 510 513-5111 +roomNumber: 8773 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maitreya Dpu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maitreya Dpu +sn: Dpu +description: This is Maitreya Dpu's description +facsimileTelephoneNumber: +1 510 255-6977 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 510 396-6122 +title: Junior Administrative Writer +userPassword: Password1 +uid: DpuM +givenName: Maitreya +mail: DpuM@bc7c0ff60d4641f2b01474bcc8b086c8.bitwarden.com +carLicense: 2QXQ68 +departmentNumber: 5840 +employeeType: Employee +homePhone: +1 510 952-7097 +initials: M. D. +mobile: +1 510 236-7852 +pager: +1 510 454-9634 +roomNumber: 9267 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jon Giotis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jon Giotis +sn: Giotis +description: This is Jon Giotis's description +facsimileTelephoneNumber: +1 804 642-7363 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 804 207-7674 +title: Chief Product Testing Manager +userPassword: Password1 +uid: GiotisJ +givenName: Jon +mail: GiotisJ@df6375b797c34567a9e4770a61e55877.bitwarden.com +carLicense: LCOH1Q +departmentNumber: 6940 +employeeType: Contract +homePhone: +1 804 900-4417 +initials: J. G. +mobile: +1 804 819-7512 +pager: +1 804 797-3263 +roomNumber: 8537 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mala Kilner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mala Kilner +sn: Kilner +description: This is Mala Kilner's description +facsimileTelephoneNumber: +1 415 715-2874 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 415 651-1304 +title: Associate Product Development Stooge +userPassword: Password1 +uid: KilnerM +givenName: Mala +mail: KilnerM@0f4f6868b21d4ba883c28f9afa5b52cf.bitwarden.com +carLicense: WDM8HS +departmentNumber: 1058 +employeeType: Employee +homePhone: +1 415 196-1460 +initials: M. K. +mobile: +1 415 248-3187 +pager: +1 415 111-5454 +roomNumber: 9838 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Melanie Bubel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melanie Bubel +sn: Bubel +description: This is Melanie Bubel's description +facsimileTelephoneNumber: +1 408 645-3283 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 965-6902 +title: Chief Payroll Artist +userPassword: Password1 +uid: BubelM +givenName: Melanie +mail: BubelM@f5509b991c844dc9a39d99c61a3ee567.bitwarden.com +carLicense: IW8F5Y +departmentNumber: 6333 +employeeType: Employee +homePhone: +1 408 861-9651 +initials: M. B. +mobile: +1 408 318-8215 +pager: +1 408 744-8587 +roomNumber: 8506 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Collie Nentwich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Collie Nentwich +sn: Nentwich +description: This is Collie Nentwich's description +facsimileTelephoneNumber: +1 206 157-8560 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 758-4034 +title: Supreme Product Testing Punk +userPassword: Password1 +uid: NentwicC +givenName: Collie +mail: NentwicC@f87253151346446facf2c747687a955b.bitwarden.com +carLicense: B4RNMY +departmentNumber: 5006 +employeeType: Contract +homePhone: +1 206 450-7438 +initials: C. N. +mobile: +1 206 184-9824 +pager: +1 206 423-7708 +roomNumber: 8458 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Omer Piwkowski +sn: Piwkowski +description: This is Omer Piwkowski's description +facsimileTelephoneNumber: +1 818 954-1404 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 840-1105 +title: Junior Human Resources Madonna +userPassword: Password1 +uid: PiwkowsO +givenName: Omer +mail: PiwkowsO@72dcb42620634cf59fa336b64a03ee7a.bitwarden.com +carLicense: 51IS5T +departmentNumber: 6213 +employeeType: Normal +homePhone: +1 818 184-9329 +initials: O. P. +mobile: +1 818 508-4433 +pager: +1 818 374-5291 +roomNumber: 8653 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yussuf DorisHampton +sn: DorisHampton +description: This is Yussuf DorisHampton's description +facsimileTelephoneNumber: +1 510 494-8978 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 143-8953 +title: Associate Human Resources Grunt +userPassword: Password1 +uid: DorisHaY +givenName: Yussuf +mail: DorisHaY@b8436b0997234174a1d3652199251b81.bitwarden.com +carLicense: TM3ELH +departmentNumber: 1531 +employeeType: Employee +homePhone: +1 510 621-3422 +initials: Y. D. +mobile: +1 510 610-1172 +pager: +1 510 699-7093 +roomNumber: 8533 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Madella Feder,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madella Feder +sn: Feder +description: This is Madella Feder's description +facsimileTelephoneNumber: +1 415 795-2978 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 101-9957 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: FederM +givenName: Madella +mail: FederM@ca22d526a59d4676a611c2fc1101837d.bitwarden.com +carLicense: FEWUAN +departmentNumber: 4734 +employeeType: Normal +homePhone: +1 415 826-5733 +initials: M. F. +mobile: +1 415 295-3203 +pager: +1 415 721-4459 +roomNumber: 9723 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dela Hallenbeck +sn: Hallenbeck +description: This is Dela Hallenbeck's description +facsimileTelephoneNumber: +1 206 853-7301 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 460-3658 +title: Chief Administrative Punk +userPassword: Password1 +uid: HallenbD +givenName: Dela +mail: HallenbD@6ffe5ab0f525480aa833777930f34870.bitwarden.com +carLicense: U9JVOE +departmentNumber: 9775 +employeeType: Employee +homePhone: +1 206 787-9099 +initials: D. H. +mobile: +1 206 876-6087 +pager: +1 206 438-7665 +roomNumber: 8465 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Roman Burleigh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roman Burleigh +sn: Burleigh +description: This is Roman Burleigh's description +facsimileTelephoneNumber: +1 804 599-9739 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 174-3766 +title: Chief Product Development Vice President +userPassword: Password1 +uid: BurleigR +givenName: Roman +mail: BurleigR@d22cee8cdc104128b64ec5a3dc27a2cd.bitwarden.com +carLicense: 42YSM0 +departmentNumber: 9069 +employeeType: Contract +homePhone: +1 804 137-4221 +initials: R. B. +mobile: +1 804 958-9834 +pager: +1 804 521-2293 +roomNumber: 8710 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=SangMaun Nunn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SangMaun Nunn +sn: Nunn +description: This is SangMaun Nunn's description +facsimileTelephoneNumber: +1 206 998-5552 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 586-7937 +title: Chief Administrative Dictator +userPassword: Password1 +uid: NunnS +givenName: SangMaun +mail: NunnS@a756330f88da4d03abf12059d19a1462.bitwarden.com +carLicense: H86PKN +departmentNumber: 5039 +employeeType: Normal +homePhone: +1 206 639-5196 +initials: S. N. +mobile: +1 206 949-9133 +pager: +1 206 402-6298 +roomNumber: 9592 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranee OFCPARM +sn: OFCPARM +description: This is Ranee OFCPARM's description +facsimileTelephoneNumber: +1 818 217-7641 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 300-1521 +title: Master Product Testing Visionary +userPassword: Password1 +uid: OFCPARMR +givenName: Ranee +mail: OFCPARMR@2c23fea190c640299f3fdc976ce4b7f6.bitwarden.com +carLicense: NH64R8 +departmentNumber: 6369 +employeeType: Contract +homePhone: +1 818 233-4447 +initials: R. O. +mobile: +1 818 962-7482 +pager: +1 818 733-9012 +roomNumber: 9921 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Moria Auld,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moria Auld +sn: Auld +description: This is Moria Auld's description +facsimileTelephoneNumber: +1 213 755-1536 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 408-7348 +title: Supreme Payroll Mascot +userPassword: Password1 +uid: AuldM +givenName: Moria +mail: AuldM@848de2e1032948c1b5d78b7a20263232.bitwarden.com +carLicense: 43TBPU +departmentNumber: 8809 +employeeType: Contract +homePhone: +1 213 310-7081 +initials: M. A. +mobile: +1 213 135-7281 +pager: +1 213 722-3343 +roomNumber: 8397 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ted Demeulemeester,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ted Demeulemeester +sn: Demeulemeester +description: This is Ted Demeulemeester's description +facsimileTelephoneNumber: +1 415 252-3162 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 973-1544 +title: Junior Management Architect +userPassword: Password1 +uid: DemeuleT +givenName: Ted +mail: DemeuleT@d5289993561c41498ef7b2158a5f68d7.bitwarden.com +carLicense: 70X9SA +departmentNumber: 5737 +employeeType: Employee +homePhone: +1 415 178-8444 +initials: T. D. +mobile: +1 415 163-8839 +pager: +1 415 383-9682 +roomNumber: 9523 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bertha Lamont,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bertha Lamont +sn: Lamont +description: This is Bertha Lamont's description +facsimileTelephoneNumber: +1 415 977-9776 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 251-1719 +title: Supreme Payroll Mascot +userPassword: Password1 +uid: LamontB +givenName: Bertha +mail: LamontB@df6375b797c34567a9e4770a61e55877.bitwarden.com +carLicense: IFA51Q +departmentNumber: 6282 +employeeType: Normal +homePhone: +1 415 443-4407 +initials: B. L. +mobile: +1 415 849-9249 +pager: +1 415 620-3759 +roomNumber: 9342 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shlomo Bradbury +sn: Bradbury +description: This is Shlomo Bradbury's description +facsimileTelephoneNumber: +1 408 609-6329 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 428-7376 +title: Junior Human Resources Czar +userPassword: Password1 +uid: BradburS +givenName: Shlomo +mail: BradburS@ab3d1e9b742c4214a0c8d83acbe1ad8a.bitwarden.com +carLicense: PAB96T +departmentNumber: 4413 +employeeType: Employee +homePhone: +1 408 228-2330 +initials: S. B. +mobile: +1 408 433-9616 +pager: +1 408 483-8633 +roomNumber: 9259 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hayden Francese,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hayden Francese +sn: Francese +description: This is Hayden Francese's description +facsimileTelephoneNumber: +1 213 956-3581 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 692-8307 +title: Chief Product Development Architect +userPassword: Password1 +uid: FrancesH +givenName: Hayden +mail: FrancesH@37b876b4a91540b4b71770c7a49beee8.bitwarden.com +carLicense: Q3FH25 +departmentNumber: 5121 +employeeType: Employee +homePhone: +1 213 190-7495 +initials: H. F. +mobile: +1 213 609-1012 +pager: +1 213 409-7374 +roomNumber: 8158 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeannette Quante,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeannette Quante +sn: Quante +description: This is Jeannette Quante's description +facsimileTelephoneNumber: +1 206 589-9230 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 221-4167 +title: Master Management Czar +userPassword: Password1 +uid: QuanteJ +givenName: Jeannette +mail: QuanteJ@9cba00e55266421b93bd11c17d0407ed.bitwarden.com +carLicense: FF97GI +departmentNumber: 3164 +employeeType: Contract +homePhone: +1 206 921-9628 +initials: J. Q. +mobile: +1 206 356-8831 +pager: +1 206 757-7524 +roomNumber: 9096 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Steffane Middleton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steffane Middleton +sn: Middleton +description: This is Steffane Middleton's description +facsimileTelephoneNumber: +1 415 967-9796 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 352-8317 +title: Chief Peons Stooge +userPassword: Password1 +uid: MiddletS +givenName: Steffane +mail: MiddletS@3b02e13d586c4243a74a50de88d81685.bitwarden.com +carLicense: NBMU42 +departmentNumber: 7124 +employeeType: Contract +homePhone: +1 415 682-9744 +initials: S. M. +mobile: +1 415 223-7051 +pager: +1 415 370-7172 +roomNumber: 8815 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tetsuyuki Kwee +sn: Kwee +description: This is Tetsuyuki Kwee's description +facsimileTelephoneNumber: +1 213 712-7688 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 213 713-7871 +title: Associate Payroll Warrior +userPassword: Password1 +uid: KweeT +givenName: Tetsuyuki +mail: KweeT@4641f68e88f74b89a7d91f372f89c707.bitwarden.com +carLicense: XHKHRY +departmentNumber: 5891 +employeeType: Employee +homePhone: +1 213 494-5706 +initials: T. K. +mobile: +1 213 732-6642 +pager: +1 213 680-8214 +roomNumber: 8572 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Saied Streight,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saied Streight +sn: Streight +description: This is Saied Streight's description +facsimileTelephoneNumber: +1 510 903-1036 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 718-2044 +title: Associate Product Development Manager +userPassword: Password1 +uid: StreighS +givenName: Saied +mail: StreighS@5c51ed312b7d40789d1387ca1b76506e.bitwarden.com +carLicense: KI97RC +departmentNumber: 9789 +employeeType: Normal +homePhone: +1 510 313-6679 +initials: S. S. +mobile: +1 510 103-6328 +pager: +1 510 513-3175 +roomNumber: 9795 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marco Ethier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marco Ethier +sn: Ethier +description: This is Marco Ethier's description +facsimileTelephoneNumber: +1 804 921-4782 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 130-9198 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: EthierM +givenName: Marco +mail: EthierM@0f1f84ce6579498d8497bfb021e0f4e9.bitwarden.com +carLicense: 21TMRK +departmentNumber: 3122 +employeeType: Contract +homePhone: +1 804 242-8027 +initials: M. E. +mobile: +1 804 213-5982 +pager: +1 804 585-4239 +roomNumber: 9902 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carlyn Gallion,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlyn Gallion +sn: Gallion +description: This is Carlyn Gallion's description +facsimileTelephoneNumber: +1 818 148-1161 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 128-7484 +title: Chief Management Figurehead +userPassword: Password1 +uid: GallionC +givenName: Carlyn +mail: GallionC@ed183240d2274a60918dec7c056a1b86.bitwarden.com +carLicense: IGCTJ0 +departmentNumber: 3957 +employeeType: Contract +homePhone: +1 818 278-6356 +initials: C. G. +mobile: +1 818 353-3171 +pager: +1 818 491-5812 +roomNumber: 8510 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SvennErik Arcouet +sn: Arcouet +description: This is SvennErik Arcouet's description +facsimileTelephoneNumber: +1 213 673-1354 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 955-3297 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: ArcouetS +givenName: SvennErik +mail: ArcouetS@09240d9396fc4bb88db28084b91824ba.bitwarden.com +carLicense: BJXDMS +departmentNumber: 1802 +employeeType: Employee +homePhone: +1 213 379-8323 +initials: S. A. +mobile: +1 213 713-3469 +pager: +1 213 962-4627 +roomNumber: 9081 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pacific Maxin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pacific Maxin +sn: Maxin +description: This is Pacific Maxin's description +facsimileTelephoneNumber: +1 213 373-2050 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 213 418-7187 +title: Supreme Payroll Consultant +userPassword: Password1 +uid: MaxinP +givenName: Pacific +mail: MaxinP@7dbb126638b0419eb87d5c967cdeef20.bitwarden.com +carLicense: 5E38QX +departmentNumber: 9819 +employeeType: Employee +homePhone: +1 213 764-3206 +initials: P. M. +mobile: +1 213 488-3615 +pager: +1 213 810-9087 +roomNumber: 8782 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Coursey Breiten,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coursey Breiten +sn: Breiten +description: This is Coursey Breiten's description +facsimileTelephoneNumber: +1 510 128-5996 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 146-3006 +title: Supreme Product Testing Evangelist +userPassword: Password1 +uid: BreitenC +givenName: Coursey +mail: BreitenC@1eb2456e111c4bd988f50cdf3b94db14.bitwarden.com +carLicense: TECSS1 +departmentNumber: 5359 +employeeType: Employee +homePhone: +1 510 404-3128 +initials: C. B. +mobile: +1 510 567-8818 +pager: +1 510 365-1035 +roomNumber: 9098 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guglielma Goulette +sn: Goulette +description: This is Guglielma Goulette's description +facsimileTelephoneNumber: +1 804 234-6342 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 801-1961 +title: Master Product Testing Writer +userPassword: Password1 +uid: GoulettG +givenName: Guglielma +mail: GoulettG@92c6f7a15fa34e1ba82245e64e288948.bitwarden.com +carLicense: 1IL2SW +departmentNumber: 8836 +employeeType: Normal +homePhone: +1 804 991-4418 +initials: G. G. +mobile: +1 804 105-1743 +pager: +1 804 815-5959 +roomNumber: 8878 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brandea Bagi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandea Bagi +sn: Bagi +description: This is Brandea Bagi's description +facsimileTelephoneNumber: +1 213 409-1822 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 569-6959 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: BagiB +givenName: Brandea +mail: BagiB@76e7e62397cf46a7b8c004ca6e02f899.bitwarden.com +carLicense: E7YNQ1 +departmentNumber: 3543 +employeeType: Normal +homePhone: +1 213 289-1304 +initials: B. B. +mobile: +1 213 269-5892 +pager: +1 213 814-3482 +roomNumber: 9294 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Silva Hoag,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silva Hoag +sn: Hoag +description: This is Silva Hoag's description +facsimileTelephoneNumber: +1 213 549-2226 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 726-2159 +title: Associate Administrative Evangelist +userPassword: Password1 +uid: HoagS +givenName: Silva +mail: HoagS@46fcd2052d404a708ecce9dd268b7838.bitwarden.com +carLicense: H4TRDO +departmentNumber: 1886 +employeeType: Employee +homePhone: +1 213 418-6548 +initials: S. H. +mobile: +1 213 338-5067 +pager: +1 213 886-9580 +roomNumber: 8006 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sybilla Tipping,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sybilla Tipping +sn: Tipping +description: This is Sybilla Tipping's description +facsimileTelephoneNumber: +1 206 555-5716 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 307-7247 +title: Junior Product Development Dictator +userPassword: Password1 +uid: TippingS +givenName: Sybilla +mail: TippingS@d0a24bf8a89244a2b3b170e173fce452.bitwarden.com +carLicense: NNOLGL +departmentNumber: 7116 +employeeType: Contract +homePhone: +1 206 656-6585 +initials: S. T. +mobile: +1 206 480-2500 +pager: +1 206 920-4294 +roomNumber: 9726 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mindy LePage,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mindy LePage +sn: LePage +description: This is Mindy LePage's description +facsimileTelephoneNumber: +1 408 562-5467 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 374-2853 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: LePageM +givenName: Mindy +mail: LePageM@448f3e7713fe403a82f59754c984e2f3.bitwarden.com +carLicense: QVO124 +departmentNumber: 8219 +employeeType: Employee +homePhone: +1 408 153-9257 +initials: M. L. +mobile: +1 408 674-1241 +pager: +1 408 344-3914 +roomNumber: 9736 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Beckie Bach,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beckie Bach +sn: Bach +description: This is Beckie Bach's description +facsimileTelephoneNumber: +1 804 190-2236 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 804 318-3469 +title: Junior Peons Madonna +userPassword: Password1 +uid: BachB +givenName: Beckie +mail: BachB@8815cac7b22d401da16cfed3eab968c0.bitwarden.com +carLicense: NWCSEB +departmentNumber: 3949 +employeeType: Contract +homePhone: +1 804 739-5815 +initials: B. B. +mobile: +1 804 487-4948 +pager: +1 804 264-3156 +roomNumber: 9369 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Catie Biermann,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catie Biermann +sn: Biermann +description: This is Catie Biermann's description +facsimileTelephoneNumber: +1 408 548-3564 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 642-5942 +title: Master Product Testing Developer +userPassword: Password1 +uid: BiermanC +givenName: Catie +mail: BiermanC@b6087bd6d2db4261b3c51adf501795f0.bitwarden.com +carLicense: 23JI9R +departmentNumber: 3416 +employeeType: Normal +homePhone: +1 408 596-2059 +initials: C. B. +mobile: +1 408 356-2425 +pager: +1 408 283-7054 +roomNumber: 8489 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jin Benge,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jin Benge +sn: Benge +description: This is Jin Benge's description +facsimileTelephoneNumber: +1 818 786-8195 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 148-2501 +title: Junior Janitorial Technician +userPassword: Password1 +uid: BengeJ +givenName: Jin +mail: BengeJ@a68a04065ea342e280fa5b5e07351677.bitwarden.com +carLicense: F9QC5W +departmentNumber: 8265 +employeeType: Contract +homePhone: +1 818 891-1665 +initials: J. B. +mobile: +1 818 415-7122 +pager: +1 818 122-4497 +roomNumber: 8164 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elsa Breglec,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elsa Breglec +sn: Breglec +description: This is Elsa Breglec's description +facsimileTelephoneNumber: +1 415 208-3497 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 415 663-1681 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: BreglecE +givenName: Elsa +mail: BreglecE@0938d507654b4fc09f1956ab818aa3bf.bitwarden.com +carLicense: W0KJP7 +departmentNumber: 9508 +employeeType: Contract +homePhone: +1 415 747-8705 +initials: E. B. +mobile: +1 415 298-9943 +pager: +1 415 163-6019 +roomNumber: 8396 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Clementina Lozinski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clementina Lozinski +sn: Lozinski +description: This is Clementina Lozinski's description +facsimileTelephoneNumber: +1 818 944-3925 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 974-3983 +title: Chief Management President +userPassword: Password1 +uid: LozinskC +givenName: Clementina +mail: LozinskC@bd6697e6b7dc455a8c08101ef2dd2bfa.bitwarden.com +carLicense: TWPF9J +departmentNumber: 4511 +employeeType: Normal +homePhone: +1 818 565-1366 +initials: C. L. +mobile: +1 818 606-9032 +pager: +1 818 525-4965 +roomNumber: 9095 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Danella Gullekson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danella Gullekson +sn: Gullekson +description: This is Danella Gullekson's description +facsimileTelephoneNumber: +1 510 521-2029 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 539-3014 +title: Master Administrative Janitor +userPassword: Password1 +uid: GulleksD +givenName: Danella +mail: GulleksD@02e89016127d40e485d3c85f04f6d436.bitwarden.com +carLicense: ST3G0Q +departmentNumber: 4075 +employeeType: Employee +homePhone: +1 510 312-9817 +initials: D. G. +mobile: +1 510 824-3671 +pager: +1 510 852-5681 +roomNumber: 8903 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Monte Luker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monte Luker +sn: Luker +description: This is Monte Luker's description +facsimileTelephoneNumber: +1 408 836-7835 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 565-3298 +title: Master Product Testing Writer +userPassword: Password1 +uid: LukerM +givenName: Monte +mail: LukerM@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com +carLicense: B754XE +departmentNumber: 3538 +employeeType: Normal +homePhone: +1 408 835-9660 +initials: M. L. +mobile: +1 408 265-3601 +pager: +1 408 965-5914 +roomNumber: 9404 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Valry Bratten,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valry Bratten +sn: Bratten +description: This is Valry Bratten's description +facsimileTelephoneNumber: +1 818 742-7736 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 275-3542 +title: Master Human Resources Engineer +userPassword: Password1 +uid: BrattenV +givenName: Valry +mail: BrattenV@b9106f7d57f74a7b92af146111acb57d.bitwarden.com +carLicense: E567R8 +departmentNumber: 6181 +employeeType: Contract +homePhone: +1 818 265-1744 +initials: V. B. +mobile: +1 818 723-3541 +pager: +1 818 914-6390 +roomNumber: 9150 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fawnia Wilemon +sn: Wilemon +description: This is Fawnia Wilemon's description +facsimileTelephoneNumber: +1 408 686-5997 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 546-6067 +title: Chief Administrative Stooge +userPassword: Password1 +uid: WilemonF +givenName: Fawnia +mail: WilemonF@689212cef95e4390942ddc48435316fb.bitwarden.com +carLicense: BGTMVK +departmentNumber: 6711 +employeeType: Contract +homePhone: +1 408 860-5937 +initials: F. W. +mobile: +1 408 130-5136 +pager: +1 408 883-2563 +roomNumber: 9200 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lissi Neumeister,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lissi Neumeister +sn: Neumeister +description: This is Lissi Neumeister's description +facsimileTelephoneNumber: +1 818 559-3412 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 379-8379 +title: Associate Management Engineer +userPassword: Password1 +uid: NeumeisL +givenName: Lissi +mail: NeumeisL@90c585b5539b419a977fd9fb6fa21443.bitwarden.com +carLicense: TDFPB5 +departmentNumber: 1666 +employeeType: Normal +homePhone: +1 818 532-9057 +initials: L. N. +mobile: +1 818 631-1751 +pager: +1 818 493-6330 +roomNumber: 9461 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Claribel Digenova,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claribel Digenova +sn: Digenova +description: This is Claribel Digenova's description +facsimileTelephoneNumber: +1 408 711-2320 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 611-4685 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: DigenovC +givenName: Claribel +mail: DigenovC@e65b170ac1bc46edb99b4efe67ea9912.bitwarden.com +carLicense: AKBTHI +departmentNumber: 4535 +employeeType: Normal +homePhone: +1 408 371-5987 +initials: C. D. +mobile: +1 408 865-3368 +pager: +1 408 401-5647 +roomNumber: 9307 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tatsman Verma,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatsman Verma +sn: Verma +description: This is Tatsman Verma's description +facsimileTelephoneNumber: +1 804 171-9739 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 907-4619 +title: Chief Payroll Janitor +userPassword: Password1 +uid: VermaT +givenName: Tatsman +mail: VermaT@4a204781cca64dff80b312c10c7a36ff.bitwarden.com +carLicense: B0GL3J +departmentNumber: 5032 +employeeType: Normal +homePhone: +1 804 241-8038 +initials: T. V. +mobile: +1 804 894-8055 +pager: +1 804 199-7468 +roomNumber: 9857 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ransom Nipper,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ransom Nipper +sn: Nipper +description: This is Ransom Nipper's description +facsimileTelephoneNumber: +1 415 183-6453 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 287-1430 +title: Junior Janitorial Czar +userPassword: Password1 +uid: NipperR +givenName: Ransom +mail: NipperR@d45f6836f596476594ad223437a92901.bitwarden.com +carLicense: BXM9BA +departmentNumber: 7938 +employeeType: Employee +homePhone: +1 415 247-5333 +initials: R. N. +mobile: +1 415 758-2188 +pager: +1 415 972-7766 +roomNumber: 8418 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gilemette McWherter,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilemette McWherter +sn: McWherter +description: This is Gilemette McWherter's description +facsimileTelephoneNumber: +1 804 501-2143 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 726-1970 +title: Chief Management Janitor +userPassword: Password1 +uid: McWhertG +givenName: Gilemette +mail: McWhertG@a69ec3b3f0f649c684a03150d8e09c1f.bitwarden.com +carLicense: HVF7GH +departmentNumber: 8162 +employeeType: Contract +homePhone: +1 804 376-3966 +initials: G. M. +mobile: +1 804 294-8687 +pager: +1 804 497-3540 +roomNumber: 8844 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Holst Bringhurst,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Holst Bringhurst +sn: Bringhurst +description: This is Holst Bringhurst's description +facsimileTelephoneNumber: +1 408 647-3720 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 693-9625 +title: Chief Management Warrior +userPassword: Password1 +uid: BringhuH +givenName: Holst +mail: BringhuH@3b9fa50f488d4490b199ca8153116bc9.bitwarden.com +carLicense: 8NMQ9L +departmentNumber: 1960 +employeeType: Normal +homePhone: +1 408 140-4995 +initials: H. B. +mobile: +1 408 566-7954 +pager: +1 408 134-3449 +roomNumber: 9463 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lainey Rzepczynski +sn: Rzepczynski +description: This is Lainey Rzepczynski's description +facsimileTelephoneNumber: +1 213 868-7485 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 590-8290 +title: Master Product Testing Madonna +userPassword: Password1 +uid: RzepczyL +givenName: Lainey +mail: RzepczyL@62408cd3118c4cb082c607bd64879ced.bitwarden.com +carLicense: EP70IN +departmentNumber: 4266 +employeeType: Normal +homePhone: +1 213 231-7629 +initials: L. R. +mobile: +1 213 780-6080 +pager: +1 213 930-6528 +roomNumber: 8942 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Joe Guatto,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joe Guatto +sn: Guatto +description: This is Joe Guatto's description +facsimileTelephoneNumber: +1 213 105-4286 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 905-5422 +title: Associate Peons Artist +userPassword: Password1 +uid: GuattoJ +givenName: Joe +mail: GuattoJ@728cea3206cf4fc9b4edca0209470b11.bitwarden.com +carLicense: KXMNNA +departmentNumber: 4778 +employeeType: Contract +homePhone: +1 213 962-8452 +initials: J. G. +mobile: +1 213 643-5201 +pager: +1 213 305-3301 +roomNumber: 9622 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Peder Jarmon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peder Jarmon +sn: Jarmon +description: This is Peder Jarmon's description +facsimileTelephoneNumber: +1 408 186-6831 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 665-5424 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: JarmonP +givenName: Peder +mail: JarmonP@2cee41fd284e44d0b94fd6cd9ca5baa0.bitwarden.com +carLicense: NWRQ88 +departmentNumber: 4766 +employeeType: Employee +homePhone: +1 408 384-2740 +initials: P. J. +mobile: +1 408 808-5692 +pager: +1 408 756-7285 +roomNumber: 8885 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melisa Lenior,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisa Lenior +sn: Lenior +description: This is Melisa Lenior's description +facsimileTelephoneNumber: +1 408 668-3414 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 301-8317 +title: Supreme Management Madonna +userPassword: Password1 +uid: LeniorM +givenName: Melisa +mail: LeniorM@2e79931123d1474581b7c761e1420107.bitwarden.com +carLicense: DTJULT +departmentNumber: 7671 +employeeType: Employee +homePhone: +1 408 133-1677 +initials: M. L. +mobile: +1 408 273-3681 +pager: +1 408 252-5162 +roomNumber: 9567 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terez Lingafelter +sn: Lingafelter +description: This is Terez Lingafelter's description +facsimileTelephoneNumber: +1 818 229-8371 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 751-4273 +title: Chief Human Resources Warrior +userPassword: Password1 +uid: LingafeT +givenName: Terez +mail: LingafeT@273dfd92cd9f45d0aa9350f559239559.bitwarden.com +carLicense: 2IMNN4 +departmentNumber: 7565 +employeeType: Normal +homePhone: +1 818 740-3255 +initials: T. L. +mobile: +1 818 352-9695 +pager: +1 818 271-3608 +roomNumber: 8949 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shafiq Archer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shafiq Archer +sn: Archer +description: This is Shafiq Archer's description +facsimileTelephoneNumber: +1 818 495-5914 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 802-7542 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: ArcherS +givenName: Shafiq +mail: ArcherS@5e4fad8c083a467e8d3a2aebcb1ae975.bitwarden.com +carLicense: PI4JGX +departmentNumber: 3978 +employeeType: Normal +homePhone: +1 818 526-8216 +initials: S. A. +mobile: +1 818 263-1552 +pager: +1 818 418-8396 +roomNumber: 9906 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessamyn Seiler +sn: Seiler +description: This is Jessamyn Seiler's description +facsimileTelephoneNumber: +1 818 681-3616 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 697-8277 +title: Associate Human Resources Manager +userPassword: Password1 +uid: SeilerJ +givenName: Jessamyn +mail: SeilerJ@9c687885040c4312b6d12f4acbe7233d.bitwarden.com +carLicense: BXDV6R +departmentNumber: 9306 +employeeType: Normal +homePhone: +1 818 324-9863 +initials: J. S. +mobile: +1 818 883-4272 +pager: +1 818 136-1073 +roomNumber: 8871 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nancee Smuda,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nancee Smuda +sn: Smuda +description: This is Nancee Smuda's description +facsimileTelephoneNumber: +1 415 724-8331 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 254-1729 +title: Junior Peons Director +userPassword: Password1 +uid: SmudaN +givenName: Nancee +mail: SmudaN@4bcab71446194b1c9217ba0642278f17.bitwarden.com +carLicense: ESA363 +departmentNumber: 2952 +employeeType: Contract +homePhone: +1 415 357-2509 +initials: N. S. +mobile: +1 415 405-1170 +pager: +1 415 928-1999 +roomNumber: 8994 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ferdinanda Yan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ferdinanda Yan +sn: Yan +description: This is Ferdinanda Yan's description +facsimileTelephoneNumber: +1 818 907-2126 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 874-2756 +title: Master Peons Stooge +userPassword: Password1 +uid: YanF +givenName: Ferdinanda +mail: YanF@c74535433b9348ea8f9533567762a8ed.bitwarden.com +carLicense: Q39C0S +departmentNumber: 5663 +employeeType: Contract +homePhone: +1 818 163-7942 +initials: F. Y. +mobile: +1 818 494-4821 +pager: +1 818 507-9834 +roomNumber: 9939 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaymee Fainecos +sn: Fainecos +description: This is Jaymee Fainecos's description +facsimileTelephoneNumber: +1 804 104-7361 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 183-5006 +title: Master Human Resources Technician +userPassword: Password1 +uid: FainecoJ +givenName: Jaymee +mail: FainecoJ@f4d24bc7d7f24286badff0284693bf28.bitwarden.com +carLicense: DSCNL2 +departmentNumber: 9101 +employeeType: Contract +homePhone: +1 804 892-6189 +initials: J. F. +mobile: +1 804 293-2468 +pager: +1 804 835-1886 +roomNumber: 9501 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Portia Basinger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Portia Basinger +sn: Basinger +description: This is Portia Basinger's description +facsimileTelephoneNumber: +1 213 144-3607 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 403-6191 +title: Master Payroll Stooge +userPassword: Password1 +uid: BasingeP +givenName: Portia +mail: BasingeP@ef1e32b8e6ed4ea48078aa3e29bfff81.bitwarden.com +carLicense: C32HY9 +departmentNumber: 6864 +employeeType: Employee +homePhone: +1 213 448-2778 +initials: P. B. +mobile: +1 213 602-8154 +pager: +1 213 121-6205 +roomNumber: 9214 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vanda Holmes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanda Holmes +sn: Holmes +description: This is Vanda Holmes's description +facsimileTelephoneNumber: +1 415 795-7270 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 491-7992 +title: Chief Management Dictator +userPassword: Password1 +uid: HolmesV +givenName: Vanda +mail: HolmesV@253edaa8e3f14dbfb2bdbed6f7d5d1f0.bitwarden.com +carLicense: B0FHDX +departmentNumber: 7905 +employeeType: Contract +homePhone: +1 415 140-7954 +initials: V. H. +mobile: +1 415 210-8918 +pager: +1 415 625-1601 +roomNumber: 8261 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sid Shedd,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sid Shedd +sn: Shedd +description: This is Sid Shedd's description +facsimileTelephoneNumber: +1 415 309-2977 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 369-1314 +title: Associate Payroll Janitor +userPassword: Password1 +uid: SheddS +givenName: Sid +mail: SheddS@9bcc50c57a474f08a90b0d5f5d6e220a.bitwarden.com +carLicense: 5TO07B +departmentNumber: 1167 +employeeType: Contract +homePhone: +1 415 764-8350 +initials: S. S. +mobile: +1 415 390-6645 +pager: +1 415 675-1506 +roomNumber: 8450 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Merrielle Cinar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrielle Cinar +sn: Cinar +description: This is Merrielle Cinar's description +facsimileTelephoneNumber: +1 206 383-5710 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 819-7549 +title: Junior Administrative Grunt +userPassword: Password1 +uid: CinarM +givenName: Merrielle +mail: CinarM@684cd4172ddb4c928bb2bd98b9b242d3.bitwarden.com +carLicense: B38EUT +departmentNumber: 1443 +employeeType: Employee +homePhone: +1 206 115-2161 +initials: M. C. +mobile: +1 206 490-4557 +pager: +1 206 694-3405 +roomNumber: 8367 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ginevra Varady,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginevra Varady +sn: Varady +description: This is Ginevra Varady's description +facsimileTelephoneNumber: +1 206 803-2087 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 316-2291 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: VaradyG +givenName: Ginevra +mail: VaradyG@37c3227000a74816851448e0169c372e.bitwarden.com +carLicense: H7MN9G +departmentNumber: 9563 +employeeType: Contract +homePhone: +1 206 736-8102 +initials: G. V. +mobile: +1 206 522-3549 +pager: +1 206 367-8056 +roomNumber: 8301 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Noraly Hassan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noraly Hassan +sn: Hassan +description: This is Noraly Hassan's description +facsimileTelephoneNumber: +1 415 881-2090 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 415 631-1515 +title: Chief Peons Artist +userPassword: Password1 +uid: HassanN +givenName: Noraly +mail: HassanN@ac25d049c10a4d758088ebdaf063ce02.bitwarden.com +carLicense: B9IS4R +departmentNumber: 7710 +employeeType: Normal +homePhone: +1 415 852-6585 +initials: N. H. +mobile: +1 415 507-1327 +pager: +1 415 621-1838 +roomNumber: 8014 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ron Stirling,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ron Stirling +sn: Stirling +description: This is Ron Stirling's description +facsimileTelephoneNumber: +1 213 973-5974 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 213 411-2192 +title: Supreme Peons Madonna +userPassword: Password1 +uid: StirlinR +givenName: Ron +mail: StirlinR@693e15a0c0664d58a0ac94c78535cda0.bitwarden.com +carLicense: TDKHRC +departmentNumber: 9191 +employeeType: Normal +homePhone: +1 213 665-9367 +initials: R. S. +mobile: +1 213 768-4816 +pager: +1 213 436-5881 +roomNumber: 9843 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lauree Waytowich +sn: Waytowich +description: This is Lauree Waytowich's description +facsimileTelephoneNumber: +1 213 487-9855 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 603-8124 +title: Associate Product Testing Manager +userPassword: Password1 +uid: WaytowiL +givenName: Lauree +mail: WaytowiL@9ad00ea283a44f0b8cc931a1caa6acca.bitwarden.com +carLicense: 9RQ9Q2 +departmentNumber: 1981 +employeeType: Employee +homePhone: +1 213 862-6503 +initials: L. W. +mobile: +1 213 971-2366 +pager: +1 213 751-7386 +roomNumber: 8404 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kala Huber,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kala Huber +sn: Huber +description: This is Kala Huber's description +facsimileTelephoneNumber: +1 213 398-3660 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 213 141-5601 +title: Chief Human Resources Architect +userPassword: Password1 +uid: HuberK +givenName: Kala +mail: HuberK@2ddd4900e5cd4e799049753b498a352e.bitwarden.com +carLicense: JUGVKJ +departmentNumber: 7963 +employeeType: Contract +homePhone: +1 213 153-9748 +initials: K. H. +mobile: +1 213 777-7615 +pager: +1 213 725-3731 +roomNumber: 8572 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Woon Rasmus,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Woon Rasmus +sn: Rasmus +description: This is Woon Rasmus's description +facsimileTelephoneNumber: +1 818 542-2127 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 164-4004 +title: Supreme Product Development Admin +userPassword: Password1 +uid: RasmusW +givenName: Woon +mail: RasmusW@b4277bbde59048f39a27a7d14145a06f.bitwarden.com +carLicense: L5GIVJ +departmentNumber: 9485 +employeeType: Normal +homePhone: +1 818 440-7014 +initials: W. R. +mobile: +1 818 947-5187 +pager: +1 818 128-8688 +roomNumber: 8959 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jaime Delf,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaime Delf +sn: Delf +description: This is Jaime Delf's description +facsimileTelephoneNumber: +1 415 761-9767 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 105-8240 +title: Master Peons Janitor +userPassword: Password1 +uid: DelfJ +givenName: Jaime +mail: DelfJ@335909b2c3c5485ebfab0ea1181e56d0.bitwarden.com +carLicense: P5KG3T +departmentNumber: 8524 +employeeType: Employee +homePhone: +1 415 586-5996 +initials: J. D. +mobile: +1 415 519-1756 +pager: +1 415 628-6958 +roomNumber: 9808 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dina Kaunas,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dina Kaunas +sn: Kaunas +description: This is Dina Kaunas's description +facsimileTelephoneNumber: +1 415 283-4624 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 752-9169 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: KaunasD +givenName: Dina +mail: KaunasD@f2b1db93699d459ba377efc7d34d7aa5.bitwarden.com +carLicense: KUQLQL +departmentNumber: 5106 +employeeType: Contract +homePhone: +1 415 699-8667 +initials: D. K. +mobile: +1 415 718-7902 +pager: +1 415 144-6515 +roomNumber: 8841 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Todd Gainer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Todd Gainer +sn: Gainer +description: This is Todd Gainer's description +facsimileTelephoneNumber: +1 408 792-9937 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 309-4911 +title: Master Product Testing Grunt +userPassword: Password1 +uid: GainerT +givenName: Todd +mail: GainerT@ef0a65e10eae440cab70802b37d924ab.bitwarden.com +carLicense: G3SMUK +departmentNumber: 8542 +employeeType: Employee +homePhone: +1 408 128-2307 +initials: T. G. +mobile: +1 408 482-9068 +pager: +1 408 129-4985 +roomNumber: 8754 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=HonKong Woolwine,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HonKong Woolwine +sn: Woolwine +description: This is HonKong Woolwine's description +facsimileTelephoneNumber: +1 510 838-5501 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 483-4151 +title: Master Peons Punk +userPassword: Password1 +uid: WoolwinH +givenName: HonKong +mail: WoolwinH@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com +carLicense: KUWA9A +departmentNumber: 5316 +employeeType: Normal +homePhone: +1 510 885-4239 +initials: H. W. +mobile: +1 510 516-9393 +pager: +1 510 669-4973 +roomNumber: 8707 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joelie Challice,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joelie Challice +sn: Challice +description: This is Joelie Challice's description +facsimileTelephoneNumber: +1 213 823-6517 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 213 362-7938 +title: Master Janitorial Consultant +userPassword: Password1 +uid: ChallicJ +givenName: Joelie +mail: ChallicJ@de7dfccc10c245619507096806e60950.bitwarden.com +carLicense: 9L50A2 +departmentNumber: 8365 +employeeType: Contract +homePhone: +1 213 306-7236 +initials: J. C. +mobile: +1 213 619-7041 +pager: +1 213 406-1142 +roomNumber: 9268 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Margalo Behlen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margalo Behlen +sn: Behlen +description: This is Margalo Behlen's description +facsimileTelephoneNumber: +1 213 701-4039 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 948-6300 +title: Master Product Development Developer +userPassword: Password1 +uid: BehlenM +givenName: Margalo +mail: BehlenM@30da59e65fda4079ac56eeda7237dc3b.bitwarden.com +carLicense: AM758E +departmentNumber: 9430 +employeeType: Employee +homePhone: +1 213 872-4830 +initials: M. B. +mobile: +1 213 182-6875 +pager: +1 213 856-5134 +roomNumber: 9499 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Trish Meunier,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trish Meunier +sn: Meunier +description: This is Trish Meunier's description +facsimileTelephoneNumber: +1 408 128-2355 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 421-2238 +title: Junior Payroll Punk +userPassword: Password1 +uid: MeunierT +givenName: Trish +mail: MeunierT@c28624b05f7d4c31811fad5e0d04b1e6.bitwarden.com +carLicense: E8VYDB +departmentNumber: 5521 +employeeType: Contract +homePhone: +1 408 768-4430 +initials: T. M. +mobile: +1 408 812-9005 +pager: +1 408 157-2905 +roomNumber: 8663 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Verine Lilleniit,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verine Lilleniit +sn: Lilleniit +description: This is Verine Lilleniit's description +facsimileTelephoneNumber: +1 408 220-5722 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 240-7993 +title: Junior Management Grunt +userPassword: Password1 +uid: LilleniV +givenName: Verine +mail: LilleniV@5d9a493aeb18453b882b99b919bc8aa9.bitwarden.com +carLicense: S09A56 +departmentNumber: 4994 +employeeType: Normal +homePhone: +1 408 240-6891 +initials: V. L. +mobile: +1 408 138-5242 +pager: +1 408 858-1355 +roomNumber: 8397 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Corilla Popescu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corilla Popescu +sn: Popescu +description: This is Corilla Popescu's description +facsimileTelephoneNumber: +1 510 100-9772 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 599-4289 +title: Chief Management Evangelist +userPassword: Password1 +uid: PopescuC +givenName: Corilla +mail: PopescuC@ad623334663c4947b77eb81b44ea11ea.bitwarden.com +carLicense: LJR31T +departmentNumber: 7395 +employeeType: Employee +homePhone: +1 510 228-9135 +initials: C. P. +mobile: +1 510 254-6903 +pager: +1 510 521-4489 +roomNumber: 8165 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Wynne Hudson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wynne Hudson +sn: Hudson +description: This is Wynne Hudson's description +facsimileTelephoneNumber: +1 213 691-2261 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 722-2849 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: HudsonW +givenName: Wynne +mail: HudsonW@a6e91fbe946f4f22a15eb3bbe629e3da.bitwarden.com +carLicense: W4H94S +departmentNumber: 8639 +employeeType: Contract +homePhone: +1 213 105-6471 +initials: W. H. +mobile: +1 213 683-4413 +pager: +1 213 128-2118 +roomNumber: 9941 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozalin AbouEzze +sn: AbouEzze +description: This is Rozalin AbouEzze's description +facsimileTelephoneNumber: +1 213 393-6235 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 794-7596 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: AbouEzzR +givenName: Rozalin +mail: AbouEzzR@ffdefe28596d40ee910185f1df335f05.bitwarden.com +carLicense: MSADI7 +departmentNumber: 7859 +employeeType: Employee +homePhone: +1 213 198-4907 +initials: R. A. +mobile: +1 213 280-5148 +pager: +1 213 283-3461 +roomNumber: 9224 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Laurel Leavell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laurel Leavell +sn: Leavell +description: This is Laurel Leavell's description +facsimileTelephoneNumber: +1 415 350-4539 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 205-3567 +title: Junior Management Vice President +userPassword: Password1 +uid: LeavellL +givenName: Laurel +mail: LeavellL@cfbc523ea26f4865ad5da193bd391d7f.bitwarden.com +carLicense: CJUXNG +departmentNumber: 7069 +employeeType: Contract +homePhone: +1 415 754-4946 +initials: L. L. +mobile: +1 415 364-8615 +pager: +1 415 403-2556 +roomNumber: 9227 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ulrika Moxon +sn: Moxon +description: This is Ulrika Moxon's description +facsimileTelephoneNumber: +1 408 972-8036 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 408 936-2764 +title: Master Human Resources Architect +userPassword: Password1 +uid: MoxonU +givenName: Ulrika +mail: MoxonU@1f765dec942d40c392beceda646362cf.bitwarden.com +carLicense: C55W5Q +departmentNumber: 1067 +employeeType: Normal +homePhone: +1 408 560-6677 +initials: U. M. +mobile: +1 408 983-7672 +pager: +1 408 489-9786 +roomNumber: 9608 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Madlin Irvin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madlin Irvin +sn: Irvin +description: This is Madlin Irvin's description +facsimileTelephoneNumber: +1 213 869-8426 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 838-7381 +title: Supreme Product Development Grunt +userPassword: Password1 +uid: IrvinM +givenName: Madlin +mail: IrvinM@8f698818b35041d38a84f1c71ca57e14.bitwarden.com +carLicense: K1KTER +departmentNumber: 1051 +employeeType: Employee +homePhone: +1 213 554-2719 +initials: M. I. +mobile: +1 213 162-1513 +pager: +1 213 235-8061 +roomNumber: 9696 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ashleigh Salembier,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashleigh Salembier +sn: Salembier +description: This is Ashleigh Salembier's description +facsimileTelephoneNumber: +1 415 143-7078 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 522-3194 +title: Master Peons Vice President +userPassword: Password1 +uid: SalembiA +givenName: Ashleigh +mail: SalembiA@225e1be6fb454e5cab9ce645e748d35d.bitwarden.com +carLicense: S371C7 +departmentNumber: 5168 +employeeType: Contract +homePhone: +1 415 697-2112 +initials: A. S. +mobile: +1 415 282-6321 +pager: +1 415 612-8825 +roomNumber: 8658 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sacha Dailey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sacha Dailey +sn: Dailey +description: This is Sacha Dailey's description +facsimileTelephoneNumber: +1 804 184-5580 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 241-8850 +title: Junior Administrative Czar +userPassword: Password1 +uid: DaileyS +givenName: Sacha +mail: DaileyS@abccdcf5035347f79868c63de7257f89.bitwarden.com +carLicense: LYOAP1 +departmentNumber: 5517 +employeeType: Contract +homePhone: +1 804 924-6757 +initials: S. D. +mobile: +1 804 942-6635 +pager: +1 804 852-4825 +roomNumber: 9242 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lynett Reddy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynett Reddy +sn: Reddy +description: This is Lynett Reddy's description +facsimileTelephoneNumber: +1 415 443-8493 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 516-8490 +title: Junior Product Testing Technician +userPassword: Password1 +uid: ReddyL +givenName: Lynett +mail: ReddyL@f071c89187164ee99b36301acebce3d5.bitwarden.com +carLicense: 3I0478 +departmentNumber: 8077 +employeeType: Contract +homePhone: +1 415 401-5191 +initials: L. R. +mobile: +1 415 606-7496 +pager: +1 415 560-2454 +roomNumber: 9948 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bregitte Nixon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bregitte Nixon +sn: Nixon +description: This is Bregitte Nixon's description +facsimileTelephoneNumber: +1 213 285-9135 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 199-6282 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: NixonB +givenName: Bregitte +mail: NixonB@d64cbc21c43e4ae789224277adc4ecfe.bitwarden.com +carLicense: 6CX7LR +departmentNumber: 1479 +employeeType: Contract +homePhone: +1 213 165-6408 +initials: B. N. +mobile: +1 213 299-5767 +pager: +1 213 323-9970 +roomNumber: 8918 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Peter Engineering,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peter Engineering +sn: Engineering +description: This is Peter Engineering's description +facsimileTelephoneNumber: +1 408 234-3893 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 643-5548 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: EngineeP +givenName: Peter +mail: EngineeP@c66e42835f2044cdbf51d67978ad100e.bitwarden.com +carLicense: HBWVWO +departmentNumber: 8268 +employeeType: Contract +homePhone: +1 408 523-9439 +initials: P. E. +mobile: +1 408 149-3576 +pager: +1 408 272-9367 +roomNumber: 9663 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgeanna Newcomb +sn: Newcomb +description: This is Georgeanna Newcomb's description +facsimileTelephoneNumber: +1 804 507-1933 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 804 886-6680 +title: Associate Payroll Punk +userPassword: Password1 +uid: NewcombG +givenName: Georgeanna +mail: NewcombG@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com +carLicense: HCUM9D +departmentNumber: 6570 +employeeType: Contract +homePhone: +1 804 758-2473 +initials: G. N. +mobile: +1 804 838-3191 +pager: +1 804 896-7506 +roomNumber: 9844 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlotta Siehl +sn: Siehl +description: This is Carlotta Siehl's description +facsimileTelephoneNumber: +1 408 827-2999 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 600-6707 +title: Chief Human Resources Writer +userPassword: Password1 +uid: SiehlC +givenName: Carlotta +mail: SiehlC@cc8182e6de0c4840a0e434e3f5bc6e84.bitwarden.com +carLicense: J8X2WJ +departmentNumber: 6776 +employeeType: Contract +homePhone: +1 408 672-2136 +initials: C. S. +mobile: +1 408 995-9736 +pager: +1 408 431-2495 +roomNumber: 8897 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pawel Drane,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pawel Drane +sn: Drane +description: This is Pawel Drane's description +facsimileTelephoneNumber: +1 408 480-5777 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 260-3890 +title: Master Product Development Writer +userPassword: Password1 +uid: DraneP +givenName: Pawel +mail: DraneP@04fe092cb6474d1a9ada1ac9a8cccc86.bitwarden.com +carLicense: T2FTUO +departmentNumber: 6283 +employeeType: Normal +homePhone: +1 408 281-3760 +initials: P. D. +mobile: +1 408 209-3776 +pager: +1 408 374-3000 +roomNumber: 8509 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tommy Cisco,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tommy Cisco +sn: Cisco +description: This is Tommy Cisco's description +facsimileTelephoneNumber: +1 510 260-6319 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 510 460-6202 +title: Associate Payroll Technician +userPassword: Password1 +uid: CiscoT +givenName: Tommy +mail: CiscoT@91a6462ae0a648b3be3eaa603f83c373.bitwarden.com +carLicense: 4VGLD6 +departmentNumber: 9693 +employeeType: Contract +homePhone: +1 510 534-4203 +initials: T. C. +mobile: +1 510 347-5620 +pager: +1 510 967-6357 +roomNumber: 8099 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dvm Early,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dvm Early +sn: Early +description: This is Dvm Early's description +facsimileTelephoneNumber: +1 213 819-2131 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 684-4599 +title: Chief Product Development Manager +userPassword: Password1 +uid: EarlyD +givenName: Dvm +mail: EarlyD@2b4c6e317b6b4a709a1f938d53334cdf.bitwarden.com +carLicense: 0QYETW +departmentNumber: 8382 +employeeType: Normal +homePhone: +1 213 860-5391 +initials: D. E. +mobile: +1 213 209-1265 +pager: +1 213 902-4508 +roomNumber: 9836 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Akin Forgeron,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akin Forgeron +sn: Forgeron +description: This is Akin Forgeron's description +facsimileTelephoneNumber: +1 415 490-6934 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 152-1828 +title: Supreme Product Testing Engineer +userPassword: Password1 +uid: ForgeroA +givenName: Akin +mail: ForgeroA@c866ca2e96114b72baa4b93410d8e54e.bitwarden.com +carLicense: MYHW3L +departmentNumber: 2398 +employeeType: Employee +homePhone: +1 415 657-6173 +initials: A. F. +mobile: +1 415 211-3290 +pager: +1 415 232-5746 +roomNumber: 8326 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cornelia Sharratt +sn: Sharratt +description: This is Cornelia Sharratt's description +facsimileTelephoneNumber: +1 213 468-7258 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 712-4359 +title: Associate Janitorial Punk +userPassword: Password1 +uid: SharratC +givenName: Cornelia +mail: SharratC@7fd9c7724c2d4270a0b2eac9d1493bda.bitwarden.com +carLicense: 1CDYNR +departmentNumber: 7165 +employeeType: Contract +homePhone: +1 213 528-6441 +initials: C. S. +mobile: +1 213 337-7691 +pager: +1 213 717-4259 +roomNumber: 9475 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lilllie Precoda,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilllie Precoda +sn: Precoda +description: This is Lilllie Precoda's description +facsimileTelephoneNumber: +1 408 639-6092 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 663-2958 +title: Master Product Development Engineer +userPassword: Password1 +uid: PrecodaL +givenName: Lilllie +mail: PrecodaL@c9144d6968894000b9f12fc184c03e52.bitwarden.com +carLicense: DRBCSG +departmentNumber: 8500 +employeeType: Contract +homePhone: +1 408 970-8427 +initials: L. P. +mobile: +1 408 684-8539 +pager: +1 408 577-6078 +roomNumber: 8565 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Corinna Spragg,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corinna Spragg +sn: Spragg +description: This is Corinna Spragg's description +facsimileTelephoneNumber: +1 408 543-1976 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 559-8749 +title: Master Payroll Madonna +userPassword: Password1 +uid: SpraggC +givenName: Corinna +mail: SpraggC@25466f5c2b4e4320afbe3eeabe295830.bitwarden.com +carLicense: YVCLGL +departmentNumber: 8732 +employeeType: Contract +homePhone: +1 408 163-8219 +initials: C. S. +mobile: +1 408 510-5587 +pager: +1 408 175-8901 +roomNumber: 9292 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yoke Pitre,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoke Pitre +sn: Pitre +description: This is Yoke Pitre's description +facsimileTelephoneNumber: +1 804 212-2639 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 677-4223 +title: Master Product Development Manager +userPassword: Password1 +uid: PitreY +givenName: Yoke +mail: PitreY@911b346497874da4b48522c31ad5633c.bitwarden.com +carLicense: TRCFOA +departmentNumber: 8515 +employeeType: Contract +homePhone: +1 804 489-7177 +initials: Y. P. +mobile: +1 804 235-4465 +pager: +1 804 408-3500 +roomNumber: 9508 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cooney Ahmed +sn: Ahmed +description: This is Cooney Ahmed's description +facsimileTelephoneNumber: +1 213 958-1574 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 422-4869 +title: Associate Human Resources Figurehead +userPassword: Password1 +uid: AhmedC +givenName: Cooney +mail: AhmedC@cf2b61eb91be49749a181d49670906ce.bitwarden.com +carLicense: MTS6L4 +departmentNumber: 6140 +employeeType: Employee +homePhone: +1 213 875-4420 +initials: C. A. +mobile: +1 213 663-7356 +pager: +1 213 827-8545 +roomNumber: 9724 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shayla Samsonenko +sn: Samsonenko +description: This is Shayla Samsonenko's description +facsimileTelephoneNumber: +1 415 392-3739 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 343-3271 +title: Supreme Human Resources Czar +userPassword: Password1 +uid: SamsoneS +givenName: Shayla +mail: SamsoneS@867183e0b3a947d7ba48bd51e47b6e48.bitwarden.com +carLicense: PGSPKB +departmentNumber: 5019 +employeeType: Contract +homePhone: +1 415 722-6629 +initials: S. S. +mobile: +1 415 267-9982 +pager: +1 415 560-4697 +roomNumber: 9367 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanjay Dubroy +sn: Dubroy +description: This is Sanjay Dubroy's description +facsimileTelephoneNumber: +1 206 983-8878 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 822-9462 +title: Chief Product Development Developer +userPassword: Password1 +uid: DubroyS +givenName: Sanjay +mail: DubroyS@5d0d20354c594b5780df45982564458f.bitwarden.com +carLicense: LSQR5P +departmentNumber: 2996 +employeeType: Employee +homePhone: +1 206 805-1330 +initials: S. D. +mobile: +1 206 469-4021 +pager: +1 206 463-7945 +roomNumber: 9196 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rao Grosman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rao Grosman +sn: Grosman +description: This is Rao Grosman's description +facsimileTelephoneNumber: +1 818 475-1846 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 718-1653 +title: Chief Payroll Vice President +userPassword: Password1 +uid: GrosmanR +givenName: Rao +mail: GrosmanR@c097ac51a6d248ea8109a67947a52d98.bitwarden.com +carLicense: 5HNNY7 +departmentNumber: 5600 +employeeType: Employee +homePhone: +1 818 422-6324 +initials: R. G. +mobile: +1 818 494-9780 +pager: +1 818 169-7534 +roomNumber: 8979 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Renate Belford,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renate Belford +sn: Belford +description: This is Renate Belford's description +facsimileTelephoneNumber: +1 206 285-5782 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 206 961-3864 +title: Junior Administrative Punk +userPassword: Password1 +uid: BelfordR +givenName: Renate +mail: BelfordR@9edd62f23d844f5b88856a95c3a59e6c.bitwarden.com +carLicense: UOV3S6 +departmentNumber: 8178 +employeeType: Normal +homePhone: +1 206 305-5163 +initials: R. B. +mobile: +1 206 122-3008 +pager: +1 206 945-4016 +roomNumber: 9515 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bidget Hinshaw +sn: Hinshaw +description: This is Bidget Hinshaw's description +facsimileTelephoneNumber: +1 415 423-2391 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 415 676-6710 +title: Chief Product Development Writer +userPassword: Password1 +uid: HinshawB +givenName: Bidget +mail: HinshawB@8eaa02b53fec48d0842607d198bfec39.bitwarden.com +carLicense: 1FO6X2 +departmentNumber: 7878 +employeeType: Contract +homePhone: +1 415 460-4625 +initials: B. H. +mobile: +1 415 162-7782 +pager: +1 415 813-2580 +roomNumber: 9350 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adi Venguswamy +sn: Venguswamy +description: This is Adi Venguswamy's description +facsimileTelephoneNumber: +1 510 860-3568 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 812-5704 +title: Chief Human Resources Developer +userPassword: Password1 +uid: VenguswA +givenName: Adi +mail: VenguswA@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com +carLicense: WUN6K6 +departmentNumber: 2660 +employeeType: Normal +homePhone: +1 510 213-6875 +initials: A. V. +mobile: +1 510 889-5951 +pager: +1 510 802-9316 +roomNumber: 8224 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nico Olsheski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nico Olsheski +sn: Olsheski +description: This is Nico Olsheski's description +facsimileTelephoneNumber: +1 213 384-3067 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 646-6711 +title: Chief Peons Janitor +userPassword: Password1 +uid: OlsheskN +givenName: Nico +mail: OlsheskN@8d379ab6a2fb48eeba38a8fb058f3296.bitwarden.com +carLicense: 7VYVTS +departmentNumber: 8434 +employeeType: Normal +homePhone: +1 213 858-2918 +initials: N. O. +mobile: +1 213 416-6983 +pager: +1 213 180-4431 +roomNumber: 9840 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alta Wiley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alta Wiley +sn: Wiley +description: This is Alta Wiley's description +facsimileTelephoneNumber: +1 818 785-1342 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 778-5389 +title: Supreme Product Development Architect +userPassword: Password1 +uid: WileyA +givenName: Alta +mail: WileyA@ab2a58524e6745f599026252999b1b4c.bitwarden.com +carLicense: QKFSS6 +departmentNumber: 4572 +employeeType: Contract +homePhone: +1 818 160-6127 +initials: A. W. +mobile: +1 818 539-5680 +pager: +1 818 428-7033 +roomNumber: 8623 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bennet Dunham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bennet Dunham +sn: Dunham +description: This is Bennet Dunham's description +facsimileTelephoneNumber: +1 818 853-9684 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 571-5383 +title: Master Product Testing Punk +userPassword: Password1 +uid: DunhamB +givenName: Bennet +mail: DunhamB@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com +carLicense: 01TMUS +departmentNumber: 5695 +employeeType: Employee +homePhone: +1 818 399-8327 +initials: B. D. +mobile: +1 818 739-4821 +pager: +1 818 521-7444 +roomNumber: 9361 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chandran Crutchfield,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chandran Crutchfield +sn: Crutchfield +description: This is Chandran Crutchfield's description +facsimileTelephoneNumber: +1 213 450-8193 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 858-1819 +title: Chief Peons Janitor +userPassword: Password1 +uid: CrutchfC +givenName: Chandran +mail: CrutchfC@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com +carLicense: NJRB3B +departmentNumber: 8197 +employeeType: Employee +homePhone: +1 213 277-3078 +initials: C. C. +mobile: +1 213 276-6206 +pager: +1 213 223-9412 +roomNumber: 9725 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dexter Donnelly +sn: Donnelly +description: This is Dexter Donnelly's description +facsimileTelephoneNumber: +1 415 523-8475 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 972-1973 +title: Associate Human Resources Architect +userPassword: Password1 +uid: DonnellD +givenName: Dexter +mail: DonnellD@c4d474c95eb7414aac612c0c00005f95.bitwarden.com +carLicense: H0DI8Y +departmentNumber: 2733 +employeeType: Employee +homePhone: +1 415 966-7851 +initials: D. D. +mobile: +1 415 880-7249 +pager: +1 415 247-4506 +roomNumber: 8444 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Suha Stiles,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suha Stiles +sn: Stiles +description: This is Suha Stiles's description +facsimileTelephoneNumber: +1 415 721-8116 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 649-4209 +title: Master Product Testing Manager +userPassword: Password1 +uid: StilesS +givenName: Suha +mail: StilesS@d0bb47da3574428792ab636cf81dc1b3.bitwarden.com +carLicense: TQIHF5 +departmentNumber: 6712 +employeeType: Normal +homePhone: +1 415 387-2792 +initials: S. S. +mobile: +1 415 518-8908 +pager: +1 415 174-6714 +roomNumber: 9456 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sheela Montague,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheela Montague +sn: Montague +description: This is Sheela Montague's description +facsimileTelephoneNumber: +1 213 152-6283 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 641-4789 +title: Associate Payroll Sales Rep +userPassword: Password1 +uid: MontaguS +givenName: Sheela +mail: MontaguS@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com +carLicense: 1O8J4W +departmentNumber: 8544 +employeeType: Normal +homePhone: +1 213 602-2467 +initials: S. M. +mobile: +1 213 901-5750 +pager: +1 213 415-6063 +roomNumber: 9789 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Brandais Speight,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandais Speight +sn: Speight +description: This is Brandais Speight's description +facsimileTelephoneNumber: +1 415 546-4458 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 803-3076 +title: Master Peons Figurehead +userPassword: Password1 +uid: SpeightB +givenName: Brandais +mail: SpeightB@ff20ebf729dd433fac62940be5da4725.bitwarden.com +carLicense: 5FLW0E +departmentNumber: 7129 +employeeType: Normal +homePhone: +1 415 899-6425 +initials: B. S. +mobile: +1 415 522-2674 +pager: +1 415 903-7425 +roomNumber: 8464 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ignatius USER,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ignatius USER +sn: USER +description: This is Ignatius USER's description +facsimileTelephoneNumber: +1 818 610-4994 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 558-2542 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: USERI +givenName: Ignatius +mail: USERI@d31d84badc274241b539993b6349fb7e.bitwarden.com +carLicense: S72P4P +departmentNumber: 8058 +employeeType: Employee +homePhone: +1 818 935-7585 +initials: I. U. +mobile: +1 818 505-2541 +pager: +1 818 822-1213 +roomNumber: 8783 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Merilyn Trull,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merilyn Trull +sn: Trull +description: This is Merilyn Trull's description +facsimileTelephoneNumber: +1 804 351-5744 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 283-5414 +title: Supreme Janitorial Dictator +userPassword: Password1 +uid: TrullM +givenName: Merilyn +mail: TrullM@e2ac30b0774145abbea79773529c940e.bitwarden.com +carLicense: WYHG3T +departmentNumber: 5021 +employeeType: Contract +homePhone: +1 804 550-4501 +initials: M. T. +mobile: +1 804 919-1302 +pager: +1 804 681-4713 +roomNumber: 9691 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ursulina Parise,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ursulina Parise +sn: Parise +description: This is Ursulina Parise's description +facsimileTelephoneNumber: +1 213 392-1609 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 679-8227 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: PariseU +givenName: Ursulina +mail: PariseU@ba5fe26b99534871a34503bdbcf1a116.bitwarden.com +carLicense: 5BCF69 +departmentNumber: 2294 +employeeType: Contract +homePhone: +1 213 555-1041 +initials: U. P. +mobile: +1 213 407-1846 +pager: +1 213 139-8164 +roomNumber: 9866 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ailey Bosworth,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailey Bosworth +sn: Bosworth +description: This is Ailey Bosworth's description +facsimileTelephoneNumber: +1 213 485-5740 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 689-5892 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: BoswortA +givenName: Ailey +mail: BoswortA@b827aeadf87046f484e6a5d514c5b320.bitwarden.com +carLicense: BEM59V +departmentNumber: 1347 +employeeType: Contract +homePhone: +1 213 444-4955 +initials: A. B. +mobile: +1 213 806-7491 +pager: +1 213 485-6859 +roomNumber: 9051 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mignon Sutherland +sn: Sutherland +description: This is Mignon Sutherland's description +facsimileTelephoneNumber: +1 818 873-8729 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 818 613-2323 +title: Supreme Product Testing Figurehead +userPassword: Password1 +uid: SutherlM +givenName: Mignon +mail: SutherlM@65d073567be540b69713d5ac0dbae37f.bitwarden.com +carLicense: RWBFXP +departmentNumber: 6267 +employeeType: Normal +homePhone: +1 818 376-3976 +initials: M. S. +mobile: +1 818 935-5063 +pager: +1 818 816-3842 +roomNumber: 9625 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ally Pickett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ally Pickett +sn: Pickett +description: This is Ally Pickett's description +facsimileTelephoneNumber: +1 213 822-5228 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 491-9760 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: PickettA +givenName: Ally +mail: PickettA@904711b040d44240a1ca8d5e5bf46600.bitwarden.com +carLicense: Q5HQW0 +departmentNumber: 7340 +employeeType: Normal +homePhone: +1 213 811-2673 +initials: A. P. +mobile: +1 213 262-6790 +pager: +1 213 330-3038 +roomNumber: 8235 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Viviene St,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viviene St +sn: St +description: This is Viviene St's description +facsimileTelephoneNumber: +1 213 404-6080 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 213 983-5087 +title: Master Human Resources Technician +userPassword: Password1 +uid: StV +givenName: Viviene +mail: StV@541000d4967e42578d07a307ef7b2af7.bitwarden.com +carLicense: QOIG1V +departmentNumber: 6404 +employeeType: Contract +homePhone: +1 213 580-2934 +initials: V. S. +mobile: +1 213 529-3325 +pager: +1 213 552-1273 +roomNumber: 8704 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cole Kyoung,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cole Kyoung +sn: Kyoung +description: This is Cole Kyoung's description +facsimileTelephoneNumber: +1 415 777-7426 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 885-3906 +title: Associate Management Assistant +userPassword: Password1 +uid: KyoungC +givenName: Cole +mail: KyoungC@becaa689d40f42aaa9f00a36bc98176b.bitwarden.com +carLicense: 5AQHV2 +departmentNumber: 5398 +employeeType: Employee +homePhone: +1 415 500-3102 +initials: C. K. +mobile: +1 415 445-1741 +pager: +1 415 728-5683 +roomNumber: 8026 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Brana Telesis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brana Telesis +sn: Telesis +description: This is Brana Telesis's description +facsimileTelephoneNumber: +1 213 289-9657 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 213 174-2713 +title: Junior Payroll Assistant +userPassword: Password1 +uid: TelesisB +givenName: Brana +mail: TelesisB@4cd17011411246b3aced8285a4854db8.bitwarden.com +carLicense: 27JIB4 +departmentNumber: 5086 +employeeType: Contract +homePhone: +1 213 808-3934 +initials: B. T. +mobile: +1 213 483-5001 +pager: +1 213 402-9934 +roomNumber: 9458 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Naohiko Netzke,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naohiko Netzke +sn: Netzke +description: This is Naohiko Netzke's description +facsimileTelephoneNumber: +1 415 846-1896 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 203-4562 +title: Supreme Management President +userPassword: Password1 +uid: NetzkeN +givenName: Naohiko +mail: NetzkeN@2126a4a93d82446eaaae85cb511bb3eb.bitwarden.com +carLicense: C6TFO0 +departmentNumber: 4427 +employeeType: Contract +homePhone: +1 415 698-2291 +initials: N. N. +mobile: +1 415 858-6965 +pager: +1 415 377-9588 +roomNumber: 8527 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tessty Aiken,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tessty Aiken +sn: Aiken +description: This is Tessty Aiken's description +facsimileTelephoneNumber: +1 415 529-5833 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 415 745-3975 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: AikenT +givenName: Tessty +mail: AikenT@4c228b856d024598835ac381fd7c4018.bitwarden.com +carLicense: YMAJCH +departmentNumber: 9860 +employeeType: Contract +homePhone: +1 415 958-8889 +initials: T. A. +mobile: +1 415 182-7277 +pager: +1 415 475-3504 +roomNumber: 8283 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Riannon Clifford,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Riannon Clifford +sn: Clifford +description: This is Riannon Clifford's description +facsimileTelephoneNumber: +1 415 721-9892 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 554-4680 +title: Supreme Management Director +userPassword: Password1 +uid: ClifforR +givenName: Riannon +mail: ClifforR@381edf6354fd4fd3a976c3a9bb7eb2fa.bitwarden.com +carLicense: B2PKM9 +departmentNumber: 2700 +employeeType: Contract +homePhone: +1 415 478-4764 +initials: R. C. +mobile: +1 415 509-9254 +pager: +1 415 471-8241 +roomNumber: 9578 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Roxanne Kardos,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxanne Kardos +sn: Kardos +description: This is Roxanne Kardos's description +facsimileTelephoneNumber: +1 213 907-6626 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 604-5089 +title: Associate Management Consultant +userPassword: Password1 +uid: KardosR +givenName: Roxanne +mail: KardosR@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com +carLicense: C8O2AV +departmentNumber: 1211 +employeeType: Normal +homePhone: +1 213 313-8221 +initials: R. K. +mobile: +1 213 917-6457 +pager: +1 213 120-3153 +roomNumber: 8081 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Salome Shellman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salome Shellman +sn: Shellman +description: This is Salome Shellman's description +facsimileTelephoneNumber: +1 415 832-7294 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 582-2842 +title: Chief Janitorial Developer +userPassword: Password1 +uid: ShellmaS +givenName: Salome +mail: ShellmaS@0e8d3e7c91844fc28c9cb7dae19a7c8b.bitwarden.com +carLicense: V1OP7D +departmentNumber: 8542 +employeeType: Normal +homePhone: +1 415 803-3921 +initials: S. S. +mobile: +1 415 587-6879 +pager: +1 415 155-4342 +roomNumber: 9218 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Agnella Shiley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agnella Shiley +sn: Shiley +description: This is Agnella Shiley's description +facsimileTelephoneNumber: +1 213 442-7555 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 926-6807 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: ShileyA +givenName: Agnella +mail: ShileyA@f162e574cf2641c8aecb8adf97e4bdce.bitwarden.com +carLicense: E3P6VL +departmentNumber: 5781 +employeeType: Contract +homePhone: +1 213 646-3438 +initials: A. S. +mobile: +1 213 688-5725 +pager: +1 213 730-7625 +roomNumber: 9075 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozina Mcgehee +sn: Mcgehee +description: This is Rozina Mcgehee's description +facsimileTelephoneNumber: +1 804 562-4949 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 424-5898 +title: Associate Administrative Warrior +userPassword: Password1 +uid: McgeheeR +givenName: Rozina +mail: McgeheeR@dd11611b8b2c47a382a866e9115fea27.bitwarden.com +carLicense: 844CF8 +departmentNumber: 7296 +employeeType: Contract +homePhone: +1 804 152-5921 +initials: R. M. +mobile: +1 804 891-5139 +pager: +1 804 805-8483 +roomNumber: 9614 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyanna Mayfield +sn: Mayfield +description: This is Dyanna Mayfield's description +facsimileTelephoneNumber: +1 415 212-9908 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 415 652-4666 +title: Master Product Development Technician +userPassword: Password1 +uid: MayfielD +givenName: Dyanna +mail: MayfielD@fbf9796b109949e0bf1c76d2980dbc89.bitwarden.com +carLicense: YS2H95 +departmentNumber: 7296 +employeeType: Normal +homePhone: +1 415 229-8777 +initials: D. M. +mobile: +1 415 775-8654 +pager: +1 415 275-8009 +roomNumber: 9394 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Afzal Muise,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Afzal Muise +sn: Muise +description: This is Afzal Muise's description +facsimileTelephoneNumber: +1 804 272-4451 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 364-8136 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: MuiseA +givenName: Afzal +mail: MuiseA@08ef9a8d6f01404e8be2a5108314f4b6.bitwarden.com +carLicense: GH7LTK +departmentNumber: 6465 +employeeType: Employee +homePhone: +1 804 738-7431 +initials: A. M. +mobile: +1 804 517-3399 +pager: +1 804 319-8661 +roomNumber: 9154 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dayna Ayyuce +sn: Ayyuce +description: This is Dayna Ayyuce's description +facsimileTelephoneNumber: +1 415 272-5959 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 893-6437 +title: Junior Product Development President +userPassword: Password1 +uid: AyyuceD +givenName: Dayna +mail: AyyuceD@273b97d9d3ef49d78a58814ba63e226c.bitwarden.com +carLicense: AJL8WH +departmentNumber: 3049 +employeeType: Normal +homePhone: +1 415 257-7913 +initials: D. A. +mobile: +1 415 655-4127 +pager: +1 415 504-6866 +roomNumber: 8146 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dita Yarosh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dita Yarosh +sn: Yarosh +description: This is Dita Yarosh's description +facsimileTelephoneNumber: +1 804 900-3349 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 208-6652 +title: Associate Payroll Technician +userPassword: Password1 +uid: YaroshD +givenName: Dita +mail: YaroshD@17084ac6bac544e082e8e10baef9e88a.bitwarden.com +carLicense: I14V47 +departmentNumber: 7966 +employeeType: Normal +homePhone: +1 804 792-9273 +initials: D. Y. +mobile: +1 804 457-2669 +pager: +1 804 439-1418 +roomNumber: 8339 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Aparna Gamsa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aparna Gamsa +sn: Gamsa +description: This is Aparna Gamsa's description +facsimileTelephoneNumber: +1 804 543-3293 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 878-3011 +title: Master Payroll Czar +userPassword: Password1 +uid: GamsaA +givenName: Aparna +mail: GamsaA@2776697a3f73478a98d2005898493a90.bitwarden.com +carLicense: BS06QL +departmentNumber: 8006 +employeeType: Contract +homePhone: +1 804 671-8248 +initials: A. G. +mobile: +1 804 867-9321 +pager: +1 804 173-4810 +roomNumber: 8272 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Angelita Letsome,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angelita Letsome +sn: Letsome +description: This is Angelita Letsome's description +facsimileTelephoneNumber: +1 804 162-6258 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 640-6189 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: LetsomeA +givenName: Angelita +mail: LetsomeA@399088e535dc444183a128d7fd1a5d16.bitwarden.com +carLicense: UDASLC +departmentNumber: 7996 +employeeType: Contract +homePhone: +1 804 586-9786 +initials: A. L. +mobile: +1 804 565-4185 +pager: +1 804 985-3554 +roomNumber: 9383 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Peder Lotan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peder Lotan +sn: Lotan +description: This is Peder Lotan's description +facsimileTelephoneNumber: +1 510 811-4020 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 664-1707 +title: Associate Administrative Punk +userPassword: Password1 +uid: LotanP +givenName: Peder +mail: LotanP@37616ed5e0b7446e8aebcafc0ca73cc0.bitwarden.com +carLicense: BH5VQ6 +departmentNumber: 7163 +employeeType: Contract +homePhone: +1 510 419-1956 +initials: P. L. +mobile: +1 510 505-4991 +pager: +1 510 187-4226 +roomNumber: 9633 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Etienne Courchesne,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Etienne Courchesne +sn: Courchesne +description: This is Etienne Courchesne's description +facsimileTelephoneNumber: +1 510 603-8843 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 559-3629 +title: Master Payroll Stooge +userPassword: Password1 +uid: CourcheE +givenName: Etienne +mail: CourcheE@22132cebdbcd4006980be48431d0e6f6.bitwarden.com +carLicense: CARLHQ +departmentNumber: 6714 +employeeType: Contract +homePhone: +1 510 117-8686 +initials: E. C. +mobile: +1 510 151-3445 +pager: +1 510 973-9897 +roomNumber: 8826 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ankie Alswiti +sn: Alswiti +description: This is Ankie Alswiti's description +facsimileTelephoneNumber: +1 510 697-8672 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 943-6633 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: AlswitiA +givenName: Ankie +mail: AlswitiA@397e97404f3546c5897ea44ae061b6ec.bitwarden.com +carLicense: YMI338 +departmentNumber: 8484 +employeeType: Contract +homePhone: +1 510 402-2528 +initials: A. A. +mobile: +1 510 207-1044 +pager: +1 510 711-1773 +roomNumber: 8914 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Huguette Foos,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huguette Foos +sn: Foos +description: This is Huguette Foos's description +facsimileTelephoneNumber: +1 510 243-8542 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 177-9492 +title: Chief Product Development Sales Rep +userPassword: Password1 +uid: FoosH +givenName: Huguette +mail: FoosH@c2abdbe4b359461aa1626e1fb6d88367.bitwarden.com +carLicense: U7VTQP +departmentNumber: 6326 +employeeType: Employee +homePhone: +1 510 563-2877 +initials: H. F. +mobile: +1 510 113-7416 +pager: +1 510 687-9559 +roomNumber: 8420 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rania Myhill,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rania Myhill +sn: Myhill +description: This is Rania Myhill's description +facsimileTelephoneNumber: +1 206 617-7698 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 909-6879 +title: Chief Human Resources Artist +userPassword: Password1 +uid: MyhillR +givenName: Rania +mail: MyhillR@fa687144921b436e82405266f480b00e.bitwarden.com +carLicense: NMWQF6 +departmentNumber: 8709 +employeeType: Normal +homePhone: +1 206 582-7916 +initials: R. M. +mobile: +1 206 340-7415 +pager: +1 206 755-8107 +roomNumber: 9484 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Crista Saha,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crista Saha +sn: Saha +description: This is Crista Saha's description +facsimileTelephoneNumber: +1 818 219-8306 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 365-2435 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: SahaC +givenName: Crista +mail: SahaC@bfc4a1524e6a4503b462f17821625900.bitwarden.com +carLicense: MSACOI +departmentNumber: 3766 +employeeType: Normal +homePhone: +1 818 727-6058 +initials: C. S. +mobile: +1 818 977-4724 +pager: +1 818 119-9841 +roomNumber: 9816 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dori Brissette,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dori Brissette +sn: Brissette +description: This is Dori Brissette's description +facsimileTelephoneNumber: +1 415 644-7508 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 792-7813 +title: Master Management Manager +userPassword: Password1 +uid: BrissetD +givenName: Dori +mail: BrissetD@2373108c8b97400aab01ae216d289e3e.bitwarden.com +carLicense: WD9XH7 +departmentNumber: 8575 +employeeType: Employee +homePhone: +1 415 475-4277 +initials: D. B. +mobile: +1 415 663-4671 +pager: +1 415 480-3882 +roomNumber: 8929 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Niki Bonney,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niki Bonney +sn: Bonney +description: This is Niki Bonney's description +facsimileTelephoneNumber: +1 415 589-9058 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 959-7593 +title: Master Human Resources Consultant +userPassword: Password1 +uid: BonneyN +givenName: Niki +mail: BonneyN@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com +carLicense: 781RP3 +departmentNumber: 2517 +employeeType: Employee +homePhone: +1 415 201-8301 +initials: N. B. +mobile: +1 415 248-8695 +pager: +1 415 306-7438 +roomNumber: 9045 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lyman Busuttil,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyman Busuttil +sn: Busuttil +description: This is Lyman Busuttil's description +facsimileTelephoneNumber: +1 804 441-9181 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 881-7892 +title: Supreme Payroll Manager +userPassword: Password1 +uid: BusuttiL +givenName: Lyman +mail: BusuttiL@0eb58aa3ce014174951ad2a21de0a67c.bitwarden.com +carLicense: Y1SHWH +departmentNumber: 7265 +employeeType: Normal +homePhone: +1 804 588-4382 +initials: L. B. +mobile: +1 804 181-7458 +pager: +1 804 618-5536 +roomNumber: 8859 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Loon Esselbach,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loon Esselbach +sn: Esselbach +description: This is Loon Esselbach's description +facsimileTelephoneNumber: +1 510 251-5978 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 178-4411 +title: Supreme Peons Admin +userPassword: Password1 +uid: EsselbaL +givenName: Loon +mail: EsselbaL@452b07d8b57c4e09984de2d02211dad8.bitwarden.com +carLicense: MOQLCE +departmentNumber: 7919 +employeeType: Employee +homePhone: +1 510 270-1353 +initials: L. E. +mobile: +1 510 836-6829 +pager: +1 510 436-4722 +roomNumber: 8866 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Eleni Hiers,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eleni Hiers +sn: Hiers +description: This is Eleni Hiers's description +facsimileTelephoneNumber: +1 213 774-5224 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 267-2729 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: HiersE +givenName: Eleni +mail: HiersE@75be32b1be62419e90c08307d5bdff60.bitwarden.com +carLicense: XR9XIN +departmentNumber: 6068 +employeeType: Employee +homePhone: +1 213 800-9871 +initials: E. H. +mobile: +1 213 585-2884 +pager: +1 213 431-1656 +roomNumber: 9352 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sal Soo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sal Soo +sn: Soo +description: This is Sal Soo's description +facsimileTelephoneNumber: +1 510 387-3148 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 907-9791 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: SooS +givenName: Sal +mail: SooS@d5e4a37826af47d086930b55ea76e123.bitwarden.com +carLicense: MSFXB7 +departmentNumber: 7610 +employeeType: Contract +homePhone: +1 510 163-8092 +initials: S. S. +mobile: +1 510 338-4636 +pager: +1 510 917-2291 +roomNumber: 9163 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tdr Porebski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tdr Porebski +sn: Porebski +description: This is Tdr Porebski's description +facsimileTelephoneNumber: +1 408 863-2361 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 980-2445 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: PorebskT +givenName: Tdr +mail: PorebskT@8959763ade854592b5aa640be7f6b9e1.bitwarden.com +carLicense: XOMXXY +departmentNumber: 9164 +employeeType: Contract +homePhone: +1 408 324-6091 +initials: T. P. +mobile: +1 408 138-4478 +pager: +1 408 230-2835 +roomNumber: 8572 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lilian Binda,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilian Binda +sn: Binda +description: This is Lilian Binda's description +facsimileTelephoneNumber: +1 408 742-9936 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 116-6885 +title: Associate Administrative Warrior +userPassword: Password1 +uid: BindaL +givenName: Lilian +mail: BindaL@5b2a207a5b574a8faa45790df76c253d.bitwarden.com +carLicense: 00UHRX +departmentNumber: 4222 +employeeType: Normal +homePhone: +1 408 919-9871 +initials: L. B. +mobile: +1 408 536-5675 +pager: +1 408 570-6568 +roomNumber: 8147 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fil Craggs,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fil Craggs +sn: Craggs +description: This is Fil Craggs's description +facsimileTelephoneNumber: +1 804 241-7265 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 481-3334 +title: Master Product Testing Manager +userPassword: Password1 +uid: CraggsF +givenName: Fil +mail: CraggsF@5e498601fec6496f923804926db532bf.bitwarden.com +carLicense: 2NYPKK +departmentNumber: 5300 +employeeType: Contract +homePhone: +1 804 841-7747 +initials: F. C. +mobile: +1 804 857-2297 +pager: +1 804 686-5789 +roomNumber: 8104 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fan Bednar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fan Bednar +sn: Bednar +description: This is Fan Bednar's description +facsimileTelephoneNumber: +1 415 416-8867 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 893-6740 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: BednarF +givenName: Fan +mail: BednarF@c87bc1fef8d745d786889b1fab00a75d.bitwarden.com +carLicense: 72Y935 +departmentNumber: 3486 +employeeType: Contract +homePhone: +1 415 356-2933 +initials: F. B. +mobile: +1 415 870-2895 +pager: +1 415 898-4724 +roomNumber: 8562 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kanya Koens,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanya Koens +sn: Koens +description: This is Kanya Koens's description +facsimileTelephoneNumber: +1 206 440-1944 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 439-9372 +title: Junior Peons Engineer +userPassword: Password1 +uid: KoensK +givenName: Kanya +mail: KoensK@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com +carLicense: I6TIH0 +departmentNumber: 5540 +employeeType: Employee +homePhone: +1 206 703-1977 +initials: K. K. +mobile: +1 206 795-9308 +pager: +1 206 593-6880 +roomNumber: 8910 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ankie Gonzalez +sn: Gonzalez +description: This is Ankie Gonzalez's description +facsimileTelephoneNumber: +1 415 186-8789 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 550-1239 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: GonzaleA +givenName: Ankie +mail: GonzaleA@98de157df44849a386267d7b22539a05.bitwarden.com +carLicense: DEEXW5 +departmentNumber: 4468 +employeeType: Contract +homePhone: +1 415 591-7997 +initials: A. G. +mobile: +1 415 909-5943 +pager: +1 415 964-1521 +roomNumber: 9427 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Salomi Enns,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salomi Enns +sn: Enns +description: This is Salomi Enns's description +facsimileTelephoneNumber: +1 804 306-5441 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 469-5447 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: EnnsS +givenName: Salomi +mail: EnnsS@abb4a2ffe4d34b86b74539eca6366630.bitwarden.com +carLicense: EG2FCS +departmentNumber: 7324 +employeeType: Normal +homePhone: +1 804 995-8371 +initials: S. E. +mobile: +1 804 696-3032 +pager: +1 804 623-4472 +roomNumber: 8330 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dido Lanthier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dido Lanthier +sn: Lanthier +description: This is Dido Lanthier's description +facsimileTelephoneNumber: +1 415 872-6133 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 168-5270 +title: Chief Janitorial Artist +userPassword: Password1 +uid: LanthieD +givenName: Dido +mail: LanthieD@29c4c2eff1254d0fa5ef75aff69c2367.bitwarden.com +carLicense: XGQ4RW +departmentNumber: 9556 +employeeType: Employee +homePhone: +1 415 382-1472 +initials: D. L. +mobile: +1 415 552-6690 +pager: +1 415 824-2047 +roomNumber: 9404 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jimmy Ordas +sn: Ordas +description: This is Jimmy Ordas's description +facsimileTelephoneNumber: +1 804 925-6062 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 571-7510 +title: Associate Janitorial Figurehead +userPassword: Password1 +uid: OrdasJ +givenName: Jimmy +mail: OrdasJ@05a2fd0e10bf4289846c6e93c41488ca.bitwarden.com +carLicense: FFEIH8 +departmentNumber: 6601 +employeeType: Contract +homePhone: +1 804 346-2580 +initials: J. O. +mobile: +1 804 483-4344 +pager: +1 804 469-9416 +roomNumber: 8851 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Corny Uyar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corny Uyar +sn: Uyar +description: This is Corny Uyar's description +facsimileTelephoneNumber: +1 206 798-5996 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 378-2341 +title: Chief Product Testing Figurehead +userPassword: Password1 +uid: UyarC +givenName: Corny +mail: UyarC@1c28c1703df64c479dc58745ec8ce098.bitwarden.com +carLicense: SJ9C8C +departmentNumber: 8853 +employeeType: Normal +homePhone: +1 206 870-3057 +initials: C. U. +mobile: +1 206 609-1484 +pager: +1 206 875-4737 +roomNumber: 8356 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pinder Barclay,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pinder Barclay +sn: Barclay +description: This is Pinder Barclay's description +facsimileTelephoneNumber: +1 415 640-3664 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 841-9838 +title: Master Janitorial Warrior +userPassword: Password1 +uid: BarclayP +givenName: Pinder +mail: BarclayP@1a1d47519dd04c80a33af98c584fc1ad.bitwarden.com +carLicense: 88V1SB +departmentNumber: 4123 +employeeType: Normal +homePhone: +1 415 648-6589 +initials: P. B. +mobile: +1 415 329-8866 +pager: +1 415 339-6140 +roomNumber: 8901 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Micki Munns,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micki Munns +sn: Munns +description: This is Micki Munns's description +facsimileTelephoneNumber: +1 408 381-7606 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 934-9141 +title: Chief Administrative Visionary +userPassword: Password1 +uid: MunnsM +givenName: Micki +mail: MunnsM@b42b6a99e6224e4c89291ebf380e3cbd.bitwarden.com +carLicense: O349LG +departmentNumber: 5583 +employeeType: Employee +homePhone: +1 408 819-4873 +initials: M. M. +mobile: +1 408 232-6371 +pager: +1 408 259-1118 +roomNumber: 8495 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Milly Raines,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milly Raines +sn: Raines +description: This is Milly Raines's description +facsimileTelephoneNumber: +1 818 428-4995 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 818 899-9751 +title: Junior Management Pinhead +userPassword: Password1 +uid: RainesM +givenName: Milly +mail: RainesM@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com +carLicense: DJIHJR +departmentNumber: 9045 +employeeType: Employee +homePhone: +1 818 112-5016 +initials: M. R. +mobile: +1 818 925-5298 +pager: +1 818 780-7845 +roomNumber: 9501 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pas Waines,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pas Waines +sn: Waines +description: This is Pas Waines's description +facsimileTelephoneNumber: +1 510 724-6141 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 510 141-3727 +title: Junior Administrative Architect +userPassword: Password1 +uid: WainesP +givenName: Pas +mail: WainesP@42f6c709ced54560a282482057eafc53.bitwarden.com +carLicense: I25J5K +departmentNumber: 6381 +employeeType: Normal +homePhone: +1 510 232-7364 +initials: P. W. +mobile: +1 510 107-5873 +pager: +1 510 928-4192 +roomNumber: 9971 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maureen Hagewood +sn: Hagewood +description: This is Maureen Hagewood's description +facsimileTelephoneNumber: +1 408 728-2074 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 769-9716 +title: Junior Product Testing Artist +userPassword: Password1 +uid: HagewooM +givenName: Maureen +mail: HagewooM@52253f5384a34a7d887f92c29a569c37.bitwarden.com +carLicense: VKQPIL +departmentNumber: 2768 +employeeType: Normal +homePhone: +1 408 794-1859 +initials: M. H. +mobile: +1 408 846-5277 +pager: +1 408 943-2556 +roomNumber: 9751 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vilhelmina Monet +sn: Monet +description: This is Vilhelmina Monet's description +facsimileTelephoneNumber: +1 213 797-6437 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 715-1877 +title: Chief Administrative Evangelist +userPassword: Password1 +uid: MonetV +givenName: Vilhelmina +mail: MonetV@06eebdce40db4f3caf1a195e21aa43e4.bitwarden.com +carLicense: M3ES01 +departmentNumber: 1512 +employeeType: Contract +homePhone: +1 213 915-3865 +initials: V. M. +mobile: +1 213 914-2644 +pager: +1 213 677-2481 +roomNumber: 9900 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LeeAnne Kinahan +sn: Kinahan +description: This is LeeAnne Kinahan's description +facsimileTelephoneNumber: +1 804 331-2117 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 890-3740 +title: Chief Payroll Assistant +userPassword: Password1 +uid: KinahanL +givenName: LeeAnne +mail: KinahanL@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com +carLicense: U14DH4 +departmentNumber: 3314 +employeeType: Normal +homePhone: +1 804 469-3258 +initials: L. K. +mobile: +1 804 683-7878 +pager: +1 804 179-9240 +roomNumber: 9020 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pamelina Chohan +sn: Chohan +description: This is Pamelina Chohan's description +facsimileTelephoneNumber: +1 804 402-2295 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 211-1493 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: ChohanP +givenName: Pamelina +mail: ChohanP@edfe7405a5b34e7bb39744d59a06067d.bitwarden.com +carLicense: YOXMC2 +departmentNumber: 3780 +employeeType: Contract +homePhone: +1 804 636-6779 +initials: P. C. +mobile: +1 804 364-6945 +pager: +1 804 164-9976 +roomNumber: 8471 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kala Berning,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kala Berning +sn: Berning +description: This is Kala Berning's description +facsimileTelephoneNumber: +1 818 644-2369 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 937-7793 +title: Chief Peons Stooge +userPassword: Password1 +uid: BerningK +givenName: Kala +mail: BerningK@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com +carLicense: KOD3WT +departmentNumber: 1157 +employeeType: Contract +homePhone: +1 818 454-1244 +initials: K. B. +mobile: +1 818 419-9466 +pager: +1 818 350-2931 +roomNumber: 8481 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherye INFOMANAGEMENT +sn: INFOMANAGEMENT +description: This is Sherye INFOMANAGEMENT's description +facsimileTelephoneNumber: +1 415 747-3310 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 560-2484 +title: Associate Management Visionary +userPassword: Password1 +uid: INFOMANS +givenName: Sherye +mail: INFOMANS@eb1784d5a4ea473392ddeedf92456d2b.bitwarden.com +carLicense: HOLDCB +departmentNumber: 2442 +employeeType: Contract +homePhone: +1 415 426-9801 +initials: S. I. +mobile: +1 415 625-4543 +pager: +1 415 936-6560 +roomNumber: 8028 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Greg Bach,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greg Bach +sn: Bach +description: This is Greg Bach's description +facsimileTelephoneNumber: +1 818 940-9804 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 343-8479 +title: Chief Product Development Architect +userPassword: Password1 +uid: BachG +givenName: Greg +mail: BachG@2469394f129543cb9155b397e142213f.bitwarden.com +carLicense: BI9M3T +departmentNumber: 3834 +employeeType: Employee +homePhone: +1 818 483-6358 +initials: G. B. +mobile: +1 818 199-4594 +pager: +1 818 439-9257 +roomNumber: 8313 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clay Rasmussen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clay Rasmussen +sn: Rasmussen +description: This is Clay Rasmussen's description +facsimileTelephoneNumber: +1 213 580-1214 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 312-7998 +title: Associate Management Dictator +userPassword: Password1 +uid: RasmussC +givenName: Clay +mail: RasmussC@71e3553ec3204c71bbaf2a269c9d85d6.bitwarden.com +carLicense: 0C3B64 +departmentNumber: 5794 +employeeType: Employee +homePhone: +1 213 834-9201 +initials: C. R. +mobile: +1 213 619-2499 +pager: +1 213 730-6059 +roomNumber: 8048 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kira Rummans,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kira Rummans +sn: Rummans +description: This is Kira Rummans's description +facsimileTelephoneNumber: +1 415 676-1130 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 415 115-3217 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: RummansK +givenName: Kira +mail: RummansK@8c2b7f547cbf444783e38759415bbe6b.bitwarden.com +carLicense: D9CAEN +departmentNumber: 3812 +employeeType: Normal +homePhone: +1 415 776-1153 +initials: K. R. +mobile: +1 415 573-9696 +pager: +1 415 398-5517 +roomNumber: 8153 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Graciela Birtch,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Graciela Birtch +sn: Birtch +description: This is Graciela Birtch's description +facsimileTelephoneNumber: +1 206 104-3590 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 125-7497 +title: Master Human Resources Grunt +userPassword: Password1 +uid: BirtchG +givenName: Graciela +mail: BirtchG@28fd72e4e1764c5c81212e44cd7113d3.bitwarden.com +carLicense: TC0WLD +departmentNumber: 1378 +employeeType: Normal +homePhone: +1 206 691-8768 +initials: G. B. +mobile: +1 206 953-2409 +pager: +1 206 738-7547 +roomNumber: 8740 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Audie Pintwala,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Audie Pintwala +sn: Pintwala +description: This is Audie Pintwala's description +facsimileTelephoneNumber: +1 206 679-6740 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 206 750-1968 +title: Associate Management Consultant +userPassword: Password1 +uid: PintwalA +givenName: Audie +mail: PintwalA@cad34ac8884647e3aa084b319084cb10.bitwarden.com +carLicense: EK5BAK +departmentNumber: 3136 +employeeType: Normal +homePhone: +1 206 349-2989 +initials: A. P. +mobile: +1 206 289-2343 +pager: +1 206 947-7632 +roomNumber: 8871 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardath Pokrywa +sn: Pokrywa +description: This is Ardath Pokrywa's description +facsimileTelephoneNumber: +1 510 873-5685 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 623-2582 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: PokrywaA +givenName: Ardath +mail: PokrywaA@5eb9182fed7b491098a3a7edcd1734b0.bitwarden.com +carLicense: IFKSNQ +departmentNumber: 5951 +employeeType: Normal +homePhone: +1 510 735-5932 +initials: A. P. +mobile: +1 510 176-1118 +pager: +1 510 484-5002 +roomNumber: 9436 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gabbie Chiverton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabbie Chiverton +sn: Chiverton +description: This is Gabbie Chiverton's description +facsimileTelephoneNumber: +1 818 200-7702 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 129-3504 +title: Chief Peons Grunt +userPassword: Password1 +uid: ChivertG +givenName: Gabbie +mail: ChivertG@341957991cd048f28879d34846561132.bitwarden.com +carLicense: VIYJUL +departmentNumber: 7863 +employeeType: Employee +homePhone: +1 818 437-2240 +initials: G. C. +mobile: +1 818 558-3351 +pager: +1 818 887-1907 +roomNumber: 9519 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Deann Sheridan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deann Sheridan +sn: Sheridan +description: This is Deann Sheridan's description +facsimileTelephoneNumber: +1 415 798-9545 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 851-6058 +title: Supreme Peons Czar +userPassword: Password1 +uid: SheridaD +givenName: Deann +mail: SheridaD@0fc5b098eca54d018d5f544f351b55a0.bitwarden.com +carLicense: 5TLCIG +departmentNumber: 6372 +employeeType: Normal +homePhone: +1 415 908-1942 +initials: D. S. +mobile: +1 415 613-5485 +pager: +1 415 798-9492 +roomNumber: 8281 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Orie Lahaie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orie Lahaie +sn: Lahaie +description: This is Orie Lahaie's description +facsimileTelephoneNumber: +1 415 715-4037 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 197-7239 +title: Associate Human Resources Warrior +userPassword: Password1 +uid: LahaieO +givenName: Orie +mail: LahaieO@20c2d999fe734387b26090f6d88bafe4.bitwarden.com +carLicense: EKBGGR +departmentNumber: 1578 +employeeType: Contract +homePhone: +1 415 697-9088 +initials: O. L. +mobile: +1 415 834-1758 +pager: +1 415 701-8591 +roomNumber: 9134 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hodge Schroff,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hodge Schroff +sn: Schroff +description: This is Hodge Schroff's description +facsimileTelephoneNumber: +1 510 740-8140 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 738-9934 +title: Chief Janitorial Consultant +userPassword: Password1 +uid: SchroffH +givenName: Hodge +mail: SchroffH@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com +carLicense: 13PI1A +departmentNumber: 6441 +employeeType: Employee +homePhone: +1 510 303-8843 +initials: H. S. +mobile: +1 510 902-4929 +pager: +1 510 888-5955 +roomNumber: 8811 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Purvee Tajbakhsh +sn: Tajbakhsh +description: This is Purvee Tajbakhsh's description +facsimileTelephoneNumber: +1 408 932-7487 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 557-7982 +title: Junior Product Testing Mascot +userPassword: Password1 +uid: TajbakhP +givenName: Purvee +mail: TajbakhP@f0190c6ffb8140a8888371e20ba308b1.bitwarden.com +carLicense: VNWDJL +departmentNumber: 3337 +employeeType: Normal +homePhone: +1 408 322-7115 +initials: P. T. +mobile: +1 408 181-7801 +pager: +1 408 947-9542 +roomNumber: 8918 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gertrude Rains,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertrude Rains +sn: Rains +description: This is Gertrude Rains's description +facsimileTelephoneNumber: +1 206 277-7288 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 731-3583 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: RainsG +givenName: Gertrude +mail: RainsG@dacf8be8631a4913bc41ce43ad9faa82.bitwarden.com +carLicense: N7YQVO +departmentNumber: 9809 +employeeType: Contract +homePhone: +1 206 858-2025 +initials: G. R. +mobile: +1 206 746-9052 +pager: +1 206 726-2747 +roomNumber: 8730 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=ChuChay Averett,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChuChay Averett +sn: Averett +description: This is ChuChay Averett's description +facsimileTelephoneNumber: +1 818 571-4250 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 368-8084 +title: Master Janitorial Technician +userPassword: Password1 +uid: AverettC +givenName: ChuChay +mail: AverettC@8c75d8449fe241b583cdc3782aba550b.bitwarden.com +carLicense: Y43WI0 +departmentNumber: 2920 +employeeType: Normal +homePhone: +1 818 786-3556 +initials: C. A. +mobile: +1 818 192-7382 +pager: +1 818 596-4432 +roomNumber: 9174 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Amando Fernandez,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amando Fernandez +sn: Fernandez +description: This is Amando Fernandez's description +facsimileTelephoneNumber: +1 415 790-2893 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 113-7184 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: FernandA +givenName: Amando +mail: FernandA@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com +carLicense: 7Q56KO +departmentNumber: 5561 +employeeType: Employee +homePhone: +1 415 960-6373 +initials: A. F. +mobile: +1 415 294-6992 +pager: +1 415 885-7844 +roomNumber: 9270 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carolann McCorkle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolann McCorkle +sn: McCorkle +description: This is Carolann McCorkle's description +facsimileTelephoneNumber: +1 206 288-9301 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 976-4585 +title: Supreme Product Development Writer +userPassword: Password1 +uid: McCorklC +givenName: Carolann +mail: McCorklC@0aab2eb5b2a945ccbb114c330fb9e2b8.bitwarden.com +carLicense: PLKDO3 +departmentNumber: 4511 +employeeType: Employee +homePhone: +1 206 410-9773 +initials: C. M. +mobile: +1 206 962-8183 +pager: +1 206 487-9432 +roomNumber: 9087 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kalvin Jamshidi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalvin Jamshidi +sn: Jamshidi +description: This is Kalvin Jamshidi's description +facsimileTelephoneNumber: +1 213 308-3942 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 335-5874 +title: Associate Management Pinhead +userPassword: Password1 +uid: JamshidK +givenName: Kalvin +mail: JamshidK@121a745798f148a58c20965d5aa96755.bitwarden.com +carLicense: WA6MEK +departmentNumber: 9688 +employeeType: Employee +homePhone: +1 213 958-9233 +initials: K. J. +mobile: +1 213 172-3563 +pager: +1 213 370-6539 +roomNumber: 8528 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Candis Gentzler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candis Gentzler +sn: Gentzler +description: This is Candis Gentzler's description +facsimileTelephoneNumber: +1 510 188-2248 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 693-3079 +title: Junior Management Engineer +userPassword: Password1 +uid: GentzleC +givenName: Candis +mail: GentzleC@da1b5788f067415eb6baf89891f2b951.bitwarden.com +carLicense: 5OO5QA +departmentNumber: 1936 +employeeType: Contract +homePhone: +1 510 974-4974 +initials: C. G. +mobile: +1 510 911-2417 +pager: +1 510 394-5482 +roomNumber: 8915 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bridgette Zawadka +sn: Zawadka +description: This is Bridgette Zawadka's description +facsimileTelephoneNumber: +1 510 996-1041 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 671-7669 +title: Master Product Testing Architect +userPassword: Password1 +uid: ZawadkaB +givenName: Bridgette +mail: ZawadkaB@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com +carLicense: KPRGNA +departmentNumber: 7094 +employeeType: Contract +homePhone: +1 510 518-5262 +initials: B. Z. +mobile: +1 510 137-5712 +pager: +1 510 379-2360 +roomNumber: 9074 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gil Strauss,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gil Strauss +sn: Strauss +description: This is Gil Strauss's description +facsimileTelephoneNumber: +1 804 805-9403 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 428-4185 +title: Master Management Punk +userPassword: Password1 +uid: StraussG +givenName: Gil +mail: StraussG@c6dd31aa272c4fe0ab00e6867d0f3706.bitwarden.com +carLicense: CB0DVV +departmentNumber: 4007 +employeeType: Contract +homePhone: +1 804 601-7276 +initials: G. S. +mobile: +1 804 908-9317 +pager: +1 804 699-6719 +roomNumber: 8051 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tommie Rasmussen +sn: Rasmussen +description: This is Tommie Rasmussen's description +facsimileTelephoneNumber: +1 213 884-9026 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 102-6551 +title: Supreme Administrative Czar +userPassword: Password1 +uid: RasmussT +givenName: Tommie +mail: RasmussT@a8d20277e9b84e2cbd2184d54cb3d399.bitwarden.com +carLicense: 9QEHTC +departmentNumber: 9173 +employeeType: Contract +homePhone: +1 213 285-3637 +initials: T. R. +mobile: +1 213 457-9650 +pager: +1 213 403-9961 +roomNumber: 9228 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Prab Crafton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prab Crafton +sn: Crafton +description: This is Prab Crafton's description +facsimileTelephoneNumber: +1 818 427-2850 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 818 640-5132 +title: Master Peons Dictator +userPassword: Password1 +uid: CraftonP +givenName: Prab +mail: CraftonP@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com +carLicense: WMICSJ +departmentNumber: 9067 +employeeType: Contract +homePhone: +1 818 931-3750 +initials: P. C. +mobile: +1 818 123-3098 +pager: +1 818 966-4787 +roomNumber: 9041 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Aurora Francoeur,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurora Francoeur +sn: Francoeur +description: This is Aurora Francoeur's description +facsimileTelephoneNumber: +1 206 766-1737 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 903-9173 +title: Associate Peons Madonna +userPassword: Password1 +uid: FrancoeA +givenName: Aurora +mail: FrancoeA@0d89387630504e3d959bb5ff8f1b89ae.bitwarden.com +carLicense: LD39BW +departmentNumber: 8894 +employeeType: Contract +homePhone: +1 206 181-6681 +initials: A. F. +mobile: +1 206 119-2024 +pager: +1 206 120-3014 +roomNumber: 8100 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Francois Willcox,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francois Willcox +sn: Willcox +description: This is Francois Willcox's description +facsimileTelephoneNumber: +1 415 814-9416 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 711-9016 +title: Master Administrative Developer +userPassword: Password1 +uid: WillcoxF +givenName: Francois +mail: WillcoxF@964166b8cdd041c68aaae270afb90271.bitwarden.com +carLicense: JLGMIN +departmentNumber: 8589 +employeeType: Contract +homePhone: +1 415 146-3146 +initials: F. W. +mobile: +1 415 939-9195 +pager: +1 415 855-5317 +roomNumber: 8470 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ethan Engelberg,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ethan Engelberg +sn: Engelberg +description: This is Ethan Engelberg's description +facsimileTelephoneNumber: +1 206 632-8121 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 206 854-7225 +title: Master Administrative Visionary +userPassword: Password1 +uid: EngelbeE +givenName: Ethan +mail: EngelbeE@9eb94e6e4d9a4f12b80d8878b163f5eb.bitwarden.com +carLicense: HJB0FF +departmentNumber: 2013 +employeeType: Contract +homePhone: +1 206 405-8156 +initials: E. E. +mobile: +1 206 691-4607 +pager: +1 206 799-1289 +roomNumber: 8957 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Beryl Security,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beryl Security +sn: Security +description: This is Beryl Security's description +facsimileTelephoneNumber: +1 213 627-5258 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 396-4621 +title: Master Peons Madonna +userPassword: Password1 +uid: SecuritB +givenName: Beryl +mail: SecuritB@3235591d985b4d2894779cd55ac400f1.bitwarden.com +carLicense: 8BJWUG +departmentNumber: 6243 +employeeType: Contract +homePhone: +1 213 798-5856 +initials: B. S. +mobile: +1 213 229-2220 +pager: +1 213 622-3964 +roomNumber: 9550 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jessica Lovelace,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessica Lovelace +sn: Lovelace +description: This is Jessica Lovelace's description +facsimileTelephoneNumber: +1 206 963-3546 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 469-4455 +title: Supreme Management Czar +userPassword: Password1 +uid: LovelacJ +givenName: Jessica +mail: LovelacJ@013fb02061ee471c942b593b9cccbedb.bitwarden.com +carLicense: L1LPUR +departmentNumber: 2442 +employeeType: Contract +homePhone: +1 206 883-2575 +initials: J. L. +mobile: +1 206 510-8956 +pager: +1 206 172-2919 +roomNumber: 8810 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karalynn Nakatsu +sn: Nakatsu +description: This is Karalynn Nakatsu's description +facsimileTelephoneNumber: +1 510 919-7941 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 501-5011 +title: Associate Administrative Director +userPassword: Password1 +uid: NakatsuK +givenName: Karalynn +mail: NakatsuK@61d349f36f74474aadc4b14dd96074dd.bitwarden.com +carLicense: 7B0DMD +departmentNumber: 1472 +employeeType: Contract +homePhone: +1 510 324-8603 +initials: K. N. +mobile: +1 510 634-6373 +pager: +1 510 769-2966 +roomNumber: 9309 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hollyanne Oplinger +sn: Oplinger +description: This is Hollyanne Oplinger's description +facsimileTelephoneNumber: +1 408 276-1515 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 702-9353 +title: Junior Peons Director +userPassword: Password1 +uid: OplingeH +givenName: Hollyanne +mail: OplingeH@7045dff84c244f86aba7fc41f1770a53.bitwarden.com +carLicense: OTOKDC +departmentNumber: 1249 +employeeType: Normal +homePhone: +1 408 202-1055 +initials: H. O. +mobile: +1 408 596-6549 +pager: +1 408 119-1737 +roomNumber: 8908 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fqa Desilets,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fqa Desilets +sn: Desilets +description: This is Fqa Desilets's description +facsimileTelephoneNumber: +1 213 228-6035 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 966-3469 +title: Supreme Management Admin +userPassword: Password1 +uid: DesiletF +givenName: Fqa +mail: DesiletF@8c05a39d9e7b44c5a7e0b257f5169f94.bitwarden.com +carLicense: POIITE +departmentNumber: 7831 +employeeType: Normal +homePhone: +1 213 952-4168 +initials: F. D. +mobile: +1 213 286-1675 +pager: +1 213 711-9477 +roomNumber: 8664 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanjoy Goyer +sn: Goyer +description: This is Sanjoy Goyer's description +facsimileTelephoneNumber: +1 408 931-4444 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 408 198-6681 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: GoyerS +givenName: Sanjoy +mail: GoyerS@5c5e024a9bda492c8e4259ce1ef75e57.bitwarden.com +carLicense: LBEEV9 +departmentNumber: 7231 +employeeType: Employee +homePhone: +1 408 553-2422 +initials: S. G. +mobile: +1 408 459-6098 +pager: +1 408 675-4377 +roomNumber: 8574 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emlynn Louie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emlynn Louie +sn: Louie +description: This is Emlynn Louie's description +facsimileTelephoneNumber: +1 415 526-8061 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 548-4181 +title: Associate Management Writer +userPassword: Password1 +uid: LouieE +givenName: Emlynn +mail: LouieE@cfa9cc9c255049a290ed0760c3f25871.bitwarden.com +carLicense: EI4VGI +departmentNumber: 7445 +employeeType: Employee +homePhone: +1 415 399-5415 +initials: E. L. +mobile: +1 415 771-3216 +pager: +1 415 344-5463 +roomNumber: 9743 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Russel Gillies,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Russel Gillies +sn: Gillies +description: This is Russel Gillies's description +facsimileTelephoneNumber: +1 818 792-5472 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 785-3217 +title: Junior Management Architect +userPassword: Password1 +uid: GilliesR +givenName: Russel +mail: GilliesR@0d90cad61d78488a96f7a4204f44a269.bitwarden.com +carLicense: UQU2DJ +departmentNumber: 5499 +employeeType: Normal +homePhone: +1 818 721-4593 +initials: R. G. +mobile: +1 818 628-8712 +pager: +1 818 451-4607 +roomNumber: 9623 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dionne Parniani,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dionne Parniani +sn: Parniani +description: This is Dionne Parniani's description +facsimileTelephoneNumber: +1 415 226-1771 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 415 416-2911 +title: Master Peons Pinhead +userPassword: Password1 +uid: ParnianD +givenName: Dionne +mail: ParnianD@ce6ea378c27b45efb4f43990327ef994.bitwarden.com +carLicense: 4T5ATJ +departmentNumber: 4763 +employeeType: Employee +homePhone: +1 415 859-6744 +initials: D. P. +mobile: +1 415 123-9777 +pager: +1 415 993-3377 +roomNumber: 9874 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Birmingham Shippen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Birmingham Shippen +sn: Shippen +description: This is Birmingham Shippen's description +facsimileTelephoneNumber: +1 206 831-4466 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 763-1843 +title: Junior Administrative Janitor +userPassword: Password1 +uid: ShippenB +givenName: Birmingham +mail: ShippenB@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com +carLicense: 2B0VXG +departmentNumber: 4963 +employeeType: Contract +homePhone: +1 206 297-2749 +initials: B. S. +mobile: +1 206 973-3763 +pager: +1 206 426-7650 +roomNumber: 8605 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Trudy Durling,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trudy Durling +sn: Durling +description: This is Trudy Durling's description +facsimileTelephoneNumber: +1 818 507-2318 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 818 682-9870 +title: Associate Product Testing Grunt +userPassword: Password1 +uid: DurlingT +givenName: Trudy +mail: DurlingT@a04d0222f0c24ad6848955600bad7ace.bitwarden.com +carLicense: IHW2YT +departmentNumber: 4484 +employeeType: Employee +homePhone: +1 818 269-4627 +initials: T. D. +mobile: +1 818 818-4575 +pager: +1 818 611-7591 +roomNumber: 8457 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirsteni Carsten +sn: Carsten +description: This is Kirsteni Carsten's description +facsimileTelephoneNumber: +1 408 431-3524 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 408 370-4072 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: CarstenK +givenName: Kirsteni +mail: CarstenK@f48984d7e7db42f4891e864fa2c4158a.bitwarden.com +carLicense: Q3K0DJ +departmentNumber: 8901 +employeeType: Contract +homePhone: +1 408 937-8116 +initials: K. C. +mobile: +1 408 652-2128 +pager: +1 408 951-4448 +roomNumber: 9330 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ermengarde Grafton +sn: Grafton +description: This is Ermengarde Grafton's description +facsimileTelephoneNumber: +1 510 562-4057 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 821-4031 +title: Chief Product Development Developer +userPassword: Password1 +uid: GraftonE +givenName: Ermengarde +mail: GraftonE@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com +carLicense: X7O6NQ +departmentNumber: 2507 +employeeType: Normal +homePhone: +1 510 276-8360 +initials: E. G. +mobile: +1 510 890-2806 +pager: +1 510 954-5348 +roomNumber: 9022 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Selena Mickens,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selena Mickens +sn: Mickens +description: This is Selena Mickens's description +facsimileTelephoneNumber: +1 415 126-3096 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 586-4495 +title: Junior Management Sales Rep +userPassword: Password1 +uid: MickensS +givenName: Selena +mail: MickensS@70748fe689e2445ebbe07527f7179bb2.bitwarden.com +carLicense: E92FGM +departmentNumber: 6607 +employeeType: Contract +homePhone: +1 415 322-4540 +initials: S. M. +mobile: +1 415 788-2910 +pager: +1 415 178-6063 +roomNumber: 8093 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Laureen Paczek,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laureen Paczek +sn: Paczek +description: This is Laureen Paczek's description +facsimileTelephoneNumber: +1 408 689-4231 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 833-9971 +title: Supreme Management Consultant +userPassword: Password1 +uid: PaczekL +givenName: Laureen +mail: PaczekL@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com +carLicense: NMG85M +departmentNumber: 5604 +employeeType: Employee +homePhone: +1 408 617-6037 +initials: L. P. +mobile: +1 408 636-8230 +pager: +1 408 260-9542 +roomNumber: 9522 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gurjinder Gosset,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gurjinder Gosset +sn: Gosset +description: This is Gurjinder Gosset's description +facsimileTelephoneNumber: +1 213 538-4617 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 989-9262 +title: Supreme Peons Artist +userPassword: Password1 +uid: GossetG +givenName: Gurjinder +mail: GossetG@113514e6e7e54b9abe6e86d17d96882b.bitwarden.com +carLicense: GV39D8 +departmentNumber: 8981 +employeeType: Employee +homePhone: +1 213 669-9290 +initials: G. G. +mobile: +1 213 242-9553 +pager: +1 213 454-9959 +roomNumber: 9980 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndsey Acree +sn: Acree +description: This is Lyndsey Acree's description +facsimileTelephoneNumber: +1 415 900-3180 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 344-4720 +title: Chief Product Testing Consultant +userPassword: Password1 +uid: AcreeL +givenName: Lyndsey +mail: AcreeL@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com +carLicense: DBAYCW +departmentNumber: 4539 +employeeType: Employee +homePhone: +1 415 650-8478 +initials: L. A. +mobile: +1 415 659-6426 +pager: +1 415 264-5544 +roomNumber: 9185 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dede McKeage,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dede McKeage +sn: McKeage +description: This is Dede McKeage's description +facsimileTelephoneNumber: +1 415 946-1582 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 646-3770 +title: Associate Janitorial Warrior +userPassword: Password1 +uid: McKeageD +givenName: Dede +mail: McKeageD@96d9bfed88fc4c2fb6c7e654ef7ed3a4.bitwarden.com +carLicense: JXE2AY +departmentNumber: 7122 +employeeType: Employee +homePhone: +1 415 703-6641 +initials: D. M. +mobile: +1 415 478-2388 +pager: +1 415 901-3000 +roomNumber: 9024 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shanda Scroger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shanda Scroger +sn: Scroger +description: This is Shanda Scroger's description +facsimileTelephoneNumber: +1 415 768-9385 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 591-3166 +title: Chief Payroll Technician +userPassword: Password1 +uid: ScrogerS +givenName: Shanda +mail: ScrogerS@973aea2b22d848eb9cb4bf9534e4dcdb.bitwarden.com +carLicense: N0X7D4 +departmentNumber: 9663 +employeeType: Employee +homePhone: +1 415 532-8706 +initials: S. S. +mobile: +1 415 369-3195 +pager: +1 415 799-5887 +roomNumber: 8497 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ophelia McHale,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ophelia McHale +sn: McHale +description: This is Ophelia McHale's description +facsimileTelephoneNumber: +1 818 930-2510 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 818 150-4059 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: McHaleO +givenName: Ophelia +mail: McHaleO@cdc31465418c4033ab89394a6307e530.bitwarden.com +carLicense: 47WJB6 +departmentNumber: 6795 +employeeType: Contract +homePhone: +1 818 327-9503 +initials: O. M. +mobile: +1 818 914-8065 +pager: +1 818 399-9413 +roomNumber: 9851 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ajit Kiens,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ajit Kiens +sn: Kiens +description: This is Ajit Kiens's description +facsimileTelephoneNumber: +1 510 760-1433 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 510 342-7188 +title: Master Administrative Madonna +userPassword: Password1 +uid: KiensA +givenName: Ajit +mail: KiensA@a8523f0ff874441ba48222b981c29c83.bitwarden.com +carLicense: TQDGCI +departmentNumber: 5582 +employeeType: Employee +homePhone: +1 510 701-9064 +initials: A. K. +mobile: +1 510 872-8176 +pager: +1 510 464-4636 +roomNumber: 9705 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nicole Zhao,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicole Zhao +sn: Zhao +description: This is Nicole Zhao's description +facsimileTelephoneNumber: +1 510 548-3105 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 510 595-5411 +title: Junior Human Resources Evangelist +userPassword: Password1 +uid: ZhaoN +givenName: Nicole +mail: ZhaoN@32e3fa5da06a4fd3803417733702b064.bitwarden.com +carLicense: GPBPTC +departmentNumber: 7257 +employeeType: Employee +homePhone: +1 510 819-9921 +initials: N. Z. +mobile: +1 510 365-1758 +pager: +1 510 305-6501 +roomNumber: 8531 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Saloma Alkire,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saloma Alkire +sn: Alkire +description: This is Saloma Alkire's description +facsimileTelephoneNumber: +1 818 529-3289 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 818 179-4752 +title: Associate Peons Writer +userPassword: Password1 +uid: AlkireS +givenName: Saloma +mail: AlkireS@ef9dfa73b56a46a59a0d8721e608cbdf.bitwarden.com +carLicense: XXLJSP +departmentNumber: 6886 +employeeType: Normal +homePhone: +1 818 834-3493 +initials: S. A. +mobile: +1 818 986-7024 +pager: +1 818 433-6564 +roomNumber: 8050 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Khosro Essery,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khosro Essery +sn: Essery +description: This is Khosro Essery's description +facsimileTelephoneNumber: +1 818 329-3655 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 798-9332 +title: Master Product Testing President +userPassword: Password1 +uid: EsseryK +givenName: Khosro +mail: EsseryK@bbe574aa78294bfe850c65ae7f84a624.bitwarden.com +carLicense: NTLGMO +departmentNumber: 1238 +employeeType: Employee +homePhone: +1 818 667-4079 +initials: K. E. +mobile: +1 818 100-6584 +pager: +1 818 845-3864 +roomNumber: 8294 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cubicle Subissati +sn: Subissati +description: This is Cubicle Subissati's description +facsimileTelephoneNumber: +1 804 439-6911 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 815-5402 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: SubissaC +givenName: Cubicle +mail: SubissaC@d7c42a5466a44da1a41df54a07b84c5f.bitwarden.com +carLicense: 3VAG5X +departmentNumber: 8645 +employeeType: Contract +homePhone: +1 804 573-3033 +initials: C. S. +mobile: +1 804 733-5311 +pager: +1 804 697-8186 +roomNumber: 9973 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Veronike Dyck,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veronike Dyck +sn: Dyck +description: This is Veronike Dyck's description +facsimileTelephoneNumber: +1 818 347-9726 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 740-1487 +title: Master Human Resources Consultant +userPassword: Password1 +uid: DyckV +givenName: Veronike +mail: DyckV@c29f91644d164b77b1b413826a23bf22.bitwarden.com +carLicense: LRAHG9 +departmentNumber: 8702 +employeeType: Contract +homePhone: +1 818 589-2527 +initials: V. D. +mobile: +1 818 733-7273 +pager: +1 818 993-1963 +roomNumber: 9256 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silvestro Sheaffer +sn: Sheaffer +description: This is Silvestro Sheaffer's description +facsimileTelephoneNumber: +1 818 572-5276 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 818 330-5265 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: SheaffeS +givenName: Silvestro +mail: SheaffeS@e242cd7509b945bca8984d07e1fb1255.bitwarden.com +carLicense: ABDQIS +departmentNumber: 4418 +employeeType: Employee +homePhone: +1 818 808-8053 +initials: S. S. +mobile: +1 818 709-9202 +pager: +1 818 414-6417 +roomNumber: 9600 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mehmet Kreiger +sn: Kreiger +description: This is Mehmet Kreiger's description +facsimileTelephoneNumber: +1 206 446-3684 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 380-8116 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: KreigerM +givenName: Mehmet +mail: KreigerM@bfc77f42d99045c285c6a308b0bd18e3.bitwarden.com +carLicense: 12SRI9 +departmentNumber: 8787 +employeeType: Normal +homePhone: +1 206 186-8418 +initials: M. K. +mobile: +1 206 452-4939 +pager: +1 206 602-8404 +roomNumber: 9959 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Franc Revelle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franc Revelle +sn: Revelle +description: This is Franc Revelle's description +facsimileTelephoneNumber: +1 213 558-1376 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 213 665-4467 +title: Associate Human Resources Figurehead +userPassword: Password1 +uid: RevelleF +givenName: Franc +mail: RevelleF@9969719ee85448e7af69c94963a94618.bitwarden.com +carLicense: 6KBVMD +departmentNumber: 5684 +employeeType: Normal +homePhone: +1 213 741-7251 +initials: F. R. +mobile: +1 213 360-6849 +pager: +1 213 837-2076 +roomNumber: 8602 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeremy Trutschel +sn: Trutschel +description: This is Jeremy Trutschel's description +facsimileTelephoneNumber: +1 415 566-3046 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 448-2965 +title: Master Administrative Developer +userPassword: Password1 +uid: TrutschJ +givenName: Jeremy +mail: TrutschJ@c77f15bdbae9450390cff589a04f790b.bitwarden.com +carLicense: 5W2S9S +departmentNumber: 2761 +employeeType: Employee +homePhone: +1 415 843-2286 +initials: J. T. +mobile: +1 415 325-6586 +pager: +1 415 831-4721 +roomNumber: 9652 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Freda Tschaja,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Freda Tschaja +sn: Tschaja +description: This is Freda Tschaja's description +facsimileTelephoneNumber: +1 818 887-3072 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 628-1640 +title: Associate Management Admin +userPassword: Password1 +uid: TschajaF +givenName: Freda +mail: TschajaF@04598eeb76624a4a926f3360b6a1c37d.bitwarden.com +carLicense: 9JRBIF +departmentNumber: 6294 +employeeType: Employee +homePhone: +1 818 728-3139 +initials: F. T. +mobile: +1 818 930-2728 +pager: +1 818 657-9419 +roomNumber: 8585 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Deepak Sangha,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deepak Sangha +sn: Sangha +description: This is Deepak Sangha's description +facsimileTelephoneNumber: +1 408 664-7299 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 852-4319 +title: Junior Payroll Warrior +userPassword: Password1 +uid: SanghaD +givenName: Deepak +mail: SanghaD@0d76f44b179b422cba17cc5ef36a3a2d.bitwarden.com +carLicense: CQ18O3 +departmentNumber: 7422 +employeeType: Normal +homePhone: +1 408 838-1643 +initials: D. S. +mobile: +1 408 518-8576 +pager: +1 408 705-4173 +roomNumber: 8806 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jennee Stover,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jennee Stover +sn: Stover +description: This is Jennee Stover's description +facsimileTelephoneNumber: +1 510 848-5241 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 612-4552 +title: Master Peons Vice President +userPassword: Password1 +uid: StoverJ +givenName: Jennee +mail: StoverJ@4a145fc9121947ce8b995d7a67929715.bitwarden.com +carLicense: 68PQX5 +departmentNumber: 9133 +employeeType: Contract +homePhone: +1 510 760-9193 +initials: J. S. +mobile: +1 510 662-8178 +pager: +1 510 690-3098 +roomNumber: 9986 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Diamond Brownfield,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Diamond Brownfield +sn: Brownfield +description: This is Diamond Brownfield's description +facsimileTelephoneNumber: +1 206 672-8533 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 464-4437 +title: Associate Management Dictator +userPassword: Password1 +uid: BrownfiD +givenName: Diamond +mail: BrownfiD@b1ec0cbcb2944a58bb6bfcd6bb77a546.bitwarden.com +carLicense: D0NOFX +departmentNumber: 6271 +employeeType: Contract +homePhone: +1 206 206-5173 +initials: D. B. +mobile: +1 206 890-8641 +pager: +1 206 205-5848 +roomNumber: 9240 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neste Nikolopoulos +sn: Nikolopoulos +description: This is Neste Nikolopoulos's description +facsimileTelephoneNumber: +1 213 967-1423 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 213 252-8650 +title: Associate Payroll Punk +userPassword: Password1 +uid: NikolopN +givenName: Neste +mail: NikolopN@ae34afdf0bc1444aac13f1e923e2cbef.bitwarden.com +carLicense: 44KFF4 +departmentNumber: 5097 +employeeType: Contract +homePhone: +1 213 819-1655 +initials: N. N. +mobile: +1 213 372-6873 +pager: +1 213 717-6718 +roomNumber: 9783 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sangman Estey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sangman Estey +sn: Estey +description: This is Sangman Estey's description +facsimileTelephoneNumber: +1 818 936-9730 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 818 505-1775 +title: Master Management Engineer +userPassword: Password1 +uid: EsteyS +givenName: Sangman +mail: EsteyS@b9d4bc3408874c868cfc03e30b01af48.bitwarden.com +carLicense: DP9KE8 +departmentNumber: 8956 +employeeType: Normal +homePhone: +1 818 363-5847 +initials: S. E. +mobile: +1 818 242-2759 +pager: +1 818 888-2802 +roomNumber: 8871 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abdullah Aderhold +sn: Aderhold +description: This is Abdullah Aderhold's description +facsimileTelephoneNumber: +1 408 358-5341 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 408 914-3404 +title: Junior Administrative Janitor +userPassword: Password1 +uid: AderholA +givenName: Abdullah +mail: AderholA@7d1d20094a364b09b76d9c95a25b43fa.bitwarden.com +carLicense: N9M9W8 +departmentNumber: 7836 +employeeType: Normal +homePhone: +1 408 831-4017 +initials: A. A. +mobile: +1 408 497-9033 +pager: +1 408 998-4051 +roomNumber: 9739 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ola Kupitz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ola Kupitz +sn: Kupitz +description: This is Ola Kupitz's description +facsimileTelephoneNumber: +1 510 723-5345 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 196-4771 +title: Junior Product Development Developer +userPassword: Password1 +uid: KupitzO +givenName: Ola +mail: KupitzO@7016343b9c7c41d58eb428f022d1c9f0.bitwarden.com +carLicense: BYNWTP +departmentNumber: 2050 +employeeType: Employee +homePhone: +1 510 292-9678 +initials: O. K. +mobile: +1 510 468-1431 +pager: +1 510 845-6521 +roomNumber: 9711 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Willetta Mayes,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willetta Mayes +sn: Mayes +description: This is Willetta Mayes's description +facsimileTelephoneNumber: +1 510 482-2787 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 625-3271 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: MayesW +givenName: Willetta +mail: MayesW@5fb61a5e905a4cb8b7d6000e9d19ef2d.bitwarden.com +carLicense: TLAQTK +departmentNumber: 3351 +employeeType: Normal +homePhone: +1 510 595-7021 +initials: W. M. +mobile: +1 510 846-7851 +pager: +1 510 600-9331 +roomNumber: 8879 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nahum Sprigings,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nahum Sprigings +sn: Sprigings +description: This is Nahum Sprigings's description +facsimileTelephoneNumber: +1 213 668-8168 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 416-6109 +title: Master Product Development Assistant +userPassword: Password1 +uid: SpriginN +givenName: Nahum +mail: SpriginN@4cff4a0de1f5433293445d7825473f11.bitwarden.com +carLicense: F3WJ39 +departmentNumber: 3716 +employeeType: Normal +homePhone: +1 213 276-4090 +initials: N. S. +mobile: +1 213 429-7136 +pager: +1 213 353-8998 +roomNumber: 8113 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathye Demeulemeester +sn: Demeulemeester +description: This is Kathye Demeulemeester's description +facsimileTelephoneNumber: +1 206 705-4356 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 403-3402 +title: Supreme Janitorial Visionary +userPassword: Password1 +uid: DemeuleK +givenName: Kathye +mail: DemeuleK@2fba4efbb4b44dbe8c7dc5c682d67dce.bitwarden.com +carLicense: NBVV75 +departmentNumber: 9147 +employeeType: Employee +homePhone: +1 206 752-6260 +initials: K. D. +mobile: +1 206 397-8088 +pager: +1 206 507-8220 +roomNumber: 9339 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Juile Nttest,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juile Nttest +sn: Nttest +description: This is Juile Nttest's description +facsimileTelephoneNumber: +1 415 493-9885 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 655-8547 +title: Supreme Payroll Architect +userPassword: Password1 +uid: NttestJ +givenName: Juile +mail: NttestJ@71f49fd634ac4515894d5fd3319ef9a6.bitwarden.com +carLicense: PBQRWC +departmentNumber: 8243 +employeeType: Employee +homePhone: +1 415 797-6654 +initials: J. N. +mobile: +1 415 510-8646 +pager: +1 415 188-4777 +roomNumber: 8671 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hazel Johannes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hazel Johannes +sn: Johannes +description: This is Hazel Johannes's description +facsimileTelephoneNumber: +1 415 850-6147 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 955-1438 +title: Supreme Management Warrior +userPassword: Password1 +uid: JohanneH +givenName: Hazel +mail: JohanneH@faeb50c13f3444b887437137742bff48.bitwarden.com +carLicense: U103OY +departmentNumber: 6054 +employeeType: Normal +homePhone: +1 415 907-8154 +initials: H. J. +mobile: +1 415 770-2040 +pager: +1 415 992-4080 +roomNumber: 9583 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rebeka Welker,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebeka Welker +sn: Welker +description: This is Rebeka Welker's description +facsimileTelephoneNumber: +1 804 130-9523 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 305-4176 +title: Supreme Administrative Visionary +userPassword: Password1 +uid: WelkerR +givenName: Rebeka +mail: WelkerR@a549bdf5420c411a867c314ba75b6975.bitwarden.com +carLicense: R600NO +departmentNumber: 7606 +employeeType: Employee +homePhone: +1 804 193-3396 +initials: R. W. +mobile: +1 804 752-9705 +pager: +1 804 775-5807 +roomNumber: 9609 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gordon Fares,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gordon Fares +sn: Fares +description: This is Gordon Fares's description +facsimileTelephoneNumber: +1 804 169-4437 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 926-7345 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: FaresG +givenName: Gordon +mail: FaresG@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com +carLicense: 55P4H9 +departmentNumber: 4105 +employeeType: Contract +homePhone: +1 804 231-4092 +initials: G. F. +mobile: +1 804 131-5369 +pager: +1 804 300-3618 +roomNumber: 8894 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Corella Swanston,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corella Swanston +sn: Swanston +description: This is Corella Swanston's description +facsimileTelephoneNumber: +1 510 558-2245 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 988-2962 +title: Junior Payroll Mascot +userPassword: Password1 +uid: SwanstoC +givenName: Corella +mail: SwanstoC@dcdbaaadaaee46828eda807cdf13cfd2.bitwarden.com +carLicense: S0AQVF +departmentNumber: 3323 +employeeType: Contract +homePhone: +1 510 953-3365 +initials: C. S. +mobile: +1 510 847-6997 +pager: +1 510 205-4760 +roomNumber: 8221 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Alisun Volfe,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alisun Volfe +sn: Volfe +description: This is Alisun Volfe's description +facsimileTelephoneNumber: +1 804 147-6125 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 821-6284 +title: Master Human Resources Architect +userPassword: Password1 +uid: VolfeA +givenName: Alisun +mail: VolfeA@baf74e2af041410097981fddefdb44ba.bitwarden.com +carLicense: HT4RTY +departmentNumber: 9789 +employeeType: Contract +homePhone: +1 804 662-4466 +initials: A. V. +mobile: +1 804 678-5781 +pager: +1 804 261-9939 +roomNumber: 9817 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Karine McKerrow,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karine McKerrow +sn: McKerrow +description: This is Karine McKerrow's description +facsimileTelephoneNumber: +1 804 959-5442 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 815-9782 +title: Associate Peons Director +userPassword: Password1 +uid: McKerroK +givenName: Karine +mail: McKerroK@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com +carLicense: VPXC25 +departmentNumber: 6434 +employeeType: Contract +homePhone: +1 804 164-6358 +initials: K. M. +mobile: +1 804 445-4684 +pager: +1 804 559-1013 +roomNumber: 8148 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yvan Gandhi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yvan Gandhi +sn: Gandhi +description: This is Yvan Gandhi's description +facsimileTelephoneNumber: +1 206 883-8254 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 197-8721 +title: Junior Payroll Admin +userPassword: Password1 +uid: GandhiY +givenName: Yvan +mail: GandhiY@e14fec315d724d2ea3c23dddfc2b66b0.bitwarden.com +carLicense: DAYDK3 +departmentNumber: 6231 +employeeType: Employee +homePhone: +1 206 142-7922 +initials: Y. G. +mobile: +1 206 467-6884 +pager: +1 206 760-7827 +roomNumber: 9638 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Darrol Mair,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrol Mair +sn: Mair +description: This is Darrol Mair's description +facsimileTelephoneNumber: +1 510 134-3507 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 680-3934 +title: Master Payroll Stooge +userPassword: Password1 +uid: MairD +givenName: Darrol +mail: MairD@a6f3133d61d14ab9941634fba9dc1a84.bitwarden.com +carLicense: N7KILL +departmentNumber: 2599 +employeeType: Contract +homePhone: +1 510 434-4730 +initials: D. M. +mobile: +1 510 104-7276 +pager: +1 510 326-3425 +roomNumber: 8134 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Narendra Cramer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Narendra Cramer +sn: Cramer +description: This is Narendra Cramer's description +facsimileTelephoneNumber: +1 415 260-2242 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 989-2075 +title: Master Administrative Visionary +userPassword: Password1 +uid: CramerN +givenName: Narendra +mail: CramerN@b742b209006e494cbb6f8a4e0b48b884.bitwarden.com +carLicense: WI7YI7 +departmentNumber: 4784 +employeeType: Contract +homePhone: +1 415 731-1410 +initials: N. C. +mobile: +1 415 480-5245 +pager: +1 415 837-7369 +roomNumber: 8289 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Christina Bittman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christina Bittman +sn: Bittman +description: This is Christina Bittman's description +facsimileTelephoneNumber: +1 206 434-9128 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 198-5090 +title: Junior Peons Stooge +userPassword: Password1 +uid: BittmanC +givenName: Christina +mail: BittmanC@79e870d6aec04b1188d3b93e080d363c.bitwarden.com +carLicense: 4L8KV2 +departmentNumber: 8353 +employeeType: Normal +homePhone: +1 206 136-4607 +initials: C. B. +mobile: +1 206 481-6775 +pager: +1 206 860-8210 +roomNumber: 8449 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vo Peacocke,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vo Peacocke +sn: Peacocke +description: This is Vo Peacocke's description +facsimileTelephoneNumber: +1 415 925-6472 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 415 284-9907 +title: Master Administrative Manager +userPassword: Password1 +uid: PeacockV +givenName: Vo +mail: PeacockV@1ca94e5cffb744db9996bf92fe3ed97c.bitwarden.com +carLicense: M4NUX1 +departmentNumber: 7601 +employeeType: Employee +homePhone: +1 415 706-1961 +initials: V. P. +mobile: +1 415 254-1118 +pager: +1 415 393-9393 +roomNumber: 9937 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Astra Moshtagh +sn: Moshtagh +description: This is Astra Moshtagh's description +facsimileTelephoneNumber: +1 804 209-5121 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 804 976-9253 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: MoshtagA +givenName: Astra +mail: MoshtagA@763917e53f1542c7b70dd136899ad079.bitwarden.com +carLicense: 323SDT +departmentNumber: 5084 +employeeType: Normal +homePhone: +1 804 452-7595 +initials: A. M. +mobile: +1 804 330-9750 +pager: +1 804 586-6066 +roomNumber: 9997 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Salim Brushey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salim Brushey +sn: Brushey +description: This is Salim Brushey's description +facsimileTelephoneNumber: +1 408 559-4994 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 515-9591 +title: Junior Product Testing Artist +userPassword: Password1 +uid: BrusheyS +givenName: Salim +mail: BrusheyS@8c75d8449fe241b583cdc3782aba550b.bitwarden.com +carLicense: SN7A5S +departmentNumber: 3534 +employeeType: Normal +homePhone: +1 408 639-2198 +initials: S. B. +mobile: +1 408 658-2962 +pager: +1 408 731-5623 +roomNumber: 9834 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jorey Jensen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jorey Jensen +sn: Jensen +description: This is Jorey Jensen's description +facsimileTelephoneNumber: +1 206 309-6002 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 773-2269 +title: Chief Administrative Consultant +userPassword: Password1 +uid: JensenJ +givenName: Jorey +mail: JensenJ@9e42ae77792c49b3accae8305c8837bb.bitwarden.com +carLicense: JI1XDE +departmentNumber: 1222 +employeeType: Employee +homePhone: +1 206 986-1954 +initials: J. J. +mobile: +1 206 963-9184 +pager: +1 206 246-9833 +roomNumber: 9182 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Willow Benda,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willow Benda +sn: Benda +description: This is Willow Benda's description +facsimileTelephoneNumber: +1 510 421-2609 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 545-6820 +title: Master Payroll Evangelist +userPassword: Password1 +uid: BendaW +givenName: Willow +mail: BendaW@44ecb368c6be4359b7f35b951bbf9473.bitwarden.com +carLicense: 3GSQ8E +departmentNumber: 8673 +employeeType: Contract +homePhone: +1 510 742-6663 +initials: W. B. +mobile: +1 510 641-4672 +pager: +1 510 736-6106 +roomNumber: 9766 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gurjinder Gainer +sn: Gainer +description: This is Gurjinder Gainer's description +facsimileTelephoneNumber: +1 213 990-4697 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 290-3705 +title: Chief Human Resources Stooge +userPassword: Password1 +uid: GainerG +givenName: Gurjinder +mail: GainerG@8a7d5133f2fc4397a30a337937403b76.bitwarden.com +carLicense: TG1TU4 +departmentNumber: 1001 +employeeType: Employee +homePhone: +1 213 141-2314 +initials: G. G. +mobile: +1 213 997-3579 +pager: +1 213 846-6010 +roomNumber: 9982 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marilyn Nardiello,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marilyn Nardiello +sn: Nardiello +description: This is Marilyn Nardiello's description +facsimileTelephoneNumber: +1 818 685-2085 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 954-3316 +title: Associate Management Consultant +userPassword: Password1 +uid: NardielM +givenName: Marilyn +mail: NardielM@cec3211a38a84845bf22d5434e7f7858.bitwarden.com +carLicense: N1QB6L +departmentNumber: 7938 +employeeType: Contract +homePhone: +1 818 743-7427 +initials: M. N. +mobile: +1 818 209-5404 +pager: +1 818 578-4694 +roomNumber: 8791 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Federica Keck,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Federica Keck +sn: Keck +description: This is Federica Keck's description +facsimileTelephoneNumber: +1 510 686-8483 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 259-4957 +title: Chief Human Resources Developer +userPassword: Password1 +uid: KeckF +givenName: Federica +mail: KeckF@0219ab31249e4e48be0f58ce8b0b2611.bitwarden.com +carLicense: H3G9AR +departmentNumber: 2215 +employeeType: Employee +homePhone: +1 510 252-3258 +initials: F. K. +mobile: +1 510 688-2594 +pager: +1 510 649-6382 +roomNumber: 9782 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Carling Sture,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carling Sture +sn: Sture +description: This is Carling Sture's description +facsimileTelephoneNumber: +1 213 366-3680 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 509-1781 +title: Chief Human Resources President +userPassword: Password1 +uid: StureC +givenName: Carling +mail: StureC@1ebbfd6f3021409cb1fecd2d24eae99b.bitwarden.com +carLicense: N51MOS +departmentNumber: 4909 +employeeType: Normal +homePhone: +1 213 106-4105 +initials: C. S. +mobile: +1 213 334-5497 +pager: +1 213 780-5684 +roomNumber: 9633 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Inessa McCaffity,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inessa McCaffity +sn: McCaffity +description: This is Inessa McCaffity's description +facsimileTelephoneNumber: +1 415 349-8182 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 519-8849 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: McCaffiI +givenName: Inessa +mail: McCaffiI@a5fad638ee6f446cb5871340d10b02b1.bitwarden.com +carLicense: DSIGKL +departmentNumber: 6233 +employeeType: Normal +homePhone: +1 415 646-6704 +initials: I. M. +mobile: +1 415 957-5599 +pager: +1 415 339-5616 +roomNumber: 8643 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninno Dubreuil +sn: Dubreuil +description: This is Ninno Dubreuil's description +facsimileTelephoneNumber: +1 804 739-7762 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 267-9866 +title: Chief Human Resources Warrior +userPassword: Password1 +uid: DubreuiN +givenName: Ninno +mail: DubreuiN@644ea75b3c8c4e108b8a77cd015225ed.bitwarden.com +carLicense: SG46SW +departmentNumber: 9415 +employeeType: Employee +homePhone: +1 804 571-6616 +initials: N. D. +mobile: +1 804 750-7223 +pager: +1 804 977-5908 +roomNumber: 9909 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Esko Todaro,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esko Todaro +sn: Todaro +description: This is Esko Todaro's description +facsimileTelephoneNumber: +1 213 924-6646 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 753-1255 +title: Master Payroll Stooge +userPassword: Password1 +uid: TodaroE +givenName: Esko +mail: TodaroE@69ba9f45dacb4e9ea85c0a5c352dcaad.bitwarden.com +carLicense: 8E31IM +departmentNumber: 6108 +employeeType: Contract +homePhone: +1 213 312-8941 +initials: E. T. +mobile: +1 213 528-1174 +pager: +1 213 112-2926 +roomNumber: 8568 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Charman Brownridge,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charman Brownridge +sn: Brownridge +description: This is Charman Brownridge's description +facsimileTelephoneNumber: +1 213 815-1125 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 213 370-2554 +title: Junior Payroll Fellow +userPassword: Password1 +uid: BrownriC +givenName: Charman +mail: BrownriC@db7691c9dca24eb7875f7a9259652b96.bitwarden.com +carLicense: S93ADL +departmentNumber: 7193 +employeeType: Contract +homePhone: +1 213 250-3125 +initials: C. B. +mobile: +1 213 717-7889 +pager: +1 213 647-3119 +roomNumber: 8122 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Le Reese,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Le Reese +sn: Reese +description: This is Le Reese's description +facsimileTelephoneNumber: +1 510 764-7355 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 159-5417 +title: Junior Peons Technician +userPassword: Password1 +uid: ReeseL +givenName: Le +mail: ReeseL@16389576a6824424924b1ebe0033761c.bitwarden.com +carLicense: 9QPT32 +departmentNumber: 7943 +employeeType: Normal +homePhone: +1 510 122-4211 +initials: L. R. +mobile: +1 510 646-2558 +pager: +1 510 650-4599 +roomNumber: 9008 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cavin Bijons,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cavin Bijons +sn: Bijons +description: This is Cavin Bijons's description +facsimileTelephoneNumber: +1 206 666-1292 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 380-8317 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: BijonsC +givenName: Cavin +mail: BijonsC@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com +carLicense: FFKKWA +departmentNumber: 9423 +employeeType: Contract +homePhone: +1 206 174-9949 +initials: C. B. +mobile: +1 206 741-1680 +pager: +1 206 228-4977 +roomNumber: 9361 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zehra Marcantonio +sn: Marcantonio +description: This is Zehra Marcantonio's description +facsimileTelephoneNumber: +1 206 336-1153 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 406-9323 +title: Chief Administrative Punk +userPassword: Password1 +uid: MarcantZ +givenName: Zehra +mail: MarcantZ@4e99a81ca6fc4c54a419915482486171.bitwarden.com +carLicense: OE2U20 +departmentNumber: 3658 +employeeType: Employee +homePhone: +1 206 805-2749 +initials: Z. M. +mobile: +1 206 570-6396 +pager: +1 206 467-9197 +roomNumber: 9482 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Naresh Hiltz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naresh Hiltz +sn: Hiltz +description: This is Naresh Hiltz's description +facsimileTelephoneNumber: +1 818 836-1242 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 387-9524 +title: Chief Administrative Manager +userPassword: Password1 +uid: HiltzN +givenName: Naresh +mail: HiltzN@591ca642a36345a4b6041e36ab40a5cb.bitwarden.com +carLicense: HWPHAH +departmentNumber: 7061 +employeeType: Employee +homePhone: +1 818 327-6552 +initials: N. H. +mobile: +1 818 345-7375 +pager: +1 818 418-2313 +roomNumber: 8679 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jai Tiller,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jai Tiller +sn: Tiller +description: This is Jai Tiller's description +facsimileTelephoneNumber: +1 510 916-3668 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 510 357-1408 +title: Supreme Payroll Punk +userPassword: Password1 +uid: TillerJ +givenName: Jai +mail: TillerJ@73529e16a32a4c6bb942e1dcaaaf9fe5.bitwarden.com +carLicense: H2LH6P +departmentNumber: 5884 +employeeType: Contract +homePhone: +1 510 413-1412 +initials: J. T. +mobile: +1 510 659-3667 +pager: +1 510 505-1311 +roomNumber: 8874 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jocelyn Wolczanski +sn: Wolczanski +description: This is Jocelyn Wolczanski's description +facsimileTelephoneNumber: +1 213 206-5035 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 576-6168 +title: Junior Janitorial Admin +userPassword: Password1 +uid: WolczanJ +givenName: Jocelyn +mail: WolczanJ@2153898ab7ac43e8a4cd26875e8f79f9.bitwarden.com +carLicense: QTD4UI +departmentNumber: 5248 +employeeType: Contract +homePhone: +1 213 855-2917 +initials: J. W. +mobile: +1 213 206-7227 +pager: +1 213 655-4134 +roomNumber: 8751 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Esme Daniells,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esme Daniells +sn: Daniells +description: This is Esme Daniells's description +facsimileTelephoneNumber: +1 206 567-8425 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 734-6411 +title: Chief Payroll Grunt +userPassword: Password1 +uid: DaniellE +givenName: Esme +mail: DaniellE@610fb75ffd5d46ae971c460a81383a24.bitwarden.com +carLicense: FRQWUM +departmentNumber: 8523 +employeeType: Normal +homePhone: +1 206 974-3073 +initials: E. D. +mobile: +1 206 836-3718 +pager: +1 206 662-8441 +roomNumber: 8722 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Trey McWalters,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trey McWalters +sn: McWalters +description: This is Trey McWalters's description +facsimileTelephoneNumber: +1 206 321-3294 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 957-5177 +title: Master Product Development Engineer +userPassword: Password1 +uid: McWalteT +givenName: Trey +mail: McWalteT@58dd45ceb2d64fb0b6fd6e1d9136b5e5.bitwarden.com +carLicense: WQRX15 +departmentNumber: 5878 +employeeType: Contract +homePhone: +1 206 644-7665 +initials: T. M. +mobile: +1 206 960-8492 +pager: +1 206 390-5115 +roomNumber: 8528 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Edlene Bumgarner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edlene Bumgarner +sn: Bumgarner +description: This is Edlene Bumgarner's description +facsimileTelephoneNumber: +1 206 962-8946 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 530-2449 +title: Master Peons Director +userPassword: Password1 +uid: BumgarnE +givenName: Edlene +mail: BumgarnE@fe393581310b47dd94b5b76f5b2a4efb.bitwarden.com +carLicense: 79WFF0 +departmentNumber: 2801 +employeeType: Employee +homePhone: +1 206 994-1020 +initials: E. B. +mobile: +1 206 585-4888 +pager: +1 206 453-1307 +roomNumber: 9180 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tape OHearn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tape OHearn +sn: OHearn +description: This is Tape OHearn's description +facsimileTelephoneNumber: +1 510 970-4458 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 745-7889 +title: Supreme Administrative Evangelist +userPassword: Password1 +uid: OHearnT +givenName: Tape +mail: OHearnT@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com +carLicense: LOYX0H +departmentNumber: 3131 +employeeType: Employee +homePhone: +1 510 631-6963 +initials: T. O. +mobile: +1 510 386-2304 +pager: +1 510 403-9432 +roomNumber: 8823 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Robbin Hayman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robbin Hayman +sn: Hayman +description: This is Robbin Hayman's description +facsimileTelephoneNumber: +1 804 339-5885 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 239-5797 +title: Master Administrative Fellow +userPassword: Password1 +uid: HaymanR +givenName: Robbin +mail: HaymanR@bda14f77ccfe445ba2e685aa7ba46a33.bitwarden.com +carLicense: EK5MDV +departmentNumber: 5090 +employeeType: Contract +homePhone: +1 804 304-5096 +initials: R. H. +mobile: +1 804 752-3830 +pager: +1 804 820-8955 +roomNumber: 9249 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Debadeep Andrade,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debadeep Andrade +sn: Andrade +description: This is Debadeep Andrade's description +facsimileTelephoneNumber: +1 213 171-6121 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 186-6614 +title: Associate Peons Engineer +userPassword: Password1 +uid: AndradeD +givenName: Debadeep +mail: AndradeD@4831c314a96e4dc2a8c277ec349e694c.bitwarden.com +carLicense: OV5U10 +departmentNumber: 3450 +employeeType: Contract +homePhone: +1 213 767-4254 +initials: D. A. +mobile: +1 213 252-7292 +pager: +1 213 237-4469 +roomNumber: 9262 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrtice Virgoe +sn: Virgoe +description: This is Myrtice Virgoe's description +facsimileTelephoneNumber: +1 206 916-1885 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 782-5902 +title: Supreme Payroll Developer +userPassword: Password1 +uid: VirgoeM +givenName: Myrtice +mail: VirgoeM@d373fdc15b634340bc25b6c3b5d64884.bitwarden.com +carLicense: O51J71 +departmentNumber: 9905 +employeeType: Normal +homePhone: +1 206 596-4092 +initials: M. V. +mobile: +1 206 504-6246 +pager: +1 206 161-4007 +roomNumber: 8566 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Parham Maunu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parham Maunu +sn: Maunu +description: This is Parham Maunu's description +facsimileTelephoneNumber: +1 213 105-6841 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 206-1706 +title: Associate Product Development Punk +userPassword: Password1 +uid: MaunuP +givenName: Parham +mail: MaunuP@d233ce77e34d461bb1d8e44907c3b6ba.bitwarden.com +carLicense: 00BVYL +departmentNumber: 2830 +employeeType: Normal +homePhone: +1 213 314-3850 +initials: P. M. +mobile: +1 213 558-7779 +pager: +1 213 647-8299 +roomNumber: 9653 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ruthe Calhoun,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruthe Calhoun +sn: Calhoun +description: This is Ruthe Calhoun's description +facsimileTelephoneNumber: +1 818 669-3236 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 818 878-6454 +title: Chief Peons Figurehead +userPassword: Password1 +uid: CalhounR +givenName: Ruthe +mail: CalhounR@d2d670b2fced4eef91c4ec4dcd52496b.bitwarden.com +carLicense: 6GVM6U +departmentNumber: 8191 +employeeType: Employee +homePhone: +1 818 605-3032 +initials: R. C. +mobile: +1 818 678-4840 +pager: +1 818 593-2466 +roomNumber: 8092 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Albert Waid,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Albert Waid +sn: Waid +description: This is Albert Waid's description +facsimileTelephoneNumber: +1 408 141-8042 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 408 839-9127 +title: Master Janitorial Assistant +userPassword: Password1 +uid: WaidA +givenName: Albert +mail: WaidA@cf949ad46d1d4454911d4e2468d96da8.bitwarden.com +carLicense: 7I8SI4 +departmentNumber: 7070 +employeeType: Normal +homePhone: +1 408 680-1085 +initials: A. W. +mobile: +1 408 757-5637 +pager: +1 408 382-6420 +roomNumber: 8163 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mason Azar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mason Azar +sn: Azar +description: This is Mason Azar's description +facsimileTelephoneNumber: +1 804 342-7396 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 994-8484 +title: Supreme Administrative Admin +userPassword: Password1 +uid: AzarM +givenName: Mason +mail: AzarM@7ce0aeed71954a9186228a48b133b9f4.bitwarden.com +carLicense: 49XYJJ +departmentNumber: 3097 +employeeType: Employee +homePhone: +1 804 916-1279 +initials: M. A. +mobile: +1 804 272-4731 +pager: +1 804 149-6015 +roomNumber: 8858 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tory Vairavan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tory Vairavan +sn: Vairavan +description: This is Tory Vairavan's description +facsimileTelephoneNumber: +1 804 910-6739 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 498-1046 +title: Junior Management Warrior +userPassword: Password1 +uid: VairavaT +givenName: Tory +mail: VairavaT@eb82c31be85446d794ef51293247c40a.bitwarden.com +carLicense: UCFX3T +departmentNumber: 5424 +employeeType: Contract +homePhone: +1 804 512-4991 +initials: T. V. +mobile: +1 804 124-1810 +pager: +1 804 566-5796 +roomNumber: 8010 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marisa Kuntova,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marisa Kuntova +sn: Kuntova +description: This is Marisa Kuntova's description +facsimileTelephoneNumber: +1 408 857-6565 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 172-4853 +title: Master Management Fellow +userPassword: Password1 +uid: KuntovaM +givenName: Marisa +mail: KuntovaM@04448fada1ea4fa4b445ea9be1736993.bitwarden.com +carLicense: M7FPB0 +departmentNumber: 9283 +employeeType: Contract +homePhone: +1 408 747-9519 +initials: M. K. +mobile: +1 408 794-3802 +pager: +1 408 992-8065 +roomNumber: 8959 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rungroj Rains,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rungroj Rains +sn: Rains +description: This is Rungroj Rains's description +facsimileTelephoneNumber: +1 510 416-2993 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 653-9010 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: RainsR +givenName: Rungroj +mail: RainsR@7bfc17d323e0430fbe510aae2bf5a02c.bitwarden.com +carLicense: AYAPSW +departmentNumber: 6089 +employeeType: Normal +homePhone: +1 510 376-9556 +initials: R. R. +mobile: +1 510 226-3169 +pager: +1 510 665-3472 +roomNumber: 9040 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tak Tihanyi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tak Tihanyi +sn: Tihanyi +description: This is Tak Tihanyi's description +facsimileTelephoneNumber: +1 213 379-8030 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 213 161-1916 +title: Junior Administrative Engineer +userPassword: Password1 +uid: TihanyiT +givenName: Tak +mail: TihanyiT@5e72004cd5c54ab885896ad64d562293.bitwarden.com +carLicense: WM9RV9 +departmentNumber: 6961 +employeeType: Contract +homePhone: +1 213 373-4745 +initials: T. T. +mobile: +1 213 704-1953 +pager: +1 213 616-5794 +roomNumber: 8947 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christophe Lassonde +sn: Lassonde +description: This is Christophe Lassonde's description +facsimileTelephoneNumber: +1 206 814-8635 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 206 536-7265 +title: Master Janitorial Fellow +userPassword: Password1 +uid: LassondC +givenName: Christophe +mail: LassondC@a7f2e34ed651499b802da67d1808b3de.bitwarden.com +carLicense: 3405J4 +departmentNumber: 5095 +employeeType: Contract +homePhone: +1 206 413-1141 +initials: C. L. +mobile: +1 206 559-5787 +pager: +1 206 915-5694 +roomNumber: 9371 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sharlene Litz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharlene Litz +sn: Litz +description: This is Sharlene Litz's description +facsimileTelephoneNumber: +1 408 751-5900 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 888-6971 +title: Associate Product Development Warrior +userPassword: Password1 +uid: LitzS +givenName: Sharlene +mail: LitzS@8c66b2522da94b0cbdc414c1b20aa8ca.bitwarden.com +carLicense: H4WJQ4 +departmentNumber: 1458 +employeeType: Normal +homePhone: +1 408 779-7636 +initials: S. L. +mobile: +1 408 467-3168 +pager: +1 408 899-7595 +roomNumber: 8825 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Chelsea Ruane,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsea Ruane +sn: Ruane +description: This is Chelsea Ruane's description +facsimileTelephoneNumber: +1 818 185-2533 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 771-8170 +title: Associate Payroll Stooge +userPassword: Password1 +uid: RuaneC +givenName: Chelsea +mail: RuaneC@e3a398150b8f4132954080a42a622e3d.bitwarden.com +carLicense: 8B69XT +departmentNumber: 7561 +employeeType: Employee +homePhone: +1 818 322-5461 +initials: C. R. +mobile: +1 818 405-7631 +pager: +1 818 908-3953 +roomNumber: 9171 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eddy Talbot,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eddy Talbot +sn: Talbot +description: This is Eddy Talbot's description +facsimileTelephoneNumber: +1 213 174-8010 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 404-8925 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: TalbotE +givenName: Eddy +mail: TalbotE@2dddb722caf64e778877e681c7a6c935.bitwarden.com +carLicense: 224K0G +departmentNumber: 1644 +employeeType: Normal +homePhone: +1 213 681-5426 +initials: E. T. +mobile: +1 213 227-2399 +pager: +1 213 553-2310 +roomNumber: 8656 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Manhatten Tota,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manhatten Tota +sn: Tota +description: This is Manhatten Tota's description +facsimileTelephoneNumber: +1 213 828-2941 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 149-8989 +title: Master Product Testing Assistant +userPassword: Password1 +uid: TotaM +givenName: Manhatten +mail: TotaM@97a601b7bf924aea9927e9bb24e9dce4.bitwarden.com +carLicense: LVL8PI +departmentNumber: 8235 +employeeType: Normal +homePhone: +1 213 504-1958 +initials: M. T. +mobile: +1 213 377-2096 +pager: +1 213 699-2981 +roomNumber: 9386 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Annabela Gingrich,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annabela Gingrich +sn: Gingrich +description: This is Annabela Gingrich's description +facsimileTelephoneNumber: +1 213 702-8571 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 623-5864 +title: Supreme Administrative Admin +userPassword: Password1 +uid: GingricA +givenName: Annabela +mail: GingricA@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com +carLicense: OQA4WR +departmentNumber: 4832 +employeeType: Employee +homePhone: +1 213 955-2681 +initials: A. G. +mobile: +1 213 535-9339 +pager: +1 213 445-5883 +roomNumber: 9828 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Regis Watmore,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regis Watmore +sn: Watmore +description: This is Regis Watmore's description +facsimileTelephoneNumber: +1 206 148-8758 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 316-6518 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: WatmoreR +givenName: Regis +mail: WatmoreR@90c9f3c96d1149a298fca9a67a1ea082.bitwarden.com +carLicense: BCRWTM +departmentNumber: 5739 +employeeType: Contract +homePhone: +1 206 500-7836 +initials: R. W. +mobile: +1 206 118-5056 +pager: +1 206 117-6376 +roomNumber: 9646 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shanda Bowen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shanda Bowen +sn: Bowen +description: This is Shanda Bowen's description +facsimileTelephoneNumber: +1 804 785-1590 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 106-2391 +title: Supreme Payroll Stooge +userPassword: Password1 +uid: BowenS +givenName: Shanda +mail: BowenS@8b3dde45f1e843a68494a6fd84017274.bitwarden.com +carLicense: WU02LG +departmentNumber: 4805 +employeeType: Employee +homePhone: +1 804 146-2511 +initials: S. B. +mobile: +1 804 928-5141 +pager: +1 804 317-3340 +roomNumber: 8068 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raymond Marcantonio +sn: Marcantonio +description: This is Raymond Marcantonio's description +facsimileTelephoneNumber: +1 206 572-6032 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 616-7379 +title: Master Janitorial Vice President +userPassword: Password1 +uid: MarcantR +givenName: Raymond +mail: MarcantR@2e65828583f54a1ea500b532b01f86b6.bitwarden.com +carLicense: GVOVA2 +departmentNumber: 5565 +employeeType: Employee +homePhone: +1 206 587-1602 +initials: R. M. +mobile: +1 206 500-2783 +pager: +1 206 600-5135 +roomNumber: 8511 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jyoti Wells,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jyoti Wells +sn: Wells +description: This is Jyoti Wells's description +facsimileTelephoneNumber: +1 206 174-9330 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 473-7663 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: WellsJ +givenName: Jyoti +mail: WellsJ@2c0f47a97a024956922ed080c07c7087.bitwarden.com +carLicense: 6O7DLT +departmentNumber: 2933 +employeeType: Contract +homePhone: +1 206 950-5814 +initials: J. W. +mobile: +1 206 355-1424 +pager: +1 206 556-9753 +roomNumber: 8322 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hanns Sharkey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanns Sharkey +sn: Sharkey +description: This is Hanns Sharkey's description +facsimileTelephoneNumber: +1 206 347-7328 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 206 546-4891 +title: Master Management Warrior +userPassword: Password1 +uid: SharkeyH +givenName: Hanns +mail: SharkeyH@4f63ce84f4684a4bb16b885eeda98071.bitwarden.com +carLicense: 7TTUD2 +departmentNumber: 6140 +employeeType: Normal +homePhone: +1 206 159-8059 +initials: H. S. +mobile: +1 206 645-1239 +pager: +1 206 807-8567 +roomNumber: 9941 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Reva Ostapiw,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reva Ostapiw +sn: Ostapiw +description: This is Reva Ostapiw's description +facsimileTelephoneNumber: +1 408 850-5932 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 206-6317 +title: Supreme Peons Punk +userPassword: Password1 +uid: OstapiwR +givenName: Reva +mail: OstapiwR@a586d7b2acf146c78c98936aa18b9779.bitwarden.com +carLicense: V4KRL9 +departmentNumber: 1742 +employeeType: Employee +homePhone: +1 408 665-5748 +initials: R. O. +mobile: +1 408 714-5917 +pager: +1 408 431-8243 +roomNumber: 8413 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Michele Elkaim,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michele Elkaim +sn: Elkaim +description: This is Michele Elkaim's description +facsimileTelephoneNumber: +1 818 892-5676 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 546-4305 +title: Associate Administrative Punk +userPassword: Password1 +uid: ElkaimM +givenName: Michele +mail: ElkaimM@5f9b96657de64882b0c090732caf2034.bitwarden.com +carLicense: HPRYNT +departmentNumber: 9561 +employeeType: Normal +homePhone: +1 818 292-6471 +initials: M. E. +mobile: +1 818 812-6763 +pager: +1 818 585-9398 +roomNumber: 8954 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emil Knappe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emil Knappe +sn: Knappe +description: This is Emil Knappe's description +facsimileTelephoneNumber: +1 213 695-7175 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 718-9898 +title: Supreme Product Development Director +userPassword: Password1 +uid: KnappeE +givenName: Emil +mail: KnappeE@0c23adeda02746a4adaf81e3c1305ae8.bitwarden.com +carLicense: DYSHA0 +departmentNumber: 3722 +employeeType: Contract +homePhone: +1 213 137-6591 +initials: E. K. +mobile: +1 213 756-9376 +pager: +1 213 213-9071 +roomNumber: 8944 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Beryl Windsor,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beryl Windsor +sn: Windsor +description: This is Beryl Windsor's description +facsimileTelephoneNumber: +1 408 199-6086 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 216-7247 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: WindsorB +givenName: Beryl +mail: WindsorB@a5bee62da8ef4e9d8313518642926292.bitwarden.com +carLicense: XRVR8P +departmentNumber: 2026 +employeeType: Contract +homePhone: +1 408 919-8444 +initials: B. W. +mobile: +1 408 155-9232 +pager: +1 408 302-4768 +roomNumber: 9298 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Joyan Varia,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joyan Varia +sn: Varia +description: This is Joyan Varia's description +facsimileTelephoneNumber: +1 510 379-5402 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 222-5826 +title: Supreme Human Resources Warrior +userPassword: Password1 +uid: VariaJ +givenName: Joyan +mail: VariaJ@fc1da3ccee8c40f8af1318302a847e49.bitwarden.com +carLicense: VN6KYK +departmentNumber: 5866 +employeeType: Normal +homePhone: +1 510 731-5835 +initials: J. V. +mobile: +1 510 662-4484 +pager: +1 510 884-2584 +roomNumber: 8656 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ShouMei Zhelka +sn: Zhelka +description: This is ShouMei Zhelka's description +facsimileTelephoneNumber: +1 818 675-1703 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 481-9946 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: ZhelkaS +givenName: ShouMei +mail: ZhelkaS@c58d896de82b440ca30e70c88676b48e.bitwarden.com +carLicense: H9D61E +departmentNumber: 6277 +employeeType: Employee +homePhone: +1 818 164-2314 +initials: S. Z. +mobile: +1 818 454-4178 +pager: +1 818 892-1833 +roomNumber: 9848 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mitchell Gatka,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mitchell Gatka +sn: Gatka +description: This is Mitchell Gatka's description +facsimileTelephoneNumber: +1 804 112-9071 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 804 507-2490 +title: Chief Peons Engineer +userPassword: Password1 +uid: GatkaM +givenName: Mitchell +mail: GatkaM@6ee94998653244b3b64234a9ee1b8607.bitwarden.com +carLicense: AMKVVG +departmentNumber: 5693 +employeeType: Employee +homePhone: +1 804 461-9622 +initials: M. G. +mobile: +1 804 729-2782 +pager: +1 804 491-3916 +roomNumber: 9935 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harry Afkhamebrahimi +sn: Afkhamebrahimi +description: This is Harry Afkhamebrahimi's description +facsimileTelephoneNumber: +1 510 511-8337 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 792-3325 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: AfkhameH +givenName: Harry +mail: AfkhameH@daaa044a56484e489d06cae427ab4eb5.bitwarden.com +carLicense: 6EOHU6 +departmentNumber: 5529 +employeeType: Employee +homePhone: +1 510 457-9608 +initials: H. A. +mobile: +1 510 962-5637 +pager: +1 510 453-7016 +roomNumber: 9224 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ailee Events,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailee Events +sn: Events +description: This is Ailee Events's description +facsimileTelephoneNumber: +1 206 977-6413 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 516-8615 +title: Chief Product Development Manager +userPassword: Password1 +uid: EventsA +givenName: Ailee +mail: EventsA@a75d505d85fe462c8c59962b64d6cff9.bitwarden.com +carLicense: TARHR6 +departmentNumber: 9192 +employeeType: Normal +homePhone: +1 206 401-3337 +initials: A. E. +mobile: +1 206 490-7598 +pager: +1 206 910-4796 +roomNumber: 8917 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yovonnda Hilder +sn: Hilder +description: This is Yovonnda Hilder's description +facsimileTelephoneNumber: +1 818 931-9745 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 966-7112 +title: Master Janitorial Manager +userPassword: Password1 +uid: HilderY +givenName: Yovonnda +mail: HilderY@6a3acca7ad4f4682a2006a10deabdc87.bitwarden.com +carLicense: 35E9QT +departmentNumber: 7514 +employeeType: Contract +homePhone: +1 818 144-7482 +initials: Y. H. +mobile: +1 818 336-2776 +pager: +1 818 409-4045 +roomNumber: 8161 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clestell Minegishi +sn: Minegishi +description: This is Clestell Minegishi's description +facsimileTelephoneNumber: +1 213 148-6131 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 186-2091 +title: Associate Janitorial Czar +userPassword: Password1 +uid: MinegisC +givenName: Clestell +mail: MinegisC@ac08f267452644f09d26008f47edeeda.bitwarden.com +carLicense: PO8H6B +departmentNumber: 3410 +employeeType: Employee +homePhone: +1 213 626-7278 +initials: C. M. +mobile: +1 213 505-9165 +pager: +1 213 963-5228 +roomNumber: 9000 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Herre Cadeau,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Herre Cadeau +sn: Cadeau +description: This is Herre Cadeau's description +facsimileTelephoneNumber: +1 818 862-9895 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 261-7977 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: CadeauH +givenName: Herre +mail: CadeauH@21063d63862a4b1aa0c4c81ad5ebd22a.bitwarden.com +carLicense: GKI0FE +departmentNumber: 5233 +employeeType: Contract +homePhone: +1 818 493-4720 +initials: H. C. +mobile: +1 818 211-7880 +pager: +1 818 877-2189 +roomNumber: 9762 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kaye Hafiz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaye Hafiz +sn: Hafiz +description: This is Kaye Hafiz's description +facsimileTelephoneNumber: +1 818 944-3169 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 818 356-4822 +title: Junior Peons Developer +userPassword: Password1 +uid: HafizK +givenName: Kaye +mail: HafizK@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com +carLicense: QLC1XD +departmentNumber: 4637 +employeeType: Contract +homePhone: +1 818 372-7832 +initials: K. H. +mobile: +1 818 915-9418 +pager: +1 818 644-2089 +roomNumber: 8533 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magnolia Mustafa +sn: Mustafa +description: This is Magnolia Mustafa's description +facsimileTelephoneNumber: +1 213 738-3985 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 417-7133 +title: Associate Product Development Mascot +userPassword: Password1 +uid: MustafaM +givenName: Magnolia +mail: MustafaM@1c6f0f2a2fa54440bc63852786ac9fdb.bitwarden.com +carLicense: AQQLQ5 +departmentNumber: 2143 +employeeType: Employee +homePhone: +1 213 799-9627 +initials: M. M. +mobile: +1 213 251-8245 +pager: +1 213 924-6792 +roomNumber: 8609 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shahid Follett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shahid Follett +sn: Follett +description: This is Shahid Follett's description +facsimileTelephoneNumber: +1 818 804-6502 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 297-2086 +title: Associate Product Development Director +userPassword: Password1 +uid: FollettS +givenName: Shahid +mail: FollettS@120317dff63442a2b732a7a30a2aec6c.bitwarden.com +carLicense: 6F3NCX +departmentNumber: 2014 +employeeType: Employee +homePhone: +1 818 311-5835 +initials: S. F. +mobile: +1 818 179-9583 +pager: +1 818 280-7337 +roomNumber: 8850 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Pet Bohanan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pet Bohanan +sn: Bohanan +description: This is Pet Bohanan's description +facsimileTelephoneNumber: +1 510 152-8610 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 397-5982 +title: Master Janitorial Manager +userPassword: Password1 +uid: BohananP +givenName: Pet +mail: BohananP@78fe1edd402a408aa14e400951dba12b.bitwarden.com +carLicense: KHKLVU +departmentNumber: 4813 +employeeType: Employee +homePhone: +1 510 170-1709 +initials: P. B. +mobile: +1 510 255-6582 +pager: +1 510 100-1050 +roomNumber: 8259 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Colly Daigle,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colly Daigle +sn: Daigle +description: This is Colly Daigle's description +facsimileTelephoneNumber: +1 804 898-1831 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 983-6352 +title: Master Peons Dictator +userPassword: Password1 +uid: DaigleC +givenName: Colly +mail: DaigleC@0664693a03264f2da097850e7d87ca50.bitwarden.com +carLicense: B8HEDF +departmentNumber: 5199 +employeeType: Normal +homePhone: +1 804 364-7768 +initials: C. D. +mobile: +1 804 343-4992 +pager: +1 804 883-4191 +roomNumber: 9855 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Deva StOnge,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deva StOnge +sn: StOnge +description: This is Deva StOnge's description +facsimileTelephoneNumber: +1 213 118-3642 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 872-5149 +title: Master Management Writer +userPassword: Password1 +uid: StOngeD +givenName: Deva +mail: StOngeD@193a813b90bf4054a776a2e46081339c.bitwarden.com +carLicense: 4PXLB1 +departmentNumber: 3398 +employeeType: Contract +homePhone: +1 213 245-7520 +initials: D. S. +mobile: +1 213 892-2417 +pager: +1 213 183-6502 +roomNumber: 9713 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Giri Glucksman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giri Glucksman +sn: Glucksman +description: This is Giri Glucksman's description +facsimileTelephoneNumber: +1 408 431-8273 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 408 141-7214 +title: Master Janitorial Madonna +userPassword: Password1 +uid: GlucksmG +givenName: Giri +mail: GlucksmG@2a9b1bb4219c473fa5e7f0b996562330.bitwarden.com +carLicense: AS41T2 +departmentNumber: 5168 +employeeType: Employee +homePhone: +1 408 189-7712 +initials: G. G. +mobile: +1 408 333-1247 +pager: +1 408 272-8828 +roomNumber: 8617 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sioux Siomalas +sn: Siomalas +description: This is Sioux Siomalas's description +facsimileTelephoneNumber: +1 818 497-8212 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 178-2177 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: SiomalaS +givenName: Sioux +mail: SiomalaS@e8b42fe4709142ccb9521fb60b9c2535.bitwarden.com +carLicense: 7BAL5R +departmentNumber: 6033 +employeeType: Employee +homePhone: +1 818 948-5613 +initials: S. S. +mobile: +1 818 318-5648 +pager: +1 818 610-1128 +roomNumber: 8571 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jorey Gillet,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jorey Gillet +sn: Gillet +description: This is Jorey Gillet's description +facsimileTelephoneNumber: +1 510 357-1498 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 128-8184 +title: Junior Management Dictator +userPassword: Password1 +uid: GilletJ +givenName: Jorey +mail: GilletJ@3de3a1d37d58453ab287cb68f7be24d3.bitwarden.com +carLicense: ND110M +departmentNumber: 6516 +employeeType: Employee +homePhone: +1 510 845-2642 +initials: J. G. +mobile: +1 510 589-5841 +pager: +1 510 964-4380 +roomNumber: 8241 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shelagh Balutis,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelagh Balutis +sn: Balutis +description: This is Shelagh Balutis's description +facsimileTelephoneNumber: +1 408 599-3963 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 592-8334 +title: Supreme Product Development Technician +userPassword: Password1 +uid: BalutisS +givenName: Shelagh +mail: BalutisS@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com +carLicense: 892B61 +departmentNumber: 8470 +employeeType: Normal +homePhone: +1 408 819-4086 +initials: S. B. +mobile: +1 408 124-8688 +pager: +1 408 845-4777 +roomNumber: 8250 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rachelle Prakash,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rachelle Prakash +sn: Prakash +description: This is Rachelle Prakash's description +facsimileTelephoneNumber: +1 818 666-9939 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 737-1128 +title: Chief Management Developer +userPassword: Password1 +uid: PrakashR +givenName: Rachelle +mail: PrakashR@67a50420f0564b4b9d502195a9eb7324.bitwarden.com +carLicense: TAOU9I +departmentNumber: 5811 +employeeType: Normal +homePhone: +1 818 548-1978 +initials: R. P. +mobile: +1 818 833-5632 +pager: +1 818 502-5634 +roomNumber: 9407 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Akshay OKelly,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akshay OKelly +sn: OKelly +description: This is Akshay OKelly's description +facsimileTelephoneNumber: +1 804 553-3766 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 935-6815 +title: Junior Management Writer +userPassword: Password1 +uid: OKellyA +givenName: Akshay +mail: OKellyA@a87753ac7bf1427f885f1082236b1df1.bitwarden.com +carLicense: REBLR3 +departmentNumber: 9219 +employeeType: Contract +homePhone: +1 804 866-7011 +initials: A. O. +mobile: +1 804 854-6903 +pager: +1 804 317-4988 +roomNumber: 9356 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Condell Kho,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Condell Kho +sn: Kho +description: This is Condell Kho's description +facsimileTelephoneNumber: +1 206 915-7766 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 206 462-4977 +title: Supreme Human Resources Artist +userPassword: Password1 +uid: KhoC +givenName: Condell +mail: KhoC@315d5123c90042aeb10b3a82d996a1e6.bitwarden.com +carLicense: LESC5U +departmentNumber: 8256 +employeeType: Contract +homePhone: +1 206 433-2542 +initials: C. K. +mobile: +1 206 902-2375 +pager: +1 206 123-4112 +roomNumber: 8113 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cordey Ballard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cordey Ballard +sn: Ballard +description: This is Cordey Ballard's description +facsimileTelephoneNumber: +1 206 753-2073 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 364-8091 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: BallardC +givenName: Cordey +mail: BallardC@11fab52cda204855aedbc10b4a7ffea9.bitwarden.com +carLicense: 1XJ9U5 +departmentNumber: 1721 +employeeType: Employee +homePhone: +1 206 123-8045 +initials: C. B. +mobile: +1 206 404-1694 +pager: +1 206 351-7785 +roomNumber: 8606 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amelita Okura,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amelita Okura +sn: Okura +description: This is Amelita Okura's description +facsimileTelephoneNumber: +1 510 833-8035 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 961-4130 +title: Master Management Warrior +userPassword: Password1 +uid: OkuraA +givenName: Amelita +mail: OkuraA@c99079f52c0044f39a4259a6863af5cb.bitwarden.com +carLicense: MD19YU +departmentNumber: 2731 +employeeType: Normal +homePhone: +1 510 828-1031 +initials: A. O. +mobile: +1 510 530-8127 +pager: +1 510 718-2520 +roomNumber: 8568 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chuck Ferruzzi +sn: Ferruzzi +description: This is Chuck Ferruzzi's description +facsimileTelephoneNumber: +1 804 428-7024 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 920-9044 +title: Master Janitorial Developer +userPassword: Password1 +uid: FerruzzC +givenName: Chuck +mail: FerruzzC@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com +carLicense: NFYLVI +departmentNumber: 5501 +employeeType: Normal +homePhone: +1 804 241-2349 +initials: C. F. +mobile: +1 804 804-1782 +pager: +1 804 657-5846 +roomNumber: 8927 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nadeen Longpre,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nadeen Longpre +sn: Longpre +description: This is Nadeen Longpre's description +facsimileTelephoneNumber: +1 408 236-4415 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 684-8793 +title: Junior Management Writer +userPassword: Password1 +uid: LongpreN +givenName: Nadeen +mail: LongpreN@481a6dfc2726429788928adbad28f42a.bitwarden.com +carLicense: 3LYLIE +departmentNumber: 4567 +employeeType: Contract +homePhone: +1 408 891-3467 +initials: N. L. +mobile: +1 408 127-7755 +pager: +1 408 566-7335 +roomNumber: 8078 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Imtaz Chouinard,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imtaz Chouinard +sn: Chouinard +description: This is Imtaz Chouinard's description +facsimileTelephoneNumber: +1 213 132-2657 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 922-3055 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: ChouinaI +givenName: Imtaz +mail: ChouinaI@a12e4e310fd44c829ca56b2c9309abf6.bitwarden.com +carLicense: RW2GY9 +departmentNumber: 8429 +employeeType: Contract +homePhone: +1 213 973-1956 +initials: I. C. +mobile: +1 213 315-7579 +pager: +1 213 792-7962 +roomNumber: 9492 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darbie Weckwerth +sn: Weckwerth +description: This is Darbie Weckwerth's description +facsimileTelephoneNumber: +1 213 141-2724 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 822-8345 +title: Chief Janitorial Developer +userPassword: Password1 +uid: WeckwerD +givenName: Darbie +mail: WeckwerD@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com +carLicense: X5DYB2 +departmentNumber: 9260 +employeeType: Contract +homePhone: +1 213 399-5949 +initials: D. W. +mobile: +1 213 932-6400 +pager: +1 213 686-7411 +roomNumber: 9052 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Melinda Tappert,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melinda Tappert +sn: Tappert +description: This is Melinda Tappert's description +facsimileTelephoneNumber: +1 213 337-6905 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 320-8825 +title: Supreme Administrative Pinhead +userPassword: Password1 +uid: TappertM +givenName: Melinda +mail: TappertM@1f78d8536b924f6f89f5b50f4dff308b.bitwarden.com +carLicense: GU0FME +departmentNumber: 5082 +employeeType: Employee +homePhone: +1 213 330-3040 +initials: M. T. +mobile: +1 213 226-5832 +pager: +1 213 904-1619 +roomNumber: 9664 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faydra Beconovich +sn: Beconovich +description: This is Faydra Beconovich's description +facsimileTelephoneNumber: +1 510 160-8741 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 510 341-4787 +title: Junior Product Testing Manager +userPassword: Password1 +uid: BeconovF +givenName: Faydra +mail: BeconovF@3eed5bea3e8942ed94a18b2b3f161ac5.bitwarden.com +carLicense: 91G3CR +departmentNumber: 1280 +employeeType: Normal +homePhone: +1 510 421-3032 +initials: F. B. +mobile: +1 510 466-8262 +pager: +1 510 368-9676 +roomNumber: 9885 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Misha Karaali,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Misha Karaali +sn: Karaali +description: This is Misha Karaali's description +facsimileTelephoneNumber: +1 804 277-9848 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 938-3699 +title: Chief Payroll Stooge +userPassword: Password1 +uid: KaraaliM +givenName: Misha +mail: KaraaliM@1530b9738dfc47938d89ae3ab8cdd3f3.bitwarden.com +carLicense: QOCIFK +departmentNumber: 6492 +employeeType: Contract +homePhone: +1 804 149-6874 +initials: M. K. +mobile: +1 804 193-9922 +pager: +1 804 990-2044 +roomNumber: 9970 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Evanne Donator,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evanne Donator +sn: Donator +description: This is Evanne Donator's description +facsimileTelephoneNumber: +1 510 382-1469 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 169-2536 +title: Junior Management Mascot +userPassword: Password1 +uid: DonatorE +givenName: Evanne +mail: DonatorE@20891ba894354789902e2f57e98bbb6c.bitwarden.com +carLicense: PKAEXG +departmentNumber: 8128 +employeeType: Employee +homePhone: +1 510 519-4632 +initials: E. D. +mobile: +1 510 144-5877 +pager: +1 510 551-7164 +roomNumber: 9595 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Korry Taghizadeh +sn: Taghizadeh +description: This is Korry Taghizadeh's description +facsimileTelephoneNumber: +1 510 137-3252 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 187-2818 +title: Chief Product Testing Manager +userPassword: Password1 +uid: TaghizaK +givenName: Korry +mail: TaghizaK@729666359ed04f0995bf97703c170436.bitwarden.com +carLicense: GWGJCG +departmentNumber: 1558 +employeeType: Normal +homePhone: +1 510 116-1066 +initials: K. T. +mobile: +1 510 931-9776 +pager: +1 510 665-6781 +roomNumber: 8840 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rijswijk Rushing +sn: Rushing +description: This is Rijswijk Rushing's description +facsimileTelephoneNumber: +1 510 966-8141 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 788-7608 +title: Master Product Development Warrior +userPassword: Password1 +uid: RushingR +givenName: Rijswijk +mail: RushingR@6178a3e5d1d842f5ab8c4894a1bcee8e.bitwarden.com +carLicense: B68OPU +departmentNumber: 8042 +employeeType: Normal +homePhone: +1 510 838-1370 +initials: R. R. +mobile: +1 510 453-6325 +pager: +1 510 539-2355 +roomNumber: 9253 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gussy Prikkel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gussy Prikkel +sn: Prikkel +description: This is Gussy Prikkel's description +facsimileTelephoneNumber: +1 408 706-3032 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 963-8238 +title: Chief Payroll Architect +userPassword: Password1 +uid: PrikkelG +givenName: Gussy +mail: PrikkelG@412af91bb3534a1b89a431db4cb8a7a6.bitwarden.com +carLicense: H961WC +departmentNumber: 4398 +employeeType: Employee +homePhone: +1 408 496-3412 +initials: G. P. +mobile: +1 408 670-7361 +pager: +1 408 171-4063 +roomNumber: 9410 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Liping DaSilva,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liping DaSilva +sn: DaSilva +description: This is Liping DaSilva's description +facsimileTelephoneNumber: +1 213 308-7203 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 440-9363 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: DaSilvaL +givenName: Liping +mail: DaSilvaL@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com +carLicense: GS7MY6 +departmentNumber: 2750 +employeeType: Contract +homePhone: +1 213 347-9001 +initials: L. D. +mobile: +1 213 363-2669 +pager: +1 213 994-3603 +roomNumber: 8995 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keys MummyCraft +sn: MummyCraft +description: This is Keys MummyCraft's description +facsimileTelephoneNumber: +1 213 821-5280 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 498-6280 +title: Junior Human Resources Engineer +userPassword: Password1 +uid: MummyCrK +givenName: Keys +mail: MummyCrK@e52bb91930a9487fa1adfb0b49d2e1a5.bitwarden.com +carLicense: GGO85Q +departmentNumber: 8305 +employeeType: Normal +homePhone: +1 213 187-2879 +initials: K. M. +mobile: +1 213 214-4405 +pager: +1 213 883-4551 +roomNumber: 8402 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=HackHoo Sayed,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HackHoo Sayed +sn: Sayed +description: This is HackHoo Sayed's description +facsimileTelephoneNumber: +1 206 446-6457 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 566-7016 +title: Junior Administrative Warrior +userPassword: Password1 +uid: SayedH +givenName: HackHoo +mail: SayedH@41d9d77642444cc9ab9d5b4e9a3c43fc.bitwarden.com +carLicense: 4M97TE +departmentNumber: 4708 +employeeType: Normal +homePhone: +1 206 879-9412 +initials: H. S. +mobile: +1 206 537-8506 +pager: +1 206 433-6723 +roomNumber: 9348 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigitta Gahr +sn: Gahr +description: This is Brigitta Gahr's description +facsimileTelephoneNumber: +1 415 950-5253 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 710-1718 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: GahrB +givenName: Brigitta +mail: GahrB@f45f4579040a481ab9737c262f8c178e.bitwarden.com +carLicense: 2UV2YK +departmentNumber: 6432 +employeeType: Normal +homePhone: +1 415 798-9717 +initials: B. G. +mobile: +1 415 257-5576 +pager: +1 415 466-5004 +roomNumber: 9272 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rozanne Heurich,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozanne Heurich +sn: Heurich +description: This is Rozanne Heurich's description +facsimileTelephoneNumber: +1 804 849-8816 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 219-5474 +title: Chief Peons Director +userPassword: Password1 +uid: HeurichR +givenName: Rozanne +mail: HeurichR@0b56a4c94023459d8772d8f7af50540e.bitwarden.com +carLicense: GA6VAV +departmentNumber: 1792 +employeeType: Contract +homePhone: +1 804 190-7650 +initials: R. H. +mobile: +1 804 253-3544 +pager: +1 804 258-4154 +roomNumber: 9257 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arabel Omura,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arabel Omura +sn: Omura +description: This is Arabel Omura's description +facsimileTelephoneNumber: +1 213 641-5005 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 561-3650 +title: Junior Management Dictator +userPassword: Password1 +uid: OmuraA +givenName: Arabel +mail: OmuraA@d899cd8457e040e781946aa86814b934.bitwarden.com +carLicense: 04DLKV +departmentNumber: 3102 +employeeType: Contract +homePhone: +1 213 485-9224 +initials: A. O. +mobile: +1 213 351-8630 +pager: +1 213 550-9022 +roomNumber: 8365 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marce Rivest,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marce Rivest +sn: Rivest +description: This is Marce Rivest's description +facsimileTelephoneNumber: +1 510 509-3781 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 510 343-8672 +title: Junior Management Warrior +userPassword: Password1 +uid: RivestM +givenName: Marce +mail: RivestM@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com +carLicense: AX2CF4 +departmentNumber: 8697 +employeeType: Contract +homePhone: +1 510 989-8483 +initials: M. R. +mobile: +1 510 292-2006 +pager: +1 510 737-3423 +roomNumber: 9624 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Irena Hammermeister,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Irena Hammermeister +sn: Hammermeister +description: This is Irena Hammermeister's description +facsimileTelephoneNumber: +1 206 375-2198 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 486-6396 +title: Supreme Administrative Developer +userPassword: Password1 +uid: HammermI +givenName: Irena +mail: HammermI@462635d48ea740ba9a66cf325662e6a5.bitwarden.com +carLicense: CY6L25 +departmentNumber: 8600 +employeeType: Contract +homePhone: +1 206 390-7657 +initials: I. H. +mobile: +1 206 492-7443 +pager: +1 206 106-3216 +roomNumber: 9970 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sotos Bratten,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sotos Bratten +sn: Bratten +description: This is Sotos Bratten's description +facsimileTelephoneNumber: +1 408 453-3497 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 608-8731 +title: Supreme Product Development Stooge +userPassword: Password1 +uid: BrattenS +givenName: Sotos +mail: BrattenS@edda584dd7a3409daa4b2eabe9e2cdb4.bitwarden.com +carLicense: 2CAWI3 +departmentNumber: 4716 +employeeType: Normal +homePhone: +1 408 701-7307 +initials: S. B. +mobile: +1 408 699-7556 +pager: +1 408 879-5063 +roomNumber: 8594 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Venkataraman Hartleb +sn: Hartleb +description: This is Venkataraman Hartleb's description +facsimileTelephoneNumber: +1 408 602-2660 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 408 253-5152 +title: Junior Peons Figurehead +userPassword: Password1 +uid: HartlebV +givenName: Venkataraman +mail: HartlebV@4311bb9fc69e4905a1f6f7f3dd2b8fab.bitwarden.com +carLicense: PXUXF3 +departmentNumber: 9152 +employeeType: Contract +homePhone: +1 408 782-6748 +initials: V. H. +mobile: +1 408 860-9456 +pager: +1 408 170-6092 +roomNumber: 8591 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MinhPhuc Degenova +sn: Degenova +description: This is MinhPhuc Degenova's description +facsimileTelephoneNumber: +1 818 371-6576 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 500-1479 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: DegenovM +givenName: MinhPhuc +mail: DegenovM@c87bc1fef8d745d786889b1fab00a75d.bitwarden.com +carLicense: 0CA780 +departmentNumber: 6773 +employeeType: Normal +homePhone: +1 818 540-6678 +initials: M. D. +mobile: +1 818 889-6380 +pager: +1 818 688-1535 +roomNumber: 8549 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Elpida Vuignier,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elpida Vuignier +sn: Vuignier +description: This is Elpida Vuignier's description +facsimileTelephoneNumber: +1 213 595-6850 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 823-1242 +title: Associate Administrative Admin +userPassword: Password1 +uid: VuignieE +givenName: Elpida +mail: VuignieE@fb42541289ea4a75a098aa5071cf2a78.bitwarden.com +carLicense: JAIQ7P +departmentNumber: 4937 +employeeType: Contract +homePhone: +1 213 849-1793 +initials: E. V. +mobile: +1 213 226-4353 +pager: +1 213 779-4102 +roomNumber: 9158 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Naoma Rowe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naoma Rowe +sn: Rowe +description: This is Naoma Rowe's description +facsimileTelephoneNumber: +1 804 646-8469 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 700-9911 +title: Associate Product Development President +userPassword: Password1 +uid: RoweN +givenName: Naoma +mail: RoweN@66df60c7830b4e4788e97ef6a98c581d.bitwarden.com +carLicense: VSQ0XD +departmentNumber: 8826 +employeeType: Contract +homePhone: +1 804 318-6575 +initials: N. R. +mobile: +1 804 359-6014 +pager: +1 804 609-6714 +roomNumber: 9306 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosabelle Moogk +sn: Moogk +description: This is Rosabelle Moogk's description +facsimileTelephoneNumber: +1 408 610-6477 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 434-4012 +title: Supreme Product Development Admin +userPassword: Password1 +uid: MoogkR +givenName: Rosabelle +mail: MoogkR@928ad853e1494474966df7fb64907ee2.bitwarden.com +carLicense: NSB3Y8 +departmentNumber: 4844 +employeeType: Employee +homePhone: +1 408 871-8899 +initials: R. M. +mobile: +1 408 693-1553 +pager: +1 408 310-2129 +roomNumber: 8385 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pawel Bourget,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pawel Bourget +sn: Bourget +description: This is Pawel Bourget's description +facsimileTelephoneNumber: +1 213 315-8131 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 475-6248 +title: Associate Product Testing Architect +userPassword: Password1 +uid: BourgetP +givenName: Pawel +mail: BourgetP@5f02265632114e54a556740ff6947201.bitwarden.com +carLicense: F8306I +departmentNumber: 6075 +employeeType: Contract +homePhone: +1 213 488-1527 +initials: P. B. +mobile: +1 213 704-2246 +pager: +1 213 965-5493 +roomNumber: 9109 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Deloria Couser,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deloria Couser +sn: Couser +description: This is Deloria Couser's description +facsimileTelephoneNumber: +1 408 895-4134 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 964-1173 +title: Associate Product Testing Admin +userPassword: Password1 +uid: CouserD +givenName: Deloria +mail: CouserD@a62537fc90fa495dacdbf1e945e353e1.bitwarden.com +carLicense: RS4OW6 +departmentNumber: 9583 +employeeType: Normal +homePhone: +1 408 103-1754 +initials: D. C. +mobile: +1 408 392-7196 +pager: +1 408 641-8127 +roomNumber: 9412 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Conni Stainback,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Conni Stainback +sn: Stainback +description: This is Conni Stainback's description +facsimileTelephoneNumber: +1 206 572-7186 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 528-1782 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: StainbaC +givenName: Conni +mail: StainbaC@e7a587ea64f34a73b58bcee55a44c5f9.bitwarden.com +carLicense: 8T2C1A +departmentNumber: 9684 +employeeType: Employee +homePhone: +1 206 260-8398 +initials: C. S. +mobile: +1 206 304-4218 +pager: +1 206 195-1321 +roomNumber: 9197 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Modesta Huszarik,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Modesta Huszarik +sn: Huszarik +description: This is Modesta Huszarik's description +facsimileTelephoneNumber: +1 510 807-6709 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 678-9470 +title: Chief Administrative Technician +userPassword: Password1 +uid: HuszariM +givenName: Modesta +mail: HuszariM@a965fccdc0684ea39fc7e84bc33f6974.bitwarden.com +carLicense: N66D3S +departmentNumber: 2098 +employeeType: Employee +homePhone: +1 510 120-1114 +initials: M. H. +mobile: +1 510 116-4419 +pager: +1 510 278-3474 +roomNumber: 9647 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Reinhold Ribi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reinhold Ribi +sn: Ribi +description: This is Reinhold Ribi's description +facsimileTelephoneNumber: +1 510 456-7741 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 150-3304 +title: Junior Peons Admin +userPassword: Password1 +uid: RibiR +givenName: Reinhold +mail: RibiR@561d94097aa347c8b67fc74b1c6c095c.bitwarden.com +carLicense: Y1UW23 +departmentNumber: 5217 +employeeType: Normal +homePhone: +1 510 390-5470 +initials: R. R. +mobile: +1 510 600-5664 +pager: +1 510 191-1365 +roomNumber: 8679 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Loris Grimes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loris Grimes +sn: Grimes +description: This is Loris Grimes's description +facsimileTelephoneNumber: +1 818 380-1807 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 584-5123 +title: Master Product Development Architect +userPassword: Password1 +uid: GrimesL +givenName: Loris +mail: GrimesL@bd0d542943b6439fba91f92e849851ee.bitwarden.com +carLicense: 8T92SS +departmentNumber: 4045 +employeeType: Contract +homePhone: +1 818 634-5673 +initials: L. G. +mobile: +1 818 849-2623 +pager: +1 818 232-3294 +roomNumber: 8399 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardelia Kopala +sn: Kopala +description: This is Ardelia Kopala's description +facsimileTelephoneNumber: +1 415 475-6662 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 139-6391 +title: Master Product Testing Vice President +userPassword: Password1 +uid: KopalaA +givenName: Ardelia +mail: KopalaA@710eac99d23b4aba917dbd3cddce9e4d.bitwarden.com +carLicense: Q8VBS0 +departmentNumber: 1251 +employeeType: Contract +homePhone: +1 415 483-4082 +initials: A. K. +mobile: +1 415 238-5205 +pager: +1 415 738-3482 +roomNumber: 8072 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sid Walford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sid Walford +sn: Walford +description: This is Sid Walford's description +facsimileTelephoneNumber: +1 818 641-5007 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 331-5302 +title: Supreme Human Resources Director +userPassword: Password1 +uid: WalfordS +givenName: Sid +mail: WalfordS@3b7542a95526493995dfb5d0273708af.bitwarden.com +carLicense: SN4M3L +departmentNumber: 8196 +employeeType: Contract +homePhone: +1 818 737-8423 +initials: S. W. +mobile: +1 818 956-6251 +pager: +1 818 631-7173 +roomNumber: 9139 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatrisa Nahata +sn: Nahata +description: This is Beatrisa Nahata's description +facsimileTelephoneNumber: +1 408 939-6347 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 131-8599 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: NahataB +givenName: Beatrisa +mail: NahataB@1a25c5eecf2b4862871ccde04c2d3ffb.bitwarden.com +carLicense: F7FNDP +departmentNumber: 8543 +employeeType: Contract +homePhone: +1 408 865-2090 +initials: B. N. +mobile: +1 408 244-7118 +pager: +1 408 279-2219 +roomNumber: 9687 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ingrid Kruger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ingrid Kruger +sn: Kruger +description: This is Ingrid Kruger's description +facsimileTelephoneNumber: +1 408 141-6742 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 253-8469 +title: Chief Peons Figurehead +userPassword: Password1 +uid: KrugerI +givenName: Ingrid +mail: KrugerI@febac408e92c495d910b6c8cd4150caa.bitwarden.com +carLicense: QT5V1C +departmentNumber: 7999 +employeeType: Normal +homePhone: +1 408 780-9829 +initials: I. K. +mobile: +1 408 159-2089 +pager: +1 408 357-1412 +roomNumber: 9749 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Baha Raymond,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baha Raymond +sn: Raymond +description: This is Baha Raymond's description +facsimileTelephoneNumber: +1 213 974-8359 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 882-9850 +title: Associate Administrative Sales Rep +userPassword: Password1 +uid: RaymondB +givenName: Baha +mail: RaymondB@cffdccf91145470f922e22e1947852b6.bitwarden.com +carLicense: YY86I7 +departmentNumber: 1886 +employeeType: Contract +homePhone: +1 213 961-9120 +initials: B. R. +mobile: +1 213 428-3320 +pager: +1 213 479-5059 +roomNumber: 9109 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Raffi Legrove,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raffi Legrove +sn: Legrove +description: This is Raffi Legrove's description +facsimileTelephoneNumber: +1 408 326-2716 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 238-9344 +title: Associate Management Madonna +userPassword: Password1 +uid: LegroveR +givenName: Raffi +mail: LegroveR@aebedd81d0064bf4bf3e053b89a4b6eb.bitwarden.com +carLicense: TJID6S +departmentNumber: 5641 +employeeType: Normal +homePhone: +1 408 810-5725 +initials: R. L. +mobile: +1 408 686-6892 +pager: +1 408 338-4748 +roomNumber: 9050 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Julita Shemwell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julita Shemwell +sn: Shemwell +description: This is Julita Shemwell's description +facsimileTelephoneNumber: +1 510 474-7972 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 510 686-5496 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: ShemwelJ +givenName: Julita +mail: ShemwelJ@8488bd932270494b964d988d57bbae02.bitwarden.com +carLicense: NNL6XY +departmentNumber: 5520 +employeeType: Employee +homePhone: +1 510 949-3597 +initials: J. S. +mobile: +1 510 328-3281 +pager: +1 510 609-7867 +roomNumber: 9293 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pooh Claveau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pooh Claveau +sn: Claveau +description: This is Pooh Claveau's description +facsimileTelephoneNumber: +1 804 828-9912 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 713-9326 +title: Associate Payroll Madonna +userPassword: Password1 +uid: ClaveauP +givenName: Pooh +mail: ClaveauP@ae61f912d37d41959ec8fa8339b2d969.bitwarden.com +carLicense: X69TTP +departmentNumber: 5044 +employeeType: Normal +homePhone: +1 804 827-1656 +initials: P. C. +mobile: +1 804 163-6355 +pager: +1 804 189-7468 +roomNumber: 8904 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Haig Zumhagen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haig Zumhagen +sn: Zumhagen +description: This is Haig Zumhagen's description +facsimileTelephoneNumber: +1 408 714-3399 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 952-9731 +title: Chief Payroll Manager +userPassword: Password1 +uid: ZumhageH +givenName: Haig +mail: ZumhageH@7f9e6985348c418e8ff3641fece39e66.bitwarden.com +carLicense: Q5FGYL +departmentNumber: 7787 +employeeType: Employee +homePhone: +1 408 670-9370 +initials: H. Z. +mobile: +1 408 456-9737 +pager: +1 408 761-1515 +roomNumber: 8648 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Penni Gehring,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Penni Gehring +sn: Gehring +description: This is Penni Gehring's description +facsimileTelephoneNumber: +1 206 906-9355 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 965-6309 +title: Associate Janitorial Czar +userPassword: Password1 +uid: GehringP +givenName: Penni +mail: GehringP@67757dd424a44a4183c5e607b39a53fb.bitwarden.com +carLicense: U7SJBH +departmentNumber: 1549 +employeeType: Employee +homePhone: +1 206 679-5542 +initials: P. G. +mobile: +1 206 170-7313 +pager: +1 206 729-8854 +roomNumber: 9471 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Halie BrunerUebelhoer +sn: BrunerUebelhoer +description: This is Halie BrunerUebelhoer's description +facsimileTelephoneNumber: +1 818 280-5104 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 818 985-8204 +title: Master Human Resources Consultant +userPassword: Password1 +uid: BrunerUH +givenName: Halie +mail: BrunerUH@c47fea6640d041afa6361c6048c3c046.bitwarden.com +carLicense: 2GOQTA +departmentNumber: 4739 +employeeType: Normal +homePhone: +1 818 234-5093 +initials: H. B. +mobile: +1 818 742-2860 +pager: +1 818 481-8609 +roomNumber: 8261 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Melodie Parham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melodie Parham +sn: Parham +description: This is Melodie Parham's description +facsimileTelephoneNumber: +1 408 134-3523 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 661-3090 +title: Junior Product Testing Mascot +userPassword: Password1 +uid: ParhamM +givenName: Melodie +mail: ParhamM@97fbe9f514864d40bb6dc85e4d15c1c0.bitwarden.com +carLicense: HGS3KO +departmentNumber: 7261 +employeeType: Employee +homePhone: +1 408 658-6669 +initials: M. P. +mobile: +1 408 630-7182 +pager: +1 408 860-6520 +roomNumber: 9992 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Violetta Fallah,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Violetta Fallah +sn: Fallah +description: This is Violetta Fallah's description +facsimileTelephoneNumber: +1 818 388-1811 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 818 369-4253 +title: Associate Administrative Mascot +userPassword: Password1 +uid: FallahV +givenName: Violetta +mail: FallahV@bed40ec44cae43d6ac6f5b4ad1b78f92.bitwarden.com +carLicense: CJ386B +departmentNumber: 6202 +employeeType: Contract +homePhone: +1 818 600-9652 +initials: V. F. +mobile: +1 818 872-5494 +pager: +1 818 133-7437 +roomNumber: 8701 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shay Molson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shay Molson +sn: Molson +description: This is Shay Molson's description +facsimileTelephoneNumber: +1 213 542-5395 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 461-4947 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: MolsonS +givenName: Shay +mail: MolsonS@2d496c580b4f4816a656973b9003a612.bitwarden.com +carLicense: EK26T3 +departmentNumber: 9290 +employeeType: Normal +homePhone: +1 213 778-7204 +initials: S. M. +mobile: +1 213 550-7831 +pager: +1 213 538-4462 +roomNumber: 8767 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Guillema Halicki,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guillema Halicki +sn: Halicki +description: This is Guillema Halicki's description +facsimileTelephoneNumber: +1 415 785-8474 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 789-1010 +title: Master Product Testing Technician +userPassword: Password1 +uid: HalickiG +givenName: Guillema +mail: HalickiG@48f243cdc32d45d6aad070d357ee442e.bitwarden.com +carLicense: 5Y9P5W +departmentNumber: 4220 +employeeType: Normal +homePhone: +1 415 836-7403 +initials: G. H. +mobile: +1 415 145-4247 +pager: +1 415 914-4134 +roomNumber: 9909 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hardyal Millspaugh +sn: Millspaugh +description: This is Hardyal Millspaugh's description +facsimileTelephoneNumber: +1 804 824-1277 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 804 525-3474 +title: Master Payroll Admin +userPassword: Password1 +uid: MillspaH +givenName: Hardyal +mail: MillspaH@354ea0fe89ed4f6794beb933c091a753.bitwarden.com +carLicense: 5FXOJ9 +departmentNumber: 9857 +employeeType: Employee +homePhone: +1 804 118-7950 +initials: H. M. +mobile: +1 804 920-5510 +pager: +1 804 607-2355 +roomNumber: 8854 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sacto Kao,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sacto Kao +sn: Kao +description: This is Sacto Kao's description +facsimileTelephoneNumber: +1 206 901-1858 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 119-1630 +title: Junior Peons Architect +userPassword: Password1 +uid: KaoS +givenName: Sacto +mail: KaoS@5f07a6760f8048cca79c8506ff02e587.bitwarden.com +carLicense: 2BL7M6 +departmentNumber: 8161 +employeeType: Normal +homePhone: +1 206 968-1244 +initials: S. K. +mobile: +1 206 747-9770 +pager: +1 206 814-4404 +roomNumber: 9911 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Linh Kishi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linh Kishi +sn: Kishi +description: This is Linh Kishi's description +facsimileTelephoneNumber: +1 510 218-2336 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 510 948-7505 +title: Chief Peons Punk +userPassword: Password1 +uid: KishiL +givenName: Linh +mail: KishiL@45ff518891da43879283e296db76d389.bitwarden.com +carLicense: VSAEJF +departmentNumber: 1603 +employeeType: Normal +homePhone: +1 510 135-5904 +initials: L. K. +mobile: +1 510 188-4597 +pager: +1 510 274-6642 +roomNumber: 8405 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Careers Caves,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Careers Caves +sn: Caves +description: This is Careers Caves's description +facsimileTelephoneNumber: +1 415 710-8669 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 240-6796 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: CavesC +givenName: Careers +mail: CavesC@29b1fd9375ce41f58146a7a83c10d36d.bitwarden.com +carLicense: O642XH +departmentNumber: 6309 +employeeType: Employee +homePhone: +1 415 574-8103 +initials: C. C. +mobile: +1 415 206-7820 +pager: +1 415 982-6819 +roomNumber: 9262 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lezlie Niebudek +sn: Niebudek +description: This is Lezlie Niebudek's description +facsimileTelephoneNumber: +1 206 362-4257 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 206 167-2131 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: NiebudeL +givenName: Lezlie +mail: NiebudeL@a1ff5ce57b0d4a5ab92e5a7972b3c4b0.bitwarden.com +carLicense: 9UMWCP +departmentNumber: 1506 +employeeType: Employee +homePhone: +1 206 391-5081 +initials: L. N. +mobile: +1 206 338-3634 +pager: +1 206 772-8901 +roomNumber: 9850 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nicolina Kopke,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolina Kopke +sn: Kopke +description: This is Nicolina Kopke's description +facsimileTelephoneNumber: +1 408 429-7317 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 311-4260 +title: Chief Payroll Vice President +userPassword: Password1 +uid: KopkeN +givenName: Nicolina +mail: KopkeN@79a51a140338408bbf63aba2c3dbf6b9.bitwarden.com +carLicense: UWPSVJ +departmentNumber: 4267 +employeeType: Employee +homePhone: +1 408 328-8991 +initials: N. K. +mobile: +1 408 970-7117 +pager: +1 408 835-9633 +roomNumber: 8740 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kristel Credico,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristel Credico +sn: Credico +description: This is Kristel Credico's description +facsimileTelephoneNumber: +1 206 886-6170 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 206 239-9845 +title: Supreme Human Resources Consultant +userPassword: Password1 +uid: CredicoK +givenName: Kristel +mail: CredicoK@a87753ac7bf1427f885f1082236b1df1.bitwarden.com +carLicense: TRXPEV +departmentNumber: 9252 +employeeType: Employee +homePhone: +1 206 340-4359 +initials: K. C. +mobile: +1 206 820-4265 +pager: +1 206 254-5762 +roomNumber: 8273 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pankaj Clow,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pankaj Clow +sn: Clow +description: This is Pankaj Clow's description +facsimileTelephoneNumber: +1 408 925-7820 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 408 835-4645 +title: Junior Peons Janitor +userPassword: Password1 +uid: ClowP +givenName: Pankaj +mail: ClowP@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com +carLicense: IOJNM4 +departmentNumber: 9698 +employeeType: Contract +homePhone: +1 408 877-3868 +initials: P. C. +mobile: +1 408 323-9078 +pager: +1 408 332-6392 +roomNumber: 9523 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Radomir Remson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Radomir Remson +sn: Remson +description: This is Radomir Remson's description +facsimileTelephoneNumber: +1 408 439-7311 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 156-5854 +title: Supreme Administrative Engineer +userPassword: Password1 +uid: RemsonR +givenName: Radomir +mail: RemsonR@1843ab31697149758be7883059806164.bitwarden.com +carLicense: TOC57N +departmentNumber: 3711 +employeeType: Employee +homePhone: +1 408 788-6566 +initials: R. R. +mobile: +1 408 965-6992 +pager: +1 408 985-8350 +roomNumber: 8436 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Josefina Parr,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Josefina Parr +sn: Parr +description: This is Josefina Parr's description +facsimileTelephoneNumber: +1 213 930-8531 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 210-1791 +title: Master Janitorial Architect +userPassword: Password1 +uid: ParrJ +givenName: Josefina +mail: ParrJ@3e63d8e6be204b07ac7dd7943bdd9def.bitwarden.com +carLicense: D7G7BD +departmentNumber: 1679 +employeeType: Normal +homePhone: +1 213 811-3886 +initials: J. P. +mobile: +1 213 326-9503 +pager: +1 213 659-9770 +roomNumber: 8925 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Korie Grooms,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Korie Grooms +sn: Grooms +description: This is Korie Grooms's description +facsimileTelephoneNumber: +1 415 150-1481 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 415 647-8253 +title: Associate Product Development Evangelist +userPassword: Password1 +uid: GroomsK +givenName: Korie +mail: GroomsK@48ac2947eb2846ecbb24ee61115af2ee.bitwarden.com +carLicense: D5U3D2 +departmentNumber: 6571 +employeeType: Employee +homePhone: +1 415 323-7443 +initials: K. G. +mobile: +1 415 769-4578 +pager: +1 415 765-7990 +roomNumber: 9090 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nelson Lytle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nelson Lytle +sn: Lytle +description: This is Nelson Lytle's description +facsimileTelephoneNumber: +1 818 966-1651 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 694-2492 +title: Master Product Development Figurehead +userPassword: Password1 +uid: LytleN +givenName: Nelson +mail: LytleN@7417b89a4c9b42108e005c797d9f25b5.bitwarden.com +carLicense: OQJL0X +departmentNumber: 8226 +employeeType: Contract +homePhone: +1 818 471-8536 +initials: N. L. +mobile: +1 818 200-2987 +pager: +1 818 524-4391 +roomNumber: 8667 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Greet Driver,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greet Driver +sn: Driver +description: This is Greet Driver's description +facsimileTelephoneNumber: +1 804 480-6122 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 345-1620 +title: Junior Product Development Architect +userPassword: Password1 +uid: DriverG +givenName: Greet +mail: DriverG@65ad77a0a7134c499e3c0bd4fd84a125.bitwarden.com +carLicense: A1YNC7 +departmentNumber: 7517 +employeeType: Normal +homePhone: +1 804 860-5881 +initials: G. D. +mobile: +1 804 646-2044 +pager: +1 804 224-8586 +roomNumber: 8570 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Phillis Pravato,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phillis Pravato +sn: Pravato +description: This is Phillis Pravato's description +facsimileTelephoneNumber: +1 510 707-6722 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 952-8163 +title: Associate Peons Assistant +userPassword: Password1 +uid: PravatoP +givenName: Phillis +mail: PravatoP@f07a2704744543c99ec010f0a9ec3d24.bitwarden.com +carLicense: 2P45LS +departmentNumber: 5523 +employeeType: Employee +homePhone: +1 510 804-5875 +initials: P. P. +mobile: +1 510 825-2476 +pager: +1 510 227-4326 +roomNumber: 9291 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Patch Eberlin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patch Eberlin +sn: Eberlin +description: This is Patch Eberlin's description +facsimileTelephoneNumber: +1 206 128-3464 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 603-5267 +title: Chief Product Development Technician +userPassword: Password1 +uid: EberlinP +givenName: Patch +mail: EberlinP@46a5b2004b96415ab4737f15ebd51c9d.bitwarden.com +carLicense: CCSNFL +departmentNumber: 6465 +employeeType: Employee +homePhone: +1 206 415-6744 +initials: P. E. +mobile: +1 206 603-7669 +pager: +1 206 193-4183 +roomNumber: 9283 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Malorie Goos,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malorie Goos +sn: Goos +description: This is Malorie Goos's description +facsimileTelephoneNumber: +1 415 815-5359 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 684-9166 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: GoosM +givenName: Malorie +mail: GoosM@d101e1afb4ea499090e0cf8a9001282a.bitwarden.com +carLicense: 69JR07 +departmentNumber: 4455 +employeeType: Normal +homePhone: +1 415 724-8387 +initials: M. G. +mobile: +1 415 874-3521 +pager: +1 415 304-3996 +roomNumber: 9511 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KaiWai Kakuta +sn: Kakuta +description: This is KaiWai Kakuta's description +facsimileTelephoneNumber: +1 804 922-7230 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 889-7801 +title: Associate Human Resources Architect +userPassword: Password1 +uid: KakutaK +givenName: KaiWai +mail: KakutaK@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com +carLicense: 45L9GS +departmentNumber: 4733 +employeeType: Normal +homePhone: +1 804 323-4379 +initials: K. K. +mobile: +1 804 688-4390 +pager: +1 804 380-5827 +roomNumber: 8039 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jocelyne Jewett +sn: Jewett +description: This is Jocelyne Jewett's description +facsimileTelephoneNumber: +1 213 133-1504 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 213 494-6663 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: JewettJ +givenName: Jocelyne +mail: JewettJ@7823a7fa07b54bdaae5cb7f5372a506a.bitwarden.com +carLicense: BIKSL5 +departmentNumber: 8800 +employeeType: Employee +homePhone: +1 213 900-7709 +initials: J. J. +mobile: +1 213 927-6245 +pager: +1 213 818-8716 +roomNumber: 8186 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Effie Pracht,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Effie Pracht +sn: Pracht +description: This is Effie Pracht's description +facsimileTelephoneNumber: +1 804 929-6856 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 199-7123 +title: Associate Product Development Engineer +userPassword: Password1 +uid: PrachtE +givenName: Effie +mail: PrachtE@b9847a93402b4d7e9eab2f6967e34b51.bitwarden.com +carLicense: IAWI01 +departmentNumber: 9316 +employeeType: Contract +homePhone: +1 804 160-9236 +initials: E. P. +mobile: +1 804 312-9972 +pager: +1 804 179-5590 +roomNumber: 8357 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Elza Gillon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elza Gillon +sn: Gillon +description: This is Elza Gillon's description +facsimileTelephoneNumber: +1 510 537-5635 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 754-7768 +title: Associate Janitorial Assistant +userPassword: Password1 +uid: GillonE +givenName: Elza +mail: GillonE@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com +carLicense: 0SJLW5 +departmentNumber: 2213 +employeeType: Contract +homePhone: +1 510 656-1921 +initials: E. G. +mobile: +1 510 793-6129 +pager: +1 510 387-8504 +roomNumber: 8643 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maddy Falletti,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maddy Falletti +sn: Falletti +description: This is Maddy Falletti's description +facsimileTelephoneNumber: +1 206 912-6272 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 384-8696 +title: Chief Product Development Artist +userPassword: Password1 +uid: FallettM +givenName: Maddy +mail: FallettM@a14fac4b746f43c590992c0cffe25f62.bitwarden.com +carLicense: ABG592 +departmentNumber: 2623 +employeeType: Contract +homePhone: +1 206 450-1483 +initials: M. F. +mobile: +1 206 253-5243 +pager: +1 206 271-2524 +roomNumber: 9643 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Candee DiFalco,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candee DiFalco +sn: DiFalco +description: This is Candee DiFalco's description +facsimileTelephoneNumber: +1 804 300-1620 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 966-1808 +title: Chief Management Visionary +userPassword: Password1 +uid: DiFalcoC +givenName: Candee +mail: DiFalcoC@b91b1bdb74a74584ada128918dac6578.bitwarden.com +carLicense: UE0P86 +departmentNumber: 7876 +employeeType: Contract +homePhone: +1 804 249-2246 +initials: C. D. +mobile: +1 804 393-8288 +pager: +1 804 187-8454 +roomNumber: 9528 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Martynne McCloughan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martynne McCloughan +sn: McCloughan +description: This is Martynne McCloughan's description +facsimileTelephoneNumber: +1 415 628-7099 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 279-9087 +title: Chief Administrative Technician +userPassword: Password1 +uid: McClougM +givenName: Martynne +mail: McClougM@e974b86e9f10486baa2ed0156d74e959.bitwarden.com +carLicense: H44O9W +departmentNumber: 1022 +employeeType: Employee +homePhone: +1 415 257-6151 +initials: M. M. +mobile: +1 415 467-7644 +pager: +1 415 793-4287 +roomNumber: 8896 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marris Lobello,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marris Lobello +sn: Lobello +description: This is Marris Lobello's description +facsimileTelephoneNumber: +1 213 780-5338 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 574-4731 +title: Associate Janitorial President +userPassword: Password1 +uid: LobelloM +givenName: Marris +mail: LobelloM@a12359b394964b42a1a462b3cf340545.bitwarden.com +carLicense: 5M9FC0 +departmentNumber: 1651 +employeeType: Contract +homePhone: +1 213 899-2761 +initials: M. L. +mobile: +1 213 286-3951 +pager: +1 213 201-1367 +roomNumber: 9393 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rochell Denmark,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rochell Denmark +sn: Denmark +description: This is Rochell Denmark's description +facsimileTelephoneNumber: +1 408 342-1135 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 667-4404 +title: Master Payroll Figurehead +userPassword: Password1 +uid: DenmarkR +givenName: Rochell +mail: DenmarkR@50d7c806edce40aba32e1f9a44a2e284.bitwarden.com +carLicense: 7KVVSH +departmentNumber: 1485 +employeeType: Normal +homePhone: +1 408 495-8743 +initials: R. D. +mobile: +1 408 517-9859 +pager: +1 408 274-8995 +roomNumber: 8581 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annabelle Mallozzi +sn: Mallozzi +description: This is Annabelle Mallozzi's description +facsimileTelephoneNumber: +1 415 970-2564 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 344-4282 +title: Master Product Testing Mascot +userPassword: Password1 +uid: MallozzA +givenName: Annabelle +mail: MallozzA@879fb49a3d5b4e1fa5900dee565590ff.bitwarden.com +carLicense: I9FGFS +departmentNumber: 3593 +employeeType: Employee +homePhone: +1 415 969-7128 +initials: A. M. +mobile: +1 415 326-1325 +pager: +1 415 785-1418 +roomNumber: 9066 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hoekstra Abello +sn: Abello +description: This is Hoekstra Abello's description +facsimileTelephoneNumber: +1 510 347-3215 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 711-6355 +title: Master Human Resources Consultant +userPassword: Password1 +uid: AbelloH +givenName: Hoekstra +mail: AbelloH@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com +carLicense: 8ATUY2 +departmentNumber: 8923 +employeeType: Contract +homePhone: +1 510 656-4321 +initials: H. A. +mobile: +1 510 178-8155 +pager: +1 510 595-1038 +roomNumber: 9651 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ngai Michael,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ngai Michael +sn: Michael +description: This is Ngai Michael's description +facsimileTelephoneNumber: +1 213 782-6817 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 912-6955 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: MichaelN +givenName: Ngai +mail: MichaelN@1487aec275284e49a79c5c4099f33bdb.bitwarden.com +carLicense: 6P4L1P +departmentNumber: 5358 +employeeType: Employee +homePhone: +1 213 266-1454 +initials: N. M. +mobile: +1 213 341-4585 +pager: +1 213 279-2135 +roomNumber: 8228 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=JoLee Fredette,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JoLee Fredette +sn: Fredette +description: This is JoLee Fredette's description +facsimileTelephoneNumber: +1 213 647-3623 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 213 423-9574 +title: Associate Administrative Sales Rep +userPassword: Password1 +uid: FredettJ +givenName: JoLee +mail: FredettJ@bea3a59f852447369b2ae52dc89b101a.bitwarden.com +carLicense: A3RHW3 +departmentNumber: 5349 +employeeType: Contract +homePhone: +1 213 954-9304 +initials: J. F. +mobile: +1 213 497-9359 +pager: +1 213 435-1839 +roomNumber: 8939 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Liv Veedell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liv Veedell +sn: Veedell +description: This is Liv Veedell's description +facsimileTelephoneNumber: +1 415 463-5709 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 316-4749 +title: Junior Product Testing Evangelist +userPassword: Password1 +uid: VeedellL +givenName: Liv +mail: VeedellL@4112fa5751f947c9a6ebd8e6086a4cce.bitwarden.com +carLicense: 4YIPAK +departmentNumber: 5388 +employeeType: Normal +homePhone: +1 415 421-9421 +initials: L. V. +mobile: +1 415 668-9125 +pager: +1 415 848-2112 +roomNumber: 9787 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Verina Coddington,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verina Coddington +sn: Coddington +description: This is Verina Coddington's description +facsimileTelephoneNumber: +1 206 804-8074 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 215-3036 +title: Supreme Product Development Director +userPassword: Password1 +uid: CoddingV +givenName: Verina +mail: CoddingV@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com +carLicense: IKKIQW +departmentNumber: 2096 +employeeType: Contract +homePhone: +1 206 333-4819 +initials: V. C. +mobile: +1 206 911-3348 +pager: +1 206 955-4252 +roomNumber: 8413 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=March Easton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: March Easton +sn: Easton +description: This is March Easton's description +facsimileTelephoneNumber: +1 206 222-6778 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 486-1360 +title: Supreme Management Czar +userPassword: Password1 +uid: EastonM +givenName: March +mail: EastonM@a71c06be904c4f5a89c92e6a220b8c20.bitwarden.com +carLicense: P5BE08 +departmentNumber: 2290 +employeeType: Employee +homePhone: +1 206 195-6350 +initials: M. E. +mobile: +1 206 261-2581 +pager: +1 206 670-1291 +roomNumber: 8129 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jianli Kahhale,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jianli Kahhale +sn: Kahhale +description: This is Jianli Kahhale's description +facsimileTelephoneNumber: +1 415 151-3819 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 265-5034 +title: Supreme Management Fellow +userPassword: Password1 +uid: KahhaleJ +givenName: Jianli +mail: KahhaleJ@118d571b1571425c87bcb58317919134.bitwarden.com +carLicense: 6TKLXC +departmentNumber: 7138 +employeeType: Employee +homePhone: +1 415 519-2736 +initials: J. K. +mobile: +1 415 250-6931 +pager: +1 415 477-8876 +roomNumber: 8272 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shamshad Bozicevich,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shamshad Bozicevich +sn: Bozicevich +description: This is Shamshad Bozicevich's description +facsimileTelephoneNumber: +1 510 467-8406 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 537-6123 +title: Junior Management Developer +userPassword: Password1 +uid: BozicevS +givenName: Shamshad +mail: BozicevS@99fd889b48504677bce0dc492f7e0cf3.bitwarden.com +carLicense: GICEVF +departmentNumber: 2414 +employeeType: Employee +homePhone: +1 510 329-7980 +initials: S. B. +mobile: +1 510 251-9969 +pager: +1 510 442-8040 +roomNumber: 8314 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Renate Kahkonen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renate Kahkonen +sn: Kahkonen +description: This is Renate Kahkonen's description +facsimileTelephoneNumber: +1 408 411-6186 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 910-6740 +title: Chief Management Warrior +userPassword: Password1 +uid: KahkoneR +givenName: Renate +mail: KahkoneR@01d338da3bbb4fa4b6b8cadeb6cc7fae.bitwarden.com +carLicense: GRD6LQ +departmentNumber: 2852 +employeeType: Contract +homePhone: +1 408 772-4764 +initials: R. K. +mobile: +1 408 466-3435 +pager: +1 408 862-6339 +roomNumber: 9303 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Aile Lugsdin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aile Lugsdin +sn: Lugsdin +description: This is Aile Lugsdin's description +facsimileTelephoneNumber: +1 408 748-7499 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 408 378-3173 +title: Supreme Product Development Developer +userPassword: Password1 +uid: LugsdinA +givenName: Aile +mail: LugsdinA@9a209519348642769473b09231da3137.bitwarden.com +carLicense: RBFQLR +departmentNumber: 1689 +employeeType: Contract +homePhone: +1 408 947-4648 +initials: A. L. +mobile: +1 408 556-6105 +pager: +1 408 490-7407 +roomNumber: 8585 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Warwick Gamarnik,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Warwick Gamarnik +sn: Gamarnik +description: This is Warwick Gamarnik's description +facsimileTelephoneNumber: +1 818 556-8798 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 951-3142 +title: Master Peons Developer +userPassword: Password1 +uid: GamarniW +givenName: Warwick +mail: GamarniW@b32188c77df94658a5bd155a122ff5d9.bitwarden.com +carLicense: VQLR7X +departmentNumber: 2930 +employeeType: Normal +homePhone: +1 818 368-6646 +initials: W. G. +mobile: +1 818 296-9087 +pager: +1 818 255-5871 +roomNumber: 9576 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Candee Brubaker,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candee Brubaker +sn: Brubaker +description: This is Candee Brubaker's description +facsimileTelephoneNumber: +1 804 516-6774 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 364-7858 +title: Master Administrative Mascot +userPassword: Password1 +uid: BrubakeC +givenName: Candee +mail: BrubakeC@58dd45ceb2d64fb0b6fd6e1d9136b5e5.bitwarden.com +carLicense: NXL341 +departmentNumber: 8577 +employeeType: Employee +homePhone: +1 804 644-8929 +initials: C. B. +mobile: +1 804 419-7078 +pager: +1 804 505-7755 +roomNumber: 9430 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quality Mitchelson +sn: Mitchelson +description: This is Quality Mitchelson's description +facsimileTelephoneNumber: +1 415 195-3158 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 304-5232 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: MitchelQ +givenName: Quality +mail: MitchelQ@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com +carLicense: WLSWHW +departmentNumber: 2876 +employeeType: Normal +homePhone: +1 415 112-7183 +initials: Q. M. +mobile: +1 415 411-9517 +pager: +1 415 272-9447 +roomNumber: 8349 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Iolanthe Graydon +sn: Graydon +description: This is Iolanthe Graydon's description +facsimileTelephoneNumber: +1 213 696-6712 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 333-1319 +title: Associate Payroll Architect +userPassword: Password1 +uid: GraydonI +givenName: Iolanthe +mail: GraydonI@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com +carLicense: P7R0CE +departmentNumber: 3995 +employeeType: Employee +homePhone: +1 213 535-6857 +initials: I. G. +mobile: +1 213 919-8181 +pager: +1 213 385-4416 +roomNumber: 9399 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nashir Tue,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nashir Tue +sn: Tue +description: This is Nashir Tue's description +facsimileTelephoneNumber: +1 213 111-9666 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 614-3220 +title: Chief Administrative Punk +userPassword: Password1 +uid: TueN +givenName: Nashir +mail: TueN@ec7767ad12a9472c8d17e1cdb30756bf.bitwarden.com +carLicense: QFM6XR +departmentNumber: 8298 +employeeType: Normal +homePhone: +1 213 528-4918 +initials: N. T. +mobile: +1 213 946-1320 +pager: +1 213 274-9015 +roomNumber: 8983 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lolita Hanson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lolita Hanson +sn: Hanson +description: This is Lolita Hanson's description +facsimileTelephoneNumber: +1 213 537-3708 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 213 929-7918 +title: Master Product Development Visionary +userPassword: Password1 +uid: HansonL +givenName: Lolita +mail: HansonL@7a434719bc114db3972a25b2d060ed01.bitwarden.com +carLicense: B5O34S +departmentNumber: 7145 +employeeType: Employee +homePhone: +1 213 989-7513 +initials: L. H. +mobile: +1 213 130-4832 +pager: +1 213 468-5232 +roomNumber: 9416 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Antoinette WPMS,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antoinette WPMS +sn: WPMS +description: This is Antoinette WPMS's description +facsimileTelephoneNumber: +1 510 307-8996 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 419-7705 +title: Supreme Management Consultant +userPassword: Password1 +uid: WPMSA +givenName: Antoinette +mail: WPMSA@2a72bc736ffb4d18ae10b2685172d382.bitwarden.com +carLicense: XTU3YR +departmentNumber: 5431 +employeeType: Employee +homePhone: +1 510 629-6542 +initials: A. W. +mobile: +1 510 289-5597 +pager: +1 510 557-8380 +roomNumber: 8864 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tetsuya Gratton +sn: Gratton +description: This is Tetsuya Gratton's description +facsimileTelephoneNumber: +1 206 782-8993 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 207-7518 +title: Junior Product Development Developer +userPassword: Password1 +uid: GrattonT +givenName: Tetsuya +mail: GrattonT@90c63f93b5c34551a51a09ea98b45b93.bitwarden.com +carLicense: A4IHGW +departmentNumber: 8228 +employeeType: Contract +homePhone: +1 206 754-6686 +initials: T. G. +mobile: +1 206 562-9368 +pager: +1 206 778-1890 +roomNumber: 8611 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Margaux Rollo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margaux Rollo +sn: Rollo +description: This is Margaux Rollo's description +facsimileTelephoneNumber: +1 213 425-4164 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 839-1627 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: RolloM +givenName: Margaux +mail: RolloM@516fd466f892459aa17afb2e000f114d.bitwarden.com +carLicense: XMO44A +departmentNumber: 4957 +employeeType: Contract +homePhone: +1 213 641-4762 +initials: M. R. +mobile: +1 213 218-6289 +pager: +1 213 659-8413 +roomNumber: 9626 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Idell Pung,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idell Pung +sn: Pung +description: This is Idell Pung's description +facsimileTelephoneNumber: +1 510 748-2972 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 683-6687 +title: Junior Product Testing President +userPassword: Password1 +uid: PungI +givenName: Idell +mail: PungI@1a2826f06614436585f4faa14772cf1b.bitwarden.com +carLicense: VF2LIM +departmentNumber: 7155 +employeeType: Contract +homePhone: +1 510 697-7765 +initials: I. P. +mobile: +1 510 899-3235 +pager: +1 510 750-2257 +roomNumber: 9869 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tandy Etoh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tandy Etoh +sn: Etoh +description: This is Tandy Etoh's description +facsimileTelephoneNumber: +1 804 755-4060 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 804 786-2304 +title: Junior Administrative Sales Rep +userPassword: Password1 +uid: EtohT +givenName: Tandy +mail: EtohT@d38183f1beee43c2843b4bd66bd7aeb8.bitwarden.com +carLicense: AJ69M3 +departmentNumber: 5888 +employeeType: Employee +homePhone: +1 804 541-5703 +initials: T. E. +mobile: +1 804 876-8113 +pager: +1 804 263-8644 +roomNumber: 8570 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alaine Ceponis +sn: Ceponis +description: This is Alaine Ceponis's description +facsimileTelephoneNumber: +1 510 621-4591 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 347-9216 +title: Chief Janitorial Fellow +userPassword: Password1 +uid: CeponisA +givenName: Alaine +mail: CeponisA@8580a70392584c53919bc1436276cfec.bitwarden.com +carLicense: 6YCS2X +departmentNumber: 7667 +employeeType: Normal +homePhone: +1 510 734-3214 +initials: A. C. +mobile: +1 510 186-7634 +pager: +1 510 401-8283 +roomNumber: 9351 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clemmie Popowicz +sn: Popowicz +description: This is Clemmie Popowicz's description +facsimileTelephoneNumber: +1 415 694-4280 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 326-5274 +title: Associate Product Development Assistant +userPassword: Password1 +uid: PopowicC +givenName: Clemmie +mail: PopowicC@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com +carLicense: VXL1X6 +departmentNumber: 7312 +employeeType: Employee +homePhone: +1 415 531-8693 +initials: C. P. +mobile: +1 415 846-1040 +pager: +1 415 827-2430 +roomNumber: 8310 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Twana Schneider,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Twana Schneider +sn: Schneider +description: This is Twana Schneider's description +facsimileTelephoneNumber: +1 818 831-2670 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 818 300-7159 +title: Associate Product Testing Mascot +userPassword: Password1 +uid: SchneidT +givenName: Twana +mail: SchneidT@af38a73cbf364504a84e0d960de55c89.bitwarden.com +carLicense: 7JC94A +departmentNumber: 4508 +employeeType: Normal +homePhone: +1 818 394-4830 +initials: T. S. +mobile: +1 818 237-1172 +pager: +1 818 844-3448 +roomNumber: 9732 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isabeau Neumeister +sn: Neumeister +description: This is Isabeau Neumeister's description +facsimileTelephoneNumber: +1 510 944-9689 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 444-6439 +title: Junior Human Resources Assistant +userPassword: Password1 +uid: NeumeisI +givenName: Isabeau +mail: NeumeisI@fd9ad4f975c84639a80c728d3cc48c21.bitwarden.com +carLicense: VWXBJS +departmentNumber: 2688 +employeeType: Normal +homePhone: +1 510 949-1667 +initials: I. N. +mobile: +1 510 330-8313 +pager: +1 510 790-8596 +roomNumber: 9054 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariejeanne Dispatch +sn: Dispatch +description: This is Mariejeanne Dispatch's description +facsimileTelephoneNumber: +1 206 614-4362 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 702-7524 +title: Supreme Payroll Czar +userPassword: Password1 +uid: DispatcM +givenName: Mariejeanne +mail: DispatcM@7bdb7e04a26d459886f8fcaa0d3da8fb.bitwarden.com +carLicense: RFG4NO +departmentNumber: 7250 +employeeType: Employee +homePhone: +1 206 409-1383 +initials: M. D. +mobile: +1 206 953-2430 +pager: +1 206 148-2313 +roomNumber: 8903 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lari Killeen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lari Killeen +sn: Killeen +description: This is Lari Killeen's description +facsimileTelephoneNumber: +1 415 860-6648 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 668-3188 +title: Master Management Technician +userPassword: Password1 +uid: KilleenL +givenName: Lari +mail: KilleenL@787ed9ee968044deafa9223d83fb6389.bitwarden.com +carLicense: J1CJNP +departmentNumber: 8572 +employeeType: Contract +homePhone: +1 415 112-3117 +initials: L. K. +mobile: +1 415 919-2490 +pager: +1 415 780-6250 +roomNumber: 8138 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pars Tigg,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pars Tigg +sn: Tigg +description: This is Pars Tigg's description +facsimileTelephoneNumber: +1 804 777-3365 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 414-5287 +title: Master Management Figurehead +userPassword: Password1 +uid: TiggP +givenName: Pars +mail: TiggP@fae0bbac7f79493abf73636a27934a4a.bitwarden.com +carLicense: UEA6A7 +departmentNumber: 4041 +employeeType: Employee +homePhone: +1 804 877-3763 +initials: P. T. +mobile: +1 804 136-1755 +pager: +1 804 763-2869 +roomNumber: 9013 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marjy Botyrius,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjy Botyrius +sn: Botyrius +description: This is Marjy Botyrius's description +facsimileTelephoneNumber: +1 415 996-3039 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 890-4262 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: BotyriuM +givenName: Marjy +mail: BotyriuM@11f1e40e9ec0473fb6e1f9f61a3e0fb3.bitwarden.com +carLicense: 2B9O8K +departmentNumber: 7070 +employeeType: Employee +homePhone: +1 415 376-6002 +initials: M. B. +mobile: +1 415 769-6185 +pager: +1 415 222-7552 +roomNumber: 8651 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sol Trefts,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sol Trefts +sn: Trefts +description: This is Sol Trefts's description +facsimileTelephoneNumber: +1 818 642-3631 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 821-2052 +title: Associate Payroll President +userPassword: Password1 +uid: TreftsS +givenName: Sol +mail: TreftsS@caee9adce3034f8297c376f15d554364.bitwarden.com +carLicense: 9M3REU +departmentNumber: 8196 +employeeType: Normal +homePhone: +1 818 384-3899 +initials: S. T. +mobile: +1 818 165-7501 +pager: +1 818 822-8063 +roomNumber: 8840 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhonda Hashimoto +sn: Hashimoto +description: This is Rhonda Hashimoto's description +facsimileTelephoneNumber: +1 510 231-8584 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 795-5254 +title: Associate Janitorial Punk +userPassword: Password1 +uid: HashimoR +givenName: Rhonda +mail: HashimoR@7a98f63f548e4181910f55a6615fe20b.bitwarden.com +carLicense: DPS1BP +departmentNumber: 9083 +employeeType: Employee +homePhone: +1 510 727-6232 +initials: R. H. +mobile: +1 510 793-2633 +pager: +1 510 420-3770 +roomNumber: 8074 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thaddeus Blezard +sn: Blezard +description: This is Thaddeus Blezard's description +facsimileTelephoneNumber: +1 804 349-6650 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 804 365-8195 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: BlezardT +givenName: Thaddeus +mail: BlezardT@b06576e7cc594af79143f743174735e0.bitwarden.com +carLicense: L8RMKS +departmentNumber: 3719 +employeeType: Contract +homePhone: +1 804 867-7471 +initials: T. B. +mobile: +1 804 567-7087 +pager: +1 804 853-5066 +roomNumber: 8877 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leigh Boulerice,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leigh Boulerice +sn: Boulerice +description: This is Leigh Boulerice's description +facsimileTelephoneNumber: +1 510 498-1701 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 893-9325 +title: Chief Peons Engineer +userPassword: Password1 +uid: BouleriL +givenName: Leigh +mail: BouleriL@ba60a08b258046f98633fd3c737e4f83.bitwarden.com +carLicense: BN2P1U +departmentNumber: 2867 +employeeType: Employee +homePhone: +1 510 955-3538 +initials: L. B. +mobile: +1 510 746-5087 +pager: +1 510 314-7273 +roomNumber: 9843 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Harpal Bashton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harpal Bashton +sn: Bashton +description: This is Harpal Bashton's description +facsimileTelephoneNumber: +1 415 223-1725 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 389-5147 +title: Associate Management Assistant +userPassword: Password1 +uid: BashtonH +givenName: Harpal +mail: BashtonH@cad99f43d8bb4bb385c87910c97d09f6.bitwarden.com +carLicense: WDJ578 +departmentNumber: 4963 +employeeType: Normal +homePhone: +1 415 491-2918 +initials: H. B. +mobile: +1 415 805-8559 +pager: +1 415 564-9100 +roomNumber: 9373 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Valeda Laliberte,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valeda Laliberte +sn: Laliberte +description: This is Valeda Laliberte's description +facsimileTelephoneNumber: +1 213 711-2957 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 112-9388 +title: Supreme Management Dictator +userPassword: Password1 +uid: LaliberV +givenName: Valeda +mail: LaliberV@50bab9f9cf1041a789372e5001d27214.bitwarden.com +carLicense: 1LYLMU +departmentNumber: 3619 +employeeType: Normal +homePhone: +1 213 591-2272 +initials: V. L. +mobile: +1 213 236-5275 +pager: +1 213 678-1294 +roomNumber: 8817 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Winnah Kabel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winnah Kabel +sn: Kabel +description: This is Winnah Kabel's description +facsimileTelephoneNumber: +1 510 667-5184 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 469-7590 +title: Chief Administrative Consultant +userPassword: Password1 +uid: KabelW +givenName: Winnah +mail: KabelW@ed183240d2274a60918dec7c056a1b86.bitwarden.com +carLicense: 24XX1R +departmentNumber: 9276 +employeeType: Employee +homePhone: +1 510 577-9845 +initials: W. K. +mobile: +1 510 400-2910 +pager: +1 510 828-8163 +roomNumber: 9756 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lecien Bunting,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lecien Bunting +sn: Bunting +description: This is Lecien Bunting's description +facsimileTelephoneNumber: +1 510 817-5616 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 510 444-3256 +title: Supreme Human Resources Figurehead +userPassword: Password1 +uid: BuntingL +givenName: Lecien +mail: BuntingL@fd2e8792325547b4a50dd52cda4bc63f.bitwarden.com +carLicense: B0UDFO +departmentNumber: 8267 +employeeType: Contract +homePhone: +1 510 780-3289 +initials: L. B. +mobile: +1 510 651-7478 +pager: +1 510 766-6371 +roomNumber: 8293 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Blancha TempleDowning,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blancha TempleDowning +sn: TempleDowning +description: This is Blancha TempleDowning's description +facsimileTelephoneNumber: +1 510 456-2318 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 766-6568 +title: Junior Peons Visionary +userPassword: Password1 +uid: TempleDB +givenName: Blancha +mail: TempleDB@ffcb266a0b9d4db986bd5378efac6255.bitwarden.com +carLicense: FLCL8V +departmentNumber: 9605 +employeeType: Employee +homePhone: +1 510 533-6119 +initials: B. T. +mobile: +1 510 287-5039 +pager: +1 510 898-7280 +roomNumber: 8188 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kyla Burton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kyla Burton +sn: Burton +description: This is Kyla Burton's description +facsimileTelephoneNumber: +1 804 770-5625 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 706-7814 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: BurtonK +givenName: Kyla +mail: BurtonK@9976848d05f44dc7b3c15447d59df348.bitwarden.com +carLicense: TFBMMN +departmentNumber: 8060 +employeeType: Normal +homePhone: +1 804 947-9681 +initials: K. B. +mobile: +1 804 312-5312 +pager: +1 804 164-7305 +roomNumber: 9885 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlos Maenpaa +sn: Maenpaa +description: This is Carlos Maenpaa's description +facsimileTelephoneNumber: +1 804 802-6886 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 804 970-8788 +title: Junior Payroll Developer +userPassword: Password1 +uid: MaenpaaC +givenName: Carlos +mail: MaenpaaC@903db400671047c5907d8ec3d0a66865.bitwarden.com +carLicense: QQV7DS +departmentNumber: 6755 +employeeType: Normal +homePhone: +1 804 349-9024 +initials: C. M. +mobile: +1 804 748-1936 +pager: +1 804 520-9707 +roomNumber: 9416 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ronna Faison,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronna Faison +sn: Faison +description: This is Ronna Faison's description +facsimileTelephoneNumber: +1 408 164-7128 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 405-9250 +title: Junior Payroll Artist +userPassword: Password1 +uid: FaisonR +givenName: Ronna +mail: FaisonR@4ec057135a5045f1a9989fae44b8b962.bitwarden.com +carLicense: UP9P5O +departmentNumber: 9678 +employeeType: Contract +homePhone: +1 408 787-9023 +initials: R. F. +mobile: +1 408 904-6014 +pager: +1 408 941-2015 +roomNumber: 9703 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andriette Waggoner +sn: Waggoner +description: This is Andriette Waggoner's description +facsimileTelephoneNumber: +1 510 846-7570 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 743-1749 +title: Chief Product Testing Technician +userPassword: Password1 +uid: WaggoneA +givenName: Andriette +mail: WaggoneA@033d1e3842054827934162f293371ad8.bitwarden.com +carLicense: C0AQBD +departmentNumber: 7839 +employeeType: Employee +homePhone: +1 510 785-2200 +initials: A. W. +mobile: +1 510 937-9943 +pager: +1 510 965-4407 +roomNumber: 9929 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nel Mohrmann,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nel Mohrmann +sn: Mohrmann +description: This is Nel Mohrmann's description +facsimileTelephoneNumber: +1 804 575-5099 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 937-2374 +title: Master Peons Writer +userPassword: Password1 +uid: MohrmanN +givenName: Nel +mail: MohrmanN@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com +carLicense: FVB4C3 +departmentNumber: 5565 +employeeType: Contract +homePhone: +1 804 150-4461 +initials: N. M. +mobile: +1 804 404-7816 +pager: +1 804 886-3247 +roomNumber: 8311 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Naresh Kok,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naresh Kok +sn: Kok +description: This is Naresh Kok's description +facsimileTelephoneNumber: +1 213 807-3264 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 171-9765 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: KokN +givenName: Naresh +mail: KokN@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com +carLicense: PTIBF1 +departmentNumber: 4682 +employeeType: Contract +homePhone: +1 213 643-2170 +initials: N. K. +mobile: +1 213 270-7248 +pager: +1 213 427-6218 +roomNumber: 8181 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cang Kinamon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cang Kinamon +sn: Kinamon +description: This is Cang Kinamon's description +facsimileTelephoneNumber: +1 510 145-9844 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 474-3903 +title: Chief Management Technician +userPassword: Password1 +uid: KinamonC +givenName: Cang +mail: KinamonC@0573bd112aca464284b0d9eac2753606.bitwarden.com +carLicense: HSKEBX +departmentNumber: 6785 +employeeType: Normal +homePhone: +1 510 502-2961 +initials: C. K. +mobile: +1 510 634-9275 +pager: +1 510 824-5481 +roomNumber: 9673 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amalea Snyder,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amalea Snyder +sn: Snyder +description: This is Amalea Snyder's description +facsimileTelephoneNumber: +1 206 213-7029 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 791-5240 +title: Associate Management Figurehead +userPassword: Password1 +uid: SnyderA +givenName: Amalea +mail: SnyderA@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com +carLicense: SX1KS7 +departmentNumber: 2792 +employeeType: Contract +homePhone: +1 206 265-9361 +initials: A. S. +mobile: +1 206 113-6585 +pager: +1 206 484-4508 +roomNumber: 8524 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Caryn Rizk,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caryn Rizk +sn: Rizk +description: This is Caryn Rizk's description +facsimileTelephoneNumber: +1 818 199-2385 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 580-8739 +title: Master Human Resources Punk +userPassword: Password1 +uid: RizkC +givenName: Caryn +mail: RizkC@c9a4b60fa1eb470eb513b6d959a476c0.bitwarden.com +carLicense: NKXQN2 +departmentNumber: 7080 +employeeType: Employee +homePhone: +1 818 716-9937 +initials: C. R. +mobile: +1 818 583-3481 +pager: +1 818 458-6294 +roomNumber: 8008 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Edel AbiAad,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edel AbiAad +sn: AbiAad +description: This is Edel AbiAad's description +facsimileTelephoneNumber: +1 818 366-9530 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 450-8071 +title: Chief Management Admin +userPassword: Password1 +uid: AbiAadE +givenName: Edel +mail: AbiAadE@9dc8b996c4c343d08d2e402f031d6954.bitwarden.com +carLicense: VVLH7M +departmentNumber: 4357 +employeeType: Contract +homePhone: +1 818 158-2354 +initials: E. A. +mobile: +1 818 533-3424 +pager: +1 818 294-2496 +roomNumber: 8243 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jey Dufresne,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jey Dufresne +sn: Dufresne +description: This is Jey Dufresne's description +facsimileTelephoneNumber: +1 206 984-1860 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 352-9331 +title: Master Management Czar +userPassword: Password1 +uid: DufresnJ +givenName: Jey +mail: DufresnJ@cebe5fd44d104e0c944a51b06ff453a6.bitwarden.com +carLicense: 6GLRQ5 +departmentNumber: 1854 +employeeType: Normal +homePhone: +1 206 340-3756 +initials: J. D. +mobile: +1 206 746-6332 +pager: +1 206 991-5174 +roomNumber: 9834 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kass Lyliston,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kass Lyliston +sn: Lyliston +description: This is Kass Lyliston's description +facsimileTelephoneNumber: +1 213 109-7299 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 594-9541 +title: Chief Peons Writer +userPassword: Password1 +uid: LylistoK +givenName: Kass +mail: LylistoK@db7691c9dca24eb7875f7a9259652b96.bitwarden.com +carLicense: YULLTF +departmentNumber: 5001 +employeeType: Employee +homePhone: +1 213 932-7992 +initials: K. L. +mobile: +1 213 793-8022 +pager: +1 213 880-4516 +roomNumber: 9000 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ervin Heiliger +sn: Heiliger +description: This is Ervin Heiliger's description +facsimileTelephoneNumber: +1 408 591-7442 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 408 477-8614 +title: Associate Janitorial Figurehead +userPassword: Password1 +uid: HeiligeE +givenName: Ervin +mail: HeiligeE@4ac57cc4c8df40e5be8ca01811d8b65f.bitwarden.com +carLicense: MLQ9KB +departmentNumber: 6607 +employeeType: Contract +homePhone: +1 408 365-6152 +initials: E. H. +mobile: +1 408 679-6211 +pager: +1 408 297-7377 +roomNumber: 9263 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gabie Autoquote,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabie Autoquote +sn: Autoquote +description: This is Gabie Autoquote's description +facsimileTelephoneNumber: +1 415 955-7126 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 444-9026 +title: Supreme Management Visionary +userPassword: Password1 +uid: AutoquoG +givenName: Gabie +mail: AutoquoG@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com +carLicense: 31TFJ9 +departmentNumber: 7561 +employeeType: Contract +homePhone: +1 415 172-7180 +initials: G. A. +mobile: +1 415 966-1031 +pager: +1 415 807-5904 +roomNumber: 9966 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vina Sebastian,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vina Sebastian +sn: Sebastian +description: This is Vina Sebastian's description +facsimileTelephoneNumber: +1 213 109-5720 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 524-8688 +title: Junior Peons Warrior +userPassword: Password1 +uid: SebastiV +givenName: Vina +mail: SebastiV@a233dd701c7c4e6f923dfda0c8035d34.bitwarden.com +carLicense: R5XD65 +departmentNumber: 1668 +employeeType: Contract +homePhone: +1 213 266-4763 +initials: V. S. +mobile: +1 213 564-5519 +pager: +1 213 781-5710 +roomNumber: 8256 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Annabella Blasing,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annabella Blasing +sn: Blasing +description: This is Annabella Blasing's description +facsimileTelephoneNumber: +1 213 396-3012 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 902-4241 +title: Master Janitorial Sales Rep +userPassword: Password1 +uid: BlasingA +givenName: Annabella +mail: BlasingA@aea15ef0456d4cd2988add4323d0edb7.bitwarden.com +carLicense: 172ED6 +departmentNumber: 4456 +employeeType: Employee +homePhone: +1 213 707-6165 +initials: A. B. +mobile: +1 213 739-2168 +pager: +1 213 733-3356 +roomNumber: 9694 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nicolette Spann,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolette Spann +sn: Spann +description: This is Nicolette Spann's description +facsimileTelephoneNumber: +1 415 652-7781 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 704-4101 +title: Master Human Resources Director +userPassword: Password1 +uid: SpannN +givenName: Nicolette +mail: SpannN@b705e8d79a484d328a25479946645112.bitwarden.com +carLicense: KBM228 +departmentNumber: 9787 +employeeType: Normal +homePhone: +1 415 100-5944 +initials: N. S. +mobile: +1 415 452-9036 +pager: +1 415 369-8491 +roomNumber: 9204 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Blancha Bradee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blancha Bradee +sn: Bradee +description: This is Blancha Bradee's description +facsimileTelephoneNumber: +1 415 487-6988 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 358-5739 +title: Master Product Development Technician +userPassword: Password1 +uid: BradeeB +givenName: Blancha +mail: BradeeB@32fe0278ad444a168aa2715b611540e7.bitwarden.com +carLicense: 7VCFSE +departmentNumber: 5944 +employeeType: Contract +homePhone: +1 415 257-2050 +initials: B. B. +mobile: +1 415 559-7813 +pager: +1 415 222-9912 +roomNumber: 9658 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tamarah Solheim,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamarah Solheim +sn: Solheim +description: This is Tamarah Solheim's description +facsimileTelephoneNumber: +1 213 746-9808 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 865-9880 +title: Associate Administrative Technician +userPassword: Password1 +uid: SolheimT +givenName: Tamarah +mail: SolheimT@97b4c3b829464aa0bb43fe8a8ccef3d0.bitwarden.com +carLicense: JXJ237 +departmentNumber: 7538 +employeeType: Employee +homePhone: +1 213 747-1593 +initials: T. S. +mobile: +1 213 455-9756 +pager: +1 213 805-7065 +roomNumber: 8608 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natascha Colquhoun +sn: Colquhoun +description: This is Natascha Colquhoun's description +facsimileTelephoneNumber: +1 510 319-2595 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 725-8537 +title: Associate Payroll Visionary +userPassword: Password1 +uid: ColquhoN +givenName: Natascha +mail: ColquhoN@24af3dac7e7c4580ae1949e9dbc7b5bd.bitwarden.com +carLicense: IDKQGI +departmentNumber: 9551 +employeeType: Employee +homePhone: +1 510 601-7529 +initials: N. C. +mobile: +1 510 749-7758 +pager: +1 510 424-7706 +roomNumber: 9071 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cleo Depew,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cleo Depew +sn: Depew +description: This is Cleo Depew's description +facsimileTelephoneNumber: +1 213 437-6800 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 213 942-1344 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: DepewC +givenName: Cleo +mail: DepewC@eea1742874a24c018dad0a15722dcd0b.bitwarden.com +carLicense: DGYPCQ +departmentNumber: 9753 +employeeType: Normal +homePhone: +1 213 165-6226 +initials: C. D. +mobile: +1 213 712-8406 +pager: +1 213 791-4798 +roomNumber: 8020 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gordon Galligan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gordon Galligan +sn: Galligan +description: This is Gordon Galligan's description +facsimileTelephoneNumber: +1 408 290-5994 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 496-3146 +title: Associate Peons Engineer +userPassword: Password1 +uid: GalligaG +givenName: Gordon +mail: GalligaG@07bd96f3cb0145a4932b94a7fa79769c.bitwarden.com +carLicense: B5YSSV +departmentNumber: 6774 +employeeType: Employee +homePhone: +1 408 343-1464 +initials: G. G. +mobile: +1 408 499-1846 +pager: +1 408 151-3289 +roomNumber: 9017 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blanca Tiseo +sn: Tiseo +description: This is Blanca Tiseo's description +facsimileTelephoneNumber: +1 408 249-9382 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 919-7230 +title: Master Janitorial Assistant +userPassword: Password1 +uid: TiseoB +givenName: Blanca +mail: TiseoB@4c905761dfd345f0bec1fb45af8eef64.bitwarden.com +carLicense: KKAIYQ +departmentNumber: 3671 +employeeType: Employee +homePhone: +1 408 726-4766 +initials: B. T. +mobile: +1 408 805-2334 +pager: +1 408 224-1454 +roomNumber: 9688 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Terra Brookhart,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terra Brookhart +sn: Brookhart +description: This is Terra Brookhart's description +facsimileTelephoneNumber: +1 213 589-3358 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 871-1120 +title: Chief Product Testing Madonna +userPassword: Password1 +uid: BrookhaT +givenName: Terra +mail: BrookhaT@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com +carLicense: H77VTM +departmentNumber: 1520 +employeeType: Contract +homePhone: +1 213 425-6609 +initials: T. B. +mobile: +1 213 456-1307 +pager: +1 213 325-1071 +roomNumber: 9112 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elladine Wegrowicz +sn: Wegrowicz +description: This is Elladine Wegrowicz's description +facsimileTelephoneNumber: +1 206 378-7889 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 493-2925 +title: Supreme Peons Fellow +userPassword: Password1 +uid: WegrowiE +givenName: Elladine +mail: WegrowiE@d275905ea7174c8cab687a1c10573cba.bitwarden.com +carLicense: 40NA03 +departmentNumber: 1653 +employeeType: Employee +homePhone: +1 206 952-5996 +initials: E. W. +mobile: +1 206 328-6662 +pager: +1 206 219-9890 +roomNumber: 9562 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hellen Benzick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hellen Benzick +sn: Benzick +description: This is Hellen Benzick's description +facsimileTelephoneNumber: +1 206 104-6562 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 206 453-8362 +title: Chief Payroll Assistant +userPassword: Password1 +uid: BenzickH +givenName: Hellen +mail: BenzickH@eb3f0e8c75a34fb08e8613d84752c88e.bitwarden.com +carLicense: LGT1H3 +departmentNumber: 5545 +employeeType: Normal +homePhone: +1 206 387-5427 +initials: H. B. +mobile: +1 206 792-3977 +pager: +1 206 126-7682 +roomNumber: 9563 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jenda Serrano,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenda Serrano +sn: Serrano +description: This is Jenda Serrano's description +facsimileTelephoneNumber: +1 408 579-2401 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 213-9593 +title: Junior Peons Warrior +userPassword: Password1 +uid: SerranoJ +givenName: Jenda +mail: SerranoJ@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com +carLicense: A76DWJ +departmentNumber: 6471 +employeeType: Contract +homePhone: +1 408 607-6800 +initials: J. S. +mobile: +1 408 578-8025 +pager: +1 408 178-3903 +roomNumber: 8330 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chrystal Draves,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chrystal Draves +sn: Draves +description: This is Chrystal Draves's description +facsimileTelephoneNumber: +1 213 330-5106 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 601-5816 +title: Junior Management Sales Rep +userPassword: Password1 +uid: DravesC +givenName: Chrystal +mail: DravesC@7dc4d22df72d4b7ea867e84e8a1a18c9.bitwarden.com +carLicense: EM7MML +departmentNumber: 4174 +employeeType: Normal +homePhone: +1 213 587-2231 +initials: C. D. +mobile: +1 213 673-5580 +pager: +1 213 793-3371 +roomNumber: 9263 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mounir Wadsworth +sn: Wadsworth +description: This is Mounir Wadsworth's description +facsimileTelephoneNumber: +1 415 272-7315 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 467-3591 +title: Junior Janitorial Czar +userPassword: Password1 +uid: WadsworM +givenName: Mounir +mail: WadsworM@012a5cfab6324107b0814d36b8f41041.bitwarden.com +carLicense: 9VE3LT +departmentNumber: 1014 +employeeType: Contract +homePhone: +1 415 466-6388 +initials: M. W. +mobile: +1 415 275-5949 +pager: +1 415 242-9817 +roomNumber: 9071 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphna Bedoya +sn: Bedoya +description: This is Daphna Bedoya's description +facsimileTelephoneNumber: +1 510 908-5495 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 571-9602 +title: Master Human Resources Assistant +userPassword: Password1 +uid: BedoyaD +givenName: Daphna +mail: BedoyaD@5bf44110ed3743de8af47997ebc8b9fe.bitwarden.com +carLicense: HQNHV2 +departmentNumber: 8036 +employeeType: Normal +homePhone: +1 510 433-8434 +initials: D. B. +mobile: +1 510 652-7927 +pager: +1 510 344-9063 +roomNumber: 9142 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nicola Dallago,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicola Dallago +sn: Dallago +description: This is Nicola Dallago's description +facsimileTelephoneNumber: +1 408 106-4803 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 132-9248 +title: Junior Management Developer +userPassword: Password1 +uid: DallagoN +givenName: Nicola +mail: DallagoN@32dba15e87f24180a52c2c7b3d16eedf.bitwarden.com +carLicense: 6V5E1E +departmentNumber: 1594 +employeeType: Contract +homePhone: +1 408 850-8062 +initials: N. D. +mobile: +1 408 894-2336 +pager: +1 408 801-7661 +roomNumber: 9061 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gisele Zattiero,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gisele Zattiero +sn: Zattiero +description: This is Gisele Zattiero's description +facsimileTelephoneNumber: +1 206 336-2558 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 184-3261 +title: Master Payroll Technician +userPassword: Password1 +uid: ZattierG +givenName: Gisele +mail: ZattierG@b1bef6e7419544e590275224d59e367b.bitwarden.com +carLicense: EP9ICJ +departmentNumber: 1578 +employeeType: Normal +homePhone: +1 206 576-6938 +initials: G. Z. +mobile: +1 206 877-3071 +pager: +1 206 780-3090 +roomNumber: 9069 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nora Hishchak,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nora Hishchak +sn: Hishchak +description: This is Nora Hishchak's description +facsimileTelephoneNumber: +1 213 116-2840 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 838-7526 +title: Supreme Peons Writer +userPassword: Password1 +uid: HishchaN +givenName: Nora +mail: HishchaN@b968f655b96e4ab58fcc2e120f71a7b7.bitwarden.com +carLicense: JXNACA +departmentNumber: 8195 +employeeType: Employee +homePhone: +1 213 195-2502 +initials: N. H. +mobile: +1 213 463-8440 +pager: +1 213 271-8495 +roomNumber: 8919 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jagat Luszczek +sn: Luszczek +description: This is Jagat Luszczek's description +facsimileTelephoneNumber: +1 213 509-5246 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 562-5926 +title: Associate Product Testing Czar +userPassword: Password1 +uid: LuszczeJ +givenName: Jagat +mail: LuszczeJ@742fffab1692421a8cd639c32b1e9444.bitwarden.com +carLicense: GNX981 +departmentNumber: 4687 +employeeType: Normal +homePhone: +1 213 155-5602 +initials: J. L. +mobile: +1 213 266-2489 +pager: +1 213 924-6101 +roomNumber: 9969 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Merrili Janelle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrili Janelle +sn: Janelle +description: This is Merrili Janelle's description +facsimileTelephoneNumber: +1 415 226-9606 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 374-3586 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: JanelleM +givenName: Merrili +mail: JanelleM@ef3d7ce4cf844052b389bbe166c531bc.bitwarden.com +carLicense: ROXIYP +departmentNumber: 6461 +employeeType: Employee +homePhone: +1 415 392-4548 +initials: M. J. +mobile: +1 415 657-2698 +pager: +1 415 841-8018 +roomNumber: 8554 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Claire Valia,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claire Valia +sn: Valia +description: This is Claire Valia's description +facsimileTelephoneNumber: +1 408 961-3827 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 487-2862 +title: Chief Payroll Director +userPassword: Password1 +uid: ValiaC +givenName: Claire +mail: ValiaC@bd9a2e982f524b64b04ed8892de43767.bitwarden.com +carLicense: B0BTYT +departmentNumber: 9365 +employeeType: Employee +homePhone: +1 408 897-1639 +initials: C. V. +mobile: +1 408 741-9695 +pager: +1 408 584-5037 +roomNumber: 9675 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carol Vonderhaar +sn: Vonderhaar +description: This is Carol Vonderhaar's description +facsimileTelephoneNumber: +1 408 267-2564 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 408 758-5925 +title: Master Administrative Assistant +userPassword: Password1 +uid: VonderhC +givenName: Carol +mail: VonderhC@b4636d7df71f4835817a7714801280f8.bitwarden.com +carLicense: 91X8PX +departmentNumber: 1222 +employeeType: Normal +homePhone: +1 408 746-6100 +initials: C. V. +mobile: +1 408 559-5194 +pager: +1 408 592-9937 +roomNumber: 8959 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Farica Horwitz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farica Horwitz +sn: Horwitz +description: This is Farica Horwitz's description +facsimileTelephoneNumber: +1 818 448-3241 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 327-8655 +title: Junior Payroll Grunt +userPassword: Password1 +uid: HorwitzF +givenName: Farica +mail: HorwitzF@1a03988f40a349c1abd53f73e0e2d871.bitwarden.com +carLicense: BN2X4O +departmentNumber: 2598 +employeeType: Contract +homePhone: +1 818 110-1155 +initials: F. H. +mobile: +1 818 322-2310 +pager: +1 818 373-7975 +roomNumber: 8301 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gregory Bluethner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gregory Bluethner +sn: Bluethner +description: This is Gregory Bluethner's description +facsimileTelephoneNumber: +1 415 840-2114 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 309-1544 +title: Master Peons Punk +userPassword: Password1 +uid: BluethnG +givenName: Gregory +mail: BluethnG@b23ade701c9b44bd8b1f8301f8f9850d.bitwarden.com +carLicense: LKW12O +departmentNumber: 1714 +employeeType: Employee +homePhone: +1 415 377-4494 +initials: G. B. +mobile: +1 415 798-4595 +pager: +1 415 359-1541 +roomNumber: 9737 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wanda Patchcor +sn: Patchcor +description: This is Wanda Patchcor's description +facsimileTelephoneNumber: +1 206 109-1608 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 891-6545 +title: Master Product Testing Technician +userPassword: Password1 +uid: PatchcoW +givenName: Wanda +mail: PatchcoW@1114ec94893c4de2b94b261fe2161258.bitwarden.com +carLicense: IG0KEC +departmentNumber: 6492 +employeeType: Contract +homePhone: +1 206 755-6770 +initials: W. P. +mobile: +1 206 707-3787 +pager: +1 206 778-7342 +roomNumber: 9793 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wenonah Thaxton +sn: Thaxton +description: This is Wenonah Thaxton's description +facsimileTelephoneNumber: +1 804 845-7109 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 578-4056 +title: Master Janitorial Evangelist +userPassword: Password1 +uid: ThaxtonW +givenName: Wenonah +mail: ThaxtonW@d878ac5b0d4241d7915c9954538bd502.bitwarden.com +carLicense: Q7W17T +departmentNumber: 7375 +employeeType: Employee +homePhone: +1 804 700-5790 +initials: W. T. +mobile: +1 804 987-8693 +pager: +1 804 644-4551 +roomNumber: 8859 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatrice Dikaitis +sn: Dikaitis +description: This is Beatrice Dikaitis's description +facsimileTelephoneNumber: +1 510 535-2104 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 964-2863 +title: Associate Administrative Visionary +userPassword: Password1 +uid: DikaitiB +givenName: Beatrice +mail: DikaitiB@28fd72e4e1764c5c81212e44cd7113d3.bitwarden.com +carLicense: TAJ0FF +departmentNumber: 2112 +employeeType: Employee +homePhone: +1 510 667-5282 +initials: B. D. +mobile: +1 510 815-6749 +pager: +1 510 773-4376 +roomNumber: 8488 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Liviu Hume,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liviu Hume +sn: Hume +description: This is Liviu Hume's description +facsimileTelephoneNumber: +1 804 262-3596 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 804 131-3316 +title: Associate Payroll Czar +userPassword: Password1 +uid: HumeL +givenName: Liviu +mail: HumeL@f6f62c454ca5497f934797aa1b8b4a27.bitwarden.com +carLicense: TIQO8V +departmentNumber: 9721 +employeeType: Contract +homePhone: +1 804 463-5932 +initials: L. H. +mobile: +1 804 387-4910 +pager: +1 804 373-1660 +roomNumber: 8170 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Angelie Heile,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angelie Heile +sn: Heile +description: This is Angelie Heile's description +facsimileTelephoneNumber: +1 510 141-7110 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 438-8463 +title: Master Peons Technician +userPassword: Password1 +uid: HeileA +givenName: Angelie +mail: HeileA@3dcbee9a39f24536abfacdb314d6aedd.bitwarden.com +carLicense: XLPQDY +departmentNumber: 5787 +employeeType: Normal +homePhone: +1 510 621-4038 +initials: A. H. +mobile: +1 510 846-1248 +pager: +1 510 975-3001 +roomNumber: 9254 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tatiania Delage,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatiania Delage +sn: Delage +description: This is Tatiania Delage's description +facsimileTelephoneNumber: +1 415 512-1283 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 371-4456 +title: Associate Peons Czar +userPassword: Password1 +uid: DelageT +givenName: Tatiania +mail: DelageT@5393bc67f8ee409593915ca305198b36.bitwarden.com +carLicense: NC0G5T +departmentNumber: 3890 +employeeType: Contract +homePhone: +1 415 230-7865 +initials: T. D. +mobile: +1 415 399-6834 +pager: +1 415 897-6196 +roomNumber: 8226 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Celisse Murdoch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celisse Murdoch +sn: Murdoch +description: This is Celisse Murdoch's description +facsimileTelephoneNumber: +1 818 556-4775 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 818 144-1107 +title: Associate Management Fellow +userPassword: Password1 +uid: MurdochC +givenName: Celisse +mail: MurdochC@8f1eaf49a29e432392cfb7c9cddefdee.bitwarden.com +carLicense: HQO54O +departmentNumber: 9642 +employeeType: Normal +homePhone: +1 818 568-4422 +initials: C. M. +mobile: +1 818 340-7085 +pager: +1 818 298-8587 +roomNumber: 9072 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=NamKiet Phillip,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: NamKiet Phillip +sn: Phillip +description: This is NamKiet Phillip's description +facsimileTelephoneNumber: +1 804 745-3068 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 624-8408 +title: Associate Management Developer +userPassword: Password1 +uid: PhillipN +givenName: NamKiet +mail: PhillipN@4bf0b66c2c324315954b77c93acd3366.bitwarden.com +carLicense: BESSUL +departmentNumber: 2475 +employeeType: Employee +homePhone: +1 804 480-3861 +initials: N. P. +mobile: +1 804 126-6039 +pager: +1 804 653-8021 +roomNumber: 8532 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christyna Kuruppillai +sn: Kuruppillai +description: This is Christyna Kuruppillai's description +facsimileTelephoneNumber: +1 818 239-7896 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 611-8395 +title: Associate Administrative Artist +userPassword: Password1 +uid: KuruppiC +givenName: Christyna +mail: KuruppiC@b549d25d2e83426ba75b6cd3682958b0.bitwarden.com +carLicense: 8R2G6P +departmentNumber: 6198 +employeeType: Contract +homePhone: +1 818 457-2338 +initials: C. K. +mobile: +1 818 266-9527 +pager: +1 818 150-8553 +roomNumber: 8835 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JamesMichael Pankiw +sn: Pankiw +description: This is JamesMichael Pankiw's description +facsimileTelephoneNumber: +1 206 212-3704 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 330-6924 +title: Supreme Payroll Artist +userPassword: Password1 +uid: PankiwJ +givenName: JamesMichael +mail: PankiwJ@cd18bcce2da342b59f0e8c980723ee09.bitwarden.com +carLicense: DT474A +departmentNumber: 7009 +employeeType: Contract +homePhone: +1 206 152-2719 +initials: J. P. +mobile: +1 206 439-1122 +pager: +1 206 645-7047 +roomNumber: 9614 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Merrili Wierzba,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrili Wierzba +sn: Wierzba +description: This is Merrili Wierzba's description +facsimileTelephoneNumber: +1 804 476-9952 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 671-7842 +title: Associate Product Development Janitor +userPassword: Password1 +uid: WierzbaM +givenName: Merrili +mail: WierzbaM@536c0f4fa5054c52a7d0385b00e9be00.bitwarden.com +carLicense: 0R5OAD +departmentNumber: 8587 +employeeType: Contract +homePhone: +1 804 728-7249 +initials: M. W. +mobile: +1 804 239-5677 +pager: +1 804 154-9426 +roomNumber: 9532 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kittie Gabbai,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kittie Gabbai +sn: Gabbai +description: This is Kittie Gabbai's description +facsimileTelephoneNumber: +1 408 115-5387 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 645-3494 +title: Chief Peons Evangelist +userPassword: Password1 +uid: GabbaiK +givenName: Kittie +mail: GabbaiK@3804896e582c4b3cac297cdd6774c60b.bitwarden.com +carLicense: T7O3XO +departmentNumber: 1890 +employeeType: Normal +homePhone: +1 408 420-9400 +initials: K. G. +mobile: +1 408 404-3089 +pager: +1 408 548-7707 +roomNumber: 9809 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Timi Hendriks,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Timi Hendriks +sn: Hendriks +description: This is Timi Hendriks's description +facsimileTelephoneNumber: +1 408 119-9262 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 230-6953 +title: Master Payroll Visionary +userPassword: Password1 +uid: HendrikT +givenName: Timi +mail: HendrikT@4054b4da0e93482c9b8c467cfec2cd04.bitwarden.com +carLicense: FIVA0X +departmentNumber: 7709 +employeeType: Employee +homePhone: +1 408 636-8247 +initials: T. H. +mobile: +1 408 427-9176 +pager: +1 408 744-5044 +roomNumber: 9184 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Deana Cargnelli,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deana Cargnelli +sn: Cargnelli +description: This is Deana Cargnelli's description +facsimileTelephoneNumber: +1 415 291-8209 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 639-4071 +title: Supreme Management Punk +userPassword: Password1 +uid: CargnelD +givenName: Deana +mail: CargnelD@34778f743f144f1c8feb88659969b135.bitwarden.com +carLicense: S25JBV +departmentNumber: 8625 +employeeType: Employee +homePhone: +1 415 828-7756 +initials: D. C. +mobile: +1 415 315-2276 +pager: +1 415 900-7044 +roomNumber: 9742 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lizzie Petro,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lizzie Petro +sn: Petro +description: This is Lizzie Petro's description +facsimileTelephoneNumber: +1 804 690-9485 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 804 109-2474 +title: Associate Product Development Fellow +userPassword: Password1 +uid: PetroL +givenName: Lizzie +mail: PetroL@3e85ba8a9fd94b8ea8a79fbaf36e29c9.bitwarden.com +carLicense: JEQY95 +departmentNumber: 1369 +employeeType: Normal +homePhone: +1 804 250-9852 +initials: L. P. +mobile: +1 804 714-9354 +pager: +1 804 593-9102 +roomNumber: 8540 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Costanza Kristjanson +sn: Kristjanson +description: This is Costanza Kristjanson's description +facsimileTelephoneNumber: +1 804 680-1731 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 804 380-6023 +title: Associate Janitorial Czar +userPassword: Password1 +uid: KristjaC +givenName: Costanza +mail: KristjaC@a5c8780c86ee42949bb714c84dc95d44.bitwarden.com +carLicense: E7A2UH +departmentNumber: 7524 +employeeType: Contract +homePhone: +1 804 867-5779 +initials: C. K. +mobile: +1 804 739-7494 +pager: +1 804 477-3625 +roomNumber: 9222 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardyth Dunajski +sn: Dunajski +description: This is Ardyth Dunajski's description +facsimileTelephoneNumber: +1 415 670-1344 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 601-6771 +title: Associate Product Testing Grunt +userPassword: Password1 +uid: DunajskA +givenName: Ardyth +mail: DunajskA@50ccd4f167194cf699a420ec04455c31.bitwarden.com +carLicense: 576VB2 +departmentNumber: 1114 +employeeType: Contract +homePhone: +1 415 782-3146 +initials: A. D. +mobile: +1 415 382-1803 +pager: +1 415 910-1730 +roomNumber: 8104 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lecien Trachsel +sn: Trachsel +description: This is Lecien Trachsel's description +facsimileTelephoneNumber: +1 213 885-5668 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 584-5777 +title: Chief Product Testing Engineer +userPassword: Password1 +uid: TrachseL +givenName: Lecien +mail: TrachseL@a922ba05488e401e9633fbd1813d714f.bitwarden.com +carLicense: JQDVKX +departmentNumber: 6029 +employeeType: Normal +homePhone: +1 213 285-4421 +initials: L. T. +mobile: +1 213 164-2559 +pager: +1 213 614-6731 +roomNumber: 8841 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shyam Johnsen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shyam Johnsen +sn: Johnsen +description: This is Shyam Johnsen's description +facsimileTelephoneNumber: +1 804 399-9506 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 804 828-6092 +title: Associate Product Development Technician +userPassword: Password1 +uid: JohnsenS +givenName: Shyam +mail: JohnsenS@abac2f30214948ccb965a208d10fe9a2.bitwarden.com +carLicense: 31ABE9 +departmentNumber: 8555 +employeeType: Employee +homePhone: +1 804 951-2166 +initials: S. J. +mobile: +1 804 898-1953 +pager: +1 804 905-8510 +roomNumber: 9408 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Valencia Tomlinson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valencia Tomlinson +sn: Tomlinson +description: This is Valencia Tomlinson's description +facsimileTelephoneNumber: +1 804 737-7780 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 747-5311 +title: Chief Management Admin +userPassword: Password1 +uid: TomlinsV +givenName: Valencia +mail: TomlinsV@e903049a2f314871bf6a031a14c79162.bitwarden.com +carLicense: IVHIRJ +departmentNumber: 3049 +employeeType: Contract +homePhone: +1 804 680-4513 +initials: V. T. +mobile: +1 804 681-6545 +pager: +1 804 896-5547 +roomNumber: 8595 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdalene Bonahoom +sn: Bonahoom +description: This is Magdalene Bonahoom's description +facsimileTelephoneNumber: +1 408 778-3794 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 367-2672 +title: Chief Human Resources Artist +userPassword: Password1 +uid: BonahooM +givenName: Magdalene +mail: BonahooM@e49df1f8a4c2443e88b68c678fa533db.bitwarden.com +carLicense: DSQ97S +departmentNumber: 8672 +employeeType: Employee +homePhone: +1 408 227-9816 +initials: M. B. +mobile: +1 408 940-9976 +pager: +1 408 906-8240 +roomNumber: 9787 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Frederic Scurlock,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frederic Scurlock +sn: Scurlock +description: This is Frederic Scurlock's description +facsimileTelephoneNumber: +1 818 270-2856 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 303-4370 +title: Master Administrative Assistant +userPassword: Password1 +uid: ScurlocF +givenName: Frederic +mail: ScurlocF@52d447bfc2464a51a20925b35098fffa.bitwarden.com +carLicense: TKF4JK +departmentNumber: 7577 +employeeType: Employee +homePhone: +1 818 880-2568 +initials: F. S. +mobile: +1 818 299-5558 +pager: +1 818 687-2808 +roomNumber: 9851 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Guillema McGorman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guillema McGorman +sn: McGorman +description: This is Guillema McGorman's description +facsimileTelephoneNumber: +1 213 307-4256 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 788-1316 +title: Master Product Development Artist +userPassword: Password1 +uid: McGormaG +givenName: Guillema +mail: McGormaG@47840548eaea4456bf120d7525ee74e1.bitwarden.com +carLicense: 3GN6YH +departmentNumber: 2546 +employeeType: Normal +homePhone: +1 213 789-6581 +initials: G. M. +mobile: +1 213 458-2397 +pager: +1 213 588-4789 +roomNumber: 9868 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jenda Ostarello,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenda Ostarello +sn: Ostarello +description: This is Jenda Ostarello's description +facsimileTelephoneNumber: +1 415 554-5009 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 459-1799 +title: Master Payroll Architect +userPassword: Password1 +uid: OstarelJ +givenName: Jenda +mail: OstarelJ@ec5b72978f304decbd01b86ff428bb78.bitwarden.com +carLicense: YVPRTK +departmentNumber: 3056 +employeeType: Normal +homePhone: +1 415 316-8055 +initials: J. O. +mobile: +1 415 547-7911 +pager: +1 415 797-6926 +roomNumber: 9217 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rivkah Neywick,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rivkah Neywick +sn: Neywick +description: This is Rivkah Neywick's description +facsimileTelephoneNumber: +1 818 617-2516 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 858-8369 +title: Supreme Peons Developer +userPassword: Password1 +uid: NeywickR +givenName: Rivkah +mail: NeywickR@d153ea0cdea446bcae59fcfadb7ae1da.bitwarden.com +carLicense: 3B0S80 +departmentNumber: 4036 +employeeType: Employee +homePhone: +1 818 838-3377 +initials: R. N. +mobile: +1 818 981-4241 +pager: +1 818 207-2591 +roomNumber: 8247 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nathan Moeschet +sn: Moeschet +description: This is Nathan Moeschet's description +facsimileTelephoneNumber: +1 206 564-3655 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 349-6710 +title: Associate Product Testing Figurehead +userPassword: Password1 +uid: MoescheN +givenName: Nathan +mail: MoescheN@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com +carLicense: SB8M30 +departmentNumber: 8561 +employeeType: Contract +homePhone: +1 206 261-2127 +initials: N. M. +mobile: +1 206 121-2143 +pager: +1 206 319-6696 +roomNumber: 9588 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Coursdev Angeli,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coursdev Angeli +sn: Angeli +description: This is Coursdev Angeli's description +facsimileTelephoneNumber: +1 818 469-4363 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 972-6501 +title: Chief Peons Vice President +userPassword: Password1 +uid: AngeliC +givenName: Coursdev +mail: AngeliC@034a5e94f32b417b81eaf2086bd44c48.bitwarden.com +carLicense: SDWJTQ +departmentNumber: 3842 +employeeType: Contract +homePhone: +1 818 883-6929 +initials: C. A. +mobile: +1 818 950-3389 +pager: +1 818 900-7555 +roomNumber: 9347 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dix Ewanchyna +sn: Ewanchyna +description: This is Dix Ewanchyna's description +facsimileTelephoneNumber: +1 213 762-2495 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 965-4253 +title: Master Product Testing Vice President +userPassword: Password1 +uid: EwanchyD +givenName: Dix +mail: EwanchyD@7dbdfd93e54449ecbd6ac06f80575902.bitwarden.com +carLicense: T4P21F +departmentNumber: 7272 +employeeType: Contract +homePhone: +1 213 555-5845 +initials: D. E. +mobile: +1 213 701-4908 +pager: +1 213 902-4768 +roomNumber: 9636 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dari Ersil,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dari Ersil +sn: Ersil +description: This is Dari Ersil's description +facsimileTelephoneNumber: +1 804 839-7844 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 804 359-4370 +title: Supreme Payroll Director +userPassword: Password1 +uid: ErsilD +givenName: Dari +mail: ErsilD@a7dbc414c7f248bda6ef29312aa17345.bitwarden.com +carLicense: XVXN01 +departmentNumber: 3143 +employeeType: Contract +homePhone: +1 804 363-1839 +initials: D. E. +mobile: +1 804 504-6783 +pager: +1 804 986-3746 +roomNumber: 9010 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marjolein Stephens,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjolein Stephens +sn: Stephens +description: This is Marjolein Stephens's description +facsimileTelephoneNumber: +1 408 376-1864 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 420-4295 +title: Junior Product Development Manager +userPassword: Password1 +uid: StephenM +givenName: Marjolein +mail: StephenM@569cc4df4bc94c2683e21477219c08c2.bitwarden.com +carLicense: BLEFIO +departmentNumber: 8872 +employeeType: Contract +homePhone: +1 408 201-4725 +initials: M. S. +mobile: +1 408 842-9477 +pager: +1 408 348-2883 +roomNumber: 8221 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Doro Vempati,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doro Vempati +sn: Vempati +description: This is Doro Vempati's description +facsimileTelephoneNumber: +1 206 290-7750 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 734-2748 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: VempatiD +givenName: Doro +mail: VempatiD@f167cff0138c406287e1a7234664f7ea.bitwarden.com +carLicense: 82HYI6 +departmentNumber: 5462 +employeeType: Normal +homePhone: +1 206 624-3423 +initials: D. V. +mobile: +1 206 788-5526 +pager: +1 206 989-2672 +roomNumber: 9594 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sono Pokrifcak,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sono Pokrifcak +sn: Pokrifcak +description: This is Sono Pokrifcak's description +facsimileTelephoneNumber: +1 408 384-7955 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 256-2637 +title: Associate Management Mascot +userPassword: Password1 +uid: PokrifcS +givenName: Sono +mail: PokrifcS@39597667d519425da44c2231f7169438.bitwarden.com +carLicense: ALJY33 +departmentNumber: 8743 +employeeType: Contract +homePhone: +1 408 441-4407 +initials: S. P. +mobile: +1 408 545-6864 +pager: +1 408 984-7051 +roomNumber: 9472 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Moniek Bergado,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moniek Bergado +sn: Bergado +description: This is Moniek Bergado's description +facsimileTelephoneNumber: +1 818 980-4217 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 818 578-1862 +title: Chief Administrative Architect +userPassword: Password1 +uid: BergadoM +givenName: Moniek +mail: BergadoM@866f4a15cdb24c75a67bad9f00bdce9e.bitwarden.com +carLicense: YUE22D +departmentNumber: 2920 +employeeType: Contract +homePhone: +1 818 457-2666 +initials: M. B. +mobile: +1 818 129-6450 +pager: +1 818 182-3273 +roomNumber: 9732 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=KwokWa Moriarty,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KwokWa Moriarty +sn: Moriarty +description: This is KwokWa Moriarty's description +facsimileTelephoneNumber: +1 206 757-5896 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 206 898-5886 +title: Supreme Management Fellow +userPassword: Password1 +uid: MoriartK +givenName: KwokWa +mail: MoriartK@d78ef3d7391c4330a3c44a2851048fb8.bitwarden.com +carLicense: KBKTA9 +departmentNumber: 5951 +employeeType: Normal +homePhone: +1 206 278-1840 +initials: K. M. +mobile: +1 206 691-3962 +pager: +1 206 838-6710 +roomNumber: 8919 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilhelmina Bellew +sn: Bellew +description: This is Wilhelmina Bellew's description +facsimileTelephoneNumber: +1 804 625-3502 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 930-1231 +title: Supreme Janitorial Dictator +userPassword: Password1 +uid: BellewW +givenName: Wilhelmina +mail: BellewW@1c084eedcc9c44eda88c281c7989befb.bitwarden.com +carLicense: FM4BE9 +departmentNumber: 5663 +employeeType: Contract +homePhone: +1 804 657-4383 +initials: W. B. +mobile: +1 804 392-6336 +pager: +1 804 886-2197 +roomNumber: 9574 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sluis Nizman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sluis Nizman +sn: Nizman +description: This is Sluis Nizman's description +facsimileTelephoneNumber: +1 510 703-8059 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 821-9920 +title: Associate Management Fellow +userPassword: Password1 +uid: NizmanS +givenName: Sluis +mail: NizmanS@4964f3a69590417fbd1ca049096759e6.bitwarden.com +carLicense: 17UW52 +departmentNumber: 4628 +employeeType: Normal +homePhone: +1 510 802-3464 +initials: S. N. +mobile: +1 510 605-7883 +pager: +1 510 186-3000 +roomNumber: 8105 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Michel Salkini,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michel Salkini +sn: Salkini +description: This is Michel Salkini's description +facsimileTelephoneNumber: +1 818 299-4409 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 818 190-1779 +title: Master Payroll Assistant +userPassword: Password1 +uid: SalkiniM +givenName: Michel +mail: SalkiniM@d2d7ca225f1e4483b8252f961b2d485f.bitwarden.com +carLicense: 3QX1J4 +departmentNumber: 3762 +employeeType: Normal +homePhone: +1 818 350-6823 +initials: M. S. +mobile: +1 818 782-3802 +pager: +1 818 105-1504 +roomNumber: 8492 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=JoDee Cownie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JoDee Cownie +sn: Cownie +description: This is JoDee Cownie's description +facsimileTelephoneNumber: +1 804 563-9253 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 582-2965 +title: Junior Product Development Mascot +userPassword: Password1 +uid: CownieJ +givenName: JoDee +mail: CownieJ@848b025264d14e669cec02146f987418.bitwarden.com +carLicense: 0ISJTX +departmentNumber: 7930 +employeeType: Normal +homePhone: +1 804 494-5900 +initials: J. C. +mobile: +1 804 894-3256 +pager: +1 804 715-3024 +roomNumber: 8085 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berangere Bourdin +sn: Bourdin +description: This is Berangere Bourdin's description +facsimileTelephoneNumber: +1 804 232-3619 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 804 575-5341 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: BourdinB +givenName: Berangere +mail: BourdinB@655351dde00c468b8e6a0d1ed4e66324.bitwarden.com +carLicense: IR348T +departmentNumber: 4571 +employeeType: Contract +homePhone: +1 804 438-8613 +initials: B. B. +mobile: +1 804 796-6415 +pager: +1 804 546-9393 +roomNumber: 9577 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steffane Zagrodney +sn: Zagrodney +description: This is Steffane Zagrodney's description +facsimileTelephoneNumber: +1 510 680-7221 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 770-6665 +title: Master Janitorial Director +userPassword: Password1 +uid: ZagrodnS +givenName: Steffane +mail: ZagrodnS@990be6633e6a426c826b4ed97cd246bb.bitwarden.com +carLicense: ANQDTN +departmentNumber: 4705 +employeeType: Contract +homePhone: +1 510 860-3286 +initials: S. Z. +mobile: +1 510 314-2690 +pager: +1 510 732-9303 +roomNumber: 9909 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rueben Sacchetti +sn: Sacchetti +description: This is Rueben Sacchetti's description +facsimileTelephoneNumber: +1 818 924-1864 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 818 483-3606 +title: Associate Product Testing Admin +userPassword: Password1 +uid: SacchetR +givenName: Rueben +mail: SacchetR@ee37751373fd4ef1b1238e54dbded0be.bitwarden.com +carLicense: JKHW4R +departmentNumber: 2036 +employeeType: Contract +homePhone: +1 818 258-9672 +initials: R. S. +mobile: +1 818 271-2932 +pager: +1 818 420-7758 +roomNumber: 8985 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Germaine Turney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Germaine Turney +sn: Turney +description: This is Germaine Turney's description +facsimileTelephoneNumber: +1 206 650-9435 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 206 308-1376 +title: Associate Product Development Writer +userPassword: Password1 +uid: TurneyG +givenName: Germaine +mail: TurneyG@1dd141ee94514c5aa52c318bb9c43eb0.bitwarden.com +carLicense: MDYRIE +departmentNumber: 7131 +employeeType: Contract +homePhone: +1 206 685-3493 +initials: G. T. +mobile: +1 206 544-1844 +pager: +1 206 842-6854 +roomNumber: 8544 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Berenice Yates,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berenice Yates +sn: Yates +description: This is Berenice Yates's description +facsimileTelephoneNumber: +1 818 178-6490 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 739-9978 +title: Junior Human Resources Director +userPassword: Password1 +uid: YatesB +givenName: Berenice +mail: YatesB@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com +carLicense: 9AO5S5 +departmentNumber: 9576 +employeeType: Normal +homePhone: +1 818 714-5387 +initials: B. Y. +mobile: +1 818 944-9745 +pager: +1 818 596-3671 +roomNumber: 8385 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Geoff Catlett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geoff Catlett +sn: Catlett +description: This is Geoff Catlett's description +facsimileTelephoneNumber: +1 818 710-5604 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 262-6730 +title: Supreme Payroll Writer +userPassword: Password1 +uid: CatlettG +givenName: Geoff +mail: CatlettG@301293d91bcf43b6b56f749474f921a4.bitwarden.com +carLicense: BT22C9 +departmentNumber: 5984 +employeeType: Employee +homePhone: +1 818 257-6751 +initials: G. C. +mobile: +1 818 464-4336 +pager: +1 818 885-3436 +roomNumber: 8402 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=MarieAndree Bour,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MarieAndree Bour +sn: Bour +description: This is MarieAndree Bour's description +facsimileTelephoneNumber: +1 804 189-9521 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 804 966-3169 +title: Junior Peons Admin +userPassword: Password1 +uid: BourM +givenName: MarieAndree +mail: BourM@6460b7d3426f457f945fb005b82595d3.bitwarden.com +carLicense: NM82UQ +departmentNumber: 7454 +employeeType: Contract +homePhone: +1 804 835-1967 +initials: M. B. +mobile: +1 804 506-3828 +pager: +1 804 394-1859 +roomNumber: 8018 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dixie Gionet,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dixie Gionet +sn: Gionet +description: This is Dixie Gionet's description +facsimileTelephoneNumber: +1 818 905-8640 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 558-3019 +title: Chief Payroll Director +userPassword: Password1 +uid: GionetD +givenName: Dixie +mail: GionetD@a98f671d807c43a797dff7cd33629811.bitwarden.com +carLicense: USBL43 +departmentNumber: 1337 +employeeType: Contract +homePhone: +1 818 884-6165 +initials: D. G. +mobile: +1 818 872-1376 +pager: +1 818 310-6288 +roomNumber: 8107 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lyndel Amarsi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndel Amarsi +sn: Amarsi +description: This is Lyndel Amarsi's description +facsimileTelephoneNumber: +1 804 139-7655 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 121-5751 +title: Junior Peons Madonna +userPassword: Password1 +uid: AmarsiL +givenName: Lyndel +mail: AmarsiL@f9ae3791c7af4048ba041c1bc79adda2.bitwarden.com +carLicense: Q0855M +departmentNumber: 1704 +employeeType: Employee +homePhone: +1 804 803-7145 +initials: L. A. +mobile: +1 804 846-5457 +pager: +1 804 937-4724 +roomNumber: 9283 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacynth Zanetti +sn: Zanetti +description: This is Jacynth Zanetti's description +facsimileTelephoneNumber: +1 510 352-6420 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 105-6939 +title: Master Product Testing Visionary +userPassword: Password1 +uid: ZanettiJ +givenName: Jacynth +mail: ZanettiJ@9401b30c07d641ad85c9d343e51620fa.bitwarden.com +carLicense: LQJ4NA +departmentNumber: 2944 +employeeType: Employee +homePhone: +1 510 807-9036 +initials: J. Z. +mobile: +1 510 159-3513 +pager: +1 510 302-2922 +roomNumber: 8241 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pittsburgh Pomeroy +sn: Pomeroy +description: This is Pittsburgh Pomeroy's description +facsimileTelephoneNumber: +1 408 845-8139 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 408 482-1457 +title: Associate Management Mascot +userPassword: Password1 +uid: PomeroyP +givenName: Pittsburgh +mail: PomeroyP@28cc7c8054f54d5097838bc00378ffcf.bitwarden.com +carLicense: 2I0XO5 +departmentNumber: 3699 +employeeType: Employee +homePhone: +1 408 197-7348 +initials: P. P. +mobile: +1 408 561-8669 +pager: +1 408 905-3226 +roomNumber: 9227 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hulda McDowell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hulda McDowell +sn: McDowell +description: This is Hulda McDowell's description +facsimileTelephoneNumber: +1 213 597-3945 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 476-7666 +title: Junior Payroll Figurehead +userPassword: Password1 +uid: McDowelH +givenName: Hulda +mail: McDowelH@b0ae8165029e4a39900fe482966832f1.bitwarden.com +carLicense: M436BQ +departmentNumber: 4139 +employeeType: Employee +homePhone: +1 213 524-8732 +initials: H. M. +mobile: +1 213 725-4398 +pager: +1 213 752-8511 +roomNumber: 9889 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlyn Haubert +sn: Haubert +description: This is Karlyn Haubert's description +facsimileTelephoneNumber: +1 408 155-1272 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 612-8138 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: HaubertK +givenName: Karlyn +mail: HaubertK@7e78b04dbd3c4b8d878396ef3d8060c3.bitwarden.com +carLicense: FEHEQA +departmentNumber: 5108 +employeeType: Normal +homePhone: +1 408 351-4776 +initials: K. H. +mobile: +1 408 159-6540 +pager: +1 408 850-1089 +roomNumber: 8809 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Biddie Mainwaring +sn: Mainwaring +description: This is Biddie Mainwaring's description +facsimileTelephoneNumber: +1 408 991-4037 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 322-5817 +title: Supreme Janitorial Writer +userPassword: Password1 +uid: MainwarB +givenName: Biddie +mail: MainwarB@832ca72d2f454bc98e5e071288b43609.bitwarden.com +carLicense: WIT152 +departmentNumber: 2667 +employeeType: Employee +homePhone: +1 408 549-7098 +initials: B. M. +mobile: +1 408 252-2927 +pager: +1 408 965-2530 +roomNumber: 9878 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leil Forrest,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leil Forrest +sn: Forrest +description: This is Leil Forrest's description +facsimileTelephoneNumber: +1 415 983-2373 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 450-6405 +title: Supreme Payroll Sales Rep +userPassword: Password1 +uid: ForrestL +givenName: Leil +mail: ForrestL@ce0ca58b605f4efe987f4366b87f6460.bitwarden.com +carLicense: DIXWHA +departmentNumber: 8868 +employeeType: Contract +homePhone: +1 415 503-4961 +initials: L. F. +mobile: +1 415 148-6428 +pager: +1 415 691-4646 +roomNumber: 9128 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Natassia Mallozzi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natassia Mallozzi +sn: Mallozzi +description: This is Natassia Mallozzi's description +facsimileTelephoneNumber: +1 804 329-3757 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 810-7544 +title: Chief Management Visionary +userPassword: Password1 +uid: MallozzN +givenName: Natassia +mail: MallozzN@9ca7a4dd2cea473bb01027d45fa7651f.bitwarden.com +carLicense: XW21FA +departmentNumber: 6478 +employeeType: Normal +homePhone: +1 804 914-4160 +initials: N. M. +mobile: +1 804 927-1753 +pager: +1 804 461-4392 +roomNumber: 9051 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zack Meckler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zack Meckler +sn: Meckler +description: This is Zack Meckler's description +facsimileTelephoneNumber: +1 818 480-4874 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 805-2507 +title: Master Product Development Technician +userPassword: Password1 +uid: MecklerZ +givenName: Zack +mail: MecklerZ@0709c1c68975470c9ca0f7b0b26d3479.bitwarden.com +carLicense: N3RJTF +departmentNumber: 3025 +employeeType: Employee +homePhone: +1 818 712-8968 +initials: Z. M. +mobile: +1 818 400-5159 +pager: +1 818 488-6758 +roomNumber: 9281 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cameron Bydeley +sn: Bydeley +description: This is Cameron Bydeley's description +facsimileTelephoneNumber: +1 408 785-3859 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 912-3017 +title: Supreme Product Testing Fellow +userPassword: Password1 +uid: BydeleyC +givenName: Cameron +mail: BydeleyC@f185c5336698451d9003f4fee19cdce1.bitwarden.com +carLicense: WVAX63 +departmentNumber: 2495 +employeeType: Employee +homePhone: +1 408 860-7966 +initials: C. B. +mobile: +1 408 201-9425 +pager: +1 408 170-9716 +roomNumber: 9982 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nertie Szpilfogel +sn: Szpilfogel +description: This is Nertie Szpilfogel's description +facsimileTelephoneNumber: +1 206 652-4031 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 405-3004 +title: Supreme Payroll Consultant +userPassword: Password1 +uid: SzpilfoN +givenName: Nertie +mail: SzpilfoN@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com +carLicense: GVSFEK +departmentNumber: 9661 +employeeType: Employee +homePhone: +1 206 972-4559 +initials: N. S. +mobile: +1 206 233-8430 +pager: +1 206 328-4514 +roomNumber: 8943 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Isidora Ralph,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isidora Ralph +sn: Ralph +description: This is Isidora Ralph's description +facsimileTelephoneNumber: +1 804 308-2934 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 804 896-5129 +title: Supreme Administrative Visionary +userPassword: Password1 +uid: RalphI +givenName: Isidora +mail: RalphI@6b3d33b809ec4793b446277435a68094.bitwarden.com +carLicense: D2USQV +departmentNumber: 1005 +employeeType: Normal +homePhone: +1 804 475-2697 +initials: I. R. +mobile: +1 804 710-6714 +pager: +1 804 736-8242 +roomNumber: 9687 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ailis Reis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailis Reis +sn: Reis +description: This is Ailis Reis's description +facsimileTelephoneNumber: +1 804 921-7318 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 473-9052 +title: Supreme Product Testing Fellow +userPassword: Password1 +uid: ReisA +givenName: Ailis +mail: ReisA@b7a75ac36cfb495ca213382c6edc48fa.bitwarden.com +carLicense: 625L0F +departmentNumber: 4091 +employeeType: Contract +homePhone: +1 804 201-7709 +initials: A. R. +mobile: +1 804 449-9903 +pager: +1 804 809-8319 +roomNumber: 9609 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arvin McWilton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arvin McWilton +sn: McWilton +description: This is Arvin McWilton's description +facsimileTelephoneNumber: +1 818 668-9434 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 818 934-5326 +title: Junior Peons Writer +userPassword: Password1 +uid: McWiltoA +givenName: Arvin +mail: McWiltoA@369d31e12885450e8a3e646342f4bbde.bitwarden.com +carLicense: 9C3EGW +departmentNumber: 3048 +employeeType: Normal +homePhone: +1 818 880-5227 +initials: A. M. +mobile: +1 818 367-6816 +pager: +1 818 975-9187 +roomNumber: 9114 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirna Kimbrough +sn: Kimbrough +description: This is Mirna Kimbrough's description +facsimileTelephoneNumber: +1 206 286-2273 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 479-1671 +title: Master Payroll Engineer +userPassword: Password1 +uid: KimbrouM +givenName: Mirna +mail: KimbrouM@a9b974f8337643ea8609cd0bff25a863.bitwarden.com +carLicense: OKAHBO +departmentNumber: 2318 +employeeType: Normal +homePhone: +1 206 230-4173 +initials: M. K. +mobile: +1 206 485-3046 +pager: +1 206 683-7154 +roomNumber: 9061 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulette Piecowye +sn: Piecowye +description: This is Paulette Piecowye's description +facsimileTelephoneNumber: +1 415 782-9808 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 133-1777 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: PiecowyP +givenName: Paulette +mail: PiecowyP@aa945863ba884bb0945b413cc3668682.bitwarden.com +carLicense: 6KVOQ1 +departmentNumber: 8359 +employeeType: Contract +homePhone: +1 415 604-7494 +initials: P. P. +mobile: +1 415 558-7564 +pager: +1 415 748-1610 +roomNumber: 8449 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Matti Bruce,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matti Bruce +sn: Bruce +description: This is Matti Bruce's description +facsimileTelephoneNumber: +1 818 544-4094 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 818 536-2629 +title: Junior Janitorial Developer +userPassword: Password1 +uid: BruceM +givenName: Matti +mail: BruceM@47ece09cd3f24518b5f5e95e47b71e12.bitwarden.com +carLicense: 5WHC5V +departmentNumber: 3384 +employeeType: Employee +homePhone: +1 818 604-4104 +initials: M. B. +mobile: +1 818 530-5249 +pager: +1 818 897-8118 +roomNumber: 9099 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Joel Rynders,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joel Rynders +sn: Rynders +description: This is Joel Rynders's description +facsimileTelephoneNumber: +1 804 271-2310 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 532-5727 +title: Associate Peons Assistant +userPassword: Password1 +uid: RyndersJ +givenName: Joel +mail: RyndersJ@a21f5c8e73ff448fba1e73a903377739.bitwarden.com +carLicense: 10LMW8 +departmentNumber: 7119 +employeeType: Employee +homePhone: +1 804 646-8080 +initials: J. R. +mobile: +1 804 988-8822 +pager: +1 804 728-1490 +roomNumber: 8931 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Stefanie Malle,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stefanie Malle +sn: Malle +description: This is Stefanie Malle's description +facsimileTelephoneNumber: +1 804 167-8178 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 709-5760 +title: Master Administrative Director +userPassword: Password1 +uid: MalleS +givenName: Stefanie +mail: MalleS@c6b35f0658844e75be0a856bbda0593e.bitwarden.com +carLicense: 6D0XQK +departmentNumber: 6349 +employeeType: Employee +homePhone: +1 804 996-5058 +initials: S. M. +mobile: +1 804 379-4278 +pager: +1 804 234-1361 +roomNumber: 9072 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yokan Basco,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yokan Basco +sn: Basco +description: This is Yokan Basco's description +facsimileTelephoneNumber: +1 818 267-5402 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 818 968-4230 +title: Junior Peons Developer +userPassword: Password1 +uid: BascoY +givenName: Yokan +mail: BascoY@0d3732b7ea1d4d659dee1e0435292c15.bitwarden.com +carLicense: WEKBO0 +departmentNumber: 6852 +employeeType: Employee +homePhone: +1 818 788-1795 +initials: Y. B. +mobile: +1 818 511-4602 +pager: +1 818 796-9840 +roomNumber: 8251 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Froukje Gionet,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Froukje Gionet +sn: Gionet +description: This is Froukje Gionet's description +facsimileTelephoneNumber: +1 510 515-4103 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 983-4720 +title: Master Administrative President +userPassword: Password1 +uid: GionetF +givenName: Froukje +mail: GionetF@1d8ea622691942519634199a4665788b.bitwarden.com +carLicense: BHQCA3 +departmentNumber: 1082 +employeeType: Employee +homePhone: +1 510 211-6472 +initials: F. G. +mobile: +1 510 992-2919 +pager: +1 510 143-1722 +roomNumber: 9477 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosabelle Ricciuto +sn: Ricciuto +description: This is Rosabelle Ricciuto's description +facsimileTelephoneNumber: +1 510 639-4837 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 581-5227 +title: Supreme Payroll Stooge +userPassword: Password1 +uid: RicciutR +givenName: Rosabelle +mail: RicciutR@a0cd6adce0a94b1fa4dd97607ada8ecc.bitwarden.com +carLicense: 4KN5B4 +departmentNumber: 2105 +employeeType: Normal +homePhone: +1 510 590-3155 +initials: R. R. +mobile: +1 510 441-7372 +pager: +1 510 335-5362 +roomNumber: 8412 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nenad OToole,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nenad OToole +sn: OToole +description: This is Nenad OToole's description +facsimileTelephoneNumber: +1 206 340-5220 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 126-2272 +title: Chief Payroll Pinhead +userPassword: Password1 +uid: OTooleN +givenName: Nenad +mail: OTooleN@b4e6fcb990c44b4a85e8d6b21ad2c2c5.bitwarden.com +carLicense: BGN1BB +departmentNumber: 5155 +employeeType: Employee +homePhone: +1 206 597-2455 +initials: N. O. +mobile: +1 206 882-2055 +pager: +1 206 365-9261 +roomNumber: 8151 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aileen Haney,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aileen Haney +sn: Haney +description: This is Aileen Haney's description +facsimileTelephoneNumber: +1 408 334-9072 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 897-1157 +title: Associate Human Resources Technician +userPassword: Password1 +uid: HaneyA +givenName: Aileen +mail: HaneyA@6a3acca7ad4f4682a2006a10deabdc87.bitwarden.com +carLicense: OUPH3U +departmentNumber: 4256 +employeeType: Employee +homePhone: +1 408 481-4737 +initials: A. H. +mobile: +1 408 282-9753 +pager: +1 408 435-5165 +roomNumber: 8886 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvinia Lauten +sn: Lauten +description: This is Alvinia Lauten's description +facsimileTelephoneNumber: +1 804 919-5962 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 705-4240 +title: Chief Human Resources Vice President +userPassword: Password1 +uid: LautenA +givenName: Alvinia +mail: LautenA@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com +carLicense: ET7LFS +departmentNumber: 4071 +employeeType: Normal +homePhone: +1 804 598-9797 +initials: A. L. +mobile: +1 804 283-3198 +pager: +1 804 765-6910 +roomNumber: 8465 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hannis Flindall,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hannis Flindall +sn: Flindall +description: This is Hannis Flindall's description +facsimileTelephoneNumber: +1 804 559-3853 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 804 176-1843 +title: Chief Human Resources Admin +userPassword: Password1 +uid: FlindalH +givenName: Hannis +mail: FlindalH@2e3ea6fd47a04112b8fcd5e103e3ae77.bitwarden.com +carLicense: MHS9R1 +departmentNumber: 5334 +employeeType: Contract +homePhone: +1 804 212-6113 +initials: H. F. +mobile: +1 804 639-2319 +pager: +1 804 848-3734 +roomNumber: 8485 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anderson Bulan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anderson Bulan +sn: Bulan +description: This is Anderson Bulan's description +facsimileTelephoneNumber: +1 818 221-9038 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 998-3372 +title: Master Administrative Vice President +userPassword: Password1 +uid: BulanA +givenName: Anderson +mail: BulanA@b360982dfbca4b8284c115441a6deb86.bitwarden.com +carLicense: 9YLOOI +departmentNumber: 9892 +employeeType: Contract +homePhone: +1 818 221-7253 +initials: A. B. +mobile: +1 818 747-6578 +pager: +1 818 477-1834 +roomNumber: 8572 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farrukh Podmaroff +sn: Podmaroff +description: This is Farrukh Podmaroff's description +facsimileTelephoneNumber: +1 510 179-8594 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 244-8835 +title: Chief Administrative Director +userPassword: Password1 +uid: PodmaroF +givenName: Farrukh +mail: PodmaroF@0091f742e8b849efaacb4f9b80e0f2c7.bitwarden.com +carLicense: OWEG7X +departmentNumber: 4429 +employeeType: Contract +homePhone: +1 510 940-6837 +initials: F. P. +mobile: +1 510 594-6807 +pager: +1 510 488-3340 +roomNumber: 9755 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Denny Bourguignon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denny Bourguignon +sn: Bourguignon +description: This is Denny Bourguignon's description +facsimileTelephoneNumber: +1 206 848-6156 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 206 523-4506 +title: Master Management Assistant +userPassword: Password1 +uid: BourguiD +givenName: Denny +mail: BourguiD@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com +carLicense: T9VKRG +departmentNumber: 8535 +employeeType: Normal +homePhone: +1 206 447-5028 +initials: D. B. +mobile: +1 206 942-4433 +pager: +1 206 937-1655 +roomNumber: 8689 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirleen Ferriss +sn: Ferriss +description: This is Shirleen Ferriss's description +facsimileTelephoneNumber: +1 804 331-3137 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 208-7598 +title: Associate Product Development Director +userPassword: Password1 +uid: FerrissS +givenName: Shirleen +mail: FerrissS@df9fef66ff8d4a1eb163eeab8b34d029.bitwarden.com +carLicense: DQ8Y6I +departmentNumber: 2583 +employeeType: Employee +homePhone: +1 804 466-4085 +initials: S. F. +mobile: +1 804 502-1332 +pager: +1 804 278-4260 +roomNumber: 9137 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Reeva Doherty,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reeva Doherty +sn: Doherty +description: This is Reeva Doherty's description +facsimileTelephoneNumber: +1 510 189-4560 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 527-7980 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: DohertyR +givenName: Reeva +mail: DohertyR@f72aa123d23546a4b16938b7223cb6df.bitwarden.com +carLicense: BHKFVL +departmentNumber: 2486 +employeeType: Employee +homePhone: +1 510 725-5563 +initials: R. D. +mobile: +1 510 406-9954 +pager: +1 510 843-7941 +roomNumber: 9780 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Piyush Holness,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Piyush Holness +sn: Holness +description: This is Piyush Holness's description +facsimileTelephoneNumber: +1 408 502-7823 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 311-8462 +title: Junior Management Evangelist +userPassword: Password1 +uid: HolnessP +givenName: Piyush +mail: HolnessP@b6e011a2296d47ac9cf137f608b1c223.bitwarden.com +carLicense: WUXD25 +departmentNumber: 6645 +employeeType: Employee +homePhone: +1 408 868-3605 +initials: P. H. +mobile: +1 408 874-8210 +pager: +1 408 659-2767 +roomNumber: 9348 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Minette Hazeldine,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minette Hazeldine +sn: Hazeldine +description: This is Minette Hazeldine's description +facsimileTelephoneNumber: +1 818 966-3636 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 818 404-8704 +title: Associate Payroll Admin +userPassword: Password1 +uid: HazeldiM +givenName: Minette +mail: HazeldiM@5868dcc2878d429f81b86e9aecf3d38d.bitwarden.com +carLicense: KLWVAU +departmentNumber: 6664 +employeeType: Employee +homePhone: +1 818 121-3523 +initials: M. H. +mobile: +1 818 242-8362 +pager: +1 818 746-9833 +roomNumber: 9270 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Haruko Hepburn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haruko Hepburn +sn: Hepburn +description: This is Haruko Hepburn's description +facsimileTelephoneNumber: +1 818 776-4933 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 397-6898 +title: Junior Management Stooge +userPassword: Password1 +uid: HepburnH +givenName: Haruko +mail: HepburnH@9cbf54d03b9c41c0a58b94807ed31433.bitwarden.com +carLicense: PR2BQ6 +departmentNumber: 2458 +employeeType: Employee +homePhone: +1 818 371-1225 +initials: H. H. +mobile: +1 818 161-7941 +pager: +1 818 353-3586 +roomNumber: 9193 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carlo Mong,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlo Mong +sn: Mong +description: This is Carlo Mong's description +facsimileTelephoneNumber: +1 818 976-1548 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 818 805-4087 +title: Chief Peons Visionary +userPassword: Password1 +uid: MongC +givenName: Carlo +mail: MongC@aad41c2039bd4d01a6a56cfb8fd90330.bitwarden.com +carLicense: X0AX93 +departmentNumber: 6165 +employeeType: Contract +homePhone: +1 818 290-7632 +initials: C. M. +mobile: +1 818 939-6069 +pager: +1 818 254-4652 +roomNumber: 8424 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Oksana Klein,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oksana Klein +sn: Klein +description: This is Oksana Klein's description +facsimileTelephoneNumber: +1 415 602-5272 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 595-8473 +title: Master Product Testing Grunt +userPassword: Password1 +uid: KleinO +givenName: Oksana +mail: KleinO@5750a4ef0b904e64a81925c3672ef563.bitwarden.com +carLicense: OYIW36 +departmentNumber: 7759 +employeeType: Normal +homePhone: +1 415 731-3081 +initials: O. K. +mobile: +1 415 367-2128 +pager: +1 415 691-2176 +roomNumber: 9807 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abigail Scheuermann +sn: Scheuermann +description: This is Abigail Scheuermann's description +facsimileTelephoneNumber: +1 818 782-9554 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 818 741-8541 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: ScheuerA +givenName: Abigail +mail: ScheuerA@6a7ad90af8b14ef5805ef3e5ef79c783.bitwarden.com +carLicense: IKBOIT +departmentNumber: 6693 +employeeType: Employee +homePhone: +1 818 392-5411 +initials: A. S. +mobile: +1 818 687-7781 +pager: +1 818 175-1471 +roomNumber: 9610 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dimitri Pineau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dimitri Pineau +sn: Pineau +description: This is Dimitri Pineau's description +facsimileTelephoneNumber: +1 213 982-3603 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 213 309-4321 +title: Junior Peons Artist +userPassword: Password1 +uid: PineauD +givenName: Dimitri +mail: PineauD@cc46233b48e848cf830a3d50f88b2bbe.bitwarden.com +carLicense: 57WFC2 +departmentNumber: 4903 +employeeType: Employee +homePhone: +1 213 451-7891 +initials: D. P. +mobile: +1 213 922-6418 +pager: +1 213 403-9488 +roomNumber: 9515 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Geri Shabo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geri Shabo +sn: Shabo +description: This is Geri Shabo's description +facsimileTelephoneNumber: +1 408 530-7177 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 408 460-6322 +title: Master Administrative Architect +userPassword: Password1 +uid: ShaboG +givenName: Geri +mail: ShaboG@3087ee4d2688435e9ed4c4c6f3e8ba87.bitwarden.com +carLicense: 6PIOXC +departmentNumber: 4302 +employeeType: Normal +homePhone: +1 408 855-3877 +initials: G. S. +mobile: +1 408 663-5868 +pager: +1 408 749-4691 +roomNumber: 8909 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Saied Vertolli,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saied Vertolli +sn: Vertolli +description: This is Saied Vertolli's description +facsimileTelephoneNumber: +1 818 275-6994 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 818 643-8208 +title: Chief Product Testing Dictator +userPassword: Password1 +uid: VertollS +givenName: Saied +mail: VertollS@4839522ad0264d68aafb73c3cd081f79.bitwarden.com +carLicense: GQX4IK +departmentNumber: 7766 +employeeType: Contract +homePhone: +1 818 741-5049 +initials: S. V. +mobile: +1 818 254-4142 +pager: +1 818 286-4736 +roomNumber: 8409 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Txp Cummings,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Txp Cummings +sn: Cummings +description: This is Txp Cummings's description +facsimileTelephoneNumber: +1 510 105-5985 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 933-8040 +title: Supreme Administrative Stooge +userPassword: Password1 +uid: CummingT +givenName: Txp +mail: CummingT@8ec12044b3f24cc38b71b6337247088e.bitwarden.com +carLicense: IB4RBG +departmentNumber: 1755 +employeeType: Contract +homePhone: +1 510 269-6037 +initials: T. C. +mobile: +1 510 466-3624 +pager: +1 510 522-8398 +roomNumber: 9459 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Britt Caruth,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Britt Caruth +sn: Caruth +description: This is Britt Caruth's description +facsimileTelephoneNumber: +1 206 580-8755 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 874-5788 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: CaruthB +givenName: Britt +mail: CaruthB@f1b30e88335e48b6b2f1076d935738fd.bitwarden.com +carLicense: S036P9 +departmentNumber: 5472 +employeeType: Employee +homePhone: +1 206 758-6601 +initials: B. C. +mobile: +1 206 921-9616 +pager: +1 206 696-1944 +roomNumber: 9394 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kwong Engleman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kwong Engleman +sn: Engleman +description: This is Kwong Engleman's description +facsimileTelephoneNumber: +1 804 107-8618 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 407-1947 +title: Master Management Punk +userPassword: Password1 +uid: EnglemaK +givenName: Kwong +mail: EnglemaK@afe236498cd549b2aa927720547167bf.bitwarden.com +carLicense: A7IPPD +departmentNumber: 7643 +employeeType: Contract +homePhone: +1 804 103-2453 +initials: K. E. +mobile: +1 804 153-8045 +pager: +1 804 180-7581 +roomNumber: 9702 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vikki Tzuang,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vikki Tzuang +sn: Tzuang +description: This is Vikki Tzuang's description +facsimileTelephoneNumber: +1 804 159-8512 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 804 787-9508 +title: Master Payroll Technician +userPassword: Password1 +uid: TzuangV +givenName: Vikki +mail: TzuangV@6eda6577067f465b84cdc51153ccba3d.bitwarden.com +carLicense: 4SPLGB +departmentNumber: 6392 +employeeType: Normal +homePhone: +1 804 547-6912 +initials: V. T. +mobile: +1 804 595-5496 +pager: +1 804 259-7606 +roomNumber: 9675 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sickle StJames,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sickle StJames +sn: StJames +description: This is Sickle StJames's description +facsimileTelephoneNumber: +1 510 261-3044 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 481-4004 +title: Master Administrative Engineer +userPassword: Password1 +uid: StJamesS +givenName: Sickle +mail: StJamesS@5e158cc6e3de4be9888366013451c974.bitwarden.com +carLicense: CFASGH +departmentNumber: 4544 +employeeType: Normal +homePhone: +1 510 939-3412 +initials: S. S. +mobile: +1 510 825-1536 +pager: +1 510 937-5754 +roomNumber: 8983 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cora Strohmeyer +sn: Strohmeyer +description: This is Cora Strohmeyer's description +facsimileTelephoneNumber: +1 213 144-1977 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 275-6422 +title: Supreme Janitorial Punk +userPassword: Password1 +uid: StrohmeC +givenName: Cora +mail: StrohmeC@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com +carLicense: J2OTM9 +departmentNumber: 4545 +employeeType: Employee +homePhone: +1 213 810-8201 +initials: C. S. +mobile: +1 213 542-7348 +pager: +1 213 277-7905 +roomNumber: 9568 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aundrea Yates,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aundrea Yates +sn: Yates +description: This is Aundrea Yates's description +facsimileTelephoneNumber: +1 408 903-8727 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 408 478-4569 +title: Master Management Director +userPassword: Password1 +uid: YatesA +givenName: Aundrea +mail: YatesA@d1186568844c4440bc6aec688b283aec.bitwarden.com +carLicense: D9VY6L +departmentNumber: 4381 +employeeType: Employee +homePhone: +1 408 378-8155 +initials: A. Y. +mobile: +1 408 327-2173 +pager: +1 408 858-4501 +roomNumber: 9827 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nam Cuddy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nam Cuddy +sn: Cuddy +description: This is Nam Cuddy's description +facsimileTelephoneNumber: +1 415 111-9602 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 204-4843 +title: Master Product Testing Dictator +userPassword: Password1 +uid: CuddyN +givenName: Nam +mail: CuddyN@1084d762384c42f1a6679ab8f507fae7.bitwarden.com +carLicense: M5D8U0 +departmentNumber: 5016 +employeeType: Employee +homePhone: +1 415 421-2000 +initials: N. C. +mobile: +1 415 908-4089 +pager: +1 415 264-9323 +roomNumber: 9925 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Methi Zoerb,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Methi Zoerb +sn: Zoerb +description: This is Methi Zoerb's description +facsimileTelephoneNumber: +1 510 986-2789 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 510 715-7534 +title: Supreme Management Consultant +userPassword: Password1 +uid: ZoerbM +givenName: Methi +mail: ZoerbM@2b996155cde34aada101f38aad1494ed.bitwarden.com +carLicense: D77JHM +departmentNumber: 7974 +employeeType: Normal +homePhone: +1 510 421-4148 +initials: M. Z. +mobile: +1 510 654-6153 +pager: +1 510 768-3309 +roomNumber: 9351 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Elysia Zhong,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elysia Zhong +sn: Zhong +description: This is Elysia Zhong's description +facsimileTelephoneNumber: +1 213 882-3593 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 889-2479 +title: Master Human Resources Fellow +userPassword: Password1 +uid: ZhongE +givenName: Elysia +mail: ZhongE@e45ce72662bb48a5bc1781a700f156d3.bitwarden.com +carLicense: 7XDLTF +departmentNumber: 2050 +employeeType: Normal +homePhone: +1 213 174-5616 +initials: E. Z. +mobile: +1 213 295-1552 +pager: +1 213 243-4855 +roomNumber: 8786 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kacie Herriotts,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kacie Herriotts +sn: Herriotts +description: This is Kacie Herriotts's description +facsimileTelephoneNumber: +1 804 543-7252 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 938-8271 +title: Junior Management Janitor +userPassword: Password1 +uid: HerriotK +givenName: Kacie +mail: HerriotK@93baf6000e434401b0373a2ea7daeeeb.bitwarden.com +carLicense: DQS8SR +departmentNumber: 6214 +employeeType: Contract +homePhone: +1 804 815-9395 +initials: K. H. +mobile: +1 804 189-4401 +pager: +1 804 393-1234 +roomNumber: 8980 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hermine Fung,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermine Fung +sn: Fung +description: This is Hermine Fung's description +facsimileTelephoneNumber: +1 206 396-8052 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 237-6419 +title: Chief Product Development Consultant +userPassword: Password1 +uid: FungH +givenName: Hermine +mail: FungH@4e39cf6037cc438cb5f205f487c66106.bitwarden.com +carLicense: 1SUGXK +departmentNumber: 9137 +employeeType: Contract +homePhone: +1 206 100-9993 +initials: H. F. +mobile: +1 206 467-9575 +pager: +1 206 551-3997 +roomNumber: 9375 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Manoj Caterina,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manoj Caterina +sn: Caterina +description: This is Manoj Caterina's description +facsimileTelephoneNumber: +1 415 578-5472 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 793-4883 +title: Associate Product Testing Technician +userPassword: Password1 +uid: CaterinM +givenName: Manoj +mail: CaterinM@1eb1bac0652b4a1d860f7943e8882707.bitwarden.com +carLicense: F6LFJ1 +departmentNumber: 5397 +employeeType: Normal +homePhone: +1 415 171-6736 +initials: M. C. +mobile: +1 415 871-1883 +pager: +1 415 456-8220 +roomNumber: 9904 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Penny Sim,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Penny Sim +sn: Sim +description: This is Penny Sim's description +facsimileTelephoneNumber: +1 213 336-2043 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 332-7341 +title: Junior Human Resources Assistant +userPassword: Password1 +uid: SimP +givenName: Penny +mail: SimP@21b42d834af34274a89f3786de268a20.bitwarden.com +carLicense: XN7T51 +departmentNumber: 8228 +employeeType: Contract +homePhone: +1 213 675-8884 +initials: P. S. +mobile: +1 213 636-8714 +pager: +1 213 610-5039 +roomNumber: 9294 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Grzegorz Feist,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grzegorz Feist +sn: Feist +description: This is Grzegorz Feist's description +facsimileTelephoneNumber: +1 818 213-9185 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 961-1396 +title: Supreme Administrative Writer +userPassword: Password1 +uid: FeistG +givenName: Grzegorz +mail: FeistG@c4659b280be44f2584ea6e37731ba24b.bitwarden.com +carLicense: S98C66 +departmentNumber: 5310 +employeeType: Employee +homePhone: +1 818 245-3820 +initials: G. F. +mobile: +1 818 574-9915 +pager: +1 818 368-3411 +roomNumber: 9382 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sadan Spears,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadan Spears +sn: Spears +description: This is Sadan Spears's description +facsimileTelephoneNumber: +1 510 397-1162 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 510 580-7223 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: SpearsS +givenName: Sadan +mail: SpearsS@b4636d7df71f4835817a7714801280f8.bitwarden.com +carLicense: R62653 +departmentNumber: 7823 +employeeType: Employee +homePhone: +1 510 862-4404 +initials: S. S. +mobile: +1 510 858-1840 +pager: +1 510 207-6060 +roomNumber: 9491 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Peter Grazzini,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peter Grazzini +sn: Grazzini +description: This is Peter Grazzini's description +facsimileTelephoneNumber: +1 408 514-6588 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 567-4997 +title: Supreme Management Assistant +userPassword: Password1 +uid: GrazzinP +givenName: Peter +mail: GrazzinP@87263f2ad4e44ac39562038c9af16152.bitwarden.com +carLicense: 21X887 +departmentNumber: 6401 +employeeType: Contract +homePhone: +1 408 291-2772 +initials: P. G. +mobile: +1 408 265-8459 +pager: +1 408 952-3808 +roomNumber: 8206 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kasifa Bauer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kasifa Bauer +sn: Bauer +description: This is Kasifa Bauer's description +facsimileTelephoneNumber: +1 818 426-2038 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 466-3658 +title: Chief Management Assistant +userPassword: Password1 +uid: BauerK +givenName: Kasifa +mail: BauerK@88d8b282161d4154bfd3a8dda92cc317.bitwarden.com +carLicense: EPCJJM +departmentNumber: 4174 +employeeType: Normal +homePhone: +1 818 969-5007 +initials: K. B. +mobile: +1 818 598-4871 +pager: +1 818 826-8560 +roomNumber: 8875 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Milena Hendricksen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milena Hendricksen +sn: Hendricksen +description: This is Milena Hendricksen's description +facsimileTelephoneNumber: +1 804 602-5285 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 804 424-1372 +title: Supreme Product Development Czar +userPassword: Password1 +uid: HendricM +givenName: Milena +mail: HendricM@60ffb350fa6740079313430abf25721b.bitwarden.com +carLicense: 32JPWE +departmentNumber: 1249 +employeeType: Employee +homePhone: +1 804 983-6734 +initials: M. H. +mobile: +1 804 151-6810 +pager: +1 804 118-6805 +roomNumber: 8811 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Allix Tsui,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allix Tsui +sn: Tsui +description: This is Allix Tsui's description +facsimileTelephoneNumber: +1 818 581-7526 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 818 991-1120 +title: Supreme Peons Technician +userPassword: Password1 +uid: TsuiA +givenName: Allix +mail: TsuiA@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com +carLicense: UA16TV +departmentNumber: 9842 +employeeType: Contract +homePhone: +1 818 615-5681 +initials: A. T. +mobile: +1 818 574-9417 +pager: +1 818 145-7052 +roomNumber: 9161 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jenda Cobban,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenda Cobban +sn: Cobban +description: This is Jenda Cobban's description +facsimileTelephoneNumber: +1 213 804-1303 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 213 767-6737 +title: Associate Payroll Mascot +userPassword: Password1 +uid: CobbanJ +givenName: Jenda +mail: CobbanJ@b69339dab59940869a3e5a49d58c958e.bitwarden.com +carLicense: RUBY05 +departmentNumber: 1946 +employeeType: Normal +homePhone: +1 213 682-3830 +initials: J. C. +mobile: +1 213 113-6995 +pager: +1 213 384-5059 +roomNumber: 9348 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Concettina Linberg,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Concettina Linberg +sn: Linberg +description: This is Concettina Linberg's description +facsimileTelephoneNumber: +1 818 123-4120 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 177-1706 +title: Junior Peons Warrior +userPassword: Password1 +uid: LinbergC +givenName: Concettina +mail: LinbergC@399ec0c914824f4b8aebd42d99e8c0c9.bitwarden.com +carLicense: YPVY6C +departmentNumber: 7007 +employeeType: Normal +homePhone: +1 818 112-4846 +initials: C. L. +mobile: +1 818 831-1253 +pager: +1 818 216-9302 +roomNumber: 8088 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Colin Tahir,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colin Tahir +sn: Tahir +description: This is Colin Tahir's description +facsimileTelephoneNumber: +1 206 854-7254 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 708-4869 +title: Master Peons Stooge +userPassword: Password1 +uid: TahirC +givenName: Colin +mail: TahirC@fc5b2b3042744b23b0983715563a446d.bitwarden.com +carLicense: 9GVAU3 +departmentNumber: 7319 +employeeType: Employee +homePhone: +1 206 763-2559 +initials: C. T. +mobile: +1 206 646-9820 +pager: +1 206 973-1560 +roomNumber: 9852 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gates Hesche,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gates Hesche +sn: Hesche +description: This is Gates Hesche's description +facsimileTelephoneNumber: +1 213 824-5025 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 362-5700 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: HescheG +givenName: Gates +mail: HescheG@7c6819ef96bf408e8eddc78b061a602d.bitwarden.com +carLicense: JAIW1V +departmentNumber: 2703 +employeeType: Employee +homePhone: +1 213 385-6548 +initials: G. H. +mobile: +1 213 529-9114 +pager: +1 213 682-7860 +roomNumber: 9808 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marjie Karp,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjie Karp +sn: Karp +description: This is Marjie Karp's description +facsimileTelephoneNumber: +1 408 836-1233 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 408 158-7861 +title: Junior Janitorial Czar +userPassword: Password1 +uid: KarpM +givenName: Marjie +mail: KarpM@1baee55063104657aab587314d3f4ff6.bitwarden.com +carLicense: EB3YQW +departmentNumber: 7758 +employeeType: Normal +homePhone: +1 408 315-4751 +initials: M. K. +mobile: +1 408 992-3093 +pager: +1 408 851-2622 +roomNumber: 9227 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dorella Reeder,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorella Reeder +sn: Reeder +description: This is Dorella Reeder's description +facsimileTelephoneNumber: +1 510 608-6430 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 510 102-3030 +title: Associate Payroll Admin +userPassword: Password1 +uid: ReederD +givenName: Dorella +mail: ReederD@daeb41514d9e4eb79c108728fb0c78a2.bitwarden.com +carLicense: HSAYCQ +departmentNumber: 2446 +employeeType: Employee +homePhone: +1 510 995-1909 +initials: D. R. +mobile: +1 510 454-3923 +pager: +1 510 739-3503 +roomNumber: 9665 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sacto Eddisford +sn: Eddisford +description: This is Sacto Eddisford's description +facsimileTelephoneNumber: +1 408 772-3618 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 839-4129 +title: Chief Human Resources Admin +userPassword: Password1 +uid: EddisfoS +givenName: Sacto +mail: EddisfoS@bdc6007cc6e34b34a9dcf44589f8b6cd.bitwarden.com +carLicense: LQ8NJO +departmentNumber: 6125 +employeeType: Contract +homePhone: +1 408 585-1688 +initials: S. E. +mobile: +1 408 882-2644 +pager: +1 408 838-2306 +roomNumber: 8170 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shankar Brehm,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shankar Brehm +sn: Brehm +description: This is Shankar Brehm's description +facsimileTelephoneNumber: +1 213 438-5477 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 491-9500 +title: Supreme Management Architect +userPassword: Password1 +uid: BrehmS +givenName: Shankar +mail: BrehmS@402d7992fc8d4f0abdb7612e07362a4b.bitwarden.com +carLicense: F008LM +departmentNumber: 7536 +employeeType: Contract +homePhone: +1 213 482-1427 +initials: S. B. +mobile: +1 213 627-9525 +pager: +1 213 862-7617 +roomNumber: 8055 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Natalee Broadwell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natalee Broadwell +sn: Broadwell +description: This is Natalee Broadwell's description +facsimileTelephoneNumber: +1 213 850-8523 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 911-4559 +title: Associate Administrative President +userPassword: Password1 +uid: BroadweN +givenName: Natalee +mail: BroadweN@2990e564c90444fbbb5903f5db67effd.bitwarden.com +carLicense: 31Q063 +departmentNumber: 3284 +employeeType: Contract +homePhone: +1 213 716-1328 +initials: N. B. +mobile: +1 213 107-9195 +pager: +1 213 869-4902 +roomNumber: 8124 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gay Denette,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gay Denette +sn: Denette +description: This is Gay Denette's description +facsimileTelephoneNumber: +1 415 498-5341 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 320-8805 +title: Master Payroll Consultant +userPassword: Password1 +uid: DenetteG +givenName: Gay +mail: DenetteG@953912784f294893a08a38b4ede88ef7.bitwarden.com +carLicense: SPVWXP +departmentNumber: 3908 +employeeType: Employee +homePhone: +1 415 421-5571 +initials: G. D. +mobile: +1 415 921-6650 +pager: +1 415 607-9866 +roomNumber: 8474 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wiesje Coursol +sn: Coursol +description: This is Wiesje Coursol's description +facsimileTelephoneNumber: +1 818 888-4526 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 351-2299 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: CoursolW +givenName: Wiesje +mail: CoursolW@8e3617cc8c944c82bb3ee3f96f086fbc.bitwarden.com +carLicense: UQJC5L +departmentNumber: 6492 +employeeType: Normal +homePhone: +1 818 792-8956 +initials: W. C. +mobile: +1 818 338-1950 +pager: +1 818 556-2486 +roomNumber: 8540 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leita Malloy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leita Malloy +sn: Malloy +description: This is Leita Malloy's description +facsimileTelephoneNumber: +1 415 917-3298 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 812-1812 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: MalloyL +givenName: Leita +mail: MalloyL@cfb0243cd1fe4f70a9f0422d30776059.bitwarden.com +carLicense: NHKADB +departmentNumber: 9456 +employeeType: Normal +homePhone: +1 415 177-2530 +initials: L. M. +mobile: +1 415 252-6472 +pager: +1 415 159-3139 +roomNumber: 8960 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Novelia Tigg,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Novelia Tigg +sn: Tigg +description: This is Novelia Tigg's description +facsimileTelephoneNumber: +1 408 210-9988 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 260-7849 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: TiggN +givenName: Novelia +mail: TiggN@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com +carLicense: SCDTF0 +departmentNumber: 2910 +employeeType: Normal +homePhone: +1 408 164-7563 +initials: N. T. +mobile: +1 408 395-9045 +pager: +1 408 978-1864 +roomNumber: 8940 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Aeriell Cottrell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aeriell Cottrell +sn: Cottrell +description: This is Aeriell Cottrell's description +facsimileTelephoneNumber: +1 415 243-2995 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 416-8384 +title: Master Management Figurehead +userPassword: Password1 +uid: CottrelA +givenName: Aeriell +mail: CottrelA@25788f1e9dc14cf99cc2d18e4cb5e6eb.bitwarden.com +carLicense: DHJRXU +departmentNumber: 9757 +employeeType: Normal +homePhone: +1 415 899-8838 +initials: A. C. +mobile: +1 415 761-8858 +pager: +1 415 527-3598 +roomNumber: 9780 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angelina Jacobsen +sn: Jacobsen +description: This is Angelina Jacobsen's description +facsimileTelephoneNumber: +1 408 783-1977 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 408 204-4447 +title: Junior Product Testing Czar +userPassword: Password1 +uid: JacobseA +givenName: Angelina +mail: JacobseA@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com +carLicense: V682RQ +departmentNumber: 7503 +employeeType: Employee +homePhone: +1 408 706-7505 +initials: A. J. +mobile: +1 408 536-8046 +pager: +1 408 779-4602 +roomNumber: 8131 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nickie Sicard,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nickie Sicard +sn: Sicard +description: This is Nickie Sicard's description +facsimileTelephoneNumber: +1 510 589-4076 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 280-8773 +title: Chief Product Development Assistant +userPassword: Password1 +uid: SicardN +givenName: Nickie +mail: SicardN@69a8656e77314e228a153eef610c1d7c.bitwarden.com +carLicense: 6FM2TI +departmentNumber: 1805 +employeeType: Contract +homePhone: +1 510 908-3138 +initials: N. S. +mobile: +1 510 872-6671 +pager: +1 510 819-3967 +roomNumber: 8010 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Con Lampman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Con Lampman +sn: Lampman +description: This is Con Lampman's description +facsimileTelephoneNumber: +1 408 373-4823 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 706-6248 +title: Associate Product Testing President +userPassword: Password1 +uid: LampmanC +givenName: Con +mail: LampmanC@2e02b5adbe00404a986538a6f94c5721.bitwarden.com +carLicense: U0H1GO +departmentNumber: 3014 +employeeType: Employee +homePhone: +1 408 344-4449 +initials: C. L. +mobile: +1 408 993-8331 +pager: +1 408 174-7359 +roomNumber: 9717 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tidwell Plssup,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tidwell Plssup +sn: Plssup +description: This is Tidwell Plssup's description +facsimileTelephoneNumber: +1 415 156-1727 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 791-3290 +title: Master Product Development Vice President +userPassword: Password1 +uid: PlssupT +givenName: Tidwell +mail: PlssupT@7099256f6cc64433985279df12772e6d.bitwarden.com +carLicense: CWGNBF +departmentNumber: 9985 +employeeType: Employee +homePhone: +1 415 542-3726 +initials: T. P. +mobile: +1 415 109-6086 +pager: +1 415 850-7735 +roomNumber: 9681 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felipa Romanowski +sn: Romanowski +description: This is Felipa Romanowski's description +facsimileTelephoneNumber: +1 510 175-5766 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 258-2197 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: RomanowF +givenName: Felipa +mail: RomanowF@d236a57ac59c480697085ae127e79e8f.bitwarden.com +carLicense: N1UGS2 +departmentNumber: 9648 +employeeType: Contract +homePhone: +1 510 412-9509 +initials: F. R. +mobile: +1 510 976-2282 +pager: +1 510 324-4189 +roomNumber: 9477 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dwight Goatcher,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dwight Goatcher +sn: Goatcher +description: This is Dwight Goatcher's description +facsimileTelephoneNumber: +1 415 158-2676 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 731-3969 +title: Chief Product Development Grunt +userPassword: Password1 +uid: GoatcheD +givenName: Dwight +mail: GoatcheD@9598004b7f184bb5a3e7c8cfe79e99ae.bitwarden.com +carLicense: BJLG65 +departmentNumber: 9238 +employeeType: Employee +homePhone: +1 415 733-4968 +initials: D. G. +mobile: +1 415 813-1558 +pager: +1 415 277-7520 +roomNumber: 8777 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Germana Easson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Germana Easson +sn: Easson +description: This is Germana Easson's description +facsimileTelephoneNumber: +1 213 140-8796 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 556-4333 +title: Master Product Development Artist +userPassword: Password1 +uid: EassonG +givenName: Germana +mail: EassonG@35bbac299f3146f4a62300231e440164.bitwarden.com +carLicense: 3BEDJL +departmentNumber: 5047 +employeeType: Normal +homePhone: +1 213 514-2387 +initials: G. E. +mobile: +1 213 878-3966 +pager: +1 213 483-7112 +roomNumber: 9817 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilly Recsnik +sn: Recsnik +description: This is Lilly Recsnik's description +facsimileTelephoneNumber: +1 415 241-4083 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 415 409-6795 +title: Junior Product Testing Writer +userPassword: Password1 +uid: RecsnikL +givenName: Lilly +mail: RecsnikL@46edd6cdf36f4626b2c693acecb611c2.bitwarden.com +carLicense: 9QTXKQ +departmentNumber: 4962 +employeeType: Contract +homePhone: +1 415 401-5189 +initials: L. R. +mobile: +1 415 992-5291 +pager: +1 415 598-2860 +roomNumber: 8738 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosetta Hatz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosetta Hatz +sn: Hatz +description: This is Rosetta Hatz's description +facsimileTelephoneNumber: +1 818 364-5673 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 850-3496 +title: Master Peons Artist +userPassword: Password1 +uid: HatzR +givenName: Rosetta +mail: HatzR@3177f113b2494bf084a4349d34933284.bitwarden.com +carLicense: JXIPH4 +departmentNumber: 6326 +employeeType: Normal +homePhone: +1 818 156-1025 +initials: R. H. +mobile: +1 818 937-7413 +pager: +1 818 847-7414 +roomNumber: 9582 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Chen Karsan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chen Karsan +sn: Karsan +description: This is Chen Karsan's description +facsimileTelephoneNumber: +1 804 159-9461 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 416-2263 +title: Chief Administrative Developer +userPassword: Password1 +uid: KarsanC +givenName: Chen +mail: KarsanC@4184e18cf063406b853c169572538938.bitwarden.com +carLicense: PFRFJX +departmentNumber: 3272 +employeeType: Contract +homePhone: +1 804 293-2747 +initials: C. K. +mobile: +1 804 882-9648 +pager: +1 804 644-2494 +roomNumber: 8996 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwennie Aronstam +sn: Aronstam +description: This is Gwennie Aronstam's description +facsimileTelephoneNumber: +1 818 655-1786 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 536-1962 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: AronstaG +givenName: Gwennie +mail: AronstaG@55bf87fb786d4ac6b99a663700910163.bitwarden.com +carLicense: AYCUV0 +departmentNumber: 9511 +employeeType: Contract +homePhone: +1 818 533-2459 +initials: G. A. +mobile: +1 818 809-9475 +pager: +1 818 249-2054 +roomNumber: 9752 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wendell Mujahed +sn: Mujahed +description: This is Wendell Mujahed's description +facsimileTelephoneNumber: +1 408 705-9966 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 244-8127 +title: Junior Product Testing President +userPassword: Password1 +uid: MujahedW +givenName: Wendell +mail: MujahedW@1eab24bbb3db4e83b8ad0b7859744ea5.bitwarden.com +carLicense: 82J7AQ +departmentNumber: 4635 +employeeType: Employee +homePhone: +1 408 276-1115 +initials: W. M. +mobile: +1 408 897-3167 +pager: +1 408 514-9565 +roomNumber: 8645 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jorie Maltese,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jorie Maltese +sn: Maltese +description: This is Jorie Maltese's description +facsimileTelephoneNumber: +1 510 947-8950 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 510 493-9637 +title: Supreme Product Development Dictator +userPassword: Password1 +uid: MalteseJ +givenName: Jorie +mail: MalteseJ@761b142c7930458e927f8f3e0fb5672f.bitwarden.com +carLicense: QXH8EB +departmentNumber: 6323 +employeeType: Contract +homePhone: +1 510 851-6066 +initials: J. M. +mobile: +1 510 174-6057 +pager: +1 510 221-1260 +roomNumber: 9738 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dpnlab Corker +sn: Corker +description: This is Dpnlab Corker's description +facsimileTelephoneNumber: +1 510 685-8982 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 991-7216 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: CorkerD +givenName: Dpnlab +mail: CorkerD@d0ea38ebac994dc19876844fd02c8f1a.bitwarden.com +carLicense: R5GFOH +departmentNumber: 1422 +employeeType: Employee +homePhone: +1 510 537-8012 +initials: D. C. +mobile: +1 510 773-6211 +pager: +1 510 427-7231 +roomNumber: 9849 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Corilla Filkins,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corilla Filkins +sn: Filkins +description: This is Corilla Filkins's description +facsimileTelephoneNumber: +1 510 306-9722 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 198-6664 +title: Associate Product Development Warrior +userPassword: Password1 +uid: FilkinsC +givenName: Corilla +mail: FilkinsC@f7fb17758cf24933ad847773d4770955.bitwarden.com +carLicense: A5D13L +departmentNumber: 9041 +employeeType: Normal +homePhone: +1 510 260-8746 +initials: C. F. +mobile: +1 510 163-1711 +pager: +1 510 118-9854 +roomNumber: 8242 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kassem Chaput,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kassem Chaput +sn: Chaput +description: This is Kassem Chaput's description +facsimileTelephoneNumber: +1 415 659-2575 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 464-1316 +title: Chief Payroll Madonna +userPassword: Password1 +uid: ChaputK +givenName: Kassem +mail: ChaputK@565d16d72934479d9f2d0ae2e179f3ec.bitwarden.com +carLicense: DV21R9 +departmentNumber: 4449 +employeeType: Normal +homePhone: +1 415 163-2024 +initials: K. C. +mobile: +1 415 976-5953 +pager: +1 415 258-9199 +roomNumber: 8306 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Karl Rombeek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karl Rombeek +sn: Rombeek +description: This is Karl Rombeek's description +facsimileTelephoneNumber: +1 213 687-3435 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 403-8920 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: RombeekK +givenName: Karl +mail: RombeekK@511a4fe0275b495abaca9f281c6b8eb4.bitwarden.com +carLicense: 7L6SOA +departmentNumber: 8998 +employeeType: Employee +homePhone: +1 213 227-8362 +initials: K. R. +mobile: +1 213 599-8886 +pager: +1 213 741-5199 +roomNumber: 9784 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquie Loadbuilder +sn: Loadbuilder +description: This is Jacquie Loadbuilder's description +facsimileTelephoneNumber: +1 206 465-9561 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 584-3877 +title: Supreme Human Resources Director +userPassword: Password1 +uid: LoadbuiJ +givenName: Jacquie +mail: LoadbuiJ@cc8e55108b16486f8e21052882b1416b.bitwarden.com +carLicense: WLF74M +departmentNumber: 3956 +employeeType: Contract +homePhone: +1 206 373-2685 +initials: J. L. +mobile: +1 206 455-3665 +pager: +1 206 535-5783 +roomNumber: 8494 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hiren Leinen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hiren Leinen +sn: Leinen +description: This is Hiren Leinen's description +facsimileTelephoneNumber: +1 415 771-3182 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 502-1243 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: LeinenH +givenName: Hiren +mail: LeinenH@8029b2d4dc2441e188d25c43ec86afd1.bitwarden.com +carLicense: TV6CRD +departmentNumber: 7124 +employeeType: Normal +homePhone: +1 415 723-6717 +initials: H. L. +mobile: +1 415 367-3208 +pager: +1 415 470-9625 +roomNumber: 9775 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=My Handforth,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: My Handforth +sn: Handforth +description: This is My Handforth's description +facsimileTelephoneNumber: +1 408 347-4227 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 874-8506 +title: Master Human Resources Fellow +userPassword: Password1 +uid: HandforM +givenName: My +mail: HandforM@d6177e62683049c2b0fc2f004265e4ff.bitwarden.com +carLicense: C8S3NW +departmentNumber: 2240 +employeeType: Employee +homePhone: +1 408 271-4996 +initials: M. H. +mobile: +1 408 306-5668 +pager: +1 408 276-9265 +roomNumber: 9392 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ruby Duffy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruby Duffy +sn: Duffy +description: This is Ruby Duffy's description +facsimileTelephoneNumber: +1 213 607-8775 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 422-2544 +title: Associate Janitorial Artist +userPassword: Password1 +uid: DuffyR +givenName: Ruby +mail: DuffyR@b96d23a92c60424cb67c26b9d6c07a6e.bitwarden.com +carLicense: FIQHP2 +departmentNumber: 6568 +employeeType: Employee +homePhone: +1 213 274-3506 +initials: R. D. +mobile: +1 213 693-5236 +pager: +1 213 939-5227 +roomNumber: 8537 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ranjit Chaurasia,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranjit Chaurasia +sn: Chaurasia +description: This is Ranjit Chaurasia's description +facsimileTelephoneNumber: +1 206 465-6114 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 450-3653 +title: Junior Management Pinhead +userPassword: Password1 +uid: ChaurasR +givenName: Ranjit +mail: ChaurasR@f115ded519524610ab74393c6ce8cdfc.bitwarden.com +carLicense: LS6EM9 +departmentNumber: 3775 +employeeType: Contract +homePhone: +1 206 878-8781 +initials: R. C. +mobile: +1 206 986-7167 +pager: +1 206 474-7829 +roomNumber: 8749 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Xiaofeng Dach,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xiaofeng Dach +sn: Dach +description: This is Xiaofeng Dach's description +facsimileTelephoneNumber: +1 510 479-8348 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 651-5633 +title: Supreme Management Punk +userPassword: Password1 +uid: DachX +givenName: Xiaofeng +mail: DachX@ced4b5fef1fc484594acf10d2913d12f.bitwarden.com +carLicense: 92OXEJ +departmentNumber: 5565 +employeeType: Normal +homePhone: +1 510 876-1287 +initials: X. D. +mobile: +1 510 562-2982 +pager: +1 510 829-3356 +roomNumber: 9104 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bob Chaddock,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bob Chaddock +sn: Chaddock +description: This is Bob Chaddock's description +facsimileTelephoneNumber: +1 804 149-6346 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 804 200-5861 +title: Supreme Payroll Technician +userPassword: Password1 +uid: ChaddocB +givenName: Bob +mail: ChaddocB@8b4e180a03f04f079b534af88c685eca.bitwarden.com +carLicense: 1TMQCR +departmentNumber: 1518 +employeeType: Normal +homePhone: +1 804 655-2765 +initials: B. C. +mobile: +1 804 133-8773 +pager: +1 804 994-5403 +roomNumber: 9879 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Beatrice Costas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatrice Costas +sn: Costas +description: This is Beatrice Costas's description +facsimileTelephoneNumber: +1 804 634-1852 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 254-3534 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: CostasB +givenName: Beatrice +mail: CostasB@98fcbf8cd4594526818e89f96ce2b8ac.bitwarden.com +carLicense: GFYABH +departmentNumber: 8584 +employeeType: Employee +homePhone: +1 804 314-9004 +initials: B. C. +mobile: +1 804 384-4666 +pager: +1 804 377-2235 +roomNumber: 9519 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hynda Miksik,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hynda Miksik +sn: Miksik +description: This is Hynda Miksik's description +facsimileTelephoneNumber: +1 408 521-9878 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 206-1841 +title: Master Administrative Czar +userPassword: Password1 +uid: MiksikH +givenName: Hynda +mail: MiksikH@2050a6c4c8e746ae88bec9f7634b8d59.bitwarden.com +carLicense: 8KT1TD +departmentNumber: 1710 +employeeType: Normal +homePhone: +1 408 552-2794 +initials: H. M. +mobile: +1 408 692-4362 +pager: +1 408 313-3064 +roomNumber: 9092 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jacquie Jablonski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquie Jablonski +sn: Jablonski +description: This is Jacquie Jablonski's description +facsimileTelephoneNumber: +1 804 731-7127 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 499-4345 +title: Master Peons Stooge +userPassword: Password1 +uid: JablonsJ +givenName: Jacquie +mail: JablonsJ@6c5d1cc04bcc4690b1cd5f323caabcec.bitwarden.com +carLicense: 9DLSDP +departmentNumber: 2099 +employeeType: Normal +homePhone: +1 804 798-1435 +initials: J. J. +mobile: +1 804 818-6391 +pager: +1 804 793-3794 +roomNumber: 8254 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ashok Karol,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashok Karol +sn: Karol +description: This is Ashok Karol's description +facsimileTelephoneNumber: +1 213 486-8591 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 837-8419 +title: Junior Management Figurehead +userPassword: Password1 +uid: KarolA +givenName: Ashok +mail: KarolA@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com +carLicense: N98V5B +departmentNumber: 4254 +employeeType: Contract +homePhone: +1 213 499-2471 +initials: A. K. +mobile: +1 213 621-8348 +pager: +1 213 976-6267 +roomNumber: 8373 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Zeljko Goodrow,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zeljko Goodrow +sn: Goodrow +description: This is Zeljko Goodrow's description +facsimileTelephoneNumber: +1 213 646-8054 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 550-7116 +title: Supreme Management Director +userPassword: Password1 +uid: GoodrowZ +givenName: Zeljko +mail: GoodrowZ@9e59018d045045c3992ddf9f97eba64e.bitwarden.com +carLicense: OPYAKP +departmentNumber: 6558 +employeeType: Normal +homePhone: +1 213 327-6157 +initials: Z. G. +mobile: +1 213 625-8199 +pager: +1 213 632-7078 +roomNumber: 8918 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=ManFai Yearwood,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ManFai Yearwood +sn: Yearwood +description: This is ManFai Yearwood's description +facsimileTelephoneNumber: +1 510 620-7973 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 510 878-5777 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: YearwooM +givenName: ManFai +mail: YearwooM@0ac0d65685754a5e856c139313371211.bitwarden.com +carLicense: 1642T1 +departmentNumber: 9995 +employeeType: Employee +homePhone: +1 510 952-2960 +initials: M. Y. +mobile: +1 510 898-2115 +pager: +1 510 821-4694 +roomNumber: 8288 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Grazia Ruben,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grazia Ruben +sn: Ruben +description: This is Grazia Ruben's description +facsimileTelephoneNumber: +1 818 580-5727 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 348-6122 +title: Master Product Development Dictator +userPassword: Password1 +uid: RubenG +givenName: Grazia +mail: RubenG@fd5b94e804a044a7a800a8f248c0732b.bitwarden.com +carLicense: 2W25N3 +departmentNumber: 7269 +employeeType: Contract +homePhone: +1 818 529-8728 +initials: G. R. +mobile: +1 818 905-9485 +pager: +1 818 965-7716 +roomNumber: 9510 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gee Buechner,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gee Buechner +sn: Buechner +description: This is Gee Buechner's description +facsimileTelephoneNumber: +1 804 971-8842 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 106-8001 +title: Chief Payroll Manager +userPassword: Password1 +uid: BuechneG +givenName: Gee +mail: BuechneG@c45f1df6bb5c46f48c3cc7bdf88a0bc6.bitwarden.com +carLicense: SH5WVK +departmentNumber: 9854 +employeeType: Contract +homePhone: +1 804 653-7412 +initials: G. B. +mobile: +1 804 116-8412 +pager: +1 804 601-5119 +roomNumber: 9652 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benedicta Hamlett +sn: Hamlett +description: This is Benedicta Hamlett's description +facsimileTelephoneNumber: +1 213 663-3819 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 923-4691 +title: Master Product Development Admin +userPassword: Password1 +uid: HamlettB +givenName: Benedicta +mail: HamlettB@a35a1dd24459415e944815d7f16bf11e.bitwarden.com +carLicense: W5NR29 +departmentNumber: 3624 +employeeType: Contract +homePhone: +1 213 354-4470 +initials: B. H. +mobile: +1 213 429-3061 +pager: +1 213 254-1880 +roomNumber: 9949 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kial Skillen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kial Skillen +sn: Skillen +description: This is Kial Skillen's description +facsimileTelephoneNumber: +1 206 756-8190 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 734-3550 +title: Chief Payroll Engineer +userPassword: Password1 +uid: SkillenK +givenName: Kial +mail: SkillenK@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com +carLicense: 458VRJ +departmentNumber: 4992 +employeeType: Contract +homePhone: +1 206 374-2273 +initials: K. S. +mobile: +1 206 398-2549 +pager: +1 206 480-7745 +roomNumber: 9770 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Raul Dantu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raul Dantu +sn: Dantu +description: This is Raul Dantu's description +facsimileTelephoneNumber: +1 510 119-2705 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 510 922-1609 +title: Associate Administrative Visionary +userPassword: Password1 +uid: DantuR +givenName: Raul +mail: DantuR@13acf9d4e3a0437699a9a1215c20b7b8.bitwarden.com +carLicense: 27U0GW +departmentNumber: 8056 +employeeType: Employee +homePhone: +1 510 255-4242 +initials: R. D. +mobile: +1 510 655-1858 +pager: +1 510 607-4460 +roomNumber: 8993 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Liuka Awano,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liuka Awano +sn: Awano +description: This is Liuka Awano's description +facsimileTelephoneNumber: +1 510 783-2688 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 870-9983 +title: Associate Payroll Manager +userPassword: Password1 +uid: AwanoL +givenName: Liuka +mail: AwanoL@f3a0a467837a44759c47dbd3cc82740e.bitwarden.com +carLicense: VATE52 +departmentNumber: 4119 +employeeType: Contract +homePhone: +1 510 712-6112 +initials: L. A. +mobile: +1 510 586-7085 +pager: +1 510 526-2025 +roomNumber: 8397 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Caryl Teder,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caryl Teder +sn: Teder +description: This is Caryl Teder's description +facsimileTelephoneNumber: +1 510 448-3864 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 832-1543 +title: Supreme Management Mascot +userPassword: Password1 +uid: TederC +givenName: Caryl +mail: TederC@4c3f9ac9725344988223c5450f40e73e.bitwarden.com +carLicense: 41QQ0B +departmentNumber: 1175 +employeeType: Contract +homePhone: +1 510 614-2298 +initials: C. T. +mobile: +1 510 808-8961 +pager: +1 510 757-8860 +roomNumber: 8036 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shlomo Wacker +sn: Wacker +description: This is Shlomo Wacker's description +facsimileTelephoneNumber: +1 408 586-3119 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 408 444-5027 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: WackerS +givenName: Shlomo +mail: WackerS@264d4763d0c84adba308d4c4cab556c4.bitwarden.com +carLicense: G3Q6UX +departmentNumber: 7407 +employeeType: Employee +homePhone: +1 408 991-7526 +initials: S. W. +mobile: +1 408 228-7407 +pager: +1 408 344-8592 +roomNumber: 9589 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xantippe Gutzmann +sn: Gutzmann +description: This is Xantippe Gutzmann's description +facsimileTelephoneNumber: +1 415 813-5295 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 326-2361 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: GutzmanX +givenName: Xantippe +mail: GutzmanX@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com +carLicense: 5HPGX7 +departmentNumber: 5661 +employeeType: Employee +homePhone: +1 415 236-7125 +initials: X. G. +mobile: +1 415 951-1194 +pager: +1 415 285-8820 +roomNumber: 9804 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lex Matheson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lex Matheson +sn: Matheson +description: This is Lex Matheson's description +facsimileTelephoneNumber: +1 510 651-8501 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 510 653-2405 +title: Chief Product Development Consultant +userPassword: Password1 +uid: MathesoL +givenName: Lex +mail: MathesoL@228cb153fdc24b46957a116ec2859b16.bitwarden.com +carLicense: B31IC7 +departmentNumber: 8780 +employeeType: Normal +homePhone: +1 510 815-7962 +initials: L. M. +mobile: +1 510 255-3141 +pager: +1 510 469-5492 +roomNumber: 9854 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jamie Ballard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jamie Ballard +sn: Ballard +description: This is Jamie Ballard's description +facsimileTelephoneNumber: +1 804 469-4407 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 793-7769 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: BallardJ +givenName: Jamie +mail: BallardJ@b2685c20be7244a2b29f08c6434ac903.bitwarden.com +carLicense: 5BSYJ5 +departmentNumber: 9829 +employeeType: Employee +homePhone: +1 804 781-2541 +initials: J. B. +mobile: +1 804 361-8224 +pager: +1 804 891-4202 +roomNumber: 8041 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gaye Telos,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaye Telos +sn: Telos +description: This is Gaye Telos's description +facsimileTelephoneNumber: +1 408 516-4540 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 114-7470 +title: Master Human Resources Artist +userPassword: Password1 +uid: TelosG +givenName: Gaye +mail: TelosG@5230c42fa8a044a1a7ccbc367b9402a8.bitwarden.com +carLicense: RKVHW0 +departmentNumber: 6036 +employeeType: Employee +homePhone: +1 408 451-6123 +initials: G. T. +mobile: +1 408 140-4964 +pager: +1 408 986-9445 +roomNumber: 9442 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Laz Wilemon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laz Wilemon +sn: Wilemon +description: This is Laz Wilemon's description +facsimileTelephoneNumber: +1 408 907-6740 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 678-5858 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: WilemonL +givenName: Laz +mail: WilemonL@dc196a8022ff465cb8dbe2eba3225125.bitwarden.com +carLicense: N0UJAG +departmentNumber: 5368 +employeeType: Normal +homePhone: +1 408 484-8576 +initials: L. W. +mobile: +1 408 629-6791 +pager: +1 408 833-4176 +roomNumber: 9491 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Euphemia Novak,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Euphemia Novak +sn: Novak +description: This is Euphemia Novak's description +facsimileTelephoneNumber: +1 408 158-8000 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 408 941-1746 +title: Junior Administrative Pinhead +userPassword: Password1 +uid: NovakE +givenName: Euphemia +mail: NovakE@0d3f6cc1cdcf4ec187af48e309baf95b.bitwarden.com +carLicense: JP6NY9 +departmentNumber: 9360 +employeeType: Contract +homePhone: +1 408 797-4452 +initials: E. N. +mobile: +1 408 543-3337 +pager: +1 408 350-3355 +roomNumber: 8738 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Wini Haverty,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wini Haverty +sn: Haverty +description: This is Wini Haverty's description +facsimileTelephoneNumber: +1 818 736-7585 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 897-9135 +title: Junior Product Development Pinhead +userPassword: Password1 +uid: HavertyW +givenName: Wini +mail: HavertyW@90c9f3c96d1149a298fca9a67a1ea082.bitwarden.com +carLicense: P8VX8W +departmentNumber: 2662 +employeeType: Employee +homePhone: +1 818 128-2681 +initials: W. H. +mobile: +1 818 180-9758 +pager: +1 818 502-9610 +roomNumber: 8239 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Halli Mavis,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Halli Mavis +sn: Mavis +description: This is Halli Mavis's description +facsimileTelephoneNumber: +1 206 219-6459 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 470-7885 +title: Chief Management Madonna +userPassword: Password1 +uid: MavisH +givenName: Halli +mail: MavisH@bcd670afb5d343b18feec15b095dbc25.bitwarden.com +carLicense: QEH3XI +departmentNumber: 6974 +employeeType: Employee +homePhone: +1 206 703-3352 +initials: H. M. +mobile: +1 206 745-7336 +pager: +1 206 543-2471 +roomNumber: 8349 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=WingMan Vesterdal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WingMan Vesterdal +sn: Vesterdal +description: This is WingMan Vesterdal's description +facsimileTelephoneNumber: +1 804 600-1262 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 739-1112 +title: Associate Peons Developer +userPassword: Password1 +uid: VesterdW +givenName: WingMan +mail: VesterdW@e6fadcf8493b4530b5a3c436c8c0ed93.bitwarden.com +carLicense: 8FEFIC +departmentNumber: 5273 +employeeType: Employee +homePhone: +1 804 987-5112 +initials: W. V. +mobile: +1 804 546-3638 +pager: +1 804 858-2260 +roomNumber: 8111 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Blithe Keuning,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blithe Keuning +sn: Keuning +description: This is Blithe Keuning's description +facsimileTelephoneNumber: +1 818 395-8001 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 181-3631 +title: Supreme Product Development Pinhead +userPassword: Password1 +uid: KeuningB +givenName: Blithe +mail: KeuningB@641b3c32e986403cb54e8416d6ccf047.bitwarden.com +carLicense: ENNTD6 +departmentNumber: 9808 +employeeType: Employee +homePhone: +1 818 887-9214 +initials: B. K. +mobile: +1 818 359-9602 +pager: +1 818 601-3544 +roomNumber: 9613 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Katya Tracz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katya Tracz +sn: Tracz +description: This is Katya Tracz's description +facsimileTelephoneNumber: +1 408 383-5768 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 912-6929 +title: Junior Product Testing Dictator +userPassword: Password1 +uid: TraczK +givenName: Katya +mail: TraczK@5ffbce7650f24a03b916e3651a1a21d9.bitwarden.com +carLicense: 3XHDXL +departmentNumber: 2610 +employeeType: Employee +homePhone: +1 408 671-5786 +initials: K. T. +mobile: +1 408 256-3130 +pager: +1 408 972-5823 +roomNumber: 9460 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Raymond Biggers,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raymond Biggers +sn: Biggers +description: This is Raymond Biggers's description +facsimileTelephoneNumber: +1 408 931-6630 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 408 371-5378 +title: Supreme Product Development Manager +userPassword: Password1 +uid: BiggersR +givenName: Raymond +mail: BiggersR@c4dfc71b0753437c958ea6ea07827916.bitwarden.com +carLicense: 19E6IM +departmentNumber: 7623 +employeeType: Employee +homePhone: +1 408 932-4639 +initials: R. B. +mobile: +1 408 939-6615 +pager: +1 408 208-5495 +roomNumber: 8327 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Theresita Mashura,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theresita Mashura +sn: Mashura +description: This is Theresita Mashura's description +facsimileTelephoneNumber: +1 408 878-3141 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 507-9769 +title: Chief Peons Dictator +userPassword: Password1 +uid: MashuraT +givenName: Theresita +mail: MashuraT@4281cc0a8ccb4f14858483f470a527dc.bitwarden.com +carLicense: POVXGG +departmentNumber: 7157 +employeeType: Employee +homePhone: +1 408 656-4340 +initials: T. M. +mobile: +1 408 666-6769 +pager: +1 408 452-5235 +roomNumber: 8788 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Joly Dummer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joly Dummer +sn: Dummer +description: This is Joly Dummer's description +facsimileTelephoneNumber: +1 818 224-1312 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 633-9051 +title: Junior Human Resources Evangelist +userPassword: Password1 +uid: DummerJ +givenName: Joly +mail: DummerJ@0708f7927e154039bccaf12df5697875.bitwarden.com +carLicense: 8T49I2 +departmentNumber: 5446 +employeeType: Contract +homePhone: +1 818 140-6392 +initials: J. D. +mobile: +1 818 784-9684 +pager: +1 818 322-9701 +roomNumber: 9619 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Feng Yeh,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Feng Yeh +sn: Yeh +description: This is Feng Yeh's description +facsimileTelephoneNumber: +1 804 223-6256 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 715-3048 +title: Chief Peons Janitor +userPassword: Password1 +uid: YehF +givenName: Feng +mail: YehF@7e96834d9f214835923bce90da137a59.bitwarden.com +carLicense: UUMKUU +departmentNumber: 5562 +employeeType: Employee +homePhone: +1 804 762-9899 +initials: F. Y. +mobile: +1 804 496-9338 +pager: +1 804 772-3540 +roomNumber: 8587 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Robin Martenson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robin Martenson +sn: Martenson +description: This is Robin Martenson's description +facsimileTelephoneNumber: +1 408 572-5695 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 116-4126 +title: Master Peons Admin +userPassword: Password1 +uid: MartensR +givenName: Robin +mail: MartensR@c82abe08fb0140599e247f8f838f49b0.bitwarden.com +carLicense: 88Y5AL +departmentNumber: 6434 +employeeType: Employee +homePhone: +1 408 573-4773 +initials: R. M. +mobile: +1 408 822-1051 +pager: +1 408 379-8795 +roomNumber: 8202 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yolanthe Veloria +sn: Veloria +description: This is Yolanthe Veloria's description +facsimileTelephoneNumber: +1 206 703-5416 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 250-3959 +title: Junior Product Development Dictator +userPassword: Password1 +uid: VeloriaY +givenName: Yolanthe +mail: VeloriaY@74e0243ab8e64a19864d198a422eff4d.bitwarden.com +carLicense: OBXGJ7 +departmentNumber: 3707 +employeeType: Normal +homePhone: +1 206 740-9119 +initials: Y. V. +mobile: +1 206 232-5901 +pager: +1 206 319-3911 +roomNumber: 9867 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kara Tarle,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kara Tarle +sn: Tarle +description: This is Kara Tarle's description +facsimileTelephoneNumber: +1 818 800-5385 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 945-4270 +title: Junior Administrative Vice President +userPassword: Password1 +uid: TarleK +givenName: Kara +mail: TarleK@e0ae53f8b21d44948377b9044eb8a824.bitwarden.com +carLicense: F7PCH6 +departmentNumber: 1523 +employeeType: Employee +homePhone: +1 818 531-4293 +initials: K. T. +mobile: +1 818 397-7680 +pager: +1 818 316-7780 +roomNumber: 8804 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jerzy Benoit,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jerzy Benoit +sn: Benoit +description: This is Jerzy Benoit's description +facsimileTelephoneNumber: +1 408 506-2545 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 713-3238 +title: Junior Management Warrior +userPassword: Password1 +uid: BenoitJ +givenName: Jerzy +mail: BenoitJ@e389b2400b87417ba8d4e795ac0d4324.bitwarden.com +carLicense: TM5AL0 +departmentNumber: 1501 +employeeType: Contract +homePhone: +1 408 520-2378 +initials: J. B. +mobile: +1 408 513-1690 +pager: +1 408 767-8124 +roomNumber: 9985 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Abahri Brauer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abahri Brauer +sn: Brauer +description: This is Abahri Brauer's description +facsimileTelephoneNumber: +1 818 325-7706 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 466-7576 +title: Supreme Payroll Punk +userPassword: Password1 +uid: BrauerA +givenName: Abahri +mail: BrauerA@035c0401613a40f1b8232e8a6d1fda36.bitwarden.com +carLicense: DHJDCQ +departmentNumber: 1545 +employeeType: Contract +homePhone: +1 818 237-1115 +initials: A. B. +mobile: +1 818 891-8152 +pager: +1 818 574-3993 +roomNumber: 9634 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Baljinder Kowalsky,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baljinder Kowalsky +sn: Kowalsky +description: This is Baljinder Kowalsky's description +facsimileTelephoneNumber: +1 804 396-1106 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 989-5288 +title: Junior Management Developer +userPassword: Password1 +uid: KowalskB +givenName: Baljinder +mail: KowalskB@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com +carLicense: Y3HCS1 +departmentNumber: 7759 +employeeType: Contract +homePhone: +1 804 371-4722 +initials: B. K. +mobile: +1 804 733-8768 +pager: +1 804 662-8830 +roomNumber: 8872 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kimberly Chung,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kimberly Chung +sn: Chung +description: This is Kimberly Chung's description +facsimileTelephoneNumber: +1 415 831-4999 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 390-3953 +title: Master Peons Grunt +userPassword: Password1 +uid: ChungK +givenName: Kimberly +mail: ChungK@0fde233efcb84afa94a2f35004f78f85.bitwarden.com +carLicense: 9EQ8F2 +departmentNumber: 8818 +employeeType: Normal +homePhone: +1 415 167-7649 +initials: K. C. +mobile: +1 415 846-7706 +pager: +1 415 854-6473 +roomNumber: 9622 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shaibal Andrew,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaibal Andrew +sn: Andrew +description: This is Shaibal Andrew's description +facsimileTelephoneNumber: +1 213 244-8044 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 645-3649 +title: Master Administrative Figurehead +userPassword: Password1 +uid: AndrewS +givenName: Shaibal +mail: AndrewS@16a833e1195d4b3a932748c3f7fbc836.bitwarden.com +carLicense: 4LSTXA +departmentNumber: 3810 +employeeType: Contract +homePhone: +1 213 767-9319 +initials: S. A. +mobile: +1 213 464-8758 +pager: +1 213 184-5362 +roomNumber: 9672 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anatoly Gulbrandsen +sn: Gulbrandsen +description: This is Anatoly Gulbrandsen's description +facsimileTelephoneNumber: +1 213 695-1153 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 366-3573 +title: Junior Management Czar +userPassword: Password1 +uid: GulbranA +givenName: Anatoly +mail: GulbranA@3dc397261aae4717a7ed87ae45b11795.bitwarden.com +carLicense: A4WJH7 +departmentNumber: 1490 +employeeType: Normal +homePhone: +1 213 186-6994 +initials: A. G. +mobile: +1 213 788-4104 +pager: +1 213 894-6194 +roomNumber: 8350 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Oralla ENG,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oralla ENG +sn: ENG +description: This is Oralla ENG's description +facsimileTelephoneNumber: +1 408 400-8783 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 267-6283 +title: Associate Payroll Artist +userPassword: Password1 +uid: ENGO +givenName: Oralla +mail: ENGO@8237422e949f4acf92d97f787e6bf098.bitwarden.com +carLicense: XBAGQ2 +departmentNumber: 4793 +employeeType: Normal +homePhone: +1 408 388-4691 +initials: O. E. +mobile: +1 408 937-3057 +pager: +1 408 185-9444 +roomNumber: 8637 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rubina RTP,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rubina RTP +sn: RTP +description: This is Rubina RTP's description +facsimileTelephoneNumber: +1 213 681-3020 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 379-8475 +title: Supreme Payroll Artist +userPassword: Password1 +uid: RTPR +givenName: Rubina +mail: RTPR@8eafc85110924d0ba63ca69cd0025630.bitwarden.com +carLicense: U97K0V +departmentNumber: 8305 +employeeType: Normal +homePhone: +1 213 192-5217 +initials: R. R. +mobile: +1 213 135-1717 +pager: +1 213 170-8902 +roomNumber: 8664 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Orie Larribeau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orie Larribeau +sn: Larribeau +description: This is Orie Larribeau's description +facsimileTelephoneNumber: +1 206 922-6267 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 428-9093 +title: Supreme Janitorial Sales Rep +userPassword: Password1 +uid: LarribeO +givenName: Orie +mail: LarribeO@7cc0e5cc88d04bf3b06af1f2915df358.bitwarden.com +carLicense: PMATNQ +departmentNumber: 1914 +employeeType: Contract +homePhone: +1 206 621-4164 +initials: O. L. +mobile: +1 206 493-4887 +pager: +1 206 761-6896 +roomNumber: 8188 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brear Hagwood,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brear Hagwood +sn: Hagwood +description: This is Brear Hagwood's description +facsimileTelephoneNumber: +1 206 691-6992 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 994-4105 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: HagwoodB +givenName: Brear +mail: HagwoodB@65740d0bd6fb4b44a86d2ab249218002.bitwarden.com +carLicense: 9N4ICI +departmentNumber: 9450 +employeeType: Employee +homePhone: +1 206 793-9772 +initials: B. H. +mobile: +1 206 362-4117 +pager: +1 206 450-9657 +roomNumber: 9394 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Radford Gille,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Radford Gille +sn: Gille +description: This is Radford Gille's description +facsimileTelephoneNumber: +1 415 589-3834 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 308-9620 +title: Associate Administrative Grunt +userPassword: Password1 +uid: GilleR +givenName: Radford +mail: GilleR@cbaf8ba54a4e4d25a6793e6fa4afc667.bitwarden.com +carLicense: XRXRNW +departmentNumber: 9587 +employeeType: Normal +homePhone: +1 415 391-5444 +initials: R. G. +mobile: +1 415 501-5914 +pager: +1 415 631-1539 +roomNumber: 9436 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shina Chari,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shina Chari +sn: Chari +description: This is Shina Chari's description +facsimileTelephoneNumber: +1 206 806-7187 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 803-1977 +title: Junior Peons Director +userPassword: Password1 +uid: ChariS +givenName: Shina +mail: ChariS@a4a95102a2604c2bad416eca20575783.bitwarden.com +carLicense: 0861LL +departmentNumber: 1546 +employeeType: Normal +homePhone: +1 206 960-3198 +initials: S. C. +mobile: +1 206 932-5865 +pager: +1 206 878-9162 +roomNumber: 9514 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mariel Yan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariel Yan +sn: Yan +description: This is Mariel Yan's description +facsimileTelephoneNumber: +1 818 592-3614 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 723-4313 +title: Supreme Payroll Figurehead +userPassword: Password1 +uid: YanM +givenName: Mariel +mail: YanM@aa11a3e30f7d4b8b9f6e08ae63f7a50f.bitwarden.com +carLicense: BSOC26 +departmentNumber: 2881 +employeeType: Contract +homePhone: +1 818 457-9042 +initials: M. Y. +mobile: +1 818 291-1222 +pager: +1 818 478-5968 +roomNumber: 9003 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bakoury Whitten,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bakoury Whitten +sn: Whitten +description: This is Bakoury Whitten's description +facsimileTelephoneNumber: +1 408 553-1921 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 523-8015 +title: Chief Product Development Warrior +userPassword: Password1 +uid: WhittenB +givenName: Bakoury +mail: WhittenB@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com +carLicense: OCDYW2 +departmentNumber: 3134 +employeeType: Contract +homePhone: +1 408 283-7007 +initials: B. W. +mobile: +1 408 202-5311 +pager: +1 408 235-2954 +roomNumber: 8854 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Donovan Bedard,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donovan Bedard +sn: Bedard +description: This is Donovan Bedard's description +facsimileTelephoneNumber: +1 408 809-7743 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 623-6366 +title: Supreme Product Development Director +userPassword: Password1 +uid: BedardD +givenName: Donovan +mail: BedardD@d7d5276b76fc44cfaa24d383211b91ce.bitwarden.com +carLicense: PB0RUG +departmentNumber: 6308 +employeeType: Contract +homePhone: +1 408 705-6281 +initials: D. B. +mobile: +1 408 958-8392 +pager: +1 408 658-4420 +roomNumber: 8995 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Almeria Whitman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Almeria Whitman +sn: Whitman +description: This is Almeria Whitman's description +facsimileTelephoneNumber: +1 818 870-6938 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 852-6487 +title: Master Management Manager +userPassword: Password1 +uid: WhitmanA +givenName: Almeria +mail: WhitmanA@c1f68539655f4334b2d630ad0e029235.bitwarden.com +carLicense: GC7JXL +departmentNumber: 2193 +employeeType: Normal +homePhone: +1 818 851-5675 +initials: A. W. +mobile: +1 818 924-7590 +pager: +1 818 293-3914 +roomNumber: 8668 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ardyth Ely,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardyth Ely +sn: Ely +description: This is Ardyth Ely's description +facsimileTelephoneNumber: +1 818 461-8114 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 647-9680 +title: Associate Management Writer +userPassword: Password1 +uid: ElyA +givenName: Ardyth +mail: ElyA@d187b762206a464e954dc770f1e855cd.bitwarden.com +carLicense: 8E0BHA +departmentNumber: 4152 +employeeType: Contract +homePhone: +1 818 192-7080 +initials: A. E. +mobile: +1 818 919-5469 +pager: +1 818 430-1437 +roomNumber: 8086 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helenelizabeth Aydin +sn: Aydin +description: This is Helenelizabeth Aydin's description +facsimileTelephoneNumber: +1 818 997-1705 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 639-2366 +title: Chief Product Development Consultant +userPassword: Password1 +uid: AydinH +givenName: Helenelizabeth +mail: AydinH@8872be23f88a4521a0ed86c46ec5b63b.bitwarden.com +carLicense: QW5C0J +departmentNumber: 2846 +employeeType: Employee +homePhone: +1 818 384-1313 +initials: H. A. +mobile: +1 818 244-1066 +pager: +1 818 940-7246 +roomNumber: 9167 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aleen Meckler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aleen Meckler +sn: Meckler +description: This is Aleen Meckler's description +facsimileTelephoneNumber: +1 408 360-1634 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 378-2746 +title: Supreme Product Development Pinhead +userPassword: Password1 +uid: MecklerA +givenName: Aleen +mail: MecklerA@0dff8a8b68dc4196a7a7b4d0ac4c4efd.bitwarden.com +carLicense: EKEUX9 +departmentNumber: 4454 +employeeType: Normal +homePhone: +1 408 449-7449 +initials: A. M. +mobile: +1 408 684-2035 +pager: +1 408 543-6077 +roomNumber: 8260 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Riane Pantages,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Riane Pantages +sn: Pantages +description: This is Riane Pantages's description +facsimileTelephoneNumber: +1 213 984-6890 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 158-5084 +title: Master Janitorial Pinhead +userPassword: Password1 +uid: PantageR +givenName: Riane +mail: PantageR@6c99b676cc944a0f933ecc8837dfc70b.bitwarden.com +carLicense: 03T3MS +departmentNumber: 1133 +employeeType: Employee +homePhone: +1 213 538-2166 +initials: R. P. +mobile: +1 213 493-9804 +pager: +1 213 275-4958 +roomNumber: 8095 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Coral Wickes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coral Wickes +sn: Wickes +description: This is Coral Wickes's description +facsimileTelephoneNumber: +1 206 432-6720 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 206 541-2861 +title: Master Product Development Engineer +userPassword: Password1 +uid: WickesC +givenName: Coral +mail: WickesC@59a4a020a4c74747a44b5e60109428e1.bitwarden.com +carLicense: 3SB1HG +departmentNumber: 5792 +employeeType: Employee +homePhone: +1 206 190-3115 +initials: C. W. +mobile: +1 206 896-1773 +pager: +1 206 756-2354 +roomNumber: 9355 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ishan Giridharagopal +sn: Giridharagopal +description: This is Ishan Giridharagopal's description +facsimileTelephoneNumber: +1 415 844-9400 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 610-1126 +title: Associate Peons Manager +userPassword: Password1 +uid: GiridhaI +givenName: Ishan +mail: GiridhaI@0ee31c9eef10414a913b9102559e5257.bitwarden.com +carLicense: ROQOR7 +departmentNumber: 5153 +employeeType: Contract +homePhone: +1 415 534-7482 +initials: I. G. +mobile: +1 415 466-4665 +pager: +1 415 241-4503 +roomNumber: 9048 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dalia Doda,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dalia Doda +sn: Doda +description: This is Dalia Doda's description +facsimileTelephoneNumber: +1 510 530-2384 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 741-3925 +title: Chief Product Testing Manager +userPassword: Password1 +uid: DodaD +givenName: Dalia +mail: DodaD@4287a3ff96ae495bbb365378cecf3190.bitwarden.com +carLicense: VWHBI9 +departmentNumber: 1601 +employeeType: Employee +homePhone: +1 510 351-5511 +initials: D. D. +mobile: +1 510 594-9336 +pager: +1 510 618-3904 +roomNumber: 9298 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Suki Currie,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suki Currie +sn: Currie +description: This is Suki Currie's description +facsimileTelephoneNumber: +1 510 457-1055 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 917-1905 +title: Master Product Testing Writer +userPassword: Password1 +uid: CurrieS +givenName: Suki +mail: CurrieS@65c647306216446ba8005c16399f2df3.bitwarden.com +carLicense: CKEUV4 +departmentNumber: 8458 +employeeType: Contract +homePhone: +1 510 566-9864 +initials: S. C. +mobile: +1 510 914-6486 +pager: +1 510 806-8078 +roomNumber: 9716 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gateway Bain,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gateway Bain +sn: Bain +description: This is Gateway Bain's description +facsimileTelephoneNumber: +1 415 383-5691 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 769-6268 +title: Supreme Janitorial President +userPassword: Password1 +uid: BainG +givenName: Gateway +mail: BainG@a24d9d00e9af44d1b485530b308fa6f6.bitwarden.com +carLicense: LFA88D +departmentNumber: 8398 +employeeType: Normal +homePhone: +1 415 888-6097 +initials: G. B. +mobile: +1 415 660-3633 +pager: +1 415 102-1342 +roomNumber: 8392 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Inger Tchir,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inger Tchir +sn: Tchir +description: This is Inger Tchir's description +facsimileTelephoneNumber: +1 408 274-2715 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 853-8973 +title: Chief Payroll Consultant +userPassword: Password1 +uid: TchirI +givenName: Inger +mail: TchirI@89a15950be8c4c2a83abf35a9b3ed795.bitwarden.com +carLicense: KKHCVQ +departmentNumber: 7975 +employeeType: Contract +homePhone: +1 408 417-9210 +initials: I. T. +mobile: +1 408 856-5892 +pager: +1 408 953-1151 +roomNumber: 8123 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomasina Ricciuto +sn: Ricciuto +description: This is Thomasina Ricciuto's description +facsimileTelephoneNumber: +1 206 776-5472 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 685-2076 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: RicciutT +givenName: Thomasina +mail: RicciutT@06146e7a51ca478db85b58b8699ede7d.bitwarden.com +carLicense: 0C4HR4 +departmentNumber: 9501 +employeeType: Contract +homePhone: +1 206 226-9242 +initials: T. R. +mobile: +1 206 323-5969 +pager: +1 206 759-4630 +roomNumber: 9482 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Laraine Arellano,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laraine Arellano +sn: Arellano +description: This is Laraine Arellano's description +facsimileTelephoneNumber: +1 408 773-5813 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 612-8626 +title: Junior Product Development Assistant +userPassword: Password1 +uid: ArellanL +givenName: Laraine +mail: ArellanL@32ce2ca229594ba68651edf24232f002.bitwarden.com +carLicense: ABA6B6 +departmentNumber: 2688 +employeeType: Normal +homePhone: +1 408 933-8827 +initials: L. A. +mobile: +1 408 222-6764 +pager: +1 408 491-2019 +roomNumber: 9213 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roana Fulford,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roana Fulford +sn: Fulford +description: This is Roana Fulford's description +facsimileTelephoneNumber: +1 206 535-5126 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 420-7113 +title: Master Administrative Dictator +userPassword: Password1 +uid: FulfordR +givenName: Roana +mail: FulfordR@453e1aa146534f789cee9f78a1f430f8.bitwarden.com +carLicense: YQT5IA +departmentNumber: 3754 +employeeType: Contract +homePhone: +1 206 540-9185 +initials: R. F. +mobile: +1 206 173-2784 +pager: +1 206 698-7585 +roomNumber: 8842 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Camellia Sheth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camellia Sheth +sn: Sheth +description: This is Camellia Sheth's description +facsimileTelephoneNumber: +1 408 801-3483 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 276-3748 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: ShethC +givenName: Camellia +mail: ShethC@5c05b76ad7494928a53980603065304f.bitwarden.com +carLicense: 9RBYQ0 +departmentNumber: 6450 +employeeType: Contract +homePhone: +1 408 337-7592 +initials: C. S. +mobile: +1 408 743-5171 +pager: +1 408 652-3614 +roomNumber: 9845 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fayina Passier,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fayina Passier +sn: Passier +description: This is Fayina Passier's description +facsimileTelephoneNumber: +1 408 936-7936 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 429-3946 +title: Junior Peons Artist +userPassword: Password1 +uid: PassierF +givenName: Fayina +mail: PassierF@4a9e0e3540864eaba3d1bf5f637a9e4f.bitwarden.com +carLicense: 2ALYPJ +departmentNumber: 8591 +employeeType: Normal +homePhone: +1 408 530-7996 +initials: F. P. +mobile: +1 408 846-8832 +pager: +1 408 806-9926 +roomNumber: 9181 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Constantia Bielan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constantia Bielan +sn: Bielan +description: This is Constantia Bielan's description +facsimileTelephoneNumber: +1 818 846-8040 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 113-6508 +title: Chief Product Testing Figurehead +userPassword: Password1 +uid: BielanC +givenName: Constantia +mail: BielanC@ab3c86d1ac584fffb00ba8469a8050a5.bitwarden.com +carLicense: WPY7AX +departmentNumber: 6922 +employeeType: Employee +homePhone: +1 818 499-5566 +initials: C. B. +mobile: +1 818 208-9075 +pager: +1 818 429-6199 +roomNumber: 9369 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sacha Hiller,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sacha Hiller +sn: Hiller +description: This is Sacha Hiller's description +facsimileTelephoneNumber: +1 510 489-8130 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 955-4205 +title: Master Janitorial President +userPassword: Password1 +uid: HillerS +givenName: Sacha +mail: HillerS@82c6c2c80b7a4cf98e51762d28a47c93.bitwarden.com +carLicense: AH3HR8 +departmentNumber: 6161 +employeeType: Normal +homePhone: +1 510 456-4997 +initials: S. H. +mobile: +1 510 985-5795 +pager: +1 510 262-4135 +roomNumber: 8796 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Myranda Poff,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myranda Poff +sn: Poff +description: This is Myranda Poff's description +facsimileTelephoneNumber: +1 408 148-5142 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 296-6977 +title: Junior Product Development Consultant +userPassword: Password1 +uid: PoffM +givenName: Myranda +mail: PoffM@60323e558c4a4bd4a555e49dd613a509.bitwarden.com +carLicense: 2W9LOO +departmentNumber: 2427 +employeeType: Contract +homePhone: +1 408 447-5733 +initials: M. P. +mobile: +1 408 523-3868 +pager: +1 408 569-3020 +roomNumber: 9264 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Victor McDaniel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Victor McDaniel +sn: McDaniel +description: This is Victor McDaniel's description +facsimileTelephoneNumber: +1 206 825-3119 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 219-2089 +title: Associate Management Technician +userPassword: Password1 +uid: McDanieV +givenName: Victor +mail: McDanieV@2aaa600b5e5f40588e0a715782d88ce7.bitwarden.com +carLicense: RL0GR7 +departmentNumber: 5538 +employeeType: Contract +homePhone: +1 206 779-5437 +initials: V. M. +mobile: +1 206 439-2416 +pager: +1 206 591-6806 +roomNumber: 8361 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lindi Wenyon +sn: Wenyon +description: This is Lindi Wenyon's description +facsimileTelephoneNumber: +1 206 747-6622 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 352-6013 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: WenyonL +givenName: Lindi +mail: WenyonL@6decbec2a2934c8ab6247b1bef75e683.bitwarden.com +carLicense: SW0OQE +departmentNumber: 7330 +employeeType: Normal +homePhone: +1 206 539-7295 +initials: L. W. +mobile: +1 206 737-4003 +pager: +1 206 829-1455 +roomNumber: 8334 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellette Oviedo +sn: Oviedo +description: This is Ellette Oviedo's description +facsimileTelephoneNumber: +1 804 707-3987 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 804 555-3442 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: OviedoE +givenName: Ellette +mail: OviedoE@c5403fce69dd4d1b851d054bfb3293b5.bitwarden.com +carLicense: 3Y6XQO +departmentNumber: 2949 +employeeType: Normal +homePhone: +1 804 946-1154 +initials: E. O. +mobile: +1 804 287-9208 +pager: +1 804 166-1739 +roomNumber: 8287 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=James Predon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: James Predon +sn: Predon +description: This is James Predon's description +facsimileTelephoneNumber: +1 818 875-6903 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 288-9182 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: PredonJ +givenName: James +mail: PredonJ@0ab5cac49bd64597ab7b3eb70643285e.bitwarden.com +carLicense: A6YFIF +departmentNumber: 4895 +employeeType: Contract +homePhone: +1 818 542-6497 +initials: J. P. +mobile: +1 818 552-4053 +pager: +1 818 665-7642 +roomNumber: 9182 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alta Bergwerff,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alta Bergwerff +sn: Bergwerff +description: This is Alta Bergwerff's description +facsimileTelephoneNumber: +1 804 262-6855 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 804 886-2103 +title: Junior Peons Janitor +userPassword: Password1 +uid: BergwerA +givenName: Alta +mail: BergwerA@e903049a2f314871bf6a031a14c79162.bitwarden.com +carLicense: JEVWAM +departmentNumber: 6904 +employeeType: Employee +homePhone: +1 804 241-1192 +initials: A. B. +mobile: +1 804 662-3992 +pager: +1 804 863-9313 +roomNumber: 8981 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Keven Abbie,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keven Abbie +sn: Abbie +description: This is Keven Abbie's description +facsimileTelephoneNumber: +1 213 966-2134 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 111-6463 +title: Chief Administrative Technician +userPassword: Password1 +uid: AbbieK +givenName: Keven +mail: AbbieK@af019db996df414484b0d304e9b3637a.bitwarden.com +carLicense: TE2WK8 +departmentNumber: 6883 +employeeType: Contract +homePhone: +1 213 230-9235 +initials: K. A. +mobile: +1 213 573-7041 +pager: +1 213 812-3207 +roomNumber: 9431 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karia Pintwala,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karia Pintwala +sn: Pintwala +description: This is Karia Pintwala's description +facsimileTelephoneNumber: +1 206 125-8063 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 590-3940 +title: Chief Product Development Writer +userPassword: Password1 +uid: PintwalK +givenName: Karia +mail: PintwalK@c928c350e6174849b6cbd911c4679767.bitwarden.com +carLicense: 6MMVY0 +departmentNumber: 2341 +employeeType: Contract +homePhone: +1 206 893-7491 +initials: K. P. +mobile: +1 206 328-4751 +pager: +1 206 290-5166 +roomNumber: 8451 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Philly Scharf,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Philly Scharf +sn: Scharf +description: This is Philly Scharf's description +facsimileTelephoneNumber: +1 408 626-6825 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 393-4784 +title: Supreme Administrative Janitor +userPassword: Password1 +uid: ScharfP +givenName: Philly +mail: ScharfP@9fcf94ac0f884f17b9c7deb28b0f8191.bitwarden.com +carLicense: U21A6G +departmentNumber: 3433 +employeeType: Contract +homePhone: +1 408 184-5857 +initials: P. S. +mobile: +1 408 618-6337 +pager: +1 408 801-2096 +roomNumber: 9522 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jazmin Hargrow,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jazmin Hargrow +sn: Hargrow +description: This is Jazmin Hargrow's description +facsimileTelephoneNumber: +1 206 697-6326 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 206 947-4569 +title: Supreme Management Consultant +userPassword: Password1 +uid: HargrowJ +givenName: Jazmin +mail: HargrowJ@81ac61a0646d4564aa0d3d94526b0433.bitwarden.com +carLicense: JRI968 +departmentNumber: 4941 +employeeType: Normal +homePhone: +1 206 212-9669 +initials: J. H. +mobile: +1 206 736-4523 +pager: +1 206 184-5693 +roomNumber: 9504 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: TiongHoe Kazimierski +sn: Kazimierski +description: This is TiongHoe Kazimierski's description +facsimileTelephoneNumber: +1 415 238-6044 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 415 278-8411 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: KazimieT +givenName: TiongHoe +mail: KazimieT@629e6b0253394347a14c0d18a1bb0d2d.bitwarden.com +carLicense: 4I0VRM +departmentNumber: 1340 +employeeType: Normal +homePhone: +1 415 918-8372 +initials: T. K. +mobile: +1 415 637-7171 +pager: +1 415 814-5276 +roomNumber: 8664 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Misti Ellington,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Misti Ellington +sn: Ellington +description: This is Misti Ellington's description +facsimileTelephoneNumber: +1 408 577-5284 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 538-5956 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: EllingtM +givenName: Misti +mail: EllingtM@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com +carLicense: 0J0JWS +departmentNumber: 7648 +employeeType: Contract +homePhone: +1 408 763-1052 +initials: M. E. +mobile: +1 408 510-4194 +pager: +1 408 976-7385 +roomNumber: 8380 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nevein Quinones,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nevein Quinones +sn: Quinones +description: This is Nevein Quinones's description +facsimileTelephoneNumber: +1 818 487-7187 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 818 771-9086 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: QuinoneN +givenName: Nevein +mail: QuinoneN@ebf177db39e64709a34e9e3eaf86f3b2.bitwarden.com +carLicense: RHSP4V +departmentNumber: 5113 +employeeType: Normal +homePhone: +1 818 959-1042 +initials: N. Q. +mobile: +1 818 977-2599 +pager: +1 818 792-6252 +roomNumber: 8452 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quon Rhodenizer +sn: Rhodenizer +description: This is Quon Rhodenizer's description +facsimileTelephoneNumber: +1 408 159-7105 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 223-1954 +title: Master Product Development Assistant +userPassword: Password1 +uid: RhodeniQ +givenName: Quon +mail: RhodeniQ@a8523f0ff874441ba48222b981c29c83.bitwarden.com +carLicense: K4DWOK +departmentNumber: 6493 +employeeType: Employee +homePhone: +1 408 118-1108 +initials: Q. R. +mobile: +1 408 188-2235 +pager: +1 408 125-7428 +roomNumber: 9710 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Devinne McMasters,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devinne McMasters +sn: McMasters +description: This is Devinne McMasters's description +facsimileTelephoneNumber: +1 415 674-3257 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 415 798-3768 +title: Chief Janitorial Writer +userPassword: Password1 +uid: McMasteD +givenName: Devinne +mail: McMasteD@0af2af74178d40d4b0f1a836b6891d63.bitwarden.com +carLicense: 7IU8B3 +departmentNumber: 8176 +employeeType: Normal +homePhone: +1 415 305-3647 +initials: D. M. +mobile: +1 415 612-4158 +pager: +1 415 330-4032 +roomNumber: 9625 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Datha Winnipeg +sn: Winnipeg +description: This is Datha Winnipeg's description +facsimileTelephoneNumber: +1 804 799-3751 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 804 135-1128 +title: Chief Janitorial Visionary +userPassword: Password1 +uid: WinnipeD +givenName: Datha +mail: WinnipeD@3b71f78d317548348aee8244389f06bf.bitwarden.com +carLicense: T1GUAD +departmentNumber: 4285 +employeeType: Normal +homePhone: +1 804 403-2457 +initials: D. W. +mobile: +1 804 728-8630 +pager: +1 804 308-9639 +roomNumber: 8164 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carola Eustace,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carola Eustace +sn: Eustace +description: This is Carola Eustace's description +facsimileTelephoneNumber: +1 804 859-2898 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 414-8517 +title: Junior Product Testing Consultant +userPassword: Password1 +uid: EustaceC +givenName: Carola +mail: EustaceC@b64a8a3393c1430b9818da0137b2ae83.bitwarden.com +carLicense: AWH81X +departmentNumber: 6377 +employeeType: Contract +homePhone: +1 804 399-2370 +initials: C. E. +mobile: +1 804 282-2253 +pager: +1 804 261-9557 +roomNumber: 9978 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bo Xayaraj +sn: Xayaraj +description: This is Bo Xayaraj's description +facsimileTelephoneNumber: +1 804 821-8683 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 341-7808 +title: Chief Human Resources Grunt +userPassword: Password1 +uid: XayarajB +givenName: Bo +mail: XayarajB@d240988d596c4a2aadfc9feacb7a7323.bitwarden.com +carLicense: BVKQXP +departmentNumber: 8283 +employeeType: Normal +homePhone: +1 804 795-5225 +initials: B. X. +mobile: +1 804 100-7058 +pager: +1 804 165-7272 +roomNumber: 8017 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Thelma Fazel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thelma Fazel +sn: Fazel +description: This is Thelma Fazel's description +facsimileTelephoneNumber: +1 415 282-4595 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 764-6769 +title: Master Payroll Visionary +userPassword: Password1 +uid: FazelT +givenName: Thelma +mail: FazelT@17c722e6b16149e08a18c9a05c1e5e9e.bitwarden.com +carLicense: VTCH4N +departmentNumber: 2137 +employeeType: Normal +homePhone: +1 415 306-1897 +initials: T. F. +mobile: +1 415 258-8945 +pager: +1 415 399-2259 +roomNumber: 8145 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Arlene Galasso,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlene Galasso +sn: Galasso +description: This is Arlene Galasso's description +facsimileTelephoneNumber: +1 804 309-2197 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 804 974-3883 +title: Supreme Product Development President +userPassword: Password1 +uid: GalassoA +givenName: Arlene +mail: GalassoA@6fd7a8381bd04762a7cac00d6e4b256a.bitwarden.com +carLicense: 2DT1V9 +departmentNumber: 4061 +employeeType: Contract +homePhone: +1 804 151-9787 +initials: A. G. +mobile: +1 804 651-6375 +pager: +1 804 614-4605 +roomNumber: 8407 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Andrew Shuman,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrew Shuman +sn: Shuman +description: This is Andrew Shuman's description +facsimileTelephoneNumber: +1 510 122-9175 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 568-3654 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: ShumanA +givenName: Andrew +mail: ShumanA@9d0d16d5fafb4671b8051c5b2764974d.bitwarden.com +carLicense: PJMCDA +departmentNumber: 2455 +employeeType: Employee +homePhone: +1 510 285-4572 +initials: A. S. +mobile: +1 510 760-1194 +pager: +1 510 946-4387 +roomNumber: 9545 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rahal Reitfort +sn: Reitfort +description: This is Rahal Reitfort's description +facsimileTelephoneNumber: +1 213 573-4548 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 452-2999 +title: Supreme Human Resources Pinhead +userPassword: Password1 +uid: ReitforR +givenName: Rahal +mail: ReitforR@1fd5c1cb42fa4549b7b4a650b3209bed.bitwarden.com +carLicense: YT0H0K +departmentNumber: 8904 +employeeType: Employee +homePhone: +1 213 250-5385 +initials: R. R. +mobile: +1 213 213-7384 +pager: +1 213 531-5142 +roomNumber: 9671 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alane Planting,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alane Planting +sn: Planting +description: This is Alane Planting's description +facsimileTelephoneNumber: +1 510 373-9892 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 978-9998 +title: Master Peons Madonna +userPassword: Password1 +uid: PlantinA +givenName: Alane +mail: PlantinA@ae1823164d544b79bc05faac357029b4.bitwarden.com +carLicense: UNRJBC +departmentNumber: 5582 +employeeType: Contract +homePhone: +1 510 665-1653 +initials: A. P. +mobile: +1 510 402-2282 +pager: +1 510 356-3545 +roomNumber: 8146 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elle Chaddock,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elle Chaddock +sn: Chaddock +description: This is Elle Chaddock's description +facsimileTelephoneNumber: +1 804 506-4710 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 804 835-2581 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: ChaddocE +givenName: Elle +mail: ChaddocE@f724343d8470496bb0df55542d73aa26.bitwarden.com +carLicense: QA0EM9 +departmentNumber: 3515 +employeeType: Employee +homePhone: +1 804 652-4125 +initials: E. C. +mobile: +1 804 389-9422 +pager: +1 804 803-6709 +roomNumber: 9183 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rachael Benchimol,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rachael Benchimol +sn: Benchimol +description: This is Rachael Benchimol's description +facsimileTelephoneNumber: +1 510 500-4667 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 560-1246 +title: Supreme Product Development Janitor +userPassword: Password1 +uid: BenchimR +givenName: Rachael +mail: BenchimR@37098c17a937400b986b54e1bc765718.bitwarden.com +carLicense: 6KFY1K +departmentNumber: 8300 +employeeType: Employee +homePhone: +1 510 777-9079 +initials: R. B. +mobile: +1 510 592-5847 +pager: +1 510 535-7275 +roomNumber: 9332 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Claresta Ramakrishna,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claresta Ramakrishna +sn: Ramakrishna +description: This is Claresta Ramakrishna's description +facsimileTelephoneNumber: +1 408 441-5849 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 408 462-7019 +title: Associate Management Stooge +userPassword: Password1 +uid: RamakriC +givenName: Claresta +mail: RamakriC@7f3b2e6863504983b91067d1959b5550.bitwarden.com +carLicense: OEQMYF +departmentNumber: 1507 +employeeType: Normal +homePhone: +1 408 159-1617 +initials: C. R. +mobile: +1 408 621-4933 +pager: +1 408 826-7387 +roomNumber: 9984 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ivory Bolon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivory Bolon +sn: Bolon +description: This is Ivory Bolon's description +facsimileTelephoneNumber: +1 408 264-2726 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 408 403-4519 +title: Junior Peons President +userPassword: Password1 +uid: BolonI +givenName: Ivory +mail: BolonI@cabd0c89a78947b69a999dc093307343.bitwarden.com +carLicense: UCV9W7 +departmentNumber: 8267 +employeeType: Employee +homePhone: +1 408 847-2168 +initials: I. B. +mobile: +1 408 972-2712 +pager: +1 408 597-9223 +roomNumber: 8108 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brenton Buker,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brenton Buker +sn: Buker +description: This is Brenton Buker's description +facsimileTelephoneNumber: +1 804 934-7532 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 804 499-6206 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: BukerB +givenName: Brenton +mail: BukerB@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com +carLicense: WOLVMJ +departmentNumber: 4089 +employeeType: Employee +homePhone: +1 804 756-8537 +initials: B. B. +mobile: +1 804 918-5949 +pager: +1 804 339-1741 +roomNumber: 9172 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Beau Dorion,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beau Dorion +sn: Dorion +description: This is Beau Dorion's description +facsimileTelephoneNumber: +1 213 500-6275 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 123-4950 +title: Associate Product Development Czar +userPassword: Password1 +uid: DorionB +givenName: Beau +mail: DorionB@4ad19e5c2a7149b892ada70174e983fb.bitwarden.com +carLicense: R392QJ +departmentNumber: 2872 +employeeType: Employee +homePhone: +1 213 646-4872 +initials: B. D. +mobile: +1 213 478-8782 +pager: +1 213 996-2852 +roomNumber: 9799 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yalcin Sanders +sn: Sanders +description: This is Yalcin Sanders's description +facsimileTelephoneNumber: +1 804 655-8303 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 464-3059 +title: Master Product Testing Stooge +userPassword: Password1 +uid: SandersY +givenName: Yalcin +mail: SandersY@5f5111842ce14a15a15227b296d55b2d.bitwarden.com +carLicense: 3OM70B +departmentNumber: 2031 +employeeType: Employee +homePhone: +1 804 711-1311 +initials: Y. S. +mobile: +1 804 885-8240 +pager: +1 804 735-4388 +roomNumber: 8016 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lelah Souza,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lelah Souza +sn: Souza +description: This is Lelah Souza's description +facsimileTelephoneNumber: +1 510 411-6243 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 510 665-8824 +title: Junior Peons President +userPassword: Password1 +uid: SouzaL +givenName: Lelah +mail: SouzaL@9b8e18aa6d95436696ff678adad8f690.bitwarden.com +carLicense: F4BYXY +departmentNumber: 8149 +employeeType: Employee +homePhone: +1 510 740-7114 +initials: L. S. +mobile: +1 510 414-5014 +pager: +1 510 452-3371 +roomNumber: 8708 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Helen Marshman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helen Marshman +sn: Marshman +description: This is Helen Marshman's description +facsimileTelephoneNumber: +1 206 446-9645 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 206 232-6465 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: MarshmaH +givenName: Helen +mail: MarshmaH@e903c41d0e6d47309eaa689127a4e081.bitwarden.com +carLicense: F4OV02 +departmentNumber: 1595 +employeeType: Contract +homePhone: +1 206 521-6852 +initials: H. M. +mobile: +1 206 757-6508 +pager: +1 206 640-5924 +roomNumber: 9887 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yvon Uae,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yvon Uae +sn: Uae +description: This is Yvon Uae's description +facsimileTelephoneNumber: +1 206 328-8501 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 881-8501 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: UaeY +givenName: Yvon +mail: UaeY@2974cf90fe1d4835b1ba05177dd29243.bitwarden.com +carLicense: 09DEQD +departmentNumber: 3979 +employeeType: Normal +homePhone: +1 206 117-5789 +initials: Y. U. +mobile: +1 206 228-4804 +pager: +1 206 882-9131 +roomNumber: 8723 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Laten Vartanesian,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laten Vartanesian +sn: Vartanesian +description: This is Laten Vartanesian's description +facsimileTelephoneNumber: +1 415 641-1984 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 118-6750 +title: Chief Product Development Dictator +userPassword: Password1 +uid: VartaneL +givenName: Laten +mail: VartaneL@edaeeeda9dac4d529991a1e33586bf00.bitwarden.com +carLicense: FHF5N7 +departmentNumber: 6757 +employeeType: Normal +homePhone: +1 415 885-1584 +initials: L. V. +mobile: +1 415 174-5478 +pager: +1 415 180-7795 +roomNumber: 9480 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Susy Kadamani,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susy Kadamani +sn: Kadamani +description: This is Susy Kadamani's description +facsimileTelephoneNumber: +1 213 566-5853 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 161-6810 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: KadamanS +givenName: Susy +mail: KadamanS@a4520dd200454f57be2c8b99e6f4ce8d.bitwarden.com +carLicense: AJRN4S +departmentNumber: 7503 +employeeType: Contract +homePhone: +1 213 883-5069 +initials: S. K. +mobile: +1 213 379-4663 +pager: +1 213 588-7918 +roomNumber: 8290 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Berte Hesk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berte Hesk +sn: Hesk +description: This is Berte Hesk's description +facsimileTelephoneNumber: +1 510 251-5947 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 601-6765 +title: Associate Product Development Manager +userPassword: Password1 +uid: HeskB +givenName: Berte +mail: HeskB@022bca8b2ca74ff9b8d4afa8e3f8ebf5.bitwarden.com +carLicense: CY2WXI +departmentNumber: 7327 +employeeType: Normal +homePhone: +1 510 380-1706 +initials: B. H. +mobile: +1 510 890-6323 +pager: +1 510 715-2703 +roomNumber: 9779 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Joy Willard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joy Willard +sn: Willard +description: This is Joy Willard's description +facsimileTelephoneNumber: +1 818 607-8964 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 818 287-3450 +title: Supreme Management Consultant +userPassword: Password1 +uid: WillardJ +givenName: Joy +mail: WillardJ@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com +carLicense: 0E5VMQ +departmentNumber: 5509 +employeeType: Contract +homePhone: +1 818 480-8835 +initials: J. W. +mobile: +1 818 678-6539 +pager: +1 818 379-7554 +roomNumber: 9832 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Britte Thorman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Britte Thorman +sn: Thorman +description: This is Britte Thorman's description +facsimileTelephoneNumber: +1 510 978-1316 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 510 796-7523 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: ThormanB +givenName: Britte +mail: ThormanB@ecb60d19de8e42218392139a0168ec8b.bitwarden.com +carLicense: 87LSYD +departmentNumber: 1050 +employeeType: Employee +homePhone: +1 510 813-5701 +initials: B. T. +mobile: +1 510 434-5345 +pager: +1 510 928-3256 +roomNumber: 8109 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amberly Inscoe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amberly Inscoe +sn: Inscoe +description: This is Amberly Inscoe's description +facsimileTelephoneNumber: +1 213 893-4372 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 213 323-9911 +title: Chief Payroll Czar +userPassword: Password1 +uid: InscoeA +givenName: Amberly +mail: InscoeA@52c69ee191e243ddb28fef6b7d3171f0.bitwarden.com +carLicense: 537CR8 +departmentNumber: 4628 +employeeType: Contract +homePhone: +1 213 845-8704 +initials: A. I. +mobile: +1 213 958-5177 +pager: +1 213 256-2295 +roomNumber: 8282 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karole Prints,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karole Prints +sn: Prints +description: This is Karole Prints's description +facsimileTelephoneNumber: +1 213 504-6795 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 566-9398 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: PrintsK +givenName: Karole +mail: PrintsK@d7bcc941bf9944f4a0cf58f580b041c6.bitwarden.com +carLicense: T0UPHD +departmentNumber: 8042 +employeeType: Employee +homePhone: +1 213 885-2292 +initials: K. P. +mobile: +1 213 927-7791 +pager: +1 213 478-4241 +roomNumber: 9807 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ludovico Reinink,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ludovico Reinink +sn: Reinink +description: This is Ludovico Reinink's description +facsimileTelephoneNumber: +1 804 987-2632 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 997-4149 +title: Associate Peons Technician +userPassword: Password1 +uid: ReininkL +givenName: Ludovico +mail: ReininkL@bbe574aa78294bfe850c65ae7f84a624.bitwarden.com +carLicense: QQV3IB +departmentNumber: 2028 +employeeType: Normal +homePhone: +1 804 896-2726 +initials: L. R. +mobile: +1 804 971-3045 +pager: +1 804 434-7864 +roomNumber: 9492 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elka Stubblefield +sn: Stubblefield +description: This is Elka Stubblefield's description +facsimileTelephoneNumber: +1 415 563-8981 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 415 427-1116 +title: Master Product Testing Consultant +userPassword: Password1 +uid: StubbleE +givenName: Elka +mail: StubbleE@dcb0954e4af74751966d9af34246f81f.bitwarden.com +carLicense: IKLQE9 +departmentNumber: 3268 +employeeType: Employee +homePhone: +1 415 231-4445 +initials: E. S. +mobile: +1 415 754-7382 +pager: +1 415 928-6450 +roomNumber: 8845 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nixie Hoddinott +sn: Hoddinott +description: This is Nixie Hoddinott's description +facsimileTelephoneNumber: +1 408 600-3151 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 446-2249 +title: Supreme Human Resources Sales Rep +userPassword: Password1 +uid: HoddinoN +givenName: Nixie +mail: HoddinoN@840c6c20816640f3a23c22832cd051de.bitwarden.com +carLicense: XSN5FJ +departmentNumber: 8568 +employeeType: Normal +homePhone: +1 408 935-8208 +initials: N. H. +mobile: +1 408 406-5529 +pager: +1 408 749-3665 +roomNumber: 9954 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Maritsa Mashura,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maritsa Mashura +sn: Mashura +description: This is Maritsa Mashura's description +facsimileTelephoneNumber: +1 213 903-3196 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 213 167-6905 +title: Chief Administrative Admin +userPassword: Password1 +uid: MashuraM +givenName: Maritsa +mail: MashuraM@05056fc74dc646529206862bf66ee307.bitwarden.com +carLicense: MRNQFA +departmentNumber: 1941 +employeeType: Normal +homePhone: +1 213 115-4749 +initials: M. M. +mobile: +1 213 708-8215 +pager: +1 213 532-3586 +roomNumber: 8802 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fern McGuigan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fern McGuigan +sn: McGuigan +description: This is Fern McGuigan's description +facsimileTelephoneNumber: +1 206 567-8265 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 454-5173 +title: Junior Janitorial Janitor +userPassword: Password1 +uid: McGuigaF +givenName: Fern +mail: McGuigaF@56c7b6a1cbe44355a3450da29d042416.bitwarden.com +carLicense: G4CPGF +departmentNumber: 6472 +employeeType: Contract +homePhone: +1 206 675-7227 +initials: F. M. +mobile: +1 206 995-3813 +pager: +1 206 169-4557 +roomNumber: 9392 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ddene Gunasekera +sn: Gunasekera +description: This is Ddene Gunasekera's description +facsimileTelephoneNumber: +1 415 377-8186 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 658-7208 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: GunasekD +givenName: Ddene +mail: GunasekD@6359449d115e4f1381b399393d47713b.bitwarden.com +carLicense: 3C7LGU +departmentNumber: 6800 +employeeType: Employee +homePhone: +1 415 465-1903 +initials: D. G. +mobile: +1 415 492-8106 +pager: +1 415 382-3757 +roomNumber: 8932 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gavin Parr,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gavin Parr +sn: Parr +description: This is Gavin Parr's description +facsimileTelephoneNumber: +1 415 202-5254 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 442-7637 +title: Master Peons Warrior +userPassword: Password1 +uid: ParrG +givenName: Gavin +mail: ParrG@ab80825fb9f64e0fa2550d84decf8401.bitwarden.com +carLicense: PF7V9J +departmentNumber: 8634 +employeeType: Employee +homePhone: +1 415 692-2337 +initials: G. P. +mobile: +1 415 716-7067 +pager: +1 415 228-1590 +roomNumber: 8061 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anthiathia Nie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anthiathia Nie +sn: Nie +description: This is Anthiathia Nie's description +facsimileTelephoneNumber: +1 818 238-4428 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 818 833-8097 +title: Associate Management Developer +userPassword: Password1 +uid: NieA +givenName: Anthiathia +mail: NieA@d0277d6f48c14695a4405ab88f901980.bitwarden.com +carLicense: 5JJKUT +departmentNumber: 4683 +employeeType: Employee +homePhone: +1 818 720-9965 +initials: A. N. +mobile: +1 818 186-7681 +pager: +1 818 406-9711 +roomNumber: 8658 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vita Larkin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vita Larkin +sn: Larkin +description: This is Vita Larkin's description +facsimileTelephoneNumber: +1 213 859-1040 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 140-5526 +title: Junior Payroll Figurehead +userPassword: Password1 +uid: LarkinV +givenName: Vita +mail: LarkinV@cb516e3803cd419889eae9883d74115c.bitwarden.com +carLicense: P1ASE9 +departmentNumber: 4264 +employeeType: Contract +homePhone: +1 213 381-7232 +initials: V. L. +mobile: +1 213 340-4424 +pager: +1 213 480-2067 +roomNumber: 9373 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Madan Enstone,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madan Enstone +sn: Enstone +description: This is Madan Enstone's description +facsimileTelephoneNumber: +1 408 965-1506 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 319-5222 +title: Associate Peons Director +userPassword: Password1 +uid: EnstoneM +givenName: Madan +mail: EnstoneM@f3b7d3d07c2e403b8aacf9226428b2e0.bitwarden.com +carLicense: MNH591 +departmentNumber: 7367 +employeeType: Normal +homePhone: +1 408 677-1869 +initials: M. E. +mobile: +1 408 276-9083 +pager: +1 408 358-3596 +roomNumber: 9712 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marilyn Wainwright,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marilyn Wainwright +sn: Wainwright +description: This is Marilyn Wainwright's description +facsimileTelephoneNumber: +1 213 655-6160 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 908-2190 +title: Master Peons Sales Rep +userPassword: Password1 +uid: WainwriM +givenName: Marilyn +mail: WainwriM@a21b6cdd6fed4b0baf49c2dbaa964e4a.bitwarden.com +carLicense: TDEDN4 +departmentNumber: 6920 +employeeType: Normal +homePhone: +1 213 558-4311 +initials: M. W. +mobile: +1 213 340-3036 +pager: +1 213 579-7499 +roomNumber: 8932 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Amanda Tigg,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amanda Tigg +sn: Tigg +description: This is Amanda Tigg's description +facsimileTelephoneNumber: +1 206 872-3437 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 833-2293 +title: Chief Product Development Janitor +userPassword: Password1 +uid: TiggA +givenName: Amanda +mail: TiggA@fa8aab84123a46888aa8c26b4a298c9e.bitwarden.com +carLicense: J19OGD +departmentNumber: 7010 +employeeType: Normal +homePhone: +1 206 968-2898 +initials: A. T. +mobile: +1 206 780-7615 +pager: +1 206 428-7241 +roomNumber: 9380 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jermaine Shackley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jermaine Shackley +sn: Shackley +description: This is Jermaine Shackley's description +facsimileTelephoneNumber: +1 213 494-5177 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 832-1051 +title: Master Payroll Dictator +userPassword: Password1 +uid: ShackleJ +givenName: Jermaine +mail: ShackleJ@50866cc225ba4cf3b94e887770c1c4c5.bitwarden.com +carLicense: NHVOOA +departmentNumber: 1848 +employeeType: Contract +homePhone: +1 213 472-8783 +initials: J. S. +mobile: +1 213 257-6256 +pager: +1 213 912-1076 +roomNumber: 8444 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fitzgerald Murat +sn: Murat +description: This is Fitzgerald Murat's description +facsimileTelephoneNumber: +1 818 278-2331 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 591-1864 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: MuratF +givenName: Fitzgerald +mail: MuratF@0c4de0f537ac4059b43bc376b1423585.bitwarden.com +carLicense: 0UCI16 +departmentNumber: 1896 +employeeType: Employee +homePhone: +1 818 989-6391 +initials: F. M. +mobile: +1 818 116-8976 +pager: +1 818 634-8414 +roomNumber: 9002 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alev Sunatori,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alev Sunatori +sn: Sunatori +description: This is Alev Sunatori's description +facsimileTelephoneNumber: +1 804 648-1017 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 539-6498 +title: Master Janitorial Architect +userPassword: Password1 +uid: SunatorA +givenName: Alev +mail: SunatorA@a9b753f4c531475793fa04a6da053eaf.bitwarden.com +carLicense: J1Q657 +departmentNumber: 8627 +employeeType: Normal +homePhone: +1 804 827-7334 +initials: A. S. +mobile: +1 804 312-2333 +pager: +1 804 925-1741 +roomNumber: 8472 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Juliette Finane,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juliette Finane +sn: Finane +description: This is Juliette Finane's description +facsimileTelephoneNumber: +1 818 970-6319 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 789-1879 +title: Master Product Development Artist +userPassword: Password1 +uid: FinaneJ +givenName: Juliette +mail: FinaneJ@b1fdb151f0e64e1a958a0e82820ba255.bitwarden.com +carLicense: UFSMJ7 +departmentNumber: 9242 +employeeType: Employee +homePhone: +1 818 199-4635 +initials: J. F. +mobile: +1 818 603-9426 +pager: +1 818 990-2447 +roomNumber: 8775 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jessamyn Frampton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jessamyn Frampton +sn: Frampton +description: This is Jessamyn Frampton's description +facsimileTelephoneNumber: +1 206 844-2640 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 560-5101 +title: Associate Peons Stooge +userPassword: Password1 +uid: FramptoJ +givenName: Jessamyn +mail: FramptoJ@646d6f014bf44c5484623c7f1ed699a0.bitwarden.com +carLicense: QMDE00 +departmentNumber: 1176 +employeeType: Normal +homePhone: +1 206 183-5482 +initials: J. F. +mobile: +1 206 485-5303 +pager: +1 206 977-7440 +roomNumber: 9909 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Norina Piersol,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norina Piersol +sn: Piersol +description: This is Norina Piersol's description +facsimileTelephoneNumber: +1 206 960-8079 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 339-9283 +title: Supreme Product Development Punk +userPassword: Password1 +uid: PiersolN +givenName: Norina +mail: PiersolN@a80cec7586b34ab8b14925cae24221e2.bitwarden.com +carLicense: B1W0P1 +departmentNumber: 6097 +employeeType: Normal +homePhone: +1 206 175-8415 +initials: N. P. +mobile: +1 206 477-2775 +pager: +1 206 590-7100 +roomNumber: 9991 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Freeman Dickerson +sn: Dickerson +description: This is Freeman Dickerson's description +facsimileTelephoneNumber: +1 213 315-6434 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 213 403-5218 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: DickersF +givenName: Freeman +mail: DickersF@5e4575ba15004635a07ebaa5c8dd9475.bitwarden.com +carLicense: Y7KWBJ +departmentNumber: 6181 +employeeType: Contract +homePhone: +1 213 793-1211 +initials: F. D. +mobile: +1 213 729-4512 +pager: +1 213 609-5748 +roomNumber: 8132 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Subhra Darby,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Subhra Darby +sn: Darby +description: This is Subhra Darby's description +facsimileTelephoneNumber: +1 818 753-1131 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 610-1201 +title: Chief Janitorial Punk +userPassword: Password1 +uid: DarbyS +givenName: Subhra +mail: DarbyS@9f504fcc849346579e7eeede9f9505f6.bitwarden.com +carLicense: 14TNJJ +departmentNumber: 3100 +employeeType: Contract +homePhone: +1 818 469-7639 +initials: S. D. +mobile: +1 818 216-5903 +pager: +1 818 501-2110 +roomNumber: 8947 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=AnneLise Krodel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnneLise Krodel +sn: Krodel +description: This is AnneLise Krodel's description +facsimileTelephoneNumber: +1 804 449-9117 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 370-1645 +title: Chief Management Pinhead +userPassword: Password1 +uid: KrodelA +givenName: AnneLise +mail: KrodelA@4e28ebfb16ef4a5e8f0e2bce0a228472.bitwarden.com +carLicense: WRCCGN +departmentNumber: 4090 +employeeType: Normal +homePhone: +1 804 438-5187 +initials: A. K. +mobile: +1 804 752-7866 +pager: +1 804 778-3363 +roomNumber: 8894 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bobbi Azevedo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobbi Azevedo +sn: Azevedo +description: This is Bobbi Azevedo's description +facsimileTelephoneNumber: +1 804 363-8659 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 675-9753 +title: Associate Management Figurehead +userPassword: Password1 +uid: AzevedoB +givenName: Bobbi +mail: AzevedoB@eb2999c8fa284a3f8c9f7cd764a9ece1.bitwarden.com +carLicense: I05XA5 +departmentNumber: 2861 +employeeType: Employee +homePhone: +1 804 275-1273 +initials: B. A. +mobile: +1 804 569-4314 +pager: +1 804 706-8559 +roomNumber: 8798 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vikki Tu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vikki Tu +sn: Tu +description: This is Vikki Tu's description +facsimileTelephoneNumber: +1 510 419-6776 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 781-8617 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: TuV +givenName: Vikki +mail: TuV@b75dea79bbf94bcb8c735dd8f3b3eb74.bitwarden.com +carLicense: JSXS2S +departmentNumber: 3882 +employeeType: Normal +homePhone: +1 510 227-8233 +initials: V. T. +mobile: +1 510 410-7700 +pager: +1 510 938-4885 +roomNumber: 8696 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Message Armstrong,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Message Armstrong +sn: Armstrong +description: This is Message Armstrong's description +facsimileTelephoneNumber: +1 408 351-6792 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 531-1077 +title: Master Administrative Mascot +userPassword: Password1 +uid: ArmstroM +givenName: Message +mail: ArmstroM@a5eae71d9b964f5ba8783184abc9d511.bitwarden.com +carLicense: GESPAS +departmentNumber: 8615 +employeeType: Employee +homePhone: +1 408 186-1346 +initials: M. A. +mobile: +1 408 379-6116 +pager: +1 408 472-3050 +roomNumber: 8110 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maury Este,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maury Este +sn: Este +description: This is Maury Este's description +facsimileTelephoneNumber: +1 415 238-6212 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 774-5817 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: EsteM +givenName: Maury +mail: EsteM@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com +carLicense: 8P47KD +departmentNumber: 7505 +employeeType: Employee +homePhone: +1 415 839-5699 +initials: M. E. +mobile: +1 415 486-9278 +pager: +1 415 795-2405 +roomNumber: 8577 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Noel Mitrani,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noel Mitrani +sn: Mitrani +description: This is Noel Mitrani's description +facsimileTelephoneNumber: +1 206 203-2434 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 454-3983 +title: Master Payroll Madonna +userPassword: Password1 +uid: MitraniN +givenName: Noel +mail: MitraniN@7f1848e959b9431aae2d7ba89294b649.bitwarden.com +carLicense: O9RH42 +departmentNumber: 3549 +employeeType: Employee +homePhone: +1 206 584-4613 +initials: N. M. +mobile: +1 206 882-7910 +pager: +1 206 532-5765 +roomNumber: 8245 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shaib Codata,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaib Codata +sn: Codata +description: This is Shaib Codata's description +facsimileTelephoneNumber: +1 408 479-2041 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 408 135-4628 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: CodataS +givenName: Shaib +mail: CodataS@50684c4df5634a1a858fe299e0e2466c.bitwarden.com +carLicense: 1KNB27 +departmentNumber: 4350 +employeeType: Contract +homePhone: +1 408 820-4664 +initials: S. C. +mobile: +1 408 228-4407 +pager: +1 408 483-4001 +roomNumber: 8647 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donnette Oestreich +sn: Oestreich +description: This is Donnette Oestreich's description +facsimileTelephoneNumber: +1 408 661-4037 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 408 330-8951 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: OestreiD +givenName: Donnette +mail: OestreiD@8ec12044b3f24cc38b71b6337247088e.bitwarden.com +carLicense: JYTHYQ +departmentNumber: 7586 +employeeType: Employee +homePhone: +1 408 185-6142 +initials: D. O. +mobile: +1 408 463-2407 +pager: +1 408 197-8063 +roomNumber: 8324 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tiffy Youngman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffy Youngman +sn: Youngman +description: This is Tiffy Youngman's description +facsimileTelephoneNumber: +1 818 878-8914 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 325-4782 +title: Associate Product Development Developer +userPassword: Password1 +uid: YoungmaT +givenName: Tiffy +mail: YoungmaT@4ad3d1fc09c94c579cc898d58b2c9182.bitwarden.com +carLicense: 62WYX5 +departmentNumber: 3203 +employeeType: Normal +homePhone: +1 818 588-9084 +initials: T. Y. +mobile: +1 818 336-2478 +pager: +1 818 361-2880 +roomNumber: 8754 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Terese VanHulst,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terese VanHulst +sn: VanHulst +description: This is Terese VanHulst's description +facsimileTelephoneNumber: +1 206 896-2911 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 183-1446 +title: Supreme Peons Grunt +userPassword: Password1 +uid: VanHulsT +givenName: Terese +mail: VanHulsT@d331e1c24d0b4aec9a1ad8d53034ac5c.bitwarden.com +carLicense: 1UPXOO +departmentNumber: 5035 +employeeType: Contract +homePhone: +1 206 100-8424 +initials: T. V. +mobile: +1 206 985-4305 +pager: +1 206 949-8400 +roomNumber: 8464 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brigitta Southon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigitta Southon +sn: Southon +description: This is Brigitta Southon's description +facsimileTelephoneNumber: +1 213 500-1475 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 805-2298 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: SouthonB +givenName: Brigitta +mail: SouthonB@f51717825b9c49d5a37e5f38d6f8642e.bitwarden.com +carLicense: 6MB5XR +departmentNumber: 1657 +employeeType: Employee +homePhone: +1 213 985-3996 +initials: B. S. +mobile: +1 213 748-8813 +pager: +1 213 370-9294 +roomNumber: 9688 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ashlan Nyce,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashlan Nyce +sn: Nyce +description: This is Ashlan Nyce's description +facsimileTelephoneNumber: +1 510 906-4005 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 308-2672 +title: Supreme Payroll Fellow +userPassword: Password1 +uid: NyceA +givenName: Ashlan +mail: NyceA@1992283e02a14cd2a3449a7bd08c0ed9.bitwarden.com +carLicense: MJJPFO +departmentNumber: 4761 +employeeType: Employee +homePhone: +1 510 405-7655 +initials: A. N. +mobile: +1 510 420-7095 +pager: +1 510 539-7190 +roomNumber: 9475 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alasdair Huether,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alasdair Huether +sn: Huether +description: This is Alasdair Huether's description +facsimileTelephoneNumber: +1 510 920-8772 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 409-2794 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: HuetherA +givenName: Alasdair +mail: HuetherA@38f4b173005e4744bda2f6fc3b8d52be.bitwarden.com +carLicense: FROSG3 +departmentNumber: 6697 +employeeType: Employee +homePhone: +1 510 360-9099 +initials: A. H. +mobile: +1 510 225-3352 +pager: +1 510 740-8230 +roomNumber: 9356 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rakesh Izzotti,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rakesh Izzotti +sn: Izzotti +description: This is Rakesh Izzotti's description +facsimileTelephoneNumber: +1 206 741-3101 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 133-3150 +title: Associate Management Sales Rep +userPassword: Password1 +uid: IzzottiR +givenName: Rakesh +mail: IzzottiR@ad45074948ed4c7dba5bf592df90bab5.bitwarden.com +carLicense: H0F4VG +departmentNumber: 8469 +employeeType: Normal +homePhone: +1 206 576-9903 +initials: R. I. +mobile: +1 206 345-4925 +pager: +1 206 264-7604 +roomNumber: 8166 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Irish Gaither,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Irish Gaither +sn: Gaither +description: This is Irish Gaither's description +facsimileTelephoneNumber: +1 510 128-9312 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 600-4326 +title: Junior Payroll Dictator +userPassword: Password1 +uid: GaitherI +givenName: Irish +mail: GaitherI@5222f90256d843c8a24103ca5cca030a.bitwarden.com +carLicense: 50HCCF +departmentNumber: 3823 +employeeType: Normal +homePhone: +1 510 560-5463 +initials: I. G. +mobile: +1 510 889-2019 +pager: +1 510 396-5489 +roomNumber: 9837 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanjay Ornburn +sn: Ornburn +description: This is Sanjay Ornburn's description +facsimileTelephoneNumber: +1 804 936-6279 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 570-3565 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: OrnburnS +givenName: Sanjay +mail: OrnburnS@c77046250d004539a16765d761d09cd8.bitwarden.com +carLicense: EF4E5Y +departmentNumber: 6031 +employeeType: Normal +homePhone: +1 804 734-6308 +initials: S. O. +mobile: +1 804 604-9460 +pager: +1 804 741-1255 +roomNumber: 8714 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norbert Kathnelson +sn: Kathnelson +description: This is Norbert Kathnelson's description +facsimileTelephoneNumber: +1 415 793-3818 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 708-3539 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: KathnelN +givenName: Norbert +mail: KathnelN@62021a608fd94b2d95ca05367f09faa6.bitwarden.com +carLicense: W75E79 +departmentNumber: 2871 +employeeType: Contract +homePhone: +1 415 572-3793 +initials: N. K. +mobile: +1 415 681-6743 +pager: +1 415 372-5325 +roomNumber: 8433 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Verlyn Farah,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verlyn Farah +sn: Farah +description: This is Verlyn Farah's description +facsimileTelephoneNumber: +1 510 316-7508 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 264-9938 +title: Master Peons Director +userPassword: Password1 +uid: FarahV +givenName: Verlyn +mail: FarahV@2e5d764491b046f6aa7ce6ba59a519f2.bitwarden.com +carLicense: EHPR2B +departmentNumber: 6893 +employeeType: Normal +homePhone: +1 510 228-1740 +initials: V. F. +mobile: +1 510 167-2571 +pager: +1 510 220-9166 +roomNumber: 9285 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rana Schartmann,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rana Schartmann +sn: Schartmann +description: This is Rana Schartmann's description +facsimileTelephoneNumber: +1 510 404-8831 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 256-1319 +title: Chief Peons Manager +userPassword: Password1 +uid: SchartmR +givenName: Rana +mail: SchartmR@132e9b9de0714b89851dab60393ea28b.bitwarden.com +carLicense: Q5M02S +departmentNumber: 5035 +employeeType: Normal +homePhone: +1 510 228-2455 +initials: R. S. +mobile: +1 510 159-8627 +pager: +1 510 577-9136 +roomNumber: 9261 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suki Kolodiejchuk +sn: Kolodiejchuk +description: This is Suki Kolodiejchuk's description +facsimileTelephoneNumber: +1 415 674-5996 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 450-1345 +title: Junior Peons Stooge +userPassword: Password1 +uid: KolodieS +givenName: Suki +mail: KolodieS@7bacc7c5f0114d5b9f10880dbb1a7890.bitwarden.com +carLicense: 4J0I1F +departmentNumber: 1509 +employeeType: Employee +homePhone: +1 415 674-4073 +initials: S. K. +mobile: +1 415 197-2509 +pager: +1 415 226-3216 +roomNumber: 8472 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=XuanLien Harms,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: XuanLien Harms +sn: Harms +description: This is XuanLien Harms's description +facsimileTelephoneNumber: +1 818 920-3194 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 154-5574 +title: Junior Management Mascot +userPassword: Password1 +uid: HarmsX +givenName: XuanLien +mail: HarmsX@588b4b264c9e4c9187b4cc73055957b8.bitwarden.com +carLicense: 85002B +departmentNumber: 6510 +employeeType: Contract +homePhone: +1 818 409-5306 +initials: X. H. +mobile: +1 818 218-8723 +pager: +1 818 732-6309 +roomNumber: 8251 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vimi Ermarkaryan +sn: Ermarkaryan +description: This is Vimi Ermarkaryan's description +facsimileTelephoneNumber: +1 213 253-3369 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 227-2038 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: ErmarkaV +givenName: Vimi +mail: ErmarkaV@f6758775c10f44a0888e5450785a13f6.bitwarden.com +carLicense: V3SRIV +departmentNumber: 3708 +employeeType: Contract +homePhone: +1 213 988-8302 +initials: V. E. +mobile: +1 213 735-6857 +pager: +1 213 754-3331 +roomNumber: 8899 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Regine Danforth,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regine Danforth +sn: Danforth +description: This is Regine Danforth's description +facsimileTelephoneNumber: +1 818 228-2758 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 892-3026 +title: Associate Management Grunt +userPassword: Password1 +uid: DanfortR +givenName: Regine +mail: DanfortR@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com +carLicense: QY9Q2K +departmentNumber: 8863 +employeeType: Employee +homePhone: +1 818 779-5824 +initials: R. D. +mobile: +1 818 848-3123 +pager: +1 818 959-1419 +roomNumber: 9774 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Adda Gutcher,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adda Gutcher +sn: Gutcher +description: This is Adda Gutcher's description +facsimileTelephoneNumber: +1 206 290-2329 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 206 273-9401 +title: Junior Payroll Fellow +userPassword: Password1 +uid: GutcherA +givenName: Adda +mail: GutcherA@49031457055a4efdb13b2d34b71f9815.bitwarden.com +carLicense: BYWWGD +departmentNumber: 2490 +employeeType: Employee +homePhone: +1 206 257-3771 +initials: A. G. +mobile: +1 206 281-6478 +pager: +1 206 596-3557 +roomNumber: 9386 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hpone Croxall,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hpone Croxall +sn: Croxall +description: This is Hpone Croxall's description +facsimileTelephoneNumber: +1 818 866-3789 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 800-7539 +title: Associate Product Development Madonna +userPassword: Password1 +uid: CroxallH +givenName: Hpone +mail: CroxallH@de96a17ce06e4487ba5f98c80195f121.bitwarden.com +carLicense: OKLVKO +departmentNumber: 5656 +employeeType: Normal +homePhone: +1 818 661-2922 +initials: H. C. +mobile: +1 818 883-4994 +pager: +1 818 950-6943 +roomNumber: 9133 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ailee McCauley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailee McCauley +sn: McCauley +description: This is Ailee McCauley's description +facsimileTelephoneNumber: +1 408 674-2975 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 408 359-2772 +title: Supreme Product Testing Director +userPassword: Password1 +uid: McCauleA +givenName: Ailee +mail: McCauleA@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com +carLicense: R5399M +departmentNumber: 2318 +employeeType: Employee +homePhone: +1 408 923-2198 +initials: A. M. +mobile: +1 408 834-3805 +pager: +1 408 399-5465 +roomNumber: 9522 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nadya Finucane,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nadya Finucane +sn: Finucane +description: This is Nadya Finucane's description +facsimileTelephoneNumber: +1 818 873-9751 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 800-2391 +title: Supreme Management Vice President +userPassword: Password1 +uid: FinucanN +givenName: Nadya +mail: FinucanN@93f688ea0bc04368a2a139880357d5fc.bitwarden.com +carLicense: YXUDWT +departmentNumber: 9794 +employeeType: Contract +homePhone: +1 818 786-8622 +initials: N. F. +mobile: +1 818 896-7375 +pager: +1 818 194-2465 +roomNumber: 8139 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mikelis Brennen +sn: Brennen +description: This is Mikelis Brennen's description +facsimileTelephoneNumber: +1 804 614-7395 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 882-4038 +title: Chief Product Testing Manager +userPassword: Password1 +uid: BrennenM +givenName: Mikelis +mail: BrennenM@a4b9657d81504fa48f8656723285a8fe.bitwarden.com +carLicense: HSH074 +departmentNumber: 7893 +employeeType: Normal +homePhone: +1 804 868-4667 +initials: M. B. +mobile: +1 804 399-4431 +pager: +1 804 367-3313 +roomNumber: 9719 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Brita Digenova,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brita Digenova +sn: Digenova +description: This is Brita Digenova's description +facsimileTelephoneNumber: +1 415 570-7089 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 775-6722 +title: Associate Payroll Manager +userPassword: Password1 +uid: DigenovB +givenName: Brita +mail: DigenovB@301d911e2eea414b9302e4f81984f9b2.bitwarden.com +carLicense: 6DRJPR +departmentNumber: 7703 +employeeType: Contract +homePhone: +1 415 796-9886 +initials: B. D. +mobile: +1 415 560-7967 +pager: +1 415 138-1738 +roomNumber: 9727 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jami Franze,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jami Franze +sn: Franze +description: This is Jami Franze's description +facsimileTelephoneNumber: +1 408 613-4723 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 408 507-4980 +title: Junior Peons Czar +userPassword: Password1 +uid: FranzeJ +givenName: Jami +mail: FranzeJ@ce9a5204a370483987964a25eaf0057b.bitwarden.com +carLicense: WWR4IY +departmentNumber: 9149 +employeeType: Contract +homePhone: +1 408 163-8989 +initials: J. F. +mobile: +1 408 275-6251 +pager: +1 408 429-2036 +roomNumber: 9892 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mariele Barnhart,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariele Barnhart +sn: Barnhart +description: This is Mariele Barnhart's description +facsimileTelephoneNumber: +1 818 454-9293 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 258-9135 +title: Chief Management Grunt +userPassword: Password1 +uid: BarnharM +givenName: Mariele +mail: BarnharM@5da48288aba74ccf8b206aad69790e91.bitwarden.com +carLicense: 4X6XDR +departmentNumber: 1636 +employeeType: Normal +homePhone: +1 818 246-6423 +initials: M. B. +mobile: +1 818 853-1536 +pager: +1 818 272-9298 +roomNumber: 9631 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jacalyn Jawor,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacalyn Jawor +sn: Jawor +description: This is Jacalyn Jawor's description +facsimileTelephoneNumber: +1 818 327-3748 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 535-9005 +title: Supreme Management Technician +userPassword: Password1 +uid: JaworJ +givenName: Jacalyn +mail: JaworJ@d8f95844461442f7932326cd41b836f9.bitwarden.com +carLicense: QB11PH +departmentNumber: 4085 +employeeType: Employee +homePhone: +1 818 363-8475 +initials: J. J. +mobile: +1 818 519-6143 +pager: +1 818 125-7553 +roomNumber: 9193 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=National Gahunia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: National Gahunia +sn: Gahunia +description: This is National Gahunia's description +facsimileTelephoneNumber: +1 408 550-8334 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 145-7139 +title: Junior Product Development Visionary +userPassword: Password1 +uid: GahuniaN +givenName: National +mail: GahuniaN@0a4355ee7fe94c7bb8cc9baf9905f443.bitwarden.com +carLicense: IV9YE2 +departmentNumber: 2058 +employeeType: Normal +homePhone: +1 408 538-2266 +initials: N. G. +mobile: +1 408 914-9505 +pager: +1 408 991-4198 +roomNumber: 8297 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Retha Spallin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Retha Spallin +sn: Spallin +description: This is Retha Spallin's description +facsimileTelephoneNumber: +1 408 148-4180 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 318-8482 +title: Master Product Development Engineer +userPassword: Password1 +uid: SpallinR +givenName: Retha +mail: SpallinR@e358162fa0384d918adc01a68c3773f5.bitwarden.com +carLicense: SKCCSN +departmentNumber: 5933 +employeeType: Employee +homePhone: +1 408 679-1005 +initials: R. S. +mobile: +1 408 639-1737 +pager: +1 408 308-5772 +roomNumber: 8302 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Estrella Benner,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estrella Benner +sn: Benner +description: This is Estrella Benner's description +facsimileTelephoneNumber: +1 206 962-9105 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 386-4798 +title: Master Product Testing Punk +userPassword: Password1 +uid: BennerE +givenName: Estrella +mail: BennerE@ff246c4446e74d80b9a0be3db943a949.bitwarden.com +carLicense: WRQQSH +departmentNumber: 7308 +employeeType: Contract +homePhone: +1 206 966-6309 +initials: E. B. +mobile: +1 206 971-2918 +pager: +1 206 830-9128 +roomNumber: 9076 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Thomasina Kling,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomasina Kling +sn: Kling +description: This is Thomasina Kling's description +facsimileTelephoneNumber: +1 408 539-6516 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 799-9531 +title: Supreme Product Development Manager +userPassword: Password1 +uid: KlingT +givenName: Thomasina +mail: KlingT@cbc82096b5e245c9b627cf69c35c8dc6.bitwarden.com +carLicense: K7V5SS +departmentNumber: 6926 +employeeType: Employee +homePhone: +1 408 506-8848 +initials: T. K. +mobile: +1 408 507-9208 +pager: +1 408 529-3617 +roomNumber: 9393 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jaan Lian,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaan Lian +sn: Lian +description: This is Jaan Lian's description +facsimileTelephoneNumber: +1 415 564-1892 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 935-8282 +title: Supreme Peons Developer +userPassword: Password1 +uid: LianJ +givenName: Jaan +mail: LianJ@c34ff4c9cd024e7eb996d78abb689848.bitwarden.com +carLicense: 58YTXP +departmentNumber: 1681 +employeeType: Normal +homePhone: +1 415 640-4828 +initials: J. L. +mobile: +1 415 359-5726 +pager: +1 415 132-3859 +roomNumber: 9156 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carola Osatuik,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carola Osatuik +sn: Osatuik +description: This is Carola Osatuik's description +facsimileTelephoneNumber: +1 213 323-5487 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 575-3779 +title: Junior Management Vice President +userPassword: Password1 +uid: OsatuikC +givenName: Carola +mail: OsatuikC@6e5be889b97e4253b4e9a6f0b2a0b677.bitwarden.com +carLicense: P80WXI +departmentNumber: 7649 +employeeType: Contract +homePhone: +1 213 524-8742 +initials: C. O. +mobile: +1 213 489-7755 +pager: +1 213 480-3758 +roomNumber: 9156 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fifine Roussin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fifine Roussin +sn: Roussin +description: This is Fifine Roussin's description +facsimileTelephoneNumber: +1 213 120-3167 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 290-4797 +title: Supreme Payroll Assistant +userPassword: Password1 +uid: RoussinF +givenName: Fifine +mail: RoussinF@ccf238ac72764498a2a4e871140940fd.bitwarden.com +carLicense: 09R20L +departmentNumber: 8914 +employeeType: Contract +homePhone: +1 213 266-6614 +initials: F. R. +mobile: +1 213 150-6599 +pager: +1 213 315-4936 +roomNumber: 9668 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erminie Amstutz +sn: Amstutz +description: This is Erminie Amstutz's description +facsimileTelephoneNumber: +1 415 765-3415 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 776-7568 +title: Junior Janitorial Warrior +userPassword: Password1 +uid: AmstutzE +givenName: Erminie +mail: AmstutzE@75e8bf055ea0424a878ab7ea7870e005.bitwarden.com +carLicense: 7384PX +departmentNumber: 3052 +employeeType: Employee +homePhone: +1 415 874-2234 +initials: E. A. +mobile: +1 415 750-7895 +pager: +1 415 695-3735 +roomNumber: 8752 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mariam Markmeyer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariam Markmeyer +sn: Markmeyer +description: This is Mariam Markmeyer's description +facsimileTelephoneNumber: +1 510 946-7536 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 510 663-7567 +title: Junior Management Engineer +userPassword: Password1 +uid: MarkmeyM +givenName: Mariam +mail: MarkmeyM@3e451f2ddbdc401ba9f442a5e6dfbe64.bitwarden.com +carLicense: 3E4GOP +departmentNumber: 8840 +employeeType: Contract +homePhone: +1 510 860-1840 +initials: M. M. +mobile: +1 510 796-7852 +pager: +1 510 160-9627 +roomNumber: 9861 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Randall Chalker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Randall Chalker +sn: Chalker +description: This is Randall Chalker's description +facsimileTelephoneNumber: +1 206 930-1007 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 312-9294 +title: Chief Peons Warrior +userPassword: Password1 +uid: ChalkerR +givenName: Randall +mail: ChalkerR@b44a0907ac54444880285a852c9427d8.bitwarden.com +carLicense: ANLGY8 +departmentNumber: 9182 +employeeType: Normal +homePhone: +1 206 820-6241 +initials: R. C. +mobile: +1 206 509-7452 +pager: +1 206 722-2460 +roomNumber: 8222 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anki Harriett,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anki Harriett +sn: Harriett +description: This is Anki Harriett's description +facsimileTelephoneNumber: +1 510 328-6449 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 821-4998 +title: Junior Human Resources Stooge +userPassword: Password1 +uid: HarrietA +givenName: Anki +mail: HarrietA@77b7d3ef3e7d45c8b172d9cee40bbded.bitwarden.com +carLicense: HJUEL4 +departmentNumber: 3276 +employeeType: Normal +homePhone: +1 510 663-4815 +initials: A. H. +mobile: +1 510 497-5751 +pager: +1 510 235-1537 +roomNumber: 8670 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Teena Pufpaff,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teena Pufpaff +sn: Pufpaff +description: This is Teena Pufpaff's description +facsimileTelephoneNumber: +1 213 381-4588 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 383-8170 +title: Master Management Stooge +userPassword: Password1 +uid: PufpaffT +givenName: Teena +mail: PufpaffT@8d2e6b6207eb40d79fa60fd1d88ac47e.bitwarden.com +carLicense: TXO9CC +departmentNumber: 2108 +employeeType: Employee +homePhone: +1 213 265-7576 +initials: T. P. +mobile: +1 213 731-8980 +pager: +1 213 695-3538 +roomNumber: 8591 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dalip Horak,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dalip Horak +sn: Horak +description: This is Dalip Horak's description +facsimileTelephoneNumber: +1 818 362-4535 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 818 415-6720 +title: Master Payroll Janitor +userPassword: Password1 +uid: HorakD +givenName: Dalip +mail: HorakD@f4907e1fff334cd1812952d9d0110270.bitwarden.com +carLicense: WG269M +departmentNumber: 9379 +employeeType: Contract +homePhone: +1 818 246-6667 +initials: D. H. +mobile: +1 818 530-6053 +pager: +1 818 219-2577 +roomNumber: 9086 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tamarra Grassmann,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamarra Grassmann +sn: Grassmann +description: This is Tamarra Grassmann's description +facsimileTelephoneNumber: +1 818 145-9810 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 701-1755 +title: Master Peons Consultant +userPassword: Password1 +uid: GrassmaT +givenName: Tamarra +mail: GrassmaT@7efd7c70c36c49faa77efd5d14e31317.bitwarden.com +carLicense: YNLGYG +departmentNumber: 4342 +employeeType: Contract +homePhone: +1 818 800-4873 +initials: T. G. +mobile: +1 818 295-2112 +pager: +1 818 286-9875 +roomNumber: 8345 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Arun Adolfie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arun Adolfie +sn: Adolfie +description: This is Arun Adolfie's description +facsimileTelephoneNumber: +1 206 241-3481 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 206 587-8631 +title: Associate Payroll Figurehead +userPassword: Password1 +uid: AdolfieA +givenName: Arun +mail: AdolfieA@b01b1bd56e3f464896b7135dd1b7da99.bitwarden.com +carLicense: YXY2KJ +departmentNumber: 8049 +employeeType: Employee +homePhone: +1 206 593-8409 +initials: A. A. +mobile: +1 206 606-2168 +pager: +1 206 872-4121 +roomNumber: 8850 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lettie Janelle,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lettie Janelle +sn: Janelle +description: This is Lettie Janelle's description +facsimileTelephoneNumber: +1 804 257-7945 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 222-9960 +title: Junior Product Testing Developer +userPassword: Password1 +uid: JanelleL +givenName: Lettie +mail: JanelleL@bd8c56963a9f48dfb73b8a3322b6fe38.bitwarden.com +carLicense: FBTG0V +departmentNumber: 4563 +employeeType: Employee +homePhone: +1 804 331-2089 +initials: L. J. +mobile: +1 804 880-6872 +pager: +1 804 599-6373 +roomNumber: 8303 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vilas Papadopulos +sn: Papadopulos +description: This is Vilas Papadopulos's description +facsimileTelephoneNumber: +1 213 402-5898 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 208-6946 +title: Master Product Development Technician +userPassword: Password1 +uid: PapadopV +givenName: Vilas +mail: PapadopV@e6b52be13e984c2c8799a67382d2c196.bitwarden.com +carLicense: REMM18 +departmentNumber: 7703 +employeeType: Contract +homePhone: +1 213 570-5027 +initials: V. P. +mobile: +1 213 683-3741 +pager: +1 213 619-3611 +roomNumber: 9146 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Huib Kayle,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huib Kayle +sn: Kayle +description: This is Huib Kayle's description +facsimileTelephoneNumber: +1 408 660-7826 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 599-7503 +title: Supreme Payroll Director +userPassword: Password1 +uid: KayleH +givenName: Huib +mail: KayleH@8044dacf63ac423fb3f7e245d1b46862.bitwarden.com +carLicense: DNQCO3 +departmentNumber: 9921 +employeeType: Employee +homePhone: +1 408 800-2924 +initials: H. K. +mobile: +1 408 135-3359 +pager: +1 408 830-4769 +roomNumber: 8614 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vicki Streibel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vicki Streibel +sn: Streibel +description: This is Vicki Streibel's description +facsimileTelephoneNumber: +1 510 308-6588 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 543-8529 +title: Junior Management Visionary +userPassword: Password1 +uid: StreibeV +givenName: Vicki +mail: StreibeV@fc82887f7d574e47999f4c6412d5d5a4.bitwarden.com +carLicense: SFCJ00 +departmentNumber: 4762 +employeeType: Normal +homePhone: +1 510 488-6694 +initials: V. S. +mobile: +1 510 474-4537 +pager: +1 510 878-1777 +roomNumber: 9768 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ingeberg Gomm,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ingeberg Gomm +sn: Gomm +description: This is Ingeberg Gomm's description +facsimileTelephoneNumber: +1 213 197-3884 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 838-7784 +title: Supreme Peons Assistant +userPassword: Password1 +uid: GommI +givenName: Ingeberg +mail: GommI@5f7aa1104dd847a783d3ab9f854696e3.bitwarden.com +carLicense: XAONWT +departmentNumber: 5377 +employeeType: Employee +homePhone: +1 213 917-7098 +initials: I. G. +mobile: +1 213 714-3960 +pager: +1 213 961-7055 +roomNumber: 9715 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phebe Raddalgoda +sn: Raddalgoda +description: This is Phebe Raddalgoda's description +facsimileTelephoneNumber: +1 804 132-9108 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 644-5361 +title: Chief Peons Technician +userPassword: Password1 +uid: RaddalgP +givenName: Phebe +mail: RaddalgP@8b09ab861a8547548572c341d5ae5d43.bitwarden.com +carLicense: 2NEIY9 +departmentNumber: 2437 +employeeType: Contract +homePhone: +1 804 816-6105 +initials: P. R. +mobile: +1 804 639-8744 +pager: +1 804 291-3098 +roomNumber: 8326 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorianna Windom,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorianna Windom +sn: Windom +description: This is Lorianna Windom's description +facsimileTelephoneNumber: +1 510 553-3005 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 829-1384 +title: Junior Peons Admin +userPassword: Password1 +uid: WindomL +givenName: Lorianna +mail: WindomL@b890dc6370824c28b958abdf02b9b5bf.bitwarden.com +carLicense: V7KHXJ +departmentNumber: 3565 +employeeType: Employee +homePhone: +1 510 324-6530 +initials: L. W. +mobile: +1 510 956-1413 +pager: +1 510 777-1730 +roomNumber: 8949 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tamera Meyer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tamera Meyer +sn: Meyer +description: This is Tamera Meyer's description +facsimileTelephoneNumber: +1 415 227-7305 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 885-8304 +title: Chief Peons Janitor +userPassword: Password1 +uid: MeyerT +givenName: Tamera +mail: MeyerT@ad0135726be04a5d8faeb9e97bff3b3d.bitwarden.com +carLicense: W0YC34 +departmentNumber: 9511 +employeeType: Normal +homePhone: +1 415 975-5668 +initials: T. M. +mobile: +1 415 740-1258 +pager: +1 415 271-8770 +roomNumber: 8565 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blakeley Aladangady +sn: Aladangady +description: This is Blakeley Aladangady's description +facsimileTelephoneNumber: +1 804 695-5774 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 804 779-7953 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: AladangB +givenName: Blakeley +mail: AladangB@6ab8bc12da524a3d8f16fa02dd65712d.bitwarden.com +carLicense: 4DCYP1 +departmentNumber: 4952 +employeeType: Contract +homePhone: +1 804 452-6846 +initials: B. A. +mobile: +1 804 621-1648 +pager: +1 804 385-7651 +roomNumber: 8402 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Corliss Chenard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corliss Chenard +sn: Chenard +description: This is Corliss Chenard's description +facsimileTelephoneNumber: +1 818 964-9651 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 228-8088 +title: Supreme Product Testing Dictator +userPassword: Password1 +uid: ChenardC +givenName: Corliss +mail: ChenardC@ec10cc023e454fb0bbdd9208be69f4fc.bitwarden.com +carLicense: CG9YVK +departmentNumber: 6170 +employeeType: Normal +homePhone: +1 818 629-4396 +initials: C. C. +mobile: +1 818 343-2148 +pager: +1 818 994-2306 +roomNumber: 8040 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rheba Castelloe,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rheba Castelloe +sn: Castelloe +description: This is Rheba Castelloe's description +facsimileTelephoneNumber: +1 213 920-4925 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 377-6235 +title: Associate Peons Figurehead +userPassword: Password1 +uid: CastellR +givenName: Rheba +mail: CastellR@ac25d049c10a4d758088ebdaf063ce02.bitwarden.com +carLicense: M0HRJF +departmentNumber: 5809 +employeeType: Normal +homePhone: +1 213 353-8554 +initials: R. C. +mobile: +1 213 164-7840 +pager: +1 213 634-2331 +roomNumber: 9185 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marijke Bielby,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marijke Bielby +sn: Bielby +description: This is Marijke Bielby's description +facsimileTelephoneNumber: +1 408 882-5552 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 169-8004 +title: Supreme Management Artist +userPassword: Password1 +uid: BielbyM +givenName: Marijke +mail: BielbyM@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com +carLicense: AF30L3 +departmentNumber: 8060 +employeeType: Contract +homePhone: +1 408 653-6902 +initials: M. B. +mobile: +1 408 308-1807 +pager: +1 408 865-2742 +roomNumber: 9170 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Steen Carpool,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steen Carpool +sn: Carpool +description: This is Steen Carpool's description +facsimileTelephoneNumber: +1 408 738-8674 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 333-1179 +title: Master Human Resources Visionary +userPassword: Password1 +uid: CarpoolS +givenName: Steen +mail: CarpoolS@c3d2d2c0ad16421093e58b9a80d13fae.bitwarden.com +carLicense: FSULL0 +departmentNumber: 1557 +employeeType: Employee +homePhone: +1 408 296-8248 +initials: S. C. +mobile: +1 408 333-7799 +pager: +1 408 122-2439 +roomNumber: 8702 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marigold Girgis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marigold Girgis +sn: Girgis +description: This is Marigold Girgis's description +facsimileTelephoneNumber: +1 818 909-6675 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 818 473-8176 +title: Associate Product Testing Punk +userPassword: Password1 +uid: GirgisM +givenName: Marigold +mail: GirgisM@6cc4c5dff9d04b5e89ad32c2b33d43af.bitwarden.com +carLicense: AUUU3I +departmentNumber: 3064 +employeeType: Contract +homePhone: +1 818 958-9183 +initials: M. G. +mobile: +1 818 653-8025 +pager: +1 818 855-1511 +roomNumber: 8878 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tdr Gavidia,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tdr Gavidia +sn: Gavidia +description: This is Tdr Gavidia's description +facsimileTelephoneNumber: +1 408 156-1639 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 264-4070 +title: Junior Administrative Artist +userPassword: Password1 +uid: GavidiaT +givenName: Tdr +mail: GavidiaT@5a85cb992a6942cf9192a30cc4dff439.bitwarden.com +carLicense: YN6O1O +departmentNumber: 2593 +employeeType: Normal +homePhone: +1 408 306-5612 +initials: T. G. +mobile: +1 408 867-9929 +pager: +1 408 761-5613 +roomNumber: 8149 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Judith Charbonneau,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Judith Charbonneau +sn: Charbonneau +description: This is Judith Charbonneau's description +facsimileTelephoneNumber: +1 510 385-6435 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 510 945-2839 +title: Associate Product Development Warrior +userPassword: Password1 +uid: CharbonJ +givenName: Judith +mail: CharbonJ@fdf5161eeea14f4092d0d9d3593c3092.bitwarden.com +carLicense: U8TXB0 +departmentNumber: 1812 +employeeType: Normal +homePhone: +1 510 856-1444 +initials: J. C. +mobile: +1 510 509-9952 +pager: +1 510 896-7065 +roomNumber: 9269 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Katerine Manners,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katerine Manners +sn: Manners +description: This is Katerine Manners's description +facsimileTelephoneNumber: +1 804 791-4780 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 804 397-3570 +title: Master Management Consultant +userPassword: Password1 +uid: MannersK +givenName: Katerine +mail: MannersK@67959d83c9f54eab8d5e9b41e77626e1.bitwarden.com +carLicense: 5P6W1K +departmentNumber: 5613 +employeeType: Employee +homePhone: +1 804 335-9665 +initials: K. M. +mobile: +1 804 817-3879 +pager: +1 804 480-2183 +roomNumber: 8497 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tasha Netdev,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tasha Netdev +sn: Netdev +description: This is Tasha Netdev's description +facsimileTelephoneNumber: +1 415 378-5904 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 415 878-8628 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: NetdevT +givenName: Tasha +mail: NetdevT@feb159b030e14305b9c8b50a78e33542.bitwarden.com +carLicense: KKU94W +departmentNumber: 1749 +employeeType: Employee +homePhone: +1 415 338-8879 +initials: T. N. +mobile: +1 415 707-6884 +pager: +1 415 749-3100 +roomNumber: 9333 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ken Shiue,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ken Shiue +sn: Shiue +description: This is Ken Shiue's description +facsimileTelephoneNumber: +1 415 634-9020 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 415 529-5066 +title: Supreme Administrative Artist +userPassword: Password1 +uid: ShiueK +givenName: Ken +mail: ShiueK@aa835df49d8745e4bab27a377c8d41e2.bitwarden.com +carLicense: OP7J6Y +departmentNumber: 9745 +employeeType: Employee +homePhone: +1 415 823-3423 +initials: K. S. +mobile: +1 415 416-8792 +pager: +1 415 742-7930 +roomNumber: 8714 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tc Hayman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tc Hayman +sn: Hayman +description: This is Tc Hayman's description +facsimileTelephoneNumber: +1 206 181-8647 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 794-8623 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: HaymanT +givenName: Tc +mail: HaymanT@504b7fa15e81498b91140ca23e9bafd1.bitwarden.com +carLicense: ERNHNB +departmentNumber: 3485 +employeeType: Employee +homePhone: +1 206 899-6615 +initials: T. H. +mobile: +1 206 566-5497 +pager: +1 206 995-4532 +roomNumber: 9677 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Corry Johnston,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corry Johnston +sn: Johnston +description: This is Corry Johnston's description +facsimileTelephoneNumber: +1 510 389-2854 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 510 293-9616 +title: Associate Management Director +userPassword: Password1 +uid: JohnstoC +givenName: Corry +mail: JohnstoC@70db07b7e30f4b06835c7cf868520da6.bitwarden.com +carLicense: V20FT5 +departmentNumber: 3905 +employeeType: Normal +homePhone: +1 510 153-1354 +initials: C. J. +mobile: +1 510 938-8814 +pager: +1 510 786-6156 +roomNumber: 8515 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tracee Kastelberg +sn: Kastelberg +description: This is Tracee Kastelberg's description +facsimileTelephoneNumber: +1 408 862-1780 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 196-9380 +title: Chief Janitorial Sales Rep +userPassword: Password1 +uid: KastelbT +givenName: Tracee +mail: KastelbT@29c15912a9c64d47a005bca4887abd95.bitwarden.com +carLicense: LF7NYY +departmentNumber: 3169 +employeeType: Contract +homePhone: +1 408 297-1190 +initials: T. K. +mobile: +1 408 202-8686 +pager: +1 408 164-7187 +roomNumber: 9076 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lacy Ferguson +sn: Ferguson +description: This is Lacy Ferguson's description +facsimileTelephoneNumber: +1 206 553-7794 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 195-3749 +title: Chief Product Testing President +userPassword: Password1 +uid: FergusoL +givenName: Lacy +mail: FergusoL@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com +carLicense: RSXH57 +departmentNumber: 4872 +employeeType: Employee +homePhone: +1 206 357-6981 +initials: L. F. +mobile: +1 206 636-1109 +pager: +1 206 717-5555 +roomNumber: 9644 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Farag Rogge,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farag Rogge +sn: Rogge +description: This is Farag Rogge's description +facsimileTelephoneNumber: +1 818 676-7578 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 411-1746 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: RoggeF +givenName: Farag +mail: RoggeF@3f3cc38c24fe4b7a8534f2cd843278b3.bitwarden.com +carLicense: HO3EJ4 +departmentNumber: 6791 +employeeType: Normal +homePhone: +1 818 377-2474 +initials: F. R. +mobile: +1 818 421-1114 +pager: +1 818 650-4996 +roomNumber: 8447 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Scot Santitoro,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Scot Santitoro +sn: Santitoro +description: This is Scot Santitoro's description +facsimileTelephoneNumber: +1 213 286-7510 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 238-5302 +title: Chief Payroll Director +userPassword: Password1 +uid: SantitoS +givenName: Scot +mail: SantitoS@4df07dd4fa25468db57d445d7d91ad8d.bitwarden.com +carLicense: CYDDEN +departmentNumber: 8163 +employeeType: Normal +homePhone: +1 213 960-7126 +initials: S. S. +mobile: +1 213 762-4513 +pager: +1 213 782-8748 +roomNumber: 9720 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elisabeth Conrath +sn: Conrath +description: This is Elisabeth Conrath's description +facsimileTelephoneNumber: +1 408 271-7904 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 908-4202 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: ConrathE +givenName: Elisabeth +mail: ConrathE@a6f3133d61d14ab9941634fba9dc1a84.bitwarden.com +carLicense: PD4TFO +departmentNumber: 1080 +employeeType: Normal +homePhone: +1 408 479-7572 +initials: E. C. +mobile: +1 408 234-3643 +pager: +1 408 926-5815 +roomNumber: 9244 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Micah Goheen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Micah Goheen +sn: Goheen +description: This is Micah Goheen's description +facsimileTelephoneNumber: +1 415 968-8620 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 958-4714 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: GoheenM +givenName: Micah +mail: GoheenM@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com +carLicense: K6AO65 +departmentNumber: 7643 +employeeType: Employee +homePhone: +1 415 687-3818 +initials: M. G. +mobile: +1 415 984-1092 +pager: +1 415 279-2914 +roomNumber: 8674 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kasey Primeau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kasey Primeau +sn: Primeau +description: This is Kasey Primeau's description +facsimileTelephoneNumber: +1 415 755-7429 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 840-9228 +title: Chief Janitorial Developer +userPassword: Password1 +uid: PrimeauK +givenName: Kasey +mail: PrimeauK@65763f125f254ceea21c060ef488c98d.bitwarden.com +carLicense: SO3RBM +departmentNumber: 3813 +employeeType: Contract +homePhone: +1 415 458-8954 +initials: K. P. +mobile: +1 415 598-2452 +pager: +1 415 429-2691 +roomNumber: 9768 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jsandye Dickford +sn: Dickford +description: This is Jsandye Dickford's description +facsimileTelephoneNumber: +1 213 529-1608 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 217-2233 +title: Master Janitorial Assistant +userPassword: Password1 +uid: DickforJ +givenName: Jsandye +mail: DickforJ@be39439fe1b046ff8b55dd6e46a1f1fd.bitwarden.com +carLicense: 5YINPQ +departmentNumber: 5120 +employeeType: Employee +homePhone: +1 213 969-1328 +initials: J. D. +mobile: +1 213 506-6424 +pager: +1 213 404-9929 +roomNumber: 8244 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Frankie Nesbitt,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frankie Nesbitt +sn: Nesbitt +description: This is Frankie Nesbitt's description +facsimileTelephoneNumber: +1 206 723-5355 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 820-3695 +title: Junior Management Admin +userPassword: Password1 +uid: NesbittF +givenName: Frankie +mail: NesbittF@01b767fcb2cb434ca691bff5e3c89088.bitwarden.com +carLicense: JAY4JQ +departmentNumber: 8877 +employeeType: Normal +homePhone: +1 206 712-1548 +initials: F. N. +mobile: +1 206 981-4848 +pager: +1 206 876-3975 +roomNumber: 9338 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fran Visockis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fran Visockis +sn: Visockis +description: This is Fran Visockis's description +facsimileTelephoneNumber: +1 206 382-7068 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 165-4706 +title: Junior Payroll President +userPassword: Password1 +uid: VisockiF +givenName: Fran +mail: VisockiF@f78034ad70854ccbacb0124129d464fa.bitwarden.com +carLicense: 6N4316 +departmentNumber: 2387 +employeeType: Contract +homePhone: +1 206 101-8015 +initials: F. V. +mobile: +1 206 632-7337 +pager: +1 206 425-1657 +roomNumber: 9952 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Prudence Deugau,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prudence Deugau +sn: Deugau +description: This is Prudence Deugau's description +facsimileTelephoneNumber: +1 804 358-8017 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 861-9479 +title: Supreme Product Development Writer +userPassword: Password1 +uid: DeugauP +givenName: Prudence +mail: DeugauP@67a9d61944244b79b04665b16e622d77.bitwarden.com +carLicense: IFDUOF +departmentNumber: 2303 +employeeType: Employee +homePhone: +1 804 526-1010 +initials: P. D. +mobile: +1 804 347-2107 +pager: +1 804 223-1711 +roomNumber: 9255 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elbert Figura,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elbert Figura +sn: Figura +description: This is Elbert Figura's description +facsimileTelephoneNumber: +1 206 205-1882 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 850-8185 +title: Supreme Peons Mascot +userPassword: Password1 +uid: FiguraE +givenName: Elbert +mail: FiguraE@45017ba123de4bd691a840bb1387bf6c.bitwarden.com +carLicense: V6AEE1 +departmentNumber: 1336 +employeeType: Normal +homePhone: +1 206 285-8467 +initials: E. F. +mobile: +1 206 950-2394 +pager: +1 206 106-1901 +roomNumber: 8497 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dorian Kingzett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorian Kingzett +sn: Kingzett +description: This is Dorian Kingzett's description +facsimileTelephoneNumber: +1 818 925-1861 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 888-4306 +title: Associate Payroll Artist +userPassword: Password1 +uid: KingzetD +givenName: Dorian +mail: KingzetD@ae52dcada2674f68a76a2c619d85f261.bitwarden.com +carLicense: G9C548 +departmentNumber: 2858 +employeeType: Employee +homePhone: +1 818 734-8672 +initials: D. K. +mobile: +1 818 632-2028 +pager: +1 818 377-2720 +roomNumber: 9481 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Camila Wilhoit,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camila Wilhoit +sn: Wilhoit +description: This is Camila Wilhoit's description +facsimileTelephoneNumber: +1 510 503-8544 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 961-8068 +title: Junior Management Visionary +userPassword: Password1 +uid: WilhoitC +givenName: Camila +mail: WilhoitC@d52f84a4faf148e392088a55b1d91d85.bitwarden.com +carLicense: VIASDV +departmentNumber: 5001 +employeeType: Employee +homePhone: +1 510 166-4936 +initials: C. W. +mobile: +1 510 989-3123 +pager: +1 510 592-6131 +roomNumber: 8337 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Wannell Klapper,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wannell Klapper +sn: Klapper +description: This is Wannell Klapper's description +facsimileTelephoneNumber: +1 415 989-9953 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 317-7430 +title: Junior Product Development Madonna +userPassword: Password1 +uid: KlapperW +givenName: Wannell +mail: KlapperW@24698099682948489af34be8e13083ae.bitwarden.com +carLicense: 6T4855 +departmentNumber: 7123 +employeeType: Contract +homePhone: +1 415 253-4472 +initials: W. K. +mobile: +1 415 420-1459 +pager: +1 415 657-2591 +roomNumber: 8486 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Brynne Hiers,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brynne Hiers +sn: Hiers +description: This is Brynne Hiers's description +facsimileTelephoneNumber: +1 408 624-6539 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 633-8868 +title: Associate Peons Admin +userPassword: Password1 +uid: HiersB +givenName: Brynne +mail: HiersB@3b31b1e22b674d48829733c162895a88.bitwarden.com +carLicense: MLV93L +departmentNumber: 8229 +employeeType: Contract +homePhone: +1 408 344-3935 +initials: B. H. +mobile: +1 408 213-6621 +pager: +1 408 140-2585 +roomNumber: 8106 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilberte Abdollahi +sn: Abdollahi +description: This is Gilberte Abdollahi's description +facsimileTelephoneNumber: +1 408 847-3293 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 141-4678 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: AbdollaG +givenName: Gilberte +mail: AbdollaG@38fb869ba3244313992623d5e5856ca5.bitwarden.com +carLicense: XT97KF +departmentNumber: 9155 +employeeType: Employee +homePhone: +1 408 221-2798 +initials: G. A. +mobile: +1 408 396-1734 +pager: +1 408 175-9035 +roomNumber: 8751 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Barbi Hebbar,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbi Hebbar +sn: Hebbar +description: This is Barbi Hebbar's description +facsimileTelephoneNumber: +1 206 576-9224 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 970-5815 +title: Associate Payroll Stooge +userPassword: Password1 +uid: HebbarB +givenName: Barbi +mail: HebbarB@1fa3d22353b84ae8b3c1cfa1f92c0d6e.bitwarden.com +carLicense: O06NTD +departmentNumber: 4157 +employeeType: Normal +homePhone: +1 206 767-2655 +initials: B. H. +mobile: +1 206 203-2610 +pager: +1 206 860-3207 +roomNumber: 9575 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicoline Wheelock +sn: Wheelock +description: This is Nicoline Wheelock's description +facsimileTelephoneNumber: +1 213 260-6520 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 310-1868 +title: Junior Product Development Janitor +userPassword: Password1 +uid: WheelocN +givenName: Nicoline +mail: WheelocN@7cfe2ffb0199421b9c038434ce9a5120.bitwarden.com +carLicense: QTBPFN +departmentNumber: 1386 +employeeType: Normal +homePhone: +1 213 558-5845 +initials: N. W. +mobile: +1 213 205-7987 +pager: +1 213 815-5111 +roomNumber: 8345 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Panch Golka,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Panch Golka +sn: Golka +description: This is Panch Golka's description +facsimileTelephoneNumber: +1 510 940-2574 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 510 270-3505 +title: Junior Payroll Manager +userPassword: Password1 +uid: GolkaP +givenName: Panch +mail: GolkaP@8b4e205f7cd04cdf9570b14ba9584f1d.bitwarden.com +carLicense: M0RY9N +departmentNumber: 1436 +employeeType: Normal +homePhone: +1 510 709-4577 +initials: P. G. +mobile: +1 510 133-6975 +pager: +1 510 716-3223 +roomNumber: 8560 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Freya Seagraves,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Freya Seagraves +sn: Seagraves +description: This is Freya Seagraves's description +facsimileTelephoneNumber: +1 408 844-6898 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 880-8233 +title: Master Janitorial Mascot +userPassword: Password1 +uid: SeagravF +givenName: Freya +mail: SeagravF@6d6b8145dca640f99bdb6ac4a86deac7.bitwarden.com +carLicense: YMLN3B +departmentNumber: 9054 +employeeType: Normal +homePhone: +1 408 461-2741 +initials: F. S. +mobile: +1 408 158-4942 +pager: +1 408 963-4876 +roomNumber: 8279 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Makary Pulver,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Makary Pulver +sn: Pulver +description: This is Makary Pulver's description +facsimileTelephoneNumber: +1 804 693-5235 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 842-5385 +title: Master Administrative Technician +userPassword: Password1 +uid: PulverM +givenName: Makary +mail: PulverM@a52b2533262a41f09422c904974af50a.bitwarden.com +carLicense: L839WI +departmentNumber: 8440 +employeeType: Normal +homePhone: +1 804 963-8235 +initials: M. P. +mobile: +1 804 125-8673 +pager: +1 804 815-4049 +roomNumber: 9387 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carmela Voitel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmela Voitel +sn: Voitel +description: This is Carmela Voitel's description +facsimileTelephoneNumber: +1 510 134-5536 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 252-3995 +title: Supreme Product Development Technician +userPassword: Password1 +uid: VoitelC +givenName: Carmela +mail: VoitelC@de96a17ce06e4487ba5f98c80195f121.bitwarden.com +carLicense: AJNFNU +departmentNumber: 9315 +employeeType: Normal +homePhone: +1 510 820-8674 +initials: C. V. +mobile: +1 510 879-4106 +pager: +1 510 909-6642 +roomNumber: 8850 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nonah Ledet,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nonah Ledet +sn: Ledet +description: This is Nonah Ledet's description +facsimileTelephoneNumber: +1 818 835-8877 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 751-9837 +title: Master Product Development Sales Rep +userPassword: Password1 +uid: LedetN +givenName: Nonah +mail: LedetN@59594afdce864109b5f7447ee0401063.bitwarden.com +carLicense: H9F1RD +departmentNumber: 7261 +employeeType: Employee +homePhone: +1 818 804-1412 +initials: N. L. +mobile: +1 818 983-2946 +pager: +1 818 709-4766 +roomNumber: 9576 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marti Mac,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marti Mac +sn: Mac +description: This is Marti Mac's description +facsimileTelephoneNumber: +1 408 175-5477 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 496-2652 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: MacM +givenName: Marti +mail: MacM@820452a402ec435298020857f318cbc5.bitwarden.com +carLicense: KEQYB0 +departmentNumber: 5189 +employeeType: Normal +homePhone: +1 408 586-4372 +initials: M. M. +mobile: +1 408 323-5474 +pager: +1 408 619-9560 +roomNumber: 9376 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassondra Elchakieh +sn: Elchakieh +description: This is Cassondra Elchakieh's description +facsimileTelephoneNumber: +1 213 485-7311 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 418-1281 +title: Junior Product Development Technician +userPassword: Password1 +uid: ElchakiC +givenName: Cassondra +mail: ElchakiC@4183bc2b55d349abb67652aa3cd2f8e7.bitwarden.com +carLicense: GUBVX3 +departmentNumber: 4015 +employeeType: Contract +homePhone: +1 213 279-1945 +initials: C. E. +mobile: +1 213 832-2718 +pager: +1 213 962-5993 +roomNumber: 9897 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maxi Isaac,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maxi Isaac +sn: Isaac +description: This is Maxi Isaac's description +facsimileTelephoneNumber: +1 213 702-2273 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 904-9743 +title: Supreme Administrative Engineer +userPassword: Password1 +uid: IsaacM +givenName: Maxi +mail: IsaacM@44bcfd07218c489eba7387452f761d66.bitwarden.com +carLicense: NIWRGS +departmentNumber: 9257 +employeeType: Contract +homePhone: +1 213 905-3531 +initials: M. I. +mobile: +1 213 302-8968 +pager: +1 213 402-9624 +roomNumber: 8472 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Orlyn Eros,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orlyn Eros +sn: Eros +description: This is Orlyn Eros's description +facsimileTelephoneNumber: +1 415 847-2382 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 525-1826 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: ErosO +givenName: Orlyn +mail: ErosO@5889521a4ba34649ace6fd6f42ef0aa2.bitwarden.com +carLicense: RAVP9A +departmentNumber: 3713 +employeeType: Contract +homePhone: +1 415 802-7283 +initials: O. E. +mobile: +1 415 301-2248 +pager: +1 415 648-1127 +roomNumber: 9827 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Amandi Twiss,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amandi Twiss +sn: Twiss +description: This is Amandi Twiss's description +facsimileTelephoneNumber: +1 818 949-3278 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 186-8643 +title: Associate Human Resources Technician +userPassword: Password1 +uid: TwissA +givenName: Amandi +mail: TwissA@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com +carLicense: I516DU +departmentNumber: 5171 +employeeType: Contract +homePhone: +1 818 740-1537 +initials: A. T. +mobile: +1 818 745-2455 +pager: +1 818 864-8650 +roomNumber: 9303 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carolyne Delmar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolyne Delmar +sn: Delmar +description: This is Carolyne Delmar's description +facsimileTelephoneNumber: +1 408 110-1078 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 928-5470 +title: Supreme Peons Pinhead +userPassword: Password1 +uid: DelmarC +givenName: Carolyne +mail: DelmarC@d49a6ebf54d04e67aead2ded915937e2.bitwarden.com +carLicense: H0B9UO +departmentNumber: 7444 +employeeType: Employee +homePhone: +1 408 110-7636 +initials: C. D. +mobile: +1 408 473-4895 +pager: +1 408 511-1010 +roomNumber: 9369 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Los Barbeau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Los Barbeau +sn: Barbeau +description: This is Los Barbeau's description +facsimileTelephoneNumber: +1 408 112-7764 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 113-1266 +title: Master Payroll Director +userPassword: Password1 +uid: BarbeauL +givenName: Los +mail: BarbeauL@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com +carLicense: CW614W +departmentNumber: 5138 +employeeType: Employee +homePhone: +1 408 820-5434 +initials: L. B. +mobile: +1 408 873-3859 +pager: +1 408 346-3300 +roomNumber: 8074 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fung Godwin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fung Godwin +sn: Godwin +description: This is Fung Godwin's description +facsimileTelephoneNumber: +1 213 367-4016 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 176-3968 +title: Master Product Testing Artist +userPassword: Password1 +uid: GodwinF +givenName: Fung +mail: GodwinF@64c2994b832f40a4a166aa8ac8dd69f6.bitwarden.com +carLicense: PAPRI5 +departmentNumber: 6159 +employeeType: Normal +homePhone: +1 213 337-1428 +initials: F. G. +mobile: +1 213 340-8113 +pager: +1 213 908-8329 +roomNumber: 8064 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Coreen Underwood,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coreen Underwood +sn: Underwood +description: This is Coreen Underwood's description +facsimileTelephoneNumber: +1 415 369-3940 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 301-7575 +title: Chief Product Development Artist +userPassword: Password1 +uid: UnderwoC +givenName: Coreen +mail: UnderwoC@ee1df761a37f416c8ab1cdfe97a867af.bitwarden.com +carLicense: QHOTPS +departmentNumber: 5153 +employeeType: Normal +homePhone: +1 415 434-9320 +initials: C. U. +mobile: +1 415 125-9382 +pager: +1 415 884-6156 +roomNumber: 8817 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Inquire Morse,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inquire Morse +sn: Morse +description: This is Inquire Morse's description +facsimileTelephoneNumber: +1 804 562-8421 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 216-7776 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: MorseI +givenName: Inquire +mail: MorseI@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com +carLicense: MMGLWO +departmentNumber: 5616 +employeeType: Normal +homePhone: +1 804 309-1542 +initials: I. M. +mobile: +1 804 417-7628 +pager: +1 804 345-6725 +roomNumber: 9105 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roby Kalyani,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roby Kalyani +sn: Kalyani +description: This is Roby Kalyani's description +facsimileTelephoneNumber: +1 206 978-7526 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 833-7576 +title: Supreme Janitorial Technician +userPassword: Password1 +uid: KalyaniR +givenName: Roby +mail: KalyaniR@31fa64a862294a7388a08b68af152886.bitwarden.com +carLicense: 3W43BK +departmentNumber: 1984 +employeeType: Employee +homePhone: +1 206 703-9277 +initials: R. K. +mobile: +1 206 920-7060 +pager: +1 206 363-2745 +roomNumber: 9313 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leena OKelly,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leena OKelly +sn: OKelly +description: This is Leena OKelly's description +facsimileTelephoneNumber: +1 206 696-6231 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 284-5311 +title: Associate Peons Developer +userPassword: Password1 +uid: OKellyL +givenName: Leena +mail: OKellyL@fdfd326c1e8945a3966cb4de28c4d870.bitwarden.com +carLicense: 1R7WLO +departmentNumber: 2710 +employeeType: Normal +homePhone: +1 206 727-6733 +initials: L. O. +mobile: +1 206 368-3136 +pager: +1 206 682-2833 +roomNumber: 9241 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Joli Gavidia,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joli Gavidia +sn: Gavidia +description: This is Joli Gavidia's description +facsimileTelephoneNumber: +1 206 400-9456 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 206 314-5954 +title: Master Janitorial Czar +userPassword: Password1 +uid: GavidiaJ +givenName: Joli +mail: GavidiaJ@8a64f3daaeda4903b6f2db2d73e7274f.bitwarden.com +carLicense: 2E0KGE +departmentNumber: 3384 +employeeType: Contract +homePhone: +1 206 939-1252 +initials: J. G. +mobile: +1 206 757-8764 +pager: +1 206 573-1908 +roomNumber: 9471 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gint Cioffi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gint Cioffi +sn: Cioffi +description: This is Gint Cioffi's description +facsimileTelephoneNumber: +1 818 758-6012 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 652-8432 +title: Chief Product Development Grunt +userPassword: Password1 +uid: CioffiG +givenName: Gint +mail: CioffiG@d5e4a37826af47d086930b55ea76e123.bitwarden.com +carLicense: SLVB3M +departmentNumber: 1864 +employeeType: Employee +homePhone: +1 818 594-3684 +initials: G. C. +mobile: +1 818 270-1329 +pager: +1 818 361-6957 +roomNumber: 8254 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chelsea Arvin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsea Arvin +sn: Arvin +description: This is Chelsea Arvin's description +facsimileTelephoneNumber: +1 206 339-8451 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 206 310-1101 +title: Associate Product Development Mascot +userPassword: Password1 +uid: ArvinC +givenName: Chelsea +mail: ArvinC@d4881d0da2824b94aad995234e30bb1a.bitwarden.com +carLicense: L9A6LJ +departmentNumber: 8395 +employeeType: Normal +homePhone: +1 206 821-3759 +initials: C. A. +mobile: +1 206 288-4072 +pager: +1 206 969-7640 +roomNumber: 9186 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Allix Closson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allix Closson +sn: Closson +description: This is Allix Closson's description +facsimileTelephoneNumber: +1 213 168-5882 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 776-4583 +title: Chief Management Visionary +userPassword: Password1 +uid: ClossonA +givenName: Allix +mail: ClossonA@1385c66d23c04cd2a77d3143933af9fa.bitwarden.com +carLicense: ETFCEW +departmentNumber: 6126 +employeeType: Employee +homePhone: +1 213 250-3446 +initials: A. C. +mobile: +1 213 360-4828 +pager: +1 213 588-1519 +roomNumber: 8810 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ortensia Renwick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ortensia Renwick +sn: Renwick +description: This is Ortensia Renwick's description +facsimileTelephoneNumber: +1 415 345-8305 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 651-3484 +title: Master Payroll Pinhead +userPassword: Password1 +uid: RenwickO +givenName: Ortensia +mail: RenwickO@2578fec05f3c4caebb2ed35da0948626.bitwarden.com +carLicense: VEOP7P +departmentNumber: 1808 +employeeType: Contract +homePhone: +1 415 622-1144 +initials: O. R. +mobile: +1 415 858-4757 +pager: +1 415 317-2282 +roomNumber: 8679 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: DAnne Pollinzi +sn: Pollinzi +description: This is DAnne Pollinzi's description +facsimileTelephoneNumber: +1 415 117-2156 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 415 723-6621 +title: Associate Payroll Vice President +userPassword: Password1 +uid: PollinzD +givenName: DAnne +mail: PollinzD@7e68fcf7d1c0481096800d5b87b7212d.bitwarden.com +carLicense: S4YQG1 +departmentNumber: 6195 +employeeType: Normal +homePhone: +1 415 523-9559 +initials: D. P. +mobile: +1 415 624-6851 +pager: +1 415 406-5239 +roomNumber: 8553 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Megumi Lipski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Megumi Lipski +sn: Lipski +description: This is Megumi Lipski's description +facsimileTelephoneNumber: +1 408 534-1123 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 271-7125 +title: Chief Peons Evangelist +userPassword: Password1 +uid: LipskiM +givenName: Megumi +mail: LipskiM@4a9fb51cf5c54cab94b295c86af723f8.bitwarden.com +carLicense: 7PFR4F +departmentNumber: 7154 +employeeType: Employee +homePhone: +1 408 757-3074 +initials: M. L. +mobile: +1 408 558-2386 +pager: +1 408 813-9635 +roomNumber: 8081 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tulip Jeanes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tulip Jeanes +sn: Jeanes +description: This is Tulip Jeanes's description +facsimileTelephoneNumber: +1 213 439-5354 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 150-4070 +title: Chief Peons Stooge +userPassword: Password1 +uid: JeanesT +givenName: Tulip +mail: JeanesT@7eeb5a2e39b24090937294c20835ac1d.bitwarden.com +carLicense: TGDCW0 +departmentNumber: 8530 +employeeType: Contract +homePhone: +1 213 214-8563 +initials: T. J. +mobile: +1 213 317-1083 +pager: +1 213 133-8493 +roomNumber: 9650 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Meg Kuechler,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meg Kuechler +sn: Kuechler +description: This is Meg Kuechler's description +facsimileTelephoneNumber: +1 804 473-9444 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 961-7062 +title: Chief Peons Stooge +userPassword: Password1 +uid: KuechleM +givenName: Meg +mail: KuechleM@b65d03e1c71344bb80d7616ebd0b92e1.bitwarden.com +carLicense: 5D1CI2 +departmentNumber: 8831 +employeeType: Normal +homePhone: +1 804 184-5779 +initials: M. K. +mobile: +1 804 128-8507 +pager: +1 804 396-6951 +roomNumber: 8299 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Severin Sridaran,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Severin Sridaran +sn: Sridaran +description: This is Severin Sridaran's description +facsimileTelephoneNumber: +1 213 332-8732 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 213 649-9048 +title: Chief Payroll Architect +userPassword: Password1 +uid: SridaraS +givenName: Severin +mail: SridaraS@a27a4ae74e5044938ec0dc7534cd37ef.bitwarden.com +carLicense: RYYKI5 +departmentNumber: 7086 +employeeType: Contract +homePhone: +1 213 424-7390 +initials: S. S. +mobile: +1 213 873-8230 +pager: +1 213 372-3328 +roomNumber: 9302 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bambie Laschuk +sn: Laschuk +description: This is Bambie Laschuk's description +facsimileTelephoneNumber: +1 415 499-5851 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 882-7795 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: LaschukB +givenName: Bambie +mail: LaschukB@d08341ea0aca4d2a827c8888aa168a33.bitwarden.com +carLicense: 85F0G0 +departmentNumber: 5004 +employeeType: Contract +homePhone: +1 415 779-8089 +initials: B. L. +mobile: +1 415 285-3351 +pager: +1 415 181-8552 +roomNumber: 9422 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rivalee Markes,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rivalee Markes +sn: Markes +description: This is Rivalee Markes's description +facsimileTelephoneNumber: +1 804 350-4009 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 180-8020 +title: Associate Payroll Warrior +userPassword: Password1 +uid: MarkesR +givenName: Rivalee +mail: MarkesR@13757531d26649c1ba7e4dc18bfd6a62.bitwarden.com +carLicense: 3158T3 +departmentNumber: 8593 +employeeType: Normal +homePhone: +1 804 270-4726 +initials: R. M. +mobile: +1 804 952-4884 +pager: +1 804 677-9979 +roomNumber: 9954 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gus Darcie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gus Darcie +sn: Darcie +description: This is Gus Darcie's description +facsimileTelephoneNumber: +1 206 820-6691 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 255-5478 +title: Junior Management Director +userPassword: Password1 +uid: DarcieG +givenName: Gus +mail: DarcieG@b36741628ac5411aa6219ea976eb30f2.bitwarden.com +carLicense: HNH007 +departmentNumber: 6928 +employeeType: Employee +homePhone: +1 206 928-5558 +initials: G. D. +mobile: +1 206 228-1897 +pager: +1 206 543-2850 +roomNumber: 8282 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Farah Fiorile,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farah Fiorile +sn: Fiorile +description: This is Farah Fiorile's description +facsimileTelephoneNumber: +1 408 360-2518 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 561-8222 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: FiorileF +givenName: Farah +mail: FiorileF@1c88bcc8224f440390a971996237e338.bitwarden.com +carLicense: RGN73P +departmentNumber: 3554 +employeeType: Normal +homePhone: +1 408 451-9897 +initials: F. F. +mobile: +1 408 861-1672 +pager: +1 408 886-6042 +roomNumber: 8543 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jagjit Orr,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jagjit Orr +sn: Orr +description: This is Jagjit Orr's description +facsimileTelephoneNumber: +1 804 291-1128 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 900-5326 +title: Junior Payroll Madonna +userPassword: Password1 +uid: OrrJ +givenName: Jagjit +mail: OrrJ@ee0e2753a68a4e55867207a3933be7d9.bitwarden.com +carLicense: UK2QRJ +departmentNumber: 1914 +employeeType: Contract +homePhone: +1 804 471-2190 +initials: J. O. +mobile: +1 804 160-3377 +pager: +1 804 433-5947 +roomNumber: 8373 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Allyce Maduri,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allyce Maduri +sn: Maduri +description: This is Allyce Maduri's description +facsimileTelephoneNumber: +1 206 214-3364 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 648-3267 +title: Junior Product Development Figurehead +userPassword: Password1 +uid: MaduriA +givenName: Allyce +mail: MaduriA@251c488f536a47d0989ad6ee9cbeeac4.bitwarden.com +carLicense: KFOWNB +departmentNumber: 6166 +employeeType: Contract +homePhone: +1 206 847-7336 +initials: A. M. +mobile: +1 206 449-6361 +pager: +1 206 102-3248 +roomNumber: 9993 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Padma Mannion,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Padma Mannion +sn: Mannion +description: This is Padma Mannion's description +facsimileTelephoneNumber: +1 408 873-3727 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 110-1230 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: MannionP +givenName: Padma +mail: MannionP@b5ffb168b2704131a434edf169b90308.bitwarden.com +carLicense: 0KW17O +departmentNumber: 6470 +employeeType: Employee +homePhone: +1 408 861-8976 +initials: P. M. +mobile: +1 408 723-1044 +pager: +1 408 411-1325 +roomNumber: 9312 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Armin Balogh,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Armin Balogh +sn: Balogh +description: This is Armin Balogh's description +facsimileTelephoneNumber: +1 206 161-5920 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 173-5332 +title: Chief Management Grunt +userPassword: Password1 +uid: BaloghA +givenName: Armin +mail: BaloghA@8df14385ae864b439973adc9259c1607.bitwarden.com +carLicense: QNON6Q +departmentNumber: 2413 +employeeType: Contract +homePhone: +1 206 550-8988 +initials: A. B. +mobile: +1 206 290-5483 +pager: +1 206 757-9124 +roomNumber: 8143 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Weiping Schneider,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weiping Schneider +sn: Schneider +description: This is Weiping Schneider's description +facsimileTelephoneNumber: +1 818 327-3797 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 818 874-1863 +title: Associate Management Czar +userPassword: Password1 +uid: SchneidW +givenName: Weiping +mail: SchneidW@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com +carLicense: K9SW2E +departmentNumber: 1156 +employeeType: Normal +homePhone: +1 818 628-5224 +initials: W. S. +mobile: +1 818 839-6458 +pager: +1 818 992-6028 +roomNumber: 8178 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Wakako Schneider,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wakako Schneider +sn: Schneider +description: This is Wakako Schneider's description +facsimileTelephoneNumber: +1 408 615-4825 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 975-1390 +title: Associate Administrative Madonna +userPassword: Password1 +uid: SchneidW +givenName: Wakako +mail: SchneidW@4b4b802ff8a7484b87f06ad79d09b047.bitwarden.com +carLicense: AH9UO8 +departmentNumber: 2978 +employeeType: Employee +homePhone: +1 408 701-8714 +initials: W. S. +mobile: +1 408 201-6977 +pager: +1 408 462-4968 +roomNumber: 9124 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Aubrey Worsley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aubrey Worsley +sn: Worsley +description: This is Aubrey Worsley's description +facsimileTelephoneNumber: +1 804 867-3686 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 592-6534 +title: Associate Payroll Warrior +userPassword: Password1 +uid: WorsleyA +givenName: Aubrey +mail: WorsleyA@a7a408f1db4f4c56bc140208ad720372.bitwarden.com +carLicense: DPDKLN +departmentNumber: 3071 +employeeType: Contract +homePhone: +1 804 284-9232 +initials: A. W. +mobile: +1 804 898-6109 +pager: +1 804 128-8930 +roomNumber: 9799 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilsa Esteghamat +sn: Esteghamat +description: This is Ilsa Esteghamat's description +facsimileTelephoneNumber: +1 415 979-7290 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 510-1568 +title: Master Janitorial Visionary +userPassword: Password1 +uid: EsteghaI +givenName: Ilsa +mail: EsteghaI@ddf0191f89a0460ab413425ca86319fc.bitwarden.com +carLicense: YVVFHC +departmentNumber: 7499 +employeeType: Contract +homePhone: +1 415 291-4067 +initials: I. E. +mobile: +1 415 780-5057 +pager: +1 415 184-4423 +roomNumber: 8480 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zahra Sebeh +sn: Sebeh +description: This is Zahra Sebeh's description +facsimileTelephoneNumber: +1 510 284-1633 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 658-7911 +title: Chief Janitorial Technician +userPassword: Password1 +uid: SebehZ +givenName: Zahra +mail: SebehZ@e790def4652645909ede72d3e5779756.bitwarden.com +carLicense: 29DLBR +departmentNumber: 9944 +employeeType: Employee +homePhone: +1 510 494-7925 +initials: Z. S. +mobile: +1 510 599-2373 +pager: +1 510 486-6759 +roomNumber: 8525 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aloysia Bobbitt +sn: Bobbitt +description: This is Aloysia Bobbitt's description +facsimileTelephoneNumber: +1 510 837-5433 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 372-6107 +title: Master Administrative Admin +userPassword: Password1 +uid: BobbittA +givenName: Aloysia +mail: BobbittA@477794cc09b1403eae274b941a7cdeff.bitwarden.com +carLicense: EPYSC5 +departmentNumber: 5320 +employeeType: Normal +homePhone: +1 510 664-1637 +initials: A. B. +mobile: +1 510 267-5068 +pager: +1 510 300-9227 +roomNumber: 9534 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Didar Chakravarti,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Didar Chakravarti +sn: Chakravarti +description: This is Didar Chakravarti's description +facsimileTelephoneNumber: +1 415 635-8075 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 278-1577 +title: Chief Peons Stooge +userPassword: Password1 +uid: ChakravD +givenName: Didar +mail: ChakravD@27fe85cb2e8f492b80ccb681935b7475.bitwarden.com +carLicense: C8YKXN +departmentNumber: 4609 +employeeType: Contract +homePhone: +1 415 282-3483 +initials: D. C. +mobile: +1 415 977-5564 +pager: +1 415 592-1971 +roomNumber: 8345 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosalyn Sherrell +sn: Sherrell +description: This is Rosalyn Sherrell's description +facsimileTelephoneNumber: +1 510 437-8112 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 862-1003 +title: Chief Janitorial Madonna +userPassword: Password1 +uid: SherrelR +givenName: Rosalyn +mail: SherrelR@7a7e84cee07a4519aac362b25f2d7d3c.bitwarden.com +carLicense: 60EA7Y +departmentNumber: 6821 +employeeType: Normal +homePhone: +1 510 933-2012 +initials: R. S. +mobile: +1 510 501-1147 +pager: +1 510 374-6102 +roomNumber: 9282 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ninetta Pullum,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninetta Pullum +sn: Pullum +description: This is Ninetta Pullum's description +facsimileTelephoneNumber: +1 818 655-8609 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 279-6302 +title: Master Peons Mascot +userPassword: Password1 +uid: PullumN +givenName: Ninetta +mail: PullumN@b9a2e7612aef443ebd9966e99249a73c.bitwarden.com +carLicense: PTH40L +departmentNumber: 4628 +employeeType: Employee +homePhone: +1 818 228-1593 +initials: N. P. +mobile: +1 818 590-2364 +pager: +1 818 513-3736 +roomNumber: 9394 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Suki Marrec,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suki Marrec +sn: Marrec +description: This is Suki Marrec's description +facsimileTelephoneNumber: +1 804 362-7092 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 277-6017 +title: Associate Peons Figurehead +userPassword: Password1 +uid: MarrecS +givenName: Suki +mail: MarrecS@e14fec315d724d2ea3c23dddfc2b66b0.bitwarden.com +carLicense: LIOD02 +departmentNumber: 6976 +employeeType: Employee +homePhone: +1 804 892-1867 +initials: S. M. +mobile: +1 804 966-1697 +pager: +1 804 629-1496 +roomNumber: 9202 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ecocafe Bradyhouse +sn: Bradyhouse +description: This is Ecocafe Bradyhouse's description +facsimileTelephoneNumber: +1 213 865-2684 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 210-7131 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: BradyhoE +givenName: Ecocafe +mail: BradyhoE@83f450f8e8ed4c6282bc25450b6af548.bitwarden.com +carLicense: HIP3QF +departmentNumber: 7885 +employeeType: Employee +homePhone: +1 213 356-4485 +initials: E. B. +mobile: +1 213 559-6804 +pager: +1 213 103-8388 +roomNumber: 8986 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ian Locicero,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ian Locicero +sn: Locicero +description: This is Ian Locicero's description +facsimileTelephoneNumber: +1 818 361-3499 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 921-4904 +title: Associate Human Resources Assistant +userPassword: Password1 +uid: LocicerI +givenName: Ian +mail: LocicerI@ac4d7f7fd78147f7b89e17731422f227.bitwarden.com +carLicense: 3UUSTF +departmentNumber: 2098 +employeeType: Employee +homePhone: +1 818 456-3510 +initials: I. L. +mobile: +1 818 544-3106 +pager: +1 818 351-5981 +roomNumber: 8833 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Modestia Prado,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Modestia Prado +sn: Prado +description: This is Modestia Prado's description +facsimileTelephoneNumber: +1 804 563-3011 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 240-1385 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: PradoM +givenName: Modestia +mail: PradoM@2e96ba41c52b41599651831f48a31224.bitwarden.com +carLicense: N28CSY +departmentNumber: 3732 +employeeType: Contract +homePhone: +1 804 654-7480 +initials: M. P. +mobile: +1 804 409-7623 +pager: +1 804 676-5264 +roomNumber: 8808 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Linette Hoxie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linette Hoxie +sn: Hoxie +description: This is Linette Hoxie's description +facsimileTelephoneNumber: +1 804 517-4726 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 929-8827 +title: Supreme Human Resources President +userPassword: Password1 +uid: HoxieL +givenName: Linette +mail: HoxieL@5d088289d7854227987c820b9b1f2b7c.bitwarden.com +carLicense: S3B9SE +departmentNumber: 5761 +employeeType: Normal +homePhone: +1 804 232-6517 +initials: L. H. +mobile: +1 804 536-9297 +pager: +1 804 534-6196 +roomNumber: 9845 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Christi Silverstone,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christi Silverstone +sn: Silverstone +description: This is Christi Silverstone's description +facsimileTelephoneNumber: +1 510 724-1085 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 663-3479 +title: Junior Human Resources Punk +userPassword: Password1 +uid: SilversC +givenName: Christi +mail: SilversC@7012522876084229bee482efdda1e27f.bitwarden.com +carLicense: L4RU2P +departmentNumber: 5293 +employeeType: Employee +homePhone: +1 510 653-6251 +initials: C. S. +mobile: +1 510 650-6324 +pager: +1 510 262-9012 +roomNumber: 9248 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gertie Stough,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertie Stough +sn: Stough +description: This is Gertie Stough's description +facsimileTelephoneNumber: +1 213 686-3838 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 213 515-7408 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: StoughG +givenName: Gertie +mail: StoughG@f217999906e34b1bbd26f75d9abe8282.bitwarden.com +carLicense: AHD9DE +departmentNumber: 7033 +employeeType: Contract +homePhone: +1 213 509-8755 +initials: G. S. +mobile: +1 213 520-1036 +pager: +1 213 118-8844 +roomNumber: 8666 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Christy Mazurek,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christy Mazurek +sn: Mazurek +description: This is Christy Mazurek's description +facsimileTelephoneNumber: +1 213 674-2356 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 521-2255 +title: Master Human Resources Visionary +userPassword: Password1 +uid: MazurekC +givenName: Christy +mail: MazurekC@166fd602ceb04a58b9e0bfc4c39bf95b.bitwarden.com +carLicense: U6RP8X +departmentNumber: 6970 +employeeType: Employee +homePhone: +1 213 662-9878 +initials: C. M. +mobile: +1 213 423-7684 +pager: +1 213 149-6119 +roomNumber: 9940 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fikre Vieiro,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fikre Vieiro +sn: Vieiro +description: This is Fikre Vieiro's description +facsimileTelephoneNumber: +1 213 238-8438 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 602-8247 +title: Chief Product Development Admin +userPassword: Password1 +uid: VieiroF +givenName: Fikre +mail: VieiroF@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com +carLicense: D6MYS0 +departmentNumber: 4707 +employeeType: Employee +homePhone: +1 213 453-2072 +initials: F. V. +mobile: +1 213 475-9473 +pager: +1 213 410-1139 +roomNumber: 8066 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Leila Mullett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leila Mullett +sn: Mullett +description: This is Leila Mullett's description +facsimileTelephoneNumber: +1 510 439-7260 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 650-3588 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: MullettL +givenName: Leila +mail: MullettL@c8037935d7cf4de6af85f4cdef77691d.bitwarden.com +carLicense: 31J232 +departmentNumber: 9834 +employeeType: Normal +homePhone: +1 510 755-5170 +initials: L. M. +mobile: +1 510 203-5746 +pager: +1 510 918-1880 +roomNumber: 8340 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Irina Holinski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Irina Holinski +sn: Holinski +description: This is Irina Holinski's description +facsimileTelephoneNumber: +1 415 980-1993 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 460-5411 +title: Junior Peons Stooge +userPassword: Password1 +uid: HolinskI +givenName: Irina +mail: HolinskI@533123df06ad436d9c500ab92c7787fc.bitwarden.com +carLicense: 3O1NF1 +departmentNumber: 8107 +employeeType: Employee +homePhone: +1 415 594-9353 +initials: I. H. +mobile: +1 415 416-3893 +pager: +1 415 194-5645 +roomNumber: 9383 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kari Denmark,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kari Denmark +sn: Denmark +description: This is Kari Denmark's description +facsimileTelephoneNumber: +1 818 337-8001 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 238-4382 +title: Junior Product Development Vice President +userPassword: Password1 +uid: DenmarkK +givenName: Kari +mail: DenmarkK@72937da6610a485fb5709713ede972d3.bitwarden.com +carLicense: GWXBSO +departmentNumber: 2160 +employeeType: Contract +homePhone: +1 818 883-6970 +initials: K. D. +mobile: +1 818 821-6192 +pager: +1 818 552-9211 +roomNumber: 9661 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Inge Valenziano,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inge Valenziano +sn: Valenziano +description: This is Inge Valenziano's description +facsimileTelephoneNumber: +1 804 187-7607 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 649-3608 +title: Chief Janitorial Sales Rep +userPassword: Password1 +uid: ValenziI +givenName: Inge +mail: ValenziI@93cef961e98e48e482c9b5e04d825449.bitwarden.com +carLicense: J0HX3E +departmentNumber: 4383 +employeeType: Contract +homePhone: +1 804 602-2274 +initials: I. V. +mobile: +1 804 323-1307 +pager: +1 804 240-4959 +roomNumber: 8656 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Denis Khurana,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denis Khurana +sn: Khurana +description: This is Denis Khurana's description +facsimileTelephoneNumber: +1 818 639-7306 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 847-6401 +title: Associate Human Resources Czar +userPassword: Password1 +uid: KhuranaD +givenName: Denis +mail: KhuranaD@146df2fe13b2444d82d5d78937150f1b.bitwarden.com +carLicense: D1X2C7 +departmentNumber: 9174 +employeeType: Contract +homePhone: +1 818 841-6099 +initials: D. K. +mobile: +1 818 510-7296 +pager: +1 818 735-4500 +roomNumber: 8671 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marice Klug,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marice Klug +sn: Klug +description: This is Marice Klug's description +facsimileTelephoneNumber: +1 510 940-2719 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 501-1464 +title: Master Product Development Dictator +userPassword: Password1 +uid: KlugM +givenName: Marice +mail: KlugM@5a9b6da2d40a49eeae885d49efa6f2e2.bitwarden.com +carLicense: A6OYEK +departmentNumber: 4520 +employeeType: Employee +homePhone: +1 510 769-3507 +initials: M. K. +mobile: +1 510 670-7762 +pager: +1 510 630-1193 +roomNumber: 8028 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Denver Welling,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denver Welling +sn: Welling +description: This is Denver Welling's description +facsimileTelephoneNumber: +1 213 582-4339 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 213 807-2148 +title: Master Product Testing Fellow +userPassword: Password1 +uid: WellingD +givenName: Denver +mail: WellingD@693e5301c4924e0195024b48e34f4838.bitwarden.com +carLicense: I3ROY0 +departmentNumber: 8364 +employeeType: Employee +homePhone: +1 213 489-1116 +initials: D. W. +mobile: +1 213 917-3333 +pager: +1 213 166-2003 +roomNumber: 8134 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Windowing Lukic,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Windowing Lukic +sn: Lukic +description: This is Windowing Lukic's description +facsimileTelephoneNumber: +1 206 266-3213 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 780-3468 +title: Associate Administrative Assistant +userPassword: Password1 +uid: LukicW +givenName: Windowing +mail: LukicW@47bdbe19b290413cb5defd6e606815e0.bitwarden.com +carLicense: WSUO53 +departmentNumber: 6715 +employeeType: Normal +homePhone: +1 206 370-5442 +initials: W. L. +mobile: +1 206 553-1403 +pager: +1 206 794-8338 +roomNumber: 8622 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sig Mistry,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sig Mistry +sn: Mistry +description: This is Sig Mistry's description +facsimileTelephoneNumber: +1 206 613-2406 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 254-6607 +title: Junior Product Testing Technician +userPassword: Password1 +uid: MistryS +givenName: Sig +mail: MistryS@b381db8c81ea4ed2b9296ea4988780aa.bitwarden.com +carLicense: 82IGCJ +departmentNumber: 4266 +employeeType: Normal +homePhone: +1 206 722-3127 +initials: S. M. +mobile: +1 206 778-8656 +pager: +1 206 614-9726 +roomNumber: 9282 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christan DeRaaf +sn: DeRaaf +description: This is Christan DeRaaf's description +facsimileTelephoneNumber: +1 213 360-6996 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 213 491-9492 +title: Supreme Product Testing Admin +userPassword: Password1 +uid: DeRaafC +givenName: Christan +mail: DeRaafC@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com +carLicense: 1U42OW +departmentNumber: 2911 +employeeType: Normal +homePhone: +1 213 665-4079 +initials: C. D. +mobile: +1 213 335-3084 +pager: +1 213 113-9610 +roomNumber: 9813 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kathe Rohan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathe Rohan +sn: Rohan +description: This is Kathe Rohan's description +facsimileTelephoneNumber: +1 804 161-3799 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 942-3654 +title: Chief Product Testing Artist +userPassword: Password1 +uid: RohanK +givenName: Kathe +mail: RohanK@a9c3295ea2f347439f03376e321e4733.bitwarden.com +carLicense: 9TH6F1 +departmentNumber: 6372 +employeeType: Normal +homePhone: +1 804 258-4904 +initials: K. R. +mobile: +1 804 864-1979 +pager: +1 804 294-7333 +roomNumber: 9972 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kristie Valente,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristie Valente +sn: Valente +description: This is Kristie Valente's description +facsimileTelephoneNumber: +1 804 120-8330 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 279-4543 +title: Supreme Payroll Director +userPassword: Password1 +uid: ValenteK +givenName: Kristie +mail: ValenteK@0b027bdff1d041629ac882de18aab2e6.bitwarden.com +carLicense: UOFHL4 +departmentNumber: 3485 +employeeType: Employee +homePhone: +1 804 804-4906 +initials: K. V. +mobile: +1 804 902-5426 +pager: +1 804 312-7090 +roomNumber: 9754 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maiga Burdick,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maiga Burdick +sn: Burdick +description: This is Maiga Burdick's description +facsimileTelephoneNumber: +1 408 215-5170 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 373-9309 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: BurdickM +givenName: Maiga +mail: BurdickM@620a0deb741d4dc4a818615fd1732275.bitwarden.com +carLicense: O60TD3 +departmentNumber: 4469 +employeeType: Normal +homePhone: +1 408 371-5821 +initials: M. B. +mobile: +1 408 303-7322 +pager: +1 408 639-6579 +roomNumber: 9119 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Manh Malee,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manh Malee +sn: Malee +description: This is Manh Malee's description +facsimileTelephoneNumber: +1 206 483-4653 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 206 259-5455 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: MaleeM +givenName: Manh +mail: MaleeM@7288f418f35f4596b14bd4c35f0a5698.bitwarden.com +carLicense: 50V2PN +departmentNumber: 4072 +employeeType: Normal +homePhone: +1 206 761-6211 +initials: M. M. +mobile: +1 206 401-8047 +pager: +1 206 767-4792 +roomNumber: 9233 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Benita Rosvick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benita Rosvick +sn: Rosvick +description: This is Benita Rosvick's description +facsimileTelephoneNumber: +1 818 228-9691 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 301-5987 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: RosvickB +givenName: Benita +mail: RosvickB@0283099cc03c4fbb82831c03428e71c5.bitwarden.com +carLicense: QPGK4R +departmentNumber: 7346 +employeeType: Contract +homePhone: +1 818 871-6912 +initials: B. R. +mobile: +1 818 406-3503 +pager: +1 818 648-7913 +roomNumber: 8969 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Serban Gerard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Serban Gerard +sn: Gerard +description: This is Serban Gerard's description +facsimileTelephoneNumber: +1 206 434-7071 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 622-5670 +title: Junior Management Writer +userPassword: Password1 +uid: GerardS +givenName: Serban +mail: GerardS@072112936d7540f191ae5e1941e3f66c.bitwarden.com +carLicense: WIU5LG +departmentNumber: 1613 +employeeType: Employee +homePhone: +1 206 853-9236 +initials: S. G. +mobile: +1 206 732-5317 +pager: +1 206 764-7859 +roomNumber: 9053 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorreen Zeitler +sn: Zeitler +description: This is Dorreen Zeitler's description +facsimileTelephoneNumber: +1 415 558-3698 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 172-6644 +title: Supreme Payroll Writer +userPassword: Password1 +uid: ZeitlerD +givenName: Dorreen +mail: ZeitlerD@26eb3cccbe694e88916be9fa6504534e.bitwarden.com +carLicense: V7GLXQ +departmentNumber: 2528 +employeeType: Employee +homePhone: +1 415 773-8207 +initials: D. Z. +mobile: +1 415 334-3110 +pager: +1 415 409-6834 +roomNumber: 8453 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genowefa McCormick +sn: McCormick +description: This is Genowefa McCormick's description +facsimileTelephoneNumber: +1 415 232-3421 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 169-3186 +title: Associate Product Testing Evangelist +userPassword: Password1 +uid: McCormiG +givenName: Genowefa +mail: McCormiG@6dcb8ef14afa4d0f878ab023a26df8bc.bitwarden.com +carLicense: 9EOH5C +departmentNumber: 7795 +employeeType: Normal +homePhone: +1 415 733-3627 +initials: G. M. +mobile: +1 415 226-7025 +pager: +1 415 734-4128 +roomNumber: 8939 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Condell Sorensen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Condell Sorensen +sn: Sorensen +description: This is Condell Sorensen's description +facsimileTelephoneNumber: +1 510 316-1466 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 500-9638 +title: Chief Product Development Manager +userPassword: Password1 +uid: SorenseC +givenName: Condell +mail: SorenseC@928ad853e1494474966df7fb64907ee2.bitwarden.com +carLicense: U7RP73 +departmentNumber: 8184 +employeeType: Contract +homePhone: +1 510 542-1911 +initials: C. S. +mobile: +1 510 128-9783 +pager: +1 510 172-6595 +roomNumber: 9756 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquetta Choptovy +sn: Choptovy +description: This is Jacquetta Choptovy's description +facsimileTelephoneNumber: +1 213 646-1312 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 571-9091 +title: Supreme Peons Visionary +userPassword: Password1 +uid: ChoptovJ +givenName: Jacquetta +mail: ChoptovJ@21b58cb6354d45989d255e9811572cc7.bitwarden.com +carLicense: IHPLPO +departmentNumber: 6293 +employeeType: Normal +homePhone: +1 213 122-5883 +initials: J. C. +mobile: +1 213 548-9590 +pager: +1 213 746-2779 +roomNumber: 9214 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heinz Sobolewski +sn: Sobolewski +description: This is Heinz Sobolewski's description +facsimileTelephoneNumber: +1 804 967-4411 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 713-1603 +title: Junior Product Development Punk +userPassword: Password1 +uid: SobolewH +givenName: Heinz +mail: SobolewH@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com +carLicense: SD64YH +departmentNumber: 5060 +employeeType: Employee +homePhone: +1 804 112-4017 +initials: H. S. +mobile: +1 804 252-8198 +pager: +1 804 655-8923 +roomNumber: 8798 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryEllen Giarritta +sn: Giarritta +description: This is MaryEllen Giarritta's description +facsimileTelephoneNumber: +1 213 726-3074 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 805-6563 +title: Junior Product Development Developer +userPassword: Password1 +uid: GiarritM +givenName: MaryEllen +mail: GiarritM@5ff34bafebf24aa4b9506984a8233f6e.bitwarden.com +carLicense: SKAW1Q +departmentNumber: 8136 +employeeType: Contract +homePhone: +1 213 393-4205 +initials: M. G. +mobile: +1 213 868-9810 +pager: +1 213 148-4810 +roomNumber: 8213 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erzsebet Randolph +sn: Randolph +description: This is Erzsebet Randolph's description +facsimileTelephoneNumber: +1 408 372-7434 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 591-6038 +title: Supreme Product Development Vice President +userPassword: Password1 +uid: RandolpE +givenName: Erzsebet +mail: RandolpE@55ec9ab4177d4a9faecb693090c29c24.bitwarden.com +carLicense: KQXMN9 +departmentNumber: 6874 +employeeType: Normal +homePhone: +1 408 933-6346 +initials: E. R. +mobile: +1 408 607-3347 +pager: +1 408 725-3148 +roomNumber: 9366 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shingcheon Bedient +sn: Bedient +description: This is Shingcheon Bedient's description +facsimileTelephoneNumber: +1 804 371-1012 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 618-8354 +title: Associate Product Development Visionary +userPassword: Password1 +uid: BedientS +givenName: Shingcheon +mail: BedientS@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com +carLicense: 4E0PP1 +departmentNumber: 2045 +employeeType: Normal +homePhone: +1 804 566-1278 +initials: S. B. +mobile: +1 804 516-7297 +pager: +1 804 925-4798 +roomNumber: 8076 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yukihiko Charlebois +sn: Charlebois +description: This is Yukihiko Charlebois's description +facsimileTelephoneNumber: +1 804 560-4107 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 329-3608 +title: Chief Peons Grunt +userPassword: Password1 +uid: CharlebY +givenName: Yukihiko +mail: CharlebY@d67f5f676f7c4a17add6d088939168e8.bitwarden.com +carLicense: XKUE3L +departmentNumber: 5228 +employeeType: Normal +homePhone: +1 804 265-4980 +initials: Y. C. +mobile: +1 804 711-2644 +pager: +1 804 587-9647 +roomNumber: 9720 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Giang Hildum,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giang Hildum +sn: Hildum +description: This is Giang Hildum's description +facsimileTelephoneNumber: +1 818 116-6693 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 384-2677 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: HildumG +givenName: Giang +mail: HildumG@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com +carLicense: N2W7J4 +departmentNumber: 1865 +employeeType: Normal +homePhone: +1 818 509-6085 +initials: G. H. +mobile: +1 818 931-8918 +pager: +1 818 341-3703 +roomNumber: 9535 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Loise Prasad,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loise Prasad +sn: Prasad +description: This is Loise Prasad's description +facsimileTelephoneNumber: +1 206 661-1980 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 570-5623 +title: Junior Product Testing Sales Rep +userPassword: Password1 +uid: PrasadL +givenName: Loise +mail: PrasadL@80dd2ec5de3e4cba8ab6e9385f8b5eaa.bitwarden.com +carLicense: QF3PV9 +departmentNumber: 1433 +employeeType: Normal +homePhone: +1 206 734-8304 +initials: L. P. +mobile: +1 206 478-3951 +pager: +1 206 956-5141 +roomNumber: 8888 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ronnie Hillson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronnie Hillson +sn: Hillson +description: This is Ronnie Hillson's description +facsimileTelephoneNumber: +1 804 637-9773 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 910-8586 +title: Junior Payroll Visionary +userPassword: Password1 +uid: HillsonR +givenName: Ronnie +mail: HillsonR@f2e5bcfc6f2e4cd8a024fc3813c3b9e4.bitwarden.com +carLicense: QYF7UR +departmentNumber: 9458 +employeeType: Contract +homePhone: +1 804 400-1544 +initials: R. H. +mobile: +1 804 349-5954 +pager: +1 804 815-4035 +roomNumber: 9749 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gavra Sokolowski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gavra Sokolowski +sn: Sokolowski +description: This is Gavra Sokolowski's description +facsimileTelephoneNumber: +1 415 688-2281 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 415 388-6479 +title: Associate Peons Stooge +userPassword: Password1 +uid: SokolowG +givenName: Gavra +mail: SokolowG@e52685d2fb89476596028e80c714ec4f.bitwarden.com +carLicense: FNCW60 +departmentNumber: 6325 +employeeType: Employee +homePhone: +1 415 827-1792 +initials: G. S. +mobile: +1 415 394-3308 +pager: +1 415 483-3016 +roomNumber: 9478 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Candy Husain,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candy Husain +sn: Husain +description: This is Candy Husain's description +facsimileTelephoneNumber: +1 206 383-1845 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 252-6689 +title: Chief Janitorial President +userPassword: Password1 +uid: HusainC +givenName: Candy +mail: HusainC@72624b313e0f4ba194d78d055a4373e9.bitwarden.com +carLicense: XNWKT6 +departmentNumber: 6463 +employeeType: Normal +homePhone: +1 206 881-4299 +initials: C. H. +mobile: +1 206 431-6625 +pager: +1 206 859-6768 +roomNumber: 9572 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alvin Shwed,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvin Shwed +sn: Shwed +description: This is Alvin Shwed's description +facsimileTelephoneNumber: +1 804 807-8018 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 804 485-9300 +title: Junior Janitorial Architect +userPassword: Password1 +uid: ShwedA +givenName: Alvin +mail: ShwedA@8a1bb097abd44599a5fd9f86e866f848.bitwarden.com +carLicense: AGKJD5 +departmentNumber: 8636 +employeeType: Contract +homePhone: +1 804 763-3811 +initials: A. S. +mobile: +1 804 595-4179 +pager: +1 804 347-1921 +roomNumber: 9483 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kenna Marui,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kenna Marui +sn: Marui +description: This is Kenna Marui's description +facsimileTelephoneNumber: +1 804 272-7187 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 804 492-9159 +title: Junior Janitorial Developer +userPassword: Password1 +uid: MaruiK +givenName: Kenna +mail: MaruiK@c3ff70181a1748d2af2d2661f51fc5e8.bitwarden.com +carLicense: 0YMKKN +departmentNumber: 2302 +employeeType: Employee +homePhone: +1 804 175-2325 +initials: K. M. +mobile: +1 804 402-3755 +pager: +1 804 415-4950 +roomNumber: 8115 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Aleta Gargul,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aleta Gargul +sn: Gargul +description: This is Aleta Gargul's description +facsimileTelephoneNumber: +1 510 164-1509 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 823-4170 +title: Chief Peons Architect +userPassword: Password1 +uid: GargulA +givenName: Aleta +mail: GargulA@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com +carLicense: CHCL7K +departmentNumber: 8619 +employeeType: Employee +homePhone: +1 510 132-7107 +initials: A. G. +mobile: +1 510 809-3640 +pager: +1 510 538-9711 +roomNumber: 9958 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mani Khatod,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mani Khatod +sn: Khatod +description: This is Mani Khatod's description +facsimileTelephoneNumber: +1 213 976-8193 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 213 568-8179 +title: Junior Product Development Warrior +userPassword: Password1 +uid: KhatodM +givenName: Mani +mail: KhatodM@9fc79730a8c748d99061f17947cb944d.bitwarden.com +carLicense: 0H5JJH +departmentNumber: 4048 +employeeType: Contract +homePhone: +1 213 525-8732 +initials: M. K. +mobile: +1 213 263-4474 +pager: +1 213 817-6339 +roomNumber: 9714 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryrose Bagetakos +sn: Bagetakos +description: This is Maryrose Bagetakos's description +facsimileTelephoneNumber: +1 415 188-2486 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 913-4759 +title: Master Payroll Grunt +userPassword: Password1 +uid: BagetakM +givenName: Maryrose +mail: BagetakM@b22727f208b94d678a41e54f04994fdf.bitwarden.com +carLicense: WI8QK7 +departmentNumber: 3492 +employeeType: Contract +homePhone: +1 415 592-5112 +initials: M. B. +mobile: +1 415 947-2290 +pager: +1 415 814-1344 +roomNumber: 9398 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tanya Kolappa +sn: Kolappa +description: This is Tanya Kolappa's description +facsimileTelephoneNumber: +1 510 475-3499 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 510 279-1000 +title: Supreme Janitorial Writer +userPassword: Password1 +uid: KolappaT +givenName: Tanya +mail: KolappaT@001f8a7cac5e4e5289e4b851c2ff301c.bitwarden.com +carLicense: 4B14FX +departmentNumber: 9794 +employeeType: Employee +homePhone: +1 510 715-6560 +initials: T. K. +mobile: +1 510 805-5583 +pager: +1 510 578-2521 +roomNumber: 8438 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anjanette Aalders +sn: Aalders +description: This is Anjanette Aalders's description +facsimileTelephoneNumber: +1 818 951-1884 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 248-3508 +title: Supreme Product Testing Evangelist +userPassword: Password1 +uid: AaldersA +givenName: Anjanette +mail: AaldersA@cbaa630e3a194faaa797a1d7d5ab2466.bitwarden.com +carLicense: U1OW8R +departmentNumber: 7335 +employeeType: Employee +homePhone: +1 818 389-6038 +initials: A. A. +mobile: +1 818 158-3787 +pager: +1 818 100-2647 +roomNumber: 9563 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Trixy Palik,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trixy Palik +sn: Palik +description: This is Trixy Palik's description +facsimileTelephoneNumber: +1 510 106-4192 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 656-8926 +title: Supreme Management Assistant +userPassword: Password1 +uid: PalikT +givenName: Trixy +mail: PalikT@a003e42ed50b459eb9c3a71f6a23c973.bitwarden.com +carLicense: WE4GPC +departmentNumber: 8237 +employeeType: Employee +homePhone: +1 510 665-5364 +initials: T. P. +mobile: +1 510 856-7703 +pager: +1 510 577-1557 +roomNumber: 9662 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dimitri Reese,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dimitri Reese +sn: Reese +description: This is Dimitri Reese's description +facsimileTelephoneNumber: +1 408 214-2009 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 581-5689 +title: Associate Administrative Artist +userPassword: Password1 +uid: ReeseD +givenName: Dimitri +mail: ReeseD@6decbec2a2934c8ab6247b1bef75e683.bitwarden.com +carLicense: DMPN5B +departmentNumber: 2498 +employeeType: Normal +homePhone: +1 408 770-8373 +initials: D. R. +mobile: +1 408 937-7334 +pager: +1 408 741-9624 +roomNumber: 9945 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rosamond McEachern,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosamond McEachern +sn: McEachern +description: This is Rosamond McEachern's description +facsimileTelephoneNumber: +1 206 228-3690 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 772-4655 +title: Junior Management Madonna +userPassword: Password1 +uid: McEacheR +givenName: Rosamond +mail: McEacheR@972cbc7b1e734ef69ec2cf84c21cdb8e.bitwarden.com +carLicense: 80N87A +departmentNumber: 2283 +employeeType: Employee +homePhone: +1 206 256-5616 +initials: R. M. +mobile: +1 206 932-6574 +pager: +1 206 683-9283 +roomNumber: 9139 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolea Khatri +sn: Khatri +description: This is Nicolea Khatri's description +facsimileTelephoneNumber: +1 415 390-1583 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 982-5653 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: KhatriN +givenName: Nicolea +mail: KhatriN@822b8a7ab5a0431f84030ba3b9764408.bitwarden.com +carLicense: JSJL9S +departmentNumber: 8888 +employeeType: Normal +homePhone: +1 415 113-7084 +initials: N. K. +mobile: +1 415 123-9254 +pager: +1 415 605-2619 +roomNumber: 9737 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Augustin Bayne,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Augustin Bayne +sn: Bayne +description: This is Augustin Bayne's description +facsimileTelephoneNumber: +1 415 980-9048 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 682-4302 +title: Supreme Management Warrior +userPassword: Password1 +uid: BayneA +givenName: Augustin +mail: BayneA@0a414dfa34d6439f8f6befcf71900bba.bitwarden.com +carLicense: V5Y98M +departmentNumber: 7325 +employeeType: Normal +homePhone: +1 415 287-2170 +initials: A. B. +mobile: +1 415 366-4641 +pager: +1 415 198-2001 +roomNumber: 9440 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Corkstown Beattie,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corkstown Beattie +sn: Beattie +description: This is Corkstown Beattie's description +facsimileTelephoneNumber: +1 206 495-3050 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 933-8080 +title: Master Product Development Consultant +userPassword: Password1 +uid: BeattieC +givenName: Corkstown +mail: BeattieC@45719f80729a4e31a475e496709ecf11.bitwarden.com +carLicense: ESTGLN +departmentNumber: 7270 +employeeType: Normal +homePhone: +1 206 456-4990 +initials: C. B. +mobile: +1 206 271-6490 +pager: +1 206 729-8935 +roomNumber: 9318 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Prudence Fickes,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prudence Fickes +sn: Fickes +description: This is Prudence Fickes's description +facsimileTelephoneNumber: +1 213 409-4072 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 968-2627 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: FickesP +givenName: Prudence +mail: FickesP@5c5e6866da4a4802aa0f0136ee49902d.bitwarden.com +carLicense: MTU9L4 +departmentNumber: 3151 +employeeType: Normal +homePhone: +1 213 495-3893 +initials: P. F. +mobile: +1 213 863-3579 +pager: +1 213 869-2767 +roomNumber: 9706 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lavina Cirulli,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lavina Cirulli +sn: Cirulli +description: This is Lavina Cirulli's description +facsimileTelephoneNumber: +1 818 263-6211 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 140-3745 +title: Master Peons Madonna +userPassword: Password1 +uid: CirulliL +givenName: Lavina +mail: CirulliL@57507372eada4752ba384ecd326c57ac.bitwarden.com +carLicense: J9VVWJ +departmentNumber: 1652 +employeeType: Contract +homePhone: +1 818 777-4926 +initials: L. C. +mobile: +1 818 266-1976 +pager: +1 818 356-1254 +roomNumber: 8752 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janene Ramaswamy +sn: Ramaswamy +description: This is Janene Ramaswamy's description +facsimileTelephoneNumber: +1 213 194-2599 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 676-5223 +title: Master Product Development Manager +userPassword: Password1 +uid: RamaswaJ +givenName: Janene +mail: RamaswaJ@ceecdf1f706d4c9589203a7e587e1932.bitwarden.com +carLicense: YYHLUD +departmentNumber: 9648 +employeeType: Employee +homePhone: +1 213 117-4717 +initials: J. R. +mobile: +1 213 223-6072 +pager: +1 213 657-8326 +roomNumber: 9509 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tiertza Korea,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiertza Korea +sn: Korea +description: This is Tiertza Korea's description +facsimileTelephoneNumber: +1 213 216-3286 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 747-6620 +title: Supreme Peons Pinhead +userPassword: Password1 +uid: KoreaT +givenName: Tiertza +mail: KoreaT@3a117fad58d6422fb9086b1f787bebea.bitwarden.com +carLicense: V9S43M +departmentNumber: 2546 +employeeType: Contract +homePhone: +1 213 593-8161 +initials: T. K. +mobile: +1 213 114-2349 +pager: +1 213 307-7582 +roomNumber: 8133 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Javed Collecutt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Javed Collecutt +sn: Collecutt +description: This is Javed Collecutt's description +facsimileTelephoneNumber: +1 510 550-5476 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 167-1092 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: CollecuJ +givenName: Javed +mail: CollecuJ@5c5bca41c1084c1a8e475f6b76094495.bitwarden.com +carLicense: NE0BWE +departmentNumber: 3002 +employeeType: Normal +homePhone: +1 510 536-4738 +initials: J. C. +mobile: +1 510 998-7218 +pager: +1 510 161-3754 +roomNumber: 9062 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Adrianna Shypski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrianna Shypski +sn: Shypski +description: This is Adrianna Shypski's description +facsimileTelephoneNumber: +1 206 683-3440 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 849-7975 +title: Chief Peons Janitor +userPassword: Password1 +uid: ShypskiA +givenName: Adrianna +mail: ShypskiA@e3d22003ed4443a89482f00559e86e88.bitwarden.com +carLicense: 2UJ7NW +departmentNumber: 4840 +employeeType: Contract +homePhone: +1 206 502-4229 +initials: A. S. +mobile: +1 206 659-9933 +pager: +1 206 845-2410 +roomNumber: 9041 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Susanne Denison,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Susanne Denison +sn: Denison +description: This is Susanne Denison's description +facsimileTelephoneNumber: +1 213 719-5222 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 701-4432 +title: Chief Product Development Warrior +userPassword: Password1 +uid: DenisonS +givenName: Susanne +mail: DenisonS@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com +carLicense: 6IM3HJ +departmentNumber: 1108 +employeeType: Normal +homePhone: +1 213 472-1364 +initials: S. D. +mobile: +1 213 891-1991 +pager: +1 213 806-3051 +roomNumber: 8257 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lilian Rickborn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilian Rickborn +sn: Rickborn +description: This is Lilian Rickborn's description +facsimileTelephoneNumber: +1 408 973-5857 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 331-2544 +title: Junior Product Development Technician +userPassword: Password1 +uid: RickborL +givenName: Lilian +mail: RickborL@7080244b7c9140eab015a52785b9e6b8.bitwarden.com +carLicense: 4TUEFR +departmentNumber: 1004 +employeeType: Normal +homePhone: +1 408 214-4329 +initials: L. R. +mobile: +1 408 768-2474 +pager: +1 408 564-1406 +roomNumber: 9450 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Remy Blackwood,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Remy Blackwood +sn: Blackwood +description: This is Remy Blackwood's description +facsimileTelephoneNumber: +1 510 231-7355 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 374-3658 +title: Master Product Development Artist +userPassword: Password1 +uid: BlackwoR +givenName: Remy +mail: BlackwoR@806f7fb196b84130b64d5de337c23d96.bitwarden.com +carLicense: OWSTQ7 +departmentNumber: 5990 +employeeType: Contract +homePhone: +1 510 733-4288 +initials: R. B. +mobile: +1 510 556-2511 +pager: +1 510 527-3752 +roomNumber: 8408 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Beret Cemensky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beret Cemensky +sn: Cemensky +description: This is Beret Cemensky's description +facsimileTelephoneNumber: +1 213 601-9683 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 708-5755 +title: Supreme Administrative Technician +userPassword: Password1 +uid: CemenskB +givenName: Beret +mail: CemenskB@ecd23bb109534fef8869328ab8ab9019.bitwarden.com +carLicense: 4FM6AI +departmentNumber: 8946 +employeeType: Employee +homePhone: +1 213 679-8374 +initials: B. C. +mobile: +1 213 588-9784 +pager: +1 213 564-9726 +roomNumber: 8016 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bel Browning,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bel Browning +sn: Browning +description: This is Bel Browning's description +facsimileTelephoneNumber: +1 213 823-9229 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 336-7934 +title: Supreme Product Testing Punk +userPassword: Password1 +uid: BrowninB +givenName: Bel +mail: BrowninB@a811d1067f2b449da56503c72e375ae8.bitwarden.com +carLicense: NM2ERM +departmentNumber: 5487 +employeeType: Contract +homePhone: +1 213 510-6554 +initials: B. B. +mobile: +1 213 440-9868 +pager: +1 213 318-1825 +roomNumber: 8231 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rozett VanSchouwen +sn: VanSchouwen +description: This is Rozett VanSchouwen's description +facsimileTelephoneNumber: +1 206 477-4385 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 206 641-3776 +title: Junior Product Testing Assistant +userPassword: Password1 +uid: VanSchoR +givenName: Rozett +mail: VanSchoR@6ad1b625c3674b77a93e5c19216d7f12.bitwarden.com +carLicense: V9IY0C +departmentNumber: 3310 +employeeType: Contract +homePhone: +1 206 300-3606 +initials: R. V. +mobile: +1 206 921-1985 +pager: +1 206 764-9828 +roomNumber: 9537 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charmion Kinsella +sn: Kinsella +description: This is Charmion Kinsella's description +facsimileTelephoneNumber: +1 408 310-6417 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 788-1820 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: KinsellC +givenName: Charmion +mail: KinsellC@c870d166444a452b9465ab41e64ba24a.bitwarden.com +carLicense: 9OXNHG +departmentNumber: 9349 +employeeType: Contract +homePhone: +1 408 371-1185 +initials: C. K. +mobile: +1 408 886-9472 +pager: +1 408 911-8652 +roomNumber: 9088 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lula Communications,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lula Communications +sn: Communications +description: This is Lula Communications's description +facsimileTelephoneNumber: +1 206 257-3830 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 181-2274 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: CommuniL +givenName: Lula +mail: CommuniL@949cd7cb4d054b4f8d66cb7e1b41ac6b.bitwarden.com +carLicense: FBYT4J +departmentNumber: 7246 +employeeType: Normal +homePhone: +1 206 271-7029 +initials: L. C. +mobile: +1 206 890-4416 +pager: +1 206 436-6542 +roomNumber: 9790 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ronn Turbyfill,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronn Turbyfill +sn: Turbyfill +description: This is Ronn Turbyfill's description +facsimileTelephoneNumber: +1 510 556-6308 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 833-3399 +title: Chief Peons Punk +userPassword: Password1 +uid: TurbyfiR +givenName: Ronn +mail: TurbyfiR@8b4e180a03f04f079b534af88c685eca.bitwarden.com +carLicense: TACGIG +departmentNumber: 1225 +employeeType: Normal +homePhone: +1 510 591-2841 +initials: R. T. +mobile: +1 510 172-2179 +pager: +1 510 484-2039 +roomNumber: 8601 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cindy Deol,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cindy Deol +sn: Deol +description: This is Cindy Deol's description +facsimileTelephoneNumber: +1 510 965-5014 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 937-6133 +title: Master Payroll Director +userPassword: Password1 +uid: DeolC +givenName: Cindy +mail: DeolC@c515863a84e8438aba0830f2adfe9717.bitwarden.com +carLicense: GGLOR2 +departmentNumber: 1544 +employeeType: Employee +homePhone: +1 510 180-4909 +initials: C. D. +mobile: +1 510 537-8934 +pager: +1 510 558-7858 +roomNumber: 9462 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marjory Ranahan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjory Ranahan +sn: Ranahan +description: This is Marjory Ranahan's description +facsimileTelephoneNumber: +1 213 144-1457 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 123-7420 +title: Chief Administrative Madonna +userPassword: Password1 +uid: RanahanM +givenName: Marjory +mail: RanahanM@7b7cafe5ed8643f587a2a3fd33e7d617.bitwarden.com +carLicense: A2F289 +departmentNumber: 3306 +employeeType: Normal +homePhone: +1 213 700-4695 +initials: M. R. +mobile: +1 213 551-3892 +pager: +1 213 769-7031 +roomNumber: 8386 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Winona Baccari,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winona Baccari +sn: Baccari +description: This is Winona Baccari's description +facsimileTelephoneNumber: +1 206 929-6380 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 477-3366 +title: Junior Peons Pinhead +userPassword: Password1 +uid: BaccariW +givenName: Winona +mail: BaccariW@c67a6c3f272e49d89894436b34e568ce.bitwarden.com +carLicense: U1JQF8 +departmentNumber: 1137 +employeeType: Contract +homePhone: +1 206 661-8854 +initials: W. B. +mobile: +1 206 324-3513 +pager: +1 206 674-1556 +roomNumber: 8184 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Veda Gaines,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veda Gaines +sn: Gaines +description: This is Veda Gaines's description +facsimileTelephoneNumber: +1 213 747-9301 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 775-8067 +title: Associate Management Artist +userPassword: Password1 +uid: GainesV +givenName: Veda +mail: GainesV@0d16cc430a2c4388b233d89e5b36b645.bitwarden.com +carLicense: 7RH5FI +departmentNumber: 8167 +employeeType: Contract +homePhone: +1 213 186-4535 +initials: V. G. +mobile: +1 213 971-7409 +pager: +1 213 528-1848 +roomNumber: 8256 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anup Mundi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anup Mundi +sn: Mundi +description: This is Anup Mundi's description +facsimileTelephoneNumber: +1 408 920-6254 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 209-1140 +title: Associate Peons Writer +userPassword: Password1 +uid: MundiA +givenName: Anup +mail: MundiA@c337fda07bbe40e2a0aa0860ad7ba681.bitwarden.com +carLicense: EOS3A8 +departmentNumber: 8996 +employeeType: Normal +homePhone: +1 408 846-4787 +initials: A. M. +mobile: +1 408 238-7414 +pager: +1 408 798-9414 +roomNumber: 8916 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Alyce Felli,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alyce Felli +sn: Felli +description: This is Alyce Felli's description +facsimileTelephoneNumber: +1 510 955-8337 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 737-7922 +title: Master Payroll Madonna +userPassword: Password1 +uid: FelliA +givenName: Alyce +mail: FelliA@f77e0f58a0a6420b98bdf66cba559331.bitwarden.com +carLicense: BNSKVT +departmentNumber: 1001 +employeeType: Normal +homePhone: +1 510 993-5078 +initials: A. F. +mobile: +1 510 122-4783 +pager: +1 510 473-1056 +roomNumber: 8236 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Janet Ludchen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janet Ludchen +sn: Ludchen +description: This is Janet Ludchen's description +facsimileTelephoneNumber: +1 206 633-2565 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 834-5791 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: LudchenJ +givenName: Janet +mail: LudchenJ@98502193cf164ea4ab82010779caeff8.bitwarden.com +carLicense: H6MW77 +departmentNumber: 5580 +employeeType: Normal +homePhone: +1 206 354-8690 +initials: J. L. +mobile: +1 206 381-3623 +pager: +1 206 926-7088 +roomNumber: 9515 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erlene HemensDavis +sn: HemensDavis +description: This is Erlene HemensDavis's description +facsimileTelephoneNumber: +1 408 817-8273 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 408 194-1125 +title: Chief Product Testing Manager +userPassword: Password1 +uid: HemensDE +givenName: Erlene +mail: HemensDE@09a14201411d4f53ba5558d0182f9877.bitwarden.com +carLicense: EGYF69 +departmentNumber: 5465 +employeeType: Normal +homePhone: +1 408 629-7422 +initials: E. H. +mobile: +1 408 327-3802 +pager: +1 408 535-7837 +roomNumber: 8202 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Noubar Novotny,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noubar Novotny +sn: Novotny +description: This is Noubar Novotny's description +facsimileTelephoneNumber: +1 415 364-9802 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 927-9548 +title: Master Product Testing Dictator +userPassword: Password1 +uid: NovotnyN +givenName: Noubar +mail: NovotnyN@4664a2b63b254ce9b3d95a8c77ae6508.bitwarden.com +carLicense: HT4SUY +departmentNumber: 5432 +employeeType: Normal +homePhone: +1 415 568-7534 +initials: N. N. +mobile: +1 415 214-3100 +pager: +1 415 769-1501 +roomNumber: 9194 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Starlin Joe,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Starlin Joe +sn: Joe +description: This is Starlin Joe's description +facsimileTelephoneNumber: +1 206 242-9570 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 617-5028 +title: Master Administrative Janitor +userPassword: Password1 +uid: JoeS +givenName: Starlin +mail: JoeS@dfc246b09f2e4fb599bc8aeb9522688c.bitwarden.com +carLicense: 6VWP9D +departmentNumber: 8135 +employeeType: Contract +homePhone: +1 206 341-9751 +initials: S. J. +mobile: +1 206 143-2303 +pager: +1 206 902-6077 +roomNumber: 8435 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxi Mcgrachan +sn: Mcgrachan +description: This is Roxi Mcgrachan's description +facsimileTelephoneNumber: +1 213 979-8382 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 213 614-2528 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: McgrachR +givenName: Roxi +mail: McgrachR@094b6a4c917e4f98917e91b5a1b28522.bitwarden.com +carLicense: QJ9H68 +departmentNumber: 4647 +employeeType: Contract +homePhone: +1 213 598-5728 +initials: R. M. +mobile: +1 213 845-7879 +pager: +1 213 948-5515 +roomNumber: 9064 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anurag Sylvestre +sn: Sylvestre +description: This is Anurag Sylvestre's description +facsimileTelephoneNumber: +1 804 867-3688 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 777-3572 +title: Associate Administrative Evangelist +userPassword: Password1 +uid: SylvestA +givenName: Anurag +mail: SylvestA@c6c0c36af5924e05b67c3f7f8f84a521.bitwarden.com +carLicense: 480WCG +departmentNumber: 2969 +employeeType: Contract +homePhone: +1 804 117-9677 +initials: A. S. +mobile: +1 804 917-6900 +pager: +1 804 538-4357 +roomNumber: 9195 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarabelle Szpakowski +sn: Szpakowski +description: This is Clarabelle Szpakowski's description +facsimileTelephoneNumber: +1 213 968-5579 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 132-2420 +title: Chief Administrative Engineer +userPassword: Password1 +uid: SzpakowC +givenName: Clarabelle +mail: SzpakowC@4844d9cc18554268bb1e3d4ae2211fcb.bitwarden.com +carLicense: QWOACN +departmentNumber: 1040 +employeeType: Contract +homePhone: +1 213 188-7062 +initials: C. S. +mobile: +1 213 217-5431 +pager: +1 213 384-9964 +roomNumber: 8174 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Devora Pde,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devora Pde +sn: Pde +description: This is Devora Pde's description +facsimileTelephoneNumber: +1 206 748-4185 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 352-7688 +title: Associate Product Development Admin +userPassword: Password1 +uid: PdeD +givenName: Devora +mail: PdeD@4fe9499fc7c8456094066466aa426118.bitwarden.com +carLicense: 8I124F +departmentNumber: 7964 +employeeType: Normal +homePhone: +1 206 900-4019 +initials: D. P. +mobile: +1 206 212-8427 +pager: +1 206 262-1935 +roomNumber: 9700 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Darya McGeown,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darya McGeown +sn: McGeown +description: This is Darya McGeown's description +facsimileTelephoneNumber: +1 415 785-6657 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 932-2000 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: McGeownD +givenName: Darya +mail: McGeownD@67e3aaef7f7f4f1cbd8f4f936f598c13.bitwarden.com +carLicense: FE7MSQ +departmentNumber: 3746 +employeeType: Contract +homePhone: +1 415 659-7997 +initials: D. M. +mobile: +1 415 173-2057 +pager: +1 415 651-8847 +roomNumber: 8907 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dnsproj Walles,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dnsproj Walles +sn: Walles +description: This is Dnsproj Walles's description +facsimileTelephoneNumber: +1 213 485-3809 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 980-2822 +title: Chief Peons Assistant +userPassword: Password1 +uid: WallesD +givenName: Dnsproj +mail: WallesD@436da9fad3274d878f0f8f160f4f3038.bitwarden.com +carLicense: D44TYC +departmentNumber: 9068 +employeeType: Contract +homePhone: +1 213 167-7903 +initials: D. W. +mobile: +1 213 308-1494 +pager: +1 213 867-2388 +roomNumber: 8333 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarie Ainsworth +sn: Ainsworth +description: This is Clarie Ainsworth's description +facsimileTelephoneNumber: +1 510 362-2434 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 510 489-3982 +title: Master Administrative Grunt +userPassword: Password1 +uid: AinsworC +givenName: Clarie +mail: AinsworC@33cc208726174faa89627fd28537f1c0.bitwarden.com +carLicense: 6QB4P0 +departmentNumber: 6836 +employeeType: Employee +homePhone: +1 510 566-4878 +initials: C. A. +mobile: +1 510 857-3121 +pager: +1 510 752-3298 +roomNumber: 9796 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Norma Lepine,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norma Lepine +sn: Lepine +description: This is Norma Lepine's description +facsimileTelephoneNumber: +1 206 441-6615 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 166-7089 +title: Supreme Peons Visionary +userPassword: Password1 +uid: LepineN +givenName: Norma +mail: LepineN@272fe3f35e92442897a84fe95f9bd54a.bitwarden.com +carLicense: CCWAV8 +departmentNumber: 9786 +employeeType: Employee +homePhone: +1 206 209-4476 +initials: N. L. +mobile: +1 206 608-1177 +pager: +1 206 749-9556 +roomNumber: 8510 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Brandy Verma,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandy Verma +sn: Verma +description: This is Brandy Verma's description +facsimileTelephoneNumber: +1 213 922-4110 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 504-1563 +title: Associate Management Fellow +userPassword: Password1 +uid: VermaB +givenName: Brandy +mail: VermaB@d3b588680db34a60a238a39048e01e24.bitwarden.com +carLicense: V0GTE8 +departmentNumber: 5319 +employeeType: Contract +homePhone: +1 213 532-6201 +initials: B. V. +mobile: +1 213 138-1858 +pager: +1 213 823-5477 +roomNumber: 9114 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Blanch Virk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blanch Virk +sn: Virk +description: This is Blanch Virk's description +facsimileTelephoneNumber: +1 818 647-6480 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 618-5002 +title: Junior Management Pinhead +userPassword: Password1 +uid: VirkB +givenName: Blanch +mail: VirkB@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com +carLicense: 1QU0KG +departmentNumber: 9289 +employeeType: Contract +homePhone: +1 818 617-6195 +initials: B. V. +mobile: +1 818 638-8613 +pager: +1 818 375-2876 +roomNumber: 9838 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Viviana Waucheul,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viviana Waucheul +sn: Waucheul +description: This is Viviana Waucheul's description +facsimileTelephoneNumber: +1 818 976-6001 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 793-5839 +title: Chief Management Admin +userPassword: Password1 +uid: WaucheuV +givenName: Viviana +mail: WaucheuV@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com +carLicense: 6H2A81 +departmentNumber: 7846 +employeeType: Contract +homePhone: +1 818 477-2001 +initials: V. W. +mobile: +1 818 220-9768 +pager: +1 818 997-9032 +roomNumber: 9087 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jewelle Buettgen +sn: Buettgen +description: This is Jewelle Buettgen's description +facsimileTelephoneNumber: +1 213 819-6191 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 418-7164 +title: Associate Payroll Dictator +userPassword: Password1 +uid: BuettgeJ +givenName: Jewelle +mail: BuettgeJ@870c77d8854c4712a0826cc38e8d28f2.bitwarden.com +carLicense: LMRW3T +departmentNumber: 6907 +employeeType: Contract +homePhone: +1 213 568-1884 +initials: J. B. +mobile: +1 213 822-9814 +pager: +1 213 497-4691 +roomNumber: 9701 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Brittani Menasce,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brittani Menasce +sn: Menasce +description: This is Brittani Menasce's description +facsimileTelephoneNumber: +1 510 660-8957 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 651-1612 +title: Chief Payroll Stooge +userPassword: Password1 +uid: MenasceB +givenName: Brittani +mail: MenasceB@39e9f09e15b6447ab4fb7b5dd3ceb897.bitwarden.com +carLicense: G7T5T7 +departmentNumber: 8528 +employeeType: Employee +homePhone: +1 510 666-6890 +initials: B. M. +mobile: +1 510 836-4077 +pager: +1 510 973-7115 +roomNumber: 9915 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Khalil Mincey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khalil Mincey +sn: Mincey +description: This is Khalil Mincey's description +facsimileTelephoneNumber: +1 818 904-8613 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 325-2937 +title: Junior Product Testing Grunt +userPassword: Password1 +uid: MinceyK +givenName: Khalil +mail: MinceyK@fdb2f5b287e8463ca2c07913962256d3.bitwarden.com +carLicense: MMKUUW +departmentNumber: 5734 +employeeType: Contract +homePhone: +1 818 181-6852 +initials: K. M. +mobile: +1 818 308-3053 +pager: +1 818 249-4213 +roomNumber: 9916 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shedman Jakim,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shedman Jakim +sn: Jakim +description: This is Shedman Jakim's description +facsimileTelephoneNumber: +1 804 324-7634 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 964-6123 +title: Master Product Testing Vice President +userPassword: Password1 +uid: JakimS +givenName: Shedman +mail: JakimS@5804ef50880749d5b82225b286f1e13d.bitwarden.com +carLicense: CU3ETL +departmentNumber: 9942 +employeeType: Contract +homePhone: +1 804 397-9857 +initials: S. J. +mobile: +1 804 296-6719 +pager: +1 804 648-7072 +roomNumber: 8797 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Reba Chadha,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reba Chadha +sn: Chadha +description: This is Reba Chadha's description +facsimileTelephoneNumber: +1 804 816-2993 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 438-8926 +title: Supreme Management Writer +userPassword: Password1 +uid: ChadhaR +givenName: Reba +mail: ChadhaR@33e8933bc7494a68acd4251758e509d3.bitwarden.com +carLicense: VXPOWS +departmentNumber: 9649 +employeeType: Normal +homePhone: +1 804 588-8881 +initials: R. C. +mobile: +1 804 637-1229 +pager: +1 804 573-5138 +roomNumber: 8235 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ailey Randall,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailey Randall +sn: Randall +description: This is Ailey Randall's description +facsimileTelephoneNumber: +1 206 809-3744 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 117-6908 +title: Junior Human Resources Developer +userPassword: Password1 +uid: RandallA +givenName: Ailey +mail: RandallA@4dc95598dae748aba389750443b62f7b.bitwarden.com +carLicense: Y79VA7 +departmentNumber: 2786 +employeeType: Normal +homePhone: +1 206 800-4639 +initials: A. R. +mobile: +1 206 126-7638 +pager: +1 206 853-1124 +roomNumber: 9623 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dino Dangubic,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dino Dangubic +sn: Dangubic +description: This is Dino Dangubic's description +facsimileTelephoneNumber: +1 804 788-3279 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 539-1970 +title: Chief Management Pinhead +userPassword: Password1 +uid: DangubiD +givenName: Dino +mail: DangubiD@2b9fd035a3c74d0a924ba78f328d5988.bitwarden.com +carLicense: IEX8EP +departmentNumber: 6610 +employeeType: Normal +homePhone: +1 804 218-9942 +initials: D. D. +mobile: +1 804 487-7251 +pager: +1 804 611-3732 +roomNumber: 9018 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marlies Ortiz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlies Ortiz +sn: Ortiz +description: This is Marlies Ortiz's description +facsimileTelephoneNumber: +1 415 310-4034 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 670-8640 +title: Junior Product Development Assistant +userPassword: Password1 +uid: OrtizM +givenName: Marlies +mail: OrtizM@f5c69553f79a4b59937ac455a61cfbaf.bitwarden.com +carLicense: 95S6MJ +departmentNumber: 9294 +employeeType: Normal +homePhone: +1 415 726-3379 +initials: M. O. +mobile: +1 415 771-7442 +pager: +1 415 244-1386 +roomNumber: 9219 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Uri Neufeld,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Uri Neufeld +sn: Neufeld +description: This is Uri Neufeld's description +facsimileTelephoneNumber: +1 415 383-6358 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 415 565-6953 +title: Master Peons Pinhead +userPassword: Password1 +uid: NeufeldU +givenName: Uri +mail: NeufeldU@34daae537ca34252aa1b9fbf611843a4.bitwarden.com +carLicense: QJCQCT +departmentNumber: 1017 +employeeType: Employee +homePhone: +1 415 229-5629 +initials: U. N. +mobile: +1 415 893-8787 +pager: +1 415 327-7442 +roomNumber: 9512 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Loralee McDunn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loralee McDunn +sn: McDunn +description: This is Loralee McDunn's description +facsimileTelephoneNumber: +1 818 659-5018 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 818 597-6518 +title: Junior Management Sales Rep +userPassword: Password1 +uid: McDunnL +givenName: Loralee +mail: McDunnL@6737edb7123741dc9935feaaacc217ad.bitwarden.com +carLicense: 0LKTW7 +departmentNumber: 4677 +employeeType: Employee +homePhone: +1 818 633-3776 +initials: L. M. +mobile: +1 818 617-7591 +pager: +1 818 406-8424 +roomNumber: 8106 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Caridad Sawada,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caridad Sawada +sn: Sawada +description: This is Caridad Sawada's description +facsimileTelephoneNumber: +1 206 190-4736 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 876-5331 +title: Chief Janitorial Czar +userPassword: Password1 +uid: SawadaC +givenName: Caridad +mail: SawadaC@b7db7b74741043f1bc70179c65d8c474.bitwarden.com +carLicense: 5455NH +departmentNumber: 2606 +employeeType: Contract +homePhone: +1 206 175-7323 +initials: C. S. +mobile: +1 206 103-3036 +pager: +1 206 622-9974 +roomNumber: 9667 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Willis Shelley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willis Shelley +sn: Shelley +description: This is Willis Shelley's description +facsimileTelephoneNumber: +1 415 479-6527 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 850-1252 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: ShelleyW +givenName: Willis +mail: ShelleyW@4c5bcfb77c02454a84e7adc20afdfbe7.bitwarden.com +carLicense: QNYSR3 +departmentNumber: 3235 +employeeType: Normal +homePhone: +1 415 683-5426 +initials: W. S. +mobile: +1 415 713-5282 +pager: +1 415 863-6000 +roomNumber: 8352 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raffi Kingsbury +sn: Kingsbury +description: This is Raffi Kingsbury's description +facsimileTelephoneNumber: +1 818 865-5469 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 818 385-5912 +title: Junior Janitorial Engineer +userPassword: Password1 +uid: KingsbuR +givenName: Raffi +mail: KingsbuR@36de44fb75b44a8f944e568c2906a4cc.bitwarden.com +carLicense: NCXUHF +departmentNumber: 1400 +employeeType: Employee +homePhone: +1 818 778-6969 +initials: R. K. +mobile: +1 818 757-6438 +pager: +1 818 332-5155 +roomNumber: 8443 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pauletta Weakley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pauletta Weakley +sn: Weakley +description: This is Pauletta Weakley's description +facsimileTelephoneNumber: +1 415 959-1392 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 599-5874 +title: Associate Administrative Director +userPassword: Password1 +uid: WeakleyP +givenName: Pauletta +mail: WeakleyP@7ed3387e63ee42a8ac53af5791774853.bitwarden.com +carLicense: L3MD9B +departmentNumber: 7124 +employeeType: Employee +homePhone: +1 415 728-1052 +initials: P. W. +mobile: +1 415 880-9378 +pager: +1 415 875-2424 +roomNumber: 9466 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wenona Zalzale +sn: Zalzale +description: This is Wenona Zalzale's description +facsimileTelephoneNumber: +1 510 423-1638 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 703-3103 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: ZalzaleW +givenName: Wenona +mail: ZalzaleW@b0d3dcf7c04d42368ec48183f6c62c8a.bitwarden.com +carLicense: 0Y0IEI +departmentNumber: 9310 +employeeType: Employee +homePhone: +1 510 450-7209 +initials: W. Z. +mobile: +1 510 818-7036 +pager: +1 510 886-7894 +roomNumber: 9487 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nanni Taul,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nanni Taul +sn: Taul +description: This is Nanni Taul's description +facsimileTelephoneNumber: +1 213 845-4301 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 198-4263 +title: Master Management Assistant +userPassword: Password1 +uid: TaulN +givenName: Nanni +mail: TaulN@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com +carLicense: 32DE56 +departmentNumber: 8241 +employeeType: Employee +homePhone: +1 213 890-5077 +initials: N. T. +mobile: +1 213 909-7774 +pager: +1 213 971-1203 +roomNumber: 9439 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Neetu Jeng,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neetu Jeng +sn: Jeng +description: This is Neetu Jeng's description +facsimileTelephoneNumber: +1 804 996-4166 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 934-4457 +title: Associate Management Manager +userPassword: Password1 +uid: JengN +givenName: Neetu +mail: JengN@7d8c7359d7af4b57bab78dd69e94d053.bitwarden.com +carLicense: B0U3T6 +departmentNumber: 1779 +employeeType: Employee +homePhone: +1 804 479-9663 +initials: N. J. +mobile: +1 804 526-4709 +pager: +1 804 961-3997 +roomNumber: 8626 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyda LEcuyer +sn: LEcuyer +description: This is Lyda LEcuyer's description +facsimileTelephoneNumber: +1 206 286-2155 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 702-9178 +title: Master Administrative Stooge +userPassword: Password1 +uid: LEcuyerL +givenName: Lyda +mail: LEcuyerL@ff701dee527d4bd9bda5646b61d95c09.bitwarden.com +carLicense: IB9KKV +departmentNumber: 6499 +employeeType: Employee +homePhone: +1 206 712-5308 +initials: L. L. +mobile: +1 206 235-2607 +pager: +1 206 599-7221 +roomNumber: 8187 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aimee Poma,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aimee Poma +sn: Poma +description: This is Aimee Poma's description +facsimileTelephoneNumber: +1 415 205-8058 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 169-4902 +title: Supreme Product Development President +userPassword: Password1 +uid: PomaA +givenName: Aimee +mail: PomaA@98e58adba05c446c846da1ebe7623815.bitwarden.com +carLicense: 7SNDAJ +departmentNumber: 4041 +employeeType: Contract +homePhone: +1 415 530-5390 +initials: A. P. +mobile: +1 415 800-3993 +pager: +1 415 978-9668 +roomNumber: 9249 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mer Mayes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mer Mayes +sn: Mayes +description: This is Mer Mayes's description +facsimileTelephoneNumber: +1 818 416-3834 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 810-1629 +title: Master Product Development Evangelist +userPassword: Password1 +uid: MayesM +givenName: Mer +mail: MayesM@4e190119399c4a758ca1735cbfbf2e84.bitwarden.com +carLicense: WK7ABV +departmentNumber: 1930 +employeeType: Employee +homePhone: +1 818 256-2022 +initials: M. M. +mobile: +1 818 816-5692 +pager: +1 818 889-3442 +roomNumber: 9660 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alisa Rogan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alisa Rogan +sn: Rogan +description: This is Alisa Rogan's description +facsimileTelephoneNumber: +1 206 645-2005 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 201-7408 +title: Junior Administrative Architect +userPassword: Password1 +uid: RoganA +givenName: Alisa +mail: RoganA@c4fa2184e3754d1f80f7d5580d9d94a2.bitwarden.com +carLicense: 0SSS55 +departmentNumber: 6103 +employeeType: Contract +homePhone: +1 206 219-8257 +initials: A. R. +mobile: +1 206 527-7836 +pager: +1 206 759-4745 +roomNumber: 8880 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabriellia Staggs +sn: Staggs +description: This is Gabriellia Staggs's description +facsimileTelephoneNumber: +1 213 785-9325 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 213 676-4821 +title: Master Administrative Visionary +userPassword: Password1 +uid: StaggsG +givenName: Gabriellia +mail: StaggsG@515154f7d1544d02939e620d7479ff81.bitwarden.com +carLicense: KO6G33 +departmentNumber: 7031 +employeeType: Employee +homePhone: +1 213 284-3924 +initials: G. S. +mobile: +1 213 490-3076 +pager: +1 213 140-5676 +roomNumber: 8820 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Penni Yim,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Penni Yim +sn: Yim +description: This is Penni Yim's description +facsimileTelephoneNumber: +1 213 650-2397 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 922-7032 +title: Chief Product Testing Figurehead +userPassword: Password1 +uid: YimP +givenName: Penni +mail: YimP@2c5e9a0ea53e4c3488f28ebc0a631b01.bitwarden.com +carLicense: XVDFMS +departmentNumber: 8570 +employeeType: Normal +homePhone: +1 213 782-4229 +initials: P. Y. +mobile: +1 213 148-5773 +pager: +1 213 143-2588 +roomNumber: 8232 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Melessa Vuong,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melessa Vuong +sn: Vuong +description: This is Melessa Vuong's description +facsimileTelephoneNumber: +1 415 842-5823 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 155-4387 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: VuongM +givenName: Melessa +mail: VuongM@65c647306216446ba8005c16399f2df3.bitwarden.com +carLicense: I6RA4V +departmentNumber: 7715 +employeeType: Employee +homePhone: +1 415 470-6062 +initials: M. V. +mobile: +1 415 485-9355 +pager: +1 415 469-5753 +roomNumber: 9461 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anni Blander,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anni Blander +sn: Blander +description: This is Anni Blander's description +facsimileTelephoneNumber: +1 213 869-9624 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 213 360-1886 +title: Master Payroll Consultant +userPassword: Password1 +uid: BlanderA +givenName: Anni +mail: BlanderA@a1cc10fa763e4d8e859c484ee294d650.bitwarden.com +carLicense: TVOTUO +departmentNumber: 4050 +employeeType: Contract +homePhone: +1 213 758-9782 +initials: A. B. +mobile: +1 213 320-7367 +pager: +1 213 629-5440 +roomNumber: 8079 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kazuhiko Weston +sn: Weston +description: This is Kazuhiko Weston's description +facsimileTelephoneNumber: +1 818 102-1877 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 818 155-3190 +title: Master Product Testing Vice President +userPassword: Password1 +uid: WestonK +givenName: Kazuhiko +mail: WestonK@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com +carLicense: CESM15 +departmentNumber: 2134 +employeeType: Employee +homePhone: +1 818 123-5984 +initials: K. W. +mobile: +1 818 967-7273 +pager: +1 818 198-9122 +roomNumber: 8882 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lesli Hassan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lesli Hassan +sn: Hassan +description: This is Lesli Hassan's description +facsimileTelephoneNumber: +1 818 498-6926 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 818 490-4246 +title: Junior Administrative Mascot +userPassword: Password1 +uid: HassanL +givenName: Lesli +mail: HassanL@15a45d459da54368b0fd6d1cb3b6eb6c.bitwarden.com +carLicense: 6YNN13 +departmentNumber: 9039 +employeeType: Employee +homePhone: +1 818 769-8911 +initials: L. H. +mobile: +1 818 873-9373 +pager: +1 818 965-2086 +roomNumber: 8829 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marthena Holleran,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marthena Holleran +sn: Holleran +description: This is Marthena Holleran's description +facsimileTelephoneNumber: +1 206 947-1226 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 415-8317 +title: Junior Product Testing Madonna +userPassword: Password1 +uid: HolleraM +givenName: Marthena +mail: HolleraM@736366bf947d4889a5087519dbc9eaff.bitwarden.com +carLicense: X2ANYR +departmentNumber: 6489 +employeeType: Contract +homePhone: +1 206 346-1246 +initials: M. H. +mobile: +1 206 615-3543 +pager: +1 206 191-9704 +roomNumber: 9810 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Josi Management,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Josi Management +sn: Management +description: This is Josi Management's description +facsimileTelephoneNumber: +1 213 251-2944 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 386-3867 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: ManagemJ +givenName: Josi +mail: ManagemJ@c6a4a4056d14487fb671f2f8a2034eab.bitwarden.com +carLicense: R7YX2O +departmentNumber: 8814 +employeeType: Contract +homePhone: +1 213 990-7833 +initials: J. M. +mobile: +1 213 231-7625 +pager: +1 213 853-5144 +roomNumber: 8851 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wladyslaw Markland +sn: Markland +description: This is Wladyslaw Markland's description +facsimileTelephoneNumber: +1 818 368-5031 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 986-6651 +title: Chief Janitorial Developer +userPassword: Password1 +uid: MarklanW +givenName: Wladyslaw +mail: MarklanW@b25f9197eb164e0e80b05e75586a2055.bitwarden.com +carLicense: K4LMAR +departmentNumber: 3560 +employeeType: Employee +homePhone: +1 818 629-1468 +initials: W. M. +mobile: +1 818 712-6968 +pager: +1 818 815-9058 +roomNumber: 8790 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elga Conlon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elga Conlon +sn: Conlon +description: This is Elga Conlon's description +facsimileTelephoneNumber: +1 213 296-1391 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 957-3248 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: ConlonE +givenName: Elga +mail: ConlonE@c0c6e65c61e944a0b382a61d11dea90d.bitwarden.com +carLicense: NAUO5X +departmentNumber: 6202 +employeeType: Normal +homePhone: +1 213 162-3961 +initials: E. C. +mobile: +1 213 304-2431 +pager: +1 213 824-5249 +roomNumber: 8979 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Francesca Boyd,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francesca Boyd +sn: Boyd +description: This is Francesca Boyd's description +facsimileTelephoneNumber: +1 804 407-2961 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 196-7519 +title: Chief Human Resources Pinhead +userPassword: Password1 +uid: BoydF +givenName: Francesca +mail: BoydF@e38af9fe725143fba59fa84a861f0258.bitwarden.com +carLicense: YC30A4 +departmentNumber: 9137 +employeeType: Contract +homePhone: +1 804 268-7417 +initials: F. B. +mobile: +1 804 226-6338 +pager: +1 804 789-1171 +roomNumber: 8155 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorettalorna Eberlin +sn: Eberlin +description: This is Lorettalorna Eberlin's description +facsimileTelephoneNumber: +1 510 577-4771 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 254-8430 +title: Junior Peons President +userPassword: Password1 +uid: EberlinL +givenName: Lorettalorna +mail: EberlinL@b2b61d7107f642f5a98b64baa9303c9a.bitwarden.com +carLicense: F39LGV +departmentNumber: 9924 +employeeType: Employee +homePhone: +1 510 978-9339 +initials: L. E. +mobile: +1 510 155-5628 +pager: +1 510 284-6998 +roomNumber: 9107 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabbie Clysdale +sn: Clysdale +description: This is Gabbie Clysdale's description +facsimileTelephoneNumber: +1 510 864-6028 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 419-4857 +title: Associate Janitorial President +userPassword: Password1 +uid: ClysdalG +givenName: Gabbie +mail: ClysdalG@aac280e1ad054311a3291435b99caa3e.bitwarden.com +carLicense: MQRRKK +departmentNumber: 3929 +employeeType: Employee +homePhone: +1 510 250-4359 +initials: G. C. +mobile: +1 510 259-3877 +pager: +1 510 569-4170 +roomNumber: 8034 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marit Ahlers,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marit Ahlers +sn: Ahlers +description: This is Marit Ahlers's description +facsimileTelephoneNumber: +1 510 808-3110 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 797-5149 +title: Supreme Product Testing Architect +userPassword: Password1 +uid: AhlersM +givenName: Marit +mail: AhlersM@a5557159c1c14e57b5492ca45de2de58.bitwarden.com +carLicense: M4TTQC +departmentNumber: 6298 +employeeType: Normal +homePhone: +1 510 272-8907 +initials: M. A. +mobile: +1 510 590-6649 +pager: +1 510 145-6552 +roomNumber: 9938 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mukund Aboussouan +sn: Aboussouan +description: This is Mukund Aboussouan's description +facsimileTelephoneNumber: +1 415 725-7797 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 504-7521 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: AboussoM +givenName: Mukund +mail: AboussoM@541a80b7aa9b481bbf28921cf43e3f5e.bitwarden.com +carLicense: HJUNW4 +departmentNumber: 2483 +employeeType: Contract +homePhone: +1 415 786-5895 +initials: M. A. +mobile: +1 415 551-2770 +pager: +1 415 675-4197 +roomNumber: 8879 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Donovan Rega,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donovan Rega +sn: Rega +description: This is Donovan Rega's description +facsimileTelephoneNumber: +1 206 446-7692 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 959-6079 +title: Supreme Product Testing Architect +userPassword: Password1 +uid: RegaD +givenName: Donovan +mail: RegaD@21f2e463791848548ef88e00deb1b9ad.bitwarden.com +carLicense: DOLBOU +departmentNumber: 2009 +employeeType: Contract +homePhone: +1 206 248-3368 +initials: D. R. +mobile: +1 206 971-5880 +pager: +1 206 106-1452 +roomNumber: 9356 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Elli Bourdignon,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elli Bourdignon +sn: Bourdignon +description: This is Elli Bourdignon's description +facsimileTelephoneNumber: +1 408 982-7754 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 964-5175 +title: Master Peons Sales Rep +userPassword: Password1 +uid: BourdigE +givenName: Elli +mail: BourdigE@0f1c3e2ce2034f5d8c7b8756242c50e7.bitwarden.com +carLicense: QEGE0S +departmentNumber: 5610 +employeeType: Employee +homePhone: +1 408 134-6056 +initials: E. B. +mobile: +1 408 871-6436 +pager: +1 408 653-4648 +roomNumber: 9510 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Haily Mo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haily Mo +sn: Mo +description: This is Haily Mo's description +facsimileTelephoneNumber: +1 213 486-9759 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 491-2898 +title: Associate Product Development Fellow +userPassword: Password1 +uid: MoH +givenName: Haily +mail: MoH@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com +carLicense: OH705T +departmentNumber: 3190 +employeeType: Employee +homePhone: +1 213 569-5762 +initials: H. M. +mobile: +1 213 669-3422 +pager: +1 213 552-6424 +roomNumber: 9582 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mohammed Minai,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mohammed Minai +sn: Minai +description: This is Mohammed Minai's description +facsimileTelephoneNumber: +1 510 905-2027 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 510 771-9934 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: MinaiM +givenName: Mohammed +mail: MinaiM@777873609ce9463eb7000e930f9c88d2.bitwarden.com +carLicense: OS4V2N +departmentNumber: 5676 +employeeType: Employee +homePhone: +1 510 725-3741 +initials: M. M. +mobile: +1 510 619-1634 +pager: +1 510 509-3519 +roomNumber: 9132 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kirit Storrie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirit Storrie +sn: Storrie +description: This is Kirit Storrie's description +facsimileTelephoneNumber: +1 213 388-8887 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 437-1740 +title: Master Human Resources Consultant +userPassword: Password1 +uid: StorrieK +givenName: Kirit +mail: StorrieK@faf22808db304ae29b9dfcf6c14eb1a1.bitwarden.com +carLicense: 8BQJ41 +departmentNumber: 3318 +employeeType: Employee +homePhone: +1 213 200-5516 +initials: K. S. +mobile: +1 213 225-7442 +pager: +1 213 383-8890 +roomNumber: 9463 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coleen Jayamanne +sn: Jayamanne +description: This is Coleen Jayamanne's description +facsimileTelephoneNumber: +1 818 605-4836 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 638-4564 +title: Associate Product Testing President +userPassword: Password1 +uid: JayamanC +givenName: Coleen +mail: JayamanC@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com +carLicense: 2VTOQ3 +departmentNumber: 7733 +employeeType: Employee +homePhone: +1 818 861-4347 +initials: C. J. +mobile: +1 818 583-1588 +pager: +1 818 536-8952 +roomNumber: 9938 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardyce Watkinson +sn: Watkinson +description: This is Ardyce Watkinson's description +facsimileTelephoneNumber: +1 408 927-8103 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 840-5970 +title: Chief Payroll Vice President +userPassword: Password1 +uid: WatkinsA +givenName: Ardyce +mail: WatkinsA@b34436a247d34fc9bc5677457c93ba78.bitwarden.com +carLicense: UONX0M +departmentNumber: 6914 +employeeType: Contract +homePhone: +1 408 928-4772 +initials: A. W. +mobile: +1 408 389-3313 +pager: +1 408 275-5827 +roomNumber: 8174 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rolf Simonovich +sn: Simonovich +description: This is Rolf Simonovich's description +facsimileTelephoneNumber: +1 213 959-8668 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 347-3719 +title: Master Janitorial Punk +userPassword: Password1 +uid: SimonovR +givenName: Rolf +mail: SimonovR@cde16491739c4f3f8690a2cf6ade7e5d.bitwarden.com +carLicense: L4A542 +departmentNumber: 2359 +employeeType: Normal +homePhone: +1 213 469-8074 +initials: R. S. +mobile: +1 213 158-1630 +pager: +1 213 153-1350 +roomNumber: 8808 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Migdalia McGalliard +sn: McGalliard +description: This is Migdalia McGalliard's description +facsimileTelephoneNumber: +1 804 459-8405 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 806-1678 +title: Master Payroll Punk +userPassword: Password1 +uid: McGalliM +givenName: Migdalia +mail: McGalliM@a46aa42b5f274530aa98dd0c7465489c.bitwarden.com +carLicense: OTBSI8 +departmentNumber: 3569 +employeeType: Normal +homePhone: +1 804 569-3853 +initials: M. M. +mobile: +1 804 102-2000 +pager: +1 804 460-7727 +roomNumber: 8269 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jenn Bennison,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenn Bennison +sn: Bennison +description: This is Jenn Bennison's description +facsimileTelephoneNumber: +1 818 952-5095 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 733-7839 +title: Chief Human Resources Manager +userPassword: Password1 +uid: BennisoJ +givenName: Jenn +mail: BennisoJ@0469f1b4c991499bab217f2cac0d045b.bitwarden.com +carLicense: 0MIP0V +departmentNumber: 7201 +employeeType: Employee +homePhone: +1 818 398-1061 +initials: J. B. +mobile: +1 818 394-5920 +pager: +1 818 446-1407 +roomNumber: 8543 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Durantaye Molson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Durantaye Molson +sn: Molson +description: This is Durantaye Molson's description +facsimileTelephoneNumber: +1 206 253-3594 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 570-2751 +title: Associate Product Testing Grunt +userPassword: Password1 +uid: MolsonD +givenName: Durantaye +mail: MolsonD@282e36163b2b4782beba5acb316b5795.bitwarden.com +carLicense: R6GEBB +departmentNumber: 3091 +employeeType: Normal +homePhone: +1 206 688-8161 +initials: D. M. +mobile: +1 206 337-5935 +pager: +1 206 202-4599 +roomNumber: 8466 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Viola Devouges,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viola Devouges +sn: Devouges +description: This is Viola Devouges's description +facsimileTelephoneNumber: +1 408 348-4939 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 386-7516 +title: Master Janitorial Admin +userPassword: Password1 +uid: DevougeV +givenName: Viola +mail: DevougeV@22e47b1badb64e5a8c75ea83e23c66b9.bitwarden.com +carLicense: XE9RRC +departmentNumber: 2279 +employeeType: Normal +homePhone: +1 408 766-6851 +initials: V. D. +mobile: +1 408 457-8040 +pager: +1 408 204-3197 +roomNumber: 8770 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abdullah Bhardwaj +sn: Bhardwaj +description: This is Abdullah Bhardwaj's description +facsimileTelephoneNumber: +1 408 956-5528 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 184-9177 +title: Associate Administrative Admin +userPassword: Password1 +uid: BhardwaA +givenName: Abdullah +mail: BhardwaA@7c05b9f9aa6d481ba748c7c030bbe50b.bitwarden.com +carLicense: Q1W2R8 +departmentNumber: 4655 +employeeType: Normal +homePhone: +1 408 282-6963 +initials: A. B. +mobile: +1 408 863-3211 +pager: +1 408 448-9155 +roomNumber: 8379 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Palme Boose,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Palme Boose +sn: Boose +description: This is Palme Boose's description +facsimileTelephoneNumber: +1 213 284-1458 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 684-4348 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: BooseP +givenName: Palme +mail: BooseP@0a9ecf28f4994fd284a4f750138333e6.bitwarden.com +carLicense: 182QVE +departmentNumber: 6935 +employeeType: Contract +homePhone: +1 213 266-7741 +initials: P. B. +mobile: +1 213 637-5843 +pager: +1 213 331-3726 +roomNumber: 9903 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zarah Doriot,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zarah Doriot +sn: Doriot +description: This is Zarah Doriot's description +facsimileTelephoneNumber: +1 818 580-2701 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 818 136-7720 +title: Junior Peons Director +userPassword: Password1 +uid: DoriotZ +givenName: Zarah +mail: DoriotZ@3be6f0b907a24b2494bafbb2bc326635.bitwarden.com +carLicense: RFXRM5 +departmentNumber: 7814 +employeeType: Contract +homePhone: +1 818 749-6873 +initials: Z. D. +mobile: +1 818 942-8700 +pager: +1 818 590-4264 +roomNumber: 9728 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Eirik McCray,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eirik McCray +sn: McCray +description: This is Eirik McCray's description +facsimileTelephoneNumber: +1 415 306-7459 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 207-2285 +title: Junior Management Vice President +userPassword: Password1 +uid: McCrayE +givenName: Eirik +mail: McCrayE@7ae99018925f40aaa0a9b24bf1a3f314.bitwarden.com +carLicense: 4JP0CN +departmentNumber: 7126 +employeeType: Employee +homePhone: +1 415 155-9876 +initials: E. M. +mobile: +1 415 490-6267 +pager: +1 415 918-9491 +roomNumber: 8033 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Brennan Saito,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brennan Saito +sn: Saito +description: This is Brennan Saito's description +facsimileTelephoneNumber: +1 804 275-8276 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 907-1234 +title: Junior Administrative Engineer +userPassword: Password1 +uid: SaitoB +givenName: Brennan +mail: SaitoB@4437a885539842e694e181973aeef65f.bitwarden.com +carLicense: WHNETR +departmentNumber: 7710 +employeeType: Contract +homePhone: +1 804 746-6651 +initials: B. S. +mobile: +1 804 559-5462 +pager: +1 804 791-6208 +roomNumber: 8818 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bambie Borel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bambie Borel +sn: Borel +description: This is Bambie Borel's description +facsimileTelephoneNumber: +1 804 273-3492 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 804 847-5986 +title: Master Payroll Evangelist +userPassword: Password1 +uid: BorelB +givenName: Bambie +mail: BorelB@911fdc608a134ac59eea9467d4209b74.bitwarden.com +carLicense: 5DYFSP +departmentNumber: 4034 +employeeType: Employee +homePhone: +1 804 354-2174 +initials: B. B. +mobile: +1 804 436-6554 +pager: +1 804 394-1409 +roomNumber: 8996 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Devonne Salkini,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devonne Salkini +sn: Salkini +description: This is Devonne Salkini's description +facsimileTelephoneNumber: +1 213 627-1333 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 961-1159 +title: Chief Payroll Developer +userPassword: Password1 +uid: SalkiniD +givenName: Devonne +mail: SalkiniD@f06dcb9a7c274d2c8b61f4765bcce046.bitwarden.com +carLicense: A4AHKM +departmentNumber: 8145 +employeeType: Employee +homePhone: +1 213 859-9265 +initials: D. S. +mobile: +1 213 299-4011 +pager: +1 213 724-7659 +roomNumber: 8690 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bawn Straub,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bawn Straub +sn: Straub +description: This is Bawn Straub's description +facsimileTelephoneNumber: +1 510 433-4464 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 152-6851 +title: Junior Product Testing Grunt +userPassword: Password1 +uid: StraubB +givenName: Bawn +mail: StraubB@3f4cec00392444ae9c0437c04a8ea49d.bitwarden.com +carLicense: DXBVXH +departmentNumber: 9207 +employeeType: Normal +homePhone: +1 510 225-3640 +initials: B. S. +mobile: +1 510 218-9037 +pager: +1 510 133-9189 +roomNumber: 8359 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jojo Peart,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jojo Peart +sn: Peart +description: This is Jojo Peart's description +facsimileTelephoneNumber: +1 818 648-4072 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 818 357-1200 +title: Associate Janitorial President +userPassword: Password1 +uid: PeartJ +givenName: Jojo +mail: PeartJ@7d23b0e8a7304d9db4a8b51eca9070a3.bitwarden.com +carLicense: O1PVI5 +departmentNumber: 3384 +employeeType: Contract +homePhone: +1 818 723-4866 +initials: J. P. +mobile: +1 818 389-9591 +pager: +1 818 541-4219 +roomNumber: 9968 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marieke Deibert,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marieke Deibert +sn: Deibert +description: This is Marieke Deibert's description +facsimileTelephoneNumber: +1 804 413-4133 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 242-4473 +title: Junior Human Resources Manager +userPassword: Password1 +uid: DeibertM +givenName: Marieke +mail: DeibertM@8eab0f58e984423689a3d31e38a978a5.bitwarden.com +carLicense: D9IN0X +departmentNumber: 8635 +employeeType: Employee +homePhone: +1 804 977-6625 +initials: M. D. +mobile: +1 804 139-4618 +pager: +1 804 422-8025 +roomNumber: 8518 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ginelle Couture,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginelle Couture +sn: Couture +description: This is Ginelle Couture's description +facsimileTelephoneNumber: +1 206 748-5682 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 318-4708 +title: Junior Management Admin +userPassword: Password1 +uid: CoutureG +givenName: Ginelle +mail: CoutureG@2f5fd5dddfb54bca86a1d0320ba60e06.bitwarden.com +carLicense: ALYWDW +departmentNumber: 8989 +employeeType: Employee +homePhone: +1 206 112-9671 +initials: G. C. +mobile: +1 206 207-1514 +pager: +1 206 476-3154 +roomNumber: 9108 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gnni Podolski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gnni Podolski +sn: Podolski +description: This is Gnni Podolski's description +facsimileTelephoneNumber: +1 415 706-8862 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 202-4458 +title: Master Janitorial Warrior +userPassword: Password1 +uid: PodolskG +givenName: Gnni +mail: PodolskG@f7752e330a264f1884c22f0f347f41b4.bitwarden.com +carLicense: UIPMED +departmentNumber: 5587 +employeeType: Normal +homePhone: +1 415 808-7048 +initials: G. P. +mobile: +1 415 561-1947 +pager: +1 415 831-8182 +roomNumber: 8303 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cubical Igarashi +sn: Igarashi +description: This is Cubical Igarashi's description +facsimileTelephoneNumber: +1 818 822-2611 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 572-1769 +title: Junior Human Resources Fellow +userPassword: Password1 +uid: IgarashC +givenName: Cubical +mail: IgarashC@97e726cfbc2349ecb70cb5344f2a2c22.bitwarden.com +carLicense: YUHUVB +departmentNumber: 5143 +employeeType: Employee +homePhone: +1 818 247-6485 +initials: C. I. +mobile: +1 818 652-6045 +pager: +1 818 773-2569 +roomNumber: 9438 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Uunko Kodsi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Uunko Kodsi +sn: Kodsi +description: This is Uunko Kodsi's description +facsimileTelephoneNumber: +1 804 902-3035 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 722-1694 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: KodsiU +givenName: Uunko +mail: KodsiU@37c3227000a74816851448e0169c372e.bitwarden.com +carLicense: RP9T9L +departmentNumber: 8167 +employeeType: Contract +homePhone: +1 804 889-6316 +initials: U. K. +mobile: +1 804 698-7223 +pager: +1 804 561-3199 +roomNumber: 8430 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaja Ritchey +sn: Ritchey +description: This is Kaja Ritchey's description +facsimileTelephoneNumber: +1 415 852-4153 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 175-1934 +title: Junior Human Resources Sales Rep +userPassword: Password1 +uid: RitcheyK +givenName: Kaja +mail: RitcheyK@fe48d37c5b2641728941b8fc035adcee.bitwarden.com +carLicense: Q8N32F +departmentNumber: 4552 +employeeType: Contract +homePhone: +1 415 878-3531 +initials: K. R. +mobile: +1 415 995-4693 +pager: +1 415 702-7642 +roomNumber: 8536 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sharline Tullius,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharline Tullius +sn: Tullius +description: This is Sharline Tullius's description +facsimileTelephoneNumber: +1 818 912-1079 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 511-2528 +title: Supreme Management Developer +userPassword: Password1 +uid: TulliusS +givenName: Sharline +mail: TulliusS@eb7bca808a2e45f58db03191eddeb5b6.bitwarden.com +carLicense: FR8XTE +departmentNumber: 4590 +employeeType: Contract +homePhone: +1 818 876-5399 +initials: S. T. +mobile: +1 818 395-2747 +pager: +1 818 696-6294 +roomNumber: 8111 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatyana Tussey +sn: Tussey +description: This is Tatyana Tussey's description +facsimileTelephoneNumber: +1 415 976-7284 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 415 327-8832 +title: Supreme Human Resources Engineer +userPassword: Password1 +uid: TusseyT +givenName: Tatyana +mail: TusseyT@1d0fa7b832b142ce82ca5e924a1754a0.bitwarden.com +carLicense: OCLLH3 +departmentNumber: 1446 +employeeType: Normal +homePhone: +1 415 614-1495 +initials: T. T. +mobile: +1 415 370-4793 +pager: +1 415 715-8576 +roomNumber: 8577 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shoeb Scales,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shoeb Scales +sn: Scales +description: This is Shoeb Scales's description +facsimileTelephoneNumber: +1 206 801-7005 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 206 463-8679 +title: Master Product Development Janitor +userPassword: Password1 +uid: ScalesS +givenName: Shoeb +mail: ScalesS@b517a2d10bbc4f42810c787fa46b3e5b.bitwarden.com +carLicense: XCUPSM +departmentNumber: 1526 +employeeType: Normal +homePhone: +1 206 161-8355 +initials: S. S. +mobile: +1 206 981-4232 +pager: +1 206 416-1502 +roomNumber: 8866 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elsie Skiclub +sn: Skiclub +description: This is Elsie Skiclub's description +facsimileTelephoneNumber: +1 206 808-6122 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 817-9263 +title: Supreme Human Resources Engineer +userPassword: Password1 +uid: SkiclubE +givenName: Elsie +mail: SkiclubE@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com +carLicense: 5BBP3S +departmentNumber: 3649 +employeeType: Normal +homePhone: +1 206 907-1603 +initials: E. S. +mobile: +1 206 825-7086 +pager: +1 206 443-5229 +roomNumber: 8965 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nissa Twarog,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nissa Twarog +sn: Twarog +description: This is Nissa Twarog's description +facsimileTelephoneNumber: +1 415 289-4608 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 770-9587 +title: Master Product Testing Artist +userPassword: Password1 +uid: TwarogN +givenName: Nissa +mail: TwarogN@c9e737b9c70b4882afff21061f6d5241.bitwarden.com +carLicense: XGLCLJ +departmentNumber: 7864 +employeeType: Contract +homePhone: +1 415 230-1377 +initials: N. T. +mobile: +1 415 674-5078 +pager: +1 415 264-5822 +roomNumber: 9629 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephanie Yarnell +sn: Yarnell +description: This is Stephanie Yarnell's description +facsimileTelephoneNumber: +1 206 494-9621 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 206 563-9277 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: YarnellS +givenName: Stephanie +mail: YarnellS@55c5ce522f7b4db190d4d14360a9a4fb.bitwarden.com +carLicense: WVLYGH +departmentNumber: 2929 +employeeType: Normal +homePhone: +1 206 808-1158 +initials: S. Y. +mobile: +1 206 336-1006 +pager: +1 206 979-3491 +roomNumber: 9951 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anabal Kusyk +sn: Kusyk +description: This is Anabal Kusyk's description +facsimileTelephoneNumber: +1 408 915-1389 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 437-1920 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: KusykA +givenName: Anabal +mail: KusykA@99efb52676a5438d8f4dfeb830e52009.bitwarden.com +carLicense: XS6ONO +departmentNumber: 8079 +employeeType: Employee +homePhone: +1 408 758-8754 +initials: A. K. +mobile: +1 408 871-5000 +pager: +1 408 224-8085 +roomNumber: 9730 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hrinfo Popel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hrinfo Popel +sn: Popel +description: This is Hrinfo Popel's description +facsimileTelephoneNumber: +1 510 108-4930 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 391-2036 +title: Associate Administrative Warrior +userPassword: Password1 +uid: PopelH +givenName: Hrinfo +mail: PopelH@9e56e8486a994bf4a874e73233ce3dcc.bitwarden.com +carLicense: 0RPVU2 +departmentNumber: 2671 +employeeType: Normal +homePhone: +1 510 732-5222 +initials: H. P. +mobile: +1 510 291-3236 +pager: +1 510 880-8748 +roomNumber: 9495 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anallese Dressler,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anallese Dressler +sn: Dressler +description: This is Anallese Dressler's description +facsimileTelephoneNumber: +1 213 252-7427 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 530-4543 +title: Chief Payroll Pinhead +userPassword: Password1 +uid: DressleA +givenName: Anallese +mail: DressleA@52c44ba7d54d47f49f97d3fd2eee96ae.bitwarden.com +carLicense: 8TDSE0 +departmentNumber: 2245 +employeeType: Normal +homePhone: +1 213 307-3495 +initials: A. D. +mobile: +1 213 641-9122 +pager: +1 213 300-3182 +roomNumber: 8525 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fredra Skillen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fredra Skillen +sn: Skillen +description: This is Fredra Skillen's description +facsimileTelephoneNumber: +1 804 335-2056 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 209-7456 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: SkillenF +givenName: Fredra +mail: SkillenF@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com +carLicense: B6PUNN +departmentNumber: 1846 +employeeType: Normal +homePhone: +1 804 700-8678 +initials: F. S. +mobile: +1 804 957-6371 +pager: +1 804 886-4408 +roomNumber: 9376 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shafique Behrens,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shafique Behrens +sn: Behrens +description: This is Shafique Behrens's description +facsimileTelephoneNumber: +1 206 984-6543 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 206 813-2413 +title: Junior Human Resources Czar +userPassword: Password1 +uid: BehrensS +givenName: Shafique +mail: BehrensS@22b38e3187c1496caaed86c5083e47f0.bitwarden.com +carLicense: 4SH0P7 +departmentNumber: 1345 +employeeType: Contract +homePhone: +1 206 418-5474 +initials: S. B. +mobile: +1 206 239-1692 +pager: +1 206 282-4633 +roomNumber: 9552 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ross Saravanos,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ross Saravanos +sn: Saravanos +description: This is Ross Saravanos's description +facsimileTelephoneNumber: +1 510 574-3172 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 993-8649 +title: Master Product Testing Evangelist +userPassword: Password1 +uid: SaravanR +givenName: Ross +mail: SaravanR@54fd227716ba449c96690a03af42c46e.bitwarden.com +carLicense: DXQRJU +departmentNumber: 2405 +employeeType: Contract +homePhone: +1 510 683-4872 +initials: R. S. +mobile: +1 510 672-7316 +pager: +1 510 882-7756 +roomNumber: 8524 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KimMinh Eierstock +sn: Eierstock +description: This is KimMinh Eierstock's description +facsimileTelephoneNumber: +1 804 170-5968 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 167-7258 +title: Supreme Product Testing Director +userPassword: Password1 +uid: EierstoK +givenName: KimMinh +mail: EierstoK@2a4ac17a2dac443185eb76e92ebd37d9.bitwarden.com +carLicense: IKQFQE +departmentNumber: 3592 +employeeType: Employee +homePhone: +1 804 563-1861 +initials: K. E. +mobile: +1 804 915-1661 +pager: +1 804 549-9948 +roomNumber: 9107 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Albertine Dorey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Albertine Dorey +sn: Dorey +description: This is Albertine Dorey's description +facsimileTelephoneNumber: +1 804 649-8789 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 125-8350 +title: Associate Product Testing Architect +userPassword: Password1 +uid: DoreyA +givenName: Albertine +mail: DoreyA@0f6317f19e074d3eacd8b09d7fafccf0.bitwarden.com +carLicense: 9G3HMD +departmentNumber: 9926 +employeeType: Employee +homePhone: +1 804 478-5635 +initials: A. D. +mobile: +1 804 607-5935 +pager: +1 804 267-1345 +roomNumber: 8034 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Junia Kun,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Junia Kun +sn: Kun +description: This is Junia Kun's description +facsimileTelephoneNumber: +1 804 619-8622 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 702-4982 +title: Chief Payroll Dictator +userPassword: Password1 +uid: KunJ +givenName: Junia +mail: KunJ@90c585b5539b419a977fd9fb6fa21443.bitwarden.com +carLicense: BQM3X3 +departmentNumber: 4142 +employeeType: Contract +homePhone: +1 804 398-8881 +initials: J. K. +mobile: +1 804 352-7012 +pager: +1 804 138-2367 +roomNumber: 8103 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cong Kalnitsky +sn: Kalnitsky +description: This is Cong Kalnitsky's description +facsimileTelephoneNumber: +1 415 399-2706 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 963-7587 +title: Master Human Resources Writer +userPassword: Password1 +uid: KalnitsC +givenName: Cong +mail: KalnitsC@98cda8dd254945c28b3bdbc5a52f9fd7.bitwarden.com +carLicense: A3I0DO +departmentNumber: 7004 +employeeType: Contract +homePhone: +1 415 607-5464 +initials: C. K. +mobile: +1 415 453-3842 +pager: +1 415 876-5506 +roomNumber: 8778 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HinWai Jauvin +sn: Jauvin +description: This is HinWai Jauvin's description +facsimileTelephoneNumber: +1 804 564-5037 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 804 667-2444 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: JauvinH +givenName: HinWai +mail: JauvinH@ab9c48ef1f7c4b329b69e3276189b579.bitwarden.com +carLicense: DYXKOG +departmentNumber: 7257 +employeeType: Employee +homePhone: +1 804 325-1795 +initials: H. J. +mobile: +1 804 714-5548 +pager: +1 804 258-5862 +roomNumber: 8457 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rey Galvin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rey Galvin +sn: Galvin +description: This is Rey Galvin's description +facsimileTelephoneNumber: +1 818 340-4896 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 818 534-3487 +title: Junior Product Testing President +userPassword: Password1 +uid: GalvinR +givenName: Rey +mail: GalvinR@660a614454f1481f8e7878f66c6cc97d.bitwarden.com +carLicense: KENI32 +departmentNumber: 4354 +employeeType: Contract +homePhone: +1 818 670-7801 +initials: R. G. +mobile: +1 818 363-2113 +pager: +1 818 285-2309 +roomNumber: 8707 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kentaro Prada,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kentaro Prada +sn: Prada +description: This is Kentaro Prada's description +facsimileTelephoneNumber: +1 510 359-5140 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 685-9341 +title: Chief Janitorial Visionary +userPassword: Password1 +uid: PradaK +givenName: Kentaro +mail: PradaK@fc6cfedbbb404c7db9497f0971d6cf66.bitwarden.com +carLicense: 9S49VQ +departmentNumber: 1326 +employeeType: Employee +homePhone: +1 510 703-2028 +initials: K. P. +mobile: +1 510 662-9352 +pager: +1 510 970-3669 +roomNumber: 9323 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Caro Roithmaier,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caro Roithmaier +sn: Roithmaier +description: This is Caro Roithmaier's description +facsimileTelephoneNumber: +1 510 768-5241 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 865-1241 +title: Chief Administrative Dictator +userPassword: Password1 +uid: RoithmaC +givenName: Caro +mail: RoithmaC@2887ebb1b5674da08665a9e53d171dc9.bitwarden.com +carLicense: LYF5S9 +departmentNumber: 1500 +employeeType: Normal +homePhone: +1 510 536-2363 +initials: C. R. +mobile: +1 510 626-8960 +pager: +1 510 283-7499 +roomNumber: 9963 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cassondra Rollin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassondra Rollin +sn: Rollin +description: This is Cassondra Rollin's description +facsimileTelephoneNumber: +1 415 765-5690 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 308-6264 +title: Junior Management Consultant +userPassword: Password1 +uid: RollinC +givenName: Cassondra +mail: RollinC@e18e42f38b9b44e7831cc8f3706030f7.bitwarden.com +carLicense: WNEDLC +departmentNumber: 2237 +employeeType: Normal +homePhone: +1 415 214-2458 +initials: C. R. +mobile: +1 415 150-2760 +pager: +1 415 522-2298 +roomNumber: 9563 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kiet Kantor,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiet Kantor +sn: Kantor +description: This is Kiet Kantor's description +facsimileTelephoneNumber: +1 213 359-2906 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 215-8893 +title: Master Product Testing Visionary +userPassword: Password1 +uid: KantorK +givenName: Kiet +mail: KantorK@717bac7424a34a139f2d3dd4cc38bede.bitwarden.com +carLicense: 3SUV4X +departmentNumber: 5687 +employeeType: Employee +homePhone: +1 213 804-7062 +initials: K. K. +mobile: +1 213 357-7936 +pager: +1 213 569-1352 +roomNumber: 9676 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kimihiko Labossiere +sn: Labossiere +description: This is Kimihiko Labossiere's description +facsimileTelephoneNumber: +1 408 292-8413 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 134-4579 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: LabossiK +givenName: Kimihiko +mail: LabossiK@ce0ca58b605f4efe987f4366b87f6460.bitwarden.com +carLicense: NHUKGQ +departmentNumber: 1261 +employeeType: Normal +homePhone: +1 408 781-3672 +initials: K. L. +mobile: +1 408 931-7712 +pager: +1 408 668-8958 +roomNumber: 9315 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gilemette Grubbs,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilemette Grubbs +sn: Grubbs +description: This is Gilemette Grubbs's description +facsimileTelephoneNumber: +1 510 418-5488 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 204-4406 +title: Associate Peons Developer +userPassword: Password1 +uid: GrubbsG +givenName: Gilemette +mail: GrubbsG@e85fdc3041fd4381ad23f20fda20358e.bitwarden.com +carLicense: XW8P6T +departmentNumber: 4151 +employeeType: Contract +homePhone: +1 510 381-7071 +initials: G. G. +mobile: +1 510 580-1068 +pager: +1 510 990-8675 +roomNumber: 8314 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyndon VanAtta +sn: VanAtta +description: This is Lyndon VanAtta's description +facsimileTelephoneNumber: +1 206 864-9146 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 735-2247 +title: Master Payroll Figurehead +userPassword: Password1 +uid: VanAttaL +givenName: Lyndon +mail: VanAttaL@984a33b6fcea4c229307cb5a753888dd.bitwarden.com +carLicense: 330CD2 +departmentNumber: 6196 +employeeType: Normal +homePhone: +1 206 555-3678 +initials: L. V. +mobile: +1 206 825-7462 +pager: +1 206 553-3700 +roomNumber: 8441 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Calida Knudsen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calida Knudsen +sn: Knudsen +description: This is Calida Knudsen's description +facsimileTelephoneNumber: +1 510 407-5763 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 662-4699 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: KnudsenC +givenName: Calida +mail: KnudsenC@907c0dba1e17448686f2f886e0e7f2be.bitwarden.com +carLicense: MK0P6W +departmentNumber: 5561 +employeeType: Normal +homePhone: +1 510 155-1663 +initials: C. K. +mobile: +1 510 958-8846 +pager: +1 510 762-8915 +roomNumber: 9031 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bendite Costelloe,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bendite Costelloe +sn: Costelloe +description: This is Bendite Costelloe's description +facsimileTelephoneNumber: +1 804 641-9504 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 522-6882 +title: Associate Product Development Dictator +userPassword: Password1 +uid: CostellB +givenName: Bendite +mail: CostellB@cbd714d753064e6b830ef812fa9487c9.bitwarden.com +carLicense: IBNHN0 +departmentNumber: 8046 +employeeType: Normal +homePhone: +1 804 558-4143 +initials: B. C. +mobile: +1 804 935-3697 +pager: +1 804 879-8121 +roomNumber: 8137 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barrie Falkenstrom +sn: Falkenstrom +description: This is Barrie Falkenstrom's description +facsimileTelephoneNumber: +1 818 361-2732 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 818 288-7401 +title: Supreme Payroll Architect +userPassword: Password1 +uid: FalkensB +givenName: Barrie +mail: FalkensB@25f3da6efbac4e1a943679d0eb7798c3.bitwarden.com +carLicense: 17GWD7 +departmentNumber: 8951 +employeeType: Normal +homePhone: +1 818 942-7772 +initials: B. F. +mobile: +1 818 513-7366 +pager: +1 818 799-9784 +roomNumber: 8254 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Desirae Tye,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desirae Tye +sn: Tye +description: This is Desirae Tye's description +facsimileTelephoneNumber: +1 804 128-4469 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 629-8383 +title: Master Administrative Punk +userPassword: Password1 +uid: TyeD +givenName: Desirae +mail: TyeD@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com +carLicense: LJTRKL +departmentNumber: 4512 +employeeType: Normal +homePhone: +1 804 544-9920 +initials: D. T. +mobile: +1 804 819-9468 +pager: +1 804 697-9363 +roomNumber: 8729 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yong Papalitskas,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yong Papalitskas +sn: Papalitskas +description: This is Yong Papalitskas's description +facsimileTelephoneNumber: +1 213 899-1421 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 213 594-3394 +title: Associate Peons Engineer +userPassword: Password1 +uid: PapalitY +givenName: Yong +mail: PapalitY@bf2f61fe09a540bebb83fd50294209be.bitwarden.com +carLicense: AHHBP1 +departmentNumber: 1039 +employeeType: Contract +homePhone: +1 213 450-8523 +initials: Y. P. +mobile: +1 213 959-8783 +pager: +1 213 201-5702 +roomNumber: 8704 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Orsola Shieff,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orsola Shieff +sn: Shieff +description: This is Orsola Shieff's description +facsimileTelephoneNumber: +1 213 859-4514 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 369-4568 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: ShieffO +givenName: Orsola +mail: ShieffO@06521bdd507441e9a09de35a0e462c1a.bitwarden.com +carLicense: 65S5JL +departmentNumber: 9449 +employeeType: Contract +homePhone: +1 213 670-3213 +initials: O. S. +mobile: +1 213 423-1204 +pager: +1 213 181-9742 +roomNumber: 9730 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Meade Lindler,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meade Lindler +sn: Lindler +description: This is Meade Lindler's description +facsimileTelephoneNumber: +1 818 493-3293 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 504-7907 +title: Master Janitorial Manager +userPassword: Password1 +uid: LindlerM +givenName: Meade +mail: LindlerM@d8b377610c7d421f8eec4a02e5fb3c9d.bitwarden.com +carLicense: G6YVMU +departmentNumber: 2360 +employeeType: Employee +homePhone: +1 818 639-4844 +initials: M. L. +mobile: +1 818 534-7302 +pager: +1 818 729-5753 +roomNumber: 9806 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Canadian Gass,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Canadian Gass +sn: Gass +description: This is Canadian Gass's description +facsimileTelephoneNumber: +1 804 371-2804 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 902-7208 +title: Chief Product Development Manager +userPassword: Password1 +uid: GassC +givenName: Canadian +mail: GassC@0ed31ccb8df34d01a0dc8eade78d6c66.bitwarden.com +carLicense: CGH9K0 +departmentNumber: 4465 +employeeType: Normal +homePhone: +1 804 289-3158 +initials: C. G. +mobile: +1 804 344-6776 +pager: +1 804 733-1129 +roomNumber: 8713 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Liping Woll,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liping Woll +sn: Woll +description: This is Liping Woll's description +facsimileTelephoneNumber: +1 408 598-1301 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 690-9415 +title: Junior Product Testing Consultant +userPassword: Password1 +uid: WollL +givenName: Liping +mail: WollL@d727402099aa4389806973df875b978a.bitwarden.com +carLicense: MU4UMF +departmentNumber: 9488 +employeeType: Contract +homePhone: +1 408 820-3076 +initials: L. W. +mobile: +1 408 470-7862 +pager: +1 408 768-9896 +roomNumber: 9359 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dwaine Oka,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dwaine Oka +sn: Oka +description: This is Dwaine Oka's description +facsimileTelephoneNumber: +1 415 741-1929 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 368-8577 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: OkaD +givenName: Dwaine +mail: OkaD@160e893e1d3b4deaa6e59bb27f3aab82.bitwarden.com +carLicense: KDS330 +departmentNumber: 8812 +employeeType: Contract +homePhone: +1 415 469-3738 +initials: D. O. +mobile: +1 415 271-9967 +pager: +1 415 121-9037 +roomNumber: 9508 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jed Colbourne,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jed Colbourne +sn: Colbourne +description: This is Jed Colbourne's description +facsimileTelephoneNumber: +1 213 519-6755 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 308-8990 +title: Junior Product Development Grunt +userPassword: Password1 +uid: ColbourJ +givenName: Jed +mail: ColbourJ@bea3df99128348b58312efa7b662b9b3.bitwarden.com +carLicense: ELHTVE +departmentNumber: 3487 +employeeType: Contract +homePhone: +1 213 604-1347 +initials: J. C. +mobile: +1 213 748-8195 +pager: +1 213 162-1724 +roomNumber: 8857 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Pammi Crucefix,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pammi Crucefix +sn: Crucefix +description: This is Pammi Crucefix's description +facsimileTelephoneNumber: +1 415 157-4248 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 227-5981 +title: Chief Management Visionary +userPassword: Password1 +uid: CrucefiP +givenName: Pammi +mail: CrucefiP@cd532997f28e491fbc9b8de411038a21.bitwarden.com +carLicense: HSNLMW +departmentNumber: 9236 +employeeType: Contract +homePhone: +1 415 307-6748 +initials: P. C. +mobile: +1 415 699-2357 +pager: +1 415 876-7200 +roomNumber: 9983 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Joelle Vardy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joelle Vardy +sn: Vardy +description: This is Joelle Vardy's description +facsimileTelephoneNumber: +1 206 312-9241 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 928-2079 +title: Junior Peons Visionary +userPassword: Password1 +uid: VardyJ +givenName: Joelle +mail: VardyJ@a59c9463263443218c36867822977d85.bitwarden.com +carLicense: 8GWXR4 +departmentNumber: 6811 +employeeType: Normal +homePhone: +1 206 228-5865 +initials: J. V. +mobile: +1 206 145-6864 +pager: +1 206 583-6696 +roomNumber: 8833 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wenona Angerer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wenona Angerer +sn: Angerer +description: This is Wenona Angerer's description +facsimileTelephoneNumber: +1 408 984-7030 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 950-9422 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: AngererW +givenName: Wenona +mail: AngererW@759d634715d84fd98852f9030d6bb1fd.bitwarden.com +carLicense: B8SAGO +departmentNumber: 2868 +employeeType: Contract +homePhone: +1 408 278-3123 +initials: W. A. +mobile: +1 408 783-5981 +pager: +1 408 411-1521 +roomNumber: 8258 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristien Kikuta +sn: Kikuta +description: This is Kristien Kikuta's description +facsimileTelephoneNumber: +1 206 690-2047 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 659-3180 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: KikutaK +givenName: Kristien +mail: KikutaK@1b4bc37ec1234668beb3a7c3f6a14e94.bitwarden.com +carLicense: 376JUD +departmentNumber: 5065 +employeeType: Contract +homePhone: +1 206 280-2708 +initials: K. K. +mobile: +1 206 488-2362 +pager: +1 206 308-4818 +roomNumber: 8018 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Arjun Passier,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arjun Passier +sn: Passier +description: This is Arjun Passier's description +facsimileTelephoneNumber: +1 206 112-3130 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 621-8062 +title: Supreme Peons Stooge +userPassword: Password1 +uid: PassierA +givenName: Arjun +mail: PassierA@d52d40abb69a4bfc85f5db20e538bb0e.bitwarden.com +carLicense: T9I5MH +departmentNumber: 3308 +employeeType: Normal +homePhone: +1 206 389-6136 +initials: A. P. +mobile: +1 206 393-4659 +pager: +1 206 698-8194 +roomNumber: 9961 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dat Asgharzadeh +sn: Asgharzadeh +description: This is Dat Asgharzadeh's description +facsimileTelephoneNumber: +1 408 945-9978 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 529-7104 +title: Associate Payroll Evangelist +userPassword: Password1 +uid: AsgharzD +givenName: Dat +mail: AsgharzD@90c585b5539b419a977fd9fb6fa21443.bitwarden.com +carLicense: OC7M1K +departmentNumber: 5860 +employeeType: Normal +homePhone: +1 408 377-7050 +initials: D. A. +mobile: +1 408 881-6075 +pager: +1 408 774-4688 +roomNumber: 9686 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viviyan Ballinger +sn: Ballinger +description: This is Viviyan Ballinger's description +facsimileTelephoneNumber: +1 408 682-7536 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 728-6528 +title: Chief Administrative Punk +userPassword: Password1 +uid: BallingV +givenName: Viviyan +mail: BallingV@781f1406846947ac8e77d85a552d214c.bitwarden.com +carLicense: YJWMD5 +departmentNumber: 6518 +employeeType: Normal +homePhone: +1 408 679-5229 +initials: V. B. +mobile: +1 408 166-8463 +pager: +1 408 829-4107 +roomNumber: 9232 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kas Breedlove,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kas Breedlove +sn: Breedlove +description: This is Kas Breedlove's description +facsimileTelephoneNumber: +1 213 378-1908 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 160-7175 +title: Supreme Administrative President +userPassword: Password1 +uid: BreedloK +givenName: Kas +mail: BreedloK@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com +carLicense: MKSKPB +departmentNumber: 5557 +employeeType: Contract +homePhone: +1 213 519-5543 +initials: K. B. +mobile: +1 213 492-1608 +pager: +1 213 159-2606 +roomNumber: 9355 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rycca Earnhardt +sn: Earnhardt +description: This is Rycca Earnhardt's description +facsimileTelephoneNumber: +1 510 944-1464 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 510 456-1709 +title: Supreme Payroll Czar +userPassword: Password1 +uid: EarnharR +givenName: Rycca +mail: EarnharR@969884d3e1084598a17f4ef0a3aedf04.bitwarden.com +carLicense: 6EESHE +departmentNumber: 3677 +employeeType: Normal +homePhone: +1 510 951-8423 +initials: R. E. +mobile: +1 510 439-6490 +pager: +1 510 521-4071 +roomNumber: 9660 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hoog Trinidad,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hoog Trinidad +sn: Trinidad +description: This is Hoog Trinidad's description +facsimileTelephoneNumber: +1 818 252-4082 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 864-6539 +title: Junior Peons Visionary +userPassword: Password1 +uid: TrinidaH +givenName: Hoog +mail: TrinidaH@1dd14c35e95e43649cc03bb29ef8e910.bitwarden.com +carLicense: Y1186N +departmentNumber: 7767 +employeeType: Contract +homePhone: +1 818 912-5555 +initials: H. T. +mobile: +1 818 912-9518 +pager: +1 818 125-6443 +roomNumber: 8728 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jesselyn Lindholm,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jesselyn Lindholm +sn: Lindholm +description: This is Jesselyn Lindholm's description +facsimileTelephoneNumber: +1 213 813-1865 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 601-5121 +title: Supreme Management Warrior +userPassword: Password1 +uid: LindholJ +givenName: Jesselyn +mail: LindholJ@fab69171647048c9ab39ecbf968a6353.bitwarden.com +carLicense: 2FCI8G +departmentNumber: 1635 +employeeType: Normal +homePhone: +1 213 640-1897 +initials: J. L. +mobile: +1 213 395-7631 +pager: +1 213 363-7951 +roomNumber: 9889 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nesta Papalitskas +sn: Papalitskas +description: This is Nesta Papalitskas's description +facsimileTelephoneNumber: +1 213 571-2162 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 213 797-4998 +title: Chief Payroll Punk +userPassword: Password1 +uid: PapalitN +givenName: Nesta +mail: PapalitN@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com +carLicense: AUMLJC +departmentNumber: 5169 +employeeType: Employee +homePhone: +1 213 614-1357 +initials: N. P. +mobile: +1 213 744-4268 +pager: +1 213 168-7990 +roomNumber: 9528 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maire Lattanzi +sn: Lattanzi +description: This is Maire Lattanzi's description +facsimileTelephoneNumber: +1 213 445-4537 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 239-8926 +title: Supreme Human Resources Director +userPassword: Password1 +uid: LattanzM +givenName: Maire +mail: LattanzM@9e5927de12b74c838a654764d2be5fec.bitwarden.com +carLicense: 5JT14C +departmentNumber: 1249 +employeeType: Contract +homePhone: +1 213 262-8639 +initials: M. L. +mobile: +1 213 162-3203 +pager: +1 213 701-2316 +roomNumber: 8469 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Claude Sylvie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claude Sylvie +sn: Sylvie +description: This is Claude Sylvie's description +facsimileTelephoneNumber: +1 213 266-3811 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 442-1451 +title: Chief Peons Consultant +userPassword: Password1 +uid: SylvieC +givenName: Claude +mail: SylvieC@aea6eb544f4d4871a97763e8c506ad64.bitwarden.com +carLicense: O18140 +departmentNumber: 4951 +employeeType: Employee +homePhone: +1 213 540-4449 +initials: C. S. +mobile: +1 213 466-2651 +pager: +1 213 180-9345 +roomNumber: 9048 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yihban Malkiewicz +sn: Malkiewicz +description: This is Yihban Malkiewicz's description +facsimileTelephoneNumber: +1 818 119-1751 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 987-6596 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: MalkiewY +givenName: Yihban +mail: MalkiewY@afdb909799524b7dbed21ce8a882a129.bitwarden.com +carLicense: MSG6RF +departmentNumber: 4249 +employeeType: Employee +homePhone: +1 818 873-3269 +initials: Y. M. +mobile: +1 818 923-7859 +pager: +1 818 146-4103 +roomNumber: 8508 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HonKong Miltenburg +sn: Miltenburg +description: This is HonKong Miltenburg's description +facsimileTelephoneNumber: +1 415 417-8600 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 940-3008 +title: Chief Payroll Czar +userPassword: Password1 +uid: MiltenbH +givenName: HonKong +mail: MiltenbH@dbff573db07a4ff3be645ffc89fde555.bitwarden.com +carLicense: C5A1P7 +departmentNumber: 2238 +employeeType: Contract +homePhone: +1 415 579-5732 +initials: H. M. +mobile: +1 415 691-5757 +pager: +1 415 947-8222 +roomNumber: 8008 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Matelda Wrigley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matelda Wrigley +sn: Wrigley +description: This is Matelda Wrigley's description +facsimileTelephoneNumber: +1 415 394-8629 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 415 638-4879 +title: Junior Product Development Director +userPassword: Password1 +uid: WrigleyM +givenName: Matelda +mail: WrigleyM@d823092534664221878b6c81b822deac.bitwarden.com +carLicense: 1GJXSB +departmentNumber: 1191 +employeeType: Normal +homePhone: +1 415 584-2808 +initials: M. W. +mobile: +1 415 838-4828 +pager: +1 415 650-5618 +roomNumber: 8197 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Emil Kaden,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emil Kaden +sn: Kaden +description: This is Emil Kaden's description +facsimileTelephoneNumber: +1 213 596-6484 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 213 464-6204 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: KadenE +givenName: Emil +mail: KadenE@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com +carLicense: 6DC8AN +departmentNumber: 4019 +employeeType: Employee +homePhone: +1 213 442-8463 +initials: E. K. +mobile: +1 213 159-1288 +pager: +1 213 238-1475 +roomNumber: 8095 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wing Miranda,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wing Miranda +sn: Miranda +description: This is Wing Miranda's description +facsimileTelephoneNumber: +1 408 642-1506 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 318-8731 +title: Associate Product Development Admin +userPassword: Password1 +uid: MirandaW +givenName: Wing +mail: MirandaW@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com +carLicense: GQERK7 +departmentNumber: 7622 +employeeType: Contract +homePhone: +1 408 795-9798 +initials: W. M. +mobile: +1 408 630-9116 +pager: +1 408 604-8581 +roomNumber: 8089 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KaiMing Kelkar +sn: Kelkar +description: This is KaiMing Kelkar's description +facsimileTelephoneNumber: +1 415 574-8673 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 821-5969 +title: Associate Administrative Madonna +userPassword: Password1 +uid: KelkarK +givenName: KaiMing +mail: KelkarK@d92310a44588497c8705ba02cb8243c4.bitwarden.com +carLicense: GN6A01 +departmentNumber: 5519 +employeeType: Employee +homePhone: +1 415 692-4859 +initials: K. K. +mobile: +1 415 449-4684 +pager: +1 415 806-3089 +roomNumber: 9587 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Goldina Kho,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Goldina Kho +sn: Kho +description: This is Goldina Kho's description +facsimileTelephoneNumber: +1 213 327-8693 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 204-6283 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: KhoG +givenName: Goldina +mail: KhoG@252ca323f23d480494044efd13f580ea.bitwarden.com +carLicense: FSL6PD +departmentNumber: 1513 +employeeType: Contract +homePhone: +1 213 785-4913 +initials: G. K. +mobile: +1 213 331-2165 +pager: +1 213 137-5193 +roomNumber: 8909 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sidoney Dugas,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sidoney Dugas +sn: Dugas +description: This is Sidoney Dugas's description +facsimileTelephoneNumber: +1 206 569-2407 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 206 393-6198 +title: Chief Administrative Warrior +userPassword: Password1 +uid: DugasS +givenName: Sidoney +mail: DugasS@ef13a1a456c847c69f1a9c739972d1e5.bitwarden.com +carLicense: 19BUMF +departmentNumber: 1876 +employeeType: Normal +homePhone: +1 206 671-8037 +initials: S. D. +mobile: +1 206 504-9678 +pager: +1 206 958-5984 +roomNumber: 8387 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Alis Tu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alis Tu +sn: Tu +description: This is Alis Tu's description +facsimileTelephoneNumber: +1 510 176-3247 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 959-5154 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: TuA +givenName: Alis +mail: TuA@812ac6eec5fc41f6927bb014fa31a1aa.bitwarden.com +carLicense: 9YUAQE +departmentNumber: 5970 +employeeType: Employee +homePhone: +1 510 849-3985 +initials: A. T. +mobile: +1 510 180-8503 +pager: +1 510 580-6073 +roomNumber: 9140 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nawa Higgins,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nawa Higgins +sn: Higgins +description: This is Nawa Higgins's description +facsimileTelephoneNumber: +1 415 685-1635 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 185-8336 +title: Associate Payroll Artist +userPassword: Password1 +uid: HigginsN +givenName: Nawa +mail: HigginsN@214ae0176652446c8744ad51330039e1.bitwarden.com +carLicense: WC1SBU +departmentNumber: 5187 +employeeType: Contract +homePhone: +1 415 923-1606 +initials: N. H. +mobile: +1 415 512-7654 +pager: +1 415 594-4853 +roomNumber: 8725 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nataly McHale,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nataly McHale +sn: McHale +description: This is Nataly McHale's description +facsimileTelephoneNumber: +1 818 292-1039 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 208-7503 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: McHaleN +givenName: Nataly +mail: McHaleN@caa3ffea53f4420d823eecb65d43ca16.bitwarden.com +carLicense: 1EVNV7 +departmentNumber: 7149 +employeeType: Normal +homePhone: +1 818 935-7118 +initials: N. M. +mobile: +1 818 246-9732 +pager: +1 818 883-6794 +roomNumber: 8472 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjy Kuryliak +sn: Kuryliak +description: This is Marjy Kuryliak's description +facsimileTelephoneNumber: +1 510 587-3810 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 510 257-3577 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: KuryliaM +givenName: Marjy +mail: KuryliaM@1e13847ccc3c4ff8a4232936d21cc7f6.bitwarden.com +carLicense: FQXX5X +departmentNumber: 1861 +employeeType: Employee +homePhone: +1 510 949-7673 +initials: M. K. +mobile: +1 510 456-2884 +pager: +1 510 566-2188 +roomNumber: 9423 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sabuson Keels,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabuson Keels +sn: Keels +description: This is Sabuson Keels's description +facsimileTelephoneNumber: +1 415 365-1607 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 599-7032 +title: Chief Administrative Director +userPassword: Password1 +uid: KeelsS +givenName: Sabuson +mail: KeelsS@7b035316d5664530a5da8e7325de2d50.bitwarden.com +carLicense: 8Y1PRI +departmentNumber: 5766 +employeeType: Contract +homePhone: +1 415 981-4317 +initials: S. K. +mobile: +1 415 205-9181 +pager: +1 415 507-7948 +roomNumber: 8819 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Katrina Caltrider,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katrina Caltrider +sn: Caltrider +description: This is Katrina Caltrider's description +facsimileTelephoneNumber: +1 213 818-1447 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 133-3816 +title: Supreme Management Engineer +userPassword: Password1 +uid: CaltridK +givenName: Katrina +mail: CaltridK@8a1c67e1f59c4e798b777fb9f5200904.bitwarden.com +carLicense: YUMDJ0 +departmentNumber: 7525 +employeeType: Employee +homePhone: +1 213 929-3223 +initials: K. C. +mobile: +1 213 534-5749 +pager: +1 213 656-1966 +roomNumber: 8949 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fwpreg Shastry +sn: Shastry +description: This is Fwpreg Shastry's description +facsimileTelephoneNumber: +1 206 236-2086 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 210-5929 +title: Chief Payroll Consultant +userPassword: Password1 +uid: ShastryF +givenName: Fwpreg +mail: ShastryF@4df07dd4fa25468db57d445d7d91ad8d.bitwarden.com +carLicense: XEAYC4 +departmentNumber: 9277 +employeeType: Normal +homePhone: +1 206 557-2783 +initials: F. S. +mobile: +1 206 359-3465 +pager: +1 206 244-5019 +roomNumber: 8607 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mukul Gaudon +sn: Gaudon +description: This is Mukul Gaudon's description +facsimileTelephoneNumber: +1 408 117-1860 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 144-4491 +title: Chief Human Resources Punk +userPassword: Password1 +uid: GaudonM +givenName: Mukul +mail: GaudonM@1738c63bcf0b4428826fa6ef01719925.bitwarden.com +carLicense: EVOSN1 +departmentNumber: 6409 +employeeType: Normal +homePhone: +1 408 534-1694 +initials: M. G. +mobile: +1 408 707-4950 +pager: +1 408 217-7901 +roomNumber: 9591 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tadayuki Jawor +sn: Jawor +description: This is Tadayuki Jawor's description +facsimileTelephoneNumber: +1 415 463-2776 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 729-1115 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: JaworT +givenName: Tadayuki +mail: JaworT@6f9e5b17880448d1a76afa2847f8b87a.bitwarden.com +carLicense: U7I39F +departmentNumber: 5587 +employeeType: Normal +homePhone: +1 415 398-5152 +initials: T. J. +mobile: +1 415 359-6788 +pager: +1 415 489-4600 +roomNumber: 9533 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Damon Bakhach,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Damon Bakhach +sn: Bakhach +description: This is Damon Bakhach's description +facsimileTelephoneNumber: +1 804 943-8099 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 512-2255 +title: Chief Peons Stooge +userPassword: Password1 +uid: BakhachD +givenName: Damon +mail: BakhachD@30b2d6e7a1b342d0a3a8e7a402acef7a.bitwarden.com +carLicense: S8UOCK +departmentNumber: 3721 +employeeType: Normal +homePhone: +1 804 657-8641 +initials: D. B. +mobile: +1 804 804-2657 +pager: +1 804 927-9745 +roomNumber: 9554 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nevein Paar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nevein Paar +sn: Paar +description: This is Nevein Paar's description +facsimileTelephoneNumber: +1 818 834-6506 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 818 739-7441 +title: Master Janitorial Architect +userPassword: Password1 +uid: PaarN +givenName: Nevein +mail: PaarN@1f90981d05564d038a0c312379adcdd2.bitwarden.com +carLicense: 5BGO2N +departmentNumber: 2377 +employeeType: Normal +homePhone: +1 818 150-9145 +initials: N. P. +mobile: +1 818 609-2938 +pager: +1 818 966-2880 +roomNumber: 8693 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eliezer Mendorf,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eliezer Mendorf +sn: Mendorf +description: This is Eliezer Mendorf's description +facsimileTelephoneNumber: +1 510 633-3769 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 510 736-6590 +title: Junior Management Manager +userPassword: Password1 +uid: MendorfE +givenName: Eliezer +mail: MendorfE@f3ba3b64f9604f3595f8d4c1f4702c4b.bitwarden.com +carLicense: T5BCBR +departmentNumber: 2317 +employeeType: Contract +homePhone: +1 510 865-5759 +initials: E. M. +mobile: +1 510 454-8109 +pager: +1 510 177-4333 +roomNumber: 9407 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Saree Salva,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saree Salva +sn: Salva +description: This is Saree Salva's description +facsimileTelephoneNumber: +1 415 490-9656 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 514-2963 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: SalvaS +givenName: Saree +mail: SalvaS@a225cef4c330412cbb98f5dd2e46ebe8.bitwarden.com +carLicense: JTHGP3 +departmentNumber: 4927 +employeeType: Normal +homePhone: +1 415 926-5549 +initials: S. S. +mobile: +1 415 597-9506 +pager: +1 415 286-7792 +roomNumber: 9638 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: FeiYin Gilchrist +sn: Gilchrist +description: This is FeiYin Gilchrist's description +facsimileTelephoneNumber: +1 510 158-4685 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 510 102-4877 +title: Chief Product Development Sales Rep +userPassword: Password1 +uid: GilchriF +givenName: FeiYin +mail: GilchriF@7b8abab8f82c407a9106010ea3eb996b.bitwarden.com +carLicense: H541QM +departmentNumber: 9253 +employeeType: Normal +homePhone: +1 510 868-2766 +initials: F. G. +mobile: +1 510 501-7980 +pager: +1 510 171-5664 +roomNumber: 8963 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mary Bayno,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mary Bayno +sn: Bayno +description: This is Mary Bayno's description +facsimileTelephoneNumber: +1 510 709-5011 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 505-6453 +title: Master Payroll Architect +userPassword: Password1 +uid: BaynoM +givenName: Mary +mail: BaynoM@8dafa8a4191b4d2aa4e275b60f4da3c2.bitwarden.com +carLicense: 06A2IH +departmentNumber: 1607 +employeeType: Employee +homePhone: +1 510 866-2969 +initials: M. B. +mobile: +1 510 443-7894 +pager: +1 510 388-6691 +roomNumber: 9994 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valentia Sherrer +sn: Sherrer +description: This is Valentia Sherrer's description +facsimileTelephoneNumber: +1 213 162-1253 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 975-7806 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: SherrerV +givenName: Valentia +mail: SherrerV@bf1cabd600c14df9900d0656b18e2dcb.bitwarden.com +carLicense: EHNQNB +departmentNumber: 9007 +employeeType: Contract +homePhone: +1 213 865-8580 +initials: V. S. +mobile: +1 213 677-9616 +pager: +1 213 745-7165 +roomNumber: 8306 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arnie McMillion,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arnie McMillion +sn: McMillion +description: This is Arnie McMillion's description +facsimileTelephoneNumber: +1 206 518-3421 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 804-3330 +title: Supreme Administrative Czar +userPassword: Password1 +uid: McMilliA +givenName: Arnie +mail: McMilliA@0700c2d0d09f457b9bacf4bb0ffad4cf.bitwarden.com +carLicense: VET1VI +departmentNumber: 2510 +employeeType: Normal +homePhone: +1 206 180-5395 +initials: A. M. +mobile: +1 206 413-7652 +pager: +1 206 279-4652 +roomNumber: 9650 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheelagh Ploof +sn: Ploof +description: This is Sheelagh Ploof's description +facsimileTelephoneNumber: +1 415 488-9071 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 754-4415 +title: Associate Payroll Pinhead +userPassword: Password1 +uid: PloofS +givenName: Sheelagh +mail: PloofS@a613f2cb592142719b25e5b4ad386bd2.bitwarden.com +carLicense: XMYXJT +departmentNumber: 1195 +employeeType: Contract +homePhone: +1 415 891-9548 +initials: S. P. +mobile: +1 415 240-7880 +pager: +1 415 163-9858 +roomNumber: 8692 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Salaidh Wery,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salaidh Wery +sn: Wery +description: This is Salaidh Wery's description +facsimileTelephoneNumber: +1 510 274-3010 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 510 424-5016 +title: Chief Human Resources Figurehead +userPassword: Password1 +uid: WeryS +givenName: Salaidh +mail: WeryS@70258a3d14294772adb31cb152ffdee6.bitwarden.com +carLicense: DPAS8T +departmentNumber: 5146 +employeeType: Employee +homePhone: +1 510 546-4765 +initials: S. W. +mobile: +1 510 723-1373 +pager: +1 510 500-4011 +roomNumber: 8946 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keelia Hoddinott +sn: Hoddinott +description: This is Keelia Hoddinott's description +facsimileTelephoneNumber: +1 804 127-2400 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 873-9537 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: HoddinoK +givenName: Keelia +mail: HoddinoK@a9638d8de81a4990b97d38b8ec08064b.bitwarden.com +carLicense: VVJLK4 +departmentNumber: 5737 +employeeType: Contract +homePhone: +1 804 559-7158 +initials: K. H. +mobile: +1 804 457-7434 +pager: +1 804 952-4550 +roomNumber: 9397 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hq Bracy,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hq Bracy +sn: Bracy +description: This is Hq Bracy's description +facsimileTelephoneNumber: +1 415 100-3998 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 731-4268 +title: Junior Product Testing Director +userPassword: Password1 +uid: BracyH +givenName: Hq +mail: BracyH@ec2712850890400a82cf449b7931685a.bitwarden.com +carLicense: O890RV +departmentNumber: 6066 +employeeType: Normal +homePhone: +1 415 895-2445 +initials: H. B. +mobile: +1 415 765-5635 +pager: +1 415 111-1633 +roomNumber: 9108 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Philippa Sanson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Philippa Sanson +sn: Sanson +description: This is Philippa Sanson's description +facsimileTelephoneNumber: +1 415 259-9207 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 415 740-5451 +title: Supreme Product Development Consultant +userPassword: Password1 +uid: SansonP +givenName: Philippa +mail: SansonP@5487b7f8a209497fbfe4cb0aaa226950.bitwarden.com +carLicense: AHEUT0 +departmentNumber: 7347 +employeeType: Normal +homePhone: +1 415 189-2751 +initials: P. S. +mobile: +1 415 394-9910 +pager: +1 415 860-1421 +roomNumber: 9328 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donn Chirachanchai +sn: Chirachanchai +description: This is Donn Chirachanchai's description +facsimileTelephoneNumber: +1 206 484-1056 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 622-9763 +title: Supreme Product Development Admin +userPassword: Password1 +uid: ChirachD +givenName: Donn +mail: ChirachD@c385ba2c8b694dba82e626dc336023e5.bitwarden.com +carLicense: M8NK5W +departmentNumber: 3554 +employeeType: Contract +homePhone: +1 206 583-3016 +initials: D. C. +mobile: +1 206 906-3271 +pager: +1 206 883-8496 +roomNumber: 8843 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Karrah Kielstra,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karrah Kielstra +sn: Kielstra +description: This is Karrah Kielstra's description +facsimileTelephoneNumber: +1 804 701-5481 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 804 449-1109 +title: Master Management Technician +userPassword: Password1 +uid: KielstrK +givenName: Karrah +mail: KielstrK@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com +carLicense: M3NS90 +departmentNumber: 4325 +employeeType: Employee +homePhone: +1 804 877-5683 +initials: K. K. +mobile: +1 804 708-4111 +pager: +1 804 888-4791 +roomNumber: 9520 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Saloma Brauer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saloma Brauer +sn: Brauer +description: This is Saloma Brauer's description +facsimileTelephoneNumber: +1 818 335-7080 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 846-8265 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: BrauerS +givenName: Saloma +mail: BrauerS@570987c9633d4a6fa09773cb5695f8f5.bitwarden.com +carLicense: N84NXG +departmentNumber: 5585 +employeeType: Contract +homePhone: +1 818 284-7734 +initials: S. B. +mobile: +1 818 467-2988 +pager: +1 818 723-5906 +roomNumber: 8439 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ezmeralda Boreham +sn: Boreham +description: This is Ezmeralda Boreham's description +facsimileTelephoneNumber: +1 408 347-4988 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 408 938-9825 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: BorehamE +givenName: Ezmeralda +mail: BorehamE@e02ff45a3d1d4535aaac64a1cea6a68b.bitwarden.com +carLicense: 0DA8XD +departmentNumber: 5662 +employeeType: Employee +homePhone: +1 408 990-1403 +initials: E. B. +mobile: +1 408 924-7821 +pager: +1 408 559-9361 +roomNumber: 8019 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cheuk Mayr,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cheuk Mayr +sn: Mayr +description: This is Cheuk Mayr's description +facsimileTelephoneNumber: +1 510 680-4060 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 570-4183 +title: Chief Management Assistant +userPassword: Password1 +uid: MayrC +givenName: Cheuk +mail: MayrC@f7890076c6f84028b85e2b19409fa5f9.bitwarden.com +carLicense: EKXHKR +departmentNumber: 1362 +employeeType: Employee +homePhone: +1 510 739-1267 +initials: C. M. +mobile: +1 510 634-9507 +pager: +1 510 716-1227 +roomNumber: 9285 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Verene Misslitz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Verene Misslitz +sn: Misslitz +description: This is Verene Misslitz's description +facsimileTelephoneNumber: +1 213 754-6651 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 276-9017 +title: Junior Human Resources Sales Rep +userPassword: Password1 +uid: MisslitV +givenName: Verene +mail: MisslitV@d6cd96cc69964504b58689aca6bae5e4.bitwarden.com +carLicense: TGP6TJ +departmentNumber: 1356 +employeeType: Contract +homePhone: +1 213 347-3798 +initials: V. M. +mobile: +1 213 314-5465 +pager: +1 213 335-9332 +roomNumber: 8785 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Doe Codack,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doe Codack +sn: Codack +description: This is Doe Codack's description +facsimileTelephoneNumber: +1 804 480-4873 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 804 430-8033 +title: Associate Janitorial Manager +userPassword: Password1 +uid: CodackD +givenName: Doe +mail: CodackD@e0d7cf99a3294f3e89a0d61f128890ba.bitwarden.com +carLicense: 4SRKNN +departmentNumber: 5875 +employeeType: Contract +homePhone: +1 804 945-6742 +initials: D. C. +mobile: +1 804 332-8155 +pager: +1 804 279-3047 +roomNumber: 9076 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lowell Seufert,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lowell Seufert +sn: Seufert +description: This is Lowell Seufert's description +facsimileTelephoneNumber: +1 510 239-3883 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 510 136-3466 +title: Chief Administrative Assistant +userPassword: Password1 +uid: SeufertL +givenName: Lowell +mail: SeufertL@2701f21728624e23b32e7e4a717079a5.bitwarden.com +carLicense: BOPLL4 +departmentNumber: 8461 +employeeType: Contract +homePhone: +1 510 781-9497 +initials: L. S. +mobile: +1 510 675-7415 +pager: +1 510 689-1905 +roomNumber: 8364 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Willa Unkefer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willa Unkefer +sn: Unkefer +description: This is Willa Unkefer's description +facsimileTelephoneNumber: +1 818 376-7343 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 591-8012 +title: Master Peons Architect +userPassword: Password1 +uid: UnkeferW +givenName: Willa +mail: UnkeferW@a9c3295ea2f347439f03376e321e4733.bitwarden.com +carLicense: CHMPX2 +departmentNumber: 1333 +employeeType: Employee +homePhone: +1 818 132-5144 +initials: W. U. +mobile: +1 818 466-4219 +pager: +1 818 899-7391 +roomNumber: 9831 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bep Wassel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bep Wassel +sn: Wassel +description: This is Bep Wassel's description +facsimileTelephoneNumber: +1 206 328-4653 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 793-1201 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: WasselB +givenName: Bep +mail: WasselB@a40a845ea1cc4e22b719786373ec54be.bitwarden.com +carLicense: 7ISQX3 +departmentNumber: 1914 +employeeType: Contract +homePhone: +1 206 490-3404 +initials: B. W. +mobile: +1 206 973-9761 +pager: +1 206 396-4966 +roomNumber: 8711 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nyssa Trittler +sn: Trittler +description: This is Nyssa Trittler's description +facsimileTelephoneNumber: +1 804 916-1417 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 885-2516 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: TrittleN +givenName: Nyssa +mail: TrittleN@3e7e926538044b62b52b536bb87c0044.bitwarden.com +carLicense: 8NTPL0 +departmentNumber: 8949 +employeeType: Contract +homePhone: +1 804 973-1814 +initials: N. T. +mobile: +1 804 330-6993 +pager: +1 804 190-5448 +roomNumber: 9074 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janet Pagliarulo +sn: Pagliarulo +description: This is Janet Pagliarulo's description +facsimileTelephoneNumber: +1 415 474-3663 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 599-4216 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: PagliarJ +givenName: Janet +mail: PagliarJ@66d6a653ea384626bd4c52723439804a.bitwarden.com +carLicense: HTQX4M +departmentNumber: 9760 +employeeType: Contract +homePhone: +1 415 516-1990 +initials: J. P. +mobile: +1 415 402-1284 +pager: +1 415 974-4749 +roomNumber: 8598 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hollyanne Goupil +sn: Goupil +description: This is Hollyanne Goupil's description +facsimileTelephoneNumber: +1 510 628-6347 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 102-6764 +title: Master Human Resources Manager +userPassword: Password1 +uid: GoupilH +givenName: Hollyanne +mail: GoupilH@361f4dedfe9a4aada39bf693c8c1bc40.bitwarden.com +carLicense: 2WQE2J +departmentNumber: 9318 +employeeType: Normal +homePhone: +1 510 628-2299 +initials: H. G. +mobile: +1 510 379-9322 +pager: +1 510 189-6738 +roomNumber: 8521 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Yuri McCullen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yuri McCullen +sn: McCullen +description: This is Yuri McCullen's description +facsimileTelephoneNumber: +1 408 877-6883 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 875-5340 +title: Master Administrative Fellow +userPassword: Password1 +uid: McCulleY +givenName: Yuri +mail: McCulleY@3fc70e948ed143488b3a65dc900da1f7.bitwarden.com +carLicense: JSGQ65 +departmentNumber: 5301 +employeeType: Normal +homePhone: +1 408 845-8756 +initials: Y. M. +mobile: +1 408 950-7222 +pager: +1 408 567-1152 +roomNumber: 9159 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Genevieve Licata,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Genevieve Licata +sn: Licata +description: This is Genevieve Licata's description +facsimileTelephoneNumber: +1 408 860-2073 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 408 981-2810 +title: Chief Product Testing Director +userPassword: Password1 +uid: LicataG +givenName: Genevieve +mail: LicataG@29c4d99a2e804a9e9c7906925415c847.bitwarden.com +carLicense: XH2RAO +departmentNumber: 6812 +employeeType: Contract +homePhone: +1 408 751-9422 +initials: G. L. +mobile: +1 408 931-5841 +pager: +1 408 621-7770 +roomNumber: 9644 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Iseabal Pokrifcak +sn: Pokrifcak +description: This is Iseabal Pokrifcak's description +facsimileTelephoneNumber: +1 213 978-8901 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 980-9557 +title: Chief Human Resources Architect +userPassword: Password1 +uid: PokrifcI +givenName: Iseabal +mail: PokrifcI@f0da7bbf51f0472cbdc26a3d196ad9f7.bitwarden.com +carLicense: HWVUVC +departmentNumber: 4294 +employeeType: Employee +homePhone: +1 213 881-7058 +initials: I. P. +mobile: +1 213 849-7137 +pager: +1 213 878-9198 +roomNumber: 8935 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stacia Mersch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacia Mersch +sn: Mersch +description: This is Stacia Mersch's description +facsimileTelephoneNumber: +1 408 525-6183 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 858-2282 +title: Master Management Madonna +userPassword: Password1 +uid: MerschS +givenName: Stacia +mail: MerschS@ce6ea378c27b45efb4f43990327ef994.bitwarden.com +carLicense: YXLXHM +departmentNumber: 3275 +employeeType: Contract +homePhone: +1 408 557-7593 +initials: S. M. +mobile: +1 408 270-1997 +pager: +1 408 409-4123 +roomNumber: 9061 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Opal Tatemichi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opal Tatemichi +sn: Tatemichi +description: This is Opal Tatemichi's description +facsimileTelephoneNumber: +1 415 839-5018 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 508-7756 +title: Associate Administrative Mascot +userPassword: Password1 +uid: TatemicO +givenName: Opal +mail: TatemicO@655d3e1ee97a47bbb182f0f8f120b20e.bitwarden.com +carLicense: 254UV3 +departmentNumber: 7746 +employeeType: Contract +homePhone: +1 415 113-2952 +initials: O. T. +mobile: +1 415 363-4172 +pager: +1 415 130-1337 +roomNumber: 8463 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nash Hemphill,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nash Hemphill +sn: Hemphill +description: This is Nash Hemphill's description +facsimileTelephoneNumber: +1 206 990-3669 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 922-6420 +title: Chief Administrative Stooge +userPassword: Password1 +uid: HemphilN +givenName: Nash +mail: HemphilN@d457e1580197417888cc4a9c93599471.bitwarden.com +carLicense: MQRK1D +departmentNumber: 6396 +employeeType: Employee +homePhone: +1 206 203-6468 +initials: N. H. +mobile: +1 206 363-7205 +pager: +1 206 723-1985 +roomNumber: 8737 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Amir McKillop,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amir McKillop +sn: McKillop +description: This is Amir McKillop's description +facsimileTelephoneNumber: +1 213 255-3553 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 465-6277 +title: Chief Administrative President +userPassword: Password1 +uid: McKilloA +givenName: Amir +mail: McKilloA@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com +carLicense: CUKSHJ +departmentNumber: 4693 +employeeType: Normal +homePhone: +1 213 535-1128 +initials: A. M. +mobile: +1 213 411-6576 +pager: +1 213 696-7393 +roomNumber: 8127 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nam Nentwich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nam Nentwich +sn: Nentwich +description: This is Nam Nentwich's description +facsimileTelephoneNumber: +1 510 847-3401 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 510 391-1167 +title: Chief Product Testing Engineer +userPassword: Password1 +uid: NentwicN +givenName: Nam +mail: NentwicN@fa1c0131e1b849f6a92c26986c36bbfc.bitwarden.com +carLicense: AUY01B +departmentNumber: 8319 +employeeType: Contract +homePhone: +1 510 790-9825 +initials: N. N. +mobile: +1 510 913-9611 +pager: +1 510 858-1900 +roomNumber: 8197 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabrina Lambregts +sn: Lambregts +description: This is Sabrina Lambregts's description +facsimileTelephoneNumber: +1 510 862-5175 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 273-8472 +title: Master Payroll Architect +userPassword: Password1 +uid: LambregS +givenName: Sabrina +mail: LambregS@93250e1458e9462fb7830f342f899a75.bitwarden.com +carLicense: 8SW4RD +departmentNumber: 5896 +employeeType: Contract +homePhone: +1 510 717-7290 +initials: S. L. +mobile: +1 510 795-2605 +pager: +1 510 359-9642 +roomNumber: 8794 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Arvin Gourley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arvin Gourley +sn: Gourley +description: This is Arvin Gourley's description +facsimileTelephoneNumber: +1 804 386-3621 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 208-5879 +title: Chief Product Testing Madonna +userPassword: Password1 +uid: GourleyA +givenName: Arvin +mail: GourleyA@87d1f4abbb344e5db58980701a5ab736.bitwarden.com +carLicense: J2YN1D +departmentNumber: 4234 +employeeType: Contract +homePhone: +1 804 675-3594 +initials: A. G. +mobile: +1 804 955-5478 +pager: +1 804 984-2033 +roomNumber: 8566 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Amara Wichers,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amara Wichers +sn: Wichers +description: This is Amara Wichers's description +facsimileTelephoneNumber: +1 804 544-1398 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 804 221-5453 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: WichersA +givenName: Amara +mail: WichersA@6b9e684fa59647e280b75516ef2c9723.bitwarden.com +carLicense: 3VXSHP +departmentNumber: 1365 +employeeType: Contract +homePhone: +1 804 397-4745 +initials: A. W. +mobile: +1 804 745-2474 +pager: +1 804 534-1255 +roomNumber: 8049 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ellen Dada,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellen Dada +sn: Dada +description: This is Ellen Dada's description +facsimileTelephoneNumber: +1 818 941-3954 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 818 328-5247 +title: Chief Payroll Warrior +userPassword: Password1 +uid: DadaE +givenName: Ellen +mail: DadaE@db38fb215fc94ffcb346567c9526cb3b.bitwarden.com +carLicense: 4CH97O +departmentNumber: 6635 +employeeType: Employee +homePhone: +1 818 350-8697 +initials: E. D. +mobile: +1 818 243-8692 +pager: +1 818 742-9108 +roomNumber: 9427 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gunilla Katz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gunilla Katz +sn: Katz +description: This is Gunilla Katz's description +facsimileTelephoneNumber: +1 818 255-3756 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 818 687-3001 +title: Junior Administrative Janitor +userPassword: Password1 +uid: KatzG +givenName: Gunilla +mail: KatzG@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com +carLicense: XXJFDP +departmentNumber: 6545 +employeeType: Employee +homePhone: +1 818 968-8956 +initials: G. K. +mobile: +1 818 844-9735 +pager: +1 818 210-4380 +roomNumber: 9284 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Core Herrick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Core Herrick +sn: Herrick +description: This is Core Herrick's description +facsimileTelephoneNumber: +1 415 774-6772 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 188-6637 +title: Chief Product Testing Figurehead +userPassword: Password1 +uid: HerrickC +givenName: Core +mail: HerrickC@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com +carLicense: T5R0SF +departmentNumber: 6771 +employeeType: Normal +homePhone: +1 415 787-8789 +initials: C. H. +mobile: +1 415 574-4816 +pager: +1 415 559-5350 +roomNumber: 8464 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jack Predon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jack Predon +sn: Predon +description: This is Jack Predon's description +facsimileTelephoneNumber: +1 408 382-3430 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 637-3384 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: PredonJ +givenName: Jack +mail: PredonJ@5278466bedb347c588c1bbec6486c3cf.bitwarden.com +carLicense: WB5XG0 +departmentNumber: 1103 +employeeType: Normal +homePhone: +1 408 489-8879 +initials: J. P. +mobile: +1 408 247-3844 +pager: +1 408 326-5208 +roomNumber: 9441 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marc Pestill,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marc Pestill +sn: Pestill +description: This is Marc Pestill's description +facsimileTelephoneNumber: +1 213 107-8390 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 706-6375 +title: Chief Janitorial Punk +userPassword: Password1 +uid: PestillM +givenName: Marc +mail: PestillM@5437f19907594de59138cb373ea3e4a8.bitwarden.com +carLicense: O2GFVH +departmentNumber: 8439 +employeeType: Contract +homePhone: +1 213 736-2775 +initials: M. P. +mobile: +1 213 521-8166 +pager: +1 213 368-5411 +roomNumber: 8598 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eadie Jamensky,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eadie Jamensky +sn: Jamensky +description: This is Eadie Jamensky's description +facsimileTelephoneNumber: +1 510 715-6319 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 413-5923 +title: Junior Peons Manager +userPassword: Password1 +uid: JamenskE +givenName: Eadie +mail: JamenskE@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com +carLicense: GLX2L2 +departmentNumber: 6561 +employeeType: Normal +homePhone: +1 510 159-1462 +initials: E. J. +mobile: +1 510 239-1529 +pager: +1 510 100-9083 +roomNumber: 9692 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Corenda MacLaren,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corenda MacLaren +sn: MacLaren +description: This is Corenda MacLaren's description +facsimileTelephoneNumber: +1 213 691-8673 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 643-5112 +title: Supreme Management Stooge +userPassword: Password1 +uid: MacLareC +givenName: Corenda +mail: MacLareC@ca967230de2944e896318dde6183d882.bitwarden.com +carLicense: PUYDP8 +departmentNumber: 4523 +employeeType: Employee +homePhone: +1 213 993-3880 +initials: C. M. +mobile: +1 213 806-6288 +pager: +1 213 187-5338 +roomNumber: 8688 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Duy Starnes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duy Starnes +sn: Starnes +description: This is Duy Starnes's description +facsimileTelephoneNumber: +1 510 136-7840 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 989-3655 +title: Junior Management Architect +userPassword: Password1 +uid: StarnesD +givenName: Duy +mail: StarnesD@b696b2494a974f2a9374a73c6b7ac6f1.bitwarden.com +carLicense: 5YFOAH +departmentNumber: 1559 +employeeType: Contract +homePhone: +1 510 996-6011 +initials: D. S. +mobile: +1 510 752-4494 +pager: +1 510 465-8863 +roomNumber: 9371 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Milan Retallack,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milan Retallack +sn: Retallack +description: This is Milan Retallack's description +facsimileTelephoneNumber: +1 213 268-2813 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 213 980-1800 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: RetallaM +givenName: Milan +mail: RetallaM@bcfffdb8a9854486adad4015dba2f146.bitwarden.com +carLicense: R58UXD +departmentNumber: 4794 +employeeType: Employee +homePhone: +1 213 815-4739 +initials: M. R. +mobile: +1 213 384-3858 +pager: +1 213 805-9667 +roomNumber: 9705 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zarella Sauck,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zarella Sauck +sn: Sauck +description: This is Zarella Sauck's description +facsimileTelephoneNumber: +1 804 473-3965 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 673-2763 +title: Chief Product Testing Janitor +userPassword: Password1 +uid: SauckZ +givenName: Zarella +mail: SauckZ@f7f2463b85cb4147b2377a9dbe20738b.bitwarden.com +carLicense: 24ULYO +departmentNumber: 1565 +employeeType: Normal +homePhone: +1 804 230-1876 +initials: Z. S. +mobile: +1 804 448-6341 +pager: +1 804 254-8381 +roomNumber: 8545 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joachim Vonderscher +sn: Vonderscher +description: This is Joachim Vonderscher's description +facsimileTelephoneNumber: +1 818 387-4363 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 818 229-2592 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: VondersJ +givenName: Joachim +mail: VondersJ@ec9d8600fc36414ebc5e7beb3923c8ff.bitwarden.com +carLicense: 4H5016 +departmentNumber: 6155 +employeeType: Contract +homePhone: +1 818 149-9756 +initials: J. V. +mobile: +1 818 523-7159 +pager: +1 818 990-7800 +roomNumber: 8516 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nathalia Testsds,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nathalia Testsds +sn: Testsds +description: This is Nathalia Testsds's description +facsimileTelephoneNumber: +1 213 417-9543 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 968-8041 +title: Junior Administrative Warrior +userPassword: Password1 +uid: TestsdsN +givenName: Nathalia +mail: TestsdsN@fc1572b2278f4aeabefffc267baf4272.bitwarden.com +carLicense: UQEMJS +departmentNumber: 1505 +employeeType: Contract +homePhone: +1 213 945-8771 +initials: N. T. +mobile: +1 213 119-5246 +pager: +1 213 694-5777 +roomNumber: 8235 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Florette Nttest,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florette Nttest +sn: Nttest +description: This is Florette Nttest's description +facsimileTelephoneNumber: +1 818 206-1819 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 628-6119 +title: Junior Management Madonna +userPassword: Password1 +uid: NttestF +givenName: Florette +mail: NttestF@777f3fb506bf4a578c7c26472bf8bb1e.bitwarden.com +carLicense: QLL129 +departmentNumber: 3551 +employeeType: Contract +homePhone: +1 818 917-7181 +initials: F. N. +mobile: +1 818 848-1649 +pager: +1 818 679-8119 +roomNumber: 8040 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dari OConnor,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dari OConnor +sn: OConnor +description: This is Dari OConnor's description +facsimileTelephoneNumber: +1 510 760-4003 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 814-6491 +title: Associate Janitorial Czar +userPassword: Password1 +uid: OConnorD +givenName: Dari +mail: OConnorD@1a7bf48aaf63422bbc1338aad6a39f92.bitwarden.com +carLicense: P652N3 +departmentNumber: 4095 +employeeType: Employee +homePhone: +1 510 634-1157 +initials: D. O. +mobile: +1 510 428-6129 +pager: +1 510 399-7277 +roomNumber: 8876 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tracie Jenner,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tracie Jenner +sn: Jenner +description: This is Tracie Jenner's description +facsimileTelephoneNumber: +1 206 799-9019 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 813-4106 +title: Master Product Testing Grunt +userPassword: Password1 +uid: JennerT +givenName: Tracie +mail: JennerT@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com +carLicense: 4CAXXX +departmentNumber: 6483 +employeeType: Employee +homePhone: +1 206 155-1293 +initials: T. J. +mobile: +1 206 518-9777 +pager: +1 206 971-6843 +roomNumber: 9908 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mot Stirling,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mot Stirling +sn: Stirling +description: This is Mot Stirling's description +facsimileTelephoneNumber: +1 818 169-8237 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 560-2406 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: StirlinM +givenName: Mot +mail: StirlinM@faec862307e2490ab9310236bae87643.bitwarden.com +carLicense: 12DGHW +departmentNumber: 3211 +employeeType: Employee +homePhone: +1 818 615-5881 +initials: M. S. +mobile: +1 818 210-1064 +pager: +1 818 979-5436 +roomNumber: 8823 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Yodha Bui,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yodha Bui +sn: Bui +description: This is Yodha Bui's description +facsimileTelephoneNumber: +1 206 208-8053 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 607-1557 +title: Master Payroll Admin +userPassword: Password1 +uid: BuiY +givenName: Yodha +mail: BuiY@72665e46d4e14e57b1e63fc562993f3b.bitwarden.com +carLicense: NKVO14 +departmentNumber: 1625 +employeeType: Contract +homePhone: +1 206 745-2511 +initials: Y. B. +mobile: +1 206 116-4017 +pager: +1 206 485-3034 +roomNumber: 8350 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Clifton Murphyking,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clifton Murphyking +sn: Murphyking +description: This is Clifton Murphyking's description +facsimileTelephoneNumber: +1 206 871-9634 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 206 496-5754 +title: Junior Product Development Dictator +userPassword: Password1 +uid: MurphykC +givenName: Clifton +mail: MurphykC@2d00b4c5d94943aaab567276a570648e.bitwarden.com +carLicense: TQBJDT +departmentNumber: 7239 +employeeType: Contract +homePhone: +1 206 405-6144 +initials: C. M. +mobile: +1 206 570-5362 +pager: +1 206 950-3843 +roomNumber: 9873 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=HonKong Drago,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HonKong Drago +sn: Drago +description: This is HonKong Drago's description +facsimileTelephoneNumber: +1 206 122-4450 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 307-6626 +title: Associate Product Development Pinhead +userPassword: Password1 +uid: DragoH +givenName: HonKong +mail: DragoH@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com +carLicense: SSJOBI +departmentNumber: 6757 +employeeType: Normal +homePhone: +1 206 872-8333 +initials: H. D. +mobile: +1 206 757-9413 +pager: +1 206 806-6892 +roomNumber: 9309 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Greer Popowicz,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greer Popowicz +sn: Popowicz +description: This is Greer Popowicz's description +facsimileTelephoneNumber: +1 206 657-1253 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 845-1792 +title: Chief Management Pinhead +userPassword: Password1 +uid: PopowicG +givenName: Greer +mail: PopowicG@dfaff98f73b34c5995272b067ac045a0.bitwarden.com +carLicense: UA8CX1 +departmentNumber: 6452 +employeeType: Contract +homePhone: +1 206 779-6296 +initials: G. P. +mobile: +1 206 456-7822 +pager: +1 206 858-3915 +roomNumber: 9753 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Asia Schuette,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Asia Schuette +sn: Schuette +description: This is Asia Schuette's description +facsimileTelephoneNumber: +1 408 783-9610 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 408 744-7587 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: SchuettA +givenName: Asia +mail: SchuettA@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com +carLicense: NRIQSP +departmentNumber: 8552 +employeeType: Contract +homePhone: +1 408 838-1907 +initials: A. S. +mobile: +1 408 389-6896 +pager: +1 408 895-3964 +roomNumber: 9474 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Barbette Stotz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbette Stotz +sn: Stotz +description: This is Barbette Stotz's description +facsimileTelephoneNumber: +1 415 694-5396 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 415 499-5069 +title: Associate Peons Grunt +userPassword: Password1 +uid: StotzB +givenName: Barbette +mail: StotzB@cdcc0b3184ae42c79dae92d7659e36db.bitwarden.com +carLicense: 58R7CT +departmentNumber: 8377 +employeeType: Normal +homePhone: +1 415 972-8133 +initials: B. S. +mobile: +1 415 363-9194 +pager: +1 415 447-9962 +roomNumber: 9217 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Joyann Lun,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joyann Lun +sn: Lun +description: This is Joyann Lun's description +facsimileTelephoneNumber: +1 408 336-9252 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 736-9982 +title: Master Peons Artist +userPassword: Password1 +uid: LunJ +givenName: Joyann +mail: LunJ@0efc975bd4a14addb872414f9ef80752.bitwarden.com +carLicense: C42IF7 +departmentNumber: 5527 +employeeType: Contract +homePhone: +1 408 830-7489 +initials: J. L. +mobile: +1 408 175-8972 +pager: +1 408 498-5080 +roomNumber: 9176 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Caz Brunato,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caz Brunato +sn: Brunato +description: This is Caz Brunato's description +facsimileTelephoneNumber: +1 818 110-7069 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 700-8955 +title: Master Payroll Punk +userPassword: Password1 +uid: BrunatoC +givenName: Caz +mail: BrunatoC@d3e5ff3d0e59404589f0f6d57f8f6108.bitwarden.com +carLicense: 9FUO88 +departmentNumber: 9926 +employeeType: Contract +homePhone: +1 818 385-1073 +initials: C. B. +mobile: +1 818 871-8353 +pager: +1 818 229-1876 +roomNumber: 8314 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sorin Dipper,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sorin Dipper +sn: Dipper +description: This is Sorin Dipper's description +facsimileTelephoneNumber: +1 415 429-9189 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 415 560-1482 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: DipperS +givenName: Sorin +mail: DipperS@f87927b66c3847ba8ab3947482034e19.bitwarden.com +carLicense: QF38VI +departmentNumber: 8569 +employeeType: Employee +homePhone: +1 415 272-5336 +initials: S. D. +mobile: +1 415 214-7473 +pager: +1 415 979-2320 +roomNumber: 9171 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bucklin OKarina,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bucklin OKarina +sn: OKarina +description: This is Bucklin OKarina's description +facsimileTelephoneNumber: +1 415 987-8856 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 854-3299 +title: Master Product Development President +userPassword: Password1 +uid: OKarinaB +givenName: Bucklin +mail: OKarinaB@f05231e4b8d74927939d87b64623ee43.bitwarden.com +carLicense: 1JV8A3 +departmentNumber: 1071 +employeeType: Normal +homePhone: +1 415 548-7608 +initials: B. O. +mobile: +1 415 896-3659 +pager: +1 415 616-5800 +roomNumber: 9404 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tuan Pannell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tuan Pannell +sn: Pannell +description: This is Tuan Pannell's description +facsimileTelephoneNumber: +1 213 248-1194 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 251-1356 +title: Chief Administrative Writer +userPassword: Password1 +uid: PannellT +givenName: Tuan +mail: PannellT@4afa8343c8fe499bbf69af9cea3fa9e0.bitwarden.com +carLicense: DC9HO6 +departmentNumber: 5921 +employeeType: Normal +homePhone: +1 213 611-9232 +initials: T. P. +mobile: +1 213 922-6923 +pager: +1 213 304-3587 +roomNumber: 8544 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Neda Reece,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neda Reece +sn: Reece +description: This is Neda Reece's description +facsimileTelephoneNumber: +1 804 584-4565 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 146-8439 +title: Associate Product Development Admin +userPassword: Password1 +uid: ReeceN +givenName: Neda +mail: ReeceN@57acdd50faae453481ecda7f42cf245e.bitwarden.com +carLicense: RUI0JD +departmentNumber: 5418 +employeeType: Employee +homePhone: +1 804 797-7894 +initials: N. R. +mobile: +1 804 652-1217 +pager: +1 804 174-1878 +roomNumber: 9736 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roanne Vesterdal +sn: Vesterdal +description: This is Roanne Vesterdal's description +facsimileTelephoneNumber: +1 510 208-5683 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 747-2251 +title: Supreme Payroll Fellow +userPassword: Password1 +uid: VesterdR +givenName: Roanne +mail: VesterdR@0235e1ba64944a1fa5be17cd97e92630.bitwarden.com +carLicense: 5B896P +departmentNumber: 2344 +employeeType: Employee +homePhone: +1 510 972-9819 +initials: R. V. +mobile: +1 510 827-4935 +pager: +1 510 280-2269 +roomNumber: 9571 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Audrey US,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Audrey US +sn: US +description: This is Audrey US's description +facsimileTelephoneNumber: +1 206 925-7145 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 637-5606 +title: Supreme Product Testing Vice President +userPassword: Password1 +uid: USA +givenName: Audrey +mail: USA@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com +carLicense: YR7XVG +departmentNumber: 2329 +employeeType: Normal +homePhone: +1 206 664-7717 +initials: A. U. +mobile: +1 206 557-7460 +pager: +1 206 821-9642 +roomNumber: 9291 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eugine Dobbins +sn: Dobbins +description: This is Eugine Dobbins's description +facsimileTelephoneNumber: +1 408 490-5720 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 408 108-9490 +title: Master Janitorial Dictator +userPassword: Password1 +uid: DobbinsE +givenName: Eugine +mail: DobbinsE@c33db3660c404fae86e9ef95373e3964.bitwarden.com +carLicense: JOPTRW +departmentNumber: 7905 +employeeType: Employee +homePhone: +1 408 391-3413 +initials: E. D. +mobile: +1 408 885-5653 +pager: +1 408 342-6672 +roomNumber: 8147 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dona Sudan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dona Sudan +sn: Sudan +description: This is Dona Sudan's description +facsimileTelephoneNumber: +1 818 624-6725 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 961-1774 +title: Junior Product Testing Architect +userPassword: Password1 +uid: SudanD +givenName: Dona +mail: SudanD@43baa07ec4304f3499ca8d6cf3d382fe.bitwarden.com +carLicense: DT6DYP +departmentNumber: 3212 +employeeType: Contract +homePhone: +1 818 325-7594 +initials: D. S. +mobile: +1 818 624-5464 +pager: +1 818 166-4098 +roomNumber: 9782 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mahendra Puett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mahendra Puett +sn: Puett +description: This is Mahendra Puett's description +facsimileTelephoneNumber: +1 415 242-9592 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 465-3791 +title: Master Payroll Evangelist +userPassword: Password1 +uid: PuettM +givenName: Mahendra +mail: PuettM@96c638a02d194cffbc921eccd66faa77.bitwarden.com +carLicense: W1UFU5 +departmentNumber: 2789 +employeeType: Employee +homePhone: +1 415 341-2636 +initials: M. P. +mobile: +1 415 196-9544 +pager: +1 415 660-9696 +roomNumber: 8191 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Evangelia Kusan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evangelia Kusan +sn: Kusan +description: This is Evangelia Kusan's description +facsimileTelephoneNumber: +1 213 331-9805 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 547-3046 +title: Chief Peons Assistant +userPassword: Password1 +uid: KusanE +givenName: Evangelia +mail: KusanE@3af5ab8595d4472c82d36aaeac8a3002.bitwarden.com +carLicense: 8FIW05 +departmentNumber: 1262 +employeeType: Normal +homePhone: +1 213 116-6927 +initials: E. K. +mobile: +1 213 942-1910 +pager: +1 213 780-3847 +roomNumber: 9298 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mead Bielan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mead Bielan +sn: Bielan +description: This is Mead Bielan's description +facsimileTelephoneNumber: +1 415 897-1447 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 377-5506 +title: Associate Payroll Artist +userPassword: Password1 +uid: BielanM +givenName: Mead +mail: BielanM@bdc3cbcec8a2447188118ae5b601e009.bitwarden.com +carLicense: UKIBCQ +departmentNumber: 5147 +employeeType: Contract +homePhone: +1 415 292-8173 +initials: M. B. +mobile: +1 415 357-5512 +pager: +1 415 473-7077 +roomNumber: 9787 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Damara Bertrand,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Damara Bertrand +sn: Bertrand +description: This is Damara Bertrand's description +facsimileTelephoneNumber: +1 213 364-9818 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 994-5331 +title: Master Product Testing Stooge +userPassword: Password1 +uid: BertranD +givenName: Damara +mail: BertranD@85c3b55181514b55979bbf8d48a7d2ec.bitwarden.com +carLicense: PXPLKO +departmentNumber: 6701 +employeeType: Normal +homePhone: +1 213 188-5379 +initials: D. B. +mobile: +1 213 293-5224 +pager: +1 213 983-4356 +roomNumber: 8814 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sarah Kardos,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarah Kardos +sn: Kardos +description: This is Sarah Kardos's description +facsimileTelephoneNumber: +1 804 870-3386 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 804 461-7038 +title: Master Product Testing Developer +userPassword: Password1 +uid: KardosS +givenName: Sarah +mail: KardosS@4cb9f71c0f8f42fdadb28a744475bd83.bitwarden.com +carLicense: L26KQ2 +departmentNumber: 7521 +employeeType: Employee +homePhone: +1 804 117-9595 +initials: S. K. +mobile: +1 804 938-1905 +pager: +1 804 355-2261 +roomNumber: 8932 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Odele Mahiger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odele Mahiger +sn: Mahiger +description: This is Odele Mahiger's description +facsimileTelephoneNumber: +1 415 202-5716 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 992-9737 +title: Associate Peons Writer +userPassword: Password1 +uid: MahigerO +givenName: Odele +mail: MahigerO@7486ea2b2edb4dd99d75d2309106bc15.bitwarden.com +carLicense: YNQKB1 +departmentNumber: 3154 +employeeType: Employee +homePhone: +1 415 721-1234 +initials: O. M. +mobile: +1 415 173-4171 +pager: +1 415 798-4920 +roomNumber: 8932 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Salah Poe,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Salah Poe +sn: Poe +description: This is Salah Poe's description +facsimileTelephoneNumber: +1 408 783-7967 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 651-8352 +title: Junior Peons Warrior +userPassword: Password1 +uid: PoeS +givenName: Salah +mail: PoeS@7c2fe37e93114583be5da4a11c32b590.bitwarden.com +carLicense: C9051M +departmentNumber: 7310 +employeeType: Contract +homePhone: +1 408 343-2430 +initials: S. P. +mobile: +1 408 791-9824 +pager: +1 408 680-2471 +roomNumber: 9426 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Garry Sterescu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Garry Sterescu +sn: Sterescu +description: This is Garry Sterescu's description +facsimileTelephoneNumber: +1 415 908-6750 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 434-4725 +title: Master Product Testing Warrior +userPassword: Password1 +uid: SterescG +givenName: Garry +mail: SterescG@aa5810a88b5547ee8c19b3a4626c4393.bitwarden.com +carLicense: DUTEHN +departmentNumber: 8254 +employeeType: Employee +homePhone: +1 415 372-2806 +initials: G. S. +mobile: +1 415 903-9869 +pager: +1 415 124-2080 +roomNumber: 9327 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Takehiko Magnan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Takehiko Magnan +sn: Magnan +description: This is Takehiko Magnan's description +facsimileTelephoneNumber: +1 818 788-1515 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 818 668-4372 +title: Chief Management Punk +userPassword: Password1 +uid: MagnanT +givenName: Takehiko +mail: MagnanT@f414860515324b3cad4d00dd4f44cc65.bitwarden.com +carLicense: FKQHOT +departmentNumber: 3209 +employeeType: Employee +homePhone: +1 818 344-2244 +initials: T. M. +mobile: +1 818 892-9339 +pager: +1 818 141-7444 +roomNumber: 9344 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lurleen Kodnar +sn: Kodnar +description: This is Lurleen Kodnar's description +facsimileTelephoneNumber: +1 408 986-2833 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 649-7660 +title: Supreme Janitorial Figurehead +userPassword: Password1 +uid: KodnarL +givenName: Lurleen +mail: KodnarL@b2ae4069e86943268e686f6fe06ee4a9.bitwarden.com +carLicense: 0MO1TK +departmentNumber: 3818 +employeeType: Contract +homePhone: +1 408 596-9528 +initials: L. K. +mobile: +1 408 140-1760 +pager: +1 408 973-7689 +roomNumber: 8861 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Loraine Giese,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loraine Giese +sn: Giese +description: This is Loraine Giese's description +facsimileTelephoneNumber: +1 206 572-5956 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 882-1366 +title: Chief Administrative Architect +userPassword: Password1 +uid: GieseL +givenName: Loraine +mail: GieseL@07a4bc595e2e42d18a0e9f7b0a858ca8.bitwarden.com +carLicense: 5OLW19 +departmentNumber: 3209 +employeeType: Contract +homePhone: +1 206 751-2120 +initials: L. G. +mobile: +1 206 642-1332 +pager: +1 206 692-9358 +roomNumber: 9402 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ilya Mackey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilya Mackey +sn: Mackey +description: This is Ilya Mackey's description +facsimileTelephoneNumber: +1 818 630-5670 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 489-6181 +title: Master Management Artist +userPassword: Password1 +uid: MackeyI +givenName: Ilya +mail: MackeyI@fa905899850742c4b112661b0ad13f53.bitwarden.com +carLicense: 6DO0ND +departmentNumber: 8306 +employeeType: Employee +homePhone: +1 818 144-1029 +initials: I. M. +mobile: +1 818 611-8420 +pager: +1 818 632-5974 +roomNumber: 9003 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Clari Wahab,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clari Wahab +sn: Wahab +description: This is Clari Wahab's description +facsimileTelephoneNumber: +1 415 775-2028 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 601-9080 +title: Master Product Development Evangelist +userPassword: Password1 +uid: WahabC +givenName: Clari +mail: WahabC@cf8b4b591c2f4387aae0bb010f18f55b.bitwarden.com +carLicense: D7R7IL +departmentNumber: 8575 +employeeType: Contract +homePhone: +1 415 867-8277 +initials: C. W. +mobile: +1 415 172-2466 +pager: +1 415 560-8644 +roomNumber: 8473 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nichol Etten,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nichol Etten +sn: Etten +description: This is Nichol Etten's description +facsimileTelephoneNumber: +1 415 433-4284 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 415 621-3918 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: EttenN +givenName: Nichol +mail: EttenN@bd63e3f485444f2684cf40e65bc36ff3.bitwarden.com +carLicense: T7JD20 +departmentNumber: 2666 +employeeType: Normal +homePhone: +1 415 822-3936 +initials: N. E. +mobile: +1 415 197-3124 +pager: +1 415 219-9016 +roomNumber: 8540 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Clayton Sridaran,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clayton Sridaran +sn: Sridaran +description: This is Clayton Sridaran's description +facsimileTelephoneNumber: +1 206 367-9237 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 206 955-5482 +title: Associate Payroll Mascot +userPassword: Password1 +uid: SridaraC +givenName: Clayton +mail: SridaraC@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com +carLicense: 4R58BG +departmentNumber: 7073 +employeeType: Normal +homePhone: +1 206 874-5508 +initials: C. S. +mobile: +1 206 143-9076 +pager: +1 206 705-8140 +roomNumber: 9137 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marijke Ervi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marijke Ervi +sn: Ervi +description: This is Marijke Ervi's description +facsimileTelephoneNumber: +1 408 651-7803 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 392-7205 +title: Associate Human Resources President +userPassword: Password1 +uid: ErviM +givenName: Marijke +mail: ErviM@9b4c46b33b054223bd92a713c0feadad.bitwarden.com +carLicense: HFWXHW +departmentNumber: 9774 +employeeType: Contract +homePhone: +1 408 355-1768 +initials: M. E. +mobile: +1 408 483-1748 +pager: +1 408 646-4516 +roomNumber: 9954 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rama Zagrodney +sn: Zagrodney +description: This is Rama Zagrodney's description +facsimileTelephoneNumber: +1 415 880-1379 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 415 255-3717 +title: Master Human Resources Janitor +userPassword: Password1 +uid: ZagrodnR +givenName: Rama +mail: ZagrodnR@5a18e19bdaa8418c835d1d34e33216b7.bitwarden.com +carLicense: KAAJBW +departmentNumber: 4146 +employeeType: Contract +homePhone: +1 415 185-2582 +initials: R. Z. +mobile: +1 415 330-6041 +pager: +1 415 700-5022 +roomNumber: 8549 +manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pippy McGillicuddy +sn: McGillicuddy +description: This is Pippy McGillicuddy's description +facsimileTelephoneNumber: +1 206 630-6450 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 440-5016 +title: Associate Human Resources Pinhead +userPassword: Password1 +uid: McGilliP +givenName: Pippy +mail: McGilliP@8243672e950b4a22b72844e6eab2354c.bitwarden.com +carLicense: TMF1IH +departmentNumber: 3042 +employeeType: Contract +homePhone: +1 206 140-5989 +initials: P. M. +mobile: +1 206 869-5889 +pager: +1 206 624-9691 +roomNumber: 9787 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tally Pirkle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tally Pirkle +sn: Pirkle +description: This is Tally Pirkle's description +facsimileTelephoneNumber: +1 213 801-6273 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 287-4709 +title: Supreme Janitorial Engineer +userPassword: Password1 +uid: PirkleT +givenName: Tally +mail: PirkleT@1ee541f8be124dfb9bee70e5bd91693b.bitwarden.com +carLicense: IPA70X +departmentNumber: 3552 +employeeType: Contract +homePhone: +1 213 371-8669 +initials: T. P. +mobile: +1 213 427-5213 +pager: +1 213 754-6567 +roomNumber: 9313 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Haste Katcher,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haste Katcher +sn: Katcher +description: This is Haste Katcher's description +facsimileTelephoneNumber: +1 213 280-8402 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 358-3541 +title: Associate Product Development Pinhead +userPassword: Password1 +uid: KatcherH +givenName: Haste +mail: KatcherH@abeb83f06224438d8248b9254dfa4c9e.bitwarden.com +carLicense: VD6U8L +departmentNumber: 8003 +employeeType: Employee +homePhone: +1 213 935-8602 +initials: H. K. +mobile: +1 213 181-6722 +pager: +1 213 363-1420 +roomNumber: 8695 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Norstar Lipski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norstar Lipski +sn: Lipski +description: This is Norstar Lipski's description +facsimileTelephoneNumber: +1 804 120-1550 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 368-9955 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: LipskiN +givenName: Norstar +mail: LipskiN@5a511b723eeb45c88fb86e29a330cbd3.bitwarden.com +carLicense: I9HYFK +departmentNumber: 6306 +employeeType: Normal +homePhone: +1 804 519-2030 +initials: N. L. +mobile: +1 804 752-2278 +pager: +1 804 605-3243 +roomNumber: 9754 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hedi Konarski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hedi Konarski +sn: Konarski +description: This is Hedi Konarski's description +facsimileTelephoneNumber: +1 415 869-5288 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 122-7116 +title: Supreme Product Testing Engineer +userPassword: Password1 +uid: KonarskH +givenName: Hedi +mail: KonarskH@6d3517f9c8ba453ba2035cad30e9dfc1.bitwarden.com +carLicense: Y6K5HN +departmentNumber: 6205 +employeeType: Normal +homePhone: +1 415 608-1346 +initials: H. K. +mobile: +1 415 650-2209 +pager: +1 415 723-7199 +roomNumber: 8487 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ShyaYun Casper +sn: Casper +description: This is ShyaYun Casper's description +facsimileTelephoneNumber: +1 818 555-3267 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 639-6258 +title: Associate Janitorial Visionary +userPassword: Password1 +uid: CasperS +givenName: ShyaYun +mail: CasperS@1ee43d5295b54a68904e38d5e6ea6d47.bitwarden.com +carLicense: EQF8PX +departmentNumber: 7825 +employeeType: Employee +homePhone: +1 818 823-3091 +initials: S. C. +mobile: +1 818 644-1619 +pager: +1 818 741-9239 +roomNumber: 8546 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kwing DeStefani,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kwing DeStefani +sn: DeStefani +description: This is Kwing DeStefani's description +facsimileTelephoneNumber: +1 213 254-1946 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 213 550-3605 +title: Supreme Payroll Artist +userPassword: Password1 +uid: DeStefaK +givenName: Kwing +mail: DeStefaK@82379443b34e4931be502fdd3a836d0a.bitwarden.com +carLicense: J1C2FG +departmentNumber: 3419 +employeeType: Contract +homePhone: +1 213 152-6639 +initials: K. D. +mobile: +1 213 991-5417 +pager: +1 213 214-8127 +roomNumber: 8023 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Helma Ramsden,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helma Ramsden +sn: Ramsden +description: This is Helma Ramsden's description +facsimileTelephoneNumber: +1 415 958-5191 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 153-5622 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: RamsdenH +givenName: Helma +mail: RamsdenH@e4834dbcf6564d34a2bbc3d31da046a3.bitwarden.com +carLicense: S7HNLT +departmentNumber: 9566 +employeeType: Normal +homePhone: +1 415 857-1399 +initials: H. R. +mobile: +1 415 715-1064 +pager: +1 415 460-8942 +roomNumber: 9780 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joanna Aimone,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joanna Aimone +sn: Aimone +description: This is Joanna Aimone's description +facsimileTelephoneNumber: +1 804 914-6700 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 722-1749 +title: Supreme Administrative Consultant +userPassword: Password1 +uid: AimoneJ +givenName: Joanna +mail: AimoneJ@43156b01c6bc494fbc8570d9a5003fc5.bitwarden.com +carLicense: 4X5JFS +departmentNumber: 3113 +employeeType: Contract +homePhone: +1 804 741-7108 +initials: J. A. +mobile: +1 804 149-9487 +pager: +1 804 133-7310 +roomNumber: 8903 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Leon Epplett,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leon Epplett +sn: Epplett +description: This is Leon Epplett's description +facsimileTelephoneNumber: +1 408 979-2584 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 408 374-4800 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: EpplettL +givenName: Leon +mail: EpplettL@0ddc496dccad4aaf85619cae07f217f7.bitwarden.com +carLicense: WFKOCS +departmentNumber: 4867 +employeeType: Normal +homePhone: +1 408 619-2673 +initials: L. E. +mobile: +1 408 334-6708 +pager: +1 408 602-5170 +roomNumber: 8492 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristina Sulatycki +sn: Sulatycki +description: This is Cristina Sulatycki's description +facsimileTelephoneNumber: +1 408 725-2070 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 333-2931 +title: Junior Product Testing Director +userPassword: Password1 +uid: SulatycC +givenName: Cristina +mail: SulatycC@428ea86de0d24cc293fcc0e69c36a51d.bitwarden.com +carLicense: DEP1U9 +departmentNumber: 6574 +employeeType: Employee +homePhone: +1 408 387-7337 +initials: C. S. +mobile: +1 408 431-9100 +pager: +1 408 330-7226 +roomNumber: 8560 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bobby Frink,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobby Frink +sn: Frink +description: This is Bobby Frink's description +facsimileTelephoneNumber: +1 415 944-5888 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 521-2291 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: FrinkB +givenName: Bobby +mail: FrinkB@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com +carLicense: HJLVWY +departmentNumber: 1763 +employeeType: Contract +homePhone: +1 415 733-9811 +initials: B. F. +mobile: +1 415 952-8267 +pager: +1 415 738-5252 +roomNumber: 8521 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rob Milinkovich,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rob Milinkovich +sn: Milinkovich +description: This is Rob Milinkovich's description +facsimileTelephoneNumber: +1 415 335-7752 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 415 603-1529 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: MilinkoR +givenName: Rob +mail: MilinkoR@359efdad39cc40ef8440421a8807b6c0.bitwarden.com +carLicense: 3PBAE1 +departmentNumber: 4801 +employeeType: Employee +homePhone: +1 415 927-2376 +initials: R. M. +mobile: +1 415 978-8224 +pager: +1 415 570-1028 +roomNumber: 9413 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lexie Thorsen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lexie Thorsen +sn: Thorsen +description: This is Lexie Thorsen's description +facsimileTelephoneNumber: +1 206 545-2604 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 206 630-8224 +title: Junior Management Developer +userPassword: Password1 +uid: ThorsenL +givenName: Lexie +mail: ThorsenL@08761145d0ee492388590ebc755ffc11.bitwarden.com +carLicense: 3W883J +departmentNumber: 4528 +employeeType: Employee +homePhone: +1 206 600-8620 +initials: L. T. +mobile: +1 206 203-4770 +pager: +1 206 476-8084 +roomNumber: 8419 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucita Hickerson +sn: Hickerson +description: This is Lucita Hickerson's description +facsimileTelephoneNumber: +1 206 369-5169 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 620-5502 +title: Associate Janitorial Admin +userPassword: Password1 +uid: HickersL +givenName: Lucita +mail: HickersL@bdc7052979ce43f2af94fc8fdd8de1f2.bitwarden.com +carLicense: Q5SY51 +departmentNumber: 1315 +employeeType: Employee +homePhone: +1 206 560-7424 +initials: L. H. +mobile: +1 206 160-9376 +pager: +1 206 392-3386 +roomNumber: 8857 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carlene Grignon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlene Grignon +sn: Grignon +description: This is Carlene Grignon's description +facsimileTelephoneNumber: +1 415 291-4378 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 103-8663 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: GrignonC +givenName: Carlene +mail: GrignonC@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com +carLicense: UOBWWE +departmentNumber: 5309 +employeeType: Normal +homePhone: +1 415 280-4481 +initials: C. G. +mobile: +1 415 174-9858 +pager: +1 415 828-5692 +roomNumber: 8196 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Russ Battersby,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Russ Battersby +sn: Battersby +description: This is Russ Battersby's description +facsimileTelephoneNumber: +1 818 903-4183 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 910-3960 +title: Master Janitorial Madonna +userPassword: Password1 +uid: BattersR +givenName: Russ +mail: BattersR@ed1575430eeb4652bbcb86d12841c10c.bitwarden.com +carLicense: JPFNHF +departmentNumber: 5726 +employeeType: Normal +homePhone: +1 818 550-8619 +initials: R. B. +mobile: +1 818 786-9147 +pager: +1 818 308-3721 +roomNumber: 9744 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Andrew Thifault,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrew Thifault +sn: Thifault +description: This is Andrew Thifault's description +facsimileTelephoneNumber: +1 818 192-9927 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 226-1509 +title: Junior Product Development Architect +userPassword: Password1 +uid: ThifaulA +givenName: Andrew +mail: ThifaulA@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com +carLicense: KLKOWN +departmentNumber: 9199 +employeeType: Employee +homePhone: +1 818 516-3620 +initials: A. T. +mobile: +1 818 989-3903 +pager: +1 818 730-9445 +roomNumber: 8726 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joyann Westgarth +sn: Westgarth +description: This is Joyann Westgarth's description +facsimileTelephoneNumber: +1 415 208-9318 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 870-7805 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: WestgarJ +givenName: Joyann +mail: WestgarJ@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com +carLicense: 66NI8R +departmentNumber: 3900 +employeeType: Normal +homePhone: +1 415 229-4900 +initials: J. W. +mobile: +1 415 844-6046 +pager: +1 415 408-3966 +roomNumber: 9711 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Celinda Krisa,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celinda Krisa +sn: Krisa +description: This is Celinda Krisa's description +facsimileTelephoneNumber: +1 804 104-4047 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 186-3109 +title: Master Administrative Consultant +userPassword: Password1 +uid: KrisaC +givenName: Celinda +mail: KrisaC@87ac1189e97646f890363efe4db63ec0.bitwarden.com +carLicense: QJ9C8O +departmentNumber: 6958 +employeeType: Normal +homePhone: +1 804 476-4795 +initials: C. K. +mobile: +1 804 823-8668 +pager: +1 804 588-6236 +roomNumber: 9775 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Fawnia Starks,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fawnia Starks +sn: Starks +description: This is Fawnia Starks's description +facsimileTelephoneNumber: +1 415 116-3662 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 156-5395 +title: Junior Management Janitor +userPassword: Password1 +uid: StarksF +givenName: Fawnia +mail: StarksF@5d9e4a3f454c470596eb4a19b0aabca9.bitwarden.com +carLicense: E3R8AF +departmentNumber: 3853 +employeeType: Normal +homePhone: +1 415 736-9184 +initials: F. S. +mobile: +1 415 371-8445 +pager: +1 415 276-9757 +roomNumber: 9820 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Prissie Schieber,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Prissie Schieber +sn: Schieber +description: This is Prissie Schieber's description +facsimileTelephoneNumber: +1 804 760-6129 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 153-2338 +title: Master Peons Pinhead +userPassword: Password1 +uid: SchiebeP +givenName: Prissie +mail: SchiebeP@782d7744464b4c018117147752b3b8b2.bitwarden.com +carLicense: 3B5I8K +departmentNumber: 9204 +employeeType: Employee +homePhone: +1 804 262-7186 +initials: P. S. +mobile: +1 804 480-9994 +pager: +1 804 535-8901 +roomNumber: 8428 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lyn Yuhn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyn Yuhn +sn: Yuhn +description: This is Lyn Yuhn's description +facsimileTelephoneNumber: +1 206 890-6721 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 757-5301 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: YuhnL +givenName: Lyn +mail: YuhnL@45e7698e90b843bf96764adac8813e44.bitwarden.com +carLicense: 2CQ6QJ +departmentNumber: 9847 +employeeType: Contract +homePhone: +1 206 315-6078 +initials: L. Y. +mobile: +1 206 856-7606 +pager: +1 206 323-1586 +roomNumber: 8242 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joellyn Montelli,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joellyn Montelli +sn: Montelli +description: This is Joellyn Montelli's description +facsimileTelephoneNumber: +1 818 884-9995 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 954-9418 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: MontellJ +givenName: Joellyn +mail: MontellJ@fd7e4056685f4c789c5948839975ec7d.bitwarden.com +carLicense: TIYWYY +departmentNumber: 6722 +employeeType: Normal +homePhone: +1 818 913-1010 +initials: J. M. +mobile: +1 818 364-9500 +pager: +1 818 977-3315 +roomNumber: 9901 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vanny Fenton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanny Fenton +sn: Fenton +description: This is Vanny Fenton's description +facsimileTelephoneNumber: +1 804 928-6339 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 804 925-6005 +title: Chief Product Development Janitor +userPassword: Password1 +uid: FentonV +givenName: Vanny +mail: FentonV@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com +carLicense: NO38HT +departmentNumber: 5824 +employeeType: Employee +homePhone: +1 804 758-1935 +initials: V. F. +mobile: +1 804 529-2357 +pager: +1 804 383-2332 +roomNumber: 9857 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rosabella Mathis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosabella Mathis +sn: Mathis +description: This is Rosabella Mathis's description +facsimileTelephoneNumber: +1 804 455-1317 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 612-1757 +title: Chief Peons Assistant +userPassword: Password1 +uid: MathisR +givenName: Rosabella +mail: MathisR@f04933e85545445793e3a5773ee7f65d.bitwarden.com +carLicense: PXGDCQ +departmentNumber: 1436 +employeeType: Contract +homePhone: +1 804 151-8287 +initials: R. M. +mobile: +1 804 848-3212 +pager: +1 804 801-5835 +roomNumber: 8921 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Celestine Demir,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celestine Demir +sn: Demir +description: This is Celestine Demir's description +facsimileTelephoneNumber: +1 408 558-8417 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 394-3525 +title: Master Payroll Stooge +userPassword: Password1 +uid: DemirC +givenName: Celestine +mail: DemirC@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com +carLicense: WFCWY9 +departmentNumber: 1929 +employeeType: Normal +homePhone: +1 408 413-1391 +initials: C. D. +mobile: +1 408 347-2699 +pager: +1 408 337-6943 +roomNumber: 9146 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Charlena Mirande,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charlena Mirande +sn: Mirande +description: This is Charlena Mirande's description +facsimileTelephoneNumber: +1 415 161-9727 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 415 940-2926 +title: Supreme Janitorial Technician +userPassword: Password1 +uid: MirandeC +givenName: Charlena +mail: MirandeC@15447e827d294576b427fe60b8e58e62.bitwarden.com +carLicense: 5GMWUQ +departmentNumber: 5421 +employeeType: Employee +homePhone: +1 415 581-5218 +initials: C. M. +mobile: +1 415 928-5985 +pager: +1 415 244-5159 +roomNumber: 8684 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bennett Marting,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bennett Marting +sn: Marting +description: This is Bennett Marting's description +facsimileTelephoneNumber: +1 510 837-8004 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 238-6077 +title: Junior Peons Fellow +userPassword: Password1 +uid: MartingB +givenName: Bennett +mail: MartingB@7c32fb701ef74a0cad22be6cdec84337.bitwarden.com +carLicense: XRTU6V +departmentNumber: 7035 +employeeType: Normal +homePhone: +1 510 377-6742 +initials: B. M. +mobile: +1 510 298-3546 +pager: +1 510 424-6684 +roomNumber: 9243 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PierreAlain Kelland +sn: Kelland +description: This is PierreAlain Kelland's description +facsimileTelephoneNumber: +1 206 257-9467 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 206 345-4312 +title: Associate Janitorial Mascot +userPassword: Password1 +uid: KellandP +givenName: PierreAlain +mail: KellandP@9de1e5ab0e97403bbd2b1cd8ab5549b3.bitwarden.com +carLicense: G6HPTR +departmentNumber: 2879 +employeeType: Normal +homePhone: +1 206 236-2962 +initials: P. K. +mobile: +1 206 409-2526 +pager: +1 206 103-7162 +roomNumber: 8161 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Analiese Steene,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Analiese Steene +sn: Steene +description: This is Analiese Steene's description +facsimileTelephoneNumber: +1 408 617-6923 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 348-2538 +title: Master Payroll Visionary +userPassword: Password1 +uid: SteeneA +givenName: Analiese +mail: SteeneA@51bf8c07247a47a89482a395ed341297.bitwarden.com +carLicense: BXFGCS +departmentNumber: 5128 +employeeType: Employee +homePhone: +1 408 621-7244 +initials: A. S. +mobile: +1 408 947-4680 +pager: +1 408 168-7345 +roomNumber: 9536 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Janine Stirrett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janine Stirrett +sn: Stirrett +description: This is Janine Stirrett's description +facsimileTelephoneNumber: +1 415 346-2967 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 592-2668 +title: Supreme Payroll Madonna +userPassword: Password1 +uid: StirretJ +givenName: Janine +mail: StirretJ@25d25ecced754b87ad2b47ca359ce5ed.bitwarden.com +carLicense: MXWIRR +departmentNumber: 2302 +employeeType: Contract +homePhone: +1 415 690-8318 +initials: J. S. +mobile: +1 415 144-7499 +pager: +1 415 854-3865 +roomNumber: 9233 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wiele Rowan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wiele Rowan +sn: Rowan +description: This is Wiele Rowan's description +facsimileTelephoneNumber: +1 408 525-9390 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 408 789-5687 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: RowanW +givenName: Wiele +mail: RowanW@f977f0ba237149f58238530f1adcdac1.bitwarden.com +carLicense: M5YSPH +departmentNumber: 4499 +employeeType: Employee +homePhone: +1 408 168-9720 +initials: W. R. +mobile: +1 408 282-7418 +pager: +1 408 853-4109 +roomNumber: 8588 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maia Reva,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maia Reva +sn: Reva +description: This is Maia Reva's description +facsimileTelephoneNumber: +1 408 820-4051 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 876-9379 +title: Chief Management Evangelist +userPassword: Password1 +uid: RevaM +givenName: Maia +mail: RevaM@3398a7bd821e4193ae8f310f359e79ef.bitwarden.com +carLicense: 4DJCHJ +departmentNumber: 8793 +employeeType: Normal +homePhone: +1 408 687-6668 +initials: M. R. +mobile: +1 408 446-7761 +pager: +1 408 872-3789 +roomNumber: 9162 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tian Beeby,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tian Beeby +sn: Beeby +description: This is Tian Beeby's description +facsimileTelephoneNumber: +1 804 247-4118 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 275-1935 +title: Supreme Human Resources Madonna +userPassword: Password1 +uid: BeebyT +givenName: Tian +mail: BeebyT@ae1c8a23e1dd413a9249a93f83a32cff.bitwarden.com +carLicense: GOWST6 +departmentNumber: 3249 +employeeType: Employee +homePhone: +1 804 456-9029 +initials: T. B. +mobile: +1 804 961-5029 +pager: +1 804 960-7449 +roomNumber: 8484 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nazib Schembri,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nazib Schembri +sn: Schembri +description: This is Nazib Schembri's description +facsimileTelephoneNumber: +1 818 790-9279 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 456-4298 +title: Chief Administrative Manager +userPassword: Password1 +uid: SchembrN +givenName: Nazib +mail: SchembrN@0adc67407b764a6d9b4b77d7fd10db1b.bitwarden.com +carLicense: R59F1Y +departmentNumber: 1532 +employeeType: Contract +homePhone: +1 818 215-6268 +initials: N. S. +mobile: +1 818 247-3877 +pager: +1 818 698-2900 +roomNumber: 9675 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucinda Letchworth +sn: Letchworth +description: This is Lucinda Letchworth's description +facsimileTelephoneNumber: +1 818 468-3818 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 380-5307 +title: Master Janitorial Dictator +userPassword: Password1 +uid: LetchwoL +givenName: Lucinda +mail: LetchwoL@472c805b68f843ad9fd85cb16521749b.bitwarden.com +carLicense: TJ6LPU +departmentNumber: 6716 +employeeType: Contract +homePhone: +1 818 617-4707 +initials: L. L. +mobile: +1 818 943-5934 +pager: +1 818 128-6912 +roomNumber: 9397 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cammy Shumate,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cammy Shumate +sn: Shumate +description: This is Cammy Shumate's description +facsimileTelephoneNumber: +1 804 765-1062 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 354-6829 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: ShumateC +givenName: Cammy +mail: ShumateC@632f2740a30b4299bdecbe1293c6b1e7.bitwarden.com +carLicense: 67LB3E +departmentNumber: 9298 +employeeType: Normal +homePhone: +1 804 858-4430 +initials: C. S. +mobile: +1 804 597-1968 +pager: +1 804 948-7206 +roomNumber: 8555 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rianon Schick,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rianon Schick +sn: Schick +description: This is Rianon Schick's description +facsimileTelephoneNumber: +1 818 254-2852 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 877-9472 +title: Associate Janitorial Warrior +userPassword: Password1 +uid: SchickR +givenName: Rianon +mail: SchickR@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com +carLicense: 08N484 +departmentNumber: 8384 +employeeType: Employee +homePhone: +1 818 207-4396 +initials: R. S. +mobile: +1 818 668-3231 +pager: +1 818 459-3405 +roomNumber: 8057 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Viole Areu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Viole Areu +sn: Areu +description: This is Viole Areu's description +facsimileTelephoneNumber: +1 206 526-7094 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 740-2907 +title: Associate Product Development Warrior +userPassword: Password1 +uid: AreuV +givenName: Viole +mail: AreuV@3f7d610415d84ef2bdb619b20514a382.bitwarden.com +carLicense: XCR552 +departmentNumber: 6599 +employeeType: Contract +homePhone: +1 206 928-2352 +initials: V. A. +mobile: +1 206 802-5617 +pager: +1 206 610-5284 +roomNumber: 9972 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Brigitta Piper,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigitta Piper +sn: Piper +description: This is Brigitta Piper's description +facsimileTelephoneNumber: +1 818 302-6864 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 549-3311 +title: Chief Product Development Grunt +userPassword: Password1 +uid: PiperB +givenName: Brigitta +mail: PiperB@0877837d55bc4d3c8c1cf86b1af30616.bitwarden.com +carLicense: C0JKKH +departmentNumber: 8865 +employeeType: Normal +homePhone: +1 818 711-3267 +initials: B. P. +mobile: +1 818 930-6452 +pager: +1 818 896-2608 +roomNumber: 8243 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melly Kelkar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melly Kelkar +sn: Kelkar +description: This is Melly Kelkar's description +facsimileTelephoneNumber: +1 804 715-8555 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 942-3315 +title: Associate Management Admin +userPassword: Password1 +uid: KelkarM +givenName: Melly +mail: KelkarM@4fd5724ffe8c4be3a7330bd9ee58c54a.bitwarden.com +carLicense: P1QJU3 +departmentNumber: 7501 +employeeType: Employee +homePhone: +1 804 982-8946 +initials: M. K. +mobile: +1 804 964-7453 +pager: +1 804 674-6390 +roomNumber: 8417 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maritsa McCain,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maritsa McCain +sn: McCain +description: This is Maritsa McCain's description +facsimileTelephoneNumber: +1 408 683-9829 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 857-6640 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: McCainM +givenName: Maritsa +mail: McCainM@753b48fb7ffe43dd87736153647baa4b.bitwarden.com +carLicense: 16NSJW +departmentNumber: 5473 +employeeType: Employee +homePhone: +1 408 589-4670 +initials: M. M. +mobile: +1 408 738-6918 +pager: +1 408 204-2896 +roomNumber: 8260 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Melissa Griffioen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melissa Griffioen +sn: Griffioen +description: This is Melissa Griffioen's description +facsimileTelephoneNumber: +1 213 225-4456 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 246-1430 +title: Associate Management Stooge +userPassword: Password1 +uid: GriffioM +givenName: Melissa +mail: GriffioM@952de29a7bec4822af302264a85723ab.bitwarden.com +carLicense: CK6UM3 +departmentNumber: 8045 +employeeType: Contract +homePhone: +1 213 837-5127 +initials: M. G. +mobile: +1 213 448-5357 +pager: +1 213 130-8277 +roomNumber: 9529 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tak Sebeh,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tak Sebeh +sn: Sebeh +description: This is Tak Sebeh's description +facsimileTelephoneNumber: +1 415 119-6841 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 242-6053 +title: Master Peons President +userPassword: Password1 +uid: SebehT +givenName: Tak +mail: SebehT@e4f3fd4bada6471dba76dc7596ae6743.bitwarden.com +carLicense: 88EJO0 +departmentNumber: 9593 +employeeType: Normal +homePhone: +1 415 256-2062 +initials: T. S. +mobile: +1 415 572-4139 +pager: +1 415 110-3451 +roomNumber: 8061 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vittorio Muradia,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vittorio Muradia +sn: Muradia +description: This is Vittorio Muradia's description +facsimileTelephoneNumber: +1 804 960-5555 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 804 330-5861 +title: Master Payroll Evangelist +userPassword: Password1 +uid: MuradiaV +givenName: Vittorio +mail: MuradiaV@4bb48f2b9b4243a6be88846d63865ab7.bitwarden.com +carLicense: QCB8V1 +departmentNumber: 1715 +employeeType: Employee +homePhone: +1 804 491-8282 +initials: V. M. +mobile: +1 804 222-3877 +pager: +1 804 779-9718 +roomNumber: 8029 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jonell McElligott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jonell McElligott +sn: McElligott +description: This is Jonell McElligott's description +facsimileTelephoneNumber: +1 213 964-2004 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 167-7508 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: McElligJ +givenName: Jonell +mail: McElligJ@c483d98d8b2f4370bac517e24e1170a7.bitwarden.com +carLicense: 757BKM +departmentNumber: 4596 +employeeType: Normal +homePhone: +1 213 137-6005 +initials: J. M. +mobile: +1 213 567-2685 +pager: +1 213 204-4331 +roomNumber: 9897 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnnHoon Chaintreuil +sn: Chaintreuil +description: This is AnnHoon Chaintreuil's description +facsimileTelephoneNumber: +1 818 887-6734 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 818 988-9961 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: ChaintrA +givenName: AnnHoon +mail: ChaintrA@8ff18bb869a54da6b6cdd5f2a63f2885.bitwarden.com +carLicense: AUGKT7 +departmentNumber: 1609 +employeeType: Normal +homePhone: +1 818 305-3739 +initials: A. C. +mobile: +1 818 625-8102 +pager: +1 818 891-5289 +roomNumber: 8128 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jey Pau,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jey Pau +sn: Pau +description: This is Jey Pau's description +facsimileTelephoneNumber: +1 804 223-8380 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 919-8561 +title: Supreme Administrative Developer +userPassword: Password1 +uid: PauJ +givenName: Jey +mail: PauJ@38576f18c78f484896ae3f1bba73101a.bitwarden.com +carLicense: TISBBH +departmentNumber: 5379 +employeeType: Employee +homePhone: +1 804 351-3889 +initials: J. P. +mobile: +1 804 524-2989 +pager: +1 804 122-7380 +roomNumber: 8958 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emerson Syssupport +sn: Syssupport +description: This is Emerson Syssupport's description +facsimileTelephoneNumber: +1 213 313-4240 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 425-9552 +title: Junior Human Resources Visionary +userPassword: Password1 +uid: SyssuppE +givenName: Emerson +mail: SyssuppE@5e676fae9cd742a087297df905b8c5bd.bitwarden.com +carLicense: XHS2JM +departmentNumber: 6162 +employeeType: Employee +homePhone: +1 213 333-7511 +initials: E. S. +mobile: +1 213 161-9449 +pager: +1 213 144-6187 +roomNumber: 9406 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jillane Metz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jillane Metz +sn: Metz +description: This is Jillane Metz's description +facsimileTelephoneNumber: +1 415 861-2934 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 415 918-9357 +title: Junior Human Resources Architect +userPassword: Password1 +uid: MetzJ +givenName: Jillane +mail: MetzJ@6d452215608049afb03f1d153c8be1b3.bitwarden.com +carLicense: 0TX6L3 +departmentNumber: 3481 +employeeType: Normal +homePhone: +1 415 675-7938 +initials: J. M. +mobile: +1 415 698-9624 +pager: +1 415 940-7539 +roomNumber: 9634 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Parveen Burnage,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parveen Burnage +sn: Burnage +description: This is Parveen Burnage's description +facsimileTelephoneNumber: +1 408 674-1086 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 887-4787 +title: Master Human Resources Czar +userPassword: Password1 +uid: BurnageP +givenName: Parveen +mail: BurnageP@38d063b8eef24bab8cf2febf33fcac66.bitwarden.com +carLicense: IWWAN4 +departmentNumber: 8182 +employeeType: Contract +homePhone: +1 408 391-8718 +initials: P. B. +mobile: +1 408 314-4803 +pager: +1 408 713-9332 +roomNumber: 8092 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Martine Gilliard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martine Gilliard +sn: Gilliard +description: This is Martine Gilliard's description +facsimileTelephoneNumber: +1 415 896-7660 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 794-6193 +title: Master Human Resources Grunt +userPassword: Password1 +uid: GilliarM +givenName: Martine +mail: GilliarM@09314ab289d344eeaedcd157c5350d28.bitwarden.com +carLicense: CPFO8B +departmentNumber: 1242 +employeeType: Contract +homePhone: +1 415 662-2110 +initials: M. G. +mobile: +1 415 822-1341 +pager: +1 415 524-3333 +roomNumber: 8055 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edmundo Yarbrough +sn: Yarbrough +description: This is Edmundo Yarbrough's description +facsimileTelephoneNumber: +1 408 517-8924 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 408 663-5861 +title: Supreme Peons Mascot +userPassword: Password1 +uid: YarbrouE +givenName: Edmundo +mail: YarbrouE@6a380be30539453291140420cbbfde32.bitwarden.com +carLicense: K1WQ7G +departmentNumber: 7218 +employeeType: Employee +homePhone: +1 408 969-9257 +initials: E. Y. +mobile: +1 408 297-2815 +pager: +1 408 589-2018 +roomNumber: 9147 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shaji Langelier,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaji Langelier +sn: Langelier +description: This is Shaji Langelier's description +facsimileTelephoneNumber: +1 206 805-6605 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 206 148-6707 +title: Master Human Resources Architect +userPassword: Password1 +uid: LangeliS +givenName: Shaji +mail: LangeliS@abfb3b05eb524c3a9045af2f3c7592da.bitwarden.com +carLicense: MIK2BP +departmentNumber: 8053 +employeeType: Contract +homePhone: +1 206 181-9960 +initials: S. L. +mobile: +1 206 249-7783 +pager: +1 206 253-1695 +roomNumber: 9260 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Manny Nolan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manny Nolan +sn: Nolan +description: This is Manny Nolan's description +facsimileTelephoneNumber: +1 213 279-2287 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 497-6155 +title: Associate Administrative Evangelist +userPassword: Password1 +uid: NolanM +givenName: Manny +mail: NolanM@a5b16f07cc5f4d548df233a10f2abd0b.bitwarden.com +carLicense: PWTBQB +departmentNumber: 8358 +employeeType: Contract +homePhone: +1 213 877-9567 +initials: M. N. +mobile: +1 213 484-7937 +pager: +1 213 662-3772 +roomNumber: 8883 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vrinda Keuning,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vrinda Keuning +sn: Keuning +description: This is Vrinda Keuning's description +facsimileTelephoneNumber: +1 510 346-9770 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 896-4718 +title: Associate Product Development Mascot +userPassword: Password1 +uid: KeuningV +givenName: Vrinda +mail: KeuningV@a3d3bf444e8449f58c24d388c9e4253b.bitwarden.com +carLicense: 2HJA25 +departmentNumber: 1529 +employeeType: Employee +homePhone: +1 510 681-1770 +initials: V. K. +mobile: +1 510 184-4333 +pager: +1 510 829-4130 +roomNumber: 9402 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fidelity Lenzi +sn: Lenzi +description: This is Fidelity Lenzi's description +facsimileTelephoneNumber: +1 213 184-1804 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 213 262-4085 +title: Associate Product Development Warrior +userPassword: Password1 +uid: LenziF +givenName: Fidelity +mail: LenziF@a9e04d8378ea40e5a826038ff40e6cd5.bitwarden.com +carLicense: W0XFC9 +departmentNumber: 3430 +employeeType: Contract +homePhone: +1 213 511-3051 +initials: F. L. +mobile: +1 213 117-4338 +pager: +1 213 410-3871 +roomNumber: 8925 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aile StOnge,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aile StOnge +sn: StOnge +description: This is Aile StOnge's description +facsimileTelephoneNumber: +1 804 985-8919 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 345-9595 +title: Associate Management Admin +userPassword: Password1 +uid: StOngeA +givenName: Aile +mail: StOngeA@6c33f97ba18845049fcf33d5c689185e.bitwarden.com +carLicense: HCDSOP +departmentNumber: 9817 +employeeType: Employee +homePhone: +1 804 520-5577 +initials: A. S. +mobile: +1 804 351-9461 +pager: +1 804 772-3344 +roomNumber: 9443 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marabel Lipscomb +sn: Lipscomb +description: This is Marabel Lipscomb's description +facsimileTelephoneNumber: +1 206 720-3162 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 206 176-8800 +title: Associate Payroll Madonna +userPassword: Password1 +uid: LipscomM +givenName: Marabel +mail: LipscomM@a3cde3b2f5de4fe5ac11c48bb6df28f3.bitwarden.com +carLicense: I3TRQX +departmentNumber: 6560 +employeeType: Employee +homePhone: +1 206 829-2606 +initials: M. L. +mobile: +1 206 972-1711 +pager: +1 206 299-9713 +roomNumber: 9423 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Helge Bowyer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helge Bowyer +sn: Bowyer +description: This is Helge Bowyer's description +facsimileTelephoneNumber: +1 206 283-6030 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 606-7782 +title: Junior Peons Vice President +userPassword: Password1 +uid: BowyerH +givenName: Helge +mail: BowyerH@479b3e4b55a5494fbabf2926242184e6.bitwarden.com +carLicense: J2DDXD +departmentNumber: 8063 +employeeType: Contract +homePhone: +1 206 844-3421 +initials: H. B. +mobile: +1 206 583-8860 +pager: +1 206 825-9820 +roomNumber: 8560 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Norbert Missailidis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norbert Missailidis +sn: Missailidis +description: This is Norbert Missailidis's description +facsimileTelephoneNumber: +1 206 661-8476 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 206 652-5669 +title: Master Payroll Artist +userPassword: Password1 +uid: MissailN +givenName: Norbert +mail: MissailN@f069d8208db84a5496e2d819694425d2.bitwarden.com +carLicense: S0C22J +departmentNumber: 6697 +employeeType: Employee +homePhone: +1 206 915-1172 +initials: N. M. +mobile: +1 206 690-8502 +pager: +1 206 264-3664 +roomNumber: 9430 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bathsheba Armolavicius +sn: Armolavicius +description: This is Bathsheba Armolavicius's description +facsimileTelephoneNumber: +1 213 554-8925 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 467-2443 +title: Supreme Product Testing Warrior +userPassword: Password1 +uid: ArmolavB +givenName: Bathsheba +mail: ArmolavB@a6fcfac6f2c541af951392eeebba2d17.bitwarden.com +carLicense: GVO321 +departmentNumber: 7569 +employeeType: Normal +homePhone: +1 213 165-4742 +initials: B. A. +mobile: +1 213 540-5748 +pager: +1 213 454-4552 +roomNumber: 8180 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Letizia Quon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Letizia Quon +sn: Quon +description: This is Letizia Quon's description +facsimileTelephoneNumber: +1 213 733-9836 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 213 453-8014 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: QuonL +givenName: Letizia +mail: QuonL@a202d5209c7047ff8a841ac785c909b8.bitwarden.com +carLicense: VF89BX +departmentNumber: 7494 +employeeType: Employee +homePhone: +1 213 875-3060 +initials: L. Q. +mobile: +1 213 929-8219 +pager: +1 213 108-4850 +roomNumber: 8375 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Haily Lamothe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haily Lamothe +sn: Lamothe +description: This is Haily Lamothe's description +facsimileTelephoneNumber: +1 818 916-8997 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 818 996-2457 +title: Chief Product Testing Janitor +userPassword: Password1 +uid: LamotheH +givenName: Haily +mail: LamotheH@0d16cc430a2c4388b233d89e5b36b645.bitwarden.com +carLicense: VVH5UW +departmentNumber: 2963 +employeeType: Employee +homePhone: +1 818 689-7254 +initials: H. L. +mobile: +1 818 757-6464 +pager: +1 818 941-1793 +roomNumber: 9175 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alie Staats,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alie Staats +sn: Staats +description: This is Alie Staats's description +facsimileTelephoneNumber: +1 818 972-7617 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 237-1236 +title: Supreme Management Director +userPassword: Password1 +uid: StaatsA +givenName: Alie +mail: StaatsA@8746c1b198ed48df839714090396dae1.bitwarden.com +carLicense: 2FN4DA +departmentNumber: 5900 +employeeType: Contract +homePhone: +1 818 950-1030 +initials: A. S. +mobile: +1 818 204-7291 +pager: +1 818 424-1516 +roomNumber: 8452 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariesara Bourgaize +sn: Bourgaize +description: This is Mariesara Bourgaize's description +facsimileTelephoneNumber: +1 213 512-3442 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 292-8273 +title: Junior Peons Artist +userPassword: Password1 +uid: BourgaiM +givenName: Mariesara +mail: BourgaiM@355248f7071d4e58beb9bf6f2b8c9ee2.bitwarden.com +carLicense: L2XQYB +departmentNumber: 1153 +employeeType: Contract +homePhone: +1 213 429-4849 +initials: M. B. +mobile: +1 213 719-8204 +pager: +1 213 845-2838 +roomNumber: 8914 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Corry Brewer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corry Brewer +sn: Brewer +description: This is Corry Brewer's description +facsimileTelephoneNumber: +1 206 737-8942 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 991-5320 +title: Junior Product Development Sales Rep +userPassword: Password1 +uid: BrewerC +givenName: Corry +mail: BrewerC@01034db83e3b44ec835b5255948e4e0f.bitwarden.com +carLicense: TCS0YR +departmentNumber: 6630 +employeeType: Contract +homePhone: +1 206 593-2251 +initials: C. B. +mobile: +1 206 335-3961 +pager: +1 206 406-4783 +roomNumber: 8122 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hanja Godwin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanja Godwin +sn: Godwin +description: This is Hanja Godwin's description +facsimileTelephoneNumber: +1 415 970-3178 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 753-5062 +title: Junior Peons Dictator +userPassword: Password1 +uid: GodwinH +givenName: Hanja +mail: GodwinH@c1864662acf34812bb78c7f7029d15f8.bitwarden.com +carLicense: NY167Q +departmentNumber: 3795 +employeeType: Contract +homePhone: +1 415 931-8886 +initials: H. G. +mobile: +1 415 396-2021 +pager: +1 415 357-9863 +roomNumber: 8379 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brianna Hien,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brianna Hien +sn: Hien +description: This is Brianna Hien's description +facsimileTelephoneNumber: +1 804 388-8084 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 959-6260 +title: Supreme Product Development President +userPassword: Password1 +uid: HienB +givenName: Brianna +mail: HienB@2b36624d30a34f908a5fc12c83ce72f4.bitwarden.com +carLicense: BCNDUM +departmentNumber: 9717 +employeeType: Normal +homePhone: +1 804 668-2274 +initials: B. H. +mobile: +1 804 142-5615 +pager: +1 804 399-6926 +roomNumber: 8411 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Evy Raing,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evy Raing +sn: Raing +description: This is Evy Raing's description +facsimileTelephoneNumber: +1 408 428-5767 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 408 637-2562 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: RaingE +givenName: Evy +mail: RaingE@7cfd5c325b0c431596f4ef71471b42ba.bitwarden.com +carLicense: 5K7LW6 +departmentNumber: 4405 +employeeType: Employee +homePhone: +1 408 155-1122 +initials: E. R. +mobile: +1 408 891-7927 +pager: +1 408 420-1665 +roomNumber: 9282 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rebekah Siegel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rebekah Siegel +sn: Siegel +description: This is Rebekah Siegel's description +facsimileTelephoneNumber: +1 818 816-6904 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 301-2053 +title: Associate Administrative Vice President +userPassword: Password1 +uid: SiegelR +givenName: Rebekah +mail: SiegelR@63e24bc173914f0f865e0c9dee2dcfe5.bitwarden.com +carLicense: NHSLNB +departmentNumber: 1409 +employeeType: Contract +homePhone: +1 818 468-4741 +initials: R. S. +mobile: +1 818 691-4736 +pager: +1 818 367-2517 +roomNumber: 8680 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jobie Boucouris +sn: Boucouris +description: This is Jobie Boucouris's description +facsimileTelephoneNumber: +1 510 518-5965 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 510 870-7137 +title: Chief Janitorial Admin +userPassword: Password1 +uid: BoucourJ +givenName: Jobie +mail: BoucourJ@9a209519348642769473b09231da3137.bitwarden.com +carLicense: S1PB82 +departmentNumber: 1224 +employeeType: Contract +homePhone: +1 510 723-6946 +initials: J. B. +mobile: +1 510 108-2325 +pager: +1 510 244-8821 +roomNumber: 9200 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Brekel Silverstone,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brekel Silverstone +sn: Silverstone +description: This is Brekel Silverstone's description +facsimileTelephoneNumber: +1 818 917-1088 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 246-9408 +title: Junior Administrative Artist +userPassword: Password1 +uid: SilversB +givenName: Brekel +mail: SilversB@5d869bea03ed495786efc921360e43b4.bitwarden.com +carLicense: QFX0D8 +departmentNumber: 3023 +employeeType: Normal +homePhone: +1 818 203-3174 +initials: B. S. +mobile: +1 818 914-2121 +pager: +1 818 377-3245 +roomNumber: 9195 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Harm Mehta,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harm Mehta +sn: Mehta +description: This is Harm Mehta's description +facsimileTelephoneNumber: +1 415 885-6648 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 525-7794 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: MehtaH +givenName: Harm +mail: MehtaH@ad4b259f1800408a898dff512e0a094e.bitwarden.com +carLicense: 87M1FL +departmentNumber: 9793 +employeeType: Employee +homePhone: +1 415 211-2173 +initials: H. M. +mobile: +1 415 570-6411 +pager: +1 415 440-4008 +roomNumber: 9143 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: QuangTrung Yoshioka +sn: Yoshioka +description: This is QuangTrung Yoshioka's description +facsimileTelephoneNumber: +1 408 593-5168 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 934-2871 +title: Junior Payroll Vice President +userPassword: Password1 +uid: YoshiokQ +givenName: QuangTrung +mail: YoshiokQ@4cf5733fc93742b8881de63253f58457.bitwarden.com +carLicense: O8XVIT +departmentNumber: 7408 +employeeType: Normal +homePhone: +1 408 364-9916 +initials: Q. Y. +mobile: +1 408 332-3177 +pager: +1 408 558-2684 +roomNumber: 8562 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jae Caudill,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jae Caudill +sn: Caudill +description: This is Jae Caudill's description +facsimileTelephoneNumber: +1 213 214-8406 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 505-7193 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: CaudillJ +givenName: Jae +mail: CaudillJ@732895781258430aa850734a965ff9eb.bitwarden.com +carLicense: UFWBUO +departmentNumber: 8852 +employeeType: Contract +homePhone: +1 213 782-3956 +initials: J. C. +mobile: +1 213 878-7312 +pager: +1 213 510-8300 +roomNumber: 8707 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hilde Hibberd,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilde Hibberd +sn: Hibberd +description: This is Hilde Hibberd's description +facsimileTelephoneNumber: +1 206 231-1000 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 675-7162 +title: Chief Product Development Architect +userPassword: Password1 +uid: HibberdH +givenName: Hilde +mail: HibberdH@42be868e79934b2781b6098b8536a633.bitwarden.com +carLicense: 6BOX46 +departmentNumber: 4589 +employeeType: Employee +homePhone: +1 206 973-4693 +initials: H. H. +mobile: +1 206 212-6982 +pager: +1 206 442-4733 +roomNumber: 9228 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tres Nyland,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tres Nyland +sn: Nyland +description: This is Tres Nyland's description +facsimileTelephoneNumber: +1 213 542-3994 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 318-6009 +title: Chief Management Dictator +userPassword: Password1 +uid: NylandT +givenName: Tres +mail: NylandT@37ac065458a84fc994659f0d86c970d6.bitwarden.com +carLicense: KQOF4Y +departmentNumber: 8287 +employeeType: Normal +homePhone: +1 213 171-8761 +initials: T. N. +mobile: +1 213 171-6267 +pager: +1 213 485-6602 +roomNumber: 8609 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bettye Moynihan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettye Moynihan +sn: Moynihan +description: This is Bettye Moynihan's description +facsimileTelephoneNumber: +1 206 399-2777 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 553-7345 +title: Associate Peons Artist +userPassword: Password1 +uid: MoynihaB +givenName: Bettye +mail: MoynihaB@0cee059feb2f45d0a3e77b9cb46c95e2.bitwarden.com +carLicense: 1K3MES +departmentNumber: 2322 +employeeType: Normal +homePhone: +1 206 182-7974 +initials: B. M. +mobile: +1 206 142-1630 +pager: +1 206 406-7524 +roomNumber: 9629 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Louisa Shimandle +sn: Shimandle +description: This is Louisa Shimandle's description +facsimileTelephoneNumber: +1 818 199-9144 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 507-1780 +title: Associate Human Resources Artist +userPassword: Password1 +uid: ShimandL +givenName: Louisa +mail: ShimandL@9fa42e4f0ec04b66b2fd5c843402ebd1.bitwarden.com +carLicense: 91XDJ3 +departmentNumber: 2344 +employeeType: Contract +homePhone: +1 818 431-5013 +initials: L. S. +mobile: +1 818 320-9617 +pager: +1 818 388-8037 +roomNumber: 9185 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nooshin Kellum +sn: Kellum +description: This is Nooshin Kellum's description +facsimileTelephoneNumber: +1 213 419-1549 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 177-5321 +title: Junior Product Testing Director +userPassword: Password1 +uid: KellumN +givenName: Nooshin +mail: KellumN@e0035c2cc66e449187d7e04da48e8b5f.bitwarden.com +carLicense: 2JSNBE +departmentNumber: 1235 +employeeType: Contract +homePhone: +1 213 184-8020 +initials: N. K. +mobile: +1 213 660-9168 +pager: +1 213 149-8582 +roomNumber: 9787 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shahriar Trull,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shahriar Trull +sn: Trull +description: This is Shahriar Trull's description +facsimileTelephoneNumber: +1 415 533-5900 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 825-8740 +title: Supreme Peons Admin +userPassword: Password1 +uid: TrullS +givenName: Shahriar +mail: TrullS@e3c084d5a2b44c959d053319884f8497.bitwarden.com +carLicense: I20WNL +departmentNumber: 6690 +employeeType: Employee +homePhone: +1 415 166-7081 +initials: S. T. +mobile: +1 415 368-9745 +pager: +1 415 582-6352 +roomNumber: 8883 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parkinson Rabaglia +sn: Rabaglia +description: This is Parkinson Rabaglia's description +facsimileTelephoneNumber: +1 408 241-4355 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 255-1332 +title: Associate Product Development President +userPassword: Password1 +uid: RabagliP +givenName: Parkinson +mail: RabagliP@87cf37472b3e4029becaa8ad3f98dbac.bitwarden.com +carLicense: E8MX01 +departmentNumber: 5581 +employeeType: Employee +homePhone: +1 408 234-4115 +initials: P. R. +mobile: +1 408 292-8605 +pager: +1 408 561-8773 +roomNumber: 9578 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Edyta Hargadon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edyta Hargadon +sn: Hargadon +description: This is Edyta Hargadon's description +facsimileTelephoneNumber: +1 213 662-9837 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 811-3650 +title: Junior Administrative Visionary +userPassword: Password1 +uid: HargadoE +givenName: Edyta +mail: HargadoE@4155bdebff5941d48d470ec7ba36ba81.bitwarden.com +carLicense: RD671F +departmentNumber: 9555 +employeeType: Normal +homePhone: +1 213 559-1554 +initials: E. H. +mobile: +1 213 725-8801 +pager: +1 213 580-1877 +roomNumber: 9230 +manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marris Hameed,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marris Hameed +sn: Hameed +description: This is Marris Hameed's description +facsimileTelephoneNumber: +1 415 750-6153 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 286-8768 +title: Chief Product Development Architect +userPassword: Password1 +uid: HameedM +givenName: Marris +mail: HameedM@4c53d8b9e28c4cd28a44f87cb7441dcc.bitwarden.com +carLicense: DT0NW4 +departmentNumber: 6357 +employeeType: Normal +homePhone: +1 415 666-3764 +initials: M. H. +mobile: +1 415 647-1857 +pager: +1 415 587-3737 +roomNumber: 8430 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Aurelia Raynard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurelia Raynard +sn: Raynard +description: This is Aurelia Raynard's description +facsimileTelephoneNumber: +1 213 264-1707 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 435-7829 +title: Associate Management Assistant +userPassword: Password1 +uid: RaynardA +givenName: Aurelia +mail: RaynardA@d787c7f385a34c7297fe344b6f5b44de.bitwarden.com +carLicense: HRXRRF +departmentNumber: 4527 +employeeType: Normal +homePhone: +1 213 894-7889 +initials: A. R. +mobile: +1 213 135-7748 +pager: +1 213 121-8478 +roomNumber: 8927 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rivi Ludwig,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rivi Ludwig +sn: Ludwig +description: This is Rivi Ludwig's description +facsimileTelephoneNumber: +1 206 892-8962 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 111-9785 +title: Associate Management Warrior +userPassword: Password1 +uid: LudwigR +givenName: Rivi +mail: LudwigR@93dd838ca8d949aca268d37f8c816502.bitwarden.com +carLicense: I5BAFP +departmentNumber: 3636 +employeeType: Employee +homePhone: +1 206 572-4804 +initials: R. L. +mobile: +1 206 243-4778 +pager: +1 206 604-5984 +roomNumber: 9966 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Isadora Vaters,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isadora Vaters +sn: Vaters +description: This is Isadora Vaters's description +facsimileTelephoneNumber: +1 510 501-4376 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 707-8521 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: VatersI +givenName: Isadora +mail: VatersI@f6662f434fdd4fd4be948e8e6001fcc6.bitwarden.com +carLicense: GTHQUO +departmentNumber: 5779 +employeeType: Normal +homePhone: +1 510 827-8554 +initials: I. V. +mobile: +1 510 587-9666 +pager: +1 510 828-4331 +roomNumber: 8900 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elana Moy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elana Moy +sn: Moy +description: This is Elana Moy's description +facsimileTelephoneNumber: +1 415 400-6788 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 584-9657 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: MoyE +givenName: Elana +mail: MoyE@d2a22d407c40446c9ae2afe4d17eb26f.bitwarden.com +carLicense: HC7G26 +departmentNumber: 9659 +employeeType: Employee +homePhone: +1 415 232-8190 +initials: E. M. +mobile: +1 415 412-3821 +pager: +1 415 342-1216 +roomNumber: 9613 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Helaine Salamon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helaine Salamon +sn: Salamon +description: This is Helaine Salamon's description +facsimileTelephoneNumber: +1 510 931-6147 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 510 712-1491 +title: Master Product Development Grunt +userPassword: Password1 +uid: SalamonH +givenName: Helaine +mail: SalamonH@48f40b9c61c1423ab7f4a12dacd08cb7.bitwarden.com +carLicense: AHYSMS +departmentNumber: 2565 +employeeType: Contract +homePhone: +1 510 655-1375 +initials: H. S. +mobile: +1 510 891-2165 +pager: +1 510 927-4989 +roomNumber: 9289 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Spencer Lesperance +sn: Lesperance +description: This is Spencer Lesperance's description +facsimileTelephoneNumber: +1 206 235-5521 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 930-8541 +title: Master Janitorial Admin +userPassword: Password1 +uid: LesperaS +givenName: Spencer +mail: LesperaS@386f61091b6f44b2afca80c5832c14c3.bitwarden.com +carLicense: FWR456 +departmentNumber: 1157 +employeeType: Normal +homePhone: +1 206 719-5563 +initials: S. L. +mobile: +1 206 585-6707 +pager: +1 206 589-2673 +roomNumber: 8624 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Briney Smithson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Briney Smithson +sn: Smithson +description: This is Briney Smithson's description +facsimileTelephoneNumber: +1 818 766-8347 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 818 424-5297 +title: Junior Janitorial Janitor +userPassword: Password1 +uid: SmithsoB +givenName: Briney +mail: SmithsoB@7f9fd637b37c466c8750e6820ea2a8fc.bitwarden.com +carLicense: FY6AVO +departmentNumber: 5448 +employeeType: Normal +homePhone: +1 818 166-4228 +initials: B. S. +mobile: +1 818 684-7848 +pager: +1 818 785-5540 +roomNumber: 8156 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Selva Hillidge,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selva Hillidge +sn: Hillidge +description: This is Selva Hillidge's description +facsimileTelephoneNumber: +1 415 188-7065 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 863-4876 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: HillidgS +givenName: Selva +mail: HillidgS@7aa1caf88bc749828056470f21af9f2a.bitwarden.com +carLicense: QHPHB9 +departmentNumber: 7763 +employeeType: Contract +homePhone: +1 415 747-8479 +initials: S. H. +mobile: +1 415 247-9851 +pager: +1 415 535-9797 +roomNumber: 8637 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Babbie Kaczmarek +sn: Kaczmarek +description: This is Babbie Kaczmarek's description +facsimileTelephoneNumber: +1 415 132-4234 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 847-9759 +title: Master Peons Director +userPassword: Password1 +uid: KaczmarB +givenName: Babbie +mail: KaczmarB@6b3525e677274247ac9aa1be4373f97d.bitwarden.com +carLicense: 49VL9U +departmentNumber: 7690 +employeeType: Contract +homePhone: +1 415 142-2476 +initials: B. K. +mobile: +1 415 179-9664 +pager: +1 415 284-2147 +roomNumber: 9324 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Parks Pavitt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parks Pavitt +sn: Pavitt +description: This is Parks Pavitt's description +facsimileTelephoneNumber: +1 213 194-5391 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 743-6887 +title: Master Payroll Evangelist +userPassword: Password1 +uid: PavittP +givenName: Parks +mail: PavittP@3956b0c83ae444e7940e65fc8c4220d5.bitwarden.com +carLicense: F3OX3S +departmentNumber: 5705 +employeeType: Employee +homePhone: +1 213 877-8188 +initials: P. P. +mobile: +1 213 857-4433 +pager: +1 213 966-1308 +roomNumber: 8940 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Design Pepler,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Design Pepler +sn: Pepler +description: This is Design Pepler's description +facsimileTelephoneNumber: +1 510 805-6420 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 411-8051 +title: Junior Product Development Visionary +userPassword: Password1 +uid: PeplerD +givenName: Design +mail: PeplerD@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com +carLicense: 28BC7X +departmentNumber: 8218 +employeeType: Contract +homePhone: +1 510 688-9620 +initials: D. P. +mobile: +1 510 645-6325 +pager: +1 510 928-9827 +roomNumber: 9677 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bennesa McLachlan +sn: McLachlan +description: This is Bennesa McLachlan's description +facsimileTelephoneNumber: +1 408 731-4512 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 196-6392 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: McLachlB +givenName: Bennesa +mail: McLachlB@e89ca6a0c26a42d387c16cb15d267c2d.bitwarden.com +carLicense: 2DTI3R +departmentNumber: 8648 +employeeType: Normal +homePhone: +1 408 550-1001 +initials: B. M. +mobile: +1 408 142-4824 +pager: +1 408 265-8209 +roomNumber: 8557 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shahram Dpierre,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shahram Dpierre +sn: Dpierre +description: This is Shahram Dpierre's description +facsimileTelephoneNumber: +1 408 516-7503 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 575-6638 +title: Associate Peons Dictator +userPassword: Password1 +uid: DpierreS +givenName: Shahram +mail: DpierreS@fb2a9835511b44fba3bde94e482a2f71.bitwarden.com +carLicense: 3P291S +departmentNumber: 3552 +employeeType: Employee +homePhone: +1 408 922-3162 +initials: S. D. +mobile: +1 408 927-1752 +pager: +1 408 972-7613 +roomNumber: 9680 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sylvain Dans,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sylvain Dans +sn: Dans +description: This is Sylvain Dans's description +facsimileTelephoneNumber: +1 408 677-2439 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 640-5173 +title: Associate Peons Pinhead +userPassword: Password1 +uid: DansS +givenName: Sylvain +mail: DansS@53364c09d04c41208741c1b0a7953a20.bitwarden.com +carLicense: AR78C9 +departmentNumber: 8910 +employeeType: Contract +homePhone: +1 408 739-1874 +initials: S. D. +mobile: +1 408 428-8294 +pager: +1 408 881-6865 +roomNumber: 8932 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Phuoc Vu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phuoc Vu +sn: Vu +description: This is Phuoc Vu's description +facsimileTelephoneNumber: +1 510 426-7472 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 510 474-7509 +title: Master Administrative President +userPassword: Password1 +uid: VuP +givenName: Phuoc +mail: VuP@4bb54633dfd2486b94bd9f9680212641.bitwarden.com +carLicense: YUUAHV +departmentNumber: 9810 +employeeType: Employee +homePhone: +1 510 967-6651 +initials: P. V. +mobile: +1 510 896-3081 +pager: +1 510 105-7542 +roomNumber: 8575 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Candide Elhamahmy,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candide Elhamahmy +sn: Elhamahmy +description: This is Candide Elhamahmy's description +facsimileTelephoneNumber: +1 510 277-8443 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 349-7473 +title: Chief Management Warrior +userPassword: Password1 +uid: ElhamahC +givenName: Candide +mail: ElhamahC@dc7bbfc76a234dc7b7d174cbbe395c0b.bitwarden.com +carLicense: HIORU1 +departmentNumber: 2700 +employeeType: Normal +homePhone: +1 510 274-1509 +initials: C. E. +mobile: +1 510 508-7560 +pager: +1 510 252-7870 +roomNumber: 8128 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sarine Hopley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarine Hopley +sn: Hopley +description: This is Sarine Hopley's description +facsimileTelephoneNumber: +1 408 323-3353 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 210-1195 +title: Master Administrative Visionary +userPassword: Password1 +uid: HopleyS +givenName: Sarine +mail: HopleyS@9ce0b7ad2b3b48a6b3648a683329edc8.bitwarden.com +carLicense: 6KF72D +departmentNumber: 9977 +employeeType: Employee +homePhone: +1 408 693-9969 +initials: S. H. +mobile: +1 408 879-2999 +pager: +1 408 449-1445 +roomNumber: 9694 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Velma Brasset,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Velma Brasset +sn: Brasset +description: This is Velma Brasset's description +facsimileTelephoneNumber: +1 804 808-6891 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 584-3384 +title: Supreme Janitorial Stooge +userPassword: Password1 +uid: BrassetV +givenName: Velma +mail: BrassetV@83b93a170743455c988185ea6212d71d.bitwarden.com +carLicense: NJJ345 +departmentNumber: 3097 +employeeType: Employee +homePhone: +1 804 995-8408 +initials: V. B. +mobile: +1 804 543-7240 +pager: +1 804 980-7108 +roomNumber: 8503 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clemmie Brower,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clemmie Brower +sn: Brower +description: This is Clemmie Brower's description +facsimileTelephoneNumber: +1 408 865-2338 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 814-1118 +title: Associate Product Development Engineer +userPassword: Password1 +uid: BrowerC +givenName: Clemmie +mail: BrowerC@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com +carLicense: NMCE7R +departmentNumber: 6515 +employeeType: Normal +homePhone: +1 408 635-9566 +initials: C. B. +mobile: +1 408 965-1918 +pager: +1 408 295-5888 +roomNumber: 9350 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Drudy Badger,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drudy Badger +sn: Badger +description: This is Drudy Badger's description +facsimileTelephoneNumber: +1 510 776-3344 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 510 946-7447 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: BadgerD +givenName: Drudy +mail: BadgerD@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com +carLicense: VA6LF7 +departmentNumber: 1679 +employeeType: Normal +homePhone: +1 510 145-1623 +initials: D. B. +mobile: +1 510 606-3607 +pager: +1 510 537-9592 +roomNumber: 8659 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oralle Jedrysiak +sn: Jedrysiak +description: This is Oralle Jedrysiak's description +facsimileTelephoneNumber: +1 818 791-9147 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 151-5964 +title: Chief Human Resources Figurehead +userPassword: Password1 +uid: JedrysiO +givenName: Oralle +mail: JedrysiO@2ef3a4093f014684b569f775d65baa2d.bitwarden.com +carLicense: UVG6Y8 +departmentNumber: 2993 +employeeType: Contract +homePhone: +1 818 779-1082 +initials: O. J. +mobile: +1 818 959-7094 +pager: +1 818 145-6781 +roomNumber: 8194 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kimmy Nagaraj,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kimmy Nagaraj +sn: Nagaraj +description: This is Kimmy Nagaraj's description +facsimileTelephoneNumber: +1 510 381-1253 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 639-9236 +title: Junior Management Stooge +userPassword: Password1 +uid: NagarajK +givenName: Kimmy +mail: NagarajK@01636af448174d9e81627003646ae048.bitwarden.com +carLicense: WUTTK1 +departmentNumber: 2068 +employeeType: Normal +homePhone: +1 510 253-7950 +initials: K. N. +mobile: +1 510 130-5125 +pager: +1 510 434-2846 +roomNumber: 8175 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaw Masciarelli +sn: Masciarelli +description: This is Shaw Masciarelli's description +facsimileTelephoneNumber: +1 415 886-7029 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 353-3596 +title: Master Human Resources Vice President +userPassword: Password1 +uid: MasciarS +givenName: Shaw +mail: MasciarS@64472d4bb2754862940627d944b8828a.bitwarden.com +carLicense: HXE36G +departmentNumber: 1267 +employeeType: Normal +homePhone: +1 415 280-4419 +initials: S. M. +mobile: +1 415 294-5826 +pager: +1 415 833-8902 +roomNumber: 9768 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Torrie Lai,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Torrie Lai +sn: Lai +description: This is Torrie Lai's description +facsimileTelephoneNumber: +1 408 907-2749 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 280-1974 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: LaiT +givenName: Torrie +mail: LaiT@52e0e9f6cfbd4d388e2c16ea365b21a0.bitwarden.com +carLicense: 81NW8L +departmentNumber: 5986 +employeeType: Employee +homePhone: +1 408 382-2336 +initials: T. L. +mobile: +1 408 509-9849 +pager: +1 408 503-1440 +roomNumber: 8030 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bryon Bannister,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryon Bannister +sn: Bannister +description: This is Bryon Bannister's description +facsimileTelephoneNumber: +1 415 748-6665 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 488-2886 +title: Master Administrative Director +userPassword: Password1 +uid: BannistB +givenName: Bryon +mail: BannistB@6636a4865c34403b8e78c60d39c88859.bitwarden.com +carLicense: LXH9MF +departmentNumber: 9659 +employeeType: Contract +homePhone: +1 415 164-8771 +initials: B. B. +mobile: +1 415 412-2126 +pager: +1 415 108-7902 +roomNumber: 9866 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlyn Nizamuddin +sn: Nizamuddin +description: This is Karlyn Nizamuddin's description +facsimileTelephoneNumber: +1 510 459-2086 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 519-2298 +title: Supreme Janitorial Grunt +userPassword: Password1 +uid: NizamudK +givenName: Karlyn +mail: NizamudK@5b2fc222b3cc4e338ab7a0b7bd08ce8f.bitwarden.com +carLicense: I8I1AA +departmentNumber: 3846 +employeeType: Employee +homePhone: +1 510 734-8809 +initials: K. N. +mobile: +1 510 144-4644 +pager: +1 510 801-4353 +roomNumber: 9393 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Melford Charter,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melford Charter +sn: Charter +description: This is Melford Charter's description +facsimileTelephoneNumber: +1 818 578-8421 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 818 247-7925 +title: Supreme Administrative Writer +userPassword: Password1 +uid: CharterM +givenName: Melford +mail: CharterM@7c92d6dfba144f9587593ce6eeb4024f.bitwarden.com +carLicense: 5TYHDF +departmentNumber: 9814 +employeeType: Contract +homePhone: +1 818 172-2397 +initials: M. C. +mobile: +1 818 215-7311 +pager: +1 818 582-4148 +roomNumber: 9749 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Meriel Tota,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meriel Tota +sn: Tota +description: This is Meriel Tota's description +facsimileTelephoneNumber: +1 213 746-2897 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 389-2900 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: TotaM +givenName: Meriel +mail: TotaM@f190d7cfec0941b2829b0757aff4e20f.bitwarden.com +carLicense: R7VY5S +departmentNumber: 5269 +employeeType: Normal +homePhone: +1 213 761-1891 +initials: M. T. +mobile: +1 213 535-7144 +pager: +1 213 797-2337 +roomNumber: 8232 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anwar Starkebaum +sn: Starkebaum +description: This is Anwar Starkebaum's description +facsimileTelephoneNumber: +1 206 182-5467 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 657-8481 +title: Junior Administrative Technician +userPassword: Password1 +uid: StarkebA +givenName: Anwar +mail: StarkebA@125db6eb897d4dc09e52aa3ed3ba2ff6.bitwarden.com +carLicense: A2VDTU +departmentNumber: 9799 +employeeType: Employee +homePhone: +1 206 757-4021 +initials: A. S. +mobile: +1 206 750-3628 +pager: +1 206 863-2902 +roomNumber: 8130 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blanch Eskildsen +sn: Eskildsen +description: This is Blanch Eskildsen's description +facsimileTelephoneNumber: +1 415 657-6799 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 415 546-7622 +title: Junior Product Development Figurehead +userPassword: Password1 +uid: EskildsB +givenName: Blanch +mail: EskildsB@c33b0066e4a94f2895f1ce062cf2a5b2.bitwarden.com +carLicense: T7DQ4U +departmentNumber: 5895 +employeeType: Normal +homePhone: +1 415 960-2851 +initials: B. E. +mobile: +1 415 969-5566 +pager: +1 415 969-6664 +roomNumber: 9696 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Darrel Samora,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrel Samora +sn: Samora +description: This is Darrel Samora's description +facsimileTelephoneNumber: +1 804 451-4399 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 839-3939 +title: Associate Management Manager +userPassword: Password1 +uid: SamoraD +givenName: Darrel +mail: SamoraD@8a049b49f80d420a99b91944b3a9e703.bitwarden.com +carLicense: SRYM63 +departmentNumber: 1531 +employeeType: Normal +homePhone: +1 804 119-9219 +initials: D. S. +mobile: +1 804 578-4290 +pager: +1 804 887-3955 +roomNumber: 8032 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gabi Fares,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gabi Fares +sn: Fares +description: This is Gabi Fares's description +facsimileTelephoneNumber: +1 510 989-4909 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 910-1857 +title: Master Peons Visionary +userPassword: Password1 +uid: FaresG +givenName: Gabi +mail: FaresG@18205705f4aa44e78c4d1ab11d74972d.bitwarden.com +carLicense: JN4146 +departmentNumber: 9322 +employeeType: Normal +homePhone: +1 510 273-2223 +initials: G. F. +mobile: +1 510 606-7492 +pager: +1 510 640-8528 +roomNumber: 8668 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bao Byrd,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bao Byrd +sn: Byrd +description: This is Bao Byrd's description +facsimileTelephoneNumber: +1 804 828-4134 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 221-3081 +title: Associate Management Fellow +userPassword: Password1 +uid: ByrdB +givenName: Bao +mail: ByrdB@261b23ab87dc475a83d11a0978547d13.bitwarden.com +carLicense: JYALF3 +departmentNumber: 1682 +employeeType: Employee +homePhone: +1 804 120-6807 +initials: B. B. +mobile: +1 804 714-6752 +pager: +1 804 744-3414 +roomNumber: 8938 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trev EhningerCuervo +sn: EhningerCuervo +description: This is Trev EhningerCuervo's description +facsimileTelephoneNumber: +1 408 949-5160 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 167-4780 +title: Chief Human Resources Madonna +userPassword: Password1 +uid: EhningeT +givenName: Trev +mail: EhningeT@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com +carLicense: C5AF35 +departmentNumber: 4357 +employeeType: Employee +homePhone: +1 408 109-7481 +initials: T. E. +mobile: +1 408 381-7983 +pager: +1 408 723-7641 +roomNumber: 8774 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wilf Rodenfels,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilf Rodenfels +sn: Rodenfels +description: This is Wilf Rodenfels's description +facsimileTelephoneNumber: +1 510 913-6297 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 510 541-2410 +title: Associate Peons Punk +userPassword: Password1 +uid: RodenfeW +givenName: Wilf +mail: RodenfeW@a0afbb1124764d928b9fba2f48eaa17d.bitwarden.com +carLicense: E6Q079 +departmentNumber: 6342 +employeeType: Employee +homePhone: +1 510 982-1692 +initials: W. R. +mobile: +1 510 430-5626 +pager: +1 510 825-5106 +roomNumber: 9690 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeri Gupton,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeri Gupton +sn: Gupton +description: This is Jeri Gupton's description +facsimileTelephoneNumber: +1 415 430-4615 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 210-8174 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: GuptonJ +givenName: Jeri +mail: GuptonJ@0849cc8e014d4858afd4576e05a417c0.bitwarden.com +carLicense: AJO7JK +departmentNumber: 2960 +employeeType: Normal +homePhone: +1 415 109-7094 +initials: J. G. +mobile: +1 415 549-9847 +pager: +1 415 109-5189 +roomNumber: 8601 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Didar Brooksbank,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Didar Brooksbank +sn: Brooksbank +description: This is Didar Brooksbank's description +facsimileTelephoneNumber: +1 804 544-7268 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 804 497-7654 +title: Junior Payroll Punk +userPassword: Password1 +uid: BrooksbD +givenName: Didar +mail: BrooksbD@7448491b00a74a3e95be2c2010be9a72.bitwarden.com +carLicense: 4WO6XQ +departmentNumber: 1094 +employeeType: Contract +homePhone: +1 804 173-8469 +initials: D. B. +mobile: +1 804 275-6911 +pager: +1 804 161-8946 +roomNumber: 9330 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashraf Grigsby +sn: Grigsby +description: This is Ashraf Grigsby's description +facsimileTelephoneNumber: +1 804 742-2058 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 812-8463 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: GrigsbyA +givenName: Ashraf +mail: GrigsbyA@3bfc3de402e042a394d461b86f93128b.bitwarden.com +carLicense: LHXJM2 +departmentNumber: 6296 +employeeType: Normal +homePhone: +1 804 979-6555 +initials: A. G. +mobile: +1 804 317-9709 +pager: +1 804 400-7966 +roomNumber: 9599 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cathe Malone,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathe Malone +sn: Malone +description: This is Cathe Malone's description +facsimileTelephoneNumber: +1 206 516-8980 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 618-1613 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: MaloneC +givenName: Cathe +mail: MaloneC@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com +carLicense: G50W0N +departmentNumber: 2061 +employeeType: Normal +homePhone: +1 206 368-2446 +initials: C. M. +mobile: +1 206 242-1709 +pager: +1 206 731-7708 +roomNumber: 9137 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Evey Haddad,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evey Haddad +sn: Haddad +description: This is Evey Haddad's description +facsimileTelephoneNumber: +1 415 377-1297 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 295-6689 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: HaddadE +givenName: Evey +mail: HaddadE@a8c73be9cd69486db83d92f072753b6a.bitwarden.com +carLicense: 4YIPKK +departmentNumber: 4602 +employeeType: Normal +homePhone: +1 415 335-8744 +initials: E. H. +mobile: +1 415 716-6223 +pager: +1 415 762-6602 +roomNumber: 8044 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ginette Smoot,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginette Smoot +sn: Smoot +description: This is Ginette Smoot's description +facsimileTelephoneNumber: +1 213 397-5001 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 213 385-2046 +title: Master Payroll Mascot +userPassword: Password1 +uid: SmootG +givenName: Ginette +mail: SmootG@fdf824816adf41dbba98ed5c326be597.bitwarden.com +carLicense: BLMK8S +departmentNumber: 4601 +employeeType: Employee +homePhone: +1 213 608-8087 +initials: G. S. +mobile: +1 213 402-1759 +pager: +1 213 415-4886 +roomNumber: 8912 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dorita Heffner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorita Heffner +sn: Heffner +description: This is Dorita Heffner's description +facsimileTelephoneNumber: +1 510 408-6148 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 794-7149 +title: Associate Product Development Dictator +userPassword: Password1 +uid: HeffnerD +givenName: Dorita +mail: HeffnerD@ea33a214953b4a6b925d5d0efa8ea38e.bitwarden.com +carLicense: 8K1G4B +departmentNumber: 9798 +employeeType: Normal +homePhone: +1 510 625-6265 +initials: D. H. +mobile: +1 510 544-5392 +pager: +1 510 500-1197 +roomNumber: 9944 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melvin Medefesser +sn: Medefesser +description: This is Melvin Medefesser's description +facsimileTelephoneNumber: +1 408 267-1077 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 408 308-2977 +title: Associate Human Resources Stooge +userPassword: Password1 +uid: MedefesM +givenName: Melvin +mail: MedefesM@35b79d47268c45459bca63c56a16e1e7.bitwarden.com +carLicense: 1A2XSQ +departmentNumber: 4294 +employeeType: Employee +homePhone: +1 408 648-6874 +initials: M. M. +mobile: +1 408 703-7194 +pager: +1 408 142-1317 +roomNumber: 9351 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Reind Mufti,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reind Mufti +sn: Mufti +description: This is Reind Mufti's description +facsimileTelephoneNumber: +1 213 697-9916 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 805-1360 +title: Chief Management Artist +userPassword: Password1 +uid: MuftiR +givenName: Reind +mail: MuftiR@f96730e4fa6b40f5ba7deeeca51513e0.bitwarden.com +carLicense: MQ0D4T +departmentNumber: 6179 +employeeType: Employee +homePhone: +1 213 777-1014 +initials: R. M. +mobile: +1 213 477-5195 +pager: +1 213 740-8364 +roomNumber: 9068 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carolynn Dikens,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolynn Dikens +sn: Dikens +description: This is Carolynn Dikens's description +facsimileTelephoneNumber: +1 408 303-7445 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 326-7711 +title: Associate Payroll Developer +userPassword: Password1 +uid: DikensC +givenName: Carolynn +mail: DikensC@a69feaacad634790a69fdf1db6b0a8d9.bitwarden.com +carLicense: RA086T +departmentNumber: 6081 +employeeType: Normal +homePhone: +1 408 211-8581 +initials: C. D. +mobile: +1 408 816-1996 +pager: +1 408 220-6568 +roomNumber: 9913 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meredith Parmenter +sn: Parmenter +description: This is Meredith Parmenter's description +facsimileTelephoneNumber: +1 818 335-5066 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 729-2452 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: ParmentM +givenName: Meredith +mail: ParmentM@c6381227edb84dfc90689a9cc3080334.bitwarden.com +carLicense: 97MHFD +departmentNumber: 8888 +employeeType: Employee +homePhone: +1 818 396-5941 +initials: M. P. +mobile: +1 818 138-4462 +pager: +1 818 531-6976 +roomNumber: 9375 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lurleen Eberle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lurleen Eberle +sn: Eberle +description: This is Lurleen Eberle's description +facsimileTelephoneNumber: +1 408 664-6294 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 796-4324 +title: Chief Product Development Vice President +userPassword: Password1 +uid: EberleL +givenName: Lurleen +mail: EberleL@2fa76c066c6743bba9db4e894f651e69.bitwarden.com +carLicense: MWO3VD +departmentNumber: 3340 +employeeType: Employee +homePhone: +1 408 932-9692 +initials: L. E. +mobile: +1 408 177-6600 +pager: +1 408 922-8848 +roomNumber: 9134 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tandy Fssup,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tandy Fssup +sn: Fssup +description: This is Tandy Fssup's description +facsimileTelephoneNumber: +1 510 499-4832 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 510 797-5609 +title: Supreme Peons Assistant +userPassword: Password1 +uid: FssupT +givenName: Tandy +mail: FssupT@b69339dab59940869a3e5a49d58c958e.bitwarden.com +carLicense: 9UJTE8 +departmentNumber: 4652 +employeeType: Contract +homePhone: +1 510 126-1145 +initials: T. F. +mobile: +1 510 746-8383 +pager: +1 510 429-3856 +roomNumber: 9995 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Datas Simmonds,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Datas Simmonds +sn: Simmonds +description: This is Datas Simmonds's description +facsimileTelephoneNumber: +1 415 304-2517 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 513-8942 +title: Chief Product Development Assistant +userPassword: Password1 +uid: SimmondD +givenName: Datas +mail: SimmondD@63a11e75c405416bb483a040d9d4e6c0.bitwarden.com +carLicense: W86B5M +departmentNumber: 4188 +employeeType: Normal +homePhone: +1 415 737-6423 +initials: D. S. +mobile: +1 415 174-7378 +pager: +1 415 144-9545 +roomNumber: 8541 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Darline Frankenberger,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darline Frankenberger +sn: Frankenberger +description: This is Darline Frankenberger's description +facsimileTelephoneNumber: +1 818 766-1194 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 806-8594 +title: Junior Management Assistant +userPassword: Password1 +uid: FrankenD +givenName: Darline +mail: FrankenD@b5537025c24b4ad290ca22694ec8fb06.bitwarden.com +carLicense: BPQOB7 +departmentNumber: 6874 +employeeType: Normal +homePhone: +1 818 573-4409 +initials: D. F. +mobile: +1 818 447-5561 +pager: +1 818 713-4969 +roomNumber: 8895 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Merry Cadtools,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merry Cadtools +sn: Cadtools +description: This is Merry Cadtools's description +facsimileTelephoneNumber: +1 818 335-2735 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 808-5207 +title: Chief Payroll Artist +userPassword: Password1 +uid: CadtoolM +givenName: Merry +mail: CadtoolM@534c35ac167944c782718311b9e185bc.bitwarden.com +carLicense: P5HL7G +departmentNumber: 8684 +employeeType: Employee +homePhone: +1 818 844-5968 +initials: M. C. +mobile: +1 818 430-6685 +pager: +1 818 592-1003 +roomNumber: 8977 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chabane Hornung,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chabane Hornung +sn: Hornung +description: This is Chabane Hornung's description +facsimileTelephoneNumber: +1 206 289-8639 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 206 262-3221 +title: Associate Peons Assistant +userPassword: Password1 +uid: HornungC +givenName: Chabane +mail: HornungC@b5a44095f2374197a4ff741b9417f6b1.bitwarden.com +carLicense: S3YVAP +departmentNumber: 8541 +employeeType: Normal +homePhone: +1 206 703-3060 +initials: C. H. +mobile: +1 206 529-2728 +pager: +1 206 672-6587 +roomNumber: 8777 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Satoshi Yogeswaran +sn: Yogeswaran +description: This is Satoshi Yogeswaran's description +facsimileTelephoneNumber: +1 213 706-6951 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 682-6841 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: YogeswaS +givenName: Satoshi +mail: YogeswaS@f8a322034d5e45cc8676b5e9fe5f5d0f.bitwarden.com +carLicense: LU7X5C +departmentNumber: 2863 +employeeType: Employee +homePhone: +1 213 958-4476 +initials: S. Y. +mobile: +1 213 990-5050 +pager: +1 213 563-2611 +roomNumber: 8120 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Colm Yassa,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Colm Yassa +sn: Yassa +description: This is Colm Yassa's description +facsimileTelephoneNumber: +1 415 912-7983 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 978-2763 +title: Chief Peons Developer +userPassword: Password1 +uid: YassaC +givenName: Colm +mail: YassaC@b968f655b96e4ab58fcc2e120f71a7b7.bitwarden.com +carLicense: IR2I1X +departmentNumber: 9451 +employeeType: Employee +homePhone: +1 415 656-9417 +initials: C. Y. +mobile: +1 415 959-3315 +pager: +1 415 971-9661 +roomNumber: 8609 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jillayne Cobb,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jillayne Cobb +sn: Cobb +description: This is Jillayne Cobb's description +facsimileTelephoneNumber: +1 415 922-6066 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 733-9947 +title: Chief Peons Visionary +userPassword: Password1 +uid: CobbJ +givenName: Jillayne +mail: CobbJ@3009937061fa44e08033cd2d77480708.bitwarden.com +carLicense: KGE8H8 +departmentNumber: 4746 +employeeType: Normal +homePhone: +1 415 324-8226 +initials: J. C. +mobile: +1 415 691-9496 +pager: +1 415 897-4743 +roomNumber: 9820 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ruby Brotherton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruby Brotherton +sn: Brotherton +description: This is Ruby Brotherton's description +facsimileTelephoneNumber: +1 510 304-5451 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 557-8014 +title: Junior Peons Developer +userPassword: Password1 +uid: BrotherR +givenName: Ruby +mail: BrotherR@878c3f08cca44fc1891338a97a6ec462.bitwarden.com +carLicense: E44K5B +departmentNumber: 7200 +employeeType: Normal +homePhone: +1 510 245-3832 +initials: R. B. +mobile: +1 510 918-9760 +pager: +1 510 316-9700 +roomNumber: 9433 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Marjie Geyer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marjie Geyer +sn: Geyer +description: This is Marjie Geyer's description +facsimileTelephoneNumber: +1 206 523-9424 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 206 652-5256 +title: Master Product Development Figurehead +userPassword: Password1 +uid: GeyerM +givenName: Marjie +mail: GeyerM@25d2cd968a404f8ab3144ef7402e2e12.bitwarden.com +carLicense: 0EB8B7 +departmentNumber: 4303 +employeeType: Contract +homePhone: +1 206 378-8799 +initials: M. G. +mobile: +1 206 813-7933 +pager: +1 206 567-9614 +roomNumber: 8261 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=McGee Schreiber,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: McGee Schreiber +sn: Schreiber +description: This is McGee Schreiber's description +facsimileTelephoneNumber: +1 415 541-9396 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 367-9351 +title: Junior Peons Artist +userPassword: Password1 +uid: SchreibM +givenName: McGee +mail: SchreibM@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com +carLicense: OEDIJ3 +departmentNumber: 8054 +employeeType: Normal +homePhone: +1 415 181-6158 +initials: M. S. +mobile: +1 415 267-5751 +pager: +1 415 686-9928 +roomNumber: 9730 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Myrna Befanis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrna Befanis +sn: Befanis +description: This is Myrna Befanis's description +facsimileTelephoneNumber: +1 510 844-8966 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 660-6193 +title: Supreme Product Testing President +userPassword: Password1 +uid: BefanisM +givenName: Myrna +mail: BefanisM@6aceddcd02a24d54bf8652b3d2b2d14f.bitwarden.com +carLicense: 3XNUQK +departmentNumber: 8453 +employeeType: Normal +homePhone: +1 510 911-4062 +initials: M. B. +mobile: +1 510 786-6618 +pager: +1 510 942-9828 +roomNumber: 8038 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roddy Gerlinsky +sn: Gerlinsky +description: This is Roddy Gerlinsky's description +facsimileTelephoneNumber: +1 804 278-1930 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 683-8819 +title: Master Payroll Manager +userPassword: Password1 +uid: GerlinsR +givenName: Roddy +mail: GerlinsR@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com +carLicense: EM2K4X +departmentNumber: 6685 +employeeType: Contract +homePhone: +1 804 597-5336 +initials: R. G. +mobile: +1 804 770-7372 +pager: +1 804 236-7121 +roomNumber: 8638 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maurine StJames,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurine StJames +sn: StJames +description: This is Maurine StJames's description +facsimileTelephoneNumber: +1 213 697-6593 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 799-4074 +title: Supreme Payroll Grunt +userPassword: Password1 +uid: StJamesM +givenName: Maurine +mail: StJamesM@61f214f1d8524b3087f5851880215a12.bitwarden.com +carLicense: OLJ4YP +departmentNumber: 3856 +employeeType: Employee +homePhone: +1 213 603-2572 +initials: M. S. +mobile: +1 213 416-7498 +pager: +1 213 552-5252 +roomNumber: 9432 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ebony DuBerger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ebony DuBerger +sn: DuBerger +description: This is Ebony DuBerger's description +facsimileTelephoneNumber: +1 510 155-5803 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 998-5975 +title: Chief Administrative President +userPassword: Password1 +uid: DuBergeE +givenName: Ebony +mail: DuBergeE@91cbd6d172d049aa810e0a17e3a01178.bitwarden.com +carLicense: 2VF8CI +departmentNumber: 4093 +employeeType: Contract +homePhone: +1 510 304-2480 +initials: E. D. +mobile: +1 510 452-9892 +pager: +1 510 586-6176 +roomNumber: 8507 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Donnette Leighton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donnette Leighton +sn: Leighton +description: This is Donnette Leighton's description +facsimileTelephoneNumber: +1 213 590-3832 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 575-3838 +title: Associate Management President +userPassword: Password1 +uid: LeightoD +givenName: Donnette +mail: LeightoD@ecd15df669db43f58dc8c85e172bc379.bitwarden.com +carLicense: 2D460P +departmentNumber: 2421 +employeeType: Normal +homePhone: +1 213 295-7661 +initials: D. L. +mobile: +1 213 665-6546 +pager: +1 213 748-4242 +roomNumber: 9478 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Daryl Broca,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daryl Broca +sn: Broca +description: This is Daryl Broca's description +facsimileTelephoneNumber: +1 206 327-9060 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 209-5529 +title: Associate Administrative Director +userPassword: Password1 +uid: BrocaD +givenName: Daryl +mail: BrocaD@777f3fb506bf4a578c7c26472bf8bb1e.bitwarden.com +carLicense: YFJ7GB +departmentNumber: 6513 +employeeType: Employee +homePhone: +1 206 908-2307 +initials: D. B. +mobile: +1 206 344-4513 +pager: +1 206 871-3415 +roomNumber: 8485 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cristabel Orth,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristabel Orth +sn: Orth +description: This is Cristabel Orth's description +facsimileTelephoneNumber: +1 818 419-7229 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 555-7996 +title: Master Peons Stooge +userPassword: Password1 +uid: OrthC +givenName: Cristabel +mail: OrthC@e37545ccfd5e4e4281ccd855336fcf03.bitwarden.com +carLicense: 74TAEB +departmentNumber: 4593 +employeeType: Normal +homePhone: +1 818 320-4873 +initials: C. O. +mobile: +1 818 368-5925 +pager: +1 818 327-8060 +roomNumber: 9650 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Constantia Lundy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constantia Lundy +sn: Lundy +description: This is Constantia Lundy's description +facsimileTelephoneNumber: +1 510 429-2463 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 749-5975 +title: Chief Payroll Fellow +userPassword: Password1 +uid: LundyC +givenName: Constantia +mail: LundyC@8ad57fa5a0014d7d86bb326fd3c22de8.bitwarden.com +carLicense: ASXOBF +departmentNumber: 2702 +employeeType: Employee +homePhone: +1 510 987-3752 +initials: C. L. +mobile: +1 510 209-6652 +pager: +1 510 493-4660 +roomNumber: 9186 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morris Ehrlich +sn: Ehrlich +description: This is Morris Ehrlich's description +facsimileTelephoneNumber: +1 510 137-9467 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 368-2317 +title: Master Product Testing Director +userPassword: Password1 +uid: EhrlichM +givenName: Morris +mail: EhrlichM@0ffbff9053044f38bd1b7473f0a9a2e0.bitwarden.com +carLicense: UQMH4V +departmentNumber: 7203 +employeeType: Employee +homePhone: +1 510 608-2405 +initials: M. E. +mobile: +1 510 893-3115 +pager: +1 510 904-9818 +roomNumber: 9331 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Shashi Amini,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shashi Amini +sn: Amini +description: This is Shashi Amini's description +facsimileTelephoneNumber: +1 206 812-4514 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 101-1790 +title: Chief Janitorial Janitor +userPassword: Password1 +uid: AminiS +givenName: Shashi +mail: AminiS@b23fe60aaafa49a2908f5eec32556f6f.bitwarden.com +carLicense: 04CK2Q +departmentNumber: 8459 +employeeType: Normal +homePhone: +1 206 971-2104 +initials: S. A. +mobile: +1 206 902-2821 +pager: +1 206 778-8096 +roomNumber: 8709 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shlomo Laferriere +sn: Laferriere +description: This is Shlomo Laferriere's description +facsimileTelephoneNumber: +1 415 374-3144 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 338-3036 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: LaferriS +givenName: Shlomo +mail: LaferriS@20e4624ef958401cb7727678bb609188.bitwarden.com +carLicense: QWOPWU +departmentNumber: 8312 +employeeType: Contract +homePhone: +1 415 220-6316 +initials: S. L. +mobile: +1 415 234-3070 +pager: +1 415 479-9155 +roomNumber: 9469 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Leola Richard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leola Richard +sn: Richard +description: This is Leola Richard's description +facsimileTelephoneNumber: +1 415 881-4947 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 173-3604 +title: Associate Management Assistant +userPassword: Password1 +uid: RichardL +givenName: Leola +mail: RichardL@bc55479898d74c7080b7e1e95bbf0012.bitwarden.com +carLicense: NJXP3L +departmentNumber: 1171 +employeeType: Contract +homePhone: +1 415 817-5964 +initials: L. R. +mobile: +1 415 464-2232 +pager: +1 415 953-8684 +roomNumber: 9774 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jai Pascas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jai Pascas +sn: Pascas +description: This is Jai Pascas's description +facsimileTelephoneNumber: +1 415 755-1060 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 436-7599 +title: Associate Human Resources Pinhead +userPassword: Password1 +uid: PascasJ +givenName: Jai +mail: PascasJ@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com +carLicense: EYN5UY +departmentNumber: 9907 +employeeType: Employee +homePhone: +1 415 221-8646 +initials: J. P. +mobile: +1 415 568-1047 +pager: +1 415 934-7065 +roomNumber: 9188 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Petronille Receiving,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petronille Receiving +sn: Receiving +description: This is Petronille Receiving's description +facsimileTelephoneNumber: +1 818 512-4834 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 818 878-7773 +title: Chief Product Development Vice President +userPassword: Password1 +uid: ReceiviP +givenName: Petronille +mail: ReceiviP@0849cc8e014d4858afd4576e05a417c0.bitwarden.com +carLicense: 07LCKW +departmentNumber: 6399 +employeeType: Employee +homePhone: +1 818 175-3434 +initials: P. R. +mobile: +1 818 222-3227 +pager: +1 818 519-8510 +roomNumber: 8641 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sidonia Badza,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sidonia Badza +sn: Badza +description: This is Sidonia Badza's description +facsimileTelephoneNumber: +1 415 898-7917 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 311-7026 +title: Master Administrative Grunt +userPassword: Password1 +uid: BadzaS +givenName: Sidonia +mail: BadzaS@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com +carLicense: 0KA4CM +departmentNumber: 8375 +employeeType: Contract +homePhone: +1 415 108-8293 +initials: S. B. +mobile: +1 415 893-3874 +pager: +1 415 242-9001 +roomNumber: 9204 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hyacintha Morocz +sn: Morocz +description: This is Hyacintha Morocz's description +facsimileTelephoneNumber: +1 415 778-7551 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 626-2487 +title: Associate Human Resources Visionary +userPassword: Password1 +uid: MoroczH +givenName: Hyacintha +mail: MoroczH@50bf451998584438a3048a19956d7120.bitwarden.com +carLicense: 6UGOM7 +departmentNumber: 4948 +employeeType: Contract +homePhone: +1 415 879-3042 +initials: H. M. +mobile: +1 415 379-5553 +pager: +1 415 148-9757 +roomNumber: 8932 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Career Culkin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Career Culkin +sn: Culkin +description: This is Career Culkin's description +facsimileTelephoneNumber: +1 415 906-5481 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 323-4975 +title: Master Product Development Janitor +userPassword: Password1 +uid: CulkinC +givenName: Career +mail: CulkinC@4a8d7287d7f44feeb52346f4896c7bad.bitwarden.com +carLicense: 7OSN32 +departmentNumber: 6038 +employeeType: Contract +homePhone: +1 415 938-7244 +initials: C. C. +mobile: +1 415 552-5506 +pager: +1 415 580-2970 +roomNumber: 8761 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquie Sommerdorf +sn: Sommerdorf +description: This is Jacquie Sommerdorf's description +facsimileTelephoneNumber: +1 213 113-5173 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 213 617-7122 +title: Junior Product Development Engineer +userPassword: Password1 +uid: SommerdJ +givenName: Jacquie +mail: SommerdJ@c34ff4c9cd024e7eb996d78abb689848.bitwarden.com +carLicense: 77DSWA +departmentNumber: 6229 +employeeType: Employee +homePhone: +1 213 377-8734 +initials: J. S. +mobile: +1 213 306-2815 +pager: +1 213 436-2629 +roomNumber: 8518 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aubrey Mina,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aubrey Mina +sn: Mina +description: This is Aubrey Mina's description +facsimileTelephoneNumber: +1 415 431-6389 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 661-9238 +title: Junior Peons Assistant +userPassword: Password1 +uid: MinaA +givenName: Aubrey +mail: MinaA@5ce7099e829941498f32f6630dda9440.bitwarden.com +carLicense: TMQS4F +departmentNumber: 7237 +employeeType: Contract +homePhone: +1 415 142-5701 +initials: A. M. +mobile: +1 415 444-4846 +pager: +1 415 857-1321 +roomNumber: 8591 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wilhelmus Mandel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilhelmus Mandel +sn: Mandel +description: This is Wilhelmus Mandel's description +facsimileTelephoneNumber: +1 213 622-9563 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 654-2853 +title: Supreme Management Consultant +userPassword: Password1 +uid: MandelW +givenName: Wilhelmus +mail: MandelW@ba60a08b258046f98633fd3c737e4f83.bitwarden.com +carLicense: FV730G +departmentNumber: 7028 +employeeType: Normal +homePhone: +1 213 960-1249 +initials: W. M. +mobile: +1 213 689-2794 +pager: +1 213 137-9333 +roomNumber: 8660 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anya Kantor,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anya Kantor +sn: Kantor +description: This is Anya Kantor's description +facsimileTelephoneNumber: +1 510 198-9168 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 455-7629 +title: Associate Product Testing Janitor +userPassword: Password1 +uid: KantorA +givenName: Anya +mail: KantorA@281ce2096ed0496b9bf2ff2a6d46ed5b.bitwarden.com +carLicense: HKSM24 +departmentNumber: 6524 +employeeType: Employee +homePhone: +1 510 547-3966 +initials: A. K. +mobile: +1 510 790-9296 +pager: +1 510 407-7924 +roomNumber: 8957 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=National MacCarthy,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: National MacCarthy +sn: MacCarthy +description: This is National MacCarthy's description +facsimileTelephoneNumber: +1 510 265-8803 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 388-3936 +title: Master Product Development Writer +userPassword: Password1 +uid: MacCartN +givenName: National +mail: MacCartN@ccc8e04b90324a8e82f8a7a8473e9c5e.bitwarden.com +carLicense: S78NWG +departmentNumber: 5503 +employeeType: Contract +homePhone: +1 510 689-4936 +initials: N. M. +mobile: +1 510 182-6714 +pager: +1 510 493-1630 +roomNumber: 8702 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nissie Heile,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nissie Heile +sn: Heile +description: This is Nissie Heile's description +facsimileTelephoneNumber: +1 408 362-8018 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 632-5222 +title: Junior Management Assistant +userPassword: Password1 +uid: HeileN +givenName: Nissie +mail: HeileN@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com +carLicense: RUOPNA +departmentNumber: 9278 +employeeType: Contract +homePhone: +1 408 703-9918 +initials: N. H. +mobile: +1 408 648-5258 +pager: +1 408 887-6554 +roomNumber: 8607 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pac Popowycz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pac Popowycz +sn: Popowycz +description: This is Pac Popowycz's description +facsimileTelephoneNumber: +1 415 366-1228 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 871-7086 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: PopowycP +givenName: Pac +mail: PopowycP@1b72730ac3814cefac0b769b1824f8f3.bitwarden.com +carLicense: P4H0EG +departmentNumber: 2033 +employeeType: Employee +homePhone: +1 415 944-2242 +initials: P. P. +mobile: +1 415 969-9349 +pager: +1 415 271-9888 +roomNumber: 8010 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Blancha Cousineau,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blancha Cousineau +sn: Cousineau +description: This is Blancha Cousineau's description +facsimileTelephoneNumber: +1 206 481-7185 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 412-4578 +title: Junior Peons Architect +userPassword: Password1 +uid: CousineB +givenName: Blancha +mail: CousineB@18892b15c58d47f6840bb6c23b52349b.bitwarden.com +carLicense: QQTAOJ +departmentNumber: 2254 +employeeType: Contract +homePhone: +1 206 937-1469 +initials: B. C. +mobile: +1 206 541-7598 +pager: +1 206 444-6259 +roomNumber: 8907 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Harper McWaters,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harper McWaters +sn: McWaters +description: This is Harper McWaters's description +facsimileTelephoneNumber: +1 818 630-7196 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 818 670-8075 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: McWaterH +givenName: Harper +mail: McWaterH@b696b2494a974f2a9374a73c6b7ac6f1.bitwarden.com +carLicense: LDRCBH +departmentNumber: 1332 +employeeType: Normal +homePhone: +1 818 217-9016 +initials: H. M. +mobile: +1 818 777-1964 +pager: +1 818 910-9202 +roomNumber: 9279 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Adorne Bejar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adorne Bejar +sn: Bejar +description: This is Adorne Bejar's description +facsimileTelephoneNumber: +1 818 909-8946 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 764-7953 +title: Associate Product Development Punk +userPassword: Password1 +uid: BejarA +givenName: Adorne +mail: BejarA@a58fbd0af59142b59fca318bb0934c87.bitwarden.com +carLicense: A2A54J +departmentNumber: 8255 +employeeType: Contract +homePhone: +1 818 820-6323 +initials: A. B. +mobile: +1 818 196-5613 +pager: +1 818 260-4804 +roomNumber: 8505 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tdr Wetzel +sn: Wetzel +description: This is Tdr Wetzel's description +facsimileTelephoneNumber: +1 408 320-3841 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 747-4568 +title: Supreme Product Testing Visionary +userPassword: Password1 +uid: WetzelT +givenName: Tdr +mail: WetzelT@56764f80ffb24969b868fd703a8c92ea.bitwarden.com +carLicense: CVUKF7 +departmentNumber: 7392 +employeeType: Employee +homePhone: +1 408 993-3144 +initials: T. W. +mobile: +1 408 869-9562 +pager: +1 408 547-8799 +roomNumber: 9505 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lenee Marasco,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenee Marasco +sn: Marasco +description: This is Lenee Marasco's description +facsimileTelephoneNumber: +1 206 442-1333 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 985-8355 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: MarascoL +givenName: Lenee +mail: MarascoL@ff1a7b4761be4273abaf2ebcbaf85113.bitwarden.com +carLicense: 0A7M5G +departmentNumber: 2019 +employeeType: Contract +homePhone: +1 206 516-2016 +initials: L. M. +mobile: +1 206 845-5680 +pager: +1 206 857-9546 +roomNumber: 8391 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Reggi Hor,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reggi Hor +sn: Hor +description: This is Reggi Hor's description +facsimileTelephoneNumber: +1 408 106-8715 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 408 389-3047 +title: Master Product Testing Vice President +userPassword: Password1 +uid: HorR +givenName: Reggi +mail: HorR@9fc16f31309a4e5489f1a046e558b353.bitwarden.com +carLicense: D0OG0Q +departmentNumber: 3362 +employeeType: Normal +homePhone: +1 408 591-2351 +initials: R. H. +mobile: +1 408 468-9828 +pager: +1 408 927-3265 +roomNumber: 8691 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Andres Williford,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andres Williford +sn: Williford +description: This is Andres Williford's description +facsimileTelephoneNumber: +1 213 982-8204 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 485-7240 +title: Junior Management Mascot +userPassword: Password1 +uid: WillifoA +givenName: Andres +mail: WillifoA@b089600d85cc409eb4f207ab6f27e389.bitwarden.com +carLicense: SC9523 +departmentNumber: 4445 +employeeType: Employee +homePhone: +1 213 370-8283 +initials: A. W. +mobile: +1 213 440-9053 +pager: +1 213 151-3497 +roomNumber: 9229 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kwan Devault,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kwan Devault +sn: Devault +description: This is Kwan Devault's description +facsimileTelephoneNumber: +1 408 556-8963 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 516-1969 +title: Chief Human Resources Architect +userPassword: Password1 +uid: DevaultK +givenName: Kwan +mail: DevaultK@5b3c54f47fc64ffbbe62b2e499081d43.bitwarden.com +carLicense: IRQ2J1 +departmentNumber: 8796 +employeeType: Normal +homePhone: +1 408 790-3478 +initials: K. D. +mobile: +1 408 654-9427 +pager: +1 408 644-4636 +roomNumber: 9580 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibbie Lamm +sn: Lamm +description: This is Sibbie Lamm's description +facsimileTelephoneNumber: +1 408 678-4354 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 408 622-4619 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: LammS +givenName: Sibbie +mail: LammS@3ea21438af3c4a4f8255617efb256c4e.bitwarden.com +carLicense: B0NOB7 +departmentNumber: 7133 +employeeType: Normal +homePhone: +1 408 438-1404 +initials: S. L. +mobile: +1 408 818-5611 +pager: +1 408 705-9001 +roomNumber: 8958 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyanna Abdollahi +sn: Abdollahi +description: This is Dyanna Abdollahi's description +facsimileTelephoneNumber: +1 804 777-3940 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 313-7133 +title: Chief Administrative President +userPassword: Password1 +uid: AbdollaD +givenName: Dyanna +mail: AbdollaD@5c6902554d684605823ee60bd0935275.bitwarden.com +carLicense: SV6ED7 +departmentNumber: 1178 +employeeType: Employee +homePhone: +1 804 395-8441 +initials: D. A. +mobile: +1 804 749-6249 +pager: +1 804 650-7043 +roomNumber: 9711 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lionel Reinlie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lionel Reinlie +sn: Reinlie +description: This is Lionel Reinlie's description +facsimileTelephoneNumber: +1 415 313-6687 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 852-2010 +title: Master Payroll Assistant +userPassword: Password1 +uid: ReinlieL +givenName: Lionel +mail: ReinlieL@3385d9447e994f049c4412ecf2da5e48.bitwarden.com +carLicense: X31I55 +departmentNumber: 8490 +employeeType: Employee +homePhone: +1 415 857-3965 +initials: L. R. +mobile: +1 415 227-7117 +pager: +1 415 630-1888 +roomNumber: 8829 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gunter Glidewell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gunter Glidewell +sn: Glidewell +description: This is Gunter Glidewell's description +facsimileTelephoneNumber: +1 206 335-9970 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 284-7563 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: GlideweG +givenName: Gunter +mail: GlideweG@83797aadf07c4129b11845f5bb05984e.bitwarden.com +carLicense: QTDCT6 +departmentNumber: 7184 +employeeType: Normal +homePhone: +1 206 940-8522 +initials: G. G. +mobile: +1 206 299-6082 +pager: +1 206 568-6176 +roomNumber: 8258 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nick Brewer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nick Brewer +sn: Brewer +description: This is Nick Brewer's description +facsimileTelephoneNumber: +1 415 228-3055 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 415 175-6640 +title: Junior Peons Consultant +userPassword: Password1 +uid: BrewerN +givenName: Nick +mail: BrewerN@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com +carLicense: UTWAOY +departmentNumber: 6771 +employeeType: Employee +homePhone: +1 415 880-3495 +initials: N. B. +mobile: +1 415 674-2977 +pager: +1 415 927-7776 +roomNumber: 8157 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Josefa Kilburn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Josefa Kilburn +sn: Kilburn +description: This is Josefa Kilburn's description +facsimileTelephoneNumber: +1 415 357-8161 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 724-6911 +title: Master Management Artist +userPassword: Password1 +uid: KilburnJ +givenName: Josefa +mail: KilburnJ@bdf4207a20c5486ca943568e769c8344.bitwarden.com +carLicense: FB69AU +departmentNumber: 1616 +employeeType: Normal +homePhone: +1 415 470-6961 +initials: J. K. +mobile: +1 415 135-6233 +pager: +1 415 785-1398 +roomNumber: 8544 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cindy Oestreich,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cindy Oestreich +sn: Oestreich +description: This is Cindy Oestreich's description +facsimileTelephoneNumber: +1 408 471-3429 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 881-7202 +title: Supreme Product Development Admin +userPassword: Password1 +uid: OestreiC +givenName: Cindy +mail: OestreiC@a69557e189c747b59333670f3ebf3a1e.bitwarden.com +carLicense: UJRGG4 +departmentNumber: 3971 +employeeType: Contract +homePhone: +1 408 353-2063 +initials: C. O. +mobile: +1 408 831-9874 +pager: +1 408 418-1153 +roomNumber: 9714 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Pia Turchan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pia Turchan +sn: Turchan +description: This is Pia Turchan's description +facsimileTelephoneNumber: +1 206 735-4943 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 817-4270 +title: Chief Human Resources President +userPassword: Password1 +uid: TurchanP +givenName: Pia +mail: TurchanP@9b78793ee7914009976b9c8dd8324a1e.bitwarden.com +carLicense: HHGKQV +departmentNumber: 6048 +employeeType: Normal +homePhone: +1 206 489-4587 +initials: P. T. +mobile: +1 206 833-4722 +pager: +1 206 735-1536 +roomNumber: 8184 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Louisa Ryall,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Louisa Ryall +sn: Ryall +description: This is Louisa Ryall's description +facsimileTelephoneNumber: +1 510 304-1009 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 506-3708 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: RyallL +givenName: Louisa +mail: RyallL@32d0e3075fb342a38b8c9b42581b81f7.bitwarden.com +carLicense: C6KJW2 +departmentNumber: 5431 +employeeType: Employee +homePhone: +1 510 809-8337 +initials: L. R. +mobile: +1 510 486-7788 +pager: +1 510 247-1470 +roomNumber: 8649 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cherry Tennant,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherry Tennant +sn: Tennant +description: This is Cherry Tennant's description +facsimileTelephoneNumber: +1 818 331-9443 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 550-3495 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: TennantC +givenName: Cherry +mail: TennantC@f81c7db8a94146de916a4b35349336d8.bitwarden.com +carLicense: 6WR42W +departmentNumber: 5470 +employeeType: Employee +homePhone: +1 818 742-8789 +initials: C. T. +mobile: +1 818 989-5875 +pager: +1 818 190-6223 +roomNumber: 8946 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Paul Rafael,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paul Rafael +sn: Rafael +description: This is Paul Rafael's description +facsimileTelephoneNumber: +1 408 915-7130 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 408 343-9183 +title: Master Management Dictator +userPassword: Password1 +uid: RafaelP +givenName: Paul +mail: RafaelP@add5220cb5784db4938f41ee78181d1e.bitwarden.com +carLicense: A4TYVP +departmentNumber: 1561 +employeeType: Employee +homePhone: +1 408 399-3356 +initials: P. R. +mobile: +1 408 174-3055 +pager: +1 408 588-6024 +roomNumber: 8828 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Glornia Cicchino,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glornia Cicchino +sn: Cicchino +description: This is Glornia Cicchino's description +facsimileTelephoneNumber: +1 213 124-1512 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 178-6637 +title: Junior Product Development Engineer +userPassword: Password1 +uid: CicchinG +givenName: Glornia +mail: CicchinG@ced08fdb486e456c87f692a0e9ccf058.bitwarden.com +carLicense: 3LWSWF +departmentNumber: 2531 +employeeType: Normal +homePhone: +1 213 590-2914 +initials: G. C. +mobile: +1 213 354-7946 +pager: +1 213 558-8845 +roomNumber: 8565 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Annalee Terminals,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annalee Terminals +sn: Terminals +description: This is Annalee Terminals's description +facsimileTelephoneNumber: +1 804 652-5692 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 415-2299 +title: Junior Human Resources Admin +userPassword: Password1 +uid: TerminaA +givenName: Annalee +mail: TerminaA@dc111e187e0b4ac39980dc1afb0f449f.bitwarden.com +carLicense: 4MAJCB +departmentNumber: 8392 +employeeType: Normal +homePhone: +1 804 604-4231 +initials: A. T. +mobile: +1 804 248-5284 +pager: +1 804 545-6691 +roomNumber: 8192 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gui Dovydaitis +sn: Dovydaitis +description: This is Gui Dovydaitis's description +facsimileTelephoneNumber: +1 206 596-7166 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 827-4350 +title: Associate Product Testing Visionary +userPassword: Password1 +uid: DovydaiG +givenName: Gui +mail: DovydaiG@87d497e060994207b70ef7bd8c3d6175.bitwarden.com +carLicense: S75P6H +departmentNumber: 7068 +employeeType: Normal +homePhone: +1 206 701-6620 +initials: G. D. +mobile: +1 206 296-8602 +pager: +1 206 551-7157 +roomNumber: 9776 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dave Salehi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dave Salehi +sn: Salehi +description: This is Dave Salehi's description +facsimileTelephoneNumber: +1 408 115-9730 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 951-5628 +title: Junior Peons Architect +userPassword: Password1 +uid: SalehiD +givenName: Dave +mail: SalehiD@c59c83b24c3c472dbb65b804095a3c79.bitwarden.com +carLicense: OA1WF0 +departmentNumber: 2527 +employeeType: Normal +homePhone: +1 408 685-6912 +initials: D. S. +mobile: +1 408 977-8617 +pager: +1 408 240-7606 +roomNumber: 9945 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wendy Slattery,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wendy Slattery +sn: Slattery +description: This is Wendy Slattery's description +facsimileTelephoneNumber: +1 510 611-4280 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 274-7579 +title: Master Human Resources Czar +userPassword: Password1 +uid: SlatterW +givenName: Wendy +mail: SlatterW@b24cb4ce9a1b43e380cc986b9b45bd25.bitwarden.com +carLicense: 94POQD +departmentNumber: 3036 +employeeType: Contract +homePhone: +1 510 793-7616 +initials: W. S. +mobile: +1 510 352-1980 +pager: +1 510 233-7356 +roomNumber: 8767 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Previn Hirayama,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Previn Hirayama +sn: Hirayama +description: This is Previn Hirayama's description +facsimileTelephoneNumber: +1 206 181-3239 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 262-6703 +title: Associate Payroll Vice President +userPassword: Password1 +uid: HirayamP +givenName: Previn +mail: HirayamP@14d2a8b145214481bc45fd027c9d1e6b.bitwarden.com +carLicense: D43P2S +departmentNumber: 6893 +employeeType: Employee +homePhone: +1 206 594-3595 +initials: P. H. +mobile: +1 206 913-1324 +pager: +1 206 397-7088 +roomNumber: 9201 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Evvy Barsony,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evvy Barsony +sn: Barsony +description: This is Evvy Barsony's description +facsimileTelephoneNumber: +1 206 941-4272 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 726-5127 +title: Supreme Administrative Director +userPassword: Password1 +uid: BarsonyE +givenName: Evvy +mail: BarsonyE@53855167a537436d8e1bbb93f42697aa.bitwarden.com +carLicense: BCJIG2 +departmentNumber: 3762 +employeeType: Normal +homePhone: +1 206 895-4998 +initials: E. B. +mobile: +1 206 314-1510 +pager: +1 206 330-5909 +roomNumber: 9666 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hollie Lawton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hollie Lawton +sn: Lawton +description: This is Hollie Lawton's description +facsimileTelephoneNumber: +1 213 117-7608 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 213 568-4601 +title: Junior Management Vice President +userPassword: Password1 +uid: LawtonH +givenName: Hollie +mail: LawtonH@eec4bbb8da77429f893524017458e5d9.bitwarden.com +carLicense: GO3VQR +departmentNumber: 7731 +employeeType: Employee +homePhone: +1 213 455-1696 +initials: H. L. +mobile: +1 213 325-8748 +pager: +1 213 615-5513 +roomNumber: 9583 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dacie Doi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dacie Doi +sn: Doi +description: This is Dacie Doi's description +facsimileTelephoneNumber: +1 206 967-4318 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 832-8454 +title: Junior Management Madonna +userPassword: Password1 +uid: DoiD +givenName: Dacie +mail: DoiD@3214ac0354a44d4785a5580affcc3528.bitwarden.com +carLicense: P4SRLY +departmentNumber: 5630 +employeeType: Employee +homePhone: +1 206 571-1317 +initials: D. D. +mobile: +1 206 667-8746 +pager: +1 206 386-7638 +roomNumber: 9433 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weitzel Dadkhah +sn: Dadkhah +description: This is Weitzel Dadkhah's description +facsimileTelephoneNumber: +1 818 966-9824 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 818 469-3793 +title: Associate Product Testing Manager +userPassword: Password1 +uid: DadkhahW +givenName: Weitzel +mail: DadkhahW@54ce292eb157498aac7b1683764ec867.bitwarden.com +carLicense: AMPKCI +departmentNumber: 8565 +employeeType: Contract +homePhone: +1 818 795-3177 +initials: W. D. +mobile: +1 818 991-6985 +pager: +1 818 562-2478 +roomNumber: 9248 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pascal Cloutier +sn: Cloutier +description: This is Pascal Cloutier's description +facsimileTelephoneNumber: +1 804 508-4375 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 804 364-2500 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: CloutieP +givenName: Pascal +mail: CloutieP@86c55960d45747ecb5afd7997d576a89.bitwarden.com +carLicense: 6BMX0Y +departmentNumber: 9901 +employeeType: Employee +homePhone: +1 804 895-8438 +initials: P. C. +mobile: +1 804 814-7797 +pager: +1 804 401-3260 +roomNumber: 8338 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hall Twitty,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hall Twitty +sn: Twitty +description: This is Hall Twitty's description +facsimileTelephoneNumber: +1 510 273-7976 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 932-7274 +title: Master Peons Warrior +userPassword: Password1 +uid: TwittyH +givenName: Hall +mail: TwittyH@fc1da3ccee8c40f8af1318302a847e49.bitwarden.com +carLicense: FNC6QS +departmentNumber: 1912 +employeeType: Employee +homePhone: +1 510 888-3664 +initials: H. T. +mobile: +1 510 808-5924 +pager: +1 510 291-8255 +roomNumber: 9449 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JulieAnne Dikaitis +sn: Dikaitis +description: This is JulieAnne Dikaitis's description +facsimileTelephoneNumber: +1 213 404-3186 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 504-8673 +title: Chief Human Resources Visionary +userPassword: Password1 +uid: DikaitiJ +givenName: JulieAnne +mail: DikaitiJ@0241a0d3cbf64f09a3380b82cf315d15.bitwarden.com +carLicense: UKLGWH +departmentNumber: 1714 +employeeType: Normal +homePhone: +1 213 811-3803 +initials: J. D. +mobile: +1 213 919-2233 +pager: +1 213 357-4799 +roomNumber: 8436 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tien Ferraro,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tien Ferraro +sn: Ferraro +description: This is Tien Ferraro's description +facsimileTelephoneNumber: +1 804 483-2008 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 804 235-1469 +title: Junior Peons Artist +userPassword: Password1 +uid: FerraroT +givenName: Tien +mail: FerraroT@fe6a97f91a3b481692abba6662452ee9.bitwarden.com +carLicense: CL761M +departmentNumber: 2721 +employeeType: Normal +homePhone: +1 804 168-7319 +initials: T. F. +mobile: +1 804 227-5550 +pager: +1 804 639-5859 +roomNumber: 8019 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lorine Metrailer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorine Metrailer +sn: Metrailer +description: This is Lorine Metrailer's description +facsimileTelephoneNumber: +1 213 532-7149 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 799-4692 +title: Associate Administrative President +userPassword: Password1 +uid: MetrailL +givenName: Lorine +mail: MetrailL@6cc4c5dff9d04b5e89ad32c2b33d43af.bitwarden.com +carLicense: MUFMS4 +departmentNumber: 4642 +employeeType: Contract +homePhone: +1 213 962-1930 +initials: L. M. +mobile: +1 213 490-5564 +pager: +1 213 163-6295 +roomNumber: 9963 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Heidie ElAm,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heidie ElAm +sn: ElAm +description: This is Heidie ElAm's description +facsimileTelephoneNumber: +1 510 373-6156 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 494-9038 +title: Chief Human Resources President +userPassword: Password1 +uid: ElAmH +givenName: Heidie +mail: ElAmH@4e73c97266f94a4089aa37d8a943ffaa.bitwarden.com +carLicense: UY53U6 +departmentNumber: 5201 +employeeType: Normal +homePhone: +1 510 857-7355 +initials: H. E. +mobile: +1 510 464-9195 +pager: +1 510 236-8003 +roomNumber: 8023 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nyssa Australia,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nyssa Australia +sn: Australia +description: This is Nyssa Australia's description +facsimileTelephoneNumber: +1 408 767-4660 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 352-6367 +title: Chief Janitorial Punk +userPassword: Password1 +uid: AustralN +givenName: Nyssa +mail: AustralN@95c0fe4d7e2a47d3939748538bd3c000.bitwarden.com +carLicense: WLF2NA +departmentNumber: 7372 +employeeType: Contract +homePhone: +1 408 377-3484 +initials: N. A. +mobile: +1 408 347-7423 +pager: +1 408 720-8448 +roomNumber: 9905 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Melford Ashdown,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melford Ashdown +sn: Ashdown +description: This is Melford Ashdown's description +facsimileTelephoneNumber: +1 510 788-1832 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 246-1092 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: AshdownM +givenName: Melford +mail: AshdownM@462cea286952488090839d7ab4d20e61.bitwarden.com +carLicense: YEM1Y9 +departmentNumber: 4886 +employeeType: Employee +homePhone: +1 510 855-4011 +initials: M. A. +mobile: +1 510 799-5178 +pager: +1 510 584-6019 +roomNumber: 9976 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rowe McHarg,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rowe McHarg +sn: McHarg +description: This is Rowe McHarg's description +facsimileTelephoneNumber: +1 213 603-7230 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 213 510-6333 +title: Junior Payroll President +userPassword: Password1 +uid: McHargR +givenName: Rowe +mail: McHargR@ed96afcd8b954b4d85dba951a21a6324.bitwarden.com +carLicense: 5YW6MP +departmentNumber: 9287 +employeeType: Employee +homePhone: +1 213 648-5367 +initials: R. M. +mobile: +1 213 128-3477 +pager: +1 213 419-1550 +roomNumber: 8895 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shawnee Vesterdal +sn: Vesterdal +description: This is Shawnee Vesterdal's description +facsimileTelephoneNumber: +1 804 370-7761 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 804 393-5372 +title: Associate Peons Stooge +userPassword: Password1 +uid: VesterdS +givenName: Shawnee +mail: VesterdS@59970149bbc643e4bc31ce5dfa47996a.bitwarden.com +carLicense: 8YDG5V +departmentNumber: 5642 +employeeType: Employee +homePhone: +1 804 320-4155 +initials: S. V. +mobile: +1 804 442-5920 +pager: +1 804 657-1678 +roomNumber: 9589 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rasla ODoherty,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rasla ODoherty +sn: ODoherty +description: This is Rasla ODoherty's description +facsimileTelephoneNumber: +1 415 264-4721 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 135-4170 +title: Junior Management Visionary +userPassword: Password1 +uid: ODohertR +givenName: Rasla +mail: ODohertR@570b2a8b45094bdbb019684431d6e2af.bitwarden.com +carLicense: MACKM5 +departmentNumber: 1598 +employeeType: Normal +homePhone: +1 415 537-9744 +initials: R. O. +mobile: +1 415 311-6654 +pager: +1 415 374-2408 +roomNumber: 8213 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Felicle Ramondt,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felicle Ramondt +sn: Ramondt +description: This is Felicle Ramondt's description +facsimileTelephoneNumber: +1 415 737-5003 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 274-4149 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: RamondtF +givenName: Felicle +mail: RamondtF@4112fa5751f947c9a6ebd8e6086a4cce.bitwarden.com +carLicense: RBEP9T +departmentNumber: 8292 +employeeType: Normal +homePhone: +1 415 778-2562 +initials: F. R. +mobile: +1 415 723-2644 +pager: +1 415 361-9599 +roomNumber: 8113 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jasver Jurman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jasver Jurman +sn: Jurman +description: This is Jasver Jurman's description +facsimileTelephoneNumber: +1 206 101-5780 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 127-1023 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: JurmanJ +givenName: Jasver +mail: JurmanJ@1286c9db4c6f4ed39232709079768da4.bitwarden.com +carLicense: 7XBMQ8 +departmentNumber: 9762 +employeeType: Contract +homePhone: +1 206 189-3853 +initials: J. J. +mobile: +1 206 132-5130 +pager: +1 206 646-9410 +roomNumber: 9853 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosalyn Hassan +sn: Hassan +description: This is Rosalyn Hassan's description +facsimileTelephoneNumber: +1 818 375-5409 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 236-8934 +title: Junior Payroll Pinhead +userPassword: Password1 +uid: HassanR +givenName: Rosalyn +mail: HassanR@9b1dcdebf2c241bf975e03d6ac9197e3.bitwarden.com +carLicense: CJYN6J +departmentNumber: 6357 +employeeType: Employee +homePhone: +1 818 837-7677 +initials: R. H. +mobile: +1 818 259-4875 +pager: +1 818 917-9548 +roomNumber: 9711 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anderea Albritton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anderea Albritton +sn: Albritton +description: This is Anderea Albritton's description +facsimileTelephoneNumber: +1 804 194-7663 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 804 904-5286 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: AlbrittA +givenName: Anderea +mail: AlbrittA@a34bb7d1546c462cb51396798bb22845.bitwarden.com +carLicense: TDCMWA +departmentNumber: 2454 +employeeType: Normal +homePhone: +1 804 351-2266 +initials: A. A. +mobile: +1 804 282-5832 +pager: +1 804 155-3746 +roomNumber: 8370 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alana Melkild,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alana Melkild +sn: Melkild +description: This is Alana Melkild's description +facsimileTelephoneNumber: +1 408 801-9214 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 408 940-4162 +title: Master Management Punk +userPassword: Password1 +uid: MelkildA +givenName: Alana +mail: MelkildA@b163a54ef1ca4503b096b531dfca5c9b.bitwarden.com +carLicense: CLLDQU +departmentNumber: 7668 +employeeType: Employee +homePhone: +1 408 241-4414 +initials: A. M. +mobile: +1 408 698-3925 +pager: +1 408 317-9847 +roomNumber: 9130 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Venkatakrishna Kelland +sn: Kelland +description: This is Venkatakrishna Kelland's description +facsimileTelephoneNumber: +1 213 647-9983 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 603-7905 +title: Associate Human Resources Mascot +userPassword: Password1 +uid: KellandV +givenName: Venkatakrishna +mail: KellandV@4e208cde3548420a94b59f72665403bf.bitwarden.com +carLicense: XI6WXR +departmentNumber: 3806 +employeeType: Normal +homePhone: +1 213 393-9652 +initials: V. K. +mobile: +1 213 312-4745 +pager: +1 213 752-5274 +roomNumber: 9537 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Orie Kellogg,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orie Kellogg +sn: Kellogg +description: This is Orie Kellogg's description +facsimileTelephoneNumber: +1 415 623-1544 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 895-7818 +title: Supreme Janitorial Dictator +userPassword: Password1 +uid: KelloggO +givenName: Orie +mail: KelloggO@34a2a20900494afa86a3d5f8d34be87e.bitwarden.com +carLicense: AUTSRP +departmentNumber: 5946 +employeeType: Normal +homePhone: +1 415 157-3767 +initials: O. K. +mobile: +1 415 434-6721 +pager: +1 415 329-9667 +roomNumber: 8669 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Liva McMasters,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liva McMasters +sn: McMasters +description: This is Liva McMasters's description +facsimileTelephoneNumber: +1 804 975-4828 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 397-5360 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: McMasteL +givenName: Liva +mail: McMasteL@f4d0af946ec24ea988e36de4a253dd77.bitwarden.com +carLicense: 3QPB59 +departmentNumber: 7240 +employeeType: Contract +homePhone: +1 804 397-9353 +initials: L. M. +mobile: +1 804 525-9345 +pager: +1 804 153-5332 +roomNumber: 9662 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olwen Ducharme +sn: Ducharme +description: This is Olwen Ducharme's description +facsimileTelephoneNumber: +1 415 212-3710 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 415 604-8475 +title: Master Product Testing Punk +userPassword: Password1 +uid: DucharmO +givenName: Olwen +mail: DucharmO@01e99ef3b2924e47abd9e4716ec0ba6a.bitwarden.com +carLicense: QI1NKQ +departmentNumber: 8575 +employeeType: Contract +homePhone: +1 415 941-7322 +initials: O. D. +mobile: +1 415 122-7522 +pager: +1 415 945-6924 +roomNumber: 9220 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kiah Chandan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kiah Chandan +sn: Chandan +description: This is Kiah Chandan's description +facsimileTelephoneNumber: +1 213 118-5297 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 213 536-2583 +title: Chief Peons Mascot +userPassword: Password1 +uid: ChandanK +givenName: Kiah +mail: ChandanK@01af6203536c42ec8e9ddfa7b0066fb7.bitwarden.com +carLicense: Y5FNYU +departmentNumber: 6337 +employeeType: Normal +homePhone: +1 213 258-2055 +initials: K. C. +mobile: +1 213 892-4906 +pager: +1 213 647-7470 +roomNumber: 8981 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vipi Bladon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vipi Bladon +sn: Bladon +description: This is Vipi Bladon's description +facsimileTelephoneNumber: +1 408 231-9332 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 408 811-3882 +title: Supreme Administrative Czar +userPassword: Password1 +uid: BladonV +givenName: Vipi +mail: BladonV@5751350c44374a93b1d462c83d0b1fe8.bitwarden.com +carLicense: MBJOO8 +departmentNumber: 5451 +employeeType: Employee +homePhone: +1 408 294-1486 +initials: V. B. +mobile: +1 408 770-7650 +pager: +1 408 374-5171 +roomNumber: 9394 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dan Yost,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dan Yost +sn: Yost +description: This is Dan Yost's description +facsimileTelephoneNumber: +1 804 842-2814 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 922-4084 +title: Master Janitorial Sales Rep +userPassword: Password1 +uid: YostD +givenName: Dan +mail: YostD@641b3c32e986403cb54e8416d6ccf047.bitwarden.com +carLicense: B8G9RQ +departmentNumber: 3541 +employeeType: Normal +homePhone: +1 804 279-1725 +initials: D. Y. +mobile: +1 804 739-9345 +pager: +1 804 670-2743 +roomNumber: 9264 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ivo Dziawa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivo Dziawa +sn: Dziawa +description: This is Ivo Dziawa's description +facsimileTelephoneNumber: +1 206 225-2024 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 823-4814 +title: Supreme Payroll Artist +userPassword: Password1 +uid: DziawaI +givenName: Ivo +mail: DziawaI@9b030c1d6ce3438f956ad1da5fffc998.bitwarden.com +carLicense: 8J69P1 +departmentNumber: 6457 +employeeType: Normal +homePhone: +1 206 964-6194 +initials: I. D. +mobile: +1 206 178-6006 +pager: +1 206 575-3688 +roomNumber: 9551 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vahid Routing,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vahid Routing +sn: Routing +description: This is Vahid Routing's description +facsimileTelephoneNumber: +1 804 271-2177 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 566-2786 +title: Supreme Administrative Technician +userPassword: Password1 +uid: RoutingV +givenName: Vahid +mail: RoutingV@687d9f112b0946d8aa0c6a6aac0b1c20.bitwarden.com +carLicense: 4ULJEV +departmentNumber: 4705 +employeeType: Employee +homePhone: +1 804 513-3711 +initials: V. R. +mobile: +1 804 742-7861 +pager: +1 804 651-2472 +roomNumber: 9921 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paloma Dyrdahl +sn: Dyrdahl +description: This is Paloma Dyrdahl's description +facsimileTelephoneNumber: +1 804 823-1485 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 205-6457 +title: Chief Human Resources Director +userPassword: Password1 +uid: DyrdahlP +givenName: Paloma +mail: DyrdahlP@f51aa7b4b6ef481ab8bd87058413fd8f.bitwarden.com +carLicense: DUMAFD +departmentNumber: 1349 +employeeType: Employee +homePhone: +1 804 346-7644 +initials: P. D. +mobile: +1 804 908-1709 +pager: +1 804 858-3398 +roomNumber: 8223 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marianna Wray,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marianna Wray +sn: Wray +description: This is Marianna Wray's description +facsimileTelephoneNumber: +1 818 965-1211 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 818 212-9227 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: WrayM +givenName: Marianna +mail: WrayM@e1267c37955c45cfa6ee4879d9455618.bitwarden.com +carLicense: E79TD2 +departmentNumber: 2925 +employeeType: Contract +homePhone: +1 818 661-4325 +initials: M. W. +mobile: +1 818 801-8742 +pager: +1 818 257-7080 +roomNumber: 9136 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sunning Spence,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sunning Spence +sn: Spence +description: This is Sunning Spence's description +facsimileTelephoneNumber: +1 213 874-4176 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 965-7078 +title: Supreme Management Admin +userPassword: Password1 +uid: SpenceS +givenName: Sunning +mail: SpenceS@a5390b0a929f4049987256511e1011a2.bitwarden.com +carLicense: C2MJ1S +departmentNumber: 4073 +employeeType: Normal +homePhone: +1 213 529-8284 +initials: S. S. +mobile: +1 213 335-3411 +pager: +1 213 855-1643 +roomNumber: 9713 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cart Pyron,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cart Pyron +sn: Pyron +description: This is Cart Pyron's description +facsimileTelephoneNumber: +1 415 178-6711 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 301-4351 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: PyronC +givenName: Cart +mail: PyronC@5d9a493aeb18453b882b99b919bc8aa9.bitwarden.com +carLicense: QITA1B +departmentNumber: 3001 +employeeType: Employee +homePhone: +1 415 409-4437 +initials: C. P. +mobile: +1 415 184-9393 +pager: +1 415 734-1316 +roomNumber: 8408 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nashville Venier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nashville Venier +sn: Venier +description: This is Nashville Venier's description +facsimileTelephoneNumber: +1 213 389-7726 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 213 498-6211 +title: Junior Janitorial Consultant +userPassword: Password1 +uid: VenierN +givenName: Nashville +mail: VenierN@b37b8170c2a14be99b8672023148d924.bitwarden.com +carLicense: LKWT88 +departmentNumber: 8413 +employeeType: Contract +homePhone: +1 213 285-2887 +initials: N. V. +mobile: +1 213 728-8699 +pager: +1 213 465-5719 +roomNumber: 9131 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Glenn Salem,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glenn Salem +sn: Salem +description: This is Glenn Salem's description +facsimileTelephoneNumber: +1 818 801-7132 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 818 934-4935 +title: Supreme Management President +userPassword: Password1 +uid: SalemG +givenName: Glenn +mail: SalemG@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com +carLicense: HE6BA9 +departmentNumber: 7786 +employeeType: Contract +homePhone: +1 818 389-9384 +initials: G. S. +mobile: +1 818 460-2138 +pager: +1 818 781-7543 +roomNumber: 9711 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Raman Smolin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raman Smolin +sn: Smolin +description: This is Raman Smolin's description +facsimileTelephoneNumber: +1 408 770-7796 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 330-5479 +title: Junior Product Development Sales Rep +userPassword: Password1 +uid: SmolinR +givenName: Raman +mail: SmolinR@f4cac90289b44dc28b9de765747f5a7c.bitwarden.com +carLicense: 7FTYLB +departmentNumber: 5434 +employeeType: Contract +homePhone: +1 408 813-8382 +initials: R. S. +mobile: +1 408 406-7089 +pager: +1 408 665-8609 +roomNumber: 9212 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marin Mokbel,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marin Mokbel +sn: Mokbel +description: This is Marin Mokbel's description +facsimileTelephoneNumber: +1 804 641-2266 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 952-5956 +title: Chief Payroll Engineer +userPassword: Password1 +uid: MokbelM +givenName: Marin +mail: MokbelM@c54cbe69dcd34a96b7a131338d06781d.bitwarden.com +carLicense: LMDIAX +departmentNumber: 2884 +employeeType: Normal +homePhone: +1 804 676-5098 +initials: M. M. +mobile: +1 804 187-4781 +pager: +1 804 391-5199 +roomNumber: 8152 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rici Plasse,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rici Plasse +sn: Plasse +description: This is Rici Plasse's description +facsimileTelephoneNumber: +1 408 457-4340 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 408 612-7703 +title: Junior Payroll Punk +userPassword: Password1 +uid: PlasseR +givenName: Rici +mail: PlasseR@07b1787368a34e789ce994f0c32f4345.bitwarden.com +carLicense: 87B1CW +departmentNumber: 8025 +employeeType: Employee +homePhone: +1 408 298-9718 +initials: R. P. +mobile: +1 408 997-7121 +pager: +1 408 358-6463 +roomNumber: 8632 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anup Klammer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anup Klammer +sn: Klammer +description: This is Anup Klammer's description +facsimileTelephoneNumber: +1 408 587-6159 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 408 207-9900 +title: Master Janitorial Director +userPassword: Password1 +uid: KlammerA +givenName: Anup +mail: KlammerA@af3378adce2b421eb0f1e5ee23a2a017.bitwarden.com +carLicense: Y25IUP +departmentNumber: 6093 +employeeType: Employee +homePhone: +1 408 318-1045 +initials: A. K. +mobile: +1 408 412-1069 +pager: +1 408 889-4949 +roomNumber: 8590 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baljinder Chakrabarty +sn: Chakrabarty +description: This is Baljinder Chakrabarty's description +facsimileTelephoneNumber: +1 408 739-4624 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 473-4638 +title: Chief Administrative Czar +userPassword: Password1 +uid: ChakrabB +givenName: Baljinder +mail: ChakrabB@6ae361d0671f4e45b2dca3f489ab2ec1.bitwarden.com +carLicense: EMHPFK +departmentNumber: 9951 +employeeType: Employee +homePhone: +1 408 595-6375 +initials: B. C. +mobile: +1 408 261-2123 +pager: +1 408 523-3669 +roomNumber: 9634 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ninon Starr,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninon Starr +sn: Starr +description: This is Ninon Starr's description +facsimileTelephoneNumber: +1 206 319-4165 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 584-3056 +title: Junior Peons Consultant +userPassword: Password1 +uid: StarrN +givenName: Ninon +mail: StarrN@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com +carLicense: F4UEUQ +departmentNumber: 2418 +employeeType: Normal +homePhone: +1 206 200-7590 +initials: N. S. +mobile: +1 206 491-6927 +pager: +1 206 447-1191 +roomNumber: 9836 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Atul Orth,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atul Orth +sn: Orth +description: This is Atul Orth's description +facsimileTelephoneNumber: +1 206 257-2840 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 914-9689 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: OrthA +givenName: Atul +mail: OrthA@5377b23229dc41399d1b48044598198c.bitwarden.com +carLicense: 9O8AO3 +departmentNumber: 9018 +employeeType: Contract +homePhone: +1 206 834-2780 +initials: A. O. +mobile: +1 206 539-1317 +pager: +1 206 743-1625 +roomNumber: 8330 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tung Lazar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tung Lazar +sn: Lazar +description: This is Tung Lazar's description +facsimileTelephoneNumber: +1 415 438-4568 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 465-5562 +title: Associate Management Grunt +userPassword: Password1 +uid: LazarT +givenName: Tung +mail: LazarT@cff08fbfbb494d1cac1d02cef13ff5e6.bitwarden.com +carLicense: D1MK5K +departmentNumber: 3560 +employeeType: Contract +homePhone: +1 415 692-7473 +initials: T. L. +mobile: +1 415 260-2793 +pager: +1 415 102-6140 +roomNumber: 8658 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Conchita Raley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Conchita Raley +sn: Raley +description: This is Conchita Raley's description +facsimileTelephoneNumber: +1 818 541-5106 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 524-7417 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: RaleyC +givenName: Conchita +mail: RaleyC@ad261b7bb83c4b9b8809f461bc78f37f.bitwarden.com +carLicense: VR5L59 +departmentNumber: 5006 +employeeType: Employee +homePhone: +1 818 495-6897 +initials: C. R. +mobile: +1 818 371-6010 +pager: +1 818 145-6086 +roomNumber: 9978 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Steen Meyer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steen Meyer +sn: Meyer +description: This is Steen Meyer's description +facsimileTelephoneNumber: +1 510 565-6025 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 510 571-9882 +title: Chief Administrative Writer +userPassword: Password1 +uid: MeyerS +givenName: Steen +mail: MeyerS@bf91192220a74764b99bec46e53e3350.bitwarden.com +carLicense: FC7AH6 +departmentNumber: 2560 +employeeType: Contract +homePhone: +1 510 497-6048 +initials: S. M. +mobile: +1 510 566-6489 +pager: +1 510 755-9314 +roomNumber: 9419 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ingunna Zollman,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ingunna Zollman +sn: Zollman +description: This is Ingunna Zollman's description +facsimileTelephoneNumber: +1 510 121-5824 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 252-7080 +title: Master Administrative Assistant +userPassword: Password1 +uid: ZollmanI +givenName: Ingunna +mail: ZollmanI@b3ee3a7577c349aeba9b99d9cc89baee.bitwarden.com +carLicense: YD5EB3 +departmentNumber: 4179 +employeeType: Contract +homePhone: +1 510 683-2202 +initials: I. Z. +mobile: +1 510 549-2417 +pager: +1 510 270-8671 +roomNumber: 8524 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Weilin Muttaqi +sn: Muttaqi +description: This is Weilin Muttaqi's description +facsimileTelephoneNumber: +1 408 105-2323 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 408 386-4800 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: MuttaqiW +givenName: Weilin +mail: MuttaqiW@1957e383cee049d8b2f276495d647fb4.bitwarden.com +carLicense: DU3SIT +departmentNumber: 6990 +employeeType: Employee +homePhone: +1 408 143-3036 +initials: W. M. +mobile: +1 408 884-6116 +pager: +1 408 985-5519 +roomNumber: 8057 +manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Winnie Goss,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winnie Goss +sn: Goss +description: This is Winnie Goss's description +facsimileTelephoneNumber: +1 804 536-8940 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 915-1089 +title: Associate Payroll Grunt +userPassword: Password1 +uid: GossW +givenName: Winnie +mail: GossW@c37d3b12215747d99472a7fb366acdb6.bitwarden.com +carLicense: 6QT8TE +departmentNumber: 1681 +employeeType: Normal +homePhone: +1 804 855-5285 +initials: W. G. +mobile: +1 804 435-7622 +pager: +1 804 354-9735 +roomNumber: 8822 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dori Myatt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dori Myatt +sn: Myatt +description: This is Dori Myatt's description +facsimileTelephoneNumber: +1 206 318-5725 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 704-5451 +title: Supreme Product Testing Fellow +userPassword: Password1 +uid: MyattD +givenName: Dori +mail: MyattD@02379e00c72e43ada0ec5298f3ee9106.bitwarden.com +carLicense: WLQ9NH +departmentNumber: 3938 +employeeType: Normal +homePhone: +1 206 361-5929 +initials: D. M. +mobile: +1 206 656-6651 +pager: +1 206 740-8338 +roomNumber: 8581 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Beb Jammu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beb Jammu +sn: Jammu +description: This is Beb Jammu's description +facsimileTelephoneNumber: +1 510 302-4105 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 213-5909 +title: Supreme Administrative Vice President +userPassword: Password1 +uid: JammuB +givenName: Beb +mail: JammuB@cc3b9e94565c4600bc410c93d2d0b1da.bitwarden.com +carLicense: PBY17C +departmentNumber: 6338 +employeeType: Employee +homePhone: +1 510 399-6932 +initials: B. J. +mobile: +1 510 365-1893 +pager: +1 510 555-9762 +roomNumber: 8734 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Reno Raines,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reno Raines +sn: Raines +description: This is Reno Raines's description +facsimileTelephoneNumber: +1 213 902-4283 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 724-5837 +title: Supreme Payroll Grunt +userPassword: Password1 +uid: RainesR +givenName: Reno +mail: RainesR@61d349f36f74474aadc4b14dd96074dd.bitwarden.com +carLicense: FGPVL6 +departmentNumber: 9322 +employeeType: Employee +homePhone: +1 213 497-2091 +initials: R. R. +mobile: +1 213 736-7196 +pager: +1 213 454-3104 +roomNumber: 9760 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Delilah Praeuner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delilah Praeuner +sn: Praeuner +description: This is Delilah Praeuner's description +facsimileTelephoneNumber: +1 415 521-1912 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 415 425-5353 +title: Chief Peons Dictator +userPassword: Password1 +uid: PraeuneD +givenName: Delilah +mail: PraeuneD@9f2b0ca340a44c1da690b6d62d65daf8.bitwarden.com +carLicense: SM5W0A +departmentNumber: 1448 +employeeType: Employee +homePhone: +1 415 637-5284 +initials: D. P. +mobile: +1 415 145-1344 +pager: +1 415 398-6324 +roomNumber: 8668 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marilyn Bigley +sn: Bigley +description: This is Marilyn Bigley's description +facsimileTelephoneNumber: +1 510 189-6432 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 510 770-5189 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: BigleyM +givenName: Marilyn +mail: BigleyM@dcfeb1e34dfd4d498a4c69e47113773f.bitwarden.com +carLicense: 2I8M5K +departmentNumber: 3246 +employeeType: Normal +homePhone: +1 510 681-9343 +initials: M. B. +mobile: +1 510 469-4334 +pager: +1 510 191-2547 +roomNumber: 8258 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aubrie Bykowy +sn: Bykowy +description: This is Aubrie Bykowy's description +facsimileTelephoneNumber: +1 804 454-8840 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 804 683-2338 +title: Associate Administrative Writer +userPassword: Password1 +uid: BykowyA +givenName: Aubrie +mail: BykowyA@f6fe529f06ac433fab898dee2f04e9dc.bitwarden.com +carLicense: S5C6H5 +departmentNumber: 6703 +employeeType: Contract +homePhone: +1 804 179-2675 +initials: A. B. +mobile: +1 804 473-1699 +pager: +1 804 698-9137 +roomNumber: 9493 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Christiane Wanner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christiane Wanner +sn: Wanner +description: This is Christiane Wanner's description +facsimileTelephoneNumber: +1 818 315-5190 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 426-5250 +title: Chief Product Development Engineer +userPassword: Password1 +uid: WannerC +givenName: Christiane +mail: WannerC@ed6e0f8b1a3846db9530b7f4f3171825.bitwarden.com +carLicense: O4WFJG +departmentNumber: 6327 +employeeType: Normal +homePhone: +1 818 430-8291 +initials: C. W. +mobile: +1 818 810-7680 +pager: +1 818 532-8881 +roomNumber: 9966 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sada Polulack,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sada Polulack +sn: Polulack +description: This is Sada Polulack's description +facsimileTelephoneNumber: +1 510 430-7942 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 882-2395 +title: Master Payroll Assistant +userPassword: Password1 +uid: PolulacS +givenName: Sada +mail: PolulacS@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com +carLicense: OHDKR9 +departmentNumber: 6070 +employeeType: Normal +homePhone: +1 510 224-7256 +initials: S. P. +mobile: +1 510 895-5327 +pager: +1 510 635-1453 +roomNumber: 9975 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daloris Oshiro +sn: Oshiro +description: This is Daloris Oshiro's description +facsimileTelephoneNumber: +1 415 280-7071 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 151-5085 +title: Master Janitorial Punk +userPassword: Password1 +uid: OshiroD +givenName: Daloris +mail: OshiroD@1cd5de40e5ac4cd695f9ff5aee94931d.bitwarden.com +carLicense: 1GELPB +departmentNumber: 8353 +employeeType: Employee +homePhone: +1 415 453-3057 +initials: D. O. +mobile: +1 415 712-1048 +pager: +1 415 912-6492 +roomNumber: 8144 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shauna Caputo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shauna Caputo +sn: Caputo +description: This is Shauna Caputo's description +facsimileTelephoneNumber: +1 415 530-2189 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 550-4404 +title: Master Janitorial Warrior +userPassword: Password1 +uid: CaputoS +givenName: Shauna +mail: CaputoS@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com +carLicense: S9V7AO +departmentNumber: 9322 +employeeType: Contract +homePhone: +1 415 477-3063 +initials: S. C. +mobile: +1 415 223-1261 +pager: +1 415 238-3358 +roomNumber: 9738 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oleesa Suwala +sn: Suwala +description: This is Oleesa Suwala's description +facsimileTelephoneNumber: +1 206 954-1921 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 456-9547 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: SuwalaO +givenName: Oleesa +mail: SuwalaO@2a14a90e7c884ce1a37209a563b3ce10.bitwarden.com +carLicense: 2PIGBX +departmentNumber: 2408 +employeeType: Contract +homePhone: +1 206 275-9947 +initials: O. S. +mobile: +1 206 931-3166 +pager: +1 206 220-8374 +roomNumber: 8907 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hrdata Placido,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hrdata Placido +sn: Placido +description: This is Hrdata Placido's description +facsimileTelephoneNumber: +1 408 143-3299 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 344-5904 +title: Junior Product Development Evangelist +userPassword: Password1 +uid: PlacidoH +givenName: Hrdata +mail: PlacidoH@3264b8974bc14e47aff69928751d5552.bitwarden.com +carLicense: G5JLQM +departmentNumber: 7939 +employeeType: Contract +homePhone: +1 408 579-6201 +initials: H. P. +mobile: +1 408 788-1260 +pager: +1 408 123-8632 +roomNumber: 8075 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Belvia Raissian,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belvia Raissian +sn: Raissian +description: This is Belvia Raissian's description +facsimileTelephoneNumber: +1 818 337-2173 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 837-5973 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: RaissiaB +givenName: Belvia +mail: RaissiaB@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com +carLicense: P9YDQS +departmentNumber: 6018 +employeeType: Contract +homePhone: +1 818 138-6621 +initials: B. R. +mobile: +1 818 699-5246 +pager: +1 818 603-8001 +roomNumber: 9057 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Odette Swiatkowski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odette Swiatkowski +sn: Swiatkowski +description: This is Odette Swiatkowski's description +facsimileTelephoneNumber: +1 818 974-8349 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 171-5796 +title: Master Management Developer +userPassword: Password1 +uid: SwiatkoO +givenName: Odette +mail: SwiatkoO@9203e13698914816bdcd0ae89556ac90.bitwarden.com +carLicense: HCN41G +departmentNumber: 2591 +employeeType: Employee +homePhone: +1 818 132-4673 +initials: O. S. +mobile: +1 818 478-1399 +pager: +1 818 398-6956 +roomNumber: 9034 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Richelle Thorne,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Richelle Thorne +sn: Thorne +description: This is Richelle Thorne's description +facsimileTelephoneNumber: +1 415 226-4785 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 180-5163 +title: Junior Management Engineer +userPassword: Password1 +uid: ThorneR +givenName: Richelle +mail: ThorneR@478d49ea22024f81bf0c3655b7d4984f.bitwarden.com +carLicense: CMQXIX +departmentNumber: 3484 +employeeType: Contract +homePhone: +1 415 514-8913 +initials: R. T. +mobile: +1 415 165-7476 +pager: +1 415 548-2031 +roomNumber: 8901 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jacques Bhatia,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacques Bhatia +sn: Bhatia +description: This is Jacques Bhatia's description +facsimileTelephoneNumber: +1 510 804-7195 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 774-4658 +title: Chief Peons Director +userPassword: Password1 +uid: BhatiaJ +givenName: Jacques +mail: BhatiaJ@5aefcf13b98144a482e597727f2900df.bitwarden.com +carLicense: IG4T2C +departmentNumber: 1125 +employeeType: Normal +homePhone: +1 510 657-4991 +initials: J. B. +mobile: +1 510 872-4289 +pager: +1 510 971-4667 +roomNumber: 8370 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walliw Hyjek +sn: Hyjek +description: This is Walliw Hyjek's description +facsimileTelephoneNumber: +1 206 699-9937 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 622-5816 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: HyjekW +givenName: Walliw +mail: HyjekW@04b4f27ec2ac43be97552612edca5a77.bitwarden.com +carLicense: 32B8VU +departmentNumber: 3697 +employeeType: Employee +homePhone: +1 206 647-5129 +initials: W. H. +mobile: +1 206 457-7485 +pager: +1 206 335-3693 +roomNumber: 9711 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Houman Levere,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Houman Levere +sn: Levere +description: This is Houman Levere's description +facsimileTelephoneNumber: +1 206 497-5270 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 276-4391 +title: Chief Janitorial Manager +userPassword: Password1 +uid: LevereH +givenName: Houman +mail: LevereH@7d7c04d767f0473782636d718b2a2aee.bitwarden.com +carLicense: B0C60V +departmentNumber: 3586 +employeeType: Contract +homePhone: +1 206 641-2215 +initials: H. L. +mobile: +1 206 170-2254 +pager: +1 206 257-9040 +roomNumber: 9406 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hsieh Shayanpour +sn: Shayanpour +description: This is Hsieh Shayanpour's description +facsimileTelephoneNumber: +1 510 921-9860 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 510 142-1838 +title: Associate Payroll Vice President +userPassword: Password1 +uid: ShayanpH +givenName: Hsieh +mail: ShayanpH@134e9c1116de4754a55f3f221bd47dca.bitwarden.com +carLicense: N606HD +departmentNumber: 8228 +employeeType: Normal +homePhone: +1 510 562-3401 +initials: H. S. +mobile: +1 510 942-4676 +pager: +1 510 777-2744 +roomNumber: 8980 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Doloritas Adams,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doloritas Adams +sn: Adams +description: This is Doloritas Adams's description +facsimileTelephoneNumber: +1 415 846-9622 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 767-9424 +title: Supreme Management Vice President +userPassword: Password1 +uid: AdamsD +givenName: Doloritas +mail: AdamsD@d6de9e07b63b482e895c0d1074306ac5.bitwarden.com +carLicense: BFAG9D +departmentNumber: 4411 +employeeType: Contract +homePhone: +1 415 470-5139 +initials: D. A. +mobile: +1 415 201-7178 +pager: +1 415 814-8690 +roomNumber: 9907 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Starr Selent,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Starr Selent +sn: Selent +description: This is Starr Selent's description +facsimileTelephoneNumber: +1 804 354-1756 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 474-1172 +title: Junior Human Resources Manager +userPassword: Password1 +uid: SelentS +givenName: Starr +mail: SelentS@4b870fc05654407aaffa37354d036e58.bitwarden.com +carLicense: 9E6AR1 +departmentNumber: 1731 +employeeType: Employee +homePhone: +1 804 336-8453 +initials: S. S. +mobile: +1 804 267-5130 +pager: +1 804 250-7382 +roomNumber: 9527 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Doria Sherrill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doria Sherrill +sn: Sherrill +description: This is Doria Sherrill's description +facsimileTelephoneNumber: +1 818 590-7381 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 297-8650 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: SherrilD +givenName: Doria +mail: SherrilD@67ed6a3085c048b9841abf12a338d7fa.bitwarden.com +carLicense: 36SUBO +departmentNumber: 6250 +employeeType: Normal +homePhone: +1 818 466-7982 +initials: D. S. +mobile: +1 818 780-5199 +pager: +1 818 792-2404 +roomNumber: 8121 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassaundra Godsoe +sn: Godsoe +description: This is Cassaundra Godsoe's description +facsimileTelephoneNumber: +1 408 527-5455 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 523-8637 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: GodsoeC +givenName: Cassaundra +mail: GodsoeC@95a0714026f54037aaa182b092f39903.bitwarden.com +carLicense: BSAP7G +departmentNumber: 9120 +employeeType: Normal +homePhone: +1 408 955-4082 +initials: C. G. +mobile: +1 408 400-4689 +pager: +1 408 776-2831 +roomNumber: 9005 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felicity Reichinger +sn: Reichinger +description: This is Felicity Reichinger's description +facsimileTelephoneNumber: +1 415 358-9724 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 941-2786 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: ReichinF +givenName: Felicity +mail: ReichinF@5dc39fbc350c43fe84c932142400265c.bitwarden.com +carLicense: WAD6KU +departmentNumber: 4191 +employeeType: Employee +homePhone: +1 415 535-3082 +initials: F. R. +mobile: +1 415 528-3355 +pager: +1 415 903-5730 +roomNumber: 9137 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maire Follett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maire Follett +sn: Follett +description: This is Maire Follett's description +facsimileTelephoneNumber: +1 510 641-1203 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 286-7113 +title: Chief Payroll Warrior +userPassword: Password1 +uid: FollettM +givenName: Maire +mail: FollettM@b4fa9c83a97e478e900b988131cc53a7.bitwarden.com +carLicense: HARGS0 +departmentNumber: 6379 +employeeType: Contract +homePhone: +1 510 644-9029 +initials: M. F. +mobile: +1 510 881-9733 +pager: +1 510 863-7724 +roomNumber: 8550 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomasine Clampitte +sn: Clampitte +description: This is Thomasine Clampitte's description +facsimileTelephoneNumber: +1 415 527-5293 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 494-1730 +title: Master Product Development Vice President +userPassword: Password1 +uid: ClampitT +givenName: Thomasine +mail: ClampitT@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com +carLicense: TKUGDV +departmentNumber: 7008 +employeeType: Contract +homePhone: +1 415 268-9150 +initials: T. C. +mobile: +1 415 789-5941 +pager: +1 415 484-8995 +roomNumber: 9050 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ying Schulze,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ying Schulze +sn: Schulze +description: This is Ying Schulze's description +facsimileTelephoneNumber: +1 206 968-9595 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 712-2228 +title: Chief Management Technician +userPassword: Password1 +uid: SchulzeY +givenName: Ying +mail: SchulzeY@5750a4ef0b904e64a81925c3672ef563.bitwarden.com +carLicense: 2MEPGG +departmentNumber: 1577 +employeeType: Employee +homePhone: +1 206 412-4290 +initials: Y. S. +mobile: +1 206 682-7118 +pager: +1 206 852-8519 +roomNumber: 9616 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Samual Franzky,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Samual Franzky +sn: Franzky +description: This is Samual Franzky's description +facsimileTelephoneNumber: +1 818 564-1485 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 200-2516 +title: Chief Payroll Figurehead +userPassword: Password1 +uid: FranzkyS +givenName: Samual +mail: FranzkyS@bc79177550ea403786c826687c120cc9.bitwarden.com +carLicense: UDD6UP +departmentNumber: 8098 +employeeType: Normal +homePhone: +1 818 858-2406 +initials: S. F. +mobile: +1 818 221-5868 +pager: +1 818 864-7092 +roomNumber: 8292 +manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nert Bombardier,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nert Bombardier +sn: Bombardier +description: This is Nert Bombardier's description +facsimileTelephoneNumber: +1 408 351-9711 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 408 208-7137 +title: Associate Product Development Punk +userPassword: Password1 +uid: BombardN +givenName: Nert +mail: BombardN@468705ba5f434f3295170aa6ba4375b9.bitwarden.com +carLicense: RA9VW6 +departmentNumber: 7830 +employeeType: Employee +homePhone: +1 408 664-5305 +initials: N. B. +mobile: +1 408 914-7363 +pager: +1 408 505-5670 +roomNumber: 9303 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Catherine Hite,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catherine Hite +sn: Hite +description: This is Catherine Hite's description +facsimileTelephoneNumber: +1 804 719-3531 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 804 386-5858 +title: Supreme Product Development Writer +userPassword: Password1 +uid: HiteC +givenName: Catherine +mail: HiteC@7d42ba8899ef4daea01b1b9e81793953.bitwarden.com +carLicense: 4R7R7T +departmentNumber: 8614 +employeeType: Employee +homePhone: +1 804 571-4564 +initials: C. H. +mobile: +1 804 685-3973 +pager: +1 804 235-2960 +roomNumber: 9147 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ilyse Mueller,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilyse Mueller +sn: Mueller +description: This is Ilyse Mueller's description +facsimileTelephoneNumber: +1 804 795-3167 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 804 788-7299 +title: Junior Product Development Madonna +userPassword: Password1 +uid: MuellerI +givenName: Ilyse +mail: MuellerI@3804896e582c4b3cac297cdd6774c60b.bitwarden.com +carLicense: E8DUQO +departmentNumber: 1182 +employeeType: Contract +homePhone: +1 804 108-1014 +initials: I. M. +mobile: +1 804 562-9802 +pager: +1 804 237-5794 +roomNumber: 9484 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Stephenie Brennen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephenie Brennen +sn: Brennen +description: This is Stephenie Brennen's description +facsimileTelephoneNumber: +1 804 455-7478 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 804 178-2813 +title: Associate Management Punk +userPassword: Password1 +uid: BrennenS +givenName: Stephenie +mail: BrennenS@1992350853aa4c25bb04f92a613f61ca.bitwarden.com +carLicense: 712KJV +departmentNumber: 9259 +employeeType: Contract +homePhone: +1 804 107-1365 +initials: S. B. +mobile: +1 804 728-8098 +pager: +1 804 751-7988 +roomNumber: 9919 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Normand Hussein,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Normand Hussein +sn: Hussein +description: This is Normand Hussein's description +facsimileTelephoneNumber: +1 408 812-8173 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 351-9170 +title: Master Peons Madonna +userPassword: Password1 +uid: HusseinN +givenName: Normand +mail: HusseinN@e7d8ea0a48844afca86cee78439bf3ab.bitwarden.com +carLicense: 80HXWA +departmentNumber: 1759 +employeeType: Contract +homePhone: +1 408 489-5787 +initials: N. H. +mobile: +1 408 125-8450 +pager: +1 408 219-3786 +roomNumber: 9167 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Greta Vilayil,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Greta Vilayil +sn: Vilayil +description: This is Greta Vilayil's description +facsimileTelephoneNumber: +1 510 586-1136 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 875-7744 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: VilayilG +givenName: Greta +mail: VilayilG@464e8484746549448721c5996878db8b.bitwarden.com +carLicense: 7S8C42 +departmentNumber: 9670 +employeeType: Normal +homePhone: +1 510 850-1964 +initials: G. V. +mobile: +1 510 113-4744 +pager: +1 510 691-9050 +roomNumber: 8293 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Siana Letsome,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siana Letsome +sn: Letsome +description: This is Siana Letsome's description +facsimileTelephoneNumber: +1 804 876-5706 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 251-5864 +title: Junior Payroll Consultant +userPassword: Password1 +uid: LetsomeS +givenName: Siana +mail: LetsomeS@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com +carLicense: NIQMNF +departmentNumber: 4340 +employeeType: Employee +homePhone: +1 804 563-8918 +initials: S. L. +mobile: +1 804 625-8965 +pager: +1 804 396-3840 +roomNumber: 9013 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cosola Steene,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cosola Steene +sn: Steene +description: This is Cosola Steene's description +facsimileTelephoneNumber: +1 206 398-4610 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 206 816-7723 +title: Associate Product Development Czar +userPassword: Password1 +uid: SteeneC +givenName: Cosola +mail: SteeneC@0565c5e96dfc4577b9a5d67dbae6882a.bitwarden.com +carLicense: 3K0BCH +departmentNumber: 8484 +employeeType: Normal +homePhone: +1 206 970-6240 +initials: C. S. +mobile: +1 206 454-5505 +pager: +1 206 492-3246 +roomNumber: 8250 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cooney Momon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cooney Momon +sn: Momon +description: This is Cooney Momon's description +facsimileTelephoneNumber: +1 206 366-2512 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 363-2842 +title: Chief Product Testing Writer +userPassword: Password1 +uid: MomonC +givenName: Cooney +mail: MomonC@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com +carLicense: BMT092 +departmentNumber: 2303 +employeeType: Normal +homePhone: +1 206 538-9983 +initials: C. M. +mobile: +1 206 365-8988 +pager: +1 206 133-2456 +roomNumber: 8242 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashla Hinchey +sn: Hinchey +description: This is Ashla Hinchey's description +facsimileTelephoneNumber: +1 818 326-3183 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 533-5965 +title: Junior Product Testing President +userPassword: Password1 +uid: HincheyA +givenName: Ashla +mail: HincheyA@7861fff1b7b548db86804b430c935e99.bitwarden.com +carLicense: BJIA3N +departmentNumber: 6446 +employeeType: Employee +homePhone: +1 818 648-4023 +initials: A. H. +mobile: +1 818 343-6846 +pager: +1 818 121-6523 +roomNumber: 9254 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Julie Dinalic,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julie Dinalic +sn: Dinalic +description: This is Julie Dinalic's description +facsimileTelephoneNumber: +1 510 341-9553 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 148-6550 +title: Master Product Development Figurehead +userPassword: Password1 +uid: DinalicJ +givenName: Julie +mail: DinalicJ@7677d85bd47643a9936d436eda55abc7.bitwarden.com +carLicense: A5XDJ7 +departmentNumber: 6108 +employeeType: Normal +homePhone: +1 510 320-5997 +initials: J. D. +mobile: +1 510 985-4889 +pager: +1 510 994-2281 +roomNumber: 8776 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Manya Mukherjee,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manya Mukherjee +sn: Mukherjee +description: This is Manya Mukherjee's description +facsimileTelephoneNumber: +1 804 485-8957 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 673-5812 +title: Associate Peons Punk +userPassword: Password1 +uid: MukherjM +givenName: Manya +mail: MukherjM@54c9f2fcd12b42f2bc190f4e3b612fb2.bitwarden.com +carLicense: 03KHP3 +departmentNumber: 2242 +employeeType: Normal +homePhone: +1 804 707-7692 +initials: M. M. +mobile: +1 804 622-4342 +pager: +1 804 667-9378 +roomNumber: 9380 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Evans Letsome,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evans Letsome +sn: Letsome +description: This is Evans Letsome's description +facsimileTelephoneNumber: +1 206 330-5583 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 852-4792 +title: Master Management Sales Rep +userPassword: Password1 +uid: LetsomeE +givenName: Evans +mail: LetsomeE@54f67a9483774cc1b5e0de314f8eb92a.bitwarden.com +carLicense: KTM1C3 +departmentNumber: 3831 +employeeType: Normal +homePhone: +1 206 129-9564 +initials: E. L. +mobile: +1 206 671-4175 +pager: +1 206 780-8460 +roomNumber: 8851 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Silvana Filpus,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silvana Filpus +sn: Filpus +description: This is Silvana Filpus's description +facsimileTelephoneNumber: +1 804 100-3579 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 114-3211 +title: Chief Human Resources Fellow +userPassword: Password1 +uid: FilpusS +givenName: Silvana +mail: FilpusS@1323c697a4384a89878379a601aa7eea.bitwarden.com +carLicense: ON6B55 +departmentNumber: 8341 +employeeType: Employee +homePhone: +1 804 126-2148 +initials: S. F. +mobile: +1 804 332-5856 +pager: +1 804 505-3227 +roomNumber: 9910 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=YauFun Poindexter,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: YauFun Poindexter +sn: Poindexter +description: This is YauFun Poindexter's description +facsimileTelephoneNumber: +1 510 249-7010 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 627-9815 +title: Associate Administrative Evangelist +userPassword: Password1 +uid: PoindexY +givenName: YauFun +mail: PoindexY@aa594d3d10eb450fa0bddacf7ac87cac.bitwarden.com +carLicense: YGNXEB +departmentNumber: 2354 +employeeType: Employee +homePhone: +1 510 359-3537 +initials: Y. P. +mobile: +1 510 478-9591 +pager: +1 510 405-5521 +roomNumber: 9742 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PohSoon Hellyer +sn: Hellyer +description: This is PohSoon Hellyer's description +facsimileTelephoneNumber: +1 510 582-9345 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 719-1675 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: HellyerP +givenName: PohSoon +mail: HellyerP@03c5e61ca485493dabd358d72b829f22.bitwarden.com +carLicense: 75GEKT +departmentNumber: 6289 +employeeType: Normal +homePhone: +1 510 633-5074 +initials: P. H. +mobile: +1 510 499-9348 +pager: +1 510 819-6443 +roomNumber: 8443 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Emmy Blissett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emmy Blissett +sn: Blissett +description: This is Emmy Blissett's description +facsimileTelephoneNumber: +1 415 496-7469 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 794-7707 +title: Junior Product Development Punk +userPassword: Password1 +uid: BlissetE +givenName: Emmy +mail: BlissetE@b09998527867493f8ec7d2c91a978e4c.bitwarden.com +carLicense: LSEMLS +departmentNumber: 4659 +employeeType: Contract +homePhone: +1 415 650-4955 +initials: E. B. +mobile: +1 415 402-2801 +pager: +1 415 917-9346 +roomNumber: 8196 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Blanche VanKast,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blanche VanKast +sn: VanKast +description: This is Blanche VanKast's description +facsimileTelephoneNumber: +1 213 411-4444 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 935-5125 +title: Supreme Product Development Dictator +userPassword: Password1 +uid: VanKastB +givenName: Blanche +mail: VanKastB@adb4d2b4425349f3bb6cfdf4327abf0b.bitwarden.com +carLicense: M0PLWT +departmentNumber: 8097 +employeeType: Employee +homePhone: +1 213 244-9940 +initials: B. V. +mobile: +1 213 933-9017 +pager: +1 213 587-9124 +roomNumber: 8320 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fernanda Ermarkaryan +sn: Ermarkaryan +description: This is Fernanda Ermarkaryan's description +facsimileTelephoneNumber: +1 510 857-4421 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 567-4662 +title: Associate Product Testing Dictator +userPassword: Password1 +uid: ErmarkaF +givenName: Fernanda +mail: ErmarkaF@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com +carLicense: FXL3HT +departmentNumber: 7263 +employeeType: Normal +homePhone: +1 510 324-4867 +initials: F. E. +mobile: +1 510 483-4008 +pager: +1 510 551-5108 +roomNumber: 8326 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Merry Aderhold,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merry Aderhold +sn: Aderhold +description: This is Merry Aderhold's description +facsimileTelephoneNumber: +1 206 800-4418 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 604-5472 +title: Chief Peons Madonna +userPassword: Password1 +uid: AderholM +givenName: Merry +mail: AderholM@a5f3f4452bf8496fb0a3c488cc4a7ea7.bitwarden.com +carLicense: 3E24WE +departmentNumber: 5488 +employeeType: Contract +homePhone: +1 206 272-4858 +initials: M. A. +mobile: +1 206 910-5131 +pager: +1 206 376-8742 +roomNumber: 9283 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gwenni Marren,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwenni Marren +sn: Marren +description: This is Gwenni Marren's description +facsimileTelephoneNumber: +1 213 953-4674 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 445-8924 +title: Associate Management Madonna +userPassword: Password1 +uid: MarrenG +givenName: Gwenni +mail: MarrenG@298910ba55544a1097f46cf86b2ab0db.bitwarden.com +carLicense: E20WJ7 +departmentNumber: 6284 +employeeType: Contract +homePhone: +1 213 930-7653 +initials: G. M. +mobile: +1 213 587-7656 +pager: +1 213 989-2075 +roomNumber: 9781 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Allys Akita,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Allys Akita +sn: Akita +description: This is Allys Akita's description +facsimileTelephoneNumber: +1 213 507-1916 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 213 651-3307 +title: Master Product Testing Developer +userPassword: Password1 +uid: AkitaA +givenName: Allys +mail: AkitaA@f23a16acadd64ac19918522aa8759ece.bitwarden.com +carLicense: 4WEOQJ +departmentNumber: 1769 +employeeType: Contract +homePhone: +1 213 383-8247 +initials: A. A. +mobile: +1 213 745-8715 +pager: +1 213 411-9964 +roomNumber: 8885 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marris Fanchi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marris Fanchi +sn: Fanchi +description: This is Marris Fanchi's description +facsimileTelephoneNumber: +1 510 997-2328 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 510 687-5952 +title: Supreme Payroll Technician +userPassword: Password1 +uid: FanchiM +givenName: Marris +mail: FanchiM@e1a5d833294d4b9eaa497139d44c8a66.bitwarden.com +carLicense: 1P9YJO +departmentNumber: 1986 +employeeType: Employee +homePhone: +1 510 855-8447 +initials: M. F. +mobile: +1 510 932-4980 +pager: +1 510 256-8135 +roomNumber: 9642 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Courtney Bayraktar +sn: Bayraktar +description: This is Courtney Bayraktar's description +facsimileTelephoneNumber: +1 408 750-2113 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 828-6719 +title: Junior Janitorial President +userPassword: Password1 +uid: BayraktC +givenName: Courtney +mail: BayraktC@146c6f8ea8724614b75bf56ba3cb8bbf.bitwarden.com +carLicense: U1RSYY +departmentNumber: 4910 +employeeType: Normal +homePhone: +1 408 547-2086 +initials: C. B. +mobile: +1 408 952-2610 +pager: +1 408 474-7245 +roomNumber: 9795 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bryna McMann,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bryna McMann +sn: McMann +description: This is Bryna McMann's description +facsimileTelephoneNumber: +1 510 136-2449 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 876-8323 +title: Chief Peons Admin +userPassword: Password1 +uid: McMannB +givenName: Bryna +mail: McMannB@15866f1d7367463c8aa06c201aa87971.bitwarden.com +carLicense: NNBHE8 +departmentNumber: 1821 +employeeType: Contract +homePhone: +1 510 702-6329 +initials: B. M. +mobile: +1 510 117-9622 +pager: +1 510 845-5782 +roomNumber: 9222 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ysabel Mendonca +sn: Mendonca +description: This is Ysabel Mendonca's description +facsimileTelephoneNumber: +1 206 896-4460 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 352-5211 +title: Supreme Human Resources Janitor +userPassword: Password1 +uid: MendoncY +givenName: Ysabel +mail: MendoncY@9cde21d54f45469eaa2726ba1c900158.bitwarden.com +carLicense: VF5OX5 +departmentNumber: 2854 +employeeType: Normal +homePhone: +1 206 478-1650 +initials: Y. M. +mobile: +1 206 961-2340 +pager: +1 206 279-4625 +roomNumber: 9350 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Clayton Lychak,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clayton Lychak +sn: Lychak +description: This is Clayton Lychak's description +facsimileTelephoneNumber: +1 818 675-2559 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 818 880-1114 +title: Master Product Testing Engineer +userPassword: Password1 +uid: LychakC +givenName: Clayton +mail: LychakC@3986b5b118ef4d79a84f9f227789123a.bitwarden.com +carLicense: 31HYOX +departmentNumber: 8203 +employeeType: Contract +homePhone: +1 818 976-6343 +initials: C. L. +mobile: +1 818 449-6150 +pager: +1 818 925-6629 +roomNumber: 9556 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronald Bernhardt +sn: Bernhardt +description: This is Ronald Bernhardt's description +facsimileTelephoneNumber: +1 510 873-6760 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 879-6840 +title: Chief Administrative Admin +userPassword: Password1 +uid: BernharR +givenName: Ronald +mail: BernharR@6959c2a103f748adbcb2ba7b29cef5d5.bitwarden.com +carLicense: 67WU8X +departmentNumber: 8803 +employeeType: Normal +homePhone: +1 510 846-3784 +initials: R. B. +mobile: +1 510 667-6446 +pager: +1 510 298-3798 +roomNumber: 9473 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Abe Parton,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abe Parton +sn: Parton +description: This is Abe Parton's description +facsimileTelephoneNumber: +1 206 246-6928 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 206 922-9717 +title: Chief Peons Fellow +userPassword: Password1 +uid: PartonA +givenName: Abe +mail: PartonA@d67f9ee009e04d2db5fb442e7cbf3d9c.bitwarden.com +carLicense: BDUVWI +departmentNumber: 9949 +employeeType: Employee +homePhone: +1 206 676-9433 +initials: A. P. +mobile: +1 206 321-3086 +pager: +1 206 853-8025 +roomNumber: 9724 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Felice Kaehler,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felice Kaehler +sn: Kaehler +description: This is Felice Kaehler's description +facsimileTelephoneNumber: +1 415 651-2978 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 860-4500 +title: Supreme Payroll Mascot +userPassword: Password1 +uid: KaehlerF +givenName: Felice +mail: KaehlerF@880fea2dcc394beca5f7e445d6e3f83c.bitwarden.com +carLicense: R7XOT3 +departmentNumber: 1658 +employeeType: Normal +homePhone: +1 415 298-6754 +initials: F. K. +mobile: +1 415 980-5926 +pager: +1 415 448-7895 +roomNumber: 8901 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jacenta Sztein,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacenta Sztein +sn: Sztein +description: This is Jacenta Sztein's description +facsimileTelephoneNumber: +1 206 300-8619 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 368-5247 +title: Associate Management Consultant +userPassword: Password1 +uid: SzteinJ +givenName: Jacenta +mail: SzteinJ@2ffe207cbf4244c5be34772f95d3e203.bitwarden.com +carLicense: K7UBUP +departmentNumber: 8203 +employeeType: Normal +homePhone: +1 206 842-9600 +initials: J. S. +mobile: +1 206 336-5733 +pager: +1 206 282-6223 +roomNumber: 8794 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sonja Hoag,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonja Hoag +sn: Hoag +description: This is Sonja Hoag's description +facsimileTelephoneNumber: +1 213 848-5489 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 886-9136 +title: Master Payroll Artist +userPassword: Password1 +uid: HoagS +givenName: Sonja +mail: HoagS@41e244581cf54e77b9831bacfa1794ee.bitwarden.com +carLicense: NQIGIP +departmentNumber: 9626 +employeeType: Contract +homePhone: +1 213 939-3676 +initials: S. H. +mobile: +1 213 244-6369 +pager: +1 213 842-9178 +roomNumber: 8494 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Manmohan MacAdams,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manmohan MacAdams +sn: MacAdams +description: This is Manmohan MacAdams's description +facsimileTelephoneNumber: +1 415 579-4800 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 415 857-6446 +title: Supreme Peons Developer +userPassword: Password1 +uid: MacAdamM +givenName: Manmohan +mail: MacAdamM@642c0c60f802487f958e665bafd86eae.bitwarden.com +carLicense: 6BS7YA +departmentNumber: 4115 +employeeType: Contract +homePhone: +1 415 131-1703 +initials: M. M. +mobile: +1 415 392-6255 +pager: +1 415 307-2154 +roomNumber: 9682 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cathe Bejar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathe Bejar +sn: Bejar +description: This is Cathe Bejar's description +facsimileTelephoneNumber: +1 206 439-6737 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 867-7950 +title: Junior Peons Developer +userPassword: Password1 +uid: BejarC +givenName: Cathe +mail: BejarC@ba8402a4d315465dbb751a651c142686.bitwarden.com +carLicense: 0XTLSW +departmentNumber: 1716 +employeeType: Employee +homePhone: +1 206 416-6388 +initials: C. B. +mobile: +1 206 486-9342 +pager: +1 206 779-8191 +roomNumber: 8234 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tape Vandervelde,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tape Vandervelde +sn: Vandervelde +description: This is Tape Vandervelde's description +facsimileTelephoneNumber: +1 818 194-8707 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 818 427-3968 +title: Associate Administrative Assistant +userPassword: Password1 +uid: VandervT +givenName: Tape +mail: VandervT@db179d7341f8445abe156cf9e17446a7.bitwarden.com +carLicense: GKXA1Q +departmentNumber: 5120 +employeeType: Employee +homePhone: +1 818 620-6446 +initials: T. V. +mobile: +1 818 967-5652 +pager: +1 818 123-1255 +roomNumber: 9971 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Adria Leger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adria Leger +sn: Leger +description: This is Adria Leger's description +facsimileTelephoneNumber: +1 213 713-7014 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 198-3605 +title: Chief Administrative Stooge +userPassword: Password1 +uid: LegerA +givenName: Adria +mail: LegerA@6a29a5859e9645b49806b0a3149cb2b1.bitwarden.com +carLicense: 950N3N +departmentNumber: 8724 +employeeType: Employee +homePhone: +1 213 920-1808 +initials: A. L. +mobile: +1 213 349-6843 +pager: +1 213 165-6870 +roomNumber: 8340 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Modesty Quinlan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Modesty Quinlan +sn: Quinlan +description: This is Modesty Quinlan's description +facsimileTelephoneNumber: +1 213 907-5954 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 809-7492 +title: Junior Management Sales Rep +userPassword: Password1 +uid: QuinlanM +givenName: Modesty +mail: QuinlanM@643a7a9782f24ae2ae0ce0064cc2c175.bitwarden.com +carLicense: XCS993 +departmentNumber: 9302 +employeeType: Normal +homePhone: +1 213 806-9943 +initials: M. Q. +mobile: +1 213 858-9543 +pager: +1 213 280-4139 +roomNumber: 9032 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jawaid Upton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jawaid Upton +sn: Upton +description: This is Jawaid Upton's description +facsimileTelephoneNumber: +1 510 676-2136 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 589-8626 +title: Chief Management Manager +userPassword: Password1 +uid: UptonJ +givenName: Jawaid +mail: UptonJ@48f40b9c61c1423ab7f4a12dacd08cb7.bitwarden.com +carLicense: 45DDB3 +departmentNumber: 8212 +employeeType: Normal +homePhone: +1 510 608-5662 +initials: J. U. +mobile: +1 510 310-1899 +pager: +1 510 913-5588 +roomNumber: 9909 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Trevor Vradmin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trevor Vradmin +sn: Vradmin +description: This is Trevor Vradmin's description +facsimileTelephoneNumber: +1 415 719-9885 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 398-8324 +title: Supreme Product Development Technician +userPassword: Password1 +uid: VradminT +givenName: Trevor +mail: VradminT@5214956f0ee84ad493b8defdd90a23da.bitwarden.com +carLicense: A5O7BP +departmentNumber: 2917 +employeeType: Employee +homePhone: +1 415 742-5499 +initials: T. V. +mobile: +1 415 415-8096 +pager: +1 415 521-4699 +roomNumber: 8210 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Helena Pellizzari,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helena Pellizzari +sn: Pellizzari +description: This is Helena Pellizzari's description +facsimileTelephoneNumber: +1 408 319-8317 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 662-9798 +title: Junior Peons Manager +userPassword: Password1 +uid: PellizzH +givenName: Helena +mail: PellizzH@aea3f0a7f67b4eaaaa82cbd9284643da.bitwarden.com +carLicense: R9U5XN +departmentNumber: 4670 +employeeType: Employee +homePhone: +1 408 360-3199 +initials: H. P. +mobile: +1 408 844-7604 +pager: +1 408 878-2142 +roomNumber: 9972 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=MunHang Salinas,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MunHang Salinas +sn: Salinas +description: This is MunHang Salinas's description +facsimileTelephoneNumber: +1 818 625-1983 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 230-6249 +title: Master Janitorial Consultant +userPassword: Password1 +uid: SalinasM +givenName: MunHang +mail: SalinasM@1dc3a166a7d1429cbda07bce89749db3.bitwarden.com +carLicense: 1PIA9A +departmentNumber: 6435 +employeeType: Employee +homePhone: +1 818 889-6804 +initials: M. S. +mobile: +1 818 476-9877 +pager: +1 818 668-9864 +roomNumber: 8900 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SimonPui-Lok Schulze +sn: Schulze +description: This is SimonPui-Lok Schulze's description +facsimileTelephoneNumber: +1 510 756-6538 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 741-3551 +title: Junior Human Resources Sales Rep +userPassword: Password1 +uid: SchulzeS +givenName: SimonPui-Lok +mail: SchulzeS@f071c89187164ee99b36301acebce3d5.bitwarden.com +carLicense: 3DHVQW +departmentNumber: 3663 +employeeType: Normal +homePhone: +1 510 734-8492 +initials: S. S. +mobile: +1 510 128-8596 +pager: +1 510 644-6519 +roomNumber: 9131 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephani Saidzadeh +sn: Saidzadeh +description: This is Stephani Saidzadeh's description +facsimileTelephoneNumber: +1 818 509-1777 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 818 752-5486 +title: Chief Product Development Madonna +userPassword: Password1 +uid: SaidzadS +givenName: Stephani +mail: SaidzadS@ab41bf0b11974609ad8cdf477ead2e3f.bitwarden.com +carLicense: N97BAR +departmentNumber: 7404 +employeeType: Contract +homePhone: +1 818 526-1181 +initials: S. S. +mobile: +1 818 214-6311 +pager: +1 818 374-8628 +roomNumber: 9884 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Delcina Forbes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delcina Forbes +sn: Forbes +description: This is Delcina Forbes's description +facsimileTelephoneNumber: +1 804 481-9565 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 208-8789 +title: Associate Product Development Writer +userPassword: Password1 +uid: ForbesD +givenName: Delcina +mail: ForbesD@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com +carLicense: LI2I0K +departmentNumber: 4878 +employeeType: Normal +homePhone: +1 804 620-3718 +initials: D. F. +mobile: +1 804 445-3997 +pager: +1 804 872-8743 +roomNumber: 9896 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Norene Tarver,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norene Tarver +sn: Tarver +description: This is Norene Tarver's description +facsimileTelephoneNumber: +1 415 492-8136 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 139-7563 +title: Junior Janitorial Artist +userPassword: Password1 +uid: TarverN +givenName: Norene +mail: TarverN@416f73acf1c3455592568bbc2cd91814.bitwarden.com +carLicense: 4EIIB5 +departmentNumber: 4411 +employeeType: Normal +homePhone: +1 415 746-7754 +initials: N. T. +mobile: +1 415 600-8191 +pager: +1 415 682-9439 +roomNumber: 8589 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Angie Leiba,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angie Leiba +sn: Leiba +description: This is Angie Leiba's description +facsimileTelephoneNumber: +1 510 464-2497 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 369-4702 +title: Chief Management Madonna +userPassword: Password1 +uid: LeibaA +givenName: Angie +mail: LeibaA@cdf65b883c4c457a86f2eba62ef732a4.bitwarden.com +carLicense: 72FFAQ +departmentNumber: 4810 +employeeType: Normal +homePhone: +1 510 594-8598 +initials: A. L. +mobile: +1 510 500-4203 +pager: +1 510 370-5269 +roomNumber: 8440 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ernest Welker,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ernest Welker +sn: Welker +description: This is Ernest Welker's description +facsimileTelephoneNumber: +1 206 680-7455 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 725-7924 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: WelkerE +givenName: Ernest +mail: WelkerE@98dbe2650ab647828dc76525d39c4ec5.bitwarden.com +carLicense: DWV9Q1 +departmentNumber: 7162 +employeeType: Normal +homePhone: +1 206 485-9765 +initials: E. W. +mobile: +1 206 117-5716 +pager: +1 206 820-2012 +roomNumber: 9409 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorisa Venjohn +sn: Venjohn +description: This is Dorisa Venjohn's description +facsimileTelephoneNumber: +1 818 373-6392 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 619-1954 +title: Master Human Resources Manager +userPassword: Password1 +uid: VenjohnD +givenName: Dorisa +mail: VenjohnD@416f73acf1c3455592568bbc2cd91814.bitwarden.com +carLicense: D323WI +departmentNumber: 9078 +employeeType: Contract +homePhone: +1 818 890-6935 +initials: D. V. +mobile: +1 818 941-2168 +pager: +1 818 395-4795 +roomNumber: 8971 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fitzgerald Kabel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fitzgerald Kabel +sn: Kabel +description: This is Fitzgerald Kabel's description +facsimileTelephoneNumber: +1 510 546-5477 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 210-5421 +title: Chief Management Czar +userPassword: Password1 +uid: KabelF +givenName: Fitzgerald +mail: KabelF@a3cca719b1e44338804967e6cd3716a5.bitwarden.com +carLicense: 7IE2H8 +departmentNumber: 6162 +employeeType: Normal +homePhone: +1 510 364-6260 +initials: F. K. +mobile: +1 510 922-3666 +pager: +1 510 944-8461 +roomNumber: 9706 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zaven Bethune,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zaven Bethune +sn: Bethune +description: This is Zaven Bethune's description +facsimileTelephoneNumber: +1 206 808-7992 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 522-4443 +title: Master Product Development Grunt +userPassword: Password1 +uid: BethuneZ +givenName: Zaven +mail: BethuneZ@d9c35c3dbb1b4cc08294fcf741816060.bitwarden.com +carLicense: NIJUM8 +departmentNumber: 2284 +employeeType: Normal +homePhone: +1 206 348-8515 +initials: Z. B. +mobile: +1 206 586-3855 +pager: +1 206 279-5624 +roomNumber: 8772 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Aridatha Flindall,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aridatha Flindall +sn: Flindall +description: This is Aridatha Flindall's description +facsimileTelephoneNumber: +1 408 544-1182 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 187-1044 +title: Supreme Management Dictator +userPassword: Password1 +uid: FlindalA +givenName: Aridatha +mail: FlindalA@cae8e3926df843bead78e784e4401c15.bitwarden.com +carLicense: FPJD57 +departmentNumber: 7855 +employeeType: Employee +homePhone: +1 408 462-3512 +initials: A. F. +mobile: +1 408 878-3205 +pager: +1 408 757-9775 +roomNumber: 9959 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cairistiona Sanh +sn: Sanh +description: This is Cairistiona Sanh's description +facsimileTelephoneNumber: +1 206 435-7042 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 893-2870 +title: Chief Product Development Warrior +userPassword: Password1 +uid: SanhC +givenName: Cairistiona +mail: SanhC@b70f11362a424a69841534d3b1179197.bitwarden.com +carLicense: B5CLMN +departmentNumber: 5731 +employeeType: Normal +homePhone: +1 206 151-7330 +initials: C. S. +mobile: +1 206 488-5351 +pager: +1 206 229-2485 +roomNumber: 8103 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kipp Aubuchon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kipp Aubuchon +sn: Aubuchon +description: This is Kipp Aubuchon's description +facsimileTelephoneNumber: +1 213 198-1848 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 915-5284 +title: Associate Management Architect +userPassword: Password1 +uid: AubuchoK +givenName: Kipp +mail: AubuchoK@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com +carLicense: 202G4Q +departmentNumber: 6368 +employeeType: Employee +homePhone: +1 213 966-6779 +initials: K. A. +mobile: +1 213 306-5318 +pager: +1 213 411-2653 +roomNumber: 9653 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Daile Id,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daile Id +sn: Id +description: This is Daile Id's description +facsimileTelephoneNumber: +1 408 620-4196 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 408 236-2367 +title: Chief Payroll Fellow +userPassword: Password1 +uid: IdD +givenName: Daile +mail: IdD@250220c45d4c4f3e8bbdbc41fe165d43.bitwarden.com +carLicense: G9E5C4 +departmentNumber: 5401 +employeeType: Normal +homePhone: +1 408 118-3376 +initials: D. I. +mobile: +1 408 748-9284 +pager: +1 408 186-1585 +roomNumber: 8336 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Shea Lashmit,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shea Lashmit +sn: Lashmit +description: This is Shea Lashmit's description +facsimileTelephoneNumber: +1 206 164-9947 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 206 517-8364 +title: Junior Product Testing Czar +userPassword: Password1 +uid: LashmitS +givenName: Shea +mail: LashmitS@795d165ac426423b9759f469242c1c41.bitwarden.com +carLicense: E7SMTM +departmentNumber: 2097 +employeeType: Normal +homePhone: +1 206 708-1367 +initials: S. L. +mobile: +1 206 335-7395 +pager: +1 206 260-6875 +roomNumber: 8983 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rizwan McCloskey +sn: McCloskey +description: This is Rizwan McCloskey's description +facsimileTelephoneNumber: +1 818 549-4145 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 675-6416 +title: Junior Janitorial Dictator +userPassword: Password1 +uid: McCloskR +givenName: Rizwan +mail: McCloskR@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com +carLicense: WL8DWR +departmentNumber: 3341 +employeeType: Contract +homePhone: +1 818 838-2819 +initials: R. M. +mobile: +1 818 861-5364 +pager: +1 818 904-4042 +roomNumber: 8341 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stuart Murdock,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stuart Murdock +sn: Murdock +description: This is Stuart Murdock's description +facsimileTelephoneNumber: +1 415 624-3043 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 415 139-2529 +title: Master Payroll Punk +userPassword: Password1 +uid: MurdockS +givenName: Stuart +mail: MurdockS@281a3b7d828a4279bcb4d231694f9078.bitwarden.com +carLicense: VDCQMG +departmentNumber: 4628 +employeeType: Contract +homePhone: +1 415 439-5764 +initials: S. M. +mobile: +1 415 196-8716 +pager: +1 415 573-7076 +roomNumber: 8701 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Adrianna Ness,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrianna Ness +sn: Ness +description: This is Adrianna Ness's description +facsimileTelephoneNumber: +1 206 605-1753 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 206 146-2111 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: NessA +givenName: Adrianna +mail: NessA@4cb464a4b57341639b507e14b84bcd33.bitwarden.com +carLicense: NTW23D +departmentNumber: 1979 +employeeType: Employee +homePhone: +1 206 700-3807 +initials: A. N. +mobile: +1 206 733-3044 +pager: +1 206 609-4230 +roomNumber: 8209 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agace Fitzpatrick +sn: Fitzpatrick +description: This is Agace Fitzpatrick's description +facsimileTelephoneNumber: +1 213 514-2302 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 292-1771 +title: Supreme Product Development Engineer +userPassword: Password1 +uid: FitzpatA +givenName: Agace +mail: FitzpatA@d0510c6d4d2248279a5b0899ea306017.bitwarden.com +carLicense: FLJDJM +departmentNumber: 5594 +employeeType: Employee +homePhone: +1 213 631-9832 +initials: A. F. +mobile: +1 213 158-6939 +pager: +1 213 296-3296 +roomNumber: 8938 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Vanity Penland,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanity Penland +sn: Penland +description: This is Vanity Penland's description +facsimileTelephoneNumber: +1 206 503-1971 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 206 686-3990 +title: Master Human Resources Mascot +userPassword: Password1 +uid: PenlandV +givenName: Vanity +mail: PenlandV@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com +carLicense: VDIDX6 +departmentNumber: 1581 +employeeType: Employee +homePhone: +1 206 131-5030 +initials: V. P. +mobile: +1 206 835-7482 +pager: +1 206 354-5044 +roomNumber: 9857 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shiroshi Thornley +sn: Thornley +description: This is Shiroshi Thornley's description +facsimileTelephoneNumber: +1 818 233-1771 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 362-3764 +title: Associate Product Development Stooge +userPassword: Password1 +uid: ThornleS +givenName: Shiroshi +mail: ThornleS@49424809fdd04ce884f671ecda70d45c.bitwarden.com +carLicense: 87E0YK +departmentNumber: 1873 +employeeType: Normal +homePhone: +1 818 229-3458 +initials: S. T. +mobile: +1 818 414-9502 +pager: +1 818 914-6459 +roomNumber: 8407 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Denzil Willenbring,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Denzil Willenbring +sn: Willenbring +description: This is Denzil Willenbring's description +facsimileTelephoneNumber: +1 408 840-4821 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 408 148-4318 +title: Chief Administrative Madonna +userPassword: Password1 +uid: WillenbD +givenName: Denzil +mail: WillenbD@21b4ff7eaee4433da6e498e7c5416e46.bitwarden.com +carLicense: 4FR85W +departmentNumber: 2776 +employeeType: Employee +homePhone: +1 408 116-6553 +initials: D. W. +mobile: +1 408 361-1859 +pager: +1 408 557-1279 +roomNumber: 9795 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Erna Stephen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erna Stephen +sn: Stephen +description: This is Erna Stephen's description +facsimileTelephoneNumber: +1 213 860-8233 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 382-1613 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: StephenE +givenName: Erna +mail: StephenE@b401949a67c74bd1beca2a3e5c932036.bitwarden.com +carLicense: DMQ245 +departmentNumber: 6229 +employeeType: Contract +homePhone: +1 213 797-5455 +initials: E. S. +mobile: +1 213 901-6589 +pager: +1 213 582-7997 +roomNumber: 8775 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=MarieAndree Ness,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MarieAndree Ness +sn: Ness +description: This is MarieAndree Ness's description +facsimileTelephoneNumber: +1 206 811-5616 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 362-9649 +title: Supreme Management Sales Rep +userPassword: Password1 +uid: NessM +givenName: MarieAndree +mail: NessM@2e9e3fdb5ac94378ae0798f03ed2af05.bitwarden.com +carLicense: ULKWC4 +departmentNumber: 7391 +employeeType: Employee +homePhone: +1 206 515-4425 +initials: M. N. +mobile: +1 206 239-1600 +pager: +1 206 864-5807 +roomNumber: 9243 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=LouisRene Borozny,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LouisRene Borozny +sn: Borozny +description: This is LouisRene Borozny's description +facsimileTelephoneNumber: +1 206 657-7412 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 206 543-5869 +title: Junior Payroll Writer +userPassword: Password1 +uid: BoroznyL +givenName: LouisRene +mail: BoroznyL@76f45d6ecf254c758ec9e0e2bce3358b.bitwarden.com +carLicense: CGLV65 +departmentNumber: 2094 +employeeType: Normal +homePhone: +1 206 812-6850 +initials: L. B. +mobile: +1 206 531-7265 +pager: +1 206 298-3225 +roomNumber: 9151 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Donetta Grabowski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donetta Grabowski +sn: Grabowski +description: This is Donetta Grabowski's description +facsimileTelephoneNumber: +1 408 891-5718 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 530-9394 +title: Supreme Peons Czar +userPassword: Password1 +uid: GrabowsD +givenName: Donetta +mail: GrabowsD@282788aa89974e41becc817ad84f61e2.bitwarden.com +carLicense: 0GX62C +departmentNumber: 4345 +employeeType: Contract +homePhone: +1 408 930-7912 +initials: D. G. +mobile: +1 408 439-5913 +pager: +1 408 421-2646 +roomNumber: 9994 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brianne Seddigh +sn: Seddigh +description: This is Brianne Seddigh's description +facsimileTelephoneNumber: +1 206 855-9281 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 101-9547 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: SeddighB +givenName: Brianne +mail: SeddighB@331a1fba93cb4fc9bfec4ceeacadac7c.bitwarden.com +carLicense: 9CE2AJ +departmentNumber: 8674 +employeeType: Normal +homePhone: +1 206 908-9320 +initials: B. S. +mobile: +1 206 768-8664 +pager: +1 206 522-8916 +roomNumber: 9477 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Henk Crick,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Henk Crick +sn: Crick +description: This is Henk Crick's description +facsimileTelephoneNumber: +1 206 234-8698 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 613-1355 +title: Chief Product Testing Pinhead +userPassword: Password1 +uid: CrickH +givenName: Henk +mail: CrickH@de014112a9c2429e8a696185d3f55fa8.bitwarden.com +carLicense: KBV6FV +departmentNumber: 6907 +employeeType: Normal +homePhone: +1 206 699-3202 +initials: H. C. +mobile: +1 206 810-2944 +pager: +1 206 233-3790 +roomNumber: 8142 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ineke Haig,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ineke Haig +sn: Haig +description: This is Ineke Haig's description +facsimileTelephoneNumber: +1 408 940-8205 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 238-1831 +title: Master Payroll President +userPassword: Password1 +uid: HaigI +givenName: Ineke +mail: HaigI@4b870fc05654407aaffa37354d036e58.bitwarden.com +carLicense: 4T0TNI +departmentNumber: 3324 +employeeType: Employee +homePhone: +1 408 233-1431 +initials: I. H. +mobile: +1 408 526-1960 +pager: +1 408 121-6841 +roomNumber: 8298 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annemarijke Toscano +sn: Toscano +description: This is Annemarijke Toscano's description +facsimileTelephoneNumber: +1 415 215-6281 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 415 575-9508 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: ToscanoA +givenName: Annemarijke +mail: ToscanoA@9d29672938a1423692f56bf9785bfe43.bitwarden.com +carLicense: 17UHJY +departmentNumber: 3138 +employeeType: Contract +homePhone: +1 415 832-8800 +initials: A. T. +mobile: +1 415 927-1114 +pager: +1 415 882-6492 +roomNumber: 8113 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Felipa Catlett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felipa Catlett +sn: Catlett +description: This is Felipa Catlett's description +facsimileTelephoneNumber: +1 415 781-9316 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 415 582-8283 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: CatlettF +givenName: Felipa +mail: CatlettF@c7b440e597614575a5a39ed9339f6e2e.bitwarden.com +carLicense: YWQD54 +departmentNumber: 9319 +employeeType: Contract +homePhone: +1 415 220-5194 +initials: F. C. +mobile: +1 415 492-2685 +pager: +1 415 239-7818 +roomNumber: 9837 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kathye Ledou,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathye Ledou +sn: Ledou +description: This is Kathye Ledou's description +facsimileTelephoneNumber: +1 818 864-8837 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 622-3195 +title: Chief Management Sales Rep +userPassword: Password1 +uid: LedouK +givenName: Kathye +mail: LedouK@3019fa1598344acaa882f41e30176719.bitwarden.com +carLicense: 1IFPHF +departmentNumber: 5294 +employeeType: Normal +homePhone: +1 818 314-2850 +initials: K. L. +mobile: +1 818 305-1352 +pager: +1 818 205-5731 +roomNumber: 9889 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pawel Pippin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pawel Pippin +sn: Pippin +description: This is Pawel Pippin's description +facsimileTelephoneNumber: +1 213 899-2292 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 414-7881 +title: Master Payroll Consultant +userPassword: Password1 +uid: PippinP +givenName: Pawel +mail: PippinP@74e0243ab8e64a19864d198a422eff4d.bitwarden.com +carLicense: OJXNNI +departmentNumber: 2930 +employeeType: Contract +homePhone: +1 213 291-2676 +initials: P. P. +mobile: +1 213 812-2701 +pager: +1 213 198-5243 +roomNumber: 9077 +manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Godiva Pesik,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Godiva Pesik +sn: Pesik +description: This is Godiva Pesik's description +facsimileTelephoneNumber: +1 510 277-1139 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 920-2260 +title: Supreme Janitorial Madonna +userPassword: Password1 +uid: PesikG +givenName: Godiva +mail: PesikG@069bff2c38b341aca5c431f6580b51ea.bitwarden.com +carLicense: JL9YBN +departmentNumber: 5068 +employeeType: Employee +homePhone: +1 510 149-1527 +initials: G. P. +mobile: +1 510 993-7565 +pager: +1 510 115-9233 +roomNumber: 8559 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosamund Freimark +sn: Freimark +description: This is Rosamund Freimark's description +facsimileTelephoneNumber: +1 510 662-7257 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 731-6927 +title: Associate Human Resources Director +userPassword: Password1 +uid: FreimarR +givenName: Rosamund +mail: FreimarR@a7879a3db49d425f8293a2b2d51d5b86.bitwarden.com +carLicense: XJR70O +departmentNumber: 4677 +employeeType: Normal +homePhone: +1 510 712-8956 +initials: R. F. +mobile: +1 510 880-2411 +pager: +1 510 179-9598 +roomNumber: 8636 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hugo Lamothe +sn: Lamothe +description: This is Hugo Lamothe's description +facsimileTelephoneNumber: +1 408 822-1833 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 360-1398 +title: Associate Janitorial Developer +userPassword: Password1 +uid: LamotheH +givenName: Hugo +mail: LamotheH@c2fbe2791d9c4564ab131c65109368d4.bitwarden.com +carLicense: 9AVHY6 +departmentNumber: 7865 +employeeType: Normal +homePhone: +1 408 596-2150 +initials: H. L. +mobile: +1 408 687-8625 +pager: +1 408 679-6485 +roomNumber: 8608 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Evelina Mapile,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evelina Mapile +sn: Mapile +description: This is Evelina Mapile's description +facsimileTelephoneNumber: +1 804 798-3452 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 207-7298 +title: Master Administrative Grunt +userPassword: Password1 +uid: MapileE +givenName: Evelina +mail: MapileE@502ce1a083704d4ea4b58d700d574c63.bitwarden.com +carLicense: QXAPTX +departmentNumber: 2397 +employeeType: Employee +homePhone: +1 804 815-8655 +initials: E. M. +mobile: +1 804 323-3987 +pager: +1 804 539-5622 +roomNumber: 9478 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pammy Rogers,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pammy Rogers +sn: Rogers +description: This is Pammy Rogers's description +facsimileTelephoneNumber: +1 415 991-4694 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 336-2729 +title: Junior Human Resources Developer +userPassword: Password1 +uid: RogersP +givenName: Pammy +mail: RogersP@78e39349ef7749648d2cb3e7b1e56508.bitwarden.com +carLicense: 8NKFX6 +departmentNumber: 8863 +employeeType: Normal +homePhone: +1 415 413-6038 +initials: P. R. +mobile: +1 415 303-5938 +pager: +1 415 962-4551 +roomNumber: 9420 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pas Giles,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pas Giles +sn: Giles +description: This is Pas Giles's description +facsimileTelephoneNumber: +1 213 659-3521 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 213 940-2422 +title: Chief Human Resources Visionary +userPassword: Password1 +uid: GilesP +givenName: Pas +mail: GilesP@8670b7b167164a8b9ce71d78ae9cb652.bitwarden.com +carLicense: 7FHS9C +departmentNumber: 8490 +employeeType: Contract +homePhone: +1 213 558-1228 +initials: P. G. +mobile: +1 213 434-9095 +pager: +1 213 169-6855 +roomNumber: 8344 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marietta CamelToueg,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marietta CamelToueg +sn: CamelToueg +description: This is Marietta CamelToueg's description +facsimileTelephoneNumber: +1 408 528-8488 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 518-1050 +title: Junior Management Manager +userPassword: Password1 +uid: CamelToM +givenName: Marietta +mail: CamelToM@8df14385ae864b439973adc9259c1607.bitwarden.com +carLicense: KJ4KTB +departmentNumber: 1049 +employeeType: Normal +homePhone: +1 408 942-2544 +initials: M. C. +mobile: +1 408 525-1248 +pager: +1 408 313-7325 +roomNumber: 9401 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rico Meachum,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rico Meachum +sn: Meachum +description: This is Rico Meachum's description +facsimileTelephoneNumber: +1 206 256-4117 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 291-9657 +title: Master Management Punk +userPassword: Password1 +uid: MeachumR +givenName: Rico +mail: MeachumR@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com +carLicense: 6FONHO +departmentNumber: 2768 +employeeType: Normal +homePhone: +1 206 810-7317 +initials: R. M. +mobile: +1 206 356-5815 +pager: +1 206 760-5727 +roomNumber: 8377 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Venkat Marrone,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Venkat Marrone +sn: Marrone +description: This is Venkat Marrone's description +facsimileTelephoneNumber: +1 213 576-7716 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 657-4177 +title: Associate Administrative Mascot +userPassword: Password1 +uid: MarroneV +givenName: Venkat +mail: MarroneV@b2f3aa04c0ef4b03a42b0509b9df028c.bitwarden.com +carLicense: SADOHJ +departmentNumber: 6029 +employeeType: Employee +homePhone: +1 213 831-2682 +initials: V. M. +mobile: +1 213 551-3601 +pager: +1 213 665-6056 +roomNumber: 8245 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanMarc McAllister +sn: McAllister +description: This is JeanMarc McAllister's description +facsimileTelephoneNumber: +1 415 183-3907 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 579-1055 +title: Master Payroll Technician +userPassword: Password1 +uid: McAllisJ +givenName: JeanMarc +mail: McAllisJ@31bdf3f083274a9a823bbf5bbd24461a.bitwarden.com +carLicense: DDXV3A +departmentNumber: 3528 +employeeType: Contract +homePhone: +1 415 707-6407 +initials: J. M. +mobile: +1 415 525-4387 +pager: +1 415 922-2148 +roomNumber: 8309 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carolyn Seamster +sn: Seamster +description: This is Carolyn Seamster's description +facsimileTelephoneNumber: +1 213 925-1494 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 933-3518 +title: Master Janitorial Dictator +userPassword: Password1 +uid: SeamsteC +givenName: Carolyn +mail: SeamsteC@b05d3b7a0745414e90247097c6c4b50d.bitwarden.com +carLicense: YF7OT4 +departmentNumber: 3075 +employeeType: Contract +homePhone: +1 213 512-9246 +initials: C. S. +mobile: +1 213 963-2340 +pager: +1 213 505-1535 +roomNumber: 8036 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elwood Gould,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elwood Gould +sn: Gould +description: This is Elwood Gould's description +facsimileTelephoneNumber: +1 408 749-1975 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 760-3094 +title: Associate Payroll Sales Rep +userPassword: Password1 +uid: GouldE +givenName: Elwood +mail: GouldE@660a614454f1481f8e7878f66c6cc97d.bitwarden.com +carLicense: IPMCN6 +departmentNumber: 5822 +employeeType: Employee +homePhone: +1 408 286-6419 +initials: E. G. +mobile: +1 408 553-8952 +pager: +1 408 449-1788 +roomNumber: 8588 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorin Rittenhouse +sn: Rittenhouse +description: This is Dorin Rittenhouse's description +facsimileTelephoneNumber: +1 213 290-5895 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 213 607-9470 +title: Master Payroll President +userPassword: Password1 +uid: RittenhD +givenName: Dorin +mail: RittenhD@b25a6c9a4813403592f85516045bbb70.bitwarden.com +carLicense: FJ8UWK +departmentNumber: 6096 +employeeType: Normal +homePhone: +1 213 905-9213 +initials: D. R. +mobile: +1 213 396-4054 +pager: +1 213 233-7776 +roomNumber: 8784 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnneLise Zhelka +sn: Zhelka +description: This is AnneLise Zhelka's description +facsimileTelephoneNumber: +1 804 149-2931 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 208-3817 +title: Associate Product Testing Manager +userPassword: Password1 +uid: ZhelkaA +givenName: AnneLise +mail: ZhelkaA@9524e5fbf8844145b5c00986d16d8376.bitwarden.com +carLicense: SV12A3 +departmentNumber: 1348 +employeeType: Normal +homePhone: +1 804 340-5604 +initials: A. Z. +mobile: +1 804 899-5946 +pager: +1 804 200-6029 +roomNumber: 8415 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Darrel Hoch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrel Hoch +sn: Hoch +description: This is Darrel Hoch's description +facsimileTelephoneNumber: +1 510 716-4617 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 835-1400 +title: Master Janitorial Developer +userPassword: Password1 +uid: HochD +givenName: Darrel +mail: HochD@ead811946c1c45dc9e9e74c993c44021.bitwarden.com +carLicense: Y9PI51 +departmentNumber: 9490 +employeeType: Employee +homePhone: +1 510 511-8702 +initials: D. H. +mobile: +1 510 654-4037 +pager: +1 510 783-7256 +roomNumber: 8854 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Eunice Gerhart,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eunice Gerhart +sn: Gerhart +description: This is Eunice Gerhart's description +facsimileTelephoneNumber: +1 206 250-5696 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 145-6683 +title: Chief Management Assistant +userPassword: Password1 +uid: GerhartE +givenName: Eunice +mail: GerhartE@bf155b8bc0754f518a83ee458e4a4635.bitwarden.com +carLicense: UTJDFC +departmentNumber: 2222 +employeeType: Contract +homePhone: +1 206 983-3157 +initials: E. G. +mobile: +1 206 225-2931 +pager: +1 206 343-5990 +roomNumber: 8464 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karena Gunasekera,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karena Gunasekera +sn: Gunasekera +description: This is Karena Gunasekera's description +facsimileTelephoneNumber: +1 818 241-4264 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 818 184-3404 +title: Chief Administrative Admin +userPassword: Password1 +uid: GunasekK +givenName: Karena +mail: GunasekK@1b9f3ee20651489b84389c5c6ee6794d.bitwarden.com +carLicense: HRGOAM +departmentNumber: 4411 +employeeType: Contract +homePhone: +1 818 275-7103 +initials: K. G. +mobile: +1 818 753-7845 +pager: +1 818 869-4461 +roomNumber: 8549 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beaumont Boruslawski +sn: Boruslawski +description: This is Beaumont Boruslawski's description +facsimileTelephoneNumber: +1 213 167-3668 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 885-3059 +title: Junior Human Resources Vice President +userPassword: Password1 +uid: BoruslaB +givenName: Beaumont +mail: BoruslaB@600cf979cfee42dfbdf815d8ce66c105.bitwarden.com +carLicense: C3KDHD +departmentNumber: 7787 +employeeType: Employee +homePhone: +1 213 674-9417 +initials: B. B. +mobile: +1 213 350-8129 +pager: +1 213 720-3249 +roomNumber: 8698 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Charmine Izzo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charmine Izzo +sn: Izzo +description: This is Charmine Izzo's description +facsimileTelephoneNumber: +1 408 590-6611 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 408 391-2282 +title: Chief Human Resources Fellow +userPassword: Password1 +uid: IzzoC +givenName: Charmine +mail: IzzoC@4b0cd35c3d8442a69514b96d040ad360.bitwarden.com +carLicense: 7S57GR +departmentNumber: 8185 +employeeType: Contract +homePhone: +1 408 310-9832 +initials: C. I. +mobile: +1 408 274-9217 +pager: +1 408 182-7662 +roomNumber: 9217 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nicolea Fagan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolea Fagan +sn: Fagan +description: This is Nicolea Fagan's description +facsimileTelephoneNumber: +1 818 134-2326 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 882-5425 +title: Supreme Administrative Artist +userPassword: Password1 +uid: FaganN +givenName: Nicolea +mail: FaganN@e17fea6e1c564882ab9a476cab0dc5ce.bitwarden.com +carLicense: U1WWRU +departmentNumber: 4678 +employeeType: Normal +homePhone: +1 818 171-7796 +initials: N. F. +mobile: +1 818 865-2569 +pager: +1 818 779-2926 +roomNumber: 9709 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Huyen Nashville,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huyen Nashville +sn: Nashville +description: This is Huyen Nashville's description +facsimileTelephoneNumber: +1 510 468-7648 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 398-9876 +title: Associate Product Testing Admin +userPassword: Password1 +uid: NashvilH +givenName: Huyen +mail: NashvilH@bcfddcc4528d4a7da41251051a550591.bitwarden.com +carLicense: 9NNSNG +departmentNumber: 2361 +employeeType: Employee +homePhone: +1 510 796-8017 +initials: H. N. +mobile: +1 510 788-9838 +pager: +1 510 479-1180 +roomNumber: 9157 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reva Walkowiak +sn: Walkowiak +description: This is Reva Walkowiak's description +facsimileTelephoneNumber: +1 804 848-7553 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 815-9900 +title: Associate Janitorial Admin +userPassword: Password1 +uid: WalkowiR +givenName: Reva +mail: WalkowiR@627ddcf5e1624631b06795e9a52501e0.bitwarden.com +carLicense: WPRRJB +departmentNumber: 6256 +employeeType: Employee +homePhone: +1 804 808-2748 +initials: R. W. +mobile: +1 804 535-1718 +pager: +1 804 129-6083 +roomNumber: 8014 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meriann Rotzjean +sn: Rotzjean +description: This is Meriann Rotzjean's description +facsimileTelephoneNumber: +1 206 868-1225 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 766-3245 +title: Master Administrative Vice President +userPassword: Password1 +uid: RotzjeaM +givenName: Meriann +mail: RotzjeaM@49672ac4642e4eb39566d542af0eef8f.bitwarden.com +carLicense: SX2REY +departmentNumber: 3363 +employeeType: Normal +homePhone: +1 206 956-8022 +initials: M. R. +mobile: +1 206 253-7225 +pager: +1 206 729-1845 +roomNumber: 8342 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Myrtia Closson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrtia Closson +sn: Closson +description: This is Myrtia Closson's description +facsimileTelephoneNumber: +1 510 131-1343 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 868-2738 +title: Chief Product Development Visionary +userPassword: Password1 +uid: ClossonM +givenName: Myrtia +mail: ClossonM@11aeb057db4a4efc9f9db6e2b2c23ff0.bitwarden.com +carLicense: 9ON77M +departmentNumber: 2772 +employeeType: Normal +homePhone: +1 510 228-8644 +initials: M. C. +mobile: +1 510 208-3116 +pager: +1 510 432-2370 +roomNumber: 9910 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffani Ibach +sn: Ibach +description: This is Tiffani Ibach's description +facsimileTelephoneNumber: +1 213 234-7511 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 878-4309 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: IbachT +givenName: Tiffani +mail: IbachT@402d43c51a4446beb3be4fb34fdb725c.bitwarden.com +carLicense: UKU3ND +departmentNumber: 6324 +employeeType: Normal +homePhone: +1 213 565-7358 +initials: T. I. +mobile: +1 213 150-3689 +pager: +1 213 853-8782 +roomNumber: 9314 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ioana Jenner,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ioana Jenner +sn: Jenner +description: This is Ioana Jenner's description +facsimileTelephoneNumber: +1 804 917-8186 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 804 486-7528 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: JennerI +givenName: Ioana +mail: JennerI@33ed0b76cf8d4133a68e225e69fedff2.bitwarden.com +carLicense: J5T2SP +departmentNumber: 1541 +employeeType: Employee +homePhone: +1 804 110-6419 +initials: I. J. +mobile: +1 804 312-8287 +pager: +1 804 965-5585 +roomNumber: 9580 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristabel Lindstrom +sn: Lindstrom +description: This is Cristabel Lindstrom's description +facsimileTelephoneNumber: +1 408 177-8180 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 791-8878 +title: Supreme Administrative Director +userPassword: Password1 +uid: LindstrC +givenName: Cristabel +mail: LindstrC@f62df0bfb50a4849bc17f5360d5a7c52.bitwarden.com +carLicense: F30W2N +departmentNumber: 2510 +employeeType: Contract +homePhone: +1 408 561-3405 +initials: C. L. +mobile: +1 408 799-8998 +pager: +1 408 813-8099 +roomNumber: 8846 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Leon Bays,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leon Bays +sn: Bays +description: This is Leon Bays's description +facsimileTelephoneNumber: +1 213 741-9894 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 213 322-7436 +title: Supreme Payroll Madonna +userPassword: Password1 +uid: BaysL +givenName: Leon +mail: BaysL@93baf6000e434401b0373a2ea7daeeeb.bitwarden.com +carLicense: W1HCWQ +departmentNumber: 1005 +employeeType: Contract +homePhone: +1 213 589-1800 +initials: L. B. +mobile: +1 213 298-1504 +pager: +1 213 783-6003 +roomNumber: 9815 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ulf Cotner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ulf Cotner +sn: Cotner +description: This is Ulf Cotner's description +facsimileTelephoneNumber: +1 213 782-6667 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 432-7844 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: CotnerU +givenName: Ulf +mail: CotnerU@d10bdc65bfaf4e35b28e6655d5cd9f69.bitwarden.com +carLicense: AHMVDQ +departmentNumber: 7757 +employeeType: Employee +homePhone: +1 213 196-8679 +initials: U. C. +mobile: +1 213 358-3373 +pager: +1 213 237-8726 +roomNumber: 9794 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jinann Hassey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jinann Hassey +sn: Hassey +description: This is Jinann Hassey's description +facsimileTelephoneNumber: +1 415 198-1234 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 320-9253 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: HasseyJ +givenName: Jinann +mail: HasseyJ@e082cb8e6fcd44b39d2d3be9de497cd5.bitwarden.com +carLicense: RCY31K +departmentNumber: 6140 +employeeType: Employee +homePhone: +1 415 687-7196 +initials: J. H. +mobile: +1 415 178-1020 +pager: +1 415 595-3218 +roomNumber: 8339 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bevvy Huot,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bevvy Huot +sn: Huot +description: This is Bevvy Huot's description +facsimileTelephoneNumber: +1 213 956-6104 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 635-5020 +title: Chief Janitorial Madonna +userPassword: Password1 +uid: HuotB +givenName: Bevvy +mail: HuotB@47a7a80ec8774325ad24930467e7f72e.bitwarden.com +carLicense: 9HGXS4 +departmentNumber: 5665 +employeeType: Normal +homePhone: +1 213 211-1997 +initials: B. H. +mobile: +1 213 994-9302 +pager: +1 213 533-2411 +roomNumber: 8439 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Coord Cadd,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coord Cadd +sn: Cadd +description: This is Coord Cadd's description +facsimileTelephoneNumber: +1 206 159-6756 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 677-4990 +title: Chief Janitorial Manager +userPassword: Password1 +uid: CaddC +givenName: Coord +mail: CaddC@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com +carLicense: I04J8K +departmentNumber: 1325 +employeeType: Employee +homePhone: +1 206 493-4490 +initials: C. C. +mobile: +1 206 691-8535 +pager: +1 206 914-7574 +roomNumber: 8404 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Envoy Lesway,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Envoy Lesway +sn: Lesway +description: This is Envoy Lesway's description +facsimileTelephoneNumber: +1 206 605-3314 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 719-3015 +title: Supreme Peons President +userPassword: Password1 +uid: LeswayE +givenName: Envoy +mail: LeswayE@c25e2fe1ca694d8a8fe5c23754b47571.bitwarden.com +carLicense: NDKKAG +departmentNumber: 6768 +employeeType: Contract +homePhone: +1 206 971-5236 +initials: E. L. +mobile: +1 206 965-5369 +pager: +1 206 586-1083 +roomNumber: 9069 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Josef Hemmerle +sn: Hemmerle +description: This is Josef Hemmerle's description +facsimileTelephoneNumber: +1 213 930-7036 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 690-7360 +title: Master Human Resources President +userPassword: Password1 +uid: HemmerlJ +givenName: Josef +mail: HemmerlJ@ea364298791c41debbf08d0519d9dd74.bitwarden.com +carLicense: 7Y640L +departmentNumber: 1528 +employeeType: Normal +homePhone: +1 213 669-8294 +initials: J. H. +mobile: +1 213 325-3362 +pager: +1 213 688-1695 +roomNumber: 8525 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kippie Tarquinio +sn: Tarquinio +description: This is Kippie Tarquinio's description +facsimileTelephoneNumber: +1 818 698-3883 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 818 191-5850 +title: Supreme Janitorial Technician +userPassword: Password1 +uid: TarquinK +givenName: Kippie +mail: TarquinK@82a02eb22e9446a98ae50c8b159eeb8e.bitwarden.com +carLicense: LX2M99 +departmentNumber: 4043 +employeeType: Normal +homePhone: +1 818 750-6372 +initials: K. T. +mobile: +1 818 775-6881 +pager: +1 818 932-8774 +roomNumber: 9090 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirstyn Cocco +sn: Cocco +description: This is Kirstyn Cocco's description +facsimileTelephoneNumber: +1 408 515-4245 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 567-9853 +title: Associate Human Resources Artist +userPassword: Password1 +uid: CoccoK +givenName: Kirstyn +mail: CoccoK@1d8ea622691942519634199a4665788b.bitwarden.com +carLicense: WLKO5S +departmentNumber: 7213 +employeeType: Employee +homePhone: +1 408 187-4184 +initials: K. C. +mobile: +1 408 632-4593 +pager: +1 408 726-9981 +roomNumber: 9044 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maybelle Brannon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maybelle Brannon +sn: Brannon +description: This is Maybelle Brannon's description +facsimileTelephoneNumber: +1 804 845-5995 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 436-2238 +title: Junior Product Development Grunt +userPassword: Password1 +uid: BrannonM +givenName: Maybelle +mail: BrannonM@180927625167441fb315d9e4f284562e.bitwarden.com +carLicense: 7L3DBT +departmentNumber: 8059 +employeeType: Contract +homePhone: +1 804 843-3071 +initials: M. B. +mobile: +1 804 558-7257 +pager: +1 804 719-8028 +roomNumber: 9323 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lrc Blaiklock,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lrc Blaiklock +sn: Blaiklock +description: This is Lrc Blaiklock's description +facsimileTelephoneNumber: +1 206 889-1544 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 826-8672 +title: Supreme Peons Engineer +userPassword: Password1 +uid: BlaikloL +givenName: Lrc +mail: BlaikloL@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com +carLicense: HHVGEG +departmentNumber: 4643 +employeeType: Normal +homePhone: +1 206 292-8632 +initials: L. B. +mobile: +1 206 526-3334 +pager: +1 206 953-1890 +roomNumber: 8691 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Abu Melucci,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abu Melucci +sn: Melucci +description: This is Abu Melucci's description +facsimileTelephoneNumber: +1 415 938-7200 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 170-3557 +title: Associate Management Admin +userPassword: Password1 +uid: MelucciA +givenName: Abu +mail: MelucciA@a4c1bc58f4364478a274836261857361.bitwarden.com +carLicense: FWC96F +departmentNumber: 4419 +employeeType: Normal +homePhone: +1 415 205-1379 +initials: A. M. +mobile: +1 415 387-7567 +pager: +1 415 235-4645 +roomNumber: 9060 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hedwiga Personna,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hedwiga Personna +sn: Personna +description: This is Hedwiga Personna's description +facsimileTelephoneNumber: +1 510 580-3857 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 510 353-9067 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: PersonnH +givenName: Hedwiga +mail: PersonnH@274b8d184a6d4e52bcfb6ffc8ba53d5e.bitwarden.com +carLicense: 3RLI0L +departmentNumber: 2467 +employeeType: Normal +homePhone: +1 510 133-1104 +initials: H. P. +mobile: +1 510 120-6580 +pager: +1 510 921-3523 +roomNumber: 9108 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Osmond Usyk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Osmond Usyk +sn: Usyk +description: This is Osmond Usyk's description +facsimileTelephoneNumber: +1 804 236-7103 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 804 237-6048 +title: Associate Administrative Admin +userPassword: Password1 +uid: UsykO +givenName: Osmond +mail: UsykO@df3ca8c2f1a84d2a9126b1629fccf4fe.bitwarden.com +carLicense: 12DUT0 +departmentNumber: 2824 +employeeType: Employee +homePhone: +1 804 725-6674 +initials: O. U. +mobile: +1 804 374-8336 +pager: +1 804 207-6095 +roomNumber: 9157 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Junk Marasliyan +sn: Marasliyan +description: This is Junk Marasliyan's description +facsimileTelephoneNumber: +1 408 233-3729 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 391-5419 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: MarasliJ +givenName: Junk +mail: MarasliJ@d117baceef9a4168bde2647e78683a37.bitwarden.com +carLicense: 50PL5Y +departmentNumber: 5978 +employeeType: Employee +homePhone: +1 408 100-2360 +initials: J. M. +mobile: +1 408 913-5837 +pager: +1 408 531-6680 +roomNumber: 8759 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ilona Schoch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilona Schoch +sn: Schoch +description: This is Ilona Schoch's description +facsimileTelephoneNumber: +1 408 254-8351 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 122-2735 +title: Junior Janitorial Czar +userPassword: Password1 +uid: SchochI +givenName: Ilona +mail: SchochI@60ad49073800473f85380f8d92729bb8.bitwarden.com +carLicense: JTQLH3 +departmentNumber: 3632 +employeeType: Normal +homePhone: +1 408 484-4933 +initials: I. S. +mobile: +1 408 373-6018 +pager: +1 408 792-6146 +roomNumber: 8338 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarah VandenHeuvel +sn: VandenHeuvel +description: This is Sarah VandenHeuvel's description +facsimileTelephoneNumber: +1 408 957-6029 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 173-9945 +title: Associate Product Testing Engineer +userPassword: Password1 +uid: VandenHS +givenName: Sarah +mail: VandenHS@49237b860d1f43eba86c8a5d68311c7b.bitwarden.com +carLicense: TQ3A1N +departmentNumber: 6778 +employeeType: Normal +homePhone: +1 408 846-3941 +initials: S. V. +mobile: +1 408 494-2670 +pager: +1 408 682-2324 +roomNumber: 9182 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kieron Bouick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kieron Bouick +sn: Bouick +description: This is Kieron Bouick's description +facsimileTelephoneNumber: +1 804 761-6251 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 424-3045 +title: Junior Management Pinhead +userPassword: Password1 +uid: BouickK +givenName: Kieron +mail: BouickK@c90beda51728416da468419570974ee9.bitwarden.com +carLicense: 8F3J05 +departmentNumber: 8206 +employeeType: Contract +homePhone: +1 804 422-8458 +initials: K. B. +mobile: +1 804 608-4561 +pager: +1 804 425-2098 +roomNumber: 8068 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hettie Gruber,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hettie Gruber +sn: Gruber +description: This is Hettie Gruber's description +facsimileTelephoneNumber: +1 804 854-3197 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 829-7500 +title: Supreme Peons Grunt +userPassword: Password1 +uid: GruberH +givenName: Hettie +mail: GruberH@b1249dcd3c8b491d920a5f410c6dd0cd.bitwarden.com +carLicense: YDUP9D +departmentNumber: 5095 +employeeType: Contract +homePhone: +1 804 462-6601 +initials: H. G. +mobile: +1 804 604-8827 +pager: +1 804 169-2586 +roomNumber: 9711 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Farzin Hilaire,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farzin Hilaire +sn: Hilaire +description: This is Farzin Hilaire's description +facsimileTelephoneNumber: +1 213 467-9161 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 722-6207 +title: Associate Management Pinhead +userPassword: Password1 +uid: HilaireF +givenName: Farzin +mail: HilaireF@6c398eb0cd5c4b4784131d450d82aca7.bitwarden.com +carLicense: FW4R32 +departmentNumber: 9846 +employeeType: Normal +homePhone: +1 213 309-5296 +initials: F. H. +mobile: +1 213 567-7208 +pager: +1 213 657-8893 +roomNumber: 8391 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Careers Furdoonji +sn: Furdoonji +description: This is Careers Furdoonji's description +facsimileTelephoneNumber: +1 408 789-5542 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 163-6235 +title: Supreme Human Resources Artist +userPassword: Password1 +uid: FurdoonC +givenName: Careers +mail: FurdoonC@7358f14ebc1d437faa31666574716056.bitwarden.com +carLicense: STKIW5 +departmentNumber: 7542 +employeeType: Normal +homePhone: +1 408 868-3346 +initials: C. F. +mobile: +1 408 312-3825 +pager: +1 408 160-6059 +roomNumber: 8124 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jaimie Valin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaimie Valin +sn: Valin +description: This is Jaimie Valin's description +facsimileTelephoneNumber: +1 818 564-9634 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 258-8155 +title: Junior Janitorial Admin +userPassword: Password1 +uid: ValinJ +givenName: Jaimie +mail: ValinJ@4bba23a995da4ee98c2c53bd5fa682de.bitwarden.com +carLicense: BIQSJ6 +departmentNumber: 8794 +employeeType: Employee +homePhone: +1 818 793-1512 +initials: J. V. +mobile: +1 818 761-8575 +pager: +1 818 638-1920 +roomNumber: 9886 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Meggy Fajardo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meggy Fajardo +sn: Fajardo +description: This is Meggy Fajardo's description +facsimileTelephoneNumber: +1 213 281-1156 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 842-7952 +title: Master Administrative Manager +userPassword: Password1 +uid: FajardoM +givenName: Meggy +mail: FajardoM@06570b086c80422c8349b02b80c03823.bitwarden.com +carLicense: WF3C1B +departmentNumber: 2510 +employeeType: Normal +homePhone: +1 213 766-5273 +initials: M. F. +mobile: +1 213 703-1495 +pager: +1 213 266-4677 +roomNumber: 8160 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gurcharan Subasinghe +sn: Subasinghe +description: This is Gurcharan Subasinghe's description +facsimileTelephoneNumber: +1 206 710-9419 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 206 724-9859 +title: Junior Payroll Punk +userPassword: Password1 +uid: SubasinG +givenName: Gurcharan +mail: SubasinG@24aecac07fc74e8bb38262db3e4ff1e1.bitwarden.com +carLicense: Q5AYBI +departmentNumber: 9513 +employeeType: Employee +homePhone: +1 206 651-4395 +initials: G. S. +mobile: +1 206 187-1048 +pager: +1 206 689-9353 +roomNumber: 9291 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lyda Sym,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lyda Sym +sn: Sym +description: This is Lyda Sym's description +facsimileTelephoneNumber: +1 206 637-6301 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 206 328-2756 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: SymL +givenName: Lyda +mail: SymL@2ebbe6ccc158418ea03a56b7dd20f4d9.bitwarden.com +carLicense: WP1JDG +departmentNumber: 5971 +employeeType: Contract +homePhone: +1 206 742-1031 +initials: L. S. +mobile: +1 206 803-6251 +pager: +1 206 767-4962 +roomNumber: 8721 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Alia Lucente,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alia Lucente +sn: Lucente +description: This is Alia Lucente's description +facsimileTelephoneNumber: +1 206 887-1219 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 870-9910 +title: Master Product Development Writer +userPassword: Password1 +uid: LucenteA +givenName: Alia +mail: LucenteA@3f957af8403b44cda402864b6bf1f589.bitwarden.com +carLicense: VITUF1 +departmentNumber: 6582 +employeeType: Normal +homePhone: +1 206 975-1271 +initials: A. L. +mobile: +1 206 432-6014 +pager: +1 206 569-8738 +roomNumber: 8078 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carline Klotz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carline Klotz +sn: Klotz +description: This is Carline Klotz's description +facsimileTelephoneNumber: +1 408 701-6208 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 205-9776 +title: Master Product Development Admin +userPassword: Password1 +uid: KlotzC +givenName: Carline +mail: KlotzC@7bb52bb06b244b41a3cd78dfcc311e5f.bitwarden.com +carLicense: 2UOTO3 +departmentNumber: 7755 +employeeType: Contract +homePhone: +1 408 210-7716 +initials: C. K. +mobile: +1 408 394-7129 +pager: +1 408 348-3003 +roomNumber: 9262 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marilin Boylan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marilin Boylan +sn: Boylan +description: This is Marilin Boylan's description +facsimileTelephoneNumber: +1 206 632-6634 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 580-9986 +title: Master Management Writer +userPassword: Password1 +uid: BoylanM +givenName: Marilin +mail: BoylanM@68c9de30282b4f288b18d766d4da42ae.bitwarden.com +carLicense: UWGMWM +departmentNumber: 9232 +employeeType: Normal +homePhone: +1 206 626-3216 +initials: M. B. +mobile: +1 206 148-8997 +pager: +1 206 184-1503 +roomNumber: 9592 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mustapha Noles,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mustapha Noles +sn: Noles +description: This is Mustapha Noles's description +facsimileTelephoneNumber: +1 510 493-8555 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 716-2984 +title: Supreme Human Resources President +userPassword: Password1 +uid: NolesM +givenName: Mustapha +mail: NolesM@f2c07dab9bd04b82822cc496cad44d9f.bitwarden.com +carLicense: 2N2RXE +departmentNumber: 4679 +employeeType: Contract +homePhone: +1 510 602-1157 +initials: M. N. +mobile: +1 510 692-1769 +pager: +1 510 526-2765 +roomNumber: 9868 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Brandais Cullum,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brandais Cullum +sn: Cullum +description: This is Brandais Cullum's description +facsimileTelephoneNumber: +1 510 475-2976 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 107-6258 +title: Junior Janitorial Writer +userPassword: Password1 +uid: CullumB +givenName: Brandais +mail: CullumB@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com +carLicense: LYLMU4 +departmentNumber: 7403 +employeeType: Contract +homePhone: +1 510 603-9885 +initials: B. C. +mobile: +1 510 212-5563 +pager: +1 510 786-9895 +roomNumber: 8852 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vradmin Lough,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vradmin Lough +sn: Lough +description: This is Vradmin Lough's description +facsimileTelephoneNumber: +1 818 975-2878 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 844-7250 +title: Chief Product Development President +userPassword: Password1 +uid: LoughV +givenName: Vradmin +mail: LoughV@86e5c38e7f5c41538bf306ddacec173d.bitwarden.com +carLicense: X2UDPF +departmentNumber: 5621 +employeeType: Contract +homePhone: +1 818 837-5875 +initials: V. L. +mobile: +1 818 742-4522 +pager: +1 818 408-8582 +roomNumber: 9618 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laurena Hesketh +sn: Hesketh +description: This is Laurena Hesketh's description +facsimileTelephoneNumber: +1 804 101-5043 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 276-5191 +title: Supreme Product Testing Writer +userPassword: Password1 +uid: HeskethL +givenName: Laurena +mail: HeskethL@301d911e2eea414b9302e4f81984f9b2.bitwarden.com +carLicense: BW72DT +departmentNumber: 6369 +employeeType: Employee +homePhone: +1 804 579-8819 +initials: L. H. +mobile: +1 804 324-8070 +pager: +1 804 554-6200 +roomNumber: 9360 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernhard Arnon +sn: Arnon +description: This is Bernhard Arnon's description +facsimileTelephoneNumber: +1 818 607-9761 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 284-3558 +title: Associate Product Testing Developer +userPassword: Password1 +uid: ArnonB +givenName: Bernhard +mail: ArnonB@57b9838eb13d439597b1e6134348bbbc.bitwarden.com +carLicense: VNOISI +departmentNumber: 1195 +employeeType: Normal +homePhone: +1 818 751-7978 +initials: B. A. +mobile: +1 818 549-4238 +pager: +1 818 512-9000 +roomNumber: 8529 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Laser Lennig,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Laser Lennig +sn: Lennig +description: This is Laser Lennig's description +facsimileTelephoneNumber: +1 408 642-9447 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 434-3903 +title: Master Payroll Writer +userPassword: Password1 +uid: LennigL +givenName: Laser +mail: LennigL@f1fb5c603617421f9d814a8c426ffcd5.bitwarden.com +carLicense: 6XPQDV +departmentNumber: 7975 +employeeType: Contract +homePhone: +1 408 490-3482 +initials: L. L. +mobile: +1 408 592-8968 +pager: +1 408 600-9487 +roomNumber: 9421 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Wren Gopaul,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wren Gopaul +sn: Gopaul +description: This is Wren Gopaul's description +facsimileTelephoneNumber: +1 206 872-2016 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 485-7371 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: GopaulW +givenName: Wren +mail: GopaulW@36939042b2bb4d8d8a87206c430ca689.bitwarden.com +carLicense: K9SEXJ +departmentNumber: 9701 +employeeType: Normal +homePhone: +1 206 903-1877 +initials: W. G. +mobile: +1 206 808-4109 +pager: +1 206 561-5880 +roomNumber: 9517 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Whitney Inoue,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Whitney Inoue +sn: Inoue +description: This is Whitney Inoue's description +facsimileTelephoneNumber: +1 206 699-5802 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 206 937-8175 +title: Junior Product Development Consultant +userPassword: Password1 +uid: InoueW +givenName: Whitney +mail: InoueW@a3af1deba0554d128f94c16459078710.bitwarden.com +carLicense: W4ILED +departmentNumber: 8801 +employeeType: Employee +homePhone: +1 206 257-1173 +initials: W. I. +mobile: +1 206 747-6801 +pager: +1 206 606-6543 +roomNumber: 8643 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annamarie Baltodano +sn: Baltodano +description: This is Annamarie Baltodano's description +facsimileTelephoneNumber: +1 213 400-1545 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 581-3615 +title: Master Administrative Madonna +userPassword: Password1 +uid: BaltodaA +givenName: Annamarie +mail: BaltodaA@4147d91f891f4f7aa66800a01382c83a.bitwarden.com +carLicense: WL7FAI +departmentNumber: 4248 +employeeType: Contract +homePhone: +1 213 512-3939 +initials: A. B. +mobile: +1 213 821-6899 +pager: +1 213 471-5520 +roomNumber: 8544 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hareton Kahkonen +sn: Kahkonen +description: This is Hareton Kahkonen's description +facsimileTelephoneNumber: +1 510 617-6201 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 510 841-4703 +title: Associate Administrative Vice President +userPassword: Password1 +uid: KahkoneH +givenName: Hareton +mail: KahkoneH@1f70c3bade4e4575a0687e469e22b825.bitwarden.com +carLicense: 3OSW6P +departmentNumber: 2475 +employeeType: Normal +homePhone: +1 510 314-7134 +initials: H. K. +mobile: +1 510 410-1147 +pager: +1 510 513-9970 +roomNumber: 9090 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Karlee Weyand,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlee Weyand +sn: Weyand +description: This is Karlee Weyand's description +facsimileTelephoneNumber: +1 804 431-4166 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 168-7394 +title: Associate Management Artist +userPassword: Password1 +uid: WeyandK +givenName: Karlee +mail: WeyandK@a371212c7c2b4312bdb15d1cffb21938.bitwarden.com +carLicense: F123QL +departmentNumber: 1844 +employeeType: Employee +homePhone: +1 804 250-2792 +initials: K. W. +mobile: +1 804 612-7139 +pager: +1 804 131-3235 +roomNumber: 8044 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fox Richmond,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fox Richmond +sn: Richmond +description: This is Fox Richmond's description +facsimileTelephoneNumber: +1 408 652-9883 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 661-1853 +title: Associate Product Development Sales Rep +userPassword: Password1 +uid: RichmonF +givenName: Fox +mail: RichmonF@4cf5733fc93742b8881de63253f58457.bitwarden.com +carLicense: XWRP4N +departmentNumber: 8811 +employeeType: Employee +homePhone: +1 408 245-4162 +initials: F. R. +mobile: +1 408 941-8482 +pager: +1 408 260-2274 +roomNumber: 8423 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Patrick Perreault,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patrick Perreault +sn: Perreault +description: This is Patrick Perreault's description +facsimileTelephoneNumber: +1 415 212-7990 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 599-5850 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: PerreauP +givenName: Patrick +mail: PerreauP@7fb1c518e9c746fd9566ed0918ae43c4.bitwarden.com +carLicense: PGSRXE +departmentNumber: 1159 +employeeType: Contract +homePhone: +1 415 141-4591 +initials: P. P. +mobile: +1 415 225-4823 +pager: +1 415 194-6496 +roomNumber: 8542 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fereidoon Kirkpatrick +sn: Kirkpatrick +description: This is Fereidoon Kirkpatrick's description +facsimileTelephoneNumber: +1 206 954-7074 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 705-8951 +title: Supreme Peons Director +userPassword: Password1 +uid: KirkpatF +givenName: Fereidoon +mail: KirkpatF@d457e1580197417888cc4a9c93599471.bitwarden.com +carLicense: EGEUQ9 +departmentNumber: 1815 +employeeType: Contract +homePhone: +1 206 543-6852 +initials: F. K. +mobile: +1 206 441-1842 +pager: +1 206 983-5326 +roomNumber: 9553 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Saloma Turbes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saloma Turbes +sn: Turbes +description: This is Saloma Turbes's description +facsimileTelephoneNumber: +1 408 978-7793 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 139-2073 +title: Junior Peons Warrior +userPassword: Password1 +uid: TurbesS +givenName: Saloma +mail: TurbesS@0ad1daa81fae4a218ac099e9643dc3e2.bitwarden.com +carLicense: 6H1OJQ +departmentNumber: 4872 +employeeType: Normal +homePhone: +1 408 746-9623 +initials: S. T. +mobile: +1 408 728-1588 +pager: +1 408 746-5064 +roomNumber: 9209 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tiffy Klammer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tiffy Klammer +sn: Klammer +description: This is Tiffy Klammer's description +facsimileTelephoneNumber: +1 213 468-1426 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 495-4503 +title: Chief Product Development Janitor +userPassword: Password1 +uid: KlammerT +givenName: Tiffy +mail: KlammerT@a88c50151ed5480a93ed6a3357d7dcdc.bitwarden.com +carLicense: 64DMH7 +departmentNumber: 4745 +employeeType: Contract +homePhone: +1 213 222-5586 +initials: T. K. +mobile: +1 213 629-8900 +pager: +1 213 520-3107 +roomNumber: 8240 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sonbol Portz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonbol Portz +sn: Portz +description: This is Sonbol Portz's description +facsimileTelephoneNumber: +1 408 907-9813 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 928-1656 +title: Chief Product Development Janitor +userPassword: Password1 +uid: PortzS +givenName: Sonbol +mail: PortzS@d8b850d9e8ae4a779435178983c8e469.bitwarden.com +carLicense: 9E2E1J +departmentNumber: 2649 +employeeType: Normal +homePhone: +1 408 548-8683 +initials: S. P. +mobile: +1 408 678-2766 +pager: +1 408 914-5427 +roomNumber: 9579 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: RoseAnne Chaurette +sn: Chaurette +description: This is RoseAnne Chaurette's description +facsimileTelephoneNumber: +1 804 461-3186 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 895-1103 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: ChauretR +givenName: RoseAnne +mail: ChauretR@719d42488cdd461d9a46a6d7e3fd0edb.bitwarden.com +carLicense: 0L5CO7 +departmentNumber: 5001 +employeeType: Contract +homePhone: +1 804 824-7470 +initials: R. C. +mobile: +1 804 688-8756 +pager: +1 804 934-6420 +roomNumber: 9064 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Darko Gawdan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darko Gawdan +sn: Gawdan +description: This is Darko Gawdan's description +facsimileTelephoneNumber: +1 213 928-8770 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 857-6843 +title: Chief Peons Janitor +userPassword: Password1 +uid: GawdanD +givenName: Darko +mail: GawdanD@6312a8bfcfc64f4fa1700b6ca4b67dc3.bitwarden.com +carLicense: Q1K01U +departmentNumber: 1685 +employeeType: Employee +homePhone: +1 213 369-2323 +initials: D. G. +mobile: +1 213 529-3506 +pager: +1 213 689-3986 +roomNumber: 8059 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SimonPui-Lok Gittins +sn: Gittins +description: This is SimonPui-Lok Gittins's description +facsimileTelephoneNumber: +1 408 488-3691 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 179-4332 +title: Junior Product Development Dictator +userPassword: Password1 +uid: GittinsS +givenName: SimonPui-Lok +mail: GittinsS@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com +carLicense: J4YVG9 +departmentNumber: 1851 +employeeType: Contract +homePhone: +1 408 279-1128 +initials: S. G. +mobile: +1 408 138-6334 +pager: +1 408 236-6021 +roomNumber: 8533 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dodie Starr,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dodie Starr +sn: Starr +description: This is Dodie Starr's description +facsimileTelephoneNumber: +1 213 335-1528 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 711-6615 +title: Master Management Manager +userPassword: Password1 +uid: StarrD +givenName: Dodie +mail: StarrD@3177f113b2494bf084a4349d34933284.bitwarden.com +carLicense: YO1G8M +departmentNumber: 6687 +employeeType: Employee +homePhone: +1 213 268-8240 +initials: D. S. +mobile: +1 213 620-5212 +pager: +1 213 359-8075 +roomNumber: 9104 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Britt Bivens,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Britt Bivens +sn: Bivens +description: This is Britt Bivens's description +facsimileTelephoneNumber: +1 415 716-2878 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 208-6250 +title: Junior Product Development Mascot +userPassword: Password1 +uid: BivensB +givenName: Britt +mail: BivensB@cb6388d64d1348ea8a259ae435674850.bitwarden.com +carLicense: KTKXU0 +departmentNumber: 5489 +employeeType: Normal +homePhone: +1 415 774-4817 +initials: B. B. +mobile: +1 415 679-5318 +pager: +1 415 571-7388 +roomNumber: 9110 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hanh Sohns,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hanh Sohns +sn: Sohns +description: This is Hanh Sohns's description +facsimileTelephoneNumber: +1 213 331-9833 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 744-2590 +title: Junior Administrative Fellow +userPassword: Password1 +uid: SohnsH +givenName: Hanh +mail: SohnsH@ae6d761bccb14b72b9b53490029a36af.bitwarden.com +carLicense: WX9MAK +departmentNumber: 2756 +employeeType: Employee +homePhone: +1 213 223-1566 +initials: H. S. +mobile: +1 213 946-3413 +pager: +1 213 416-5912 +roomNumber: 8316 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Friederike Awano,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Friederike Awano +sn: Awano +description: This is Friederike Awano's description +facsimileTelephoneNumber: +1 818 343-4468 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 818 677-1711 +title: Master Product Development Stooge +userPassword: Password1 +uid: AwanoF +givenName: Friederike +mail: AwanoF@a923c3e154c74115a9ff0fe18985dc09.bitwarden.com +carLicense: OF2QY2 +departmentNumber: 7020 +employeeType: Employee +homePhone: +1 818 176-9731 +initials: F. A. +mobile: +1 818 866-3537 +pager: +1 818 382-8923 +roomNumber: 8918 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Franki Nassr,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franki Nassr +sn: Nassr +description: This is Franki Nassr's description +facsimileTelephoneNumber: +1 206 873-9856 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 574-6253 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: NassrF +givenName: Franki +mail: NassrF@56c41599882f4a19aa89ca9c4dc0c09e.bitwarden.com +carLicense: EOERDY +departmentNumber: 6192 +employeeType: Employee +homePhone: +1 206 350-3722 +initials: F. N. +mobile: +1 206 780-4281 +pager: +1 206 817-3027 +roomNumber: 8176 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sheridan Arcouet,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheridan Arcouet +sn: Arcouet +description: This is Sheridan Arcouet's description +facsimileTelephoneNumber: +1 804 799-3693 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 804 924-8876 +title: Supreme Peons Grunt +userPassword: Password1 +uid: ArcouetS +givenName: Sheridan +mail: ArcouetS@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com +carLicense: YN4DE6 +departmentNumber: 1107 +employeeType: Normal +homePhone: +1 804 121-7932 +initials: S. A. +mobile: +1 804 570-5163 +pager: +1 804 391-8733 +roomNumber: 9198 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doreen MacMillanBrown +sn: MacMillanBrown +description: This is Doreen MacMillanBrown's description +facsimileTelephoneNumber: +1 213 918-4278 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 212-7324 +title: Chief Janitorial Stooge +userPassword: Password1 +uid: MacMillD +givenName: Doreen +mail: MacMillD@50a4724a631e41a7bce3841ce6d93bf4.bitwarden.com +carLicense: G5V2DW +departmentNumber: 2734 +employeeType: Contract +homePhone: +1 213 418-5379 +initials: D. M. +mobile: +1 213 177-2000 +pager: +1 213 239-9439 +roomNumber: 9881 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shoeb McCrimmon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shoeb McCrimmon +sn: McCrimmon +description: This is Shoeb McCrimmon's description +facsimileTelephoneNumber: +1 804 875-5791 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 804 845-5216 +title: Master Management Developer +userPassword: Password1 +uid: McCrimmS +givenName: Shoeb +mail: McCrimmS@423b79c358ed4d48a4cc89da75ae0404.bitwarden.com +carLicense: ODMMPX +departmentNumber: 3314 +employeeType: Normal +homePhone: +1 804 558-5169 +initials: S. M. +mobile: +1 804 583-6420 +pager: +1 804 925-9342 +roomNumber: 9907 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tuoi Gheciu +sn: Gheciu +description: This is Tuoi Gheciu's description +facsimileTelephoneNumber: +1 818 383-4788 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 713-2313 +title: Master Product Development Madonna +userPassword: Password1 +uid: GheciuT +givenName: Tuoi +mail: GheciuT@092d9b28cd5e485d86e0589d143723ee.bitwarden.com +carLicense: IDOWH2 +departmentNumber: 2912 +employeeType: Contract +homePhone: +1 818 110-7669 +initials: T. G. +mobile: +1 818 531-6729 +pager: +1 818 555-9861 +roomNumber: 8517 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sherline Morreale,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherline Morreale +sn: Morreale +description: This is Sherline Morreale's description +facsimileTelephoneNumber: +1 818 533-8485 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 321-7382 +title: Chief Product Development Technician +userPassword: Password1 +uid: MorrealS +givenName: Sherline +mail: MorrealS@e146e249e0b44539bc6460a663ad0f90.bitwarden.com +carLicense: 4T0IFG +departmentNumber: 3661 +employeeType: Normal +homePhone: +1 818 263-6061 +initials: S. M. +mobile: +1 818 483-4057 +pager: +1 818 385-7517 +roomNumber: 8144 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Emilia Tisdale,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emilia Tisdale +sn: Tisdale +description: This is Emilia Tisdale's description +facsimileTelephoneNumber: +1 206 344-6483 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 595-1220 +title: Associate Product Development Mascot +userPassword: Password1 +uid: TisdaleE +givenName: Emilia +mail: TisdaleE@c11c5f5aaeed4a9daabcfc4756ced3f6.bitwarden.com +carLicense: 39D6GX +departmentNumber: 6247 +employeeType: Normal +homePhone: +1 206 575-4255 +initials: E. T. +mobile: +1 206 724-8831 +pager: +1 206 616-2617 +roomNumber: 9391 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Reinhold Shumate,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reinhold Shumate +sn: Shumate +description: This is Reinhold Shumate's description +facsimileTelephoneNumber: +1 206 577-9266 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 748-9563 +title: Supreme Peons Czar +userPassword: Password1 +uid: ShumateR +givenName: Reinhold +mail: ShumateR@a1eb15c73ce34aa39a4a4077bd16ae75.bitwarden.com +carLicense: N909BV +departmentNumber: 3564 +employeeType: Contract +homePhone: +1 206 715-1864 +initials: R. S. +mobile: +1 206 216-3192 +pager: +1 206 421-8974 +roomNumber: 8598 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tatyana Packard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tatyana Packard +sn: Packard +description: This is Tatyana Packard's description +facsimileTelephoneNumber: +1 804 887-3525 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 624-8206 +title: Associate Product Testing Admin +userPassword: Password1 +uid: PackardT +givenName: Tatyana +mail: PackardT@b4ffcfe46a614ae194b415ba89e17560.bitwarden.com +carLicense: V7A2A3 +departmentNumber: 2745 +employeeType: Normal +homePhone: +1 804 371-9508 +initials: T. P. +mobile: +1 804 169-5561 +pager: +1 804 198-3728 +roomNumber: 9598 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gloriana Vendette,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gloriana Vendette +sn: Vendette +description: This is Gloriana Vendette's description +facsimileTelephoneNumber: +1 213 515-8412 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 435-2306 +title: Supreme Peons Consultant +userPassword: Password1 +uid: VendettG +givenName: Gloriana +mail: VendettG@2eeb9567dcd64347a2dcd6492aaa8ddc.bitwarden.com +carLicense: KLBKBK +departmentNumber: 6436 +employeeType: Contract +homePhone: +1 213 150-8270 +initials: G. V. +mobile: +1 213 388-3404 +pager: +1 213 900-8481 +roomNumber: 9301 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Consuela Ravi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Consuela Ravi +sn: Ravi +description: This is Consuela Ravi's description +facsimileTelephoneNumber: +1 206 231-3428 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 281-3982 +title: Junior Product Testing Visionary +userPassword: Password1 +uid: RaviC +givenName: Consuela +mail: RaviC@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com +carLicense: 1HXXTO +departmentNumber: 6091 +employeeType: Employee +homePhone: +1 206 886-9657 +initials: C. R. +mobile: +1 206 765-8732 +pager: +1 206 345-4173 +roomNumber: 8119 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sioux Langlois,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sioux Langlois +sn: Langlois +description: This is Sioux Langlois's description +facsimileTelephoneNumber: +1 510 734-8046 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 552-7505 +title: Junior Payroll Manager +userPassword: Password1 +uid: LangloiS +givenName: Sioux +mail: LangloiS@4964020f5ac94a59b22a0311ddec080f.bitwarden.com +carLicense: M5KOOP +departmentNumber: 4228 +employeeType: Normal +homePhone: +1 510 270-3121 +initials: S. L. +mobile: +1 510 277-5299 +pager: +1 510 620-5132 +roomNumber: 8714 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Olympia Lieure,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olympia Lieure +sn: Lieure +description: This is Olympia Lieure's description +facsimileTelephoneNumber: +1 408 810-4427 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 408 604-1929 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: LieureO +givenName: Olympia +mail: LieureO@dcbe263c9d3d41348af5a8fc7c5d470d.bitwarden.com +carLicense: 70DQAF +departmentNumber: 1046 +employeeType: Contract +homePhone: +1 408 136-9058 +initials: O. L. +mobile: +1 408 726-5979 +pager: +1 408 762-2079 +roomNumber: 9722 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cad Thorley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cad Thorley +sn: Thorley +description: This is Cad Thorley's description +facsimileTelephoneNumber: +1 818 416-6991 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 358-1191 +title: Supreme Janitorial Dictator +userPassword: Password1 +uid: ThorleyC +givenName: Cad +mail: ThorleyC@c6e9ac083cc043b8883c6054dd35e8a8.bitwarden.com +carLicense: J9EWB8 +departmentNumber: 4984 +employeeType: Contract +homePhone: +1 818 421-5840 +initials: C. T. +mobile: +1 818 522-9525 +pager: +1 818 381-4998 +roomNumber: 8125 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Etienne Ackaouy +sn: Ackaouy +description: This is Etienne Ackaouy's description +facsimileTelephoneNumber: +1 408 888-3386 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 816-8198 +title: Chief Human Resources Czar +userPassword: Password1 +uid: AckaouyE +givenName: Etienne +mail: AckaouyE@fb57f6256f134e1381affe3f9c6c7fdf.bitwarden.com +carLicense: TS0YES +departmentNumber: 3862 +employeeType: Normal +homePhone: +1 408 951-9813 +initials: E. A. +mobile: +1 408 783-8843 +pager: +1 408 699-1606 +roomNumber: 9393 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ryoung Moeschet,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ryoung Moeschet +sn: Moeschet +description: This is Ryoung Moeschet's description +facsimileTelephoneNumber: +1 213 704-6653 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 884-2596 +title: Supreme Peons Stooge +userPassword: Password1 +uid: MoescheR +givenName: Ryoung +mail: MoescheR@a11fd3f494644e3f9a70f7219a7bad22.bitwarden.com +carLicense: SFOB81 +departmentNumber: 2120 +employeeType: Contract +homePhone: +1 213 566-4184 +initials: R. M. +mobile: +1 213 329-1101 +pager: +1 213 220-8292 +roomNumber: 8685 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jorry Freno,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jorry Freno +sn: Freno +description: This is Jorry Freno's description +facsimileTelephoneNumber: +1 213 578-4227 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 962-2481 +title: Chief Payroll Pinhead +userPassword: Password1 +uid: FrenoJ +givenName: Jorry +mail: FrenoJ@343f3e94452d4417ab72f456ef20099a.bitwarden.com +carLicense: 0ACNA0 +departmentNumber: 4768 +employeeType: Normal +homePhone: +1 213 423-8742 +initials: J. F. +mobile: +1 213 752-1671 +pager: +1 213 752-5767 +roomNumber: 9493 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Amandie Cottengim,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amandie Cottengim +sn: Cottengim +description: This is Amandie Cottengim's description +facsimileTelephoneNumber: +1 510 278-4252 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 306-6340 +title: Supreme Peons Consultant +userPassword: Password1 +uid: CottengA +givenName: Amandie +mail: CottengA@61391b1e27a64c79ad40798665590378.bitwarden.com +carLicense: 7D07UO +departmentNumber: 9408 +employeeType: Normal +homePhone: +1 510 637-9244 +initials: A. C. +mobile: +1 510 761-1856 +pager: +1 510 613-8496 +roomNumber: 9926 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bran MacNeil,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bran MacNeil +sn: MacNeil +description: This is Bran MacNeil's description +facsimileTelephoneNumber: +1 213 740-4414 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 967-9258 +title: Master Management Writer +userPassword: Password1 +uid: MacNeilB +givenName: Bran +mail: MacNeilB@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com +carLicense: 2BTGT9 +departmentNumber: 6446 +employeeType: Contract +homePhone: +1 213 884-7551 +initials: B. M. +mobile: +1 213 463-3693 +pager: +1 213 120-5677 +roomNumber: 9496 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eladio Strudwick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eladio Strudwick +sn: Strudwick +description: This is Eladio Strudwick's description +facsimileTelephoneNumber: +1 510 100-2778 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 694-5052 +title: Junior Payroll President +userPassword: Password1 +uid: StrudwiE +givenName: Eladio +mail: StrudwiE@a23986164bc64fc4ad43988e6e385f40.bitwarden.com +carLicense: 93L0TE +departmentNumber: 7324 +employeeType: Contract +homePhone: +1 510 227-2388 +initials: E. S. +mobile: +1 510 818-5079 +pager: +1 510 755-7968 +roomNumber: 8735 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cleveland Jagla,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cleveland Jagla +sn: Jagla +description: This is Cleveland Jagla's description +facsimileTelephoneNumber: +1 818 115-4388 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 854-1556 +title: Junior Payroll Director +userPassword: Password1 +uid: JaglaC +givenName: Cleveland +mail: JaglaC@8811017314e4431b8c77e3cc9b6c4274.bitwarden.com +carLicense: W5HBUG +departmentNumber: 9978 +employeeType: Normal +homePhone: +1 818 246-2270 +initials: C. J. +mobile: +1 818 965-7610 +pager: +1 818 825-6140 +roomNumber: 9158 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Julien Osterberg,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julien Osterberg +sn: Osterberg +description: This is Julien Osterberg's description +facsimileTelephoneNumber: +1 510 162-2907 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 510 557-9601 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: OsterbeJ +givenName: Julien +mail: OsterbeJ@801080c2fb40441aa0b2119368327ea0.bitwarden.com +carLicense: DEYI7E +departmentNumber: 3106 +employeeType: Normal +homePhone: +1 510 238-5033 +initials: J. O. +mobile: +1 510 991-4219 +pager: +1 510 820-5223 +roomNumber: 9944 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Frederika Brower,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frederika Brower +sn: Brower +description: This is Frederika Brower's description +facsimileTelephoneNumber: +1 213 646-2285 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 213 807-4554 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: BrowerF +givenName: Frederika +mail: BrowerF@40afcc80c86b41fda116eba64b688061.bitwarden.com +carLicense: L9AGU1 +departmentNumber: 3112 +employeeType: Employee +homePhone: +1 213 196-7253 +initials: F. B. +mobile: +1 213 858-5176 +pager: +1 213 270-8388 +roomNumber: 8060 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Timmi Bascombe,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Timmi Bascombe +sn: Bascombe +description: This is Timmi Bascombe's description +facsimileTelephoneNumber: +1 510 733-6575 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 631-5066 +title: Associate Management Writer +userPassword: Password1 +uid: BascombT +givenName: Timmi +mail: BascombT@5020798a7692438bb9e14d9a42dd1742.bitwarden.com +carLicense: 6G88VJ +departmentNumber: 2645 +employeeType: Normal +homePhone: +1 510 748-6963 +initials: T. B. +mobile: +1 510 223-5664 +pager: +1 510 655-6988 +roomNumber: 9845 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corenda Gilchrist +sn: Gilchrist +description: This is Corenda Gilchrist's description +facsimileTelephoneNumber: +1 804 689-5632 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 831-6741 +title: Associate Administrative Dictator +userPassword: Password1 +uid: GilchriC +givenName: Corenda +mail: GilchriC@899743aa481a45efb507e6d61189c383.bitwarden.com +carLicense: CX91SL +departmentNumber: 3528 +employeeType: Employee +homePhone: +1 804 786-1848 +initials: C. G. +mobile: +1 804 886-5348 +pager: +1 804 792-6800 +roomNumber: 8861 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shafiq Jazanoski +sn: Jazanoski +description: This is Shafiq Jazanoski's description +facsimileTelephoneNumber: +1 510 329-9343 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 221-5252 +title: Master Product Testing Manager +userPassword: Password1 +uid: JazanosS +givenName: Shafiq +mail: JazanosS@0437e560df9b4466ac4b1814efe6272e.bitwarden.com +carLicense: HXYV95 +departmentNumber: 2475 +employeeType: Employee +homePhone: +1 510 272-3967 +initials: S. J. +mobile: +1 510 393-9801 +pager: +1 510 658-6501 +roomNumber: 9668 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Milicent Frondozo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Milicent Frondozo +sn: Frondozo +description: This is Milicent Frondozo's description +facsimileTelephoneNumber: +1 415 972-6133 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 424-9970 +title: Master Management Manager +userPassword: Password1 +uid: FrondozM +givenName: Milicent +mail: FrondozM@29b64656a78049bc9d3de5b18cdb7f58.bitwarden.com +carLicense: 5VC6GP +departmentNumber: 5866 +employeeType: Contract +homePhone: +1 415 802-2878 +initials: M. F. +mobile: +1 415 648-7223 +pager: +1 415 716-9918 +roomNumber: 8972 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Danell Silang,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danell Silang +sn: Silang +description: This is Danell Silang's description +facsimileTelephoneNumber: +1 804 264-5945 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 646-2491 +title: Master Janitorial Director +userPassword: Password1 +uid: SilangD +givenName: Danell +mail: SilangD@7b9bbc8a8db749adaa5d570b3f3c2a12.bitwarden.com +carLicense: 5B4Q8L +departmentNumber: 8652 +employeeType: Normal +homePhone: +1 804 362-7991 +initials: D. S. +mobile: +1 804 164-7824 +pager: +1 804 849-3780 +roomNumber: 9555 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Baljinder StJohn,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Baljinder StJohn +sn: StJohn +description: This is Baljinder StJohn's description +facsimileTelephoneNumber: +1 213 545-6885 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 213 117-1660 +title: Chief Product Development Director +userPassword: Password1 +uid: StJohnB +givenName: Baljinder +mail: StJohnB@69b9ccd34baf4393989b969fe509e24b.bitwarden.com +carLicense: BPIV5X +departmentNumber: 6470 +employeeType: Employee +homePhone: +1 213 544-1534 +initials: B. S. +mobile: +1 213 167-2929 +pager: +1 213 811-1195 +roomNumber: 9116 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akin Oberpriller +sn: Oberpriller +description: This is Akin Oberpriller's description +facsimileTelephoneNumber: +1 804 914-2478 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 864-9597 +title: Associate Product Testing Architect +userPassword: Password1 +uid: OberpriA +givenName: Akin +mail: OberpriA@4bbf773107d4419bb6cc46fd57ba3ce2.bitwarden.com +carLicense: HG3Y3X +departmentNumber: 6536 +employeeType: Normal +homePhone: +1 804 405-2062 +initials: A. O. +mobile: +1 804 421-5889 +pager: +1 804 380-8609 +roomNumber: 9548 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ankie Cohoe +sn: Cohoe +description: This is Ankie Cohoe's description +facsimileTelephoneNumber: +1 510 912-5365 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 510 891-7437 +title: Junior Product Testing Technician +userPassword: Password1 +uid: CohoeA +givenName: Ankie +mail: CohoeA@7a3b1be5d62c42abaf0253c9b042dfe2.bitwarden.com +carLicense: SWAKTC +departmentNumber: 9521 +employeeType: Contract +homePhone: +1 510 164-2606 +initials: A. C. +mobile: +1 510 874-5686 +pager: +1 510 864-5425 +roomNumber: 8945 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joannah Gendre,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joannah Gendre +sn: Gendre +description: This is Joannah Gendre's description +facsimileTelephoneNumber: +1 206 494-2676 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 206 334-5735 +title: Master Administrative Evangelist +userPassword: Password1 +uid: GendreJ +givenName: Joannah +mail: GendreJ@ca748ccfc8c741eab1dc5767d7063b1c.bitwarden.com +carLicense: WA9EUN +departmentNumber: 5987 +employeeType: Employee +homePhone: +1 206 656-1340 +initials: J. G. +mobile: +1 206 347-2065 +pager: +1 206 153-4532 +roomNumber: 9718 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zero Strickland,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zero Strickland +sn: Strickland +description: This is Zero Strickland's description +facsimileTelephoneNumber: +1 213 612-5129 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 507-8162 +title: Supreme Product Development Technician +userPassword: Password1 +uid: StricklZ +givenName: Zero +mail: StricklZ@69527a1c41b04ddda793d00fb5a21087.bitwarden.com +carLicense: AWW1Y3 +departmentNumber: 5720 +employeeType: Normal +homePhone: +1 213 144-5041 +initials: Z. S. +mobile: +1 213 272-5439 +pager: +1 213 529-3812 +roomNumber: 8824 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lujanka Turner,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lujanka Turner +sn: Turner +description: This is Lujanka Turner's description +facsimileTelephoneNumber: +1 804 731-3224 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 704-5316 +title: Master Administrative Admin +userPassword: Password1 +uid: TurnerL +givenName: Lujanka +mail: TurnerL@a69feaacad634790a69fdf1db6b0a8d9.bitwarden.com +carLicense: HWTRE9 +departmentNumber: 3047 +employeeType: Employee +homePhone: +1 804 560-9856 +initials: L. T. +mobile: +1 804 650-2062 +pager: +1 804 253-7210 +roomNumber: 8960 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Trish Meissner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trish Meissner +sn: Meissner +description: This is Trish Meissner's description +facsimileTelephoneNumber: +1 804 756-3494 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 804 171-3275 +title: Chief Product Development Punk +userPassword: Password1 +uid: MeissneT +givenName: Trish +mail: MeissneT@ea8c137275494c24a45d33c847e472b4.bitwarden.com +carLicense: 4SMU9R +departmentNumber: 2297 +employeeType: Normal +homePhone: +1 804 640-1405 +initials: T. M. +mobile: +1 804 202-9666 +pager: +1 804 305-2679 +roomNumber: 8897 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Han Hermes,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Han Hermes +sn: Hermes +description: This is Han Hermes's description +facsimileTelephoneNumber: +1 213 331-9919 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 767-6571 +title: Junior Management Admin +userPassword: Password1 +uid: HermesH +givenName: Han +mail: HermesH@9426a2bdce5b455d93581bbbd4e466d1.bitwarden.com +carLicense: 0XPS74 +departmentNumber: 8073 +employeeType: Normal +homePhone: +1 213 559-9420 +initials: H. H. +mobile: +1 213 373-8821 +pager: +1 213 863-9086 +roomNumber: 8471 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Annamaria Daly,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annamaria Daly +sn: Daly +description: This is Annamaria Daly's description +facsimileTelephoneNumber: +1 415 569-4489 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 522-2911 +title: Chief Payroll Warrior +userPassword: Password1 +uid: DalyA +givenName: Annamaria +mail: DalyA@231d8346570d402bb69f49de52a59267.bitwarden.com +carLicense: 7C7IM0 +departmentNumber: 6859 +employeeType: Employee +homePhone: +1 415 448-2534 +initials: A. D. +mobile: +1 415 450-4025 +pager: +1 415 509-9817 +roomNumber: 9394 +manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: VuQuoc Godlington +sn: Godlington +description: This is VuQuoc Godlington's description +facsimileTelephoneNumber: +1 804 764-9089 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 804 670-4936 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: GodlingV +givenName: VuQuoc +mail: GodlingV@0dddb86650e94c559800b280597f0c4c.bitwarden.com +carLicense: Q0D6VP +departmentNumber: 4563 +employeeType: Contract +homePhone: +1 804 868-3730 +initials: V. G. +mobile: +1 804 242-5069 +pager: +1 804 369-2584 +roomNumber: 8583 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stefa StClairHolmes +sn: StClairHolmes +description: This is Stefa StClairHolmes's description +facsimileTelephoneNumber: +1 510 302-8931 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 510 995-7064 +title: Master Product Testing Evangelist +userPassword: Password1 +uid: StClairS +givenName: Stefa +mail: StClairS@4d1502006f9d465093ef756b43a146bc.bitwarden.com +carLicense: SDE91I +departmentNumber: 1141 +employeeType: Employee +homePhone: +1 510 401-8378 +initials: S. S. +mobile: +1 510 750-9983 +pager: +1 510 469-5284 +roomNumber: 8761 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramon Wimbush +sn: Wimbush +description: This is Ramon Wimbush's description +facsimileTelephoneNumber: +1 408 373-3586 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 229-9614 +title: Master Janitorial Technician +userPassword: Password1 +uid: WimbushR +givenName: Ramon +mail: WimbushR@1c3f38c01ffe4fd78e55d74bc900ca15.bitwarden.com +carLicense: ROF5PK +departmentNumber: 6780 +employeeType: Normal +homePhone: +1 408 104-8901 +initials: R. W. +mobile: +1 408 600-5870 +pager: +1 408 408-7720 +roomNumber: 8348 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roger Latella,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roger Latella +sn: Latella +description: This is Roger Latella's description +facsimileTelephoneNumber: +1 510 680-6099 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 661-3337 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: LatellaR +givenName: Roger +mail: LatellaR@6f5c481db3be45b1bf56f24cf55ebbf4.bitwarden.com +carLicense: X2MVXA +departmentNumber: 3394 +employeeType: Employee +homePhone: +1 510 226-9719 +initials: R. L. +mobile: +1 510 251-4703 +pager: +1 510 253-4292 +roomNumber: 9420 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Korney Blevins,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Korney Blevins +sn: Blevins +description: This is Korney Blevins's description +facsimileTelephoneNumber: +1 415 570-8057 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 130-6791 +title: Junior Product Development Figurehead +userPassword: Password1 +uid: BlevinsK +givenName: Korney +mail: BlevinsK@24105f6fca38477da9ad618bec45383c.bitwarden.com +carLicense: T5WAL4 +departmentNumber: 5115 +employeeType: Normal +homePhone: +1 415 867-9898 +initials: K. B. +mobile: +1 415 636-5789 +pager: +1 415 720-8766 +roomNumber: 9355 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elsey Meckley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elsey Meckley +sn: Meckley +description: This is Elsey Meckley's description +facsimileTelephoneNumber: +1 213 258-4344 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 727-7296 +title: Master Administrative Mascot +userPassword: Password1 +uid: MeckleyE +givenName: Elsey +mail: MeckleyE@b5e3188bf80e462eac4ebbb9d1096eff.bitwarden.com +carLicense: 8M54MX +departmentNumber: 1278 +employeeType: Contract +homePhone: +1 213 274-7633 +initials: E. M. +mobile: +1 213 163-3078 +pager: +1 213 532-8705 +roomNumber: 9006 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jill Langton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jill Langton +sn: Langton +description: This is Jill Langton's description +facsimileTelephoneNumber: +1 213 898-4580 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 213 643-3051 +title: Associate Payroll President +userPassword: Password1 +uid: LangtonJ +givenName: Jill +mail: LangtonJ@9ba1788c88514e3e9788f75280ccf6c3.bitwarden.com +carLicense: L5WGMX +departmentNumber: 8625 +employeeType: Normal +homePhone: +1 213 659-5240 +initials: J. L. +mobile: +1 213 710-5171 +pager: +1 213 706-2023 +roomNumber: 9169 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melessa Malkiewicz +sn: Malkiewicz +description: This is Melessa Malkiewicz's description +facsimileTelephoneNumber: +1 510 355-8715 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 510 831-9669 +title: Junior Human Resources Visionary +userPassword: Password1 +uid: MalkiewM +givenName: Melessa +mail: MalkiewM@01d519b2c3cc4b749d2c74cc03a56716.bitwarden.com +carLicense: RWBFTQ +departmentNumber: 8313 +employeeType: Employee +homePhone: +1 510 247-3638 +initials: M. M. +mobile: +1 510 785-9196 +pager: +1 510 911-4937 +roomNumber: 9405 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Peg Arnott,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peg Arnott +sn: Arnott +description: This is Peg Arnott's description +facsimileTelephoneNumber: +1 408 194-8044 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 408 893-8528 +title: Junior Peons Vice President +userPassword: Password1 +uid: ArnottP +givenName: Peg +mail: ArnottP@1dac857c92bb48aaa0a69e83483dddea.bitwarden.com +carLicense: HS7HVT +departmentNumber: 9374 +employeeType: Employee +homePhone: +1 408 659-6665 +initials: P. A. +mobile: +1 408 702-9873 +pager: +1 408 998-7705 +roomNumber: 8533 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marsh Lagrandeur +sn: Lagrandeur +description: This is Marsh Lagrandeur's description +facsimileTelephoneNumber: +1 213 330-3829 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 474-1769 +title: Master Administrative Developer +userPassword: Password1 +uid: LagrandM +givenName: Marsh +mail: LagrandM@b866cf3614c84b6ab1508dbbda76e67a.bitwarden.com +carLicense: IVX530 +departmentNumber: 2278 +employeeType: Employee +homePhone: +1 213 545-3039 +initials: M. L. +mobile: +1 213 447-3777 +pager: +1 213 889-5071 +roomNumber: 9311 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lotta Witkowski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lotta Witkowski +sn: Witkowski +description: This is Lotta Witkowski's description +facsimileTelephoneNumber: +1 213 430-9877 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 458-6679 +title: Chief Peons Artist +userPassword: Password1 +uid: WitkowsL +givenName: Lotta +mail: WitkowsL@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com +carLicense: Q9VH9C +departmentNumber: 1686 +employeeType: Contract +homePhone: +1 213 839-7193 +initials: L. W. +mobile: +1 213 277-4057 +pager: +1 213 848-4484 +roomNumber: 8075 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=TunLin Dickerson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: TunLin Dickerson +sn: Dickerson +description: This is TunLin Dickerson's description +facsimileTelephoneNumber: +1 804 472-4779 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 101-2129 +title: Junior Peons Dictator +userPassword: Password1 +uid: DickersT +givenName: TunLin +mail: DickersT@4a8ab0364b8c4f26a80da2953a1e2c51.bitwarden.com +carLicense: R3OOYG +departmentNumber: 4719 +employeeType: Employee +homePhone: +1 804 991-5990 +initials: T. D. +mobile: +1 804 489-8992 +pager: +1 804 942-8540 +roomNumber: 8823 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sile Golczewski,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sile Golczewski +sn: Golczewski +description: This is Sile Golczewski's description +facsimileTelephoneNumber: +1 213 564-8258 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 253-3808 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: GolczewS +givenName: Sile +mail: GolczewS@0e51e4ac4ff5492f891ae127459e83ab.bitwarden.com +carLicense: FU6GBW +departmentNumber: 7258 +employeeType: Employee +homePhone: +1 213 812-9688 +initials: S. G. +mobile: +1 213 307-6544 +pager: +1 213 511-6822 +roomNumber: 8248 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Joshi Formagie,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joshi Formagie +sn: Formagie +description: This is Joshi Formagie's description +facsimileTelephoneNumber: +1 415 793-3045 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 537-6400 +title: Supreme Human Resources Janitor +userPassword: Password1 +uid: FormagiJ +givenName: Joshi +mail: FormagiJ@a61d7f00b26e42a8b542c11c2adbdb6e.bitwarden.com +carLicense: XBYSYR +departmentNumber: 2795 +employeeType: Employee +homePhone: +1 415 817-4943 +initials: J. F. +mobile: +1 415 577-8973 +pager: +1 415 920-1470 +roomNumber: 9264 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Penni Marzullo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Penni Marzullo +sn: Marzullo +description: This is Penni Marzullo's description +facsimileTelephoneNumber: +1 510 175-9208 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 786-1185 +title: Master Payroll Vice President +userPassword: Password1 +uid: MarzullP +givenName: Penni +mail: MarzullP@745e98042a374bd8b4300c64429e0da5.bitwarden.com +carLicense: W5UHXW +departmentNumber: 2089 +employeeType: Contract +homePhone: +1 510 944-1680 +initials: P. M. +mobile: +1 510 411-2219 +pager: +1 510 178-3138 +roomNumber: 8660 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madonna Matsubara +sn: Matsubara +description: This is Madonna Matsubara's description +facsimileTelephoneNumber: +1 818 343-3546 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 873-3154 +title: Chief Product Testing Czar +userPassword: Password1 +uid: MatsubaM +givenName: Madonna +mail: MatsubaM@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com +carLicense: M6NMS8 +departmentNumber: 1462 +employeeType: Normal +homePhone: +1 818 121-7611 +initials: M. M. +mobile: +1 818 423-5210 +pager: +1 818 230-8400 +roomNumber: 9588 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maible Blauer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maible Blauer +sn: Blauer +description: This is Maible Blauer's description +facsimileTelephoneNumber: +1 408 641-7586 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 408 124-1381 +title: Chief Management Warrior +userPassword: Password1 +uid: BlauerM +givenName: Maible +mail: BlauerM@12257cabb5eb48ceb908520b2745a457.bitwarden.com +carLicense: TEHYHX +departmentNumber: 6400 +employeeType: Normal +homePhone: +1 408 705-7360 +initials: M. B. +mobile: +1 408 961-4215 +pager: +1 408 424-5201 +roomNumber: 9953 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fawne Fanthome,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fawne Fanthome +sn: Fanthome +description: This is Fawne Fanthome's description +facsimileTelephoneNumber: +1 415 242-4628 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 846-8953 +title: Supreme Administrative Writer +userPassword: Password1 +uid: FanthomF +givenName: Fawne +mail: FanthomF@aac869a9d66f41deb273e8c857d2f2a2.bitwarden.com +carLicense: 07JGWM +departmentNumber: 1256 +employeeType: Employee +homePhone: +1 415 960-5223 +initials: F. F. +mobile: +1 415 315-5829 +pager: +1 415 362-6803 +roomNumber: 8964 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brinna Spraggins,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brinna Spraggins +sn: Spraggins +description: This is Brinna Spraggins's description +facsimileTelephoneNumber: +1 206 622-4790 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 280-1771 +title: Associate Peons Fellow +userPassword: Password1 +uid: SpraggiB +givenName: Brinna +mail: SpraggiB@9b56a002e1e845bebc57785089119222.bitwarden.com +carLicense: N8DWC0 +departmentNumber: 5320 +employeeType: Employee +homePhone: +1 206 116-6622 +initials: B. S. +mobile: +1 206 892-5249 +pager: +1 206 563-4236 +roomNumber: 8228 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Misbah FWPtools,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Misbah FWPtools +sn: FWPtools +description: This is Misbah FWPtools's description +facsimileTelephoneNumber: +1 213 718-2409 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 784-2308 +title: Junior Product Development Director +userPassword: Password1 +uid: FWPtoolM +givenName: Misbah +mail: FWPtoolM@5256d716dc394c1f919ed3450fa1ea97.bitwarden.com +carLicense: 8MB5JL +departmentNumber: 4695 +employeeType: Contract +homePhone: +1 213 526-5788 +initials: M. F. +mobile: +1 213 203-8964 +pager: +1 213 591-5691 +roomNumber: 9405 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shona Keck,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shona Keck +sn: Keck +description: This is Shona Keck's description +facsimileTelephoneNumber: +1 510 828-6353 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 771-5517 +title: Supreme Peons Janitor +userPassword: Password1 +uid: KeckS +givenName: Shona +mail: KeckS@8355880d64ee437fa987ff83fc2fd243.bitwarden.com +carLicense: ST9D6H +departmentNumber: 1171 +employeeType: Normal +homePhone: +1 510 798-6916 +initials: S. K. +mobile: +1 510 772-9790 +pager: +1 510 275-4854 +roomNumber: 8873 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Skip Vanderhooft +sn: Vanderhooft +description: This is Skip Vanderhooft's description +facsimileTelephoneNumber: +1 213 712-1956 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 515-1752 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: VanderhS +givenName: Skip +mail: VanderhS@c219bf062505483787e15d8eef41ed24.bitwarden.com +carLicense: VNEWX3 +departmentNumber: 7436 +employeeType: Normal +homePhone: +1 213 778-9577 +initials: S. V. +mobile: +1 213 604-4921 +pager: +1 213 432-5962 +roomNumber: 8701 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sluis Soulliere +sn: Soulliere +description: This is Sluis Soulliere's description +facsimileTelephoneNumber: +1 804 561-2460 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 573-4287 +title: Junior Janitorial President +userPassword: Password1 +uid: SoullieS +givenName: Sluis +mail: SoullieS@4504d7b5d7bb4c7c81665aefd8680fbc.bitwarden.com +carLicense: MHNUGN +departmentNumber: 7554 +employeeType: Normal +homePhone: +1 804 303-2919 +initials: S. S. +mobile: +1 804 344-1620 +pager: +1 804 466-7640 +roomNumber: 9344 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Doe Digenova,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doe Digenova +sn: Digenova +description: This is Doe Digenova's description +facsimileTelephoneNumber: +1 408 602-2784 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 535-7712 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: DigenovD +givenName: Doe +mail: DigenovD@c053920120d84308b5190978039283b5.bitwarden.com +carLicense: UCRQ6D +departmentNumber: 3561 +employeeType: Employee +homePhone: +1 408 336-7275 +initials: D. D. +mobile: +1 408 416-7168 +pager: +1 408 965-3532 +roomNumber: 9524 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Edel Huliganga,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edel Huliganga +sn: Huliganga +description: This is Edel Huliganga's description +facsimileTelephoneNumber: +1 213 977-7539 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 571-8563 +title: Associate Payroll Figurehead +userPassword: Password1 +uid: HuliganE +givenName: Edel +mail: HuliganE@237b08eaf7b7464e9c2e34150cfd7ad3.bitwarden.com +carLicense: 69QJ04 +departmentNumber: 5274 +employeeType: Normal +homePhone: +1 213 740-8403 +initials: E. H. +mobile: +1 213 506-6094 +pager: +1 213 691-4821 +roomNumber: 9792 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Miquela Khosla,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miquela Khosla +sn: Khosla +description: This is Miquela Khosla's description +facsimileTelephoneNumber: +1 213 552-6249 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 978-8255 +title: Junior Management Admin +userPassword: Password1 +uid: KhoslaM +givenName: Miquela +mail: KhoslaM@784bec209e394f1ca55bb2a6c8564d70.bitwarden.com +carLicense: APVOCT +departmentNumber: 5400 +employeeType: Contract +homePhone: +1 213 176-1091 +initials: M. K. +mobile: +1 213 160-9014 +pager: +1 213 393-6599 +roomNumber: 9867 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariel Barnhouse +sn: Barnhouse +description: This is Mariel Barnhouse's description +facsimileTelephoneNumber: +1 804 808-3448 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 818-3728 +title: Junior Product Testing Grunt +userPassword: Password1 +uid: BarnhouM +givenName: Mariel +mail: BarnhouM@9bca7e1fa66343078f8d2f441ac03fca.bitwarden.com +carLicense: LVFS01 +departmentNumber: 9516 +employeeType: Employee +homePhone: +1 804 377-2207 +initials: M. B. +mobile: +1 804 936-2241 +pager: +1 804 797-2405 +roomNumber: 8789 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Butch Gewell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Butch Gewell +sn: Gewell +description: This is Butch Gewell's description +facsimileTelephoneNumber: +1 415 938-2762 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 690-8233 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: GewellB +givenName: Butch +mail: GewellB@efcd32daf30f47bab7fc31cf8968544d.bitwarden.com +carLicense: BMI405 +departmentNumber: 6232 +employeeType: Contract +homePhone: +1 415 380-1122 +initials: B. G. +mobile: +1 415 870-6568 +pager: +1 415 731-5572 +roomNumber: 8532 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jawaid Kinrys +sn: Kinrys +description: This is Jawaid Kinrys's description +facsimileTelephoneNumber: +1 804 653-3496 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 350-9833 +title: Junior Janitorial Manager +userPassword: Password1 +uid: KinrysJ +givenName: Jawaid +mail: KinrysJ@ea406b4bd2b34275a1fc4a070b598266.bitwarden.com +carLicense: 4011DB +departmentNumber: 1555 +employeeType: Employee +homePhone: +1 804 415-5267 +initials: J. K. +mobile: +1 804 408-9849 +pager: +1 804 852-9405 +roomNumber: 9419 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mindy Wealch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mindy Wealch +sn: Wealch +description: This is Mindy Wealch's description +facsimileTelephoneNumber: +1 415 890-8405 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 765-5062 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: WealchM +givenName: Mindy +mail: WealchM@94dbeedce77e435482fe6d405df83d4c.bitwarden.com +carLicense: UUJJCL +departmentNumber: 2554 +employeeType: Employee +homePhone: +1 415 674-6228 +initials: M. W. +mobile: +1 415 973-7582 +pager: +1 415 738-6877 +roomNumber: 9893 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Petri Quintero,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petri Quintero +sn: Quintero +description: This is Petri Quintero's description +facsimileTelephoneNumber: +1 510 382-4789 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 510 612-2903 +title: Associate Human Resources Mascot +userPassword: Password1 +uid: QuinterP +givenName: Petri +mail: QuinterP@62762c759020411b89296a80fdd53afd.bitwarden.com +carLicense: AH0NQC +departmentNumber: 6425 +employeeType: Normal +homePhone: +1 510 638-4282 +initials: P. Q. +mobile: +1 510 253-9969 +pager: +1 510 635-5258 +roomNumber: 9105 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Windowing Feyen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Windowing Feyen +sn: Feyen +description: This is Windowing Feyen's description +facsimileTelephoneNumber: +1 408 174-9342 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 408 672-4986 +title: Junior Janitorial Writer +userPassword: Password1 +uid: FeyenW +givenName: Windowing +mail: FeyenW@91566d07f8014fa098810199110928d7.bitwarden.com +carLicense: AN4IYB +departmentNumber: 8035 +employeeType: Employee +homePhone: +1 408 265-5248 +initials: W. F. +mobile: +1 408 349-8192 +pager: +1 408 654-1154 +roomNumber: 8885 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Charlotta Demarest,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charlotta Demarest +sn: Demarest +description: This is Charlotta Demarest's description +facsimileTelephoneNumber: +1 818 123-8658 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 175-6386 +title: Chief Payroll Visionary +userPassword: Password1 +uid: DemaresC +givenName: Charlotta +mail: DemaresC@cb2e25cd93c145bf81000296630c3ab7.bitwarden.com +carLicense: 2EXGBG +departmentNumber: 2023 +employeeType: Contract +homePhone: +1 818 380-5783 +initials: C. D. +mobile: +1 818 917-1367 +pager: +1 818 578-6365 +roomNumber: 9382 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Honey Badjari,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Honey Badjari +sn: Badjari +description: This is Honey Badjari's description +facsimileTelephoneNumber: +1 804 721-4720 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 640-6982 +title: Supreme Product Testing President +userPassword: Password1 +uid: BadjariH +givenName: Honey +mail: BadjariH@47b3a42002e74101b1c82f87517bcbef.bitwarden.com +carLicense: 99PL5Y +departmentNumber: 8714 +employeeType: Employee +homePhone: +1 804 625-7889 +initials: H. B. +mobile: +1 804 991-2327 +pager: +1 804 102-5594 +roomNumber: 9555 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nady Kness,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nady Kness +sn: Kness +description: This is Nady Kness's description +facsimileTelephoneNumber: +1 818 879-5103 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 811-5485 +title: Supreme Peons Admin +userPassword: Password1 +uid: KnessN +givenName: Nady +mail: KnessN@9befe039acaf4d578a86c80d677d5d49.bitwarden.com +carLicense: FVGD6H +departmentNumber: 7043 +employeeType: Normal +homePhone: +1 818 151-9935 +initials: N. K. +mobile: +1 818 904-7617 +pager: +1 818 488-6641 +roomNumber: 9977 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Magdaia Pagi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdaia Pagi +sn: Pagi +description: This is Magdaia Pagi's description +facsimileTelephoneNumber: +1 206 889-4457 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 206 200-2638 +title: Supreme Payroll Manager +userPassword: Password1 +uid: PagiM +givenName: Magdaia +mail: PagiM@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com +carLicense: BICUBH +departmentNumber: 2875 +employeeType: Contract +homePhone: +1 206 644-3046 +initials: M. P. +mobile: +1 206 910-3638 +pager: +1 206 477-2349 +roomNumber: 8074 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Peri Morden,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peri Morden +sn: Morden +description: This is Peri Morden's description +facsimileTelephoneNumber: +1 213 616-5232 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 213 800-3810 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: MordenP +givenName: Peri +mail: MordenP@fc363d82b6fb44d985548ce8053314f6.bitwarden.com +carLicense: S60WMF +departmentNumber: 1126 +employeeType: Contract +homePhone: +1 213 485-6959 +initials: P. M. +mobile: +1 213 958-2745 +pager: +1 213 530-8837 +roomNumber: 8493 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Avie Moores,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avie Moores +sn: Moores +description: This is Avie Moores's description +facsimileTelephoneNumber: +1 510 514-3986 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 510 862-6442 +title: Master Peons Writer +userPassword: Password1 +uid: MooresA +givenName: Avie +mail: MooresA@c227b873963e4393bf6073155bf0bef2.bitwarden.com +carLicense: TO5IEH +departmentNumber: 6656 +employeeType: Normal +homePhone: +1 510 235-9753 +initials: A. M. +mobile: +1 510 324-4795 +pager: +1 510 996-2520 +roomNumber: 8714 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dreddy Iribarren +sn: Iribarren +description: This is Dreddy Iribarren's description +facsimileTelephoneNumber: +1 415 916-5932 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 203-5260 +title: Master Payroll Manager +userPassword: Password1 +uid: IribarrD +givenName: Dreddy +mail: IribarrD@e9e739e036b347aa8d1219a0e8da1acd.bitwarden.com +carLicense: RE6M4Y +departmentNumber: 8073 +employeeType: Normal +homePhone: +1 415 347-1274 +initials: D. I. +mobile: +1 415 489-1743 +pager: +1 415 712-9341 +roomNumber: 8288 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Schell Wendling,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Schell Wendling +sn: Wendling +description: This is Schell Wendling's description +facsimileTelephoneNumber: +1 213 480-5492 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 924-9134 +title: Chief Peons Writer +userPassword: Password1 +uid: WendlinS +givenName: Schell +mail: WendlinS@b2dba5d211e74e1e8b9beacd1ae0b042.bitwarden.com +carLicense: OS13CN +departmentNumber: 2587 +employeeType: Contract +homePhone: +1 213 722-6152 +initials: S. W. +mobile: +1 213 649-2141 +pager: +1 213 449-1647 +roomNumber: 9518 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Reynold Labiche,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reynold Labiche +sn: Labiche +description: This is Reynold Labiche's description +facsimileTelephoneNumber: +1 804 386-8063 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 561-6069 +title: Junior Administrative Admin +userPassword: Password1 +uid: LabicheR +givenName: Reynold +mail: LabicheR@d889c2d8f8034f8b853618d3cde340fb.bitwarden.com +carLicense: CW2LA9 +departmentNumber: 5185 +employeeType: Normal +homePhone: +1 804 926-8098 +initials: R. L. +mobile: +1 804 816-3637 +pager: +1 804 136-7849 +roomNumber: 8528 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vince Bulger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vince Bulger +sn: Bulger +description: This is Vince Bulger's description +facsimileTelephoneNumber: +1 213 464-6549 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 794-9657 +title: Associate Payroll Developer +userPassword: Password1 +uid: BulgerV +givenName: Vince +mail: BulgerV@e00d274753dc4e1282c4eb80a1b5a880.bitwarden.com +carLicense: 2OXSDD +departmentNumber: 3313 +employeeType: Employee +homePhone: +1 213 304-4512 +initials: V. B. +mobile: +1 213 890-8718 +pager: +1 213 297-5942 +roomNumber: 8622 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nedi England,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nedi England +sn: England +description: This is Nedi England's description +facsimileTelephoneNumber: +1 415 801-4154 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 415 982-8156 +title: Chief Administrative Consultant +userPassword: Password1 +uid: EnglandN +givenName: Nedi +mail: EnglandN@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com +carLicense: PJFM73 +departmentNumber: 2469 +employeeType: Employee +homePhone: +1 415 166-4886 +initials: N. E. +mobile: +1 415 239-7865 +pager: +1 415 778-4880 +roomNumber: 9546 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Field Ueyama,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Field Ueyama +sn: Ueyama +description: This is Field Ueyama's description +facsimileTelephoneNumber: +1 206 772-3087 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 206 655-9497 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: UeyamaF +givenName: Field +mail: UeyamaF@32419fed353640be907742ce6b450ca8.bitwarden.com +carLicense: KUTI88 +departmentNumber: 2900 +employeeType: Contract +homePhone: +1 206 692-1406 +initials: F. U. +mobile: +1 206 414-7783 +pager: +1 206 317-5673 +roomNumber: 8177 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mina ODonnell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mina ODonnell +sn: ODonnell +description: This is Mina ODonnell's description +facsimileTelephoneNumber: +1 510 119-4524 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 673-7154 +title: Junior Payroll Grunt +userPassword: Password1 +uid: ODonnelM +givenName: Mina +mail: ODonnelM@10c4772e07c4416b983baf85665d30de.bitwarden.com +carLicense: 2L0IU1 +departmentNumber: 8576 +employeeType: Employee +homePhone: +1 510 143-6880 +initials: M. O. +mobile: +1 510 867-5691 +pager: +1 510 349-3609 +roomNumber: 9048 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tetsumo Kempffer +sn: Kempffer +description: This is Tetsumo Kempffer's description +facsimileTelephoneNumber: +1 408 290-1131 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 538-3416 +title: Master Product Development President +userPassword: Password1 +uid: KempffeT +givenName: Tetsumo +mail: KempffeT@85b8ed1ad5b644cfbbbf9dc62daad7fc.bitwarden.com +carLicense: 33R7LX +departmentNumber: 4683 +employeeType: Employee +homePhone: +1 408 468-7084 +initials: T. K. +mobile: +1 408 103-7501 +pager: +1 408 492-8456 +roomNumber: 8263 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rubie Suddarth,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rubie Suddarth +sn: Suddarth +description: This is Rubie Suddarth's description +facsimileTelephoneNumber: +1 408 179-2469 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 533-6994 +title: Associate Payroll Stooge +userPassword: Password1 +uid: SuddartR +givenName: Rubie +mail: SuddartR@8af6d39064bb46a9ba4daa83c54c62c1.bitwarden.com +carLicense: VODKM5 +departmentNumber: 2644 +employeeType: Contract +homePhone: +1 408 742-2837 +initials: R. S. +mobile: +1 408 549-8302 +pager: +1 408 371-6275 +roomNumber: 9016 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fanchette Felli,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fanchette Felli +sn: Felli +description: This is Fanchette Felli's description +facsimileTelephoneNumber: +1 408 490-8913 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 358-9658 +title: Master Administrative Figurehead +userPassword: Password1 +uid: FelliF +givenName: Fanchette +mail: FelliF@5256d716dc394c1f919ed3450fa1ea97.bitwarden.com +carLicense: AQIC5P +departmentNumber: 2251 +employeeType: Employee +homePhone: +1 408 648-2809 +initials: F. F. +mobile: +1 408 737-4884 +pager: +1 408 788-4178 +roomNumber: 9414 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dorry Livshits,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorry Livshits +sn: Livshits +description: This is Dorry Livshits's description +facsimileTelephoneNumber: +1 818 980-8135 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 913-6298 +title: Supreme Payroll President +userPassword: Password1 +uid: LivshitD +givenName: Dorry +mail: LivshitD@6dd87ab9e5af49468fc97aebdbd7b449.bitwarden.com +carLicense: KWUT2I +departmentNumber: 1756 +employeeType: Normal +homePhone: +1 818 601-5740 +initials: D. L. +mobile: +1 818 913-7121 +pager: +1 818 881-2419 +roomNumber: 8675 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Merle Turchan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merle Turchan +sn: Turchan +description: This is Merle Turchan's description +facsimileTelephoneNumber: +1 804 458-4416 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 668-8378 +title: Junior Administrative Admin +userPassword: Password1 +uid: TurchanM +givenName: Merle +mail: TurchanM@d498c0edfe624410b23b0178f9f7f2c0.bitwarden.com +carLicense: 7Q85FO +departmentNumber: 4428 +employeeType: Employee +homePhone: +1 804 739-5885 +initials: M. T. +mobile: +1 804 775-7182 +pager: +1 804 252-3147 +roomNumber: 9023 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Achal Blann,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Achal Blann +sn: Blann +description: This is Achal Blann's description +facsimileTelephoneNumber: +1 408 489-4804 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 408 274-6064 +title: Junior Peons Evangelist +userPassword: Password1 +uid: BlannA +givenName: Achal +mail: BlannA@a081497caeb44f8587c4809a817c9728.bitwarden.com +carLicense: 9MDGEW +departmentNumber: 5945 +employeeType: Contract +homePhone: +1 408 303-4899 +initials: A. B. +mobile: +1 408 983-8561 +pager: +1 408 499-6940 +roomNumber: 9636 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marty Barr,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marty Barr +sn: Barr +description: This is Marty Barr's description +facsimileTelephoneNumber: +1 408 342-5851 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 408 249-8992 +title: Master Management Fellow +userPassword: Password1 +uid: BarrM +givenName: Marty +mail: BarrM@fad13712be524b2bb53fd1f676c9976a.bitwarden.com +carLicense: B4BDMS +departmentNumber: 8522 +employeeType: Employee +homePhone: +1 408 169-8600 +initials: M. B. +mobile: +1 408 581-1020 +pager: +1 408 740-5040 +roomNumber: 8499 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lilin Tisdall,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lilin Tisdall +sn: Tisdall +description: This is Lilin Tisdall's description +facsimileTelephoneNumber: +1 804 466-8101 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 804 134-1272 +title: Master Peons Evangelist +userPassword: Password1 +uid: TisdallL +givenName: Lilin +mail: TisdallL@f07be15577e54b07aaf9ccc18f458690.bitwarden.com +carLicense: K2M5QW +departmentNumber: 7405 +employeeType: Normal +homePhone: +1 804 510-3159 +initials: L. T. +mobile: +1 804 947-4132 +pager: +1 804 807-8579 +roomNumber: 8342 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jonie Cherrier +sn: Cherrier +description: This is Jonie Cherrier's description +facsimileTelephoneNumber: +1 510 239-6087 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 372-5922 +title: Chief Janitorial Figurehead +userPassword: Password1 +uid: CherrieJ +givenName: Jonie +mail: CherrieJ@713ec84902e3407ea7c47d43e09273a9.bitwarden.com +carLicense: 7B9VAD +departmentNumber: 3116 +employeeType: Contract +homePhone: +1 510 880-5359 +initials: J. C. +mobile: +1 510 627-5282 +pager: +1 510 290-5356 +roomNumber: 9747 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silvana CraigDupuis +sn: CraigDupuis +description: This is Silvana CraigDupuis's description +facsimileTelephoneNumber: +1 213 624-4680 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 186-1826 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: CraigDuS +givenName: Silvana +mail: CraigDuS@25e344e508194d148c2480fc79febf41.bitwarden.com +carLicense: 58XH54 +departmentNumber: 3219 +employeeType: Normal +homePhone: +1 213 538-1752 +initials: S. C. +mobile: +1 213 689-8187 +pager: +1 213 298-3248 +roomNumber: 9457 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Camille Seddigh,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camille Seddigh +sn: Seddigh +description: This is Camille Seddigh's description +facsimileTelephoneNumber: +1 510 790-8327 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 510 482-8615 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: SeddighC +givenName: Camille +mail: SeddighC@248fbbdd5e2b4efdbf1ff86927aed801.bitwarden.com +carLicense: 6H873D +departmentNumber: 4675 +employeeType: Normal +homePhone: +1 510 891-2998 +initials: C. S. +mobile: +1 510 707-4277 +pager: +1 510 961-1336 +roomNumber: 8814 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Manon Swinamer,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manon Swinamer +sn: Swinamer +description: This is Manon Swinamer's description +facsimileTelephoneNumber: +1 408 252-1207 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 681-5891 +title: Supreme Janitorial Developer +userPassword: Password1 +uid: SwinameM +givenName: Manon +mail: SwinameM@f2546b85540e458c8c528fab744261e5.bitwarden.com +carLicense: 302I0B +departmentNumber: 3697 +employeeType: Normal +homePhone: +1 408 695-2845 +initials: M. S. +mobile: +1 408 471-4292 +pager: +1 408 234-9158 +roomNumber: 8891 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margarette Cutrufello +sn: Cutrufello +description: This is Margarette Cutrufello's description +facsimileTelephoneNumber: +1 415 735-2475 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 627-1115 +title: Master Human Resources Writer +userPassword: Password1 +uid: CutrufeM +givenName: Margarette +mail: CutrufeM@a31aed5cfdcb4194bc94b7ef44927e93.bitwarden.com +carLicense: 9U0KOU +departmentNumber: 5333 +employeeType: Normal +homePhone: +1 415 343-5726 +initials: M. C. +mobile: +1 415 713-8138 +pager: +1 415 978-5440 +roomNumber: 9755 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marci Uludamar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marci Uludamar +sn: Uludamar +description: This is Marci Uludamar's description +facsimileTelephoneNumber: +1 206 345-6420 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 206 840-9483 +title: Junior Janitorial Director +userPassword: Password1 +uid: UludamaM +givenName: Marci +mail: UludamaM@28fca843a5ae4175b7bbc20728951453.bitwarden.com +carLicense: 1QXSXS +departmentNumber: 1456 +employeeType: Contract +homePhone: +1 206 134-6881 +initials: M. U. +mobile: +1 206 839-6635 +pager: +1 206 285-9057 +roomNumber: 8958 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marcel Mathiue,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcel Mathiue +sn: Mathiue +description: This is Marcel Mathiue's description +facsimileTelephoneNumber: +1 213 554-4785 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 658-4104 +title: Junior Management Admin +userPassword: Password1 +uid: MathiueM +givenName: Marcel +mail: MathiueM@a5f4802ff3844a6da03607a2952d6142.bitwarden.com +carLicense: R5QXKH +departmentNumber: 8993 +employeeType: Normal +homePhone: +1 213 521-4478 +initials: M. M. +mobile: +1 213 924-9208 +pager: +1 213 198-1091 +roomNumber: 9068 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Clementina Salkilld,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clementina Salkilld +sn: Salkilld +description: This is Clementina Salkilld's description +facsimileTelephoneNumber: +1 818 491-4916 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 818 590-2151 +title: Junior Peons Director +userPassword: Password1 +uid: SalkillC +givenName: Clementina +mail: SalkillC@5cc175e484e84097b7cd2f4f59476a94.bitwarden.com +carLicense: BNA69C +departmentNumber: 7521 +employeeType: Employee +homePhone: +1 818 575-9169 +initials: C. S. +mobile: +1 818 495-7595 +pager: +1 818 404-7485 +roomNumber: 9368 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaquith Tatangsurja +sn: Tatangsurja +description: This is Jaquith Tatangsurja's description +facsimileTelephoneNumber: +1 804 261-9976 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 804 538-8620 +title: Chief Peons Figurehead +userPassword: Password1 +uid: TatangsJ +givenName: Jaquith +mail: TatangsJ@8cfe11654a1f4bcf872e901116f7b350.bitwarden.com +carLicense: VFOV7U +departmentNumber: 6977 +employeeType: Employee +homePhone: +1 804 491-7337 +initials: J. T. +mobile: +1 804 282-2972 +pager: +1 804 128-6711 +roomNumber: 8542 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gertrudis Zahn,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertrudis Zahn +sn: Zahn +description: This is Gertrudis Zahn's description +facsimileTelephoneNumber: +1 510 941-1732 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 510 103-8324 +title: Chief Peons Artist +userPassword: Password1 +uid: ZahnG +givenName: Gertrudis +mail: ZahnG@643babc725854db49eed6fbb3cc528c1.bitwarden.com +carLicense: YJ858E +departmentNumber: 9514 +employeeType: Employee +homePhone: +1 510 881-2877 +initials: G. Z. +mobile: +1 510 157-4317 +pager: +1 510 481-7877 +roomNumber: 9278 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jere Forghani,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jere Forghani +sn: Forghani +description: This is Jere Forghani's description +facsimileTelephoneNumber: +1 213 993-9640 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 993-9868 +title: Supreme Product Development Director +userPassword: Password1 +uid: ForghanJ +givenName: Jere +mail: ForghanJ@0402555d9f67459e90e5fb987f132859.bitwarden.com +carLicense: LUMGJD +departmentNumber: 7086 +employeeType: Contract +homePhone: +1 213 525-9252 +initials: J. F. +mobile: +1 213 669-1467 +pager: +1 213 207-8635 +roomNumber: 8900 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nakina Pezzullo +sn: Pezzullo +description: This is Nakina Pezzullo's description +facsimileTelephoneNumber: +1 415 836-8526 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 415 332-8175 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: PezzullN +givenName: Nakina +mail: PezzullN@6de6b96b53bf450ebd85b6259dd56653.bitwarden.com +carLicense: SD49Q6 +departmentNumber: 6731 +employeeType: Contract +homePhone: +1 415 723-6470 +initials: N. P. +mobile: +1 415 639-2494 +pager: +1 415 643-2280 +roomNumber: 8091 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gilemette Dellinger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilemette Dellinger +sn: Dellinger +description: This is Gilemette Dellinger's description +facsimileTelephoneNumber: +1 804 525-9898 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 804 128-7631 +title: Supreme Peons Warrior +userPassword: Password1 +uid: DellingG +givenName: Gilemette +mail: DellingG@9dc5f26c8d604d308d7d70d0272f1d88.bitwarden.com +carLicense: 7A1F3K +departmentNumber: 3590 +employeeType: Normal +homePhone: +1 804 799-3288 +initials: G. D. +mobile: +1 804 822-8249 +pager: +1 804 671-8262 +roomNumber: 9097 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Magdalene Byers,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdalene Byers +sn: Byers +description: This is Magdalene Byers's description +facsimileTelephoneNumber: +1 415 588-3685 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 415 618-8214 +title: Supreme Product Development Stooge +userPassword: Password1 +uid: ByersM +givenName: Magdalene +mail: ByersM@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com +carLicense: D0EOFN +departmentNumber: 6930 +employeeType: Employee +homePhone: +1 415 364-7978 +initials: M. B. +mobile: +1 415 115-6237 +pager: +1 415 427-5404 +roomNumber: 8996 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwenette Zagrodney +sn: Zagrodney +description: This is Gwenette Zagrodney's description +facsimileTelephoneNumber: +1 510 510-6740 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 617-9402 +title: Supreme Administrative Artist +userPassword: Password1 +uid: ZagrodnG +givenName: Gwenette +mail: ZagrodnG@1b5833345bfe4fbbb19ff2ae67a5a60b.bitwarden.com +carLicense: KL16EJ +departmentNumber: 8807 +employeeType: Normal +homePhone: +1 510 583-7857 +initials: G. Z. +mobile: +1 510 148-1956 +pager: +1 510 676-7304 +roomNumber: 9848 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Parnell Hamlin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parnell Hamlin +sn: Hamlin +description: This is Parnell Hamlin's description +facsimileTelephoneNumber: +1 206 833-7390 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 180-4014 +title: Junior Payroll Janitor +userPassword: Password1 +uid: HamlinP +givenName: Parnell +mail: HamlinP@ecca4a8cb1474812a6ec4a57737ddfaf.bitwarden.com +carLicense: 4C28BL +departmentNumber: 6427 +employeeType: Normal +homePhone: +1 206 281-8953 +initials: P. H. +mobile: +1 206 151-2577 +pager: +1 206 972-1527 +roomNumber: 9132 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nath Popovich,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nath Popovich +sn: Popovich +description: This is Nath Popovich's description +facsimileTelephoneNumber: +1 408 136-8145 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 736-4513 +title: Master Product Testing Assistant +userPassword: Password1 +uid: PopovicN +givenName: Nath +mail: PopovicN@714efec96f8a44d68fc31297a56f7cd6.bitwarden.com +carLicense: X1HFSN +departmentNumber: 6350 +employeeType: Contract +homePhone: +1 408 787-9734 +initials: N. P. +mobile: +1 408 574-9100 +pager: +1 408 610-3375 +roomNumber: 8187 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Patch Lassonde,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patch Lassonde +sn: Lassonde +description: This is Patch Lassonde's description +facsimileTelephoneNumber: +1 213 882-3875 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 128-7202 +title: Chief Peons Architect +userPassword: Password1 +uid: LassondP +givenName: Patch +mail: LassondP@fac421ca650e46139878bbd5f7498e19.bitwarden.com +carLicense: 5JOG72 +departmentNumber: 1990 +employeeType: Normal +homePhone: +1 213 441-7145 +initials: P. L. +mobile: +1 213 648-3805 +pager: +1 213 379-7945 +roomNumber: 9474 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charmain VanBenthem +sn: VanBenthem +description: This is Charmain VanBenthem's description +facsimileTelephoneNumber: +1 408 204-9965 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 787-9093 +title: Junior Administrative Manager +userPassword: Password1 +uid: VanBentC +givenName: Charmain +mail: VanBentC@6530bd09dbf540aea0b4eb735de3f457.bitwarden.com +carLicense: PB7ESF +departmentNumber: 9031 +employeeType: Employee +homePhone: +1 408 230-7187 +initials: C. V. +mobile: +1 408 210-7928 +pager: +1 408 765-7532 +roomNumber: 8566 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nata Corse,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nata Corse +sn: Corse +description: This is Nata Corse's description +facsimileTelephoneNumber: +1 415 445-3546 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 538-1395 +title: Associate Janitorial Pinhead +userPassword: Password1 +uid: CorseN +givenName: Nata +mail: CorseN@5810f4b0e0144582bc97026bbf289a58.bitwarden.com +carLicense: GQPJ0W +departmentNumber: 8310 +employeeType: Normal +homePhone: +1 415 455-9997 +initials: N. C. +mobile: +1 415 257-1095 +pager: +1 415 793-9023 +roomNumber: 9100 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marj Npi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marj Npi +sn: Npi +description: This is Marj Npi's description +facsimileTelephoneNumber: +1 804 692-3934 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 913-3360 +title: Junior Payroll Assistant +userPassword: Password1 +uid: NpiM +givenName: Marj +mail: NpiM@479b3e4b55a5494fbabf2926242184e6.bitwarden.com +carLicense: JRJV9E +departmentNumber: 4031 +employeeType: Normal +homePhone: +1 804 154-9568 +initials: M. N. +mobile: +1 804 778-1794 +pager: +1 804 872-7670 +roomNumber: 8581 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosemonde Kawamura +sn: Kawamura +description: This is Rosemonde Kawamura's description +facsimileTelephoneNumber: +1 408 943-7365 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 408 235-2122 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: KawamurR +givenName: Rosemonde +mail: KawamurR@fbef9109d3fa45f28a2fe6e9e57320c7.bitwarden.com +carLicense: WLCD2V +departmentNumber: 7991 +employeeType: Normal +homePhone: +1 408 251-1538 +initials: R. K. +mobile: +1 408 894-6698 +pager: +1 408 765-1836 +roomNumber: 9991 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Emery Daoust,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emery Daoust +sn: Daoust +description: This is Emery Daoust's description +facsimileTelephoneNumber: +1 510 303-3766 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 355-8760 +title: Associate Peons Sales Rep +userPassword: Password1 +uid: DaoustE +givenName: Emery +mail: DaoustE@3b0207fba5944fd0a6dca16921952a03.bitwarden.com +carLicense: B1VJ7E +departmentNumber: 3965 +employeeType: Employee +homePhone: +1 510 114-1916 +initials: E. D. +mobile: +1 510 330-3411 +pager: +1 510 915-3977 +roomNumber: 8218 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Danya Prasada,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danya Prasada +sn: Prasada +description: This is Danya Prasada's description +facsimileTelephoneNumber: +1 213 250-9165 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 424-7980 +title: Associate Product Testing Writer +userPassword: Password1 +uid: PrasadaD +givenName: Danya +mail: PrasadaD@6b1f85dcb6764cc8ada9b5557877a02d.bitwarden.com +carLicense: MKK7LR +departmentNumber: 4694 +employeeType: Employee +homePhone: +1 213 696-9410 +initials: D. P. +mobile: +1 213 473-4982 +pager: +1 213 328-8625 +roomNumber: 8450 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Partha Blackman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Partha Blackman +sn: Blackman +description: This is Partha Blackman's description +facsimileTelephoneNumber: +1 804 201-6164 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 842-4635 +title: Master Payroll Visionary +userPassword: Password1 +uid: BlackmaP +givenName: Partha +mail: BlackmaP@c44cf57c7e494ab8a133e7f2a6a02284.bitwarden.com +carLicense: JJY31L +departmentNumber: 6357 +employeeType: Employee +homePhone: +1 804 869-9181 +initials: P. B. +mobile: +1 804 164-1998 +pager: +1 804 721-5746 +roomNumber: 8724 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Florette Shemwell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florette Shemwell +sn: Shemwell +description: This is Florette Shemwell's description +facsimileTelephoneNumber: +1 804 793-8206 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 241-6234 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: ShemwelF +givenName: Florette +mail: ShemwelF@c0d5947f2ac7414c9a231d1b93a98940.bitwarden.com +carLicense: 1GSBL0 +departmentNumber: 9594 +employeeType: Employee +homePhone: +1 804 864-7704 +initials: F. S. +mobile: +1 804 316-5827 +pager: +1 804 783-1720 +roomNumber: 9435 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilliard Weeks +sn: Weeks +description: This is Hilliard Weeks's description +facsimileTelephoneNumber: +1 415 623-8286 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 789-2949 +title: Chief Product Testing Director +userPassword: Password1 +uid: WeeksH +givenName: Hilliard +mail: WeeksH@c303add5409e4b2ca1508fde8a7014b9.bitwarden.com +carLicense: QQ0FM6 +departmentNumber: 8461 +employeeType: Employee +homePhone: +1 415 935-1514 +initials: H. W. +mobile: +1 415 780-2304 +pager: +1 415 253-1549 +roomNumber: 9164 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnnMarie Dreisbach +sn: Dreisbach +description: This is AnnMarie Dreisbach's description +facsimileTelephoneNumber: +1 415 589-8688 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 124-8318 +title: Master Payroll Technician +userPassword: Password1 +uid: DreisbaA +givenName: AnnMarie +mail: DreisbaA@a7879a3db49d425f8293a2b2d51d5b86.bitwarden.com +carLicense: NBOAYQ +departmentNumber: 3373 +employeeType: Contract +homePhone: +1 415 230-6565 +initials: A. D. +mobile: +1 415 349-2397 +pager: +1 415 356-1876 +roomNumber: 8060 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Abagael Zattiero,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abagael Zattiero +sn: Zattiero +description: This is Abagael Zattiero's description +facsimileTelephoneNumber: +1 213 926-5952 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 213 857-7852 +title: Supreme Management Visionary +userPassword: Password1 +uid: ZattierA +givenName: Abagael +mail: ZattierA@972cbc7b1e734ef69ec2cf84c21cdb8e.bitwarden.com +carLicense: 2XCOFC +departmentNumber: 9166 +employeeType: Contract +homePhone: +1 213 883-4231 +initials: A. Z. +mobile: +1 213 107-5514 +pager: +1 213 354-4827 +roomNumber: 9862 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mardi Lowder,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mardi Lowder +sn: Lowder +description: This is Mardi Lowder's description +facsimileTelephoneNumber: +1 213 377-6244 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 213 648-8396 +title: Junior Human Resources President +userPassword: Password1 +uid: LowderM +givenName: Mardi +mail: LowderM@d624fb65c7214c7bb843b6ea68ab9b4a.bitwarden.com +carLicense: 1YGOF3 +departmentNumber: 8186 +employeeType: Employee +homePhone: +1 213 654-4600 +initials: M. L. +mobile: +1 213 442-3236 +pager: +1 213 196-6988 +roomNumber: 9257 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Euphemia Kalechstein +sn: Kalechstein +description: This is Euphemia Kalechstein's description +facsimileTelephoneNumber: +1 818 548-3694 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 818 461-7315 +title: Chief Payroll Warrior +userPassword: Password1 +uid: KalechsE +givenName: Euphemia +mail: KalechsE@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com +carLicense: S2JIP1 +departmentNumber: 3078 +employeeType: Normal +homePhone: +1 818 413-8320 +initials: E. K. +mobile: +1 818 591-8951 +pager: +1 818 573-7224 +roomNumber: 9970 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mercy Steranka,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mercy Steranka +sn: Steranka +description: This is Mercy Steranka's description +facsimileTelephoneNumber: +1 818 824-8064 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 818 639-2653 +title: Supreme Management Writer +userPassword: Password1 +uid: SterankM +givenName: Mercy +mail: SterankM@772e8e157e064d01bd5516f96a40fa60.bitwarden.com +carLicense: BEJ8N8 +departmentNumber: 9340 +employeeType: Employee +homePhone: +1 818 340-2625 +initials: M. S. +mobile: +1 818 383-2210 +pager: +1 818 445-2897 +roomNumber: 9917 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pramod Scherbinsky +sn: Scherbinsky +description: This is Pramod Scherbinsky's description +facsimileTelephoneNumber: +1 804 954-5304 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 719-1718 +title: Associate Administrative Mascot +userPassword: Password1 +uid: ScherbiP +givenName: Pramod +mail: ScherbiP@df17bef8c1b54142a20c32df0ed28190.bitwarden.com +carLicense: L1IUCM +departmentNumber: 3227 +employeeType: Contract +homePhone: +1 804 962-3599 +initials: P. S. +mobile: +1 804 146-3611 +pager: +1 804 267-2022 +roomNumber: 8436 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurelea Srikrishna +sn: Srikrishna +description: This is Aurelea Srikrishna's description +facsimileTelephoneNumber: +1 510 618-8167 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 394-8609 +title: Chief Product Testing Admin +userPassword: Password1 +uid: SrikrisA +givenName: Aurelea +mail: SrikrisA@407a8845f0a44578b9efb43e7405efd9.bitwarden.com +carLicense: 10T2XA +departmentNumber: 5962 +employeeType: Employee +homePhone: +1 510 668-8828 +initials: A. S. +mobile: +1 510 680-3144 +pager: +1 510 367-7489 +roomNumber: 9432 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Catja Josiah,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Catja Josiah +sn: Josiah +description: This is Catja Josiah's description +facsimileTelephoneNumber: +1 213 270-9317 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 213 728-3453 +title: Associate Administrative Architect +userPassword: Password1 +uid: JosiahC +givenName: Catja +mail: JosiahC@623d62a2d1154923b1c9152d9f2876da.bitwarden.com +carLicense: T4VE33 +departmentNumber: 6849 +employeeType: Contract +homePhone: +1 213 572-7454 +initials: C. J. +mobile: +1 213 245-8171 +pager: +1 213 667-2905 +roomNumber: 9611 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marlena Rickey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marlena Rickey +sn: Rickey +description: This is Marlena Rickey's description +facsimileTelephoneNumber: +1 804 754-9807 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 804 232-8602 +title: Chief Administrative Madonna +userPassword: Password1 +uid: RickeyM +givenName: Marlena +mail: RickeyM@b60e4ba7e4ea41b7aff4212cdb1e99c6.bitwarden.com +carLicense: WVB46A +departmentNumber: 9205 +employeeType: Normal +homePhone: +1 804 137-6360 +initials: M. R. +mobile: +1 804 494-5259 +pager: +1 804 212-2429 +roomNumber: 9208 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadru Ueyama +sn: Ueyama +description: This is Sadru Ueyama's description +facsimileTelephoneNumber: +1 206 114-2996 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 316-4977 +title: Master Product Testing Artist +userPassword: Password1 +uid: UeyamaS +givenName: Sadru +mail: UeyamaS@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com +carLicense: FVDGLY +departmentNumber: 8376 +employeeType: Normal +homePhone: +1 206 142-9027 +initials: S. U. +mobile: +1 206 841-4260 +pager: +1 206 478-1382 +roomNumber: 9228 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shandee Reno,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shandee Reno +sn: Reno +description: This is Shandee Reno's description +facsimileTelephoneNumber: +1 206 746-4283 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 721-9138 +title: Junior Product Development Artist +userPassword: Password1 +uid: RenoS +givenName: Shandee +mail: RenoS@a04d0222f0c24ad6848955600bad7ace.bitwarden.com +carLicense: BMNMV7 +departmentNumber: 1415 +employeeType: Normal +homePhone: +1 206 172-7201 +initials: S. R. +mobile: +1 206 469-7137 +pager: +1 206 330-8986 +roomNumber: 9803 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Didani Nakhoul +sn: Nakhoul +description: This is Didani Nakhoul's description +facsimileTelephoneNumber: +1 408 443-7751 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 408 101-3710 +title: Associate Human Resources Czar +userPassword: Password1 +uid: NakhoulD +givenName: Didani +mail: NakhoulD@9ad96ae4214c429c98f90a76404682a2.bitwarden.com +carLicense: L5DHVQ +departmentNumber: 7850 +employeeType: Contract +homePhone: +1 408 944-4209 +initials: D. N. +mobile: +1 408 945-7958 +pager: +1 408 128-6327 +roomNumber: 8367 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Silva Connolly,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silva Connolly +sn: Connolly +description: This is Silva Connolly's description +facsimileTelephoneNumber: +1 206 666-3166 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 206 989-4082 +title: Junior Administrative Grunt +userPassword: Password1 +uid: ConnollS +givenName: Silva +mail: ConnollS@2050a6c4c8e746ae88bec9f7634b8d59.bitwarden.com +carLicense: UKF7OM +departmentNumber: 5640 +employeeType: Employee +homePhone: +1 206 912-6960 +initials: S. C. +mobile: +1 206 702-5137 +pager: +1 206 489-2643 +roomNumber: 8896 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Iwan Theriot,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Iwan Theriot +sn: Theriot +description: This is Iwan Theriot's description +facsimileTelephoneNumber: +1 818 326-1564 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 611-8727 +title: Master Human Resources Developer +userPassword: Password1 +uid: TheriotI +givenName: Iwan +mail: TheriotI@ac2881cfd212410799e38769b052602b.bitwarden.com +carLicense: Y79LXP +departmentNumber: 2339 +employeeType: Employee +homePhone: +1 818 626-9937 +initials: I. T. +mobile: +1 818 257-9994 +pager: +1 818 240-9099 +roomNumber: 8620 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rejeanne Etu +sn: Etu +description: This is Rejeanne Etu's description +facsimileTelephoneNumber: +1 206 876-7173 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 664-7958 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: EtuR +givenName: Rejeanne +mail: EtuR@ff44921ff72348599ae7fe837a40ec13.bitwarden.com +carLicense: D911DP +departmentNumber: 7288 +employeeType: Contract +homePhone: +1 206 504-4391 +initials: R. E. +mobile: +1 206 808-9152 +pager: +1 206 951-4934 +roomNumber: 9099 +manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roddy Mikulka +sn: Mikulka +description: This is Roddy Mikulka's description +facsimileTelephoneNumber: +1 818 127-6131 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 220-1225 +title: Associate Human Resources Director +userPassword: Password1 +uid: MikulkaR +givenName: Roddy +mail: MikulkaR@9cbd4c37891849299ce4208e274287c6.bitwarden.com +carLicense: KLNNNN +departmentNumber: 4247 +employeeType: Employee +homePhone: +1 818 871-4850 +initials: R. M. +mobile: +1 818 241-7892 +pager: +1 818 826-4556 +roomNumber: 9368 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Emerson Terminals,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emerson Terminals +sn: Terminals +description: This is Emerson Terminals's description +facsimileTelephoneNumber: +1 510 756-5654 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 391-8592 +title: Supreme Payroll Director +userPassword: Password1 +uid: TerminaE +givenName: Emerson +mail: TerminaE@e5fdd3d67af74cde904584628c237f35.bitwarden.com +carLicense: XDKEME +departmentNumber: 7526 +employeeType: Employee +homePhone: +1 510 305-3693 +initials: E. T. +mobile: +1 510 566-2021 +pager: +1 510 551-6734 +roomNumber: 8091 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrzej Moskalik +sn: Moskalik +description: This is Andrzej Moskalik's description +facsimileTelephoneNumber: +1 804 757-7883 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 294-9844 +title: Chief Product Testing Admin +userPassword: Password1 +uid: MoskaliA +givenName: Andrzej +mail: MoskaliA@ff9d2c9dbee641ab8637fbbd354b62f4.bitwarden.com +carLicense: YP6CS7 +departmentNumber: 6057 +employeeType: Employee +homePhone: +1 804 205-2085 +initials: A. M. +mobile: +1 804 790-3210 +pager: +1 804 607-9634 +roomNumber: 9829 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vannie Mallozzi +sn: Mallozzi +description: This is Vannie Mallozzi's description +facsimileTelephoneNumber: +1 408 347-2988 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 755-8126 +title: Supreme Product Testing Evangelist +userPassword: Password1 +uid: MallozzV +givenName: Vannie +mail: MallozzV@09cbaaa2d7a142c9854868c3f613dfe5.bitwarden.com +carLicense: RHGLXA +departmentNumber: 7680 +employeeType: Contract +homePhone: +1 408 883-2358 +initials: V. M. +mobile: +1 408 756-5309 +pager: +1 408 413-5930 +roomNumber: 9122 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivyan Woolley +sn: Woolley +description: This is Vivyan Woolley's description +facsimileTelephoneNumber: +1 408 545-2649 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 745-2248 +title: Junior Human Resources Visionary +userPassword: Password1 +uid: WoolleyV +givenName: Vivyan +mail: WoolleyV@84b57e0771b643809ac58933f98cbf52.bitwarden.com +carLicense: MMHF50 +departmentNumber: 9426 +employeeType: Employee +homePhone: +1 408 550-2304 +initials: V. W. +mobile: +1 408 828-5597 +pager: +1 408 317-7342 +roomNumber: 9288 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jude Venguswamy +sn: Venguswamy +description: This is Jude Venguswamy's description +facsimileTelephoneNumber: +1 415 375-1380 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 415 506-2329 +title: Chief Human Resources Pinhead +userPassword: Password1 +uid: VenguswJ +givenName: Jude +mail: VenguswJ@99364e00956b4bfea4a43b7bb289f754.bitwarden.com +carLicense: 08I0Y8 +departmentNumber: 3655 +employeeType: Employee +homePhone: +1 415 284-2701 +initials: J. V. +mobile: +1 415 330-4182 +pager: +1 415 277-7961 +roomNumber: 9559 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Felicdad Popela,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felicdad Popela +sn: Popela +description: This is Felicdad Popela's description +facsimileTelephoneNumber: +1 415 356-1116 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 384-8325 +title: Junior Administrative Grunt +userPassword: Password1 +uid: PopelaF +givenName: Felicdad +mail: PopelaF@55d3abf188cf489e982ee3fc8f3c0c3d.bitwarden.com +carLicense: HAQ5FI +departmentNumber: 1628 +employeeType: Employee +homePhone: +1 415 920-6958 +initials: F. P. +mobile: +1 415 978-9670 +pager: +1 415 983-7627 +roomNumber: 9347 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Himanshu Zahn,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Himanshu Zahn +sn: Zahn +description: This is Himanshu Zahn's description +facsimileTelephoneNumber: +1 510 234-1007 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 177-8013 +title: Junior Peons Czar +userPassword: Password1 +uid: ZahnH +givenName: Himanshu +mail: ZahnH@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com +carLicense: N9W6LK +departmentNumber: 9802 +employeeType: Normal +homePhone: +1 510 766-3065 +initials: H. Z. +mobile: +1 510 850-6018 +pager: +1 510 857-4602 +roomNumber: 8524 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Luisa Legros,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luisa Legros +sn: Legros +description: This is Luisa Legros's description +facsimileTelephoneNumber: +1 415 836-7439 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 595-9016 +title: Junior Product Testing Admin +userPassword: Password1 +uid: LegrosL +givenName: Luisa +mail: LegrosL@6e3b6563cdc44f58b3c72f890bc814e3.bitwarden.com +carLicense: 0OBYIR +departmentNumber: 1513 +employeeType: Contract +homePhone: +1 415 297-8541 +initials: L. L. +mobile: +1 415 894-3064 +pager: +1 415 129-7506 +roomNumber: 9526 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Brenn Thedford,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brenn Thedford +sn: Thedford +description: This is Brenn Thedford's description +facsimileTelephoneNumber: +1 804 158-2028 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 804 727-7346 +title: Master Peons Evangelist +userPassword: Password1 +uid: ThedforB +givenName: Brenn +mail: ThedforB@4831c314a96e4dc2a8c277ec349e694c.bitwarden.com +carLicense: 5WI6YA +departmentNumber: 2161 +employeeType: Contract +homePhone: +1 804 309-7047 +initials: B. T. +mobile: +1 804 814-8572 +pager: +1 804 382-1767 +roomNumber: 9221 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Albina Kruusement,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Albina Kruusement +sn: Kruusement +description: This is Albina Kruusement's description +facsimileTelephoneNumber: +1 510 931-6269 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 510 426-3331 +title: Master Peons Visionary +userPassword: Password1 +uid: KruusemA +givenName: Albina +mail: KruusemA@42f51a65b1584dbea4e8a6daf5a3f864.bitwarden.com +carLicense: QRLH3W +departmentNumber: 1810 +employeeType: Contract +homePhone: +1 510 399-2240 +initials: A. K. +mobile: +1 510 173-3282 +pager: +1 510 860-2741 +roomNumber: 8900 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yueping Yamada,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yueping Yamada +sn: Yamada +description: This is Yueping Yamada's description +facsimileTelephoneNumber: +1 213 772-3542 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 465-7261 +title: Supreme Human Resources Artist +userPassword: Password1 +uid: YamadaY +givenName: Yueping +mail: YamadaY@c23d2b465eec4405a3a69954d418e742.bitwarden.com +carLicense: CCL4DM +departmentNumber: 6192 +employeeType: Contract +homePhone: +1 213 570-4156 +initials: Y. Y. +mobile: +1 213 571-6192 +pager: +1 213 428-5401 +roomNumber: 8392 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Belvia Abbott,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belvia Abbott +sn: Abbott +description: This is Belvia Abbott's description +facsimileTelephoneNumber: +1 804 627-8363 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 804 505-9624 +title: Junior Product Development Grunt +userPassword: Password1 +uid: AbbottB +givenName: Belvia +mail: AbbottB@fc560954a9334e018a537b8d2963deee.bitwarden.com +carLicense: H5YXGL +departmentNumber: 6311 +employeeType: Employee +homePhone: +1 804 496-1759 +initials: B. A. +mobile: +1 804 507-5721 +pager: +1 804 895-8853 +roomNumber: 9176 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Seyma Currier,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seyma Currier +sn: Currier +description: This is Seyma Currier's description +facsimileTelephoneNumber: +1 804 534-9655 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 565-8539 +title: Junior Administrative Artist +userPassword: Password1 +uid: CurrierS +givenName: Seyma +mail: CurrierS@4d4fe6f945794c9fafed4fdb31a8162b.bitwarden.com +carLicense: QC5YW1 +departmentNumber: 9005 +employeeType: Normal +homePhone: +1 804 188-1382 +initials: S. C. +mobile: +1 804 630-7959 +pager: +1 804 517-7409 +roomNumber: 9412 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Derrik Steede,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Derrik Steede +sn: Steede +description: This is Derrik Steede's description +facsimileTelephoneNumber: +1 804 612-4231 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 128-7687 +title: Associate Management President +userPassword: Password1 +uid: SteedeD +givenName: Derrik +mail: SteedeD@e637a483d18442128d105a67f1ef62ac.bitwarden.com +carLicense: 7OKW6C +departmentNumber: 3238 +employeeType: Employee +homePhone: +1 804 305-2001 +initials: D. S. +mobile: +1 804 790-9262 +pager: +1 804 789-5679 +roomNumber: 9987 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Starla OFarrell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Starla OFarrell +sn: OFarrell +description: This is Starla OFarrell's description +facsimileTelephoneNumber: +1 206 899-7088 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 700-7116 +title: Master Human Resources Punk +userPassword: Password1 +uid: OFarrelS +givenName: Starla +mail: OFarrelS@a922ba05488e401e9633fbd1813d714f.bitwarden.com +carLicense: 0WAC0E +departmentNumber: 3261 +employeeType: Contract +homePhone: +1 206 926-3515 +initials: S. O. +mobile: +1 206 726-5184 +pager: +1 206 658-1531 +roomNumber: 9158 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jerrilee Sudan +sn: Sudan +description: This is Jerrilee Sudan's description +facsimileTelephoneNumber: +1 510 698-8125 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 570-9592 +title: Master Janitorial Visionary +userPassword: Password1 +uid: SudanJ +givenName: Jerrilee +mail: SudanJ@7a081f2b6b9244909f5b879d315b7d98.bitwarden.com +carLicense: J371AJ +departmentNumber: 1853 +employeeType: Employee +homePhone: +1 510 215-5510 +initials: J. S. +mobile: +1 510 276-3497 +pager: +1 510 353-7583 +roomNumber: 9785 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Revkah Bawek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Revkah Bawek +sn: Bawek +description: This is Revkah Bawek's description +facsimileTelephoneNumber: +1 415 705-7911 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 698-5207 +title: Master Janitorial Manager +userPassword: Password1 +uid: BawekR +givenName: Revkah +mail: BawekR@39188148fca245a6a6c8dafa540618a3.bitwarden.com +carLicense: WNBVI6 +departmentNumber: 7185 +employeeType: Employee +homePhone: +1 415 152-4410 +initials: R. B. +mobile: +1 415 199-8941 +pager: +1 415 347-8271 +roomNumber: 8455 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tian Dundin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tian Dundin +sn: Dundin +description: This is Tian Dundin's description +facsimileTelephoneNumber: +1 818 226-4777 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 745-2441 +title: Master Management Stooge +userPassword: Password1 +uid: DundinT +givenName: Tian +mail: DundinT@40c277345d80491f9b505a1f852464d6.bitwarden.com +carLicense: UGH5VT +departmentNumber: 5445 +employeeType: Employee +homePhone: +1 818 686-1711 +initials: T. D. +mobile: +1 818 765-2363 +pager: +1 818 831-7233 +roomNumber: 9082 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Aiden Dido,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aiden Dido +sn: Dido +description: This is Aiden Dido's description +facsimileTelephoneNumber: +1 818 538-4787 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 818 480-6246 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: DidoA +givenName: Aiden +mail: DidoA@6108e9c33f3243228025c7adcbd2900a.bitwarden.com +carLicense: IYLVSH +departmentNumber: 9467 +employeeType: Normal +homePhone: +1 818 605-8353 +initials: A. D. +mobile: +1 818 510-4351 +pager: +1 818 508-6416 +roomNumber: 9249 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pit Yancey,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pit Yancey +sn: Yancey +description: This is Pit Yancey's description +facsimileTelephoneNumber: +1 408 358-3017 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 408 159-5867 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: YanceyP +givenName: Pit +mail: YanceyP@62ebc0cac09c4b59836fa31868a1365d.bitwarden.com +carLicense: 6O2I24 +departmentNumber: 6515 +employeeType: Employee +homePhone: +1 408 876-1751 +initials: P. Y. +mobile: +1 408 488-7839 +pager: +1 408 809-3721 +roomNumber: 9270 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherie Fitzsimmons +sn: Fitzsimmons +description: This is Sherie Fitzsimmons's description +facsimileTelephoneNumber: +1 804 484-4044 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 221-5338 +title: Associate Product Testing Punk +userPassword: Password1 +uid: FitzsimS +givenName: Sherie +mail: FitzsimS@6ff512afd6074ffb8be89092e99d3615.bitwarden.com +carLicense: AQIHLC +departmentNumber: 5792 +employeeType: Contract +homePhone: +1 804 452-1275 +initials: S. F. +mobile: +1 804 562-9108 +pager: +1 804 259-8048 +roomNumber: 9707 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aartjan Robson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aartjan Robson +sn: Robson +description: This is Aartjan Robson's description +facsimileTelephoneNumber: +1 804 219-3132 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 648-5740 +title: Master Product Testing Punk +userPassword: Password1 +uid: RobsonA +givenName: Aartjan +mail: RobsonA@30c0b9dc05334a06863e7dfa5130cda4.bitwarden.com +carLicense: K6698G +departmentNumber: 2343 +employeeType: Normal +homePhone: +1 804 522-2158 +initials: A. R. +mobile: +1 804 179-3604 +pager: +1 804 708-9010 +roomNumber: 9465 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Winona Latreille,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winona Latreille +sn: Latreille +description: This is Winona Latreille's description +facsimileTelephoneNumber: +1 408 476-6444 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 802-6263 +title: Associate Product Testing Developer +userPassword: Password1 +uid: LatreilW +givenName: Winona +mail: LatreilW@39fe1cbe98f04968ad60ef7f60dbbcf4.bitwarden.com +carLicense: DN620O +departmentNumber: 9250 +employeeType: Normal +homePhone: +1 408 249-2299 +initials: W. L. +mobile: +1 408 195-1867 +pager: +1 408 893-3083 +roomNumber: 9280 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dis Schmeing,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dis Schmeing +sn: Schmeing +description: This is Dis Schmeing's description +facsimileTelephoneNumber: +1 804 340-5278 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 113-2785 +title: Junior Peons Engineer +userPassword: Password1 +uid: SchmeinD +givenName: Dis +mail: SchmeinD@c40fad5c5c0d4ba88c3868a6e4fb152e.bitwarden.com +carLicense: W771B0 +departmentNumber: 2251 +employeeType: Employee +homePhone: +1 804 978-6222 +initials: D. S. +mobile: +1 804 398-3154 +pager: +1 804 178-5442 +roomNumber: 8898 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Krystalle McHale,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krystalle McHale +sn: McHale +description: This is Krystalle McHale's description +facsimileTelephoneNumber: +1 213 174-1257 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 213 271-5193 +title: Chief Human Resources Stooge +userPassword: Password1 +uid: McHaleK +givenName: Krystalle +mail: McHaleK@628c910870424ef4b90e6f84f78914eb.bitwarden.com +carLicense: 3XX99V +departmentNumber: 7805 +employeeType: Employee +homePhone: +1 213 676-7072 +initials: K. M. +mobile: +1 213 689-1864 +pager: +1 213 434-9151 +roomNumber: 9954 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jastinder Zollman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jastinder Zollman +sn: Zollman +description: This is Jastinder Zollman's description +facsimileTelephoneNumber: +1 804 290-5604 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 610-8344 +title: Supreme Peons Stooge +userPassword: Password1 +uid: ZollmanJ +givenName: Jastinder +mail: ZollmanJ@4f46f81f678a4f9fb404fab87f91cd92.bitwarden.com +carLicense: V677MT +departmentNumber: 4523 +employeeType: Normal +homePhone: +1 804 535-7740 +initials: J. Z. +mobile: +1 804 280-6631 +pager: +1 804 450-6120 +roomNumber: 9444 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheila Kiebel +sn: Kiebel +description: This is Sheila Kiebel's description +facsimileTelephoneNumber: +1 804 506-9996 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 352-6213 +title: Supreme Product Testing Assistant +userPassword: Password1 +uid: KiebelS +givenName: Sheila +mail: KiebelS@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com +carLicense: UJOO10 +departmentNumber: 2395 +employeeType: Contract +homePhone: +1 804 599-3685 +initials: S. K. +mobile: +1 804 991-9770 +pager: +1 804 443-5221 +roomNumber: 8661 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Conny Blackburn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Conny Blackburn +sn: Blackburn +description: This is Conny Blackburn's description +facsimileTelephoneNumber: +1 804 189-1570 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 804 830-4212 +title: Supreme Management Dictator +userPassword: Password1 +uid: BlackbuC +givenName: Conny +mail: BlackbuC@749481ce636a428dadfe3b049bd9815e.bitwarden.com +carLicense: 0B27QA +departmentNumber: 7351 +employeeType: Normal +homePhone: +1 804 206-5867 +initials: C. B. +mobile: +1 804 458-6905 +pager: +1 804 395-6840 +roomNumber: 9572 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yodha Bulifant +sn: Bulifant +description: This is Yodha Bulifant's description +facsimileTelephoneNumber: +1 206 143-7053 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 396-4295 +title: Associate Janitorial Architect +userPassword: Password1 +uid: BulifanY +givenName: Yodha +mail: BulifanY@89baa82bca2c415183512b5bc8d6890b.bitwarden.com +carLicense: 9DKLSB +departmentNumber: 8475 +employeeType: Employee +homePhone: +1 206 147-8413 +initials: Y. B. +mobile: +1 206 555-2790 +pager: +1 206 531-7201 +roomNumber: 8026 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lian Tripps,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lian Tripps +sn: Tripps +description: This is Lian Tripps's description +facsimileTelephoneNumber: +1 213 846-9242 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 213 656-5113 +title: Chief Administrative Czar +userPassword: Password1 +uid: TrippsL +givenName: Lian +mail: TrippsL@c8e189f083634334a1fd0d200a0183f2.bitwarden.com +carLicense: YVIHV0 +departmentNumber: 6504 +employeeType: Employee +homePhone: +1 213 722-8745 +initials: L. T. +mobile: +1 213 102-8755 +pager: +1 213 301-5640 +roomNumber: 8267 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karlyn Tiseo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlyn Tiseo +sn: Tiseo +description: This is Karlyn Tiseo's description +facsimileTelephoneNumber: +1 213 603-2117 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 704-7721 +title: Master Management Assistant +userPassword: Password1 +uid: TiseoK +givenName: Karlyn +mail: TiseoK@d22cee8cdc104128b64ec5a3dc27a2cd.bitwarden.com +carLicense: W2WY9G +departmentNumber: 3809 +employeeType: Contract +homePhone: +1 213 583-6606 +initials: K. T. +mobile: +1 213 640-8371 +pager: +1 213 449-7483 +roomNumber: 8756 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Josselyn Sugarman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Josselyn Sugarman +sn: Sugarman +description: This is Josselyn Sugarman's description +facsimileTelephoneNumber: +1 408 771-4620 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 890-4807 +title: Chief Peons Technician +userPassword: Password1 +uid: SugarmaJ +givenName: Josselyn +mail: SugarmaJ@3936c42808104e269d45d901a49adbd5.bitwarden.com +carLicense: 0QEOHF +departmentNumber: 2782 +employeeType: Employee +homePhone: +1 408 201-6232 +initials: J. S. +mobile: +1 408 292-5562 +pager: +1 408 577-6762 +roomNumber: 8605 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ashlie Michailov,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashlie Michailov +sn: Michailov +description: This is Ashlie Michailov's description +facsimileTelephoneNumber: +1 408 436-5876 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 408 378-1836 +title: Chief Peons Consultant +userPassword: Password1 +uid: MichailA +givenName: Ashlie +mail: MichailA@11c4ba17ab574f3bb46442f426b1a2c7.bitwarden.com +carLicense: TY3TII +departmentNumber: 8385 +employeeType: Normal +homePhone: +1 408 819-6628 +initials: A. M. +mobile: +1 408 142-3939 +pager: +1 408 681-1533 +roomNumber: 8948 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mayasandra Elliot +sn: Elliot +description: This is Mayasandra Elliot's description +facsimileTelephoneNumber: +1 510 447-2998 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 510 319-9996 +title: Master Product Development Developer +userPassword: Password1 +uid: ElliotM +givenName: Mayasandra +mail: ElliotM@2cad753cd401488c83abddc338324f15.bitwarden.com +carLicense: BFJ9U8 +departmentNumber: 5097 +employeeType: Employee +homePhone: +1 510 270-6956 +initials: M. E. +mobile: +1 510 188-7084 +pager: +1 510 441-6490 +roomNumber: 9279 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cindie McNeill,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cindie McNeill +sn: McNeill +description: This is Cindie McNeill's description +facsimileTelephoneNumber: +1 415 794-7262 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 123-4695 +title: Chief Administrative Fellow +userPassword: Password1 +uid: McNeillC +givenName: Cindie +mail: McNeillC@8555fc7f07904922939eba5ad297ecac.bitwarden.com +carLicense: 1IQTWO +departmentNumber: 8310 +employeeType: Employee +homePhone: +1 415 387-7992 +initials: C. M. +mobile: +1 415 901-1686 +pager: +1 415 229-1102 +roomNumber: 9240 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Izak Katibian,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Izak Katibian +sn: Katibian +description: This is Izak Katibian's description +facsimileTelephoneNumber: +1 206 633-1450 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 429-6694 +title: Supreme Management Pinhead +userPassword: Password1 +uid: KatibiaI +givenName: Izak +mail: KatibiaI@50a4724a631e41a7bce3841ce6d93bf4.bitwarden.com +carLicense: H9EABB +departmentNumber: 2345 +employeeType: Contract +homePhone: +1 206 257-6074 +initials: I. K. +mobile: +1 206 339-8640 +pager: +1 206 702-6805 +roomNumber: 9943 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nanci Fiteny,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nanci Fiteny +sn: Fiteny +description: This is Nanci Fiteny's description +facsimileTelephoneNumber: +1 408 219-5409 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 408 822-9128 +title: Junior Management Vice President +userPassword: Password1 +uid: FitenyN +givenName: Nanci +mail: FitenyN@d5a0d21c338246c5b1eb6d57f0e070b8.bitwarden.com +carLicense: 4KSO95 +departmentNumber: 5256 +employeeType: Contract +homePhone: +1 408 204-1259 +initials: N. F. +mobile: +1 408 734-4832 +pager: +1 408 549-7408 +roomNumber: 9661 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marijke Tiseo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marijke Tiseo +sn: Tiseo +description: This is Marijke Tiseo's description +facsimileTelephoneNumber: +1 415 990-6612 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 415 762-9871 +title: Junior Management Madonna +userPassword: Password1 +uid: TiseoM +givenName: Marijke +mail: TiseoM@5043368b73ac4d89bc4fa2d5f818cf74.bitwarden.com +carLicense: WYFLTA +departmentNumber: 1937 +employeeType: Contract +homePhone: +1 415 461-7206 +initials: M. T. +mobile: +1 415 841-1557 +pager: +1 415 675-2921 +roomNumber: 8340 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Akshay Herlihy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akshay Herlihy +sn: Herlihy +description: This is Akshay Herlihy's description +facsimileTelephoneNumber: +1 804 310-8654 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 804 410-1153 +title: Supreme Peons Evangelist +userPassword: Password1 +uid: HerlihyA +givenName: Akshay +mail: HerlihyA@38fa64796bc14d52bff67c18f15afb33.bitwarden.com +carLicense: WTSLGE +departmentNumber: 4373 +employeeType: Contract +homePhone: +1 804 468-4927 +initials: A. H. +mobile: +1 804 827-3281 +pager: +1 804 976-2744 +roomNumber: 8262 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Thomson Dasch,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomson Dasch +sn: Dasch +description: This is Thomson Dasch's description +facsimileTelephoneNumber: +1 818 630-1539 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 818 892-3686 +title: Junior Product Development Sales Rep +userPassword: Password1 +uid: DaschT +givenName: Thomson +mail: DaschT@08a7e5e74be04f44a364a958dd103e80.bitwarden.com +carLicense: X7GADX +departmentNumber: 1045 +employeeType: Normal +homePhone: +1 818 903-4795 +initials: T. D. +mobile: +1 818 853-4192 +pager: +1 818 469-6214 +roomNumber: 9575 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Min StMartin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Min StMartin +sn: StMartin +description: This is Min StMartin's description +facsimileTelephoneNumber: +1 213 542-8274 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 110-3793 +title: Chief Product Development Fellow +userPassword: Password1 +uid: StMartiM +givenName: Min +mail: StMartiM@11066945925d4920b7876e8ee0d7adc4.bitwarden.com +carLicense: N710ME +departmentNumber: 8944 +employeeType: Contract +homePhone: +1 213 552-1156 +initials: M. S. +mobile: +1 213 262-3612 +pager: +1 213 313-3583 +roomNumber: 9079 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maybelle Karol,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maybelle Karol +sn: Karol +description: This is Maybelle Karol's description +facsimileTelephoneNumber: +1 804 249-8888 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 494-8508 +title: Supreme Administrative Artist +userPassword: Password1 +uid: KarolM +givenName: Maybelle +mail: KarolM@5039da0210e54d01a6092745e22d3750.bitwarden.com +carLicense: VSJCOG +departmentNumber: 4049 +employeeType: Normal +homePhone: +1 804 221-1640 +initials: M. K. +mobile: +1 804 438-1762 +pager: +1 804 409-6576 +roomNumber: 8401 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cindy Ferner,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cindy Ferner +sn: Ferner +description: This is Cindy Ferner's description +facsimileTelephoneNumber: +1 804 752-1366 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 804 867-8827 +title: Junior Janitorial Technician +userPassword: Password1 +uid: FernerC +givenName: Cindy +mail: FernerC@b156fe83e1034ca0b9adcd6fbf561490.bitwarden.com +carLicense: UGFCJK +departmentNumber: 8758 +employeeType: Contract +homePhone: +1 804 493-2793 +initials: C. F. +mobile: +1 804 468-2019 +pager: +1 804 465-3098 +roomNumber: 8888 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nerti Buskens,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nerti Buskens +sn: Buskens +description: This is Nerti Buskens's description +facsimileTelephoneNumber: +1 818 489-6410 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 428-5575 +title: Junior Administrative Dictator +userPassword: Password1 +uid: BuskensN +givenName: Nerti +mail: BuskensN@65ad77a0a7134c499e3c0bd4fd84a125.bitwarden.com +carLicense: 89VUIP +departmentNumber: 7738 +employeeType: Employee +homePhone: +1 818 724-3772 +initials: N. B. +mobile: +1 818 992-8362 +pager: +1 818 935-8260 +roomNumber: 8640 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Selvaraj Merrick,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selvaraj Merrick +sn: Merrick +description: This is Selvaraj Merrick's description +facsimileTelephoneNumber: +1 818 942-6892 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 572-6825 +title: Master Management Stooge +userPassword: Password1 +uid: MerrickS +givenName: Selvaraj +mail: MerrickS@b6599d8f9a8449eaa08086c058ccaba9.bitwarden.com +carLicense: LCN4TM +departmentNumber: 8535 +employeeType: Contract +homePhone: +1 818 439-4297 +initials: S. M. +mobile: +1 818 552-6772 +pager: +1 818 541-5225 +roomNumber: 8166 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Julien Simmons,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julien Simmons +sn: Simmons +description: This is Julien Simmons's description +facsimileTelephoneNumber: +1 510 451-7080 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 510 401-9909 +title: Chief Human Resources Warrior +userPassword: Password1 +uid: SimmonsJ +givenName: Julien +mail: SimmonsJ@c8572d1903484794a6cbdbc65d71c32b.bitwarden.com +carLicense: 6CG6OC +departmentNumber: 4128 +employeeType: Contract +homePhone: +1 510 930-5623 +initials: J. S. +mobile: +1 510 940-5922 +pager: +1 510 911-4329 +roomNumber: 9160 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Conchita Meres,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Conchita Meres +sn: Meres +description: This is Conchita Meres's description +facsimileTelephoneNumber: +1 804 117-1595 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 870-3050 +title: Chief Peons Fellow +userPassword: Password1 +uid: MeresC +givenName: Conchita +mail: MeresC@368b49862ec74ac1974a058d04889202.bitwarden.com +carLicense: B26GG8 +departmentNumber: 2364 +employeeType: Employee +homePhone: +1 804 189-1695 +initials: C. M. +mobile: +1 804 106-5213 +pager: +1 804 352-1453 +roomNumber: 8216 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hedi Herling,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hedi Herling +sn: Herling +description: This is Hedi Herling's description +facsimileTelephoneNumber: +1 510 953-8386 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 610-4713 +title: Associate Peons Madonna +userPassword: Password1 +uid: HerlingH +givenName: Hedi +mail: HerlingH@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com +carLicense: F4Q14G +departmentNumber: 8724 +employeeType: Contract +homePhone: +1 510 618-5874 +initials: H. H. +mobile: +1 510 792-7516 +pager: +1 510 967-5706 +roomNumber: 9634 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Roobbie Bizga,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roobbie Bizga +sn: Bizga +description: This is Roobbie Bizga's description +facsimileTelephoneNumber: +1 510 807-1216 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 510 334-4844 +title: Associate Payroll Punk +userPassword: Password1 +uid: BizgaR +givenName: Roobbie +mail: BizgaR@2578fec05f3c4caebb2ed35da0948626.bitwarden.com +carLicense: 8KMW7M +departmentNumber: 1715 +employeeType: Contract +homePhone: +1 510 611-4598 +initials: R. B. +mobile: +1 510 523-8004 +pager: +1 510 947-2174 +roomNumber: 8939 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Izak Hatten,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Izak Hatten +sn: Hatten +description: This is Izak Hatten's description +facsimileTelephoneNumber: +1 206 590-3278 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 706-4836 +title: Supreme Payroll Developer +userPassword: Password1 +uid: HattenI +givenName: Izak +mail: HattenI@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com +carLicense: H7RRU3 +departmentNumber: 9733 +employeeType: Contract +homePhone: +1 206 930-6453 +initials: I. H. +mobile: +1 206 497-2221 +pager: +1 206 662-7005 +roomNumber: 9041 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Parks McInnis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parks McInnis +sn: McInnis +description: This is Parks McInnis's description +facsimileTelephoneNumber: +1 213 847-6424 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 213 332-9192 +title: Associate Product Testing Madonna +userPassword: Password1 +uid: McInnisP +givenName: Parks +mail: McInnisP@a2ea301b88434726b194e4c9303a1849.bitwarden.com +carLicense: 4I9PIM +departmentNumber: 7694 +employeeType: Employee +homePhone: +1 213 829-4585 +initials: P. M. +mobile: +1 213 947-7366 +pager: +1 213 940-2458 +roomNumber: 9192 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulus Schlachter +sn: Schlachter +description: This is Paulus Schlachter's description +facsimileTelephoneNumber: +1 213 927-1618 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 246-4819 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: SchlachP +givenName: Paulus +mail: SchlachP@01593e28a0c9482fb64a5aadc27c2178.bitwarden.com +carLicense: 2QJNOI +departmentNumber: 8566 +employeeType: Employee +homePhone: +1 213 856-5269 +initials: P. S. +mobile: +1 213 362-8807 +pager: +1 213 127-1595 +roomNumber: 9787 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gurmeet Aravamudhan +sn: Aravamudhan +description: This is Gurmeet Aravamudhan's description +facsimileTelephoneNumber: +1 415 430-1321 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 919-2188 +title: Supreme Product Testing Figurehead +userPassword: Password1 +uid: AravamuG +givenName: Gurmeet +mail: AravamuG@282e36163b2b4782beba5acb316b5795.bitwarden.com +carLicense: 2A5K14 +departmentNumber: 8395 +employeeType: Normal +homePhone: +1 415 468-7004 +initials: G. A. +mobile: +1 415 745-9335 +pager: +1 415 521-6268 +roomNumber: 8504 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lissy Otsuka +sn: Otsuka +description: This is Lissy Otsuka's description +facsimileTelephoneNumber: +1 804 616-4303 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 803-2132 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: OtsukaL +givenName: Lissy +mail: OtsukaL@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com +carLicense: YHSBJO +departmentNumber: 7739 +employeeType: Normal +homePhone: +1 804 350-8563 +initials: L. O. +mobile: +1 804 506-5209 +pager: +1 804 256-2058 +roomNumber: 8756 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lanae Mullen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lanae Mullen +sn: Mullen +description: This is Lanae Mullen's description +facsimileTelephoneNumber: +1 818 678-5552 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 138-8685 +title: Junior Administrative Technician +userPassword: Password1 +uid: MullenL +givenName: Lanae +mail: MullenL@999816b5a97d4ddb86dcefd199a0b0ab.bitwarden.com +carLicense: C3STW0 +departmentNumber: 2281 +employeeType: Employee +homePhone: +1 818 404-2866 +initials: L. M. +mobile: +1 818 554-4439 +pager: +1 818 498-1406 +roomNumber: 9072 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Barby Shiue,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barby Shiue +sn: Shiue +description: This is Barby Shiue's description +facsimileTelephoneNumber: +1 415 304-7863 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 415 550-6074 +title: Associate Product Testing Warrior +userPassword: Password1 +uid: ShiueB +givenName: Barby +mail: ShiueB@38977b5a0c5e49539800366c94e12729.bitwarden.com +carLicense: TQTHL2 +departmentNumber: 4789 +employeeType: Contract +homePhone: +1 415 518-4224 +initials: B. S. +mobile: +1 415 877-9475 +pager: +1 415 258-1717 +roomNumber: 9917 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malissa LecuyerDemers +sn: LecuyerDemers +description: This is Malissa LecuyerDemers's description +facsimileTelephoneNumber: +1 415 863-6071 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 403-9278 +title: Junior Payroll Consultant +userPassword: Password1 +uid: LecuyerM +givenName: Malissa +mail: LecuyerM@975d3d03a2c146c2aaca8d2698d4ca32.bitwarden.com +carLicense: NT78SJ +departmentNumber: 1700 +employeeType: Contract +homePhone: +1 415 819-1448 +initials: M. L. +mobile: +1 415 663-9839 +pager: +1 415 991-5763 +roomNumber: 9267 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rizwan Guindi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rizwan Guindi +sn: Guindi +description: This is Rizwan Guindi's description +facsimileTelephoneNumber: +1 408 895-4439 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 959-9631 +title: Junior Administrative President +userPassword: Password1 +uid: GuindiR +givenName: Rizwan +mail: GuindiR@35c77ed09ca846d78581509ce832a819.bitwarden.com +carLicense: YHHPCL +departmentNumber: 7697 +employeeType: Employee +homePhone: +1 408 475-5916 +initials: R. G. +mobile: +1 408 422-1156 +pager: +1 408 428-9480 +roomNumber: 8629 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Anetta Wray,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anetta Wray +sn: Wray +description: This is Anetta Wray's description +facsimileTelephoneNumber: +1 206 279-6012 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 837-5639 +title: Associate Product Development Visionary +userPassword: Password1 +uid: WrayA +givenName: Anetta +mail: WrayA@95581eb6a8bb49808363d11bfe34de80.bitwarden.com +carLicense: MI0MUH +departmentNumber: 9909 +employeeType: Normal +homePhone: +1 206 580-5757 +initials: A. W. +mobile: +1 206 122-5921 +pager: +1 206 351-3492 +roomNumber: 9632 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mougy Mo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mougy Mo +sn: Mo +description: This is Mougy Mo's description +facsimileTelephoneNumber: +1 415 311-7611 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 725-5862 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: MoM +givenName: Mougy +mail: MoM@2b9fd035a3c74d0a924ba78f328d5988.bitwarden.com +carLicense: V75JQ7 +departmentNumber: 1269 +employeeType: Contract +homePhone: +1 415 970-6735 +initials: M. M. +mobile: +1 415 730-1840 +pager: +1 415 667-6918 +roomNumber: 9155 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Darline Alfred,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darline Alfred +sn: Alfred +description: This is Darline Alfred's description +facsimileTelephoneNumber: +1 510 945-4040 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 510 604-2723 +title: Supreme Management Evangelist +userPassword: Password1 +uid: AlfredD +givenName: Darline +mail: AlfredD@e039461a53e74fffbd5670db4243d8b0.bitwarden.com +carLicense: 1O3S39 +departmentNumber: 3169 +employeeType: Employee +homePhone: +1 510 163-7745 +initials: D. A. +mobile: +1 510 597-4316 +pager: +1 510 525-4917 +roomNumber: 8986 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kayla Boscio,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kayla Boscio +sn: Boscio +description: This is Kayla Boscio's description +facsimileTelephoneNumber: +1 415 439-2049 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 415 728-6042 +title: Supreme Product Testing Developer +userPassword: Password1 +uid: BoscioK +givenName: Kayla +mail: BoscioK@bf35e2dd921644e489469fd3b907aac9.bitwarden.com +carLicense: V9HTLC +departmentNumber: 6652 +employeeType: Contract +homePhone: +1 415 255-7594 +initials: K. B. +mobile: +1 415 550-3113 +pager: +1 415 670-3362 +roomNumber: 8963 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Keys Tavares,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Keys Tavares +sn: Tavares +description: This is Keys Tavares's description +facsimileTelephoneNumber: +1 818 506-1280 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 818 490-3844 +title: Master Product Development Consultant +userPassword: Password1 +uid: TavaresK +givenName: Keys +mail: TavaresK@4b233d8ae0e140eb95be281f6d1b2b93.bitwarden.com +carLicense: Q7TYMJ +departmentNumber: 1168 +employeeType: Contract +homePhone: +1 818 260-8563 +initials: K. T. +mobile: +1 818 862-5768 +pager: +1 818 473-6706 +roomNumber: 8817 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yutaka Branham,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yutaka Branham +sn: Branham +description: This is Yutaka Branham's description +facsimileTelephoneNumber: +1 510 359-1782 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 578-9184 +title: Chief Peons Evangelist +userPassword: Password1 +uid: BranhamY +givenName: Yutaka +mail: BranhamY@c63acc13c8a740e8a43edd8fb66a56ca.bitwarden.com +carLicense: AW0MO2 +departmentNumber: 8807 +employeeType: Employee +homePhone: +1 510 439-6399 +initials: Y. B. +mobile: +1 510 622-7554 +pager: +1 510 449-4105 +roomNumber: 9816 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elinore Spallin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elinore Spallin +sn: Spallin +description: This is Elinore Spallin's description +facsimileTelephoneNumber: +1 206 124-7391 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 638-7074 +title: Junior Peons Janitor +userPassword: Password1 +uid: SpallinE +givenName: Elinore +mail: SpallinE@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com +carLicense: XGFYPN +departmentNumber: 5755 +employeeType: Contract +homePhone: +1 206 844-5344 +initials: E. S. +mobile: +1 206 795-6898 +pager: +1 206 450-7781 +roomNumber: 9767 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Paige McAleer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paige McAleer +sn: McAleer +description: This is Paige McAleer's description +facsimileTelephoneNumber: +1 415 625-8007 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 286-5608 +title: Chief Peons Figurehead +userPassword: Password1 +uid: McAleerP +givenName: Paige +mail: McAleerP@f94cfa5e44764457a8389aa50bed2570.bitwarden.com +carLicense: LQOL1U +departmentNumber: 5292 +employeeType: Employee +homePhone: +1 415 570-9882 +initials: P. M. +mobile: +1 415 529-5026 +pager: +1 415 864-3383 +roomNumber: 9463 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Syyed Cantlie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Syyed Cantlie +sn: Cantlie +description: This is Syyed Cantlie's description +facsimileTelephoneNumber: +1 510 689-2907 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 510 435-8671 +title: Chief Peons Punk +userPassword: Password1 +uid: CantlieS +givenName: Syyed +mail: CantlieS@39b915a2bd6147869df44af964c00d61.bitwarden.com +carLicense: SXG5WD +departmentNumber: 7761 +employeeType: Employee +homePhone: +1 510 235-9724 +initials: S. C. +mobile: +1 510 262-9961 +pager: +1 510 876-6601 +roomNumber: 8713 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Morley Trefts,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morley Trefts +sn: Trefts +description: This is Morley Trefts's description +facsimileTelephoneNumber: +1 415 925-1802 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 312-5715 +title: Supreme Administrative President +userPassword: Password1 +uid: TreftsM +givenName: Morley +mail: TreftsM@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com +carLicense: VEJ50S +departmentNumber: 5219 +employeeType: Normal +homePhone: +1 415 746-5977 +initials: M. T. +mobile: +1 415 650-1997 +pager: +1 415 246-5952 +roomNumber: 9522 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daffi Garguilo +sn: Garguilo +description: This is Daffi Garguilo's description +facsimileTelephoneNumber: +1 804 245-4375 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 406-4639 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: GarguilD +givenName: Daffi +mail: GarguilD@e530486f70d4429085f9bb8431928632.bitwarden.com +carLicense: LN6R6V +departmentNumber: 3560 +employeeType: Normal +homePhone: +1 804 991-6780 +initials: D. G. +mobile: +1 804 284-8613 +pager: +1 804 427-1947 +roomNumber: 8160 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronna Bleuer +sn: Bleuer +description: This is Ronna Bleuer's description +facsimileTelephoneNumber: +1 206 971-6728 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 835-9606 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: BleuerR +givenName: Ronna +mail: BleuerR@6907d207239f489294281cbdab840fe4.bitwarden.com +carLicense: 7C6KJ3 +departmentNumber: 7730 +employeeType: Normal +homePhone: +1 206 885-3521 +initials: R. B. +mobile: +1 206 304-8801 +pager: +1 206 462-7928 +roomNumber: 9129 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kania Bnrecad,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kania Bnrecad +sn: Bnrecad +description: This is Kania Bnrecad's description +facsimileTelephoneNumber: +1 213 986-9939 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 788-3081 +title: Chief Administrative Warrior +userPassword: Password1 +uid: BnrecadK +givenName: Kania +mail: BnrecadK@c8fa77eb4aa0482bb77de35245880a29.bitwarden.com +carLicense: LS67U0 +departmentNumber: 5490 +employeeType: Contract +homePhone: +1 213 191-6387 +initials: K. B. +mobile: +1 213 538-5647 +pager: +1 213 536-5326 +roomNumber: 8319 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tammi Zukosky,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tammi Zukosky +sn: Zukosky +description: This is Tammi Zukosky's description +facsimileTelephoneNumber: +1 510 658-3992 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 340-5212 +title: Junior Management Grunt +userPassword: Password1 +uid: ZukoskyT +givenName: Tammi +mail: ZukoskyT@766a422a35f14846b4f938fc382952b4.bitwarden.com +carLicense: 8150NH +departmentNumber: 2187 +employeeType: Contract +homePhone: +1 510 371-4860 +initials: T. Z. +mobile: +1 510 567-6139 +pager: +1 510 482-3248 +roomNumber: 8523 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chris Wikkerink +sn: Wikkerink +description: This is Chris Wikkerink's description +facsimileTelephoneNumber: +1 206 198-3270 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 525-7673 +title: Chief Janitorial Artist +userPassword: Password1 +uid: WikkeriC +givenName: Chris +mail: WikkeriC@bed8fc52dc684727b827c4af9874c6ae.bitwarden.com +carLicense: DSL49K +departmentNumber: 7624 +employeeType: Normal +homePhone: +1 206 143-6976 +initials: C. W. +mobile: +1 206 227-8270 +pager: +1 206 323-9756 +roomNumber: 9506 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheelah Beriault +sn: Beriault +description: This is Sheelah Beriault's description +facsimileTelephoneNumber: +1 206 322-7881 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 453-6868 +title: Master Human Resources Architect +userPassword: Password1 +uid: BeriaulS +givenName: Sheelah +mail: BeriaulS@975433a41ce24ba59e1df5051b6724e9.bitwarden.com +carLicense: 905HNH +departmentNumber: 9008 +employeeType: Normal +homePhone: +1 206 862-1996 +initials: S. B. +mobile: +1 206 839-1817 +pager: +1 206 164-3873 +roomNumber: 8628 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Leil Halbedel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leil Halbedel +sn: Halbedel +description: This is Leil Halbedel's description +facsimileTelephoneNumber: +1 510 975-3616 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 894-1828 +title: Chief Janitorial Developer +userPassword: Password1 +uid: HalbedeL +givenName: Leil +mail: HalbedeL@52a128393c654a128a33fd5f6a1b0b66.bitwarden.com +carLicense: VIX7L0 +departmentNumber: 3052 +employeeType: Normal +homePhone: +1 510 348-6358 +initials: L. H. +mobile: +1 510 178-8597 +pager: +1 510 268-4583 +roomNumber: 8736 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marni Diduch,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marni Diduch +sn: Diduch +description: This is Marni Diduch's description +facsimileTelephoneNumber: +1 415 803-3788 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 415 435-9339 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: DiduchM +givenName: Marni +mail: DiduchM@effb1d073c5447c58f6bf516e842aec5.bitwarden.com +carLicense: 5P5OJ6 +departmentNumber: 6231 +employeeType: Contract +homePhone: +1 415 452-6878 +initials: M. D. +mobile: +1 415 178-3015 +pager: +1 415 880-4552 +roomNumber: 9134 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Myriam Desrochers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myriam Desrochers +sn: Desrochers +description: This is Myriam Desrochers's description +facsimileTelephoneNumber: +1 510 755-9086 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 161-2343 +title: Junior Management Fellow +userPassword: Password1 +uid: DesrochM +givenName: Myriam +mail: DesrochM@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com +carLicense: D37MNM +departmentNumber: 9737 +employeeType: Contract +homePhone: +1 510 238-4031 +initials: M. D. +mobile: +1 510 102-5334 +pager: +1 510 324-9243 +roomNumber: 9326 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naohiko Fraley +sn: Fraley +description: This is Naohiko Fraley's description +facsimileTelephoneNumber: +1 818 533-3587 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 818 951-4300 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: FraleyN +givenName: Naohiko +mail: FraleyN@a4566d06f4404638b79325caaec894f9.bitwarden.com +carLicense: LO3QGK +departmentNumber: 4793 +employeeType: Normal +homePhone: +1 818 777-1230 +initials: N. F. +mobile: +1 818 536-1539 +pager: +1 818 512-1409 +roomNumber: 9978 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Court Karademir,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Court Karademir +sn: Karademir +description: This is Court Karademir's description +facsimileTelephoneNumber: +1 510 768-2655 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 510 260-4975 +title: Supreme Administrative Stooge +userPassword: Password1 +uid: KarademC +givenName: Court +mail: KarademC@952b2b73f82449c88d6a84f30520f482.bitwarden.com +carLicense: 6K4PYS +departmentNumber: 1753 +employeeType: Normal +homePhone: +1 510 579-9469 +initials: C. K. +mobile: +1 510 197-7607 +pager: +1 510 422-8383 +roomNumber: 8726 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jayendra Goba,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jayendra Goba +sn: Goba +description: This is Jayendra Goba's description +facsimileTelephoneNumber: +1 818 169-1682 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 407-9384 +title: Junior Product Testing Assistant +userPassword: Password1 +uid: GobaJ +givenName: Jayendra +mail: GobaJ@b3504db7a95a4f5d855c19ba41cc6dc9.bitwarden.com +carLicense: Q6UUT8 +departmentNumber: 8849 +employeeType: Employee +homePhone: +1 818 856-4826 +initials: J. G. +mobile: +1 818 745-4202 +pager: +1 818 787-7241 +roomNumber: 8108 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrin Nawaby +sn: Nawaby +description: This is Darrin Nawaby's description +facsimileTelephoneNumber: +1 213 767-2176 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 962-5971 +title: Junior Human Resources Punk +userPassword: Password1 +uid: NawabyD +givenName: Darrin +mail: NawabyD@b04066f723fa4eb2a82846786b428021.bitwarden.com +carLicense: 99B939 +departmentNumber: 8096 +employeeType: Normal +homePhone: +1 213 124-5006 +initials: D. N. +mobile: +1 213 539-2210 +pager: +1 213 221-9539 +roomNumber: 8844 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kathrerine Hackett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kathrerine Hackett +sn: Hackett +description: This is Kathrerine Hackett's description +facsimileTelephoneNumber: +1 510 689-8203 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 764-9890 +title: Supreme Management Technician +userPassword: Password1 +uid: HackettK +givenName: Kathrerine +mail: HackettK@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com +carLicense: 38GRB4 +departmentNumber: 7333 +employeeType: Employee +homePhone: +1 510 745-8613 +initials: K. H. +mobile: +1 510 259-6660 +pager: +1 510 215-2766 +roomNumber: 9186 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Akihiko Restrepo,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akihiko Restrepo +sn: Restrepo +description: This is Akihiko Restrepo's description +facsimileTelephoneNumber: +1 804 843-9997 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 804 660-5102 +title: Associate Peons Fellow +userPassword: Password1 +uid: RestrepA +givenName: Akihiko +mail: RestrepA@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com +carLicense: B2LXBN +departmentNumber: 9689 +employeeType: Normal +homePhone: +1 804 921-6034 +initials: A. R. +mobile: +1 804 388-1365 +pager: +1 804 430-9490 +roomNumber: 8600 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Andra Guindi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andra Guindi +sn: Guindi +description: This is Andra Guindi's description +facsimileTelephoneNumber: +1 213 621-2515 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 397-6124 +title: Master Peons Dictator +userPassword: Password1 +uid: GuindiA +givenName: Andra +mail: GuindiA@f908b5237c0945e690da76df38180ee9.bitwarden.com +carLicense: 6YWRBU +departmentNumber: 8587 +employeeType: Normal +homePhone: +1 213 795-6056 +initials: A. G. +mobile: +1 213 260-7662 +pager: +1 213 893-7717 +roomNumber: 8249 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Manda Bigley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manda Bigley +sn: Bigley +description: This is Manda Bigley's description +facsimileTelephoneNumber: +1 408 645-4518 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 573-1446 +title: Master Payroll Grunt +userPassword: Password1 +uid: BigleyM +givenName: Manda +mail: BigleyM@faecae55819d4155ab4f3e2d05dac422.bitwarden.com +carLicense: EX10UG +departmentNumber: 2116 +employeeType: Contract +homePhone: +1 408 595-4589 +initials: M. B. +mobile: +1 408 307-9683 +pager: +1 408 864-8904 +roomNumber: 8821 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Julienne Mevis,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julienne Mevis +sn: Mevis +description: This is Julienne Mevis's description +facsimileTelephoneNumber: +1 818 133-6093 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 818 560-7143 +title: Chief Human Resources Admin +userPassword: Password1 +uid: MevisJ +givenName: Julienne +mail: MevisJ@308ad8d2df924e23912f5ff5c482654c.bitwarden.com +carLicense: IG8COH +departmentNumber: 3533 +employeeType: Contract +homePhone: +1 818 959-7871 +initials: J. M. +mobile: +1 818 742-6525 +pager: +1 818 113-8394 +roomNumber: 8228 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lesya Willison,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lesya Willison +sn: Willison +description: This is Lesya Willison's description +facsimileTelephoneNumber: +1 213 248-2686 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 776-3475 +title: Junior Payroll Czar +userPassword: Password1 +uid: WillisoL +givenName: Lesya +mail: WillisoL@cf6dac232ed84a4abc7d8879d016deb3.bitwarden.com +carLicense: NNRSXH +departmentNumber: 4804 +employeeType: Contract +homePhone: +1 213 152-7044 +initials: L. W. +mobile: +1 213 410-1165 +pager: +1 213 416-5835 +roomNumber: 9545 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Giri Rupert,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giri Rupert +sn: Rupert +description: This is Giri Rupert's description +facsimileTelephoneNumber: +1 206 419-3028 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 941-4005 +title: Associate Janitorial Admin +userPassword: Password1 +uid: RupertG +givenName: Giri +mail: RupertG@bfb93d6aa3b84535ab7cdcdbe7575cd9.bitwarden.com +carLicense: NEGUY4 +departmentNumber: 5783 +employeeType: Employee +homePhone: +1 206 992-1665 +initials: G. R. +mobile: +1 206 673-1530 +pager: +1 206 140-8915 +roomNumber: 9169 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Oguz Livingston,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Oguz Livingston +sn: Livingston +description: This is Oguz Livingston's description +facsimileTelephoneNumber: +1 408 194-7968 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 408 167-2489 +title: Junior Product Development Admin +userPassword: Password1 +uid: LivingsO +givenName: Oguz +mail: LivingsO@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com +carLicense: U1ROK5 +departmentNumber: 8737 +employeeType: Employee +homePhone: +1 408 548-3716 +initials: O. L. +mobile: +1 408 795-7073 +pager: +1 408 534-4955 +roomNumber: 8341 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Celie Wesselow,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celie Wesselow +sn: Wesselow +description: This is Celie Wesselow's description +facsimileTelephoneNumber: +1 818 649-7879 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 818 508-6573 +title: Supreme Product Testing Sales Rep +userPassword: Password1 +uid: WesseloC +givenName: Celie +mail: WesseloC@158928e23d3842c2af859e8cbe0620c7.bitwarden.com +carLicense: R37L22 +departmentNumber: 4667 +employeeType: Employee +homePhone: +1 818 724-8926 +initials: C. W. +mobile: +1 818 302-5415 +pager: +1 818 240-6984 +roomNumber: 9015 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Adria Hagar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adria Hagar +sn: Hagar +description: This is Adria Hagar's description +facsimileTelephoneNumber: +1 206 851-5095 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 206 515-8573 +title: Chief Product Development Admin +userPassword: Password1 +uid: HagarA +givenName: Adria +mail: HagarA@47f0a77dd6c841c49ad5d7e57cf1fb47.bitwarden.com +carLicense: 59HUEQ +departmentNumber: 5633 +employeeType: Contract +homePhone: +1 206 137-2869 +initials: A. H. +mobile: +1 206 777-7128 +pager: +1 206 649-3180 +roomNumber: 8121 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zaihua Pamperin +sn: Pamperin +description: This is Zaihua Pamperin's description +facsimileTelephoneNumber: +1 804 242-3551 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 804 624-6257 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: PamperiZ +givenName: Zaihua +mail: PamperiZ@65523206681c4c868fd2bcf7f70e47c0.bitwarden.com +carLicense: RESBVU +departmentNumber: 2175 +employeeType: Employee +homePhone: +1 804 104-2020 +initials: Z. P. +mobile: +1 804 630-7867 +pager: +1 804 238-4538 +roomNumber: 8956 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Panch Timleck,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Panch Timleck +sn: Timleck +description: This is Panch Timleck's description +facsimileTelephoneNumber: +1 415 714-1820 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 415 754-6472 +title: Chief Administrative Figurehead +userPassword: Password1 +uid: TimleckP +givenName: Panch +mail: TimleckP@b3da6460e3c04b23b4e63052d3019a72.bitwarden.com +carLicense: 4H8B5J +departmentNumber: 6855 +employeeType: Employee +homePhone: +1 415 814-3366 +initials: P. T. +mobile: +1 415 887-9218 +pager: +1 415 581-2482 +roomNumber: 9363 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Caro Finley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caro Finley +sn: Finley +description: This is Caro Finley's description +facsimileTelephoneNumber: +1 818 963-9811 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 350-8801 +title: Junior Management Writer +userPassword: Password1 +uid: FinleyC +givenName: Caro +mail: FinleyC@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com +carLicense: 8GDP5J +departmentNumber: 9199 +employeeType: Normal +homePhone: +1 818 382-3896 +initials: C. F. +mobile: +1 818 237-3362 +pager: +1 818 152-2130 +roomNumber: 9859 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Romina Skedelsky +sn: Skedelsky +description: This is Romina Skedelsky's description +facsimileTelephoneNumber: +1 804 819-6916 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 224-9106 +title: Junior Janitorial Technician +userPassword: Password1 +uid: SkedelsR +givenName: Romina +mail: SkedelsR@31412703a38e4215b532681beb725718.bitwarden.com +carLicense: OOX4OJ +departmentNumber: 5233 +employeeType: Normal +homePhone: +1 804 419-4412 +initials: R. S. +mobile: +1 804 962-6890 +pager: +1 804 511-3309 +roomNumber: 9520 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fernand Hunsucker,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fernand Hunsucker +sn: Hunsucker +description: This is Fernand Hunsucker's description +facsimileTelephoneNumber: +1 818 828-5903 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 818 388-7292 +title: Junior Management Technician +userPassword: Password1 +uid: HunsuckF +givenName: Fernand +mail: HunsuckF@167b2e0d041045449bd6e5cdf535c0d5.bitwarden.com +carLicense: 133HGW +departmentNumber: 9338 +employeeType: Normal +homePhone: +1 818 337-1315 +initials: F. H. +mobile: +1 818 475-6252 +pager: +1 818 846-9267 +roomNumber: 9170 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maybelle Tognoni,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maybelle Tognoni +sn: Tognoni +description: This is Maybelle Tognoni's description +facsimileTelephoneNumber: +1 213 491-6908 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 213 705-4139 +title: Supreme Peons Engineer +userPassword: Password1 +uid: TognoniM +givenName: Maybelle +mail: TognoniM@63a11e75c405416bb483a040d9d4e6c0.bitwarden.com +carLicense: F9GU9H +departmentNumber: 1603 +employeeType: Contract +homePhone: +1 213 423-7358 +initials: M. T. +mobile: +1 213 404-6380 +pager: +1 213 400-3042 +roomNumber: 8237 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sunil Boggan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sunil Boggan +sn: Boggan +description: This is Sunil Boggan's description +facsimileTelephoneNumber: +1 206 551-4319 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 206 433-9270 +title: Associate Administrative Admin +userPassword: Password1 +uid: BogganS +givenName: Sunil +mail: BogganS@61ded890c4074ecd9ae572c6057905e0.bitwarden.com +carLicense: Q6O03Q +departmentNumber: 1271 +employeeType: Normal +homePhone: +1 206 450-8737 +initials: S. B. +mobile: +1 206 346-6918 +pager: +1 206 871-6492 +roomNumber: 9711 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Theressa McQueen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theressa McQueen +sn: McQueen +description: This is Theressa McQueen's description +facsimileTelephoneNumber: +1 206 512-9993 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 761-7338 +title: Supreme Peons Sales Rep +userPassword: Password1 +uid: McQueenT +givenName: Theressa +mail: McQueenT@376885ebe2864fefa119c1511a764692.bitwarden.com +carLicense: TCA0OC +departmentNumber: 3753 +employeeType: Normal +homePhone: +1 206 568-2489 +initials: T. M. +mobile: +1 206 942-2278 +pager: +1 206 623-7745 +roomNumber: 8031 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicol Leshowitz +sn: Leshowitz +description: This is Nicol Leshowitz's description +facsimileTelephoneNumber: +1 510 713-9360 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 510 123-2983 +title: Supreme Human Resources Artist +userPassword: Password1 +uid: LeshowiN +givenName: Nicol +mail: LeshowiN@edb80231cf144f5c88b3c412e4500658.bitwarden.com +carLicense: K6WSHC +departmentNumber: 4828 +employeeType: Employee +homePhone: +1 510 239-6663 +initials: N. L. +mobile: +1 510 865-8448 +pager: +1 510 443-2921 +roomNumber: 9510 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maala Lessard,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maala Lessard +sn: Lessard +description: This is Maala Lessard's description +facsimileTelephoneNumber: +1 818 973-3124 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 413-8098 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: LessardM +givenName: Maala +mail: LessardM@a7d617a2a825451dac842ca97ad12dd1.bitwarden.com +carLicense: 35MV8W +departmentNumber: 4258 +employeeType: Employee +homePhone: +1 818 611-4771 +initials: M. L. +mobile: +1 818 171-6994 +pager: +1 818 815-1289 +roomNumber: 8990 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jochem Vuncannon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jochem Vuncannon +sn: Vuncannon +description: This is Jochem Vuncannon's description +facsimileTelephoneNumber: +1 408 851-1057 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 868-8584 +title: Supreme Management Technician +userPassword: Password1 +uid: VuncannJ +givenName: Jochem +mail: VuncannJ@32972334779c4c7daa4ee6042db79c56.bitwarden.com +carLicense: YMD6MG +departmentNumber: 6814 +employeeType: Contract +homePhone: +1 408 151-5950 +initials: J. V. +mobile: +1 408 465-1673 +pager: +1 408 673-1668 +roomNumber: 8380 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moshe Vallentyne +sn: Vallentyne +description: This is Moshe Vallentyne's description +facsimileTelephoneNumber: +1 213 297-1403 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 856-1818 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: VallentM +givenName: Moshe +mail: VallentM@4f5bbd59c73347d8ba49af7225be0d9a.bitwarden.com +carLicense: D099NC +departmentNumber: 6708 +employeeType: Normal +homePhone: +1 213 420-4365 +initials: M. V. +mobile: +1 213 845-4156 +pager: +1 213 726-6197 +roomNumber: 9185 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perl PintoLobo +sn: PintoLobo +description: This is Perl PintoLobo's description +facsimileTelephoneNumber: +1 415 356-4985 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 736-4080 +title: Associate Janitorial Czar +userPassword: Password1 +uid: PintoLoP +givenName: Perl +mail: PintoLoP@508848e150ab4aa7a8a298273ecfc11f.bitwarden.com +carLicense: QSMMUG +departmentNumber: 4656 +employeeType: Normal +homePhone: +1 415 230-8292 +initials: P. P. +mobile: +1 415 263-1384 +pager: +1 415 124-1320 +roomNumber: 9683 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Richelle Griffiths +sn: Griffiths +description: This is Richelle Griffiths's description +facsimileTelephoneNumber: +1 818 651-3554 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 818 927-5204 +title: Supreme Human Resources Figurehead +userPassword: Password1 +uid: GriffitR +givenName: Richelle +mail: GriffitR@6114ed5b2ab14d15895d683682929e6e.bitwarden.com +carLicense: EIGXJR +departmentNumber: 7763 +employeeType: Employee +homePhone: +1 818 274-6738 +initials: R. G. +mobile: +1 818 462-7975 +pager: +1 818 697-3735 +roomNumber: 9225 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Magdi Mays,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdi Mays +sn: Mays +description: This is Magdi Mays's description +facsimileTelephoneNumber: +1 818 356-6126 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 988-3322 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: MaysM +givenName: Magdi +mail: MaysM@2f0186b834694a76807386afdcfeea26.bitwarden.com +carLicense: VGU2SH +departmentNumber: 5716 +employeeType: Employee +homePhone: +1 818 905-2219 +initials: M. M. +mobile: +1 818 115-1361 +pager: +1 818 459-9050 +roomNumber: 8228 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Suvanee Girard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suvanee Girard +sn: Girard +description: This is Suvanee Girard's description +facsimileTelephoneNumber: +1 206 366-4487 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 423-8066 +title: Associate Product Testing Architect +userPassword: Password1 +uid: GirardS +givenName: Suvanee +mail: GirardS@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com +carLicense: U4JVAQ +departmentNumber: 4834 +employeeType: Employee +homePhone: +1 206 148-5727 +initials: S. G. +mobile: +1 206 103-9253 +pager: +1 206 674-5185 +roomNumber: 9058 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bin Itah,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bin Itah +sn: Itah +description: This is Bin Itah's description +facsimileTelephoneNumber: +1 804 141-1519 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 804 706-4023 +title: Associate Management Stooge +userPassword: Password1 +uid: ItahB +givenName: Bin +mail: ItahB@49634f2a5e564b13843ce74e45cd5b8f.bitwarden.com +carLicense: KWCKFL +departmentNumber: 8386 +employeeType: Normal +homePhone: +1 804 284-9027 +initials: B. I. +mobile: +1 804 508-4719 +pager: +1 804 360-2545 +roomNumber: 8782 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Raynell Zaydan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raynell Zaydan +sn: Zaydan +description: This is Raynell Zaydan's description +facsimileTelephoneNumber: +1 206 290-5193 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 994-8124 +title: Junior Payroll Consultant +userPassword: Password1 +uid: ZaydanR +givenName: Raynell +mail: ZaydanR@97b597f461ba489aadc904c578cfd811.bitwarden.com +carLicense: WAQT8W +departmentNumber: 5096 +employeeType: Normal +homePhone: +1 206 781-5789 +initials: R. Z. +mobile: +1 206 613-5753 +pager: +1 206 388-5034 +roomNumber: 9812 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mabel Combee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mabel Combee +sn: Combee +description: This is Mabel Combee's description +facsimileTelephoneNumber: +1 415 707-1401 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 460-3683 +title: Chief Product Development Mascot +userPassword: Password1 +uid: CombeeM +givenName: Mabel +mail: CombeeM@b073d85cb935413fbc2609e807c639c1.bitwarden.com +carLicense: VDFC56 +departmentNumber: 8420 +employeeType: Contract +homePhone: +1 415 212-7529 +initials: M. C. +mobile: +1 415 285-6687 +pager: +1 415 255-9065 +roomNumber: 9918 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Melania Michelsen,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melania Michelsen +sn: Michelsen +description: This is Melania Michelsen's description +facsimileTelephoneNumber: +1 510 555-5217 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 978-8842 +title: Associate Janitorial Sales Rep +userPassword: Password1 +uid: MichelsM +givenName: Melania +mail: MichelsM@d153d3e5031f4425a2d969907becf2cc.bitwarden.com +carLicense: L2IRVK +departmentNumber: 5251 +employeeType: Employee +homePhone: +1 510 650-9365 +initials: M. M. +mobile: +1 510 904-6094 +pager: +1 510 817-5729 +roomNumber: 8784 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hollyanne Java,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hollyanne Java +sn: Java +description: This is Hollyanne Java's description +facsimileTelephoneNumber: +1 213 218-6935 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 437-9986 +title: Associate Product Development Mascot +userPassword: Password1 +uid: JavaH +givenName: Hollyanne +mail: JavaH@5eabae8e0a894e598a102f3cdf87fde5.bitwarden.com +carLicense: RQRPHM +departmentNumber: 9493 +employeeType: Normal +homePhone: +1 213 831-9442 +initials: H. J. +mobile: +1 213 477-9214 +pager: +1 213 661-3141 +roomNumber: 9737 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Theadora Irani,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theadora Irani +sn: Irani +description: This is Theadora Irani's description +facsimileTelephoneNumber: +1 415 168-4381 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 415 574-5878 +title: Chief Product Development Fellow +userPassword: Password1 +uid: IraniT +givenName: Theadora +mail: IraniT@4f30af5fbc174672afcc4005c4a463f6.bitwarden.com +carLicense: MT534M +departmentNumber: 6116 +employeeType: Employee +homePhone: +1 415 557-2324 +initials: T. I. +mobile: +1 415 429-5584 +pager: +1 415 517-8890 +roomNumber: 9092 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Eladio Bolio,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eladio Bolio +sn: Bolio +description: This is Eladio Bolio's description +facsimileTelephoneNumber: +1 206 188-5397 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 206 686-3060 +title: Junior Product Development Sales Rep +userPassword: Password1 +uid: BolioE +givenName: Eladio +mail: BolioE@befc127e0437429096ff0e9082a67904.bitwarden.com +carLicense: 86OKF3 +departmentNumber: 9236 +employeeType: Normal +homePhone: +1 206 249-8634 +initials: E. B. +mobile: +1 206 695-5663 +pager: +1 206 254-6658 +roomNumber: 9479 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sallyanne Muselik +sn: Muselik +description: This is Sallyanne Muselik's description +facsimileTelephoneNumber: +1 408 356-6783 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 341-9390 +title: Master Product Development Developer +userPassword: Password1 +uid: MuselikS +givenName: Sallyanne +mail: MuselikS@e1745565942b4cc2a108427c315a00de.bitwarden.com +carLicense: 320Q28 +departmentNumber: 4932 +employeeType: Employee +homePhone: +1 408 121-3779 +initials: S. M. +mobile: +1 408 860-6242 +pager: +1 408 901-8216 +roomNumber: 8264 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hermien Paksi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermien Paksi +sn: Paksi +description: This is Hermien Paksi's description +facsimileTelephoneNumber: +1 415 864-4074 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 415 939-5613 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: PaksiH +givenName: Hermien +mail: PaksiH@35e3f59923a249d090ebec943db66364.bitwarden.com +carLicense: 0CSHHV +departmentNumber: 7817 +employeeType: Contract +homePhone: +1 415 705-5365 +initials: H. P. +mobile: +1 415 200-8945 +pager: +1 415 444-9614 +roomNumber: 9963 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Merrilee Sipple,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrilee Sipple +sn: Sipple +description: This is Merrilee Sipple's description +facsimileTelephoneNumber: +1 408 755-1666 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 542-6725 +title: Chief Product Development Sales Rep +userPassword: Password1 +uid: SippleM +givenName: Merrilee +mail: SippleM@b847cd495a564fd88ad378e323d86f9e.bitwarden.com +carLicense: HGD647 +departmentNumber: 5329 +employeeType: Contract +homePhone: +1 408 648-4263 +initials: M. S. +mobile: +1 408 552-4777 +pager: +1 408 190-3354 +roomNumber: 8591 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Aleece Mielke,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aleece Mielke +sn: Mielke +description: This is Aleece Mielke's description +facsimileTelephoneNumber: +1 818 659-1218 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 818 193-1396 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: MielkeA +givenName: Aleece +mail: MielkeA@37ac065458a84fc994659f0d86c970d6.bitwarden.com +carLicense: QC33D8 +departmentNumber: 2353 +employeeType: Employee +homePhone: +1 818 417-7534 +initials: A. M. +mobile: +1 818 887-1048 +pager: +1 818 711-4910 +roomNumber: 9061 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Harinder Sabry,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harinder Sabry +sn: Sabry +description: This is Harinder Sabry's description +facsimileTelephoneNumber: +1 415 215-5122 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 415 954-1470 +title: Associate Administrative Czar +userPassword: Password1 +uid: SabryH +givenName: Harinder +mail: SabryH@b60e4ba7e4ea41b7aff4212cdb1e99c6.bitwarden.com +carLicense: 7QA6V7 +departmentNumber: 4650 +employeeType: Contract +homePhone: +1 415 681-1563 +initials: H. S. +mobile: +1 415 360-9036 +pager: +1 415 173-9961 +roomNumber: 9180 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Eamon Brivet,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eamon Brivet +sn: Brivet +description: This is Eamon Brivet's description +facsimileTelephoneNumber: +1 415 173-5066 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 415 970-3953 +title: Associate Peons Madonna +userPassword: Password1 +uid: BrivetE +givenName: Eamon +mail: BrivetE@1f197603b6704c1dbee512646173cacd.bitwarden.com +carLicense: IHNNPF +departmentNumber: 8256 +employeeType: Contract +homePhone: +1 415 938-8020 +initials: E. B. +mobile: +1 415 459-3267 +pager: +1 415 618-7223 +roomNumber: 9443 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Analiese Chapman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Analiese Chapman +sn: Chapman +description: This is Analiese Chapman's description +facsimileTelephoneNumber: +1 206 721-9960 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 206 653-1175 +title: Master Peons President +userPassword: Password1 +uid: ChapmanA +givenName: Analiese +mail: ChapmanA@b617366a0a1e4d7aa5679a9f680a89f2.bitwarden.com +carLicense: RVF6N5 +departmentNumber: 9642 +employeeType: Contract +homePhone: +1 206 885-8713 +initials: A. C. +mobile: +1 206 972-3537 +pager: +1 206 901-7579 +roomNumber: 9081 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Meghan Murphy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meghan Murphy +sn: Murphy +description: This is Meghan Murphy's description +facsimileTelephoneNumber: +1 408 292-5375 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 405-6940 +title: Supreme Payroll Janitor +userPassword: Password1 +uid: MurphyM +givenName: Meghan +mail: MurphyM@6f5b7d94be494781b38d4b416e8e82d2.bitwarden.com +carLicense: JMJBI7 +departmentNumber: 7590 +employeeType: Employee +homePhone: +1 408 473-2876 +initials: M. M. +mobile: +1 408 975-1100 +pager: +1 408 250-5664 +roomNumber: 8077 +manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desdemona Freyler +sn: Freyler +description: This is Desdemona Freyler's description +facsimileTelephoneNumber: +1 213 159-8038 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 213 166-4680 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: FreylerD +givenName: Desdemona +mail: FreylerD@4d3a1b4d7f214d738a08a6641bde06fd.bitwarden.com +carLicense: NYTTCQ +departmentNumber: 6890 +employeeType: Normal +homePhone: +1 213 134-4071 +initials: D. F. +mobile: +1 213 519-1671 +pager: +1 213 643-3247 +roomNumber: 8950 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nikolia Guin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nikolia Guin +sn: Guin +description: This is Nikolia Guin's description +facsimileTelephoneNumber: +1 408 145-2775 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 143-4105 +title: Chief Human Resources Developer +userPassword: Password1 +uid: GuinN +givenName: Nikolia +mail: GuinN@272fe3f35e92442897a84fe95f9bd54a.bitwarden.com +carLicense: 88VGCM +departmentNumber: 7374 +employeeType: Contract +homePhone: +1 408 111-2080 +initials: N. G. +mobile: +1 408 886-9713 +pager: +1 408 286-7447 +roomNumber: 8156 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dana Tupling,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dana Tupling +sn: Tupling +description: This is Dana Tupling's description +facsimileTelephoneNumber: +1 213 190-6149 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 298-7258 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: TuplingD +givenName: Dana +mail: TuplingD@ef271778b0964b66a7d614683b9a3b20.bitwarden.com +carLicense: 2WANC2 +departmentNumber: 3650 +employeeType: Contract +homePhone: +1 213 332-7090 +initials: D. T. +mobile: +1 213 300-2177 +pager: +1 213 627-9027 +roomNumber: 8819 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Eliot Havis,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eliot Havis +sn: Havis +description: This is Eliot Havis's description +facsimileTelephoneNumber: +1 415 603-2237 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 308-1238 +title: Junior Payroll Assistant +userPassword: Password1 +uid: HavisE +givenName: Eliot +mail: HavisE@a7efbad4dbbd458699231bf651e29d1b.bitwarden.com +carLicense: C8L6OF +departmentNumber: 2713 +employeeType: Normal +homePhone: +1 415 578-9375 +initials: E. H. +mobile: +1 415 691-8133 +pager: +1 415 547-8050 +roomNumber: 9227 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maryl Codrington,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryl Codrington +sn: Codrington +description: This is Maryl Codrington's description +facsimileTelephoneNumber: +1 818 900-7419 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 672-3257 +title: Junior Product Testing Janitor +userPassword: Password1 +uid: CodringM +givenName: Maryl +mail: CodringM@6d359ae3f48f4f958525326d5a17bef5.bitwarden.com +carLicense: 9W19UJ +departmentNumber: 7148 +employeeType: Normal +homePhone: +1 818 625-9240 +initials: M. C. +mobile: +1 818 675-6415 +pager: +1 818 826-9848 +roomNumber: 8406 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pamelina Kirley +sn: Kirley +description: This is Pamelina Kirley's description +facsimileTelephoneNumber: +1 408 219-1609 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 766-7111 +title: Master Human Resources Dictator +userPassword: Password1 +uid: KirleyP +givenName: Pamelina +mail: KirleyP@8f4ba0e949d54b87a25fce54b7a59ad4.bitwarden.com +carLicense: 9CGUST +departmentNumber: 4047 +employeeType: Contract +homePhone: +1 408 200-4105 +initials: P. K. +mobile: +1 408 712-6651 +pager: +1 408 240-8119 +roomNumber: 9983 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Constantia Neubauer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constantia Neubauer +sn: Neubauer +description: This is Constantia Neubauer's description +facsimileTelephoneNumber: +1 818 772-3515 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 818 562-9057 +title: Chief Product Development Fellow +userPassword: Password1 +uid: NeubaueC +givenName: Constantia +mail: NeubaueC@7448491b00a74a3e95be2c2010be9a72.bitwarden.com +carLicense: 1CHFUH +departmentNumber: 8782 +employeeType: Normal +homePhone: +1 818 244-9003 +initials: C. N. +mobile: +1 818 264-6110 +pager: +1 818 470-7555 +roomNumber: 9896 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Savita Sei,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Savita Sei +sn: Sei +description: This is Savita Sei's description +facsimileTelephoneNumber: +1 804 228-2320 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 987-8143 +title: Master Human Resources Admin +userPassword: Password1 +uid: SeiS +givenName: Savita +mail: SeiS@aa6e4c8f93be4db1b434356df7956ece.bitwarden.com +carLicense: 40447F +departmentNumber: 6512 +employeeType: Employee +homePhone: +1 804 382-8480 +initials: S. S. +mobile: +1 804 904-1322 +pager: +1 804 997-4642 +roomNumber: 8292 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Yehuda Huret,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yehuda Huret +sn: Huret +description: This is Yehuda Huret's description +facsimileTelephoneNumber: +1 818 303-1950 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 818 279-4872 +title: Junior Peons Fellow +userPassword: Password1 +uid: HuretY +givenName: Yehuda +mail: HuretY@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com +carLicense: 2TDMBX +departmentNumber: 3212 +employeeType: Employee +homePhone: +1 818 443-7202 +initials: Y. H. +mobile: +1 818 402-5534 +pager: +1 818 287-9768 +roomNumber: 8305 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Otakar Lobasso +sn: Lobasso +description: This is Otakar Lobasso's description +facsimileTelephoneNumber: +1 415 531-3294 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 415 774-1747 +title: Supreme Human Resources President +userPassword: Password1 +uid: LobassoO +givenName: Otakar +mail: LobassoO@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com +carLicense: KR702R +departmentNumber: 4346 +employeeType: Employee +homePhone: +1 415 685-3432 +initials: O. L. +mobile: +1 415 771-6972 +pager: +1 415 637-7810 +roomNumber: 9301 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Livvie Barlow,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Livvie Barlow +sn: Barlow +description: This is Livvie Barlow's description +facsimileTelephoneNumber: +1 408 235-6738 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 408 556-6738 +title: Chief Janitorial Pinhead +userPassword: Password1 +uid: BarlowL +givenName: Livvie +mail: BarlowL@cbcf5ba0830142c9ada57ab9a8c305a0.bitwarden.com +carLicense: 3AU1HG +departmentNumber: 2340 +employeeType: Contract +homePhone: +1 408 815-5664 +initials: L. B. +mobile: +1 408 708-8661 +pager: +1 408 683-5160 +roomNumber: 9770 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sebastian Burger,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sebastian Burger +sn: Burger +description: This is Sebastian Burger's description +facsimileTelephoneNumber: +1 206 404-3140 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 639-5021 +title: Master Product Development Pinhead +userPassword: Password1 +uid: BurgerS +givenName: Sebastian +mail: BurgerS@4d453e35974e4b1795f354665a71c575.bitwarden.com +carLicense: 1OJ4LB +departmentNumber: 9030 +employeeType: Contract +homePhone: +1 206 941-7681 +initials: S. B. +mobile: +1 206 331-2039 +pager: +1 206 818-1968 +roomNumber: 8587 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jandy Vitaglian +sn: Vitaglian +description: This is Jandy Vitaglian's description +facsimileTelephoneNumber: +1 510 865-3959 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 228-2689 +title: Master Product Testing President +userPassword: Password1 +uid: VitagliJ +givenName: Jandy +mail: VitagliJ@ea0898ff0877402d9c2e36c10881d242.bitwarden.com +carLicense: U6LERV +departmentNumber: 8014 +employeeType: Normal +homePhone: +1 510 230-2187 +initials: J. V. +mobile: +1 510 861-8725 +pager: +1 510 377-8614 +roomNumber: 9495 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Datas Cochran,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Datas Cochran +sn: Cochran +description: This is Datas Cochran's description +facsimileTelephoneNumber: +1 415 704-2875 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 415 990-8048 +title: Junior Management Technician +userPassword: Password1 +uid: CochranD +givenName: Datas +mail: CochranD@7f04a3ff8bcd4af8bad4e2a152862067.bitwarden.com +carLicense: 47V4M7 +departmentNumber: 9368 +employeeType: Normal +homePhone: +1 415 795-1451 +initials: D. C. +mobile: +1 415 209-6037 +pager: +1 415 791-1610 +roomNumber: 8307 +manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Chander Copley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chander Copley +sn: Copley +description: This is Chander Copley's description +facsimileTelephoneNumber: +1 415 427-4402 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 790-9861 +title: Associate Administrative Czar +userPassword: Password1 +uid: CopleyC +givenName: Chander +mail: CopleyC@d07a2006b3a1498a93ccb152c91ebf77.bitwarden.com +carLicense: 42TNVU +departmentNumber: 8914 +employeeType: Normal +homePhone: +1 415 196-4293 +initials: C. C. +mobile: +1 415 928-8118 +pager: +1 415 900-1607 +roomNumber: 9200 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Careers Serapin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Careers Serapin +sn: Serapin +description: This is Careers Serapin's description +facsimileTelephoneNumber: +1 510 125-3073 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 510 511-7359 +title: Supreme Product Development Punk +userPassword: Password1 +uid: SerapinC +givenName: Careers +mail: SerapinC@12bcb122c4694351b3e767abc87fcd5e.bitwarden.com +carLicense: 9S7TBY +departmentNumber: 9237 +employeeType: Normal +homePhone: +1 510 927-9821 +initials: C. S. +mobile: +1 510 560-6787 +pager: +1 510 405-4320 +roomNumber: 9067 +manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryJane Kumamoto +sn: Kumamoto +description: This is MaryJane Kumamoto's description +facsimileTelephoneNumber: +1 818 908-7404 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 269-9176 +title: Junior Human Resources Director +userPassword: Password1 +uid: KumamotM +givenName: MaryJane +mail: KumamotM@bce06db68abd4490849597341c60e88f.bitwarden.com +carLicense: UM2PAE +departmentNumber: 5466 +employeeType: Employee +homePhone: +1 818 634-6836 +initials: M. K. +mobile: +1 818 409-6410 +pager: +1 818 473-2617 +roomNumber: 9448 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hellen VanLaten +sn: VanLaten +description: This is Hellen VanLaten's description +facsimileTelephoneNumber: +1 804 551-1585 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 769-4416 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: VanLateH +givenName: Hellen +mail: VanLateH@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com +carLicense: YNT8LR +departmentNumber: 8516 +employeeType: Normal +homePhone: +1 804 382-1368 +initials: H. V. +mobile: +1 804 804-9749 +pager: +1 804 990-8521 +roomNumber: 8984 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mei Ballinger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mei Ballinger +sn: Ballinger +description: This is Mei Ballinger's description +facsimileTelephoneNumber: +1 804 773-1550 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 337-7228 +title: Master Administrative Stooge +userPassword: Password1 +uid: BallingM +givenName: Mei +mail: BallingM@ca5cfe9e2bd34d4daa1788a54ae9670d.bitwarden.com +carLicense: 8BL8MW +departmentNumber: 8788 +employeeType: Normal +homePhone: +1 804 318-1296 +initials: M. B. +mobile: +1 804 554-5674 +pager: +1 804 453-4182 +roomNumber: 9472 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Guillema Sarioglu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guillema Sarioglu +sn: Sarioglu +description: This is Guillema Sarioglu's description +facsimileTelephoneNumber: +1 804 813-4616 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 729-1132 +title: Associate Management Figurehead +userPassword: Password1 +uid: SarioglG +givenName: Guillema +mail: SarioglG@a5c8780c86ee42949bb714c84dc95d44.bitwarden.com +carLicense: QFRDXE +departmentNumber: 4002 +employeeType: Normal +homePhone: +1 804 229-2110 +initials: G. S. +mobile: +1 804 966-9385 +pager: +1 804 851-5820 +roomNumber: 9968 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Samual Colquhoun,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Samual Colquhoun +sn: Colquhoun +description: This is Samual Colquhoun's description +facsimileTelephoneNumber: +1 804 638-5113 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 887-4202 +title: Junior Administrative Madonna +userPassword: Password1 +uid: ColquhoS +givenName: Samual +mail: ColquhoS@af38a73cbf364504a84e0d960de55c89.bitwarden.com +carLicense: OOLS6D +departmentNumber: 2018 +employeeType: Employee +homePhone: +1 804 733-2140 +initials: S. C. +mobile: +1 804 939-6340 +pager: +1 804 716-6871 +roomNumber: 9149 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristin Vanderhoeven +sn: Vanderhoeven +description: This is Kristin Vanderhoeven's description +facsimileTelephoneNumber: +1 408 701-4134 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 258-9351 +title: Chief Product Development Developer +userPassword: Password1 +uid: VanderhK +givenName: Kristin +mail: VanderhK@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com +carLicense: JLF4FC +departmentNumber: 2789 +employeeType: Employee +homePhone: +1 408 299-5226 +initials: K. V. +mobile: +1 408 712-7426 +pager: +1 408 182-5630 +roomNumber: 8551 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reggi Kelsch +sn: Kelsch +description: This is Reggi Kelsch's description +facsimileTelephoneNumber: +1 510 100-6009 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 992-6698 +title: Associate Product Testing Technician +userPassword: Password1 +uid: KelschR +givenName: Reggi +mail: KelschR@bd6dedb04a504f54bb83fff2aa24490b.bitwarden.com +carLicense: 2UVEKR +departmentNumber: 5281 +employeeType: Normal +homePhone: +1 510 612-1683 +initials: R. K. +mobile: +1 510 630-4649 +pager: +1 510 285-7697 +roomNumber: 8784 +manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Uswrsd Talmont +sn: Talmont +description: This is Uswrsd Talmont's description +facsimileTelephoneNumber: +1 213 840-4821 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 793-6684 +title: Supreme Administrative Punk +userPassword: Password1 +uid: TalmontU +givenName: Uswrsd +mail: TalmontU@2c548192dd0a450e9fdd873045107605.bitwarden.com +carLicense: BNO2OF +departmentNumber: 9921 +employeeType: Employee +homePhone: +1 213 169-2235 +initials: U. T. +mobile: +1 213 215-3210 +pager: +1 213 548-6571 +roomNumber: 8537 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Billie Karunaratne +sn: Karunaratne +description: This is Billie Karunaratne's description +facsimileTelephoneNumber: +1 415 148-4912 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 415 724-3536 +title: Supreme Human Resources Czar +userPassword: Password1 +uid: KarunarB +givenName: Billie +mail: KarunarB@eb263435394f4d6ab9827469c04cb342.bitwarden.com +carLicense: RGDJ5B +departmentNumber: 6287 +employeeType: Normal +homePhone: +1 415 131-5048 +initials: B. K. +mobile: +1 415 416-4628 +pager: +1 415 720-1630 +roomNumber: 8989 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathrin Sanford +sn: Sanford +description: This is Cathrin Sanford's description +facsimileTelephoneNumber: +1 415 429-2467 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 414-1389 +title: Junior Product Testing Director +userPassword: Password1 +uid: SanfordC +givenName: Cathrin +mail: SanfordC@e38af9fe725143fba59fa84a861f0258.bitwarden.com +carLicense: 4RX86V +departmentNumber: 2399 +employeeType: Normal +homePhone: +1 415 394-1116 +initials: C. S. +mobile: +1 415 386-1586 +pager: +1 415 617-2588 +roomNumber: 9316 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hubert Cicci,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hubert Cicci +sn: Cicci +description: This is Hubert Cicci's description +facsimileTelephoneNumber: +1 804 214-7253 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 132-6653 +title: Junior Janitorial President +userPassword: Password1 +uid: CicciH +givenName: Hubert +mail: CicciH@c87d7949ca254b4faaba46ba985802e7.bitwarden.com +carLicense: N049G3 +departmentNumber: 3531 +employeeType: Contract +homePhone: +1 804 902-4588 +initials: H. C. +mobile: +1 804 823-9448 +pager: +1 804 831-8742 +roomNumber: 9865 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chung Gooch,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chung Gooch +sn: Gooch +description: This is Chung Gooch's description +facsimileTelephoneNumber: +1 510 720-7846 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 510 784-6677 +title: Junior Payroll Warrior +userPassword: Password1 +uid: GoochC +givenName: Chung +mail: GoochC@503f6e3a96f3479bbfed7039bc14da05.bitwarden.com +carLicense: N2F60S +departmentNumber: 2518 +employeeType: Normal +homePhone: +1 510 987-7880 +initials: C. G. +mobile: +1 510 796-8764 +pager: +1 510 511-3486 +roomNumber: 8270 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Johnnie Trainer,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnnie Trainer +sn: Trainer +description: This is Johnnie Trainer's description +facsimileTelephoneNumber: +1 415 966-9099 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 718-4450 +title: Master Administrative Pinhead +userPassword: Password1 +uid: TrainerJ +givenName: Johnnie +mail: TrainerJ@7056e30d771245dcacf5054aa8552268.bitwarden.com +carLicense: K39YES +departmentNumber: 5092 +employeeType: Employee +homePhone: +1 415 105-1600 +initials: J. T. +mobile: +1 415 953-2448 +pager: +1 415 158-3365 +roomNumber: 9587 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ShirleyAnn Leitner +sn: Leitner +description: This is ShirleyAnn Leitner's description +facsimileTelephoneNumber: +1 415 593-2354 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 418-5319 +title: Junior Product Development Madonna +userPassword: Password1 +uid: LeitnerS +givenName: ShirleyAnn +mail: LeitnerS@7279f15d1e764fb3b1076fe52d173852.bitwarden.com +carLicense: GMWGSJ +departmentNumber: 6163 +employeeType: Normal +homePhone: +1 415 281-6364 +initials: S. L. +mobile: +1 415 419-7170 +pager: +1 415 819-1990 +roomNumber: 9506 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Camile Latin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camile Latin +sn: Latin +description: This is Camile Latin's description +facsimileTelephoneNumber: +1 818 616-2059 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 484-1672 +title: Chief Management Technician +userPassword: Password1 +uid: LatinC +givenName: Camile +mail: LatinC@b4e0316b69b8470f901342e4f4f1cdf5.bitwarden.com +carLicense: SR5Q81 +departmentNumber: 8709 +employeeType: Employee +homePhone: +1 818 843-2898 +initials: C. L. +mobile: +1 818 716-1367 +pager: +1 818 523-9011 +roomNumber: 8553 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Radio Ong,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Radio Ong +sn: Ong +description: This is Radio Ong's description +facsimileTelephoneNumber: +1 804 673-2045 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 601-2610 +title: Chief Product Development Figurehead +userPassword: Password1 +uid: OngR +givenName: Radio +mail: OngR@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com +carLicense: UCLHNE +departmentNumber: 5966 +employeeType: Contract +homePhone: +1 804 877-3140 +initials: R. O. +mobile: +1 804 732-3976 +pager: +1 804 267-6035 +roomNumber: 9770 +manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carmina Joly,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmina Joly +sn: Joly +description: This is Carmina Joly's description +facsimileTelephoneNumber: +1 213 593-6607 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 917-2057 +title: Junior Janitorial Director +userPassword: Password1 +uid: JolyC +givenName: Carmina +mail: JolyC@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com +carLicense: Q0BEM8 +departmentNumber: 4304 +employeeType: Employee +homePhone: +1 213 683-1617 +initials: C. J. +mobile: +1 213 679-9861 +pager: +1 213 978-9593 +roomNumber: 8270 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alese Zarate,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alese Zarate +sn: Zarate +description: This is Alese Zarate's description +facsimileTelephoneNumber: +1 510 223-3952 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 216-6869 +title: Associate Product Testing Artist +userPassword: Password1 +uid: ZarateA +givenName: Alese +mail: ZarateA@a2e58ac4aa674923b6c4c06738a79475.bitwarden.com +carLicense: 1U8K8B +departmentNumber: 8713 +employeeType: Employee +homePhone: +1 510 833-9493 +initials: A. Z. +mobile: +1 510 399-7243 +pager: +1 510 256-9025 +roomNumber: 8182 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Babb Dpierre,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Babb Dpierre +sn: Dpierre +description: This is Babb Dpierre's description +facsimileTelephoneNumber: +1 510 313-3719 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 152-7359 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: DpierreB +givenName: Babb +mail: DpierreB@54603ca23b334ee2ab268dfe7ef5998b.bitwarden.com +carLicense: 0OGATE +departmentNumber: 5728 +employeeType: Employee +homePhone: +1 510 896-6951 +initials: B. D. +mobile: +1 510 887-2864 +pager: +1 510 916-4885 +roomNumber: 9679 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherice Rtprel +sn: Rtprel +description: This is Cherice Rtprel's description +facsimileTelephoneNumber: +1 206 886-3862 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 971-5607 +title: Chief Human Resources Figurehead +userPassword: Password1 +uid: RtprelC +givenName: Cherice +mail: RtprelC@ca6d3da0e0ae431b8aa777badba75d1a.bitwarden.com +carLicense: 945Y7T +departmentNumber: 9033 +employeeType: Contract +homePhone: +1 206 774-5121 +initials: C. R. +mobile: +1 206 188-4383 +pager: +1 206 372-7861 +roomNumber: 8300 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: DeeAnn SaranBrar +sn: SaranBrar +description: This is DeeAnn SaranBrar's description +facsimileTelephoneNumber: +1 415 391-6302 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 415 231-9631 +title: Junior Product Testing Admin +userPassword: Password1 +uid: SaranBrD +givenName: DeeAnn +mail: SaranBrD@7dbf2c52de6d4f65b7e5ea3788d86d3e.bitwarden.com +carLicense: 29U501 +departmentNumber: 9852 +employeeType: Contract +homePhone: +1 415 259-5430 +initials: D. S. +mobile: +1 415 583-7606 +pager: +1 415 425-9459 +roomNumber: 9851 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dalila Forbes,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dalila Forbes +sn: Forbes +description: This is Dalila Forbes's description +facsimileTelephoneNumber: +1 818 193-3559 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 508-2703 +title: Associate Product Development Developer +userPassword: Password1 +uid: ForbesD +givenName: Dalila +mail: ForbesD@a48701aa8d324e65a88e2c654b93d791.bitwarden.com +carLicense: KI4WWY +departmentNumber: 5051 +employeeType: Employee +homePhone: +1 818 824-1448 +initials: D. F. +mobile: +1 818 590-6665 +pager: +1 818 732-4714 +roomNumber: 9841 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thuthuy Abelow +sn: Abelow +description: This is Thuthuy Abelow's description +facsimileTelephoneNumber: +1 415 840-1708 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 415 519-5840 +title: Chief Payroll Consultant +userPassword: Password1 +uid: AbelowT +givenName: Thuthuy +mail: AbelowT@42f51a65b1584dbea4e8a6daf5a3f864.bitwarden.com +carLicense: 4VJQYG +departmentNumber: 4220 +employeeType: Employee +homePhone: +1 415 953-7938 +initials: T. A. +mobile: +1 415 642-6530 +pager: +1 415 465-6175 +roomNumber: 8968 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pinder Pedley,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pinder Pedley +sn: Pedley +description: This is Pinder Pedley's description +facsimileTelephoneNumber: +1 510 688-2505 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 712-8490 +title: Junior Administrative Warrior +userPassword: Password1 +uid: PedleyP +givenName: Pinder +mail: PedleyP@47a7a80ec8774325ad24930467e7f72e.bitwarden.com +carLicense: 2OSP4U +departmentNumber: 8513 +employeeType: Normal +homePhone: +1 510 303-7996 +initials: P. P. +mobile: +1 510 962-6889 +pager: +1 510 796-6042 +roomNumber: 8691 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leo Thibodeaux +sn: Thibodeaux +description: This is Leo Thibodeaux's description +facsimileTelephoneNumber: +1 804 490-9043 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 209-1095 +title: Associate Administrative Janitor +userPassword: Password1 +uid: ThibodeL +givenName: Leo +mail: ThibodeL@38889c54d4b943c0b9fc26641a496258.bitwarden.com +carLicense: TENFBA +departmentNumber: 7880 +employeeType: Normal +homePhone: +1 804 840-6060 +initials: L. T. +mobile: +1 804 325-4555 +pager: +1 804 587-1638 +roomNumber: 9723 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Suzi Gribbons,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzi Gribbons +sn: Gribbons +description: This is Suzi Gribbons's description +facsimileTelephoneNumber: +1 206 923-5351 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 206 646-9679 +title: Associate Product Development Architect +userPassword: Password1 +uid: GribbonS +givenName: Suzi +mail: GribbonS@2dc8c62e4ed74cd885bbff5260cbb174.bitwarden.com +carLicense: LG7XFO +departmentNumber: 7275 +employeeType: Contract +homePhone: +1 206 372-2292 +initials: S. G. +mobile: +1 206 633-7105 +pager: +1 206 727-4299 +roomNumber: 8235 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hulst Sinasac,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hulst Sinasac +sn: Sinasac +description: This is Hulst Sinasac's description +facsimileTelephoneNumber: +1 415 490-4289 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 455-9922 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: SinasacH +givenName: Hulst +mail: SinasacH@e35bcff773e44a658149b86ee66df875.bitwarden.com +carLicense: 3IYBWE +departmentNumber: 4768 +employeeType: Contract +homePhone: +1 415 207-3812 +initials: H. S. +mobile: +1 415 392-1818 +pager: +1 415 602-3542 +roomNumber: 8348 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mervin Holthaus +sn: Holthaus +description: This is Mervin Holthaus's description +facsimileTelephoneNumber: +1 510 667-5792 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 576-4850 +title: Junior Product Testing Madonna +userPassword: Password1 +uid: HolthauM +givenName: Mervin +mail: HolthauM@4cf65bbff1914896934f97301ec7a0ec.bitwarden.com +carLicense: CH29VB +departmentNumber: 9514 +employeeType: Contract +homePhone: +1 510 494-7718 +initials: M. H. +mobile: +1 510 472-5039 +pager: +1 510 993-4933 +roomNumber: 8924 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Naser deSalis,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Naser deSalis +sn: deSalis +description: This is Naser deSalis's description +facsimileTelephoneNumber: +1 415 380-9957 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 534-5692 +title: Associate Administrative Manager +userPassword: Password1 +uid: deSalisN +givenName: Naser +mail: deSalisN@2620fb87759f467a90bd68158f6c4bde.bitwarden.com +carLicense: EYTCMX +departmentNumber: 5093 +employeeType: Employee +homePhone: +1 415 403-7859 +initials: N. d. +mobile: +1 415 474-7633 +pager: +1 415 823-4608 +roomNumber: 8607 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chawki Starkebaum +sn: Starkebaum +description: This is Chawki Starkebaum's description +facsimileTelephoneNumber: +1 818 498-2446 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 818 349-7206 +title: Chief Payroll Artist +userPassword: Password1 +uid: StarkebC +givenName: Chawki +mail: StarkebC@3ce0a01f27f6425688fde2fe2ac46894.bitwarden.com +carLicense: ITFGJ3 +departmentNumber: 4181 +employeeType: Normal +homePhone: +1 818 553-9287 +initials: C. S. +mobile: +1 818 343-8707 +pager: +1 818 399-4804 +roomNumber: 9659 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Goldwyn Saltsider +sn: Saltsider +description: This is Goldwyn Saltsider's description +facsimileTelephoneNumber: +1 206 160-7592 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 920-4739 +title: Supreme Peons Figurehead +userPassword: Password1 +uid: SaltsidG +givenName: Goldwyn +mail: SaltsidG@1e13847ccc3c4ff8a4232936d21cc7f6.bitwarden.com +carLicense: 6CXNWO +departmentNumber: 1123 +employeeType: Normal +homePhone: +1 206 460-4970 +initials: G. S. +mobile: +1 206 747-4761 +pager: +1 206 779-3157 +roomNumber: 9990 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maurise Efstration,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurise Efstration +sn: Efstration +description: This is Maurise Efstration's description +facsimileTelephoneNumber: +1 213 503-8835 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 213 759-1491 +title: Chief Product Testing Evangelist +userPassword: Password1 +uid: EfstratM +givenName: Maurise +mail: EfstratM@8bce8e47b62d4ccfb285ce5d7a43698b.bitwarden.com +carLicense: BMG6S8 +departmentNumber: 6105 +employeeType: Contract +homePhone: +1 213 217-3894 +initials: M. E. +mobile: +1 213 704-2016 +pager: +1 213 913-3373 +roomNumber: 9698 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ranvir Reetz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranvir Reetz +sn: Reetz +description: This is Ranvir Reetz's description +facsimileTelephoneNumber: +1 408 180-8644 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 708-1479 +title: Supreme Payroll Fellow +userPassword: Password1 +uid: ReetzR +givenName: Ranvir +mail: ReetzR@da92b528ad714b68bb8622f4f41299c4.bitwarden.com +carLicense: 18BG35 +departmentNumber: 2881 +employeeType: Normal +homePhone: +1 408 988-2746 +initials: R. R. +mobile: +1 408 478-9187 +pager: +1 408 469-9953 +roomNumber: 9486 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alidia COKOL,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alidia COKOL +sn: COKOL +description: This is Alidia COKOL's description +facsimileTelephoneNumber: +1 818 621-6285 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 818 786-9421 +title: Junior Peons Warrior +userPassword: Password1 +uid: COKOLA +givenName: Alidia +mail: COKOLA@4e3272dfa10d49cf921e5550808b516c.bitwarden.com +carLicense: OVP2K3 +departmentNumber: 2363 +employeeType: Employee +homePhone: +1 818 466-2642 +initials: A. C. +mobile: +1 818 507-4281 +pager: +1 818 686-1227 +roomNumber: 9868 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alessandra Lamey +sn: Lamey +description: This is Alessandra Lamey's description +facsimileTelephoneNumber: +1 818 380-7641 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 818 147-4888 +title: Master Janitorial President +userPassword: Password1 +uid: LameyA +givenName: Alessandra +mail: LameyA@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com +carLicense: 6E05CQ +departmentNumber: 4133 +employeeType: Employee +homePhone: +1 818 679-9328 +initials: A. L. +mobile: +1 818 480-4706 +pager: +1 818 873-7898 +roomNumber: 8277 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Shashank Pifko,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shashank Pifko +sn: Pifko +description: This is Shashank Pifko's description +facsimileTelephoneNumber: +1 415 934-6995 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 580-9890 +title: Associate Janitorial Janitor +userPassword: Password1 +uid: PifkoS +givenName: Shashank +mail: PifkoS@0eed0e32043f4408ad5c64ea168a59bf.bitwarden.com +carLicense: EP0OX6 +departmentNumber: 8509 +employeeType: Employee +homePhone: +1 415 439-4639 +initials: S. P. +mobile: +1 415 554-5329 +pager: +1 415 269-7475 +roomNumber: 8962 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meeting Legrandvallet +sn: Legrandvallet +description: This is Meeting Legrandvallet's description +facsimileTelephoneNumber: +1 804 276-8929 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 804 587-7305 +title: Associate Payroll Warrior +userPassword: Password1 +uid: LegrandM +givenName: Meeting +mail: LegrandM@669b2a81bf23431db2962dc8de3e583a.bitwarden.com +carLicense: VFU4KK +departmentNumber: 7974 +employeeType: Employee +homePhone: +1 804 408-7846 +initials: M. L. +mobile: +1 804 688-1921 +pager: +1 804 695-3376 +roomNumber: 9458 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Eulalie Montcalm,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eulalie Montcalm +sn: Montcalm +description: This is Eulalie Montcalm's description +facsimileTelephoneNumber: +1 804 377-1003 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 804 242-3880 +title: Master Management Consultant +userPassword: Password1 +uid: MontcalE +givenName: Eulalie +mail: MontcalE@2229562e57b44d9d8ff347bf88958fa0.bitwarden.com +carLicense: 5227MY +departmentNumber: 9453 +employeeType: Employee +homePhone: +1 804 134-9193 +initials: E. M. +mobile: +1 804 325-5034 +pager: +1 804 655-9404 +roomNumber: 8580 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Calla Voight,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calla Voight +sn: Voight +description: This is Calla Voight's description +facsimileTelephoneNumber: +1 415 594-4986 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 960-7212 +title: Associate Peons Admin +userPassword: Password1 +uid: VoightC +givenName: Calla +mail: VoightC@5e9eaf0e4bc34fb7abad197540e304cf.bitwarden.com +carLicense: 5JMGHT +departmentNumber: 8522 +employeeType: Contract +homePhone: +1 415 960-2577 +initials: C. V. +mobile: +1 415 413-9223 +pager: +1 415 178-3301 +roomNumber: 9324 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lynette Kay,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynette Kay +sn: Kay +description: This is Lynette Kay's description +facsimileTelephoneNumber: +1 213 384-4630 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 213 396-7997 +title: Master Payroll Janitor +userPassword: Password1 +uid: KayL +givenName: Lynette +mail: KayL@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com +carLicense: 81VHKG +departmentNumber: 3145 +employeeType: Normal +homePhone: +1 213 330-9265 +initials: L. K. +mobile: +1 213 245-8923 +pager: +1 213 230-6118 +roomNumber: 8409 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carleen Baxter,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carleen Baxter +sn: Baxter +description: This is Carleen Baxter's description +facsimileTelephoneNumber: +1 818 843-3789 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 818 691-4358 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: BaxterC +givenName: Carleen +mail: BaxterC@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com +carLicense: 7WU3DS +departmentNumber: 9783 +employeeType: Contract +homePhone: +1 818 288-5084 +initials: C. B. +mobile: +1 818 337-8746 +pager: +1 818 360-9719 +roomNumber: 8826 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hubert Brading,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hubert Brading +sn: Brading +description: This is Hubert Brading's description +facsimileTelephoneNumber: +1 804 802-2229 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 596-8029 +title: Master Product Testing Technician +userPassword: Password1 +uid: BradingH +givenName: Hubert +mail: BradingH@6d3e8dd854344b0786a5b5ed369ee17d.bitwarden.com +carLicense: 4KQKFV +departmentNumber: 8536 +employeeType: Employee +homePhone: +1 804 407-3692 +initials: H. B. +mobile: +1 804 534-2466 +pager: +1 804 649-6366 +roomNumber: 8197 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Christian Norwood,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christian Norwood +sn: Norwood +description: This is Christian Norwood's description +facsimileTelephoneNumber: +1 213 138-8384 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 754-3460 +title: Supreme Management Pinhead +userPassword: Password1 +uid: NorwoodC +givenName: Christian +mail: NorwoodC@9c67311a9b9a47fdab61ba341dc09ba9.bitwarden.com +carLicense: LQDGYI +departmentNumber: 2410 +employeeType: Normal +homePhone: +1 213 895-3723 +initials: C. N. +mobile: +1 213 390-4671 +pager: +1 213 286-9896 +roomNumber: 9808 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Den Fogle,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Den Fogle +sn: Fogle +description: This is Den Fogle's description +facsimileTelephoneNumber: +1 408 226-9615 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 745-8320 +title: Master Product Testing Architect +userPassword: Password1 +uid: FogleD +givenName: Den +mail: FogleD@4fd308eba088404ab84d4a632c943b2d.bitwarden.com +carLicense: B2FPVK +departmentNumber: 7674 +employeeType: Contract +homePhone: +1 408 546-9723 +initials: D. F. +mobile: +1 408 867-1909 +pager: +1 408 722-7966 +roomNumber: 9915 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Letisha Kardomateas +sn: Kardomateas +description: This is Letisha Kardomateas's description +facsimileTelephoneNumber: +1 213 380-5069 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 213 597-1333 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: KardomaL +givenName: Letisha +mail: KardomaL@53730a8d12f040129003f875c65328b6.bitwarden.com +carLicense: Q7931V +departmentNumber: 6533 +employeeType: Contract +homePhone: +1 213 543-2481 +initials: L. K. +mobile: +1 213 814-3407 +pager: +1 213 280-5449 +roomNumber: 8874 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalvin Moyce +sn: Moyce +description: This is Kalvin Moyce's description +facsimileTelephoneNumber: +1 213 211-5110 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 313-8990 +title: Supreme Janitorial Punk +userPassword: Password1 +uid: MoyceK +givenName: Kalvin +mail: MoyceK@ce3c3de60304481ea49d2ee345f72ace.bitwarden.com +carLicense: 3IFRYI +departmentNumber: 9068 +employeeType: Normal +homePhone: +1 213 409-4231 +initials: K. M. +mobile: +1 213 545-6641 +pager: +1 213 191-9703 +roomNumber: 8120 +manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karol Dummer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karol Dummer +sn: Dummer +description: This is Karol Dummer's description +facsimileTelephoneNumber: +1 408 223-8631 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 408 447-1521 +title: Master Product Testing Visionary +userPassword: Password1 +uid: DummerK +givenName: Karol +mail: DummerK@6fd29755fe674bd2b6f70bd1498c6322.bitwarden.com +carLicense: K2VCNJ +departmentNumber: 5323 +employeeType: Normal +homePhone: +1 408 807-7924 +initials: K. D. +mobile: +1 408 213-2002 +pager: +1 408 682-2118 +roomNumber: 9365 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Myrna Samora,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Myrna Samora +sn: Samora +description: This is Myrna Samora's description +facsimileTelephoneNumber: +1 415 299-5706 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 415 499-3009 +title: Master Peons Sales Rep +userPassword: Password1 +uid: SamoraM +givenName: Myrna +mail: SamoraM@a26a9c7d638a4a938f85aa60d8cdaebf.bitwarden.com +carLicense: RHII5P +departmentNumber: 6342 +employeeType: Employee +homePhone: +1 415 174-3696 +initials: M. S. +mobile: +1 415 382-2775 +pager: +1 415 479-1818 +roomNumber: 9550 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alnoor Cuccioletta +sn: Cuccioletta +description: This is Alnoor Cuccioletta's description +facsimileTelephoneNumber: +1 213 613-4262 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 213 790-2489 +title: Associate Management Director +userPassword: Password1 +uid: CucciolA +givenName: Alnoor +mail: CucciolA@7747f5fffb014d46a2a05d592c7bbe1a.bitwarden.com +carLicense: BSQGKO +departmentNumber: 4849 +employeeType: Normal +homePhone: +1 213 322-7829 +initials: A. C. +mobile: +1 213 579-6680 +pager: +1 213 889-6061 +roomNumber: 9692 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=KuiSoon Bajada,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KuiSoon Bajada +sn: Bajada +description: This is KuiSoon Bajada's description +facsimileTelephoneNumber: +1 510 835-3445 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 515-8561 +title: Supreme Management Mascot +userPassword: Password1 +uid: BajadaK +givenName: KuiSoon +mail: BajadaK@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com +carLicense: QBOQOP +departmentNumber: 2140 +employeeType: Employee +homePhone: +1 510 462-2174 +initials: K. B. +mobile: +1 510 929-1867 +pager: +1 510 657-2310 +roomNumber: 9096 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Alvina Madison,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvina Madison +sn: Madison +description: This is Alvina Madison's description +facsimileTelephoneNumber: +1 415 495-6034 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 615-2306 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: MadisonA +givenName: Alvina +mail: MadisonA@ef9dfa73b56a46a59a0d8721e608cbdf.bitwarden.com +carLicense: QJDVXY +departmentNumber: 8829 +employeeType: Contract +homePhone: +1 415 298-6189 +initials: A. M. +mobile: +1 415 456-3868 +pager: +1 415 943-4452 +roomNumber: 9794 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Celyne Krater,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Celyne Krater +sn: Krater +description: This is Celyne Krater's description +facsimileTelephoneNumber: +1 415 216-9503 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 415 356-3530 +title: Master Human Resources Janitor +userPassword: Password1 +uid: KraterC +givenName: Celyne +mail: KraterC@ac9bf0e4278e4b36812b33be5aa4f608.bitwarden.com +carLicense: EO51QH +departmentNumber: 2892 +employeeType: Employee +homePhone: +1 415 120-1818 +initials: C. K. +mobile: +1 415 436-1368 +pager: +1 415 819-3817 +roomNumber: 8424 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pierre Hysler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pierre Hysler +sn: Hysler +description: This is Pierre Hysler's description +facsimileTelephoneNumber: +1 213 893-3642 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 213 574-6267 +title: Chief Management Grunt +userPassword: Password1 +uid: HyslerP +givenName: Pierre +mail: HyslerP@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com +carLicense: 1IPTLO +departmentNumber: 3489 +employeeType: Normal +homePhone: +1 213 508-6831 +initials: P. H. +mobile: +1 213 337-4421 +pager: +1 213 200-1028 +roomNumber: 9009 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gordy Fab,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gordy Fab +sn: Fab +description: This is Gordy Fab's description +facsimileTelephoneNumber: +1 206 341-1634 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 689-7130 +title: Junior Administrative Janitor +userPassword: Password1 +uid: FabG +givenName: Gordy +mail: FabG@59b0f3f771e94b3fb34ff9f80e0b476b.bitwarden.com +carLicense: MJQNHX +departmentNumber: 5826 +employeeType: Employee +homePhone: +1 206 335-7007 +initials: G. F. +mobile: +1 206 551-8419 +pager: +1 206 378-4739 +roomNumber: 9922 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mouna LaRue,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mouna LaRue +sn: LaRue +description: This is Mouna LaRue's description +facsimileTelephoneNumber: +1 510 670-5516 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 629-7283 +title: Master Product Development Punk +userPassword: Password1 +uid: LaRueM +givenName: Mouna +mail: LaRueM@869bcf8a299b41b19a933afcb83f9250.bitwarden.com +carLicense: JE8PQ8 +departmentNumber: 1804 +employeeType: Contract +homePhone: +1 510 205-6269 +initials: M. L. +mobile: +1 510 197-7518 +pager: +1 510 416-3283 +roomNumber: 9621 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarabelle Beaubien +sn: Beaubien +description: This is Clarabelle Beaubien's description +facsimileTelephoneNumber: +1 213 363-5649 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 684-8880 +title: Chief Janitorial Evangelist +userPassword: Password1 +uid: BeaubieC +givenName: Clarabelle +mail: BeaubieC@02a64bb675cb4342ba7d85e9f53c10e3.bitwarden.com +carLicense: OB0IF9 +departmentNumber: 7848 +employeeType: Contract +homePhone: +1 213 888-6186 +initials: C. B. +mobile: +1 213 955-9239 +pager: +1 213 863-8145 +roomNumber: 8380 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Janot Carella,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janot Carella +sn: Carella +description: This is Janot Carella's description +facsimileTelephoneNumber: +1 804 555-7637 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 489-3628 +title: Supreme Administrative Developer +userPassword: Password1 +uid: CarellaJ +givenName: Janot +mail: CarellaJ@99adc70861e74db5b3e496e79ef1d82c.bitwarden.com +carLicense: 6OTYPA +departmentNumber: 5985 +employeeType: Normal +homePhone: +1 804 596-4075 +initials: J. C. +mobile: +1 804 810-3266 +pager: +1 804 408-6811 +roomNumber: 8164 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vanny Blauer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanny Blauer +sn: Blauer +description: This is Vanny Blauer's description +facsimileTelephoneNumber: +1 206 660-2691 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 933-1426 +title: Junior Product Testing Architect +userPassword: Password1 +uid: BlauerV +givenName: Vanny +mail: BlauerV@6d9d7b1cc3684aeba19170292652b3d0.bitwarden.com +carLicense: JSL8PJ +departmentNumber: 6957 +employeeType: Contract +homePhone: +1 206 759-8728 +initials: V. B. +mobile: +1 206 117-7136 +pager: +1 206 529-4984 +roomNumber: 9022 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rania Rymkiewicz +sn: Rymkiewicz +description: This is Rania Rymkiewicz's description +facsimileTelephoneNumber: +1 804 112-9511 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 231-4599 +title: Supreme Janitorial Developer +userPassword: Password1 +uid: RymkiewR +givenName: Rania +mail: RymkiewR@bf2777e1bdc741d1becaefb23144f2ff.bitwarden.com +carLicense: SBPOHW +departmentNumber: 3402 +employeeType: Employee +homePhone: +1 804 113-7389 +initials: R. R. +mobile: +1 804 281-7541 +pager: +1 804 347-6535 +roomNumber: 9125 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dineke Sheth,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dineke Sheth +sn: Sheth +description: This is Dineke Sheth's description +facsimileTelephoneNumber: +1 804 402-3490 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 804 877-4006 +title: Junior Payroll Dictator +userPassword: Password1 +uid: ShethD +givenName: Dineke +mail: ShethD@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com +carLicense: CE52FD +departmentNumber: 5916 +employeeType: Employee +homePhone: +1 804 140-7296 +initials: D. S. +mobile: +1 804 342-7297 +pager: +1 804 161-5387 +roomNumber: 8120 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Feliza Camblin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Feliza Camblin +sn: Camblin +description: This is Feliza Camblin's description +facsimileTelephoneNumber: +1 213 825-2623 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 406-5220 +title: Chief Product Development Janitor +userPassword: Password1 +uid: CamblinF +givenName: Feliza +mail: CamblinF@56aabbc898544c8399acb68bd9f1ecb0.bitwarden.com +carLicense: S1APYP +departmentNumber: 9804 +employeeType: Contract +homePhone: +1 213 540-9093 +initials: F. C. +mobile: +1 213 681-2985 +pager: +1 213 359-3817 +roomNumber: 9437 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zonda Bartush,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zonda Bartush +sn: Bartush +description: This is Zonda Bartush's description +facsimileTelephoneNumber: +1 804 354-3510 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 191-2764 +title: Master Payroll Madonna +userPassword: Password1 +uid: BartushZ +givenName: Zonda +mail: BartushZ@321b01a1b92242e68a892ee12821e529.bitwarden.com +carLicense: JUGS0N +departmentNumber: 8005 +employeeType: Normal +homePhone: +1 804 614-4748 +initials: Z. B. +mobile: +1 804 978-5531 +pager: +1 804 210-1316 +roomNumber: 8552 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Berneta Fainaru +sn: Fainaru +description: This is Berneta Fainaru's description +facsimileTelephoneNumber: +1 510 470-9582 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 332-4951 +title: Master Janitorial Admin +userPassword: Password1 +uid: FainaruB +givenName: Berneta +mail: FainaruB@7e878d5ac7f34222a15cdadf43462965.bitwarden.com +carLicense: RT1RKO +departmentNumber: 5406 +employeeType: Employee +homePhone: +1 510 962-7256 +initials: B. F. +mobile: +1 510 561-1595 +pager: +1 510 310-3433 +roomNumber: 9181 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Radford Wiklund,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Radford Wiklund +sn: Wiklund +description: This is Radford Wiklund's description +facsimileTelephoneNumber: +1 415 773-6528 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 199-6798 +title: Junior Human Resources Admin +userPassword: Password1 +uid: WiklundR +givenName: Radford +mail: WiklundR@7457f3dc34da48928e7e6436d305b132.bitwarden.com +carLicense: 895OV2 +departmentNumber: 1165 +employeeType: Normal +homePhone: +1 415 602-5690 +initials: R. W. +mobile: +1 415 880-6426 +pager: +1 415 609-1993 +roomNumber: 8630 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pamella Sosa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pamella Sosa +sn: Sosa +description: This is Pamella Sosa's description +facsimileTelephoneNumber: +1 415 882-2600 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 808-7042 +title: Master Payroll Grunt +userPassword: Password1 +uid: SosaP +givenName: Pamella +mail: SosaP@02d364e8b5314cbabf82326287f95a37.bitwarden.com +carLicense: EI8HD2 +departmentNumber: 8750 +employeeType: Normal +homePhone: +1 415 912-7898 +initials: P. S. +mobile: +1 415 300-4149 +pager: +1 415 606-5756 +roomNumber: 9060 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marya Felton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marya Felton +sn: Felton +description: This is Marya Felton's description +facsimileTelephoneNumber: +1 213 344-4757 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 213 297-1324 +title: Junior Janitorial Vice President +userPassword: Password1 +uid: FeltonM +givenName: Marya +mail: FeltonM@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com +carLicense: 0TRJUE +departmentNumber: 8449 +employeeType: Normal +homePhone: +1 213 822-4067 +initials: M. F. +mobile: +1 213 204-4416 +pager: +1 213 825-6312 +roomNumber: 8592 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Aindrea Cairns,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aindrea Cairns +sn: Cairns +description: This is Aindrea Cairns's description +facsimileTelephoneNumber: +1 818 845-2991 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 293-7056 +title: Junior Peons Engineer +userPassword: Password1 +uid: CairnsA +givenName: Aindrea +mail: CairnsA@0cc0e22ab87d4684add7d45a9b0fda60.bitwarden.com +carLicense: VIB4DR +departmentNumber: 9862 +employeeType: Contract +homePhone: +1 818 567-7582 +initials: A. C. +mobile: +1 818 321-3558 +pager: +1 818 213-9396 +roomNumber: 9650 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Katherina Deek,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katherina Deek +sn: Deek +description: This is Katherina Deek's description +facsimileTelephoneNumber: +1 206 719-1358 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 449-2613 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: DeekK +givenName: Katherina +mail: DeekK@fb4a2dbd97ab48dfa6d2e8c5573179c0.bitwarden.com +carLicense: RFJJB7 +departmentNumber: 7493 +employeeType: Employee +homePhone: +1 206 371-2738 +initials: K. D. +mobile: +1 206 351-5894 +pager: +1 206 320-5868 +roomNumber: 8914 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ardeen Grasman,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardeen Grasman +sn: Grasman +description: This is Ardeen Grasman's description +facsimileTelephoneNumber: +1 213 717-9984 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 520-3815 +title: Supreme Payroll Dictator +userPassword: Password1 +uid: GrasmanA +givenName: Ardeen +mail: GrasmanA@f71e60ae996f4c5ebaf5d7f30d0cd29a.bitwarden.com +carLicense: M2AKCK +departmentNumber: 6241 +employeeType: Employee +homePhone: +1 213 650-6047 +initials: A. G. +mobile: +1 213 650-9453 +pager: +1 213 426-4881 +roomNumber: 8682 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Isin VanOorschot,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Isin VanOorschot +sn: VanOorschot +description: This is Isin VanOorschot's description +facsimileTelephoneNumber: +1 415 600-7076 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 844-6883 +title: Supreme Administrative Punk +userPassword: Password1 +uid: VanOorsI +givenName: Isin +mail: VanOorsI@a5d2c703b13b45c8a8419761826a32aa.bitwarden.com +carLicense: QOJ1KE +departmentNumber: 4186 +employeeType: Normal +homePhone: +1 415 206-6485 +initials: I. V. +mobile: +1 415 215-6795 +pager: +1 415 629-2118 +roomNumber: 9736 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karrah Laferriere,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karrah Laferriere +sn: Laferriere +description: This is Karrah Laferriere's description +facsimileTelephoneNumber: +1 206 409-8809 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 614-7057 +title: Junior Product Development Artist +userPassword: Password1 +uid: LaferriK +givenName: Karrah +mail: LaferriK@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com +carLicense: 5V96C1 +departmentNumber: 5035 +employeeType: Contract +homePhone: +1 206 977-8088 +initials: K. L. +mobile: +1 206 915-8234 +pager: +1 206 885-3317 +roomNumber: 9525 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sanae Baynes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanae Baynes +sn: Baynes +description: This is Sanae Baynes's description +facsimileTelephoneNumber: +1 213 574-9063 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 899-4259 +title: Junior Human Resources President +userPassword: Password1 +uid: BaynesS +givenName: Sanae +mail: BaynesS@9db63434a78e416392ae93e3976c1bfc.bitwarden.com +carLicense: UOCIPO +departmentNumber: 3481 +employeeType: Normal +homePhone: +1 213 717-1718 +initials: S. B. +mobile: +1 213 455-1853 +pager: +1 213 848-5476 +roomNumber: 9328 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ortensia Nawaby +sn: Nawaby +description: This is Ortensia Nawaby's description +facsimileTelephoneNumber: +1 206 862-5480 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 567-8139 +title: Master Human Resources Janitor +userPassword: Password1 +uid: NawabyO +givenName: Ortensia +mail: NawabyO@1d0711f3e8d548e39cdf575baeb4ce17.bitwarden.com +carLicense: O8KWHU +departmentNumber: 5859 +employeeType: Normal +homePhone: +1 206 938-8317 +initials: O. N. +mobile: +1 206 631-3734 +pager: +1 206 931-3444 +roomNumber: 8968 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zainab Doan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zainab Doan +sn: Doan +description: This is Zainab Doan's description +facsimileTelephoneNumber: +1 206 926-2126 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 206 694-1388 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: DoanZ +givenName: Zainab +mail: DoanZ@aa334b1a73514c2283534b58c2c9420b.bitwarden.com +carLicense: CH1TBL +departmentNumber: 8890 +employeeType: Normal +homePhone: +1 206 463-5283 +initials: Z. D. +mobile: +1 206 129-2233 +pager: +1 206 386-7415 +roomNumber: 9917 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cassy Seagle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cassy Seagle +sn: Seagle +description: This is Cassy Seagle's description +facsimileTelephoneNumber: +1 206 921-6773 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 983-9351 +title: Associate Management Architect +userPassword: Password1 +uid: SeagleC +givenName: Cassy +mail: SeagleC@69110fc674fa4f148260f46145056777.bitwarden.com +carLicense: E4TLPO +departmentNumber: 6328 +employeeType: Employee +homePhone: +1 206 412-6612 +initials: C. S. +mobile: +1 206 177-6537 +pager: +1 206 632-9075 +roomNumber: 8494 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wonda McCallum,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wonda McCallum +sn: McCallum +description: This is Wonda McCallum's description +facsimileTelephoneNumber: +1 804 698-7146 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 804 288-6642 +title: Junior Human Resources Czar +userPassword: Password1 +uid: McCalluW +givenName: Wonda +mail: McCalluW@b33a6b1f0ec54653bdc3b3ea69c66e04.bitwarden.com +carLicense: DOIY4N +departmentNumber: 5577 +employeeType: Normal +homePhone: +1 804 880-2223 +initials: W. M. +mobile: +1 804 814-8338 +pager: +1 804 974-8251 +roomNumber: 8801 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Florina Meredith,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florina Meredith +sn: Meredith +description: This is Florina Meredith's description +facsimileTelephoneNumber: +1 213 850-2083 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 213 300-7039 +title: Associate Payroll Janitor +userPassword: Password1 +uid: MereditF +givenName: Florina +mail: MereditF@fb292094ced54372abffc8f9b3f21a26.bitwarden.com +carLicense: S68FNJ +departmentNumber: 9759 +employeeType: Employee +homePhone: +1 213 806-1177 +initials: F. M. +mobile: +1 213 790-6921 +pager: +1 213 905-2219 +roomNumber: 9518 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nat Sadeghi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nat Sadeghi +sn: Sadeghi +description: This is Nat Sadeghi's description +facsimileTelephoneNumber: +1 415 964-6071 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 415 809-1687 +title: Supreme Peons Vice President +userPassword: Password1 +uid: SadeghiN +givenName: Nat +mail: SadeghiN@ee0a394b2c0349338a67625cbf75e536.bitwarden.com +carLicense: GWGDUJ +departmentNumber: 1215 +employeeType: Employee +homePhone: +1 415 964-8040 +initials: N. S. +mobile: +1 415 688-8056 +pager: +1 415 149-6831 +roomNumber: 8789 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Hendra Viegas,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hendra Viegas +sn: Viegas +description: This is Hendra Viegas's description +facsimileTelephoneNumber: +1 818 551-9573 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 984-6767 +title: Supreme Management Visionary +userPassword: Password1 +uid: ViegasH +givenName: Hendra +mail: ViegasH@eb1784d5a4ea473392ddeedf92456d2b.bitwarden.com +carLicense: 60ORBX +departmentNumber: 5355 +employeeType: Employee +homePhone: +1 818 363-2115 +initials: H. V. +mobile: +1 818 795-9892 +pager: +1 818 917-4867 +roomNumber: 9450 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bettie Coutellier,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettie Coutellier +sn: Coutellier +description: This is Bettie Coutellier's description +facsimileTelephoneNumber: +1 804 804-9156 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 670-9764 +title: Master Payroll Fellow +userPassword: Password1 +uid: CoutellB +givenName: Bettie +mail: CoutellB@cf6dac232ed84a4abc7d8879d016deb3.bitwarden.com +carLicense: 45G27S +departmentNumber: 8167 +employeeType: Employee +homePhone: +1 804 573-9864 +initials: B. C. +mobile: +1 804 841-1695 +pager: +1 804 848-7544 +roomNumber: 8319 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fifi Daaboul +sn: Daaboul +description: This is Fifi Daaboul's description +facsimileTelephoneNumber: +1 206 771-9468 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 206 289-4903 +title: Associate Janitorial Technician +userPassword: Password1 +uid: DaaboulF +givenName: Fifi +mail: DaaboulF@8557bf093f9c42cfa11eafadaf8fc9c1.bitwarden.com +carLicense: GGVP9J +departmentNumber: 8457 +employeeType: Employee +homePhone: +1 206 278-5158 +initials: F. D. +mobile: +1 206 453-4660 +pager: +1 206 205-5898 +roomNumber: 8457 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Davis Connolly,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davis Connolly +sn: Connolly +description: This is Davis Connolly's description +facsimileTelephoneNumber: +1 206 187-4418 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 206 530-2088 +title: Supreme Peons Sales Rep +userPassword: Password1 +uid: ConnollD +givenName: Davis +mail: ConnollD@42e3b9b8ee274c8a9cda68af97a76f9f.bitwarden.com +carLicense: JK8SHH +departmentNumber: 2375 +employeeType: Normal +homePhone: +1 206 605-1347 +initials: D. C. +mobile: +1 206 658-8611 +pager: +1 206 782-5128 +roomNumber: 8555 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carma Rittenhouse,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carma Rittenhouse +sn: Rittenhouse +description: This is Carma Rittenhouse's description +facsimileTelephoneNumber: +1 415 352-6139 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 415 590-2320 +title: Supreme Peons Madonna +userPassword: Password1 +uid: RittenhC +givenName: Carma +mail: RittenhC@9d33ffd4da1445afb8600e31e26d24d8.bitwarden.com +carLicense: BRWCI8 +departmentNumber: 6208 +employeeType: Employee +homePhone: +1 415 145-4620 +initials: C. R. +mobile: +1 415 567-6440 +pager: +1 415 473-9287 +roomNumber: 9546 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kissie Pastorek +sn: Pastorek +description: This is Kissie Pastorek's description +facsimileTelephoneNumber: +1 818 740-4419 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 575-3302 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: PastoreK +givenName: Kissie +mail: PastoreK@fdfa91cc52474679acb5b6774dfb094f.bitwarden.com +carLicense: YXAI4S +departmentNumber: 2845 +employeeType: Normal +homePhone: +1 818 644-5875 +initials: K. P. +mobile: +1 818 771-6152 +pager: +1 818 372-5730 +roomNumber: 8890 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sarah Longchamps,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarah Longchamps +sn: Longchamps +description: This is Sarah Longchamps's description +facsimileTelephoneNumber: +1 510 238-9640 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 372-7388 +title: Chief Peons Technician +userPassword: Password1 +uid: LongchaS +givenName: Sarah +mail: LongchaS@b6298340ba144f0b8733c3b9bced2139.bitwarden.com +carLicense: 574SPY +departmentNumber: 2981 +employeeType: Employee +homePhone: +1 510 431-9755 +initials: S. L. +mobile: +1 510 194-3192 +pager: +1 510 931-7700 +roomNumber: 8796 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Haroon Neefs,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haroon Neefs +sn: Neefs +description: This is Haroon Neefs's description +facsimileTelephoneNumber: +1 818 593-8321 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 818 527-5426 +title: Junior Human Resources Mascot +userPassword: Password1 +uid: NeefsH +givenName: Haroon +mail: NeefsH@9e8d975d9dd144cc96db09fe1a3c236a.bitwarden.com +carLicense: 7T11VG +departmentNumber: 3483 +employeeType: Employee +homePhone: +1 818 732-9147 +initials: H. N. +mobile: +1 818 900-3869 +pager: +1 818 981-5514 +roomNumber: 8024 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilysa Bulkovshteyn +sn: Bulkovshteyn +description: This is Ilysa Bulkovshteyn's description +facsimileTelephoneNumber: +1 818 984-9804 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 679-7029 +title: Associate Janitorial Czar +userPassword: Password1 +uid: BulkovsI +givenName: Ilysa +mail: BulkovsI@e0c925d836104225ad7119289c418ab5.bitwarden.com +carLicense: FTH0US +departmentNumber: 2693 +employeeType: Normal +homePhone: +1 818 344-8945 +initials: I. B. +mobile: +1 818 984-8780 +pager: +1 818 426-1127 +roomNumber: 8855 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jenson Soumis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenson Soumis +sn: Soumis +description: This is Jenson Soumis's description +facsimileTelephoneNumber: +1 510 763-2805 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 214-8436 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: SoumisJ +givenName: Jenson +mail: SoumisJ@999816b5a97d4ddb86dcefd199a0b0ab.bitwarden.com +carLicense: URXMDW +departmentNumber: 7905 +employeeType: Contract +homePhone: +1 510 864-3705 +initials: J. S. +mobile: +1 510 765-5317 +pager: +1 510 203-1252 +roomNumber: 9229 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Minni Malynowsky,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minni Malynowsky +sn: Malynowsky +description: This is Minni Malynowsky's description +facsimileTelephoneNumber: +1 408 686-5233 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 723-3623 +title: Junior Product Development Writer +userPassword: Password1 +uid: MalynowM +givenName: Minni +mail: MalynowM@df91f02938d046d8adb3f260f0e722ef.bitwarden.com +carLicense: 5DXCF2 +departmentNumber: 5468 +employeeType: Employee +homePhone: +1 408 676-6902 +initials: M. M. +mobile: +1 408 637-5025 +pager: +1 408 497-3515 +roomNumber: 8769 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Issam Coord,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Issam Coord +sn: Coord +description: This is Issam Coord's description +facsimileTelephoneNumber: +1 415 755-8987 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 415 513-5334 +title: Junior Product Testing Admin +userPassword: Password1 +uid: CoordI +givenName: Issam +mail: CoordI@c3fff83a4ae14cdfafade886fdcd1bf4.bitwarden.com +carLicense: FS7QN6 +departmentNumber: 7704 +employeeType: Normal +homePhone: +1 415 880-3747 +initials: I. C. +mobile: +1 415 669-9773 +pager: +1 415 432-5453 +roomNumber: 8941 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lynna Salam,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynna Salam +sn: Salam +description: This is Lynna Salam's description +facsimileTelephoneNumber: +1 510 883-6655 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 590-5022 +title: Associate Administrative Dictator +userPassword: Password1 +uid: SalamL +givenName: Lynna +mail: SalamL@88d921807e6d4efcbe781081bb56a4f0.bitwarden.com +carLicense: W24C07 +departmentNumber: 1612 +employeeType: Employee +homePhone: +1 510 597-2952 +initials: L. S. +mobile: +1 510 998-3600 +pager: +1 510 343-6656 +roomNumber: 9672 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Huong Quinones,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Huong Quinones +sn: Quinones +description: This is Huong Quinones's description +facsimileTelephoneNumber: +1 510 405-8446 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 510 909-4834 +title: Supreme Payroll Stooge +userPassword: Password1 +uid: QuinoneH +givenName: Huong +mail: QuinoneH@982161c18d1c4b49bf26a62584cbb202.bitwarden.com +carLicense: OQQ8UD +departmentNumber: 6023 +employeeType: Normal +homePhone: +1 510 172-1796 +initials: H. Q. +mobile: +1 510 388-2363 +pager: +1 510 248-1314 +roomNumber: 9722 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Class Picard,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Class Picard +sn: Picard +description: This is Class Picard's description +facsimileTelephoneNumber: +1 408 819-7671 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 408 471-2116 +title: Supreme Payroll Warrior +userPassword: Password1 +uid: PicardC +givenName: Class +mail: PicardC@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com +carLicense: 3SQUEA +departmentNumber: 4496 +employeeType: Employee +homePhone: +1 408 291-3179 +initials: C. P. +mobile: +1 408 569-3518 +pager: +1 408 929-7034 +roomNumber: 8794 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerrilee Geddes +sn: Geddes +description: This is Gerrilee Geddes's description +facsimileTelephoneNumber: +1 818 433-6667 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 137-8218 +title: Master Human Resources President +userPassword: Password1 +uid: GeddesG +givenName: Gerrilee +mail: GeddesG@7756ec2c272a477595e6c246408ba8de.bitwarden.com +carLicense: GFS33J +departmentNumber: 4833 +employeeType: Contract +homePhone: +1 818 730-9628 +initials: G. G. +mobile: +1 818 239-2388 +pager: +1 818 405-2994 +roomNumber: 8944 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Craig Kneisel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Craig Kneisel +sn: Kneisel +description: This is Craig Kneisel's description +facsimileTelephoneNumber: +1 213 902-8271 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 751-4902 +title: Master Product Development Consultant +userPassword: Password1 +uid: KneiselC +givenName: Craig +mail: KneiselC@f6a15f7382e844a784e99c66615d4c58.bitwarden.com +carLicense: SRX3CX +departmentNumber: 5575 +employeeType: Employee +homePhone: +1 213 259-3455 +initials: C. K. +mobile: +1 213 864-4101 +pager: +1 213 267-9420 +roomNumber: 8752 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fay Franco,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fay Franco +sn: Franco +description: This is Fay Franco's description +facsimileTelephoneNumber: +1 804 944-3949 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 722-2557 +title: Junior Administrative Developer +userPassword: Password1 +uid: FrancoF +givenName: Fay +mail: FrancoF@c4dfc71b0753437c958ea6ea07827916.bitwarden.com +carLicense: 7RPU3O +departmentNumber: 5571 +employeeType: Employee +homePhone: +1 804 554-4240 +initials: F. F. +mobile: +1 804 662-5156 +pager: +1 804 572-3509 +roomNumber: 8620 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rijn Zoellner +sn: Zoellner +description: This is Rijn Zoellner's description +facsimileTelephoneNumber: +1 415 930-3794 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 415 961-9161 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: ZoellneR +givenName: Rijn +mail: ZoellneR@c26660b210ac46199a711eb8c8869838.bitwarden.com +carLicense: Q2NI6C +departmentNumber: 7200 +employeeType: Normal +homePhone: +1 415 547-1475 +initials: R. Z. +mobile: +1 415 820-6546 +pager: +1 415 423-7646 +roomNumber: 8080 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgeanna Strauch +sn: Strauch +description: This is Georgeanna Strauch's description +facsimileTelephoneNumber: +1 206 389-9122 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 903-3852 +title: Master Product Development Sales Rep +userPassword: Password1 +uid: StrauchG +givenName: Georgeanna +mail: StrauchG@a202d5209c7047ff8a841ac785c909b8.bitwarden.com +carLicense: Y5DNJC +departmentNumber: 1574 +employeeType: Normal +homePhone: +1 206 383-8591 +initials: G. S. +mobile: +1 206 646-3508 +pager: +1 206 478-1431 +roomNumber: 8152 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gae Garrett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gae Garrett +sn: Garrett +description: This is Gae Garrett's description +facsimileTelephoneNumber: +1 408 841-8406 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 408 729-8519 +title: Supreme Peons Czar +userPassword: Password1 +uid: GarrettG +givenName: Gae +mail: GarrettG@627980edebc9489aa1090404c21eeba1.bitwarden.com +carLicense: 5SDEH2 +departmentNumber: 6023 +employeeType: Normal +homePhone: +1 408 997-7292 +initials: G. G. +mobile: +1 408 360-5731 +pager: +1 408 280-6406 +roomNumber: 9161 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Martita Sales,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martita Sales +sn: Sales +description: This is Martita Sales's description +facsimileTelephoneNumber: +1 408 376-6833 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 367-9940 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: SalesM +givenName: Martita +mail: SalesM@67f4fc26cd9549b3a5eca4e7223ddec0.bitwarden.com +carLicense: O6KUCR +departmentNumber: 3062 +employeeType: Employee +homePhone: +1 408 141-5541 +initials: M. S. +mobile: +1 408 440-4821 +pager: +1 408 844-2865 +roomNumber: 8512 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Amaleta McClelland,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amaleta McClelland +sn: McClelland +description: This is Amaleta McClelland's description +facsimileTelephoneNumber: +1 804 957-2388 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 516-1399 +title: Junior Management Czar +userPassword: Password1 +uid: McClellA +givenName: Amaleta +mail: McClellA@403ad564c08e47b8824594419bf3ec17.bitwarden.com +carLicense: AR336X +departmentNumber: 2008 +employeeType: Employee +homePhone: +1 804 696-7935 +initials: A. M. +mobile: +1 804 520-5169 +pager: +1 804 190-7376 +roomNumber: 8240 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rico Vandevalk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rico Vandevalk +sn: Vandevalk +description: This is Rico Vandevalk's description +facsimileTelephoneNumber: +1 415 588-5578 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 737-1578 +title: Supreme Administrative Writer +userPassword: Password1 +uid: VandevaR +givenName: Rico +mail: VandevaR@415554f5adbe4c70a27d90a1a4deab5a.bitwarden.com +carLicense: GQAKEX +departmentNumber: 4056 +employeeType: Employee +homePhone: +1 415 771-9174 +initials: R. V. +mobile: +1 415 388-4388 +pager: +1 415 884-7024 +roomNumber: 8364 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nanny Kempski,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nanny Kempski +sn: Kempski +description: This is Nanny Kempski's description +facsimileTelephoneNumber: +1 408 158-7590 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 645-2558 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: KempskiN +givenName: Nanny +mail: KempskiN@321b01a1b92242e68a892ee12821e529.bitwarden.com +carLicense: PV1QLJ +departmentNumber: 3740 +employeeType: Employee +homePhone: +1 408 610-8035 +initials: N. K. +mobile: +1 408 478-6064 +pager: +1 408 922-5069 +roomNumber: 8909 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Antonella Stambouli,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antonella Stambouli +sn: Stambouli +description: This is Antonella Stambouli's description +facsimileTelephoneNumber: +1 206 396-3320 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 720-4821 +title: Associate Management Fellow +userPassword: Password1 +uid: StambouA +givenName: Antonella +mail: StambouA@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com +carLicense: K5TROO +departmentNumber: 8871 +employeeType: Employee +homePhone: +1 206 197-2439 +initials: A. S. +mobile: +1 206 701-6360 +pager: +1 206 665-7142 +roomNumber: 9971 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bibbye Aldhizer +sn: Aldhizer +description: This is Bibbye Aldhizer's description +facsimileTelephoneNumber: +1 804 661-2964 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 679-8889 +title: Associate Product Testing Architect +userPassword: Password1 +uid: AldhizeB +givenName: Bibbye +mail: AldhizeB@ae68418003e140fcbb7a4f2dbfa228c1.bitwarden.com +carLicense: L63AOG +departmentNumber: 7585 +employeeType: Employee +homePhone: +1 804 563-7539 +initials: B. A. +mobile: +1 804 614-4997 +pager: +1 804 413-2557 +roomNumber: 9158 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rhett Womack,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rhett Womack +sn: Womack +description: This is Rhett Womack's description +facsimileTelephoneNumber: +1 206 155-9855 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 338-1298 +title: Junior Management Vice President +userPassword: Password1 +uid: WomackR +givenName: Rhett +mail: WomackR@9c1452db789c444e9e9d833c048f2e21.bitwarden.com +carLicense: B8AM70 +departmentNumber: 9684 +employeeType: Contract +homePhone: +1 206 626-6467 +initials: R. W. +mobile: +1 206 465-2326 +pager: +1 206 611-1858 +roomNumber: 9948 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kenneth Afkham,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kenneth Afkham +sn: Afkham +description: This is Kenneth Afkham's description +facsimileTelephoneNumber: +1 213 769-3114 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 469-4303 +title: Master Peons Czar +userPassword: Password1 +uid: AfkhamK +givenName: Kenneth +mail: AfkhamK@975433a41ce24ba59e1df5051b6724e9.bitwarden.com +carLicense: 9NWP8G +departmentNumber: 2776 +employeeType: Employee +homePhone: +1 213 541-7004 +initials: K. A. +mobile: +1 213 820-7371 +pager: +1 213 504-8489 +roomNumber: 8334 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Asmar Dermardiros,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Asmar Dermardiros +sn: Dermardiros +description: This is Asmar Dermardiros's description +facsimileTelephoneNumber: +1 804 853-3933 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 804 653-6796 +title: Supreme Peons Visionary +userPassword: Password1 +uid: DermardA +givenName: Asmar +mail: DermardA@239b668cfa5b4428b1bdcd0e10203d09.bitwarden.com +carLicense: GC7XBN +departmentNumber: 9698 +employeeType: Normal +homePhone: +1 804 146-8698 +initials: A. D. +mobile: +1 804 505-9652 +pager: +1 804 520-6105 +roomNumber: 9595 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marabel ORourke,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marabel ORourke +sn: ORourke +description: This is Marabel ORourke's description +facsimileTelephoneNumber: +1 213 437-3475 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 945-6047 +title: Supreme Human Resources Grunt +userPassword: Password1 +uid: ORourkeM +givenName: Marabel +mail: ORourkeM@53d9002f0c614599a72d6e2756021160.bitwarden.com +carLicense: PAVRSW +departmentNumber: 7210 +employeeType: Normal +homePhone: +1 213 960-3962 +initials: M. O. +mobile: +1 213 793-5980 +pager: +1 213 673-6658 +roomNumber: 9380 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lowry Fahey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lowry Fahey +sn: Fahey +description: This is Lowry Fahey's description +facsimileTelephoneNumber: +1 510 698-1987 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 510 340-3743 +title: Supreme Management Punk +userPassword: Password1 +uid: FaheyL +givenName: Lowry +mail: FaheyL@2efaf5e757274a05a9df0223ae176be1.bitwarden.com +carLicense: DRO2G8 +departmentNumber: 5124 +employeeType: Contract +homePhone: +1 510 821-1721 +initials: L. F. +mobile: +1 510 769-1367 +pager: +1 510 336-5055 +roomNumber: 9006 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Christy Phalpher,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christy Phalpher +sn: Phalpher +description: This is Christy Phalpher's description +facsimileTelephoneNumber: +1 206 841-9506 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 648-2029 +title: Chief Administrative Punk +userPassword: Password1 +uid: PhalpheC +givenName: Christy +mail: PhalpheC@3313782fad5f448f843eeeeabc4b6528.bitwarden.com +carLicense: DTPBY4 +departmentNumber: 1488 +employeeType: Normal +homePhone: +1 206 640-4665 +initials: C. P. +mobile: +1 206 217-8316 +pager: +1 206 150-6928 +roomNumber: 8523 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dolorita Binggeli +sn: Binggeli +description: This is Dolorita Binggeli's description +facsimileTelephoneNumber: +1 510 269-4001 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 189-6507 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: BinggelD +givenName: Dolorita +mail: BinggelD@52e746b148db486a82aefd7394487227.bitwarden.com +carLicense: WPTR3D +departmentNumber: 3446 +employeeType: Normal +homePhone: +1 510 819-1016 +initials: D. B. +mobile: +1 510 122-5829 +pager: +1 510 450-7375 +roomNumber: 9138 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emr Hacker,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emr Hacker +sn: Hacker +description: This is Emr Hacker's description +facsimileTelephoneNumber: +1 804 975-2461 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 953-7883 +title: Supreme Management Czar +userPassword: Password1 +uid: HackerE +givenName: Emr +mail: HackerE@703805ed33844be785223bfd3a5cb030.bitwarden.com +carLicense: XDIDBC +departmentNumber: 2388 +employeeType: Employee +homePhone: +1 804 799-6867 +initials: E. H. +mobile: +1 804 481-7374 +pager: +1 804 209-7778 +roomNumber: 9475 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Estelle Robieux,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Estelle Robieux +sn: Robieux +description: This is Estelle Robieux's description +facsimileTelephoneNumber: +1 206 372-3920 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 206 957-3329 +title: Junior Peons Technician +userPassword: Password1 +uid: RobieuxE +givenName: Estelle +mail: RobieuxE@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com +carLicense: XAYK2V +departmentNumber: 9500 +employeeType: Normal +homePhone: +1 206 778-4400 +initials: E. R. +mobile: +1 206 477-4636 +pager: +1 206 934-3442 +roomNumber: 9412 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abahri Hawrysh +sn: Hawrysh +description: This is Abahri Hawrysh's description +facsimileTelephoneNumber: +1 213 591-1329 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 338-9757 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: HawryshA +givenName: Abahri +mail: HawryshA@b827aeadf87046f484e6a5d514c5b320.bitwarden.com +carLicense: 1Y6QLT +departmentNumber: 1296 +employeeType: Contract +homePhone: +1 213 550-4631 +initials: A. H. +mobile: +1 213 714-5987 +pager: +1 213 775-7772 +roomNumber: 8736 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheilakathryn Hirshman +sn: Hirshman +description: This is Sheilakathryn Hirshman's description +facsimileTelephoneNumber: +1 804 178-1395 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 917-9701 +title: Master Product Development Figurehead +userPassword: Password1 +uid: HirshmaS +givenName: Sheilakathryn +mail: HirshmaS@dfd74a54e46140bbbd208154864b4090.bitwarden.com +carLicense: RBDUA5 +departmentNumber: 6502 +employeeType: Employee +homePhone: +1 804 561-1741 +initials: S. H. +mobile: +1 804 278-6345 +pager: +1 804 295-1220 +roomNumber: 9589 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ashraf Maybee,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashraf Maybee +sn: Maybee +description: This is Ashraf Maybee's description +facsimileTelephoneNumber: +1 213 859-3084 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 740-4647 +title: Chief Administrative Sales Rep +userPassword: Password1 +uid: MaybeeA +givenName: Ashraf +mail: MaybeeA@44096bc0588c471797cb8902036037bd.bitwarden.com +carLicense: VR6LV0 +departmentNumber: 1074 +employeeType: Contract +homePhone: +1 213 900-1162 +initials: A. M. +mobile: +1 213 207-4875 +pager: +1 213 934-8965 +roomNumber: 8480 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bakel Sils,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bakel Sils +sn: Sils +description: This is Bakel Sils's description +facsimileTelephoneNumber: +1 804 455-3476 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 414-4058 +title: Chief Product Testing Warrior +userPassword: Password1 +uid: SilsB +givenName: Bakel +mail: SilsB@a54c7df8ebbf43f99b4f24faf5b4f79c.bitwarden.com +carLicense: Q0E0RV +departmentNumber: 9816 +employeeType: Contract +homePhone: +1 804 141-3711 +initials: B. S. +mobile: +1 804 197-8333 +pager: +1 804 724-2364 +roomNumber: 9014 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Linnell Wepf,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Linnell Wepf +sn: Wepf +description: This is Linnell Wepf's description +facsimileTelephoneNumber: +1 415 142-1333 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 415 891-4220 +title: Supreme Peons Warrior +userPassword: Password1 +uid: WepfL +givenName: Linnell +mail: WepfL@4d236ad201e144feaf6ab19937ae47de.bitwarden.com +carLicense: W9OASA +departmentNumber: 9464 +employeeType: Normal +homePhone: +1 415 603-4965 +initials: L. W. +mobile: +1 415 991-5231 +pager: +1 415 381-7053 +roomNumber: 8665 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Foad Lebeau,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Foad Lebeau +sn: Lebeau +description: This is Foad Lebeau's description +facsimileTelephoneNumber: +1 510 175-8844 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 580-2660 +title: Chief Janitorial Madonna +userPassword: Password1 +uid: LebeauF +givenName: Foad +mail: LebeauF@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com +carLicense: RWMG74 +departmentNumber: 9529 +employeeType: Employee +homePhone: +1 510 637-5934 +initials: F. L. +mobile: +1 510 667-5619 +pager: +1 510 277-1012 +roomNumber: 8079 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bal Braverman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bal Braverman +sn: Braverman +description: This is Bal Braverman's description +facsimileTelephoneNumber: +1 213 437-6628 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 979-4580 +title: Master Peons Director +userPassword: Password1 +uid: BravermB +givenName: Bal +mail: BravermB@0d3732b7ea1d4d659dee1e0435292c15.bitwarden.com +carLicense: NNYFV6 +departmentNumber: 5235 +employeeType: Contract +homePhone: +1 213 880-8889 +initials: B. B. +mobile: +1 213 286-5768 +pager: +1 213 243-2699 +roomNumber: 9857 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gib Eslambolchi +sn: Eslambolchi +description: This is Gib Eslambolchi's description +facsimileTelephoneNumber: +1 206 614-6964 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 206 834-9664 +title: Associate Human Resources Pinhead +userPassword: Password1 +uid: EslamboG +givenName: Gib +mail: EslamboG@c8a26fbe5497453bad20457867557fff.bitwarden.com +carLicense: F532UD +departmentNumber: 5992 +employeeType: Normal +homePhone: +1 206 764-5985 +initials: G. E. +mobile: +1 206 531-2219 +pager: +1 206 256-6714 +roomNumber: 8519 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Buda Virchick,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Buda Virchick +sn: Virchick +description: This is Buda Virchick's description +facsimileTelephoneNumber: +1 510 548-9802 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 510 721-9354 +title: Master Janitorial Dictator +userPassword: Password1 +uid: VirchicB +givenName: Buda +mail: VirchicB@6489fafbf61a4caab26d661679e37a51.bitwarden.com +carLicense: KVK9DT +departmentNumber: 5272 +employeeType: Normal +homePhone: +1 510 392-8292 +initials: B. V. +mobile: +1 510 180-9558 +pager: +1 510 421-6970 +roomNumber: 8094 +manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronalda Ambach +sn: Ambach +description: This is Ronalda Ambach's description +facsimileTelephoneNumber: +1 408 675-4425 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 221-2559 +title: Supreme Product Testing Grunt +userPassword: Password1 +uid: AmbachR +givenName: Ronalda +mail: AmbachR@19f0b3104cc549c5972e2013b118e2bf.bitwarden.com +carLicense: JOG3K3 +departmentNumber: 9679 +employeeType: Employee +homePhone: +1 408 183-6408 +initials: R. A. +mobile: +1 408 314-4621 +pager: +1 408 192-5149 +roomNumber: 9522 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meghan Kenyon +sn: Kenyon +description: This is Meghan Kenyon's description +facsimileTelephoneNumber: +1 408 466-4502 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 408 888-4587 +title: Junior Janitorial Madonna +userPassword: Password1 +uid: KenyonM +givenName: Meghan +mail: KenyonM@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com +carLicense: ADMJQQ +departmentNumber: 2667 +employeeType: Contract +homePhone: +1 408 323-3125 +initials: M. K. +mobile: +1 408 620-8706 +pager: +1 408 782-9153 +roomNumber: 8120 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alika Kirchner,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alika Kirchner +sn: Kirchner +description: This is Alika Kirchner's description +facsimileTelephoneNumber: +1 206 930-1281 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 206 857-1728 +title: Associate Peons Visionary +userPassword: Password1 +uid: KirchneA +givenName: Alika +mail: KirchneA@12e070c46c9248eda6657574192aedf1.bitwarden.com +carLicense: 24CS9N +departmentNumber: 3238 +employeeType: Normal +homePhone: +1 206 388-8029 +initials: A. K. +mobile: +1 206 241-2841 +pager: +1 206 404-9346 +roomNumber: 8644 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kata Hagerty,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kata Hagerty +sn: Hagerty +description: This is Kata Hagerty's description +facsimileTelephoneNumber: +1 818 139-8209 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 932-5892 +title: Associate Peons Assistant +userPassword: Password1 +uid: HagertyK +givenName: Kata +mail: HagertyK@939e830de4504aab81a7c388f1546624.bitwarden.com +carLicense: DAID1A +departmentNumber: 5989 +employeeType: Normal +homePhone: +1 818 245-9212 +initials: K. H. +mobile: +1 818 209-3362 +pager: +1 818 655-8413 +roomNumber: 8264 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lorraine Polk,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorraine Polk +sn: Polk +description: This is Lorraine Polk's description +facsimileTelephoneNumber: +1 408 534-5448 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 408 948-8940 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: PolkL +givenName: Lorraine +mail: PolkL@e822d8d41f85463a96816619505c18d0.bitwarden.com +carLicense: MECUM9 +departmentNumber: 6268 +employeeType: Employee +homePhone: +1 408 463-8143 +initials: L. P. +mobile: +1 408 224-4822 +pager: +1 408 809-8712 +roomNumber: 8608 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tildi Washburn,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tildi Washburn +sn: Washburn +description: This is Tildi Washburn's description +facsimileTelephoneNumber: +1 818 275-1564 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 864-4386 +title: Associate Product Testing Admin +userPassword: Password1 +uid: WashburT +givenName: Tildi +mail: WashburT@a8e8db7991ef41888b107f53097f906b.bitwarden.com +carLicense: UCP1YG +departmentNumber: 3061 +employeeType: Employee +homePhone: +1 818 657-6119 +initials: T. W. +mobile: +1 818 369-4862 +pager: +1 818 383-5679 +roomNumber: 9280 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Minette Reva,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minette Reva +sn: Reva +description: This is Minette Reva's description +facsimileTelephoneNumber: +1 415 127-9931 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 497-6714 +title: Associate Payroll Technician +userPassword: Password1 +uid: RevaM +givenName: Minette +mail: RevaM@45638c0afa5e4a23a27125f3cd5aa607.bitwarden.com +carLicense: JC56AA +departmentNumber: 9960 +employeeType: Employee +homePhone: +1 415 591-1715 +initials: M. R. +mobile: +1 415 251-2301 +pager: +1 415 508-5555 +roomNumber: 8309 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Farag Wolter,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farag Wolter +sn: Wolter +description: This is Farag Wolter's description +facsimileTelephoneNumber: +1 206 988-2582 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 506-2506 +title: Master Management Dictator +userPassword: Password1 +uid: WolterF +givenName: Farag +mail: WolterF@0569f2e4dd6a4e4a8a7f59c9d21907c3.bitwarden.com +carLicense: ULFJ15 +departmentNumber: 8131 +employeeType: Employee +homePhone: +1 206 798-9587 +initials: F. W. +mobile: +1 206 114-6189 +pager: +1 206 532-5564 +roomNumber: 8268 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=AnnMarie Valentik,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnnMarie Valentik +sn: Valentik +description: This is AnnMarie Valentik's description +facsimileTelephoneNumber: +1 804 258-3251 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 468-9531 +title: Master Management Janitor +userPassword: Password1 +uid: ValentiA +givenName: AnnMarie +mail: ValentiA@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com +carLicense: L6V0UW +departmentNumber: 9403 +employeeType: Contract +homePhone: +1 804 479-1560 +initials: A. V. +mobile: +1 804 668-6027 +pager: +1 804 227-3548 +roomNumber: 8436 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rudy Kaigler +sn: Kaigler +description: This is Rudy Kaigler's description +facsimileTelephoneNumber: +1 408 153-2860 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 261-6574 +title: Chief Human Resources Grunt +userPassword: Password1 +uid: KaiglerR +givenName: Rudy +mail: KaiglerR@723327dae88a42b1b49dd35709ea4974.bitwarden.com +carLicense: P0RJT6 +departmentNumber: 8456 +employeeType: Normal +homePhone: +1 408 608-7782 +initials: R. K. +mobile: +1 408 197-2449 +pager: +1 408 958-1060 +roomNumber: 9906 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=HooiLee Ronald,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HooiLee Ronald +sn: Ronald +description: This is HooiLee Ronald's description +facsimileTelephoneNumber: +1 415 614-1098 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 415 493-6798 +title: Associate Peons Visionary +userPassword: Password1 +uid: RonaldH +givenName: HooiLee +mail: RonaldH@8bb7a419aa064dabb3a5664772478164.bitwarden.com +carLicense: F3HM52 +departmentNumber: 6229 +employeeType: Normal +homePhone: +1 415 210-2907 +initials: H. R. +mobile: +1 415 658-3446 +pager: +1 415 232-8432 +roomNumber: 8860 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gipsy Raman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gipsy Raman +sn: Raman +description: This is Gipsy Raman's description +facsimileTelephoneNumber: +1 415 710-6315 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 522-2611 +title: Chief Human Resources Architect +userPassword: Password1 +uid: RamanG +givenName: Gipsy +mail: RamanG@f6485fb9c17a4291ac3724383aaae8e7.bitwarden.com +carLicense: 62SLEV +departmentNumber: 2846 +employeeType: Contract +homePhone: +1 415 273-4471 +initials: G. R. +mobile: +1 415 921-5190 +pager: +1 415 400-8100 +roomNumber: 9916 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Akram Nagendra,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akram Nagendra +sn: Nagendra +description: This is Akram Nagendra's description +facsimileTelephoneNumber: +1 510 135-8567 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 510 676-8064 +title: Associate Human Resources Architect +userPassword: Password1 +uid: NagendrA +givenName: Akram +mail: NagendrA@81a2fc82bdcd4a3582b8aa6d409fc9a1.bitwarden.com +carLicense: T1Q8HC +departmentNumber: 3916 +employeeType: Normal +homePhone: +1 510 107-4445 +initials: A. N. +mobile: +1 510 726-6760 +pager: +1 510 626-4433 +roomNumber: 8235 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bevyn Ovans +sn: Ovans +description: This is Bevyn Ovans's description +facsimileTelephoneNumber: +1 510 586-4991 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 900-2309 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: OvansB +givenName: Bevyn +mail: OvansB@5411fa97ed104161bed6dae71e8cb050.bitwarden.com +carLicense: BKN07M +departmentNumber: 6589 +employeeType: Contract +homePhone: +1 510 547-5754 +initials: B. O. +mobile: +1 510 145-8631 +pager: +1 510 359-7368 +roomNumber: 8640 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Glen Majeed,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glen Majeed +sn: Majeed +description: This is Glen Majeed's description +facsimileTelephoneNumber: +1 510 261-9034 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 776-7275 +title: Junior Payroll Dictator +userPassword: Password1 +uid: MajeedG +givenName: Glen +mail: MajeedG@f263976411814a39ae02ef1a1447e567.bitwarden.com +carLicense: W2LNP7 +departmentNumber: 5503 +employeeType: Employee +homePhone: +1 510 381-8293 +initials: G. M. +mobile: +1 510 131-5452 +pager: +1 510 267-9886 +roomNumber: 9545 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marieke Pien,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marieke Pien +sn: Pien +description: This is Marieke Pien's description +facsimileTelephoneNumber: +1 510 778-9373 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 510 184-3342 +title: Chief Janitorial Admin +userPassword: Password1 +uid: PienM +givenName: Marieke +mail: PienM@3118b07730ef4ee1ba02df2d8acb61a4.bitwarden.com +carLicense: LO1V0M +departmentNumber: 4421 +employeeType: Contract +homePhone: +1 510 511-5138 +initials: M. P. +mobile: +1 510 691-3461 +pager: +1 510 752-5013 +roomNumber: 8100 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ingrid Lieure,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ingrid Lieure +sn: Lieure +description: This is Ingrid Lieure's description +facsimileTelephoneNumber: +1 415 531-1081 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 415 269-3904 +title: Supreme Management Vice President +userPassword: Password1 +uid: LieureI +givenName: Ingrid +mail: LieureI@22b03905699c4e05b21e937a3135b87c.bitwarden.com +carLicense: W5CN7C +departmentNumber: 7935 +employeeType: Normal +homePhone: +1 415 661-9455 +initials: I. L. +mobile: +1 415 208-7187 +pager: +1 415 893-7855 +roomNumber: 8517 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Roya Tod,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roya Tod +sn: Tod +description: This is Roya Tod's description +facsimileTelephoneNumber: +1 206 456-5143 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 882-7544 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: TodR +givenName: Roya +mail: TodR@55d1ab95eef3488782a93b7bd4d6acf0.bitwarden.com +carLicense: 0NY8CY +departmentNumber: 7927 +employeeType: Contract +homePhone: +1 206 520-2816 +initials: R. T. +mobile: +1 206 785-7547 +pager: +1 206 488-8538 +roomNumber: 9671 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cherise DeMarco +sn: DeMarco +description: This is Cherise DeMarco's description +facsimileTelephoneNumber: +1 213 361-8437 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 320-4602 +title: Master Human Resources Architect +userPassword: Password1 +uid: DeMarcoC +givenName: Cherise +mail: DeMarcoC@1726f5bfacd044bf871463e64c567d5e.bitwarden.com +carLicense: XSVO55 +departmentNumber: 7329 +employeeType: Employee +homePhone: +1 213 620-1813 +initials: C. D. +mobile: +1 213 260-1164 +pager: +1 213 617-7736 +roomNumber: 8958 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Christye Meridew,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christye Meridew +sn: Meridew +description: This is Christye Meridew's description +facsimileTelephoneNumber: +1 213 115-5538 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 213 888-3676 +title: Master Product Testing Figurehead +userPassword: Password1 +uid: MeridewC +givenName: Christye +mail: MeridewC@96682e2a4433480fa87b37b2ffbd15b6.bitwarden.com +carLicense: S5XIRA +departmentNumber: 6820 +employeeType: Contract +homePhone: +1 213 807-1956 +initials: C. M. +mobile: +1 213 505-4884 +pager: +1 213 527-2840 +roomNumber: 8632 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Patrick Albers,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Patrick Albers +sn: Albers +description: This is Patrick Albers's description +facsimileTelephoneNumber: +1 408 285-5966 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 408 698-1284 +title: Junior Administrative Manager +userPassword: Password1 +uid: AlbersP +givenName: Patrick +mail: AlbersP@d534d4e018bc4513999f8eae2be01976.bitwarden.com +carLicense: 79ESIX +departmentNumber: 5430 +employeeType: Employee +homePhone: +1 408 671-1859 +initials: P. A. +mobile: +1 408 998-1210 +pager: +1 408 975-3013 +roomNumber: 9782 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Doralynn Swyer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doralynn Swyer +sn: Swyer +description: This is Doralynn Swyer's description +facsimileTelephoneNumber: +1 804 971-6686 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 249-5947 +title: Chief Peons Admin +userPassword: Password1 +uid: SwyerD +givenName: Doralynn +mail: SwyerD@900b9e73ea874cc4989de9de3d123d54.bitwarden.com +carLicense: D111VX +departmentNumber: 1000 +employeeType: Normal +homePhone: +1 804 805-6058 +initials: D. S. +mobile: +1 804 788-4354 +pager: +1 804 105-8385 +roomNumber: 9223 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vanni Katsouras,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanni Katsouras +sn: Katsouras +description: This is Vanni Katsouras's description +facsimileTelephoneNumber: +1 213 571-2573 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 213 485-9450 +title: Junior Management Assistant +userPassword: Password1 +uid: KatsourV +givenName: Vanni +mail: KatsourV@8429461810c443b49add09521f9c6b46.bitwarden.com +carLicense: RF64D2 +departmentNumber: 6483 +employeeType: Contract +homePhone: +1 213 551-6687 +initials: V. K. +mobile: +1 213 859-3033 +pager: +1 213 884-5883 +roomNumber: 8721 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rogelio McGrath,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rogelio McGrath +sn: McGrath +description: This is Rogelio McGrath's description +facsimileTelephoneNumber: +1 818 461-5961 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 818 988-9882 +title: Chief Administrative Writer +userPassword: Password1 +uid: McGrathR +givenName: Rogelio +mail: McGrathR@53f9c944c90445fcb9727989bead4466.bitwarden.com +carLicense: XL9PMC +departmentNumber: 2266 +employeeType: Employee +homePhone: +1 818 217-6464 +initials: R. M. +mobile: +1 818 895-7906 +pager: +1 818 341-3391 +roomNumber: 8169 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gareth Bellehumeur +sn: Bellehumeur +description: This is Gareth Bellehumeur's description +facsimileTelephoneNumber: +1 206 411-3796 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 192-5480 +title: Junior Product Testing Technician +userPassword: Password1 +uid: BellehuG +givenName: Gareth +mail: BellehuG@6ee7e09ddbec43048b71898f265116eb.bitwarden.com +carLicense: Q5JQ09 +departmentNumber: 8793 +employeeType: Contract +homePhone: +1 206 674-2509 +initials: G. B. +mobile: +1 206 117-3462 +pager: +1 206 833-7857 +roomNumber: 9734 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Daphine Kutschke,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daphine Kutschke +sn: Kutschke +description: This is Daphine Kutschke's description +facsimileTelephoneNumber: +1 213 725-1128 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 746-9866 +title: Master Administrative Madonna +userPassword: Password1 +uid: KutschkD +givenName: Daphine +mail: KutschkD@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com +carLicense: 9R0LIP +departmentNumber: 5575 +employeeType: Employee +homePhone: +1 213 352-7793 +initials: D. K. +mobile: +1 213 435-7076 +pager: +1 213 563-4499 +roomNumber: 9048 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jin Lyall,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jin Lyall +sn: Lyall +description: This is Jin Lyall's description +facsimileTelephoneNumber: +1 206 429-1617 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 592-7079 +title: Associate Peons Writer +userPassword: Password1 +uid: LyallJ +givenName: Jin +mail: LyallJ@bd234f19e2034627848e6380646db915.bitwarden.com +carLicense: HRU8A9 +departmentNumber: 7122 +employeeType: Normal +homePhone: +1 206 775-1502 +initials: J. L. +mobile: +1 206 730-2684 +pager: +1 206 235-5211 +roomNumber: 9498 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khurshid Giguere +sn: Giguere +description: This is Khurshid Giguere's description +facsimileTelephoneNumber: +1 415 213-3921 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 116-1160 +title: Master Janitorial Punk +userPassword: Password1 +uid: GiguereK +givenName: Khurshid +mail: GiguereK@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com +carLicense: U0HNAO +departmentNumber: 2960 +employeeType: Employee +homePhone: +1 415 414-1611 +initials: K. G. +mobile: +1 415 482-7538 +pager: +1 415 818-9611 +roomNumber: 9217 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clerissa Maduri,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clerissa Maduri +sn: Maduri +description: This is Clerissa Maduri's description +facsimileTelephoneNumber: +1 804 435-3931 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 650-8776 +title: Associate Administrative Engineer +userPassword: Password1 +uid: MaduriC +givenName: Clerissa +mail: MaduriC@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com +carLicense: 3VNBJS +departmentNumber: 7512 +employeeType: Contract +homePhone: +1 804 390-3029 +initials: C. M. +mobile: +1 804 270-2060 +pager: +1 804 683-6013 +roomNumber: 8230 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Simonne Lukers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Simonne Lukers +sn: Lukers +description: This is Simonne Lukers's description +facsimileTelephoneNumber: +1 415 402-6295 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 252-6092 +title: Junior Management Visionary +userPassword: Password1 +uid: LukersS +givenName: Simonne +mail: LukersS@f1957adbdc8943baae36c793bc84fd7c.bitwarden.com +carLicense: F7NDLU +departmentNumber: 9188 +employeeType: Normal +homePhone: +1 415 214-5990 +initials: S. L. +mobile: +1 415 829-9990 +pager: +1 415 275-3901 +roomNumber: 8932 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jacynth Manto,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacynth Manto +sn: Manto +description: This is Jacynth Manto's description +facsimileTelephoneNumber: +1 510 420-7280 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 967-8294 +title: Supreme Product Testing Engineer +userPassword: Password1 +uid: MantoJ +givenName: Jacynth +mail: MantoJ@bd920fe5c7d549d08f1567ef15f28b56.bitwarden.com +carLicense: 4KJPXF +departmentNumber: 9850 +employeeType: Normal +homePhone: +1 510 337-2670 +initials: J. M. +mobile: +1 510 104-3992 +pager: +1 510 243-8286 +roomNumber: 9402 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emmalyn Bible +sn: Bible +description: This is Emmalyn Bible's description +facsimileTelephoneNumber: +1 804 136-8533 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 239-4239 +title: Chief Human Resources Developer +userPassword: Password1 +uid: BibleE +givenName: Emmalyn +mail: BibleE@327358f986b94dcfa1839385e66d7856.bitwarden.com +carLicense: IEU0PT +departmentNumber: 7117 +employeeType: Contract +homePhone: +1 804 141-2679 +initials: E. B. +mobile: +1 804 464-7066 +pager: +1 804 121-8122 +roomNumber: 8309 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ronan Rattray,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronan Rattray +sn: Rattray +description: This is Ronan Rattray's description +facsimileTelephoneNumber: +1 415 448-3063 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 415 996-1261 +title: Master Human Resources Vice President +userPassword: Password1 +uid: RattrayR +givenName: Ronan +mail: RattrayR@599d357394854e689476d822b0b57fa1.bitwarden.com +carLicense: CKPWP1 +departmentNumber: 6783 +employeeType: Normal +homePhone: +1 415 955-3455 +initials: R. R. +mobile: +1 415 723-4534 +pager: +1 415 165-4889 +roomNumber: 9180 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Doloritas Ocone,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doloritas Ocone +sn: Ocone +description: This is Doloritas Ocone's description +facsimileTelephoneNumber: +1 213 443-4481 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 670-3730 +title: Master Management Engineer +userPassword: Password1 +uid: OconeD +givenName: Doloritas +mail: OconeD@5393bc67f8ee409593915ca305198b36.bitwarden.com +carLicense: 8WVR22 +departmentNumber: 5220 +employeeType: Employee +homePhone: +1 213 210-2477 +initials: D. O. +mobile: +1 213 253-2739 +pager: +1 213 918-3828 +roomNumber: 9984 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Etta Smithson,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Etta Smithson +sn: Smithson +description: This is Etta Smithson's description +facsimileTelephoneNumber: +1 510 200-5635 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 122-3260 +title: Chief Human Resources Janitor +userPassword: Password1 +uid: SmithsoE +givenName: Etta +mail: SmithsoE@101f510449dd4db58ccdaa8d8df89d63.bitwarden.com +carLicense: RE8HAP +departmentNumber: 1987 +employeeType: Employee +homePhone: +1 510 935-1973 +initials: E. S. +mobile: +1 510 117-8906 +pager: +1 510 609-9063 +roomNumber: 9707 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rajiv Moulsoff +sn: Moulsoff +description: This is Rajiv Moulsoff's description +facsimileTelephoneNumber: +1 510 663-2850 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 510 690-4927 +title: Chief Payroll Writer +userPassword: Password1 +uid: MoulsofR +givenName: Rajiv +mail: MoulsofR@6b9e684fa59647e280b75516ef2c9723.bitwarden.com +carLicense: 8969YK +departmentNumber: 7433 +employeeType: Normal +homePhone: +1 510 439-7763 +initials: R. M. +mobile: +1 510 810-5216 +pager: +1 510 227-2152 +roomNumber: 8332 +manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jester Nagenthiram +sn: Nagenthiram +description: This is Jester Nagenthiram's description +facsimileTelephoneNumber: +1 408 966-7013 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 634-1331 +title: Supreme Janitorial Admin +userPassword: Password1 +uid: NagenthJ +givenName: Jester +mail: NagenthJ@6c3860a955fe431ca8d48e56cd2c1cc8.bitwarden.com +carLicense: MNALQP +departmentNumber: 4555 +employeeType: Employee +homePhone: +1 408 484-1175 +initials: J. N. +mobile: +1 408 284-6342 +pager: +1 408 420-9279 +roomNumber: 8381 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Stephanie Pickles,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephanie Pickles +sn: Pickles +description: This is Stephanie Pickles's description +facsimileTelephoneNumber: +1 415 556-5936 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 415 225-2987 +title: Supreme Peons Fellow +userPassword: Password1 +uid: PicklesS +givenName: Stephanie +mail: PicklesS@468705ba5f434f3295170aa6ba4375b9.bitwarden.com +carLicense: FBHPCI +departmentNumber: 9298 +employeeType: Contract +homePhone: +1 415 274-5193 +initials: S. P. +mobile: +1 415 629-1419 +pager: +1 415 125-2927 +roomNumber: 9037 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karla Hearnden,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karla Hearnden +sn: Hearnden +description: This is Karla Hearnden's description +facsimileTelephoneNumber: +1 415 566-4782 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 714-7296 +title: Supreme Management Writer +userPassword: Password1 +uid: HearndeK +givenName: Karla +mail: HearndeK@f9c4bace7749496ca9d16bcee3ec0a9e.bitwarden.com +carLicense: F9W51Q +departmentNumber: 9681 +employeeType: Employee +homePhone: +1 415 325-2609 +initials: K. H. +mobile: +1 415 865-3978 +pager: +1 415 921-9206 +roomNumber: 8769 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Waichi Arbuckle +sn: Arbuckle +description: This is Waichi Arbuckle's description +facsimileTelephoneNumber: +1 415 358-8418 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 808-4173 +title: Associate Human Resources Stooge +userPassword: Password1 +uid: ArbucklW +givenName: Waichi +mail: ArbucklW@df1f69e145f84092af98fbde9b9513c5.bitwarden.com +carLicense: EGUN4X +departmentNumber: 8478 +employeeType: Normal +homePhone: +1 415 419-3126 +initials: W. A. +mobile: +1 415 630-8715 +pager: +1 415 874-3019 +roomNumber: 8581 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Xenia Schmitz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xenia Schmitz +sn: Schmitz +description: This is Xenia Schmitz's description +facsimileTelephoneNumber: +1 206 849-1485 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 761-7314 +title: Chief Administrative Janitor +userPassword: Password1 +uid: SchmitzX +givenName: Xenia +mail: SchmitzX@866ee03787a64b2f93dee41c244c546a.bitwarden.com +carLicense: B9H8ID +departmentNumber: 1336 +employeeType: Contract +homePhone: +1 206 702-3876 +initials: X. S. +mobile: +1 206 170-9649 +pager: +1 206 465-9993 +roomNumber: 9029 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sande Withrow,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sande Withrow +sn: Withrow +description: This is Sande Withrow's description +facsimileTelephoneNumber: +1 804 209-9503 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 804 185-6592 +title: Supreme Administrative Punk +userPassword: Password1 +uid: WithrowS +givenName: Sande +mail: WithrowS@8488bd932270494b964d988d57bbae02.bitwarden.com +carLicense: 6EB94R +departmentNumber: 1725 +employeeType: Employee +homePhone: +1 804 294-9105 +initials: S. W. +mobile: +1 804 250-5586 +pager: +1 804 277-3399 +roomNumber: 9209 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pammie Guilbert,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pammie Guilbert +sn: Guilbert +description: This is Pammie Guilbert's description +facsimileTelephoneNumber: +1 213 350-9478 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 370-1484 +title: Supreme Peons Mascot +userPassword: Password1 +uid: GuilberP +givenName: Pammie +mail: GuilberP@8342e98dcb144504925e856ae40dc976.bitwarden.com +carLicense: JVTRRF +departmentNumber: 5449 +employeeType: Contract +homePhone: +1 213 730-9237 +initials: P. G. +mobile: +1 213 942-9323 +pager: +1 213 388-1099 +roomNumber: 8454 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sabina Dolson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabina Dolson +sn: Dolson +description: This is Sabina Dolson's description +facsimileTelephoneNumber: +1 818 862-6465 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 818 602-8427 +title: Associate Payroll Admin +userPassword: Password1 +uid: DolsonS +givenName: Sabina +mail: DolsonS@29c3d32bd72d456b98ccdb1f1f704bb5.bitwarden.com +carLicense: 4I8D5F +departmentNumber: 9173 +employeeType: Normal +homePhone: +1 818 860-6626 +initials: S. D. +mobile: +1 818 657-5730 +pager: +1 818 871-6082 +roomNumber: 9215 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: CostasDinos McKay +sn: McKay +description: This is CostasDinos McKay's description +facsimileTelephoneNumber: +1 804 421-5786 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 122-9275 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: McKayC +givenName: CostasDinos +mail: McKayC@880f27f5dd8149c7b2b47da8b579fcbf.bitwarden.com +carLicense: 45GG3Q +departmentNumber: 9198 +employeeType: Normal +homePhone: +1 804 543-8736 +initials: C. M. +mobile: +1 804 585-1449 +pager: +1 804 479-6187 +roomNumber: 9178 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cyril Tullius,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyril Tullius +sn: Tullius +description: This is Cyril Tullius's description +facsimileTelephoneNumber: +1 213 948-7921 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 377-6842 +title: Junior Janitorial Writer +userPassword: Password1 +uid: TulliusC +givenName: Cyril +mail: TulliusC@15f299e0af604cd282364f75359dfca1.bitwarden.com +carLicense: HJKL6P +departmentNumber: 6021 +employeeType: Contract +homePhone: +1 213 499-8740 +initials: C. T. +mobile: +1 213 975-9903 +pager: +1 213 164-8708 +roomNumber: 8231 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bogdan Antonelli +sn: Antonelli +description: This is Bogdan Antonelli's description +facsimileTelephoneNumber: +1 804 154-2353 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 828-1525 +title: Supreme Administrative Manager +userPassword: Password1 +uid: AntonelB +givenName: Bogdan +mail: AntonelB@e800254840ec4cdd98916b4e083fcf9a.bitwarden.com +carLicense: 7J4QV8 +departmentNumber: 9736 +employeeType: Normal +homePhone: +1 804 583-6819 +initials: B. A. +mobile: +1 804 914-7352 +pager: +1 804 802-5645 +roomNumber: 9653 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Heather Ogrodnik +sn: Ogrodnik +description: This is Heather Ogrodnik's description +facsimileTelephoneNumber: +1 818 751-4055 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 203-9119 +title: Chief Human Resources Vice President +userPassword: Password1 +uid: OgrodniH +givenName: Heather +mail: OgrodniH@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com +carLicense: F3YYI6 +departmentNumber: 9391 +employeeType: Employee +homePhone: +1 818 801-1144 +initials: H. O. +mobile: +1 818 222-1666 +pager: +1 818 348-2805 +roomNumber: 8100 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cuthbert Pryor +sn: Pryor +description: This is Cuthbert Pryor's description +facsimileTelephoneNumber: +1 415 794-7916 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 486-9301 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: PryorC +givenName: Cuthbert +mail: PryorC@cd9aa4cc15f7474aa6c5dd1195964bad.bitwarden.com +carLicense: 95J8M6 +departmentNumber: 8697 +employeeType: Employee +homePhone: +1 415 987-6098 +initials: C. P. +mobile: +1 415 509-2781 +pager: +1 415 903-7444 +roomNumber: 8865 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Agathe Kinney,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agathe Kinney +sn: Kinney +description: This is Agathe Kinney's description +facsimileTelephoneNumber: +1 213 993-4565 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 797-2660 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: KinneyA +givenName: Agathe +mail: KinneyA@ed49844bd2994c2dab1d86730cce0d44.bitwarden.com +carLicense: Y0FCOV +departmentNumber: 8391 +employeeType: Employee +homePhone: +1 213 625-6860 +initials: A. K. +mobile: +1 213 390-5140 +pager: +1 213 726-6864 +roomNumber: 8686 +manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nevsa Botting,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nevsa Botting +sn: Botting +description: This is Nevsa Botting's description +facsimileTelephoneNumber: +1 213 251-6979 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 513-3681 +title: Supreme Payroll Mascot +userPassword: Password1 +uid: BottingN +givenName: Nevsa +mail: BottingN@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com +carLicense: H5LRKI +departmentNumber: 7509 +employeeType: Normal +homePhone: +1 213 584-2335 +initials: N. B. +mobile: +1 213 412-9946 +pager: +1 213 780-9279 +roomNumber: 9067 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chunmeng Nonkes +sn: Nonkes +description: This is Chunmeng Nonkes's description +facsimileTelephoneNumber: +1 213 321-9962 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 213 888-1305 +title: Master Administrative Janitor +userPassword: Password1 +uid: NonkesC +givenName: Chunmeng +mail: NonkesC@0d089601fe8d4842aca2c104051c6a49.bitwarden.com +carLicense: WOJP9J +departmentNumber: 2765 +employeeType: Contract +homePhone: +1 213 125-3649 +initials: C. N. +mobile: +1 213 677-7410 +pager: +1 213 851-4076 +roomNumber: 8035 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eliezer Quevillon +sn: Quevillon +description: This is Eliezer Quevillon's description +facsimileTelephoneNumber: +1 206 927-1276 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 677-8025 +title: Junior Human Resources Assistant +userPassword: Password1 +uid: QuevillE +givenName: Eliezer +mail: QuevillE@679765b52d394d7ba89a59f3e71121ce.bitwarden.com +carLicense: DCFSER +departmentNumber: 8696 +employeeType: Normal +homePhone: +1 206 510-7559 +initials: E. Q. +mobile: +1 206 108-1208 +pager: +1 206 710-7754 +roomNumber: 9086 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalyan Linebarger +sn: Linebarger +description: This is Kalyan Linebarger's description +facsimileTelephoneNumber: +1 213 756-9513 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 213 968-9770 +title: Junior Administrative Grunt +userPassword: Password1 +uid: LinebarK +givenName: Kalyan +mail: LinebarK@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com +carLicense: Y87506 +departmentNumber: 4765 +employeeType: Contract +homePhone: +1 213 873-8671 +initials: K. L. +mobile: +1 213 137-6546 +pager: +1 213 236-8729 +roomNumber: 8046 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Melisse Wallis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisse Wallis +sn: Wallis +description: This is Melisse Wallis's description +facsimileTelephoneNumber: +1 818 678-7042 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 259-3053 +title: Chief Janitorial Vice President +userPassword: Password1 +uid: WallisM +givenName: Melisse +mail: WallisM@cea72e60113c4004b6d166b7d2581f81.bitwarden.com +carLicense: YMS4IJ +departmentNumber: 4961 +employeeType: Employee +homePhone: +1 818 236-4134 +initials: M. W. +mobile: +1 818 195-2214 +pager: +1 818 777-1399 +roomNumber: 8240 +manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Benoite Lenior,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benoite Lenior +sn: Lenior +description: This is Benoite Lenior's description +facsimileTelephoneNumber: +1 804 916-7844 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 804 234-9774 +title: Junior Administrative Fellow +userPassword: Password1 +uid: LeniorB +givenName: Benoite +mail: LeniorB@20e14dd3d2dd44c8a8925dd175adb2ff.bitwarden.com +carLicense: RHEKGW +departmentNumber: 7636 +employeeType: Employee +homePhone: +1 804 430-1902 +initials: B. L. +mobile: +1 804 125-9785 +pager: +1 804 165-3401 +roomNumber: 8854 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Marya Lozier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marya Lozier +sn: Lozier +description: This is Marya Lozier's description +facsimileTelephoneNumber: +1 818 222-9576 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 818 694-2768 +title: Associate Janitorial Developer +userPassword: Password1 +uid: LozierM +givenName: Marya +mail: LozierM@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com +carLicense: G9DOBH +departmentNumber: 1030 +employeeType: Normal +homePhone: +1 818 517-4203 +initials: M. L. +mobile: +1 818 692-3797 +pager: +1 818 688-9613 +roomNumber: 8958 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Access Phelps,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Access Phelps +sn: Phelps +description: This is Access Phelps's description +facsimileTelephoneNumber: +1 408 299-8021 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 408 133-6690 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: PhelpsA +givenName: Access +mail: PhelpsA@97024eb0461a46d6aa6052406945f68c.bitwarden.com +carLicense: OYC6DN +departmentNumber: 5795 +employeeType: Contract +homePhone: +1 408 562-6906 +initials: A. P. +mobile: +1 408 938-1210 +pager: +1 408 518-1097 +roomNumber: 9120 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ned Hammonds,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ned Hammonds +sn: Hammonds +description: This is Ned Hammonds's description +facsimileTelephoneNumber: +1 408 685-3203 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 400-5258 +title: Supreme Janitorial Mascot +userPassword: Password1 +uid: HammondN +givenName: Ned +mail: HammondN@ab6be5fd115643a9838774bec61580fd.bitwarden.com +carLicense: S04KQF +departmentNumber: 2633 +employeeType: Employee +homePhone: +1 408 420-8456 +initials: N. H. +mobile: +1 408 653-9978 +pager: +1 408 158-6985 +roomNumber: 9419 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ernest Betterley,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ernest Betterley +sn: Betterley +description: This is Ernest Betterley's description +facsimileTelephoneNumber: +1 818 150-2942 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 441-3272 +title: Junior Payroll Mascot +userPassword: Password1 +uid: BetterlE +givenName: Ernest +mail: BetterlE@d7c42a5466a44da1a41df54a07b84c5f.bitwarden.com +carLicense: U8WLB3 +departmentNumber: 4583 +employeeType: Contract +homePhone: +1 818 649-9845 +initials: E. B. +mobile: +1 818 905-8656 +pager: +1 818 692-8491 +roomNumber: 8089 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kana Licata,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kana Licata +sn: Licata +description: This is Kana Licata's description +facsimileTelephoneNumber: +1 206 537-4446 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 206 509-7204 +title: Junior Janitorial Janitor +userPassword: Password1 +uid: LicataK +givenName: Kana +mail: LicataK@7cb67504c13e412a8fec103be024f92b.bitwarden.com +carLicense: FUYNF5 +departmentNumber: 2296 +employeeType: Contract +homePhone: +1 206 122-6392 +initials: K. L. +mobile: +1 206 662-4764 +pager: +1 206 857-4058 +roomNumber: 9168 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hermione Donahue,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermione Donahue +sn: Donahue +description: This is Hermione Donahue's description +facsimileTelephoneNumber: +1 804 321-3356 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 145-7271 +title: Junior Management Pinhead +userPassword: Password1 +uid: DonahueH +givenName: Hermione +mail: DonahueH@3986b5b118ef4d79a84f9f227789123a.bitwarden.com +carLicense: PAHCEG +departmentNumber: 4473 +employeeType: Contract +homePhone: +1 804 263-4590 +initials: H. D. +mobile: +1 804 289-2635 +pager: +1 804 445-3032 +roomNumber: 8857 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rochette Materkowski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rochette Materkowski +sn: Materkowski +description: This is Rochette Materkowski's description +facsimileTelephoneNumber: +1 804 853-7916 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 955-3769 +title: Master Administrative Architect +userPassword: Password1 +uid: MaterkoR +givenName: Rochette +mail: MaterkoR@9fbbd3b588db493faa565bcde3d4e632.bitwarden.com +carLicense: YXQIKH +departmentNumber: 5201 +employeeType: Normal +homePhone: +1 804 908-6504 +initials: R. M. +mobile: +1 804 500-4935 +pager: +1 804 898-2866 +roomNumber: 9501 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rheba Dirbm +sn: Dirbm +description: This is Rheba Dirbm's description +facsimileTelephoneNumber: +1 510 892-4216 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 510 985-4014 +title: Junior Human Resources Warrior +userPassword: Password1 +uid: DirbmR +givenName: Rheba +mail: DirbmR@3ee9065d7b6b4e83b28bb68fa8c51cff.bitwarden.com +carLicense: AXW3B7 +departmentNumber: 6918 +employeeType: Contract +homePhone: +1 510 712-1608 +initials: R. D. +mobile: +1 510 338-8831 +pager: +1 510 347-7551 +roomNumber: 8754 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lan Simms,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lan Simms +sn: Simms +description: This is Lan Simms's description +facsimileTelephoneNumber: +1 408 581-2939 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 345-6884 +title: Associate Peons Writer +userPassword: Password1 +uid: SimmsL +givenName: Lan +mail: SimmsL@597ee7a281994e04852496c0f41850b8.bitwarden.com +carLicense: TWR6LM +departmentNumber: 7872 +employeeType: Contract +homePhone: +1 408 487-4359 +initials: L. S. +mobile: +1 408 610-5631 +pager: +1 408 375-2874 +roomNumber: 8983 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Troy Bengtson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Troy Bengtson +sn: Bengtson +description: This is Troy Bengtson's description +facsimileTelephoneNumber: +1 818 856-3782 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 863-3042 +title: Junior Payroll Grunt +userPassword: Password1 +uid: BengtsoT +givenName: Troy +mail: BengtsoT@6814734c8a1a4426b43d87c3c6b525f0.bitwarden.com +carLicense: V3JIXF +departmentNumber: 2493 +employeeType: Normal +homePhone: +1 818 134-2888 +initials: T. B. +mobile: +1 818 119-3468 +pager: +1 818 192-4414 +roomNumber: 9374 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheelagh Peixoto +sn: Peixoto +description: This is Sheelagh Peixoto's description +facsimileTelephoneNumber: +1 818 673-1656 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 669-8783 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: PeixotoS +givenName: Sheelagh +mail: PeixotoS@938a7a8d77714dae9ee57a1ad9691680.bitwarden.com +carLicense: VRBFK2 +departmentNumber: 7756 +employeeType: Normal +homePhone: +1 818 584-1439 +initials: S. P. +mobile: +1 818 341-2022 +pager: +1 818 139-9729 +roomNumber: 8426 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Natka Moritz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natka Moritz +sn: Moritz +description: This is Natka Moritz's description +facsimileTelephoneNumber: +1 206 371-1675 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 708-9837 +title: Supreme Product Testing Artist +userPassword: Password1 +uid: MoritzN +givenName: Natka +mail: MoritzN@49a7dfb897474c7dad3d0d47056d73c4.bitwarden.com +carLicense: ETUQU1 +departmentNumber: 7332 +employeeType: Contract +homePhone: +1 206 695-3825 +initials: N. M. +mobile: +1 206 110-4529 +pager: +1 206 391-8641 +roomNumber: 9641 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tineke Pryszlak +sn: Pryszlak +description: This is Tineke Pryszlak's description +facsimileTelephoneNumber: +1 206 757-8127 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 991-3301 +title: Supreme Product Testing Manager +userPassword: Password1 +uid: PryszlaT +givenName: Tineke +mail: PryszlaT@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com +carLicense: 6SP0EB +departmentNumber: 1989 +employeeType: Normal +homePhone: +1 206 780-5425 +initials: T. P. +mobile: +1 206 287-8013 +pager: +1 206 624-6393 +roomNumber: 9946 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brook Clifton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brook Clifton +sn: Clifton +description: This is Brook Clifton's description +facsimileTelephoneNumber: +1 510 657-7487 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 101-4240 +title: Associate Management Pinhead +userPassword: Password1 +uid: CliftonB +givenName: Brook +mail: CliftonB@3addc4fa91024158bfa9904c24f12164.bitwarden.com +carLicense: XECBMN +departmentNumber: 9553 +employeeType: Normal +homePhone: +1 510 275-3666 +initials: B. C. +mobile: +1 510 323-4455 +pager: +1 510 925-3274 +roomNumber: 8797 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Maggee Colton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maggee Colton +sn: Colton +description: This is Maggee Colton's description +facsimileTelephoneNumber: +1 213 436-2485 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 213 725-8240 +title: Supreme Management Vice President +userPassword: Password1 +uid: ColtonM +givenName: Maggee +mail: ColtonM@e97e68f305e3440c9129677cf226a2f9.bitwarden.com +carLicense: 3V094G +departmentNumber: 7074 +employeeType: Normal +homePhone: +1 213 799-5578 +initials: M. C. +mobile: +1 213 826-8250 +pager: +1 213 235-7562 +roomNumber: 8443 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bobinette Holinski +sn: Holinski +description: This is Bobinette Holinski's description +facsimileTelephoneNumber: +1 213 438-3899 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 636-6380 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: HolinskB +givenName: Bobinette +mail: HolinskB@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com +carLicense: 329U4T +departmentNumber: 4303 +employeeType: Employee +homePhone: +1 213 128-2856 +initials: B. H. +mobile: +1 213 959-4936 +pager: +1 213 295-4642 +roomNumber: 8305 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rae Willey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rae Willey +sn: Willey +description: This is Rae Willey's description +facsimileTelephoneNumber: +1 415 225-1596 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 644-1200 +title: Master Administrative Assistant +userPassword: Password1 +uid: WilleyR +givenName: Rae +mail: WilleyR@83f3b1a626774d71882e96bf3396b700.bitwarden.com +carLicense: I06WWG +departmentNumber: 5824 +employeeType: Employee +homePhone: +1 415 449-1203 +initials: R. W. +mobile: +1 415 408-2100 +pager: +1 415 309-6408 +roomNumber: 9017 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherman Mattiuz +sn: Mattiuz +description: This is Sherman Mattiuz's description +facsimileTelephoneNumber: +1 415 299-9606 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 415 783-8202 +title: Master Human Resources Admin +userPassword: Password1 +uid: MattiuzS +givenName: Sherman +mail: MattiuzS@770858a0ba27427fa80380c180b40ddb.bitwarden.com +carLicense: 17CWAM +departmentNumber: 4986 +employeeType: Normal +homePhone: +1 415 310-6621 +initials: S. M. +mobile: +1 415 393-7208 +pager: +1 415 797-2958 +roomNumber: 8649 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Terence Murray,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terence Murray +sn: Murray +description: This is Terence Murray's description +facsimileTelephoneNumber: +1 804 977-4099 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 244-7357 +title: Junior Janitorial Manager +userPassword: Password1 +uid: MurrayT +givenName: Terence +mail: MurrayT@bbd1af679b0c4f5eb725bdbe4b2aee6a.bitwarden.com +carLicense: M3IRT7 +departmentNumber: 2404 +employeeType: Contract +homePhone: +1 804 858-1725 +initials: T. M. +mobile: +1 804 253-3984 +pager: +1 804 790-9467 +roomNumber: 8845 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janot Ostapiw +sn: Ostapiw +description: This is Janot Ostapiw's description +facsimileTelephoneNumber: +1 818 131-4427 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 818 591-4792 +title: Chief Human Resources Manager +userPassword: Password1 +uid: OstapiwJ +givenName: Janot +mail: OstapiwJ@ceef53b02cf14daf8dcf3b446c7764b4.bitwarden.com +carLicense: DQAQ64 +departmentNumber: 7908 +employeeType: Normal +homePhone: +1 818 224-2094 +initials: J. O. +mobile: +1 818 924-3218 +pager: +1 818 392-3287 +roomNumber: 8362 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ransom Grande,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ransom Grande +sn: Grande +description: This is Ransom Grande's description +facsimileTelephoneNumber: +1 804 857-4867 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 348-8506 +title: Master Payroll Director +userPassword: Password1 +uid: GrandeR +givenName: Ransom +mail: GrandeR@7728cd06c9f24725b1335c5276362320.bitwarden.com +carLicense: 8T95T2 +departmentNumber: 7404 +employeeType: Contract +homePhone: +1 804 134-1915 +initials: R. G. +mobile: +1 804 579-6089 +pager: +1 804 257-4904 +roomNumber: 8070 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lindy Clinger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lindy Clinger +sn: Clinger +description: This is Lindy Clinger's description +facsimileTelephoneNumber: +1 818 131-4609 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 818 830-9534 +title: Supreme Human Resources Engineer +userPassword: Password1 +uid: ClingerL +givenName: Lindy +mail: ClingerL@6d69b599308f48ccb963c12b5968912d.bitwarden.com +carLicense: XAIKSC +departmentNumber: 3576 +employeeType: Employee +homePhone: +1 818 841-7693 +initials: L. C. +mobile: +1 818 230-5540 +pager: +1 818 314-6466 +roomNumber: 9969 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Clyde Hanser,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clyde Hanser +sn: Hanser +description: This is Clyde Hanser's description +facsimileTelephoneNumber: +1 206 763-4085 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 847-2762 +title: Supreme Management Architect +userPassword: Password1 +uid: HanserC +givenName: Clyde +mail: HanserC@d6c8569604a646f9806f25f3b316b85e.bitwarden.com +carLicense: V9MNDK +departmentNumber: 1165 +employeeType: Employee +homePhone: +1 206 649-8510 +initials: C. H. +mobile: +1 206 590-1759 +pager: +1 206 755-6342 +roomNumber: 8768 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilmette Masterson +sn: Masterson +description: This is Wilmette Masterson's description +facsimileTelephoneNumber: +1 408 450-1513 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 408 120-2964 +title: Master Product Testing Assistant +userPassword: Password1 +uid: MastersW +givenName: Wilmette +mail: MastersW@4445babf8a7d4d96bd8cbd44d9ed3bc8.bitwarden.com +carLicense: 5VMPU5 +departmentNumber: 8001 +employeeType: Normal +homePhone: +1 408 360-8709 +initials: W. M. +mobile: +1 408 680-9712 +pager: +1 408 138-3378 +roomNumber: 8883 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Charita Rainsforth,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charita Rainsforth +sn: Rainsforth +description: This is Charita Rainsforth's description +facsimileTelephoneNumber: +1 213 777-1506 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 639-4832 +title: Chief Payroll Fellow +userPassword: Password1 +uid: RainsfoC +givenName: Charita +mail: RainsfoC@2babe722fdef4b0fa98bbd24f66fbecf.bitwarden.com +carLicense: GVADYR +departmentNumber: 8926 +employeeType: Normal +homePhone: +1 213 846-4789 +initials: C. R. +mobile: +1 213 813-3693 +pager: +1 213 356-5566 +roomNumber: 8691 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariquilla Bayless +sn: Bayless +description: This is Mariquilla Bayless's description +facsimileTelephoneNumber: +1 213 390-2334 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 396-3646 +title: Supreme Janitorial Dictator +userPassword: Password1 +uid: BaylessM +givenName: Mariquilla +mail: BaylessM@04bb8c62899b41dd85b281860ec060e6.bitwarden.com +carLicense: CGYMLK +departmentNumber: 9051 +employeeType: Employee +homePhone: +1 213 580-3508 +initials: M. B. +mobile: +1 213 883-3227 +pager: +1 213 515-9923 +roomNumber: 8587 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Remo Duchesne,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Remo Duchesne +sn: Duchesne +description: This is Remo Duchesne's description +facsimileTelephoneNumber: +1 213 725-3496 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 213 429-3409 +title: Associate Human Resources Visionary +userPassword: Password1 +uid: DuchesnR +givenName: Remo +mail: DuchesnR@87b6080a8e904aef9833756715afd0f3.bitwarden.com +carLicense: O4D8KH +departmentNumber: 6303 +employeeType: Employee +homePhone: +1 213 201-6582 +initials: R. D. +mobile: +1 213 853-9758 +pager: +1 213 535-3547 +roomNumber: 9073 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Radames Verrilli,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Radames Verrilli +sn: Verrilli +description: This is Radames Verrilli's description +facsimileTelephoneNumber: +1 415 666-6407 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 415 916-9425 +title: Associate Product Testing Technician +userPassword: Password1 +uid: VerrillR +givenName: Radames +mail: VerrillR@5a335fc442a34146b7e0bc22b5e52fbd.bitwarden.com +carLicense: MGH0O2 +departmentNumber: 1931 +employeeType: Contract +homePhone: +1 415 275-9945 +initials: R. V. +mobile: +1 415 397-5052 +pager: +1 415 589-5007 +roomNumber: 9095 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alanna Dillard,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alanna Dillard +sn: Dillard +description: This is Alanna Dillard's description +facsimileTelephoneNumber: +1 804 208-2139 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 804 650-3194 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: DillardA +givenName: Alanna +mail: DillardA@d7bcc941bf9944f4a0cf58f580b041c6.bitwarden.com +carLicense: F2MROV +departmentNumber: 6624 +employeeType: Employee +homePhone: +1 804 242-4741 +initials: A. D. +mobile: +1 804 285-8559 +pager: +1 804 621-6228 +roomNumber: 8051 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Chantal Neander,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chantal Neander +sn: Neander +description: This is Chantal Neander's description +facsimileTelephoneNumber: +1 213 717-8244 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 430-6206 +title: Chief Administrative Assistant +userPassword: Password1 +uid: NeanderC +givenName: Chantal +mail: NeanderC@5e9773b417544d1f926187faa8565de5.bitwarden.com +carLicense: S4XTVL +departmentNumber: 5130 +employeeType: Normal +homePhone: +1 213 263-2844 +initials: C. N. +mobile: +1 213 408-9150 +pager: +1 213 182-2337 +roomNumber: 8523 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Leese Nagendra,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leese Nagendra +sn: Nagendra +description: This is Leese Nagendra's description +facsimileTelephoneNumber: +1 408 329-4229 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 408 217-8268 +title: Associate Management Stooge +userPassword: Password1 +uid: NagendrL +givenName: Leese +mail: NagendrL@5ca487ddf481407baca0f7ac58492fb5.bitwarden.com +carLicense: WV5RBO +departmentNumber: 5280 +employeeType: Contract +homePhone: +1 408 813-6485 +initials: L. N. +mobile: +1 408 692-3608 +pager: +1 408 715-9390 +roomNumber: 9992 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosalynd Silverstone +sn: Silverstone +description: This is Rosalynd Silverstone's description +facsimileTelephoneNumber: +1 408 804-5660 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 972-2488 +title: Chief Payroll Mascot +userPassword: Password1 +uid: SilversR +givenName: Rosalynd +mail: SilversR@21813dd069254b74bf250b7db15a806f.bitwarden.com +carLicense: CMHIKN +departmentNumber: 2762 +employeeType: Employee +homePhone: +1 408 496-4910 +initials: R. S. +mobile: +1 408 596-4857 +pager: +1 408 335-3377 +roomNumber: 8394 +manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Erena Ticzon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erena Ticzon +sn: Ticzon +description: This is Erena Ticzon's description +facsimileTelephoneNumber: +1 510 120-8845 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 510 723-5634 +title: Junior Payroll Grunt +userPassword: Password1 +uid: TiczonE +givenName: Erena +mail: TiczonE@9077504eeb5f4af282c6c876f04ee045.bitwarden.com +carLicense: SMIEHX +departmentNumber: 2087 +employeeType: Contract +homePhone: +1 510 903-7803 +initials: E. T. +mobile: +1 510 513-6130 +pager: +1 510 132-1958 +roomNumber: 9686 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marsiella Maludzinski +sn: Maludzinski +description: This is Marsiella Maludzinski's description +facsimileTelephoneNumber: +1 510 678-1809 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 120-3913 +title: Master Product Testing Dictator +userPassword: Password1 +uid: MaludziM +givenName: Marsiella +mail: MaludziM@d099b87b6d4c4f55806f0c8cf8dbfe18.bitwarden.com +carLicense: 3CVXKP +departmentNumber: 7175 +employeeType: Normal +homePhone: +1 510 776-4245 +initials: M. M. +mobile: +1 510 570-2135 +pager: +1 510 447-5863 +roomNumber: 9427 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlisle Tangren +sn: Tangren +description: This is Carlisle Tangren's description +facsimileTelephoneNumber: +1 206 827-1080 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 490-7109 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: TangrenC +givenName: Carlisle +mail: TangrenC@9df76257bd034e648ad7f06b4b88283f.bitwarden.com +carLicense: BK8ODK +departmentNumber: 1443 +employeeType: Contract +homePhone: +1 206 329-8082 +initials: C. T. +mobile: +1 206 866-9020 +pager: +1 206 340-4545 +roomNumber: 9100 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Far Fogelson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Far Fogelson +sn: Fogelson +description: This is Far Fogelson's description +facsimileTelephoneNumber: +1 818 802-5113 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 818 900-7524 +title: Master Administrative Manager +userPassword: Password1 +uid: FogelsoF +givenName: Far +mail: FogelsoF@940a7593b88c4fb0afde713027fc2a16.bitwarden.com +carLicense: VYQW6A +departmentNumber: 2822 +employeeType: Contract +homePhone: +1 818 313-6021 +initials: F. F. +mobile: +1 818 627-4771 +pager: +1 818 959-2882 +roomNumber: 8536 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Anne Kobeski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anne Kobeski +sn: Kobeski +description: This is Anne Kobeski's description +facsimileTelephoneNumber: +1 213 690-7066 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 213 205-3209 +title: Junior Administrative Janitor +userPassword: Password1 +uid: KobeskiA +givenName: Anne +mail: KobeskiA@4f265a55f05f44d196ed2a8ef628acec.bitwarden.com +carLicense: K75CTY +departmentNumber: 3351 +employeeType: Contract +homePhone: +1 213 170-6731 +initials: A. K. +mobile: +1 213 956-7860 +pager: +1 213 260-7830 +roomNumber: 9468 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ursola Hastie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ursola Hastie +sn: Hastie +description: This is Ursola Hastie's description +facsimileTelephoneNumber: +1 804 240-1902 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 848-3015 +title: Chief Payroll Developer +userPassword: Password1 +uid: HastieU +givenName: Ursola +mail: HastieU@a34bb7d1546c462cb51396798bb22845.bitwarden.com +carLicense: 5B16OL +departmentNumber: 6887 +employeeType: Normal +homePhone: +1 804 287-4063 +initials: U. H. +mobile: +1 804 464-1632 +pager: +1 804 700-6031 +roomNumber: 8603 +manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benetta Lichtenstein +sn: Lichtenstein +description: This is Benetta Lichtenstein's description +facsimileTelephoneNumber: +1 804 670-5659 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 549-7954 +title: Associate Peons Director +userPassword: Password1 +uid: LichtenB +givenName: Benetta +mail: LichtenB@ec913a211e094c66bf75ab14cafe8fb6.bitwarden.com +carLicense: G8MATO +departmentNumber: 2163 +employeeType: Contract +homePhone: +1 804 887-4586 +initials: B. L. +mobile: +1 804 980-2602 +pager: +1 804 254-3260 +roomNumber: 9704 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tehchi Hiltz +sn: Hiltz +description: This is Tehchi Hiltz's description +facsimileTelephoneNumber: +1 213 410-8377 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 590-5665 +title: Junior Product Testing Architect +userPassword: Password1 +uid: HiltzT +givenName: Tehchi +mail: HiltzT@ab27f4e751074bd087dace4a33698f66.bitwarden.com +carLicense: XCIOHS +departmentNumber: 3681 +employeeType: Normal +homePhone: +1 213 720-3233 +initials: T. H. +mobile: +1 213 939-9476 +pager: +1 213 991-3264 +roomNumber: 9448 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Germaine Wingate,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Germaine Wingate +sn: Wingate +description: This is Germaine Wingate's description +facsimileTelephoneNumber: +1 804 189-7129 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 119-3483 +title: Master Product Testing Sales Rep +userPassword: Password1 +uid: WingateG +givenName: Germaine +mail: WingateG@a87ac40ce2a547c8a852f41a3d6dfeae.bitwarden.com +carLicense: YTHCH4 +departmentNumber: 4690 +employeeType: Employee +homePhone: +1 804 296-6542 +initials: G. W. +mobile: +1 804 275-4476 +pager: +1 804 518-1024 +roomNumber: 9171 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Olympia Peets,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olympia Peets +sn: Peets +description: This is Olympia Peets's description +facsimileTelephoneNumber: +1 213 679-1202 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 213 863-2279 +title: Associate Payroll Architect +userPassword: Password1 +uid: PeetsO +givenName: Olympia +mail: PeetsO@db51bc9053f3446197c0ce77497e73c2.bitwarden.com +carLicense: O9IU6I +departmentNumber: 8069 +employeeType: Normal +homePhone: +1 213 438-6707 +initials: O. P. +mobile: +1 213 639-8777 +pager: +1 213 270-3773 +roomNumber: 9716 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sati Varughese,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sati Varughese +sn: Varughese +description: This is Sati Varughese's description +facsimileTelephoneNumber: +1 818 297-3764 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 818 850-2463 +title: Junior Janitorial Janitor +userPassword: Password1 +uid: VarugheS +givenName: Sati +mail: VarugheS@12257cabb5eb48ceb908520b2745a457.bitwarden.com +carLicense: G7AV98 +departmentNumber: 6501 +employeeType: Employee +homePhone: +1 818 560-2863 +initials: S. V. +mobile: +1 818 949-8259 +pager: +1 818 437-1484 +roomNumber: 9278 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tab Gozen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tab Gozen +sn: Gozen +description: This is Tab Gozen's description +facsimileTelephoneNumber: +1 804 486-6785 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 457-5740 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: GozenT +givenName: Tab +mail: GozenT@520c5bcfe42945ff9a9bc4329f8d9224.bitwarden.com +carLicense: JHFIBF +departmentNumber: 2216 +employeeType: Employee +homePhone: +1 804 266-2529 +initials: T. G. +mobile: +1 804 701-4430 +pager: +1 804 209-2288 +roomNumber: 8998 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bcspatch Dunlop +sn: Dunlop +description: This is Bcspatch Dunlop's description +facsimileTelephoneNumber: +1 510 529-6944 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 720-4163 +title: Associate Product Testing Developer +userPassword: Password1 +uid: DunlopB +givenName: Bcspatch +mail: DunlopB@c9f8cbb8d3d848c99fea02136e8a89f7.bitwarden.com +carLicense: DLXENP +departmentNumber: 6449 +employeeType: Contract +homePhone: +1 510 334-7373 +initials: B. D. +mobile: +1 510 197-8419 +pager: +1 510 627-8337 +roomNumber: 8698 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ioana Newsome,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ioana Newsome +sn: Newsome +description: This is Ioana Newsome's description +facsimileTelephoneNumber: +1 818 851-4271 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 492-8136 +title: Junior Administrative Dictator +userPassword: Password1 +uid: NewsomeI +givenName: Ioana +mail: NewsomeI@c41f8f7aea354718b6ea3277359c3684.bitwarden.com +carLicense: HC9HQP +departmentNumber: 7169 +employeeType: Contract +homePhone: +1 818 515-3493 +initials: I. N. +mobile: +1 818 400-9063 +pager: +1 818 755-7528 +roomNumber: 9657 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WingKi Dpnqa +sn: Dpnqa +description: This is WingKi Dpnqa's description +facsimileTelephoneNumber: +1 408 908-3689 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 956-8737 +title: Associate Product Development President +userPassword: Password1 +uid: DpnqaW +givenName: WingKi +mail: DpnqaW@829d5713be204a9ab0a7f267371638c5.bitwarden.com +carLicense: PKB3A5 +departmentNumber: 6571 +employeeType: Employee +homePhone: +1 408 908-6700 +initials: W. D. +mobile: +1 408 233-1847 +pager: +1 408 897-8493 +roomNumber: 8496 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonja Ruffolo +sn: Ruffolo +description: This is Sonja Ruffolo's description +facsimileTelephoneNumber: +1 408 241-5751 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 297-1656 +title: Chief Product Development Artist +userPassword: Password1 +uid: RuffoloS +givenName: Sonja +mail: RuffoloS@28a9681724804070b81d5f99c070a25f.bitwarden.com +carLicense: MTES24 +departmentNumber: 4997 +employeeType: Normal +homePhone: +1 408 654-9009 +initials: S. R. +mobile: +1 408 827-2341 +pager: +1 408 993-5172 +roomNumber: 9801 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Damian Lescot,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Damian Lescot +sn: Lescot +description: This is Damian Lescot's description +facsimileTelephoneNumber: +1 213 793-3190 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 638-9753 +title: Supreme Product Development Writer +userPassword: Password1 +uid: LescotD +givenName: Damian +mail: LescotD@6bb09be3d23943f6925bf796ee13d06b.bitwarden.com +carLicense: AWUOKY +departmentNumber: 7172 +employeeType: Employee +homePhone: +1 213 422-1856 +initials: D. L. +mobile: +1 213 842-4638 +pager: +1 213 449-2586 +roomNumber: 8597 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Raz Roseland,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raz Roseland +sn: Roseland +description: This is Raz Roseland's description +facsimileTelephoneNumber: +1 408 287-1669 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 641-8383 +title: Associate Payroll Director +userPassword: Password1 +uid: RoselanR +givenName: Raz +mail: RoselanR@39eecbf6644e41e6a54aa634c1d5a5be.bitwarden.com +carLicense: BAKAEE +departmentNumber: 5119 +employeeType: Employee +homePhone: +1 408 666-4213 +initials: R. R. +mobile: +1 408 841-3386 +pager: +1 408 255-9551 +roomNumber: 8236 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MinhPhuc Voss +sn: Voss +description: This is MinhPhuc Voss's description +facsimileTelephoneNumber: +1 804 117-5456 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 804 850-4188 +title: Master Payroll Technician +userPassword: Password1 +uid: VossM +givenName: MinhPhuc +mail: VossM@6e1fed861212421a9e034f7ade197c18.bitwarden.com +carLicense: 4HTGRP +departmentNumber: 5454 +employeeType: Normal +homePhone: +1 804 976-5012 +initials: M. V. +mobile: +1 804 286-6130 +pager: +1 804 579-4649 +roomNumber: 9967 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Vivianna Lackie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vivianna Lackie +sn: Lackie +description: This is Vivianna Lackie's description +facsimileTelephoneNumber: +1 510 209-4886 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 510 140-6188 +title: Junior Management Writer +userPassword: Password1 +uid: LackieV +givenName: Vivianna +mail: LackieV@c6135533c1c14dabb3956121df0f7a96.bitwarden.com +carLicense: W1BEIT +departmentNumber: 3404 +employeeType: Contract +homePhone: +1 510 734-4397 +initials: V. L. +mobile: +1 510 444-7784 +pager: +1 510 921-7019 +roomNumber: 9486 +manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hadi Freeley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hadi Freeley +sn: Freeley +description: This is Hadi Freeley's description +facsimileTelephoneNumber: +1 213 715-7561 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 948-1223 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: FreeleyH +givenName: Hadi +mail: FreeleyH@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com +carLicense: 3VQ79P +departmentNumber: 8170 +employeeType: Employee +homePhone: +1 213 125-6023 +initials: H. F. +mobile: +1 213 792-4896 +pager: +1 213 608-3925 +roomNumber: 9657 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carol Sarson,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carol Sarson +sn: Sarson +description: This is Carol Sarson's description +facsimileTelephoneNumber: +1 415 266-4131 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 415 721-7442 +title: Master Management Punk +userPassword: Password1 +uid: SarsonC +givenName: Carol +mail: SarsonC@9d5ea794acf845deab8b5f3d0cc82f3c.bitwarden.com +carLicense: O5K7UC +departmentNumber: 4679 +employeeType: Employee +homePhone: +1 415 752-6790 +initials: C. S. +mobile: +1 415 372-3934 +pager: +1 415 348-8303 +roomNumber: 9948 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marinette Paoletti +sn: Paoletti +description: This is Marinette Paoletti's description +facsimileTelephoneNumber: +1 213 419-3252 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 706-3950 +title: Associate Janitorial Punk +userPassword: Password1 +uid: PaolettM +givenName: Marinette +mail: PaolettM@658d341f53c7427cb916d5817479bb06.bitwarden.com +carLicense: KK0OC8 +departmentNumber: 8538 +employeeType: Employee +homePhone: +1 213 156-6539 +initials: M. P. +mobile: +1 213 155-9393 +pager: +1 213 507-1280 +roomNumber: 9110 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ailene Mackin,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailene Mackin +sn: Mackin +description: This is Ailene Mackin's description +facsimileTelephoneNumber: +1 213 257-3962 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 459-7012 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: MackinA +givenName: Ailene +mail: MackinA@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com +carLicense: JHQMIT +departmentNumber: 5029 +employeeType: Employee +homePhone: +1 213 372-2289 +initials: A. M. +mobile: +1 213 336-3043 +pager: +1 213 382-8065 +roomNumber: 9457 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Umakanth Rollinson +sn: Rollinson +description: This is Umakanth Rollinson's description +facsimileTelephoneNumber: +1 408 392-8444 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 408 172-9215 +title: Junior Administrative President +userPassword: Password1 +uid: RollinsU +givenName: Umakanth +mail: RollinsU@33df80476cec44768009e5ea91fdde4e.bitwarden.com +carLicense: AXG89E +departmentNumber: 3686 +employeeType: Contract +homePhone: +1 408 890-8990 +initials: U. R. +mobile: +1 408 352-5791 +pager: +1 408 682-9724 +roomNumber: 8184 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paloma Jasmin +sn: Jasmin +description: This is Paloma Jasmin's description +facsimileTelephoneNumber: +1 206 410-1616 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 206 646-3338 +title: Junior Product Testing Grunt +userPassword: Password1 +uid: JasminP +givenName: Paloma +mail: JasminP@9f7e1d164477458983f7ecf611ccd053.bitwarden.com +carLicense: G0PKNF +departmentNumber: 9212 +employeeType: Contract +homePhone: +1 206 447-7106 +initials: P. J. +mobile: +1 206 585-2649 +pager: +1 206 767-3313 +roomNumber: 8508 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bret Winicki,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bret Winicki +sn: Winicki +description: This is Bret Winicki's description +facsimileTelephoneNumber: +1 804 341-7562 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 804 443-2517 +title: Junior Product Testing Assistant +userPassword: Password1 +uid: WinickiB +givenName: Bret +mail: WinickiB@54f117c8b36b486ab03de0f2d082701e.bitwarden.com +carLicense: EP3IFC +departmentNumber: 1328 +employeeType: Normal +homePhone: +1 804 158-1676 +initials: B. W. +mobile: +1 804 164-9104 +pager: +1 804 356-1374 +roomNumber: 8110 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hatty Latchford,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hatty Latchford +sn: Latchford +description: This is Hatty Latchford's description +facsimileTelephoneNumber: +1 818 499-5563 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 818 919-7448 +title: Associate Peons Developer +userPassword: Password1 +uid: LatchfoH +givenName: Hatty +mail: LatchfoH@0600d7e5efe7437ab4bf4188ef381ca8.bitwarden.com +carLicense: 0TPIAS +departmentNumber: 1202 +employeeType: Contract +homePhone: +1 818 445-6224 +initials: H. L. +mobile: +1 818 395-4004 +pager: +1 818 518-4763 +roomNumber: 9810 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madelaine Swepston +sn: Swepston +description: This is Madelaine Swepston's description +facsimileTelephoneNumber: +1 213 515-4152 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 213 727-6953 +title: Associate Product Testing Director +userPassword: Password1 +uid: SwepstoM +givenName: Madelaine +mail: SwepstoM@f5f5c7e1f86f41029a11eb9627ca25be.bitwarden.com +carLicense: VDHUFK +departmentNumber: 2178 +employeeType: Contract +homePhone: +1 213 377-8264 +initials: M. S. +mobile: +1 213 265-7839 +pager: +1 213 503-8846 +roomNumber: 8931 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Trey Baenziger,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trey Baenziger +sn: Baenziger +description: This is Trey Baenziger's description +facsimileTelephoneNumber: +1 415 380-5920 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 415 373-4140 +title: Chief Product Testing Engineer +userPassword: Password1 +uid: BaenzigT +givenName: Trey +mail: BaenzigT@2c4a787e446b470797a2c3a15157473d.bitwarden.com +carLicense: IB2HNC +departmentNumber: 7782 +employeeType: Employee +homePhone: +1 415 720-2415 +initials: T. B. +mobile: +1 415 344-3751 +pager: +1 415 643-1849 +roomNumber: 9048 +manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ioan Elsing,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ioan Elsing +sn: Elsing +description: This is Ioan Elsing's description +facsimileTelephoneNumber: +1 804 298-3499 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 804 218-5221 +title: Junior Product Testing Grunt +userPassword: Password1 +uid: ElsingI +givenName: Ioan +mail: ElsingI@2a96d5dbd54f4fdb9c20889b618e8eea.bitwarden.com +carLicense: XUHOPF +departmentNumber: 7485 +employeeType: Normal +homePhone: +1 804 298-9689 +initials: I. E. +mobile: +1 804 749-9722 +pager: +1 804 886-3434 +roomNumber: 9150 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joy Ferrara,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joy Ferrara +sn: Ferrara +description: This is Joy Ferrara's description +facsimileTelephoneNumber: +1 804 845-2845 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 413-1800 +title: Junior Payroll Architect +userPassword: Password1 +uid: FerraraJ +givenName: Joy +mail: FerraraJ@f69c90cc2b8c4a8e9725fac3e3a7a1d1.bitwarden.com +carLicense: 59D8RJ +departmentNumber: 2705 +employeeType: Employee +homePhone: +1 804 946-4168 +initials: J. F. +mobile: +1 804 988-4920 +pager: +1 804 618-7538 +roomNumber: 9001 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cinderella Hazeldine +sn: Hazeldine +description: This is Cinderella Hazeldine's description +facsimileTelephoneNumber: +1 804 433-2752 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 804 322-6285 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: HazeldiC +givenName: Cinderella +mail: HazeldiC@582578f4c0a34d7283b52c37fe385620.bitwarden.com +carLicense: HR0BRX +departmentNumber: 1429 +employeeType: Employee +homePhone: +1 804 715-9470 +initials: C. H. +mobile: +1 804 955-5703 +pager: +1 804 326-2479 +roomNumber: 8856 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rowe Clinton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rowe Clinton +sn: Clinton +description: This is Rowe Clinton's description +facsimileTelephoneNumber: +1 213 785-9297 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 213 105-5432 +title: Supreme Product Testing Vice President +userPassword: Password1 +uid: ClintonR +givenName: Rowe +mail: ClintonR@39cdc253bc3c4fafbda637c79741172e.bitwarden.com +carLicense: BW5LBC +departmentNumber: 7610 +employeeType: Contract +homePhone: +1 213 927-1048 +initials: R. C. +mobile: +1 213 259-6309 +pager: +1 213 965-5910 +roomNumber: 8181 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dolores McCafferty,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dolores McCafferty +sn: McCafferty +description: This is Dolores McCafferty's description +facsimileTelephoneNumber: +1 510 399-9931 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 510 121-4523 +title: Junior Product Development Artist +userPassword: Password1 +uid: McCaffeD +givenName: Dolores +mail: McCaffeD@9fb3bab6a5274e42930ef0c4e486700b.bitwarden.com +carLicense: Q9B71K +departmentNumber: 7243 +employeeType: Contract +homePhone: +1 510 714-4218 +initials: D. M. +mobile: +1 510 638-5913 +pager: +1 510 264-7993 +roomNumber: 8558 +manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Luciana Lepore,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luciana Lepore +sn: Lepore +description: This is Luciana Lepore's description +facsimileTelephoneNumber: +1 510 961-1453 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 925-8773 +title: Junior Administrative Technician +userPassword: Password1 +uid: LeporeL +givenName: Luciana +mail: LeporeL@d257ebd18e114f6aa84afd223eee79f3.bitwarden.com +carLicense: Y6696E +departmentNumber: 1089 +employeeType: Employee +homePhone: +1 510 416-7705 +initials: L. L. +mobile: +1 510 803-4435 +pager: +1 510 797-7535 +roomNumber: 8394 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ciaran Cicchino +sn: Cicchino +description: This is Ciaran Cicchino's description +facsimileTelephoneNumber: +1 510 663-7171 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 510 880-7334 +title: Master Product Development Fellow +userPassword: Password1 +uid: CicchinC +givenName: Ciaran +mail: CicchinC@75db88f614404021a489793ab108bedb.bitwarden.com +carLicense: JQNVBI +departmentNumber: 2698 +employeeType: Contract +homePhone: +1 510 907-7663 +initials: C. C. +mobile: +1 510 119-8501 +pager: +1 510 531-4240 +roomNumber: 8371 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jimmie Korest,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jimmie Korest +sn: Korest +description: This is Jimmie Korest's description +facsimileTelephoneNumber: +1 510 973-7415 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 275-8148 +title: Associate Administrative Madonna +userPassword: Password1 +uid: KorestJ +givenName: Jimmie +mail: KorestJ@735bae6f17be4d659b3d005e2e886c13.bitwarden.com +carLicense: 27Y3BF +departmentNumber: 6314 +employeeType: Employee +homePhone: +1 510 374-4490 +initials: J. K. +mobile: +1 510 611-6749 +pager: +1 510 428-6566 +roomNumber: 8258 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaitlynn Cracknell +sn: Cracknell +description: This is Kaitlynn Cracknell's description +facsimileTelephoneNumber: +1 408 817-9218 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 251-2311 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: CrackneK +givenName: Kaitlynn +mail: CrackneK@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com +carLicense: PC5OEE +departmentNumber: 2541 +employeeType: Normal +homePhone: +1 408 271-6828 +initials: K. C. +mobile: +1 408 633-3741 +pager: +1 408 843-5565 +roomNumber: 8167 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Martelle Reno,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Martelle Reno +sn: Reno +description: This is Martelle Reno's description +facsimileTelephoneNumber: +1 818 410-9450 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 818 992-3687 +title: Associate Human Resources Czar +userPassword: Password1 +uid: RenoM +givenName: Martelle +mail: RenoM@de1b941b029b482ba2e81cfa3a5aa97c.bitwarden.com +carLicense: TVTKHD +departmentNumber: 4316 +employeeType: Contract +homePhone: +1 818 967-3319 +initials: M. R. +mobile: +1 818 524-8217 +pager: +1 818 645-2331 +roomNumber: 9794 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hock Chilausky,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hock Chilausky +sn: Chilausky +description: This is Hock Chilausky's description +facsimileTelephoneNumber: +1 510 190-2701 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 510 913-7251 +title: Supreme Administrative Vice President +userPassword: Password1 +uid: ChilausH +givenName: Hock +mail: ChilausH@8dfc1cdc4f364e48b56261d47a4ab828.bitwarden.com +carLicense: 2I9BFO +departmentNumber: 5094 +employeeType: Normal +homePhone: +1 510 573-4174 +initials: H. C. +mobile: +1 510 586-1099 +pager: +1 510 908-1101 +roomNumber: 8383 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Teddie Bulan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teddie Bulan +sn: Bulan +description: This is Teddie Bulan's description +facsimileTelephoneNumber: +1 415 821-9656 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 415 868-4141 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: BulanT +givenName: Teddie +mail: BulanT@4136b563ed9340ee98f3a89751b3b749.bitwarden.com +carLicense: 2HN2MS +departmentNumber: 1506 +employeeType: Contract +homePhone: +1 415 945-4093 +initials: T. B. +mobile: +1 415 292-8228 +pager: +1 415 397-7860 +roomNumber: 9221 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lavonda Rowsell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lavonda Rowsell +sn: Rowsell +description: This is Lavonda Rowsell's description +facsimileTelephoneNumber: +1 213 725-8646 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 213 192-1016 +title: Supreme Management Technician +userPassword: Password1 +uid: RowsellL +givenName: Lavonda +mail: RowsellL@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com +carLicense: MR4Q8U +departmentNumber: 9651 +employeeType: Contract +homePhone: +1 213 364-1852 +initials: L. R. +mobile: +1 213 877-2613 +pager: +1 213 786-3201 +roomNumber: 9455 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anallese Babasaki +sn: Babasaki +description: This is Anallese Babasaki's description +facsimileTelephoneNumber: +1 510 852-5246 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 834-9511 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: BabasakA +givenName: Anallese +mail: BabasakA@9eaee5a095454441a8ff73a3e26fa008.bitwarden.com +carLicense: JRYFDJ +departmentNumber: 4218 +employeeType: Employee +homePhone: +1 510 120-8342 +initials: A. B. +mobile: +1 510 201-4786 +pager: +1 510 637-8768 +roomNumber: 9528 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Persis Daneshzadeh +sn: Daneshzadeh +description: This is Persis Daneshzadeh's description +facsimileTelephoneNumber: +1 206 685-4333 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 936-3464 +title: Master Administrative Sales Rep +userPassword: Password1 +uid: DaneshzP +givenName: Persis +mail: DaneshzP@a312c5a631954b3083418977a35fbc96.bitwarden.com +carLicense: GPOPMK +departmentNumber: 5801 +employeeType: Normal +homePhone: +1 206 209-5194 +initials: P. D. +mobile: +1 206 112-5422 +pager: +1 206 888-7075 +roomNumber: 8382 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lorinda Nolet,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorinda Nolet +sn: Nolet +description: This is Lorinda Nolet's description +facsimileTelephoneNumber: +1 415 323-3697 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 415 464-1243 +title: Supreme Payroll Pinhead +userPassword: Password1 +uid: NoletL +givenName: Lorinda +mail: NoletL@87d497e060994207b70ef7bd8c3d6175.bitwarden.com +carLicense: 3EW1GN +departmentNumber: 7824 +employeeType: Employee +homePhone: +1 415 897-7652 +initials: L. N. +mobile: +1 415 103-5305 +pager: +1 415 494-4723 +roomNumber: 8321 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ike Outage,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ike Outage +sn: Outage +description: This is Ike Outage's description +facsimileTelephoneNumber: +1 415 683-7019 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 921-4807 +title: Master Human Resources Vice President +userPassword: Password1 +uid: OutageI +givenName: Ike +mail: OutageI@1d45ed10a4c94ef092969b5e721cde30.bitwarden.com +carLicense: Q62VKF +departmentNumber: 9211 +employeeType: Normal +homePhone: +1 415 370-7776 +initials: I. O. +mobile: +1 415 912-1655 +pager: +1 415 252-7128 +roomNumber: 8465 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Erin Dolson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erin Dolson +sn: Dolson +description: This is Erin Dolson's description +facsimileTelephoneNumber: +1 804 343-4093 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 804 693-1321 +title: Junior Peons Admin +userPassword: Password1 +uid: DolsonE +givenName: Erin +mail: DolsonE@834d5c62ddb748bdb27bdbef9776c699.bitwarden.com +carLicense: Q5FFP8 +departmentNumber: 4379 +employeeType: Employee +homePhone: +1 804 171-2620 +initials: E. D. +mobile: +1 804 761-3048 +pager: +1 804 615-4299 +roomNumber: 9632 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zoenka Rodriguez +sn: Rodriguez +description: This is Zoenka Rodriguez's description +facsimileTelephoneNumber: +1 415 397-8465 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 941-9569 +title: Junior Janitorial Writer +userPassword: Password1 +uid: RodriguZ +givenName: Zoenka +mail: RodriguZ@587817ef80f642439eb2bd6954e605f0.bitwarden.com +carLicense: HPT2N5 +departmentNumber: 9507 +employeeType: Normal +homePhone: +1 415 184-6588 +initials: Z. R. +mobile: +1 415 933-2128 +pager: +1 415 449-4899 +roomNumber: 8290 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anderson Sitar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anderson Sitar +sn: Sitar +description: This is Anderson Sitar's description +facsimileTelephoneNumber: +1 213 206-5400 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 868-5047 +title: Associate Management Punk +userPassword: Password1 +uid: SitarA +givenName: Anderson +mail: SitarA@75858e9b0a57431ea93369d3d0fdb55e.bitwarden.com +carLicense: 2UVA2K +departmentNumber: 5602 +employeeType: Contract +homePhone: +1 213 577-3646 +initials: A. S. +mobile: +1 213 254-1221 +pager: +1 213 257-1481 +roomNumber: 9056 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christabella Grandbois +sn: Grandbois +description: This is Christabella Grandbois's description +facsimileTelephoneNumber: +1 415 291-6436 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 896-6298 +title: Junior Janitorial Sales Rep +userPassword: Password1 +uid: GrandboC +givenName: Christabella +mail: GrandboC@f8828e0649db4c3db49f92ffdaeb1fea.bitwarden.com +carLicense: SD5V3R +departmentNumber: 8472 +employeeType: Normal +homePhone: +1 415 574-9858 +initials: C. G. +mobile: +1 415 135-8284 +pager: +1 415 903-7745 +roomNumber: 8413 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ranga Cawley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranga Cawley +sn: Cawley +description: This is Ranga Cawley's description +facsimileTelephoneNumber: +1 415 975-2339 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 415 239-1798 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: CawleyR +givenName: Ranga +mail: CawleyR@8a772ad7c8a24040a4f2b442f7aa7a04.bitwarden.com +carLicense: 9S29AO +departmentNumber: 1040 +employeeType: Normal +homePhone: +1 415 296-8929 +initials: R. C. +mobile: +1 415 880-5960 +pager: +1 415 390-7034 +roomNumber: 9911 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kylie Parnell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kylie Parnell +sn: Parnell +description: This is Kylie Parnell's description +facsimileTelephoneNumber: +1 818 145-2504 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 818 667-2566 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: ParnellK +givenName: Kylie +mail: ParnellK@e28cbc2c5f7b45ddab3e3b415504a46c.bitwarden.com +carLicense: 4UNHBC +departmentNumber: 8706 +employeeType: Normal +homePhone: +1 818 380-6709 +initials: K. P. +mobile: +1 818 115-4288 +pager: +1 818 355-8347 +roomNumber: 9652 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: GokulChandra TestingPOSTTEST +sn: TestingPOSTTEST +description: This is GokulChandra TestingPOSTTEST's description +facsimileTelephoneNumber: +1 804 155-9579 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 804 865-2613 +title: Chief Product Testing Dictator +userPassword: Password1 +uid: TestingG +givenName: GokulChandra +mail: TestingG@388f37e043f44f87a961652591a7a940.bitwarden.com +carLicense: P9WSS4 +departmentNumber: 6641 +employeeType: Normal +homePhone: +1 804 276-6316 +initials: G. T. +mobile: +1 804 712-9829 +pager: +1 804 786-1557 +roomNumber: 8711 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com + +dn: cn=Millisent Ladymon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Millisent Ladymon +sn: Ladymon +description: This is Millisent Ladymon's description +facsimileTelephoneNumber: +1 415 123-3201 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 621-5063 +title: Chief Product Development Sales Rep +userPassword: Password1 +uid: LadymonM +givenName: Millisent +mail: LadymonM@98315d8e8bc34b77b08ac74a18e3be73.bitwarden.com +carLicense: 800E2A +departmentNumber: 6825 +employeeType: Employee +homePhone: +1 415 552-1800 +initials: M. L. +mobile: +1 415 661-6355 +pager: +1 415 851-6042 +roomNumber: 8137 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chlo Reinboth +sn: Reinboth +description: This is Chlo Reinboth's description +facsimileTelephoneNumber: +1 415 310-9079 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 705-6876 +title: Master Product Testing Technician +userPassword: Password1 +uid: ReinbotC +givenName: Chlo +mail: ReinbotC@65d073567be540b69713d5ac0dbae37f.bitwarden.com +carLicense: YB07NF +departmentNumber: 4844 +employeeType: Normal +homePhone: +1 415 819-9696 +initials: C. R. +mobile: +1 415 639-8130 +pager: +1 415 602-4914 +roomNumber: 9307 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tilda Turcot,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilda Turcot +sn: Turcot +description: This is Tilda Turcot's description +facsimileTelephoneNumber: +1 213 388-4390 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 149-2340 +title: Supreme Administrative Dictator +userPassword: Password1 +uid: TurcotT +givenName: Tilda +mail: TurcotT@29d0d437b2c147b0847b9dd994ec881e.bitwarden.com +carLicense: P8WLUD +departmentNumber: 2756 +employeeType: Contract +homePhone: +1 213 919-8873 +initials: T. T. +mobile: +1 213 669-1371 +pager: +1 213 877-6400 +roomNumber: 9528 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Yuji McCabe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yuji McCabe +sn: McCabe +description: This is Yuji McCabe's description +facsimileTelephoneNumber: +1 415 214-1292 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 833-3996 +title: Associate Payroll Developer +userPassword: Password1 +uid: McCabeY +givenName: Yuji +mail: McCabeY@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com +carLicense: K7YQ8W +departmentNumber: 3718 +employeeType: Contract +homePhone: +1 415 931-9277 +initials: Y. M. +mobile: +1 415 808-1459 +pager: +1 415 562-6992 +roomNumber: 8752 +manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pen Yost,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pen Yost +sn: Yost +description: This is Pen Yost's description +facsimileTelephoneNumber: +1 213 186-4989 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 213 369-7186 +title: Supreme Janitorial Artist +userPassword: Password1 +uid: YostP +givenName: Pen +mail: YostP@a58f1d89c8df4bb585be88ea46688614.bitwarden.com +carLicense: I4GQLP +departmentNumber: 5819 +employeeType: Employee +homePhone: +1 213 441-6450 +initials: P. Y. +mobile: +1 213 798-3790 +pager: +1 213 782-8027 +roomNumber: 8168 +manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Traci Ahdieh,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Traci Ahdieh +sn: Ahdieh +description: This is Traci Ahdieh's description +facsimileTelephoneNumber: +1 510 538-3202 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 757-6843 +title: Chief Management Mascot +userPassword: Password1 +uid: AhdiehT +givenName: Traci +mail: AhdiehT@0d3a1096e9114165b169e9981629dc14.bitwarden.com +carLicense: JRTUXQ +departmentNumber: 6623 +employeeType: Employee +homePhone: +1 510 843-8210 +initials: T. A. +mobile: +1 510 646-7871 +pager: +1 510 268-4484 +roomNumber: 9229 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fay Deugau,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fay Deugau +sn: Deugau +description: This is Fay Deugau's description +facsimileTelephoneNumber: +1 415 362-5615 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 415 433-3702 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: DeugauF +givenName: Fay +mail: DeugauF@c928e664ca344d17b905e23403ffeabf.bitwarden.com +carLicense: MHTWHR +departmentNumber: 3646 +employeeType: Employee +homePhone: +1 415 907-6731 +initials: F. D. +mobile: +1 415 661-7435 +pager: +1 415 431-2713 +roomNumber: 9623 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Inna MokFung,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Inna MokFung +sn: MokFung +description: This is Inna MokFung's description +facsimileTelephoneNumber: +1 415 957-9087 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 975-1899 +title: Master Administrative Architect +userPassword: Password1 +uid: MokFungI +givenName: Inna +mail: MokFungI@a99084400fcf4b279e00215493abf581.bitwarden.com +carLicense: M2V6FJ +departmentNumber: 8262 +employeeType: Contract +homePhone: +1 415 454-2923 +initials: I. M. +mobile: +1 415 222-2578 +pager: +1 415 480-1277 +roomNumber: 8581 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thalia Bahgat +sn: Bahgat +description: This is Thalia Bahgat's description +facsimileTelephoneNumber: +1 804 246-4577 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 379-2332 +title: Master Human Resources Architect +userPassword: Password1 +uid: BahgatT +givenName: Thalia +mail: BahgatT@efcd1b5597e34989b53d787ed4a06081.bitwarden.com +carLicense: 1M466B +departmentNumber: 1650 +employeeType: Contract +homePhone: +1 804 990-7218 +initials: T. B. +mobile: +1 804 459-6608 +pager: +1 804 741-6068 +roomNumber: 9591 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tehchi McEwan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tehchi McEwan +sn: McEwan +description: This is Tehchi McEwan's description +facsimileTelephoneNumber: +1 213 411-2057 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 190-3843 +title: Supreme Peons Architect +userPassword: Password1 +uid: McEwanT +givenName: Tehchi +mail: McEwanT@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com +carLicense: BJS5MC +departmentNumber: 2444 +employeeType: Contract +homePhone: +1 213 815-3930 +initials: T. M. +mobile: +1 213 287-8085 +pager: +1 213 743-9281 +roomNumber: 9813 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tats Graves,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tats Graves +sn: Graves +description: This is Tats Graves's description +facsimileTelephoneNumber: +1 408 668-9919 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 408 131-9392 +title: Supreme Administrative Architect +userPassword: Password1 +uid: GravesT +givenName: Tats +mail: GravesT@a6ec4676b0ad44f28916d133e3a83b4d.bitwarden.com +carLicense: DCH8AA +departmentNumber: 3182 +employeeType: Employee +homePhone: +1 408 381-4514 +initials: T. G. +mobile: +1 408 217-5063 +pager: +1 408 645-7234 +roomNumber: 9074 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomson Annabelle +sn: Annabelle +description: This is Thomson Annabelle's description +facsimileTelephoneNumber: +1 818 399-1336 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 139-8563 +title: Junior Human Resources President +userPassword: Password1 +uid: AnnabelT +givenName: Thomson +mail: AnnabelT@4fe51546324e43adb896246907c2c135.bitwarden.com +carLicense: U1OLW9 +departmentNumber: 2726 +employeeType: Employee +homePhone: +1 818 488-6606 +initials: T. A. +mobile: +1 818 351-5857 +pager: +1 818 914-8181 +roomNumber: 9817 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nakina Steranka,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nakina Steranka +sn: Steranka +description: This is Nakina Steranka's description +facsimileTelephoneNumber: +1 510 749-5917 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 510 576-9473 +title: Chief Payroll Artist +userPassword: Password1 +uid: SterankN +givenName: Nakina +mail: SterankN@2daa2d54a3ef4729ab85003e87e24fc2.bitwarden.com +carLicense: 54AQBL +departmentNumber: 4121 +employeeType: Employee +homePhone: +1 510 898-4336 +initials: N. S. +mobile: +1 510 142-6866 +pager: +1 510 696-2745 +roomNumber: 8833 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gilda Reid,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilda Reid +sn: Reid +description: This is Gilda Reid's description +facsimileTelephoneNumber: +1 408 334-4284 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 900-8932 +title: Master Peons Admin +userPassword: Password1 +uid: ReidG +givenName: Gilda +mail: ReidG@dec219c60891448d9130e91ee40108cc.bitwarden.com +carLicense: H1XKOA +departmentNumber: 7759 +employeeType: Contract +homePhone: +1 408 734-3963 +initials: G. R. +mobile: +1 408 973-6171 +pager: +1 408 977-5184 +roomNumber: 9474 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hildegarde Mcellistrem +sn: Mcellistrem +description: This is Hildegarde Mcellistrem's description +facsimileTelephoneNumber: +1 206 181-2698 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 206 397-8273 +title: Supreme Administrative Stooge +userPassword: Password1 +uid: McellisH +givenName: Hildegarde +mail: McellisH@7e878d5ac7f34222a15cdadf43462965.bitwarden.com +carLicense: ARB7O2 +departmentNumber: 9985 +employeeType: Normal +homePhone: +1 206 566-9776 +initials: H. M. +mobile: +1 206 202-6345 +pager: +1 206 496-6688 +roomNumber: 8841 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Arnis Truchon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arnis Truchon +sn: Truchon +description: This is Arnis Truchon's description +facsimileTelephoneNumber: +1 206 300-1333 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 206 726-4906 +title: Master Administrative Engineer +userPassword: Password1 +uid: TruchonA +givenName: Arnis +mail: TruchonA@912fbf9c89084a08a95b13d9b901e072.bitwarden.com +carLicense: Y168DB +departmentNumber: 1797 +employeeType: Normal +homePhone: +1 206 724-7508 +initials: A. T. +mobile: +1 206 193-3861 +pager: +1 206 418-9439 +roomNumber: 9586 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ryszard DocumentationGrp +sn: DocumentationGrp +description: This is Ryszard DocumentationGrp's description +facsimileTelephoneNumber: +1 818 348-1600 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 818 830-2691 +title: Associate Payroll Grunt +userPassword: Password1 +uid: DocumenR +givenName: Ryszard +mail: DocumenR@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com +carLicense: YCLSP9 +departmentNumber: 1169 +employeeType: Employee +homePhone: +1 818 284-8619 +initials: R. D. +mobile: +1 818 761-2963 +pager: +1 818 638-8881 +roomNumber: 9721 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Syyed Ackwood +sn: Ackwood +description: This is Syyed Ackwood's description +facsimileTelephoneNumber: +1 206 852-1845 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 487-4969 +title: Supreme Janitorial Architect +userPassword: Password1 +uid: AckwoodS +givenName: Syyed +mail: AckwoodS@bebbec64fc5b426aa6d6b13aab8ac6c1.bitwarden.com +carLicense: UEITTY +departmentNumber: 2627 +employeeType: Normal +homePhone: +1 206 969-5959 +initials: S. A. +mobile: +1 206 657-6492 +pager: +1 206 927-2446 +roomNumber: 8867 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Paige Wanzeck,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paige Wanzeck +sn: Wanzeck +description: This is Paige Wanzeck's description +facsimileTelephoneNumber: +1 213 735-5178 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 699-8540 +title: Chief Management President +userPassword: Password1 +uid: WanzeckP +givenName: Paige +mail: WanzeckP@be6364f0dd5d4b9ca40fd1cd6b60dc01.bitwarden.com +carLicense: 1I25IE +departmentNumber: 8030 +employeeType: Contract +homePhone: +1 213 737-2316 +initials: P. W. +mobile: +1 213 937-7435 +pager: +1 213 781-3498 +roomNumber: 8146 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dutch HSI,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dutch HSI +sn: HSI +description: This is Dutch HSI's description +facsimileTelephoneNumber: +1 206 548-7095 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 206 245-6281 +title: Associate Product Testing Pinhead +userPassword: Password1 +uid: HSID +givenName: Dutch +mail: HSID@f1796b877596418d9a10887e44f60c73.bitwarden.com +carLicense: 85CM6W +departmentNumber: 6365 +employeeType: Normal +homePhone: +1 206 332-8686 +initials: D. H. +mobile: +1 206 813-1858 +pager: +1 206 630-4466 +roomNumber: 8093 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Adda Danai,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adda Danai +sn: Danai +description: This is Adda Danai's description +facsimileTelephoneNumber: +1 818 451-1431 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 818 600-5874 +title: Associate Product Development Warrior +userPassword: Password1 +uid: DanaiA +givenName: Adda +mail: DanaiA@2229562e57b44d9d8ff347bf88958fa0.bitwarden.com +carLicense: XPHUQC +departmentNumber: 1418 +employeeType: Normal +homePhone: +1 818 826-2212 +initials: A. D. +mobile: +1 818 109-9478 +pager: +1 818 262-2065 +roomNumber: 9009 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Netty Muttaqi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Netty Muttaqi +sn: Muttaqi +description: This is Netty Muttaqi's description +facsimileTelephoneNumber: +1 206 321-3261 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 605-2709 +title: Junior Management Visionary +userPassword: Password1 +uid: MuttaqiN +givenName: Netty +mail: MuttaqiN@05834ac23b2d4ffd8c19e87e4a8a3312.bitwarden.com +carLicense: 9YGBW9 +departmentNumber: 1447 +employeeType: Employee +homePhone: +1 206 681-5265 +initials: N. M. +mobile: +1 206 970-9652 +pager: +1 206 906-8492 +roomNumber: 8945 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Karly Breglec,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karly Breglec +sn: Breglec +description: This is Karly Breglec's description +facsimileTelephoneNumber: +1 804 387-2007 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 804 314-9304 +title: Master Peons Technician +userPassword: Password1 +uid: BreglecK +givenName: Karly +mail: BreglecK@7bea05cd51e741778b53f257dcc46e63.bitwarden.com +carLicense: GNQAIQ +departmentNumber: 7097 +employeeType: Contract +homePhone: +1 804 391-1983 +initials: K. B. +mobile: +1 804 754-4996 +pager: +1 804 177-5337 +roomNumber: 9088 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrew Gerbec +sn: Gerbec +description: This is Andrew Gerbec's description +facsimileTelephoneNumber: +1 804 215-9961 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 804 987-2457 +title: Master Janitorial Assistant +userPassword: Password1 +uid: GerbecA +givenName: Andrew +mail: GerbecA@4adccb8182214b56b2168ff34b029365.bitwarden.com +carLicense: B3LKNM +departmentNumber: 6057 +employeeType: Normal +homePhone: +1 804 342-2557 +initials: A. G. +mobile: +1 804 695-2033 +pager: +1 804 334-7176 +roomNumber: 9944 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gurdip Thornber,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gurdip Thornber +sn: Thornber +description: This is Gurdip Thornber's description +facsimileTelephoneNumber: +1 408 270-3465 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 408 767-7702 +title: Supreme Management Janitor +userPassword: Password1 +uid: ThornbeG +givenName: Gurdip +mail: ThornbeG@7470f93c470941c983e3e9faa8bed631.bitwarden.com +carLicense: KCBEGY +departmentNumber: 6491 +employeeType: Normal +homePhone: +1 408 818-9442 +initials: G. T. +mobile: +1 408 729-1580 +pager: +1 408 996-1895 +roomNumber: 8713 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dulcea Bassett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulcea Bassett +sn: Bassett +description: This is Dulcea Bassett's description +facsimileTelephoneNumber: +1 415 295-4697 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 762-4621 +title: Junior Management Stooge +userPassword: Password1 +uid: BassettD +givenName: Dulcea +mail: BassettD@6d2ee1c01cd84a73a333667538c9c7b1.bitwarden.com +carLicense: 1KLXMA +departmentNumber: 2510 +employeeType: Contract +homePhone: +1 415 899-2648 +initials: D. B. +mobile: +1 415 270-6594 +pager: +1 415 734-8145 +roomNumber: 9525 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Caprice Selent,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caprice Selent +sn: Selent +description: This is Caprice Selent's description +facsimileTelephoneNumber: +1 804 908-7826 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 695-7027 +title: Junior Payroll Mascot +userPassword: Password1 +uid: SelentC +givenName: Caprice +mail: SelentC@abccdcf5035347f79868c63de7257f89.bitwarden.com +carLicense: IJNCO7 +departmentNumber: 5592 +employeeType: Contract +homePhone: +1 804 877-6094 +initials: C. S. +mobile: +1 804 255-7322 +pager: +1 804 693-9185 +roomNumber: 8483 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hemant Remillard,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hemant Remillard +sn: Remillard +description: This is Hemant Remillard's description +facsimileTelephoneNumber: +1 415 903-4312 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 415 518-4106 +title: Junior Janitorial Punk +userPassword: Password1 +uid: RemillaH +givenName: Hemant +mail: RemillaH@cc172d717b9241f0a28f83e3ce74fb85.bitwarden.com +carLicense: C8IW4S +departmentNumber: 2225 +employeeType: Normal +homePhone: +1 415 769-2116 +initials: H. R. +mobile: +1 415 644-7626 +pager: +1 415 374-1495 +roomNumber: 8483 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tilak Odgers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilak Odgers +sn: Odgers +description: This is Tilak Odgers's description +facsimileTelephoneNumber: +1 510 768-4588 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 510 376-9271 +title: Master Management Punk +userPassword: Password1 +uid: OdgersT +givenName: Tilak +mail: OdgersT@d7b181ccc8954040a7c4160403df7781.bitwarden.com +carLicense: N8X7UQ +departmentNumber: 3554 +employeeType: Employee +homePhone: +1 510 752-7339 +initials: T. O. +mobile: +1 510 482-4855 +pager: +1 510 635-3299 +roomNumber: 8160 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kaela Wooff,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaela Wooff +sn: Wooff +description: This is Kaela Wooff's description +facsimileTelephoneNumber: +1 804 230-8553 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 804 130-8057 +title: Supreme Peons Architect +userPassword: Password1 +uid: WooffK +givenName: Kaela +mail: WooffK@c78a9a65ca75452787721ced31a98916.bitwarden.com +carLicense: F83JOU +departmentNumber: 8680 +employeeType: Normal +homePhone: +1 804 491-9235 +initials: K. W. +mobile: +1 804 117-7831 +pager: +1 804 190-5208 +roomNumber: 8924 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ginette Deardurff +sn: Deardurff +description: This is Ginette Deardurff's description +facsimileTelephoneNumber: +1 206 734-3312 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 945-6775 +title: Master Human Resources Janitor +userPassword: Password1 +uid: DeardurG +givenName: Ginette +mail: DeardurG@369d0d96577549cc8a38c9240b9041ed.bitwarden.com +carLicense: A7LDQO +departmentNumber: 1805 +employeeType: Normal +homePhone: +1 206 771-6879 +initials: G. D. +mobile: +1 206 370-6092 +pager: +1 206 707-7616 +roomNumber: 8270 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bosiljka Dolezal +sn: Dolezal +description: This is Bosiljka Dolezal's description +facsimileTelephoneNumber: +1 408 676-8483 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 990-4716 +title: Supreme Product Development Mascot +userPassword: Password1 +uid: DolezalB +givenName: Bosiljka +mail: DolezalB@fadd1eac8fe2451fa3ba21f515baaf1e.bitwarden.com +carLicense: 78P8HJ +departmentNumber: 2514 +employeeType: Contract +homePhone: +1 408 101-9668 +initials: B. D. +mobile: +1 408 288-5602 +pager: +1 408 652-1240 +roomNumber: 9007 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Grey Krakowetz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grey Krakowetz +sn: Krakowetz +description: This is Grey Krakowetz's description +facsimileTelephoneNumber: +1 206 490-8432 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 645-8084 +title: Associate Administrative Assistant +userPassword: Password1 +uid: KrakoweG +givenName: Grey +mail: KrakoweG@5c9e892ecd964d17bdc57422f30b14b3.bitwarden.com +carLicense: H013UK +departmentNumber: 1387 +employeeType: Normal +homePhone: +1 206 663-2021 +initials: G. K. +mobile: +1 206 169-5451 +pager: +1 206 608-2616 +roomNumber: 8551 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Canute Ladymon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Canute Ladymon +sn: Ladymon +description: This is Canute Ladymon's description +facsimileTelephoneNumber: +1 415 885-1095 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 318-2989 +title: Master Payroll Madonna +userPassword: Password1 +uid: LadymonC +givenName: Canute +mail: LadymonC@1cec494b2c6b4b8a8fb44bcdcbcfca34.bitwarden.com +carLicense: PXK8DQ +departmentNumber: 5553 +employeeType: Normal +homePhone: +1 415 213-9422 +initials: C. L. +mobile: +1 415 570-4180 +pager: +1 415 259-5703 +roomNumber: 8820 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Alex Lumley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alex Lumley +sn: Lumley +description: This is Alex Lumley's description +facsimileTelephoneNumber: +1 804 775-4426 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 760-4793 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: LumleyA +givenName: Alex +mail: LumleyA@c7211550a0e54b11899929b0d44158ff.bitwarden.com +carLicense: EDP6Y5 +departmentNumber: 6751 +employeeType: Normal +homePhone: +1 804 470-8768 +initials: A. L. +mobile: +1 804 855-2248 +pager: +1 804 150-1687 +roomNumber: 8282 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gunars Runkel,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gunars Runkel +sn: Runkel +description: This is Gunars Runkel's description +facsimileTelephoneNumber: +1 415 346-7017 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 843-6019 +title: Chief Peons Vice President +userPassword: Password1 +uid: RunkelG +givenName: Gunars +mail: RunkelG@bfbe96af9d94476ba3dcfc88f7bdf41b.bitwarden.com +carLicense: KP4K2S +departmentNumber: 2794 +employeeType: Employee +homePhone: +1 415 425-7966 +initials: G. R. +mobile: +1 415 296-7648 +pager: +1 415 170-2690 +roomNumber: 8958 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Careers McAdorey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Careers McAdorey +sn: McAdorey +description: This is Careers McAdorey's description +facsimileTelephoneNumber: +1 213 230-8076 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 146-2049 +title: Chief Management Pinhead +userPassword: Password1 +uid: McAdoreC +givenName: Careers +mail: McAdoreC@a8e48e7f01fb4831b7bf783525861229.bitwarden.com +carLicense: KOK2X0 +departmentNumber: 8734 +employeeType: Normal +homePhone: +1 213 943-5137 +initials: C. M. +mobile: +1 213 306-8013 +pager: +1 213 542-6732 +roomNumber: 9107 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ardelia Bunner,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardelia Bunner +sn: Bunner +description: This is Ardelia Bunner's description +facsimileTelephoneNumber: +1 408 619-5154 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 159-7694 +title: Associate Management Writer +userPassword: Password1 +uid: BunnerA +givenName: Ardelia +mail: BunnerA@48da65776d804c88bd44538c39d70bac.bitwarden.com +carLicense: 4KRFXT +departmentNumber: 9279 +employeeType: Contract +homePhone: +1 408 549-8263 +initials: A. B. +mobile: +1 408 862-2360 +pager: +1 408 326-6489 +roomNumber: 9278 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Fekri Hunike,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fekri Hunike +sn: Hunike +description: This is Fekri Hunike's description +facsimileTelephoneNumber: +1 408 126-3193 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 408 274-5400 +title: Master Product Testing Warrior +userPassword: Password1 +uid: HunikeF +givenName: Fekri +mail: HunikeF@4440633f8f29482c8743bf0c056d529c.bitwarden.com +carLicense: 4RUTFE +departmentNumber: 7681 +employeeType: Normal +homePhone: +1 408 606-2257 +initials: F. H. +mobile: +1 408 683-8865 +pager: +1 408 301-4565 +roomNumber: 9139 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Adey Shippen,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adey Shippen +sn: Shippen +description: This is Adey Shippen's description +facsimileTelephoneNumber: +1 818 737-3161 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 118-6811 +title: Supreme Peons Dictator +userPassword: Password1 +uid: ShippenA +givenName: Adey +mail: ShippenA@23d4be833d7746b6959f35fd9cc7acb5.bitwarden.com +carLicense: 05O257 +departmentNumber: 3898 +employeeType: Employee +homePhone: +1 818 530-8300 +initials: A. S. +mobile: +1 818 975-1284 +pager: +1 818 880-1867 +roomNumber: 9191 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Malina Lederman,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malina Lederman +sn: Lederman +description: This is Malina Lederman's description +facsimileTelephoneNumber: +1 415 608-8984 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 390-9828 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: LedermaM +givenName: Malina +mail: LedermaM@b4a96c186a084a79b91245984247afc4.bitwarden.com +carLicense: MK1RT7 +departmentNumber: 8418 +employeeType: Normal +homePhone: +1 415 657-8654 +initials: M. L. +mobile: +1 415 442-3106 +pager: +1 415 985-9463 +roomNumber: 9691 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmina Kikuta +sn: Kikuta +description: This is Carmina Kikuta's description +facsimileTelephoneNumber: +1 818 611-3657 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 631-1153 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: KikutaC +givenName: Carmina +mail: KikutaC@392a4a6a368341beb07fcc7da7744c10.bitwarden.com +carLicense: E4BXVV +departmentNumber: 7383 +employeeType: Employee +homePhone: +1 818 781-3623 +initials: C. K. +mobile: +1 818 827-9737 +pager: +1 818 730-6097 +roomNumber: 8731 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Perry Maryak,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perry Maryak +sn: Maryak +description: This is Perry Maryak's description +facsimileTelephoneNumber: +1 206 620-4352 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 144-2593 +title: Master Product Development Admin +userPassword: Password1 +uid: MaryakP +givenName: Perry +mail: MaryakP@c22edd5791c346768ee9b376006f6c67.bitwarden.com +carLicense: 0T9I16 +departmentNumber: 4492 +employeeType: Employee +homePhone: +1 206 412-5860 +initials: P. M. +mobile: +1 206 362-7751 +pager: +1 206 843-3667 +roomNumber: 8858 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vance Ruppert,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vance Ruppert +sn: Ruppert +description: This is Vance Ruppert's description +facsimileTelephoneNumber: +1 213 330-6069 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 213 303-1158 +title: Junior Payroll Dictator +userPassword: Password1 +uid: RuppertV +givenName: Vance +mail: RuppertV@20c9c762ac48445f91be8a70247647f6.bitwarden.com +carLicense: YYP39M +departmentNumber: 3286 +employeeType: Contract +homePhone: +1 213 633-1973 +initials: V. R. +mobile: +1 213 714-1197 +pager: +1 213 960-5038 +roomNumber: 9321 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Peg Toscano,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Peg Toscano +sn: Toscano +description: This is Peg Toscano's description +facsimileTelephoneNumber: +1 510 527-4309 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 320-3512 +title: Master Human Resources Vice President +userPassword: Password1 +uid: ToscanoP +givenName: Peg +mail: ToscanoP@6ea643c033164b309c315ce3b4972cd5.bitwarden.com +carLicense: PUNUP7 +departmentNumber: 8650 +employeeType: Employee +homePhone: +1 510 337-8485 +initials: P. T. +mobile: +1 510 784-2584 +pager: +1 510 678-8969 +roomNumber: 8886 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Monah Tsonos,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Monah Tsonos +sn: Tsonos +description: This is Monah Tsonos's description +facsimileTelephoneNumber: +1 818 528-8061 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 376-7275 +title: Junior Product Testing President +userPassword: Password1 +uid: TsonosM +givenName: Monah +mail: TsonosM@9f17762c03e9474abb40044c838d96f2.bitwarden.com +carLicense: LK0D25 +departmentNumber: 4535 +employeeType: Normal +homePhone: +1 818 672-6905 +initials: M. T. +mobile: +1 818 117-8360 +pager: +1 818 232-5357 +roomNumber: 8229 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Meade Latulippe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meade Latulippe +sn: Latulippe +description: This is Meade Latulippe's description +facsimileTelephoneNumber: +1 818 567-6406 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 818 939-3518 +title: Associate Janitorial Warrior +userPassword: Password1 +uid: LatulipM +givenName: Meade +mail: LatulipM@c4952a4f27294740adcb993c369618a3.bitwarden.com +carLicense: K3HW96 +departmentNumber: 4424 +employeeType: Contract +homePhone: +1 818 569-5529 +initials: M. L. +mobile: +1 818 567-7250 +pager: +1 818 871-7003 +roomNumber: 8741 +manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karan Piper,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karan Piper +sn: Piper +description: This is Karan Piper's description +facsimileTelephoneNumber: +1 213 542-9112 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 525-7450 +title: Chief Peons Architect +userPassword: Password1 +uid: PiperK +givenName: Karan +mail: PiperK@44bcfd07218c489eba7387452f761d66.bitwarden.com +carLicense: 6BTFNT +departmentNumber: 5824 +employeeType: Normal +homePhone: +1 213 222-2301 +initials: K. P. +mobile: +1 213 855-1757 +pager: +1 213 362-2360 +roomNumber: 8457 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Chander Paulus,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chander Paulus +sn: Paulus +description: This is Chander Paulus's description +facsimileTelephoneNumber: +1 206 951-6696 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 206 849-1383 +title: Junior Product Testing Czar +userPassword: Password1 +uid: PaulusC +givenName: Chander +mail: PaulusC@b00dae30a7d643d19965ff3ced64a2ec.bitwarden.com +carLicense: RJIAFV +departmentNumber: 3424 +employeeType: Employee +homePhone: +1 206 187-2648 +initials: C. P. +mobile: +1 206 288-3673 +pager: +1 206 337-7702 +roomNumber: 9783 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Parham Cisco,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Parham Cisco +sn: Cisco +description: This is Parham Cisco's description +facsimileTelephoneNumber: +1 206 845-9975 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 206 529-3257 +title: Chief Product Testing Technician +userPassword: Password1 +uid: CiscoP +givenName: Parham +mail: CiscoP@16a262560039498cb0b40791fe72917a.bitwarden.com +carLicense: SO41PP +departmentNumber: 7446 +employeeType: Employee +homePhone: +1 206 173-9699 +initials: P. C. +mobile: +1 206 273-6717 +pager: +1 206 807-4641 +roomNumber: 8228 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vmbackup Hagan +sn: Hagan +description: This is Vmbackup Hagan's description +facsimileTelephoneNumber: +1 408 753-4244 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 408 776-8568 +title: Chief Product Testing Janitor +userPassword: Password1 +uid: HaganV +givenName: Vmbackup +mail: HaganV@4a8d22894cf24b2dbddb3ccac895cba0.bitwarden.com +carLicense: IWTL8C +departmentNumber: 6879 +employeeType: Employee +homePhone: +1 408 380-7354 +initials: V. H. +mobile: +1 408 589-9082 +pager: +1 408 496-5477 +roomNumber: 8080 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Charmain Chahal,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charmain Chahal +sn: Chahal +description: This is Charmain Chahal's description +facsimileTelephoneNumber: +1 213 142-1539 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 580-8869 +title: Associate Payroll Czar +userPassword: Password1 +uid: ChahalC +givenName: Charmain +mail: ChahalC@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com +carLicense: OE128Q +departmentNumber: 2809 +employeeType: Contract +homePhone: +1 213 486-6024 +initials: C. C. +mobile: +1 213 173-5559 +pager: +1 213 220-4224 +roomNumber: 9408 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ainslee Pinizzotto +sn: Pinizzotto +description: This is Ainslee Pinizzotto's description +facsimileTelephoneNumber: +1 206 810-9420 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 177-6021 +title: Supreme Management Fellow +userPassword: Password1 +uid: PinizzoA +givenName: Ainslee +mail: PinizzoA@51229efcbb5c42119b299e0a2768aeae.bitwarden.com +carLicense: AH4Q6K +departmentNumber: 5376 +employeeType: Normal +homePhone: +1 206 821-7057 +initials: A. P. +mobile: +1 206 250-2236 +pager: +1 206 681-6706 +roomNumber: 9089 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ainsley Sobkow +sn: Sobkow +description: This is Ainsley Sobkow's description +facsimileTelephoneNumber: +1 510 251-6711 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 793-3464 +title: Supreme Administrative Developer +userPassword: Password1 +uid: SobkowA +givenName: Ainsley +mail: SobkowA@7979cefae37f498d8fb0f14251a8537d.bitwarden.com +carLicense: FIOGC0 +departmentNumber: 4226 +employeeType: Normal +homePhone: +1 510 642-8262 +initials: A. S. +mobile: +1 510 514-7947 +pager: +1 510 351-1349 +roomNumber: 9987 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Janelle Tucker,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janelle Tucker +sn: Tucker +description: This is Janelle Tucker's description +facsimileTelephoneNumber: +1 213 781-7450 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 205-8997 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: TuckerJ +givenName: Janelle +mail: TuckerJ@d49ef3511c504afba6eb7b305ddc6daf.bitwarden.com +carLicense: 26RK17 +departmentNumber: 4045 +employeeType: Normal +homePhone: +1 213 231-7297 +initials: J. T. +mobile: +1 213 102-6377 +pager: +1 213 507-3104 +roomNumber: 8549 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Angie Tesch,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angie Tesch +sn: Tesch +description: This is Angie Tesch's description +facsimileTelephoneNumber: +1 206 191-9583 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 838-7487 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: TeschA +givenName: Angie +mail: TeschA@48da65776d804c88bd44538c39d70bac.bitwarden.com +carLicense: PBAV9A +departmentNumber: 3902 +employeeType: Contract +homePhone: +1 206 747-8975 +initials: A. T. +mobile: +1 206 836-1237 +pager: +1 206 431-8311 +roomNumber: 8362 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Traci Wolter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Traci Wolter +sn: Wolter +description: This is Traci Wolter's description +facsimileTelephoneNumber: +1 206 431-1284 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 206 888-3067 +title: Supreme Human Resources Evangelist +userPassword: Password1 +uid: WolterT +givenName: Traci +mail: WolterT@f0da7bbf51f0472cbdc26a3d196ad9f7.bitwarden.com +carLicense: P2ML9C +departmentNumber: 8289 +employeeType: Employee +homePhone: +1 206 532-3260 +initials: T. W. +mobile: +1 206 985-1394 +pager: +1 206 881-9032 +roomNumber: 8349 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Azmina Bergeson,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Azmina Bergeson +sn: Bergeson +description: This is Azmina Bergeson's description +facsimileTelephoneNumber: +1 818 969-8459 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 955-7531 +title: Associate Peons Warrior +userPassword: Password1 +uid: BergesoA +givenName: Azmina +mail: BergesoA@01414db3388a4e4b949f31547b79484c.bitwarden.com +carLicense: 3CCT7A +departmentNumber: 5134 +employeeType: Normal +homePhone: +1 818 861-6490 +initials: A. B. +mobile: +1 818 387-6916 +pager: +1 818 225-1964 +roomNumber: 9417 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dolly Dane,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dolly Dane +sn: Dane +description: This is Dolly Dane's description +facsimileTelephoneNumber: +1 408 839-6626 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 408 419-9723 +title: Junior Peons Architect +userPassword: Password1 +uid: DaneD +givenName: Dolly +mail: DaneD@bc4cae64b5dd4867a72d318eb0fa8dc9.bitwarden.com +carLicense: QDI9VA +departmentNumber: 4238 +employeeType: Employee +homePhone: +1 408 872-8667 +initials: D. D. +mobile: +1 408 192-8658 +pager: +1 408 871-5069 +roomNumber: 9857 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Narendra Matsuzawa,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Narendra Matsuzawa +sn: Matsuzawa +description: This is Narendra Matsuzawa's description +facsimileTelephoneNumber: +1 804 106-3274 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 320-3550 +title: Junior Management Engineer +userPassword: Password1 +uid: MatsuzaN +givenName: Narendra +mail: MatsuzaN@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com +carLicense: WFJY8H +departmentNumber: 8066 +employeeType: Normal +homePhone: +1 804 370-1352 +initials: N. M. +mobile: +1 804 740-6408 +pager: +1 804 658-7984 +roomNumber: 8378 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zaneta Kibler +sn: Kibler +description: This is Zaneta Kibler's description +facsimileTelephoneNumber: +1 408 807-8072 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 662-8090 +title: Master Product Testing Pinhead +userPassword: Password1 +uid: KiblerZ +givenName: Zaneta +mail: KiblerZ@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com +carLicense: C0JW20 +departmentNumber: 8379 +employeeType: Employee +homePhone: +1 408 170-7597 +initials: Z. K. +mobile: +1 408 608-4593 +pager: +1 408 419-6574 +roomNumber: 9948 +manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Souza Austin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Souza Austin +sn: Austin +description: This is Souza Austin's description +facsimileTelephoneNumber: +1 408 472-3785 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 462-4279 +title: Master Administrative Czar +userPassword: Password1 +uid: AustinS +givenName: Souza +mail: AustinS@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com +carLicense: K355R0 +departmentNumber: 9286 +employeeType: Contract +homePhone: +1 408 445-4263 +initials: S. A. +mobile: +1 408 345-8064 +pager: +1 408 809-3039 +roomNumber: 9413 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harry Ferruzzi +sn: Ferruzzi +description: This is Harry Ferruzzi's description +facsimileTelephoneNumber: +1 804 948-7545 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 804 503-6313 +title: Chief Human Resources Punk +userPassword: Password1 +uid: FerruzzH +givenName: Harry +mail: FerruzzH@b36741628ac5411aa6219ea976eb30f2.bitwarden.com +carLicense: M75KSS +departmentNumber: 4391 +employeeType: Employee +homePhone: +1 804 476-8584 +initials: H. F. +mobile: +1 804 135-4018 +pager: +1 804 505-5860 +roomNumber: 8850 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lauretta Withrow +sn: Withrow +description: This is Lauretta Withrow's description +facsimileTelephoneNumber: +1 408 983-4056 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 151-2771 +title: Master Human Resources Evangelist +userPassword: Password1 +uid: WithrowL +givenName: Lauretta +mail: WithrowL@30c200fc237249269682c9ad7e2548d3.bitwarden.com +carLicense: 34CC6S +departmentNumber: 6820 +employeeType: Contract +homePhone: +1 408 543-1661 +initials: L. W. +mobile: +1 408 221-5138 +pager: +1 408 419-9095 +roomNumber: 8675 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Chrissy Marren,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chrissy Marren +sn: Marren +description: This is Chrissy Marren's description +facsimileTelephoneNumber: +1 206 974-7253 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 206 260-5613 +title: Master Payroll President +userPassword: Password1 +uid: MarrenC +givenName: Chrissy +mail: MarrenC@8b67b2d7bd1144ea807341eb074f69ea.bitwarden.com +carLicense: HHGPAD +departmentNumber: 4588 +employeeType: Normal +homePhone: +1 206 297-7549 +initials: C. M. +mobile: +1 206 879-1150 +pager: +1 206 339-9840 +roomNumber: 8104 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bhagvat VanSchouwen +sn: VanSchouwen +description: This is Bhagvat VanSchouwen's description +facsimileTelephoneNumber: +1 408 112-2311 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 515-1918 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: VanSchoB +givenName: Bhagvat +mail: VanSchoB@82a602f457ae4136b678ebd6177ccf89.bitwarden.com +carLicense: 7CF8FW +departmentNumber: 5406 +employeeType: Employee +homePhone: +1 408 909-1015 +initials: B. V. +mobile: +1 408 725-1456 +pager: +1 408 782-5627 +roomNumber: 8902 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tandie Virgoe,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tandie Virgoe +sn: Virgoe +description: This is Tandie Virgoe's description +facsimileTelephoneNumber: +1 408 770-5529 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 249-6764 +title: Junior Peons Developer +userPassword: Password1 +uid: VirgoeT +givenName: Tandie +mail: VirgoeT@6befdabbbc374615aeeed6f7a15c3c4b.bitwarden.com +carLicense: GTQFOQ +departmentNumber: 1740 +employeeType: Contract +homePhone: +1 408 595-9755 +initials: T. V. +mobile: +1 408 584-7371 +pager: +1 408 302-1598 +roomNumber: 8773 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Calley Naujoks,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calley Naujoks +sn: Naujoks +description: This is Calley Naujoks's description +facsimileTelephoneNumber: +1 510 484-4906 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 510 141-7103 +title: Junior Management Visionary +userPassword: Password1 +uid: NaujoksC +givenName: Calley +mail: NaujoksC@68503c7f9b494f9789d4c554a08c5cad.bitwarden.com +carLicense: ELTRWY +departmentNumber: 9692 +employeeType: Employee +homePhone: +1 510 348-1235 +initials: C. N. +mobile: +1 510 374-5980 +pager: +1 510 933-5073 +roomNumber: 9394 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Regan Neilsen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Regan Neilsen +sn: Neilsen +description: This is Regan Neilsen's description +facsimileTelephoneNumber: +1 206 401-9393 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 622-8692 +title: Master Administrative Engineer +userPassword: Password1 +uid: NeilsenR +givenName: Regan +mail: NeilsenR@995d86ac0711408aa561a9fbb566ede2.bitwarden.com +carLicense: JXASAR +departmentNumber: 5839 +employeeType: Normal +homePhone: +1 206 568-6363 +initials: R. N. +mobile: +1 206 978-2276 +pager: +1 206 776-1956 +roomNumber: 9983 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Katja Waterman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Katja Waterman +sn: Waterman +description: This is Katja Waterman's description +facsimileTelephoneNumber: +1 415 119-7519 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 893-5571 +title: Chief Product Development Developer +userPassword: Password1 +uid: WatermaK +givenName: Katja +mail: WatermaK@c145b5c52b41469195e7c7d838041281.bitwarden.com +carLicense: YR7QE7 +departmentNumber: 5235 +employeeType: Normal +homePhone: +1 415 862-7107 +initials: K. W. +mobile: +1 415 403-9038 +pager: +1 415 499-6350 +roomNumber: 8119 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sol Royals,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sol Royals +sn: Royals +description: This is Sol Royals's description +facsimileTelephoneNumber: +1 804 959-3201 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 804 523-9180 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: RoyalsS +givenName: Sol +mail: RoyalsS@612e8eb188de48388f43236fca542654.bitwarden.com +carLicense: AK9ALQ +departmentNumber: 6046 +employeeType: Normal +homePhone: +1 804 567-1708 +initials: S. R. +mobile: +1 804 951-8251 +pager: +1 804 239-3760 +roomNumber: 9381 +manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=KahMing Dubreck,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: KahMing Dubreck +sn: Dubreck +description: This is KahMing Dubreck's description +facsimileTelephoneNumber: +1 213 771-7125 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 213 209-2373 +title: Junior Administrative Mascot +userPassword: Password1 +uid: DubreckK +givenName: KahMing +mail: DubreckK@b2c537a3f6174546b2a7b1777d2dea4e.bitwarden.com +carLicense: BT4BTY +departmentNumber: 7909 +employeeType: Employee +homePhone: +1 213 843-1234 +initials: K. D. +mobile: +1 213 120-1834 +pager: +1 213 670-8061 +roomNumber: 9807 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Melitta Hunter,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melitta Hunter +sn: Hunter +description: This is Melitta Hunter's description +facsimileTelephoneNumber: +1 804 984-8252 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 114-2284 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: HunterM +givenName: Melitta +mail: HunterM@f26a95f0337144a7a3fdc9a2ef672cb1.bitwarden.com +carLicense: 6MA87T +departmentNumber: 3996 +employeeType: Normal +homePhone: +1 804 226-2081 +initials: M. H. +mobile: +1 804 319-9570 +pager: +1 804 938-9928 +roomNumber: 8947 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Trang Tucker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trang Tucker +sn: Tucker +description: This is Trang Tucker's description +facsimileTelephoneNumber: +1 415 412-5196 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 415 908-2225 +title: Chief Product Testing Janitor +userPassword: Password1 +uid: TuckerT +givenName: Trang +mail: TuckerT@08455693013d466f8b3622782a9a4935.bitwarden.com +carLicense: RF4D2U +departmentNumber: 9657 +employeeType: Normal +homePhone: +1 415 256-8482 +initials: T. T. +mobile: +1 415 581-2351 +pager: +1 415 228-1891 +roomNumber: 9032 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edmond DiFalco +sn: DiFalco +description: This is Edmond DiFalco's description +facsimileTelephoneNumber: +1 415 727-8526 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 373-7650 +title: Chief Janitorial Czar +userPassword: Password1 +uid: DiFalcoE +givenName: Edmond +mail: DiFalcoE@75f92a023d754e1aabb5bf6fcaf0b4f4.bitwarden.com +carLicense: 9JH7C3 +departmentNumber: 9939 +employeeType: Normal +homePhone: +1 415 595-4818 +initials: E. D. +mobile: +1 415 170-9635 +pager: +1 415 324-2489 +roomNumber: 9206 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicole Zinkie +sn: Zinkie +description: This is Nicole Zinkie's description +facsimileTelephoneNumber: +1 408 279-8272 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 408 486-9905 +title: Chief Janitorial Grunt +userPassword: Password1 +uid: ZinkieN +givenName: Nicole +mail: ZinkieN@17084ac6bac544e082e8e10baef9e88a.bitwarden.com +carLicense: CL7K2W +departmentNumber: 7760 +employeeType: Contract +homePhone: +1 408 734-6429 +initials: N. Z. +mobile: +1 408 559-3016 +pager: +1 408 546-1925 +roomNumber: 9539 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Garth Alfaro,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Garth Alfaro +sn: Alfaro +description: This is Garth Alfaro's description +facsimileTelephoneNumber: +1 213 487-3581 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 270-9588 +title: Master Management Dictator +userPassword: Password1 +uid: AlfaroG +givenName: Garth +mail: AlfaroG@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com +carLicense: FWQ6NF +departmentNumber: 5368 +employeeType: Normal +homePhone: +1 213 349-4513 +initials: G. A. +mobile: +1 213 760-7567 +pager: +1 213 248-9001 +roomNumber: 8813 +manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Rickie Genge,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rickie Genge +sn: Genge +description: This is Rickie Genge's description +facsimileTelephoneNumber: +1 818 630-2640 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 666-9529 +title: Chief Human Resources Mascot +userPassword: Password1 +uid: GengeR +givenName: Rickie +mail: GengeR@406a5f63a2784737a47e7de7eb972559.bitwarden.com +carLicense: SLLAEB +departmentNumber: 9844 +employeeType: Normal +homePhone: +1 818 637-7350 +initials: R. G. +mobile: +1 818 133-9514 +pager: +1 818 194-1122 +roomNumber: 8838 +manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mariette Piggott,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariette Piggott +sn: Piggott +description: This is Mariette Piggott's description +facsimileTelephoneNumber: +1 818 176-8475 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 937-1816 +title: Supreme Administrative Vice President +userPassword: Password1 +uid: PiggottM +givenName: Mariette +mail: PiggottM@2e9e3fdb5ac94378ae0798f03ed2af05.bitwarden.com +carLicense: JNDW4B +departmentNumber: 3245 +employeeType: Contract +homePhone: +1 818 711-1058 +initials: M. P. +mobile: +1 818 185-9226 +pager: +1 818 503-2297 +roomNumber: 8536 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Darla Schierbaum,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darla Schierbaum +sn: Schierbaum +description: This is Darla Schierbaum's description +facsimileTelephoneNumber: +1 213 297-8544 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 213 591-6554 +title: Chief Payroll Admin +userPassword: Password1 +uid: SchierbD +givenName: Darla +mail: SchierbD@7b9b134496944c719de5669c91d7d638.bitwarden.com +carLicense: 39U4UG +departmentNumber: 6579 +employeeType: Employee +homePhone: +1 213 479-1435 +initials: D. S. +mobile: +1 213 931-6802 +pager: +1 213 635-1673 +roomNumber: 9415 +manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delisle Wesolowski +sn: Wesolowski +description: This is Delisle Wesolowski's description +facsimileTelephoneNumber: +1 408 696-5596 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 985-2132 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: WesolowD +givenName: Delisle +mail: WesolowD@da38cf4466c54f10aa416fd5fe880608.bitwarden.com +carLicense: HPA1CG +departmentNumber: 4981 +employeeType: Normal +homePhone: +1 408 715-4324 +initials: D. W. +mobile: +1 408 732-6250 +pager: +1 408 498-4519 +roomNumber: 9231 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Technical Ely,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Technical Ely +sn: Ely +description: This is Technical Ely's description +facsimileTelephoneNumber: +1 818 450-5006 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 571-3460 +title: Chief Product Development Madonna +userPassword: Password1 +uid: ElyT +givenName: Technical +mail: ElyT@766a422a35f14846b4f938fc382952b4.bitwarden.com +carLicense: 6KYHRC +departmentNumber: 3605 +employeeType: Normal +homePhone: +1 818 719-8591 +initials: T. E. +mobile: +1 818 105-1049 +pager: +1 818 213-6846 +roomNumber: 9947 +manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Merrill Loa,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Merrill Loa +sn: Loa +description: This is Merrill Loa's description +facsimileTelephoneNumber: +1 804 288-9028 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 804 102-5447 +title: Supreme Product Testing Consultant +userPassword: Password1 +uid: LoaM +givenName: Merrill +mail: LoaM@c0d54806b2fc4ad4b2d446db11ce599e.bitwarden.com +carLicense: VI3OYW +departmentNumber: 3962 +employeeType: Employee +homePhone: +1 804 392-8518 +initials: M. L. +mobile: +1 804 430-7633 +pager: +1 804 850-4220 +roomNumber: 9695 +manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jojo Liew,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jojo Liew +sn: Liew +description: This is Jojo Liew's description +facsimileTelephoneNumber: +1 818 716-9810 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 441-9804 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: LiewJ +givenName: Jojo +mail: LiewJ@0fae6975893e4404981e1b0278fd9893.bitwarden.com +carLicense: LS0F9F +departmentNumber: 7230 +employeeType: Contract +homePhone: +1 818 839-9107 +initials: J. L. +mobile: +1 818 290-5040 +pager: +1 818 111-3507 +roomNumber: 9835 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Noemi Gulko,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noemi Gulko +sn: Gulko +description: This is Noemi Gulko's description +facsimileTelephoneNumber: +1 415 254-5068 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 415 610-1612 +title: Supreme Janitorial Writer +userPassword: Password1 +uid: GulkoN +givenName: Noemi +mail: GulkoN@8e3480814c5a4c65afb875411a3ea9b2.bitwarden.com +carLicense: B6NHBQ +departmentNumber: 8454 +employeeType: Employee +homePhone: +1 415 965-9253 +initials: N. G. +mobile: +1 415 725-8140 +pager: +1 415 631-3285 +roomNumber: 8357 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aurel Mullins,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aurel Mullins +sn: Mullins +description: This is Aurel Mullins's description +facsimileTelephoneNumber: +1 408 733-1611 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 339-8397 +title: Chief Administrative Pinhead +userPassword: Password1 +uid: MullinsA +givenName: Aurel +mail: MullinsA@0971bdcc719c47c9919ba37996d1ed23.bitwarden.com +carLicense: K66P4Q +departmentNumber: 6303 +employeeType: Contract +homePhone: +1 408 223-6753 +initials: A. M. +mobile: +1 408 464-8456 +pager: +1 408 643-2445 +roomNumber: 8679 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Raine Hauck,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raine Hauck +sn: Hauck +description: This is Raine Hauck's description +facsimileTelephoneNumber: +1 818 600-6942 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 478-8450 +title: Chief Product Testing Vice President +userPassword: Password1 +uid: HauckR +givenName: Raine +mail: HauckR@9aa6fa345e3b4b228034222cc7155638.bitwarden.com +carLicense: FIKVXJ +departmentNumber: 3387 +employeeType: Employee +homePhone: +1 818 664-4793 +initials: R. H. +mobile: +1 818 353-1141 +pager: +1 818 975-9818 +roomNumber: 8371 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Munaz Mand,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Munaz Mand +sn: Mand +description: This is Munaz Mand's description +facsimileTelephoneNumber: +1 408 113-2138 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 871-9366 +title: Chief Product Development Madonna +userPassword: Password1 +uid: MandM +givenName: Munaz +mail: MandM@ef559f52881646a99efdc2bb68264cd2.bitwarden.com +carLicense: K9PYAX +departmentNumber: 5639 +employeeType: Employee +homePhone: +1 408 353-5344 +initials: M. M. +mobile: +1 408 540-2770 +pager: +1 408 121-4060 +roomNumber: 8107 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zoe Leinen,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zoe Leinen +sn: Leinen +description: This is Zoe Leinen's description +facsimileTelephoneNumber: +1 213 521-7916 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 730-2643 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: LeinenZ +givenName: Zoe +mail: LeinenZ@6c30ff46c5cd461da39b83f9603a1955.bitwarden.com +carLicense: 3EDKPH +departmentNumber: 5429 +employeeType: Employee +homePhone: +1 213 962-9233 +initials: Z. L. +mobile: +1 213 914-8789 +pager: +1 213 346-5808 +roomNumber: 9171 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bihari Simkin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bihari Simkin +sn: Simkin +description: This is Bihari Simkin's description +facsimileTelephoneNumber: +1 804 250-9269 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 920-2348 +title: Master Management Architect +userPassword: Password1 +uid: SimkinB +givenName: Bihari +mail: SimkinB@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com +carLicense: UGO1W1 +departmentNumber: 1562 +employeeType: Employee +homePhone: +1 804 393-6298 +initials: B. S. +mobile: +1 804 852-1074 +pager: +1 804 636-9888 +roomNumber: 8434 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wannell Rivard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wannell Rivard +sn: Rivard +description: This is Wannell Rivard's description +facsimileTelephoneNumber: +1 408 815-6720 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 408 821-8013 +title: Associate Administrative Sales Rep +userPassword: Password1 +uid: RivardW +givenName: Wannell +mail: RivardW@d69b98c45b46402fa345a4972b0e5bd0.bitwarden.com +carLicense: 1TFK0I +departmentNumber: 5839 +employeeType: Contract +homePhone: +1 408 459-5604 +initials: W. R. +mobile: +1 408 447-1367 +pager: +1 408 629-7077 +roomNumber: 9693 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adey Daquano,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adey Daquano +sn: Daquano +description: This is Adey Daquano's description +facsimileTelephoneNumber: +1 804 444-4931 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 804 703-3420 +title: Master Payroll President +userPassword: Password1 +uid: DaquanoA +givenName: Adey +mail: DaquanoA@7b2fb8bfc0d04f79b6758cb3412b518b.bitwarden.com +carLicense: QM7PSE +departmentNumber: 3439 +employeeType: Normal +homePhone: +1 804 647-3642 +initials: A. D. +mobile: +1 804 456-7970 +pager: +1 804 266-3376 +roomNumber: 8636 +manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emeline Drewes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emeline Drewes +sn: Drewes +description: This is Emeline Drewes's description +facsimileTelephoneNumber: +1 415 261-5730 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 399-6267 +title: Associate Peons Grunt +userPassword: Password1 +uid: DrewesE +givenName: Emeline +mail: DrewesE@dc5cce98288c46dd8403e25e36918671.bitwarden.com +carLicense: 8CC8WU +departmentNumber: 9277 +employeeType: Employee +homePhone: +1 415 996-6862 +initials: E. D. +mobile: +1 415 731-5676 +pager: +1 415 257-9212 +roomNumber: 8598 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tuoi Shtulman +sn: Shtulman +description: This is Tuoi Shtulman's description +facsimileTelephoneNumber: +1 206 494-6193 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 206 779-5516 +title: Associate Product Development Architect +userPassword: Password1 +uid: ShtulmaT +givenName: Tuoi +mail: ShtulmaT@c18f3219cf9044e5a9cd277268cdc426.bitwarden.com +carLicense: P1HVHS +departmentNumber: 3974 +employeeType: Contract +homePhone: +1 206 110-5724 +initials: T. S. +mobile: +1 206 663-1410 +pager: +1 206 755-3332 +roomNumber: 9442 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harrison Hoffstedder +sn: Hoffstedder +description: This is Harrison Hoffstedder's description +facsimileTelephoneNumber: +1 510 319-3961 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 510 937-4862 +title: Supreme Payroll Madonna +userPassword: Password1 +uid: HoffsteH +givenName: Harrison +mail: HoffsteH@be2317e07ddc4fd1bc1dad5673b21da8.bitwarden.com +carLicense: BGN1GW +departmentNumber: 4178 +employeeType: Normal +homePhone: +1 510 977-9418 +initials: H. H. +mobile: +1 510 775-9661 +pager: +1 510 718-8162 +roomNumber: 9966 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rayshell Dow,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rayshell Dow +sn: Dow +description: This is Rayshell Dow's description +facsimileTelephoneNumber: +1 804 938-7165 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 920-1604 +title: Associate Administrative Grunt +userPassword: Password1 +uid: DowR +givenName: Rayshell +mail: DowR@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com +carLicense: QD2OLH +departmentNumber: 5455 +employeeType: Normal +homePhone: +1 804 904-2403 +initials: R. D. +mobile: +1 804 483-2967 +pager: +1 804 414-8570 +roomNumber: 8452 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sohayla Claggett,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sohayla Claggett +sn: Claggett +description: This is Sohayla Claggett's description +facsimileTelephoneNumber: +1 818 590-4661 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 818 678-6796 +title: Junior Management Vice President +userPassword: Password1 +uid: ClaggetS +givenName: Sohayla +mail: ClaggetS@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com +carLicense: XGOYER +departmentNumber: 2609 +employeeType: Employee +homePhone: +1 818 826-4540 +initials: S. C. +mobile: +1 818 866-1179 +pager: +1 818 411-7958 +roomNumber: 8480 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacklyn Bickford +sn: Bickford +description: This is Jacklyn Bickford's description +facsimileTelephoneNumber: +1 213 726-4930 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 427-7103 +title: Chief Payroll Vice President +userPassword: Password1 +uid: BickforJ +givenName: Jacklyn +mail: BickforJ@494658ad0bff4810b3d5b5096c85b666.bitwarden.com +carLicense: 0QMK73 +departmentNumber: 4493 +employeeType: Normal +homePhone: +1 213 911-1967 +initials: J. B. +mobile: +1 213 757-5273 +pager: +1 213 228-7664 +roomNumber: 9133 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daniele Kuykendall +sn: Kuykendall +description: This is Daniele Kuykendall's description +facsimileTelephoneNumber: +1 408 556-5406 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 790-1571 +title: Master Administrative Director +userPassword: Password1 +uid: KuykendD +givenName: Daniele +mail: KuykendD@4c3bb131ea5148028bf43ce4a8c06b23.bitwarden.com +carLicense: GHSQ62 +departmentNumber: 5081 +employeeType: Contract +homePhone: +1 408 264-8108 +initials: D. K. +mobile: +1 408 661-8226 +pager: +1 408 117-4525 +roomNumber: 8062 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Debora Lauzon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debora Lauzon +sn: Lauzon +description: This is Debora Lauzon's description +facsimileTelephoneNumber: +1 818 982-3969 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 203-5036 +title: Master Human Resources Punk +userPassword: Password1 +uid: LauzonD +givenName: Debora +mail: LauzonD@ecf37ebd8f10485fa151b2f40942afe7.bitwarden.com +carLicense: 9GCF8M +departmentNumber: 5370 +employeeType: Normal +homePhone: +1 818 909-8761 +initials: D. L. +mobile: +1 818 468-5642 +pager: +1 818 453-3569 +roomNumber: 9612 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Giang Saidzadeh +sn: Saidzadeh +description: This is Giang Saidzadeh's description +facsimileTelephoneNumber: +1 213 266-8868 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 213 928-5640 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: SaidzadG +givenName: Giang +mail: SaidzadG@8fd45f1616e84409af12cbcbd209c8d9.bitwarden.com +carLicense: J5OEJV +departmentNumber: 3791 +employeeType: Contract +homePhone: +1 213 319-2528 +initials: G. S. +mobile: +1 213 105-8593 +pager: +1 213 375-7429 +roomNumber: 9841 +manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Aggi Culver,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aggi Culver +sn: Culver +description: This is Aggi Culver's description +facsimileTelephoneNumber: +1 510 869-5390 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 679-6541 +title: Supreme Janitorial Technician +userPassword: Password1 +uid: CulverA +givenName: Aggi +mail: CulverA@aad296bdf0c3455e889336146dbd77fd.bitwarden.com +carLicense: V7JWQP +departmentNumber: 1057 +employeeType: Employee +homePhone: +1 510 410-5850 +initials: A. C. +mobile: +1 510 634-8270 +pager: +1 510 317-7735 +roomNumber: 9887 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Delcine Pesold,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Delcine Pesold +sn: Pesold +description: This is Delcine Pesold's description +facsimileTelephoneNumber: +1 213 196-6397 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 213 719-7268 +title: Associate Management Mascot +userPassword: Password1 +uid: PesoldD +givenName: Delcine +mail: PesoldD@752c449dfd0b47e48d05c032fa7b3f44.bitwarden.com +carLicense: O8EYDW +departmentNumber: 5983 +employeeType: Normal +homePhone: +1 213 933-8674 +initials: D. P. +mobile: +1 213 511-1036 +pager: +1 213 411-1091 +roomNumber: 9505 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pauline Bullion,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pauline Bullion +sn: Bullion +description: This is Pauline Bullion's description +facsimileTelephoneNumber: +1 804 249-2010 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 804 720-6111 +title: Supreme Management Madonna +userPassword: Password1 +uid: BullionP +givenName: Pauline +mail: BullionP@29d43cca18a84193868799ddbf3f9a87.bitwarden.com +carLicense: 9O98TC +departmentNumber: 3613 +employeeType: Normal +homePhone: +1 804 551-1194 +initials: P. B. +mobile: +1 804 728-1530 +pager: +1 804 506-4727 +roomNumber: 8714 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tibor Belley,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tibor Belley +sn: Belley +description: This is Tibor Belley's description +facsimileTelephoneNumber: +1 415 721-9099 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 391-5667 +title: Junior Product Development Developer +userPassword: Password1 +uid: BelleyT +givenName: Tibor +mail: BelleyT@01d69d83f76e4ee599aaa94ccfd4bc18.bitwarden.com +carLicense: VG9DLP +departmentNumber: 8854 +employeeType: Contract +homePhone: +1 415 302-6248 +initials: T. B. +mobile: +1 415 209-9514 +pager: +1 415 378-4594 +roomNumber: 8688 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vere Cushing,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vere Cushing +sn: Cushing +description: This is Vere Cushing's description +facsimileTelephoneNumber: +1 408 579-5647 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 508-7399 +title: Supreme Management Janitor +userPassword: Password1 +uid: CushingV +givenName: Vere +mail: CushingV@b7566f62e9e44dcd9dcaead50b2af46e.bitwarden.com +carLicense: R2UCR8 +departmentNumber: 8354 +employeeType: Contract +homePhone: +1 408 905-1463 +initials: V. C. +mobile: +1 408 119-4286 +pager: +1 408 606-4024 +roomNumber: 9249 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dorris Joshi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorris Joshi +sn: Joshi +description: This is Dorris Joshi's description +facsimileTelephoneNumber: +1 510 124-6275 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 510 223-6418 +title: Chief Administrative Punk +userPassword: Password1 +uid: JoshiD +givenName: Dorris +mail: JoshiD@a989bc4f0b1a4c80b486110777685af8.bitwarden.com +carLicense: 15VFGV +departmentNumber: 5013 +employeeType: Employee +homePhone: +1 510 514-8935 +initials: D. J. +mobile: +1 510 703-4359 +pager: +1 510 889-6945 +roomNumber: 9073 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com + +dn: cn=Victor Hollenbach,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Victor Hollenbach +sn: Hollenbach +description: This is Victor Hollenbach's description +facsimileTelephoneNumber: +1 415 703-5146 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 188-8780 +title: Master Payroll Madonna +userPassword: Password1 +uid: HollenbV +givenName: Victor +mail: HollenbV@78d24e557fdb498286a91f7c5eae2c30.bitwarden.com +carLicense: S3KWT8 +departmentNumber: 2583 +employeeType: Employee +homePhone: +1 415 299-8690 +initials: V. H. +mobile: +1 415 982-7256 +pager: +1 415 873-6950 +roomNumber: 9024 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joyan Irvin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joyan Irvin +sn: Irvin +description: This is Joyan Irvin's description +facsimileTelephoneNumber: +1 206 255-4366 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 206 355-1899 +title: Master Administrative Assistant +userPassword: Password1 +uid: IrvinJ +givenName: Joyan +mail: IrvinJ@17ea3745d5a8427d897fcb5d0d2d0c15.bitwarden.com +carLicense: 87CM35 +departmentNumber: 1068 +employeeType: Employee +homePhone: +1 206 676-4795 +initials: J. I. +mobile: +1 206 318-3857 +pager: +1 206 921-1397 +roomNumber: 8580 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Zoenka Ivan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zoenka Ivan +sn: Ivan +description: This is Zoenka Ivan's description +facsimileTelephoneNumber: +1 510 667-3048 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 958-6383 +title: Junior Peons Janitor +userPassword: Password1 +uid: IvanZ +givenName: Zoenka +mail: IvanZ@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com +carLicense: SAXOQH +departmentNumber: 2070 +employeeType: Employee +homePhone: +1 510 116-4251 +initials: Z. I. +mobile: +1 510 889-4084 +pager: +1 510 360-7716 +roomNumber: 8793 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Wylo Rummans,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wylo Rummans +sn: Rummans +description: This is Wylo Rummans's description +facsimileTelephoneNumber: +1 408 165-2384 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 670-6643 +title: Associate Product Development Vice President +userPassword: Password1 +uid: RummansW +givenName: Wylo +mail: RummansW@e51ab927442b42fd83641345150b54a3.bitwarden.com +carLicense: AR5I45 +departmentNumber: 3742 +employeeType: Employee +homePhone: +1 408 705-8585 +initials: W. R. +mobile: +1 408 723-5115 +pager: +1 408 574-4661 +roomNumber: 9602 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tyler McKibbin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tyler McKibbin +sn: McKibbin +description: This is Tyler McKibbin's description +facsimileTelephoneNumber: +1 510 189-5469 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 510 208-1310 +title: Master Product Development Figurehead +userPassword: Password1 +uid: McKibbiT +givenName: Tyler +mail: McKibbiT@2ff2f928aa234ef4a8cf382c36a615f8.bitwarden.com +carLicense: B5N3XD +departmentNumber: 3919 +employeeType: Employee +homePhone: +1 510 961-4974 +initials: T. M. +mobile: +1 510 909-7835 +pager: +1 510 367-9412 +roomNumber: 8133 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dorolice Puelma,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorolice Puelma +sn: Puelma +description: This is Dorolice Puelma's description +facsimileTelephoneNumber: +1 510 455-6695 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 931-5955 +title: Master Payroll Sales Rep +userPassword: Password1 +uid: PuelmaD +givenName: Dorolice +mail: PuelmaD@a5a8edfdd5c4429e9cf280f8b1f9e995.bitwarden.com +carLicense: LOD24C +departmentNumber: 8515 +employeeType: Employee +homePhone: +1 510 521-9840 +initials: D. P. +mobile: +1 510 902-9592 +pager: +1 510 535-1210 +roomNumber: 8105 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anwar Mauck,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anwar Mauck +sn: Mauck +description: This is Anwar Mauck's description +facsimileTelephoneNumber: +1 206 718-5726 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 206 942-8563 +title: Chief Management Evangelist +userPassword: Password1 +uid: MauckA +givenName: Anwar +mail: MauckA@3abcba99c85c41ab8cf93d708c5ee721.bitwarden.com +carLicense: 1UWBKI +departmentNumber: 8647 +employeeType: Normal +homePhone: +1 206 656-8731 +initials: A. M. +mobile: +1 206 153-7212 +pager: +1 206 605-2919 +roomNumber: 8347 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gillian Weihs,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gillian Weihs +sn: Weihs +description: This is Gillian Weihs's description +facsimileTelephoneNumber: +1 213 277-5522 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 739-2434 +title: Master Payroll Dictator +userPassword: Password1 +uid: WeihsG +givenName: Gillian +mail: WeihsG@48309888d14d433584a39c4104dff764.bitwarden.com +carLicense: BV9BVP +departmentNumber: 2072 +employeeType: Normal +homePhone: +1 213 548-8392 +initials: G. W. +mobile: +1 213 844-6137 +pager: +1 213 645-8847 +roomNumber: 9924 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Freddy Boase,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Freddy Boase +sn: Boase +description: This is Freddy Boase's description +facsimileTelephoneNumber: +1 510 657-2790 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 993-3643 +title: Chief Janitorial Developer +userPassword: Password1 +uid: BoaseF +givenName: Freddy +mail: BoaseF@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com +carLicense: VQRCJ6 +departmentNumber: 4875 +employeeType: Normal +homePhone: +1 510 788-5879 +initials: F. B. +mobile: +1 510 601-9004 +pager: +1 510 759-8369 +roomNumber: 9821 +manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Manny Degraauw,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manny Degraauw +sn: Degraauw +description: This is Manny Degraauw's description +facsimileTelephoneNumber: +1 510 702-5433 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 962-5306 +title: Junior Payroll Warrior +userPassword: Password1 +uid: DegraauM +givenName: Manny +mail: DegraauM@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com +carLicense: KH0QT5 +departmentNumber: 1600 +employeeType: Contract +homePhone: +1 510 838-8533 +initials: M. D. +mobile: +1 510 435-5966 +pager: +1 510 498-4666 +roomNumber: 8057 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zahir Meagher,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zahir Meagher +sn: Meagher +description: This is Zahir Meagher's description +facsimileTelephoneNumber: +1 804 835-6625 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 309-5878 +title: Associate Administrative Artist +userPassword: Password1 +uid: MeagherZ +givenName: Zahir +mail: MeagherZ@e83c7fe22d2948c19d5fbcdc0bcbd551.bitwarden.com +carLicense: B22RO5 +departmentNumber: 2125 +employeeType: Employee +homePhone: +1 804 942-8552 +initials: Z. M. +mobile: +1 804 888-5845 +pager: +1 804 644-6092 +roomNumber: 8001 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Chiho Kowalski,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chiho Kowalski +sn: Kowalski +description: This is Chiho Kowalski's description +facsimileTelephoneNumber: +1 206 593-5449 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 107-4156 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: KowalskC +givenName: Chiho +mail: KowalskC@037b2dcc29f840fa8751d096972382fe.bitwarden.com +carLicense: 67H3MG +departmentNumber: 3595 +employeeType: Employee +homePhone: +1 206 983-9753 +initials: C. K. +mobile: +1 206 603-7414 +pager: +1 206 380-7049 +roomNumber: 9148 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jan Gittins,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jan Gittins +sn: Gittins +description: This is Jan Gittins's description +facsimileTelephoneNumber: +1 510 997-2447 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 393-1933 +title: Junior Human Resources Evangelist +userPassword: Password1 +uid: GittinsJ +givenName: Jan +mail: GittinsJ@ba3add3fa0e5474bb8115e77e9d392b7.bitwarden.com +carLicense: PJTBY2 +departmentNumber: 4463 +employeeType: Normal +homePhone: +1 510 263-7029 +initials: J. G. +mobile: +1 510 815-2765 +pager: +1 510 477-1480 +roomNumber: 8806 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nalani Madsen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nalani Madsen +sn: Madsen +description: This is Nalani Madsen's description +facsimileTelephoneNumber: +1 206 189-8032 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 206 228-4432 +title: Chief Management Manager +userPassword: Password1 +uid: MadsenN +givenName: Nalani +mail: MadsenN@95f57db35aaf437db0b68cb389e1a35e.bitwarden.com +carLicense: 4NNK7V +departmentNumber: 8375 +employeeType: Normal +homePhone: +1 206 859-7545 +initials: N. M. +mobile: +1 206 484-2241 +pager: +1 206 211-9672 +roomNumber: 9021 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Casie Banerd,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Casie Banerd +sn: Banerd +description: This is Casie Banerd's description +facsimileTelephoneNumber: +1 804 326-4701 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 272-5267 +title: Associate Human Resources Consultant +userPassword: Password1 +uid: BanerdC +givenName: Casie +mail: BanerdC@2f216938e95c4fb6a803f01467935076.bitwarden.com +carLicense: 0AB0GV +departmentNumber: 1176 +employeeType: Normal +homePhone: +1 804 899-3303 +initials: C. B. +mobile: +1 804 295-2041 +pager: +1 804 389-9156 +roomNumber: 8473 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Beryle Camillucci,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beryle Camillucci +sn: Camillucci +description: This is Beryle Camillucci's description +facsimileTelephoneNumber: +1 213 621-5647 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 557-8464 +title: Master Management Writer +userPassword: Password1 +uid: CamilluB +givenName: Beryle +mail: CamilluB@2c11f6a276034996a4ddc6513434ce9b.bitwarden.com +carLicense: BS6GWE +departmentNumber: 3976 +employeeType: Contract +homePhone: +1 213 924-7982 +initials: B. C. +mobile: +1 213 619-1306 +pager: +1 213 970-6825 +roomNumber: 8156 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lubomyr Duran,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lubomyr Duran +sn: Duran +description: This is Lubomyr Duran's description +facsimileTelephoneNumber: +1 206 342-5870 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 206 781-7455 +title: Supreme Product Development Czar +userPassword: Password1 +uid: DuranL +givenName: Lubomyr +mail: DuranL@411afe1416f249ecaeca51c1080b0066.bitwarden.com +carLicense: SEHHYQ +departmentNumber: 1454 +employeeType: Contract +homePhone: +1 206 535-7593 +initials: L. D. +mobile: +1 206 618-2785 +pager: +1 206 323-2272 +roomNumber: 9639 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Gertruda Boyajian,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertruda Boyajian +sn: Boyajian +description: This is Gertruda Boyajian's description +facsimileTelephoneNumber: +1 213 730-8545 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 172-2584 +title: Chief Peons Consultant +userPassword: Password1 +uid: BoyajiaG +givenName: Gertruda +mail: BoyajiaG@29c4d99a2e804a9e9c7906925415c847.bitwarden.com +carLicense: 4FGGN5 +departmentNumber: 2437 +employeeType: Normal +homePhone: +1 213 709-9606 +initials: G. B. +mobile: +1 213 482-9391 +pager: +1 213 560-8157 +roomNumber: 9254 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dyanna Roehl,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyanna Roehl +sn: Roehl +description: This is Dyanna Roehl's description +facsimileTelephoneNumber: +1 408 780-2546 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 408 364-7605 +title: Junior Payroll Czar +userPassword: Password1 +uid: RoehlD +givenName: Dyanna +mail: RoehlD@0aab2eb5b2a945ccbb114c330fb9e2b8.bitwarden.com +carLicense: TLRY1L +departmentNumber: 5176 +employeeType: Contract +homePhone: +1 408 305-7042 +initials: D. R. +mobile: +1 408 443-1144 +pager: +1 408 870-5853 +roomNumber: 9062 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kikelia Kember,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kikelia Kember +sn: Kember +description: This is Kikelia Kember's description +facsimileTelephoneNumber: +1 408 886-5346 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 847-1705 +title: Chief Payroll Assistant +userPassword: Password1 +uid: KemberK +givenName: Kikelia +mail: KemberK@7a95e2b863354946b5a2f7998b9af35e.bitwarden.com +carLicense: 4QNNRT +departmentNumber: 5231 +employeeType: Normal +homePhone: +1 408 951-3606 +initials: K. K. +mobile: +1 408 220-9935 +pager: +1 408 410-5774 +roomNumber: 9229 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Yalcin Tanferna,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yalcin Tanferna +sn: Tanferna +description: This is Yalcin Tanferna's description +facsimileTelephoneNumber: +1 804 508-3181 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 804 313-7419 +title: Chief Management Director +userPassword: Password1 +uid: TanfernY +givenName: Yalcin +mail: TanfernY@7e48be8bff9a4d928095a1943ae64cc5.bitwarden.com +carLicense: LSPGFR +departmentNumber: 1958 +employeeType: Normal +homePhone: +1 804 698-4881 +initials: Y. T. +mobile: +1 804 890-9358 +pager: +1 804 770-4786 +roomNumber: 8654 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Justina Copello,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Justina Copello +sn: Copello +description: This is Justina Copello's description +facsimileTelephoneNumber: +1 415 299-6981 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 884-1445 +title: Junior Janitorial Visionary +userPassword: Password1 +uid: CopelloJ +givenName: Justina +mail: CopelloJ@7e23b8de808e4c8687b7d328cf2c1f4d.bitwarden.com +carLicense: LS30C3 +departmentNumber: 9306 +employeeType: Normal +homePhone: +1 415 541-6313 +initials: J. C. +mobile: +1 415 264-9878 +pager: +1 415 937-9896 +roomNumber: 8513 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bam Luin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bam Luin +sn: Luin +description: This is Bam Luin's description +facsimileTelephoneNumber: +1 206 597-6162 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 206 591-4907 +title: Master Administrative Pinhead +userPassword: Password1 +uid: LuinB +givenName: Bam +mail: LuinB@3714b871eeed4ef2ad7f86d04b774a06.bitwarden.com +carLicense: H2NDSH +departmentNumber: 7667 +employeeType: Normal +homePhone: +1 206 908-1914 +initials: B. L. +mobile: +1 206 997-8040 +pager: +1 206 417-9249 +roomNumber: 8685 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marguerita Wisniewski +sn: Wisniewski +description: This is Marguerita Wisniewski's description +facsimileTelephoneNumber: +1 206 563-3542 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 206 465-2394 +title: Master Payroll Mascot +userPassword: Password1 +uid: WisniewM +givenName: Marguerita +mail: WisniewM@aeb0dceac3c04d0aac41074478a4ecb3.bitwarden.com +carLicense: B2E2BH +departmentNumber: 4592 +employeeType: Employee +homePhone: +1 206 431-6085 +initials: M. W. +mobile: +1 206 346-2609 +pager: +1 206 341-8597 +roomNumber: 9920 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Frieda Dulaney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frieda Dulaney +sn: Dulaney +description: This is Frieda Dulaney's description +facsimileTelephoneNumber: +1 206 661-3816 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 206 206-7935 +title: Junior Product Development Artist +userPassword: Password1 +uid: DulaneyF +givenName: Frieda +mail: DulaneyF@e87afd88a7464f34a9f1cefeecf49e3d.bitwarden.com +carLicense: QB3NJ2 +departmentNumber: 5498 +employeeType: Contract +homePhone: +1 206 235-6766 +initials: F. D. +mobile: +1 206 893-8369 +pager: +1 206 598-6669 +roomNumber: 8028 +manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Les Allahdin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Les Allahdin +sn: Allahdin +description: This is Les Allahdin's description +facsimileTelephoneNumber: +1 415 503-8345 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 415 323-8678 +title: Associate Administrative Technician +userPassword: Password1 +uid: AllahdiL +givenName: Les +mail: AllahdiL@d3f6a0448cf246c98f76952766172afe.bitwarden.com +carLicense: V36DUD +departmentNumber: 9590 +employeeType: Contract +homePhone: +1 415 792-6616 +initials: L. A. +mobile: +1 415 807-7916 +pager: +1 415 391-5754 +roomNumber: 9453 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Melek Fennessey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melek Fennessey +sn: Fennessey +description: This is Melek Fennessey's description +facsimileTelephoneNumber: +1 213 765-6235 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 213 899-6354 +title: Associate Management Czar +userPassword: Password1 +uid: FennessM +givenName: Melek +mail: FennessM@0a55e98e06b6402b83131ff9ddd68552.bitwarden.com +carLicense: 9N2DRD +departmentNumber: 2449 +employeeType: Employee +homePhone: +1 213 240-6658 +initials: M. F. +mobile: +1 213 827-5654 +pager: +1 213 517-8704 +roomNumber: 9900 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Quon Zukosky,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quon Zukosky +sn: Zukosky +description: This is Quon Zukosky's description +facsimileTelephoneNumber: +1 510 701-8668 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 722-7839 +title: Chief Management Figurehead +userPassword: Password1 +uid: ZukoskyQ +givenName: Quon +mail: ZukoskyQ@8eaa02b53fec48d0842607d198bfec39.bitwarden.com +carLicense: TISD7Y +departmentNumber: 7220 +employeeType: Contract +homePhone: +1 510 668-6998 +initials: Q. Z. +mobile: +1 510 958-6650 +pager: +1 510 823-8603 +roomNumber: 9193 +manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Andrea ONeall,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andrea ONeall +sn: ONeall +description: This is Andrea ONeall's description +facsimileTelephoneNumber: +1 206 637-4716 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 871-4923 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: ONeallA +givenName: Andrea +mail: ONeallA@995d47539bff49b8a85a5ecb474bd257.bitwarden.com +carLicense: QY7CHC +departmentNumber: 8711 +employeeType: Normal +homePhone: +1 206 510-6140 +initials: A. O. +mobile: +1 206 346-9888 +pager: +1 206 697-9642 +roomNumber: 8649 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Setsuko Keck,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Setsuko Keck +sn: Keck +description: This is Setsuko Keck's description +facsimileTelephoneNumber: +1 804 942-3617 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 486-9362 +title: Master Janitorial Admin +userPassword: Password1 +uid: KeckS +givenName: Setsuko +mail: KeckS@4a913335a7f143d2b385347b29ca43fd.bitwarden.com +carLicense: 8SK1PB +departmentNumber: 5519 +employeeType: Contract +homePhone: +1 804 577-3322 +initials: S. K. +mobile: +1 804 390-5015 +pager: +1 804 619-8671 +roomNumber: 8416 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ruchel Borosh,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruchel Borosh +sn: Borosh +description: This is Ruchel Borosh's description +facsimileTelephoneNumber: +1 408 845-5135 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 828-5510 +title: Junior Management Warrior +userPassword: Password1 +uid: BoroshR +givenName: Ruchel +mail: BoroshR@a4ebc705137a4ddb9ebce3e4b095eec3.bitwarden.com +carLicense: 33UA3M +departmentNumber: 1852 +employeeType: Employee +homePhone: +1 408 710-8238 +initials: R. B. +mobile: +1 408 918-1810 +pager: +1 408 812-5850 +roomNumber: 8389 +manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Chloette Zadow,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chloette Zadow +sn: Zadow +description: This is Chloette Zadow's description +facsimileTelephoneNumber: +1 206 832-8064 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 206 341-6717 +title: Junior Peons Visionary +userPassword: Password1 +uid: ZadowC +givenName: Chloette +mail: ZadowC@006106eb4fa5430982fa52048d307012.bitwarden.com +carLicense: NWG7E2 +departmentNumber: 9274 +employeeType: Normal +homePhone: +1 206 634-5368 +initials: C. Z. +mobile: +1 206 229-4362 +pager: +1 206 266-1289 +roomNumber: 9532 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sarena Fothergill,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarena Fothergill +sn: Fothergill +description: This is Sarena Fothergill's description +facsimileTelephoneNumber: +1 818 221-5109 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 455-7769 +title: Associate Management Developer +userPassword: Password1 +uid: FothergS +givenName: Sarena +mail: FothergS@78e66db4daf244269be3e0f7fc49db85.bitwarden.com +carLicense: 8K23J7 +departmentNumber: 5499 +employeeType: Employee +homePhone: +1 818 715-6207 +initials: S. F. +mobile: +1 818 106-5591 +pager: +1 818 398-4459 +roomNumber: 8254 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jaquith Canfield,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaquith Canfield +sn: Canfield +description: This is Jaquith Canfield's description +facsimileTelephoneNumber: +1 415 198-9347 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 933-4243 +title: Junior Product Development Grunt +userPassword: Password1 +uid: CanfielJ +givenName: Jaquith +mail: CanfielJ@ddb5a80ff9f74390b91dd39ff94d365e.bitwarden.com +carLicense: 174JXX +departmentNumber: 2936 +employeeType: Normal +homePhone: +1 415 942-8806 +initials: J. C. +mobile: +1 415 283-9669 +pager: +1 415 386-9475 +roomNumber: 8327 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Darell Carrillo,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darell Carrillo +sn: Carrillo +description: This is Darell Carrillo's description +facsimileTelephoneNumber: +1 206 199-6110 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 538-2099 +title: Junior Human Resources Janitor +userPassword: Password1 +uid: CarrillD +givenName: Darell +mail: CarrillD@3dc91dfe6410493ba2012f554bea81e6.bitwarden.com +carLicense: YEGJHQ +departmentNumber: 8820 +employeeType: Contract +homePhone: +1 206 557-9651 +initials: D. C. +mobile: +1 206 257-4004 +pager: +1 206 604-6602 +roomNumber: 9754 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Malgosia Beilin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Malgosia Beilin +sn: Beilin +description: This is Malgosia Beilin's description +facsimileTelephoneNumber: +1 804 243-3624 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 977-5957 +title: Associate Product Development Janitor +userPassword: Password1 +uid: BeilinM +givenName: Malgosia +mail: BeilinM@73769e96fc584ccd856adcc4d5fe88ef.bitwarden.com +carLicense: O70YVG +departmentNumber: 7201 +employeeType: Contract +homePhone: +1 804 690-2329 +initials: M. B. +mobile: +1 804 240-2786 +pager: +1 804 746-7915 +roomNumber: 8561 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bekki Kensinger,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bekki Kensinger +sn: Kensinger +description: This is Bekki Kensinger's description +facsimileTelephoneNumber: +1 408 867-9331 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 408 872-2969 +title: Associate Payroll Warrior +userPassword: Password1 +uid: KensingB +givenName: Bekki +mail: KensingB@30ca0b4b2c6d4aff9d3ac9b5f46982e5.bitwarden.com +carLicense: 8152P6 +departmentNumber: 9767 +employeeType: Contract +homePhone: +1 408 571-6486 +initials: B. K. +mobile: +1 408 824-3401 +pager: +1 408 582-9169 +roomNumber: 8266 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Benny Stahl,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benny Stahl +sn: Stahl +description: This is Benny Stahl's description +facsimileTelephoneNumber: +1 510 676-5270 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 510 574-6290 +title: Junior Administrative Visionary +userPassword: Password1 +uid: StahlB +givenName: Benny +mail: StahlB@6e645f68154e4e0a9f217d10cb782190.bitwarden.com +carLicense: R2ASOM +departmentNumber: 9461 +employeeType: Normal +homePhone: +1 510 247-2654 +initials: B. S. +mobile: +1 510 612-2794 +pager: +1 510 369-7405 +roomNumber: 8625 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sonja Blake,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonja Blake +sn: Blake +description: This is Sonja Blake's description +facsimileTelephoneNumber: +1 213 247-2143 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 409-9991 +title: Junior Management Figurehead +userPassword: Password1 +uid: BlakeS +givenName: Sonja +mail: BlakeS@9b3c4690331a4a13a5aeb576bf120640.bitwarden.com +carLicense: 5MDDQU +departmentNumber: 2931 +employeeType: Normal +homePhone: +1 213 854-2742 +initials: S. B. +mobile: +1 213 837-3220 +pager: +1 213 778-7211 +roomNumber: 9020 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Corny Cowick,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corny Cowick +sn: Cowick +description: This is Corny Cowick's description +facsimileTelephoneNumber: +1 415 904-7268 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 625-2867 +title: Chief Administrative Assistant +userPassword: Password1 +uid: CowickC +givenName: Corny +mail: CowickC@50a85f24c25d40e8a8c71e34d2304607.bitwarden.com +carLicense: FYEETE +departmentNumber: 5200 +employeeType: Employee +homePhone: +1 415 724-8214 +initials: C. C. +mobile: +1 415 149-2897 +pager: +1 415 726-1948 +roomNumber: 8393 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sibelle McAlister,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibelle McAlister +sn: McAlister +description: This is Sibelle McAlister's description +facsimileTelephoneNumber: +1 408 227-4035 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 312-7242 +title: Junior Peons Fellow +userPassword: Password1 +uid: McAlistS +givenName: Sibelle +mail: McAlistS@b9847a93402b4d7e9eab2f6967e34b51.bitwarden.com +carLicense: WSDATT +departmentNumber: 2978 +employeeType: Normal +homePhone: +1 408 428-1691 +initials: S. M. +mobile: +1 408 542-7706 +pager: +1 408 365-6759 +roomNumber: 8559 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miguelita Gerstmar +sn: Gerstmar +description: This is Miguelita Gerstmar's description +facsimileTelephoneNumber: +1 804 117-8582 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 262-1631 +title: Supreme Human Resources Dictator +userPassword: Password1 +uid: GerstmaM +givenName: Miguelita +mail: GerstmaM@0fe89eeff7dc4fc1a0f74df0bfbf040f.bitwarden.com +carLicense: 61BO1Y +departmentNumber: 3819 +employeeType: Normal +homePhone: +1 804 425-3584 +initials: M. G. +mobile: +1 804 811-4348 +pager: +1 804 972-5909 +roomNumber: 9612 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kunitaka Diogo +sn: Diogo +description: This is Kunitaka Diogo's description +facsimileTelephoneNumber: +1 213 254-7875 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 213 640-5763 +title: Supreme Administrative Fellow +userPassword: Password1 +uid: DiogoK +givenName: Kunitaka +mail: DiogoK@c81d6e524d4f4e8ab4225b79b67ec3c9.bitwarden.com +carLicense: 5KN0XR +departmentNumber: 8124 +employeeType: Employee +homePhone: +1 213 289-6485 +initials: K. D. +mobile: +1 213 633-6067 +pager: +1 213 575-5610 +roomNumber: 9091 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eachelle Bushell +sn: Bushell +description: This is Eachelle Bushell's description +facsimileTelephoneNumber: +1 408 113-6576 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 408 939-4768 +title: Master Product Testing Czar +userPassword: Password1 +uid: BushellE +givenName: Eachelle +mail: BushellE@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com +carLicense: SP3HT9 +departmentNumber: 4094 +employeeType: Employee +homePhone: +1 408 700-3022 +initials: E. B. +mobile: +1 408 621-7709 +pager: +1 408 709-8634 +roomNumber: 9580 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vicuong Zadeh +sn: Zadeh +description: This is Vicuong Zadeh's description +facsimileTelephoneNumber: +1 415 667-6592 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 233-6843 +title: Chief Payroll Visionary +userPassword: Password1 +uid: ZadehV +givenName: Vicuong +mail: ZadehV@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com +carLicense: KWAJKS +departmentNumber: 2675 +employeeType: Normal +homePhone: +1 415 146-7223 +initials: V. Z. +mobile: +1 415 831-6615 +pager: +1 415 620-6094 +roomNumber: 8047 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Souza Deininger,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Souza Deininger +sn: Deininger +description: This is Souza Deininger's description +facsimileTelephoneNumber: +1 804 203-4605 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 572-3571 +title: Supreme Product Development Architect +userPassword: Password1 +uid: DeiningS +givenName: Souza +mail: DeiningS@b140b76ec6b34c518f0c06eda43db13e.bitwarden.com +carLicense: W96WCC +departmentNumber: 5352 +employeeType: Contract +homePhone: +1 804 352-9661 +initials: S. D. +mobile: +1 804 833-3044 +pager: +1 804 923-9539 +roomNumber: 8728 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Beata Surray,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beata Surray +sn: Surray +description: This is Beata Surray's description +facsimileTelephoneNumber: +1 206 117-4209 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 206 926-2916 +title: Chief Payroll Manager +userPassword: Password1 +uid: SurrayB +givenName: Beata +mail: SurrayB@344ac38ed8f246e1aa4a5cafeb824a1c.bitwarden.com +carLicense: SABIH6 +departmentNumber: 3326 +employeeType: Normal +homePhone: +1 206 728-4483 +initials: B. S. +mobile: +1 206 319-6359 +pager: +1 206 732-5668 +roomNumber: 9609 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Betsy Bergman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Betsy Bergman +sn: Bergman +description: This is Betsy Bergman's description +facsimileTelephoneNumber: +1 818 140-8280 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 962-9617 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: BergmanB +givenName: Betsy +mail: BergmanB@312a6c96857e41e898ce218801eab796.bitwarden.com +carLicense: WF3BK9 +departmentNumber: 5975 +employeeType: Employee +homePhone: +1 818 170-5726 +initials: B. B. +mobile: +1 818 977-8679 +pager: +1 818 289-1984 +roomNumber: 9343 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cheryl Deibert,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cheryl Deibert +sn: Deibert +description: This is Cheryl Deibert's description +facsimileTelephoneNumber: +1 804 415-6104 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 804 595-5090 +title: Chief Peons Writer +userPassword: Password1 +uid: DeibertC +givenName: Cheryl +mail: DeibertC@6dfd976d46114be489d1c70dd10e11f7.bitwarden.com +carLicense: RXNR13 +departmentNumber: 1249 +employeeType: Employee +homePhone: +1 804 123-9200 +initials: C. D. +mobile: +1 804 956-4188 +pager: +1 804 529-9615 +roomNumber: 8886 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Darrel Bottoms,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darrel Bottoms +sn: Bottoms +description: This is Darrel Bottoms's description +facsimileTelephoneNumber: +1 408 938-3612 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 429-5176 +title: Supreme Payroll Sales Rep +userPassword: Password1 +uid: BottomsD +givenName: Darrel +mail: BottomsD@dcbfb0982f2b4bb7bdf60b8f61c36502.bitwarden.com +carLicense: YADWS2 +departmentNumber: 4710 +employeeType: Contract +homePhone: +1 408 326-7128 +initials: D. B. +mobile: +1 408 942-1065 +pager: +1 408 814-7762 +roomNumber: 9756 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cathal Ahdieh +sn: Ahdieh +description: This is Cathal Ahdieh's description +facsimileTelephoneNumber: +1 408 469-4842 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 259-5150 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: AhdiehC +givenName: Cathal +mail: AhdiehC@b0c6b060c84743b6a9eb5943601ed7e1.bitwarden.com +carLicense: LS0DF0 +departmentNumber: 6499 +employeeType: Employee +homePhone: +1 408 965-1298 +initials: C. A. +mobile: +1 408 534-2617 +pager: +1 408 544-1892 +roomNumber: 8739 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cissiee Gostanian,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cissiee Gostanian +sn: Gostanian +description: This is Cissiee Gostanian's description +facsimileTelephoneNumber: +1 206 528-1414 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 792-6983 +title: Supreme Peons Pinhead +userPassword: Password1 +uid: GostaniC +givenName: Cissiee +mail: GostaniC@6a7058ac13d642658b7f7adc5e875217.bitwarden.com +carLicense: N1B1U0 +departmentNumber: 4320 +employeeType: Normal +homePhone: +1 206 956-9223 +initials: C. G. +mobile: +1 206 376-3391 +pager: +1 206 888-3592 +roomNumber: 9344 +manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Portia Beecker,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Portia Beecker +sn: Beecker +description: This is Portia Beecker's description +facsimileTelephoneNumber: +1 818 685-4771 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 818 863-2004 +title: Associate Payroll Vice President +userPassword: Password1 +uid: BeeckerP +givenName: Portia +mail: BeeckerP@74754781579f4c4bbee5126ecca3cdbe.bitwarden.com +carLicense: AQKGNI +departmentNumber: 3604 +employeeType: Employee +homePhone: +1 818 621-1451 +initials: P. B. +mobile: +1 818 263-7007 +pager: +1 818 194-6312 +roomNumber: 9789 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Harrietta Saberi +sn: Saberi +description: This is Harrietta Saberi's description +facsimileTelephoneNumber: +1 804 857-2461 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 325-6657 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: SaberiH +givenName: Harrietta +mail: SaberiH@08dc96d6e1284f068d1587b61ddbfede.bitwarden.com +carLicense: XJT4ER +departmentNumber: 5127 +employeeType: Contract +homePhone: +1 804 285-6166 +initials: H. S. +mobile: +1 804 293-6582 +pager: +1 804 145-4025 +roomNumber: 9576 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alli AbouEzze,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alli AbouEzze +sn: AbouEzze +description: This is Alli AbouEzze's description +facsimileTelephoneNumber: +1 206 588-3544 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 497-3483 +title: Associate Payroll Madonna +userPassword: Password1 +uid: AbouEzzA +givenName: Alli +mail: AbouEzzA@3cd269b5d58f4f4392c1d0f7bebb70ef.bitwarden.com +carLicense: 9CG87X +departmentNumber: 1815 +employeeType: Contract +homePhone: +1 206 323-2525 +initials: A. A. +mobile: +1 206 835-3113 +pager: +1 206 271-3531 +roomNumber: 8920 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kirk Cuddihey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kirk Cuddihey +sn: Cuddihey +description: This is Kirk Cuddihey's description +facsimileTelephoneNumber: +1 408 642-2803 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 408 422-4149 +title: Master Peons Writer +userPassword: Password1 +uid: CuddiheK +givenName: Kirk +mail: CuddiheK@aa98e19fc6664718bf16b34c3c3283c8.bitwarden.com +carLicense: SC9V19 +departmentNumber: 2112 +employeeType: Contract +homePhone: +1 408 330-9618 +initials: K. C. +mobile: +1 408 607-8938 +pager: +1 408 223-7274 +roomNumber: 8179 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=ChoonLin Marneris,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChoonLin Marneris +sn: Marneris +description: This is ChoonLin Marneris's description +facsimileTelephoneNumber: +1 804 192-3414 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 804 162-7581 +title: Chief Peons Assistant +userPassword: Password1 +uid: MarneriC +givenName: ChoonLin +mail: MarneriC@d0765271186d48a4a72bafc8ed84bb23.bitwarden.com +carLicense: 8U2YM4 +departmentNumber: 3790 +employeeType: Employee +homePhone: +1 804 169-8452 +initials: C. M. +mobile: +1 804 883-9667 +pager: +1 804 980-9302 +roomNumber: 9076 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dulcine Friedl +sn: Friedl +description: This is Dulcine Friedl's description +facsimileTelephoneNumber: +1 510 769-7520 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 510 311-2997 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: FriedlD +givenName: Dulcine +mail: FriedlD@b39319cd8660409ab6d3b20577474e4a.bitwarden.com +carLicense: YAEY4T +departmentNumber: 8464 +employeeType: Contract +homePhone: +1 510 362-8773 +initials: D. F. +mobile: +1 510 696-2529 +pager: +1 510 914-3697 +roomNumber: 8207 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Davida Milakovic,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davida Milakovic +sn: Milakovic +description: This is Davida Milakovic's description +facsimileTelephoneNumber: +1 213 750-9583 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 213 147-5058 +title: Chief Payroll Stooge +userPassword: Password1 +uid: MilakovD +givenName: Davida +mail: MilakovD@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com +carLicense: NICI9M +departmentNumber: 7804 +employeeType: Normal +homePhone: +1 213 289-3040 +initials: D. M. +mobile: +1 213 890-7986 +pager: +1 213 291-7309 +roomNumber: 9533 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Janela Bennison,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janela Bennison +sn: Bennison +description: This is Janela Bennison's description +facsimileTelephoneNumber: +1 510 913-1039 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 510 856-1262 +title: Junior Human Resources Mascot +userPassword: Password1 +uid: BennisoJ +givenName: Janela +mail: BennisoJ@e1d5f9e67dcb4da6918e282801f19d33.bitwarden.com +carLicense: RGR2HU +departmentNumber: 9132 +employeeType: Employee +homePhone: +1 510 174-5600 +initials: J. B. +mobile: +1 510 581-8848 +pager: +1 510 450-4728 +roomNumber: 9312 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hermann VieillardBaron +sn: VieillardBaron +description: This is Hermann VieillardBaron's description +facsimileTelephoneNumber: +1 804 207-1194 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 983-8863 +title: Associate Human Resources Sales Rep +userPassword: Password1 +uid: VieillaH +givenName: Hermann +mail: VieillaH@aa27b3d0b2304f6aa579ad064be338d9.bitwarden.com +carLicense: MGIUMI +departmentNumber: 4807 +employeeType: Normal +homePhone: +1 804 296-6895 +initials: H. V. +mobile: +1 804 758-6072 +pager: +1 804 620-3192 +roomNumber: 9996 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Zorine Records,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zorine Records +sn: Records +description: This is Zorine Records's description +facsimileTelephoneNumber: +1 818 389-5985 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 476-8596 +title: Junior Peons Czar +userPassword: Password1 +uid: RecordsZ +givenName: Zorine +mail: RecordsZ@4b233d8ae0e140eb95be281f6d1b2b93.bitwarden.com +carLicense: 5MTKO9 +departmentNumber: 9952 +employeeType: Employee +homePhone: +1 818 592-6947 +initials: Z. R. +mobile: +1 818 959-4208 +pager: +1 818 233-6443 +roomNumber: 8865 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurene Logarajah +sn: Logarajah +description: This is Maurene Logarajah's description +facsimileTelephoneNumber: +1 408 285-1529 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 473-4331 +title: Junior Janitorial Grunt +userPassword: Password1 +uid: LogarajM +givenName: Maurene +mail: LogarajM@bf118e8244174e9f89af2ea2f2fc47ac.bitwarden.com +carLicense: WIV90D +departmentNumber: 9025 +employeeType: Normal +homePhone: +1 408 977-4814 +initials: M. L. +mobile: +1 408 726-5662 +pager: +1 408 486-3719 +roomNumber: 8977 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ashleigh Ligon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashleigh Ligon +sn: Ligon +description: This is Ashleigh Ligon's description +facsimileTelephoneNumber: +1 510 725-3159 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 503-8442 +title: Master Management Technician +userPassword: Password1 +uid: LigonA +givenName: Ashleigh +mail: LigonA@3fec2785d837452b919cb6ba8975932d.bitwarden.com +carLicense: NGYU70 +departmentNumber: 4273 +employeeType: Normal +homePhone: +1 510 915-8378 +initials: A. L. +mobile: +1 510 150-8700 +pager: +1 510 359-1300 +roomNumber: 9554 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nelly Kerns,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nelly Kerns +sn: Kerns +description: This is Nelly Kerns's description +facsimileTelephoneNumber: +1 206 722-9242 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 206 480-1158 +title: Master Human Resources Punk +userPassword: Password1 +uid: KernsN +givenName: Nelly +mail: KernsN@25d13e46c21f42c88f458b84e9f2035e.bitwarden.com +carLicense: YYDA9X +departmentNumber: 8422 +employeeType: Normal +homePhone: +1 206 715-2291 +initials: N. K. +mobile: +1 206 251-1461 +pager: +1 206 451-5243 +roomNumber: 8991 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Chicky Domine,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chicky Domine +sn: Domine +description: This is Chicky Domine's description +facsimileTelephoneNumber: +1 804 469-8125 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 545-5269 +title: Supreme Peons Punk +userPassword: Password1 +uid: DomineC +givenName: Chicky +mail: DomineC@2d496c580b4f4816a656973b9003a612.bitwarden.com +carLicense: GPSKIU +departmentNumber: 2184 +employeeType: Contract +homePhone: +1 804 867-2250 +initials: C. D. +mobile: +1 804 847-5100 +pager: +1 804 696-5610 +roomNumber: 8368 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Woon Morrin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Woon Morrin +sn: Morrin +description: This is Woon Morrin's description +facsimileTelephoneNumber: +1 206 452-3190 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 127-6101 +title: Junior Human Resources Janitor +userPassword: Password1 +uid: MorrinW +givenName: Woon +mail: MorrinW@cabd0c89a78947b69a999dc093307343.bitwarden.com +carLicense: UWSTGO +departmentNumber: 1285 +employeeType: Employee +homePhone: +1 206 346-4811 +initials: W. M. +mobile: +1 206 493-6092 +pager: +1 206 810-2751 +roomNumber: 8106 +manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tedra Shwed,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tedra Shwed +sn: Shwed +description: This is Tedra Shwed's description +facsimileTelephoneNumber: +1 213 776-1478 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 935-5398 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: ShwedT +givenName: Tedra +mail: ShwedT@ce09eff4e27d456d8a017939b41c80b4.bitwarden.com +carLicense: YQPXAX +departmentNumber: 2868 +employeeType: Normal +homePhone: +1 213 310-3229 +initials: T. S. +mobile: +1 213 947-8550 +pager: +1 213 576-4644 +roomNumber: 8976 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wallis Whitfill,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wallis Whitfill +sn: Whitfill +description: This is Wallis Whitfill's description +facsimileTelephoneNumber: +1 510 415-7049 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 510 800-9454 +title: Associate Product Development Mascot +userPassword: Password1 +uid: WhitfilW +givenName: Wallis +mail: WhitfilW@9e756b675bb74e34850e55cc8a973979.bitwarden.com +carLicense: WDNTKE +departmentNumber: 7111 +employeeType: Normal +homePhone: +1 510 660-7806 +initials: W. W. +mobile: +1 510 760-6017 +pager: +1 510 863-5011 +roomNumber: 8126 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Torey Tropea,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Torey Tropea +sn: Tropea +description: This is Torey Tropea's description +facsimileTelephoneNumber: +1 510 787-8030 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 510 612-4404 +title: Master Janitorial Assistant +userPassword: Password1 +uid: TropeaT +givenName: Torey +mail: TropeaT@358baf59282c4aecb9c88b92eb26205b.bitwarden.com +carLicense: SR55CC +departmentNumber: 2469 +employeeType: Employee +homePhone: +1 510 572-4473 +initials: T. T. +mobile: +1 510 884-1258 +pager: +1 510 931-5805 +roomNumber: 9265 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Israel Ginest,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Israel Ginest +sn: Ginest +description: This is Israel Ginest's description +facsimileTelephoneNumber: +1 510 339-4777 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 168-8306 +title: Associate Janitorial Fellow +userPassword: Password1 +uid: GinestI +givenName: Israel +mail: GinestI@f4cac90289b44dc28b9de765747f5a7c.bitwarden.com +carLicense: 1NP0CI +departmentNumber: 7489 +employeeType: Normal +homePhone: +1 510 393-7039 +initials: I. G. +mobile: +1 510 536-6770 +pager: +1 510 553-1929 +roomNumber: 8297 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Yoko Honda,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yoko Honda +sn: Honda +description: This is Yoko Honda's description +facsimileTelephoneNumber: +1 213 962-7031 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 757-1327 +title: Chief Peons Czar +userPassword: Password1 +uid: HondaY +givenName: Yoko +mail: HondaY@06a1126691e242c186fd659978ae6b78.bitwarden.com +carLicense: BSW1SR +departmentNumber: 7253 +employeeType: Normal +homePhone: +1 213 791-3015 +initials: Y. H. +mobile: +1 213 612-4201 +pager: +1 213 497-2630 +roomNumber: 8884 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Farzin Herlihy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Farzin Herlihy +sn: Herlihy +description: This is Farzin Herlihy's description +facsimileTelephoneNumber: +1 818 891-6151 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 818 924-9602 +title: Junior Peons Visionary +userPassword: Password1 +uid: HerlihyF +givenName: Farzin +mail: HerlihyF@698fc42a217d4dcab9ecca9924295e3b.bitwarden.com +carLicense: ME48QT +departmentNumber: 7884 +employeeType: Employee +homePhone: +1 818 947-8180 +initials: F. H. +mobile: +1 818 815-6185 +pager: +1 818 360-7439 +roomNumber: 9025 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tabbatha DidioDuggan +sn: DidioDuggan +description: This is Tabbatha DidioDuggan's description +facsimileTelephoneNumber: +1 408 170-6048 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 408 643-3552 +title: Junior Human Resources Engineer +userPassword: Password1 +uid: DidioDuT +givenName: Tabbatha +mail: DidioDuT@72b8934ece8a4ceaba3014bcfcb801ca.bitwarden.com +carLicense: R63JPQ +departmentNumber: 7443 +employeeType: Normal +homePhone: +1 408 535-8269 +initials: T. D. +mobile: +1 408 106-7481 +pager: +1 408 595-2263 +roomNumber: 8064 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annadiana Levesque +sn: Levesque +description: This is Annadiana Levesque's description +facsimileTelephoneNumber: +1 415 944-3906 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 415 367-8235 +title: Associate Product Testing Madonna +userPassword: Password1 +uid: LevesquA +givenName: Annadiana +mail: LevesquA@2ca3e374401a4254833b5cbf4d34e968.bitwarden.com +carLicense: OYPU5B +departmentNumber: 3905 +employeeType: Normal +homePhone: +1 415 100-5697 +initials: A. L. +mobile: +1 415 328-4993 +pager: +1 415 902-4061 +roomNumber: 8353 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Benny Ratnam,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Benny Ratnam +sn: Ratnam +description: This is Benny Ratnam's description +facsimileTelephoneNumber: +1 408 920-6304 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 408 987-6663 +title: Associate Product Development Technician +userPassword: Password1 +uid: RatnamB +givenName: Benny +mail: RatnamB@93731e13c9e64512a53eb35ade181e8f.bitwarden.com +carLicense: NV03RQ +departmentNumber: 1479 +employeeType: Normal +homePhone: +1 408 677-5906 +initials: B. R. +mobile: +1 408 598-9653 +pager: +1 408 506-3440 +roomNumber: 8440 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Reeba Pape,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reeba Pape +sn: Pape +description: This is Reeba Pape's description +facsimileTelephoneNumber: +1 408 754-2309 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 295-7871 +title: Supreme Peons Madonna +userPassword: Password1 +uid: PapeR +givenName: Reeba +mail: PapeR@e242cd7509b945bca8984d07e1fb1255.bitwarden.com +carLicense: UVVO69 +departmentNumber: 8055 +employeeType: Normal +homePhone: +1 408 754-7748 +initials: R. P. +mobile: +1 408 659-3321 +pager: +1 408 399-8963 +roomNumber: 9229 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ashu Kohn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashu Kohn +sn: Kohn +description: This is Ashu Kohn's description +facsimileTelephoneNumber: +1 213 847-4093 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 213 929-2784 +title: Junior Administrative Janitor +userPassword: Password1 +uid: KohnA +givenName: Ashu +mail: KohnA@123c99e30f8149cea0d20a1c6360de45.bitwarden.com +carLicense: 3JJYN4 +departmentNumber: 9424 +employeeType: Employee +homePhone: +1 213 932-1466 +initials: A. K. +mobile: +1 213 622-9006 +pager: +1 213 492-9644 +roomNumber: 9789 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Liese McCombs,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liese McCombs +sn: McCombs +description: This is Liese McCombs's description +facsimileTelephoneNumber: +1 818 863-3697 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 818 749-9744 +title: Junior Peons Figurehead +userPassword: Password1 +uid: McCombsL +givenName: Liese +mail: McCombsL@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com +carLicense: QQT1U8 +departmentNumber: 5836 +employeeType: Contract +homePhone: +1 818 256-9131 +initials: L. M. +mobile: +1 818 680-4877 +pager: +1 818 400-2463 +roomNumber: 9231 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pinecrest Sonoda +sn: Sonoda +description: This is Pinecrest Sonoda's description +facsimileTelephoneNumber: +1 415 837-8787 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 415 806-8205 +title: Master Product Development Janitor +userPassword: Password1 +uid: SonodaP +givenName: Pinecrest +mail: SonodaP@a8d52d2b633f41a2be5b6bf6015e6a0d.bitwarden.com +carLicense: 7E9O6C +departmentNumber: 7561 +employeeType: Contract +homePhone: +1 415 994-9961 +initials: P. S. +mobile: +1 415 431-1801 +pager: +1 415 665-7981 +roomNumber: 8655 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lissa Cromwell +sn: Cromwell +description: This is Lissa Cromwell's description +facsimileTelephoneNumber: +1 408 743-7478 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 938-7142 +title: Chief Human Resources Director +userPassword: Password1 +uid: CromwelL +givenName: Lissa +mail: CromwelL@a83f5faad57246c68e39925cbe706599.bitwarden.com +carLicense: Q2BLXQ +departmentNumber: 5578 +employeeType: Normal +homePhone: +1 408 109-3980 +initials: L. C. +mobile: +1 408 394-6377 +pager: +1 408 662-7019 +roomNumber: 8711 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hsieh Networkroom +sn: Networkroom +description: This is Hsieh Networkroom's description +facsimileTelephoneNumber: +1 804 488-4988 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 892-1124 +title: Master Human Resources Pinhead +userPassword: Password1 +uid: NetworkH +givenName: Hsieh +mail: NetworkH@df3533ea43b14b7e966113cda7d50713.bitwarden.com +carLicense: PJCGVN +departmentNumber: 4168 +employeeType: Employee +homePhone: +1 804 907-4083 +initials: H. N. +mobile: +1 804 352-2055 +pager: +1 804 345-6503 +roomNumber: 9986 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Blinny Zanet,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blinny Zanet +sn: Zanet +description: This is Blinny Zanet's description +facsimileTelephoneNumber: +1 415 810-3917 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 415 256-2079 +title: Master Janitorial Evangelist +userPassword: Password1 +uid: ZanetB +givenName: Blinny +mail: ZanetB@5398775f17574785a44a78e1afa74d02.bitwarden.com +carLicense: SWKTUS +departmentNumber: 1716 +employeeType: Employee +homePhone: +1 415 735-4743 +initials: B. Z. +mobile: +1 415 239-6143 +pager: +1 415 962-9656 +roomNumber: 9564 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sanjay Themann,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sanjay Themann +sn: Themann +description: This is Sanjay Themann's description +facsimileTelephoneNumber: +1 408 342-9812 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 746-2078 +title: Chief Product Development Evangelist +userPassword: Password1 +uid: ThemannS +givenName: Sanjay +mail: ThemannS@e47694cd8b2a43baba9d3f4d0bafb719.bitwarden.com +carLicense: 8B2FQC +departmentNumber: 2378 +employeeType: Employee +homePhone: +1 408 392-5437 +initials: S. T. +mobile: +1 408 181-4508 +pager: +1 408 636-4174 +roomNumber: 9819 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Vijay Shorgan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vijay Shorgan +sn: Shorgan +description: This is Vijay Shorgan's description +facsimileTelephoneNumber: +1 206 563-3069 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 687-9626 +title: Junior Administrative Pinhead +userPassword: Password1 +uid: ShorganV +givenName: Vijay +mail: ShorganV@49ae34cdf8be4b8eb94f1974e6e81833.bitwarden.com +carLicense: 3Q4UDB +departmentNumber: 9365 +employeeType: Employee +homePhone: +1 206 901-2498 +initials: V. S. +mobile: +1 206 551-2449 +pager: +1 206 934-7279 +roomNumber: 9292 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Duncan Kiang,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duncan Kiang +sn: Kiang +description: This is Duncan Kiang's description +facsimileTelephoneNumber: +1 408 663-7775 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 277-7287 +title: Master Payroll Developer +userPassword: Password1 +uid: KiangD +givenName: Duncan +mail: KiangD@9d026b334a7143518a4125ed6fc356b2.bitwarden.com +carLicense: 57JELK +departmentNumber: 7898 +employeeType: Normal +homePhone: +1 408 634-8086 +initials: D. K. +mobile: +1 408 767-5711 +pager: +1 408 505-2002 +roomNumber: 8328 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hyacintha Dasrath +sn: Dasrath +description: This is Hyacintha Dasrath's description +facsimileTelephoneNumber: +1 415 108-9181 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 415 298-8452 +title: Chief Human Resources Writer +userPassword: Password1 +uid: DasrathH +givenName: Hyacintha +mail: DasrathH@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com +carLicense: 94AE16 +departmentNumber: 3508 +employeeType: Employee +homePhone: +1 415 959-4455 +initials: H. D. +mobile: +1 415 988-9089 +pager: +1 415 776-5604 +roomNumber: 8887 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Liliane Chima,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liliane Chima +sn: Chima +description: This is Liliane Chima's description +facsimileTelephoneNumber: +1 415 868-6002 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 657-1380 +title: Chief Payroll Dictator +userPassword: Password1 +uid: ChimaL +givenName: Liliane +mail: ChimaL@25e73f953c4a41e5afd2d99582d35572.bitwarden.com +carLicense: I3ANCG +departmentNumber: 6967 +employeeType: Normal +homePhone: +1 415 729-3333 +initials: L. C. +mobile: +1 415 177-5906 +pager: +1 415 171-9741 +roomNumber: 8523 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Khai Diradmin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khai Diradmin +sn: Diradmin +description: This is Khai Diradmin's description +facsimileTelephoneNumber: +1 213 560-1053 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 213 522-5961 +title: Master Payroll Manager +userPassword: Password1 +uid: DiradmiK +givenName: Khai +mail: DiradmiK@cd3e8f43f0dd4d3fb94f3baba8d46ade.bitwarden.com +carLicense: B7BPC5 +departmentNumber: 2089 +employeeType: Employee +homePhone: +1 213 304-5869 +initials: K. D. +mobile: +1 213 316-2531 +pager: +1 213 551-1792 +roomNumber: 9291 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanya Hengeveld +sn: Hengeveld +description: This is Kanya Hengeveld's description +facsimileTelephoneNumber: +1 510 631-4179 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 510 634-7314 +title: Associate Product Development Writer +userPassword: Password1 +uid: HengeveK +givenName: Kanya +mail: HengeveK@009b48ec99e641a9b127fbabb87ff147.bitwarden.com +carLicense: FQG5PO +departmentNumber: 8352 +employeeType: Contract +homePhone: +1 510 109-5194 +initials: K. H. +mobile: +1 510 259-7742 +pager: +1 510 103-2188 +roomNumber: 9637 +manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Burton Deans,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Burton Deans +sn: Deans +description: This is Burton Deans's description +facsimileTelephoneNumber: +1 213 349-7676 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 354-3998 +title: Master Janitorial Assistant +userPassword: Password1 +uid: DeansB +givenName: Burton +mail: DeansB@11066945925d4920b7876e8ee0d7adc4.bitwarden.com +carLicense: 4KM7C2 +departmentNumber: 9596 +employeeType: Normal +homePhone: +1 213 306-9063 +initials: B. D. +mobile: +1 213 159-4107 +pager: +1 213 707-1041 +roomNumber: 8161 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeff Timesheet +sn: Timesheet +description: This is Jeff Timesheet's description +facsimileTelephoneNumber: +1 206 120-7144 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 206 644-3145 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: TimesheJ +givenName: Jeff +mail: TimesheJ@fb0a3750df834bc493046b175453d58f.bitwarden.com +carLicense: 70BGJY +departmentNumber: 8108 +employeeType: Normal +homePhone: +1 206 835-5879 +initials: J. T. +mobile: +1 206 709-8295 +pager: +1 206 558-1950 +roomNumber: 9409 +manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elly Kubash,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elly Kubash +sn: Kubash +description: This is Elly Kubash's description +facsimileTelephoneNumber: +1 415 520-8430 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 415 711-9697 +title: Master Product Testing Grunt +userPassword: Password1 +uid: KubashE +givenName: Elly +mail: KubashE@b0361fa8905e48acad0bbc69c1da25d3.bitwarden.com +carLicense: FK79D4 +departmentNumber: 2301 +employeeType: Contract +homePhone: +1 415 335-2344 +initials: E. K. +mobile: +1 415 530-2347 +pager: +1 415 894-6653 +roomNumber: 8002 +manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashlee Mazanji +sn: Mazanji +description: This is Ashlee Mazanji's description +facsimileTelephoneNumber: +1 213 476-9432 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 277-5145 +title: Junior Product Development Writer +userPassword: Password1 +uid: MazanjiA +givenName: Ashlee +mail: MazanjiA@965eaa64d55b462eb17422051f0b66a2.bitwarden.com +carLicense: 7T05WR +departmentNumber: 6665 +employeeType: Normal +homePhone: +1 213 565-7153 +initials: A. M. +mobile: +1 213 978-5156 +pager: +1 213 392-6483 +roomNumber: 8493 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tallou Gothard,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tallou Gothard +sn: Gothard +description: This is Tallou Gothard's description +facsimileTelephoneNumber: +1 510 992-6034 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 622-3592 +title: Junior Administrative Stooge +userPassword: Password1 +uid: GothardT +givenName: Tallou +mail: GothardT@f6c4a9fff2af4eafbf743b05d6249663.bitwarden.com +carLicense: 3NROAV +departmentNumber: 1661 +employeeType: Normal +homePhone: +1 510 220-1414 +initials: T. G. +mobile: +1 510 841-6083 +pager: +1 510 729-6043 +roomNumber: 9218 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melinie Chiabaut +sn: Chiabaut +description: This is Melinie Chiabaut's description +facsimileTelephoneNumber: +1 818 334-1503 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 818 249-2442 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: ChiabauM +givenName: Melinie +mail: ChiabauM@f273a190f14545708d6c984111d46055.bitwarden.com +carLicense: V8V3I7 +departmentNumber: 1513 +employeeType: Normal +homePhone: +1 818 932-1188 +initials: M. C. +mobile: +1 818 372-7124 +pager: +1 818 181-8742 +roomNumber: 8099 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ofilia Choptovy +sn: Choptovy +description: This is Ofilia Choptovy's description +facsimileTelephoneNumber: +1 818 882-5577 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 150-5659 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: ChoptovO +givenName: Ofilia +mail: ChoptovO@77df1d4a30ab443892398806ba3c7576.bitwarden.com +carLicense: 1MCAU0 +departmentNumber: 6442 +employeeType: Employee +homePhone: +1 818 110-4481 +initials: O. C. +mobile: +1 818 318-9570 +pager: +1 818 616-9146 +roomNumber: 9085 +manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Perry Schmitz,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Perry Schmitz +sn: Schmitz +description: This is Perry Schmitz's description +facsimileTelephoneNumber: +1 213 332-7576 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 213 143-5340 +title: Chief Product Testing Stooge +userPassword: Password1 +uid: SchmitzP +givenName: Perry +mail: SchmitzP@68995b01422d4fac85d1f7b91ec07a75.bitwarden.com +carLicense: MYJO3G +departmentNumber: 3237 +employeeType: Employee +homePhone: +1 213 851-9600 +initials: P. S. +mobile: +1 213 423-9766 +pager: +1 213 851-1232 +roomNumber: 8756 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Avinash Finn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avinash Finn +sn: Finn +description: This is Avinash Finn's description +facsimileTelephoneNumber: +1 510 521-4339 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 510 467-9257 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: FinnA +givenName: Avinash +mail: FinnA@2ab1da0352f24de2973c7264573c59be.bitwarden.com +carLicense: OGY2PI +departmentNumber: 2851 +employeeType: Contract +homePhone: +1 510 177-1611 +initials: A. F. +mobile: +1 510 127-1724 +pager: +1 510 511-3123 +roomNumber: 8479 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marabel Hippert,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marabel Hippert +sn: Hippert +description: This is Marabel Hippert's description +facsimileTelephoneNumber: +1 408 299-5190 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 510-9484 +title: Supreme Human Resources President +userPassword: Password1 +uid: HippertM +givenName: Marabel +mail: HippertM@ebcad067bfb54e2996e22c6d3ae46310.bitwarden.com +carLicense: 8MYAQ8 +departmentNumber: 2620 +employeeType: Contract +homePhone: +1 408 131-9017 +initials: M. H. +mobile: +1 408 618-9658 +pager: +1 408 130-1229 +roomNumber: 8442 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Klazina Desharnais,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klazina Desharnais +sn: Desharnais +description: This is Klazina Desharnais's description +facsimileTelephoneNumber: +1 213 291-8956 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 636-9459 +title: Associate Peons Consultant +userPassword: Password1 +uid: DesharnK +givenName: Klazina +mail: DesharnK@89540e87cb364fefaa3b2a5074215102.bitwarden.com +carLicense: WOQEWG +departmentNumber: 8904 +employeeType: Employee +homePhone: +1 213 684-7080 +initials: K. D. +mobile: +1 213 148-7051 +pager: +1 213 520-5792 +roomNumber: 8061 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ursala Vezeau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ursala Vezeau +sn: Vezeau +description: This is Ursala Vezeau's description +facsimileTelephoneNumber: +1 206 261-8446 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 206 703-9102 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: VezeauU +givenName: Ursala +mail: VezeauU@61391b1e27a64c79ad40798665590378.bitwarden.com +carLicense: BDAU4Y +departmentNumber: 6419 +employeeType: Contract +homePhone: +1 206 851-6326 +initials: U. V. +mobile: +1 206 270-8449 +pager: +1 206 209-6730 +roomNumber: 8835 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Muffin Atteridge,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Muffin Atteridge +sn: Atteridge +description: This is Muffin Atteridge's description +facsimileTelephoneNumber: +1 213 122-2617 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 213 784-1774 +title: Associate Product Development Vice President +userPassword: Password1 +uid: AtteridM +givenName: Muffin +mail: AtteridM@6ff512afd6074ffb8be89092e99d3615.bitwarden.com +carLicense: 6PS7LX +departmentNumber: 4537 +employeeType: Contract +homePhone: +1 213 874-5951 +initials: M. A. +mobile: +1 213 406-7139 +pager: +1 213 459-5587 +roomNumber: 9287 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Vanya Marcoux,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanya Marcoux +sn: Marcoux +description: This is Vanya Marcoux's description +facsimileTelephoneNumber: +1 213 252-8471 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 213 493-5247 +title: Associate Management Figurehead +userPassword: Password1 +uid: MarcouxV +givenName: Vanya +mail: MarcouxV@dbdefa82bd204e5ab1e6a5b8f9bbc438.bitwarden.com +carLicense: BFGOHS +departmentNumber: 6875 +employeeType: Contract +homePhone: +1 213 749-6868 +initials: V. M. +mobile: +1 213 145-5623 +pager: +1 213 208-5952 +roomNumber: 9561 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mercy Nakano,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mercy Nakano +sn: Nakano +description: This is Mercy Nakano's description +facsimileTelephoneNumber: +1 804 128-3119 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 804 816-9979 +title: Associate Product Testing Punk +userPassword: Password1 +uid: NakanoM +givenName: Mercy +mail: NakanoM@f1c1878671bd497c916d8d6aa3e192fd.bitwarden.com +carLicense: 7C4MB2 +departmentNumber: 8368 +employeeType: Contract +homePhone: +1 804 801-6040 +initials: M. N. +mobile: +1 804 419-7687 +pager: +1 804 690-4195 +roomNumber: 9587 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sue Sugarbroad +sn: Sugarbroad +description: This is Sue Sugarbroad's description +facsimileTelephoneNumber: +1 804 846-3086 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 804 992-5213 +title: Associate Product Development Janitor +userPassword: Password1 +uid: SugarbrS +givenName: Sue +mail: SugarbrS@ab3309e246f140c79e997dde5ccb290c.bitwarden.com +carLicense: T4JPB8 +departmentNumber: 5257 +employeeType: Contract +homePhone: +1 804 226-1796 +initials: S. S. +mobile: +1 804 617-2153 +pager: +1 804 962-2671 +roomNumber: 8027 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Arlina Weaver,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlina Weaver +sn: Weaver +description: This is Arlina Weaver's description +facsimileTelephoneNumber: +1 804 119-9506 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 804 743-9385 +title: Junior Janitorial Admin +userPassword: Password1 +uid: WeaverA +givenName: Arlina +mail: WeaverA@5cb368696cd247eea76178d9b0f44b81.bitwarden.com +carLicense: 3NM4P7 +departmentNumber: 1029 +employeeType: Contract +homePhone: +1 804 467-4224 +initials: A. W. +mobile: +1 804 787-5385 +pager: +1 804 980-4551 +roomNumber: 8356 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Seven Okon,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Seven Okon +sn: Okon +description: This is Seven Okon's description +facsimileTelephoneNumber: +1 206 506-5629 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 983-7003 +title: Junior Product Testing Czar +userPassword: Password1 +uid: OkonS +givenName: Seven +mail: OkonS@9da8707f84d94fc6a64c7ccfeaa1b78b.bitwarden.com +carLicense: FONL7W +departmentNumber: 7971 +employeeType: Normal +homePhone: +1 206 749-1323 +initials: S. O. +mobile: +1 206 420-9032 +pager: +1 206 383-4295 +roomNumber: 8103 +manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronn Ciccarelli +sn: Ciccarelli +description: This is Ronn Ciccarelli's description +facsimileTelephoneNumber: +1 213 259-6761 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 213 789-8270 +title: Junior Administrative Admin +userPassword: Password1 +uid: CiccareR +givenName: Ronn +mail: CiccareR@af9b2025e2d4428a825c1c465719ccc7.bitwarden.com +carLicense: L3QGP0 +departmentNumber: 1069 +employeeType: Contract +homePhone: +1 213 901-4507 +initials: R. C. +mobile: +1 213 736-4777 +pager: +1 213 851-8267 +roomNumber: 9083 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Liliane Gurer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Liliane Gurer +sn: Gurer +description: This is Liliane Gurer's description +facsimileTelephoneNumber: +1 408 718-4891 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 274-9111 +title: Associate Human Resources Dictator +userPassword: Password1 +uid: GurerL +givenName: Liliane +mail: GurerL@06929a8dcdce40d387113e867b6564b6.bitwarden.com +carLicense: KN379I +departmentNumber: 4101 +employeeType: Contract +homePhone: +1 408 538-8136 +initials: L. G. +mobile: +1 408 360-3856 +pager: +1 408 659-5739 +roomNumber: 9547 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=HonKong Salem,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HonKong Salem +sn: Salem +description: This is HonKong Salem's description +facsimileTelephoneNumber: +1 804 484-1074 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 992-6345 +title: Master Human Resources Assistant +userPassword: Password1 +uid: SalemH +givenName: HonKong +mail: SalemH@a3f5c91e6cdf46d98f250a62d67415ff.bitwarden.com +carLicense: G2SPI0 +departmentNumber: 9738 +employeeType: Employee +homePhone: +1 804 661-5860 +initials: H. S. +mobile: +1 804 793-5910 +pager: +1 804 273-2383 +roomNumber: 8702 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rosalia Mansourati +sn: Mansourati +description: This is Rosalia Mansourati's description +facsimileTelephoneNumber: +1 510 336-2200 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 510 165-2812 +title: Supreme Janitorial Vice President +userPassword: Password1 +uid: MansourR +givenName: Rosalia +mail: MansourR@e64b8dfa86634e858dc40a565c229607.bitwarden.com +carLicense: HBA0SJ +departmentNumber: 7549 +employeeType: Contract +homePhone: +1 510 288-5160 +initials: R. M. +mobile: +1 510 573-2224 +pager: +1 510 300-4627 +roomNumber: 8948 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Glynnis Daniells,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glynnis Daniells +sn: Daniells +description: This is Glynnis Daniells's description +facsimileTelephoneNumber: +1 415 401-2182 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 825-6385 +title: Supreme Management Grunt +userPassword: Password1 +uid: DaniellG +givenName: Glynnis +mail: DaniellG@547fa50227684350b1f92837929bd166.bitwarden.com +carLicense: SENSES +departmentNumber: 5130 +employeeType: Contract +homePhone: +1 415 283-6712 +initials: G. D. +mobile: +1 415 274-5531 +pager: +1 415 214-2331 +roomNumber: 8187 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Edwin SteMarie +sn: SteMarie +description: This is Edwin SteMarie's description +facsimileTelephoneNumber: +1 804 242-5615 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 880-5356 +title: Supreme Janitorial President +userPassword: Password1 +uid: SteMariE +givenName: Edwin +mail: SteMariE@5128133359594cd18d137c259ecf1184.bitwarden.com +carLicense: KGCTTH +departmentNumber: 5090 +employeeType: Contract +homePhone: +1 804 813-7214 +initials: E. S. +mobile: +1 804 455-8930 +pager: +1 804 257-4390 +roomNumber: 9819 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Miran McKeone,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miran McKeone +sn: McKeone +description: This is Miran McKeone's description +facsimileTelephoneNumber: +1 818 198-6286 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 818 328-5587 +title: Junior Product Testing Stooge +userPassword: Password1 +uid: McKeoneM +givenName: Miran +mail: McKeoneM@be56d01786b846e3aa64454147150e23.bitwarden.com +carLicense: WBWM06 +departmentNumber: 3272 +employeeType: Normal +homePhone: +1 818 296-5811 +initials: M. M. +mobile: +1 818 426-9852 +pager: +1 818 981-5097 +roomNumber: 9023 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dion Polulack,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dion Polulack +sn: Polulack +description: This is Dion Polulack's description +facsimileTelephoneNumber: +1 408 694-1333 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 237-3478 +title: Master Administrative Janitor +userPassword: Password1 +uid: PolulacD +givenName: Dion +mail: PolulacD@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com +carLicense: T15XIB +departmentNumber: 9078 +employeeType: Normal +homePhone: +1 408 613-6307 +initials: D. P. +mobile: +1 408 369-8848 +pager: +1 408 779-9806 +roomNumber: 9228 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hartley Busch,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hartley Busch +sn: Busch +description: This is Hartley Busch's description +facsimileTelephoneNumber: +1 510 866-4486 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 510 203-8711 +title: Junior Product Testing Figurehead +userPassword: Password1 +uid: BuschH +givenName: Hartley +mail: BuschH@c7a27fd01c1647d28de4dfcfed9b1184.bitwarden.com +carLicense: G90LG4 +departmentNumber: 6939 +employeeType: Employee +homePhone: +1 510 596-5812 +initials: H. B. +mobile: +1 510 437-7619 +pager: +1 510 354-8587 +roomNumber: 9593 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gusella Popper,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gusella Popper +sn: Popper +description: This is Gusella Popper's description +facsimileTelephoneNumber: +1 818 824-4553 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 286-5027 +title: Chief Human Resources Evangelist +userPassword: Password1 +uid: PopperG +givenName: Gusella +mail: PopperG@903b76c810774286bddac3a5a25eb6b0.bitwarden.com +carLicense: 2FIAIR +departmentNumber: 2389 +employeeType: Employee +homePhone: +1 818 361-4023 +initials: G. P. +mobile: +1 818 366-5635 +pager: +1 818 868-1262 +roomNumber: 9280 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Wits Stutts,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wits Stutts +sn: Stutts +description: This is Wits Stutts's description +facsimileTelephoneNumber: +1 804 107-3780 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 120-5802 +title: Junior Human Resources President +userPassword: Password1 +uid: StuttsW +givenName: Wits +mail: StuttsW@010ac2dbb4cb4b37b616090dd6b67211.bitwarden.com +carLicense: DDDX1J +departmentNumber: 7331 +employeeType: Contract +homePhone: +1 804 269-1110 +initials: W. S. +mobile: +1 804 395-9937 +pager: +1 804 360-9533 +roomNumber: 9181 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Afzal Rusch,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Afzal Rusch +sn: Rusch +description: This is Afzal Rusch's description +facsimileTelephoneNumber: +1 408 901-9427 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 630-2755 +title: Master Peons Dictator +userPassword: Password1 +uid: RuschA +givenName: Afzal +mail: RuschA@133bae8b2a2c42388199fc3fdfad66b4.bitwarden.com +carLicense: KKJ4AC +departmentNumber: 6842 +employeeType: Normal +homePhone: +1 408 696-6932 +initials: A. R. +mobile: +1 408 498-3215 +pager: +1 408 137-7940 +roomNumber: 9738 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Karon McBrayne,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karon McBrayne +sn: McBrayne +description: This is Karon McBrayne's description +facsimileTelephoneNumber: +1 804 326-5982 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 960-3766 +title: Master Human Resources Pinhead +userPassword: Password1 +uid: McBraynK +givenName: Karon +mail: McBraynK@42caf052c7364166a6c614169e68423b.bitwarden.com +carLicense: EP8QPO +departmentNumber: 7717 +employeeType: Normal +homePhone: +1 804 801-5991 +initials: K. M. +mobile: +1 804 534-3656 +pager: +1 804 174-5136 +roomNumber: 8094 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Judy Homa,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Judy Homa +sn: Homa +description: This is Judy Homa's description +facsimileTelephoneNumber: +1 213 785-2105 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 213 105-8119 +title: Supreme Payroll Grunt +userPassword: Password1 +uid: HomaJ +givenName: Judy +mail: HomaJ@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com +carLicense: 1KX271 +departmentNumber: 3211 +employeeType: Employee +homePhone: +1 213 416-2781 +initials: J. H. +mobile: +1 213 537-4960 +pager: +1 213 118-1232 +roomNumber: 8352 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tarik Tester,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tarik Tester +sn: Tester +description: This is Tarik Tester's description +facsimileTelephoneNumber: +1 206 928-8373 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 451-6737 +title: Master Administrative Architect +userPassword: Password1 +uid: TesterT +givenName: Tarik +mail: TesterT@392b60a69449497fa8daa89cef186b78.bitwarden.com +carLicense: 769VU9 +departmentNumber: 3348 +employeeType: Normal +homePhone: +1 206 833-1838 +initials: T. T. +mobile: +1 206 668-5786 +pager: +1 206 259-5521 +roomNumber: 9777 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Carole Suykens,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carole Suykens +sn: Suykens +description: This is Carole Suykens's description +facsimileTelephoneNumber: +1 415 929-6427 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 415 336-3294 +title: Chief Administrative Janitor +userPassword: Password1 +uid: SuykensC +givenName: Carole +mail: SuykensC@b7faf436ed93412c95576fc8c712f2d1.bitwarden.com +carLicense: AUGSNP +departmentNumber: 6960 +employeeType: Contract +homePhone: +1 415 552-6211 +initials: C. S. +mobile: +1 415 820-7700 +pager: +1 415 379-5072 +roomNumber: 9570 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nuri DiRienzo +sn: DiRienzo +description: This is Nuri DiRienzo's description +facsimileTelephoneNumber: +1 415 638-2983 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 415 590-9693 +title: Chief Payroll Writer +userPassword: Password1 +uid: DiRienzN +givenName: Nuri +mail: DiRienzN@b7e74d1e3c394a0f8846f3f4c8d34c1b.bitwarden.com +carLicense: EO4EKR +departmentNumber: 3769 +employeeType: Employee +homePhone: +1 415 868-4790 +initials: N. D. +mobile: +1 415 902-2871 +pager: +1 415 837-5443 +roomNumber: 9403 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Saman Koverzin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saman Koverzin +sn: Koverzin +description: This is Saman Koverzin's description +facsimileTelephoneNumber: +1 804 671-4008 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 804 970-3689 +title: Junior Payroll Mascot +userPassword: Password1 +uid: KoverziS +givenName: Saman +mail: KoverziS@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com +carLicense: OFDEA6 +departmentNumber: 3298 +employeeType: Employee +homePhone: +1 804 347-8392 +initials: S. K. +mobile: +1 804 375-2911 +pager: +1 804 468-1791 +roomNumber: 9874 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kaushik Reid,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaushik Reid +sn: Reid +description: This is Kaushik Reid's description +facsimileTelephoneNumber: +1 818 517-2876 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 818 120-1634 +title: Chief Product Development Punk +userPassword: Password1 +uid: ReidK +givenName: Kaushik +mail: ReidK@496d582fba1f48fead6391e894698c13.bitwarden.com +carLicense: NTF1P0 +departmentNumber: 8645 +employeeType: Normal +homePhone: +1 818 364-9021 +initials: K. R. +mobile: +1 818 861-1831 +pager: +1 818 539-1944 +roomNumber: 9031 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Eastreg Buchan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eastreg Buchan +sn: Buchan +description: This is Eastreg Buchan's description +facsimileTelephoneNumber: +1 206 361-4138 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 206 184-9304 +title: Master Administrative Czar +userPassword: Password1 +uid: BuchanE +givenName: Eastreg +mail: BuchanE@7b1a03c5445247ebb52034bf84aa1aeb.bitwarden.com +carLicense: VK9H8B +departmentNumber: 9176 +employeeType: Employee +homePhone: +1 206 446-9813 +initials: E. B. +mobile: +1 206 980-6943 +pager: +1 206 735-8399 +roomNumber: 8657 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kevyn Yu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kevyn Yu +sn: Yu +description: This is Kevyn Yu's description +facsimileTelephoneNumber: +1 206 487-3809 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 691-5336 +title: Master Management Stooge +userPassword: Password1 +uid: YuK +givenName: Kevyn +mail: YuK@50db0b06f7084e4cb9a7af7a31c89f8b.bitwarden.com +carLicense: ESS8A3 +departmentNumber: 2656 +employeeType: Employee +homePhone: +1 206 342-8996 +initials: K. Y. +mobile: +1 206 940-7423 +pager: +1 206 903-3399 +roomNumber: 8431 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Violante Chaurasia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Violante Chaurasia +sn: Chaurasia +description: This is Violante Chaurasia's description +facsimileTelephoneNumber: +1 818 177-2700 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 398-1185 +title: Supreme Product Development Developer +userPassword: Password1 +uid: ChaurasV +givenName: Violante +mail: ChaurasV@570b2a8b45094bdbb019684431d6e2af.bitwarden.com +carLicense: 5E26YC +departmentNumber: 8528 +employeeType: Normal +homePhone: +1 818 896-3141 +initials: V. C. +mobile: +1 818 306-8914 +pager: +1 818 680-7204 +roomNumber: 8515 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cybill Fragnito +sn: Fragnito +description: This is Cybill Fragnito's description +facsimileTelephoneNumber: +1 818 229-9128 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 818 963-7644 +title: Supreme Human Resources Figurehead +userPassword: Password1 +uid: FragnitC +givenName: Cybill +mail: FragnitC@90c585b5539b419a977fd9fb6fa21443.bitwarden.com +carLicense: Q3SPG5 +departmentNumber: 8843 +employeeType: Employee +homePhone: +1 818 707-9581 +initials: C. F. +mobile: +1 818 659-1125 +pager: +1 818 956-1856 +roomNumber: 9047 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ellen Wetzel +sn: Wetzel +description: This is Ellen Wetzel's description +facsimileTelephoneNumber: +1 408 154-9004 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 408 799-5789 +title: Associate Janitorial Dictator +userPassword: Password1 +uid: WetzelE +givenName: Ellen +mail: WetzelE@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com +carLicense: WB009G +departmentNumber: 4185 +employeeType: Contract +homePhone: +1 408 824-2490 +initials: E. W. +mobile: +1 408 440-7353 +pager: +1 408 831-4088 +roomNumber: 8684 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cynde ParrishBell +sn: ParrishBell +description: This is Cynde ParrishBell's description +facsimileTelephoneNumber: +1 408 936-3735 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 872-5607 +title: Master Human Resources Developer +userPassword: Password1 +uid: ParrishC +givenName: Cynde +mail: ParrishC@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com +carLicense: GD7O9K +departmentNumber: 8201 +employeeType: Normal +homePhone: +1 408 869-2607 +initials: C. P. +mobile: +1 408 845-5674 +pager: +1 408 231-9334 +roomNumber: 9435 +manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Franklin Landry,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franklin Landry +sn: Landry +description: This is Franklin Landry's description +facsimileTelephoneNumber: +1 415 720-5554 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 415 346-8228 +title: Master Janitorial Assistant +userPassword: Password1 +uid: LandryF +givenName: Franklin +mail: LandryF@197bef16e6cb42f3bbfedc909bc4a49d.bitwarden.com +carLicense: 3HLNJN +departmentNumber: 5183 +employeeType: Employee +homePhone: +1 415 157-7769 +initials: F. L. +mobile: +1 415 409-9319 +pager: +1 415 430-9937 +roomNumber: 9634 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rejean Hartsell,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rejean Hartsell +sn: Hartsell +description: This is Rejean Hartsell's description +facsimileTelephoneNumber: +1 510 816-2805 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 510 650-8703 +title: Associate Payroll Technician +userPassword: Password1 +uid: HartselR +givenName: Rejean +mail: HartselR@86262c8a96f6428ca6c85ec378671d82.bitwarden.com +carLicense: TD0WAG +departmentNumber: 4701 +employeeType: Contract +homePhone: +1 510 813-7232 +initials: R. H. +mobile: +1 510 260-9269 +pager: +1 510 615-5504 +roomNumber: 8480 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dyane Schlachter +sn: Schlachter +description: This is Dyane Schlachter's description +facsimileTelephoneNumber: +1 408 205-6028 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 408 315-5538 +title: Chief Human Resources Consultant +userPassword: Password1 +uid: SchlachD +givenName: Dyane +mail: SchlachD@584af194d9e84647b332e4629d64528d.bitwarden.com +carLicense: 2XJFMT +departmentNumber: 8698 +employeeType: Normal +homePhone: +1 408 783-1895 +initials: D. S. +mobile: +1 408 256-3468 +pager: +1 408 202-2366 +roomNumber: 8393 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Crista Reece,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Crista Reece +sn: Reece +description: This is Crista Reece's description +facsimileTelephoneNumber: +1 206 395-5940 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 206 873-2201 +title: Master Product Development Pinhead +userPassword: Password1 +uid: ReeceC +givenName: Crista +mail: ReeceC@68504e0f13984c8c9f4e31aa33c193c8.bitwarden.com +carLicense: CSGCAK +departmentNumber: 6096 +employeeType: Employee +homePhone: +1 206 777-2990 +initials: C. R. +mobile: +1 206 977-5853 +pager: +1 206 481-6259 +roomNumber: 8918 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Apryle Briard,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Apryle Briard +sn: Briard +description: This is Apryle Briard's description +facsimileTelephoneNumber: +1 213 422-3301 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 923-6012 +title: Junior Management Visionary +userPassword: Password1 +uid: BriardA +givenName: Apryle +mail: BriardA@c72f77d8df544dfda8a24066a5992ad2.bitwarden.com +carLicense: T57DPN +departmentNumber: 8266 +employeeType: Contract +homePhone: +1 213 158-7557 +initials: A. B. +mobile: +1 213 522-8222 +pager: +1 213 444-5251 +roomNumber: 9858 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Joni Netas,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joni Netas +sn: Netas +description: This is Joni Netas's description +facsimileTelephoneNumber: +1 818 477-5507 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 646-8866 +title: Chief Management Grunt +userPassword: Password1 +uid: NetasJ +givenName: Joni +mail: NetasJ@35a1311d06994f1e8d741b9b47461442.bitwarden.com +carLicense: P7CDE3 +departmentNumber: 3137 +employeeType: Normal +homePhone: +1 818 272-3350 +initials: J. N. +mobile: +1 818 215-6312 +pager: +1 818 338-8177 +roomNumber: 8411 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nicola Hensen,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicola Hensen +sn: Hensen +description: This is Nicola Hensen's description +facsimileTelephoneNumber: +1 206 289-1942 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 566-3026 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: HensenN +givenName: Nicola +mail: HensenN@9a2d48dfe13f43e0a7df082cbd40535c.bitwarden.com +carLicense: 5698MD +departmentNumber: 9723 +employeeType: Contract +homePhone: +1 206 507-4290 +initials: N. H. +mobile: +1 206 226-1934 +pager: +1 206 662-5015 +roomNumber: 8672 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jagjeet Orol +sn: Orol +description: This is Jagjeet Orol's description +facsimileTelephoneNumber: +1 408 637-4465 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 408 287-8060 +title: Associate Product Testing Figurehead +userPassword: Password1 +uid: OrolJ +givenName: Jagjeet +mail: OrolJ@d0cc080dcb974f719dfa65f1932864b3.bitwarden.com +carLicense: Q2YKSE +departmentNumber: 7202 +employeeType: Employee +homePhone: +1 408 688-5463 +initials: J. O. +mobile: +1 408 868-1136 +pager: +1 408 309-7864 +roomNumber: 8658 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bruce Galasso,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bruce Galasso +sn: Galasso +description: This is Bruce Galasso's description +facsimileTelephoneNumber: +1 818 327-6224 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 689-9099 +title: Junior Human Resources Technician +userPassword: Password1 +uid: GalassoB +givenName: Bruce +mail: GalassoB@6d93f84a8aef4b70975e9d9fd01027a1.bitwarden.com +carLicense: JLF8V5 +departmentNumber: 9734 +employeeType: Normal +homePhone: +1 818 695-2387 +initials: B. G. +mobile: +1 818 316-7748 +pager: +1 818 207-3353 +roomNumber: 8525 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sabah Balkissoon +sn: Balkissoon +description: This is Sabah Balkissoon's description +facsimileTelephoneNumber: +1 818 242-4420 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 416-1853 +title: Chief Product Development Pinhead +userPassword: Password1 +uid: BalkissS +givenName: Sabah +mail: BalkissS@81a2fc82bdcd4a3582b8aa6d409fc9a1.bitwarden.com +carLicense: F1GIB3 +departmentNumber: 7169 +employeeType: Employee +homePhone: +1 818 146-9088 +initials: S. B. +mobile: +1 818 613-2095 +pager: +1 818 203-6376 +roomNumber: 9261 +manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Margeaux Chunn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margeaux Chunn +sn: Chunn +description: This is Margeaux Chunn's description +facsimileTelephoneNumber: +1 213 151-6217 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 213 920-7564 +title: Chief Administrative Stooge +userPassword: Password1 +uid: ChunnM +givenName: Margeaux +mail: ChunnM@47a09a57ddfd44dea0c2830e2bbbf9fe.bitwarden.com +carLicense: N7YQ4C +departmentNumber: 5426 +employeeType: Normal +homePhone: +1 213 637-4349 +initials: M. C. +mobile: +1 213 498-1145 +pager: +1 213 734-7128 +roomNumber: 8870 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Long Esry,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Long Esry +sn: Esry +description: This is Long Esry's description +facsimileTelephoneNumber: +1 804 538-1683 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 804 415-1189 +title: Chief Management Pinhead +userPassword: Password1 +uid: EsryL +givenName: Long +mail: EsryL@290c8e7e8138440babe5064ce0d66502.bitwarden.com +carLicense: WJY0VY +departmentNumber: 6638 +employeeType: Contract +homePhone: +1 804 466-4593 +initials: L. E. +mobile: +1 804 144-8944 +pager: +1 804 913-6107 +roomNumber: 9843 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lynette Brearley,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lynette Brearley +sn: Brearley +description: This is Lynette Brearley's description +facsimileTelephoneNumber: +1 415 200-5300 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 730-9846 +title: Associate Janitorial Grunt +userPassword: Password1 +uid: BrearleL +givenName: Lynette +mail: BrearleL@428ea86de0d24cc293fcc0e69c36a51d.bitwarden.com +carLicense: NHRXI6 +departmentNumber: 5522 +employeeType: Normal +homePhone: +1 415 696-8598 +initials: L. B. +mobile: +1 415 477-7444 +pager: +1 415 868-5880 +roomNumber: 8117 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Birdie Cawley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Birdie Cawley +sn: Cawley +description: This is Birdie Cawley's description +facsimileTelephoneNumber: +1 818 680-9632 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 470-2907 +title: Junior Human Resources Admin +userPassword: Password1 +uid: CawleyB +givenName: Birdie +mail: CawleyB@308ad8d2df924e23912f5ff5c482654c.bitwarden.com +carLicense: 19GFTB +departmentNumber: 3884 +employeeType: Employee +homePhone: +1 818 110-9837 +initials: B. C. +mobile: +1 818 507-1900 +pager: +1 818 296-5969 +roomNumber: 8578 +manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Demetria Borojevic +sn: Borojevic +description: This is Demetria Borojevic's description +facsimileTelephoneNumber: +1 510 156-6361 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 926-5036 +title: Supreme Janitorial President +userPassword: Password1 +uid: BorojevD +givenName: Demetria +mail: BorojevD@0534f193dc3e49e39af35f74a2ae824e.bitwarden.com +carLicense: TS3A6T +departmentNumber: 9594 +employeeType: Normal +homePhone: +1 510 883-9060 +initials: D. B. +mobile: +1 510 546-7466 +pager: +1 510 695-3179 +roomNumber: 9937 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Deana MacNeill,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deana MacNeill +sn: MacNeill +description: This is Deana MacNeill's description +facsimileTelephoneNumber: +1 206 738-2425 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 206 301-1364 +title: Chief Payroll Punk +userPassword: Password1 +uid: MacNeilD +givenName: Deana +mail: MacNeilD@8a2e8c6a93cc4c9691c29760f92509c1.bitwarden.com +carLicense: SK3MAQ +departmentNumber: 8923 +employeeType: Employee +homePhone: +1 206 408-4204 +initials: D. M. +mobile: +1 206 861-7366 +pager: +1 206 747-7703 +roomNumber: 9411 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Afton Tanner,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Afton Tanner +sn: Tanner +description: This is Afton Tanner's description +facsimileTelephoneNumber: +1 213 864-8949 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 195-9197 +title: Chief Human Resources Writer +userPassword: Password1 +uid: TannerA +givenName: Afton +mail: TannerA@dea0182c9b1748ab8a8a0767e4b98659.bitwarden.com +carLicense: 0L4FI1 +departmentNumber: 6667 +employeeType: Contract +homePhone: +1 213 525-1554 +initials: A. T. +mobile: +1 213 787-1852 +pager: +1 213 712-9375 +roomNumber: 8067 +manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sherwyn Dorr +sn: Dorr +description: This is Sherwyn Dorr's description +facsimileTelephoneNumber: +1 804 895-6790 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 548-4333 +title: Associate Human Resources Warrior +userPassword: Password1 +uid: DorrS +givenName: Sherwyn +mail: DorrS@324b0826345f41f396413f010ceddf84.bitwarden.com +carLicense: D9Y93V +departmentNumber: 2011 +employeeType: Contract +homePhone: +1 804 779-2731 +initials: S. D. +mobile: +1 804 354-4846 +pager: +1 804 103-8402 +roomNumber: 9859 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nananne Sheffey +sn: Sheffey +description: This is Nananne Sheffey's description +facsimileTelephoneNumber: +1 213 989-6313 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 213 863-7880 +title: Supreme Janitorial Evangelist +userPassword: Password1 +uid: SheffeyN +givenName: Nananne +mail: SheffeyN@b699e66369ae440b80fffe24208900a7.bitwarden.com +carLicense: E3YMTM +departmentNumber: 1952 +employeeType: Normal +homePhone: +1 213 392-9181 +initials: N. S. +mobile: +1 213 330-2828 +pager: +1 213 839-5254 +roomNumber: 9062 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=JooEuin Peters,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JooEuin Peters +sn: Peters +description: This is JooEuin Peters's description +facsimileTelephoneNumber: +1 408 800-3659 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 408 833-4598 +title: Chief Human Resources Visionary +userPassword: Password1 +uid: PetersJ +givenName: JooEuin +mail: PetersJ@b798af896e7f46128e34697b90918aeb.bitwarden.com +carLicense: MO1K61 +departmentNumber: 3122 +employeeType: Contract +homePhone: +1 408 347-4362 +initials: J. P. +mobile: +1 408 231-1712 +pager: +1 408 900-4788 +roomNumber: 8257 +manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Jordan Normandin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jordan Normandin +sn: Normandin +description: This is Jordan Normandin's description +facsimileTelephoneNumber: +1 206 757-7275 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 706-9573 +title: Junior Administrative Punk +userPassword: Password1 +uid: NormandJ +givenName: Jordan +mail: NormandJ@5888a61aa6564f429dd2584910d49491.bitwarden.com +carLicense: BOL3CN +departmentNumber: 5126 +employeeType: Normal +homePhone: +1 206 650-8496 +initials: J. N. +mobile: +1 206 637-1776 +pager: +1 206 434-2377 +roomNumber: 9341 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Phyllys Glasa +sn: Glasa +description: This is Phyllys Glasa's description +facsimileTelephoneNumber: +1 510 966-7876 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 510 989-9544 +title: Chief Product Testing Punk +userPassword: Password1 +uid: GlasaP +givenName: Phyllys +mail: GlasaP@4504d7b5d7bb4c7c81665aefd8680fbc.bitwarden.com +carLicense: ONOCPS +departmentNumber: 8162 +employeeType: Contract +homePhone: +1 510 178-6526 +initials: P. G. +mobile: +1 510 438-5245 +pager: +1 510 608-1349 +roomNumber: 8888 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Brynna Swanston,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brynna Swanston +sn: Swanston +description: This is Brynna Swanston's description +facsimileTelephoneNumber: +1 408 590-2295 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 933-8415 +title: Supreme Payroll Grunt +userPassword: Password1 +uid: SwanstoB +givenName: Brynna +mail: SwanstoB@273b97d9d3ef49d78a58814ba63e226c.bitwarden.com +carLicense: SK3EKQ +departmentNumber: 1604 +employeeType: Normal +homePhone: +1 408 107-9722 +initials: B. S. +mobile: +1 408 774-4483 +pager: +1 408 677-5289 +roomNumber: 8751 +manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anneliese Bellosa +sn: Bellosa +description: This is Anneliese Bellosa's description +facsimileTelephoneNumber: +1 206 957-5261 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 524-1512 +title: Junior Product Development Manager +userPassword: Password1 +uid: BellosaA +givenName: Anneliese +mail: BellosaA@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com +carLicense: QBSLAW +departmentNumber: 1458 +employeeType: Normal +homePhone: +1 206 576-2973 +initials: A. B. +mobile: +1 206 453-4726 +pager: +1 206 788-1186 +roomNumber: 9717 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Saumitra Svo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saumitra Svo +sn: Svo +description: This is Saumitra Svo's description +facsimileTelephoneNumber: +1 408 751-7923 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 784-1036 +title: Associate Product Development Madonna +userPassword: Password1 +uid: SvoS +givenName: Saumitra +mail: SvoS@1bf120076f9247a7ab75ce12810b0f67.bitwarden.com +carLicense: KFCC19 +departmentNumber: 8979 +employeeType: Contract +homePhone: +1 408 533-5222 +initials: S. S. +mobile: +1 408 934-7800 +pager: +1 408 747-6436 +roomNumber: 9267 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Modestia Hersee,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Modestia Hersee +sn: Hersee +description: This is Modestia Hersee's description +facsimileTelephoneNumber: +1 213 894-2871 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 213 305-6191 +title: Master Administrative Assistant +userPassword: Password1 +uid: HerseeM +givenName: Modestia +mail: HerseeM@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com +carLicense: FX67XJ +departmentNumber: 8975 +employeeType: Normal +homePhone: +1 213 348-5366 +initials: M. H. +mobile: +1 213 587-3226 +pager: +1 213 198-4196 +roomNumber: 8760 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Gretna Ergle,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gretna Ergle +sn: Ergle +description: This is Gretna Ergle's description +facsimileTelephoneNumber: +1 408 753-3261 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 925-5296 +title: Supreme Product Development Admin +userPassword: Password1 +uid: ErgleG +givenName: Gretna +mail: ErgleG@71d3829da9684452bc0895ff673e8847.bitwarden.com +carLicense: 4AROEM +departmentNumber: 4423 +employeeType: Employee +homePhone: +1 408 476-3109 +initials: G. E. +mobile: +1 408 436-1564 +pager: +1 408 272-5131 +roomNumber: 8564 +manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gary Denmark,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gary Denmark +sn: Denmark +description: This is Gary Denmark's description +facsimileTelephoneNumber: +1 206 571-7237 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 836-4217 +title: Master Payroll Grunt +userPassword: Password1 +uid: DenmarkG +givenName: Gary +mail: DenmarkG@07b1787368a34e789ce994f0c32f4345.bitwarden.com +carLicense: ONKMWO +departmentNumber: 5740 +employeeType: Normal +homePhone: +1 206 523-1206 +initials: G. D. +mobile: +1 206 545-9727 +pager: +1 206 474-3479 +roomNumber: 8246 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Fei Isert,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fei Isert +sn: Isert +description: This is Fei Isert's description +facsimileTelephoneNumber: +1 408 459-7017 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 408 362-7132 +title: Master Janitorial Czar +userPassword: Password1 +uid: IsertF +givenName: Fei +mail: IsertF@9e756b675bb74e34850e55cc8a973979.bitwarden.com +carLicense: HWRU16 +departmentNumber: 4248 +employeeType: Normal +homePhone: +1 408 513-9563 +initials: F. I. +mobile: +1 408 517-3916 +pager: +1 408 647-3618 +roomNumber: 9707 +manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Babbette Einarsson +sn: Einarsson +description: This is Babbette Einarsson's description +facsimileTelephoneNumber: +1 206 811-9359 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 206 705-7702 +title: Supreme Product Testing Janitor +userPassword: Password1 +uid: EinarssB +givenName: Babbette +mail: EinarssB@7ce0aeed71954a9186228a48b133b9f4.bitwarden.com +carLicense: DA2A5D +departmentNumber: 3504 +employeeType: Normal +homePhone: +1 206 228-4374 +initials: B. E. +mobile: +1 206 342-4999 +pager: +1 206 932-3959 +roomNumber: 9123 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nomi Deatrick +sn: Deatrick +description: This is Nomi Deatrick's description +facsimileTelephoneNumber: +1 408 685-2105 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 213-9662 +title: Junior Human Resources Technician +userPassword: Password1 +uid: DeatricN +givenName: Nomi +mail: DeatricN@d9c35c3dbb1b4cc08294fcf741816060.bitwarden.com +carLicense: APCTHE +departmentNumber: 1604 +employeeType: Contract +homePhone: +1 408 350-7218 +initials: N. D. +mobile: +1 408 736-4903 +pager: +1 408 646-8841 +roomNumber: 8346 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hiroshi Amouzgar +sn: Amouzgar +description: This is Hiroshi Amouzgar's description +facsimileTelephoneNumber: +1 510 981-1010 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 294-9925 +title: Chief Peons Dictator +userPassword: Password1 +uid: AmouzgaH +givenName: Hiroshi +mail: AmouzgaH@c0bb112b79244d4d83013bcf4b7051b1.bitwarden.com +carLicense: JR7AAN +departmentNumber: 6553 +employeeType: Normal +homePhone: +1 510 454-3327 +initials: H. A. +mobile: +1 510 860-3310 +pager: +1 510 994-1801 +roomNumber: 8086 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernadine Mcilroy +sn: Mcilroy +description: This is Bernadine Mcilroy's description +facsimileTelephoneNumber: +1 408 151-8950 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 407-5855 +title: Junior Janitorial Vice President +userPassword: Password1 +uid: McilroyB +givenName: Bernadine +mail: McilroyB@de96a17ce06e4487ba5f98c80195f121.bitwarden.com +carLicense: 4H1VBJ +departmentNumber: 7871 +employeeType: Employee +homePhone: +1 408 988-5491 +initials: B. M. +mobile: +1 408 943-8002 +pager: +1 408 137-4716 +roomNumber: 8142 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Armand Bebber,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Armand Bebber +sn: Bebber +description: This is Armand Bebber's description +facsimileTelephoneNumber: +1 206 209-5977 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 206 614-6607 +title: Supreme Management Figurehead +userPassword: Password1 +uid: BebberA +givenName: Armand +mail: BebberA@b02e51a832a2451eb62f542aaa4c12e7.bitwarden.com +carLicense: S23AHP +departmentNumber: 2935 +employeeType: Employee +homePhone: +1 206 259-6594 +initials: A. B. +mobile: +1 206 411-9666 +pager: +1 206 813-3337 +roomNumber: 8696 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Virgina Kahnert,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Virgina Kahnert +sn: Kahnert +description: This is Virgina Kahnert's description +facsimileTelephoneNumber: +1 206 871-7040 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 302-8452 +title: Associate Management Fellow +userPassword: Password1 +uid: KahnertV +givenName: Virgina +mail: KahnertV@6b4a8c4f12054500898abbcc69fbe20c.bitwarden.com +carLicense: K7IGJS +departmentNumber: 1866 +employeeType: Employee +homePhone: +1 206 637-3580 +initials: V. K. +mobile: +1 206 878-7467 +pager: +1 206 261-7928 +roomNumber: 9850 +manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Antoni Vickers,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antoni Vickers +sn: Vickers +description: This is Antoni Vickers's description +facsimileTelephoneNumber: +1 415 799-6951 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 934-2073 +title: Master Management Dictator +userPassword: Password1 +uid: VickersA +givenName: Antoni +mail: VickersA@a33324bfbeba45c9aed68650670aad46.bitwarden.com +carLicense: HM0VRR +departmentNumber: 7788 +employeeType: Normal +homePhone: +1 415 167-9812 +initials: A. V. +mobile: +1 415 857-2186 +pager: +1 415 299-2090 +roomNumber: 8529 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dan Telos,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dan Telos +sn: Telos +description: This is Dan Telos's description +facsimileTelephoneNumber: +1 213 851-8810 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 213 520-6197 +title: Associate Payroll Assistant +userPassword: Password1 +uid: TelosD +givenName: Dan +mail: TelosD@6a38182664754d55b0af48acc18ccf15.bitwarden.com +carLicense: 1D5VH7 +departmentNumber: 2049 +employeeType: Normal +homePhone: +1 213 679-7101 +initials: D. T. +mobile: +1 213 827-1979 +pager: +1 213 648-7410 +roomNumber: 8870 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Georgianne Boecke +sn: Boecke +description: This is Georgianne Boecke's description +facsimileTelephoneNumber: +1 818 869-6866 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 818 405-8512 +title: Supreme Human Resources Developer +userPassword: Password1 +uid: BoeckeG +givenName: Georgianne +mail: BoeckeG@0d39953bed12477b8b2344944beb0598.bitwarden.com +carLicense: 36M9S8 +departmentNumber: 3092 +employeeType: Contract +homePhone: +1 818 932-1402 +initials: G. B. +mobile: +1 818 814-9484 +pager: +1 818 925-7560 +roomNumber: 8089 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rory Chan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rory Chan +sn: Chan +description: This is Rory Chan's description +facsimileTelephoneNumber: +1 408 125-5772 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 386-4569 +title: Chief Administrative Punk +userPassword: Password1 +uid: ChanR +givenName: Rory +mail: ChanR@eb68be01f6024473a2ca0fe1f0709934.bitwarden.com +carLicense: KXGSSQ +departmentNumber: 8220 +employeeType: Normal +homePhone: +1 408 195-7837 +initials: R. C. +mobile: +1 408 633-6999 +pager: +1 408 479-3733 +roomNumber: 9855 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juergen Maisonneuve +sn: Maisonneuve +description: This is Juergen Maisonneuve's description +facsimileTelephoneNumber: +1 818 803-5435 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 818 672-8350 +title: Associate Payroll Punk +userPassword: Password1 +uid: MaisonnJ +givenName: Juergen +mail: MaisonnJ@ce606f959aaf4b37a3890f8fbd9f2472.bitwarden.com +carLicense: MRKU2N +departmentNumber: 3891 +employeeType: Contract +homePhone: +1 818 531-9462 +initials: J. M. +mobile: +1 818 722-2813 +pager: +1 818 225-2107 +roomNumber: 8114 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gertrude Senyshyn,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gertrude Senyshyn +sn: Senyshyn +description: This is Gertrude Senyshyn's description +facsimileTelephoneNumber: +1 510 702-4891 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 362-5342 +title: Master Management Figurehead +userPassword: Password1 +uid: SenyshyG +givenName: Gertrude +mail: SenyshyG@566e3f43810e4586a805d84cd5a87397.bitwarden.com +carLicense: WAVT20 +departmentNumber: 2510 +employeeType: Contract +homePhone: +1 510 543-1839 +initials: G. S. +mobile: +1 510 369-8054 +pager: +1 510 717-9719 +roomNumber: 8361 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Missagh Yeh,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Missagh Yeh +sn: Yeh +description: This is Missagh Yeh's description +facsimileTelephoneNumber: +1 408 967-5635 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 408 605-1564 +title: Associate Product Development Pinhead +userPassword: Password1 +uid: YehM +givenName: Missagh +mail: YehM@5c913aa699ee49ff8e754a7b748977ab.bitwarden.com +carLicense: D0GDAN +departmentNumber: 5783 +employeeType: Employee +homePhone: +1 408 856-4817 +initials: M. Y. +mobile: +1 408 614-2666 +pager: +1 408 701-8906 +roomNumber: 8100 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minnie MacDermaid +sn: MacDermaid +description: This is Minnie MacDermaid's description +facsimileTelephoneNumber: +1 415 548-8945 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 218-7290 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: MacDermM +givenName: Minnie +mail: MacDermM@02ce75bcb8d0491f899a2b936126cb22.bitwarden.com +carLicense: YO3EWT +departmentNumber: 4904 +employeeType: Contract +homePhone: +1 415 978-1739 +initials: M. M. +mobile: +1 415 940-6802 +pager: +1 415 461-9288 +roomNumber: 8932 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristiane Lizzi +sn: Lizzi +description: This is Cristiane Lizzi's description +facsimileTelephoneNumber: +1 408 966-3582 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 393-9635 +title: Supreme Janitorial Pinhead +userPassword: Password1 +uid: LizziC +givenName: Cristiane +mail: LizziC@9b989160bc6d49579fbfc8f1e85ccc6c.bitwarden.com +carLicense: JANEDE +departmentNumber: 8907 +employeeType: Normal +homePhone: +1 408 852-2775 +initials: C. L. +mobile: +1 408 119-2811 +pager: +1 408 298-2113 +roomNumber: 9096 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Morganica Ashdown,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morganica Ashdown +sn: Ashdown +description: This is Morganica Ashdown's description +facsimileTelephoneNumber: +1 213 184-6170 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 115-3701 +title: Supreme Management Sales Rep +userPassword: Password1 +uid: AshdownM +givenName: Morganica +mail: AshdownM@44d25c0f3b3b4712b7ef7271475275d8.bitwarden.com +carLicense: QFX5GG +departmentNumber: 7651 +employeeType: Contract +homePhone: +1 213 692-4437 +initials: M. A. +mobile: +1 213 848-2138 +pager: +1 213 122-9711 +roomNumber: 9683 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Joey Moore,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joey Moore +sn: Moore +description: This is Joey Moore's description +facsimileTelephoneNumber: +1 408 723-7302 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 408 617-2024 +title: Associate Peons Dictator +userPassword: Password1 +uid: MooreJ +givenName: Joey +mail: MooreJ@f4a421d551d64acc80985f5e163c5415.bitwarden.com +carLicense: YGVSAX +departmentNumber: 3417 +employeeType: Employee +homePhone: +1 408 558-4391 +initials: J. M. +mobile: +1 408 539-6272 +pager: +1 408 482-3951 +roomNumber: 9236 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rheta Knobloch,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rheta Knobloch +sn: Knobloch +description: This is Rheta Knobloch's description +facsimileTelephoneNumber: +1 213 692-5006 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 213 824-2524 +title: Associate Peons Mascot +userPassword: Password1 +uid: KnoblocR +givenName: Rheta +mail: KnoblocR@b3d11e6744594feeb414ee01bf2eac98.bitwarden.com +carLicense: CXNGY9 +departmentNumber: 4653 +employeeType: Normal +homePhone: +1 213 523-9384 +initials: R. K. +mobile: +1 213 721-3913 +pager: +1 213 595-9092 +roomNumber: 9592 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tesfagaber Kahhale +sn: Kahhale +description: This is Tesfagaber Kahhale's description +facsimileTelephoneNumber: +1 213 950-4475 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 170-4178 +title: Master Product Development Artist +userPassword: Password1 +uid: KahhaleT +givenName: Tesfagaber +mail: KahhaleT@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com +carLicense: CN7LPX +departmentNumber: 5535 +employeeType: Normal +homePhone: +1 213 713-7687 +initials: T. K. +mobile: +1 213 313-5764 +pager: +1 213 621-8581 +roomNumber: 9113 +manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=Far Shupe,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Far Shupe +sn: Shupe +description: This is Far Shupe's description +facsimileTelephoneNumber: +1 510 893-4156 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 510 784-6331 +title: Master Human Resources Technician +userPassword: Password1 +uid: ShupeF +givenName: Far +mail: ShupeF@0f19fa3cc3984923830c48638164b69b.bitwarden.com +carLicense: XX2SKE +departmentNumber: 9232 +employeeType: Employee +homePhone: +1 510 880-2398 +initials: F. S. +mobile: +1 510 713-2661 +pager: +1 510 371-3356 +roomNumber: 9134 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Noni Pauley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noni Pauley +sn: Pauley +description: This is Noni Pauley's description +facsimileTelephoneNumber: +1 213 619-9593 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 213 214-1994 +title: Associate Human Resources Engineer +userPassword: Password1 +uid: PauleyN +givenName: Noni +mail: PauleyN@af48941e4bc546738283cbae39bf8e38.bitwarden.com +carLicense: 1BFXLL +departmentNumber: 3722 +employeeType: Employee +homePhone: +1 213 617-2585 +initials: N. P. +mobile: +1 213 706-1094 +pager: +1 213 621-5502 +roomNumber: 8870 +manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Hera Eike,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hera Eike +sn: Eike +description: This is Hera Eike's description +facsimileTelephoneNumber: +1 408 618-9431 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 925-5872 +title: Master Product Testing Manager +userPassword: Password1 +uid: EikeH +givenName: Hera +mail: EikeH@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com +carLicense: WT1KM4 +departmentNumber: 9382 +employeeType: Employee +homePhone: +1 408 810-9446 +initials: H. E. +mobile: +1 408 257-1095 +pager: +1 408 134-4116 +roomNumber: 9410 +manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melisa Peacemaker,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisa Peacemaker +sn: Peacemaker +description: This is Melisa Peacemaker's description +facsimileTelephoneNumber: +1 213 816-3924 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 646-7661 +title: Chief Management Director +userPassword: Password1 +uid: PeacemaM +givenName: Melisa +mail: PeacemaM@7ae74f35c1ca49719017f2b0cacc9b3c.bitwarden.com +carLicense: PSWROI +departmentNumber: 5061 +employeeType: Employee +homePhone: +1 213 503-3780 +initials: M. P. +mobile: +1 213 581-2996 +pager: +1 213 367-6668 +roomNumber: 8635 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Wylo Woodley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wylo Woodley +sn: Woodley +description: This is Wylo Woodley's description +facsimileTelephoneNumber: +1 213 795-7314 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 213 930-3459 +title: Junior Management Pinhead +userPassword: Password1 +uid: WoodleyW +givenName: Wylo +mail: WoodleyW@c870d166444a452b9465ab41e64ba24a.bitwarden.com +carLicense: 150LLG +departmentNumber: 7700 +employeeType: Employee +homePhone: +1 213 577-5901 +initials: W. W. +mobile: +1 213 429-1884 +pager: +1 213 194-3028 +roomNumber: 8715 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Collette Quevillon,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Collette Quevillon +sn: Quevillon +description: This is Collette Quevillon's description +facsimileTelephoneNumber: +1 206 469-5231 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 599-4525 +title: Chief Human Resources Punk +userPassword: Password1 +uid: QuevillC +givenName: Collette +mail: QuevillC@d8ade951537b40409f7045af7b027387.bitwarden.com +carLicense: J6GM77 +departmentNumber: 1623 +employeeType: Contract +homePhone: +1 206 127-7321 +initials: C. Q. +mobile: +1 206 704-9011 +pager: +1 206 268-3798 +roomNumber: 9628 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shivdarsan Sunderland +sn: Sunderland +description: This is Shivdarsan Sunderland's description +facsimileTelephoneNumber: +1 804 970-3502 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 320-8571 +title: Associate Payroll Engineer +userPassword: Password1 +uid: SunderlS +givenName: Shivdarsan +mail: SunderlS@fc6e03b5bcc94a1489d08dba2fb3849a.bitwarden.com +carLicense: 2VTRCJ +departmentNumber: 8435 +employeeType: Employee +homePhone: +1 804 731-6732 +initials: S. S. +mobile: +1 804 777-7822 +pager: +1 804 536-5407 +roomNumber: 9303 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dayna Kosasih +sn: Kosasih +description: This is Dayna Kosasih's description +facsimileTelephoneNumber: +1 408 682-2169 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 408 766-4289 +title: Supreme Product Testing Czar +userPassword: Password1 +uid: KosasihD +givenName: Dayna +mail: KosasihD@93e4f4c832eb40f5b256fbdf877ac624.bitwarden.com +carLicense: QMYNC8 +departmentNumber: 6449 +employeeType: Employee +homePhone: +1 408 742-6746 +initials: D. K. +mobile: +1 408 662-5047 +pager: +1 408 703-2808 +roomNumber: 8127 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Renelle Ducic,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Renelle Ducic +sn: Ducic +description: This is Renelle Ducic's description +facsimileTelephoneNumber: +1 213 564-3778 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 213 943-6454 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: DucicR +givenName: Renelle +mail: DucicR@c89844059bb741f7bb88e4d7fb7f5f87.bitwarden.com +carLicense: OL1UV0 +departmentNumber: 1696 +employeeType: Normal +homePhone: +1 213 431-1351 +initials: R. D. +mobile: +1 213 522-6889 +pager: +1 213 628-6271 +roomNumber: 9544 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helenka Radovnikovic +sn: Radovnikovic +description: This is Helenka Radovnikovic's description +facsimileTelephoneNumber: +1 510 600-7338 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 884-1136 +title: Supreme Payroll Developer +userPassword: Password1 +uid: RadovniH +givenName: Helenka +mail: RadovniH@2d6d6884b9df4e34bfb750fc0fb4ded8.bitwarden.com +carLicense: PP8XFA +departmentNumber: 1611 +employeeType: Employee +homePhone: +1 510 571-4175 +initials: H. R. +mobile: +1 510 569-4494 +pager: +1 510 694-2988 +roomNumber: 9238 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leena Reijerkerk +sn: Reijerkerk +description: This is Leena Reijerkerk's description +facsimileTelephoneNumber: +1 415 157-5227 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 415 107-2241 +title: Master Administrative Warrior +userPassword: Password1 +uid: ReijerkL +givenName: Leena +mail: ReijerkL@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com +carLicense: 3PKCQE +departmentNumber: 1345 +employeeType: Contract +homePhone: +1 415 751-6706 +initials: L. R. +mobile: +1 415 871-6854 +pager: +1 415 806-9566 +roomNumber: 9142 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruperta Guilford +sn: Guilford +description: This is Ruperta Guilford's description +facsimileTelephoneNumber: +1 206 611-6801 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 206 260-8865 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: GuilforR +givenName: Ruperta +mail: GuilforR@e92792a71a1b4fd28678d03900079ed2.bitwarden.com +carLicense: PS6ITO +departmentNumber: 1148 +employeeType: Normal +homePhone: +1 206 333-3953 +initials: R. G. +mobile: +1 206 764-7779 +pager: +1 206 641-5809 +roomNumber: 9578 +manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ailis Gabe,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailis Gabe +sn: Gabe +description: This is Ailis Gabe's description +facsimileTelephoneNumber: +1 804 330-2392 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 804 351-8465 +title: Junior Human Resources Manager +userPassword: Password1 +uid: GabeA +givenName: Ailis +mail: GabeA@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com +carLicense: 4R8M8L +departmentNumber: 3414 +employeeType: Normal +homePhone: +1 804 732-4164 +initials: A. G. +mobile: +1 804 132-1301 +pager: +1 804 641-5785 +roomNumber: 9507 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Selena Sanoy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Selena Sanoy +sn: Sanoy +description: This is Selena Sanoy's description +facsimileTelephoneNumber: +1 408 542-5938 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 408 316-8692 +title: Chief Human Resources Director +userPassword: Password1 +uid: SanoyS +givenName: Selena +mail: SanoyS@05f7379ac7b945a2a2343b19ee63fd8a.bitwarden.com +carLicense: CVIFWK +departmentNumber: 2175 +employeeType: Employee +homePhone: +1 408 876-3878 +initials: S. S. +mobile: +1 408 742-5797 +pager: +1 408 234-4634 +roomNumber: 8227 +manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com + +dn: cn=Electra Hassold,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Electra Hassold +sn: Hassold +description: This is Electra Hassold's description +facsimileTelephoneNumber: +1 804 192-8843 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 804 326-2470 +title: Chief Administrative Figurehead +userPassword: Password1 +uid: HassoldE +givenName: Electra +mail: HassoldE@159b400ec7df422e9066036fd18c450c.bitwarden.com +carLicense: ACCSO0 +departmentNumber: 9604 +employeeType: Normal +homePhone: +1 804 291-2710 +initials: E. H. +mobile: +1 804 947-9645 +pager: +1 804 117-6769 +roomNumber: 9853 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Terry Johnston,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terry Johnston +sn: Johnston +description: This is Terry Johnston's description +facsimileTelephoneNumber: +1 415 981-6669 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 615-9422 +title: Master Janitorial President +userPassword: Password1 +uid: JohnstoT +givenName: Terry +mail: JohnstoT@d37e812441464f08ac2750e113db6273.bitwarden.com +carLicense: L495NI +departmentNumber: 7389 +employeeType: Contract +homePhone: +1 415 933-1504 +initials: T. J. +mobile: +1 415 657-4304 +pager: +1 415 144-2138 +roomNumber: 9828 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Franny Towill,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franny Towill +sn: Towill +description: This is Franny Towill's description +facsimileTelephoneNumber: +1 510 718-4719 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 727-5575 +title: Supreme Product Development Sales Rep +userPassword: Password1 +uid: TowillF +givenName: Franny +mail: TowillF@08eacc9f081b46aa9b5cc2682b8df342.bitwarden.com +carLicense: 0SJI4F +departmentNumber: 1109 +employeeType: Contract +homePhone: +1 510 258-1932 +initials: F. T. +mobile: +1 510 164-7383 +pager: +1 510 521-2407 +roomNumber: 9598 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacqueline Godowsky +sn: Godowsky +description: This is Jacqueline Godowsky's description +facsimileTelephoneNumber: +1 804 688-2905 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 804 511-5618 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: GodowskJ +givenName: Jacqueline +mail: GodowskJ@d5d81ed9dfd74923bfc76f6eb5eeb481.bitwarden.com +carLicense: RJ2M68 +departmentNumber: 8221 +employeeType: Employee +homePhone: +1 804 280-5456 +initials: J. G. +mobile: +1 804 644-9843 +pager: +1 804 915-6536 +roomNumber: 9541 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guanyun Satkunaseelan +sn: Satkunaseelan +description: This is Guanyun Satkunaseelan's description +facsimileTelephoneNumber: +1 818 543-5223 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 818 592-8623 +title: Associate Janitorial Vice President +userPassword: Password1 +uid: SatkunaG +givenName: Guanyun +mail: SatkunaG@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com +carLicense: 05PH02 +departmentNumber: 7593 +employeeType: Contract +homePhone: +1 818 799-9546 +initials: G. S. +mobile: +1 818 268-9235 +pager: +1 818 862-5642 +roomNumber: 8911 +manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Duquette Pratt,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Duquette Pratt +sn: Pratt +description: This is Duquette Pratt's description +facsimileTelephoneNumber: +1 415 728-6454 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 415 583-1043 +title: Junior Payroll Czar +userPassword: Password1 +uid: PrattD +givenName: Duquette +mail: PrattD@95581eb6a8bb49808363d11bfe34de80.bitwarden.com +carLicense: OJLBMK +departmentNumber: 2501 +employeeType: Contract +homePhone: +1 415 785-8515 +initials: D. P. +mobile: +1 415 444-3453 +pager: +1 415 472-5025 +roomNumber: 8859 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsy Aderhold +sn: Aderhold +description: This is Chelsy Aderhold's description +facsimileTelephoneNumber: +1 206 923-5567 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 206 307-4926 +title: Master Human Resources Architect +userPassword: Password1 +uid: AderholC +givenName: Chelsy +mail: AderholC@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com +carLicense: JSDNKQ +departmentNumber: 2842 +employeeType: Normal +homePhone: +1 206 927-9074 +initials: C. A. +mobile: +1 206 183-5440 +pager: +1 206 384-5056 +roomNumber: 9643 +manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Alb Hussein,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alb Hussein +sn: Hussein +description: This is Alb Hussein's description +facsimileTelephoneNumber: +1 213 975-2279 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 213 944-2785 +title: Master Administrative Developer +userPassword: Password1 +uid: HusseinA +givenName: Alb +mail: HusseinA@cd959caf747140188faf96b58d108003.bitwarden.com +carLicense: GL1EPD +departmentNumber: 8366 +employeeType: Employee +homePhone: +1 213 821-8761 +initials: A. H. +mobile: +1 213 827-8297 +pager: +1 213 466-1727 +roomNumber: 9821 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sam Ference,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sam Ference +sn: Ference +description: This is Sam Ference's description +facsimileTelephoneNumber: +1 206 713-1413 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 870-3110 +title: Junior Product Testing Czar +userPassword: Password1 +uid: FerenceS +givenName: Sam +mail: FerenceS@80b32d7e2c334eb6876146c942d4c564.bitwarden.com +carLicense: 0DDCNG +departmentNumber: 6467 +employeeType: Employee +homePhone: +1 206 173-1778 +initials: S. F. +mobile: +1 206 592-9983 +pager: +1 206 730-7159 +roomNumber: 8312 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yukinobu Riebl,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yukinobu Riebl +sn: Riebl +description: This is Yukinobu Riebl's description +facsimileTelephoneNumber: +1 206 422-4729 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 206 456-6259 +title: Associate Peons Architect +userPassword: Password1 +uid: RieblY +givenName: Yukinobu +mail: RieblY@72030161dcd24217be14766e527d14fa.bitwarden.com +carLicense: 8BFJTW +departmentNumber: 9691 +employeeType: Normal +homePhone: +1 206 683-8403 +initials: Y. R. +mobile: +1 206 397-1368 +pager: +1 206 164-1446 +roomNumber: 9933 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Tarus Hillard,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tarus Hillard +sn: Hillard +description: This is Tarus Hillard's description +facsimileTelephoneNumber: +1 213 976-9509 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 296-7765 +title: Associate Product Development Grunt +userPassword: Password1 +uid: HillardT +givenName: Tarus +mail: HillardT@a80cec7586b34ab8b14925cae24221e2.bitwarden.com +carLicense: AKY2V7 +departmentNumber: 1100 +employeeType: Contract +homePhone: +1 213 720-9338 +initials: T. H. +mobile: +1 213 617-5489 +pager: +1 213 426-8948 +roomNumber: 8390 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ramonda Lott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ramonda Lott +sn: Lott +description: This is Ramonda Lott's description +facsimileTelephoneNumber: +1 818 874-4783 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 233-5668 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: LottR +givenName: Ramonda +mail: LottR@9092ac0216724776b99f389469a93c29.bitwarden.com +carLicense: 1BKLFK +departmentNumber: 1844 +employeeType: Contract +homePhone: +1 818 766-4164 +initials: R. L. +mobile: +1 818 779-8456 +pager: +1 818 782-5813 +roomNumber: 8381 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jen EhningerCuervo +sn: EhningerCuervo +description: This is Jen EhningerCuervo's description +facsimileTelephoneNumber: +1 408 500-6848 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 387-8690 +title: Master Payroll Stooge +userPassword: Password1 +uid: EhningeJ +givenName: Jen +mail: EhningeJ@098e681e17464ddaaa4b5aa6ff614551.bitwarden.com +carLicense: 7RXTAD +departmentNumber: 4282 +employeeType: Normal +homePhone: +1 408 438-2805 +initials: J. E. +mobile: +1 408 545-9599 +pager: +1 408 829-1859 +roomNumber: 8866 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Anitra Arora,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anitra Arora +sn: Arora +description: This is Anitra Arora's description +facsimileTelephoneNumber: +1 408 185-2430 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 504-5927 +title: Chief Payroll Grunt +userPassword: Password1 +uid: AroraA +givenName: Anitra +mail: AroraA@f42de10624ae405d913d9b34565ffc09.bitwarden.com +carLicense: 8R8EI9 +departmentNumber: 3736 +employeeType: Normal +homePhone: +1 408 661-3156 +initials: A. A. +mobile: +1 408 236-9821 +pager: +1 408 400-5413 +roomNumber: 8564 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Natalee Tousignant +sn: Tousignant +description: This is Natalee Tousignant's description +facsimileTelephoneNumber: +1 213 143-6903 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 213 736-8658 +title: Chief Product Testing Artist +userPassword: Password1 +uid: TousignN +givenName: Natalee +mail: TousignN@abb5d6aab45f41aea925c272cfd268d5.bitwarden.com +carLicense: FDV9SP +departmentNumber: 2013 +employeeType: Contract +homePhone: +1 213 127-8871 +initials: N. T. +mobile: +1 213 557-2862 +pager: +1 213 478-1324 +roomNumber: 9683 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sonja Tohama,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sonja Tohama +sn: Tohama +description: This is Sonja Tohama's description +facsimileTelephoneNumber: +1 510 391-6583 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 510 551-5781 +title: Chief Peons Punk +userPassword: Password1 +uid: TohamaS +givenName: Sonja +mail: TohamaS@c3ea2e07159b4059b3afc3ddc88034c1.bitwarden.com +carLicense: MIH0QJ +departmentNumber: 3383 +employeeType: Normal +homePhone: +1 510 200-1699 +initials: S. T. +mobile: +1 510 724-5384 +pager: +1 510 119-6793 +roomNumber: 8403 +manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Rycca Bloemker,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rycca Bloemker +sn: Bloemker +description: This is Rycca Bloemker's description +facsimileTelephoneNumber: +1 804 924-4920 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 804 911-5380 +title: Master Administrative Punk +userPassword: Password1 +uid: BloemkeR +givenName: Rycca +mail: BloemkeR@cdfacd88fafe4ba8970bb7d5170496d3.bitwarden.com +carLicense: OFJD7Q +departmentNumber: 7996 +employeeType: Employee +homePhone: +1 804 183-7531 +initials: R. B. +mobile: +1 804 708-3523 +pager: +1 804 395-2428 +roomNumber: 9792 +manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Joydeep Elledge,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joydeep Elledge +sn: Elledge +description: This is Joydeep Elledge's description +facsimileTelephoneNumber: +1 213 623-4013 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 996-1839 +title: Junior Peons Developer +userPassword: Password1 +uid: ElledgeJ +givenName: Joydeep +mail: ElledgeJ@5f4045bbd5c44c0b997bde75dafd864c.bitwarden.com +carLicense: 0X3CTF +departmentNumber: 1723 +employeeType: Contract +homePhone: +1 213 197-7251 +initials: J. E. +mobile: +1 213 648-2337 +pager: +1 213 898-5310 +roomNumber: 8479 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sorcha Umetsu +sn: Umetsu +description: This is Sorcha Umetsu's description +facsimileTelephoneNumber: +1 408 391-1446 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 866-1781 +title: Master Administrative Mascot +userPassword: Password1 +uid: UmetsuS +givenName: Sorcha +mail: UmetsuS@913917cd10c1410fb1c6287add8a017a.bitwarden.com +carLicense: C4C15Q +departmentNumber: 5898 +employeeType: Normal +homePhone: +1 408 787-6432 +initials: S. U. +mobile: +1 408 480-7468 +pager: +1 408 500-2334 +roomNumber: 9183 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Silvie Nevardauskis,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silvie Nevardauskis +sn: Nevardauskis +description: This is Silvie Nevardauskis's description +facsimileTelephoneNumber: +1 804 366-5701 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 593-8549 +title: Associate Management Warrior +userPassword: Password1 +uid: NevardaS +givenName: Silvie +mail: NevardaS@0f20bc491a46484db42d8b650f7e698d.bitwarden.com +carLicense: QFYTAE +departmentNumber: 2004 +employeeType: Contract +homePhone: +1 804 378-8464 +initials: S. N. +mobile: +1 804 169-5522 +pager: +1 804 314-8385 +roomNumber: 9724 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ilene Curnow,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ilene Curnow +sn: Curnow +description: This is Ilene Curnow's description +facsimileTelephoneNumber: +1 415 896-9863 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 725-1289 +title: Chief Product Development Assistant +userPassword: Password1 +uid: CurnowI +givenName: Ilene +mail: CurnowI@ec8a28f7df2f4b4a9a8f12cccd975869.bitwarden.com +carLicense: HS597A +departmentNumber: 7925 +employeeType: Employee +homePhone: +1 415 885-2489 +initials: I. C. +mobile: +1 415 475-4919 +pager: +1 415 111-5956 +roomNumber: 8704 +manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ailee Sudbey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailee Sudbey +sn: Sudbey +description: This is Ailee Sudbey's description +facsimileTelephoneNumber: +1 415 713-3992 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 415 873-2304 +title: Chief Management Visionary +userPassword: Password1 +uid: SudbeyA +givenName: Ailee +mail: SudbeyA@953969dd8e824fa6843e718cd3751626.bitwarden.com +carLicense: NEBUP2 +departmentNumber: 1089 +employeeType: Contract +homePhone: +1 415 440-5192 +initials: A. S. +mobile: +1 415 472-7229 +pager: +1 415 560-5901 +roomNumber: 9531 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Maarten Mejia,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maarten Mejia +sn: Mejia +description: This is Maarten Mejia's description +facsimileTelephoneNumber: +1 510 855-4724 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 510 910-7747 +title: Associate Administrative Fellow +userPassword: Password1 +uid: MejiaM +givenName: Maarten +mail: MejiaM@ba4cd38fdb404f248c82c6d86153d0e8.bitwarden.com +carLicense: 6GM6IH +departmentNumber: 7296 +employeeType: Contract +homePhone: +1 510 175-3249 +initials: M. M. +mobile: +1 510 359-8294 +pager: +1 510 982-4837 +roomNumber: 9510 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=PierreAndre Abbate,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PierreAndre Abbate +sn: Abbate +description: This is PierreAndre Abbate's description +facsimileTelephoneNumber: +1 818 351-5218 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 818 322-6375 +title: Master Peons Warrior +userPassword: Password1 +uid: AbbateP +givenName: PierreAndre +mail: AbbateP@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com +carLicense: CD1C7C +departmentNumber: 2577 +employeeType: Normal +homePhone: +1 818 471-8211 +initials: P. A. +mobile: +1 818 963-3859 +pager: +1 818 486-1600 +roomNumber: 9472 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kizzie Adey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kizzie Adey +sn: Adey +description: This is Kizzie Adey's description +facsimileTelephoneNumber: +1 408 625-9645 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 939-3688 +title: Supreme Product Development Visionary +userPassword: Password1 +uid: AdeyK +givenName: Kizzie +mail: AdeyK@aa04f1225a3142f7b6d7d981c171a9da.bitwarden.com +carLicense: 7NFN9X +departmentNumber: 2416 +employeeType: Contract +homePhone: +1 408 348-2212 +initials: K. A. +mobile: +1 408 769-4548 +pager: +1 408 192-5099 +roomNumber: 9716 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Krystn Skerlak,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Krystn Skerlak +sn: Skerlak +description: This is Krystn Skerlak's description +facsimileTelephoneNumber: +1 415 346-8191 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 415 552-4588 +title: Associate Administrative Stooge +userPassword: Password1 +uid: SkerlakK +givenName: Krystn +mail: SkerlakK@fc85f8e4436a4774ae1c7ec792457997.bitwarden.com +carLicense: FQ9QC9 +departmentNumber: 3153 +employeeType: Normal +homePhone: +1 415 536-6332 +initials: K. S. +mobile: +1 415 646-4998 +pager: +1 415 560-9523 +roomNumber: 9859 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bosiljka Braginetz +sn: Braginetz +description: This is Bosiljka Braginetz's description +facsimileTelephoneNumber: +1 206 981-5442 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 206 656-8339 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: BragineB +givenName: Bosiljka +mail: BragineB@2674a7c4cfa741269519e72fdf975394.bitwarden.com +carLicense: HD5G4O +departmentNumber: 9267 +employeeType: Contract +homePhone: +1 206 176-4766 +initials: B. B. +mobile: +1 206 377-8145 +pager: +1 206 415-1184 +roomNumber: 8068 +manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kailey Southon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kailey Southon +sn: Southon +description: This is Kailey Southon's description +facsimileTelephoneNumber: +1 804 696-6484 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 804 787-3353 +title: Associate Administrative Fellow +userPassword: Password1 +uid: SouthonK +givenName: Kailey +mail: SouthonK@1bc81f639d7b4a75a6776b919ea7ed35.bitwarden.com +carLicense: YS6IB7 +departmentNumber: 8386 +employeeType: Contract +homePhone: +1 804 110-6353 +initials: K. S. +mobile: +1 804 534-8776 +pager: +1 804 523-2031 +roomNumber: 9607 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=PohSoon Corpening,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PohSoon Corpening +sn: Corpening +description: This is PohSoon Corpening's description +facsimileTelephoneNumber: +1 415 901-1893 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 415 839-5239 +title: Chief Payroll Sales Rep +userPassword: Password1 +uid: CorpeniP +givenName: PohSoon +mail: CorpeniP@cb8c25a6f9d34eadb38ab3240d4f1b15.bitwarden.com +carLicense: 811R3K +departmentNumber: 8742 +employeeType: Normal +homePhone: +1 415 525-6635 +initials: P. C. +mobile: +1 415 748-1537 +pager: +1 415 401-3425 +roomNumber: 9982 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Cissy Systest,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cissy Systest +sn: Systest +description: This is Cissy Systest's description +facsimileTelephoneNumber: +1 510 658-4926 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 413-1863 +title: Supreme Management Sales Rep +userPassword: Password1 +uid: SystestC +givenName: Cissy +mail: SystestC@96705dd7d66249d08ee808bb87068456.bitwarden.com +carLicense: 9WGMNB +departmentNumber: 6675 +employeeType: Contract +homePhone: +1 510 339-9140 +initials: C. S. +mobile: +1 510 258-9005 +pager: +1 510 880-7544 +roomNumber: 8590 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ailee Garry,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ailee Garry +sn: Garry +description: This is Ailee Garry's description +facsimileTelephoneNumber: +1 804 545-4382 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 804 923-7104 +title: Master Human Resources Consultant +userPassword: Password1 +uid: GarryA +givenName: Ailee +mail: GarryA@e8711dcc34d6494b9af82b382ecdea7d.bitwarden.com +carLicense: H3IRX7 +departmentNumber: 1123 +employeeType: Employee +homePhone: +1 804 681-6864 +initials: A. G. +mobile: +1 804 114-1315 +pager: +1 804 690-2557 +roomNumber: 8320 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Juliet Goyal,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juliet Goyal +sn: Goyal +description: This is Juliet Goyal's description +facsimileTelephoneNumber: +1 804 488-5293 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 804 597-2509 +title: Supreme Product Testing Dictator +userPassword: Password1 +uid: GoyalJ +givenName: Juliet +mail: GoyalJ@85b2024b914940b3b4bc6a5df6e6c822.bitwarden.com +carLicense: Y3WPFG +departmentNumber: 6720 +employeeType: Contract +homePhone: +1 804 610-9856 +initials: J. G. +mobile: +1 804 305-4209 +pager: +1 804 514-8923 +roomNumber: 8731 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gleda Carldata,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gleda Carldata +sn: Carldata +description: This is Gleda Carldata's description +facsimileTelephoneNumber: +1 818 817-3085 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 818 666-6046 +title: Junior Payroll Admin +userPassword: Password1 +uid: CarldatG +givenName: Gleda +mail: CarldatG@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com +carLicense: V5KGYO +departmentNumber: 7718 +employeeType: Contract +homePhone: +1 818 677-4852 +initials: G. C. +mobile: +1 818 603-5746 +pager: +1 818 835-6436 +roomNumber: 8544 +manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elane Latour,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elane Latour +sn: Latour +description: This is Elane Latour's description +facsimileTelephoneNumber: +1 408 907-2009 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 408 957-2603 +title: Junior Human Resources Warrior +userPassword: Password1 +uid: LatourE +givenName: Elane +mail: LatourE@bf0924ca7ffa40efa64182b434d3b054.bitwarden.com +carLicense: P9CDTU +departmentNumber: 8344 +employeeType: Contract +homePhone: +1 408 521-9564 +initials: E. L. +mobile: +1 408 312-5518 +pager: +1 408 531-7870 +roomNumber: 8851 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Matt Sharman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Matt Sharman +sn: Sharman +description: This is Matt Sharman's description +facsimileTelephoneNumber: +1 213 269-8866 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 213 950-2511 +title: Supreme Peons Artist +userPassword: Password1 +uid: SharmanM +givenName: Matt +mail: SharmanM@8455fc0dd08e47d9b5acf4e37eea1485.bitwarden.com +carLicense: VBGNDL +departmentNumber: 7829 +employeeType: Contract +homePhone: +1 213 727-9668 +initials: M. S. +mobile: +1 213 875-7158 +pager: +1 213 874-6660 +roomNumber: 9432 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aparna Lauriston +sn: Lauriston +description: This is Aparna Lauriston's description +facsimileTelephoneNumber: +1 408 523-4054 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 408 164-5177 +title: Master Human Resources Stooge +userPassword: Password1 +uid: LauristA +givenName: Aparna +mail: LauristA@13ff1430cb9943818286488abb33cd82.bitwarden.com +carLicense: 90XRTD +departmentNumber: 5894 +employeeType: Employee +homePhone: +1 408 625-9661 +initials: A. L. +mobile: +1 408 826-7936 +pager: +1 408 190-1329 +roomNumber: 9155 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shelley Shamblin +sn: Shamblin +description: This is Shelley Shamblin's description +facsimileTelephoneNumber: +1 804 445-6166 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 804 727-2162 +title: Associate Product Testing Punk +userPassword: Password1 +uid: ShambliS +givenName: Shelley +mail: ShambliS@7a1388ca21ac40f49e6770963202dbc7.bitwarden.com +carLicense: H7QVJI +departmentNumber: 4498 +employeeType: Normal +homePhone: +1 804 294-1174 +initials: S. S. +mobile: +1 804 169-6168 +pager: +1 804 200-7515 +roomNumber: 8965 +manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Violante Moomey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Violante Moomey +sn: Moomey +description: This is Violante Moomey's description +facsimileTelephoneNumber: +1 415 340-1065 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 516-9808 +title: Associate Payroll Figurehead +userPassword: Password1 +uid: MoomeyV +givenName: Violante +mail: MoomeyV@c26335dd55544c05ae4c2fc1f3eeffc9.bitwarden.com +carLicense: 3SLEF6 +departmentNumber: 6329 +employeeType: Contract +homePhone: +1 415 259-7418 +initials: V. M. +mobile: +1 415 115-4609 +pager: +1 415 766-2071 +roomNumber: 8371 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Valery Howell,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valery Howell +sn: Howell +description: This is Valery Howell's description +facsimileTelephoneNumber: +1 415 742-1505 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 415 508-5353 +title: Chief Management Fellow +userPassword: Password1 +uid: HowellV +givenName: Valery +mail: HowellV@55ccff73a37c4e769e4ec261e5ec528f.bitwarden.com +carLicense: E87CT8 +departmentNumber: 4667 +employeeType: Contract +homePhone: +1 415 879-9010 +initials: V. H. +mobile: +1 415 540-7825 +pager: +1 415 720-1989 +roomNumber: 8553 +manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lorri Fontanini,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorri Fontanini +sn: Fontanini +description: This is Lorri Fontanini's description +facsimileTelephoneNumber: +1 804 564-1652 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 804 843-1613 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: FontaniL +givenName: Lorri +mail: FontaniL@364738d989114590842291a79ecffd92.bitwarden.com +carLicense: 3LI1BO +departmentNumber: 9453 +employeeType: Employee +homePhone: +1 804 327-7764 +initials: L. F. +mobile: +1 804 687-4602 +pager: +1 804 110-9805 +roomNumber: 9125 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com + +dn: cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Frieda Daigneault +sn: Daigneault +description: This is Frieda Daigneault's description +facsimileTelephoneNumber: +1 818 332-7035 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 191-9729 +title: Supreme Human Resources Janitor +userPassword: Password1 +uid: DaigneaF +givenName: Frieda +mail: DaigneaF@601752671ede409e9d90ea7a410ff21e.bitwarden.com +carLicense: FNETBR +departmentNumber: 9728 +employeeType: Normal +homePhone: +1 818 615-5888 +initials: F. D. +mobile: +1 818 970-2310 +pager: +1 818 387-2256 +roomNumber: 8930 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shandee Bnrlsi +sn: Bnrlsi +description: This is Shandee Bnrlsi's description +facsimileTelephoneNumber: +1 510 975-6531 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 769-3859 +title: Junior Janitorial Evangelist +userPassword: Password1 +uid: BnrlsiS +givenName: Shandee +mail: BnrlsiS@a978666c2277497faaff3d19bd9575e3.bitwarden.com +carLicense: YXIIVR +departmentNumber: 7572 +employeeType: Employee +homePhone: +1 510 524-2373 +initials: S. B. +mobile: +1 510 812-3900 +pager: +1 510 225-7768 +roomNumber: 8719 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odelia Squizzato +sn: Squizzato +description: This is Odelia Squizzato's description +facsimileTelephoneNumber: +1 510 935-2486 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 510 610-7843 +title: Chief Human Resources Pinhead +userPassword: Password1 +uid: SquizzaO +givenName: Odelia +mail: SquizzaO@556b8709dd59455493d3a037cd03b5fa.bitwarden.com +carLicense: O7IUUC +departmentNumber: 2773 +employeeType: Employee +homePhone: +1 510 859-5674 +initials: O. S. +mobile: +1 510 994-3460 +pager: +1 510 366-7907 +roomNumber: 8868 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ivette Frantz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ivette Frantz +sn: Frantz +description: This is Ivette Frantz's description +facsimileTelephoneNumber: +1 206 629-9773 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 206 221-4306 +title: Associate Payroll Madonna +userPassword: Password1 +uid: FrantzI +givenName: Ivette +mail: FrantzI@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com +carLicense: AIG3IL +departmentNumber: 1474 +employeeType: Employee +homePhone: +1 206 424-7613 +initials: I. F. +mobile: +1 206 595-5051 +pager: +1 206 287-2641 +roomNumber: 9357 +manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cyndie Mohideen,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cyndie Mohideen +sn: Mohideen +description: This is Cyndie Mohideen's description +facsimileTelephoneNumber: +1 510 928-9078 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 762-1627 +title: Associate Management Artist +userPassword: Password1 +uid: MohideeC +givenName: Cyndie +mail: MohideeC@f721dbef06364385bb5bd030d8447566.bitwarden.com +carLicense: 5IQYUW +departmentNumber: 3633 +employeeType: Normal +homePhone: +1 510 143-2383 +initials: C. M. +mobile: +1 510 799-9749 +pager: +1 510 149-6635 +roomNumber: 9813 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hyacinthie Hurwitz +sn: Hurwitz +description: This is Hyacinthie Hurwitz's description +facsimileTelephoneNumber: +1 408 585-8927 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 408 440-8440 +title: Chief Administrative Evangelist +userPassword: Password1 +uid: HurwitzH +givenName: Hyacinthie +mail: HurwitzH@f7fa81d9317e47ad8fbf83696ed935e8.bitwarden.com +carLicense: JG0L1G +departmentNumber: 7418 +employeeType: Normal +homePhone: +1 408 473-7712 +initials: H. H. +mobile: +1 408 878-7881 +pager: +1 408 561-1752 +roomNumber: 8688 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ardine Grimm,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ardine Grimm +sn: Grimm +description: This is Ardine Grimm's description +facsimileTelephoneNumber: +1 818 947-1669 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 818 910-3277 +title: Chief Peons Assistant +userPassword: Password1 +uid: GrimmA +givenName: Ardine +mail: GrimmA@697132edecc44b08a924e05590de1c19.bitwarden.com +carLicense: 09JEF7 +departmentNumber: 5837 +employeeType: Normal +homePhone: +1 818 296-6080 +initials: A. G. +mobile: +1 818 915-5799 +pager: +1 818 637-7635 +roomNumber: 9606 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Raine Capps,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raine Capps +sn: Capps +description: This is Raine Capps's description +facsimileTelephoneNumber: +1 818 924-6195 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 818 478-4906 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: CappsR +givenName: Raine +mail: CappsR@d71da34df9024aaf8ef124f781734513.bitwarden.com +carLicense: F57V9T +departmentNumber: 7450 +employeeType: Contract +homePhone: +1 818 699-8846 +initials: R. C. +mobile: +1 818 968-4164 +pager: +1 818 401-8265 +roomNumber: 9717 +manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanDenis Govindarajan +sn: Govindarajan +description: This is JeanDenis Govindarajan's description +facsimileTelephoneNumber: +1 206 227-6568 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 206 110-7844 +title: Supreme Administrative Punk +userPassword: Password1 +uid: GovindaJ +givenName: JeanDenis +mail: GovindaJ@77dbd1cf021243c180e2be10461d9b3a.bitwarden.com +carLicense: 7M14AI +departmentNumber: 7355 +employeeType: Contract +homePhone: +1 206 162-9658 +initials: J. G. +mobile: +1 206 188-6652 +pager: +1 206 791-4738 +roomNumber: 9200 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Skyler Khurana,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Skyler Khurana +sn: Khurana +description: This is Skyler Khurana's description +facsimileTelephoneNumber: +1 213 958-6147 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 722-5881 +title: Master Administrative Evangelist +userPassword: Password1 +uid: KhuranaS +givenName: Skyler +mail: KhuranaS@4160dbb07b29483d98d27e9c15a9e3bd.bitwarden.com +carLicense: 8GKNF6 +departmentNumber: 5489 +employeeType: Employee +homePhone: +1 213 419-4888 +initials: S. K. +mobile: +1 213 514-5859 +pager: +1 213 750-4834 +roomNumber: 9650 +manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxana Beaudin +sn: Beaudin +description: This is Roxana Beaudin's description +facsimileTelephoneNumber: +1 804 735-5108 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 572-4179 +title: Associate Human Resources Architect +userPassword: Password1 +uid: BeaudinR +givenName: Roxana +mail: BeaudinR@668a7be7467f426eaa481fcc0af0008d.bitwarden.com +carLicense: 9T5GV9 +departmentNumber: 5609 +employeeType: Employee +homePhone: +1 804 171-7236 +initials: R. B. +mobile: +1 804 617-2477 +pager: +1 804 283-7888 +roomNumber: 9594 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ninon Pillsworth +sn: Pillsworth +description: This is Ninon Pillsworth's description +facsimileTelephoneNumber: +1 213 786-3127 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 213 765-8957 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: PillswoN +givenName: Ninon +mail: PillswoN@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com +carLicense: RJYM8W +departmentNumber: 1894 +employeeType: Normal +homePhone: +1 213 218-2247 +initials: N. P. +mobile: +1 213 636-8148 +pager: +1 213 742-6007 +roomNumber: 8814 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kris Warfel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kris Warfel +sn: Warfel +description: This is Kris Warfel's description +facsimileTelephoneNumber: +1 510 761-1909 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 510 476-1233 +title: Associate Management Grunt +userPassword: Password1 +uid: WarfelK +givenName: Kris +mail: WarfelK@a58f1d89c8df4bb585be88ea46688614.bitwarden.com +carLicense: KO9N80 +departmentNumber: 3930 +employeeType: Contract +homePhone: +1 510 285-4588 +initials: K. W. +mobile: +1 510 556-1517 +pager: +1 510 358-6759 +roomNumber: 8166 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Johnny Moorcroft +sn: Moorcroft +description: This is Johnny Moorcroft's description +facsimileTelephoneNumber: +1 206 275-4219 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 206 313-2012 +title: Master Administrative Fellow +userPassword: Password1 +uid: MoorcroJ +givenName: Johnny +mail: MoorcroJ@fb51e4746fc04473a7bebe9c1a3d6645.bitwarden.com +carLicense: 842533 +departmentNumber: 3128 +employeeType: Employee +homePhone: +1 206 181-3556 +initials: J. M. +mobile: +1 206 442-7971 +pager: +1 206 169-8769 +roomNumber: 9809 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ruby Stansbury,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruby Stansbury +sn: Stansbury +description: This is Ruby Stansbury's description +facsimileTelephoneNumber: +1 206 614-5328 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 206 620-2975 +title: Junior Administrative Manager +userPassword: Password1 +uid: StansbuR +givenName: Ruby +mail: StansbuR@6fae91be06034397b93a1b498797d995.bitwarden.com +carLicense: KGA6IJ +departmentNumber: 6209 +employeeType: Employee +homePhone: +1 206 387-8122 +initials: R. S. +mobile: +1 206 371-1872 +pager: +1 206 844-8204 +roomNumber: 8249 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=John Seery,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: John Seery +sn: Seery +description: This is John Seery's description +facsimileTelephoneNumber: +1 213 227-7463 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 831-8254 +title: Supreme Peons Architect +userPassword: Password1 +uid: SeeryJ +givenName: John +mail: SeeryJ@325b607b73d843cb9936d27aa4bfeb13.bitwarden.com +carLicense: 0LKJTX +departmentNumber: 9055 +employeeType: Normal +homePhone: +1 213 846-6477 +initials: J. S. +mobile: +1 213 985-3932 +pager: +1 213 948-1391 +roomNumber: 8428 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kusum Delbrouck +sn: Delbrouck +description: This is Kusum Delbrouck's description +facsimileTelephoneNumber: +1 415 842-3420 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 561-8718 +title: Master Janitorial Visionary +userPassword: Password1 +uid: DelbrouK +givenName: Kusum +mail: DelbrouK@21813dd069254b74bf250b7db15a806f.bitwarden.com +carLicense: D82R9O +departmentNumber: 1194 +employeeType: Normal +homePhone: +1 415 356-6464 +initials: K. D. +mobile: +1 415 451-6784 +pager: +1 415 867-1172 +roomNumber: 9836 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Callida Boarder,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Callida Boarder +sn: Boarder +description: This is Callida Boarder's description +facsimileTelephoneNumber: +1 415 773-4337 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 516-8743 +title: Associate Product Development Sales Rep +userPassword: Password1 +uid: BoarderC +givenName: Callida +mail: BoarderC@4eab057e70644dff8f3d5ac041be0877.bitwarden.com +carLicense: TEWNMW +departmentNumber: 2148 +employeeType: Normal +homePhone: +1 415 745-2851 +initials: C. B. +mobile: +1 415 241-1414 +pager: +1 415 116-4106 +roomNumber: 8061 +manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Rona Cosgrove,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rona Cosgrove +sn: Cosgrove +description: This is Rona Cosgrove's description +facsimileTelephoneNumber: +1 818 386-6343 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 818 544-4105 +title: Master Management Technician +userPassword: Password1 +uid: CosgrovR +givenName: Rona +mail: CosgrovR@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com +carLicense: YLJPF5 +departmentNumber: 9624 +employeeType: Contract +homePhone: +1 818 884-8415 +initials: R. C. +mobile: +1 818 877-2803 +pager: +1 818 422-6405 +roomNumber: 9396 +manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tasia Anchia,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tasia Anchia +sn: Anchia +description: This is Tasia Anchia's description +facsimileTelephoneNumber: +1 213 850-6064 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 213 162-6500 +title: Chief Human Resources Assistant +userPassword: Password1 +uid: AnchiaT +givenName: Tasia +mail: AnchiaT@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com +carLicense: GU4EGV +departmentNumber: 1004 +employeeType: Normal +homePhone: +1 213 446-8887 +initials: T. A. +mobile: +1 213 235-5945 +pager: +1 213 975-4941 +roomNumber: 9345 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashleigh Pedneault +sn: Pedneault +description: This is Ashleigh Pedneault's description +facsimileTelephoneNumber: +1 206 480-3199 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 206 747-6416 +title: Master Administrative President +userPassword: Password1 +uid: PedneauA +givenName: Ashleigh +mail: PedneauA@de05663cc1c445b9849ee8fab2914551.bitwarden.com +carLicense: L2Y8J2 +departmentNumber: 8752 +employeeType: Employee +homePhone: +1 206 961-5744 +initials: A. P. +mobile: +1 206 643-5804 +pager: +1 206 217-3350 +roomNumber: 9810 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wallis Barentsen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wallis Barentsen +sn: Barentsen +description: This is Wallis Barentsen's description +facsimileTelephoneNumber: +1 804 803-7485 +l: San Mateo +ou: Administrative +postalAddress: Administrative$San Mateo +telephoneNumber: +1 804 906-4649 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: BarentsW +givenName: Wallis +mail: BarentsW@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com +carLicense: H1169O +departmentNumber: 3859 +employeeType: Normal +homePhone: +1 804 645-6652 +initials: W. B. +mobile: +1 804 394-4762 +pager: +1 804 146-1431 +roomNumber: 9604 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Fan Cranston,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fan Cranston +sn: Cranston +description: This is Fan Cranston's description +facsimileTelephoneNumber: +1 415 926-4747 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 362-2089 +title: Master Product Testing Assistant +userPassword: Password1 +uid: CranstoF +givenName: Fan +mail: CranstoF@d7689b7c727b40419f38fdc39c4261e2.bitwarden.com +carLicense: AWCBJ9 +departmentNumber: 7655 +employeeType: Normal +homePhone: +1 415 627-6928 +initials: F. C. +mobile: +1 415 248-4708 +pager: +1 415 233-5144 +roomNumber: 8090 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Helen Hyde,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Helen Hyde +sn: Hyde +description: This is Helen Hyde's description +facsimileTelephoneNumber: +1 206 782-5075 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 206 270-2292 +title: Associate Janitorial Consultant +userPassword: Password1 +uid: HydeH +givenName: Helen +mail: HydeH@e8907f80592d493daf791f32c2949815.bitwarden.com +carLicense: 3ENRSI +departmentNumber: 6871 +employeeType: Employee +homePhone: +1 206 399-9731 +initials: H. H. +mobile: +1 206 162-5823 +pager: +1 206 537-4629 +roomNumber: 9388 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Raeann OKarina,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raeann OKarina +sn: OKarina +description: This is Raeann OKarina's description +facsimileTelephoneNumber: +1 206 408-3467 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 206 926-3453 +title: Master Product Development Czar +userPassword: Password1 +uid: OKarinaR +givenName: Raeann +mail: OKarinaR@c659efb530134031a977821791781191.bitwarden.com +carLicense: USOKWW +departmentNumber: 8554 +employeeType: Normal +homePhone: +1 206 576-6718 +initials: R. O. +mobile: +1 206 773-9238 +pager: +1 206 720-8847 +roomNumber: 8150 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felicity Kinoshita +sn: Kinoshita +description: This is Felicity Kinoshita's description +facsimileTelephoneNumber: +1 804 439-8873 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 804 666-7482 +title: Associate Administrative Manager +userPassword: Password1 +uid: KinoshiF +givenName: Felicity +mail: KinoshiF@42e197c00c4e41749aff9f9665181f54.bitwarden.com +carLicense: A9NXGF +departmentNumber: 4950 +employeeType: Contract +homePhone: +1 804 771-5962 +initials: F. K. +mobile: +1 804 760-7082 +pager: +1 804 677-3405 +roomNumber: 8623 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Olga Magee,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olga Magee +sn: Magee +description: This is Olga Magee's description +facsimileTelephoneNumber: +1 804 413-1285 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 578-3427 +title: Master Product Development Warrior +userPassword: Password1 +uid: MageeO +givenName: Olga +mail: MageeO@e9aa0388b0974f709cc43e6d5c1d4048.bitwarden.com +carLicense: ML3EL2 +departmentNumber: 8430 +employeeType: Normal +homePhone: +1 804 386-4361 +initials: O. M. +mobile: +1 804 561-4152 +pager: +1 804 216-2010 +roomNumber: 9876 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sibel Munter,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibel Munter +sn: Munter +description: This is Sibel Munter's description +facsimileTelephoneNumber: +1 510 499-5327 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 415-1981 +title: Junior Janitorial Stooge +userPassword: Password1 +uid: MunterS +givenName: Sibel +mail: MunterS@85cf93c1a5be4b4aba8d72ecb1e88b93.bitwarden.com +carLicense: 0T7OPT +departmentNumber: 8299 +employeeType: Normal +homePhone: +1 510 218-6208 +initials: S. M. +mobile: +1 510 470-5198 +pager: +1 510 163-9223 +roomNumber: 9496 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Carmella Pillars,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmella Pillars +sn: Pillars +description: This is Carmella Pillars's description +facsimileTelephoneNumber: +1 415 774-1196 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 897-5277 +title: Associate Administrative Vice President +userPassword: Password1 +uid: PillarsC +givenName: Carmella +mail: PillarsC@c928e664ca344d17b905e23403ffeabf.bitwarden.com +carLicense: XQLL6P +departmentNumber: 3808 +employeeType: Normal +homePhone: +1 415 752-6766 +initials: C. P. +mobile: +1 415 652-7651 +pager: +1 415 332-6464 +roomNumber: 9842 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shafiq Kotyk +sn: Kotyk +description: This is Shafiq Kotyk's description +facsimileTelephoneNumber: +1 510 459-9436 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 445-2563 +title: Master Product Development Punk +userPassword: Password1 +uid: KotykS +givenName: Shafiq +mail: KotykS@4ef93a5243aa4272a03cee0beaecc3a1.bitwarden.com +carLicense: NVYLL2 +departmentNumber: 4767 +employeeType: Contract +homePhone: +1 510 330-7926 +initials: S. K. +mobile: +1 510 336-1240 +pager: +1 510 778-4452 +roomNumber: 8004 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com + +dn: cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhQuoc Behroozi +sn: Behroozi +description: This is ThanhQuoc Behroozi's description +facsimileTelephoneNumber: +1 804 976-7678 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 258-2047 +title: Master Product Development Figurehead +userPassword: Password1 +uid: BehroozT +givenName: ThanhQuoc +mail: BehroozT@61b37bdecd0d4342ba802388d8b5a903.bitwarden.com +carLicense: JE9RQO +departmentNumber: 9274 +employeeType: Normal +homePhone: +1 804 562-6145 +initials: T. B. +mobile: +1 804 778-7199 +pager: +1 804 671-5167 +roomNumber: 9600 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alene Gruszczynski +sn: Gruszczynski +description: This is Alene Gruszczynski's description +facsimileTelephoneNumber: +1 206 941-5028 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 206 457-4274 +title: Chief Product Testing Technician +userPassword: Password1 +uid: GruszczA +givenName: Alene +mail: GruszczA@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com +carLicense: 434AEY +departmentNumber: 3801 +employeeType: Normal +homePhone: +1 206 921-9995 +initials: A. G. +mobile: +1 206 599-5390 +pager: +1 206 757-8590 +roomNumber: 8098 +manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tabbi Bladon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tabbi Bladon +sn: Bladon +description: This is Tabbi Bladon's description +facsimileTelephoneNumber: +1 804 158-9349 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 804 865-1673 +title: Chief Administrative Vice President +userPassword: Password1 +uid: BladonT +givenName: Tabbi +mail: BladonT@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com +carLicense: 2X03IT +departmentNumber: 4760 +employeeType: Employee +homePhone: +1 804 536-3428 +initials: T. B. +mobile: +1 804 297-9107 +pager: +1 804 341-3616 +roomNumber: 8692 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Umesh Areu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Umesh Areu +sn: Areu +description: This is Umesh Areu's description +facsimileTelephoneNumber: +1 408 883-5233 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 408 461-2260 +title: Associate Product Testing Evangelist +userPassword: Password1 +uid: AreuU +givenName: Umesh +mail: AreuU@5d0d20354c594b5780df45982564458f.bitwarden.com +carLicense: L9KIAV +departmentNumber: 9017 +employeeType: Employee +homePhone: +1 408 188-6253 +initials: U. A. +mobile: +1 408 295-1695 +pager: +1 408 812-3177 +roomNumber: 9168 +manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com + +dn: cn=Orel Delahay,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Orel Delahay +sn: Delahay +description: This is Orel Delahay's description +facsimileTelephoneNumber: +1 804 433-7745 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 390-1724 +title: Associate Product Testing Consultant +userPassword: Password1 +uid: DelahayO +givenName: Orel +mail: DelahayO@f009b38fd0b643efae4b268d5ce0abb7.bitwarden.com +carLicense: 3QRJTT +departmentNumber: 9282 +employeeType: Normal +homePhone: +1 804 526-4861 +initials: O. D. +mobile: +1 804 350-3243 +pager: +1 804 826-1384 +roomNumber: 9665 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Corrie Cipolla,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corrie Cipolla +sn: Cipolla +description: This is Corrie Cipolla's description +facsimileTelephoneNumber: +1 804 303-2834 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 804 602-8690 +title: Chief Product Development Madonna +userPassword: Password1 +uid: CipollaC +givenName: Corrie +mail: CipollaC@bf258d9f715f4af3b7d9b3ec9a4b6843.bitwarden.com +carLicense: NRUKAV +departmentNumber: 3942 +employeeType: Contract +homePhone: +1 804 885-8582 +initials: C. C. +mobile: +1 804 121-4341 +pager: +1 804 610-4809 +roomNumber: 9377 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Longdist Goliss,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Longdist Goliss +sn: Goliss +description: This is Longdist Goliss's description +facsimileTelephoneNumber: +1 510 526-6968 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 510 960-2733 +title: Master Janitorial Stooge +userPassword: Password1 +uid: GolissL +givenName: Longdist +mail: GolissL@fe60fc6c21f046639fc69fd725ace3ee.bitwarden.com +carLicense: 1V4NOC +departmentNumber: 2158 +employeeType: Employee +homePhone: +1 510 157-1097 +initials: L. G. +mobile: +1 510 649-3575 +pager: +1 510 833-2988 +roomNumber: 9718 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Belissa Northcott,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belissa Northcott +sn: Northcott +description: This is Belissa Northcott's description +facsimileTelephoneNumber: +1 415 854-7176 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 415 212-6179 +title: Associate Product Development Visionary +userPassword: Password1 +uid: NorthcoB +givenName: Belissa +mail: NorthcoB@1765994e2a5c4efcb4f3aabfae2cc880.bitwarden.com +carLicense: FG5M0F +departmentNumber: 8165 +employeeType: Employee +homePhone: +1 415 467-6359 +initials: B. N. +mobile: +1 415 940-1779 +pager: +1 415 591-8943 +roomNumber: 9200 +manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eula Gouldson,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eula Gouldson +sn: Gouldson +description: This is Eula Gouldson's description +facsimileTelephoneNumber: +1 415 573-8154 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 415 194-6016 +title: Junior Payroll Engineer +userPassword: Password1 +uid: GouldsoE +givenName: Eula +mail: GouldsoE@855a2f4f2cb9421d8b0276fe6c08af37.bitwarden.com +carLicense: IRGG0I +departmentNumber: 9467 +employeeType: Normal +homePhone: +1 415 288-7667 +initials: E. G. +mobile: +1 415 898-4411 +pager: +1 415 182-2660 +roomNumber: 9371 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Beatrix Rea,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatrix Rea +sn: Rea +description: This is Beatrix Rea's description +facsimileTelephoneNumber: +1 804 249-4961 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 804 884-5684 +title: Supreme Management Sales Rep +userPassword: Password1 +uid: ReaB +givenName: Beatrix +mail: ReaB@091047b60e174697bb729ce954d717c0.bitwarden.com +carLicense: KJ6HUW +departmentNumber: 1725 +employeeType: Employee +homePhone: +1 804 542-9711 +initials: B. R. +mobile: +1 804 777-5281 +pager: +1 804 789-8072 +roomNumber: 8789 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnneMarie Khalilzadeh +sn: Khalilzadeh +description: This is AnneMarie Khalilzadeh's description +facsimileTelephoneNumber: +1 804 596-4631 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 189-5143 +title: Master Payroll Writer +userPassword: Password1 +uid: KhalilzA +givenName: AnneMarie +mail: KhalilzA@71b383e74c8c4d0394a6539daed34aaf.bitwarden.com +carLicense: S1VRF2 +departmentNumber: 8502 +employeeType: Normal +homePhone: +1 804 712-3380 +initials: A. K. +mobile: +1 804 613-7078 +pager: +1 804 803-7695 +roomNumber: 9276 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Larysa Fleming,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Larysa Fleming +sn: Fleming +description: This is Larysa Fleming's description +facsimileTelephoneNumber: +1 818 739-2003 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 545-2983 +title: Associate Product Testing Czar +userPassword: Password1 +uid: FlemingL +givenName: Larysa +mail: FlemingL@36bc6957b14948c298f68fedb3e83da0.bitwarden.com +carLicense: 8SE0G4 +departmentNumber: 6322 +employeeType: Employee +homePhone: +1 818 110-8498 +initials: L. F. +mobile: +1 818 495-9524 +pager: +1 818 125-8893 +roomNumber: 8879 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Andras Dziemian,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andras Dziemian +sn: Dziemian +description: This is Andras Dziemian's description +facsimileTelephoneNumber: +1 804 454-2252 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 804 860-1377 +title: Associate Administrative Vice President +userPassword: Password1 +uid: DziemiaA +givenName: Andras +mail: DziemiaA@a56f80c85b414f69996ee5700b35f815.bitwarden.com +carLicense: RMJIF8 +departmentNumber: 3655 +employeeType: Normal +homePhone: +1 804 114-2152 +initials: A. D. +mobile: +1 804 322-5319 +pager: +1 804 371-5789 +roomNumber: 8425 +manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angeliek MachnickiHynes +sn: MachnickiHynes +description: This is Angeliek MachnickiHynes's description +facsimileTelephoneNumber: +1 213 114-7071 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 452-8951 +title: Associate Peons Figurehead +userPassword: Password1 +uid: MachnicA +givenName: Angeliek +mail: MachnicA@472c805b68f843ad9fd85cb16521749b.bitwarden.com +carLicense: 71HW84 +departmentNumber: 1377 +employeeType: Employee +homePhone: +1 213 982-7979 +initials: A. M. +mobile: +1 213 267-4096 +pager: +1 213 563-4907 +roomNumber: 8064 +manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Afke Coallier,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Afke Coallier +sn: Coallier +description: This is Afke Coallier's description +facsimileTelephoneNumber: +1 510 394-5203 +l: Sunnyvale +ou: Management +postalAddress: Management$Sunnyvale +telephoneNumber: +1 510 391-8357 +title: Junior Management Manager +userPassword: Password1 +uid: CoallieA +givenName: Afke +mail: CoallieA@976adcda025f45689f8ecd72de9c606c.bitwarden.com +carLicense: V5J8U4 +departmentNumber: 9065 +employeeType: Contract +homePhone: +1 510 590-2036 +initials: A. C. +mobile: +1 510 162-3573 +pager: +1 510 362-7705 +roomNumber: 9636 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lachu Fricks,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lachu Fricks +sn: Fricks +description: This is Lachu Fricks's description +facsimileTelephoneNumber: +1 415 112-9980 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 320-6166 +title: Supreme Janitorial Technician +userPassword: Password1 +uid: FricksL +givenName: Lachu +mail: FricksL@d479485aa9bf4fdf874b1f50fdaba08c.bitwarden.com +carLicense: U5CTHQ +departmentNumber: 4175 +employeeType: Employee +homePhone: +1 415 555-3897 +initials: L. F. +mobile: +1 415 749-2840 +pager: +1 415 830-9806 +roomNumber: 9920 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pammy Slautterback,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pammy Slautterback +sn: Slautterback +description: This is Pammy Slautterback's description +facsimileTelephoneNumber: +1 415 341-7542 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 415 123-3315 +title: Supreme Administrative Technician +userPassword: Password1 +uid: SlautteP +givenName: Pammy +mail: SlautteP@87263f2ad4e44ac39562038c9af16152.bitwarden.com +carLicense: EWNPGB +departmentNumber: 3255 +employeeType: Contract +homePhone: +1 415 253-6430 +initials: P. S. +mobile: +1 415 175-2240 +pager: +1 415 134-7850 +roomNumber: 8041 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maribelle Balderston,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maribelle Balderston +sn: Balderston +description: This is Maribelle Balderston's description +facsimileTelephoneNumber: +1 408 571-6363 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 408 736-7873 +title: Chief Payroll Writer +userPassword: Password1 +uid: BaldersM +givenName: Maribelle +mail: BaldersM@64ae9afa0c594dd6834a0d977f843d49.bitwarden.com +carLicense: TU42L2 +departmentNumber: 7776 +employeeType: Employee +homePhone: +1 408 936-2630 +initials: M. B. +mobile: +1 408 737-7742 +pager: +1 408 712-7798 +roomNumber: 8360 +manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vahe Birks,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vahe Birks +sn: Birks +description: This is Vahe Birks's description +facsimileTelephoneNumber: +1 818 390-4946 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 818 947-6159 +title: Junior Product Development Sales Rep +userPassword: Password1 +uid: BirksV +givenName: Vahe +mail: BirksV@ebdda7804b294714949d48657bdd3830.bitwarden.com +carLicense: YJS83P +departmentNumber: 8826 +employeeType: Employee +homePhone: +1 818 350-7671 +initials: V. B. +mobile: +1 818 462-1957 +pager: +1 818 874-1663 +roomNumber: 9619 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tobe PKDCD,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tobe PKDCD +sn: PKDCD +description: This is Tobe PKDCD's description +facsimileTelephoneNumber: +1 408 869-4472 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 702-3695 +title: Associate Product Development Visionary +userPassword: Password1 +uid: PKDCDT +givenName: Tobe +mail: PKDCDT@1a2826f06614436585f4faa14772cf1b.bitwarden.com +carLicense: ODFDSM +departmentNumber: 5604 +employeeType: Normal +homePhone: +1 408 276-8204 +initials: T. P. +mobile: +1 408 754-5114 +pager: +1 408 773-4621 +roomNumber: 9046 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: DeAnna Gahunia +sn: Gahunia +description: This is DeAnna Gahunia's description +facsimileTelephoneNumber: +1 408 651-7589 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 321-5830 +title: Master Product Development Assistant +userPassword: Password1 +uid: GahuniaD +givenName: DeAnna +mail: GahuniaD@a3b3e1a7dc12465fbb231dc02524f751.bitwarden.com +carLicense: 3X1PBS +departmentNumber: 8394 +employeeType: Employee +homePhone: +1 408 269-6361 +initials: D. G. +mobile: +1 408 840-9080 +pager: +1 408 858-6026 +roomNumber: 8219 +manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Melynda Phillips,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melynda Phillips +sn: Phillips +description: This is Melynda Phillips's description +facsimileTelephoneNumber: +1 213 314-9260 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 213 356-4172 +title: Junior Administrative Madonna +userPassword: Password1 +uid: PhillipM +givenName: Melynda +mail: PhillipM@da12337d358141f5bd4c9f1cff61b597.bitwarden.com +carLicense: QB9HVN +departmentNumber: 2167 +employeeType: Normal +homePhone: +1 213 813-9915 +initials: M. P. +mobile: +1 213 469-2430 +pager: +1 213 667-8795 +roomNumber: 8324 +manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Arina Collazo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arina Collazo +sn: Collazo +description: This is Arina Collazo's description +facsimileTelephoneNumber: +1 206 879-2301 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 238-4827 +title: Chief Payroll Engineer +userPassword: Password1 +uid: CollazoA +givenName: Arina +mail: CollazoA@f322213c017f4153baac5a8cc04c844a.bitwarden.com +carLicense: IKXJSD +departmentNumber: 6742 +employeeType: Employee +homePhone: +1 206 255-8682 +initials: A. C. +mobile: +1 206 630-3470 +pager: +1 206 221-7447 +roomNumber: 8398 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Cesare Karolefski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cesare Karolefski +sn: Karolefski +description: This is Cesare Karolefski's description +facsimileTelephoneNumber: +1 510 144-6599 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 256-9480 +title: Chief Payroll Technician +userPassword: Password1 +uid: KarolefC +givenName: Cesare +mail: KarolefC@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com +carLicense: 6GTIXC +departmentNumber: 1074 +employeeType: Employee +homePhone: +1 510 724-5419 +initials: C. K. +mobile: +1 510 169-4662 +pager: +1 510 819-6669 +roomNumber: 9676 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reinhold Zukas +sn: Zukas +description: This is Reinhold Zukas's description +facsimileTelephoneNumber: +1 408 752-8776 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 408 377-4252 +title: Master Human Resources Artist +userPassword: Password1 +uid: ZukasR +givenName: Reinhold +mail: ZukasR@973c4a1a5d1a4e4f9c421404b565659a.bitwarden.com +carLicense: RTFGU1 +departmentNumber: 2899 +employeeType: Employee +homePhone: +1 408 633-5815 +initials: R. Z. +mobile: +1 408 632-2858 +pager: +1 408 579-6933 +roomNumber: 9264 +manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeroen Gaiser +sn: Gaiser +description: This is Jeroen Gaiser's description +facsimileTelephoneNumber: +1 415 888-7506 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 415 442-5324 +title: Master Janitorial Director +userPassword: Password1 +uid: GaiserJ +givenName: Jeroen +mail: GaiserJ@7dd6cc5778d64f7ea47fc9b85bb01ae7.bitwarden.com +carLicense: FR7OJ3 +departmentNumber: 6929 +employeeType: Normal +homePhone: +1 415 188-6638 +initials: J. G. +mobile: +1 415 932-9873 +pager: +1 415 501-6133 +roomNumber: 8982 +manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Partick Bassil,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Partick Bassil +sn: Bassil +description: This is Partick Bassil's description +facsimileTelephoneNumber: +1 213 372-3947 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 857-8354 +title: Junior Human Resources President +userPassword: Password1 +uid: BassilP +givenName: Partick +mail: BassilP@dd5cfcee75de4e98844cbb2dd89a0b3c.bitwarden.com +carLicense: TQ936I +departmentNumber: 1066 +employeeType: Employee +homePhone: +1 213 550-3874 +initials: P. B. +mobile: +1 213 101-5958 +pager: +1 213 102-6068 +roomNumber: 8510 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Siamak Wagle,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Siamak Wagle +sn: Wagle +description: This is Siamak Wagle's description +facsimileTelephoneNumber: +1 213 785-4876 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 503-2578 +title: Chief Product Testing Director +userPassword: Password1 +uid: WagleS +givenName: Siamak +mail: WagleS@a4f62387533541bbbdac898b8a707eb3.bitwarden.com +carLicense: SF7DE6 +departmentNumber: 4029 +employeeType: Normal +homePhone: +1 213 770-6048 +initials: S. W. +mobile: +1 213 515-2650 +pager: +1 213 228-3975 +roomNumber: 9085 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Reine Hamlett,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Reine Hamlett +sn: Hamlett +description: This is Reine Hamlett's description +facsimileTelephoneNumber: +1 408 261-8591 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 266-7157 +title: Associate Peons Director +userPassword: Password1 +uid: HamlettR +givenName: Reine +mail: HamlettR@55ec9ab4177d4a9faecb693090c29c24.bitwarden.com +carLicense: 3JGBUT +departmentNumber: 9163 +employeeType: Contract +homePhone: +1 408 251-3423 +initials: R. H. +mobile: +1 408 178-6754 +pager: +1 408 812-2837 +roomNumber: 8328 +manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Albert Tebinka,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Albert Tebinka +sn: Tebinka +description: This is Albert Tebinka's description +facsimileTelephoneNumber: +1 408 899-5169 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 408 387-6197 +title: Supreme Payroll Vice President +userPassword: Password1 +uid: TebinkaA +givenName: Albert +mail: TebinkaA@67ca48342c3741e5ba95513725c86734.bitwarden.com +carLicense: Y9EBD4 +departmentNumber: 2723 +employeeType: Contract +homePhone: +1 408 491-9794 +initials: A. T. +mobile: +1 408 357-9694 +pager: +1 408 699-7782 +roomNumber: 8825 +manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wally Pedneault,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wally Pedneault +sn: Pedneault +description: This is Wally Pedneault's description +facsimileTelephoneNumber: +1 818 871-1215 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 818 466-1780 +title: Associate Product Testing Admin +userPassword: Password1 +uid: PedneauW +givenName: Wally +mail: PedneauW@d4ab5d5f822b49189aa188422c9bf4ed.bitwarden.com +carLicense: KPHL4J +departmentNumber: 1795 +employeeType: Employee +homePhone: +1 818 661-6621 +initials: W. P. +mobile: +1 818 306-6360 +pager: +1 818 588-7454 +roomNumber: 9507 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shahriar Farnham,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shahriar Farnham +sn: Farnham +description: This is Shahriar Farnham's description +facsimileTelephoneNumber: +1 415 265-7804 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 415 174-6388 +title: Associate Peons Technician +userPassword: Password1 +uid: FarnhamS +givenName: Shahriar +mail: FarnhamS@4d05bb60c7e84d1eab5ee07d5a5162ea.bitwarden.com +carLicense: 89999V +departmentNumber: 7130 +employeeType: Normal +homePhone: +1 415 495-2556 +initials: S. F. +mobile: +1 415 282-5441 +pager: +1 415 640-5711 +roomNumber: 9735 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Concordia Thorman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Concordia Thorman +sn: Thorman +description: This is Concordia Thorman's description +facsimileTelephoneNumber: +1 510 625-5323 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 510 365-5081 +title: Chief Human Resources Engineer +userPassword: Password1 +uid: ThormanC +givenName: Concordia +mail: ThormanC@5020798a7692438bb9e14d9a42dd1742.bitwarden.com +carLicense: CJAVPT +departmentNumber: 5302 +employeeType: Normal +homePhone: +1 510 784-2040 +initials: C. T. +mobile: +1 510 484-5120 +pager: +1 510 339-9152 +roomNumber: 8289 +manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sarath Lathrop,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarath Lathrop +sn: Lathrop +description: This is Sarath Lathrop's description +facsimileTelephoneNumber: +1 510 782-6081 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 144-2808 +title: Junior Management Stooge +userPassword: Password1 +uid: LathropS +givenName: Sarath +mail: LathropS@f37bc771a4b8490799f5a19ea4f33525.bitwarden.com +carLicense: FELVP1 +departmentNumber: 3551 +employeeType: Contract +homePhone: +1 510 676-7714 +initials: S. L. +mobile: +1 510 608-6412 +pager: +1 510 844-9377 +roomNumber: 8133 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=HanVan Cuthill,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HanVan Cuthill +sn: Cuthill +description: This is HanVan Cuthill's description +facsimileTelephoneNumber: +1 213 434-2896 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 213 415-4283 +title: Chief Peons Director +userPassword: Password1 +uid: CuthillH +givenName: HanVan +mail: CuthillH@c0a6b6c92fcf4d2e9e442a4db87fb8d6.bitwarden.com +carLicense: BXKTHY +departmentNumber: 7855 +employeeType: Contract +homePhone: +1 213 682-5939 +initials: H. C. +mobile: +1 213 735-4868 +pager: +1 213 399-7312 +roomNumber: 9227 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Demetri Acree,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Demetri Acree +sn: Acree +description: This is Demetri Acree's description +facsimileTelephoneNumber: +1 206 647-5172 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 206 151-5982 +title: Junior Human Resources Manager +userPassword: Password1 +uid: AcreeD +givenName: Demetri +mail: AcreeD@8491514e025546c6b44944519f176a38.bitwarden.com +carLicense: 7SXBAL +departmentNumber: 9120 +employeeType: Contract +homePhone: +1 206 235-6175 +initials: D. A. +mobile: +1 206 453-4390 +pager: +1 206 235-4981 +roomNumber: 9273 +manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gord St,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gord St +sn: St +description: This is Gord St's description +facsimileTelephoneNumber: +1 804 413-8462 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 804 830-2361 +title: Master Product Development Sales Rep +userPassword: Password1 +uid: StG +givenName: Gord +mail: StG@a8e48e7f01fb4831b7bf783525861229.bitwarden.com +carLicense: SEU86I +departmentNumber: 6953 +employeeType: Contract +homePhone: +1 804 346-5521 +initials: G. S. +mobile: +1 804 642-4616 +pager: +1 804 800-4032 +roomNumber: 9297 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Robyn Porter,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robyn Porter +sn: Porter +description: This is Robyn Porter's description +facsimileTelephoneNumber: +1 415 770-3112 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 415 922-5524 +title: Associate Payroll Architect +userPassword: Password1 +uid: PorterR +givenName: Robyn +mail: PorterR@3ccc8c61b3e7403f9b193bb2ac877a17.bitwarden.com +carLicense: U3H4JA +departmentNumber: 6644 +employeeType: Normal +homePhone: +1 415 374-3208 +initials: R. P. +mobile: +1 415 777-2032 +pager: +1 415 423-9476 +roomNumber: 9120 +manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kristine Ratnam,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kristine Ratnam +sn: Ratnam +description: This is Kristine Ratnam's description +facsimileTelephoneNumber: +1 818 632-6030 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 818 469-6711 +title: Associate Peons Madonna +userPassword: Password1 +uid: RatnamK +givenName: Kristine +mail: RatnamK@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com +carLicense: LCSD9F +departmentNumber: 5703 +employeeType: Contract +homePhone: +1 818 410-9496 +initials: K. R. +mobile: +1 818 179-1260 +pager: +1 818 607-2068 +roomNumber: 8590 +manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Trude Leander,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trude Leander +sn: Leander +description: This is Trude Leander's description +facsimileTelephoneNumber: +1 206 441-7696 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 206 702-8186 +title: Junior Management Director +userPassword: Password1 +uid: LeanderT +givenName: Trude +mail: LeanderT@03dd2273d709477db635cdb7c9075823.bitwarden.com +carLicense: B1L0P2 +departmentNumber: 6795 +employeeType: Employee +homePhone: +1 206 717-8967 +initials: T. L. +mobile: +1 206 623-3393 +pager: +1 206 106-2829 +roomNumber: 9610 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jacinta Burkepile,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacinta Burkepile +sn: Burkepile +description: This is Jacinta Burkepile's description +facsimileTelephoneNumber: +1 510 538-9302 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 510 749-9742 +title: Associate Management Manager +userPassword: Password1 +uid: BurkepiJ +givenName: Jacinta +mail: BurkepiJ@2ff176a8051c415c910dbab59433a7db.bitwarden.com +carLicense: UTCKYC +departmentNumber: 4692 +employeeType: Contract +homePhone: +1 510 532-7173 +initials: J. B. +mobile: +1 510 506-5954 +pager: +1 510 137-3903 +roomNumber: 9853 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felecia Schoenermarck +sn: Schoenermarck +description: This is Felecia Schoenermarck's description +facsimileTelephoneNumber: +1 804 744-6823 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 648-6008 +title: Junior Product Development Visionary +userPassword: Password1 +uid: SchoeneF +givenName: Felecia +mail: SchoeneF@1e52d43b6db2414f90519482b0521313.bitwarden.com +carLicense: O0M8A1 +departmentNumber: 1708 +employeeType: Contract +homePhone: +1 804 493-3370 +initials: F. S. +mobile: +1 804 170-6250 +pager: +1 804 101-6129 +roomNumber: 8555 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sissela Mathewson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sissela Mathewson +sn: Mathewson +description: This is Sissela Mathewson's description +facsimileTelephoneNumber: +1 804 666-3677 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 249-1070 +title: Master Administrative Consultant +userPassword: Password1 +uid: MathewsS +givenName: Sissela +mail: MathewsS@28cc7c8054f54d5097838bc00378ffcf.bitwarden.com +carLicense: V00QGX +departmentNumber: 9795 +employeeType: Normal +homePhone: +1 804 630-4759 +initials: S. M. +mobile: +1 804 583-5025 +pager: +1 804 300-5194 +roomNumber: 8252 +manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacynthe Sheaffer +sn: Sheaffer +description: This is Jacynthe Sheaffer's description +facsimileTelephoneNumber: +1 408 400-7016 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 349-1014 +title: Chief Product Development Punk +userPassword: Password1 +uid: SheaffeJ +givenName: Jacynthe +mail: SheaffeJ@889b0ce56e2f447a9f04b2ef65f2b835.bitwarden.com +carLicense: EUMEBH +departmentNumber: 1772 +employeeType: Normal +homePhone: +1 408 297-5598 +initials: J. S. +mobile: +1 408 119-4883 +pager: +1 408 372-5599 +roomNumber: 9548 +manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kaela Gleason,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaela Gleason +sn: Gleason +description: This is Kaela Gleason's description +facsimileTelephoneNumber: +1 510 265-8486 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 332-1941 +title: Associate Product Testing Assistant +userPassword: Password1 +uid: GleasonK +givenName: Kaela +mail: GleasonK@a08e5c7ab6bd42a9af2ba6fcd91cbe9f.bitwarden.com +carLicense: Q6KTJ1 +departmentNumber: 9214 +employeeType: Normal +homePhone: +1 510 234-6697 +initials: K. G. +mobile: +1 510 239-6608 +pager: +1 510 953-8424 +roomNumber: 9134 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mandi Popovich,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mandi Popovich +sn: Popovich +description: This is Mandi Popovich's description +facsimileTelephoneNumber: +1 804 473-7909 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 584-2209 +title: Junior Product Development Czar +userPassword: Password1 +uid: PopovicM +givenName: Mandi +mail: PopovicM@121cc33033f14e9b867c78ba3a8f3e2b.bitwarden.com +carLicense: W8BRBQ +departmentNumber: 6190 +employeeType: Normal +homePhone: +1 804 763-8107 +initials: M. P. +mobile: +1 804 593-5774 +pager: +1 804 826-9099 +roomNumber: 9320 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bhal Mymryk,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bhal Mymryk +sn: Mymryk +description: This is Bhal Mymryk's description +facsimileTelephoneNumber: +1 818 796-8106 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 818 165-1922 +title: Chief Management Writer +userPassword: Password1 +uid: MymrykB +givenName: Bhal +mail: MymrykB@1c5b6afbcbf04ba3993488cc8b65901b.bitwarden.com +carLicense: WBK5DJ +departmentNumber: 2574 +employeeType: Contract +homePhone: +1 818 241-5075 +initials: B. M. +mobile: +1 818 175-2863 +pager: +1 818 816-5547 +roomNumber: 9615 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Wenxi Sethian,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wenxi Sethian +sn: Sethian +description: This is Wenxi Sethian's description +facsimileTelephoneNumber: +1 408 865-7951 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 408 493-3694 +title: Master Product Development Grunt +userPassword: Password1 +uid: SethianW +givenName: Wenxi +mail: SethianW@71af05daaeb140bfbca8a2d29597805e.bitwarden.com +carLicense: 0LFCS5 +departmentNumber: 5398 +employeeType: Normal +homePhone: +1 408 554-7294 +initials: W. S. +mobile: +1 408 446-7930 +pager: +1 408 699-9648 +roomNumber: 8307 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mabel Kwa,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mabel Kwa +sn: Kwa +description: This is Mabel Kwa's description +facsimileTelephoneNumber: +1 510 896-9984 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 227-5057 +title: Junior Peons Manager +userPassword: Password1 +uid: KwaM +givenName: Mabel +mail: KwaM@76dc6fcc5e8748ab8f701b414ac24ae8.bitwarden.com +carLicense: RHQKEM +departmentNumber: 5920 +employeeType: Employee +homePhone: +1 510 837-1851 +initials: M. K. +mobile: +1 510 656-6998 +pager: +1 510 453-2551 +roomNumber: 9895 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Neysa Uguccioni,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Neysa Uguccioni +sn: Uguccioni +description: This is Neysa Uguccioni's description +facsimileTelephoneNumber: +1 510 844-5524 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 639-6445 +title: Junior Management Developer +userPassword: Password1 +uid: UguccioN +givenName: Neysa +mail: UguccioN@0b027bdff1d041629ac882de18aab2e6.bitwarden.com +carLicense: EHRGF5 +departmentNumber: 3037 +employeeType: Normal +homePhone: +1 510 470-6566 +initials: N. U. +mobile: +1 510 704-1181 +pager: +1 510 691-8537 +roomNumber: 8583 +manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Toby Ayoup,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Toby Ayoup +sn: Ayoup +description: This is Toby Ayoup's description +facsimileTelephoneNumber: +1 408 695-1703 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 408 989-9222 +title: Supreme Administrative President +userPassword: Password1 +uid: AyoupT +givenName: Toby +mail: AyoupT@4ec1bcfbb97c4709b780fa74b3d05500.bitwarden.com +carLicense: 3WTO47 +departmentNumber: 7073 +employeeType: Normal +homePhone: +1 408 397-4606 +initials: T. A. +mobile: +1 408 878-4969 +pager: +1 408 208-2677 +roomNumber: 9733 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Courtnay Engleman +sn: Engleman +description: This is Courtnay Engleman's description +facsimileTelephoneNumber: +1 804 711-4918 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 804 882-4962 +title: Master Human Resources Manager +userPassword: Password1 +uid: EnglemaC +givenName: Courtnay +mail: EnglemaC@e60dd9bce03a413a915d470a19570918.bitwarden.com +carLicense: NJQEE5 +departmentNumber: 8041 +employeeType: Normal +homePhone: +1 804 809-7731 +initials: C. E. +mobile: +1 804 937-5120 +pager: +1 804 589-3952 +roomNumber: 9910 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Drusilla Allman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drusilla Allman +sn: Allman +description: This is Drusilla Allman's description +facsimileTelephoneNumber: +1 415 673-8940 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 434-3423 +title: Supreme Management Technician +userPassword: Password1 +uid: AllmanD +givenName: Drusilla +mail: AllmanD@fa78004a0e4e45e5ac5f338a764f9f48.bitwarden.com +carLicense: GLYK54 +departmentNumber: 7069 +employeeType: Normal +homePhone: +1 415 112-2501 +initials: D. A. +mobile: +1 415 677-7722 +pager: +1 415 699-9805 +roomNumber: 9737 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=SangMaun Rabzel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: SangMaun Rabzel +sn: Rabzel +description: This is SangMaun Rabzel's description +facsimileTelephoneNumber: +1 213 354-4064 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 983-1362 +title: Associate Management Director +userPassword: Password1 +uid: RabzelS +givenName: SangMaun +mail: RabzelS@206e631bec554251823680304e50fd4f.bitwarden.com +carLicense: GMPTRT +departmentNumber: 5850 +employeeType: Employee +homePhone: +1 213 100-9337 +initials: S. R. +mobile: +1 213 365-9375 +pager: +1 213 498-7539 +roomNumber: 9217 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Bettine Bresnan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettine Bresnan +sn: Bresnan +description: This is Bettine Bresnan's description +facsimileTelephoneNumber: +1 804 799-8066 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 804 715-2531 +title: Master Peons Technician +userPassword: Password1 +uid: BresnanB +givenName: Bettine +mail: BresnanB@0c6af3053743415cb69498758e59a3c5.bitwarden.com +carLicense: V81T5A +departmentNumber: 3951 +employeeType: Normal +homePhone: +1 804 569-5766 +initials: B. B. +mobile: +1 804 352-3373 +pager: +1 804 478-2564 +roomNumber: 9169 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Blithe Searl,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blithe Searl +sn: Searl +description: This is Blithe Searl's description +facsimileTelephoneNumber: +1 804 558-7999 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 336-7970 +title: Supreme Product Testing Pinhead +userPassword: Password1 +uid: SearlB +givenName: Blithe +mail: SearlB@d7689b7c727b40419f38fdc39c4261e2.bitwarden.com +carLicense: FJ7X2X +departmentNumber: 8272 +employeeType: Contract +homePhone: +1 804 793-2594 +initials: B. S. +mobile: +1 804 439-9987 +pager: +1 804 875-9957 +roomNumber: 9972 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stanislas DeLeon +sn: DeLeon +description: This is Stanislas DeLeon's description +facsimileTelephoneNumber: +1 818 315-7567 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 818 734-8371 +title: Chief Payroll Madonna +userPassword: Password1 +uid: DeLeonS +givenName: Stanislas +mail: DeLeonS@ce001280b666479eb0eb4d06e9257b27.bitwarden.com +carLicense: 33XR91 +departmentNumber: 5013 +employeeType: Normal +homePhone: +1 818 238-6999 +initials: S. D. +mobile: +1 818 234-7123 +pager: +1 818 653-1703 +roomNumber: 9637 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Haig Talton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Haig Talton +sn: Talton +description: This is Haig Talton's description +facsimileTelephoneNumber: +1 213 166-5176 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 656-3591 +title: Chief Janitorial Manager +userPassword: Password1 +uid: TaltonH +givenName: Haig +mail: TaltonH@2a9fef67c2a84062aa431a97e4e79582.bitwarden.com +carLicense: 5C5TCP +departmentNumber: 5176 +employeeType: Contract +homePhone: +1 213 347-2035 +initials: H. T. +mobile: +1 213 732-8702 +pager: +1 213 744-5730 +roomNumber: 9486 +manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ryman Smerdell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ryman Smerdell +sn: Smerdell +description: This is Ryman Smerdell's description +facsimileTelephoneNumber: +1 804 466-6878 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 804 492-9387 +title: Supreme Product Development Writer +userPassword: Password1 +uid: SmerdelR +givenName: Ryman +mail: SmerdelR@0a2f8517f7174295bf5ecdcb9f344855.bitwarden.com +carLicense: OU1CEE +departmentNumber: 3763 +employeeType: Employee +homePhone: +1 804 752-7441 +initials: R. S. +mobile: +1 804 614-2394 +pager: +1 804 689-7270 +roomNumber: 9823 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Admin Cassar,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Admin Cassar +sn: Cassar +description: This is Admin Cassar's description +facsimileTelephoneNumber: +1 804 312-8716 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 804 144-5095 +title: Chief Janitorial Warrior +userPassword: Password1 +uid: CassarA +givenName: Admin +mail: CassarA@b04066f723fa4eb2a82846786b428021.bitwarden.com +carLicense: MNLWT0 +departmentNumber: 3678 +employeeType: Normal +homePhone: +1 804 589-1680 +initials: A. C. +mobile: +1 804 380-1693 +pager: +1 804 886-4541 +roomNumber: 8858 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacinthe Bucklin +sn: Bucklin +description: This is Jacinthe Bucklin's description +facsimileTelephoneNumber: +1 206 284-7774 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 970-2778 +title: Junior Product Testing Director +userPassword: Password1 +uid: BucklinJ +givenName: Jacinthe +mail: BucklinJ@fe6420c124954c6f8c3c4003778996ef.bitwarden.com +carLicense: NLNG65 +departmentNumber: 3231 +employeeType: Normal +homePhone: +1 206 214-3484 +initials: J. B. +mobile: +1 206 118-5047 +pager: +1 206 191-6724 +roomNumber: 9093 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Esmail Santos,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esmail Santos +sn: Santos +description: This is Esmail Santos's description +facsimileTelephoneNumber: +1 510 117-2614 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 510 488-4806 +title: Supreme Janitorial Consultant +userPassword: Password1 +uid: SantosE +givenName: Esmail +mail: SantosE@5fa9a69302a9422abedbd51aa69f472b.bitwarden.com +carLicense: TP5SPQ +departmentNumber: 9347 +employeeType: Contract +homePhone: +1 510 911-5352 +initials: E. S. +mobile: +1 510 486-7053 +pager: +1 510 739-4124 +roomNumber: 8067 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Walter Coley,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walter Coley +sn: Coley +description: This is Walter Coley's description +facsimileTelephoneNumber: +1 818 533-9564 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 118-3805 +title: Junior Human Resources Consultant +userPassword: Password1 +uid: ColeyW +givenName: Walter +mail: ColeyW@672856c5dd4e4183bcd781a952ed21fe.bitwarden.com +carLicense: X27967 +departmentNumber: 6028 +employeeType: Employee +homePhone: +1 818 910-8855 +initials: W. C. +mobile: +1 818 105-3097 +pager: +1 818 884-2156 +roomNumber: 8042 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jeanne Boult,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jeanne Boult +sn: Boult +description: This is Jeanne Boult's description +facsimileTelephoneNumber: +1 818 861-6299 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 818 196-5147 +title: Supreme Janitorial Warrior +userPassword: Password1 +uid: BoultJ +givenName: Jeanne +mail: BoultJ@8a049b49f80d420a99b91944b3a9e703.bitwarden.com +carLicense: RUNTV2 +departmentNumber: 9879 +employeeType: Employee +homePhone: +1 818 605-3597 +initials: J. B. +mobile: +1 818 872-3098 +pager: +1 818 581-8968 +roomNumber: 8136 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Avie Scourneau,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avie Scourneau +sn: Scourneau +description: This is Avie Scourneau's description +facsimileTelephoneNumber: +1 415 922-9959 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 415 115-1558 +title: Chief Management Technician +userPassword: Password1 +uid: ScourneA +givenName: Avie +mail: ScourneA@7f4cd5fa42d7400bbd064f829049395c.bitwarden.com +carLicense: GK86LN +departmentNumber: 6222 +employeeType: Normal +homePhone: +1 415 278-1454 +initials: A. S. +mobile: +1 415 115-4157 +pager: +1 415 360-7405 +roomNumber: 9636 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bettie Cescon,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bettie Cescon +sn: Cescon +description: This is Bettie Cescon's description +facsimileTelephoneNumber: +1 408 518-8911 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 408 428-6317 +title: Junior Payroll Sales Rep +userPassword: Password1 +uid: CesconB +givenName: Bettie +mail: CesconB@d0bd6c1a3fa44296a243273f0ddf6cd9.bitwarden.com +carLicense: D4FWUD +departmentNumber: 6763 +employeeType: Normal +homePhone: +1 408 338-1892 +initials: B. C. +mobile: +1 408 267-6514 +pager: +1 408 368-3740 +roomNumber: 9070 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Maureene Weiser,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maureene Weiser +sn: Weiser +description: This is Maureene Weiser's description +facsimileTelephoneNumber: +1 804 632-4184 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 703-7175 +title: Master Human Resources Architect +userPassword: Password1 +uid: WeiserM +givenName: Maureene +mail: WeiserM@0c871b0ecc1a46debc66287e828580e3.bitwarden.com +carLicense: 3DO9QD +departmentNumber: 5086 +employeeType: Contract +homePhone: +1 804 674-3796 +initials: M. W. +mobile: +1 804 548-3272 +pager: +1 804 835-1877 +roomNumber: 8901 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Melisent Annibale,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisent Annibale +sn: Annibale +description: This is Melisent Annibale's description +facsimileTelephoneNumber: +1 408 246-3911 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 342-7244 +title: Junior Janitorial Director +userPassword: Password1 +uid: AnnibalM +givenName: Melisent +mail: AnnibalM@6882bb306b30484eac03893eca277bd3.bitwarden.com +carLicense: DTWJ2S +departmentNumber: 3406 +employeeType: Normal +homePhone: +1 408 744-3239 +initials: M. A. +mobile: +1 408 702-7423 +pager: +1 408 899-6285 +roomNumber: 9502 +manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com + +dn: cn=Bonnie Corse,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bonnie Corse +sn: Corse +description: This is Bonnie Corse's description +facsimileTelephoneNumber: +1 206 143-8977 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 679-2906 +title: Associate Peons President +userPassword: Password1 +uid: CorseB +givenName: Bonnie +mail: CorseB@eef26e16e3d34907ba8bf0f347b63dd8.bitwarden.com +carLicense: A1TDJE +departmentNumber: 1134 +employeeType: Normal +homePhone: +1 206 710-7089 +initials: B. C. +mobile: +1 206 416-7315 +pager: +1 206 608-8877 +roomNumber: 8660 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Querida Gertridge,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Querida Gertridge +sn: Gertridge +description: This is Querida Gertridge's description +facsimileTelephoneNumber: +1 804 144-1134 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 804 321-5798 +title: Master Management Sales Rep +userPassword: Password1 +uid: GertridQ +givenName: Querida +mail: GertridQ@848de2e1032948c1b5d78b7a20263232.bitwarden.com +carLicense: U4X956 +departmentNumber: 5498 +employeeType: Contract +homePhone: +1 804 128-4352 +initials: Q. G. +mobile: +1 804 968-4754 +pager: +1 804 505-8652 +roomNumber: 8873 +manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lily Stites,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lily Stites +sn: Stites +description: This is Lily Stites's description +facsimileTelephoneNumber: +1 415 823-6933 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 415 688-4229 +title: Chief Payroll Evangelist +userPassword: Password1 +uid: StitesL +givenName: Lily +mail: StitesL@296f507ac233431e85903a87c2e1452b.bitwarden.com +carLicense: SNDH5H +departmentNumber: 2684 +employeeType: Employee +homePhone: +1 415 976-1575 +initials: L. S. +mobile: +1 415 267-1875 +pager: +1 415 556-1258 +roomNumber: 8490 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Woon Klimon,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Woon Klimon +sn: Klimon +description: This is Woon Klimon's description +facsimileTelephoneNumber: +1 408 995-6041 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 408 631-1775 +title: Master Management Czar +userPassword: Password1 +uid: KlimonW +givenName: Woon +mail: KlimonW@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com +carLicense: 489TU2 +departmentNumber: 8507 +employeeType: Contract +homePhone: +1 408 689-1989 +initials: W. K. +mobile: +1 408 517-3083 +pager: +1 408 938-7538 +roomNumber: 8913 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Carlota Oros,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlota Oros +sn: Oros +description: This is Carlota Oros's description +facsimileTelephoneNumber: +1 510 899-2876 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 510 372-4975 +title: Chief Payroll Warrior +userPassword: Password1 +uid: OrosC +givenName: Carlota +mail: OrosC@d3825e009de74b68a881393dca2712eb.bitwarden.com +carLicense: LX1970 +departmentNumber: 8045 +employeeType: Employee +homePhone: +1 510 579-8369 +initials: C. O. +mobile: +1 510 435-7733 +pager: +1 510 436-2049 +roomNumber: 8051 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gil Spurway,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gil Spurway +sn: Spurway +description: This is Gil Spurway's description +facsimileTelephoneNumber: +1 206 642-1941 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 206 128-7366 +title: Master Human Resources Figurehead +userPassword: Password1 +uid: SpurwayG +givenName: Gil +mail: SpurwayG@51d1be7d90e1479f9d4a84f4cba3ea09.bitwarden.com +carLicense: 51VW72 +departmentNumber: 6260 +employeeType: Employee +homePhone: +1 206 666-9978 +initials: G. S. +mobile: +1 206 209-3859 +pager: +1 206 400-5612 +roomNumber: 8881 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Licha Weinbender,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Licha Weinbender +sn: Weinbender +description: This is Licha Weinbender's description +facsimileTelephoneNumber: +1 213 943-5950 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 213 420-3799 +title: Associate Product Development Czar +userPassword: Password1 +uid: WeinbenL +givenName: Licha +mail: WeinbenL@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com +carLicense: XM8XAD +departmentNumber: 3239 +employeeType: Employee +homePhone: +1 213 773-2004 +initials: L. W. +mobile: +1 213 551-4789 +pager: +1 213 494-1835 +roomNumber: 8146 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mirabella Awano,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirabella Awano +sn: Awano +description: This is Mirabella Awano's description +facsimileTelephoneNumber: +1 408 968-2188 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 408 598-5679 +title: Master Product Testing Mascot +userPassword: Password1 +uid: AwanoM +givenName: Mirabella +mail: AwanoM@185b51f28c7f46da96dbfb585fb3e90d.bitwarden.com +carLicense: CV0TS4 +departmentNumber: 4379 +employeeType: Normal +homePhone: +1 408 540-5500 +initials: M. A. +mobile: +1 408 183-1799 +pager: +1 408 274-4507 +roomNumber: 8567 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lura Centis,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lura Centis +sn: Centis +description: This is Lura Centis's description +facsimileTelephoneNumber: +1 510 168-2848 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 399-2733 +title: Chief Product Testing Technician +userPassword: Password1 +uid: CentisL +givenName: Lura +mail: CentisL@4f40a523634a450ca8245b527c300f0b.bitwarden.com +carLicense: X0DMX6 +departmentNumber: 5048 +employeeType: Employee +homePhone: +1 510 920-4152 +initials: L. C. +mobile: +1 510 237-2300 +pager: +1 510 218-1384 +roomNumber: 9602 +manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imogen Trasmundi +sn: Trasmundi +description: This is Imogen Trasmundi's description +facsimileTelephoneNumber: +1 818 230-1577 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 556-9964 +title: Chief Product Development Punk +userPassword: Password1 +uid: TrasmunI +givenName: Imogen +mail: TrasmunI@f9c4f76269ed44f38b1b08bb540ca247.bitwarden.com +carLicense: P890WK +departmentNumber: 9723 +employeeType: Contract +homePhone: +1 818 672-6335 +initials: I. T. +mobile: +1 818 875-7971 +pager: +1 818 757-8600 +roomNumber: 9786 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Aveline Berhane,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aveline Berhane +sn: Berhane +description: This is Aveline Berhane's description +facsimileTelephoneNumber: +1 804 291-1434 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 941-6253 +title: Associate Management Janitor +userPassword: Password1 +uid: BerhaneA +givenName: Aveline +mail: BerhaneA@b4304c61f77b49d7b5286781d16ef287.bitwarden.com +carLicense: 9ENMN6 +departmentNumber: 3470 +employeeType: Contract +homePhone: +1 804 595-3982 +initials: A. B. +mobile: +1 804 513-8688 +pager: +1 804 995-2326 +roomNumber: 8680 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanGuy Loewen +sn: Loewen +description: This is JeanGuy Loewen's description +facsimileTelephoneNumber: +1 510 358-7247 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 700-6382 +title: Associate Administrative Assistant +userPassword: Password1 +uid: LoewenJ +givenName: JeanGuy +mail: LoewenJ@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com +carLicense: HRKYI1 +departmentNumber: 2669 +employeeType: Normal +homePhone: +1 510 779-5108 +initials: J. L. +mobile: +1 510 579-1715 +pager: +1 510 380-9721 +roomNumber: 8771 +manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Billy Costantino,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Billy Costantino +sn: Costantino +description: This is Billy Costantino's description +facsimileTelephoneNumber: +1 804 626-4605 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 804 594-9337 +title: Supreme Payroll Engineer +userPassword: Password1 +uid: CostantB +givenName: Billy +mail: CostantB@721925c092ab4630a360f318924bd972.bitwarden.com +carLicense: UAWMCG +departmentNumber: 8265 +employeeType: Contract +homePhone: +1 804 158-3418 +initials: B. C. +mobile: +1 804 454-4668 +pager: +1 804 803-7843 +roomNumber: 8092 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dorrie Fortner,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorrie Fortner +sn: Fortner +description: This is Dorrie Fortner's description +facsimileTelephoneNumber: +1 408 102-1050 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 684-6042 +title: Supreme Product Development Director +userPassword: Password1 +uid: FortnerD +givenName: Dorrie +mail: FortnerD@17e6e9bce9be4a43964f6f155661a373.bitwarden.com +carLicense: KARVVY +departmentNumber: 7657 +employeeType: Normal +homePhone: +1 408 510-1461 +initials: D. F. +mobile: +1 408 724-9239 +pager: +1 408 353-2945 +roomNumber: 8626 +manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stephannie Holcombe +sn: Holcombe +description: This is Stephannie Holcombe's description +facsimileTelephoneNumber: +1 510 434-5418 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 510 588-3701 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: HolcombS +givenName: Stephannie +mail: HolcombS@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com +carLicense: 2HUV11 +departmentNumber: 5202 +employeeType: Contract +homePhone: +1 510 734-6064 +initials: S. H. +mobile: +1 510 501-3786 +pager: +1 510 102-9401 +roomNumber: 8581 +manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karlee Vanwormhoudt +sn: Vanwormhoudt +description: This is Karlee Vanwormhoudt's description +facsimileTelephoneNumber: +1 213 705-9345 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 422-2016 +title: Associate Peons Assistant +userPassword: Password1 +uid: VanwormK +givenName: Karlee +mail: VanwormK@457942790eaf4536a925540b16e6a49f.bitwarden.com +carLicense: 7MEIDE +departmentNumber: 9841 +employeeType: Normal +homePhone: +1 213 935-4569 +initials: K. V. +mobile: +1 213 850-1971 +pager: +1 213 820-6128 +roomNumber: 8990 +manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Carleen Toly,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carleen Toly +sn: Toly +description: This is Carleen Toly's description +facsimileTelephoneNumber: +1 510 793-9544 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 510 220-7064 +title: Junior Human Resources Dictator +userPassword: Password1 +uid: TolyC +givenName: Carleen +mail: TolyC@388bb63ae18342968e266bd18c49e361.bitwarden.com +carLicense: OY49D9 +departmentNumber: 9376 +employeeType: Contract +homePhone: +1 510 429-4314 +initials: C. T. +mobile: +1 510 161-2499 +pager: +1 510 634-8818 +roomNumber: 8028 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Vijay Nassr,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vijay Nassr +sn: Nassr +description: This is Vijay Nassr's description +facsimileTelephoneNumber: +1 818 445-1881 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 722-8873 +title: Chief Management Sales Rep +userPassword: Password1 +uid: NassrV +givenName: Vijay +mail: NassrV@e5b7fb51703341b6b79b40d29cc46235.bitwarden.com +carLicense: L48B09 +departmentNumber: 1736 +employeeType: Normal +homePhone: +1 818 351-2411 +initials: V. N. +mobile: +1 818 548-6493 +pager: +1 818 404-5834 +roomNumber: 9168 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sandro Gorius,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandro Gorius +sn: Gorius +description: This is Sandro Gorius's description +facsimileTelephoneNumber: +1 510 790-8501 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 747-9804 +title: Master Human Resources Technician +userPassword: Password1 +uid: GoriusS +givenName: Sandro +mail: GoriusS@d92356164b8e41ecbc89a75089ba1ed5.bitwarden.com +carLicense: 0778YW +departmentNumber: 8194 +employeeType: Contract +homePhone: +1 510 746-1286 +initials: S. G. +mobile: +1 510 789-8695 +pager: +1 510 890-9064 +roomNumber: 8093 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=He Crowder,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: He Crowder +sn: Crowder +description: This is He Crowder's description +facsimileTelephoneNumber: +1 510 772-6411 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 953-2109 +title: Junior Peons Writer +userPassword: Password1 +uid: CrowderH +givenName: He +mail: CrowderH@403ad564c08e47b8824594419bf3ec17.bitwarden.com +carLicense: 0HIOIA +departmentNumber: 4807 +employeeType: Normal +homePhone: +1 510 465-6647 +initials: H. C. +mobile: +1 510 424-7225 +pager: +1 510 596-9490 +roomNumber: 8364 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Atta Kutch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atta Kutch +sn: Kutch +description: This is Atta Kutch's description +facsimileTelephoneNumber: +1 415 991-5759 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 415 238-8112 +title: Master Management Evangelist +userPassword: Password1 +uid: KutchA +givenName: Atta +mail: KutchA@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com +carLicense: IEHT8I +departmentNumber: 6424 +employeeType: Normal +homePhone: +1 415 957-3857 +initials: A. K. +mobile: +1 415 888-8981 +pager: +1 415 986-9995 +roomNumber: 9207 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Devon Kaudel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Devon Kaudel +sn: Kaudel +description: This is Devon Kaudel's description +facsimileTelephoneNumber: +1 415 187-8393 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 415 916-7713 +title: Supreme Administrative Vice President +userPassword: Password1 +uid: KaudelD +givenName: Devon +mail: KaudelD@d98f77a80f7c4109b5fdb982a57a9e6b.bitwarden.com +carLicense: XH0M9N +departmentNumber: 9687 +employeeType: Employee +homePhone: +1 415 151-6721 +initials: D. K. +mobile: +1 415 981-5706 +pager: +1 415 730-5511 +roomNumber: 8445 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Deidre Cirulli,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deidre Cirulli +sn: Cirulli +description: This is Deidre Cirulli's description +facsimileTelephoneNumber: +1 415 815-2062 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 415 483-6132 +title: Chief Peons Punk +userPassword: Password1 +uid: CirulliD +givenName: Deidre +mail: CirulliD@da7bd2be911046399d0c6417c3572f36.bitwarden.com +carLicense: 1MFIXH +departmentNumber: 6690 +employeeType: Normal +homePhone: +1 415 235-8890 +initials: D. C. +mobile: +1 415 366-3360 +pager: +1 415 402-8432 +roomNumber: 8981 +manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kala Bourget,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kala Bourget +sn: Bourget +description: This is Kala Bourget's description +facsimileTelephoneNumber: +1 510 327-5058 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 510 938-4991 +title: Associate Peons Consultant +userPassword: Password1 +uid: BourgetK +givenName: Kala +mail: BourgetK@7ed928ce83094d698eeb083bd149cb2f.bitwarden.com +carLicense: 09U8Q0 +departmentNumber: 3566 +employeeType: Normal +homePhone: +1 510 335-4535 +initials: K. B. +mobile: +1 510 664-3058 +pager: +1 510 962-9471 +roomNumber: 9649 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Charo Hembrick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Charo Hembrick +sn: Hembrick +description: This is Charo Hembrick's description +facsimileTelephoneNumber: +1 804 976-3526 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 130-5745 +title: Junior Payroll Warrior +userPassword: Password1 +uid: HembricC +givenName: Charo +mail: HembricC@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com +carLicense: FDEDSS +departmentNumber: 8551 +employeeType: Employee +homePhone: +1 804 158-8129 +initials: C. H. +mobile: +1 804 333-5658 +pager: +1 804 655-8419 +roomNumber: 8014 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Janene Torrell,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janene Torrell +sn: Torrell +description: This is Janene Torrell's description +facsimileTelephoneNumber: +1 818 788-3221 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 849-1253 +title: Chief Product Testing Architect +userPassword: Password1 +uid: TorrellJ +givenName: Janene +mail: TorrellJ@4cc04e0f745f47c7be4e632269c6eb14.bitwarden.com +carLicense: WO3V2A +departmentNumber: 8306 +employeeType: Employee +homePhone: +1 818 259-3111 +initials: J. T. +mobile: +1 818 462-5392 +pager: +1 818 242-7360 +roomNumber: 9333 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Eben Shayanpour,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eben Shayanpour +sn: Shayanpour +description: This is Eben Shayanpour's description +facsimileTelephoneNumber: +1 206 362-8718 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 206 985-7259 +title: Master Product Development Janitor +userPassword: Password1 +uid: ShayanpE +givenName: Eben +mail: ShayanpE@13ff1430cb9943818286488abb33cd82.bitwarden.com +carLicense: X7ORN8 +departmentNumber: 8011 +employeeType: Normal +homePhone: +1 206 897-4425 +initials: E. S. +mobile: +1 206 194-6717 +pager: +1 206 122-4003 +roomNumber: 9346 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ethelyn Rozier +sn: Rozier +description: This is Ethelyn Rozier's description +facsimileTelephoneNumber: +1 206 340-9520 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 206 834-4090 +title: Chief Janitorial Dictator +userPassword: Password1 +uid: RozierE +givenName: Ethelyn +mail: RozierE@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com +carLicense: L4RGS3 +departmentNumber: 7559 +employeeType: Employee +homePhone: +1 206 178-8980 +initials: E. R. +mobile: +1 206 896-8517 +pager: +1 206 669-9729 +roomNumber: 9273 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Yves Dhir,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yves Dhir +sn: Dhir +description: This is Yves Dhir's description +facsimileTelephoneNumber: +1 408 151-2947 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 730-8502 +title: Master Payroll Dictator +userPassword: Password1 +uid: DhirY +givenName: Yves +mail: DhirY@ef09bde80592442abb2f639748abce27.bitwarden.com +carLicense: 4B2DOT +departmentNumber: 3748 +employeeType: Contract +homePhone: +1 408 707-5343 +initials: Y. D. +mobile: +1 408 793-4887 +pager: +1 408 192-7603 +roomNumber: 8864 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tildy Bnrlsi +sn: Bnrlsi +description: This is Tildy Bnrlsi's description +facsimileTelephoneNumber: +1 818 960-8006 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 818 633-2166 +title: Associate Human Resources Admin +userPassword: Password1 +uid: BnrlsiT +givenName: Tildy +mail: BnrlsiT@9c774f2280a1402ea1c5682381735a11.bitwarden.com +carLicense: FP4OUX +departmentNumber: 5532 +employeeType: Employee +homePhone: +1 818 972-6511 +initials: T. B. +mobile: +1 818 335-3773 +pager: +1 818 416-5100 +roomNumber: 9765 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aile Frink,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aile Frink +sn: Frink +description: This is Aile Frink's description +facsimileTelephoneNumber: +1 804 595-3859 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 422-6977 +title: Master Product Development Developer +userPassword: Password1 +uid: FrinkA +givenName: Aile +mail: FrinkA@3c0162b1baa744cf93a13a4dd3e63a95.bitwarden.com +carLicense: S4USDK +departmentNumber: 8641 +employeeType: Employee +homePhone: +1 804 391-5916 +initials: A. F. +mobile: +1 804 665-4351 +pager: +1 804 487-2503 +roomNumber: 8440 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shailendra Calhoun +sn: Calhoun +description: This is Shailendra Calhoun's description +facsimileTelephoneNumber: +1 818 118-7424 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 440-6409 +title: Junior Administrative Warrior +userPassword: Password1 +uid: CalhounS +givenName: Shailendra +mail: CalhounS@939e830de4504aab81a7c388f1546624.bitwarden.com +carLicense: VOTV5Q +departmentNumber: 6390 +employeeType: Normal +homePhone: +1 818 569-7786 +initials: S. C. +mobile: +1 818 720-9196 +pager: +1 818 960-6411 +roomNumber: 8582 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shirlene BrindAmour +sn: BrindAmour +description: This is Shirlene BrindAmour's description +facsimileTelephoneNumber: +1 213 916-5713 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 213 196-2211 +title: Chief Product Testing Architect +userPassword: Password1 +uid: BrindAmS +givenName: Shirlene +mail: BrindAmS@1726f5bfacd044bf871463e64c567d5e.bitwarden.com +carLicense: 6KGOUI +departmentNumber: 9811 +employeeType: Normal +homePhone: +1 213 119-5470 +initials: S. B. +mobile: +1 213 595-5952 +pager: +1 213 357-7012 +roomNumber: 9097 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Damara Jaswal,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Damara Jaswal +sn: Jaswal +description: This is Damara Jaswal's description +facsimileTelephoneNumber: +1 415 466-5090 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 884-9337 +title: Junior Product Testing Czar +userPassword: Password1 +uid: JaswalD +givenName: Damara +mail: JaswalD@ac7712596f924826bb4a05f6697a0ee3.bitwarden.com +carLicense: 0WENPU +departmentNumber: 5880 +employeeType: Contract +homePhone: +1 415 302-3922 +initials: D. J. +mobile: +1 415 159-7425 +pager: +1 415 467-8565 +roomNumber: 9208 +manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ethelin Girotti,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ethelin Girotti +sn: Girotti +description: This is Ethelin Girotti's description +facsimileTelephoneNumber: +1 206 146-1066 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 206 105-3716 +title: Junior Administrative Writer +userPassword: Password1 +uid: GirottiE +givenName: Ethelin +mail: GirottiE@b827ba5736ae48268de38db3e9e259c3.bitwarden.com +carLicense: DNKGH9 +departmentNumber: 8729 +employeeType: Employee +homePhone: +1 206 407-7949 +initials: E. G. +mobile: +1 206 976-5839 +pager: +1 206 456-4360 +roomNumber: 9783 +manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pramod Foessl,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pramod Foessl +sn: Foessl +description: This is Pramod Foessl's description +facsimileTelephoneNumber: +1 213 289-7891 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 811-9773 +title: Junior Product Testing Artist +userPassword: Password1 +uid: FoesslP +givenName: Pramod +mail: FoesslP@39726a1b008d411d8a28b85a63102ac3.bitwarden.com +carLicense: J8NUA8 +departmentNumber: 2941 +employeeType: Normal +homePhone: +1 213 652-6330 +initials: P. F. +mobile: +1 213 556-8793 +pager: +1 213 152-6903 +roomNumber: 9645 +manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Octavia Handschy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Octavia Handschy +sn: Handschy +description: This is Octavia Handschy's description +facsimileTelephoneNumber: +1 213 519-6564 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 609-3634 +title: Junior Peons Figurehead +userPassword: Password1 +uid: HandschO +givenName: Octavia +mail: HandschO@d121b17d8b8d40b599281654effa97ce.bitwarden.com +carLicense: R353BH +departmentNumber: 6830 +employeeType: Normal +homePhone: +1 213 606-1600 +initials: O. H. +mobile: +1 213 101-7686 +pager: +1 213 525-6318 +roomNumber: 9754 +manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kerstin Nandi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kerstin Nandi +sn: Nandi +description: This is Kerstin Nandi's description +facsimileTelephoneNumber: +1 206 969-1431 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 406-3956 +title: Chief Management Czar +userPassword: Password1 +uid: NandiK +givenName: Kerstin +mail: NandiK@353b753321aa4a97a115856474e231b6.bitwarden.com +carLicense: FYSD93 +departmentNumber: 4870 +employeeType: Employee +homePhone: +1 206 894-9989 +initials: K. N. +mobile: +1 206 866-4587 +pager: +1 206 381-4890 +roomNumber: 9079 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Elwood Bouick,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elwood Bouick +sn: Bouick +description: This is Elwood Bouick's description +facsimileTelephoneNumber: +1 206 106-8200 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 597-1209 +title: Supreme Product Development Director +userPassword: Password1 +uid: BouickE +givenName: Elwood +mail: BouickE@2246db4eb56e489a8d8791baa981b362.bitwarden.com +carLicense: 41YTBR +departmentNumber: 1172 +employeeType: Employee +homePhone: +1 206 679-7308 +initials: E. B. +mobile: +1 206 102-6752 +pager: +1 206 729-3205 +roomNumber: 8283 +manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clarence Dpu,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarence Dpu +sn: Dpu +description: This is Clarence Dpu's description +facsimileTelephoneNumber: +1 206 356-2021 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 870-3720 +title: Chief Management Stooge +userPassword: Password1 +uid: DpuC +givenName: Clarence +mail: DpuC@61fe9b3be1774f2d947cd8507fb19a6a.bitwarden.com +carLicense: 76C0W8 +departmentNumber: 4638 +employeeType: Employee +homePhone: +1 206 359-7201 +initials: C. D. +mobile: +1 206 439-9555 +pager: +1 206 504-3656 +roomNumber: 9029 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Shama Norton,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shama Norton +sn: Norton +description: This is Shama Norton's description +facsimileTelephoneNumber: +1 510 725-7174 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 510 636-7256 +title: Supreme Janitorial Writer +userPassword: Password1 +uid: NortonS +givenName: Shama +mail: NortonS@7c673260c1654ab39a2cf9c0221276cf.bitwarden.com +carLicense: KUPW87 +departmentNumber: 1673 +employeeType: Contract +homePhone: +1 510 842-8648 +initials: S. N. +mobile: +1 510 683-5663 +pager: +1 510 685-2735 +roomNumber: 8754 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Vo Sauer,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vo Sauer +sn: Sauer +description: This is Vo Sauer's description +facsimileTelephoneNumber: +1 408 419-7544 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 702-7453 +title: Junior Payroll Director +userPassword: Password1 +uid: SauerV +givenName: Vo +mail: SauerV@503fe0b136ce4292a59167d529c63c6f.bitwarden.com +carLicense: 3OOG5A +departmentNumber: 5202 +employeeType: Normal +homePhone: +1 408 342-9550 +initials: V. S. +mobile: +1 408 548-2702 +pager: +1 408 492-4060 +roomNumber: 9258 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gilberte Ferland,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilberte Ferland +sn: Ferland +description: This is Gilberte Ferland's description +facsimileTelephoneNumber: +1 510 357-8019 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 149-6641 +title: Junior Administrative Janitor +userPassword: Password1 +uid: FerlandG +givenName: Gilberte +mail: FerlandG@dfcb2a19ea66423b8c7753e337720a1d.bitwarden.com +carLicense: 1VGUD1 +departmentNumber: 6286 +employeeType: Contract +homePhone: +1 510 606-2892 +initials: G. F. +mobile: +1 510 128-1963 +pager: +1 510 972-3568 +roomNumber: 8097 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Valeria Harmon,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Valeria Harmon +sn: Harmon +description: This is Valeria Harmon's description +facsimileTelephoneNumber: +1 415 296-1464 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 415 101-1364 +title: Junior Janitorial Assistant +userPassword: Password1 +uid: HarmonV +givenName: Valeria +mail: HarmonV@15697ed59de04051be420308b9e31bf0.bitwarden.com +carLicense: ICHDVA +departmentNumber: 8029 +employeeType: Employee +homePhone: +1 415 721-9607 +initials: V. H. +mobile: +1 415 637-7646 +pager: +1 415 723-9777 +roomNumber: 8991 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francisca Ogrodnik +sn: Ogrodnik +description: This is Francisca Ogrodnik's description +facsimileTelephoneNumber: +1 415 506-2076 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 415 459-4056 +title: Supreme Administrative Technician +userPassword: Password1 +uid: OgrodniF +givenName: Francisca +mail: OgrodniF@003a19d1bf9146d984f813f1bd527371.bitwarden.com +carLicense: NYDUTH +departmentNumber: 3111 +employeeType: Contract +homePhone: +1 415 105-4910 +initials: F. O. +mobile: +1 415 864-7384 +pager: +1 415 380-2765 +roomNumber: 9833 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dorthy Youngman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorthy Youngman +sn: Youngman +description: This is Dorthy Youngman's description +facsimileTelephoneNumber: +1 408 270-9779 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 408 205-1958 +title: Supreme Management Punk +userPassword: Password1 +uid: YoungmaD +givenName: Dorthy +mail: YoungmaD@81b3fb831aa74c6eb047aa19d5ff709c.bitwarden.com +carLicense: GVEJQ7 +departmentNumber: 8792 +employeeType: Employee +homePhone: +1 408 688-5041 +initials: D. Y. +mobile: +1 408 771-5779 +pager: +1 408 257-5507 +roomNumber: 8488 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gilles Litherland,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilles Litherland +sn: Litherland +description: This is Gilles Litherland's description +facsimileTelephoneNumber: +1 408 676-1891 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 408 751-8317 +title: Supreme Payroll Developer +userPassword: Password1 +uid: LitherlG +givenName: Gilles +mail: LitherlG@d3b61e3cc90b49cc9ba1a573da70d77b.bitwarden.com +carLicense: WLANDL +departmentNumber: 7109 +employeeType: Normal +homePhone: +1 408 164-9547 +initials: G. L. +mobile: +1 408 997-2959 +pager: +1 408 912-7599 +roomNumber: 9647 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Erick Wicht,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erick Wicht +sn: Wicht +description: This is Erick Wicht's description +facsimileTelephoneNumber: +1 818 277-3531 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 818 328-5581 +title: Master Peons Consultant +userPassword: Password1 +uid: WichtE +givenName: Erick +mail: WichtE@a0faacd6502f4c289ffd19b314c03e45.bitwarden.com +carLicense: QJ76W3 +departmentNumber: 1843 +employeeType: Employee +homePhone: +1 818 154-4643 +initials: E. W. +mobile: +1 818 431-9998 +pager: +1 818 304-7533 +roomNumber: 8984 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: DeAnna Electronics +sn: Electronics +description: This is DeAnna Electronics's description +facsimileTelephoneNumber: +1 213 169-4475 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 213 344-1359 +title: Junior Janitorial Fellow +userPassword: Password1 +uid: ElectroD +givenName: DeAnna +mail: ElectroD@7070424bb94c4f288a054e30d222335a.bitwarden.com +carLicense: BGM6EC +departmentNumber: 1265 +employeeType: Employee +homePhone: +1 213 232-9978 +initials: D. E. +mobile: +1 213 312-2335 +pager: +1 213 227-2261 +roomNumber: 9370 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Kassie Nava,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kassie Nava +sn: Nava +description: This is Kassie Nava's description +facsimileTelephoneNumber: +1 213 419-1962 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 575-7939 +title: Chief Product Development Assistant +userPassword: Password1 +uid: NavaK +givenName: Kassie +mail: NavaK@7b2b1b92e9ae4fe4a68b2d0b29724ff5.bitwarden.com +carLicense: 85K7FT +departmentNumber: 9324 +employeeType: Contract +homePhone: +1 213 466-7481 +initials: K. N. +mobile: +1 213 978-1591 +pager: +1 213 110-5871 +roomNumber: 8801 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Opaline Ober,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opaline Ober +sn: Ober +description: This is Opaline Ober's description +facsimileTelephoneNumber: +1 804 956-4433 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 804 220-9227 +title: Master Janitorial Madonna +userPassword: Password1 +uid: OberO +givenName: Opaline +mail: OberO@13f66f98b46e4ca78042c5426b60b783.bitwarden.com +carLicense: Y9G7D5 +departmentNumber: 3884 +employeeType: Contract +homePhone: +1 804 886-4063 +initials: O. O. +mobile: +1 804 831-3758 +pager: +1 804 263-5543 +roomNumber: 8657 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ronneke Gilles +sn: Gilles +description: This is Ronneke Gilles's description +facsimileTelephoneNumber: +1 408 315-1245 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 408 946-6472 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: GillesR +givenName: Ronneke +mail: GillesR@bf3722e960fc4d239d118bd3637206be.bitwarden.com +carLicense: BCGISU +departmentNumber: 4387 +employeeType: Employee +homePhone: +1 408 478-6110 +initials: R. G. +mobile: +1 408 524-6565 +pager: +1 408 281-9877 +roomNumber: 9400 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Madan Baab,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madan Baab +sn: Baab +description: This is Madan Baab's description +facsimileTelephoneNumber: +1 408 705-1572 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 903-7945 +title: Supreme Product Development Assistant +userPassword: Password1 +uid: BaabM +givenName: Madan +mail: BaabM@5427bdee75c245c39f1a2b879610cd11.bitwarden.com +carLicense: 0P9VSE +departmentNumber: 6738 +employeeType: Contract +homePhone: +1 408 779-8614 +initials: M. B. +mobile: +1 408 174-2764 +pager: +1 408 809-1839 +roomNumber: 9657 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Htd Hersee,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Htd Hersee +sn: Hersee +description: This is Htd Hersee's description +facsimileTelephoneNumber: +1 206 389-8190 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 619-2456 +title: Junior Administrative Consultant +userPassword: Password1 +uid: HerseeH +givenName: Htd +mail: HerseeH@64c2fa20001b495182e976975782823e.bitwarden.com +carLicense: IHNENM +departmentNumber: 1292 +employeeType: Contract +homePhone: +1 206 108-4529 +initials: H. H. +mobile: +1 206 396-6582 +pager: +1 206 467-7000 +roomNumber: 9673 +manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dorita Anker,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorita Anker +sn: Anker +description: This is Dorita Anker's description +facsimileTelephoneNumber: +1 818 178-9762 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 818 339-8540 +title: Supreme Product Testing Architect +userPassword: Password1 +uid: AnkerD +givenName: Dorita +mail: AnkerD@ba86ce5a5ce74352a483e9becf24707d.bitwarden.com +carLicense: O6DCAY +departmentNumber: 1261 +employeeType: Contract +homePhone: +1 818 120-9769 +initials: D. A. +mobile: +1 818 940-1691 +pager: +1 818 927-7849 +roomNumber: 8084 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Christopher Cohea,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christopher Cohea +sn: Cohea +description: This is Christopher Cohea's description +facsimileTelephoneNumber: +1 415 672-8606 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 415 587-3636 +title: Junior Management Pinhead +userPassword: Password1 +uid: CoheaC +givenName: Christopher +mail: CoheaC@364a7b91d06e4e96b9f9da53be963330.bitwarden.com +carLicense: WPVMIP +departmentNumber: 7833 +employeeType: Normal +homePhone: +1 415 294-8591 +initials: C. C. +mobile: +1 415 424-1005 +pager: +1 415 498-3714 +roomNumber: 9646 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Robbie Bunting,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robbie Bunting +sn: Bunting +description: This is Robbie Bunting's description +facsimileTelephoneNumber: +1 415 633-1398 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 900-8292 +title: Supreme Human Resources Admin +userPassword: Password1 +uid: BuntingR +givenName: Robbie +mail: BuntingR@ef2d41c14b454c68ae998d020dbd8441.bitwarden.com +carLicense: UAOEC6 +departmentNumber: 8521 +employeeType: Contract +homePhone: +1 415 599-2901 +initials: R. B. +mobile: +1 415 845-5409 +pager: +1 415 995-8972 +roomNumber: 9945 +manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Antonetta Vitacco +sn: Vitacco +description: This is Antonetta Vitacco's description +facsimileTelephoneNumber: +1 804 520-9853 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 236-8309 +title: Associate Administrative Stooge +userPassword: Password1 +uid: VitaccoA +givenName: Antonetta +mail: VitaccoA@d8cda96778684be5a884f9cf0be697ce.bitwarden.com +carLicense: ECU4XV +departmentNumber: 5776 +employeeType: Employee +homePhone: +1 804 577-7337 +initials: A. V. +mobile: +1 804 557-5003 +pager: +1 804 591-6054 +roomNumber: 9437 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cammy GarciaLamarca +sn: GarciaLamarca +description: This is Cammy GarciaLamarca's description +facsimileTelephoneNumber: +1 510 575-7653 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 510 276-6465 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: GarciaLC +givenName: Cammy +mail: GarciaLC@47835e50e03e464aa819e55cdfc4261b.bitwarden.com +carLicense: UHJ6OA +departmentNumber: 7726 +employeeType: Contract +homePhone: +1 510 377-1281 +initials: C. G. +mobile: +1 510 198-4405 +pager: +1 510 938-1839 +roomNumber: 8086 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Masood Shipe,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Masood Shipe +sn: Shipe +description: This is Masood Shipe's description +facsimileTelephoneNumber: +1 818 350-1664 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 215-6933 +title: Associate Management Mascot +userPassword: Password1 +uid: ShipeM +givenName: Masood +mail: ShipeM@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com +carLicense: B0NTO1 +departmentNumber: 2031 +employeeType: Contract +homePhone: +1 818 377-1825 +initials: M. S. +mobile: +1 818 854-2638 +pager: +1 818 814-6676 +roomNumber: 9627 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abbye Matsuzawa +sn: Matsuzawa +description: This is Abbye Matsuzawa's description +facsimileTelephoneNumber: +1 415 797-5603 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 415 270-6708 +title: Associate Janitorial Writer +userPassword: Password1 +uid: MatsuzaA +givenName: Abbye +mail: MatsuzaA@1f4900f32c02427db7ff10eff22275bb.bitwarden.com +carLicense: BEC4I4 +departmentNumber: 7061 +employeeType: Contract +homePhone: +1 415 363-4787 +initials: A. M. +mobile: +1 415 312-1035 +pager: +1 415 101-7144 +roomNumber: 8303 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sandeep McLachlan +sn: McLachlan +description: This is Sandeep McLachlan's description +facsimileTelephoneNumber: +1 510 696-8096 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 690-7860 +title: Master Janitorial Admin +userPassword: Password1 +uid: McLachlS +givenName: Sandeep +mail: McLachlS@4fdb4b1142dd43e2b745e38a2e8dcfc4.bitwarden.com +carLicense: Q2AJAC +departmentNumber: 5116 +employeeType: Normal +homePhone: +1 510 429-1341 +initials: S. M. +mobile: +1 510 185-2107 +pager: +1 510 567-9152 +roomNumber: 8725 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Bernardina Sreedhar,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernardina Sreedhar +sn: Sreedhar +description: This is Bernardina Sreedhar's description +facsimileTelephoneNumber: +1 510 224-7563 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 510 403-7584 +title: Master Management Pinhead +userPassword: Password1 +uid: SreedhaB +givenName: Bernardina +mail: SreedhaB@e1b5546a5ab54f1a8c4afd4caf48fb6f.bitwarden.com +carLicense: V41ETR +departmentNumber: 4985 +employeeType: Normal +homePhone: +1 510 837-8209 +initials: B. S. +mobile: +1 510 159-2831 +pager: +1 510 659-6512 +roomNumber: 9947 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Atl Corbin,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Atl Corbin +sn: Corbin +description: This is Atl Corbin's description +facsimileTelephoneNumber: +1 206 481-6839 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 259-4206 +title: Supreme Product Testing Punk +userPassword: Password1 +uid: CorbinA +givenName: Atl +mail: CorbinA@31088ab6ae1c44e2b8845b41b99020c2.bitwarden.com +carLicense: V8USCT +departmentNumber: 7674 +employeeType: Employee +homePhone: +1 206 657-5936 +initials: A. C. +mobile: +1 206 507-9705 +pager: +1 206 732-7598 +roomNumber: 8817 +manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alice Knighton,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alice Knighton +sn: Knighton +description: This is Alice Knighton's description +facsimileTelephoneNumber: +1 804 331-5776 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 804 445-6378 +title: Master Management Architect +userPassword: Password1 +uid: KnightoA +givenName: Alice +mail: KnightoA@cb07970b0c0045b19cc41917f946567f.bitwarden.com +carLicense: XKJGQS +departmentNumber: 9131 +employeeType: Contract +homePhone: +1 804 947-2724 +initials: A. K. +mobile: +1 804 444-4328 +pager: +1 804 116-5146 +roomNumber: 9092 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fern Okafo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fern Okafo +sn: Okafo +description: This is Fern Okafo's description +facsimileTelephoneNumber: +1 213 383-8297 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 213 382-6092 +title: Associate Product Development Dictator +userPassword: Password1 +uid: OkafoF +givenName: Fern +mail: OkafoF@387cb4eeb42b453d9fdeaffd6fead144.bitwarden.com +carLicense: ELRGYC +departmentNumber: 9383 +employeeType: Contract +homePhone: +1 213 112-1113 +initials: F. O. +mobile: +1 213 922-8997 +pager: +1 213 448-3930 +roomNumber: 8810 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Brietta Dupras,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brietta Dupras +sn: Dupras +description: This is Brietta Dupras's description +facsimileTelephoneNumber: +1 415 321-8079 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 167-7227 +title: Associate Management Director +userPassword: Password1 +uid: DuprasB +givenName: Brietta +mail: DuprasB@64f2029803c84bd485b5906422a02667.bitwarden.com +carLicense: 0EBAHY +departmentNumber: 6890 +employeeType: Employee +homePhone: +1 415 730-5825 +initials: B. D. +mobile: +1 415 553-2023 +pager: +1 415 997-9548 +roomNumber: 8951 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Wanda Becker,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wanda Becker +sn: Becker +description: This is Wanda Becker's description +facsimileTelephoneNumber: +1 408 758-8017 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 408 740-2823 +title: Master Human Resources Grunt +userPassword: Password1 +uid: BeckerW +givenName: Wanda +mail: BeckerW@a6318282a95143ad9eb6eec2fd89dea7.bitwarden.com +carLicense: D0FI63 +departmentNumber: 9551 +employeeType: Normal +homePhone: +1 408 480-9718 +initials: W. B. +mobile: +1 408 587-8493 +pager: +1 408 375-1749 +roomNumber: 8931 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gerben Kozlowski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerben Kozlowski +sn: Kozlowski +description: This is Gerben Kozlowski's description +facsimileTelephoneNumber: +1 510 554-5899 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 216-4416 +title: Supreme Management Manager +userPassword: Password1 +uid: KozlowsG +givenName: Gerben +mail: KozlowsG@ef62870980d64d4ebbfd1c03f4cab294.bitwarden.com +carLicense: O8MWDO +departmentNumber: 7627 +employeeType: Contract +homePhone: +1 510 251-4844 +initials: G. K. +mobile: +1 510 939-6231 +pager: +1 510 327-3952 +roomNumber: 8971 +manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Maynard Burness,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maynard Burness +sn: Burness +description: This is Maynard Burness's description +facsimileTelephoneNumber: +1 213 627-5770 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 213 715-1374 +title: Junior Product Development Czar +userPassword: Password1 +uid: BurnessM +givenName: Maynard +mail: BurnessM@520c5bcfe42945ff9a9bc4329f8d9224.bitwarden.com +carLicense: KDEW05 +departmentNumber: 5905 +employeeType: Employee +homePhone: +1 213 175-2870 +initials: M. B. +mobile: +1 213 605-5827 +pager: +1 213 474-6102 +roomNumber: 8394 +manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sylva Milloy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sylva Milloy +sn: Milloy +description: This is Sylva Milloy's description +facsimileTelephoneNumber: +1 408 273-1077 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 408 339-9879 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: MilloyS +givenName: Sylva +mail: MilloyS@804b9151f1ba415a894983275163dae1.bitwarden.com +carLicense: 8NVBJR +departmentNumber: 3851 +employeeType: Normal +homePhone: +1 408 854-3897 +initials: S. M. +mobile: +1 408 260-5536 +pager: +1 408 339-3134 +roomNumber: 9928 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=CheeYin Westphal,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: CheeYin Westphal +sn: Westphal +description: This is CheeYin Westphal's description +facsimileTelephoneNumber: +1 408 492-3765 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 408 171-3650 +title: Associate Administrative Madonna +userPassword: Password1 +uid: WestphaC +givenName: CheeYin +mail: WestphaC@a1372432defa4ccd9584b648a051efd1.bitwarden.com +carLicense: LVRR7W +departmentNumber: 9581 +employeeType: Contract +homePhone: +1 408 539-2451 +initials: C. W. +mobile: +1 408 401-8723 +pager: +1 408 577-7748 +roomNumber: 8763 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ThanhQuoc NadeauDostie +sn: NadeauDostie +description: This is ThanhQuoc NadeauDostie's description +facsimileTelephoneNumber: +1 206 665-3473 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 206 824-3544 +title: Chief Peons Technician +userPassword: Password1 +uid: NadeauDT +givenName: ThanhQuoc +mail: NadeauDT@d457e1580197417888cc4a9c93599471.bitwarden.com +carLicense: OKKBKP +departmentNumber: 4363 +employeeType: Contract +homePhone: +1 206 285-5872 +initials: T. N. +mobile: +1 206 163-6657 +pager: +1 206 977-7581 +roomNumber: 9296 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Bawn McNeal,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bawn McNeal +sn: McNeal +description: This is Bawn McNeal's description +facsimileTelephoneNumber: +1 213 921-7031 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 213 614-6476 +title: Junior Peons Fellow +userPassword: Password1 +uid: McNealB +givenName: Bawn +mail: McNealB@9abf99278fb8488383a30c0af0b67716.bitwarden.com +carLicense: 8OGE5Y +departmentNumber: 8081 +employeeType: Contract +homePhone: +1 213 164-7815 +initials: B. M. +mobile: +1 213 385-3006 +pager: +1 213 151-8354 +roomNumber: 8108 +manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Raine Fogle,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raine Fogle +sn: Fogle +description: This is Raine Fogle's description +facsimileTelephoneNumber: +1 408 360-8959 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 984-1678 +title: Associate Peons Dictator +userPassword: Password1 +uid: FogleR +givenName: Raine +mail: FogleR@cd3e8f43f0dd4d3fb94f3baba8d46ade.bitwarden.com +carLicense: AXLRSB +departmentNumber: 2398 +employeeType: Employee +homePhone: +1 408 480-3206 +initials: R. F. +mobile: +1 408 917-7985 +pager: +1 408 345-5452 +roomNumber: 9486 +manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eyde Sitch,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eyde Sitch +sn: Sitch +description: This is Eyde Sitch's description +facsimileTelephoneNumber: +1 415 545-5813 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 415 867-6396 +title: Associate Management Technician +userPassword: Password1 +uid: SitchE +givenName: Eyde +mail: SitchE@7193a73f55bc4b758a5c65a864323aa2.bitwarden.com +carLicense: APX0DV +departmentNumber: 5234 +employeeType: Employee +homePhone: +1 415 873-3008 +initials: E. S. +mobile: +1 415 821-2374 +pager: +1 415 700-3001 +roomNumber: 9441 +manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Windowing Walkins,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Windowing Walkins +sn: Walkins +description: This is Windowing Walkins's description +facsimileTelephoneNumber: +1 206 512-9259 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 740-3680 +title: Master Product Testing Mascot +userPassword: Password1 +uid: WalkinsW +givenName: Windowing +mail: WalkinsW@f9e807ad6c8448a7b4463b10b5cc7416.bitwarden.com +carLicense: VXW6UX +departmentNumber: 3748 +employeeType: Normal +homePhone: +1 206 380-2987 +initials: W. W. +mobile: +1 206 550-6123 +pager: +1 206 907-6647 +roomNumber: 8841 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alisun Hampel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alisun Hampel +sn: Hampel +description: This is Alisun Hampel's description +facsimileTelephoneNumber: +1 415 839-7812 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 415 451-3099 +title: Associate Management Architect +userPassword: Password1 +uid: HampelA +givenName: Alisun +mail: HampelA@d52c1f1046c6411eb0907201f8f5a6d8.bitwarden.com +carLicense: TXTMVQ +departmentNumber: 4252 +employeeType: Normal +homePhone: +1 415 149-3548 +initials: A. H. +mobile: +1 415 986-3207 +pager: +1 415 965-1125 +roomNumber: 8089 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com + +dn: cn=Quinta Pimpare,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Quinta Pimpare +sn: Pimpare +description: This is Quinta Pimpare's description +facsimileTelephoneNumber: +1 818 471-6035 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 797-2873 +title: Junior Product Development Janitor +userPassword: Password1 +uid: PimpareQ +givenName: Quinta +mail: PimpareQ@926986a7a9224c51b55271804ad9a9d9.bitwarden.com +carLicense: K5C5QV +departmentNumber: 5192 +employeeType: Normal +homePhone: +1 818 698-2879 +initials: Q. P. +mobile: +1 818 505-6044 +pager: +1 818 953-5088 +roomNumber: 8207 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jemimah Whitney,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jemimah Whitney +sn: Whitney +description: This is Jemimah Whitney's description +facsimileTelephoneNumber: +1 818 462-9406 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 818 321-5576 +title: Associate Product Development Vice President +userPassword: Password1 +uid: WhitneyJ +givenName: Jemimah +mail: WhitneyJ@687816d020af4e4c9d25419b3dd63e14.bitwarden.com +carLicense: O33OWR +departmentNumber: 2122 +employeeType: Normal +homePhone: +1 818 615-8705 +initials: J. W. +mobile: +1 818 701-6784 +pager: +1 818 901-9425 +roomNumber: 9723 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Marta McNerlan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marta McNerlan +sn: McNerlan +description: This is Marta McNerlan's description +facsimileTelephoneNumber: +1 213 170-2702 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 213 325-9790 +title: Master Peons Figurehead +userPassword: Password1 +uid: McNerlaM +givenName: Marta +mail: McNerlaM@2faed39246da44659e67f7ee9bc9a292.bitwarden.com +carLicense: HFJ6IB +departmentNumber: 4072 +employeeType: Contract +homePhone: +1 213 973-7781 +initials: M. M. +mobile: +1 213 143-4920 +pager: +1 213 982-4958 +roomNumber: 9817 +manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Miranda Sobel,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miranda Sobel +sn: Sobel +description: This is Miranda Sobel's description +facsimileTelephoneNumber: +1 213 167-9206 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 213 289-1316 +title: Associate Human Resources Punk +userPassword: Password1 +uid: SobelM +givenName: Miranda +mail: SobelM@01a39cd47fba422abe5be28943be33a3.bitwarden.com +carLicense: EX9FT7 +departmentNumber: 8608 +employeeType: Contract +homePhone: +1 213 555-9557 +initials: M. S. +mobile: +1 213 789-5739 +pager: +1 213 467-3122 +roomNumber: 9533 +manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Minda Andric,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minda Andric +sn: Andric +description: This is Minda Andric's description +facsimileTelephoneNumber: +1 213 551-5235 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 213 101-1625 +title: Junior Peons Assistant +userPassword: Password1 +uid: AndricM +givenName: Minda +mail: AndricM@c5077a2f25784ddab82881f1aec25848.bitwarden.com +carLicense: NL73MI +departmentNumber: 8073 +employeeType: Normal +homePhone: +1 213 918-1358 +initials: M. A. +mobile: +1 213 222-9436 +pager: +1 213 414-6716 +roomNumber: 9589 +manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roselle Baber,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roselle Baber +sn: Baber +description: This is Roselle Baber's description +facsimileTelephoneNumber: +1 510 339-9325 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 510 689-7342 +title: Associate Management Pinhead +userPassword: Password1 +uid: BaberR +givenName: Roselle +mail: BaberR@b8d27e8398214587851640fca750ea6f.bitwarden.com +carLicense: HG98VB +departmentNumber: 6179 +employeeType: Normal +homePhone: +1 510 202-3472 +initials: R. B. +mobile: +1 510 517-6486 +pager: +1 510 717-4269 +roomNumber: 9231 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Four Keene,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Four Keene +sn: Keene +description: This is Four Keene's description +facsimileTelephoneNumber: +1 510 907-1273 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 510 895-8564 +title: Chief Peons Pinhead +userPassword: Password1 +uid: KeeneF +givenName: Four +mail: KeeneF@271b979d05d84246a9dbf07f2554970e.bitwarden.com +carLicense: BGUBM6 +departmentNumber: 4614 +employeeType: Contract +homePhone: +1 510 716-4605 +initials: F. K. +mobile: +1 510 158-4816 +pager: +1 510 470-4628 +roomNumber: 9644 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Souza Salyer,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Souza Salyer +sn: Salyer +description: This is Souza Salyer's description +facsimileTelephoneNumber: +1 415 607-4807 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 257-9395 +title: Master Human Resources Assistant +userPassword: Password1 +uid: SalyerS +givenName: Souza +mail: SalyerS@e36a0def7d834657ab4aab201a87a463.bitwarden.com +carLicense: PB7HAL +departmentNumber: 9225 +employeeType: Employee +homePhone: +1 415 977-7696 +initials: S. S. +mobile: +1 415 998-8923 +pager: +1 415 194-5027 +roomNumber: 9137 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Petri Beehler,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Petri Beehler +sn: Beehler +description: This is Petri Beehler's description +facsimileTelephoneNumber: +1 510 847-2998 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 510 611-7187 +title: Associate Management Mascot +userPassword: Password1 +uid: BeehlerP +givenName: Petri +mail: BeehlerP@530608b4f9df417187aa615866b37d82.bitwarden.com +carLicense: JH4LFR +departmentNumber: 7600 +employeeType: Employee +homePhone: +1 510 562-3528 +initials: P. B. +mobile: +1 510 245-7280 +pager: +1 510 846-6417 +roomNumber: 8761 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Annadiane Hyrne,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annadiane Hyrne +sn: Hyrne +description: This is Annadiane Hyrne's description +facsimileTelephoneNumber: +1 213 653-4894 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 493-5620 +title: Associate Peons Artist +userPassword: Password1 +uid: HyrneA +givenName: Annadiane +mail: HyrneA@4467185dad394a2ab964d923a668f7a8.bitwarden.com +carLicense: 64BC71 +departmentNumber: 2610 +employeeType: Normal +homePhone: +1 213 180-1178 +initials: A. H. +mobile: +1 213 326-8008 +pager: +1 213 957-6438 +roomNumber: 8193 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Freida Nock,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Freida Nock +sn: Nock +description: This is Freida Nock's description +facsimileTelephoneNumber: +1 408 195-9370 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 408 906-8573 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: NockF +givenName: Freida +mail: NockF@e358162fa0384d918adc01a68c3773f5.bitwarden.com +carLicense: 1O96CS +departmentNumber: 6969 +employeeType: Employee +homePhone: +1 408 855-7865 +initials: F. N. +mobile: +1 408 184-8453 +pager: +1 408 865-3846 +roomNumber: 9383 +manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Adrianne Hollenbach,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Adrianne Hollenbach +sn: Hollenbach +description: This is Adrianne Hollenbach's description +facsimileTelephoneNumber: +1 408 686-5772 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 107-6259 +title: Junior Management Madonna +userPassword: Password1 +uid: HollenbA +givenName: Adrianne +mail: HollenbA@17090ec80eaa480fa5878f4ca04b3503.bitwarden.com +carLicense: QMIPTL +departmentNumber: 2331 +employeeType: Normal +homePhone: +1 408 865-7525 +initials: A. H. +mobile: +1 408 611-1082 +pager: +1 408 193-9709 +roomNumber: 9637 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Leon Hulme,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leon Hulme +sn: Hulme +description: This is Leon Hulme's description +facsimileTelephoneNumber: +1 206 230-1234 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 206 661-5169 +title: Master Human Resources Visionary +userPassword: Password1 +uid: HulmeL +givenName: Leon +mail: HulmeL@a0e52fac0f494b0982a62c82b5201e22.bitwarden.com +carLicense: E99Y4Y +departmentNumber: 7149 +employeeType: Employee +homePhone: +1 206 589-2860 +initials: L. H. +mobile: +1 206 324-5176 +pager: +1 206 885-4539 +roomNumber: 9477 +manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Izabel Schnell,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Izabel Schnell +sn: Schnell +description: This is Izabel Schnell's description +facsimileTelephoneNumber: +1 510 577-2854 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 510 965-3732 +title: Supreme Product Development Punk +userPassword: Password1 +uid: SchnellI +givenName: Izabel +mail: SchnellI@559e1a46c2f944d8a33837a661c67fa0.bitwarden.com +carLicense: DASMVN +departmentNumber: 2272 +employeeType: Normal +homePhone: +1 510 679-8066 +initials: I. S. +mobile: +1 510 823-4211 +pager: +1 510 351-7880 +roomNumber: 8402 +manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Jammie Parisien,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jammie Parisien +sn: Parisien +description: This is Jammie Parisien's description +facsimileTelephoneNumber: +1 415 473-6622 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 415 582-3820 +title: Master Administrative Figurehead +userPassword: Password1 +uid: ParisieJ +givenName: Jammie +mail: ParisieJ@8318909e0776426c8a3322dfc777c59c.bitwarden.com +carLicense: 0E3SJ5 +departmentNumber: 6447 +employeeType: Employee +homePhone: +1 415 473-1915 +initials: J. P. +mobile: +1 415 521-3952 +pager: +1 415 322-5178 +roomNumber: 8303 +manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Cori Oreilly,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cori Oreilly +sn: Oreilly +description: This is Cori Oreilly's description +facsimileTelephoneNumber: +1 206 839-7643 +l: Menlo Park +ou: Human Resources +postalAddress: Human Resources$Menlo Park +telephoneNumber: +1 206 698-6403 +title: Supreme Human Resources Vice President +userPassword: Password1 +uid: OreillyC +givenName: Cori +mail: OreillyC@c9e4e7670c4c4defb2239518befdd386.bitwarden.com +carLicense: 43DVF6 +departmentNumber: 1889 +employeeType: Normal +homePhone: +1 206 642-5272 +initials: C. O. +mobile: +1 206 878-5765 +pager: +1 206 429-6352 +roomNumber: 9912 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Enzo Rodgers,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Enzo Rodgers +sn: Rodgers +description: This is Enzo Rodgers's description +facsimileTelephoneNumber: +1 415 386-6021 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 394-3244 +title: Supreme Product Development Czar +userPassword: Password1 +uid: RodgersE +givenName: Enzo +mail: RodgersE@6075ce54c1c346baad961bf0742aef3c.bitwarden.com +carLicense: 6C1LQ2 +departmentNumber: 7656 +employeeType: Contract +homePhone: +1 415 511-9665 +initials: E. R. +mobile: +1 415 906-7510 +pager: +1 415 909-5558 +roomNumber: 9351 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Pic Basinger,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pic Basinger +sn: Basinger +description: This is Pic Basinger's description +facsimileTelephoneNumber: +1 510 122-1683 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 510 617-5191 +title: Chief Peons Punk +userPassword: Password1 +uid: BasingeP +givenName: Pic +mail: BasingeP@4c9858703e48497c924d77014e6a3b88.bitwarden.com +carLicense: 7MWJFS +departmentNumber: 3266 +employeeType: Normal +homePhone: +1 510 855-1172 +initials: P. B. +mobile: +1 510 898-2789 +pager: +1 510 273-4478 +roomNumber: 8552 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barbabra Fuqua +sn: Fuqua +description: This is Barbabra Fuqua's description +facsimileTelephoneNumber: +1 818 345-4818 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 818 904-6310 +title: Junior Payroll Engineer +userPassword: Password1 +uid: FuquaB +givenName: Barbabra +mail: FuquaB@7c7d4c294db5460a9b0b3e7e2e1f0255.bitwarden.com +carLicense: G32FDK +departmentNumber: 3806 +employeeType: Employee +homePhone: +1 818 531-3754 +initials: B. F. +mobile: +1 818 170-5184 +pager: +1 818 814-1843 +roomNumber: 8502 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Paqs Atalla,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paqs Atalla +sn: Atalla +description: This is Paqs Atalla's description +facsimileTelephoneNumber: +1 408 661-5239 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 408 972-2326 +title: Associate Janitorial Technician +userPassword: Password1 +uid: AtallaP +givenName: Paqs +mail: AtallaP@ef893a2718a6415a89b1218247ab6f7e.bitwarden.com +carLicense: HEB1G5 +departmentNumber: 1475 +employeeType: Normal +homePhone: +1 408 967-4821 +initials: P. A. +mobile: +1 408 200-7305 +pager: +1 408 190-8360 +roomNumber: 8975 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Norina McClymont,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norina McClymont +sn: McClymont +description: This is Norina McClymont's description +facsimileTelephoneNumber: +1 408 388-4246 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 933-8289 +title: Master Management Pinhead +userPassword: Password1 +uid: McClymoN +givenName: Norina +mail: McClymoN@dd187a873e4c4bb299a3c9194e913cba.bitwarden.com +carLicense: GM3KL3 +departmentNumber: 5167 +employeeType: Normal +homePhone: +1 408 103-6392 +initials: N. M. +mobile: +1 408 904-4541 +pager: +1 408 483-5541 +roomNumber: 9765 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sadella Psklib,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sadella Psklib +sn: Psklib +description: This is Sadella Psklib's description +facsimileTelephoneNumber: +1 415 846-6443 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 415 119-1512 +title: Master Administrative President +userPassword: Password1 +uid: PsklibS +givenName: Sadella +mail: PsklibS@52d447bfc2464a51a20925b35098fffa.bitwarden.com +carLicense: MQ3WMN +departmentNumber: 3828 +employeeType: Contract +homePhone: +1 415 209-6820 +initials: S. P. +mobile: +1 415 617-2939 +pager: +1 415 234-1119 +roomNumber: 8850 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Bqb Mulvie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bqb Mulvie +sn: Mulvie +description: This is Bqb Mulvie's description +facsimileTelephoneNumber: +1 510 871-3718 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 510 483-4587 +title: Junior Payroll Dictator +userPassword: Password1 +uid: MulvieB +givenName: Bqb +mail: MulvieB@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com +carLicense: WE3NKB +departmentNumber: 8196 +employeeType: Normal +homePhone: +1 510 493-6280 +initials: B. M. +mobile: +1 510 374-7008 +pager: +1 510 147-2254 +roomNumber: 8039 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jenica Brophy,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jenica Brophy +sn: Brophy +description: This is Jenica Brophy's description +facsimileTelephoneNumber: +1 818 729-7184 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 818 953-7594 +title: Junior Human Resources Consultant +userPassword: Password1 +uid: BrophyJ +givenName: Jenica +mail: BrophyJ@b19f5c0cd758429f9a018da5785536ee.bitwarden.com +carLicense: KBV1ON +departmentNumber: 7240 +employeeType: Employee +homePhone: +1 818 904-6487 +initials: J. B. +mobile: +1 818 982-3795 +pager: +1 818 126-3585 +roomNumber: 8577 +manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwendolen Mattiuz +sn: Mattiuz +description: This is Gwendolen Mattiuz's description +facsimileTelephoneNumber: +1 804 837-7382 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 804 114-3141 +title: Supreme Payroll Warrior +userPassword: Password1 +uid: MattiuzG +givenName: Gwendolen +mail: MattiuzG@22a72674ecec479588f031d302cecb2d.bitwarden.com +carLicense: AQE54G +departmentNumber: 3697 +employeeType: Employee +homePhone: +1 804 281-5388 +initials: G. M. +mobile: +1 804 949-7980 +pager: +1 804 911-7104 +roomNumber: 9004 +manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Steen Dubuc,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Steen Dubuc +sn: Dubuc +description: This is Steen Dubuc's description +facsimileTelephoneNumber: +1 510 232-7686 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 510 312-4350 +title: Master Product Development Madonna +userPassword: Password1 +uid: DubucS +givenName: Steen +mail: DubucS@f58bbd26c10847bc8e678cb993396656.bitwarden.com +carLicense: 0WFTCM +departmentNumber: 6561 +employeeType: Employee +homePhone: +1 510 422-2489 +initials: S. D. +mobile: +1 510 815-8354 +pager: +1 510 843-3121 +roomNumber: 8857 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shea Blesi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shea Blesi +sn: Blesi +description: This is Shea Blesi's description +facsimileTelephoneNumber: +1 415 605-8703 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 415 729-5564 +title: Associate Management Warrior +userPassword: Password1 +uid: BlesiS +givenName: Shea +mail: BlesiS@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com +carLicense: ROMS54 +departmentNumber: 4561 +employeeType: Employee +homePhone: +1 415 511-5204 +initials: S. B. +mobile: +1 415 574-9944 +pager: +1 415 188-2404 +roomNumber: 9486 +manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kusum Tilden,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kusum Tilden +sn: Tilden +description: This is Kusum Tilden's description +facsimileTelephoneNumber: +1 415 423-7256 +l: San Francisco +ou: Human Resources +postalAddress: Human Resources$San Francisco +telephoneNumber: +1 415 968-9245 +title: Associate Human Resources Madonna +userPassword: Password1 +uid: TildenK +givenName: Kusum +mail: TildenK@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com +carLicense: F17265 +departmentNumber: 8320 +employeeType: Normal +homePhone: +1 415 509-7614 +initials: K. T. +mobile: +1 415 675-3942 +pager: +1 415 971-9392 +roomNumber: 9798 +manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Famke Chuah,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Famke Chuah +sn: Chuah +description: This is Famke Chuah's description +facsimileTelephoneNumber: +1 206 142-6192 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 206 696-7233 +title: Supreme Administrative Technician +userPassword: Password1 +uid: ChuahF +givenName: Famke +mail: ChuahF@ff582b028bb14d7f8a64ae9e228eb6b6.bitwarden.com +carLicense: 8575LB +departmentNumber: 2465 +employeeType: Contract +homePhone: +1 206 422-3988 +initials: F. C. +mobile: +1 206 525-3076 +pager: +1 206 425-7969 +roomNumber: 8980 +manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angeline Cytrynbaum +sn: Cytrynbaum +description: This is Angeline Cytrynbaum's description +facsimileTelephoneNumber: +1 415 313-8593 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 415 678-8670 +title: Supreme Peons Consultant +userPassword: Password1 +uid: CytrynbA +givenName: Angeline +mail: CytrynbA@1fd495b25f014a69affe5c97974df0f7.bitwarden.com +carLicense: KL9SQF +departmentNumber: 1075 +employeeType: Contract +homePhone: +1 415 777-7416 +initials: A. C. +mobile: +1 415 534-7204 +pager: +1 415 128-9213 +roomNumber: 9273 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alvinia Snodgrass +sn: Snodgrass +description: This is Alvinia Snodgrass's description +facsimileTelephoneNumber: +1 213 805-7548 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 213 113-6469 +title: Master Peons Czar +userPassword: Password1 +uid: SnodgraA +givenName: Alvinia +mail: SnodgraA@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com +carLicense: QVCHAM +departmentNumber: 6205 +employeeType: Employee +homePhone: +1 213 756-9790 +initials: A. S. +mobile: +1 213 970-9531 +pager: +1 213 724-4952 +roomNumber: 9467 +manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=HoaVan Drummer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: HoaVan Drummer +sn: Drummer +description: This is HoaVan Drummer's description +facsimileTelephoneNumber: +1 818 756-7646 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 818 627-9874 +title: Associate Peons Engineer +userPassword: Password1 +uid: DrummerH +givenName: HoaVan +mail: DrummerH@64ea5273cbad4fe1bbdf6cc7bf563ed4.bitwarden.com +carLicense: B5UWP9 +departmentNumber: 2879 +employeeType: Normal +homePhone: +1 818 745-7659 +initials: H. D. +mobile: +1 818 351-2228 +pager: +1 818 818-5989 +roomNumber: 9721 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Metrics McCoy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Metrics McCoy +sn: McCoy +description: This is Metrics McCoy's description +facsimileTelephoneNumber: +1 804 232-3413 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 804 871-2662 +title: Master Peons Writer +userPassword: Password1 +uid: McCoyM +givenName: Metrics +mail: McCoyM@f57569f7524f4479b4d43ec8c220c303.bitwarden.com +carLicense: B1XKNK +departmentNumber: 3397 +employeeType: Contract +homePhone: +1 804 838-4908 +initials: M. M. +mobile: +1 804 710-8037 +pager: +1 804 906-7712 +roomNumber: 9665 +manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brittany Zarkel +sn: Zarkel +description: This is Brittany Zarkel's description +facsimileTelephoneNumber: +1 415 777-1780 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 415 799-7278 +title: Chief Product Testing Technician +userPassword: Password1 +uid: ZarkelB +givenName: Brittany +mail: ZarkelB@bb451e9caafd4e81b5fb79f1aea3830a.bitwarden.com +carLicense: WBEEW3 +departmentNumber: 6454 +employeeType: Employee +homePhone: +1 415 856-6189 +initials: B. Z. +mobile: +1 415 177-2669 +pager: +1 415 395-9843 +roomNumber: 9031 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maybelle Wiebe +sn: Wiebe +description: This is Maybelle Wiebe's description +facsimileTelephoneNumber: +1 213 288-7365 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 709-5045 +title: Master Janitorial Figurehead +userPassword: Password1 +uid: WiebeM +givenName: Maybelle +mail: WiebeM@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com +carLicense: 4GW2P9 +departmentNumber: 1164 +employeeType: Normal +homePhone: +1 213 583-8011 +initials: M. W. +mobile: +1 213 109-4251 +pager: +1 213 671-5366 +roomNumber: 9970 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Nicolas Lally,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolas Lally +sn: Lally +description: This is Nicolas Lally's description +facsimileTelephoneNumber: +1 818 853-2109 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 818 169-1939 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: LallyN +givenName: Nicolas +mail: LallyN@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com +carLicense: CO6U5Y +departmentNumber: 7820 +employeeType: Employee +homePhone: +1 818 223-9152 +initials: N. L. +mobile: +1 818 280-8060 +pager: +1 818 843-9929 +roomNumber: 8926 +manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Candie Siefert,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Candie Siefert +sn: Siefert +description: This is Candie Siefert's description +facsimileTelephoneNumber: +1 804 688-8319 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 804 838-3361 +title: Master Administrative Warrior +userPassword: Password1 +uid: SiefertC +givenName: Candie +mail: SiefertC@88c454cb568147c58332d77ce464726b.bitwarden.com +carLicense: S3LOFN +departmentNumber: 5447 +employeeType: Contract +homePhone: +1 804 472-3998 +initials: C. S. +mobile: +1 804 589-2277 +pager: +1 804 930-5339 +roomNumber: 8235 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Ulf Novak,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ulf Novak +sn: Novak +description: This is Ulf Novak's description +facsimileTelephoneNumber: +1 804 633-9564 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 804 306-8794 +title: Chief Product Testing Admin +userPassword: Password1 +uid: NovakU +givenName: Ulf +mail: NovakU@1d0fa7b832b142ce82ca5e924a1754a0.bitwarden.com +carLicense: S457UD +departmentNumber: 5269 +employeeType: Employee +homePhone: +1 804 268-5956 +initials: U. N. +mobile: +1 804 907-3777 +pager: +1 804 918-4606 +roomNumber: 8095 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fina Rhattigan +sn: Rhattigan +description: This is Fina Rhattigan's description +facsimileTelephoneNumber: +1 408 248-9136 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 408 525-2438 +title: Supreme Janitorial Director +userPassword: Password1 +uid: RhattigF +givenName: Fina +mail: RhattigF@1a99800019bc40cc83877edaa3c037bd.bitwarden.com +carLicense: UMUS5S +departmentNumber: 8536 +employeeType: Normal +homePhone: +1 408 277-2107 +initials: F. R. +mobile: +1 408 509-6408 +pager: +1 408 862-5104 +roomNumber: 8847 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Paulette Unkefer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Paulette Unkefer +sn: Unkefer +description: This is Paulette Unkefer's description +facsimileTelephoneNumber: +1 408 947-2372 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 442-8324 +title: Junior Peons Punk +userPassword: Password1 +uid: UnkeferP +givenName: Paulette +mail: UnkeferP@972afc9853ee4f2c90b26fb09fc7d779.bitwarden.com +carLicense: 48LM2H +departmentNumber: 8432 +employeeType: Normal +homePhone: +1 408 453-1810 +initials: P. U. +mobile: +1 408 359-2424 +pager: +1 408 591-9343 +roomNumber: 8061 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corrianne Goliss +sn: Goliss +description: This is Corrianne Goliss's description +facsimileTelephoneNumber: +1 206 868-9931 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 719-6382 +title: Master Human Resources Janitor +userPassword: Password1 +uid: GolissC +givenName: Corrianne +mail: GolissC@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com +carLicense: 8Q9LYS +departmentNumber: 1264 +employeeType: Employee +homePhone: +1 206 760-5254 +initials: C. G. +mobile: +1 206 180-5233 +pager: +1 206 518-9826 +roomNumber: 8730 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gwendolin Kean,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gwendolin Kean +sn: Kean +description: This is Gwendolin Kean's description +facsimileTelephoneNumber: +1 408 572-6709 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 408 120-6644 +title: Master Payroll Fellow +userPassword: Password1 +uid: KeanG +givenName: Gwendolin +mail: KeanG@06bce776ad5946a6be606d0392cec3ca.bitwarden.com +carLicense: FL9J4X +departmentNumber: 1608 +employeeType: Employee +homePhone: +1 408 944-6271 +initials: G. K. +mobile: +1 408 300-5397 +pager: +1 408 362-8685 +roomNumber: 9470 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Marthe Harvey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marthe Harvey +sn: Harvey +description: This is Marthe Harvey's description +facsimileTelephoneNumber: +1 818 495-6142 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 832-5698 +title: Master Human Resources Mascot +userPassword: Password1 +uid: HarveyM +givenName: Marthe +mail: HarveyM@79f70adba366489f9a827cac7a2d8fd1.bitwarden.com +carLicense: 0P3G6D +departmentNumber: 5038 +employeeType: Employee +homePhone: +1 818 211-3861 +initials: M. H. +mobile: +1 818 758-2159 +pager: +1 818 145-2220 +roomNumber: 8957 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Debbi Elhamahmy +sn: Elhamahmy +description: This is Debbi Elhamahmy's description +facsimileTelephoneNumber: +1 206 843-9792 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 728-6971 +title: Junior Administrative Developer +userPassword: Password1 +uid: ElhamahD +givenName: Debbi +mail: ElhamahD@bb48b434201c4705a4eb043e09cd6d70.bitwarden.com +carLicense: GV1F2D +departmentNumber: 4534 +employeeType: Contract +homePhone: +1 206 491-9443 +initials: D. E. +mobile: +1 206 376-8964 +pager: +1 206 328-3953 +roomNumber: 9490 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Francene AuYeung,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francene AuYeung +sn: AuYeung +description: This is Francene AuYeung's description +facsimileTelephoneNumber: +1 213 496-2161 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 213 666-1535 +title: Junior Peons Figurehead +userPassword: Password1 +uid: AuYeungF +givenName: Francene +mail: AuYeungF@0d2f49c4afec422dbf4961ec0258d7e8.bitwarden.com +carLicense: L5HJRO +departmentNumber: 8141 +employeeType: Normal +homePhone: +1 213 876-5851 +initials: F. A. +mobile: +1 213 496-5055 +pager: +1 213 262-3364 +roomNumber: 8815 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Juliana Omura,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Juliana Omura +sn: Omura +description: This is Juliana Omura's description +facsimileTelephoneNumber: +1 415 542-9477 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 415 197-1613 +title: Chief Peons Manager +userPassword: Password1 +uid: OmuraJ +givenName: Juliana +mail: OmuraJ@797c12ee868e41e5be4bb46785d3d6aa.bitwarden.com +carLicense: 3HLC4S +departmentNumber: 3122 +employeeType: Contract +homePhone: +1 415 427-1922 +initials: J. O. +mobile: +1 415 930-3245 +pager: +1 415 424-1247 +roomNumber: 9073 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Emelina Elliot,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emelina Elliot +sn: Elliot +description: This is Emelina Elliot's description +facsimileTelephoneNumber: +1 206 929-5745 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 206 451-6607 +title: Chief Product Development Technician +userPassword: Password1 +uid: ElliotE +givenName: Emelina +mail: ElliotE@5437f19907594de59138cb373ea3e4a8.bitwarden.com +carLicense: 7LXG4Q +departmentNumber: 1220 +employeeType: Employee +homePhone: +1 206 950-2054 +initials: E. E. +mobile: +1 206 688-5097 +pager: +1 206 289-9249 +roomNumber: 8591 +manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Waverly Monforton,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Waverly Monforton +sn: Monforton +description: This is Waverly Monforton's description +facsimileTelephoneNumber: +1 804 559-9872 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 804 911-6574 +title: Junior Payroll Mascot +userPassword: Password1 +uid: MonfortW +givenName: Waverly +mail: MonfortW@78921cb9fe6c47488d5cf12368310816.bitwarden.com +carLicense: 44EV51 +departmentNumber: 3135 +employeeType: Normal +homePhone: +1 804 437-5038 +initials: W. M. +mobile: +1 804 235-4028 +pager: +1 804 292-7832 +roomNumber: 9561 +manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com +secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Gladys Bilanski,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gladys Bilanski +sn: Bilanski +description: This is Gladys Bilanski's description +facsimileTelephoneNumber: +1 804 553-1498 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 804 760-2914 +title: Master Management Stooge +userPassword: Password1 +uid: BilanskG +givenName: Gladys +mail: BilanskG@631ae20fb31c4a77babae0e6eaf9b74d.bitwarden.com +carLicense: W1EBQY +departmentNumber: 6154 +employeeType: Contract +homePhone: +1 804 784-8475 +initials: G. B. +mobile: +1 804 611-6945 +pager: +1 804 369-2882 +roomNumber: 8971 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Analise Shea,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Analise Shea +sn: Shea +description: This is Analise Shea's description +facsimileTelephoneNumber: +1 804 160-1626 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 804 973-3937 +title: Supreme Product Testing Architect +userPassword: Password1 +uid: SheaA +givenName: Analise +mail: SheaA@5f0294cf70af42dd8b675e776526c55e.bitwarden.com +carLicense: 1VUELH +departmentNumber: 2134 +employeeType: Employee +homePhone: +1 804 813-8951 +initials: A. S. +mobile: +1 804 647-9667 +pager: +1 804 227-5029 +roomNumber: 8215 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cart Boutin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cart Boutin +sn: Boutin +description: This is Cart Boutin's description +facsimileTelephoneNumber: +1 415 396-4184 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 415 456-5822 +title: Supreme Management Stooge +userPassword: Password1 +uid: BoutinC +givenName: Cart +mail: BoutinC@5829ced5acec40878d4752d92d457b7b.bitwarden.com +carLicense: WJD4FT +departmentNumber: 6565 +employeeType: Contract +homePhone: +1 415 741-7934 +initials: C. B. +mobile: +1 415 772-9828 +pager: +1 415 897-6341 +roomNumber: 8115 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kunie Hoorman,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kunie Hoorman +sn: Hoorman +description: This is Kunie Hoorman's description +facsimileTelephoneNumber: +1 213 627-8112 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 213 745-5492 +title: Supreme Product Development Consultant +userPassword: Password1 +uid: HoormanK +givenName: Kunie +mail: HoormanK@306375064b2741d094b3e69f5fcd1355.bitwarden.com +carLicense: QL7YA3 +departmentNumber: 4421 +employeeType: Contract +homePhone: +1 213 725-7939 +initials: K. H. +mobile: +1 213 478-5903 +pager: +1 213 171-9919 +roomNumber: 8553 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com + +dn: cn=Odelinda Keilty,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odelinda Keilty +sn: Keilty +description: This is Odelinda Keilty's description +facsimileTelephoneNumber: +1 804 536-5125 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 804 878-5645 +title: Supreme Payroll Fellow +userPassword: Password1 +uid: KeiltyO +givenName: Odelinda +mail: KeiltyO@99ed379ff20347a2afcfdca050997d8c.bitwarden.com +carLicense: 23XHSS +departmentNumber: 4545 +employeeType: Employee +homePhone: +1 804 593-9325 +initials: O. K. +mobile: +1 804 541-7193 +pager: +1 804 939-1839 +roomNumber: 9300 +manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Biddy Nicolaou +sn: Nicolaou +description: This is Biddy Nicolaou's description +facsimileTelephoneNumber: +1 415 273-7973 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 255-5466 +title: Master Janitorial Czar +userPassword: Password1 +uid: NicolaoB +givenName: Biddy +mail: NicolaoB@31b20282a43b4a2586c05543f32a2ad0.bitwarden.com +carLicense: EN34NR +departmentNumber: 3705 +employeeType: Employee +homePhone: +1 415 613-5925 +initials: B. N. +mobile: +1 415 129-5303 +pager: +1 415 586-7059 +roomNumber: 8652 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Stella Sist,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stella Sist +sn: Sist +description: This is Stella Sist's description +facsimileTelephoneNumber: +1 408 630-1119 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 476-6590 +title: Junior Peons Punk +userPassword: Password1 +uid: SistS +givenName: Stella +mail: SistS@de96a17ce06e4487ba5f98c80195f121.bitwarden.com +carLicense: XMPF9W +departmentNumber: 9882 +employeeType: Contract +homePhone: +1 408 487-6139 +initials: S. S. +mobile: +1 408 806-8899 +pager: +1 408 418-2008 +roomNumber: 8248 +manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maryellen Phillips +sn: Phillips +description: This is Maryellen Phillips's description +facsimileTelephoneNumber: +1 206 232-5915 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 303-5834 +title: Junior Product Testing Figurehead +userPassword: Password1 +uid: PhillipM +givenName: Maryellen +mail: PhillipM@2322b02e7fdc412fb0617a541c4ec04c.bitwarden.com +carLicense: 8LRI5V +departmentNumber: 4254 +employeeType: Normal +homePhone: +1 206 708-1804 +initials: M. P. +mobile: +1 206 821-1799 +pager: +1 206 189-5844 +roomNumber: 8394 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Dayle Schenkel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dayle Schenkel +sn: Schenkel +description: This is Dayle Schenkel's description +facsimileTelephoneNumber: +1 415 199-7064 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 415 434-6285 +title: Junior Management Architect +userPassword: Password1 +uid: SchenkeD +givenName: Dayle +mail: SchenkeD@dbc00763a9de485c97697558ab9ccf2e.bitwarden.com +carLicense: T5F08F +departmentNumber: 7694 +employeeType: Normal +homePhone: +1 415 945-9591 +initials: D. S. +mobile: +1 415 579-4959 +pager: +1 415 330-1819 +roomNumber: 8124 +manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Arlyn McBroom,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlyn McBroom +sn: McBroom +description: This is Arlyn McBroom's description +facsimileTelephoneNumber: +1 415 639-8580 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 415 774-5106 +title: Supreme Payroll Dictator +userPassword: Password1 +uid: McBroomA +givenName: Arlyn +mail: McBroomA@810805989c354ad7a79f655890d0527e.bitwarden.com +carLicense: DHY23D +departmentNumber: 8392 +employeeType: Employee +homePhone: +1 415 949-3157 +initials: A. M. +mobile: +1 415 967-9031 +pager: +1 415 508-1203 +roomNumber: 8899 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Brear Jensen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brear Jensen +sn: Jensen +description: This is Brear Jensen's description +facsimileTelephoneNumber: +1 415 599-5364 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 415 142-1353 +title: Chief Payroll President +userPassword: Password1 +uid: JensenB +givenName: Brear +mail: JensenB@f3145f0fc9d14ab089c58ad253fdbe93.bitwarden.com +carLicense: 2JUJ3Y +departmentNumber: 1040 +employeeType: Contract +homePhone: +1 415 465-7450 +initials: B. J. +mobile: +1 415 681-2024 +pager: +1 415 431-2865 +roomNumber: 9728 +manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ann Bulengo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ann Bulengo +sn: Bulengo +description: This is Ann Bulengo's description +facsimileTelephoneNumber: +1 415 417-8160 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 518-5490 +title: Associate Administrative Grunt +userPassword: Password1 +uid: BulengoA +givenName: Ann +mail: BulengoA@25c6b9a9cdb0416ea3c7c7318ec420ea.bitwarden.com +carLicense: NEQ6YR +departmentNumber: 2330 +employeeType: Normal +homePhone: +1 415 657-6224 +initials: A. B. +mobile: +1 415 801-9253 +pager: +1 415 432-2094 +roomNumber: 9187 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Esma Jak,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Esma Jak +sn: Jak +description: This is Esma Jak's description +facsimileTelephoneNumber: +1 213 483-9196 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 213 523-8732 +title: Master Human Resources Consultant +userPassword: Password1 +uid: JakE +givenName: Esma +mail: JakE@0c79359a2e94444a9804cb3df1168a2f.bitwarden.com +carLicense: LMRA8V +departmentNumber: 1280 +employeeType: Employee +homePhone: +1 213 868-2149 +initials: E. J. +mobile: +1 213 948-6615 +pager: +1 213 486-5565 +roomNumber: 9814 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Larkin Nance,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Larkin Nance +sn: Nance +description: This is Larkin Nance's description +facsimileTelephoneNumber: +1 213 134-1587 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 213 514-5936 +title: Master Payroll Dictator +userPassword: Password1 +uid: NanceL +givenName: Larkin +mail: NanceL@3f23376c66604a36ab332ecde75543de.bitwarden.com +carLicense: BGKC53 +departmentNumber: 1993 +employeeType: Employee +homePhone: +1 213 288-8886 +initials: L. N. +mobile: +1 213 349-2490 +pager: +1 213 462-1651 +roomNumber: 9059 +manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Mirelle Novak,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirelle Novak +sn: Novak +description: This is Mirelle Novak's description +facsimileTelephoneNumber: +1 206 685-4515 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 206 135-2278 +title: Associate Peons Janitor +userPassword: Password1 +uid: NovakM +givenName: Mirelle +mail: NovakM@5d21976aa8594197bf4a897cb95dc5c6.bitwarden.com +carLicense: SEKGBJ +departmentNumber: 1273 +employeeType: Normal +homePhone: +1 206 770-3971 +initials: M. N. +mobile: +1 206 783-6928 +pager: +1 206 335-2422 +roomNumber: 9369 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Dorothy Laurich,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorothy Laurich +sn: Laurich +description: This is Dorothy Laurich's description +facsimileTelephoneNumber: +1 510 380-3048 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 510 155-4712 +title: Supreme Product Development Warrior +userPassword: Password1 +uid: LaurichD +givenName: Dorothy +mail: LaurichD@2d82e4fbfc604880a9f0d07a8531daa9.bitwarden.com +carLicense: 2LI1SL +departmentNumber: 7009 +employeeType: Normal +homePhone: +1 510 225-2470 +initials: D. L. +mobile: +1 510 971-9966 +pager: +1 510 730-8928 +roomNumber: 8546 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shyam Wernik,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shyam Wernik +sn: Wernik +description: This is Shyam Wernik's description +facsimileTelephoneNumber: +1 213 850-3672 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 213 292-8178 +title: Supreme Human Resources Punk +userPassword: Password1 +uid: WernikS +givenName: Shyam +mail: WernikS@76e7e62397cf46a7b8c004ca6e02f899.bitwarden.com +carLicense: UPTXR5 +departmentNumber: 3645 +employeeType: Employee +homePhone: +1 213 734-2388 +initials: S. W. +mobile: +1 213 363-4777 +pager: +1 213 577-6124 +roomNumber: 8941 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Niek Rahmany,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Niek Rahmany +sn: Rahmany +description: This is Niek Rahmany's description +facsimileTelephoneNumber: +1 408 709-3503 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 408 408-8033 +title: Supreme Product Development Stooge +userPassword: Password1 +uid: RahmanyN +givenName: Niek +mail: RahmanyN@94ce9594247c4b4684617b905ff4b38b.bitwarden.com +carLicense: AV4MJX +departmentNumber: 8661 +employeeType: Contract +homePhone: +1 408 653-7707 +initials: N. R. +mobile: +1 408 976-7401 +pager: +1 408 938-1690 +roomNumber: 8257 +manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jung Kimler,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jung Kimler +sn: Kimler +description: This is Jung Kimler's description +facsimileTelephoneNumber: +1 415 970-3599 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 415 371-5444 +title: Chief Administrative Visionary +userPassword: Password1 +uid: KimlerJ +givenName: Jung +mail: KimlerJ@fb2a9835511b44fba3bde94e482a2f71.bitwarden.com +carLicense: XJ4URC +departmentNumber: 2530 +employeeType: Normal +homePhone: +1 415 799-3769 +initials: J. K. +mobile: +1 415 115-4119 +pager: +1 415 421-5847 +roomNumber: 9797 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacque Hearnden +sn: Hearnden +description: This is Jacque Hearnden's description +facsimileTelephoneNumber: +1 213 708-8832 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 418-5781 +title: Master Product Testing Director +userPassword: Password1 +uid: HearndeJ +givenName: Jacque +mail: HearndeJ@74cfe2fa4b0b457bbb2822816bc66149.bitwarden.com +carLicense: 01MVXM +departmentNumber: 4930 +employeeType: Contract +homePhone: +1 213 148-1958 +initials: J. H. +mobile: +1 213 321-1217 +pager: +1 213 830-6464 +roomNumber: 9210 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lolita Mufti,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lolita Mufti +sn: Mufti +description: This is Lolita Mufti's description +facsimileTelephoneNumber: +1 206 469-9681 +l: Redmond +ou: Product Testing +postalAddress: Product Testing$Redmond +telephoneNumber: +1 206 852-6277 +title: Chief Product Testing Assistant +userPassword: Password1 +uid: MuftiL +givenName: Lolita +mail: MuftiL@8fb6b5ed2e0c4f9896a409d4b0bce533.bitwarden.com +carLicense: P2KL38 +departmentNumber: 5007 +employeeType: Employee +homePhone: +1 206 993-2770 +initials: L. M. +mobile: +1 206 704-7367 +pager: +1 206 653-6593 +roomNumber: 8148 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Coord Kalleward,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coord Kalleward +sn: Kalleward +description: This is Coord Kalleward's description +facsimileTelephoneNumber: +1 206 485-2526 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 206 998-2200 +title: Junior Management Warrior +userPassword: Password1 +uid: KallewaC +givenName: Coord +mail: KallewaC@b114f468b2f34a46af68fa26b5215d8f.bitwarden.com +carLicense: HJDLT3 +departmentNumber: 4207 +employeeType: Normal +homePhone: +1 206 120-4686 +initials: C. K. +mobile: +1 206 550-6060 +pager: +1 206 420-9172 +roomNumber: 8438 +manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Garnet Shames,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Garnet Shames +sn: Shames +description: This is Garnet Shames's description +facsimileTelephoneNumber: +1 415 423-1641 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 838-7519 +title: Junior Payroll Consultant +userPassword: Password1 +uid: ShamesG +givenName: Garnet +mail: ShamesG@53a050beae0b4f609caf7ccf53a73868.bitwarden.com +carLicense: DGYAMS +departmentNumber: 5208 +employeeType: Contract +homePhone: +1 415 324-7910 +initials: G. S. +mobile: +1 415 629-2185 +pager: +1 415 926-8608 +roomNumber: 9321 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fara Shireman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fara Shireman +sn: Shireman +description: This is Fara Shireman's description +facsimileTelephoneNumber: +1 415 151-6080 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 415 677-2728 +title: Supreme Human Resources Artist +userPassword: Password1 +uid: ShiremaF +givenName: Fara +mail: ShiremaF@a8b705848c504748848b8aba539736f1.bitwarden.com +carLicense: HK3TEL +departmentNumber: 4285 +employeeType: Employee +homePhone: +1 415 425-4611 +initials: F. S. +mobile: +1 415 330-6759 +pager: +1 415 428-3823 +roomNumber: 9341 +manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eryn Katsouras +sn: Katsouras +description: This is Eryn Katsouras's description +facsimileTelephoneNumber: +1 213 871-6232 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 213 695-6958 +title: Associate Janitorial Artist +userPassword: Password1 +uid: KatsourE +givenName: Eryn +mail: KatsourE@abd7a0e1e97f4d19962cc07f7f9bc4e3.bitwarden.com +carLicense: FVGYM8 +departmentNumber: 7095 +employeeType: Employee +homePhone: +1 213 330-4188 +initials: E. K. +mobile: +1 213 642-9452 +pager: +1 213 872-7397 +roomNumber: 8724 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Shahid Neil,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shahid Neil +sn: Neil +description: This is Shahid Neil's description +facsimileTelephoneNumber: +1 804 342-7942 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 804 577-8271 +title: Chief Management Sales Rep +userPassword: Password1 +uid: NeilS +givenName: Shahid +mail: NeilS@c3e7bf42d4644f6bb0bcdc78feeb3e92.bitwarden.com +carLicense: 2MA1FQ +departmentNumber: 6833 +employeeType: Employee +homePhone: +1 804 433-2992 +initials: S. N. +mobile: +1 804 538-6717 +pager: +1 804 537-7099 +roomNumber: 9091 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Starlene Falardeau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Starlene Falardeau +sn: Falardeau +description: This is Starlene Falardeau's description +facsimileTelephoneNumber: +1 206 782-5204 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 206 572-9672 +title: Chief Payroll President +userPassword: Password1 +uid: FalardeS +givenName: Starlene +mail: FalardeS@4196ac503710477b96965e0281bd88e8.bitwarden.com +carLicense: DXRAMI +departmentNumber: 7728 +employeeType: Contract +homePhone: +1 206 706-6947 +initials: S. F. +mobile: +1 206 154-7884 +pager: +1 206 241-4304 +roomNumber: 9281 +manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Marce Plaisance,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marce Plaisance +sn: Plaisance +description: This is Marce Plaisance's description +facsimileTelephoneNumber: +1 804 375-6005 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 804 362-4127 +title: Junior Janitorial Developer +userPassword: Password1 +uid: PlaisanM +givenName: Marce +mail: PlaisanM@3557661a889d4d1aa53732cbd0d2ba7c.bitwarden.com +carLicense: ILJ4YG +departmentNumber: 5349 +employeeType: Normal +homePhone: +1 804 465-4631 +initials: M. P. +mobile: +1 804 197-2660 +pager: +1 804 990-3347 +roomNumber: 9780 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lena Mathias,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lena Mathias +sn: Mathias +description: This is Lena Mathias's description +facsimileTelephoneNumber: +1 206 175-7508 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 719-8140 +title: Supreme Product Development Figurehead +userPassword: Password1 +uid: MathiasL +givenName: Lena +mail: MathiasL@890d1310fd334cdc8c698f8a47f59b9b.bitwarden.com +carLicense: DU9EBS +departmentNumber: 4266 +employeeType: Normal +homePhone: +1 206 185-8894 +initials: L. M. +mobile: +1 206 202-2780 +pager: +1 206 183-1836 +roomNumber: 8504 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gaby Booking,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gaby Booking +sn: Booking +description: This is Gaby Booking's description +facsimileTelephoneNumber: +1 213 729-6739 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 213 554-8039 +title: Junior Janitorial Admin +userPassword: Password1 +uid: BookingG +givenName: Gaby +mail: BookingG@076fd971827e4bad8f0fb878bbd61e75.bitwarden.com +carLicense: 5VMO5V +departmentNumber: 1781 +employeeType: Contract +homePhone: +1 213 576-5827 +initials: G. B. +mobile: +1 213 333-8269 +pager: +1 213 473-9662 +roomNumber: 8443 +manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Michaela Trimble,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michaela Trimble +sn: Trimble +description: This is Michaela Trimble's description +facsimileTelephoneNumber: +1 804 827-5073 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 804 510-6963 +title: Master Product Testing Writer +userPassword: Password1 +uid: TrimbleM +givenName: Michaela +mail: TrimbleM@d36f0da7bde1417c871787ddace3eaa5.bitwarden.com +carLicense: Y8H8AV +departmentNumber: 6880 +employeeType: Normal +homePhone: +1 804 816-6033 +initials: M. T. +mobile: +1 804 412-2718 +pager: +1 804 416-6937 +roomNumber: 9039 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lisabeth Trochu +sn: Trochu +description: This is Lisabeth Trochu's description +facsimileTelephoneNumber: +1 415 331-7427 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 415 461-4337 +title: Master Administrative Figurehead +userPassword: Password1 +uid: TrochuL +givenName: Lisabeth +mail: TrochuL@63ba35c8524545369a911e12c7f3bea9.bitwarden.com +carLicense: K7LO1P +departmentNumber: 9901 +employeeType: Contract +homePhone: +1 415 878-7571 +initials: L. T. +mobile: +1 415 784-5573 +pager: +1 415 926-3939 +roomNumber: 9222 +manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lucie Kilner,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucie Kilner +sn: Kilner +description: This is Lucie Kilner's description +facsimileTelephoneNumber: +1 818 552-9907 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 818 172-7190 +title: Chief Payroll Manager +userPassword: Password1 +uid: KilnerL +givenName: Lucie +mail: KilnerL@f3145f0fc9d14ab089c58ad253fdbe93.bitwarden.com +carLicense: GNOVI7 +departmentNumber: 6755 +employeeType: Employee +homePhone: +1 818 585-4130 +initials: L. K. +mobile: +1 818 554-7804 +pager: +1 818 758-7191 +roomNumber: 9446 +manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Danyelle Rider,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danyelle Rider +sn: Rider +description: This is Danyelle Rider's description +facsimileTelephoneNumber: +1 213 285-1092 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 213 515-9022 +title: Junior Product Testing Fellow +userPassword: Password1 +uid: RiderD +givenName: Danyelle +mail: RiderD@415c030ee16d4de4a7392387c8cef87f.bitwarden.com +carLicense: FVMTYL +departmentNumber: 2721 +employeeType: Employee +homePhone: +1 213 670-6892 +initials: D. R. +mobile: +1 213 229-1218 +pager: +1 213 895-6550 +roomNumber: 9038 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mariska Tien,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mariska Tien +sn: Tien +description: This is Mariska Tien's description +facsimileTelephoneNumber: +1 415 624-8028 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 415 303-7878 +title: Junior Peons President +userPassword: Password1 +uid: TienM +givenName: Mariska +mail: TienM@8f61b7df745c411eb50459783db5da78.bitwarden.com +carLicense: GEW0JI +departmentNumber: 9697 +employeeType: Employee +homePhone: +1 415 353-5798 +initials: M. T. +mobile: +1 415 101-8129 +pager: +1 415 712-5504 +roomNumber: 9504 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Belvia Lamoureux,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Belvia Lamoureux +sn: Lamoureux +description: This is Belvia Lamoureux's description +facsimileTelephoneNumber: +1 510 132-8003 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 510 477-6086 +title: Master Peons Manager +userPassword: Password1 +uid: LamoureB +givenName: Belvia +mail: LamoureB@5449de7063aa4ed2b6578dde4c294893.bitwarden.com +carLicense: 0KWS81 +departmentNumber: 8148 +employeeType: Normal +homePhone: +1 510 325-2424 +initials: B. L. +mobile: +1 510 959-9185 +pager: +1 510 502-7599 +roomNumber: 8912 +manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sheelagh Pevec +sn: Pevec +description: This is Sheelagh Pevec's description +facsimileTelephoneNumber: +1 213 226-2781 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 213 240-1543 +title: Supreme Payroll Manager +userPassword: Password1 +uid: PevecS +givenName: Sheelagh +mail: PevecS@8557bf093f9c42cfa11eafadaf8fc9c1.bitwarden.com +carLicense: 0MX04U +departmentNumber: 8739 +employeeType: Contract +homePhone: +1 213 547-5485 +initials: S. P. +mobile: +1 213 117-1938 +pager: +1 213 209-2677 +roomNumber: 9519 +manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Jian Marneris,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jian Marneris +sn: Marneris +description: This is Jian Marneris's description +facsimileTelephoneNumber: +1 415 635-2589 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 415 781-8486 +title: Chief Payroll President +userPassword: Password1 +uid: MarneriJ +givenName: Jian +mail: MarneriJ@c4fdb8e85dc84c0eb28174e2bfc1119e.bitwarden.com +carLicense: XH9LH6 +departmentNumber: 3770 +employeeType: Normal +homePhone: +1 415 138-3975 +initials: J. M. +mobile: +1 415 743-1205 +pager: +1 415 696-7483 +roomNumber: 9097 +manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Dagmar Moseby,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dagmar Moseby +sn: Moseby +description: This is Dagmar Moseby's description +facsimileTelephoneNumber: +1 408 628-7569 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 228-4577 +title: Supreme Payroll Janitor +userPassword: Password1 +uid: MosebyD +givenName: Dagmar +mail: MosebyD@d3fcdb605edb46b186b8487dae0de85d.bitwarden.com +carLicense: 1G3SWP +departmentNumber: 4935 +employeeType: Contract +homePhone: +1 408 163-8689 +initials: D. M. +mobile: +1 408 750-7525 +pager: +1 408 894-5987 +roomNumber: 8134 +manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Casie Ress,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Casie Ress +sn: Ress +description: This is Casie Ress's description +facsimileTelephoneNumber: +1 408 751-8505 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 408 252-7713 +title: Chief Janitorial Assistant +userPassword: Password1 +uid: RessC +givenName: Casie +mail: RessC@3176045f47fb4a99bfb7ada750f4ebf5.bitwarden.com +carLicense: RA32WH +departmentNumber: 2164 +employeeType: Contract +homePhone: +1 408 992-2860 +initials: C. R. +mobile: +1 408 675-3840 +pager: +1 408 602-8608 +roomNumber: 9549 +manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Hrinfo Okura,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hrinfo Okura +sn: Okura +description: This is Hrinfo Okura's description +facsimileTelephoneNumber: +1 804 129-8467 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 804 485-5699 +title: Chief Payroll Madonna +userPassword: Password1 +uid: OkuraH +givenName: Hrinfo +mail: OkuraH@687816d020af4e4c9d25419b3dd63e14.bitwarden.com +carLicense: HCAPQH +departmentNumber: 5928 +employeeType: Employee +homePhone: +1 804 167-8523 +initials: H. O. +mobile: +1 804 995-4379 +pager: +1 804 266-2991 +roomNumber: 9459 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Korney Fadlallah,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Korney Fadlallah +sn: Fadlallah +description: This is Korney Fadlallah's description +facsimileTelephoneNumber: +1 408 787-5814 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 408 814-9006 +title: Supreme Administrative Admin +userPassword: Password1 +uid: FadlallK +givenName: Korney +mail: FadlallK@72192729ccbe43a199e14adff9e9435d.bitwarden.com +carLicense: A1031R +departmentNumber: 5758 +employeeType: Employee +homePhone: +1 408 630-6690 +initials: K. F. +mobile: +1 408 442-8825 +pager: +1 408 955-8808 +roomNumber: 9273 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jiri Leftwich,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jiri Leftwich +sn: Leftwich +description: This is Jiri Leftwich's description +facsimileTelephoneNumber: +1 408 578-7386 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 283-5548 +title: Supreme Peons Mascot +userPassword: Password1 +uid: LeftwicJ +givenName: Jiri +mail: LeftwicJ@67e1d3a1e2154702a69e299a8ae82d10.bitwarden.com +carLicense: UMESM3 +departmentNumber: 9619 +employeeType: Employee +homePhone: +1 408 244-8061 +initials: J. L. +mobile: +1 408 577-5012 +pager: +1 408 665-9252 +roomNumber: 8865 +manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com + +dn: cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mustafa Gallais +sn: Gallais +description: This is Mustafa Gallais's description +facsimileTelephoneNumber: +1 415 247-3843 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 415 416-6060 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: GallaisM +givenName: Mustafa +mail: GallaisM@2a074f142f094eecb44b675913154101.bitwarden.com +carLicense: E7EM5R +departmentNumber: 6951 +employeeType: Normal +homePhone: +1 415 656-6254 +initials: M. G. +mobile: +1 415 837-1980 +pager: +1 415 376-5624 +roomNumber: 9978 +manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Tildie Abbott,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tildie Abbott +sn: Abbott +description: This is Tildie Abbott's description +facsimileTelephoneNumber: +1 818 722-1047 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 818 856-8232 +title: Junior Human Resources Technician +userPassword: Password1 +uid: AbbottT +givenName: Tildie +mail: AbbottT@3384fe06e3e740708cd219dff85b1f83.bitwarden.com +carLicense: 07JJEN +departmentNumber: 6774 +employeeType: Normal +homePhone: +1 818 991-9175 +initials: T. A. +mobile: +1 818 230-7033 +pager: +1 818 560-3516 +roomNumber: 9070 +manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Kalindi Keehan,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kalindi Keehan +sn: Keehan +description: This is Kalindi Keehan's description +facsimileTelephoneNumber: +1 415 538-1558 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 415 853-6382 +title: Junior Peons Director +userPassword: Password1 +uid: KeehanK +givenName: Kalindi +mail: KeehanK@5398775f17574785a44a78e1afa74d02.bitwarden.com +carLicense: FNKB3A +departmentNumber: 2129 +employeeType: Employee +homePhone: +1 415 886-6415 +initials: K. K. +mobile: +1 415 389-9200 +pager: +1 415 638-2242 +roomNumber: 8750 +manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Collette Patchett,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Collette Patchett +sn: Patchett +description: This is Collette Patchett's description +facsimileTelephoneNumber: +1 408 698-7175 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 408 492-3274 +title: Junior Product Development Assistant +userPassword: Password1 +uid: PatchetC +givenName: Collette +mail: PatchetC@b1def85879ca4d1390e9e6b1d5b583ee.bitwarden.com +carLicense: TO02BG +departmentNumber: 5809 +employeeType: Employee +homePhone: +1 408 566-1453 +initials: C. P. +mobile: +1 408 834-8370 +pager: +1 408 453-8553 +roomNumber: 8075 +manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Cristiane Ruth,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cristiane Ruth +sn: Ruth +description: This is Cristiane Ruth's description +facsimileTelephoneNumber: +1 818 218-5439 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 818 245-9401 +title: Associate Peons Consultant +userPassword: Password1 +uid: RuthC +givenName: Cristiane +mail: RuthC@5214956f0ee84ad493b8defdd90a23da.bitwarden.com +carLicense: UKEF3B +departmentNumber: 6747 +employeeType: Normal +homePhone: +1 818 543-6482 +initials: C. R. +mobile: +1 818 664-7075 +pager: +1 818 265-3606 +roomNumber: 9936 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kaman Maciejewski +sn: Maciejewski +description: This is Kaman Maciejewski's description +facsimileTelephoneNumber: +1 415 938-1676 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 415 197-6022 +title: Associate Payroll Warrior +userPassword: Password1 +uid: MaciejeK +givenName: Kaman +mail: MaciejeK@bf3c9cfe52ab46f8a1843392d272b32b.bitwarden.com +carLicense: 3HISL7 +departmentNumber: 9476 +employeeType: Normal +homePhone: +1 415 769-7556 +initials: K. M. +mobile: +1 415 220-7730 +pager: +1 415 846-8488 +roomNumber: 8929 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tyronda Mayhugh +sn: Mayhugh +description: This is Tyronda Mayhugh's description +facsimileTelephoneNumber: +1 415 250-1464 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 415 303-8877 +title: Supreme Administrative Grunt +userPassword: Password1 +uid: MayhughT +givenName: Tyronda +mail: MayhughT@e467c17deb834d9fbc8b67f6cfbeb951.bitwarden.com +carLicense: 9ESGCQ +departmentNumber: 9938 +employeeType: Contract +homePhone: +1 415 744-7068 +initials: T. M. +mobile: +1 415 868-1545 +pager: +1 415 438-2336 +roomNumber: 8227 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gilberta Whiteford +sn: Whiteford +description: This is Gilberta Whiteford's description +facsimileTelephoneNumber: +1 415 304-4504 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 514-2546 +title: Chief Administrative Writer +userPassword: Password1 +uid: WhitefoG +givenName: Gilberta +mail: WhitefoG@31c61f2c8f9340ee8037a78602dae0c7.bitwarden.com +carLicense: H567IR +departmentNumber: 1636 +employeeType: Normal +homePhone: +1 415 265-3442 +initials: G. W. +mobile: +1 415 560-3064 +pager: +1 415 163-1497 +roomNumber: 8016 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Sedat Gurley,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sedat Gurley +sn: Gurley +description: This is Sedat Gurley's description +facsimileTelephoneNumber: +1 510 886-6199 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 510 444-5641 +title: Associate Product Testing Czar +userPassword: Password1 +uid: GurleyS +givenName: Sedat +mail: GurleyS@4eada34c16d14ddcb614de11bcd04009.bitwarden.com +carLicense: 5PNW2L +departmentNumber: 2823 +employeeType: Employee +homePhone: +1 510 515-5217 +initials: S. G. +mobile: +1 510 387-8585 +pager: +1 510 352-8340 +roomNumber: 9155 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Sharai Coxall,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharai Coxall +sn: Coxall +description: This is Sharai Coxall's description +facsimileTelephoneNumber: +1 206 417-8323 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 206 858-3100 +title: Associate Product Development Madonna +userPassword: Password1 +uid: CoxallS +givenName: Sharai +mail: CoxallS@63acb1cef0d64271b1836eb0bdd826d3.bitwarden.com +carLicense: H2JPNU +departmentNumber: 1572 +employeeType: Employee +homePhone: +1 206 872-9677 +initials: S. C. +mobile: +1 206 386-5690 +pager: +1 206 242-3523 +roomNumber: 8938 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Franny Walton,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franny Walton +sn: Walton +description: This is Franny Walton's description +facsimileTelephoneNumber: +1 213 968-1997 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 213 595-4514 +title: Chief Product Testing Sales Rep +userPassword: Password1 +uid: WaltonF +givenName: Franny +mail: WaltonF@5191509f48d94538ad03dc3532ab7b16.bitwarden.com +carLicense: JGNXI0 +departmentNumber: 8220 +employeeType: Employee +homePhone: +1 213 526-3016 +initials: F. W. +mobile: +1 213 180-8022 +pager: +1 213 954-6508 +roomNumber: 8407 +manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Aryn Klimas,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aryn Klimas +sn: Klimas +description: This is Aryn Klimas's description +facsimileTelephoneNumber: +1 818 487-9024 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 818 883-2063 +title: Master Janitorial Consultant +userPassword: Password1 +uid: KlimasA +givenName: Aryn +mail: KlimasA@d7b344ca45cd4c63b54c502d92e2c5d9.bitwarden.com +carLicense: Y6GP6B +departmentNumber: 1933 +employeeType: Employee +homePhone: +1 818 951-4189 +initials: A. K. +mobile: +1 818 292-5846 +pager: +1 818 326-9465 +roomNumber: 8970 +manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jawad Macchiusi +sn: Macchiusi +description: This is Jawad Macchiusi's description +facsimileTelephoneNumber: +1 206 117-2531 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 206 362-8557 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: MacchiuJ +givenName: Jawad +mail: MacchiuJ@a2ea301b88434726b194e4c9303a1849.bitwarden.com +carLicense: 2WBOTT +departmentNumber: 6832 +employeeType: Contract +homePhone: +1 206 103-5805 +initials: J. M. +mobile: +1 206 185-2610 +pager: +1 206 682-8938 +roomNumber: 9749 +manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Dorise Yue,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorise Yue +sn: Yue +description: This is Dorise Yue's description +facsimileTelephoneNumber: +1 213 630-8529 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 213 598-1303 +title: Junior Human Resources Manager +userPassword: Password1 +uid: YueD +givenName: Dorise +mail: YueD@ae51202c09c842a381cec0b8654819ea.bitwarden.com +carLicense: Q8U1Y1 +departmentNumber: 4420 +employeeType: Employee +homePhone: +1 213 598-5244 +initials: D. Y. +mobile: +1 213 908-7162 +pager: +1 213 942-5775 +roomNumber: 8469 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Mellisa Gustlin,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mellisa Gustlin +sn: Gustlin +description: This is Mellisa Gustlin's description +facsimileTelephoneNumber: +1 818 917-5523 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 818 912-6961 +title: Associate Management Punk +userPassword: Password1 +uid: GustlinM +givenName: Mellisa +mail: GustlinM@2f0e638056364f0ebcf3676022d443c8.bitwarden.com +carLicense: E3AM2T +departmentNumber: 8746 +employeeType: Normal +homePhone: +1 818 283-3731 +initials: M. G. +mobile: +1 818 953-8016 +pager: +1 818 545-2590 +roomNumber: 9469 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Butch Roper,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Butch Roper +sn: Roper +description: This is Butch Roper's description +facsimileTelephoneNumber: +1 213 872-9862 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 213 143-3322 +title: Chief Administrative Madonna +userPassword: Password1 +uid: RoperB +givenName: Butch +mail: RoperB@465c6a27d41345cf88d762adf10ae61e.bitwarden.com +carLicense: WQHQ6Y +departmentNumber: 2922 +employeeType: Employee +homePhone: +1 213 139-2472 +initials: B. R. +mobile: +1 213 690-3740 +pager: +1 213 213-3337 +roomNumber: 8345 +manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nurhan Lebo +sn: Lebo +description: This is Nurhan Lebo's description +facsimileTelephoneNumber: +1 818 189-4068 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 818 905-3968 +title: Master Janitorial President +userPassword: Password1 +uid: LeboN +givenName: Nurhan +mail: LeboN@67d3a8519ac14347aeb58946a31a1f50.bitwarden.com +carLicense: P85J9B +departmentNumber: 6216 +employeeType: Normal +homePhone: +1 818 273-5459 +initials: N. L. +mobile: +1 818 230-1703 +pager: +1 818 974-1651 +roomNumber: 9181 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Doralyn Oaks +sn: Oaks +description: This is Doralyn Oaks's description +facsimileTelephoneNumber: +1 818 209-6960 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 818 921-6597 +title: Associate Human Resources Janitor +userPassword: Password1 +uid: OaksD +givenName: Doralyn +mail: OaksD@a0698e6e756a42f28ea2d90c4b303b9e.bitwarden.com +carLicense: UV82GI +departmentNumber: 2733 +employeeType: Normal +homePhone: +1 818 940-4669 +initials: D. O. +mobile: +1 818 101-6788 +pager: +1 818 213-1284 +roomNumber: 9242 +manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Mendel Rolls,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mendel Rolls +sn: Rolls +description: This is Mendel Rolls's description +facsimileTelephoneNumber: +1 213 629-8454 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 213 793-1577 +title: Supreme Administrative Punk +userPassword: Password1 +uid: RollsM +givenName: Mendel +mail: RollsM@776517ed1aad4bc8864e3bcd6b8432b4.bitwarden.com +carLicense: XELG25 +departmentNumber: 7116 +employeeType: Contract +homePhone: +1 213 958-1372 +initials: M. R. +mobile: +1 213 633-7079 +pager: +1 213 642-2598 +roomNumber: 8995 +manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Cecelia Dowse,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cecelia Dowse +sn: Dowse +description: This is Cecelia Dowse's description +facsimileTelephoneNumber: +1 510 227-7479 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 510 278-5593 +title: Master Administrative Dictator +userPassword: Password1 +uid: DowseC +givenName: Cecelia +mail: DowseC@97c81e07db974df3904138905672982c.bitwarden.com +carLicense: J07P65 +departmentNumber: 8654 +employeeType: Contract +homePhone: +1 510 784-8481 +initials: C. D. +mobile: +1 510 743-7496 +pager: +1 510 104-6463 +roomNumber: 9985 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacinda Barrows +sn: Barrows +description: This is Jacinda Barrows's description +facsimileTelephoneNumber: +1 213 670-2470 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 213 219-3079 +title: Supreme Janitorial Fellow +userPassword: Password1 +uid: BarrowsJ +givenName: Jacinda +mail: BarrowsJ@658d341f53c7427cb916d5817479bb06.bitwarden.com +carLicense: 9J9KB1 +departmentNumber: 3139 +employeeType: Employee +homePhone: +1 213 283-9639 +initials: J. B. +mobile: +1 213 768-7944 +pager: +1 213 695-6317 +roomNumber: 9242 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com + +dn: cn=Anette Lassig,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anette Lassig +sn: Lassig +description: This is Anette Lassig's description +facsimileTelephoneNumber: +1 206 478-5129 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 206 588-9276 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: LassigA +givenName: Anette +mail: LassigA@09584180f5c84cea9422d4844e19cecf.bitwarden.com +carLicense: MPLBDG +departmentNumber: 7794 +employeeType: Normal +homePhone: +1 206 695-5148 +initials: A. L. +mobile: +1 206 355-2299 +pager: +1 206 219-9100 +roomNumber: 9082 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Gio Londhe,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gio Londhe +sn: Londhe +description: This is Gio Londhe's description +facsimileTelephoneNumber: +1 804 298-9959 +l: Redwood Shores +ou: Human Resources +postalAddress: Human Resources$Redwood Shores +telephoneNumber: +1 804 882-8423 +title: Chief Human Resources Sales Rep +userPassword: Password1 +uid: LondheG +givenName: Gio +mail: LondheG@28985efb8c4d4c12b05fcd27a8c26b7f.bitwarden.com +carLicense: 8LHGT5 +departmentNumber: 8375 +employeeType: Employee +homePhone: +1 804 874-9736 +initials: G. L. +mobile: +1 804 966-8808 +pager: +1 804 706-1210 +roomNumber: 8067 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ChristieAnne Cropper +sn: Cropper +description: This is ChristieAnne Cropper's description +facsimileTelephoneNumber: +1 818 702-8154 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 818 313-5335 +title: Junior Product Testing Vice President +userPassword: Password1 +uid: CropperC +givenName: ChristieAnne +mail: CropperC@b193a1e78b454203b9fa10eeebe62941.bitwarden.com +carLicense: S6MYEM +departmentNumber: 4540 +employeeType: Contract +homePhone: +1 818 779-7580 +initials: C. C. +mobile: +1 818 778-7239 +pager: +1 818 486-9569 +roomNumber: 8424 +manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tadayuki Mak,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tadayuki Mak +sn: Mak +description: This is Tadayuki Mak's description +facsimileTelephoneNumber: +1 213 110-5386 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 794-7952 +title: Junior Product Development President +userPassword: Password1 +uid: MakT +givenName: Tadayuki +mail: MakT@3de40f1f4bb746cab1a4ba47c2543175.bitwarden.com +carLicense: C7SRDS +departmentNumber: 2839 +employeeType: Normal +homePhone: +1 213 807-9177 +initials: T. M. +mobile: +1 213 872-2749 +pager: +1 213 485-4830 +roomNumber: 8241 +manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amparo Ratnayake +sn: Ratnayake +description: This is Amparo Ratnayake's description +facsimileTelephoneNumber: +1 415 358-4745 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 562-1980 +title: Junior Human Resources Figurehead +userPassword: Password1 +uid: RatnayaA +givenName: Amparo +mail: RatnayaA@b923ae18e63741c4b104cfaeccc5a072.bitwarden.com +carLicense: QTAE7M +departmentNumber: 4512 +employeeType: Contract +homePhone: +1 415 237-1317 +initials: A. R. +mobile: +1 415 140-7859 +pager: +1 415 242-6420 +roomNumber: 8886 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ri Trisic,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ri Trisic +sn: Trisic +description: This is Ri Trisic's description +facsimileTelephoneNumber: +1 510 359-6698 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 510 976-1490 +title: Junior Peons Assistant +userPassword: Password1 +uid: TrisicR +givenName: Ri +mail: TrisicR@d13e5b3d0b624833b56bbffe10dce123.bitwarden.com +carLicense: L2QYCG +departmentNumber: 5531 +employeeType: Normal +homePhone: +1 510 818-3900 +initials: R. T. +mobile: +1 510 555-2882 +pager: +1 510 809-9588 +roomNumber: 8869 +manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Ileana Doyle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ileana Doyle +sn: Doyle +description: This is Ileana Doyle's description +facsimileTelephoneNumber: +1 804 516-6666 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 804 145-7030 +title: Master Management Dictator +userPassword: Password1 +uid: DoyleI +givenName: Ileana +mail: DoyleI@39547ebc25814369833c967034408a9a.bitwarden.com +carLicense: SVMOFR +departmentNumber: 3173 +employeeType: Normal +homePhone: +1 804 652-1551 +initials: I. D. +mobile: +1 804 510-1218 +pager: +1 804 167-9560 +roomNumber: 9750 +manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nico Badelt,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nico Badelt +sn: Badelt +description: This is Nico Badelt's description +facsimileTelephoneNumber: +1 818 364-9717 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 818 962-3589 +title: Junior Management Sales Rep +userPassword: Password1 +uid: BadeltN +givenName: Nico +mail: BadeltN@1e81b45ef9d44be28cfb9e51c55e2212.bitwarden.com +carLicense: J59RC1 +departmentNumber: 8844 +employeeType: Normal +homePhone: +1 818 427-2131 +initials: N. B. +mobile: +1 818 685-5719 +pager: +1 818 812-4193 +roomNumber: 8868 +manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ragu Lieure,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ragu Lieure +sn: Lieure +description: This is Ragu Lieure's description +facsimileTelephoneNumber: +1 206 412-4625 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 650-1579 +title: Chief Administrative Manager +userPassword: Password1 +uid: LieureR +givenName: Ragu +mail: LieureR@7eeb5a2e39b24090937294c20835ac1d.bitwarden.com +carLicense: XNPY0D +departmentNumber: 7088 +employeeType: Contract +homePhone: +1 206 250-3244 +initials: R. L. +mobile: +1 206 834-1338 +pager: +1 206 831-8806 +roomNumber: 8359 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Claudia Berhane,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claudia Berhane +sn: Berhane +description: This is Claudia Berhane's description +facsimileTelephoneNumber: +1 510 410-5115 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 510 590-4956 +title: Chief Management Vice President +userPassword: Password1 +uid: BerhaneC +givenName: Claudia +mail: BerhaneC@8737fee626484322a472390d3fcd9614.bitwarden.com +carLicense: 2XB23U +departmentNumber: 5936 +employeeType: Employee +homePhone: +1 510 139-3929 +initials: C. B. +mobile: +1 510 676-7091 +pager: +1 510 558-3585 +roomNumber: 8113 +manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com +secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Silvana Tunali,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Silvana Tunali +sn: Tunali +description: This is Silvana Tunali's description +facsimileTelephoneNumber: +1 206 240-8810 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 206 153-3367 +title: Associate Human Resources Punk +userPassword: Password1 +uid: TunaliS +givenName: Silvana +mail: TunaliS@d30e293ef1a4478a8b737f763542bea7.bitwarden.com +carLicense: WKCJTS +departmentNumber: 1992 +employeeType: Contract +homePhone: +1 206 199-5820 +initials: S. T. +mobile: +1 206 983-6806 +pager: +1 206 673-9639 +roomNumber: 9202 +manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Anand Henshaw,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anand Henshaw +sn: Henshaw +description: This is Anand Henshaw's description +facsimileTelephoneNumber: +1 408 698-9104 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 408 940-6674 +title: Junior Administrative Mascot +userPassword: Password1 +uid: HenshawA +givenName: Anand +mail: HenshawA@9203e13698914816bdcd0ae89556ac90.bitwarden.com +carLicense: KBIFJT +departmentNumber: 5309 +employeeType: Employee +homePhone: +1 408 391-3851 +initials: A. H. +mobile: +1 408 256-2205 +pager: +1 408 646-6909 +roomNumber: 8449 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Imtaz Ledamun,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Imtaz Ledamun +sn: Ledamun +description: This is Imtaz Ledamun's description +facsimileTelephoneNumber: +1 804 525-3053 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 804 777-3294 +title: Chief Peons Artist +userPassword: Password1 +uid: LedamunI +givenName: Imtaz +mail: LedamunI@71bf922abd2749a3982856c35ce9c912.bitwarden.com +carLicense: CXHVPU +departmentNumber: 3976 +employeeType: Contract +homePhone: +1 804 464-6855 +initials: I. L. +mobile: +1 804 466-9374 +pager: +1 804 830-5753 +roomNumber: 8052 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Meryl Diaz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meryl Diaz +sn: Diaz +description: This is Meryl Diaz's description +facsimileTelephoneNumber: +1 510 423-7851 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 923-8294 +title: Master Product Development Admin +userPassword: Password1 +uid: DiazM +givenName: Meryl +mail: DiazM@c1107b78fcdc4c7da36d0ed149a4f820.bitwarden.com +carLicense: NO681J +departmentNumber: 7578 +employeeType: Contract +homePhone: +1 510 423-2138 +initials: M. D. +mobile: +1 510 912-4123 +pager: +1 510 257-4325 +roomNumber: 8413 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Saraann Anastasio,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saraann Anastasio +sn: Anastasio +description: This is Saraann Anastasio's description +facsimileTelephoneNumber: +1 510 111-3222 +l: Menlo Park +ou: Administrative +postalAddress: Administrative$Menlo Park +telephoneNumber: +1 510 910-6391 +title: Chief Administrative Consultant +userPassword: Password1 +uid: AnastasS +givenName: Saraann +mail: AnastasS@a3b3e1a7dc12465fbb231dc02524f751.bitwarden.com +carLicense: QU1BAG +departmentNumber: 8507 +employeeType: Contract +homePhone: +1 510 801-3163 +initials: S. A. +mobile: +1 510 220-8615 +pager: +1 510 382-1332 +roomNumber: 8005 +manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Declan Creane,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Declan Creane +sn: Creane +description: This is Declan Creane's description +facsimileTelephoneNumber: +1 804 898-6327 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 804 146-4700 +title: Chief Product Development Janitor +userPassword: Password1 +uid: CreaneD +givenName: Declan +mail: CreaneD@985464865b044117812421256bb2a81d.bitwarden.com +carLicense: 6ILOIU +departmentNumber: 3647 +employeeType: Contract +homePhone: +1 804 547-8733 +initials: D. C. +mobile: +1 804 558-3203 +pager: +1 804 771-7127 +roomNumber: 8156 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Terrell Mathieson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Terrell Mathieson +sn: Mathieson +description: This is Terrell Mathieson's description +facsimileTelephoneNumber: +1 408 628-8563 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 408 564-3130 +title: Junior Administrative Madonna +userPassword: Password1 +uid: MathiesT +givenName: Terrell +mail: MathiesT@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com +carLicense: CMNFNF +departmentNumber: 2087 +employeeType: Normal +homePhone: +1 408 407-4449 +initials: T. M. +mobile: +1 408 951-3139 +pager: +1 408 781-8724 +roomNumber: 8733 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Margarethe Gibbons +sn: Gibbons +description: This is Margarethe Gibbons's description +facsimileTelephoneNumber: +1 510 267-2800 +l: San Jose +ou: Janitorial +postalAddress: Janitorial$San Jose +telephoneNumber: +1 510 715-4075 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: GibbonsM +givenName: Margarethe +mail: GibbonsM@6e63ac1e5cff4aa489817dd6f33e1a44.bitwarden.com +carLicense: FPEWKO +departmentNumber: 5424 +employeeType: Employee +homePhone: +1 510 597-5187 +initials: M. G. +mobile: +1 510 742-8131 +pager: +1 510 893-4359 +roomNumber: 8792 +manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chelsey Leydig +sn: Leydig +description: This is Chelsey Leydig's description +facsimileTelephoneNumber: +1 408 640-6008 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 408 697-1800 +title: Master Human Resources President +userPassword: Password1 +uid: LeydigC +givenName: Chelsey +mail: LeydigC@c69269019dbb421c8567785c28a21f04.bitwarden.com +carLicense: WGDIRS +departmentNumber: 2193 +employeeType: Normal +homePhone: +1 408 162-5607 +initials: C. L. +mobile: +1 408 797-2502 +pager: +1 408 113-9187 +roomNumber: 9352 +manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Olympia DMS,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olympia DMS +sn: DMS +description: This is Olympia DMS's description +facsimileTelephoneNumber: +1 213 844-1656 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 213 188-8145 +title: Supreme Peons Stooge +userPassword: Password1 +uid: DMSO +givenName: Olympia +mail: DMSO@9cba00e55266421b93bd11c17d0407ed.bitwarden.com +carLicense: NN7IOM +departmentNumber: 8501 +employeeType: Employee +homePhone: +1 213 183-6415 +initials: O. D. +mobile: +1 213 747-3513 +pager: +1 213 576-6436 +roomNumber: 8208 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Mounir Pullum,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mounir Pullum +sn: Pullum +description: This is Mounir Pullum's description +facsimileTelephoneNumber: +1 804 584-8282 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 804 659-7514 +title: Junior Payroll Mascot +userPassword: Password1 +uid: PullumM +givenName: Mounir +mail: PullumM@a7e7b13342d14512ab65c0fc1d87a2ae.bitwarden.com +carLicense: UXW65D +departmentNumber: 1736 +employeeType: Employee +homePhone: +1 804 346-4044 +initials: M. P. +mobile: +1 804 295-6828 +pager: +1 804 372-4901 +roomNumber: 8392 +manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerardjan McDowell +sn: McDowell +description: This is Gerardjan McDowell's description +facsimileTelephoneNumber: +1 213 744-5707 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 213 692-7130 +title: Junior Administrative Pinhead +userPassword: Password1 +uid: McDowelG +givenName: Gerardjan +mail: McDowelG@5a83a2a2968c4e6f9cd933a562095339.bitwarden.com +carLicense: TDKNGR +departmentNumber: 9951 +employeeType: Contract +homePhone: +1 213 981-4912 +initials: G. M. +mobile: +1 213 742-1475 +pager: +1 213 515-6909 +roomNumber: 9221 +manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Constantina Faou,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Constantina Faou +sn: Faou +description: This is Constantina Faou's description +facsimileTelephoneNumber: +1 408 833-7013 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 408 686-4789 +title: Chief Product Development Janitor +userPassword: Password1 +uid: FaouC +givenName: Constantina +mail: FaouC@4376a00e71594ef1b26e2e0a8e02ecaa.bitwarden.com +carLicense: KOIVM5 +departmentNumber: 7546 +employeeType: Normal +homePhone: +1 408 307-5854 +initials: C. F. +mobile: +1 408 201-6092 +pager: +1 408 172-8028 +roomNumber: 8064 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Santiago Georges,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Santiago Georges +sn: Georges +description: This is Santiago Georges's description +facsimileTelephoneNumber: +1 415 160-9920 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 415 431-5129 +title: Associate Management Writer +userPassword: Password1 +uid: GeorgesS +givenName: Santiago +mail: GeorgesS@f17372744618439491402613e317ee84.bitwarden.com +carLicense: 6HUUQC +departmentNumber: 9175 +employeeType: Normal +homePhone: +1 415 493-4697 +initials: S. G. +mobile: +1 415 378-4724 +pager: +1 415 622-7465 +roomNumber: 9142 +manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com + +dn: cn=Marinette Ficker,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marinette Ficker +sn: Ficker +description: This is Marinette Ficker's description +facsimileTelephoneNumber: +1 206 885-6590 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 206 256-8882 +title: Junior Janitorial Admin +userPassword: Password1 +uid: FickerM +givenName: Marinette +mail: FickerM@368b49862ec74ac1974a058d04889202.bitwarden.com +carLicense: TKSH60 +departmentNumber: 5594 +employeeType: Normal +homePhone: +1 206 646-7004 +initials: M. F. +mobile: +1 206 790-7805 +pager: +1 206 586-2216 +roomNumber: 8441 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Janet Pankiw,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janet Pankiw +sn: Pankiw +description: This is Janet Pankiw's description +facsimileTelephoneNumber: +1 408 971-9068 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 408 535-8780 +title: Junior Administrative Fellow +userPassword: Password1 +uid: PankiwJ +givenName: Janet +mail: PankiwJ@4155bdebff5941d48d470ec7ba36ba81.bitwarden.com +carLicense: KA9YUV +departmentNumber: 3780 +employeeType: Contract +homePhone: +1 408 752-5258 +initials: J. P. +mobile: +1 408 334-5508 +pager: +1 408 151-8177 +roomNumber: 8510 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sayed Mohajeri +sn: Mohajeri +description: This is Sayed Mohajeri's description +facsimileTelephoneNumber: +1 510 510-1713 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 502-7335 +title: Supreme Human Resources Writer +userPassword: Password1 +uid: MohajerS +givenName: Sayed +mail: MohajerS@8e1bdb2b71764573ad6ede8abcf3030f.bitwarden.com +carLicense: 5SB3H7 +departmentNumber: 7902 +employeeType: Employee +homePhone: +1 510 835-2808 +initials: S. M. +mobile: +1 510 970-5154 +pager: +1 510 762-2668 +roomNumber: 8281 +manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Else Hazenboom,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Else Hazenboom +sn: Hazenboom +description: This is Else Hazenboom's description +facsimileTelephoneNumber: +1 804 895-6046 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 804 644-6204 +title: Associate Product Testing Stooge +userPassword: Password1 +uid: HazenboE +givenName: Else +mail: HazenboE@5c48fade5edf4f5784f81c27e5012291.bitwarden.com +carLicense: CHCU34 +departmentNumber: 8896 +employeeType: Employee +homePhone: +1 804 734-2524 +initials: E. H. +mobile: +1 804 583-6767 +pager: +1 804 750-3571 +roomNumber: 8040 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Saibal Traynor,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Saibal Traynor +sn: Traynor +description: This is Saibal Traynor's description +facsimileTelephoneNumber: +1 206 547-2939 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 820-4634 +title: Chief Peons Sales Rep +userPassword: Password1 +uid: TraynorS +givenName: Saibal +mail: TraynorS@d9dfb2c3a70849548f67937ceedb07f1.bitwarden.com +carLicense: TK9GTL +departmentNumber: 4098 +employeeType: Employee +homePhone: +1 206 261-8198 +initials: S. T. +mobile: +1 206 826-1363 +pager: +1 206 206-2186 +roomNumber: 8425 +manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com +secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com + +dn: cn=Khue Mein,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khue Mein +sn: Mein +description: This is Khue Mein's description +facsimileTelephoneNumber: +1 415 133-2262 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 415 859-2624 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: MeinK +givenName: Khue +mail: MeinK@04a84c4ba77a4d778bbb90bf38322dca.bitwarden.com +carLicense: U0OW84 +departmentNumber: 3094 +employeeType: Normal +homePhone: +1 415 707-3294 +initials: K. M. +mobile: +1 415 703-9577 +pager: +1 415 679-6220 +roomNumber: 8036 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Blanca Schaffel +sn: Schaffel +description: This is Blanca Schaffel's description +facsimileTelephoneNumber: +1 206 836-1014 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 206 350-4010 +title: Associate Product Testing Sales Rep +userPassword: Password1 +uid: SchaffeB +givenName: Blanca +mail: SchaffeB@df40332a741445b7a8fa73b2a928c4b0.bitwarden.com +carLicense: VUS0BM +departmentNumber: 3545 +employeeType: Normal +homePhone: +1 206 189-9405 +initials: B. S. +mobile: +1 206 299-3759 +pager: +1 206 923-5844 +roomNumber: 9974 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=PeyKee Fetterman,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: PeyKee Fetterman +sn: Fetterman +description: This is PeyKee Fetterman's description +facsimileTelephoneNumber: +1 213 385-1161 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 213 242-9763 +title: Associate Management Dictator +userPassword: Password1 +uid: FettermP +givenName: PeyKee +mail: FettermP@afdb909799524b7dbed21ce8a882a129.bitwarden.com +carLicense: 1D82MG +departmentNumber: 2549 +employeeType: Normal +homePhone: +1 213 446-7241 +initials: P. F. +mobile: +1 213 796-9846 +pager: +1 213 724-6345 +roomNumber: 8813 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Claire Reinlie,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Claire Reinlie +sn: Reinlie +description: This is Claire Reinlie's description +facsimileTelephoneNumber: +1 818 353-1391 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 213-2233 +title: Supreme Management Director +userPassword: Password1 +uid: ReinlieC +givenName: Claire +mail: ReinlieC@825889a0436341f395c7130d2978f17d.bitwarden.com +carLicense: TH4V2Y +departmentNumber: 6497 +employeeType: Contract +homePhone: +1 818 291-3926 +initials: C. R. +mobile: +1 818 890-9366 +pager: +1 818 114-7047 +roomNumber: 9063 +manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Shawna Lahlum,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shawna Lahlum +sn: Lahlum +description: This is Shawna Lahlum's description +facsimileTelephoneNumber: +1 818 591-3927 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 818 763-2482 +title: Master Product Development Engineer +userPassword: Password1 +uid: LahlumS +givenName: Shawna +mail: LahlumS@11d46bffb41f4b52a78d536832879f6a.bitwarden.com +carLicense: 7RQ6N2 +departmentNumber: 8337 +employeeType: Contract +homePhone: +1 818 178-2501 +initials: S. L. +mobile: +1 818 254-3004 +pager: +1 818 427-4108 +roomNumber: 8556 +manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Darelle Childress,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darelle Childress +sn: Childress +description: This is Darelle Childress's description +facsimileTelephoneNumber: +1 510 411-2962 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 510 261-7149 +title: Junior Product Development Madonna +userPassword: Password1 +uid: ChildreD +givenName: Darelle +mail: ChildreD@6ffe5ab0f525480aa833777930f34870.bitwarden.com +carLicense: AFPCWK +departmentNumber: 6545 +employeeType: Contract +homePhone: +1 510 235-4850 +initials: D. C. +mobile: +1 510 772-9302 +pager: +1 510 322-2988 +roomNumber: 8601 +manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com + +dn: cn=Kessiah Alford,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kessiah Alford +sn: Alford +description: This is Kessiah Alford's description +facsimileTelephoneNumber: +1 213 256-8508 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 213 174-3615 +title: Associate Peons Grunt +userPassword: Password1 +uid: AlfordK +givenName: Kessiah +mail: AlfordK@238696ade728438aa3391299a0dc9901.bitwarden.com +carLicense: 7YMJKD +departmentNumber: 6461 +employeeType: Contract +homePhone: +1 213 728-4376 +initials: K. A. +mobile: +1 213 465-2891 +pager: +1 213 915-8239 +roomNumber: 9195 +manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Theressa Olivier,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Theressa Olivier +sn: Olivier +description: This is Theressa Olivier's description +facsimileTelephoneNumber: +1 408 476-4899 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 408 448-6157 +title: Junior Peons Czar +userPassword: Password1 +uid: OlivierT +givenName: Theressa +mail: OlivierT@3ac90edfcfff46898d6b206ad200961d.bitwarden.com +carLicense: TU5FG7 +departmentNumber: 8309 +employeeType: Employee +homePhone: +1 408 870-8979 +initials: T. O. +mobile: +1 408 845-1296 +pager: +1 408 339-9878 +roomNumber: 8269 +manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Pauly Jago,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pauly Jago +sn: Jago +description: This is Pauly Jago's description +facsimileTelephoneNumber: +1 206 511-1675 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 206 807-6746 +title: Master Product Testing Madonna +userPassword: Password1 +uid: JagoP +givenName: Pauly +mail: JagoP@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com +carLicense: JSMPF7 +departmentNumber: 4705 +employeeType: Normal +homePhone: +1 206 249-7211 +initials: P. J. +mobile: +1 206 913-3791 +pager: +1 206 772-5537 +roomNumber: 8642 +manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Collete Krabicka,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Collete Krabicka +sn: Krabicka +description: This is Collete Krabicka's description +facsimileTelephoneNumber: +1 804 830-8925 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 234-3623 +title: Associate Product Development Admin +userPassword: Password1 +uid: KrabickC +givenName: Collete +mail: KrabickC@7cae85b47554428097a6ccb66a70ecf0.bitwarden.com +carLicense: 49CXYU +departmentNumber: 1827 +employeeType: Employee +homePhone: +1 804 137-1622 +initials: C. K. +mobile: +1 804 327-8232 +pager: +1 804 376-3539 +roomNumber: 8519 +manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kim Highsmith,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kim Highsmith +sn: Highsmith +description: This is Kim Highsmith's description +facsimileTelephoneNumber: +1 206 916-4402 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 253-7876 +title: Junior Administrative Punk +userPassword: Password1 +uid: HighsmiK +givenName: Kim +mail: HighsmiK@1ae1933dac97453a926e3efbe8067be8.bitwarden.com +carLicense: BUGYCA +departmentNumber: 7143 +employeeType: Employee +homePhone: +1 206 273-7413 +initials: K. H. +mobile: +1 206 707-7891 +pager: +1 206 248-6659 +roomNumber: 8064 +manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norine Maludzinski +sn: Maludzinski +description: This is Norine Maludzinski's description +facsimileTelephoneNumber: +1 818 706-4910 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 818 617-7562 +title: Chief Human Resources Artist +userPassword: Password1 +uid: MaludziN +givenName: Norine +mail: MaludziN@19be86f3b1d34c7ab6993505e8f0ad33.bitwarden.com +carLicense: AIGKX6 +departmentNumber: 3515 +employeeType: Contract +homePhone: +1 818 868-5648 +initials: N. M. +mobile: +1 818 107-5651 +pager: +1 818 185-4537 +roomNumber: 8459 +manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Elladine Schwab,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elladine Schwab +sn: Schwab +description: This is Elladine Schwab's description +facsimileTelephoneNumber: +1 213 593-3451 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 263-3118 +title: Chief Janitorial Writer +userPassword: Password1 +uid: SchwabE +givenName: Elladine +mail: SchwabE@fdc7d191201f48f4ad7e078c4bc3a04a.bitwarden.com +carLicense: UETRXX +departmentNumber: 4917 +employeeType: Contract +homePhone: +1 213 189-8487 +initials: E. S. +mobile: +1 213 836-8851 +pager: +1 213 536-1101 +roomNumber: 8061 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Francisco Knickerbocker +sn: Knickerbocker +description: This is Francisco Knickerbocker's description +facsimileTelephoneNumber: +1 213 493-4591 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 213 221-3919 +title: Associate Janitorial Engineer +userPassword: Password1 +uid: KnickerF +givenName: Francisco +mail: KnickerF@f853c03d8c874a9b82d05bbacc050701.bitwarden.com +carLicense: YDP0Q4 +departmentNumber: 3815 +employeeType: Contract +homePhone: +1 213 466-9371 +initials: F. K. +mobile: +1 213 894-1622 +pager: +1 213 897-7260 +roomNumber: 9442 +manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trinh Parthasarathy +sn: Parthasarathy +description: This is Trinh Parthasarathy's description +facsimileTelephoneNumber: +1 818 863-9025 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 399-9786 +title: Supreme Peons Fellow +userPassword: Password1 +uid: ParthasT +givenName: Trinh +mail: ParthasT@a3360bcceedb4a1c970485f0ee727ec8.bitwarden.com +carLicense: MTQ90J +departmentNumber: 8460 +employeeType: Contract +homePhone: +1 818 155-4618 +initials: T. P. +mobile: +1 818 470-7151 +pager: +1 818 865-2775 +roomNumber: 9849 +manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=XiaoMing Dorr,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: XiaoMing Dorr +sn: Dorr +description: This is XiaoMing Dorr's description +facsimileTelephoneNumber: +1 804 811-6725 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 804 726-8338 +title: Master Management Dictator +userPassword: Password1 +uid: DorrX +givenName: XiaoMing +mail: DorrX@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com +carLicense: 5Y516R +departmentNumber: 5825 +employeeType: Contract +homePhone: +1 804 980-7155 +initials: X. D. +mobile: +1 804 543-9784 +pager: +1 804 800-8646 +roomNumber: 8800 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Clement Durant,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clement Durant +sn: Durant +description: This is Clement Durant's description +facsimileTelephoneNumber: +1 415 409-9950 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 415 407-8852 +title: Chief Peons Dictator +userPassword: Password1 +uid: DurantC +givenName: Clement +mail: DurantC@50bab9f9cf1041a789372e5001d27214.bitwarden.com +carLicense: T9DEMY +departmentNumber: 3415 +employeeType: Normal +homePhone: +1 415 906-9498 +initials: C. D. +mobile: +1 415 530-9196 +pager: +1 415 627-7073 +roomNumber: 8001 +manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rejeanne Shelegey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rejeanne Shelegey +sn: Shelegey +description: This is Rejeanne Shelegey's description +facsimileTelephoneNumber: +1 408 733-9458 +l: San Jose +ou: Management +postalAddress: Management$San Jose +telephoneNumber: +1 408 813-2418 +title: Master Management Czar +userPassword: Password1 +uid: ShelegeR +givenName: Rejeanne +mail: ShelegeR@de4005aec23f451ca3bc6305e1d4b24c.bitwarden.com +carLicense: OXSSW1 +departmentNumber: 2321 +employeeType: Employee +homePhone: +1 408 837-7000 +initials: R. S. +mobile: +1 408 416-5971 +pager: +1 408 501-8630 +roomNumber: 9577 +manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Nicky McDowall,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicky McDowall +sn: McDowall +description: This is Nicky McDowall's description +facsimileTelephoneNumber: +1 408 533-7559 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 213-4263 +title: Master Payroll Grunt +userPassword: Password1 +uid: McDowalN +givenName: Nicky +mail: McDowalN@99e9bc5df9fd4340b54c8a144a9561a1.bitwarden.com +carLicense: PV24JE +departmentNumber: 4504 +employeeType: Normal +homePhone: +1 408 227-2113 +initials: N. M. +mobile: +1 408 843-2770 +pager: +1 408 684-7868 +roomNumber: 9028 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com + +dn: cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: JeanBernard Chepregi +sn: Chepregi +description: This is JeanBernard Chepregi's description +facsimileTelephoneNumber: +1 818 350-3224 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 818 288-2416 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: ChepregJ +givenName: JeanBernard +mail: ChepregJ@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com +carLicense: 6TOWPF +departmentNumber: 2828 +employeeType: Employee +homePhone: +1 818 577-3171 +initials: J. C. +mobile: +1 818 227-2143 +pager: +1 818 705-9452 +roomNumber: 8766 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Thomasa Fulk,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomasa Fulk +sn: Fulk +description: This is Thomasa Fulk's description +facsimileTelephoneNumber: +1 415 254-8331 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 415 558-7014 +title: Associate Peons Vice President +userPassword: Password1 +uid: FulkT +givenName: Thomasa +mail: FulkT@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com +carLicense: I8QDAC +departmentNumber: 1516 +employeeType: Contract +homePhone: +1 415 458-4030 +initials: T. F. +mobile: +1 415 237-2508 +pager: +1 415 380-1998 +roomNumber: 9603 +manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Florri Tregenza,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Florri Tregenza +sn: Tregenza +description: This is Florri Tregenza's description +facsimileTelephoneNumber: +1 206 124-2250 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 236-3470 +title: Chief Peons Manager +userPassword: Password1 +uid: TregenzF +givenName: Florri +mail: TregenzF@759d634715d84fd98852f9030d6bb1fd.bitwarden.com +carLicense: PE78WC +departmentNumber: 8211 +employeeType: Contract +homePhone: +1 206 511-7410 +initials: F. T. +mobile: +1 206 618-3323 +pager: +1 206 950-5593 +roomNumber: 9910 +manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hester Colbourne,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hester Colbourne +sn: Colbourne +description: This is Hester Colbourne's description +facsimileTelephoneNumber: +1 804 285-6232 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 644-2407 +title: Chief Product Development Mascot +userPassword: Password1 +uid: ColbourH +givenName: Hester +mail: ColbourH@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com +carLicense: RSCJDF +departmentNumber: 9163 +employeeType: Employee +homePhone: +1 804 114-2958 +initials: H. C. +mobile: +1 804 732-7069 +pager: +1 804 278-6209 +roomNumber: 9455 +manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Anitra Hugel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anitra Hugel +sn: Hugel +description: This is Anitra Hugel's description +facsimileTelephoneNumber: +1 510 222-6755 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 510 203-3657 +title: Junior Product Development Grunt +userPassword: Password1 +uid: HugelA +givenName: Anitra +mail: HugelA@41e8e26802fc4aa2a4f148597fd04eef.bitwarden.com +carLicense: QDE4JH +departmentNumber: 7147 +employeeType: Normal +homePhone: +1 510 761-1219 +initials: A. H. +mobile: +1 510 597-2720 +pager: +1 510 460-7859 +roomNumber: 8557 +manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kanu Cuervo,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kanu Cuervo +sn: Cuervo +description: This is Kanu Cuervo's description +facsimileTelephoneNumber: +1 804 539-1191 +l: Santa Clara +ou: Management +postalAddress: Management$Santa Clara +telephoneNumber: +1 804 381-1802 +title: Junior Management Fellow +userPassword: Password1 +uid: CuervoK +givenName: Kanu +mail: CuervoK@4ffdbcbdfbba4f78b2cb0e4b52273909.bitwarden.com +carLicense: GKL0JX +departmentNumber: 1782 +employeeType: Normal +homePhone: +1 804 292-9229 +initials: K. C. +mobile: +1 804 991-2642 +pager: +1 804 314-1512 +roomNumber: 8069 +manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Octavia Lethebinh +sn: Lethebinh +description: This is Octavia Lethebinh's description +facsimileTelephoneNumber: +1 804 106-3352 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 804 852-7388 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: LethebiO +givenName: Octavia +mail: LethebiO@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com +carLicense: V6RLV8 +departmentNumber: 4372 +employeeType: Contract +homePhone: +1 804 857-9222 +initials: O. L. +mobile: +1 804 676-7875 +pager: +1 804 131-4726 +roomNumber: 9880 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: AnnLorrain Hafermalz +sn: Hafermalz +description: This is AnnLorrain Hafermalz's description +facsimileTelephoneNumber: +1 213 614-8542 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 213 847-4048 +title: Junior Payroll Evangelist +userPassword: Password1 +uid: HafermaA +givenName: AnnLorrain +mail: HafermaA@566c53c3c68842f79a345eff5495df76.bitwarden.com +carLicense: OME6UD +departmentNumber: 7284 +employeeType: Normal +homePhone: +1 213 861-3348 +initials: A. H. +mobile: +1 213 350-1746 +pager: +1 213 562-2480 +roomNumber: 9805 +manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Faruk Hanzel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Faruk Hanzel +sn: Hanzel +description: This is Faruk Hanzel's description +facsimileTelephoneNumber: +1 818 431-8630 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 561-5751 +title: Chief Product Development Punk +userPassword: Password1 +uid: HanzelF +givenName: Faruk +mail: HanzelF@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com +carLicense: J6OWVW +departmentNumber: 4361 +employeeType: Contract +homePhone: +1 818 465-5795 +initials: F. H. +mobile: +1 818 510-2693 +pager: +1 818 668-4224 +roomNumber: 8450 +manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Trent Carli,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Trent Carli +sn: Carli +description: This is Trent Carli's description +facsimileTelephoneNumber: +1 510 357-5314 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 539-5020 +title: Supreme Product Development Admin +userPassword: Password1 +uid: CarliT +givenName: Trent +mail: CarliT@d95e5fa5af7a4a96ac09ece7f1a1a4f9.bitwarden.com +carLicense: EQKHKD +departmentNumber: 3937 +employeeType: Normal +homePhone: +1 510 481-1098 +initials: T. C. +mobile: +1 510 352-4290 +pager: +1 510 536-3396 +roomNumber: 8385 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Maurene Paliga,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maurene Paliga +sn: Paliga +description: This is Maurene Paliga's description +facsimileTelephoneNumber: +1 510 920-5679 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 510 357-5318 +title: Supreme Payroll Artist +userPassword: Password1 +uid: PaligaM +givenName: Maurene +mail: PaligaM@0fae6975893e4404981e1b0278fd9893.bitwarden.com +carLicense: 03PL7U +departmentNumber: 4307 +employeeType: Normal +homePhone: +1 510 700-6810 +initials: M. P. +mobile: +1 510 875-4079 +pager: +1 510 491-6902 +roomNumber: 9485 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Minette Manner,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Minette Manner +sn: Manner +description: This is Minette Manner's description +facsimileTelephoneNumber: +1 408 596-8669 +l: Cupertino +ou: Management +postalAddress: Management$Cupertino +telephoneNumber: +1 408 681-1997 +title: Supreme Management Pinhead +userPassword: Password1 +uid: MannerM +givenName: Minette +mail: MannerM@2ee12d03ea504c8cbd45c956288b9b76.bitwarden.com +carLicense: J7AO97 +departmentNumber: 3829 +employeeType: Normal +homePhone: +1 408 798-7081 +initials: M. M. +mobile: +1 408 930-4586 +pager: +1 408 898-4188 +roomNumber: 8764 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dotti Merklinger +sn: Merklinger +description: This is Dotti Merklinger's description +facsimileTelephoneNumber: +1 213 526-4797 +l: Sunnyvale +ou: Human Resources +postalAddress: Human Resources$Sunnyvale +telephoneNumber: +1 213 757-5592 +title: Associate Human Resources Grunt +userPassword: Password1 +uid: MerklinD +givenName: Dotti +mail: MerklinD@e471e3a82052467cbf4b6e0a9c1ffb9e.bitwarden.com +carLicense: UY8B09 +departmentNumber: 1652 +employeeType: Employee +homePhone: +1 213 685-7848 +initials: D. M. +mobile: +1 213 222-6215 +pager: +1 213 206-3581 +roomNumber: 8362 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elio Lough,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elio Lough +sn: Lough +description: This is Elio Lough's description +facsimileTelephoneNumber: +1 213 454-8066 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 213 820-2212 +title: Junior Payroll Technician +userPassword: Password1 +uid: LoughE +givenName: Elio +mail: LoughE@a63636764be2417c8862dba36d524669.bitwarden.com +carLicense: KC42M7 +departmentNumber: 4167 +employeeType: Employee +homePhone: +1 213 171-4174 +initials: E. L. +mobile: +1 213 696-6817 +pager: +1 213 862-5541 +roomNumber: 8352 +manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Abigael Noddin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Abigael Noddin +sn: Noddin +description: This is Abigael Noddin's description +facsimileTelephoneNumber: +1 213 528-3063 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 213 938-1575 +title: Supreme Peons Czar +userPassword: Password1 +uid: NoddinA +givenName: Abigael +mail: NoddinA@db51bc9053f3446197c0ce77497e73c2.bitwarden.com +carLicense: 6MAFMY +departmentNumber: 7809 +employeeType: Employee +homePhone: +1 213 851-3555 +initials: A. N. +mobile: +1 213 209-8650 +pager: +1 213 348-9719 +roomNumber: 9435 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Winna Bono,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Winna Bono +sn: Bono +description: This is Winna Bono's description +facsimileTelephoneNumber: +1 804 311-3269 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 532-6563 +title: Associate Human Resources Fellow +userPassword: Password1 +uid: BonoW +givenName: Winna +mail: BonoW@7c32fb701ef74a0cad22be6cdec84337.bitwarden.com +carLicense: DCFU14 +departmentNumber: 4428 +employeeType: Employee +homePhone: +1 804 861-7733 +initials: W. B. +mobile: +1 804 263-7822 +pager: +1 804 604-4049 +roomNumber: 8490 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khamdy Jubenville +sn: Jubenville +description: This is Khamdy Jubenville's description +facsimileTelephoneNumber: +1 408 469-4600 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 408 733-8021 +title: Supreme Administrative Technician +userPassword: Password1 +uid: JubenviK +givenName: Khamdy +mail: JubenviK@828715479ac64a4e9327e29f8a0322a8.bitwarden.com +carLicense: 8UT6XC +departmentNumber: 1198 +employeeType: Normal +homePhone: +1 408 563-3613 +initials: K. J. +mobile: +1 408 606-9095 +pager: +1 408 286-2614 +roomNumber: 9919 +manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Karalynn Paylor,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karalynn Paylor +sn: Paylor +description: This is Karalynn Paylor's description +facsimileTelephoneNumber: +1 818 741-6816 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 818 477-6674 +title: Chief Administrative Visionary +userPassword: Password1 +uid: PaylorK +givenName: Karalynn +mail: PaylorK@77c372e3de4e484f817d59e9093d13ca.bitwarden.com +carLicense: XJ4R9Y +departmentNumber: 2635 +employeeType: Contract +homePhone: +1 818 524-3905 +initials: K. P. +mobile: +1 818 988-9969 +pager: +1 818 791-6659 +roomNumber: 9445 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Caterina Pittam,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caterina Pittam +sn: Pittam +description: This is Caterina Pittam's description +facsimileTelephoneNumber: +1 408 381-4970 +l: Armonk +ou: Peons +postalAddress: Peons$Armonk +telephoneNumber: +1 408 768-9154 +title: Associate Peons Stooge +userPassword: Password1 +uid: PittamC +givenName: Caterina +mail: PittamC@73270e440d9c4ce889031efd2cc4d745.bitwarden.com +carLicense: O81HGU +departmentNumber: 7704 +employeeType: Normal +homePhone: +1 408 887-3832 +initials: C. P. +mobile: +1 408 130-2243 +pager: +1 408 603-9883 +roomNumber: 9288 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Michaela Cuffle,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Michaela Cuffle +sn: Cuffle +description: This is Michaela Cuffle's description +facsimileTelephoneNumber: +1 804 503-8154 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 421-7413 +title: Associate Management Dictator +userPassword: Password1 +uid: CuffleM +givenName: Michaela +mail: CuffleM@c927612f4cbe4fcf841a3d7e140a391c.bitwarden.com +carLicense: LDGIUP +departmentNumber: 7028 +employeeType: Contract +homePhone: +1 804 906-6736 +initials: M. C. +mobile: +1 804 358-8134 +pager: +1 804 150-6798 +roomNumber: 9556 +manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sibylle Martins,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sibylle Martins +sn: Martins +description: This is Sibylle Martins's description +facsimileTelephoneNumber: +1 408 887-6666 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 677-8567 +title: Master Human Resources Fellow +userPassword: Password1 +uid: MartinsS +givenName: Sibylle +mail: MartinsS@84cc1f48f9a6495a85f0c7e7652d7056.bitwarden.com +carLicense: HTAQO5 +departmentNumber: 6421 +employeeType: Normal +homePhone: +1 408 402-3087 +initials: S. M. +mobile: +1 408 279-6651 +pager: +1 408 710-2107 +roomNumber: 9559 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jade Noguchi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jade Noguchi +sn: Noguchi +description: This is Jade Noguchi's description +facsimileTelephoneNumber: +1 213 766-9328 +l: Cupertino +ou: Payroll +postalAddress: Payroll$Cupertino +telephoneNumber: +1 213 479-8390 +title: Chief Payroll Dictator +userPassword: Password1 +uid: NoguchiJ +givenName: Jade +mail: NoguchiJ@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com +carLicense: 6YQ7SB +departmentNumber: 9087 +employeeType: Normal +homePhone: +1 213 851-9944 +initials: J. N. +mobile: +1 213 898-6260 +pager: +1 213 373-4317 +roomNumber: 8078 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Guenna Lazure,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Guenna Lazure +sn: Lazure +description: This is Guenna Lazure's description +facsimileTelephoneNumber: +1 213 516-4799 +l: San Mateo +ou: Peons +postalAddress: Peons$San Mateo +telephoneNumber: +1 213 820-9106 +title: Chief Peons Czar +userPassword: Password1 +uid: LazureG +givenName: Guenna +mail: LazureG@1b72488cc66542c3a9a532a6c9260a5f.bitwarden.com +carLicense: O44B8M +departmentNumber: 4920 +employeeType: Contract +homePhone: +1 213 183-7027 +initials: G. L. +mobile: +1 213 994-9532 +pager: +1 213 363-4093 +roomNumber: 8394 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Beatrisa Staring,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beatrisa Staring +sn: Staring +description: This is Beatrisa Staring's description +facsimileTelephoneNumber: +1 804 259-8101 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 781-1410 +title: Chief Product Development Punk +userPassword: Password1 +uid: StaringB +givenName: Beatrisa +mail: StaringB@c5642a4e738442dc82e826ce039fbed0.bitwarden.com +carLicense: FEXDY7 +departmentNumber: 3698 +employeeType: Employee +homePhone: +1 804 900-1692 +initials: B. S. +mobile: +1 804 518-8560 +pager: +1 804 272-9303 +roomNumber: 8367 +manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Bernadine Schrang,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bernadine Schrang +sn: Schrang +description: This is Bernadine Schrang's description +facsimileTelephoneNumber: +1 213 726-1346 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 213 517-9617 +title: Master Product Development Grunt +userPassword: Password1 +uid: SchrangB +givenName: Bernadine +mail: SchrangB@696db7ebc26e4f86a6552c4f6f755d76.bitwarden.com +carLicense: I8R5NA +departmentNumber: 8523 +employeeType: Contract +homePhone: +1 213 983-4940 +initials: B. S. +mobile: +1 213 157-8322 +pager: +1 213 473-8960 +roomNumber: 9958 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Alese Rigdon,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alese Rigdon +sn: Rigdon +description: This is Alese Rigdon's description +facsimileTelephoneNumber: +1 415 265-5990 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 591-8872 +title: Master Product Development President +userPassword: Password1 +uid: RigdonA +givenName: Alese +mail: RigdonA@c6cd785d90994077a9f86547f3ad75a2.bitwarden.com +carLicense: QQOJDM +departmentNumber: 5564 +employeeType: Employee +homePhone: +1 415 162-2841 +initials: A. R. +mobile: +1 415 912-5276 +pager: +1 415 438-5920 +roomNumber: 8094 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=MaryJo Harms,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: MaryJo Harms +sn: Harms +description: This is MaryJo Harms's description +facsimileTelephoneNumber: +1 408 407-2301 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 606-2885 +title: Chief Janitorial Architect +userPassword: Password1 +uid: HarmsM +givenName: MaryJo +mail: HarmsM@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com +carLicense: G5DK5M +departmentNumber: 8969 +employeeType: Contract +homePhone: +1 408 229-5795 +initials: M. H. +mobile: +1 408 919-3209 +pager: +1 408 224-8446 +roomNumber: 8881 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Dorris Akita,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorris Akita +sn: Akita +description: This is Dorris Akita's description +facsimileTelephoneNumber: +1 510 192-5345 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 618-8562 +title: Supreme Janitorial Janitor +userPassword: Password1 +uid: AkitaD +givenName: Dorris +mail: AkitaD@deb24c82a57b4b4ba4fd2ff9dfbbb9d6.bitwarden.com +carLicense: MWV8T0 +departmentNumber: 8996 +employeeType: Employee +homePhone: +1 510 793-9587 +initials: D. A. +mobile: +1 510 489-3061 +pager: +1 510 423-6314 +roomNumber: 8006 +manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Thanh Dewitt,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thanh Dewitt +sn: Dewitt +description: This is Thanh Dewitt's description +facsimileTelephoneNumber: +1 213 783-4057 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 213 728-2456 +title: Associate Product Development Janitor +userPassword: Password1 +uid: DewittT +givenName: Thanh +mail: DewittT@5e4e7d75e05b48bd8f2b694051e48b65.bitwarden.com +carLicense: QTDHSL +departmentNumber: 9332 +employeeType: Employee +homePhone: +1 213 738-2367 +initials: T. D. +mobile: +1 213 940-5440 +pager: +1 213 484-6411 +roomNumber: 8673 +manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com + +dn: cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roseline Klostermann +sn: Klostermann +description: This is Roseline Klostermann's description +facsimileTelephoneNumber: +1 415 721-8888 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 415 509-8036 +title: Chief Product Testing Mascot +userPassword: Password1 +uid: KlosterR +givenName: Roseline +mail: KlosterR@7ab7643662f14cef84497ec647fde7ff.bitwarden.com +carLicense: 2AD6FM +departmentNumber: 6415 +employeeType: Contract +homePhone: +1 415 529-1510 +initials: R. K. +mobile: +1 415 861-3481 +pager: +1 415 831-5179 +roomNumber: 9181 +manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amelie BaggermanWebster +sn: BaggermanWebster +description: This is Amelie BaggermanWebster's description +facsimileTelephoneNumber: +1 213 423-8037 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 917-4544 +title: Chief Product Testing Fellow +userPassword: Password1 +uid: BaggermA +givenName: Amelie +mail: BaggermA@a372f6ef68844d9ba9a56394e6e19253.bitwarden.com +carLicense: HMTAAN +departmentNumber: 8020 +employeeType: Employee +homePhone: +1 213 836-1006 +initials: A. B. +mobile: +1 213 984-8126 +pager: +1 213 254-5446 +roomNumber: 8553 +manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Davita Stenson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Davita Stenson +sn: Stenson +description: This is Davita Stenson's description +facsimileTelephoneNumber: +1 415 242-2992 +l: Armonk +ou: Product Development +postalAddress: Product Development$Armonk +telephoneNumber: +1 415 669-7234 +title: Associate Product Development Architect +userPassword: Password1 +uid: StensonD +givenName: Davita +mail: StensonD@e62b6bada3794f6abc6e683f712748b4.bitwarden.com +carLicense: ABPP5H +departmentNumber: 8747 +employeeType: Contract +homePhone: +1 415 861-5735 +initials: D. S. +mobile: +1 415 217-5480 +pager: +1 415 931-3672 +roomNumber: 8630 +manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Pak Krone,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pak Krone +sn: Krone +description: This is Pak Krone's description +facsimileTelephoneNumber: +1 415 172-8703 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 444-5398 +title: Associate Product Development Admin +userPassword: Password1 +uid: KroneP +givenName: Pak +mail: KroneP@42be868e79934b2781b6098b8536a633.bitwarden.com +carLicense: O4X7YQ +departmentNumber: 3160 +employeeType: Normal +homePhone: +1 415 104-4413 +initials: P. K. +mobile: +1 415 653-3067 +pager: +1 415 507-1342 +roomNumber: 8033 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Idalina Vogt,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idalina Vogt +sn: Vogt +description: This is Idalina Vogt's description +facsimileTelephoneNumber: +1 415 908-4047 +l: Santa Clara +ou: Product Testing +postalAddress: Product Testing$Santa Clara +telephoneNumber: +1 415 953-5050 +title: Associate Product Testing Developer +userPassword: Password1 +uid: VogtI +givenName: Idalina +mail: VogtI@95371e442302451c9744b100e5d4b3c5.bitwarden.com +carLicense: 2IL7R7 +departmentNumber: 8456 +employeeType: Normal +homePhone: +1 415 406-8542 +initials: I. V. +mobile: +1 415 255-7429 +pager: +1 415 365-4201 +roomNumber: 8102 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com + +dn: cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: WaiChau Vankooten +sn: Vankooten +description: This is WaiChau Vankooten's description +facsimileTelephoneNumber: +1 804 827-1958 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 804 653-9961 +title: Master Human Resources Vice President +userPassword: Password1 +uid: VankootW +givenName: WaiChau +mail: VankootW@804b9151f1ba415a894983275163dae1.bitwarden.com +carLicense: RNE3SI +departmentNumber: 8195 +employeeType: Employee +homePhone: +1 804 887-9661 +initials: W. V. +mobile: +1 804 444-7600 +pager: +1 804 476-7410 +roomNumber: 8461 +manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Yuan Wester,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yuan Wester +sn: Wester +description: This is Yuan Wester's description +facsimileTelephoneNumber: +1 408 634-3061 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 408 692-1733 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: WesterY +givenName: Yuan +mail: WesterY@1dc3a166a7d1429cbda07bce89749db3.bitwarden.com +carLicense: FI31BY +departmentNumber: 4864 +employeeType: Contract +homePhone: +1 408 300-5786 +initials: Y. W. +mobile: +1 408 667-5808 +pager: +1 408 165-5190 +roomNumber: 9603 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Riaz Gulis,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Riaz Gulis +sn: Gulis +description: This is Riaz Gulis's description +facsimileTelephoneNumber: +1 213 317-9467 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 213 306-7500 +title: Supreme Product Development Sales Rep +userPassword: Password1 +uid: GulisR +givenName: Riaz +mail: GulisR@145129e0e2ad4c1cabc46b1331f17265.bitwarden.com +carLicense: V17UCA +departmentNumber: 6423 +employeeType: Contract +homePhone: +1 213 408-7573 +initials: R. G. +mobile: +1 213 120-1004 +pager: +1 213 750-9398 +roomNumber: 9410 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Odetta Masse,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odetta Masse +sn: Masse +description: This is Odetta Masse's description +facsimileTelephoneNumber: +1 415 274-5999 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 497-7743 +title: Master Product Testing Developer +userPassword: Password1 +uid: MasseO +givenName: Odetta +mail: MasseO@aa7285e13fe546c6b7b266b1436cce65.bitwarden.com +carLicense: FOE7D2 +departmentNumber: 3141 +employeeType: Normal +homePhone: +1 415 180-9191 +initials: O. M. +mobile: +1 415 157-4951 +pager: +1 415 479-5746 +roomNumber: 8932 +manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Stacia Presgrove,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stacia Presgrove +sn: Presgrove +description: This is Stacia Presgrove's description +facsimileTelephoneNumber: +1 804 172-5142 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 804 268-8262 +title: Master Management Admin +userPassword: Password1 +uid: PresgroS +givenName: Stacia +mail: PresgroS@f5efd1e9a39c413dbfa9f7e476ae7cea.bitwarden.com +carLicense: P2W6BU +departmentNumber: 7162 +employeeType: Contract +homePhone: +1 804 215-5458 +initials: S. P. +mobile: +1 804 652-6366 +pager: +1 804 170-1141 +roomNumber: 8615 +manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com +secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Norbert Salazar,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norbert Salazar +sn: Salazar +description: This is Norbert Salazar's description +facsimileTelephoneNumber: +1 206 514-6930 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 206 238-9745 +title: Junior Product Development Visionary +userPassword: Password1 +uid: SalazarN +givenName: Norbert +mail: SalazarN@36dd795f7b764cba960063e604e64710.bitwarden.com +carLicense: MLB6JW +departmentNumber: 4707 +employeeType: Contract +homePhone: +1 206 941-1247 +initials: N. S. +mobile: +1 206 862-7376 +pager: +1 206 803-1819 +roomNumber: 9080 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nevein Grimshaw,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nevein Grimshaw +sn: Grimshaw +description: This is Nevein Grimshaw's description +facsimileTelephoneNumber: +1 510 368-9437 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 510 389-9435 +title: Associate Management Director +userPassword: Password1 +uid: GrimshaN +givenName: Nevein +mail: GrimshaN@1d6456d50bf342eb9edbc475cb3ae754.bitwarden.com +carLicense: GJCU46 +departmentNumber: 7045 +employeeType: Contract +homePhone: +1 510 752-1346 +initials: N. G. +mobile: +1 510 490-4401 +pager: +1 510 846-9604 +roomNumber: 8412 +manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Annaliese Hudak,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Annaliese Hudak +sn: Hudak +description: This is Annaliese Hudak's description +facsimileTelephoneNumber: +1 804 129-1271 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 242-8178 +title: Master Product Development Grunt +userPassword: Password1 +uid: HudakA +givenName: Annaliese +mail: HudakA@8086b9fea7b2437cb09806e8e5c40f1a.bitwarden.com +carLicense: RD4AHI +departmentNumber: 3051 +employeeType: Normal +homePhone: +1 804 349-5193 +initials: A. H. +mobile: +1 804 458-9726 +pager: +1 804 395-2027 +roomNumber: 8440 +manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Andromache Machika,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Andromache Machika +sn: Machika +description: This is Andromache Machika's description +facsimileTelephoneNumber: +1 415 670-5581 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 415 839-3677 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: MachikaA +givenName: Andromache +mail: MachikaA@aae9b0d8d8c047aa8aadb6213597cf90.bitwarden.com +carLicense: 5OM4C2 +departmentNumber: 9306 +employeeType: Contract +homePhone: +1 415 334-3957 +initials: A. M. +mobile: +1 415 907-7760 +pager: +1 415 808-5164 +roomNumber: 8709 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Meriann Larose,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Meriann Larose +sn: Larose +description: This is Meriann Larose's description +facsimileTelephoneNumber: +1 415 581-1631 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 941-7196 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: LaroseM +givenName: Meriann +mail: LaroseM@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com +carLicense: RNMV35 +departmentNumber: 7479 +employeeType: Contract +homePhone: +1 415 309-2136 +initials: M. L. +mobile: +1 415 611-2478 +pager: +1 415 833-8440 +roomNumber: 8697 +manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Agathe Kikuchi,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agathe Kikuchi +sn: Kikuchi +description: This is Agathe Kikuchi's description +facsimileTelephoneNumber: +1 804 798-9819 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 804 125-9511 +title: Associate Management Vice President +userPassword: Password1 +uid: KikuchiA +givenName: Agathe +mail: KikuchiA@7c90e56d6cd142eb807f1e1a9bbefb5e.bitwarden.com +carLicense: P3637H +departmentNumber: 2356 +employeeType: Normal +homePhone: +1 804 381-5905 +initials: A. K. +mobile: +1 804 760-5043 +pager: +1 804 275-9234 +roomNumber: 9390 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Somsak Fields,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Somsak Fields +sn: Fields +description: This is Somsak Fields's description +facsimileTelephoneNumber: +1 415 759-8094 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 168-6900 +title: Associate Janitorial Stooge +userPassword: Password1 +uid: FieldsS +givenName: Somsak +mail: FieldsS@0177394985bc446d8344b5896f855979.bitwarden.com +carLicense: LA3R4N +departmentNumber: 5871 +employeeType: Normal +homePhone: +1 415 117-9080 +initials: S. F. +mobile: +1 415 192-9044 +pager: +1 415 868-5636 +roomNumber: 9318 +manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Zitella Hussein,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zitella Hussein +sn: Hussein +description: This is Zitella Hussein's description +facsimileTelephoneNumber: +1 415 242-7748 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 137-8523 +title: Master Product Testing Warrior +userPassword: Password1 +uid: HusseinZ +givenName: Zitella +mail: HusseinZ@c659efb530134031a977821791781191.bitwarden.com +carLicense: H4EKNH +departmentNumber: 9010 +employeeType: Contract +homePhone: +1 415 958-9939 +initials: Z. H. +mobile: +1 415 741-1746 +pager: +1 415 657-8730 +roomNumber: 8505 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Varennes ParkerShane,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Varennes ParkerShane +sn: ParkerShane +description: This is Varennes ParkerShane's description +facsimileTelephoneNumber: +1 408 112-8195 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 408 425-7389 +title: Associate Peons Assistant +userPassword: Password1 +uid: ParkerSV +givenName: Varennes +mail: ParkerSV@6ad50b5570274446ac57cf22bb8d002a.bitwarden.com +carLicense: 2YRPQM +departmentNumber: 3023 +employeeType: Employee +homePhone: +1 408 785-8767 +initials: V. P. +mobile: +1 408 356-7152 +pager: +1 408 300-1424 +roomNumber: 8987 +manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nolie Majumdar +sn: Majumdar +description: This is Nolie Majumdar's description +facsimileTelephoneNumber: +1 213 887-3952 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 213 231-8812 +title: Junior Product Testing Czar +userPassword: Password1 +uid: MajumdaN +givenName: Nolie +mail: MajumdaN@1291a44cab8442a6a669d12c387911e8.bitwarden.com +carLicense: N8YF4P +departmentNumber: 4090 +employeeType: Normal +homePhone: +1 213 230-2368 +initials: N. M. +mobile: +1 213 519-1334 +pager: +1 213 122-1960 +roomNumber: 9681 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Idelle Leicht,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Idelle Leicht +sn: Leicht +description: This is Idelle Leicht's description +facsimileTelephoneNumber: +1 804 934-2894 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 804 144-6148 +title: Chief Payroll Consultant +userPassword: Password1 +uid: LeichtI +givenName: Idelle +mail: LeichtI@db317ee4bd8b44f39022e9dbfa6a622b.bitwarden.com +carLicense: F76FOP +departmentNumber: 9627 +employeeType: Normal +homePhone: +1 804 248-6941 +initials: I. L. +mobile: +1 804 923-7004 +pager: +1 804 208-9952 +roomNumber: 8921 +manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Darb Swinkels,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Darb Swinkels +sn: Swinkels +description: This is Darb Swinkels's description +facsimileTelephoneNumber: +1 206 280-6464 +l: Palo Alto +ou: Product Testing +postalAddress: Product Testing$Palo Alto +telephoneNumber: +1 206 932-5627 +title: Supreme Product Testing Stooge +userPassword: Password1 +uid: SwinkelD +givenName: Darb +mail: SwinkelD@fd2458f229b6479d85b521aa5a4cd638.bitwarden.com +carLicense: 1O2Q2K +departmentNumber: 5060 +employeeType: Normal +homePhone: +1 206 516-4348 +initials: D. S. +mobile: +1 206 434-3364 +pager: +1 206 752-8462 +roomNumber: 8371 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Thomasa Nagle +sn: Nagle +description: This is Thomasa Nagle's description +facsimileTelephoneNumber: +1 408 112-8418 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 408 448-9684 +title: Junior Human Resources Artist +userPassword: Password1 +uid: NagleT +givenName: Thomasa +mail: NagleT@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com +carLicense: G398JO +departmentNumber: 2566 +employeeType: Employee +homePhone: +1 408 464-6424 +initials: T. N. +mobile: +1 408 219-5331 +pager: +1 408 977-5226 +roomNumber: 8791 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Koren Perfetti,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Koren Perfetti +sn: Perfetti +description: This is Koren Perfetti's description +facsimileTelephoneNumber: +1 213 787-9211 +l: Alameda +ou: Product Testing +postalAddress: Product Testing$Alameda +telephoneNumber: +1 213 674-3049 +title: Associate Product Testing Consultant +userPassword: Password1 +uid: PerfettK +givenName: Koren +mail: PerfettK@99f91fc2bf8f45d2b847f01ff41a14da.bitwarden.com +carLicense: 085GQY +departmentNumber: 2069 +employeeType: Employee +homePhone: +1 213 462-5870 +initials: K. P. +mobile: +1 213 918-1747 +pager: +1 213 997-5439 +roomNumber: 9253 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kelcey Reuss,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kelcey Reuss +sn: Reuss +description: This is Kelcey Reuss's description +facsimileTelephoneNumber: +1 206 640-7069 +l: San Francisco +ou: Administrative +postalAddress: Administrative$San Francisco +telephoneNumber: +1 206 669-4671 +title: Chief Administrative Vice President +userPassword: Password1 +uid: ReussK +givenName: Kelcey +mail: ReussK@c9027f607987451aa869ec32b2ad0708.bitwarden.com +carLicense: G4BWJ1 +departmentNumber: 6724 +employeeType: Contract +homePhone: +1 206 222-7493 +initials: K. R. +mobile: +1 206 286-5796 +pager: +1 206 550-8568 +roomNumber: 9921 +manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Lujanka Contardo,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lujanka Contardo +sn: Contardo +description: This is Lujanka Contardo's description +facsimileTelephoneNumber: +1 408 490-7970 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 408 776-8992 +title: Junior Product Development Mascot +userPassword: Password1 +uid: ContardL +givenName: Lujanka +mail: ContardL@e43c05f5415a492785e600f140e34b3c.bitwarden.com +carLicense: 9SJ1QO +departmentNumber: 8152 +employeeType: Normal +homePhone: +1 408 443-3558 +initials: L. C. +mobile: +1 408 164-7047 +pager: +1 408 328-3527 +roomNumber: 8249 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamyar Twidale +sn: Twidale +description: This is Kamyar Twidale's description +facsimileTelephoneNumber: +1 213 649-1191 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 213 777-1070 +title: Master Janitorial Consultant +userPassword: Password1 +uid: TwidaleK +givenName: Kamyar +mail: TwidaleK@a77c7140e8a14e9180f6ceda32adedff.bitwarden.com +carLicense: E3U9M4 +departmentNumber: 4456 +employeeType: Contract +homePhone: +1 213 407-8924 +initials: K. T. +mobile: +1 213 389-5833 +pager: +1 213 606-4070 +roomNumber: 9695 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com + +dn: cn=Barton Seggie,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barton Seggie +sn: Seggie +description: This is Barton Seggie's description +facsimileTelephoneNumber: +1 408 257-1346 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 408 685-1572 +title: Chief Payroll Assistant +userPassword: Password1 +uid: SeggieB +givenName: Barton +mail: SeggieB@c25c8eeee77f4478896f338b08270109.bitwarden.com +carLicense: JC3FFW +departmentNumber: 9484 +employeeType: Normal +homePhone: +1 408 174-4497 +initials: B. S. +mobile: +1 408 863-6951 +pager: +1 408 208-1662 +roomNumber: 8468 +manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hilmi Prichard +sn: Prichard +description: This is Hilmi Prichard's description +facsimileTelephoneNumber: +1 206 146-8562 +l: Fremont +ou: Product Testing +postalAddress: Product Testing$Fremont +telephoneNumber: +1 206 825-1190 +title: Master Product Testing Manager +userPassword: Password1 +uid: PricharH +givenName: Hilmi +mail: PricharH@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com +carLicense: 5FJ8LE +departmentNumber: 8844 +employeeType: Normal +homePhone: +1 206 241-8171 +initials: H. P. +mobile: +1 206 437-1319 +pager: +1 206 311-9657 +roomNumber: 8879 +manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Julee Norby,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Julee Norby +sn: Norby +description: This is Julee Norby's description +facsimileTelephoneNumber: +1 510 205-5257 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 510 562-1897 +title: Chief Janitorial Mascot +userPassword: Password1 +uid: NorbyJ +givenName: Julee +mail: NorbyJ@affed2f672a845bead4365ae80e4a101.bitwarden.com +carLicense: DFYUWI +departmentNumber: 5959 +employeeType: Employee +homePhone: +1 510 642-8103 +initials: J. N. +mobile: +1 510 365-9518 +pager: +1 510 329-7561 +roomNumber: 8212 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Sharai Torok,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharai Torok +sn: Torok +description: This is Sharai Torok's description +facsimileTelephoneNumber: +1 415 802-9985 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 340-5497 +title: Chief Payroll Consultant +userPassword: Password1 +uid: TorokS +givenName: Sharai +mail: TorokS@11aa381a3094436abdc8bd9975f709cf.bitwarden.com +carLicense: LR9A4L +departmentNumber: 2266 +employeeType: Contract +homePhone: +1 415 938-9495 +initials: S. T. +mobile: +1 415 323-2002 +pager: +1 415 871-1594 +roomNumber: 9169 +manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leontine OShaughnessey +sn: OShaughnessey +description: This is Leontine OShaughnessey's description +facsimileTelephoneNumber: +1 415 680-9330 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 134-4455 +title: Associate Payroll Engineer +userPassword: Password1 +uid: OShaughL +givenName: Leontine +mail: OShaughL@d6721ca94efc423ca3ff9d14e2b46e8c.bitwarden.com +carLicense: RB4AC1 +departmentNumber: 7017 +employeeType: Normal +homePhone: +1 415 849-2517 +initials: L. O. +mobile: +1 415 994-3528 +pager: +1 415 938-6376 +roomNumber: 8269 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com + +dn: cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Franklyn Sugandi +sn: Sugandi +description: This is Franklyn Sugandi's description +facsimileTelephoneNumber: +1 804 126-9033 +l: San Francisco +ou: Product Development +postalAddress: Product Development$San Francisco +telephoneNumber: +1 804 421-8348 +title: Supreme Product Development Developer +userPassword: Password1 +uid: SugandiF +givenName: Franklyn +mail: SugandiF@528c9fa3f4634d4b9c93989a607b8098.bitwarden.com +carLicense: TEQX3M +departmentNumber: 5000 +employeeType: Contract +homePhone: +1 804 110-5550 +initials: F. S. +mobile: +1 804 737-9701 +pager: +1 804 916-1869 +roomNumber: 9765 +manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com + +dn: cn=Cefee Donelan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cefee Donelan +sn: Donelan +description: This is Cefee Donelan's description +facsimileTelephoneNumber: +1 408 220-5576 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 408 625-2012 +title: Master Payroll Figurehead +userPassword: Password1 +uid: DonelanC +givenName: Cefee +mail: DonelanC@7f74d23b6c664be682e93e811e1b368f.bitwarden.com +carLicense: FISBRS +departmentNumber: 9402 +employeeType: Normal +homePhone: +1 408 489-9755 +initials: C. D. +mobile: +1 408 845-6841 +pager: +1 408 236-6300 +roomNumber: 8715 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jderek Sankey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jderek Sankey +sn: Sankey +description: This is Jderek Sankey's description +facsimileTelephoneNumber: +1 206 305-5476 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 206 136-3629 +title: Junior Management Vice President +userPassword: Password1 +uid: SankeyJ +givenName: Jderek +mail: SankeyJ@30fd8caea98d43dc8f4491c614480126.bitwarden.com +carLicense: 8PF0CT +departmentNumber: 1185 +employeeType: Contract +homePhone: +1 206 794-5909 +initials: J. S. +mobile: +1 206 453-2084 +pager: +1 206 150-1495 +roomNumber: 9680 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sid Barnhill,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sid Barnhill +sn: Barnhill +description: This is Sid Barnhill's description +facsimileTelephoneNumber: +1 818 955-9086 +l: Redwood Shores +ou: Product Testing +postalAddress: Product Testing$Redwood Shores +telephoneNumber: +1 818 754-8291 +title: Junior Product Testing Engineer +userPassword: Password1 +uid: BarnhilS +givenName: Sid +mail: BarnhilS@1d677d74737a4c97a99e772d549b45f8.bitwarden.com +carLicense: QO6NIC +departmentNumber: 5109 +employeeType: Employee +homePhone: +1 818 274-6258 +initials: S. B. +mobile: +1 818 484-5691 +pager: +1 818 331-1112 +roomNumber: 9881 +manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Kamlesh Hoang,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kamlesh Hoang +sn: Hoang +description: This is Kamlesh Hoang's description +facsimileTelephoneNumber: +1 818 679-2811 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 818 142-9614 +title: Supreme Peons President +userPassword: Password1 +uid: HoangK +givenName: Kamlesh +mail: HoangK@8441796b12754e19879e114c62d45933.bitwarden.com +carLicense: TX7RMA +departmentNumber: 8955 +employeeType: Normal +homePhone: +1 818 284-3437 +initials: K. H. +mobile: +1 818 452-5931 +pager: +1 818 110-5963 +roomNumber: 8115 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Sarath McCall,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sarath McCall +sn: McCall +description: This is Sarath McCall's description +facsimileTelephoneNumber: +1 408 866-1823 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 408 707-6444 +title: Chief Payroll Punk +userPassword: Password1 +uid: McCallS +givenName: Sarath +mail: McCallS@95704a5d367a4911b51583656800520a.bitwarden.com +carLicense: 5YGHXV +departmentNumber: 6128 +employeeType: Employee +homePhone: +1 408 955-7970 +initials: S. M. +mobile: +1 408 109-5202 +pager: +1 408 598-5897 +roomNumber: 8545 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Nermana Douglas,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nermana Douglas +sn: Douglas +description: This is Nermana Douglas's description +facsimileTelephoneNumber: +1 213 867-9302 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 245-1441 +title: Supreme Management President +userPassword: Password1 +uid: DouglasN +givenName: Nermana +mail: DouglasN@11af325799324b3caac4bd3790e434d4.bitwarden.com +carLicense: IOYFUH +departmentNumber: 9269 +employeeType: Contract +homePhone: +1 213 187-9845 +initials: N. D. +mobile: +1 213 911-2990 +pager: +1 213 981-1060 +roomNumber: 8404 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Student Sonne,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Student Sonne +sn: Sonne +description: This is Student Sonne's description +facsimileTelephoneNumber: +1 206 623-9020 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 206 422-6425 +title: Supreme Janitorial Manager +userPassword: Password1 +uid: SonneS +givenName: Student +mail: SonneS@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com +carLicense: OW0DLJ +departmentNumber: 4527 +employeeType: Contract +homePhone: +1 206 900-1307 +initials: S. S. +mobile: +1 206 359-4277 +pager: +1 206 784-1703 +roomNumber: 9858 +manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Maisie DaGama,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maisie DaGama +sn: DaGama +description: This is Maisie DaGama's description +facsimileTelephoneNumber: +1 510 361-5371 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 404-2234 +title: Supreme Product Testing Mascot +userPassword: Password1 +uid: DaGamaM +givenName: Maisie +mail: DaGamaM@0c23adeda02746a4adaf81e3c1305ae8.bitwarden.com +carLicense: RXLXX3 +departmentNumber: 6633 +employeeType: Normal +homePhone: +1 510 858-7336 +initials: M. D. +mobile: +1 510 459-9403 +pager: +1 510 237-2716 +roomNumber: 8551 +manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Erminie Battershill,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Erminie Battershill +sn: Battershill +description: This is Erminie Battershill's description +facsimileTelephoneNumber: +1 206 253-3516 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 206 474-7380 +title: Junior Peons Janitor +userPassword: Password1 +uid: BattersE +givenName: Erminie +mail: BattersE@5be830b142b64fb88eef5251cf8d2b55.bitwarden.com +carLicense: D8RYRA +departmentNumber: 9963 +employeeType: Contract +homePhone: +1 206 467-9537 +initials: E. B. +mobile: +1 206 904-3998 +pager: +1 206 629-6511 +roomNumber: 8995 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jung Betts,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jung Betts +sn: Betts +description: This is Jung Betts's description +facsimileTelephoneNumber: +1 206 611-6118 +l: Redwood Shores +ou: Payroll +postalAddress: Payroll$Redwood Shores +telephoneNumber: +1 206 325-7543 +title: Associate Payroll Visionary +userPassword: Password1 +uid: BettsJ +givenName: Jung +mail: BettsJ@a31de830b7f74a7a9756ec57873d87d7.bitwarden.com +carLicense: L42SJ2 +departmentNumber: 9761 +employeeType: Contract +homePhone: +1 206 801-2126 +initials: J. B. +mobile: +1 206 738-6893 +pager: +1 206 858-6570 +roomNumber: 9643 +manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Maddi Naolu,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maddi Naolu +sn: Naolu +description: This is Maddi Naolu's description +facsimileTelephoneNumber: +1 213 771-2932 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 213 595-6345 +title: Master Product Testing Fellow +userPassword: Password1 +uid: NaoluM +givenName: Maddi +mail: NaoluM@375640a8a3724defaeb05e0a11f25f5c.bitwarden.com +carLicense: 907B02 +departmentNumber: 1844 +employeeType: Normal +homePhone: +1 213 517-6339 +initials: M. N. +mobile: +1 213 694-1911 +pager: +1 213 467-2870 +roomNumber: 9199 +manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Daisey Przybycien +sn: Przybycien +description: This is Daisey Przybycien's description +facsimileTelephoneNumber: +1 818 280-9756 +l: Fremont +ou: Human Resources +postalAddress: Human Resources$Fremont +telephoneNumber: +1 818 346-3527 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: PrzybycD +givenName: Daisey +mail: PrzybycD@886606fb40e04b00b9dac2bed959f0a3.bitwarden.com +carLicense: 7X7248 +departmentNumber: 3191 +employeeType: Employee +homePhone: +1 818 331-8264 +initials: D. P. +mobile: +1 818 962-7496 +pager: +1 818 922-2348 +roomNumber: 9673 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Ammar Parise,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ammar Parise +sn: Parise +description: This is Ammar Parise's description +facsimileTelephoneNumber: +1 415 332-7670 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 415 592-5627 +title: Master Janitorial Stooge +userPassword: Password1 +uid: PariseA +givenName: Ammar +mail: PariseA@bacbd388513349be8db6d6f67cee97e8.bitwarden.com +carLicense: F0TBQA +departmentNumber: 5586 +employeeType: Employee +homePhone: +1 415 460-7642 +initials: A. P. +mobile: +1 415 529-4705 +pager: +1 415 577-3247 +roomNumber: 9091 +manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yasar Ingrey +sn: Ingrey +description: This is Yasar Ingrey's description +facsimileTelephoneNumber: +1 213 797-9620 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 213 204-6558 +title: Master Human Resources Mascot +userPassword: Password1 +uid: IngreyY +givenName: Yasar +mail: IngreyY@c058e0f8bc3242ec861c9425536523d9.bitwarden.com +carLicense: UAKYOD +departmentNumber: 4399 +employeeType: Contract +homePhone: +1 213 934-5339 +initials: Y. I. +mobile: +1 213 688-7326 +pager: +1 213 370-8984 +roomNumber: 9928 +manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Agata Khouderchan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Agata Khouderchan +sn: Khouderchan +description: This is Agata Khouderchan's description +facsimileTelephoneNumber: +1 206 937-1717 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 993-5384 +title: Master Management Technician +userPassword: Password1 +uid: KhouderA +givenName: Agata +mail: KhouderA@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com +carLicense: 480F5Y +departmentNumber: 3653 +employeeType: Normal +homePhone: +1 206 849-8313 +initials: A. K. +mobile: +1 206 635-1775 +pager: +1 206 740-2670 +roomNumber: 9209 +manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joella Casey,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joella Casey +sn: Casey +description: This is Joella Casey's description +facsimileTelephoneNumber: +1 206 935-9255 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 206 411-9950 +title: Chief Product Development Grunt +userPassword: Password1 +uid: CaseyJ +givenName: Joella +mail: CaseyJ@b3127b0c3cfd4bcf84fd8497792fb64f.bitwarden.com +carLicense: OAY087 +departmentNumber: 3728 +employeeType: Employee +homePhone: +1 206 341-6227 +initials: J. C. +mobile: +1 206 318-4797 +pager: +1 206 109-7556 +roomNumber: 8329 +manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com +secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sharone Torrell,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sharone Torrell +sn: Torrell +description: This is Sharone Torrell's description +facsimileTelephoneNumber: +1 804 466-6703 +l: Armonk +ou: Janitorial +postalAddress: Janitorial$Armonk +telephoneNumber: +1 804 534-3300 +title: Supreme Janitorial Visionary +userPassword: Password1 +uid: TorrellS +givenName: Sharone +mail: TorrellS@4745fb1993c34e22b6d51076c613f514.bitwarden.com +carLicense: BII9X2 +departmentNumber: 7253 +employeeType: Employee +homePhone: +1 804 817-2531 +initials: S. T. +mobile: +1 804 407-4576 +pager: +1 804 952-7386 +roomNumber: 9823 +manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ebony Vitaglian,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ebony Vitaglian +sn: Vitaglian +description: This is Ebony Vitaglian's description +facsimileTelephoneNumber: +1 408 917-6407 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 408 957-2058 +title: Junior Peons Assistant +userPassword: Password1 +uid: VitagliE +givenName: Ebony +mail: VitagliE@9ab7fb3558f841749b06922a784e1384.bitwarden.com +carLicense: NMJK86 +departmentNumber: 1214 +employeeType: Contract +homePhone: +1 408 308-9340 +initials: E. V. +mobile: +1 408 729-7887 +pager: +1 408 479-2912 +roomNumber: 9991 +manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Marcie Nagaraj +sn: Nagaraj +description: This is Marcie Nagaraj's description +facsimileTelephoneNumber: +1 206 144-7999 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 206 130-3992 +title: Junior Product Testing Manager +userPassword: Password1 +uid: NagarajM +givenName: Marcie +mail: NagarajM@973c4a1a5d1a4e4f9c421404b565659a.bitwarden.com +carLicense: GNG6ML +departmentNumber: 9913 +employeeType: Normal +homePhone: +1 206 288-4527 +initials: M. N. +mobile: +1 206 604-1005 +pager: +1 206 222-4001 +roomNumber: 8932 +manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Evanne Callos,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Evanne Callos +sn: Callos +description: This is Evanne Callos's description +facsimileTelephoneNumber: +1 510 243-8133 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 510 235-1536 +title: Master Product Development Czar +userPassword: Password1 +uid: CallosE +givenName: Evanne +mail: CallosE@0bec70e6fa8d461ab29f67f7a630e586.bitwarden.com +carLicense: YWR8DV +departmentNumber: 5252 +employeeType: Contract +homePhone: +1 510 103-9572 +initials: E. C. +mobile: +1 510 504-3806 +pager: +1 510 151-5589 +roomNumber: 8442 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Purvee Kwast,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Purvee Kwast +sn: Kwast +description: This is Purvee Kwast's description +facsimileTelephoneNumber: +1 415 809-6655 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 415 605-6817 +title: Chief Peons Artist +userPassword: Password1 +uid: KwastP +givenName: Purvee +mail: KwastP@e5509c3650ae4df593beadde93c97a4e.bitwarden.com +carLicense: EB68QA +departmentNumber: 2306 +employeeType: Employee +homePhone: +1 415 936-6692 +initials: P. K. +mobile: +1 415 879-3184 +pager: +1 415 907-3685 +roomNumber: 8026 +manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Eluned Vinson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eluned Vinson +sn: Vinson +description: This is Eluned Vinson's description +facsimileTelephoneNumber: +1 510 945-2168 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 510 923-4353 +title: Master Administrative Visionary +userPassword: Password1 +uid: VinsonE +givenName: Eluned +mail: VinsonE@3307e42f1d8c4293bd7a59fddc05e774.bitwarden.com +carLicense: 6YRMN1 +departmentNumber: 1991 +employeeType: Normal +homePhone: +1 510 712-8084 +initials: E. V. +mobile: +1 510 879-6537 +pager: +1 510 433-5185 +roomNumber: 8359 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Melisandra McVey,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Melisandra McVey +sn: McVey +description: This is Melisandra McVey's description +facsimileTelephoneNumber: +1 818 670-6650 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 818 154-6427 +title: Associate Management Consultant +userPassword: Password1 +uid: McVeyM +givenName: Melisandra +mail: McVeyM@c1717c5f197c4d3987c6204634e4161c.bitwarden.com +carLicense: OSVUQ3 +departmentNumber: 4016 +employeeType: Contract +homePhone: +1 818 267-5513 +initials: M. M. +mobile: +1 818 628-7160 +pager: +1 818 726-3044 +roomNumber: 8064 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Philipa Netdbs,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Philipa Netdbs +sn: Netdbs +description: This is Philipa Netdbs's description +facsimileTelephoneNumber: +1 818 297-6444 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 818 193-3614 +title: Associate Payroll Writer +userPassword: Password1 +uid: NetdbsP +givenName: Philipa +mail: NetdbsP@ca30a33ca5c3482596934454af56a1c4.bitwarden.com +carLicense: G0NHRS +departmentNumber: 9798 +employeeType: Normal +homePhone: +1 818 647-5289 +initials: P. N. +mobile: +1 818 138-3731 +pager: +1 818 697-7678 +roomNumber: 8872 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Art Totten,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Art Totten +sn: Totten +description: This is Art Totten's description +facsimileTelephoneNumber: +1 415 565-6364 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 159-3742 +title: Supreme Product Testing Figurehead +userPassword: Password1 +uid: TottenA +givenName: Art +mail: TottenA@04b18099c35449929ab89aa5f1f3c21f.bitwarden.com +carLicense: 340K97 +departmentNumber: 3251 +employeeType: Contract +homePhone: +1 415 885-9452 +initials: A. T. +mobile: +1 415 935-7040 +pager: +1 415 828-6161 +roomNumber: 8138 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roxanna Colquette,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roxanna Colquette +sn: Colquette +description: This is Roxanna Colquette's description +facsimileTelephoneNumber: +1 213 414-9430 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 669-6675 +title: Supreme Payroll Technician +userPassword: Password1 +uid: ColquetR +givenName: Roxanna +mail: ColquetR@ba8c5354f208420b92e908dc80950154.bitwarden.com +carLicense: MKKWBD +departmentNumber: 6860 +employeeType: Contract +homePhone: +1 213 376-6098 +initials: R. C. +mobile: +1 213 141-7644 +pager: +1 213 704-8501 +roomNumber: 9013 +manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Janessa Bienek,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Janessa Bienek +sn: Bienek +description: This is Janessa Bienek's description +facsimileTelephoneNumber: +1 510 881-3565 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 510 644-4986 +title: Junior Product Development Madonna +userPassword: Password1 +uid: BienekJ +givenName: Janessa +mail: BienekJ@cbebf122dc7c488591550ff3c1c37645.bitwarden.com +carLicense: LKVOSU +departmentNumber: 7029 +employeeType: Contract +homePhone: +1 510 553-1170 +initials: J. B. +mobile: +1 510 453-2328 +pager: +1 510 813-9741 +roomNumber: 9162 +manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Christa Schrage,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Christa Schrage +sn: Schrage +description: This is Christa Schrage's description +facsimileTelephoneNumber: +1 415 665-5197 +l: Menlo Park +ou: Management +postalAddress: Management$Menlo Park +telephoneNumber: +1 415 997-2682 +title: Chief Management Czar +userPassword: Password1 +uid: SchrageC +givenName: Christa +mail: SchrageC@c7f3f4b5404343009726750451b5ec5f.bitwarden.com +carLicense: HRWPMS +departmentNumber: 9507 +employeeType: Employee +homePhone: +1 415 388-9367 +initials: C. S. +mobile: +1 415 851-8281 +pager: +1 415 727-1069 +roomNumber: 8138 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Glenna Trefry,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Glenna Trefry +sn: Trefry +description: This is Glenna Trefry's description +facsimileTelephoneNumber: +1 510 324-2666 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 510 986-2870 +title: Junior Janitorial Director +userPassword: Password1 +uid: TrefryG +givenName: Glenna +mail: TrefryG@f3b9cbf7ffc94ed4be6295e8dcbbd47b.bitwarden.com +carLicense: 61KCUP +departmentNumber: 6476 +employeeType: Contract +homePhone: +1 510 105-3239 +initials: G. T. +mobile: +1 510 648-5210 +pager: +1 510 610-6927 +roomNumber: 9346 +manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Cecco Langevin,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Cecco Langevin +sn: Langevin +description: This is Cecco Langevin's description +facsimileTelephoneNumber: +1 213 608-6270 +l: Sunnyvale +ou: Peons +postalAddress: Peons$Sunnyvale +telephoneNumber: +1 213 945-2280 +title: Supreme Peons Technician +userPassword: Password1 +uid: LangeviC +givenName: Cecco +mail: LangeviC@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com +carLicense: BRB1YB +departmentNumber: 9198 +employeeType: Employee +homePhone: +1 213 584-1041 +initials: C. L. +mobile: +1 213 110-3313 +pager: +1 213 844-6615 +roomNumber: 9864 +manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Magdy McCloskey,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Magdy McCloskey +sn: McCloskey +description: This is Magdy McCloskey's description +facsimileTelephoneNumber: +1 818 732-8705 +l: Orem +ou: Administrative +postalAddress: Administrative$Orem +telephoneNumber: +1 818 162-1279 +title: Supreme Administrative Mascot +userPassword: Password1 +uid: McCloskM +givenName: Magdy +mail: McCloskM@40f66c0e51ca46c99bb0961cc624fcc8.bitwarden.com +carLicense: P54OUF +departmentNumber: 2353 +employeeType: Normal +homePhone: +1 818 280-7533 +initials: M. M. +mobile: +1 818 583-2645 +pager: +1 818 186-2589 +roomNumber: 8402 +manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Filion Karam,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Filion Karam +sn: Karam +description: This is Filion Karam's description +facsimileTelephoneNumber: +1 206 457-3604 +l: San Mateo +ou: Management +postalAddress: Management$San Mateo +telephoneNumber: +1 206 101-8405 +title: Junior Management Czar +userPassword: Password1 +uid: KaramF +givenName: Filion +mail: KaramF@d8522133168344ce827a4130e7d16436.bitwarden.com +carLicense: BI0LPG +departmentNumber: 6676 +employeeType: Employee +homePhone: +1 206 443-5316 +initials: F. K. +mobile: +1 206 564-9530 +pager: +1 206 222-9362 +roomNumber: 9267 +manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nerissa Volz,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nerissa Volz +sn: Volz +description: This is Nerissa Volz's description +facsimileTelephoneNumber: +1 804 179-8838 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 804 146-2910 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: VolzN +givenName: Nerissa +mail: VolzN@238696ade728438aa3391299a0dc9901.bitwarden.com +carLicense: 55M12U +departmentNumber: 5514 +employeeType: Contract +homePhone: +1 804 116-8652 +initials: N. V. +mobile: +1 804 345-9966 +pager: +1 804 490-1208 +roomNumber: 8071 +manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Barb Crockett,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Barb Crockett +sn: Crockett +description: This is Barb Crockett's description +facsimileTelephoneNumber: +1 818 579-7231 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 818 547-8786 +title: Master Product Testing Vice President +userPassword: Password1 +uid: CrocketB +givenName: Barb +mail: CrocketB@f4587b22e18d47378cee893ba77c7d5f.bitwarden.com +carLicense: Y2CTFW +departmentNumber: 6107 +employeeType: Normal +homePhone: +1 818 544-8446 +initials: B. C. +mobile: +1 818 672-2989 +pager: +1 818 394-3080 +roomNumber: 9036 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com + +dn: cn=Klara deSalis,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Klara deSalis +sn: deSalis +description: This is Klara deSalis's description +facsimileTelephoneNumber: +1 804 537-2846 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 804 335-5180 +title: Junior Janitorial Czar +userPassword: Password1 +uid: deSalisK +givenName: Klara +mail: deSalisK@6f3b5ed6595f43e9be2b077643241ff9.bitwarden.com +carLicense: KBQ9X4 +departmentNumber: 2238 +employeeType: Contract +homePhone: +1 804 884-6053 +initials: K. d. +mobile: +1 804 665-4302 +pager: +1 804 345-1717 +roomNumber: 9419 +manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Teri Hildum,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Teri Hildum +sn: Hildum +description: This is Teri Hildum's description +facsimileTelephoneNumber: +1 408 354-5356 +l: San Mateo +ou: Human Resources +postalAddress: Human Resources$San Mateo +telephoneNumber: +1 408 708-9684 +title: Supreme Human Resources Director +userPassword: Password1 +uid: HildumT +givenName: Teri +mail: HildumT@8a6ed36334664a75a9cc6a912bbbee51.bitwarden.com +carLicense: 0L9ITH +departmentNumber: 5707 +employeeType: Contract +homePhone: +1 408 571-8838 +initials: T. H. +mobile: +1 408 420-7244 +pager: +1 408 347-1818 +roomNumber: 8582 +manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lorenza Pafilis,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lorenza Pafilis +sn: Pafilis +description: This is Lorenza Pafilis's description +facsimileTelephoneNumber: +1 206 475-8044 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 206 714-5775 +title: Supreme Peons Architect +userPassword: Password1 +uid: PafilisL +givenName: Lorenza +mail: PafilisL@25a387134c7d40ab8adc2bebd578c5a3.bitwarden.com +carLicense: 6I8CJ7 +departmentNumber: 7844 +employeeType: Employee +homePhone: +1 206 601-6809 +initials: L. P. +mobile: +1 206 321-5853 +pager: +1 206 348-4386 +roomNumber: 8785 +manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nickie Nakatsu +sn: Nakatsu +description: This is Nickie Nakatsu's description +facsimileTelephoneNumber: +1 408 153-9239 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 408 736-4508 +title: Supreme Product Development Developer +userPassword: Password1 +uid: NakatsuN +givenName: Nickie +mail: NakatsuN@04d1c6c3175f4974b260a83a63c42a2e.bitwarden.com +carLicense: VE8IUW +departmentNumber: 4854 +employeeType: Normal +homePhone: +1 408 655-1633 +initials: N. N. +mobile: +1 408 958-5118 +pager: +1 408 535-1321 +roomNumber: 8160 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Anda Joyce,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anda Joyce +sn: Joyce +description: This is Anda Joyce's description +facsimileTelephoneNumber: +1 804 357-7156 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 804 106-4820 +title: Junior Peons Mascot +userPassword: Password1 +uid: JoyceA +givenName: Anda +mail: JoyceA@8c2946e2ae1e4ec0a1e9edd05301d704.bitwarden.com +carLicense: C3S19O +departmentNumber: 3877 +employeeType: Employee +homePhone: +1 804 523-3318 +initials: A. J. +mobile: +1 804 264-8935 +pager: +1 804 394-7203 +roomNumber: 8723 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Rustu Biss,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rustu Biss +sn: Biss +description: This is Rustu Biss's description +facsimileTelephoneNumber: +1 206 612-1560 +l: Orem +ou: Human Resources +postalAddress: Human Resources$Orem +telephoneNumber: +1 206 964-6179 +title: Master Human Resources Dictator +userPassword: Password1 +uid: BissR +givenName: Rustu +mail: BissR@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com +carLicense: DOK56L +departmentNumber: 1436 +employeeType: Contract +homePhone: +1 206 479-3927 +initials: R. B. +mobile: +1 206 323-9795 +pager: +1 206 947-4676 +roomNumber: 9353 +manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Geer Devault,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geer Devault +sn: Devault +description: This is Geer Devault's description +facsimileTelephoneNumber: +1 213 691-2324 +l: Fremont +ou: Management +postalAddress: Management$Fremont +telephoneNumber: +1 213 288-8854 +title: Supreme Management Warrior +userPassword: Password1 +uid: DevaultG +givenName: Geer +mail: DevaultG@e340baad13364e06873f6c506e0427ea.bitwarden.com +carLicense: Q72EAS +departmentNumber: 4715 +employeeType: Contract +homePhone: +1 213 543-7194 +initials: G. D. +mobile: +1 213 831-9645 +pager: +1 213 153-8853 +roomNumber: 8758 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Bea Nemec,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bea Nemec +sn: Nemec +description: This is Bea Nemec's description +facsimileTelephoneNumber: +1 818 196-8966 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 818 693-8893 +title: Master Management Sales Rep +userPassword: Password1 +uid: NemecB +givenName: Bea +mail: NemecB@a8ae1585c1f243f79caee56f5d3ecb02.bitwarden.com +carLicense: PUYNQ6 +departmentNumber: 2245 +employeeType: Contract +homePhone: +1 818 669-7574 +initials: B. N. +mobile: +1 818 519-6225 +pager: +1 818 951-7664 +roomNumber: 9463 +manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Veneice Tobias,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Veneice Tobias +sn: Tobias +description: This is Veneice Tobias's description +facsimileTelephoneNumber: +1 804 320-8186 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 804 359-4242 +title: Associate Product Development Technician +userPassword: Password1 +uid: TobiasV +givenName: Veneice +mail: TobiasV@1a08913edfd44837a7e737b90b169ef7.bitwarden.com +carLicense: I28HER +departmentNumber: 3658 +employeeType: Employee +homePhone: +1 804 878-3462 +initials: V. T. +mobile: +1 804 244-8583 +pager: +1 804 227-4690 +roomNumber: 9573 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sigrid Kneeshaw +sn: Kneeshaw +description: This is Sigrid Kneeshaw's description +facsimileTelephoneNumber: +1 818 372-2408 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 818 938-7375 +title: Junior Human Resources Pinhead +userPassword: Password1 +uid: KneeshaS +givenName: Sigrid +mail: KneeshaS@ab120df6e5194bf6ac6a830bba26f7f2.bitwarden.com +carLicense: GNHSR5 +departmentNumber: 6651 +employeeType: Employee +homePhone: +1 818 186-8577 +initials: S. K. +mobile: +1 818 267-2683 +pager: +1 818 840-5390 +roomNumber: 8626 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dorolice Communication,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dorolice Communication +sn: Communication +description: This is Dorolice Communication's description +facsimileTelephoneNumber: +1 206 494-5582 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 206 906-9381 +title: Supreme Management Czar +userPassword: Password1 +uid: CommuniD +givenName: Dorolice +mail: CommuniD@fef3179c9c4841a591a83e801687f728.bitwarden.com +carLicense: OG9HE4 +departmentNumber: 8529 +employeeType: Normal +homePhone: +1 206 815-4168 +initials: D. C. +mobile: +1 206 899-8095 +pager: +1 206 247-5193 +roomNumber: 8402 +manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Danica Middleton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Danica Middleton +sn: Middleton +description: This is Danica Middleton's description +facsimileTelephoneNumber: +1 415 359-1738 +l: Santa Clara +ou: Human Resources +postalAddress: Human Resources$Santa Clara +telephoneNumber: +1 415 835-1815 +title: Supreme Human Resources Fellow +userPassword: Password1 +uid: MiddletD +givenName: Danica +mail: MiddletD@752a496e92da43f3852dc6fc94c2530e.bitwarden.com +carLicense: PLLE3D +departmentNumber: 7283 +employeeType: Normal +homePhone: +1 415 461-6091 +initials: D. M. +mobile: +1 415 392-1357 +pager: +1 415 536-7576 +roomNumber: 9948 +manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Bradley Stokker,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Bradley Stokker +sn: Stokker +description: This is Bradley Stokker's description +facsimileTelephoneNumber: +1 408 578-6417 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 408 867-5163 +title: Master Peons Fellow +userPassword: Password1 +uid: StokkerB +givenName: Bradley +mail: StokkerB@7d6095181b454ecb8a89a9772da4d295.bitwarden.com +carLicense: 8605EP +departmentNumber: 3084 +employeeType: Employee +homePhone: +1 408 739-6663 +initials: B. S. +mobile: +1 408 506-2751 +pager: +1 408 174-4683 +roomNumber: 8859 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Kessia Reiser,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kessia Reiser +sn: Reiser +description: This is Kessia Reiser's description +facsimileTelephoneNumber: +1 818 589-9774 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 818 178-7925 +title: Associate Management Writer +userPassword: Password1 +uid: ReiserK +givenName: Kessia +mail: ReiserK@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com +carLicense: A8YPP0 +departmentNumber: 7381 +employeeType: Contract +homePhone: +1 818 676-2146 +initials: K. R. +mobile: +1 818 619-4171 +pager: +1 818 183-9175 +roomNumber: 8773 +manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sluis Watchorn +sn: Watchorn +description: This is Sluis Watchorn's description +facsimileTelephoneNumber: +1 804 619-4840 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 804 702-8842 +title: Chief Janitorial Consultant +userPassword: Password1 +uid: WatchorS +givenName: Sluis +mail: WatchorS@11e135fa916b4ec49a99ab186c82a0aa.bitwarden.com +carLicense: GCRAIV +departmentNumber: 1271 +employeeType: Normal +homePhone: +1 804 689-1788 +initials: S. W. +mobile: +1 804 837-2568 +pager: +1 804 206-2034 +roomNumber: 8534 +manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Lope Keim,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lope Keim +sn: Keim +description: This is Lope Keim's description +facsimileTelephoneNumber: +1 408 794-6177 +l: Sunnyvale +ou: Janitorial +postalAddress: Janitorial$Sunnyvale +telephoneNumber: +1 408 951-7578 +title: Supreme Janitorial Mascot +userPassword: Password1 +uid: KeimL +givenName: Lope +mail: KeimL@724bb72313a2494c8bc8f0602203fd58.bitwarden.com +carLicense: M499A2 +departmentNumber: 1998 +employeeType: Contract +homePhone: +1 408 243-4674 +initials: L. K. +mobile: +1 408 767-7777 +pager: +1 408 496-1463 +roomNumber: 9419 +manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Tonya Hine,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tonya Hine +sn: Hine +description: This is Tonya Hine's description +facsimileTelephoneNumber: +1 415 471-8793 +l: Alameda +ou: Janitorial +postalAddress: Janitorial$Alameda +telephoneNumber: +1 415 647-5384 +title: Supreme Janitorial Stooge +userPassword: Password1 +uid: HineT +givenName: Tonya +mail: HineT@0b95963fb73545098f8197081089a1f3.bitwarden.com +carLicense: 8RS2BW +departmentNumber: 9562 +employeeType: Employee +homePhone: +1 415 931-2233 +initials: T. H. +mobile: +1 415 145-2766 +pager: +1 415 729-2043 +roomNumber: 8731 +manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zahid Wilkie +sn: Wilkie +description: This is Zahid Wilkie's description +facsimileTelephoneNumber: +1 510 499-6329 +l: Armonk +ou: Product Testing +postalAddress: Product Testing$Armonk +telephoneNumber: +1 510 240-4936 +title: Master Product Testing Dictator +userPassword: Password1 +uid: WilkieZ +givenName: Zahid +mail: WilkieZ@d99d4047451b4e76b9f1ce1cef474716.bitwarden.com +carLicense: 0HRQUX +departmentNumber: 6514 +employeeType: Contract +homePhone: +1 510 714-3137 +initials: Z. W. +mobile: +1 510 595-1859 +pager: +1 510 125-4797 +roomNumber: 8526 +manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Lisa Lande,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lisa Lande +sn: Lande +description: This is Lisa Lande's description +facsimileTelephoneNumber: +1 415 275-5926 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 415 380-2030 +title: Master Product Development Writer +userPassword: Password1 +uid: LandeL +givenName: Lisa +mail: LandeL@a524fcb1eac4447e976069bb86ce0e2a.bitwarden.com +carLicense: FXC7LX +departmentNumber: 3980 +employeeType: Normal +homePhone: +1 415 427-3300 +initials: L. L. +mobile: +1 415 459-8302 +pager: +1 415 748-4979 +roomNumber: 8135 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Lapkin Matney,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lapkin Matney +sn: Matney +description: This is Lapkin Matney's description +facsimileTelephoneNumber: +1 206 488-7393 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 206 496-3893 +title: Supreme Administrative Madonna +userPassword: Password1 +uid: MatneyL +givenName: Lapkin +mail: MatneyL@b76d7503542847f29f63dbae71a2b656.bitwarden.com +carLicense: FTXUNC +departmentNumber: 9208 +employeeType: Employee +homePhone: +1 206 819-6098 +initials: L. M. +mobile: +1 206 361-4569 +pager: +1 206 728-6417 +roomNumber: 8838 +manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com +secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolette Bourgault +sn: Bourgault +description: This is Nicolette Bourgault's description +facsimileTelephoneNumber: +1 510 253-2714 +l: Palo Alto +ou: Janitorial +postalAddress: Janitorial$Palo Alto +telephoneNumber: +1 510 391-1802 +title: Supreme Janitorial Developer +userPassword: Password1 +uid: BourgauN +givenName: Nicolette +mail: BourgauN@a34dd1944e1c4d68b93ae1f0684316ef.bitwarden.com +carLicense: R0P4AN +departmentNumber: 9146 +employeeType: Employee +homePhone: +1 510 318-4822 +initials: N. B. +mobile: +1 510 665-7502 +pager: +1 510 215-2614 +roomNumber: 9709 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jandy Rtprelb +sn: Rtprelb +description: This is Jandy Rtprelb's description +facsimileTelephoneNumber: +1 206 315-5459 +l: Fremont +ou: Janitorial +postalAddress: Janitorial$Fremont +telephoneNumber: +1 206 690-1192 +title: Junior Janitorial Figurehead +userPassword: Password1 +uid: RtprelbJ +givenName: Jandy +mail: RtprelbJ@b1f81108ccde47b8a2df0aba6ea7b365.bitwarden.com +carLicense: HTSVMD +departmentNumber: 9383 +employeeType: Employee +homePhone: +1 206 271-1497 +initials: J. R. +mobile: +1 206 527-5854 +pager: +1 206 201-4802 +roomNumber: 9848 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Lenee Topp,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lenee Topp +sn: Topp +description: This is Lenee Topp's description +facsimileTelephoneNumber: +1 408 854-4513 +l: Santa Clara +ou: Janitorial +postalAddress: Janitorial$Santa Clara +telephoneNumber: +1 408 977-3527 +title: Chief Janitorial Technician +userPassword: Password1 +uid: ToppL +givenName: Lenee +mail: ToppL@38661906a7a24233a4109f4402fd5f5f.bitwarden.com +carLicense: H3IHOO +departmentNumber: 4678 +employeeType: Normal +homePhone: +1 408 163-2106 +initials: L. T. +mobile: +1 408 237-2372 +pager: +1 408 774-4261 +roomNumber: 9848 +manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Sacto Miskelly,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sacto Miskelly +sn: Miskelly +description: This is Sacto Miskelly's description +facsimileTelephoneNumber: +1 415 676-7659 +l: Cambridge +ou: Payroll +postalAddress: Payroll$Cambridge +telephoneNumber: +1 415 891-2985 +title: Supreme Payroll Evangelist +userPassword: Password1 +uid: MiskellS +givenName: Sacto +mail: MiskellS@45383e5a120c4c58a302e7c79762cfc3.bitwarden.com +carLicense: WFIR9K +departmentNumber: 3568 +employeeType: Employee +homePhone: +1 415 536-1859 +initials: S. M. +mobile: +1 415 675-1407 +pager: +1 415 665-8239 +roomNumber: 8874 +manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sib Schissel,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sib Schissel +sn: Schissel +description: This is Sib Schissel's description +facsimileTelephoneNumber: +1 415 828-1425 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 415 273-7633 +title: Supreme Product Development Developer +userPassword: Password1 +uid: SchisseS +givenName: Sib +mail: SchisseS@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com +carLicense: TI2TNY +departmentNumber: 4780 +employeeType: Normal +homePhone: +1 415 995-1872 +initials: S. S. +mobile: +1 415 233-6794 +pager: +1 415 847-1042 +roomNumber: 8217 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tessa Severin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tessa Severin +sn: Severin +description: This is Tessa Severin's description +facsimileTelephoneNumber: +1 510 119-5037 +l: Orem +ou: Payroll +postalAddress: Payroll$Orem +telephoneNumber: +1 510 240-2610 +title: Junior Payroll Fellow +userPassword: Password1 +uid: SeverinT +givenName: Tessa +mail: SeverinT@85dda47759d846abae02b74a574c7914.bitwarden.com +carLicense: VJO503 +departmentNumber: 9161 +employeeType: Normal +homePhone: +1 510 409-4881 +initials: T. S. +mobile: +1 510 929-6390 +pager: +1 510 930-5093 +roomNumber: 8280 +manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Drucill Brickey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drucill Brickey +sn: Brickey +description: This is Drucill Brickey's description +facsimileTelephoneNumber: +1 206 756-3050 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 206 357-6008 +title: Master Peons Fellow +userPassword: Password1 +uid: BrickeyD +givenName: Drucill +mail: BrickeyD@47062aafd0e846809818576b78318155.bitwarden.com +carLicense: 2OF6OW +departmentNumber: 9158 +employeeType: Employee +homePhone: +1 206 393-6938 +initials: D. B. +mobile: +1 206 533-4843 +pager: +1 206 484-2016 +roomNumber: 8083 +manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Caterina StMartin,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caterina StMartin +sn: StMartin +description: This is Caterina StMartin's description +facsimileTelephoneNumber: +1 510 502-3265 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 847-2331 +title: Supreme Administrative Assistant +userPassword: Password1 +uid: StMartiC +givenName: Caterina +mail: StMartiC@0710345c27d44c78bde32a03e3d70c26.bitwarden.com +carLicense: JP86CH +departmentNumber: 7590 +employeeType: Employee +homePhone: +1 510 210-6162 +initials: C. S. +mobile: +1 510 497-4327 +pager: +1 510 763-3969 +roomNumber: 8137 +manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com +secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Rojer Jurek,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rojer Jurek +sn: Jurek +description: This is Rojer Jurek's description +facsimileTelephoneNumber: +1 206 720-1935 +l: San Jose +ou: Peons +postalAddress: Peons$San Jose +telephoneNumber: +1 206 247-1614 +title: Junior Peons Writer +userPassword: Password1 +uid: JurekR +givenName: Rojer +mail: JurekR@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com +carLicense: SJCPE9 +departmentNumber: 8649 +employeeType: Normal +homePhone: +1 206 752-3658 +initials: R. J. +mobile: +1 206 797-1910 +pager: +1 206 818-8236 +roomNumber: 8723 +manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shannah Colpitts,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shannah Colpitts +sn: Colpitts +description: This is Shannah Colpitts's description +facsimileTelephoneNumber: +1 415 963-3132 +l: Cupertino +ou: Administrative +postalAddress: Administrative$Cupertino +telephoneNumber: +1 415 437-4879 +title: Associate Administrative Visionary +userPassword: Password1 +uid: ColpittS +givenName: Shannah +mail: ColpittS@ec5b8f0e9ac54265b8c5ceea3f25604f.bitwarden.com +carLicense: FEQ43C +departmentNumber: 9827 +employeeType: Employee +homePhone: +1 415 260-4513 +initials: S. C. +mobile: +1 415 449-2255 +pager: +1 415 111-8859 +roomNumber: 9465 +manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com +secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Holst Lowder,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Holst Lowder +sn: Lowder +description: This is Holst Lowder's description +facsimileTelephoneNumber: +1 415 787-2453 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 415 326-6292 +title: Supreme Janitorial Assistant +userPassword: Password1 +uid: LowderH +givenName: Holst +mail: LowderH@9bec1f480eec4baea66a1e4c2e434262.bitwarden.com +carLicense: 9ANO45 +departmentNumber: 1664 +employeeType: Employee +homePhone: +1 415 303-7504 +initials: H. L. +mobile: +1 415 180-8349 +pager: +1 415 168-1179 +roomNumber: 9355 +manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Hernan Cano,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hernan Cano +sn: Cano +description: This is Hernan Cano's description +facsimileTelephoneNumber: +1 206 244-9565 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 206 355-3838 +title: Master Management Assistant +userPassword: Password1 +uid: CanoH +givenName: Hernan +mail: CanoH@cad06adc163e4feeb3c82e23f3cc80c5.bitwarden.com +carLicense: C17SS6 +departmentNumber: 9661 +employeeType: Contract +homePhone: +1 206 232-8726 +initials: H. C. +mobile: +1 206 373-5202 +pager: +1 206 568-5937 +roomNumber: 9692 +manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Opto Broten,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Opto Broten +sn: Broten +description: This is Opto Broten's description +facsimileTelephoneNumber: +1 510 158-6140 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 510 964-4851 +title: Junior Human Resources Grunt +userPassword: Password1 +uid: BrotenO +givenName: Opto +mail: BrotenO@c26e885b4f4a47e7befaa9bedce07d04.bitwarden.com +carLicense: N2QLRC +departmentNumber: 8939 +employeeType: Contract +homePhone: +1 510 628-7768 +initials: O. B. +mobile: +1 510 354-2230 +pager: +1 510 579-4842 +roomNumber: 9001 +manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacquenette Metcalfe +sn: Metcalfe +description: This is Jacquenette Metcalfe's description +facsimileTelephoneNumber: +1 408 972-7429 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 408 466-2435 +title: Master Payroll Artist +userPassword: Password1 +uid: MetcalfJ +givenName: Jacquenette +mail: MetcalfJ@49a5c823cbe74e80b9d7e45aa3c6dc0c.bitwarden.com +carLicense: DHMKX8 +departmentNumber: 7727 +employeeType: Contract +homePhone: +1 408 915-1767 +initials: J. M. +mobile: +1 408 329-9636 +pager: +1 408 898-4203 +roomNumber: 9136 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Loralyn Lystuik +sn: Lystuik +description: This is Loralyn Lystuik's description +facsimileTelephoneNumber: +1 415 270-3023 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 415 308-5665 +title: Supreme Administrative Consultant +userPassword: Password1 +uid: LystuikL +givenName: Loralyn +mail: LystuikL@8b4252ea9d114f95b65956efe85c0aae.bitwarden.com +carLicense: 51PR2Y +departmentNumber: 8642 +employeeType: Contract +homePhone: +1 415 997-1678 +initials: L. L. +mobile: +1 415 630-6511 +pager: +1 415 988-2387 +roomNumber: 9871 +manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pirooz Bilodeau +sn: Bilodeau +description: This is Pirooz Bilodeau's description +facsimileTelephoneNumber: +1 415 727-7544 +l: Cambridge +ou: Product Testing +postalAddress: Product Testing$Cambridge +telephoneNumber: +1 415 862-4598 +title: Chief Product Testing Janitor +userPassword: Password1 +uid: BilodeaP +givenName: Pirooz +mail: BilodeaP@ae1bd8aa112143fa87c88a44e69aa310.bitwarden.com +carLicense: 87M28I +departmentNumber: 6737 +employeeType: Contract +homePhone: +1 415 688-8511 +initials: P. B. +mobile: +1 415 302-5901 +pager: +1 415 853-3433 +roomNumber: 9766 +manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gyula Aboussouan +sn: Aboussouan +description: This is Gyula Aboussouan's description +facsimileTelephoneNumber: +1 206 344-4270 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 206 552-9069 +title: Chief Product Development Czar +userPassword: Password1 +uid: AboussoG +givenName: Gyula +mail: AboussoG@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com +carLicense: 4YJAX2 +departmentNumber: 3434 +employeeType: Normal +homePhone: +1 206 140-6966 +initials: G. A. +mobile: +1 206 840-9014 +pager: +1 206 886-9978 +roomNumber: 9061 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jaymee Stephen +sn: Stephen +description: This is Jaymee Stephen's description +facsimileTelephoneNumber: +1 213 319-5026 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 610-3713 +title: Master Human Resources Technician +userPassword: Password1 +uid: StephenJ +givenName: Jaymee +mail: StephenJ@9c33cfc2346e4ce69bd595e18c9344a0.bitwarden.com +carLicense: AGOVGH +departmentNumber: 2141 +employeeType: Normal +homePhone: +1 213 141-3779 +initials: J. S. +mobile: +1 213 321-5104 +pager: +1 213 810-5432 +roomNumber: 9635 +manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Jill Domine,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jill Domine +sn: Domine +description: This is Jill Domine's description +facsimileTelephoneNumber: +1 818 341-6348 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 310-4280 +title: Associate Management Fellow +userPassword: Password1 +uid: DomineJ +givenName: Jill +mail: DomineJ@f46633fbb9a14011a26194c56d6fd793.bitwarden.com +carLicense: J83QKL +departmentNumber: 7455 +employeeType: Normal +homePhone: +1 818 695-8128 +initials: J. D. +mobile: +1 818 427-2489 +pager: +1 818 536-3104 +roomNumber: 8474 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Calypso Bolding,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Calypso Bolding +sn: Bolding +description: This is Calypso Bolding's description +facsimileTelephoneNumber: +1 510 353-5236 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 973-7388 +title: Associate Human Resources Architect +userPassword: Password1 +uid: BoldingC +givenName: Calypso +mail: BoldingC@defab017f9734cfab5b3fea4ed24112c.bitwarden.com +carLicense: 87TE5R +departmentNumber: 8897 +employeeType: Normal +homePhone: +1 510 966-1723 +initials: C. B. +mobile: +1 510 406-3399 +pager: +1 510 166-4515 +roomNumber: 9465 +manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Camille Legrandvallet +sn: Legrandvallet +description: This is Camille Legrandvallet's description +facsimileTelephoneNumber: +1 510 815-3793 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 510 701-8108 +title: Chief Product Development Admin +userPassword: Password1 +uid: LegrandC +givenName: Camille +mail: LegrandC@7848d01e47bb47dd88ac5b785d126995.bitwarden.com +carLicense: 80131O +departmentNumber: 2615 +employeeType: Employee +homePhone: +1 510 941-6977 +initials: C. L. +mobile: +1 510 451-6585 +pager: +1 510 941-3470 +roomNumber: 8796 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Nicolina Scp,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicolina Scp +sn: Scp +description: This is Nicolina Scp's description +facsimileTelephoneNumber: +1 804 224-6015 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 804 960-2702 +title: Chief Janitorial Engineer +userPassword: Password1 +uid: ScpN +givenName: Nicolina +mail: ScpN@3fe7f6d7adf6406f923792a176bd4ea0.bitwarden.com +carLicense: X6GVW1 +departmentNumber: 9685 +employeeType: Contract +homePhone: +1 804 480-7647 +initials: N. S. +mobile: +1 804 357-7387 +pager: +1 804 945-5391 +roomNumber: 8679 +manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Beverlee Hagstrom +sn: Hagstrom +description: This is Beverlee Hagstrom's description +facsimileTelephoneNumber: +1 804 264-7565 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 969-4588 +title: Associate Administrative Warrior +userPassword: Password1 +uid: HagstroB +givenName: Beverlee +mail: HagstroB@849b3c4e1c2c440d9331e7ccb7fe6ee8.bitwarden.com +carLicense: KH2UL5 +departmentNumber: 3480 +employeeType: Employee +homePhone: +1 804 485-6662 +initials: B. H. +mobile: +1 804 428-1156 +pager: +1 804 855-8955 +roomNumber: 8128 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Walter Cuddy,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Walter Cuddy +sn: Cuddy +description: This is Walter Cuddy's description +facsimileTelephoneNumber: +1 510 519-8693 +l: Menlo Park +ou: Janitorial +postalAddress: Janitorial$Menlo Park +telephoneNumber: +1 510 867-4816 +title: Supreme Janitorial Czar +userPassword: Password1 +uid: CuddyW +givenName: Walter +mail: CuddyW@afcd0af4da324c3492fbd5aaa52ff03c.bitwarden.com +carLicense: R5RD9B +departmentNumber: 8447 +employeeType: Contract +homePhone: +1 510 441-3983 +initials: W. C. +mobile: +1 510 843-9949 +pager: +1 510 559-7087 +roomNumber: 9084 +manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chellappan Parmaksezian +sn: Parmaksezian +description: This is Chellappan Parmaksezian's description +facsimileTelephoneNumber: +1 408 182-3049 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 408 487-6327 +title: Junior Peons Figurehead +userPassword: Password1 +uid: ParmaksC +givenName: Chellappan +mail: ParmaksC@511ccdcb357841e29d15d33838533afe.bitwarden.com +carLicense: JIVDUN +departmentNumber: 6069 +employeeType: Normal +homePhone: +1 408 821-1121 +initials: C. P. +mobile: +1 408 263-1765 +pager: +1 408 297-2895 +roomNumber: 8253 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Ruby Mattson,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ruby Mattson +sn: Mattson +description: This is Ruby Mattson's description +facsimileTelephoneNumber: +1 510 635-8626 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 779-5099 +title: Supreme Janitorial Figurehead +userPassword: Password1 +uid: MattsonR +givenName: Ruby +mail: MattsonR@bb05d1b4bcfb47c3a365c022dca10213.bitwarden.com +carLicense: UW1LBO +departmentNumber: 8484 +employeeType: Normal +homePhone: +1 510 631-1662 +initials: R. M. +mobile: +1 510 657-4372 +pager: +1 510 949-7471 +roomNumber: 9667 +manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Ranna Bedford,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ranna Bedford +sn: Bedford +description: This is Ranna Bedford's description +facsimileTelephoneNumber: +1 818 596-3804 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 818 328-5384 +title: Chief Payroll Pinhead +userPassword: Password1 +uid: BedfordR +givenName: Ranna +mail: BedfordR@d4eaa963470a4ec593f45c3b1f5e6d31.bitwarden.com +carLicense: CM8Y45 +departmentNumber: 4700 +employeeType: Contract +homePhone: +1 818 372-4246 +initials: R. B. +mobile: +1 818 156-1827 +pager: +1 818 310-7518 +roomNumber: 8284 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Amalle Rodi,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Amalle Rodi +sn: Rodi +description: This is Amalle Rodi's description +facsimileTelephoneNumber: +1 804 478-6607 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 804 314-1169 +title: Master Payroll Evangelist +userPassword: Password1 +uid: RodiA +givenName: Amalle +mail: RodiA@36bf168f83f54de6b68d81c3236caec7.bitwarden.com +carLicense: IAU68D +departmentNumber: 3648 +employeeType: Employee +homePhone: +1 804 967-5689 +initials: A. R. +mobile: +1 804 553-9484 +pager: +1 804 903-5965 +roomNumber: 8365 +manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Eolande Tarver,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eolande Tarver +sn: Tarver +description: This is Eolande Tarver's description +facsimileTelephoneNumber: +1 510 528-4127 +l: Palo Alto +ou: Human Resources +postalAddress: Human Resources$Palo Alto +telephoneNumber: +1 510 570-7648 +title: Associate Human Resources Evangelist +userPassword: Password1 +uid: TarverE +givenName: Eolande +mail: TarverE@ee233aa2d9a24ed1b6259dfbaed5ede4.bitwarden.com +carLicense: 0ALO26 +departmentNumber: 4802 +employeeType: Employee +homePhone: +1 510 960-5212 +initials: E. T. +mobile: +1 510 511-7611 +pager: +1 510 720-8304 +roomNumber: 8887 +manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tilda Kirady,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilda Kirady +sn: Kirady +description: This is Tilda Kirady's description +facsimileTelephoneNumber: +1 213 335-6312 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 168-4342 +title: Junior Product Testing Figurehead +userPassword: Password1 +uid: KiradyT +givenName: Tilda +mail: KiradyT@f131b0c80bf2427c8f1448cabfd51b89.bitwarden.com +carLicense: 26VQVT +departmentNumber: 3758 +employeeType: Contract +homePhone: +1 213 476-4092 +initials: T. K. +mobile: +1 213 968-3469 +pager: +1 213 128-5648 +roomNumber: 8173 +manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com + +dn: cn=Shailin Harris,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shailin Harris +sn: Harris +description: This is Shailin Harris's description +facsimileTelephoneNumber: +1 415 843-8210 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 415 892-9338 +title: Master Product Development Czar +userPassword: Password1 +uid: HarrisS +givenName: Shailin +mail: HarrisS@b97f63fadf014761ad37c4e561572265.bitwarden.com +carLicense: RITIPQ +departmentNumber: 7473 +employeeType: Employee +homePhone: +1 415 981-3284 +initials: S. H. +mobile: +1 415 227-3046 +pager: +1 415 150-6240 +roomNumber: 9886 +manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com + +dn: cn=Axel Panter,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Axel Panter +sn: Panter +description: This is Axel Panter's description +facsimileTelephoneNumber: +1 415 811-6669 +l: Santa Clara +ou: Payroll +postalAddress: Payroll$Santa Clara +telephoneNumber: +1 415 958-6654 +title: Chief Payroll Madonna +userPassword: Password1 +uid: PanterA +givenName: Axel +mail: PanterA@559e1a46c2f944d8a33837a661c67fa0.bitwarden.com +carLicense: YW4LFQ +departmentNumber: 4407 +employeeType: Normal +homePhone: +1 415 327-1163 +initials: A. P. +mobile: +1 415 513-5073 +pager: +1 415 991-1234 +roomNumber: 8037 +manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Karel McKerrow,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Karel McKerrow +sn: McKerrow +description: This is Karel McKerrow's description +facsimileTelephoneNumber: +1 213 351-5054 +l: Cupertino +ou: Janitorial +postalAddress: Janitorial$Cupertino +telephoneNumber: +1 213 199-7573 +title: Master Janitorial Architect +userPassword: Password1 +uid: McKerroK +givenName: Karel +mail: McKerroK@a54f12818a1846468b5223c21ce7b95a.bitwarden.com +carLicense: XQHONX +departmentNumber: 1036 +employeeType: Normal +homePhone: +1 213 913-1512 +initials: K. M. +mobile: +1 213 605-2096 +pager: +1 213 851-1715 +roomNumber: 9914 +manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hesham SYSINT +sn: SYSINT +description: This is Hesham SYSINT's description +facsimileTelephoneNumber: +1 206 789-4428 +l: San Francisco +ou: Product Testing +postalAddress: Product Testing$San Francisco +telephoneNumber: +1 206 126-4447 +title: Associate Product Testing Fellow +userPassword: Password1 +uid: SYSINTH +givenName: Hesham +mail: SYSINTH@ff55511857a042e0b4f985da98eaf06c.bitwarden.com +carLicense: IIOG66 +departmentNumber: 5086 +employeeType: Employee +homePhone: +1 206 304-4229 +initials: H. S. +mobile: +1 206 381-8055 +pager: +1 206 216-9665 +roomNumber: 8656 +manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Arabelle Jepson,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arabelle Jepson +sn: Jepson +description: This is Arabelle Jepson's description +facsimileTelephoneNumber: +1 804 448-3784 +l: San Mateo +ou: Product Development +postalAddress: Product Development$San Mateo +telephoneNumber: +1 804 130-3612 +title: Junior Product Development Madonna +userPassword: Password1 +uid: JepsonA +givenName: Arabelle +mail: JepsonA@b034a4332db1440db9d21ffa224b40ad.bitwarden.com +carLicense: 8BPOXK +departmentNumber: 8049 +employeeType: Normal +homePhone: +1 804 458-4336 +initials: A. J. +mobile: +1 804 787-4722 +pager: +1 804 349-5763 +roomNumber: 8074 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com + +dn: cn=Donna Imhof,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Donna Imhof +sn: Imhof +description: This is Donna Imhof's description +facsimileTelephoneNumber: +1 213 939-5337 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 213 922-5649 +title: Junior Payroll Mascot +userPassword: Password1 +uid: ImhofD +givenName: Donna +mail: ImhofD@31e0e9341ea74d639b4c5d690dfc3510.bitwarden.com +carLicense: 2FGS57 +departmentNumber: 8923 +employeeType: Contract +homePhone: +1 213 714-2229 +initials: D. I. +mobile: +1 213 934-8654 +pager: +1 213 975-9398 +roomNumber: 8455 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tilly Mastenbrook +sn: Mastenbrook +description: This is Tilly Mastenbrook's description +facsimileTelephoneNumber: +1 408 167-7875 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 408 289-6351 +title: Junior Product Development Evangelist +userPassword: Password1 +uid: MastenbT +givenName: Tilly +mail: MastenbT@970a67116dba428ca784557a5cd27357.bitwarden.com +carLicense: 6KNHYD +departmentNumber: 7458 +employeeType: Normal +homePhone: +1 408 525-9713 +initials: T. M. +mobile: +1 408 726-1200 +pager: +1 408 711-7225 +roomNumber: 8830 +manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Lucila Caruth,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lucila Caruth +sn: Caruth +description: This is Lucila Caruth's description +facsimileTelephoneNumber: +1 408 502-4465 +l: Armonk +ou: Management +postalAddress: Management$Armonk +telephoneNumber: +1 408 695-9186 +title: Supreme Management Stooge +userPassword: Password1 +uid: CaruthL +givenName: Lucila +mail: CaruthL@4f4529779c39486286005f0294a1558e.bitwarden.com +carLicense: CAH7GM +departmentNumber: 5502 +employeeType: Employee +homePhone: +1 408 761-2959 +initials: L. C. +mobile: +1 408 115-6149 +pager: +1 408 834-2784 +roomNumber: 9366 +manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Serban Kamal,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Serban Kamal +sn: Kamal +description: This is Serban Kamal's description +facsimileTelephoneNumber: +1 408 360-5698 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 408 163-8981 +title: Junior Janitorial Warrior +userPassword: Password1 +uid: KamalS +givenName: Serban +mail: KamalS@5f77a03327624c95b0af47acd4b143e5.bitwarden.com +carLicense: G7QVV9 +departmentNumber: 8146 +employeeType: Contract +homePhone: +1 408 670-3405 +initials: S. K. +mobile: +1 408 817-5041 +pager: +1 408 290-8921 +roomNumber: 9144 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Suzann Minter,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Suzann Minter +sn: Minter +description: This is Suzann Minter's description +facsimileTelephoneNumber: +1 818 602-1883 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 818 340-8730 +title: Supreme Product Development Admin +userPassword: Password1 +uid: MinterS +givenName: Suzann +mail: MinterS@f3b7d3d07c2e403b8aacf9226428b2e0.bitwarden.com +carLicense: PMGSLG +departmentNumber: 2847 +employeeType: Contract +homePhone: +1 818 688-5029 +initials: S. M. +mobile: +1 818 680-1770 +pager: +1 818 132-1850 +roomNumber: 8484 +manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Roselia Valvasori,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roselia Valvasori +sn: Valvasori +description: This is Roselia Valvasori's description +facsimileTelephoneNumber: +1 408 705-9425 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 408 832-2476 +title: Junior Product Development Vice President +userPassword: Password1 +uid: ValvasoR +givenName: Roselia +mail: ValvasoR@dea332c9554341478a9465c061b04c2c.bitwarden.com +carLicense: 2TIXRQ +departmentNumber: 3507 +employeeType: Normal +homePhone: +1 408 566-3768 +initials: R. V. +mobile: +1 408 790-9893 +pager: +1 408 341-7947 +roomNumber: 8280 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nancey ODonovan,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nancey ODonovan +sn: ODonovan +description: This is Nancey ODonovan's description +facsimileTelephoneNumber: +1 408 674-4167 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 408 521-6129 +title: Chief Payroll Dictator +userPassword: Password1 +uid: ODonovaN +givenName: Nancey +mail: ODonovaN@d292ac0c300a44aaaa8fa15264950aa9.bitwarden.com +carLicense: QS8KAX +departmentNumber: 5765 +employeeType: Contract +homePhone: +1 408 304-9241 +initials: N. O. +mobile: +1 408 469-1921 +pager: +1 408 717-8730 +roomNumber: 8162 +manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Deva Deugau,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Deva Deugau +sn: Deugau +description: This is Deva Deugau's description +facsimileTelephoneNumber: +1 213 694-6212 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 213 579-9007 +title: Junior Payroll Admin +userPassword: Password1 +uid: DeugauD +givenName: Deva +mail: DeugauD@c1864662acf34812bb78c7f7029d15f8.bitwarden.com +carLicense: OXTXEQ +departmentNumber: 1458 +employeeType: Contract +homePhone: +1 213 127-7315 +initials: D. D. +mobile: +1 213 550-5616 +pager: +1 213 524-3749 +roomNumber: 8619 +manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gheorghe Lipski +sn: Lipski +description: This is Gheorghe Lipski's description +facsimileTelephoneNumber: +1 804 909-3749 +l: Milpitas +ou: Payroll +postalAddress: Payroll$Milpitas +telephoneNumber: +1 804 971-5657 +title: Supreme Payroll Manager +userPassword: Password1 +uid: LipskiG +givenName: Gheorghe +mail: LipskiG@6a7ad90af8b14ef5805ef3e5ef79c783.bitwarden.com +carLicense: FDG4OW +departmentNumber: 8444 +employeeType: Employee +homePhone: +1 804 465-2689 +initials: G. L. +mobile: +1 804 857-6809 +pager: +1 804 265-9115 +roomNumber: 8334 +manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Almire Rokas,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Almire Rokas +sn: Rokas +description: This is Almire Rokas's description +facsimileTelephoneNumber: +1 510 501-6496 +l: Cupertino +ou: Product Development +postalAddress: Product Development$Cupertino +telephoneNumber: +1 510 796-6168 +title: Associate Product Development Figurehead +userPassword: Password1 +uid: RokasA +givenName: Almire +mail: RokasA@70f44c830c534fd69815f0a242b800aa.bitwarden.com +carLicense: 2CADFT +departmentNumber: 8111 +employeeType: Contract +homePhone: +1 510 608-5719 +initials: A. R. +mobile: +1 510 805-3089 +pager: +1 510 806-6184 +roomNumber: 8893 +manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nguyet Kawashima +sn: Kawashima +description: This is Nguyet Kawashima's description +facsimileTelephoneNumber: +1 818 339-4225 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 818 207-5634 +title: Chief Human Resources Mascot +userPassword: Password1 +uid: KawashiN +givenName: Nguyet +mail: KawashiN@2a1378ca3fed44339fabf27d28472e8d.bitwarden.com +carLicense: 0SI38Y +departmentNumber: 9475 +employeeType: Normal +homePhone: +1 818 656-7421 +initials: N. K. +mobile: +1 818 553-7843 +pager: +1 818 684-2091 +roomNumber: 8785 +manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Aideen Sterian,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aideen Sterian +sn: Sterian +description: This is Aideen Sterian's description +facsimileTelephoneNumber: +1 213 433-6937 +l: Sunnyvale +ou: Product Development +postalAddress: Product Development$Sunnyvale +telephoneNumber: +1 213 511-6848 +title: Associate Product Development Evangelist +userPassword: Password1 +uid: SterianA +givenName: Aideen +mail: SterianA@86ec81373a8049308a0ea3aa5ec73e40.bitwarden.com +carLicense: 93DEWO +departmentNumber: 4479 +employeeType: Normal +homePhone: +1 213 282-9800 +initials: A. S. +mobile: +1 213 501-6145 +pager: +1 213 521-4075 +roomNumber: 9799 +manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Norma Gording,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Norma Gording +sn: Gording +description: This is Norma Gording's description +facsimileTelephoneNumber: +1 408 211-5919 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 408 986-5360 +title: Supreme Peons Pinhead +userPassword: Password1 +uid: GordingN +givenName: Norma +mail: GordingN@4ea4f1e353e542d591c9ee228e04b29f.bitwarden.com +carLicense: SK0102 +departmentNumber: 4665 +employeeType: Contract +homePhone: +1 408 900-1919 +initials: N. G. +mobile: +1 408 602-8783 +pager: +1 408 409-8161 +roomNumber: 8788 +manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Caye LeTarte,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Caye LeTarte +sn: LeTarte +description: This is Caye LeTarte's description +facsimileTelephoneNumber: +1 213 467-9728 +l: Milpitas +ou: Human Resources +postalAddress: Human Resources$Milpitas +telephoneNumber: +1 213 292-3883 +title: Supreme Human Resources Mascot +userPassword: Password1 +uid: LeTarteC +givenName: Caye +mail: LeTarteC@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com +carLicense: RYI9XO +departmentNumber: 5535 +employeeType: Normal +homePhone: +1 213 903-5564 +initials: C. L. +mobile: +1 213 145-3244 +pager: +1 213 633-6346 +roomNumber: 8598 +manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com + +dn: cn=Odile Blaufus,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Odile Blaufus +sn: Blaufus +description: This is Odile Blaufus's description +facsimileTelephoneNumber: +1 408 912-8298 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 408 481-2479 +title: Junior Product Development Punk +userPassword: Password1 +uid: BlaufusO +givenName: Odile +mail: BlaufusO@4d42e606140043c2b9dd8fa49a74f077.bitwarden.com +carLicense: NT23RK +departmentNumber: 2511 +employeeType: Normal +homePhone: +1 408 990-7926 +initials: O. B. +mobile: +1 408 715-5302 +pager: +1 408 544-4366 +roomNumber: 8340 +manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com +secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Gerti Macchiusi,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerti Macchiusi +sn: Macchiusi +description: This is Gerti Macchiusi's description +facsimileTelephoneNumber: +1 408 458-7608 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 408 166-3191 +title: Associate Peons Mascot +userPassword: Password1 +uid: MacchiuG +givenName: Gerti +mail: MacchiuG@5bfdb02bbe094e32837af4fd211ac0c4.bitwarden.com +carLicense: ATVP2N +departmentNumber: 5167 +employeeType: Contract +homePhone: +1 408 300-7303 +initials: G. M. +mobile: +1 408 620-6082 +pager: +1 408 752-6769 +roomNumber: 8595 +manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com + +dn: cn=Carmelita Fucito,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmelita Fucito +sn: Fucito +description: This is Carmelita Fucito's description +facsimileTelephoneNumber: +1 415 842-6301 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 415 209-8088 +title: Supreme Product Development Artist +userPassword: Password1 +uid: FucitoC +givenName: Carmelita +mail: FucitoC@21bcf6a485b34cf591de5e2c4c73b2a9.bitwarden.com +carLicense: MYMBTI +departmentNumber: 5450 +employeeType: Contract +homePhone: +1 415 366-3506 +initials: C. F. +mobile: +1 415 522-9608 +pager: +1 415 198-7550 +roomNumber: 9069 +manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Xenia Ertan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Xenia Ertan +sn: Ertan +description: This is Xenia Ertan's description +facsimileTelephoneNumber: +1 408 235-1737 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 408 993-8994 +title: Associate Management Writer +userPassword: Password1 +uid: ErtanX +givenName: Xenia +mail: ErtanX@3735d00458534db99064f02f9211b0c4.bitwarden.com +carLicense: HSMCNV +departmentNumber: 3322 +employeeType: Normal +homePhone: +1 408 314-7630 +initials: X. E. +mobile: +1 408 596-6829 +pager: +1 408 560-9936 +roomNumber: 9419 +manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Foster Swinson,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Foster Swinson +sn: Swinson +description: This is Foster Swinson's description +facsimileTelephoneNumber: +1 510 630-7410 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 510 767-9433 +title: Junior Administrative Figurehead +userPassword: Password1 +uid: SwinsonF +givenName: Foster +mail: SwinsonF@ca07554d305246dd85334089406d833c.bitwarden.com +carLicense: C5FQ8Q +departmentNumber: 7815 +employeeType: Employee +homePhone: +1 510 401-1788 +initials: F. S. +mobile: +1 510 409-3720 +pager: +1 510 312-6839 +roomNumber: 8394 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jerrylee Stennett +sn: Stennett +description: This is Jerrylee Stennett's description +facsimileTelephoneNumber: +1 408 277-8055 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 408 127-9823 +title: Master Payroll Mascot +userPassword: Password1 +uid: StennetJ +givenName: Jerrylee +mail: StennetJ@5bfe34f0b38046f495b7f4a7ffee01c4.bitwarden.com +carLicense: O3HF8M +departmentNumber: 6210 +employeeType: Normal +homePhone: +1 408 815-7115 +initials: J. S. +mobile: +1 408 248-3538 +pager: +1 408 578-2494 +roomNumber: 9487 +manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Fwpreg Liem,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Fwpreg Liem +sn: Liem +description: This is Fwpreg Liem's description +facsimileTelephoneNumber: +1 408 241-8920 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 408 388-7208 +title: Associate Administrative Grunt +userPassword: Password1 +uid: LiemF +givenName: Fwpreg +mail: LiemF@c28624b05f7d4c31811fad5e0d04b1e6.bitwarden.com +carLicense: KAUYC6 +departmentNumber: 7984 +employeeType: Employee +homePhone: +1 408 134-4077 +initials: F. L. +mobile: +1 408 257-6315 +pager: +1 408 885-9844 +roomNumber: 8732 +manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rolande MacMeekin +sn: MacMeekin +description: This is Rolande MacMeekin's description +facsimileTelephoneNumber: +1 213 568-5385 +l: Fremont +ou: Product Development +postalAddress: Product Development$Fremont +telephoneNumber: +1 213 522-8518 +title: Supreme Product Development Artist +userPassword: Password1 +uid: MacMeekR +givenName: Rolande +mail: MacMeekR@a85aab1f1ab04cd48420e81e7374b4e8.bitwarden.com +carLicense: 744KHH +departmentNumber: 1261 +employeeType: Contract +homePhone: +1 213 382-7382 +initials: R. M. +mobile: +1 213 452-7255 +pager: +1 213 205-1481 +roomNumber: 8583 +manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ernaline Rakotomalala +sn: Rakotomalala +description: This is Ernaline Rakotomalala's description +facsimileTelephoneNumber: +1 408 712-8468 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 408 504-1240 +title: Associate Human Resources Czar +userPassword: Password1 +uid: RakotomE +givenName: Ernaline +mail: RakotomE@16e252f623154ea09c88ae20c619b8c4.bitwarden.com +carLicense: 7EKOYO +departmentNumber: 6961 +employeeType: Employee +homePhone: +1 408 164-3291 +initials: E. R. +mobile: +1 408 378-6749 +pager: +1 408 241-5250 +roomNumber: 9823 +manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Yevette Egan,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Yevette Egan +sn: Egan +description: This is Yevette Egan's description +facsimileTelephoneNumber: +1 415 914-5048 +l: Milpitas +ou: Product Testing +postalAddress: Product Testing$Milpitas +telephoneNumber: +1 415 899-1282 +title: Junior Product Testing Warrior +userPassword: Password1 +uid: EganY +givenName: Yevette +mail: EganY@abb4a2ffe4d34b86b74539eca6366630.bitwarden.com +carLicense: XJ0PNP +departmentNumber: 7146 +employeeType: Employee +homePhone: +1 415 115-5222 +initials: Y. E. +mobile: +1 415 177-4356 +pager: +1 415 370-5690 +roomNumber: 8532 +manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Clarice Seymour,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clarice Seymour +sn: Seymour +description: This is Clarice Seymour's description +facsimileTelephoneNumber: +1 213 409-8013 +l: Redmond +ou: Management +postalAddress: Management$Redmond +telephoneNumber: +1 213 816-6766 +title: Master Management Figurehead +userPassword: Password1 +uid: SeymourC +givenName: Clarice +mail: SeymourC@2b13da408414484c934b524c33272c48.bitwarden.com +carLicense: 3DIH4W +departmentNumber: 6239 +employeeType: Normal +homePhone: +1 213 244-2788 +initials: C. S. +mobile: +1 213 230-8916 +pager: +1 213 445-2005 +roomNumber: 9555 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mohammed Popowicz +sn: Popowicz +description: This is Mohammed Popowicz's description +facsimileTelephoneNumber: +1 804 568-6049 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 804 714-8299 +title: Associate Product Development Evangelist +userPassword: Password1 +uid: PopowicM +givenName: Mohammed +mail: PopowicM@db7691c9dca24eb7875f7a9259652b96.bitwarden.com +carLicense: XOC486 +departmentNumber: 4502 +employeeType: Contract +homePhone: +1 804 261-3111 +initials: M. P. +mobile: +1 804 718-9064 +pager: +1 804 254-5656 +roomNumber: 9821 +manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Clement Bnrinfo +sn: Bnrinfo +description: This is Clement Bnrinfo's description +facsimileTelephoneNumber: +1 818 818-7348 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 818 569-1349 +title: Associate Payroll Admin +userPassword: Password1 +uid: BnrinfoC +givenName: Clement +mail: BnrinfoC@b1fdb151f0e64e1a958a0e82820ba255.bitwarden.com +carLicense: CYIRS2 +departmentNumber: 1927 +employeeType: Normal +homePhone: +1 818 208-2312 +initials: C. B. +mobile: +1 818 708-7543 +pager: +1 818 305-3020 +roomNumber: 9885 +manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Miles Khorami,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miles Khorami +sn: Khorami +description: This is Miles Khorami's description +facsimileTelephoneNumber: +1 213 924-4520 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 213 268-9368 +title: Junior Payroll Grunt +userPassword: Password1 +uid: KhoramiM +givenName: Miles +mail: KhoramiM@6f609804b5454243a8f49419cf4fa238.bitwarden.com +carLicense: WVO8T2 +departmentNumber: 9829 +employeeType: Contract +homePhone: +1 213 530-6980 +initials: M. K. +mobile: +1 213 274-6220 +pager: +1 213 766-8028 +roomNumber: 9739 +manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roseann Uhlhorn +sn: Uhlhorn +description: This is Roseann Uhlhorn's description +facsimileTelephoneNumber: +1 415 223-2866 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 415 429-4579 +title: Master Administrative Director +userPassword: Password1 +uid: UhlhornR +givenName: Roseann +mail: UhlhornR@ed7609251fc6464495c48d57ffb093b6.bitwarden.com +carLicense: PBK3RS +departmentNumber: 2368 +employeeType: Normal +homePhone: +1 415 604-5690 +initials: R. U. +mobile: +1 415 705-4542 +pager: +1 415 459-8614 +roomNumber: 9505 +manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Joon Panton,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joon Panton +sn: Panton +description: This is Joon Panton's description +facsimileTelephoneNumber: +1 804 819-7151 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 543-8658 +title: Supreme Administrative Writer +userPassword: Password1 +uid: PantonJ +givenName: Joon +mail: PantonJ@399088e535dc444183a128d7fd1a5d16.bitwarden.com +carLicense: PGRSVQ +departmentNumber: 1308 +employeeType: Contract +homePhone: +1 804 134-1604 +initials: J. P. +mobile: +1 804 171-7619 +pager: +1 804 106-5134 +roomNumber: 8396 +manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Olympe Calmejane,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Olympe Calmejane +sn: Calmejane +description: This is Olympe Calmejane's description +facsimileTelephoneNumber: +1 818 650-7170 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 818 579-1225 +title: Associate Management Consultant +userPassword: Password1 +uid: CalmejaO +givenName: Olympe +mail: CalmejaO@9afe54538fed45b288aa10f6ca71fa1c.bitwarden.com +carLicense: R86NE6 +departmentNumber: 1433 +employeeType: Normal +homePhone: +1 818 749-5966 +initials: O. C. +mobile: +1 818 254-3654 +pager: +1 818 119-3862 +roomNumber: 8917 +manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Felicdad Thornber,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Felicdad Thornber +sn: Thornber +description: This is Felicdad Thornber's description +facsimileTelephoneNumber: +1 206 944-8959 +l: Cambridge +ou: Peons +postalAddress: Peons$Cambridge +telephoneNumber: +1 206 190-5097 +title: Chief Peons Dictator +userPassword: Password1 +uid: ThornbeF +givenName: Felicdad +mail: ThornbeF@a48701aa8d324e65a88e2c654b93d791.bitwarden.com +carLicense: NTL6T0 +departmentNumber: 3951 +employeeType: Normal +homePhone: +1 206 122-7832 +initials: F. T. +mobile: +1 206 658-1265 +pager: +1 206 783-6124 +roomNumber: 9052 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Pradeep Recktenwald,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pradeep Recktenwald +sn: Recktenwald +description: This is Pradeep Recktenwald's description +facsimileTelephoneNumber: +1 408 799-4522 +l: Palo Alto +ou: Management +postalAddress: Management$Palo Alto +telephoneNumber: +1 408 859-3576 +title: Chief Management Director +userPassword: Password1 +uid: RecktenP +givenName: Pradeep +mail: RecktenP@4a5d6761844a487688a8f353a67dc3a6.bitwarden.com +carLicense: 3TYRYX +departmentNumber: 8461 +employeeType: Contract +homePhone: +1 408 247-4079 +initials: P. R. +mobile: +1 408 414-9905 +pager: +1 408 200-6334 +roomNumber: 9019 +manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Vanya Sherrill,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vanya Sherrill +sn: Sherrill +description: This is Vanya Sherrill's description +facsimileTelephoneNumber: +1 804 123-3366 +l: Cambridge +ou: Administrative +postalAddress: Administrative$Cambridge +telephoneNumber: +1 804 241-1793 +title: Chief Administrative Dictator +userPassword: Password1 +uid: SherrilV +givenName: Vanya +mail: SherrilV@397524543d124dbf9d2177984f3399f5.bitwarden.com +carLicense: IKMASE +departmentNumber: 5804 +employeeType: Contract +homePhone: +1 804 154-2529 +initials: V. S. +mobile: +1 804 689-9126 +pager: +1 804 276-7584 +roomNumber: 9507 +manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Kittie Bangia,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Kittie Bangia +sn: Bangia +description: This is Kittie Bangia's description +facsimileTelephoneNumber: +1 206 260-1352 +l: Milpitas +ou: Peons +postalAddress: Peons$Milpitas +telephoneNumber: +1 206 204-7050 +title: Chief Peons Artist +userPassword: Password1 +uid: BangiaK +givenName: Kittie +mail: BangiaK@aab792405d0e421e9faa1d2235dbde11.bitwarden.com +carLicense: SBOXQB +departmentNumber: 1419 +employeeType: Contract +homePhone: +1 206 381-7082 +initials: K. B. +mobile: +1 206 178-9675 +pager: +1 206 153-4211 +roomNumber: 8347 +manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Freek Xayaraj,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Freek Xayaraj +sn: Xayaraj +description: This is Freek Xayaraj's description +facsimileTelephoneNumber: +1 415 485-6234 +l: Santa Clara +ou: Product Development +postalAddress: Product Development$Santa Clara +telephoneNumber: +1 415 135-5314 +title: Chief Product Development Consultant +userPassword: Password1 +uid: XayarajF +givenName: Freek +mail: XayarajF@b2d36917909a45fd9de4c6c83faf6196.bitwarden.com +carLicense: H08J82 +departmentNumber: 8369 +employeeType: Normal +homePhone: +1 415 935-4473 +initials: F. X. +mobile: +1 415 562-7150 +pager: +1 415 523-7861 +roomNumber: 9761 +manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emelina Dotsey,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emelina Dotsey +sn: Dotsey +description: This is Emelina Dotsey's description +facsimileTelephoneNumber: +1 415 592-9083 +l: San Mateo +ou: Payroll +postalAddress: Payroll$San Mateo +telephoneNumber: +1 415 273-8559 +title: Master Payroll Manager +userPassword: Password1 +uid: DotseyE +givenName: Emelina +mail: DotseyE@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com +carLicense: SY4LTP +departmentNumber: 1779 +employeeType: Contract +homePhone: +1 415 344-2557 +initials: E. D. +mobile: +1 415 666-6301 +pager: +1 415 539-3406 +roomNumber: 8139 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Jacob Scss,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Jacob Scss +sn: Scss +description: This is Jacob Scss's description +facsimileTelephoneNumber: +1 408 733-7044 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 408 641-3464 +title: Master Management Consultant +userPassword: Password1 +uid: ScssJ +givenName: Jacob +mail: ScssJ@eb51241312c644a68d6f84102cb2d201.bitwarden.com +carLicense: UR3FN7 +departmentNumber: 2481 +employeeType: Contract +homePhone: +1 408 709-7394 +initials: J. S. +mobile: +1 408 707-6346 +pager: +1 408 610-7878 +roomNumber: 8659 +manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Nicholas Palasek,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nicholas Palasek +sn: Palasek +description: This is Nicholas Palasek's description +facsimileTelephoneNumber: +1 804 139-8936 +l: Redmond +ou: Product Development +postalAddress: Product Development$Redmond +telephoneNumber: +1 804 551-3781 +title: Chief Product Development Czar +userPassword: Password1 +uid: PalasekN +givenName: Nicholas +mail: PalasekN@f6469cbfb72544718327959dbf443a96.bitwarden.com +carLicense: 7XP9AU +departmentNumber: 9392 +employeeType: Contract +homePhone: +1 804 104-1419 +initials: N. P. +mobile: +1 804 271-4932 +pager: +1 804 161-7688 +roomNumber: 8934 +manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com + +dn: cn=Business Worsley,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Business Worsley +sn: Worsley +description: This is Business Worsley's description +facsimileTelephoneNumber: +1 415 424-6303 +l: Alameda +ou: Management +postalAddress: Management$Alameda +telephoneNumber: +1 415 761-4948 +title: Associate Management Sales Rep +userPassword: Password1 +uid: WorsleyB +givenName: Business +mail: WorsleyB@400859d9959f4901a5309e45fdb61bf6.bitwarden.com +carLicense: U4SUSD +departmentNumber: 6597 +employeeType: Normal +homePhone: +1 415 256-5777 +initials: B. W. +mobile: +1 415 676-4495 +pager: +1 415 487-4684 +roomNumber: 8576 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Dita Billard,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dita Billard +sn: Billard +description: This is Dita Billard's description +facsimileTelephoneNumber: +1 206 806-6520 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 206 960-4443 +title: Chief Human Resources Engineer +userPassword: Password1 +uid: BillardD +givenName: Dita +mail: BillardD@96a96fd515be425ca19359bc8dcf6a6c.bitwarden.com +carLicense: VRGXDJ +departmentNumber: 3710 +employeeType: Normal +homePhone: +1 206 844-5829 +initials: D. B. +mobile: +1 206 325-3430 +pager: +1 206 601-1737 +roomNumber: 8008 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com + +dn: cn=Coleman Holman,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coleman Holman +sn: Holman +description: This is Coleman Holman's description +facsimileTelephoneNumber: +1 213 670-6768 +l: Alameda +ou: Human Resources +postalAddress: Human Resources$Alameda +telephoneNumber: +1 213 923-7352 +title: Junior Human Resources Developer +userPassword: Password1 +uid: HolmanC +givenName: Coleman +mail: HolmanC@9fb3bab6a5274e42930ef0c4e486700b.bitwarden.com +carLicense: OEVVP7 +departmentNumber: 3117 +employeeType: Contract +homePhone: +1 213 886-9202 +initials: C. H. +mobile: +1 213 900-2760 +pager: +1 213 611-5998 +roomNumber: 9784 +manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Elberta Shnider,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elberta Shnider +sn: Shnider +description: This is Elberta Shnider's description +facsimileTelephoneNumber: +1 818 859-7101 +l: Milpitas +ou: Management +postalAddress: Management$Milpitas +telephoneNumber: +1 818 412-9602 +title: Supreme Management Developer +userPassword: Password1 +uid: ShniderE +givenName: Elberta +mail: ShniderE@9aa7896234604e35853331a58b365781.bitwarden.com +carLicense: AB0WYD +departmentNumber: 7691 +employeeType: Contract +homePhone: +1 818 323-9511 +initials: E. S. +mobile: +1 818 499-6429 +pager: +1 818 847-7684 +roomNumber: 9626 +manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Gerrilee Ladd +sn: Ladd +description: This is Gerrilee Ladd's description +facsimileTelephoneNumber: +1 206 100-3194 +l: San Jose +ou: Human Resources +postalAddress: Human Resources$San Jose +telephoneNumber: +1 206 227-7746 +title: Supreme Human Resources Technician +userPassword: Password1 +uid: LaddG +givenName: Gerrilee +mail: LaddG@c3158f1fa2f94243a73d4266ce1cfc71.bitwarden.com +carLicense: XDKYMO +departmentNumber: 5903 +employeeType: Contract +homePhone: +1 206 821-4674 +initials: G. L. +mobile: +1 206 196-7631 +pager: +1 206 628-6102 +roomNumber: 9022 +manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Judie Buhrkuhl +sn: Buhrkuhl +description: This is Judie Buhrkuhl's description +facsimileTelephoneNumber: +1 408 747-5167 +l: Alameda +ou: Payroll +postalAddress: Payroll$Alameda +telephoneNumber: +1 408 751-7897 +title: Supreme Payroll Visionary +userPassword: Password1 +uid: BuhrkuhJ +givenName: Judie +mail: BuhrkuhJ@bf35e2dd921644e489469fd3b907aac9.bitwarden.com +carLicense: DD9UTB +departmentNumber: 3198 +employeeType: Normal +homePhone: +1 408 366-6365 +initials: J. B. +mobile: +1 408 603-8762 +pager: +1 408 264-1996 +roomNumber: 8256 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Mirabel Queries,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mirabel Queries +sn: Queries +description: This is Mirabel Queries's description +facsimileTelephoneNumber: +1 415 761-4205 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 415 919-2780 +title: Junior Administrative Evangelist +userPassword: Password1 +uid: QueriesM +givenName: Mirabel +mail: QueriesM@d37e812441464f08ac2750e113db6273.bitwarden.com +carLicense: CB5V5G +departmentNumber: 4835 +employeeType: Contract +homePhone: +1 415 190-2525 +initials: M. Q. +mobile: +1 415 217-2485 +pager: +1 415 612-5633 +roomNumber: 8918 +manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Luigi Strayhorn +sn: Strayhorn +description: This is Luigi Strayhorn's description +facsimileTelephoneNumber: +1 415 722-9170 +l: Redwood Shores +ou: Janitorial +postalAddress: Janitorial$Redwood Shores +telephoneNumber: +1 415 218-1507 +title: Master Janitorial Technician +userPassword: Password1 +uid: StrayhoL +givenName: Luigi +mail: StrayhoL@fc3a6a2ed2a041edaaee095273406b72.bitwarden.com +carLicense: 0GQGFB +departmentNumber: 6275 +employeeType: Contract +homePhone: +1 415 115-2368 +initials: L. S. +mobile: +1 415 866-5976 +pager: +1 415 283-4924 +roomNumber: 8200 +manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elvert Dolginoff +sn: Dolginoff +description: This is Elvert Dolginoff's description +facsimileTelephoneNumber: +1 408 941-1526 +l: Armonk +ou: Payroll +postalAddress: Payroll$Armonk +telephoneNumber: +1 408 216-5527 +title: Junior Payroll Stooge +userPassword: Password1 +uid: DolginoE +givenName: Elvert +mail: DolginoE@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com +carLicense: I5NU6S +departmentNumber: 6382 +employeeType: Normal +homePhone: +1 408 580-2161 +initials: E. D. +mobile: +1 408 351-7063 +pager: +1 408 991-4419 +roomNumber: 8343 +manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Arts Marttinen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arts Marttinen +sn: Marttinen +description: This is Arts Marttinen's description +facsimileTelephoneNumber: +1 408 890-8724 +l: Fremont +ou: Payroll +postalAddress: Payroll$Fremont +telephoneNumber: +1 408 894-2795 +title: Master Payroll Janitor +userPassword: Password1 +uid: MarttinA +givenName: Arts +mail: MarttinA@aa04f1225a3142f7b6d7d981c171a9da.bitwarden.com +carLicense: RD9HNU +departmentNumber: 9196 +employeeType: Employee +homePhone: +1 408 690-9732 +initials: A. M. +mobile: +1 408 855-6383 +pager: +1 408 570-4536 +roomNumber: 9853 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Velma Goldberg,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Velma Goldberg +sn: Goldberg +description: This is Velma Goldberg's description +facsimileTelephoneNumber: +1 804 300-8907 +l: Menlo Park +ou: Product Development +postalAddress: Product Development$Menlo Park +telephoneNumber: +1 804 811-6715 +title: Master Product Development Assistant +userPassword: Password1 +uid: GoldberV +givenName: Velma +mail: GoldberV@f282bdd196b049c89323e32ec5a7899a.bitwarden.com +carLicense: UMW0FE +departmentNumber: 8266 +employeeType: Contract +homePhone: +1 804 166-9058 +initials: V. G. +mobile: +1 804 458-1390 +pager: +1 804 512-1480 +roomNumber: 9138 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Anet Sanity,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Anet Sanity +sn: Sanity +description: This is Anet Sanity's description +facsimileTelephoneNumber: +1 206 238-5733 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 206 448-7599 +title: Chief Peons Grunt +userPassword: Password1 +uid: SanityA +givenName: Anet +mail: SanityA@8be534402b894a65896ab57da74025f9.bitwarden.com +carLicense: 8NRE8T +departmentNumber: 3439 +employeeType: Normal +homePhone: +1 206 213-6677 +initials: A. S. +mobile: +1 206 719-8676 +pager: +1 206 902-1799 +roomNumber: 9522 +manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Pars Events,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Pars Events +sn: Events +description: This is Pars Events's description +facsimileTelephoneNumber: +1 213 521-2769 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 229-1039 +title: Supreme Administrative Sales Rep +userPassword: Password1 +uid: EventsP +givenName: Pars +mail: EventsP@e713d665881b44ac9ce046c8aa4c6aed.bitwarden.com +carLicense: BELI9C +departmentNumber: 4075 +employeeType: Normal +homePhone: +1 213 153-2978 +initials: P. E. +mobile: +1 213 366-2349 +pager: +1 213 247-2108 +roomNumber: 8253 +manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com +secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Wilow Veloz,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Wilow Veloz +sn: Veloz +description: This is Wilow Veloz's description +facsimileTelephoneNumber: +1 415 245-1669 +l: Sunnyvale +ou: Payroll +postalAddress: Payroll$Sunnyvale +telephoneNumber: +1 415 567-3346 +title: Chief Payroll Mascot +userPassword: Password1 +uid: VelozW +givenName: Wilow +mail: VelozW@a58a307053124302a6ca25cc3c4fe9ad.bitwarden.com +carLicense: QVNIO8 +departmentNumber: 7235 +employeeType: Contract +homePhone: +1 415 206-4371 +initials: W. V. +mobile: +1 415 514-7227 +pager: +1 415 789-9554 +roomNumber: 8056 +manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Grayce Dunnion,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Grayce Dunnion +sn: Dunnion +description: This is Grayce Dunnion's description +facsimileTelephoneNumber: +1 213 538-1964 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 213 844-7334 +title: Chief Management Sales Rep +userPassword: Password1 +uid: DunnionG +givenName: Grayce +mail: DunnionG@fc6babf36ff04b1ba708df129305676b.bitwarden.com +carLicense: Y8SR2T +departmentNumber: 9913 +employeeType: Employee +homePhone: +1 213 824-5505 +initials: G. D. +mobile: +1 213 369-8419 +pager: +1 213 916-9611 +roomNumber: 9358 +manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Starlin Schrader,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Starlin Schrader +sn: Schrader +description: This is Starlin Schrader's description +facsimileTelephoneNumber: +1 510 501-2009 +l: Milpitas +ou: Janitorial +postalAddress: Janitorial$Milpitas +telephoneNumber: +1 510 310-5809 +title: Junior Janitorial Pinhead +userPassword: Password1 +uid: SchradeS +givenName: Starlin +mail: SchradeS@d0d4dffbb82e4dbdbf12aa7aeb40f542.bitwarden.com +carLicense: L12RJC +departmentNumber: 3639 +employeeType: Normal +homePhone: +1 510 895-1056 +initials: S. S. +mobile: +1 510 594-4702 +pager: +1 510 881-1396 +roomNumber: 8966 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com + +dn: cn=Desire Nagle,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Desire Nagle +sn: Nagle +description: This is Desire Nagle's description +facsimileTelephoneNumber: +1 206 502-8543 +l: Cambridge +ou: Janitorial +postalAddress: Janitorial$Cambridge +telephoneNumber: +1 206 844-8889 +title: Associate Janitorial Madonna +userPassword: Password1 +uid: NagleD +givenName: Desire +mail: NagleD@fdf7c005242c47b4bd750584e7c3c19c.bitwarden.com +carLicense: HLRQ99 +departmentNumber: 2443 +employeeType: Employee +homePhone: +1 206 124-6500 +initials: D. N. +mobile: +1 206 182-7327 +pager: +1 206 672-8811 +roomNumber: 9211 +manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Shaylah Haertel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Shaylah Haertel +sn: Haertel +description: This is Shaylah Haertel's description +facsimileTelephoneNumber: +1 818 157-3854 +l: Fremont +ou: Administrative +postalAddress: Administrative$Fremont +telephoneNumber: +1 818 180-1240 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: HaertelS +givenName: Shaylah +mail: HaertelS@cb3d55c1f17a445fad106ff05cef5824.bitwarden.com +carLicense: KFPC7H +departmentNumber: 8369 +employeeType: Normal +homePhone: +1 818 819-4067 +initials: S. H. +mobile: +1 818 961-3626 +pager: +1 818 910-9807 +roomNumber: 8773 +manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tomi LaFargue,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tomi LaFargue +sn: LaFargue +description: This is Tomi LaFargue's description +facsimileTelephoneNumber: +1 408 517-3025 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 408 456-6432 +title: Associate Management Vice President +userPassword: Password1 +uid: LaFarguT +givenName: Tomi +mail: LaFarguT@47b3a42002e74101b1c82f87517bcbef.bitwarden.com +carLicense: WM3Y1W +departmentNumber: 5861 +employeeType: Contract +homePhone: +1 408 466-1784 +initials: T. L. +mobile: +1 408 454-4824 +pager: +1 408 102-3647 +roomNumber: 9946 +manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Willard Kammerer,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Willard Kammerer +sn: Kammerer +description: This is Willard Kammerer's description +facsimileTelephoneNumber: +1 510 728-8286 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 510 335-9481 +title: Supreme Peons Manager +userPassword: Password1 +uid: KammereW +givenName: Willard +mail: KammereW@1ee81678c18a401888dd91f025f34959.bitwarden.com +carLicense: 03UAC2 +departmentNumber: 4865 +employeeType: Contract +homePhone: +1 510 816-3785 +initials: W. K. +mobile: +1 510 741-9257 +pager: +1 510 375-5541 +roomNumber: 8011 +manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Tyronda Wippel,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tyronda Wippel +sn: Wippel +description: This is Tyronda Wippel's description +facsimileTelephoneNumber: +1 206 201-3727 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 206 134-6357 +title: Chief Administrative Mascot +userPassword: Password1 +uid: WippelT +givenName: Tyronda +mail: WippelT@4ec22cc100774410b5e1902a4221791b.bitwarden.com +carLicense: 7VMFD4 +departmentNumber: 6845 +employeeType: Employee +homePhone: +1 206 569-6835 +initials: T. W. +mobile: +1 206 785-8568 +pager: +1 206 839-7743 +roomNumber: 8002 +manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carmina Fulmer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carmina Fulmer +sn: Fulmer +description: This is Carmina Fulmer's description +facsimileTelephoneNumber: +1 804 611-2967 +l: Orem +ou: Management +postalAddress: Management$Orem +telephoneNumber: +1 804 633-6806 +title: Supreme Management Sales Rep +userPassword: Password1 +uid: FulmerC +givenName: Carmina +mail: FulmerC@31bdf3f083274a9a823bbf5bbd24461a.bitwarden.com +carLicense: NVD9DK +departmentNumber: 1749 +employeeType: Normal +homePhone: +1 804 664-9789 +initials: C. F. +mobile: +1 804 289-4256 +pager: +1 804 867-8375 +roomNumber: 8059 +manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tricord Mullinix +sn: Mullinix +description: This is Tricord Mullinix's description +facsimileTelephoneNumber: +1 213 623-9339 +l: Menlo Park +ou: Product Testing +postalAddress: Product Testing$Menlo Park +telephoneNumber: +1 213 956-7305 +title: Chief Product Testing Visionary +userPassword: Password1 +uid: MulliniT +givenName: Tricord +mail: MulliniT@14182a5bfd714b33b79ce62ac2db69ad.bitwarden.com +carLicense: TSEQ6D +departmentNumber: 2554 +employeeType: Employee +homePhone: +1 213 570-8765 +initials: T. M. +mobile: +1 213 919-1702 +pager: +1 213 606-4465 +roomNumber: 9228 +manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com +secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: LyKhanh Sumpter +sn: Sumpter +description: This is LyKhanh Sumpter's description +facsimileTelephoneNumber: +1 818 979-5313 +l: Redmond +ou: Peons +postalAddress: Peons$Redmond +telephoneNumber: +1 818 192-3676 +title: Junior Peons Assistant +userPassword: Password1 +uid: SumpterL +givenName: LyKhanh +mail: SumpterL@48f0936a82dc447d9d8007505168b4a9.bitwarden.com +carLicense: GXL8E3 +departmentNumber: 3331 +employeeType: Normal +homePhone: +1 818 873-5120 +initials: L. S. +mobile: +1 818 736-6149 +pager: +1 818 633-5188 +roomNumber: 9329 +manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Sukey Sato,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Sukey Sato +sn: Sato +description: This is Sukey Sato's description +facsimileTelephoneNumber: +1 206 328-6759 +l: Armonk +ou: Human Resources +postalAddress: Human Resources$Armonk +telephoneNumber: +1 206 172-8138 +title: Chief Human Resources Dictator +userPassword: Password1 +uid: SatoS +givenName: Sukey +mail: SatoS@c13dcfb6eda14d3a8fe16fc4279da963.bitwarden.com +carLicense: GU3LBQ +departmentNumber: 4589 +employeeType: Contract +homePhone: +1 206 165-4259 +initials: S. S. +mobile: +1 206 985-6366 +pager: +1 206 645-6537 +roomNumber: 9869 +manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Coletta Malkiewicz +sn: Malkiewicz +description: This is Coletta Malkiewicz's description +facsimileTelephoneNumber: +1 510 764-5623 +l: Santa Clara +ou: Peons +postalAddress: Peons$Santa Clara +telephoneNumber: +1 510 515-1259 +title: Chief Peons Pinhead +userPassword: Password1 +uid: MalkiewC +givenName: Coletta +mail: MalkiewC@10a46cb8875644479396c1c5e3228c3c.bitwarden.com +carLicense: UVSG6Y +departmentNumber: 6358 +employeeType: Employee +homePhone: +1 510 451-9487 +initials: C. M. +mobile: +1 510 514-2516 +pager: +1 510 716-3390 +roomNumber: 9947 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lawrence Perrella,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lawrence Perrella +sn: Perrella +description: This is Lawrence Perrella's description +facsimileTelephoneNumber: +1 408 163-4174 +l: Orem +ou: Peons +postalAddress: Peons$Orem +telephoneNumber: +1 408 258-6870 +title: Junior Peons Artist +userPassword: Password1 +uid: PerrellL +givenName: Lawrence +mail: PerrellL@95a30cb6b6df4f6cbb4f3a7dd5e82fb6.bitwarden.com +carLicense: XMQVH0 +departmentNumber: 6446 +employeeType: Contract +homePhone: +1 408 775-4970 +initials: L. P. +mobile: +1 408 171-1699 +pager: +1 408 226-7564 +roomNumber: 9351 +manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Nathan Trumble,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Nathan Trumble +sn: Trumble +description: This is Nathan Trumble's description +facsimileTelephoneNumber: +1 415 110-8403 +l: Cambridge +ou: Product Development +postalAddress: Product Development$Cambridge +telephoneNumber: +1 415 120-9279 +title: Junior Product Development Assistant +userPassword: Password1 +uid: TrumbleN +givenName: Nathan +mail: TrumbleN@dfa5577bb9624995ab3eb6b74bc12412.bitwarden.com +carLicense: EOT73K +departmentNumber: 7380 +employeeType: Contract +homePhone: +1 415 214-1074 +initials: N. T. +mobile: +1 415 389-2806 +pager: +1 415 651-4210 +roomNumber: 8292 +manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: ShenZhi Stratton +sn: Stratton +description: This is ShenZhi Stratton's description +facsimileTelephoneNumber: +1 415 635-1785 +l: Redmond +ou: Human Resources +postalAddress: Human Resources$Redmond +telephoneNumber: +1 415 873-6807 +title: Junior Human Resources Architect +userPassword: Password1 +uid: StrattoS +givenName: ShenZhi +mail: StrattoS@683112f18e2b4c49865ce3f726ce15d9.bitwarden.com +carLicense: TOIMJ1 +departmentNumber: 6114 +employeeType: Normal +homePhone: +1 415 731-1669 +initials: S. S. +mobile: +1 415 774-8750 +pager: +1 415 405-6514 +roomNumber: 9377 +manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Noslab Gribbons,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Noslab Gribbons +sn: Gribbons +description: This is Noslab Gribbons's description +facsimileTelephoneNumber: +1 415 943-8706 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 415 132-5400 +title: Chief Product Development Dictator +userPassword: Password1 +uid: GribbonN +givenName: Noslab +mail: GribbonN@939ff1674a5f4554858a2fd6d59c6ec0.bitwarden.com +carLicense: 03F6WK +departmentNumber: 1869 +employeeType: Contract +homePhone: +1 415 897-1958 +initials: N. G. +mobile: +1 415 109-2096 +pager: +1 415 139-6281 +roomNumber: 9968 +manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alleen Czarnecki +sn: Czarnecki +description: This is Alleen Czarnecki's description +facsimileTelephoneNumber: +1 818 377-2124 +l: Milpitas +ou: Administrative +postalAddress: Administrative$Milpitas +telephoneNumber: +1 818 583-6612 +title: Associate Administrative Sales Rep +userPassword: Password1 +uid: CzarnecA +givenName: Alleen +mail: CzarnecA@33f3610924fd40f8baab137780c1a3cc.bitwarden.com +carLicense: 5NHRGP +departmentNumber: 5084 +employeeType: Contract +homePhone: +1 818 907-4162 +initials: A. C. +mobile: +1 818 734-9806 +pager: +1 818 649-3013 +roomNumber: 8410 +manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Chandra Pawlikowski +sn: Pawlikowski +description: This is Chandra Pawlikowski's description +facsimileTelephoneNumber: +1 804 483-1317 +l: San Francisco +ou: Peons +postalAddress: Peons$San Francisco +telephoneNumber: +1 804 757-5512 +title: Associate Peons Visionary +userPassword: Password1 +uid: PawlikoC +givenName: Chandra +mail: PawlikoC@8415106c9bc644ca88df9b8987cb1aef.bitwarden.com +carLicense: N1KHDD +departmentNumber: 2850 +employeeType: Normal +homePhone: +1 804 799-9838 +initials: C. P. +mobile: +1 804 587-1022 +pager: +1 804 611-9121 +roomNumber: 9431 +manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com + +dn: cn=Alayne Jurman,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Alayne Jurman +sn: Jurman +description: This is Alayne Jurman's description +facsimileTelephoneNumber: +1 206 614-9978 +l: Palo Alto +ou: Peons +postalAddress: Peons$Palo Alto +telephoneNumber: +1 206 126-8160 +title: Associate Peons Writer +userPassword: Password1 +uid: JurmanA +givenName: Alayne +mail: JurmanA@6a21fb77585b45b89d50ed136958d009.bitwarden.com +carLicense: ACBF4W +departmentNumber: 3004 +employeeType: Employee +homePhone: +1 206 276-3416 +initials: A. J. +mobile: +1 206 754-8086 +pager: +1 206 307-9968 +roomNumber: 9764 +manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Ashlee Lamey,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Ashlee Lamey +sn: Lamey +description: This is Ashlee Lamey's description +facsimileTelephoneNumber: +1 213 237-8155 +l: Redwood Shores +ou: Peons +postalAddress: Peons$Redwood Shores +telephoneNumber: +1 213 751-4119 +title: Junior Peons Fellow +userPassword: Password1 +uid: LameyA +givenName: Ashlee +mail: LameyA@2ea5cd05f7bb4e668e89ea0ce9ab618b.bitwarden.com +carLicense: 9Y3LNJ +departmentNumber: 3621 +employeeType: Contract +homePhone: +1 213 706-5357 +initials: A. L. +mobile: +1 213 370-4014 +pager: +1 213 329-9828 +roomNumber: 8548 +manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com + +dn: cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zena Lakshminarayan +sn: Lakshminarayan +description: This is Zena Lakshminarayan's description +facsimileTelephoneNumber: +1 818 146-4633 +l: Milpitas +ou: Product Development +postalAddress: Product Development$Milpitas +telephoneNumber: +1 818 990-2628 +title: Junior Product Development Writer +userPassword: Password1 +uid: LakshmiZ +givenName: Zena +mail: LakshmiZ@2e06903f00cc4bf8844eeda994fe2f9b.bitwarden.com +carLicense: JXRFJK +departmentNumber: 9724 +employeeType: Employee +homePhone: +1 818 841-7165 +initials: Z. L. +mobile: +1 818 470-2940 +pager: +1 818 210-9277 +roomNumber: 8055 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Miquela Gilles,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Miquela Gilles +sn: Gilles +description: This is Miquela Gilles's description +facsimileTelephoneNumber: +1 510 736-8474 +l: Alameda +ou: Peons +postalAddress: Peons$Alameda +telephoneNumber: +1 510 146-9220 +title: Junior Peons Developer +userPassword: Password1 +uid: GillesM +givenName: Miquela +mail: GillesM@87d2a0e0ce5644aa904b7d1121de84a3.bitwarden.com +carLicense: TE1OF0 +departmentNumber: 4690 +employeeType: Contract +homePhone: +1 510 121-7099 +initials: M. G. +mobile: +1 510 916-6777 +pager: +1 510 282-6450 +roomNumber: 9819 +manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com +secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Arlana Ghani,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Arlana Ghani +sn: Ghani +description: This is Arlana Ghani's description +facsimileTelephoneNumber: +1 206 792-9054 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 206 839-7272 +title: Junior Management Warrior +userPassword: Password1 +uid: GhaniA +givenName: Arlana +mail: GhaniA@5464c7892e2c49b9ab8b77fcfa248401.bitwarden.com +carLicense: XL9RBN +departmentNumber: 3926 +employeeType: Contract +homePhone: +1 206 778-3747 +initials: A. G. +mobile: +1 206 673-9027 +pager: +1 206 679-5050 +roomNumber: 8525 +manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com + +dn: cn=Avinash Rospars,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Avinash Rospars +sn: Rospars +description: This is Avinash Rospars's description +facsimileTelephoneNumber: +1 213 622-4998 +l: San Jose +ou: Product Development +postalAddress: Product Development$San Jose +telephoneNumber: +1 213 852-4803 +title: Supreme Product Development Evangelist +userPassword: Password1 +uid: RosparsA +givenName: Avinash +mail: RosparsA@d9e32d7c83eb4ccf8004a41c9874f6a2.bitwarden.com +carLicense: V2M5OL +departmentNumber: 8472 +employeeType: Normal +homePhone: +1 213 345-4186 +initials: A. R. +mobile: +1 213 821-4088 +pager: +1 213 185-9126 +roomNumber: 9952 +manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Raman Reporting,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Raman Reporting +sn: Reporting +description: This is Raman Reporting's description +facsimileTelephoneNumber: +1 818 648-2666 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 818 856-9774 +title: Junior Management Artist +userPassword: Password1 +uid: ReportiR +givenName: Raman +mail: ReportiR@58d046473fe24d0d8bf6f510239a1102.bitwarden.com +carLicense: NK9ROO +departmentNumber: 1094 +employeeType: Normal +homePhone: +1 818 980-2427 +initials: R. R. +mobile: +1 818 513-7784 +pager: +1 818 701-1947 +roomNumber: 8218 +manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Akemi Abdulla +sn: Abdulla +description: This is Akemi Abdulla's description +facsimileTelephoneNumber: +1 510 442-5114 +l: San Mateo +ou: Product Testing +postalAddress: Product Testing$San Mateo +telephoneNumber: +1 510 189-5850 +title: Supreme Product Testing Madonna +userPassword: Password1 +uid: AbdullaA +givenName: Akemi +mail: AbdullaA@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com +carLicense: 9HHTSE +departmentNumber: 8081 +employeeType: Normal +homePhone: +1 510 163-2507 +initials: A. A. +mobile: +1 510 241-4917 +pager: +1 510 299-3291 +roomNumber: 9670 +manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Vince Dallal,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Vince Dallal +sn: Dallal +description: This is Vince Dallal's description +facsimileTelephoneNumber: +1 510 684-9479 +l: San Mateo +ou: Janitorial +postalAddress: Janitorial$San Mateo +telephoneNumber: +1 510 392-5237 +title: Master Janitorial Architect +userPassword: Password1 +uid: DallalV +givenName: Vince +mail: DallalV@75bd7d8bfac045f4b199b40359d5079a.bitwarden.com +carLicense: ESUK3H +departmentNumber: 5471 +employeeType: Contract +homePhone: +1 510 738-4108 +initials: V. D. +mobile: +1 510 214-7285 +pager: +1 510 664-6308 +roomNumber: 8047 +manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com + +dn: cn=Leanne Gorfine,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Leanne Gorfine +sn: Gorfine +description: This is Leanne Gorfine's description +facsimileTelephoneNumber: +1 818 265-2772 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 818 463-1781 +title: Associate Product Development Artist +userPassword: Password1 +uid: GorfineL +givenName: Leanne +mail: GorfineL@c4b901cf01964b3f995f83f754a51496.bitwarden.com +carLicense: NX2U4N +departmentNumber: 5026 +employeeType: Normal +homePhone: +1 818 336-7277 +initials: L. G. +mobile: +1 818 104-2897 +pager: +1 818 661-4233 +roomNumber: 8585 +manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Satyajit Bourbonnais +sn: Bourbonnais +description: This is Satyajit Bourbonnais's description +facsimileTelephoneNumber: +1 818 870-1334 +l: Sunnyvale +ou: Product Testing +postalAddress: Product Testing$Sunnyvale +telephoneNumber: +1 818 251-3509 +title: Master Product Testing Artist +userPassword: Password1 +uid: BourbonS +givenName: Satyajit +mail: BourbonS@dce637b43f194588ba44f478eabb0b1d.bitwarden.com +carLicense: LCE309 +departmentNumber: 3105 +employeeType: Employee +homePhone: +1 818 268-3769 +initials: S. B. +mobile: +1 818 280-1774 +pager: +1 818 516-7077 +roomNumber: 9627 +manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Corinna Bashyam,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Corinna Bashyam +sn: Bashyam +description: This is Corinna Bashyam's description +facsimileTelephoneNumber: +1 818 906-7811 +l: San Jose +ou: Payroll +postalAddress: Payroll$San Jose +telephoneNumber: +1 818 189-8362 +title: Supreme Payroll Artist +userPassword: Password1 +uid: BashyamC +givenName: Corinna +mail: BashyamC@537a7fb8e8084a50ad524dcf8366437e.bitwarden.com +carLicense: 86WLBJ +departmentNumber: 6860 +employeeType: Contract +homePhone: +1 818 804-3996 +initials: C. B. +mobile: +1 818 142-6873 +pager: +1 818 341-1587 +roomNumber: 9424 +manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Carlyn Braaksma +sn: Braaksma +description: This is Carlyn Braaksma's description +facsimileTelephoneNumber: +1 510 110-8335 +l: Menlo Park +ou: Payroll +postalAddress: Payroll$Menlo Park +telephoneNumber: +1 510 540-9328 +title: Master Payroll Artist +userPassword: Password1 +uid: BraaksmC +givenName: Carlyn +mail: BraaksmC@971b6275e2eb43e286f57ac3cf73eb02.bitwarden.com +carLicense: UCIIR3 +departmentNumber: 4334 +employeeType: Contract +homePhone: +1 510 281-9465 +initials: C. B. +mobile: +1 510 554-1840 +pager: +1 510 929-8543 +roomNumber: 9717 +manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Etta Medlin,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Etta Medlin +sn: Medlin +description: This is Etta Medlin's description +facsimileTelephoneNumber: +1 206 697-6267 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 206 711-2252 +title: Junior Payroll Engineer +userPassword: Password1 +uid: MedlinE +givenName: Etta +mail: MedlinE@de77b93d37dd4a028afd3b2ff785ef86.bitwarden.com +carLicense: 5KKNHH +departmentNumber: 8596 +employeeType: Employee +homePhone: +1 206 810-9232 +initials: E. M. +mobile: +1 206 405-6532 +pager: +1 206 897-8035 +roomNumber: 8148 +manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Robinia Hammonds +sn: Hammonds +description: This is Robinia Hammonds's description +facsimileTelephoneNumber: +1 510 384-9822 +l: Orem +ou: Product Testing +postalAddress: Product Testing$Orem +telephoneNumber: +1 510 288-4510 +title: Master Product Testing Madonna +userPassword: Password1 +uid: HammondR +givenName: Robinia +mail: HammondR@3d8456e2419f4f54a124d2319bee4b8e.bitwarden.com +carLicense: 61OGQU +departmentNumber: 6369 +employeeType: Employee +homePhone: +1 510 709-8239 +initials: R. H. +mobile: +1 510 464-3424 +pager: +1 510 130-9049 +roomNumber: 9660 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zsazsa Sebeh +sn: Sebeh +description: This is Zsazsa Sebeh's description +facsimileTelephoneNumber: +1 415 616-4827 +l: Santa Clara +ou: Administrative +postalAddress: Administrative$Santa Clara +telephoneNumber: +1 415 383-2373 +title: Associate Administrative Consultant +userPassword: Password1 +uid: SebehZ +givenName: Zsazsa +mail: SebehZ@1c7214ddcee648aeb2dd535a7efb20fc.bitwarden.com +carLicense: NKM1I4 +departmentNumber: 8488 +employeeType: Normal +homePhone: +1 415 689-9052 +initials: Z. S. +mobile: +1 415 349-9869 +pager: +1 415 689-6650 +roomNumber: 8926 +manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Stew Chopowick,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Stew Chopowick +sn: Chopowick +description: This is Stew Chopowick's description +facsimileTelephoneNumber: +1 213 533-3216 +l: Redwood Shores +ou: Administrative +postalAddress: Administrative$Redwood Shores +telephoneNumber: +1 213 470-1853 +title: Junior Administrative Artist +userPassword: Password1 +uid: ChopowiS +givenName: Stew +mail: ChopowiS@7179efeeba4d4c0496c30132c2185e2b.bitwarden.com +carLicense: VVVOD2 +departmentNumber: 1805 +employeeType: Employee +homePhone: +1 213 452-5521 +initials: S. C. +mobile: +1 213 421-6978 +pager: +1 213 482-1881 +roomNumber: 9486 +manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brigitta Ribaldo +sn: Ribaldo +description: This is Brigitta Ribaldo's description +facsimileTelephoneNumber: +1 206 690-2261 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 206 979-5703 +title: Junior Administrative Stooge +userPassword: Password1 +uid: RibaldoB +givenName: Brigitta +mail: RibaldoB@0bf16d212dca48d58b5ba2e7e2475978.bitwarden.com +carLicense: 8HCE43 +departmentNumber: 4431 +employeeType: Normal +homePhone: +1 206 941-4343 +initials: B. R. +mobile: +1 206 488-3243 +pager: +1 206 702-9025 +roomNumber: 8144 +manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Josie Clysdale,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Josie Clysdale +sn: Clysdale +description: This is Josie Clysdale's description +facsimileTelephoneNumber: +1 818 289-8222 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 818 247-9493 +title: Supreme Administrative Warrior +userPassword: Password1 +uid: ClysdalJ +givenName: Josie +mail: ClysdalJ@2d39ed714c62438fae50357ee6eb38cf.bitwarden.com +carLicense: LS7WPA +departmentNumber: 9228 +employeeType: Normal +homePhone: +1 818 418-8157 +initials: J. C. +mobile: +1 818 326-2619 +pager: +1 818 779-7498 +roomNumber: 9603 +manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com + +dn: cn=Moyna Rolph,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Moyna Rolph +sn: Rolph +description: This is Moyna Rolph's description +facsimileTelephoneNumber: +1 408 824-6843 +l: San Francisco +ou: Payroll +postalAddress: Payroll$San Francisco +telephoneNumber: +1 408 644-3441 +title: Junior Payroll Architect +userPassword: Password1 +uid: RolphM +givenName: Moyna +mail: RolphM@50d89f8e16e348cfb044b13e46694d6c.bitwarden.com +carLicense: OF76U2 +departmentNumber: 7190 +employeeType: Normal +homePhone: +1 408 699-6960 +initials: M. R. +mobile: +1 408 508-6592 +pager: +1 408 300-9293 +roomNumber: 9795 +manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Roze Wiebe,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Roze Wiebe +sn: Wiebe +description: This is Roze Wiebe's description +facsimileTelephoneNumber: +1 818 222-3389 +l: Cambridge +ou: Human Resources +postalAddress: Human Resources$Cambridge +telephoneNumber: +1 818 955-9282 +title: Master Human Resources Sales Rep +userPassword: Password1 +uid: WiebeR +givenName: Roze +mail: WiebeR@c82bc1c119194cf1a43f9559e17d2471.bitwarden.com +carLicense: YE7SXM +departmentNumber: 7309 +employeeType: Employee +homePhone: +1 818 780-6171 +initials: R. W. +mobile: +1 818 572-4316 +pager: +1 818 881-4097 +roomNumber: 9126 +manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Khai Habelrih,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Khai Habelrih +sn: Habelrih +description: This is Khai Habelrih's description +facsimileTelephoneNumber: +1 510 616-3399 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 510 606-8318 +title: Associate Administrative Fellow +userPassword: Password1 +uid: HabelriK +givenName: Khai +mail: HabelriK@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com +carLicense: FO4RDN +departmentNumber: 7508 +employeeType: Employee +homePhone: +1 510 420-7111 +initials: K. H. +mobile: +1 510 605-3841 +pager: +1 510 118-3456 +roomNumber: 9587 +manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=How Zisu,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: How Zisu +sn: Zisu +description: This is How Zisu's description +facsimileTelephoneNumber: +1 408 355-8972 +l: Redmond +ou: Janitorial +postalAddress: Janitorial$Redmond +telephoneNumber: +1 408 546-5710 +title: Master Janitorial Pinhead +userPassword: Password1 +uid: ZisuH +givenName: How +mail: ZisuH@bdcc53d4f0d44402a52a4e37b6a55cb6.bitwarden.com +carLicense: 2VWPAP +departmentNumber: 2467 +employeeType: Contract +homePhone: +1 408 841-3167 +initials: H. Z. +mobile: +1 408 675-3840 +pager: +1 408 312-3036 +roomNumber: 8362 +manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Manimozhi Waddick +sn: Waddick +description: This is Manimozhi Waddick's description +facsimileTelephoneNumber: +1 213 628-2960 +l: Redmond +ou: Payroll +postalAddress: Payroll$Redmond +telephoneNumber: +1 213 437-6864 +title: Supreme Payroll Admin +userPassword: Password1 +uid: WaddickM +givenName: Manimozhi +mail: WaddickM@3d584c1804c549129f374b5c39437b16.bitwarden.com +carLicense: F8YQGR +departmentNumber: 2833 +employeeType: Contract +homePhone: +1 213 961-4318 +initials: M. W. +mobile: +1 213 660-4260 +pager: +1 213 930-5067 +roomNumber: 8491 +manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Morena Zeggil,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Morena Zeggil +sn: Zeggil +description: This is Morena Zeggil's description +facsimileTelephoneNumber: +1 818 112-2880 +l: Orem +ou: Product Development +postalAddress: Product Development$Orem +telephoneNumber: +1 818 397-1996 +title: Junior Product Development Admin +userPassword: Password1 +uid: ZeggilM +givenName: Morena +mail: ZeggilM@9b4c46b33b054223bd92a713c0feadad.bitwarden.com +carLicense: 2LETXW +departmentNumber: 3635 +employeeType: Employee +homePhone: +1 818 408-2461 +initials: M. Z. +mobile: +1 818 640-3632 +pager: +1 818 665-4148 +roomNumber: 9954 +manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com + +dn: cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Maitilde Ricketts +sn: Ricketts +description: This is Maitilde Ricketts's description +facsimileTelephoneNumber: +1 415 247-2259 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 415 634-7542 +title: Associate Product Testing Vice President +userPassword: Password1 +uid: RickettM +givenName: Maitilde +mail: RickettM@f07caf5199104113b8565ebc43aef936.bitwarden.com +carLicense: H28J0X +departmentNumber: 4776 +employeeType: Employee +homePhone: +1 415 385-3446 +initials: M. R. +mobile: +1 415 945-4773 +pager: +1 415 845-2919 +roomNumber: 9907 +manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tayeb Castonguay +sn: Castonguay +description: This is Tayeb Castonguay's description +facsimileTelephoneNumber: +1 510 389-3108 +l: Armonk +ou: Administrative +postalAddress: Administrative$Armonk +telephoneNumber: +1 510 837-4463 +title: Junior Administrative Stooge +userPassword: Password1 +uid: CastongT +givenName: Tayeb +mail: CastongT@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com +carLicense: KX9KMT +departmentNumber: 1442 +employeeType: Normal +homePhone: +1 510 155-4378 +initials: T. C. +mobile: +1 510 549-3955 +pager: +1 510 726-1636 +roomNumber: 9378 +manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com +secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Aprilette Iarocci +sn: Iarocci +description: This is Aprilette Iarocci's description +facsimileTelephoneNumber: +1 213 432-8530 +l: Orem +ou: Janitorial +postalAddress: Janitorial$Orem +telephoneNumber: +1 213 208-6105 +title: Master Janitorial Admin +userPassword: Password1 +uid: IarocciA +givenName: Aprilette +mail: IarocciA@c5e55ae911a448dbaf1704a805131e06.bitwarden.com +carLicense: R85MMV +departmentNumber: 8056 +employeeType: Contract +homePhone: +1 213 623-2233 +initials: A. I. +mobile: +1 213 596-8699 +pager: +1 213 495-7877 +roomNumber: 9814 +manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com + +dn: cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Schouwen Boeyen +sn: Boeyen +description: This is Schouwen Boeyen's description +facsimileTelephoneNumber: +1 213 575-8138 +l: Palo Alto +ou: Payroll +postalAddress: Payroll$Palo Alto +telephoneNumber: +1 213 826-2820 +title: Junior Payroll Assistant +userPassword: Password1 +uid: BoeyenS +givenName: Schouwen +mail: BoeyenS@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com +carLicense: 21J80U +departmentNumber: 7374 +employeeType: Contract +homePhone: +1 213 315-8834 +initials: S. B. +mobile: +1 213 431-9974 +pager: +1 213 413-4794 +roomNumber: 8454 +manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com +secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Zhanna Gaconnier +sn: Gaconnier +description: This is Zhanna Gaconnier's description +facsimileTelephoneNumber: +1 408 616-2032 +l: Sunnyvale +ou: Administrative +postalAddress: Administrative$Sunnyvale +telephoneNumber: +1 408 669-9102 +title: Master Administrative Punk +userPassword: Password1 +uid: GaconniZ +givenName: Zhanna +mail: GaconniZ@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com +carLicense: 7WLE6I +departmentNumber: 1273 +employeeType: Contract +homePhone: +1 408 113-2415 +initials: Z. G. +mobile: +1 408 885-3280 +pager: +1 408 277-5947 +roomNumber: 9795 +manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Dimitrios Schanne +sn: Schanne +description: This is Dimitrios Schanne's description +facsimileTelephoneNumber: +1 818 946-7359 +l: Alameda +ou: Administrative +postalAddress: Administrative$Alameda +telephoneNumber: +1 818 524-5303 +title: Chief Administrative Czar +userPassword: Password1 +uid: SchanneD +givenName: Dimitrios +mail: SchanneD@77df1d4a30ab443892398806ba3c7576.bitwarden.com +carLicense: 53BHKO +departmentNumber: 1257 +employeeType: Normal +homePhone: +1 818 356-3137 +initials: D. S. +mobile: +1 818 636-5221 +pager: +1 818 614-8361 +roomNumber: 8944 +manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Mathew Jarvie,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Mathew Jarvie +sn: Jarvie +description: This is Mathew Jarvie's description +facsimileTelephoneNumber: +1 408 954-4696 +l: Fremont +ou: Peons +postalAddress: Peons$Fremont +telephoneNumber: +1 408 405-6425 +title: Chief Peons Mascot +userPassword: Password1 +uid: JarvieM +givenName: Mathew +mail: JarvieM@75fda0f549234930a497d29af4b3d736.bitwarden.com +carLicense: X6K9AV +departmentNumber: 9732 +employeeType: Normal +homePhone: +1 408 463-3730 +initials: M. J. +mobile: +1 408 214-1772 +pager: +1 408 789-6387 +roomNumber: 8465 +manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Joelle Eason,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Joelle Eason +sn: Eason +description: This is Joelle Eason's description +facsimileTelephoneNumber: +1 213 720-1407 +l: Redwood Shores +ou: Product Development +postalAddress: Product Development$Redwood Shores +telephoneNumber: +1 213 316-9301 +title: Chief Product Development President +userPassword: Password1 +uid: EasonJ +givenName: Joelle +mail: EasonJ@1f78de795d09437e9e2f587d718715dc.bitwarden.com +carLicense: UR7TDT +departmentNumber: 1695 +employeeType: Normal +homePhone: +1 213 558-8578 +initials: J. E. +mobile: +1 213 836-7417 +pager: +1 213 723-2848 +roomNumber: 9579 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Angil Dungan,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Angil Dungan +sn: Dungan +description: This is Angil Dungan's description +facsimileTelephoneNumber: +1 415 130-7842 +l: San Francisco +ou: Management +postalAddress: Management$San Francisco +telephoneNumber: +1 415 225-5775 +title: Junior Management Figurehead +userPassword: Password1 +uid: DunganA +givenName: Angil +mail: DunganA@4e65ebf97c5c4a7e80cecb934226e7a6.bitwarden.com +carLicense: IE7T9K +departmentNumber: 4881 +employeeType: Contract +homePhone: +1 415 394-9896 +initials: A. D. +mobile: +1 415 316-4128 +pager: +1 415 714-4537 +roomNumber: 8605 +manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com + +dn: cn=Geraldine Landaveri,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Geraldine Landaveri +sn: Landaveri +description: This is Geraldine Landaveri's description +facsimileTelephoneNumber: +1 206 601-3395 +l: Menlo Park +ou: Peons +postalAddress: Peons$Menlo Park +telephoneNumber: +1 206 151-2672 +title: Junior Peons Evangelist +userPassword: Password1 +uid: LandaveG +givenName: Geraldine +mail: LandaveG@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com +carLicense: HUS3JA +departmentNumber: 4293 +employeeType: Employee +homePhone: +1 206 761-1117 +initials: G. L. +mobile: +1 206 290-9287 +pager: +1 206 790-4432 +roomNumber: 8581 +manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com + +dn: cn=Madeline Congdon,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madeline Congdon +sn: Congdon +description: This is Madeline Congdon's description +facsimileTelephoneNumber: +1 415 889-3637 +l: San Jose +ou: Administrative +postalAddress: Administrative$San Jose +telephoneNumber: +1 415 855-6841 +title: Supreme Administrative Technician +userPassword: Password1 +uid: CongdonM +givenName: Madeline +mail: CongdonM@a89e7ae3165749939a17b64967946632.bitwarden.com +carLicense: OQHR71 +departmentNumber: 7230 +employeeType: Contract +homePhone: +1 415 174-9809 +initials: M. C. +mobile: +1 415 950-4855 +pager: +1 415 104-3329 +roomNumber: 8691 +manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com +secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Rod Bedford,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Rod Bedford +sn: Bedford +description: This is Rod Bedford's description +facsimileTelephoneNumber: +1 804 704-5899 +l: Redmond +ou: Administrative +postalAddress: Administrative$Redmond +telephoneNumber: +1 804 133-4989 +title: Junior Administrative Warrior +userPassword: Password1 +uid: BedfordR +givenName: Rod +mail: BedfordR@9e2b20abc536451c80331d81dc08fb80.bitwarden.com +carLicense: CBU6U2 +departmentNumber: 3916 +employeeType: Contract +homePhone: +1 804 580-5740 +initials: R. B. +mobile: +1 804 595-7345 +pager: +1 804 395-9750 +roomNumber: 9076 +manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com + +dn: cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Elyssa Shivcharan +sn: Shivcharan +description: This is Elyssa Shivcharan's description +facsimileTelephoneNumber: +1 213 662-5113 +l: Palo Alto +ou: Administrative +postalAddress: Administrative$Palo Alto +telephoneNumber: +1 213 634-5354 +title: Master Administrative Admin +userPassword: Password1 +uid: ShivchaE +givenName: Elyssa +mail: ShivchaE@8131a404a7e44763a5c3195d705b1dc8.bitwarden.com +carLicense: SKFA9M +departmentNumber: 5943 +employeeType: Contract +homePhone: +1 213 201-3978 +initials: E. S. +mobile: +1 213 994-3746 +pager: +1 213 892-4936 +roomNumber: 8672 +manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com + +dn: cn=Eula Steip,ou=Janitorial,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Eula Steip +sn: Steip +description: This is Eula Steip's description +facsimileTelephoneNumber: +1 213 723-2448 +l: San Francisco +ou: Janitorial +postalAddress: Janitorial$San Francisco +telephoneNumber: +1 213 819-3196 +title: Supreme Janitorial Director +userPassword: Password1 +uid: SteipE +givenName: Eula +mail: SteipE@6188569c9fcd404582c5c4a9062e9bc6.bitwarden.com +carLicense: EQQB3G +departmentNumber: 1440 +employeeType: Employee +homePhone: +1 213 855-1365 +initials: E. S. +mobile: +1 213 673-7346 +pager: +1 213 293-2324 +roomNumber: 8898 +manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com + +dn: cn=Lennart Murphin,ou=Human Resources,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Lennart Murphin +sn: Murphin +description: This is Lennart Murphin's description +facsimileTelephoneNumber: +1 804 907-2684 +l: Cupertino +ou: Human Resources +postalAddress: Human Resources$Cupertino +telephoneNumber: +1 804 329-2604 +title: Supreme Human Resources Visionary +userPassword: Password1 +uid: MurphinL +givenName: Lennart +mail: MurphinL@dc4ca8de100a44c98afc7e8972ff5e00.bitwarden.com +carLicense: JA4TAT +departmentNumber: 8746 +employeeType: Contract +homePhone: +1 804 132-2223 +initials: L. M. +mobile: +1 804 112-8333 +pager: +1 804 334-3167 +roomNumber: 9328 +manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com +secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com + +dn: cn=Emmye Reeves,ou=Peons,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Emmye Reeves +sn: Reeves +description: This is Emmye Reeves's description +facsimileTelephoneNumber: +1 510 993-9035 +l: Cupertino +ou: Peons +postalAddress: Peons$Cupertino +telephoneNumber: +1 510 607-1330 +title: Master Peons Dictator +userPassword: Password1 +uid: ReevesE +givenName: Emmye +mail: ReevesE@fa3acd28f4de417999317e1321170d2a.bitwarden.com +carLicense: 4D4GQ8 +departmentNumber: 6550 +employeeType: Contract +homePhone: +1 510 989-6453 +initials: E. R. +mobile: +1 510 112-3770 +pager: +1 510 124-5908 +roomNumber: 8835 +manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com +secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Madel Fiorile,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Madel Fiorile +sn: Fiorile +description: This is Madel Fiorile's description +facsimileTelephoneNumber: +1 510 593-3506 +l: Alameda +ou: Product Development +postalAddress: Product Development$Alameda +telephoneNumber: +1 510 803-2807 +title: Master Product Development Vice President +userPassword: Password1 +uid: FiorileM +givenName: Madel +mail: FiorileM@1487aec275284e49a79c5c4099f33bdb.bitwarden.com +carLicense: 0XE8WA +departmentNumber: 5870 +employeeType: Normal +homePhone: +1 510 812-8086 +initials: M. F. +mobile: +1 510 753-5384 +pager: +1 510 587-4161 +roomNumber: 8102 +manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Hiroki Edwards,ou=Product Development,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Hiroki Edwards +sn: Edwards +description: This is Hiroki Edwards's description +facsimileTelephoneNumber: +1 206 295-1931 +l: Palo Alto +ou: Product Development +postalAddress: Product Development$Palo Alto +telephoneNumber: +1 206 749-9738 +title: Master Product Development Fellow +userPassword: Password1 +uid: EdwardsH +givenName: Hiroki +mail: EdwardsH@40814008a82d4ec3b13f45cb20ad20a4.bitwarden.com +carLicense: SAWBCC +departmentNumber: 6788 +employeeType: Contract +homePhone: +1 206 234-3194 +initials: H. E. +mobile: +1 206 747-8008 +pager: +1 206 437-4523 +roomNumber: 8409 +manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com +secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com + +dn: cn=Douglass Rivest,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Douglass Rivest +sn: Rivest +description: This is Douglass Rivest's description +facsimileTelephoneNumber: +1 510 725-5021 +l: Cupertino +ou: Product Testing +postalAddress: Product Testing$Cupertino +telephoneNumber: +1 510 409-6814 +title: Chief Product Testing Director +userPassword: Password1 +uid: RivestD +givenName: Douglass +mail: RivestD@289444924c894df68dc76e9d8add4066.bitwarden.com +carLicense: 4EXMH0 +departmentNumber: 1697 +employeeType: Employee +homePhone: +1 510 339-7275 +initials: D. R. +mobile: +1 510 564-5706 +pager: +1 510 324-9627 +roomNumber: 9605 +manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com +secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com + +dn: cn=Tammi Kramer,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Tammi Kramer +sn: Kramer +description: This is Tammi Kramer's description +facsimileTelephoneNumber: +1 213 836-9223 +l: Redwood Shores +ou: Management +postalAddress: Management$Redwood Shores +telephoneNumber: +1 213 557-7770 +title: Supreme Management President +userPassword: Password1 +uid: KramerT +givenName: Tammi +mail: KramerT@096bd16e7b9047ef820ae279d36addd1.bitwarden.com +carLicense: EJY23F +departmentNumber: 9208 +employeeType: Employee +homePhone: +1 213 339-6250 +initials: T. K. +mobile: +1 213 492-1142 +pager: +1 213 241-2293 +roomNumber: 9683 +manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com +secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com + +dn: cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Drusy Mahoney +sn: Mahoney +description: This is Drusy Mahoney's description +facsimileTelephoneNumber: +1 510 234-4329 +l: San Jose +ou: Product Testing +postalAddress: Product Testing$San Jose +telephoneNumber: +1 510 102-9518 +title: Master Product Testing Janitor +userPassword: Password1 +uid: MahoneyD +givenName: Drusy +mail: MahoneyD@4583e86a2ba94a5da0ee973472b7f221.bitwarden.com +carLicense: RIKMH3 +departmentNumber: 4306 +employeeType: Employee +homePhone: +1 510 338-3080 +initials: D. M. +mobile: +1 510 373-9532 +pager: +1 510 708-9045 +roomNumber: 9834 +manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com +secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com + +dn: cn=Brunhilda Bezdel,ou=Management,dc=bitwarden, dc=com +changetype: add +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: inetOrgPerson +cn: Brunhilda Bezdel +sn: Bezdel +description: This is Brunhilda Bezdel's description +facsimileTelephoneNumber: +1 206 214-4516 +l: Cambridge +ou: Management +postalAddress: Management$Cambridge +telephoneNumber: +1 206 265-8908 +title: Junior Management Architect +userPassword: Password1 +uid: BezdelB +givenName: Brunhilda +mail: BezdelB@523cb0530fdd41dc8c1ab88cc74839c7.bitwarden.com +carLicense: RYQVOH +departmentNumber: 3139 +employeeType: Normal +homePhone: +1 206 131-8998 +initials: B. B. +mobile: +1 206 570-4849 +pager: +1 206 913-8746 +roomNumber: 8727 +manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com +secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com diff --git a/openldap/user-fixtures-11000.ts b/openldap/user-fixtures-11000.ts new file mode 100644 index 000000000..af43f5a22 --- /dev/null +++ b/openldap/user-fixtures-11000.ts @@ -0,0 +1,77008 @@ +import { Jsonify } from "type-fest"; + +import { UserEntry } from "../src/models/userEntry"; + +// These must match the ldap server seed data in directory.ldif +const data: Jsonify[] = [ + { + deleted: false, + disabled: false, + referenceId: "cn=Edlene Morocz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Edlene Morocz,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoroczE@a11f000faf34447ab870e32427af41fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mimi Mufti,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mimi Mufti,ou=Peons,dc=bitwarden,dc=com", + email: "MuftiM@5ce1ae303e1b4216bb8884b6b93d1c56.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden,dc=com", + email: "PueGilcM@465384ee6f90454f9bd37364e1619114.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elianore Snapper,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elianore Snapper,ou=Payroll,dc=bitwarden,dc=com", + email: "SnapperE@3ffb284a6509471fa1b109716579396c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lujanka Dickford,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lujanka Dickford,ou=Product Development,dc=bitwarden,dc=com", + email: "DickforL@bf3c648ed6d6430384d28d39f0e9c516.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nedi Siegel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nedi Siegel,ou=Product Development,dc=bitwarden,dc=com", + email: "SiegelN@e88c29e7defd4cc4a4f9f6a6238e817f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden,dc=com", + email: "StampflT@3bd17db97361499690e9a4a1c0655d19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Simulation Beswick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Simulation Beswick,ou=Management,dc=bitwarden,dc=com", + email: "BeswickS@e4326b57161d41be8c559868d23f22e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden,dc=com", + email: "BellehuS@5d35d83c207d418fad061afb7ba230bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ola Paulhus,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ola Paulhus,ou=Management,dc=bitwarden,dc=com", + email: "PaulhusO@f2e251b2cd334a149a91e0fa8b8a2220.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yen Sharkey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yen Sharkey,ou=Peons,dc=bitwarden,dc=com", + email: "SharkeyY@f23640bc04e54c3b84040581a3dccada.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden,dc=com", + email: "ShepparC@327fab76e13f495691accc9986f353a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aila Koster,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aila Koster,ou=Peons,dc=bitwarden,dc=com", + email: "KosterA@17b298c689464c4385fe9cac8f40eea6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dacia Colterman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dacia Colterman,ou=Human Resources,dc=bitwarden,dc=com", + email: "ColtermD@752a496e92da43f3852dc6fc94c2530e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helma Bento,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Helma Bento,ou=Product Development,dc=bitwarden,dc=com", + email: "BentoH@be4e574e5026401884f8759627863563.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Holst Issa,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Holst Issa,ou=Human Resources,dc=bitwarden,dc=com", + email: "IssaH@780f09ce8c394dd7859dd4f97439f35d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolina Eu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nicolina Eu,ou=Management,dc=bitwarden,dc=com", + email: "EuN@62b33fdd2568434bbbd48333e7f20ed7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nobuko Nyland,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nobuko Nyland,ou=Payroll,dc=bitwarden,dc=com", + email: "NylandN@d4b6d833d5a74158a2213fcbac0525a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erlene Hargrow,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Erlene Hargrow,ou=Payroll,dc=bitwarden,dc=com", + email: "HargrowE@a48701aa8d324e65a88e2c654b93d791.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aila Mawani,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aila Mawani,ou=Product Testing,dc=bitwarden,dc=com", + email: "MawaniA@67e3aaef7f7f4f1cbd8f4f936f598c13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eula Neault,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eula Neault,ou=Payroll,dc=bitwarden,dc=com", + email: "NeaultE@5f64c8c895024a00af4d42855babab9f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grata Tomacic,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Grata Tomacic,ou=Administrative,dc=bitwarden,dc=com", + email: "TomacicG@79f438ac5a2045c28f6ad4893a72e3bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden,dc=com", + email: "GallingR@520ff39da95249c7ade86c3a64b17f3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden,dc=com", + email: "SkillenM@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Larissa Gillette,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Larissa Gillette,ou=Janitorial,dc=bitwarden,dc=com", + email: "GillettL@8de5f1673aad4b42ac90ff25da206774.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden,dc=com", + email: "VilhanG@8779bd2690ca4e74bc6ad755c1a9e7dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Panch Sziladi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Panch Sziladi,ou=Peons,dc=bitwarden,dc=com", + email: "SziladiP@5ebaa8af105c497682481efce65265ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morley Chadha,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Morley Chadha,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChadhaM@7e56f35864a04d13abbef377d8dec333.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kem Bizga,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kem Bizga,ou=Janitorial,dc=bitwarden,dc=com", + email: "BizgaK@e82a7163f0b1403c8ef83f8850e77a61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmel Vawter,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carmel Vawter,ou=Payroll,dc=bitwarden,dc=com", + email: "VawterC@058f9e396c334403aa5edc7cb4dcabbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corly Tesch,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Corly Tesch,ou=Payroll,dc=bitwarden,dc=com", + email: "TeschC@9e46d49d53a540a080afbdcfa4525ae4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laureen Ladet,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Laureen Ladet,ou=Product Development,dc=bitwarden,dc=com", + email: "LadetL@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnneMarie Sills,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=AnneMarie Sills,ou=Administrative,dc=bitwarden,dc=com", + email: "SillsA@6c5d1cc04bcc4690b1cd5f323caabcec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonny Creamer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sonny Creamer,ou=Janitorial,dc=bitwarden,dc=com", + email: "CreamerS@b88d4b807454424b816f4d4edf5c78f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden,dc=com", + email: "RigsbeeT@69ddae2b604b41af97e31581db1a7259.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Access Banerd,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Access Banerd,ou=Human Resources,dc=bitwarden,dc=com", + email: "BanerdA@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mina Chee,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mina Chee,ou=Peons,dc=bitwarden,dc=com", + email: "CheeM@73b4280752ea430d90a4e41ca224258f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden,dc=com", + email: "GuilberD@a26a9c7d638a4a938f85aa60d8cdaebf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fabienne Vempati,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fabienne Vempati,ou=Management,dc=bitwarden,dc=com", + email: "VempatiF@ad1687f9a97b47bf9fe47c86e586e467.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saman Bosch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Saman Bosch,ou=Management,dc=bitwarden,dc=com", + email: "BoschS@f009b38fd0b643efae4b268d5ce0abb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farag Collevecchio,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Farag Collevecchio,ou=Peons,dc=bitwarden,dc=com", + email: "ColleveF@107125a246e24f24a9cf40da49e16737.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randhir Dobransky,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Randhir Dobransky,ou=Peons,dc=bitwarden,dc=com", + email: "DobransR@4dd34983587f4a0b9ee3f3c06d2784e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maddy Beausejour,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maddy Beausejour,ou=Administrative,dc=bitwarden,dc=com", + email: "BeausejM@78ace4543e8b4e7abd63d7e3b9ef6ace.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carita Stetner,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carita Stetner,ou=Administrative,dc=bitwarden,dc=com", + email: "StetnerC@f450bfcb7980440badfefb5db1f9b1e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dvm Ricketson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dvm Ricketson,ou=Payroll,dc=bitwarden,dc=com", + email: "RicketsD@89dcd9d2c857498a86ade06ecc312230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden,dc=com", + email: "GanttR@b61ae18043f9458aa61f6fc88ad93618.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viktoria Relations,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Viktoria Relations,ou=Payroll,dc=bitwarden,dc=com", + email: "RelatioV@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hot Hisaki,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hot Hisaki,ou=Product Testing,dc=bitwarden,dc=com", + email: "HisakiH@096f60c023cb468a8d116af8aa53dafa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristien Reinwald,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kristien Reinwald,ou=Payroll,dc=bitwarden,dc=com", + email: "ReinwalK@d0277d6f48c14695a4405ab88f901980.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anjanette Codata,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anjanette Codata,ou=Product Development,dc=bitwarden,dc=com", + email: "CodataA@b72198c81eb943f9965cdab0dd75e67b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antonia Killam,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Antonia Killam,ou=Management,dc=bitwarden,dc=com", + email: "KillamA@d09db853699d499ba28b7118a2e128fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosene Bonner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosene Bonner,ou=Peons,dc=bitwarden,dc=com", + email: "BonnerR@121cc33033f14e9b867c78ba3a8f3e2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janson Vrbetic,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Janson Vrbetic,ou=Management,dc=bitwarden,dc=com", + email: "VrbeticJ@541a9a67add74942af05ec9661f08230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden,dc=com", + email: "VonreicB@8311a48378874d7c8881d49ce93338e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeidenbM@3bd94762b36248a3a966e29a33d3058c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden,dc=com", + email: "MystkowB@7f94876ebfe04b25a6342dc4d9880231.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clyde Beggs,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clyde Beggs,ou=Peons,dc=bitwarden,dc=com", + email: "BeggsC@8dd82af0c0e64a528cb0191d0b7789f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden,dc=com", + email: "AckwoodO@7731926b8eba477c82aacfea38c5fc13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cal Storey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cal Storey,ou=Human Resources,dc=bitwarden,dc=com", + email: "StoreyC@446fda101a9542ef9472f9748a3bbad3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden,dc=com", + email: "CoyneS@bff70836a23e4971b616373a470331a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pearline Towsley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pearline Towsley,ou=Peons,dc=bitwarden,dc=com", + email: "TowsleyP@03118a048f5d4356bb8bbf044152a0bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Violet Ninetyone,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Violet Ninetyone,ou=Product Development,dc=bitwarden,dc=com", + email: "NinetyoV@c1217eb361b34f5f9200a6d2ac0e0924.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hr Healy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hr Healy,ou=Peons,dc=bitwarden,dc=com", + email: "HealyH@29ea2fbdcd594c67b7900d7a29977699.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ondrea Schultze,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ondrea Schultze,ou=Peons,dc=bitwarden,dc=com", + email: "SchultzO@f252b0badb62492c910f90ea10fa1426.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lita Gille,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lita Gille,ou=Janitorial,dc=bitwarden,dc=com", + email: "GilleL@985392d95f2c4602acfb90f908cc5548.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joelle Delong,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joelle Delong,ou=Administrative,dc=bitwarden,dc=com", + email: "DelongJ@b2621506fe2b459baf1ad04147fee681.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fabien Klapper,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fabien Klapper,ou=Product Development,dc=bitwarden,dc=com", + email: "KlapperF@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christie Andersen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Christie Andersen,ou=Peons,dc=bitwarden,dc=com", + email: "AnderseC@f541074a8300482d85b53966c8cecebb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarena Semler,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sarena Semler,ou=Administrative,dc=bitwarden,dc=com", + email: "SemlerS@4f429ec00b3846cdb96eadb01bfd7a99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janka Norfleet,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Janka Norfleet,ou=Janitorial,dc=bitwarden,dc=com", + email: "NorfleeJ@c6becf10621f424386eceb52ac60363d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden,dc=com", + email: "McClintC@79732267294c4ff69a75a9c93c8c2c5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden,dc=com", + email: "SchnurmM@cdc31465418c4033ab89394a6307e530.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verena Cadzow,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Verena Cadzow,ou=Product Testing,dc=bitwarden,dc=com", + email: "CadzowV@00b74fb6ef364737950ddfdf6aa8c176.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roselin Clinton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Roselin Clinton,ou=Management,dc=bitwarden,dc=com", + email: "ClintonR@68cdb3f1f4a34d45a9e696c1e31a6e1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niki Tosczak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Niki Tosczak,ou=Janitorial,dc=bitwarden,dc=com", + email: "TosczakN@0eafa9df29954ccc8d03b1a1a5c6c726.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden,dc=com", + email: "SacchetC@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alli McCartney,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alli McCartney,ou=Human Resources,dc=bitwarden,dc=com", + email: "McCartnA@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helaine Sture,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Helaine Sture,ou=Product Testing,dc=bitwarden,dc=com", + email: "StureH@1d5f034b9f0b4b2d8a9c2ac70eae1af4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elane Boggia,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elane Boggia,ou=Peons,dc=bitwarden,dc=com", + email: "BoggiaE@1390fe347bf84da5b12ed2e7e03c14a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristen Bethune,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cristen Bethune,ou=Human Resources,dc=bitwarden,dc=com", + email: "BethuneC@5e878ad72c9742919c149b3ae36447b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elbert Strauch,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elbert Strauch,ou=Administrative,dc=bitwarden,dc=com", + email: "StrauchE@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stock Krenn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Stock Krenn,ou=Product Development,dc=bitwarden,dc=com", + email: "KrennS@391ddf0224dd407ba001b022d1309d23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurice Wurtz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Maurice Wurtz,ou=Peons,dc=bitwarden,dc=com", + email: "WurtzM@d8178390586b4ff2afbd07f5124be8ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YoungJune Grauer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=YoungJune Grauer,ou=Management,dc=bitwarden,dc=com", + email: "GrauerY@434812d441a24c9dafd1550eb22dcb62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jock Subsara,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jock Subsara,ou=Management,dc=bitwarden,dc=com", + email: "SubsaraJ@01c459dd18154d91bb999b9b97f18487.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden,dc=com", + email: "BassignR@15d7a602173249f0aea4978bd6de557b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden,dc=com", + email: "ReillyS@d5949360307842458664ec19684f5fbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Latia Amarsi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Latia Amarsi,ou=Payroll,dc=bitwarden,dc=com", + email: "AmarsiL@d3f6a0448cf246c98f76952766172afe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden,dc=com", + email: "CulverhB@a85c3929256747e4a90337c3ba0f9538.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Armand Klimas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Armand Klimas,ou=Product Testing,dc=bitwarden,dc=com", + email: "KlimasA@cc354ce01f7d4b1dbbd812fe0f0347ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibbie DeWiele,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sibbie DeWiele,ou=Management,dc=bitwarden,dc=com", + email: "DeWieleS@6166cdfc1e46480f804599bfc1632742.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiam Surreau,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kiam Surreau,ou=Administrative,dc=bitwarden,dc=com", + email: "SurreauK@26ece7db144b41bb92ce5c1250e537b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarabelle Committe,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clarabelle Committe,ou=Peons,dc=bitwarden,dc=com", + email: "CommittC@987beca3f52a49bd924ac83295cf5b4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geralene Lan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Geralene Lan,ou=Product Development,dc=bitwarden,dc=com", + email: "LanG@0a2947c0937246148acc395ec6aa6da8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelyn Runnels,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Madelyn Runnels,ou=Peons,dc=bitwarden,dc=com", + email: "RunnelsM@b2f73c176c104e9dad8630c2f13ec103.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marshal Hawken,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marshal Hawken,ou=Product Development,dc=bitwarden,dc=com", + email: "HawkenM@a4dea908812d4b559d6d4b4ddbcb0f53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sickle Hartley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sickle Hartley,ou=Human Resources,dc=bitwarden,dc=com", + email: "HartleyS@aea15ef0456d4cd2988add4323d0edb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carran Cramer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carran Cramer,ou=Janitorial,dc=bitwarden,dc=com", + email: "CramerC@da80fbc552e74c92b5c02d6f794db308.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KienNghiep Eby,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=KienNghiep Eby,ou=Payroll,dc=bitwarden,dc=com", + email: "EbyK@d787acf2cb0f4ad79059f38dcecb70e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pacific Derrett,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pacific Derrett,ou=Janitorial,dc=bitwarden,dc=com", + email: "DerrettP@4247bf0f3a2e46bbbb1c691078752396.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allyce Chickorie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Allyce Chickorie,ou=Management,dc=bitwarden,dc=com", + email: "ChickorA@a3cca719b1e44338804967e6cd3716a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Risa Hatten,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Risa Hatten,ou=Administrative,dc=bitwarden,dc=com", + email: "HattenR@66ab35d6948347a9bae3a60013004915.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherise Racette,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cherise Racette,ou=Management,dc=bitwarden,dc=com", + email: "RacetteC@2c6078f6eca44c55a3b0351656fc7d8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ava Wetteland,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ava Wetteland,ou=Product Development,dc=bitwarden,dc=com", + email: "WettelaA@013fb02061ee471c942b593b9cccbedb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChiamviB@ba3add3fa0e5474bb8115e77e9d392b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaun Fares,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shaun Fares,ou=Human Resources,dc=bitwarden,dc=com", + email: "FaresS@79f438ac5a2045c28f6ad4893a72e3bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miss Rogne,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Miss Rogne,ou=Peons,dc=bitwarden,dc=com", + email: "RogneM@4437a885539842e694e181973aeef65f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vyky Wichers,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vyky Wichers,ou=Janitorial,dc=bitwarden,dc=com", + email: "WichersV@c9a0e26d4ea742c783cb4ebee35bdd7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christal Logan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Christal Logan,ou=Payroll,dc=bitwarden,dc=com", + email: "LoganC@355444411163413985e2752e5591891d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden,dc=com", + email: "WitkowsG@cabcf482c8b8459d8a74ab2619df86df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marga Narron,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marga Narron,ou=Janitorial,dc=bitwarden,dc=com", + email: "NarronM@602ba75a97ea4dc1ac3622553464c0ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden,dc=com", + email: "FlanagaM@b1bb838cb11c403bbdc958ce4b4c9d2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emmalee Foods,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Emmalee Foods,ou=Management,dc=bitwarden,dc=com", + email: "FoodsE@74805c1fee3243bbadc8f72d3fd3001a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden,dc=com", + email: "LakhianE@e52e6f8f31c240f3b4e78172d5b85958.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmelina Scully,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carmelina Scully,ou=Payroll,dc=bitwarden,dc=com", + email: "ScullyC@3235f42e984e402081a7536149bf78d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shyam Carr,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shyam Carr,ou=Administrative,dc=bitwarden,dc=com", + email: "CarrS@49afaf830b95419abf9fc28dbca190f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katie Jeska,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Katie Jeska,ou=Human Resources,dc=bitwarden,dc=com", + email: "JeskaK@64d7ecf288c04c558094c63f6b45f377.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Penni Sarto,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Penni Sarto,ou=Administrative,dc=bitwarden,dc=com", + email: "SartoP@05ad6fc184974bd39ebbb3184d131d86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marge Levere,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marge Levere,ou=Management,dc=bitwarden,dc=com", + email: "LevereM@bf2dcabaa08a40c0b50f35192372f0ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden,dc=com", + email: "DelolmoR@982161c18d1c4b49bf26a62584cbb202.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Konrad Fabijanic,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Konrad Fabijanic,ou=Peons,dc=bitwarden,dc=com", + email: "FabijanK@e6bf56fbfb254a10af3f0b967f4bdcb4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden,dc=com", + email: "NikfarjP@6e287118b6904f0fb9c650aef9285536.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colman Epplett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Colman Epplett,ou=Human Resources,dc=bitwarden,dc=com", + email: "EpplettC@ab6b4dd3e6a9481bb932dc2b39ad4c1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rama Akhtar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rama Akhtar,ou=Product Development,dc=bitwarden,dc=com", + email: "AkhtarR@e76e8162b84b46138ec7767983e49241.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cari Cuany,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cari Cuany,ou=Human Resources,dc=bitwarden,dc=com", + email: "CuanyC@91416a3afaee4244b90876f4646b52c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betteanne Donak,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Betteanne Donak,ou=Product Testing,dc=bitwarden,dc=com", + email: "DonakB@1fe7e1be2b764fc8b9d6a489254a78f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nguyen Jaques,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nguyen Jaques,ou=Administrative,dc=bitwarden,dc=com", + email: "JaquesN@fda4d4ae921446e0b58dd0cc3cb8d908.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobette Sherlock,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bobette Sherlock,ou=Peons,dc=bitwarden,dc=com", + email: "SherlocB@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden,dc=com", + email: "DiCosolJ@bceb773cb0004bb8a003929876f0fb36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barsha Ozmizrak,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Barsha Ozmizrak,ou=Management,dc=bitwarden,dc=com", + email: "OzmizraB@5427bdee75c245c39f1a2b879610cd11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tandi Dao,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tandi Dao,ou=Administrative,dc=bitwarden,dc=com", + email: "DaoT@9b989160bc6d49579fbfc8f1e85ccc6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jackie Bissonnette,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jackie Bissonnette,ou=Peons,dc=bitwarden,dc=com", + email: "BissonnJ@26a00bf401bc40aabc0ccf70a3195da2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden,dc=com", + email: "RadvanyS@e6341ae3add343adaa16f2b5badc740f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden,dc=com", + email: "HowePatH@523e609eb44e4dad826c580fd26d6d8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margaretta Amott,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Margaretta Amott,ou=Janitorial,dc=bitwarden,dc=com", + email: "AmottM@9b6ac34e0ff04d81b84f1dd42d147248.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden,dc=com", + email: "TempleDM@399ec0c914824f4b8aebd42d99e8c0c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yetta Litherland,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Yetta Litherland,ou=Administrative,dc=bitwarden,dc=com", + email: "LitherlY@e552a99c6612464e99801fc5eab2cf25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden,dc=com", + email: "BoothroT@7e7d56512878406ba5f19451276eb821.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rubetta Altman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rubetta Altman,ou=Product Development,dc=bitwarden,dc=com", + email: "AltmanR@5cab5d1545fd4012a00a0f17162dad39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LeiSee Plato,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=LeiSee Plato,ou=Peons,dc=bitwarden,dc=com", + email: "PlatoL@895bfd9f2c6f4f82814cbf2199cfb1f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fayette Kos,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fayette Kos,ou=Janitorial,dc=bitwarden,dc=com", + email: "KosF@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden,dc=com", + email: "CraycraR@68e2448e6be24959a88911c23cb3d4b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginette Vilis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ginette Vilis,ou=Peons,dc=bitwarden,dc=com", + email: "VilisG@77eb010514ae421883af972518c1a82e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorelle Ladymon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorelle Ladymon,ou=Peons,dc=bitwarden,dc=com", + email: "LadymonL@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Behnam Cairns,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Behnam Cairns,ou=Management,dc=bitwarden,dc=com", + email: "CairnsB@ad4942d8c3c341119939c679c4dae154.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othella McGrath,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Othella McGrath,ou=Janitorial,dc=bitwarden,dc=com", + email: "McGrathO@e90e000c44ce4d4ea0b0d2e2fa3e3a2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minnnie Hough,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Minnnie Hough,ou=Product Development,dc=bitwarden,dc=com", + email: "HoughM@3ecb1c63de854804b4e8af1966a28c00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darci Glasgow,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Darci Glasgow,ou=Human Resources,dc=bitwarden,dc=com", + email: "GlasgowD@66d6a653ea384626bd4c52723439804a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franz Kosasih,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Franz Kosasih,ou=Administrative,dc=bitwarden,dc=com", + email: "KosasihF@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", + email: "SavarimF@2c5e9a0ea53e4c3488f28ebc0a631b01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zonda Keyes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zonda Keyes,ou=Management,dc=bitwarden,dc=com", + email: "KeyesZ@73df9726f63046799112335cf0c61cd9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden,dc=com", + email: "ClaybroV@5c3854c0e45246a0b3fb22153a7146d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Iwona Eicher,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Iwona Eicher,ou=Product Development,dc=bitwarden,dc=com", + email: "EicherI@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden,dc=com", + email: "RabjohnM@9f370afe60bb4f1ab01d1df2abbe72ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hugo Baltodano,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hugo Baltodano,ou=Administrative,dc=bitwarden,dc=com", + email: "BaltodaH@78bfa2e0c44e45a08260250819c1abe3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karyl Jiang,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Karyl Jiang,ou=Human Resources,dc=bitwarden,dc=com", + email: "JiangK@536233742e094d32a93b46e75cbb8e9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KumMeng Dover,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=KumMeng Dover,ou=Administrative,dc=bitwarden,dc=com", + email: "DoverK@b381db8c81ea4ed2b9296ea4988780aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Homa Brownlee,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Homa Brownlee,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrownleH@4897906c5be74769a474a0be126fe831.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden,dc=com", + email: "JensenwN@8dadc7ef65624c618ad03f0f74792b58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden,dc=com", + email: "JemczykP@8cd5207192cc415ba684b6325051ff04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tianbao Cemensky,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tianbao Cemensky,ou=Management,dc=bitwarden,dc=com", + email: "CemenskT@f356b9ffcffb4ac98d745b6fe117b574.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meggy Jansen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Meggy Jansen,ou=Janitorial,dc=bitwarden,dc=com", + email: "JansenM@5e943e5d6d7b48d9af98d3041b109570.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thad Bertram,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Thad Bertram,ou=Administrative,dc=bitwarden,dc=com", + email: "BertramT@87217c69784645aaa23bd55d67419f7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dallas Gulick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dallas Gulick,ou=Management,dc=bitwarden,dc=com", + email: "GulickD@e24249e5021b459b98fb73b4ee245cd6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marna Kindem,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marna Kindem,ou=Peons,dc=bitwarden,dc=com", + email: "KindemM@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denny Worpell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Denny Worpell,ou=Management,dc=bitwarden,dc=com", + email: "WorpellD@d323371cf0d149c19d396f6a749e3098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tanitansy Thibon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tanitansy Thibon,ou=Management,dc=bitwarden,dc=com", + email: "ThibonT@864d7fffc05349a6937099b5cb95ba17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koray Vasiliadis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Koray Vasiliadis,ou=Peons,dc=bitwarden,dc=com", + email: "VasiliaK@b08a31b6db4d4d2a9a1e1fd91f822e32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ettie Sils,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ettie Sils,ou=Management,dc=bitwarden,dc=com", + email: "SilsE@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden,dc=com", + email: "KollmorD@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Millard Tromm,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Millard Tromm,ou=Human Resources,dc=bitwarden,dc=com", + email: "TrommM@364738d989114590842291a79ecffd92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZolmerR@f53717c4000348b2a1cde8b0fde1aa1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merlina Benschop,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Merlina Benschop,ou=Peons,dc=bitwarden,dc=com", + email: "BenschoM@113ea99347684507857d63f3c383c84e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shanna Bourgon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shanna Bourgon,ou=Product Development,dc=bitwarden,dc=com", + email: "BourgonS@2f60971fa268439caffee9f84b2be8cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liza Gumb,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Liza Gumb,ou=Management,dc=bitwarden,dc=com", + email: "GumbL@eb1e32d5d45a4fa98044c369dbe415f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gokul Livingstone,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gokul Livingstone,ou=Product Development,dc=bitwarden,dc=com", + email: "LivingsG@e62346e3a4bc49f8a310562753f43a8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jamison Hines,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jamison Hines,ou=Human Resources,dc=bitwarden,dc=com", + email: "HinesJ@1461dbc17b9c4f428daab775690e9506.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clem Bongers,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Clem Bongers,ou=Human Resources,dc=bitwarden,dc=com", + email: "BongersC@9fa42e4f0ec04b66b2fd5c843402ebd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vina McKie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vina McKie,ou=Payroll,dc=bitwarden,dc=com", + email: "McKieV@04f2dffe06bf4234900a9cc4318bfe61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duc Dinalic,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Duc Dinalic,ou=Management,dc=bitwarden,dc=com", + email: "DinalicD@64c2fa20001b495182e976975782823e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gena Lawther,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gena Lawther,ou=Management,dc=bitwarden,dc=com", + email: "LawtherG@dbbc0930b0d2479ca97fea1080c3afcd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HooiLee Bourgon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=HooiLee Bourgon,ou=Peons,dc=bitwarden,dc=com", + email: "BourgonH@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teresa Kenkel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Teresa Kenkel,ou=Payroll,dc=bitwarden,dc=com", + email: "KenkelT@e3d22003ed4443a89482f00559e86e88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marin Suprick,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marin Suprick,ou=Human Resources,dc=bitwarden,dc=com", + email: "SuprickM@85be5888418240a8880dd2671e654a34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Attilio Bullett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Attilio Bullett,ou=Product Testing,dc=bitwarden,dc=com", + email: "BullettA@101b8efea162489cbe4b00acbe71ea5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blake Skerry,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Blake Skerry,ou=Janitorial,dc=bitwarden,dc=com", + email: "SkerryB@4a47eda5b0994d6aac96fd9eb9bf327f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amir McColman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amir McColman,ou=Management,dc=bitwarden,dc=com", + email: "McColmaA@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden,dc=com", + email: "AmbroisF@c1fb4f6fb6854ac09da830fa08bf174b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minne Danker,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Minne Danker,ou=Management,dc=bitwarden,dc=com", + email: "DankerM@7e7d56512878406ba5f19451276eb821.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rizzo Irick,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rizzo Irick,ou=Human Resources,dc=bitwarden,dc=com", + email: "IrickR@a762ad5f7ab94a82ae700785cde02626.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden,dc=com", + email: "BiedermC@ccf238ac72764498a2a4e871140940fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZureikN@32cbfafe741b446491d67cea0d5c681a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Syl Hughes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Syl Hughes,ou=Management,dc=bitwarden,dc=com", + email: "HughesS@29d43cca18a84193868799ddbf3f9a87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jagat Beato,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jagat Beato,ou=Peons,dc=bitwarden,dc=com", + email: "BeatoJ@cb0fd14a62264345a0844bec81676fd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Masood Tomassi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Masood Tomassi,ou=Payroll,dc=bitwarden,dc=com", + email: "TomassiM@f38a9d14e36244e8ae609b15157f60d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden,dc=com", + email: "DacheleS@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shamsia Mincey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shamsia Mincey,ou=Peons,dc=bitwarden,dc=com", + email: "MinceyS@a3cc15e6ac3a471cb783c4563846998f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden,dc=com", + email: "DittburS@8c2946e2ae1e4ec0a1e9edd05301d704.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden,dc=com", + email: "GoodwinL@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tove Goodridge,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tove Goodridge,ou=Payroll,dc=bitwarden,dc=com", + email: "GoodridT@b566534e0b1f46eaaa1ea84025fc6d78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elberta Incze,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Elberta Incze,ou=Management,dc=bitwarden,dc=com", + email: "InczeE@5cf57c701a8d46aa885749d2ca77c6a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobinette Belboul,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bobinette Belboul,ou=Peons,dc=bitwarden,dc=com", + email: "BelboulB@f29767cb71284b6995c0c1e79eecbc92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynna Elsing,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lynna Elsing,ou=Product Development,dc=bitwarden,dc=com", + email: "ElsingL@b9d4bc3408874c868cfc03e30b01af48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ioana Bresee,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ioana Bresee,ou=Peons,dc=bitwarden,dc=com", + email: "BreseeI@25209ef0bef9422ba827a4158c5d2eb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden,dc=com", + email: "FarrellK@4e073aa3a1c84fccb5d5f011b1fd7a56.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seanna Lasher,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Seanna Lasher,ou=Payroll,dc=bitwarden,dc=com", + email: "LasherS@2c4a787e446b470797a2c3a15157473d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden,dc=com", + email: "MichaelP@752c449dfd0b47e48d05c032fa7b3f44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bella Lally,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bella Lally,ou=Peons,dc=bitwarden,dc=com", + email: "LallyB@59d35b61e06047f398b5db0a5e96a7de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Romina Koman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Romina Koman,ou=Peons,dc=bitwarden,dc=com", + email: "KomanR@3a6874a38197445fbf21db557fe28dc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden,dc=com", + email: "KrauelB@efedd508d8ec42c3907045cd058c9d61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abbye Kurth,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Abbye Kurth,ou=Product Development,dc=bitwarden,dc=com", + email: "KurthA@d90060a8a6214d68a708f85a619deb45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cecil Babb,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cecil Babb,ou=Product Development,dc=bitwarden,dc=com", + email: "BabbC@9688197f14c24b1ba3397822373736ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thinh Merinder,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Thinh Merinder,ou=Human Resources,dc=bitwarden,dc=com", + email: "MerindeT@634978d04fca41d6af5289220bc42474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden,dc=com", + email: "SYSINTH@06e4c92f7e694121b9c489567f46001f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dinah Kodsi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dinah Kodsi,ou=Peons,dc=bitwarden,dc=com", + email: "KodsiD@b9ee0922c6034c7c9e48852dd91cb364.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loria Salzillo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Loria Salzillo,ou=Administrative,dc=bitwarden,dc=com", + email: "SalzillL@6682496b1da24faaa8a9e146fd0cd025.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden,dc=com", + email: "AggarwaS@764613c40e224c12ab1c1cb80b18e644.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnna Rodkey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Johnna Rodkey,ou=Administrative,dc=bitwarden,dc=com", + email: "RodkeyJ@a2805efb65eb441e91001eedfa87637b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden,dc=com", + email: "BrouthiA@1f70c3bade4e4575a0687e469e22b825.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden,dc=com", + email: "JeanesE@5fb0b5507509483b9896f4a9d7f4badb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willi Kepekci,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Willi Kepekci,ou=Payroll,dc=bitwarden,dc=com", + email: "KepekciW@40326010316a4eb6ad347835467b575d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tillie Laniel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tillie Laniel,ou=Peons,dc=bitwarden,dc=com", + email: "LanielT@db38fdb09e92403f9dae01242350f08c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden,dc=com", + email: "LinebarT@63cf6afc822f42ed95e0208899f901bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helene Esser,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Helene Esser,ou=Product Development,dc=bitwarden,dc=com", + email: "EsserH@16792a64200240e9a79e8e2ea0c19fe2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lina Frederick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lina Frederick,ou=Product Testing,dc=bitwarden,dc=com", + email: "FrederiL@fde34f63385e43da8f208ba38082e1b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden,dc=com", + email: "RtprelK@ffbf9bf698dd4e7a9f64eeee84b5ec64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sluis Brauer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sluis Brauer,ou=Payroll,dc=bitwarden,dc=com", + email: "BrauerS@f20ae448bfd2461babe4076c52578ba5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bosiljka Valerius,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bosiljka Valerius,ou=Peons,dc=bitwarden,dc=com", + email: "ValeriuB@d1a1137d84784363bf758dcc449d2a19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prity Ruthart,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Prity Ruthart,ou=Peons,dc=bitwarden,dc=com", + email: "RuthartP@258e2d1e3bae4588bdceb50925d13250.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlinda Weddell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arlinda Weddell,ou=Peons,dc=bitwarden,dc=com", + email: "WeddellA@6d359ae3f48f4f958525326d5a17bef5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yatish Drynan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yatish Drynan,ou=Human Resources,dc=bitwarden,dc=com", + email: "DrynanY@c355112aa8644f0dbbdba2f53dfed719.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coila Daniells,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Coila Daniells,ou=Human Resources,dc=bitwarden,dc=com", + email: "DaniellC@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden,dc=com", + email: "AlBasiD@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden,dc=com", + email: "GillstrL@6a80666af164421099cd30f445f1491e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Digby Abrams,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Digby Abrams,ou=Payroll,dc=bitwarden,dc=com", + email: "AbramsD@20e4624ef958401cb7727678bb609188.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalie Hine,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kalie Hine,ou=Payroll,dc=bitwarden,dc=com", + email: "HineK@e283d01de99446bc9d29b5fac0fa1bca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pierette Rodriques,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pierette Rodriques,ou=Management,dc=bitwarden,dc=com", + email: "RodriquP@18569f82a4734a83991f0330d7e468e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden,dc=com", + email: "WesenbeY@06636af2d3fb40bf87cb80da540e167a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marleen Potts,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marleen Potts,ou=Human Resources,dc=bitwarden,dc=com", + email: "PottsM@88d8b282161d4154bfd3a8dda92cc317.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lela Kita,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lela Kita,ou=Payroll,dc=bitwarden,dc=com", + email: "KitaL@c33b0066e4a94f2895f1ce062cf2a5b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angie Kou,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Angie Kou,ou=Peons,dc=bitwarden,dc=com", + email: "KouA@28fe718e73d141bb8aec4e57b4f0fed7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mab Goba,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mab Goba,ou=Management,dc=bitwarden,dc=com", + email: "GobaM@f38a9d14e36244e8ae609b15157f60d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roe Sandberg,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Roe Sandberg,ou=Peons,dc=bitwarden,dc=com", + email: "SandberR@a4ddeff635f14fe6b72b17daaba90627.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randene Wintour,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Randene Wintour,ou=Human Resources,dc=bitwarden,dc=com", + email: "WintourR@8237422e949f4acf92d97f787e6bf098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avie Lannan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Avie Lannan,ou=Product Testing,dc=bitwarden,dc=com", + email: "LannanA@dfe553cd1a3f4695943b7b16fc34c074.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden,dc=com", + email: "AhluwalJ@ca8ef169aecd439b84062b84d007e951.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wiele Levert,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wiele Levert,ou=Janitorial,dc=bitwarden,dc=com", + email: "LevertW@5a771b0086d24bceafcaac2a637338d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amata Boles,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Amata Boles,ou=Janitorial,dc=bitwarden,dc=com", + email: "BolesA@68177ed4081e492fb681d0ca752ae8d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lpo Firment,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lpo Firment,ou=Janitorial,dc=bitwarden,dc=com", + email: "FirmentL@f0c19e711ead4be4b0aef294eba8ecf4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katey Carkner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Katey Carkner,ou=Product Development,dc=bitwarden,dc=com", + email: "CarknerK@98610eb59a8644899b5f6a7dba9c32ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vito Mereu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vito Mereu,ou=Janitorial,dc=bitwarden,dc=com", + email: "MereuV@e52bb91930a9487fa1adfb0b49d2e1a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willa Mikelonis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Willa Mikelonis,ou=Payroll,dc=bitwarden,dc=com", + email: "MikelonW@a4b64e3b322940649b1a6e04da490b37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lysy Halicki,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lysy Halicki,ou=Administrative,dc=bitwarden,dc=com", + email: "HalickiL@06d6eb97d0e1492aaf4272e7f2ff9fa8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabriell Aery,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gabriell Aery,ou=Janitorial,dc=bitwarden,dc=com", + email: "AeryG@2837fee1af77497ebd94556ee2aed90f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden,dc=com", + email: "GopisetR@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morgan Christian,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Morgan Christian,ou=Management,dc=bitwarden,dc=com", + email: "ChristiM@c84f52f23bdc49c1957e8a0091babea8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shona Ernst,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shona Ernst,ou=Payroll,dc=bitwarden,dc=com", + email: "ErnstS@729666359ed04f0995bf97703c170436.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melynda Traynor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Melynda Traynor,ou=Peons,dc=bitwarden,dc=com", + email: "TraynorM@acfece6da1e443b5827761c1e0df01ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christer Bortolussi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Christer Bortolussi,ou=Product Development,dc=bitwarden,dc=com", + email: "BortoluC@f8d039f2941a426ba21fb52c89e7b4f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frances Yvon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Frances Yvon,ou=Payroll,dc=bitwarden,dc=com", + email: "YvonF@e7a2d820b36a4b2ca0436c4a7ceb43d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigitta Ipadmin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brigitta Ipadmin,ou=Management,dc=bitwarden,dc=com", + email: "IpadminB@0e6ec851a2a74ae0b90601b63a1f201f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Garland Kenney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Garland Kenney,ou=Administrative,dc=bitwarden,dc=com", + email: "KenneyG@8a50e9e39d6c4166974a9cc7fff3efec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivia Zaloker,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vivia Zaloker,ou=Administrative,dc=bitwarden,dc=com", + email: "ZalokerV@22c1616450914b67aaa0021953493b44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reed Bassignana,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reed Bassignana,ou=Peons,dc=bitwarden,dc=com", + email: "BassignR@e903c41d0e6d47309eaa689127a4e081.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden,dc=com", + email: "DunkelmM@552eccf10ef74257ae39c54b44c29e41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robbie Kara,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Robbie Kara,ou=Human Resources,dc=bitwarden,dc=com", + email: "KaraR@248ea67a976b401d946bef01a3dddf9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorri Abe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lorri Abe,ou=Janitorial,dc=bitwarden,dc=com", + email: "AbeL@982a9dc04ec64d818da9977446a91014.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeitzelM@ae5f65ffb5c9447faad9235fe08e30d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norman Schmeler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Norman Schmeler,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchmeleN@9e6632ca10d4463a8725e828e08ec1be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lethia Godse,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lethia Godse,ou=Management,dc=bitwarden,dc=com", + email: "GodseL@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elsy Sigut,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elsy Sigut,ou=Product Testing,dc=bitwarden,dc=com", + email: "SigutE@f943c40608904ca78dc0db77ac3253cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosabella Toothman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rosabella Toothman,ou=Administrative,dc=bitwarden,dc=com", + email: "ToothmaR@946a8a93d7d645ea944ce0f8d3611acd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Royce OColmain,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Royce OColmain,ou=Peons,dc=bitwarden,dc=com", + email: "OColmaiR@469fa45be80f47a9832c4ebf2310f220.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leigha Contine,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leigha Contine,ou=Management,dc=bitwarden,dc=com", + email: "ContineL@cc5c080b822048c1b52dd0d714af0c8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivo Chaurette,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ivo Chaurette,ou=Payroll,dc=bitwarden,dc=com", + email: "ChauretI@7b01d0fa3a5d4a17b706f9bcc42a9ead.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loleta Macoosh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Loleta Macoosh,ou=Payroll,dc=bitwarden,dc=com", + email: "MacooshL@a455dbe4f11547cab81564b3288ee560.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raina Morgan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Raina Morgan,ou=Peons,dc=bitwarden,dc=com", + email: "MorganR@03f807cda02845ada6f9c4f0cc25cb9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laury Madras,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Laury Madras,ou=Product Testing,dc=bitwarden,dc=com", + email: "MadrasL@5b483b0db3b24546950eadd5a11e2bbb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden,dc=com", + email: "EggersgE@ade29194809c470d9cdfd87fd5b67232.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YuHung Marting,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=YuHung Marting,ou=Product Testing,dc=bitwarden,dc=com", + email: "MartingY@eac3f0cb976143adb3703a9365be1f75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Garry Brashear,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Garry Brashear,ou=Peons,dc=bitwarden,dc=com", + email: "BrasheaG@0ac78d51e7f24be4983e8a7b1f6fd549.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klara Npi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Klara Npi,ou=Janitorial,dc=bitwarden,dc=com", + email: "NpiK@85aee2e172b24229925fd4385b4414cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden,dc=com", + email: "SlinowsC@9b6ac34e0ff04d81b84f1dd42d147248.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden,dc=com", + email: "AyukawaR@2295c6d141ba49579c21c8c873a50f8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edita VanRijswijk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Edita VanRijswijk,ou=Management,dc=bitwarden,dc=com", + email: "VanRijsE@790e9575d19b49f797a1e46c053b138e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeana Horwood,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jeana Horwood,ou=Product Development,dc=bitwarden,dc=com", + email: "HorwoodJ@c82abe08fb0140599e247f8f838f49b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lianna Horton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lianna Horton,ou=Product Development,dc=bitwarden,dc=com", + email: "HortonL@f5c69553f79a4b59937ac455a61cfbaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden,dc=com", + email: "JesshopM@a907d87b6f8a40ee9746474ef0aee487.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felicia Audette,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Felicia Audette,ou=Administrative,dc=bitwarden,dc=com", + email: "AudetteF@de1b941b029b482ba2e81cfa3a5aa97c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jayesh Purson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jayesh Purson,ou=Product Development,dc=bitwarden,dc=com", + email: "PursonJ@d3223b51e74344f49d9004d993927007.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zora Weldon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Zora Weldon,ou=Payroll,dc=bitwarden,dc=com", + email: "WeldonZ@f69c90cc2b8c4a8e9725fac3e3a7a1d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Htd Knobloch,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Htd Knobloch,ou=Human Resources,dc=bitwarden,dc=com", + email: "KnoblocH@3c6215949b3243fca9ffcfc0e897aa4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden,dc=com", + email: "AinsworM@35cbe55d624d41aaa7e77e5513292711.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden,dc=com", + email: "CwirzenR@e769e682c0c04d6c8ec17a9892d1ed72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden,dc=com", + email: "CarliS@6388b4d593ae4d1cb45d59e7f2b8132f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Detlef Morglan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Detlef Morglan,ou=Product Development,dc=bitwarden,dc=com", + email: "MorglanD@99ed379ff20347a2afcfdca050997d8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berthe Peter,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Berthe Peter,ou=Janitorial,dc=bitwarden,dc=com", + email: "PeterB@d6177daa79a64f8eb62f8d79f0c41ce3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alyce Tangren,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alyce Tangren,ou=Management,dc=bitwarden,dc=com", + email: "TangrenA@b134362a785742d6b5a1f5d5c2746e9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grissel Beaudoin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Grissel Beaudoin,ou=Peons,dc=bitwarden,dc=com", + email: "BeaudoiG@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Octavio Mathur,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Octavio Mathur,ou=Peons,dc=bitwarden,dc=com", + email: "MathurO@993d4c54591c4b179bcffd016a7fe8cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elyssa Chui,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elyssa Chui,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChuiE@4f99a2d4c8e343d39b81a3ab47785f76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danica Rubinstein,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Danica Rubinstein,ou=Management,dc=bitwarden,dc=com", + email: "RubinstD@021f182578104bf484110ac6631b5efa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karna Netto,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Karna Netto,ou=Product Development,dc=bitwarden,dc=com", + email: "NettoK@c4198b8f2847457c97c168c8fc0c7617.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden,dc=com", + email: "MillspaD@cd28596cfe754eb9be84580279d7d513.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden,dc=com", + email: "KalnitsN@172938ae8ac04facad61a01b31d0a0e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wallie Newhook,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wallie Newhook,ou=Product Development,dc=bitwarden,dc=com", + email: "NewhookW@c9f8cbb8d3d848c99fea02136e8a89f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cavin Circe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cavin Circe,ou=Payroll,dc=bitwarden,dc=com", + email: "CirceC@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Notley Salinas,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Notley Salinas,ou=Administrative,dc=bitwarden,dc=com", + email: "SalinasN@0989aaf9c0104bbbb2f202d6a2004237.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catrina Pezzoli,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Catrina Pezzoli,ou=Peons,dc=bitwarden,dc=com", + email: "PezzoliC@41b27b52057643c68d8f76bcab984247.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marrilee Montague,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marrilee Montague,ou=Payroll,dc=bitwarden,dc=com", + email: "MontaguM@ccc8e04b90324a8e82f8a7a8473e9c5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frederica KongQuee,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Frederica KongQuee,ou=Payroll,dc=bitwarden,dc=com", + email: "KongQueF@31248f3f7d37450a9d666ddb80ad3cdd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fianna Rubio,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fianna Rubio,ou=Human Resources,dc=bitwarden,dc=com", + email: "RubioF@b9ea78565da6440e8046b744a6f78fc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neely Godo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Neely Godo,ou=Product Development,dc=bitwarden,dc=com", + email: "GodoN@2d9d879a9a524c4888e7cfdd60a3152d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karil Mielke,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Karil Mielke,ou=Product Development,dc=bitwarden,dc=com", + email: "MielkeK@fe9596dda25448d7a8bea63825cc667a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Livvie Blodgett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Livvie Blodgett,ou=Product Development,dc=bitwarden,dc=com", + email: "BlodgetL@29ffdd3ea48d48d48e57e1480deff23d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ursula Potter,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ursula Potter,ou=Administrative,dc=bitwarden,dc=com", + email: "PotterU@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden,dc=com", + email: "EcroydL@7ac3538c32ef4218882c130acb03a83a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charil Garbish,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Charil Garbish,ou=Management,dc=bitwarden,dc=com", + email: "GarbishC@8aed4579481d435c98b14fd5983c7417.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=William Groleau,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=William Groleau,ou=Administrative,dc=bitwarden,dc=com", + email: "GroleauW@a0ce50d00f1c4513b832bf04095b308e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden,dc=com", + email: "GavilluE@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LouisRene Albers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=LouisRene Albers,ou=Payroll,dc=bitwarden,dc=com", + email: "AlbersL@43965c00f0db4ca198510569e172ade1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emilie Geldrez,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Emilie Geldrez,ou=Payroll,dc=bitwarden,dc=com", + email: "GeldrezE@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tomasina Willett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tomasina Willett,ou=Peons,dc=bitwarden,dc=com", + email: "WillettT@4a53c85fc87e459ba535fa5859abd60b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prams Bertolini,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Prams Bertolini,ou=Janitorial,dc=bitwarden,dc=com", + email: "BertoliP@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivyanne Mulder,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vivyanne Mulder,ou=Management,dc=bitwarden,dc=com", + email: "MulderV@c0e7d2cafc7f4a0fac99a6e2d0d32d1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden,dc=com", + email: "NicoletR@0995be80c7f7438a9503246039ba086d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarence Sonier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Clarence Sonier,ou=Janitorial,dc=bitwarden,dc=com", + email: "SonierC@47ed50d743ed4ddaa8e7844725dfae63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emelia Esry,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Emelia Esry,ou=Administrative,dc=bitwarden,dc=com", + email: "EsryE@8967a677365042bf9b4c49a667cc17a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranea Beffert,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ranea Beffert,ou=Janitorial,dc=bitwarden,dc=com", + email: "BeffertR@526978f755294aedac8265e43fde0a0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden,dc=com", + email: "SalyniuO@c3ff70181a1748d2af2d2661f51fc5e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saraann Lui,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Saraann Lui,ou=Product Development,dc=bitwarden,dc=com", + email: "LuiS@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden,dc=com", + email: "LindberG@5b938862d9b84f248e738a32d39aab3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katrina Dauterive,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Katrina Dauterive,ou=Product Development,dc=bitwarden,dc=com", + email: "DauteriK@1477a7ab60474aad9654b79aa14f0737.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Talia Mattson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Talia Mattson,ou=Product Testing,dc=bitwarden,dc=com", + email: "MattsonT@01c954b9634144e3b54bd66a31610430.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden,dc=com", + email: "BresnanW@c1cc2a964c6c4e93a2be19842505091b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yevette Lazzara,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yevette Lazzara,ou=Peons,dc=bitwarden,dc=com", + email: "LazzaraY@db3499e49ce34ebd81d2f39ace8a49cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirby Hagley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kirby Hagley,ou=Product Development,dc=bitwarden,dc=com", + email: "HagleyK@fe740c0ae3204fcc953b18216e0c9dcc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marit Montelli,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marit Montelli,ou=Product Testing,dc=bitwarden,dc=com", + email: "MontellM@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monroe Ghulati,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Monroe Ghulati,ou=Payroll,dc=bitwarden,dc=com", + email: "GhulatiM@dce0711c306745dfb235a826c6991d57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolan Bott,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carolan Bott,ou=Janitorial,dc=bitwarden,dc=com", + email: "BottC@3d692d684ca742119b69b3914fc21732.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anet Gehring,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anet Gehring,ou=Product Development,dc=bitwarden,dc=com", + email: "GehringA@8a950b2ad99e488bb8e8780065c87d40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaela Binner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kaela Binner,ou=Human Resources,dc=bitwarden,dc=com", + email: "BinnerK@4d0502da536c4d0b8ac6cf9b766f7317.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden,dc=com", + email: "PaulhusA@fbf26b520a7b4c988cb7a7f55d34af0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Libor Schanne,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Libor Schanne,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchanneL@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bertie Bounds,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bertie Bounds,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoundsB@f103afa7e026431c8e52eb4ed735c99a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pascale Hutchings,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pascale Hutchings,ou=Administrative,dc=bitwarden,dc=com", + email: "HutchinP@1161e749733c49b2979c0ee6e1e741fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rochella Mazarick,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rochella Mazarick,ou=Administrative,dc=bitwarden,dc=com", + email: "MazaricR@4ad19e5c2a7149b892ada70174e983fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheela Adam,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sheela Adam,ou=Product Development,dc=bitwarden,dc=com", + email: "AdamS@6eda6577067f465b84cdc51153ccba3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norio Crabtree,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Norio Crabtree,ou=Human Resources,dc=bitwarden,dc=com", + email: "CrabtreN@3913d51a20f344409448501766a0f142.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jey Shackley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jey Shackley,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShackleJ@e974b86e9f10486baa2ed0156d74e959.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linda Juhan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Linda Juhan,ou=Administrative,dc=bitwarden,dc=com", + email: "JuhanL@e2cbb69d157949f2a27ec4f04bfab065.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donica Banens,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Donica Banens,ou=Product Testing,dc=bitwarden,dc=com", + email: "BanensD@e4c6dfe9f4dd43a2a1ea392ceb99c9cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden,dc=com", + email: "PostletA@affed2f672a845bead4365ae80e4a101.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marianna Fagan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marianna Fagan,ou=Product Testing,dc=bitwarden,dc=com", + email: "FaganM@9f90762fec514dd6aa8e8cba5782dba8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Otha Mousseau,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Otha Mousseau,ou=Product Development,dc=bitwarden,dc=com", + email: "MousseaO@b5d68bec53824e6ba7d281f697cd7939.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rodrigus Helwege,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rodrigus Helwege,ou=Peons,dc=bitwarden,dc=com", + email: "HelwegeR@f89a515c80574bae9191a55e3c4dfaf6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathe Bolli,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cathe Bolli,ou=Payroll,dc=bitwarden,dc=com", + email: "BolliC@f7a81f2e1780475aad82532745d8c03d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden,dc=com", + email: "LindemuZ@5a39c0ae003342a5afebbb7b314c015d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odele Docherty,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Odele Docherty,ou=Peons,dc=bitwarden,dc=com", + email: "DochertO@a59346ad14cf48868393d6c59fa9cec4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allie Corbeil,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Allie Corbeil,ou=Janitorial,dc=bitwarden,dc=com", + email: "CorbeilA@354ddafd53d546cbab9bc884653e06a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marshal Mayo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marshal Mayo,ou=Human Resources,dc=bitwarden,dc=com", + email: "MayoM@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neil Bestavros,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Neil Bestavros,ou=Human Resources,dc=bitwarden,dc=com", + email: "BestavrN@ef157743b5d94ee5a4fdc8f8efde50c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pirooz Rashed,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pirooz Rashed,ou=Administrative,dc=bitwarden,dc=com", + email: "RashedP@a54b6e1d0be04405aa83502caa5550a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corinna Davy,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Corinna Davy,ou=Management,dc=bitwarden,dc=com", + email: "DavyC@7909b3c6de394fb88dda677b48087880.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden,dc=com", + email: "LuomaT@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melford Sehgal,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Melford Sehgal,ou=Product Development,dc=bitwarden,dc=com", + email: "SehgalM@22da63f56f314dcd9cf81575674754db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden,dc=com", + email: "KeastT@f9ac72c800c648adb93805922921ecdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juditha Moree,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Juditha Moree,ou=Peons,dc=bitwarden,dc=com", + email: "MoreeJ@4db77e65231d4196be74b445bea3989e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden,dc=com", + email: "WoroszcI@37965586ec09459fa0ca3d745850a83d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden,dc=com", + email: "StatenR@1a08913edfd44837a7e737b90b169ef7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerardjan Toulson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gerardjan Toulson,ou=Peons,dc=bitwarden,dc=com", + email: "ToulsonG@697132edecc44b08a924e05590de1c19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=CheeYong BrownGillard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=CheeYong BrownGillard,ou=Management,dc=bitwarden,dc=com", + email: "BrownGiC@918e521a01f947209849cc2803a3bf8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherri Hamilton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sherri Hamilton,ou=Administrative,dc=bitwarden,dc=com", + email: "HamiltoS@548e0585ebf342b985467eca55f4e5f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden,dc=com", + email: "GopaulA@b95980740e3e4af9a8e0bdf7f4c5cc79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kameko Lozier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kameko Lozier,ou=Human Resources,dc=bitwarden,dc=com", + email: "LozierK@2837fee1af77497ebd94556ee2aed90f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cariotta Loyst,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cariotta Loyst,ou=Administrative,dc=bitwarden,dc=com", + email: "LoystC@9ce6bf5980404783a2a6de74e34f57ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alisa Centre,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alisa Centre,ou=Administrative,dc=bitwarden,dc=com", + email: "CentreA@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shanon Vexler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shanon Vexler,ou=Janitorial,dc=bitwarden,dc=com", + email: "VexlerS@579e377dbccf49f9a1d3ddb8cb18a335.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Air Falkner,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Air Falkner,ou=Administrative,dc=bitwarden,dc=com", + email: "FalknerA@e6c11ea0a5f743ce85492782888f6da6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Burton Backshall,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Burton Backshall,ou=Product Development,dc=bitwarden,dc=com", + email: "BackshaB@d0791fb71f15494a9e924795bc26c624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frinel Beeston,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Frinel Beeston,ou=Product Development,dc=bitwarden,dc=com", + email: "BeestonF@c2fbe2791d9c4564ab131c65109368d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mahmoud Namiki,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mahmoud Namiki,ou=Peons,dc=bitwarden,dc=com", + email: "NamikiM@1bd9378f4faa43eeb60412b52d7ba309.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hpone Paryag,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hpone Paryag,ou=Management,dc=bitwarden,dc=com", + email: "ParyagH@9aa79f8c69db4e08af4e7f9de400cc67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden,dc=com", + email: "HunnicuA@b20e95bb821d468897ef10c14e5d7732.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sieber Sallee,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sieber Sallee,ou=Payroll,dc=bitwarden,dc=com", + email: "SalleeS@b39d8f666f1848e6abb69d85d224a354.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden,dc=com", + email: "KelleheR@f89cfd7b6c774159aa1072f91e39c57d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caria Iribarren,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Caria Iribarren,ou=Payroll,dc=bitwarden,dc=com", + email: "IribarrC@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odelle Translations,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Odelle Translations,ou=Product Development,dc=bitwarden,dc=com", + email: "TranslaO@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carri Putman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carri Putman,ou=Human Resources,dc=bitwarden,dc=com", + email: "PutmanC@e4e6dd48bdee49b19bac8627f30f860e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emelia McDonough,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Emelia McDonough,ou=Product Testing,dc=bitwarden,dc=com", + email: "McDonouE@d7308e0ca15544e4a4a8b07f0f8e915f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Scarlet Netzke,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Scarlet Netzke,ou=Product Development,dc=bitwarden,dc=com", + email: "NetzkeS@04d1c6c3175f4974b260a83a63c42a2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verene Rigstad,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Verene Rigstad,ou=Management,dc=bitwarden,dc=com", + email: "RigstadV@69ee17ca1fce4d84a70a5da5e4623d42.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corette Barbour,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Corette Barbour,ou=Peons,dc=bitwarden,dc=com", + email: "BarbourC@f7bb4a6bddd0428a80f02d8f054f1d38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Becka McConkey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Becka McConkey,ou=Administrative,dc=bitwarden,dc=com", + email: "McConkeB@f1434a2496e04947b22957e2d4157e2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elvina Thomson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Elvina Thomson,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThomsonE@f4bc7e00c89b48dd98661e0980828f00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden,dc=com", + email: "SpitzerR@4583e86a2ba94a5da0ee973472b7f221.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shamshad Kuntova,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shamshad Kuntova,ou=Management,dc=bitwarden,dc=com", + email: "KuntovaS@54f117c8b36b486ab03de0f2d082701e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbey Hews,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Barbey Hews,ou=Payroll,dc=bitwarden,dc=com", + email: "HewsB@a7a2ea5054874ae4b56e15a527bea910.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olympie Sails,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Olympie Sails,ou=Human Resources,dc=bitwarden,dc=com", + email: "SailsO@00ba8548c9214cafaefbf458359d4e04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bessie Kurian,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bessie Kurian,ou=Administrative,dc=bitwarden,dc=com", + email: "KurianB@8f19a5dea8ea45418a7a41a37029db9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardella Nagai,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ardella Nagai,ou=Product Testing,dc=bitwarden,dc=com", + email: "NagaiA@d8616cd8f0a04953a01e474cf74f8ce6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bette Pipit,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bette Pipit,ou=Product Development,dc=bitwarden,dc=com", + email: "PipitB@b417b358872d4f06a467efc0ad01ed42.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sigrid Strock,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sigrid Strock,ou=Human Resources,dc=bitwarden,dc=com", + email: "StrockS@9ef348c30ab2422686d3631e1278083f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benne Baab,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Benne Baab,ou=Administrative,dc=bitwarden,dc=com", + email: "BaabB@baaf0b21059d49b7b0cbaab183707e97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zohar Hauge,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Zohar Hauge,ou=Human Resources,dc=bitwarden,dc=com", + email: "HaugeZ@48f1828297214bd19c99e71d64dfcbf9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden,dc=com", + email: "ClairmoM@26ece7db144b41bb92ce5c1250e537b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LyddaJune Challice,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=LyddaJune Challice,ou=Administrative,dc=bitwarden,dc=com", + email: "ChallicL@25d255df81334378bc3576c7c1d51739.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ediva Hately,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ediva Hately,ou=Payroll,dc=bitwarden,dc=com", + email: "HatelyE@ec52acac521a47c8bb3c3eba39b11afe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faizal Vezina,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Faizal Vezina,ou=Payroll,dc=bitwarden,dc=com", + email: "VezinaF@6dd87ab9e5af49468fc97aebdbd7b449.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", + email: "YarbrouM@d1612f2d13a644a1b4c476bf4354cf19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Champathon Bhatti,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Champathon Bhatti,ou=Management,dc=bitwarden,dc=com", + email: "BhattiC@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Habib Barreyre,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Habib Barreyre,ou=Product Development,dc=bitwarden,dc=com", + email: "BarreyrH@1702c7050ede4a30a493b614c6f96d2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nerita Jansen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nerita Jansen,ou=Payroll,dc=bitwarden,dc=com", + email: "JansenN@f2c84157e6154587ab1b35a9267acfc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rey Bayly,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rey Bayly,ou=Product Testing,dc=bitwarden,dc=com", + email: "BaylyR@ad10fda7d62846699bd55fa5e7fba7a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivian Faruque,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vivian Faruque,ou=Janitorial,dc=bitwarden,dc=com", + email: "FaruqueV@a3ff9ad4378e4e7583f3b4b9731af8f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steve Iyengar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Steve Iyengar,ou=Product Development,dc=bitwarden,dc=com", + email: "IyengarS@2e4bc239cf294f54ac5f0943a69682af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martina Fuson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Martina Fuson,ou=Human Resources,dc=bitwarden,dc=com", + email: "FusonM@0ae738aab8b34e09a528e238e7de4218.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dix NeKueey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dix NeKueey,ou=Human Resources,dc=bitwarden,dc=com", + email: "NeKueeyD@8a81a9b500bd4a66b7be9ae0b34b3c40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden,dc=com", + email: "LangenbG@52c0af83c3aa40458e4bfbccce98b0cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden,dc=com", + email: "HrushowL@38306b84edde4354aecf7858df87e85c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maude Wippel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maude Wippel,ou=Human Resources,dc=bitwarden,dc=com", + email: "WippelM@35f4596c2f6f4d62a06cffe0bc4a52f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherye Tanner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cherye Tanner,ou=Product Development,dc=bitwarden,dc=com", + email: "TannerC@7798e7042f70474aba3b67fa0dae49e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edeline Kingdon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Edeline Kingdon,ou=Administrative,dc=bitwarden,dc=com", + email: "KingdonE@4a47e69492284601911d68b00175e387.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nadya Security,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nadya Security,ou=Product Development,dc=bitwarden,dc=com", + email: "SecuritN@b9738f973d174fefb1c145c3c8510e65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Murray Longo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Murray Longo,ou=Peons,dc=bitwarden,dc=com", + email: "LongoM@28e53bb2a33341d2aa3d71254b03f94e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catherin Witzman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Catherin Witzman,ou=Management,dc=bitwarden,dc=com", + email: "WitzmanC@9e6632ca10d4463a8725e828e08ec1be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harrison Salembier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Harrison Salembier,ou=Janitorial,dc=bitwarden,dc=com", + email: "SalembiH@ac35a0f082f64c8fad3930aef071e266.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Judi Nahata,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Judi Nahata,ou=Payroll,dc=bitwarden,dc=com", + email: "NahataJ@5fa2601aad7947d29e66e0d319cf4fe6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rudie Unxlb,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rudie Unxlb,ou=Management,dc=bitwarden,dc=com", + email: "UnxlbR@70f1ce8795a5424f95be4cd2035c7da5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden,dc=com", + email: "WalkowiR@68160ac83a0c4294838110992a71a0f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noni Garwood,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Noni Garwood,ou=Janitorial,dc=bitwarden,dc=com", + email: "GarwoodN@5a401695e3b247eaaefdf24718c62818.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melanie Sager,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Melanie Sager,ou=Administrative,dc=bitwarden,dc=com", + email: "SagerM@b9f5d400bf0646fc915b7405c1e68fb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Breena Psklib,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Breena Psklib,ou=Product Testing,dc=bitwarden,dc=com", + email: "PsklibB@78e43a217f1544b688e5b552cf94a4d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeni Gros,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jeni Gros,ou=Peons,dc=bitwarden,dc=com", + email: "GrosJ@26c6bb248ba04843bb1af218af492cce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoda Mejury,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Yoda Mejury,ou=Administrative,dc=bitwarden,dc=com", + email: "MejuryY@772f2352dfda4e68a2e93adac56a7699.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charla Mahbeer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Charla Mahbeer,ou=Payroll,dc=bitwarden,dc=com", + email: "MahbeerC@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roana Jurman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roana Jurman,ou=Administrative,dc=bitwarden,dc=com", + email: "JurmanR@9dfbdbf789f545c2997fc26ecdaa5624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden,dc=com", + email: "EfthimE@dfe553cd1a3f4695943b7b16fc34c074.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hqs Bresnan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hqs Bresnan,ou=Administrative,dc=bitwarden,dc=com", + email: "BresnanH@e43cc7ce085348f1b4b8706b3e875f12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tuhina Syrett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tuhina Syrett,ou=Product Development,dc=bitwarden,dc=com", + email: "SyrettT@1f071e8813ad43c0a975571fab76b110.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchwadeD@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZattierL@765c6bf8e6a844bd84fd3519331c09a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genia Oestreich,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Genia Oestreich,ou=Human Resources,dc=bitwarden,dc=com", + email: "OestreiG@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden,dc=com", + email: "WielandL@bcf6de0b8d2c44a68286d08f9d47b1f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bianka Zeiger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bianka Zeiger,ou=Management,dc=bitwarden,dc=com", + email: "ZeigerB@e02ec4faef1b4085b1936ed885e8098e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessalin Sauve,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jessalin Sauve,ou=Payroll,dc=bitwarden,dc=com", + email: "SauveJ@a54e1a8d83dc4c3fb078394695fc7ec3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saman Dunik,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Saman Dunik,ou=Product Development,dc=bitwarden,dc=com", + email: "DunikS@e743ff560bc141ac901e6e68b4d4b309.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden,dc=com", + email: "BocservG@7e77b31039db4b1f99292c84f6f816dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pierre Latin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pierre Latin,ou=Product Development,dc=bitwarden,dc=com", + email: "LatinP@644890029ffd446eb74105a23250b77a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nariko Hobgood,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nariko Hobgood,ou=Peons,dc=bitwarden,dc=com", + email: "HobgoodN@9ed24949c63a464eabe81723e17de419.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isin Scheck,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Isin Scheck,ou=Administrative,dc=bitwarden,dc=com", + email: "ScheckI@bc1e9c4893b549519fdc2cec6b403596.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tessy McClelland,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tessy McClelland,ou=Human Resources,dc=bitwarden,dc=com", + email: "McClellT@60dd1cbe4aa24d86beb286bcf0b69548.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dany Barel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dany Barel,ou=Human Resources,dc=bitwarden,dc=com", + email: "BarelD@6bff82c20ec04cdbbb19d4912ec16456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lana Ellerman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lana Ellerman,ou=Janitorial,dc=bitwarden,dc=com", + email: "EllermaL@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dusan Bcs,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dusan Bcs,ou=Payroll,dc=bitwarden,dc=com", + email: "BcsD@293ff1600ea248568d3941cc4fb51d60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shekhar Howat,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shekhar Howat,ou=Administrative,dc=bitwarden,dc=com", + email: "HowatS@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden,dc=com", + email: "deCHABED@4dd695555b2a49e2b74882d7eff564a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shara Tims,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shara Tims,ou=Management,dc=bitwarden,dc=com", + email: "TimsS@5d35c5b6f750428c9353f8dff621462f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Floyd Shelby,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Floyd Shelby,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShelbyF@f4427bd3a5b545c2b85736658e707e3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", + email: "RicciutM@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dacie Kato,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dacie Kato,ou=Administrative,dc=bitwarden,dc=com", + email: "KatoD@3e66c64942f744cf87e59fe75cc026a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden,dc=com", + email: "AbadineG@28bab7013196462088adedc0b611337e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenore Spraggins,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lenore Spraggins,ou=Management,dc=bitwarden,dc=com", + email: "SpraggiL@48f1828297214bd19c99e71d64dfcbf9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prafula Diffee,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Prafula Diffee,ou=Management,dc=bitwarden,dc=com", + email: "DiffeeP@e57fc3c0c9fd4fe59e5be73e693747dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchmoeM@acd0b809d8b743afb94979b86a5c2246.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lelah Marcellus,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lelah Marcellus,ou=Peons,dc=bitwarden,dc=com", + email: "MarcellL@169cb65474a04a90af058154d6e97aa7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marion Commons,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marion Commons,ou=Payroll,dc=bitwarden,dc=com", + email: "CommonsM@f20cdd91b77c4fa1af532b2ee7f13b4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gay Golia,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gay Golia,ou=Payroll,dc=bitwarden,dc=com", + email: "GoliaG@da12337d358141f5bd4c9f1cff61b597.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susanetta Technosoft,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Susanetta Technosoft,ou=Peons,dc=bitwarden,dc=com", + email: "TechnosS@b691a9d9d55d48b682fc2aa40cacb560.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden,dc=com", + email: "LevasseJ@be3459b8963e4676a7255dc7efa74560.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nha Chytil,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nha Chytil,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChytilN@802b05236c97484db9a6d34278cbb7c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Newton Hoddinott,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Newton Hoddinott,ou=Peons,dc=bitwarden,dc=com", + email: "HoddinoN@7eb3446796544055a8625bc9cff5db0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allyn Aitken,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Allyn Aitken,ou=Product Testing,dc=bitwarden,dc=com", + email: "AitkenA@7946abd9e23746828acbb3d03a0807b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anand Lojewski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Anand Lojewski,ou=Product Testing,dc=bitwarden,dc=com", + email: "LojewskA@c6d1ec6a4914414f92d063e0d067da44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kitt Fetzko,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kitt Fetzko,ou=Payroll,dc=bitwarden,dc=com", + email: "FetzkoK@bd7ed784957343358f080e4bf8b3e472.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fleet Nie,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fleet Nie,ou=Product Testing,dc=bitwarden,dc=com", + email: "NieF@b7e1a16b9cde4b3eaeea7ec65d5e0355.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WeeThong Berube,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=WeeThong Berube,ou=Management,dc=bitwarden,dc=com", + email: "BerubeW@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden,dc=com", + email: "MorettiM@e238991b4ea94ec2a590fa4d2299b05f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farshid Gard,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Farshid Gard,ou=Payroll,dc=bitwarden,dc=com", + email: "GardF@a06bbbc55c33432c98c9104924935152.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden,dc=com", + email: "LampmanR@3043aaac30ae49c8997df0727179c296.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Violet Potvin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Violet Potvin,ou=Peons,dc=bitwarden,dc=com", + email: "PotvinV@a08efe5b84294d16861c8c7bd814d0f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Indy Calder,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Indy Calder,ou=Administrative,dc=bitwarden,dc=com", + email: "CalderI@f049893b54cd4adb8a60be3288ab94cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwenette Feild,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gwenette Feild,ou=Management,dc=bitwarden,dc=com", + email: "FeildG@e63b193a86324aeaa005190985da3761.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guillermo Leavell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Guillermo Leavell,ou=Administrative,dc=bitwarden,dc=com", + email: "LeavellG@d52f84a4faf148e392088a55b1d91d85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henryetta Raing,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Henryetta Raing,ou=Human Resources,dc=bitwarden,dc=com", + email: "RaingH@6c398eb0cd5c4b4784131d450d82aca7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petronia Bermel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Petronia Bermel,ou=Administrative,dc=bitwarden,dc=com", + email: "BermelP@8a34c70e0b134b1abc06ed65698294f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden,dc=com", + email: "PollinzA@d79e418348c94168b4dd89d46432d83f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Remi Giuliani,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Remi Giuliani,ou=Payroll,dc=bitwarden,dc=com", + email: "GiulianR@14d341098b454a7bb14a0607de600424.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faizal Moussette,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Faizal Moussette,ou=Peons,dc=bitwarden,dc=com", + email: "MoussetF@0a5665832ffe44f8afdc48293ba69573.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Connie Barentsen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Connie Barentsen,ou=Product Development,dc=bitwarden,dc=com", + email: "BarentsC@866dcdf7141f4b00b327974f7403df8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verla Trottier,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Verla Trottier,ou=Administrative,dc=bitwarden,dc=com", + email: "TrottieV@02579819bace4f10858d46919dbea287.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vincente Isip,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vincente Isip,ou=Payroll,dc=bitwarden,dc=com", + email: "IsipV@3ebdc674ebed47c4a4f33a4fcf39c448.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden,dc=com", + email: "SchaefeT@910f877bb3744ec8a7fde724ecbc2355.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pal Burchby,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pal Burchby,ou=Payroll,dc=bitwarden,dc=com", + email: "BurchbyP@67726c3db6374bb3bfa2e22fd29415c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ibbie Gung,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ibbie Gung,ou=Peons,dc=bitwarden,dc=com", + email: "GungI@0b027bdff1d041629ac882de18aab2e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ned Pownall,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ned Pownall,ou=Janitorial,dc=bitwarden,dc=com", + email: "PownallN@536233742e094d32a93b46e75cbb8e9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucky Carmody,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lucky Carmody,ou=Product Testing,dc=bitwarden,dc=com", + email: "CarmodyL@64262e7f36fb4e62b9763eac72d5b421.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mayumi Presgrove,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mayumi Presgrove,ou=Management,dc=bitwarden,dc=com", + email: "PresgroM@d843134b5a6249eda76a289f48094398.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MunHang Altay,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=MunHang Altay,ou=Peons,dc=bitwarden,dc=com", + email: "AltayM@96682e2a4433480fa87b37b2ffbd15b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Savina Wefers,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Savina Wefers,ou=Administrative,dc=bitwarden,dc=com", + email: "WefersS@2644ea139af74505ae830870e9453a4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjoke NewLab,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marjoke NewLab,ou=Administrative,dc=bitwarden,dc=com", + email: "NewLabM@814dda3cb4844359b194c7c1721b00a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caralie Ferner,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Caralie Ferner,ou=Management,dc=bitwarden,dc=com", + email: "FernerC@fac250dee9af4898ab4d0ae592252d91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julio Marineau,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Julio Marineau,ou=Administrative,dc=bitwarden,dc=com", + email: "MarineaJ@71d3d1f769604a3488d5ddef3b60da65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olivette Crompton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Olivette Crompton,ou=Product Testing,dc=bitwarden,dc=com", + email: "CromptoO@ba5fbd8ccee64957820f429bea9cbd2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roly Slobodrian,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roly Slobodrian,ou=Product Development,dc=bitwarden,dc=com", + email: "SlobodrR@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Partha Archibald,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Partha Archibald,ou=Product Testing,dc=bitwarden,dc=com", + email: "ArchibaP@228bf00bc301425ea3b9e943ef8da200.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emerson Tait,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Emerson Tait,ou=Janitorial,dc=bitwarden,dc=com", + email: "TaitE@16f4ba41e9ce46f887a8d5af57b9057c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claudette Talbot,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Claudette Talbot,ou=Product Testing,dc=bitwarden,dc=com", + email: "TalbotC@c6f2558da4e64d1a92ecfa7046888845.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden,dc=com", + email: "KolesniA@736a95b54bac464a997ec017d18bac14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dominica Nttest,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dominica Nttest,ou=Product Development,dc=bitwarden,dc=com", + email: "NttestD@a5390b0a929f4049987256511e1011a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden,dc=com", + email: "TebbeT@f2be683ee5744190957c1b7e8dba3ddd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden,dc=com", + email: "DunsmorP@c50001e1264a4acfa5c0640c389ba320.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilak McGruder,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tilak McGruder,ou=Peons,dc=bitwarden,dc=com", + email: "McGrudeT@37bf4a5746434161add8180aecc906d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rieni Faley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rieni Faley,ou=Product Testing,dc=bitwarden,dc=com", + email: "FaleyR@9a209519348642769473b09231da3137.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alice Rist,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alice Rist,ou=Management,dc=bitwarden,dc=com", + email: "RistA@96aca1386b95408bb0fa75eae456680d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nona Diee,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nona Diee,ou=Product Testing,dc=bitwarden,dc=com", + email: "DieeN@59366f30a0164aa7a53680e97db8816b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChongLai Jennings,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=ChongLai Jennings,ou=Product Development,dc=bitwarden,dc=com", + email: "JenningC@b5110eee63164b03a1156fbe465ff053.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zdenka Filkins,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Zdenka Filkins,ou=Administrative,dc=bitwarden,dc=com", + email: "FilkinsZ@a9c59171bde04e7ba8c3ddd4da73b134.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden,dc=com", + email: "LongpreL@e4e042389aa64630b74c843d58da1b0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden,dc=com", + email: "HannulaC@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adelind Loveday,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Adelind Loveday,ou=Human Resources,dc=bitwarden,dc=com", + email: "LovedayA@05ead9116c4b4fc8909d1d71879a73f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden,dc=com", + email: "RiordanA@c659efb530134031a977821791781191.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariet Hotson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mariet Hotson,ou=Product Development,dc=bitwarden,dc=com", + email: "HotsonM@638dc4979c734dc6a0edddc9856d364c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden,dc=com", + email: "GolaszeV@8aca496809cf4238a39dc0c2b2a9c742.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nirmal Loper,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nirmal Loper,ou=Administrative,dc=bitwarden,dc=com", + email: "LoperN@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhianon Mansi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rhianon Mansi,ou=Product Development,dc=bitwarden,dc=com", + email: "MansiR@0163e1f0b0b44e11ba7d1bbab29d9f5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shamim Pospisil,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shamim Pospisil,ou=Payroll,dc=bitwarden,dc=com", + email: "PospisiS@ee3b17b3006441ea89cd65327cca286b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden,dc=com", + email: "CommonsS@e796563e8bce48b5ba76fcbb11b9e8e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Powell Brar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Powell Brar,ou=Peons,dc=bitwarden,dc=com", + email: "BrarP@9a3790894cf44bf0b7e534074bf381cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nir Saisho,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nir Saisho,ou=Peons,dc=bitwarden,dc=com", + email: "SaishoN@ab3c86d1ac584fffb00ba8469a8050a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden,dc=com", + email: "CantwelS@73094f3ce9ac4263881b0e47be23fd15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milissent Bowes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Milissent Bowes,ou=Product Testing,dc=bitwarden,dc=com", + email: "BowesM@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harmonie Luquire,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Harmonie Luquire,ou=Product Development,dc=bitwarden,dc=com", + email: "LuquireH@97df64fd63964d63ae961e1122586e46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden,dc=com", + email: "LaughtoD@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beth Nolet,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Beth Nolet,ou=Payroll,dc=bitwarden,dc=com", + email: "NoletB@d0494e96e3ad464e9c20a3d7c613cc77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgette Manica,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Georgette Manica,ou=Product Testing,dc=bitwarden,dc=com", + email: "ManicaG@9f4dcfc9947f4a519924493e85b35351.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beitris Linton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Beitris Linton,ou=Human Resources,dc=bitwarden,dc=com", + email: "LintonB@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othella Difilippo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Othella Difilippo,ou=Management,dc=bitwarden,dc=com", + email: "DifilipO@84b57e0771b643809ac58933f98cbf52.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deloris Mattes,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Deloris Mattes,ou=Payroll,dc=bitwarden,dc=com", + email: "MattesD@b34436a247d34fc9bc5677457c93ba78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brittni Holliday,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Brittni Holliday,ou=Product Development,dc=bitwarden,dc=com", + email: "HollidaB@bcc33b39417e4c04a97f5b3c58134988.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pat Pereira,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pat Pereira,ou=Janitorial,dc=bitwarden,dc=com", + email: "PereiraP@4975c1c585e54bc795db4420186bb06b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden,dc=com", + email: "KozakL@8d1dad7a1e434fb6a881d4de0fc41e03.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden,dc=com", + email: "EdmondsZ@4c978255de304b4eb6660f909451b46e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walliw Marling,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Walliw Marling,ou=Peons,dc=bitwarden,dc=com", + email: "MarlingW@6e40ae9d01a3469990a9e83e8c2f8ec4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susann Biggers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Susann Biggers,ou=Management,dc=bitwarden,dc=com", + email: "BiggersS@5e51d9a3833b42d3a0ca89712e0f4b6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niek Sainsbury,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Niek Sainsbury,ou=Payroll,dc=bitwarden,dc=com", + email: "SainsbuN@a55a0552890b4055ae5195bed49574db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChyeLian Codack,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ChyeLian Codack,ou=Management,dc=bitwarden,dc=com", + email: "CodackC@67c03444c05a42a3b6969db268f587ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bailey Altmann,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bailey Altmann,ou=Janitorial,dc=bitwarden,dc=com", + email: "AltmannB@4231983db0fc4e4dbb0a6c07f8f902a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden,dc=com", + email: "DmsrtimG@0af04fcd60da40099a5a068c388bafe2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rich Ruigrok,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rich Ruigrok,ou=Management,dc=bitwarden,dc=com", + email: "RuigrokR@ba4f810ac4254d8dbe9cfd7199a37cf3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mason AbiAad,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mason AbiAad,ou=Peons,dc=bitwarden,dc=com", + email: "AbiAadM@d153ea0cdea446bcae59fcfadb7ae1da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nike Mayfield,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nike Mayfield,ou=Human Resources,dc=bitwarden,dc=com", + email: "MayfielN@e283d01de99446bc9d29b5fac0fa1bca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranson Darden,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ranson Darden,ou=Janitorial,dc=bitwarden,dc=com", + email: "DardenR@f16a2d687f8e42b59a7e0fd83e0707b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden,dc=com", + email: "RomanowS@893bc48ed45e4ab7ab4ee0815dd34812.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raju Ciochon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Raju Ciochon,ou=Product Development,dc=bitwarden,dc=com", + email: "CiochonR@63ff836ac8c24e04a4d1edd33fa65c85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden,dc=com", + email: "DunbarJ@ba6173368f8d45d6bc4e88d832382485.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden,dc=com", + email: "TempleDE@b05ff67fc97048daa745e10c79506c73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sammy Sourour,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sammy Sourour,ou=Peons,dc=bitwarden,dc=com", + email: "SourourS@02e89016127d40e485d3c85f04f6d436.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theresa Dolson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Theresa Dolson,ou=Janitorial,dc=bitwarden,dc=com", + email: "DolsonT@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lotti Farnum,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lotti Farnum,ou=Payroll,dc=bitwarden,dc=com", + email: "FarnumL@308bfff65d134099bb462e88bbd36698.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fouad Caton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fouad Caton,ou=Product Testing,dc=bitwarden,dc=com", + email: "CatonF@cf49925012a7483a8306930aeb4cf78e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terry Lodeserto,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Terry Lodeserto,ou=Peons,dc=bitwarden,dc=com", + email: "LodeserT@a4626a0d04a64c1083f47ce852f633ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fei Bebee,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fei Bebee,ou=Product Testing,dc=bitwarden,dc=com", + email: "BebeeF@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oral Hamid,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Oral Hamid,ou=Peons,dc=bitwarden,dc=com", + email: "HamidO@a71cdec4b0f443efb562be5952de7f81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anabelle Krater,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anabelle Krater,ou=Human Resources,dc=bitwarden,dc=com", + email: "KraterA@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginnie Vosu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ginnie Vosu,ou=Management,dc=bitwarden,dc=com", + email: "VosuG@ed87fa3a81eb418da1bb630466cba42d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anallese Haufe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anallese Haufe,ou=Janitorial,dc=bitwarden,dc=com", + email: "HaufeA@56d11716ccc04cd3b803f8858fc5a1ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roze Bakkum,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Roze Bakkum,ou=Management,dc=bitwarden,dc=com", + email: "BakkumR@a26084161ba1445494da78b7a16404c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden,dc=com", + email: "JamenskK@e6ed933c0a1d45ec83769226267acd7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belvia Aylwin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Belvia Aylwin,ou=Administrative,dc=bitwarden,dc=com", + email: "AylwinB@fb6923d9574749cc9a77b6988394e1a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duong Bannard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Duong Bannard,ou=Administrative,dc=bitwarden,dc=com", + email: "BannardD@10e90e32f8224ce7bbb550670baa2ab8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kees Rashid,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kees Rashid,ou=Janitorial,dc=bitwarden,dc=com", + email: "RashidK@351deec9477e4e51877822ae4f8cd070.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cami Glew,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cami Glew,ou=Management,dc=bitwarden,dc=com", + email: "GlewC@0df8f05e50bc474da42b5a37234e2e7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tien Giuliani,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tien Giuliani,ou=Payroll,dc=bitwarden,dc=com", + email: "GiulianT@6a7e60c1eef24773be3efbf0c4240827.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evie Morin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Evie Morin,ou=Administrative,dc=bitwarden,dc=com", + email: "MorinE@f2c07dab9bd04b82822cc496cad44d9f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorena Godina,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dorena Godina,ou=Peons,dc=bitwarden,dc=com", + email: "GodinaD@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arn Ricketts,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arn Ricketts,ou=Peons,dc=bitwarden,dc=com", + email: "RickettA@7612c1ed110442fbbc70e6069bdde272.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatriz Hagley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Beatriz Hagley,ou=Payroll,dc=bitwarden,dc=com", + email: "HagleyB@417a3a09bd36400f8dce8f57ab33032c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karissa AuYang,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karissa AuYang,ou=Management,dc=bitwarden,dc=com", + email: "AuYangK@0695846df1ff4a078ca865ab0794005c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden,dc=com", + email: "AnnunziP@87263f2ad4e44ac39562038c9af16152.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Froukje Kennedy,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Froukje Kennedy,ou=Management,dc=bitwarden,dc=com", + email: "KennedyF@e55b43fab5194d70867c5cdfb0b99fcb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hazel Nash,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hazel Nash,ou=Product Development,dc=bitwarden,dc=com", + email: "NashH@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Soyeh Neely,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Soyeh Neely,ou=Product Testing,dc=bitwarden,dc=com", + email: "NeelyS@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WaiChau McHale,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=WaiChau McHale,ou=Product Testing,dc=bitwarden,dc=com", + email: "McHaleW@ea90c3e9804d4eccbf51d816e6665474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathrine Schejbal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kathrine Schejbal,ou=Peons,dc=bitwarden,dc=com", + email: "SchejbaK@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shobana Eisler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shobana Eisler,ou=Management,dc=bitwarden,dc=com", + email: "EislerS@a922ba05488e401e9633fbd1813d714f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joete Stamps,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Joete Stamps,ou=Payroll,dc=bitwarden,dc=com", + email: "StampsJ@85c3b55181514b55979bbf8d48a7d2ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oneida Curnow,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Oneida Curnow,ou=Peons,dc=bitwarden,dc=com", + email: "CurnowO@ea3044bbf20e4e989696a49bb606f948.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naohiko McCray,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Naohiko McCray,ou=Janitorial,dc=bitwarden,dc=com", + email: "McCrayN@04448fada1ea4fa4b445ea9be1736993.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lang DeBoer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lang DeBoer,ou=Product Development,dc=bitwarden,dc=com", + email: "DeBoerL@fff701bd2ea44826a3be41e44496b16d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selime Yuengling,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Selime Yuengling,ou=Peons,dc=bitwarden,dc=com", + email: "YuengliS@b99d09dc15214a99a049d574cca06ad4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dolli Cracknell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dolli Cracknell,ou=Payroll,dc=bitwarden,dc=com", + email: "CrackneD@0477f7500cad42ceb4af441ae4e4ca2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden,dc=com", + email: "EckhartR@519077386b7144648a1af65801ba340e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Justino Willhoff,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Justino Willhoff,ou=Janitorial,dc=bitwarden,dc=com", + email: "WillhofJ@756ec4d446d24d4291f75c428b4e0284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ShingCheong Eastus,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ShingCheong Eastus,ou=Management,dc=bitwarden,dc=com", + email: "EastusS@b9e3cd16f2b646b993b7e643861e809b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Said Fran,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Said Fran,ou=Product Development,dc=bitwarden,dc=com", + email: "FranS@6105773677f144b2ba0b3fcab80e7802.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olga Rehbein,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Olga Rehbein,ou=Peons,dc=bitwarden,dc=com", + email: "RehbeinO@00018780c15f455eb74328ce8b255114.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quinta Blezard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Quinta Blezard,ou=Management,dc=bitwarden,dc=com", + email: "BlezardQ@222e3b4f0b4746df8dd6c24b1a79a79b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felisha Linke,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Felisha Linke,ou=Peons,dc=bitwarden,dc=com", + email: "LinkeF@aca976004a314abfbb7dfda7c7926044.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden,dc=com", + email: "SlautteK@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden,dc=com", + email: "YanosikV@0030e1596d9147918c7c2fdae8f6513c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elisabet Somppi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elisabet Somppi,ou=Administrative,dc=bitwarden,dc=com", + email: "SomppiE@388f37e043f44f87a961652591a7a940.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arda Poluchowska,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Arda Poluchowska,ou=Management,dc=bitwarden,dc=com", + email: "PoluchoA@59a53864c7aa4d7ea9936880199e460a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden,dc=com", + email: "DaugaviC@c9b145063e654a36b0f903ec21358b26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valry Agnihotri,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Valry Agnihotri,ou=Peons,dc=bitwarden,dc=com", + email: "AgnihotV@8cf075f892994459a2bb7138294f3585.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerri Rosko,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gerri Rosko,ou=Payroll,dc=bitwarden,dc=com", + email: "RoskoG@87ac1189e97646f890363efe4db63ec0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden,dc=com", + email: "McMasteM@f01315dbdd864d028245d0f49a2de87a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farouk Korf,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Farouk Korf,ou=Human Resources,dc=bitwarden,dc=com", + email: "KorfF@756bb6f9687f4cb8b648d97f2eda64b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden,dc=com", + email: "WagnerJ@0033304ecf264958be4e3649e61343d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden,dc=com", + email: "MussallN@6b26c4bc2c534e799205cb4979fba2ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valida Ribi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Valida Ribi,ou=Administrative,dc=bitwarden,dc=com", + email: "RibiV@f090dc2fb4b84377af0ef3308a0fb4cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maynie Levert,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maynie Levert,ou=Janitorial,dc=bitwarden,dc=com", + email: "LevertM@a97141a360d8445daa6a6439dfbbd290.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Floria DAoust,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Floria DAoust,ou=Product Development,dc=bitwarden,dc=com", + email: "DAoustF@d69ecc02f7cc498a8c0f20edc1735b63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Den Ormesher,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Den Ormesher,ou=Administrative,dc=bitwarden,dc=com", + email: "OrmesheD@ec10cc023e454fb0bbdd9208be69f4fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden,dc=com", + email: "ReynoldL@7af30a4b3f91418e9e6fee4aafd165df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brier VanNeste,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brier VanNeste,ou=Janitorial,dc=bitwarden,dc=com", + email: "VanNestB@7b25e3cdf8714ae1a2b9340b249e36c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchenkeK@71c9697cb5b44c66abac282f624d120e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pars Fleury,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pars Fleury,ou=Administrative,dc=bitwarden,dc=com", + email: "FleuryP@c3d2d2c0ad16421093e58b9a80d13fae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roshelle Latif,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Roshelle Latif,ou=Payroll,dc=bitwarden,dc=com", + email: "LatifR@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden,dc=com", + email: "HemphilA@7648a4a2dba943e48a8b8e6e57e6c163.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden,dc=com", + email: "YazdaniR@a2522479a3ee40098579019920206caf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micah Eva,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Micah Eva,ou=Product Testing,dc=bitwarden,dc=com", + email: "EvaM@e133020db6a24c759a701885b4f7f426.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdalen Howe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Magdalen Howe,ou=Payroll,dc=bitwarden,dc=com", + email: "HoweM@21063d63862a4b1aa0c4c81ad5ebd22a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden,dc=com", + email: "HornbeeB@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden,dc=com", + email: "DaigleJ@2f0ef4b1759e41b483f68723f29c3b29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gloriane Knitl,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gloriane Knitl,ou=Peons,dc=bitwarden,dc=com", + email: "KnitlG@5da7177901fc42a3a2e0603d9a2f29e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Issy Paget,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Issy Paget,ou=Product Testing,dc=bitwarden,dc=com", + email: "PagetI@865a836daa5b4648b95df389d46126d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Justinn Mazey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Justinn Mazey,ou=Product Testing,dc=bitwarden,dc=com", + email: "MazeyJ@a2c6fbef8f1b420994ca3b288c3969a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nan Wellard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nan Wellard,ou=Human Resources,dc=bitwarden,dc=com", + email: "WellardN@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryana Sathe,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bryana Sathe,ou=Peons,dc=bitwarden,dc=com", + email: "SatheB@13da8e4c7f9644f5a68d87ae81657c2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pavla Keiser,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pavla Keiser,ou=Administrative,dc=bitwarden,dc=com", + email: "KeiserP@d424430a319442dd8ccc18dd79f178d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myriam Blezard,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Myriam Blezard,ou=Janitorial,dc=bitwarden,dc=com", + email: "BlezardM@9dd46e72015c4014b5f15189a14009e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden,dc=com", + email: "CuperM@7f63e51441fc4e1aab1257e0bb185e66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shobana Berna,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shobana Berna,ou=Human Resources,dc=bitwarden,dc=com", + email: "BernaS@231bc329012a4b71830de92a0a747aec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginni Felske,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ginni Felske,ou=Product Testing,dc=bitwarden,dc=com", + email: "FelskeG@7e7a2a61072144f1bbb5c3973fb03067.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HingFai Shearer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=HingFai Shearer,ou=Management,dc=bitwarden,dc=com", + email: "ShearerH@7969b0806fba4e3d88a5a3efd04eb548.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden,dc=com", + email: "DilalloY@36b4191e06e749fa9ae622f109b3b75b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alissa Junkin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alissa Junkin,ou=Administrative,dc=bitwarden,dc=com", + email: "JunkinA@c219bf062505483787e15d8eef41ed24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryon Valko,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bryon Valko,ou=Payroll,dc=bitwarden,dc=com", + email: "ValkoB@ea79beffe5bf4069ab41a806bbd716f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matt Casey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Matt Casey,ou=Peons,dc=bitwarden,dc=com", + email: "CaseyM@602d8f6d1a6449018081ad850b50b27b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lizette Klappholz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lizette Klappholz,ou=Peons,dc=bitwarden,dc=com", + email: "KlapphoL@753b4215422c4be18da9d3838b304ad2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryl Petrick,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Maryl Petrick,ou=Peons,dc=bitwarden,dc=com", + email: "PetrickM@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thalia Felske,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Thalia Felske,ou=Payroll,dc=bitwarden,dc=com", + email: "FelskeT@7ea385d9791745059f886b750a2e50fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Louisa Macoosh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Louisa Macoosh,ou=Product Development,dc=bitwarden,dc=com", + email: "MacooshL@4376a00e71594ef1b26e2e0a8e02ecaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dino Kurauchi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dino Kurauchi,ou=Peons,dc=bitwarden,dc=com", + email: "KurauchD@df1443771fec4b9b851db7a87599995c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heida Kyoung,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Heida Kyoung,ou=Payroll,dc=bitwarden,dc=com", + email: "KyoungH@fad13712be524b2bb53fd1f676c9976a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fleurette Neyman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fleurette Neyman,ou=Management,dc=bitwarden,dc=com", + email: "NeymanF@e9ed05b9fb474121a884b5f5eaada8bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden,dc=com", + email: "RigsbeeZ@3b4c579bb3694dc89217301699689565.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susanne Keates,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Susanne Keates,ou=Management,dc=bitwarden,dc=com", + email: "KeatesS@7ec11ccdde9a4f8c84d9525ea5fe4ff1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden,dc=com", + email: "ProudfoJ@a90852e05a704b189e86f5be23a6fead.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden,dc=com", + email: "WilkesA@8415106c9bc644ca88df9b8987cb1aef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alyce Gravely,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alyce Gravely,ou=Janitorial,dc=bitwarden,dc=com", + email: "GravelyA@8e58146437ae4809935cbbfea9366714.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulo Whidden,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Paulo Whidden,ou=Product Development,dc=bitwarden,dc=com", + email: "WhiddenP@3bf5412f9df744cdbfb41ee6ad860514.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lee Abbott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lee Abbott,ou=Human Resources,dc=bitwarden,dc=com", + email: "AbbottL@4160dbb07b29483d98d27e9c15a9e3bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mustapha Tull,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mustapha Tull,ou=Payroll,dc=bitwarden,dc=com", + email: "TullM@07bd916cf158429f8580a7fcf2ca8d82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tsing Oakley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tsing Oakley,ou=Management,dc=bitwarden,dc=com", + email: "OakleyT@aab792405d0e421e9faa1d2235dbde11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ozlem Nys,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ozlem Nys,ou=Administrative,dc=bitwarden,dc=com", + email: "NysO@9050ca894d2e4faaa4c16fc83c480a1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Canute Fran,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Canute Fran,ou=Payroll,dc=bitwarden,dc=com", + email: "FranC@8029b2d4dc2441e188d25c43ec86afd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erina RTP,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Erina RTP,ou=Payroll,dc=bitwarden,dc=com", + email: "RTPE@af7219707df54fa3a07b2c4c1c18c6db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Efdal Maund,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Efdal Maund,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaundE@ea33ceb5d67949f9a3def71720aea530.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peggy Corpening,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Peggy Corpening,ou=Janitorial,dc=bitwarden,dc=com", + email: "CorpeniP@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hiren Bopp,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hiren Bopp,ou=Peons,dc=bitwarden,dc=com", + email: "BoppH@f0be25ac1a9142fbafef7971f03b3c8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neala Seeds,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Neala Seeds,ou=Management,dc=bitwarden,dc=com", + email: "SeedsN@b9fd76bcb36c44ce9fb6bf40da399946.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Torie Seamster,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Torie Seamster,ou=Janitorial,dc=bitwarden,dc=com", + email: "SeamsteT@dc389f3c42ad495288e841e30bcf37cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden,dc=com", + email: "MattsonR@8225e046db804e04b9a2cde5ffe23088.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden,dc=com", + email: "PlmcoopL@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benoit Heilsnis,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Benoit Heilsnis,ou=Management,dc=bitwarden,dc=com", + email: "HeilsniB@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madalyn Timmons,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Madalyn Timmons,ou=Administrative,dc=bitwarden,dc=com", + email: "TimmonsM@d5949360307842458664ec19684f5fbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frinel Reiser,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Frinel Reiser,ou=Janitorial,dc=bitwarden,dc=com", + email: "ReiserF@4038f35398434f35b757e53f593f7609.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden,dc=com", + email: "LeBlancT@59110a8eb1b44c7887a8222252c623b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harish Shukor,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Harish Shukor,ou=Administrative,dc=bitwarden,dc=com", + email: "ShukorH@e94b60e385324317a966bf045a1adf9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felice Hazenboom,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Felice Hazenboom,ou=Management,dc=bitwarden,dc=com", + email: "HazenboF@f77e0f58a0a6420b98bdf66cba559331.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorna Kreimer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lorna Kreimer,ou=Management,dc=bitwarden,dc=com", + email: "KreimerL@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden,dc=com", + email: "VieillaR@9631cf83572b457187e3e13135609236.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rheal Lauten,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rheal Lauten,ou=Management,dc=bitwarden,dc=com", + email: "LautenR@52c6c82549d445678721da442aca8e53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivi Vexler,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vivi Vexler,ou=Human Resources,dc=bitwarden,dc=com", + email: "VexlerV@655d3e1ee97a47bbb182f0f8f120b20e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden,dc=com", + email: "KnesMaxT@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leigha Elwood,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leigha Elwood,ou=Payroll,dc=bitwarden,dc=com", + email: "ElwoodL@218c25dbb17f4d33a804e7f553e646ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Basia Smyth,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Basia Smyth,ou=Peons,dc=bitwarden,dc=com", + email: "SmythB@a08e5c7ab6bd42a9af2ba6fcd91cbe9f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden,dc=com", + email: "DoshiG@ab4945aa25ed4d9d93fe1199c4fd7f3e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mario Cassidy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mario Cassidy,ou=Product Testing,dc=bitwarden,dc=com", + email: "CassidyM@263d73d48ee5419ea1c676473e08abd9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amy Rafol,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Amy Rafol,ou=Janitorial,dc=bitwarden,dc=com", + email: "RafolA@5a6fbc14dafa43aa8f4929e962d562ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lennart Shultz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lennart Shultz,ou=Payroll,dc=bitwarden,dc=com", + email: "ShultzL@e06a3ea69e0543f694c26fcc29d8e66a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherwood Caton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sherwood Caton,ou=Janitorial,dc=bitwarden,dc=com", + email: "CatonS@b6cc594207744e52965d98de10453ef4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tesa Suprick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tesa Suprick,ou=Management,dc=bitwarden,dc=com", + email: "SuprickT@ff246c4446e74d80b9a0be3db943a949.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryl Fleugel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Maryl Fleugel,ou=Peons,dc=bitwarden,dc=com", + email: "FleugelM@3b31b1e22b674d48829733c162895a88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarine Hauge,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clarine Hauge,ou=Peons,dc=bitwarden,dc=com", + email: "HaugeC@a774bfe9f410429f835439e7192aaefa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cordy Ghossein,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cordy Ghossein,ou=Administrative,dc=bitwarden,dc=com", + email: "GhosseiC@dcff8ad1dc3f4785b5ae7b1adb2fe760.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Judith Fuqua,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Judith Fuqua,ou=Peons,dc=bitwarden,dc=com", + email: "FuquaJ@7ac8324ed047496d93c460651ba38b86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurine Boucher,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maurine Boucher,ou=Product Testing,dc=bitwarden,dc=com", + email: "BoucherM@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Billie Shoulars,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Billie Shoulars,ou=Product Development,dc=bitwarden,dc=com", + email: "ShoularB@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trever Shearer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Trever Shearer,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShearerT@5916185da56942a89544e9165bcd412d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden,dc=com", + email: "BalakriJ@14d1b49506834e5c9ccc77fc2529566f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquie Desilets,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jacquie Desilets,ou=Product Development,dc=bitwarden,dc=com", + email: "DesiletJ@19dd9c11e1e24ba5acf8058772d38ba6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden,dc=com", + email: "HoffpauU@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramiz Gung,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ramiz Gung,ou=Administrative,dc=bitwarden,dc=com", + email: "GungR@1bf42132d9e3428b965ff134eb4c90cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Windy Sadeghi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Windy Sadeghi,ou=Product Development,dc=bitwarden,dc=com", + email: "SadeghiW@b9931a18cd464837927f1e3fda3b9311.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden,dc=com", + email: "WorsleyQ@29304bc9f76b483ca16f5ea531e7bcf1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassey Papp,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cassey Papp,ou=Payroll,dc=bitwarden,dc=com", + email: "PappC@8a0ffcfb089f41e2a9b8a526ad5a6649.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurelia Hann,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Aurelia Hann,ou=Human Resources,dc=bitwarden,dc=com", + email: "HannA@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden,dc=com", + email: "BennattS@8b0e9ea1f038436b807e98b4a43ebc09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rani Korpela,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rani Korpela,ou=Product Testing,dc=bitwarden,dc=com", + email: "KorpelaR@108017314a624d21908ec502dfe2ba35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danni Tsuji,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Danni Tsuji,ou=Product Testing,dc=bitwarden,dc=com", + email: "TsujiD@74874b1f59f14645addb6739912642a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fredia Handschy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fredia Handschy,ou=Human Resources,dc=bitwarden,dc=com", + email: "HandschF@75222612f09a48669122f28219f497da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verna Muldoon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Verna Muldoon,ou=Janitorial,dc=bitwarden,dc=com", + email: "MuldoonV@0fc5b098eca54d018d5f544f351b55a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bjorn Treen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bjorn Treen,ou=Human Resources,dc=bitwarden,dc=com", + email: "TreenB@1328e218756d4754a97476c1079975d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden,dc=com", + email: "DekeyseO@9bf9dafac536489a824f4a8be21bc745.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Garth Callery,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Garth Callery,ou=Payroll,dc=bitwarden,dc=com", + email: "CalleryG@b4277bbde59048f39a27a7d14145a06f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Livvie VanOorschot,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Livvie VanOorschot,ou=Peons,dc=bitwarden,dc=com", + email: "VanOorsL@fd1544a938044a8db9c9f3fe2943b130.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anderson Hockaday,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Anderson Hockaday,ou=Peons,dc=bitwarden,dc=com", + email: "HockadaA@1d41a9185db448b89563a6b96b582da2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaia Archer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kaia Archer,ou=Payroll,dc=bitwarden,dc=com", + email: "ArcherK@24654ed939354e3da65d9c0370b72da6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bethany Buder,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bethany Buder,ou=Product Testing,dc=bitwarden,dc=com", + email: "BuderB@010c83cd95d146b392f7ca822e61fa73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden,dc=com", + email: "RanieriL@c03f4de271664bdb800593169930d556.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willie Godse,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Willie Godse,ou=Janitorial,dc=bitwarden,dc=com", + email: "GodseW@f75201d6bca8489ca55858f0848a1669.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden,dc=com", + email: "ShurtleN@cb6528fc9c7340cb803e788c0a111c6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaye Tjia,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gaye Tjia,ou=Payroll,dc=bitwarden,dc=com", + email: "TjiaG@a85c3929256747e4a90337c3ba0f9538.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valencia Claise,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Valencia Claise,ou=Janitorial,dc=bitwarden,dc=com", + email: "ClaiseV@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loria Buckley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Loria Buckley,ou=Administrative,dc=bitwarden,dc=com", + email: "BuckleyL@cfdd74fbc82d447189196d6325d87684.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden,dc=com", + email: "SydorykC@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shahram Campeau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shahram Campeau,ou=Janitorial,dc=bitwarden,dc=com", + email: "CampeauS@81fb0b932b3945ce818faf5c44a57597.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fanchette Zaman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fanchette Zaman,ou=Administrative,dc=bitwarden,dc=com", + email: "ZamanF@520f892e74614b6eaf9cfa5ff5ab84c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Junk Nishith,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Junk Nishith,ou=Peons,dc=bitwarden,dc=com", + email: "NishithJ@1177792fc11347bea581d955434fd518.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bennett Biage,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bennett Biage,ou=Peons,dc=bitwarden,dc=com", + email: "BiageB@cffeb78804aa490585f0a6cc8cbc0f74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klazien Propes,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Klazien Propes,ou=Payroll,dc=bitwarden,dc=com", + email: "PropesK@dd687ab076584ccca8478641e789ca39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kenneth DAnjou,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kenneth DAnjou,ou=Peons,dc=bitwarden,dc=com", + email: "DAnjouK@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parviz Shahen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Parviz Shahen,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShahenP@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden,dc=com", + email: "HunsuckV@e6b52be13e984c2c8799a67382d2c196.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coleen Litherland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Coleen Litherland,ou=Janitorial,dc=bitwarden,dc=com", + email: "LitherlC@8a82552e24c34c32a05d56cde3562a9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChongLai Hingtgen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ChongLai Hingtgen,ou=Management,dc=bitwarden,dc=com", + email: "HingtgeC@411afe1416f249ecaeca51c1080b0066.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Izabel Heeralall,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Izabel Heeralall,ou=Product Development,dc=bitwarden,dc=com", + email: "HeeralaI@86e5c38e7f5c41538bf306ddacec173d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rueben Dynie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rueben Dynie,ou=Product Development,dc=bitwarden,dc=com", + email: "DynieR@59b31ced00714ba083da3568d5c3fc53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lolita Mecteau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lolita Mecteau,ou=Payroll,dc=bitwarden,dc=com", + email: "MecteauL@15e1dad937154f5596069e31511d5e99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gunars Rafflin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gunars Rafflin,ou=Product Development,dc=bitwarden,dc=com", + email: "RafflinG@781f1406846947ac8e77d85a552d214c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thad Besnier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Thad Besnier,ou=Human Resources,dc=bitwarden,dc=com", + email: "BesnierT@86960440b39e484991dab5509dd065da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonard Ireland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Leonard Ireland,ou=Janitorial,dc=bitwarden,dc=com", + email: "IrelandL@6fb157970cd743f9add2879c395cda3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jany Lotz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jany Lotz,ou=Product Testing,dc=bitwarden,dc=com", + email: "LotzJ@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden,dc=com", + email: "MensinkA@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sultan Sergo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sultan Sergo,ou=Human Resources,dc=bitwarden,dc=com", + email: "SergoS@08adbe0d28a046d4a737480e8f7a8864.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden,dc=com", + email: "LuzarraN@38fa64796bc14d52bff67c18f15afb33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden,dc=com", + email: "VandenHR@ba6a021b4ab04e618e804649a47d46ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erena Mersinger,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Erena Mersinger,ou=Janitorial,dc=bitwarden,dc=com", + email: "MersingE@7670182abb394f41a5633ad118cf9427.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nitin Operators,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nitin Operators,ou=Product Development,dc=bitwarden,dc=com", + email: "OperatoN@158d3f3fe926431185097653519b63f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hennrietta Siewert,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hennrietta Siewert,ou=Management,dc=bitwarden,dc=com", + email: "SiewertH@c91f0550b80f407f9309a7740af038d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden,dc=com", + email: "KosturiJ@fa1af835a33740e2a57a5bcf70758d5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othelia Solodko,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Othelia Solodko,ou=Peons,dc=bitwarden,dc=com", + email: "SolodkoO@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huong Commazzi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Huong Commazzi,ou=Product Testing,dc=bitwarden,dc=com", + email: "CommazzH@43a2075086314e66b15465a3ec778b06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duljit Zbuda,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Duljit Zbuda,ou=Payroll,dc=bitwarden,dc=com", + email: "ZbudaD@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thang Bushnell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Thang Bushnell,ou=Payroll,dc=bitwarden,dc=com", + email: "BushnelT@1ea928fc24024e4dbf51eb3081589728.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carri Gary,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carri Gary,ou=Human Resources,dc=bitwarden,dc=com", + email: "GaryC@ca74af6c5dcc4f0b974e414c7310f581.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden,dc=com", + email: "MarscheV@92ea67fb39f84becbbf887d7485c3c5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valli Carlebach,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Valli Carlebach,ou=Product Development,dc=bitwarden,dc=com", + email: "CarlebaV@01d1aca7cbb94392b78f9069af19437c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobb Lacosse,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bobb Lacosse,ou=Peons,dc=bitwarden,dc=com", + email: "LacosseB@468db28ee3ec432fadb0f7251c3b2864.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden,dc=com", + email: "SmaleB@67a50420f0564b4b9d502195a9eb7324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abby Presutti,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Abby Presutti,ou=Administrative,dc=bitwarden,dc=com", + email: "PresuttA@886606fb40e04b00b9dac2bed959f0a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden,dc=com", + email: "WaughI@7bb49167acf14fb699745413bf51b4ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden,dc=com", + email: "LegrandC@fec32bd067f043f9ace8cd549f8f376e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivie Lauson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vivie Lauson,ou=Janitorial,dc=bitwarden,dc=com", + email: "LausonV@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden,dc=com", + email: "GillilaL@5eb9182fed7b491098a3a7edcd1734b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geraldine McLennan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Geraldine McLennan,ou=Management,dc=bitwarden,dc=com", + email: "McLennaG@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glenda Lai,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Glenda Lai,ou=Product Development,dc=bitwarden,dc=com", + email: "LaiG@ae53aabd10664b19a046cac496931fe5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lind Zeiger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lind Zeiger,ou=Administrative,dc=bitwarden,dc=com", + email: "ZeigerL@ac23a3efb4fc4c9b913a615742b5cec6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valina Raaflaub,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Valina Raaflaub,ou=Administrative,dc=bitwarden,dc=com", + email: "RaaflauV@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susanne Alink,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Susanne Alink,ou=Payroll,dc=bitwarden,dc=com", + email: "AlinkS@f80ee53b420043fbaade7eda6821c2a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Al Wrigley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Al Wrigley,ou=Human Resources,dc=bitwarden,dc=com", + email: "WrigleyA@388d6df3272e41188b24fb047a0d1f64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden,dc=com", + email: "BrassemE@e0d712a3d6444bfb88c4e181c5b5e72d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laurie Bijons,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Laurie Bijons,ou=Administrative,dc=bitwarden,dc=com", + email: "BijonsL@d957d37e990148fd9b9079128818783d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Begum Minyard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Begum Minyard,ou=Human Resources,dc=bitwarden,dc=com", + email: "MinyardB@6b490fc40c68440ca61573fe5b83533b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hotline Au,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hotline Au,ou=Product Development,dc=bitwarden,dc=com", + email: "AuH@a220f117ba9a47bf841474c3d9809325.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cornelle Coupal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cornelle Coupal,ou=Peons,dc=bitwarden,dc=com", + email: "CoupalC@006106eb4fa5430982fa52048d307012.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden,dc=com", + email: "ProdmgmV@7747f5fffb014d46a2a05d592c7bbe1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Turkey Moser,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Turkey Moser,ou=Product Development,dc=bitwarden,dc=com", + email: "MoserT@3ae6b803292e4da4b28cd13a1bfe807a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Warwick Mau,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Warwick Mau,ou=Product Testing,dc=bitwarden,dc=com", + email: "MauW@964bc78b98164950b5c94e42f0381893.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden,dc=com", + email: "AbiAadW@fd05e86a9d6648ff83b1905135704728.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wynne Clow,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Wynne Clow,ou=Payroll,dc=bitwarden,dc=com", + email: "ClowW@ace8aeb1c7ed45ec9b1e40da691d3781.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelly Keller,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shelly Keller,ou=Product Testing,dc=bitwarden,dc=com", + email: "KellerS@539cce6ead8749dbb15039351f6600f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ole Carbajal,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ole Carbajal,ou=Administrative,dc=bitwarden,dc=com", + email: "CarbajaO@befc232b3f4240ada061cd42724f306e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Richardson Luxford,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Richardson Luxford,ou=Management,dc=bitwarden,dc=com", + email: "LuxfordR@2ec15169d3824bb991e5ec642147de0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Breanne Tassy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Breanne Tassy,ou=Peons,dc=bitwarden,dc=com", + email: "TassyB@108e0aee5d8240a1ab913e4b9c6c59ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Austina Acree,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Austina Acree,ou=Human Resources,dc=bitwarden,dc=com", + email: "AcreeA@0115872801044ba284591166aa6c228d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gen Rushton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gen Rushton,ou=Peons,dc=bitwarden,dc=com", + email: "RushtonG@7e5dd3d40d75462fa1e8cd66dc2520cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lebbie Lortie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lebbie Lortie,ou=Management,dc=bitwarden,dc=com", + email: "LortieL@2bebf972d05d4565b74cc490d2d76c19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geoff Achcar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Geoff Achcar,ou=Payroll,dc=bitwarden,dc=com", + email: "AchcarG@a035bec181ea4cd9abd3953e80704bef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hollie Amir,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hollie Amir,ou=Payroll,dc=bitwarden,dc=com", + email: "AmirH@5b8fdd487f414248bc005f588420c84d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Timm Alvarez,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Timm Alvarez,ou=Human Resources,dc=bitwarden,dc=com", + email: "AlvarezT@37f6e89a491b4e36b50bf46647ad8a4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huan Adornato,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Huan Adornato,ou=Product Development,dc=bitwarden,dc=com", + email: "AdornatH@0d5ea7c8c89145008270f344ad787afd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden,dc=com", + email: "PlaisanM@e9c23ff2d9044043850cca96d60bbdf5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden,dc=com", + email: "KyzerM@b827ba5736ae48268de38db3e9e259c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reynold Meletios,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Reynold Meletios,ou=Janitorial,dc=bitwarden,dc=com", + email: "MeletioR@4284ced1de0045e2ba27e1b8bfd75a64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Britney Farrell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Britney Farrell,ou=Management,dc=bitwarden,dc=com", + email: "FarrellB@68cfba969ba74400992bfae87ff5159e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marne Tougas,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marne Tougas,ou=Janitorial,dc=bitwarden,dc=com", + email: "TougasM@53866fe0b2f743ba8c1060bb63e44fe7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyanna Goff,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dyanna Goff,ou=Payroll,dc=bitwarden,dc=com", + email: "GoffD@073188fe54434a759fdc0baa318abab1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laverne NetTeam,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Laverne NetTeam,ou=Peons,dc=bitwarden,dc=com", + email: "NetTeamL@d1d366221ba74192a46f7f104d0479c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genny Bladon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Genny Bladon,ou=Janitorial,dc=bitwarden,dc=com", + email: "BladonG@8227646c55034cf9b21757fce681b53f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sask Griswold,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sask Griswold,ou=Product Development,dc=bitwarden,dc=com", + email: "GriswolS@ce9a5204a370483987964a25eaf0057b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rae Beckham,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rae Beckham,ou=Payroll,dc=bitwarden,dc=com", + email: "BeckhamR@b400fcdf725047b698292665de84946c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden,dc=com", + email: "GaryC@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden,dc=com", + email: "LinaughE@964bc78b98164950b5c94e42f0381893.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden,dc=com", + email: "MauldinP@aaf992b9334d42f0913adfd4d6280d9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChoKuen Layton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ChoKuen Layton,ou=Management,dc=bitwarden,dc=com", + email: "LaytonC@f356862401984def8bd045192d245ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merlina Gofron,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Merlina Gofron,ou=Product Development,dc=bitwarden,dc=com", + email: "GofronM@5b1e92da278e4b9ca91014027a0aa9ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jany Kamal,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jany Kamal,ou=Management,dc=bitwarden,dc=com", + email: "KamalJ@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Freddie Rolfes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Freddie Rolfes,ou=Product Development,dc=bitwarden,dc=com", + email: "RolfesF@7eb391b0b5674f9795ca1cebe83846e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nickie Acree,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nickie Acree,ou=Administrative,dc=bitwarden,dc=com", + email: "AcreeN@c3999c476a6d4270acb03c758687a2bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden,dc=com", + email: "FlueckiR@b3ae6dae564847d7ba4d0a12a6361531.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davina Amu,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Davina Amu,ou=Peons,dc=bitwarden,dc=com", + email: "AmuD@d08b187bcf0d40f4953d0fe4abf84b6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden,dc=com", + email: "KouhiA@4048b5b3b12f4302afcee427cb6c6b34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden,dc=com", + email: "FennessY@d7b97704ed464563bae0dc6e06484719.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akin Capelle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Akin Capelle,ou=Product Development,dc=bitwarden,dc=com", + email: "CapelleA@fc4cfa1e28824d9b9e67a02d1242c76a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Focus Decourcy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Focus Decourcy,ou=Payroll,dc=bitwarden,dc=com", + email: "DecourcF@9564989367ee45b494d155a6be9f3761.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moel Wynes,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Moel Wynes,ou=Janitorial,dc=bitwarden,dc=com", + email: "WynesM@4cd419e4880743fba3fb72008e9a330b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bertrand Schiegl,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bertrand Schiegl,ou=Peons,dc=bitwarden,dc=com", + email: "SchieglB@d3284c9107174588867290b3601e936f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden,dc=com", + email: "LakhaniJ@3eb77d9e6bdc439197d45c120ada5eb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coursey Stansfield,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Coursey Stansfield,ou=Management,dc=bitwarden,dc=com", + email: "StansfiC@175f672e954d4d05baa0e0e2d7a5150d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tavis Theodore,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tavis Theodore,ou=Administrative,dc=bitwarden,dc=com", + email: "TheodorT@574eddc7483948a59c9d38d5c8f6a354.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bello Madani,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bello Madani,ou=Management,dc=bitwarden,dc=com", + email: "MadaniB@6b01ea5296ae43ddbca168736ac18b91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sameh Kyoung,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sameh Kyoung,ou=Management,dc=bitwarden,dc=com", + email: "KyoungS@cbc86aec4ebd45fb8e05b7c1a8564753.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liem Isley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Liem Isley,ou=Payroll,dc=bitwarden,dc=com", + email: "IsleyL@41d9d77642444cc9ab9d5b4e9a3c43fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estrella Balsas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Estrella Balsas,ou=Human Resources,dc=bitwarden,dc=com", + email: "BalsasE@14a50969231442b7a4661f1630e8f16c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bailey Trickett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bailey Trickett,ou=Management,dc=bitwarden,dc=com", + email: "TricketB@74ad719f3ca94101b51f4a4b5749fe0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden,dc=com", + email: "CostandR@57507372eada4752ba384ecd326c57ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martha Hovey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Martha Hovey,ou=Management,dc=bitwarden,dc=com", + email: "HoveyM@85af325f68b4407789de4090abc807e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden,dc=com", + email: "SalsberC@c8c34efeb3fd47f485bda2d57f298fa8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChinFui Iezzi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ChinFui Iezzi,ou=Management,dc=bitwarden,dc=com", + email: "IezziC@d117baceef9a4168bde2647e78683a37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cortney Tolar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cortney Tolar,ou=Payroll,dc=bitwarden,dc=com", + email: "TolarC@77dc8afa92a942f990e0358d489eb936.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChandraA@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walter Napke,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Walter Napke,ou=Administrative,dc=bitwarden,dc=com", + email: "NapkeW@638dc4979c734dc6a0edddc9856d364c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenson Yabe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jenson Yabe,ou=Product Development,dc=bitwarden,dc=com", + email: "YabeJ@478d49ea22024f81bf0c3655b7d4984f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanh Preo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hanh Preo,ou=Peons,dc=bitwarden,dc=com", + email: "PreoH@bc24a263fb344aa0a892bcbfdbc90a0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opto Decasper,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Opto Decasper,ou=Human Resources,dc=bitwarden,dc=com", + email: "DecaspeO@ec27ad8054ec49e6b80dae8c88335049.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regan Novak,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Regan Novak,ou=Product Testing,dc=bitwarden,dc=com", + email: "NovakR@458bebdbb1db445da5a7c0df36fdfcef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orella Viriato,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Orella Viriato,ou=Payroll,dc=bitwarden,dc=com", + email: "ViriatoO@8127ace43f234ba5be577208dd638928.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruthy Maher,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ruthy Maher,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaherR@b0093dc523e14382988b5e422d50b328.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxanne Mohammad,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Roxanne Mohammad,ou=Management,dc=bitwarden,dc=com", + email: "MohammaR@b98237c36de745c3a996a916f9116823.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guner Kelso,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Guner Kelso,ou=Product Development,dc=bitwarden,dc=com", + email: "KelsoG@43da9c69baa14266b4c8812eff59c738.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drusy Masapati,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Drusy Masapati,ou=Payroll,dc=bitwarden,dc=com", + email: "MasapatD@fcd97c4a8c3844f08b1e5ede745ae54d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anthiathia Bessell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Anthiathia Bessell,ou=Peons,dc=bitwarden,dc=com", + email: "BessellA@954e7c28b409486ab4b5e846037b6b00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden,dc=com", + email: "BryanV@9df231d2e4bf4076a68fc1ec37967ddc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saibal Swartz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Saibal Swartz,ou=Peons,dc=bitwarden,dc=com", + email: "SwartzS@5c758bae8ef348278f14828cc31d2360.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdi Sulewski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Magdi Sulewski,ou=Administrative,dc=bitwarden,dc=com", + email: "SulewskM@26ea76142f2a4637b028d1aa71d30271.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katharine Byers,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Katharine Byers,ou=Administrative,dc=bitwarden,dc=com", + email: "ByersK@cff08fbfbb494d1cac1d02cef13ff5e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donal Kashaninia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Donal Kashaninia,ou=Product Development,dc=bitwarden,dc=com", + email: "KashaniD@0708f7927e154039bccaf12df5697875.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chicky Sils,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chicky Sils,ou=Human Resources,dc=bitwarden,dc=com", + email: "SilsC@89e33259b1f341dda582db87064be4b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden,dc=com", + email: "UrbieleJ@e7602a60599a42e38e55df23f8bedf7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gillie Dedas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gillie Dedas,ou=Product Testing,dc=bitwarden,dc=com", + email: "DedasG@cd532997f28e491fbc9b8de411038a21.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kassie Dack,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kassie Dack,ou=Administrative,dc=bitwarden,dc=com", + email: "DackK@eef25158b5b94cc287e7e9c6eefb6e6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Munir Gonsalves,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Munir Gonsalves,ou=Peons,dc=bitwarden,dc=com", + email: "GonsalvM@d5693b03fff041e0bff80a2597afaae3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grietje Ansorger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Grietje Ansorger,ou=Peons,dc=bitwarden,dc=com", + email: "AnsorgeG@0a4355ee7fe94c7bb8cc9baf9905f443.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden,dc=com", + email: "WinklemL@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden,dc=com", + email: "McDonneI@7e78b04dbd3c4b8d878396ef3d8060c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden,dc=com", + email: "NovisedM@17e12fc1204748719cf2bf325fcfbdd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Latisha Dallago,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Latisha Dallago,ou=Peons,dc=bitwarden,dc=com", + email: "DallagoL@79e37cdfcd844256b0d515cae5e360dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden,dc=com", + email: "BorodajC@b901034853bb49fab2332c009f7f5577.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luther Attard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Luther Attard,ou=Administrative,dc=bitwarden,dc=com", + email: "AttardL@e049bad88da840aab339da6c7656c9ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elisa Bernier,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elisa Bernier,ou=Payroll,dc=bitwarden,dc=com", + email: "BernierE@03984172df9e48acbd783f2986930e0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cally Rios,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cally Rios,ou=Management,dc=bitwarden,dc=com", + email: "RiosC@93cef961e98e48e482c9b5e04d825449.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flossie Ordway,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Flossie Ordway,ou=Administrative,dc=bitwarden,dc=com", + email: "OrdwayF@e208162ab8d64ca7aba1cebad89531f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trudie Beveridge,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Trudie Beveridge,ou=Payroll,dc=bitwarden,dc=com", + email: "BeveridT@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jin Schavo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jin Schavo,ou=Management,dc=bitwarden,dc=com", + email: "SchavoJ@c77bec2c020044a183f917437c7fdfe4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Birgit Reznick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Birgit Reznick,ou=Payroll,dc=bitwarden,dc=com", + email: "ReznickB@e6d1825771da43ab8c15fdf770febdde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sylvia Manica,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sylvia Manica,ou=Peons,dc=bitwarden,dc=com", + email: "ManicaS@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adelind Vance,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Adelind Vance,ou=Janitorial,dc=bitwarden,dc=com", + email: "VanceA@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odella Anthonissen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Odella Anthonissen,ou=Administrative,dc=bitwarden,dc=com", + email: "AnthoniO@3137189e80b64a7c8c939097944e94dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden,dc=com", + email: "MoraeteE@2fdf5806d6f34ec890d7f79e0eef4970.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=America Turney,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=America Turney,ou=Management,dc=bitwarden,dc=com", + email: "TurneyA@9e6a1308cc704783acacae7fd7bbd94e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rudie Vaughn,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rudie Vaughn,ou=Peons,dc=bitwarden,dc=com", + email: "VaughnR@dfd2035fc95c43339bef38a244e36ede.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idris Hotlist,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Idris Hotlist,ou=Product Development,dc=bitwarden,dc=com", + email: "HotlistI@623538f66c6d44c9949856d7b9d692ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petri Soreanu,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Petri Soreanu,ou=Payroll,dc=bitwarden,dc=com", + email: "SoreanuP@2c933403160143d19a899179ef24cca2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inge Hurteau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Inge Hurteau,ou=Payroll,dc=bitwarden,dc=com", + email: "HurteauI@ca967230de2944e896318dde6183d882.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden,dc=com", + email: "DejonghA@f6353cc2886243fe9b2219b4953d333b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tats McDermott,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tats McDermott,ou=Management,dc=bitwarden,dc=com", + email: "McDermoT@7a3b1be5d62c42abaf0253c9b042dfe2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lianne Wanda,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lianne Wanda,ou=Administrative,dc=bitwarden,dc=com", + email: "WandaL@28e53bb2a33341d2aa3d71254b03f94e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden,dc=com", + email: "RodschaE@09592cdb49ba4e06a680e4327c7f211f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden,dc=com", + email: "BleileK@2af6f21a0f39407fbdd08178b71bb34d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marinna Drane,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marinna Drane,ou=Product Testing,dc=bitwarden,dc=com", + email: "DraneM@79f5757f3e9044b8849adc8729857a5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelly Cavan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shelly Cavan,ou=Administrative,dc=bitwarden,dc=com", + email: "CavanS@ae61f912d37d41959ec8fa8339b2d969.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryce Luetchford,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bryce Luetchford,ou=Management,dc=bitwarden,dc=com", + email: "LuetchfB@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariana Munden,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mariana Munden,ou=Administrative,dc=bitwarden,dc=com", + email: "MundenM@2578fec05f3c4caebb2ed35da0948626.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden,dc=com", + email: "MACKenzL@abe51797f5124683a93236751a4e6fc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morris Pafilis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Morris Pafilis,ou=Peons,dc=bitwarden,dc=com", + email: "PafilisM@4c3f9ac9725344988223c5450f40e73e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirl Clipperton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shirl Clipperton,ou=Payroll,dc=bitwarden,dc=com", + email: "ClipperS@6f1536f416b1420eb770d530c5bda521.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leona Buchko,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Leona Buchko,ou=Janitorial,dc=bitwarden,dc=com", + email: "BuchkoL@318e6f8cd7334449ba69aed9ea189bd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tybi Welsford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tybi Welsford,ou=Human Resources,dc=bitwarden,dc=com", + email: "WelsforT@b8436b0997234174a1d3652199251b81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baris Derome,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Baris Derome,ou=Payroll,dc=bitwarden,dc=com", + email: "DeromeB@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Munir Dickford,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Munir Dickford,ou=Administrative,dc=bitwarden,dc=com", + email: "DickforM@7f5616c56b8c4a60ad958a3ffbba9f8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailsun Yvon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ailsun Yvon,ou=Administrative,dc=bitwarden,dc=com", + email: "YvonA@fded6a4ffab747d786306ddc62c3c811.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeffery Becquart,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jeffery Becquart,ou=Peons,dc=bitwarden,dc=com", + email: "BecquarJ@a8bd7981e56041ddac5e4b90f0535dfa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cindelyn Capozzi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cindelyn Capozzi,ou=Management,dc=bitwarden,dc=com", + email: "CapozziC@4683d74c822246798b509a58b74b661d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regan Hesse,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Regan Hesse,ou=Product Development,dc=bitwarden,dc=com", + email: "HesseR@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aida Blackwell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Aida Blackwell,ou=Payroll,dc=bitwarden,dc=com", + email: "BlackweA@75230f61780f4e0e9cf624359c2b6622.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Justine Aguirre,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Justine Aguirre,ou=Product Development,dc=bitwarden,dc=com", + email: "AguirreJ@8c4f062c4385431b8ef3682c208e76a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurene Zafarullah,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maurene Zafarullah,ou=Management,dc=bitwarden,dc=com", + email: "ZafarulM@6f2328709fbe4233b85bba3d4ce3d844.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden,dc=com", + email: "WhaleyS@68e96d35b7bb4addbceb19d0fa830ff5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karita Donovan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Karita Donovan,ou=Product Testing,dc=bitwarden,dc=com", + email: "DonovanK@612e506d26154bfda9f499632b50c09f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaw Lantto,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shaw Lantto,ou=Product Testing,dc=bitwarden,dc=com", + email: "LanttoS@30919d15fb3f4281a17499420dcfbd91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwen Prog,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gwen Prog,ou=Peons,dc=bitwarden,dc=com", + email: "ProgG@d95fe89a4d1149c9bcf3a6baa177125b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cecile Evans,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cecile Evans,ou=Product Testing,dc=bitwarden,dc=com", + email: "EvansC@63186a053fb840c4904ffef80f864eb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ringo Campara,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ringo Campara,ou=Product Testing,dc=bitwarden,dc=com", + email: "CamparaR@053a5e187b0b4033abb4000d18053cd9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melonie Loveland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melonie Loveland,ou=Janitorial,dc=bitwarden,dc=com", + email: "LovelanM@b0139312a83c40d5aff228440731260a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quinn Malizia,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Quinn Malizia,ou=Payroll,dc=bitwarden,dc=com", + email: "MaliziaQ@4026e9bfc98e483f893d2b9e6722e931.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Virgie Slaby,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Virgie Slaby,ou=Management,dc=bitwarden,dc=com", + email: "SlabyV@c57373b0d5374d00a3d6688cc686509b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden,dc=com", + email: "SmedemaT@e498ba2a91544031964c1fffed4ef12c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamil Daniells,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kamil Daniells,ou=Product Testing,dc=bitwarden,dc=com", + email: "DaniellK@7c43e52d9b034f3bbc23711903010993.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bevvy Dalloste,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bevvy Dalloste,ou=Management,dc=bitwarden,dc=com", + email: "DallostB@741f68246b944172a356682db963a82d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden,dc=com", + email: "LobiancH@a96cfc77d7fd4aca9d37da4b46aad39b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perri Gaylor,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Perri Gaylor,ou=Administrative,dc=bitwarden,dc=com", + email: "GaylorP@526b2e31e79b488fb63ef0570005204a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klink Bruneau,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Klink Bruneau,ou=Management,dc=bitwarden,dc=com", + email: "BruneauK@471393a67ebd4f51b67e7d9aeec04e67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siamack Dace,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Siamack Dace,ou=Administrative,dc=bitwarden,dc=com", + email: "DaceS@d4d56842eb064bd38446a254d77ceab5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShivchaE@e89ca6a0c26a42d387c16cb15d267c2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jay Ginest,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jay Ginest,ou=Human Resources,dc=bitwarden,dc=com", + email: "GinestJ@3cccd227e41948e79986f554706a7781.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilona Caudle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wilona Caudle,ou=Product Development,dc=bitwarden,dc=com", + email: "CaudleW@90463e36c9634ed7af09a58415debfe0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden,dc=com", + email: "NevardaU@83146e7f57ba40bd8fd147c075fc9a0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden,dc=com", + email: "GibeaulS@d449a5092c5940c4981c5759373cd556.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laz Plante,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Laz Plante,ou=Product Development,dc=bitwarden,dc=com", + email: "PlanteL@737f5132e7a343ceaab6a20163c2ba4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden,dc=com", + email: "KathnelM@7ab7643662f14cef84497ec647fde7ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellene Holberry,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ellene Holberry,ou=Administrative,dc=bitwarden,dc=com", + email: "HolberrE@0c0cb73653474aa4b8a172e8089ffde7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niel McComb,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Niel McComb,ou=Peons,dc=bitwarden,dc=com", + email: "McCombN@840c6c20816640f3a23c22832cd051de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anni Demchuk,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anni Demchuk,ou=Human Resources,dc=bitwarden,dc=com", + email: "DemchukA@75230f61780f4e0e9cf624359c2b6622.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chen Crosson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chen Crosson,ou=Janitorial,dc=bitwarden,dc=com", + email: "CrossonC@948fee4ac0644e21a6b3abc34aeaa20f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarsonyA@ac405217bf53481daa900e9995e259fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden,dc=com", + email: "KirkwooJ@b154fab59ca14553be1151ffa2cd4d97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lonna Leong,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lonna Leong,ou=Administrative,dc=bitwarden,dc=com", + email: "LeongL@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drusie Prewitt,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Drusie Prewitt,ou=Management,dc=bitwarden,dc=com", + email: "PrewittD@52bca4c594a04715b5715f08c172758d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden,dc=com", + email: "GendronD@3c11f573de8f4908ada18c7fd8a1cb8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jen Assenza,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jen Assenza,ou=Peons,dc=bitwarden,dc=com", + email: "AssenzaJ@4a47e69492284601911d68b00175e387.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynnet Henshaw,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lynnet Henshaw,ou=Management,dc=bitwarden,dc=com", + email: "HenshawL@4d62425a140c4e9283e4fbe1fb7421be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wanids Pepper,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Wanids Pepper,ou=Administrative,dc=bitwarden,dc=com", + email: "PepperW@ea9e0894161f45a1a243f11b80970704.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamara Ahlers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tamara Ahlers,ou=Payroll,dc=bitwarden,dc=com", + email: "AhlersT@f435a2b95da94bf4a1e437105cc89fad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karilynn Roddick,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Karilynn Roddick,ou=Product Development,dc=bitwarden,dc=com", + email: "RoddickK@ab04014fcfcf443881ea178cd34f1aab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariesara CamelToueg,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mariesara CamelToueg,ou=Management,dc=bitwarden,dc=com", + email: "CamelToM@528cdf5245b64779b73a856ecc3f4a50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doe Yowell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Doe Yowell,ou=Product Development,dc=bitwarden,dc=com", + email: "YowellD@46af47a358cc432b9e3e57dfdff8445e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deedee Mattes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Deedee Mattes,ou=Human Resources,dc=bitwarden,dc=com", + email: "MattesD@fb55149cb2a74d6c9e271920a1046f2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luis Sinnett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Luis Sinnett,ou=Product Testing,dc=bitwarden,dc=com", + email: "SinnettL@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden,dc=com", + email: "SweetnaE@60e903b99c4f452b858f19d9843dcc15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evette Bouffard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Evette Bouffard,ou=Human Resources,dc=bitwarden,dc=com", + email: "BouffarE@a88363254d654a46a988ed9a05ced93a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Armin Bakkum,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Armin Bakkum,ou=Human Resources,dc=bitwarden,dc=com", + email: "BakkumA@4bc388c8d1cb44a0a2404340d63cfe5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden,dc=com", + email: "AzizuddF@6f1536f416b1420eb770d530c5bda521.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grady Gregorski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Grady Gregorski,ou=Administrative,dc=bitwarden,dc=com", + email: "GregorsG@75db2ded6c224e4da9fab555cc5d1c55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ede Riggins,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ede Riggins,ou=Administrative,dc=bitwarden,dc=com", + email: "RigginsE@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden,dc=com", + email: "LemyreM@d9be0d61b3d04e0e964a2ed65ee39def.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vi Biamonte,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vi Biamonte,ou=Management,dc=bitwarden,dc=com", + email: "BiamontV@394dfb035c4a4d4f9d0db1fc772d6f2c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shauna Moizer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shauna Moizer,ou=Janitorial,dc=bitwarden,dc=com", + email: "MoizerS@b134362a785742d6b5a1f5d5c2746e9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden,dc=com", + email: "EakinsR@b57908d5940c498f802323dedcdd1fe7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryanna Rao,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maryanna Rao,ou=Payroll,dc=bitwarden,dc=com", + email: "RaoM@e8149d5dfc6644b79cb026322f0adffe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kore Hedrick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kore Hedrick,ou=Management,dc=bitwarden,dc=com", + email: "HedrickK@dddb0ef21490453ca7770ab3e7c98c8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden,dc=com", + email: "LafeverC@bc5b48bcb0df42c9948c4c39df2e429f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden,dc=com", + email: "LobiancM@bd9027744e31459db23a7217225fbe23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden,dc=com", + email: "GuyArboC@50440101366043ed987d2eecbe048532.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marris Legrove,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marris Legrove,ou=Janitorial,dc=bitwarden,dc=com", + email: "LegroveM@57ceba44120949db81f6e0d349dde456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden,dc=com", + email: "SinasacH@6929241d20d8492688967f473f97d5ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olusola Hudson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Olusola Hudson,ou=Janitorial,dc=bitwarden,dc=com", + email: "HudsonO@8df0438ac9ae4a56af6789a0baa3c594.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cordula Lewandowski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cordula Lewandowski,ou=Management,dc=bitwarden,dc=com", + email: "LewandoC@aee41a45245c488583a4e60c217e30cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olwen Salyer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Olwen Salyer,ou=Management,dc=bitwarden,dc=com", + email: "SalyerO@dcbfb0982f2b4bb7bdf60b8f61c36502.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden,dc=com", + email: "BalakriH@5b3c54f47fc64ffbbe62b2e499081d43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristine Guignon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kristine Guignon,ou=Human Resources,dc=bitwarden,dc=com", + email: "GuignonK@180993b547ec4c93a6ebea6992867699.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphna Leong,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Daphna Leong,ou=Janitorial,dc=bitwarden,dc=com", + email: "LeongD@d37901086196495ab5d77980959c7f35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Larysa Singer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Larysa Singer,ou=Product Development,dc=bitwarden,dc=com", + email: "SingerL@e68f51f1d9244f0a8bff7f138347479d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilmi Spohn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hilmi Spohn,ou=Product Development,dc=bitwarden,dc=com", + email: "SpohnH@2699c3099b704f2ba70219415c473196.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharity Fusca,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sharity Fusca,ou=Peons,dc=bitwarden,dc=com", + email: "FuscaS@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kendre Favrot,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kendre Favrot,ou=Janitorial,dc=bitwarden,dc=com", + email: "FavrotK@f6866989cc784904871bcaa73d189a85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pit Cotuna,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pit Cotuna,ou=Janitorial,dc=bitwarden,dc=com", + email: "CotunaP@3a582b3bf0c346c09f92fe33efef44dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carma Mattiussi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carma Mattiussi,ou=Administrative,dc=bitwarden,dc=com", + email: "MattiusC@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden,dc=com", + email: "MaliepaL@f0ddebf82b7547be9ea16dacf25cc0a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leeann Staring,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leeann Staring,ou=Administrative,dc=bitwarden,dc=com", + email: "StaringL@951421a2e53b48ba8767b74d986be6dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Indiana Bodford,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Indiana Bodford,ou=Administrative,dc=bitwarden,dc=com", + email: "BodfordI@58b17cbf3c8c49a497e5fef5616324ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden,dc=com", + email: "ZukovskM@58ad0883939b4209a1c1bf6c7755ae5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermia Besse,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hermia Besse,ou=Payroll,dc=bitwarden,dc=com", + email: "BesseH@622a54e630224fe7b08d7367fa70f841.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keri Struble,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Keri Struble,ou=Product Development,dc=bitwarden,dc=com", + email: "StrubleK@dcff57d96764408cb291cdc17909588d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rolande Kiger,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rolande Kiger,ou=Product Development,dc=bitwarden,dc=com", + email: "KigerR@512b1443d1ed45ccb0713f3efd2670c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden,dc=com", + email: "CampbelH@484147050d834a1da350db4c28e9f45b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyndy Auton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cyndy Auton,ou=Administrative,dc=bitwarden,dc=com", + email: "AutonC@921a896c746149b8b4b3f6884b3f726f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blaise Bookings,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Blaise Bookings,ou=Administrative,dc=bitwarden,dc=com", + email: "BookingB@ffbf9bf698dd4e7a9f64eeee84b5ec64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Door Rigdon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Door Rigdon,ou=Human Resources,dc=bitwarden,dc=com", + email: "RigdonD@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allianora Toperzer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Allianora Toperzer,ou=Payroll,dc=bitwarden,dc=com", + email: "ToperzeA@e57ea92ee58c48afbafa0ac14075f3d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phaedra Criswell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Phaedra Criswell,ou=Payroll,dc=bitwarden,dc=com", + email: "CriswelP@4e6902e8e5bc41b48b78414d1956bb3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peter Dodson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Peter Dodson,ou=Peons,dc=bitwarden,dc=com", + email: "DodsonP@a628382231454e68acb07ae2b6a10a7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhea Brewer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rhea Brewer,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrewerR@ba86ce5a5ce74352a483e9becf24707d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Junette Bayno,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Junette Bayno,ou=Human Resources,dc=bitwarden,dc=com", + email: "BaynoJ@8b1fbee81b754d1880f61c509f62094e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jonis Innes,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jonis Innes,ou=Janitorial,dc=bitwarden,dc=com", + email: "InnesJ@99988a1f6cfe4cd7a9e85e41ec5cdd61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Femke Roddick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Femke Roddick,ou=Management,dc=bitwarden,dc=com", + email: "RoddickF@dea3d3c373d64ad7827a6102b58d23cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nanine Psutka,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nanine Psutka,ou=Management,dc=bitwarden,dc=com", + email: "PsutkaN@e7504ea4712040488444ef96484ed4da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stergios Koonce,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stergios Koonce,ou=Management,dc=bitwarden,dc=com", + email: "KoonceS@a424c942226a48928880fd6debd4c0c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden,dc=com", + email: "MahaffeA@7d677330ed854492a1b9ebde717a718a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moyra Boulay,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Moyra Boulay,ou=Human Resources,dc=bitwarden,dc=com", + email: "BoulayM@37715fd42e014d19908e5a2bc34c1623.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Door McKerrow,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Door McKerrow,ou=Product Testing,dc=bitwarden,dc=com", + email: "McKerroD@c4c3b80cbf1b45589053dbe0004de909.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden,dc=com", + email: "RtpbuilM@bd88542b35754611b56bc9f67e5f51df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paolina McCaughey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Paolina McCaughey,ou=Management,dc=bitwarden,dc=com", + email: "McCaughP@438e70287f6d4d35a04d438ca352f234.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greer Metzger,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Greer Metzger,ou=Janitorial,dc=bitwarden,dc=com", + email: "MetzgerG@5da44ffb6b534c2a8e8e949cd515b1cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlena Boyachek,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marlena Boyachek,ou=Payroll,dc=bitwarden,dc=com", + email: "BoyacheM@b9ba4daba0344711bdffdc5268946fdc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LyKhanh Hollbach,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=LyKhanh Hollbach,ou=Management,dc=bitwarden,dc=com", + email: "HollbacL@ee2b03b1182d458c89ed3ab0221f6486.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden,dc=com", + email: "GoosM@f414860515324b3cad4d00dd4f44cc65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosana Wendling,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rosana Wendling,ou=Product Development,dc=bitwarden,dc=com", + email: "WendlinR@503493165e34480591885ddd3a12206f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eve StVil,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eve StVil,ou=Payroll,dc=bitwarden,dc=com", + email: "StVilE@775db391b36843f3b6967be5112cd7c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=GuoQiang Hagen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=GuoQiang Hagen,ou=Peons,dc=bitwarden,dc=com", + email: "HagenG@c7a2f477472645bf848fd46eb4fcb7eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden,dc=com", + email: "BrooksL@804b9151f1ba415a894983275163dae1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorella Golczewski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorella Golczewski,ou=Payroll,dc=bitwarden,dc=com", + email: "GolczewD@a04d0222f0c24ad6848955600bad7ace.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarette Stokes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Clarette Stokes,ou=Product Testing,dc=bitwarden,dc=com", + email: "StokesC@a9155ee13aea4c5eb8fee4736f83eac6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden,dc=com", + email: "WyllieM@e4fc7058a5874f7d8c9c45b862065a64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden,dc=com", + email: "YaroshV@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mo Barsch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mo Barsch,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarschM@70ae4897e890467abad1e75edafff103.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janos Running,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Janos Running,ou=Product Testing,dc=bitwarden,dc=com", + email: "RunningJ@0d7e83c0e7e042119673bb3ec0e8332f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanco Epstein,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hanco Epstein,ou=Payroll,dc=bitwarden,dc=com", + email: "EpsteinH@6b7e5105ccc94f1f8fda16b3cc882538.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden,dc=com", + email: "DolginoM@c0ccbcc04bb9406b99bd8cec081542a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daisie Solman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Daisie Solman,ou=Janitorial,dc=bitwarden,dc=com", + email: "SolmanD@86d24a798dce4653a3b75c56ae675864.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nachum Biard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nachum Biard,ou=Management,dc=bitwarden,dc=com", + email: "BiardN@2a9fef67c2a84062aa431a97e4e79582.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Essy Goyal,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Essy Goyal,ou=Product Development,dc=bitwarden,dc=com", + email: "GoyalE@077838522ab04e7fa5ae528e1ed00284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorie Sehmbey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorie Sehmbey,ou=Peons,dc=bitwarden,dc=com", + email: "SehmbeyL@b549d25d2e83426ba75b6cd3682958b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Armelle Schwane,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Armelle Schwane,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchwaneA@142c4cd6004348ef8f83b6439314cf24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brietta Plato,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Brietta Plato,ou=Product Testing,dc=bitwarden,dc=com", + email: "PlatoB@d494db8e881541faa9bd79d54aee6c6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden,dc=com", + email: "DraganL@c4fa2184e3754d1f80f7d5580d9d94a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden,dc=com", + email: "OlivareH@dbc48514ad4f4049ab1d92515eab342e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nolana Hedman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nolana Hedman,ou=Janitorial,dc=bitwarden,dc=com", + email: "HedmanN@12d826ce1ce0413184a7ed1f22160fef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zenia Hilwa,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Zenia Hilwa,ou=Administrative,dc=bitwarden,dc=com", + email: "HilwaZ@e8b42fe4709142ccb9521fb60b9c2535.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Souphalack Delong,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Souphalack Delong,ou=Product Development,dc=bitwarden,dc=com", + email: "DelongS@ed09d6145c6443eda98f0394646537ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robbie Dibler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Robbie Dibler,ou=Product Testing,dc=bitwarden,dc=com", + email: "DiblerR@45083f5b369b49bba6dba6e41ec7e2f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden,dc=com", + email: "AzzuoloE@825450a5303e4ddbb87fc29d54b883c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Biddie Tedrick,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Biddie Tedrick,ou=Product Development,dc=bitwarden,dc=com", + email: "TedrickB@a98d6363773e4de690c703d6d6786140.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gracia Peluso,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gracia Peluso,ou=Payroll,dc=bitwarden,dc=com", + email: "PelusoG@8c3513194f7b4d468cf6b129b14b72f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanja Maxey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sanja Maxey,ou=Product Development,dc=bitwarden,dc=com", + email: "MaxeyS@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petronella Tullius,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Petronella Tullius,ou=Payroll,dc=bitwarden,dc=com", + email: "TulliusP@35aa710455a54ec9aacb0743a9cce4e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henrie Lorint,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Henrie Lorint,ou=Product Development,dc=bitwarden,dc=com", + email: "LorintH@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden,dc=com", + email: "SpilchaK@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donnette Kruger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Donnette Kruger,ou=Peons,dc=bitwarden,dc=com", + email: "KrugerD@e5c90ecebea1435c996209dde46c0296.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delle Schwantes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Delle Schwantes,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchwantD@d1c16d58dcf54061b0da81b1943ffc50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden,dc=com", + email: "BrannanH@71f5b0be2e4a45d1a4579d7977668bec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Print Gaitan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Print Gaitan,ou=Administrative,dc=bitwarden,dc=com", + email: "GaitanP@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patsy Mattiussi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Patsy Mattiussi,ou=Management,dc=bitwarden,dc=com", + email: "MattiusP@acd445bf65f54e4ebe350927dbe3e51f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phil Afkham,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Phil Afkham,ou=Administrative,dc=bitwarden,dc=com", + email: "AfkhamP@ea3044bbf20e4e989696a49bb606f948.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheldon Blatt,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sheldon Blatt,ou=Peons,dc=bitwarden,dc=com", + email: "BlattS@b2fc4afe69c5444b8fa5daf60bf297fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden,dc=com", + email: "PitcavaN@f945ede1d0be465895cf3f38663266a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oryal Raschig,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Oryal Raschig,ou=Product Testing,dc=bitwarden,dc=com", + email: "RaschigO@1f0f559b444d45e3b1fe4488d0fe440e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hector Manus,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hector Manus,ou=Janitorial,dc=bitwarden,dc=com", + email: "ManusH@52db00da846a4ecd950665d8955a7231.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pollyanna Goza,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pollyanna Goza,ou=Payroll,dc=bitwarden,dc=com", + email: "GozaP@6b986c50e43742ad9f5c4c157dff0f70.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koren Penner,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Koren Penner,ou=Payroll,dc=bitwarden,dc=com", + email: "PennerK@bc86e63e2935428fbf0579fffe710ad0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Iteke Wiedman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Iteke Wiedman,ou=Management,dc=bitwarden,dc=com", + email: "WiedmanI@63d6d6335a55425b90628af92fedefa5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrelle StJohn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Darrelle StJohn,ou=Product Development,dc=bitwarden,dc=com", + email: "StJohnD@83e659b7a46148c68a7895067104477c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazuhito Schram,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kazuhito Schram,ou=Peons,dc=bitwarden,dc=com", + email: "SchramK@35963b7e4db249a890418c98f5c7f6fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden,dc=com", + email: "HickmanE@848a5e9ff7e64339b3d7fd8820b74e23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirene Eaves,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shirene Eaves,ou=Product Development,dc=bitwarden,dc=com", + email: "EavesS@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desiree Southon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Desiree Southon,ou=Human Resources,dc=bitwarden,dc=com", + email: "SouthonD@068a0b6470f0444b9815d3ef36001ebd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lianna Lackie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lianna Lackie,ou=Peons,dc=bitwarden,dc=com", + email: "LackieL@965c6793f8bb43c9b546fbac1da94494.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Misti Sayed,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Misti Sayed,ou=Management,dc=bitwarden,dc=com", + email: "SayedM@9520af3454cc4edd8a0c750979c8a5ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden,dc=com", + email: "CalmejaK@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dione McCain,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dione McCain,ou=Peons,dc=bitwarden,dc=com", + email: "McCainD@9bcba57fcf5a4e57996fd300e4b639aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deny Stasiak,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Deny Stasiak,ou=Management,dc=bitwarden,dc=com", + email: "StasiakD@00134d4d1d4e4011b58c753077077cfb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden,dc=com", + email: "KavisA@0eff01dc47b3434da343723db4d36d91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ladell Butvich,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ladell Butvich,ou=Management,dc=bitwarden,dc=com", + email: "ButvichL@baf2ad01dd2145308a21b27aa982b3f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loralyn Eller,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Loralyn Eller,ou=Human Resources,dc=bitwarden,dc=com", + email: "EllerL@15a73f4bf1a344b28ac5394e2a720618.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden,dc=com", + email: "YearwooV@22633d68b49a4505af065c4f4eb2af78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jan Crosson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jan Crosson,ou=Human Resources,dc=bitwarden,dc=com", + email: "CrossonJ@ca4bcea8df924ec485a1d77e062859ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oral Pridgen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Oral Pridgen,ou=Human Resources,dc=bitwarden,dc=com", + email: "PridgenO@07bbb3f489e64bb6a266eab64608e052.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subra Tuttle,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Subra Tuttle,ou=Payroll,dc=bitwarden,dc=com", + email: "TuttleS@d3deba7943134e29a9162d65f8af2a8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teruko Fleischer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Teruko Fleischer,ou=Product Development,dc=bitwarden,dc=com", + email: "FleischT@db5bfc481c624386b635ec1638ed585f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchiefeS@51c65dec05994f879d2a718e7f7237a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quintina Ying,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Quintina Ying,ou=Product Testing,dc=bitwarden,dc=com", + email: "YingQ@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nerti StJames,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nerti StJames,ou=Administrative,dc=bitwarden,dc=com", + email: "StJamesN@c7693ecd6d0049638df22f6d2f6641d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=RongChin Guatto,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=RongChin Guatto,ou=Product Development,dc=bitwarden,dc=com", + email: "GuattoR@b4fa9c83a97e478e900b988131cc53a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mercer Zattiero,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mercer Zattiero,ou=Payroll,dc=bitwarden,dc=com", + email: "ZattierM@df91f02938d046d8adb3f260f0e722ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Budi Enos,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Budi Enos,ou=Product Testing,dc=bitwarden,dc=com", + email: "EnosB@34a3a218f8b144eeb85092195b25ce2c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tuoi Abdou,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tuoi Abdou,ou=Payroll,dc=bitwarden,dc=com", + email: "AbdouT@44ea03cf4294421b92acd6efdd5ace30.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nath Labarge,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nath Labarge,ou=Administrative,dc=bitwarden,dc=com", + email: "LabargeN@331976d3e9d2482b9e23f03ce7111228.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sophi McCullogh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sophi McCullogh,ou=Payroll,dc=bitwarden,dc=com", + email: "McCulloS@dd187a873e4c4bb299a3c9194e913cba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jorry Babineau,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jorry Babineau,ou=Product Development,dc=bitwarden,dc=com", + email: "BabineaJ@120daee2645049f7b74da97b5abb659d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adey Fogelson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Adey Fogelson,ou=Product Testing,dc=bitwarden,dc=com", + email: "FogelsoA@a3cca719b1e44338804967e6cd3716a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bela Fouillard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bela Fouillard,ou=Management,dc=bitwarden,dc=com", + email: "FouillaB@618ad2c22a0a4c09b662c6b5ae8494c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paola Barbeau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Paola Barbeau,ou=Payroll,dc=bitwarden,dc=com", + email: "BarbeauP@40079c706f0f41f9961a4ed47bc17c65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden,dc=com", + email: "McWhinnL@46d0a281aed94fa7a62017174b4b9de9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milo Hasen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Milo Hasen,ou=Product Development,dc=bitwarden,dc=com", + email: "HasenM@8ac0b632f576407ba66f1733b0c4738e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corabella Scarffe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Corabella Scarffe,ou=Product Development,dc=bitwarden,dc=com", + email: "ScarffeC@b39d8f666f1848e6abb69d85d224a354.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parkinson Bir,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Parkinson Bir,ou=Product Development,dc=bitwarden,dc=com", + email: "BirP@f89f635a8be04a889dbefd8a681219c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden,dc=com", + email: "ZivkoviB@0e430e5bab6e4a2fa53e5bfd14eb15b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salis Quilty,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Salis Quilty,ou=Payroll,dc=bitwarden,dc=com", + email: "QuiltyS@9ec09b5f2f3848f7b253932b170c96c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stormi Vempati,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stormi Vempati,ou=Management,dc=bitwarden,dc=com", + email: "VempatiS@edfe7405a5b34e7bb39744d59a06067d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lauretta Salvin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lauretta Salvin,ou=Peons,dc=bitwarden,dc=com", + email: "SalvinL@58d046473fe24d0d8bf6f510239a1102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarine Quane,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sarine Quane,ou=Management,dc=bitwarden,dc=com", + email: "QuaneS@7d9f9ce4ff8b4d56b5e90ecb1e79413c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rocio Brauer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rocio Brauer,ou=Human Resources,dc=bitwarden,dc=com", + email: "BrauerR@ec5b72978f304decbd01b86ff428bb78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margaretta Muchow,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Margaretta Muchow,ou=Product Development,dc=bitwarden,dc=com", + email: "MuchowM@5c51ed312b7d40789d1387ca1b76506e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dona Nairn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dona Nairn,ou=Janitorial,dc=bitwarden,dc=com", + email: "NairnD@4ce8989b72bf418782f9268b205e86e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolien Skiba,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carolien Skiba,ou=Administrative,dc=bitwarden,dc=com", + email: "SkibaC@a98f671d807c43a797dff7cd33629811.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathee Bress,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cathee Bress,ou=Product Development,dc=bitwarden,dc=com", + email: "BressC@98bcbee6a1c244fa8e846bbc7936d10f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mandy Settels,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mandy Settels,ou=Payroll,dc=bitwarden,dc=com", + email: "SettelsM@a70c344bf7f247fc92a9688532a78eaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odetta Tzuang,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Odetta Tzuang,ou=Payroll,dc=bitwarden,dc=com", + email: "TzuangO@24f4ab788e7441abadbc2141835089b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arne Matney,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Arne Matney,ou=Human Resources,dc=bitwarden,dc=com", + email: "MatneyA@df9e6df2116c4c0abb1ab3ad5d8dbaf8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden,dc=com", + email: "HalliwiR@e51aa6debfeb4cc88c68dfc76ad89784.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaenpaaK@fa475df3d2b54f0daa8cb07fc8f9be10.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden,dc=com", + email: "DerbyshE@5e2c67d0d05546f9b167a97275baece6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dvm LaPlante,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dvm LaPlante,ou=Payroll,dc=bitwarden,dc=com", + email: "LaPlantD@efeefad1218b44b4b09303834453b239.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edeline ORourke,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Edeline ORourke,ou=Payroll,dc=bitwarden,dc=com", + email: "ORourkeE@a2c9df9a4cd24389b4a0116cc38b3328.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jiri Sengoba,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jiri Sengoba,ou=Product Development,dc=bitwarden,dc=com", + email: "SengobaJ@ef59e9dfc35148e0a47d9411700130fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terence Ashdown,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Terence Ashdown,ou=Payroll,dc=bitwarden,dc=com", + email: "AshdownT@8680d13ae864492b9dc7a4d4204aef89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donni Keilholz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Donni Keilholz,ou=Janitorial,dc=bitwarden,dc=com", + email: "KeilholD@77627e1e8f8e4cdc88cd6606136ffbcf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden,dc=com", + email: "LarsenS@2ce1c1b789434fc0b1cfbba03b1eddc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden,dc=com", + email: "ReinlieV@af244d93e89148e099720c8250f904c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minhwi Vallet,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Minhwi Vallet,ou=Product Development,dc=bitwarden,dc=com", + email: "ValletM@053a5e187b0b4033abb4000d18053cd9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allianora Wissler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Allianora Wissler,ou=Janitorial,dc=bitwarden,dc=com", + email: "WisslerA@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francisco Elam,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Francisco Elam,ou=Product Testing,dc=bitwarden,dc=com", + email: "ElamF@ff45973707884b8a993a9b6a0db0aa11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katie Labrie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Katie Labrie,ou=Janitorial,dc=bitwarden,dc=com", + email: "LabrieK@c974995ddc894f639cebc6e910eb3bc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazuhiko Drewes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kazuhiko Drewes,ou=Management,dc=bitwarden,dc=com", + email: "DrewesK@991dc3abafbe42ae88689cdf83c52cb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden,dc=com", + email: "DhugaC@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meade Esmaili,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Meade Esmaili,ou=Product Development,dc=bitwarden,dc=com", + email: "EsmailiM@9b1dcdebf2c241bf975e03d6ac9197e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwennie Sojkowski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gwennie Sojkowski,ou=Management,dc=bitwarden,dc=com", + email: "SojkowsG@7705ffcba30447f5b39ef2ac69db9c3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden,dc=com", + email: "SatkunaS@348695c8b467437c83a5f7c72f04c2de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winona Paine,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Winona Paine,ou=Administrative,dc=bitwarden,dc=com", + email: "PaineW@3bd9de2175e44743a96e1e8c28036657.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chiquita Ferrell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chiquita Ferrell,ou=Peons,dc=bitwarden,dc=com", + email: "FerrellC@492b9c186a41410b8362945cf33f6ac7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Burgess Platthy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Burgess Platthy,ou=Janitorial,dc=bitwarden,dc=com", + email: "PlatthyB@c90fcc6a2adf434b982935936ff5f7b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harlene Kortje,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Harlene Kortje,ou=Product Development,dc=bitwarden,dc=com", + email: "KortjeH@9f0054716a414ce084f33e268195dbbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suhas Ilic,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Suhas Ilic,ou=Administrative,dc=bitwarden,dc=com", + email: "IlicS@aa11a3e30f7d4b8b9f6e08ae63f7a50f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamil Caines,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kamil Caines,ou=Human Resources,dc=bitwarden,dc=com", + email: "CainesK@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HorLam Momon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=HorLam Momon,ou=Product Testing,dc=bitwarden,dc=com", + email: "MomonH@47fbb574e9c1480db21858032e62e0c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farah Brennand,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Farah Brennand,ou=Management,dc=bitwarden,dc=com", + email: "BrennanF@5670176255f949f78b023f460fb780c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilfred Issa,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wilfred Issa,ou=Management,dc=bitwarden,dc=com", + email: "IssaW@ebbd3bd6f4c84c3b86ade3725f39d1ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zino Larson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zino Larson,ou=Janitorial,dc=bitwarden,dc=com", + email: "LarsonZ@86698d59a6aa411691a02fa8cabde4d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden,dc=com", + email: "WelschD@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhiamon Devault,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rhiamon Devault,ou=Product Development,dc=bitwarden,dc=com", + email: "DevaultR@3fd921dd1e2f4c51ac696af9e0351f02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michiko Sich,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Michiko Sich,ou=Management,dc=bitwarden,dc=com", + email: "SichM@a3445f6a5f3345a9957e7fe7bacb2499.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weber Ishii,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Weber Ishii,ou=Payroll,dc=bitwarden,dc=com", + email: "IshiiW@becb244da0554983b71d06f587be1dbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beppie Kilburn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Beppie Kilburn,ou=Product Development,dc=bitwarden,dc=com", + email: "KilburnB@4691b2eac8ba4d1390582076e407a460.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Durali Abelow,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Durali Abelow,ou=Payroll,dc=bitwarden,dc=com", + email: "AbelowD@8a40f0f791fd451f85ce90daae1d6995.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eleen Pappu,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eleen Pappu,ou=Payroll,dc=bitwarden,dc=com", + email: "PappuE@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betty Elzer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Betty Elzer,ou=Peons,dc=bitwarden,dc=com", + email: "ElzerB@02d556d8128c42b5aa2cd5d4238f40aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sallyann Environment,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sallyann Environment,ou=Administrative,dc=bitwarden,dc=com", + email: "EnvironS@11fa5cc8547c46d98b4271c0748028a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ans Pozzi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ans Pozzi,ou=Janitorial,dc=bitwarden,dc=com", + email: "PozziA@f910b6421df04b2e9cdfa3e15c0b0190.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blithe Sherow,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Blithe Sherow,ou=Product Testing,dc=bitwarden,dc=com", + email: "SherowB@0eccc35b1ecb45239e2d62bd2610a4ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacklin Alles,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jacklin Alles,ou=Peons,dc=bitwarden,dc=com", + email: "AllesJ@b99b0b5c7b724e06a91026c096a8854d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden,dc=com", + email: "KelemenC@8586ff08ef6b4c7592578bab914dcf40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden,dc=com", + email: "RundsteC@8aed4579481d435c98b14fd5983c7417.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden,dc=com", + email: "TsaiR@3f5b9048c8924fec87576c273249cede.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pauly Wycoff,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pauly Wycoff,ou=Peons,dc=bitwarden,dc=com", + email: "WycoffP@1871a69ca6234f999f51d3a9b4eb4578.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jackson Narron,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jackson Narron,ou=Product Development,dc=bitwarden,dc=com", + email: "NarronJ@87a3c7cedd324317a0a5cf80dbc758d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermia Probs,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hermia Probs,ou=Administrative,dc=bitwarden,dc=com", + email: "ProbsH@158d934795614bc784693ab70a2cd0b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Scovill McPhail,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Scovill McPhail,ou=Management,dc=bitwarden,dc=com", + email: "McPhailS@5184500633ec4ec1833d29082b384d33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dian Zalite,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dian Zalite,ou=Administrative,dc=bitwarden,dc=com", + email: "ZaliteD@4fad719157f44ed19b7c7a96b512f7f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Puran Dundin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Puran Dundin,ou=Human Resources,dc=bitwarden,dc=com", + email: "DundinP@412f6fbf438a4b3d8bbdf6350bccd80d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden,dc=com", + email: "NguyenS@35c9d3d9400d43a581b3020b915ebc3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Migdalia Warner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Migdalia Warner,ou=Peons,dc=bitwarden,dc=com", + email: "WarnerM@724caed46aaf481fb3e0817c5c10cdb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mechelle Kirn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mechelle Kirn,ou=Product Development,dc=bitwarden,dc=com", + email: "KirnM@7e9f6d17b8fc4a199e49adcccc9ca5e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaan Hartin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jaan Hartin,ou=Peons,dc=bitwarden,dc=com", + email: "HartinJ@a00e1b95d28e4af1be227d0b3e225d0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden,dc=com", + email: "MacHattM@1f586a2e93fc4e14adcb10bebbfd4b67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anne JantzLee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anne JantzLee,ou=Product Development,dc=bitwarden,dc=com", + email: "JantzLeA@ec5b8f0e9ac54265b8c5ceea3f25604f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden,dc=com", + email: "KemishB@ade9a269c2794f41972a0cd585efc66c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden,dc=com", + email: "VanDerBR@b51c90a7a7734a92a0afbe6bbc47547e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherey Desantis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cherey Desantis,ou=Peons,dc=bitwarden,dc=com", + email: "DesantiC@aae225b6543e4edebfd4e8a70cd66e37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celie Aksel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Celie Aksel,ou=Management,dc=bitwarden,dc=com", + email: "AkselC@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aleta Khosla,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Aleta Khosla,ou=Payroll,dc=bitwarden,dc=com", + email: "KhoslaA@3235591d985b4d2894779cd55ac400f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lennart Cramm,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lennart Cramm,ou=Product Development,dc=bitwarden,dc=com", + email: "CrammL@d8178390586b4ff2afbd07f5124be8ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elex Sohal,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elex Sohal,ou=Administrative,dc=bitwarden,dc=com", + email: "SohalE@9c333a28d24845c1a7234d2e35b66565.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marianna Annas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marianna Annas,ou=Human Resources,dc=bitwarden,dc=com", + email: "AnnasM@0fe89eeff7dc4fc1a0f74df0bfbf040f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sergei MacElwee,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sergei MacElwee,ou=Management,dc=bitwarden,dc=com", + email: "MacElweS@5bd88496e76c4f90b1f70eced0bf0739.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jay Dutil,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jay Dutil,ou=Janitorial,dc=bitwarden,dc=com", + email: "DutilJ@b347e7ca23ac4a809e51a769a6ab8366.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bevvy Routhier,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bevvy Routhier,ou=Peons,dc=bitwarden,dc=com", + email: "RouthieB@7b122176285947e2aaa662ba71171180.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kacie Sconzo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kacie Sconzo,ou=Peons,dc=bitwarden,dc=com", + email: "SconzoK@7d0b6de1366f4854a2055e12fa1d2f25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annadiane Davids,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Annadiane Davids,ou=Product Testing,dc=bitwarden,dc=com", + email: "DavidsA@1c617dcb4ec1414887e1b3bae62ec625.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karan ETAS,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karan ETAS,ou=Peons,dc=bitwarden,dc=com", + email: "ETASK@72edbeb53d9b4d36832bc312f776b4b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betti Savoie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Betti Savoie,ou=Product Development,dc=bitwarden,dc=com", + email: "SavoieB@10a46cb8875644479396c1c5e3228c3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Croix Dunn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Croix Dunn,ou=Management,dc=bitwarden,dc=com", + email: "DunnC@30a3ec06c4f44d1ba72c3001af7e8528.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden,dc=com", + email: "NowinaKA@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raymond McCaw,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Raymond McCaw,ou=Product Testing,dc=bitwarden,dc=com", + email: "McCawR@51677cc10f054f54964d7669880e03b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laurna Ferner,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Laurna Ferner,ou=Payroll,dc=bitwarden,dc=com", + email: "FernerL@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathe Boyer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cathe Boyer,ou=Product Testing,dc=bitwarden,dc=com", + email: "BoyerC@bc1068ff7c5a442e884cab9ab7c4508b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanco Elgin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hanco Elgin,ou=Product Development,dc=bitwarden,dc=com", + email: "ElginH@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krier Brickman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Krier Brickman,ou=Management,dc=bitwarden,dc=com", + email: "BrickmaK@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aime IBNTAS,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aime IBNTAS,ou=Management,dc=bitwarden,dc=com", + email: "IBNTASA@22c1ff8b360b4e918d680377dc0c9182.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theodore Pierson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Theodore Pierson,ou=Peons,dc=bitwarden,dc=com", + email: "PiersonT@59a4a020a4c74747a44b5e60109428e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monling Wormald,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Monling Wormald,ou=Management,dc=bitwarden,dc=com", + email: "WormaldM@5d439b9e1cae4e6b90829e7c5b63fe41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amandy Poma,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Amandy Poma,ou=Peons,dc=bitwarden,dc=com", + email: "PomaA@4846d6ca825b452cab08fe6610eca31a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carri Loper,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carri Loper,ou=Product Development,dc=bitwarden,dc=com", + email: "LoperC@2f13ca54ee794decad24515251a42dff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherri Bramlett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cherri Bramlett,ou=Peons,dc=bitwarden,dc=com", + email: "BramletC@ad4942d8c3c341119939c679c4dae154.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tai Nerem,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tai Nerem,ou=Payroll,dc=bitwarden,dc=com", + email: "NeremT@b7e3c41f407e4dca81b533d904e13c76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luciano Homayoon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Luciano Homayoon,ou=Product Development,dc=bitwarden,dc=com", + email: "HomayooL@01a767a014e944228e30a2d3d6133594.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden,dc=com", + email: "YakibchV@5696a65182774017a94deb08a344af69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden,dc=com", + email: "GibeaulL@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden,dc=com", + email: "CamposT@8cb1c49a16684bdda8ffa7f4489a6280.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden,dc=com", + email: "SargentL@34d5ed1c9d7241bdb443981287a04354.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clovis Kaji,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clovis Kaji,ou=Peons,dc=bitwarden,dc=com", + email: "KajiC@80603eaa60c04031b0548162ee532532.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constancy Sugihara,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Constancy Sugihara,ou=Peons,dc=bitwarden,dc=com", + email: "SugiharC@2390e6e80b5549ef9ff5de37313136db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micki Pownall,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Micki Pownall,ou=Janitorial,dc=bitwarden,dc=com", + email: "PownallM@40f66c0e51ca46c99bb0961cc624fcc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norma Rabipour,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Norma Rabipour,ou=Payroll,dc=bitwarden,dc=com", + email: "RabipouN@2a72bc736ffb4d18ae10b2685172d382.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", + email: "KapusciS@ecc23b0febab430da88b21a7330ed12e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mietek Nadon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mietek Nadon,ou=Product Testing,dc=bitwarden,dc=com", + email: "NadonM@bbf5361396904a4082fadb57709a5d90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sophie Malhotra,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sophie Malhotra,ou=Peons,dc=bitwarden,dc=com", + email: "MalhotrS@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden,dc=com", + email: "MinichiS@bfd0acda55624910b3eb6aeadd91155d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prue Zollman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Prue Zollman,ou=Peons,dc=bitwarden,dc=com", + email: "ZollmanP@073d9b40128d435294a7cce9001bca7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden,dc=com", + email: "RezzikA@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaughan Lockard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shaughan Lockard,ou=Management,dc=bitwarden,dc=com", + email: "LockardS@954efb273c2f4e7c983d0f352f5fd30d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden,dc=com", + email: "WurtzL@1624a6875b7a4c1a90bfa41548cd44d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marga Hao,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marga Hao,ou=Peons,dc=bitwarden,dc=com", + email: "HaoM@cf1f0125e0794b80b348dddaa747ca09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden,dc=com", + email: "HockadaM@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elset Yach,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elset Yach,ou=Product Testing,dc=bitwarden,dc=com", + email: "YachE@2b23dbb27baf478681a802c2510dd0df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaynie Moniter,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jaynie Moniter,ou=Administrative,dc=bitwarden,dc=com", + email: "MoniterJ@b1d81d4ed0934642a942a3e784da5fea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Penelopa Kenik,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Penelopa Kenik,ou=Administrative,dc=bitwarden,dc=com", + email: "KenikP@7ec2199d42d34d768c9936149cbba49a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nam Mersch,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nam Mersch,ou=Administrative,dc=bitwarden,dc=com", + email: "MerschN@f4c3a3037e484ed2a44d9517cbd72877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valida US,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Valida US,ou=Management,dc=bitwarden,dc=com", + email: "USV@7ed3387e63ee42a8ac53af5791774853.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jillian Pde,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jillian Pde,ou=Human Resources,dc=bitwarden,dc=com", + email: "PdeJ@006960dc799e4266a280a383e581ea9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden,dc=com", + email: "ToastmaK@2079b61842c64cb8a53095d0062cfb7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden,dc=com", + email: "GaubeK@ce4d0d0fb96d4c2eaa1d4595e57562a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Everette Klaassen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Everette Klaassen,ou=Administrative,dc=bitwarden,dc=com", + email: "KlaasseE@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden,dc=com", + email: "PrestonB@63acb1cef0d64271b1836eb0bdd826d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selime Helstab,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Selime Helstab,ou=Human Resources,dc=bitwarden,dc=com", + email: "HelstabS@625bebb6da704a99ac3b3be79cc8544f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norean Wilford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Norean Wilford,ou=Human Resources,dc=bitwarden,dc=com", + email: "WilfordN@a14bb54592f8410c82402fefd034b4c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bebe Spurway,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bebe Spurway,ou=Peons,dc=bitwarden,dc=com", + email: "SpurwayB@9600bec077154f61b674051df84e620d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alka Kowal,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alka Kowal,ou=Product Development,dc=bitwarden,dc=com", + email: "KowalA@b6629f19402c4b2bb567e45ac5181f90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michele Biggers,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Michele Biggers,ou=Product Development,dc=bitwarden,dc=com", + email: "BiggersM@b6eb7288ffdc4998a186a638d57adec2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Connie Stotz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Connie Stotz,ou=Payroll,dc=bitwarden,dc=com", + email: "StotzC@2b9187d4c2e04433a4bddadbfe09ed1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Layne Efstration,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Layne Efstration,ou=Peons,dc=bitwarden,dc=com", + email: "EfstratL@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden,dc=com", + email: "PetrescA@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ankie Commazzi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ankie Commazzi,ou=Product Development,dc=bitwarden,dc=com", + email: "CommazzA@c00094c05d9e45abbdfd0c40940b13a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cubicle Qu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cubicle Qu,ou=Product Development,dc=bitwarden,dc=com", + email: "QuC@32c1a38264404bd194fb0ceed714adf7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wassim Charette,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wassim Charette,ou=Product Development,dc=bitwarden,dc=com", + email: "CharettW@39671d86e7aa455f86029b2564b66afc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kas Audet,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kas Audet,ou=Product Development,dc=bitwarden,dc=com", + email: "AudetK@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emalee Lockett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Emalee Lockett,ou=Product Testing,dc=bitwarden,dc=com", + email: "LockettE@37913e5a58404daf99d21d566bf33e43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janell Kurniawan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Janell Kurniawan,ou=Peons,dc=bitwarden,dc=com", + email: "KurniawJ@8429461810c443b49add09521f9c6b46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georganne Munikoti,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Georganne Munikoti,ou=Payroll,dc=bitwarden,dc=com", + email: "MunikotG@fb3704e4d78c445393093a687cfa48ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neala Casalou,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Neala Casalou,ou=Administrative,dc=bitwarden,dc=com", + email: "CasalouN@8ec44466df45450ab3876834678ca129.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hai Grubbs,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hai Grubbs,ou=Human Resources,dc=bitwarden,dc=com", + email: "GrubbsH@cb980ae301084964a9693d89f9fb2ea1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden,dc=com", + email: "KambohO@fbe76a3d276b4f1cb5ff4b0955ac6aa4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alyssa Strackholder,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alyssa Strackholder,ou=Peons,dc=bitwarden,dc=com", + email: "StrackhA@e9e9b377fde94158b464d15a038dd043.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jossine Hoddinott,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jossine Hoddinott,ou=Management,dc=bitwarden,dc=com", + email: "HoddinoJ@dde41eef116c45e7ad8c210d83eced54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phyllis Majd,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Phyllis Majd,ou=Management,dc=bitwarden,dc=com", + email: "MajdP@0944047161f34c1d8982efcddb384be7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden,dc=com", + email: "CribbsJ@93c66893cda74239a9a56d1199a44457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nevil Rosch,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nevil Rosch,ou=Human Resources,dc=bitwarden,dc=com", + email: "RoschN@624c1f5dcdc642f18cde445a6f13923f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndon Rao,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lyndon Rao,ou=Human Resources,dc=bitwarden,dc=com", + email: "RaoL@e231c4794bfb41dabd87a985afed1418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karina Kempffer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Karina Kempffer,ou=Payroll,dc=bitwarden,dc=com", + email: "KempffeK@efcd32daf30f47bab7fc31cf8968544d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khalil Popovich,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Khalil Popovich,ou=Administrative,dc=bitwarden,dc=com", + email: "PopovicK@800d6472c1b2428eb81e895d2bd61870.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomasa Dann,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Thomasa Dann,ou=Administrative,dc=bitwarden,dc=com", + email: "DannT@1ec01709e9aa47c08c93dbd75ae81ee4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden,dc=com", + email: "HollenbJ@64c82d0938384c03a8fdb8436b666c54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rocke Tedrick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rocke Tedrick,ou=Management,dc=bitwarden,dc=com", + email: "TedrickR@19e6520548714755abff0e45bce4810c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subra Howie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Subra Howie,ou=Human Resources,dc=bitwarden,dc=com", + email: "HowieS@1d41a9185db448b89563a6b96b582da2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dasi Rabon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dasi Rabon,ou=Administrative,dc=bitwarden,dc=com", + email: "RabonD@27fbf31dae1b43168fe83a06d4b95ff2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivor Shennan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ivor Shennan,ou=Administrative,dc=bitwarden,dc=com", + email: "ShennanI@45381f65705a4542858d101bca1876a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tosca Linfield,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tosca Linfield,ou=Peons,dc=bitwarden,dc=com", + email: "LinfielT@2c480a27811f43a0bbdfebcf0cd44264.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shandee Vosup,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shandee Vosup,ou=Product Testing,dc=bitwarden,dc=com", + email: "VosupS@daecf76d8c3940f1a79ca6f29fd09de1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janith Gursin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Janith Gursin,ou=Product Testing,dc=bitwarden,dc=com", + email: "GursinJ@a26129e30095439fb00cad0905c71920.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rora Kingrey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rora Kingrey,ou=Product Development,dc=bitwarden,dc=com", + email: "KingreyR@1baee55063104657aab587314d3f4ff6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden,dc=com", + email: "PapageoJ@d70cda87f2da4062bf59637caf72c7ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhett Vavroch,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rhett Vavroch,ou=Peons,dc=bitwarden,dc=com", + email: "VavrochR@8b7fc53ad9d44eee917cc3e25b895199.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allene Izzotti,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Allene Izzotti,ou=Peons,dc=bitwarden,dc=com", + email: "IzzottiA@72e93c7c4c5a421bbcbde1495b495745.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ag Charlino,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ag Charlino,ou=Product Development,dc=bitwarden,dc=com", + email: "CharlinA@b7be2bf29b064b349a27848f01a085d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Archie Kenyon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Archie Kenyon,ou=Administrative,dc=bitwarden,dc=com", + email: "KenyonA@31b13d20c58546e5aa89cbb19323b703.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malissia Albright,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Malissia Albright,ou=Human Resources,dc=bitwarden,dc=com", + email: "AlbrighM@09779ad61d2a4fdab823e1d8c1f5f2c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mccauley Guillet,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mccauley Guillet,ou=Peons,dc=bitwarden,dc=com", + email: "GuilletM@58f86a0b49c64ddabc6d69323185b642.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maudie Overcash,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maudie Overcash,ou=Product Testing,dc=bitwarden,dc=com", + email: "OvercasM@159a287c6435442fa0a5a9052a8c949d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden,dc=com", + email: "DardenP@7fd31459ef69403fab8afffbf1b1fedf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yolanthe Svo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yolanthe Svo,ou=Peons,dc=bitwarden,dc=com", + email: "SvoY@d4a050fbe8424ef0ad6c18f4f810e367.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashley Koskinen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ashley Koskinen,ou=Administrative,dc=bitwarden,dc=com", + email: "KoskineA@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden,dc=com", + email: "DugalL@0ce86c5e561e43da985b731babc7ee7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Babb Mayne,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Babb Mayne,ou=Janitorial,dc=bitwarden,dc=com", + email: "MayneB@c27a00f3c7f148d486de7c0cf03bd914.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden,dc=com", + email: "MadgettD@f318f75c01ee43e0921a0e961414763d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Godfrey Wiltz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Godfrey Wiltz,ou=Peons,dc=bitwarden,dc=com", + email: "WiltzG@9b2c23de49384f84ae5a2204e6781b81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlana Crowell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Arlana Crowell,ou=Human Resources,dc=bitwarden,dc=com", + email: "CrowellA@2ae864edc92447c18c93c9a4cd896b97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arina Kempffer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arina Kempffer,ou=Peons,dc=bitwarden,dc=com", + email: "KempffeA@b5f5dce787d942a9beb6dc9f7c09c07b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden,dc=com", + email: "VandagrC@f34d92cdab5f41e598142a994af089cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden,dc=com", + email: "SookdeoG@7192ef9a358648a898c636498c183ffc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden,dc=com", + email: "AppenzeA@91d70d29739b45a5ab390be4cdfdd9f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden,dc=com", + email: "DickieB@a914f96796cb4376a46a7e46c8ebb6a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kip Grimshaw,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kip Grimshaw,ou=Management,dc=bitwarden,dc=com", + email: "GrimshaK@ca43d93b2a2647ef8c67ee1857820bdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden,dc=com", + email: "PbxG@a5043dbf64444983b86424abe39aba1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Addons Wurtz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Addons Wurtz,ou=Peons,dc=bitwarden,dc=com", + email: "WurtzA@0cca6f71d9404c488f8d31ec44e5edd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden,dc=com", + email: "ChiniwaM@f8d234f023da4a3fb593b28104632797.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farzin Nebel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Farzin Nebel,ou=Product Development,dc=bitwarden,dc=com", + email: "NebelF@960fde1bd9064545ac557eb042ebf65f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shell Hurst,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shell Hurst,ou=Janitorial,dc=bitwarden,dc=com", + email: "HurstS@12301f83685f482eaef7fc27694b679e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden,dc=com", + email: "PalusoR@82d0d802cca8422e814bc6ecdf25484c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden,dc=com", + email: "OCarrolD@8ae5753568884557b826bbbe6815b824.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khosro Kuo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Khosro Kuo,ou=Human Resources,dc=bitwarden,dc=com", + email: "KuoK@a081497caeb44f8587c4809a817c9728.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michel Kernahan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Michel Kernahan,ou=Product Testing,dc=bitwarden,dc=com", + email: "KernahaM@df756e7ca37d42aaab0cfecdbe1dbcdc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melba Besnier,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melba Besnier,ou=Management,dc=bitwarden,dc=com", + email: "BesnierM@5627b6b1b02646ec88c596099b169466.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailee Schwenk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ailee Schwenk,ou=Management,dc=bitwarden,dc=com", + email: "SchwenkA@1d184a251b65443396a8cb4416166285.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klink Aguilar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Klink Aguilar,ou=Product Development,dc=bitwarden,dc=com", + email: "AguilarK@075229ffb9b64ef789e1bac7125aa507.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arnis Daly,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arnis Daly,ou=Peons,dc=bitwarden,dc=com", + email: "DalyA@6a8087cffa824fdc9d204ef1b876817b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden,dc=com", + email: "KennedyH@76aa1b335bb64366a833ba61a905d441.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ofilia Keilty,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ofilia Keilty,ou=Product Development,dc=bitwarden,dc=com", + email: "KeiltyO@b112fc0413114ddcbf0202947d5c2011.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ans Casperson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ans Casperson,ou=Administrative,dc=bitwarden,dc=com", + email: "CaspersA@fd10790283ad43fb8ee24519792eda1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janick McGregor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Janick McGregor,ou=Management,dc=bitwarden,dc=com", + email: "McGregoJ@0bec70e6fa8d461ab29f67f7a630e586.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chuan Bernstein,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chuan Bernstein,ou=Payroll,dc=bitwarden,dc=com", + email: "BernsteC@796636c316134f4ea242b8ffac574e0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donall HickmanMiott,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Donall HickmanMiott,ou=Management,dc=bitwarden,dc=com", + email: "HickmanD@1a52986d673a41e591f5e253ac65f5bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doc Cantlie,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Doc Cantlie,ou=Administrative,dc=bitwarden,dc=com", + email: "CantlieD@83146e7f57ba40bd8fd147c075fc9a0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christer Chapen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Christer Chapen,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChapenC@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", + email: "EslamboM@af76d6a9c4ee47b5be6351f28cb88a83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flory Ziegler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Flory Ziegler,ou=Management,dc=bitwarden,dc=com", + email: "ZieglerF@e4cb1f57405243129844c08d2e77b681.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Altay Stevenson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Altay Stevenson,ou=Management,dc=bitwarden,dc=com", + email: "StevensA@989c1fcac1b54129b688e303c3fcab40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mada Curtin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mada Curtin,ou=Administrative,dc=bitwarden,dc=com", + email: "CurtinM@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dasha Kivell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dasha Kivell,ou=Product Development,dc=bitwarden,dc=com", + email: "KivellD@a6532d9f9838406fa36604afc09c1100.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minna Hyatt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Minna Hyatt,ou=Payroll,dc=bitwarden,dc=com", + email: "HyattM@859c4245e0604293a1eb9ae487b0f7d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiff Brambley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tiff Brambley,ou=Product Development,dc=bitwarden,dc=com", + email: "BrambleT@7388d6407a304050b7d1b21890b91ab6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerrard Kinos,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gerrard Kinos,ou=Management,dc=bitwarden,dc=com", + email: "KinosG@5c9b9d5c8575423f84d184975eedd13e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden,dc=com", + email: "McDanieP@3f8d70a2bece482898bc31be4127bc01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norikatsu Knox,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Norikatsu Knox,ou=Administrative,dc=bitwarden,dc=com", + email: "KnoxN@ba892bea3b8945d19eac9125b1901b77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabine Litz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sabine Litz,ou=Janitorial,dc=bitwarden,dc=com", + email: "LitzS@577d33811aef46c2a87033464ba91210.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candee Rightmire,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Candee Rightmire,ou=Management,dc=bitwarden,dc=com", + email: "RightmiC@88a362d8c08640c59911ccd0faa3d84a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jorge Layton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jorge Layton,ou=Payroll,dc=bitwarden,dc=com", + email: "LaytonJ@2632abf3a2f24d08a48ac678703e5a07.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden,dc=com", + email: "SawczynR@8d2bde7cc8a74ac5887aa1747493b68d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden,dc=com", + email: "ForecasB@e75be13fa8934e138f210bfa3bbca375.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ed Joe,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ed Joe,ou=Administrative,dc=bitwarden,dc=com", + email: "JoeE@8d3c44ed2e3e425b88258d14938dfd7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Portia Sim,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Portia Sim,ou=Product Development,dc=bitwarden,dc=com", + email: "SimP@5f44867d3815485286c6292e360f1c67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jian Gardner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jian Gardner,ou=Product Development,dc=bitwarden,dc=com", + email: "GardnerJ@52dd6b005be946f88fd736bfecf761d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashien Brewton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ashien Brewton,ou=Management,dc=bitwarden,dc=com", + email: "BrewtonA@719d42488cdd461d9a46a6d7e3fd0edb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opto Seay,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Opto Seay,ou=Product Development,dc=bitwarden,dc=com", + email: "SeayO@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rolande Prattico,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rolande Prattico,ou=Administrative,dc=bitwarden,dc=com", + email: "PratticR@4ea4f1e353e542d591c9ee228e04b29f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reggie Boggs,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Reggie Boggs,ou=Human Resources,dc=bitwarden,dc=com", + email: "BoggsR@03fd765619e04536a01e210ec3db68b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zero Dourley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zero Dourley,ou=Product Testing,dc=bitwarden,dc=com", + email: "DourleyZ@713ec84902e3407ea7c47d43e09273a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabie Hirayama,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gabie Hirayama,ou=Peons,dc=bitwarden,dc=com", + email: "HirayamG@3a3f7974ffc147bc8e5ab8732ee37359.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalindi Keene,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kalindi Keene,ou=Administrative,dc=bitwarden,dc=com", + email: "KeeneK@453e1aa146534f789cee9f78a1f430f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rod Krenos,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rod Krenos,ou=Human Resources,dc=bitwarden,dc=com", + email: "KrenosR@7099256f6cc64433985279df12772e6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bahadir Borozny,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bahadir Borozny,ou=Management,dc=bitwarden,dc=com", + email: "BoroznyB@91bb90ade3ed45329bdbe468ae424f00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prudy Morelli,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Prudy Morelli,ou=Human Resources,dc=bitwarden,dc=com", + email: "MorelliP@952e219a347c41c2b9729763800ed734.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zero Volchegursky,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zero Volchegursky,ou=Management,dc=bitwarden,dc=com", + email: "VolchegZ@3de40f1f4bb746cab1a4ba47c2543175.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Riyaz Leone,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Riyaz Leone,ou=Management,dc=bitwarden,dc=com", + email: "LeoneR@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jade Njo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jade Njo,ou=Janitorial,dc=bitwarden,dc=com", + email: "NjoJ@dc14108a33864343abea453a90202c78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden,dc=com", + email: "HargrowH@7080ace676f14d789edd6d153887110b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Albert Healy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Albert Healy,ou=Human Resources,dc=bitwarden,dc=com", + email: "HealyA@2c865634e0e045e2b70cc9cc6dc9005f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden,dc=com", + email: "MarshauD@07a4bc595e2e42d18a0e9f7b0a858ca8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helsa Eder,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Helsa Eder,ou=Administrative,dc=bitwarden,dc=com", + email: "EderH@e9361d04edcf46f9a225b99f53867f61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patt Overby,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Patt Overby,ou=Administrative,dc=bitwarden,dc=com", + email: "OverbyP@11458275b70842ea81e3c8a96d06615f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dasya Chenard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dasya Chenard,ou=Management,dc=bitwarden,dc=com", + email: "ChenardD@d9e32d7c83eb4ccf8004a41c9874f6a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosana Hensen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rosana Hensen,ou=Management,dc=bitwarden,dc=com", + email: "HensenR@b5a44095f2374197a4ff741b9417f6b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thekla Helpb,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Thekla Helpb,ou=Payroll,dc=bitwarden,dc=com", + email: "HelpbT@5319f4b5e8194323b5cce9067279026f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden,dc=com", + email: "EubanksS@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquetta Alary,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jacquetta Alary,ou=Peons,dc=bitwarden,dc=com", + email: "AlaryJ@fce4c1e9f1a6429083bed21e1e54a500.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden,dc=com", + email: "JasrotiM@9aabc0c0846e44fe90512a9449c3b77f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden,dc=com", + email: "BazemorL@2cd58a63642c4f52b76ece1f793d964f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden,dc=com", + email: "BechtelB@101b8efea162489cbe4b00acbe71ea5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nari Dilallo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nari Dilallo,ou=Payroll,dc=bitwarden,dc=com", + email: "DilalloN@eec4bbb8da77429f893524017458e5d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betti Tanner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Betti Tanner,ou=Human Resources,dc=bitwarden,dc=com", + email: "TannerB@f3bf6ba88e9949f59b53ce8700fcbd97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weilin Tupling,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Weilin Tupling,ou=Peons,dc=bitwarden,dc=com", + email: "TuplingW@f6a15f7382e844a784e99c66615d4c58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden,dc=com", + email: "LoyolaP@d3b7d248cb224bf8a4d600d381f25048.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roly Odden,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Roly Odden,ou=Management,dc=bitwarden,dc=com", + email: "OddenR@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Junie Siegel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Junie Siegel,ou=Product Development,dc=bitwarden,dc=com", + email: "SiegelJ@0266937dc1da4f6ca345872742d007d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karna Nairn,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karna Nairn,ou=Peons,dc=bitwarden,dc=com", + email: "NairnK@240320ec20894b66932f0d930796bec9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pascale Innes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pascale Innes,ou=Peons,dc=bitwarden,dc=com", + email: "InnesP@e740afc7882b41df9170031ff18ecd69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darbie Scalabrini,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Darbie Scalabrini,ou=Peons,dc=bitwarden,dc=com", + email: "ScalabrD@543e9d6f1baf4e398f4b35d8fd14d7df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden,dc=com", + email: "DeBernaE@a45191844e6a4a65beb487444486faa6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elsi Toles,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elsi Toles,ou=Administrative,dc=bitwarden,dc=com", + email: "TolesE@e5fdd3d67af74cde904584628c237f35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden,dc=com", + email: "MendoncX@89cc2a9b2ec949b1a8070c39d600dc45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steinar Royster,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Steinar Royster,ou=Administrative,dc=bitwarden,dc=com", + email: "RoysterS@3c377b6d3a464b54841abc0f3eeba132.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden,dc=com", + email: "ConstanC@a997ea3fe107458ebeee5012c3a4f6a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sono Wissler,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sono Wissler,ou=Administrative,dc=bitwarden,dc=com", + email: "WisslerS@fa0238e4957946f6b30d70f1a6cdea6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Par Fani,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Par Fani,ou=Product Testing,dc=bitwarden,dc=com", + email: "FaniP@faec862307e2490ab9310236bae87643.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden,dc=com", + email: "StagmieE@0444443925704655be3c38857a5dd7a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden,dc=com", + email: "GerlinsM@0cab6ba3bc394ea5975adecee65ca1c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matti Beisel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Matti Beisel,ou=Peons,dc=bitwarden,dc=com", + email: "BeiselM@0b56a4c94023459d8772d8f7af50540e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regine Sergi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Regine Sergi,ou=Product Testing,dc=bitwarden,dc=com", + email: "SergiR@28361b33929c47fcba44b2074b43f0e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oralia Daymond,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Oralia Daymond,ou=Payroll,dc=bitwarden,dc=com", + email: "DaymondO@b6e5aee724a54904bb06d1cd94c0be8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adey Mein,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Adey Mein,ou=Janitorial,dc=bitwarden,dc=com", + email: "MeinA@dc836bc8f8b34c3ea421ef30574e0176.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettina Petree,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bettina Petree,ou=Management,dc=bitwarden,dc=com", + email: "PetreeB@8f32883a93db43f481d60f1e3715ec28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sisile Larner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sisile Larner,ou=Product Development,dc=bitwarden,dc=com", + email: "LarnerS@39906d66250a450299ac97c0daaa1661.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roseann Sheldon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Roseann Sheldon,ou=Peons,dc=bitwarden,dc=com", + email: "SheldonR@7d42ba8899ef4daea01b1b9e81793953.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Irc Grona,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Irc Grona,ou=Administrative,dc=bitwarden,dc=com", + email: "GronaI@816208f7d0af4f3aad2a75dc5fc86d1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michael Verrenneau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Michael Verrenneau,ou=Payroll,dc=bitwarden,dc=com", + email: "VerrennM@d7b181ccc8954040a7c4160403df7781.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walley Gostanian,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Walley Gostanian,ou=Janitorial,dc=bitwarden,dc=com", + email: "GostaniW@5d8901804e424468b0bef6e0378317d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden,dc=com", + email: "VeyratE@9604db567a254e64976e339d21f654b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden,dc=com", + email: "FulmerC@47b619accc2242b98a908129e561089a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden,dc=com", + email: "RamachaT@9a3c3b333ac543bcbc3719d5e5f7e60a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emogene Assistance,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Emogene Assistance,ou=Management,dc=bitwarden,dc=com", + email: "AssistaE@e3adbf44503541a8a477fd522db5f455.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florance Berna,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Florance Berna,ou=Payroll,dc=bitwarden,dc=com", + email: "BernaF@2b42e3127b664e198e679bfa6b541f42.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barry Holcombe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Barry Holcombe,ou=Product Testing,dc=bitwarden,dc=com", + email: "HolcombB@c41cc1e3b0d842d3bbad24db018def06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grietje Gilstorf,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Grietje Gilstorf,ou=Management,dc=bitwarden,dc=com", + email: "GilstorG@ec1b66029a6a489dbc29c0e623bfb41a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Una Shang,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Una Shang,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShangU@923b7e20c77d4d479afa0bf52e9ff34f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gina Pilotte,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gina Pilotte,ou=Management,dc=bitwarden,dc=com", + email: "PilotteG@c78a9a65ca75452787721ced31a98916.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rolando Yancey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rolando Yancey,ou=Management,dc=bitwarden,dc=com", + email: "YanceyR@4a0e814607ef4adf977758aa230a12dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardeen Porter,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ardeen Porter,ou=Administrative,dc=bitwarden,dc=com", + email: "PorterA@758c49f7de6a4e8cbc4f91d054f2473b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gajendra Dery,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gajendra Dery,ou=Product Testing,dc=bitwarden,dc=com", + email: "DeryG@06a9344fa78d4a1da0daf58ee470dc98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jere Jasmin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jere Jasmin,ou=Payroll,dc=bitwarden,dc=com", + email: "JasminJ@191c836466354fe5b2fec288c1d53713.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caritta Verma,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Caritta Verma,ou=Product Testing,dc=bitwarden,dc=com", + email: "VermaC@77eb010514ae421883af972518c1a82e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edric Tilk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Edric Tilk,ou=Administrative,dc=bitwarden,dc=com", + email: "TilkE@c6381227edb84dfc90689a9cc3080334.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janelle Downes,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Janelle Downes,ou=Administrative,dc=bitwarden,dc=com", + email: "DownesJ@e080eb242a96464dba0da1ce711ec7f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebeca Dicaprio,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rebeca Dicaprio,ou=Management,dc=bitwarden,dc=com", + email: "DicapriR@e33d3ed1cbf54d6c887c9e826f3363fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Everett Pittam,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Everett Pittam,ou=Product Testing,dc=bitwarden,dc=com", + email: "PittamE@d5d0e43f3dbe4e67a0afeef31a233058.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden,dc=com", + email: "AntkowiN@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erwin Hlady,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Erwin Hlady,ou=Management,dc=bitwarden,dc=com", + email: "HladyE@7f15b04bcb6949009d518c224559328a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shiu Masty,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shiu Masty,ou=Peons,dc=bitwarden,dc=com", + email: "MastyS@171799a1ff4347f880be38e1dad1f90e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terrijo Roth,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Terrijo Roth,ou=Peons,dc=bitwarden,dc=com", + email: "RothT@164b360781494ed5a1326bd8161f5895.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Venus Fischetti,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Venus Fischetti,ou=Product Testing,dc=bitwarden,dc=com", + email: "FischetV@b25a6c9a4813403592f85516045bbb70.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hewlet Noorani,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hewlet Noorani,ou=Administrative,dc=bitwarden,dc=com", + email: "NooraniH@494f2548825245788f70b0629ca28b58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden,dc=com", + email: "WaylerH@649c22a7b0164583bbf6f7f11f7746ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pansy Ochman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pansy Ochman,ou=Product Development,dc=bitwarden,dc=com", + email: "OchmanP@ecd862454c8b49a4ab4dccef5a805c86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henny Recabarren,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Henny Recabarren,ou=Product Development,dc=bitwarden,dc=com", + email: "RecabarH@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Humberto Gottschalk,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Humberto Gottschalk,ou=Peons,dc=bitwarden,dc=com", + email: "GottschH@646791cae30048e78e840ca24e142dc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vernon Planthara,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vernon Planthara,ou=Administrative,dc=bitwarden,dc=com", + email: "PlanthaV@59024f397a2e4e8693b32cc8290b543c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clo Upshaw,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Clo Upshaw,ou=Human Resources,dc=bitwarden,dc=com", + email: "UpshawC@04f6d76d8e594566a6a34acb754c567c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Afton Sykes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Afton Sykes,ou=Peons,dc=bitwarden,dc=com", + email: "SykesA@5b18d26e867d4e609682950868db4cbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vesna Kowalski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vesna Kowalski,ou=Management,dc=bitwarden,dc=com", + email: "KowalskV@af93e6fe934c42b6ad84be86f4af830d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prissie Rintala,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Prissie Rintala,ou=Product Testing,dc=bitwarden,dc=com", + email: "RintalaP@4985d7e0a81648efb3bc84a7fdf3691b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Virginia Telfer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Virginia Telfer,ou=Product Development,dc=bitwarden,dc=com", + email: "TelferV@dbc002b2cc9f41fca56ea18c0d728d15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginette Brans,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ginette Brans,ou=Peons,dc=bitwarden,dc=com", + email: "BransG@10bb017137f049d59bb1ad7676fcda69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marsie OConner,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marsie OConner,ou=Janitorial,dc=bitwarden,dc=com", + email: "OConnerM@11c4ba17ab574f3bb46442f426b1a2c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amandip Habib,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Amandip Habib,ou=Product Testing,dc=bitwarden,dc=com", + email: "HabibA@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ezella Pesik,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ezella Pesik,ou=Product Development,dc=bitwarden,dc=com", + email: "PesikE@d2ec725893494e2d93ab18b2a21bf817.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liv Tabl,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Liv Tabl,ou=Management,dc=bitwarden,dc=com", + email: "TablL@fae6cb3fc8dc4148a6266128bed876ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joni McClarren,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joni McClarren,ou=Human Resources,dc=bitwarden,dc=com", + email: "McClarrJ@d13f782f99e54b11940789543670141b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden,dc=com", + email: "BlackwoA@72b0656cb70b415ca87f666c0c859e2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonida Stefanac,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Leonida Stefanac,ou=Peons,dc=bitwarden,dc=com", + email: "StefanaL@4d36f09b6d2e498eae6cce028472d669.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viviyan Baird,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Viviyan Baird,ou=Product Development,dc=bitwarden,dc=com", + email: "BairdV@6ec1e4c42a894d9bb6d499b1b4526fa2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robbin Meriwether,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Robbin Meriwether,ou=Product Development,dc=bitwarden,dc=com", + email: "MeriwetR@bdc3cbcec8a2447188118ae5b601e009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwennyth Basser,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gwennyth Basser,ou=Administrative,dc=bitwarden,dc=com", + email: "BasserG@34de97baa0ba4e6e804422e1a33c9bba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binh Aversa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Binh Aversa,ou=Payroll,dc=bitwarden,dc=com", + email: "AversaB@e05752054bdf4aeabb75f365622f6480.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlee Jawor,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marlee Jawor,ou=Product Testing,dc=bitwarden,dc=com", + email: "JaworM@bbf9c04e50a241698a5503a647ae8281.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antonio Risdal,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Antonio Risdal,ou=Product Testing,dc=bitwarden,dc=com", + email: "RisdalA@b18734eaf31b4b8a9fcf2accdab91823.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dieter Dickinson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dieter Dickinson,ou=Peons,dc=bitwarden,dc=com", + email: "DickinsD@869bcf8a299b41b19a933afcb83f9250.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilda Shnay,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gilda Shnay,ou=Product Development,dc=bitwarden,dc=com", + email: "ShnayG@e6981380e68944d6b1fabbe651d0a66a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnese Herrington,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Agnese Herrington,ou=Human Resources,dc=bitwarden,dc=com", + email: "HerringA@5e097b6f4fcc40c7a34c83f921520553.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebekkah Meleski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rebekkah Meleski,ou=Peons,dc=bitwarden,dc=com", + email: "MeleskiR@7342ff3b405b4e4cae02a437b3fc6bca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noelyn Blander,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Noelyn Blander,ou=Human Resources,dc=bitwarden,dc=com", + email: "BlanderN@a074c5229e6741c19f43f776155a3d03.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamera Rennie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tamera Rennie,ou=Payroll,dc=bitwarden,dc=com", + email: "RennieT@14a50969231442b7a4661f1630e8f16c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Portia Cruzado,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Portia Cruzado,ou=Administrative,dc=bitwarden,dc=com", + email: "CruzadoP@fe60fc6c21f046639fc69fd725ace3ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinett Samson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Robinett Samson,ou=Payroll,dc=bitwarden,dc=com", + email: "SamsonR@b0365da8cd3b4eef9d2acb818f1cbef0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden,dc=com", + email: "PotvinK@a199f75806e043a29f88f2704ef795cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden,dc=com", + email: "JeavonsC@66856639d6224561b9d5baf4deda51d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherman Frodsham,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sherman Frodsham,ou=Administrative,dc=bitwarden,dc=com", + email: "FrodshaS@d71f931e88694d74b88e32769af98e29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maury Jansen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maury Jansen,ou=Management,dc=bitwarden,dc=com", + email: "JansenM@0e3cc15d16b54ddeae75d206f48f1204.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilly Ocampo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tilly Ocampo,ou=Payroll,dc=bitwarden,dc=com", + email: "OcampoT@3ad345248df74d59a3ad7d7cbfe0100d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pauli Capes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pauli Capes,ou=Human Resources,dc=bitwarden,dc=com", + email: "CapesP@6a7058ac13d642658b7f7adc5e875217.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Augusta Subick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Augusta Subick,ou=Payroll,dc=bitwarden,dc=com", + email: "SubickA@ce6ea378c27b45efb4f43990327ef994.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jastinder Gysel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jastinder Gysel,ou=Administrative,dc=bitwarden,dc=com", + email: "GyselJ@38743dc2a7284707827cb55c3c04b77c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jason Loveless,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jason Loveless,ou=Human Resources,dc=bitwarden,dc=com", + email: "LovelesJ@3f957af8403b44cda402864b6bf1f589.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pamella Trudel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pamella Trudel,ou=Human Resources,dc=bitwarden,dc=com", + email: "TrudelP@acaf00cd94184334a88c04c02dc188dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucina Volfe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lucina Volfe,ou=Payroll,dc=bitwarden,dc=com", + email: "VolfeL@875af3604a224bc0adcaa7037f12ca60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheena Chung,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sheena Chung,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChungS@8d3c44ed2e3e425b88258d14938dfd7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andriana Myers,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Andriana Myers,ou=Janitorial,dc=bitwarden,dc=com", + email: "MyersA@4d2b6aeb52944f46890dd70951e65aa3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden,dc=com", + email: "RossaneL@ab5a3e15caae4984acf7b1a615995a84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henk Goin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Henk Goin,ou=Product Development,dc=bitwarden,dc=com", + email: "GoinH@d457e1580197417888cc4a9c93599471.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden,dc=com", + email: "RabecsC@a38a54d93a9a4ec1a621a87e5a204d4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden,dc=com", + email: "ParkhilT@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leese DeWiele,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leese DeWiele,ou=Administrative,dc=bitwarden,dc=com", + email: "DeWieleL@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden,dc=com", + email: "CarrillA@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emp Lenior,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Emp Lenior,ou=Administrative,dc=bitwarden,dc=com", + email: "LeniorE@78455201418b4eda8d1307aa8e77e3d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorine Skaret,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorine Skaret,ou=Human Resources,dc=bitwarden,dc=com", + email: "SkaretL@1ab5e46ea4fb40b292686a380747c794.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rora Duthie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rora Duthie,ou=Product Development,dc=bitwarden,dc=com", + email: "DuthieR@127f75e34fa94456a07c8ec8f332f580.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aubrette Carlson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aubrette Carlson,ou=Peons,dc=bitwarden,dc=com", + email: "CarlsonA@2c0f47a97a024956922ed080c07c7087.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delisle Moledina,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Delisle Moledina,ou=Management,dc=bitwarden,dc=com", + email: "MoledinD@7aa27c58a55f473b92a9bea4edfa7790.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chloris Fogle,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chloris Fogle,ou=Payroll,dc=bitwarden,dc=com", + email: "FogleC@c925a785cc914f7896a342038a540076.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hadria Keung,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hadria Keung,ou=Payroll,dc=bitwarden,dc=com", + email: "KeungH@c8f486d27e8b44169d6f371867433900.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarena Sandhar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sarena Sandhar,ou=Product Development,dc=bitwarden,dc=com", + email: "SandharS@6994ff306ef64425a30543b5e9a42d04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shina Vilhan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shina Vilhan,ou=Human Resources,dc=bitwarden,dc=com", + email: "VilhanS@a50159dd57124aa194b68385c74dfad6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candace Nadler,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Candace Nadler,ou=Human Resources,dc=bitwarden,dc=com", + email: "NadlerC@1f029313d9f242ecbc83d4ed5e9cc00f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Osiris Rtpbuild,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Osiris Rtpbuild,ou=Management,dc=bitwarden,dc=com", + email: "RtpbuilO@d223bf95e305408f8ce65e186425ec5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patt Lampe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Patt Lampe,ou=Payroll,dc=bitwarden,dc=com", + email: "LampeP@fb51e4746fc04473a7bebe9c1a3d6645.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ola Fricks,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ola Fricks,ou=Management,dc=bitwarden,dc=com", + email: "FricksO@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jobie Brassem,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jobie Brassem,ou=Product Development,dc=bitwarden,dc=com", + email: "BrassemJ@da5a908240674035b4f089697eec14f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amarjit Shull,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amarjit Shull,ou=Management,dc=bitwarden,dc=com", + email: "ShullA@33e3d5f7842a441e967a49435691d7e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden,dc=com", + email: "MaenpaaE@fcff654db86140cbab4aa071c0d40b07.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marriet Grau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marriet Grau,ou=Peons,dc=bitwarden,dc=com", + email: "GrauM@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kellsie Tilmon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kellsie Tilmon,ou=Management,dc=bitwarden,dc=com", + email: "TilmonK@b0ec022ac74f4073806f06ef760d43a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deloria Tulk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Deloria Tulk,ou=Janitorial,dc=bitwarden,dc=com", + email: "TulkD@dd51cc0eafb644c3952bfc8183b9acd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julianna Towsley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Julianna Towsley,ou=Peons,dc=bitwarden,dc=com", + email: "TowsleyJ@dd31f4ea6f0c44f4aa5f46684ef66e9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Power Surazski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Power Surazski,ou=Administrative,dc=bitwarden,dc=com", + email: "SurazskP@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YueMin Dube,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=YueMin Dube,ou=Peons,dc=bitwarden,dc=com", + email: "DubeY@e54368d6007d4c1ebda0848d18470ef4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerald Hamel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gerald Hamel,ou=Management,dc=bitwarden,dc=com", + email: "HamelG@28fab2a5e4034ede9d4f584a0fd75e72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cami Hanley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cami Hanley,ou=Janitorial,dc=bitwarden,dc=com", + email: "HanleyC@ce001280b666479eb0eb4d06e9257b27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden,dc=com", + email: "SharpeS@8a8d1631964049f182939e971c150026.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silvana Barakat,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Silvana Barakat,ou=Administrative,dc=bitwarden,dc=com", + email: "BarakatS@7e7a2a61072144f1bbb5c3973fb03067.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maxey Bulman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maxey Bulman,ou=Janitorial,dc=bitwarden,dc=com", + email: "BulmanM@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden,dc=com", + email: "ShalmonB@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dzung Newsom,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dzung Newsom,ou=Administrative,dc=bitwarden,dc=com", + email: "NewsomD@726081298eb8483da69721764554f8d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mats DMSDB,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mats DMSDB,ou=Janitorial,dc=bitwarden,dc=com", + email: "DMSDBM@ddab05ea50514da6944e78ee5d4888e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden,dc=com", + email: "McElhonS@d0a3070a29b14a28b31681edd00fc298.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden,dc=com", + email: "CetraroH@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kevyn Minai,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kevyn Minai,ou=Management,dc=bitwarden,dc=com", + email: "MinaiK@67a9d61944244b79b04665b16e622d77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhanvinder Biss,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dhanvinder Biss,ou=Peons,dc=bitwarden,dc=com", + email: "BissD@b838776a11e74718955f6601c7f8d1e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joan Badowski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joan Badowski,ou=Human Resources,dc=bitwarden,dc=com", + email: "BadowskJ@b27312faaad24253933d0ff172f19446.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden,dc=com", + email: "ObenaufL@f2546b85540e458c8c528fab744261e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Libby Sarna,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Libby Sarna,ou=Peons,dc=bitwarden,dc=com", + email: "SarnaL@17f5261c44794d03856d13a510e0aa52.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madalena Farnham,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Madalena Farnham,ou=Administrative,dc=bitwarden,dc=com", + email: "FarnhamM@3ce51f6d63564349a707188cebe0b9db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peder Chowhan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Peder Chowhan,ou=Management,dc=bitwarden,dc=com", + email: "ChowhanP@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bird Bluschke,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bird Bluschke,ou=Product Development,dc=bitwarden,dc=com", + email: "BluschkB@27e750a927bc40878975a7adaa60f684.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaycee Wiggins,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kaycee Wiggins,ou=Management,dc=bitwarden,dc=com", + email: "WigginsK@bebbec64fc5b426aa6d6b13aab8ac6c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fwpreg Daymond,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fwpreg Daymond,ou=Peons,dc=bitwarden,dc=com", + email: "DaymondF@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden,dc=com", + email: "PrestonL@3fe3dd83a28445b5a95bc5da230f8774.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jobi Bryant,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jobi Bryant,ou=Payroll,dc=bitwarden,dc=com", + email: "BryantJ@547fa50227684350b1f92837929bd166.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden,dc=com", + email: "HjartarA@02ff8597c50443248a49f6bef6b843ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Modesta WAR,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Modesta WAR,ou=Human Resources,dc=bitwarden,dc=com", + email: "WARM@9f5475585fd4485cae51ba09721f524b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eveleen Jasti,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Eveleen Jasti,ou=Peons,dc=bitwarden,dc=com", + email: "JastiE@91c2f03d5f5f46289c8711d8060fde6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden,dc=com", + email: "KenwortC@302710031153467b98bc48e3c4bc257f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toney Singh,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Toney Singh,ou=Peons,dc=bitwarden,dc=com", + email: "SinghT@c8fa77eb4aa0482bb77de35245880a29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amelia Altekar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Amelia Altekar,ou=Payroll,dc=bitwarden,dc=com", + email: "AltekarA@d88544e210f84cc7827363eadc0d3128.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden,dc=com", + email: "KreigerT@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Audivox Duncan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Audivox Duncan,ou=Payroll,dc=bitwarden,dc=com", + email: "DuncanA@dddbcacbba5c4e16876ccb04b6135782.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eliezer Rheault,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eliezer Rheault,ou=Management,dc=bitwarden,dc=com", + email: "RheaultE@395a1522673545a2b6f4ec5f1b7796af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KimMinh Lenehan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=KimMinh Lenehan,ou=Peons,dc=bitwarden,dc=com", + email: "LenehanK@d4eabd10ae4c40a485e4ca44d8a0318c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viole Kirkland,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Viole Kirkland,ou=Payroll,dc=bitwarden,dc=com", + email: "KirklanV@4f1519512714466da3525736d08bec31.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden,dc=com", + email: "MontmorB@127bd07831b64b0e92ce92ea10c209be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden,dc=com", + email: "TognoniT@73644206f22948e88cda9a77b8ecb4e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bahram Strauch,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bahram Strauch,ou=Product Testing,dc=bitwarden,dc=com", + email: "StrauchB@5c9608f5189942e19cb9ace71ff4cc1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jagdev Paulett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jagdev Paulett,ou=Product Development,dc=bitwarden,dc=com", + email: "PaulettJ@18569f82a4734a83991f0330d7e468e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Graham Tanner,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Graham Tanner,ou=Product Testing,dc=bitwarden,dc=com", + email: "TannerG@61c05d1e8ba240fc8053923a475b5800.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beau Watkins,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Beau Watkins,ou=Product Testing,dc=bitwarden,dc=com", + email: "WatkinsB@b50829feebfd4e22a33d8ae67daa6149.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Durali Pickens,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Durali Pickens,ou=Payroll,dc=bitwarden,dc=com", + email: "PickensD@dba38a73d24f45109e2386384dae2ed3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden,dc=com", + email: "HollingB@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden,dc=com", + email: "HincheyC@b9f44a907d41480f95c6eb062092de29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden,dc=com", + email: "KenwortH@00051a1d50da40f1b7bc2c53cc756ab9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jorry Yost,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jorry Yost,ou=Management,dc=bitwarden,dc=com", + email: "YostJ@7de1122203ab4ca0a8ccf7ec79a93139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laser DeNest,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Laser DeNest,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeNestL@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chanda Leenher,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Chanda Leenher,ou=Management,dc=bitwarden,dc=com", + email: "LeenherC@d7681493431f47c4aee39faeda0957a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luke Catlett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Luke Catlett,ou=Management,dc=bitwarden,dc=com", + email: "CatlettL@e316e4482c314662b2118590a4d2173a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden,dc=com", + email: "ScssdevV@234773e7f27c46889eabde71c1cb8d67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Femke Krikorian,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Femke Krikorian,ou=Human Resources,dc=bitwarden,dc=com", + email: "KrikoriF@09621247c2534422b65027556ba23ec6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden,dc=com", + email: "MacLareC@66ebe9b8d29246329e6e17db480edb7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evert Traynor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Evert Traynor,ou=Management,dc=bitwarden,dc=com", + email: "TraynorE@ed89cbae21214e4d86110d4c5688d2bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShaplanH@737b5dcffbb7418088cb0751fc35cc9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tess Ketchum,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tess Ketchum,ou=Product Development,dc=bitwarden,dc=com", + email: "KetchumT@394281e627bd4a44a2749e8e04564938.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jordanna Cacha,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jordanna Cacha,ou=Payroll,dc=bitwarden,dc=com", + email: "CachaJ@14d341098b454a7bb14a0607de600424.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brietta Dages,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brietta Dages,ou=Janitorial,dc=bitwarden,dc=com", + email: "DagesB@7022b955bef74762989f3e8241ec17a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natver Alleva,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Natver Alleva,ou=Janitorial,dc=bitwarden,dc=com", + email: "AllevaN@9f370afe60bb4f1ab01d1df2abbe72ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden,dc=com", + email: "TzaneteR@1d18e975cba24a40891491f30692b0e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phan Rimsa,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Phan Rimsa,ou=Product Development,dc=bitwarden,dc=com", + email: "RimsaP@e2cbb69d157949f2a27ec4f04bfab065.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden,dc=com", + email: "LedwellH@80c3b4098db8471fa50bda6c3d5b250b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thakor Brandon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Thakor Brandon,ou=Peons,dc=bitwarden,dc=com", + email: "BrandonT@bf22abb443f242d591554d5b4dde5bdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Samir Guerin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Samir Guerin,ou=Janitorial,dc=bitwarden,dc=com", + email: "GuerinS@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colene Revis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Colene Revis,ou=Product Testing,dc=bitwarden,dc=com", + email: "RevisC@c92365298bdc408a8d5a96e4deae0869.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mike Funderburg,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mike Funderburg,ou=Peons,dc=bitwarden,dc=com", + email: "FunderbM@fb31dc4ff0104ce1b3fc5a01a2d75d94.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozalie Sassine,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rozalie Sassine,ou=Administrative,dc=bitwarden,dc=com", + email: "SassineR@f2e037d77334498ab9322f95dd7d350d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jinny Siddell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jinny Siddell,ou=Human Resources,dc=bitwarden,dc=com", + email: "SiddellJ@d465cf0e3efb407fbb73b24e2d2b8525.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kai Etemad,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kai Etemad,ou=Peons,dc=bitwarden,dc=com", + email: "EtemadK@a96211277807499cbc72ba383cf3f7fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odette Wagle,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Odette Wagle,ou=Payroll,dc=bitwarden,dc=com", + email: "WagleO@5dae1ed2c9f445258f886d50e89467ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Josephine Leon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Josephine Leon,ou=Product Testing,dc=bitwarden,dc=com", + email: "LeonJ@21c8fcb0ee18495787a55ca1696354cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gale Leder,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gale Leder,ou=Product Development,dc=bitwarden,dc=com", + email: "LederG@2e792851d84240488be196888c877106.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danny Mau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Danny Mau,ou=Payroll,dc=bitwarden,dc=com", + email: "MauD@a98a94682d81417d89ea8aad5fa82d5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alma McRann,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Alma McRann,ou=Product Testing,dc=bitwarden,dc=com", + email: "McRannA@49b304035fc44bb4a3e211286fc4d652.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martijn Groth,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Martijn Groth,ou=Human Resources,dc=bitwarden,dc=com", + email: "GrothM@8455fc0dd08e47d9b5acf4e37eea1485.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allyson Boroski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Allyson Boroski,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoroskiA@38d6239d446040c7892f72bde901e5dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janice Powney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Janice Powney,ou=Product Development,dc=bitwarden,dc=com", + email: "PowneyJ@6676cc13b20e4042b28843f12be18e7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marys Marleau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marys Marleau,ou=Peons,dc=bitwarden,dc=com", + email: "MarleauM@ad4942d8c3c341119939c679c4dae154.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colin Langelier,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Colin Langelier,ou=Management,dc=bitwarden,dc=com", + email: "LangeliC@910b366efc9d45ae94d1175a5271d29c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cornel Delzer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cornel Delzer,ou=Janitorial,dc=bitwarden,dc=com", + email: "DelzerC@1e938c02408a4595b2f669d03197c9de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liane Pappu,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Liane Pappu,ou=Peons,dc=bitwarden,dc=com", + email: "PappuL@00031bbeb0ff4d1a8275609c6cc825b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ollie Mir,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ollie Mir,ou=Janitorial,dc=bitwarden,dc=com", + email: "MirO@24af3dac7e7c4580ae1949e9dbc7b5bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffy Moyers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tiffy Moyers,ou=Management,dc=bitwarden,dc=com", + email: "MoyersT@086cd0723f0c4d19b12b0a6c52b08ed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden,dc=com", + email: "RadclifC@7c55c5fda50b444180fe09120e80248b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catja Taralp,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Catja Taralp,ou=Product Testing,dc=bitwarden,dc=com", + email: "TaralpC@c8ee45aa130e469ab9d08427bf58a160.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jey Musick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jey Musick,ou=Product Testing,dc=bitwarden,dc=com", + email: "MusickJ@883a827472584ea8ab8edcc535c72169.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamil Doi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kamil Doi,ou=Management,dc=bitwarden,dc=com", + email: "DoiK@2666ff26960c49cbbd8ff121a2639624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeAlmeiM@a41f06888fb0407e87dd9f629bea1689.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lelia Gougeon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lelia Gougeon,ou=Administrative,dc=bitwarden,dc=com", + email: "GougeonL@1bc1409c08584b65b922db79a968ffbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mamie Godfrey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mamie Godfrey,ou=Management,dc=bitwarden,dc=com", + email: "GodfreyM@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ibby Dragan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ibby Dragan,ou=Peons,dc=bitwarden,dc=com", + email: "DraganI@8eaa02b53fec48d0842607d198bfec39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krier Rouer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Krier Rouer,ou=Administrative,dc=bitwarden,dc=com", + email: "RouerK@d4881d0da2824b94aad995234e30bb1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neila Donleycott,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Neila Donleycott,ou=Product Development,dc=bitwarden,dc=com", + email: "DonleycN@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vithit Toothman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vithit Toothman,ou=Payroll,dc=bitwarden,dc=com", + email: "ToothmaV@f2f9b94a61d74e48ae3ede318c7f996c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brear Wiklund,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brear Wiklund,ou=Payroll,dc=bitwarden,dc=com", + email: "WiklundB@b4093fe5132a4a878de6dc85a8b08a1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joletta Chaaban,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Joletta Chaaban,ou=Payroll,dc=bitwarden,dc=com", + email: "ChaabanJ@d1a4100b9b9b406ab43bd8e679e7075d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allan Kpodzo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Allan Kpodzo,ou=Administrative,dc=bitwarden,dc=com", + email: "KpodzoA@bccf93cb8d9f4a129349caa39e630322.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvin Fleishman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alvin Fleishman,ou=Administrative,dc=bitwarden,dc=com", + email: "FleishmA@893fcaa2270d412d875ced076aac8306.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amos Nadeau,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Amos Nadeau,ou=Administrative,dc=bitwarden,dc=com", + email: "NadeauA@4683d74c822246798b509a58b74b661d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden,dc=com", + email: "GubencoF@b4304c61f77b49d7b5286781d16ef287.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Astra McPhail,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Astra McPhail,ou=Management,dc=bitwarden,dc=com", + email: "McPhailA@8a9b6d7044ae4a78a0f823a14af47f84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miguelita Lukie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Miguelita Lukie,ou=Management,dc=bitwarden,dc=com", + email: "LukieM@a98a0b7e8c1d4fe88c53128550e8ca96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joellen Rummans,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joellen Rummans,ou=Peons,dc=bitwarden,dc=com", + email: "RummansJ@a139b435b4cd48eeb3da7e5c63440d77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blythe Bessette,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Blythe Bessette,ou=Management,dc=bitwarden,dc=com", + email: "BessettB@cbb0ee6f701a44b3b861eccb184e6264.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden,dc=com", + email: "OPERATIN@98502193cf164ea4ab82010779caeff8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felipe Dassie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Felipe Dassie,ou=Peons,dc=bitwarden,dc=com", + email: "DassieF@921728abb6324aefb035d6063e7e1e37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renu Dermardiros,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Renu Dermardiros,ou=Payroll,dc=bitwarden,dc=com", + email: "DermardR@e080eb242a96464dba0da1ce711ec7f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yen Sails,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yen Sails,ou=Janitorial,dc=bitwarden,dc=com", + email: "SailsY@b13bd03113d249d69d9301b44834eaa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claudie Willett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Claudie Willett,ou=Management,dc=bitwarden,dc=com", + email: "WillettC@7167bede64e647b8a348838a0a19c5fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antonia Kashef,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Antonia Kashef,ou=Product Testing,dc=bitwarden,dc=com", + email: "KashefA@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden,dc=com", + email: "KikuchiC@e209292ce8494e20a17431a0c16ad1ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leta Weeks,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leta Weeks,ou=Product Development,dc=bitwarden,dc=com", + email: "WeeksL@ffdba696892b4a2faf2f9784c5557e4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saraann Ku,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Saraann Ku,ou=Human Resources,dc=bitwarden,dc=com", + email: "KuS@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malgosia Allaman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Malgosia Allaman,ou=Peons,dc=bitwarden,dc=com", + email: "AllamanM@a426d86bc70a41169741acf404c40b77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorri Brickey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dorri Brickey,ou=Product Development,dc=bitwarden,dc=com", + email: "BrickeyD@52375a276d8e4116b12e682b77fe0b05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilles Tullo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gilles Tullo,ou=Administrative,dc=bitwarden,dc=com", + email: "TulloG@8cf075f892994459a2bb7138294f3585.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacia Wever,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Stacia Wever,ou=Administrative,dc=bitwarden,dc=com", + email: "WeverS@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herman Georgiou,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Herman Georgiou,ou=Management,dc=bitwarden,dc=com", + email: "GeorgioH@a96211277807499cbc72ba383cf3f7fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden,dc=com", + email: "ProkopQ@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarey Shibata,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clarey Shibata,ou=Management,dc=bitwarden,dc=com", + email: "ShibataC@fcbf2ef1cdb340fcb4c052a580a37b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elyn Witzmann,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elyn Witzmann,ou=Peons,dc=bitwarden,dc=com", + email: "WitzmanE@37e3de35a8c340a7b99329132ff492e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corry Lasch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Corry Lasch,ou=Janitorial,dc=bitwarden,dc=com", + email: "LaschC@b0c3511415624300926253fbc8566845.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilsa Reeder,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ilsa Reeder,ou=Product Development,dc=bitwarden,dc=com", + email: "ReederI@d52c1f1046c6411eb0907201f8f5a6d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden,dc=com", + email: "KopalaY@e47f64bef69f4dd48dddefa04608b96f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden,dc=com", + email: "LanunixD@d8b377610c7d421f8eec4a02e5fb3c9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaib Fysh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shaib Fysh,ou=Payroll,dc=bitwarden,dc=com", + email: "FyshS@5d8cc64a505e4795adb2db74fb44a1cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden,dc=com", + email: "SwearinL@c50e1d17976a4acebd18f01bbfd46623.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Goldarina Delaat,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Goldarina Delaat,ou=Administrative,dc=bitwarden,dc=com", + email: "DelaatG@75858e9b0a57431ea93369d3d0fdb55e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden,dc=com", + email: "KolodieM@f99fab41afc647d5a865c56f14ad624d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Con Liskoff,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Con Liskoff,ou=Janitorial,dc=bitwarden,dc=com", + email: "LiskoffC@ac5ce5b90419470188e40d8780712bf4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dannie Belaire,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dannie Belaire,ou=Payroll,dc=bitwarden,dc=com", + email: "BelaireD@b885e453b9ed486ebec88cb2a7678928.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Syyed Nasato,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Syyed Nasato,ou=Payroll,dc=bitwarden,dc=com", + email: "NasatoS@35062355c8cb4574a234b41f34896a6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paloma Meijer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Paloma Meijer,ou=Janitorial,dc=bitwarden,dc=com", + email: "MeijerP@35a90dbd42ea4858949658f923e13119.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden,dc=com", + email: "CucuzzeM@4bf79c0ee4d34c7692b9804d098856ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anestassia Pilch,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anestassia Pilch,ou=Product Development,dc=bitwarden,dc=com", + email: "PilchA@64cec2e36e064bf29124f55fbca16d06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caroline Weakley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Caroline Weakley,ou=Management,dc=bitwarden,dc=com", + email: "WeakleyC@c38fb3d41e6d4c59bb5e63a066239f4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brad Widener,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brad Widener,ou=Peons,dc=bitwarden,dc=com", + email: "WidenerB@3b22641d076842469513221f673236de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nga Holvey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nga Holvey,ou=Payroll,dc=bitwarden,dc=com", + email: "HolveyN@a902f1ad65b842baa48923792860ef8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Breanne Hatten,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Breanne Hatten,ou=Peons,dc=bitwarden,dc=com", + email: "HattenB@7e87a6fdda7846518a51a730a93f1c6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Babita Yuhn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Babita Yuhn,ou=Janitorial,dc=bitwarden,dc=com", + email: "YuhnB@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden,dc=com", + email: "CaplingB@866dcdf7141f4b00b327974f7403df8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanjoy Burbage,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sanjoy Burbage,ou=Management,dc=bitwarden,dc=com", + email: "BurbageS@d9cdf2972f5548b0814498e608f03bf6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hettie Grassmann,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hettie Grassmann,ou=Payroll,dc=bitwarden,dc=com", + email: "GrassmaH@49634f2a5e564b13843ce74e45cd5b8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacques Lobello,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jacques Lobello,ou=Administrative,dc=bitwarden,dc=com", + email: "LobelloJ@23cf32b7148140cfb4b02ddf8d62cfa5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susi Vezina,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Susi Vezina,ou=Product Testing,dc=bitwarden,dc=com", + email: "VezinaS@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden,dc=com", + email: "WatanabP@91415ae4cae4467d8a1e1d9b9c594a7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hynek Bergland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hynek Bergland,ou=Janitorial,dc=bitwarden,dc=com", + email: "BerglanH@648152cfae1e47ffa5e239f481673983.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden,dc=com", + email: "VanSchyI@05612bbc895f46abb970a45c00f480d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brenton Zou,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Brenton Zou,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZouB@264d4763d0c84adba308d4c4cab556c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", + email: "HowePatF@a0859d351c9f4c38bafe2c10a4129e60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mohamed Popper,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mohamed Popper,ou=Peons,dc=bitwarden,dc=com", + email: "PopperM@7f4b5ca02e594ee8a8204a5051500312.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden,dc=com", + email: "TejadaD@039e3a194ecb4b229b6171f883dbe2ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzan Brisebois,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Suzan Brisebois,ou=Administrative,dc=bitwarden,dc=com", + email: "BriseboS@befc232b3f4240ada061cd42724f306e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Violette Capostagno,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Violette Capostagno,ou=Product Development,dc=bitwarden,dc=com", + email: "CapostaV@33b35540a4bc4f6baa81886f1273a7c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden,dc=com", + email: "ShoemakJ@1566e50dd621416d8ec481ceb9271778.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden,dc=com", + email: "BrownGiD@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liem Dalloste,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Liem Dalloste,ou=Management,dc=bitwarden,dc=com", + email: "DallostL@a17de6ea9dda4d659f1501b4b4ed4d2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernita Hui,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bernita Hui,ou=Product Testing,dc=bitwarden,dc=com", + email: "HuiB@155d681ec6564fc8a96a2716f8046f1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mab Bhatia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mab Bhatia,ou=Product Development,dc=bitwarden,dc=com", + email: "BhatiaM@f5afe6422dca491da65fa6a254990cc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bamby Ressner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bamby Ressner,ou=Human Resources,dc=bitwarden,dc=com", + email: "RessnerB@c32875a7d5c84e0cbf7df721e038b80b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden,dc=com", + email: "KammingM@a922ba05488e401e9633fbd1813d714f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nadir Harold,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nadir Harold,ou=Administrative,dc=bitwarden,dc=com", + email: "HaroldN@0452103199be4e45a9d502fc8103d707.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norikazu Loughery,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Norikazu Loughery,ou=Administrative,dc=bitwarden,dc=com", + email: "LougherN@a8523f0ff874441ba48222b981c29c83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerda Cuthill,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gerda Cuthill,ou=Payroll,dc=bitwarden,dc=com", + email: "CuthillG@ad0ef2c2568345158919240fe983f26f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden,dc=com", + email: "RanoaS@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blakeley Moynihan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Blakeley Moynihan,ou=Management,dc=bitwarden,dc=com", + email: "MoynihaB@b6c212225ddb4f9ba95fbbaec945f94a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronni DMSDB,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ronni DMSDB,ou=Administrative,dc=bitwarden,dc=com", + email: "DMSDBR@353b753321aa4a97a115856474e231b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden,dc=com", + email: "TheochaK@f724343d8470496bb0df55542d73aa26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desdemona Howes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Desdemona Howes,ou=Product Development,dc=bitwarden,dc=com", + email: "HowesD@d402d45df6ee44758d534e95cb5617f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micaela Grelck,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Micaela Grelck,ou=Administrative,dc=bitwarden,dc=com", + email: "GrelckM@24d7cb43aaeb44b593ff6b98218942cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", + email: "YarbrouN@3ff7146541124494b887915621fe41a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moria Brandstadt,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Moria Brandstadt,ou=Peons,dc=bitwarden,dc=com", + email: "BrandstM@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raf VanAlphen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Raf VanAlphen,ou=Management,dc=bitwarden,dc=com", + email: "VanAlphR@b5110eee63164b03a1156fbe465ff053.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jianli Seniuk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jianli Seniuk,ou=Management,dc=bitwarden,dc=com", + email: "SeniukJ@9d1f7bcfce524784b93c42075dd94a6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephani Wheatley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Stephani Wheatley,ou=Administrative,dc=bitwarden,dc=com", + email: "WheatleS@f759e44a1c504c63b3eae17c75b66fa2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Misty Jamison,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Misty Jamison,ou=Product Development,dc=bitwarden,dc=com", + email: "JamisonM@e084ec394e994677a50d409a6357c42a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liduine Brindley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Liduine Brindley,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrindleL@b3c93053c0224253988d5c3b976abcae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inam Cripps,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Inam Cripps,ou=Payroll,dc=bitwarden,dc=com", + email: "CrippsI@98610eb59a8644899b5f6a7dba9c32ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Megumi Sattler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Megumi Sattler,ou=Management,dc=bitwarden,dc=com", + email: "SattlerM@17fbe5ad18ef4466b77b146a182aae32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlies Zalokar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marlies Zalokar,ou=Administrative,dc=bitwarden,dc=com", + email: "ZalokarM@540d8b0a17d449ce8bcc397ded86d3bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiphanie Banik,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tiphanie Banik,ou=Management,dc=bitwarden,dc=com", + email: "BanikT@4ac57cc4c8df40e5be8ca01811d8b65f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosene Couse,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rosene Couse,ou=Payroll,dc=bitwarden,dc=com", + email: "CouseR@466f24c0ae9947d2a9b6e4673a116085.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adoree Sevilla,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Adoree Sevilla,ou=Product Development,dc=bitwarden,dc=com", + email: "SevillaA@b8436b0997234174a1d3652199251b81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caye Clinton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Caye Clinton,ou=Management,dc=bitwarden,dc=com", + email: "ClintonC@ab847cb978244923bfe5ad73b2ff99dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ernie Waybright,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ernie Waybright,ou=Product Development,dc=bitwarden,dc=com", + email: "WaybrigE@d5b185918176486786ef73f8f666edb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doc Hamlett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Doc Hamlett,ou=Product Testing,dc=bitwarden,dc=com", + email: "HamlettD@941810c9cdbf4e55b754495e8f57a20a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abdul Peschke,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Abdul Peschke,ou=Product Testing,dc=bitwarden,dc=com", + email: "PeschkeA@fa78ddbf4a824e749170662a86f94ae1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cordi Systest,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cordi Systest,ou=Payroll,dc=bitwarden,dc=com", + email: "SystestC@ee3b17b3006441ea89cd65327cca286b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jania Mong,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jania Mong,ou=Human Resources,dc=bitwarden,dc=com", + email: "MongJ@9f0f27ec9d584e2ca9d6420c7dbe54a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristi Plato,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kristi Plato,ou=Product Testing,dc=bitwarden,dc=com", + email: "PlatoK@defaeef7e5514df8a6f49e7ca33a461b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Simeon Schober,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Simeon Schober,ou=Administrative,dc=bitwarden,dc=com", + email: "SchoberS@edbf1767c38f4bddb743829cf9c30bc0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leyton Artuso,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leyton Artuso,ou=Payroll,dc=bitwarden,dc=com", + email: "ArtusoL@a16de69a6d644f62a90c207d5ff7152f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Di Corritore,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Di Corritore,ou=Human Resources,dc=bitwarden,dc=com", + email: "CorritoD@f167cff0138c406287e1a7234664f7ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norbert Meubus,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Norbert Meubus,ou=Human Resources,dc=bitwarden,dc=com", + email: "MeubusN@8967a677365042bf9b4c49a667cc17a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allsun Briard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Allsun Briard,ou=Human Resources,dc=bitwarden,dc=com", + email: "BriardA@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rec Desjardins,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rec Desjardins,ou=Administrative,dc=bitwarden,dc=com", + email: "DesjardR@bf2777e1bdc741d1becaefb23144f2ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daveen Portelance,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Daveen Portelance,ou=Administrative,dc=bitwarden,dc=com", + email: "PortelaD@51972c3fcd684339942be0fdc3e53b2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden,dc=com", + email: "IkotinL@4467185dad394a2ab964d923a668f7a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christel Lebon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Christel Lebon,ou=Product Development,dc=bitwarden,dc=com", + email: "LebonC@8959763ade854592b5aa640be7f6b9e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aura Kloth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aura Kloth,ou=Janitorial,dc=bitwarden,dc=com", + email: "KlothA@0dddb86650e94c559800b280597f0c4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laser Totino,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Laser Totino,ou=Product Development,dc=bitwarden,dc=com", + email: "TotinoL@9190783dca9540caa517cb6cbdd19160.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mike Engman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mike Engman,ou=Human Resources,dc=bitwarden,dc=com", + email: "EngmanM@096bd16e7b9047ef820ae279d36addd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marijo Tranter,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marijo Tranter,ou=Peons,dc=bitwarden,dc=com", + email: "TranterM@06df9cb737014f4380a57a8c4a3ae0ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mainoo Fran,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mainoo Fran,ou=Peons,dc=bitwarden,dc=com", + email: "FranM@9fee234f1d9045788518ccfa0390a5ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janos Coulman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Janos Coulman,ou=Administrative,dc=bitwarden,dc=com", + email: "CoulmanJ@7c4650791d5f415f847cb32968294e66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lacey Benfield,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lacey Benfield,ou=Product Testing,dc=bitwarden,dc=com", + email: "BenfielL@4b7280a9bb884d1e9623c6b7302b3c2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harrie Devenyi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Harrie Devenyi,ou=Management,dc=bitwarden,dc=com", + email: "DevenyiH@da5a908240674035b4f089697eec14f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lishe Tatum,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lishe Tatum,ou=Product Development,dc=bitwarden,dc=com", + email: "TatumL@2172785b8d9f4adca3b3c11556362a8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gena Skwarok,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gena Skwarok,ou=Janitorial,dc=bitwarden,dc=com", + email: "SkwarokG@e442907aab1c4de2a3d2eb6b7fab8ddf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThomaieI@f0c445142fda405aa9dfac5dc2ebfc44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PierreAndre Crucefix,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=PierreAndre Crucefix,ou=Management,dc=bitwarden,dc=com", + email: "CrucefiP@6529706823d04eeaa37acaabefd44ca6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ree Smits,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ree Smits,ou=Product Development,dc=bitwarden,dc=com", + email: "SmitsR@052e52ce35f04f70be77c9d468493034.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Panch Talbot,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Panch Talbot,ou=Product Development,dc=bitwarden,dc=com", + email: "TalbotP@53855167a537436d8e1bbb93f42697aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janean Wittich,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Janean Wittich,ou=Payroll,dc=bitwarden,dc=com", + email: "WittichJ@f1af10e65a3c4deea04ab7a7f844eadd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Notley Loyola,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Notley Loyola,ou=Product Testing,dc=bitwarden,dc=com", + email: "LoyolaN@cab7f96e07f64f6bbb85fb9b89c17c94.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden,dc=com", + email: "MontunoS@bd9027744e31459db23a7217225fbe23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden,dc=com", + email: "JonesD@4bdb34fb0864411d8dbdc932e9545ec7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caitlin Grover,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Caitlin Grover,ou=Product Testing,dc=bitwarden,dc=com", + email: "GroverC@8a2b562f0ebe48deb34ccc278a542072.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden,dc=com", + email: "MacLeodI@a768ee42cf36461cb3b1a0b6949b0e29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cissy Paris,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cissy Paris,ou=Janitorial,dc=bitwarden,dc=com", + email: "ParisC@f648ab5b740d44ca8b0dc821ba7c94a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kedah Hedman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kedah Hedman,ou=Janitorial,dc=bitwarden,dc=com", + email: "HedmanK@ed2fd2ca43bb4b14bff25d5cd87d9abc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susy Simard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Susy Simard,ou=Administrative,dc=bitwarden,dc=com", + email: "SimardS@5f40d634eafb4f78acd0b5b4ff05298b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden,dc=com", + email: "MaynardE@9b70e886a18d422fa3404374b5a9613c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nahum Mofina,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nahum Mofina,ou=Payroll,dc=bitwarden,dc=com", + email: "MofinaN@0aee22428274445fb9c2a16b33d788f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patti Simcoe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Patti Simcoe,ou=Janitorial,dc=bitwarden,dc=com", + email: "SimcoeP@bcd6417c39254a37b7a0a0d395d66c96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarisse McArthur,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Clarisse McArthur,ou=Administrative,dc=bitwarden,dc=com", + email: "McArthuC@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", + email: "KastelbZ@264cb0b5ded347678dd5fba66a4be57f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dwight Naujoks,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dwight Naujoks,ou=Peons,dc=bitwarden,dc=com", + email: "NaujoksD@af7402077fba4129bbcd03f9bf068e4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melodee Buzzell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Melodee Buzzell,ou=Payroll,dc=bitwarden,dc=com", + email: "BuzzellM@eaa1c30d2e624c8ba36eae1d34cb0c00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Schouwen Chahal,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Schouwen Chahal,ou=Product Development,dc=bitwarden,dc=com", + email: "ChahalS@3546d29dd7834be9b84722d152b319e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanya Reuben,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kanya Reuben,ou=Administrative,dc=bitwarden,dc=com", + email: "ReubenK@e5bf2a74f7d948bb97855f44d83972fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marji Corvo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marji Corvo,ou=Payroll,dc=bitwarden,dc=com", + email: "CorvoM@eb78b63b75ba4f27a8837a49801a5d87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annarbor Zitko,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Annarbor Zitko,ou=Management,dc=bitwarden,dc=com", + email: "ZitkoA@c21c5e2df59f42bd80274a7d5eb23246.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genovera Thibodeaux,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Genovera Thibodeaux,ou=Management,dc=bitwarden,dc=com", + email: "ThibodeG@6fcf3faf71c9481bb038b9b9074ab98d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aleen Gure,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aleen Gure,ou=Peons,dc=bitwarden,dc=com", + email: "GureA@918d2d4077734b5f89b3311e0d63e21b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trever Jowett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Trever Jowett,ou=Payroll,dc=bitwarden,dc=com", + email: "JowettT@439323a8d95149fea66efa1b90531fea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Concettina Cegelski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Concettina Cegelski,ou=Peons,dc=bitwarden,dc=com", + email: "CegelskC@4855de695c764b0c94d33f9516982d93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eleen Lew,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eleen Lew,ou=Management,dc=bitwarden,dc=com", + email: "LewE@f67253dadd384838b6a62668b81ee96d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minna Reddington,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Minna Reddington,ou=Product Development,dc=bitwarden,dc=com", + email: "ReddingM@f962e28831974b93a906a03bfb585f1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stateson Benning,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Stateson Benning,ou=Administrative,dc=bitwarden,dc=com", + email: "BenningS@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emil Pavlic,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emil Pavlic,ou=Product Development,dc=bitwarden,dc=com", + email: "PavlicE@d5f1e05d95aa48aa94789d8e594894db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kassia Newnam,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kassia Newnam,ou=Payroll,dc=bitwarden,dc=com", + email: "NewnamK@775db391b36843f3b6967be5112cd7c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarke Angeli,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Clarke Angeli,ou=Administrative,dc=bitwarden,dc=com", + email: "AngeliC@d5e1ce2fb74a43bfad3a9a3884b1f907.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flor Rabon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Flor Rabon,ou=Administrative,dc=bitwarden,dc=com", + email: "RabonF@a8d52d2b633f41a2be5b6bf6015e6a0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Damian Berning,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Damian Berning,ou=Product Development,dc=bitwarden,dc=com", + email: "BerningD@02ff8597c50443248a49f6bef6b843ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristal Lum,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cristal Lum,ou=Product Testing,dc=bitwarden,dc=com", + email: "LumC@8883700de05445f081429f80d76247cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Palme Lystuik,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Palme Lystuik,ou=Human Resources,dc=bitwarden,dc=com", + email: "LystuikP@5ee91f5143cf4d9ead291d13c9d53edc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shina Tremaine,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shina Tremaine,ou=Product Testing,dc=bitwarden,dc=com", + email: "TremainS@8dfc96b3d0e547578cb502ea67822dc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Muire Cencier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Muire Cencier,ou=Human Resources,dc=bitwarden,dc=com", + email: "CencierM@8b494156718243beaccc49c77764ab7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brinn Weinbender,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Brinn Weinbender,ou=Product Development,dc=bitwarden,dc=com", + email: "WeinbenB@7770d32208f64a63bf44fae15e8c6935.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoppJ@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden,dc=com", + email: "MedlockP@17cb5e3bf33c46c8bb068c8715e4918e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candee Gozen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Candee Gozen,ou=Product Testing,dc=bitwarden,dc=com", + email: "GozenC@43c4575cb998431b9ef40f1885b13a40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julienne Spencer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Julienne Spencer,ou=Human Resources,dc=bitwarden,dc=com", + email: "SpencerJ@e116936732ce45789365cbd54acef482.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benny Kimm,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Benny Kimm,ou=Payroll,dc=bitwarden,dc=com", + email: "KimmB@a90852e05a704b189e86f5be23a6fead.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden,dc=com", + email: "DiGiambB@1719e95244a44b8596cb64a3732d8148.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kyle Pape,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kyle Pape,ou=Human Resources,dc=bitwarden,dc=com", + email: "PapeK@cfb3c19130a34bd8a1175d4c3cbe2bde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hetti Maciejewski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hetti Maciejewski,ou=Management,dc=bitwarden,dc=com", + email: "MaciejeH@2f2c7c75a80e4912bb53354bb0764e32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden,dc=com", + email: "ArunachG@4f1058076962434d992f12cefe18bd59.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peder Bevington,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Peder Bevington,ou=Product Testing,dc=bitwarden,dc=com", + email: "BevingtP@349cbf4e75d847c1a3a3932212036d74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Royce Kerr,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Royce Kerr,ou=Payroll,dc=bitwarden,dc=com", + email: "KerrR@6dfbae5841184eee86f16ac4a1176697.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelon Armitage,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Madelon Armitage,ou=Janitorial,dc=bitwarden,dc=com", + email: "ArmitagM@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sohayla Resnick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sohayla Resnick,ou=Payroll,dc=bitwarden,dc=com", + email: "ResnickS@8396829dbd6f4494811aec04c011380c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden,dc=com", + email: "TraceyMK@a2257412df964db8b0b017a63b40027d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teri Fabry,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Teri Fabry,ou=Administrative,dc=bitwarden,dc=com", + email: "FabryT@cec3211a38a84845bf22d5434e7f7858.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deina Martincello,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Deina Martincello,ou=Janitorial,dc=bitwarden,dc=com", + email: "MartincD@1cec494b2c6b4b8a8fb44bcdcbcfca34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aleen Ayre,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Aleen Ayre,ou=Human Resources,dc=bitwarden,dc=com", + email: "AyreA@efa9f7679ea94344a42e6df58b28f7ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roseline Risher,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Roseline Risher,ou=Product Testing,dc=bitwarden,dc=com", + email: "RisherR@1b5d8352bac64038b1e8fc921d81a384.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reuben Lychak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Reuben Lychak,ou=Janitorial,dc=bitwarden,dc=com", + email: "LychakR@98b778e04cdc413792a21b3367fbde45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelsy Rozier,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kelsy Rozier,ou=Administrative,dc=bitwarden,dc=com", + email: "RozierK@d26e69c4dd7641e8943c5c22db2243f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herronald Walta,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Herronald Walta,ou=Management,dc=bitwarden,dc=com", + email: "WaltaH@8df14385ae864b439973adc9259c1607.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oralee Shiflett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Oralee Shiflett,ou=Payroll,dc=bitwarden,dc=com", + email: "ShifletO@9cb309c14f394c15bfd37b4264f18ad3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurice Coe,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maurice Coe,ou=Administrative,dc=bitwarden,dc=com", + email: "CoeM@df4398eeee504d4688e79f5fade4e06a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden,dc=com", + email: "LesmeriS@71334519f85d4ff38bd6a6b8f4192c09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greg Candelario,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Greg Candelario,ou=Management,dc=bitwarden,dc=com", + email: "CandelaG@0ad12ce5726b4f478ea6768be55c341f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden,dc=com", + email: "GerynowJ@f913ff5eacd8463cb806d02d62200c74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genny Horemans,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Genny Horemans,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoremanG@5dc39fbc350c43fe84c932142400265c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willeke Gagnon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Willeke Gagnon,ou=Management,dc=bitwarden,dc=com", + email: "GagnonW@a40bbab821574ad58a604582fafa7e52.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden,dc=com", + email: "ElhamahC@19261efb99bb4b2ba698af6633bee481.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nijen Testa,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nijen Testa,ou=Management,dc=bitwarden,dc=com", + email: "TestaN@b704bf76672f4edf96dc7a81797bfb18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binni Vasile,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Binni Vasile,ou=Administrative,dc=bitwarden,dc=com", + email: "VasileB@9367f9f8454348d3886816e5fdc4ee80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thor Mamoulides,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Thor Mamoulides,ou=Peons,dc=bitwarden,dc=com", + email: "MamouliT@514c4dabf5514f759283b3fa82dba706.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merridie Charlinski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Merridie Charlinski,ou=Product Development,dc=bitwarden,dc=com", + email: "CharlinM@503493165e34480591885ddd3a12206f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sundaram Trocchi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sundaram Trocchi,ou=Management,dc=bitwarden,dc=com", + email: "TrocchiS@9c1a16ce358c4da3bb256d63a9955243.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden,dc=com", + email: "AjerschN@3264b8974bc14e47aff69928751d5552.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Divine Sebeh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Divine Sebeh,ou=Product Development,dc=bitwarden,dc=com", + email: "SebehD@8396829dbd6f4494811aec04c011380c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiff Mader,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tiff Mader,ou=Peons,dc=bitwarden,dc=com", + email: "MaderT@5252b436274c46eeaa1a93446d86930f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karly Adornato,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karly Adornato,ou=Management,dc=bitwarden,dc=com", + email: "AdornatK@a821e56b318247488fefa798a1560d4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petrina Bovey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Petrina Bovey,ou=Product Development,dc=bitwarden,dc=com", + email: "BoveyP@cb080e2974a14fac8bb31166d02685f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andie Subasinghe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Andie Subasinghe,ou=Product Development,dc=bitwarden,dc=com", + email: "SubasinA@a2de644016074e339d2f86b6a140c75b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kimiko Florescu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kimiko Florescu,ou=Management,dc=bitwarden,dc=com", + email: "FlorescK@68682c9b2559463bb9da0d98b541595f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnesse Kiger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Agnesse Kiger,ou=Management,dc=bitwarden,dc=com", + email: "KigerA@d6b3231dbb434132911ed9c9e37e3901.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trude Hanham,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Trude Hanham,ou=Janitorial,dc=bitwarden,dc=com", + email: "HanhamT@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden,dc=com", + email: "SzaplonV@bcfbfd5ee6b14185b04773704662d3e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greta Timler,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Greta Timler,ou=Peons,dc=bitwarden,dc=com", + email: "TimlerG@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobbye Ludviksen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bobbye Ludviksen,ou=Management,dc=bitwarden,dc=com", + email: "LudviksB@5ffed17cc69d4719b003fa0cfe2777f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden,dc=com", + email: "KoleyniR@2c04f0ba9f9e42d4ba30e45d9ac9ae06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adiana Tohama,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Adiana Tohama,ou=Administrative,dc=bitwarden,dc=com", + email: "TohamaA@3fe7f6d7adf6406f923792a176bd4ea0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden,dc=com", + email: "RygwalsE@e0325d1b480a46fd813ea04ca5c966cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hildagarde Neumann,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hildagarde Neumann,ou=Peons,dc=bitwarden,dc=com", + email: "NeumannH@736366bf947d4889a5087519dbc9eaff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibylla Younger,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sibylla Younger,ou=Janitorial,dc=bitwarden,dc=com", + email: "YoungerS@f1ba9fe3a35e44c3978d785a0d395a14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jodie Eckstein,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jodie Eckstein,ou=Administrative,dc=bitwarden,dc=com", + email: "EcksteiJ@d07128744ede47b1a1b8648da086036a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rea Barolet,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rea Barolet,ou=Management,dc=bitwarden,dc=com", + email: "BaroletR@4824b8d6b19b477496c8e66703f2331e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rustu Paige,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rustu Paige,ou=Janitorial,dc=bitwarden,dc=com", + email: "PaigeR@777873609ce9463eb7000e930f9c88d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davinder Caves,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Davinder Caves,ou=Product Development,dc=bitwarden,dc=com", + email: "CavesD@c356619b4769401bb929afda889d39f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celyne Settels,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Celyne Settels,ou=Administrative,dc=bitwarden,dc=com", + email: "SettelsC@ab04014fcfcf443881ea178cd34f1aab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marina Higham,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marina Higham,ou=Payroll,dc=bitwarden,dc=com", + email: "HighamM@fe740c0ae3204fcc953b18216e0c9dcc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Augusto Gawargy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Augusto Gawargy,ou=Peons,dc=bitwarden,dc=com", + email: "GawargyA@fe184af833734409842cae4ea614a7b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hudai Popp,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hudai Popp,ou=Administrative,dc=bitwarden,dc=com", + email: "PoppH@066366af1bc843378bcfdd813a95df98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Babak Tussey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Babak Tussey,ou=Product Development,dc=bitwarden,dc=com", + email: "TusseyB@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden,dc=com", + email: "BellehuW@71bf922abd2749a3982856c35ce9c912.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lionel Childers,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lionel Childers,ou=Administrative,dc=bitwarden,dc=com", + email: "ChilderL@328af8448e3c4d53991764541abc54ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robena McDevitt,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Robena McDevitt,ou=Human Resources,dc=bitwarden,dc=com", + email: "McDevitR@9967fe39a419474db05f70cea6eee0f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden,dc=com", + email: "WellardG@b613aec4ece744c9bcff2f9c3efe0aed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden,dc=com", + email: "BarszczD@dc4e00565ed740ca8c4a935c1cd2fe2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gael Elias,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gael Elias,ou=Peons,dc=bitwarden,dc=com", + email: "EliasG@9dc5f26c8d604d308d7d70d0272f1d88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Floria Harless,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Floria Harless,ou=Management,dc=bitwarden,dc=com", + email: "HarlessF@0d3b7d7cbc834c0cbc976d09482d6768.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden,dc=com", + email: "RickelM@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kandy Chanco,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kandy Chanco,ou=Peons,dc=bitwarden,dc=com", + email: "ChancoK@dbf1f20f7fd241cc84adfba60d194c8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanya Pelissier,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vanya Pelissier,ou=Management,dc=bitwarden,dc=com", + email: "PelissiV@d4881d0da2824b94aad995234e30bb1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noubar Shute,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Noubar Shute,ou=Payroll,dc=bitwarden,dc=com", + email: "ShuteN@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden,dc=com", + email: "GalluzzC@193a813b90bf4054a776a2e46081339c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eliza Roney,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eliza Roney,ou=Product Testing,dc=bitwarden,dc=com", + email: "RoneyE@daa1e24c0eb048798f1d4ee756ce865c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Els Sridhar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Els Sridhar,ou=Product Development,dc=bitwarden,dc=com", + email: "SridharE@7cefaa55a36f4be4acff376f7ddd1a67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Masood Kemppainen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Masood Kemppainen,ou=Payroll,dc=bitwarden,dc=com", + email: "KemppaiM@8b0911565ebc48f8bdf8c3ff36728f00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karisa Botting,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Karisa Botting,ou=Payroll,dc=bitwarden,dc=com", + email: "BottingK@fecc39f9d20d45d991f7afeb75e37b9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francisco Dallaire,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Francisco Dallaire,ou=Payroll,dc=bitwarden,dc=com", + email: "DallairF@7bdb27652ff44b53af3458ba811e7f70.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jordana Hersee,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jordana Hersee,ou=Peons,dc=bitwarden,dc=com", + email: "HerseeJ@6eda6577067f465b84cdc51153ccba3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gillan Hufana,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gillan Hufana,ou=Human Resources,dc=bitwarden,dc=com", + email: "HufanaG@7d2914d75d254468950490f34fff79f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shep Schroeder,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shep Schroeder,ou=Administrative,dc=bitwarden,dc=com", + email: "SchroedS@5414e6754d4b4f6bbcd511a3a43e9ff6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Masahiro Haughey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Masahiro Haughey,ou=Administrative,dc=bitwarden,dc=com", + email: "HaugheyM@43ed30f036954e65898067e558a32b4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden,dc=com", + email: "BoyajiaG@ecd862454c8b49a4ab4dccef5a805c86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariele Puukila,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mariele Puukila,ou=Management,dc=bitwarden,dc=com", + email: "PuukilaM@9168c74ef41149569e1e454986f240f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden,dc=com", + email: "HopkinsN@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=An Assenza,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=An Assenza,ou=Administrative,dc=bitwarden,dc=com", + email: "AssenzaA@6012fc3f273d40f18822bdc7b0a5938e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nerta Huitt,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nerta Huitt,ou=Product Development,dc=bitwarden,dc=com", + email: "HuittN@9a5eb95a8d064ae1ab7c5bae15e123a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dela Gilliam,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dela Gilliam,ou=Product Development,dc=bitwarden,dc=com", + email: "GilliamD@2ffe207cbf4244c5be34772f95d3e203.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edric Dolginoff,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Edric Dolginoff,ou=Product Development,dc=bitwarden,dc=com", + email: "DolginoE@b5bcc4ce776e4805ab4216703177730e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Livvy Flores,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Livvy Flores,ou=Administrative,dc=bitwarden,dc=com", + email: "FloresL@7c2fe37e93114583be5da4a11c32b590.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flossi Fumerton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Flossi Fumerton,ou=Management,dc=bitwarden,dc=com", + email: "FumertoF@1c6815f019224d89bea339008a2dffbe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fanni Noah,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fanni Noah,ou=Administrative,dc=bitwarden,dc=com", + email: "NoahF@a08a36a3e7a643d9a21fd4a80adf64e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tobe Blostein,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tobe Blostein,ou=Payroll,dc=bitwarden,dc=com", + email: "BlosteiT@452f7760183e4b0298d966a8ad5e45e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madlen JodoinStJean,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Madlen JodoinStJean,ou=Management,dc=bitwarden,dc=com", + email: "JodoinSM@e97e68f305e3440c9129677cf226a2f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felipe McBroom,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Felipe McBroom,ou=Janitorial,dc=bitwarden,dc=com", + email: "McBroomF@48f243cdc32d45d6aad070d357ee442e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stella Hoare,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Stella Hoare,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoareS@cbf0651b176b40b3a9e0984d1cf7efbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden,dc=com", + email: "CsopS@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anthony Pringle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anthony Pringle,ou=Janitorial,dc=bitwarden,dc=com", + email: "PringleA@547a7e1e0d95484c8a7654407d3e43c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alexina Buschelman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alexina Buschelman,ou=Product Development,dc=bitwarden,dc=com", + email: "BuschelA@b1fe32739d494b049e229d2be6982c9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Floris Decelles,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Floris Decelles,ou=Peons,dc=bitwarden,dc=com", + email: "DecelleF@0b9e602c3a92485da529010ed919b9e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bella Jayamanne,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bella Jayamanne,ou=Product Development,dc=bitwarden,dc=com", + email: "JayamanB@6ffc05f614d948aa9f4574ca027b0151.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erminie Normandin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Erminie Normandin,ou=Management,dc=bitwarden,dc=com", + email: "NormandE@9f9fe6d238ce4f8cb29cecfb73bf648a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niz Colucci,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Niz Colucci,ou=Management,dc=bitwarden,dc=com", + email: "ColucciN@415c030ee16d4de4a7392387c8cef87f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Muni Strock,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Muni Strock,ou=Janitorial,dc=bitwarden,dc=com", + email: "StrockM@2b8b15b2c5c943829658bf927a1b606d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aybars Lavers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Aybars Lavers,ou=Payroll,dc=bitwarden,dc=com", + email: "LaversA@3a6874a38197445fbf21db557fe28dc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden,dc=com", + email: "DesrosiB@3f22733d317d4f91854fb0b865164d32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden,dc=com", + email: "BorodajY@16d1d9688ffa4f59a9529d3b32ff16fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden,dc=com", + email: "KodnarC@6af59491c5a74fddb4c99c2f4eaecac5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Careers DeSalis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Careers DeSalis,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeSalisC@d8f95844461442f7932326cd41b836f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden,dc=com", + email: "CalcoteH@530df39e624341ce900342a91a704d99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anna Meckley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anna Meckley,ou=Payroll,dc=bitwarden,dc=com", + email: "MeckleyA@a046a9cbbddd48b590c68e29ebbbad81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilith Stejskal,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lilith Stejskal,ou=Payroll,dc=bitwarden,dc=com", + email: "StejskaL@a23a63f768764ebb9f25e196f981df61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prudy Australia,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Prudy Australia,ou=Payroll,dc=bitwarden,dc=com", + email: "AustralP@0886597f6db54159b6bf740e90826839.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stevena Alberse,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Stevena Alberse,ou=Payroll,dc=bitwarden,dc=com", + email: "AlberseS@8eaa02b53fec48d0842607d198bfec39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janson Finak,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Janson Finak,ou=Peons,dc=bitwarden,dc=com", + email: "FinakJ@1e51049529e146d4a9d0e0d1e98a7af3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trudy Hillring,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Trudy Hillring,ou=Administrative,dc=bitwarden,dc=com", + email: "HillrinT@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Albert Rolfes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Albert Rolfes,ou=Product Testing,dc=bitwarden,dc=com", + email: "RolfesA@c8ee77199e8a4c8b9eaba7996bee1657.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coletta Azad,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Coletta Azad,ou=Management,dc=bitwarden,dc=com", + email: "AzadC@8e76ac132bbc40639d377cc963491f20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celestyna DeVries,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Celestyna DeVries,ou=Peons,dc=bitwarden,dc=com", + email: "DeVriesC@235bdf1949f24a4b80141074712cdcd7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden,dc=com", + email: "KlosterL@3ce51f6d63564349a707188cebe0b9db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darda Mitrani,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Darda Mitrani,ou=Human Resources,dc=bitwarden,dc=com", + email: "MitraniD@edaeeeda9dac4d529991a1e33586bf00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Burton Falquero,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Burton Falquero,ou=Management,dc=bitwarden,dc=com", + email: "FalquerB@e677741303634ac2804273adce139081.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lishe Suess,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lishe Suess,ou=Human Resources,dc=bitwarden,dc=com", + email: "SuessL@280567b14e5b498fb0bc375c822f4548.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adora Droste,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Adora Droste,ou=Human Resources,dc=bitwarden,dc=com", + email: "DrosteA@58fb794b3cd74bd6925d4e906edf1e0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden,dc=com", + email: "ObermeyM@acb4046ec7714c0fad9acedf1017d851.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paper Blakeslee,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Paper Blakeslee,ou=Administrative,dc=bitwarden,dc=com", + email: "BlakeslP@35f9e0ae24c24ec3baa413620b2b7eb4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teena Klavkalns,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Teena Klavkalns,ou=Administrative,dc=bitwarden,dc=com", + email: "KlavkalT@f397e344461e4f9a88c49c97eb320637.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden,dc=com", + email: "MitchelV@91ed7be59f5046a99ecb320616cf96d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden,dc=com", + email: "McQuarrS@96b5430a2ccc4177bd773424088b496b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChiKwan Lakhani,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ChiKwan Lakhani,ou=Management,dc=bitwarden,dc=com", + email: "LakhaniC@c75f0e626db74dca96376386c5032bd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niz Tassy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Niz Tassy,ou=Peons,dc=bitwarden,dc=com", + email: "TassyN@339e122adcf4463f83274df9a1e1749f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marg Cavanagh,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marg Cavanagh,ou=Peons,dc=bitwarden,dc=com", + email: "CavanagM@f2a6f34598244e88aecb895cbecfca2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anthony Luyten,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anthony Luyten,ou=Administrative,dc=bitwarden,dc=com", + email: "LuytenA@07f933542a8443fa9fa85a2d55eb8b28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mira Hinkel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mira Hinkel,ou=Product Testing,dc=bitwarden,dc=com", + email: "HinkelM@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florette Amos,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Florette Amos,ou=Payroll,dc=bitwarden,dc=com", + email: "AmosF@20bbf24fbc3b442da2b7e99430631372.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clara Maglione,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clara Maglione,ou=Management,dc=bitwarden,dc=com", + email: "MaglionC@9377f34b40c845ea9ad33f532a97d8a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kizzie Leang,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kizzie Leang,ou=Peons,dc=bitwarden,dc=com", + email: "LeangK@3b6256d1a2114444bde1996d1b271e4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celestia Tobias,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Celestia Tobias,ou=Administrative,dc=bitwarden,dc=com", + email: "TobiasC@db3ffdb4452b42c4898f995b3d073240.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden,dc=com", + email: "SilvertH@02d364e8b5314cbabf82326287f95a37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jet McGregor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jet McGregor,ou=Management,dc=bitwarden,dc=com", + email: "McGregoJ@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristien Brokaw,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kristien Brokaw,ou=Peons,dc=bitwarden,dc=com", + email: "BrokawK@02ce75bcb8d0491f899a2b936126cb22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karole Su,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Karole Su,ou=Payroll,dc=bitwarden,dc=com", + email: "SuK@a55a0552890b4055ae5195bed49574db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden,dc=com", + email: "ZiebartC@98b2d363da184136b48a9bfde02f5760.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laureen Shrieves,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Laureen Shrieves,ou=Payroll,dc=bitwarden,dc=com", + email: "ShrieveL@7f942390e1bf40f296074b513660c50e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dalila Hassold,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dalila Hassold,ou=Management,dc=bitwarden,dc=com", + email: "HassoldD@8b7fc53ad9d44eee917cc3e25b895199.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miro Trent,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Miro Trent,ou=Product Testing,dc=bitwarden,dc=com", + email: "TrentM@494658ad0bff4810b3d5b5096c85b666.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashley Woessner,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ashley Woessner,ou=Janitorial,dc=bitwarden,dc=com", + email: "WoessneA@dfbf12c2de4a4c2a9714439426a97be0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orelia Nasir,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Orelia Nasir,ou=Product Testing,dc=bitwarden,dc=com", + email: "NasirO@2ba9191b746c48859df4b1a8bcc442ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoshiaki Blann,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yoshiaki Blann,ou=Peons,dc=bitwarden,dc=com", + email: "BlannY@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolie Dropin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jolie Dropin,ou=Product Testing,dc=bitwarden,dc=com", + email: "DropinJ@9cde21d54f45469eaa2726ba1c900158.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mami Badjari,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mami Badjari,ou=Product Testing,dc=bitwarden,dc=com", + email: "BadjariM@db74de76c5374bf883b5c0e4951495b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nash Enstone,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nash Enstone,ou=Peons,dc=bitwarden,dc=com", + email: "EnstoneN@7dc4d22df72d4b7ea867e84e8a1a18c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden,dc=com", + email: "BaribeaK@dc4e00565ed740ca8c4a935c1cd2fe2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden,dc=com", + email: "PanchmaC@a5f4802ff3844a6da03607a2952d6142.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binny Strannemar,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Binny Strannemar,ou=Human Resources,dc=bitwarden,dc=com", + email: "StranneB@d1b4a8f4bfcd4e2c9e8835bd8152821a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorri Auker,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dorri Auker,ou=Human Resources,dc=bitwarden,dc=com", + email: "AukerD@2adc28241a1f46749fea06db3960400f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden,dc=com", + email: "BergstrZ@d12ac5e9d33844cb95242d9ef1474ea0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beverie Wada,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Beverie Wada,ou=Product Development,dc=bitwarden,dc=com", + email: "WadaB@f707f835774c41b68275e151d7d499c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden,dc=com", + email: "CarboneE@b7faf436ed93412c95576fc8c712f2d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivian Skaftason,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vivian Skaftason,ou=Peons,dc=bitwarden,dc=com", + email: "SkaftasV@387e909c989e4028811c31a83af61782.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fayth Marr,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fayth Marr,ou=Product Testing,dc=bitwarden,dc=com", + email: "MarrF@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rowan Reichow,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rowan Reichow,ou=Payroll,dc=bitwarden,dc=com", + email: "ReichowR@95d418bbcea04118a52deb10863e13db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clementia Pesik,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Clementia Pesik,ou=Payroll,dc=bitwarden,dc=com", + email: "PesikC@afd234efc12945238daa43bdcf2611be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sofie Baugnon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sofie Baugnon,ou=Administrative,dc=bitwarden,dc=com", + email: "BaugnonS@59778d9e834c452586d9e26b970164f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Astrid Montoya,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Astrid Montoya,ou=Product Testing,dc=bitwarden,dc=com", + email: "MontoyaA@936c219fa5734e078ad4251f638dcef1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden,dc=com", + email: "MuzioH@4ae1d64c9a5a4ca1a7356298a39877d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grover Dehoff,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Grover Dehoff,ou=Management,dc=bitwarden,dc=com", + email: "DehoffG@8e58146437ae4809935cbbfea9366714.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nerty Nair,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nerty Nair,ou=Product Testing,dc=bitwarden,dc=com", + email: "NairN@57c8e316985b48038aad56a3f94817a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden,dc=com", + email: "GehrE@0cee059feb2f45d0a3e77b9cb46c95e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rene McKearney,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rene McKearney,ou=Peons,dc=bitwarden,dc=com", + email: "McKearnR@62d6b52263d643d2a05493b576aca6a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pat Libadmin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pat Libadmin,ou=Payroll,dc=bitwarden,dc=com", + email: "LibadmiP@adfd9881a9c8497ca549f3f76c4a7563.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden,dc=com", + email: "DunningA@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanu Slozil,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kanu Slozil,ou=Administrative,dc=bitwarden,dc=com", + email: "SlozilK@841df0a2276144ffade10ec334e0a08c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cecile Shupe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cecile Shupe,ou=Product Development,dc=bitwarden,dc=com", + email: "ShupeC@ece1fab2e72c4ef2980d13b290c0165f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fahim Kandra,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fahim Kandra,ou=Administrative,dc=bitwarden,dc=com", + email: "KandraF@e9f78b5202b6404b9ee727f9d75a47b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerald Laroche,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gerald Laroche,ou=Janitorial,dc=bitwarden,dc=com", + email: "LarocheG@c2ff834411a74d309100193d31df013a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", + email: "WikkeriC@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devon Pesold,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Devon Pesold,ou=Janitorial,dc=bitwarden,dc=com", + email: "PesoldD@9befe039acaf4d578a86c80d677d5d49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daile Burger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Daile Burger,ou=Administrative,dc=bitwarden,dc=com", + email: "BurgerD@2050283a8ad249b48adb290c7534145d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden,dc=com", + email: "KauffmaJ@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tricord Gumb,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tricord Gumb,ou=Peons,dc=bitwarden,dc=com", + email: "GumbT@1114ec94893c4de2b94b261fe2161258.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shena Atteridge,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shena Atteridge,ou=Product Development,dc=bitwarden,dc=com", + email: "AtteridS@34b13abf3e53487c98ee71b110b55537.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silvester Piette,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Silvester Piette,ou=Administrative,dc=bitwarden,dc=com", + email: "PietteS@7e7373daa08d4a3b834f2e415978d199.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amnon Gause,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Amnon Gause,ou=Product Development,dc=bitwarden,dc=com", + email: "GauseA@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clemente Eva,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Clemente Eva,ou=Product Development,dc=bitwarden,dc=com", + email: "EvaC@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donnajean Carron,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Donnajean Carron,ou=Janitorial,dc=bitwarden,dc=com", + email: "CarronD@d0eb59d9416b478ea7e9e6add086d998.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden,dc=com", + email: "SerbusW@e67a7ab12b0d4d819423914b8a02e571.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailene Chavez,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ailene Chavez,ou=Payroll,dc=bitwarden,dc=com", + email: "ChavezA@49f125d3a1b3429789a5b52822aa6b88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annet Leshowitz,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Annet Leshowitz,ou=Management,dc=bitwarden,dc=com", + email: "LeshowiA@f6a15f7382e844a784e99c66615d4c58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willy Jimenez,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Willy Jimenez,ou=Human Resources,dc=bitwarden,dc=com", + email: "JimenezW@91c1e03d3c58475f891067cc0da82fda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teddi Arai,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Teddi Arai,ou=Payroll,dc=bitwarden,dc=com", + email: "AraiT@23c49cd8e8ea45d2969cffc2057f5127.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tammy McBeth,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tammy McBeth,ou=Human Resources,dc=bitwarden,dc=com", + email: "McBethT@a0441f048a884d1891acef81ab17bc91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Waverly Cadshare,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Waverly Cadshare,ou=Administrative,dc=bitwarden,dc=com", + email: "CadsharW@1fca0d84539f4e2793fe7b6d498c02ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanLouis Okura,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=JeanLouis Okura,ou=Payroll,dc=bitwarden,dc=com", + email: "OkuraJ@70e5048368bb463a909414f19d29543c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonia Khosla,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tonia Khosla,ou=Peons,dc=bitwarden,dc=com", + email: "KhoslaT@9c2e6c9cd4a84de798c45d0f7e513159.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binni Rasmussen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Binni Rasmussen,ou=Management,dc=bitwarden,dc=com", + email: "RasmussB@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herb Stansbury,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Herb Stansbury,ou=Peons,dc=bitwarden,dc=com", + email: "StansbuH@e163cc78ce6a4972adc62831f8cfd810.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ralina Fouke,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ralina Fouke,ou=Administrative,dc=bitwarden,dc=com", + email: "FoukeR@3358f35c8d4144d59100e666ebc7914f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden,dc=com", + email: "LawrieE@0fcafdb14683453782c5b7d16f816196.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merridie Vankooten,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Merridie Vankooten,ou=Payroll,dc=bitwarden,dc=com", + email: "VankootM@41bf97a0f83643ecb5c3ae7dea3fc6f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden,dc=com", + email: "JoachimK@e99ccdd4f1854e85b7018db9ee827387.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Millie Doda,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Millie Doda,ou=Management,dc=bitwarden,dc=com", + email: "DodaM@7341939506294cf3bdd4bdeca7674074.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alexia Layton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alexia Layton,ou=Janitorial,dc=bitwarden,dc=com", + email: "LaytonA@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lottie Filpus,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lottie Filpus,ou=Management,dc=bitwarden,dc=com", + email: "FilpusL@f069d8208db84a5496e2d819694425d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tommie Craib,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tommie Craib,ou=Peons,dc=bitwarden,dc=com", + email: "CraibT@a1229ea2ddce4147b437f4d3ad26de38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Narrima Cavnar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Narrima Cavnar,ou=Payroll,dc=bitwarden,dc=com", + email: "CavnarN@d5cee79f473a444ab2622a6d06a74e01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walt Gentes,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Walt Gentes,ou=Administrative,dc=bitwarden,dc=com", + email: "GentesW@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gay Acelvari,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gay Acelvari,ou=Product Testing,dc=bitwarden,dc=com", + email: "AcelvarG@00cf2c241c534697a382f39ac298a035.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raeann Laws,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Raeann Laws,ou=Peons,dc=bitwarden,dc=com", + email: "LawsR@14a50969231442b7a4661f1630e8f16c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YuKai Goodrow,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=YuKai Goodrow,ou=Payroll,dc=bitwarden,dc=com", + email: "GoodrowY@5961547593ce4d3d831c972ef1cd392b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden,dc=com", + email: "BnrinfoL@7c6533f264974d51a9e95294d086acef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tad Caceres,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tad Caceres,ou=Janitorial,dc=bitwarden,dc=com", + email: "CaceresT@aa27b3d0b2304f6aa579ad064be338d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorreen Dewit,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dorreen Dewit,ou=Administrative,dc=bitwarden,dc=com", + email: "DewitD@789d3ef8deb24c20bce9e2915a466aef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francisca Griswold,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Francisca Griswold,ou=Management,dc=bitwarden,dc=com", + email: "GriswolF@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Motaz Metz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Motaz Metz,ou=Janitorial,dc=bitwarden,dc=com", + email: "MetzM@c6ecb3f5d2c24d25a5b9ac4ff092f2f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorry Suprick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lorry Suprick,ou=Product Testing,dc=bitwarden,dc=com", + email: "SuprickL@ae7270bab55c471e8d4684834aceebc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassey Precoda,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cassey Precoda,ou=Product Development,dc=bitwarden,dc=com", + email: "PrecodaC@a4566d06f4404638b79325caaec894f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kevina Zauhar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kevina Zauhar,ou=Payroll,dc=bitwarden,dc=com", + email: "ZauharK@e705dc3960ae453fb9cbbc66d57830b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diandra Pafilis,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Diandra Pafilis,ou=Management,dc=bitwarden,dc=com", + email: "PafilisD@06d31112a23c438e8cd439e22e02ac63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaylah Poyner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shaylah Poyner,ou=Peons,dc=bitwarden,dc=com", + email: "PoynerS@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agenia Joshi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Agenia Joshi,ou=Product Development,dc=bitwarden,dc=com", + email: "JoshiA@6e182e42a9474534add2d6f2d3638914.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden,dc=com", + email: "LaVecchA@bd2c7ab0e4084b83a6509029744de154.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", + email: "WatchmaR@e10037e1eec24ce3ab8d8566fc3aaa83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden,dc=com", + email: "OziemblM@0e5adb3dd0d14cc89a2b37de2a8aa9c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imre Farag,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Imre Farag,ou=Product Development,dc=bitwarden,dc=com", + email: "FaragI@00cec4060ff5488a983c2cc3b42801e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alina Naphan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alina Naphan,ou=Management,dc=bitwarden,dc=com", + email: "NaphanA@e9aa0388b0974f709cc43e6d5c1d4048.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden,dc=com", + email: "GibsonM@29c3d32bd72d456b98ccdb1f1f704bb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Twila Billard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Twila Billard,ou=Management,dc=bitwarden,dc=com", + email: "BillardT@6fe2230bebbe45c4b4897cbd6f689c6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden,dc=com", + email: "WooffX@55ead9ec44144dd8a609d27bbb37e157.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ari Windom,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ari Windom,ou=Product Development,dc=bitwarden,dc=com", + email: "WindomA@d5a62d125bc14270b01fa0b9a8576c7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opaline Gomes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Opaline Gomes,ou=Management,dc=bitwarden,dc=com", + email: "GomesO@3009937061fa44e08033cd2d77480708.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden,dc=com", + email: "DyrdahlR@4c9ea5cb0c6d47f0bff8da92c6c9d0eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Svend Bongers,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Svend Bongers,ou=Administrative,dc=bitwarden,dc=com", + email: "BongersS@3ee42841812c4e2f8f42547c056a47a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzette Burkey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Suzette Burkey,ou=Janitorial,dc=bitwarden,dc=com", + email: "BurkeyS@471e794006cb42c3b4dce1c843b0ccc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klazina Grabowski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Klazina Grabowski,ou=Product Development,dc=bitwarden,dc=com", + email: "GrabowsK@116c2088f9014599b930c7e21848d917.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jester Alink,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jester Alink,ou=Janitorial,dc=bitwarden,dc=com", + email: "AlinkJ@995756bc696444e0925a45b2d907b2e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden,dc=com", + email: "FogelsoA@7cb67504c13e412a8fec103be024f92b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andre Hatzenbichler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Andre Hatzenbichler,ou=Management,dc=bitwarden,dc=com", + email: "HatzenbA@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden,dc=com", + email: "MontunoL@c8d14bd2dc82442f9c5011dbd053c45a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raudres Negandhi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Raudres Negandhi,ou=Administrative,dc=bitwarden,dc=com", + email: "NegandhR@b866cf3614c84b6ab1508dbbda76e67a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marj Posta,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marj Posta,ou=Administrative,dc=bitwarden,dc=com", + email: "PostaM@68ce8f6324ee4d5691543ff35fe05d84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden,dc=com", + email: "LalondeM@31118e4ea061472193269b0ea325f915.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WaiMan Stillwell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=WaiMan Stillwell,ou=Peons,dc=bitwarden,dc=com", + email: "StillweW@fb6b5989f0e34d278066748667edadde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Audi Adamski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Audi Adamski,ou=Peons,dc=bitwarden,dc=com", + email: "AdamskiA@2ac984f088f74653b77322f263723237.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Earl Stanton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Earl Stanton,ou=Peons,dc=bitwarden,dc=com", + email: "StantonE@c7b440e597614575a5a39ed9339f6e2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reggie Venturini,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Reggie Venturini,ou=Administrative,dc=bitwarden,dc=com", + email: "VenturiR@8227646c55034cf9b21757fce681b53f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jannelle Berro,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jannelle Berro,ou=Product Testing,dc=bitwarden,dc=com", + email: "BerroJ@6452f4682aa64d008088217c5ad881f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marya Buford,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marya Buford,ou=Payroll,dc=bitwarden,dc=com", + email: "BufordM@b1e31f863da04aa8b9a57d43a6e09dae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kally Tinney,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kally Tinney,ou=Human Resources,dc=bitwarden,dc=com", + email: "TinneyK@cf1f0125e0794b80b348dddaa747ca09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verile Maksoud,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Verile Maksoud,ou=Product Development,dc=bitwarden,dc=com", + email: "MaksoudV@bf7383f759754f9b9777ee05159141ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaun Sandhu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shaun Sandhu,ou=Management,dc=bitwarden,dc=com", + email: "SandhuS@c67e58274a874c9595360f767ef27116.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michal Andrew,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Michal Andrew,ou=Administrative,dc=bitwarden,dc=com", + email: "AndrewM@4dd9b19c6f6848e2a0768f206ad89104.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valerie Efthim,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Valerie Efthim,ou=Peons,dc=bitwarden,dc=com", + email: "EfthimV@8a407807d42746848c0943df6e11c535.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden,dc=com", + email: "PizzaneI@7dd094a2e53049a29a9302610c3b379c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadella Loggins,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sadella Loggins,ou=Janitorial,dc=bitwarden,dc=com", + email: "LogginsS@afea5fd146ef4dd19f19321d779917eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden,dc=com", + email: "LeiweH@a973beae67824ff38510168917193e58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HackHoo Hunter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=HackHoo Hunter,ou=Product Development,dc=bitwarden,dc=com", + email: "HunterH@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meter Hickerson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Meter Hickerson,ou=Peons,dc=bitwarden,dc=com", + email: "HickersM@518da73225eb4a77959fb191daf72b49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryKay Lan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=MaryKay Lan,ou=Janitorial,dc=bitwarden,dc=com", + email: "LanM@fd5fdd80b1a14938bb4e5ddb7ae924b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giana Pierson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Giana Pierson,ou=Administrative,dc=bitwarden,dc=com", + email: "PiersonG@ae78ee526c5e44bdaf510c03b717277a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shiela Anthonissen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shiela Anthonissen,ou=Management,dc=bitwarden,dc=com", + email: "AnthoniS@92fac5dc49334a53a79e5778457c6927.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toby Winterberg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Toby Winterberg,ou=Janitorial,dc=bitwarden,dc=com", + email: "WinterbT@5b0da98f68834ea191407bb1ee431580.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leticia Metheny,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leticia Metheny,ou=Management,dc=bitwarden,dc=com", + email: "MethenyL@523c7925179d4304b25908d832088d77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden,dc=com", + email: "MoschopS@d21aff3093e74a19bbea5f621e17cee4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raven Tuan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Raven Tuan,ou=Product Development,dc=bitwarden,dc=com", + email: "TuanR@fa45ba90b06846bb81fc9f04c3bbe415.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leddy Kochis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Leddy Kochis,ou=Peons,dc=bitwarden,dc=com", + email: "KochisL@4791ce49665d4017b7808a73f1a6c3d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niek Tripp,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Niek Tripp,ou=Administrative,dc=bitwarden,dc=com", + email: "TrippN@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Curtis Caglayan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Curtis Caglayan,ou=Product Development,dc=bitwarden,dc=com", + email: "CaglayaC@4641f68e88f74b89a7d91f372f89c707.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden,dc=com", + email: "SebastiI@f5c077cada0a4d8d8147cbf8b500bc50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eladio Nadler,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eladio Nadler,ou=Administrative,dc=bitwarden,dc=com", + email: "NadlerE@395a1522673545a2b6f4ec5f1b7796af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kameko Ayres,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kameko Ayres,ou=Product Development,dc=bitwarden,dc=com", + email: "AyresK@23f2b7d7514a4767820f5e79ce7c0c7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florinda Templeton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Florinda Templeton,ou=Product Development,dc=bitwarden,dc=com", + email: "TempletF@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Omayma Halula,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Omayma Halula,ou=Payroll,dc=bitwarden,dc=com", + email: "HalulaO@c3a780fc1cae424e99d05abc11ec9e6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shellie Blethen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shellie Blethen,ou=Human Resources,dc=bitwarden,dc=com", + email: "BlethenS@95aba425683d4bd1840a81fc67427bb1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden,dc=com", + email: "MarceauA@6c578796ae9e48a3a3b7ff8b9d3b060a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corliss Pharris,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Corliss Pharris,ou=Payroll,dc=bitwarden,dc=com", + email: "PharrisC@8ab88106282a4e96ae4334aaf2a9980f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mareah Gooderham,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mareah Gooderham,ou=Product Development,dc=bitwarden,dc=com", + email: "GooderhM@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olwen Yelvington,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Olwen Yelvington,ou=Management,dc=bitwarden,dc=com", + email: "YelvingO@d2bd61540f2c442085d5a71bd0d2fc4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maiga Buder,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maiga Buder,ou=Product Development,dc=bitwarden,dc=com", + email: "BuderM@9ff9a89b32504ff5afdb9c11208b7d0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madlen Booking,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Madlen Booking,ou=Product Development,dc=bitwarden,dc=com", + email: "BookingM@a67ff5b1ad97429ba599b05adf0b8c32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darell Liang,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Darell Liang,ou=Product Testing,dc=bitwarden,dc=com", + email: "LiangD@49c28823fa6d4e18b2bd79c94f037cd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden,dc=com", + email: "TregenzK@290c8e7e8138440babe5064ce0d66502.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neena Mayes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Neena Mayes,ou=Human Resources,dc=bitwarden,dc=com", + email: "MayesN@0159105d118c42e49c1ba8afedb04349.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hannie Robieux,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hannie Robieux,ou=Payroll,dc=bitwarden,dc=com", + email: "RobieuxH@2fd47af450d743418108699823631680.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regine Iantaffi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Regine Iantaffi,ou=Peons,dc=bitwarden,dc=com", + email: "IantaffR@643e8725ab414409abd27e0fe695dde2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden,dc=com", + email: "HenshawR@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gladi Steffes,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gladi Steffes,ou=Administrative,dc=bitwarden,dc=com", + email: "SteffesG@32e3fa5da06a4fd3803417733702b064.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalli Chanonat,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kalli Chanonat,ou=Administrative,dc=bitwarden,dc=com", + email: "ChanonaK@aa334b1a73514c2283534b58c2c9420b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bob Gronwall,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bob Gronwall,ou=Peons,dc=bitwarden,dc=com", + email: "GronwalB@0f8c263e7f6c452db2957bf93d2cdb86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden,dc=com", + email: "RizewisG@0c871b0ecc1a46debc66287e828580e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faunie Moroz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Faunie Moroz,ou=Product Development,dc=bitwarden,dc=com", + email: "MorozF@8a380e2be5ea40e5ac3c58889b7903b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avrit Abrahim,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Avrit Abrahim,ou=Payroll,dc=bitwarden,dc=com", + email: "AbrahimA@3f9f595da27346f4869f68e3fa5be108.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShunmugM@80196116addf4f41ba15c7f335724d57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden,dc=com", + email: "RuttanK@5bc6becc7c8b4be7bfb46c3c5ef26514.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernard Placido,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bernard Placido,ou=Payroll,dc=bitwarden,dc=com", + email: "PlacidoB@be9d6d33980e45aa8fdb6ebf08094f9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden,dc=com", + email: "SprungeK@234baafa6151436c9e90b2aa2617a7d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden,dc=com", + email: "VanPattG@f6cc3e776c61473088c0113a2174d24c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flory Ganadry,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Flory Ganadry,ou=Management,dc=bitwarden,dc=com", + email: "GanadryF@0c3f5d55309540bf85d561938fa59231.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berti Steski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Berti Steski,ou=Product Testing,dc=bitwarden,dc=com", + email: "SteskiB@c54cbe69dcd34a96b7a131338d06781d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charline Fross,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Charline Fross,ou=Product Development,dc=bitwarden,dc=com", + email: "FrossC@786bf687e1984b2da694b96e1738976f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bonnar Burns,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bonnar Burns,ou=Product Development,dc=bitwarden,dc=com", + email: "BurnsB@c44cf57c7e494ab8a133e7f2a6a02284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kate Scorziello,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kate Scorziello,ou=Administrative,dc=bitwarden,dc=com", + email: "ScorzieK@3340c10fa973435198296f285f1bf380.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden,dc=com", + email: "KambohS@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olenka Tota,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Olenka Tota,ou=Human Resources,dc=bitwarden,dc=com", + email: "TotaO@2c3e110ee6f849dd9d12214b3161a037.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden,dc=com", + email: "VonderhH@1d23264dcd2241baa77e90f901c50315.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ceil Foubert,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ceil Foubert,ou=Human Resources,dc=bitwarden,dc=com", + email: "FoubertC@f6edafa4c10c4c53bf1931829503f011.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden,dc=com", + email: "KouhiJ@b0cf4813000442ff977f9358e32e3342.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden,dc=com", + email: "PietromC@ca73de7d8fb447f899df1cc98c2c34a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThuswalT@549a00afcc4642b6988c79a50d08a8a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devinne Zanga,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Devinne Zanga,ou=Peons,dc=bitwarden,dc=com", + email: "ZangaD@5df54d8944e947f396093baae162579f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Letti Boocock,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Letti Boocock,ou=Human Resources,dc=bitwarden,dc=com", + email: "BoocockL@97a601b7bf924aea9927e9bb24e9dce4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charin Fallah,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Charin Fallah,ou=Human Resources,dc=bitwarden,dc=com", + email: "FallahC@37503b661def462c8ca2c73740caf74d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clea Astorino,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Clea Astorino,ou=Human Resources,dc=bitwarden,dc=com", + email: "AstorinC@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassandry Hilton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cassandry Hilton,ou=Peons,dc=bitwarden,dc=com", + email: "HiltonC@96f772c600724b25bd473286135ce70b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden,dc=com", + email: "SugarbrS@9426a2bdce5b455d93581bbbd4e466d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlene Homan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karlene Homan,ou=Management,dc=bitwarden,dc=com", + email: "HomanK@7c64049fb61442b49d970b3e88ea4fff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anjanette McCaffity,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anjanette McCaffity,ou=Management,dc=bitwarden,dc=com", + email: "McCaffiA@e682211d32bb40e7ace0a806e7eb8802.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden,dc=com", + email: "HeinricP@b5697730a3f645a8a3b7775071bff9d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micky Brodowski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Micky Brodowski,ou=Payroll,dc=bitwarden,dc=com", + email: "BrodowsM@b5f56e1924634c2689d55900ad6e24f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neetu Miles,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Neetu Miles,ou=Human Resources,dc=bitwarden,dc=com", + email: "MilesN@9a5bdc9a34e041db8cf5f51cd958707f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhodia Irick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rhodia Irick,ou=Product Testing,dc=bitwarden,dc=com", + email: "IrickR@b6e5aee724a54904bb06d1cd94c0be8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phat Mecteau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Phat Mecteau,ou=Peons,dc=bitwarden,dc=com", + email: "MecteauP@9ecc403b039d43679eefc1da35dbd584.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tzung Winfield,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tzung Winfield,ou=Janitorial,dc=bitwarden,dc=com", + email: "WinfielT@a762ad5f7ab94a82ae700785cde02626.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amandie Britman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Amandie Britman,ou=Payroll,dc=bitwarden,dc=com", + email: "BritmanA@23128e7ff9d145ae80543eb5e7da5669.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden,dc=com", + email: "LannanK@dc0c8137c1f0444baf57655cd3888c75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden,dc=com", + email: "MowbrayJ@b60aa937d01647ea80a3225aa7e4cdc5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden,dc=com", + email: "MoshiriJ@964166b8cdd041c68aaae270afb90271.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brittani Guitard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Brittani Guitard,ou=Product Testing,dc=bitwarden,dc=com", + email: "GuitardB@ecc994146f8e4e3b8a176bee8df24c8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hubert Majors,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hubert Majors,ou=Payroll,dc=bitwarden,dc=com", + email: "MajorsH@52db00da846a4ecd950665d8955a7231.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KinYee Amini,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=KinYee Amini,ou=Janitorial,dc=bitwarden,dc=com", + email: "AminiK@ea0898ff0877402d9c2e36c10881d242.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Riva Malott,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Riva Malott,ou=Janitorial,dc=bitwarden,dc=com", + email: "MalottR@0740d70384e04d4883e40f4df47caeab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gizela Fenez,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gizela Fenez,ou=Peons,dc=bitwarden,dc=com", + email: "FenezG@85a71b552bfd49e9ae6851cb672bc85b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thompson Santos,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Thompson Santos,ou=Payroll,dc=bitwarden,dc=com", + email: "SantosT@1a25c5eecf2b4862871ccde04c2d3ffb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Student Anker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Student Anker,ou=Peons,dc=bitwarden,dc=com", + email: "AnkerS@802b05236c97484db9a6d34278cbb7c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlita Flores,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carlita Flores,ou=Human Resources,dc=bitwarden,dc=com", + email: "FloresC@dabb673b74534388bb1466a7f0fed6b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Domenick Thomey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Domenick Thomey,ou=Product Testing,dc=bitwarden,dc=com", + email: "ThomeyD@0d2070a7704249ccae81fc4b91659074.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden,dc=com", + email: "BeckhamP@2d00b4c5d94943aaab567276a570648e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lanie Wayler,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lanie Wayler,ou=Human Resources,dc=bitwarden,dc=com", + email: "WaylerL@5abf2b8f947a433ea32c981885ccae42.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxi Leonida,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roxi Leonida,ou=Administrative,dc=bitwarden,dc=com", + email: "LeonidaR@a7c911c3534b41fcbf3c7f9346df687d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isin Paczynski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Isin Paczynski,ou=Product Development,dc=bitwarden,dc=com", + email: "PaczynsI@7cff87d9428241d385e3a8b08cc7cf02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Condell MacPhail,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Condell MacPhail,ou=Administrative,dc=bitwarden,dc=com", + email: "MacPhaiC@1bed3f33f95f46ba84060b615fc669ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Swd Braganza,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Swd Braganza,ou=Management,dc=bitwarden,dc=com", + email: "BraganzS@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herbie Bilton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Herbie Bilton,ou=Payroll,dc=bitwarden,dc=com", + email: "BiltonH@30f521987a9e4cbfb386d3a1369f2935.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tas Hagerty,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tas Hagerty,ou=Janitorial,dc=bitwarden,dc=com", + email: "HagertyT@eb6e0362b9c044ceb04b07f121efebbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristin Pambianchi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cristin Pambianchi,ou=Management,dc=bitwarden,dc=com", + email: "PambianC@18060edcc6234a8b8fe795c650ecf126.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deann Lutz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Deann Lutz,ou=Product Development,dc=bitwarden,dc=com", + email: "LutzD@3201bacf5bb24ae3afcce52434ad7af4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Datha Apter,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Datha Apter,ou=Payroll,dc=bitwarden,dc=com", + email: "ApterD@ea68ff21788e47d08d129553b31a56f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aretha Kursell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aretha Kursell,ou=Product Development,dc=bitwarden,dc=com", + email: "KursellA@17061e8235904e0b93980e91f7a69e37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", + email: "AldhizeA@5527d8c433094cecbedb01f554d34d26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden,dc=com", + email: "GuilbauA@96b2a23653bd4867b5a7bf172ebf238c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norry Trpisovsky,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Norry Trpisovsky,ou=Peons,dc=bitwarden,dc=com", + email: "TrpisovN@44154c0b8f05440cb2dfceffbfdfaf5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ladell Doig,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ladell Doig,ou=Payroll,dc=bitwarden,dc=com", + email: "DoigL@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mer Hasan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mer Hasan,ou=Peons,dc=bitwarden,dc=com", + email: "HasanM@8e939e1720cd4eec84cf0ef4b954cc46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Therine Solman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Therine Solman,ou=Peons,dc=bitwarden,dc=com", + email: "SolmanT@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Garnet Gooch,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Garnet Gooch,ou=Administrative,dc=bitwarden,dc=com", + email: "GoochG@c9b01dac43c94e75a452c54efb5c8e21.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colli Magee,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Colli Magee,ou=Human Resources,dc=bitwarden,dc=com", + email: "MageeC@f8c2812065094b4daf335260acd27140.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sammy Topol,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sammy Topol,ou=Management,dc=bitwarden,dc=com", + email: "TopolS@cd3d382133434cf09ea0a78c7fbb0555.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsae Cacha,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Chelsae Cacha,ou=Management,dc=bitwarden,dc=com", + email: "CachaC@8013079ee9144b479560c9bcb06bab11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden,dc=com", + email: "DeSimonA@4cccac2b65cb4d559e1c7c657101129e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melvin Stanton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Melvin Stanton,ou=Product Development,dc=bitwarden,dc=com", + email: "StantonM@776517ed1aad4bc8864e3bcd6b8432b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden,dc=com", + email: "SkrebelK@8c92d3eeaf56468bbc92aef74edba2cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annabella Fisher,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Annabella Fisher,ou=Product Testing,dc=bitwarden,dc=com", + email: "FisherA@2226746e47f246e6bac38a341375363b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pelly Difilippo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pelly Difilippo,ou=Administrative,dc=bitwarden,dc=com", + email: "DifilipP@96ba8081521e4fe79c79c0f0b9ef5643.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Virginia Clites,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Virginia Clites,ou=Product Development,dc=bitwarden,dc=com", + email: "ClitesV@2eb6d97dc4644dd39ac68997e9422017.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lionel Kahil,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lionel Kahil,ou=Management,dc=bitwarden,dc=com", + email: "KahilL@e6ecc40f4d2343039a82728f79fb14d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatrix Weger,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Beatrix Weger,ou=Janitorial,dc=bitwarden,dc=com", + email: "WegerB@ccb0d62f1b7541d69c0eb30915728fc1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxanne Klimon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roxanne Klimon,ou=Administrative,dc=bitwarden,dc=com", + email: "KlimonR@518da73225eb4a77959fb191daf72b49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ernestine Campara,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ernestine Campara,ou=Management,dc=bitwarden,dc=com", + email: "CamparaE@404f39e9e9f7414486e29f7cf6e81694.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaal Jcst,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gaal Jcst,ou=Janitorial,dc=bitwarden,dc=com", + email: "JcstG@ca74af6c5dcc4f0b974e414c7310f581.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nancy Cesario,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nancy Cesario,ou=Management,dc=bitwarden,dc=com", + email: "CesarioN@0834bcacddfd4229b6702a62e2551569.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosita Carella,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosita Carella,ou=Peons,dc=bitwarden,dc=com", + email: "CarellaR@36e3b9c15a4246d0b9f5619fbb566424.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden,dc=com", + email: "GheorghR@7585d16536b0418b992e73193b27cc42.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keven Cordy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Keven Cordy,ou=Human Resources,dc=bitwarden,dc=com", + email: "CordyK@0af04fcd60da40099a5a068c388bafe2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden,dc=com", + email: "CelluccJ@68cfba969ba74400992bfae87ff5159e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden,dc=com", + email: "AzevedoJ@69b627b90a5c4b27910e77ecc55f7d25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wan Savard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wan Savard,ou=Product Testing,dc=bitwarden,dc=com", + email: "SavardW@28d2c310a8f14caeb811cfb7bdd890df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden,dc=com", + email: "HulversA@ad005e1f3e2c4d6ba75c2d9c48687591.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden,dc=com", + email: "OHeochaP@4cd03f6d248a456a897d07898cc62094.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jen Kamoun,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jen Kamoun,ou=Administrative,dc=bitwarden,dc=com", + email: "KamounJ@f7e815f56fc1472f8f953f85688ba7a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden,dc=com", + email: "RabjohnD@b96d42e36dbf45089ca1b6d523eba92e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zitella Paylor,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Zitella Paylor,ou=Administrative,dc=bitwarden,dc=com", + email: "PaylorZ@04570161b7ed42e28c63e5ce9c0aa4a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Logan Blaylock,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Logan Blaylock,ou=Product Testing,dc=bitwarden,dc=com", + email: "BlaylocL@2699c3099b704f2ba70219415c473196.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merunix Walkley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Merunix Walkley,ou=Human Resources,dc=bitwarden,dc=com", + email: "WalkleyM@2ddbcfc2fdd94fdaa7f9feba31236675.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden,dc=com", + email: "PlssupD@f5e50d6b794248c497f1edc0acd0a4d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaja Runkel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kaja Runkel,ou=Administrative,dc=bitwarden,dc=com", + email: "RunkelK@2818571517744716a1e0f70eed1d8ffd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leia Samuel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Leia Samuel,ou=Janitorial,dc=bitwarden,dc=com", + email: "SamuelL@9eff12629cf040fd91abde8fb9ba1a1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catha Matsunaga,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Catha Matsunaga,ou=Product Development,dc=bitwarden,dc=com", + email: "MatsunaC@a0698e6e756a42f28ea2d90c4b303b9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden,dc=com", + email: "DelorenJ@6612035362774dc39b65e2c45a86df3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luc Harless,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Luc Harless,ou=Human Resources,dc=bitwarden,dc=com", + email: "HarlessL@a3cc15e6ac3a471cb783c4563846998f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katja Firtos,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Katja Firtos,ou=Human Resources,dc=bitwarden,dc=com", + email: "FirtosK@f115ded519524610ab74393c6ce8cdfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden,dc=com", + email: "EwasyshV@5e62af5b40314ecea84813300a46dd77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mechelle Khawar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mechelle Khawar,ou=Product Development,dc=bitwarden,dc=com", + email: "KhawarM@1339c7fc80324a9f9d6a9b7e7dc59ef3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden,dc=com", + email: "GdowikB@34211993f6a54dc18f00a71a05d87998.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Channa Abernethy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Channa Abernethy,ou=Janitorial,dc=bitwarden,dc=com", + email: "AbernetC@f397541d0e814623b745c4fbd77b1a79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benita Lathrop,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Benita Lathrop,ou=Management,dc=bitwarden,dc=com", + email: "LathropB@186cf3c7f45744c0827699c22d51d565.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zelda Naem,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zelda Naem,ou=Janitorial,dc=bitwarden,dc=com", + email: "NaemZ@eb362d3928c448a4b72d63b85283da63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettina Kudas,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bettina Kudas,ou=Management,dc=bitwarden,dc=com", + email: "KudasB@4a562374ace845b8b062489d81f91f68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettye Stern,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bettye Stern,ou=Payroll,dc=bitwarden,dc=com", + email: "SternB@67c2a7396dd34122b1f16e12b22a71ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden,dc=com", + email: "AureliuL@532585f196ca4cccb80b4aa643b1dccd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janice Mattes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Janice Mattes,ou=Management,dc=bitwarden,dc=com", + email: "MattesJ@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Indiana Cobo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Indiana Cobo,ou=Human Resources,dc=bitwarden,dc=com", + email: "CoboI@a951d7743a6642c2b51879514b5ca776.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lan Galbraith,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lan Galbraith,ou=Janitorial,dc=bitwarden,dc=com", + email: "GalbraiL@9b332776dd7c411abb2f40983aa8e189.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joey Godcharles,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Joey Godcharles,ou=Management,dc=bitwarden,dc=com", + email: "GodcharJ@8c25af5fe5974fca953506b7d4eacda2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anastasia Sunstrum,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anastasia Sunstrum,ou=Management,dc=bitwarden,dc=com", + email: "SunstruA@5bf40bf9784b4bb1b69d85ef3b145a7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyan Reller,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dyan Reller,ou=Product Testing,dc=bitwarden,dc=com", + email: "RellerD@663a5be72ae949e89d0ecc1766eaf211.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yih DeCecco,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yih DeCecco,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeCeccoY@167b62c26a954f76bb6e985cad7eded6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leese Paul,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leese Paul,ou=Payroll,dc=bitwarden,dc=com", + email: "PaulL@084896222f8c4b7eae30f7297ef0556c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nani Dedas,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nani Dedas,ou=Payroll,dc=bitwarden,dc=com", + email: "DedasN@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden,dc=com", + email: "LanzkroS@c7313b08ac43436397b7d1757040a613.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sari Rettie,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sari Rettie,ou=Product Testing,dc=bitwarden,dc=com", + email: "RettieS@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Etty Lowther,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Etty Lowther,ou=Product Testing,dc=bitwarden,dc=com", + email: "LowtherE@5c906f42508445a781fade8bd577e2f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toss Basa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Toss Basa,ou=Payroll,dc=bitwarden,dc=com", + email: "BasaT@04b4f27ec2ac43be97552612edca5a77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naohiko Fradette,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Naohiko Fradette,ou=Administrative,dc=bitwarden,dc=com", + email: "FradettN@e8492435966a4ed884337f2807856c41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden,dc=com", + email: "LoadbuiV@2d0e71959712498892398e30a50d5bec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mathew Rodkey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mathew Rodkey,ou=Peons,dc=bitwarden,dc=com", + email: "RodkeyM@49f96debcda94fc6baf356990b14b103.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherry Maness,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sherry Maness,ou=Janitorial,dc=bitwarden,dc=com", + email: "ManessS@e58493f3b9184086b499252afcbae6a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarentsL@9ef3979acd57459c854aa3907f13053a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden,dc=com", + email: "ConstanG@bcfbfd5ee6b14185b04773704662d3e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delphinia Brehm,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Delphinia Brehm,ou=Product Development,dc=bitwarden,dc=com", + email: "BrehmD@d3f27a242bfb4ac3a10d62c1f67cde29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roselin Payn,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Roselin Payn,ou=Human Resources,dc=bitwarden,dc=com", + email: "PaynR@8b4e205f7cd04cdf9570b14ba9584f1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arline Fryer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Arline Fryer,ou=Management,dc=bitwarden,dc=com", + email: "FryerA@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Piper Lesperance,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Piper Lesperance,ou=Peons,dc=bitwarden,dc=com", + email: "LesperaP@a2ea301b88434726b194e4c9303a1849.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mindy Herring,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mindy Herring,ou=Administrative,dc=bitwarden,dc=com", + email: "HerringM@75ca8d39c50647a3bea983d4fa29d680.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden,dc=com", + email: "RodelyC@ca829dfd11e64b2594b0329b3f25132e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vonnie Bullard,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vonnie Bullard,ou=Peons,dc=bitwarden,dc=com", + email: "BullardV@13739ed68fac456bb1c36df8aacf938b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lotti Gutcher,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lotti Gutcher,ou=Product Development,dc=bitwarden,dc=com", + email: "GutcherL@f60373f986824ff5b24230896655c1d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheldon Overton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sheldon Overton,ou=Product Development,dc=bitwarden,dc=com", + email: "OvertonS@f46633fbb9a14011a26194c56d6fd793.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celestine Zargham,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Celestine Zargham,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZarghamC@7e7373daa08d4a3b834f2e415978d199.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marv Regier,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marv Regier,ou=Product Development,dc=bitwarden,dc=com", + email: "RegierM@abdd973e03c84ced8f6317d8b973d650.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teddi Behler,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Teddi Behler,ou=Administrative,dc=bitwarden,dc=com", + email: "BehlerT@f2b2c2d7db06460ba37d008fa1436774.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pascale Lawrie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pascale Lawrie,ou=Payroll,dc=bitwarden,dc=com", + email: "LawrieP@7a73ebe249a24a008fa58af0c16c0578.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden,dc=com", + email: "SysadmiB@822da1d370d045aaadf5490626c311f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Class Focht,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Class Focht,ou=Human Resources,dc=bitwarden,dc=com", + email: "FochtC@cdc522ed20cd44a189467c4e7a11e69b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonida Raha,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leonida Raha,ou=Management,dc=bitwarden,dc=com", + email: "RahaL@a7dde2ed9345430eab1db4c18ae1be2c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", + email: "BaggermE@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ree Goodier,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ree Goodier,ou=Product Development,dc=bitwarden,dc=com", + email: "GoodierR@64b7c8578355450790f3fb63c15436b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden,dc=com", + email: "HlauschW@ab148181beff4ed0bd2db4ce8fd9f720.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raj Mahlig,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Raj Mahlig,ou=Peons,dc=bitwarden,dc=com", + email: "MahligR@47682bc47a784ad6a0b0eb19fb2f6567.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden,dc=com", + email: "MerindeN@ab64d8db9da04b27bba1bfcb5bef47a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruchel Jobs,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ruchel Jobs,ou=Management,dc=bitwarden,dc=com", + email: "JobsR@5086e8ad642d4bbd8705f06e9ddda989.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZalokerG@95fa7f3851674364944296f3d3c2378d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fanchette Wittich,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fanchette Wittich,ou=Administrative,dc=bitwarden,dc=com", + email: "WittichF@abdd973e03c84ced8f6317d8b973d650.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorie Boucher,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorie Boucher,ou=Peons,dc=bitwarden,dc=com", + email: "BoucherL@459e2f62db0c40d5b3c7b2d6945ef874.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MingChang Presner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=MingChang Presner,ou=Human Resources,dc=bitwarden,dc=com", + email: "PresnerM@144f4bf7b2a54773b3cf6bc1af396542.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dierdre Rehel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dierdre Rehel,ou=Administrative,dc=bitwarden,dc=com", + email: "RehelD@1a43b4fd45d14eebb3f3365f12f4390c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ulrica Benda,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ulrica Benda,ou=Administrative,dc=bitwarden,dc=com", + email: "BendaU@d9da444c24af403dad834f9973048314.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brechtje Revah,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Brechtje Revah,ou=Human Resources,dc=bitwarden,dc=com", + email: "RevahB@753cc3c48ad24183b60cde608a41edda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Howden Hoxie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Howden Hoxie,ou=Management,dc=bitwarden,dc=com", + email: "HoxieH@40992f2ace8d43a59f800186f855c626.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjory Hardin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marjory Hardin,ou=Management,dc=bitwarden,dc=com", + email: "HardinM@b7be2bf29b064b349a27848f01a085d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kac Geuder,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kac Geuder,ou=Product Testing,dc=bitwarden,dc=com", + email: "GeuderK@8b6590e2256543d7b3730d478ab0e5e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden,dc=com", + email: "MacElweA@e56c19ec1c2c428ba6d15f1ddf8804fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden,dc=com", + email: "MoynihaD@57e1662648e94370b63269dae2e89f73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden,dc=com", + email: "IacovoA@99efb52676a5438d8f4dfeb830e52009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Conchita Borek,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Conchita Borek,ou=Human Resources,dc=bitwarden,dc=com", + email: "BorekC@c1da23a059a74c3d8ae1ac9edb4d3eea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carter Billard,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Carter Billard,ou=Peons,dc=bitwarden,dc=com", + email: "BillardC@cba87d0d73a2419787e0432699089510.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alison Culberson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alison Culberson,ou=Management,dc=bitwarden,dc=com", + email: "CulbersA@86c55960d45747ecb5afd7997d576a89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dev Lynham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dev Lynham,ou=Product Testing,dc=bitwarden,dc=com", + email: "LynhamD@4d2b6aeb52944f46890dd70951e65aa3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucie Longhenry,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lucie Longhenry,ou=Product Development,dc=bitwarden,dc=com", + email: "LonghenL@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Somsak Breault,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Somsak Breault,ou=Administrative,dc=bitwarden,dc=com", + email: "BreaultS@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regina Astor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Regina Astor,ou=Peons,dc=bitwarden,dc=com", + email: "AstorR@30db69640fb048128840ef2fb85c3577.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idalia Krauel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Idalia Krauel,ou=Payroll,dc=bitwarden,dc=com", + email: "KrauelI@8225e046db804e04b9a2cde5ffe23088.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden,dc=com", + email: "TadevicB@332c34f573ad4ec89381a4995815cc7e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lolly Mattson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lolly Mattson,ou=Payroll,dc=bitwarden,dc=com", + email: "MattsonL@039ec15b8547455eb4745e09f294d624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corinna Jesshope,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Corinna Jesshope,ou=Administrative,dc=bitwarden,dc=com", + email: "JesshopC@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guinevere Bower,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Guinevere Bower,ou=Product Development,dc=bitwarden,dc=com", + email: "BowerG@1c2297c1716444ad8e93762f014c7f67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden,dc=com", + email: "FeutlinV@dac9dfd573ee4f928ec9aa0996157f6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frederic Kemish,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Frederic Kemish,ou=Payroll,dc=bitwarden,dc=com", + email: "KemishF@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barb Mandel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Barb Mandel,ou=Product Development,dc=bitwarden,dc=com", + email: "MandelB@123afab4d4de40e09319189089980d97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rochell Muise,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rochell Muise,ou=Management,dc=bitwarden,dc=com", + email: "MuiseR@d0510c6d4d2248279a5b0899ea306017.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thea Atteridge,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Thea Atteridge,ou=Administrative,dc=bitwarden,dc=com", + email: "AtteridT@a6ca114df8334b8bba40f6036dd95ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theressa Marks,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Theressa Marks,ou=Management,dc=bitwarden,dc=com", + email: "MarksT@4c1c5169ce594a0e842e898138488cd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agna Ntelpac,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Agna Ntelpac,ou=Peons,dc=bitwarden,dc=com", + email: "NtelpacA@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peder Grewal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Peder Grewal,ou=Peons,dc=bitwarden,dc=com", + email: "GrewalP@f20cdd91b77c4fa1af532b2ee7f13b4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melony Nahas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Melony Nahas,ou=Human Resources,dc=bitwarden,dc=com", + email: "NahasM@8d84473559264c6592d3bbcbad962447.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ileana Ude,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ileana Ude,ou=Peons,dc=bitwarden,dc=com", + email: "UdeI@3862de637e0345d9b2a1837a52d0c5b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden,dc=com", + email: "KhosravS@f4f79ae5585f4229b44ed35d134a2fdc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fscocos Azari,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fscocos Azari,ou=Payroll,dc=bitwarden,dc=com", + email: "AzariF@a8f7a07ce7504ae4bfde0cfae682a40b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charmaine Rahmany,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Charmaine Rahmany,ou=Peons,dc=bitwarden,dc=com", + email: "RahmanyC@37f4b24424844e629b19d1ee55799aa3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ayn Odum,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ayn Odum,ou=Human Resources,dc=bitwarden,dc=com", + email: "OdumA@65523206681c4c868fd2bcf7f70e47c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden,dc=com", + email: "LHeureuA@bf23af50aea94f99aca4c696a7e766ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norm Berrisford,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Norm Berrisford,ou=Peons,dc=bitwarden,dc=com", + email: "BerrisfN@32ce2ca229594ba68651edf24232f002.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elly Nagarur,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Elly Nagarur,ou=Product Development,dc=bitwarden,dc=com", + email: "NagarurE@0179b4952dc54ba39e1bba2996936e9f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden,dc=com", + email: "SprungeS@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenette Sandness,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lenette Sandness,ou=Management,dc=bitwarden,dc=com", + email: "SandnesL@c8261f605fed4bb494dcc3af9b18f70f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emyle Fuqua,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Emyle Fuqua,ou=Management,dc=bitwarden,dc=com", + email: "FuquaE@ab34f7a574c74b59a12477bad26d03c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden,dc=com", + email: "SaungikA@377af438e28144f198471c633c478745.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elysia McDuffie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elysia McDuffie,ou=Payroll,dc=bitwarden,dc=com", + email: "McDuffiE@98febd962501443b89a9e8bfacf12a9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorilee Projects,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorilee Projects,ou=Human Resources,dc=bitwarden,dc=com", + email: "ProjectL@4b0a9ffaaeec4cc3ae5daf192d65fc6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden,dc=com", + email: "HerlihyH@9e3b275453fb4081a04ee8dbb4f6bd0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amalee Borg,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Amalee Borg,ou=Human Resources,dc=bitwarden,dc=com", + email: "BorgA@62d6b52263d643d2a05493b576aca6a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden,dc=com", + email: "WitkowsG@3876f00a01cc4c9cadffa2031adb446a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhHung McAdams,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ThanhHung McAdams,ou=Management,dc=bitwarden,dc=com", + email: "McAdamsT@d7b344ca45cd4c63b54c502d92e2c5d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessa Simmons,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jessa Simmons,ou=Human Resources,dc=bitwarden,dc=com", + email: "SimmonsJ@a923c3e154c74115a9ff0fe18985dc09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Timothea Culverhouse,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Timothea Culverhouse,ou=Peons,dc=bitwarden,dc=com", + email: "CulverhT@01debeaa74ed4916a69ca3761e5ab388.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorice Op,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dorice Op,ou=Management,dc=bitwarden,dc=com", + email: "OpD@3e32ccd0c8a847b6ac8fb9c09f485fe3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estrellita Haney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Estrellita Haney,ou=Administrative,dc=bitwarden,dc=com", + email: "HaneyE@89e4e0e6aba5481cb5a471d8c425e9ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden,dc=com", + email: "RabenstK@c40623c8d9ac4757937cfee44c180e7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maddalena Hammermeister,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maddalena Hammermeister,ou=Management,dc=bitwarden,dc=com", + email: "HammermM@8f4b2d337f4f4418a987619b5765155d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alfonso Benyon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Alfonso Benyon,ou=Payroll,dc=bitwarden,dc=com", + email: "BenyonA@f72cf2b3454841e499da566c9feae899.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden,dc=com", + email: "LanteigD@9524e5fbf8844145b5c00986d16d8376.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden,dc=com", + email: "SimonseG@7edf6527f6ba409aa280a1bd0cd976a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alfy McBroom,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alfy McBroom,ou=Administrative,dc=bitwarden,dc=com", + email: "McBroomA@3cf8abc9393b4308ab07b683b0ddf523.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fina Hoctor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fina Hoctor,ou=Peons,dc=bitwarden,dc=com", + email: "HoctorF@bf91192220a74764b99bec46e53e3350.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardene Cuu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ardene Cuu,ou=Product Testing,dc=bitwarden,dc=com", + email: "CuuA@f7752e330a264f1884c22f0f347f41b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden,dc=com", + email: "TrinhG@63d9ff681cbd4332bc60e641ac986747.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristie Madani,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cristie Madani,ou=Peons,dc=bitwarden,dc=com", + email: "MadaniC@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephane Zorzi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stephane Zorzi,ou=Management,dc=bitwarden,dc=com", + email: "ZorziS@883a827472584ea8ab8edcc535c72169.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellen Kruusement,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ellen Kruusement,ou=Administrative,dc=bitwarden,dc=com", + email: "KruusemE@5b737a4d09c2499f8798a895b59012b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden,dc=com", + email: "HomonicT@a1c59eb0876b440cad715bc7a625284c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arnie Vickers,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Arnie Vickers,ou=Janitorial,dc=bitwarden,dc=com", + email: "VickersA@d1aff07ca59844dcbbf406f0fc775f82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tak Kuhlkamp,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tak Kuhlkamp,ou=Management,dc=bitwarden,dc=com", + email: "KuhlkamT@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linet Gartshore,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Linet Gartshore,ou=Janitorial,dc=bitwarden,dc=com", + email: "GartshoL@4d29dc852c7e4d5a81edcd4807f79169.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dina Satta,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dina Satta,ou=Product Development,dc=bitwarden,dc=com", + email: "SattaD@eaed65d5c2954ae7b76835d57d5da55f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candis Bothwell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Candis Bothwell,ou=Janitorial,dc=bitwarden,dc=com", + email: "BothwelC@cc252680b96a4999bccdcb3df4f9a7ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphene Minck,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Daphene Minck,ou=Administrative,dc=bitwarden,dc=com", + email: "MinckD@811a3e44246748c98e3bda8ba1579d34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adan Duncan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Adan Duncan,ou=Administrative,dc=bitwarden,dc=com", + email: "DuncanA@a7445c22136445feb44e85392464b31c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willa Trisko,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Willa Trisko,ou=Product Testing,dc=bitwarden,dc=com", + email: "TriskoW@2af8061425ae493eb62ca1242598b59b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoisseaJ@2ad21f67126841ddab38e6a0de0bbf55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katalin Totten,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Katalin Totten,ou=Human Resources,dc=bitwarden,dc=com", + email: "TottenK@d5293c91bc7840f0948a89a10840461e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden,dc=com", + email: "MastronB@3d73d44a83034f7492ad5f7b28f5be7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=CostasDinos Labrador,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=CostasDinos Labrador,ou=Management,dc=bitwarden,dc=com", + email: "LabradoC@9204194a2da94dc0b82d2268bcb1f7fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrzej Coulman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Andrzej Coulman,ou=Peons,dc=bitwarden,dc=com", + email: "CoulmanA@ee31a32bc4dc4dfc9c3e0d1edb9f7ccb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheryl Perrin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sheryl Perrin,ou=Peons,dc=bitwarden,dc=com", + email: "PerrinS@32f4159b3c3143c5bb4ec812d9ad7150.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emma Mullaney,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Emma Mullaney,ou=Management,dc=bitwarden,dc=com", + email: "MullaneE@91cbd6d172d049aa810e0a17e3a01178.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Son Beneda,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Son Beneda,ou=Janitorial,dc=bitwarden,dc=com", + email: "BenedaS@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grey Mathis,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Grey Mathis,ou=Management,dc=bitwarden,dc=com", + email: "MathisG@a199f75806e043a29f88f2704ef795cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Briney McReady,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Briney McReady,ou=Human Resources,dc=bitwarden,dc=com", + email: "McReadyB@39f08fc1ca40404b8801837822a1c019.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden,dc=com", + email: "BrickmaB@0dfd1c2a9e584308b69f05d708033865.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden,dc=com", + email: "NetworkT@28fca843a5ae4175b7bbc20728951453.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erle Gravitt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Erle Gravitt,ou=Product Testing,dc=bitwarden,dc=com", + email: "GravittE@203540604c5b4cbe8d3ddb3137f9e7ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden,dc=com", + email: "WatchmaJ@fe07c8e421ca4cd7b23c9c2c841a5e93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tresrch Valko,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tresrch Valko,ou=Management,dc=bitwarden,dc=com", + email: "ValkoT@ebf0dcbeda274c399a35e80b52ead9c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherey Braginetz,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cherey Braginetz,ou=Management,dc=bitwarden,dc=com", + email: "BragineC@d753979fad154486ac459615561fae04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annadiane Kok,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Annadiane Kok,ou=Payroll,dc=bitwarden,dc=com", + email: "KokA@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ozay Dulin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ozay Dulin,ou=Management,dc=bitwarden,dc=com", + email: "DulinO@6d6cd5a839c849eb98fcaf40d89c77e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avtar Markle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Avtar Markle,ou=Human Resources,dc=bitwarden,dc=com", + email: "MarkleA@bf9ca547b016429e8b1013b51e16d909.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden,dc=com", + email: "BachecoM@0fd4dc879e87454189121973304c8184.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rodi Pettinger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rodi Pettinger,ou=Payroll,dc=bitwarden,dc=com", + email: "PettingR@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anett Gach,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anett Gach,ou=Management,dc=bitwarden,dc=com", + email: "GachA@753cc3c48ad24183b60cde608a41edda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Golda Hanington,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Golda Hanington,ou=Janitorial,dc=bitwarden,dc=com", + email: "HaningtG@72dcb42620634cf59fa336b64a03ee7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden,dc=com", + email: "SilieffX@726ecb5497c547bd9a98886468705226.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlyne Shein,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marlyne Shein,ou=Janitorial,dc=bitwarden,dc=com", + email: "SheinM@9135ac12963a4f24b390086599e22c6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doortje Kennedy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Doortje Kennedy,ou=Payroll,dc=bitwarden,dc=com", + email: "KennedyD@c4980ee808ce471c9fa1c01e63ff6d49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacenta Pufpaff,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jacenta Pufpaff,ou=Management,dc=bitwarden,dc=com", + email: "PufpaffJ@7cddbe59bf50457dab82b34532e65c48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirit Steede,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kirit Steede,ou=Product Testing,dc=bitwarden,dc=com", + email: "SteedeK@e04a5587d2ec44048c4ba8ec3bd3bbfb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Declan McQuaig,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Declan McQuaig,ou=Payroll,dc=bitwarden,dc=com", + email: "McQuaigD@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fairy Soyster,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fairy Soyster,ou=Administrative,dc=bitwarden,dc=com", + email: "SoysterF@4f18c35149c4458281415f92a8183767.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", + email: "HempinsY@7a5a7925311246c29caba8271a6bbf7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shashi Vitaglian,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shashi Vitaglian,ou=Management,dc=bitwarden,dc=com", + email: "VitagliS@3a233bee8d41491582f971c2a34ef527.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henri Challice,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Henri Challice,ou=Peons,dc=bitwarden,dc=com", + email: "ChallicH@e646f2536f984f3baa2b805d03bb59c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moreen CSR,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Moreen CSR,ou=Human Resources,dc=bitwarden,dc=com", + email: "CSRM@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geralene Sabri,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Geralene Sabri,ou=Payroll,dc=bitwarden,dc=com", + email: "SabriG@34e650ed4f054ffe9f07e59b82b133e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melhem Sherrer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Melhem Sherrer,ou=Product Development,dc=bitwarden,dc=com", + email: "SherrerM@4da7d564972d46f2924a6a8ae018f420.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coors Lavarnway,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Coors Lavarnway,ou=Product Development,dc=bitwarden,dc=com", + email: "LavarnwC@708a672c33064628b91c3dd2fa37a575.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perrine Kursell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Perrine Kursell,ou=Product Testing,dc=bitwarden,dc=com", + email: "KursellP@aff14874002145038419ccad7efa4aff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alane Lou,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alane Lou,ou=Management,dc=bitwarden,dc=com", + email: "LouA@4b435cef82e14b3699af7f4cf8872441.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden,dc=com", + email: "TownselW@b3769d1b6e45429ebcc1ae937a2749cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Demet Ince,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Demet Ince,ou=Janitorial,dc=bitwarden,dc=com", + email: "InceD@da0493d79258465a92f6929fa5f9ec32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bev Lineham,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bev Lineham,ou=Payroll,dc=bitwarden,dc=com", + email: "LinehamB@943ab680cb9b4c9d8805dc06118922e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corinna Thorson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Corinna Thorson,ou=Payroll,dc=bitwarden,dc=com", + email: "ThorsonC@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daniela Rizk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Daniela Rizk,ou=Administrative,dc=bitwarden,dc=com", + email: "RizkD@d4562d1fe07448ba9965c2be7e88f80e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden,dc=com", + email: "OskorepD@d809403fc3704b2d9d3f57b70ad276fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mentor Endsley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mentor Endsley,ou=Janitorial,dc=bitwarden,dc=com", + email: "EndsleyM@339dae1666c141369c4355c1dbcfe99d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PeyKee Rusin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=PeyKee Rusin,ou=Payroll,dc=bitwarden,dc=com", + email: "RusinP@e164bbc73c0249c881dbd1db3dd138b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wojciech Zorony,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Wojciech Zorony,ou=Peons,dc=bitwarden,dc=com", + email: "ZoronyW@e2e6ff31723a4db1a62b945f5410fadf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juliane Lafata,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Juliane Lafata,ou=Janitorial,dc=bitwarden,dc=com", + email: "LafataJ@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden,dc=com", + email: "MombourO@95a1ee6b5b3f4c268b18ee946c8c10a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Buck Willoughby,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Buck Willoughby,ou=Janitorial,dc=bitwarden,dc=com", + email: "WillougB@a0d2b79a81564204acbc37b6b6efdfe4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atsushi Bible,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Atsushi Bible,ou=Administrative,dc=bitwarden,dc=com", + email: "BibleA@c91b2ddabda245189089b8e227b823b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veen Graibe,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Veen Graibe,ou=Administrative,dc=bitwarden,dc=com", + email: "GraibeV@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden,dc=com", + email: "MandeviG@94769a3591824a7c91ce0e683601c159.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juli Poe,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Juli Poe,ou=Management,dc=bitwarden,dc=com", + email: "PoeJ@121756f8b87b4a8eac937b954ab1cbe2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keys Foos,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Keys Foos,ou=Product Development,dc=bitwarden,dc=com", + email: "FoosK@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanneke Weil,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hanneke Weil,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeilH@d375d17b83f44fc4be3924ad0f54b388.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden,dc=com", + email: "NassoyM@b5bcc4ce776e4805ab4216703177730e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Narrima Kaplan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Narrima Kaplan,ou=Administrative,dc=bitwarden,dc=com", + email: "KaplanN@3340c10fa973435198296f285f1bf380.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nellie Guth,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nellie Guth,ou=Administrative,dc=bitwarden,dc=com", + email: "GuthN@acd4caa886454500972e2351b4443a5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ermengarde Swact,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ermengarde Swact,ou=Payroll,dc=bitwarden,dc=com", + email: "SwactE@5ae024a345a94b5090f63e27d57061d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmelo Holley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carmelo Holley,ou=Janitorial,dc=bitwarden,dc=com", + email: "HolleyC@2a01d36814a04a9ebc13810183a6b11d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Virgie Ensign,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Virgie Ensign,ou=Janitorial,dc=bitwarden,dc=com", + email: "EnsignV@6af59491c5a74fddb4c99c2f4eaecac5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vittorio Msg,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vittorio Msg,ou=Administrative,dc=bitwarden,dc=com", + email: "MsgV@683e25fc9db544c199938de64838b325.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ragui Radford,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ragui Radford,ou=Management,dc=bitwarden,dc=com", + email: "RadfordR@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden,dc=com", + email: "WokomaL@b750d8129f2b4a6388d0065112d46a75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amalia Giertych,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Amalia Giertych,ou=Janitorial,dc=bitwarden,dc=com", + email: "GiertycA@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bert McDougall,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bert McDougall,ou=Peons,dc=bitwarden,dc=com", + email: "McDougaB@6b490fc40c68440ca61573fe5b83533b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherida Behlen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cherida Behlen,ou=Human Resources,dc=bitwarden,dc=com", + email: "BehlenC@e209292ce8494e20a17431a0c16ad1ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willa Brandsen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Willa Brandsen,ou=Payroll,dc=bitwarden,dc=com", + email: "BrandseW@9b8cc74fde31459a93e65b46f65c8533.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nancey Piggott,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nancey Piggott,ou=Payroll,dc=bitwarden,dc=com", + email: "PiggottN@5c7aa17839c348428d1ed0e06a9b190a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bui Potesta,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bui Potesta,ou=Administrative,dc=bitwarden,dc=com", + email: "PotestaB@a5557159c1c14e57b5492ca45de2de58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden,dc=com", + email: "KenyonW@7a69f72bb5b04c0ba3a5c02cbe85a1be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden,dc=com", + email: "NolanMoK@b8b19224acee46229ad2985e549b9721.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivo Dobbs,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ivo Dobbs,ou=Payroll,dc=bitwarden,dc=com", + email: "DobbsI@6db077c0ab9b46b8abf59e4daca54e6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigitta Maskell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brigitta Maskell,ou=Peons,dc=bitwarden,dc=com", + email: "MaskellB@35f9e0ae24c24ec3baa413620b2b7eb4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden,dc=com", + email: "FlickinK@a1ff5ce57b0d4a5ab92e5a7972b3c4b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nong Polashock,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nong Polashock,ou=Product Testing,dc=bitwarden,dc=com", + email: "PolashoN@ec1ddd180ec346c9ac4e8ff1fbae4cee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden,dc=com", + email: "CobboldR@07b1787368a34e789ce994f0c32f4345.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden,dc=com", + email: "BeaulieL@c2a256a75eaf4a37b7136ba6b0518b6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gisele Forbes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gisele Forbes,ou=Product Testing,dc=bitwarden,dc=com", + email: "ForbesG@232786cf6be745b08d532519f75fd65e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden,dc=com", + email: "ChaintrB@75be32b1be62419e90c08307d5bdff60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madonna Sheu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Madonna Sheu,ou=Management,dc=bitwarden,dc=com", + email: "SheuM@5466c54e889b4267baf9470fe7add9b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dzung Evans,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dzung Evans,ou=Human Resources,dc=bitwarden,dc=com", + email: "EvansD@ca8f4832ccb34eecb660b444c29c036c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermione Delf,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hermione Delf,ou=Product Development,dc=bitwarden,dc=com", + email: "DelfH@2b27acc969e94cf2aa1e0ddf34189475.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden,dc=com", + email: "DansereS@181e7c5d669f48eca80875ae007e40bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koray Deleon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Koray Deleon,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeleonK@46baf5a1236843538b25328b706d56d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Korie Swinks,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Korie Swinks,ou=Janitorial,dc=bitwarden,dc=com", + email: "SwinksK@abac4d1589c04140a0e454484535ad15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wynnie Joyce,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Wynnie Joyce,ou=Peons,dc=bitwarden,dc=com", + email: "JoyceW@f48984d7e7db42f4891e864fa2c4158a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teetwo Jarman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Teetwo Jarman,ou=Management,dc=bitwarden,dc=com", + email: "JarmanT@5fc1a3cb7d794193b94e35fbd63bc6e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flss Daquano,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Flss Daquano,ou=Product Testing,dc=bitwarden,dc=com", + email: "DaquanoF@f9f1d010b27b497284c7d10a3ee24be1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doc Frederick,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Doc Frederick,ou=Human Resources,dc=bitwarden,dc=com", + email: "FrederiD@910237fae0394e20b1bd8e8be3e49be6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hellmut Harrod,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hellmut Harrod,ou=Product Development,dc=bitwarden,dc=com", + email: "HarrodH@a5a91129e0ba4691a9ff41395fb1c999.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelcie Uchida,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kelcie Uchida,ou=Product Development,dc=bitwarden,dc=com", + email: "UchidaK@127f75e34fa94456a07c8ec8f332f580.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oksana Sitler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Oksana Sitler,ou=Product Development,dc=bitwarden,dc=com", + email: "SitlerO@6ce8963e36d24b6b992ec2839a5706bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vitia Dacre,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vitia Dacre,ou=Payroll,dc=bitwarden,dc=com", + email: "DacreV@dde5fb6e4b074693aad4d3211880997e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden,dc=com", + email: "VellaS@850db1da58bd42079908c4f0bd25aebc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden,dc=com", + email: "JolicoeH@193a813b90bf4054a776a2e46081339c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carly Cencier,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carly Cencier,ou=Management,dc=bitwarden,dc=com", + email: "CencierC@7673bf0b891540b586de1703874cedb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loc Sochovka,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Loc Sochovka,ou=Human Resources,dc=bitwarden,dc=com", + email: "SochovkL@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonye Lenox,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tonye Lenox,ou=Payroll,dc=bitwarden,dc=com", + email: "LenoxT@02869e10b5974489814843ac717e10a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olly Ooi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Olly Ooi,ou=Human Resources,dc=bitwarden,dc=com", + email: "OoiO@49fe706dbe7849f2b9658de63b5fdca6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margie Herman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Margie Herman,ou=Administrative,dc=bitwarden,dc=com", + email: "HermanM@26ea76142f2a4637b028d1aa71d30271.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giustina Farrington,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Giustina Farrington,ou=Payroll,dc=bitwarden,dc=com", + email: "FarringG@43156b01c6bc494fbc8570d9a5003fc5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden,dc=com", + email: "BellehuD@cefc491b1b064419a5c03c35fa4c9c33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liviu Fisprod,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Liviu Fisprod,ou=Management,dc=bitwarden,dc=com", + email: "FisprodL@518da73225eb4a77959fb191daf72b49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden,dc=com", + email: "JeeHoweH@f8b5ec3dd78f44e3bd6de92c22b0edfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alfons Toothman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Alfons Toothman,ou=Payroll,dc=bitwarden,dc=com", + email: "ToothmaA@b3c93053c0224253988d5c3b976abcae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronica Espinosa,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ronica Espinosa,ou=Administrative,dc=bitwarden,dc=com", + email: "EspinosR@9dcbe58177c3454c992be9f2bcd770bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeane Yuhanna,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jeane Yuhanna,ou=Peons,dc=bitwarden,dc=com", + email: "YuhannaJ@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulien Misutka,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Paulien Misutka,ou=Management,dc=bitwarden,dc=com", + email: "MisutkaP@1eca82e8a13846f79eca4d8e3955a909.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Humberto Azevedo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Humberto Azevedo,ou=Management,dc=bitwarden,dc=com", + email: "AzevedoH@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cissy Benning,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cissy Benning,ou=Administrative,dc=bitwarden,dc=com", + email: "BenningC@b1455661bd7543dbbba61526147b93a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchonbeL@05749581377d47ba8047ee7237ce7f83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden,dc=com", + email: "BeaudetV@20652fd58932448b926b6d40287545d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gib Gouhara,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gib Gouhara,ou=Administrative,dc=bitwarden,dc=com", + email: "GouharaG@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ameline Ikotin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ameline Ikotin,ou=Management,dc=bitwarden,dc=com", + email: "IkotinA@5c6902554d684605823ee60bd0935275.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johanne Coloads,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Johanne Coloads,ou=Administrative,dc=bitwarden,dc=com", + email: "ColoadsJ@acd4caa886454500972e2351b4443a5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Germaine Sabri,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Germaine Sabri,ou=Management,dc=bitwarden,dc=com", + email: "SabriG@207e1d82de324f5b9c63fc14e33c9595.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Justine Gramiak,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Justine Gramiak,ou=Peons,dc=bitwarden,dc=com", + email: "GramiakJ@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selma Coxe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Selma Coxe,ou=Payroll,dc=bitwarden,dc=com", + email: "CoxeS@7336ab4f2ede4dc9a7be8d102b8fa46f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nga Hoag,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nga Hoag,ou=Janitorial,dc=bitwarden,dc=com", + email: "HoagN@759d634715d84fd98852f9030d6bb1fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden,dc=com", + email: "BcsJ@9be954e44923466fa24be9ef8ce9bc6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claudette Towers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Claudette Towers,ou=Payroll,dc=bitwarden,dc=com", + email: "TowersC@19cb9d22e4184ceea78aafbb98426e0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden,dc=com", + email: "VanDenKH@edc642e0d4114142a514590d284702bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilhelmina Yardy,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wilhelmina Yardy,ou=Management,dc=bitwarden,dc=com", + email: "YardyW@03dd1842eed94795a2debd8504958a83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farooq Rosche,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Farooq Rosche,ou=Product Testing,dc=bitwarden,dc=com", + email: "RoscheF@1871a69ca6234f999f51d3a9b4eb4578.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden,dc=com", + email: "KornachJ@d73357acec7c4a888c336fde87967132.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elyssa Schvan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elyssa Schvan,ou=Peons,dc=bitwarden,dc=com", + email: "SchvanE@52c6c82549d445678721da442aca8e53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phoenix Jims,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Phoenix Jims,ou=Human Resources,dc=bitwarden,dc=com", + email: "JimsP@c68b993f950f4e2f86efe0dfd639b00c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden,dc=com", + email: "KlassenC@1b5d8352bac64038b1e8fc921d81a384.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden,dc=com", + email: "FlickinS@fa9b1528fbb74720b69f2a879f936284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden,dc=com", + email: "AllahdiG@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melesa Kaypour,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Melesa Kaypour,ou=Product Development,dc=bitwarden,dc=com", + email: "KaypourM@cbf7358079f24e3ab0356b9f914cfc7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shoji Truelove,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shoji Truelove,ou=Janitorial,dc=bitwarden,dc=com", + email: "TruelovS@8240df43b5e045ccb33a1c30532dbedd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Turus Risto,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Turus Risto,ou=Management,dc=bitwarden,dc=com", + email: "RistoT@9d2ddb8397544898b83d629b995b3f24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Metrics Bartley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Metrics Bartley,ou=Payroll,dc=bitwarden,dc=com", + email: "BartleyM@23128e7ff9d145ae80543eb5e7da5669.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calla Floysvik,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Calla Floysvik,ou=Janitorial,dc=bitwarden,dc=com", + email: "FloysviC@a3b225e3f0d642fb9de7a9d591d3b8fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden,dc=com", + email: "BnrsporA@207f92af6bc444a9a508764b35dab916.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden,dc=com", + email: "SavarimR@765c6bf8e6a844bd84fd3519331c09a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alparslan McAdams,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alparslan McAdams,ou=Management,dc=bitwarden,dc=com", + email: "McAdamsA@9cce2e5b95a34e48b64d619f2a9e3bd6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tej OSullivan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tej OSullivan,ou=Payroll,dc=bitwarden,dc=com", + email: "OSullivT@679bf1d9fa5d438b8807d8c8a658fd6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melly Plourde,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Melly Plourde,ou=Peons,dc=bitwarden,dc=com", + email: "PlourdeM@55d6078545ee499ab423dc186ca21695.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden,dc=com", + email: "MendelsH@c88c546a41dd403183cf489cf47f2715.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ara Coules,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ara Coules,ou=Product Development,dc=bitwarden,dc=com", + email: "CoulesA@c643a761475a4a67b1e62fab24451a4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden,dc=com", + email: "HagstroJ@77209db2428f411d91371f32d860ae4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heida Barnett,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Heida Barnett,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarnettH@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marylynne Wolski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marylynne Wolski,ou=Product Development,dc=bitwarden,dc=com", + email: "WolskiM@34211993f6a54dc18f00a71a05d87998.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mellisa Cormier,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mellisa Cormier,ou=Administrative,dc=bitwarden,dc=com", + email: "CormierM@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neely Schluter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Neely Schluter,ou=Product Development,dc=bitwarden,dc=com", + email: "SchluteN@b4cdee1243de400699df8d563680e709.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorelia Cohrs,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dorelia Cohrs,ou=Management,dc=bitwarden,dc=com", + email: "CohrsD@36e3b9c15a4246d0b9f5619fbb566424.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dede Fernald,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dede Fernald,ou=Peons,dc=bitwarden,dc=com", + email: "FernaldD@03076c5c8b8949f1af9c49c0d6d892b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Real Piitz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Real Piitz,ou=Product Testing,dc=bitwarden,dc=com", + email: "PiitzR@dab11b4d8bc0443d8cd54025f08f0682.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petunia Croteau,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Petunia Croteau,ou=Administrative,dc=bitwarden,dc=com", + email: "CroteauP@543e9d6f1baf4e398f4b35d8fd14d7df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haley Tsonos,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Haley Tsonos,ou=Product Testing,dc=bitwarden,dc=com", + email: "TsonosH@ca737191dd6c4e499a75456baacb8a74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hyacinth Hamner,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hyacinth Hamner,ou=Management,dc=bitwarden,dc=com", + email: "HamnerH@411a0caf6b524748b5bcc8d8176112b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clemence Gardiner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clemence Gardiner,ou=Peons,dc=bitwarden,dc=com", + email: "GardineC@1c31600804664edcbc5e5ccaff471cf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francine Laurich,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Francine Laurich,ou=Management,dc=bitwarden,dc=com", + email: "LaurichF@d5c6232f07e54daabb55a10963c14dea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Narrima Saucerman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Narrima Saucerman,ou=Peons,dc=bitwarden,dc=com", + email: "SaucermN@483a67de96074cb9b0b7084bfe826405.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Han Cozyn,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Han Cozyn,ou=Product Testing,dc=bitwarden,dc=com", + email: "CozynH@62eff42d0f404cf7b0b018186ba6bdb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chuck Dorr,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chuck Dorr,ou=Human Resources,dc=bitwarden,dc=com", + email: "DorrC@681d410e89ea46dbbb918431ab9e5e29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden,dc=com", + email: "DubreckS@d2e91f960afd4021a7949b2d591d1072.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden,dc=com", + email: "HuttE@b8e727bc14df4a0daced5f490054e337.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andre Ashworth,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Andre Ashworth,ou=Management,dc=bitwarden,dc=com", + email: "AshwortA@ab352c8f0fb84cc3a9ed7cae538f0a71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edin Kell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Edin Kell,ou=Product Development,dc=bitwarden,dc=com", + email: "KellE@f15475096e0d43418f4b3b20f6539fb3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theresa Rendon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Theresa Rendon,ou=Peons,dc=bitwarden,dc=com", + email: "RendonT@9db63434a78e416392ae93e3976c1bfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden,dc=com", + email: "AtlS@f33f81bcdd214dc799f298c784f94b9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacenta Byczko,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jacenta Byczko,ou=Peons,dc=bitwarden,dc=com", + email: "ByczkoJ@ee4903e98f36436eb410a6a5c9869ea3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cass Boehms,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cass Boehms,ou=Management,dc=bitwarden,dc=com", + email: "BoehmsC@9d1f7bcfce524784b93c42075dd94a6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melba Holvey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Melba Holvey,ou=Peons,dc=bitwarden,dc=com", + email: "HolveyM@1e91ce6746854cd6839980eca37c6276.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden,dc=com", + email: "TsakaliC@a9a16c4a0f7545639cb0982e970e6363.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristofaro Beland,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cristofaro Beland,ou=Management,dc=bitwarden,dc=com", + email: "BelandC@188fd969cdd04895b43683adfa5ef7c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden,dc=com", + email: "MezzoiuM@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inam Ouzas,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Inam Ouzas,ou=Payroll,dc=bitwarden,dc=com", + email: "OuzasI@8f2fce1e0aaf45f1b91b3f64b80ef5f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden,dc=com", + email: "PambianB@bbd1af679b0c4f5eb725bdbe4b2aee6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quang Austin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Quang Austin,ou=Janitorial,dc=bitwarden,dc=com", + email: "AustinQ@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kassi Ottosson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kassi Ottosson,ou=Product Development,dc=bitwarden,dc=com", + email: "OttossoK@e0ae386e8aba4e05af8962cf46a874a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christian Bradlow,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Christian Bradlow,ou=Payroll,dc=bitwarden,dc=com", + email: "BradlowC@bab890af02d045bcaf621cc90d0b2098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Azar Darnel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Azar Darnel,ou=Peons,dc=bitwarden,dc=com", + email: "DarnelA@b2518035c29e4c3b8b295e3c4a0f3c33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reza Reinboth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Reza Reinboth,ou=Janitorial,dc=bitwarden,dc=com", + email: "ReinbotR@3abf5dcbcc5646ed98709fb5a815b159.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Indira Dimitry,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Indira Dimitry,ou=Human Resources,dc=bitwarden,dc=com", + email: "DimitryI@615969db00524d14a21249f8a920880f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subhashini Freiwald,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Subhashini Freiwald,ou=Management,dc=bitwarden,dc=com", + email: "FreiwalS@be9da34bc6794b9296b1c2babbc6f1c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Izzy Metherell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Izzy Metherell,ou=Human Resources,dc=bitwarden,dc=com", + email: "MethereI@e5a8ff27d33a4796b9268d1fcb1eeeaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden,dc=com", + email: "WojteckR@15a66c25c5f240459bbc3d55fefe3a21.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dreddy Willett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dreddy Willett,ou=Management,dc=bitwarden,dc=com", + email: "WillettD@541a9a67add74942af05ec9661f08230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avis Benham,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Avis Benham,ou=Management,dc=bitwarden,dc=com", + email: "BenhamA@8ded8bbd82ce42aeaa0782da2c17da44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilie Eva,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wilie Eva,ou=Janitorial,dc=bitwarden,dc=com", + email: "EvaW@b9fa5d9bc1554c279a35e716d782ab43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zorine OHearn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zorine OHearn,ou=Janitorial,dc=bitwarden,dc=com", + email: "OHearnZ@3d0ca046d5484a24beb101fc9ea74b59.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niek Salazar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Niek Salazar,ou=Peons,dc=bitwarden,dc=com", + email: "SalazarN@04448fada1ea4fa4b445ea9be1736993.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prabir Bachynski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Prabir Bachynski,ou=Management,dc=bitwarden,dc=com", + email: "BachynsP@33881fd6c18c4c30a4c1757346a78912.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steen Selchow,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Steen Selchow,ou=Peons,dc=bitwarden,dc=com", + email: "SelchowS@1d3f5eae43b5493f95ee42fa1458d39c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden,dc=com", + email: "VanSchyH@b742b209006e494cbb6f8a4e0b48b884.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden,dc=com", + email: "KowalesY@75db88f614404021a489793ab108bedb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tessi Nagai,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tessi Nagai,ou=Payroll,dc=bitwarden,dc=com", + email: "NagaiT@dc14108a33864343abea453a90202c78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sande Lonsdale,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sande Lonsdale,ou=Administrative,dc=bitwarden,dc=com", + email: "LonsdalS@54d404ee0ed9466bae5e36b6d97997f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Euphemia Byer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Euphemia Byer,ou=Administrative,dc=bitwarden,dc=com", + email: "ByerE@6e645f68154e4e0a9f217d10cb782190.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jewell Samson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jewell Samson,ou=Management,dc=bitwarden,dc=com", + email: "SamsonJ@829d5713be204a9ab0a7f267371638c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden,dc=com", + email: "TurcottB@a99084400fcf4b279e00215493abf581.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haley McMannen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Haley McMannen,ou=Payroll,dc=bitwarden,dc=com", + email: "McManneH@22471469e5a74d89b5185fdcb7a6b10d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joyous Bessette,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Joyous Bessette,ou=Product Development,dc=bitwarden,dc=com", + email: "BessettJ@0106d5b2fef44588899b233f3fe1c5e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emanuel Tupas,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Emanuel Tupas,ou=Management,dc=bitwarden,dc=com", + email: "TupasE@ddf0e3f8901347a997696359d60088c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden,dc=com", + email: "IrcmerN@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden,dc=com", + email: "VasarheT@b2d8dc3ab10d41babd472bab4f40b9f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden,dc=com", + email: "TarasewZ@00952e8f7e7647889172eabc088c9368.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janeczka Bautista,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Janeczka Bautista,ou=Product Development,dc=bitwarden,dc=com", + email: "BautistJ@48f6e6bce8ac404d917503a6c43988fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alf Meunier,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alf Meunier,ou=Product Development,dc=bitwarden,dc=com", + email: "MeunierA@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dena Stevenson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dena Stevenson,ou=Human Resources,dc=bitwarden,dc=com", + email: "StevensD@e9efa6e493c94e819a8af125d338efb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khalil Verch,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Khalil Verch,ou=Peons,dc=bitwarden,dc=com", + email: "VerchK@f9c0f71d487646dca3eac1c7c5deeeaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adela Rios,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Adela Rios,ou=Payroll,dc=bitwarden,dc=com", + email: "RiosA@0b870e85b4df46a89fb7255ad1447634.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roselle Sowry,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Roselle Sowry,ou=Management,dc=bitwarden,dc=com", + email: "SowryR@67f0c4cb093d45e88db73275893310b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonida Wenham,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leonida Wenham,ou=Payroll,dc=bitwarden,dc=com", + email: "WenhamL@ad261b7bb83c4b9b8809f461bc78f37f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camille Balog,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Camille Balog,ou=Peons,dc=bitwarden,dc=com", + email: "BalogC@6b282dc55aa94d768c03263feaea873d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden,dc=com", + email: "StegmueM@7223d03a1da84d46925f52800fbe8b33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lona Tuttle,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lona Tuttle,ou=Payroll,dc=bitwarden,dc=com", + email: "TuttleL@2fba4efbb4b44dbe8c7dc5c682d67dce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ryszard Dack,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ryszard Dack,ou=Janitorial,dc=bitwarden,dc=com", + email: "DackR@ab43f8d0eb5a4fa69395019fc76ff8cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden,dc=com", + email: "HollingA@063f46f6e3c34f628dc59cd54e082665.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Channa Bergeron,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Channa Bergeron,ou=Administrative,dc=bitwarden,dc=com", + email: "BergeroC@2f0ef4b1759e41b483f68723f29c3b29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden,dc=com", + email: "BalgalvL@44f2ec4b07a84206abba4026497fde27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden,dc=com", + email: "GorhumA@aad5dc78feef4ac1b9b7f52c8e200ee3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dannie Leth,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dannie Leth,ou=Human Resources,dc=bitwarden,dc=com", + email: "LethD@341c2a7aa79d4aa1aa97b332acebc155.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noell McWalters,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Noell McWalters,ou=Administrative,dc=bitwarden,dc=com", + email: "McWalteN@435172b6be714733b4c4e8a61d6bf70e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ally Viehweg,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ally Viehweg,ou=Product Testing,dc=bitwarden,dc=com", + email: "ViehwegA@080a543860d941fdbfeb0d224af903ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden,dc=com", + email: "FerenzR@28133a838b684d2e99a29d650ff2c42d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elena Leima,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elena Leima,ou=Administrative,dc=bitwarden,dc=com", + email: "LeimaE@1461123b615643b9b7c6f81f4c511488.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manny Grau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Manny Grau,ou=Payroll,dc=bitwarden,dc=com", + email: "GrauM@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cornie Hobgood,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cornie Hobgood,ou=Payroll,dc=bitwarden,dc=com", + email: "HobgoodC@a5186e33e69446d1bb74fa25b1e42650.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirsti Sridaran,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kirsti Sridaran,ou=Peons,dc=bitwarden,dc=com", + email: "SridaraK@ca8f4832ccb34eecb660b444c29c036c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cynthya Ganness,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cynthya Ganness,ou=Product Development,dc=bitwarden,dc=com", + email: "GannessC@4132afcbe852461d84c4e04897cbd70a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden,dc=com", + email: "GabeV@8a518eca58904534b05396f1b7366d38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Becky Bento,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Becky Bento,ou=Human Resources,dc=bitwarden,dc=com", + email: "BentoB@201177ec03f246b1b586746301578c04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Murial Richardson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Murial Richardson,ou=Product Testing,dc=bitwarden,dc=com", + email: "RichardM@a6096cd0d9c54e7cb57ad3b57e445595.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashok Ugwa,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ashok Ugwa,ou=Peons,dc=bitwarden,dc=com", + email: "UgwaA@33b7fa6f25dd4387a5408d5f26b794a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarena Devgon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sarena Devgon,ou=Product Testing,dc=bitwarden,dc=com", + email: "DevgonS@5f9301f0062b42de89716ec7e410b165.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valeria Bracewell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Valeria Bracewell,ou=Payroll,dc=bitwarden,dc=com", + email: "BraceweV@32cbfafe741b446491d67cea0d5c681a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristina Ard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cristina Ard,ou=Administrative,dc=bitwarden,dc=com", + email: "ArdC@4a1e113d03e64aa594660480aad5198e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katrinka Harville,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Katrinka Harville,ou=Administrative,dc=bitwarden,dc=com", + email: "HarvillK@39974c25ecbe436f9e77637f71866303.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colette Chern,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Colette Chern,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChernC@750387c73d1b4103872918e3d3e93c32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PohSoon Mellor,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=PohSoon Mellor,ou=Administrative,dc=bitwarden,dc=com", + email: "MellorP@41bf97a0f83643ecb5c3ae7dea3fc6f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden,dc=com", + email: "deElizaS@f414860515324b3cad4d00dd4f44cc65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reg Mou,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Reg Mou,ou=Payroll,dc=bitwarden,dc=com", + email: "MouR@44154c0b8f05440cb2dfceffbfdfaf5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flor Fong,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Flor Fong,ou=Human Resources,dc=bitwarden,dc=com", + email: "FongF@4440d5a8c29244aaa65d7ce99130f973.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Will Imbemba,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Will Imbemba,ou=Human Resources,dc=bitwarden,dc=com", + email: "ImbembaW@8ec725a0b25640da9e4f5b4c8838762a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Serene Lindquist,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Serene Lindquist,ou=Product Development,dc=bitwarden,dc=com", + email: "LindquiS@d323371cf0d149c19d396f6a749e3098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joeann Upton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joeann Upton,ou=Peons,dc=bitwarden,dc=com", + email: "UptonJ@6f161c0885be4a50be1e5e174b0c967a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fariba Cowell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fariba Cowell,ou=Peons,dc=bitwarden,dc=com", + email: "CowellF@727c241675fb4155a37dd1e11418c186.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annadiane Meijer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Annadiane Meijer,ou=Payroll,dc=bitwarden,dc=com", + email: "MeijerA@123c99e30f8149cea0d20a1c6360de45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cleo Mgmt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cleo Mgmt,ou=Payroll,dc=bitwarden,dc=com", + email: "MgmtC@33e8933bc7494a68acd4251758e509d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ferne Finane,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ferne Finane,ou=Payroll,dc=bitwarden,dc=com", + email: "FinaneF@85922018edea47b985151236684ae904.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden,dc=com", + email: "FiccoJ@b6e4c56ef12d46659a7adc74b2b4e7b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elisabetta Angell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elisabetta Angell,ou=Administrative,dc=bitwarden,dc=com", + email: "AngellE@4466c387ca38420ebdc497ef8de08842.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Me Womack,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Me Womack,ou=Payroll,dc=bitwarden,dc=com", + email: "WomackM@0812c60db2284153af1913e30a97f907.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randie Takata,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Randie Takata,ou=Payroll,dc=bitwarden,dc=com", + email: "TakataR@7be22f7ee9eb41bbba87c747f0e4e97d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Birgitte Marshall,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Birgitte Marshall,ou=Payroll,dc=bitwarden,dc=com", + email: "MarshalB@afde3113416043d98395556c73711549.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorita Pilon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lorita Pilon,ou=Payroll,dc=bitwarden,dc=com", + email: "PilonL@e442907aab1c4de2a3d2eb6b7fab8ddf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ind Brindley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ind Brindley,ou=Peons,dc=bitwarden,dc=com", + email: "BrindleI@b472332785454ae6b007bcbe058ef6e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaal Ugwa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gaal Ugwa,ou=Payroll,dc=bitwarden,dc=com", + email: "UgwaG@a1e6ebe78e6e49b2afcf7ed11f908644.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilda Sharratt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tilda Sharratt,ou=Payroll,dc=bitwarden,dc=com", + email: "SharratT@aadd895e8a7f4326b9573a1143995b88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yueping Kardomateas,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yueping Kardomateas,ou=Peons,dc=bitwarden,dc=com", + email: "KardomaY@22acfb768c09448b9b9c3d7bd8e3a389.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bela Plaisance,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bela Plaisance,ou=Product Development,dc=bitwarden,dc=com", + email: "PlaisanB@af7402077fba4129bbcd03f9bf068e4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlen Privitera,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carlen Privitera,ou=Payroll,dc=bitwarden,dc=com", + email: "PriviteC@01412eb858be4efb9cf7976be214a30b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Survey Vanta,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Survey Vanta,ou=Peons,dc=bitwarden,dc=com", + email: "VantaS@d4ad583ecaae406097e581a7aec5a780.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden,dc=com", + email: "NesrallM@43a2075086314e66b15465a3ec778b06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bevyn Germano,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bevyn Germano,ou=Peons,dc=bitwarden,dc=com", + email: "GermanoB@d4e8bab259134e1b8e7db63aa3a30d2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden,dc=com", + email: "LawbaugT@5e51d9a3833b42d3a0ca89712e0f4b6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norcal Sabourin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Norcal Sabourin,ou=Management,dc=bitwarden,dc=com", + email: "SabouriN@148b0748cafd4655898b3cdac38d15c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden,dc=com", + email: "RusinV@5f59551b04db44d39569a60a87960164.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cuong Schwab,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cuong Schwab,ou=Peons,dc=bitwarden,dc=com", + email: "SchwabC@e6d1825771da43ab8c15fdf770febdde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seang Reichinger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Seang Reichinger,ou=Administrative,dc=bitwarden,dc=com", + email: "ReichinS@c829ed47073b4d85a7396da70f656311.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherryl Appell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sherryl Appell,ou=Janitorial,dc=bitwarden,dc=com", + email: "AppellS@b2c537a3f6174546b2a7b1777d2dea4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rayna Hanford,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rayna Hanford,ou=Administrative,dc=bitwarden,dc=com", + email: "HanfordR@2b6053354b004588977b46a0cd4d26dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hynek Alles,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hynek Alles,ou=Payroll,dc=bitwarden,dc=com", + email: "AllesH@6b1195b29ef347f9ab299fd5409ce2bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cal Wilby,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cal Wilby,ou=Administrative,dc=bitwarden,dc=com", + email: "WilbyC@34552c4db0554609b8e8f530d9b4516c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Furrukh Gros,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Furrukh Gros,ou=Peons,dc=bitwarden,dc=com", + email: "GrosF@7d6095181b454ecb8a89a9772da4d295.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barlas Rezzik,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Barlas Rezzik,ou=Product Development,dc=bitwarden,dc=com", + email: "RezzikB@cd39a8ff12ee4798a79e248d3318980a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cong Kish,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cong Kish,ou=Human Resources,dc=bitwarden,dc=com", + email: "KishC@837254eeede24c15906b803e5cce94f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ping ONeill,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ping ONeill,ou=Peons,dc=bitwarden,dc=com", + email: "ONeillP@232786cf6be745b08d532519f75fd65e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aladin Mikulka,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aladin Mikulka,ou=Peons,dc=bitwarden,dc=com", + email: "MikulkaA@cbf35b83abed4f6d86f5e0a80e7c13e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marj Baldock,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marj Baldock,ou=Product Testing,dc=bitwarden,dc=com", + email: "BaldockM@b1b7656e019d440a9a3ca7d6d074faa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden,dc=com", + email: "DeligdiL@20e14dd3d2dd44c8a8925dd175adb2ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abby Theocharakis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Abby Theocharakis,ou=Payroll,dc=bitwarden,dc=com", + email: "TheochaA@1025092185dc4f3abfbf07259ddd26cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linnea Boucouris,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Linnea Boucouris,ou=Payroll,dc=bitwarden,dc=com", + email: "BoucourL@0ed48bdbdb1f464288e368731b18494f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernd Gaebel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bernd Gaebel,ou=Management,dc=bitwarden,dc=com", + email: "GaebelB@e9c5f780826246738e4b88d9c1251717.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiina Ackaouy,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tiina Ackaouy,ou=Management,dc=bitwarden,dc=com", + email: "AckaouyT@c98eaad0f92a41b49339315f79d6648a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden,dc=com", + email: "LehtineX@7d28967c327e4e23a4b006845992cccc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florrie Latin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Florrie Latin,ou=Administrative,dc=bitwarden,dc=com", + email: "LatinF@7d4ab817fa5e4f88b55f8de9796f837b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bliss Salinas,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bliss Salinas,ou=Janitorial,dc=bitwarden,dc=com", + email: "SalinasB@e2d1ebaa6959429ebc4edc14189d9271.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binny MacGregor,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Binny MacGregor,ou=Administrative,dc=bitwarden,dc=com", + email: "MacGregB@3bd82317516042bfa7398fbc080a5ab7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margie Rubin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Margie Rubin,ou=Administrative,dc=bitwarden,dc=com", + email: "RubinM@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarene Videa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sarene Videa,ou=Payroll,dc=bitwarden,dc=com", + email: "VideaS@682a8645714a480188da85c157ef9433.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harpal Iskandar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Harpal Iskandar,ou=Payroll,dc=bitwarden,dc=com", + email: "IskandaH@ba22866e80644775858f87806fbde4da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melloney Mussar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Melloney Mussar,ou=Administrative,dc=bitwarden,dc=com", + email: "MussarM@4a3dbef197ba4d769249c1f49c2d0f57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arnett Typer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arnett Typer,ou=Peons,dc=bitwarden,dc=com", + email: "TyperA@f85ec6aaedd740f691ab46502bf2fcd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulce Dore,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dulce Dore,ou=Product Testing,dc=bitwarden,dc=com", + email: "DoreD@9092ac0216724776b99f389469a93c29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mandy Auth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mandy Auth,ou=Product Testing,dc=bitwarden,dc=com", + email: "AuthM@ee614e3163c64fc78862e2066c61b43b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nata Lampman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nata Lampman,ou=Product Development,dc=bitwarden,dc=com", + email: "LampmanN@61ded890c4074ecd9ae572c6057905e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Scpiivo Lauten,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Scpiivo Lauten,ou=Management,dc=bitwarden,dc=com", + email: "LautenS@cece21bcad784a3ca39618cc0267819d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susannah Ergle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Susannah Ergle,ou=Product Development,dc=bitwarden,dc=com", + email: "ErgleS@f8c29c9440874d4eb463ef82c13f890c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharona Purohit,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sharona Purohit,ou=Payroll,dc=bitwarden,dc=com", + email: "PurohitS@58b95b0fde664e13afb0e57d90ecd2ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sukey Ameen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sukey Ameen,ou=Administrative,dc=bitwarden,dc=com", + email: "AmeenS@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhawal Obenauf,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dhawal Obenauf,ou=Management,dc=bitwarden,dc=com", + email: "ObenaufD@399088e535dc444183a128d7fd1a5d16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nuntel Cozart,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nuntel Cozart,ou=Administrative,dc=bitwarden,dc=com", + email: "CozartN@f4a6804794574a25b07fba470bdf4478.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Turkey Massone,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Turkey Massone,ou=Peons,dc=bitwarden,dc=com", + email: "MassoneT@ea675d93e8aa4655831540db70e97a6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden,dc=com", + email: "BergstrB@9676da99cfac4bada210a8c85a95f456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maxie Aladangady,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maxie Aladangady,ou=Management,dc=bitwarden,dc=com", + email: "AladangM@0e30929e6bbb48ec8c60769bdbed5c15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Housseini Sammons,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Housseini Sammons,ou=Product Development,dc=bitwarden,dc=com", + email: "SammonsH@c5f103343b7e4b25bc1a4d2fdd71d622.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saraann Koman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Saraann Koman,ou=Product Testing,dc=bitwarden,dc=com", + email: "KomanS@3a2f01610a4f49818c8117630280919e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saudra Griffith,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Saudra Griffith,ou=Product Development,dc=bitwarden,dc=com", + email: "GriffitS@72bccd919e1d4e7a9fb89ff1c2d64c5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yongli Craver,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Yongli Craver,ou=Management,dc=bitwarden,dc=com", + email: "CraverY@fb80550ae6b245dcb9c2cdf7ac12567e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pardip LaVecchia,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pardip LaVecchia,ou=Peons,dc=bitwarden,dc=com", + email: "LaVecchP@e44e2f828b9948f4bb8c5d44954eed11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subhash Waid,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Subhash Waid,ou=Product Testing,dc=bitwarden,dc=com", + email: "WaidS@e0fbcbf86ba64fa69e571f107b3ec1d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden,dc=com", + email: "SobchukK@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deane Saiyed,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Deane Saiyed,ou=Peons,dc=bitwarden,dc=com", + email: "SaiyedD@22830d32dd4a43f899cece07a5cc99c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joannah McBryan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joannah McBryan,ou=Human Resources,dc=bitwarden,dc=com", + email: "McBryanJ@f1351648a83a4fd2b80f3e1c5db82076.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShwedK@a77c7140e8a14e9180f6ceda32adedff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kyle Anconetani,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kyle Anconetani,ou=Administrative,dc=bitwarden,dc=com", + email: "AnconetK@bea3a59f852447369b2ae52dc89b101a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cicily Carlisle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cicily Carlisle,ou=Management,dc=bitwarden,dc=com", + email: "CarlislC@fabf4e5a1cd441dcbccc8453d82524ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carole Coats,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Carole Coats,ou=Product Testing,dc=bitwarden,dc=com", + email: "CoatsC@72bd0ee0befb455d8cec3b8d293b350f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonelle Halpern,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leonelle Halpern,ou=Payroll,dc=bitwarden,dc=com", + email: "HalpernL@4862778236b440e7a6b8cc3c6a3dec32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clare Deatrick,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Clare Deatrick,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeatricC@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marty Maunu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marty Maunu,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaunuM@1905088fe45c42ef9a2318b32d1a92d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronni Paynter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ronni Paynter,ou=Product Development,dc=bitwarden,dc=com", + email: "PaynterR@1d23264dcd2241baa77e90f901c50315.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden,dc=com", + email: "BemilleJ@a312c5a631954b3083418977a35fbc96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duong Davies,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Duong Davies,ou=Human Resources,dc=bitwarden,dc=com", + email: "DaviesD@ce7f6506438049b28a6c7066d0f5b598.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden,dc=com", + email: "BoutiliN@819341cb2af84d6c855b3feecf7b45b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greer Behlen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Greer Behlen,ou=Peons,dc=bitwarden,dc=com", + email: "BehlenG@613a894fc4ff4101a0a94f865da5db23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden,dc=com", + email: "GurArieR@943cde02b55f4c00aac04891d951946b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden,dc=com", + email: "RossRosK@9de1e5ab0e97403bbd2b1cd8ab5549b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Poldi Volk,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Poldi Volk,ou=Product Testing,dc=bitwarden,dc=com", + email: "VolkP@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden,dc=com", + email: "SchmadtH@4b32479366c74b46b2b68466f59bae46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estelle Specs,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Estelle Specs,ou=Management,dc=bitwarden,dc=com", + email: "SpecsE@cbf3bc402182405fa7e4d3e446e6f0ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tina Guarino,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tina Guarino,ou=Peons,dc=bitwarden,dc=com", + email: "GuarinoT@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pamelina Kovats,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pamelina Kovats,ou=Management,dc=bitwarden,dc=com", + email: "KovatsP@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dany deGrace,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dany deGrace,ou=Administrative,dc=bitwarden,dc=com", + email: "deGraceD@c53d26d2599d4e87839d1fcfc46deed3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden,dc=com", + email: "BilsborR@8f54ea12be5d4924822bead7a0de7fce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden,dc=com", + email: "BajpeyiT@af703f54ddb945e38afdba5f17819d01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grata Hosang,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Grata Hosang,ou=Janitorial,dc=bitwarden,dc=com", + email: "HosangG@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden,dc=com", + email: "McAulayS@15447e827d294576b427fe60b8e58e62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eoin Ketchum,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eoin Ketchum,ou=Payroll,dc=bitwarden,dc=com", + email: "KetchumE@f4820d79a950444ca53b37bbda89060d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rora Feild,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rora Feild,ou=Payroll,dc=bitwarden,dc=com", + email: "FeildR@c0a302c2f9a04dc1997191c76bacca58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chryste Tsenter,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chryste Tsenter,ou=Peons,dc=bitwarden,dc=com", + email: "TsenterC@25aebd1493fb4d31a43de4ac0f71a727.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoda Calleja,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Yoda Calleja,ou=Management,dc=bitwarden,dc=com", + email: "CallejaY@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vannie Babalola,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vannie Babalola,ou=Peons,dc=bitwarden,dc=com", + email: "BabalolV@be9d6d33980e45aa8fdb6ebf08094f9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden,dc=com", + email: "YenilmeT@906d64f7c2b74479970aa6699821b985.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden,dc=com", + email: "RakeshK@923baf1ba66c43ddab40764da6c9cc33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheryl Diec,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sheryl Diec,ou=Product Testing,dc=bitwarden,dc=com", + email: "DiecS@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candice Scribner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Candice Scribner,ou=Human Resources,dc=bitwarden,dc=com", + email: "ScribneC@eef8f30988664fe78f88de71627c3b63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden,dc=com", + email: "LansuppC@aebedd81d0064bf4bf3e053b89a4b6eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farand Rambow,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Farand Rambow,ou=Product Development,dc=bitwarden,dc=com", + email: "RambowF@15fb4ae5d92f48d1828a5523a2de1119.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darb Jedrysiak,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Darb Jedrysiak,ou=Peons,dc=bitwarden,dc=com", + email: "JedrysiD@c56a9475370a48efb779b953853ddb74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valentia Edmison,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Valentia Edmison,ou=Administrative,dc=bitwarden,dc=com", + email: "EdmisonV@509acce88e824dae901a9dc813095e54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reid Hotline,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Reid Hotline,ou=Payroll,dc=bitwarden,dc=com", + email: "HotlineR@36cbe8f598cd4972b6d2494f46f3fea8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nelli Camblin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nelli Camblin,ou=Payroll,dc=bitwarden,dc=com", + email: "CamblinN@49d2d3179b1e4e36991607ece7157ce5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaji Heilig,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shaji Heilig,ou=Management,dc=bitwarden,dc=com", + email: "HeiligS@d221ea793fe54c61b6d0a123f7f92114.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angil Shariff,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Angil Shariff,ou=Peons,dc=bitwarden,dc=com", + email: "ShariffA@6278758e52d64d2fa2b3ae646f7b1c8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden,dc=com", + email: "DigilioC@99cc3f0e751d412fb99b300aa817ed7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linet McRitchie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Linet McRitchie,ou=Management,dc=bitwarden,dc=com", + email: "McRitchL@7ae74f35c1ca49719017f2b0cacc9b3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chen Mayer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chen Mayer,ou=Product Testing,dc=bitwarden,dc=com", + email: "MayerC@f126477184184f8891beac46174dce4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anibal Nafezi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anibal Nafezi,ou=Administrative,dc=bitwarden,dc=com", + email: "NafeziA@e3b02f8ad09c4296ae0a5ca3a1e66b19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monteene Azmak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Monteene Azmak,ou=Human Resources,dc=bitwarden,dc=com", + email: "AzmakM@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden,dc=com", + email: "GasparoG@2f5b8316f26f4fc481de13effbbd4ea6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bep Ramsayer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bep Ramsayer,ou=Peons,dc=bitwarden,dc=com", + email: "RamsayeB@6959c2a103f748adbcb2ba7b29cef5d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emilee Mereu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Emilee Mereu,ou=Janitorial,dc=bitwarden,dc=com", + email: "MereuE@32d242671ec341929f315049a0e40a31.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden,dc=com", + email: "IskandaP@dbd5f5a4f3554341aff4c62a69269164.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madalena Brodie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Madalena Brodie,ou=Product Development,dc=bitwarden,dc=com", + email: "BrodieM@a74d44d69cd54766a615e2c08f9ee9f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden,dc=com", + email: "DeVarenT@34211993f6a54dc18f00a71a05d87998.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liese Childers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Liese Childers,ou=Payroll,dc=bitwarden,dc=com", + email: "ChilderL@d97cf4afad7944a09e52ef7af5343e62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden,dc=com", + email: "GrevyG@a54b6e1d0be04405aa83502caa5550a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shekar Finnie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shekar Finnie,ou=Management,dc=bitwarden,dc=com", + email: "FinnieS@bd9a2e982f524b64b04ed8892de43767.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilysa Connor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ilysa Connor,ou=Peons,dc=bitwarden,dc=com", + email: "ConnorI@c4e315e8ab0343648ac206c0fcb55300.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden,dc=com", + email: "CulbertK@c2b132c5eea24821b75062bcddc065ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milly Taghizadeh,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Milly Taghizadeh,ou=Management,dc=bitwarden,dc=com", + email: "TaghizaM@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden,dc=com", + email: "KurauchB@b1e6441eff8249c99c7f5c6eae360d4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guglielma Gomes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Guglielma Gomes,ou=Peons,dc=bitwarden,dc=com", + email: "GomesG@2f63d6d248304182aa4c0d86ba7fd7fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malorie Sei,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Malorie Sei,ou=Product Development,dc=bitwarden,dc=com", + email: "SeiM@7660e12ec2f0413d9900f2acb2787cf3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loella Stephenson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Loella Stephenson,ou=Product Development,dc=bitwarden,dc=com", + email: "StephenL@878435e5887c47ef90f06778893d179e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozalie Farr,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rozalie Farr,ou=Management,dc=bitwarden,dc=com", + email: "FarrR@5bfc4ef1cec94f918b8b846a80865382.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessa Humphrey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jessa Humphrey,ou=Peons,dc=bitwarden,dc=com", + email: "HumphreJ@ab25c8f313f4419ba014954b0448d2c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden,dc=com", + email: "ChambliP@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Audrie Rembecki,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Audrie Rembecki,ou=Management,dc=bitwarden,dc=com", + email: "RembeckA@b78fed9ef6a94b4d9e8bb1b5d1719aef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miroslav Federico,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Miroslav Federico,ou=Payroll,dc=bitwarden,dc=com", + email: "FedericM@ff701dee527d4bd9bda5646b61d95c09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steffi Voelcker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Steffi Voelcker,ou=Peons,dc=bitwarden,dc=com", + email: "VoelckeS@55fd595ff3eb498eb38f456114e4f66d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden,dc=com", + email: "CzarnecJ@22471469e5a74d89b5185fdcb7a6b10d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aloysia OKarina,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aloysia OKarina,ou=Management,dc=bitwarden,dc=com", + email: "OKarinaA@35aa710455a54ec9aacb0743a9cce4e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betsy Braun,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Betsy Braun,ou=Human Resources,dc=bitwarden,dc=com", + email: "BraunB@67288b6f618543379d7c917a6d4d0385.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carling Cupido,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carling Cupido,ou=Product Development,dc=bitwarden,dc=com", + email: "CupidoC@a0441f048a884d1891acef81ab17bc91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saman McNichol,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Saman McNichol,ou=Management,dc=bitwarden,dc=com", + email: "McNichoS@6e6778c4dc0b46a7a3efac6eb8ad5697.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden,dc=com", + email: "TweddleD@0aaa3fff5e9b40a799c1f750d8eb797b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden,dc=com", + email: "DevreezK@23f6fd02f4fc47ae857bce11e624fa96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selma Slotnick,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Selma Slotnick,ou=Janitorial,dc=bitwarden,dc=com", + email: "SlotnicS@dc6a05982d874ebebc06c9a0d16ba5c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden,dc=com", + email: "AnastasA@9c1fdcc0e6874a8c82391032a13dcfa4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felicia Holz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Felicia Holz,ou=Payroll,dc=bitwarden,dc=com", + email: "HolzF@189c40acad524386a961885e16a9d551.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joke Cottengim,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Joke Cottengim,ou=Product Testing,dc=bitwarden,dc=com", + email: "CottengJ@6dc0e5d935a04bb897ee53893751111f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonoe Linke,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sonoe Linke,ou=Product Development,dc=bitwarden,dc=com", + email: "LinkeS@46c8675a51b74aa5ba283cf789fe901d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marce Tracey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marce Tracey,ou=Administrative,dc=bitwarden,dc=com", + email: "TraceyM@d1e70dc6cc51492f97ff25ba684b2627.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Muffin Gadbois,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Muffin Gadbois,ou=Management,dc=bitwarden,dc=com", + email: "GadboisM@47c8f2050dbd47fbb19d2678b904f394.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ros Rajwani,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ros Rajwani,ou=Peons,dc=bitwarden,dc=com", + email: "RajwaniR@27bcaa4785014c5c91369f5095a41ea2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynnelle Shane,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lynnelle Shane,ou=Payroll,dc=bitwarden,dc=com", + email: "ShaneL@f93d2785fb994aaa8ec423242f6986a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kissee Ide,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kissee Ide,ou=Peons,dc=bitwarden,dc=com", + email: "IdeK@83f78532c82a4f77a10f2d7460348b85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leesa Trader,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Leesa Trader,ou=Peons,dc=bitwarden,dc=com", + email: "TraderL@e4a770eb171044f780cef5d883eb3a3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Indy Pullan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Indy Pullan,ou=Human Resources,dc=bitwarden,dc=com", + email: "PullanI@80dd2ec5de3e4cba8ab6e9385f8b5eaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micro Valente,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Micro Valente,ou=Product Development,dc=bitwarden,dc=com", + email: "ValenteM@13f716505b994218abaf3b2234e80f5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden,dc=com", + email: "LackieH@26874cbc58cb45a4a2a676c29fc0a053.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lea Marineau,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lea Marineau,ou=Administrative,dc=bitwarden,dc=com", + email: "MarineaL@13757531d26649c1ba7e4dc18bfd6a62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dinh Yadollahi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dinh Yadollahi,ou=Management,dc=bitwarden,dc=com", + email: "YadollaD@a1a01d013d8e44f99cffc6de4935e97e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nj Patchett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nj Patchett,ou=Product Development,dc=bitwarden,dc=com", + email: "PatchetN@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZenisekV@f1af10e65a3c4deea04ab7a7f844eadd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helsa Calis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Helsa Calis,ou=Administrative,dc=bitwarden,dc=com", + email: "CalisH@0f20bc491a46484db42d8b650f7e698d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drona Panter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Drona Panter,ou=Human Resources,dc=bitwarden,dc=com", + email: "PanterD@45a31d4ab53e40acbe69b0d9b04b9ec0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Filia Magnusson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Filia Magnusson,ou=Management,dc=bitwarden,dc=com", + email: "MagnussF@dd5583b679564f14b7cb6461f47a6a4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernadette Schmelzel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bernadette Schmelzel,ou=Management,dc=bitwarden,dc=com", + email: "SchmelzB@a5413b46913143afa665313de01c325c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elva Radcliffe,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elva Radcliffe,ou=Administrative,dc=bitwarden,dc=com", + email: "RadclifE@ae02c83ad0ef40a7bee5a95ca1e9e096.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janson Sealy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Janson Sealy,ou=Human Resources,dc=bitwarden,dc=com", + email: "SealyJ@ec1c957a0ac64fc4b62ba8838e8e6e5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bethina Horak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bethina Horak,ou=Janitorial,dc=bitwarden,dc=com", + email: "HorakB@d95f88e753834af2ae01c6025a41df6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manny Burkhardt,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Manny Burkhardt,ou=Product Development,dc=bitwarden,dc=com", + email: "BurkharM@58b1feb535e94d39a943e5e96951c27d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mehmud Rios,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mehmud Rios,ou=Janitorial,dc=bitwarden,dc=com", + email: "RiosM@b73122735ce441d6a5329e1b3833484b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden,dc=com", + email: "SchirmeP@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jinann Wildeman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jinann Wildeman,ou=Management,dc=bitwarden,dc=com", + email: "WildemaJ@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lisetta Semler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lisetta Semler,ou=Management,dc=bitwarden,dc=com", + email: "SemlerL@ffcb266a0b9d4db986bd5378efac6255.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trenna Fradette,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Trenna Fradette,ou=Janitorial,dc=bitwarden,dc=com", + email: "FradettT@37098c17a937400b986b54e1bc765718.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden,dc=com", + email: "ViloznyT@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sashenka Warwick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sashenka Warwick,ou=Payroll,dc=bitwarden,dc=com", + email: "WarwickS@118d571b1571425c87bcb58317919134.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bassam Cisco,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bassam Cisco,ou=Janitorial,dc=bitwarden,dc=com", + email: "CiscoB@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yvan Kea,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Yvan Kea,ou=Management,dc=bitwarden,dc=com", + email: "KeaY@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ijff Monforton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ijff Monforton,ou=Product Development,dc=bitwarden,dc=com", + email: "MonfortI@f273a190f14545708d6c984111d46055.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden,dc=com", + email: "FadlallC@1dc980ce277d4e6690f81b768ece41e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden,dc=com", + email: "TabalbaL@528c9fa3f4634d4b9c93989a607b8098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anderson Nunold,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anderson Nunold,ou=Janitorial,dc=bitwarden,dc=com", + email: "NunoldA@edf99b25a1c649749aeb3745c7ce07a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulcia Burkey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dulcia Burkey,ou=Administrative,dc=bitwarden,dc=com", + email: "BurkeyD@1a998e292598475391af8dec2bcfc1a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isidora Wilczewski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Isidora Wilczewski,ou=Management,dc=bitwarden,dc=com", + email: "WilczewI@dc401fe14a3e4403a51a351982eb441b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alexine Tarof,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alexine Tarof,ou=Product Development,dc=bitwarden,dc=com", + email: "TarofA@b4c7fc4bf99a4f9f92481679c9a4b8b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashok Bagg,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ashok Bagg,ou=Management,dc=bitwarden,dc=com", + email: "BaggA@5ecfe4c8aaf4487fb624902f7b975e7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antoni Friesen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Antoni Friesen,ou=Payroll,dc=bitwarden,dc=com", + email: "FriesenA@6e287118b6904f0fb9c650aef9285536.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beate Ribot,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beate Ribot,ou=Administrative,dc=bitwarden,dc=com", + email: "RibotB@c92fece191874f98841ffeece2238130.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden,dc=com", + email: "CaltridE@392576165dfe4cafb8fa1d35ef39e725.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pde Bautista,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pde Bautista,ou=Janitorial,dc=bitwarden,dc=com", + email: "BautistP@ef19dcebf9c048d588e1e2f72c4bddc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marco Cho,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marco Cho,ou=Administrative,dc=bitwarden,dc=com", + email: "ChoM@cc02f064f98b40fea712c7f35045e528.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden,dc=com", + email: "RuppertA@ecbe7413d7a74dce8478d8a77a5f394f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashly McNitt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ashly McNitt,ou=Product Testing,dc=bitwarden,dc=com", + email: "McNittA@53b9160b2496409caa1d33b8b06ca0f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginni Brunelle,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ginni Brunelle,ou=Administrative,dc=bitwarden,dc=com", + email: "BrunellG@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maybelle Hammond,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maybelle Hammond,ou=Management,dc=bitwarden,dc=com", + email: "HammondM@1bd38dfda0ec498fac15746919a63a0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgine Delaney,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Georgine Delaney,ou=Peons,dc=bitwarden,dc=com", + email: "DelaneyG@d0bb47da3574428792ab636cf81dc1b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brent Guindi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brent Guindi,ou=Janitorial,dc=bitwarden,dc=com", + email: "GuindiB@309b117b618847b7b78c15d90bccac07.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annette Madgett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Annette Madgett,ou=Management,dc=bitwarden,dc=com", + email: "MadgettA@87e96f783b644d65b5110e046327acbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tesa Duda,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tesa Duda,ou=Payroll,dc=bitwarden,dc=com", + email: "DudaT@de48d028368243f491b13126a0955d2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idus Welch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Idus Welch,ou=Janitorial,dc=bitwarden,dc=com", + email: "WelchI@341209807c3b449193b094017d62cb24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", + email: "BeattieK@6d0942ba8f2d4a37a2dd747e99b7c4eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden,dc=com", + email: "GavensL@c06f5d628bd7482da3cd966d3e8be7ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaheuM@24c88e38c3b84591a556764222d2f663.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fina Volkmann,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fina Volkmann,ou=Payroll,dc=bitwarden,dc=com", + email: "VolkmanF@b463f1d05e7e4eaba404b90bcd29cc1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eirena Mahn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Eirena Mahn,ou=Janitorial,dc=bitwarden,dc=com", + email: "MahnE@0152a211f3f440b4af045cb6354f524e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pinakin Spooner,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pinakin Spooner,ou=Management,dc=bitwarden,dc=com", + email: "SpoonerP@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden,dc=com", + email: "ScarffeL@2351067d51a3467b820158a0674b058a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden,dc=com", + email: "PopieraE@1ca6d69a45f64604926213dd1e115851.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden,dc=com", + email: "ReceiviM@03bb59f0f5b24019aa5b034a3fadd7fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kannan McCabe,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kannan McCabe,ou=Management,dc=bitwarden,dc=com", + email: "McCabeK@51dbb26cdbdc4f95a7093a6bb469b01b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden,dc=com", + email: "SloaneW@fef32f3295c44e0185e68196ce06374a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magda Bullard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Magda Bullard,ou=Administrative,dc=bitwarden,dc=com", + email: "BullardM@f2c3f0652e32488088bedf6cc0ca618f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden,dc=com", + email: "SnodgraO@651dfea288cb4a3b967f35aa6edd73a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dzung Datema,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dzung Datema,ou=Janitorial,dc=bitwarden,dc=com", + email: "DatemaD@3f4b9aad0e4547d9998409b9c2b65792.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiele Boggs,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kiele Boggs,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoggsK@93802411fc4d40bd8843de42a4656ea2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othelia Humphrey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Othelia Humphrey,ou=Payroll,dc=bitwarden,dc=com", + email: "HumphreO@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willabella Sarto,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Willabella Sarto,ou=Peons,dc=bitwarden,dc=com", + email: "SartoW@da1b5788f067415eb6baf89891f2b951.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maitreya Carriere,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maitreya Carriere,ou=Management,dc=bitwarden,dc=com", + email: "CarrierM@9e649b7894c9461dbc0ee0f6133e962b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marje Sherwin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marje Sherwin,ou=Human Resources,dc=bitwarden,dc=com", + email: "SherwinM@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dode Schnell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dode Schnell,ou=Product Development,dc=bitwarden,dc=com", + email: "SchnellD@59fd6449f708475fb2e48ed60c509c36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden,dc=com", + email: "WadasinA@3e74039e650c410fbbe3b9202ae34fbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden,dc=com", + email: "SkrobecJ@8187109cbba7441ab35098b49dbd1de9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PuiWah Szopinski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=PuiWah Szopinski,ou=Peons,dc=bitwarden,dc=com", + email: "SzopinsP@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden,dc=com", + email: "MacMaidH@c0a6b6c92fcf4d2e9e442a4db87fb8d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jack Totaro,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jack Totaro,ou=Management,dc=bitwarden,dc=com", + email: "TotaroJ@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hettie Phagan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hettie Phagan,ou=Human Resources,dc=bitwarden,dc=com", + email: "PhaganH@6085c53f98f34479bf7644e7797622f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margalo Scholey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Margalo Scholey,ou=Product Testing,dc=bitwarden,dc=com", + email: "ScholeyM@355248f7071d4e58beb9bf6f2b8c9ee2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delly Newnam,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Delly Newnam,ou=Product Development,dc=bitwarden,dc=com", + email: "NewnamD@051b892e4657474a87006ab9ebfe221e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ernst Dinkel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ernst Dinkel,ou=Product Development,dc=bitwarden,dc=com", + email: "DinkelE@b7ede65f1eb44e418de85b304b190714.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charis Armstead,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Charis Armstead,ou=Human Resources,dc=bitwarden,dc=com", + email: "ArmsteaC@72e85d46fcf84593970655aae6ba4a48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Purnam Dillabough,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Purnam Dillabough,ou=Peons,dc=bitwarden,dc=com", + email: "DillaboP@f0c361699ebd444799c8cfa94bd5e53c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cart Fillmore,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cart Fillmore,ou=Human Resources,dc=bitwarden,dc=com", + email: "FillmorC@95d3db8b234f4ca7a8f17262f4fbafbe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yuen Maybee,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Yuen Maybee,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaybeeY@5ae024a345a94b5090f63e27d57061d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petr Battershill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Petr Battershill,ou=Product Testing,dc=bitwarden,dc=com", + email: "BattersP@518037bbef344b5ab53506e072d3a395.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beulah Nowell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Beulah Nowell,ou=Human Resources,dc=bitwarden,dc=com", + email: "NowellB@983b433db82044e3b6af1fbca582d502.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden,dc=com", + email: "GronwalM@9ef7921d830342e7a2bb3017c4f04f06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aryn Mills,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aryn Mills,ou=Peons,dc=bitwarden,dc=com", + email: "MillsA@15d7a602173249f0aea4978bd6de557b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Car Gillet,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Car Gillet,ou=Peons,dc=bitwarden,dc=com", + email: "GilletC@90e76709c73345b5b9d03c814c8e9b26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden,dc=com", + email: "VilmansM@7a6163690f7b43abb4115499c63b90a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden,dc=com", + email: "BohannoB@7a8159a4b38d481598c0559b90aec74d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronn Gorsky,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ronn Gorsky,ou=Payroll,dc=bitwarden,dc=com", + email: "GorskyR@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden,dc=com", + email: "MacHattB@412210ae069c4a339c017fbe0c820674.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roly Dirilten,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roly Dirilten,ou=Administrative,dc=bitwarden,dc=com", + email: "DirilteR@5fc4c33111ce40c6b004653ef715e846.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betteann Thaker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Betteann Thaker,ou=Product Testing,dc=bitwarden,dc=com", + email: "ThakerB@56147ad3dbe542cb8cabca7cdf73e618.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Howden Raglin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Howden Raglin,ou=Peons,dc=bitwarden,dc=com", + email: "RaglinH@49a5c823cbe74e80b9d7e45aa3c6dc0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madeline Sipple,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Madeline Sipple,ou=Janitorial,dc=bitwarden,dc=com", + email: "SippleM@42f6c709ced54560a282482057eafc53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zulema Marra,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zulema Marra,ou=Management,dc=bitwarden,dc=com", + email: "MarraZ@57ee1e7c1faa4ce2b72c1469382238e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaenpaaD@5184500633ec4ec1833d29082b384d33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden,dc=com", + email: "SmithdeJ@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amalita Ivancevic,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amalita Ivancevic,ou=Management,dc=bitwarden,dc=com", + email: "IvancevA@c507f54f9f5548a1b05ab68478cbbf4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden,dc=com", + email: "ZwierzcI@8208431ef5574a1885889c7e3a263d25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden,dc=com", + email: "GovindaA@c595ac3eb122406fb35a1a0f955e739c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden,dc=com", + email: "KupidyJ@0333e91411d445859a646e8c16d92c70.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lazlo McClelland,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lazlo McClelland,ou=Product Development,dc=bitwarden,dc=com", + email: "McClellL@b0926f5fa5f345dab897ee36737c0cbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angele Mitrani,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Angele Mitrani,ou=Management,dc=bitwarden,dc=com", + email: "MitraniA@4fcafc5d237d4e89ae70144b97fd81b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ghislain Kechichian,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ghislain Kechichian,ou=Peons,dc=bitwarden,dc=com", + email: "KechichG@b6e011a2296d47ac9cf137f608b1c223.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrily Administrator,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Merrily Administrator,ou=Management,dc=bitwarden,dc=com", + email: "AdminisM@43965c00f0db4ca198510569e172ade1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zena Farrell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zena Farrell,ou=Product Testing,dc=bitwarden,dc=com", + email: "FarrellZ@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ovila Lanctot,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ovila Lanctot,ou=Payroll,dc=bitwarden,dc=com", + email: "LanctotO@a5aea84a7d5a4a6887c80f4ed88bc0e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karie Kurash,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Karie Kurash,ou=Administrative,dc=bitwarden,dc=com", + email: "KurashK@ec2712850890400a82cf449b7931685a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalina Mednick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kalina Mednick,ou=Payroll,dc=bitwarden,dc=com", + email: "MednickK@7ae93f71f3d249edac467943331a9dd7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yannis Behnam,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yannis Behnam,ou=Peons,dc=bitwarden,dc=com", + email: "BehnamY@fa1b72a27fc34f4eb3c5c550f81af8b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lionel Carevic,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lionel Carevic,ou=Peons,dc=bitwarden,dc=com", + email: "CarevicL@9e33462dc38a47268f5ccb5aff17b01e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden,dc=com", + email: "SandifoE@1617948aaf9d4dcb8bec36f480701bfb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olav McNitt,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Olav McNitt,ou=Peons,dc=bitwarden,dc=com", + email: "McNittO@b0b96975e46b40a097a0034294bf5528.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jobi ONeal,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jobi ONeal,ou=Human Resources,dc=bitwarden,dc=com", + email: "ONealJ@d83f96b44aac4dfe8bb6b493dedbd484.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellissa Marson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ellissa Marson,ou=Management,dc=bitwarden,dc=com", + email: "MarsonE@83ae92312ed14d6f8e9439baa2583cab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anita Bovee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anita Bovee,ou=Product Development,dc=bitwarden,dc=com", + email: "BoveeA@49b890ea773a4116b436ebd330dc653e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gavin Buckingham,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gavin Buckingham,ou=Administrative,dc=bitwarden,dc=com", + email: "BuckingG@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joke Reddick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Joke Reddick,ou=Payroll,dc=bitwarden,dc=com", + email: "ReddickJ@93a858edc4454f37b07e48de82573852.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johna Revill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Johna Revill,ou=Product Testing,dc=bitwarden,dc=com", + email: "RevillJ@3a5ff7224a884729803af88692f56576.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden,dc=com", + email: "PrzybycL@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlee Gillespie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marlee Gillespie,ou=Product Development,dc=bitwarden,dc=com", + email: "GillespM@f20eb0847ca14a90a67aa09264897cd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChaintrC@26c8fa913cbb4779ba0168232a8a145c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Des Theriot,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Des Theriot,ou=Management,dc=bitwarden,dc=com", + email: "TheriotD@a5a630d1967f4b1fbcb91bd230122a62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphine Kobeski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Daphine Kobeski,ou=Payroll,dc=bitwarden,dc=com", + email: "KobeskiD@436da9fad3274d878f0f8f160f4f3038.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subhashini Bachewich,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Subhashini Bachewich,ou=Peons,dc=bitwarden,dc=com", + email: "BachewiS@8f055851cf2e446194b128d0faf47339.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linnell Altekar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Linnell Altekar,ou=Janitorial,dc=bitwarden,dc=com", + email: "AltekarL@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aubrette Holz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Aubrette Holz,ou=Administrative,dc=bitwarden,dc=com", + email: "HolzA@2402d8b6f3164809a62dbae516875b67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden,dc=com", + email: "DillaboS@520ff83094e24aed9f7bf536156db294.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mollee Etemad,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mollee Etemad,ou=Janitorial,dc=bitwarden,dc=com", + email: "EtemadM@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renie Spicer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Renie Spicer,ou=Janitorial,dc=bitwarden,dc=com", + email: "SpicerR@06a75fbf1c264fecab05cf3c4c5e8244.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Halley Clason,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Halley Clason,ou=Administrative,dc=bitwarden,dc=com", + email: "ClasonH@2e5d764491b046f6aa7ce6ba59a519f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mister Stampfl,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mister Stampfl,ou=Product Testing,dc=bitwarden,dc=com", + email: "StampflM@f56fa15d6b7d4398bc29adc06e1de112.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden,dc=com", + email: "TraceyMM@55b35edd71d84140b661b45476973814.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hq Skelly,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hq Skelly,ou=Administrative,dc=bitwarden,dc=com", + email: "SkellyH@10f009f83fa241ed9d40654a174c0f83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anthony Markham,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anthony Markham,ou=Management,dc=bitwarden,dc=com", + email: "MarkhamA@f666c666c5c8454c862ee863e1582d3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neilla Shingler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Neilla Shingler,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShingleN@97c4b9ae4f964addb510995883d2e8fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden,dc=com", + email: "TrouborS@0444b3a403d344e4ab1517502c8a1fc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Korrie Stallcup,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Korrie Stallcup,ou=Management,dc=bitwarden,dc=com", + email: "StallcuK@e3f89583f77e4884a1d8183b4faa15a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden,dc=com", + email: "KittingJ@e01b4053cbcc4a7e8cc0003d4b938668.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delcina Barcza,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Delcina Barcza,ou=Product Development,dc=bitwarden,dc=com", + email: "BarczaD@61c3aec04f2f4530bf57a1dd23bae4be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evette Coddington,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Evette Coddington,ou=Peons,dc=bitwarden,dc=com", + email: "CoddingE@50db0b06f7084e4cb9a7af7a31c89f8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden,dc=com", + email: "HalleyB@bd079bcc8df848e4ad40b50c80eb486f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joelynn Lightfield,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joelynn Lightfield,ou=Peons,dc=bitwarden,dc=com", + email: "LightfiJ@4247bf0f3a2e46bbbb1c691078752396.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isaac Cossota,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Isaac Cossota,ou=Payroll,dc=bitwarden,dc=com", + email: "CossotaI@ab43f8d0eb5a4fa69395019fc76ff8cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden,dc=com", + email: "SunatorA@a6c1eeb1053647d78d950c48b3782b75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyle DorionMagnan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lyle DorionMagnan,ou=Management,dc=bitwarden,dc=com", + email: "DorionML@d00e5ebc0da5488f8f410f79ea5c559a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tsing Daya,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tsing Daya,ou=Human Resources,dc=bitwarden,dc=com", + email: "DayaT@5c5e6866da4a4802aa0f0136ee49902d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Achal Justus,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Achal Justus,ou=Administrative,dc=bitwarden,dc=com", + email: "JustusA@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilda Meskimen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ilda Meskimen,ou=Administrative,dc=bitwarden,dc=com", + email: "MeskimeI@b0139312a83c40d5aff228440731260a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden,dc=com", + email: "WojteckB@0f207436d6984fc4977dc1a901dbb60d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden,dc=com", + email: "DrinnanB@283ec365fe654c3fba136ca1c0a944d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaya Ellul,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jaya Ellul,ou=Payroll,dc=bitwarden,dc=com", + email: "EllulJ@f8a322034d5e45cc8676b5e9fe5f5d0f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tessi Hipp,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tessi Hipp,ou=Peons,dc=bitwarden,dc=com", + email: "HippT@792920344b6e48bca13d2ab90771bbd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatyana Gooch,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tatyana Gooch,ou=Peons,dc=bitwarden,dc=com", + email: "GoochT@96ee5954dbf645b89509b54bd70ed6ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashlan Inamullah,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ashlan Inamullah,ou=Management,dc=bitwarden,dc=com", + email: "InamullA@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden,dc=com", + email: "SchmadtP@19227d32d4ac4d3c8783acb96838362f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jandy McCollum,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jandy McCollum,ou=Janitorial,dc=bitwarden,dc=com", + email: "McColluJ@bf5fb1f833e149108e10f8209a4caa81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kattie Thom,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kattie Thom,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThomK@d18e4ae711e645c5a354ba4c375d8965.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hideo Nelson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hideo Nelson,ou=Product Testing,dc=bitwarden,dc=com", + email: "NelsonH@1ae5fc4856da4293b03fc4a57c0646c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karam Abraham,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Karam Abraham,ou=Payroll,dc=bitwarden,dc=com", + email: "AbrahamK@094814e3447d47a28856d14771b265f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evita Mahin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Evita Mahin,ou=Peons,dc=bitwarden,dc=com", + email: "MahinE@7391a6d3d59e40cd941b74d4ab20cfad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doll Hwang,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Doll Hwang,ou=Peons,dc=bitwarden,dc=com", + email: "HwangD@eba2f109ece04a08844cbc417a83a156.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atsushi Gros,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Atsushi Gros,ou=Administrative,dc=bitwarden,dc=com", + email: "GrosA@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lacee Kraus,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lacee Kraus,ou=Product Testing,dc=bitwarden,dc=com", + email: "KrausL@ea5d27109c534992bb828c5b0124e943.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonu Doncaster,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tonu Doncaster,ou=Peons,dc=bitwarden,dc=com", + email: "DoncastT@5d8901804e424468b0bef6e0378317d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tobye Rupnow,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tobye Rupnow,ou=Product Development,dc=bitwarden,dc=com", + email: "RupnowT@5cb8587bbf2c41a39017176951716d73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilberte Correia,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gilberte Correia,ou=Payroll,dc=bitwarden,dc=com", + email: "CorreiaG@6faffd19174647ed8adaeaef1a2a75ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden,dc=com", + email: "PueGilcK@32972334779c4c7daa4ee6042db79c56.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elva Goza,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Elva Goza,ou=Human Resources,dc=bitwarden,dc=com", + email: "GozaE@d1f70e2814da436e8e729474e3ae0ca1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden,dc=com", + email: "SanzoneW@ea018c15212d4d0b83b37b8dca2d7a5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nath Gazier,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nath Gazier,ou=Administrative,dc=bitwarden,dc=com", + email: "GazierN@aefdcea121544b52a45f3a380c86d30e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Serene Tandiono,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Serene Tandiono,ou=Administrative,dc=bitwarden,dc=com", + email: "TandionS@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guner Sinnett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Guner Sinnett,ou=Payroll,dc=bitwarden,dc=com", + email: "SinnettG@c73dbaa0e70c411fa0d04bf8fe86f3a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden,dc=com", + email: "PostletM@7526aadf2aaf4f8f86b2debc64e016dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolien Predel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carolien Predel,ou=Management,dc=bitwarden,dc=com", + email: "PredelC@7770d32208f64a63bf44fae15e8c6935.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fouad Woodman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fouad Woodman,ou=Product Development,dc=bitwarden,dc=com", + email: "WoodmanF@deaa9dfec3b843c0b4f3e72afbba1381.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Remy Muenstermann,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Remy Muenstermann,ou=Payroll,dc=bitwarden,dc=com", + email: "MuensteR@a774bfe9f410429f835439e7192aaefa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erkan Burkert,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Erkan Burkert,ou=Product Development,dc=bitwarden,dc=com", + email: "BurkertE@d5a69c0f90ac41d3bc2cf5630c9098ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linnea Oliveira,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Linnea Oliveira,ou=Management,dc=bitwarden,dc=com", + email: "OliveirL@fb3c64c9b443484e8686e2aaa346d1de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steve Nass,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Steve Nass,ou=Product Testing,dc=bitwarden,dc=com", + email: "NassS@310fefd008494b9e8a0a81aff3327a1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henrie Malkani,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Henrie Malkani,ou=Product Development,dc=bitwarden,dc=com", + email: "MalkaniH@111621500be94783a2bfd9f6dfd05ba5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Almeta Batura,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Almeta Batura,ou=Peons,dc=bitwarden,dc=com", + email: "BaturaA@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden,dc=com", + email: "DudgeonG@dcb0954e4af74751966d9af34246f81f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laurianne Storey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Laurianne Storey,ou=Human Resources,dc=bitwarden,dc=com", + email: "StoreyL@6ab835c0621d479dbd805d5189aa2b92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nady Straub,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nady Straub,ou=Management,dc=bitwarden,dc=com", + email: "StraubN@ef4d5bf16ea04edda300a945910f03e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden,dc=com", + email: "GuilfoyM@b0c48599d24847958412615828406699.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden,dc=com", + email: "AdamkowS@4cccac2b65cb4d559e1c7c657101129e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sami McQuaig,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sami McQuaig,ou=Administrative,dc=bitwarden,dc=com", + email: "McQuaigS@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moises Semler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Moises Semler,ou=Product Development,dc=bitwarden,dc=com", + email: "SemlerM@2eeb9567dcd64347a2dcd6492aaa8ddc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Richard FWPtools,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Richard FWPtools,ou=Peons,dc=bitwarden,dc=com", + email: "FWPtoolR@dd8272e863174597a9c6eb5aaf131b06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden,dc=com", + email: "MacGillS@94747c09a3194eba8b7d52262cebca45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden,dc=com", + email: "BottomlS@c70dbe261a1148e99aeacce847bbdb51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danielle Sells,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Danielle Sells,ou=Product Development,dc=bitwarden,dc=com", + email: "SellsD@703760e209f6497aa718fce078cb8340.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden,dc=com", + email: "IsaacsN@3a117fad58d6422fb9086b1f787bebea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThrogmoK@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sylva Hikita,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sylva Hikita,ou=Administrative,dc=bitwarden,dc=com", + email: "HikitaS@a78ed8611e034976918da82623b252aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeannine McMurray,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jeannine McMurray,ou=Administrative,dc=bitwarden,dc=com", + email: "McMurraJ@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robbin Vanstory,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Robbin Vanstory,ou=Peons,dc=bitwarden,dc=com", + email: "VanstorR@d2a6214e814b4ea4b87489ad9882572a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertie Dix,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gertie Dix,ou=Product Testing,dc=bitwarden,dc=com", + email: "DixG@ebc00b9ae1f6452da423353f7889c3bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daloris Pippy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Daloris Pippy,ou=Human Resources,dc=bitwarden,dc=com", + email: "PippyD@dc4990156aa641249346113b8218bf9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinia Chytil,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Robinia Chytil,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChytilR@72967884fe2a4610a29d315ed4d9bc28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randy Haaksman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Randy Haaksman,ou=Payroll,dc=bitwarden,dc=com", + email: "HaaksmaR@3ecb1c63de854804b4e8af1966a28c00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChiykowA@64b8640cd7404f1e9ef28806435c2900.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginn Rembecki,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ginn Rembecki,ou=Payroll,dc=bitwarden,dc=com", + email: "RembeckG@1bca91d4fd4549c6bf14b515f5e0a173.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deva Morimoto,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Deva Morimoto,ou=Product Development,dc=bitwarden,dc=com", + email: "MorimotD@38b2663172424c999e78408a67cf7851.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sioux Laney,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sioux Laney,ou=Peons,dc=bitwarden,dc=com", + email: "LaneyS@e4daa158936a4fde9b3ebffb038e67fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden,dc=com", + email: "EslamboH@0aee22428274445fb9c2a16b33d788f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Demetri Sepe,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Demetri Sepe,ou=Administrative,dc=bitwarden,dc=com", + email: "SepeD@4e6ec37d862e441480157c39097f280d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden,dc=com", + email: "BuratynZ@37c4f9ee232544a4846bc4a3466039ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mickey Fiset,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mickey Fiset,ou=Peons,dc=bitwarden,dc=com", + email: "FisetM@5b938862d9b84f248e738a32d39aab3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avie AltingMees,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Avie AltingMees,ou=Administrative,dc=bitwarden,dc=com", + email: "AltingMA@f2f9b94a61d74e48ae3ede318c7f996c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanya Ralph,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kanya Ralph,ou=Human Resources,dc=bitwarden,dc=com", + email: "RalphK@2ed3a0c0604d4f8d80fc4a72596ea1a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elisabeth Viens,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elisabeth Viens,ou=Peons,dc=bitwarden,dc=com", + email: "ViensE@ea4e16c32710425c934ffce7fc0703d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christin Hussain,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Christin Hussain,ou=Janitorial,dc=bitwarden,dc=com", + email: "HussainC@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephannie Oam,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stephannie Oam,ou=Management,dc=bitwarden,dc=com", + email: "OamS@bab890af02d045bcaf621cc90d0b2098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarrW@2e2a0c8690da45808c0e415496248633.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden,dc=com", + email: "RittenhS@aab974bb6e3141739f83f690a4adf239.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kerrie Cholet,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kerrie Cholet,ou=Payroll,dc=bitwarden,dc=com", + email: "CholetK@6edf4c15ac51401f9d8774ffb0590b89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barnes Todaro,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Barnes Todaro,ou=Janitorial,dc=bitwarden,dc=com", + email: "TodaroB@102dfc559679498e886e0a19d56ecd00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulie Stellitano,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Paulie Stellitano,ou=Product Development,dc=bitwarden,dc=com", + email: "StellitP@5ad15098bcd947faa38496ab1dc4e2c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quon Lamm,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Quon Lamm,ou=Product Development,dc=bitwarden,dc=com", + email: "LammQ@a2e835bbc90a4bb8aa8eed7abb9fcd6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wenxi Reade,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wenxi Reade,ou=Janitorial,dc=bitwarden,dc=com", + email: "ReadeW@f541074a8300482d85b53966c8cecebb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fabienne Hoehling,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fabienne Hoehling,ou=Management,dc=bitwarden,dc=com", + email: "HoehlinF@ab5a3e15caae4984acf7b1a615995a84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden,dc=com", + email: "TriggiaY@11375f30f6dd4d8d96f9eb019f620b90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lanita Delorenzi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lanita Delorenzi,ou=Peons,dc=bitwarden,dc=com", + email: "DelorenL@0a595c1902924e8c80901829c830cca2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden,dc=com", + email: "SeilerC@97fbe9f514864d40bb6dc85e4d15c1c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden,dc=com", + email: "CiferskD@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden,dc=com", + email: "CarbonaF@7a5ece6d9adf44888506b316b6709917.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chong Alleva,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chong Alleva,ou=Payroll,dc=bitwarden,dc=com", + email: "AllevaC@78da39afd8f041eaad04623e643dcf1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden,dc=com", + email: "BurkharM@e55b43fab5194d70867c5cdfb0b99fcb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden,dc=com", + email: "WojnarB@afa80aa7187b419eb6bf52dc727c580b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theresita Flanagan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Theresita Flanagan,ou=Administrative,dc=bitwarden,dc=com", + email: "FlanagaT@65678c07e8734c7890d5cf5e76fde9cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luc Sutton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Luc Sutton,ou=Payroll,dc=bitwarden,dc=com", + email: "SuttonL@e8193f804bab49a9ab24a3360e9fb251.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adnan Madani,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Adnan Madani,ou=Product Development,dc=bitwarden,dc=com", + email: "MadaniA@9011e405bc8b4f8fa11f77635250f96d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jason Quelch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jason Quelch,ou=Janitorial,dc=bitwarden,dc=com", + email: "QuelchJ@643a7a9782f24ae2ae0ce0064cc2c175.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden,dc=com", + email: "PurchasB@541a9a67add74942af05ec9661f08230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoubaraR@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terrence Rolston,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Terrence Rolston,ou=Management,dc=bitwarden,dc=com", + email: "RolstonT@f64d2b674404476caa1b13d86d94ce8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Douglass Kwee,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Douglass Kwee,ou=Product Testing,dc=bitwarden,dc=com", + email: "KweeD@b7096e7dad2d445c9a6a84bd0cc4e406.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manjit Sankey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Manjit Sankey,ou=Product Development,dc=bitwarden,dc=com", + email: "SankeyM@0e3113ef45cd4f5f8de5c47309c63f86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thalia Majid,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Thalia Majid,ou=Product Testing,dc=bitwarden,dc=com", + email: "MajidT@190762f539394f3d8d0e37edbd48fa26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anna Gullekson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Anna Gullekson,ou=Peons,dc=bitwarden,dc=com", + email: "GulleksA@893bc48ed45e4ab7ab4ee0815dd34812.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steffi Rok,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Steffi Rok,ou=Product Testing,dc=bitwarden,dc=com", + email: "RokS@8fb9d9d0bee6452fa8938ef7b2ecd6d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerrard Kearns,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gerrard Kearns,ou=Administrative,dc=bitwarden,dc=com", + email: "KearnsG@aca976004a314abfbb7dfda7c7926044.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden,dc=com", + email: "LetendrR@1babd519a8034b2d99c4603db1b7c5f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teri Braginetz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Teri Braginetz,ou=Janitorial,dc=bitwarden,dc=com", + email: "BragineT@bff4b511cea9469fa37ffb543c659826.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nuri Spieker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nuri Spieker,ou=Peons,dc=bitwarden,dc=com", + email: "SpiekerN@afa80aa7187b419eb6bf52dc727c580b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden,dc=com", + email: "BourahlT@19b361f0a9d047efa402d72785e83839.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flossy Leveille,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Flossy Leveille,ou=Management,dc=bitwarden,dc=com", + email: "LeveillF@e89f7d8012a542109e09ce98de1ebaa3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Witte Houghton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Witte Houghton,ou=Payroll,dc=bitwarden,dc=com", + email: "HoughtoW@c91b2ddabda245189089b8e227b823b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gateway Szaran,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gateway Szaran,ou=Administrative,dc=bitwarden,dc=com", + email: "SzaranG@ba21abcd355b438c8ca475845a96f139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othelia Henley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Othelia Henley,ou=Product Testing,dc=bitwarden,dc=com", + email: "HenleyO@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacia Sova,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Stacia Sova,ou=Janitorial,dc=bitwarden,dc=com", + email: "SovaS@11aa381a3094436abdc8bd9975f709cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden,dc=com", + email: "LotochiY@cb2e25cd93c145bf81000296630c3ab7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kellen Nickells,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kellen Nickells,ou=Product Development,dc=bitwarden,dc=com", + email: "NickellK@1eb9b53c6a0544dd9c49164e1f66daae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden,dc=com", + email: "GlofcheS@49a15030fed84b5c949c8b818a768fcf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden,dc=com", + email: "MiltenbN@325baca037db47019cfe17144614afb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marika Brombal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marika Brombal,ou=Peons,dc=bitwarden,dc=com", + email: "BrombalM@fc0c286626334794ab4a83e723107bf2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", + email: "WatchmaM@cfa5e8864d9a4014bb3e1303e126d0df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kally Woodyer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kally Woodyer,ou=Product Development,dc=bitwarden,dc=com", + email: "WoodyerK@d854a7d34f1f40b68a358853dc801a6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constancia Liao,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Constancia Liao,ou=Product Development,dc=bitwarden,dc=com", + email: "LiaoC@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alexander Riley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alexander Riley,ou=Janitorial,dc=bitwarden,dc=com", + email: "RileyA@e92792a71a1b4fd28678d03900079ed2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden,dc=com", + email: "RadclifC@38a7625af1b14df88545f13f78008710.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobb Hubers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bobb Hubers,ou=Management,dc=bitwarden,dc=com", + email: "HubersB@13bd043663fc42cba2436f0d4858727a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vannie Clenney,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vannie Clenney,ou=Human Resources,dc=bitwarden,dc=com", + email: "ClenneyV@b18734eaf31b4b8a9fcf2accdab91823.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Udaya Kingaby,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Udaya Kingaby,ou=Peons,dc=bitwarden,dc=com", + email: "KingabyU@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dari OHara,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dari OHara,ou=Administrative,dc=bitwarden,dc=com", + email: "OHaraD@8a0cbe1fe7e149a8b47de17ec0983326.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merralee Firment,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Merralee Firment,ou=Product Development,dc=bitwarden,dc=com", + email: "FirmentM@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden,dc=com", + email: "OsborneR@18eab17fefac4eeea398f028a117f313.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurie Alanoly,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aurie Alanoly,ou=Peons,dc=bitwarden,dc=com", + email: "AlanolyA@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nadim Junkin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nadim Junkin,ou=Peons,dc=bitwarden,dc=com", + email: "JunkinN@09bb099d23204c85bbfd94efdb157b79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erik Chapman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Erik Chapman,ou=Management,dc=bitwarden,dc=com", + email: "ChapmanE@9d01b447e6a64f299b9f22d5bfa6f85c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adora Lamers,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Adora Lamers,ou=Janitorial,dc=bitwarden,dc=com", + email: "LamersA@0d80b2a6494e4c3ea20974357dae6a78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden,dc=com", + email: "KinnibuK@e88ec12c0e274795b179c15ca876ea28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micah Brabec,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Micah Brabec,ou=Peons,dc=bitwarden,dc=com", + email: "BrabecM@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annette Brandsen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Annette Brandsen,ou=Product Development,dc=bitwarden,dc=com", + email: "BrandseA@87319c77ecd947ceb8993498705d4a28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amabelle Lockwood,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amabelle Lockwood,ou=Management,dc=bitwarden,dc=com", + email: "LockwooA@6c11e171b5ae4d6a948549d1ce64d6ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosaline Carldata,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosaline Carldata,ou=Peons,dc=bitwarden,dc=com", + email: "CarldatR@624142924058476ab877513f564d46a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diana Felczak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Diana Felczak,ou=Human Resources,dc=bitwarden,dc=com", + email: "FelczakD@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regis Liesemer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Regis Liesemer,ou=Peons,dc=bitwarden,dc=com", + email: "LiesemeR@08af06c825e94cb392bd12261cb97963.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joke Mrozinski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joke Mrozinski,ou=Administrative,dc=bitwarden,dc=com", + email: "MrozinsJ@cfa7040d433d4b838919647ccf3ca4bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcelle Hine,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marcelle Hine,ou=Product Development,dc=bitwarden,dc=com", + email: "HineM@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden,dc=com", + email: "LegrowO@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grayce Cicci,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Grayce Cicci,ou=Product Testing,dc=bitwarden,dc=com", + email: "CicciG@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idris CPM,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Idris CPM,ou=Management,dc=bitwarden,dc=com", + email: "CPMI@065d89caf6134a3f9c8662bc1542414d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden,dc=com", + email: "SutarwaT@021f182578104bf484110ac6631b5efa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ree Budhram,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ree Budhram,ou=Product Development,dc=bitwarden,dc=com", + email: "BudhramR@a3f7434e2b8a46068e08a2b78a0eab76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elda Ranahan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elda Ranahan,ou=Peons,dc=bitwarden,dc=com", + email: "RanahanE@bd1d65ed4d0c4a7dad4e3b96610e9934.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden,dc=com", + email: "MetrailP@d0bdf08d734447ea82c1911df5e50cfd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shailendra Kapsa,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shailendra Kapsa,ou=Management,dc=bitwarden,dc=com", + email: "KapsaS@43194b35694143d5b8419715c0e79567.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Persis Emig,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Persis Emig,ou=Peons,dc=bitwarden,dc=com", + email: "EmigP@9fafe4d0289a4f4bbac552a25b2345a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden,dc=com", + email: "FusonW@770858a0ba27427fa80380c180b40ddb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden,dc=com", + email: "GendronJ@b154fab59ca14553be1151ffa2cd4d97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laurel Grills,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Laurel Grills,ou=Product Testing,dc=bitwarden,dc=com", + email: "GrillsL@5d4e8ddf2cb3440da6c01a697205179e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saloma Jaques,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Saloma Jaques,ou=Administrative,dc=bitwarden,dc=com", + email: "JaquesS@374014674548406aaa9d72c3d1ad3586.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sebastian Kammerer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sebastian Kammerer,ou=Management,dc=bitwarden,dc=com", + email: "KammereS@986fe4fcc1ec45dd9a8c35010d313412.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grayce Roesler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Grayce Roesler,ou=Product Testing,dc=bitwarden,dc=com", + email: "RoeslerG@bd28f191e92142cf98b8765cb13928aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helene Krowlek,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Helene Krowlek,ou=Administrative,dc=bitwarden,dc=com", + email: "KrowlekH@04bb376282154efc832b529dc3f80793.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charman Nagy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Charman Nagy,ou=Product Development,dc=bitwarden,dc=com", + email: "NagyC@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacqueline Sorathia,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jacqueline Sorathia,ou=Management,dc=bitwarden,dc=com", + email: "SorathiJ@33045c677af94d5d866f53c47ff9ab36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leanne Devine,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leanne Devine,ou=Product Development,dc=bitwarden,dc=com", + email: "DevineL@683e25fc9db544c199938de64838b325.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manon Benham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Manon Benham,ou=Product Testing,dc=bitwarden,dc=com", + email: "BenhamM@15fb4ae5d92f48d1828a5523a2de1119.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meg Lara,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Meg Lara,ou=Human Resources,dc=bitwarden,dc=com", + email: "LaraM@0d3f6cc1cdcf4ec187af48e309baf95b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanae Carpool,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sanae Carpool,ou=Janitorial,dc=bitwarden,dc=com", + email: "CarpoolS@8d1f37d60b9647bf981f8d5200deacf7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mia Willis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mia Willis,ou=Product Testing,dc=bitwarden,dc=com", + email: "WillisM@8bea6081e631433ebecd2c41f7175d46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gheorghe Younan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gheorghe Younan,ou=Administrative,dc=bitwarden,dc=com", + email: "YounanG@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Val Toth,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Val Toth,ou=Administrative,dc=bitwarden,dc=com", + email: "TothV@b3dbdab84e2c48b6978c034f8aec9c11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden,dc=com", + email: "MacDermG@5d66866885fa4ba8b5860161fb0bcacc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ishan Puukila,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ishan Puukila,ou=Product Testing,dc=bitwarden,dc=com", + email: "PuukilaI@f62f35ed22de4bb392da671e518673e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davinder Thibert,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Davinder Thibert,ou=Administrative,dc=bitwarden,dc=com", + email: "ThibertD@2abf92fd8c714d91bc2b9d955d40f2ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mounir Theoret,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mounir Theoret,ou=Payroll,dc=bitwarden,dc=com", + email: "TheoretM@87263f2ad4e44ac39562038c9af16152.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Air Baldwin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Air Baldwin,ou=Product Development,dc=bitwarden,dc=com", + email: "BaldwinA@503fe0b136ce4292a59167d529c63c6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlyne Miao,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Arlyne Miao,ou=Human Resources,dc=bitwarden,dc=com", + email: "MiaoA@14f0a617fa68422cb151ec721a7c3c6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debi Seniuk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Debi Seniuk,ou=Janitorial,dc=bitwarden,dc=com", + email: "SeniukD@409ada935d6b4cf28b401fd7d4cd1227.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pas Maksuta,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pas Maksuta,ou=Product Development,dc=bitwarden,dc=com", + email: "MaksutaP@c4687fc25321403c8c563bd392c6eebd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camellia Tencer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Camellia Tencer,ou=Peons,dc=bitwarden,dc=com", + email: "TencerC@9166d82b2507407f821e6bc43e6ad329.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HinWai Menaker,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=HinWai Menaker,ou=Human Resources,dc=bitwarden,dc=com", + email: "MenakerH@c44d8fdf489549e795a051d84cc2a931.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden,dc=com", + email: "DickersK@49f8e0161dfd444bb97c350a4d451c6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden,dc=com", + email: "WimbushM@52a17214cb1d4651a3e9bb6b3656b1d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenore Inrig,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lenore Inrig,ou=Payroll,dc=bitwarden,dc=com", + email: "InrigL@9d05795ed464449781ae591bd196a1b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden,dc=com", + email: "TurbyfiM@3b405672834f4c2186242e2cccd0abf2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibeal Manner,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sibeal Manner,ou=Management,dc=bitwarden,dc=com", + email: "MannerS@aea15e7df8c442459769e06303aa4e66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vo Filpus,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vo Filpus,ou=Management,dc=bitwarden,dc=com", + email: "FilpusV@05f7379ac7b945a2a2343b19ee63fd8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martine Captives,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Martine Captives,ou=Payroll,dc=bitwarden,dc=com", + email: "CaptiveM@6e37f106489b4294bc905b93ac1e126f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden,dc=com", + email: "JakabffF@9a62cb6fe77549efbb6b065fb22448c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wileen Elgar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wileen Elgar,ou=Janitorial,dc=bitwarden,dc=com", + email: "ElgarW@369d31e12885450e8a3e646342f4bbde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Basheer Illidge,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Basheer Illidge,ou=Management,dc=bitwarden,dc=com", + email: "IllidgeB@f9e13296819e4d139b7b490c05eac7c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jodine Swartz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jodine Swartz,ou=Product Testing,dc=bitwarden,dc=com", + email: "SwartzJ@07f011cc742c4813b7b97485646c3ab6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden,dc=com", + email: "DharJ@0a9a71507ed94ca2ba9642f4919766e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbette VanHaste,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Barbette VanHaste,ou=Payroll,dc=bitwarden,dc=com", + email: "VanHastB@60bd4b43f6e248668a53825c3bbcbca3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Envoy Dignam,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Envoy Dignam,ou=Product Development,dc=bitwarden,dc=com", + email: "DignamE@6ba8baad97224f009bad99f9ff3a1b6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden,dc=com", + email: "WhitehuA@7cefaa55a36f4be4acff376f7ddd1a67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ghassan Visser,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ghassan Visser,ou=Product Development,dc=bitwarden,dc=com", + email: "VisserG@87c78a2aa2ad454eb9d547c989c59937.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryna Grandy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bryna Grandy,ou=Product Testing,dc=bitwarden,dc=com", + email: "GrandyB@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden,dc=com", + email: "RockleyK@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nonna Calkins,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nonna Calkins,ou=Product Development,dc=bitwarden,dc=com", + email: "CalkinsN@ca68c16297b44efe9bd231fcf1f835a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tchangid Cosner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tchangid Cosner,ou=Peons,dc=bitwarden,dc=com", + email: "CosnerT@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Happy Armstead,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Happy Armstead,ou=Human Resources,dc=bitwarden,dc=com", + email: "ArmsteaH@0ed116231128466cad659b85d73b9c7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siva Trader,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Siva Trader,ou=Management,dc=bitwarden,dc=com", + email: "TraderS@b838776a11e74718955f6601c7f8d1e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaragouD@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norton Hlady,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Norton Hlady,ou=Management,dc=bitwarden,dc=com", + email: "HladyN@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benita Brivet,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Benita Brivet,ou=Human Resources,dc=bitwarden,dc=com", + email: "BrivetB@e37545ccfd5e4e4281ccd855336fcf03.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ulrike Ta,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ulrike Ta,ou=Peons,dc=bitwarden,dc=com", + email: "TaU@e92792a71a1b4fd28678d03900079ed2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden,dc=com", + email: "RainsfoG@412210ae069c4a339c017fbe0c820674.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden,dc=com", + email: "VandenbP@52c9d88a3dde448a9626a726bccbd686.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jimmy Ramey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jimmy Ramey,ou=Management,dc=bitwarden,dc=com", + email: "RameyJ@98f223020f174b0b8eb03e442bd857ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Romano Teacher,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Romano Teacher,ou=Administrative,dc=bitwarden,dc=com", + email: "TeacherR@6a7ccf71870148fe8f9ac4d527b4d501.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Poppy Ong,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Poppy Ong,ou=Payroll,dc=bitwarden,dc=com", + email: "OngP@7f04a3ff8bcd4af8bad4e2a152862067.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden,dc=com", + email: "SadorraM@9a316795d99d40a2b8152947d5d04a37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden,dc=com", + email: "WitzmanY@5b79fe30a5de465185a631630aa2a024.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Takako Cambre,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Takako Cambre,ou=Product Development,dc=bitwarden,dc=com", + email: "CambreT@4cf289446e164bf8828133d117ff1a2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eachelle Etu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eachelle Etu,ou=Administrative,dc=bitwarden,dc=com", + email: "EtuE@53c3e76f124f49beb679b871a3ea5611.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merlina Eimer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Merlina Eimer,ou=Peons,dc=bitwarden,dc=com", + email: "EimerM@d0eb59d9416b478ea7e9e6add086d998.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden,dc=com", + email: "McNicolR@468705ba5f434f3295170aa6ba4375b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imelda Ornburn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Imelda Ornburn,ou=Management,dc=bitwarden,dc=com", + email: "OrnburnI@4aebcb98356f4866a9dbef1e58338e49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden,dc=com", + email: "BhattD@37f0f82dfcd246b8ad39145ec76d2b17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoatwriD@32d242671ec341929f315049a0e40a31.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elex Syal,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elex Syal,ou=Payroll,dc=bitwarden,dc=com", + email: "SyalE@c4aa09c164484f0594345b382eb1b6dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vern Rantala,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vern Rantala,ou=Administrative,dc=bitwarden,dc=com", + email: "RantalaV@8ec725a0b25640da9e4f5b4c8838762a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden,dc=com", + email: "RodriguD@5414557178404b8b850ea72aa60255e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarina Handley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sarina Handley,ou=Peons,dc=bitwarden,dc=com", + email: "HandleyS@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edward Meldrum,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Edward Meldrum,ou=Product Development,dc=bitwarden,dc=com", + email: "MeldrumE@42f6c709ced54560a282482057eafc53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margaretta Hord,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Margaretta Hord,ou=Payroll,dc=bitwarden,dc=com", + email: "HordM@310fefd008494b9e8a0a81aff3327a1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden,dc=com", + email: "ChaplinX@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calley Hvezda,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Calley Hvezda,ou=Administrative,dc=bitwarden,dc=com", + email: "HvezdaC@07d1afa381e34835a071c5951db2f646.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rodina Sumi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rodina Sumi,ou=Payroll,dc=bitwarden,dc=com", + email: "SumiR@54481fd28e0b44a9b20652a08b2dc61e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessa Harlan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jessa Harlan,ou=Payroll,dc=bitwarden,dc=com", + email: "HarlanJ@993e0c502fc14bcbb5cab23104ffdc41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Curt Tadge,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Curt Tadge,ou=Human Resources,dc=bitwarden,dc=com", + email: "TadgeC@1461dbc17b9c4f428daab775690e9506.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bertrand Spearpoint,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bertrand Spearpoint,ou=Management,dc=bitwarden,dc=com", + email: "SpearpoB@fdcc23b3e21f4f0fa3bffbc78ce6d7d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden,dc=com", + email: "GaskinsR@debbccc9cd9041e58d59a87945bc2243.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annabel Cadtools,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annabel Cadtools,ou=Administrative,dc=bitwarden,dc=com", + email: "CadtoolA@900720d62ed64510a7a9059255eb24bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden,dc=com", + email: "OsiakwaC@7b1ae059f10c4c999e0f2bc4fd98859f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanny Wayler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hanny Wayler,ou=Product Testing,dc=bitwarden,dc=com", + email: "WaylerH@a5a34b68dfa14ad7bc7271c070601714.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devi Cobran,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Devi Cobran,ou=Peons,dc=bitwarden,dc=com", + email: "CobranD@88c26c98102f460daa0c9c7911079e0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tian Sydnor,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tian Sydnor,ou=Janitorial,dc=bitwarden,dc=com", + email: "SydnorT@35d9476cb8424bdab8902ee7a92df819.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Remi Ladd,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Remi Ladd,ou=Product Development,dc=bitwarden,dc=com", + email: "LaddR@15697ed59de04051be420308b9e31bf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miles Bannan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Miles Bannan,ou=Product Development,dc=bitwarden,dc=com", + email: "BannanM@0b664dacb51949f5b5b39c9e47c7f6dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annnora Burchby,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Annnora Burchby,ou=Management,dc=bitwarden,dc=com", + email: "BurchbyA@8df37ece50134935a25e518004ace140.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariet Finzel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mariet Finzel,ou=Human Resources,dc=bitwarden,dc=com", + email: "FinzelM@273dfd92cd9f45d0aa9350f559239559.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden,dc=com", + email: "BoddeveM@77e93027bf924f589b18be848df73155.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozalie Kesler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rozalie Kesler,ou=Product Development,dc=bitwarden,dc=com", + email: "KeslerR@9e65511aabbb470e82559fb2b20a2924.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZenisekH@3dc397261aae4717a7ed87ae45b11795.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden,dc=com", + email: "GruszczS@d0510c6d4d2248279a5b0899ea306017.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jude Farmer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jude Farmer,ou=Peons,dc=bitwarden,dc=com", + email: "FarmerJ@d275905ea7174c8cab687a1c10573cba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mervin Grisoni,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mervin Grisoni,ou=Peons,dc=bitwarden,dc=com", + email: "GrisoniM@16e252f623154ea09c88ae20c619b8c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarath Beekman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sarath Beekman,ou=Payroll,dc=bitwarden,dc=com", + email: "BeekmanS@92160f75073741b5a487392a12009a3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anna Hepburn,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anna Hepburn,ou=Payroll,dc=bitwarden,dc=com", + email: "HepburnA@9a316795d99d40a2b8152947d5d04a37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden,dc=com", + email: "RecsnikS@39fcb29a69e44f47ac997e5c56603f1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bethany Passier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bethany Passier,ou=Human Resources,dc=bitwarden,dc=com", + email: "PassierB@9b511bf76a87427285e307ecdc0c4cb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Traci DuBerger,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Traci DuBerger,ou=Product Development,dc=bitwarden,dc=com", + email: "DuBergeT@4790190082cb4f5abacc6cccbd58144a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ceciley Kuan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ceciley Kuan,ou=Payroll,dc=bitwarden,dc=com", + email: "KuanC@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden,dc=com", + email: "HoequisT@cfb0243cd1fe4f70a9f0422d30776059.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krishan Stamps,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Krishan Stamps,ou=Product Development,dc=bitwarden,dc=com", + email: "StampsK@d2f384130fce4e7e8437086d4d7eb3d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colin Gibbins,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Colin Gibbins,ou=Human Resources,dc=bitwarden,dc=com", + email: "GibbinsC@47eb73ab21cc404d8ae8ada68387e955.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden,dc=com", + email: "WierzbaE@5c156ad08db54158952031cf3253ef2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Utpala Neault,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Utpala Neault,ou=Administrative,dc=bitwarden,dc=com", + email: "NeaultU@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chery Dickinson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chery Dickinson,ou=Peons,dc=bitwarden,dc=com", + email: "DickinsC@8b4252ea9d114f95b65956efe85c0aae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elwood Schmitz,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Elwood Schmitz,ou=Management,dc=bitwarden,dc=com", + email: "SchmitzE@80fa9db759cf45d8a9f0fb7fa92c1396.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trang Kang,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Trang Kang,ou=Janitorial,dc=bitwarden,dc=com", + email: "KangT@2e02b5adbe00404a986538a6f94c5721.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden,dc=com", + email: "TousignN@986fe4fcc1ec45dd9a8c35010d313412.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marylee Lowrie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marylee Lowrie,ou=Management,dc=bitwarden,dc=com", + email: "LowrieM@da86453f48a14ef39804047ecac0cb70.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donall Zlatin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Donall Zlatin,ou=Management,dc=bitwarden,dc=com", + email: "ZlatinD@ab961322c29b4801a8d49767c505d9e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dilip Willette,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dilip Willette,ou=Janitorial,dc=bitwarden,dc=com", + email: "WillettD@06a75fbf1c264fecab05cf3c4c5e8244.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gen Templeton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gen Templeton,ou=Payroll,dc=bitwarden,dc=com", + email: "TempletG@cc62ce54a4e64270838c00138d879780.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celinda Guttman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Celinda Guttman,ou=Product Testing,dc=bitwarden,dc=com", + email: "GuttmanC@8bb20197d5384c00b37949bce07069cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dede Lan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dede Lan,ou=Product Development,dc=bitwarden,dc=com", + email: "LanD@b2685c20be7244a2b29f08c6434ac903.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othella Toolset,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Othella Toolset,ou=Payroll,dc=bitwarden,dc=com", + email: "ToolsetO@2f13ca54ee794decad24515251a42dff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genovera Kusmider,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Genovera Kusmider,ou=Management,dc=bitwarden,dc=com", + email: "KusmideG@34d5ed1c9d7241bdb443981287a04354.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JoAnn Donohue,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=JoAnn Donohue,ou=Product Development,dc=bitwarden,dc=com", + email: "DonohueJ@2d00b4c5d94943aaab567276a570648e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eliezer Laing,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eliezer Laing,ou=Management,dc=bitwarden,dc=com", + email: "LaingE@4439537e23604aa9a13c7005cfec2ed7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hayley Rundstein,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hayley Rundstein,ou=Management,dc=bitwarden,dc=com", + email: "RundsteH@6e5501c4ee9c48b3adc252f44774d85a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden,dc=com", + email: "HindsK@edf26b21784c41bfaf957ea90f1b32bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daffi Chalker,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Daffi Chalker,ou=Payroll,dc=bitwarden,dc=com", + email: "ChalkerD@bf919e17e05f4868b7c226bdabccfd39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debee Hazelrig,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Debee Hazelrig,ou=Peons,dc=bitwarden,dc=com", + email: "HazelriD@91469109e9e74dbeada032db2abfd838.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden,dc=com", + email: "KasdorfE@3cd269b5d58f4f4392c1d0f7bebb70ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Warren Niu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Warren Niu,ou=Product Testing,dc=bitwarden,dc=com", + email: "NiuW@a71709f685af42718e5d72a70ff54dea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thuong Malkinson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Thuong Malkinson,ou=Administrative,dc=bitwarden,dc=com", + email: "MalkinsT@20d733e4c13941c7bc31419a4b4229c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Remi Denver,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Remi Denver,ou=Janitorial,dc=bitwarden,dc=com", + email: "DenverR@79479fbb7bd345d6b6aa08b455669b8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maritsa Keenan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maritsa Keenan,ou=Payroll,dc=bitwarden,dc=com", + email: "KeenanM@c37d3b12215747d99472a7fb366acdb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnath Linn,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Johnath Linn,ou=Product Testing,dc=bitwarden,dc=com", + email: "LinnJ@3bd36e687afb47ec92c7d0d49064bd14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joan Yousuf,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Joan Yousuf,ou=Payroll,dc=bitwarden,dc=com", + email: "YousufJ@d71f931e88694d74b88e32769af98e29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roscoe LePage,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Roscoe LePage,ou=Janitorial,dc=bitwarden,dc=com", + email: "LePageR@05860c650fd74a9da6c29ee5ab8fb098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Powell Tosczak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Powell Tosczak,ou=Human Resources,dc=bitwarden,dc=com", + email: "TosczakP@d221ea793fe54c61b6d0a123f7f92114.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charles Chatha,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Charles Chatha,ou=Management,dc=bitwarden,dc=com", + email: "ChathaC@a0cd6adce0a94b1fa4dd97607ada8ecc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden,dc=com", + email: "SherwinB@ab1580f3c871483c8482cf412bf044c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", + email: "NagenthA@b60aa937d01647ea80a3225aa7e4cdc5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchierbX@5b0a4ae806d141a2b61a40d9b397ed02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden,dc=com", + email: "RamirezA@130d7984e3224d79a3593bfbc13ee192.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tina Dadalt,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tina Dadalt,ou=Janitorial,dc=bitwarden,dc=com", + email: "DadaltT@70b6429752274e8fb78443facd8775cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sosanna Starnes,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sosanna Starnes,ou=Payroll,dc=bitwarden,dc=com", + email: "StarnesS@987beca3f52a49bd924ac83295cf5b4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilly Wasylyk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gilly Wasylyk,ou=Management,dc=bitwarden,dc=com", + email: "WasylykG@79d5277aef56406eb7a48c1a74d35976.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naser Cooksey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Naser Cooksey,ou=Product Development,dc=bitwarden,dc=com", + email: "CookseyN@bb2df33f538f4a84ae604317f6602688.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betta Parn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Betta Parn,ou=Management,dc=bitwarden,dc=com", + email: "ParnB@38dcec66f26c4456ab9d677c65296ef1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lon Sourour,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lon Sourour,ou=Human Resources,dc=bitwarden,dc=com", + email: "SourourL@4a2fd4a05dbb410fa7af8a1d24b5cd04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neetu Kromer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Neetu Kromer,ou=Payroll,dc=bitwarden,dc=com", + email: "KromerN@4a5d6761844a487688a8f353a67dc3a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lon Sells,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lon Sells,ou=Human Resources,dc=bitwarden,dc=com", + email: "SellsL@28fca843a5ae4175b7bbc20728951453.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shivdarsan Garry,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shivdarsan Garry,ou=Management,dc=bitwarden,dc=com", + email: "GarryS@474927d6f0584e7f9ec7edbb9c9a6503.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Co Reinhold,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Co Reinhold,ou=Human Resources,dc=bitwarden,dc=com", + email: "ReinholC@7d9cd1f5b4d645a6bff13b745f4db29e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inez Elks,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Inez Elks,ou=Human Resources,dc=bitwarden,dc=com", + email: "ElksI@fd2bad63f6454f51b13a625709ed0d80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden,dc=com", + email: "DaSilvaL@d45f6836f596476594ad223437a92901.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=John Senecal,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=John Senecal,ou=Payroll,dc=bitwarden,dc=com", + email: "SenecalJ@26e1dec8a04040fb9bea3b60a85c414d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeatherL@6ab6650181504c9b862cd99522e8d54f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marit Whatley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marit Whatley,ou=Payroll,dc=bitwarden,dc=com", + email: "WhatleyM@ca07554d305246dd85334089406d833c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sammie Datta,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sammie Datta,ou=Human Resources,dc=bitwarden,dc=com", + email: "DattaS@80031e1708f3413ea32c3a78e1027c0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden,dc=com", + email: "SatterfP@6616dd3e145e4e6a982af39cc5dff517.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clea Laing,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clea Laing,ou=Peons,dc=bitwarden,dc=com", + email: "LaingC@4cb31507770f4eb5b18d7d1eac84d8c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rex Pelletier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rex Pelletier,ou=Human Resources,dc=bitwarden,dc=com", + email: "PelletiR@7a7d0894c6494a99ba1054d717cb6514.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaby Dybenko,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gaby Dybenko,ou=Peons,dc=bitwarden,dc=com", + email: "DybenkoG@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden,dc=com", + email: "KinstleD@44cbc1ffc61f4407b46df0ad2810f7c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Velma Donahee,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Velma Donahee,ou=Product Testing,dc=bitwarden,dc=com", + email: "DonaheeV@49fad969a9cf4f7f9ee17b24c9d91f37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chawki Targosky,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chawki Targosky,ou=Product Testing,dc=bitwarden,dc=com", + email: "TargoskC@6166cdfc1e46480f804599bfc1632742.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clemente Boroski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clemente Boroski,ou=Peons,dc=bitwarden,dc=com", + email: "BoroskiC@c515863a84e8438aba0830f2adfe9717.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JinYun Vea,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=JinYun Vea,ou=Product Development,dc=bitwarden,dc=com", + email: "VeaJ@53ded4f1811e45138f20f4b0826a480a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dawn Pelland,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dawn Pelland,ou=Product Development,dc=bitwarden,dc=com", + email: "PellandD@c3e4fed0ee6543d6b658ce41386d4984.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden,dc=com", + email: "ShamshiN@fad13712be524b2bb53fd1f676c9976a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Snehal Benne,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Snehal Benne,ou=Human Resources,dc=bitwarden,dc=com", + email: "BenneS@34b4596fe27f4849b36cd75d1f4d495a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selma Sinasac,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Selma Sinasac,ou=Product Development,dc=bitwarden,dc=com", + email: "SinasacS@21bcf6a485b34cf591de5e2c4c73b2a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", + email: "HolcombV@7a909c99a62141c5a029d819c95f8966.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cindee Majid,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cindee Majid,ou=Payroll,dc=bitwarden,dc=com", + email: "MajidC@a83f5faad57246c68e39925cbe706599.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden,dc=com", + email: "MacElweA@30940250e8844da39fb713b6d19a3328.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden,dc=com", + email: "GeorgesW@c87e51ff3d124e2595c26b85c6dd84c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Croix Valiveti,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Croix Valiveti,ou=Human Resources,dc=bitwarden,dc=com", + email: "ValivetC@796636c316134f4ea242b8ffac574e0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jelene Watkins,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jelene Watkins,ou=Human Resources,dc=bitwarden,dc=com", + email: "WatkinsJ@d117baceef9a4168bde2647e78683a37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harriot Macklem,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Harriot Macklem,ou=Administrative,dc=bitwarden,dc=com", + email: "MacklemH@bd079bcc8df848e4ad40b50c80eb486f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Torey Kilzer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Torey Kilzer,ou=Product Testing,dc=bitwarden,dc=com", + email: "KilzerT@f75201d6bca8489ca55858f0848a1669.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilberta Howie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gilberta Howie,ou=Peons,dc=bitwarden,dc=com", + email: "HowieG@a6c2af5a8f94494bae6122c60dacfc6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrel Doerfel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Darrel Doerfel,ou=Payroll,dc=bitwarden,dc=com", + email: "DoerfelD@f638e931330c48d7ae5c0869dd725594.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden,dc=com", + email: "TorrealA@3ac90edfcfff46898d6b206ad200961d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phu Lukie,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Phu Lukie,ou=Product Testing,dc=bitwarden,dc=com", + email: "LukieP@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katja Teder,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Katja Teder,ou=Payroll,dc=bitwarden,dc=com", + email: "TederK@2adb967556814b64a4967092a73de947.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden,dc=com", + email: "CupidoS@092396cbb25f48afadfced942905695a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rina Talton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rina Talton,ou=Administrative,dc=bitwarden,dc=com", + email: "TaltonR@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nelleke Haley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nelleke Haley,ou=Administrative,dc=bitwarden,dc=com", + email: "HaleyN@1ab5e46ea4fb40b292686a380747c794.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shalna Yao,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shalna Yao,ou=Peons,dc=bitwarden,dc=com", + email: "YaoS@652dfd4ca6554eef8a080dba766c7206.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karmen Wever,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Karmen Wever,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeverK@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden,dc=com", + email: "KhatibA@3400488b7a3349e39ce7a604277f42e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Udaya Magnuson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Udaya Magnuson,ou=Payroll,dc=bitwarden,dc=com", + email: "MagnusoU@c72f77d8df544dfda8a24066a5992ad2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tory Racz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tory Racz,ou=Payroll,dc=bitwarden,dc=com", + email: "RaczT@e48e3f4a8e5644a2a44442f4e1916d3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danika Jamaly,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Danika Jamaly,ou=Payroll,dc=bitwarden,dc=com", + email: "JamalyD@995d47539bff49b8a85a5ecb474bd257.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loc McElligott,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Loc McElligott,ou=Product Development,dc=bitwarden,dc=com", + email: "McElligL@0e51e4ac4ff5492f891ae127459e83ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryanne Herr,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maryanne Herr,ou=Janitorial,dc=bitwarden,dc=com", + email: "HerrM@6c99b676cc944a0f933ecc8837dfc70b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norrie Vanwychen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Norrie Vanwychen,ou=Peons,dc=bitwarden,dc=com", + email: "VanwychN@cf312555e24a4a5fa558a25238d5f8c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Babette Hammond,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Babette Hammond,ou=Product Testing,dc=bitwarden,dc=com", + email: "HammondB@8289a29e96624f61a290ca3e806f9dd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dae Malloy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dae Malloy,ou=Peons,dc=bitwarden,dc=com", + email: "MalloyD@15a45d459da54368b0fd6d1cb3b6eb6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Demi Uyar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Demi Uyar,ou=Peons,dc=bitwarden,dc=com", + email: "UyarD@31b13d20c58546e5aa89cbb19323b703.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drago Wooley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Drago Wooley,ou=Payroll,dc=bitwarden,dc=com", + email: "WooleyD@b9938495171f4052b273ff15a3fbbcac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lira Akhtar,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lira Akhtar,ou=Human Resources,dc=bitwarden,dc=com", + email: "AkhtarL@dbc00763a9de485c97697558ab9ccf2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden,dc=com", + email: "MetzgerG@4ec057135a5045f1a9989fae44b8b962.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blair Costen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Blair Costen,ou=Payroll,dc=bitwarden,dc=com", + email: "CostenB@2ebbe6ccc158418ea03a56b7dd20f4d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celinka Truong,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Celinka Truong,ou=Management,dc=bitwarden,dc=com", + email: "TruongC@a3e17557b4384961a999c1890d509b79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olympe Wyndham,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Olympe Wyndham,ou=Payroll,dc=bitwarden,dc=com", + email: "WyndhamO@4cb9f71c0f8f42fdadb28a744475bd83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emp Slyteris,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Emp Slyteris,ou=Management,dc=bitwarden,dc=com", + email: "SlyteriE@60140563b5e14f1182bbd54a9d0efa93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brien Ensign,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brien Ensign,ou=Management,dc=bitwarden,dc=com", + email: "EnsignB@6f20d79c56464dde992ea2750d47121a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolas Whetston,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nicolas Whetston,ou=Management,dc=bitwarden,dc=com", + email: "WhetstoN@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annalise Combaz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Annalise Combaz,ou=Payroll,dc=bitwarden,dc=com", + email: "CombazA@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jiri Clary,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jiri Clary,ou=Janitorial,dc=bitwarden,dc=com", + email: "ClaryJ@7a051cc2e7634983a3582a71a4e80384.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emelia Farag,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emelia Farag,ou=Product Development,dc=bitwarden,dc=com", + email: "FaragE@b03911e4f64b4ff791e7c32a300a48fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cang Calva,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cang Calva,ou=Payroll,dc=bitwarden,dc=com", + email: "CalvaC@fab69171647048c9ab39ecbf968a6353.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden,dc=com", + email: "WeidingA@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanjeev Tates,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sanjeev Tates,ou=Management,dc=bitwarden,dc=com", + email: "TatesS@b4ae1434dbd74e3f9fda915972e536aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lindsey Mina,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lindsey Mina,ou=Human Resources,dc=bitwarden,dc=com", + email: "MinaL@c8c34efeb3fd47f485bda2d57f298fa8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden,dc=com", + email: "BagshawA@2d496c580b4f4816a656973b9003a612.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yueh Gowl,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yueh Gowl,ou=Janitorial,dc=bitwarden,dc=com", + email: "GowlY@68d52d672a5243b093d527c822a00702.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden,dc=com", + email: "MacquisT@1bd24daedf304f73b8c022eec1639654.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=America Ballarte,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=America Ballarte,ou=Administrative,dc=bitwarden,dc=com", + email: "BallartA@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden,dc=com", + email: "DesjarlU@2daa2d54a3ef4729ab85003e87e24fc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Student Center,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Student Center,ou=Product Testing,dc=bitwarden,dc=com", + email: "CenterS@554afdc240874cc085face3f95650c9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jillana Cusick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jillana Cusick,ou=Product Testing,dc=bitwarden,dc=com", + email: "CusickJ@5464c7892e2c49b9ab8b77fcfa248401.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden,dc=com", + email: "MattonC@4ffdbcbdfbba4f78b2cb0e4b52273909.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edmund Caine,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Edmund Caine,ou=Janitorial,dc=bitwarden,dc=com", + email: "CaineE@1fa19cc59b0a4b048ab223f06dc01275.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden,dc=com", + email: "KetslerE@df756e7ca37d42aaab0cfecdbe1dbcdc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden,dc=com", + email: "RajcziL@a7efbad4dbbd458699231bf651e29d1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden,dc=com", + email: "DosanjhF@c2b132c5eea24821b75062bcddc065ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faith Langenberg,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Faith Langenberg,ou=Product Development,dc=bitwarden,dc=com", + email: "LangenbF@25309a8b2a9a4469a8c716ccd88d0aa6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gussi Zisu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gussi Zisu,ou=Product Development,dc=bitwarden,dc=com", + email: "ZisuG@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Enrica Scss,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Enrica Scss,ou=Human Resources,dc=bitwarden,dc=com", + email: "ScssE@8dadc7ef65624c618ad03f0f74792b58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franklin Mahlig,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Franklin Mahlig,ou=Payroll,dc=bitwarden,dc=com", + email: "MahligF@fa39eb6119174bbca1d9160100211484.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hazem Doerksen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hazem Doerksen,ou=Management,dc=bitwarden,dc=com", + email: "DoerkseH@0c71a55b89b94698aa504239bb77212e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabra Williams,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sabra Williams,ou=Payroll,dc=bitwarden,dc=com", + email: "WilliamS@dbff573db07a4ff3be645ffc89fde555.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Des Terrell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Des Terrell,ou=Product Testing,dc=bitwarden,dc=com", + email: "TerrellD@9bfb2ce2091b4362a561113661f40d4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolene Casey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jolene Casey,ou=Product Development,dc=bitwarden,dc=com", + email: "CaseyJ@9b70e886a18d422fa3404374b5a9613c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karilynn Dekeyser,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karilynn Dekeyser,ou=Management,dc=bitwarden,dc=com", + email: "DekeyseK@87ac1189e97646f890363efe4db63ec0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaal Gach,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gaal Gach,ou=Product Testing,dc=bitwarden,dc=com", + email: "GachG@f3c670844ee04d96918bc7abde299f48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden,dc=com", + email: "BianchiS@52d447bfc2464a51a20925b35098fffa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emory Davalo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Emory Davalo,ou=Management,dc=bitwarden,dc=com", + email: "DavaloE@38889c54d4b943c0b9fc26641a496258.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leia Boccali,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leia Boccali,ou=Management,dc=bitwarden,dc=com", + email: "BoccaliL@c322231add6444d08c5c332c0290fe75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hollie Redding,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hollie Redding,ou=Payroll,dc=bitwarden,dc=com", + email: "ReddingH@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurita Hewett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maurita Hewett,ou=Human Resources,dc=bitwarden,dc=com", + email: "HewettM@3b31b1e22b674d48829733c162895a88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alberta Popel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Alberta Popel,ou=Product Testing,dc=bitwarden,dc=com", + email: "PopelA@4d42e606140043c2b9dd8fa49a74f077.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden,dc=com", + email: "IribarrL@3e32ccd0c8a847b6ac8fb9c09f485fe3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Warden Norgaard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Warden Norgaard,ou=Human Resources,dc=bitwarden,dc=com", + email: "NorgaarW@56a9fc98293a421ebffe47b36941f797.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden,dc=com", + email: "SchwabC@1aebb083de1f400e95541f63da23f2c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephine Este,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Stephine Este,ou=Janitorial,dc=bitwarden,dc=com", + email: "EsteS@cdc522ed20cd44a189467c4e7a11e69b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden,dc=com", + email: "HunsberJ@158d3f3fe926431185097653519b63f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allx Vezeau,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Allx Vezeau,ou=Product Development,dc=bitwarden,dc=com", + email: "VezeauA@85300bcc110a498eb3ba9f0540413134.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden,dc=com", + email: "TattenbK@9beb3a1b2fdf4217931814a85ad3b3c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hattie Offers,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hattie Offers,ou=Human Resources,dc=bitwarden,dc=com", + email: "OffersH@0db8d6bb53fc45408829aecc391083c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Priti Stowe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Priti Stowe,ou=Product Testing,dc=bitwarden,dc=com", + email: "StoweP@22b03905699c4e05b21e937a3135b87c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden,dc=com", + email: "SawchukA@5d8cc64a505e4795adb2db74fb44a1cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilly Lienemann,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tilly Lienemann,ou=Product Development,dc=bitwarden,dc=com", + email: "LienemaT@2701f21728624e23b32e7e4a717079a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constantina Totaro,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Constantina Totaro,ou=Product Development,dc=bitwarden,dc=com", + email: "TotaroC@021252a973814ed5ba107ac123b1e8a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bendite Basser,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bendite Basser,ou=Management,dc=bitwarden,dc=com", + email: "BasserB@d3b588680db34a60a238a39048e01e24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trish Ettridge,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Trish Ettridge,ou=Product Testing,dc=bitwarden,dc=com", + email: "EttridgT@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leola Musca,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Leola Musca,ou=Peons,dc=bitwarden,dc=com", + email: "MuscaL@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oral Priestley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Oral Priestley,ou=Peons,dc=bitwarden,dc=com", + email: "PriestlO@d2ecbc224647418fad2b4f9f972875ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yonik Yurach,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Yonik Yurach,ou=Product Testing,dc=bitwarden,dc=com", + email: "YurachY@91c2f03d5f5f46289c8711d8060fde6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hudai Weare,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hudai Weare,ou=Peons,dc=bitwarden,dc=com", + email: "WeareH@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miguela Brodersen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Miguela Brodersen,ou=Product Development,dc=bitwarden,dc=com", + email: "BrodersM@6a78994653434b4c8f51f05c394987d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sohale Suomela,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sohale Suomela,ou=Product Testing,dc=bitwarden,dc=com", + email: "SuomelaS@67c03444c05a42a3b6969db268f587ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden,dc=com", + email: "BeckhamV@5dfbfc6402474d4a84deb330c0f4315f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yonik Murison,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Yonik Murison,ou=Management,dc=bitwarden,dc=com", + email: "MurisonY@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delora Grund,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Delora Grund,ou=Payroll,dc=bitwarden,dc=com", + email: "GrundD@cf4fe07ebe1a44aab01df6b77e2a6602.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mietek Humes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mietek Humes,ou=Human Resources,dc=bitwarden,dc=com", + email: "HumesM@10d775dcf33f4a8a85529178af9b9387.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lili Cozzi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lili Cozzi,ou=Peons,dc=bitwarden,dc=com", + email: "CozziL@aabaf1b2cc7f4426bf4762a10375cf8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mil Badmington,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mil Badmington,ou=Administrative,dc=bitwarden,dc=com", + email: "BadmingM@38d6239d446040c7892f72bde901e5dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kittie Chapman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kittie Chapman,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChapmanK@a6ec4676b0ad44f28916d133e3a83b4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Las Bongers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Las Bongers,ou=Payroll,dc=bitwarden,dc=com", + email: "BongersL@fa6c45f2cf394efe80e833f5a6b3151c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramez Beisel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ramez Beisel,ou=Administrative,dc=bitwarden,dc=com", + email: "BeiselR@6ecbd725f2a04ad095c3bc8afaa5366e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden,dc=com", + email: "BurnsL@060ddcf2c5744483943863ab0571b0e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerladina Miello,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gerladina Miello,ou=Human Resources,dc=bitwarden,dc=com", + email: "MielloG@2347921fc32f42b59e1beb7c60e45e2c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hernan Aversa,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hernan Aversa,ou=Human Resources,dc=bitwarden,dc=com", + email: "AversaH@fac57f1f10364a88aa5ab37aeecbc8a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozanne Botting,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rozanne Botting,ou=Product Testing,dc=bitwarden,dc=com", + email: "BottingR@22cb224a80984684b19d5e903a9e8f92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", + email: "PietropE@5fcb291282204187a9874bd0f7e51920.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amandy Ganness,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Amandy Ganness,ou=Janitorial,dc=bitwarden,dc=com", + email: "GannessA@0896302a59e8422abf0d271687a03fd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden,dc=com", + email: "LorencJ@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lisabeth Joll,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lisabeth Joll,ou=Administrative,dc=bitwarden,dc=com", + email: "JollL@a214e2b7ea354ade82afd96303921437.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hillary Pintado,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hillary Pintado,ou=Janitorial,dc=bitwarden,dc=com", + email: "PintadoH@9c3ffda5676446e88677016f51b0aafc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nadean Fiorile,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nadean Fiorile,ou=Management,dc=bitwarden,dc=com", + email: "FiorileN@67e1d92e08fe4a64be64c20e9ec9029c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sohayla Ip,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sohayla Ip,ou=Product Development,dc=bitwarden,dc=com", + email: "IpS@6f419933f74e4397b4bf8d2ab48fbfaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashley Seagle,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ashley Seagle,ou=Payroll,dc=bitwarden,dc=com", + email: "SeagleA@404a4cf774b84260ad9c4cf63634551c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christoph Dwyer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Christoph Dwyer,ou=Product Development,dc=bitwarden,dc=com", + email: "DwyerC@4cf65bbff1914896934f97301ec7a0ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minnesota Reich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Minnesota Reich,ou=Product Testing,dc=bitwarden,dc=com", + email: "ReichM@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden,dc=com", + email: "NiebudeR@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marilyn Godden,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marilyn Godden,ou=Product Development,dc=bitwarden,dc=com", + email: "GoddenM@80ad4e27922841e2b293619d8459a898.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weiping Choynowska,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Weiping Choynowska,ou=Management,dc=bitwarden,dc=com", + email: "ChoynowW@7fc160edec22498a9b7f16af82b6aca4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlen Pelz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Karlen Pelz,ou=Payroll,dc=bitwarden,dc=com", + email: "PelzK@7c3132e0c4a84c2d8ff786513bcac2d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mela Speers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mela Speers,ou=Payroll,dc=bitwarden,dc=com", + email: "SpeersM@3f93f60a8e804d55a6647c56c6c05eab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PierreHenri Oates,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=PierreHenri Oates,ou=Payroll,dc=bitwarden,dc=com", + email: "OatesP@234baafa6151436c9e90b2aa2617a7d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramon Metcalfe,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ramon Metcalfe,ou=Management,dc=bitwarden,dc=com", + email: "MetcalfR@5e4e7d75e05b48bd8f2b694051e48b65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Domeniga Purohit,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Domeniga Purohit,ou=Management,dc=bitwarden,dc=com", + email: "PurohitD@8581b4e4b4314f35bf0c5b0b1ae9f14c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Goldy Locke,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Goldy Locke,ou=Janitorial,dc=bitwarden,dc=com", + email: "LockeG@6de130a8139a479abd748cccf12fccd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PakJong Braginetz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=PakJong Braginetz,ou=Payroll,dc=bitwarden,dc=com", + email: "BragineP@4c89cecd93aa4a6b8c3d033b43c13b92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilde Miotla,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hilde Miotla,ou=Janitorial,dc=bitwarden,dc=com", + email: "MiotlaH@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ning Spitzer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ning Spitzer,ou=Peons,dc=bitwarden,dc=com", + email: "SpitzerN@a14bb54592f8410c82402fefd034b4c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marylee Eberle,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marylee Eberle,ou=Product Testing,dc=bitwarden,dc=com", + email: "EberleM@0a1d0b108c684b97b7244cb6b1664626.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChernetK@304e0df786624e098a2c5b1fb73a0e52.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shalne Monfre,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shalne Monfre,ou=Product Testing,dc=bitwarden,dc=com", + email: "MonfreS@0477f7500cad42ceb4af441ae4e4ca2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sammie Wickie,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sammie Wickie,ou=Administrative,dc=bitwarden,dc=com", + email: "WickieS@a3e3d4a60d05428db3e529e7a841183c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teresita Vonderscher,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Teresita Vonderscher,ou=Peons,dc=bitwarden,dc=com", + email: "VondersT@c42c43aebed74617b6cc598e2b876357.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Derek Boase,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Derek Boase,ou=Product Testing,dc=bitwarden,dc=com", + email: "BoaseD@61d65279aba845aea76d91065d514e1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ehi Sova,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ehi Sova,ou=Payroll,dc=bitwarden,dc=com", + email: "SovaE@3b01400372a04ac682bfb36ab66341f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzette Chaddha,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Suzette Chaddha,ou=Payroll,dc=bitwarden,dc=com", + email: "ChaddhaS@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lennart Delong,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lennart Delong,ou=Administrative,dc=bitwarden,dc=com", + email: "DelongL@6753274bb619418096cac60a846c2af8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden,dc=com", + email: "AlfaroA@a75c11902ec34e1fa257326b84b40638.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diann Glast,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Diann Glast,ou=Product Development,dc=bitwarden,dc=com", + email: "GlastD@8be20a5f8fec49b3a3d2cf11b1d5489b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffanie Beehler,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tiffanie Beehler,ou=Peons,dc=bitwarden,dc=com", + email: "BeehlerT@c08c80f3c69d4d04b025dc038c8f6045.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leny Teague,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leny Teague,ou=Administrative,dc=bitwarden,dc=com", + email: "TeagueL@e5d9cd8563784493b06bdd8fd1d46cd9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trever Casson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Trever Casson,ou=Product Testing,dc=bitwarden,dc=com", + email: "CassonT@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chester Greene,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chester Greene,ou=Peons,dc=bitwarden,dc=com", + email: "GreeneC@9955c860a52142e48ed59c06efdb5d52.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celine Vey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Celine Vey,ou=Product Development,dc=bitwarden,dc=com", + email: "VeyC@20f59cdd83ae48b3816d0ba42aaa0a71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pinder Leonida,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pinder Leonida,ou=Product Testing,dc=bitwarden,dc=com", + email: "LeonidaP@4fe51546324e43adb896246907c2c135.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beryl Lalonde,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beryl Lalonde,ou=Administrative,dc=bitwarden,dc=com", + email: "LalondeB@222fec44e9c646688683c89bb36f7404.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cicely Ivers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cicely Ivers,ou=Management,dc=bitwarden,dc=com", + email: "IversC@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorinda Kenworthy,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lorinda Kenworthy,ou=Management,dc=bitwarden,dc=com", + email: "KenwortL@a6318282a95143ad9eb6eec2fd89dea7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden,dc=com", + email: "LaPierrK@290f3bf5609346169561a1cf35572b57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Demetre Obrecht,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Demetre Obrecht,ou=Administrative,dc=bitwarden,dc=com", + email: "ObrechtD@33417574ff5641239d149c2ac49c5525.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden,dc=com", + email: "UrbanowS@7f8cf4c32d334ebd9fa48fd60fc5a429.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrooksbH@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheryl Nemec,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sheryl Nemec,ou=Payroll,dc=bitwarden,dc=com", + email: "NemecS@9bb568342a7843e597240cebd0fa3324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Freya Reich,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Freya Reich,ou=Management,dc=bitwarden,dc=com", + email: "ReichF@c1717c5f197c4d3987c6204634e4161c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willyt Kresl,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Willyt Kresl,ou=Peons,dc=bitwarden,dc=com", + email: "KreslW@566f91b3e6ce4bad9c7f92243d29e023.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nenad Kilner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nenad Kilner,ou=Peons,dc=bitwarden,dc=com", + email: "KilnerN@f52a2af58c834348a94fa371e71ee488.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden,dc=com", + email: "TranfagR@092ab78908d446088e98cb12c4153688.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nakina Brittain,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nakina Brittain,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrittaiN@f291666dbe1942f9939c126ee15d9886.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joyous Nunn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Joyous Nunn,ou=Product Development,dc=bitwarden,dc=com", + email: "NunnJ@ad2fbe502361499c9d06dcdb8e2109ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden,dc=com", + email: "LaheyD@5eabae8e0a894e598a102f3cdf87fde5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hugo Tarsky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hugo Tarsky,ou=Administrative,dc=bitwarden,dc=com", + email: "TarskyH@90516b7a68e546109049725db5fc6bce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davida Starnes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Davida Starnes,ou=Human Resources,dc=bitwarden,dc=com", + email: "StarnesD@54a3e88e10d6420bafc84d4c62e2aba4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heping Id,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Heping Id,ou=Management,dc=bitwarden,dc=com", + email: "IdH@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nill Ferreira,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nill Ferreira,ou=Administrative,dc=bitwarden,dc=com", + email: "FerreirN@1c27d636b4be486693c87693cde976e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden,dc=com", + email: "KieckseN@4ca2ac902d4749ad8038d002b39cb95c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden,dc=com", + email: "VanderhV@80c82ffaa49a474d9be83438195b45a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amabel DAngelo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amabel DAngelo,ou=Management,dc=bitwarden,dc=com", + email: "DAngeloA@427f0c8a6c7f4931b9f522617221c48a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brad Scarffe,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brad Scarffe,ou=Management,dc=bitwarden,dc=com", + email: "ScarffeB@0708ead8d9da4345b639ad91b17701b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elfie Florescu,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elfie Florescu,ou=Peons,dc=bitwarden,dc=com", + email: "FlorescE@9480e1acabd5425d80a15e6c019880fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nayan Caffrey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nayan Caffrey,ou=Product Development,dc=bitwarden,dc=com", + email: "CaffreyN@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deonne Ripa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Deonne Ripa,ou=Payroll,dc=bitwarden,dc=com", + email: "RipaD@bcf6de0b8d2c44a68286d08f9d47b1f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mehdi Mainville,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mehdi Mainville,ou=Peons,dc=bitwarden,dc=com", + email: "MainvilM@7101039e23634506b2da2b1c92ecb4cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jade Yumurtaci,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jade Yumurtaci,ou=Peons,dc=bitwarden,dc=com", + email: "YumurtaJ@9d5ea794acf845deab8b5f3d0cc82f3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden,dc=com", + email: "SehmbeyT@d753979fad154486ac459615561fae04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden,dc=com", + email: "CaprettK@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fey Bilton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fey Bilton,ou=Janitorial,dc=bitwarden,dc=com", + email: "BiltonF@f8c8362f349f4cd990f16a4512cb6987.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isoft Manwaring,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Isoft Manwaring,ou=Peons,dc=bitwarden,dc=com", + email: "ManwariI@21c0df4a152641a4b289e46be985993f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Addia RossRoss,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Addia RossRoss,ou=Janitorial,dc=bitwarden,dc=com", + email: "RossRosA@21676ccf48234584998e9b1b9517cc74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adoree Debord,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Adoree Debord,ou=Payroll,dc=bitwarden,dc=com", + email: "DebordA@fecfcf752c6e4027af9fd19570ebc44a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tesa Coordinator,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tesa Coordinator,ou=Product Development,dc=bitwarden,dc=com", + email: "CoordinT@99a51e3de4824b82894f80e7490fdc98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crissie Beausejour,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Crissie Beausejour,ou=Peons,dc=bitwarden,dc=com", + email: "BeausejC@9e9653057e724f3ba3cf01f171b09f12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hojjat Nahata,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hojjat Nahata,ou=Peons,dc=bitwarden,dc=com", + email: "NahataH@4c99f016701f421ea6d699e1dff81e68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julina Sy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Julina Sy,ou=Administrative,dc=bitwarden,dc=com", + email: "SyJ@9a5bdc9a34e041db8cf5f51cd958707f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kendre Lotochinski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kendre Lotochinski,ou=Management,dc=bitwarden,dc=com", + email: "LotochiK@37238c283bde45368b4da8be7c9deb4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yih NadeauDostie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Yih NadeauDostie,ou=Management,dc=bitwarden,dc=com", + email: "NadeauDY@c168d422280e4cbfb755415d15add934.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glynnis Neisius,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Glynnis Neisius,ou=Peons,dc=bitwarden,dc=com", + email: "NeisiusG@3ecc1d20e4e1450b8a8fad63f512c730.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sono Orsini,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sono Orsini,ou=Peons,dc=bitwarden,dc=com", + email: "OrsiniS@7cfc34ac6f4c4e1aba837c354ef5b514.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devon Romberg,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Devon Romberg,ou=Product Development,dc=bitwarden,dc=com", + email: "RombergD@ca18540933614ae79f2aa564295e8db4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorne Agily,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lorne Agily,ou=Management,dc=bitwarden,dc=com", + email: "AgilyL@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henka Colford,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Henka Colford,ou=Administrative,dc=bitwarden,dc=com", + email: "ColfordH@c63acc13c8a740e8a43edd8fb66a56ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden,dc=com", + email: "PashminD@04bb8c62899b41dd85b281860ec060e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niek Bocklage,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Niek Bocklage,ou=Payroll,dc=bitwarden,dc=com", + email: "BocklagN@0a49f322d17b42a58985fe2e05d0dafb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gill Castillo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gill Castillo,ou=Peons,dc=bitwarden,dc=com", + email: "CastillG@b415261c1aeb4713828c9aaaebea46d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden,dc=com", + email: "TonkoviA@c2853faa5a5c4802a03043c5ee120c0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden,dc=com", + email: "GoridkoV@47a7a80ec8774325ad24930467e7f72e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cary Thumm,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cary Thumm,ou=Payroll,dc=bitwarden,dc=com", + email: "ThummC@73c98e62bd724f62ba84304041b99a67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rod Eisenach,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rod Eisenach,ou=Payroll,dc=bitwarden,dc=com", + email: "EisenacR@c77e1b04604d4d1f96b1471fffc2169c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Axel McAdams,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Axel McAdams,ou=Product Testing,dc=bitwarden,dc=com", + email: "McAdamsA@223017ad635c4766a831c086905608fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amara Lagarde,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amara Lagarde,ou=Management,dc=bitwarden,dc=com", + email: "LagardeA@28a93f8db65e4c7896a7639f8d2d6945.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerianne Deluca,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gerianne Deluca,ou=Peons,dc=bitwarden,dc=com", + email: "DelucaG@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mick Barreyre,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mick Barreyre,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarreyrM@edf7b6e6765c4b9395ab808390477139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Netta Hartin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Netta Hartin,ou=Peons,dc=bitwarden,dc=com", + email: "HartinN@9eaee5a095454441a8ff73a3e26fa008.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden,dc=com", + email: "ArmentrM@e99ccdd4f1854e85b7018db9ee827387.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juli Chen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Juli Chen,ou=Administrative,dc=bitwarden,dc=com", + email: "ChenJ@6da792b22a5f46b49ab2efdbe92519ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cubical Quintana,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cubical Quintana,ou=Administrative,dc=bitwarden,dc=com", + email: "QuintanC@008f04f6a73e47758da81bbf288d81a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liping Acton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Liping Acton,ou=Human Resources,dc=bitwarden,dc=com", + email: "ActonL@d9cdfd88a6ba482380cbec226ee4ccee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorry Suprick,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lorry Suprick,ou=Administrative,dc=bitwarden,dc=com", + email: "SuprickL@872334f15d354ef8b48f04612937d290.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mattie Astorino,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mattie Astorino,ou=Administrative,dc=bitwarden,dc=com", + email: "AstorinM@103b717daeeb42b79fd5e26fd213a7db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden,dc=com", + email: "MooderJ@982a9dc04ec64d818da9977446a91014.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzanne Guatto,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Suzanne Guatto,ou=Management,dc=bitwarden,dc=com", + email: "GuattoS@677b24267b6440e9ad6bebb082604f25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norton Sapena,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Norton Sapena,ou=Product Testing,dc=bitwarden,dc=com", + email: "SapenaN@07f011cc742c4813b7b97485646c3ab6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tsugio Behlen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tsugio Behlen,ou=Administrative,dc=bitwarden,dc=com", + email: "BehlenT@c2594ac246a645e3be48149271f5e260.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pammy Liu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pammy Liu,ou=Janitorial,dc=bitwarden,dc=com", + email: "LiuP@81f849946be048ecbaea85d2b139bc46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deeyn Frie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Deeyn Frie,ou=Peons,dc=bitwarden,dc=com", + email: "FrieD@4a53c85fc87e459ba535fa5859abd60b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dael Valliere,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dael Valliere,ou=Management,dc=bitwarden,dc=com", + email: "VallierD@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden,dc=com", + email: "LamedicD@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranna Gentes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ranna Gentes,ou=Peons,dc=bitwarden,dc=com", + email: "GentesR@961e076dc422493d887f975af917cc23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khue Trivedi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Khue Trivedi,ou=Administrative,dc=bitwarden,dc=com", + email: "TrivediK@4a5ee2294ea24b569a9468db2ebe9276.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YuKai Holloway,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=YuKai Holloway,ou=Janitorial,dc=bitwarden,dc=com", + email: "HollowaY@6bcd45269b3d4381b2e2ca25c28340c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mrugesh Gaskins,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mrugesh Gaskins,ou=Management,dc=bitwarden,dc=com", + email: "GaskinsM@417f3d03cdca4d2982386320914aed0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belle Kilner,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Belle Kilner,ou=Management,dc=bitwarden,dc=com", + email: "KilnerB@f5efd1e9a39c413dbfa9f7e476ae7cea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sieber Binnington,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sieber Binnington,ou=Product Development,dc=bitwarden,dc=com", + email: "BinningS@fed31b4a5e88497aacdfa11612ae4f8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nananne Bahl,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nananne Bahl,ou=Administrative,dc=bitwarden,dc=com", + email: "BahlN@52d447bfc2464a51a20925b35098fffa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden,dc=com", + email: "DuncanSE@f260a92a20974e44926d8337feae7384.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selia Demers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Selia Demers,ou=Management,dc=bitwarden,dc=com", + email: "DemersS@351deec9477e4e51877822ae4f8cd070.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karl Deployment,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Karl Deployment,ou=Payroll,dc=bitwarden,dc=com", + email: "DeploymK@9c29c026596043feb2dca741308aa831.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", + email: "WolczanL@8bb7a419aa064dabb3a5664772478164.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolene Eicher,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jolene Eicher,ou=Product Testing,dc=bitwarden,dc=com", + email: "EicherJ@1502db7fbe534bb781d285fc7f854a26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merridie Partello,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Merridie Partello,ou=Payroll,dc=bitwarden,dc=com", + email: "PartellM@4b0cd35c3d8442a69514b96d040ad360.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tae Hughson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tae Hughson,ou=Janitorial,dc=bitwarden,dc=com", + email: "HughsonT@dd41899c65d54e2a93ab78ead0e2ad6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobbye Cech,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bobbye Cech,ou=Administrative,dc=bitwarden,dc=com", + email: "CechB@fc31450cfbdf4f968a1e2c143050e9ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden,dc=com", + email: "NilssonT@7961400fc48646dcae2a3636e26ff106.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drucy Serour,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Drucy Serour,ou=Payroll,dc=bitwarden,dc=com", + email: "SerourD@2f4fde2fad2147578d67cd017f823be6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden,dc=com", + email: "GerlinsA@7341939506294cf3bdd4bdeca7674074.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elnore Alvaro,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Elnore Alvaro,ou=Management,dc=bitwarden,dc=com", + email: "AlvaroE@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Briney Emery,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Briney Emery,ou=Human Resources,dc=bitwarden,dc=com", + email: "EmeryB@99d73507cedb4612b4870c40410d79f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden,dc=com", + email: "GandhiY@001f8a7cac5e4e5289e4b851c2ff301c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dawn Shubaly,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dawn Shubaly,ou=Administrative,dc=bitwarden,dc=com", + email: "ShubalyD@8fb9d9d0bee6452fa8938ef7b2ecd6d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leny Redway,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Leny Redway,ou=Janitorial,dc=bitwarden,dc=com", + email: "RedwayL@95fa7f3851674364944296f3d3c2378d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Augusto Mather,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Augusto Mather,ou=Product Development,dc=bitwarden,dc=com", + email: "MatherA@ab120df6e5194bf6ac6a830bba26f7f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden,dc=com", + email: "OHaganI@ae98974593454858b3cb78d7db1b60ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Biplab Natale,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Biplab Natale,ou=Janitorial,dc=bitwarden,dc=com", + email: "NataleB@848af8a22f514cf2b666369164b5e04f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninon Coffey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ninon Coffey,ou=Peons,dc=bitwarden,dc=com", + email: "CoffeyN@fc0265cf65f44283987530dbcb25d095.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden,dc=com", + email: "GerritsM@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden,dc=com", + email: "WalkowiJ@c422d301a0d34f1090b55f1c8625409d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden,dc=com", + email: "JauvinR@dc389f3c42ad495288e841e30bcf37cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nando Masterplan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nando Masterplan,ou=Peons,dc=bitwarden,dc=com", + email: "MasterpN@7b57b8e19b5b443b99958998ffeb1b88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farouk Closson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Farouk Closson,ou=Janitorial,dc=bitwarden,dc=com", + email: "ClossonF@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacob Andress,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jacob Andress,ou=Janitorial,dc=bitwarden,dc=com", + email: "AndressJ@3714ef07d9f24410a85dd847beb54eef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden,dc=com", + email: "PavloviT@8eab0f58e984423689a3d31e38a978a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fikre Mau,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fikre Mau,ou=Product Testing,dc=bitwarden,dc=com", + email: "MauF@1338f84446e746bcb89eff436fef936e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zan StPierre,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zan StPierre,ou=Janitorial,dc=bitwarden,dc=com", + email: "StPierrZ@92fe5cbd6cdf40f6b7c15b840696af7e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michigan Callaghan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Michigan Callaghan,ou=Peons,dc=bitwarden,dc=com", + email: "CallaghM@c60b8ebb120748e9aeaff4e4a09ef9ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vesna Suharly,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vesna Suharly,ou=Product Testing,dc=bitwarden,dc=com", + email: "SuharlyV@3d0b74ed23c14257ade0d3e35d022c48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden,dc=com", + email: "KardomaL@10f6046d05e14243ad22c391397b791c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurise Travers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maurise Travers,ou=Management,dc=bitwarden,dc=com", + email: "TraversM@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loella Herve,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Loella Herve,ou=Human Resources,dc=bitwarden,dc=com", + email: "HerveL@574e924f60604e60bceaae691ad7a17d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZadorozN@a9a16c4a0f7545639cb0982e970e6363.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Libbi Marting,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Libbi Marting,ou=Janitorial,dc=bitwarden,dc=com", + email: "MartingL@8561abc417794d6f8b59aa13dc9be3a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Derrick Myatt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Derrick Myatt,ou=Product Testing,dc=bitwarden,dc=com", + email: "MyattD@8d9527606cc64fa5ab4d6b7792482537.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden,dc=com", + email: "NemethK@8cbfe8f2cf8846329398b1f2552e48e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden,dc=com", + email: "KenyonD@c0e366bec54b485a8d61f1970ea7c375.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsey Emond,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chelsey Emond,ou=Janitorial,dc=bitwarden,dc=com", + email: "EmondC@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden,dc=com", + email: "SaulnieM@c8e189f083634334a1fd0d200a0183f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harvey Jugandi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Harvey Jugandi,ou=Administrative,dc=bitwarden,dc=com", + email: "JugandiH@b72b425950224ff1bc807aa369857e89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ida Sydor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ida Sydor,ou=Peons,dc=bitwarden,dc=com", + email: "SydorI@17268a5e22084b1a83cdf837a0887b9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden,dc=com", + email: "StroemeG@063f46f6e3c34f628dc59cd54e082665.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MingMing Wagoner,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=MingMing Wagoner,ou=Payroll,dc=bitwarden,dc=com", + email: "WagonerM@221b1a64a2b0473e979b63298baf53a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shena Joudrey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shena Joudrey,ou=Janitorial,dc=bitwarden,dc=com", + email: "JoudreyS@fc250c767129499c871d245494e9d9b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lurline Nickell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lurline Nickell,ou=Product Development,dc=bitwarden,dc=com", + email: "NickellL@a4626a0d04a64c1083f47ce852f633ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camilla Njo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Camilla Njo,ou=Product Testing,dc=bitwarden,dc=com", + email: "NjoC@519077386b7144648a1af65801ba340e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dannie Levesque,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dannie Levesque,ou=Product Development,dc=bitwarden,dc=com", + email: "LevesquD@76847a02189543c09ebc787f6f723eab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tarah Melanson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tarah Melanson,ou=Product Testing,dc=bitwarden,dc=com", + email: "MelansoT@ba2be91aa4064d8bbc344c883875d66e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phan Srinivasan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Phan Srinivasan,ou=Payroll,dc=bitwarden,dc=com", + email: "SrinivaP@142b52bc05a84c80a55df6addbd72e6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ibby Sundar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ibby Sundar,ou=Product Development,dc=bitwarden,dc=com", + email: "SundarI@f89f635a8be04a889dbefd8a681219c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jerald Battiston,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jerald Battiston,ou=Administrative,dc=bitwarden,dc=com", + email: "BattistJ@d7af2d36201f488d997c6f7eea13f491.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rorie Freno,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rorie Freno,ou=Payroll,dc=bitwarden,dc=com", + email: "FrenoR@f94a06ac8f314213b758728f67a159f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Howie Jubenville,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Howie Jubenville,ou=Product Development,dc=bitwarden,dc=com", + email: "JubenviH@077838522ab04e7fa5ae528e1ed00284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neely Dudas,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Neely Dudas,ou=Product Development,dc=bitwarden,dc=com", + email: "DudasN@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden,dc=com", + email: "EdmxtesS@91469109e9e74dbeada032db2abfd838.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden,dc=com", + email: "FinnertA@8d2bde7cc8a74ac5887aa1747493b68d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden,dc=com", + email: "ThibeauF@0ddc496dccad4aaf85619cae07f217f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kennon Risto,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kennon Risto,ou=Product Testing,dc=bitwarden,dc=com", + email: "RistoK@516b0fff20e84be4bd74141b3a98052f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jimson McVey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jimson McVey,ou=Administrative,dc=bitwarden,dc=com", + email: "McVeyJ@4a145fc9121947ce8b995d7a67929715.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elisabet Deicher,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elisabet Deicher,ou=Payroll,dc=bitwarden,dc=com", + email: "DeicherE@bf1b7c9bff4a47609eb686872f73e291.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amye Barritt,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Amye Barritt,ou=Administrative,dc=bitwarden,dc=com", + email: "BarrittA@b06576e7cc594af79143f743174735e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corry Ivett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Corry Ivett,ou=Human Resources,dc=bitwarden,dc=com", + email: "IvettC@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adan Kelkar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Adan Kelkar,ou=Product Testing,dc=bitwarden,dc=com", + email: "KelkarA@0c0d598f6d704fe4b60b7d7dc8951e3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ross Sepko,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ross Sepko,ou=Management,dc=bitwarden,dc=com", + email: "SepkoR@6e39649cbd0445acb57079f77e401bb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden,dc=com", + email: "DadkhahR@fa77f7a366264da6a4e9ab74eb89c64c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Apryle Davy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Apryle Davy,ou=Administrative,dc=bitwarden,dc=com", + email: "DavyA@0033304ecf264958be4e3649e61343d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden,dc=com", + email: "AkrawiL@86bd838434bd44c0b1970d4b53f78a53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlota Inoue,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carlota Inoue,ou=Product Development,dc=bitwarden,dc=com", + email: "InoueC@13e3dc6812b646519614bfe380e524a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leanne Smolin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leanne Smolin,ou=Payroll,dc=bitwarden,dc=com", + email: "SmolinL@7b1ae059f10c4c999e0f2bc4fd98859f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kailey Bagshaw,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kailey Bagshaw,ou=Peons,dc=bitwarden,dc=com", + email: "BagshawK@326d8403ad204a388a69bbd4329fe5a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden,dc=com", + email: "ZerriffD@eb0751f8f0ce45129ec8ccf1ddccc89a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trever Moffatt,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Trever Moffatt,ou=Management,dc=bitwarden,dc=com", + email: "MoffattT@d5293c91bc7840f0948a89a10840461e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weringh Behlen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Weringh Behlen,ou=Product Testing,dc=bitwarden,dc=com", + email: "BehlenW@ec02515092c0432c96114e0e3b48b13f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alain Walser,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alain Walser,ou=Administrative,dc=bitwarden,dc=com", + email: "WalserA@4d59261d3bca4e1fb4d732d67dc2ff95.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanya Erguven,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kanya Erguven,ou=Product Testing,dc=bitwarden,dc=com", + email: "ErguvenK@1b4bc37ec1234668beb3a7c3f6a14e94.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robina Prestrud,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Robina Prestrud,ou=Human Resources,dc=bitwarden,dc=com", + email: "PrestruR@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emmye Nahas,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emmye Nahas,ou=Product Development,dc=bitwarden,dc=com", + email: "NahasE@c7756644cb48413f87c87c1ccc9ba2c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flori Suddarth,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Flori Suddarth,ou=Management,dc=bitwarden,dc=com", + email: "SuddartF@df9fef66ff8d4a1eb163eeab8b34d029.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mkt Kelso,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mkt Kelso,ou=Janitorial,dc=bitwarden,dc=com", + email: "KelsoM@77605ba7efb54b24b15d418d1dcaf9e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annie Goswick,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annie Goswick,ou=Administrative,dc=bitwarden,dc=com", + email: "GoswickA@0cd2f193d0214a7093f88bef98ef3534.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden,dc=com", + email: "FoeppelI@6c580c7bb9d24c0e8e8c0f701314c400.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhonda Beeston,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rhonda Beeston,ou=Peons,dc=bitwarden,dc=com", + email: "BeestonR@f8b5ec3dd78f44e3bd6de92c22b0edfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amrik Bokij,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Amrik Bokij,ou=Payroll,dc=bitwarden,dc=com", + email: "BokijA@231bc329012a4b71830de92a0a747aec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merralee Malkani,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Merralee Malkani,ou=Management,dc=bitwarden,dc=com", + email: "MalkaniM@2111c0b8de8b41c796ea6df8823ccfc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kyle Malkani,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kyle Malkani,ou=Management,dc=bitwarden,dc=com", + email: "MalkaniK@456b6a48ca9a4969bd47e1edd5748e50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leese Jamaly,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leese Jamaly,ou=Payroll,dc=bitwarden,dc=com", + email: "JamalyL@c6a8d6d12ae045f8ba075455c769a929.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eloise Gurash,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Eloise Gurash,ou=Human Resources,dc=bitwarden,dc=com", + email: "GurashE@1d57349150aa4b7c9c63519094984965.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elpida Marples,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elpida Marples,ou=Administrative,dc=bitwarden,dc=com", + email: "MarplesE@950e4dfb6fcd4307837aab6105ae8d0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blondie Algood,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Blondie Algood,ou=Administrative,dc=bitwarden,dc=com", + email: "AlgoodB@fd60ce8a79b644ba9d190b4bf769b6de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden,dc=com", + email: "McWalteC@70ad644ea35f4f68843a1f3bb2116072.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Averil Hirsch,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Averil Hirsch,ou=Peons,dc=bitwarden,dc=com", + email: "HirschA@4ce8989b72bf418782f9268b205e86e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manijeh Older,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Manijeh Older,ou=Management,dc=bitwarden,dc=com", + email: "OlderM@519a4247e98245adb82415fbed3acf4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lonee Swinkels,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lonee Swinkels,ou=Administrative,dc=bitwarden,dc=com", + email: "SwinkelL@534eab5a672047c98d17e83c1921c458.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jun Reith,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jun Reith,ou=Product Development,dc=bitwarden,dc=com", + email: "ReithJ@813a07c4538b406aa71825ab3ba2ab54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Otter Uberig,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Otter Uberig,ou=Management,dc=bitwarden,dc=com", + email: "UberigO@2f13ca54ee794decad24515251a42dff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hendrik Ruyant,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hendrik Ruyant,ou=Management,dc=bitwarden,dc=com", + email: "RuyantH@b3c93053c0224253988d5c3b976abcae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colline Monaco,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Colline Monaco,ou=Product Development,dc=bitwarden,dc=com", + email: "MonacoC@bd83bea8ad1d4beeb411fff32d119ceb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilene Didylowski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ilene Didylowski,ou=Payroll,dc=bitwarden,dc=com", + email: "DidylowI@4fc4e61aa4364561b3dbed18d06aa13c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norine Krone,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Norine Krone,ou=Administrative,dc=bitwarden,dc=com", + email: "KroneN@be647af747894379a1244c13fb5bb1f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden,dc=com", + email: "McLauchY@ea44c2476f934218bf3d758975e567c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chander Daudin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chander Daudin,ou=Product Testing,dc=bitwarden,dc=com", + email: "DaudinC@7c50c697d2e74fa1bb1d9087c755a405.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phelia Valois,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Phelia Valois,ou=Payroll,dc=bitwarden,dc=com", + email: "ValoisP@3183d831d932421d873ae5ed85ead634.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmela Bonner,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carmela Bonner,ou=Payroll,dc=bitwarden,dc=com", + email: "BonnerC@412af91bb3534a1b89a431db4cb8a7a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandice Becquart,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brandice Becquart,ou=Management,dc=bitwarden,dc=com", + email: "BecquarB@4825d57ae32e45d08a65519dcb193960.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gen Guinnane,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gen Guinnane,ou=Management,dc=bitwarden,dc=com", + email: "GuinnanG@f01b8c6e19b14b049532cb6664f8caaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmelia Lawlor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carmelia Lawlor,ou=Management,dc=bitwarden,dc=com", + email: "LawlorC@2340b24115454336b8f5eb39757ab759.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Riva DIppolito,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Riva DIppolito,ou=Management,dc=bitwarden,dc=com", + email: "DIppoliR@74cfe2fa4b0b457bbb2822816bc66149.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Letisha Subsara,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Letisha Subsara,ou=Janitorial,dc=bitwarden,dc=com", + email: "SubsaraL@903617d1ed564473826d5f2c9b25fe7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chellappan Caple,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Chellappan Caple,ou=Management,dc=bitwarden,dc=com", + email: "CapleC@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lendon Shigemura,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lendon Shigemura,ou=Management,dc=bitwarden,dc=com", + email: "ShigemuL@07f933542a8443fa9fa85a2d55eb8b28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alicia Vermette,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alicia Vermette,ou=Human Resources,dc=bitwarden,dc=com", + email: "VermettA@9ce7cc8c772f4514b0b5126957e2752f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marys Pellegrini,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marys Pellegrini,ou=Management,dc=bitwarden,dc=com", + email: "PellegrM@64c2fa20001b495182e976975782823e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden,dc=com", + email: "RadovniH@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden,dc=com", + email: "DIngianT@d12dc9200de04c139668cd5077c9847d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Es Veillette,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Es Veillette,ou=Management,dc=bitwarden,dc=com", + email: "VeilletE@09592cdb49ba4e06a680e4327c7f211f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden,dc=com", + email: "JelinekC@969884d3e1084598a17f4ef0a3aedf04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Schell Rezzik,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Schell Rezzik,ou=Product Development,dc=bitwarden,dc=com", + email: "RezzikS@d27f47b62d694195b812aa9e62ea263a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haig Salyer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Haig Salyer,ou=Product Testing,dc=bitwarden,dc=com", + email: "SalyerH@d0689c747ea94990b3bb0378ca876248.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sachiko Dragert,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sachiko Dragert,ou=Payroll,dc=bitwarden,dc=com", + email: "DragertS@777873609ce9463eb7000e930f9c88d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agatha Potocki,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Agatha Potocki,ou=Human Resources,dc=bitwarden,dc=com", + email: "PotockiA@8068d857ca8d45118464c596ca9f4192.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden,dc=com", + email: "FrobelJ@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mark Bethune,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mark Bethune,ou=Human Resources,dc=bitwarden,dc=com", + email: "BethuneM@937ccb2001694e2680b8217ebfc1227e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden,dc=com", + email: "HiscoeR@923b7e20c77d4d479afa0bf52e9ff34f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorey Friedrich,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorey Friedrich,ou=Payroll,dc=bitwarden,dc=com", + email: "FriedriD@d28530c9df644cffbc9c3ddd841cc9a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alexina Hord,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alexina Hord,ou=Product Development,dc=bitwarden,dc=com", + email: "HordA@874d2ffcc419401a838c28aad1adce43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilson Vosup,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wilson Vosup,ou=Management,dc=bitwarden,dc=com", + email: "VosupW@0a13d3df1e3f455093e12ab71e8c81fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChmaraR@21cc8cee33394af98a10a365eddcb55c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden,dc=com", + email: "DubucA@5191509f48d94538ad03dc3532ab7b16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Forrest DCruz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Forrest DCruz,ou=Payroll,dc=bitwarden,dc=com", + email: "DCruzF@523c7925179d4304b25908d832088d77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden,dc=com", + email: "PlucinsS@351deec9477e4e51877822ae4f8cd070.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roger Seelaender,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Roger Seelaender,ou=Peons,dc=bitwarden,dc=com", + email: "SeelaenR@73a9aedb7e664c80be8f4a158038334a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden,dc=com", + email: "KessingA@8a74bbad8b794c87a1e4384bad30f8b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mal Ellul,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mal Ellul,ou=Management,dc=bitwarden,dc=com", + email: "EllulM@3ce51f6d63564349a707188cebe0b9db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bep Pilkington,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bep Pilkington,ou=Product Testing,dc=bitwarden,dc=com", + email: "PilkingB@d72cbd780d2b4b298c22c5ed9275bdef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wylma Meiser,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wylma Meiser,ou=Human Resources,dc=bitwarden,dc=com", + email: "MeiserW@9f3819b9115a462187208879243957c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huppert Buffett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Huppert Buffett,ou=Human Resources,dc=bitwarden,dc=com", + email: "BuffettH@270d9e715f934566b928260e5a913b8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kass Kelland,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kass Kelland,ou=Human Resources,dc=bitwarden,dc=com", + email: "KellandK@29173732550b4d5fa61cc19838febdea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dpnis Stetter,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dpnis Stetter,ou=Peons,dc=bitwarden,dc=com", + email: "StetterD@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tash Hibler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tash Hibler,ou=Product Development,dc=bitwarden,dc=com", + email: "HiblerT@f757676270f44c6398ef7409a2684fcd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edee Badger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Edee Badger,ou=Payroll,dc=bitwarden,dc=com", + email: "BadgerE@fd46aa029a7840a1becc0ccc22e4bd3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edel Ellacott,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Edel Ellacott,ou=Peons,dc=bitwarden,dc=com", + email: "EllacotE@359efdad39cc40ef8440421a8807b6c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosa Baird,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rosa Baird,ou=Administrative,dc=bitwarden,dc=com", + email: "BairdR@a7cf58aaa965404796cd8b59fc2395b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anna Kahtasian,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anna Kahtasian,ou=Product Development,dc=bitwarden,dc=com", + email: "KahtasiA@7341939506294cf3bdd4bdeca7674074.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hiren Plastina,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hiren Plastina,ou=Peons,dc=bitwarden,dc=com", + email: "PlastinH@bf39febc19c343cc9aaa907ea0d77554.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alese Sumpter,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alese Sumpter,ou=Peons,dc=bitwarden,dc=com", + email: "SumpterA@68783c5d6bc743ddb0d94e6abd382e0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden,dc=com", + email: "EscobedM@96cd1711168e489f9e672010a4fee01c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Simonne Filer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Simonne Filer,ou=Product Development,dc=bitwarden,dc=com", + email: "FilerS@6993d016013446bf8c45519f739f4a8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden,dc=com", + email: "SzypulsM@3a2a82df656f429a9b40a5251b4c823e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yeung Kaufman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yeung Kaufman,ou=Product Development,dc=bitwarden,dc=com", + email: "KaufmanY@db0d46fdeb854c2eb066d9894606ad6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claire Wada,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Claire Wada,ou=Management,dc=bitwarden,dc=com", + email: "WadaC@e13ff358b20d4f05b57860e7899fbc5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laury Breglec,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Laury Breglec,ou=Administrative,dc=bitwarden,dc=com", + email: "BreglecL@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurice Guinnane,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maurice Guinnane,ou=Administrative,dc=bitwarden,dc=com", + email: "GuinnanM@c881c186a173446ea0e986dc58eda7dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laraine DuBois,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Laraine DuBois,ou=Peons,dc=bitwarden,dc=com", + email: "DuBoisL@cac372b8ab83448c81ae16d3c02782c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden,dc=com", + email: "TestingG@09e5494aed3a4d83bbfc24e4027adfc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hettie Johannes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hettie Johannes,ou=Product Development,dc=bitwarden,dc=com", + email: "JohanneH@d7e8af68284e4062b608faac310d89ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden,dc=com", + email: "WestgarJ@67c03444c05a42a3b6969db268f587ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden,dc=com", + email: "SpraybeP@2c938ad1c79549a5aaba11995cefd879.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hedvig Risler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hedvig Risler,ou=Management,dc=bitwarden,dc=com", + email: "RislerH@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edward Badza,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Edward Badza,ou=Payroll,dc=bitwarden,dc=com", + email: "BadzaE@a32cc86a2bd244a1a69078536f474c4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Femke Trittler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Femke Trittler,ou=Product Testing,dc=bitwarden,dc=com", + email: "TrittleF@c31dc3397f3a45ca971c4674af07c210.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lino Krauel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lino Krauel,ou=Product Testing,dc=bitwarden,dc=com", + email: "KrauelL@6ad1b625c3674b77a93e5c19216d7f12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden,dc=com", + email: "AyoupT@a549c5674cda44a29e90f4f33d1b9046.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anders Raddalgoda,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anders Raddalgoda,ou=Management,dc=bitwarden,dc=com", + email: "RaddalgA@3913d51a20f344409448501766a0f142.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rijn Benschop,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rijn Benschop,ou=Management,dc=bitwarden,dc=com", + email: "BenschoR@dd44ac1957c74a4cb7889302d7ebe0e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deva Hoch,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Deva Hoch,ou=Product Development,dc=bitwarden,dc=com", + email: "HochD@2c865634e0e045e2b70cc9cc6dc9005f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden,dc=com", + email: "MathiesM@f7f4a447205348c3850cb06ffed2a0fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fearless Quattrucci,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fearless Quattrucci,ou=Management,dc=bitwarden,dc=com", + email: "QuattruF@ad1bdee03ce44222a3305339a4d53009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pia Singham,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pia Singham,ou=Peons,dc=bitwarden,dc=com", + email: "SinghamP@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zdenek Schutte,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zdenek Schutte,ou=Product Development,dc=bitwarden,dc=com", + email: "SchutteZ@327fab76e13f495691accc9986f353a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liam Darveau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Liam Darveau,ou=Janitorial,dc=bitwarden,dc=com", + email: "DarveauL@13b504a8a169451f93c28e40583299e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yung Deployment,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Yung Deployment,ou=Management,dc=bitwarden,dc=com", + email: "DeploymY@291647d2cd1d44a99560699f40c48fb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raman Feild,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Raman Feild,ou=Payroll,dc=bitwarden,dc=com", + email: "FeildR@42f7f72ca79e451abe4a35d3706fd511.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden,dc=com", + email: "MohanM@8b6b01e9c008452894c8ace1d155cf0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden,dc=com", + email: "MustafaY@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nial Meunier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nial Meunier,ou=Janitorial,dc=bitwarden,dc=com", + email: "MeunierN@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evans Laker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Evans Laker,ou=Product Testing,dc=bitwarden,dc=com", + email: "LakerE@8068d857ca8d45118464c596ca9f4192.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vale Wiederhold,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vale Wiederhold,ou=Management,dc=bitwarden,dc=com", + email: "WiederhV@dd11611b8b2c47a382a866e9115fea27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulce Xavier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dulce Xavier,ou=Janitorial,dc=bitwarden,dc=com", + email: "XavierD@6ce18e31fee44ca6a1d60162c1ff34ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walt Ventura,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Walt Ventura,ou=Management,dc=bitwarden,dc=com", + email: "VenturaW@f06eb6e5ebe44697824a5e168080f66f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miklos Rhyndress,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Miklos Rhyndress,ou=Peons,dc=bitwarden,dc=com", + email: "RhyndreM@6d618be347104dbc857cf2fd7fc2c14d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden,dc=com", + email: "FrendoM@602ba75a97ea4dc1ac3622553464c0ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherise Blodgett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cherise Blodgett,ou=Payroll,dc=bitwarden,dc=com", + email: "BlodgetC@c03386ce7faa472d85d312447ef33656.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenifer Stansell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jenifer Stansell,ou=Peons,dc=bitwarden,dc=com", + email: "StanselJ@8356479eabd643419aa6b8ad0de3b0b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fung Ginzburg,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fung Ginzburg,ou=Peons,dc=bitwarden,dc=com", + email: "GinzburF@f94e4910d3ba449793ba33df7347ad39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nikolaos Mapile,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nikolaos Mapile,ou=Management,dc=bitwarden,dc=com", + email: "MapileN@edb994df27cb4c98bcb6984d0f87b2c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Queenie Spolar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Queenie Spolar,ou=Administrative,dc=bitwarden,dc=com", + email: "SpolarQ@a613bdb3274e457a9c2452e800065937.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden,dc=com", + email: "VopalenR@f263976411814a39ae02ef1a1447e567.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franki Weyand,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Franki Weyand,ou=Product Testing,dc=bitwarden,dc=com", + email: "WeyandF@85375ce566b44b3aa8f322d00fc1330c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suat Whitford,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Suat Whitford,ou=Janitorial,dc=bitwarden,dc=com", + email: "WhitforS@23cf32b7148140cfb4b02ddf8d62cfa5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isadora Capelle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Isadora Capelle,ou=Product Development,dc=bitwarden,dc=com", + email: "CapelleI@6ff43a0cd199484abc0f4c8402f6ccf8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loria Timmerman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Loria Timmerman,ou=Product Development,dc=bitwarden,dc=com", + email: "TimmermL@6c3860a955fe431ca8d48e56cd2c1cc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden,dc=com", + email: "TremblaM@e7d1f4f0f2c247cc84176f3d1fda8997.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden,dc=com", + email: "BedientA@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobbi Dupree,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bobbi Dupree,ou=Management,dc=bitwarden,dc=com", + email: "DupreeB@d71f931e88694d74b88e32769af98e29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leshia Gaither,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Leshia Gaither,ou=Product Testing,dc=bitwarden,dc=com", + email: "GaitherL@0bc2c297f4214248890001cfe94999e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calla McIsaac,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Calla McIsaac,ou=Human Resources,dc=bitwarden,dc=com", + email: "McIsaacC@dcc2a55662ed42a29feb9be5fbe1aebc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roby Kasbia,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Roby Kasbia,ou=Peons,dc=bitwarden,dc=com", + email: "KasbiaR@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Samia Wacker,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Samia Wacker,ou=Management,dc=bitwarden,dc=com", + email: "WackerS@ffedbb5dcd2e43d89a2fe0f7ea7157e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden,dc=com", + email: "KlimasA@9cbd4c37891849299ce4208e274287c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephen Marketing,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Stephen Marketing,ou=Administrative,dc=bitwarden,dc=com", + email: "MarketiS@9b56a002e1e845bebc57785089119222.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden,dc=com", + email: "ReussD@6f5f719e8c7c44dba4e5307764a1a899.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anissa Gottstein,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Anissa Gottstein,ou=Peons,dc=bitwarden,dc=com", + email: "GottsteA@87059a6507b64511ab56381369ebea64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden,dc=com", + email: "GalipeaM@a9d076873ae84725b15dea4969311d19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlin Boult,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Carlin Boult,ou=Peons,dc=bitwarden,dc=com", + email: "BoultC@10bb017137f049d59bb1ad7676fcda69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kitt Briden,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kitt Briden,ou=Janitorial,dc=bitwarden,dc=com", + email: "BridenK@f3d35636fac14230bdd8e3b7a9740351.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramniklal Buske,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ramniklal Buske,ou=Management,dc=bitwarden,dc=com", + email: "BuskeR@828176ba128d4cb487e3464dc77f09ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Par Giang,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Par Giang,ou=Administrative,dc=bitwarden,dc=com", + email: "GiangP@510955a0267640f295624f2d3542d78c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden,dc=com", + email: "KnoxJ@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daisey Karam,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Daisey Karam,ou=Management,dc=bitwarden,dc=com", + email: "KaramD@af703f54ddb945e38afdba5f17819d01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Levent Khouderchah,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Levent Khouderchah,ou=Product Development,dc=bitwarden,dc=com", + email: "KhouderL@cc743470ff7d424999d3c3aceed5aa98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Demetria Projects,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Demetria Projects,ou=Management,dc=bitwarden,dc=com", + email: "ProjectD@040eff361ea747e78133529faeb94ba1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jules Highsmith,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jules Highsmith,ou=Janitorial,dc=bitwarden,dc=com", + email: "HighsmiJ@0798984bbb0c4179a1769a476df089f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Misbah Kimma,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Misbah Kimma,ou=Human Resources,dc=bitwarden,dc=com", + email: "KimmaM@e5d9cd8563784493b06bdd8fd1d46cd9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morganne Teed,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Morganne Teed,ou=Management,dc=bitwarden,dc=com", + email: "TeedM@540d8b0a17d449ce8bcc397ded86d3bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mozelle Huang,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mozelle Huang,ou=Administrative,dc=bitwarden,dc=com", + email: "HuangM@6834e07b8b7a48599c5352f812afcb14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacy Boehlke,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Stacy Boehlke,ou=Product Development,dc=bitwarden,dc=com", + email: "BoehlkeS@7d7fba0007d84df48116a5de2752d736.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden,dc=com", + email: "AlexanG@c34ab4db75da4e338c2262d22bcb3019.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden,dc=com", + email: "WalbridJ@f5fd329c5c644159a0d5837b63c559bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angelica Sarkari,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Angelica Sarkari,ou=Management,dc=bitwarden,dc=com", + email: "SarkariA@97df64fd63964d63ae961e1122586e46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michel Akyurekli,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Michel Akyurekli,ou=Payroll,dc=bitwarden,dc=com", + email: "AkyurekM@10e0fd0f72834c84a749bfbeb6ab529e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden,dc=com", + email: "SawchukS@cb980ae301084964a9693d89f9fb2ea1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rayna Diep,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rayna Diep,ou=Product Development,dc=bitwarden,dc=com", + email: "DiepR@dd8272e863174597a9c6eb5aaf131b06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden,dc=com", + email: "NetdbsD@ba870021396f4a5691ef47f553098ab0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ollie Forslund,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ollie Forslund,ou=Product Development,dc=bitwarden,dc=com", + email: "ForslunO@9e342fa3efb14712a894fba19d56a8d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden,dc=com", + email: "IvanyiR@49fad969a9cf4f7f9ee17b24c9d91f37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Germain Nobes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Germain Nobes,ou=Human Resources,dc=bitwarden,dc=com", + email: "NobesG@5b56eb88f88b42a3b2d8c2c6c1108102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThomlinS@6640f4471cc54a89999fc29622a696c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daria Farnham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Daria Farnham,ou=Product Testing,dc=bitwarden,dc=com", + email: "FarnhamD@535949b117544e80b4ad9c1fa166edb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rohit McSorley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rohit McSorley,ou=Janitorial,dc=bitwarden,dc=com", + email: "McSorleR@2b68ad1154c2463cae24d71d411d150c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Novelia Sossaman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Novelia Sossaman,ou=Administrative,dc=bitwarden,dc=com", + email: "SossamaN@527588b4f1b4422fb6b034c9d08f2576.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marabel Oster,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marabel Oster,ou=Human Resources,dc=bitwarden,dc=com", + email: "OsterM@fbc893f003694c649780eac570605509.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden,dc=com", + email: "KlashinM@3f84853ed30445ccb6957c251cefdc54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marco Hoagland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marco Hoagland,ou=Janitorial,dc=bitwarden,dc=com", + email: "HoaglanM@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerty Hebert,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gerty Hebert,ou=Management,dc=bitwarden,dc=com", + email: "HebertG@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcela Dufresne,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marcela Dufresne,ou=Management,dc=bitwarden,dc=com", + email: "DufresnM@55d3abf188cf489e982ee3fc8f3c0c3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChaisupD@66c076947bac46c6bf8b54d183a4a3cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Almeda Maloney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Almeda Maloney,ou=Product Development,dc=bitwarden,dc=com", + email: "MaloneyA@861b221ff6974e6cbb5a0c00d198c4bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madalyn Bakay,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Madalyn Bakay,ou=Peons,dc=bitwarden,dc=com", + email: "BakayM@75234ed0eb0841e9a2b60ec9399e028a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden,dc=com", + email: "McNerlaB@c9b998177eaf425c9e87bad80d5d4670.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allen Papantonis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Allen Papantonis,ou=Product Testing,dc=bitwarden,dc=com", + email: "PapantoA@76c37165c9c84b2e91c732cc33c7793d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leoline Cholette,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Leoline Cholette,ou=Janitorial,dc=bitwarden,dc=com", + email: "CholettL@444794b5113d44779ace93e2616392cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden,dc=com", + email: "SandharM@274384e0320c40758cf1ecbcebf754d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leanna MTL,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leanna MTL,ou=Administrative,dc=bitwarden,dc=com", + email: "MTLL@ab71cedcebe141b4ae49c26990bb3316.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden,dc=com", + email: "GuilberK@0525ebb146b94455a69f7d801ab4ff97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Octavio Naugle,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Octavio Naugle,ou=Product Testing,dc=bitwarden,dc=com", + email: "NaugleO@8cef7d2cd1884754b6cc5e28407c0a56.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden,dc=com", + email: "HoehlinK@72030161dcd24217be14766e527d14fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charangit Brasset,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Charangit Brasset,ou=Product Development,dc=bitwarden,dc=com", + email: "BrassetC@b524d22ec70741b18bc6152d2cf11515.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gena Lovejoy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gena Lovejoy,ou=Product Development,dc=bitwarden,dc=com", + email: "LovejoyG@28d2c310a8f14caeb811cfb7bdd890df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden,dc=com", + email: "IanaceR@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivi Dysart,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vivi Dysart,ou=Payroll,dc=bitwarden,dc=com", + email: "DysartV@8c0b466f02f748859dc301557d2d5669.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden,dc=com", + email: "MontoutR@dbc4eab54b5f4d779246b56a41ba3d42.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giuseppe Laing,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Giuseppe Laing,ou=Management,dc=bitwarden,dc=com", + email: "LaingG@16269c126bd14ac9a93025afee70dceb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zeb Morrissette,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zeb Morrissette,ou=Product Development,dc=bitwarden,dc=com", + email: "MorrissZ@e7982141a478415494932da6ee7a398d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corly Wingate,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Corly Wingate,ou=Payroll,dc=bitwarden,dc=com", + email: "WingateC@8b54f75a945349ddb0e951ba57a8fbf6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=UnaMae Del,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=UnaMae Del,ou=Human Resources,dc=bitwarden,dc=com", + email: "DelU@526917d21d144952ba135c0232075538.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Almerinda MTL,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Almerinda MTL,ou=Product Development,dc=bitwarden,dc=com", + email: "MTLA@56ff7c3ad2a74f428698e9d39e33820f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanRoch Della,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=JeanRoch Della,ou=Peons,dc=bitwarden,dc=com", + email: "DellaJ@79183891cf444d618a0f5a54d8772f40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden,dc=com", + email: "MeyerinA@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cris Viano,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cris Viano,ou=Payroll,dc=bitwarden,dc=com", + email: "VianoC@ab9abe6692b34c219100026a54077248.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden,dc=com", + email: "GoodwinR@1df73cc203344a569c1b4737122f78a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Takis Bulmer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Takis Bulmer,ou=Administrative,dc=bitwarden,dc=com", + email: "BulmerT@b6433b672188433c98862791df3ba6da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adah Calistro,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Adah Calistro,ou=Peons,dc=bitwarden,dc=com", + email: "CalistrA@97dff61562cc4fcf91cc6b1c0555b351.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessalin Stooke,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jessalin Stooke,ou=Peons,dc=bitwarden,dc=com", + email: "StookeJ@bef37f4792b04da289642afddb790432.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zsazsa Ukena,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zsazsa Ukena,ou=Management,dc=bitwarden,dc=com", + email: "UkenaZ@e91e9d47322f42e0863a6aa1fe777b71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raynell Shears,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Raynell Shears,ou=Payroll,dc=bitwarden,dc=com", + email: "ShearsR@87113723aa0e41bdb0ec57c16297b036.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden,dc=com", + email: "GinzburK@0bceb4753c404fdbaaffa3f02923ad68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden,dc=com", + email: "SheraliH@958185118457477783d16f2fa9e93aa2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kem Wares,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kem Wares,ou=Administrative,dc=bitwarden,dc=com", + email: "WaresK@52c0e096b1b44f2f8c05cf2d62dc5788.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tai Galloway,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tai Galloway,ou=Administrative,dc=bitwarden,dc=com", + email: "GallowaT@dd438a1d29bd49c79f41cb0fe1c67139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden,dc=com", + email: "EisenacS@7a465c2775724e2fb0c9f1e78b183307.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parviz Kinsella,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Parviz Kinsella,ou=Administrative,dc=bitwarden,dc=com", + email: "KinsellP@353a4c977d99447e8bf6372a139196b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelyn Godo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Madelyn Godo,ou=Peons,dc=bitwarden,dc=com", + email: "GodoM@fe29084b8c204f2e9f20c235a3bde591.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willow Sorathia,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Willow Sorathia,ou=Management,dc=bitwarden,dc=com", + email: "SorathiW@1bc1409c08584b65b922db79a968ffbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jonelle Rynders,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jonelle Rynders,ou=Management,dc=bitwarden,dc=com", + email: "RyndersJ@407ea5ccd7404466aa1b36764aa40ace.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avinash Vieiro,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Avinash Vieiro,ou=Payroll,dc=bitwarden,dc=com", + email: "VieiroA@26eb3cccbe694e88916be9fa6504534e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden,dc=com", + email: "EncomenM@1bfbb076f362457cb073b7b05229490f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mikhail Fssup,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mikhail Fssup,ou=Product Development,dc=bitwarden,dc=com", + email: "FssupM@fe8a88d43b8447679253a21f86c61479.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kimmi Trent,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kimmi Trent,ou=Payroll,dc=bitwarden,dc=com", + email: "TrentK@bd234f19e2034627848e6380646db915.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drucie Lindow,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Drucie Lindow,ou=Administrative,dc=bitwarden,dc=com", + email: "LindowD@b8c647e356994d2abad4efb1121ac175.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristine Hogue,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kristine Hogue,ou=Administrative,dc=bitwarden,dc=com", + email: "HogueK@33a856f3df9c45df92aa949a40965338.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmon Ghossein,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carmon Ghossein,ou=Administrative,dc=bitwarden,dc=com", + email: "GhosseiC@b1d81d4ed0934642a942a3e784da5fea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eunice Bushell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eunice Bushell,ou=Payroll,dc=bitwarden,dc=com", + email: "BushellE@7ff42394bdb9413f95ee8654a86f2b98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailene Leander,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ailene Leander,ou=Janitorial,dc=bitwarden,dc=com", + email: "LeanderA@38084e0586a041acbbdb2c1dfb35d2bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Truus Fodell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Truus Fodell,ou=Product Development,dc=bitwarden,dc=com", + email: "FodellT@a5186e33e69446d1bb74fa25b1e42650.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zulema Clairmont,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zulema Clairmont,ou=Product Development,dc=bitwarden,dc=com", + email: "ClairmoZ@789d3ef8deb24c20bce9e2915a466aef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Libor Wyble,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Libor Wyble,ou=Human Resources,dc=bitwarden,dc=com", + email: "WybleL@984a4a5c1e144450ba42a88110cdd2a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debera Shu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Debera Shu,ou=Administrative,dc=bitwarden,dc=com", + email: "ShuD@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden,dc=com", + email: "SeniukV@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden,dc=com", + email: "BouleriP@b778c029c2264b3089247adae57812bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hailee Gould,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hailee Gould,ou=Peons,dc=bitwarden,dc=com", + email: "GouldH@053cdccb3446469397047f2320d54d6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden,dc=com", + email: "KomatsuA@54d64a829cf84f78beec4b49e0ecd1e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colm Coody,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Colm Coody,ou=Human Resources,dc=bitwarden,dc=com", + email: "CoodyC@801fded39bf64900acb4ebc42aa0afe0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orly Rahn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Orly Rahn,ou=Management,dc=bitwarden,dc=com", + email: "RahnO@b25e09cbf8714d1293b2097e25927336.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden,dc=com", + email: "AshurkoD@169fcab935f542c68b8a72c59cfcd9c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glornia Hage,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Glornia Hage,ou=Janitorial,dc=bitwarden,dc=com", + email: "HageG@64e4540aae0b4842a2b0399c54e9799c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desiree Morini,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Desiree Morini,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoriniD@620a0deb741d4dc4a818615fd1732275.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden,dc=com", + email: "SorenseV@449193a8d6284b519708a047f998c36e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden,dc=com", + email: "StensruC@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laina McKibbon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Laina McKibbon,ou=Janitorial,dc=bitwarden,dc=com", + email: "McKibboL@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peach McGlynn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Peach McGlynn,ou=Janitorial,dc=bitwarden,dc=com", + email: "McGlynnP@e9b1eab0ad46429f9b14fc88c1e1a1ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ines Younan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ines Younan,ou=Management,dc=bitwarden,dc=com", + email: "YounanI@522cd51783f94d36bac3d92521c9b231.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jai Junkie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jai Junkie,ou=Janitorial,dc=bitwarden,dc=com", + email: "JunkieJ@19a8f5526a554f0cb06e7cba3da0c581.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden,dc=com", + email: "OutramK@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ping Lombrink,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ping Lombrink,ou=Management,dc=bitwarden,dc=com", + email: "LombrinP@a8b360eab13a4f829ec0541714c28aa0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgianne Colwell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Georgianne Colwell,ou=Product Development,dc=bitwarden,dc=com", + email: "ColwellG@73644206f22948e88cda9a77b8ecb4e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryant Fronsee,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bryant Fronsee,ou=Administrative,dc=bitwarden,dc=com", + email: "FronseeB@207f06c431db4f90babc987173636b40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amata Funderburg,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Amata Funderburg,ou=Administrative,dc=bitwarden,dc=com", + email: "FunderbA@01c954b9634144e3b54bd66a31610430.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camila Nason,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Camila Nason,ou=Peons,dc=bitwarden,dc=com", + email: "NasonC@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eldon ONeil,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eldon ONeil,ou=Product Testing,dc=bitwarden,dc=com", + email: "ONeilE@38e93300da7643e5ac4629316f76753a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden,dc=com", + email: "AdkinsoT@a6a05053959845178f0fed6cc2cd11a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manda Bins,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Manda Bins,ou=Administrative,dc=bitwarden,dc=com", + email: "BinsM@6703f1d29b0341659ab853ef2d4c41f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden,dc=com", + email: "PizzimeZ@4a145fc9121947ce8b995d7a67929715.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joete Thieken,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joete Thieken,ou=Administrative,dc=bitwarden,dc=com", + email: "ThiekenJ@5d35d83c207d418fad061afb7ba230bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nurettin Parisen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nurettin Parisen,ou=Product Development,dc=bitwarden,dc=com", + email: "ParisenN@7bfec04dd67a4c9388bb15752591a642.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lester Leonida,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lester Leonida,ou=Administrative,dc=bitwarden,dc=com", + email: "LeonidaL@39d704426feb42afa93cfa3dd5e7e000.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mira Aczel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mira Aczel,ou=Product Development,dc=bitwarden,dc=com", + email: "AczelM@3adabc9eed2948c7b0e84ce77e7ad7d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Takehiko Malizia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Takehiko Malizia,ou=Product Development,dc=bitwarden,dc=com", + email: "MaliziaT@9e33462dc38a47268f5ccb5aff17b01e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niel Vickers,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Niel Vickers,ou=Human Resources,dc=bitwarden,dc=com", + email: "VickersN@e3a398150b8f4132954080a42a622e3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Letta Baltodano,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Letta Baltodano,ou=Management,dc=bitwarden,dc=com", + email: "BaltodaL@ffa895bc8daa4c0f81a78140a99f5460.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=De Moneypenny,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=De Moneypenny,ou=Payroll,dc=bitwarden,dc=com", + email: "MoneypeD@a87ac40ce2a547c8a852f41a3d6dfeae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyke Suh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dyke Suh,ou=Administrative,dc=bitwarden,dc=com", + email: "SuhD@1e2b67f93f814f68b5e4aa746670a4e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barrie Botting,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Barrie Botting,ou=Payroll,dc=bitwarden,dc=com", + email: "BottingB@ea26d044205a42efb212069b102bfd27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anantha Uhl,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anantha Uhl,ou=Janitorial,dc=bitwarden,dc=com", + email: "UhlA@75d6e7c6ef474c5e97f655497c047d1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kettie Lanier,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kettie Lanier,ou=Management,dc=bitwarden,dc=com", + email: "LanierK@dc21b90d233e4262bb0c379c7e3b2a15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden,dc=com", + email: "SmrkeSuT@68cdf7c41dd140debe34d656d3cf57b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LianHong Grills,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=LianHong Grills,ou=Administrative,dc=bitwarden,dc=com", + email: "GrillsL@c3999c476a6d4270acb03c758687a2bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charlean Leo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Charlean Leo,ou=Product Testing,dc=bitwarden,dc=com", + email: "LeoC@b08a31b6db4d4d2a9a1e1fd91f822e32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilbert Howerton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gilbert Howerton,ou=Peons,dc=bitwarden,dc=com", + email: "HowertoG@7dc5b62cf93648d48eddbda676ec7c2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden,dc=com", + email: "KasumovK@ea0a27f30cde484786db6ba4690325bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loralie Balutis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Loralie Balutis,ou=Peons,dc=bitwarden,dc=com", + email: "BalutisL@00996b193c5d4d3d9dd9d82c9ad7cc6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harri Wortman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Harri Wortman,ou=Management,dc=bitwarden,dc=com", + email: "WortmanH@3956b0c83ae444e7940e65fc8c4220d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden,dc=com", + email: "KlaudtA@534eab5a672047c98d17e83c1921c458.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorine Grund,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lorine Grund,ou=Management,dc=bitwarden,dc=com", + email: "GrundL@ef0c8bc927fc4b19a8b12d396a49fa25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lesley Coyne,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lesley Coyne,ou=Janitorial,dc=bitwarden,dc=com", + email: "CoyneL@93251ab1fec549f1aaacc3bfbaff52ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nelleke Lind,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nelleke Lind,ou=Management,dc=bitwarden,dc=com", + email: "LindN@c27a22599aa849ec8d6e0057e5fc89b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bam Raschig,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bam Raschig,ou=Administrative,dc=bitwarden,dc=com", + email: "RaschigB@a8a3f1161ef54158b589de8fea58b91e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicoline Gelo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nicoline Gelo,ou=Peons,dc=bitwarden,dc=com", + email: "GeloN@ac21668d43ba4692aab89cc64a9b9192.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigid Austin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Brigid Austin,ou=Administrative,dc=bitwarden,dc=com", + email: "AustinB@bb451e9caafd4e81b5fb79f1aea3830a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden,dc=com", + email: "LavalleR@645458196d8d458186860230f1cc27c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farooq Farquhar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Farooq Farquhar,ou=Administrative,dc=bitwarden,dc=com", + email: "FarquhaF@9853bdab18e6473e80d7e44abcd07317.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandy Strauss,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brandy Strauss,ou=Management,dc=bitwarden,dc=com", + email: "StraussB@08b70f178d5240d696c9850eb93d6f02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jake McGorman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jake McGorman,ou=Management,dc=bitwarden,dc=com", + email: "McGormaJ@f8bd0fd0b11340a59263ead33f8063a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden,dc=com", + email: "MastenbK@b06b941e5d1147e188fc4663bd226c1c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruchi Furst,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ruchi Furst,ou=Janitorial,dc=bitwarden,dc=com", + email: "FurstR@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joann Truffer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joann Truffer,ou=Administrative,dc=bitwarden,dc=com", + email: "TrufferJ@f0d1676d1c42478dbb4656ca35d0b50c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anton Chao,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anton Chao,ou=Payroll,dc=bitwarden,dc=com", + email: "ChaoA@fc85c5eabc344595a2c61eb7ac58789c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cacilie Murnaghan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cacilie Murnaghan,ou=Management,dc=bitwarden,dc=com", + email: "MurnaghC@63e60d8db42545d0aa6e5c384a01705d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilene Magri,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ilene Magri,ou=Management,dc=bitwarden,dc=com", + email: "MagriI@c2c92a5abf3749b38d91e565e28d400a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden,dc=com", + email: "SuperviH@bd3dedcd93c84c0aa4af62b582b04e9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden,dc=com", + email: "BannardM@8edc6a8ce7724275bb989e481ab8171b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiele Willis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kiele Willis,ou=Janitorial,dc=bitwarden,dc=com", + email: "WillisK@c3326a8bbe8a452eb1cd54b6abb6e1f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blondie MMail,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Blondie MMail,ou=Janitorial,dc=bitwarden,dc=com", + email: "MMailB@fce4c1e9f1a6429083bed21e1e54a500.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden,dc=com", + email: "KohalmiJ@67f0c4cb093d45e88db73275893310b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yevette Kantor,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yevette Kantor,ou=Product Development,dc=bitwarden,dc=com", + email: "KantorY@0402555d9f67459e90e5fb987f132859.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden,dc=com", + email: "UmeedaR@72edbeb53d9b4d36832bc312f776b4b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Youji Lawson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Youji Lawson,ou=Janitorial,dc=bitwarden,dc=com", + email: "LawsonY@8ed9716e3ac64c548b2880ae48c87c64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neysa Dpu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Neysa Dpu,ou=Administrative,dc=bitwarden,dc=com", + email: "DpuN@6e3a8629478147b69f53620c10ea4e46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KaiWai Barriere,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=KaiWai Barriere,ou=Management,dc=bitwarden,dc=com", + email: "BarrierK@f541074a8300482d85b53966c8cecebb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden,dc=com", + email: "BuratynM@b158d3a8fa274efeac2024038a189bc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Latashia Waldie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Latashia Waldie,ou=Peons,dc=bitwarden,dc=com", + email: "WaldieL@4e073aa3a1c84fccb5d5f011b1fd7a56.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gordy Durham,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gordy Durham,ou=Management,dc=bitwarden,dc=com", + email: "DurhamG@cc8d2b6d697a44a78314b5da49c4f756.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dierdre Isip,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dierdre Isip,ou=Payroll,dc=bitwarden,dc=com", + email: "IsipD@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden,dc=com", + email: "JakubowR@a71709f685af42718e5d72a70ff54dea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden,dc=com", + email: "BushnelO@8f4e601fed874b8fa44bcb8ac4c7bc3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden,dc=com", + email: "WeidenbE@33e9ea4bed5c488498851d881014c4e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailis Stumpf,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ailis Stumpf,ou=Product Development,dc=bitwarden,dc=com", + email: "StumpfA@90c7f28240314e63a7f7df66dc6b7112.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden,dc=com", + email: "FontaniE@5857bd6862ae44e0abdb84cc22875a30.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Puneet Aloi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Puneet Aloi,ou=Product Testing,dc=bitwarden,dc=com", + email: "AloiP@375640a8a3724defaeb05e0a11f25f5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden,dc=com", + email: "ZeiglerD@be2d8ee120a34b15a9149c5056a15a2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Del Buckingham,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Del Buckingham,ou=Peons,dc=bitwarden,dc=com", + email: "BuckingD@c8d14bd2dc82442f9c5011dbd053c45a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pardeep Roney,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pardeep Roney,ou=Management,dc=bitwarden,dc=com", + email: "RoneyP@a8c73be9cd69486db83d92f072753b6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden,dc=com", + email: "AuYeungS@31118e4ea061472193269b0ea325f915.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valma Myrillas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Valma Myrillas,ou=Product Testing,dc=bitwarden,dc=com", + email: "MyrillaV@1ca512dd590d4189adaf95d52220543f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvira Dessain,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alvira Dessain,ou=Janitorial,dc=bitwarden,dc=com", + email: "DessainA@e00ee60b95474bda83bb814472063684.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melli Ertan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Melli Ertan,ou=Administrative,dc=bitwarden,dc=com", + email: "ErtanM@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keri Stroupe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Keri Stroupe,ou=Product Development,dc=bitwarden,dc=com", + email: "StroupeK@a30b952d2ab641cf9bc7eee94d4f50c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Billi Chiu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Billi Chiu,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChiuB@3603f9fb94e045a59b767f557fde78c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willette Tel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Willette Tel,ou=Janitorial,dc=bitwarden,dc=com", + email: "TelW@9528dc6cbe3247b1b273b1646f94d087.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ynes Jezioranski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ynes Jezioranski,ou=Peons,dc=bitwarden,dc=com", + email: "JezioraY@45e7698e90b843bf96764adac8813e44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teruko Cregan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Teruko Cregan,ou=Peons,dc=bitwarden,dc=com", + email: "CreganT@86d24a798dce4653a3b75c56ae675864.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rick Novisedlak,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rick Novisedlak,ou=Payroll,dc=bitwarden,dc=com", + email: "NovisedR@5411fa97ed104161bed6dae71e8cb050.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden,dc=com", + email: "TiegsA@c5bded5afb9d4ede84cc7d5e63bc3810.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Notley Peterson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Notley Peterson,ou=Payroll,dc=bitwarden,dc=com", + email: "PetersoN@7b57b8e19b5b443b99958998ffeb1b88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joyous ONeal,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Joyous ONeal,ou=Product Testing,dc=bitwarden,dc=com", + email: "ONealJ@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perle Dolan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Perle Dolan,ou=Janitorial,dc=bitwarden,dc=com", + email: "DolanP@c685d3277d5148a0bacdff719084ff0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ioana Hermack,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ioana Hermack,ou=Administrative,dc=bitwarden,dc=com", + email: "HermackI@bb425b89a99c414cb7e4980da4392291.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nikolaos Nickonov,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nikolaos Nickonov,ou=Management,dc=bitwarden,dc=com", + email: "NickonoN@da1b5788f067415eb6baf89891f2b951.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirstie Rodger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kirstie Rodger,ou=Management,dc=bitwarden,dc=com", + email: "RodgerK@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheree Siddell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sheree Siddell,ou=Payroll,dc=bitwarden,dc=com", + email: "SiddellS@c45faf74232c42d9855e1f53b9b93518.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tas Chitnis,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tas Chitnis,ou=Product Development,dc=bitwarden,dc=com", + email: "ChitnisT@c985a5079f444c70910b648248884490.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Whitfield Vexler,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Whitfield Vexler,ou=Administrative,dc=bitwarden,dc=com", + email: "VexlerW@e2a32b6b55ee40dd9f13968ae3f23ead.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden,dc=com", + email: "DrummerM@7358f14ebc1d437faa31666574716056.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janifer Gundecha,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Janifer Gundecha,ou=Management,dc=bitwarden,dc=com", + email: "GundechJ@c21bdca857b64cf18041de8eb907a456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diandra Shnay,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Diandra Shnay,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShnayD@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Semmler Bamfo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Semmler Bamfo,ou=Payroll,dc=bitwarden,dc=com", + email: "BamfoS@4790b8410fc547599da7ac5a22f3c64f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden,dc=com", + email: "GentzleJ@758a671442c6456f8563c5ae42048214.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martina Grazzini,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Martina Grazzini,ou=Janitorial,dc=bitwarden,dc=com", + email: "GrazzinM@566e3f43810e4586a805d84cd5a87397.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minnie Dickie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Minnie Dickie,ou=Product Development,dc=bitwarden,dc=com", + email: "DickieM@3b50811f02664433a227210515cf2d84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susanna Buckman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Susanna Buckman,ou=Human Resources,dc=bitwarden,dc=com", + email: "BuckmanS@b6acb1459b804d2d9243461797b49472.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnette Yendall,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Johnette Yendall,ou=Product Development,dc=bitwarden,dc=com", + email: "YendallJ@c8c5e396d1a54bdc979d0124960b8ac1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurelie Doray,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aurelie Doray,ou=Peons,dc=bitwarden,dc=com", + email: "DorayA@7dfe1b9d3b374cdda358060433bb4037.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden,dc=com", + email: "AravamuL@af4484e6bd354321bc237bc7b6d97e88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dusan Menyhart,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dusan Menyhart,ou=Product Development,dc=bitwarden,dc=com", + email: "MenyharD@36f00fa549b64beb879fa1440346fd8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Utilla Brandon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Utilla Brandon,ou=Peons,dc=bitwarden,dc=com", + email: "BrandonU@4dd21bf6830a4c908b6586742f2895eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden,dc=com", + email: "CrowleE@e60dd9bce03a413a915d470a19570918.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selma Kwant,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Selma Kwant,ou=Product Testing,dc=bitwarden,dc=com", + email: "KwantS@f4a421d551d64acc80985f5e163c5415.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Levent Debord,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Levent Debord,ou=Product Development,dc=bitwarden,dc=com", + email: "DebordL@9676da99cfac4bada210a8c85a95f456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tandie Gourley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tandie Gourley,ou=Peons,dc=bitwarden,dc=com", + email: "GourleyT@0ee3c70c9f6e4a52a872f1ee5ca53058.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Indy Hu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Indy Hu,ou=Administrative,dc=bitwarden,dc=com", + email: "HuI@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden,dc=com", + email: "FrodshaS@d536ba88c4cb494d89cb1893edcec6ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fscocos Houston,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fscocos Houston,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoustonF@ae2e1b915f9e4564acdcb3a48eca2ab9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oriana McInnis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Oriana McInnis,ou=Peons,dc=bitwarden,dc=com", + email: "McInnisO@6ab87a8369934eb19dc984b3fc78b79c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maggee Bentley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maggee Bentley,ou=Payroll,dc=bitwarden,dc=com", + email: "BentleyM@abd7a0e1e97f4d19962cc07f7f9bc4e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inm Venjohn,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Inm Venjohn,ou=Product Testing,dc=bitwarden,dc=com", + email: "VenjohnI@6081422b940842a89e4de80c350bc6cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corena Parks,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Corena Parks,ou=Product Development,dc=bitwarden,dc=com", + email: "ParksC@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Irv Dicks,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Irv Dicks,ou=Administrative,dc=bitwarden,dc=com", + email: "DicksI@1b075a91584f496088ea7442a5922cef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marwan Marks,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marwan Marks,ou=Product Testing,dc=bitwarden,dc=com", + email: "MarksM@fb9aa8f3b49848c792549daf315b1674.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamal Calleja,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kamal Calleja,ou=Janitorial,dc=bitwarden,dc=com", + email: "CallejaK@0838c5a7fb7841708f56102b10a6cd6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jonelle Menna,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jonelle Menna,ou=Product Development,dc=bitwarden,dc=com", + email: "MennaJ@2859f4a34f934de4a7cf31d7c6a4b5d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miran McGinn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Miran McGinn,ou=Product Development,dc=bitwarden,dc=com", + email: "McGinnM@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wan Janovich,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Wan Janovich,ou=Payroll,dc=bitwarden,dc=com", + email: "JanovicW@49f125d3a1b3429789a5b52822aa6b88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden,dc=com", + email: "HawryluS@f80fca089fec450d8b8e1759f0210196.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden,dc=com", + email: "WilsonK@dcbbbc8020794d6691fdae775364846a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerben Dayal,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gerben Dayal,ou=Janitorial,dc=bitwarden,dc=com", + email: "DayalG@19726387c894421098fcd2a309797d54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorilee Ravi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorilee Ravi,ou=Peons,dc=bitwarden,dc=com", + email: "RaviL@d73ef9502e9045388e89e90d1beb22e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=McGee Levasseur,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=McGee Levasseur,ou=Product Testing,dc=bitwarden,dc=com", + email: "LevasseM@2d84c4cc02464a53aeec894db02cd35d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charmain Spurlin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Charmain Spurlin,ou=Administrative,dc=bitwarden,dc=com", + email: "SpurlinC@3725e147678f48a0af59ca54935f5941.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lainey Grainger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lainey Grainger,ou=Administrative,dc=bitwarden,dc=com", + email: "GraingeL@afc892803baf45f7afbf8693d0730fcc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delly Clegg,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Delly Clegg,ou=Product Development,dc=bitwarden,dc=com", + email: "CleggD@f3671dd1ede04fe0afa0f9d1294d7d00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Addie Koolstra,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Addie Koolstra,ou=Human Resources,dc=bitwarden,dc=com", + email: "KoolstrA@ec5483be40a34a1db29ac90c75090868.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nga Orsini,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nga Orsini,ou=Product Development,dc=bitwarden,dc=com", + email: "OrsiniN@6f9b59162216455ba54905a28461b19c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherye Knighten,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cherye Knighten,ou=Janitorial,dc=bitwarden,dc=com", + email: "KnighteC@502ce1a083704d4ea4b58d700d574c63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betteann Sieling,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Betteann Sieling,ou=Human Resources,dc=bitwarden,dc=com", + email: "SielingB@147ca1a79aa4497190610d15bfa8cc6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salim McIntyre,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Salim McIntyre,ou=Administrative,dc=bitwarden,dc=com", + email: "McIntyrS@c2a7b578a92f4e2b90afb4532b24efa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden,dc=com", + email: "FullumJ@4311bb9fc69e4905a1f6f7f3dd2b8fab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karole Heng,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Karole Heng,ou=Product Testing,dc=bitwarden,dc=com", + email: "HengK@d9c6a4248c7f4569bc85ec9d29b8d415.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden,dc=com", + email: "BerryhiJ@1e938c02408a4595b2f669d03197c9de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norio Saifullah,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Norio Saifullah,ou=Human Resources,dc=bitwarden,dc=com", + email: "SaifullN@058dcb3aa7ef439b89d92834e14a6f82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden,dc=com", + email: "JorgensJ@9c687885040c4312b6d12f4acbe7233d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shannen Jagatic,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shannen Jagatic,ou=Payroll,dc=bitwarden,dc=com", + email: "JagaticS@5ffed17cc69d4719b003fa0cfe2777f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vania Gibson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vania Gibson,ou=Product Testing,dc=bitwarden,dc=com", + email: "GibsonV@298910ba55544a1097f46cf86b2ab0db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robyn Blann,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Robyn Blann,ou=Administrative,dc=bitwarden,dc=com", + email: "BlannR@ae78ee526c5e44bdaf510c03b717277a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krier Cruey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Krier Cruey,ou=Management,dc=bitwarden,dc=com", + email: "CrueyK@75ca8d39c50647a3bea983d4fa29d680.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbette Christie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Barbette Christie,ou=Peons,dc=bitwarden,dc=com", + email: "ChristiB@b9f44a907d41480f95c6eb062092de29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Feodora Koller,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Feodora Koller,ou=Management,dc=bitwarden,dc=com", + email: "KollerF@acaa4c14b76249a29cca4a0b1f0dd114.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden,dc=com", + email: "DugalM@fa04a0c4f0124714bcc971e2896a4551.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saudra Ghaemian,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Saudra Ghaemian,ou=Peons,dc=bitwarden,dc=com", + email: "GhaemiaS@054353f98ec44eceb8087bd103f37290.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", + email: "BeattieS@a8d818d625d941f8940e746ecca3cf6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valentine Newell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Valentine Newell,ou=Product Testing,dc=bitwarden,dc=com", + email: "NewellV@9db8fd67fa174b34ab0bd6d5a98f82c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oriana McRae,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Oriana McRae,ou=Product Testing,dc=bitwarden,dc=com", + email: "McRaeO@d5cf7f888ae34eefb2e00a540fba0b35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden,dc=com", + email: "LedouxL@61d80a725e834417bf24b9714b15ac48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kizzee Halley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kizzee Halley,ou=Product Development,dc=bitwarden,dc=com", + email: "HalleyK@999c25847f9849ce9a6f746d005bddef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bette Stellwag,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bette Stellwag,ou=Product Testing,dc=bitwarden,dc=com", + email: "StellwaB@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henriette Peixoto,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Henriette Peixoto,ou=Administrative,dc=bitwarden,dc=com", + email: "PeixotoH@8aed4579481d435c98b14fd5983c7417.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matt Denmark,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Matt Denmark,ou=Management,dc=bitwarden,dc=com", + email: "DenmarkM@dfaff98f73b34c5995272b067ac045a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden,dc=com", + email: "VerrennA@6d6628d9da624cadbb049fbfa6bdf2da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Feng Rowland,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Feng Rowland,ou=Payroll,dc=bitwarden,dc=com", + email: "RowlandF@520f892e74614b6eaf9cfa5ff5ab84c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theresa Naguib,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Theresa Naguib,ou=Administrative,dc=bitwarden,dc=com", + email: "NaguibT@047f5532df204d5fa9cb51221c4d098a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eden Annibale,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Eden Annibale,ou=Peons,dc=bitwarden,dc=com", + email: "AnnibalE@b2685c20be7244a2b29f08c6434ac903.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden,dc=com", + email: "PueGilcB@f23aa8a9cb8a42ba9799719ef81fbcb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cele Toshach,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cele Toshach,ou=Payroll,dc=bitwarden,dc=com", + email: "ToshachC@a44012f01e89409bb9b3f2e9702266f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Car Naro,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Car Naro,ou=Janitorial,dc=bitwarden,dc=com", + email: "NaroC@a23e4ef8816f40919cd3b230902d58ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jocelyn Napert,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jocelyn Napert,ou=Payroll,dc=bitwarden,dc=com", + email: "NapertJ@dce637b43f194588ba44f478eabb0b1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden,dc=com", + email: "DalrympC@3f891cf88f8f4b9cb80e52276f5b9b1c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlette Irani,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Arlette Irani,ou=Management,dc=bitwarden,dc=com", + email: "IraniA@fa6f1422a9064a168045966e8899109e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeCristN@ce05c4f2c87a4de7a2796014b61208f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden,dc=com", + email: "JeffrieC@d92ad7c360d346679da2cf1b78e9ba49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Basheer Berhane,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Basheer Berhane,ou=Payroll,dc=bitwarden,dc=com", + email: "BerhaneB@cff83e5325124f689808e755392aa586.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden,dc=com", + email: "SulatycM@11006cb63c014ed78431f32c1edc2e50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoraeteB@03c9972260df454c80f48cf3fc865b2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betti Tilley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Betti Tilley,ou=Janitorial,dc=bitwarden,dc=com", + email: "TilleyB@52e45fbd04374d8187c124fd4ea8990e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashu Drakage,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ashu Drakage,ou=Peons,dc=bitwarden,dc=com", + email: "DrakageA@29ddc254020a4d509a3e447f6b0e374a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yetty Likert,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Yetty Likert,ou=Administrative,dc=bitwarden,dc=com", + email: "LikertY@f576fe3e1f814a9ea745cbacb8aae078.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nady Bushnell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nady Bushnell,ou=Product Testing,dc=bitwarden,dc=com", + email: "BushnelN@4f0015ca79e24121bcec866af73ee713.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selle Verch,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Selle Verch,ou=Administrative,dc=bitwarden,dc=com", + email: "VerchS@6b2e3d121ebe4eb0bcbc734c374a1042.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden,dc=com", + email: "ToletzkB@a0e52fac0f494b0982a62c82b5201e22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden,dc=com", + email: "PascaleY@f72cf2b3454841e499da566c9feae899.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YeeNing Sikes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=YeeNing Sikes,ou=Management,dc=bitwarden,dc=com", + email: "SikesY@3b9a242739aa4b0aa6818d262f7df54b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bachittar Seamster,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bachittar Seamster,ou=Product Development,dc=bitwarden,dc=com", + email: "SeamsteB@dab392e4f9aa43b99ad711498543123e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elmer Gribbon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Elmer Gribbon,ou=Management,dc=bitwarden,dc=com", + email: "GribbonE@7101039e23634506b2da2b1c92ecb4cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden,dc=com", + email: "ThuswalC@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden,dc=com", + email: "BeaulieN@1749fb9f385d47ab94fc08c03ceb3689.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden,dc=com", + email: "AndruzzG@40544cfce21b453a8a348a622d569594.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlin Schrier,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marlin Schrier,ou=Payroll,dc=bitwarden,dc=com", + email: "SchrierM@27b3ace1dd6948c9b5b4ab8ce5109020.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobb Bowcock,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bobb Bowcock,ou=Management,dc=bitwarden,dc=com", + email: "BowcockB@640099050d1b4ffe96ecc4fd391c252e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermia Mendez,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hermia Mendez,ou=Management,dc=bitwarden,dc=com", + email: "MendezH@275eb97478fb4994bc1f48d698b5aa05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden,dc=com", + email: "HoytJ@e13bfc0b89e445668bff1bfb45347a50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thaddeus Hoehn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Thaddeus Hoehn,ou=Management,dc=bitwarden,dc=com", + email: "HoehnT@36fbb38d5bbe4aa29ae95e79bf727529.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bawn Asfazadour,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bawn Asfazadour,ou=Management,dc=bitwarden,dc=com", + email: "AsfazadB@6d93f84a8aef4b70975e9d9fd01027a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden,dc=com", + email: "IngersoJ@15ff23f989894575aad93f5e7d401d8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franky Foest,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Franky Foest,ou=Administrative,dc=bitwarden,dc=com", + email: "FoestF@57a6ba7501424a8abade55339f684e3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphene Scheck,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Daphene Scheck,ou=Janitorial,dc=bitwarden,dc=com", + email: "ScheckD@973527d3929842be874997364fd01259.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milicent Hoeler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Milicent Hoeler,ou=Management,dc=bitwarden,dc=com", + email: "HoelerM@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luis Louis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Luis Louis,ou=Janitorial,dc=bitwarden,dc=com", + email: "LouisL@f23b5ffe63104ae0be308f3a9ff9e9f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daveta SiuKwok,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Daveta SiuKwok,ou=Peons,dc=bitwarden,dc=com", + email: "SiuKwokD@2f60f554d60143df8c782af78b69eca5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minni Daymond,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Minni Daymond,ou=Administrative,dc=bitwarden,dc=com", + email: "DaymondM@56b1727a87724d8d92953fb81fb48bde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Muriel Barakat,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Muriel Barakat,ou=Product Testing,dc=bitwarden,dc=com", + email: "BarakatM@602d8f6d1a6449018081ad850b50b27b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thuan Szaran,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Thuan Szaran,ou=Product Development,dc=bitwarden,dc=com", + email: "SzaranT@7ce4f6cd43f8492dae2090d4de3aa803.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mitchell Willette,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mitchell Willette,ou=Janitorial,dc=bitwarden,dc=com", + email: "WillettM@9f3819b9115a462187208879243957c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden,dc=com", + email: "SherrerL@d8b58b77cc0a4df1b559d499a84b4151.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mohan Piper,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mohan Piper,ou=Product Testing,dc=bitwarden,dc=com", + email: "PiperM@c7fccfd1c09b42959a9d0aa1b9f02b2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmelle Froud,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carmelle Froud,ou=Administrative,dc=bitwarden,dc=com", + email: "FroudC@be4e574e5026401884f8759627863563.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Modesta Farr,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Modesta Farr,ou=Product Testing,dc=bitwarden,dc=com", + email: "FarrM@0a6ccfe4eb2e49debe0647e11b1f99cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liese Griffiths,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Liese Griffiths,ou=Management,dc=bitwarden,dc=com", + email: "GriffitL@37ed0472c8f94c52a139aaa374db7e5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meghan Carboni,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Meghan Carboni,ou=Product Development,dc=bitwarden,dc=com", + email: "CarboniM@a973beae67824ff38510168917193e58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryon Kluger,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bryon Kluger,ou=Product Testing,dc=bitwarden,dc=com", + email: "KlugerB@085bf0384c944c1888b51dc3d32dbe90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petar Khatri,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Petar Khatri,ou=Human Resources,dc=bitwarden,dc=com", + email: "KhatriP@8805d6cd448b4a24b0d06f88effec17a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paige Poustchi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Paige Poustchi,ou=Peons,dc=bitwarden,dc=com", + email: "PoustchP@108d9f732ac3490887754db53858df8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessa Dias,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jessa Dias,ou=Payroll,dc=bitwarden,dc=com", + email: "DiasJ@8c8779840fce4d49b2efa3b601dc72f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zorah Purohit,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zorah Purohit,ou=Janitorial,dc=bitwarden,dc=com", + email: "PurohitZ@5abf2b8f947a433ea32c981885ccae42.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shoshanna Talevi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shoshanna Talevi,ou=Peons,dc=bitwarden,dc=com", + email: "TaleviS@c81ed34bb34947a5895b38d18b584ea9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Priore Hastings,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Priore Hastings,ou=Administrative,dc=bitwarden,dc=com", + email: "HastingP@a189ef9bea1d4aa0817496c23ee8a14a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tulip Waytowich,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tulip Waytowich,ou=Administrative,dc=bitwarden,dc=com", + email: "WaytowiT@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hirooki Skwarok,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hirooki Skwarok,ou=Peons,dc=bitwarden,dc=com", + email: "SkwarokH@9d0c1ab997a64b1aa5f189a424192827.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Balaji Brogden,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Balaji Brogden,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrogdenB@eea80c8a097c479ea0dd92bdda8bd86a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zola Cuddihey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Zola Cuddihey,ou=Payroll,dc=bitwarden,dc=com", + email: "CuddiheZ@ed7e2f8d7425488d82f7ded229b79bb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanDenis Intihar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=JeanDenis Intihar,ou=Management,dc=bitwarden,dc=com", + email: "IntiharJ@e5815cb148a4476da087f6d68289008e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rejean Marc,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rejean Marc,ou=Management,dc=bitwarden,dc=com", + email: "MarcR@497dbd8e2321422c853f4b9c5d8bb34f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aly Mooney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aly Mooney,ou=Product Development,dc=bitwarden,dc=com", + email: "MooneyA@d0494e96e3ad464e9c20a3d7c613cc77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daniele Mondor,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Daniele Mondor,ou=Payroll,dc=bitwarden,dc=com", + email: "MondorD@49c91dea2e0244bc9e7e6873f695d864.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden,dc=com", + email: "PietromB@305e27c7ee6b4670a05bbda0ab5d7f89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charman Feeley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Charman Feeley,ou=Human Resources,dc=bitwarden,dc=com", + email: "FeeleyC@f2fad2df78014e219f0dfac94c80d8ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Auto Arwakhi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Auto Arwakhi,ou=Peons,dc=bitwarden,dc=com", + email: "ArwakhiA@9a52b4299dba4fcc9447b288652d9c6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulette Lunn,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Paulette Lunn,ou=Payroll,dc=bitwarden,dc=com", + email: "LunnP@09621247c2534422b65027556ba23ec6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden,dc=com", + email: "LowrieS@318df10c24464190a253b688eda7b7e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kellia Froud,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kellia Froud,ou=Management,dc=bitwarden,dc=com", + email: "FroudK@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vittorio Calis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vittorio Calis,ou=Payroll,dc=bitwarden,dc=com", + email: "CalisV@35c60780308849d18668cfb9d96a5c3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryam Doan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maryam Doan,ou=Product Development,dc=bitwarden,dc=com", + email: "DoanM@715d11b1e91d44f4af22ec63f72507bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden,dc=com", + email: "BlaikloW@6529706823d04eeaa37acaabefd44ca6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nathalia Haerle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nathalia Haerle,ou=Management,dc=bitwarden,dc=com", + email: "HaerleN@96032122dc744c8fbec592d140680fed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krystn OHeocha,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Krystn OHeocha,ou=Payroll,dc=bitwarden,dc=com", + email: "OHeochaK@a3cde3b2f5de4fe5ac11c48bb6df28f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden,dc=com", + email: "GaylorB@69527a1c41b04ddda793d00fb5a21087.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carena Chaplin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carena Chaplin,ou=Product Development,dc=bitwarden,dc=com", + email: "ChaplinC@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eden MacDonald,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Eden MacDonald,ou=Janitorial,dc=bitwarden,dc=com", + email: "MacDonaE@30c53c45b6f04d6394b59a72c6e53b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jo Snuggs,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jo Snuggs,ou=Janitorial,dc=bitwarden,dc=com", + email: "SnuggsJ@811c1b0947ab4a6b8d3a5a6b67955a48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hsinshi Sheth,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hsinshi Sheth,ou=Peons,dc=bitwarden,dc=com", + email: "ShethH@8d06f5c0b94f46838a9f2ef1a0adee08.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tata Whisler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tata Whisler,ou=Product Development,dc=bitwarden,dc=com", + email: "WhislerT@3905d18a9f18484ba7305c447e951282.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Troy Hilton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Troy Hilton,ou=Payroll,dc=bitwarden,dc=com", + email: "HiltonT@4f6eaa02d34342bb804768db4a955608.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binni Siewert,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Binni Siewert,ou=Product Development,dc=bitwarden,dc=com", + email: "SiewertB@30477bd611094e598c75e08386158998.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alyse Wingo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alyse Wingo,ou=Janitorial,dc=bitwarden,dc=com", + email: "WingoA@348abbda65d940ed90bea2bd06d4b311.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ladan Chilausky,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ladan Chilausky,ou=Product Development,dc=bitwarden,dc=com", + email: "ChilausL@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwenette Farago,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gwenette Farago,ou=Management,dc=bitwarden,dc=com", + email: "FaragoG@1d41a9185db448b89563a6b96b582da2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Narinder Staffeld,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Narinder Staffeld,ou=Payroll,dc=bitwarden,dc=com", + email: "StaffelN@18b94ac27b2d4865a7f8d4b03ab48dbb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nir Dionne,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nir Dionne,ou=Management,dc=bitwarden,dc=com", + email: "DionneN@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", + email: "KapusciN@feab464eed244fca93a5368f188977a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LouisRene Ellens,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=LouisRene Ellens,ou=Administrative,dc=bitwarden,dc=com", + email: "EllensL@9b030c1d6ce3438f956ad1da5fffc998.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", + email: "DelbrouC@1aa75fefc8034a8cbf83e5fc6e04d8e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oneida Sallee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Oneida Sallee,ou=Product Development,dc=bitwarden,dc=com", + email: "SalleeO@252628d3a8a547b4b8173e8a6395d7c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Humphrey Redish,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Humphrey Redish,ou=Peons,dc=bitwarden,dc=com", + email: "RedishH@a744dde5438d400a9f30fb0b1e05aeb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kerry Labarge,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kerry Labarge,ou=Administrative,dc=bitwarden,dc=com", + email: "LabargeK@96b5430a2ccc4177bd773424088b496b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden,dc=com", + email: "DynaJ@ee1ca998ef0c4e3c87539ff6e0c1d116.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quyen Aronstam,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Quyen Aronstam,ou=Administrative,dc=bitwarden,dc=com", + email: "AronstaQ@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KaiMing Parker,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=KaiMing Parker,ou=Administrative,dc=bitwarden,dc=com", + email: "ParkerK@c0e366bec54b485a8d61f1970ea7c375.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden,dc=com", + email: "TrottieS@0998558a764541358e8e70ab479cfe9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laure Norman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Laure Norman,ou=Product Testing,dc=bitwarden,dc=com", + email: "NormanL@018225420a5943d2a91cb3848fc99ee2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fabienne Koprulu,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fabienne Koprulu,ou=Peons,dc=bitwarden,dc=com", + email: "KopruluF@9a3c3b333ac543bcbc3719d5e5f7e60a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prue Dipace,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Prue Dipace,ou=Human Resources,dc=bitwarden,dc=com", + email: "DipaceP@b7704ef8877240b4aae9e468e0491f7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randolph Holtze,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Randolph Holtze,ou=Payroll,dc=bitwarden,dc=com", + email: "HoltzeR@b2c5462eaeaa4640a2c56a8da0727115.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julianna Amin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Julianna Amin,ou=Payroll,dc=bitwarden,dc=com", + email: "AminJ@e6477a83acf9482988792cb439447756.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Iris Berryhill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Iris Berryhill,ou=Product Testing,dc=bitwarden,dc=com", + email: "BerryhiI@2e9a9ce249974ccc8921959c5ef73583.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mahendra Michelussi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mahendra Michelussi,ou=Management,dc=bitwarden,dc=com", + email: "MicheluM@a09d9f82d6b74098a2eff99c6eae04fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melesa Beagley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Melesa Beagley,ou=Human Resources,dc=bitwarden,dc=com", + email: "BeagleyM@522cf8a1d4424cc392ce0a8035040445.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden,dc=com", + email: "GodcharS@325563a273824a869e09481a2b6a16f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khue Medeiros,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Khue Medeiros,ou=Payroll,dc=bitwarden,dc=com", + email: "MedeiroK@7dfa0e40dad7443abc6740798a2e0865.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evangeline Vance,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Evangeline Vance,ou=Product Development,dc=bitwarden,dc=com", + email: "VanceE@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden,dc=com", + email: "AuerbacC@89e33259b1f341dda582db87064be4b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Czes Corkey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Czes Corkey,ou=Human Resources,dc=bitwarden,dc=com", + email: "CorkeyC@fca42d05acbe47a69668ab85d76a4968.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malena Cronan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Malena Cronan,ou=Administrative,dc=bitwarden,dc=com", + email: "CronanM@1c6f0f2a2fa54440bc63852786ac9fdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maia Lamy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maia Lamy,ou=Payroll,dc=bitwarden,dc=com", + email: "LamyM@e1b27383fbe2441a83c6100b48427182.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gates Frape,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gates Frape,ou=Product Development,dc=bitwarden,dc=com", + email: "FrapeG@c927612f4cbe4fcf841a3d7e140a391c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berangere Budihardjo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Berangere Budihardjo,ou=Management,dc=bitwarden,dc=com", + email: "BudiharB@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheryl Hekel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sheryl Hekel,ou=Peons,dc=bitwarden,dc=com", + email: "HekelS@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden,dc=com", + email: "MelnykW@35074399d1224376ace4f7f6b3944707.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden,dc=com", + email: "LanoueM@4dcaaea580ca474bb2f3cd6f13c671c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaycee Wu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kaycee Wu,ou=Product Testing,dc=bitwarden,dc=com", + email: "WuK@c36b5ab628a4492284d8bcf464596410.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herbie Njo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Herbie Njo,ou=Payroll,dc=bitwarden,dc=com", + email: "NjoH@0534f193dc3e49e39af35f74a2ae824e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devan McCorkell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Devan McCorkell,ou=Management,dc=bitwarden,dc=com", + email: "McCorkeD@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crin Landon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Crin Landon,ou=Payroll,dc=bitwarden,dc=com", + email: "LandonC@3a57e18936584b66bbd6dab5016a2418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wrennie Dinkel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Wrennie Dinkel,ou=Peons,dc=bitwarden,dc=com", + email: "DinkelW@a1c56eec6729476b83e51d12766bbfe0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siana Duffney,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Siana Duffney,ou=Management,dc=bitwarden,dc=com", + email: "DuffneyS@831a31deb2a74949a5486f724fd8cfc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Holst IC,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Holst IC,ou=Product Testing,dc=bitwarden,dc=com", + email: "ICH@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SikYin Matney,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=SikYin Matney,ou=Janitorial,dc=bitwarden,dc=com", + email: "MatneyS@b9e4a0690cd34f8480fc7a1a23da2269.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Masahiro Lauten,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Masahiro Lauten,ou=Peons,dc=bitwarden,dc=com", + email: "LautenM@79543dffda8c496eb838ccbc46809c40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nash Hesk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nash Hesk,ou=Janitorial,dc=bitwarden,dc=com", + email: "HeskN@d350f564497d40f297b86fde9fbf3e8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pier Kimma,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pier Kimma,ou=Product Testing,dc=bitwarden,dc=com", + email: "KimmaP@df43705c6bc34c44a92745bc3d700137.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenee Gryder,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lenee Gryder,ou=Product Testing,dc=bitwarden,dc=com", + email: "GryderL@b6dc43d5b48948bcabf31d42dd4a3286.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loesje Javor,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Loesje Javor,ou=Product Testing,dc=bitwarden,dc=com", + email: "JavorL@506df50552454f5fafc356a1c35c2a63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sallie Lehman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sallie Lehman,ou=Management,dc=bitwarden,dc=com", + email: "LehmanS@b7c75c00628342f998e34089fb1fbe29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yvette Yun,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yvette Yun,ou=Human Resources,dc=bitwarden,dc=com", + email: "YunY@bea3df99128348b58312efa7b662b9b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rui Hawi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rui Hawi,ou=Janitorial,dc=bitwarden,dc=com", + email: "HawiR@3cd7d03398eb49148242d22a819d71a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden,dc=com", + email: "BredfelG@3bd7ee942f7249be99148fd37660d7db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden,dc=com", + email: "HiscottE@5fa2601aad7947d29e66e0d319cf4fe6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Costas Pracht,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Costas Pracht,ou=Management,dc=bitwarden,dc=com", + email: "PrachtC@a568169c30834110907d40bc84b45600.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rec Mazarick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rec Mazarick,ou=Product Testing,dc=bitwarden,dc=com", + email: "MazaricR@729666359ed04f0995bf97703c170436.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Del Ambler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Del Ambler,ou=Product Development,dc=bitwarden,dc=com", + email: "AmblerD@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden,dc=com", + email: "LischynC@d7d5276b76fc44cfaa24d383211b91ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tessi Denebeim,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tessi Denebeim,ou=Peons,dc=bitwarden,dc=com", + email: "DenebeiT@f04d099937f74fc993f7a60158339d87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pru Digiacomo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pru Digiacomo,ou=Peons,dc=bitwarden,dc=com", + email: "DigiacoP@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annabell Fung,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Annabell Fung,ou=Human Resources,dc=bitwarden,dc=com", + email: "FungA@7cfb89381cc04fdd8150ed096a9b1503.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alberta Widener,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alberta Widener,ou=Peons,dc=bitwarden,dc=com", + email: "WidenerA@47e5e279eb034f06bf0151f655d29134.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PakJong Klebsch,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=PakJong Klebsch,ou=Administrative,dc=bitwarden,dc=com", + email: "KlebschP@d823092534664221878b6c81b822deac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Detlev Croxford,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Detlev Croxford,ou=Payroll,dc=bitwarden,dc=com", + email: "CroxforD@e7d87afea27e4692a1bc5a19d69abd1c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Graeme Khatri,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Graeme Khatri,ou=Product Testing,dc=bitwarden,dc=com", + email: "KhatriG@248fbbdd5e2b4efdbf1ff86927aed801.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franky Dattalo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Franky Dattalo,ou=Payroll,dc=bitwarden,dc=com", + email: "DattaloF@dc096225ff66467cb73d02445cb8563d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Careers Howes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Careers Howes,ou=Peons,dc=bitwarden,dc=com", + email: "HowesC@8970f66e3c7349128b71099e5c1cee90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susie Gawdan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Susie Gawdan,ou=Janitorial,dc=bitwarden,dc=com", + email: "GawdanS@70f44c830c534fd69815f0a242b800aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milou Lepine,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Milou Lepine,ou=Administrative,dc=bitwarden,dc=com", + email: "LepineM@2c973510a0ad49a29c0e5f61ce1778be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ransom Steski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ransom Steski,ou=Payroll,dc=bitwarden,dc=com", + email: "SteskiR@fe6a97f91a3b481692abba6662452ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ItsEng Lander,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=ItsEng Lander,ou=Administrative,dc=bitwarden,dc=com", + email: "LanderI@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kevyn Dore,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kevyn Dore,ou=Janitorial,dc=bitwarden,dc=com", + email: "DoreK@094b6a4c917e4f98917e91b5a1b28522.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden,dc=com", + email: "MicheluA@b18337be90444413a3513ff8460e86cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merna MacNeill,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Merna MacNeill,ou=Janitorial,dc=bitwarden,dc=com", + email: "MacNeilM@e7982141a478415494932da6ee7a398d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ioan Goridkov,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ioan Goridkov,ou=Payroll,dc=bitwarden,dc=com", + email: "GoridkoI@2b27acc969e94cf2aa1e0ddf34189475.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michelle Miner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Michelle Miner,ou=Human Resources,dc=bitwarden,dc=com", + email: "MinerM@d692d5cfe1f94d9b9ba0601cc719f91a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mair Harada,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mair Harada,ou=Janitorial,dc=bitwarden,dc=com", + email: "HaradaM@1b636b69f1444511aab6fb21d5a45120.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynnet Lewandowski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lynnet Lewandowski,ou=Management,dc=bitwarden,dc=com", + email: "LewandoL@c2594ac246a645e3be48149271f5e260.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden,dc=com", + email: "HotlistP@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henk Ramanathan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Henk Ramanathan,ou=Management,dc=bitwarden,dc=com", + email: "RamanatH@7b9bbc8a8db749adaa5d570b3f3c2a12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden,dc=com", + email: "HiltzA@5ce200ed1ad64bcaad8122a35e26d155.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selinda Settels,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Selinda Settels,ou=Product Development,dc=bitwarden,dc=com", + email: "SettelsS@4d6e294f43da4e31ad0f159e88e5f4be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden,dc=com", + email: "HerlihyS@6f9ae78114a84c0589079525f6533789.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ItsEng Kozak,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ItsEng Kozak,ou=Management,dc=bitwarden,dc=com", + email: "KozakI@f6644bbdf7854f02affd71b3a7133d91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden,dc=com", + email: "DeitikeB@f615417804714e2b90444d84fdf4c3ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marybelle Ervi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marybelle Ervi,ou=Payroll,dc=bitwarden,dc=com", + email: "ErviM@3f4b9aad0e4547d9998409b9c2b65792.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yuji Menna,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yuji Menna,ou=Peons,dc=bitwarden,dc=com", + email: "MennaY@5278466bedb347c588c1bbec6486c3cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harlene Koa,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Harlene Koa,ou=Human Resources,dc=bitwarden,dc=com", + email: "KoaH@f920b917085d494384c9f6cf31731d98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prashant Feltman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Prashant Feltman,ou=Product Development,dc=bitwarden,dc=com", + email: "FeltmanP@0fd4dc879e87454189121973304c8184.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margit Waghray,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Margit Waghray,ou=Management,dc=bitwarden,dc=com", + email: "WaghrayM@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naim Paar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Naim Paar,ou=Peons,dc=bitwarden,dc=com", + email: "PaarN@f7d02b716b224e868c9d7b6fe1dd0e0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flying Labossiere,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Flying Labossiere,ou=Human Resources,dc=bitwarden,dc=com", + email: "LabossiF@9135ac12963a4f24b390086599e22c6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbette Kolski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Barbette Kolski,ou=Product Development,dc=bitwarden,dc=com", + email: "KolskiB@1c75dd756d3646528231e24a92716bd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden,dc=com", + email: "ParmaksN@40663fdde0124ce29770203c85e196b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joby Paulovics,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joby Paulovics,ou=Human Resources,dc=bitwarden,dc=com", + email: "PauloviJ@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden,dc=com", + email: "ElkinsY@ed96afcd8b954b4d85dba951a21a6324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden,dc=com", + email: "PrakashZ@801739f6e42441ccb9598e407460b5bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden,dc=com", + email: "OKellyM@dd6d4c6b1dd34999828d0c453a81ce8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden,dc=com", + email: "StadlerA@a3bd8e44117346b9ae0cabd5005504fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Feliza Grabner,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Feliza Grabner,ou=Payroll,dc=bitwarden,dc=com", + email: "GrabnerF@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden,dc=com", + email: "TischhaK@03d46b0722db4aefabede2394ef70138.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dona VanLoon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dona VanLoon,ou=Payroll,dc=bitwarden,dc=com", + email: "VanLoonD@8867d48f5a1a4686bc365aa8db240829.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquie Thorson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jacquie Thorson,ou=Administrative,dc=bitwarden,dc=com", + email: "ThorsonJ@e915bf6c406f46f5ac163116df6fd9b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden,dc=com", + email: "TandberV@af244d93e89148e099720c8250f904c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Appolonia Roberge,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Appolonia Roberge,ou=Payroll,dc=bitwarden,dc=com", + email: "RobergeA@a1229ea2ddce4147b437f4d3ad26de38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blaise Huynh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Blaise Huynh,ou=Product Development,dc=bitwarden,dc=com", + email: "HuynhB@80d7a9e833dc41e18b9463841847c534.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lashonda Ogburn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lashonda Ogburn,ou=Management,dc=bitwarden,dc=com", + email: "OgburnL@d4c72bac49924f79b7ada92d433b947c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juline Flindall,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Juline Flindall,ou=Product Testing,dc=bitwarden,dc=com", + email: "FlindalJ@9dcbe58177c3454c992be9f2bcd770bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lujanka Paylor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lujanka Paylor,ou=Peons,dc=bitwarden,dc=com", + email: "PaylorL@a90573a98b164929a489e62b8b0a18ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbee Brox,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Barbee Brox,ou=Human Resources,dc=bitwarden,dc=com", + email: "BroxB@2126a4a93d82446eaaae85cb511bb3eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julia Zanetti,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Julia Zanetti,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZanettiJ@ede35e44c10a4bf48fb611de6dfbedd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othilia Rch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Othilia Rch,ou=Janitorial,dc=bitwarden,dc=com", + email: "RchO@7f678caa888b47ceb5d57deda96772c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaal Despault,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gaal Despault,ou=Human Resources,dc=bitwarden,dc=com", + email: "DespaulG@7092afcac0d743dda822cd8d0349a08e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mary Zalzale,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mary Zalzale,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZalzaleM@4142573bf2cb42fca0124350cec5645b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilmi Guilbault,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hilmi Guilbault,ou=Management,dc=bitwarden,dc=com", + email: "GuilbauH@e51ab927442b42fd83641345150b54a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YuenPui Matney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=YuenPui Matney,ou=Product Development,dc=bitwarden,dc=com", + email: "MatneyY@7b527a6c34584da5add653a316e64744.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heidie Schieber,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Heidie Schieber,ou=Administrative,dc=bitwarden,dc=com", + email: "SchiebeH@f30af69fd37e4f8a883a02cf91c85b15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denise Tranter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Denise Tranter,ou=Human Resources,dc=bitwarden,dc=com", + email: "TranterD@01fa9120f2a14ce7afdb05e2fa84950c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassy Burge,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cassy Burge,ou=Peons,dc=bitwarden,dc=com", + email: "BurgeC@0c4de0f537ac4059b43bc376b1423585.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden,dc=com", + email: "WacheskA@ffedbb5dcd2e43d89a2fe0f7ea7157e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden,dc=com", + email: "ColtonR@bc86e63e2935428fbf0579fffe710ad0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden,dc=com", + email: "McCulloL@f0d259bb55714f71bf010360d9c0c675.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rowena Kam,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rowena Kam,ou=Administrative,dc=bitwarden,dc=com", + email: "KamR@a15bed22c46f4004bbe3a24f37013ebd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theodore Murris,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Theodore Murris,ou=Administrative,dc=bitwarden,dc=com", + email: "MurrisT@b956ceb4b4ac4e2e8c019866386df8f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden,dc=com", + email: "SugarbrR@ead811946c1c45dc9e9e74c993c44021.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bang Lischynsky,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bang Lischynsky,ou=Management,dc=bitwarden,dc=com", + email: "LischynB@93250e1458e9462fb7830f342f899a75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden,dc=com", + email: "FleuchaD@df8b9402b189403dbb23818be84e6eeb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delphine Yuan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Delphine Yuan,ou=Janitorial,dc=bitwarden,dc=com", + email: "YuanD@9aed867d53c546c79f7cb774a38dec77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden,dc=com", + email: "CorkumK@c32875a7d5c84e0cbf7df721e038b80b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heloise Woodall,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Heloise Woodall,ou=Janitorial,dc=bitwarden,dc=com", + email: "WoodallH@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ram Minter,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ram Minter,ou=Janitorial,dc=bitwarden,dc=com", + email: "MinterR@e60de99cf3fe4ed19d668de1778949e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosa ElAm,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rosa ElAm,ou=Human Resources,dc=bitwarden,dc=com", + email: "ElAmR@db74de76c5374bf883b5c0e4951495b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirene Id,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shirene Id,ou=Payroll,dc=bitwarden,dc=com", + email: "IdS@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pauline Noffke,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pauline Noffke,ou=Human Resources,dc=bitwarden,dc=com", + email: "NoffkeP@8ad57fa5a0014d7d86bb326fd3c22de8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seungchul Irwin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Seungchul Irwin,ou=Product Development,dc=bitwarden,dc=com", + email: "IrwinS@8b295e8cd635489485394b6d99d818e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrlene Santi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Myrlene Santi,ou=Product Development,dc=bitwarden,dc=com", + email: "SantiM@11b234eea2bc47719297586301a47914.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perry Lovejoy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Perry Lovejoy,ou=Administrative,dc=bitwarden,dc=com", + email: "LovejoyP@181e7c5d669f48eca80875ae007e40bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viola Gundry,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Viola Gundry,ou=Janitorial,dc=bitwarden,dc=com", + email: "GundryV@af5f99a04b4d4049bab4751bf65043cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vlado Dordari,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vlado Dordari,ou=Janitorial,dc=bitwarden,dc=com", + email: "DordariV@3d08abe32a7a4ad6ad8c863880ea4bcf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cindra DeMarco,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cindra DeMarco,ou=Management,dc=bitwarden,dc=com", + email: "DeMarcoC@9b0aeac2cdb5436687a362cde882372c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delcine Wyss,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Delcine Wyss,ou=Product Testing,dc=bitwarden,dc=com", + email: "WyssD@42acff70d0bf48f9a8fb0c9bb9ccac94.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden,dc=com", + email: "KleynenE@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurora Gibb,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Aurora Gibb,ou=Human Resources,dc=bitwarden,dc=com", + email: "GibbA@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rona Maciel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rona Maciel,ou=Payroll,dc=bitwarden,dc=com", + email: "MacielR@06b78485a19a4427830768a006ea8516.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moel Goswick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Moel Goswick,ou=Management,dc=bitwarden,dc=com", + email: "GoswickM@726a27d8fd0d444e9b0592ed813a614a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coord Herrington,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Coord Herrington,ou=Peons,dc=bitwarden,dc=com", + email: "HerringC@8bced59a99724d5eb08954ec3497f98c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vic Cullen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vic Cullen,ou=Janitorial,dc=bitwarden,dc=com", + email: "CullenV@2f1ccd0f317a4e42955b19a4c97fc5c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabine Misko,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sabine Misko,ou=Janitorial,dc=bitwarden,dc=com", + email: "MiskoS@04065a5c7f734c5a9f2f4f6ee5fbcb1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden,dc=com", + email: "MalynowC@18892b15c58d47f6840bb6c23b52349b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annmarie Brunet,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Annmarie Brunet,ou=Payroll,dc=bitwarden,dc=com", + email: "BrunetA@a371212c7c2b4312bdb15d1cffb21938.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden,dc=com", + email: "XmssuppC@3b0207fba5944fd0a6dca16921952a03.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Icy Meleski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Icy Meleski,ou=Human Resources,dc=bitwarden,dc=com", + email: "MeleskiI@d1aff07ca59844dcbbf406f0fc775f82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Apollo Mitalas,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Apollo Mitalas,ou=Management,dc=bitwarden,dc=com", + email: "MitalasA@f34e8d49f28f402594055fe0901d1b44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirleen Costache,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shirleen Costache,ou=Payroll,dc=bitwarden,dc=com", + email: "CostachS@8386f2764ec04b659a8fc2d330c9443a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tulip Bannan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tulip Bannan,ou=Payroll,dc=bitwarden,dc=com", + email: "BannanT@c6a8d6d12ae045f8ba075455c769a929.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mareah Mior,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mareah Mior,ou=Product Development,dc=bitwarden,dc=com", + email: "MiorM@ba2be91aa4064d8bbc344c883875d66e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden,dc=com", + email: "SpaughT@34766460128a4ee582041f543b9bd242.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorraine Sikri,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lorraine Sikri,ou=Product Development,dc=bitwarden,dc=com", + email: "SikriL@5de6e5b11af645c19702df156533c6ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden,dc=com", + email: "DeBernaL@f9e807ad6c8448a7b4463b10b5cc7416.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karyn Laroche,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Karyn Laroche,ou=Payroll,dc=bitwarden,dc=com", + email: "LarocheK@a5bee62da8ef4e9d8313518642926292.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koral Carkner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Koral Carkner,ou=Peons,dc=bitwarden,dc=com", + email: "CarknerK@8d84473559264c6592d3bbcbad962447.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hyung Harada,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hyung Harada,ou=Peons,dc=bitwarden,dc=com", + email: "HaradaH@bd28f191e92142cf98b8765cb13928aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lottie Fernald,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lottie Fernald,ou=Janitorial,dc=bitwarden,dc=com", + email: "FernaldL@d749086910384a37b3e64dd02ab05f90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edyta Samalot,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Edyta Samalot,ou=Product Testing,dc=bitwarden,dc=com", + email: "SamalotE@7848d01e47bb47dd88ac5b785d126995.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eoin Morrin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Eoin Morrin,ou=Product Development,dc=bitwarden,dc=com", + email: "MorrinE@28a93f8db65e4c7896a7639f8d2d6945.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Froukje Viney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Froukje Viney,ou=Administrative,dc=bitwarden,dc=com", + email: "VineyF@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sir Rivera,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sir Rivera,ou=Payroll,dc=bitwarden,dc=com", + email: "RiveraS@2f8feafb11c746348907c348d024b2dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden,dc=com", + email: "CauthenT@074a9a8e88a74ca2b469a141eb213f61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ky LEcuyer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ky LEcuyer,ou=Peons,dc=bitwarden,dc=com", + email: "LEcuyerK@5acaf493974e4933b27d5e78e25585d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden,dc=com", + email: "FlueckiM@9a46632bfd114a35bc91d48e26ae1de0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Buda Lumley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Buda Lumley,ou=Administrative,dc=bitwarden,dc=com", + email: "LumleyB@058dcb3aa7ef439b89d92834e14a6f82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden,dc=com", + email: "BittenbH@8086b9fea7b2437cb09806e8e5c40f1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marley Haley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marley Haley,ou=Human Resources,dc=bitwarden,dc=com", + email: "HaleyM@108017314a624d21908ec502dfe2ba35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ernestine Newport,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ernestine Newport,ou=Management,dc=bitwarden,dc=com", + email: "NewportE@5b18d26e867d4e609682950868db4cbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrtle Bernier,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Myrtle Bernier,ou=Management,dc=bitwarden,dc=com", + email: "BernierM@882aa483754845e7b3e2e0ad8b5f2465.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden,dc=com", + email: "MikhailL@07ab31b82e2e4a9b8fae125fc95e3c8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karil Chennette,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karil Chennette,ou=Management,dc=bitwarden,dc=com", + email: "ChennetK@dbab907c037c4b6c9575abe77a070057.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liz Burrowes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Liz Burrowes,ou=Product Testing,dc=bitwarden,dc=com", + email: "BurroweL@bce34cfdf7754b3b8c5551673f06b428.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivona Koch,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ivona Koch,ou=Administrative,dc=bitwarden,dc=com", + email: "KochI@77df1d4a30ab443892398806ba3c7576.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berta Mou,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Berta Mou,ou=Management,dc=bitwarden,dc=com", + email: "MouB@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pris Freire,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pris Freire,ou=Human Resources,dc=bitwarden,dc=com", + email: "FreireP@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toyanne Ragde,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Toyanne Ragde,ou=Administrative,dc=bitwarden,dc=com", + email: "RagdeT@7056e30d771245dcacf5054aa8552268.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Domenick Zingeler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Domenick Zingeler,ou=Management,dc=bitwarden,dc=com", + email: "ZingeleD@8289a29e96624f61a290ca3e806f9dd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stergios Incze,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Stergios Incze,ou=Human Resources,dc=bitwarden,dc=com", + email: "InczeS@733a0ed9ca244d1a87001be1b9e9514d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZegrayD@cc36ba74c0ba485aa780b52eb8bbc932.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZiebartH@678eafe7ca0c42cbb92380789ecb5326.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden,dc=com", + email: "OzyetisM@2760ce3bd4ad488f9656332aa7dc01c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hera Haupt,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hera Haupt,ou=Administrative,dc=bitwarden,dc=com", + email: "HauptH@887a5031be2f4823b51a61ce6f7368d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden,dc=com", + email: "LahteenS@0a64fcd3d4a341f2b777b42a710cb464.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robena Scodras,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Robena Scodras,ou=Payroll,dc=bitwarden,dc=com", + email: "ScodrasR@732895781258430aa850734a965ff9eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ibby Feist,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ibby Feist,ou=Payroll,dc=bitwarden,dc=com", + email: "FeistI@2ccf92b2367047e48fb3d1d7db3fa4ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lachu Namiki,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lachu Namiki,ou=Administrative,dc=bitwarden,dc=com", + email: "NamikiL@8416e448334443f3a2b36370271f352b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden,dc=com", + email: "RozumnaS@c7cfbecdcc9244d89ede1a6fe93b790c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden,dc=com", + email: "McQuarrR@5415c52be549497a9568e3a1cfa7947d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norry Wolfs,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Norry Wolfs,ou=Payroll,dc=bitwarden,dc=com", + email: "WolfsN@30b2d6e7a1b342d0a3a8e7a402acef7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tahir Frederick,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tahir Frederick,ou=Product Development,dc=bitwarden,dc=com", + email: "FrederiT@3f23376c66604a36ab332ecde75543de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlies Mraz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marlies Mraz,ou=Product Testing,dc=bitwarden,dc=com", + email: "MrazM@ddd14554e5954403b2fd4a0b5c5617c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farooq Gaebel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Farooq Gaebel,ou=Administrative,dc=bitwarden,dc=com", + email: "GaebelF@cf8b4b591c2f4387aae0bb010f18f55b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", + email: "KuzemkaJ@6de317d5c17343b4a932206ca859cf5d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janell Rolston,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Janell Rolston,ou=Product Development,dc=bitwarden,dc=com", + email: "RolstonJ@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jere Jubenville,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jere Jubenville,ou=Payroll,dc=bitwarden,dc=com", + email: "JubenviJ@3d384c725592473eb1a1b68befde2a5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noelyn Benham,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Noelyn Benham,ou=Administrative,dc=bitwarden,dc=com", + email: "BenhamN@a681f6dfeb8340649e58be794854640d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maury Ismail,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maury Ismail,ou=Management,dc=bitwarden,dc=com", + email: "IsmailM@368b49862ec74ac1974a058d04889202.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden,dc=com", + email: "ScrbaciS@f2e9e9593d6a4cd0a817bf5143921c87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nixie Cusato,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nixie Cusato,ou=Administrative,dc=bitwarden,dc=com", + email: "CusatoN@108c2ffc1189457d80b27e9b862163f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alastair Slozil,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alastair Slozil,ou=Administrative,dc=bitwarden,dc=com", + email: "SlozilA@97e0ce17a4af42e594025cdd4659fe64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgena Behrens,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Georgena Behrens,ou=Management,dc=bitwarden,dc=com", + email: "BehrensG@f10e733ab73f49deaef5dee5420e792f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden,dc=com", + email: "SaravanJ@7b122176285947e2aaa662ba71171180.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prayson McCormack,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Prayson McCormack,ou=Management,dc=bitwarden,dc=com", + email: "McCormaP@16ace8d5d6084f5abeb34113797f56c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharyl Meerveld,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sharyl Meerveld,ou=Management,dc=bitwarden,dc=com", + email: "MeervelS@bbbcbff60b6546acba48c66c3d01c6a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden,dc=com", + email: "KovarikK@9d4064a8e48f4ac180e71fdbabc60ffb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tech McAllister,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tech McAllister,ou=Product Testing,dc=bitwarden,dc=com", + email: "McAllisT@79a240440e8849ae9bc16c0dd8ed8e58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Budi Anglin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Budi Anglin,ou=Payroll,dc=bitwarden,dc=com", + email: "AnglinB@67ca48342c3741e5ba95513725c86734.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Business Marcelissen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Business Marcelissen,ou=Janitorial,dc=bitwarden,dc=com", + email: "MarceliB@43eeea353b144740b2e11c7fee2c8031.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryKay Wilcox,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=MaryKay Wilcox,ou=Management,dc=bitwarden,dc=com", + email: "WilcoxM@3ae6b803292e4da4b28cd13a1bfe807a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ingeborg Ferraro,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ingeborg Ferraro,ou=Management,dc=bitwarden,dc=com", + email: "FerraroI@54b7c6b9ae32434d95317388edf7be04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulcinea Merrils,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dulcinea Merrils,ou=Peons,dc=bitwarden,dc=com", + email: "MerrilsD@b7ede65f1eb44e418de85b304b190714.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chiquia Tanner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chiquia Tanner,ou=Peons,dc=bitwarden,dc=com", + email: "TannerC@0c7266e301f84221bfdf197ea43adb91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorreen Zrobok,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dorreen Zrobok,ou=Management,dc=bitwarden,dc=com", + email: "ZrobokD@7a24e66dbfc94daf862a7e6a6968c7c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Floris Bui,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Floris Bui,ou=Product Testing,dc=bitwarden,dc=com", + email: "BuiF@674b214928e2430ab12d2c738240bab6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maarten Braum,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maarten Braum,ou=Human Resources,dc=bitwarden,dc=com", + email: "BraumM@a92e8ef5bd3649d081a744b7f12ac2d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden,dc=com", + email: "HoelschS@25af2fd0acb14921ba7d57172ced27e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shane Levert,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shane Levert,ou=Administrative,dc=bitwarden,dc=com", + email: "LevertS@6ae361d0671f4e45b2dca3f489ab2ec1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hesther Gunderson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hesther Gunderson,ou=Management,dc=bitwarden,dc=com", + email: "GundersH@981b6315c22b4f71987c74b5e187713d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Korney Walkley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Korney Walkley,ou=Administrative,dc=bitwarden,dc=com", + email: "WalkleyK@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden,dc=com", + email: "RamroopK@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Enrica Keates,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Enrica Keates,ou=Human Resources,dc=bitwarden,dc=com", + email: "KeatesE@cc8182e6de0c4840a0e434e3f5bc6e84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sir Benda,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sir Benda,ou=Management,dc=bitwarden,dc=com", + email: "BendaS@583357fdc26f4393af80e3436e701033.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Samara Edmunds,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Samara Edmunds,ou=Peons,dc=bitwarden,dc=com", + email: "EdmundsS@dfd74a54e46140bbbd208154864b4090.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eoin Moomey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eoin Moomey,ou=Payroll,dc=bitwarden,dc=com", + email: "MoomeyE@9915e6a9d4174e1a84331ee3926d409a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shandy Sambi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shandy Sambi,ou=Payroll,dc=bitwarden,dc=com", + email: "SambiS@5e8f47bf29ef420c9f1d1267ba3841e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bili Giuntini,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bili Giuntini,ou=Administrative,dc=bitwarden,dc=com", + email: "GiuntinB@b0acec0f1a0d41658fee0415dd506a9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden,dc=com", + email: "AguinskM@4e6f18df9f6440b4a4cb2cbef71a4b62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephenie Steiert,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Stephenie Steiert,ou=Peons,dc=bitwarden,dc=com", + email: "SteiertS@86fa9bbc30944a4fa4b7882b86fd11b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esmaria Seddigh,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Esmaria Seddigh,ou=Peons,dc=bitwarden,dc=com", + email: "SeddighE@bc1e9c4893b549519fdc2cec6b403596.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Su Keef,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Su Keef,ou=Administrative,dc=bitwarden,dc=com", + email: "KeefS@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ignatius Baines,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ignatius Baines,ou=Product Development,dc=bitwarden,dc=com", + email: "BainesI@48da65776d804c88bd44538c39d70bac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenson Arbuckle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jenson Arbuckle,ou=Management,dc=bitwarden,dc=com", + email: "ArbucklJ@3641d12680c94b38a9a8f5320636d2b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaclin Schreiber,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jaclin Schreiber,ou=Management,dc=bitwarden,dc=com", + email: "SchreibJ@27d8375532a543b0aa95f943636664d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steen Realtime,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Steen Realtime,ou=Administrative,dc=bitwarden,dc=com", + email: "RealtimS@c70dbe261a1148e99aeacce847bbdb51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edmx Walston,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Edmx Walston,ou=Janitorial,dc=bitwarden,dc=com", + email: "WalstonE@5088b8e166bd41bcaf6a2c598ba48813.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abu Corbeil,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Abu Corbeil,ou=Peons,dc=bitwarden,dc=com", + email: "CorbeilA@68ec027fc3e8470bb6532dfe2902167e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annamaria Woll,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annamaria Woll,ou=Administrative,dc=bitwarden,dc=com", + email: "WollA@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merdia Baer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Merdia Baer,ou=Human Resources,dc=bitwarden,dc=com", + email: "BaerM@5a18e19bdaa8418c835d1d34e33216b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henrietta Horwood,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Henrietta Horwood,ou=Peons,dc=bitwarden,dc=com", + email: "HorwoodH@25d7b9cccaa243aa9f0b4f4799edda0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden,dc=com", + email: "AlsalehS@48d89f6366ec4bc9a3dc2bca58802c17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hannis Sooley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hannis Sooley,ou=Janitorial,dc=bitwarden,dc=com", + email: "SooleyH@e65b170ac1bc46edb99b4efe67ea9912.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teruko Zork,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Teruko Zork,ou=Payroll,dc=bitwarden,dc=com", + email: "ZorkT@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerrit Erwin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gerrit Erwin,ou=Payroll,dc=bitwarden,dc=com", + email: "ErwinG@7a9c912852004a79888207561bb1435a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kylila Valliani,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kylila Valliani,ou=Administrative,dc=bitwarden,dc=com", + email: "VallianK@fd1544a938044a8db9c9f3fe2943b130.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Courtenay Meres,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Courtenay Meres,ou=Product Development,dc=bitwarden,dc=com", + email: "MeresC@77aa906181cb42438460f5dd055a37d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theodora Henshaw,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Theodora Henshaw,ou=Peons,dc=bitwarden,dc=com", + email: "HenshawT@13acf9d4e3a0437699a9a1215c20b7b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Feodora Chohan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Feodora Chohan,ou=Payroll,dc=bitwarden,dc=com", + email: "ChohanF@3d4675220c3446eb8911d147fd0b6a3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corri Gower,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Corri Gower,ou=Payroll,dc=bitwarden,dc=com", + email: "GowerC@7bf1692be49847d0882b5c9df56a1692.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden,dc=com", + email: "AsselinA@68e7ebe37536433083e87ad5627627be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden,dc=com", + email: "FriedriS@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mimi Malisic,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mimi Malisic,ou=Payroll,dc=bitwarden,dc=com", + email: "MalisicM@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farra Threader,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Farra Threader,ou=Payroll,dc=bitwarden,dc=com", + email: "ThreadeF@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrna Felske,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Myrna Felske,ou=Payroll,dc=bitwarden,dc=com", + email: "FelskeM@71d0bccd79604a9eac86805946a4350a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adiana Claveau,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Adiana Claveau,ou=Human Resources,dc=bitwarden,dc=com", + email: "ClaveauA@396383f50c134f9f99ae930271bd4239.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden,dc=com", + email: "BenchimC@aa28558339af40ffa3a5f1495db43172.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigitte Tiseo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brigitte Tiseo,ou=Peons,dc=bitwarden,dc=com", + email: "TiseoB@35cbe55d624d41aaa7e77e5513292711.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keith Jahromi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Keith Jahromi,ou=Product Testing,dc=bitwarden,dc=com", + email: "JahromiK@d22efb4b0b454465bf3c4729bd0e73ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elfreda Erkel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elfreda Erkel,ou=Payroll,dc=bitwarden,dc=com", + email: "ErkelE@8b9f4bbc7081476287d00344dce43370.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacinta Boult,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jacinta Boult,ou=Administrative,dc=bitwarden,dc=com", + email: "BoultJ@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mab Sizto,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mab Sizto,ou=Payroll,dc=bitwarden,dc=com", + email: "SiztoM@dcb09de8e7a54dbfbb3606c66044aa08.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoshinsR@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden,dc=com", + email: "TarlamiH@aed7b3397fd44fc8824d75ec5a571273.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Howard Scarlett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Howard Scarlett,ou=Peons,dc=bitwarden,dc=com", + email: "ScarletH@1a20ad7a171d4781bdcb10c53186c8d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=CoOp Grondin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=CoOp Grondin,ou=Administrative,dc=bitwarden,dc=com", + email: "GrondinC@d52f84a4faf148e392088a55b1d91d85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felton Bartz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Felton Bartz,ou=Peons,dc=bitwarden,dc=com", + email: "BartzF@6535949de3ea47249141a9acfc0e7a20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norene Molnar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Norene Molnar,ou=Management,dc=bitwarden,dc=com", + email: "MolnarN@303ac29ae28a4feca207111066bb217f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabey Solomon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gabey Solomon,ou=Product Development,dc=bitwarden,dc=com", + email: "SolomonG@6a57f27be787416186e20874ca3a3f16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joanne Trefry,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joanne Trefry,ou=Peons,dc=bitwarden,dc=com", + email: "TrefryJ@2379df05bd9f48589e7c5672593d18d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sukey Grimm,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sukey Grimm,ou=Payroll,dc=bitwarden,dc=com", + email: "GrimmS@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sari Realtime,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sari Realtime,ou=Management,dc=bitwarden,dc=com", + email: "RealtimS@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden,dc=com", + email: "DiFalcoY@4f4529779c39486286005f0294a1558e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fanni Hite,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fanni Hite,ou=Human Resources,dc=bitwarden,dc=com", + email: "HiteF@2c4021d313d14b3da0ff25c9be8215f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faiz Brodersen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Faiz Brodersen,ou=Product Development,dc=bitwarden,dc=com", + email: "BrodersF@3313782fad5f448f843eeeeabc4b6528.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden,dc=com", + email: "GoricanD@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazem Snead,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kazem Snead,ou=Payroll,dc=bitwarden,dc=com", + email: "SneadK@0a1433e150374c7dabedf34e4d8de46b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden,dc=com", + email: "RitterB@960b796114d841ca97e435a64e92baa2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donia McCormick,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Donia McCormick,ou=Product Development,dc=bitwarden,dc=com", + email: "McCormiD@2377c0b716574201b1f20f0a302f3543.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akin Gillies,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Akin Gillies,ou=Peons,dc=bitwarden,dc=com", + email: "GilliesA@755e2f2f01064fb58f5836b47a9f6953.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baldev Chugha,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Baldev Chugha,ou=Administrative,dc=bitwarden,dc=com", + email: "ChughaB@8bca585b47ed462fb7229680f3ab2eb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carla Wichman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carla Wichman,ou=Administrative,dc=bitwarden,dc=com", + email: "WichmanC@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarine Croxford,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sarine Croxford,ou=Payroll,dc=bitwarden,dc=com", + email: "CroxforS@57edeceb332942988b2e62feed2c524a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Truda LaFargue,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Truda LaFargue,ou=Human Resources,dc=bitwarden,dc=com", + email: "LaFarguT@da55d35b2fa24638b2a13fe298cfe306.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden,dc=com", + email: "MedefesV@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marco Secrest,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marco Secrest,ou=Janitorial,dc=bitwarden,dc=com", + email: "SecrestM@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bellina Onder,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bellina Onder,ou=Janitorial,dc=bitwarden,dc=com", + email: "OnderB@c70533cbf13f4eda83e80aa7a3960847.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThomsM@9144995fa4c649da9d774d2a93d230da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden,dc=com", + email: "ZaharycK@2ccc6f9a9fb7406dac8df77daed9aa92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden,dc=com", + email: "ZingaleM@4d021ab5235d4c7a8bf5c3ef91818e2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yumi Britton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Yumi Britton,ou=Administrative,dc=bitwarden,dc=com", + email: "BrittonY@a882281c1b844c5997ce4401b36f83a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subhashini Tadge,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Subhashini Tadge,ou=Product Development,dc=bitwarden,dc=com", + email: "TadgeS@ff53b48d0a6a4f5b801944bd329c88a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden,dc=com", + email: "McNerneH@5fae264559df41c5819756869bf97f69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacky Cavasin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jacky Cavasin,ou=Management,dc=bitwarden,dc=com", + email: "CavasinJ@57dc19fb72ed48a88f045569d12c771f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katalin Qadri,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Katalin Qadri,ou=Payroll,dc=bitwarden,dc=com", + email: "QadriK@425e3df8b9654b8fb5fafe68899d23b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden,dc=com", + email: "NorbyG@96b954821ec4456a90674f1af5f31f23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evanne Holesinger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Evanne Holesinger,ou=Payroll,dc=bitwarden,dc=com", + email: "HolesinE@1060465da9c64631a2455d428f565a2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malethia Elliot,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Malethia Elliot,ou=Payroll,dc=bitwarden,dc=com", + email: "ElliotM@ad4b259f1800408a898dff512e0a094e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhawal Howard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dhawal Howard,ou=Management,dc=bitwarden,dc=com", + email: "HowardD@1cf4ed44c9f34d57aaaa8e332c0af04a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacee Syed,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Stacee Syed,ou=Administrative,dc=bitwarden,dc=com", + email: "SyedS@7dd6cc5778d64f7ea47fc9b85bb01ae7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden,dc=com", + email: "WarrellM@316f28dee96a4927ae60609771465dfa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kem Birkwood,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kem Birkwood,ou=Product Development,dc=bitwarden,dc=com", + email: "BirkwooK@bcbc05a61af34797a5c081f266c4277f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steffen Godo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Steffen Godo,ou=Human Resources,dc=bitwarden,dc=com", + email: "GodoS@dd6aa42254414b099b5f31cdae049e72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merlin McCormack,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Merlin McCormack,ou=Administrative,dc=bitwarden,dc=com", + email: "McCormaM@8f537ae4b6b344bbba62604a48f151f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darell Sumi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Darell Sumi,ou=Product Development,dc=bitwarden,dc=com", + email: "SumiD@797c12ee868e41e5be4bb46785d3d6aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tybie Hulen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tybie Hulen,ou=Administrative,dc=bitwarden,dc=com", + email: "HulenT@67373a2d3605487eb6202dbbf71e2058.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden,dc=com", + email: "NilsonF@0be01d83222f46f7842093c364d584c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crysta Aderhold,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Crysta Aderhold,ou=Management,dc=bitwarden,dc=com", + email: "AderholC@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranna Barriere,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ranna Barriere,ou=Product Testing,dc=bitwarden,dc=com", + email: "BarrierR@1a851fc2814040d38d9f2abd59e828ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ignatius Bankhead,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ignatius Bankhead,ou=Management,dc=bitwarden,dc=com", + email: "BankheaI@fac57f1f10364a88aa5ab37aeecbc8a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlis McCafferty,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carlis McCafferty,ou=Product Development,dc=bitwarden,dc=com", + email: "McCaffeC@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden,dc=com", + email: "InamullS@c3cd4c3c22f34a2dbd82ab9ceb4d6bba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dewey Cozyn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dewey Cozyn,ou=Administrative,dc=bitwarden,dc=com", + email: "CozynD@7d02421d78824b528c03a8f50fd2c791.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raphaela Bainton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Raphaela Bainton,ou=Administrative,dc=bitwarden,dc=com", + email: "BaintonR@2ccc6f9a9fb7406dac8df77daed9aa92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulette Gateau,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Paulette Gateau,ou=Human Resources,dc=bitwarden,dc=com", + email: "GateauP@2ea5cd05f7bb4e668e89ea0ce9ab618b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Molly IRCMTL,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Molly IRCMTL,ou=Peons,dc=bitwarden,dc=com", + email: "IRCMTLM@5406f1a2a8b3462dade05957b7fb225f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danial Simhan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Danial Simhan,ou=Janitorial,dc=bitwarden,dc=com", + email: "SimhanD@576758681ec2477ebb412f65a7055774.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aditya Nordstrom,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aditya Nordstrom,ou=Management,dc=bitwarden,dc=com", + email: "NordstrA@439323a8d95149fea66efa1b90531fea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquenetta Altherr,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jacquenetta Altherr,ou=Management,dc=bitwarden,dc=com", + email: "AltherrJ@185815afbde44b82a694cd5922f519f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joeann DeAnda,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joeann DeAnda,ou=Administrative,dc=bitwarden,dc=com", + email: "DeAndaJ@2adc28241a1f46749fea06db3960400f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valentina Andrew,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Valentina Andrew,ou=Human Resources,dc=bitwarden,dc=com", + email: "AndrewV@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kemal Kaoud,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kemal Kaoud,ou=Payroll,dc=bitwarden,dc=com", + email: "KaoudK@93e4f4c832eb40f5b256fbdf877ac624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roseanna Koiste,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roseanna Koiste,ou=Administrative,dc=bitwarden,dc=com", + email: "KoisteR@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camino Medlin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Camino Medlin,ou=Management,dc=bitwarden,dc=com", + email: "MedlinC@2aaa9be738c34b3b97229c09ad694399.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden,dc=com", + email: "GerlinsA@950212f9d4c64a14966148f9248060e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilian Racette,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lilian Racette,ou=Product Testing,dc=bitwarden,dc=com", + email: "RacetteL@f6414ae4de9c48918d1c08fe0828695b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clara Partello,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Clara Partello,ou=Administrative,dc=bitwarden,dc=com", + email: "PartellC@68e96d35b7bb4addbceb19d0fa830ff5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Birdie Pifko,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Birdie Pifko,ou=Human Resources,dc=bitwarden,dc=com", + email: "PifkoB@f9ccaba996b948fd826c0c115f90045a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salomi Erickson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Salomi Erickson,ou=Payroll,dc=bitwarden,dc=com", + email: "EricksoS@a55f359fe55a4a3a9208cf8975a694de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden,dc=com", + email: "WortmanH@5d35d83c207d418fad061afb7ba230bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opal Lovas,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Opal Lovas,ou=Product Development,dc=bitwarden,dc=com", + email: "LovasO@b6586e5c798a4f03943784564d79007b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden,dc=com", + email: "RaaflauR@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden,dc=com", + email: "FerraoT@d36e7daa663c4d1bb3597eaa04d6f0fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden,dc=com", + email: "KinnairG@6a01aba5dc8f451b8404750bb95136ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jai Malizia,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jai Malizia,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaliziaJ@a06bbbc55c33432c98c9104924935152.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alice Krogh,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alice Krogh,ou=Management,dc=bitwarden,dc=com", + email: "KroghA@6d14a4ca13c844f4a7d4c4bf95fd8d6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronan Gillard,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ronan Gillard,ou=Payroll,dc=bitwarden,dc=com", + email: "GillardR@5081de5367fd49c089deda39143eb679.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=BettyAnn Sakauye,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=BettyAnn Sakauye,ou=Management,dc=bitwarden,dc=com", + email: "SakauyeB@804b9151f1ba415a894983275163dae1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden,dc=com", + email: "ReijerkH@d8b1c84590d04a1e945916297425fac6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adan Fralick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Adan Fralick,ou=Product Testing,dc=bitwarden,dc=com", + email: "FralickA@fd53ca3e2a714cfd8efeb8476d6535f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koren Jalali,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Koren Jalali,ou=Product Testing,dc=bitwarden,dc=com", + email: "JalaliK@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reza StAmour,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Reza StAmour,ou=Payroll,dc=bitwarden,dc=com", + email: "StAmourR@5e804d1ca9ae4836a819c9a675bca682.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binh DALE,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Binh DALE,ou=Human Resources,dc=bitwarden,dc=com", + email: "DALEB@7c9912a898274068a97bbe2d535d84de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanata Panch,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kanata Panch,ou=Administrative,dc=bitwarden,dc=com", + email: "PanchK@501150f5ddc648879b7e60650df203a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanata Runciman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kanata Runciman,ou=Janitorial,dc=bitwarden,dc=com", + email: "RuncimaK@a6c2af5a8f94494bae6122c60dacfc6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden,dc=com", + email: "SzymansG@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lester Brookhart,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lester Brookhart,ou=Management,dc=bitwarden,dc=com", + email: "BrookhaL@207f92af6bc444a9a508764b35dab916.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adelheid Godin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Adelheid Godin,ou=Management,dc=bitwarden,dc=com", + email: "GodinA@4fc4e61aa4364561b3dbed18d06aa13c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calypso Hagar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Calypso Hagar,ou=Management,dc=bitwarden,dc=com", + email: "HagarC@234ee37c120948d4b641c99209d1bdde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leann Bawek,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leann Bawek,ou=Administrative,dc=bitwarden,dc=com", + email: "BawekL@ce56c75a600546b9ade2ff9aaa1b992b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stormy Bayraktar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stormy Bayraktar,ou=Management,dc=bitwarden,dc=com", + email: "BayraktS@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margarita Delisle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Margarita Delisle,ou=Janitorial,dc=bitwarden,dc=com", + email: "DelisleM@de05663cc1c445b9849ee8fab2914551.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rao Fontana,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rao Fontana,ou=Management,dc=bitwarden,dc=com", + email: "FontanaR@3714ef07d9f24410a85dd847beb54eef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Richard Bachelu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Richard Bachelu,ou=Janitorial,dc=bitwarden,dc=com", + email: "BacheluR@3184696e559c4eb9b1f55dd5eb5e3418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatsman Musa,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tatsman Musa,ou=Management,dc=bitwarden,dc=com", + email: "MusaT@7c3aa81c6a4d478383075852375fc21f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pia Maksoud,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pia Maksoud,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaksoudP@9688197f14c24b1ba3397822373736ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Scovill Sayar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Scovill Sayar,ou=Product Testing,dc=bitwarden,dc=com", + email: "SayarS@6514a77f75fd435b8801b83088c2b38a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norry Shen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Norry Shen,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShenN@539cce6ead8749dbb15039351f6600f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kayle Ahmad,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kayle Ahmad,ou=Payroll,dc=bitwarden,dc=com", + email: "AhmadK@d31e92a87311451da615d0866d1a1f0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debor Schiltz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Debor Schiltz,ou=Peons,dc=bitwarden,dc=com", + email: "SchiltzD@34fb6983abae4929b62080bbb5ec3e07.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandi Kochanski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sandi Kochanski,ou=Management,dc=bitwarden,dc=com", + email: "KochansS@3313782fad5f448f843eeeeabc4b6528.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hadria Rowley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hadria Rowley,ou=Peons,dc=bitwarden,dc=com", + email: "RowleyH@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosetta Toscano,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosetta Toscano,ou=Peons,dc=bitwarden,dc=com", + email: "ToscanoR@6edb45774ca84613bad15cd0d733e197.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chi Winsborrow,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chi Winsborrow,ou=Payroll,dc=bitwarden,dc=com", + email: "WinsborC@7a29f9439ed8484883467552bcb6396e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden,dc=com", + email: "KarunarB@1d1f899f1d144566b6f0636dabdfb0f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden,dc=com", + email: "VanderhZ@fef3179c9c4841a591a83e801687f728.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ammar Foldes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ammar Foldes,ou=Management,dc=bitwarden,dc=com", + email: "FoldesA@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andria Nagy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Andria Nagy,ou=Janitorial,dc=bitwarden,dc=com", + email: "NagyA@f356b9ffcffb4ac98d745b6fe117b574.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Earle Calkins,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Earle Calkins,ou=Janitorial,dc=bitwarden,dc=com", + email: "CalkinsE@d31e92a87311451da615d0866d1a1f0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Irc Loper,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Irc Loper,ou=Payroll,dc=bitwarden,dc=com", + email: "LoperI@db0d46fdeb854c2eb066d9894606ad6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dari Landriault,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dari Landriault,ou=Management,dc=bitwarden,dc=com", + email: "LandriaD@e0fbcbf86ba64fa69e571f107b3ec1d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden,dc=com", + email: "WilemonL@3bfc3de402e042a394d461b86f93128b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lonna Varano,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lonna Varano,ou=Product Development,dc=bitwarden,dc=com", + email: "VaranoL@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shan Heynen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shan Heynen,ou=Product Development,dc=bitwarden,dc=com", + email: "HeynenS@bb0489742bf04771919e77ac610dacd0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carena Pennington,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carena Pennington,ou=Human Resources,dc=bitwarden,dc=com", + email: "PenningC@7a31b9bd3b244190a4667b858c47bbc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luci Sebastien,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Luci Sebastien,ou=Product Development,dc=bitwarden,dc=com", + email: "SebastiL@6776642cb6824166a999264ad8dc48c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden,dc=com", + email: "LehtovaM@5a401695e3b247eaaefdf24718c62818.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden,dc=com", + email: "OShaughF@4839522ad0264d68aafb73c3cd081f79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gayleen Hagglund,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gayleen Hagglund,ou=Management,dc=bitwarden,dc=com", + email: "HagglunG@129df14932ae4f0186cdae7a694343a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden,dc=com", + email: "WokomaD@4d5fb31e7f90432388e6d7a93e8fe33b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sybyl Gubbins,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sybyl Gubbins,ou=Management,dc=bitwarden,dc=com", + email: "GubbinsS@f787d124c5334abea177416c989fec04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coursdev Racette,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Coursdev Racette,ou=Product Testing,dc=bitwarden,dc=com", + email: "RacetteC@e4bac3ad693c4157b1be0e5e7444cbf8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fayth Biggs,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fayth Biggs,ou=Payroll,dc=bitwarden,dc=com", + email: "BiggsF@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neely Elbeze,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Neely Elbeze,ou=Payroll,dc=bitwarden,dc=com", + email: "ElbezeN@21b4ff7eaee4433da6e498e7c5416e46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jamin Shute,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jamin Shute,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShuteJ@d6177e62683049c2b0fc2f004265e4ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabuson Flach,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sabuson Flach,ou=Product Testing,dc=bitwarden,dc=com", + email: "FlachS@15e5c78fa75f4006a7a718476b38350f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laurence Wootton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Laurence Wootton,ou=Human Resources,dc=bitwarden,dc=com", + email: "WoottonL@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeVriesA@90b5b0065a4e4dc3b484c9e88ebc320e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eric Skrobecki,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eric Skrobecki,ou=Management,dc=bitwarden,dc=com", + email: "SkrobecE@35246f7c7d854ddcb889890419b35d0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatum Meffe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tatum Meffe,ou=Product Development,dc=bitwarden,dc=com", + email: "MeffeT@afde3113416043d98395556c73711549.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reinhard Homonick,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reinhard Homonick,ou=Peons,dc=bitwarden,dc=com", + email: "HomonicR@9a209519348642769473b09231da3137.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden,dc=com", + email: "DigiacoR@7342ee713ddb492bb8f187e76f68e083.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imojean Sinnott,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Imojean Sinnott,ou=Payroll,dc=bitwarden,dc=com", + email: "SinnottI@9b5531beccfb48e780d0aa7ac3b90e83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matt Buttrey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Matt Buttrey,ou=Product Testing,dc=bitwarden,dc=com", + email: "ButtreyM@958185118457477783d16f2fa9e93aa2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tadayuki Seguin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tadayuki Seguin,ou=Management,dc=bitwarden,dc=com", + email: "SeguinT@738b42a56ab44af39fa9da7b9eaffcee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cang Smyth,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cang Smyth,ou=Management,dc=bitwarden,dc=com", + email: "SmythC@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzie Guillet,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Suzie Guillet,ou=Administrative,dc=bitwarden,dc=com", + email: "GuilletS@39810c97a1b24f6582a082401b4c2e13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leilah Traulich,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leilah Traulich,ou=Management,dc=bitwarden,dc=com", + email: "TraulicL@10dd7c8b6c9343a9afbb8ab70a5f8b0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Horst Kaye,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Horst Kaye,ou=Management,dc=bitwarden,dc=com", + email: "KayeH@6ef4ed9ae6c24731b126e620358a2de4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nuri Licerio,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nuri Licerio,ou=Product Testing,dc=bitwarden,dc=com", + email: "LicerioN@dc0f9a471328411da837f1c30f57d52b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tommi Preville,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tommi Preville,ou=Janitorial,dc=bitwarden,dc=com", + email: "PrevillT@ebac77f62ce1443b8d4bda5d4c334c86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fredericka Christopher,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fredericka Christopher,ou=Peons,dc=bitwarden,dc=com", + email: "ChristoF@c98eaad0f92a41b49339315f79d6648a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avivah Shostak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Avivah Shostak,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShostakA@fa1b72a27fc34f4eb3c5c550f81af8b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tyne Briard,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tyne Briard,ou=Janitorial,dc=bitwarden,dc=com", + email: "BriardT@fb9aa8f3b49848c792549daf315b1674.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drucy Levere,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Drucy Levere,ou=Product Testing,dc=bitwarden,dc=com", + email: "LevereD@8044dacf63ac423fb3f7e245d1b46862.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden,dc=com", + email: "WrigleyM@b9fd32c3a76b47599b2f4bf846bb48b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden,dc=com", + email: "DreisbaB@40c7ef179c0c4bb996024cd1b1971dad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gianna Rivera,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gianna Rivera,ou=Administrative,dc=bitwarden,dc=com", + email: "RiveraG@841cbd92bca942e386baa349c14cda77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden,dc=com", + email: "KaniesA@9135ac12963a4f24b390086599e22c6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natalya Heller,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Natalya Heller,ou=Peons,dc=bitwarden,dc=com", + email: "HellerN@aceb7777c6cc4e94927cd8d9ab7f9d71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden,dc=com", + email: "OuthwaiK@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden,dc=com", + email: "MoriyamA@a5ff234c382a4fef9f6d4e72344adb22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden,dc=com", + email: "LeduB@7969b0806fba4e3d88a5a3efd04eb548.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyana Harsch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dyana Harsch,ou=Management,dc=bitwarden,dc=com", + email: "HarschD@42343c98437b42798d5730c9e2f3e139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazem Guenette,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kazem Guenette,ou=Product Testing,dc=bitwarden,dc=com", + email: "GuenettK@c925a785cc914f7896a342038a540076.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allis McCartney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Allis McCartney,ou=Product Development,dc=bitwarden,dc=com", + email: "McCartnA@459e2f62db0c40d5b3c7b2d6945ef874.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlana Shemwell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arlana Shemwell,ou=Peons,dc=bitwarden,dc=com", + email: "ShemwelA@361f4dedfe9a4aada39bf693c8c1bc40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francisca Pollinzi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Francisca Pollinzi,ou=Peons,dc=bitwarden,dc=com", + email: "PollinzF@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Radomir Neate,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Radomir Neate,ou=Product Testing,dc=bitwarden,dc=com", + email: "NeateR@80d6647c06ea43a2a2ec98fb5ba9edb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Earnest Wracher,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Earnest Wracher,ou=Peons,dc=bitwarden,dc=com", + email: "WracherE@1b2f79ecf49b44fe9c6b7bb74dd2d54b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurie Hinkle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aurie Hinkle,ou=Management,dc=bitwarden,dc=com", + email: "HinkleA@1f52489263294bdcb74bf08e15dc639b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Durali Raynor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Durali Raynor,ou=Management,dc=bitwarden,dc=com", + email: "RaynorD@f09e11e5beca4779a4a93445ceda8470.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden,dc=com", + email: "EisenhaW@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isoft Parkash,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Isoft Parkash,ou=Peons,dc=bitwarden,dc=com", + email: "ParkashI@42be868e79934b2781b6098b8536a633.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phillie Kneese,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Phillie Kneese,ou=Peons,dc=bitwarden,dc=com", + email: "KneeseP@80c352552a9f4c3e8fd783fb4b49aece.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden,dc=com", + email: "SapenaV@548e0585ebf342b985467eca55f4e5f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden,dc=com", + email: "LetournL@c623094db4da4e6aad9474168db929fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucinda Cuellar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lucinda Cuellar,ou=Peons,dc=bitwarden,dc=com", + email: "CuellarL@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozele Chahal,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rozele Chahal,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChahalR@af154d0412124681a7f0c1fe1b00a8ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marko Mgmt,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marko Mgmt,ou=Product Development,dc=bitwarden,dc=com", + email: "MgmtM@12d826ce1ce0413184a7ed1f22160fef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anissa Adcox,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anissa Adcox,ou=Payroll,dc=bitwarden,dc=com", + email: "AdcoxA@b5f108bd2af841fc9950983c51799ea8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden,dc=com", + email: "SzpilfoC@6d4a907d1f0e46609843939862dfb577.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden,dc=com", + email: "BovenizS@2a059eb898534a808ef7c84caa852d0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanh Glanfield,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hanh Glanfield,ou=Management,dc=bitwarden,dc=com", + email: "GlanfieH@c70f5c4b622948cbb170ceb432dc60b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shailesh Bienek,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shailesh Bienek,ou=Management,dc=bitwarden,dc=com", + email: "BienekS@c763d0c8840c43c8b86db366006c5bab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerardo Bedlington,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gerardo Bedlington,ou=Peons,dc=bitwarden,dc=com", + email: "BedlingG@1f795536a65f4b09ab4f9926820522a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden,dc=com", + email: "MooreViB@ceb6137ac4aa473792db4b7b088606ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erle Kasprzak,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Erle Kasprzak,ou=Management,dc=bitwarden,dc=com", + email: "KasprzaE@e05752054bdf4aeabb75f365622f6480.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden,dc=com", + email: "MathieuN@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Knut Nilson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Knut Nilson,ou=Administrative,dc=bitwarden,dc=com", + email: "NilsonK@bdc6007cc6e34b34a9dcf44589f8b6cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laser Sandiford,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Laser Sandiford,ou=Payroll,dc=bitwarden,dc=com", + email: "SandifoL@25c2c1e49343484290a351a7909ac3a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden,dc=com", + email: "GaiottiD@445a60ac98804054899e1164059fd95e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden,dc=com", + email: "RabipouD@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moon Bulanda,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Moon Bulanda,ou=Product Development,dc=bitwarden,dc=com", + email: "BulandaM@1765994e2a5c4efcb4f3aabfae2cc880.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden,dc=com", + email: "BrandseR@003e771d29284236b967f25e9416ed07.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weiping Zeller,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Weiping Zeller,ou=Payroll,dc=bitwarden,dc=com", + email: "ZellerW@bc7abecae5134db19820cef4bc298003.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lora Luetchford,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lora Luetchford,ou=Management,dc=bitwarden,dc=com", + email: "LuetchfL@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden,dc=com", + email: "BenyamiM@5ed95073f0094f04af17c1ff4f2772c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mareah Horning,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mareah Horning,ou=Product Testing,dc=bitwarden,dc=com", + email: "HorningM@890d1310fd334cdc8c698f8a47f59b9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kapsch Graver,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kapsch Graver,ou=Administrative,dc=bitwarden,dc=com", + email: "GraverK@acf713e9aadb4752bc5f37c908d5ddf7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HoiKin Denley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=HoiKin Denley,ou=Management,dc=bitwarden,dc=com", + email: "DenleyH@8f4e601fed874b8fa44bcb8ac4c7bc3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huong Quinlan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Huong Quinlan,ou=Management,dc=bitwarden,dc=com", + email: "QuinlanH@dcbbbc8020794d6691fdae775364846a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vahe Ruffolo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vahe Ruffolo,ou=Peons,dc=bitwarden,dc=com", + email: "RuffoloV@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darina Duguay,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Darina Duguay,ou=Janitorial,dc=bitwarden,dc=com", + email: "DuguayD@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shayna Hollander,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shayna Hollander,ou=Human Resources,dc=bitwarden,dc=com", + email: "HollandS@144f4bf7b2a54773b3cf6bc1af396542.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SikYin Gosset,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=SikYin Gosset,ou=Janitorial,dc=bitwarden,dc=com", + email: "GossetS@2cc035c985c24adeb49999458b6eeb66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sapphire Dassie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sapphire Dassie,ou=Payroll,dc=bitwarden,dc=com", + email: "DassieS@bc4791aff5914d0e95bbd2106b1c2de5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baha Brouillette,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Baha Brouillette,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrouillB@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isabella Horning,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Isabella Horning,ou=Management,dc=bitwarden,dc=com", + email: "HorningI@aae225b6543e4edebfd4e8a70cd66e37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avtar Nyce,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Avtar Nyce,ou=Administrative,dc=bitwarden,dc=com", + email: "NyceA@8f698818b35041d38a84f1c71ca57e14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Horacio McGuire,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Horacio McGuire,ou=Janitorial,dc=bitwarden,dc=com", + email: "McGuireH@cbf5d5b18dbd41e6bb03156240fa65b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huyen Guatto,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Huyen Guatto,ou=Human Resources,dc=bitwarden,dc=com", + email: "GuattoH@43965c00f0db4ca198510569e172ade1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden,dc=com", + email: "WyndhamJ@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rustu Thill,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rustu Thill,ou=Janitorial,dc=bitwarden,dc=com", + email: "ThillR@961bbb60e3cd4dc49f27245b4c499ab8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fayre Childers,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fayre Childers,ou=Administrative,dc=bitwarden,dc=com", + email: "ChilderF@5e4d473173474c608ac03e0447167cc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden,dc=com", + email: "NunezK@c708b12087394a00aad69467e8d0da12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabrina Lenir,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sabrina Lenir,ou=Administrative,dc=bitwarden,dc=com", + email: "LenirS@1ce821f8b66c496fa362507452a26491.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gale Goggin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gale Goggin,ou=Management,dc=bitwarden,dc=com", + email: "GogginG@b1def85879ca4d1390e9e6b1d5b583ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Louis Volker,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Louis Volker,ou=Payroll,dc=bitwarden,dc=com", + email: "VolkerL@0a49f322d17b42a58985fe2e05d0dafb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrah Roussier,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Myrah Roussier,ou=Product Testing,dc=bitwarden,dc=com", + email: "RoussieM@7df05765abd04b25b8a7ef7280ad3437.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LLoyd McKeegan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=LLoyd McKeegan,ou=Peons,dc=bitwarden,dc=com", + email: "McKeegaL@bc2aa1694dbf4e7aa2d27b8cb8f061a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden,dc=com", + email: "MitraniM@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annadiane Ctas,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annadiane Ctas,ou=Administrative,dc=bitwarden,dc=com", + email: "CtasA@ca6b003973ef4e36908da7bb8259e3c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leyton Rolls,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Leyton Rolls,ou=Human Resources,dc=bitwarden,dc=com", + email: "RollsL@dffefc880028465f8135d61fcd84d153.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaal Ragan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gaal Ragan,ou=Janitorial,dc=bitwarden,dc=com", + email: "RaganG@afde3113416043d98395556c73711549.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermine Stults,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hermine Stults,ou=Janitorial,dc=bitwarden,dc=com", + email: "StultsH@30572bdd074a4e5a8e950b88bc610381.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klarika MacLean,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Klarika MacLean,ou=Product Testing,dc=bitwarden,dc=com", + email: "MacLeanK@1dd141ee94514c5aa52c318bb9c43eb0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reginald Smit,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Reginald Smit,ou=Product Development,dc=bitwarden,dc=com", + email: "SmitR@e17de5e4d835410b9b0709774bb28bb0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassi McMahon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cassi McMahon,ou=Product Development,dc=bitwarden,dc=com", + email: "McMahonC@d849f4848257434e882a48856ef2b70f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myranda Javed,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Myranda Javed,ou=Management,dc=bitwarden,dc=com", + email: "JavedM@b1c5384b9a3b4f19b03e31db659c5d3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherye Bukta,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cherye Bukta,ou=Product Development,dc=bitwarden,dc=com", + email: "BuktaC@becb244da0554983b71d06f587be1dbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlynne Roob,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carlynne Roob,ou=Administrative,dc=bitwarden,dc=com", + email: "RoobC@e13deb12f887416c8e5609d11ba2b292.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wai Winters,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wai Winters,ou=Product Testing,dc=bitwarden,dc=com", + email: "WintersW@b591b4d3b7bb4cf6a835d6d13daa1857.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lester Koster,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lester Koster,ou=Janitorial,dc=bitwarden,dc=com", + email: "KosterL@0aee22428274445fb9c2a16b33d788f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden,dc=com", + email: "FrangouB@6972a8e94cbc49738fdac450297132bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alev Llaguno,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alev Llaguno,ou=Administrative,dc=bitwarden,dc=com", + email: "LlagunoA@04bb376282154efc832b529dc3f80793.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jud Fairman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jud Fairman,ou=Administrative,dc=bitwarden,dc=com", + email: "FairmanJ@f7248b71ac0e455091682e51df845f5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toyanne Fishencord,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Toyanne Fishencord,ou=Management,dc=bitwarden,dc=com", + email: "FishencT@3e451f2ddbdc401ba9f442a5e6dfbe64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarinda Vele,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Clarinda Vele,ou=Human Resources,dc=bitwarden,dc=com", + email: "VeleC@41360e293f904ea28fdec059900338d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blondie Moghis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Blondie Moghis,ou=Janitorial,dc=bitwarden,dc=com", + email: "MoghisB@b3c93053c0224253988d5c3b976abcae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden,dc=com", + email: "BraddG@4fcafc5d237d4e89ae70144b97fd81b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden,dc=com", + email: "DesorbaK@b0b96975e46b40a097a0034294bf5528.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noraly Mackzum,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Noraly Mackzum,ou=Peons,dc=bitwarden,dc=com", + email: "MackzumN@9528dc6cbe3247b1b273b1646f94d087.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Len Grzegorek,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Len Grzegorek,ou=Product Testing,dc=bitwarden,dc=com", + email: "GrzegorL@6816926065fd449b998aed904ad7f381.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ria NetworkOps,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ria NetworkOps,ou=Administrative,dc=bitwarden,dc=com", + email: "NetworkR@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sunny Forslund,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sunny Forslund,ou=Management,dc=bitwarden,dc=com", + email: "ForslunS@917b843118c147a1b774df99881edab2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fanchette Veals,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fanchette Veals,ou=Janitorial,dc=bitwarden,dc=com", + email: "VealsF@99883d06333b411b8735be1bd03ccb98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobbee Combee,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bobbee Combee,ou=Human Resources,dc=bitwarden,dc=com", + email: "CombeeB@53b43fb5d4e34daa86eaa9d6dd2bd917.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bennett Attanasio,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bennett Attanasio,ou=Management,dc=bitwarden,dc=com", + email: "AttanasB@50a799bc8ca7431293d7f35051a4405f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zongyi Stults,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Zongyi Stults,ou=Payroll,dc=bitwarden,dc=com", + email: "StultsZ@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden,dc=com", + email: "LowrieW@39082c800eef41148693892808865789.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rob Goupil,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rob Goupil,ou=Janitorial,dc=bitwarden,dc=com", + email: "GoupilR@ae52dcada2674f68a76a2c619d85f261.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwyneth Neander,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gwyneth Neander,ou=Peons,dc=bitwarden,dc=com", + email: "NeanderG@bc6e166bef51424bb6b645cc04c90be7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lillien Grohovsky,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lillien Grohovsky,ou=Management,dc=bitwarden,dc=com", + email: "GrohovsL@b9106f7d57f74a7b92af146111acb57d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sianna Machika,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sianna Machika,ou=Administrative,dc=bitwarden,dc=com", + email: "MachikaS@157d1c5a87ae4332b42f31961dd71e5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden,dc=com", + email: "PonthieP@0834bcacddfd4229b6702a62e2551569.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blakeley Lagace,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Blakeley Lagace,ou=Payroll,dc=bitwarden,dc=com", + email: "LagaceB@f47429db42894240a22768a277a6aedc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thuong Rains,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Thuong Rains,ou=Human Resources,dc=bitwarden,dc=com", + email: "RainsT@9db5b1e1eb1c40cba168aadfe8f96acc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peg Lahaie,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Peg Lahaie,ou=Administrative,dc=bitwarden,dc=com", + email: "LahaieP@7c92d6dfba144f9587593ce6eeb4024f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annissa Bears,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Annissa Bears,ou=Human Resources,dc=bitwarden,dc=com", + email: "BearsA@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaffer Grosjean,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jaffer Grosjean,ou=Management,dc=bitwarden,dc=com", + email: "GrosjeaJ@18c6c57f689a4dd297aa9ab9f89b0d22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden,dc=com", + email: "IOCNTRLS@eccb9225926a47e49169337a56197f55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quoc Ennis,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Quoc Ennis,ou=Human Resources,dc=bitwarden,dc=com", + email: "EnnisQ@2c5fff2e17c34e4f8027c15937e2554a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden,dc=com", + email: "SorenseP@296a8499fb454ab5ab80945b9f63d6db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katalin Alteen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Katalin Alteen,ou=Product Development,dc=bitwarden,dc=com", + email: "AlteenK@d8f225bca4fb4424ae5dc46bef133d26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzie Caruso,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Suzie Caruso,ou=Product Development,dc=bitwarden,dc=com", + email: "CarusoS@a5a8edfdd5c4429e9cf280f8b1f9e995.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden,dc=com", + email: "RodriguB@c5d504d10cfd4d11856502fc976f73f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanh Marui,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hanh Marui,ou=Peons,dc=bitwarden,dc=com", + email: "MaruiH@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margette Bolly,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Margette Bolly,ou=Human Resources,dc=bitwarden,dc=com", + email: "BollyM@2d98655afc6c4413a4e20fb38a176913.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arvin Mauldin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arvin Mauldin,ou=Peons,dc=bitwarden,dc=com", + email: "MauldinA@6530618955494a54b6812262e97ea962.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephi Sloan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stephi Sloan,ou=Management,dc=bitwarden,dc=com", + email: "SloanS@d494db8e881541faa9bd79d54aee6c6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ariella Kindel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ariella Kindel,ou=Management,dc=bitwarden,dc=com", + email: "KindelA@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sluis Rasmus,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sluis Rasmus,ou=Peons,dc=bitwarden,dc=com", + email: "RasmusS@53c3e76f124f49beb679b871a3ea5611.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden,dc=com", + email: "TsalikiK@0d7e83c0e7e042119673bb3ec0e8332f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden,dc=com", + email: "TaghizaM@5357a85de543401d9e8fe2cdbf0be041.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Onida Kessing,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Onida Kessing,ou=Product Testing,dc=bitwarden,dc=com", + email: "KessingO@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tasha Good,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tasha Good,ou=Payroll,dc=bitwarden,dc=com", + email: "GoodT@7c2121c8588b42078879768992a11293.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Audrie Hadaway,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Audrie Hadaway,ou=Payroll,dc=bitwarden,dc=com", + email: "HadawayA@ea0f69137ff74518bf5deef349f108a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natka Herzig,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Natka Herzig,ou=Human Resources,dc=bitwarden,dc=com", + email: "HerzigN@597d9762b8604e37948eff99d3393453.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naima Simzer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Naima Simzer,ou=Product Testing,dc=bitwarden,dc=com", + email: "SimzerN@949d540dd7bd45ac952a8779090548fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lotte Ichizen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lotte Ichizen,ou=Product Development,dc=bitwarden,dc=com", + email: "IchizenL@9ded9a56079f4cc9aa539795eb2ef76e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marco Seto,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marco Seto,ou=Product Development,dc=bitwarden,dc=com", + email: "SetoM@47a7a80ec8774325ad24930467e7f72e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mollee Ensing,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mollee Ensing,ou=Product Testing,dc=bitwarden,dc=com", + email: "EnsingM@927751b0a567415d9f3e597c148985e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roe Schenk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Roe Schenk,ou=Payroll,dc=bitwarden,dc=com", + email: "SchenkR@e0325d1b480a46fd813ea04ca5c966cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christian Wales,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Christian Wales,ou=Peons,dc=bitwarden,dc=com", + email: "WalesC@d7bbd93ba2614bff8062ee68b5bbccb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loes Rioux,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Loes Rioux,ou=Product Development,dc=bitwarden,dc=com", + email: "RiouxL@fc6d9a3bc3ac4e95a6de75ff02dab16b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rubetta Lui,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rubetta Lui,ou=Payroll,dc=bitwarden,dc=com", + email: "LuiR@522cf8a1d4424cc392ce0a8035040445.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lonni Sabadash,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lonni Sabadash,ou=Peons,dc=bitwarden,dc=com", + email: "SabadasL@3c2a9299917e436494b9ad3aeb458417.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monica Duensing,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Monica Duensing,ou=Peons,dc=bitwarden,dc=com", + email: "DuensinM@494f2548825245788f70b0629ca28b58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colm Gratton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Colm Gratton,ou=Human Resources,dc=bitwarden,dc=com", + email: "GrattonC@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden,dc=com", + email: "McNeillT@2a2785e41bed4e93a780b4af1e24c457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denise Randall,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Denise Randall,ou=Administrative,dc=bitwarden,dc=com", + email: "RandallD@fd1c064ea4f34f1bb83154589888d370.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden,dc=com", + email: "MikelonT@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haggar Labfive,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Haggar Labfive,ou=Human Resources,dc=bitwarden,dc=com", + email: "LabfiveH@1f068d8a62cd4045acf6df01987aee06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willow Marko,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Willow Marko,ou=Management,dc=bitwarden,dc=com", + email: "MarkoW@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulinus McNabb,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Paulinus McNabb,ou=Payroll,dc=bitwarden,dc=com", + email: "McNabbP@4aaf48b94c754d999a64bf75ae3d3b60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden,dc=com", + email: "KaczynsM@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sula Piersol,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sula Piersol,ou=Product Development,dc=bitwarden,dc=com", + email: "PiersolS@7dc5b62cf93648d48eddbda676ec7c2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phillip Shearin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Phillip Shearin,ou=Peons,dc=bitwarden,dc=com", + email: "ShearinP@b81f861cfff7425eaadf73f079aa2666.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marg Villeneuve,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marg Villeneuve,ou=Management,dc=bitwarden,dc=com", + email: "VilleneM@d71da34df9024aaf8ef124f781734513.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Halette Kirfman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Halette Kirfman,ou=Payroll,dc=bitwarden,dc=com", + email: "KirfmanH@e2a54602eb2d428d863b4e68e7098e41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vijya Wrigley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vijya Wrigley,ou=Product Development,dc=bitwarden,dc=com", + email: "WrigleyV@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden,dc=com", + email: "PiwkowsS@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leung Veit,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Leung Veit,ou=Product Testing,dc=bitwarden,dc=com", + email: "VeitL@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celka Sylvain,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Celka Sylvain,ou=Janitorial,dc=bitwarden,dc=com", + email: "SylvainC@3be6f0b907a24b2494bafbb2bc326635.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michiko Zanetti,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Michiko Zanetti,ou=Payroll,dc=bitwarden,dc=com", + email: "ZanettiM@ecce68065a2a469d85a092399ef0abdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Derick Sheremeto,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Derick Sheremeto,ou=Payroll,dc=bitwarden,dc=com", + email: "SheremeD@5922bcea32dc44eb88de2834c151441c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shuji Blander,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shuji Blander,ou=Payroll,dc=bitwarden,dc=com", + email: "BlanderS@012a5cfab6324107b0814d36b8f41041.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Conni Dubee,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Conni Dubee,ou=Payroll,dc=bitwarden,dc=com", + email: "DubeeC@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charlot Kling,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Charlot Kling,ou=Peons,dc=bitwarden,dc=com", + email: "KlingC@4da7d564972d46f2924a6a8ae018f420.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ved Missailidis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ved Missailidis,ou=Administrative,dc=bitwarden,dc=com", + email: "MissailV@34a16f57e9db4215b5cb050ec73091c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden,dc=com", + email: "BuckleyW@86099fc02a734c888a7ae3c972099ceb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden,dc=com", + email: "AuYeungR@a4891e9178c647fd97d577b339b0f2ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden,dc=com", + email: "DowdyL@0f5c9983e32c410788faa72a9c3d7c88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valera Rummans,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Valera Rummans,ou=Payroll,dc=bitwarden,dc=com", + email: "RummansV@46b9fed368dc4ef39eafba055f3b72d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neely Bresnan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Neely Bresnan,ou=Peons,dc=bitwarden,dc=com", + email: "BresnanN@da06922aef174c0e80555c5332c5d50d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trey Zagrodney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Trey Zagrodney,ou=Product Development,dc=bitwarden,dc=com", + email: "ZagrodnT@58b17cbf3c8c49a497e5fef5616324ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cordie Hippert,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cordie Hippert,ou=Management,dc=bitwarden,dc=com", + email: "HippertC@2af5a5b28ee142c29a88149a85e2cfc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zanni Godwin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Zanni Godwin,ou=Peons,dc=bitwarden,dc=com", + email: "GodwinZ@b356031edae7438e91e9510b0eef0f11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yannick Cricker,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yannick Cricker,ou=Product Development,dc=bitwarden,dc=com", + email: "CrickerY@8c867e4cf415450c9970643cdd97be2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tayeb Leahy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tayeb Leahy,ou=Administrative,dc=bitwarden,dc=com", + email: "LeahyT@94dae55d586a40178d344aa65db63286.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulo Goldner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Paulo Goldner,ou=Product Development,dc=bitwarden,dc=com", + email: "GoldnerP@9824b48fa2d849d4b03986cd07954ce2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden,dc=com", + email: "BolgosK@1e0d2010b563467286453b342eb2e967.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Casi CHOCS,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Casi CHOCS,ou=Administrative,dc=bitwarden,dc=com", + email: "CHOCSC@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nata Booking,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nata Booking,ou=Peons,dc=bitwarden,dc=com", + email: "BookingN@e891dcc74adc426fbd3ad63fb5fff359.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doretta Turkki,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Doretta Turkki,ou=Human Resources,dc=bitwarden,dc=com", + email: "TurkkiD@19ae50f703c34edda0d4ff96561aa4ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden,dc=com", + email: "VerhoevA@f3ba3b64f9604f3595f8d4c1f4702c4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hq Buske,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hq Buske,ou=Janitorial,dc=bitwarden,dc=com", + email: "BuskeH@06087a741466454b9e2a6b6754ee0c92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden,dc=com", + email: "PinizzoC@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden,dc=com", + email: "AlfaroM@0115872801044ba284591166aa6c228d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roe Levey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Roe Levey,ou=Product Testing,dc=bitwarden,dc=com", + email: "LeveyR@bbdbdd2d73ba4cc08f1e302887d88e7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orelia Salinas,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Orelia Salinas,ou=Payroll,dc=bitwarden,dc=com", + email: "SalinasO@67225f2d83cb4254a52f74f5972d275c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atlante Standel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Atlante Standel,ou=Peons,dc=bitwarden,dc=com", + email: "StandelA@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leela Rylott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Leela Rylott,ou=Human Resources,dc=bitwarden,dc=com", + email: "RylottL@20c2d999fe734387b26090f6d88bafe4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden,dc=com", + email: "OskorepP@9eb0a140ee7144e0b023cba81df3cc51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cavin Cobo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cavin Cobo,ou=Administrative,dc=bitwarden,dc=com", + email: "CoboC@702f120c80c546e3a3d4380e71a79fa6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moe Oastler,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Moe Oastler,ou=Human Resources,dc=bitwarden,dc=com", + email: "OastlerM@5497d8e7bbe94acaa8307ac716892d02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lesley ElTorky,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lesley ElTorky,ou=Payroll,dc=bitwarden,dc=com", + email: "ElTorkyL@aa8e22a5a37c45459a1aae28136c8279.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brina Guttman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brina Guttman,ou=Management,dc=bitwarden,dc=com", + email: "GuttmanB@a33f574fa0a24162b343e74178659859.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hiroko Fait,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hiroko Fait,ou=Human Resources,dc=bitwarden,dc=com", + email: "FaitH@5a8cc902fcc5423d892dfdcc048c73b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annie Eaton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Annie Eaton,ou=Product Testing,dc=bitwarden,dc=com", + email: "EatonA@fd60ce8a79b644ba9d190b4bf769b6de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maskell Fung,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maskell Fung,ou=Human Resources,dc=bitwarden,dc=com", + email: "FungM@841cbd92bca942e386baa349c14cda77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden,dc=com", + email: "MyersPiT@d18e37fd0424474ab347b36ca45a4af6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franky Ramachandran,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Franky Ramachandran,ou=Product Development,dc=bitwarden,dc=com", + email: "RamachaF@1d233bc1764446c09e064881135ef88f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden,dc=com", + email: "DiaconuE@3847a8977cfb45d4b03770a60a27477f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherri StJohn,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sherri StJohn,ou=Payroll,dc=bitwarden,dc=com", + email: "StJohnS@0d2070a7704249ccae81fc4b91659074.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laser Kokkat,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Laser Kokkat,ou=Administrative,dc=bitwarden,dc=com", + email: "KokkatL@e83223057d6e4f9fa1110e3c4b1d1907.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kjell Boatwright,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kjell Boatwright,ou=Management,dc=bitwarden,dc=com", + email: "BoatwriK@556b8709dd59455493d3a037cd03b5fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilly Keane,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lilly Keane,ou=Product Development,dc=bitwarden,dc=com", + email: "KeaneL@8d8652ab29984781b99266ecccddeda6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guenther Feith,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Guenther Feith,ou=Product Development,dc=bitwarden,dc=com", + email: "FeithG@fdb934baa6cc448ab7c3fa9c2435f30a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden,dc=com", + email: "MyrillaL@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden,dc=com", + email: "PizzimeM@ff3f483373584f4f897f71c3fe6f9fc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden,dc=com", + email: "BrodfueG@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ross Whitaker,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ross Whitaker,ou=Payroll,dc=bitwarden,dc=com", + email: "WhitakeR@37e3de35a8c340a7b99329132ff492e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tessi Franze,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tessi Franze,ou=Management,dc=bitwarden,dc=com", + email: "FranzeT@0846b8b864144146a31ad2391920589e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norel Aly,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Norel Aly,ou=Janitorial,dc=bitwarden,dc=com", + email: "AlyN@75d70d8bb4aa49b095b06f96258b5907.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden,dc=com", + email: "LamyY@1a99800019bc40cc83877edaa3c037bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minetta Mackzum,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Minetta Mackzum,ou=Administrative,dc=bitwarden,dc=com", + email: "MackzumM@1919bfc426ed49ff8f4f00e3c1b79887.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Javier Kinsey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Javier Kinsey,ou=Administrative,dc=bitwarden,dc=com", + email: "KinseyJ@c2d4d5c90abe4da59c140390730b8767.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donelle Stites,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Donelle Stites,ou=Human Resources,dc=bitwarden,dc=com", + email: "StitesD@fdf5161eeea14f4092d0d9d3593c3092.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden,dc=com", + email: "CruzadoM@39eecbf6644e41e6a54aa634c1d5a5be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sophia Gazo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sophia Gazo,ou=Human Resources,dc=bitwarden,dc=com", + email: "GazoS@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tosca Julian,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tosca Julian,ou=Peons,dc=bitwarden,dc=com", + email: "JulianT@6f41089f10e04d909c665abe82ffe115.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kellyann Stotz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kellyann Stotz,ou=Administrative,dc=bitwarden,dc=com", + email: "StotzK@40079c706f0f41f9961a4ed47bc17c65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ende Broome,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ende Broome,ou=Administrative,dc=bitwarden,dc=com", + email: "BroomeE@49df2859910a4e4f8317d17a3be2945d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden,dc=com", + email: "PKDCDU@7aacbd71f8ff494eb7b5df5ac830a7a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krystalle Barnes,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Krystalle Barnes,ou=Payroll,dc=bitwarden,dc=com", + email: "BarnesK@893034d40ae747fcb94aa3c93f26d5c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden,dc=com", + email: "PinsonnJ@3307e42f1d8c4293bd7a59fddc05e774.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janaye Woodward,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Janaye Woodward,ou=Management,dc=bitwarden,dc=com", + email: "WoodwarJ@cff29f28824b49c2bb3b80efc41d7e67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margot Morin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Margot Morin,ou=Peons,dc=bitwarden,dc=com", + email: "MorinM@0998558a764541358e8e70ab479cfe9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Izumi LeGuen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Izumi LeGuen,ou=Peons,dc=bitwarden,dc=com", + email: "LeGuenI@c618b1ff4b584c0d8f7ff45342beefcd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden,dc=com", + email: "DonakZ@2fd47af450d743418108699823631680.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constance Boynton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Constance Boynton,ou=Management,dc=bitwarden,dc=com", + email: "BoyntonC@fdb2f5b287e8463ca2c07913962256d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgia Blazer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Georgia Blazer,ou=Payroll,dc=bitwarden,dc=com", + email: "BlazerG@5410deb36536455cba5926244af94c93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden,dc=com", + email: "CruzadoC@60dd1cbe4aa24d86beb286bcf0b69548.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Millard Lightfield,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Millard Lightfield,ou=Payroll,dc=bitwarden,dc=com", + email: "LightfiM@f09e11e5beca4779a4a93445ceda8470.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clio Bugajska,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clio Bugajska,ou=Management,dc=bitwarden,dc=com", + email: "BugajskC@7eaed4562d46473686db6a642d66ce05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden,dc=com", + email: "NesbittD@f9ae3791c7af4048ba041c1bc79adda2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden,dc=com", + email: "UrquharS@81b16d15c9e143e79666e62f2a341c67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anitra Metrics,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anitra Metrics,ou=Administrative,dc=bitwarden,dc=com", + email: "MetricsA@979af2384f8d4cccbd0dba8e3c326005.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manish Strachan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Manish Strachan,ou=Janitorial,dc=bitwarden,dc=com", + email: "StrachaM@438192a801ea415ab5a1cb73b87d8559.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nessy Langton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nessy Langton,ou=Payroll,dc=bitwarden,dc=com", + email: "LangtonN@685a3d9fd790422d8fb825f7a90cab65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonida Moncur,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Leonida Moncur,ou=Human Resources,dc=bitwarden,dc=com", + email: "MoncurL@7bb8f37e955d4f04a6cccdb2666d9559.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Uday Australia,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Uday Australia,ou=Human Resources,dc=bitwarden,dc=com", + email: "AustralU@af9b2025e2d4428a825c1c465719ccc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bren Marzella,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bren Marzella,ou=Management,dc=bitwarden,dc=com", + email: "MarzellB@155d8ce7e5114a6694664bdd20a1e763.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vries Bathrick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vries Bathrick,ou=Management,dc=bitwarden,dc=com", + email: "BathricV@0838c5a7fb7841708f56102b10a6cd6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryann Felix,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maryann Felix,ou=Payroll,dc=bitwarden,dc=com", + email: "FelixM@a391c3a07b8943028fe45f62f25be101.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carly Bugajski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carly Bugajski,ou=Human Resources,dc=bitwarden,dc=com", + email: "BugajskC@582578f4c0a34d7283b52c37fe385620.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baruk Zinn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Baruk Zinn,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZinnB@efc74300757e4917afeffd6512cd005c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden,dc=com", + email: "KetleyL@9176a4c133264d3d804cb9216deeac80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinett Etten,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Robinett Etten,ou=Janitorial,dc=bitwarden,dc=com", + email: "EttenR@51b0dfaaac8e469582446b31c5cb1bfd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden,dc=com", + email: "ScandreT@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monteene Fraties,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Monteene Fraties,ou=Peons,dc=bitwarden,dc=com", + email: "FratiesM@49237b860d1f43eba86c8a5d68311c7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jo Ritter,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jo Ritter,ou=Administrative,dc=bitwarden,dc=com", + email: "RitterJ@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laurent Viehweg,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Laurent Viehweg,ou=Administrative,dc=bitwarden,dc=com", + email: "ViehwegL@ef13a1a456c847c69f1a9c739972d1e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devonne Erickson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Devonne Erickson,ou=Administrative,dc=bitwarden,dc=com", + email: "EricksoD@8227646c55034cf9b21757fce681b53f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chantal Di,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Chantal Di,ou=Administrative,dc=bitwarden,dc=com", + email: "DiC@bd8c56963a9f48dfb73b8a3322b6fe38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sluis Quek,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sluis Quek,ou=Product Development,dc=bitwarden,dc=com", + email: "QuekS@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maxey Cavasso,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maxey Cavasso,ou=Management,dc=bitwarden,dc=com", + email: "CavassoM@bbc2ed84411d4a40af49ae614b080b8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claire Greveling,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Claire Greveling,ou=Product Development,dc=bitwarden,dc=com", + email: "GreveliC@cc71e71454d64842b764308435f8b9ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keven Krishnan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Keven Krishnan,ou=Administrative,dc=bitwarden,dc=com", + email: "KrishnaK@4f2c10e7af1a452181b6cc4729edcbe0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dau Banigan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dau Banigan,ou=Payroll,dc=bitwarden,dc=com", + email: "BaniganD@2e5f5aa98def49769eb37d64a6e3527e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kayla Carlisle,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kayla Carlisle,ou=Administrative,dc=bitwarden,dc=com", + email: "CarlislK@9384af23e6ba4db19b7b6c7e7b40705d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juozas Hengl,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Juozas Hengl,ou=Management,dc=bitwarden,dc=com", + email: "HenglJ@ff24c4fb1fee4c4da9eb652af0cd5b6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramniklal Traulich,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ramniklal Traulich,ou=Management,dc=bitwarden,dc=com", + email: "TraulicR@4467185dad394a2ab964d923a668f7a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=David Vennos,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=David Vennos,ou=Product Testing,dc=bitwarden,dc=com", + email: "VennosD@096101f2d07e4904be121b35278935c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shiela Nixon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shiela Nixon,ou=Administrative,dc=bitwarden,dc=com", + email: "NixonS@2ccf92b2367047e48fb3d1d7db3fa4ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mona Kohler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mona Kohler,ou=Management,dc=bitwarden,dc=com", + email: "KohlerM@8884ff0a9d924931a5d0a79e7e71fbe7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elene DOrazio,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elene DOrazio,ou=Administrative,dc=bitwarden,dc=com", + email: "DOrazioE@b8e727bc14df4a0daced5f490054e337.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elspeth Bussey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elspeth Bussey,ou=Peons,dc=bitwarden,dc=com", + email: "BusseyE@aa5b41edbda84e7ca1fc888042ddc8a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mari Abbott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mari Abbott,ou=Human Resources,dc=bitwarden,dc=com", + email: "AbbottM@d12cf402dbab4ca98b370d7e2c59928b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden,dc=com", + email: "LavarnwN@83f78532c82a4f77a10f2d7460348b85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Josine Hwang,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Josine Hwang,ou=Product Testing,dc=bitwarden,dc=com", + email: "HwangJ@535949b117544e80b4ad9c1fa166edb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden,dc=com", + email: "HumenikJ@17c722e6b16149e08a18c9a05c1e5e9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden,dc=com", + email: "NezonH@5eb82c53226242fd8c7b8521feffe50f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gypsy Weiser,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gypsy Weiser,ou=Payroll,dc=bitwarden,dc=com", + email: "WeiserG@352885b42f264ade8eacdfa709cc8cc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nir Cornaro,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nir Cornaro,ou=Payroll,dc=bitwarden,dc=com", + email: "CornaroN@7ac8324ed047496d93c460651ba38b86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettine Centis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bettine Centis,ou=Peons,dc=bitwarden,dc=com", + email: "CentisB@85000db2e5e34d6d81e53b19e5b46684.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sami Phipps,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sami Phipps,ou=Janitorial,dc=bitwarden,dc=com", + email: "PhippsS@f20eb0847ca14a90a67aa09264897cd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valaria Jamshidi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Valaria Jamshidi,ou=Peons,dc=bitwarden,dc=com", + email: "JamshidV@6f4eb4f6c7594572a68d6ca9999a39eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden,dc=com", + email: "BesharaJ@c7a27fd01c1647d28de4dfcfed9b1184.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loleta DuBois,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Loleta DuBois,ou=Janitorial,dc=bitwarden,dc=com", + email: "DuBoisL@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzi Penfield,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Suzi Penfield,ou=Janitorial,dc=bitwarden,dc=com", + email: "PenfielS@b3322abd91d442cd8a0ab00357938e16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mot Harper,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mot Harper,ou=Product Testing,dc=bitwarden,dc=com", + email: "HarperM@356cd6c1b7e3439e9ef5f5b352dedbb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden,dc=com", + email: "BeaucaiC@b827ba5736ae48268de38db3e9e259c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beata Shyu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beata Shyu,ou=Administrative,dc=bitwarden,dc=com", + email: "ShyuB@6bd1865fbe47463dbcb960e39a8c54d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carter Munroe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Carter Munroe,ou=Product Testing,dc=bitwarden,dc=com", + email: "MunroeC@d0d2d3fedb3f4a3c8932e1f5796c08e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnnie Holmes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Johnnie Holmes,ou=Peons,dc=bitwarden,dc=com", + email: "HolmesJ@f40bf043953c406aba47649d98484a4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rollo Rolfes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rollo Rolfes,ou=Management,dc=bitwarden,dc=com", + email: "RolfesR@3ec5b2de0d2345779e5987d3e4fbbb28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wendye Queries,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wendye Queries,ou=Product Development,dc=bitwarden,dc=com", + email: "QueriesW@3e85ba8a9fd94b8ea8a79fbaf36e29c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonie Ausley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tonie Ausley,ou=Product Development,dc=bitwarden,dc=com", + email: "AusleyT@8e58a0274e2f4a9eace3b506ad190406.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bertina Winchester,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bertina Winchester,ou=Janitorial,dc=bitwarden,dc=com", + email: "WinchesB@a78343bebdf4455eb6914faf7a6b5592.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Knut Louisseize,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Knut Louisseize,ou=Product Testing,dc=bitwarden,dc=com", + email: "LouisseK@edb6faa6b9ef42e78cb76cff9b446a1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miguelita Merworth,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Miguelita Merworth,ou=Peons,dc=bitwarden,dc=com", + email: "MerwortM@9c564d094e5e497a8fd4aac4f36731f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vlad Hilder,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vlad Hilder,ou=Human Resources,dc=bitwarden,dc=com", + email: "HilderV@8bced59a99724d5eb08954ec3497f98c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norry Hord,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Norry Hord,ou=Human Resources,dc=bitwarden,dc=com", + email: "HordN@4dd21bf6830a4c908b6586742f2895eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kurt Bozicevich,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kurt Bozicevich,ou=Peons,dc=bitwarden,dc=com", + email: "BozicevK@e8e7ee5b6e064589b4c7f97fde4b37f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charles Orsini,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Charles Orsini,ou=Management,dc=bitwarden,dc=com", + email: "OrsiniC@764681a95a5b406ca9af128317a23e8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meriline Tom,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Meriline Tom,ou=Human Resources,dc=bitwarden,dc=com", + email: "TomM@d0f838c93ef94627924b8203a7bc4ac9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genga Kahn,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Genga Kahn,ou=Product Testing,dc=bitwarden,dc=com", + email: "KahnG@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gates Scharf,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gates Scharf,ou=Peons,dc=bitwarden,dc=com", + email: "ScharfG@14d1b49506834e5c9ccc77fc2529566f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isabelita Weger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Isabelita Weger,ou=Management,dc=bitwarden,dc=com", + email: "WegerI@4971636bbc214b9bab855e271936dd02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulci Arsenault,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dulci Arsenault,ou=Peons,dc=bitwarden,dc=com", + email: "ArsenauD@23a5946865f94d569cc565c34574f456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lurleen Mowbray,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lurleen Mowbray,ou=Management,dc=bitwarden,dc=com", + email: "MowbrayL@e13d4fdb33d04c2f849993b5c00d31fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kary Bickford,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kary Bickford,ou=Janitorial,dc=bitwarden,dc=com", + email: "BickforK@e8962b3f077e4e4380b3b3b1aed7dd43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tsugio Knorp,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tsugio Knorp,ou=Product Development,dc=bitwarden,dc=com", + email: "KnorpT@3cbb67a8cfac46019eac8aa7343efe15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden,dc=com", + email: "AsfazadM@5091d98f25454366ae5b83b36d2073f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sindee Haertel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sindee Haertel,ou=Human Resources,dc=bitwarden,dc=com", + email: "HaertelS@bd3dedcd93c84c0aa4af62b582b04e9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reiko Lemay,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Reiko Lemay,ou=Product Testing,dc=bitwarden,dc=com", + email: "LemayR@b23fe60aaafa49a2908f5eec32556f6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karoline Korey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karoline Korey,ou=Peons,dc=bitwarden,dc=com", + email: "KoreyK@7b3b886d681f4f3ca28fa81a09f7644a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden,dc=com", + email: "UyarM@7eb3446796544055a8625bc9cff5db0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden,dc=com", + email: "SiddiquE@c90fcc6a2adf434b982935936ff5f7b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zonnya Penn,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Zonnya Penn,ou=Payroll,dc=bitwarden,dc=com", + email: "PennZ@3b2c73ac68c44ffd9b6fee68f40f7a34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christoph Lorance,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Christoph Lorance,ou=Human Resources,dc=bitwarden,dc=com", + email: "LoranceC@68682c9b2559463bb9da0d98b541595f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanity Tropea,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vanity Tropea,ou=Administrative,dc=bitwarden,dc=com", + email: "TropeaV@461d63d1b6a041a69495f095e74332a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyb Centers,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cyb Centers,ou=Janitorial,dc=bitwarden,dc=com", + email: "CentersC@7a7e84cee07a4519aac362b25f2d7d3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Muire Bakhach,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Muire Bakhach,ou=Administrative,dc=bitwarden,dc=com", + email: "BakhachM@e3c084d5a2b44c959d053319884f8497.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eliza Gros,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Eliza Gros,ou=Peons,dc=bitwarden,dc=com", + email: "GrosE@49c28823fa6d4e18b2bd79c94f037cd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden,dc=com", + email: "SurazskR@5c31d24a74fe48bd9d295b9aefc9bdd6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden,dc=com", + email: "TarskyC@7358f14ebc1d437faa31666574716056.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden,dc=com", + email: "SimardNL@e33d3ed1cbf54d6c887c9e826f3363fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brita Jodoin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Brita Jodoin,ou=Human Resources,dc=bitwarden,dc=com", + email: "JodoinB@92f076e32839486d848c7a04ce85bb65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renu Paynter,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Renu Paynter,ou=Administrative,dc=bitwarden,dc=com", + email: "PaynterR@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Honey Karole,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Honey Karole,ou=Payroll,dc=bitwarden,dc=com", + email: "KaroleH@bf39febc19c343cc9aaa907ea0d77554.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryJane Cusick,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=MaryJane Cusick,ou=Peons,dc=bitwarden,dc=com", + email: "CusickM@e9f1b0a2647f4ec0a7559f497a7b6a0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Romina McClain,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Romina McClain,ou=Payroll,dc=bitwarden,dc=com", + email: "McClainR@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinett Zeisler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Robinett Zeisler,ou=Management,dc=bitwarden,dc=com", + email: "ZeislerR@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ervin Guindi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ervin Guindi,ou=Management,dc=bitwarden,dc=com", + email: "GuindiE@cad2c84c3f094259b5729a471688ee83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vernice Brandon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vernice Brandon,ou=Payroll,dc=bitwarden,dc=com", + email: "BrandonV@b1ec0cbcb2944a58bb6bfcd6bb77a546.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wil Vasil,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Wil Vasil,ou=Peons,dc=bitwarden,dc=com", + email: "VasilW@d8a92cba997b45b7b73921e0114fc8ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anader Atp,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anader Atp,ou=Payroll,dc=bitwarden,dc=com", + email: "AtpA@bd014ad451a846c4a4114333cdf5c066.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cecil Martincich,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cecil Martincich,ou=Janitorial,dc=bitwarden,dc=com", + email: "MartincC@8819cc07e7b545c38dcf521aa22a7f85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelin Hysler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Madelin Hysler,ou=Product Testing,dc=bitwarden,dc=com", + email: "HyslerM@e4cb1f57405243129844c08d2e77b681.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colleen Hotlist,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Colleen Hotlist,ou=Administrative,dc=bitwarden,dc=com", + email: "HotlistC@2e11b315f15c492399248250b0acc021.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarence Baragar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clarence Baragar,ou=Peons,dc=bitwarden,dc=com", + email: "BaragarC@32e3fa5da06a4fd3803417733702b064.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marvette Mony,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marvette Mony,ou=Product Testing,dc=bitwarden,dc=com", + email: "MonyM@027050a72ac34c81a8cdacfc4d562d92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden,dc=com", + email: "WesolowM@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janette Stasyszyn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Janette Stasyszyn,ou=Management,dc=bitwarden,dc=com", + email: "StasyszJ@b772115a1aa1477ba5883638406f7f1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colette Iu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Colette Iu,ou=Human Resources,dc=bitwarden,dc=com", + email: "IuC@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morissa Weiss,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Morissa Weiss,ou=Payroll,dc=bitwarden,dc=com", + email: "WeissM@7bb8de925914422da9d61b06d1067ef2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden,dc=com", + email: "NishimuH@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olva Smid,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Olva Smid,ou=Human Resources,dc=bitwarden,dc=com", + email: "SmidO@a07853d0708843cfba89e8d47f4ba85a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beulah Kacor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Beulah Kacor,ou=Management,dc=bitwarden,dc=com", + email: "KacorB@0b7ec0c2364e4e4f8de90b2b167baf77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stefa Aksel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Stefa Aksel,ou=Product Testing,dc=bitwarden,dc=com", + email: "AkselS@f2b5edd91a174de185a3ef948629a325.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadru Quintana,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sadru Quintana,ou=Administrative,dc=bitwarden,dc=com", + email: "QuintanS@39726a1b008d411d8a28b85a63102ac3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzan Dourley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Suzan Dourley,ou=Peons,dc=bitwarden,dc=com", + email: "DourleyS@6d33f2897fd04c38bb8fe83ad0412af9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wil Hirose,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wil Hirose,ou=Management,dc=bitwarden,dc=com", + email: "HiroseW@6ff46dc4b1cd4999b4c5670fef62271f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Auria Remson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Auria Remson,ou=Management,dc=bitwarden,dc=com", + email: "RemsonA@7092afcac0d743dda822cd8d0349a08e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden,dc=com", + email: "KnesMaxE@d90dcd068de74a77904c15642c024df9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pennie Akai,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pennie Akai,ou=Peons,dc=bitwarden,dc=com", + email: "AkaiP@f00d58ce2e144a1d8084394bfeb550b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allyce Versteeg,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Allyce Versteeg,ou=Peons,dc=bitwarden,dc=com", + email: "VersteeA@74f49865edf34a06971e54ca40c018cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norah Saunderson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Norah Saunderson,ou=Administrative,dc=bitwarden,dc=com", + email: "SaunderN@326d8403ad204a388a69bbd4329fe5a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden,dc=com", + email: "GravellG@9aea4844b36044d48b6ce9023f128642.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChafinC@8b4e180a03f04f079b534af88c685eca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chery Vieira,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chery Vieira,ou=Product Testing,dc=bitwarden,dc=com", + email: "VieiraC@5449de7063aa4ed2b6578dde4c294893.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden,dc=com", + email: "SandberG@f36f45f8205e4b108d066ef8eb28e68b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karita Hoekstra,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karita Hoekstra,ou=Peons,dc=bitwarden,dc=com", + email: "HoekstrK@d4b58fe2bfde4032862e5386c0e20902.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milt Pilipchuk,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Milt Pilipchuk,ou=Peons,dc=bitwarden,dc=com", + email: "PilipchM@da1b5788f067415eb6baf89891f2b951.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pal Hnidek,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pal Hnidek,ou=Human Resources,dc=bitwarden,dc=com", + email: "HnidekP@e41d23ea26fe487bacc315514ad13746.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teodora Weidinger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Teodora Weidinger,ou=Administrative,dc=bitwarden,dc=com", + email: "WeidingT@478214d5722f41a1a65048e4b5c2e3f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephen Shearer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Stephen Shearer,ou=Product Development,dc=bitwarden,dc=com", + email: "ShearerS@c92365298bdc408a8d5a96e4deae0869.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celka Antle,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Celka Antle,ou=Peons,dc=bitwarden,dc=com", + email: "AntleC@f34d92cdab5f41e598142a994af089cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden,dc=com", + email: "MortimeC@ec8dc3c6877747ab888f5b203f49583b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binnie Newham,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Binnie Newham,ou=Human Resources,dc=bitwarden,dc=com", + email: "NewhamB@befab122c7044aa3b20b92009a4d0191.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ursula Duvarci,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ursula Duvarci,ou=Payroll,dc=bitwarden,dc=com", + email: "DuvarciU@bc7c0ff60d4641f2b01474bcc8b086c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ted Clinton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ted Clinton,ou=Peons,dc=bitwarden,dc=com", + email: "ClintonT@445a60ac98804054899e1164059fd95e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden,dc=com", + email: "KostyniP@2c11f6a276034996a4ddc6513434ce9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivie Petrie,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ivie Petrie,ou=Administrative,dc=bitwarden,dc=com", + email: "PetrieI@2fdc38b3b56b4c61813cbb26a59352be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kuswara Heighton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kuswara Heighton,ou=Management,dc=bitwarden,dc=com", + email: "HeightoK@6278758e52d64d2fa2b3ae646f7b1c8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johanna Virani,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Johanna Virani,ou=Product Development,dc=bitwarden,dc=com", + email: "ViraniJ@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden,dc=com", + email: "RubinovL@41daa3e0419742f58440d28fd291693d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marit Simons,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marit Simons,ou=Human Resources,dc=bitwarden,dc=com", + email: "SimonsM@dc81d1ec5dc44ff2aadb325ca2efedb1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joel Hinton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Joel Hinton,ou=Product Testing,dc=bitwarden,dc=com", + email: "HintonJ@0d31b4804a864bcaadb4a2443708a6a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mentor Kimler,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mentor Kimler,ou=Payroll,dc=bitwarden,dc=com", + email: "KimlerM@b5e3188bf80e462eac4ebbb9d1096eff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thuy Kolos,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Thuy Kolos,ou=Peons,dc=bitwarden,dc=com", + email: "KolosT@af7219707df54fa3a07b2c4c1c18c6db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sergiu Chai,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sergiu Chai,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChaiS@5bf44110ed3743de8af47997ebc8b9fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sande Desjarlais,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sande Desjarlais,ou=Product Development,dc=bitwarden,dc=com", + email: "DesjarlS@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden,dc=com", + email: "FalkensA@a59346ad14cf48868393d6c59fa9cec4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allis Sherard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Allis Sherard,ou=Human Resources,dc=bitwarden,dc=com", + email: "SherardA@0573bd112aca464284b0d9eac2753606.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miriya Planthara,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Miriya Planthara,ou=Management,dc=bitwarden,dc=com", + email: "PlanthaM@ced3a1835a4b43df86059cd2aa6426c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden,dc=com", + email: "NevrelaM@69cfa5de8d574e7e93ee6f134eee78e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden,dc=com", + email: "TornqviJ@be2317e07ddc4fd1bc1dad5673b21da8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HackHoo Jatar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=HackHoo Jatar,ou=Management,dc=bitwarden,dc=com", + email: "JatarH@c356619b4769401bb929afda889d39f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vonni Mansi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vonni Mansi,ou=Payroll,dc=bitwarden,dc=com", + email: "MansiV@7f18e62561544141b6ccfe39f532339f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden,dc=com", + email: "MoshtagH@04a22a65e7964a5bae139e498c20efac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mair Tsui,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mair Tsui,ou=Payroll,dc=bitwarden,dc=com", + email: "TsuiM@c520f3ebde724b50bd2a6770256ea1b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darya Marttinen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Darya Marttinen,ou=Payroll,dc=bitwarden,dc=com", + email: "MarttinD@fa0cc2286f88469eb9aea12a2ef5aea3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kees Arsena,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kees Arsena,ou=Human Resources,dc=bitwarden,dc=com", + email: "ArsenaK@b3ae6dae564847d7ba4d0a12a6361531.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darleen Flowers,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Darleen Flowers,ou=Product Development,dc=bitwarden,dc=com", + email: "FlowersD@17dcf13b7e684c4a9ba2dcc27a684a76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noyes Huenemann,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Noyes Huenemann,ou=Management,dc=bitwarden,dc=com", + email: "HuenemaN@7d4c2ab04b8a46e18a0c092fdac02490.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Buster Myre,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Buster Myre,ou=Product Development,dc=bitwarden,dc=com", + email: "MyreB@bc47d55f014c4c2d8cd9b2f73d7704a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tristano Angus,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tristano Angus,ou=Human Resources,dc=bitwarden,dc=com", + email: "AngusT@19be86f3b1d34c7ab6993505e8f0ad33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anita Roesler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Anita Roesler,ou=Product Testing,dc=bitwarden,dc=com", + email: "RoeslerA@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monling Goin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Monling Goin,ou=Product Development,dc=bitwarden,dc=com", + email: "GoinM@34b9dab44b4c429bac836e963718507e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dannye Munsey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dannye Munsey,ou=Peons,dc=bitwarden,dc=com", + email: "MunseyD@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnella Pinalez,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Agnella Pinalez,ou=Peons,dc=bitwarden,dc=com", + email: "PinalezA@fa7f3d0bae554869a9cb0e95fe35707f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shashank Romberg,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shashank Romberg,ou=Product Testing,dc=bitwarden,dc=com", + email: "RombergS@faec862307e2490ab9310236bae87643.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden,dc=com", + email: "YoeZ@6ef4ed9ae6c24731b126e620358a2de4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Narinder Vilhan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Narinder Vilhan,ou=Product Development,dc=bitwarden,dc=com", + email: "VilhanN@f41772a4d1c540f3ab2ca562625ea847.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden,dc=com", + email: "SimanskU@ec9ffb19a2144630ae8bece4e80922f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeremy Schuster,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jeremy Schuster,ou=Management,dc=bitwarden,dc=com", + email: "SchusteJ@60e903b99c4f452b858f19d9843dcc15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saraann Blakkolb,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Saraann Blakkolb,ou=Management,dc=bitwarden,dc=com", + email: "BlakkolS@0f3924780f2742839088cadeea1581cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aida Brunelle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aida Brunelle,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrunellA@456334f0b48d4ad68b2832c807dab058.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrielle Hine,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Merrielle Hine,ou=Product Testing,dc=bitwarden,dc=com", + email: "HineM@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden,dc=com", + email: "ClarksoJ@d89a6add90a54661825d72b17fd5b437.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", + email: "RhattigK@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden,dc=com", + email: "GarciaLA@1ee43d5295b54a68904e38d5e6ea6d47.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden,dc=com", + email: "AtkinsoA@17061e8235904e0b93980e91f7a69e37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beckie Cowell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Beckie Cowell,ou=Payroll,dc=bitwarden,dc=com", + email: "CowellB@43d56f86246844bbb069d46885224475.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maso Mathewson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maso Mathewson,ou=Administrative,dc=bitwarden,dc=com", + email: "MathewsM@4b85844a8d8b4d8c8c64c4c289791834.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arnis Fredette,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Arnis Fredette,ou=Administrative,dc=bitwarden,dc=com", + email: "FredettA@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maddie Bowick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maddie Bowick,ou=Product Testing,dc=bitwarden,dc=com", + email: "BowickM@d534d4e018bc4513999f8eae2be01976.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolene Datema,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jolene Datema,ou=Product Testing,dc=bitwarden,dc=com", + email: "DatemaJ@4f99a2d4c8e343d39b81a3ab47785f76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kuswara Musick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kuswara Musick,ou=Management,dc=bitwarden,dc=com", + email: "MusickK@975f42c981f64264a2c4cf3ee5b53c68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belia Mustafa,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Belia Mustafa,ou=Product Development,dc=bitwarden,dc=com", + email: "MustafaB@1f70c3bade4e4575a0687e469e22b825.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelcie Rowe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kelcie Rowe,ou=Payroll,dc=bitwarden,dc=com", + email: "RoweK@d6c388cda1d54d59a23516cc122a5ef1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden,dc=com", + email: "GingricA@9b2c23de49384f84ae5a2204e6781b81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oguz Crafton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Oguz Crafton,ou=Product Testing,dc=bitwarden,dc=com", + email: "CraftonO@e87ee38d93414ee3a0d592bc127097ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden,dc=com", + email: "LenziH@c7c0612e18954668878d3bc1afa0d5de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden,dc=com", + email: "KowalesW@7f9caaee8d0a4000bdc6e432d2ef6c1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anallese Luszczek,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anallese Luszczek,ou=Product Development,dc=bitwarden,dc=com", + email: "LuszczeA@2a7e39a5b875406f9085c17bedc931dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raeann Fu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Raeann Fu,ou=Janitorial,dc=bitwarden,dc=com", + email: "FuR@a7e7b13342d14512ab65c0fc1d87a2ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyanna Hartling,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dyanna Hartling,ou=Payroll,dc=bitwarden,dc=com", + email: "HartlinD@42585481abdb4363ac24feac32c0a14e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden,dc=com", + email: "BloedonT@9c4f9eaf4eea42848e2ed65a10014c07.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hamid Peng,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hamid Peng,ou=Human Resources,dc=bitwarden,dc=com", + email: "PengH@87501b64e5644d78a747c4f01175b74a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michaela Minichillo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Michaela Minichillo,ou=Peons,dc=bitwarden,dc=com", + email: "MinichiM@addacb3184714ace97e25c0e017ebbb0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden,dc=com", + email: "GuzmanC@ea74020b5db84a1f9fcb412873464117.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Romano Moosavi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Romano Moosavi,ou=Janitorial,dc=bitwarden,dc=com", + email: "MoosaviR@34856ffc4b2a4685be33512cea557265.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden,dc=com", + email: "KosnaskW@da8e740f807d423dbc2e15de67bce38e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nannette Pantages,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nannette Pantages,ou=Janitorial,dc=bitwarden,dc=com", + email: "PantageN@f88ed4d88d0c4b619b4b2076642c1070.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zaihua Dhuga,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Zaihua Dhuga,ou=Peons,dc=bitwarden,dc=com", + email: "DhugaZ@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niki Brock,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Niki Brock,ou=Management,dc=bitwarden,dc=com", + email: "BrockN@1c75dd756d3646528231e24a92716bd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucila Jatar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lucila Jatar,ou=Management,dc=bitwarden,dc=com", + email: "JatarL@befc232b3f4240ada061cd42724f306e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reiko StJames,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Reiko StJames,ou=Payroll,dc=bitwarden,dc=com", + email: "StJamesR@6a93cf1aebfe489dacbfbd53e393bea0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmen Poulin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carmen Poulin,ou=Janitorial,dc=bitwarden,dc=com", + email: "PoulinC@eff4b5c8cdd74572a1896b15aff841f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loree Dorval,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Loree Dorval,ou=Human Resources,dc=bitwarden,dc=com", + email: "DorvalL@62ec731e1ab8465b82b77be42758d517.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden,dc=com", + email: "HeinricT@b7db7b74741043f1bc70179c65d8c474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reinhold Ballinger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Reinhold Ballinger,ou=Management,dc=bitwarden,dc=com", + email: "BallingR@d38a3979c2de40a29545a48afbed0d22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mat Smyth,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mat Smyth,ou=Product Development,dc=bitwarden,dc=com", + email: "SmythM@dc6a05982d874ebebc06c9a0d16ba5c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lesya Maye,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lesya Maye,ou=Human Resources,dc=bitwarden,dc=com", + email: "MayeL@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dixie Oshinski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dixie Oshinski,ou=Management,dc=bitwarden,dc=com", + email: "OshinskD@61003bbcc2b54b358efccfc69a8f8df8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephanie Crerar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Stephanie Crerar,ou=Peons,dc=bitwarden,dc=com", + email: "CrerarS@ffc6032d945b438b9865cf8c7a84e7fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miguelita Wyss,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Miguelita Wyss,ou=Product Development,dc=bitwarden,dc=com", + email: "WyssM@3b50811f02664433a227210515cf2d84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lee Kreimer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lee Kreimer,ou=Administrative,dc=bitwarden,dc=com", + email: "KreimerL@f80be3a38b1d4889b09c7deda5322720.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden,dc=com", + email: "KerwinL@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Violetta Nttest,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Violetta Nttest,ou=Janitorial,dc=bitwarden,dc=com", + email: "NttestV@c60d22407c0d47c0b12a1be490e44c72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chau Gyenes,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Chau Gyenes,ou=Administrative,dc=bitwarden,dc=com", + email: "GyenesC@79ff22f8d12b4572811ad95061bf5388.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melva Kaefer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melva Kaefer,ou=Management,dc=bitwarden,dc=com", + email: "KaeferM@d27485ac0882409f8001fecce0300eb4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celinka Laprade,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Celinka Laprade,ou=Peons,dc=bitwarden,dc=com", + email: "LapradeC@a2fc6a711cba4ec98d716bb4c3e20f83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abbey Firat,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Abbey Firat,ou=Janitorial,dc=bitwarden,dc=com", + email: "FiratA@c9027f607987451aa869ec32b2ad0708.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coleen Kovats,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Coleen Kovats,ou=Product Development,dc=bitwarden,dc=com", + email: "KovatsC@bdfcb82199ec4806bb1989f89de74296.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merla Tsitsior,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Merla Tsitsior,ou=Payroll,dc=bitwarden,dc=com", + email: "TsitsioM@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marek Harwerth,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marek Harwerth,ou=Payroll,dc=bitwarden,dc=com", + email: "HarwertM@07add4ded06549a3b31963a376ba1c96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bertie Whatley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bertie Whatley,ou=Product Development,dc=bitwarden,dc=com", + email: "WhatleyB@4c3a20eeff014e34829e7e04f58210d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Message Cohen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Message Cohen,ou=Janitorial,dc=bitwarden,dc=com", + email: "CohenM@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chai NTINASH,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Chai NTINASH,ou=Product Development,dc=bitwarden,dc=com", + email: "NTINASHC@91023564560e4387b5bc8c338afb8d2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karin Schaller,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karin Schaller,ou=Management,dc=bitwarden,dc=com", + email: "SchalleK@f9d178e246d64d2e972c6a88cbdc9616.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolea StMartin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nicolea StMartin,ou=Payroll,dc=bitwarden,dc=com", + email: "StMartiN@a5b16f07cc5f4d548df233a10f2abd0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heda Bowens,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Heda Bowens,ou=Janitorial,dc=bitwarden,dc=com", + email: "BowensH@85000db2e5e34d6d81e53b19e5b46684.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Conni Westgarth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Conni Westgarth,ou=Product Testing,dc=bitwarden,dc=com", + email: "WestgarC@37f78211f5f44e43b7f84a7d34417dc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joell Bolzon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Joell Bolzon,ou=Payroll,dc=bitwarden,dc=com", + email: "BolzonJ@06521bdd507441e9a09de35a0e462c1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christianne Carling,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Christianne Carling,ou=Janitorial,dc=bitwarden,dc=com", + email: "CarlingC@06731df963584f3ca191849b64eabf87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nessy Grewal,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nessy Grewal,ou=Product Testing,dc=bitwarden,dc=com", + email: "GrewalN@8c8bf3789a35468ea6c95834e941f083.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lex Woodyer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lex Woodyer,ou=Product Testing,dc=bitwarden,dc=com", + email: "WoodyerL@e059f798bf444774a99e078fccd4a4f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pamela Fon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pamela Fon,ou=Peons,dc=bitwarden,dc=com", + email: "FonP@cc117505f3744c0d8553f4b07f63ca99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden,dc=com", + email: "WobbrocS@fc3f6240126d440389a99ebbf528efcb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loris Winterberg,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Loris Winterberg,ou=Administrative,dc=bitwarden,dc=com", + email: "WinterbL@ff8c4aaacc274f3781ccca8d193be581.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Business Huether,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Business Huether,ou=Product Testing,dc=bitwarden,dc=com", + email: "HuetherB@e0451e7239ff4357aaa9acaa2724cd82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susanne Repeta,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Susanne Repeta,ou=Janitorial,dc=bitwarden,dc=com", + email: "RepetaS@2d9b448800384d01a7fa8a4fa28f7c7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willie Murphy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Willie Murphy,ou=Product Development,dc=bitwarden,dc=com", + email: "MurphyW@6f609804b5454243a8f49419cf4fa238.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donella Duncan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Donella Duncan,ou=Product Testing,dc=bitwarden,dc=com", + email: "DuncanD@738f967b243c46139646bd958f28d963.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden,dc=com", + email: "CoutuJ@37f6e89a491b4e36b50bf46647ad8a4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanBernard Coord,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=JeanBernard Coord,ou=Administrative,dc=bitwarden,dc=com", + email: "CoordJ@bb6c98b6a4dc470ea57c17d165eabc5d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tove Mettrey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tove Mettrey,ou=Product Development,dc=bitwarden,dc=com", + email: "MettreyT@c08c80f3c69d4d04b025dc038c8f6045.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathye Terwilligar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kathye Terwilligar,ou=Peons,dc=bitwarden,dc=com", + email: "TerwillK@cff83e5325124f689808e755392aa586.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emilda Wylie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emilda Wylie,ou=Product Development,dc=bitwarden,dc=com", + email: "WylieE@d93b82016f974a879c0bb4f0879ad59a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anette McBryan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anette McBryan,ou=Janitorial,dc=bitwarden,dc=com", + email: "McBryanA@e031c0ad66574b2aa76e4d7b19f2099d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jannelle Burnside,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jannelle Burnside,ou=Management,dc=bitwarden,dc=com", + email: "BurnsidJ@512b1443d1ed45ccb0713f3efd2670c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Swact Evans,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Swact Evans,ou=Management,dc=bitwarden,dc=com", + email: "EvansS@5ebaa8af105c497682481efce65265ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Almeda Bloemker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Almeda Bloemker,ou=Peons,dc=bitwarden,dc=com", + email: "BloemkeA@dbed6d43a21541a596721c7d187872fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronn Peschke,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ronn Peschke,ou=Human Resources,dc=bitwarden,dc=com", + email: "PeschkeR@49c1a115ac8b439f9ab99f302ba59751.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ainslee Scp,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ainslee Scp,ou=Management,dc=bitwarden,dc=com", + email: "ScpA@59a53864c7aa4d7ea9936880199e460a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claudina Jablonski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Claudina Jablonski,ou=Product Development,dc=bitwarden,dc=com", + email: "JablonsC@4c3bb131ea5148028bf43ce4a8c06b23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChatterC@b981e29e060744a4970aa15bb19296ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olwen Garey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Olwen Garey,ou=Administrative,dc=bitwarden,dc=com", + email: "GareyO@298f1a44ea7f452799d70af39fda7e0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden,dc=com", + email: "TebinkaE@d215d486a3844409ae8cd732ddd91a4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Empdb Jahromi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Empdb Jahromi,ou=Peons,dc=bitwarden,dc=com", + email: "JahromiE@d5f1e05d95aa48aa94789d8e594894db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ri Stouder,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ri Stouder,ou=Janitorial,dc=bitwarden,dc=com", + email: "StouderR@73c831b940d9493093c37d5b1eecfad5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darlene Mahonen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Darlene Mahonen,ou=Product Development,dc=bitwarden,dc=com", + email: "MahonenD@6944056d5ed54dc5bc898067e09586b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mayumi Piitz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mayumi Piitz,ou=Peons,dc=bitwarden,dc=com", + email: "PiitzM@10c8d574e1b3465daa57d640cae3b608.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden,dc=com", + email: "RombergK@236ae3c93f204197811a00f3cff75d1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeri Nadeau,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jeri Nadeau,ou=Product Development,dc=bitwarden,dc=com", + email: "NadeauJ@dd2faa5cf2194cacb3f5af2bda857324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valentina Diogo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Valentina Diogo,ou=Product Development,dc=bitwarden,dc=com", + email: "DiogoV@44eb2c38c4fe4b248a18869662999fa3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Errol Pieron,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Errol Pieron,ou=Administrative,dc=bitwarden,dc=com", + email: "PieronE@f1169fdd057e4624ac9e443f5372e7d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blanca Murock,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Blanca Murock,ou=Janitorial,dc=bitwarden,dc=com", + email: "MurockB@a88f08b66dd64c6298517b19d5989bb1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebeka McKinley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rebeka McKinley,ou=Product Development,dc=bitwarden,dc=com", + email: "McKinleR@1025092185dc4f3abfbf07259ddd26cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sean Stayton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sean Stayton,ou=Administrative,dc=bitwarden,dc=com", + email: "StaytonS@81141da0af1e4fc99220eaa81b9bfc02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elex Zaharychuk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Elex Zaharychuk,ou=Management,dc=bitwarden,dc=com", + email: "ZaharycE@ac22893bf0684aefaebb0a0decbe182b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francesca Alguire,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Francesca Alguire,ou=Management,dc=bitwarden,dc=com", + email: "AlguireF@43a2075086314e66b15465a3ec778b06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgie Bosy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Georgie Bosy,ou=Peons,dc=bitwarden,dc=com", + email: "BosyG@b347e7ca23ac4a809e51a769a6ab8366.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZingeleM@9976848d05f44dc7b3c15447d59df348.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fenelia Costache,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fenelia Costache,ou=Payroll,dc=bitwarden,dc=com", + email: "CostachF@6e76f9c1c78c4006a9e635f43ae1e33a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mab Lao,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mab Lao,ou=Payroll,dc=bitwarden,dc=com", + email: "LaoM@db227e3e8661495294f2d94a22c03e09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sayla Varia,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sayla Varia,ou=Payroll,dc=bitwarden,dc=com", + email: "VariaS@13b504a8a169451f93c28e40583299e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helyn Roberts,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Helyn Roberts,ou=Peons,dc=bitwarden,dc=com", + email: "RobertsH@87dcc1359cb14e3b85fed9765ee13d91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emr Zisu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Emr Zisu,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZisuE@bb2a12d176e44d12ab407b086abfe896.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ame Frie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ame Frie,ou=Janitorial,dc=bitwarden,dc=com", + email: "FrieA@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wonda Chao,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Wonda Chao,ou=Administrative,dc=bitwarden,dc=com", + email: "ChaoW@0f4d2fc737564208afea78f691b2f46f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oralle Checinski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Oralle Checinski,ou=Peons,dc=bitwarden,dc=com", + email: "ChecinsO@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden,dc=com", + email: "BostelmG@446165da8ada4f7e9d1338149aadb957.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Birendra Britton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Birendra Britton,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrittonB@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebeka McCall,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rebeka McCall,ou=Janitorial,dc=bitwarden,dc=com", + email: "McCallR@62f112825f5642bf9962b499addb2c73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constantine Bulanda,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Constantine Bulanda,ou=Management,dc=bitwarden,dc=com", + email: "BulandaC@4a7f898eb8954829907d34eeb46064e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibel Kurdas,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sibel Kurdas,ou=Product Development,dc=bitwarden,dc=com", + email: "KurdasS@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pcta Littlewood,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pcta Littlewood,ou=Management,dc=bitwarden,dc=com", + email: "LittlewP@35de9aeb91bf4aec9b81f69be90f9534.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZabokrzR@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Normand Simpkin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Normand Simpkin,ou=Janitorial,dc=bitwarden,dc=com", + email: "SimpkinN@1984c2d98d8741afa663b062afe4a653.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden,dc=com", + email: "TrochuN@7e667bf109b34912922cf458a184f322.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viole Scates,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Viole Scates,ou=Human Resources,dc=bitwarden,dc=com", + email: "ScatesV@185b51f28c7f46da96dbfb585fb3e90d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisent McAfee,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Melisent McAfee,ou=Administrative,dc=bitwarden,dc=com", + email: "McAfeeM@12e070c46c9248eda6657574192aedf1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jemima Hennelly,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jemima Hennelly,ou=Peons,dc=bitwarden,dc=com", + email: "HennellJ@cf607f514ea94d249d7d25105dbb0762.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Halette Hoag,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Halette Hoag,ou=Product Development,dc=bitwarden,dc=com", + email: "HoagH@eb0f9e33334540be9e105b51f1313877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fayre Patenaude,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fayre Patenaude,ou=Product Development,dc=bitwarden,dc=com", + email: "PatenauF@e7f11fb46eb7400b8880ea7eb0c6a19d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rob Allan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rob Allan,ou=Human Resources,dc=bitwarden,dc=com", + email: "AllanR@4d33a49d94084ccf8decdf53642f78ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noyes Bergman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Noyes Bergman,ou=Product Testing,dc=bitwarden,dc=com", + email: "BergmanN@4154a37503e24114bfe5421ecb627bb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Else McCollam,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Else McCollam,ou=Product Testing,dc=bitwarden,dc=com", + email: "McCollaE@5b2a207a5b574a8faa45790df76c253d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bellina Koens,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bellina Koens,ou=Management,dc=bitwarden,dc=com", + email: "KoensB@c6e9ac083cc043b8883c6054dd35e8a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lian Shapcott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lian Shapcott,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShapcotL@ac56a9f40fef46b4bb71769c6757745e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florella Pichocki,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Florella Pichocki,ou=Management,dc=bitwarden,dc=com", + email: "PichockF@f10e733ab73f49deaef5dee5420e792f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maribel Zafarano,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maribel Zafarano,ou=Management,dc=bitwarden,dc=com", + email: "ZafaranM@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ren Dickerson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ren Dickerson,ou=Administrative,dc=bitwarden,dc=com", + email: "DickersR@16c9187062174be89c2c9f0c8fb48cf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darla Puglia,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Darla Puglia,ou=Human Resources,dc=bitwarden,dc=com", + email: "PugliaD@881099fe370d45e6aa7b0854814780fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacee Mamoulides,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Stacee Mamoulides,ou=Peons,dc=bitwarden,dc=com", + email: "MamouliS@9350b9be3864496bacd0e267723dff37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrien Bennatt,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Adrien Bennatt,ou=Management,dc=bitwarden,dc=com", + email: "BennattA@1df73cc203344a569c1b4737122f78a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stesha Cotten,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Stesha Cotten,ou=Payroll,dc=bitwarden,dc=com", + email: "CottenS@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden,dc=com", + email: "KawauchB@43194b35694143d5b8419715c0e79567.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ryann McRonald,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ryann McRonald,ou=Management,dc=bitwarden,dc=com", + email: "McRonalR@4eab057e70644dff8f3d5ac041be0877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joete Pham,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Joete Pham,ou=Product Development,dc=bitwarden,dc=com", + email: "PhamJ@e57a80c33f4143ecb7f38726907bcc9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kimmie Dyess,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kimmie Dyess,ou=Management,dc=bitwarden,dc=com", + email: "DyessK@8a7d5133f2fc4397a30a337937403b76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crin Seeley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Crin Seeley,ou=Administrative,dc=bitwarden,dc=com", + email: "SeeleyC@7b437b94250d4fbb8fc2d7ab00cc547b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden,dc=com", + email: "MozelesE@918d2d4077734b5f89b3311e0d63e21b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mercie Polson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mercie Polson,ou=Product Testing,dc=bitwarden,dc=com", + email: "PolsonM@19fdb24d6d9d48abb4a5fe5ad5b743d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elvert Tripp,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elvert Tripp,ou=Payroll,dc=bitwarden,dc=com", + email: "TrippE@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mead Urquhart,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mead Urquhart,ou=Payroll,dc=bitwarden,dc=com", + email: "UrquharM@2370f86ee68f4e849137b28f2aad76d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jan Delorenzi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jan Delorenzi,ou=Payroll,dc=bitwarden,dc=com", + email: "DelorenJ@97baadb605a44ba996abfdd024e13b4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnny Stetter,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Johnny Stetter,ou=Management,dc=bitwarden,dc=com", + email: "StetterJ@1c4889d6f6ca4189816eb95971dafca2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjan Bourk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marjan Bourk,ou=Management,dc=bitwarden,dc=com", + email: "BourkM@8738fd425c2c456fa523b311dbe475c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden,dc=com", + email: "MaccallJ@20be35b03567473c9452a335266426a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjan Angell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marjan Angell,ou=Human Resources,dc=bitwarden,dc=com", + email: "AngellM@207f860f10124c3fa866addc10eb4455.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrol Calder,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Darrol Calder,ou=Administrative,dc=bitwarden,dc=com", + email: "CalderD@3876999ec69c4543970a2db25c726421.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meridian Buder,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Meridian Buder,ou=Payroll,dc=bitwarden,dc=com", + email: "BuderM@6319c042006048f592b024b86a54bed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ericka Contardo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ericka Contardo,ou=Human Resources,dc=bitwarden,dc=com", + email: "ContardE@4ad5ae565d1a473a81525b1882b9931b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saeed Liston,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Saeed Liston,ou=Peons,dc=bitwarden,dc=com", + email: "ListonS@7db6edd7156649fcb7ae93732caff60d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShackelC@58351331fe224df1be3d4a98ae5bb106.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", + email: "KuzemkaN@5e7bd652b57e4d33a836a31c8d23e4f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden,dc=com", + email: "BurkepiR@fa3e145865f0441f8b1263a859d170e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cinnamon Jurman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cinnamon Jurman,ou=Peons,dc=bitwarden,dc=com", + email: "JurmanC@bb172de44ec2458f9c918f47583b4d80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlie Hord,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karlie Hord,ou=Peons,dc=bitwarden,dc=com", + email: "HordK@d147229253264c2b9b78c661dfda7cde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ozlem Switching,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ozlem Switching,ou=Peons,dc=bitwarden,dc=com", + email: "SwitchiO@526b2e31e79b488fb63ef0570005204a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seven Figura,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Seven Figura,ou=Janitorial,dc=bitwarden,dc=com", + email: "FiguraS@f81c7db8a94146de916a4b35349336d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Birendra Helton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Birendra Helton,ou=Product Development,dc=bitwarden,dc=com", + email: "HeltonB@f7d02b716b224e868c9d7b6fe1dd0e0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madan Babcock,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Madan Babcock,ou=Management,dc=bitwarden,dc=com", + email: "BabcockM@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mandi Whitford,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mandi Whitford,ou=Janitorial,dc=bitwarden,dc=com", + email: "WhitforM@3f891cf88f8f4b9cb80e52276f5b9b1c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilse Silwer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ilse Silwer,ou=Product Testing,dc=bitwarden,dc=com", + email: "SilwerI@daa517e67d894816b4a47e43cd62e356.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tommy Fabry,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tommy Fabry,ou=Administrative,dc=bitwarden,dc=com", + email: "FabryT@3f5b9048c8924fec87576c273249cede.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doloritas Renton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Doloritas Renton,ou=Peons,dc=bitwarden,dc=com", + email: "RentonD@75230f61780f4e0e9cf624359c2b6622.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beb Carlson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Beb Carlson,ou=Payroll,dc=bitwarden,dc=com", + email: "CarlsonB@bc1068ff7c5a442e884cab9ab7c4508b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden,dc=com", + email: "HobbsH@fca42d05acbe47a69668ab85d76a4968.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden,dc=com", + email: "BombardF@a4ddeff635f14fe6b72b17daaba90627.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Audrey Charchanko,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Audrey Charchanko,ou=Peons,dc=bitwarden,dc=com", + email: "CharchaA@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grantley Walles,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Grantley Walles,ou=Janitorial,dc=bitwarden,dc=com", + email: "WallesG@da5a908240674035b4f089697eec14f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vale Yost,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vale Yost,ou=Payroll,dc=bitwarden,dc=com", + email: "YostV@f491657ce6cf49f2abe50f84c8f0d067.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalie Krausbar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kalie Krausbar,ou=Management,dc=bitwarden,dc=com", + email: "KrausbaK@742e6acfb3ee43e195f05147276956cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martino Busby,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Martino Busby,ou=Product Testing,dc=bitwarden,dc=com", + email: "BusbyM@bb1a549f208840af8ec52ae7c5ebc4f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selma Kletchko,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Selma Kletchko,ou=Administrative,dc=bitwarden,dc=com", + email: "KletchkS@e59e7dc5561842d286fd6dfedfe8fb9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lineth Montoute,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lineth Montoute,ou=Administrative,dc=bitwarden,dc=com", + email: "MontoutL@89d4d4d86ff240e7ab94041e1f247e61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolie Langenberg,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jolie Langenberg,ou=Administrative,dc=bitwarden,dc=com", + email: "LangenbJ@f07caf5199104113b8565ebc43aef936.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carm Mach,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carm Mach,ou=Janitorial,dc=bitwarden,dc=com", + email: "MachC@acd42583d3044f41816fc62eb7992816.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden,dc=com", + email: "PaolettH@d5cc15f6bb6b4357bd0ce84100b284f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Radio Balog,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Radio Balog,ou=Janitorial,dc=bitwarden,dc=com", + email: "BalogR@72030161dcd24217be14766e527d14fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zere Zafarullah,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zere Zafarullah,ou=Management,dc=bitwarden,dc=com", + email: "ZafarulZ@478c327328034508a65f2bbc1dd25518.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Waly Grabowski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Waly Grabowski,ou=Management,dc=bitwarden,dc=com", + email: "GrabowsW@f01b8c6e19b14b049532cb6664f8caaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dallas Smelters,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dallas Smelters,ou=Product Testing,dc=bitwarden,dc=com", + email: "SmelterD@dd6aa42254414b099b5f31cdae049e72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden,dc=com", + email: "CulbretI@8f698818b35041d38a84f1c71ca57e14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zalee Caron,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zalee Caron,ou=Product Development,dc=bitwarden,dc=com", + email: "CaronZ@5acaf493974e4933b27d5e78e25585d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden,dc=com", + email: "BoutnikL@1919ee78614547cbb38642c8afc73045.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Konstanze Cordell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Konstanze Cordell,ou=Administrative,dc=bitwarden,dc=com", + email: "CordellK@685a3d9fd790422d8fb825f7a90cab65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Froukje Ecker,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Froukje Ecker,ou=Management,dc=bitwarden,dc=com", + email: "EckerF@b778c029c2264b3089247adae57812bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petri Uhlig,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Petri Uhlig,ou=Payroll,dc=bitwarden,dc=com", + email: "UhligP@6cba9523afcf470890bdfdaf46de0ca4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tessa Pino,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tessa Pino,ou=Product Testing,dc=bitwarden,dc=com", + email: "PinoT@a131fffbdaa44e2aab56ba41e197cf57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden,dc=com", + email: "BielejeC@a8e48278603d4ab3aacfb1fa680fc937.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Britni Routing,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Britni Routing,ou=Administrative,dc=bitwarden,dc=com", + email: "RoutingB@22b38e3187c1496caaed86c5083e47f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michelle Mirza,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Michelle Mirza,ou=Human Resources,dc=bitwarden,dc=com", + email: "MirzaM@2c4465aec0574a929626eaed8fd03343.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Starlin Schilling,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Starlin Schilling,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchilliS@98037b50a4ca4f29b8fad60c1bb6a197.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manya Cripps,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Manya Cripps,ou=Administrative,dc=bitwarden,dc=com", + email: "CrippsM@92f1d5dfabbf4e5bb19678383b93b294.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esther Buttrey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Esther Buttrey,ou=Product Development,dc=bitwarden,dc=com", + email: "ButtreyE@0ea39720ccd849b98e8f01497c06b283.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamma Sellwood,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tamma Sellwood,ou=Administrative,dc=bitwarden,dc=com", + email: "SellwooT@549f8ec8bbb34adfa377866293c57a0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=RongChin Fisher,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=RongChin Fisher,ou=Management,dc=bitwarden,dc=com", + email: "FisherR@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karena Bissegger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Karena Bissegger,ou=Human Resources,dc=bitwarden,dc=com", + email: "BisseggK@8111da611c964d98a3dc51af12640e1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden,dc=com", + email: "SkerlakB@c41f8f7aea354718b6ea3277359c3684.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden,dc=com", + email: "DOrazioC@5670176255f949f78b023f460fb780c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden,dc=com", + email: "HonkakaL@baeeb32a45ba4c0a81a7005455fc2881.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden,dc=com", + email: "DeCristL@57ee1e7c1faa4ce2b72c1469382238e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zainab Musgrove,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Zainab Musgrove,ou=Peons,dc=bitwarden,dc=com", + email: "MusgrovZ@47050585f7ac473188eb3868ce1763ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebekah Fenner,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rebekah Fenner,ou=Payroll,dc=bitwarden,dc=com", + email: "FennerR@7710749ecc7b449a842362f5e9e1b148.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabey Florescu,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gabey Florescu,ou=Peons,dc=bitwarden,dc=com", + email: "FlorescG@6d7476aff2da449e96bbd0ec87bf4d49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Padraig Scorziello,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Padraig Scorziello,ou=Product Development,dc=bitwarden,dc=com", + email: "ScorzieP@01034db83e3b44ec835b5255948e4e0f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarisse Venne,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Clarisse Venne,ou=Administrative,dc=bitwarden,dc=com", + email: "VenneC@822da1d370d045aaadf5490626c311f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sally Gimon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sally Gimon,ou=Product Testing,dc=bitwarden,dc=com", + email: "GimonS@5b47dd9dbc1945a4a16e83a582215989.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siusan Surridge,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Siusan Surridge,ou=Management,dc=bitwarden,dc=com", + email: "SurridgS@33045c677af94d5d866f53c47ff9ab36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorris MacDonald,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dorris MacDonald,ou=Product Development,dc=bitwarden,dc=com", + email: "MacDonaD@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zoltan Copes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Zoltan Copes,ou=Peons,dc=bitwarden,dc=com", + email: "CopesZ@eaf35a1f9c5a47789295b9630982561d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annadiane Moulton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annadiane Moulton,ou=Administrative,dc=bitwarden,dc=com", + email: "MoultonA@4af403b72bd84466abf0512529d528e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chrystal Salkok,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chrystal Salkok,ou=Payroll,dc=bitwarden,dc=com", + email: "SalkokC@6dc0e5d935a04bb897ee53893751111f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ayaz McFeely,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ayaz McFeely,ou=Payroll,dc=bitwarden,dc=com", + email: "McFeelyA@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Missie Dinnin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Missie Dinnin,ou=Peons,dc=bitwarden,dc=com", + email: "DinninM@ba4f810ac4254d8dbe9cfd7199a37cf3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden,dc=com", + email: "SobkowT@6e1688424ec244adb10f2e8d17d9a231.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlee Cheval,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Karlee Cheval,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChevalK@3ef182c2d8294a598732f2ba6e610c67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constantia Hampshire,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Constantia Hampshire,ou=Peons,dc=bitwarden,dc=com", + email: "HampshiC@777f0963de27462aa91642388ce1bcfa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delle Stansfield,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Delle Stansfield,ou=Administrative,dc=bitwarden,dc=com", + email: "StansfiD@bf284e27ed8d49cf9a440a443619bccc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Percy Fiset,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Percy Fiset,ou=Janitorial,dc=bitwarden,dc=com", + email: "FisetP@f6d5040b88954db19f785e7761b5d419.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thea Goh,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Thea Goh,ou=Human Resources,dc=bitwarden,dc=com", + email: "GohT@34ad93f9a66546aaaf62d8eecc06145c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evanne Twiss,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Evanne Twiss,ou=Product Testing,dc=bitwarden,dc=com", + email: "TwissE@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden,dc=com", + email: "UlrichE@49b6f96ca444413a876834c561f501a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opaline Bayno,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Opaline Bayno,ou=Management,dc=bitwarden,dc=com", + email: "BaynoO@1f78d8536b924f6f89f5b50f4dff308b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delbert Hodgens,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Delbert Hodgens,ou=Payroll,dc=bitwarden,dc=com", + email: "HodgensD@583cd3a2f23946078680619fff6a08b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden,dc=com", + email: "GnaedinS@74ad719f3ca94101b51f4a4b5749fe0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antonio Ide,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Antonio Ide,ou=Product Testing,dc=bitwarden,dc=com", + email: "IdeA@85bdf0f9c9734501b6e6cb120b7e80db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden,dc=com", + email: "ShigemuM@4281cc0a8ccb4f14858483f470a527dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berget Feil,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Berget Feil,ou=Product Testing,dc=bitwarden,dc=com", + email: "FeilB@402d7992fc8d4f0abdb7612e07362a4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matty Danielak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Matty Danielak,ou=Janitorial,dc=bitwarden,dc=com", + email: "DanielaM@59d0d0528b8d43efbf3f6b95ae91b41d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prafula Stasney,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Prafula Stasney,ou=Management,dc=bitwarden,dc=com", + email: "StasneyP@ac204890645b433e960754931ad42c93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eyk Bradford,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Eyk Bradford,ou=Peons,dc=bitwarden,dc=com", + email: "BradforE@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Della Barbe,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Della Barbe,ou=Management,dc=bitwarden,dc=com", + email: "BarbeD@78bde8bce82c4d1dbca4b21bf7784813.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darelle Waid,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Darelle Waid,ou=Product Development,dc=bitwarden,dc=com", + email: "WaidD@70e5048368bb463a909414f19d29543c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dino Farren,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dino Farren,ou=Human Resources,dc=bitwarden,dc=com", + email: "FarrenD@aee41a45245c488583a4e60c217e30cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden,dc=com", + email: "MyersPiE@d4d56842eb064bd38446a254d77ceab5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruth Chouinard,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ruth Chouinard,ou=Peons,dc=bitwarden,dc=com", + email: "ChouinaR@468946285b4b4bacab978eabc38e3750.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiina Averette,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tiina Averette,ou=Product Development,dc=bitwarden,dc=com", + email: "AverettT@42f6c709ced54560a282482057eafc53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meghann Marasco,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Meghann Marasco,ou=Product Testing,dc=bitwarden,dc=com", + email: "MarascoM@b4a96c186a084a79b91245984247afc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden,dc=com", + email: "HusarewG@396f50164cb54f9b8cdc5d4d56de2e49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnella Chona,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Agnella Chona,ou=Management,dc=bitwarden,dc=com", + email: "ChonaA@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olimpia Stetter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Olimpia Stetter,ou=Product Development,dc=bitwarden,dc=com", + email: "StetterO@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zea Hoadley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Zea Hoadley,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoadleyZ@b22ff28e3c9d44f9a2be9fd304adde71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanu Constantinides,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kanu Constantinides,ou=Management,dc=bitwarden,dc=com", + email: "ConstanK@38dcec66f26c4456ab9d677c65296ef1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Priti Hummerston,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Priti Hummerston,ou=Product Development,dc=bitwarden,dc=com", + email: "HummersP@f4470991699244448d6b8bb8de6893c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrassetJ@50b38e0ffb6e4939890621a0511935ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siobhan Duffney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Siobhan Duffney,ou=Product Development,dc=bitwarden,dc=com", + email: "DuffneyS@d143e10394af44668765922189bff89a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KaiWai Greenberg,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=KaiWai Greenberg,ou=Management,dc=bitwarden,dc=com", + email: "GreenbeK@2fe559ef1909460788a7965dfb6d63bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phyllys Relations,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Phyllys Relations,ou=Product Development,dc=bitwarden,dc=com", + email: "RelatioP@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden,dc=com", + email: "GriffitS@12c627d4150246c09e4556d8871e3971.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Onette Erwin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Onette Erwin,ou=Administrative,dc=bitwarden,dc=com", + email: "ErwinO@901564204f174d52bee3bff189fa1964.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micheal Threader,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Micheal Threader,ou=Peons,dc=bitwarden,dc=com", + email: "ThreadeM@81539b6d10a24d8ca67f1fd08a3e12b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden,dc=com", + email: "BarnwelI@01ea25f91f69450da0e6e08e522d6866.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melitta Teacher,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melitta Teacher,ou=Management,dc=bitwarden,dc=com", + email: "TeacherM@2c23fea190c640299f3fdc976ce4b7f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francesca Spinks,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Francesca Spinks,ou=Product Testing,dc=bitwarden,dc=com", + email: "SpinksF@ae35c1a0907348c0bfc6c98f95d0d043.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kippie Genova,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kippie Genova,ou=Human Resources,dc=bitwarden,dc=com", + email: "GenovaK@02024d9597e14220ab6fb23c71480154.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=My Geuder,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=My Geuder,ou=Payroll,dc=bitwarden,dc=com", + email: "GeuderM@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corene Goldman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Corene Goldman,ou=Janitorial,dc=bitwarden,dc=com", + email: "GoldmanC@41979f975e5b4df39d8af2a5899b3c86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bea Shanahan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bea Shanahan,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShanahaB@785fa08a549c473b918f799d10771836.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adah Simzer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Adah Simzer,ou=Payroll,dc=bitwarden,dc=com", + email: "SimzerA@fac421ca650e46139878bbd5f7498e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minnesota Safah,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Minnesota Safah,ou=Administrative,dc=bitwarden,dc=com", + email: "SafahM@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perrine Ketkar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Perrine Ketkar,ou=Peons,dc=bitwarden,dc=com", + email: "KetkarP@4f7f458ba85b4c42a1412d24897cf2b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jilly Kwok,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jilly Kwok,ou=Product Development,dc=bitwarden,dc=com", + email: "KwokJ@877dbf1e095f477dbff1ca10ebea40c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden,dc=com", + email: "CemenskG@ca5f8fc3a5274b669733a8f1eb35b88b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden,dc=com", + email: "ElliottL@321b01a1b92242e68a892ee12821e529.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharona Lunde,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sharona Lunde,ou=Human Resources,dc=bitwarden,dc=com", + email: "LundeS@d6b3231dbb434132911ed9c9e37e3901.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynnette Juskevicius,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lynnette Juskevicius,ou=Management,dc=bitwarden,dc=com", + email: "JuskeviL@87501b64e5644d78a747c4f01175b74a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PeyKee Gunther,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=PeyKee Gunther,ou=Administrative,dc=bitwarden,dc=com", + email: "GuntherP@5627b6b1b02646ec88c596099b169466.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Howden LaBauve,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Howden LaBauve,ou=Payroll,dc=bitwarden,dc=com", + email: "LaBauveH@dcc9b9b7a7cb4f758bc0f2bd3592b966.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dana Linaugh,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dana Linaugh,ou=Human Resources,dc=bitwarden,dc=com", + email: "LinaughD@073d9b40128d435294a7cce9001bca7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gnni Schafer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gnni Schafer,ou=Product Development,dc=bitwarden,dc=com", + email: "SchaferG@eea3ea553d4b4f9dacda1e1f188882a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Callida Tropea,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Callida Tropea,ou=Management,dc=bitwarden,dc=com", + email: "TropeaC@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden,dc=com", + email: "CholewiG@30477bd611094e598c75e08386158998.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amara Zisu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Amara Zisu,ou=Product Development,dc=bitwarden,dc=com", + email: "ZisuA@20be5fad1efc427e98e47e76a75c40bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delly Macklem,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Delly Macklem,ou=Product Development,dc=bitwarden,dc=com", + email: "MacklemD@e18d08f509ac4ed1bf7a2094201ce8f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faustina Yedema,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Faustina Yedema,ou=Payroll,dc=bitwarden,dc=com", + email: "YedemaF@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annamaria Handforth,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annamaria Handforth,ou=Administrative,dc=bitwarden,dc=com", + email: "HandforA@ab4d4d42eb2d484cb7a730409517902e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Korney Gehm,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Korney Gehm,ou=Product Testing,dc=bitwarden,dc=com", + email: "GehmK@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Archie Klimon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Archie Klimon,ou=Payroll,dc=bitwarden,dc=com", + email: "KlimonA@4afa8343c8fe499bbf69af9cea3fa9e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angela Holland,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Angela Holland,ou=Product Development,dc=bitwarden,dc=com", + email: "HollandA@f22f9789190b4636a01e59d38d771067.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcellina Clairmont,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marcellina Clairmont,ou=Peons,dc=bitwarden,dc=com", + email: "ClairmoM@12b0a668d23742f7b436e1fcd1a16efa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristien Yamamoto,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kristien Yamamoto,ou=Peons,dc=bitwarden,dc=com", + email: "YamamotK@41b0e973148e4596b195108aeda208de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nayan Simcox,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nayan Simcox,ou=Payroll,dc=bitwarden,dc=com", + email: "SimcoxN@5d8927d9a18847879f1969c651cc8b72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celisse Draier,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Celisse Draier,ou=Product Development,dc=bitwarden,dc=com", + email: "DraierC@f30a055d94234aafa3b01325963e42c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matty Vasile,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Matty Vasile,ou=Payroll,dc=bitwarden,dc=com", + email: "VasileM@f9e13296819e4d139b7b490c05eac7c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WingKi McClain,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=WingKi McClain,ou=Peons,dc=bitwarden,dc=com", + email: "McClainW@3519a5fee4394ec4a1319941ad8ff05d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden,dc=com", + email: "HounselS@59faf706c5aa46e79492393874607cdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden,dc=com", + email: "TsalikiK@0babc297aa7744eb886478ba408ffef6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shutterbug Ta,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shutterbug Ta,ou=Product Development,dc=bitwarden,dc=com", + email: "TaS@d099b87b6d4c4f55806f0c8cf8dbfe18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Les Oreilly,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Les Oreilly,ou=Administrative,dc=bitwarden,dc=com", + email: "OreillyL@bf82bd280911404494f15486e63577cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veen Cawley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Veen Cawley,ou=Management,dc=bitwarden,dc=com", + email: "CawleyV@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stergios Romanowski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Stergios Romanowski,ou=Peons,dc=bitwarden,dc=com", + email: "RomanowS@59db13ba21bf46b29057d72100d263ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shyam Hipson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shyam Hipson,ou=Product Development,dc=bitwarden,dc=com", + email: "HipsonS@a21f8badf17c4b4dbce73be0734b9d87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carley Dal,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carley Dal,ou=Human Resources,dc=bitwarden,dc=com", + email: "DalC@ad4942d8c3c341119939c679c4dae154.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chickie Dyna,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Chickie Dyna,ou=Management,dc=bitwarden,dc=com", + email: "DynaC@822da1d370d045aaadf5490626c311f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden,dc=com", + email: "WesseloR@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norstar Bouick,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Norstar Bouick,ou=Product Development,dc=bitwarden,dc=com", + email: "BouickN@7eb3446796544055a8625bc9cff5db0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kapsch Bitton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kapsch Bitton,ou=Product Development,dc=bitwarden,dc=com", + email: "BittonK@bd7ed784957343358f080e4bf8b3e472.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoko Feder,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Yoko Feder,ou=Administrative,dc=bitwarden,dc=com", + email: "FederY@edf99b25a1c649749aeb3745c7ce07a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden,dc=com", + email: "PelotR@402d43c51a4446beb3be4fb34fdb725c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eugine Werick,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Eugine Werick,ou=Human Resources,dc=bitwarden,dc=com", + email: "WerickE@5466e2cfe74b454ca4ce7f08783c2376.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marley Newcomb,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marley Newcomb,ou=Product Testing,dc=bitwarden,dc=com", + email: "NewcombM@39afc87e8d7642cab0986ce57dd64310.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zhanna Lyons,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zhanna Lyons,ou=Management,dc=bitwarden,dc=com", + email: "LyonsZ@9eb282188d9c470a820f560ba43cb34c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desire Adam,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Desire Adam,ou=Administrative,dc=bitwarden,dc=com", + email: "AdamD@2fc71ac565f5494c88d9a22e99c366a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joni Dhir,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Joni Dhir,ou=Payroll,dc=bitwarden,dc=com", + email: "DhirJ@4e3272dfa10d49cf921e5550808b516c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quyen Boyle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Quyen Boyle,ou=Product Development,dc=bitwarden,dc=com", + email: "BoyleQ@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden,dc=com", + email: "ODwyerA@ed09d6145c6443eda98f0394646537ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fallon Lavigne,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fallon Lavigne,ou=Administrative,dc=bitwarden,dc=com", + email: "LavigneF@0798984bbb0c4179a1769a476df089f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aleda Kato,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aleda Kato,ou=Peons,dc=bitwarden,dc=com", + email: "KatoA@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristine Musser,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cristine Musser,ou=Peons,dc=bitwarden,dc=com", + email: "MusserC@021f182578104bf484110ac6631b5efa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden,dc=com", + email: "OHeochaM@2508acc0090a42e782d940d4d8f7e99a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shantee Tsao,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shantee Tsao,ou=Administrative,dc=bitwarden,dc=com", + email: "TsaoS@7134af8f58034ab1b6da056722567020.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phu Krowlek,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Phu Krowlek,ou=Human Resources,dc=bitwarden,dc=com", + email: "KrowlekP@9738e422f0a74193a7888d326771c9bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estrella Infocenter,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Estrella Infocenter,ou=Payroll,dc=bitwarden,dc=com", + email: "InfocenE@3e88ff34a4594358ba2c438e74d99277.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden,dc=com", + email: "GroetseJ@49e173c530254128b2fa7a55a9ce39c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steinar Mathur,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Steinar Mathur,ou=Product Development,dc=bitwarden,dc=com", + email: "MathurS@4c46c0ccb3eb4998b4cbc47cae874ac9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden,dc=com", + email: "ReiserR@82cd13218ce14af8a30de1517f768932.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jayme Shemwell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jayme Shemwell,ou=Payroll,dc=bitwarden,dc=com", + email: "ShemwelJ@d1f70e2814da436e8e729474e3ae0ca1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Masha McGinn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Masha McGinn,ou=Administrative,dc=bitwarden,dc=com", + email: "McGinnM@7caae22d0df6421e81f8b88b910cd3d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden,dc=com", + email: "McMonagP@8d9767327a3c45ac99e8c87493980bd0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Astrix Tiller,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Astrix Tiller,ou=Peons,dc=bitwarden,dc=com", + email: "TillerA@fc7406e3c8e34fce9e4288bfe13798e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlan Fadel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Arlan Fadel,ou=Management,dc=bitwarden,dc=com", + email: "FadelA@f3bc4de2ab8548c1a2d64ce3115e2db5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden,dc=com", + email: "WardropJ@7731926b8eba477c82aacfea38c5fc13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siouxie Norgaard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Siouxie Norgaard,ou=Management,dc=bitwarden,dc=com", + email: "NorgaarS@ec668ee22c6346d2882aef8dfcb8696b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden,dc=com", + email: "DeFrancT@cf0ec0264ca64fe98e19bc5f405333ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phaedra Mavrou,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Phaedra Mavrou,ou=Peons,dc=bitwarden,dc=com", + email: "MavrouP@c88c546a41dd403183cf489cf47f2715.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thang Kerr,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Thang Kerr,ou=Peons,dc=bitwarden,dc=com", + email: "KerrT@999c25847f9849ce9a6f746d005bddef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helsa Cau,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Helsa Cau,ou=Management,dc=bitwarden,dc=com", + email: "CauH@cc71e71454d64842b764308435f8b9ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyana Tchir,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dyana Tchir,ou=Management,dc=bitwarden,dc=com", + email: "TchirD@7b42a22455f94b9392fcbdbd3455eba3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elga Hrenyk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elga Hrenyk,ou=Payroll,dc=bitwarden,dc=com", + email: "HrenykE@348e203028124b55ac20e45b299ae842.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brooks Helgeland,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brooks Helgeland,ou=Management,dc=bitwarden,dc=com", + email: "HelgelaB@59d0d0528b8d43efbf3f6b95ae91b41d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toshi Ircmer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Toshi Ircmer,ou=Administrative,dc=bitwarden,dc=com", + email: "IrcmerT@0ae37e3d8fa14ddaa3b8f54015598091.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden,dc=com", + email: "OhmaruR@1726f5bfacd044bf871463e64c567d5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yosuf Diaconu,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yosuf Diaconu,ou=Peons,dc=bitwarden,dc=com", + email: "DiaconuY@2f0e638056364f0ebcf3676022d443c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nomi Kielstra,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nomi Kielstra,ou=Administrative,dc=bitwarden,dc=com", + email: "KielstrN@e5a014d6d0a246bab1688f8742395120.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolyn Sanche,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Carolyn Sanche,ou=Peons,dc=bitwarden,dc=com", + email: "SancheC@7670182abb394f41a5633ad118cf9427.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marj Anker,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marj Anker,ou=Janitorial,dc=bitwarden,dc=com", + email: "AnkerM@10c7f32d495b44929e9653824155ab35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agneta Gundlach,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Agneta Gundlach,ou=Peons,dc=bitwarden,dc=com", + email: "GundlacA@51229efcbb5c42119b299e0a2768aeae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeffery Pafilis,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jeffery Pafilis,ou=Management,dc=bitwarden,dc=com", + email: "PafilisJ@c4e315e8ab0343648ac206c0fcb55300.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isoft Buchanan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Isoft Buchanan,ou=Administrative,dc=bitwarden,dc=com", + email: "BuchanaI@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassaundra Gerenser,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cassaundra Gerenser,ou=Management,dc=bitwarden,dc=com", + email: "GerenseC@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden,dc=com", + email: "RourkA@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roberta Rorie,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Roberta Rorie,ou=Product Testing,dc=bitwarden,dc=com", + email: "RorieR@42dc5c7bd0a9441fa8defd9c17a20190.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bliss Fahey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bliss Fahey,ou=Product Development,dc=bitwarden,dc=com", + email: "FaheyB@60bda5017d9d4f298f75b11882690433.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden,dc=com", + email: "JodoinSP@98bc3f5d71914c17aba390cbd1fb2317.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden,dc=com", + email: "BombardH@de898a326d21476c9afc54d7a723d91b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wargnier Deployment,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wargnier Deployment,ou=Management,dc=bitwarden,dc=com", + email: "DeploymW@22acfb768c09448b9b9c3d7bd8e3a389.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orsa Brunsting,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Orsa Brunsting,ou=Peons,dc=bitwarden,dc=com", + email: "BrunstiO@484147050d834a1da350db4c28e9f45b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gudrun Yassa,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gudrun Yassa,ou=Administrative,dc=bitwarden,dc=com", + email: "YassaG@217ec5edfeed4e93a10ae2e601d2972a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden,dc=com", + email: "NielsonJ@6eea686c67fb4ec88a09f208c487f7be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden,dc=com", + email: "TyndallA@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Damon Bradbury,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Damon Bradbury,ou=Product Testing,dc=bitwarden,dc=com", + email: "BradburD@c5677bf046324d648a7018e163260369.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden,dc=com", + email: "ProgramS@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Onette Garguilo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Onette Garguilo,ou=Peons,dc=bitwarden,dc=com", + email: "GarguilO@f721dbef06364385bb5bd030d8447566.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meridel Dahl,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Meridel Dahl,ou=Management,dc=bitwarden,dc=com", + email: "DahlM@3eadf1668d9548a8a0a9a2df5d767d49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clem Gallagher,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Clem Gallagher,ou=Human Resources,dc=bitwarden,dc=com", + email: "GallaghC@283ec365fe654c3fba136ca1c0a944d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lanni Totti,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lanni Totti,ou=Janitorial,dc=bitwarden,dc=com", + email: "TottiL@42ad681604354ebd8ba7299c92bab329.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robertson Soh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Robertson Soh,ou=Product Development,dc=bitwarden,dc=com", + email: "SohR@790b795bf7b24cf6af4ced64b738e341.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden,dc=com", + email: "NakamurM@753b48fb7ffe43dd87736153647baa4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pavia Costen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pavia Costen,ou=Administrative,dc=bitwarden,dc=com", + email: "CostenP@8187109cbba7441ab35098b49dbd1de9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karyn Holz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Karyn Holz,ou=Administrative,dc=bitwarden,dc=com", + email: "HolzK@bb08aadb4193484cae12aab63b02863d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ikram Thiel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ikram Thiel,ou=Payroll,dc=bitwarden,dc=com", + email: "ThielI@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden,dc=com", + email: "HirakiA@6b01ea5296ae43ddbca168736ac18b91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden,dc=com", + email: "SylvieA@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ladan Fabrizio,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ladan Fabrizio,ou=Peons,dc=bitwarden,dc=com", + email: "FabriziL@a2ce9e15b99944e89da6ac3d6191a31a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leeanne Credille,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Leeanne Credille,ou=Product Testing,dc=bitwarden,dc=com", + email: "CredillL@e8711dcc34d6494b9af82b382ecdea7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Augusto Aguiar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Augusto Aguiar,ou=Management,dc=bitwarden,dc=com", + email: "AguiarA@4b32479366c74b46b2b68466f59bae46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gayl IBNTAS,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gayl IBNTAS,ou=Peons,dc=bitwarden,dc=com", + email: "IBNTASG@f7752e330a264f1884c22f0f347f41b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Painterson Watkinson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Painterson Watkinson,ou=Administrative,dc=bitwarden,dc=com", + email: "WatkinsP@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", + email: "RadovniJ@c7ac29b8c7544beabc5b51db5b6a9b3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kieran Copley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kieran Copley,ou=Product Testing,dc=bitwarden,dc=com", + email: "CopleyK@6ba6fd011294489da26fcecac46b96da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othilie Sconzo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Othilie Sconzo,ou=Peons,dc=bitwarden,dc=com", + email: "SconzoO@726a27d8fd0d444e9b0592ed813a614a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchiebeO@d8522133168344ce827a4130e7d16436.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raju Sellars,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Raju Sellars,ou=Payroll,dc=bitwarden,dc=com", + email: "SellarsR@a3f707626d6147889e378c357f0c4921.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carly Kammerer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carly Kammerer,ou=Janitorial,dc=bitwarden,dc=com", + email: "KammereC@bd86eafb5d8348f2aca6e7dd76b8a0a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dian Rhoads,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dian Rhoads,ou=Administrative,dc=bitwarden,dc=com", + email: "RhoadsD@4288404d8e88496eb1da71471cd4a940.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Utpala Weldon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Utpala Weldon,ou=Product Testing,dc=bitwarden,dc=com", + email: "WeldonU@c99bb7173b5043c2a474937e225abb28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden,dc=com", + email: "JodoinSE@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thornton McDermott,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Thornton McDermott,ou=Product Development,dc=bitwarden,dc=com", + email: "McDermoT@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juditha Shirai,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Juditha Shirai,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShiraiJ@95965185925a4793bf90f83b6e0b2310.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden,dc=com", + email: "NevardaN@341c2a7aa79d4aa1aa97b332acebc155.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden,dc=com", + email: "RamakesL@c9e737b9c70b4882afff21061f6d5241.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wini Flynn,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wini Flynn,ou=Human Resources,dc=bitwarden,dc=com", + email: "FlynnW@97e455d14de64fb1ac625485af466bd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Open Simhan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Open Simhan,ou=Product Testing,dc=bitwarden,dc=com", + email: "SimhanO@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden,dc=com", + email: "UfomaduM@3dedccc8ea03468b9d15ac11ca05c230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adelina Grigsby,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Adelina Grigsby,ou=Management,dc=bitwarden,dc=com", + email: "GrigsbyA@2a76555db2804fcd904317c1fab7d4f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden,dc=com", + email: "SandersI@01d981966ccd4e18a1de23880ee9b91c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden,dc=com", + email: "PendergY@b992faaca776477fbca286ae42f6aa1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Woon Gillis,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Woon Gillis,ou=Product Development,dc=bitwarden,dc=com", + email: "GillisW@00fb40554c314de29c0898550e0a0fe9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Remi Lillis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Remi Lillis,ou=Payroll,dc=bitwarden,dc=com", + email: "LillisR@ca687c982977464ab0f83bbb31a64113.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dagmar Niles,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dagmar Niles,ou=Product Development,dc=bitwarden,dc=com", + email: "NilesD@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden,dc=com", + email: "MajmudaR@a90573a98b164929a489e62b8b0a18ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geralene Groleau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Geralene Groleau,ou=Peons,dc=bitwarden,dc=com", + email: "GroleauG@1390fe347bf84da5b12ed2e7e03c14a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden,dc=com", + email: "GavidiaD@4c99bc2b2d23465586f952873471fdbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colm Katsouras,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Colm Katsouras,ou=Peons,dc=bitwarden,dc=com", + email: "KatsourC@376885ebe2864fefa119c1511a764692.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden,dc=com", + email: "ThedforE@8f64f66384734fcda6f7276e237047aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caroline Darou,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Caroline Darou,ou=Management,dc=bitwarden,dc=com", + email: "DarouC@5d0b867d32fb46e6b508ea727cf0a4d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden,dc=com", + email: "JubainvS@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden,dc=com", + email: "AldhizeW@237fc261a1ea4cd0aba9b13fec2d1761.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden,dc=com", + email: "FedorukS@08cd8d018d96499180ed835a506acb7e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maegan Rafter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maegan Rafter,ou=Product Development,dc=bitwarden,dc=com", + email: "RafterM@fc7648c9712348689a0bc53cb789244a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margery Buckalew,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Margery Buckalew,ou=Janitorial,dc=bitwarden,dc=com", + email: "BuckaleM@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden,dc=com", + email: "RigdonO@54b7c6b9ae32434d95317388edf7be04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden,dc=com", + email: "PCBOARDR@4325337fb43b4d3eaab4c085e23330be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden,dc=com", + email: "RigsbeeM@fe393581310b47dd94b5b76f5b2a4efb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden,dc=com", + email: "DillingA@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charleen Willison,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Charleen Willison,ou=Human Resources,dc=bitwarden,dc=com", + email: "WillisoC@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden,dc=com", + email: "AguilarT@a083ce3425664c2eb55b289d24dc07f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Basia Ouellette,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Basia Ouellette,ou=Management,dc=bitwarden,dc=com", + email: "OuelletB@ef406855f5f845aab9324d8e46753d6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Latashia Ridgeway,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Latashia Ridgeway,ou=Peons,dc=bitwarden,dc=com", + email: "RidgewaL@c6f2558da4e64d1a92ecfa7046888845.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhodia SOS,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rhodia SOS,ou=Administrative,dc=bitwarden,dc=com", + email: "SOSR@8148a52d859b468a9dde3ee8b81e013b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WaiHung Kan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=WaiHung Kan,ou=Payroll,dc=bitwarden,dc=com", + email: "KanW@37ef93fb374e4550b60ee55424a070b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ehab Gidaro,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ehab Gidaro,ou=Administrative,dc=bitwarden,dc=com", + email: "GidaroE@73187767f4034534bac7d61018b5ad2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Almeda Barstow,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Almeda Barstow,ou=Peons,dc=bitwarden,dc=com", + email: "BarstowA@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hernan Newbold,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hernan Newbold,ou=Payroll,dc=bitwarden,dc=com", + email: "NewboldH@7d0d760c8b9f490e8a67dd2b61410f6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elonore Lorenc,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Elonore Lorenc,ou=Product Development,dc=bitwarden,dc=com", + email: "LorencE@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melva Dingle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Melva Dingle,ou=Product Development,dc=bitwarden,dc=com", + email: "DingleM@155d92c95e034751a1d33e414cb11391.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janka Gorfine,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Janka Gorfine,ou=Peons,dc=bitwarden,dc=com", + email: "GorfineJ@daeb41514d9e4eb79c108728fb0c78a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carleen Natiuk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carleen Natiuk,ou=Management,dc=bitwarden,dc=com", + email: "NatiukC@8d16b23b37bd48708a820fa3c8c7f569.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dimitra Prokes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dimitra Prokes,ou=Management,dc=bitwarden,dc=com", + email: "ProkesD@f32d0f90ff4e4d909353481cc0066b39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", + email: "FurdoonC@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WaiMan Sinha,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=WaiMan Sinha,ou=Peons,dc=bitwarden,dc=com", + email: "SinhaW@83e997d320394a809a91b79c1caaf132.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Therese Nikfarjam,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Therese Nikfarjam,ou=Peons,dc=bitwarden,dc=com", + email: "NikfarjT@1bc1409c08584b65b922db79a968ffbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geer Lamonde,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Geer Lamonde,ou=Product Development,dc=bitwarden,dc=com", + email: "LamondeG@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsae Polder,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chelsae Polder,ou=Janitorial,dc=bitwarden,dc=com", + email: "PolderC@646d6f014bf44c5484623c7f1ed699a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shuji Pien,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shuji Pien,ou=Peons,dc=bitwarden,dc=com", + email: "PienS@ea00f070c7ac4d9f845a3fd60ca8fef9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annet Rege,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annet Rege,ou=Administrative,dc=bitwarden,dc=com", + email: "RegeA@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellen Vertolli,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ellen Vertolli,ou=Management,dc=bitwarden,dc=com", + email: "VertollE@7b2671f4e02946de91c9978d935e087b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zandra Belk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zandra Belk,ou=Management,dc=bitwarden,dc=com", + email: "BelkZ@3e63d8e6be204b07ac7dd7943bdd9def.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milan Shu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Milan Shu,ou=Administrative,dc=bitwarden,dc=com", + email: "ShuM@afe3f29824c043148d9eb0e4285bb233.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lubomir Carver,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lubomir Carver,ou=Peons,dc=bitwarden,dc=com", + email: "CarverL@36afbe0488ac4cbf861f3b2611d891cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kieron Remrey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kieron Remrey,ou=Payroll,dc=bitwarden,dc=com", + email: "RemreyK@fd7e4056685f4c789c5948839975ec7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frayda Urquhart,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Frayda Urquhart,ou=Administrative,dc=bitwarden,dc=com", + email: "UrquharF@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kat Torok,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kat Torok,ou=Human Resources,dc=bitwarden,dc=com", + email: "TorokK@c90beda51728416da468419570974ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden,dc=com", + email: "DowellC@0e32fee851df4554931f75bb97b68b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selina Sauder,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Selina Sauder,ou=Administrative,dc=bitwarden,dc=com", + email: "SauderS@75dfcd3692074ff18248aebdf998f81c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joshi Wery,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joshi Wery,ou=Administrative,dc=bitwarden,dc=com", + email: "WeryJ@d4ec4569fe8f4ce58eb7942aa58953d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corilla Carey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Corilla Carey,ou=Administrative,dc=bitwarden,dc=com", + email: "CareyC@eff1fc06cb994f6c9978051d61306d1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devon Patchcor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Devon Patchcor,ou=Peons,dc=bitwarden,dc=com", + email: "PatchcoD@b89ab013f5694b158e7600fe86a66e9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thor Crompton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Thor Crompton,ou=Janitorial,dc=bitwarden,dc=com", + email: "CromptoT@c73dbaa0e70c411fa0d04bf8fe86f3a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden,dc=com", + email: "PostavsS@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sallee Demone,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sallee Demone,ou=Janitorial,dc=bitwarden,dc=com", + email: "DemoneS@8c7907603b764cf9aa63ab1260b542bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patsy Hanley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Patsy Hanley,ou=Peons,dc=bitwarden,dc=com", + email: "HanleyP@09c5f5e221b74d1bbb06bb0da6fd1e35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lily Sturdivant,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lily Sturdivant,ou=Management,dc=bitwarden,dc=com", + email: "SturdivL@19227d32d4ac4d3c8783acb96838362f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Howie Howarth,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Howie Howarth,ou=Product Development,dc=bitwarden,dc=com", + email: "HowarthH@6c6664d2385d43519ebb52ff761aba92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jo Tropeano,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jo Tropeano,ou=Administrative,dc=bitwarden,dc=com", + email: "TropeanJ@9144995fa4c649da9d774d2a93d230da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Howard Acs,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Howard Acs,ou=Payroll,dc=bitwarden,dc=com", + email: "AcsH@c39b1ed7de78452e9d100510b4188a2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden,dc=com", + email: "KulikowL@63e408cfc15a40c4ba49c3905036c334.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Otakar Carella,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Otakar Carella,ou=Janitorial,dc=bitwarden,dc=com", + email: "CarellaO@d375d17b83f44fc4be3924ad0f54b388.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Digby Papajanis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Digby Papajanis,ou=Peons,dc=bitwarden,dc=com", + email: "PapajanD@0fefcde04743447b85983e188aaec0ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden,dc=com", + email: "DarcyR@caadb1299c604b6bb5f063bd78fb2a7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden,dc=com", + email: "SavanhC@377af438e28144f198471c633c478745.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden,dc=com", + email: "JonkheeD@5075a8f50d3242c58f81fcf47cd402b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden,dc=com", + email: "VanBentP@87de5470340f4f1ebdb1d5b65c157439.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trixy Grewal,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Trixy Grewal,ou=Janitorial,dc=bitwarden,dc=com", + email: "GrewalT@4c863b247c76467d94256795e24354de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sami Huguin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sami Huguin,ou=Product Development,dc=bitwarden,dc=com", + email: "HuguinS@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kui Mulero,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kui Mulero,ou=Administrative,dc=bitwarden,dc=com", + email: "MuleroK@4026de828f5c4d2faaf1a5de089b9c0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tyne McHarg,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tyne McHarg,ou=Product Development,dc=bitwarden,dc=com", + email: "McHargT@fd2e8792325547b4a50dd52cda4bc63f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constantin Harkness,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Constantin Harkness,ou=Product Development,dc=bitwarden,dc=com", + email: "HarknesC@57025360fa6449ed9005168a07164ed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Galen Mariani,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Galen Mariani,ou=Human Resources,dc=bitwarden,dc=com", + email: "MarianiG@e772b0160cc74084b5086dc4bf71c633.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dolores Lacosse,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dolores Lacosse,ou=Payroll,dc=bitwarden,dc=com", + email: "LacosseD@790e9575d19b49f797a1e46c053b138e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vradmin Aasen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vradmin Aasen,ou=Peons,dc=bitwarden,dc=com", + email: "AasenV@27d8375532a543b0aa95f943636664d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roseline Revis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Roseline Revis,ou=Janitorial,dc=bitwarden,dc=com", + email: "RevisR@d470ef4083a54c788156afbe1d7bed68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eiji Tel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eiji Tel,ou=Administrative,dc=bitwarden,dc=com", + email: "TelE@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariesara Reichman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mariesara Reichman,ou=Product Development,dc=bitwarden,dc=com", + email: "ReichmaM@1a74feecd8df4dc187b3d1f94925b995.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden,dc=com", + email: "LonnmanB@aea3f0a7f67b4eaaaa82cbd9284643da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandi Bush,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sandi Bush,ou=Human Resources,dc=bitwarden,dc=com", + email: "BushS@eae6e0d3f5454385bf03afdceb5bde7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emmalynn Dai,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Emmalynn Dai,ou=Payroll,dc=bitwarden,dc=com", + email: "DaiE@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Josef Godcharles,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Josef Godcharles,ou=Human Resources,dc=bitwarden,dc=com", + email: "GodcharJ@60323e558c4a4bd4a555e49dd613a509.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden,dc=com", + email: "HurwitzT@faecae55819d4155ab4f3e2d05dac422.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gay Ondovcik,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gay Ondovcik,ou=Administrative,dc=bitwarden,dc=com", + email: "OndovciG@6b2bbca4f311426b9d24c29f21d8799f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden,dc=com", + email: "SidhuB@6e76f9c1c78c4006a9e635f43ae1e33a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cad fpsched,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cad fpsched,ou=Administrative,dc=bitwarden,dc=com", + email: "fpschedC@5e72004cd5c54ab885896ad64d562293.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oscar Paris,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Oscar Paris,ou=Janitorial,dc=bitwarden,dc=com", + email: "ParisO@58b1feb535e94d39a943e5e96951c27d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chan Blumer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chan Blumer,ou=Janitorial,dc=bitwarden,dc=com", + email: "BlumerC@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeitzelK@99fd889b48504677bce0dc492f7e0cf3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chabert Hawkins,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chabert Hawkins,ou=Payroll,dc=bitwarden,dc=com", + email: "HawkinsC@d356ac5b553f4400b101f5783a9cd0d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=VanKing Iskandar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=VanKing Iskandar,ou=Administrative,dc=bitwarden,dc=com", + email: "IskandaV@bbc2ed84411d4a40af49ae614b080b8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carena Toplis,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carena Toplis,ou=Product Development,dc=bitwarden,dc=com", + email: "ToplisC@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nelleke Fredette,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nelleke Fredette,ou=Payroll,dc=bitwarden,dc=com", + email: "FredettN@26874cbc58cb45a4a2a676c29fc0a053.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden,dc=com", + email: "PaparelH@c463cfcdffaa4d1cb3c37acf0334ead8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden,dc=com", + email: "SalyniuS@4d5a130ce03f416380d14b9ae188b2a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jock Ahdieh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jock Ahdieh,ou=Administrative,dc=bitwarden,dc=com", + email: "AhdiehJ@2e50781374894ea497591fcdadb28725.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ru Lindt,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ru Lindt,ou=Peons,dc=bitwarden,dc=com", + email: "LindtR@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden,dc=com", + email: "BoyajiaK@8386f2764ec04b659a8fc2d330c9443a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden,dc=com", + email: "StellitJ@f8ab716c26494879b2465829da010f5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desiri Picard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Desiri Picard,ou=Management,dc=bitwarden,dc=com", + email: "PicardD@8396829dbd6f4494811aec04c011380c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mewa Melfi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mewa Melfi,ou=Payroll,dc=bitwarden,dc=com", + email: "MelfiM@7cfe2ffb0199421b9c038434ce9a5120.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elio Naylor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elio Naylor,ou=Peons,dc=bitwarden,dc=com", + email: "NaylorE@7fc160edec22498a9b7f16af82b6aca4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vince Adamowicz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vince Adamowicz,ou=Peons,dc=bitwarden,dc=com", + email: "AdamowiV@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annis Emery,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Annis Emery,ou=Human Resources,dc=bitwarden,dc=com", + email: "EmeryA@a632ca3ec8844bd59c6fe3da28658b8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valma Standen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Valma Standen,ou=Product Development,dc=bitwarden,dc=com", + email: "StandenV@71c4255308d847e6b55d8184e9b3d537.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mauro Meres,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mauro Meres,ou=Product Development,dc=bitwarden,dc=com", + email: "MeresM@f74860195dfd437aa0f4072ae1ebfe76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brianne Takagi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brianne Takagi,ou=Peons,dc=bitwarden,dc=com", + email: "TakagiB@7e77b31039db4b1f99292c84f6f816dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Azra Gravely,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Azra Gravely,ou=Management,dc=bitwarden,dc=com", + email: "GravelyA@9d243e3e32d54bc397a12d4839b23572.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liza Centeno,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Liza Centeno,ou=Payroll,dc=bitwarden,dc=com", + email: "CentenoL@1ea928fc24024e4dbf51eb3081589728.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lendon Pinney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lendon Pinney,ou=Administrative,dc=bitwarden,dc=com", + email: "PinneyL@a5f5618aa6144295ac3ab97f28aa1603.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelina Naolu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Madelina Naolu,ou=Management,dc=bitwarden,dc=com", + email: "NaoluM@199586ae1c4d4a59ab291484dbf1f208.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brittan Vela,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brittan Vela,ou=Peons,dc=bitwarden,dc=com", + email: "VelaB@156df7528958433faec56aa3b7184ead.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden,dc=com", + email: "KadleciC@70df15a19e614b9f9f00a61890d75319.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcos Spicer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marcos Spicer,ou=Product Development,dc=bitwarden,dc=com", + email: "SpicerM@261fb819d58341d6876f6a82736b49d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pierrette Deleon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pierrette Deleon,ou=Management,dc=bitwarden,dc=com", + email: "DeleonP@2f494a0423d24f8a8e3580abe2a5af0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darell Groth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Darell Groth,ou=Janitorial,dc=bitwarden,dc=com", + email: "GrothD@aea4d2f23326488f8ebab4665e7ef975.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden,dc=com", + email: "KosiorsG@5d8558331520489684cb760b329247ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathi Altman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kathi Altman,ou=Payroll,dc=bitwarden,dc=com", + email: "AltmanK@a99e1da0f5f2400991be09c17f6454e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moel Pieroway,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Moel Pieroway,ou=Janitorial,dc=bitwarden,dc=com", + email: "PierowaM@cda870670aa345148330b4790dab0c4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mildred Fansher,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mildred Fansher,ou=Product Testing,dc=bitwarden,dc=com", + email: "FansherM@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgina Hardersen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Georgina Hardersen,ou=Product Development,dc=bitwarden,dc=com", + email: "HardersG@44875ebf52f643b9a40efca5b647bdaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rasia Jakim,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rasia Jakim,ou=Product Testing,dc=bitwarden,dc=com", + email: "JakimR@3ee502270a97467c9f16bb82f0538bb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rycca Satterfield,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rycca Satterfield,ou=Peons,dc=bitwarden,dc=com", + email: "SatterfR@c385ba2c8b694dba82e626dc336023e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden,dc=com", + email: "RepetaS@1bf120076f9247a7ab75ce12810b0f67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden,dc=com", + email: "SnuggsM@a630ce95d42f4236ab637742fd96135d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden,dc=com", + email: "SchlichL@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merissa Jessup,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Merissa Jessup,ou=Management,dc=bitwarden,dc=com", + email: "JessupM@369d31e12885450e8a3e646342f4bbde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Divine Zarate,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Divine Zarate,ou=Administrative,dc=bitwarden,dc=com", + email: "ZarateD@7e667bf109b34912922cf458a184f322.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nitin Wolfe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nitin Wolfe,ou=Payroll,dc=bitwarden,dc=com", + email: "WolfeN@039ec15b8547455eb4745e09f294d624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden,dc=com", + email: "NakonecH@49cff37188af4618a262c09381a363cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden,dc=com", + email: "GiamberS@9f05691ac53d429c8fd30f6c6f952561.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bijan Badjari,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bijan Badjari,ou=Human Resources,dc=bitwarden,dc=com", + email: "BadjariB@e541b0cd05024e9aa895d5ed50a51779.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margy Chartrand,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Margy Chartrand,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChartraM@b360982dfbca4b8284c115441a6deb86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden,dc=com", + email: "PakulskJ@60df7d7038c54074b580441075f8c5a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Velma Portz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Velma Portz,ou=Product Development,dc=bitwarden,dc=com", + email: "PortzV@5c62b86b5031426bb36534810b45c481.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dodie Bandel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dodie Bandel,ou=Payroll,dc=bitwarden,dc=com", + email: "BandelD@ec5b72978f304decbd01b86ff428bb78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden,dc=com", + email: "RamakriN@9c001781a73c4c5f974258a47b94b6cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden,dc=com", + email: "TulliusL@339dae1666c141369c4355c1dbcfe99d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgianne Bydeley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Georgianne Bydeley,ou=Management,dc=bitwarden,dc=com", + email: "BydeleyG@44d6da32cc49457fb610dc6e02cea7ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden,dc=com", + email: "GadzinoA@f04933e85545445793e3a5773ee7f65d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbe Bolduc,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Barbe Bolduc,ou=Administrative,dc=bitwarden,dc=com", + email: "BolducB@fa0238e4957946f6b30d70f1a6cdea6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaylah Demren,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shaylah Demren,ou=Product Testing,dc=bitwarden,dc=com", + email: "DemrenS@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden,dc=com", + email: "DelgrosJ@a5390b0a929f4049987256511e1011a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ngai Konarski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ngai Konarski,ou=Human Resources,dc=bitwarden,dc=com", + email: "KonarskN@626bd1f6b43c43b3acf4ec37c2237915.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candi Ashley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Candi Ashley,ou=Peons,dc=bitwarden,dc=com", + email: "AshleyC@66f011cdb9ae4854a875f5226891a8d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darko Ledoux,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Darko Ledoux,ou=Product Testing,dc=bitwarden,dc=com", + email: "LedouxD@66ff0edd83674a479ab5a1db42900b12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trish Laberge,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Trish Laberge,ou=Payroll,dc=bitwarden,dc=com", + email: "LabergeT@b22727f208b94d678a41e54f04994fdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden,dc=com", + email: "IwanykR@18e5c35995c74b678bc1c6a71ea65f36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charee Fiegel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Charee Fiegel,ou=Human Resources,dc=bitwarden,dc=com", + email: "FiegelC@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShieldsK@2ce2f5b513b046bfb06414d7f59708f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eirena McNeese,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eirena McNeese,ou=Payroll,dc=bitwarden,dc=com", + email: "McNeeseE@f62b6f62dd4e412b8c6adfcff16239c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden,dc=com", + email: "BagnatoR@96705dd7d66249d08ee808bb87068456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meade Epting,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Meade Epting,ou=Janitorial,dc=bitwarden,dc=com", + email: "EptingM@1bd38dfda0ec498fac15746919a63a0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eliza Marko,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Eliza Marko,ou=Product Development,dc=bitwarden,dc=com", + email: "MarkoE@133a4b05f8ad44cc8eb15c516c740da5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doll Crutchfield,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Doll Crutchfield,ou=Administrative,dc=bitwarden,dc=com", + email: "CrutchfD@9daf174545b8499b9318f63ffd3e7799.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sergei Edwards,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sergei Edwards,ou=Human Resources,dc=bitwarden,dc=com", + email: "EdwardsS@c8261f605fed4bb494dcc3af9b18f70f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alfons Besson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Alfons Besson,ou=Product Testing,dc=bitwarden,dc=com", + email: "BessonA@0bd56636704d4f8e85795d32a0415211.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delmar Modl,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Delmar Modl,ou=Human Resources,dc=bitwarden,dc=com", + email: "ModlD@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peggie Jung,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Peggie Jung,ou=Human Resources,dc=bitwarden,dc=com", + email: "JungP@8232aa6ebca6495b9948a8e1eab554ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mot Goodner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mot Goodner,ou=Product Development,dc=bitwarden,dc=com", + email: "GoodnerM@063f8384c6d241e7ae0483f33483eb45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden,dc=com", + email: "DybaT@83c0abbf294449be8e1bdffedc43f527.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaine Davalo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shaine Davalo,ou=Payroll,dc=bitwarden,dc=com", + email: "DavaloS@a4f85fecd69348a29728c8e242a790a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rod Hingtgen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rod Hingtgen,ou=Peons,dc=bitwarden,dc=com", + email: "HingtgeR@3faad65411ee4934ba03cc2bc3936056.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maddalena Melton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Maddalena Melton,ou=Peons,dc=bitwarden,dc=com", + email: "MeltonM@a651bab618794291bf5129fe307f0c99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden,dc=com", + email: "OdegaarJ@06929a8dcdce40d387113e867b6564b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gusta Reavis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gusta Reavis,ou=Janitorial,dc=bitwarden,dc=com", + email: "ReavisG@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramanand Noy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ramanand Noy,ou=Janitorial,dc=bitwarden,dc=com", + email: "NoyR@ba4a8572e0bf488184d4e003cd863d22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tom Gowens,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tom Gowens,ou=Peons,dc=bitwarden,dc=com", + email: "GowensT@96ee5954dbf645b89509b54bd70ed6ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sayed Wilke,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sayed Wilke,ou=Product Development,dc=bitwarden,dc=com", + email: "WilkeS@fb5b6de9664f4611ab52db8eaf7e1865.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeralee Kiefer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jeralee Kiefer,ou=Peons,dc=bitwarden,dc=com", + email: "KieferJ@59f15b077c4a4aa5be8ad6d7b944d5f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatsuya Kayle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tatsuya Kayle,ou=Management,dc=bitwarden,dc=com", + email: "KayleT@f8b43c88d3f64387bc14adfa5600c275.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden,dc=com", + email: "MayeaG@191c836466354fe5b2fec288c1d53713.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roselin Zahn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roselin Zahn,ou=Administrative,dc=bitwarden,dc=com", + email: "ZahnR@dccd68e9261a427bb9a86d2b2c52f7a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shanda deRosenroll,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shanda deRosenroll,ou=Management,dc=bitwarden,dc=com", + email: "deRosenS@0c943e2aeb85477e9598d33254e476f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meriline Parkin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Meriline Parkin,ou=Management,dc=bitwarden,dc=com", + email: "ParkinM@e16d9a3a0fb84d70b44156f5d07a222e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minnesota Milway,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Minnesota Milway,ou=Product Development,dc=bitwarden,dc=com", + email: "MilwayM@5ee7d2eaa5b3419f93a42aabfc799bb4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oren Keffer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Oren Keffer,ou=Product Testing,dc=bitwarden,dc=com", + email: "KefferO@b6f50213a01240498d68877ca5ffab54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden,dc=com", + email: "NagendrE@4590d260de3b4f249929a3f2b344a0fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blanche Lantto,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Blanche Lantto,ou=Peons,dc=bitwarden,dc=com", + email: "LanttoB@349cbf4e75d847c1a3a3932212036d74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Penny Polakowski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Penny Polakowski,ou=Human Resources,dc=bitwarden,dc=com", + email: "PolakowP@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden,dc=com", + email: "CrippsC@f90310b3f5d94fb4800c4388cf6d1cc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeBernaM@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helene Halford,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Helene Halford,ou=Product Testing,dc=bitwarden,dc=com", + email: "HalfordH@f2c3f0652e32488088bedf6cc0ca618f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ladonna Kester,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ladonna Kester,ou=Payroll,dc=bitwarden,dc=com", + email: "KesterL@6bff82c20ec04cdbbb19d4912ec16456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carling Castillo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carling Castillo,ou=Janitorial,dc=bitwarden,dc=com", + email: "CastillC@433de9bdc40a4b9bbae4e765d431d11d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cark Redish,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cark Redish,ou=Management,dc=bitwarden,dc=com", + email: "RedishC@1ef32944592240fbbf9c689cd4db1d9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caresse Appenzeller,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Caresse Appenzeller,ou=Peons,dc=bitwarden,dc=com", + email: "AppenzeC@3986b5b118ef4d79a84f9f227789123a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheree Berman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sheree Berman,ou=Product Testing,dc=bitwarden,dc=com", + email: "BermanS@47d8b5e2575042d4a80d6e271d2326c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden,dc=com", + email: "KawauchD@29d0d437b2c147b0847b9dd994ec881e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anabal Hathaway,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anabal Hathaway,ou=Payroll,dc=bitwarden,dc=com", + email: "HathawaA@e1f0d918bf004e4781bc8a3f9e7beec7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valma Keffer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Valma Keffer,ou=Product Testing,dc=bitwarden,dc=com", + email: "KefferV@986a560d23c841b7ad18f2717af5b696.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnny Harron,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Johnny Harron,ou=Payroll,dc=bitwarden,dc=com", + email: "HarronJ@47bdbe19b290413cb5defd6e606815e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Channa Brokaw,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Channa Brokaw,ou=Product Development,dc=bitwarden,dc=com", + email: "BrokawC@38e93300da7643e5ac4629316f76753a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annabella Spaugh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Annabella Spaugh,ou=Product Development,dc=bitwarden,dc=com", + email: "SpaughA@5d66866885fa4ba8b5860161fb0bcacc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klink Sprott,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Klink Sprott,ou=Administrative,dc=bitwarden,dc=com", + email: "SprottK@9f3b5a22f2e64763918674c31a32bd5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roe Reinboth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Roe Reinboth,ou=Product Testing,dc=bitwarden,dc=com", + email: "ReinbotR@b2fd618943ca4dea935bf3787a6a78e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathrine Mashura,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cathrine Mashura,ou=Administrative,dc=bitwarden,dc=com", + email: "MashuraC@b79da789d7414b6e8a980b044433c3d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shigeru Rausch,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shigeru Rausch,ou=Payroll,dc=bitwarden,dc=com", + email: "RauschS@a811d1067f2b449da56503c72e375ae8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden,dc=com", + email: "MordecaF@b6b4b20435244397b513458a7683e69c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ingeberg Eagles,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ingeberg Eagles,ou=Management,dc=bitwarden,dc=com", + email: "EaglesI@97f7053b3d7f4f79b48d3e12171a5966.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arjun Auker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arjun Auker,ou=Peons,dc=bitwarden,dc=com", + email: "AukerA@2128bddbba18456fa2818ae450ffa7ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cary Gillot,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cary Gillot,ou=Human Resources,dc=bitwarden,dc=com", + email: "GillotC@b51d43f798c74d31975bc185013ed233.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kishor Aurelius,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kishor Aurelius,ou=Administrative,dc=bitwarden,dc=com", + email: "AureliuK@728cea3206cf4fc9b4edca0209470b11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mair Dragert,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mair Dragert,ou=Payroll,dc=bitwarden,dc=com", + email: "DragertM@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden,dc=com", + email: "RenwickR@38381f1b65fe45f69608a5bb47db5a8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nata Manson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nata Manson,ou=Management,dc=bitwarden,dc=com", + email: "MansonN@845b538f36d146aba352dadcef98bffb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmody Stough,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carmody Stough,ou=Janitorial,dc=bitwarden,dc=com", + email: "StoughC@a7918ff0fc7e4212984f8187650b768f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden,dc=com", + email: "DifrancV@ebddca96ab0c40e5a0ba8c1fb15aae94.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vicky Kenol,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vicky Kenol,ou=Human Resources,dc=bitwarden,dc=com", + email: "KenolV@45ff518891da43879283e296db76d389.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden,dc=com", + email: "HeideprP@a31a40edc37d48cd9f5a5a655ca23fe5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorelle Korf,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorelle Korf,ou=Peons,dc=bitwarden,dc=com", + email: "KorfL@7446f3de45684b1e99747992ecfe40c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angele Dangubic,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Angele Dangubic,ou=Peons,dc=bitwarden,dc=com", + email: "DangubiA@ca2c9c0aaeee459a81fa3d98c982e91a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilene Knio,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ilene Knio,ou=Janitorial,dc=bitwarden,dc=com", + email: "KnioI@5ff6438f1a694a8f92d3363ddbe1a8ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden,dc=com", + email: "WessenbO@837254eeede24c15906b803e5cce94f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harrison Klodt,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Harrison Klodt,ou=Administrative,dc=bitwarden,dc=com", + email: "KlodtH@b76954384b1448b9a3c0a3ababf6bbf1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden,dc=com", + email: "ColdwelE@87bc15d42d8444788089ff676f599c5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orel Hassenklover,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Orel Hassenklover,ou=Product Development,dc=bitwarden,dc=com", + email: "HassenkO@f7a64cd3ec3949d4af95967a5d1451ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonya Hixson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sonya Hixson,ou=Janitorial,dc=bitwarden,dc=com", + email: "HixsonS@3778b1152af945109595a1f1ddb3f5dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden,dc=com", + email: "FedorukG@7a4184a5b77e4684af64e06b6add415a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Simen Pankhurst,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Simen Pankhurst,ou=Product Development,dc=bitwarden,dc=com", + email: "PankhurS@dbbc0930b0d2479ca97fea1080c3afcd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alberta Roddy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alberta Roddy,ou=Human Resources,dc=bitwarden,dc=com", + email: "RoddyA@2d701440ade24b4a93552262ff2dfc96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelley Guitard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shelley Guitard,ou=Product Testing,dc=bitwarden,dc=com", + email: "GuitardS@8e847e0d62ad4699bde39672507969bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benthem Aghili,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Benthem Aghili,ou=Administrative,dc=bitwarden,dc=com", + email: "AghiliB@696db7ebc26e4f86a6552c4f6f755d76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden,dc=com", + email: "WertzM@489cf71c67f540958c438bff00511d0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden,dc=com", + email: "KabolizA@238a8169b7ac4fc183a387c242aca7b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden,dc=com", + email: "PitcherF@dd8de5abce6e4941a35b4e391450cd5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden,dc=com", + email: "GhantouG@e17a5226a90e492eaba210445362135c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nad Sheth,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nad Sheth,ou=Peons,dc=bitwarden,dc=com", + email: "ShethN@35cbe55d624d41aaa7e77e5513292711.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katherine AuYeung,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Katherine AuYeung,ou=Payroll,dc=bitwarden,dc=com", + email: "AuYeungK@eae289de16194f21b28831dbf07663de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rollie Lohoar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rollie Lohoar,ou=Payroll,dc=bitwarden,dc=com", + email: "LohoarR@cd59c483d6b34aad846a7430fcfb5a39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siamak Tullo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Siamak Tullo,ou=Janitorial,dc=bitwarden,dc=com", + email: "TulloS@2a24d3bec1324ab39148d09712ff8aba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marco Trautman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marco Trautman,ou=Management,dc=bitwarden,dc=com", + email: "TrautmaM@a94a4e703f55451099134b3aaeedccbb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=James Silgardo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=James Silgardo,ou=Payroll,dc=bitwarden,dc=com", + email: "SilgardJ@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gipsy Letulle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gipsy Letulle,ou=Product Development,dc=bitwarden,dc=com", + email: "LetulleG@b0752d34718948e7a2486d5209bda8f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Missagh Breglec,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Missagh Breglec,ou=Payroll,dc=bitwarden,dc=com", + email: "BreglecM@1808029426c342b7ba28a7e8e39e2911.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debadeep Karass,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Debadeep Karass,ou=Product Development,dc=bitwarden,dc=com", + email: "KarassD@af9a07b0bce44bbab1d5d8279d6d460c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madeline Bir,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Madeline Bir,ou=Payroll,dc=bitwarden,dc=com", + email: "BirM@f545ecd56a5b4fe0a9748924d28342ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betsey Doi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Betsey Doi,ou=Administrative,dc=bitwarden,dc=com", + email: "DoiB@d06dcad3fe8b46a4aa1b3d7dd28ff6b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden,dc=com", + email: "CucciolN@960fde1bd9064545ac557eb042ebf65f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Indiana Schejbal,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Indiana Schejbal,ou=Product Development,dc=bitwarden,dc=com", + email: "SchejbaI@518638c8b3ee480098591bd6806de72a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mickie Farhan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mickie Farhan,ou=Payroll,dc=bitwarden,dc=com", + email: "FarhanM@0f5b6ac1af33425fb656b97b6e7eab9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cubicle McMann,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cubicle McMann,ou=Administrative,dc=bitwarden,dc=com", + email: "McMannC@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olva Mathewson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Olva Mathewson,ou=Janitorial,dc=bitwarden,dc=com", + email: "MathewsO@ac12834971014a349fe6bc34d09caa36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden,dc=com", + email: "MendelsZ@89a8ded54db64032804dc4a0a9dd8e92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden,dc=com", + email: "OgrodniK@e9937b9d7b6b4088972a1d9b7e93eab7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiet Strober,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kiet Strober,ou=Human Resources,dc=bitwarden,dc=com", + email: "StroberK@e75e76fca3054696a0a6baace9df29b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meggy Vardy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Meggy Vardy,ou=Product Testing,dc=bitwarden,dc=com", + email: "VardyM@e4b8fec602c641a384899f1d585d679d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyrine Marceau,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cyrine Marceau,ou=Management,dc=bitwarden,dc=com", + email: "MarceauC@7dbb126638b0419eb87d5c967cdeef20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeMartiW@a6a05053959845178f0fed6cc2cd11a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden,dc=com", + email: "MerryweS@dac0acbfef7c4da38b10a60b872b2190.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden,dc=com", + email: "WiklundM@092396cbb25f48afadfced942905695a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Junk Kopala,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Junk Kopala,ou=Payroll,dc=bitwarden,dc=com", + email: "KopalaJ@1544abc377ba4785bbb0b6f87c091972.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden,dc=com", + email: "PatenauS@06d31112a23c438e8cd439e22e02ac63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden,dc=com", + email: "NovisedS@336eedf545cc414b822f9458db1323a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shandra Connell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shandra Connell,ou=Management,dc=bitwarden,dc=com", + email: "ConnellS@4a1e113d03e64aa594660480aad5198e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden,dc=com", + email: "ElhageG@293d6ba342f34ea39d2f2770c6975255.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Munaz Reynolds,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Munaz Reynolds,ou=Payroll,dc=bitwarden,dc=com", + email: "ReynoldM@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lavinia LaBauve,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lavinia LaBauve,ou=Peons,dc=bitwarden,dc=com", + email: "LaBauveL@f327ac80229d48289e3f8a60345fbfd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilllie Ruthart,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lilllie Ruthart,ou=Peons,dc=bitwarden,dc=com", + email: "RuthartL@6acb8cb6e83344b2baf0ea01b349a09b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mani Keseris,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mani Keseris,ou=Payroll,dc=bitwarden,dc=com", + email: "KeserisM@57025360fa6449ed9005168a07164ed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden,dc=com", + email: "WaytowiG@e70e64793c734e619d9d8bf0e6d8cc1c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilith LLoyd,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lilith LLoyd,ou=Management,dc=bitwarden,dc=com", + email: "LLoydL@a459e619246a4d3d9371a8063ff33b21.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden,dc=com", + email: "AmaviscD@30695216554045458b82454ddcf12f1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luann Rodger,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Luann Rodger,ou=Product Development,dc=bitwarden,dc=com", + email: "RodgerL@261ef8139c1b42bbacfd98b8697feff4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evania Keehan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Evania Keehan,ou=Administrative,dc=bitwarden,dc=com", + email: "KeehanE@a0c3665d3c4148ef8e46512bcb5851c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivianna Rassell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vivianna Rassell,ou=Administrative,dc=bitwarden,dc=com", + email: "RassellV@0981876efcf54647a835b91b97400e9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rudie Dunlay,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rudie Dunlay,ou=Payroll,dc=bitwarden,dc=com", + email: "DunlayR@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berti JantzLee,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Berti JantzLee,ou=Human Resources,dc=bitwarden,dc=com", + email: "JantzLeB@f36f9c3d244c4345b6d2788fe9994b43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aigneis Marghetis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aigneis Marghetis,ou=Peons,dc=bitwarden,dc=com", + email: "MarghetA@bac50bb727ca4a11b9ee1a82a995bcf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gordon Buhler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gordon Buhler,ou=Management,dc=bitwarden,dc=com", + email: "BuhlerG@3e44eebfdc184e219c5f14c3aca38333.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShayanpB@4c5d84de03674c49a48c822bd1b74d2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Austine ODale,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Austine ODale,ou=Product Testing,dc=bitwarden,dc=com", + email: "ODaleA@343f0f593aa240c5b8dbc9d9fe3ab95e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lab Carstensen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lab Carstensen,ou=Product Testing,dc=bitwarden,dc=com", + email: "CarstenL@fc0c286626334794ab4a83e723107bf2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amalita Smith,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Amalita Smith,ou=Peons,dc=bitwarden,dc=com", + email: "SmithA@21813dd069254b74bf250b7db15a806f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbe Degen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Barbe Degen,ou=Management,dc=bitwarden,dc=com", + email: "DegenB@438e70287f6d4d35a04d438ca352f234.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ros Varkel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ros Varkel,ou=Human Resources,dc=bitwarden,dc=com", + email: "VarkelR@c67a6c3f272e49d89894436b34e568ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anissa Belley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anissa Belley,ou=Janitorial,dc=bitwarden,dc=com", + email: "BelleyA@7e7373daa08d4a3b834f2e415978d199.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khurshid Balsas,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Khurshid Balsas,ou=Peons,dc=bitwarden,dc=com", + email: "BalsasK@83f450f8e8ed4c6282bc25450b6af548.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amata Byers,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Amata Byers,ou=Product Testing,dc=bitwarden,dc=com", + email: "ByersA@ec1ddd180ec346c9ac4e8ff1fbae4cee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonya Brough,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tonya Brough,ou=Administrative,dc=bitwarden,dc=com", + email: "BroughT@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nancy Stocker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nancy Stocker,ou=Peons,dc=bitwarden,dc=com", + email: "StockerN@bc24a263fb344aa0a892bcbfdbc90a0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Analiese Hooper,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Analiese Hooper,ou=Human Resources,dc=bitwarden,dc=com", + email: "HooperA@d28a39336adb48ccb95a57463d617dbb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mikelis Chaves,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mikelis Chaves,ou=Administrative,dc=bitwarden,dc=com", + email: "ChavesM@cff151d12e624a459ab90891be7ad6d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liv Ayukawa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Liv Ayukawa,ou=Payroll,dc=bitwarden,dc=com", + email: "AyukawaL@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amir Andre,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Amir Andre,ou=Peons,dc=bitwarden,dc=com", + email: "AndreA@6689aec4c2e947e78e303762aa98dbd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden,dc=com", + email: "HetzelK@ad005e1f3e2c4d6ba75c2d9c48687591.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacob Mahin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jacob Mahin,ou=Management,dc=bitwarden,dc=com", + email: "MahinJ@2f1e5586c9f34c7a81a461c2017b9960.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genvieve Albers,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Genvieve Albers,ou=Human Resources,dc=bitwarden,dc=com", + email: "AlbersG@d236a57ac59c480697085ae127e79e8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mallory Xenos,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mallory Xenos,ou=Administrative,dc=bitwarden,dc=com", + email: "XenosM@280cee7caed9430b8fa7be7309b39563.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden,dc=com", + email: "PulcherR@98ee1decab4b4712b60ec9828a0d8c3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christie Shapiro,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Christie Shapiro,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShapiroC@0460dcc544ed4a46a87c85b64c5ff202.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jackie Au,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jackie Au,ou=Payroll,dc=bitwarden,dc=com", + email: "AuJ@5093424433404df7a9b5d20a18b7ae60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden,dc=com", + email: "MuttaqiR@8aca496809cf4238a39dc0c2b2a9c742.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marshall Paine,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marshall Paine,ou=Human Resources,dc=bitwarden,dc=com", + email: "PaineM@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeBoerD@f7e815f56fc1472f8f953f85688ba7a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roman Materna,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roman Materna,ou=Product Development,dc=bitwarden,dc=com", + email: "MaternaR@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jerald Gutcher,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jerald Gutcher,ou=Management,dc=bitwarden,dc=com", + email: "GutcherJ@422dc77807144e50a50666d3791c65d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berty Bittman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Berty Bittman,ou=Product Development,dc=bitwarden,dc=com", + email: "BittmanB@68682c9b2559463bb9da0d98b541595f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden,dc=com", + email: "LiddleZ@2883c809f60044a59cf20989f8889d61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden,dc=com", + email: "VreugdeH@bdf120f20bde4a2eb788dc5571823dc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden,dc=com", + email: "HofstetP@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adara Smyth,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Adara Smyth,ou=Human Resources,dc=bitwarden,dc=com", + email: "SmythA@893034d40ae747fcb94aa3c93f26d5c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robenia Prescott,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Robenia Prescott,ou=Product Testing,dc=bitwarden,dc=com", + email: "PrescotR@1782f7f16d8544ffa1ab9536782bcf24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZoerbW@3ebdc674ebed47c4a4f33a4fcf39c448.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berna Mahaffee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Berna Mahaffee,ou=Product Development,dc=bitwarden,dc=com", + email: "MahaffeB@15d351e2d51e4089aa0399e21432998b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drusilla Riou,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Drusilla Riou,ou=Human Resources,dc=bitwarden,dc=com", + email: "RiouD@6f161c0885be4a50be1e5e174b0c967a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elsie Ryals,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Elsie Ryals,ou=Janitorial,dc=bitwarden,dc=com", + email: "RyalsE@5d0b867d32fb46e6b508ea727cf0a4d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanae Glaser,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sanae Glaser,ou=Human Resources,dc=bitwarden,dc=com", + email: "GlaserS@83ad79c28f46486b8edfbe2ab2f124ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisenda Shuster,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Melisenda Shuster,ou=Peons,dc=bitwarden,dc=com", + email: "ShusterM@6f1fa218146b4384aa588054962e9428.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jasver Loza,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jasver Loza,ou=Management,dc=bitwarden,dc=com", + email: "LozaJ@948fee4ac0644e21a6b3abc34aeaa20f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joseph Beshai,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Joseph Beshai,ou=Management,dc=bitwarden,dc=com", + email: "BeshaiJ@f7fb17758cf24933ad847773d4770955.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebecca Landriault,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rebecca Landriault,ou=Product Development,dc=bitwarden,dc=com", + email: "LandriaR@7ddc36790a7641e3ae418cec51fdf351.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kokkhiang Holness,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kokkhiang Holness,ou=Management,dc=bitwarden,dc=com", + email: "HolnessK@237d4965b17942d997e72bedf6b5b1ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stormy Berger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stormy Berger,ou=Management,dc=bitwarden,dc=com", + email: "BergerS@5e8f47bf29ef420c9f1d1267ba3841e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olva Mooder,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Olva Mooder,ou=Peons,dc=bitwarden,dc=com", + email: "MooderO@00b74fb6ef364737950ddfdf6aa8c176.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tash Ficco,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tash Ficco,ou=Payroll,dc=bitwarden,dc=com", + email: "FiccoT@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulita Jobs,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Paulita Jobs,ou=Product Development,dc=bitwarden,dc=com", + email: "JobsP@8b141724f39349e190b0bc072ac89f77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanata Ning,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kanata Ning,ou=Payroll,dc=bitwarden,dc=com", + email: "NingK@12339915e7824967ac90a6f27aeb00c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dalila Shull,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dalila Shull,ou=Payroll,dc=bitwarden,dc=com", + email: "ShullD@32fe0278ad444a168aa2715b611540e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgianne Bour,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Georgianne Bour,ou=Administrative,dc=bitwarden,dc=com", + email: "BourG@0c871b0ecc1a46debc66287e828580e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Venita Brandon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Venita Brandon,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrandonV@f3d35636fac14230bdd8e3b7a9740351.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krishna Kiens,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Krishna Kiens,ou=Product Development,dc=bitwarden,dc=com", + email: "KiensK@579206d6574545e7827d4fefcb691059.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashlen Plssup,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ashlen Plssup,ou=Administrative,dc=bitwarden,dc=com", + email: "PlssupA@b17d54cce1be4bbcaff405b30e34b1e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden,dc=com", + email: "WoodleyI@6994ff306ef64425a30543b5e9a42d04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hojjat Burchat,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hojjat Burchat,ou=Product Development,dc=bitwarden,dc=com", + email: "BurchatH@15447e827d294576b427fe60b8e58e62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mani Gravitte,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mani Gravitte,ou=Janitorial,dc=bitwarden,dc=com", + email: "GravittM@3587dae0157a463b8f8e3e2bb5286ba6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chiu Pilipchuk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Chiu Pilipchuk,ou=Management,dc=bitwarden,dc=com", + email: "PilipchC@571742054064463fb2b552524cde124b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shamim Uffner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shamim Uffner,ou=Human Resources,dc=bitwarden,dc=com", + email: "UffnerS@a83a79eb4e0e4d1da5d7fca900f14adf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden,dc=com", + email: "ThurmanH@4eb55ca292bb4599a29d162b3cac9e90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden,dc=com", + email: "AlspaugJ@bc377f0c1b2b4d28a2ccf5abc5f2f5ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trude Graves,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Trude Graves,ou=Janitorial,dc=bitwarden,dc=com", + email: "GravesT@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caressa Balogh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Caressa Balogh,ou=Product Development,dc=bitwarden,dc=com", + email: "BaloghC@b5088b9f02d2438a84c66dee28f005b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyn Serre,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lyn Serre,ou=Product Development,dc=bitwarden,dc=com", + email: "SerreL@edf7b6e6765c4b9395ab808390477139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clemmy Doda,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Clemmy Doda,ou=Payroll,dc=bitwarden,dc=com", + email: "DodaC@0942a8d54b72463a911186a66f7c67f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kesley Nallengara,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kesley Nallengara,ou=Management,dc=bitwarden,dc=com", + email: "NallengK@52e746b148db486a82aefd7394487227.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joji Skeoch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Joji Skeoch,ou=Management,dc=bitwarden,dc=com", + email: "SkeochJ@35f4596c2f6f4d62a06cffe0bc4a52f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwyn Peerman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gwyn Peerman,ou=Management,dc=bitwarden,dc=com", + email: "PeermanG@2ad21f67126841ddab38e6a0de0bbf55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mila Lodeserto,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mila Lodeserto,ou=Administrative,dc=bitwarden,dc=com", + email: "LodeserM@ce606f959aaf4b37a3890f8fbd9f2472.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden,dc=com", + email: "HonbarrC@1ae32a15eca247e1b1d69b0caaf56b8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bess Ottowa,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bess Ottowa,ou=Administrative,dc=bitwarden,dc=com", + email: "OttowaB@0036c3527a724e3c9f25f047b6319884.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sieber Churchill,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sieber Churchill,ou=Peons,dc=bitwarden,dc=com", + email: "ChurchiS@237c9936996c46d6817a8e3d08c30341.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndy Sides,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lyndy Sides,ou=Janitorial,dc=bitwarden,dc=com", + email: "SidesL@7d9cd1f5b4d645a6bff13b745f4db29e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lino Rix,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lino Rix,ou=Administrative,dc=bitwarden,dc=com", + email: "RixL@700d5dcd52ae4dffafb68bba2826fdd6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charangit Desplanque,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Charangit Desplanque,ou=Product Development,dc=bitwarden,dc=com", + email: "DesplanC@777873609ce9463eb7000e930f9c88d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden,dc=com", + email: "RecktenK@4d61ba95f33d443b8b11c381ee1d7607.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barry Vajentic,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Barry Vajentic,ou=Product Development,dc=bitwarden,dc=com", + email: "VajentiB@a53843fec33f4a5c95cde2f5b04f1643.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Waiching Morrin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Waiching Morrin,ou=Management,dc=bitwarden,dc=com", + email: "MorrinW@6ab835c0621d479dbd805d5189aa2b92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sattar Kane,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sattar Kane,ou=Payroll,dc=bitwarden,dc=com", + email: "KaneS@06573ce095c8443aa9769fdb7129baed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YukWha Kielstra,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=YukWha Kielstra,ou=Management,dc=bitwarden,dc=com", + email: "KielstrY@e8193f804bab49a9ab24a3360e9fb251.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharon Meletios,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sharon Meletios,ou=Management,dc=bitwarden,dc=com", + email: "MeletioS@ec1065d4122045119a382b34586180cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binni Gaines,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Binni Gaines,ou=Janitorial,dc=bitwarden,dc=com", + email: "GainesB@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden,dc=com", + email: "PagliarR@d69ecc02f7cc498a8c0f20edc1735b63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ying Spejewski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ying Spejewski,ou=Payroll,dc=bitwarden,dc=com", + email: "SpejewsY@15a73f4bf1a344b28ac5394e2a720618.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnesse Nessman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Agnesse Nessman,ou=Payroll,dc=bitwarden,dc=com", + email: "NessmanA@20c2d999fe734387b26090f6d88bafe4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoda Milne,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yoda Milne,ou=Peons,dc=bitwarden,dc=com", + email: "MilneY@29cf82166a6a4ea0989e7e7b62bf4159.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marsh McGurn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marsh McGurn,ou=Janitorial,dc=bitwarden,dc=com", + email: "McGurnM@972828f1932145e2913d23d36d264e73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilda Baldridge,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hilda Baldridge,ou=Management,dc=bitwarden,dc=com", + email: "BaldridH@7e076071c1c04607a96e17ebf129b6b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caro Vopalensky,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Caro Vopalensky,ou=Product Development,dc=bitwarden,dc=com", + email: "VopalenC@a7918ff0fc7e4212984f8187650b768f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Buffy Naolu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Buffy Naolu,ou=Janitorial,dc=bitwarden,dc=com", + email: "NaoluB@0a7d4b9e2dcb482a9d690b9c06f7b141.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Royal Parniani,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Royal Parniani,ou=Human Resources,dc=bitwarden,dc=com", + email: "ParnianR@ba55eb721cbf4a0787e4fcebb6c309fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden,dc=com", + email: "WatkinsM@38d6239d446040c7892f72bde901e5dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anthea Eros,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anthea Eros,ou=Administrative,dc=bitwarden,dc=com", + email: "ErosA@1174f1cfd4db4d4e8122f3cc77544aa8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiele Commazzi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kiele Commazzi,ou=Management,dc=bitwarden,dc=com", + email: "CommazzK@c7c8c5e66a3141e48cf8db523d4db0d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yvan Diaconu,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yvan Diaconu,ou=Payroll,dc=bitwarden,dc=com", + email: "DiaconuY@e9424fab29f84505b243cf3bcaec7fc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kitti Seshadri,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kitti Seshadri,ou=Payroll,dc=bitwarden,dc=com", + email: "SeshadrK@316f28dee96a4927ae60609771465dfa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camala McMillan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Camala McMillan,ou=Administrative,dc=bitwarden,dc=com", + email: "McMillaC@fe875cd0e6c64e7b9c0162ab42b3016c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden,dc=com", + email: "PostletA@03ce2f739a2d423a9acbc734a72262d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eamon Salvin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eamon Salvin,ou=Management,dc=bitwarden,dc=com", + email: "SalvinE@1be6a576815d4ff2aa416eab6c9dd713.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden,dc=com", + email: "RecycliM@fe3592b806204a8188677a7eeb59563a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vito Calcote,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vito Calcote,ou=Janitorial,dc=bitwarden,dc=com", + email: "CalcoteV@29ddc254020a4d509a3e447f6b0e374a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden,dc=com", + email: "DemetriJ@d00112b411284f8aa1ae0e17d03d57d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mandie Kneeshaw,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mandie Kneeshaw,ou=Management,dc=bitwarden,dc=com", + email: "KneeshaM@d12cf402dbab4ca98b370d7e2c59928b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fiann Fouts,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fiann Fouts,ou=Administrative,dc=bitwarden,dc=com", + email: "FoutsF@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patt Ferner,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Patt Ferner,ou=Management,dc=bitwarden,dc=com", + email: "FernerP@19620eb428924236b27e614bd4d00de7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden,dc=com", + email: "LaheyT@65bf8c21e22d4649a877cbced68034c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden,dc=com", + email: "WilhelmM@f29a02eb60f740478f80d3c6d60d0269.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grier Kovarik,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Grier Kovarik,ou=Product Testing,dc=bitwarden,dc=com", + email: "KovarikG@50d7c806edce40aba32e1f9a44a2e284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mela MacNeill,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mela MacNeill,ou=Payroll,dc=bitwarden,dc=com", + email: "MacNeilM@5bcf0d060e574c65aeb6507d9efeab58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden,dc=com", + email: "SayedN@d29cf4b9df4246ba980a85b6744ad20d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akram Rajwani,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Akram Rajwani,ou=Janitorial,dc=bitwarden,dc=com", + email: "RajwaniA@6114ed5b2ab14d15895d683682929e6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lendon Valin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lendon Valin,ou=Administrative,dc=bitwarden,dc=com", + email: "ValinL@923baf1ba66c43ddab40764da6c9cc33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ikram Taylor,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ikram Taylor,ou=Payroll,dc=bitwarden,dc=com", + email: "TaylorI@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gert Grassmann,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gert Grassmann,ou=Payroll,dc=bitwarden,dc=com", + email: "GrassmaG@7388d6407a304050b7d1b21890b91ab6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oksana Dorn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Oksana Dorn,ou=Janitorial,dc=bitwarden,dc=com", + email: "DornO@bea0ce9c6190426d94993a855ef6515e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karleen McKinley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Karleen McKinley,ou=Product Testing,dc=bitwarden,dc=com", + email: "McKinleK@58351331fe224df1be3d4a98ae5bb106.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helmut Sigda,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Helmut Sigda,ou=Payroll,dc=bitwarden,dc=com", + email: "SigdaH@c53d26d2599d4e87839d1fcfc46deed3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grover Au,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Grover Au,ou=Product Testing,dc=bitwarden,dc=com", + email: "AuG@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barb Ricketts,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Barb Ricketts,ou=Product Development,dc=bitwarden,dc=com", + email: "RickettB@09d4226229cf4675bcb5278420d93bf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carina Akens,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carina Akens,ou=Product Development,dc=bitwarden,dc=com", + email: "AkensC@83d9635a552e4683a0d35cd1ae21b9aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beilul Scheduling,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beilul Scheduling,ou=Administrative,dc=bitwarden,dc=com", + email: "SchedulB@7560ab97b391438ca52c6e67c62ba90e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kitson Nelon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kitson Nelon,ou=Janitorial,dc=bitwarden,dc=com", + email: "NelonK@e96c9cff7aa94cde9b663e22d2426c28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphna Ragde,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Daphna Ragde,ou=Product Testing,dc=bitwarden,dc=com", + email: "RagdeD@86b49aff19c241bd88b57af5d6c58aeb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulina Early,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Paulina Early,ou=Administrative,dc=bitwarden,dc=com", + email: "EarlyP@ee2b03b1182d458c89ed3ab0221f6486.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abbie Jamshidi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Abbie Jamshidi,ou=Management,dc=bitwarden,dc=com", + email: "JamshidA@197532fdf2a14d7985433ec8c05668f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quynh Lorenc,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Quynh Lorenc,ou=Administrative,dc=bitwarden,dc=com", + email: "LorencQ@318df10c24464190a253b688eda7b7e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelwin Popadick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kelwin Popadick,ou=Payroll,dc=bitwarden,dc=com", + email: "PopadicK@bee273104901438cb51bc052b7b27c15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fitness Pape,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fitness Pape,ou=Management,dc=bitwarden,dc=com", + email: "PapeF@2f2d085d4c3a4ad69f1b90ad6c4efe7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dion Chiou,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dion Chiou,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChiouD@0cd77054f0d24017b2619d6dacb27d84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mayasandra Naor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mayasandra Naor,ou=Management,dc=bitwarden,dc=com", + email: "NaorM@4615d434564642a8bf9c9dbf63a45e29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden,dc=com", + email: "HitchcoL@56c31fbd3abf4ba89644df8f50b7055a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeligdiL@cf1207413cd7406ea5d1023535e380a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vince Soulliere,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vince Soulliere,ou=Janitorial,dc=bitwarden,dc=com", + email: "SoullieV@da92b528ad714b68bb8622f4f41299c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kasey Turney,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kasey Turney,ou=Management,dc=bitwarden,dc=com", + email: "TurneyK@3247d9930d174deba0cf4cead8361088.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zonda Amato,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Zonda Amato,ou=Human Resources,dc=bitwarden,dc=com", + email: "AmatoZ@3b9a242739aa4b0aa6818d262f7df54b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eleanore Bertini,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eleanore Bertini,ou=Payroll,dc=bitwarden,dc=com", + email: "BertiniE@a6096cd0d9c54e7cb57ad3b57e445595.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgetta Schreiber,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Georgetta Schreiber,ou=Peons,dc=bitwarden,dc=com", + email: "SchreibG@0b30f746872444eb8267bbdcdf9f26b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalai Seatter,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kalai Seatter,ou=Peons,dc=bitwarden,dc=com", + email: "SeatterK@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susie Moffett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Susie Moffett,ou=Product Development,dc=bitwarden,dc=com", + email: "MoffettS@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden,dc=com", + email: "MielkeM@cf607f514ea94d249d7d25105dbb0762.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Garnet Vieregge,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Garnet Vieregge,ou=Peons,dc=bitwarden,dc=com", + email: "ViereggG@93dd838ca8d949aca268d37f8c816502.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden,dc=com", + email: "NinetyoA@de6663da581c4c5286224c9b59be979f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Majid Liao,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Majid Liao,ou=Payroll,dc=bitwarden,dc=com", + email: "LiaoM@ab64d8db9da04b27bba1bfcb5bef47a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abdallah Lobello,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Abdallah Lobello,ou=Administrative,dc=bitwarden,dc=com", + email: "LobelloA@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felecia Bnrecad,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Felecia Bnrecad,ou=Peons,dc=bitwarden,dc=com", + email: "BnrecadF@1cd5de40e5ac4cd695f9ff5aee94931d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Waja Eteminan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Waja Eteminan,ou=Human Resources,dc=bitwarden,dc=com", + email: "EteminaW@3b02e13d586c4243a74a50de88d81685.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorrel Piercy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lorrel Piercy,ou=Product Development,dc=bitwarden,dc=com", + email: "PiercyL@5d9c2ba556874386a8e9edd75b2b2e09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pris Bobar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pris Bobar,ou=Janitorial,dc=bitwarden,dc=com", + email: "BobarP@a003e42ed50b459eb9c3a71f6a23c973.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Albertine Karass,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Albertine Karass,ou=Payroll,dc=bitwarden,dc=com", + email: "KarassA@7c2121c8588b42078879768992a11293.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saskia Koskie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Saskia Koskie,ou=Peons,dc=bitwarden,dc=com", + email: "KoskieS@7920c9493dd44267bf71116a85f298e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adda Paddon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Adda Paddon,ou=Management,dc=bitwarden,dc=com", + email: "PaddonA@abbddb7343124812b34ca376c77e32cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Normand Tay,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Normand Tay,ou=Human Resources,dc=bitwarden,dc=com", + email: "TayN@238696ade728438aa3391299a0dc9901.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden,dc=com", + email: "WolowidS@42f6c709ced54560a282482057eafc53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden,dc=com", + email: "YuhannaD@fb80550ae6b245dcb9c2cdf7ac12567e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardene Hofstede,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ardene Hofstede,ou=Product Development,dc=bitwarden,dc=com", + email: "HofstedA@52e746b148db486a82aefd7394487227.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Panos Wessell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Panos Wessell,ou=Payroll,dc=bitwarden,dc=com", + email: "WessellP@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden,dc=com", + email: "AnanmalA@83071766c35b4f64b633c2228d274ed7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolan Kamerson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carolan Kamerson,ou=Management,dc=bitwarden,dc=com", + email: "KamersoC@cc743470ff7d424999d3c3aceed5aa98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stew Doan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Stew Doan,ou=Peons,dc=bitwarden,dc=com", + email: "DoanS@0ea39720ccd849b98e8f01497c06b283.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tap Moreau,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tap Moreau,ou=Product Development,dc=bitwarden,dc=com", + email: "MoreauT@518d5688f4c94956a0b481cd83e3e460.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden,dc=com", + email: "PimiskeI@51a4413e49e7448782016bff6d71f8fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden,dc=com", + email: "TiberghS@d34dd7c3a21b4320a472b183ccccd155.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peg Alcott,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Peg Alcott,ou=Product Development,dc=bitwarden,dc=com", + email: "AlcottP@911bea6fd5eb467e8bf6c3f29ab2f42b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henrika Mihm,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Henrika Mihm,ou=Product Testing,dc=bitwarden,dc=com", + email: "MihmH@93c66893cda74239a9a56d1199a44457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Count Watts,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Count Watts,ou=Product Development,dc=bitwarden,dc=com", + email: "WattsC@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lesly Engman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lesly Engman,ou=Administrative,dc=bitwarden,dc=com", + email: "EngmanL@aa1e8f7905ad4306b9351c481bfc8797.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden,dc=com", + email: "PatwardK@06731df963584f3ca191849b64eabf87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Txp Calmejane,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Txp Calmejane,ou=Human Resources,dc=bitwarden,dc=com", + email: "CalmejaT@721925c092ab4630a360f318924bd972.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden,dc=com", + email: "ConstanL@46fc9003cc604a8a9449c2533498fb92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurore Hubers,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Aurore Hubers,ou=Human Resources,dc=bitwarden,dc=com", + email: "HubersA@f16cc86c487d4fe7b6b007e41eade44a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharad Shearin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sharad Shearin,ou=Payroll,dc=bitwarden,dc=com", + email: "ShearinS@bf5f757433234192bb075cccda7f6941.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jennica Vonck,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jennica Vonck,ou=Management,dc=bitwarden,dc=com", + email: "VonckJ@fa6f1422a9064a168045966e8899109e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden,dc=com", + email: "HazenboC@ecca4a8cb1474812a6ec4a57737ddfaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chesteen Wyant,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Chesteen Wyant,ou=Management,dc=bitwarden,dc=com", + email: "WyantC@40591993a80c4f498ba90d5c4df5bf9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coraline Kolton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Coraline Kolton,ou=Payroll,dc=bitwarden,dc=com", + email: "KoltonC@cdfacd88fafe4ba8970bb7d5170496d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden,dc=com", + email: "DonaldsR@95581eb6a8bb49808363d11bfe34de80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Horacio Oberpriller,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Horacio Oberpriller,ou=Management,dc=bitwarden,dc=com", + email: "OberpriH@841df0a2276144ffade10ec334e0a08c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden,dc=com", + email: "KortekaP@0fd135b263b342ad9db4b39831f787af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden,dc=com", + email: "HawkerN@5c0f96a3078844a4801dba9a3ab9ce0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lsi Assistance,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lsi Assistance,ou=Janitorial,dc=bitwarden,dc=com", + email: "AssistaL@5d8927d9a18847879f1969c651cc8b72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden,dc=com", + email: "BamfoL@e06afc97bcee4a81b6e79620a6f216aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden,dc=com", + email: "JewellE@17530faabce9458899e793820a3f2801.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gusta Dadkhah,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gusta Dadkhah,ou=Management,dc=bitwarden,dc=com", + email: "DadkhahG@f5fb4e9fecc04c5fb5218048682802f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphene Cho,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Daphene Cho,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChoD@c2620996c28c4914aa069de50088574a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minerva Arvin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Minerva Arvin,ou=Human Resources,dc=bitwarden,dc=com", + email: "ArvinM@bd7ed784957343358f080e4bf8b3e472.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynna Gumb,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lynna Gumb,ou=Management,dc=bitwarden,dc=com", + email: "GumbL@6ef1e4ea7e0c4fbca97db771430b3181.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arleen Owen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Arleen Owen,ou=Administrative,dc=bitwarden,dc=com", + email: "OwenA@d93d3e36ec7e4efdaa17aa90aca2f3e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden,dc=com", + email: "EwanchyC@9f05691ac53d429c8fd30f6c6f952561.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsae Geer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chelsae Geer,ou=Janitorial,dc=bitwarden,dc=com", + email: "GeerC@ea33a214953b4a6b925d5d0efa8ea38e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abraham McDougald,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Abraham McDougald,ou=Management,dc=bitwarden,dc=com", + email: "McDougaA@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessa Piasecki,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jessa Piasecki,ou=Management,dc=bitwarden,dc=com", + email: "PiaseckJ@af9d1266b1684989ab41423cdd351f7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeguireF@0651cd49040341648ef076fb9d224e36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hertha Wayler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hertha Wayler,ou=Janitorial,dc=bitwarden,dc=com", + email: "WaylerH@2e3ea6fd47a04112b8fcd5e103e3ae77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden,dc=com", + email: "LanzkroG@eb5d81d98e0b481098d9b451ee211c82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden,dc=com", + email: "HansquiR@3ffb284a6509471fa1b109716579396c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haste Isherwood,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Haste Isherwood,ou=Product Testing,dc=bitwarden,dc=com", + email: "IsherwoH@ec8dc3c6877747ab888f5b203f49583b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonye Frumerie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tonye Frumerie,ou=Management,dc=bitwarden,dc=com", + email: "FrumeriT@bc4791aff5914d0e95bbd2106b1c2de5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden,dc=com", + email: "KinoshiN@29fc4f33a13046d58a2533f092f80d91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilly Serapin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lilly Serapin,ou=Product Testing,dc=bitwarden,dc=com", + email: "SerapinL@b9e3cd16f2b646b993b7e643861e809b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phebe Gordon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Phebe Gordon,ou=Product Development,dc=bitwarden,dc=com", + email: "GordonP@80ac534602434d3b9eab0832653d2f56.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", + email: "ErmarkaA@8937c44c9bf6487fb42e97e582a0968a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cary Gronwall,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cary Gronwall,ou=Peons,dc=bitwarden,dc=com", + email: "GronwalC@da1dd7866db74262b18c0f383045bcff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mer Kearney,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mer Kearney,ou=Management,dc=bitwarden,dc=com", + email: "KearneyM@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viqar Campeau,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Viqar Campeau,ou=Administrative,dc=bitwarden,dc=com", + email: "CampeauV@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annet Chatfield,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annet Chatfield,ou=Administrative,dc=bitwarden,dc=com", + email: "ChatfieA@02d556d8128c42b5aa2cd5d4238f40aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lizzie Zaid,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lizzie Zaid,ou=Management,dc=bitwarden,dc=com", + email: "ZaidL@4cf5733fc93742b8881de63253f58457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norcal Schrier,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Norcal Schrier,ou=Payroll,dc=bitwarden,dc=com", + email: "SchrierN@6440b02815824326a0c464b5e91deecc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden,dc=com", + email: "FujiwarH@98aff7abdd994400acf7af6980180281.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlyne Tardiff,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marlyne Tardiff,ou=Management,dc=bitwarden,dc=com", + email: "TardiffM@0ed116231128466cad659b85d73b9c7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annabella Vogel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Annabella Vogel,ou=Peons,dc=bitwarden,dc=com", + email: "VogelA@240320ec20894b66932f0d930796bec9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden,dc=com", + email: "LorenzoS@783cff68e50c48949cc0f27986272654.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZengB@135bb9fa72e24dc8b937d7f87525e62d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden,dc=com", + email: "CzarnecF@6c799d8435134ca299840a473c03c953.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farzin Depooter,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Farzin Depooter,ou=Product Testing,dc=bitwarden,dc=com", + email: "DepooteF@7ea8c6e071cb415baa4ccfac0bf339ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denys Paone,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Denys Paone,ou=Management,dc=bitwarden,dc=com", + email: "PaoneD@a8abb07edeb74ec1ae70796a921d4f89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ghassan Payne,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ghassan Payne,ou=Administrative,dc=bitwarden,dc=com", + email: "PayneG@abbaec0735d04a0996e4b288ba069955.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heida Cripps,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Heida Cripps,ou=Management,dc=bitwarden,dc=com", + email: "CrippsH@5857bd6862ae44e0abdb84cc22875a30.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sayed Belaire,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sayed Belaire,ou=Human Resources,dc=bitwarden,dc=com", + email: "BelaireS@40cd70dd1d24483692f5533e0ae7157a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden,dc=com", + email: "ZumhageS@1567184d0d9f4bd798c9d76aae00fe9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sileas Brungardt,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sileas Brungardt,ou=Management,dc=bitwarden,dc=com", + email: "BrungarS@99efb52676a5438d8f4dfeb830e52009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden,dc=com", + email: "SeregelC@ba472466323f4495990396411f318b4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicholas Shupe,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nicholas Shupe,ou=Peons,dc=bitwarden,dc=com", + email: "ShupeN@ac9bf0e4278e4b36812b33be5aa4f608.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden,dc=com", + email: "GuinnanS@f88dd8b6188242cc853f83412105868d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margaret Binda,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Margaret Binda,ou=Peons,dc=bitwarden,dc=com", + email: "BindaM@0ec5cd8f3a4c4de5a7f274f9d3332893.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryAnn Windom,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=MaryAnn Windom,ou=Peons,dc=bitwarden,dc=com", + email: "WindomM@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cammie Lobello,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cammie Lobello,ou=Payroll,dc=bitwarden,dc=com", + email: "LobelloC@d4ad583ecaae406097e581a7aec5a780.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HangTong Shek,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=HangTong Shek,ou=Product Development,dc=bitwarden,dc=com", + email: "ShekH@edda584dd7a3409daa4b2eabe9e2cdb4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden,dc=com", + email: "YoshiokC@abae44a8c9154a558b8ee514a89fd6ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Engin Mersinger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Engin Mersinger,ou=Human Resources,dc=bitwarden,dc=com", + email: "MersingE@a424c942226a48928880fd6debd4c0c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebbecca Perina,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rebbecca Perina,ou=Management,dc=bitwarden,dc=com", + email: "PerinaR@89a8ded54db64032804dc4a0a9dd8e92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Piero Preece,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Piero Preece,ou=Peons,dc=bitwarden,dc=com", + email: "PreeceP@fc3a6a2ed2a041edaaee095273406b72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pradip Draffin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pradip Draffin,ou=Human Resources,dc=bitwarden,dc=com", + email: "DraffinP@315eb199a17945298e19ac4cd2657bca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden,dc=com", + email: "BowlerG@98febd962501443b89a9e8bfacf12a9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacynth Etemad,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jacynth Etemad,ou=Administrative,dc=bitwarden,dc=com", + email: "EtemadJ@8942e77394054acf85b23cffda0e66d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brittany Pokinko,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brittany Pokinko,ou=Management,dc=bitwarden,dc=com", + email: "PokinkoB@beb04887c3a74fa0ae74089e879db636.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeannot Rch,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jeannot Rch,ou=Product Testing,dc=bitwarden,dc=com", + email: "RchJ@71f49fd634ac4515894d5fd3319ef9a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wiebren Zaia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wiebren Zaia,ou=Product Development,dc=bitwarden,dc=com", + email: "ZaiaW@565c1161bdcb416b9e8012a23ab58823.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlyn Kell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Karlyn Kell,ou=Product Testing,dc=bitwarden,dc=com", + email: "KellK@0be01d83222f46f7842093c364d584c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noriko Devenny,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Noriko Devenny,ou=Janitorial,dc=bitwarden,dc=com", + email: "DevennyN@43188b75c2e34348ad81287ed476a6be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden,dc=com", + email: "SutherlS@29cf82166a6a4ea0989e7e7b62bf4159.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden,dc=com", + email: "RacioppM@9daad43b51a94c0ca7959dc6c27a0690.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChisolmR@c10a1f2c3750409ea6ba15a45a2d3288.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Porfirio Epperson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Porfirio Epperson,ou=Product Development,dc=bitwarden,dc=com", + email: "EppersoP@5411fa97ed104161bed6dae71e8cb050.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linnet Streight,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Linnet Streight,ou=Management,dc=bitwarden,dc=com", + email: "StreighL@149bc1b766d74419a516a7f2cbdf7f66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden,dc=com", + email: "HartkopR@2376664dd9b549139927cefdacae1cbe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tomi Bridges,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tomi Bridges,ou=Management,dc=bitwarden,dc=com", + email: "BridgesT@df6375b797c34567a9e4770a61e55877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerardo Walia,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gerardo Walia,ou=Management,dc=bitwarden,dc=com", + email: "WaliaG@b2d1290fcbcc4431adfadb5c58eee36e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hailee Corace,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hailee Corace,ou=Administrative,dc=bitwarden,dc=com", + email: "CoraceH@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden,dc=com", + email: "KehlerV@c6c3f852cc6d4b32801ebdde9e3265ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Munir Copes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Munir Copes,ou=Human Resources,dc=bitwarden,dc=com", + email: "CopesM@16434353c1084964814de6cc676be364.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susan Fowler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Susan Fowler,ou=Product Testing,dc=bitwarden,dc=com", + email: "FowlerS@d5a1c908aa0542dcbca729ee2090c302.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden,dc=com", + email: "BushnikR@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden,dc=com", + email: "BudimirE@a9b974f8337643ea8609cd0bff25a863.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden,dc=com", + email: "FouillaR@7f44259fadc8467aa5ed92152f0f037e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caye Setiawan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Caye Setiawan,ou=Janitorial,dc=bitwarden,dc=com", + email: "SetiawaC@899a157c5fcb4f20a59c759f3c7d4d65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daffy Hering,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Daffy Hering,ou=Administrative,dc=bitwarden,dc=com", + email: "HeringD@0ffd7dc252424626a20bcce6a53d823f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YoungJune Radford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=YoungJune Radford,ou=Human Resources,dc=bitwarden,dc=com", + email: "RadfordY@e8e76146b3cf4785898d03ad6423f9d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brana Susanto,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Brana Susanto,ou=Administrative,dc=bitwarden,dc=com", + email: "SusantoB@bc040a54299440bb80e6ade2d1ef97a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neile Niles,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Neile Niles,ou=Janitorial,dc=bitwarden,dc=com", + email: "NilesN@0e50776aafcb4d6c9860210852e9591e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joydeep Loos,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Joydeep Loos,ou=Product Development,dc=bitwarden,dc=com", + email: "LoosJ@3a57e18936584b66bbd6dab5016a2418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sohail Pilon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sohail Pilon,ou=Product Development,dc=bitwarden,dc=com", + email: "PilonS@ba461e5be7394399aa72f7b05ba2fea3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisse Odum,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melisse Odum,ou=Management,dc=bitwarden,dc=com", + email: "OdumM@52253f5384a34a7d887f92c29a569c37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden,dc=com", + email: "BeardmoV@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden,dc=com", + email: "LisenchM@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shay Fouchard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shay Fouchard,ou=Management,dc=bitwarden,dc=com", + email: "FoucharS@5acaf493974e4933b27d5e78e25585d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lesly Checkland,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lesly Checkland,ou=Peons,dc=bitwarden,dc=com", + email: "ChecklaL@9969b0f8851149aaa64ff3c67e9b6c53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roelof Balascak,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roelof Balascak,ou=Product Development,dc=bitwarden,dc=com", + email: "BalascaR@7f18e62561544141b6ccfe39f532339f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden,dc=com", + email: "CorpeniM@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miguel Skof,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Miguel Skof,ou=Product Development,dc=bitwarden,dc=com", + email: "SkofM@3bd0291e8cff49548689d7d941f27f3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden,dc=com", + email: "TodaroG@bdf4207a20c5486ca943568e769c8344.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden,dc=com", + email: "HinkelL@1ea1e70e2ff14b90b31a900ccfe17f79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zdenek Gahan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Zdenek Gahan,ou=Peons,dc=bitwarden,dc=com", + email: "GahanZ@0b154eee289f4cc1b4a09755e63f9b87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden,dc=com", + email: "RamkissL@c25e2fe1ca694d8a8fe5c23754b47571.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden,dc=com", + email: "TestNTMR@38fb869ba3244313992623d5e5856ca5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrile Lian,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Merrile Lian,ou=Payroll,dc=bitwarden,dc=com", + email: "LianM@55c5ce522f7b4db190d4d14360a9a4fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Engracia Messick,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Engracia Messick,ou=Administrative,dc=bitwarden,dc=com", + email: "MessickE@9befe039acaf4d578a86c80d677d5d49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", + email: "WasylykK@1f8fe58d7a114a4583fc58f63a22a5b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caron Sammon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Caron Sammon,ou=Janitorial,dc=bitwarden,dc=com", + email: "SammonC@db884c1075024ecfa29e3ec139ce7504.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charlotta McLennan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Charlotta McLennan,ou=Management,dc=bitwarden,dc=com", + email: "McLennaC@9d8d4067dbc148d3a4106bfdfacf427c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden,dc=com", + email: "KuryliaL@548e0585ebf342b985467eca55f4e5f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dexter Follett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dexter Follett,ou=Human Resources,dc=bitwarden,dc=com", + email: "FollettD@22f8ba9a65234f13bdf03b22a8df34d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Una Ausley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Una Ausley,ou=Management,dc=bitwarden,dc=com", + email: "AusleyU@e5bf2a74f7d948bb97855f44d83972fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adria Calow,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Adria Calow,ou=Product Development,dc=bitwarden,dc=com", + email: "CalowA@95930feb4c9b47f8b0d685739e06e5ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alora Bamfo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alora Bamfo,ou=Janitorial,dc=bitwarden,dc=com", + email: "BamfoA@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden,dc=com", + email: "WiederhB@c533c4ce9d2d4ce095673ea3b06d665b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gunnar Molani,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gunnar Molani,ou=Peons,dc=bitwarden,dc=com", + email: "MolaniG@21d4927a612549a1b797c77aee423501.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", + email: "JayamanS@c41f8f7aea354718b6ea3277359c3684.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenee Marasco,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lenee Marasco,ou=Payroll,dc=bitwarden,dc=com", + email: "MarascoL@a63636764be2417c8862dba36d524669.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Byron Shelegey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Byron Shelegey,ou=Management,dc=bitwarden,dc=com", + email: "ShelegeB@bf0924ca7ffa40efa64182b434d3b054.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charline Jago,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Charline Jago,ou=Payroll,dc=bitwarden,dc=com", + email: "JagoC@dede4ef26e0047b5ae95d810fbe16f29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anette Holloway,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anette Holloway,ou=Janitorial,dc=bitwarden,dc=com", + email: "HollowaA@3835da84e4cb44b5a38c776421814f8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florida Polashock,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Florida Polashock,ou=Human Resources,dc=bitwarden,dc=com", + email: "PolashoF@9bca7e1fa66343078f8d2f441ac03fca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Snair Mcshane,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Snair Mcshane,ou=Janitorial,dc=bitwarden,dc=com", + email: "McshaneS@4b02224ed79d49068514723b7495859b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden,dc=com", + email: "FogelsoS@54ce292eb157498aac7b1683764ec867.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jackson Schraner,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jackson Schraner,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchraneJ@ab8c896427cc47d7a32f95081ee3cada.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden,dc=com", + email: "FisprodT@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherianne Tidd,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cherianne Tidd,ou=Payroll,dc=bitwarden,dc=com", + email: "TiddC@848b025264d14e669cec02146f987418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisent Sampat,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Melisent Sampat,ou=Human Resources,dc=bitwarden,dc=com", + email: "SampatM@5297f06d12e84c7793e176a6624333e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffy Udall,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tiffy Udall,ou=Payroll,dc=bitwarden,dc=com", + email: "UdallT@a80405df7aef4b3db059a6cc73288f61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adeline Cruz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Adeline Cruz,ou=Product Testing,dc=bitwarden,dc=com", + email: "CruzA@068a0b6470f0444b9815d3ef36001ebd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tuan Fenati,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tuan Fenati,ou=Janitorial,dc=bitwarden,dc=com", + email: "FenatiT@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden,dc=com", + email: "KanungoL@2a906f1560284502a1b19f87829f93ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden,dc=com", + email: "CuthillT@e059f798bf444774a99e078fccd4a4f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaclyn Hook,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jaclyn Hook,ou=Payroll,dc=bitwarden,dc=com", + email: "HookJ@5c9986617ae9407ea5a172b5f4cff660.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucky DeBaets,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lucky DeBaets,ou=Payroll,dc=bitwarden,dc=com", + email: "DeBaetsL@8b6f5b0e3bf1445e87a0ee0539e4853f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toma Belcher,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Toma Belcher,ou=Janitorial,dc=bitwarden,dc=com", + email: "BelcherT@e2cd61401de9414191cd26ece93eb8bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ayda Ricketson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ayda Ricketson,ou=Administrative,dc=bitwarden,dc=com", + email: "RicketsA@102d4dd16d9e43f0b636c4011b41a3bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edie Fuller,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Edie Fuller,ou=Product Development,dc=bitwarden,dc=com", + email: "FullerE@6ce18e31fee44ca6a1d60162c1ff34ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrienne Teacher,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Adrienne Teacher,ou=Product Development,dc=bitwarden,dc=com", + email: "TeacherA@a8f35a5fbab443c4bb234c040b553494.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karilynn Sokolowski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karilynn Sokolowski,ou=Management,dc=bitwarden,dc=com", + email: "SokolowK@59b79c4bb1de445bb80956c31a33b163.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edna Etemad,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Edna Etemad,ou=Management,dc=bitwarden,dc=com", + email: "EtemadE@268e542432d8452492860decdd327bf6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heike Hoxie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Heike Hoxie,ou=Payroll,dc=bitwarden,dc=com", + email: "HoxieH@8237422e949f4acf92d97f787e6bf098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noelyn Snair,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Noelyn Snair,ou=Human Resources,dc=bitwarden,dc=com", + email: "SnairN@76bdb182929147bbb5f99a407f7da581.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annis Yung,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Annis Yung,ou=Product Testing,dc=bitwarden,dc=com", + email: "YungA@3dedccc8ea03468b9d15ac11ca05c230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olenka Gulis,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Olenka Gulis,ou=Human Resources,dc=bitwarden,dc=com", + email: "GulisO@4b5741ffe1ab4f72819c8cda7b7df64c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeanna Brousseau,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jeanna Brousseau,ou=Management,dc=bitwarden,dc=com", + email: "BrousseJ@d9a304fc4b9f41c9950557d3404312a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nikolaos Farley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nikolaos Farley,ou=Management,dc=bitwarden,dc=com", + email: "FarleyN@3bf5412f9df744cdbfb41ee6ad860514.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sydney Olivares,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sydney Olivares,ou=Management,dc=bitwarden,dc=com", + email: "OlivareS@ff087739d92a453c8986a21bbdeb6b99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lary MacMillanBrown,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lary MacMillanBrown,ou=Management,dc=bitwarden,dc=com", + email: "MacMillL@4d9f7b6850444a8d801b43c9573addba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Makam Junaid,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Makam Junaid,ou=Payroll,dc=bitwarden,dc=com", + email: "JunaidM@bac802e94a68427ebf6e1f43dd3c8d74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janson Breon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Janson Breon,ou=Human Resources,dc=bitwarden,dc=com", + email: "BreonJ@efeb1d35d7fb4a6698c2e450cd5716f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Persis Bourret,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Persis Bourret,ou=Product Testing,dc=bitwarden,dc=com", + email: "BourretP@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nonah Naylor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nonah Naylor,ou=Peons,dc=bitwarden,dc=com", + email: "NaylorN@0f8c40ba5d0843abbe9b0c196da09ca0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delmar Goold,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Delmar Goold,ou=Management,dc=bitwarden,dc=com", + email: "GooldD@6762e9a5ac5b4baaa52aa304581ce2d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noslab Despres,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Noslab Despres,ou=Product Development,dc=bitwarden,dc=com", + email: "DespresN@89a663a1a18c4ca7afe3412fbf2c4e97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonida Maloney,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Leonida Maloney,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaloneyL@bc9d8b4b30864998bd20fc77d040bd74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heida Witzmann,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Heida Witzmann,ou=Product Development,dc=bitwarden,dc=com", + email: "WitzmanH@98503141bef84f26be5517cb6d1c3fb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Azhar Klug,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Azhar Klug,ou=Human Resources,dc=bitwarden,dc=com", + email: "KlugA@6efed6dc63bd46768f25dd1a717dc7fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynnette Mirande,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lynnette Mirande,ou=Product Development,dc=bitwarden,dc=com", + email: "MirandeL@1112fe1439844e3ca725d40b9996ff1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esmond Ronald,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Esmond Ronald,ou=Management,dc=bitwarden,dc=com", + email: "RonaldE@364738d989114590842291a79ecffd92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruthie Weyand,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ruthie Weyand,ou=Administrative,dc=bitwarden,dc=com", + email: "WeyandR@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ileane DeWitte,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ileane DeWitte,ou=Peons,dc=bitwarden,dc=com", + email: "DeWitteI@6e1688424ec244adb10f2e8d17d9a231.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chocs Lanava,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Chocs Lanava,ou=Product Development,dc=bitwarden,dc=com", + email: "LanavaC@e96c6aa872a44f27a69d8b17ae3ca387.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abu Hubbard,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Abu Hubbard,ou=Peons,dc=bitwarden,dc=com", + email: "HubbardA@7b4016aa058a4e80b807fb4d0e4a0b36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felita Kaps,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Felita Kaps,ou=Janitorial,dc=bitwarden,dc=com", + email: "KapsF@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christin Shea,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Christin Shea,ou=Administrative,dc=bitwarden,dc=com", + email: "SheaC@cda870670aa345148330b4790dab0c4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haroon Trese,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Haroon Trese,ou=Payroll,dc=bitwarden,dc=com", + email: "TreseH@37a456ace6484592af9ec4787e1dcc5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norbert Ruest,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Norbert Ruest,ou=Human Resources,dc=bitwarden,dc=com", + email: "RuestN@8504384638364f5d9fea2c2c4a28b90e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden,dc=com", + email: "GleditsF@9ce658881e8c455194b88b370a33621e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Woody Bourlet,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Woody Bourlet,ou=Administrative,dc=bitwarden,dc=com", + email: "BourletW@b5a0b2f2ff6247cdb5697d2b9d25240d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saied DeCristofaro,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Saied DeCristofaro,ou=Peons,dc=bitwarden,dc=com", + email: "DeCristS@7011cb45501a4d689c26e15dc899ef15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dael Lariviere,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dael Lariviere,ou=Administrative,dc=bitwarden,dc=com", + email: "LarivieD@864d7fffc05349a6937099b5cb95ba17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden,dc=com", + email: "CoddingX@b37b0ee1c3d74b79bd0b37182c5a200f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miro Tabor,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Miro Tabor,ou=Product Testing,dc=bitwarden,dc=com", + email: "TaborM@be2fe06854024f6cb36c05d73bae2406.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden,dc=com", + email: "WitchloL@118b35796ca44494b05a6b698be1d2a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Der Fernando,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Der Fernando,ou=Product Testing,dc=bitwarden,dc=com", + email: "FernandD@a4f85fecd69348a29728c8e242a790a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden,dc=com", + email: "RuzyckiB@1a851fc2814040d38d9f2abd59e828ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivianne McCrain,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vivianne McCrain,ou=Peons,dc=bitwarden,dc=com", + email: "McCrainV@b70f11362a424a69841534d3b1179197.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden,dc=com", + email: "SobolewS@0d449385b7a34ab0b858a2ab5b17455a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden,dc=com", + email: "LingafeM@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden,dc=com", + email: "VanBentT@2e08496305794efd85d6a479c697a5c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden,dc=com", + email: "LacasseS@0c478e577f6c43f08e0c7154f215c7af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelina Todloski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Madelina Todloski,ou=Product Testing,dc=bitwarden,dc=com", + email: "TodloskM@ae68135eee9d4a26a1a58584ca226451.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vijai Combaz,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vijai Combaz,ou=Management,dc=bitwarden,dc=com", + email: "CombazV@6b94ae7a6d6747c8ba4de4161bb85768.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sohayla Neate,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sohayla Neate,ou=Product Development,dc=bitwarden,dc=com", + email: "NeateS@291647d2cd1d44a99560699f40c48fb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden,dc=com", + email: "GagnonK@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weldon Robustness,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Weldon Robustness,ou=Human Resources,dc=bitwarden,dc=com", + email: "RobustnW@4154a37503e24114bfe5421ecb627bb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Freddy Jachym,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Freddy Jachym,ou=Management,dc=bitwarden,dc=com", + email: "JachymF@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eliezer Assistance,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eliezer Assistance,ou=Management,dc=bitwarden,dc=com", + email: "AssistaE@2848b689935d4648b6061c4adab9255b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden,dc=com", + email: "AcelvarS@5b4286bc4af74709a0f65475a29d7c53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orelia Pisani,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Orelia Pisani,ou=Peons,dc=bitwarden,dc=com", + email: "PisaniO@572f2e7cd4c540ba82bdf3291fc77e32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelton Spencer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shelton Spencer,ou=Product Testing,dc=bitwarden,dc=com", + email: "SpencerS@6032a8b4894b42dc8d3f57130a5d8ef5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jonthan Khoury,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jonthan Khoury,ou=Product Development,dc=bitwarden,dc=com", + email: "KhouryJ@95a0714026f54037aaa182b092f39903.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tricord Bresee,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tricord Bresee,ou=Product Testing,dc=bitwarden,dc=com", + email: "BreseeT@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julietta Tillman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Julietta Tillman,ou=Peons,dc=bitwarden,dc=com", + email: "TillmanJ@44b2450bcee645ea9f41c30f5aa03fe5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Almeria Falke,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Almeria Falke,ou=Peons,dc=bitwarden,dc=com", + email: "FalkeA@ce68beaef1d3485083c2f31b35928b95.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aaron Deakin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aaron Deakin,ou=Product Development,dc=bitwarden,dc=com", + email: "DeakinA@1d4290d63a1444df823292a25ec59d0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Soyeh Noy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Soyeh Noy,ou=Product Testing,dc=bitwarden,dc=com", + email: "NoyS@1174f1cfd4db4d4e8122f3cc77544aa8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden,dc=com", + email: "FawcettS@b39d8f666f1848e6abb69d85d224a354.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden,dc=com", + email: "PurnellJ@a035bec181ea4cd9abd3953e80704bef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genia Mooken,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Genia Mooken,ou=Product Development,dc=bitwarden,dc=com", + email: "MookenG@6874478c22ee4fbf87473317dba0c7aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norton Chronowic,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Norton Chronowic,ou=Management,dc=bitwarden,dc=com", + email: "ChronowN@3628e26a28c645d7955cf8b078dbe56c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thom Hink,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Thom Hink,ou=Product Testing,dc=bitwarden,dc=com", + email: "HinkT@c337fda07bbe40e2a0aa0860ad7ba681.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanny Swepston,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vanny Swepston,ou=Peons,dc=bitwarden,dc=com", + email: "SwepstoV@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mabel Bycenko,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mabel Bycenko,ou=Peons,dc=bitwarden,dc=com", + email: "BycenkoM@3c89e3a711ca4ba7bd9dc3429c71b28e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiyoon Chau,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kiyoon Chau,ou=Administrative,dc=bitwarden,dc=com", + email: "ChauK@c7cfbecdcc9244d89ede1a6fe93b790c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nel Addetia,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nel Addetia,ou=Janitorial,dc=bitwarden,dc=com", + email: "AddetiaN@4fe9499fc7c8456094066466aa426118.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emeline Willmore,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Emeline Willmore,ou=Human Resources,dc=bitwarden,dc=com", + email: "WillmorE@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maged Bernardo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maged Bernardo,ou=Human Resources,dc=bitwarden,dc=com", + email: "BernardM@bc873160594f405e8694c4dc707b88ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Murry Okafo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Murry Okafo,ou=Management,dc=bitwarden,dc=com", + email: "OkafoM@7857a73234d945c08313b465094df60f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vita Coursol,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vita Coursol,ou=Peons,dc=bitwarden,dc=com", + email: "CoursolV@a69557e189c747b59333670f3ebf3a1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden,dc=com", + email: "HoffmanK@9bec1f480eec4baea66a1e4c2e434262.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden,dc=com", + email: "RadojicM@7e09e43498f24a77bbdff5fc55db68c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jelene Rivest,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jelene Rivest,ou=Janitorial,dc=bitwarden,dc=com", + email: "RivestJ@53f0c5d55dd14a429126d3d8cfc0b6d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magda Sims,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Magda Sims,ou=Human Resources,dc=bitwarden,dc=com", + email: "SimsM@a2e6c1d1859c490496277e66f6d6fefe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fanni Kelly,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fanni Kelly,ou=Janitorial,dc=bitwarden,dc=com", + email: "KellyF@30ee8b21e1bc41c1a7110da46046174f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phyl Komatsu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Phyl Komatsu,ou=Product Development,dc=bitwarden,dc=com", + email: "KomatsuP@7f95f5d6a463478d81afd013c82a23e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blondie Bessette,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Blondie Bessette,ou=Administrative,dc=bitwarden,dc=com", + email: "BessettB@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zonda Marette,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zonda Marette,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaretteZ@d8b58b77cc0a4df1b559d499a84b4151.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden,dc=com", + email: "SzaplonG@451ef49e42ac453eb09b3d6157d37259.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tavis Bovee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tavis Bovee,ou=Product Development,dc=bitwarden,dc=com", + email: "BoveeT@15c43eefe4c649db9c3b5dfcf2c7ab4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden,dc=com", + email: "DepooteV@b6dc43d5b48948bcabf31d42dd4a3286.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden,dc=com", + email: "SalgadoR@87d497e060994207b70ef7bd8c3d6175.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurore Danker,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Aurore Danker,ou=Human Resources,dc=bitwarden,dc=com", + email: "DankerA@308bfff65d134099bb462e88bbd36698.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yawar Benjes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yawar Benjes,ou=Human Resources,dc=bitwarden,dc=com", + email: "BenjesY@a409de982bd04e36819d909bb7350629.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jayme Casey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jayme Casey,ou=Product Development,dc=bitwarden,dc=com", + email: "CaseyJ@786bf687e1984b2da694b96e1738976f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden,dc=com", + email: "YurchukL@340ab58f2875411f8670d5765360d070.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daisi Encomenderos,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Daisi Encomenderos,ou=Management,dc=bitwarden,dc=com", + email: "EncomenD@65740d0bd6fb4b44a86d2ab249218002.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Biplab Caton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Biplab Caton,ou=Peons,dc=bitwarden,dc=com", + email: "CatonB@3466b47e8afc4d9d8ef0f5f1dbd0e25b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden,dc=com", + email: "WyzgaTaS@3ad303e52239495a9a4593b90983590a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Izak Roussin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Izak Roussin,ou=Payroll,dc=bitwarden,dc=com", + email: "RoussinI@1ae1933dac97453a926e3efbe8067be8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Montreal Mersch,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Montreal Mersch,ou=Product Testing,dc=bitwarden,dc=com", + email: "MerschM@0a5d24e43a114c95ae7921fe70fcb8e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sybille Shwed,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sybille Shwed,ou=Management,dc=bitwarden,dc=com", + email: "ShwedS@1c2b637d619c43c18e3692a1390e6b11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gordie Oey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gordie Oey,ou=Product Development,dc=bitwarden,dc=com", + email: "OeyG@a7e63ce77d0c4ec099d6b11874b8367f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden,dc=com", + email: "ArtzerR@d3fe6fead68f4275b09ee98e35e3f745.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", + email: "HazeldiR@6036cb6dd84a4edb923448591ed00b7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden,dc=com", + email: "LystiukJ@861f2fb047d7400fa0a3213fd039399d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nerte Diederichs,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nerte Diederichs,ou=Administrative,dc=bitwarden,dc=com", + email: "DiederiN@fbefb364d68b4da5a9c97a7882a4fc8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annemarie Harrell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Annemarie Harrell,ou=Product Development,dc=bitwarden,dc=com", + email: "HarrellA@cd7ca9bf5f46417f8ba8aba6c8f7dba0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden,dc=com", + email: "GuirguiC@f397541d0e814623b745c4fbd77b1a79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ara Darcel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ara Darcel,ou=Product Testing,dc=bitwarden,dc=com", + email: "DarcelA@9373e277d74d47d1862d60d665ff05cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden,dc=com", + email: "TestNTML@425e3df8b9654b8fb5fafe68899d23b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden,dc=com", + email: "QuizmasH@677b24267b6440e9ad6bebb082604f25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eng Mangum,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eng Mangum,ou=Administrative,dc=bitwarden,dc=com", + email: "MangumE@2351067d51a3467b820158a0674b058a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaye Dulude,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kaye Dulude,ou=Management,dc=bitwarden,dc=com", + email: "DuludeK@46b414ac9141409e8e0356bfba101dbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dinny Farrell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dinny Farrell,ou=Administrative,dc=bitwarden,dc=com", + email: "FarrellD@638ddd5f5c874c1fbe017c3aa0d978c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pru McIntomny,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pru McIntomny,ou=Management,dc=bitwarden,dc=com", + email: "McIntomP@fac421ca650e46139878bbd5f7498e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden,dc=com", + email: "LesperaF@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosemary Liao,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rosemary Liao,ou=Product Development,dc=bitwarden,dc=com", + email: "LiaoR@14f0a617fa68422cb151ec721a7c3c6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ketty Torrens,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ketty Torrens,ou=Peons,dc=bitwarden,dc=com", + email: "TorrensK@ebe018472f8e47ffa07ca073c7579b78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dinny Meggitt,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dinny Meggitt,ou=Administrative,dc=bitwarden,dc=com", + email: "MeggittD@8670b7b167164a8b9ce71d78ae9cb652.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashien Moran,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ashien Moran,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoranA@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden,dc=com", + email: "RolnickD@380e18f37efc4c72a3aed9a58017ec05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nerissa Brkich,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nerissa Brkich,ou=Management,dc=bitwarden,dc=com", + email: "BrkichN@5a9a5364a178494b8230100acff2f7c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ioan Usrouter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ioan Usrouter,ou=Product Development,dc=bitwarden,dc=com", + email: "UsrouteI@ce1152a8e6c84ca8a342fb4f07adbf4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bekki Blimkie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bekki Blimkie,ou=Payroll,dc=bitwarden,dc=com", + email: "BlimkieB@e4ba3a04463843c4bb028511bc17c6ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden,dc=com", + email: "PastuszI@990be6633e6a426c826b4ed97cd246bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryn Spieker,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bryn Spieker,ou=Payroll,dc=bitwarden,dc=com", + email: "SpiekerB@71f6d4707a2444dbb86b027f8a679d91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vijya Torian,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vijya Torian,ou=Payroll,dc=bitwarden,dc=com", + email: "TorianV@342a4bb5e4f14c8ea1f64e893deb961c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teiichi Marconi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Teiichi Marconi,ou=Product Development,dc=bitwarden,dc=com", + email: "MarconiT@623538f66c6d44c9949856d7b9d692ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allegra Chaaban,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Allegra Chaaban,ou=Peons,dc=bitwarden,dc=com", + email: "ChaabanA@46a1aedcb791477985797ad9b9abe5c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mair Wefers,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mair Wefers,ou=Administrative,dc=bitwarden,dc=com", + email: "WefersM@49672ac4642e4eb39566d542af0eef8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kerri Turbes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kerri Turbes,ou=Peons,dc=bitwarden,dc=com", + email: "TurbesK@34766460128a4ee582041f543b9bd242.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debora Dion,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Debora Dion,ou=Administrative,dc=bitwarden,dc=com", + email: "DionD@1a2601d237fb4358a83d77ca67ea5fc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden,dc=com", + email: "AldhizeG@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erdem Cowen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Erdem Cowen,ou=Peons,dc=bitwarden,dc=com", + email: "CowenE@202ab1834ba741fea5a2334a7dedf7d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thierry Crockett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Thierry Crockett,ou=Human Resources,dc=bitwarden,dc=com", + email: "CrocketT@3979193f52104b6298b8b064a2ea1e8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karrah Kassam,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Karrah Kassam,ou=Janitorial,dc=bitwarden,dc=com", + email: "KassamK@44cbc1ffc61f4407b46df0ad2810f7c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odile Dbs,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Odile Dbs,ou=Management,dc=bitwarden,dc=com", + email: "DbsO@16315dd92dc84985a220069911440155.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden,dc=com", + email: "MulqueeL@e859d60c0ffe4559a718b23dca588771.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lacy Haughwout,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lacy Haughwout,ou=Management,dc=bitwarden,dc=com", + email: "HaughwoL@b42b6a99e6224e4c89291ebf380e3cbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jimson Volfe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jimson Volfe,ou=Product Development,dc=bitwarden,dc=com", + email: "VolfeJ@1a4bc9dc35304b5f9c2dd94a61108938.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dede Billingham,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dede Billingham,ou=Janitorial,dc=bitwarden,dc=com", + email: "BillingD@280e1fcf17ca42c7b9f1237963a3ba22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden,dc=com", + email: "RykwaldD@b8b0660e812e407ca6dcb94fde784926.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden,dc=com", + email: "RamroopE@c73aa3a091e049f6a7996bb3eca7f8f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kissee Gowan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kissee Gowan,ou=Product Testing,dc=bitwarden,dc=com", + email: "GowanK@9eeaca65c53d4c879749fbda1cbf479e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eulalie Webber,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Eulalie Webber,ou=Product Development,dc=bitwarden,dc=com", + email: "WebberE@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Court Trefry,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Court Trefry,ou=Management,dc=bitwarden,dc=com", + email: "TrefryC@6f63c7f0bdc04832878e82c0e7196131.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claretta Kilcoin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Claretta Kilcoin,ou=Peons,dc=bitwarden,dc=com", + email: "KilcoinC@0714ade30c294e8fa73207b90b001e06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kassia Daaboul,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kassia Daaboul,ou=Product Development,dc=bitwarden,dc=com", + email: "DaaboulK@23ac82069da24dec85c6bfe8b5f2d4d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden,dc=com", + email: "ZagorseB@225e1be6fb454e5cab9ce645e748d35d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weber Gu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Weber Gu,ou=Product Testing,dc=bitwarden,dc=com", + email: "GuW@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rank Courtney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rank Courtney,ou=Administrative,dc=bitwarden,dc=com", + email: "CourtneR@3087ee4d2688435e9ed4c4c6f3e8ba87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aaren Neustifter,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aaren Neustifter,ou=Management,dc=bitwarden,dc=com", + email: "NeustifA@f9c0f71d487646dca3eac1c7c5deeeaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden,dc=com", + email: "MorozC@c3dcba6fd4804a9ab67d7734e84114c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clifford Forgues,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clifford Forgues,ou=Peons,dc=bitwarden,dc=com", + email: "ForguesC@b0e0a2bb3e4d4480b71edfd089eedd18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donnie Laverty,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Donnie Laverty,ou=Janitorial,dc=bitwarden,dc=com", + email: "LavertyD@7448491b00a74a3e95be2c2010be9a72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=How Sebastien,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=How Sebastien,ou=Peons,dc=bitwarden,dc=com", + email: "SebastiH@f759e44a1c504c63b3eae17c75b66fa2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hung Tabl,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hung Tabl,ou=Administrative,dc=bitwarden,dc=com", + email: "TablH@89d768777d16464796c6d90c8e8f013b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maye Atoui,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maye Atoui,ou=Payroll,dc=bitwarden,dc=com", + email: "AtouiM@92820cdfa8c3401089a4d22b2ae2009e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deva Currie,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Deva Currie,ou=Administrative,dc=bitwarden,dc=com", + email: "CurrieD@fae6085323bb4b59a529fb3b72784e6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivienne Bourk,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vivienne Bourk,ou=Payroll,dc=bitwarden,dc=com", + email: "BourkV@a84df3e5c9b34623ae9b4e8378e01b53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerber Kiernan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gerber Kiernan,ou=Peons,dc=bitwarden,dc=com", + email: "KiernanG@caa46152d3004d829aedead9d70579b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Me Muhammed,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Me Muhammed,ou=Product Testing,dc=bitwarden,dc=com", + email: "MuhammeM@280b34febbb74067854d58b8a20b3eb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ragui Lorenc,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ragui Lorenc,ou=Peons,dc=bitwarden,dc=com", + email: "LorencR@7d5f96a7021f46fdb7df38ea2101330d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorenza McCormick,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorenza McCormick,ou=Peons,dc=bitwarden,dc=com", + email: "McCormiL@b3a0ac978ba64a56a57f321d452537e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatrisa Malaher,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Beatrisa Malaher,ou=Peons,dc=bitwarden,dc=com", + email: "MalaherB@8522aa5b68484728b6db62d65a666456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffi Beverly,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tiffi Beverly,ou=Payroll,dc=bitwarden,dc=com", + email: "BeverlyT@01c5fecdf9e14e82bff74d9b9c368891.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden,dc=com", + email: "BijonsE@99adc70861e74db5b3e496e79ef1d82c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Analise Shiley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Analise Shiley,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShileyA@e51aa6debfeb4cc88c68dfc76ad89784.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fan Neander,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fan Neander,ou=Janitorial,dc=bitwarden,dc=com", + email: "NeanderF@8fd38b10138d41afbb37c8037aaf6377.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diamond Azer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Diamond Azer,ou=Payroll,dc=bitwarden,dc=com", + email: "AzerD@5d8901804e424468b0bef6e0378317d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorothee Azmak,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorothee Azmak,ou=Payroll,dc=bitwarden,dc=com", + email: "AzmakD@6882bb306b30484eac03893eca277bd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden,dc=com", + email: "SvaleseA@8e7d48bf3a0c469095e8b24ecc1dd148.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sydel MacGillivray,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sydel MacGillivray,ou=Peons,dc=bitwarden,dc=com", + email: "MacGillS@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martelle Filpus,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Martelle Filpus,ou=Product Testing,dc=bitwarden,dc=com", + email: "FilpusM@0f18718d8483421a96ceacb15a634c41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merunix Fadlallah,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Merunix Fadlallah,ou=Management,dc=bitwarden,dc=com", + email: "FadlallM@6dfbae5841184eee86f16ac4a1176697.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faz Seegobin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Faz Seegobin,ou=Janitorial,dc=bitwarden,dc=com", + email: "SeegobiF@71a24c1b73ef45498dfd1fbb9961fd57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden,dc=com", + email: "HrvatinE@7fedbd7312884d269b87f028bb6e0f4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeffery Panek,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jeffery Panek,ou=Administrative,dc=bitwarden,dc=com", + email: "PanekJ@0c478e577f6c43f08e0c7154f215c7af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chip Billard,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chip Billard,ou=Janitorial,dc=bitwarden,dc=com", + email: "BillardC@f56fa15d6b7d4398bc29adc06e1de112.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tran Selbrede,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tran Selbrede,ou=Peons,dc=bitwarden,dc=com", + email: "SelbredT@af40db009e314d829eef59ff73dce913.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wade Boersma,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Wade Boersma,ou=Peons,dc=bitwarden,dc=com", + email: "BoersmaW@24bb0910ae8142189acd6bd1e9a01a9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quintana Huneault,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Quintana Huneault,ou=Administrative,dc=bitwarden,dc=com", + email: "HuneaulQ@0ffd7dc252424626a20bcce6a53d823f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coors Beerkens,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Coors Beerkens,ou=Administrative,dc=bitwarden,dc=com", + email: "BeerkenC@79a240440e8849ae9bc16c0dd8ed8e58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prudence Schacham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Prudence Schacham,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchachaP@5dc8fd12cec3417ebac3e0369b557c5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden,dc=com", + email: "DunajskV@8cf79d720e6f4840b60a280dc34d992f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evita Cropper,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Evita Cropper,ou=Janitorial,dc=bitwarden,dc=com", + email: "CropperE@93856f312059479cb0ac63a8c6d54de8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joletta Senten,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joletta Senten,ou=Peons,dc=bitwarden,dc=com", + email: "SentenJ@d267cba29e124e168b77cc7855c4f981.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden,dc=com", + email: "WueppelK@9e342fa3efb14712a894fba19d56a8d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fotini Suyama,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fotini Suyama,ou=Management,dc=bitwarden,dc=com", + email: "SuyamaF@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hazel Gesino,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hazel Gesino,ou=Product Development,dc=bitwarden,dc=com", + email: "GesinoH@9cd1df92f17b493a882aebc6152a1e6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivie Murison,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ivie Murison,ou=Payroll,dc=bitwarden,dc=com", + email: "MurisonI@4c46c0ccb3eb4998b4cbc47cae874ac9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mahesh Flach,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mahesh Flach,ou=Payroll,dc=bitwarden,dc=com", + email: "FlachM@09bb099d23204c85bbfd94efdb157b79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annalee Prikkel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Annalee Prikkel,ou=Management,dc=bitwarden,dc=com", + email: "PrikkelA@578d34c128584bdeb42b389207ab706c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catja Scholman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Catja Scholman,ou=Human Resources,dc=bitwarden,dc=com", + email: "ScholmaC@fa78ddbf4a824e749170662a86f94ae1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden,dc=com", + email: "DodsonR@97f7053b3d7f4f79b48d3e12171a5966.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anda Fastpack,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Anda Fastpack,ou=Product Testing,dc=bitwarden,dc=com", + email: "FastpacA@a035bec181ea4cd9abd3953e80704bef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salis Nehring,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Salis Nehring,ou=Management,dc=bitwarden,dc=com", + email: "NehringS@0769d99dace1402cab1152a81fe3788b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francis LeBlanc,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Francis LeBlanc,ou=Payroll,dc=bitwarden,dc=com", + email: "LeBlancF@d8f95844461442f7932326cd41b836f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Humberto Stensrud,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Humberto Stensrud,ou=Management,dc=bitwarden,dc=com", + email: "StensruH@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manfred Wesolowski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Manfred Wesolowski,ou=Peons,dc=bitwarden,dc=com", + email: "WesolowM@e3eea603d1ae4f4dbff063acf8c6da65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden,dc=com", + email: "DziemiaS@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estele Fiest,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Estele Fiest,ou=Peons,dc=bitwarden,dc=com", + email: "FiestE@9bf2c205467a41708e3322ff14ec009d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maciej Fucito,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maciej Fucito,ou=Administrative,dc=bitwarden,dc=com", + email: "FucitoM@5e943e5d6d7b48d9af98d3041b109570.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden,dc=com", + email: "KeerA@177cfb37cf074f4eb62daca714a1f711.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frinel Veals,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Frinel Veals,ou=Payroll,dc=bitwarden,dc=com", + email: "VealsF@7022b955bef74762989f3e8241ec17a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catha Ghossein,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Catha Ghossein,ou=Human Resources,dc=bitwarden,dc=com", + email: "GhosseiC@afcd326ae5b94cedba790b89df39e139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Basia Trinidad,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Basia Trinidad,ou=Janitorial,dc=bitwarden,dc=com", + email: "TrinidaB@14e134bbcef94cbd9594aadae408ce91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vita Leveille,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vita Leveille,ou=Human Resources,dc=bitwarden,dc=com", + email: "LeveillV@156df7528958433faec56aa3b7184ead.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lidio Toomer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lidio Toomer,ou=Human Resources,dc=bitwarden,dc=com", + email: "ToomerL@4ec011c6fc024dda9c255391b6f4f92f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kessel Keveny,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kessel Keveny,ou=Product Development,dc=bitwarden,dc=com", + email: "KevenyK@60e7c26ff89e4b72b87e6f8a7af31f27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alf Noorani,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alf Noorani,ou=Janitorial,dc=bitwarden,dc=com", + email: "NooraniA@9d5da66e74ac4d48878a287a4792d9ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden,dc=com", + email: "MivehchC@f5afe6422dca491da65fa6a254990cc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirstyn Hutt,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kirstyn Hutt,ou=Management,dc=bitwarden,dc=com", + email: "HuttK@7d6035a424ee45dca06332e1186be7f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blisse Lein,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Blisse Lein,ou=Product Testing,dc=bitwarden,dc=com", + email: "LeinB@94b95f6e458646f98e09b046007fece8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edithe Dougall,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Edithe Dougall,ou=Administrative,dc=bitwarden,dc=com", + email: "DougallE@e5b69381ba2b442b903a1a29bf25534d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sage Randell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sage Randell,ou=Peons,dc=bitwarden,dc=com", + email: "RandellS@7f502c8cd29345a394629247bc437c0f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carina Hume,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Carina Hume,ou=Peons,dc=bitwarden,dc=com", + email: "HumeC@8053af09c938471f9ad09445e16f631c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mickie Prystie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mickie Prystie,ou=Payroll,dc=bitwarden,dc=com", + email: "PrystieM@ab27f4e751074bd087dace4a33698f66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nalin Levere,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nalin Levere,ou=Human Resources,dc=bitwarden,dc=com", + email: "LevereN@14c49ff73612459cbe530fd5ad7a9b9f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allen Iannotti,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Allen Iannotti,ou=Administrative,dc=bitwarden,dc=com", + email: "IannottA@e37f5b0cfb234751951af2ec77381913.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maressa Poulin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Maressa Poulin,ou=Peons,dc=bitwarden,dc=com", + email: "PoulinM@97142716e28b4ec6bcc36b32805d9552.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danni Hummerston,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Danni Hummerston,ou=Payroll,dc=bitwarden,dc=com", + email: "HummersD@2111304740f548cf848d6dc98f3520ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosabel Buley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rosabel Buley,ou=Management,dc=bitwarden,dc=com", + email: "BuleyR@2f1ccd0f317a4e42955b19a4c97fc5c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden,dc=com", + email: "LethebiC@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sayed Virant,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sayed Virant,ou=Product Testing,dc=bitwarden,dc=com", + email: "VirantS@8042d13a5bda4cd1ba81e78d19a6faff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sundaram Lojewski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sundaram Lojewski,ou=Management,dc=bitwarden,dc=com", + email: "LojewskS@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laina Ertl,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Laina Ertl,ou=Product Development,dc=bitwarden,dc=com", + email: "ErtlL@056a218e00ae4a2383ce03d97161e27d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeniece Bcs,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jeniece Bcs,ou=Administrative,dc=bitwarden,dc=com", + email: "BcsJ@724caed46aaf481fb3e0817c5c10cdb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden,dc=com", + email: "EldrethS@b62493e12ad744b2b5583be842519934.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tammy Heikkila,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tammy Heikkila,ou=Payroll,dc=bitwarden,dc=com", + email: "HeikkilT@4781f85f1c214dff92b5f07239287faa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pearle Bruketa,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pearle Bruketa,ou=Management,dc=bitwarden,dc=com", + email: "BruketaP@d01918c117a846518e67dbe5b2fd6ee8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherie Brett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cherie Brett,ou=Peons,dc=bitwarden,dc=com", + email: "BrettC@878435e5887c47ef90f06778893d179e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hector Gingrich,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hector Gingrich,ou=Product Development,dc=bitwarden,dc=com", + email: "GingricH@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Biplab VanHaste,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Biplab VanHaste,ou=Administrative,dc=bitwarden,dc=com", + email: "VanHastB@a605402a36f347eeb8dcbbe3d61c2032.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden,dc=com", + email: "SheffieJ@c65f075234ae4ca0ba28441c293a5096.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roby Larin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Roby Larin,ou=Management,dc=bitwarden,dc=com", + email: "LarinR@fc61927435a64fa9bae5f49cccd879ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirley Holvey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shirley Holvey,ou=Janitorial,dc=bitwarden,dc=com", + email: "HolveyS@a32cc86a2bd244a1a69078536f474c4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden,dc=com", + email: "CroisetY@01d981966ccd4e18a1de23880ee9b91c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrownriD@e9efa6e493c94e819a8af125d338efb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shari Skaff,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shari Skaff,ou=Peons,dc=bitwarden,dc=com", + email: "SkaffS@42f7f72ca79e451abe4a35d3706fd511.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden,dc=com", + email: "SanfordH@58eea1d96e4142748280c825c6b718b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valida Fleischer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Valida Fleischer,ou=Administrative,dc=bitwarden,dc=com", + email: "FleischV@2c5b6f0e18984fb3a1bf5177eef8b508.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=March Hess,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=March Hess,ou=Product Testing,dc=bitwarden,dc=com", + email: "HessM@90f7f0ce436d4b8ead2a23f5d4765511.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamran Shabatura,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kamran Shabatura,ou=Peons,dc=bitwarden,dc=com", + email: "ShabatuK@e3c084d5a2b44c959d053319884f8497.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arturo Ensign,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Arturo Ensign,ou=Administrative,dc=bitwarden,dc=com", + email: "EnsignA@74472620f9a5441ba641f245e46fb09d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden,dc=com", + email: "SaifullO@7be2adbfd042422e9bcc88e78cabf3cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden,dc=com", + email: "FeyenG@c881c186a173446ea0e986dc58eda7dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lauryn Wever,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lauryn Wever,ou=Administrative,dc=bitwarden,dc=com", + email: "WeverL@a2a7439199d14d4790e860a2aa0ae08e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anda Wilhoit,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anda Wilhoit,ou=Administrative,dc=bitwarden,dc=com", + email: "WilhoitA@9834775790d142218cd7b62ee57a176b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Samia Cochran,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Samia Cochran,ou=Janitorial,dc=bitwarden,dc=com", + email: "CochranS@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michie ToDo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Michie ToDo,ou=Administrative,dc=bitwarden,dc=com", + email: "ToDoM@b3031d6ddd9541b6b0f40d995516638d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arvind Gundecha,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arvind Gundecha,ou=Peons,dc=bitwarden,dc=com", + email: "GundechA@44fa0b06635a4a55b59882def7b69891.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Costas Watson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Costas Watson,ou=Product Testing,dc=bitwarden,dc=com", + email: "WatsonC@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ebba Gutcher,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ebba Gutcher,ou=Peons,dc=bitwarden,dc=com", + email: "GutcherE@dd4f59cb9a1245048a34aa45906e0378.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden,dc=com", + email: "KendricG@5e8502c960c24fb593bf7dca3d40e2f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peggie Madl,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Peggie Madl,ou=Product Testing,dc=bitwarden,dc=com", + email: "MadlP@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norry Benjamin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Norry Benjamin,ou=Payroll,dc=bitwarden,dc=com", + email: "BenjamiN@65ea3b4fba9d486a8e6a9886164c5515.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loreen Chapen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Loreen Chapen,ou=Product Development,dc=bitwarden,dc=com", + email: "ChapenL@7bfc11514c5e4224a1e499acf9880451.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loay Clairmont,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Loay Clairmont,ou=Janitorial,dc=bitwarden,dc=com", + email: "ClairmoL@343f3e94452d4417ab72f456ef20099a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jagdev Eaton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jagdev Eaton,ou=Payroll,dc=bitwarden,dc=com", + email: "EatonJ@56dc85c859e5439293a626149de045e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vina Smothers,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vina Smothers,ou=Product Development,dc=bitwarden,dc=com", + email: "SmotherV@22cb224a80984684b19d5e903a9e8f92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden,dc=com", + email: "KalitzkS@700cffdeffc944e3b104dbec36c347ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden,dc=com", + email: "FontaniR@68267e214c7a487aa5678c0838a58e53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minerva Cuper,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Minerva Cuper,ou=Payroll,dc=bitwarden,dc=com", + email: "CuperM@11006cb63c014ed78431f32c1edc2e50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynette Cascarini,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lynette Cascarini,ou=Product Development,dc=bitwarden,dc=com", + email: "CascariL@ac076ba79d124761ac4ec297033b1240.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lsi Loughran,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lsi Loughran,ou=Product Testing,dc=bitwarden,dc=com", + email: "LoughraL@8d3b1ae4e0a848b5802b107cdfc10b06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassandry Emmert,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cassandry Emmert,ou=Management,dc=bitwarden,dc=com", + email: "EmmertC@eaf942e23a8c4f86b819fb393327fb04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden,dc=com", + email: "StephenK@98febd962501443b89a9e8bfacf12a9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minnesota Herzig,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Minnesota Herzig,ou=Payroll,dc=bitwarden,dc=com", + email: "HerzigM@84e0b1d8b0c84412a89683731e9fda1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lauren Syrett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lauren Syrett,ou=Peons,dc=bitwarden,dc=com", + email: "SyrettL@42ad681604354ebd8ba7299c92bab329.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyana Pennell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dyana Pennell,ou=Janitorial,dc=bitwarden,dc=com", + email: "PennellD@0afc47bad19c46b99058f74e9901e6b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camella IRCMARKET,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Camella IRCMARKET,ou=Peons,dc=bitwarden,dc=com", + email: "IRCMARKC@8f8b16f7eeb64121b5894e2d12941301.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden,dc=com", + email: "GoertzeY@f356862401984def8bd045192d245ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doro Cottengim,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Doro Cottengim,ou=Peons,dc=bitwarden,dc=com", + email: "CottengD@c7cd8ed01ff4421e89b8fce69f567e72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden,dc=com", + email: "RodriguZ@ea67abb740f54118a1219fbd4f51bc7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden,dc=com", + email: "GerlichJ@c3692aa8bfcc4a689d45388238055ec4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nesta Bydeley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nesta Bydeley,ou=Payroll,dc=bitwarden,dc=com", + email: "BydeleyN@592208e028cd436396db371d93b549f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yogesh Meckley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yogesh Meckley,ou=Peons,dc=bitwarden,dc=com", + email: "MeckleyY@ceb12762ef0641af91eccdee76fe34c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden,dc=com", + email: "LlagunoS@7391a6d3d59e40cd941b74d4ab20cfad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailene Challice,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ailene Challice,ou=Payroll,dc=bitwarden,dc=com", + email: "ChallicA@67d3a8519ac14347aeb58946a31a1f50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viola Hately,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Viola Hately,ou=Human Resources,dc=bitwarden,dc=com", + email: "HatelyV@fad4df468b1843c3916d4ae2eb3ff3a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shunro Singer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shunro Singer,ou=Human Resources,dc=bitwarden,dc=com", + email: "SingerS@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chitra McAleer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chitra McAleer,ou=Product Testing,dc=bitwarden,dc=com", + email: "McAleerC@613949922305449dab3107a6d150066b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jay Biage,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jay Biage,ou=Payroll,dc=bitwarden,dc=com", + email: "BiageJ@908e2f7daa5c4f539482241df20bc43f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faydra Kandra,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Faydra Kandra,ou=Administrative,dc=bitwarden,dc=com", + email: "KandraF@2fd47af450d743418108699823631680.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shandee Safah,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shandee Safah,ou=Product Testing,dc=bitwarden,dc=com", + email: "SafahS@375d13357cc946b587c8f99d2269c9f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gen Marano,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gen Marano,ou=Payroll,dc=bitwarden,dc=com", + email: "MaranoG@89e33259b1f341dda582db87064be4b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettina Spinelli,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bettina Spinelli,ou=Management,dc=bitwarden,dc=com", + email: "SpinellB@e77a72af01c44ce88f609078a4d8d2a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mureil Vish,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mureil Vish,ou=Administrative,dc=bitwarden,dc=com", + email: "VishM@47b62883b41b47caaa90c87545926566.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alane Carlisle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alane Carlisle,ou=Management,dc=bitwarden,dc=com", + email: "CarlislA@c5dc40d5940e458ab33ccb9687a6e9df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sayre Paulett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sayre Paulett,ou=Management,dc=bitwarden,dc=com", + email: "PaulettS@f2946785e86743e2aa3ad5ba0ef200dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden,dc=com", + email: "SassonC@76601b52ef094fb1a584255928f2a86b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ambur Fernandez,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ambur Fernandez,ou=Peons,dc=bitwarden,dc=com", + email: "FernandA@d05ffeea80b94ea6b929bf19bf3cb1d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlye Puelma,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carlye Puelma,ou=Management,dc=bitwarden,dc=com", + email: "PuelmaC@3918530762a64e8db535b65dcc80cbce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eleonore Edwige,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eleonore Edwige,ou=Administrative,dc=bitwarden,dc=com", + email: "EdwigeE@3358f35c8d4144d59100e666ebc7914f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoshi Neustifter,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Yoshi Neustifter,ou=Management,dc=bitwarden,dc=com", + email: "NeustifY@21bcebc879234832b21c9a4bda0b84ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden,dc=com", + email: "KapusciV@148b0748cafd4655898b3cdac38d15c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernd Ribakovs,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bernd Ribakovs,ou=Peons,dc=bitwarden,dc=com", + email: "RibakovB@5c3854c0e45246a0b3fb22153a7146d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ralph Taylor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ralph Taylor,ou=Management,dc=bitwarden,dc=com", + email: "TaylorR@df91f02938d046d8adb3f260f0e722ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baldev Annab,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Baldev Annab,ou=Human Resources,dc=bitwarden,dc=com", + email: "AnnabB@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Me Cuany,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Me Cuany,ou=Janitorial,dc=bitwarden,dc=com", + email: "CuanyM@77f895f70886481eae5a63f9a86f7856.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neville Doble,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Neville Doble,ou=Product Testing,dc=bitwarden,dc=com", + email: "DobleN@79d5277aef56406eb7a48c1a74d35976.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alidia Banens,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alidia Banens,ou=Administrative,dc=bitwarden,dc=com", + email: "BanensA@ff6113da300b4b2aa7ff3a66734b4954.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hans Fahey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hans Fahey,ou=Peons,dc=bitwarden,dc=com", + email: "FaheyH@9e0bdc0fb08d44118d9ae7567498b80c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luce Piper,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Luce Piper,ou=Product Testing,dc=bitwarden,dc=com", + email: "PiperL@1ef06389f2a545358cb76b8f3247552d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maible Adamo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maible Adamo,ou=Administrative,dc=bitwarden,dc=com", + email: "AdamoM@2514efb598094878a84945e42222f037.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrodersA@59ed31e1416a44f38102361f5e901aec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden,dc=com", + email: "MontreaF@9e2b20abc536451c80331d81dc08fb80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leny Husarewych,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leny Husarewych,ou=Management,dc=bitwarden,dc=com", + email: "HusarewL@fd7f1413c0914fd9966db7121e375108.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerald Bijjani,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gerald Bijjani,ou=Peons,dc=bitwarden,dc=com", + email: "BijjaniG@648da49b32e0468cbaab8b6990a6bcd7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maint Olivares,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maint Olivares,ou=Administrative,dc=bitwarden,dc=com", + email: "OlivareM@3a6431b2f04c4152b1a57322f60c8410.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden,dc=com", + email: "HiguchiB@420d170835a74668b7399e0614ecc1a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arturo Groves,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Arturo Groves,ou=Product Testing,dc=bitwarden,dc=com", + email: "GrovesA@61d7f2e9441545fa8ba2dcce7dd5448a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ho Rolnick,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ho Rolnick,ou=Administrative,dc=bitwarden,dc=com", + email: "RolnickH@8819cc07e7b545c38dcf521aa22a7f85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erning Lingafelter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Erning Lingafelter,ou=Product Development,dc=bitwarden,dc=com", + email: "LingafeE@19f0b3104cc549c5972e2013b118e2bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alanah Wolff,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alanah Wolff,ou=Janitorial,dc=bitwarden,dc=com", + email: "WolffA@8068d857ca8d45118464c596ca9f4192.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corrianne Hughson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Corrianne Hughson,ou=Payroll,dc=bitwarden,dc=com", + email: "HughsonC@ec27ad8054ec49e6b80dae8c88335049.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wallis Grubbs,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wallis Grubbs,ou=Management,dc=bitwarden,dc=com", + email: "GrubbsW@c322a60d3bf04197a05d614b3aca2643.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eran Sziladi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eran Sziladi,ou=Payroll,dc=bitwarden,dc=com", + email: "SziladiE@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joji Cassar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Joji Cassar,ou=Product Development,dc=bitwarden,dc=com", + email: "CassarJ@d06dcad3fe8b46a4aa1b3d7dd28ff6b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sunil Brisebois,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sunil Brisebois,ou=Payroll,dc=bitwarden,dc=com", + email: "BriseboS@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Otha Dee,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Otha Dee,ou=Peons,dc=bitwarden,dc=com", + email: "DeeO@a34bb7d1546c462cb51396798bb22845.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyane Hungle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dyane Hungle,ou=Janitorial,dc=bitwarden,dc=com", + email: "HungleD@4893d9d0765d4728aa63d94ce3265f28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlane Mitchell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marlane Mitchell,ou=Product Development,dc=bitwarden,dc=com", + email: "MitchelM@77df1d4a30ab443892398806ba3c7576.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden,dc=com", + email: "BulkovsL@94747c09a3194eba8b7d52262cebca45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belva Knighten,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Belva Knighten,ou=Administrative,dc=bitwarden,dc=com", + email: "KnighteB@285b0b0b23104ddebe5d6348304a4148.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden,dc=com", + email: "OesterrC@8a9079e17fc440a78f208b233e58c2df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden,dc=com", + email: "IacovoX@98315d8e8bc34b77b08ac74a18e3be73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shahriar Upchurch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shahriar Upchurch,ou=Management,dc=bitwarden,dc=com", + email: "UpchurcS@35c01be12949443b81c64e5b90fceee5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blaire Hr,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Blaire Hr,ou=Product Development,dc=bitwarden,dc=com", + email: "HrB@e52685d2fb89476596028e80c714ec4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden,dc=com", + email: "HudecekR@783a0de8a8e24bc7b467cd3312aa159b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idalia Batura,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Idalia Batura,ou=Human Resources,dc=bitwarden,dc=com", + email: "BaturaI@29c7ef7aeb474d4781eb49a7f52e61db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bachittar Reneau,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bachittar Reneau,ou=Management,dc=bitwarden,dc=com", + email: "ReneauB@94a04369a1f7454aa0b8a26e89e03c22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inger Oshiro,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Inger Oshiro,ou=Product Development,dc=bitwarden,dc=com", + email: "OshiroI@a8e37e10b84947b0991df30bd3cb9d8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharline Chester,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sharline Chester,ou=Payroll,dc=bitwarden,dc=com", + email: "ChesterS@733a0ed9ca244d1a87001be1b9e9514d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glynn Surreau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Glynn Surreau,ou=Peons,dc=bitwarden,dc=com", + email: "SurreauG@9ba1788c88514e3e9788f75280ccf6c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hatti Griffiths,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hatti Griffiths,ou=Payroll,dc=bitwarden,dc=com", + email: "GriffitH@ae52dcada2674f68a76a2c619d85f261.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gudrun Robson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gudrun Robson,ou=Human Resources,dc=bitwarden,dc=com", + email: "RobsonG@dba7b5909e924eeda080d597d190e631.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sati Hallett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sati Hallett,ou=Management,dc=bitwarden,dc=com", + email: "HallettS@58d046473fe24d0d8bf6f510239a1102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lotty Flansburg,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lotty Flansburg,ou=Payroll,dc=bitwarden,dc=com", + email: "FlansbuL@995d47539bff49b8a85a5ecb474bd257.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Larina Scanlon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Larina Scanlon,ou=Peons,dc=bitwarden,dc=com", + email: "ScanlonL@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barney Surridge,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Barney Surridge,ou=Peons,dc=bitwarden,dc=com", + email: "SurridgB@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yolanda Wanda,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yolanda Wanda,ou=Product Development,dc=bitwarden,dc=com", + email: "WandaY@63e0235d1e58418d9082de40babcb995.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dasie Tougas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dasie Tougas,ou=Human Resources,dc=bitwarden,dc=com", + email: "TougasD@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julee Milton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Julee Milton,ou=Administrative,dc=bitwarden,dc=com", + email: "MiltonJ@08af06c825e94cb392bd12261cb97963.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selle Oslund,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Selle Oslund,ou=Janitorial,dc=bitwarden,dc=com", + email: "OslundS@102d4dd16d9e43f0b636c4011b41a3bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden,dc=com", + email: "TogasakB@207f06c431db4f90babc987173636b40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leelah Docherty,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Leelah Docherty,ou=Product Testing,dc=bitwarden,dc=com", + email: "DochertL@e47f64bef69f4dd48dddefa04608b96f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clement Srivastava,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clement Srivastava,ou=Management,dc=bitwarden,dc=com", + email: "SrivastC@0e85bbb2cec745a29072d883820197db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marsie Schreiber,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marsie Schreiber,ou=Payroll,dc=bitwarden,dc=com", + email: "SchreibM@60ce52bd5b3a49f19dc20ccd0b72445c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathryn Bokij,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cathryn Bokij,ou=Payroll,dc=bitwarden,dc=com", + email: "BokijC@9e84c2e1d4034838ad90a53f25c2fdbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden,dc=com", + email: "BryttanS@f48d7d3b63134ad1b2fb9b6ebafa3028.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden,dc=com", + email: "ChronowS@465c6a27d41345cf88d762adf10ae61e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden,dc=com", + email: "SalyniuV@a286103db60e4488ab30515042c203a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden,dc=com", + email: "CassadyS@4466c387ca38420ebdc497ef8de08842.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melody Fontana,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melody Fontana,ou=Janitorial,dc=bitwarden,dc=com", + email: "FontanaM@b183806c89d6447c809013ec636d07ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saul Fussell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Saul Fussell,ou=Management,dc=bitwarden,dc=com", + email: "FussellS@4c905761dfd345f0bec1fb45af8eef64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden,dc=com", + email: "KayalioL@758a671442c6456f8563c5ae42048214.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomas Gourley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Thomas Gourley,ou=Peons,dc=bitwarden,dc=com", + email: "GourleyT@e82a7163f0b1403c8ef83f8850e77a61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norstar Trefts,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Norstar Trefts,ou=Janitorial,dc=bitwarden,dc=com", + email: "TreftsN@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeatherC@6994ff306ef64425a30543b5e9a42d04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden,dc=com", + email: "OcampoI@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathi Keiser,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cathi Keiser,ou=Janitorial,dc=bitwarden,dc=com", + email: "KeiserC@df6375b797c34567a9e4770a61e55877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Apryle Haurie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Apryle Haurie,ou=Peons,dc=bitwarden,dc=com", + email: "HaurieA@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozanne Trouborst,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rozanne Trouborst,ou=Peons,dc=bitwarden,dc=com", + email: "TrouborR@c2eec700570a4e37a9895be568c7b846.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catlaina Intemann,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Catlaina Intemann,ou=Product Development,dc=bitwarden,dc=com", + email: "IntemanC@e91f9f908328437c89ad28a2affe5705.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anabel Intune,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anabel Intune,ou=Janitorial,dc=bitwarden,dc=com", + email: "IntuneA@e9f78b5202b6404b9ee727f9d75a47b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden,dc=com", + email: "RigdonE@25954b1ed5924842b4df7800b058aeea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninnetta Matney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ninnetta Matney,ou=Administrative,dc=bitwarden,dc=com", + email: "MatneyN@debbccc9cd9041e58d59a87945bc2243.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regina Lemay,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Regina Lemay,ou=Janitorial,dc=bitwarden,dc=com", + email: "LemayR@8227646c55034cf9b21757fce681b53f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janos Davis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Janos Davis,ou=Payroll,dc=bitwarden,dc=com", + email: "DavisJ@0a9ba1c4790d4f00ae7cb9df0847c587.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dniren Serack,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dniren Serack,ou=Payroll,dc=bitwarden,dc=com", + email: "SerackD@0d144b95e68f4087974ae09daf892d06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaffer Guty,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jaffer Guty,ou=Payroll,dc=bitwarden,dc=com", + email: "GutyJ@a2e835bbc90a4bb8aa8eed7abb9fcd6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalpit Devine,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kalpit Devine,ou=Administrative,dc=bitwarden,dc=com", + email: "DevineK@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zitella Sammon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zitella Sammon,ou=Management,dc=bitwarden,dc=com", + email: "SammonZ@af539deff3b941ca83e2c33de648681b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renate Worrall,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Renate Worrall,ou=Human Resources,dc=bitwarden,dc=com", + email: "WorrallR@1f071e8813ad43c0a975571fab76b110.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden,dc=com", + email: "MasciarE@cbf6583826fd423d8f040079f215152c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden,dc=com", + email: "IsherwoB@f82a375ba7e5476fb33407411380cda7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden,dc=com", + email: "TraynorM@a6d00429faa5499880c45615fd9223a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Medria Aribindi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Medria Aribindi,ou=Administrative,dc=bitwarden,dc=com", + email: "AribindM@be56d01786b846e3aa64454147150e23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eba Bockaj,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eba Bockaj,ou=Payroll,dc=bitwarden,dc=com", + email: "BockajE@3f93f60a8e804d55a6647c56c6c05eab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calley Thaxton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Calley Thaxton,ou=Product Testing,dc=bitwarden,dc=com", + email: "ThaxtonC@202ab1834ba741fea5a2334a7dedf7d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rheal Dadgar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rheal Dadgar,ou=Payroll,dc=bitwarden,dc=com", + email: "DadgarR@b3a78fcc94924efeb3886f806e14989c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphene Bayno,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Daphene Bayno,ou=Janitorial,dc=bitwarden,dc=com", + email: "BaynoD@b1e31f863da04aa8b9a57d43a6e09dae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dilpreet Javor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dilpreet Javor,ou=Management,dc=bitwarden,dc=com", + email: "JavorD@3bc4d87aca5d46469b49fb22078e5414.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kambiz Nyce,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kambiz Nyce,ou=Peons,dc=bitwarden,dc=com", + email: "NyceK@ff8375ca1c294ee698da8ebb063821cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karan Molochko,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Karan Molochko,ou=Administrative,dc=bitwarden,dc=com", + email: "MolochkK@22bf652e14524f83bfef4f8562abff95.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olav Straub,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Olav Straub,ou=Product Testing,dc=bitwarden,dc=com", + email: "StraubO@0af04fcd60da40099a5a068c388bafe2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden,dc=com", + email: "AshurkoG@2885a23eb18143c0ac146276f9ab0afb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden,dc=com", + email: "GhattaC@a18c15299e7f44c494cd2e3c44db021d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berget Hnidek,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Berget Hnidek,ou=Peons,dc=bitwarden,dc=com", + email: "HnidekB@54be91a814bf4836912c52cbba66eeef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shahriar Benschop,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shahriar Benschop,ou=Peons,dc=bitwarden,dc=com", + email: "BenschoS@66ebe9b8d29246329e6e17db480edb7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", + email: "SavarimK@4be9f9f4318e4587b7d485613eb27d49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilkin Boinnard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wilkin Boinnard,ou=Management,dc=bitwarden,dc=com", + email: "BoinnarW@af9d1266b1684989ab41423cdd351f7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vital Simcoe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vital Simcoe,ou=Product Development,dc=bitwarden,dc=com", + email: "SimcoeV@04f0b8f68f7043abbd5b8505c5bed917.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lydie Hooker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lydie Hooker,ou=Product Testing,dc=bitwarden,dc=com", + email: "HookerL@4eab057e70644dff8f3d5ac041be0877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greta Minyard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Greta Minyard,ou=Management,dc=bitwarden,dc=com", + email: "MinyardG@43da9c69baa14266b4c8812eff59c738.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden,dc=com", + email: "TimleckT@26786d0f68384beeae2a7df6b6635e8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adelice Fishman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Adelice Fishman,ou=Product Development,dc=bitwarden,dc=com", + email: "FishmanA@0b715661798e487f9f545ca818a81f7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden,dc=com", + email: "CiochonT@6fe854deca574173bc8de7c35ad137c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden,dc=com", + email: "CusatoS@06ca177f7c6b4c2ab8f07911dfc0cb3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden,dc=com", + email: "GobeliM@392a4a6a368341beb07fcc7da7744c10.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devinne Kellum,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Devinne Kellum,ou=Administrative,dc=bitwarden,dc=com", + email: "KellumD@5214956f0ee84ad493b8defdd90a23da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Breena Telco,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Breena Telco,ou=Product Development,dc=bitwarden,dc=com", + email: "TelcoB@ecf3a96f00b043e2b4c8c3e398a40978.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tianbao Gerlich,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tianbao Gerlich,ou=Management,dc=bitwarden,dc=com", + email: "GerlichT@b156fd7640954c1b9e8fe3eb48376a55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden,dc=com", + email: "LightfoG@e6ab02c53a3c4216ba5b75ac65120e12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden,dc=com", + email: "ThornbeL@3badeafafe3b4639b92d03c5b1235944.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lana Keates,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lana Keates,ou=Administrative,dc=bitwarden,dc=com", + email: "KeatesL@bce67af47de54c1abf524bc004ae2e2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veena Richards,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Veena Richards,ou=Human Resources,dc=bitwarden,dc=com", + email: "RichardV@7719bdff14bf4e9fa26a2dfe09ac0f3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charin Clocklab,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Charin Clocklab,ou=Human Resources,dc=bitwarden,dc=com", + email: "ClocklaC@3905d18a9f18484ba7305c447e951282.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kollen Fenwick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kollen Fenwick,ou=Management,dc=bitwarden,dc=com", + email: "FenwickK@f4611bb6000b48cf9a5a0c6ff63070e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucille Orol,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lucille Orol,ou=Management,dc=bitwarden,dc=com", + email: "OrolL@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maier Bobar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maier Bobar,ou=Product Testing,dc=bitwarden,dc=com", + email: "BobarM@b39d8f666f1848e6abb69d85d224a354.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dori Garwood,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dori Garwood,ou=Administrative,dc=bitwarden,dc=com", + email: "GarwoodD@81e1c04932074375850663ac7b5d1387.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gussi Horak,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gussi Horak,ou=Management,dc=bitwarden,dc=com", + email: "HorakG@d65cebe6024b47459c5e0ad8f6a8a5c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marillin Boroski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marillin Boroski,ou=Administrative,dc=bitwarden,dc=com", + email: "BoroskiM@8664d2779faf46baad47e305d363adc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden,dc=com", + email: "LundhilK@e7504ea4712040488444ef96484ed4da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noelyn Hinkle,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Noelyn Hinkle,ou=Peons,dc=bitwarden,dc=com", + email: "HinkleN@3efbea2d01d34d828998e7b903e8331e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden,dc=com", + email: "WegrowiD@3ec760605c684f74be32825b3ebfaaaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erlene Schirmer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Erlene Schirmer,ou=Management,dc=bitwarden,dc=com", + email: "SchirmeE@e0c1b544468b4b8ea7c122f613b28724.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden,dc=com", + email: "McGonigF@25d2cd968a404f8ab3144ef7402e2e12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Binh Hoagland,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Binh Hoagland,ou=Peons,dc=bitwarden,dc=com", + email: "HoaglanB@6c33f97ba18845049fcf33d5c689185e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aviva McIsaac,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Aviva McIsaac,ou=Administrative,dc=bitwarden,dc=com", + email: "McIsaacA@b2d36917909a45fd9de4c6c83faf6196.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noami Cinicolo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Noami Cinicolo,ou=Peons,dc=bitwarden,dc=com", + email: "CinicolN@cd70627629114669966294343a84f460.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yukuo Wolford,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Yukuo Wolford,ou=Administrative,dc=bitwarden,dc=com", + email: "WolfordY@cbda3412be124725a29716dcee2b4b0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amalea Kesler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Amalea Kesler,ou=Janitorial,dc=bitwarden,dc=com", + email: "KeslerA@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyril Inglis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cyril Inglis,ou=Payroll,dc=bitwarden,dc=com", + email: "InglisC@2e3c1feccfe647baaed9b76e554413c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ladan Schutz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ladan Schutz,ou=Administrative,dc=bitwarden,dc=com", + email: "SchutzL@3ee35d919ef5410b9a742e5fe9487a11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bob Erbach,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bob Erbach,ou=Human Resources,dc=bitwarden,dc=com", + email: "ErbachB@2257b27ac7544235a333809d99a81f31.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hideki Fobert,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hideki Fobert,ou=Management,dc=bitwarden,dc=com", + email: "FobertH@dabb673b74534388bb1466a7f0fed6b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koral Bilton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Koral Bilton,ou=Peons,dc=bitwarden,dc=com", + email: "BiltonK@6a1a5eea63134321b540021379837737.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adriane Denike,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Adriane Denike,ou=Human Resources,dc=bitwarden,dc=com", + email: "DenikeA@7a434719bc114db3972a25b2d060ed01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ayako McCormick,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ayako McCormick,ou=Human Resources,dc=bitwarden,dc=com", + email: "McCormiA@1c56caf50dea44adacb785f044d171d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renell Kales,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Renell Kales,ou=Human Resources,dc=bitwarden,dc=com", + email: "KalesR@9d6eea632d564a3387d6cca7f5f27cee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden,dc=com", + email: "SyssuppA@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brennan Wolter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Brennan Wolter,ou=Product Development,dc=bitwarden,dc=com", + email: "WolterB@0c8d3d5d36af4ce7b5e4cfaf2e7114b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariya Wesselow,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mariya Wesselow,ou=Payroll,dc=bitwarden,dc=com", + email: "WesseloM@38084e0586a041acbbdb2c1dfb35d2bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roe Kathie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roe Kathie,ou=Product Development,dc=bitwarden,dc=com", + email: "KathieR@b6b1bf8d77e842a3bc1d1dfc536f2c93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rici Sobel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rici Sobel,ou=Peons,dc=bitwarden,dc=com", + email: "SobelR@8f9774ff98184bb9b97541409e8279a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eladio Malek,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eladio Malek,ou=Product Testing,dc=bitwarden,dc=com", + email: "MalekE@a327e7a9db0a40bba24a9943db49f75e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siew Dunajski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Siew Dunajski,ou=Peons,dc=bitwarden,dc=com", + email: "DunajskS@5c0f96a3078844a4801dba9a3ab9ce0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosalie Feild,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosalie Feild,ou=Peons,dc=bitwarden,dc=com", + email: "FeildR@c2ddaecf94964357886149e7833e3267.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karyl Scarrow,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karyl Scarrow,ou=Management,dc=bitwarden,dc=com", + email: "ScarrowK@9c2e6c9cd4a84de798c45d0f7e513159.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden,dc=com", + email: "RafflinI@289c2891b86d472eb2e530ea709a709c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hoog Fielden,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hoog Fielden,ou=Administrative,dc=bitwarden,dc=com", + email: "FieldenH@132c49195697451c98a0a564a1ead019.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fredericka Corbett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fredericka Corbett,ou=Payroll,dc=bitwarden,dc=com", + email: "CorbettF@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mabelle Bondurant,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mabelle Bondurant,ou=Management,dc=bitwarden,dc=com", + email: "BonduraM@81e6fd93e0bf4f1694c27f343181e2cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zafar McCarron,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zafar McCarron,ou=Management,dc=bitwarden,dc=com", + email: "McCarroZ@bc040a54299440bb80e6ade2d1ef97a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden,dc=com", + email: "PitcairW@dc3b17872e63439bbb080a2a2f978fc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malia Faletti,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Malia Faletti,ou=Payroll,dc=bitwarden,dc=com", + email: "FalettiM@6ab6d840c20844eead1fabc30b82fca2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nesta Mawji,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nesta Mawji,ou=Management,dc=bitwarden,dc=com", + email: "MawjiN@939e12c12d5d4580810a1d6603b95234.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden,dc=com", + email: "FieldsuA@ac51bd925c934bb88fa663b44a5d364d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden,dc=com", + email: "CotugnoS@01fa9120f2a14ce7afdb05e2fa84950c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liliana Vaillant,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Liliana Vaillant,ou=Payroll,dc=bitwarden,dc=com", + email: "VaillanL@fd092081b1e04b7d8cd5c22f860fda23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Den Arora,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Den Arora,ou=Administrative,dc=bitwarden,dc=com", + email: "AroraD@dbc4eab54b5f4d779246b56a41ba3d42.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosabel Parkins,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rosabel Parkins,ou=Product Development,dc=bitwarden,dc=com", + email: "ParkinsR@e0bce7062963483283b8f7e6ab9a5e11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edyta Moroz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Edyta Moroz,ou=Human Resources,dc=bitwarden,dc=com", + email: "MorozE@a82ac5cd9b7b4528b6af3599600d610a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=James Brunato,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=James Brunato,ou=Product Development,dc=bitwarden,dc=com", + email: "BrunatoJ@a30b452edd62411b874edf6881fc9b52.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Retha Miceli,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Retha Miceli,ou=Product Testing,dc=bitwarden,dc=com", + email: "MiceliR@4275578a22d3494fb8ea30d676dc9c77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden,dc=com", + email: "DiFalcoB@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emmie Hage,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emmie Hage,ou=Product Development,dc=bitwarden,dc=com", + email: "HageE@c109e0def6a3408dba244e442ff2c165.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Open Kozsukan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Open Kozsukan,ou=Human Resources,dc=bitwarden,dc=com", + email: "KozsukaO@d1b17deb97cd4cec88efa6e9b4d6e774.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crystal Dommety,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Crystal Dommety,ou=Product Testing,dc=bitwarden,dc=com", + email: "DommetyC@b2f3aa04c0ef4b03a42b0509b9df028c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden,dc=com", + email: "VanLateA@795d165ac426423b9759f469242c1c41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lindsey Coxall,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lindsey Coxall,ou=Product Development,dc=bitwarden,dc=com", + email: "CoxallL@7ed78fa65633416c973b406fcda1b087.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morgen Theoret,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Morgen Theoret,ou=Management,dc=bitwarden,dc=com", + email: "TheoretM@dcdbaaadaaee46828eda807cdf13cfd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden,dc=com", + email: "HincheyC@06ae8344cdf64f67b4eccb16dbf6b4a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anallise Golas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anallise Golas,ou=Human Resources,dc=bitwarden,dc=com", + email: "GolasA@cb658de379fe4207855897a811933c01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emad Sztein,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Emad Sztein,ou=Janitorial,dc=bitwarden,dc=com", + email: "SzteinE@708a672c33064628b91c3dd2fa37a575.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchlageT@784a879fa47d45e28a6db940d17f13d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marianne Makarenko,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marianne Makarenko,ou=Payroll,dc=bitwarden,dc=com", + email: "MakarenM@296a8499fb454ab5ab80945b9f63d6db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anda Lytle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anda Lytle,ou=Management,dc=bitwarden,dc=com", + email: "LytleA@b2ea217e485947069435a94bbac69038.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anneliese Hanser,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anneliese Hanser,ou=Product Development,dc=bitwarden,dc=com", + email: "HanserA@e6469211170045b582fc8ba959023885.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herb Gagnon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Herb Gagnon,ou=Peons,dc=bitwarden,dc=com", + email: "GagnonH@dbfb37190cec481f85ffb172616576b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isabella Conroy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Isabella Conroy,ou=Payroll,dc=bitwarden,dc=com", + email: "ConroyI@bedabc2584d54b45a84df472911e0618.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandon Menaker,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brandon Menaker,ou=Janitorial,dc=bitwarden,dc=com", + email: "MenakerB@f22b1e0b52f04f96b88d6fd9a1b75a51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mame Sanford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mame Sanford,ou=Human Resources,dc=bitwarden,dc=com", + email: "SanfordM@1bd9378f4faa43eeb60412b52d7ba309.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bea Aloi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bea Aloi,ou=Peons,dc=bitwarden,dc=com", + email: "AloiB@634978d04fca41d6af5289220bc42474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sylvia Alink,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sylvia Alink,ou=Management,dc=bitwarden,dc=com", + email: "AlinkS@a788cde9cf67461c89ae1bce3d05e3df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mora McGovern,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mora McGovern,ou=Human Resources,dc=bitwarden,dc=com", + email: "McGoverM@cf949ad46d1d4454911d4e2468d96da8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiphani Lieure,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tiphani Lieure,ou=Administrative,dc=bitwarden,dc=com", + email: "LieureT@dae020ec31d14d5190cd1eb64ded6424.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Consolata Bejar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Consolata Bejar,ou=Peons,dc=bitwarden,dc=com", + email: "BejarC@b8b19224acee46229ad2985e549b9721.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winnie Jensenworth,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Winnie Jensenworth,ou=Management,dc=bitwarden,dc=com", + email: "JensenwW@3e500286762446ec8a3697b2944efa12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZelenkaM@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Takashi Lamirande,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Takashi Lamirande,ou=Product Development,dc=bitwarden,dc=com", + email: "LamiranT@1ae520db2b4049958bea389114d0192d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden,dc=com", + email: "PapeK@01c459dd18154d91bb999b9b97f18487.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosamund Serack,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rosamund Serack,ou=Payroll,dc=bitwarden,dc=com", + email: "SerackR@bf2f61fe09a540bebb83fd50294209be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", + email: "NagenthM@43e074754773490d9b66c094be93c694.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natalee Keitel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Natalee Keitel,ou=Human Resources,dc=bitwarden,dc=com", + email: "KeitelN@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desiree Conde,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Desiree Conde,ou=Peons,dc=bitwarden,dc=com", + email: "CondeD@76f6104d33de482eb35b100eb7033678.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clyde Kamal,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Clyde Kamal,ou=Human Resources,dc=bitwarden,dc=com", + email: "KamalC@ae9e40f26a5947a6a794749db94a6421.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shana Mulvie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shana Mulvie,ou=Management,dc=bitwarden,dc=com", + email: "MulvieS@a2c9df9a4cd24389b4a0116cc38b3328.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PeyKee Rios,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=PeyKee Rios,ou=Management,dc=bitwarden,dc=com", + email: "RiosP@8fd45f1616e84409af12cbcbd209c8d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Costas Szabo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Costas Szabo,ou=Product Development,dc=bitwarden,dc=com", + email: "SzaboC@a6010d4cf59f403c9d7f9d2a99b954e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden,dc=com", + email: "GaudetMW@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Su Organization,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Su Organization,ou=Management,dc=bitwarden,dc=com", + email: "OrganizS@85b8d92598e444df802ef3bb350fde3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden,dc=com", + email: "LonnmanB@0c57744da3fe41ddac31ce862540bae7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norean Brien,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Norean Brien,ou=Administrative,dc=bitwarden,dc=com", + email: "BrienN@6350670014bc4ca5b2d98b891ee95b9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiena Clapham,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tiena Clapham,ou=Management,dc=bitwarden,dc=com", + email: "ClaphamT@519077386b7144648a1af65801ba340e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden,dc=com", + email: "LavioleO@0bf16d212dca48d58b5ba2e7e2475978.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden,dc=com", + email: "MeltonK@7bb52bb06b244b41a3cd78dfcc311e5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden,dc=com", + email: "AthwalG@5fcb2729c2db4bbc94757b6ad2c7a275.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jade Jims,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jade Jims,ou=Management,dc=bitwarden,dc=com", + email: "JimsJ@0a6ccfe4eb2e49debe0647e11b1f99cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramin McKeen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ramin McKeen,ou=Human Resources,dc=bitwarden,dc=com", + email: "McKeenR@866f4a15cdb24c75a67bad9f00bdce9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden,dc=com", + email: "BryentoS@25cd954a684b4b73a5dc6672df8e79ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden,dc=com", + email: "SchirtzQ@3703481ba2f54b52ba43477946921782.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steffie Bohn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Steffie Bohn,ou=Janitorial,dc=bitwarden,dc=com", + email: "BohnS@50c897b07621433593f9bdfb9cb664c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rachael DuBois,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rachael DuBois,ou=Payroll,dc=bitwarden,dc=com", + email: "DuBoisR@d5e1ce2fb74a43bfad3a9a3884b1f907.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kore Mayhugh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kore Mayhugh,ou=Product Development,dc=bitwarden,dc=com", + email: "MayhughK@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eleen Moledina,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eleen Moledina,ou=Administrative,dc=bitwarden,dc=com", + email: "MoledinE@4bba23a995da4ee98c2c53bd5fa682de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaminsky Meany,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kaminsky Meany,ou=Product Development,dc=bitwarden,dc=com", + email: "MeanyK@7aef78da99704981a62a4bf14dcfd6be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden,dc=com", + email: "AdminmtH@087a871812bc441ea91b6630e3a79d9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pammi Overton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pammi Overton,ou=Human Resources,dc=bitwarden,dc=com", + email: "OvertonP@7f63e51441fc4e1aab1257e0bb185e66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sinh Abbott,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sinh Abbott,ou=Peons,dc=bitwarden,dc=com", + email: "AbbottS@27847b451a7948ddad5e776a210cd769.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LouAnn Gaines,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=LouAnn Gaines,ou=Product Development,dc=bitwarden,dc=com", + email: "GainesL@10343387398a4a139abd0771818be0c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arabella Shamblin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Arabella Shamblin,ou=Administrative,dc=bitwarden,dc=com", + email: "ShambliA@6fd2244f1eb4433c9c4032eadff24678.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden,dc=com", + email: "McFarlaL@b5110eee63164b03a1156fbe465ff053.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cammie Erbach,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cammie Erbach,ou=Management,dc=bitwarden,dc=com", + email: "ErbachC@703805ed33844be785223bfd3a5cb030.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden,dc=com", + email: "LeCouteE@86d24a798dce4653a3b75c56ae675864.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dayton Baughan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dayton Baughan,ou=Peons,dc=bitwarden,dc=com", + email: "BaughanD@518638c8b3ee480098591bd6806de72a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meggi Rozier,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Meggi Rozier,ou=Product Testing,dc=bitwarden,dc=com", + email: "RozierM@dfaff98f73b34c5995272b067ac045a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Romulus Zuk,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Romulus Zuk,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZukR@e3f89583f77e4884a1d8183b4faa15a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marce Tiller,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marce Tiller,ou=Payroll,dc=bitwarden,dc=com", + email: "TillerM@92160f75073741b5a487392a12009a3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden,dc=com", + email: "EveleigO@fa687144921b436e82405266f480b00e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patt Brennand,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Patt Brennand,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrennanP@c41f8f7aea354718b6ea3277359c3684.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden,dc=com", + email: "NoujeimF@f1c1878671bd497c916d8d6aa3e192fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claus Depew,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Claus Depew,ou=Janitorial,dc=bitwarden,dc=com", + email: "DepewC@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vahe Kerwin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vahe Kerwin,ou=Peons,dc=bitwarden,dc=com", + email: "KerwinV@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pauletta Crocker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pauletta Crocker,ou=Peons,dc=bitwarden,dc=com", + email: "CrockerP@cd73f05f4ce24da39ba208c39afe4699.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden,dc=com", + email: "ZaretskR@29091675735e43659fad673363e0d6e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sterling Shostak,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sterling Shostak,ou=Payroll,dc=bitwarden,dc=com", + email: "ShostakS@5e804d1ca9ae4836a819c9a675bca682.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kartik Rogge,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kartik Rogge,ou=Product Development,dc=bitwarden,dc=com", + email: "RoggeK@ed2fd27c6a094387b519147346c69de2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden,dc=com", + email: "DecleirS@e960715ae7d94ea9beaf0d6200cce087.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fei Reich,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fei Reich,ou=Payroll,dc=bitwarden,dc=com", + email: "ReichF@1df73cc203344a569c1b4737122f78a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leyla Etten,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leyla Etten,ou=Administrative,dc=bitwarden,dc=com", + email: "EttenL@c57373b0d5374d00a3d6688cc686509b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sattar Sergent,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sattar Sergent,ou=Product Development,dc=bitwarden,dc=com", + email: "SergentS@d44f5cb4445645618f46dbaf398e001b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kare Hochberger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kare Hochberger,ou=Human Resources,dc=bitwarden,dc=com", + email: "HochberK@9bffc8dac39c4d7a8d074f9c52e78d4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilly Kuykendall,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lilly Kuykendall,ou=Management,dc=bitwarden,dc=com", + email: "KuykendL@ed036fc76d5d414c9c14953da4ed7bc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rachele Fullum,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rachele Fullum,ou=Human Resources,dc=bitwarden,dc=com", + email: "FullumR@5d439b9e1cae4e6b90829e7c5b63fe41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madella Forslund,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Madella Forslund,ou=Product Development,dc=bitwarden,dc=com", + email: "ForslunM@fc156685829a4314bfd89bdd05aebbdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden,dc=com", + email: "NahabedS@a8f7a07ce7504ae4bfde0cfae682a40b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janio Fussell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Janio Fussell,ou=Janitorial,dc=bitwarden,dc=com", + email: "FussellJ@203f595734f14fd4a19d2bdd33a37227.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lacy Carr,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lacy Carr,ou=Payroll,dc=bitwarden,dc=com", + email: "CarrL@a4017bf573f740adae75dd44a602bed4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erinna Odden,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Erinna Odden,ou=Peons,dc=bitwarden,dc=com", + email: "OddenE@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bertrand Devgon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bertrand Devgon,ou=Administrative,dc=bitwarden,dc=com", + email: "DevgonB@802b05236c97484db9a6d34278cbb7c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ahmet Achille,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ahmet Achille,ou=Product Testing,dc=bitwarden,dc=com", + email: "AchilleA@ad4fa0aaba714bddbb75e4f5cdfd0a13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heike Jenner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Heike Jenner,ou=Human Resources,dc=bitwarden,dc=com", + email: "JennerH@a58e2e7328b140e6b9088aee54dad46e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynde Staats,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lynde Staats,ou=Janitorial,dc=bitwarden,dc=com", + email: "StaatsL@5ed725aaaff54f8794312c34ad60e5f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estele Kolappa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Estele Kolappa,ou=Payroll,dc=bitwarden,dc=com", + email: "KolappaE@0565c5e96dfc4577b9a5d67dbae6882a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oriana Hughes,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Oriana Hughes,ou=Janitorial,dc=bitwarden,dc=com", + email: "HughesO@e2397feadabe41139e01dea5a3231c3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucila Rand,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lucila Rand,ou=Payroll,dc=bitwarden,dc=com", + email: "RandL@dccd68e9261a427bb9a86d2b2c52f7a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emile Bellis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Emile Bellis,ou=Product Testing,dc=bitwarden,dc=com", + email: "BellisE@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LouisPhilippe Hann,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=LouisPhilippe Hann,ou=Management,dc=bitwarden,dc=com", + email: "HannL@9b8cc74fde31459a93e65b46f65c8533.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franka Frey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Franka Frey,ou=Administrative,dc=bitwarden,dc=com", + email: "FreyF@5319f4b5e8194323b5cce9067279026f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jillian Unger,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jillian Unger,ou=Product Testing,dc=bitwarden,dc=com", + email: "UngerJ@8f055851cf2e446194b128d0faf47339.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mathilda Diederichs,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mathilda Diederichs,ou=Management,dc=bitwarden,dc=com", + email: "DiederiM@ceea5b3f3fff489eb3469f368fd35271.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susanna Vlahos,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Susanna Vlahos,ou=Product Development,dc=bitwarden,dc=com", + email: "VlahosS@8a8d1631964049f182939e971c150026.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", + email: "AbbatanH@5ecc6915b8f34c488bb751101ec4f57f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aila Henninger,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aila Henninger,ou=Product Testing,dc=bitwarden,dc=com", + email: "HenningA@9f0054716a414ce084f33e268195dbbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettye Guth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bettye Guth,ou=Janitorial,dc=bitwarden,dc=com", + email: "GuthB@36d678241c3f4fb4beaa7d9336f3b523.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Livvie Benwell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Livvie Benwell,ou=Peons,dc=bitwarden,dc=com", + email: "BenwellL@c65f075234ae4ca0ba28441c293a5096.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden,dc=com", + email: "GonsalvP@6c6664d2385d43519ebb52ff761aba92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melek Nagendra,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melek Nagendra,ou=Janitorial,dc=bitwarden,dc=com", + email: "NagendrM@7a1816127b6749e79a6ce3a8a34ebdb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden,dc=com", + email: "McCorquG@9c4f9eaf4eea42848e2ed65a10014c07.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lesli Tobias,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lesli Tobias,ou=Human Resources,dc=bitwarden,dc=com", + email: "TobiasL@d90d5ffcbe644d5f8785140dc4df2905.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greta Schecter,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Greta Schecter,ou=Management,dc=bitwarden,dc=com", + email: "SchecteG@75a7fc9d939e4f5bbf93de65e9cc63e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrodfueD@f920b917085d494384c9f6cf31731d98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden,dc=com", + email: "KhadbaiG@b26dd8079ae74537bc6512a712066520.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nevil Padgett,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nevil Padgett,ou=Administrative,dc=bitwarden,dc=com", + email: "PadgettN@8ac9cfdbb2124b0e9c0547e5d43a4e68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bianka Cooke,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bianka Cooke,ou=Management,dc=bitwarden,dc=com", + email: "CookeB@df66a35b0d0f4b4c94777a0a93eec996.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden,dc=com", + email: "RybczynI@36bf168f83f54de6b68d81c3236caec7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjan Lyman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marjan Lyman,ou=Administrative,dc=bitwarden,dc=com", + email: "LymanM@3bd0291e8cff49548689d7d941f27f3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurora Bayno,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aurora Bayno,ou=Peons,dc=bitwarden,dc=com", + email: "BaynoA@0ad766b055ac4f6f8498d26e88dc0654.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Housseini Dominguez,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Housseini Dominguez,ou=Administrative,dc=bitwarden,dc=com", + email: "DominguH@1702c7050ede4a30a493b614c6f96d2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arnie Ulrich,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Arnie Ulrich,ou=Administrative,dc=bitwarden,dc=com", + email: "UlrichA@abe51797f5124683a93236751a4e6fc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amrik Carlock,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Amrik Carlock,ou=Administrative,dc=bitwarden,dc=com", + email: "CarlockA@431bd1e3a1554ddda35b23b44d614abd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saundra Crapco,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Saundra Crapco,ou=Product Testing,dc=bitwarden,dc=com", + email: "CrapcoS@a38a54d93a9a4ec1a621a87e5a204d4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shashi Ketcheson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shashi Ketcheson,ou=Management,dc=bitwarden,dc=com", + email: "KetchesS@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maidlab McMillion,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Maidlab McMillion,ou=Peons,dc=bitwarden,dc=com", + email: "McMilliM@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cloe Marquart,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cloe Marquart,ou=Payroll,dc=bitwarden,dc=com", + email: "MarquarC@27d8549892a84dfab24d317e0ea5c6f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roselle Donald,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Roselle Donald,ou=Human Resources,dc=bitwarden,dc=com", + email: "DonaldR@98ae5dd6e4ab44b5ae67cbaf5772c205.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chander Roussy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chander Roussy,ou=Product Testing,dc=bitwarden,dc=com", + email: "RoussyC@eb78b63b75ba4f27a8837a49801a5d87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sunny Rollin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sunny Rollin,ou=Product Development,dc=bitwarden,dc=com", + email: "RollinS@1bb0accf179c40f18fe1bf2f50f413b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden,dc=com", + email: "WroblewG@823588f41bb949d9803b8c0afb801dd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sam Meldrum,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sam Meldrum,ou=Human Resources,dc=bitwarden,dc=com", + email: "MeldrumS@003f2218b9fd4a96bb2b10368a1c04ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kitson Sture,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kitson Sture,ou=Management,dc=bitwarden,dc=com", + email: "StureK@374ee8e2d55948f4b3d3959e5c870fde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janot Breglec,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Janot Breglec,ou=Human Resources,dc=bitwarden,dc=com", + email: "BreglecJ@e915bf6c406f46f5ac163116df6fd9b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaye Rothwell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gaye Rothwell,ou=Administrative,dc=bitwarden,dc=com", + email: "RothwelG@83a3c9a6bd4547dd81cf1dad18f71e7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moe Schumann,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Moe Schumann,ou=Janitorial,dc=bitwarden,dc=com", + email: "SchumanM@fc8a319bf73b4066b064fbad43614c48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarene Keifer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sarene Keifer,ou=Product Development,dc=bitwarden,dc=com", + email: "KeiferS@28da466dba2a49fabba592c4c805fca1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden,dc=com", + email: "LimbaugA@d843134b5a6249eda76a289f48094398.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janette Npi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Janette Npi,ou=Payroll,dc=bitwarden,dc=com", + email: "NpiJ@7e68fcf7d1c0481096800d5b87b7212d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danette Galloway,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Danette Galloway,ou=Peons,dc=bitwarden,dc=com", + email: "GallowaD@9dd46e72015c4014b5f15189a14009e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorianne Mullett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lorianne Mullett,ou=Product Development,dc=bitwarden,dc=com", + email: "MullettL@8970f66e3c7349128b71099e5c1cee90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isabeau Wippel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Isabeau Wippel,ou=Administrative,dc=bitwarden,dc=com", + email: "WippelI@948682def8064e8b984ddc8e87e5fdee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassi McRae,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cassi McRae,ou=Human Resources,dc=bitwarden,dc=com", + email: "McRaeC@0241a0d3cbf64f09a3380b82cf315d15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WaiLeung Marples,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=WaiLeung Marples,ou=Product Development,dc=bitwarden,dc=com", + email: "MarplesW@53b43fb5d4e34daa86eaa9d6dd2bd917.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joceline Seifried,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Joceline Seifried,ou=Payroll,dc=bitwarden,dc=com", + email: "SeifrieJ@911b346497874da4b48522c31ad5633c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bill Coldwell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bill Coldwell,ou=Payroll,dc=bitwarden,dc=com", + email: "ColdwelB@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden,dc=com", + email: "deMontlM@f115ded519524610ab74393c6ce8cdfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlo Belich,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marlo Belich,ou=Product Development,dc=bitwarden,dc=com", + email: "BelichM@e8760cb58ba74207a1122bd21950ad46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden,dc=com", + email: "MarkmeyN@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prams StOnge,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Prams StOnge,ou=Peons,dc=bitwarden,dc=com", + email: "StOngeP@004a67613be24dd1bb7727566082246b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eudora Dunstan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eudora Dunstan,ou=Management,dc=bitwarden,dc=com", + email: "DunstanE@700aa0e6ff224df9962657c1adbdf0d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thor Ritz,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Thor Ritz,ou=Management,dc=bitwarden,dc=com", + email: "RitzT@7ecd6e3be3c34590b3634684f3566a34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manhatten Isert,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Manhatten Isert,ou=Product Development,dc=bitwarden,dc=com", + email: "IsertM@1b075a91584f496088ea7442a5922cef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farra Garee,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Farra Garee,ou=Payroll,dc=bitwarden,dc=com", + email: "GareeF@78e66db4daf244269be3e0f7fc49db85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arun Xpm,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Arun Xpm,ou=Human Resources,dc=bitwarden,dc=com", + email: "XpmA@412a31e8728a4c5a8ecbcd1736c486e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden,dc=com", + email: "AlbrittS@2ec15169d3824bb991e5ec642147de0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alida Ausley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Alida Ausley,ou=Product Testing,dc=bitwarden,dc=com", + email: "AusleyA@f8ab716c26494879b2465829da010f5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden,dc=com", + email: "KraehenJ@6131da53a3b54b04a03670080f19a44f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trina Okon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Trina Okon,ou=Payroll,dc=bitwarden,dc=com", + email: "OkonT@f253a86f6ff647d3aa19776207af5865.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kania Harter,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kania Harter,ou=Payroll,dc=bitwarden,dc=com", + email: "HarterK@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Samantha Gantt,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Samantha Gantt,ou=Product Development,dc=bitwarden,dc=com", + email: "GanttS@57aded8fb98d4e528d1fb70b95b777c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akin Houde,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Akin Houde,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoudeA@8df41f7f77284af88f6f74347b022fef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vince Herscovici,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vince Herscovici,ou=Peons,dc=bitwarden,dc=com", + email: "HerscovV@2cb925e97f384833b8feb793c0daf990.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Issy Bachecongi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Issy Bachecongi,ou=Administrative,dc=bitwarden,dc=com", + email: "BachecoI@ebb963e9a1d74047879876a5672477e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden,dc=com", + email: "NethersD@5e4d473173474c608ac03e0447167cc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden,dc=com", + email: "PietrzaR@2169be3657ca457db7de27d69c3db365.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden,dc=com", + email: "NTPADMIF@ca5cfe9e2bd34d4daa1788a54ae9670d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seelan Licandro,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Seelan Licandro,ou=Human Resources,dc=bitwarden,dc=com", + email: "LicandrS@3ba4a4ede18c4c8db3f772d09fc2a81c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden,dc=com", + email: "OwsiakA@94a04369a1f7454aa0b8a26e89e03c22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hqs Dipper,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hqs Dipper,ou=Janitorial,dc=bitwarden,dc=com", + email: "DipperH@6d4cfa9f4f814c42be18efd66cfafd41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sidone Ricks,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sidone Ricks,ou=Janitorial,dc=bitwarden,dc=com", + email: "RicksS@d9b9bb6f2d1e411b9f5df67c724690de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meghan Wai,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Meghan Wai,ou=Product Development,dc=bitwarden,dc=com", + email: "WaiM@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koen MacInnes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Koen MacInnes,ou=Human Resources,dc=bitwarden,dc=com", + email: "MacInneK@7ac19f1f7e20467f8c026cc1031d7f95.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden,dc=com", + email: "BoddeveE@deb24c82a57b4b4ba4fd2ff9dfbbb9d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doralin Worthington,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Doralin Worthington,ou=Management,dc=bitwarden,dc=com", + email: "WorthinD@3603f9fb94e045a59b767f557fde78c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden,dc=com", + email: "DalsielL@f6d7bbdd5dca40ffa7d958eea386a355.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loris Godfrey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Loris Godfrey,ou=Product Testing,dc=bitwarden,dc=com", + email: "GodfreyL@612e506d26154bfda9f499632b50c09f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monroe Halpin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Monroe Halpin,ou=Management,dc=bitwarden,dc=com", + email: "HalpinM@9a472823c68140e2a8970835c083aba5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerianna Arnon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gerianna Arnon,ou=Administrative,dc=bitwarden,dc=com", + email: "ArnonG@b2ae4069e86943268e686f6fe06ee4a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden,dc=com", + email: "DIngianE@5c5bca41c1084c1a8e475f6b76094495.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hazem Pien,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hazem Pien,ou=Product Testing,dc=bitwarden,dc=com", + email: "PienH@553ab4a4d0034a748d4563ad14308038.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristofaro Dysart,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cristofaro Dysart,ou=Peons,dc=bitwarden,dc=com", + email: "DysartC@74f64cadc50c45bab4d4e7ff4e9f7687.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margot Muzio,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Margot Muzio,ou=Peons,dc=bitwarden,dc=com", + email: "MuzioM@65efa32362a041c6bf7a11231598ac71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Makary Wagers,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Makary Wagers,ou=Peons,dc=bitwarden,dc=com", + email: "WagersM@ab6b4dd3e6a9481bb932dc2b39ad4c1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yudy Sandford,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yudy Sandford,ou=Payroll,dc=bitwarden,dc=com", + email: "SandforY@d5cc15f6bb6b4357bd0ce84100b284f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baruk Junaid,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Baruk Junaid,ou=Peons,dc=bitwarden,dc=com", + email: "JunaidB@9f557b7cfb384a169129c691f7b5eeed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morganne Grimmell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Morganne Grimmell,ou=Management,dc=bitwarden,dc=com", + email: "GrimmelM@477794cc09b1403eae274b941a7cdeff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evaleen Beine,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Evaleen Beine,ou=Product Testing,dc=bitwarden,dc=com", + email: "BeineE@58d52c34bc5a4b32a84addaebe6b1c8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yumi Mudry,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yumi Mudry,ou=Human Resources,dc=bitwarden,dc=com", + email: "MudryY@30ca0b4b2c6d4aff9d3ac9b5f46982e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salomi Heisler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Salomi Heisler,ou=Management,dc=bitwarden,dc=com", + email: "HeislerS@de69795c4c4c4284812c4db5353fa4eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trey ETAS,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Trey ETAS,ou=Product Testing,dc=bitwarden,dc=com", + email: "ETAST@d79e418348c94168b4dd89d46432d83f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden,dc=com", + email: "WishewaD@35193777bef64194b24098fc1b98f7ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Co Knighten,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Co Knighten,ou=Product Development,dc=bitwarden,dc=com", + email: "KnighteC@87dcc1359cb14e3b85fed9765ee13d91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gillie Rheaume,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gillie Rheaume,ou=Product Development,dc=bitwarden,dc=com", + email: "RheaumeG@7741374717804087bc8fc55c986de74b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden,dc=com", + email: "BenavidY@32037f3bd743420296270ff80da78e1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jamal Scotti,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jamal Scotti,ou=Product Development,dc=bitwarden,dc=com", + email: "ScottiJ@13b504a8a169451f93c28e40583299e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharri Lotz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sharri Lotz,ou=Product Development,dc=bitwarden,dc=com", + email: "LotzS@496d582fba1f48fead6391e894698c13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnella Loi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Agnella Loi,ou=Janitorial,dc=bitwarden,dc=com", + email: "LoiA@e1f896403d134dc18441efaefd89f914.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leno Henley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leno Henley,ou=Management,dc=bitwarden,dc=com", + email: "HenleyL@e29946cbb54948f9aec00f7a05eb0737.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden,dc=com", + email: "SzetoS@ef52200320a34601b7e10e8ff147afd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden,dc=com", + email: "DaceR@6caa5a9ac52c4d64b49fd033d3499ddc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden,dc=com", + email: "GregoriK@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elex Langer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elex Langer,ou=Peons,dc=bitwarden,dc=com", + email: "LangerE@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dwain Bielby,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dwain Bielby,ou=Product Development,dc=bitwarden,dc=com", + email: "BielbyD@0d89387630504e3d959bb5ff8f1b89ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden,dc=com", + email: "MannionT@995756bc696444e0925a45b2d907b2e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roy Terranova,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Roy Terranova,ou=Peons,dc=bitwarden,dc=com", + email: "TerranoR@57a6ba7501424a8abade55339f684e3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden,dc=com", + email: "FowlkesN@d40125293395457eaed2134155d04681.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vaughn Corlett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vaughn Corlett,ou=Peons,dc=bitwarden,dc=com", + email: "CorlettV@bb783944cdf1498cb4614b490b25cc0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gladys Helmy,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gladys Helmy,ou=Management,dc=bitwarden,dc=com", + email: "HelmyG@df40332a741445b7a8fa73b2a928c4b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bihari Mirek,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bihari Mirek,ou=Product Development,dc=bitwarden,dc=com", + email: "MirekB@3e044de8fdd14b83b9b0d85310545f1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden,dc=com", + email: "DewittB@fe07d129e5344ba9b03e2ffcc8db4597.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lissa Hernandez,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lissa Hernandez,ou=Administrative,dc=bitwarden,dc=com", + email: "HernandL@89e4e0e6aba5481cb5a471d8c425e9ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden,dc=com", + email: "ShillinT@a33324bfbeba45c9aed68650670aad46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden,dc=com", + email: "AlfredD@6f609804b5454243a8f49419cf4fa238.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Torre Monahan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Torre Monahan,ou=Product Development,dc=bitwarden,dc=com", + email: "MonahanT@70748fe689e2445ebbe07527f7179bb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maia Arellano,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maia Arellano,ou=Janitorial,dc=bitwarden,dc=com", + email: "ArellanM@f397e344461e4f9a88c49c97eb320637.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gina Hattar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gina Hattar,ou=Management,dc=bitwarden,dc=com", + email: "HattarG@6d6628d9da624cadbb049fbfa6bdf2da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dena Trottier,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dena Trottier,ou=Peons,dc=bitwarden,dc=com", + email: "TrottieD@f4b8173477b44cefa65ae7313aaf8ebf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vmchange Cavan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vmchange Cavan,ou=Administrative,dc=bitwarden,dc=com", + email: "CavanV@1eb2456e111c4bd988f50cdf3b94db14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorie Brickey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lorie Brickey,ou=Product Development,dc=bitwarden,dc=com", + email: "BrickeyL@34a1d693e4fb4c4b93e2ff11c22319d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardie Dix,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ardie Dix,ou=Peons,dc=bitwarden,dc=com", + email: "DixA@9572e6f979bb4b11856883fbf4267c29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maybelle Augustus,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maybelle Augustus,ou=Product Development,dc=bitwarden,dc=com", + email: "AugustuM@e822f80dc4b84873b9cd6725909b316b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Engracia Materkowski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Engracia Materkowski,ou=Payroll,dc=bitwarden,dc=com", + email: "MaterkoE@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacqueline Durant,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jacqueline Durant,ou=Payroll,dc=bitwarden,dc=com", + email: "DurantJ@fd4b1798fa4b4adcbc4df665d1546e59.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charly Klapper,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Charly Klapper,ou=Human Resources,dc=bitwarden,dc=com", + email: "KlapperC@6c41c4f512984d04a91eed45d8e765ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elpida Doerr,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elpida Doerr,ou=Payroll,dc=bitwarden,dc=com", + email: "DoerrE@4310e2be3a3a4f5d87f9af032cb0053b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bethena Parniani,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bethena Parniani,ou=Human Resources,dc=bitwarden,dc=com", + email: "ParnianB@6deaeb16d80f44ffa2ca06dfc1f89c97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden,dc=com", + email: "VaillanA@544f7671c8074caba5e197489f1c082c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janka Macklem,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Janka Macklem,ou=Management,dc=bitwarden,dc=com", + email: "MacklemJ@194b01da4c0947188a08ceb5675d4f64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrtie Mc,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Myrtie Mc,ou=Administrative,dc=bitwarden,dc=com", + email: "McM@c91f0550b80f407f9309a7740af038d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", + email: "GonzaleE@6b1195b29ef347f9ab299fd5409ce2bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ludovika McKnight,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ludovika McKnight,ou=Product Development,dc=bitwarden,dc=com", + email: "McKnighL@b1a6b6a5513044a8a462e54235172118.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anil Cotuna,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anil Cotuna,ou=Management,dc=bitwarden,dc=com", + email: "CotunaA@d0ee722bb1a5461aa78c6da256abd9e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrile Wilson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Merrile Wilson,ou=Management,dc=bitwarden,dc=com", + email: "WilsonM@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zahara Ferree,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Zahara Ferree,ou=Administrative,dc=bitwarden,dc=com", + email: "FerreeZ@fc85f8e4436a4774ae1c7ec792457997.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryrose Sagan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Maryrose Sagan,ou=Peons,dc=bitwarden,dc=com", + email: "SaganM@78e9cef1d0e74415b642613eadf820dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Legra Binder,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Legra Binder,ou=Administrative,dc=bitwarden,dc=com", + email: "BinderL@16c9187062174be89c2c9f0c8fb48cf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ernaline Tierney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ernaline Tierney,ou=Product Development,dc=bitwarden,dc=com", + email: "TierneyE@7e23b8de808e4c8687b7d328cf2c1f4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seven Nicol,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Seven Nicol,ou=Product Testing,dc=bitwarden,dc=com", + email: "NicolS@3f7557160f794dbf9536e20aa95467b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeannine Forsythe,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jeannine Forsythe,ou=Peons,dc=bitwarden,dc=com", + email: "ForsythJ@a58f1d89c8df4bb585be88ea46688614.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilmon Taheri,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tilmon Taheri,ou=Administrative,dc=bitwarden,dc=com", + email: "TaheriT@8c0b7ef96d07487ba2923e77c73234f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Svr Krishnan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Svr Krishnan,ou=Janitorial,dc=bitwarden,dc=com", + email: "KrishnaS@36d678241c3f4fb4beaa7d9336f3b523.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niki Khurana,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Niki Khurana,ou=Product Development,dc=bitwarden,dc=com", + email: "KhuranaN@b034a4332db1440db9d21ffa224b40ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden,dc=com", + email: "SaikaleV@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duong Laux,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Duong Laux,ou=Human Resources,dc=bitwarden,dc=com", + email: "LauxD@6ad50b5570274446ac57cf22bb8d002a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vevay Isert,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vevay Isert,ou=Management,dc=bitwarden,dc=com", + email: "IsertV@761b142c7930458e927f8f3e0fb5672f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lonnie Visser,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lonnie Visser,ou=Management,dc=bitwarden,dc=com", + email: "VisserL@a67ff5b1ad97429ba599b05adf0b8c32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chungsik Choquette,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Chungsik Choquette,ou=Product Development,dc=bitwarden,dc=com", + email: "ChoquetC@683e25fc9db544c199938de64838b325.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalli Meilleur,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kalli Meilleur,ou=Administrative,dc=bitwarden,dc=com", + email: "MeilleuK@f48d7d3b63134ad1b2fb9b6ebafa3028.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merline Riggs,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Merline Riggs,ou=Product Development,dc=bitwarden,dc=com", + email: "RiggsM@baace83050b144e78a7deeac3e4a1a83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milka Parkes,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Milka Parkes,ou=Administrative,dc=bitwarden,dc=com", + email: "ParkesM@b0926f5fa5f345dab897ee36737c0cbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bakel Fisette,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bakel Fisette,ou=Management,dc=bitwarden,dc=com", + email: "FisetteB@78e39349ef7749648d2cb3e7b1e56508.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden,dc=com", + email: "SookdeoA@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiley Hester,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kiley Hester,ou=Product Testing,dc=bitwarden,dc=com", + email: "HesterK@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eydie Edgar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eydie Edgar,ou=Product Testing,dc=bitwarden,dc=com", + email: "EdgarE@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherwyn Monn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sherwyn Monn,ou=Administrative,dc=bitwarden,dc=com", + email: "MonnS@173d5ea897d34c6da6358f054024f707.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danna Hagenbuch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Danna Hagenbuch,ou=Management,dc=bitwarden,dc=com", + email: "HagenbuD@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flossi Davidson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Flossi Davidson,ou=Management,dc=bitwarden,dc=com", + email: "DavidsoF@7f720158632c42a398491b4d094f5558.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosy Bergmann,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rosy Bergmann,ou=Administrative,dc=bitwarden,dc=com", + email: "BergmanR@57edeceb332942988b2e62feed2c524a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden,dc=com", + email: "VanDykeR@07a219dc36ae49e5a7c3fca4d77987a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden,dc=com", + email: "LongfieH@40a22fdf1b874c29a422cf0d00644473.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden,dc=com", + email: "ThorsluC@3eb77d9e6bdc439197d45c120ada5eb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Larine Broca,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Larine Broca,ou=Peons,dc=bitwarden,dc=com", + email: "BrocaL@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden,dc=com", + email: "SandhuC@b521092c73d244d8bb078d1c52e80bae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Therine McCurdy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Therine McCurdy,ou=Janitorial,dc=bitwarden,dc=com", + email: "McCurdyT@6f2328709fbe4233b85bba3d4ce3d844.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarice Travers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Clarice Travers,ou=Payroll,dc=bitwarden,dc=com", + email: "TraversC@06521bdd507441e9a09de35a0e462c1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dacey Bedard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dacey Bedard,ou=Product Testing,dc=bitwarden,dc=com", + email: "BedardD@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lissa Barsky,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lissa Barsky,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarskyL@72d3ee658b6a43d28d374f5d8eed91ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lino Endrys,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lino Endrys,ou=Peons,dc=bitwarden,dc=com", + email: "EndrysL@fc250c767129499c871d245494e9d9b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fina WGA,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fina WGA,ou=Product Testing,dc=bitwarden,dc=com", + email: "WGAF@a4017bf573f740adae75dd44a602bed4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Munir Colton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Munir Colton,ou=Human Resources,dc=bitwarden,dc=com", + email: "ColtonM@0e3cc15d16b54ddeae75d206f48f1204.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marje Dallaire,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marje Dallaire,ou=Payroll,dc=bitwarden,dc=com", + email: "DallairM@b6643004ae7246a0a5c8bc0fc567f1b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farrah Meehan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Farrah Meehan,ou=Administrative,dc=bitwarden,dc=com", + email: "MeehanF@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilda Alsop,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tilda Alsop,ou=Peons,dc=bitwarden,dc=com", + email: "AlsopT@4ae1d64c9a5a4ca1a7356298a39877d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leni Janovich,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Leni Janovich,ou=Peons,dc=bitwarden,dc=com", + email: "JanovicL@7e56f35864a04d13abbef377d8dec333.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katrina Morreale,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Katrina Morreale,ou=Payroll,dc=bitwarden,dc=com", + email: "MorrealK@dde38d4cf79a43e6be6fc2e886efaf99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hinda Briante,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hinda Briante,ou=Payroll,dc=bitwarden,dc=com", + email: "BrianteH@4d239de3030746348f24ce6068a42829.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helli Frie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Helli Frie,ou=Human Resources,dc=bitwarden,dc=com", + email: "FrieH@ce4d0d0fb96d4c2eaa1d4595e57562a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renell Ulrich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Renell Ulrich,ou=Product Testing,dc=bitwarden,dc=com", + email: "UlrichR@d753a61915314cb8b467492897701efa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden,dc=com", + email: "EmdinSpR@f57569f7524f4479b4d43ec8c220c303.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moel Taralp,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Moel Taralp,ou=Human Resources,dc=bitwarden,dc=com", + email: "TaralpM@541a9a67add74942af05ec9661f08230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden,dc=com", + email: "HawryluE@7a76f51f9f0b406b9e567bf7dd0f00c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keeley Rok,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Keeley Rok,ou=Peons,dc=bitwarden,dc=com", + email: "RokK@1808029426c342b7ba28a7e8e39e2911.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Britta Melucci,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Britta Melucci,ou=Payroll,dc=bitwarden,dc=com", + email: "MelucciB@fa0b8cf1d3c34137bfd563ac76c1d5af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=StClair Farren,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=StClair Farren,ou=Product Development,dc=bitwarden,dc=com", + email: "FarrenS@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vino Papantonis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vino Papantonis,ou=Peons,dc=bitwarden,dc=com", + email: "PapantoV@ac22893bf0684aefaebb0a0decbe182b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandi ENG,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sandi ENG,ou=Administrative,dc=bitwarden,dc=com", + email: "ENGS@e0e7355126af4d6f962ec720851e512c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michaela Blimkie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Michaela Blimkie,ou=Payroll,dc=bitwarden,dc=com", + email: "BlimkieM@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mort Kestelman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mort Kestelman,ou=Payroll,dc=bitwarden,dc=com", + email: "KestelmM@e1893d7ef9564395a0b1b816030adce2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden,dc=com", + email: "KiangE@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reinhold Briggs,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reinhold Briggs,ou=Peons,dc=bitwarden,dc=com", + email: "BriggsR@7408ed731222450eb6a92df81540fc99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norbert Rider,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Norbert Rider,ou=Payroll,dc=bitwarden,dc=com", + email: "RiderN@1f0f559b444d45e3b1fe4488d0fe440e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eveline Smelters,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eveline Smelters,ou=Administrative,dc=bitwarden,dc=com", + email: "SmelterE@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elinor Stambouli,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Elinor Stambouli,ou=Management,dc=bitwarden,dc=com", + email: "StambouE@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden,dc=com", + email: "WhitefoM@b0c48599d24847958412615828406699.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donnette Kenol,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Donnette Kenol,ou=Administrative,dc=bitwarden,dc=com", + email: "KenolD@f9cc3d472225428da9ff7fce4cb3bfb3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margette Keogh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Margette Keogh,ou=Product Development,dc=bitwarden,dc=com", + email: "KeoghM@3f1cc5153abb4e0f860ad9c6b08e10e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden,dc=com", + email: "GoodbarQ@e3e39ba9c49a4a66982393d6f26bc8b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Makam Kumagai,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Makam Kumagai,ou=Product Development,dc=bitwarden,dc=com", + email: "KumagaiM@f41afebdf3e64dc8bbc4c83491a13722.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tallou Vairavan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tallou Vairavan,ou=Management,dc=bitwarden,dc=com", + email: "VairavaT@f36f45f8205e4b108d066ef8eb28e68b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elana Derrett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Elana Derrett,ou=Management,dc=bitwarden,dc=com", + email: "DerrettE@d7e8af68284e4062b608faac310d89ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanny Farranto,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hanny Farranto,ou=Human Resources,dc=bitwarden,dc=com", + email: "FarrantH@ea15a193a8df46519e51db6c6a047dbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucina Hobesh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lucina Hobesh,ou=Payroll,dc=bitwarden,dc=com", + email: "HobeshL@93250e1458e9462fb7830f342f899a75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jashvant Mellor,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jashvant Mellor,ou=Administrative,dc=bitwarden,dc=com", + email: "MellorJ@55336785d1804c1187eaae0c065b51fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dupuy McNeese,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dupuy McNeese,ou=Administrative,dc=bitwarden,dc=com", + email: "McNeeseD@86125263637c4474aade3dd7790bda7e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ying Forbs,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ying Forbs,ou=Janitorial,dc=bitwarden,dc=com", + email: "ForbsY@56ff7c3ad2a74f428698e9d39e33820f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paper Cowell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Paper Cowell,ou=Payroll,dc=bitwarden,dc=com", + email: "CowellP@625cb40efd254ff9b90ed168d6dd3db9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vispy Snair,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vispy Snair,ou=Product Development,dc=bitwarden,dc=com", + email: "SnairV@9d84faf7708a4fd5a3f8345e3cbc0463.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mona DeCecco,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mona DeCecco,ou=Product Development,dc=bitwarden,dc=com", + email: "DeCeccoM@3b5097c7d33f4dd5b850d3928945e3fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karolien Beznowski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Karolien Beznowski,ou=Payroll,dc=bitwarden,dc=com", + email: "BeznowsK@3e2956746c7c41b7b4dc5e63792f43cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden,dc=com", + email: "LobaughA@5bd598c0d9694b5a98586530464323e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frinel Godcharles,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Frinel Godcharles,ou=Product Development,dc=bitwarden,dc=com", + email: "GodcharF@56069289c8d64d7e83fba8ed9cea781f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dung Goldstein,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dung Goldstein,ou=Product Development,dc=bitwarden,dc=com", + email: "GoldsteD@a0e76cfa1c434c8b8797cc038ac77ad3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Scarlet Coody,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Scarlet Coody,ou=Product Development,dc=bitwarden,dc=com", + email: "CoodyS@ae5f65ffb5c9447faad9235fe08e30d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julina Stahly,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Julina Stahly,ou=Product Testing,dc=bitwarden,dc=com", + email: "StahlyJ@9d473530c714418981d7e4ad1f672212.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kippy Roman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kippy Roman,ou=Payroll,dc=bitwarden,dc=com", + email: "RomanK@3986b5b118ef4d79a84f9f227789123a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helsa Stahly,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Helsa Stahly,ou=Management,dc=bitwarden,dc=com", + email: "StahlyH@e28d4d2595974c10b2f19b4fce54fe69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hiroko Whetston,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hiroko Whetston,ou=Product Development,dc=bitwarden,dc=com", + email: "WhetstoH@44b6ea0e30a2464c8f90bd5c6aec9902.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aviva Harwerth,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aviva Harwerth,ou=Peons,dc=bitwarden,dc=com", + email: "HarwertA@6ee94998653244b3b64234a9ee1b8607.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden,dc=com", + email: "McNerlaA@668a7be7467f426eaa481fcc0af0008d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alida Ferriera,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alida Ferriera,ou=Peons,dc=bitwarden,dc=com", + email: "FerrierA@35f280bc0ed641759cb3d7609114d8c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vyky ONeal,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vyky ONeal,ou=Payroll,dc=bitwarden,dc=com", + email: "ONealV@b847cd495a564fd88ad378e323d86f9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daya Loader,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Daya Loader,ou=Peons,dc=bitwarden,dc=com", + email: "LoaderD@32037f3bd743420296270ff80da78e1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katsunori Bouret,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Katsunori Bouret,ou=Management,dc=bitwarden,dc=com", + email: "BouretK@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden,dc=com", + email: "EislerP@9a848a7f732f427f954ab2017da007b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden,dc=com", + email: "VanKessD@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rex Combellack,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rex Combellack,ou=Payroll,dc=bitwarden,dc=com", + email: "CombellR@6befdabbbc374615aeeed6f7a15c3c4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tallia Videa,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tallia Videa,ou=Management,dc=bitwarden,dc=com", + email: "VideaT@2c2f26204fa44156bad4b2a1a9213033.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Remy Lalonde,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Remy Lalonde,ou=Administrative,dc=bitwarden,dc=com", + email: "LalondeR@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tobi Houde,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tobi Houde,ou=Management,dc=bitwarden,dc=com", + email: "HoudeT@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tommi Luna,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tommi Luna,ou=Janitorial,dc=bitwarden,dc=com", + email: "LunaT@e33560f5a7ee4aa48f9e5af574f51dac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden,dc=com", + email: "KosnaskA@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alana Gelo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alana Gelo,ou=Human Resources,dc=bitwarden,dc=com", + email: "GeloA@218d5b5316c646fa8e9db29549e3afff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden,dc=com", + email: "BarnharM@ad4942d8c3c341119939c679c4dae154.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seven Salazar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Seven Salazar,ou=Management,dc=bitwarden,dc=com", + email: "SalazarS@31218813d50546c8962cb2d31042f36f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZukasJ@b9106f7d57f74a7b92af146111acb57d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeSouzaB@f78034ad70854ccbacb0124129d464fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Conway Jenness,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Conway Jenness,ou=Administrative,dc=bitwarden,dc=com", + email: "JennessC@752014cef4c74a4ea8012d4193349e8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=VanKing Padgett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=VanKing Padgett,ou=Human Resources,dc=bitwarden,dc=com", + email: "PadgettV@7770d32208f64a63bf44fae15e8c6935.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tansy Aronovich,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tansy Aronovich,ou=Product Development,dc=bitwarden,dc=com", + email: "AronoviT@281ce2096ed0496b9bf2ff2a6d46ed5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fidelity Shelley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fidelity Shelley,ou=Payroll,dc=bitwarden,dc=com", + email: "ShelleyF@72be16396166453d9bb6d2ec3f220789.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden,dc=com", + email: "HrushowE@1a8c60a83e6243159e036bc3f0b25375.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tres Parr,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tres Parr,ou=Management,dc=bitwarden,dc=com", + email: "ParrT@6b3d33b809ec4793b446277435a68094.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrtice Graver,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Myrtice Graver,ou=Janitorial,dc=bitwarden,dc=com", + email: "GraverM@710eac99d23b4aba917dbd3cddce9e4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Junette Weyand,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Junette Weyand,ou=Product Development,dc=bitwarden,dc=com", + email: "WeyandJ@46fec3df47bd4fac9e1c336da359be09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daune Gosset,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Daune Gosset,ou=Product Development,dc=bitwarden,dc=com", + email: "GossetD@65b1e6b48cf94926a986434aa0ba38db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden,dc=com", + email: "GhaemiI@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rolando McNally,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rolando McNally,ou=Administrative,dc=bitwarden,dc=com", + email: "McNallyR@e60dd9bce03a413a915d470a19570918.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden,dc=com", + email: "SharpeU@ff8375ca1c294ee698da8ebb063821cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirstie Trochu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kirstie Trochu,ou=Product Development,dc=bitwarden,dc=com", + email: "TrochuK@b7e8ffd7abe14e2bbc8f66f6d437394f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryLou Brock,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=MaryLou Brock,ou=Peons,dc=bitwarden,dc=com", + email: "BrockM@c6c77a4e90174b75a23b2f90eeee4364.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden,dc=com", + email: "KobreekF@80b32d7e2c334eb6876146c942d4c564.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edy Singbeil,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Edy Singbeil,ou=Product Development,dc=bitwarden,dc=com", + email: "SingbeiE@693e5301c4924e0195024b48e34f4838.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carsten Macklin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carsten Macklin,ou=Management,dc=bitwarden,dc=com", + email: "MacklinC@b32e7088c3e746f58c4546405599fbf1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weiping Arnone,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Weiping Arnone,ou=Peons,dc=bitwarden,dc=com", + email: "ArnoneW@6f7b8496d2cc4db2b31e0a14360cc11d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joceline Muir,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joceline Muir,ou=Administrative,dc=bitwarden,dc=com", + email: "MuirJ@ac4d7f7fd78147f7b89e17731422f227.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opal Isaac,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Opal Isaac,ou=Management,dc=bitwarden,dc=com", + email: "IsaacO@f1199a5aeaa742f5bdd847407289b4a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden,dc=com", + email: "TardiolE@fa561c4932fd49ab95806925cc7bd285.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dedra Bastien,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dedra Bastien,ou=Human Resources,dc=bitwarden,dc=com", + email: "BastienD@976adcda025f45689f8ecd72de9c606c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiri Gillon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kiri Gillon,ou=Management,dc=bitwarden,dc=com", + email: "GillonK@3835973847234e04a569100bfecc8dae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geoff Bergstrom,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Geoff Bergstrom,ou=Peons,dc=bitwarden,dc=com", + email: "BergstrG@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ngai Dorion,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ngai Dorion,ou=Human Resources,dc=bitwarden,dc=com", + email: "DorionN@20dec23f741b4bdbb6cfe2ede2355e8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dayna Bragg,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dayna Bragg,ou=Management,dc=bitwarden,dc=com", + email: "BraggD@ef52200320a34601b7e10e8ff147afd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madonna Parihar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Madonna Parihar,ou=Administrative,dc=bitwarden,dc=com", + email: "PariharM@8fe8053cf30a4c47b93e0a3f02958712.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ari Fergusson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ari Fergusson,ou=Product Development,dc=bitwarden,dc=com", + email: "FergussA@0f1f84ce6579498d8497bfb021e0f4e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramonda Tromm,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ramonda Tromm,ou=Product Development,dc=bitwarden,dc=com", + email: "TrommR@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Foster Cre,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Foster Cre,ou=Administrative,dc=bitwarden,dc=com", + email: "CreF@b2211048e736402188d0e7245e86301c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden,dc=com", + email: "WolfenbP@efeb1d35d7fb4a6698c2e450cd5716f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willette Juhan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Willette Juhan,ou=Human Resources,dc=bitwarden,dc=com", + email: "JuhanW@f74860195dfd437aa0f4072ae1ebfe76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melamie Darcel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Melamie Darcel,ou=Product Development,dc=bitwarden,dc=com", + email: "DarcelM@fa1c0131e1b849f6a92c26986c36bbfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlena Joe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Arlena Joe,ou=Product Development,dc=bitwarden,dc=com", + email: "JoeA@ab9c48ef1f7c4b329b69e3276189b579.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mufi Higgins,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mufi Higgins,ou=Management,dc=bitwarden,dc=com", + email: "HigginsM@9aa4f24ee25742128efa49d5c6b540fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viera Paetsch,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Viera Paetsch,ou=Human Resources,dc=bitwarden,dc=com", + email: "PaetschV@47581aa1612b49fdb2540d1094155bc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roy Wai,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roy Wai,ou=Product Development,dc=bitwarden,dc=com", + email: "WaiR@18a7c545624d4840b8b6f5a185043430.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cheslie Lamont,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cheslie Lamont,ou=Administrative,dc=bitwarden,dc=com", + email: "LamontC@34766460128a4ee582041f543b9bd242.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ash Moomey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ash Moomey,ou=Payroll,dc=bitwarden,dc=com", + email: "MoomeyA@7f942390e1bf40f296074b513660c50e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden,dc=com", + email: "LawbaugP@feae037fe44941bbb430bf940494ca20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Humphrey Culver,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Humphrey Culver,ou=Product Development,dc=bitwarden,dc=com", + email: "CulverH@64455353115942ebbac2f03b722980cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Consolata Daniells,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Consolata Daniells,ou=Janitorial,dc=bitwarden,dc=com", + email: "DaniellC@f8ab716c26494879b2465829da010f5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden,dc=com", + email: "TariqO@367f3fe3a2324b2a8f4bae7b4fa61161.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cark Lowman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cark Lowman,ou=Janitorial,dc=bitwarden,dc=com", + email: "LowmanC@46fcd2052d404a708ecce9dd268b7838.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolien Tabl,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Carolien Tabl,ou=Peons,dc=bitwarden,dc=com", + email: "TablC@2c933403160143d19a899179ef24cca2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jere Nadon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jere Nadon,ou=Administrative,dc=bitwarden,dc=com", + email: "NadonJ@b2dba5d211e74e1e8b9beacd1ae0b042.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weber Chouinard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Weber Chouinard,ou=Management,dc=bitwarden,dc=com", + email: "ChouinaW@3a320a2664cd48219711b2ffaa2e5892.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othilia Redfoot,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Othilia Redfoot,ou=Product Development,dc=bitwarden,dc=com", + email: "RedfootO@89e33259b1f341dda582db87064be4b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drudy Joffe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Drudy Joffe,ou=Product Development,dc=bitwarden,dc=com", + email: "JoffeD@f928f43ad9cc43d983b210ccab6e69b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moris Abdullah,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Moris Abdullah,ou=Product Testing,dc=bitwarden,dc=com", + email: "AbdullaM@ee1df761a37f416c8ab1cdfe97a867af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Misbah Mach,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Misbah Mach,ou=Human Resources,dc=bitwarden,dc=com", + email: "MachM@234b370628574e5ea51ed780065f5c50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden,dc=com", + email: "AngermeC@cbaa630e3a194faaa797a1d7d5ab2466.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maribel Searles,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maribel Searles,ou=Administrative,dc=bitwarden,dc=com", + email: "SearlesM@3d84a4bfc0dd4c1f9fe55a53bcc58c24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilah Haverkamp,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lilah Haverkamp,ou=Management,dc=bitwarden,dc=com", + email: "HaverkaL@e8e76146b3cf4785898d03ad6423f9d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fanny Baril,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fanny Baril,ou=Payroll,dc=bitwarden,dc=com", + email: "BarilF@48e1fa01ec994d088dcb4d2bf8fc5515.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milou Dada,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Milou Dada,ou=Janitorial,dc=bitwarden,dc=com", + email: "DadaM@95aba425683d4bd1840a81fc67427bb1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden,dc=com", + email: "JarvieS@c3ea2e07159b4059b3afc3ddc88034c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Earnest Walters,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Earnest Walters,ou=Administrative,dc=bitwarden,dc=com", + email: "WaltersE@7e60750ac4784fc193bbbefd09b6a791.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden,dc=com", + email: "RamakriA@4f2c26d60a654639aab7c46dc90f555c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rochelle Buford,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rochelle Buford,ou=Management,dc=bitwarden,dc=com", + email: "BufordR@cad34ac8884647e3aa084b319084cb10.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rajani Enns,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rajani Enns,ou=Human Resources,dc=bitwarden,dc=com", + email: "EnnsR@36c858bc990c4f6890c6cb5179e5811d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ofella Nessman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ofella Nessman,ou=Product Testing,dc=bitwarden,dc=com", + email: "NessmanO@eff4b5c8cdd74572a1896b15aff841f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donella Lethebinh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Donella Lethebinh,ou=Administrative,dc=bitwarden,dc=com", + email: "LethebiD@5b4286bc4af74709a0f65475a29d7c53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tzung Camillucci,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tzung Camillucci,ou=Management,dc=bitwarden,dc=com", + email: "CamilluT@b37b8170c2a14be99b8672023148d924.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden,dc=com", + email: "MayneA@903617d1ed564473826d5f2c9b25fe7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden,dc=com", + email: "VasudevR@f06dcb9a7c274d2c8b61f4765bcce046.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden,dc=com", + email: "GorlickL@685edfe843f3410a96aa97440113374e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzanna Furst,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Suzanna Furst,ou=Payroll,dc=bitwarden,dc=com", + email: "FurstS@70e46e55dad94d7bba82bf79618dd363.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden,dc=com", + email: "BridensM@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berri Pracht,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Berri Pracht,ou=Payroll,dc=bitwarden,dc=com", + email: "PrachtB@ac2881cfd212410799e38769b052602b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esko Feist,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Esko Feist,ou=Administrative,dc=bitwarden,dc=com", + email: "FeistE@f131b0c80bf2427c8f1448cabfd51b89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorin McNerney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dorin McNerney,ou=Product Development,dc=bitwarden,dc=com", + email: "McNerneD@c27a22599aa849ec8d6e0057e5fc89b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kataryna Vaters,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kataryna Vaters,ou=Peons,dc=bitwarden,dc=com", + email: "VatersK@9aed867d53c546c79f7cb774a38dec77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nikki Captives,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nikki Captives,ou=Product Development,dc=bitwarden,dc=com", + email: "CaptiveN@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mureil Fowlkes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mureil Fowlkes,ou=Peons,dc=bitwarden,dc=com", + email: "FowlkesM@bf899684934849bcb7f3a0d86a890838.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charla Silieff,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Charla Silieff,ou=Product Testing,dc=bitwarden,dc=com", + email: "SilieffC@fdc7d191201f48f4ad7e078c4bc3a04a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gladys Jarvah,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gladys Jarvah,ou=Management,dc=bitwarden,dc=com", + email: "JarvahG@1365456b38df40e8b356de5ec434637e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juan Hummel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Juan Hummel,ou=Peons,dc=bitwarden,dc=com", + email: "HummelJ@25f3da6efbac4e1a943679d0eb7798c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathryn Scheible,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cathryn Scheible,ou=Peons,dc=bitwarden,dc=com", + email: "ScheiblC@64a69cddd7bb4b56b7df20af602c35fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harri Senese,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Harri Senese,ou=Product Development,dc=bitwarden,dc=com", + email: "SeneseH@6c746d4a7e6b46028821b547cb3cb61f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moreen Lemay,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Moreen Lemay,ou=Management,dc=bitwarden,dc=com", + email: "LemayM@2534553c6cb5454888e3c62e4dc7cbc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden,dc=com", + email: "FrodshaM@494f2548825245788f70b0629ca28b58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden,dc=com", + email: "JedrysiJ@4023635f5fb04eb5b921a5e9cca7220e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jabir Gunn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jabir Gunn,ou=Administrative,dc=bitwarden,dc=com", + email: "GunnJ@612e8eb188de48388f43236fca542654.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dotty Oman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dotty Oman,ou=Product Development,dc=bitwarden,dc=com", + email: "OmanD@1c75dd756d3646528231e24a92716bd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quintina Mallett,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Quintina Mallett,ou=Janitorial,dc=bitwarden,dc=com", + email: "MallettQ@231cbd7e6f7348cfac07641066e2fec0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden,dc=com", + email: "StansbuN@5c0a8df1a6ec4beaa217c5f72f1c4620.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden,dc=com", + email: "McCuaigS@275ceeebf2b5444f8cf460d56ec9ab83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adie Itah,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Adie Itah,ou=Payroll,dc=bitwarden,dc=com", + email: "ItahA@34f90a14c10941158575c36d0a318149.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Philippine Corcoran,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Philippine Corcoran,ou=Peons,dc=bitwarden,dc=com", + email: "CorcoraP@a0ec5611c8b0407f85380c4a00447de2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ollie Panter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ollie Panter,ou=Human Resources,dc=bitwarden,dc=com", + email: "PanterO@8230b7d1e75c49b4b334d59396eca240.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden,dc=com", + email: "KarkotsE@4691b2eac8ba4d1390582076e407a460.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clint Jesty,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Clint Jesty,ou=Product Development,dc=bitwarden,dc=com", + email: "JestyC@742a0235bc3841709c6d6197d9db9a18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden,dc=com", + email: "KhodoshE@574eddc7483948a59c9d38d5c8f6a354.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tomasina Gofron,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tomasina Gofron,ou=Product Development,dc=bitwarden,dc=com", + email: "GofronT@9c0732c5de1c4903a2c7114c9e303d9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nong Bnrecad,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nong Bnrecad,ou=Peons,dc=bitwarden,dc=com", + email: "BnrecadN@248d38bb7c664c8f9d2a64525819610e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margy Lucas,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Margy Lucas,ou=Management,dc=bitwarden,dc=com", + email: "LucasM@3fbf482bd66842dfadf615e0e20dc12e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melvin Cohen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Melvin Cohen,ou=Peons,dc=bitwarden,dc=com", + email: "CohenM@ccd3c7eb497f45ed91b85ebe03c21037.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milissent Rolls,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Milissent Rolls,ou=Peons,dc=bitwarden,dc=com", + email: "RollsM@ddf56813dd4c431986e007d26b82799f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden,dc=com", + email: "FreeleyJ@899743aa481a45efb507e6d61189c383.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theodore Egdorf,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Theodore Egdorf,ou=Peons,dc=bitwarden,dc=com", + email: "EgdorfT@107125a246e24f24a9cf40da49e16737.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vernice Drynan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vernice Drynan,ou=Management,dc=bitwarden,dc=com", + email: "DrynanV@22c1616450914b67aaa0021953493b44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hensley Parrish,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hensley Parrish,ou=Janitorial,dc=bitwarden,dc=com", + email: "ParrishH@cbb46474a4d64b6d94b0841f08da9a09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden,dc=com", + email: "SalimYaA@21cc8cee33394af98a10a365eddcb55c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden,dc=com", + email: "ManwariC@6a03900e00f041c8bad5cf924164b20c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elbert Culley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elbert Culley,ou=Payroll,dc=bitwarden,dc=com", + email: "CulleyE@38bb69a498e64b7781901ef7c50df3ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fady Benavides,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fady Benavides,ou=Human Resources,dc=bitwarden,dc=com", + email: "BenavidF@ae1d3c73ac3541698f9376eee53602f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Djenana LeGuen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Djenana LeGuen,ou=Payroll,dc=bitwarden,dc=com", + email: "LeGuenD@e80ca250f89b403b9611f3035a6f2a93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden,dc=com", + email: "DanbrooP@cfe29e1726394f4a9a5f2244fdfdbc63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tele Travers,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tele Travers,ou=Product Testing,dc=bitwarden,dc=com", + email: "TraversT@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden,dc=com", + email: "TatangsS@ee6afb048cfd44e18bba35da7b089f24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherilyn Stults,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cherilyn Stults,ou=Administrative,dc=bitwarden,dc=com", + email: "StultsC@ae1bd8aa112143fa87c88a44e69aa310.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harri Kuntova,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Harri Kuntova,ou=Janitorial,dc=bitwarden,dc=com", + email: "KuntovaH@5a8cc902fcc5423d892dfdcc048c73b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulcine Litherland,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dulcine Litherland,ou=Peons,dc=bitwarden,dc=com", + email: "LitherlD@bbf9c04e50a241698a5503a647ae8281.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelwin Diee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kelwin Diee,ou=Product Development,dc=bitwarden,dc=com", + email: "DieeK@575b96dd8e82439988861ea4db931c38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden,dc=com", + email: "DirbmW@5da44ffb6b534c2a8e8e949cd515b1cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden,dc=com", + email: "BrunoniA@d89a4c96e85d46e9b90aee84eca8553c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veen Tarver,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Veen Tarver,ou=Human Resources,dc=bitwarden,dc=com", + email: "TarverV@89cc2a9b2ec949b1a8070c39d600dc45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kimberlee Malee,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kimberlee Malee,ou=Payroll,dc=bitwarden,dc=com", + email: "MaleeK@b808f16625dc4c2a96aed338660eeca1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chiho Larmour,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Chiho Larmour,ou=Management,dc=bitwarden,dc=com", + email: "LarmourC@25466f5c2b4e4320afbe3eeabe295830.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrily Provencal,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Merrily Provencal,ou=Janitorial,dc=bitwarden,dc=com", + email: "ProvencM@5ed2a85f8436420b8aa9acd30085ca22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden,dc=com", + email: "RoehrigJ@39ca6877ef574ca3bc5bd5f5e2e96e7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Divina Brevard,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Divina Brevard,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrevardD@e707a4307e404826b821947945a42b00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celine Lotan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Celine Lotan,ou=Payroll,dc=bitwarden,dc=com", + email: "LotanC@e8e7ee5b6e064589b4c7f97fde4b37f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noriko Corner,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Noriko Corner,ou=Management,dc=bitwarden,dc=com", + email: "CornerN@5cadcfe79eb54c65992596d7e8e0c690.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janean Hoshi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Janean Hoshi,ou=Administrative,dc=bitwarden,dc=com", + email: "HoshiJ@1435fdc2b771411ca35fcc6cc2698b9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shorwan Womack,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shorwan Womack,ou=Product Testing,dc=bitwarden,dc=com", + email: "WomackS@54ae4b8946dd40ba8c99c8bc8b14cd1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden,dc=com", + email: "KelsayD@36fbb38d5bbe4aa29ae95e79bf727529.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden,dc=com", + email: "KeyesL@ed9ac14d0dc747adb394c56c700ac22a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden,dc=com", + email: "ChrismaF@c0e08a4a1d724001a5c641abeefefcdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hattie Beilin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hattie Beilin,ou=Product Testing,dc=bitwarden,dc=com", + email: "BeilinH@3bfc3de402e042a394d461b86f93128b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loralie Cumming,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Loralie Cumming,ou=Administrative,dc=bitwarden,dc=com", + email: "CummingL@0eb174a38cfc4a95b6e9e718029db463.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanae Zalameda,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sanae Zalameda,ou=Peons,dc=bitwarden,dc=com", + email: "ZalamedS@848b025264d14e669cec02146f987418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden,dc=com", + email: "BragadoR@57ec55e059164473a2641a0802a3d2ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krystalle Logue,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Krystalle Logue,ou=Peons,dc=bitwarden,dc=com", + email: "LogueK@8dacb3afea62411d83ceb1bc304c1028.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fara Dillow,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fara Dillow,ou=Human Resources,dc=bitwarden,dc=com", + email: "DillowF@ec9572b6571741cba193e664e197377a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lonna Willcock,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lonna Willcock,ou=Product Testing,dc=bitwarden,dc=com", + email: "WillcocL@cdf65b883c4c457a86f2eba62ef732a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden,dc=com", + email: "OzerskyH@621ecc47be084539a10e5521c8efa92f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thrift McClelland,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Thrift McClelland,ou=Administrative,dc=bitwarden,dc=com", + email: "McClellT@d6ce39ad034b466eab6163a0fd6a84a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tres Bashton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tres Bashton,ou=Peons,dc=bitwarden,dc=com", + email: "BashtonT@63cf6afc822f42ed95e0208899f901bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lara Terneus,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lara Terneus,ou=Product Development,dc=bitwarden,dc=com", + email: "TerneusL@2d82e4fbfc604880a9f0d07a8531daa9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Taryna Ganguly,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Taryna Ganguly,ou=Administrative,dc=bitwarden,dc=com", + email: "GangulyT@41c0d9c6f1d54ffeb7ac5aa235429b41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden,dc=com", + email: "DropinG@130ee20fbdf449ab8c20d59d7bb0a698.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Serge Systems,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Serge Systems,ou=Product Testing,dc=bitwarden,dc=com", + email: "SystemsS@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marisca Parise,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marisca Parise,ou=Payroll,dc=bitwarden,dc=com", + email: "PariseM@c8037935d7cf4de6af85f4cdef77691d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brook Ta,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Brook Ta,ou=Product Testing,dc=bitwarden,dc=com", + email: "TaB@bb9e5ffb29744b338b8694a9d1283b9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evanne Servance,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Evanne Servance,ou=Janitorial,dc=bitwarden,dc=com", + email: "ServancE@86e8412a02bb46a19030741add17aeda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hamzeh Lyall,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hamzeh Lyall,ou=Peons,dc=bitwarden,dc=com", + email: "LyallH@cefcb38cb33a403e8d9697238eb1c561.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Collette Yao,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Collette Yao,ou=Payroll,dc=bitwarden,dc=com", + email: "YaoC@415554f5adbe4c70a27d90a1a4deab5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mandy Heiliger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mandy Heiliger,ou=Peons,dc=bitwarden,dc=com", + email: "HeiligeM@b22e59b4024b4e11ba0f1478fca2893a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liduine Farah,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Liduine Farah,ou=Product Testing,dc=bitwarden,dc=com", + email: "FarahL@eea2d462871e4840a27187b37bea3ed3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlee Hawley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Arlee Hawley,ou=Human Resources,dc=bitwarden,dc=com", + email: "HawleyA@b5dacfa66cfb4bc194ded29a6978a103.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theresina Reinink,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Theresina Reinink,ou=Administrative,dc=bitwarden,dc=com", + email: "ReininkT@c3dcba6fd4804a9ab67d7734e84114c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanny Hassey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hanny Hassey,ou=Janitorial,dc=bitwarden,dc=com", + email: "HasseyH@f908b5237c0945e690da76df38180ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gil Zhou,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gil Zhou,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZhouG@6867271f9fab4191b63db7db8f13930c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jurgen Strauss,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jurgen Strauss,ou=Product Development,dc=bitwarden,dc=com", + email: "StraussJ@8983b5ec67954736aa1e1d407ad9bb05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anestassia Phair,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Anestassia Phair,ou=Product Testing,dc=bitwarden,dc=com", + email: "PhairA@c87d7949ca254b4faaba46ba985802e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koko Fetzko,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Koko Fetzko,ou=Management,dc=bitwarden,dc=com", + email: "FetzkoK@cfebb9c9e4244917aa4f9253ae236cdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Irc McRae,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Irc McRae,ou=Management,dc=bitwarden,dc=com", + email: "McRaeI@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aime Reno,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Aime Reno,ou=Human Resources,dc=bitwarden,dc=com", + email: "RenoA@d7af2d36201f488d997c6f7eea13f491.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden,dc=com", + email: "DuncanM@0a93c6c7853c48a3ac4722063dc9067d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olympe Aston,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Olympe Aston,ou=Administrative,dc=bitwarden,dc=com", + email: "AstonO@fa78004a0e4e45e5ac5f338a764f9f48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janenna Durnford,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Janenna Durnford,ou=Janitorial,dc=bitwarden,dc=com", + email: "DurnforJ@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selcuk Sochovka,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Selcuk Sochovka,ou=Peons,dc=bitwarden,dc=com", + email: "SochovkS@442794dffd624b3d835092b89be2e152.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lauretta Abell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lauretta Abell,ou=Product Testing,dc=bitwarden,dc=com", + email: "AbellL@4654bae9a87c447a9b895fec0c062c67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akin Algood,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Akin Algood,ou=Administrative,dc=bitwarden,dc=com", + email: "AlgoodA@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenette Rance,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lenette Rance,ou=Human Resources,dc=bitwarden,dc=com", + email: "RanceL@efa9f7679ea94344a42e6df58b28f7ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden,dc=com", + email: "FindlayK@eeef0f1cc6484967a0425927e4f0c510.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden,dc=com", + email: "ClerouxL@a9d112e2c8734cf88b105800c98f72cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Louisa Thorne,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Louisa Thorne,ou=Janitorial,dc=bitwarden,dc=com", + email: "ThorneL@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden,dc=com", + email: "MarrettA@b6debf4c211f43749c69c905c5857018.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden,dc=com", + email: "BeardmoS@daecf76d8c3940f1a79ca6f29fd09de1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShyuM@89819b213b4e4eb69e461ea54d755f38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ichiro Schill,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ichiro Schill,ou=Janitorial,dc=bitwarden,dc=com", + email: "SchillI@bf9ca547b016429e8b1013b51e16d909.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delila Swinson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Delila Swinson,ou=Human Resources,dc=bitwarden,dc=com", + email: "SwinsonD@1622721c590542e0bda86ad6de9cffcc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sriv Paul,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sriv Paul,ou=Peons,dc=bitwarden,dc=com", + email: "PaulS@8ac0b632f576407ba66f1733b0c4738e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trish Rombeek,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Trish Rombeek,ou=Human Resources,dc=bitwarden,dc=com", + email: "RombeekT@11e98c2ee48b45178d13435be794eede.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tien Aghi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tien Aghi,ou=Human Resources,dc=bitwarden,dc=com", + email: "AghiT@66f011cdb9ae4854a875f5226891a8d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden,dc=com", + email: "HewerC@b5658d38a0434cce9ace31ecf66a3835.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barlas Discover,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Barlas Discover,ou=Peons,dc=bitwarden,dc=com", + email: "DiscoveB@7342ee713ddb492bb8f187e76f68e083.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarita Cescon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sarita Cescon,ou=Product Testing,dc=bitwarden,dc=com", + email: "CesconS@c44c933bac8b4cc8954bde72968abe20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Errol MAINT,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Errol MAINT,ou=Administrative,dc=bitwarden,dc=com", + email: "MAINTE@4a381f5d86cf400c9010a8a96d5cde80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vonny Sheu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vonny Sheu,ou=Management,dc=bitwarden,dc=com", + email: "SheuV@c711a2b311664a188cabd37fda0821b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guilford Kung,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Guilford Kung,ou=Administrative,dc=bitwarden,dc=com", + email: "KungG@a989bc4f0b1a4c80b486110777685af8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marguerite Markland,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marguerite Markland,ou=Peons,dc=bitwarden,dc=com", + email: "MarklanM@87bd41c90d2e4626aa1a8435072906ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden,dc=com", + email: "GebhardH@92468910821a458ca936a273ecde380f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viviane Lenox,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Viviane Lenox,ou=Payroll,dc=bitwarden,dc=com", + email: "LenoxV@e6ab02c53a3c4216ba5b75ac65120e12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walliw Borrelli,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Walliw Borrelli,ou=Management,dc=bitwarden,dc=com", + email: "BorrellW@9da8707f84d94fc6a64c7ccfeaa1b78b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden,dc=com", + email: "VasilD@d31bfc50f85342329bba0a1a96f5ad95.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden,dc=com", + email: "KingsbuC@5ecfe4c8aaf4487fb624902f7b975e7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amalea Laskin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Amalea Laskin,ou=Janitorial,dc=bitwarden,dc=com", + email: "LaskinA@520ff39da95249c7ade86c3a64b17f3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florida Gebrael,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Florida Gebrael,ou=Janitorial,dc=bitwarden,dc=com", + email: "GebraelF@5d869bea03ed495786efc921360e43b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kieron Walkins,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kieron Walkins,ou=Product Development,dc=bitwarden,dc=com", + email: "WalkinsK@9f9dd66ef9e34a42ab7a2c5eaff108f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andree Junkin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Andree Junkin,ou=Product Development,dc=bitwarden,dc=com", + email: "JunkinA@01b74c7732624f42a6fbbc33b3652f66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Louise Joudrey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Louise Joudrey,ou=Peons,dc=bitwarden,dc=com", + email: "JoudreyL@cfc8b9e4a2f14b128363b00bdc84ff74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gillie Achcar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gillie Achcar,ou=Product Development,dc=bitwarden,dc=com", + email: "AchcarG@f545ecd56a5b4fe0a9748924d28342ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Divine Ferriss,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Divine Ferriss,ou=Administrative,dc=bitwarden,dc=com", + email: "FerrissD@20649d21fd1148cb824fc7af995ba516.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noella Charlebois,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Noella Charlebois,ou=Product Testing,dc=bitwarden,dc=com", + email: "CharlebN@5bff87b1f64343a6ba2b4c6f245cd371.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brenn Screener,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Brenn Screener,ou=Human Resources,dc=bitwarden,dc=com", + email: "ScreeneB@19a8f5526a554f0cb06e7cba3da0c581.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden,dc=com", + email: "DecourcA@726a4125a7d94ad38a1dc92c2882e4bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olivie Bruneau,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Olivie Bruneau,ou=Management,dc=bitwarden,dc=com", + email: "BruneauO@7feea2d1b4e04d13bf5dd19cb643d02d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annemarie VanMeter,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Annemarie VanMeter,ou=Peons,dc=bitwarden,dc=com", + email: "VanMeteA@c6917cdcf88c4b1cb24fafd7c4f07601.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden,dc=com", + email: "StachowS@7d7a686ce6534dc2b82bd3604eea7f8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rudy Piper,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rudy Piper,ou=Janitorial,dc=bitwarden,dc=com", + email: "PiperR@2f5fd5dddfb54bca86a1d0320ba60e06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden,dc=com", + email: "DunnionJ@bf22abb443f242d591554d5b4dde5bdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berny Burger,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Berny Burger,ou=Product Development,dc=bitwarden,dc=com", + email: "BurgerB@634978d04fca41d6af5289220bc42474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirene Moyers,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shirene Moyers,ou=Product Development,dc=bitwarden,dc=com", + email: "MoyersS@ed6a92d94db74753ac56089472178365.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hideki Willis,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hideki Willis,ou=Human Resources,dc=bitwarden,dc=com", + email: "WillisH@3badeafafe3b4639b92d03c5b1235944.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manas Leveille,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Manas Leveille,ou=Product Testing,dc=bitwarden,dc=com", + email: "LeveillM@4e4132396a384237a0a15d5888e86f73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Collette Quane,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Collette Quane,ou=Product Development,dc=bitwarden,dc=com", + email: "QuaneC@7c0df7bf9a9345799ef1f7a5139ff67d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renu Schallenberg,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Renu Schallenberg,ou=Administrative,dc=bitwarden,dc=com", + email: "SchalleR@8bced59a99724d5eb08954ec3497f98c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Craig Fleischer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Craig Fleischer,ou=Janitorial,dc=bitwarden,dc=com", + email: "FleischC@b54cd58bbda74ccca6cdaefde6caedc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marla Visentin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marla Visentin,ou=Janitorial,dc=bitwarden,dc=com", + email: "VisentiM@0d089601fe8d4842aca2c104051c6a49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaidenhK@541a80b7aa9b481bbf28921cf43e3f5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden,dc=com", + email: "CoppedgC@623d62a2d1154923b1c9152d9f2876da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baris Ralph,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Baris Ralph,ou=Janitorial,dc=bitwarden,dc=com", + email: "RalphB@e0c514219e7e4e7cba9db3753f3ca628.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gusta Nugent,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gusta Nugent,ou=Management,dc=bitwarden,dc=com", + email: "NugentG@e3adbf44503541a8a477fd522db5f455.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Boer Jago,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Boer Jago,ou=Product Development,dc=bitwarden,dc=com", + email: "JagoB@dac0539de4424fe28175329373de09c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kieran Wattier,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kieran Wattier,ou=Administrative,dc=bitwarden,dc=com", + email: "WattierK@577dbf91ec444b2fa84d20b944b95da9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mala Shillingford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mala Shillingford,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShillinM@7080ace676f14d789edd6d153887110b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charyl Whitty,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Charyl Whitty,ou=Management,dc=bitwarden,dc=com", + email: "WhittyC@e8e08beeff9a4cdcaf143e74a433e1d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jawad Waller,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jawad Waller,ou=Management,dc=bitwarden,dc=com", + email: "WallerJ@2ef868dd48b240d78fd77732e9fe3cda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden,dc=com", + email: "DorionMB@796636c316134f4ea242b8ffac574e0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glynda Tisdall,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Glynda Tisdall,ou=Payroll,dc=bitwarden,dc=com", + email: "TisdallG@5e62af5b40314ecea84813300a46dd77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aditya Runnels,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aditya Runnels,ou=Product Testing,dc=bitwarden,dc=com", + email: "RunnelsA@ccab46deb94e4a1ab4ac6683d09bb4f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden,dc=com", + email: "WasylenN@bbdf84c7202d4fed8ebf04b035151774.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shuji Lisch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shuji Lisch,ou=Management,dc=bitwarden,dc=com", + email: "LischS@6acb8cb6e83344b2baf0ea01b349a09b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corette Biggers,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Corette Biggers,ou=Product Development,dc=bitwarden,dc=com", + email: "BiggersC@536233742e094d32a93b46e75cbb8e9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarah Marceau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sarah Marceau,ou=Janitorial,dc=bitwarden,dc=com", + email: "MarceauS@69b4d60a542046658c2cab83a8afa560.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huy Reporting,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Huy Reporting,ou=Payroll,dc=bitwarden,dc=com", + email: "ReportiH@1076925fed8248679e5db581a4d397c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charissa Douglas,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Charissa Douglas,ou=Janitorial,dc=bitwarden,dc=com", + email: "DouglasC@c5507fb1b7424c01bac1a4fbf30f64fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaynesS@dc25e6259a754e12b71b6ceb921f6e43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cortney Okamoto,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cortney Okamoto,ou=Product Development,dc=bitwarden,dc=com", + email: "OkamotoC@649a503dbd264f3ba9e14eb9795c58eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rene Fletcher,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rene Fletcher,ou=Payroll,dc=bitwarden,dc=com", + email: "FletcheR@eae289de16194f21b28831dbf07663de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deryck Nassr,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Deryck Nassr,ou=Janitorial,dc=bitwarden,dc=com", + email: "NassrD@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden,dc=com", + email: "DmsrtimM@7f1848e959b9431aae2d7ba89294b649.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden,dc=com", + email: "KingshoR@e084ec394e994677a50d409a6357c42a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coraline Kato,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Coraline Kato,ou=Peons,dc=bitwarden,dc=com", + email: "KatoC@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Becca Hallenbeck,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Becca Hallenbeck,ou=Peons,dc=bitwarden,dc=com", + email: "HallenbB@0a414dfa34d6439f8f6befcf71900bba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden,dc=com", + email: "UrbanowS@0864b9b0dd32492b822981ac2a2f6875.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carin Briggs,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carin Briggs,ou=Human Resources,dc=bitwarden,dc=com", + email: "BriggsC@60ffb350fa6740079313430abf25721b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wai Pellizzeri,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Wai Pellizzeri,ou=Peons,dc=bitwarden,dc=com", + email: "PellizzW@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joachim Nesrallah,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joachim Nesrallah,ou=Peons,dc=bitwarden,dc=com", + email: "NesrallJ@6211d58c45444a489ca2a34f354f2ae9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden,dc=com", + email: "NordstrG@3ee35d919ef5410b9a742e5fe9487a11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loesje Smothers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Loesje Smothers,ou=Management,dc=bitwarden,dc=com", + email: "SmotherL@e2ac30b0774145abbea79773529c940e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden,dc=com", + email: "CrawshaC@638ddd5f5c874c1fbe017c3aa0d978c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dani Maksoud,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dani Maksoud,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaksoudD@a549bdf5420c411a867c314ba75b6975.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kieran Forghani,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kieran Forghani,ou=Management,dc=bitwarden,dc=com", + email: "ForghanK@ea750648663b4e85ae486d2e32c216dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lusa Korpela,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lusa Korpela,ou=Payroll,dc=bitwarden,dc=com", + email: "KorpelaL@3105b5dc96c343758f704f474866d911.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden,dc=com", + email: "ArmstroC@0932a94d4e324368929167f71e7881a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Data Roussin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Data Roussin,ou=Payroll,dc=bitwarden,dc=com", + email: "RoussinD@57c8e316985b48038aad56a3f94817a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stone Scholes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Stone Scholes,ou=Peons,dc=bitwarden,dc=com", + email: "ScholesS@58bd5c0a9abd418c929331ed9ab0ec61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden,dc=com", + email: "PopowicP@1325c87839d04240ac1a16f9b96e2aee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden,dc=com", + email: "MezzoiuS@6993d016013446bf8c45519f739f4a8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agathe Huddleston,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Agathe Huddleston,ou=Administrative,dc=bitwarden,dc=com", + email: "HuddlesA@9c640b9ada7e43fd815986e9b791454d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vmchange Vacher,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vmchange Vacher,ou=Payroll,dc=bitwarden,dc=com", + email: "VacherV@dbb8e15fda2d4a1582516a0de74d9827.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aleta Buntrock,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aleta Buntrock,ou=Product Development,dc=bitwarden,dc=com", + email: "BuntrocA@1e8d211c25e74db48892bf1ab2e65581.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darlleen Murris,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Darlleen Murris,ou=Janitorial,dc=bitwarden,dc=com", + email: "MurrisD@40d320f39b3b4ec6b2aa4be872b12e34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden,dc=com", + email: "SmulderC@eb7a1c92edb446a9823944e09f0b6b2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mysore Kenlan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mysore Kenlan,ou=Product Development,dc=bitwarden,dc=com", + email: "KenlanM@62762c759020411b89296a80fdd53afd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden,dc=com", + email: "DhugaR@59778d9e834c452586d9e26b970164f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxanne Janning,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Roxanne Janning,ou=Janitorial,dc=bitwarden,dc=com", + email: "JanningR@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alexander Enns,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alexander Enns,ou=Peons,dc=bitwarden,dc=com", + email: "EnnsA@3d692d684ca742119b69b3914fc21732.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koen Keith,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Koen Keith,ou=Janitorial,dc=bitwarden,dc=com", + email: "KeithK@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mohan Parulekar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mohan Parulekar,ou=Peons,dc=bitwarden,dc=com", + email: "ParulekM@de898a326d21476c9afc54d7a723d91b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronna Esparza,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ronna Esparza,ou=Administrative,dc=bitwarden,dc=com", + email: "EsparzaR@6f40fd1f57664424aae86977d815ec60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hot Terrel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hot Terrel,ou=Product Development,dc=bitwarden,dc=com", + email: "TerrelH@d32e39b1240444d599938e20b2b9a2af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aparna Loiseau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aparna Loiseau,ou=Peons,dc=bitwarden,dc=com", + email: "LoiseauA@3f22733d317d4f91854fb0b865164d32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lana Fasken,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lana Fasken,ou=Janitorial,dc=bitwarden,dc=com", + email: "FaskenL@3177f113b2494bf084a4349d34933284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fariborz Neefs,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fariborz Neefs,ou=Peons,dc=bitwarden,dc=com", + email: "NeefsF@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Netty Eustace,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Netty Eustace,ou=Peons,dc=bitwarden,dc=com", + email: "EustaceN@af1c936dc969478a898b38c058f5ed5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rio Philion,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rio Philion,ou=Product Development,dc=bitwarden,dc=com", + email: "PhilionR@60d49768d4644227a17f0fda0b9acae9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beverlie Kutten,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beverlie Kutten,ou=Administrative,dc=bitwarden,dc=com", + email: "KuttenB@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden,dc=com", + email: "HodgkinT@c58d896de82b440ca30e70c88676b48e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=William Ridgewell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=William Ridgewell,ou=Product Testing,dc=bitwarden,dc=com", + email: "RidgeweW@6440b02815824326a0c464b5e91deecc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nonah McGlynn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nonah McGlynn,ou=Administrative,dc=bitwarden,dc=com", + email: "McGlynnN@c320d110c7a241ddbb5147ef5aebd508.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grace Hickerson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Grace Hickerson,ou=Product Development,dc=bitwarden,dc=com", + email: "HickersG@396057d601294ebc9d5c0c43a2c7528b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden,dc=com", + email: "ThirugnD@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liping Levi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Liping Levi,ou=Administrative,dc=bitwarden,dc=com", + email: "LeviL@64d7ecf288c04c558094c63f6b45f377.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mauro Meubus,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mauro Meubus,ou=Administrative,dc=bitwarden,dc=com", + email: "MeubusM@04ab0dd813964f258093cf5c76d47099.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", + email: "AbbatanI@d1dc373d110a4e68987e8e8fc1e917b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minny Southon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Minny Southon,ou=Product Testing,dc=bitwarden,dc=com", + email: "SouthonM@a209c275d5e54dc2a7f8bab915f03396.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Halina Zenar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Halina Zenar,ou=Management,dc=bitwarden,dc=com", + email: "ZenarH@3d26bfa9cedd4f12a12c0adbf8a4e691.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwenny Bertram,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gwenny Bertram,ou=Payroll,dc=bitwarden,dc=com", + email: "BertramG@67a50420f0564b4b9d502195a9eb7324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andreana Gaube,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Andreana Gaube,ou=Peons,dc=bitwarden,dc=com", + email: "GaubeA@c026df84b73b4f16beec47c31ac06303.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michelina Zbib,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Michelina Zbib,ou=Payroll,dc=bitwarden,dc=com", + email: "ZbibM@2f60971fa268439caffee9f84b2be8cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davis Mutcher,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Davis Mutcher,ou=Human Resources,dc=bitwarden,dc=com", + email: "MutcherD@b3865bcd46934100886192af9061706f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden,dc=com", + email: "VopalenD@b48cddaf61864244b80c9ba3e8279301.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelcey Yedema,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kelcey Yedema,ou=Payroll,dc=bitwarden,dc=com", + email: "YedemaK@03e01270dec047a5b17f2fbfe7ee61b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaila Squizzato,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kaila Squizzato,ou=Peons,dc=bitwarden,dc=com", + email: "SquizzaK@c9a4b60fa1eb470eb513b6d959a476c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ddene Ciocca,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ddene Ciocca,ou=Product Development,dc=bitwarden,dc=com", + email: "CioccaD@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harmony Peschke,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Harmony Peschke,ou=Human Resources,dc=bitwarden,dc=com", + email: "PeschkeH@2721cfc08f0240658ce3169305abe945.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden,dc=com", + email: "CiaschiM@cc252680b96a4999bccdcb3df4f9a7ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cheslie NTINASH,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cheslie NTINASH,ou=Management,dc=bitwarden,dc=com", + email: "NTINASHC@4e240d85327f4f81b9a139f4d41efb41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celisse Malizia,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Celisse Malizia,ou=Management,dc=bitwarden,dc=com", + email: "MaliziaC@37c4f9ee232544a4846bc4a3466039ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden,dc=com", + email: "AmarsiJ@afcd326ae5b94cedba790b89df39e139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rachelle Siew,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rachelle Siew,ou=Product Development,dc=bitwarden,dc=com", + email: "SiewR@70d73737dc5e4bc597c3edd093f95a4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charlean Robson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Charlean Robson,ou=Peons,dc=bitwarden,dc=com", + email: "RobsonC@9f88732cfcc040c9ac7a9586e3020a63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabriela Mustillo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gabriela Mustillo,ou=Management,dc=bitwarden,dc=com", + email: "MustillG@3105b5dc96c343758f704f474866d911.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Latia Viau,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Latia Viau,ou=Product Testing,dc=bitwarden,dc=com", + email: "ViauL@49b304035fc44bb4a3e211286fc4d652.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madlen Venning,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Madlen Venning,ou=Management,dc=bitwarden,dc=com", + email: "VenningM@b1e0fad1a7db4b25889e8df2c424913a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden,dc=com", + email: "SehgalC@62ebc0cac09c4b59836fa31868a1365d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gunilla Skene,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gunilla Skene,ou=Management,dc=bitwarden,dc=com", + email: "SkeneG@542303b775fa43b8b70b70cdc2197657.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anestassia Ting,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anestassia Ting,ou=Management,dc=bitwarden,dc=com", + email: "TingA@b3c8c2a69311430c95d255cf755caf65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryJane Telco,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=MaryJane Telco,ou=Janitorial,dc=bitwarden,dc=com", + email: "TelcoM@9f9fe6d238ce4f8cb29cecfb73bf648a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden,dc=com", + email: "EtzellG@9322f20face84b0a8db4dbabb4f4c507.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mansukha Tchir,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mansukha Tchir,ou=Product Development,dc=bitwarden,dc=com", + email: "TchirM@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden,dc=com", + email: "AbdulNoC@9b79b6cacc7d4ea9a3519bd3f9441c87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherline Gillard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sherline Gillard,ou=Administrative,dc=bitwarden,dc=com", + email: "GillardS@05749581377d47ba8047ee7237ce7f83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inm Stefanac,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Inm Stefanac,ou=Product Testing,dc=bitwarden,dc=com", + email: "StefanaI@36a375859cdd487ea0bae44e1c40b92f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden,dc=com", + email: "HaugrudC@be3459b8963e4676a7255dc7efa74560.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PengDavid Pryor,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=PengDavid Pryor,ou=Payroll,dc=bitwarden,dc=com", + email: "PryorP@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agathe Hr,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Agathe Hr,ou=Human Resources,dc=bitwarden,dc=com", + email: "HrA@aba92373b9e6445487406838438e9c43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden,dc=com", + email: "MicheluS@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ervin Biage,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ervin Biage,ou=Human Resources,dc=bitwarden,dc=com", + email: "BiageE@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandie Vargo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Brandie Vargo,ou=Administrative,dc=bitwarden,dc=com", + email: "VargoB@6032a8b4894b42dc8d3f57130a5d8ef5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden,dc=com", + email: "HeinenW@f928f43ad9cc43d983b210ccab6e69b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Augusto Audette,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Augusto Audette,ou=Janitorial,dc=bitwarden,dc=com", + email: "AudetteA@77209db2428f411d91371f32d860ae4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loella Haydock,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Loella Haydock,ou=Product Development,dc=bitwarden,dc=com", + email: "HaydockL@40b96b5eb0af49388ddf599aff4277e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden,dc=com", + email: "DalsielF@deb5b33726e1467b8ad98f9d4d53798a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden,dc=com", + email: "GrimbleL@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tami Scarlett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tami Scarlett,ou=Peons,dc=bitwarden,dc=com", + email: "ScarletT@de7b9b88f1af455bb9296186f4010a0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betteanne Badza,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Betteanne Badza,ou=Product Testing,dc=bitwarden,dc=com", + email: "BadzaB@641b39435c6a4345a08d44348f2bfdaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roman Barsony,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Roman Barsony,ou=Payroll,dc=bitwarden,dc=com", + email: "BarsonyR@130d7984e3224d79a3593bfbc13ee192.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden,dc=com", + email: "BergmanB@a8a3f1161ef54158b589de8fea58b91e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden,dc=com", + email: "WesselG@07350d30e5bc4da4ac617cefe2dea284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katrinka Debortoli,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Katrinka Debortoli,ou=Peons,dc=bitwarden,dc=com", + email: "DebortoK@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jillana Alary,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jillana Alary,ou=Janitorial,dc=bitwarden,dc=com", + email: "AlaryJ@9b1cd0d4cbb340edaa08f757750c510b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margeaux Raines,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Margeaux Raines,ou=Administrative,dc=bitwarden,dc=com", + email: "RainesM@8a34c70e0b134b1abc06ed65698294f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden,dc=com", + email: "HollandA@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassi Moritz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cassi Moritz,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoritzC@85684be84b6e4d138199715b368d851b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden,dc=com", + email: "VanMansO@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sales Rasmus,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sales Rasmus,ou=Administrative,dc=bitwarden,dc=com", + email: "RasmusS@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katrine Thomason,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Katrine Thomason,ou=Product Development,dc=bitwarden,dc=com", + email: "ThomasoK@08761145d0ee492388590ebc755ffc11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celka Kester,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Celka Kester,ou=Management,dc=bitwarden,dc=com", + email: "KesterC@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pansie Mayea,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pansie Mayea,ou=Payroll,dc=bitwarden,dc=com", + email: "MayeaP@97332f0466d142b5a0521dc2f85817c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Burton Shearer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Burton Shearer,ou=Administrative,dc=bitwarden,dc=com", + email: "ShearerB@9168c74ef41149569e1e454986f240f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden,dc=com", + email: "LacosseG@39906d66250a450299ac97c0daaa1661.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Augusto Montero,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Augusto Montero,ou=Human Resources,dc=bitwarden,dc=com", + email: "MonteroA@ead1ebc11a6a43c4a4973f8778d92cf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden,dc=com", + email: "KpodzoJ@4a68315fca8a4b9cbfc30c913a972220.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden,dc=com", + email: "TiegsS@bb1a549f208840af8ec52ae7c5ebc4f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eyde Gallion,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eyde Gallion,ou=Management,dc=bitwarden,dc=com", + email: "GallionE@e91e9d47322f42e0863a6aa1fe777b71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden,dc=com", + email: "KauffmaB@a767b0f434554c6788caabae2da7ee65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sule Valenziano,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sule Valenziano,ou=Janitorial,dc=bitwarden,dc=com", + email: "ValenziS@dc21b90d233e4262bb0c379c7e3b2a15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", + email: "KristjaO@170b1e3aafb44ce5931865d83bab2b73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Therese Totti,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Therese Totti,ou=Administrative,dc=bitwarden,dc=com", + email: "TottiT@f84feca728aa4b08a80aa164ca1230d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyana ChampionDemers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dyana ChampionDemers,ou=Management,dc=bitwarden,dc=com", + email: "ChampioD@a4e9de5e0b9246278e213e7f89e8ab95.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden,dc=com", + email: "PaprockJ@7a24f959bf7143f0a384d6a356f5332c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranea Zitko,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ranea Zitko,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZitkoR@145a2cc169a84041837ab176f4869676.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thayne Langer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Thayne Langer,ou=Peons,dc=bitwarden,dc=com", + email: "LangerT@49f5a591a2774e04b74eeb9adebf4303.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chie Hilton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chie Hilton,ou=Human Resources,dc=bitwarden,dc=com", + email: "HiltonC@a007e0bbe2b74c31b4d55b35ce3884b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gisela Enet,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gisela Enet,ou=Administrative,dc=bitwarden,dc=com", + email: "EnetG@f87927b66c3847ba8ab3947482034e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erlene Krajesky,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Erlene Krajesky,ou=Peons,dc=bitwarden,dc=com", + email: "KrajeskE@1a2826f06614436585f4faa14772cf1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden,dc=com", + email: "SteinbaI@6553f6f625ef4decb458591c6b034f5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cezary Stephens,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cezary Stephens,ou=Payroll,dc=bitwarden,dc=com", + email: "StephenC@03381a6be0334d469597ceb0055fc710.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyndie Therrien,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cyndie Therrien,ou=Payroll,dc=bitwarden,dc=com", + email: "TherrieC@c2c56cba4b164b91a9cad88cb6fbbaa7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden,dc=com", + email: "GhelardS@25209ef0bef9422ba827a4158c5d2eb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rolf Philip,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rolf Philip,ou=Administrative,dc=bitwarden,dc=com", + email: "PhilipR@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karla Biss,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karla Biss,ou=Peons,dc=bitwarden,dc=com", + email: "BissK@49c32b5d70594069be5f4296d6c76171.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danica Margittai,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Danica Margittai,ou=Janitorial,dc=bitwarden,dc=com", + email: "MargittD@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelly Fabris,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shelly Fabris,ou=Management,dc=bitwarden,dc=com", + email: "FabrisS@871acffc5fd64b9296d59bdd7ff870b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Netta Gregorio,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Netta Gregorio,ou=Product Development,dc=bitwarden,dc=com", + email: "GregoriN@ab80825fb9f64e0fa2550d84decf8401.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden,dc=com", + email: "PenaFerF@b25f9197eb164e0e80b05e75586a2055.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lu Tsai,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lu Tsai,ou=Product Testing,dc=bitwarden,dc=com", + email: "TsaiL@268e542432d8452492860decdd327bf6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden,dc=com", + email: "LoeffleA@932da8f75fc34afb858807b155e78d58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden,dc=com", + email: "TerwillS@037b2dcc29f840fa8751d096972382fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anabella McManus,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anabella McManus,ou=Payroll,dc=bitwarden,dc=com", + email: "McManusA@4b2618e65445493fb6bf16ca350497be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandeep Deneen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sandeep Deneen,ou=Product Development,dc=bitwarden,dc=com", + email: "DeneenS@69229a215bfd45fb93b4b714a125f8c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fiore Brogdon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fiore Brogdon,ou=Management,dc=bitwarden,dc=com", + email: "BrogdonF@c7f3f4b5404343009726750451b5ec5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden,dc=com", + email: "BuskoJ@1783baab8b3341f48bad6f9721f7eb73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariellen Tilley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mariellen Tilley,ou=Management,dc=bitwarden,dc=com", + email: "TilleyM@54d404ee0ed9466bae5e36b6d97997f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden,dc=com", + email: "CrotherL@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ina Joudrey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ina Joudrey,ou=Product Development,dc=bitwarden,dc=com", + email: "JoudreyI@24838fbbf5b94e89a9506c6185ca825f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baines Buettgen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Baines Buettgen,ou=Administrative,dc=bitwarden,dc=com", + email: "BuettgeB@2669130b306244a5bdb654170929e2da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carie Pitcher,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carie Pitcher,ou=Administrative,dc=bitwarden,dc=com", + email: "PitcherC@a2d6d422fc8c477489979808c2bf1f24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candie Gurer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Candie Gurer,ou=Human Resources,dc=bitwarden,dc=com", + email: "GurerC@83f78532c82a4f77a10f2d7460348b85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zino Swinson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Zino Swinson,ou=Human Resources,dc=bitwarden,dc=com", + email: "SwinsonZ@364480d740db4258a296b16c78eb71b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden,dc=com", + email: "RabiaszL@834378ce6fad4960b9d95b1599b2d8c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terese Beton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Terese Beton,ou=Peons,dc=bitwarden,dc=com", + email: "BetonT@536c0f4fa5054c52a7d0385b00e9be00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reena Gullekson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reena Gullekson,ou=Peons,dc=bitwarden,dc=com", + email: "GulleksR@5742495432584883ba0607d82fbbf002.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoda Prado,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yoda Prado,ou=Janitorial,dc=bitwarden,dc=com", + email: "PradoY@e2e4684a59f0411fb17c22a8c54500dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Waneta Irwin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Waneta Irwin,ou=Peons,dc=bitwarden,dc=com", + email: "IrwinW@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prity Wyllie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Prity Wyllie,ou=Janitorial,dc=bitwarden,dc=com", + email: "WyllieP@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", + email: "KapusciB@ba60a08b258046f98633fd3c737e4f83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jillian Borzic,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jillian Borzic,ou=Product Testing,dc=bitwarden,dc=com", + email: "BorzicJ@484147050d834a1da350db4c28e9f45b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akio Broussard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Akio Broussard,ou=Product Testing,dc=bitwarden,dc=com", + email: "BroussaA@14718a04ba8345b68b85209d455c92d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden,dc=com", + email: "GunasekS@823b0e5ae5554412ad321149e939b14a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ind Suitt,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ind Suitt,ou=Peons,dc=bitwarden,dc=com", + email: "SuittI@ba26067a6b444f7cbcc6de889b198ade.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alyse Walkley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alyse Walkley,ou=Janitorial,dc=bitwarden,dc=com", + email: "WalkleyA@aadb572867dc4b7098efde5813eb2d27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julienne Milne,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Julienne Milne,ou=Administrative,dc=bitwarden,dc=com", + email: "MilneJ@738b42a56ab44af39fa9da7b9eaffcee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kit Lesperance,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kit Lesperance,ou=Peons,dc=bitwarden,dc=com", + email: "LesperaK@c3ac4e6d63bf42469f2e271613915683.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden,dc=com", + email: "JeffersL@4c2706f148d24c978855dfe00601ca6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Libbi Niccolls,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Libbi Niccolls,ou=Management,dc=bitwarden,dc=com", + email: "NiccollL@1db0a368d0764b8fbfe7762b10114efc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kas Ashraf,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kas Ashraf,ou=Payroll,dc=bitwarden,dc=com", + email: "AshrafK@1cb0893ea33843b2b6fb5ad305e95a15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgia Henderson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Georgia Henderson,ou=Peons,dc=bitwarden,dc=com", + email: "HendersG@47451620be86447cb3f001d648f21e9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nuri Mand,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nuri Mand,ou=Human Resources,dc=bitwarden,dc=com", + email: "MandN@af4484e6bd354321bc237bc7b6d97e88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shafiq Doi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shafiq Doi,ou=Management,dc=bitwarden,dc=com", + email: "DoiS@165536f4f8824483a0990647a9cb54c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mamie Angerer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mamie Angerer,ou=Janitorial,dc=bitwarden,dc=com", + email: "AngererM@aa3946ad28f244b28a9df39dee97d247.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trula Ledou,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Trula Ledou,ou=Product Development,dc=bitwarden,dc=com", + email: "LedouT@cd9e9d5ccd3a4afa9af65d048dc3405e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hoy Rushton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hoy Rushton,ou=Management,dc=bitwarden,dc=com", + email: "RushtonH@ec3e2a8f77f04a04b0562ffb64100067.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden,dc=com", + email: "MaciejeK@503bf02919104cafa1d31446cc7f0505.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobette Tohama,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bobette Tohama,ou=Product Development,dc=bitwarden,dc=com", + email: "TohamaB@f8d4033617914caebdc40bc652a17f49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Four Elks,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Four Elks,ou=Human Resources,dc=bitwarden,dc=com", + email: "ElksF@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", + email: "HempinsK@f9ccaba996b948fd826c0c115f90045a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alli Kaura,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alli Kaura,ou=Administrative,dc=bitwarden,dc=com", + email: "KauraA@86262c8a96f6428ca6c85ec378671d82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gil Walston,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gil Walston,ou=Administrative,dc=bitwarden,dc=com", + email: "WalstonG@0b7ec0c2364e4e4f8de90b2b167baf77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viole Lopinski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Viole Lopinski,ou=Peons,dc=bitwarden,dc=com", + email: "LopinskV@72255f0203e94d058b1c15913072ab66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amy StOnge,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Amy StOnge,ou=Payroll,dc=bitwarden,dc=com", + email: "StOngeA@0942a8d54b72463a911186a66f7c67f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emogene Cocke,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Emogene Cocke,ou=Peons,dc=bitwarden,dc=com", + email: "CockeE@837254eeede24c15906b803e5cce94f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tash Sails,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tash Sails,ou=Product Development,dc=bitwarden,dc=com", + email: "SailsT@cb28429eacc145eba144e472491c78c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coral Viriato,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Coral Viriato,ou=Human Resources,dc=bitwarden,dc=com", + email: "ViriatoC@a3a401e9d5694d8c8d647950b6db5b18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Des Zacharias,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Des Zacharias,ou=Payroll,dc=bitwarden,dc=com", + email: "ZachariD@4227d8ce5e1a40d984414347da920f58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Durantaye Skelly,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Durantaye Skelly,ou=Product Development,dc=bitwarden,dc=com", + email: "SkellyD@4115c8a730274bce89da518202dd0d0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden,dc=com", + email: "FriskI@742e6acfb3ee43e195f05147276956cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candie Mitsui,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Candie Mitsui,ou=Management,dc=bitwarden,dc=com", + email: "MitsuiC@0230c484eaf84d819fed9b62063a4729.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden,dc=com", + email: "BriseboR@3fc826f5777843e2bdb2f367b35e8c35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden,dc=com", + email: "VanderhE@214f04c971b04f9d856cc90c519f21fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden,dc=com", + email: "KiblerM@0c3e5c070ad6421e82c1342b233868ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rocke Baughan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rocke Baughan,ou=Peons,dc=bitwarden,dc=com", + email: "BaughanR@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vyza Tsuk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vyza Tsuk,ou=Product Development,dc=bitwarden,dc=com", + email: "TsukV@2f60f554d60143df8c782af78b69eca5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden,dc=com", + email: "TimmermW@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffany Fisprod,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tiffany Fisprod,ou=Management,dc=bitwarden,dc=com", + email: "FisprodT@47b619accc2242b98a908129e561089a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rafael Tucker,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rafael Tucker,ou=Human Resources,dc=bitwarden,dc=com", + email: "TuckerR@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kayle Gedman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kayle Gedman,ou=Product Testing,dc=bitwarden,dc=com", + email: "GedmanK@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arthur Axberg,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Arthur Axberg,ou=Administrative,dc=bitwarden,dc=com", + email: "AxbergA@8dd73cf85da34f708a5ea6c9b1ceb858.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deeanne Armstead,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Deeanne Armstead,ou=Management,dc=bitwarden,dc=com", + email: "ArmsteaD@d1d8d0f2434243eabd270c2b3bcc4c7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaye Sils,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gaye Sils,ou=Product Testing,dc=bitwarden,dc=com", + email: "SilsG@64ae800c21ed412e8086ba9f98972fde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadan Trottier,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sadan Trottier,ou=Peons,dc=bitwarden,dc=com", + email: "TrottieS@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reina Woods,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reina Woods,ou=Peons,dc=bitwarden,dc=com", + email: "WoodsR@93c66893cda74239a9a56d1199a44457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krystalle Evers,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Krystalle Evers,ou=Human Resources,dc=bitwarden,dc=com", + email: "EversK@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mair Bascombe,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mair Bascombe,ou=Management,dc=bitwarden,dc=com", + email: "BascombM@8c75d8449fe241b583cdc3782aba550b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dinker Meehan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dinker Meehan,ou=Product Testing,dc=bitwarden,dc=com", + email: "MeehanD@1149878f7b4f4987a9a8b6d8df86a532.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elena Chabrat,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elena Chabrat,ou=Payroll,dc=bitwarden,dc=com", + email: "ChabratE@3a3f7974ffc147bc8e5ab8732ee37359.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozelle Kunkel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rozelle Kunkel,ou=Management,dc=bitwarden,dc=com", + email: "KunkelR@dd128ede6e3a4a6bba3ffbcc6309e61f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden,dc=com", + email: "HebbarH@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christine Moree,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Christine Moree,ou=Human Resources,dc=bitwarden,dc=com", + email: "MoreeC@81e30a9ac6dd4fba89da9846767cb24b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden,dc=com", + email: "McGilliK@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden,dc=com", + email: "OrnburnH@9db63434a78e416392ae93e3976c1bfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden,dc=com", + email: "TrevethE@cafef01f34b44ba5b82ee993bce42d43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden,dc=com", + email: "SauvageD@68388d901e1d4ae598f24f58170951da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anje Saward,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anje Saward,ou=Janitorial,dc=bitwarden,dc=com", + email: "SawardA@742e0d6a67274517a5c3f77f64edc637.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kwok Pringle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kwok Pringle,ou=Human Resources,dc=bitwarden,dc=com", + email: "PringleK@613c9a81ad7c44b9855320367cfca10a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chiho Zilaie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chiho Zilaie,ou=Peons,dc=bitwarden,dc=com", + email: "ZilaieC@fd92acc2e6b64b87b315aebd5398fa83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaw Leigh,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shaw Leigh,ou=Janitorial,dc=bitwarden,dc=com", + email: "LeighS@b8d71981403d4ad3936eae858f7c09c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden,dc=com", + email: "CizmarS@6e9d465e02444df3bab419ab8506be32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosita Updt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rosita Updt,ou=Payroll,dc=bitwarden,dc=com", + email: "UpdtR@cf19b52e52064a0db712a3ef1a76cd1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden,dc=com", + email: "WentworM@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeisenbB@f4d67a28b94c425786eaa6b689514463.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeStefaV@9dcbc984add8456599771980772d506e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selim Kriegler,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Selim Kriegler,ou=Peons,dc=bitwarden,dc=com", + email: "KriegleS@b037ffa0817e41fb9bd6ea3947c6a216.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tae Jeng,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tae Jeng,ou=Administrative,dc=bitwarden,dc=com", + email: "JengT@96b2a23653bd4867b5a7bf172ebf238c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden,dc=com", + email: "GrassmaB@6776642cb6824166a999264ad8dc48c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faz Chan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Faz Chan,ou=Payroll,dc=bitwarden,dc=com", + email: "ChanF@fadd1eac8fe2451fa3ba21f515baaf1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ericka Hayes,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ericka Hayes,ou=Administrative,dc=bitwarden,dc=com", + email: "HayesE@a90573a98b164929a489e62b8b0a18ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calli Pharr,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Calli Pharr,ou=Product Testing,dc=bitwarden,dc=com", + email: "PharrC@b4ffcfe46a614ae194b415ba89e17560.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pamela Hufana,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pamela Hufana,ou=Janitorial,dc=bitwarden,dc=com", + email: "HufanaP@b524d22ec70741b18bc6152d2cf11515.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden,dc=com", + email: "WobbrocJ@3b0170f109034332b61e67bb6799825e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carley Fogleman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carley Fogleman,ou=Payroll,dc=bitwarden,dc=com", + email: "FoglemaC@aef5e63df5f745ab8b099bc2096e5d54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marsh Gribbons,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marsh Gribbons,ou=Peons,dc=bitwarden,dc=com", + email: "GribbonM@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herminia Corvo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Herminia Corvo,ou=Peons,dc=bitwarden,dc=com", + email: "CorvoH@755e2f2f01064fb58f5836b47a9f6953.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loutitia Bruce,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Loutitia Bruce,ou=Product Development,dc=bitwarden,dc=com", + email: "BruceL@c5db51a01b18429da119a54ca0483290.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden,dc=com", + email: "TwymanS@f0819837e05a4186824c71a4f41886b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genga Poley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Genga Poley,ou=Peons,dc=bitwarden,dc=com", + email: "PoleyG@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden,dc=com", + email: "CreamerJ@592065f7f9cc4bfea26a7ca4df44dee5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petunia Gunther,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Petunia Gunther,ou=Administrative,dc=bitwarden,dc=com", + email: "GuntherP@c1fb4f6fb6854ac09da830fa08bf174b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden,dc=com", + email: "DinkelZ@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden,dc=com", + email: "ThrogmoS@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernice Yuan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bernice Yuan,ou=Product Testing,dc=bitwarden,dc=com", + email: "YuanB@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigitte Zahn,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brigitte Zahn,ou=Payroll,dc=bitwarden,dc=com", + email: "ZahnB@b2efef5ed30b40fb860407b9142be3e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lexis Otsuka,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lexis Otsuka,ou=Management,dc=bitwarden,dc=com", + email: "OtsukaL@e0abe3f47abe4097a988502110393014.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avril Hoffelt,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Avril Hoffelt,ou=Management,dc=bitwarden,dc=com", + email: "HoffeltA@41667abeeb534d61bc80cd7b46b3bcf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", + email: "KazimieC@62f64ab8f08042e48744a09da3d99a8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden,dc=com", + email: "GidaroG@ba870021396f4a5691ef47f553098ab0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vax Regier,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vax Regier,ou=Peons,dc=bitwarden,dc=com", + email: "RegierV@871acffc5fd64b9296d59bdd7ff870b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meara Lindsey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Meara Lindsey,ou=Peons,dc=bitwarden,dc=com", + email: "LindseyM@f48b3f3250734c97804fc50043b90fe4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aeriel Juan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aeriel Juan,ou=Product Development,dc=bitwarden,dc=com", + email: "JuanA@6cf8a50be5a34e5ca28a7f3503d636ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dear Valerien,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dear Valerien,ou=Human Resources,dc=bitwarden,dc=com", + email: "ValerieD@8e1298be63e547e0a393778bd9158d77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden,dc=com", + email: "DagouliM@c9027f607987451aa869ec32b2ad0708.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden,dc=com", + email: "WasylykJ@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shobana Bardsley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shobana Bardsley,ou=Payroll,dc=bitwarden,dc=com", + email: "BardsleS@190762f539394f3d8d0e37edbd48fa26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden,dc=com", + email: "JemczykT@d9a2b19f9cc14fe692b39c04dad264af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Iona Kohl,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Iona Kohl,ou=Human Resources,dc=bitwarden,dc=com", + email: "KohlI@6de130a8139a479abd748cccf12fccd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idette Ramage,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Idette Ramage,ou=Product Testing,dc=bitwarden,dc=com", + email: "RamageI@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mick Jakab,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mick Jakab,ou=Product Development,dc=bitwarden,dc=com", + email: "JakabM@8ae2116c03884751957c5ca2ff18a644.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden,dc=com", + email: "WissingL@d0cf6383cc594af9bf44d435b5ef79a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clay Staats,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Clay Staats,ou=Janitorial,dc=bitwarden,dc=com", + email: "StaatsC@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden,dc=com", + email: "LeavittZ@3f14bb0cade24248b56a7e113187211c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchadanE@82a02eb22e9446a98ae50c8b159eeb8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronica Dummer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ronica Dummer,ou=Product Testing,dc=bitwarden,dc=com", + email: "DummerR@c643a761475a4a67b1e62fab24451a4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden,dc=com", + email: "VandergJ@61697331f90443959b7bd23e7a2ee775.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rolf Maudrie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rolf Maudrie,ou=Peons,dc=bitwarden,dc=com", + email: "MaudrieR@8717d7d6686445eba152afa0241a3ea0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sidonnie Comp,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sidonnie Comp,ou=Peons,dc=bitwarden,dc=com", + email: "CompS@ec75342deb7d449a90956cf996c042fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jimmie Mand,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jimmie Mand,ou=Management,dc=bitwarden,dc=com", + email: "MandJ@02331ebbeac0451ea60775fb2cc7fdc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esmaria Walston,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Esmaria Walston,ou=Peons,dc=bitwarden,dc=com", + email: "WalstonE@c66615aa805449f0a34309614a139187.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claude LaVecchia,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Claude LaVecchia,ou=Management,dc=bitwarden,dc=com", + email: "LaVecchC@537a7fb8e8084a50ad524dcf8366437e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rusty Montgomery,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rusty Montgomery,ou=Product Development,dc=bitwarden,dc=com", + email: "MontgomR@d89a4c96e85d46e9b90aee84eca8553c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsey Favreau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chelsey Favreau,ou=Peons,dc=bitwarden,dc=com", + email: "FavreauC@a80e7f60ec3848439689791d9f11c058.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JulieAnne Drubld,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=JulieAnne Drubld,ou=Management,dc=bitwarden,dc=com", + email: "DrubldJ@377af438e28144f198471c633c478745.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden,dc=com", + email: "MiharaR@5961547593ce4d3d831c972ef1cd392b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden,dc=com", + email: "KadleciN@f84feca728aa4b08a80aa164ca1230d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shantee Moulton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shantee Moulton,ou=Payroll,dc=bitwarden,dc=com", + email: "MoultonS@5c0caf6aaf894e2787d090d3ee4667c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camilla Sayegh,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Camilla Sayegh,ou=Management,dc=bitwarden,dc=com", + email: "SayeghC@4ecb285ebb064bbf967c6e0c912612d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Txp Wojdylo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Txp Wojdylo,ou=Product Development,dc=bitwarden,dc=com", + email: "WojdyloT@5f41ae90bad64d5e97b0ef849f0cfd8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belen Miernik,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Belen Miernik,ou=Payroll,dc=bitwarden,dc=com", + email: "MiernikB@daf3844d93884659a4691cd15a58290b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mani Skillen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mani Skillen,ou=Payroll,dc=bitwarden,dc=com", + email: "SkillenM@e843ca68e55442fdb294c3e4c51a76f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diahann Roeten,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Diahann Roeten,ou=Janitorial,dc=bitwarden,dc=com", + email: "RoetenD@cff29f28824b49c2bb3b80efc41d7e67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KaiWai COKOL,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=KaiWai COKOL,ou=Payroll,dc=bitwarden,dc=com", + email: "COKOLK@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maible Adorno,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maible Adorno,ou=Product Development,dc=bitwarden,dc=com", + email: "AdornoM@76c55b991b154687a6c440a29ba279b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zero Fletcher,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zero Fletcher,ou=Management,dc=bitwarden,dc=com", + email: "FletcheZ@9b70e886a18d422fa3404374b5a9613c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daveen Burnage,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Daveen Burnage,ou=Management,dc=bitwarden,dc=com", + email: "BurnageD@d5a1c908aa0542dcbca729ee2090c302.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ebony Duquette,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ebony Duquette,ou=Product Testing,dc=bitwarden,dc=com", + email: "DuquettE@fc77f4d906ff4b3cb588df36a2010c58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tracie Holinski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tracie Holinski,ou=Peons,dc=bitwarden,dc=com", + email: "HolinskT@6da551849f104f33a2eea46618b3ca98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rio Naem,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rio Naem,ou=Payroll,dc=bitwarden,dc=com", + email: "NaemR@ed87fa3a81eb418da1bb630466cba42d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reeta Abel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Reeta Abel,ou=Janitorial,dc=bitwarden,dc=com", + email: "AbelR@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felicle McCartin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Felicle McCartin,ou=Administrative,dc=bitwarden,dc=com", + email: "McCartiF@78c782ee988042558677d060e6dcc145.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrell Presgrove,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Darrell Presgrove,ou=Payroll,dc=bitwarden,dc=com", + email: "PresgroD@08314372b4e24a1c8e4f541db86c96af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faizal Awadalla,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Faizal Awadalla,ou=Management,dc=bitwarden,dc=com", + email: "AwadallF@85be5888418240a8880dd2671e654a34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SikYin Borha,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=SikYin Borha,ou=Administrative,dc=bitwarden,dc=com", + email: "BorhaS@8cf60560d9f94210b078d7fde7752144.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steve Marette,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Steve Marette,ou=Human Resources,dc=bitwarden,dc=com", + email: "MaretteS@83fe03b0ea334785886a9e6e12b6449f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden,dc=com", + email: "KuykendJ@60ec121ba9714e3489eb920608ad92c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janeva Diener,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Janeva Diener,ou=Product Development,dc=bitwarden,dc=com", + email: "DienerJ@5b2a3a94c4fc4b63a1c4a61fe0867664.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amelie Brashear,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Amelie Brashear,ou=Administrative,dc=bitwarden,dc=com", + email: "BrasheaA@2a4ac17a2dac443185eb76e92ebd37d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kenneth Tahamont,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kenneth Tahamont,ou=Peons,dc=bitwarden,dc=com", + email: "TahamonK@06f45b5a620c43d78c14ccaab146b491.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mario Pappu,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mario Pappu,ou=Peons,dc=bitwarden,dc=com", + email: "PappuM@adc1aa4054664ff28e6c264f378bb34d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bethena Arnauld,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bethena Arnauld,ou=Peons,dc=bitwarden,dc=com", + email: "ArnauldB@8e5803ba8a994346b2021a6c4699f1e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nhut Hollis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nhut Hollis,ou=Product Testing,dc=bitwarden,dc=com", + email: "HollisN@eb263435394f4d6ab9827469c04cb342.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claudette Murton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Claudette Murton,ou=Management,dc=bitwarden,dc=com", + email: "MurtonC@e0f19e47c9c84b21b125848518ec6067.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden,dc=com", + email: "RasmussH@f185c5336698451d9003f4fee19cdce1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden,dc=com", + email: "FahrentL@11006cb63c014ed78431f32c1edc2e50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dalila Solomon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dalila Solomon,ou=Janitorial,dc=bitwarden,dc=com", + email: "SolomonD@1992283e02a14cd2a3449a7bd08c0ed9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veriee Aksel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Veriee Aksel,ou=Peons,dc=bitwarden,dc=com", + email: "AkselV@44ecb368c6be4359b7f35b951bbf9473.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirella Lambregts,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mirella Lambregts,ou=Payroll,dc=bitwarden,dc=com", + email: "LambregM@9aa7896234604e35853331a58b365781.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulinus Bagi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Paulinus Bagi,ou=Administrative,dc=bitwarden,dc=com", + email: "BagiP@5ad3d7530e0c4ae2a02dadf40f602049.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rodrigo Healy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rodrigo Healy,ou=Peons,dc=bitwarden,dc=com", + email: "HealyR@dc401fe14a3e4403a51a351982eb441b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vicheara Reimann,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vicheara Reimann,ou=Payroll,dc=bitwarden,dc=com", + email: "ReimannV@16061e068871412f8042ab726cfbe1cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden,dc=com", + email: "SelchowJ@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden,dc=com", + email: "TesfamaS@9969b0f8851149aaa64ff3c67e9b6c53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden,dc=com", + email: "GalluzzM@dd011395008c45a78a4a604d3e2ee63f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johan Srivastava,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Johan Srivastava,ou=Peons,dc=bitwarden,dc=com", + email: "SrivastJ@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isl Luciani,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Isl Luciani,ou=Human Resources,dc=bitwarden,dc=com", + email: "LucianiI@93274af28e624bc39a43d4c6197969b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden,dc=com", + email: "PagliaR@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monah Nipper,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Monah Nipper,ou=Administrative,dc=bitwarden,dc=com", + email: "NipperM@45b2aea3ceaf4960a311478dd3996fb9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibyl Luettchau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sibyl Luettchau,ou=Peons,dc=bitwarden,dc=com", + email: "LuettchS@4c76717060934e34ac6c2ce08f3c0eb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryl Feeley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Maryl Feeley,ou=Peons,dc=bitwarden,dc=com", + email: "FeeleyM@3ee0cf8e98f2453e9621b886fd38e19c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moyna Syres,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Moyna Syres,ou=Management,dc=bitwarden,dc=com", + email: "SyresM@f04f08ea3a55432db354ee9760194fa6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden,dc=com", + email: "PostletD@6e135dde94f540bebc4c8457eb8935d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petri Jimenez,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Petri Jimenez,ou=Janitorial,dc=bitwarden,dc=com", + email: "JimenezP@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mike Inoue,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mike Inoue,ou=Administrative,dc=bitwarden,dc=com", + email: "InoueM@398ea17d6f974da4b9c05b23fe6460f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anita Gonsalves,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anita Gonsalves,ou=Payroll,dc=bitwarden,dc=com", + email: "GonsalvA@1bc81f639d7b4a75a6776b919ea7ed35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dennis Saad,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dennis Saad,ou=Janitorial,dc=bitwarden,dc=com", + email: "SaadD@194b01da4c0947188a08ceb5675d4f64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Taryna Anchia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Taryna Anchia,ou=Product Development,dc=bitwarden,dc=com", + email: "AnchiaT@87bc15d42d8444788089ff676f599c5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden,dc=com", + email: "DattaloR@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abigale Dacal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Abigale Dacal,ou=Peons,dc=bitwarden,dc=com", + email: "DacalA@a2e6c1d1859c490496277e66f6d6fefe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kana Gantt,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kana Gantt,ou=Peons,dc=bitwarden,dc=com", + email: "GanttK@c641e89a05dc4a0b90f1fb133a4ef5f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hans Raing,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hans Raing,ou=Payroll,dc=bitwarden,dc=com", + email: "RaingH@5527d18878ce414192acda3c6755e170.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melford Lopes,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melford Lopes,ou=Janitorial,dc=bitwarden,dc=com", + email: "LopesM@dabe1d11b71042a7a449964bb8bad569.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden,dc=com", + email: "KrumwieT@d041e9b74a124206a91f318978266966.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermina Ng,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hermina Ng,ou=Administrative,dc=bitwarden,dc=com", + email: "NgH@bc08bb83b4a9449f96909ee779df6288.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ren Schwenk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ren Schwenk,ou=Administrative,dc=bitwarden,dc=com", + email: "SchwenkR@01a39cd47fba422abe5be28943be33a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subramaniam Cranston,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Subramaniam Cranston,ou=Peons,dc=bitwarden,dc=com", + email: "CranstoS@7dae041718544c45a452ecb7fa3d7247.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coors Livas,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Coors Livas,ou=Management,dc=bitwarden,dc=com", + email: "LivasC@289444924c894df68dc76e9d8add4066.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arleyne Schreier,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Arleyne Schreier,ou=Product Development,dc=bitwarden,dc=com", + email: "SchreieA@eab743ec7e88405c97ab071366098384.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ko Yuen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ko Yuen,ou=Human Resources,dc=bitwarden,dc=com", + email: "YuenK@8fe8053cf30a4c47b93e0a3f02958712.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden,dc=com", + email: "VetranoK@974ece3e63104cd593ac8a6d9de7a620.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden,dc=com", + email: "KambohF@e1f0d918bf004e4781bc8a3f9e7beec7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden,dc=com", + email: "DorrellJ@8c9d5524ef4a437cbd972be9daff51a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HsingJu Kellogg,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=HsingJu Kellogg,ou=Peons,dc=bitwarden,dc=com", + email: "KelloggH@4b73d5c781bf4b6e9f4e5ee08640ddde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juanita Beisel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Juanita Beisel,ou=Product Development,dc=bitwarden,dc=com", + email: "BeiselJ@1f7da6ad1bec427086c129ba155297d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jackson Forbes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jackson Forbes,ou=Product Testing,dc=bitwarden,dc=com", + email: "ForbesJ@ce56c75a600546b9ade2ff9aaa1b992b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bethina Rosvick,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bethina Rosvick,ou=Peons,dc=bitwarden,dc=com", + email: "RosvickB@ade29194809c470d9cdfd87fd5b67232.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Osama Bitton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Osama Bitton,ou=Peons,dc=bitwarden,dc=com", + email: "BittonO@39518f40f570412d8781523094828b83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Douglass Eales,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Douglass Eales,ou=Janitorial,dc=bitwarden,dc=com", + email: "EalesD@fda558d35380465a89fa3c01f8acc3f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linh Ostifichuk,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Linh Ostifichuk,ou=Peons,dc=bitwarden,dc=com", + email: "OstificL@d324387fa53747b48c6c4daf8c273d2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonor Hepburn,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Leonor Hepburn,ou=Peons,dc=bitwarden,dc=com", + email: "HepburnL@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Umesh Mayhugh,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Umesh Mayhugh,ou=Management,dc=bitwarden,dc=com", + email: "MayhughU@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cecile Chorley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cecile Chorley,ou=Administrative,dc=bitwarden,dc=com", + email: "ChorleyC@92468910821a458ca936a273ecde380f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alia Kuehne,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alia Kuehne,ou=Peons,dc=bitwarden,dc=com", + email: "KuehneA@4440d5a8c29244aaa65d7ce99130f973.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden,dc=com", + email: "PelkieP@4db0de6fc0354c61b2c3ca3477ce6f09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fernando Pacey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fernando Pacey,ou=Product Development,dc=bitwarden,dc=com", + email: "PaceyF@7a081f2b6b9244909f5b879d315b7d98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sela Sandlford,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sela Sandlford,ou=Management,dc=bitwarden,dc=com", + email: "SandlfoS@5590d64af7534c85b57333acc4273b5d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Latashia McCuaig,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Latashia McCuaig,ou=Peons,dc=bitwarden,dc=com", + email: "McCuaigL@89d246bbdd9b435a85f71ab6a1baf316.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dara Goodwin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dara Goodwin,ou=Human Resources,dc=bitwarden,dc=com", + email: "GoodwinD@96301228f26045a98bca1aa7a6828ccb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helli Charlino,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Helli Charlino,ou=Peons,dc=bitwarden,dc=com", + email: "CharlinH@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden,dc=com", + email: "MacCartD@599d357394854e689476d822b0b57fa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erhard Ikeda,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Erhard Ikeda,ou=Administrative,dc=bitwarden,dc=com", + email: "IkedaE@91023564560e4387b5bc8c338afb8d2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perrin Lai,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Perrin Lai,ou=Peons,dc=bitwarden,dc=com", + email: "LaiP@191560c093d04e6eb83773b23b4a75c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vickie Bardsley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vickie Bardsley,ou=Peons,dc=bitwarden,dc=com", + email: "BardsleV@34b9dab44b4c429bac836e963718507e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden,dc=com", + email: "UhlY@2e914230190e4b26af40b18447e81c89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden,dc=com", + email: "GavensJ@48d89f6366ec4bc9a3dc2bca58802c17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katherin Habert,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Katherin Habert,ou=Administrative,dc=bitwarden,dc=com", + email: "HabertK@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden,dc=com", + email: "StultsM@a94f02e2207d4ffea5ed4b894690e8bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nobuko Prickett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nobuko Prickett,ou=Peons,dc=bitwarden,dc=com", + email: "PricketN@7a0a42a221e54534bde4f77162bffa38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amye Seery,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Amye Seery,ou=Human Resources,dc=bitwarden,dc=com", + email: "SeeryA@5a862ee432d84b02b5e7449c7e7e57de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Illinois Bolgos,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Illinois Bolgos,ou=Peons,dc=bitwarden,dc=com", + email: "BolgosI@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandro Ploof,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sandro Ploof,ou=Product Testing,dc=bitwarden,dc=com", + email: "PloofS@5b74ae7e4b63404ca474f585b4fa1a15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Turgay Potesta,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Turgay Potesta,ou=Human Resources,dc=bitwarden,dc=com", + email: "PotestaT@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debi Hore,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Debi Hore,ou=Payroll,dc=bitwarden,dc=com", + email: "HoreD@399088e535dc444183a128d7fd1a5d16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leyla Toulson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Leyla Toulson,ou=Janitorial,dc=bitwarden,dc=com", + email: "ToulsonL@4fdb4b1142dd43e2b745e38a2e8dcfc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morris Asghar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Morris Asghar,ou=Janitorial,dc=bitwarden,dc=com", + email: "AsgharM@dd44ac1957c74a4cb7889302d7ebe0e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eirik Satkamp,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eirik Satkamp,ou=Payroll,dc=bitwarden,dc=com", + email: "SatkampE@a58e2e7328b140e6b9088aee54dad46e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Asghar Graziano,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Asghar Graziano,ou=Product Testing,dc=bitwarden,dc=com", + email: "GrazianA@ed467736f9c84503b862ff0dede491f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randee McIntee,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Randee McIntee,ou=Management,dc=bitwarden,dc=com", + email: "McInteeR@51d2d36aebb34355849c7e53ff1c0f7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magnolia Aderhold,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Magnolia Aderhold,ou=Peons,dc=bitwarden,dc=com", + email: "AderholM@af1c936dc969478a898b38c058f5ed5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gert Thibert,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gert Thibert,ou=Administrative,dc=bitwarden,dc=com", + email: "ThibertG@df1e12962002409b9a20ed25bb4fc517.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hunter Durant,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hunter Durant,ou=Payroll,dc=bitwarden,dc=com", + email: "DurantH@4a47eda5b0994d6aac96fd9eb9bf327f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luci Gergen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Luci Gergen,ou=Administrative,dc=bitwarden,dc=com", + email: "GergenL@7ac0e2ad61544d40bfea2cd31be985e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", + email: "SamsoneT@a36ae0077844436e8862dc02ec43b8a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yousef Musick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Yousef Musick,ou=Product Testing,dc=bitwarden,dc=com", + email: "MusickY@2a9b1bb4219c473fa5e7f0b996562330.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shabbir Derganc,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shabbir Derganc,ou=Peons,dc=bitwarden,dc=com", + email: "DergancS@fcae2d9ced4b428b9a9d2a090c1d7f7e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amalita Korey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Amalita Korey,ou=Janitorial,dc=bitwarden,dc=com", + email: "KoreyA@7f43ce627c55498db87bd6bc96b3db06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herbie Merrils,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Herbie Merrils,ou=Product Testing,dc=bitwarden,dc=com", + email: "MerrilsH@ea8c137275494c24a45d33c847e472b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YuenPui Woodford,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=YuenPui Woodford,ou=Product Development,dc=bitwarden,dc=com", + email: "WoodforY@352885b42f264ade8eacdfa709cc8cc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mair Dobransky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mair Dobransky,ou=Administrative,dc=bitwarden,dc=com", + email: "DobransM@fb42541289ea4a75a098aa5071cf2a78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fae Molson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fae Molson,ou=Management,dc=bitwarden,dc=com", + email: "MolsonF@88e71895091a44a391aaaea86b3a2139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subhash Moizer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Subhash Moizer,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoizerS@1a8c60a83e6243159e036bc3f0b25375.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosella Spillane,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosella Spillane,ou=Peons,dc=bitwarden,dc=com", + email: "SpillanR@7d0b6de1366f4854a2055e12fa1d2f25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Persis Modi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Persis Modi,ou=Payroll,dc=bitwarden,dc=com", + email: "ModiP@e01f22d28f98422baeb51e5c86b12ea4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamar Haggart,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tamar Haggart,ou=Payroll,dc=bitwarden,dc=com", + email: "HaggartT@0bbb8d3aae5445bdac2a449666fb01f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orelie Cheval,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Orelie Cheval,ou=Payroll,dc=bitwarden,dc=com", + email: "ChevalO@ad4f2c28add24fbaa47ce2429cc8c126.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronna Morton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ronna Morton,ou=Product Development,dc=bitwarden,dc=com", + email: "MortonR@bf06b384703e4fb1b93b31fc9bbac8e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eryn Avirett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Eryn Avirett,ou=Human Resources,dc=bitwarden,dc=com", + email: "AvirettE@764613c40e224c12ab1c1cb80b18e644.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden,dc=com", + email: "MinegisY@76c064fc8a52468faf02f6f037383b43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChuahA@7fd0c28d96684690bb3ec812bcbe54dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rowe Firment,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rowe Firment,ou=Payroll,dc=bitwarden,dc=com", + email: "FirmentR@341209807c3b449193b094017d62cb24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fidela Irving,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fidela Irving,ou=Product Development,dc=bitwarden,dc=com", + email: "IrvingF@edc642e0d4114142a514590d284702bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden,dc=com", + email: "HawryluG@b1b7656e019d440a9a3ca7d6d074faa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desire Rutter,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Desire Rutter,ou=Administrative,dc=bitwarden,dc=com", + email: "RutterD@17dcf13b7e684c4a9ba2dcc27a684a76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xaviera Anstead,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Xaviera Anstead,ou=Management,dc=bitwarden,dc=com", + email: "AnsteadX@c7ac29b8c7544beabc5b51db5b6a9b3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelsi McAlister,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kelsi McAlister,ou=Management,dc=bitwarden,dc=com", + email: "McAlistK@78b14e83ea6c430b9dbf5891d9c7ea13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marce Onyshko,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marce Onyshko,ou=Janitorial,dc=bitwarden,dc=com", + email: "OnyshkoM@cd70627629114669966294343a84f460.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Son AlBasi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Son AlBasi,ou=Peons,dc=bitwarden,dc=com", + email: "AlBasiS@380d2cfedb114628852f31e5ec3504d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden,dc=com", + email: "BurroweZ@42ed2713079345ee9a1fa2e4e2a26d0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julianne Temp,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Julianne Temp,ou=Administrative,dc=bitwarden,dc=com", + email: "TempJ@d90060a8a6214d68a708f85a619deb45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seamus Sathe,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Seamus Sathe,ou=Human Resources,dc=bitwarden,dc=com", + email: "SatheS@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terra Tanatichat,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Terra Tanatichat,ou=Product Development,dc=bitwarden,dc=com", + email: "TanaticT@228cb153fdc24b46957a116ec2859b16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden,dc=com", + email: "HazeltoC@51972c3fcd684339942be0fdc3e53b2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emil Hogeboom,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Emil Hogeboom,ou=Administrative,dc=bitwarden,dc=com", + email: "HogebooE@e6ed933c0a1d45ec83769226267acd7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anup Volkmer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anup Volkmer,ou=Human Resources,dc=bitwarden,dc=com", + email: "VolkmerA@6e287118b6904f0fb9c650aef9285536.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kevin Tangren,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kevin Tangren,ou=Human Resources,dc=bitwarden,dc=com", + email: "TangrenK@1f071e8813ad43c0a975571fab76b110.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden,dc=com", + email: "LamoureM@a71c06be904c4f5a89c92e6a220b8c20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Germaine Lisak,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Germaine Lisak,ou=Product Testing,dc=bitwarden,dc=com", + email: "LisakG@83ae92312ed14d6f8e9439baa2583cab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deni Chea,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Deni Chea,ou=Management,dc=bitwarden,dc=com", + email: "CheaD@8743427566014d61952feea02c990670.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden,dc=com", + email: "OrtizG@e0abe3f47abe4097a988502110393014.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden,dc=com", + email: "DittburA@8ae5753568884557b826bbbe6815b824.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jooran Hilton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jooran Hilton,ou=Peons,dc=bitwarden,dc=com", + email: "HiltonJ@22805ca86db349db82f4caa9262213d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pramod Piltz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pramod Piltz,ou=Administrative,dc=bitwarden,dc=com", + email: "PiltzP@ffa8cd3aeeee4cfeb19b5276a68d00ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reyaud Kurio,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Reyaud Kurio,ou=Management,dc=bitwarden,dc=com", + email: "KurioR@c7060db9738740d2956d55565559b7e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden,dc=com", + email: "BesseyW@a97141a360d8445daa6a6439dfbbd290.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden,dc=com", + email: "DiLoretS@553a74428bb643038d327a6c4003715b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Radio DiNinno,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Radio DiNinno,ou=Janitorial,dc=bitwarden,dc=com", + email: "DiNinnoR@954e6390e22749f58bb26b8cbf617fd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden,dc=com", + email: "GaspardC@6b282dc55aa94d768c03263feaea873d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cynde Tudo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cynde Tudo,ou=Peons,dc=bitwarden,dc=com", + email: "TudoC@34b8819121134165801d80019693f357.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genga Huor,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Genga Huor,ou=Administrative,dc=bitwarden,dc=com", + email: "HuorG@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden,dc=com", + email: "ProdmfgS@8342e98dcb144504925e856ae40dc976.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leandra Steffy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leandra Steffy,ou=Administrative,dc=bitwarden,dc=com", + email: "SteffyL@fde818a61bf74c84a96e4a6b3a93254c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden,dc=com", + email: "MilakovN@173a9f8ca9674f02b63ed62bf1ee045c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden,dc=com", + email: "NonkesO@3ae9bbbfe6944aab8c1da1dd2e25c83e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trisha Walpole,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Trisha Walpole,ou=Peons,dc=bitwarden,dc=com", + email: "WalpoleT@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valli Buzzell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Valli Buzzell,ou=Administrative,dc=bitwarden,dc=com", + email: "BuzzellV@b847cd495a564fd88ad378e323d86f9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gita Manuszak,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gita Manuszak,ou=Management,dc=bitwarden,dc=com", + email: "ManuszaG@f9d71b3d7756421faee1ebdbe5841d08.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadru Suda,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sadru Suda,ou=Human Resources,dc=bitwarden,dc=com", + email: "SudaS@cc31cd53eb2f42d5bed8552ceaa8d352.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susana Mattes,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Susana Mattes,ou=Administrative,dc=bitwarden,dc=com", + email: "MattesS@143f4decc1ea4d51bb83bcbd0e097784.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diannne Geuder,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Diannne Geuder,ou=Peons,dc=bitwarden,dc=com", + email: "GeuderD@b22ff28e3c9d44f9a2be9fd304adde71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden,dc=com", + email: "PalermoL@79732267294c4ff69a75a9c93c8c2c5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ned Faletti,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ned Faletti,ou=Management,dc=bitwarden,dc=com", + email: "FalettiN@4f1a95a3a24b45ab865ea73c936d9882.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwenni Felske,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gwenni Felske,ou=Peons,dc=bitwarden,dc=com", + email: "FelskeG@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coretta Mayne,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Coretta Mayne,ou=Management,dc=bitwarden,dc=com", + email: "MayneC@d53702797f754da285804836fd6dc130.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden,dc=com", + email: "INFOMANM@0755ab53fc1e4e03afc45f28e9749da3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cissiee Hampton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cissiee Hampton,ou=Administrative,dc=bitwarden,dc=com", + email: "HamptonC@974ece3e63104cd593ac8a6d9de7a620.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalina Fangio,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kalina Fangio,ou=Management,dc=bitwarden,dc=com", + email: "FangioK@937ccb2001694e2680b8217ebfc1227e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petter Sarna,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Petter Sarna,ou=Management,dc=bitwarden,dc=com", + email: "SarnaP@a08a36a3e7a643d9a21fd4a80adf64e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nando Shurtleff,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nando Shurtleff,ou=Management,dc=bitwarden,dc=com", + email: "ShurtleN@e2ee1ddb67844a4eb1bfd125d596f6dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valene St,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Valene St,ou=Administrative,dc=bitwarden,dc=com", + email: "StV@e62b6bada3794f6abc6e683f712748b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elysia Swiat,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elysia Swiat,ou=Administrative,dc=bitwarden,dc=com", + email: "SwiatE@3a43957f1ee74e77816af0da1f628f5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yonik Valerien,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Yonik Valerien,ou=Administrative,dc=bitwarden,dc=com", + email: "ValerieY@1def8313ad68443a9c5bea174f8d550c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jania Clouthier,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jania Clouthier,ou=Management,dc=bitwarden,dc=com", + email: "ClouthiJ@570987c9633d4a6fa09773cb5695f8f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lennart Whang,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lennart Whang,ou=Management,dc=bitwarden,dc=com", + email: "WhangL@27b3ace1dd6948c9b5b4ab8ce5109020.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShileyT@df4c81c501de459185b071b55cec7800.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hala Wallis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hala Wallis,ou=Payroll,dc=bitwarden,dc=com", + email: "WallisH@d1b4a8f4bfcd4e2c9e8835bd8152821a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Levy Younger,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Levy Younger,ou=Product Testing,dc=bitwarden,dc=com", + email: "YoungerL@bd95fb0b94e54dbeaa76998f864c682b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rahel Strober,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rahel Strober,ou=Human Resources,dc=bitwarden,dc=com", + email: "StroberR@b10541570bad45a48e9ecd8a1385a852.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Casi Swick,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Casi Swick,ou=Peons,dc=bitwarden,dc=com", + email: "SwickC@96ba8081521e4fe79c79c0f0b9ef5643.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dimitrios Coop,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dimitrios Coop,ou=Payroll,dc=bitwarden,dc=com", + email: "CoopD@66a31a3d20a943048dbdda8f5b8317cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elga Ashton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elga Ashton,ou=Payroll,dc=bitwarden,dc=com", + email: "AshtonE@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harley Streatfield,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Harley Streatfield,ou=Human Resources,dc=bitwarden,dc=com", + email: "StreatfH@c04c96e3607342d4a6bf3509ce60159a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khamdy Quinn,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Khamdy Quinn,ou=Payroll,dc=bitwarden,dc=com", + email: "QuinnK@2c1574455ead4b0fb0046ceddcdf6a0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devan Kashima,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Devan Kashima,ou=Human Resources,dc=bitwarden,dc=com", + email: "KashimaD@94871f5c5c9f4476ab9f2c6fcd362b35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regine Frizado,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Regine Frizado,ou=Payroll,dc=bitwarden,dc=com", + email: "FrizadoR@60ec121ba9714e3489eb920608ad92c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roger Bondurant,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Roger Bondurant,ou=Peons,dc=bitwarden,dc=com", + email: "BonduraR@91bb90ade3ed45329bdbe468ae424f00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Taffy Solkoff,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Taffy Solkoff,ou=Administrative,dc=bitwarden,dc=com", + email: "SolkoffT@5059d6584df44d409840773250e30d06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden,dc=com", + email: "LeonharM@7012522876084229bee482efdda1e27f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden,dc=com", + email: "CunningM@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mame Muradia,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mame Muradia,ou=Human Resources,dc=bitwarden,dc=com", + email: "MuradiaM@462635d48ea740ba9a66cf325662e6a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden,dc=com", + email: "KrawchuH@91d86ca600e34a88b5fa8a48c064942b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirlee Mackey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shirlee Mackey,ou=Product Development,dc=bitwarden,dc=com", + email: "MackeyS@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terrye Redish,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Terrye Redish,ou=Product Development,dc=bitwarden,dc=com", + email: "RedishT@8f2591e5f396463da221dbcfdfd8f21f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Penelope Rey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Penelope Rey,ou=Human Resources,dc=bitwarden,dc=com", + email: "ReyP@6ba20748a72b4cee894c912c97374a56.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anthony Meyer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anthony Meyer,ou=Human Resources,dc=bitwarden,dc=com", + email: "MeyerA@0709c1c68975470c9ca0f7b0b26d3479.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dre McNerney,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dre McNerney,ou=Payroll,dc=bitwarden,dc=com", + email: "McNerneD@5f494e5d5c2b48bd9e0d3f42e62d76ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden,dc=com", + email: "FreeburC@713ec84902e3407ea7c47d43e09273a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brooks Drescher,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brooks Drescher,ou=Payroll,dc=bitwarden,dc=com", + email: "DrescheB@3bd17db97361499690e9a4a1c0655d19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandea Dziemian,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Brandea Dziemian,ou=Administrative,dc=bitwarden,dc=com", + email: "DziemiaB@f615417804714e2b90444d84fdf4c3ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candis Richer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Candis Richer,ou=Peons,dc=bitwarden,dc=com", + email: "RicherC@d5f78709240a4b7ea8f13e25bed4f996.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden,dc=com", + email: "FitzgerK@679765b52d394d7ba89a59f3e71121ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden,dc=com", + email: "HollenbH@27675f086a934218bc91689ddec78148.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ludovico Gleason,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ludovico Gleason,ou=Management,dc=bitwarden,dc=com", + email: "GleasonL@5b7e72dec03d45d4a2b2f3c9c9cd9206.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninette McTiernan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ninette McTiernan,ou=Management,dc=bitwarden,dc=com", + email: "McTiernN@7bdb7e04a26d459886f8fcaa0d3da8fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=TunLin Pinney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=TunLin Pinney,ou=Administrative,dc=bitwarden,dc=com", + email: "PinneyT@75d6e7c6ef474c5e97f655497c047d1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joshi Cassese,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Joshi Cassese,ou=Janitorial,dc=bitwarden,dc=com", + email: "CasseseJ@b2f73c176c104e9dad8630c2f13ec103.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miroslav StPierre,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Miroslav StPierre,ou=Management,dc=bitwarden,dc=com", + email: "StPierrM@ba8402a4d315465dbb751a651c142686.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sammy Krater,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sammy Krater,ou=Janitorial,dc=bitwarden,dc=com", + email: "KraterS@5b0366ebbad440278f42b372885b0850.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sapphira McCain,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sapphira McCain,ou=Peons,dc=bitwarden,dc=com", + email: "McCainS@daad5c4834094fe8a7fb1d49865ce62a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pierrette Discover,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pierrette Discover,ou=Payroll,dc=bitwarden,dc=com", + email: "DiscoveP@57489e8bbf1e49e181fb589ad5609ed3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ulf Willcox,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ulf Willcox,ou=Management,dc=bitwarden,dc=com", + email: "WillcoxU@fe15495430cf4a14818cfd7560baaf99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmen Trame,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carmen Trame,ou=Administrative,dc=bitwarden,dc=com", + email: "TrameC@fd22571d8af640feaa4dd26e71d415f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cornelia Karim,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cornelia Karim,ou=Peons,dc=bitwarden,dc=com", + email: "KarimC@d0d4dffbb82e4dbdbf12aa7aeb40f542.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden,dc=com", + email: "KrikoriR@bf9abf080c8e473981cdddb36932f679.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden,dc=com", + email: "JagodziI@406a5f63a2784737a47e7de7eb972559.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roobbie Stars,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Roobbie Stars,ou=Payroll,dc=bitwarden,dc=com", + email: "StarsR@c754a8f7d7fa49ebaf2160183ff968df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharee Wynes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sharee Wynes,ou=Product Testing,dc=bitwarden,dc=com", + email: "WynesS@1ca19b62d3954b7bb5f9d3604d3a6b84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZauharS@e859fe816a744187a2626d82cb0ba406.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden,dc=com", + email: "HollenbF@584a3cc4e33b4aba88136456bbc15fd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sil Marano,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sil Marano,ou=Peons,dc=bitwarden,dc=com", + email: "MaranoS@6312a8bfcfc64f4fa1700b6ca4b67dc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonor Maginley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Leonor Maginley,ou=Human Resources,dc=bitwarden,dc=com", + email: "MaginleL@06bce776ad5946a6be606d0392cec3ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicoline Magee,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nicoline Magee,ou=Human Resources,dc=bitwarden,dc=com", + email: "MageeN@98c506bf5a294f7a9f046f2404687224.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Penang Musca,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Penang Musca,ou=Janitorial,dc=bitwarden,dc=com", + email: "MuscaP@0834bcacddfd4229b6702a62e2551569.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden,dc=com", + email: "CampagnC@9fbf462dffb84d01b4efd7ea06cb46c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlos Smyth,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carlos Smyth,ou=Payroll,dc=bitwarden,dc=com", + email: "SmythC@964166b8cdd041c68aaae270afb90271.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden,dc=com", + email: "HarapiaR@83e659b7a46148c68a7895067104477c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evania Copello,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Evania Copello,ou=Management,dc=bitwarden,dc=com", + email: "CopelloE@b4622719a7ee45c98d3b8a7b78001ff6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jamie Tschaja,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jamie Tschaja,ou=Peons,dc=bitwarden,dc=com", + email: "TschajaJ@fa528be784314ab7a2c058d1610cf1bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thang Dallaire,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Thang Dallaire,ou=Human Resources,dc=bitwarden,dc=com", + email: "DallairT@dd8de5abce6e4941a35b4e391450cd5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphine Chandra,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Daphine Chandra,ou=Administrative,dc=bitwarden,dc=com", + email: "ChandraD@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ohio Baerg,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ohio Baerg,ou=Payroll,dc=bitwarden,dc=com", + email: "BaergO@20652fd58932448b926b6d40287545d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden,dc=com", + email: "KirouacW@40d320f39b3b4ec6b2aa4be872b12e34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden,dc=com", + email: "TorrealO@a662180554134ff2859bfab952c71e82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Else Brien,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Else Brien,ou=Administrative,dc=bitwarden,dc=com", + email: "BrienE@1f52489263294bdcb74bf08e15dc639b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giampaolo Gu,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Giampaolo Gu,ou=Payroll,dc=bitwarden,dc=com", + email: "GuG@8274c561263849f296aeed4664c2eecc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seven Tregenza,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Seven Tregenza,ou=Peons,dc=bitwarden,dc=com", + email: "TregenzS@b7db7b74741043f1bc70179c65d8c474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rakel Ressner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rakel Ressner,ou=Peons,dc=bitwarden,dc=com", + email: "RessnerR@2a906f1560284502a1b19f87829f93ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden,dc=com", + email: "MeseberE@572f2e7cd4c540ba82bdf3291fc77e32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChapdelM@bfbe96af9d94476ba3dcfc88f7bdf41b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Britney Prestia,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Britney Prestia,ou=Peons,dc=bitwarden,dc=com", + email: "PrestiaB@e6c11ea0a5f743ce85492782888f6da6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jonathan Guty,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jonathan Guty,ou=Janitorial,dc=bitwarden,dc=com", + email: "GutyJ@7bf8a8dbfcea42b08cac76925d0219d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Livvy Hoag,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Livvy Hoag,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoagL@9be993140021475092d7ba3a41ede5b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rennie Postolek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rennie Postolek,ou=Janitorial,dc=bitwarden,dc=com", + email: "PostoleR@1866a7eb1fab4dc78251b68a046aa8f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jayesh Liao,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jayesh Liao,ou=Peons,dc=bitwarden,dc=com", + email: "LiaoJ@c8b8d0d540194a31b14e399b8e0ac7ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffany Fougere,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tiffany Fougere,ou=Management,dc=bitwarden,dc=com", + email: "FougereT@6f03f1adf7c149889e4e46274861a90d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darline Swinson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Darline Swinson,ou=Payroll,dc=bitwarden,dc=com", + email: "SwinsonD@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Biddie Scp,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Biddie Scp,ou=Management,dc=bitwarden,dc=com", + email: "ScpB@c536300f550c4bf4aefa167ad65dc37b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colin Irick,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Colin Irick,ou=Product Development,dc=bitwarden,dc=com", + email: "IrickC@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yueli Clinger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yueli Clinger,ou=Peons,dc=bitwarden,dc=com", + email: "ClingerY@40544cfce21b453a8a348a622d569594.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden,dc=com", + email: "SimonseW@9342f9a1c6b2408b96d8cb0c883aae65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randa Wery,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Randa Wery,ou=Payroll,dc=bitwarden,dc=com", + email: "WeryR@a5373e4d5e704daba1d3dbf799f28ac8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theodor Schute,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Theodor Schute,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchuteT@37c3227000a74816851448e0169c372e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden,dc=com", + email: "SimonovD@f4e75eb09db6479c9f66375f6d4f78a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keeley Basa,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Keeley Basa,ou=Management,dc=bitwarden,dc=com", + email: "BasaK@527588b4f1b4422fb6b034c9d08f2576.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mimi Clements,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mimi Clements,ou=Human Resources,dc=bitwarden,dc=com", + email: "ClementM@16269c126bd14ac9a93025afee70dceb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden,dc=com", + email: "VenguswI@736366bf947d4889a5087519dbc9eaff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dasi Baader,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dasi Baader,ou=Human Resources,dc=bitwarden,dc=com", + email: "BaaderD@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kerrin Miner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kerrin Miner,ou=Human Resources,dc=bitwarden,dc=com", + email: "MinerK@59a0bbafd91247c6851ee2f7bf13b081.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tania Guimond,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tania Guimond,ou=Peons,dc=bitwarden,dc=com", + email: "GuimondT@177be20238ac48a3b552f8e87a11e1b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden,dc=com", + email: "HendrikN@8fd38b10138d41afbb37c8037aaf6377.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hedvige Doran,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hedvige Doran,ou=Management,dc=bitwarden,dc=com", + email: "DoranH@27bcaa4785014c5c91369f5095a41ea2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden,dc=com", + email: "AndruzzA@a5d6a2bda97a44e782e3c73dfaefdb63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diahann Nason,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Diahann Nason,ou=Peons,dc=bitwarden,dc=com", + email: "NasonD@8a594838d3824283aa7aa83d94d57d44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leecia Guarino,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leecia Guarino,ou=Administrative,dc=bitwarden,dc=com", + email: "GuarinoL@0c6cf7ff0570476c863c26cda41eed02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kacie Moyano,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kacie Moyano,ou=Management,dc=bitwarden,dc=com", + email: "MoyanoK@053c075cfea943a49184d56a51ed4603.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dicky Guignon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dicky Guignon,ou=Product Testing,dc=bitwarden,dc=com", + email: "GuignonD@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobbie Suwala,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bobbie Suwala,ou=Peons,dc=bitwarden,dc=com", + email: "SuwalaB@ff314e0aa2d4448bb24e44e3596bf8bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melissa Adkinson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Melissa Adkinson,ou=Peons,dc=bitwarden,dc=com", + email: "AdkinsoM@770389a9db90496190b610f069530ad6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgine Lantto,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Georgine Lantto,ou=Peons,dc=bitwarden,dc=com", + email: "LanttoG@5320b952794a47b19c6e19d7dbdf3f99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden,dc=com", + email: "GillesS@3b8e28899e6c47f3b2c13e23a394c405.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnnie Mayes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Johnnie Mayes,ou=Management,dc=bitwarden,dc=com", + email: "MayesJ@c3e5be71fdd14cfab6350245e2c34701.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden,dc=com", + email: "KozlowsS@0854599c24014bdf969745fad472960b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anker Serapin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anker Serapin,ou=Management,dc=bitwarden,dc=com", + email: "SerapinA@13e3dc6812b646519614bfe380e524a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mable Thirugnanam,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mable Thirugnanam,ou=Management,dc=bitwarden,dc=com", + email: "ThirugnM@0f6317f19e074d3eacd8b09d7fafccf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allan Rizewiski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Allan Rizewiski,ou=Management,dc=bitwarden,dc=com", + email: "RizewisA@36bc6957b14948c298f68fedb3e83da0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peng Quantrill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Peng Quantrill,ou=Product Testing,dc=bitwarden,dc=com", + email: "QuantriP@5b8fdd487f414248bc005f588420c84d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Addy Paunins,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Addy Paunins,ou=Janitorial,dc=bitwarden,dc=com", + email: "PauninsA@65678c07e8734c7890d5cf5e76fde9cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Friederike Constable,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Friederike Constable,ou=Human Resources,dc=bitwarden,dc=com", + email: "ConstabF@2a2c0e37e6624d4cbca590425919a502.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Starlene Solodko,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Starlene Solodko,ou=Payroll,dc=bitwarden,dc=com", + email: "SolodkoS@1f2d8d4c2ab74a83be61634a4213379d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verene Ludchen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Verene Ludchen,ou=Janitorial,dc=bitwarden,dc=com", + email: "LudchenV@6fe2230bebbe45c4b4897cbd6f689c6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Curtis Mersch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Curtis Mersch,ou=Janitorial,dc=bitwarden,dc=com", + email: "MerschC@d73ef9502e9045388e89e90d1beb22e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Piper Brander,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Piper Brander,ou=Administrative,dc=bitwarden,dc=com", + email: "BranderP@1365456b38df40e8b356de5ec434637e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden,dc=com", + email: "BerenbaB@2a0cae73d63c458d9d5daaf71efd50df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozalin Heppes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rozalin Heppes,ou=Product Development,dc=bitwarden,dc=com", + email: "HeppesR@7016343b9c7c41d58eb428f022d1c9f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden,dc=com", + email: "DropBoxM@812ac6eec5fc41f6927bb014fa31a1aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cad Ajersch,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cad Ajersch,ou=Human Resources,dc=bitwarden,dc=com", + email: "AjerschC@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=TakWai Wagoner,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=TakWai Wagoner,ou=Administrative,dc=bitwarden,dc=com", + email: "WagonerT@f190d7cfec0941b2829b0757aff4e20f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden,dc=com", + email: "RamachaM@1d184a251b65443396a8cb4416166285.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carran Rokas,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carran Rokas,ou=Administrative,dc=bitwarden,dc=com", + email: "RokasC@5a771b0086d24bceafcaac2a637338d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idus Wayling,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Idus Wayling,ou=Human Resources,dc=bitwarden,dc=com", + email: "WaylingI@4a7f898eb8954829907d34eeb46064e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryann Somerville,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maryann Somerville,ou=Janitorial,dc=bitwarden,dc=com", + email: "SomerviM@f0291ad4694a4c4989e17e0aede36a7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mildred Dumas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mildred Dumas,ou=Product Testing,dc=bitwarden,dc=com", + email: "DumasM@993e28bbac384cdfa91177630e4e7ee6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilda Bisson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ilda Bisson,ou=Payroll,dc=bitwarden,dc=com", + email: "BissonI@1a3958d626a64b60bde6bf0034916d09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden,dc=com", + email: "AfkhameA@8be485b278d14bd09bb99f460e4b8889.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden,dc=com", + email: "SeayS@982a9dc04ec64d818da9977446a91014.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Babb Nicolle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Babb Nicolle,ou=Management,dc=bitwarden,dc=com", + email: "NicolleB@d9c6a4248c7f4569bc85ec9d29b8d415.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karyn Pagani,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Karyn Pagani,ou=Product Testing,dc=bitwarden,dc=com", + email: "PaganiK@4e7c646d43994aefbe621ec9a0481c2c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden,dc=com", + email: "RahrerT@54ce292eb157498aac7b1683764ec867.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnola MacRae,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Agnola MacRae,ou=Administrative,dc=bitwarden,dc=com", + email: "MacRaeA@0d089601fe8d4842aca2c104051c6a49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tessi Borha,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tessi Borha,ou=Peons,dc=bitwarden,dc=com", + email: "BorhaT@ebda9764758246a4bb15c2161573a88b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonia OToole,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tonia OToole,ou=Product Development,dc=bitwarden,dc=com", + email: "OTooleT@fd421e6c5b5a481fb2a85be843f33d5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden,dc=com", + email: "ThomaieX@fc97577a08a94700a5a94546b6e00dae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gheorghe Eros,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gheorghe Eros,ou=Management,dc=bitwarden,dc=com", + email: "ErosG@9f934672a4d04b0083671f6289891300.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden,dc=com", + email: "DautenhH@ae44e6b70ddd49aaaf586776542680b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden,dc=com", + email: "EmeshW@0d0f9cb8c311472e8db0a980c10d0d76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robina Chaikowsky,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Robina Chaikowsky,ou=Peons,dc=bitwarden,dc=com", + email: "ChaikowR@b0cf0a9a60924176bbfa4764c3650166.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", + email: "WasylykV@c5f103343b7e4b25bc1a4d2fdd71d622.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ursala Wadden,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ursala Wadden,ou=Management,dc=bitwarden,dc=com", + email: "WaddenU@2c712498ce76440fbd827369876f0a82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden,dc=com", + email: "BonnefoE@ad623334663c4947b77eb81b44ea11ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden,dc=com", + email: "VerkrooY@11c71c9968bd42f7992b3fededa67ace.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sephira Munsey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sephira Munsey,ou=Product Development,dc=bitwarden,dc=com", + email: "MunseyS@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neal Astle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Neal Astle,ou=Management,dc=bitwarden,dc=com", + email: "AstleN@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden,dc=com", + email: "DermardM@0cf6d44baded4f949aa6f553554f8d65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vacman Lapostolle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vacman Lapostolle,ou=Management,dc=bitwarden,dc=com", + email: "LapostoV@8dfa40622d12496d8e4833fcf53dcbd6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genna Rappoport,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Genna Rappoport,ou=Management,dc=bitwarden,dc=com", + email: "RappopoG@88d79029cf4a42f2bfb0339dce25f1ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenny Mundi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lenny Mundi,ou=Administrative,dc=bitwarden,dc=com", + email: "MundiL@ee8fbaff37fe43098ee69cb9ce7da138.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden,dc=com", + email: "MurdaugJ@dd6d4c6b1dd34999828d0c453a81ce8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden,dc=com", + email: "GaudetMK@36a375859cdd487ea0bae44e1c40b92f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Iva Pilote,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Iva Pilote,ou=Human Resources,dc=bitwarden,dc=com", + email: "PiloteI@c1ba14a57c91416b9263e6ed2bcbb54e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caridad Spolar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Caridad Spolar,ou=Product Testing,dc=bitwarden,dc=com", + email: "SpolarC@67e1d92e08fe4a64be64c20e9ec9029c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elenore Jatar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elenore Jatar,ou=Payroll,dc=bitwarden,dc=com", + email: "JatarE@f159a3a05dc14db0911c353e03a8ce19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Otha Scheffler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Otha Scheffler,ou=Product Development,dc=bitwarden,dc=com", + email: "SchefflO@80fa9db759cf45d8a9f0fb7fa92c1396.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janot Greenway,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Janot Greenway,ou=Human Resources,dc=bitwarden,dc=com", + email: "GreenwaJ@44fa0b06635a4a55b59882def7b69891.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rowan Hicks,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rowan Hicks,ou=Product Testing,dc=bitwarden,dc=com", + email: "HicksR@a3e17557b4384961a999c1890d509b79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bertina Harkness,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bertina Harkness,ou=Management,dc=bitwarden,dc=com", + email: "HarknesB@850cbba5cfd34abd81656df859ecb75f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden,dc=com", + email: "GrimbleC@a6e3e90234e3445ebd3b85eaa541b715.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Misbah Desautels,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Misbah Desautels,ou=Payroll,dc=bitwarden,dc=com", + email: "DesauteM@17893613ce1c4281965c9aa5767bbf90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=TakWai Miranda,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=TakWai Miranda,ou=Peons,dc=bitwarden,dc=com", + email: "MirandaT@4a0e814607ef4adf977758aa230a12dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blisse Silverman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Blisse Silverman,ou=Product Testing,dc=bitwarden,dc=com", + email: "SilvermB@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", + email: "SaidzadN@3fc70e948ed143488b3a65dc900da1f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden,dc=com", + email: "VasudevG@514c4dabf5514f759283b3fa82dba706.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nerty Longchamps,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nerty Longchamps,ou=Management,dc=bitwarden,dc=com", + email: "LongchaN@43f8c4083e544056b3c9e572e90b60ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden,dc=com", + email: "JaakkolA@4da7d564972d46f2924a6a8ae018f420.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilary Mendonca,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hilary Mendonca,ou=Peons,dc=bitwarden,dc=com", + email: "MendoncH@1b0566a255d64dd68603a81a67ba1612.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivien Seager,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vivien Seager,ou=Payroll,dc=bitwarden,dc=com", + email: "SeagerV@f2fa8ee45795461bbc9031c0c39e2316.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estele Dasch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Estele Dasch,ou=Janitorial,dc=bitwarden,dc=com", + email: "DaschE@f7b0e9e87641416f8b0c6d87c885e484.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joyous Belson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Joyous Belson,ou=Janitorial,dc=bitwarden,dc=com", + email: "BelsonJ@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zorine OLeary,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zorine OLeary,ou=Janitorial,dc=bitwarden,dc=com", + email: "OLearyZ@a19b5183a0f945f9a17fc014e4433008.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanata Kilby,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kanata Kilby,ou=Peons,dc=bitwarden,dc=com", + email: "KilbyK@340ca4c3449a4788b8cf0565433518e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peder Gaylor,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Peder Gaylor,ou=Janitorial,dc=bitwarden,dc=com", + email: "GaylorP@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carter MacMaid,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carter MacMaid,ou=Payroll,dc=bitwarden,dc=com", + email: "MacMaidC@f29a02eb60f740478f80d3c6d60d0269.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Man Dacre,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Man Dacre,ou=Human Resources,dc=bitwarden,dc=com", + email: "DacreM@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theresina Torrell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Theresina Torrell,ou=Administrative,dc=bitwarden,dc=com", + email: "TorrellT@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emelda Neely,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Emelda Neely,ou=Human Resources,dc=bitwarden,dc=com", + email: "NeelyE@c66e42835f2044cdbf51d67978ad100e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avinash Kingaby,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Avinash Kingaby,ou=Product Development,dc=bitwarden,dc=com", + email: "KingabyA@7f21c59f99c4477b9018498e8a1c114e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crysta Sloan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Crysta Sloan,ou=Peons,dc=bitwarden,dc=com", + email: "SloanC@97b3948d7aca41509a9b5d6b2dac6af7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Buck Auerbach,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Buck Auerbach,ou=Product Development,dc=bitwarden,dc=com", + email: "AuerbacB@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fallon Windom,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fallon Windom,ou=Payroll,dc=bitwarden,dc=com", + email: "WindomF@fa8dd30a7166419e97723182660d3ed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden,dc=com", + email: "GalluzzB@29091675735e43659fad673363e0d6e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden,dc=com", + email: "LacroixS@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Samir Wesenberg,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Samir Wesenberg,ou=Administrative,dc=bitwarden,dc=com", + email: "WesenbeS@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hildegaard Valko,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hildegaard Valko,ou=Management,dc=bitwarden,dc=com", + email: "ValkoH@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Azmina Irvine,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Azmina Irvine,ou=Peons,dc=bitwarden,dc=com", + email: "IrvineA@68fc69596c6045e19e9dcc172277d770.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cortland Kwa,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cortland Kwa,ou=Administrative,dc=bitwarden,dc=com", + email: "KwaC@08761145d0ee492388590ebc755ffc11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franz Artspssa,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Franz Artspssa,ou=Administrative,dc=bitwarden,dc=com", + email: "ArtspssF@c47a29535a2d448ab99d5532c1ef090b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden,dc=com", + email: "KingsleA@e510453d1c104238a1217f13ba1acf7e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marrissa Ronan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marrissa Ronan,ou=Peons,dc=bitwarden,dc=com", + email: "RonanM@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stanislas Sehgal,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stanislas Sehgal,ou=Management,dc=bitwarden,dc=com", + email: "SehgalS@b165e0007c404dd983e15ae72daa2756.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Woody Morocz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Woody Morocz,ou=Payroll,dc=bitwarden,dc=com", + email: "MoroczW@753c6429447d4f10a50d93378fa5dbb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karla Proffit,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karla Proffit,ou=Peons,dc=bitwarden,dc=com", + email: "ProffitK@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden,dc=com", + email: "NigamL@714f1bf2d24848f0ad123708496baebc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julianna Varughese,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Julianna Varughese,ou=Management,dc=bitwarden,dc=com", + email: "VarugheJ@2ad53b2716404c5fb1c859b311309552.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elset Neustifter,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elset Neustifter,ou=Peons,dc=bitwarden,dc=com", + email: "NeustifE@c3ac4e6d63bf42469f2e271613915683.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grete Daymond,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Grete Daymond,ou=Peons,dc=bitwarden,dc=com", + email: "DaymondG@e1917d4b55f54cdabe70551a3f731376.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thekla Wokoma,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Thekla Wokoma,ou=Management,dc=bitwarden,dc=com", + email: "WokomaT@9e5927de12b74c838a654764d2be5fec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sika Koller,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sika Koller,ou=Payroll,dc=bitwarden,dc=com", + email: "KollerS@ae0c95aead594ff9b592cce5fd7bcc50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sukey Strauss,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sukey Strauss,ou=Administrative,dc=bitwarden,dc=com", + email: "StraussS@5bc61e2f4a114bf3bbb2a4d0973b7fa5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Icy Foeppel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Icy Foeppel,ou=Product Development,dc=bitwarden,dc=com", + email: "FoeppelI@cbaf8ba54a4e4d25a6793e6fa4afc667.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yongli Barrows,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yongli Barrows,ou=Peons,dc=bitwarden,dc=com", + email: "BarrowsY@4790190082cb4f5abacc6cccbd58144a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xaviera Broca,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Xaviera Broca,ou=Product Development,dc=bitwarden,dc=com", + email: "BrocaX@a0c1a8d85b65449b85c62e8e6a7af57f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden,dc=com", + email: "AucoinS@0370bf4c8f0643cdbb05f71db44e6eda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden,dc=com", + email: "LowrieL@c754a8f7d7fa49ebaf2160183ff968df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Junette Foos,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Junette Foos,ou=Product Development,dc=bitwarden,dc=com", + email: "FoosJ@541638be8f3848afaf3f77f1a6d8871f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashraf Denter,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ashraf Denter,ou=Product Testing,dc=bitwarden,dc=com", + email: "DenterA@1f6908f83168487381e06e15278e01a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amelina Marceau,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amelina Marceau,ou=Management,dc=bitwarden,dc=com", + email: "MarceauA@cfc30ea4a75d4490969ab077dd8e92a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden,dc=com", + email: "HargreaD@96d9bfed88fc4c2fb6c7e654ef7ed3a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yuen Huppert,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yuen Huppert,ou=Product Development,dc=bitwarden,dc=com", + email: "HuppertY@4cf289446e164bf8828133d117ff1a2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vijai Bergeron,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vijai Bergeron,ou=Administrative,dc=bitwarden,dc=com", + email: "BergeroV@5781c2590a3143098713fe135c23c693.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden,dc=com", + email: "SaltamaI@a47f14ec57a442c6be46361f07eafc1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden,dc=com", + email: "SimzerS@0d49ff7674854a67967e989b8902a24c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diane Andersen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Diane Andersen,ou=Management,dc=bitwarden,dc=com", + email: "AnderseD@fde818a61bf74c84a96e4a6b3a93254c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jester Mannion,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jester Mannion,ou=Product Testing,dc=bitwarden,dc=com", + email: "MannionJ@b6e18f81bdff48d2be264df85bc74095.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christy Townsel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Christy Townsel,ou=Human Resources,dc=bitwarden,dc=com", + email: "TownselC@8227646c55034cf9b21757fce681b53f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden,dc=com", + email: "SandellB@3e500286762446ec8a3697b2944efa12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raine Assistance,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Raine Assistance,ou=Payroll,dc=bitwarden,dc=com", + email: "AssistaR@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden,dc=com", + email: "HoangG@e02ff45a3d1d4535aaac64a1cea6a68b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ireland Ciochon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ireland Ciochon,ou=Administrative,dc=bitwarden,dc=com", + email: "CiochonI@e6477a83acf9482988792cb439447756.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WaiMan Binner,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=WaiMan Binner,ou=Payroll,dc=bitwarden,dc=com", + email: "BinnerW@8cc6e0388936480cbe8d5339b6e6f58a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruperta Jodoin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ruperta Jodoin,ou=Peons,dc=bitwarden,dc=com", + email: "JodoinR@d3284c9107174588867290b3601e936f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Narrima Tu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Narrima Tu,ou=Human Resources,dc=bitwarden,dc=com", + email: "TuN@42514b410f5644f5ba762f40cca2f3cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden,dc=com", + email: "ArchibaE@753deba7c8fd4a2dae8fd98ba21902e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", + email: "PietropW@9a406ba2121745648c9bbba5e667d06f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeVriesL@621ecc47be084539a10e5521c8efa92f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elonore Spieker,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elonore Spieker,ou=Payroll,dc=bitwarden,dc=com", + email: "SpiekerE@4eb1edea9f7c46b6afcdd3596ca826d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pick Santella,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pick Santella,ou=Janitorial,dc=bitwarden,dc=com", + email: "SantellP@769e30d0f6604e35b8172b0e1fcd3695.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynea Newcomb,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lynea Newcomb,ou=Product Development,dc=bitwarden,dc=com", + email: "NewcombL@ca8ef169aecd439b84062b84d007e951.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yukinaga Brander,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yukinaga Brander,ou=Peons,dc=bitwarden,dc=com", + email: "BranderY@b400fcdf725047b698292665de84946c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jerrylee Galloway,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jerrylee Galloway,ou=Peons,dc=bitwarden,dc=com", + email: "GallowaJ@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mia Amarsi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mia Amarsi,ou=Peons,dc=bitwarden,dc=com", + email: "AmarsiM@b1b5d1efd1034316a83f5b2451301ba7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joyous Smecca,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Joyous Smecca,ou=Management,dc=bitwarden,dc=com", + email: "SmeccaJ@0a781c09ef6744b2865e8b65aa244d80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Larkin Baughan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Larkin Baughan,ou=Human Resources,dc=bitwarden,dc=com", + email: "BaughanL@cfc4bf2e36b5400ca6e0b6d8bcad286e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden,dc=com", + email: "CastenJ@39b12e29c92b4f519f2ec6d311b9ff35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lillis Tyler,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lillis Tyler,ou=Administrative,dc=bitwarden,dc=com", + email: "TylerL@70d36f0b334a42e2bb084b23945923e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosy Stctest,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rosy Stctest,ou=Human Resources,dc=bitwarden,dc=com", + email: "StctestR@fcbf2ef1cdb340fcb4c052a580a37b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Costas Zanetti,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Costas Zanetti,ou=Administrative,dc=bitwarden,dc=com", + email: "ZanettiC@b1f81108ccde47b8a2df0aba6ea7b365.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Technical Carpentier,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Technical Carpentier,ou=Product Testing,dc=bitwarden,dc=com", + email: "CarpentT@b7e1a16b9cde4b3eaeea7ec65d5e0355.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lanie Geesman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lanie Geesman,ou=Human Resources,dc=bitwarden,dc=com", + email: "GeesmanL@4b02224ed79d49068514723b7495859b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eydie Sliter,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Eydie Sliter,ou=Janitorial,dc=bitwarden,dc=com", + email: "SliterE@c14faf1ad0834d6d9e4b1880a48b9d9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trista Farag,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Trista Farag,ou=Product Development,dc=bitwarden,dc=com", + email: "FaragT@6553f6f625ef4decb458591c6b034f5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chery Greaver,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chery Greaver,ou=Product Testing,dc=bitwarden,dc=com", + email: "GreaverC@76c73cbc758e46b8951ff1931d80f8ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden,dc=com", + email: "DovydaiM@7146b0dabf794daa8f39018535047aad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden,dc=com", + email: "TannierB@d54865a52eaf482a9e519ad4811b26bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden,dc=com", + email: "BreedloG@5c9b9d5c8575423f84d184975eedd13e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katuscha Huor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Katuscha Huor,ou=Management,dc=bitwarden,dc=com", + email: "HuorK@c47a29535a2d448ab99d5532c1ef090b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bue Satta,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bue Satta,ou=Administrative,dc=bitwarden,dc=com", + email: "SattaB@52c0af83c3aa40458e4bfbccce98b0cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden,dc=com", + email: "GaudetS@503bf02919104cafa1d31446cc7f0505.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Justine Manolios,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Justine Manolios,ou=Administrative,dc=bitwarden,dc=com", + email: "ManolioJ@78f3e2c9e6614873ad31be2d1ce53b23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guenna Sullivan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Guenna Sullivan,ou=Peons,dc=bitwarden,dc=com", + email: "SullivaG@298f1a44ea7f452799d70af39fda7e0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden,dc=com", + email: "CelluccB@b3f72c79ff9a44a8bc1416079d9b6469.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", + email: "VitagliR@0371c25b461f4ad19b855c4d34af7211.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deb Sehmbey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Deb Sehmbey,ou=Management,dc=bitwarden,dc=com", + email: "SehmbeyD@ae1c8a23e1dd413a9249a93f83a32cff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gavra Skrobanski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gavra Skrobanski,ou=Peons,dc=bitwarden,dc=com", + email: "SkrobanG@708f514c40d3498b80918d7964115131.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gajendra Deibert,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gajendra Deibert,ou=Management,dc=bitwarden,dc=com", + email: "DeibertG@103bd05858c64a81aa3e2443bd1b0b6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yong Nuttall,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yong Nuttall,ou=Product Development,dc=bitwarden,dc=com", + email: "NuttallY@ca2c9c0aaeee459a81fa3d98c982e91a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siew Saiyed,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Siew Saiyed,ou=Product Testing,dc=bitwarden,dc=com", + email: "SaiyedS@3c4dbb6665a7445fa14802eb54e6a9d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Access McCullough,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Access McCullough,ou=Peons,dc=bitwarden,dc=com", + email: "McCulloA@33105c2098dd4c88945d3f8eafc36dc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charmion Sathe,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Charmion Sathe,ou=Management,dc=bitwarden,dc=com", + email: "SatheC@7152bab40da14de79b0ae747b744928c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilow Tools,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wilow Tools,ou=Human Resources,dc=bitwarden,dc=com", + email: "ToolsW@051b892e4657474a87006ab9ebfe221e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden,dc=com", + email: "BeaudinP@0f8613dd82654e89b45a34cb62ca4eb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden,dc=com", + email: "MatsuzaF@053cdccb3446469397047f2320d54d6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marylin Fradette,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marylin Fradette,ou=Product Development,dc=bitwarden,dc=com", + email: "FradettM@5208267913f745bcb26fb5107268d9fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bellina Capobianco,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bellina Capobianco,ou=Payroll,dc=bitwarden,dc=com", + email: "CapobiaB@7a8ab7eb659841c5a733e8ce0e681fba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darcee Stegall,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Darcee Stegall,ou=Peons,dc=bitwarden,dc=com", + email: "StegallD@108d9f732ac3490887754db53858df8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden,dc=com", + email: "CogginsM@44cd0ae3ed0a4c44a7cec68159d433e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonie Georgiou,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tonie Georgiou,ou=Administrative,dc=bitwarden,dc=com", + email: "GeorgioT@edf9173cd755418183d71bfbac4d7308.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vahe Jasen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vahe Jasen,ou=Peons,dc=bitwarden,dc=com", + email: "JasenV@5d8558331520489684cb760b329247ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden,dc=com", + email: "KalnitsH@ffa895bc8daa4c0f81a78140a99f5460.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden,dc=com", + email: "RollsT@20f6772e8c3743a5846a7cce62bda2f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dien Plambeck,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dien Plambeck,ou=Product Development,dc=bitwarden,dc=com", + email: "PlambecD@8f2a1e9d087d433f9b3d1ae45af01378.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pamella Royle,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pamella Royle,ou=Payroll,dc=bitwarden,dc=com", + email: "RoyleP@1f8860f288da4464a786f1e18a6c5fa9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miro Doolittle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Miro Doolittle,ou=Janitorial,dc=bitwarden,dc=com", + email: "DoolittM@fe184af833734409842cae4ea614a7b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden,dc=com", + email: "GopisetC@78da39afd8f041eaad04623e643dcf1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden,dc=com", + email: "RahmanyC@9d21b507c1954275a6eb8b1bf7521c8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esmaria Ligurs,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Esmaria Ligurs,ou=Management,dc=bitwarden,dc=com", + email: "LigursE@5214956f0ee84ad493b8defdd90a23da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jim Gillespie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jim Gillespie,ou=Janitorial,dc=bitwarden,dc=com", + email: "GillespJ@60ffb350fa6740079313430abf25721b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lottie Patoka,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lottie Patoka,ou=Peons,dc=bitwarden,dc=com", + email: "PatokaL@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keven Camillucci,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Keven Camillucci,ou=Product Testing,dc=bitwarden,dc=com", + email: "CamilluK@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ning Schiegl,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ning Schiegl,ou=Product Development,dc=bitwarden,dc=com", + email: "SchieglN@9c276cf6fc574cef93bc0a3a6cf33a5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChaarS@bca72db9505940d88abc6d6738cc2f4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Torie Sridaran,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Torie Sridaran,ou=Management,dc=bitwarden,dc=com", + email: "SridaraT@96b8e349b3fa4d379cf18c56e159fe83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jilly Ziai,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jilly Ziai,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZiaiJ@2d4d35e5bd0f4e7dbb9261b02c16e31d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katharyn Herak,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Katharyn Herak,ou=Payroll,dc=bitwarden,dc=com", + email: "HerakK@7bb8f37e955d4f04a6cccdb2666d9559.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmina Slade,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Carmina Slade,ou=Peons,dc=bitwarden,dc=com", + email: "SladeC@94efd997fd9d41de91869cc1beb2c9ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaruiN@17e6e9bce9be4a43964f6f155661a373.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden,dc=com", + email: "ForesteG@6ba8baad97224f009bad99f9ff3a1b6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=NamKiet Dada,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=NamKiet Dada,ou=Product Testing,dc=bitwarden,dc=com", + email: "DadaN@0834a0a1dc434fff9ff2dcff91cb1428.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nashir SUPPORT,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nashir SUPPORT,ou=Management,dc=bitwarden,dc=com", + email: "SUPPORTN@a882281c1b844c5997ce4401b36f83a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bonni Gehring,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bonni Gehring,ou=Product Development,dc=bitwarden,dc=com", + email: "GehringB@39cad30acf654cd592e26cbcce758e66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agenia Deboer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Agenia Deboer,ou=Payroll,dc=bitwarden,dc=com", + email: "DeboerA@909269ac94be4e5b9ff6809f52b1dda3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatiana Keene,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tatiana Keene,ou=Peons,dc=bitwarden,dc=com", + email: "KeeneT@1567184d0d9f4bd798c9d76aae00fe9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden,dc=com", + email: "RabipouM@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ora Trayer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ora Trayer,ou=Human Resources,dc=bitwarden,dc=com", + email: "TrayerO@f96326cbae60420087d9ffc7eb8e7b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malissa Walta,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Malissa Walta,ou=Human Resources,dc=bitwarden,dc=com", + email: "WaltaM@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sage Jones,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sage Jones,ou=Administrative,dc=bitwarden,dc=com", + email: "JonesS@a524fcb1eac4447e976069bb86ce0e2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Homer Boothroyd,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Homer Boothroyd,ou=Administrative,dc=bitwarden,dc=com", + email: "BoothroH@cb353017148241c88e44cd0d35f2614b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oksana Baran,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Oksana Baran,ou=Administrative,dc=bitwarden,dc=com", + email: "BaranO@ae52dcada2674f68a76a2c619d85f261.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gill Stalter,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gill Stalter,ou=Peons,dc=bitwarden,dc=com", + email: "StalterG@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden,dc=com", + email: "AndrusiS@005903ef4e084b96990707819b3e2e17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PohSoon Carter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=PohSoon Carter,ou=Human Resources,dc=bitwarden,dc=com", + email: "CarterP@e2851fa9dbce4fe68e4f43ec7a7e00f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden,dc=com", + email: "HrushowA@bd88542b35754611b56bc9f67e5f51df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherilynn Munden,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cherilynn Munden,ou=Product Development,dc=bitwarden,dc=com", + email: "MundenC@94dbeedce77e435482fe6d405df83d4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephie Wong,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Stephie Wong,ou=Product Testing,dc=bitwarden,dc=com", + email: "WongS@1d53b6921bf64610aacf1176185cce32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leah Makoid,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Leah Makoid,ou=Product Testing,dc=bitwarden,dc=com", + email: "MakoidL@5191509f48d94538ad03dc3532ab7b16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sisely Cameron,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sisely Cameron,ou=Administrative,dc=bitwarden,dc=com", + email: "CameronS@a70ffb71353245b59b898173a6c12cbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lacie Seddigh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lacie Seddigh,ou=Product Development,dc=bitwarden,dc=com", + email: "SeddighL@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Golda Decasper,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Golda Decasper,ou=Peons,dc=bitwarden,dc=com", + email: "DecaspeG@5a068c1bd8fb448da04352f8a1f4d9ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chander Kernahan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Chander Kernahan,ou=Product Development,dc=bitwarden,dc=com", + email: "KernahaC@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden,dc=com", + email: "DelahayH@025b753c71134f47b62832fe77834232.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicola Haupt,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nicola Haupt,ou=Product Development,dc=bitwarden,dc=com", + email: "HauptN@0482a6f8c34647958dbfe3e2649faae2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orelle Ifact,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Orelle Ifact,ou=Administrative,dc=bitwarden,dc=com", + email: "IfactO@0f5c9983e32c410788faa72a9c3d7c88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jak Locken,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jak Locken,ou=Product Development,dc=bitwarden,dc=com", + email: "LockenJ@2f5b8316f26f4fc481de13effbbd4ea6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phillis Hermack,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Phillis Hermack,ou=Product Testing,dc=bitwarden,dc=com", + email: "HermackP@bd6dedb04a504f54bb83fff2aa24490b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden,dc=com", + email: "GreenfiL@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcellina Knighton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marcellina Knighton,ou=Product Development,dc=bitwarden,dc=com", + email: "KnightoM@48f6e6bce8ac404d917503a6c43988fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krystal Runnels,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Krystal Runnels,ou=Janitorial,dc=bitwarden,dc=com", + email: "RunnelsK@7e96834d9f214835923bce90da137a59.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonnnie Steven,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sonnnie Steven,ou=Administrative,dc=bitwarden,dc=com", + email: "StevenS@6942f38ba5484ef1a5acaa3b04cfa3d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catherin Whaley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Catherin Whaley,ou=Janitorial,dc=bitwarden,dc=com", + email: "WhaleyC@912b93525781475c9b76c550ff34b491.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fernanda Michalos,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fernanda Michalos,ou=Payroll,dc=bitwarden,dc=com", + email: "MichaloF@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darline Worpell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Darline Worpell,ou=Management,dc=bitwarden,dc=com", + email: "WorpellD@b0543cf71f3c4487af9098421c49968e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jose Brading,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jose Brading,ou=Administrative,dc=bitwarden,dc=com", + email: "BradingJ@a2fc6a711cba4ec98d716bb4c3e20f83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden,dc=com", + email: "WilkinsG@6a7ccf71870148fe8f9ac4d527b4d501.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrie Coverdale,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Adrie Coverdale,ou=Administrative,dc=bitwarden,dc=com", + email: "CoverdaA@649a503dbd264f3ba9e14eb9795c58eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coral Larrigan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Coral Larrigan,ou=Human Resources,dc=bitwarden,dc=com", + email: "LarrigaC@697f4570719c4b51867f3d1f0d4cdafe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoledaS@c2a7b578a92f4e2b90afb4532b24efa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorrin Derrett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lorrin Derrett,ou=Product Development,dc=bitwarden,dc=com", + email: "DerrettL@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xu Gertridge,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Xu Gertridge,ou=Product Development,dc=bitwarden,dc=com", + email: "GertridX@1d23264dcd2241baa77e90f901c50315.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden,dc=com", + email: "ArwakhiD@a72a30514dd84739adf3beae6a3c71bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlisle Wokoma,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carlisle Wokoma,ou=Management,dc=bitwarden,dc=com", + email: "WokomaC@098e681e17464ddaaa4b5aa6ff614551.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden,dc=com", + email: "ScanlanP@31c61f2c8f9340ee8037a78602dae0c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatsuya Standel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tatsuya Standel,ou=Management,dc=bitwarden,dc=com", + email: "StandelT@0f34709435f94e12b6b00a3cb3cfaead.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirline Dahl,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shirline Dahl,ou=Peons,dc=bitwarden,dc=com", + email: "DahlS@98febd962501443b89a9e8bfacf12a9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mandie Tota,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mandie Tota,ou=Administrative,dc=bitwarden,dc=com", + email: "TotaM@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolea Garee,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nicolea Garee,ou=Management,dc=bitwarden,dc=com", + email: "GareeN@b01b1bd56e3f464896b7135dd1b7da99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geraldine Meehan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Geraldine Meehan,ou=Administrative,dc=bitwarden,dc=com", + email: "MeehanG@926986a7a9224c51b55271804ad9a9d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden,dc=com", + email: "CiolfiS@49c1a115ac8b439f9ab99f302ba59751.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mickie Budhram,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mickie Budhram,ou=Janitorial,dc=bitwarden,dc=com", + email: "BudhramM@08eacc9f081b46aa9b5cc2682b8df342.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faustina Severinac,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Faustina Severinac,ou=Management,dc=bitwarden,dc=com", + email: "SeverinF@679765b52d394d7ba89a59f3e71121ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roy Zaloker,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roy Zaloker,ou=Administrative,dc=bitwarden,dc=com", + email: "ZalokerR@cfa9cc9c255049a290ed0760c3f25871.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karel Padiou,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karel Padiou,ou=Peons,dc=bitwarden,dc=com", + email: "PadiouK@28fe718e73d141bb8aec4e57b4f0fed7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden,dc=com", + email: "GrondinB@03a260d7792e49df9dcbf44341e41013.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Taiwana Rhodes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Taiwana Rhodes,ou=Management,dc=bitwarden,dc=com", + email: "RhodesT@9fd53b74c90b49729f78c608ecaf52b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hedi Cicci,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hedi Cicci,ou=Human Resources,dc=bitwarden,dc=com", + email: "CicciH@043d56c5a9b5484da04c37031ff21f8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden,dc=com", + email: "FalbeeG@8f6cef22f95545eb970358eaab952ea6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valaria Limerick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Valaria Limerick,ou=Product Testing,dc=bitwarden,dc=com", + email: "LimericV@47da44f4e5614af2b9a07b9460a560de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oralia Hoggan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Oralia Hoggan,ou=Management,dc=bitwarden,dc=com", + email: "HogganO@95c37524ee9249b9a3a0c719599d89eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leyla Parham,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leyla Parham,ou=Management,dc=bitwarden,dc=com", + email: "ParhamL@cb7ed07b9f1d4c06aa0fee9e92377dab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Derick Paar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Derick Paar,ou=Peons,dc=bitwarden,dc=com", + email: "PaarD@f26f4cdf87cd4a378442f5716c6bc0c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dau Peart,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dau Peart,ou=Peons,dc=bitwarden,dc=com", + email: "PeartD@5a071e6ada864fbfb27301166664af38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danell Kapp,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Danell Kapp,ou=Product Testing,dc=bitwarden,dc=com", + email: "KappD@6f354943caba4900b471133a6c94292f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pen Marshall,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pen Marshall,ou=Product Development,dc=bitwarden,dc=com", + email: "MarshalP@f916ce27ce81484dbb62ae97089dfb33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden,dc=com", + email: "DodgsonJ@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kary Soo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kary Soo,ou=Management,dc=bitwarden,dc=com", + email: "SooK@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden,dc=com", + email: "ClipperD@b9a2e7612aef443ebd9966e99249a73c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiem Pracht,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kiem Pracht,ou=Payroll,dc=bitwarden,dc=com", + email: "PrachtK@e677741303634ac2804273adce139081.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden,dc=com", + email: "SenyildD@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vick Marleau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vick Marleau,ou=Janitorial,dc=bitwarden,dc=com", + email: "MarleauV@9833226d7baa41fe919293bebd42f796.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrianna Bruder,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Adrianna Bruder,ou=Management,dc=bitwarden,dc=com", + email: "BruderA@ba870021396f4a5691ef47f553098ab0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isabelita Swinney,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Isabelita Swinney,ou=Peons,dc=bitwarden,dc=com", + email: "SwinneyI@a67fe9a0cfe2484f900b487d2bc8fbf2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShypskiF@5e72004cd5c54ab885896ad64d562293.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelcey Lee,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kelcey Lee,ou=Administrative,dc=bitwarden,dc=com", + email: "LeeK@8349ed265bc74cb3b9674a8fb6ff8c4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandy Koellner,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brandy Koellner,ou=Janitorial,dc=bitwarden,dc=com", + email: "KoellneB@81a5522a2a9d4dc49f8fbc517ee60b13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selie Schedulers,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Selie Schedulers,ou=Janitorial,dc=bitwarden,dc=com", + email: "SchedulS@59fd7fd5c9b94eff897d05888fea4340.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Addons Dieter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Addons Dieter,ou=Product Development,dc=bitwarden,dc=com", + email: "DieterA@c17ef8e190ef47c58a216f111cfa28dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lesly Willett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lesly Willett,ou=Peons,dc=bitwarden,dc=com", + email: "WillettL@1a46c6e7f89a43fabb02c5bfef5febd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coleman Wolski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Coleman Wolski,ou=Product Development,dc=bitwarden,dc=com", + email: "WolskiC@dff7261f6b3e4cf09c06f21dd7c7d26c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shutterbug Lauson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shutterbug Lauson,ou=Management,dc=bitwarden,dc=com", + email: "LausonS@ea44c2476f934218bf3d758975e567c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden,dc=com", + email: "SeetharA@58d046473fe24d0d8bf6f510239a1102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nancy Oziskender,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nancy Oziskender,ou=Payroll,dc=bitwarden,dc=com", + email: "OziskenN@d6177daa79a64f8eb62f8d79f0c41ce3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doloritas Flowers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Doloritas Flowers,ou=Management,dc=bitwarden,dc=com", + email: "FlowersD@6a1a5eea63134321b540021379837737.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veleta Lun,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Veleta Lun,ou=Payroll,dc=bitwarden,dc=com", + email: "LunV@79eafeb75c844d3eaf6f5efd1b8c0977.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aila Speaker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aila Speaker,ou=Product Testing,dc=bitwarden,dc=com", + email: "SpeakerA@22b676e4c7dd4fe79235ea7758399705.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Scptest Menna,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Scptest Menna,ou=Product Testing,dc=bitwarden,dc=com", + email: "MennaS@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madeleine Goss,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Madeleine Goss,ou=Administrative,dc=bitwarden,dc=com", + email: "GossM@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thuy Sullivan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Thuy Sullivan,ou=Product Development,dc=bitwarden,dc=com", + email: "SullivaT@f260a92a20974e44926d8337feae7384.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheridan Sandner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sheridan Sandner,ou=Product Development,dc=bitwarden,dc=com", + email: "SandnerS@7022b955bef74762989f3e8241ec17a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malory Groff,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Malory Groff,ou=Payroll,dc=bitwarden,dc=com", + email: "GroffM@83a8c1265a2948b59ee00a06831fe99b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Armine livinston,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Armine livinston,ou=Administrative,dc=bitwarden,dc=com", + email: "livinstA@eb2999c8fa284a3f8c9f7cd764a9ece1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden,dc=com", + email: "HankinsS@72d3ee658b6a43d28d374f5d8eed91ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anibal Ribakovs,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anibal Ribakovs,ou=Management,dc=bitwarden,dc=com", + email: "RibakovA@cd4acec6c2bb4065b089eb7a74e04db1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tao Kardomateas,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tao Kardomateas,ou=Administrative,dc=bitwarden,dc=com", + email: "KardomaT@f8af09b819014024bd18d58f41da44cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden,dc=com", + email: "GultekiM@8053af09c938471f9ad09445e16f631c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mommy Neto,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mommy Neto,ou=Human Resources,dc=bitwarden,dc=com", + email: "NetoM@9f63e83dc7124376aa907e1f46aa8250.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Goldwyn Lister,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Goldwyn Lister,ou=Administrative,dc=bitwarden,dc=com", + email: "ListerG@beba94b4890142a087b66411df53d92a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jesus Fraser,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jesus Fraser,ou=Payroll,dc=bitwarden,dc=com", + email: "FraserJ@8b756558381d4f26bb25a8056450ac9f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabina Davison,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sabina Davison,ou=Peons,dc=bitwarden,dc=com", + email: "DavisonS@daa1e24c0eb048798f1d4ee756ce865c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden,dc=com", + email: "ScarborA@7662f3c56c8f438dafc48f46ab18bd48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThielT@a41e77135c5346be96b465a7d5d633c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ohio Leong,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ohio Leong,ou=Peons,dc=bitwarden,dc=com", + email: "LeongO@4664a2b63b254ce9b3d95a8c77ae6508.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helma Fulford,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Helma Fulford,ou=Janitorial,dc=bitwarden,dc=com", + email: "FulfordH@53f2a179085949f9929a0abb8a150cb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wendy Ashford,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wendy Ashford,ou=Product Development,dc=bitwarden,dc=com", + email: "AshfordW@f409013fa2954a03ae4501e12af3b06b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ricki Schadan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ricki Schadan,ou=Administrative,dc=bitwarden,dc=com", + email: "SchadanR@b8ae2136bfb44521a9e99c5d81fc17f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolee McClintock,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carolee McClintock,ou=Product Development,dc=bitwarden,dc=com", + email: "McClintC@27eb42f1314e46fc8bcbc24a42e4598e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fara Phifer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fara Phifer,ou=Payroll,dc=bitwarden,dc=com", + email: "PhiferF@772d4127578e47699e9b196a161e8a46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jennee Jasmin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jennee Jasmin,ou=Administrative,dc=bitwarden,dc=com", + email: "JasminJ@5b146323be6643e092b53ceb21e379e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yatish Streng,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yatish Streng,ou=Janitorial,dc=bitwarden,dc=com", + email: "StrengY@7d2914d75d254468950490f34fff79f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mair Basladynski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mair Basladynski,ou=Product Testing,dc=bitwarden,dc=com", + email: "BasladyM@d4b58fe2bfde4032862e5386c0e20902.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karyn Bender,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Karyn Bender,ou=Administrative,dc=bitwarden,dc=com", + email: "BenderK@c26e885b4f4a47e7befaa9bedce07d04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beate Ahlberg,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Beate Ahlberg,ou=Payroll,dc=bitwarden,dc=com", + email: "AhlbergB@b064b72d68464a06b3938f3f2abab372.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roberto Binder,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Roberto Binder,ou=Human Resources,dc=bitwarden,dc=com", + email: "BinderR@b821fa0513d7408ebbfe73c94767102c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miro Sparksman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Miro Sparksman,ou=Janitorial,dc=bitwarden,dc=com", + email: "SparksmM@4c2706f148d24c978855dfe00601ca6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ethan Salazar,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ethan Salazar,ou=Human Resources,dc=bitwarden,dc=com", + email: "SalazarE@652b9ea2520d46da8b923406e54cf707.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elza Meubus,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Elza Meubus,ou=Human Resources,dc=bitwarden,dc=com", + email: "MeubusE@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden,dc=com", + email: "VandagrG@9401b30c07d641ad85c9d343e51620fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phyllida Peng,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Phyllida Peng,ou=Product Development,dc=bitwarden,dc=com", + email: "PengP@3b5097c7d33f4dd5b850d3928945e3fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leslie Wagoner,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leslie Wagoner,ou=Administrative,dc=bitwarden,dc=com", + email: "WagonerL@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erning Dmsrtime,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Erning Dmsrtime,ou=Peons,dc=bitwarden,dc=com", + email: "DmsrtimE@984a33b6fcea4c229307cb5a753888dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frederica Barel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Frederica Barel,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarelF@46b9c76000e34e4685e646b4677138bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilkin Coupal,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wilkin Coupal,ou=Management,dc=bitwarden,dc=com", + email: "CoupalW@4e301d4682ea4f23b3797582ef8f2c42.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden,dc=com", + email: "BlakeKnN@e1893d7ef9564395a0b1b816030adce2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Millie Kenol,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Millie Kenol,ou=Payroll,dc=bitwarden,dc=com", + email: "KenolM@d37901086196495ab5d77980959c7f35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miklos Menzies,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Miklos Menzies,ou=Product Testing,dc=bitwarden,dc=com", + email: "MenziesM@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden,dc=com", + email: "OhmayerX@39abbceda00e41858d81e19cc3b490e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WenKai Peleato,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=WenKai Peleato,ou=Payroll,dc=bitwarden,dc=com", + email: "PeleatoW@c2ddaecf94964357886149e7833e3267.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChoLun Simser,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=ChoLun Simser,ou=Janitorial,dc=bitwarden,dc=com", + email: "SimserC@52375a276d8e4116b12e682b77fe0b05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minerva Paulett,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Minerva Paulett,ou=Janitorial,dc=bitwarden,dc=com", + email: "PaulettM@0b6df1c2b33a45858d2011f826942879.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Asia Aleong,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Asia Aleong,ou=Product Development,dc=bitwarden,dc=com", + email: "AleongA@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xantippe Sydor,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Xantippe Sydor,ou=Product Development,dc=bitwarden,dc=com", + email: "SydorX@c228283c030a4839b23b0d238ebb64f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devora Bunker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Devora Bunker,ou=Peons,dc=bitwarden,dc=com", + email: "BunkerD@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hudai Dallago,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hudai Dallago,ou=Product Testing,dc=bitwarden,dc=com", + email: "DallagoH@a85c3929256747e4a90337c3ba0f9538.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pamella Herman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pamella Herman,ou=Janitorial,dc=bitwarden,dc=com", + email: "HermanP@bbf9c04e50a241698a5503a647ae8281.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Preston Marco,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Preston Marco,ou=Administrative,dc=bitwarden,dc=com", + email: "MarcoP@232ca6cb0ac84bf8be33192693a35ba0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sybyl McIver,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sybyl McIver,ou=Human Resources,dc=bitwarden,dc=com", + email: "McIverS@a91ef43faba348c6bf66e409d4fd354b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fidelia Mehta,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fidelia Mehta,ou=Peons,dc=bitwarden,dc=com", + email: "MehtaF@4f5cf3c68fb84cb583c3e869db2086bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tom Boose,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tom Boose,ou=Human Resources,dc=bitwarden,dc=com", + email: "BooseT@5412480f8c82450aa52600d4e3893c99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden,dc=com", + email: "AllahyaV@2941b888378b4b868ece831a080444c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorrel Manno,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lorrel Manno,ou=Product Testing,dc=bitwarden,dc=com", + email: "MannoL@78bde8bce82c4d1dbca4b21bf7784813.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacee Finnie,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Stacee Finnie,ou=Administrative,dc=bitwarden,dc=com", + email: "FinnieS@01d98aa12a484f229c38604f374f5102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clari Beshai,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clari Beshai,ou=Management,dc=bitwarden,dc=com", + email: "BeshaiC@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden,dc=com", + email: "SasakiL@222d66226d1243a5a6fdebd55db86add.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden,dc=com", + email: "SompongA@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clovis Banigan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Clovis Banigan,ou=Janitorial,dc=bitwarden,dc=com", + email: "BaniganC@b481e78cdf2a4d77b00e3eea0c5aaf43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden,dc=com", + email: "JarzemsV@7a9336a35e1e452eaecd685206f3ad31.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherin Shedd,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cherin Shedd,ou=Human Resources,dc=bitwarden,dc=com", + email: "SheddC@8687f426e30946c59d63176bb5ab09a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivonne Whiting,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ivonne Whiting,ou=Product Development,dc=bitwarden,dc=com", + email: "WhitingI@a3cf3eb4e8384906b167f943f1276871.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardra Gemmill,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ardra Gemmill,ou=Payroll,dc=bitwarden,dc=com", + email: "GemmillA@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden,dc=com", + email: "OrgrenSD@be56d01786b846e3aa64454147150e23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden,dc=com", + email: "AveryT@9dae1c3f52e14b249ec881c64e974c27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arthur Koch,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Arthur Koch,ou=Product Testing,dc=bitwarden,dc=com", + email: "KochA@f3364372be9a4d4583e3d68752e6c188.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden,dc=com", + email: "WasmeieU@566acb80e4d1481e9b6326f02804831d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonie Begley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leonie Begley,ou=Product Development,dc=bitwarden,dc=com", + email: "BegleyL@08b747ef36c043dc831ace544361b178.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanessa Thum,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vanessa Thum,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThumV@c41cc1e3b0d842d3bbad24db018def06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden,dc=com", + email: "ODwyerU@2bc9bfa10bf3492f87ecd4ba4a4d9a54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden,dc=com", + email: "IannozzH@93bb2a719868497094d1e687804f1eb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rey Boyer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rey Boyer,ou=Management,dc=bitwarden,dc=com", + email: "BoyerR@2b46da502e6546eaa33fd138fef00ac3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nanete Tomlinson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nanete Tomlinson,ou=Peons,dc=bitwarden,dc=com", + email: "TomlinsN@34766460128a4ee582041f543b9bd242.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorrie Lamy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lorrie Lamy,ou=Administrative,dc=bitwarden,dc=com", + email: "LamyL@6882bb306b30484eac03893eca277bd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donal DorisHampton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Donal DorisHampton,ou=Administrative,dc=bitwarden,dc=com", + email: "DorisHaD@b4ec3c43774d4a4baac80f55d5751b78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonardo Palasek,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leonardo Palasek,ou=Product Development,dc=bitwarden,dc=com", + email: "PalasekL@5406f1a2a8b3462dade05957b7fb225f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhodie Seery,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rhodie Seery,ou=Payroll,dc=bitwarden,dc=com", + email: "SeeryR@069bff2c38b341aca5c431f6580b51ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leonas Salomon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leonas Salomon,ou=Product Development,dc=bitwarden,dc=com", + email: "SalomonL@2469cbc5a5404c8d818a74f1684adb09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibel McKnight,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sibel McKnight,ou=Administrative,dc=bitwarden,dc=com", + email: "McKnighS@700c5d89fc4943989681c73525ca7752.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anabel Borel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Anabel Borel,ou=Product Testing,dc=bitwarden,dc=com", + email: "BorelA@a8b705848c504748848b8aba539736f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milo Gravitte,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Milo Gravitte,ou=Human Resources,dc=bitwarden,dc=com", + email: "GravittM@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katha Noddin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Katha Noddin,ou=Product Testing,dc=bitwarden,dc=com", + email: "NoddinK@c7211550a0e54b11899929b0d44158ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jami Baab,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jami Baab,ou=Human Resources,dc=bitwarden,dc=com", + email: "BaabJ@b8d27f90baae497697af4ac7133d782a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verna Petree,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Verna Petree,ou=Product Development,dc=bitwarden,dc=com", + email: "PetreeV@726a4125a7d94ad38a1dc92c2882e4bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adelia Leibich,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Adelia Leibich,ou=Administrative,dc=bitwarden,dc=com", + email: "LeibichA@1d233bc1764446c09e064881135ef88f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jann Marquart,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jann Marquart,ou=Payroll,dc=bitwarden,dc=com", + email: "MarquarJ@38e93300da7643e5ac4629316f76753a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirjam Cleary,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mirjam Cleary,ou=Peons,dc=bitwarden,dc=com", + email: "ClearyM@3498d55f6fdc4726b3007b6eece0bd27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden,dc=com", + email: "OsborneC@d5bcdf8a8a07400f8fa8236d15a8595d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anselma Sabat,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anselma Sabat,ou=Human Resources,dc=bitwarden,dc=com", + email: "SabatA@3b5bce68a3bf4abeb7101b36a2d13246.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ursola Zagorski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ursola Zagorski,ou=Payroll,dc=bitwarden,dc=com", + email: "ZagorskU@dff7cc6e7ee04fe98e5fdfa8cb0e3b40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gael Cho,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gael Cho,ou=Peons,dc=bitwarden,dc=com", + email: "ChoG@f1a2b4c9009a4b058da6b6f5ee233883.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden,dc=com", + email: "GalloJ@a767b0f434554c6788caabae2da7ee65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kris Rotzjean,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kris Rotzjean,ou=Administrative,dc=bitwarden,dc=com", + email: "RotzjeaK@2f4e34ec099849fb8849d25db17f5d45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zaneta Wun,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zaneta Wun,ou=Product Development,dc=bitwarden,dc=com", + email: "WunZ@e17fea6e1c564882ab9a476cab0dc5ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden,dc=com", + email: "McAdoreG@85bf85b5b4ba4460993e464e81ad3a57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ania Scalabrini,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ania Scalabrini,ou=Administrative,dc=bitwarden,dc=com", + email: "ScalabrA@6fd7a8381bd04762a7cac00d6e4b256a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andras Maruszak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Andras Maruszak,ou=Human Resources,dc=bitwarden,dc=com", + email: "MaruszaA@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tab Kalair,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tab Kalair,ou=Peons,dc=bitwarden,dc=com", + email: "KalairT@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nadya Speer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nadya Speer,ou=Administrative,dc=bitwarden,dc=com", + email: "SpeerN@cb407f95d05e476fad36365e35d9b1be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Turus Bisson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Turus Bisson,ou=Payroll,dc=bitwarden,dc=com", + email: "BissonT@d3a0338aa0d94b49aa2150a5e12f9d53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ioan Naylor,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ioan Naylor,ou=Payroll,dc=bitwarden,dc=com", + email: "NaylorI@6de603ec7e3b4b039bef3c781848cf1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeroen Fleurima,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jeroen Fleurima,ou=Peons,dc=bitwarden,dc=com", + email: "FleurimJ@b4c1c06974d240f190a6b3bfe9fdd375.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lacy Arai,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lacy Arai,ou=Janitorial,dc=bitwarden,dc=com", + email: "AraiL@341957991cd048f28879d34846561132.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sylvain Hickin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sylvain Hickin,ou=Payroll,dc=bitwarden,dc=com", + email: "HickinS@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margaret Begley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Margaret Begley,ou=Product Testing,dc=bitwarden,dc=com", + email: "BegleyM@b4ae1434dbd74e3f9fda915972e536aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vick Lovegrove,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vick Lovegrove,ou=Administrative,dc=bitwarden,dc=com", + email: "LovegroV@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bob Acres,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bob Acres,ou=Product Development,dc=bitwarden,dc=com", + email: "AcresB@392576165dfe4cafb8fa1d35ef39e725.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dahlia Oost,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dahlia Oost,ou=Management,dc=bitwarden,dc=com", + email: "OostD@b4277bbde59048f39a27a7d14145a06f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden,dc=com", + email: "HafizC@6e374f55c08a4f9ea474b0f388c5e697.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden,dc=com", + email: "CucuzzeR@7408ed731222450eb6a92df81540fc99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ianthe Yum,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ianthe Yum,ou=Management,dc=bitwarden,dc=com", + email: "YumI@8ded8bbd82ce42aeaa0782da2c17da44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Judi Adamo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Judi Adamo,ou=Janitorial,dc=bitwarden,dc=com", + email: "AdamoJ@f3ac3ffab8324597a10f7fe805a2cec5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden,dc=com", + email: "GrzegorR@e0413af3109149e7b81465a2065b0fa5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Filibert Pachulski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Filibert Pachulski,ou=Peons,dc=bitwarden,dc=com", + email: "PachulsF@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmon Kroeger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carmon Kroeger,ou=Management,dc=bitwarden,dc=com", + email: "KroegerC@db74de76c5374bf883b5c0e4951495b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden,dc=com", + email: "RashidiZ@8f2a1e9d087d433f9b3d1ae45af01378.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camellia Gavidia,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Camellia Gavidia,ou=Administrative,dc=bitwarden,dc=com", + email: "GavidiaC@79642b513783409691dc1a7cf728c883.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fqa Abrams,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fqa Abrams,ou=Product Development,dc=bitwarden,dc=com", + email: "AbramsF@d8f66ef1670a411fb693fa464f75d8f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pepita Houston,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pepita Houston,ou=Janitorial,dc=bitwarden,dc=com", + email: "HoustonP@73f0541d56094177a29a390ca43c2beb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden,dc=com", + email: "YahyapoH@fff697695b6a47fc8837138d253e90f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Horst Becan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Horst Becan,ou=Janitorial,dc=bitwarden,dc=com", + email: "BecanH@3a9565077b2a44b684e188fe7f0cd0a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ericha Akai,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ericha Akai,ou=Product Development,dc=bitwarden,dc=com", + email: "AkaiE@ead1ebc11a6a43c4a4973f8778d92cf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mina Amato,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mina Amato,ou=Payroll,dc=bitwarden,dc=com", + email: "AmatoM@9ce658881e8c455194b88b370a33621e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katherine Ostarello,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Katherine Ostarello,ou=Management,dc=bitwarden,dc=com", + email: "OstarelK@f374f272c7c44ad9bdc88a75e3e22f88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mario Bice,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mario Bice,ou=Product Testing,dc=bitwarden,dc=com", + email: "BiceM@01d519b2c3cc4b749d2c74cc03a56716.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden,dc=com", + email: "RollsS@4781f85f1c214dff92b5f07239287faa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Othelia Radford,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Othelia Radford,ou=Payroll,dc=bitwarden,dc=com", + email: "RadfordO@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meta Todloski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Meta Todloski,ou=Payroll,dc=bitwarden,dc=com", + email: "TodloskM@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden,dc=com", + email: "HershbeT@014bccc9396c433988180fbafa28a36d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden,dc=com", + email: "GadzinoJ@3beca394b1bb4c3c97c7025a5ba48c80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Riyaz Georges,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Riyaz Georges,ou=Administrative,dc=bitwarden,dc=com", + email: "GeorgesR@5c4a37a22c51408494bd04d688d4cd1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teddi Connell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Teddi Connell,ou=Janitorial,dc=bitwarden,dc=com", + email: "ConnellT@cb0fd14a62264345a0844bec81676fd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huong OKelly,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Huong OKelly,ou=Human Resources,dc=bitwarden,dc=com", + email: "OKellyH@1babd519a8034b2d99c4603db1b7c5f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden,dc=com", + email: "InstalK@e460ad35028e4180bb22b6ed74c22cc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maddalena Dillard,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maddalena Dillard,ou=Payroll,dc=bitwarden,dc=com", + email: "DillardM@bc7abecae5134db19820cef4bc298003.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amandip Lescot,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Amandip Lescot,ou=Product Testing,dc=bitwarden,dc=com", + email: "LescotA@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden,dc=com", + email: "BuckaleF@a6b1af155ea940a7a1d1c1985151458a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verinder Chiou,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Verinder Chiou,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChiouV@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helmut Asdel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Helmut Asdel,ou=Janitorial,dc=bitwarden,dc=com", + email: "AsdelH@fdc4e6b69a144dc99f4eca6e90ea8737.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vital Therrien,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vital Therrien,ou=Human Resources,dc=bitwarden,dc=com", + email: "TherrieV@6f8fc3d9f81d4922bdbfea87952e7cbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ileana Bottomley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ileana Bottomley,ou=Payroll,dc=bitwarden,dc=com", + email: "BottomlI@7a5d1ad8eb2448ff80683da3323f6f84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julian Condurelis,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Julian Condurelis,ou=Management,dc=bitwarden,dc=com", + email: "CondureJ@f648ab5b740d44ca8b0dc821ba7c94a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden,dc=com", + email: "LupherW@a3d3bf444e8449f58c24d388c9e4253b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nashib Mikulka,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nashib Mikulka,ou=Payroll,dc=bitwarden,dc=com", + email: "MikulkaN@a21f8badf17c4b4dbce73be0734b9d87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden,dc=com", + email: "DantzleP@44c07bc2a46540df9dcdebec16008404.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden,dc=com", + email: "FoxwortB@e358162fa0384d918adc01a68c3773f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristie Nill,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cristie Nill,ou=Product Development,dc=bitwarden,dc=com", + email: "NillC@0573bd112aca464284b0d9eac2753606.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaheuI@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oliy Maloney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Oliy Maloney,ou=Administrative,dc=bitwarden,dc=com", + email: "MaloneyO@9394232bb6834307ab4f6670c80c01e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davita Berger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Davita Berger,ou=Peons,dc=bitwarden,dc=com", + email: "BergerD@623538f66c6d44c9949856d7b9d692ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Metyn Mullaly,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Metyn Mullaly,ou=Product Development,dc=bitwarden,dc=com", + email: "MullalyM@beb04887c3a74fa0ae74089e879db636.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ning Suitt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ning Suitt,ou=Product Testing,dc=bitwarden,dc=com", + email: "SuittN@8964e184da0347bdb7b4df11050a3a32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rafa Vilozny,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rafa Vilozny,ou=Administrative,dc=bitwarden,dc=com", + email: "ViloznyR@bac50bb727ca4a11b9ee1a82a995bcf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden,dc=com", + email: "FerenzK@123877216cf647dc9c161017fd0bf922.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden,dc=com", + email: "ProudfoD@aa592c2222884248a08151cbea9b9464.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anita Bui,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anita Bui,ou=Product Development,dc=bitwarden,dc=com", + email: "BuiA@fc6cfedbbb404c7db9497f0971d6cf66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden,dc=com", + email: "CunhaGoL@5e4575ba15004635a07ebaa5c8dd9475.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verina Lamirande,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Verina Lamirande,ou=Payroll,dc=bitwarden,dc=com", + email: "LamiranV@f86eaf6fda40440ead0c03f269cfec3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gusella Loggins,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gusella Loggins,ou=Payroll,dc=bitwarden,dc=com", + email: "LogginsG@bdde3595ac2c4a339c7f74eb56b2523f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hatty Murash,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hatty Murash,ou=Product Testing,dc=bitwarden,dc=com", + email: "MurashH@3e7b5d0f173b44b5bb6ae270e2b8fdcb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clyde Labenek,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Clyde Labenek,ou=Product Development,dc=bitwarden,dc=com", + email: "LabenekC@28fab2a5e4034ede9d4f584a0fd75e72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=New Koay,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=New Koay,ou=Payroll,dc=bitwarden,dc=com", + email: "KoayN@eb362d3928c448a4b72d63b85283da63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden,dc=com", + email: "GreytocP@ad623334663c4947b77eb81b44ea11ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doria Smothers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Doria Smothers,ou=Management,dc=bitwarden,dc=com", + email: "SmotherD@4e240d85327f4f81b9a139f4d41efb41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonia Gahan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tonia Gahan,ou=Human Resources,dc=bitwarden,dc=com", + email: "GahanT@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reina Gracey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Reina Gracey,ou=Management,dc=bitwarden,dc=com", + email: "GraceyR@c07b5bb2f94643578becb647cd136c33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vale Harwerth,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vale Harwerth,ou=Product Development,dc=bitwarden,dc=com", + email: "HarwertV@e83fceefe07e4de6ba8b4f0b48751aec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden,dc=com", + email: "DyrdahlA@5b44f69cb0e74cb5b8b37bde0d083579.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gavra Brule,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gavra Brule,ou=Peons,dc=bitwarden,dc=com", + email: "BruleG@9b5bbecfd65b422e95fd8bc7721876ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corilla Angustia,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Corilla Angustia,ou=Human Resources,dc=bitwarden,dc=com", + email: "AngustiC@492b9c186a41410b8362945cf33f6ac7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden,dc=com", + email: "WokomaR@aa40bc3bf6d0491ea79629a0660ec362.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Simona Lemyre,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Simona Lemyre,ou=Management,dc=bitwarden,dc=com", + email: "LemyreS@4f8304c7c82a40568829a62a3d95ae6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loris Knappe,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Loris Knappe,ou=Administrative,dc=bitwarden,dc=com", + email: "KnappeL@466f24c0ae9947d2a9b6e4673a116085.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariya Frumerie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mariya Frumerie,ou=Product Development,dc=bitwarden,dc=com", + email: "FrumeriM@74b04bb2dca3456d9dd381e9b32a85a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pradip Wesenberg,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pradip Wesenberg,ou=Peons,dc=bitwarden,dc=com", + email: "WesenbeP@35335990ab014019917e13dee53dd406.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teena Szuminski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Teena Szuminski,ou=Product Testing,dc=bitwarden,dc=com", + email: "SzuminsT@a4f85fecd69348a29728c8e242a790a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden,dc=com", + email: "UrbanowC@f6866989cc784904871bcaa73d189a85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeanie Shumate,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jeanie Shumate,ou=Management,dc=bitwarden,dc=com", + email: "ShumateJ@fd0854655b5f4982bc6e7a95b12dd3fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mindy Agnew,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mindy Agnew,ou=Peons,dc=bitwarden,dc=com", + email: "AgnewM@dad8b7b440374db79e9b58cd390854c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cosette Hagley,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cosette Hagley,ou=Peons,dc=bitwarden,dc=com", + email: "HagleyC@bbf5361396904a4082fadb57709a5d90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden,dc=com", + email: "NyceC@ebdda7804b294714949d48657bdd3830.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darnell Gombos,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Darnell Gombos,ou=Product Development,dc=bitwarden,dc=com", + email: "GombosD@a5f5618aa6144295ac3ab97f28aa1603.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odille Belisle,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Odille Belisle,ou=Product Testing,dc=bitwarden,dc=com", + email: "BelisleO@770858a0ba27427fa80380c180b40ddb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirilla Malik,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mirilla Malik,ou=Janitorial,dc=bitwarden,dc=com", + email: "MalikM@f2e037d77334498ab9322f95dd7d350d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden,dc=com", + email: "WinklemA@863337bc153343e09522d2f9b00e1379.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lise Disalvo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lise Disalvo,ou=Human Resources,dc=bitwarden,dc=com", + email: "DisalvoL@4a8d22894cf24b2dbddb3ccac895cba0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lou Burchat,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lou Burchat,ou=Peons,dc=bitwarden,dc=com", + email: "BurchatL@f58a1be9c5d84ac9b0da725b5fef956c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden,dc=com", + email: "MacaulaC@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donita Teichman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Donita Teichman,ou=Peons,dc=bitwarden,dc=com", + email: "TeichmaD@d7baf4e3c12a4ed9850be956d310a59c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermione Monet,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hermione Monet,ou=Peons,dc=bitwarden,dc=com", + email: "MonetH@9fc16f31309a4e5489f1a046e558b353.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden,dc=com", + email: "VermeesJ@c912ac8eb3d148c49f0011f93774eeca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden,dc=com", + email: "BulifanN@737a8e314bb541f2971ef676e8e10c83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belicia Kupitz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Belicia Kupitz,ou=Peons,dc=bitwarden,dc=com", + email: "KupitzB@8d562bd365da4cdca86c1d397fe1741a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tani Rausch,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tani Rausch,ou=Administrative,dc=bitwarden,dc=com", + email: "RauschT@0b42d23f708a491ab7e35398744c7140.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berget Baerg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Berget Baerg,ou=Janitorial,dc=bitwarden,dc=com", + email: "BaergB@77627e1e8f8e4cdc88cd6606136ffbcf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Skyler Hariman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Skyler Hariman,ou=Payroll,dc=bitwarden,dc=com", + email: "HarimanS@162057a27e094561a78012351f7383c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toni Shaddock,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Toni Shaddock,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShaddocT@6a01aba5dc8f451b8404750bb95136ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Foad Roberts,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Foad Roberts,ou=Peons,dc=bitwarden,dc=com", + email: "RobertsF@f76cbd44b02547b883b5a9a34e1c9fd0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShtivelP@05da0d5cd1904deaaf3f5d8c791005d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keely Dee,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Keely Dee,ou=Peons,dc=bitwarden,dc=com", + email: "DeeK@2974cf90fe1d4835b1ba05177dd29243.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shiu Trimble,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shiu Trimble,ou=Management,dc=bitwarden,dc=com", + email: "TrimbleS@75dfcd3692074ff18248aebdf998f81c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwenore Taren,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gwenore Taren,ou=Product Development,dc=bitwarden,dc=com", + email: "TarenG@ed1174f9049747fb9c8ea909f860d6ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saraann Millen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Saraann Millen,ou=Peons,dc=bitwarden,dc=com", + email: "MillenS@20d733e4c13941c7bc31419a4b4229c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandra Mosley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sandra Mosley,ou=Administrative,dc=bitwarden,dc=com", + email: "MosleyS@e800254840ec4cdd98916b4e083fcf9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden,dc=com", + email: "HemphilS@819341cb2af84d6c855b3feecf7b45b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernhard Niro,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bernhard Niro,ou=Product Development,dc=bitwarden,dc=com", + email: "NiroB@2c3e110ee6f849dd9d12214b3161a037.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ema Kelkar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ema Kelkar,ou=Peons,dc=bitwarden,dc=com", + email: "KelkarE@4dd9b19c6f6848e2a0768f206ad89104.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden,dc=com", + email: "RiedelL@80d7e63066f84141a410585d6b524a04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden,dc=com", + email: "BazemorS@2ba610dbd4ca4724a5aac54e36ab5ab0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erich Pandey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Erich Pandey,ou=Human Resources,dc=bitwarden,dc=com", + email: "PandeyE@71c4255308d847e6b55d8184e9b3d537.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farshid Sattler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Farshid Sattler,ou=Product Testing,dc=bitwarden,dc=com", + email: "SattlerF@7e9f6d17b8fc4a199e49adcccc9ca5e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden,dc=com", + email: "PimiskeF@8e939e1720cd4eec84cf0ef4b954cc46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anissa Nasato,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anissa Nasato,ou=Payroll,dc=bitwarden,dc=com", + email: "NasatoA@f189d642e6af44169fd7101889f8b06f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden,dc=com", + email: "DeardurM@646791cae30048e78e840ca24e142dc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grietje Dionne,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Grietje Dionne,ou=Management,dc=bitwarden,dc=com", + email: "DionneG@ebda9764758246a4bb15c2161573a88b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden,dc=com", + email: "GrandboV@51a0ff7129454952917fdd91842316b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Asia Dobbs,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Asia Dobbs,ou=Administrative,dc=bitwarden,dc=com", + email: "DobbsA@64ddc1375a2449c3b91480ef133e087e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Flor Powney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Flor Powney,ou=Administrative,dc=bitwarden,dc=com", + email: "PowneyF@9c1d18cc96a9431ba0c70f9056ae3646.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden,dc=com", + email: "BabasakJ@65445bf488744fbfb52fae9b404c1cd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valera Fogelson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Valera Fogelson,ou=Product Development,dc=bitwarden,dc=com", + email: "FogelsoV@7279f15d1e764fb3b1076fe52d173852.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aideen Vanaman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aideen Vanaman,ou=Peons,dc=bitwarden,dc=com", + email: "VanamanA@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pattie McLemore,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pattie McLemore,ou=Payroll,dc=bitwarden,dc=com", + email: "McLemorP@e616c55f2d0a4bbca2cb265dfd9eacbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Levy Wolfson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Levy Wolfson,ou=Administrative,dc=bitwarden,dc=com", + email: "WolfsonL@786e681f87b049719b525ef674ebcc90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden,dc=com", + email: "VanTerrR@5beefb1d47ee4fae97ea786f427a3d27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden,dc=com", + email: "MathesoD@79eafeb75c844d3eaf6f5efd1b8c0977.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patricia Pappas,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Patricia Pappas,ou=Administrative,dc=bitwarden,dc=com", + email: "PappasP@7fe664076c0040b6a8babd9da4c475ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miguel Kozak,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Miguel Kozak,ou=Payroll,dc=bitwarden,dc=com", + email: "KozakM@a2d069dbe5bd40cca53d8a120576f5a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gina Toolroom,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gina Toolroom,ou=Payroll,dc=bitwarden,dc=com", + email: "ToolrooG@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fairy Tables,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fairy Tables,ou=Management,dc=bitwarden,dc=com", + email: "TablesF@e85fdc3041fd4381ad23f20fda20358e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selia Larocque,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Selia Larocque,ou=Management,dc=bitwarden,dc=com", + email: "LarocquS@d6fe37840529443585725bc6aa7732d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden,dc=com", + email: "MorozP@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jozef Altmann,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jozef Altmann,ou=Janitorial,dc=bitwarden,dc=com", + email: "AltmannJ@5f64fd34bdee4ec1abef179411f4dce1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Octavio Doud,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Octavio Doud,ou=Peons,dc=bitwarden,dc=com", + email: "DoudO@8d16e0fff20443f99b6f78b0996f117b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atl Baugnon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Atl Baugnon,ou=Administrative,dc=bitwarden,dc=com", + email: "BaugnonA@fded6a4ffab747d786306ddc62c3c811.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacie Tabler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Stacie Tabler,ou=Product Development,dc=bitwarden,dc=com", + email: "TablerS@530608b4f9df417187aa615866b37d82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chantal Feil,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chantal Feil,ou=Payroll,dc=bitwarden,dc=com", + email: "FeilC@1949e3794fc14232b5b71dc9b3dfa654.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Waverly Caron,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Waverly Caron,ou=Product Testing,dc=bitwarden,dc=com", + email: "CaronW@816dd137672046b4800988231b34434d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cindy McTurner,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cindy McTurner,ou=Administrative,dc=bitwarden,dc=com", + email: "McTurneC@0219ab31249e4e48be0f58ce8b0b2611.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden,dc=com", + email: "RossonE@78331c826d114da29aeafea87c090905.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherri Loper,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cherri Loper,ou=Management,dc=bitwarden,dc=com", + email: "LoperC@9e9dcbe516e7453a9ec2c4f34261ca62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joleen Fobert,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joleen Fobert,ou=Human Resources,dc=bitwarden,dc=com", + email: "FobertJ@ce472d3fc80444b983f47fbd786a2ed7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden,dc=com", + email: "EhlersC@38b2663172424c999e78408a67cf7851.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marley Dadalt,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marley Dadalt,ou=Product Development,dc=bitwarden,dc=com", + email: "DadaltM@c37d437270714fb682259a0e5006b543.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden,dc=com", + email: "MensinkJ@0148ea24c11b461eaf1bfa51c7f254fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jennee Reznick,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jennee Reznick,ou=Peons,dc=bitwarden,dc=com", + email: "ReznickJ@d69d50a7aa3e4ebf9808282c9a27c7b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerrit Pullan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gerrit Pullan,ou=Peons,dc=bitwarden,dc=com", + email: "PullanG@f07a2704744543c99ec010f0a9ec3d24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duke Ness,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Duke Ness,ou=Administrative,dc=bitwarden,dc=com", + email: "NessD@4520c387caf14590a3143afb1ef72ec6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emilie Grigsby,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emilie Grigsby,ou=Product Development,dc=bitwarden,dc=com", + email: "GrigsbyE@aec32be154e9468aaf07e631090cf3e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shiroshi Thorsen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shiroshi Thorsen,ou=Management,dc=bitwarden,dc=com", + email: "ThorsenS@03a382a7724f452d85abab30e3c678e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katey Dorr,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Katey Dorr,ou=Administrative,dc=bitwarden,dc=com", + email: "DorrK@7e22fa8dfa8e4caa8ba807b20db9639f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manuela Whitsell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Manuela Whitsell,ou=Payroll,dc=bitwarden,dc=com", + email: "WhitselM@d402d45df6ee44758d534e95cb5617f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden,dc=com", + email: "KupfersK@0b91b187654d42f6ab62dc14d39a1abd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvina Stokoe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alvina Stokoe,ou=Product Development,dc=bitwarden,dc=com", + email: "StokoeA@ad964ba902a44170917694925f5549f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theo TestNTMVAA,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Theo TestNTMVAA,ou=Management,dc=bitwarden,dc=com", + email: "TestNTMT@35bee35564684f309794106202d3e01a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maidsir Spaugh,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maidsir Spaugh,ou=Management,dc=bitwarden,dc=com", + email: "SpaughM@95c484b7ceeb496da14312d962454e22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden,dc=com", + email: "WhetzelY@7ac3538c32ef4218882c130acb03a83a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden,dc=com", + email: "ZaretskY@35ae2ba8abf646adb2f5a5352a90490c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vilas Jarvah,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vilas Jarvah,ou=Administrative,dc=bitwarden,dc=com", + email: "JarvahV@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cilka Chadha,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cilka Chadha,ou=Product Development,dc=bitwarden,dc=com", + email: "ChadhaC@f4030ab817ff48ca98e8cd4e669c479e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden,dc=com", + email: "KurthL@5df9c27aac564967ba9cd99480636500.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merl Heffner,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Merl Heffner,ou=Product Testing,dc=bitwarden,dc=com", + email: "HeffnerM@8717d7d6686445eba152afa0241a3ea0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelly Adler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shelly Adler,ou=Management,dc=bitwarden,dc=com", + email: "AdlerS@55c6c435877940599b41e6e5d6f01b1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marchelle Howie,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marchelle Howie,ou=Administrative,dc=bitwarden,dc=com", + email: "HowieM@8d06f5c0b94f46838a9f2ef1a0adee08.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chick Doucet,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Chick Doucet,ou=Management,dc=bitwarden,dc=com", + email: "DoucetC@7475aa279ff64b9683e6188f03eefc3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vittoria Astley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vittoria Astley,ou=Human Resources,dc=bitwarden,dc=com", + email: "AstleyV@f318f75c01ee43e0921a0e961414763d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hector Easaw,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hector Easaw,ou=Payroll,dc=bitwarden,dc=com", + email: "EasawH@d3e5ff3d0e59404589f0f6d57f8f6108.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matilda Gomez,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Matilda Gomez,ou=Human Resources,dc=bitwarden,dc=com", + email: "GomezM@ccf238ac72764498a2a4e871140940fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crista McMasters,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Crista McMasters,ou=Management,dc=bitwarden,dc=com", + email: "McMasteC@444794b5113d44779ace93e2616392cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden,dc=com", + email: "AbbatanL@eb362d3928c448a4b72d63b85283da63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amnish Haydock,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amnish Haydock,ou=Management,dc=bitwarden,dc=com", + email: "HaydockA@e326aad292d2417588aee72e8914fb32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mignonne Shull,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mignonne Shull,ou=Product Development,dc=bitwarden,dc=com", + email: "ShullM@5eddd4d764454fa48632e5c1f8824445.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lizzy Monson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lizzy Monson,ou=Janitorial,dc=bitwarden,dc=com", + email: "MonsonL@5dfbfc6402474d4a84deb330c0f4315f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Riyad Stropp,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Riyad Stropp,ou=Peons,dc=bitwarden,dc=com", + email: "StroppR@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jennee Tipping,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jennee Tipping,ou=Product Testing,dc=bitwarden,dc=com", + email: "TippingJ@7a8159a4b38d481598c0559b90aec74d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorianne Devera,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorianne Devera,ou=Peons,dc=bitwarden,dc=com", + email: "DeveraL@086cd0723f0c4d19b12b0a6c52b08ed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kana VanSickle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kana VanSickle,ou=Human Resources,dc=bitwarden,dc=com", + email: "VanSickK@fc1572b2278f4aeabefffc267baf4272.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bina Scales,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bina Scales,ou=Human Resources,dc=bitwarden,dc=com", + email: "ScalesB@166fd602ceb04a58b9e0bfc4c39bf95b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ariela Stachowiak,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ariela Stachowiak,ou=Peons,dc=bitwarden,dc=com", + email: "StachowA@90463e36c9634ed7af09a58415debfe0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leontine Kresl,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Leontine Kresl,ou=Human Resources,dc=bitwarden,dc=com", + email: "KreslL@123877216cf647dc9c161017fd0bf922.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tomasine Borza,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tomasine Borza,ou=Janitorial,dc=bitwarden,dc=com", + email: "BorzaT@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emory Ramnarine,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emory Ramnarine,ou=Product Development,dc=bitwarden,dc=com", + email: "RamnariE@391d8dba5fa94d8e974df50be3a6709e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corella Loperena,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Corella Loperena,ou=Management,dc=bitwarden,dc=com", + email: "LoperenC@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirna Kashef,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mirna Kashef,ou=Administrative,dc=bitwarden,dc=com", + email: "KashefM@072112936d7540f191ae5e1941e3f66c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roseann Coyne,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roseann Coyne,ou=Product Development,dc=bitwarden,dc=com", + email: "CoyneR@3dd9413931df4d5d906784831a201dd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden,dc=com", + email: "AmarsiK@4b0a9ffaaeec4cc3ae5daf192d65fc6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agenia Zampino,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Agenia Zampino,ou=Administrative,dc=bitwarden,dc=com", + email: "ZampinoA@52895e87978c4f7a853b254ac3b4e18f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vic Lenox,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vic Lenox,ou=Product Testing,dc=bitwarden,dc=com", + email: "LenoxV@9c640b9ada7e43fd815986e9b791454d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sissie Rao,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sissie Rao,ou=Administrative,dc=bitwarden,dc=com", + email: "RaoS@ad2f81222ff04e688459bdc291415016.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chi Shreve,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chi Shreve,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShreveC@b2b61d7107f642f5a98b64baa9303c9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gloria DeGrandis,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gloria DeGrandis,ou=Management,dc=bitwarden,dc=com", + email: "DeGrandG@8a604e644ae34afd98bb9ace2d3d942b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ryann Teacher,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ryann Teacher,ou=Management,dc=bitwarden,dc=com", + email: "TeacherR@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", + email: "ChirachS@c50e1d17976a4acebd18f01bbfd46623.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naveen Kollman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Naveen Kollman,ou=Peons,dc=bitwarden,dc=com", + email: "KollmanN@dc25e6259a754e12b71b6ceb921f6e43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozina Schipper,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rozina Schipper,ou=Management,dc=bitwarden,dc=com", + email: "SchippeR@388f37e043f44f87a961652591a7a940.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Partha Kelsay,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Partha Kelsay,ou=Peons,dc=bitwarden,dc=com", + email: "KelsayP@fac421ca650e46139878bbd5f7498e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden,dc=com", + email: "HowePatM@cce34a85aeda4eaa8425019b868727c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vinh Dhar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vinh Dhar,ou=Administrative,dc=bitwarden,dc=com", + email: "DharV@6f03f1adf7c149889e4e46274861a90d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden,dc=com", + email: "PlaterZH@05c9124444ac41d598fb0334940751db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cart Cardozo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cart Cardozo,ou=Management,dc=bitwarden,dc=com", + email: "CardozoC@e5c90ecebea1435c996209dde46c0296.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Briana Ambler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Briana Ambler,ou=Product Development,dc=bitwarden,dc=com", + email: "AmblerB@a94a4e703f55451099134b3aaeedccbb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kemp Akai,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kemp Akai,ou=Management,dc=bitwarden,dc=com", + email: "AkaiK@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anjela Gribbons,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anjela Gribbons,ou=Product Development,dc=bitwarden,dc=com", + email: "GribbonA@039e3a194ecb4b229b6171f883dbe2ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden,dc=com", + email: "PankhurF@f97d3d1fbfb54eb9846b54af1e96be37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hudai Baulch,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hudai Baulch,ou=Payroll,dc=bitwarden,dc=com", + email: "BaulchH@ebbd3bd6f4c84c3b86ade3725f39d1ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden,dc=com", + email: "ReichinM@ae95a9e30a2b4495b405c300be234d38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kee Gilchrist,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kee Gilchrist,ou=Payroll,dc=bitwarden,dc=com", + email: "GilchriK@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden,dc=com", + email: "PewittD@3569446edc67492da6f3555168f86d08.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellis Brunner,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ellis Brunner,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrunnerE@a649078d65524cbb8ff458be0026774e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Violet Luwemba,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Violet Luwemba,ou=Payroll,dc=bitwarden,dc=com", + email: "LuwembaV@ecbe7413d7a74dce8478d8a77a5f394f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kessia McVicker,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kessia McVicker,ou=Management,dc=bitwarden,dc=com", + email: "McVickeK@9655cd36a01c4aa6b915b07f385eebda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Buffy Treen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Buffy Treen,ou=Janitorial,dc=bitwarden,dc=com", + email: "TreenB@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huub Palfreyman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Huub Palfreyman,ou=Administrative,dc=bitwarden,dc=com", + email: "PalfreyH@39279f1fe7e44c90a8b6ba9604608e10.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walt Pringle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Walt Pringle,ou=Human Resources,dc=bitwarden,dc=com", + email: "PringleW@1165c0fd18ed4ab3a49c1b798696e277.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden,dc=com", + email: "AngererW@6de130a8139a479abd748cccf12fccd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden,dc=com", + email: "FergusoB@d404d6f67aee4480aef4deb01202b0ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rima OBrien,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rima OBrien,ou=Peons,dc=bitwarden,dc=com", + email: "OBrienR@fecfcf752c6e4027af9fd19570ebc44a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden,dc=com", + email: "StitesT@fdcc23b3e21f4f0fa3bffbc78ce6d7d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinett Borg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Robinett Borg,ou=Janitorial,dc=bitwarden,dc=com", + email: "BorgR@20f59cdd83ae48b3816d0ba42aaa0a71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden,dc=com", + email: "KruziakM@256ea15783c347f9b9c84e579468618d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden,dc=com", + email: "ThornleS@1e2b67f93f814f68b5e4aa746670a4e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wai Elms,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wai Elms,ou=Product Testing,dc=bitwarden,dc=com", + email: "ElmsW@d28530c9df644cffbc9c3ddd841cc9a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden,dc=com", + email: "EpplettS@09c55424f60f401a820af7f109784bda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alikee Seay,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alikee Seay,ou=Janitorial,dc=bitwarden,dc=com", + email: "SeayA@99a51e3de4824b82894f80e7490fdc98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden,dc=com", + email: "SimonseD@b67254eafc794e8aadd067850b852e05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pammi Abrams,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pammi Abrams,ou=Peons,dc=bitwarden,dc=com", + email: "AbramsP@860c7d85ea254a79a064b6a2375bb2e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gateway Benzick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gateway Benzick,ou=Product Testing,dc=bitwarden,dc=com", + email: "BenzickG@ef52200320a34601b7e10e8ff147afd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhody Birk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rhody Birk,ou=Administrative,dc=bitwarden,dc=com", + email: "BirkR@0700db396e394f2aa0ec4417fdd37e22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden,dc=com", + email: "RamakriP@7bd1348caadc49fd912c79c585334210.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atlanta Brannon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Atlanta Brannon,ou=Management,dc=bitwarden,dc=com", + email: "BrannonA@8148a52d859b468a9dde3ee8b81e013b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden,dc=com", + email: "MACKenzM@a4ebc705137a4ddb9ebce3e4b095eec3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden,dc=com", + email: "NickersJ@dc196a8022ff465cb8dbe2eba3225125.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden,dc=com", + email: "ODonnelK@c7537618f37d4b7db41aeb4dbd21158d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden,dc=com", + email: "GedmanL@521dc01836174c9fbceba2f0cdb64374.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moshe Bowick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Moshe Bowick,ou=Product Testing,dc=bitwarden,dc=com", + email: "BowickM@0d2070a7704249ccae81fc4b91659074.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirene Lommen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shirene Lommen,ou=Management,dc=bitwarden,dc=com", + email: "LommenS@68783c5d6bc743ddb0d94e6abd382e0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chand Fusca,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chand Fusca,ou=Peons,dc=bitwarden,dc=com", + email: "FuscaC@805e256767ba408cbe90aeb2944a8e9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bethina Kigyos,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bethina Kigyos,ou=Peons,dc=bitwarden,dc=com", + email: "KigyosB@64b7c8578355450790f3fb63c15436b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden,dc=com", + email: "SutherlT@398ea17d6f974da4b9c05b23fe6460f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paolina Ricketson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Paolina Ricketson,ou=Administrative,dc=bitwarden,dc=com", + email: "RicketsP@fa8dd30a7166419e97723182660d3ed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden,dc=com", + email: "ArtspssT@f6fe529f06ac433fab898dee2f04e9dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isaac McNeil,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Isaac McNeil,ou=Payroll,dc=bitwarden,dc=com", + email: "McNeilI@af019db996df414484b0d304e9b3637a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaman Churchill,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jaman Churchill,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChurchiJ@b9f540485b314fbf8d07b00822dff971.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erick Heynen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Erick Heynen,ou=Product Development,dc=bitwarden,dc=com", + email: "HeynenE@71334519f85d4ff38bd6a6b8f4192c09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sondra Frie,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sondra Frie,ou=Administrative,dc=bitwarden,dc=com", + email: "FrieS@1c3f38c01ffe4fd78e55d74bc900ca15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mack Hermanns,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mack Hermanns,ou=Product Testing,dc=bitwarden,dc=com", + email: "HermannM@30919d15fb3f4281a17499420dcfbd91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patchit Panesar,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Patchit Panesar,ou=Human Resources,dc=bitwarden,dc=com", + email: "PanesarP@99efb52676a5438d8f4dfeb830e52009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mohamad Ng,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mohamad Ng,ou=Janitorial,dc=bitwarden,dc=com", + email: "NgM@799bf34e24074827963968e6e62fb541.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden,dc=com", + email: "MtcbaseJ@ca73de7d8fb447f899df1cc98c2c34a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jayme McMillen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jayme McMillen,ou=Payroll,dc=bitwarden,dc=com", + email: "McMilleJ@7a5ece6d9adf44888506b316b6709917.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perrin McMasters,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Perrin McMasters,ou=Administrative,dc=bitwarden,dc=com", + email: "McMasteP@22431f0d07b34bd39089fef51c341d61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden,dc=com", + email: "KotamarG@764613c40e224c12ab1c1cb80b18e644.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", + email: "HowePatM@1f747432623a4f53b844c44224754693.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joell Veloz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joell Veloz,ou=Human Resources,dc=bitwarden,dc=com", + email: "VelozJ@76f6104d33de482eb35b100eb7033678.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden,dc=com", + email: "DeAlmeiT@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naima Swinks,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Naima Swinks,ou=Management,dc=bitwarden,dc=com", + email: "SwinksN@08a7e5e74be04f44a364a958dd103e80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mab Amato,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mab Amato,ou=Payroll,dc=bitwarden,dc=com", + email: "AmatoM@481a6dfc2726429788928adbad28f42a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeanna Lawther,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jeanna Lawther,ou=Product Development,dc=bitwarden,dc=com", + email: "LawtherJ@ce09eff4e27d456d8a017939b41c80b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden,dc=com", + email: "DeBruskM@56ee0442f1a84dbfb882b36d77def9ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luther Kordik,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Luther Kordik,ou=Peons,dc=bitwarden,dc=com", + email: "KordikL@c84c1685109349e381c9c3b76d3c081d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden,dc=com", + email: "TebinkaH@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenine Sutton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jenine Sutton,ou=Peons,dc=bitwarden,dc=com", + email: "SuttonJ@3546d29dd7834be9b84722d152b319e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden,dc=com", + email: "GordonJ@c914251ab9404c90af6d46fa9bf97baa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronny Blomquist,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ronny Blomquist,ou=Management,dc=bitwarden,dc=com", + email: "BlomquiR@a651bab618794291bf5129fe307f0c99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krystal Noel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Krystal Noel,ou=Product Development,dc=bitwarden,dc=com", + email: "NoelK@80695950877a41d48624da7d4574c893.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clark Bruneau,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Clark Bruneau,ou=Product Testing,dc=bitwarden,dc=com", + email: "BruneauC@1f047af09330424c80ddd51cf37e0010.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anallese Bloemker,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anallese Bloemker,ou=Administrative,dc=bitwarden,dc=com", + email: "BloemkeA@984a33b6fcea4c229307cb5a753888dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WenKai Schemena,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=WenKai Schemena,ou=Peons,dc=bitwarden,dc=com", + email: "SchemenW@776174eadbeb4db89457f08eae37cc43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luan Goupil,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Luan Goupil,ou=Human Resources,dc=bitwarden,dc=com", + email: "GoupilL@729666359ed04f0995bf97703c170436.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden,dc=com", + email: "LoponenD@b2ad1fc1ea554b8f973d1f9ef9821f73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verna Britt,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Verna Britt,ou=Management,dc=bitwarden,dc=com", + email: "BrittV@2589cc141c4e4b5c8c4573c04cd3f678.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hoog Gareis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hoog Gareis,ou=Janitorial,dc=bitwarden,dc=com", + email: "GareisH@5f79b20f5b7f4ae1afe25eb5f16c5923.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden,dc=com", + email: "TsuiS@289444924c894df68dc76e9d8add4066.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Skyler Lamy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Skyler Lamy,ou=Product Development,dc=bitwarden,dc=com", + email: "LamyS@df91f02938d046d8adb3f260f0e722ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoyerB@553a74428bb643038d327a6c4003715b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Layne Esry,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Layne Esry,ou=Janitorial,dc=bitwarden,dc=com", + email: "EsryL@c3c0f7a355cb4430990b12849cd4234b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amrik Thornber,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Amrik Thornber,ou=Payroll,dc=bitwarden,dc=com", + email: "ThornbeA@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michaela Lobianco,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Michaela Lobianco,ou=Product Development,dc=bitwarden,dc=com", + email: "LobiancM@5957c85f3b4a4b49903492c9f27c830b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden,dc=com", + email: "ClossonH@776174eadbeb4db89457f08eae37cc43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden,dc=com", + email: "GubbinsM@853be251133d4fadac48c2adaa97ca8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden,dc=com", + email: "HoesE@b78fed9ef6a94b4d9e8bb1b5d1719aef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxy Banerjee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roxy Banerjee,ou=Product Development,dc=bitwarden,dc=com", + email: "BanerjeR@26baa80c82b44c14a3680a99c80f4149.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Derek Ukena,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Derek Ukena,ou=Payroll,dc=bitwarden,dc=com", + email: "UkenaD@2d0e71959712498892398e30a50d5bec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenelle Crothers,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jenelle Crothers,ou=Administrative,dc=bitwarden,dc=com", + email: "CrotherJ@fc7406e3c8e34fce9e4288bfe13798e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devonna Caron,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Devonna Caron,ou=Product Testing,dc=bitwarden,dc=com", + email: "CaronD@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neill Droste,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Neill Droste,ou=Peons,dc=bitwarden,dc=com", + email: "DrosteN@aac869a9d66f41deb273e8c857d2f2a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lissy MooYoung,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lissy MooYoung,ou=Payroll,dc=bitwarden,dc=com", + email: "MooYounL@4a32da5e6b0c44ddb6046a41d38421fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frederica Herbers,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Frederica Herbers,ou=Product Development,dc=bitwarden,dc=com", + email: "HerbersF@940a7593b88c4fb0afde713027fc2a16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geir Madigan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Geir Madigan,ou=Peons,dc=bitwarden,dc=com", + email: "MadiganG@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cal Vosburg,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cal Vosburg,ou=Product Development,dc=bitwarden,dc=com", + email: "VosburgC@88f0e01d6ade41fe9e8249c17671d036.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrol Schluter,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Darrol Schluter,ou=Janitorial,dc=bitwarden,dc=com", + email: "SchluteD@5b2cdd0210f9439bba35839f38589b93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Augustin Polashock,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Augustin Polashock,ou=Administrative,dc=bitwarden,dc=com", + email: "PolashoA@71a3a2f552a3442caaba57d329355ad2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karrah Federico,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Karrah Federico,ou=Janitorial,dc=bitwarden,dc=com", + email: "FedericK@1f90981d05564d038a0c312379adcdd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlina Douet,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Arlina Douet,ou=Product Testing,dc=bitwarden,dc=com", + email: "DouetA@0370bf4c8f0643cdbb05f71db44e6eda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herb Cantrell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Herb Cantrell,ou=Human Resources,dc=bitwarden,dc=com", + email: "CantrelH@33bf50a72a3544c9bdfe2238d2123ad0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ott Beresnikow,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ott Beresnikow,ou=Management,dc=bitwarden,dc=com", + email: "BeresniO@ccd602a706b2492c8998dcf7c17bd36f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tracey Tates,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tracey Tates,ou=Payroll,dc=bitwarden,dc=com", + email: "TatesT@cbda675e7e2a4c7e8469f0d5f6b406ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeniece Belmont,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jeniece Belmont,ou=Peons,dc=bitwarden,dc=com", + email: "BelmontJ@5128133359594cd18d137c259ecf1184.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vern Vosup,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vern Vosup,ou=Janitorial,dc=bitwarden,dc=com", + email: "VosupV@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zoltan Zumhagen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zoltan Zumhagen,ou=Management,dc=bitwarden,dc=com", + email: "ZumhageZ@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden,dc=com", + email: "WignallG@e52982c108d74f959048f88b7dd46e6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Makiko Walta,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Makiko Walta,ou=Management,dc=bitwarden,dc=com", + email: "WaltaM@4c9ea5cb0c6d47f0bff8da92c6c9d0eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ermentrude Boult,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ermentrude Boult,ou=Management,dc=bitwarden,dc=com", + email: "BoultE@6114ed5b2ab14d15895d683682929e6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden,dc=com", + email: "PaetschR@111d7547650243e9b05c0ec5c87bdfcd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Larisa Szura,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Larisa Szura,ou=Product Testing,dc=bitwarden,dc=com", + email: "SzuraL@c4198b8f2847457c97c168c8fc0c7617.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wiebe Ku,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Wiebe Ku,ou=Peons,dc=bitwarden,dc=com", + email: "KuW@b4cc71653cab4b938d868f66a601e950.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zeljko Subick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zeljko Subick,ou=Management,dc=bitwarden,dc=com", + email: "SubickZ@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liese Neill,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Liese Neill,ou=Product Development,dc=bitwarden,dc=com", + email: "NeillL@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChotkowF@8971a4377828437190f1287041d02525.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doralin PATCOR,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Doralin PATCOR,ou=Product Development,dc=bitwarden,dc=com", + email: "PATCORD@003e771d29284236b967f25e9416ed07.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tillie Erskine,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tillie Erskine,ou=Human Resources,dc=bitwarden,dc=com", + email: "ErskineT@57dc19fb72ed48a88f045569d12c771f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden,dc=com", + email: "JacobseD@1e6e292197c54bb68d0f062bfc704a5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheeree Petrunka,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sheeree Petrunka,ou=Management,dc=bitwarden,dc=com", + email: "PetrunkS@3eadf1668d9548a8a0a9a2df5d767d49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winifred Grelck,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Winifred Grelck,ou=Management,dc=bitwarden,dc=com", + email: "GrelckW@33b35540a4bc4f6baa81886f1273a7c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden,dc=com", + email: "WilemonD@7be2adbfd042422e9bcc88e78cabf3cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden,dc=com", + email: "PolakowJ@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toni Volkmer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Toni Volkmer,ou=Payroll,dc=bitwarden,dc=com", + email: "VolkmerT@3f22733d317d4f91854fb0b865164d32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alexandra Bassett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Alexandra Bassett,ou=Payroll,dc=bitwarden,dc=com", + email: "BassettA@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ineke Aloi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ineke Aloi,ou=Management,dc=bitwarden,dc=com", + email: "AloiI@2b13da408414484c934b524c33272c48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden,dc=com", + email: "ComtoisM@1fa19cc59b0a4b048ab223f06dc01275.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shafiq Hearn,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shafiq Hearn,ou=Payroll,dc=bitwarden,dc=com", + email: "HearnS@3118b07730ef4ee1ba02df2d8acb61a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bucklin Venne,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bucklin Venne,ou=Management,dc=bitwarden,dc=com", + email: "VenneB@0dc9183f5edd4f868911cb0b9c90c604.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden,dc=com", + email: "MoettelM@c51f0fa4b3c84c5e87c57318cac19216.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden,dc=com", + email: "GaudetG@ba5fbd8ccee64957820f429bea9cbd2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theodora Kendall,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Theodora Kendall,ou=Management,dc=bitwarden,dc=com", + email: "KendallT@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kee Simanskis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kee Simanskis,ou=Product Testing,dc=bitwarden,dc=com", + email: "SimanskK@084a0f09394c4019a2e37bab0c6dfc4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micky Moorefield,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Micky Moorefield,ou=Management,dc=bitwarden,dc=com", + email: "MoorefiM@e57ea92ee58c48afbafa0ac14075f3d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saraann Helpline,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Saraann Helpline,ou=Product Testing,dc=bitwarden,dc=com", + email: "HelplinS@d4be1d4cbeff459bb380038ad268b7ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blondy Kluke,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Blondy Kluke,ou=Management,dc=bitwarden,dc=com", + email: "KlukeB@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marys Edgette,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marys Edgette,ou=Administrative,dc=bitwarden,dc=com", + email: "EdgetteM@e8e2b56db83b4ff19e981322f6e68e27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden,dc=com", + email: "NorczenI@37ef93fb374e4550b60ee55424a070b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verina McGuigan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Verina McGuigan,ou=Payroll,dc=bitwarden,dc=com", + email: "McGuigaV@5f494e5d5c2b48bd9e0d3f42e62d76ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beryl Desmond,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Beryl Desmond,ou=Management,dc=bitwarden,dc=com", + email: "DesmondB@7f8aff875b274954baafb6b3b56714e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sydel Staples,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sydel Staples,ou=Janitorial,dc=bitwarden,dc=com", + email: "StaplesS@f8d4f8ae5e28413fb1f47c0eed0d375d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Letta Kalyani,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Letta Kalyani,ou=Peons,dc=bitwarden,dc=com", + email: "KalyaniL@06b92eab0752450c93185ff5957a8ffb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shuo Anstett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shuo Anstett,ou=Product Development,dc=bitwarden,dc=com", + email: "AnstettS@06fecf470a2d4fa2a3e3213e29056ac5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winifred Billing,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Winifred Billing,ou=Payroll,dc=bitwarden,dc=com", + email: "BillingW@504b7fa15e81498b91140ca23e9bafd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colene Colwell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Colene Colwell,ou=Human Resources,dc=bitwarden,dc=com", + email: "ColwellC@c6c308b188d84d848e3ff3cf9a7dd81c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isabelita Irving,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Isabelita Irving,ou=Management,dc=bitwarden,dc=com", + email: "IrvingI@93ab0817a8144a1a8bd2837bd0ee0f5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raudres Fleischer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Raudres Fleischer,ou=Administrative,dc=bitwarden,dc=com", + email: "FleischR@feab464eed244fca93a5368f188977a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden,dc=com", + email: "BarkwilT@8f055851cf2e446194b128d0faf47339.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laslo Anstett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Laslo Anstett,ou=Human Resources,dc=bitwarden,dc=com", + email: "AnstettL@427178a8618c4a42931dd481e9a5bd65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ovila Liverman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ovila Liverman,ou=Management,dc=bitwarden,dc=com", + email: "LivermaO@4a562374ace845b8b062489d81f91f68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angy Walkins,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Angy Walkins,ou=Payroll,dc=bitwarden,dc=com", + email: "WalkinsA@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hesham Ellison,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hesham Ellison,ou=Management,dc=bitwarden,dc=com", + email: "EllisonH@dcfeb1e34dfd4d498a4c69e47113773f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arnett Boone,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Arnett Boone,ou=Janitorial,dc=bitwarden,dc=com", + email: "BooneA@3ab4b0bbf0e7419c9f849fbf29c78286.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tawauna Culver,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tawauna Culver,ou=Human Resources,dc=bitwarden,dc=com", + email: "CulverT@826f44c090e247dea6dde88876c0151e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annelise Traulich,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Annelise Traulich,ou=Human Resources,dc=bitwarden,dc=com", + email: "TraulicA@04afc29a247d444f9a8e905bda30c780.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farouk Goridkov,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Farouk Goridkov,ou=Peons,dc=bitwarden,dc=com", + email: "GoridkoF@685481fe6bd14be085fc26453aa34d71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loris Huestis,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Loris Huestis,ou=Management,dc=bitwarden,dc=com", + email: "HuestisL@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden,dc=com", + email: "GaschoS@c3a00c67940342bebf6eb781d8fd6a4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sile Creighton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sile Creighton,ou=Human Resources,dc=bitwarden,dc=com", + email: "CreightS@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deborah Marui,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Deborah Marui,ou=Payroll,dc=bitwarden,dc=com", + email: "MaruiD@b5bcc4ce776e4805ab4216703177730e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drona Hahn,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Drona Hahn,ou=Peons,dc=bitwarden,dc=com", + email: "HahnD@59110a8eb1b44c7887a8222252c623b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden,dc=com", + email: "NybergF@1ee541f8be124dfb9bee70e5bd91693b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genia Pewitt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Genia Pewitt,ou=Product Testing,dc=bitwarden,dc=com", + email: "PewittG@0c75759c6a414aae8103d4c8529d60da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annet Bagshaw,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Annet Bagshaw,ou=Peons,dc=bitwarden,dc=com", + email: "BagshawA@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martha Hilaire,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Martha Hilaire,ou=Product Development,dc=bitwarden,dc=com", + email: "HilaireM@60825058a7f74da9878a9c767bd93e3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Consuelo Welch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Consuelo Welch,ou=Management,dc=bitwarden,dc=com", + email: "WelchC@303ac29ae28a4feca207111066bb217f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marti Petrea,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marti Petrea,ou=Product Development,dc=bitwarden,dc=com", + email: "PetreaM@92d64cb2a6f949499e2d502731b02c99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pratibha Gater,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pratibha Gater,ou=Product Testing,dc=bitwarden,dc=com", + email: "GaterP@b1466a7610494a6ebb6083b758d41799.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden,dc=com", + email: "CochranL@18060edcc6234a8b8fe795c650ecf126.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pojanart Edey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pojanart Edey,ou=Peons,dc=bitwarden,dc=com", + email: "EdeyP@e116936732ce45789365cbd54acef482.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maynard Shennan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maynard Shennan,ou=Product Development,dc=bitwarden,dc=com", + email: "ShennanM@221f532d70be4be481e9ed7c17f0c9ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theressa Schultze,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Theressa Schultze,ou=Peons,dc=bitwarden,dc=com", + email: "SchultzT@96ba8bbe2ea64681a15c64fdfef143e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nanon McIntyre,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nanon McIntyre,ou=Product Development,dc=bitwarden,dc=com", + email: "McIntyrN@3013258ee5854ddca90a2234ad0323a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silvia Peiser,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Silvia Peiser,ou=Peons,dc=bitwarden,dc=com", + email: "PeiserS@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meryl LeClair,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Meryl LeClair,ou=Janitorial,dc=bitwarden,dc=com", + email: "LeClairM@7d4c2ab04b8a46e18a0c092fdac02490.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tariq Standel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tariq Standel,ou=Janitorial,dc=bitwarden,dc=com", + email: "StandelT@831a31deb2a74949a5486f724fd8cfc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden,dc=com", + email: "FouillaJ@94c56b5673e64272b822168ca80bb244.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yeung Walpole,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yeung Walpole,ou=Human Resources,dc=bitwarden,dc=com", + email: "WalpoleY@ca56dc5bc8e34932af430390e3ed31ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carita Timmerman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carita Timmerman,ou=Janitorial,dc=bitwarden,dc=com", + email: "TimmermC@f5b75ffb6f5e450e9b2f76ee0ad4b23f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden,dc=com", + email: "KuczynsA@b1a6b6a5513044a8a462e54235172118.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haley Herren,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Haley Herren,ou=Administrative,dc=bitwarden,dc=com", + email: "HerrenH@faf6dcfa970440eb9717745c6f18eb4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elbert Allard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Elbert Allard,ou=Human Resources,dc=bitwarden,dc=com", + email: "AllardE@5410deb36536455cba5926244af94c93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden,dc=com", + email: "SguignaC@c14faf1ad0834d6d9e4b1880a48b9d9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trix VO,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Trix VO,ou=Product Development,dc=bitwarden,dc=com", + email: "VOT@da7bd2be911046399d0c6417c3572f36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tommi Kapsa,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tommi Kapsa,ou=Peons,dc=bitwarden,dc=com", + email: "KapsaT@7ff24b8ce0c74adabb9529e4076ad209.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teriann Stastny,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Teriann Stastny,ou=Human Resources,dc=bitwarden,dc=com", + email: "StastnyT@232ca6cb0ac84bf8be33192693a35ba0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden,dc=com", + email: "HennebuK@dab11b4d8bc0443d8cd54025f08f0682.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryant Goel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bryant Goel,ou=Peons,dc=bitwarden,dc=com", + email: "GoelB@c73f6f11deac479aa597cfaff3007ea1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willabella Darnell,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Willabella Darnell,ou=Peons,dc=bitwarden,dc=com", + email: "DarnellW@5415c52be549497a9568e3a1cfa7947d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noemi Skerlak,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Noemi Skerlak,ou=Peons,dc=bitwarden,dc=com", + email: "SkerlakN@9bbd1f32714548669db47c8054fa83ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veena Siefert,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Veena Siefert,ou=Product Development,dc=bitwarden,dc=com", + email: "SiefertV@66522c1458fb4708a90c5e0bc4989ef8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShifletX@509acce88e824dae901a9dc813095e54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karyn Frankenberger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karyn Frankenberger,ou=Management,dc=bitwarden,dc=com", + email: "FrankenK@9f4dcfc9947f4a519924493e85b35351.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angil Simpkin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Angil Simpkin,ou=Human Resources,dc=bitwarden,dc=com", + email: "SimpkinA@a8ee069794fb480895e756160591d5bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berta Fetzko,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Berta Fetzko,ou=Product Development,dc=bitwarden,dc=com", + email: "FetzkoB@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lance Saltsider,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lance Saltsider,ou=Peons,dc=bitwarden,dc=com", + email: "SaltsidL@0803272b02904fab981fd623789c71d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vijai Brent,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vijai Brent,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrentV@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miss Casper,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Miss Casper,ou=Peons,dc=bitwarden,dc=com", + email: "CasperM@d71dc23a803f40a68bc3a90e123ecace.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden,dc=com", + email: "RousseaR@dec23ba70c794c32b757bd3a5f9b8dc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrienne Askins,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Adrienne Askins,ou=Peons,dc=bitwarden,dc=com", + email: "AskinsA@391d8dba5fa94d8e974df50be3a6709e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Omayma Kinos,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Omayma Kinos,ou=Management,dc=bitwarden,dc=com", + email: "KinosO@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francene Babin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Francene Babin,ou=Administrative,dc=bitwarden,dc=com", + email: "BabinF@085bf0384c944c1888b51dc3d32dbe90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maitilde Clerke,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maitilde Clerke,ou=Management,dc=bitwarden,dc=com", + email: "ClerkeM@4f865f7d6d624277ad8d5380d84e9135.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wileen Martel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Wileen Martel,ou=Administrative,dc=bitwarden,dc=com", + email: "MartelW@232786cf6be745b08d532519f75fd65e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden,dc=com", + email: "IbarraZ@a33f574fa0a24162b343e74178659859.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden,dc=com", + email: "FujiwarC@dddb0ef21490453ca7770ab3e7c98c8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden,dc=com", + email: "WargnieP@cb0fd14a62264345a0844bec81676fd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salli Boroski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Salli Boroski,ou=Human Resources,dc=bitwarden,dc=com", + email: "BoroskiS@33ab1151291f417888dc3f1306704323.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lissi Straub,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lissi Straub,ou=Peons,dc=bitwarden,dc=com", + email: "StraubL@cb549985165642e0959235024946d6c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden,dc=com", + email: "RintalaE@4f1519512714466da3525736d08bec31.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrian Paialunga,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Adrian Paialunga,ou=Administrative,dc=bitwarden,dc=com", + email: "PaialunA@8d7191d93987404d9ebb78d6e94231f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dido Kohl,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dido Kohl,ou=Human Resources,dc=bitwarden,dc=com", + email: "KohlD@5c05b76ad7494928a53980603065304f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden,dc=com", + email: "CavinesH@1487aec275284e49a79c5c4099f33bdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden,dc=com", + email: "KamyszeJ@47f2dfd3a9d34b3ab2e3a42042757f0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chung Yarber,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chung Yarber,ou=Human Resources,dc=bitwarden,dc=com", + email: "YarberC@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KwokLan Starowicz,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=KwokLan Starowicz,ou=Management,dc=bitwarden,dc=com", + email: "StarowiK@a377e29ea3c74b90af1de2d7e1b3a80b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odile Finane,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Odile Finane,ou=Peons,dc=bitwarden,dc=com", + email: "FinaneO@09d26a3ec6db4402823e536bf9d9abd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shila Wykoff,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shila Wykoff,ou=Janitorial,dc=bitwarden,dc=com", + email: "WykoffS@22f46c043948431eb629c2788e97867d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nga Seroka,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nga Seroka,ou=Human Resources,dc=bitwarden,dc=com", + email: "SerokaN@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden,dc=com", + email: "IrcstanG@6230ce48d06c4adba4fee16dacf3aacb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laurel Godfrey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Laurel Godfrey,ou=Payroll,dc=bitwarden,dc=com", + email: "GodfreyL@a9638d8de81a4990b97d38b8ec08064b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marja Brivet,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marja Brivet,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrivetM@457f2ac4e79241acb223143f8483a7d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden,dc=com", + email: "KellermA@9b4bb145d7634b188d0d60fab9cb2fce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fung Holvey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fung Holvey,ou=Management,dc=bitwarden,dc=com", + email: "HolveyF@785d053c77824c6b9058fedb831b5054.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Remy Freeth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Remy Freeth,ou=Product Testing,dc=bitwarden,dc=com", + email: "FreethR@1c65db93a4244f2389821a52627d325e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christina Schwartz,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Christina Schwartz,ou=Management,dc=bitwarden,dc=com", + email: "SchwartC@09c55424f60f401a820af7f109784bda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sissy Snelling,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sissy Snelling,ou=Human Resources,dc=bitwarden,dc=com", + email: "SnellinS@33bb1d9a8f7a4440aa69d0f82177e2a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randa Cumpston,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Randa Cumpston,ou=Administrative,dc=bitwarden,dc=com", + email: "CumpstoR@af5f99a04b4d4049bab4751bf65043cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maitreya Dpu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maitreya Dpu,ou=Administrative,dc=bitwarden,dc=com", + email: "DpuM@bc7c0ff60d4641f2b01474bcc8b086c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jon Giotis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jon Giotis,ou=Product Testing,dc=bitwarden,dc=com", + email: "GiotisJ@df6375b797c34567a9e4770a61e55877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mala Kilner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mala Kilner,ou=Product Development,dc=bitwarden,dc=com", + email: "KilnerM@0f4f6868b21d4ba883c28f9afa5b52cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melanie Bubel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Melanie Bubel,ou=Payroll,dc=bitwarden,dc=com", + email: "BubelM@f5509b991c844dc9a39d99c61a3ee567.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Collie Nentwich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Collie Nentwich,ou=Product Testing,dc=bitwarden,dc=com", + email: "NentwicC@f87253151346446facf2c747687a955b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden,dc=com", + email: "PiwkowsO@72dcb42620634cf59fa336b64a03ee7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden,dc=com", + email: "DorisHaY@b8436b0997234174a1d3652199251b81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madella Feder,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Madella Feder,ou=Janitorial,dc=bitwarden,dc=com", + email: "FederM@ca22d526a59d4676a611c2fc1101837d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden,dc=com", + email: "HallenbD@6ffe5ab0f525480aa833777930f34870.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roman Burleigh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roman Burleigh,ou=Product Development,dc=bitwarden,dc=com", + email: "BurleigR@d22cee8cdc104128b64ec5a3dc27a2cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SangMaun Nunn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=SangMaun Nunn,ou=Administrative,dc=bitwarden,dc=com", + email: "NunnS@a756330f88da4d03abf12059d19a1462.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden,dc=com", + email: "OFCPARMR@2c23fea190c640299f3fdc976ce4b7f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moria Auld,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Moria Auld,ou=Payroll,dc=bitwarden,dc=com", + email: "AuldM@848de2e1032948c1b5d78b7a20263232.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ted Demeulemeester,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ted Demeulemeester,ou=Management,dc=bitwarden,dc=com", + email: "DemeuleT@d5289993561c41498ef7b2158a5f68d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bertha Lamont,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bertha Lamont,ou=Payroll,dc=bitwarden,dc=com", + email: "LamontB@df6375b797c34567a9e4770a61e55877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden,dc=com", + email: "BradburS@ab3d1e9b742c4214a0c8d83acbe1ad8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hayden Francese,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hayden Francese,ou=Product Development,dc=bitwarden,dc=com", + email: "FrancesH@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeannette Quante,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jeannette Quante,ou=Management,dc=bitwarden,dc=com", + email: "QuanteJ@9cba00e55266421b93bd11c17d0407ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steffane Middleton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Steffane Middleton,ou=Peons,dc=bitwarden,dc=com", + email: "MiddletS@3b02e13d586c4243a74a50de88d81685.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden,dc=com", + email: "KweeT@4641f68e88f74b89a7d91f372f89c707.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saied Streight,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Saied Streight,ou=Product Development,dc=bitwarden,dc=com", + email: "StreighS@5c51ed312b7d40789d1387ca1b76506e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marco Ethier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marco Ethier,ou=Human Resources,dc=bitwarden,dc=com", + email: "EthierM@0f1f84ce6579498d8497bfb021e0f4e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlyn Gallion,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carlyn Gallion,ou=Management,dc=bitwarden,dc=com", + email: "GallionC@ed183240d2274a60918dec7c056a1b86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden,dc=com", + email: "ArcouetS@09240d9396fc4bb88db28084b91824ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pacific Maxin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pacific Maxin,ou=Payroll,dc=bitwarden,dc=com", + email: "MaxinP@7dbb126638b0419eb87d5c967cdeef20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coursey Breiten,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Coursey Breiten,ou=Product Testing,dc=bitwarden,dc=com", + email: "BreitenC@1eb2456e111c4bd988f50cdf3b94db14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden,dc=com", + email: "GoulettG@92c6f7a15fa34e1ba82245e64e288948.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandea Bagi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brandea Bagi,ou=Janitorial,dc=bitwarden,dc=com", + email: "BagiB@76e7e62397cf46a7b8c004ca6e02f899.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silva Hoag,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Silva Hoag,ou=Administrative,dc=bitwarden,dc=com", + email: "HoagS@46fcd2052d404a708ecce9dd268b7838.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sybilla Tipping,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sybilla Tipping,ou=Product Development,dc=bitwarden,dc=com", + email: "TippingS@d0a24bf8a89244a2b3b170e173fce452.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mindy LePage,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mindy LePage,ou=Human Resources,dc=bitwarden,dc=com", + email: "LePageM@448f3e7713fe403a82f59754c984e2f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beckie Bach,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Beckie Bach,ou=Peons,dc=bitwarden,dc=com", + email: "BachB@8815cac7b22d401da16cfed3eab968c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catie Biermann,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Catie Biermann,ou=Product Testing,dc=bitwarden,dc=com", + email: "BiermanC@b6087bd6d2db4261b3c51adf501795f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jin Benge,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jin Benge,ou=Janitorial,dc=bitwarden,dc=com", + email: "BengeJ@a68a04065ea342e280fa5b5e07351677.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elsa Breglec,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Elsa Breglec,ou=Human Resources,dc=bitwarden,dc=com", + email: "BreglecE@0938d507654b4fc09f1956ab818aa3bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clementina Lozinski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clementina Lozinski,ou=Management,dc=bitwarden,dc=com", + email: "LozinskC@bd6697e6b7dc455a8c08101ef2dd2bfa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danella Gullekson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Danella Gullekson,ou=Administrative,dc=bitwarden,dc=com", + email: "GulleksD@02e89016127d40e485d3c85f04f6d436.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monte Luker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Monte Luker,ou=Product Testing,dc=bitwarden,dc=com", + email: "LukerM@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valry Bratten,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Valry Bratten,ou=Human Resources,dc=bitwarden,dc=com", + email: "BrattenV@b9106f7d57f74a7b92af146111acb57d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden,dc=com", + email: "WilemonF@689212cef95e4390942ddc48435316fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lissi Neumeister,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lissi Neumeister,ou=Management,dc=bitwarden,dc=com", + email: "NeumeisL@90c585b5539b419a977fd9fb6fa21443.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claribel Digenova,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Claribel Digenova,ou=Administrative,dc=bitwarden,dc=com", + email: "DigenovC@e65b170ac1bc46edb99b4efe67ea9912.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatsman Verma,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tatsman Verma,ou=Payroll,dc=bitwarden,dc=com", + email: "VermaT@4a204781cca64dff80b312c10c7a36ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ransom Nipper,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ransom Nipper,ou=Janitorial,dc=bitwarden,dc=com", + email: "NipperR@d45f6836f596476594ad223437a92901.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilemette McWherter,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gilemette McWherter,ou=Management,dc=bitwarden,dc=com", + email: "McWhertG@a69ec3b3f0f649c684a03150d8e09c1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Holst Bringhurst,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Holst Bringhurst,ou=Management,dc=bitwarden,dc=com", + email: "BringhuH@3b9fa50f488d4490b199ca8153116bc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden,dc=com", + email: "RzepczyL@62408cd3118c4cb082c607bd64879ced.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joe Guatto,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joe Guatto,ou=Peons,dc=bitwarden,dc=com", + email: "GuattoJ@728cea3206cf4fc9b4edca0209470b11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peder Jarmon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Peder Jarmon,ou=Human Resources,dc=bitwarden,dc=com", + email: "JarmonP@2cee41fd284e44d0b94fd6cd9ca5baa0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisa Lenior,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melisa Lenior,ou=Management,dc=bitwarden,dc=com", + email: "LeniorM@2e79931123d1474581b7c761e1420107.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden,dc=com", + email: "LingafeT@273dfd92cd9f45d0aa9350f559239559.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shafiq Archer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shafiq Archer,ou=Product Development,dc=bitwarden,dc=com", + email: "ArcherS@5e4fad8c083a467e8d3a2aebcb1ae975.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden,dc=com", + email: "SeilerJ@9c687885040c4312b6d12f4acbe7233d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nancee Smuda,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nancee Smuda,ou=Peons,dc=bitwarden,dc=com", + email: "SmudaN@4bcab71446194b1c9217ba0642278f17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ferdinanda Yan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ferdinanda Yan,ou=Peons,dc=bitwarden,dc=com", + email: "YanF@c74535433b9348ea8f9533567762a8ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden,dc=com", + email: "FainecoJ@f4d24bc7d7f24286badff0284693bf28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Portia Basinger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Portia Basinger,ou=Payroll,dc=bitwarden,dc=com", + email: "BasingeP@ef1e32b8e6ed4ea48078aa3e29bfff81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanda Holmes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vanda Holmes,ou=Management,dc=bitwarden,dc=com", + email: "HolmesV@253edaa8e3f14dbfb2bdbed6f7d5d1f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sid Shedd,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sid Shedd,ou=Payroll,dc=bitwarden,dc=com", + email: "SheddS@9bcc50c57a474f08a90b0d5f5d6e220a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrielle Cinar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Merrielle Cinar,ou=Administrative,dc=bitwarden,dc=com", + email: "CinarM@684cd4172ddb4c928bb2bd98b9b242d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginevra Varady,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ginevra Varady,ou=Product Testing,dc=bitwarden,dc=com", + email: "VaradyG@37c3227000a74816851448e0169c372e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noraly Hassan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Noraly Hassan,ou=Peons,dc=bitwarden,dc=com", + email: "HassanN@ac25d049c10a4d758088ebdaf063ce02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ron Stirling,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ron Stirling,ou=Peons,dc=bitwarden,dc=com", + email: "StirlinR@693e15a0c0664d58a0ac94c78535cda0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden,dc=com", + email: "WaytowiL@9ad00ea283a44f0b8cc931a1caa6acca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kala Huber,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kala Huber,ou=Human Resources,dc=bitwarden,dc=com", + email: "HuberK@2ddd4900e5cd4e799049753b498a352e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Woon Rasmus,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Woon Rasmus,ou=Product Development,dc=bitwarden,dc=com", + email: "RasmusW@b4277bbde59048f39a27a7d14145a06f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaime Delf,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jaime Delf,ou=Peons,dc=bitwarden,dc=com", + email: "DelfJ@335909b2c3c5485ebfab0ea1181e56d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dina Kaunas,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dina Kaunas,ou=Janitorial,dc=bitwarden,dc=com", + email: "KaunasD@f2b1db93699d459ba377efc7d34d7aa5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Todd Gainer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Todd Gainer,ou=Product Testing,dc=bitwarden,dc=com", + email: "GainerT@ef0a65e10eae440cab70802b37d924ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HonKong Woolwine,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=HonKong Woolwine,ou=Peons,dc=bitwarden,dc=com", + email: "WoolwinH@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joelie Challice,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Joelie Challice,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChallicJ@de7dfccc10c245619507096806e60950.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margalo Behlen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Margalo Behlen,ou=Product Development,dc=bitwarden,dc=com", + email: "BehlenM@30da59e65fda4079ac56eeda7237dc3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trish Meunier,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Trish Meunier,ou=Payroll,dc=bitwarden,dc=com", + email: "MeunierT@c28624b05f7d4c31811fad5e0d04b1e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verine Lilleniit,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Verine Lilleniit,ou=Management,dc=bitwarden,dc=com", + email: "LilleniV@5d9a493aeb18453b882b99b919bc8aa9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corilla Popescu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Corilla Popescu,ou=Management,dc=bitwarden,dc=com", + email: "PopescuC@ad623334663c4947b77eb81b44ea11ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wynne Hudson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wynne Hudson,ou=Product Testing,dc=bitwarden,dc=com", + email: "HudsonW@a6e91fbe946f4f22a15eb3bbe629e3da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden,dc=com", + email: "AbouEzzR@ffdefe28596d40ee910185f1df335f05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laurel Leavell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Laurel Leavell,ou=Management,dc=bitwarden,dc=com", + email: "LeavellL@cfbc523ea26f4865ad5da193bd391d7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden,dc=com", + email: "MoxonU@1f765dec942d40c392beceda646362cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madlin Irvin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Madlin Irvin,ou=Product Development,dc=bitwarden,dc=com", + email: "IrvinM@8f698818b35041d38a84f1c71ca57e14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashleigh Salembier,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ashleigh Salembier,ou=Peons,dc=bitwarden,dc=com", + email: "SalembiA@225e1be6fb454e5cab9ce645e748d35d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sacha Dailey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sacha Dailey,ou=Administrative,dc=bitwarden,dc=com", + email: "DaileyS@abccdcf5035347f79868c63de7257f89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynett Reddy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lynett Reddy,ou=Product Testing,dc=bitwarden,dc=com", + email: "ReddyL@f071c89187164ee99b36301acebce3d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bregitte Nixon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bregitte Nixon,ou=Payroll,dc=bitwarden,dc=com", + email: "NixonB@d64cbc21c43e4ae789224277adc4ecfe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peter Engineering,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Peter Engineering,ou=Product Testing,dc=bitwarden,dc=com", + email: "EngineeP@c66e42835f2044cdbf51d67978ad100e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden,dc=com", + email: "NewcombG@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden,dc=com", + email: "SiehlC@cc8182e6de0c4840a0e434e3f5bc6e84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pawel Drane,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pawel Drane,ou=Product Development,dc=bitwarden,dc=com", + email: "DraneP@04fe092cb6474d1a9ada1ac9a8cccc86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tommy Cisco,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tommy Cisco,ou=Payroll,dc=bitwarden,dc=com", + email: "CiscoT@91a6462ae0a648b3be3eaa603f83c373.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dvm Early,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dvm Early,ou=Product Development,dc=bitwarden,dc=com", + email: "EarlyD@2b4c6e317b6b4a709a1f938d53334cdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akin Forgeron,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Akin Forgeron,ou=Product Testing,dc=bitwarden,dc=com", + email: "ForgeroA@c866ca2e96114b72baa4b93410d8e54e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden,dc=com", + email: "SharratC@7fd9c7724c2d4270a0b2eac9d1493bda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilllie Precoda,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lilllie Precoda,ou=Product Development,dc=bitwarden,dc=com", + email: "PrecodaL@c9144d6968894000b9f12fc184c03e52.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corinna Spragg,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Corinna Spragg,ou=Payroll,dc=bitwarden,dc=com", + email: "SpraggC@25466f5c2b4e4320afbe3eeabe295830.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoke Pitre,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yoke Pitre,ou=Product Development,dc=bitwarden,dc=com", + email: "PitreY@911b346497874da4b48522c31ad5633c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden,dc=com", + email: "AhmedC@cf2b61eb91be49749a181d49670906ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", + email: "SamsoneS@867183e0b3a947d7ba48bd51e47b6e48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden,dc=com", + email: "DubroyS@5d0d20354c594b5780df45982564458f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rao Grosman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rao Grosman,ou=Payroll,dc=bitwarden,dc=com", + email: "GrosmanR@c097ac51a6d248ea8109a67947a52d98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renate Belford,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Renate Belford,ou=Administrative,dc=bitwarden,dc=com", + email: "BelfordR@9edd62f23d844f5b88856a95c3a59e6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden,dc=com", + email: "HinshawB@8eaa02b53fec48d0842607d198bfec39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", + email: "VenguswA@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nico Olsheski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nico Olsheski,ou=Peons,dc=bitwarden,dc=com", + email: "OlsheskN@8d379ab6a2fb48eeba38a8fb058f3296.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alta Wiley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alta Wiley,ou=Product Development,dc=bitwarden,dc=com", + email: "WileyA@ab2a58524e6745f599026252999b1b4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bennet Dunham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bennet Dunham,ou=Product Testing,dc=bitwarden,dc=com", + email: "DunhamB@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chandran Crutchfield,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chandran Crutchfield,ou=Peons,dc=bitwarden,dc=com", + email: "CrutchfC@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden,dc=com", + email: "DonnellD@c4d474c95eb7414aac612c0c00005f95.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suha Stiles,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Suha Stiles,ou=Product Testing,dc=bitwarden,dc=com", + email: "StilesS@d0bb47da3574428792ab636cf81dc1b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheela Montague,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sheela Montague,ou=Payroll,dc=bitwarden,dc=com", + email: "MontaguS@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandais Speight,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brandais Speight,ou=Peons,dc=bitwarden,dc=com", + email: "SpeightB@ff20ebf729dd433fac62940be5da4725.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ignatius USER,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ignatius USER,ou=Human Resources,dc=bitwarden,dc=com", + email: "USERI@d31d84badc274241b539993b6349fb7e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merilyn Trull,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Merilyn Trull,ou=Janitorial,dc=bitwarden,dc=com", + email: "TrullM@e2ac30b0774145abbea79773529c940e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ursulina Parise,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ursulina Parise,ou=Janitorial,dc=bitwarden,dc=com", + email: "PariseU@ba5fe26b99534871a34503bdbcf1a116.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailey Bosworth,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ailey Bosworth,ou=Payroll,dc=bitwarden,dc=com", + email: "BoswortA@b827aeadf87046f484e6a5d514c5b320.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden,dc=com", + email: "SutherlM@65d073567be540b69713d5ac0dbae37f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ally Pickett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ally Pickett,ou=Human Resources,dc=bitwarden,dc=com", + email: "PickettA@904711b040d44240a1ca8d5e5bf46600.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viviene St,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Viviene St,ou=Human Resources,dc=bitwarden,dc=com", + email: "StV@541000d4967e42578d07a307ef7b2af7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cole Kyoung,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cole Kyoung,ou=Management,dc=bitwarden,dc=com", + email: "KyoungC@becaa689d40f42aaa9f00a36bc98176b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brana Telesis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brana Telesis,ou=Payroll,dc=bitwarden,dc=com", + email: "TelesisB@4cd17011411246b3aced8285a4854db8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naohiko Netzke,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Naohiko Netzke,ou=Management,dc=bitwarden,dc=com", + email: "NetzkeN@2126a4a93d82446eaaae85cb511bb3eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tessty Aiken,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tessty Aiken,ou=Human Resources,dc=bitwarden,dc=com", + email: "AikenT@4c228b856d024598835ac381fd7c4018.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Riannon Clifford,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Riannon Clifford,ou=Management,dc=bitwarden,dc=com", + email: "ClifforR@381edf6354fd4fd3a976c3a9bb7eb2fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxanne Kardos,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Roxanne Kardos,ou=Management,dc=bitwarden,dc=com", + email: "KardosR@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salome Shellman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Salome Shellman,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShellmaS@0e8d3e7c91844fc28c9cb7dae19a7c8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agnella Shiley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Agnella Shiley,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShileyA@f162e574cf2641c8aecb8adf97e4bdce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden,dc=com", + email: "McgeheeR@dd11611b8b2c47a382a866e9115fea27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden,dc=com", + email: "MayfielD@fbf9796b109949e0bf1c76d2980dbc89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Afzal Muise,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Afzal Muise,ou=Product Testing,dc=bitwarden,dc=com", + email: "MuiseA@08ef9a8d6f01404e8be2a5108314f4b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden,dc=com", + email: "AyyuceD@273b97d9d3ef49d78a58814ba63e226c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dita Yarosh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dita Yarosh,ou=Payroll,dc=bitwarden,dc=com", + email: "YaroshD@17084ac6bac544e082e8e10baef9e88a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aparna Gamsa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Aparna Gamsa,ou=Payroll,dc=bitwarden,dc=com", + email: "GamsaA@2776697a3f73478a98d2005898493a90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angelita Letsome,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Angelita Letsome,ou=Human Resources,dc=bitwarden,dc=com", + email: "LetsomeA@399088e535dc444183a128d7fd1a5d16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peder Lotan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Peder Lotan,ou=Administrative,dc=bitwarden,dc=com", + email: "LotanP@37616ed5e0b7446e8aebcafc0ca73cc0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Etienne Courchesne,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Etienne Courchesne,ou=Payroll,dc=bitwarden,dc=com", + email: "CourcheE@22132cebdbcd4006980be48431d0e6f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden,dc=com", + email: "AlswitiA@397e97404f3546c5897ea44ae061b6ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huguette Foos,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Huguette Foos,ou=Product Development,dc=bitwarden,dc=com", + email: "FoosH@c2abdbe4b359461aa1626e1fb6d88367.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rania Myhill,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rania Myhill,ou=Human Resources,dc=bitwarden,dc=com", + email: "MyhillR@fa687144921b436e82405266f480b00e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crista Saha,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Crista Saha,ou=Human Resources,dc=bitwarden,dc=com", + email: "SahaC@bfc4a1524e6a4503b462f17821625900.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dori Brissette,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dori Brissette,ou=Management,dc=bitwarden,dc=com", + email: "BrissetD@2373108c8b97400aab01ae216d289e3e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niki Bonney,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Niki Bonney,ou=Human Resources,dc=bitwarden,dc=com", + email: "BonneyN@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyman Busuttil,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lyman Busuttil,ou=Payroll,dc=bitwarden,dc=com", + email: "BusuttiL@0eb58aa3ce014174951ad2a21de0a67c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loon Esselbach,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Loon Esselbach,ou=Peons,dc=bitwarden,dc=com", + email: "EsselbaL@452b07d8b57c4e09984de2d02211dad8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eleni Hiers,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eleni Hiers,ou=Product Testing,dc=bitwarden,dc=com", + email: "HiersE@75be32b1be62419e90c08307d5bdff60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sal Soo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sal Soo,ou=Payroll,dc=bitwarden,dc=com", + email: "SooS@d5e4a37826af47d086930b55ea76e123.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tdr Porebski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tdr Porebski,ou=Janitorial,dc=bitwarden,dc=com", + email: "PorebskT@8959763ade854592b5aa640be7f6b9e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilian Binda,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lilian Binda,ou=Administrative,dc=bitwarden,dc=com", + email: "BindaL@5b2a207a5b574a8faa45790df76c253d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fil Craggs,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fil Craggs,ou=Product Testing,dc=bitwarden,dc=com", + email: "CraggsF@5e498601fec6496f923804926db532bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fan Bednar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fan Bednar,ou=Product Testing,dc=bitwarden,dc=com", + email: "BednarF@c87bc1fef8d745d786889b1fab00a75d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanya Koens,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kanya Koens,ou=Peons,dc=bitwarden,dc=com", + email: "KoensK@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", + email: "GonzaleA@98de157df44849a386267d7b22539a05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salomi Enns,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Salomi Enns,ou=Payroll,dc=bitwarden,dc=com", + email: "EnnsS@abb4a2ffe4d34b86b74539eca6366630.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dido Lanthier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dido Lanthier,ou=Janitorial,dc=bitwarden,dc=com", + email: "LanthieD@29c4c2eff1254d0fa5ef75aff69c2367.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden,dc=com", + email: "OrdasJ@05a2fd0e10bf4289846c6e93c41488ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corny Uyar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Corny Uyar,ou=Product Testing,dc=bitwarden,dc=com", + email: "UyarC@1c28c1703df64c479dc58745ec8ce098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pinder Barclay,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pinder Barclay,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarclayP@1a1d47519dd04c80a33af98c584fc1ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micki Munns,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Micki Munns,ou=Administrative,dc=bitwarden,dc=com", + email: "MunnsM@b42b6a99e6224e4c89291ebf380e3cbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milly Raines,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Milly Raines,ou=Management,dc=bitwarden,dc=com", + email: "RainesM@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pas Waines,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pas Waines,ou=Administrative,dc=bitwarden,dc=com", + email: "WainesP@42f6c709ced54560a282482057eafc53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden,dc=com", + email: "HagewooM@52253f5384a34a7d887f92c29a569c37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden,dc=com", + email: "MonetV@06eebdce40db4f3caf1a195e21aa43e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden,dc=com", + email: "KinahanL@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden,dc=com", + email: "ChohanP@edfe7405a5b34e7bb39744d59a06067d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kala Berning,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kala Berning,ou=Peons,dc=bitwarden,dc=com", + email: "BerningK@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden,dc=com", + email: "INFOMANS@eb1784d5a4ea473392ddeedf92456d2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greg Bach,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Greg Bach,ou=Product Development,dc=bitwarden,dc=com", + email: "BachG@2469394f129543cb9155b397e142213f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clay Rasmussen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clay Rasmussen,ou=Management,dc=bitwarden,dc=com", + email: "RasmussC@71e3553ec3204c71bbaf2a269c9d85d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kira Rummans,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kira Rummans,ou=Human Resources,dc=bitwarden,dc=com", + email: "RummansK@8c2b7f547cbf444783e38759415bbe6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Graciela Birtch,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Graciela Birtch,ou=Human Resources,dc=bitwarden,dc=com", + email: "BirtchG@28fd72e4e1764c5c81212e44cd7113d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Audie Pintwala,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Audie Pintwala,ou=Management,dc=bitwarden,dc=com", + email: "PintwalA@cad34ac8884647e3aa084b319084cb10.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden,dc=com", + email: "PokrywaA@5eb9182fed7b491098a3a7edcd1734b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabbie Chiverton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gabbie Chiverton,ou=Peons,dc=bitwarden,dc=com", + email: "ChivertG@341957991cd048f28879d34846561132.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deann Sheridan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Deann Sheridan,ou=Peons,dc=bitwarden,dc=com", + email: "SheridaD@0fc5b098eca54d018d5f544f351b55a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orie Lahaie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Orie Lahaie,ou=Human Resources,dc=bitwarden,dc=com", + email: "LahaieO@20c2d999fe734387b26090f6d88bafe4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hodge Schroff,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hodge Schroff,ou=Janitorial,dc=bitwarden,dc=com", + email: "SchroffH@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden,dc=com", + email: "TajbakhP@f0190c6ffb8140a8888371e20ba308b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertrude Rains,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gertrude Rains,ou=Product Testing,dc=bitwarden,dc=com", + email: "RainsG@dacf8be8631a4913bc41ce43ad9faa82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChuChay Averett,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=ChuChay Averett,ou=Janitorial,dc=bitwarden,dc=com", + email: "AverettC@8c75d8449fe241b583cdc3782aba550b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amando Fernandez,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Amando Fernandez,ou=Janitorial,dc=bitwarden,dc=com", + email: "FernandA@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolann McCorkle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carolann McCorkle,ou=Product Development,dc=bitwarden,dc=com", + email: "McCorklC@0aab2eb5b2a945ccbb114c330fb9e2b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalvin Jamshidi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kalvin Jamshidi,ou=Management,dc=bitwarden,dc=com", + email: "JamshidK@121a745798f148a58c20965d5aa96755.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candis Gentzler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Candis Gentzler,ou=Management,dc=bitwarden,dc=com", + email: "GentzleC@da1b5788f067415eb6baf89891f2b951.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZawadkaB@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gil Strauss,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gil Strauss,ou=Management,dc=bitwarden,dc=com", + email: "StraussG@c6dd31aa272c4fe0ab00e6867d0f3706.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden,dc=com", + email: "RasmussT@a8d20277e9b84e2cbd2184d54cb3d399.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prab Crafton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Prab Crafton,ou=Peons,dc=bitwarden,dc=com", + email: "CraftonP@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurora Francoeur,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aurora Francoeur,ou=Peons,dc=bitwarden,dc=com", + email: "FrancoeA@0d89387630504e3d959bb5ff8f1b89ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francois Willcox,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Francois Willcox,ou=Administrative,dc=bitwarden,dc=com", + email: "WillcoxF@964166b8cdd041c68aaae270afb90271.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ethan Engelberg,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ethan Engelberg,ou=Administrative,dc=bitwarden,dc=com", + email: "EngelbeE@9eb94e6e4d9a4f12b80d8878b163f5eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beryl Security,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Beryl Security,ou=Peons,dc=bitwarden,dc=com", + email: "SecuritB@3235591d985b4d2894779cd55ac400f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessica Lovelace,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jessica Lovelace,ou=Management,dc=bitwarden,dc=com", + email: "LovelacJ@013fb02061ee471c942b593b9cccbedb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden,dc=com", + email: "NakatsuK@61d349f36f74474aadc4b14dd96074dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden,dc=com", + email: "OplingeH@7045dff84c244f86aba7fc41f1770a53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fqa Desilets,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fqa Desilets,ou=Management,dc=bitwarden,dc=com", + email: "DesiletF@8c05a39d9e7b44c5a7e0b257f5169f94.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden,dc=com", + email: "GoyerS@5c5e024a9bda492c8e4259ce1ef75e57.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emlynn Louie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Emlynn Louie,ou=Management,dc=bitwarden,dc=com", + email: "LouieE@cfa9cc9c255049a290ed0760c3f25871.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Russel Gillies,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Russel Gillies,ou=Management,dc=bitwarden,dc=com", + email: "GilliesR@0d90cad61d78488a96f7a4204f44a269.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dionne Parniani,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dionne Parniani,ou=Peons,dc=bitwarden,dc=com", + email: "ParnianD@ce6ea378c27b45efb4f43990327ef994.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Birmingham Shippen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Birmingham Shippen,ou=Administrative,dc=bitwarden,dc=com", + email: "ShippenB@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trudy Durling,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Trudy Durling,ou=Product Testing,dc=bitwarden,dc=com", + email: "DurlingT@a04d0222f0c24ad6848955600bad7ace.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden,dc=com", + email: "CarstenK@f48984d7e7db42f4891e864fa2c4158a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden,dc=com", + email: "GraftonE@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selena Mickens,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Selena Mickens,ou=Management,dc=bitwarden,dc=com", + email: "MickensS@70748fe689e2445ebbe07527f7179bb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laureen Paczek,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Laureen Paczek,ou=Management,dc=bitwarden,dc=com", + email: "PaczekL@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gurjinder Gosset,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gurjinder Gosset,ou=Peons,dc=bitwarden,dc=com", + email: "GossetG@113514e6e7e54b9abe6e86d17d96882b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden,dc=com", + email: "AcreeL@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dede McKeage,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dede McKeage,ou=Janitorial,dc=bitwarden,dc=com", + email: "McKeageD@96d9bfed88fc4c2fb6c7e654ef7ed3a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shanda Scroger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shanda Scroger,ou=Payroll,dc=bitwarden,dc=com", + email: "ScrogerS@973aea2b22d848eb9cb4bf9534e4dcdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ophelia McHale,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ophelia McHale,ou=Janitorial,dc=bitwarden,dc=com", + email: "McHaleO@cdc31465418c4033ab89394a6307e530.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ajit Kiens,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ajit Kiens,ou=Administrative,dc=bitwarden,dc=com", + email: "KiensA@a8523f0ff874441ba48222b981c29c83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicole Zhao,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nicole Zhao,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZhaoN@32e3fa5da06a4fd3803417733702b064.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saloma Alkire,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Saloma Alkire,ou=Peons,dc=bitwarden,dc=com", + email: "AlkireS@ef9dfa73b56a46a59a0d8721e608cbdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khosro Essery,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Khosro Essery,ou=Product Testing,dc=bitwarden,dc=com", + email: "EsseryK@bbe574aa78294bfe850c65ae7f84a624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden,dc=com", + email: "SubissaC@d7c42a5466a44da1a41df54a07b84c5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veronike Dyck,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Veronike Dyck,ou=Human Resources,dc=bitwarden,dc=com", + email: "DyckV@c29f91644d164b77b1b413826a23bf22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden,dc=com", + email: "SheaffeS@e242cd7509b945bca8984d07e1fb1255.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden,dc=com", + email: "KreigerM@bfc77f42d99045c285c6a308b0bd18e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franc Revelle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Franc Revelle,ou=Human Resources,dc=bitwarden,dc=com", + email: "RevelleF@9969719ee85448e7af69c94963a94618.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden,dc=com", + email: "TrutschJ@c77f15bdbae9450390cff589a04f790b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Freda Tschaja,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Freda Tschaja,ou=Management,dc=bitwarden,dc=com", + email: "TschajaF@04598eeb76624a4a926f3360b6a1c37d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deepak Sangha,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Deepak Sangha,ou=Payroll,dc=bitwarden,dc=com", + email: "SanghaD@0d76f44b179b422cba17cc5ef36a3a2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jennee Stover,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jennee Stover,ou=Peons,dc=bitwarden,dc=com", + email: "StoverJ@4a145fc9121947ce8b995d7a67929715.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Diamond Brownfield,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Diamond Brownfield,ou=Management,dc=bitwarden,dc=com", + email: "BrownfiD@b1ec0cbcb2944a58bb6bfcd6bb77a546.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden,dc=com", + email: "NikolopN@ae34afdf0bc1444aac13f1e923e2cbef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sangman Estey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sangman Estey,ou=Management,dc=bitwarden,dc=com", + email: "EsteyS@b9d4bc3408874c868cfc03e30b01af48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden,dc=com", + email: "AderholA@7d1d20094a364b09b76d9c95a25b43fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ola Kupitz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ola Kupitz,ou=Product Development,dc=bitwarden,dc=com", + email: "KupitzO@7016343b9c7c41d58eb428f022d1c9f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willetta Mayes,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Willetta Mayes,ou=Janitorial,dc=bitwarden,dc=com", + email: "MayesW@5fb61a5e905a4cb8b7d6000e9d19ef2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nahum Sprigings,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nahum Sprigings,ou=Product Development,dc=bitwarden,dc=com", + email: "SpriginN@4cff4a0de1f5433293445d7825473f11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden,dc=com", + email: "DemeuleK@2fba4efbb4b44dbe8c7dc5c682d67dce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juile Nttest,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Juile Nttest,ou=Payroll,dc=bitwarden,dc=com", + email: "NttestJ@71f49fd634ac4515894d5fd3319ef9a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hazel Johannes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hazel Johannes,ou=Management,dc=bitwarden,dc=com", + email: "JohanneH@faeb50c13f3444b887437137742bff48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebeka Welker,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rebeka Welker,ou=Administrative,dc=bitwarden,dc=com", + email: "WelkerR@a549bdf5420c411a867c314ba75b6975.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gordon Fares,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gordon Fares,ou=Product Testing,dc=bitwarden,dc=com", + email: "FaresG@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corella Swanston,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Corella Swanston,ou=Payroll,dc=bitwarden,dc=com", + email: "SwanstoC@dcdbaaadaaee46828eda807cdf13cfd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alisun Volfe,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alisun Volfe,ou=Human Resources,dc=bitwarden,dc=com", + email: "VolfeA@baf74e2af041410097981fddefdb44ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karine McKerrow,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karine McKerrow,ou=Peons,dc=bitwarden,dc=com", + email: "McKerroK@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yvan Gandhi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yvan Gandhi,ou=Payroll,dc=bitwarden,dc=com", + email: "GandhiY@e14fec315d724d2ea3c23dddfc2b66b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrol Mair,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Darrol Mair,ou=Payroll,dc=bitwarden,dc=com", + email: "MairD@a6f3133d61d14ab9941634fba9dc1a84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Narendra Cramer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Narendra Cramer,ou=Administrative,dc=bitwarden,dc=com", + email: "CramerN@b742b209006e494cbb6f8a4e0b48b884.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christina Bittman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Christina Bittman,ou=Peons,dc=bitwarden,dc=com", + email: "BittmanC@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vo Peacocke,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vo Peacocke,ou=Administrative,dc=bitwarden,dc=com", + email: "PeacockV@1ca94e5cffb744db9996bf92fe3ed97c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden,dc=com", + email: "MoshtagA@763917e53f1542c7b70dd136899ad079.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salim Brushey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Salim Brushey,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrusheyS@8c75d8449fe241b583cdc3782aba550b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jorey Jensen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jorey Jensen,ou=Administrative,dc=bitwarden,dc=com", + email: "JensenJ@9e42ae77792c49b3accae8305c8837bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willow Benda,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Willow Benda,ou=Payroll,dc=bitwarden,dc=com", + email: "BendaW@44ecb368c6be4359b7f35b951bbf9473.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden,dc=com", + email: "GainerG@8a7d5133f2fc4397a30a337937403b76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marilyn Nardiello,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marilyn Nardiello,ou=Management,dc=bitwarden,dc=com", + email: "NardielM@cec3211a38a84845bf22d5434e7f7858.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Federica Keck,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Federica Keck,ou=Human Resources,dc=bitwarden,dc=com", + email: "KeckF@0219ab31249e4e48be0f58ce8b0b2611.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carling Sture,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carling Sture,ou=Human Resources,dc=bitwarden,dc=com", + email: "StureC@1ebbfd6f3021409cb1fecd2d24eae99b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inessa McCaffity,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Inessa McCaffity,ou=Product Development,dc=bitwarden,dc=com", + email: "McCaffiI@a5fad638ee6f446cb5871340d10b02b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden,dc=com", + email: "DubreuiN@644ea75b3c8c4e108b8a77cd015225ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esko Todaro,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Esko Todaro,ou=Payroll,dc=bitwarden,dc=com", + email: "TodaroE@69ba9f45dacb4e9ea85c0a5c352dcaad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charman Brownridge,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Charman Brownridge,ou=Payroll,dc=bitwarden,dc=com", + email: "BrownriC@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Le Reese,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Le Reese,ou=Peons,dc=bitwarden,dc=com", + email: "ReeseL@16389576a6824424924b1ebe0033761c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cavin Bijons,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cavin Bijons,ou=Administrative,dc=bitwarden,dc=com", + email: "BijonsC@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden,dc=com", + email: "MarcantZ@4e99a81ca6fc4c54a419915482486171.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naresh Hiltz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Naresh Hiltz,ou=Administrative,dc=bitwarden,dc=com", + email: "HiltzN@591ca642a36345a4b6041e36ab40a5cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jai Tiller,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jai Tiller,ou=Payroll,dc=bitwarden,dc=com", + email: "TillerJ@73529e16a32a4c6bb942e1dcaaaf9fe5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", + email: "WolczanJ@2153898ab7ac43e8a4cd26875e8f79f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esme Daniells,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Esme Daniells,ou=Payroll,dc=bitwarden,dc=com", + email: "DaniellE@610fb75ffd5d46ae971c460a81383a24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trey McWalters,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Trey McWalters,ou=Product Development,dc=bitwarden,dc=com", + email: "McWalteT@58dd45ceb2d64fb0b6fd6e1d9136b5e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edlene Bumgarner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Edlene Bumgarner,ou=Peons,dc=bitwarden,dc=com", + email: "BumgarnE@fe393581310b47dd94b5b76f5b2a4efb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tape OHearn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tape OHearn,ou=Administrative,dc=bitwarden,dc=com", + email: "OHearnT@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robbin Hayman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Robbin Hayman,ou=Administrative,dc=bitwarden,dc=com", + email: "HaymanR@bda14f77ccfe445ba2e685aa7ba46a33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debadeep Andrade,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Debadeep Andrade,ou=Peons,dc=bitwarden,dc=com", + email: "AndradeD@4831c314a96e4dc2a8c277ec349e694c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden,dc=com", + email: "VirgoeM@d373fdc15b634340bc25b6c3b5d64884.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parham Maunu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Parham Maunu,ou=Product Development,dc=bitwarden,dc=com", + email: "MaunuP@d233ce77e34d461bb1d8e44907c3b6ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruthe Calhoun,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ruthe Calhoun,ou=Peons,dc=bitwarden,dc=com", + email: "CalhounR@d2d670b2fced4eef91c4ec4dcd52496b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Albert Waid,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Albert Waid,ou=Janitorial,dc=bitwarden,dc=com", + email: "WaidA@cf949ad46d1d4454911d4e2468d96da8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mason Azar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mason Azar,ou=Administrative,dc=bitwarden,dc=com", + email: "AzarM@7ce0aeed71954a9186228a48b133b9f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tory Vairavan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tory Vairavan,ou=Management,dc=bitwarden,dc=com", + email: "VairavaT@eb82c31be85446d794ef51293247c40a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marisa Kuntova,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marisa Kuntova,ou=Management,dc=bitwarden,dc=com", + email: "KuntovaM@04448fada1ea4fa4b445ea9be1736993.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rungroj Rains,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rungroj Rains,ou=Product Testing,dc=bitwarden,dc=com", + email: "RainsR@7bfc17d323e0430fbe510aae2bf5a02c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tak Tihanyi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tak Tihanyi,ou=Administrative,dc=bitwarden,dc=com", + email: "TihanyiT@5e72004cd5c54ab885896ad64d562293.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden,dc=com", + email: "LassondC@a7f2e34ed651499b802da67d1808b3de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharlene Litz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sharlene Litz,ou=Product Development,dc=bitwarden,dc=com", + email: "LitzS@8c66b2522da94b0cbdc414c1b20aa8ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsea Ruane,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chelsea Ruane,ou=Payroll,dc=bitwarden,dc=com", + email: "RuaneC@e3a398150b8f4132954080a42a622e3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eddy Talbot,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eddy Talbot,ou=Administrative,dc=bitwarden,dc=com", + email: "TalbotE@2dddb722caf64e778877e681c7a6c935.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manhatten Tota,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Manhatten Tota,ou=Product Testing,dc=bitwarden,dc=com", + email: "TotaM@97a601b7bf924aea9927e9bb24e9dce4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annabela Gingrich,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annabela Gingrich,ou=Administrative,dc=bitwarden,dc=com", + email: "GingricA@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regis Watmore,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Regis Watmore,ou=Janitorial,dc=bitwarden,dc=com", + email: "WatmoreR@90c9f3c96d1149a298fca9a67a1ea082.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shanda Bowen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shanda Bowen,ou=Payroll,dc=bitwarden,dc=com", + email: "BowenS@8b3dde45f1e843a68494a6fd84017274.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden,dc=com", + email: "MarcantR@2e65828583f54a1ea500b532b01f86b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jyoti Wells,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jyoti Wells,ou=Product Testing,dc=bitwarden,dc=com", + email: "WellsJ@2c0f47a97a024956922ed080c07c7087.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanns Sharkey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hanns Sharkey,ou=Management,dc=bitwarden,dc=com", + email: "SharkeyH@4f63ce84f4684a4bb16b885eeda98071.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reva Ostapiw,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reva Ostapiw,ou=Peons,dc=bitwarden,dc=com", + email: "OstapiwR@a586d7b2acf146c78c98936aa18b9779.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michele Elkaim,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Michele Elkaim,ou=Administrative,dc=bitwarden,dc=com", + email: "ElkaimM@5f9b96657de64882b0c090732caf2034.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emil Knappe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emil Knappe,ou=Product Development,dc=bitwarden,dc=com", + email: "KnappeE@0c23adeda02746a4adaf81e3c1305ae8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beryl Windsor,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Beryl Windsor,ou=Product Testing,dc=bitwarden,dc=com", + email: "WindsorB@a5bee62da8ef4e9d8313518642926292.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joyan Varia,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joyan Varia,ou=Human Resources,dc=bitwarden,dc=com", + email: "VariaJ@fc1da3ccee8c40f8af1318302a847e49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZhelkaS@c58d896de82b440ca30e70c88676b48e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mitchell Gatka,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mitchell Gatka,ou=Peons,dc=bitwarden,dc=com", + email: "GatkaM@6ee94998653244b3b64234a9ee1b8607.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden,dc=com", + email: "AfkhameH@daaa044a56484e489d06cae427ab4eb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailee Events,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ailee Events,ou=Product Development,dc=bitwarden,dc=com", + email: "EventsA@a75d505d85fe462c8c59962b64d6cff9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden,dc=com", + email: "HilderY@6a3acca7ad4f4682a2006a10deabdc87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden,dc=com", + email: "MinegisC@ac08f267452644f09d26008f47edeeda.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Herre Cadeau,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Herre Cadeau,ou=Product Development,dc=bitwarden,dc=com", + email: "CadeauH@21063d63862a4b1aa0c4c81ad5ebd22a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaye Hafiz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kaye Hafiz,ou=Peons,dc=bitwarden,dc=com", + email: "HafizK@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden,dc=com", + email: "MustafaM@1c6f0f2a2fa54440bc63852786ac9fdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shahid Follett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shahid Follett,ou=Product Development,dc=bitwarden,dc=com", + email: "FollettS@120317dff63442a2b732a7a30a2aec6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pet Bohanan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pet Bohanan,ou=Janitorial,dc=bitwarden,dc=com", + email: "BohananP@78fe1edd402a408aa14e400951dba12b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colly Daigle,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Colly Daigle,ou=Peons,dc=bitwarden,dc=com", + email: "DaigleC@0664693a03264f2da097850e7d87ca50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deva StOnge,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Deva StOnge,ou=Management,dc=bitwarden,dc=com", + email: "StOngeD@193a813b90bf4054a776a2e46081339c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giri Glucksman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Giri Glucksman,ou=Janitorial,dc=bitwarden,dc=com", + email: "GlucksmG@2a9b1bb4219c473fa5e7f0b996562330.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden,dc=com", + email: "SiomalaS@e8b42fe4709142ccb9521fb60b9c2535.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jorey Gillet,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jorey Gillet,ou=Management,dc=bitwarden,dc=com", + email: "GilletJ@3de3a1d37d58453ab287cb68f7be24d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelagh Balutis,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shelagh Balutis,ou=Product Development,dc=bitwarden,dc=com", + email: "BalutisS@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rachelle Prakash,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rachelle Prakash,ou=Management,dc=bitwarden,dc=com", + email: "PrakashR@67a50420f0564b4b9d502195a9eb7324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akshay OKelly,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Akshay OKelly,ou=Management,dc=bitwarden,dc=com", + email: "OKellyA@a87753ac7bf1427f885f1082236b1df1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Condell Kho,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Condell Kho,ou=Human Resources,dc=bitwarden,dc=com", + email: "KhoC@315d5123c90042aeb10b3a82d996a1e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cordey Ballard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cordey Ballard,ou=Product Testing,dc=bitwarden,dc=com", + email: "BallardC@11fab52cda204855aedbc10b4a7ffea9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amelita Okura,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amelita Okura,ou=Management,dc=bitwarden,dc=com", + email: "OkuraA@c99079f52c0044f39a4259a6863af5cb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden,dc=com", + email: "FerruzzC@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nadeen Longpre,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nadeen Longpre,ou=Management,dc=bitwarden,dc=com", + email: "LongpreN@481a6dfc2726429788928adbad28f42a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imtaz Chouinard,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Imtaz Chouinard,ou=Peons,dc=bitwarden,dc=com", + email: "ChouinaI@a12e4e310fd44c829ca56b2c9309abf6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeckwerD@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melinda Tappert,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Melinda Tappert,ou=Administrative,dc=bitwarden,dc=com", + email: "TappertM@1f78d8536b924f6f89f5b50f4dff308b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden,dc=com", + email: "BeconovF@3eed5bea3e8942ed94a18b2b3f161ac5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Misha Karaali,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Misha Karaali,ou=Payroll,dc=bitwarden,dc=com", + email: "KaraaliM@1530b9738dfc47938d89ae3ab8cdd3f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evanne Donator,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Evanne Donator,ou=Management,dc=bitwarden,dc=com", + email: "DonatorE@20891ba894354789902e2f57e98bbb6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden,dc=com", + email: "TaghizaK@729666359ed04f0995bf97703c170436.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden,dc=com", + email: "RushingR@6178a3e5d1d842f5ab8c4894a1bcee8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gussy Prikkel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gussy Prikkel,ou=Payroll,dc=bitwarden,dc=com", + email: "PrikkelG@412af91bb3534a1b89a431db4cb8a7a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liping DaSilva,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Liping DaSilva,ou=Janitorial,dc=bitwarden,dc=com", + email: "DaSilvaL@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden,dc=com", + email: "MummyCrK@e52bb91930a9487fa1adfb0b49d2e1a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HackHoo Sayed,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=HackHoo Sayed,ou=Administrative,dc=bitwarden,dc=com", + email: "SayedH@41d9d77642444cc9ab9d5b4e9a3c43fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden,dc=com", + email: "GahrB@f45f4579040a481ab9737c262f8c178e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozanne Heurich,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rozanne Heurich,ou=Peons,dc=bitwarden,dc=com", + email: "HeurichR@0b56a4c94023459d8772d8f7af50540e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arabel Omura,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Arabel Omura,ou=Management,dc=bitwarden,dc=com", + email: "OmuraA@d899cd8457e040e781946aa86814b934.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marce Rivest,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marce Rivest,ou=Management,dc=bitwarden,dc=com", + email: "RivestM@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Irena Hammermeister,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Irena Hammermeister,ou=Administrative,dc=bitwarden,dc=com", + email: "HammermI@462635d48ea740ba9a66cf325662e6a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sotos Bratten,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sotos Bratten,ou=Product Development,dc=bitwarden,dc=com", + email: "BrattenS@edda584dd7a3409daa4b2eabe9e2cdb4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden,dc=com", + email: "HartlebV@4311bb9fc69e4905a1f6f7f3dd2b8fab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden,dc=com", + email: "DegenovM@c87bc1fef8d745d786889b1fab00a75d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elpida Vuignier,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elpida Vuignier,ou=Administrative,dc=bitwarden,dc=com", + email: "VuignieE@fb42541289ea4a75a098aa5071cf2a78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naoma Rowe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Naoma Rowe,ou=Product Development,dc=bitwarden,dc=com", + email: "RoweN@66df60c7830b4e4788e97ef6a98c581d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden,dc=com", + email: "MoogkR@928ad853e1494474966df7fb64907ee2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pawel Bourget,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pawel Bourget,ou=Product Testing,dc=bitwarden,dc=com", + email: "BourgetP@5f02265632114e54a556740ff6947201.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deloria Couser,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Deloria Couser,ou=Product Testing,dc=bitwarden,dc=com", + email: "CouserD@a62537fc90fa495dacdbf1e945e353e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Conni Stainback,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Conni Stainback,ou=Peons,dc=bitwarden,dc=com", + email: "StainbaC@e7a587ea64f34a73b58bcee55a44c5f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Modesta Huszarik,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Modesta Huszarik,ou=Administrative,dc=bitwarden,dc=com", + email: "HuszariM@a965fccdc0684ea39fc7e84bc33f6974.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reinhold Ribi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reinhold Ribi,ou=Peons,dc=bitwarden,dc=com", + email: "RibiR@561d94097aa347c8b67fc74b1c6c095c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loris Grimes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Loris Grimes,ou=Product Development,dc=bitwarden,dc=com", + email: "GrimesL@bd0d542943b6439fba91f92e849851ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden,dc=com", + email: "KopalaA@710eac99d23b4aba917dbd3cddce9e4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sid Walford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sid Walford,ou=Human Resources,dc=bitwarden,dc=com", + email: "WalfordS@3b7542a95526493995dfb5d0273708af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden,dc=com", + email: "NahataB@1a25c5eecf2b4862871ccde04c2d3ffb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ingrid Kruger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ingrid Kruger,ou=Peons,dc=bitwarden,dc=com", + email: "KrugerI@febac408e92c495d910b6c8cd4150caa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baha Raymond,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Baha Raymond,ou=Administrative,dc=bitwarden,dc=com", + email: "RaymondB@cffdccf91145470f922e22e1947852b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raffi Legrove,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Raffi Legrove,ou=Management,dc=bitwarden,dc=com", + email: "LegroveR@aebedd81d0064bf4bf3e053b89a4b6eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julita Shemwell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Julita Shemwell,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShemwelJ@8488bd932270494b964d988d57bbae02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pooh Claveau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pooh Claveau,ou=Payroll,dc=bitwarden,dc=com", + email: "ClaveauP@ae61f912d37d41959ec8fa8339b2d969.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haig Zumhagen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Haig Zumhagen,ou=Payroll,dc=bitwarden,dc=com", + email: "ZumhageH@7f9e6985348c418e8ff3641fece39e66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Penni Gehring,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Penni Gehring,ou=Janitorial,dc=bitwarden,dc=com", + email: "GehringP@67757dd424a44a4183c5e607b39a53fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden,dc=com", + email: "BrunerUH@c47fea6640d041afa6361c6048c3c046.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melodie Parham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Melodie Parham,ou=Product Testing,dc=bitwarden,dc=com", + email: "ParhamM@97fbe9f514864d40bb6dc85e4d15c1c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Violetta Fallah,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Violetta Fallah,ou=Administrative,dc=bitwarden,dc=com", + email: "FallahV@bed40ec44cae43d6ac6f5b4ad1b78f92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shay Molson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shay Molson,ou=Janitorial,dc=bitwarden,dc=com", + email: "MolsonS@2d496c580b4f4816a656973b9003a612.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guillema Halicki,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Guillema Halicki,ou=Product Testing,dc=bitwarden,dc=com", + email: "HalickiG@48f243cdc32d45d6aad070d357ee442e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden,dc=com", + email: "MillspaH@354ea0fe89ed4f6794beb933c091a753.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sacto Kao,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sacto Kao,ou=Peons,dc=bitwarden,dc=com", + email: "KaoS@5f07a6760f8048cca79c8506ff02e587.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linh Kishi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Linh Kishi,ou=Peons,dc=bitwarden,dc=com", + email: "KishiL@45ff518891da43879283e296db76d389.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Careers Caves,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Careers Caves,ou=Janitorial,dc=bitwarden,dc=com", + email: "CavesC@29b1fd9375ce41f58146a7a83c10d36d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden,dc=com", + email: "NiebudeL@a1ff5ce57b0d4a5ab92e5a7972b3c4b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolina Kopke,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nicolina Kopke,ou=Payroll,dc=bitwarden,dc=com", + email: "KopkeN@79a51a140338408bbf63aba2c3dbf6b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristel Credico,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kristel Credico,ou=Human Resources,dc=bitwarden,dc=com", + email: "CredicoK@a87753ac7bf1427f885f1082236b1df1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pankaj Clow,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pankaj Clow,ou=Peons,dc=bitwarden,dc=com", + email: "ClowP@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Radomir Remson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Radomir Remson,ou=Administrative,dc=bitwarden,dc=com", + email: "RemsonR@1843ab31697149758be7883059806164.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Josefina Parr,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Josefina Parr,ou=Janitorial,dc=bitwarden,dc=com", + email: "ParrJ@3e63d8e6be204b07ac7dd7943bdd9def.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Korie Grooms,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Korie Grooms,ou=Product Development,dc=bitwarden,dc=com", + email: "GroomsK@48ac2947eb2846ecbb24ee61115af2ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nelson Lytle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nelson Lytle,ou=Product Development,dc=bitwarden,dc=com", + email: "LytleN@7417b89a4c9b42108e005c797d9f25b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greet Driver,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Greet Driver,ou=Product Development,dc=bitwarden,dc=com", + email: "DriverG@65ad77a0a7134c499e3c0bd4fd84a125.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phillis Pravato,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Phillis Pravato,ou=Peons,dc=bitwarden,dc=com", + email: "PravatoP@f07a2704744543c99ec010f0a9ec3d24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patch Eberlin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Patch Eberlin,ou=Product Development,dc=bitwarden,dc=com", + email: "EberlinP@46a5b2004b96415ab4737f15ebd51c9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malorie Goos,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Malorie Goos,ou=Janitorial,dc=bitwarden,dc=com", + email: "GoosM@d101e1afb4ea499090e0cf8a9001282a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden,dc=com", + email: "KakutaK@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden,dc=com", + email: "JewettJ@7823a7fa07b54bdaae5cb7f5372a506a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Effie Pracht,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Effie Pracht,ou=Product Development,dc=bitwarden,dc=com", + email: "PrachtE@b9847a93402b4d7e9eab2f6967e34b51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elza Gillon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Elza Gillon,ou=Janitorial,dc=bitwarden,dc=com", + email: "GillonE@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maddy Falletti,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maddy Falletti,ou=Product Development,dc=bitwarden,dc=com", + email: "FallettM@a14fac4b746f43c590992c0cffe25f62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candee DiFalco,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Candee DiFalco,ou=Management,dc=bitwarden,dc=com", + email: "DiFalcoC@b91b1bdb74a74584ada128918dac6578.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martynne McCloughan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Martynne McCloughan,ou=Administrative,dc=bitwarden,dc=com", + email: "McClougM@e974b86e9f10486baa2ed0156d74e959.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marris Lobello,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marris Lobello,ou=Janitorial,dc=bitwarden,dc=com", + email: "LobelloM@a12359b394964b42a1a462b3cf340545.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rochell Denmark,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rochell Denmark,ou=Payroll,dc=bitwarden,dc=com", + email: "DenmarkR@50d7c806edce40aba32e1f9a44a2e284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", + email: "MallozzA@879fb49a3d5b4e1fa5900dee565590ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden,dc=com", + email: "AbelloH@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ngai Michael,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ngai Michael,ou=Human Resources,dc=bitwarden,dc=com", + email: "MichaelN@1487aec275284e49a79c5c4099f33bdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JoLee Fredette,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=JoLee Fredette,ou=Administrative,dc=bitwarden,dc=com", + email: "FredettJ@bea3a59f852447369b2ae52dc89b101a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liv Veedell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Liv Veedell,ou=Product Testing,dc=bitwarden,dc=com", + email: "VeedellL@4112fa5751f947c9a6ebd8e6086a4cce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verina Coddington,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Verina Coddington,ou=Product Development,dc=bitwarden,dc=com", + email: "CoddingV@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=March Easton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=March Easton,ou=Management,dc=bitwarden,dc=com", + email: "EastonM@a71c06be904c4f5a89c92e6a220b8c20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jianli Kahhale,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jianli Kahhale,ou=Management,dc=bitwarden,dc=com", + email: "KahhaleJ@118d571b1571425c87bcb58317919134.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shamshad Bozicevich,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shamshad Bozicevich,ou=Management,dc=bitwarden,dc=com", + email: "BozicevS@99fd889b48504677bce0dc492f7e0cf3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renate Kahkonen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Renate Kahkonen,ou=Management,dc=bitwarden,dc=com", + email: "KahkoneR@01d338da3bbb4fa4b6b8cadeb6cc7fae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aile Lugsdin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aile Lugsdin,ou=Product Development,dc=bitwarden,dc=com", + email: "LugsdinA@9a209519348642769473b09231da3137.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Warwick Gamarnik,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Warwick Gamarnik,ou=Peons,dc=bitwarden,dc=com", + email: "GamarniW@b32188c77df94658a5bd155a122ff5d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candee Brubaker,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Candee Brubaker,ou=Administrative,dc=bitwarden,dc=com", + email: "BrubakeC@58dd45ceb2d64fb0b6fd6e1d9136b5e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden,dc=com", + email: "MitchelQ@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden,dc=com", + email: "GraydonI@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nashir Tue,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nashir Tue,ou=Administrative,dc=bitwarden,dc=com", + email: "TueN@ec7767ad12a9472c8d17e1cdb30756bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lolita Hanson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lolita Hanson,ou=Product Development,dc=bitwarden,dc=com", + email: "HansonL@7a434719bc114db3972a25b2d060ed01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antoinette WPMS,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Antoinette WPMS,ou=Management,dc=bitwarden,dc=com", + email: "WPMSA@2a72bc736ffb4d18ae10b2685172d382.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden,dc=com", + email: "GrattonT@90c63f93b5c34551a51a09ea98b45b93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margaux Rollo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Margaux Rollo,ou=Human Resources,dc=bitwarden,dc=com", + email: "RolloM@516fd466f892459aa17afb2e000f114d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idell Pung,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Idell Pung,ou=Product Testing,dc=bitwarden,dc=com", + email: "PungI@1a2826f06614436585f4faa14772cf1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tandy Etoh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tandy Etoh,ou=Administrative,dc=bitwarden,dc=com", + email: "EtohT@d38183f1beee43c2843b4bd66bd7aeb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden,dc=com", + email: "CeponisA@8580a70392584c53919bc1436276cfec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden,dc=com", + email: "PopowicC@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Twana Schneider,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Twana Schneider,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchneidT@af38a73cbf364504a84e0d960de55c89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden,dc=com", + email: "NeumeisI@fd9ad4f975c84639a80c728d3cc48c21.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden,dc=com", + email: "DispatcM@7bdb7e04a26d459886f8fcaa0d3da8fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lari Killeen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lari Killeen,ou=Management,dc=bitwarden,dc=com", + email: "KilleenL@787ed9ee968044deafa9223d83fb6389.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pars Tigg,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pars Tigg,ou=Management,dc=bitwarden,dc=com", + email: "TiggP@fae0bbac7f79493abf73636a27934a4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjy Botyrius,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marjy Botyrius,ou=Payroll,dc=bitwarden,dc=com", + email: "BotyriuM@11f1e40e9ec0473fb6e1f9f61a3e0fb3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sol Trefts,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sol Trefts,ou=Payroll,dc=bitwarden,dc=com", + email: "TreftsS@caee9adce3034f8297c376f15d554364.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden,dc=com", + email: "HashimoR@7a98f63f548e4181910f55a6615fe20b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden,dc=com", + email: "BlezardT@b06576e7cc594af79143f743174735e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leigh Boulerice,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Leigh Boulerice,ou=Peons,dc=bitwarden,dc=com", + email: "BouleriL@ba60a08b258046f98633fd3c737e4f83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harpal Bashton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Harpal Bashton,ou=Management,dc=bitwarden,dc=com", + email: "BashtonH@cad99f43d8bb4bb385c87910c97d09f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valeda Laliberte,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Valeda Laliberte,ou=Management,dc=bitwarden,dc=com", + email: "LaliberV@50bab9f9cf1041a789372e5001d27214.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winnah Kabel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Winnah Kabel,ou=Administrative,dc=bitwarden,dc=com", + email: "KabelW@ed183240d2274a60918dec7c056a1b86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lecien Bunting,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lecien Bunting,ou=Human Resources,dc=bitwarden,dc=com", + email: "BuntingL@fd2e8792325547b4a50dd52cda4bc63f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blancha TempleDowning,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Blancha TempleDowning,ou=Peons,dc=bitwarden,dc=com", + email: "TempleDB@ffcb266a0b9d4db986bd5378efac6255.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kyla Burton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kyla Burton,ou=Human Resources,dc=bitwarden,dc=com", + email: "BurtonK@9976848d05f44dc7b3c15447d59df348.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden,dc=com", + email: "MaenpaaC@903db400671047c5907d8ec3d0a66865.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronna Faison,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ronna Faison,ou=Payroll,dc=bitwarden,dc=com", + email: "FaisonR@4ec057135a5045f1a9989fae44b8b962.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden,dc=com", + email: "WaggoneA@033d1e3842054827934162f293371ad8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nel Mohrmann,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nel Mohrmann,ou=Peons,dc=bitwarden,dc=com", + email: "MohrmanN@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naresh Kok,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Naresh Kok,ou=Human Resources,dc=bitwarden,dc=com", + email: "KokN@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cang Kinamon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cang Kinamon,ou=Management,dc=bitwarden,dc=com", + email: "KinamonC@0573bd112aca464284b0d9eac2753606.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amalea Snyder,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amalea Snyder,ou=Management,dc=bitwarden,dc=com", + email: "SnyderA@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caryn Rizk,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Caryn Rizk,ou=Human Resources,dc=bitwarden,dc=com", + email: "RizkC@c9a4b60fa1eb470eb513b6d959a476c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edel AbiAad,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Edel AbiAad,ou=Management,dc=bitwarden,dc=com", + email: "AbiAadE@9dc8b996c4c343d08d2e402f031d6954.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jey Dufresne,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jey Dufresne,ou=Management,dc=bitwarden,dc=com", + email: "DufresnJ@cebe5fd44d104e0c944a51b06ff453a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kass Lyliston,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kass Lyliston,ou=Peons,dc=bitwarden,dc=com", + email: "LylistoK@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden,dc=com", + email: "HeiligeE@4ac57cc4c8df40e5be8ca01811d8b65f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabie Autoquote,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gabie Autoquote,ou=Management,dc=bitwarden,dc=com", + email: "AutoquoG@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vina Sebastian,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Vina Sebastian,ou=Peons,dc=bitwarden,dc=com", + email: "SebastiV@a233dd701c7c4e6f923dfda0c8035d34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annabella Blasing,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Annabella Blasing,ou=Janitorial,dc=bitwarden,dc=com", + email: "BlasingA@aea15ef0456d4cd2988add4323d0edb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolette Spann,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nicolette Spann,ou=Human Resources,dc=bitwarden,dc=com", + email: "SpannN@b705e8d79a484d328a25479946645112.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blancha Bradee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Blancha Bradee,ou=Product Development,dc=bitwarden,dc=com", + email: "BradeeB@32fe0278ad444a168aa2715b611540e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamarah Solheim,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tamarah Solheim,ou=Administrative,dc=bitwarden,dc=com", + email: "SolheimT@97b4c3b829464aa0bb43fe8a8ccef3d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden,dc=com", + email: "ColquhoN@24af3dac7e7c4580ae1949e9dbc7b5bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cleo Depew,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cleo Depew,ou=Product Testing,dc=bitwarden,dc=com", + email: "DepewC@eea1742874a24c018dad0a15722dcd0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gordon Galligan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gordon Galligan,ou=Peons,dc=bitwarden,dc=com", + email: "GalligaG@07bd96f3cb0145a4932b94a7fa79769c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden,dc=com", + email: "TiseoB@4c905761dfd345f0bec1fb45af8eef64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terra Brookhart,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Terra Brookhart,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrookhaT@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden,dc=com", + email: "WegrowiE@d275905ea7174c8cab687a1c10573cba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hellen Benzick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hellen Benzick,ou=Payroll,dc=bitwarden,dc=com", + email: "BenzickH@eb3f0e8c75a34fb08e8613d84752c88e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenda Serrano,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jenda Serrano,ou=Peons,dc=bitwarden,dc=com", + email: "SerranoJ@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chrystal Draves,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Chrystal Draves,ou=Management,dc=bitwarden,dc=com", + email: "DravesC@7dc4d22df72d4b7ea867e84e8a1a18c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden,dc=com", + email: "WadsworM@012a5cfab6324107b0814d36b8f41041.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden,dc=com", + email: "BedoyaD@5bf44110ed3743de8af47997ebc8b9fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicola Dallago,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nicola Dallago,ou=Management,dc=bitwarden,dc=com", + email: "DallagoN@32dba15e87f24180a52c2c7b3d16eedf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gisele Zattiero,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gisele Zattiero,ou=Payroll,dc=bitwarden,dc=com", + email: "ZattierG@b1bef6e7419544e590275224d59e367b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nora Hishchak,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nora Hishchak,ou=Peons,dc=bitwarden,dc=com", + email: "HishchaN@b968f655b96e4ab58fcc2e120f71a7b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden,dc=com", + email: "LuszczeJ@742fffab1692421a8cd639c32b1e9444.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrili Janelle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Merrili Janelle,ou=Janitorial,dc=bitwarden,dc=com", + email: "JanelleM@ef3d7ce4cf844052b389bbe166c531bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claire Valia,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Claire Valia,ou=Payroll,dc=bitwarden,dc=com", + email: "ValiaC@bd9a2e982f524b64b04ed8892de43767.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden,dc=com", + email: "VonderhC@b4636d7df71f4835817a7714801280f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farica Horwitz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Farica Horwitz,ou=Payroll,dc=bitwarden,dc=com", + email: "HorwitzF@1a03988f40a349c1abd53f73e0e2d871.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gregory Bluethner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gregory Bluethner,ou=Peons,dc=bitwarden,dc=com", + email: "BluethnG@b23ade701c9b44bd8b1f8301f8f9850d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden,dc=com", + email: "PatchcoW@1114ec94893c4de2b94b261fe2161258.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden,dc=com", + email: "ThaxtonW@d878ac5b0d4241d7915c9954538bd502.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden,dc=com", + email: "DikaitiB@28fd72e4e1764c5c81212e44cd7113d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liviu Hume,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Liviu Hume,ou=Payroll,dc=bitwarden,dc=com", + email: "HumeL@f6f62c454ca5497f934797aa1b8b4a27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angelie Heile,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Angelie Heile,ou=Peons,dc=bitwarden,dc=com", + email: "HeileA@3dcbee9a39f24536abfacdb314d6aedd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatiania Delage,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tatiania Delage,ou=Peons,dc=bitwarden,dc=com", + email: "DelageT@5393bc67f8ee409593915ca305198b36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celisse Murdoch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Celisse Murdoch,ou=Management,dc=bitwarden,dc=com", + email: "MurdochC@8f1eaf49a29e432392cfb7c9cddefdee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=NamKiet Phillip,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=NamKiet Phillip,ou=Management,dc=bitwarden,dc=com", + email: "PhillipN@4bf0b66c2c324315954b77c93acd3366.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden,dc=com", + email: "KuruppiC@b549d25d2e83426ba75b6cd3682958b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden,dc=com", + email: "PankiwJ@cd18bcce2da342b59f0e8c980723ee09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrili Wierzba,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Merrili Wierzba,ou=Product Development,dc=bitwarden,dc=com", + email: "WierzbaM@536c0f4fa5054c52a7d0385b00e9be00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kittie Gabbai,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kittie Gabbai,ou=Peons,dc=bitwarden,dc=com", + email: "GabbaiK@3804896e582c4b3cac297cdd6774c60b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Timi Hendriks,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Timi Hendriks,ou=Payroll,dc=bitwarden,dc=com", + email: "HendrikT@4054b4da0e93482c9b8c467cfec2cd04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deana Cargnelli,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Deana Cargnelli,ou=Management,dc=bitwarden,dc=com", + email: "CargnelD@34778f743f144f1c8feb88659969b135.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lizzie Petro,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lizzie Petro,ou=Product Development,dc=bitwarden,dc=com", + email: "PetroL@3e85ba8a9fd94b8ea8a79fbaf36e29c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", + email: "KristjaC@a5c8780c86ee42949bb714c84dc95d44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden,dc=com", + email: "DunajskA@50ccd4f167194cf699a420ec04455c31.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden,dc=com", + email: "TrachseL@a922ba05488e401e9633fbd1813d714f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shyam Johnsen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shyam Johnsen,ou=Product Development,dc=bitwarden,dc=com", + email: "JohnsenS@abac2f30214948ccb965a208d10fe9a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valencia Tomlinson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Valencia Tomlinson,ou=Management,dc=bitwarden,dc=com", + email: "TomlinsV@e903049a2f314871bf6a031a14c79162.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden,dc=com", + email: "BonahooM@e49df1f8a4c2443e88b68c678fa533db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frederic Scurlock,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Frederic Scurlock,ou=Administrative,dc=bitwarden,dc=com", + email: "ScurlocF@52d447bfc2464a51a20925b35098fffa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guillema McGorman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Guillema McGorman,ou=Product Development,dc=bitwarden,dc=com", + email: "McGormaG@47840548eaea4456bf120d7525ee74e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenda Ostarello,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jenda Ostarello,ou=Payroll,dc=bitwarden,dc=com", + email: "OstarelJ@ec5b72978f304decbd01b86ff428bb78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rivkah Neywick,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rivkah Neywick,ou=Peons,dc=bitwarden,dc=com", + email: "NeywickR@d153ea0cdea446bcae59fcfadb7ae1da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoescheN@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coursdev Angeli,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Coursdev Angeli,ou=Peons,dc=bitwarden,dc=com", + email: "AngeliC@034a5e94f32b417b81eaf2086bd44c48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden,dc=com", + email: "EwanchyD@7dbdfd93e54449ecbd6ac06f80575902.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dari Ersil,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dari Ersil,ou=Payroll,dc=bitwarden,dc=com", + email: "ErsilD@a7dbc414c7f248bda6ef29312aa17345.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjolein Stephens,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marjolein Stephens,ou=Product Development,dc=bitwarden,dc=com", + email: "StephenM@569cc4df4bc94c2683e21477219c08c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doro Vempati,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Doro Vempati,ou=Human Resources,dc=bitwarden,dc=com", + email: "VempatiD@f167cff0138c406287e1a7234664f7ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sono Pokrifcak,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sono Pokrifcak,ou=Management,dc=bitwarden,dc=com", + email: "PokrifcS@39597667d519425da44c2231f7169438.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moniek Bergado,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Moniek Bergado,ou=Administrative,dc=bitwarden,dc=com", + email: "BergadoM@866f4a15cdb24c75a67bad9f00bdce9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KwokWa Moriarty,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=KwokWa Moriarty,ou=Management,dc=bitwarden,dc=com", + email: "MoriartK@d78ef3d7391c4330a3c44a2851048fb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden,dc=com", + email: "BellewW@1c084eedcc9c44eda88c281c7989befb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sluis Nizman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sluis Nizman,ou=Management,dc=bitwarden,dc=com", + email: "NizmanS@4964f3a69590417fbd1ca049096759e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michel Salkini,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Michel Salkini,ou=Payroll,dc=bitwarden,dc=com", + email: "SalkiniM@d2d7ca225f1e4483b8252f961b2d485f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JoDee Cownie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=JoDee Cownie,ou=Product Development,dc=bitwarden,dc=com", + email: "CownieJ@848b025264d14e669cec02146f987418.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden,dc=com", + email: "BourdinB@655351dde00c468b8e6a0d1ed4e66324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZagrodnS@990be6633e6a426c826b4ed97cd246bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden,dc=com", + email: "SacchetR@ee37751373fd4ef1b1238e54dbded0be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Germaine Turney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Germaine Turney,ou=Product Development,dc=bitwarden,dc=com", + email: "TurneyG@1dd141ee94514c5aa52c318bb9c43eb0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berenice Yates,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Berenice Yates,ou=Human Resources,dc=bitwarden,dc=com", + email: "YatesB@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geoff Catlett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Geoff Catlett,ou=Payroll,dc=bitwarden,dc=com", + email: "CatlettG@301293d91bcf43b6b56f749474f921a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MarieAndree Bour,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=MarieAndree Bour,ou=Peons,dc=bitwarden,dc=com", + email: "BourM@6460b7d3426f457f945fb005b82595d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dixie Gionet,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dixie Gionet,ou=Payroll,dc=bitwarden,dc=com", + email: "GionetD@a98f671d807c43a797dff7cd33629811.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndel Amarsi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lyndel Amarsi,ou=Peons,dc=bitwarden,dc=com", + email: "AmarsiL@f9ae3791c7af4048ba041c1bc79adda2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZanettiJ@9401b30c07d641ad85c9d343e51620fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden,dc=com", + email: "PomeroyP@28cc7c8054f54d5097838bc00378ffcf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hulda McDowell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hulda McDowell,ou=Payroll,dc=bitwarden,dc=com", + email: "McDowelH@b0ae8165029e4a39900fe482966832f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden,dc=com", + email: "HaubertK@7e78b04dbd3c4b8d878396ef3d8060c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden,dc=com", + email: "MainwarB@832ca72d2f454bc98e5e071288b43609.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leil Forrest,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leil Forrest,ou=Payroll,dc=bitwarden,dc=com", + email: "ForrestL@ce0ca58b605f4efe987f4366b87f6460.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natassia Mallozzi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Natassia Mallozzi,ou=Management,dc=bitwarden,dc=com", + email: "MallozzN@9ca7a4dd2cea473bb01027d45fa7651f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zack Meckler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zack Meckler,ou=Product Development,dc=bitwarden,dc=com", + email: "MecklerZ@0709c1c68975470c9ca0f7b0b26d3479.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden,dc=com", + email: "BydeleyC@f185c5336698451d9003f4fee19cdce1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden,dc=com", + email: "SzpilfoN@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isidora Ralph,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Isidora Ralph,ou=Administrative,dc=bitwarden,dc=com", + email: "RalphI@6b3d33b809ec4793b446277435a68094.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailis Reis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ailis Reis,ou=Product Testing,dc=bitwarden,dc=com", + email: "ReisA@b7a75ac36cfb495ca213382c6edc48fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arvin McWilton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arvin McWilton,ou=Peons,dc=bitwarden,dc=com", + email: "McWiltoA@369d31e12885450e8a3e646342f4bbde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden,dc=com", + email: "KimbrouM@a9b974f8337643ea8609cd0bff25a863.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden,dc=com", + email: "PiecowyP@aa945863ba884bb0945b413cc3668682.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matti Bruce,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Matti Bruce,ou=Janitorial,dc=bitwarden,dc=com", + email: "BruceM@47ece09cd3f24518b5f5e95e47b71e12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joel Rynders,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joel Rynders,ou=Peons,dc=bitwarden,dc=com", + email: "RyndersJ@a21f5c8e73ff448fba1e73a903377739.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stefanie Malle,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Stefanie Malle,ou=Administrative,dc=bitwarden,dc=com", + email: "MalleS@c6b35f0658844e75be0a856bbda0593e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yokan Basco,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yokan Basco,ou=Peons,dc=bitwarden,dc=com", + email: "BascoY@0d3732b7ea1d4d659dee1e0435292c15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Froukje Gionet,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Froukje Gionet,ou=Administrative,dc=bitwarden,dc=com", + email: "GionetF@1d8ea622691942519634199a4665788b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden,dc=com", + email: "RicciutR@a0cd6adce0a94b1fa4dd97607ada8ecc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nenad OToole,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nenad OToole,ou=Payroll,dc=bitwarden,dc=com", + email: "OTooleN@b4e6fcb990c44b4a85e8d6b21ad2c2c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aileen Haney,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Aileen Haney,ou=Human Resources,dc=bitwarden,dc=com", + email: "HaneyA@6a3acca7ad4f4682a2006a10deabdc87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden,dc=com", + email: "LautenA@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hannis Flindall,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hannis Flindall,ou=Human Resources,dc=bitwarden,dc=com", + email: "FlindalH@2e3ea6fd47a04112b8fcd5e103e3ae77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anderson Bulan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anderson Bulan,ou=Administrative,dc=bitwarden,dc=com", + email: "BulanA@b360982dfbca4b8284c115441a6deb86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden,dc=com", + email: "PodmaroF@0091f742e8b849efaacb4f9b80e0f2c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denny Bourguignon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Denny Bourguignon,ou=Management,dc=bitwarden,dc=com", + email: "BourguiD@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden,dc=com", + email: "FerrissS@df9fef66ff8d4a1eb163eeab8b34d029.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reeva Doherty,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Reeva Doherty,ou=Janitorial,dc=bitwarden,dc=com", + email: "DohertyR@f72aa123d23546a4b16938b7223cb6df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Piyush Holness,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Piyush Holness,ou=Management,dc=bitwarden,dc=com", + email: "HolnessP@b6e011a2296d47ac9cf137f608b1c223.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minette Hazeldine,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Minette Hazeldine,ou=Payroll,dc=bitwarden,dc=com", + email: "HazeldiM@5868dcc2878d429f81b86e9aecf3d38d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haruko Hepburn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Haruko Hepburn,ou=Management,dc=bitwarden,dc=com", + email: "HepburnH@9cbf54d03b9c41c0a58b94807ed31433.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlo Mong,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Carlo Mong,ou=Peons,dc=bitwarden,dc=com", + email: "MongC@aad41c2039bd4d01a6a56cfb8fd90330.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oksana Klein,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Oksana Klein,ou=Product Testing,dc=bitwarden,dc=com", + email: "KleinO@5750a4ef0b904e64a81925c3672ef563.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden,dc=com", + email: "ScheuerA@6a7ad90af8b14ef5805ef3e5ef79c783.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dimitri Pineau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dimitri Pineau,ou=Peons,dc=bitwarden,dc=com", + email: "PineauD@cc46233b48e848cf830a3d50f88b2bbe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geri Shabo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Geri Shabo,ou=Administrative,dc=bitwarden,dc=com", + email: "ShaboG@3087ee4d2688435e9ed4c4c6f3e8ba87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saied Vertolli,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Saied Vertolli,ou=Product Testing,dc=bitwarden,dc=com", + email: "VertollS@4839522ad0264d68aafb73c3cd081f79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Txp Cummings,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Txp Cummings,ou=Administrative,dc=bitwarden,dc=com", + email: "CummingT@8ec12044b3f24cc38b71b6337247088e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Britt Caruth,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Britt Caruth,ou=Human Resources,dc=bitwarden,dc=com", + email: "CaruthB@f1b30e88335e48b6b2f1076d935738fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kwong Engleman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kwong Engleman,ou=Management,dc=bitwarden,dc=com", + email: "EnglemaK@afe236498cd549b2aa927720547167bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vikki Tzuang,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vikki Tzuang,ou=Payroll,dc=bitwarden,dc=com", + email: "TzuangV@6eda6577067f465b84cdc51153ccba3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sickle StJames,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sickle StJames,ou=Administrative,dc=bitwarden,dc=com", + email: "StJamesS@5e158cc6e3de4be9888366013451c974.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden,dc=com", + email: "StrohmeC@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aundrea Yates,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aundrea Yates,ou=Management,dc=bitwarden,dc=com", + email: "YatesA@d1186568844c4440bc6aec688b283aec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nam Cuddy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nam Cuddy,ou=Product Testing,dc=bitwarden,dc=com", + email: "CuddyN@1084d762384c42f1a6679ab8f507fae7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Methi Zoerb,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Methi Zoerb,ou=Management,dc=bitwarden,dc=com", + email: "ZoerbM@2b996155cde34aada101f38aad1494ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elysia Zhong,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Elysia Zhong,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZhongE@e45ce72662bb48a5bc1781a700f156d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kacie Herriotts,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kacie Herriotts,ou=Management,dc=bitwarden,dc=com", + email: "HerriotK@93baf6000e434401b0373a2ea7daeeeb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermine Fung,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hermine Fung,ou=Product Development,dc=bitwarden,dc=com", + email: "FungH@4e39cf6037cc438cb5f205f487c66106.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manoj Caterina,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Manoj Caterina,ou=Product Testing,dc=bitwarden,dc=com", + email: "CaterinM@1eb1bac0652b4a1d860f7943e8882707.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Penny Sim,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Penny Sim,ou=Human Resources,dc=bitwarden,dc=com", + email: "SimP@21b42d834af34274a89f3786de268a20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grzegorz Feist,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Grzegorz Feist,ou=Administrative,dc=bitwarden,dc=com", + email: "FeistG@c4659b280be44f2584ea6e37731ba24b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadan Spears,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sadan Spears,ou=Peons,dc=bitwarden,dc=com", + email: "SpearsS@b4636d7df71f4835817a7714801280f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peter Grazzini,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Peter Grazzini,ou=Management,dc=bitwarden,dc=com", + email: "GrazzinP@87263f2ad4e44ac39562038c9af16152.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kasifa Bauer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kasifa Bauer,ou=Management,dc=bitwarden,dc=com", + email: "BauerK@88d8b282161d4154bfd3a8dda92cc317.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milena Hendricksen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Milena Hendricksen,ou=Product Development,dc=bitwarden,dc=com", + email: "HendricM@60ffb350fa6740079313430abf25721b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allix Tsui,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Allix Tsui,ou=Peons,dc=bitwarden,dc=com", + email: "TsuiA@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenda Cobban,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jenda Cobban,ou=Payroll,dc=bitwarden,dc=com", + email: "CobbanJ@b69339dab59940869a3e5a49d58c958e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Concettina Linberg,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Concettina Linberg,ou=Peons,dc=bitwarden,dc=com", + email: "LinbergC@399ec0c914824f4b8aebd42d99e8c0c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colin Tahir,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Colin Tahir,ou=Peons,dc=bitwarden,dc=com", + email: "TahirC@fc5b2b3042744b23b0983715563a446d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gates Hesche,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gates Hesche,ou=Payroll,dc=bitwarden,dc=com", + email: "HescheG@7c6819ef96bf408e8eddc78b061a602d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjie Karp,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marjie Karp,ou=Janitorial,dc=bitwarden,dc=com", + email: "KarpM@1baee55063104657aab587314d3f4ff6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorella Reeder,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorella Reeder,ou=Payroll,dc=bitwarden,dc=com", + email: "ReederD@daeb41514d9e4eb79c108728fb0c78a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden,dc=com", + email: "EddisfoS@bdc6007cc6e34b34a9dcf44589f8b6cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shankar Brehm,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shankar Brehm,ou=Management,dc=bitwarden,dc=com", + email: "BrehmS@402d7992fc8d4f0abdb7612e07362a4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natalee Broadwell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Natalee Broadwell,ou=Administrative,dc=bitwarden,dc=com", + email: "BroadweN@2990e564c90444fbbb5903f5db67effd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gay Denette,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gay Denette,ou=Payroll,dc=bitwarden,dc=com", + email: "DenetteG@953912784f294893a08a38b4ede88ef7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden,dc=com", + email: "CoursolW@8e3617cc8c944c82bb3ee3f96f086fbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leita Malloy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Leita Malloy,ou=Peons,dc=bitwarden,dc=com", + email: "MalloyL@cfb0243cd1fe4f70a9f0422d30776059.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Novelia Tigg,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Novelia Tigg,ou=Human Resources,dc=bitwarden,dc=com", + email: "TiggN@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aeriell Cottrell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aeriell Cottrell,ou=Management,dc=bitwarden,dc=com", + email: "CottrelA@25788f1e9dc14cf99cc2d18e4cb5e6eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden,dc=com", + email: "JacobseA@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nickie Sicard,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nickie Sicard,ou=Product Development,dc=bitwarden,dc=com", + email: "SicardN@69a8656e77314e228a153eef610c1d7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Con Lampman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Con Lampman,ou=Product Testing,dc=bitwarden,dc=com", + email: "LampmanC@2e02b5adbe00404a986538a6f94c5721.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tidwell Plssup,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tidwell Plssup,ou=Product Development,dc=bitwarden,dc=com", + email: "PlssupT@7099256f6cc64433985279df12772e6d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden,dc=com", + email: "RomanowF@d236a57ac59c480697085ae127e79e8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dwight Goatcher,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dwight Goatcher,ou=Product Development,dc=bitwarden,dc=com", + email: "GoatcheD@9598004b7f184bb5a3e7c8cfe79e99ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Germana Easson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Germana Easson,ou=Product Development,dc=bitwarden,dc=com", + email: "EassonG@35bbac299f3146f4a62300231e440164.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden,dc=com", + email: "RecsnikL@46edd6cdf36f4626b2c693acecb611c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosetta Hatz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosetta Hatz,ou=Peons,dc=bitwarden,dc=com", + email: "HatzR@3177f113b2494bf084a4349d34933284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chen Karsan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Chen Karsan,ou=Administrative,dc=bitwarden,dc=com", + email: "KarsanC@4184e18cf063406b853c169572538938.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden,dc=com", + email: "AronstaG@55bf87fb786d4ac6b99a663700910163.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden,dc=com", + email: "MujahedW@1eab24bbb3db4e83b8ad0b7859744ea5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jorie Maltese,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jorie Maltese,ou=Product Development,dc=bitwarden,dc=com", + email: "MalteseJ@761b142c7930458e927f8f3e0fb5672f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden,dc=com", + email: "CorkerD@d0ea38ebac994dc19876844fd02c8f1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corilla Filkins,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Corilla Filkins,ou=Product Development,dc=bitwarden,dc=com", + email: "FilkinsC@f7fb17758cf24933ad847773d4770955.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kassem Chaput,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kassem Chaput,ou=Payroll,dc=bitwarden,dc=com", + email: "ChaputK@565d16d72934479d9f2d0ae2e179f3ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karl Rombeek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Karl Rombeek,ou=Janitorial,dc=bitwarden,dc=com", + email: "RombeekK@511a4fe0275b495abaca9f281c6b8eb4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden,dc=com", + email: "LoadbuiJ@cc8e55108b16486f8e21052882b1416b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hiren Leinen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hiren Leinen,ou=Payroll,dc=bitwarden,dc=com", + email: "LeinenH@8029b2d4dc2441e188d25c43ec86afd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=My Handforth,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=My Handforth,ou=Human Resources,dc=bitwarden,dc=com", + email: "HandforM@d6177e62683049c2b0fc2f004265e4ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruby Duffy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ruby Duffy,ou=Janitorial,dc=bitwarden,dc=com", + email: "DuffyR@b96d23a92c60424cb67c26b9d6c07a6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranjit Chaurasia,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ranjit Chaurasia,ou=Management,dc=bitwarden,dc=com", + email: "ChaurasR@f115ded519524610ab74393c6ce8cdfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xiaofeng Dach,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Xiaofeng Dach,ou=Management,dc=bitwarden,dc=com", + email: "DachX@ced4b5fef1fc484594acf10d2913d12f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bob Chaddock,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bob Chaddock,ou=Payroll,dc=bitwarden,dc=com", + email: "ChaddocB@8b4e180a03f04f079b534af88c685eca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatrice Costas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Beatrice Costas,ou=Human Resources,dc=bitwarden,dc=com", + email: "CostasB@98fcbf8cd4594526818e89f96ce2b8ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hynda Miksik,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hynda Miksik,ou=Administrative,dc=bitwarden,dc=com", + email: "MiksikH@2050a6c4c8e746ae88bec9f7634b8d59.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquie Jablonski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jacquie Jablonski,ou=Peons,dc=bitwarden,dc=com", + email: "JablonsJ@6c5d1cc04bcc4690b1cd5f323caabcec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashok Karol,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ashok Karol,ou=Management,dc=bitwarden,dc=com", + email: "KarolA@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zeljko Goodrow,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Zeljko Goodrow,ou=Management,dc=bitwarden,dc=com", + email: "GoodrowZ@9e59018d045045c3992ddf9f97eba64e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ManFai Yearwood,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=ManFai Yearwood,ou=Administrative,dc=bitwarden,dc=com", + email: "YearwooM@0ac0d65685754a5e856c139313371211.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grazia Ruben,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Grazia Ruben,ou=Product Development,dc=bitwarden,dc=com", + email: "RubenG@fd5b94e804a044a7a800a8f248c0732b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gee Buechner,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gee Buechner,ou=Payroll,dc=bitwarden,dc=com", + email: "BuechneG@c45f1df6bb5c46f48c3cc7bdf88a0bc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden,dc=com", + email: "HamlettB@a35a1dd24459415e944815d7f16bf11e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kial Skillen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kial Skillen,ou=Payroll,dc=bitwarden,dc=com", + email: "SkillenK@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raul Dantu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Raul Dantu,ou=Administrative,dc=bitwarden,dc=com", + email: "DantuR@13acf9d4e3a0437699a9a1215c20b7b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liuka Awano,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Liuka Awano,ou=Payroll,dc=bitwarden,dc=com", + email: "AwanoL@f3a0a467837a44759c47dbd3cc82740e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caryl Teder,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Caryl Teder,ou=Management,dc=bitwarden,dc=com", + email: "TederC@4c3f9ac9725344988223c5450f40e73e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden,dc=com", + email: "WackerS@264d4763d0c84adba308d4c4cab556c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden,dc=com", + email: "GutzmanX@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lex Matheson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lex Matheson,ou=Product Development,dc=bitwarden,dc=com", + email: "MathesoL@228cb153fdc24b46957a116ec2859b16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jamie Ballard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jamie Ballard,ou=Product Testing,dc=bitwarden,dc=com", + email: "BallardJ@b2685c20be7244a2b29f08c6434ac903.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaye Telos,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gaye Telos,ou=Human Resources,dc=bitwarden,dc=com", + email: "TelosG@5230c42fa8a044a1a7ccbc367b9402a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laz Wilemon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Laz Wilemon,ou=Janitorial,dc=bitwarden,dc=com", + email: "WilemonL@dc196a8022ff465cb8dbe2eba3225125.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Euphemia Novak,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Euphemia Novak,ou=Administrative,dc=bitwarden,dc=com", + email: "NovakE@0d3f6cc1cdcf4ec187af48e309baf95b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wini Haverty,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wini Haverty,ou=Product Development,dc=bitwarden,dc=com", + email: "HavertyW@90c9f3c96d1149a298fca9a67a1ea082.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Halli Mavis,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Halli Mavis,ou=Management,dc=bitwarden,dc=com", + email: "MavisH@bcd670afb5d343b18feec15b095dbc25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WingMan Vesterdal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=WingMan Vesterdal,ou=Peons,dc=bitwarden,dc=com", + email: "VesterdW@e6fadcf8493b4530b5a3c436c8c0ed93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blithe Keuning,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Blithe Keuning,ou=Product Development,dc=bitwarden,dc=com", + email: "KeuningB@641b3c32e986403cb54e8416d6ccf047.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katya Tracz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Katya Tracz,ou=Product Testing,dc=bitwarden,dc=com", + email: "TraczK@5ffbce7650f24a03b916e3651a1a21d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raymond Biggers,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Raymond Biggers,ou=Product Development,dc=bitwarden,dc=com", + email: "BiggersR@c4dfc71b0753437c958ea6ea07827916.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theresita Mashura,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Theresita Mashura,ou=Peons,dc=bitwarden,dc=com", + email: "MashuraT@4281cc0a8ccb4f14858483f470a527dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joly Dummer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joly Dummer,ou=Human Resources,dc=bitwarden,dc=com", + email: "DummerJ@0708f7927e154039bccaf12df5697875.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Feng Yeh,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Feng Yeh,ou=Peons,dc=bitwarden,dc=com", + email: "YehF@7e96834d9f214835923bce90da137a59.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robin Martenson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Robin Martenson,ou=Peons,dc=bitwarden,dc=com", + email: "MartensR@c82abe08fb0140599e247f8f838f49b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden,dc=com", + email: "VeloriaY@74e0243ab8e64a19864d198a422eff4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kara Tarle,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kara Tarle,ou=Administrative,dc=bitwarden,dc=com", + email: "TarleK@e0ae53f8b21d44948377b9044eb8a824.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jerzy Benoit,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jerzy Benoit,ou=Management,dc=bitwarden,dc=com", + email: "BenoitJ@e389b2400b87417ba8d4e795ac0d4324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abahri Brauer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Abahri Brauer,ou=Payroll,dc=bitwarden,dc=com", + email: "BrauerA@035c0401613a40f1b8232e8a6d1fda36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baljinder Kowalsky,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Baljinder Kowalsky,ou=Management,dc=bitwarden,dc=com", + email: "KowalskB@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kimberly Chung,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kimberly Chung,ou=Peons,dc=bitwarden,dc=com", + email: "ChungK@0fde233efcb84afa94a2f35004f78f85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaibal Andrew,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shaibal Andrew,ou=Administrative,dc=bitwarden,dc=com", + email: "AndrewS@16a833e1195d4b3a932748c3f7fbc836.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden,dc=com", + email: "GulbranA@3dc397261aae4717a7ed87ae45b11795.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oralla ENG,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Oralla ENG,ou=Payroll,dc=bitwarden,dc=com", + email: "ENGO@8237422e949f4acf92d97f787e6bf098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rubina RTP,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rubina RTP,ou=Payroll,dc=bitwarden,dc=com", + email: "RTPR@8eafc85110924d0ba63ca69cd0025630.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orie Larribeau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Orie Larribeau,ou=Janitorial,dc=bitwarden,dc=com", + email: "LarribeO@7cc0e5cc88d04bf3b06af1f2915df358.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brear Hagwood,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Brear Hagwood,ou=Human Resources,dc=bitwarden,dc=com", + email: "HagwoodB@65740d0bd6fb4b44a86d2ab249218002.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Radford Gille,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Radford Gille,ou=Administrative,dc=bitwarden,dc=com", + email: "GilleR@cbaf8ba54a4e4d25a6793e6fa4afc667.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shina Chari,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shina Chari,ou=Peons,dc=bitwarden,dc=com", + email: "ChariS@a4a95102a2604c2bad416eca20575783.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariel Yan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mariel Yan,ou=Payroll,dc=bitwarden,dc=com", + email: "YanM@aa11a3e30f7d4b8b9f6e08ae63f7a50f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bakoury Whitten,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bakoury Whitten,ou=Product Development,dc=bitwarden,dc=com", + email: "WhittenB@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donovan Bedard,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Donovan Bedard,ou=Product Development,dc=bitwarden,dc=com", + email: "BedardD@d7d5276b76fc44cfaa24d383211b91ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Almeria Whitman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Almeria Whitman,ou=Management,dc=bitwarden,dc=com", + email: "WhitmanA@c1f68539655f4334b2d630ad0e029235.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardyth Ely,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ardyth Ely,ou=Management,dc=bitwarden,dc=com", + email: "ElyA@d187b762206a464e954dc770f1e855cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden,dc=com", + email: "AydinH@8872be23f88a4521a0ed86c46ec5b63b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aleen Meckler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aleen Meckler,ou=Product Development,dc=bitwarden,dc=com", + email: "MecklerA@0dff8a8b68dc4196a7a7b4d0ac4c4efd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Riane Pantages,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Riane Pantages,ou=Janitorial,dc=bitwarden,dc=com", + email: "PantageR@6c99b676cc944a0f933ecc8837dfc70b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coral Wickes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Coral Wickes,ou=Product Development,dc=bitwarden,dc=com", + email: "WickesC@59a4a020a4c74747a44b5e60109428e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden,dc=com", + email: "GiridhaI@0ee31c9eef10414a913b9102559e5257.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dalia Doda,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dalia Doda,ou=Product Testing,dc=bitwarden,dc=com", + email: "DodaD@4287a3ff96ae495bbb365378cecf3190.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suki Currie,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Suki Currie,ou=Product Testing,dc=bitwarden,dc=com", + email: "CurrieS@65c647306216446ba8005c16399f2df3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gateway Bain,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gateway Bain,ou=Janitorial,dc=bitwarden,dc=com", + email: "BainG@a24d9d00e9af44d1b485530b308fa6f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inger Tchir,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Inger Tchir,ou=Payroll,dc=bitwarden,dc=com", + email: "TchirI@89a15950be8c4c2a83abf35a9b3ed795.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", + email: "RicciutT@06146e7a51ca478db85b58b8699ede7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laraine Arellano,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Laraine Arellano,ou=Product Development,dc=bitwarden,dc=com", + email: "ArellanL@32ce2ca229594ba68651edf24232f002.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roana Fulford,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roana Fulford,ou=Administrative,dc=bitwarden,dc=com", + email: "FulfordR@453e1aa146534f789cee9f78a1f430f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camellia Sheth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Camellia Sheth,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShethC@5c05b76ad7494928a53980603065304f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fayina Passier,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fayina Passier,ou=Peons,dc=bitwarden,dc=com", + email: "PassierF@4a9e0e3540864eaba3d1bf5f637a9e4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constantia Bielan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Constantia Bielan,ou=Product Testing,dc=bitwarden,dc=com", + email: "BielanC@ab3c86d1ac584fffb00ba8469a8050a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sacha Hiller,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sacha Hiller,ou=Janitorial,dc=bitwarden,dc=com", + email: "HillerS@82c6c2c80b7a4cf98e51762d28a47c93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myranda Poff,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Myranda Poff,ou=Product Development,dc=bitwarden,dc=com", + email: "PoffM@60323e558c4a4bd4a555e49dd613a509.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Victor McDaniel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Victor McDaniel,ou=Management,dc=bitwarden,dc=com", + email: "McDanieV@2aaa600b5e5f40588e0a715782d88ce7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden,dc=com", + email: "WenyonL@6decbec2a2934c8ab6247b1bef75e683.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden,dc=com", + email: "OviedoE@c5403fce69dd4d1b851d054bfb3293b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=James Predon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=James Predon,ou=Human Resources,dc=bitwarden,dc=com", + email: "PredonJ@0ab5cac49bd64597ab7b3eb70643285e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alta Bergwerff,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alta Bergwerff,ou=Peons,dc=bitwarden,dc=com", + email: "BergwerA@e903049a2f314871bf6a031a14c79162.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keven Abbie,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Keven Abbie,ou=Administrative,dc=bitwarden,dc=com", + email: "AbbieK@af019db996df414484b0d304e9b3637a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karia Pintwala,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Karia Pintwala,ou=Product Development,dc=bitwarden,dc=com", + email: "PintwalK@c928c350e6174849b6cbd911c4679767.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Philly Scharf,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Philly Scharf,ou=Administrative,dc=bitwarden,dc=com", + email: "ScharfP@9fcf94ac0f884f17b9c7deb28b0f8191.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jazmin Hargrow,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jazmin Hargrow,ou=Management,dc=bitwarden,dc=com", + email: "HargrowJ@81ac61a0646d4564aa0d3d94526b0433.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", + email: "KazimieT@629e6b0253394347a14c0d18a1bb0d2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Misti Ellington,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Misti Ellington,ou=Product Testing,dc=bitwarden,dc=com", + email: "EllingtM@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nevein Quinones,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nevein Quinones,ou=Human Resources,dc=bitwarden,dc=com", + email: "QuinoneN@ebf177db39e64709a34e9e3eaf86f3b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden,dc=com", + email: "RhodeniQ@a8523f0ff874441ba48222b981c29c83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devinne McMasters,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Devinne McMasters,ou=Janitorial,dc=bitwarden,dc=com", + email: "McMasteD@0af2af74178d40d4b0f1a836b6891d63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden,dc=com", + email: "WinnipeD@3b71f78d317548348aee8244389f06bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carola Eustace,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Carola Eustace,ou=Product Testing,dc=bitwarden,dc=com", + email: "EustaceC@b64a8a3393c1430b9818da0137b2ae83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden,dc=com", + email: "XayarajB@d240988d596c4a2aadfc9feacb7a7323.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thelma Fazel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Thelma Fazel,ou=Payroll,dc=bitwarden,dc=com", + email: "FazelT@17c722e6b16149e08a18c9a05c1e5e9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlene Galasso,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Arlene Galasso,ou=Product Development,dc=bitwarden,dc=com", + email: "GalassoA@6fd7a8381bd04762a7cac00d6e4b256a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrew Shuman,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Andrew Shuman,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShumanA@9d0d16d5fafb4671b8051c5b2764974d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden,dc=com", + email: "ReitforR@1fd5c1cb42fa4549b7b4a650b3209bed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alane Planting,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alane Planting,ou=Peons,dc=bitwarden,dc=com", + email: "PlantinA@ae1823164d544b79bc05faac357029b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elle Chaddock,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elle Chaddock,ou=Payroll,dc=bitwarden,dc=com", + email: "ChaddocE@f724343d8470496bb0df55542d73aa26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rachael Benchimol,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rachael Benchimol,ou=Product Development,dc=bitwarden,dc=com", + email: "BenchimR@37098c17a937400b986b54e1bc765718.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claresta Ramakrishna,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Claresta Ramakrishna,ou=Management,dc=bitwarden,dc=com", + email: "RamakriC@7f3b2e6863504983b91067d1959b5550.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivory Bolon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ivory Bolon,ou=Peons,dc=bitwarden,dc=com", + email: "BolonI@cabd0c89a78947b69a999dc093307343.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brenton Buker,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brenton Buker,ou=Payroll,dc=bitwarden,dc=com", + email: "BukerB@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beau Dorion,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Beau Dorion,ou=Product Development,dc=bitwarden,dc=com", + email: "DorionB@4ad19e5c2a7149b892ada70174e983fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden,dc=com", + email: "SandersY@5f5111842ce14a15a15227b296d55b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lelah Souza,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lelah Souza,ou=Peons,dc=bitwarden,dc=com", + email: "SouzaL@9b8e18aa6d95436696ff678adad8f690.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helen Marshman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Helen Marshman,ou=Human Resources,dc=bitwarden,dc=com", + email: "MarshmaH@e903c41d0e6d47309eaa689127a4e081.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yvon Uae,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yvon Uae,ou=Human Resources,dc=bitwarden,dc=com", + email: "UaeY@2974cf90fe1d4835b1ba05177dd29243.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laten Vartanesian,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Laten Vartanesian,ou=Product Development,dc=bitwarden,dc=com", + email: "VartaneL@edaeeeda9dac4d529991a1e33586bf00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susy Kadamani,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Susy Kadamani,ou=Janitorial,dc=bitwarden,dc=com", + email: "KadamanS@a4520dd200454f57be2c8b99e6f4ce8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berte Hesk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Berte Hesk,ou=Product Development,dc=bitwarden,dc=com", + email: "HeskB@022bca8b2ca74ff9b8d4afa8e3f8ebf5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joy Willard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Joy Willard,ou=Management,dc=bitwarden,dc=com", + email: "WillardJ@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Britte Thorman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Britte Thorman,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThormanB@ecb60d19de8e42218392139a0168ec8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amberly Inscoe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Amberly Inscoe,ou=Payroll,dc=bitwarden,dc=com", + email: "InscoeA@52c69ee191e243ddb28fef6b7d3171f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karole Prints,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Karole Prints,ou=Product Testing,dc=bitwarden,dc=com", + email: "PrintsK@d7bcc941bf9944f4a0cf58f580b041c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ludovico Reinink,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ludovico Reinink,ou=Peons,dc=bitwarden,dc=com", + email: "ReininkL@bbe574aa78294bfe850c65ae7f84a624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden,dc=com", + email: "StubbleE@dcb0954e4af74751966d9af34246f81f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoddinoN@840c6c20816640f3a23c22832cd051de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maritsa Mashura,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maritsa Mashura,ou=Administrative,dc=bitwarden,dc=com", + email: "MashuraM@05056fc74dc646529206862bf66ee307.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fern McGuigan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fern McGuigan,ou=Janitorial,dc=bitwarden,dc=com", + email: "McGuigaF@56c7b6a1cbe44355a3450da29d042416.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden,dc=com", + email: "GunasekD@6359449d115e4f1381b399393d47713b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gavin Parr,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gavin Parr,ou=Peons,dc=bitwarden,dc=com", + email: "ParrG@ab80825fb9f64e0fa2550d84decf8401.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anthiathia Nie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anthiathia Nie,ou=Management,dc=bitwarden,dc=com", + email: "NieA@d0277d6f48c14695a4405ab88f901980.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vita Larkin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vita Larkin,ou=Payroll,dc=bitwarden,dc=com", + email: "LarkinV@cb516e3803cd419889eae9883d74115c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madan Enstone,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Madan Enstone,ou=Peons,dc=bitwarden,dc=com", + email: "EnstoneM@f3b7d3d07c2e403b8aacf9226428b2e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marilyn Wainwright,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marilyn Wainwright,ou=Peons,dc=bitwarden,dc=com", + email: "WainwriM@a21b6cdd6fed4b0baf49c2dbaa964e4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amanda Tigg,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Amanda Tigg,ou=Product Development,dc=bitwarden,dc=com", + email: "TiggA@fa8aab84123a46888aa8c26b4a298c9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jermaine Shackley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jermaine Shackley,ou=Payroll,dc=bitwarden,dc=com", + email: "ShackleJ@50866cc225ba4cf3b94e887770c1c4c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden,dc=com", + email: "MuratF@0c4de0f537ac4059b43bc376b1423585.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alev Sunatori,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alev Sunatori,ou=Janitorial,dc=bitwarden,dc=com", + email: "SunatorA@a9b753f4c531475793fa04a6da053eaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juliette Finane,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Juliette Finane,ou=Product Development,dc=bitwarden,dc=com", + email: "FinaneJ@b1fdb151f0e64e1a958a0e82820ba255.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jessamyn Frampton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jessamyn Frampton,ou=Peons,dc=bitwarden,dc=com", + email: "FramptoJ@646d6f014bf44c5484623c7f1ed699a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norina Piersol,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Norina Piersol,ou=Product Development,dc=bitwarden,dc=com", + email: "PiersolN@a80cec7586b34ab8b14925cae24221e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden,dc=com", + email: "DickersF@5e4575ba15004635a07ebaa5c8dd9475.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Subhra Darby,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Subhra Darby,ou=Janitorial,dc=bitwarden,dc=com", + email: "DarbyS@9f504fcc849346579e7eeede9f9505f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnneLise Krodel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=AnneLise Krodel,ou=Management,dc=bitwarden,dc=com", + email: "KrodelA@4e28ebfb16ef4a5e8f0e2bce0a228472.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobbi Azevedo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bobbi Azevedo,ou=Management,dc=bitwarden,dc=com", + email: "AzevedoB@eb2999c8fa284a3f8c9f7cd764a9ece1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vikki Tu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vikki Tu,ou=Janitorial,dc=bitwarden,dc=com", + email: "TuV@b75dea79bbf94bcb8c735dd8f3b3eb74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Message Armstrong,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Message Armstrong,ou=Administrative,dc=bitwarden,dc=com", + email: "ArmstroM@a5eae71d9b964f5ba8783184abc9d511.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maury Este,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maury Este,ou=Product Testing,dc=bitwarden,dc=com", + email: "EsteM@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noel Mitrani,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Noel Mitrani,ou=Payroll,dc=bitwarden,dc=com", + email: "MitraniN@7f1848e959b9431aae2d7ba89294b649.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaib Codata,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shaib Codata,ou=Human Resources,dc=bitwarden,dc=com", + email: "CodataS@50684c4df5634a1a858fe299e0e2466c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden,dc=com", + email: "OestreiD@8ec12044b3f24cc38b71b6337247088e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffy Youngman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tiffy Youngman,ou=Product Development,dc=bitwarden,dc=com", + email: "YoungmaT@4ad3d1fc09c94c579cc898d58b2c9182.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terese VanHulst,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Terese VanHulst,ou=Peons,dc=bitwarden,dc=com", + email: "VanHulsT@d331e1c24d0b4aec9a1ad8d53034ac5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigitta Southon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Brigitta Southon,ou=Product Testing,dc=bitwarden,dc=com", + email: "SouthonB@f51717825b9c49d5a37e5f38d6f8642e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashlan Nyce,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ashlan Nyce,ou=Payroll,dc=bitwarden,dc=com", + email: "NyceA@1992283e02a14cd2a3449a7bd08c0ed9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alasdair Huether,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alasdair Huether,ou=Janitorial,dc=bitwarden,dc=com", + email: "HuetherA@38f4b173005e4744bda2f6fc3b8d52be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rakesh Izzotti,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rakesh Izzotti,ou=Management,dc=bitwarden,dc=com", + email: "IzzottiR@ad45074948ed4c7dba5bf592df90bab5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Irish Gaither,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Irish Gaither,ou=Payroll,dc=bitwarden,dc=com", + email: "GaitherI@5222f90256d843c8a24103ca5cca030a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden,dc=com", + email: "OrnburnS@c77046250d004539a16765d761d09cd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden,dc=com", + email: "KathnelN@62021a608fd94b2d95ca05367f09faa6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verlyn Farah,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Verlyn Farah,ou=Peons,dc=bitwarden,dc=com", + email: "FarahV@2e5d764491b046f6aa7ce6ba59a519f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rana Schartmann,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rana Schartmann,ou=Peons,dc=bitwarden,dc=com", + email: "SchartmR@132e9b9de0714b89851dab60393ea28b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden,dc=com", + email: "KolodieS@7bacc7c5f0114d5b9f10880dbb1a7890.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=XuanLien Harms,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=XuanLien Harms,ou=Management,dc=bitwarden,dc=com", + email: "HarmsX@588b4b264c9e4c9187b4cc73055957b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", + email: "ErmarkaV@f6758775c10f44a0888e5450785a13f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regine Danforth,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Regine Danforth,ou=Management,dc=bitwarden,dc=com", + email: "DanfortR@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adda Gutcher,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Adda Gutcher,ou=Payroll,dc=bitwarden,dc=com", + email: "GutcherA@49031457055a4efdb13b2d34b71f9815.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hpone Croxall,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hpone Croxall,ou=Product Development,dc=bitwarden,dc=com", + email: "CroxallH@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailee McCauley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ailee McCauley,ou=Product Testing,dc=bitwarden,dc=com", + email: "McCauleA@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nadya Finucane,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nadya Finucane,ou=Management,dc=bitwarden,dc=com", + email: "FinucanN@93f688ea0bc04368a2a139880357d5fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrennenM@a4b9657d81504fa48f8656723285a8fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brita Digenova,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brita Digenova,ou=Payroll,dc=bitwarden,dc=com", + email: "DigenovB@301d911e2eea414b9302e4f81984f9b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jami Franze,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jami Franze,ou=Peons,dc=bitwarden,dc=com", + email: "FranzeJ@ce9a5204a370483987964a25eaf0057b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariele Barnhart,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mariele Barnhart,ou=Management,dc=bitwarden,dc=com", + email: "BarnharM@5da48288aba74ccf8b206aad69790e91.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacalyn Jawor,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jacalyn Jawor,ou=Management,dc=bitwarden,dc=com", + email: "JaworJ@d8f95844461442f7932326cd41b836f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=National Gahunia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=National Gahunia,ou=Product Development,dc=bitwarden,dc=com", + email: "GahuniaN@0a4355ee7fe94c7bb8cc9baf9905f443.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Retha Spallin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Retha Spallin,ou=Product Development,dc=bitwarden,dc=com", + email: "SpallinR@e358162fa0384d918adc01a68c3773f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estrella Benner,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Estrella Benner,ou=Product Testing,dc=bitwarden,dc=com", + email: "BennerE@ff246c4446e74d80b9a0be3db943a949.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomasina Kling,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Thomasina Kling,ou=Product Development,dc=bitwarden,dc=com", + email: "KlingT@cbc82096b5e245c9b627cf69c35c8dc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaan Lian,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jaan Lian,ou=Peons,dc=bitwarden,dc=com", + email: "LianJ@c34ff4c9cd024e7eb996d78abb689848.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carola Osatuik,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carola Osatuik,ou=Management,dc=bitwarden,dc=com", + email: "OsatuikC@6e5be889b97e4253b4e9a6f0b2a0b677.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fifine Roussin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fifine Roussin,ou=Payroll,dc=bitwarden,dc=com", + email: "RoussinF@ccf238ac72764498a2a4e871140940fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden,dc=com", + email: "AmstutzE@75e8bf055ea0424a878ab7ea7870e005.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariam Markmeyer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mariam Markmeyer,ou=Management,dc=bitwarden,dc=com", + email: "MarkmeyM@3e451f2ddbdc401ba9f442a5e6dfbe64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Randall Chalker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Randall Chalker,ou=Peons,dc=bitwarden,dc=com", + email: "ChalkerR@b44a0907ac54444880285a852c9427d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anki Harriett,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anki Harriett,ou=Human Resources,dc=bitwarden,dc=com", + email: "HarrietA@77b7d3ef3e7d45c8b172d9cee40bbded.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teena Pufpaff,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Teena Pufpaff,ou=Management,dc=bitwarden,dc=com", + email: "PufpaffT@8d2e6b6207eb40d79fa60fd1d88ac47e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dalip Horak,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dalip Horak,ou=Payroll,dc=bitwarden,dc=com", + email: "HorakD@f4907e1fff334cd1812952d9d0110270.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamarra Grassmann,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tamarra Grassmann,ou=Peons,dc=bitwarden,dc=com", + email: "GrassmaT@7efd7c70c36c49faa77efd5d14e31317.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arun Adolfie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Arun Adolfie,ou=Payroll,dc=bitwarden,dc=com", + email: "AdolfieA@b01b1bd56e3f464896b7135dd1b7da99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lettie Janelle,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lettie Janelle,ou=Product Testing,dc=bitwarden,dc=com", + email: "JanelleL@bd8c56963a9f48dfb73b8a3322b6fe38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden,dc=com", + email: "PapadopV@e6b52be13e984c2c8799a67382d2c196.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huib Kayle,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Huib Kayle,ou=Payroll,dc=bitwarden,dc=com", + email: "KayleH@8044dacf63ac423fb3f7e245d1b46862.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vicki Streibel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vicki Streibel,ou=Management,dc=bitwarden,dc=com", + email: "StreibeV@fc82887f7d574e47999f4c6412d5d5a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ingeberg Gomm,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ingeberg Gomm,ou=Peons,dc=bitwarden,dc=com", + email: "GommI@5f7aa1104dd847a783d3ab9f854696e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden,dc=com", + email: "RaddalgP@8b09ab861a8547548572c341d5ae5d43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorianna Windom,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorianna Windom,ou=Peons,dc=bitwarden,dc=com", + email: "WindomL@b890dc6370824c28b958abdf02b9b5bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tamera Meyer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tamera Meyer,ou=Peons,dc=bitwarden,dc=com", + email: "MeyerT@ad0135726be04a5d8faeb9e97bff3b3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden,dc=com", + email: "AladangB@6ab8bc12da524a3d8f16fa02dd65712d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corliss Chenard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Corliss Chenard,ou=Product Testing,dc=bitwarden,dc=com", + email: "ChenardC@ec10cc023e454fb0bbdd9208be69f4fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rheba Castelloe,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rheba Castelloe,ou=Peons,dc=bitwarden,dc=com", + email: "CastellR@ac25d049c10a4d758088ebdaf063ce02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marijke Bielby,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marijke Bielby,ou=Management,dc=bitwarden,dc=com", + email: "BielbyM@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steen Carpool,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Steen Carpool,ou=Human Resources,dc=bitwarden,dc=com", + email: "CarpoolS@c3d2d2c0ad16421093e58b9a80d13fae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marigold Girgis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marigold Girgis,ou=Product Testing,dc=bitwarden,dc=com", + email: "GirgisM@6cc4c5dff9d04b5e89ad32c2b33d43af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tdr Gavidia,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tdr Gavidia,ou=Administrative,dc=bitwarden,dc=com", + email: "GavidiaT@5a85cb992a6942cf9192a30cc4dff439.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Judith Charbonneau,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Judith Charbonneau,ou=Product Development,dc=bitwarden,dc=com", + email: "CharbonJ@fdf5161eeea14f4092d0d9d3593c3092.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katerine Manners,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Katerine Manners,ou=Management,dc=bitwarden,dc=com", + email: "MannersK@67959d83c9f54eab8d5e9b41e77626e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tasha Netdev,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tasha Netdev,ou=Product Development,dc=bitwarden,dc=com", + email: "NetdevT@feb159b030e14305b9c8b50a78e33542.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ken Shiue,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ken Shiue,ou=Administrative,dc=bitwarden,dc=com", + email: "ShiueK@aa835df49d8745e4bab27a377c8d41e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tc Hayman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tc Hayman,ou=Human Resources,dc=bitwarden,dc=com", + email: "HaymanT@504b7fa15e81498b91140ca23e9bafd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corry Johnston,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Corry Johnston,ou=Management,dc=bitwarden,dc=com", + email: "JohnstoC@70db07b7e30f4b06835c7cf868520da6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", + email: "KastelbT@29c15912a9c64d47a005bca4887abd95.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden,dc=com", + email: "FergusoL@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farag Rogge,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Farag Rogge,ou=Product Development,dc=bitwarden,dc=com", + email: "RoggeF@3f3cc38c24fe4b7a8534f2cd843278b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Scot Santitoro,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Scot Santitoro,ou=Payroll,dc=bitwarden,dc=com", + email: "SantitoS@4df07dd4fa25468db57d445d7d91ad8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden,dc=com", + email: "ConrathE@a6f3133d61d14ab9941634fba9dc1a84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Micah Goheen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Micah Goheen,ou=Product Testing,dc=bitwarden,dc=com", + email: "GoheenM@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kasey Primeau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kasey Primeau,ou=Janitorial,dc=bitwarden,dc=com", + email: "PrimeauK@65763f125f254ceea21c060ef488c98d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden,dc=com", + email: "DickforJ@be39439fe1b046ff8b55dd6e46a1f1fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frankie Nesbitt,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Frankie Nesbitt,ou=Management,dc=bitwarden,dc=com", + email: "NesbittF@01b767fcb2cb434ca691bff5e3c89088.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fran Visockis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fran Visockis,ou=Payroll,dc=bitwarden,dc=com", + email: "VisockiF@f78034ad70854ccbacb0124129d464fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prudence Deugau,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Prudence Deugau,ou=Product Development,dc=bitwarden,dc=com", + email: "DeugauP@67a9d61944244b79b04665b16e622d77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elbert Figura,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elbert Figura,ou=Peons,dc=bitwarden,dc=com", + email: "FiguraE@45017ba123de4bd691a840bb1387bf6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorian Kingzett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorian Kingzett,ou=Payroll,dc=bitwarden,dc=com", + email: "KingzetD@ae52dcada2674f68a76a2c619d85f261.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camila Wilhoit,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Camila Wilhoit,ou=Management,dc=bitwarden,dc=com", + email: "WilhoitC@d52f84a4faf148e392088a55b1d91d85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wannell Klapper,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wannell Klapper,ou=Product Development,dc=bitwarden,dc=com", + email: "KlapperW@24698099682948489af34be8e13083ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brynne Hiers,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brynne Hiers,ou=Peons,dc=bitwarden,dc=com", + email: "HiersB@3b31b1e22b674d48829733c162895a88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden,dc=com", + email: "AbdollaG@38fb869ba3244313992623d5e5856ca5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbi Hebbar,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Barbi Hebbar,ou=Payroll,dc=bitwarden,dc=com", + email: "HebbarB@1fa3d22353b84ae8b3c1cfa1f92c0d6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden,dc=com", + email: "WheelocN@7cfe2ffb0199421b9c038434ce9a5120.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Panch Golka,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Panch Golka,ou=Payroll,dc=bitwarden,dc=com", + email: "GolkaP@8b4e205f7cd04cdf9570b14ba9584f1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Freya Seagraves,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Freya Seagraves,ou=Janitorial,dc=bitwarden,dc=com", + email: "SeagravF@6d6b8145dca640f99bdb6ac4a86deac7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Makary Pulver,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Makary Pulver,ou=Administrative,dc=bitwarden,dc=com", + email: "PulverM@a52b2533262a41f09422c904974af50a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmela Voitel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carmela Voitel,ou=Product Development,dc=bitwarden,dc=com", + email: "VoitelC@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nonah Ledet,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nonah Ledet,ou=Product Development,dc=bitwarden,dc=com", + email: "LedetN@59594afdce864109b5f7447ee0401063.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marti Mac,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marti Mac,ou=Janitorial,dc=bitwarden,dc=com", + email: "MacM@820452a402ec435298020857f318cbc5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden,dc=com", + email: "ElchakiC@4183bc2b55d349abb67652aa3cd2f8e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maxi Isaac,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maxi Isaac,ou=Administrative,dc=bitwarden,dc=com", + email: "IsaacM@44bcfd07218c489eba7387452f761d66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orlyn Eros,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Orlyn Eros,ou=Janitorial,dc=bitwarden,dc=com", + email: "ErosO@5889521a4ba34649ace6fd6f42ef0aa2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amandi Twiss,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Amandi Twiss,ou=Human Resources,dc=bitwarden,dc=com", + email: "TwissA@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolyne Delmar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Carolyne Delmar,ou=Peons,dc=bitwarden,dc=com", + email: "DelmarC@d49a6ebf54d04e67aead2ded915937e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Los Barbeau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Los Barbeau,ou=Payroll,dc=bitwarden,dc=com", + email: "BarbeauL@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fung Godwin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fung Godwin,ou=Product Testing,dc=bitwarden,dc=com", + email: "GodwinF@64c2994b832f40a4a166aa8ac8dd69f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coreen Underwood,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Coreen Underwood,ou=Product Development,dc=bitwarden,dc=com", + email: "UnderwoC@ee1df761a37f416c8ab1cdfe97a867af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inquire Morse,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Inquire Morse,ou=Human Resources,dc=bitwarden,dc=com", + email: "MorseI@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roby Kalyani,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Roby Kalyani,ou=Janitorial,dc=bitwarden,dc=com", + email: "KalyaniR@31fa64a862294a7388a08b68af152886.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leena OKelly,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Leena OKelly,ou=Peons,dc=bitwarden,dc=com", + email: "OKellyL@fdfd326c1e8945a3966cb4de28c4d870.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joli Gavidia,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Joli Gavidia,ou=Janitorial,dc=bitwarden,dc=com", + email: "GavidiaJ@8a64f3daaeda4903b6f2db2d73e7274f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gint Cioffi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gint Cioffi,ou=Product Development,dc=bitwarden,dc=com", + email: "CioffiG@d5e4a37826af47d086930b55ea76e123.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsea Arvin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Chelsea Arvin,ou=Product Development,dc=bitwarden,dc=com", + email: "ArvinC@d4881d0da2824b94aad995234e30bb1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allix Closson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Allix Closson,ou=Management,dc=bitwarden,dc=com", + email: "ClossonA@1385c66d23c04cd2a77d3143933af9fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ortensia Renwick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ortensia Renwick,ou=Payroll,dc=bitwarden,dc=com", + email: "RenwickO@2578fec05f3c4caebb2ed35da0948626.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden,dc=com", + email: "PollinzD@7e68fcf7d1c0481096800d5b87b7212d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Megumi Lipski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Megumi Lipski,ou=Peons,dc=bitwarden,dc=com", + email: "LipskiM@4a9fb51cf5c54cab94b295c86af723f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tulip Jeanes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tulip Jeanes,ou=Peons,dc=bitwarden,dc=com", + email: "JeanesT@7eeb5a2e39b24090937294c20835ac1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meg Kuechler,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Meg Kuechler,ou=Peons,dc=bitwarden,dc=com", + email: "KuechleM@b65d03e1c71344bb80d7616ebd0b92e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Severin Sridaran,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Severin Sridaran,ou=Payroll,dc=bitwarden,dc=com", + email: "SridaraS@a27a4ae74e5044938ec0dc7534cd37ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden,dc=com", + email: "LaschukB@d08341ea0aca4d2a827c8888aa168a33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rivalee Markes,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rivalee Markes,ou=Payroll,dc=bitwarden,dc=com", + email: "MarkesR@13757531d26649c1ba7e4dc18bfd6a62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gus Darcie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gus Darcie,ou=Management,dc=bitwarden,dc=com", + email: "DarcieG@b36741628ac5411aa6219ea976eb30f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farah Fiorile,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Farah Fiorile,ou=Product Testing,dc=bitwarden,dc=com", + email: "FiorileF@1c88bcc8224f440390a971996237e338.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jagjit Orr,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jagjit Orr,ou=Payroll,dc=bitwarden,dc=com", + email: "OrrJ@ee0e2753a68a4e55867207a3933be7d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allyce Maduri,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Allyce Maduri,ou=Product Development,dc=bitwarden,dc=com", + email: "MaduriA@251c488f536a47d0989ad6ee9cbeeac4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Padma Mannion,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Padma Mannion,ou=Administrative,dc=bitwarden,dc=com", + email: "MannionP@b5ffb168b2704131a434edf169b90308.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Armin Balogh,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Armin Balogh,ou=Management,dc=bitwarden,dc=com", + email: "BaloghA@8df14385ae864b439973adc9259c1607.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weiping Schneider,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Weiping Schneider,ou=Management,dc=bitwarden,dc=com", + email: "SchneidW@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wakako Schneider,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Wakako Schneider,ou=Administrative,dc=bitwarden,dc=com", + email: "SchneidW@4b4b802ff8a7484b87f06ad79d09b047.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aubrey Worsley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Aubrey Worsley,ou=Payroll,dc=bitwarden,dc=com", + email: "WorsleyA@a7a408f1db4f4c56bc140208ad720372.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden,dc=com", + email: "EsteghaI@ddf0191f89a0460ab413425ca86319fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden,dc=com", + email: "SebehZ@e790def4652645909ede72d3e5779756.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden,dc=com", + email: "BobbittA@477794cc09b1403eae274b941a7cdeff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Didar Chakravarti,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Didar Chakravarti,ou=Peons,dc=bitwarden,dc=com", + email: "ChakravD@27fe85cb2e8f492b80ccb681935b7475.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden,dc=com", + email: "SherrelR@7a7e84cee07a4519aac362b25f2d7d3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninetta Pullum,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ninetta Pullum,ou=Peons,dc=bitwarden,dc=com", + email: "PullumN@b9a2e7612aef443ebd9966e99249a73c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suki Marrec,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Suki Marrec,ou=Peons,dc=bitwarden,dc=com", + email: "MarrecS@e14fec315d724d2ea3c23dddfc2b66b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden,dc=com", + email: "BradyhoE@83f450f8e8ed4c6282bc25450b6af548.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ian Locicero,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ian Locicero,ou=Human Resources,dc=bitwarden,dc=com", + email: "LocicerI@ac4d7f7fd78147f7b89e17731422f227.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Modestia Prado,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Modestia Prado,ou=Product Testing,dc=bitwarden,dc=com", + email: "PradoM@2e96ba41c52b41599651831f48a31224.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linette Hoxie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Linette Hoxie,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoxieL@5d088289d7854227987c820b9b1f2b7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christi Silverstone,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Christi Silverstone,ou=Human Resources,dc=bitwarden,dc=com", + email: "SilversC@7012522876084229bee482efdda1e27f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertie Stough,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gertie Stough,ou=Product Development,dc=bitwarden,dc=com", + email: "StoughG@f217999906e34b1bbd26f75d9abe8282.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christy Mazurek,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Christy Mazurek,ou=Human Resources,dc=bitwarden,dc=com", + email: "MazurekC@166fd602ceb04a58b9e0bfc4c39bf95b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fikre Vieiro,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fikre Vieiro,ou=Product Development,dc=bitwarden,dc=com", + email: "VieiroF@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leila Mullett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Leila Mullett,ou=Product Testing,dc=bitwarden,dc=com", + email: "MullettL@c8037935d7cf4de6af85f4cdef77691d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Irina Holinski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Irina Holinski,ou=Peons,dc=bitwarden,dc=com", + email: "HolinskI@533123df06ad436d9c500ab92c7787fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kari Denmark,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kari Denmark,ou=Product Development,dc=bitwarden,dc=com", + email: "DenmarkK@72937da6610a485fb5709713ede972d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inge Valenziano,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Inge Valenziano,ou=Janitorial,dc=bitwarden,dc=com", + email: "ValenziI@93cef961e98e48e482c9b5e04d825449.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denis Khurana,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Denis Khurana,ou=Human Resources,dc=bitwarden,dc=com", + email: "KhuranaD@146df2fe13b2444d82d5d78937150f1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marice Klug,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marice Klug,ou=Product Development,dc=bitwarden,dc=com", + email: "KlugM@5a9b6da2d40a49eeae885d49efa6f2e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denver Welling,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Denver Welling,ou=Product Testing,dc=bitwarden,dc=com", + email: "WellingD@693e5301c4924e0195024b48e34f4838.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Windowing Lukic,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Windowing Lukic,ou=Administrative,dc=bitwarden,dc=com", + email: "LukicW@47bdbe19b290413cb5defd6e606815e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sig Mistry,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sig Mistry,ou=Product Testing,dc=bitwarden,dc=com", + email: "MistryS@b381db8c81ea4ed2b9296ea4988780aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden,dc=com", + email: "DeRaafC@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathe Rohan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kathe Rohan,ou=Product Testing,dc=bitwarden,dc=com", + email: "RohanK@a9c3295ea2f347439f03376e321e4733.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristie Valente,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kristie Valente,ou=Payroll,dc=bitwarden,dc=com", + email: "ValenteK@0b027bdff1d041629ac882de18aab2e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maiga Burdick,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maiga Burdick,ou=Human Resources,dc=bitwarden,dc=com", + email: "BurdickM@620a0deb741d4dc4a818615fd1732275.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manh Malee,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Manh Malee,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaleeM@7288f418f35f4596b14bd4c35f0a5698.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benita Rosvick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Benita Rosvick,ou=Product Testing,dc=bitwarden,dc=com", + email: "RosvickB@0283099cc03c4fbb82831c03428e71c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Serban Gerard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Serban Gerard,ou=Management,dc=bitwarden,dc=com", + email: "GerardS@072112936d7540f191ae5e1941e3f66c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden,dc=com", + email: "ZeitlerD@26eb3cccbe694e88916be9fa6504534e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden,dc=com", + email: "McCormiG@6dcb8ef14afa4d0f878ab023a26df8bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Condell Sorensen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Condell Sorensen,ou=Product Development,dc=bitwarden,dc=com", + email: "SorenseC@928ad853e1494474966df7fb64907ee2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden,dc=com", + email: "ChoptovJ@21b58cb6354d45989d255e9811572cc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden,dc=com", + email: "SobolewH@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden,dc=com", + email: "GiarritM@5ff34bafebf24aa4b9506984a8233f6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden,dc=com", + email: "RandolpE@55ec9ab4177d4a9faecb693090c29c24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden,dc=com", + email: "BedientS@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden,dc=com", + email: "CharlebY@d67f5f676f7c4a17add6d088939168e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giang Hildum,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Giang Hildum,ou=Product Testing,dc=bitwarden,dc=com", + email: "HildumG@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loise Prasad,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Loise Prasad,ou=Product Testing,dc=bitwarden,dc=com", + email: "PrasadL@80dd2ec5de3e4cba8ab6e9385f8b5eaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronnie Hillson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ronnie Hillson,ou=Payroll,dc=bitwarden,dc=com", + email: "HillsonR@f2e5bcfc6f2e4cd8a024fc3813c3b9e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gavra Sokolowski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gavra Sokolowski,ou=Peons,dc=bitwarden,dc=com", + email: "SokolowG@e52685d2fb89476596028e80c714ec4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candy Husain,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Candy Husain,ou=Janitorial,dc=bitwarden,dc=com", + email: "HusainC@72624b313e0f4ba194d78d055a4373e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvin Shwed,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alvin Shwed,ou=Janitorial,dc=bitwarden,dc=com", + email: "ShwedA@8a1bb097abd44599a5fd9f86e866f848.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kenna Marui,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kenna Marui,ou=Janitorial,dc=bitwarden,dc=com", + email: "MaruiK@c3ff70181a1748d2af2d2661f51fc5e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aleta Gargul,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aleta Gargul,ou=Peons,dc=bitwarden,dc=com", + email: "GargulA@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mani Khatod,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mani Khatod,ou=Product Development,dc=bitwarden,dc=com", + email: "KhatodM@9fc79730a8c748d99061f17947cb944d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden,dc=com", + email: "BagetakM@b22727f208b94d678a41e54f04994fdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden,dc=com", + email: "KolappaT@001f8a7cac5e4e5289e4b851c2ff301c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden,dc=com", + email: "AaldersA@cbaa630e3a194faaa797a1d7d5ab2466.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trixy Palik,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Trixy Palik,ou=Management,dc=bitwarden,dc=com", + email: "PalikT@a003e42ed50b459eb9c3a71f6a23c973.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dimitri Reese,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dimitri Reese,ou=Administrative,dc=bitwarden,dc=com", + email: "ReeseD@6decbec2a2934c8ab6247b1bef75e683.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosamond McEachern,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rosamond McEachern,ou=Management,dc=bitwarden,dc=com", + email: "McEacheR@972cbc7b1e734ef69ec2cf84c21cdb8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden,dc=com", + email: "KhatriN@822b8a7ab5a0431f84030ba3b9764408.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Augustin Bayne,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Augustin Bayne,ou=Management,dc=bitwarden,dc=com", + email: "BayneA@0a414dfa34d6439f8f6befcf71900bba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corkstown Beattie,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Corkstown Beattie,ou=Product Development,dc=bitwarden,dc=com", + email: "BeattieC@45719f80729a4e31a475e496709ecf11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prudence Fickes,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Prudence Fickes,ou=Janitorial,dc=bitwarden,dc=com", + email: "FickesP@5c5e6866da4a4802aa0f0136ee49902d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lavina Cirulli,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lavina Cirulli,ou=Peons,dc=bitwarden,dc=com", + email: "CirulliL@57507372eada4752ba384ecd326c57ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden,dc=com", + email: "RamaswaJ@ceecdf1f706d4c9589203a7e587e1932.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiertza Korea,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tiertza Korea,ou=Peons,dc=bitwarden,dc=com", + email: "KoreaT@3a117fad58d6422fb9086b1f787bebea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Javed Collecutt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Javed Collecutt,ou=Product Testing,dc=bitwarden,dc=com", + email: "CollecuJ@5c5bca41c1084c1a8e475f6b76094495.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrianna Shypski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Adrianna Shypski,ou=Peons,dc=bitwarden,dc=com", + email: "ShypskiA@e3d22003ed4443a89482f00559e86e88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Susanne Denison,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Susanne Denison,ou=Product Development,dc=bitwarden,dc=com", + email: "DenisonS@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilian Rickborn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lilian Rickborn,ou=Product Development,dc=bitwarden,dc=com", + email: "RickborL@7080244b7c9140eab015a52785b9e6b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Remy Blackwood,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Remy Blackwood,ou=Product Development,dc=bitwarden,dc=com", + email: "BlackwoR@806f7fb196b84130b64d5de337c23d96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beret Cemensky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beret Cemensky,ou=Administrative,dc=bitwarden,dc=com", + email: "CemenskB@ecd23bb109534fef8869328ab8ab9019.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bel Browning,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bel Browning,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrowninB@a811d1067f2b449da56503c72e375ae8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden,dc=com", + email: "VanSchoR@6ad1b625c3674b77a93e5c19216d7f12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden,dc=com", + email: "KinsellC@c870d166444a452b9465ab41e64ba24a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lula Communications,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lula Communications,ou=Product Testing,dc=bitwarden,dc=com", + email: "CommuniL@949cd7cb4d054b4f8d66cb7e1b41ac6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronn Turbyfill,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ronn Turbyfill,ou=Peons,dc=bitwarden,dc=com", + email: "TurbyfiR@8b4e180a03f04f079b534af88c685eca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cindy Deol,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cindy Deol,ou=Payroll,dc=bitwarden,dc=com", + email: "DeolC@c515863a84e8438aba0830f2adfe9717.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjory Ranahan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marjory Ranahan,ou=Administrative,dc=bitwarden,dc=com", + email: "RanahanM@7b7cafe5ed8643f587a2a3fd33e7d617.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winona Baccari,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Winona Baccari,ou=Peons,dc=bitwarden,dc=com", + email: "BaccariW@c67a6c3f272e49d89894436b34e568ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veda Gaines,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Veda Gaines,ou=Management,dc=bitwarden,dc=com", + email: "GainesV@0d16cc430a2c4388b233d89e5b36b645.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anup Mundi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Anup Mundi,ou=Peons,dc=bitwarden,dc=com", + email: "MundiA@c337fda07bbe40e2a0aa0860ad7ba681.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alyce Felli,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Alyce Felli,ou=Payroll,dc=bitwarden,dc=com", + email: "FelliA@f77e0f58a0a6420b98bdf66cba559331.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janet Ludchen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Janet Ludchen,ou=Product Testing,dc=bitwarden,dc=com", + email: "LudchenJ@98502193cf164ea4ab82010779caeff8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden,dc=com", + email: "HemensDE@09a14201411d4f53ba5558d0182f9877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noubar Novotny,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Noubar Novotny,ou=Product Testing,dc=bitwarden,dc=com", + email: "NovotnyN@4664a2b63b254ce9b3d95a8c77ae6508.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Starlin Joe,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Starlin Joe,ou=Administrative,dc=bitwarden,dc=com", + email: "JoeS@dfc246b09f2e4fb599bc8aeb9522688c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden,dc=com", + email: "McgrachR@094b6a4c917e4f98917e91b5a1b28522.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden,dc=com", + email: "SylvestA@c6c0c36af5924e05b67c3f7f8f84a521.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden,dc=com", + email: "SzpakowC@4844d9cc18554268bb1e3d4ae2211fcb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devora Pde,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Devora Pde,ou=Product Development,dc=bitwarden,dc=com", + email: "PdeD@4fe9499fc7c8456094066466aa426118.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darya McGeown,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Darya McGeown,ou=Human Resources,dc=bitwarden,dc=com", + email: "McGeownD@67e3aaef7f7f4f1cbd8f4f936f598c13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dnsproj Walles,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dnsproj Walles,ou=Peons,dc=bitwarden,dc=com", + email: "WallesD@436da9fad3274d878f0f8f160f4f3038.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden,dc=com", + email: "AinsworC@33cc208726174faa89627fd28537f1c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norma Lepine,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Norma Lepine,ou=Peons,dc=bitwarden,dc=com", + email: "LepineN@272fe3f35e92442897a84fe95f9bd54a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandy Verma,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brandy Verma,ou=Management,dc=bitwarden,dc=com", + email: "VermaB@d3b588680db34a60a238a39048e01e24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blanch Virk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Blanch Virk,ou=Management,dc=bitwarden,dc=com", + email: "VirkB@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viviana Waucheul,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Viviana Waucheul,ou=Management,dc=bitwarden,dc=com", + email: "WaucheuV@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden,dc=com", + email: "BuettgeJ@870c77d8854c4712a0826cc38e8d28f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brittani Menasce,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brittani Menasce,ou=Payroll,dc=bitwarden,dc=com", + email: "MenasceB@39e9f09e15b6447ab4fb7b5dd3ceb897.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khalil Mincey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Khalil Mincey,ou=Product Testing,dc=bitwarden,dc=com", + email: "MinceyK@fdb2f5b287e8463ca2c07913962256d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shedman Jakim,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shedman Jakim,ou=Product Testing,dc=bitwarden,dc=com", + email: "JakimS@5804ef50880749d5b82225b286f1e13d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reba Chadha,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Reba Chadha,ou=Management,dc=bitwarden,dc=com", + email: "ChadhaR@33e8933bc7494a68acd4251758e509d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailey Randall,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ailey Randall,ou=Human Resources,dc=bitwarden,dc=com", + email: "RandallA@4dc95598dae748aba389750443b62f7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dino Dangubic,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dino Dangubic,ou=Management,dc=bitwarden,dc=com", + email: "DangubiD@2b9fd035a3c74d0a924ba78f328d5988.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlies Ortiz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marlies Ortiz,ou=Product Development,dc=bitwarden,dc=com", + email: "OrtizM@f5c69553f79a4b59937ac455a61cfbaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Uri Neufeld,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Uri Neufeld,ou=Peons,dc=bitwarden,dc=com", + email: "NeufeldU@34daae537ca34252aa1b9fbf611843a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loralee McDunn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Loralee McDunn,ou=Management,dc=bitwarden,dc=com", + email: "McDunnL@6737edb7123741dc9935feaaacc217ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caridad Sawada,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Caridad Sawada,ou=Janitorial,dc=bitwarden,dc=com", + email: "SawadaC@b7db7b74741043f1bc70179c65d8c474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willis Shelley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Willis Shelley,ou=Payroll,dc=bitwarden,dc=com", + email: "ShelleyW@4c5bcfb77c02454a84e7adc20afdfbe7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden,dc=com", + email: "KingsbuR@36de44fb75b44a8f944e568c2906a4cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pauletta Weakley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pauletta Weakley,ou=Administrative,dc=bitwarden,dc=com", + email: "WeakleyP@7ed3387e63ee42a8ac53af5791774853.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZalzaleW@b0d3dcf7c04d42368ec48183f6c62c8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nanni Taul,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nanni Taul,ou=Management,dc=bitwarden,dc=com", + email: "TaulN@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neetu Jeng,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Neetu Jeng,ou=Management,dc=bitwarden,dc=com", + email: "JengN@7d8c7359d7af4b57bab78dd69e94d053.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden,dc=com", + email: "LEcuyerL@ff701dee527d4bd9bda5646b61d95c09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aimee Poma,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aimee Poma,ou=Product Development,dc=bitwarden,dc=com", + email: "PomaA@98e58adba05c446c846da1ebe7623815.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mer Mayes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mer Mayes,ou=Product Development,dc=bitwarden,dc=com", + email: "MayesM@4e190119399c4a758ca1735cbfbf2e84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alisa Rogan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alisa Rogan,ou=Administrative,dc=bitwarden,dc=com", + email: "RoganA@c4fa2184e3754d1f80f7d5580d9d94a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden,dc=com", + email: "StaggsG@515154f7d1544d02939e620d7479ff81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Penni Yim,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Penni Yim,ou=Product Testing,dc=bitwarden,dc=com", + email: "YimP@2c5e9a0ea53e4c3488f28ebc0a631b01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melessa Vuong,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Melessa Vuong,ou=Product Testing,dc=bitwarden,dc=com", + email: "VuongM@65c647306216446ba8005c16399f2df3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anni Blander,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anni Blander,ou=Payroll,dc=bitwarden,dc=com", + email: "BlanderA@a1cc10fa763e4d8e859c484ee294d650.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden,dc=com", + email: "WestonK@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lesli Hassan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lesli Hassan,ou=Administrative,dc=bitwarden,dc=com", + email: "HassanL@15a45d459da54368b0fd6d1cb3b6eb6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marthena Holleran,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marthena Holleran,ou=Product Testing,dc=bitwarden,dc=com", + email: "HolleraM@736366bf947d4889a5087519dbc9eaff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Josi Management,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Josi Management,ou=Product Testing,dc=bitwarden,dc=com", + email: "ManagemJ@c6a4a4056d14487fb671f2f8a2034eab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden,dc=com", + email: "MarklanW@b25f9197eb164e0e80b05e75586a2055.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elga Conlon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Elga Conlon,ou=Janitorial,dc=bitwarden,dc=com", + email: "ConlonE@c0c6e65c61e944a0b382a61d11dea90d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francesca Boyd,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Francesca Boyd,ou=Human Resources,dc=bitwarden,dc=com", + email: "BoydF@e38af9fe725143fba59fa84a861f0258.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden,dc=com", + email: "EberlinL@b2b61d7107f642f5a98b64baa9303c9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden,dc=com", + email: "ClysdalG@aac280e1ad054311a3291435b99caa3e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marit Ahlers,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marit Ahlers,ou=Product Testing,dc=bitwarden,dc=com", + email: "AhlersM@a5557159c1c14e57b5492ca45de2de58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden,dc=com", + email: "AboussoM@541a80b7aa9b481bbf28921cf43e3f5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donovan Rega,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Donovan Rega,ou=Product Testing,dc=bitwarden,dc=com", + email: "RegaD@21f2e463791848548ef88e00deb1b9ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elli Bourdignon,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elli Bourdignon,ou=Peons,dc=bitwarden,dc=com", + email: "BourdigE@0f1c3e2ce2034f5d8c7b8756242c50e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haily Mo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Haily Mo,ou=Product Development,dc=bitwarden,dc=com", + email: "MoH@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mohammed Minai,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mohammed Minai,ou=Product Testing,dc=bitwarden,dc=com", + email: "MinaiM@777873609ce9463eb7000e930f9c88d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirit Storrie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kirit Storrie,ou=Human Resources,dc=bitwarden,dc=com", + email: "StorrieK@faf22808db304ae29b9dfcf6c14eb1a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", + email: "JayamanC@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden,dc=com", + email: "WatkinsA@b34436a247d34fc9bc5677457c93ba78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden,dc=com", + email: "SimonovR@cde16491739c4f3f8690a2cf6ade7e5d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden,dc=com", + email: "McGalliM@a46aa42b5f274530aa98dd0c7465489c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenn Bennison,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jenn Bennison,ou=Human Resources,dc=bitwarden,dc=com", + email: "BennisoJ@0469f1b4c991499bab217f2cac0d045b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Durantaye Molson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Durantaye Molson,ou=Product Testing,dc=bitwarden,dc=com", + email: "MolsonD@282e36163b2b4782beba5acb316b5795.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viola Devouges,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Viola Devouges,ou=Janitorial,dc=bitwarden,dc=com", + email: "DevougeV@22e47b1badb64e5a8c75ea83e23c66b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden,dc=com", + email: "BhardwaA@7c05b9f9aa6d481ba748c7c030bbe50b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Palme Boose,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Palme Boose,ou=Product Testing,dc=bitwarden,dc=com", + email: "BooseP@0a9ecf28f4994fd284a4f750138333e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zarah Doriot,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Zarah Doriot,ou=Peons,dc=bitwarden,dc=com", + email: "DoriotZ@3be6f0b907a24b2494bafbb2bc326635.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eirik McCray,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eirik McCray,ou=Management,dc=bitwarden,dc=com", + email: "McCrayE@7ae99018925f40aaa0a9b24bf1a3f314.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brennan Saito,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Brennan Saito,ou=Administrative,dc=bitwarden,dc=com", + email: "SaitoB@4437a885539842e694e181973aeef65f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bambie Borel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bambie Borel,ou=Payroll,dc=bitwarden,dc=com", + email: "BorelB@911fdc608a134ac59eea9467d4209b74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devonne Salkini,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Devonne Salkini,ou=Payroll,dc=bitwarden,dc=com", + email: "SalkiniD@f06dcb9a7c274d2c8b61f4765bcce046.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bawn Straub,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bawn Straub,ou=Product Testing,dc=bitwarden,dc=com", + email: "StraubB@3f4cec00392444ae9c0437c04a8ea49d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jojo Peart,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jojo Peart,ou=Janitorial,dc=bitwarden,dc=com", + email: "PeartJ@7d23b0e8a7304d9db4a8b51eca9070a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marieke Deibert,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marieke Deibert,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeibertM@8eab0f58e984423689a3d31e38a978a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginelle Couture,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ginelle Couture,ou=Management,dc=bitwarden,dc=com", + email: "CoutureG@2f5fd5dddfb54bca86a1d0320ba60e06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gnni Podolski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gnni Podolski,ou=Janitorial,dc=bitwarden,dc=com", + email: "PodolskG@f7752e330a264f1884c22f0f347f41b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden,dc=com", + email: "IgarashC@97e726cfbc2349ecb70cb5344f2a2c22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Uunko Kodsi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Uunko Kodsi,ou=Payroll,dc=bitwarden,dc=com", + email: "KodsiU@37c3227000a74816851448e0169c372e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden,dc=com", + email: "RitcheyK@fe48d37c5b2641728941b8fc035adcee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharline Tullius,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sharline Tullius,ou=Management,dc=bitwarden,dc=com", + email: "TulliusS@eb7bca808a2e45f58db03191eddeb5b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden,dc=com", + email: "TusseyT@1d0fa7b832b142ce82ca5e924a1754a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shoeb Scales,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shoeb Scales,ou=Product Development,dc=bitwarden,dc=com", + email: "ScalesS@b517a2d10bbc4f42810c787fa46b3e5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden,dc=com", + email: "SkiclubE@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nissa Twarog,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nissa Twarog,ou=Product Testing,dc=bitwarden,dc=com", + email: "TwarogN@c9e737b9c70b4882afff21061f6d5241.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden,dc=com", + email: "YarnellS@55c5ce522f7b4db190d4d14360a9a4fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden,dc=com", + email: "KusykA@99efb52676a5438d8f4dfeb830e52009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hrinfo Popel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hrinfo Popel,ou=Administrative,dc=bitwarden,dc=com", + email: "PopelH@9e56e8486a994bf4a874e73233ce3dcc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anallese Dressler,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anallese Dressler,ou=Payroll,dc=bitwarden,dc=com", + email: "DressleA@52c44ba7d54d47f49f97d3fd2eee96ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fredra Skillen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fredra Skillen,ou=Payroll,dc=bitwarden,dc=com", + email: "SkillenF@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shafique Behrens,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shafique Behrens,ou=Human Resources,dc=bitwarden,dc=com", + email: "BehrensS@22b38e3187c1496caaed86c5083e47f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ross Saravanos,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ross Saravanos,ou=Product Testing,dc=bitwarden,dc=com", + email: "SaravanR@54fd227716ba449c96690a03af42c46e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden,dc=com", + email: "EierstoK@2a4ac17a2dac443185eb76e92ebd37d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Albertine Dorey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Albertine Dorey,ou=Product Testing,dc=bitwarden,dc=com", + email: "DoreyA@0f6317f19e074d3eacd8b09d7fafccf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Junia Kun,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Junia Kun,ou=Payroll,dc=bitwarden,dc=com", + email: "KunJ@90c585b5539b419a977fd9fb6fa21443.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden,dc=com", + email: "KalnitsC@98cda8dd254945c28b3bdbc5a52f9fd7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden,dc=com", + email: "JauvinH@ab9c48ef1f7c4b329b69e3276189b579.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rey Galvin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rey Galvin,ou=Product Testing,dc=bitwarden,dc=com", + email: "GalvinR@660a614454f1481f8e7878f66c6cc97d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kentaro Prada,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kentaro Prada,ou=Janitorial,dc=bitwarden,dc=com", + email: "PradaK@fc6cfedbbb404c7db9497f0971d6cf66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caro Roithmaier,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Caro Roithmaier,ou=Administrative,dc=bitwarden,dc=com", + email: "RoithmaC@2887ebb1b5674da08665a9e53d171dc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassondra Rollin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cassondra Rollin,ou=Management,dc=bitwarden,dc=com", + email: "RollinC@e18e42f38b9b44e7831cc8f3706030f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiet Kantor,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kiet Kantor,ou=Product Testing,dc=bitwarden,dc=com", + email: "KantorK@717bac7424a34a139f2d3dd4cc38bede.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden,dc=com", + email: "LabossiK@ce0ca58b605f4efe987f4366b87f6460.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilemette Grubbs,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gilemette Grubbs,ou=Peons,dc=bitwarden,dc=com", + email: "GrubbsG@e85fdc3041fd4381ad23f20fda20358e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden,dc=com", + email: "VanAttaL@984a33b6fcea4c229307cb5a753888dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calida Knudsen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Calida Knudsen,ou=Product Testing,dc=bitwarden,dc=com", + email: "KnudsenC@907c0dba1e17448686f2f886e0e7f2be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bendite Costelloe,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bendite Costelloe,ou=Product Development,dc=bitwarden,dc=com", + email: "CostellB@cbd714d753064e6b830ef812fa9487c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden,dc=com", + email: "FalkensB@25f3da6efbac4e1a943679d0eb7798c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desirae Tye,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Desirae Tye,ou=Administrative,dc=bitwarden,dc=com", + email: "TyeD@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yong Papalitskas,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yong Papalitskas,ou=Peons,dc=bitwarden,dc=com", + email: "PapalitY@bf2f61fe09a540bebb83fd50294209be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orsola Shieff,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Orsola Shieff,ou=Product Development,dc=bitwarden,dc=com", + email: "ShieffO@06521bdd507441e9a09de35a0e462c1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meade Lindler,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Meade Lindler,ou=Janitorial,dc=bitwarden,dc=com", + email: "LindlerM@d8b377610c7d421f8eec4a02e5fb3c9d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Canadian Gass,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Canadian Gass,ou=Product Development,dc=bitwarden,dc=com", + email: "GassC@0ed31ccb8df34d01a0dc8eade78d6c66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liping Woll,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Liping Woll,ou=Product Testing,dc=bitwarden,dc=com", + email: "WollL@d727402099aa4389806973df875b978a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dwaine Oka,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dwaine Oka,ou=Product Testing,dc=bitwarden,dc=com", + email: "OkaD@160e893e1d3b4deaa6e59bb27f3aab82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jed Colbourne,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jed Colbourne,ou=Product Development,dc=bitwarden,dc=com", + email: "ColbourJ@bea3df99128348b58312efa7b662b9b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pammi Crucefix,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pammi Crucefix,ou=Management,dc=bitwarden,dc=com", + email: "CrucefiP@cd532997f28e491fbc9b8de411038a21.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joelle Vardy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joelle Vardy,ou=Peons,dc=bitwarden,dc=com", + email: "VardyJ@a59c9463263443218c36867822977d85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wenona Angerer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wenona Angerer,ou=Human Resources,dc=bitwarden,dc=com", + email: "AngererW@759d634715d84fd98852f9030d6bb1fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden,dc=com", + email: "KikutaK@1b4bc37ec1234668beb3a7c3f6a14e94.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arjun Passier,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Arjun Passier,ou=Peons,dc=bitwarden,dc=com", + email: "PassierA@d52d40abb69a4bfc85f5db20e538bb0e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden,dc=com", + email: "AsgharzD@90c585b5539b419a977fd9fb6fa21443.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden,dc=com", + email: "BallingV@781f1406846947ac8e77d85a552d214c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kas Breedlove,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kas Breedlove,ou=Administrative,dc=bitwarden,dc=com", + email: "BreedloK@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden,dc=com", + email: "EarnharR@969884d3e1084598a17f4ef0a3aedf04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hoog Trinidad,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hoog Trinidad,ou=Peons,dc=bitwarden,dc=com", + email: "TrinidaH@1dd14c35e95e43649cc03bb29ef8e910.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jesselyn Lindholm,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jesselyn Lindholm,ou=Management,dc=bitwarden,dc=com", + email: "LindholJ@fab69171647048c9ab39ecbf968a6353.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden,dc=com", + email: "PapalitN@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden,dc=com", + email: "LattanzM@9e5927de12b74c838a654764d2be5fec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claude Sylvie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Claude Sylvie,ou=Peons,dc=bitwarden,dc=com", + email: "SylvieC@aea6eb544f4d4871a97763e8c506ad64.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", + email: "MalkiewY@afdb909799524b7dbed21ce8a882a129.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden,dc=com", + email: "MiltenbH@dbff573db07a4ff3be645ffc89fde555.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matelda Wrigley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Matelda Wrigley,ou=Product Development,dc=bitwarden,dc=com", + email: "WrigleyM@d823092534664221878b6c81b822deac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emil Kaden,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Emil Kaden,ou=Human Resources,dc=bitwarden,dc=com", + email: "KadenE@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wing Miranda,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wing Miranda,ou=Product Development,dc=bitwarden,dc=com", + email: "MirandaW@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden,dc=com", + email: "KelkarK@d92310a44588497c8705ba02cb8243c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Goldina Kho,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Goldina Kho,ou=Product Development,dc=bitwarden,dc=com", + email: "KhoG@252ca323f23d480494044efd13f580ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sidoney Dugas,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sidoney Dugas,ou=Administrative,dc=bitwarden,dc=com", + email: "DugasS@ef13a1a456c847c69f1a9c739972d1e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alis Tu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alis Tu,ou=Janitorial,dc=bitwarden,dc=com", + email: "TuA@812ac6eec5fc41f6927bb014fa31a1aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nawa Higgins,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nawa Higgins,ou=Payroll,dc=bitwarden,dc=com", + email: "HigginsN@214ae0176652446c8744ad51330039e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nataly McHale,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nataly McHale,ou=Product Development,dc=bitwarden,dc=com", + email: "McHaleN@caa3ffea53f4420d823eecb65d43ca16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden,dc=com", + email: "KuryliaM@1e13847ccc3c4ff8a4232936d21cc7f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabuson Keels,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sabuson Keels,ou=Administrative,dc=bitwarden,dc=com", + email: "KeelsS@7b035316d5664530a5da8e7325de2d50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katrina Caltrider,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Katrina Caltrider,ou=Management,dc=bitwarden,dc=com", + email: "CaltridK@8a1c67e1f59c4e798b777fb9f5200904.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden,dc=com", + email: "ShastryF@4df07dd4fa25468db57d445d7d91ad8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden,dc=com", + email: "GaudonM@1738c63bcf0b4428826fa6ef01719925.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden,dc=com", + email: "JaworT@6f9e5b17880448d1a76afa2847f8b87a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Damon Bakhach,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Damon Bakhach,ou=Peons,dc=bitwarden,dc=com", + email: "BakhachD@30b2d6e7a1b342d0a3a8e7a402acef7a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nevein Paar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nevein Paar,ou=Janitorial,dc=bitwarden,dc=com", + email: "PaarN@1f90981d05564d038a0c312379adcdd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eliezer Mendorf,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eliezer Mendorf,ou=Management,dc=bitwarden,dc=com", + email: "MendorfE@f3ba3b64f9604f3595f8d4c1f4702c4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saree Salva,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Saree Salva,ou=Product Testing,dc=bitwarden,dc=com", + email: "SalvaS@a225cef4c330412cbb98f5dd2e46ebe8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden,dc=com", + email: "GilchriF@7b8abab8f82c407a9106010ea3eb996b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mary Bayno,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mary Bayno,ou=Payroll,dc=bitwarden,dc=com", + email: "BaynoM@8dafa8a4191b4d2aa4e275b60f4da3c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden,dc=com", + email: "SherrerV@bf1cabd600c14df9900d0656b18e2dcb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arnie McMillion,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Arnie McMillion,ou=Administrative,dc=bitwarden,dc=com", + email: "McMilliA@0700c2d0d09f457b9bacf4bb0ffad4cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden,dc=com", + email: "PloofS@a613f2cb592142719b25e5b4ad386bd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salaidh Wery,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Salaidh Wery,ou=Human Resources,dc=bitwarden,dc=com", + email: "WeryS@70258a3d14294772adb31cb152ffdee6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", + email: "HoddinoK@a9638d8de81a4990b97d38b8ec08064b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hq Bracy,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hq Bracy,ou=Product Testing,dc=bitwarden,dc=com", + email: "BracyH@ec2712850890400a82cf449b7931685a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Philippa Sanson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Philippa Sanson,ou=Product Development,dc=bitwarden,dc=com", + email: "SansonP@5487b7f8a209497fbfe4cb0aaa226950.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", + email: "ChirachD@c385ba2c8b694dba82e626dc336023e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karrah Kielstra,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karrah Kielstra,ou=Management,dc=bitwarden,dc=com", + email: "KielstrK@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saloma Brauer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Saloma Brauer,ou=Human Resources,dc=bitwarden,dc=com", + email: "BrauerS@570987c9633d4a6fa09773cb5695f8f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden,dc=com", + email: "BorehamE@e02ff45a3d1d4535aaac64a1cea6a68b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cheuk Mayr,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cheuk Mayr,ou=Management,dc=bitwarden,dc=com", + email: "MayrC@f7890076c6f84028b85e2b19409fa5f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Verene Misslitz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Verene Misslitz,ou=Human Resources,dc=bitwarden,dc=com", + email: "MisslitV@d6cd96cc69964504b58689aca6bae5e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doe Codack,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Doe Codack,ou=Janitorial,dc=bitwarden,dc=com", + email: "CodackD@e0d7cf99a3294f3e89a0d61f128890ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lowell Seufert,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lowell Seufert,ou=Administrative,dc=bitwarden,dc=com", + email: "SeufertL@2701f21728624e23b32e7e4a717079a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willa Unkefer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Willa Unkefer,ou=Peons,dc=bitwarden,dc=com", + email: "UnkeferW@a9c3295ea2f347439f03376e321e4733.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bep Wassel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bep Wassel,ou=Product Testing,dc=bitwarden,dc=com", + email: "WasselB@a40a845ea1cc4e22b719786373ec54be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden,dc=com", + email: "TrittleN@3e7e926538044b62b52b536bb87c0044.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden,dc=com", + email: "PagliarJ@66d6a653ea384626bd4c52723439804a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden,dc=com", + email: "GoupilH@361f4dedfe9a4aada39bf693c8c1bc40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yuri McCullen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Yuri McCullen,ou=Administrative,dc=bitwarden,dc=com", + email: "McCulleY@3fc70e948ed143488b3a65dc900da1f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Genevieve Licata,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Genevieve Licata,ou=Product Testing,dc=bitwarden,dc=com", + email: "LicataG@29c4d99a2e804a9e9c7906925415c847.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden,dc=com", + email: "PokrifcI@f0da7bbf51f0472cbdc26a3d196ad9f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacia Mersch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stacia Mersch,ou=Management,dc=bitwarden,dc=com", + email: "MerschS@ce6ea378c27b45efb4f43990327ef994.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opal Tatemichi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Opal Tatemichi,ou=Administrative,dc=bitwarden,dc=com", + email: "TatemicO@655d3e1ee97a47bbb182f0f8f120b20e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nash Hemphill,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nash Hemphill,ou=Administrative,dc=bitwarden,dc=com", + email: "HemphilN@d457e1580197417888cc4a9c93599471.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amir McKillop,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Amir McKillop,ou=Administrative,dc=bitwarden,dc=com", + email: "McKilloA@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nam Nentwich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nam Nentwich,ou=Product Testing,dc=bitwarden,dc=com", + email: "NentwicN@fa1c0131e1b849f6a92c26986c36bbfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden,dc=com", + email: "LambregS@93250e1458e9462fb7830f342f899a75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arvin Gourley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Arvin Gourley,ou=Product Testing,dc=bitwarden,dc=com", + email: "GourleyA@87d1f4abbb344e5db58980701a5ab736.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amara Wichers,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Amara Wichers,ou=Janitorial,dc=bitwarden,dc=com", + email: "WichersA@6b9e684fa59647e280b75516ef2c9723.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellen Dada,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ellen Dada,ou=Payroll,dc=bitwarden,dc=com", + email: "DadaE@db38fb215fc94ffcb346567c9526cb3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gunilla Katz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gunilla Katz,ou=Administrative,dc=bitwarden,dc=com", + email: "KatzG@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Core Herrick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Core Herrick,ou=Product Testing,dc=bitwarden,dc=com", + email: "HerrickC@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jack Predon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jack Predon,ou=Product Testing,dc=bitwarden,dc=com", + email: "PredonJ@5278466bedb347c588c1bbec6486c3cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marc Pestill,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marc Pestill,ou=Janitorial,dc=bitwarden,dc=com", + email: "PestillM@5437f19907594de59138cb373ea3e4a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eadie Jamensky,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Eadie Jamensky,ou=Peons,dc=bitwarden,dc=com", + email: "JamenskE@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corenda MacLaren,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Corenda MacLaren,ou=Management,dc=bitwarden,dc=com", + email: "MacLareC@ca967230de2944e896318dde6183d882.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duy Starnes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Duy Starnes,ou=Management,dc=bitwarden,dc=com", + email: "StarnesD@b696b2494a974f2a9374a73c6b7ac6f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milan Retallack,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Milan Retallack,ou=Product Testing,dc=bitwarden,dc=com", + email: "RetallaM@bcfffdb8a9854486adad4015dba2f146.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zarella Sauck,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zarella Sauck,ou=Product Testing,dc=bitwarden,dc=com", + email: "SauckZ@f7f2463b85cb4147b2377a9dbe20738b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden,dc=com", + email: "VondersJ@ec9d8600fc36414ebc5e7beb3923c8ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nathalia Testsds,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nathalia Testsds,ou=Administrative,dc=bitwarden,dc=com", + email: "TestsdsN@fc1572b2278f4aeabefffc267baf4272.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florette Nttest,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Florette Nttest,ou=Management,dc=bitwarden,dc=com", + email: "NttestF@777f3fb506bf4a578c7c26472bf8bb1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dari OConnor,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dari OConnor,ou=Janitorial,dc=bitwarden,dc=com", + email: "OConnorD@1a7bf48aaf63422bbc1338aad6a39f92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tracie Jenner,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tracie Jenner,ou=Product Testing,dc=bitwarden,dc=com", + email: "JennerT@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mot Stirling,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mot Stirling,ou=Product Testing,dc=bitwarden,dc=com", + email: "StirlinM@faec862307e2490ab9310236bae87643.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yodha Bui,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yodha Bui,ou=Payroll,dc=bitwarden,dc=com", + email: "BuiY@72665e46d4e14e57b1e63fc562993f3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clifton Murphyking,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Clifton Murphyking,ou=Product Development,dc=bitwarden,dc=com", + email: "MurphykC@2d00b4c5d94943aaab567276a570648e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HonKong Drago,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=HonKong Drago,ou=Product Development,dc=bitwarden,dc=com", + email: "DragoH@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greer Popowicz,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Greer Popowicz,ou=Management,dc=bitwarden,dc=com", + email: "PopowicG@dfaff98f73b34c5995272b067ac045a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Asia Schuette,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Asia Schuette,ou=Product Development,dc=bitwarden,dc=com", + email: "SchuettA@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbette Stotz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Barbette Stotz,ou=Peons,dc=bitwarden,dc=com", + email: "StotzB@cdcc0b3184ae42c79dae92d7659e36db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joyann Lun,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joyann Lun,ou=Peons,dc=bitwarden,dc=com", + email: "LunJ@0efc975bd4a14addb872414f9ef80752.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caz Brunato,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Caz Brunato,ou=Payroll,dc=bitwarden,dc=com", + email: "BrunatoC@d3e5ff3d0e59404589f0f6d57f8f6108.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sorin Dipper,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sorin Dipper,ou=Payroll,dc=bitwarden,dc=com", + email: "DipperS@f87927b66c3847ba8ab3947482034e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bucklin OKarina,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bucklin OKarina,ou=Product Development,dc=bitwarden,dc=com", + email: "OKarinaB@f05231e4b8d74927939d87b64623ee43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tuan Pannell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tuan Pannell,ou=Administrative,dc=bitwarden,dc=com", + email: "PannellT@4afa8343c8fe499bbf69af9cea3fa9e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neda Reece,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Neda Reece,ou=Product Development,dc=bitwarden,dc=com", + email: "ReeceN@57acdd50faae453481ecda7f42cf245e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden,dc=com", + email: "VesterdR@0235e1ba64944a1fa5be17cd97e92630.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Audrey US,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Audrey US,ou=Product Testing,dc=bitwarden,dc=com", + email: "USA@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden,dc=com", + email: "DobbinsE@c33db3660c404fae86e9ef95373e3964.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dona Sudan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dona Sudan,ou=Product Testing,dc=bitwarden,dc=com", + email: "SudanD@43baa07ec4304f3499ca8d6cf3d382fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mahendra Puett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mahendra Puett,ou=Payroll,dc=bitwarden,dc=com", + email: "PuettM@96c638a02d194cffbc921eccd66faa77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evangelia Kusan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Evangelia Kusan,ou=Peons,dc=bitwarden,dc=com", + email: "KusanE@3af5ab8595d4472c82d36aaeac8a3002.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mead Bielan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mead Bielan,ou=Payroll,dc=bitwarden,dc=com", + email: "BielanM@bdc3cbcec8a2447188118ae5b601e009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Damara Bertrand,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Damara Bertrand,ou=Product Testing,dc=bitwarden,dc=com", + email: "BertranD@85c3b55181514b55979bbf8d48a7d2ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarah Kardos,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sarah Kardos,ou=Product Testing,dc=bitwarden,dc=com", + email: "KardosS@4cb9f71c0f8f42fdadb28a744475bd83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odele Mahiger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Odele Mahiger,ou=Peons,dc=bitwarden,dc=com", + email: "MahigerO@7486ea2b2edb4dd99d75d2309106bc15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Salah Poe,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Salah Poe,ou=Peons,dc=bitwarden,dc=com", + email: "PoeS@7c2fe37e93114583be5da4a11c32b590.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Garry Sterescu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Garry Sterescu,ou=Product Testing,dc=bitwarden,dc=com", + email: "SterescG@aa5810a88b5547ee8c19b3a4626c4393.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Takehiko Magnan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Takehiko Magnan,ou=Management,dc=bitwarden,dc=com", + email: "MagnanT@f414860515324b3cad4d00dd4f44cc65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden,dc=com", + email: "KodnarL@b2ae4069e86943268e686f6fe06ee4a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loraine Giese,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Loraine Giese,ou=Administrative,dc=bitwarden,dc=com", + email: "GieseL@07a4bc595e2e42d18a0e9f7b0a858ca8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilya Mackey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ilya Mackey,ou=Management,dc=bitwarden,dc=com", + email: "MackeyI@fa905899850742c4b112661b0ad13f53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clari Wahab,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Clari Wahab,ou=Product Development,dc=bitwarden,dc=com", + email: "WahabC@cf8b4b591c2f4387aae0bb010f18f55b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nichol Etten,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nichol Etten,ou=Janitorial,dc=bitwarden,dc=com", + email: "EttenN@bd63e3f485444f2684cf40e65bc36ff3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clayton Sridaran,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Clayton Sridaran,ou=Payroll,dc=bitwarden,dc=com", + email: "SridaraC@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marijke Ervi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marijke Ervi,ou=Human Resources,dc=bitwarden,dc=com", + email: "ErviM@9b4c46b33b054223bd92a713c0feadad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZagrodnR@5a18e19bdaa8418c835d1d34e33216b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden,dc=com", + email: "McGilliP@8243672e950b4a22b72844e6eab2354c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tally Pirkle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tally Pirkle,ou=Janitorial,dc=bitwarden,dc=com", + email: "PirkleT@1ee541f8be124dfb9bee70e5bd91693b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haste Katcher,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Haste Katcher,ou=Product Development,dc=bitwarden,dc=com", + email: "KatcherH@abeb83f06224438d8248b9254dfa4c9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norstar Lipski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Norstar Lipski,ou=Human Resources,dc=bitwarden,dc=com", + email: "LipskiN@5a511b723eeb45c88fb86e29a330cbd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hedi Konarski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hedi Konarski,ou=Product Testing,dc=bitwarden,dc=com", + email: "KonarskH@6d3517f9c8ba453ba2035cad30e9dfc1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden,dc=com", + email: "CasperS@1ee43d5295b54a68904e38d5e6ea6d47.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kwing DeStefani,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kwing DeStefani,ou=Payroll,dc=bitwarden,dc=com", + email: "DeStefaK@82379443b34e4931be502fdd3a836d0a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helma Ramsden,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Helma Ramsden,ou=Administrative,dc=bitwarden,dc=com", + email: "RamsdenH@e4834dbcf6564d34a2bbc3d31da046a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joanna Aimone,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joanna Aimone,ou=Administrative,dc=bitwarden,dc=com", + email: "AimoneJ@43156b01c6bc494fbc8570d9a5003fc5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leon Epplett,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leon Epplett,ou=Administrative,dc=bitwarden,dc=com", + email: "EpplettL@0ddc496dccad4aaf85619cae07f217f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden,dc=com", + email: "SulatycC@428ea86de0d24cc293fcc0e69c36a51d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobby Frink,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bobby Frink,ou=Janitorial,dc=bitwarden,dc=com", + email: "FrinkB@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rob Milinkovich,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rob Milinkovich,ou=Payroll,dc=bitwarden,dc=com", + email: "MilinkoR@359efdad39cc40ef8440421a8807b6c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lexie Thorsen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lexie Thorsen,ou=Management,dc=bitwarden,dc=com", + email: "ThorsenL@08761145d0ee492388590ebc755ffc11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden,dc=com", + email: "HickersL@bdc7052979ce43f2af94fc8fdd8de1f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlene Grignon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carlene Grignon,ou=Janitorial,dc=bitwarden,dc=com", + email: "GrignonC@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Russ Battersby,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Russ Battersby,ou=Janitorial,dc=bitwarden,dc=com", + email: "BattersR@ed1575430eeb4652bbcb86d12841c10c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrew Thifault,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Andrew Thifault,ou=Product Development,dc=bitwarden,dc=com", + email: "ThifaulA@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden,dc=com", + email: "WestgarJ@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celinda Krisa,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Celinda Krisa,ou=Administrative,dc=bitwarden,dc=com", + email: "KrisaC@87ac1189e97646f890363efe4db63ec0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fawnia Starks,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fawnia Starks,ou=Management,dc=bitwarden,dc=com", + email: "StarksF@5d9e4a3f454c470596eb4a19b0aabca9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Prissie Schieber,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Prissie Schieber,ou=Peons,dc=bitwarden,dc=com", + email: "SchiebeP@782d7744464b4c018117147752b3b8b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyn Yuhn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lyn Yuhn,ou=Administrative,dc=bitwarden,dc=com", + email: "YuhnL@45e7698e90b843bf96764adac8813e44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joellyn Montelli,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joellyn Montelli,ou=Administrative,dc=bitwarden,dc=com", + email: "MontellJ@fd7e4056685f4c789c5948839975ec7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanny Fenton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vanny Fenton,ou=Product Development,dc=bitwarden,dc=com", + email: "FentonV@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosabella Mathis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rosabella Mathis,ou=Peons,dc=bitwarden,dc=com", + email: "MathisR@f04933e85545445793e3a5773ee7f65d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celestine Demir,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Celestine Demir,ou=Payroll,dc=bitwarden,dc=com", + email: "DemirC@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charlena Mirande,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Charlena Mirande,ou=Janitorial,dc=bitwarden,dc=com", + email: "MirandeC@15447e827d294576b427fe60b8e58e62.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bennett Marting,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bennett Marting,ou=Peons,dc=bitwarden,dc=com", + email: "MartingB@7c32fb701ef74a0cad22be6cdec84337.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden,dc=com", + email: "KellandP@9de1e5ab0e97403bbd2b1cd8ab5549b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Analiese Steene,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Analiese Steene,ou=Payroll,dc=bitwarden,dc=com", + email: "SteeneA@51bf8c07247a47a89482a395ed341297.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janine Stirrett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Janine Stirrett,ou=Payroll,dc=bitwarden,dc=com", + email: "StirretJ@25d25ecced754b87ad2b47ca359ce5ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wiele Rowan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wiele Rowan,ou=Janitorial,dc=bitwarden,dc=com", + email: "RowanW@f977f0ba237149f58238530f1adcdac1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maia Reva,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maia Reva,ou=Management,dc=bitwarden,dc=com", + email: "RevaM@3398a7bd821e4193ae8f310f359e79ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tian Beeby,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tian Beeby,ou=Human Resources,dc=bitwarden,dc=com", + email: "BeebyT@ae1c8a23e1dd413a9249a93f83a32cff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nazib Schembri,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nazib Schembri,ou=Administrative,dc=bitwarden,dc=com", + email: "SchembrN@0adc67407b764a6d9b4b77d7fd10db1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden,dc=com", + email: "LetchwoL@472c805b68f843ad9fd85cb16521749b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cammy Shumate,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cammy Shumate,ou=Payroll,dc=bitwarden,dc=com", + email: "ShumateC@632f2740a30b4299bdecbe1293c6b1e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rianon Schick,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rianon Schick,ou=Janitorial,dc=bitwarden,dc=com", + email: "SchickR@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Viole Areu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Viole Areu,ou=Product Development,dc=bitwarden,dc=com", + email: "AreuV@3f7d610415d84ef2bdb619b20514a382.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigitta Piper,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Brigitta Piper,ou=Product Development,dc=bitwarden,dc=com", + email: "PiperB@0877837d55bc4d3c8c1cf86b1af30616.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melly Kelkar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melly Kelkar,ou=Management,dc=bitwarden,dc=com", + email: "KelkarM@4fd5724ffe8c4be3a7330bd9ee58c54a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maritsa McCain,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maritsa McCain,ou=Product Development,dc=bitwarden,dc=com", + email: "McCainM@753b48fb7ffe43dd87736153647baa4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melissa Griffioen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melissa Griffioen,ou=Management,dc=bitwarden,dc=com", + email: "GriffioM@952de29a7bec4822af302264a85723ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tak Sebeh,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tak Sebeh,ou=Peons,dc=bitwarden,dc=com", + email: "SebehT@e4f3fd4bada6471dba76dc7596ae6743.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vittorio Muradia,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vittorio Muradia,ou=Payroll,dc=bitwarden,dc=com", + email: "MuradiaV@4bb48f2b9b4243a6be88846d63865ab7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jonell McElligott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jonell McElligott,ou=Human Resources,dc=bitwarden,dc=com", + email: "McElligJ@c483d98d8b2f4370bac517e24e1170a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChaintrA@8ff18bb869a54da6b6cdd5f2a63f2885.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jey Pau,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jey Pau,ou=Administrative,dc=bitwarden,dc=com", + email: "PauJ@38576f18c78f484896ae3f1bba73101a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden,dc=com", + email: "SyssuppE@5e676fae9cd742a087297df905b8c5bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jillane Metz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jillane Metz,ou=Human Resources,dc=bitwarden,dc=com", + email: "MetzJ@6d452215608049afb03f1d153c8be1b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parveen Burnage,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Parveen Burnage,ou=Human Resources,dc=bitwarden,dc=com", + email: "BurnageP@38d063b8eef24bab8cf2febf33fcac66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martine Gilliard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Martine Gilliard,ou=Human Resources,dc=bitwarden,dc=com", + email: "GilliarM@09314ab289d344eeaedcd157c5350d28.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden,dc=com", + email: "YarbrouE@6a380be30539453291140420cbbfde32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaji Langelier,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shaji Langelier,ou=Human Resources,dc=bitwarden,dc=com", + email: "LangeliS@abfb3b05eb524c3a9045af2f3c7592da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manny Nolan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Manny Nolan,ou=Administrative,dc=bitwarden,dc=com", + email: "NolanM@a5b16f07cc5f4d548df233a10f2abd0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vrinda Keuning,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vrinda Keuning,ou=Product Development,dc=bitwarden,dc=com", + email: "KeuningV@a3d3bf444e8449f58c24d388c9e4253b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden,dc=com", + email: "LenziF@a9e04d8378ea40e5a826038ff40e6cd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aile StOnge,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aile StOnge,ou=Management,dc=bitwarden,dc=com", + email: "StOngeA@6c33f97ba18845049fcf33d5c689185e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden,dc=com", + email: "LipscomM@a3cde3b2f5de4fe5ac11c48bb6df28f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helge Bowyer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Helge Bowyer,ou=Peons,dc=bitwarden,dc=com", + email: "BowyerH@479b3e4b55a5494fbabf2926242184e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norbert Missailidis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Norbert Missailidis,ou=Payroll,dc=bitwarden,dc=com", + email: "MissailN@f069d8208db84a5496e2d819694425d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden,dc=com", + email: "ArmolavB@a6fcfac6f2c541af951392eeebba2d17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Letizia Quon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Letizia Quon,ou=Janitorial,dc=bitwarden,dc=com", + email: "QuonL@a202d5209c7047ff8a841ac785c909b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haily Lamothe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Haily Lamothe,ou=Product Testing,dc=bitwarden,dc=com", + email: "LamotheH@0d16cc430a2c4388b233d89e5b36b645.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alie Staats,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alie Staats,ou=Management,dc=bitwarden,dc=com", + email: "StaatsA@8746c1b198ed48df839714090396dae1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden,dc=com", + email: "BourgaiM@355248f7071d4e58beb9bf6f2b8c9ee2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corry Brewer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Corry Brewer,ou=Product Development,dc=bitwarden,dc=com", + email: "BrewerC@01034db83e3b44ec835b5255948e4e0f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanja Godwin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hanja Godwin,ou=Peons,dc=bitwarden,dc=com", + email: "GodwinH@c1864662acf34812bb78c7f7029d15f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brianna Hien,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Brianna Hien,ou=Product Development,dc=bitwarden,dc=com", + email: "HienB@2b36624d30a34f908a5fc12c83ce72f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evy Raing,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Evy Raing,ou=Janitorial,dc=bitwarden,dc=com", + email: "RaingE@7cfd5c325b0c431596f4ef71471b42ba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rebekah Siegel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rebekah Siegel,ou=Administrative,dc=bitwarden,dc=com", + email: "SiegelR@63e24bc173914f0f865e0c9dee2dcfe5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoucourJ@9a209519348642769473b09231da3137.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brekel Silverstone,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Brekel Silverstone,ou=Administrative,dc=bitwarden,dc=com", + email: "SilversB@5d869bea03ed495786efc921360e43b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harm Mehta,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Harm Mehta,ou=Product Development,dc=bitwarden,dc=com", + email: "MehtaH@ad4b259f1800408a898dff512e0a094e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden,dc=com", + email: "YoshiokQ@4cf5733fc93742b8881de63253f58457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jae Caudill,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jae Caudill,ou=Payroll,dc=bitwarden,dc=com", + email: "CaudillJ@732895781258430aa850734a965ff9eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilde Hibberd,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hilde Hibberd,ou=Product Development,dc=bitwarden,dc=com", + email: "HibberdH@42be868e79934b2781b6098b8536a633.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tres Nyland,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tres Nyland,ou=Management,dc=bitwarden,dc=com", + email: "NylandT@37ac065458a84fc994659f0d86c970d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettye Moynihan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bettye Moynihan,ou=Peons,dc=bitwarden,dc=com", + email: "MoynihaB@0cee059feb2f45d0a3e77b9cb46c95e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShimandL@9fa42e4f0ec04b66b2fd5c843402ebd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden,dc=com", + email: "KellumN@e0035c2cc66e449187d7e04da48e8b5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shahriar Trull,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shahriar Trull,ou=Peons,dc=bitwarden,dc=com", + email: "TrullS@e3c084d5a2b44c959d053319884f8497.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden,dc=com", + email: "RabagliP@87cf37472b3e4029becaa8ad3f98dbac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edyta Hargadon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Edyta Hargadon,ou=Administrative,dc=bitwarden,dc=com", + email: "HargadoE@4155bdebff5941d48d470ec7ba36ba81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marris Hameed,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marris Hameed,ou=Product Development,dc=bitwarden,dc=com", + email: "HameedM@4c53d8b9e28c4cd28a44f87cb7441dcc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurelia Raynard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aurelia Raynard,ou=Management,dc=bitwarden,dc=com", + email: "RaynardA@d787c7f385a34c7297fe344b6f5b44de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rivi Ludwig,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rivi Ludwig,ou=Management,dc=bitwarden,dc=com", + email: "LudwigR@93dd838ca8d949aca268d37f8c816502.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isadora Vaters,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Isadora Vaters,ou=Payroll,dc=bitwarden,dc=com", + email: "VatersI@f6662f434fdd4fd4be948e8e6001fcc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elana Moy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elana Moy,ou=Administrative,dc=bitwarden,dc=com", + email: "MoyE@d2a22d407c40446c9ae2afe4d17eb26f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helaine Salamon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Helaine Salamon,ou=Product Development,dc=bitwarden,dc=com", + email: "SalamonH@48f40b9c61c1423ab7f4a12dacd08cb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden,dc=com", + email: "LesperaS@386f61091b6f44b2afca80c5832c14c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Briney Smithson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Briney Smithson,ou=Janitorial,dc=bitwarden,dc=com", + email: "SmithsoB@7f9fd637b37c466c8750e6820ea2a8fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selva Hillidge,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Selva Hillidge,ou=Payroll,dc=bitwarden,dc=com", + email: "HillidgS@7aa1caf88bc749828056470f21af9f2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden,dc=com", + email: "KaczmarB@6b3525e677274247ac9aa1be4373f97d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parks Pavitt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Parks Pavitt,ou=Payroll,dc=bitwarden,dc=com", + email: "PavittP@3956b0c83ae444e7940e65fc8c4220d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Design Pepler,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Design Pepler,ou=Product Development,dc=bitwarden,dc=com", + email: "PeplerD@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden,dc=com", + email: "McLachlB@e89ca6a0c26a42d387c16cb15d267c2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shahram Dpierre,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shahram Dpierre,ou=Peons,dc=bitwarden,dc=com", + email: "DpierreS@fb2a9835511b44fba3bde94e482a2f71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sylvain Dans,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sylvain Dans,ou=Peons,dc=bitwarden,dc=com", + email: "DansS@53364c09d04c41208741c1b0a7953a20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phuoc Vu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Phuoc Vu,ou=Administrative,dc=bitwarden,dc=com", + email: "VuP@4bb54633dfd2486b94bd9f9680212641.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candide Elhamahmy,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Candide Elhamahmy,ou=Management,dc=bitwarden,dc=com", + email: "ElhamahC@dc7bbfc76a234dc7b7d174cbbe395c0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarine Hopley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sarine Hopley,ou=Administrative,dc=bitwarden,dc=com", + email: "HopleyS@9ce0b7ad2b3b48a6b3648a683329edc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Velma Brasset,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Velma Brasset,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrassetV@83b93a170743455c988185ea6212d71d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clemmie Brower,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Clemmie Brower,ou=Product Development,dc=bitwarden,dc=com", + email: "BrowerC@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drudy Badger,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Drudy Badger,ou=Product Development,dc=bitwarden,dc=com", + email: "BadgerD@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden,dc=com", + email: "JedrysiO@2ef3a4093f014684b569f775d65baa2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kimmy Nagaraj,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kimmy Nagaraj,ou=Management,dc=bitwarden,dc=com", + email: "NagarajK@01636af448174d9e81627003646ae048.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden,dc=com", + email: "MasciarS@64472d4bb2754862940627d944b8828a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Torrie Lai,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Torrie Lai,ou=Janitorial,dc=bitwarden,dc=com", + email: "LaiT@52e0e9f6cfbd4d388e2c16ea365b21a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryon Bannister,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bryon Bannister,ou=Administrative,dc=bitwarden,dc=com", + email: "BannistB@6636a4865c34403b8e78c60d39c88859.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden,dc=com", + email: "NizamudK@5b2fc222b3cc4e338ab7a0b7bd08ce8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melford Charter,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Melford Charter,ou=Administrative,dc=bitwarden,dc=com", + email: "CharterM@7c92d6dfba144f9587593ce6eeb4024f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meriel Tota,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Meriel Tota,ou=Janitorial,dc=bitwarden,dc=com", + email: "TotaM@f190d7cfec0941b2829b0757aff4e20f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden,dc=com", + email: "StarkebA@125db6eb897d4dc09e52aa3ed3ba2ff6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden,dc=com", + email: "EskildsB@c33b0066e4a94f2895f1ce062cf2a5b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrel Samora,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Darrel Samora,ou=Management,dc=bitwarden,dc=com", + email: "SamoraD@8a049b49f80d420a99b91944b3a9e703.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gabi Fares,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gabi Fares,ou=Peons,dc=bitwarden,dc=com", + email: "FaresG@18205705f4aa44e78c4d1ab11d74972d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bao Byrd,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bao Byrd,ou=Management,dc=bitwarden,dc=com", + email: "ByrdB@261b23ab87dc475a83d11a0978547d13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden,dc=com", + email: "EhningeT@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilf Rodenfels,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Wilf Rodenfels,ou=Peons,dc=bitwarden,dc=com", + email: "RodenfeW@a0afbb1124764d928b9fba2f48eaa17d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeri Gupton,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jeri Gupton,ou=Product Development,dc=bitwarden,dc=com", + email: "GuptonJ@0849cc8e014d4858afd4576e05a417c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Didar Brooksbank,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Didar Brooksbank,ou=Payroll,dc=bitwarden,dc=com", + email: "BrooksbD@7448491b00a74a3e95be2c2010be9a72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden,dc=com", + email: "GrigsbyA@3bfc3de402e042a394d461b86f93128b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathe Malone,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cathe Malone,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaloneC@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evey Haddad,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Evey Haddad,ou=Product Testing,dc=bitwarden,dc=com", + email: "HaddadE@a8c73be9cd69486db83d92f072753b6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginette Smoot,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ginette Smoot,ou=Payroll,dc=bitwarden,dc=com", + email: "SmootG@fdf824816adf41dbba98ed5c326be597.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorita Heffner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dorita Heffner,ou=Product Development,dc=bitwarden,dc=com", + email: "HeffnerD@ea33a214953b4a6b925d5d0efa8ea38e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden,dc=com", + email: "MedefesM@35b79d47268c45459bca63c56a16e1e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reind Mufti,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Reind Mufti,ou=Management,dc=bitwarden,dc=com", + email: "MuftiR@f96730e4fa6b40f5ba7deeeca51513e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolynn Dikens,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carolynn Dikens,ou=Payroll,dc=bitwarden,dc=com", + email: "DikensC@a69feaacad634790a69fdf1db6b0a8d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden,dc=com", + email: "ParmentM@c6381227edb84dfc90689a9cc3080334.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lurleen Eberle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lurleen Eberle,ou=Product Development,dc=bitwarden,dc=com", + email: "EberleL@2fa76c066c6743bba9db4e894f651e69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tandy Fssup,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tandy Fssup,ou=Peons,dc=bitwarden,dc=com", + email: "FssupT@b69339dab59940869a3e5a49d58c958e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Datas Simmonds,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Datas Simmonds,ou=Product Development,dc=bitwarden,dc=com", + email: "SimmondD@63a11e75c405416bb483a040d9d4e6c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darline Frankenberger,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Darline Frankenberger,ou=Management,dc=bitwarden,dc=com", + email: "FrankenD@b5537025c24b4ad290ca22694ec8fb06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merry Cadtools,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Merry Cadtools,ou=Payroll,dc=bitwarden,dc=com", + email: "CadtoolM@534c35ac167944c782718311b9e185bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chabane Hornung,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chabane Hornung,ou=Peons,dc=bitwarden,dc=com", + email: "HornungC@b5a44095f2374197a4ff741b9417f6b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden,dc=com", + email: "YogeswaS@f8a322034d5e45cc8676b5e9fe5f5d0f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Colm Yassa,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Colm Yassa,ou=Peons,dc=bitwarden,dc=com", + email: "YassaC@b968f655b96e4ab58fcc2e120f71a7b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jillayne Cobb,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jillayne Cobb,ou=Peons,dc=bitwarden,dc=com", + email: "CobbJ@3009937061fa44e08033cd2d77480708.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruby Brotherton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ruby Brotherton,ou=Peons,dc=bitwarden,dc=com", + email: "BrotherR@878c3f08cca44fc1891338a97a6ec462.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marjie Geyer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marjie Geyer,ou=Product Development,dc=bitwarden,dc=com", + email: "GeyerM@25d2cd968a404f8ab3144ef7402e2e12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=McGee Schreiber,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=McGee Schreiber,ou=Peons,dc=bitwarden,dc=com", + email: "SchreibM@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrna Befanis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Myrna Befanis,ou=Product Testing,dc=bitwarden,dc=com", + email: "BefanisM@6aceddcd02a24d54bf8652b3d2b2d14f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden,dc=com", + email: "GerlinsR@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurine StJames,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maurine StJames,ou=Payroll,dc=bitwarden,dc=com", + email: "StJamesM@61f214f1d8524b3087f5851880215a12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ebony DuBerger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ebony DuBerger,ou=Administrative,dc=bitwarden,dc=com", + email: "DuBergeE@91cbd6d172d049aa810e0a17e3a01178.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donnette Leighton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Donnette Leighton,ou=Management,dc=bitwarden,dc=com", + email: "LeightoD@ecd15df669db43f58dc8c85e172bc379.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daryl Broca,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Daryl Broca,ou=Administrative,dc=bitwarden,dc=com", + email: "BrocaD@777f3fb506bf4a578c7c26472bf8bb1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristabel Orth,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cristabel Orth,ou=Peons,dc=bitwarden,dc=com", + email: "OrthC@e37545ccfd5e4e4281ccd855336fcf03.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constantia Lundy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Constantia Lundy,ou=Payroll,dc=bitwarden,dc=com", + email: "LundyC@8ad57fa5a0014d7d86bb326fd3c22de8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden,dc=com", + email: "EhrlichM@0ffbff9053044f38bd1b7473f0a9a2e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shashi Amini,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shashi Amini,ou=Janitorial,dc=bitwarden,dc=com", + email: "AminiS@b23fe60aaafa49a2908f5eec32556f6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden,dc=com", + email: "LaferriS@20e4624ef958401cb7727678bb609188.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leola Richard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leola Richard,ou=Management,dc=bitwarden,dc=com", + email: "RichardL@bc55479898d74c7080b7e1e95bbf0012.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jai Pascas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jai Pascas,ou=Human Resources,dc=bitwarden,dc=com", + email: "PascasJ@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petronille Receiving,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Petronille Receiving,ou=Product Development,dc=bitwarden,dc=com", + email: "ReceiviP@0849cc8e014d4858afd4576e05a417c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sidonia Badza,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sidonia Badza,ou=Administrative,dc=bitwarden,dc=com", + email: "BadzaS@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden,dc=com", + email: "MoroczH@50bf451998584438a3048a19956d7120.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Career Culkin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Career Culkin,ou=Product Development,dc=bitwarden,dc=com", + email: "CulkinC@4a8d7287d7f44feeb52346f4896c7bad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden,dc=com", + email: "SommerdJ@c34ff4c9cd024e7eb996d78abb689848.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aubrey Mina,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aubrey Mina,ou=Peons,dc=bitwarden,dc=com", + email: "MinaA@5ce7099e829941498f32f6630dda9440.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilhelmus Mandel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wilhelmus Mandel,ou=Management,dc=bitwarden,dc=com", + email: "MandelW@ba60a08b258046f98633fd3c737e4f83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anya Kantor,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Anya Kantor,ou=Product Testing,dc=bitwarden,dc=com", + email: "KantorA@281ce2096ed0496b9bf2ff2a6d46ed5b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=National MacCarthy,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=National MacCarthy,ou=Product Development,dc=bitwarden,dc=com", + email: "MacCartN@ccc8e04b90324a8e82f8a7a8473e9c5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nissie Heile,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nissie Heile,ou=Management,dc=bitwarden,dc=com", + email: "HeileN@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pac Popowycz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pac Popowycz,ou=Product Testing,dc=bitwarden,dc=com", + email: "PopowycP@1b72730ac3814cefac0b769b1824f8f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blancha Cousineau,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Blancha Cousineau,ou=Peons,dc=bitwarden,dc=com", + email: "CousineB@18892b15c58d47f6840bb6c23b52349b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harper McWaters,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Harper McWaters,ou=Janitorial,dc=bitwarden,dc=com", + email: "McWaterH@b696b2494a974f2a9374a73c6b7ac6f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adorne Bejar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Adorne Bejar,ou=Product Development,dc=bitwarden,dc=com", + email: "BejarA@a58fbd0af59142b59fca318bb0934c87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden,dc=com", + email: "WetzelT@56764f80ffb24969b868fd703a8c92ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenee Marasco,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lenee Marasco,ou=Human Resources,dc=bitwarden,dc=com", + email: "MarascoL@ff1a7b4761be4273abaf2ebcbaf85113.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reggi Hor,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Reggi Hor,ou=Product Testing,dc=bitwarden,dc=com", + email: "HorR@9fc16f31309a4e5489f1a046e558b353.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andres Williford,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Andres Williford,ou=Management,dc=bitwarden,dc=com", + email: "WillifoA@b089600d85cc409eb4f207ab6f27e389.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kwan Devault,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kwan Devault,ou=Human Resources,dc=bitwarden,dc=com", + email: "DevaultK@5b3c54f47fc64ffbbe62b2e499081d43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden,dc=com", + email: "LammS@3ea21438af3c4a4f8255617efb256c4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden,dc=com", + email: "AbdollaD@5c6902554d684605823ee60bd0935275.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lionel Reinlie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lionel Reinlie,ou=Payroll,dc=bitwarden,dc=com", + email: "ReinlieL@3385d9447e994f049c4412ecf2da5e48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gunter Glidewell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gunter Glidewell,ou=Administrative,dc=bitwarden,dc=com", + email: "GlideweG@83797aadf07c4129b11845f5bb05984e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nick Brewer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nick Brewer,ou=Peons,dc=bitwarden,dc=com", + email: "BrewerN@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Josefa Kilburn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Josefa Kilburn,ou=Management,dc=bitwarden,dc=com", + email: "KilburnJ@bdf4207a20c5486ca943568e769c8344.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cindy Oestreich,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cindy Oestreich,ou=Product Development,dc=bitwarden,dc=com", + email: "OestreiC@a69557e189c747b59333670f3ebf3a1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pia Turchan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pia Turchan,ou=Human Resources,dc=bitwarden,dc=com", + email: "TurchanP@9b78793ee7914009976b9c8dd8324a1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Louisa Ryall,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Louisa Ryall,ou=Product Testing,dc=bitwarden,dc=com", + email: "RyallL@32d0e3075fb342a38b8c9b42581b81f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherry Tennant,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cherry Tennant,ou=Human Resources,dc=bitwarden,dc=com", + email: "TennantC@f81c7db8a94146de916a4b35349336d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paul Rafael,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Paul Rafael,ou=Management,dc=bitwarden,dc=com", + email: "RafaelP@add5220cb5784db4938f41ee78181d1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glornia Cicchino,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Glornia Cicchino,ou=Product Development,dc=bitwarden,dc=com", + email: "CicchinG@ced08fdb486e456c87f692a0e9ccf058.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annalee Terminals,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Annalee Terminals,ou=Human Resources,dc=bitwarden,dc=com", + email: "TerminaA@dc111e187e0b4ac39980dc1afb0f449f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden,dc=com", + email: "DovydaiG@87d497e060994207b70ef7bd8c3d6175.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dave Salehi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dave Salehi,ou=Peons,dc=bitwarden,dc=com", + email: "SalehiD@c59c83b24c3c472dbb65b804095a3c79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wendy Slattery,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wendy Slattery,ou=Human Resources,dc=bitwarden,dc=com", + email: "SlatterW@b24cb4ce9a1b43e380cc986b9b45bd25.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Previn Hirayama,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Previn Hirayama,ou=Payroll,dc=bitwarden,dc=com", + email: "HirayamP@14d2a8b145214481bc45fd027c9d1e6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evvy Barsony,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Evvy Barsony,ou=Administrative,dc=bitwarden,dc=com", + email: "BarsonyE@53855167a537436d8e1bbb93f42697aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hollie Lawton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hollie Lawton,ou=Management,dc=bitwarden,dc=com", + email: "LawtonH@eec4bbb8da77429f893524017458e5d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dacie Doi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dacie Doi,ou=Management,dc=bitwarden,dc=com", + email: "DoiD@3214ac0354a44d4785a5580affcc3528.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden,dc=com", + email: "DadkhahW@54ce292eb157498aac7b1683764ec867.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden,dc=com", + email: "CloutieP@86c55960d45747ecb5afd7997d576a89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hall Twitty,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hall Twitty,ou=Peons,dc=bitwarden,dc=com", + email: "TwittyH@fc1da3ccee8c40f8af1318302a847e49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden,dc=com", + email: "DikaitiJ@0241a0d3cbf64f09a3380b82cf315d15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tien Ferraro,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tien Ferraro,ou=Peons,dc=bitwarden,dc=com", + email: "FerraroT@fe6a97f91a3b481692abba6662452ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorine Metrailer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lorine Metrailer,ou=Administrative,dc=bitwarden,dc=com", + email: "MetrailL@6cc4c5dff9d04b5e89ad32c2b33d43af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heidie ElAm,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Heidie ElAm,ou=Human Resources,dc=bitwarden,dc=com", + email: "ElAmH@4e73c97266f94a4089aa37d8a943ffaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nyssa Australia,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nyssa Australia,ou=Janitorial,dc=bitwarden,dc=com", + email: "AustralN@95c0fe4d7e2a47d3939748538bd3c000.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melford Ashdown,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melford Ashdown,ou=Janitorial,dc=bitwarden,dc=com", + email: "AshdownM@462cea286952488090839d7ab4d20e61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rowe McHarg,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rowe McHarg,ou=Payroll,dc=bitwarden,dc=com", + email: "McHargR@ed96afcd8b954b4d85dba951a21a6324.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden,dc=com", + email: "VesterdS@59970149bbc643e4bc31ce5dfa47996a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rasla ODoherty,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rasla ODoherty,ou=Management,dc=bitwarden,dc=com", + email: "ODohertR@570b2a8b45094bdbb019684431d6e2af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felicle Ramondt,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Felicle Ramondt,ou=Administrative,dc=bitwarden,dc=com", + email: "RamondtF@4112fa5751f947c9a6ebd8e6086a4cce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jasver Jurman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jasver Jurman,ou=Human Resources,dc=bitwarden,dc=com", + email: "JurmanJ@1286c9db4c6f4ed39232709079768da4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden,dc=com", + email: "HassanR@9b1dcdebf2c241bf975e03d6ac9197e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anderea Albritton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anderea Albritton,ou=Janitorial,dc=bitwarden,dc=com", + email: "AlbrittA@a34bb7d1546c462cb51396798bb22845.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alana Melkild,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alana Melkild,ou=Management,dc=bitwarden,dc=com", + email: "MelkildA@b163a54ef1ca4503b096b531dfca5c9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden,dc=com", + email: "KellandV@4e208cde3548420a94b59f72665403bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orie Kellogg,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Orie Kellogg,ou=Janitorial,dc=bitwarden,dc=com", + email: "KelloggO@34a2a20900494afa86a3d5f8d34be87e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liva McMasters,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Liva McMasters,ou=Human Resources,dc=bitwarden,dc=com", + email: "McMasteL@f4d0af946ec24ea988e36de4a253dd77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden,dc=com", + email: "DucharmO@01e99ef3b2924e47abd9e4716ec0ba6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kiah Chandan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kiah Chandan,ou=Peons,dc=bitwarden,dc=com", + email: "ChandanK@01af6203536c42ec8e9ddfa7b0066fb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vipi Bladon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vipi Bladon,ou=Administrative,dc=bitwarden,dc=com", + email: "BladonV@5751350c44374a93b1d462c83d0b1fe8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dan Yost,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dan Yost,ou=Janitorial,dc=bitwarden,dc=com", + email: "YostD@641b3c32e986403cb54e8416d6ccf047.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivo Dziawa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ivo Dziawa,ou=Payroll,dc=bitwarden,dc=com", + email: "DziawaI@9b030c1d6ce3438f956ad1da5fffc998.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vahid Routing,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vahid Routing,ou=Administrative,dc=bitwarden,dc=com", + email: "RoutingV@687d9f112b0946d8aa0c6a6aac0b1c20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden,dc=com", + email: "DyrdahlP@f51aa7b4b6ef481ab8bd87058413fd8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marianna Wray,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marianna Wray,ou=Administrative,dc=bitwarden,dc=com", + email: "WrayM@e1267c37955c45cfa6ee4879d9455618.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sunning Spence,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sunning Spence,ou=Management,dc=bitwarden,dc=com", + email: "SpenceS@a5390b0a929f4049987256511e1011a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cart Pyron,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cart Pyron,ou=Administrative,dc=bitwarden,dc=com", + email: "PyronC@5d9a493aeb18453b882b99b919bc8aa9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nashville Venier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nashville Venier,ou=Janitorial,dc=bitwarden,dc=com", + email: "VenierN@b37b8170c2a14be99b8672023148d924.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glenn Salem,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Glenn Salem,ou=Management,dc=bitwarden,dc=com", + email: "SalemG@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raman Smolin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Raman Smolin,ou=Product Development,dc=bitwarden,dc=com", + email: "SmolinR@f4cac90289b44dc28b9de765747f5a7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marin Mokbel,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marin Mokbel,ou=Payroll,dc=bitwarden,dc=com", + email: "MokbelM@c54cbe69dcd34a96b7a131338d06781d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rici Plasse,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rici Plasse,ou=Payroll,dc=bitwarden,dc=com", + email: "PlasseR@07b1787368a34e789ce994f0c32f4345.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anup Klammer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anup Klammer,ou=Janitorial,dc=bitwarden,dc=com", + email: "KlammerA@af3378adce2b421eb0f1e5ee23a2a017.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden,dc=com", + email: "ChakrabB@6ae361d0671f4e45b2dca3f489ab2ec1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninon Starr,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ninon Starr,ou=Peons,dc=bitwarden,dc=com", + email: "StarrN@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atul Orth,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Atul Orth,ou=Product Development,dc=bitwarden,dc=com", + email: "OrthA@5377b23229dc41399d1b48044598198c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tung Lazar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tung Lazar,ou=Management,dc=bitwarden,dc=com", + email: "LazarT@cff08fbfbb494d1cac1d02cef13ff5e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Conchita Raley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Conchita Raley,ou=Janitorial,dc=bitwarden,dc=com", + email: "RaleyC@ad261b7bb83c4b9b8809f461bc78f37f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steen Meyer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Steen Meyer,ou=Administrative,dc=bitwarden,dc=com", + email: "MeyerS@bf91192220a74764b99bec46e53e3350.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ingunna Zollman,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ingunna Zollman,ou=Administrative,dc=bitwarden,dc=com", + email: "ZollmanI@b3ee3a7577c349aeba9b99d9cc89baee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden,dc=com", + email: "MuttaqiW@1957e383cee049d8b2f276495d647fb4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winnie Goss,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Winnie Goss,ou=Payroll,dc=bitwarden,dc=com", + email: "GossW@c37d3b12215747d99472a7fb366acdb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dori Myatt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dori Myatt,ou=Product Testing,dc=bitwarden,dc=com", + email: "MyattD@02379e00c72e43ada0ec5298f3ee9106.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beb Jammu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beb Jammu,ou=Administrative,dc=bitwarden,dc=com", + email: "JammuB@cc3b9e94565c4600bc410c93d2d0b1da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reno Raines,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Reno Raines,ou=Payroll,dc=bitwarden,dc=com", + email: "RainesR@61d349f36f74474aadc4b14dd96074dd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delilah Praeuner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Delilah Praeuner,ou=Peons,dc=bitwarden,dc=com", + email: "PraeuneD@9f2b0ca340a44c1da690b6d62d65daf8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden,dc=com", + email: "BigleyM@dcfeb1e34dfd4d498a4c69e47113773f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden,dc=com", + email: "BykowyA@f6fe529f06ac433fab898dee2f04e9dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christiane Wanner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Christiane Wanner,ou=Product Development,dc=bitwarden,dc=com", + email: "WannerC@ed6e0f8b1a3846db9530b7f4f3171825.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sada Polulack,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sada Polulack,ou=Payroll,dc=bitwarden,dc=com", + email: "PolulacS@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden,dc=com", + email: "OshiroD@1cd5de40e5ac4cd695f9ff5aee94931d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shauna Caputo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shauna Caputo,ou=Janitorial,dc=bitwarden,dc=com", + email: "CaputoS@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden,dc=com", + email: "SuwalaO@2a14a90e7c884ce1a37209a563b3ce10.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hrdata Placido,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hrdata Placido,ou=Product Development,dc=bitwarden,dc=com", + email: "PlacidoH@3264b8974bc14e47aff69928751d5552.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belvia Raissian,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Belvia Raissian,ou=Human Resources,dc=bitwarden,dc=com", + email: "RaissiaB@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odette Swiatkowski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Odette Swiatkowski,ou=Management,dc=bitwarden,dc=com", + email: "SwiatkoO@9203e13698914816bdcd0ae89556ac90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Richelle Thorne,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Richelle Thorne,ou=Management,dc=bitwarden,dc=com", + email: "ThorneR@478d49ea22024f81bf0c3655b7d4984f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacques Bhatia,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jacques Bhatia,ou=Peons,dc=bitwarden,dc=com", + email: "BhatiaJ@5aefcf13b98144a482e597727f2900df.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden,dc=com", + email: "HyjekW@04b4f27ec2ac43be97552612edca5a77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Houman Levere,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Houman Levere,ou=Janitorial,dc=bitwarden,dc=com", + email: "LevereH@7d7c04d767f0473782636d718b2a2aee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden,dc=com", + email: "ShayanpH@134e9c1116de4754a55f3f221bd47dca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doloritas Adams,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Doloritas Adams,ou=Management,dc=bitwarden,dc=com", + email: "AdamsD@d6de9e07b63b482e895c0d1074306ac5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Starr Selent,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Starr Selent,ou=Human Resources,dc=bitwarden,dc=com", + email: "SelentS@4b870fc05654407aaffa37354d036e58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doria Sherrill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Doria Sherrill,ou=Product Testing,dc=bitwarden,dc=com", + email: "SherrilD@67ed6a3085c048b9841abf12a338d7fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden,dc=com", + email: "GodsoeC@95a0714026f54037aaa182b092f39903.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden,dc=com", + email: "ReichinF@5dc39fbc350c43fe84c932142400265c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maire Follett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maire Follett,ou=Payroll,dc=bitwarden,dc=com", + email: "FollettM@b4fa9c83a97e478e900b988131cc53a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden,dc=com", + email: "ClampitT@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ying Schulze,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ying Schulze,ou=Management,dc=bitwarden,dc=com", + email: "SchulzeY@5750a4ef0b904e64a81925c3672ef563.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Samual Franzky,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Samual Franzky,ou=Payroll,dc=bitwarden,dc=com", + email: "FranzkyS@bc79177550ea403786c826687c120cc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nert Bombardier,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nert Bombardier,ou=Product Development,dc=bitwarden,dc=com", + email: "BombardN@468705ba5f434f3295170aa6ba4375b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catherine Hite,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Catherine Hite,ou=Product Development,dc=bitwarden,dc=com", + email: "HiteC@7d42ba8899ef4daea01b1b9e81793953.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilyse Mueller,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ilyse Mueller,ou=Product Development,dc=bitwarden,dc=com", + email: "MuellerI@3804896e582c4b3cac297cdd6774c60b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephenie Brennen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stephenie Brennen,ou=Management,dc=bitwarden,dc=com", + email: "BrennenS@1992350853aa4c25bb04f92a613f61ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Normand Hussein,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Normand Hussein,ou=Peons,dc=bitwarden,dc=com", + email: "HusseinN@e7d8ea0a48844afca86cee78439bf3ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Greta Vilayil,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Greta Vilayil,ou=Product Development,dc=bitwarden,dc=com", + email: "VilayilG@464e8484746549448721c5996878db8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siana Letsome,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Siana Letsome,ou=Payroll,dc=bitwarden,dc=com", + email: "LetsomeS@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cosola Steene,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cosola Steene,ou=Product Development,dc=bitwarden,dc=com", + email: "SteeneC@0565c5e96dfc4577b9a5d67dbae6882a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cooney Momon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cooney Momon,ou=Product Testing,dc=bitwarden,dc=com", + email: "MomonC@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden,dc=com", + email: "HincheyA@7861fff1b7b548db86804b430c935e99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julie Dinalic,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Julie Dinalic,ou=Product Development,dc=bitwarden,dc=com", + email: "DinalicJ@7677d85bd47643a9936d436eda55abc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manya Mukherjee,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Manya Mukherjee,ou=Peons,dc=bitwarden,dc=com", + email: "MukherjM@54c9f2fcd12b42f2bc190f4e3b612fb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evans Letsome,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Evans Letsome,ou=Management,dc=bitwarden,dc=com", + email: "LetsomeE@54f67a9483774cc1b5e0de314f8eb92a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silvana Filpus,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Silvana Filpus,ou=Human Resources,dc=bitwarden,dc=com", + email: "FilpusS@1323c697a4384a89878379a601aa7eea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=YauFun Poindexter,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=YauFun Poindexter,ou=Administrative,dc=bitwarden,dc=com", + email: "PoindexY@aa594d3d10eb450fa0bddacf7ac87cac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden,dc=com", + email: "HellyerP@03c5e61ca485493dabd358d72b829f22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emmy Blissett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emmy Blissett,ou=Product Development,dc=bitwarden,dc=com", + email: "BlissetE@b09998527867493f8ec7d2c91a978e4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blanche VanKast,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Blanche VanKast,ou=Product Development,dc=bitwarden,dc=com", + email: "VanKastB@adb4d2b4425349f3bb6cfdf4327abf0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden,dc=com", + email: "ErmarkaF@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merry Aderhold,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Merry Aderhold,ou=Peons,dc=bitwarden,dc=com", + email: "AderholM@a5f3f4452bf8496fb0a3c488cc4a7ea7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwenni Marren,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gwenni Marren,ou=Management,dc=bitwarden,dc=com", + email: "MarrenG@298910ba55544a1097f46cf86b2ab0db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Allys Akita,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Allys Akita,ou=Product Testing,dc=bitwarden,dc=com", + email: "AkitaA@f23a16acadd64ac19918522aa8759ece.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marris Fanchi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marris Fanchi,ou=Payroll,dc=bitwarden,dc=com", + email: "FanchiM@e1a5d833294d4b9eaa497139d44c8a66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden,dc=com", + email: "BayraktC@146c6f8ea8724614b75bf56ba3cb8bbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bryna McMann,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bryna McMann,ou=Peons,dc=bitwarden,dc=com", + email: "McMannB@15866f1d7367463c8aa06c201aa87971.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden,dc=com", + email: "MendoncY@9cde21d54f45469eaa2726ba1c900158.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clayton Lychak,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Clayton Lychak,ou=Product Testing,dc=bitwarden,dc=com", + email: "LychakC@3986b5b118ef4d79a84f9f227789123a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden,dc=com", + email: "BernharR@6959c2a103f748adbcb2ba7b29cef5d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abe Parton,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Abe Parton,ou=Peons,dc=bitwarden,dc=com", + email: "PartonA@d67f9ee009e04d2db5fb442e7cbf3d9c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felice Kaehler,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Felice Kaehler,ou=Payroll,dc=bitwarden,dc=com", + email: "KaehlerF@880fea2dcc394beca5f7e445d6e3f83c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacenta Sztein,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jacenta Sztein,ou=Management,dc=bitwarden,dc=com", + email: "SzteinJ@2ffe207cbf4244c5be34772f95d3e203.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonja Hoag,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sonja Hoag,ou=Payroll,dc=bitwarden,dc=com", + email: "HoagS@41e244581cf54e77b9831bacfa1794ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manmohan MacAdams,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Manmohan MacAdams,ou=Peons,dc=bitwarden,dc=com", + email: "MacAdamM@642c0c60f802487f958e665bafd86eae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathe Bejar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cathe Bejar,ou=Peons,dc=bitwarden,dc=com", + email: "BejarC@ba8402a4d315465dbb751a651c142686.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tape Vandervelde,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tape Vandervelde,ou=Administrative,dc=bitwarden,dc=com", + email: "VandervT@db179d7341f8445abe156cf9e17446a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adria Leger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Adria Leger,ou=Administrative,dc=bitwarden,dc=com", + email: "LegerA@6a29a5859e9645b49806b0a3149cb2b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Modesty Quinlan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Modesty Quinlan,ou=Management,dc=bitwarden,dc=com", + email: "QuinlanM@643a7a9782f24ae2ae0ce0064cc2c175.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jawaid Upton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jawaid Upton,ou=Management,dc=bitwarden,dc=com", + email: "UptonJ@48f40b9c61c1423ab7f4a12dacd08cb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trevor Vradmin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Trevor Vradmin,ou=Product Development,dc=bitwarden,dc=com", + email: "VradminT@5214956f0ee84ad493b8defdd90a23da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helena Pellizzari,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Helena Pellizzari,ou=Peons,dc=bitwarden,dc=com", + email: "PellizzH@aea3f0a7f67b4eaaaa82cbd9284643da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MunHang Salinas,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=MunHang Salinas,ou=Janitorial,dc=bitwarden,dc=com", + email: "SalinasM@1dc3a166a7d1429cbda07bce89749db3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchulzeS@f071c89187164ee99b36301acebce3d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", + email: "SaidzadS@ab41bf0b11974609ad8cdf477ead2e3f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delcina Forbes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Delcina Forbes,ou=Product Development,dc=bitwarden,dc=com", + email: "ForbesD@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norene Tarver,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Norene Tarver,ou=Janitorial,dc=bitwarden,dc=com", + email: "TarverN@416f73acf1c3455592568bbc2cd91814.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angie Leiba,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Angie Leiba,ou=Management,dc=bitwarden,dc=com", + email: "LeibaA@cdf65b883c4c457a86f2eba62ef732a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ernest Welker,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ernest Welker,ou=Janitorial,dc=bitwarden,dc=com", + email: "WelkerE@98dbe2650ab647828dc76525d39c4ec5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden,dc=com", + email: "VenjohnD@416f73acf1c3455592568bbc2cd91814.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fitzgerald Kabel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fitzgerald Kabel,ou=Management,dc=bitwarden,dc=com", + email: "KabelF@a3cca719b1e44338804967e6cd3716a5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zaven Bethune,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zaven Bethune,ou=Product Development,dc=bitwarden,dc=com", + email: "BethuneZ@d9c35c3dbb1b4cc08294fcf741816060.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aridatha Flindall,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aridatha Flindall,ou=Management,dc=bitwarden,dc=com", + email: "FlindalA@cae8e3926df843bead78e784e4401c15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden,dc=com", + email: "SanhC@b70f11362a424a69841534d3b1179197.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kipp Aubuchon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kipp Aubuchon,ou=Management,dc=bitwarden,dc=com", + email: "AubuchoK@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daile Id,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Daile Id,ou=Payroll,dc=bitwarden,dc=com", + email: "IdD@250220c45d4c4f3e8bbdbc41fe165d43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shea Lashmit,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shea Lashmit,ou=Product Testing,dc=bitwarden,dc=com", + email: "LashmitS@795d165ac426423b9759f469242c1c41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden,dc=com", + email: "McCloskR@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stuart Murdock,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Stuart Murdock,ou=Payroll,dc=bitwarden,dc=com", + email: "MurdockS@281a3b7d828a4279bcb4d231694f9078.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrianna Ness,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Adrianna Ness,ou=Janitorial,dc=bitwarden,dc=com", + email: "NessA@4cb464a4b57341639b507e14b84bcd33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden,dc=com", + email: "FitzpatA@d0510c6d4d2248279a5b0899ea306017.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanity Penland,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vanity Penland,ou=Human Resources,dc=bitwarden,dc=com", + email: "PenlandV@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden,dc=com", + email: "ThornleS@49424809fdd04ce884f671ecda70d45c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Denzil Willenbring,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Denzil Willenbring,ou=Administrative,dc=bitwarden,dc=com", + email: "WillenbD@21b4ff7eaee4433da6e498e7c5416e46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erna Stephen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Erna Stephen,ou=Janitorial,dc=bitwarden,dc=com", + email: "StephenE@b401949a67c74bd1beca2a3e5c932036.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MarieAndree Ness,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=MarieAndree Ness,ou=Management,dc=bitwarden,dc=com", + email: "NessM@2e9e3fdb5ac94378ae0798f03ed2af05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LouisRene Borozny,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=LouisRene Borozny,ou=Payroll,dc=bitwarden,dc=com", + email: "BoroznyL@76f45d6ecf254c758ec9e0e2bce3358b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donetta Grabowski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Donetta Grabowski,ou=Peons,dc=bitwarden,dc=com", + email: "GrabowsD@282788aa89974e41becc817ad84f61e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden,dc=com", + email: "SeddighB@331a1fba93cb4fc9bfec4ceeacadac7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Henk Crick,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Henk Crick,ou=Product Testing,dc=bitwarden,dc=com", + email: "CrickH@de014112a9c2429e8a696185d3f55fa8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ineke Haig,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ineke Haig,ou=Payroll,dc=bitwarden,dc=com", + email: "HaigI@4b870fc05654407aaffa37354d036e58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden,dc=com", + email: "ToscanoA@9d29672938a1423692f56bf9785bfe43.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felipa Catlett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Felipa Catlett,ou=Product Testing,dc=bitwarden,dc=com", + email: "CatlettF@c7b440e597614575a5a39ed9339f6e2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathye Ledou,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kathye Ledou,ou=Management,dc=bitwarden,dc=com", + email: "LedouK@3019fa1598344acaa882f41e30176719.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pawel Pippin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pawel Pippin,ou=Payroll,dc=bitwarden,dc=com", + email: "PippinP@74e0243ab8e64a19864d198a422eff4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Godiva Pesik,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Godiva Pesik,ou=Janitorial,dc=bitwarden,dc=com", + email: "PesikG@069bff2c38b341aca5c431f6580b51ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden,dc=com", + email: "FreimarR@a7879a3db49d425f8293a2b2d51d5b86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden,dc=com", + email: "LamotheH@c2fbe2791d9c4564ab131c65109368d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evelina Mapile,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Evelina Mapile,ou=Administrative,dc=bitwarden,dc=com", + email: "MapileE@502ce1a083704d4ea4b58d700d574c63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pammy Rogers,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pammy Rogers,ou=Human Resources,dc=bitwarden,dc=com", + email: "RogersP@78e39349ef7749648d2cb3e7b1e56508.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pas Giles,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pas Giles,ou=Human Resources,dc=bitwarden,dc=com", + email: "GilesP@8670b7b167164a8b9ce71d78ae9cb652.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marietta CamelToueg,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marietta CamelToueg,ou=Management,dc=bitwarden,dc=com", + email: "CamelToM@8df14385ae864b439973adc9259c1607.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rico Meachum,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rico Meachum,ou=Management,dc=bitwarden,dc=com", + email: "MeachumR@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Venkat Marrone,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Venkat Marrone,ou=Administrative,dc=bitwarden,dc=com", + email: "MarroneV@b2f3aa04c0ef4b03a42b0509b9df028c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden,dc=com", + email: "McAllisJ@31bdf3f083274a9a823bbf5bbd24461a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden,dc=com", + email: "SeamsteC@b05d3b7a0745414e90247097c6c4b50d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elwood Gould,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elwood Gould,ou=Payroll,dc=bitwarden,dc=com", + email: "GouldE@660a614454f1481f8e7878f66c6cc97d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden,dc=com", + email: "RittenhD@b25a6c9a4813403592f85516045bbb70.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZhelkaA@9524e5fbf8844145b5c00986d16d8376.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrel Hoch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Darrel Hoch,ou=Janitorial,dc=bitwarden,dc=com", + email: "HochD@ead811946c1c45dc9e9e74c993c44021.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eunice Gerhart,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eunice Gerhart,ou=Management,dc=bitwarden,dc=com", + email: "GerhartE@bf155b8bc0754f518a83ee458e4a4635.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karena Gunasekera,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Karena Gunasekera,ou=Administrative,dc=bitwarden,dc=com", + email: "GunasekK@1b9f3ee20651489b84389c5c6ee6794d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden,dc=com", + email: "BoruslaB@600cf979cfee42dfbdf815d8ce66c105.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charmine Izzo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Charmine Izzo,ou=Human Resources,dc=bitwarden,dc=com", + email: "IzzoC@4b0cd35c3d8442a69514b96d040ad360.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolea Fagan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nicolea Fagan,ou=Administrative,dc=bitwarden,dc=com", + email: "FaganN@e17fea6e1c564882ab9a476cab0dc5ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huyen Nashville,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Huyen Nashville,ou=Product Testing,dc=bitwarden,dc=com", + email: "NashvilH@bcfddcc4528d4a7da41251051a550591.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden,dc=com", + email: "WalkowiR@627ddcf5e1624631b06795e9a52501e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden,dc=com", + email: "RotzjeaM@49672ac4642e4eb39566d542af0eef8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrtia Closson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Myrtia Closson,ou=Product Development,dc=bitwarden,dc=com", + email: "ClossonM@11aeb057db4a4efc9f9db6e2b2c23ff0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden,dc=com", + email: "IbachT@402d43c51a4446beb3be4fb34fdb725c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ioana Jenner,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ioana Jenner,ou=Product Testing,dc=bitwarden,dc=com", + email: "JennerI@33ed0b76cf8d4133a68e225e69fedff2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden,dc=com", + email: "LindstrC@f62df0bfb50a4849bc17f5360d5a7c52.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leon Bays,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leon Bays,ou=Payroll,dc=bitwarden,dc=com", + email: "BaysL@93baf6000e434401b0373a2ea7daeeeb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ulf Cotner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ulf Cotner,ou=Peons,dc=bitwarden,dc=com", + email: "CotnerU@d10bdc65bfaf4e35b28e6655d5cd9f69.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jinann Hassey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jinann Hassey,ou=Janitorial,dc=bitwarden,dc=com", + email: "HasseyJ@e082cb8e6fcd44b39d2d3be9de497cd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bevvy Huot,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bevvy Huot,ou=Janitorial,dc=bitwarden,dc=com", + email: "HuotB@47a7a80ec8774325ad24930467e7f72e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coord Cadd,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Coord Cadd,ou=Janitorial,dc=bitwarden,dc=com", + email: "CaddC@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Envoy Lesway,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Envoy Lesway,ou=Peons,dc=bitwarden,dc=com", + email: "LeswayE@c25e2fe1ca694d8a8fe5c23754b47571.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden,dc=com", + email: "HemmerlJ@ea364298791c41debbf08d0519d9dd74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden,dc=com", + email: "TarquinK@82a02eb22e9446a98ae50c8b159eeb8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden,dc=com", + email: "CoccoK@1d8ea622691942519634199a4665788b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maybelle Brannon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maybelle Brannon,ou=Product Development,dc=bitwarden,dc=com", + email: "BrannonM@180927625167441fb315d9e4f284562e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lrc Blaiklock,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lrc Blaiklock,ou=Peons,dc=bitwarden,dc=com", + email: "BlaikloL@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abu Melucci,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Abu Melucci,ou=Management,dc=bitwarden,dc=com", + email: "MelucciA@a4c1bc58f4364478a274836261857361.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hedwiga Personna,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hedwiga Personna,ou=Administrative,dc=bitwarden,dc=com", + email: "PersonnH@274b8d184a6d4e52bcfb6ffc8ba53d5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Osmond Usyk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Osmond Usyk,ou=Administrative,dc=bitwarden,dc=com", + email: "UsykO@df3ca8c2f1a84d2a9126b1629fccf4fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden,dc=com", + email: "MarasliJ@d117baceef9a4168bde2647e78683a37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilona Schoch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ilona Schoch,ou=Janitorial,dc=bitwarden,dc=com", + email: "SchochI@60ad49073800473f85380f8d92729bb8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden,dc=com", + email: "VandenHS@49237b860d1f43eba86c8a5d68311c7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kieron Bouick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kieron Bouick,ou=Management,dc=bitwarden,dc=com", + email: "BouickK@c90beda51728416da468419570974ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hettie Gruber,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hettie Gruber,ou=Peons,dc=bitwarden,dc=com", + email: "GruberH@b1249dcd3c8b491d920a5f410c6dd0cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farzin Hilaire,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Farzin Hilaire,ou=Management,dc=bitwarden,dc=com", + email: "HilaireF@6c398eb0cd5c4b4784131d450d82aca7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", + email: "FurdoonC@7358f14ebc1d437faa31666574716056.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaimie Valin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jaimie Valin,ou=Janitorial,dc=bitwarden,dc=com", + email: "ValinJ@4bba23a995da4ee98c2c53bd5fa682de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meggy Fajardo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Meggy Fajardo,ou=Administrative,dc=bitwarden,dc=com", + email: "FajardoM@06570b086c80422c8349b02b80c03823.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden,dc=com", + email: "SubasinG@24aecac07fc74e8bb38262db3e4ff1e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lyda Sym,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lyda Sym,ou=Product Testing,dc=bitwarden,dc=com", + email: "SymL@2ebbe6ccc158418ea03a56b7dd20f4d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alia Lucente,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alia Lucente,ou=Product Development,dc=bitwarden,dc=com", + email: "LucenteA@3f957af8403b44cda402864b6bf1f589.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carline Klotz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carline Klotz,ou=Product Development,dc=bitwarden,dc=com", + email: "KlotzC@7bb52bb06b244b41a3cd78dfcc311e5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marilin Boylan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marilin Boylan,ou=Management,dc=bitwarden,dc=com", + email: "BoylanM@68c9de30282b4f288b18d766d4da42ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mustapha Noles,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mustapha Noles,ou=Human Resources,dc=bitwarden,dc=com", + email: "NolesM@f2c07dab9bd04b82822cc496cad44d9f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brandais Cullum,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Brandais Cullum,ou=Janitorial,dc=bitwarden,dc=com", + email: "CullumB@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vradmin Lough,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vradmin Lough,ou=Product Development,dc=bitwarden,dc=com", + email: "LoughV@86e5c38e7f5c41538bf306ddacec173d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden,dc=com", + email: "HeskethL@301d911e2eea414b9302e4f81984f9b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden,dc=com", + email: "ArnonB@57b9838eb13d439597b1e6134348bbbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Laser Lennig,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Laser Lennig,ou=Payroll,dc=bitwarden,dc=com", + email: "LennigL@f1fb5c603617421f9d814a8c426ffcd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wren Gopaul,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Wren Gopaul,ou=Janitorial,dc=bitwarden,dc=com", + email: "GopaulW@36939042b2bb4d8d8a87206c430ca689.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Whitney Inoue,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Whitney Inoue,ou=Product Development,dc=bitwarden,dc=com", + email: "InoueW@a3af1deba0554d128f94c16459078710.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden,dc=com", + email: "BaltodaA@4147d91f891f4f7aa66800a01382c83a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden,dc=com", + email: "KahkoneH@1f70c3bade4e4575a0687e469e22b825.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlee Weyand,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karlee Weyand,ou=Management,dc=bitwarden,dc=com", + email: "WeyandK@a371212c7c2b4312bdb15d1cffb21938.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fox Richmond,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fox Richmond,ou=Product Development,dc=bitwarden,dc=com", + email: "RichmonF@4cf5733fc93742b8881de63253f58457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patrick Perreault,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Patrick Perreault,ou=Peons,dc=bitwarden,dc=com", + email: "PerreauP@7fb1c518e9c746fd9566ed0918ae43c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden,dc=com", + email: "KirkpatF@d457e1580197417888cc4a9c93599471.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saloma Turbes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Saloma Turbes,ou=Peons,dc=bitwarden,dc=com", + email: "TurbesS@0ad1daa81fae4a218ac099e9643dc3e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tiffy Klammer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tiffy Klammer,ou=Product Development,dc=bitwarden,dc=com", + email: "KlammerT@a88c50151ed5480a93ed6a3357d7dcdc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonbol Portz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sonbol Portz,ou=Product Development,dc=bitwarden,dc=com", + email: "PortzS@d8b850d9e8ae4a779435178983c8e469.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden,dc=com", + email: "ChauretR@719d42488cdd461d9a46a6d7e3fd0edb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darko Gawdan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Darko Gawdan,ou=Peons,dc=bitwarden,dc=com", + email: "GawdanD@6312a8bfcfc64f4fa1700b6ca4b67dc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden,dc=com", + email: "GittinsS@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dodie Starr,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dodie Starr,ou=Management,dc=bitwarden,dc=com", + email: "StarrD@3177f113b2494bf084a4349d34933284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Britt Bivens,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Britt Bivens,ou=Product Development,dc=bitwarden,dc=com", + email: "BivensB@cb6388d64d1348ea8a259ae435674850.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hanh Sohns,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hanh Sohns,ou=Administrative,dc=bitwarden,dc=com", + email: "SohnsH@ae6d761bccb14b72b9b53490029a36af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Friederike Awano,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Friederike Awano,ou=Product Development,dc=bitwarden,dc=com", + email: "AwanoF@a923c3e154c74115a9ff0fe18985dc09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franki Nassr,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Franki Nassr,ou=Human Resources,dc=bitwarden,dc=com", + email: "NassrF@56c41599882f4a19aa89ca9c4dc0c09e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheridan Arcouet,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sheridan Arcouet,ou=Peons,dc=bitwarden,dc=com", + email: "ArcouetS@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden,dc=com", + email: "MacMillD@50a4724a631e41a7bce3841ce6d93bf4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shoeb McCrimmon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shoeb McCrimmon,ou=Management,dc=bitwarden,dc=com", + email: "McCrimmS@423b79c358ed4d48a4cc89da75ae0404.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden,dc=com", + email: "GheciuT@092d9b28cd5e485d86e0589d143723ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherline Morreale,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sherline Morreale,ou=Product Development,dc=bitwarden,dc=com", + email: "MorrealS@e146e249e0b44539bc6460a663ad0f90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emilia Tisdale,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emilia Tisdale,ou=Product Development,dc=bitwarden,dc=com", + email: "TisdaleE@c11c5f5aaeed4a9daabcfc4756ced3f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reinhold Shumate,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reinhold Shumate,ou=Peons,dc=bitwarden,dc=com", + email: "ShumateR@a1eb15c73ce34aa39a4a4077bd16ae75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tatyana Packard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tatyana Packard,ou=Product Testing,dc=bitwarden,dc=com", + email: "PackardT@b4ffcfe46a614ae194b415ba89e17560.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gloriana Vendette,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gloriana Vendette,ou=Peons,dc=bitwarden,dc=com", + email: "VendettG@2eeb9567dcd64347a2dcd6492aaa8ddc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Consuela Ravi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Consuela Ravi,ou=Product Testing,dc=bitwarden,dc=com", + email: "RaviC@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sioux Langlois,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sioux Langlois,ou=Payroll,dc=bitwarden,dc=com", + email: "LangloiS@4964020f5ac94a59b22a0311ddec080f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olympia Lieure,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Olympia Lieure,ou=Product Testing,dc=bitwarden,dc=com", + email: "LieureO@dcbe263c9d3d41348af5a8fc7c5d470d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cad Thorley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cad Thorley,ou=Janitorial,dc=bitwarden,dc=com", + email: "ThorleyC@c6e9ac083cc043b8883c6054dd35e8a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden,dc=com", + email: "AckaouyE@fb57f6256f134e1381affe3f9c6c7fdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ryoung Moeschet,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ryoung Moeschet,ou=Peons,dc=bitwarden,dc=com", + email: "MoescheR@a11fd3f494644e3f9a70f7219a7bad22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jorry Freno,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jorry Freno,ou=Payroll,dc=bitwarden,dc=com", + email: "FrenoJ@343f3e94452d4417ab72f456ef20099a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amandie Cottengim,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Amandie Cottengim,ou=Peons,dc=bitwarden,dc=com", + email: "CottengA@61391b1e27a64c79ad40798665590378.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bran MacNeil,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bran MacNeil,ou=Management,dc=bitwarden,dc=com", + email: "MacNeilB@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eladio Strudwick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eladio Strudwick,ou=Payroll,dc=bitwarden,dc=com", + email: "StrudwiE@a23986164bc64fc4ad43988e6e385f40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cleveland Jagla,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cleveland Jagla,ou=Payroll,dc=bitwarden,dc=com", + email: "JaglaC@8811017314e4431b8c77e3cc9b6c4274.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julien Osterberg,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Julien Osterberg,ou=Human Resources,dc=bitwarden,dc=com", + email: "OsterbeJ@801080c2fb40441aa0b2119368327ea0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frederika Brower,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Frederika Brower,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrowerF@40afcc80c86b41fda116eba64b688061.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Timmi Bascombe,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Timmi Bascombe,ou=Management,dc=bitwarden,dc=com", + email: "BascombT@5020798a7692438bb9e14d9a42dd1742.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden,dc=com", + email: "GilchriC@899743aa481a45efb507e6d61189c383.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden,dc=com", + email: "JazanosS@0437e560df9b4466ac4b1814efe6272e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Milicent Frondozo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Milicent Frondozo,ou=Management,dc=bitwarden,dc=com", + email: "FrondozM@29b64656a78049bc9d3de5b18cdb7f58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danell Silang,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Danell Silang,ou=Janitorial,dc=bitwarden,dc=com", + email: "SilangD@7b9bbc8a8db749adaa5d570b3f3c2a12.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Baljinder StJohn,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Baljinder StJohn,ou=Product Development,dc=bitwarden,dc=com", + email: "StJohnB@69b9ccd34baf4393989b969fe509e24b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden,dc=com", + email: "OberpriA@4bbf773107d4419bb6cc46fd57ba3ce2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden,dc=com", + email: "CohoeA@7a3b1be5d62c42abaf0253c9b042dfe2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joannah Gendre,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joannah Gendre,ou=Administrative,dc=bitwarden,dc=com", + email: "GendreJ@ca748ccfc8c741eab1dc5767d7063b1c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zero Strickland,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zero Strickland,ou=Product Development,dc=bitwarden,dc=com", + email: "StricklZ@69527a1c41b04ddda793d00fb5a21087.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lujanka Turner,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lujanka Turner,ou=Administrative,dc=bitwarden,dc=com", + email: "TurnerL@a69feaacad634790a69fdf1db6b0a8d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trish Meissner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Trish Meissner,ou=Product Development,dc=bitwarden,dc=com", + email: "MeissneT@ea8c137275494c24a45d33c847e472b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Han Hermes,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Han Hermes,ou=Management,dc=bitwarden,dc=com", + email: "HermesH@9426a2bdce5b455d93581bbbd4e466d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annamaria Daly,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Annamaria Daly,ou=Payroll,dc=bitwarden,dc=com", + email: "DalyA@231d8346570d402bb69f49de52a59267.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden,dc=com", + email: "GodlingV@0dddb86650e94c559800b280597f0c4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden,dc=com", + email: "StClairS@4d1502006f9d465093ef756b43a146bc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden,dc=com", + email: "WimbushR@1c3f38c01ffe4fd78e55d74bc900ca15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roger Latella,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Roger Latella,ou=Human Resources,dc=bitwarden,dc=com", + email: "LatellaR@6f5c481db3be45b1bf56f24cf55ebbf4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Korney Blevins,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Korney Blevins,ou=Product Development,dc=bitwarden,dc=com", + email: "BlevinsK@24105f6fca38477da9ad618bec45383c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elsey Meckley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elsey Meckley,ou=Administrative,dc=bitwarden,dc=com", + email: "MeckleyE@b5e3188bf80e462eac4ebbb9d1096eff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jill Langton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jill Langton,ou=Payroll,dc=bitwarden,dc=com", + email: "LangtonJ@9ba1788c88514e3e9788f75280ccf6c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", + email: "MalkiewM@01d519b2c3cc4b749d2c74cc03a56716.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peg Arnott,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Peg Arnott,ou=Peons,dc=bitwarden,dc=com", + email: "ArnottP@1dac857c92bb48aaa0a69e83483dddea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden,dc=com", + email: "LagrandM@b866cf3614c84b6ab1508dbbda76e67a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lotta Witkowski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lotta Witkowski,ou=Peons,dc=bitwarden,dc=com", + email: "WitkowsL@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=TunLin Dickerson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=TunLin Dickerson,ou=Peons,dc=bitwarden,dc=com", + email: "DickersT@4a8ab0364b8c4f26a80da2953a1e2c51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sile Golczewski,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sile Golczewski,ou=Product Development,dc=bitwarden,dc=com", + email: "GolczewS@0e51e4ac4ff5492f891ae127459e83ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joshi Formagie,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Joshi Formagie,ou=Human Resources,dc=bitwarden,dc=com", + email: "FormagiJ@a61d7f00b26e42a8b542c11c2adbdb6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Penni Marzullo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Penni Marzullo,ou=Payroll,dc=bitwarden,dc=com", + email: "MarzullP@745e98042a374bd8b4300c64429e0da5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden,dc=com", + email: "MatsubaM@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maible Blauer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maible Blauer,ou=Management,dc=bitwarden,dc=com", + email: "BlauerM@12257cabb5eb48ceb908520b2745a457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fawne Fanthome,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fawne Fanthome,ou=Administrative,dc=bitwarden,dc=com", + email: "FanthomF@aac869a9d66f41deb273e8c857d2f2a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brinna Spraggins,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brinna Spraggins,ou=Peons,dc=bitwarden,dc=com", + email: "SpraggiB@9b56a002e1e845bebc57785089119222.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Misbah FWPtools,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Misbah FWPtools,ou=Product Development,dc=bitwarden,dc=com", + email: "FWPtoolM@5256d716dc394c1f919ed3450fa1ea97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shona Keck,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shona Keck,ou=Peons,dc=bitwarden,dc=com", + email: "KeckS@8355880d64ee437fa987ff83fc2fd243.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden,dc=com", + email: "VanderhS@c219bf062505483787e15d8eef41ed24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden,dc=com", + email: "SoullieS@4504d7b5d7bb4c7c81665aefd8680fbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doe Digenova,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Doe Digenova,ou=Product Testing,dc=bitwarden,dc=com", + email: "DigenovD@c053920120d84308b5190978039283b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edel Huliganga,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Edel Huliganga,ou=Payroll,dc=bitwarden,dc=com", + email: "HuliganE@237b08eaf7b7464e9c2e34150cfd7ad3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miquela Khosla,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Miquela Khosla,ou=Management,dc=bitwarden,dc=com", + email: "KhoslaM@784bec209e394f1ca55bb2a6c8564d70.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden,dc=com", + email: "BarnhouM@9bca7e1fa66343078f8d2f441ac03fca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Butch Gewell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Butch Gewell,ou=Human Resources,dc=bitwarden,dc=com", + email: "GewellB@efcd32daf30f47bab7fc31cf8968544d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden,dc=com", + email: "KinrysJ@ea406b4bd2b34275a1fc4a070b598266.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mindy Wealch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mindy Wealch,ou=Janitorial,dc=bitwarden,dc=com", + email: "WealchM@94dbeedce77e435482fe6d405df83d4c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petri Quintero,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Petri Quintero,ou=Human Resources,dc=bitwarden,dc=com", + email: "QuinterP@62762c759020411b89296a80fdd53afd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Windowing Feyen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Windowing Feyen,ou=Janitorial,dc=bitwarden,dc=com", + email: "FeyenW@91566d07f8014fa098810199110928d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charlotta Demarest,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Charlotta Demarest,ou=Payroll,dc=bitwarden,dc=com", + email: "DemaresC@cb2e25cd93c145bf81000296630c3ab7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Honey Badjari,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Honey Badjari,ou=Product Testing,dc=bitwarden,dc=com", + email: "BadjariH@47b3a42002e74101b1c82f87517bcbef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nady Kness,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nady Kness,ou=Peons,dc=bitwarden,dc=com", + email: "KnessN@9befe039acaf4d578a86c80d677d5d49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdaia Pagi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Magdaia Pagi,ou=Payroll,dc=bitwarden,dc=com", + email: "PagiM@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peri Morden,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Peri Morden,ou=Human Resources,dc=bitwarden,dc=com", + email: "MordenP@fc363d82b6fb44d985548ce8053314f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avie Moores,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Avie Moores,ou=Peons,dc=bitwarden,dc=com", + email: "MooresA@c227b873963e4393bf6073155bf0bef2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden,dc=com", + email: "IribarrD@e9e739e036b347aa8d1219a0e8da1acd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Schell Wendling,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Schell Wendling,ou=Peons,dc=bitwarden,dc=com", + email: "WendlinS@b2dba5d211e74e1e8b9beacd1ae0b042.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reynold Labiche,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Reynold Labiche,ou=Administrative,dc=bitwarden,dc=com", + email: "LabicheR@d889c2d8f8034f8b853618d3cde340fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vince Bulger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vince Bulger,ou=Payroll,dc=bitwarden,dc=com", + email: "BulgerV@e00d274753dc4e1282c4eb80a1b5a880.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nedi England,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nedi England,ou=Administrative,dc=bitwarden,dc=com", + email: "EnglandN@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Field Ueyama,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Field Ueyama,ou=Janitorial,dc=bitwarden,dc=com", + email: "UeyamaF@32419fed353640be907742ce6b450ca8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mina ODonnell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mina ODonnell,ou=Payroll,dc=bitwarden,dc=com", + email: "ODonnelM@10c4772e07c4416b983baf85665d30de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden,dc=com", + email: "KempffeT@85b8ed1ad5b644cfbbbf9dc62daad7fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rubie Suddarth,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rubie Suddarth,ou=Payroll,dc=bitwarden,dc=com", + email: "SuddartR@8af6d39064bb46a9ba4daa83c54c62c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fanchette Felli,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fanchette Felli,ou=Administrative,dc=bitwarden,dc=com", + email: "FelliF@5256d716dc394c1f919ed3450fa1ea97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorry Livshits,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorry Livshits,ou=Payroll,dc=bitwarden,dc=com", + email: "LivshitD@6dd87ab9e5af49468fc97aebdbd7b449.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merle Turchan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Merle Turchan,ou=Administrative,dc=bitwarden,dc=com", + email: "TurchanM@d498c0edfe624410b23b0178f9f7f2c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Achal Blann,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Achal Blann,ou=Peons,dc=bitwarden,dc=com", + email: "BlannA@a081497caeb44f8587c4809a817c9728.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marty Barr,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marty Barr,ou=Management,dc=bitwarden,dc=com", + email: "BarrM@fad13712be524b2bb53fd1f676c9976a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lilin Tisdall,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lilin Tisdall,ou=Peons,dc=bitwarden,dc=com", + email: "TisdallL@f07be15577e54b07aaf9ccc18f458690.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden,dc=com", + email: "CherrieJ@713ec84902e3407ea7c47d43e09273a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden,dc=com", + email: "CraigDuS@25e344e508194d148c2480fc79febf41.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camille Seddigh,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Camille Seddigh,ou=Human Resources,dc=bitwarden,dc=com", + email: "SeddighC@248fbbdd5e2b4efdbf1ff86927aed801.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manon Swinamer,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Manon Swinamer,ou=Janitorial,dc=bitwarden,dc=com", + email: "SwinameM@f2546b85540e458c8c528fab744261e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden,dc=com", + email: "CutrufeM@a31aed5cfdcb4194bc94b7ef44927e93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marci Uludamar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marci Uludamar,ou=Janitorial,dc=bitwarden,dc=com", + email: "UludamaM@28fca843a5ae4175b7bbc20728951453.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcel Mathiue,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marcel Mathiue,ou=Management,dc=bitwarden,dc=com", + email: "MathiueM@a5f4802ff3844a6da03607a2952d6142.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clementina Salkilld,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clementina Salkilld,ou=Peons,dc=bitwarden,dc=com", + email: "SalkillC@5cc175e484e84097b7cd2f4f59476a94.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden,dc=com", + email: "TatangsJ@8cfe11654a1f4bcf872e901116f7b350.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertrudis Zahn,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gertrudis Zahn,ou=Peons,dc=bitwarden,dc=com", + email: "ZahnG@643babc725854db49eed6fbb3cc528c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jere Forghani,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jere Forghani,ou=Product Development,dc=bitwarden,dc=com", + email: "ForghanJ@0402555d9f67459e90e5fb987f132859.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden,dc=com", + email: "PezzullN@6de6b96b53bf450ebd85b6259dd56653.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilemette Dellinger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gilemette Dellinger,ou=Peons,dc=bitwarden,dc=com", + email: "DellingG@9dc5f26c8d604d308d7d70d0272f1d88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdalene Byers,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Magdalene Byers,ou=Product Development,dc=bitwarden,dc=com", + email: "ByersM@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden,dc=com", + email: "ZagrodnG@1b5833345bfe4fbbb19ff2ae67a5a60b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parnell Hamlin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Parnell Hamlin,ou=Payroll,dc=bitwarden,dc=com", + email: "HamlinP@ecca4a8cb1474812a6ec4a57737ddfaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nath Popovich,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nath Popovich,ou=Product Testing,dc=bitwarden,dc=com", + email: "PopovicN@714efec96f8a44d68fc31297a56f7cd6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patch Lassonde,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Patch Lassonde,ou=Peons,dc=bitwarden,dc=com", + email: "LassondP@fac421ca650e46139878bbd5f7498e19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden,dc=com", + email: "VanBentC@6530bd09dbf540aea0b4eb735de3f457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nata Corse,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nata Corse,ou=Janitorial,dc=bitwarden,dc=com", + email: "CorseN@5810f4b0e0144582bc97026bbf289a58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marj Npi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marj Npi,ou=Payroll,dc=bitwarden,dc=com", + email: "NpiM@479b3e4b55a5494fbabf2926242184e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden,dc=com", + email: "KawamurR@fbef9109d3fa45f28a2fe6e9e57320c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emery Daoust,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Emery Daoust,ou=Peons,dc=bitwarden,dc=com", + email: "DaoustE@3b0207fba5944fd0a6dca16921952a03.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danya Prasada,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Danya Prasada,ou=Product Testing,dc=bitwarden,dc=com", + email: "PrasadaD@6b1f85dcb6764cc8ada9b5557877a02d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Partha Blackman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Partha Blackman,ou=Payroll,dc=bitwarden,dc=com", + email: "BlackmaP@c44cf57c7e494ab8a133e7f2a6a02284.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florette Shemwell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Florette Shemwell,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShemwelF@c0d5947f2ac7414c9a231d1b93a98940.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden,dc=com", + email: "WeeksH@c303add5409e4b2ca1508fde8a7014b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden,dc=com", + email: "DreisbaA@a7879a3db49d425f8293a2b2d51d5b86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abagael Zattiero,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Abagael Zattiero,ou=Management,dc=bitwarden,dc=com", + email: "ZattierA@972cbc7b1e734ef69ec2cf84c21cdb8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mardi Lowder,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Mardi Lowder,ou=Human Resources,dc=bitwarden,dc=com", + email: "LowderM@d624fb65c7214c7bb843b6ea68ab9b4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden,dc=com", + email: "KalechsE@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mercy Steranka,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mercy Steranka,ou=Management,dc=bitwarden,dc=com", + email: "SterankM@772e8e157e064d01bd5516f96a40fa60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden,dc=com", + email: "ScherbiP@df17bef8c1b54142a20c32df0ed28190.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden,dc=com", + email: "SrikrisA@407a8845f0a44578b9efb43e7405efd9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Catja Josiah,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Catja Josiah,ou=Administrative,dc=bitwarden,dc=com", + email: "JosiahC@623d62a2d1154923b1c9152d9f2876da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marlena Rickey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Marlena Rickey,ou=Administrative,dc=bitwarden,dc=com", + email: "RickeyM@b60e4ba7e4ea41b7aff4212cdb1e99c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden,dc=com", + email: "UeyamaS@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shandee Reno,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shandee Reno,ou=Product Development,dc=bitwarden,dc=com", + email: "RenoS@a04d0222f0c24ad6848955600bad7ace.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden,dc=com", + email: "NakhoulD@9ad96ae4214c429c98f90a76404682a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silva Connolly,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Silva Connolly,ou=Administrative,dc=bitwarden,dc=com", + email: "ConnollS@2050a6c4c8e746ae88bec9f7634b8d59.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Iwan Theriot,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Iwan Theriot,ou=Human Resources,dc=bitwarden,dc=com", + email: "TheriotI@ac2881cfd212410799e38769b052602b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden,dc=com", + email: "EtuR@ff44921ff72348599ae7fe837a40ec13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden,dc=com", + email: "MikulkaR@9cbd4c37891849299ce4208e274287c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emerson Terminals,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Emerson Terminals,ou=Payroll,dc=bitwarden,dc=com", + email: "TerminaE@e5fdd3d67af74cde904584628c237f35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoskaliA@ff9d2c9dbee641ab8637fbbd354b62f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", + email: "MallozzV@09cbaaa2d7a142c9854868c3f613dfe5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden,dc=com", + email: "WoolleyV@84b57e0771b643809ac58933f98cbf52.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", + email: "VenguswJ@99364e00956b4bfea4a43b7bb289f754.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felicdad Popela,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Felicdad Popela,ou=Administrative,dc=bitwarden,dc=com", + email: "PopelaF@55d3abf188cf489e982ee3fc8f3c0c3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Himanshu Zahn,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Himanshu Zahn,ou=Peons,dc=bitwarden,dc=com", + email: "ZahnH@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luisa Legros,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Luisa Legros,ou=Product Testing,dc=bitwarden,dc=com", + email: "LegrosL@6e3b6563cdc44f58b3c72f890bc814e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brenn Thedford,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Brenn Thedford,ou=Peons,dc=bitwarden,dc=com", + email: "ThedforB@4831c314a96e4dc2a8c277ec349e694c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Albina Kruusement,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Albina Kruusement,ou=Peons,dc=bitwarden,dc=com", + email: "KruusemA@42f51a65b1584dbea4e8a6daf5a3f864.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yueping Yamada,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yueping Yamada,ou=Human Resources,dc=bitwarden,dc=com", + email: "YamadaY@c23d2b465eec4405a3a69954d418e742.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belvia Abbott,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Belvia Abbott,ou=Product Development,dc=bitwarden,dc=com", + email: "AbbottB@fc560954a9334e018a537b8d2963deee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seyma Currier,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Seyma Currier,ou=Administrative,dc=bitwarden,dc=com", + email: "CurrierS@4d4fe6f945794c9fafed4fdb31a8162b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Derrik Steede,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Derrik Steede,ou=Management,dc=bitwarden,dc=com", + email: "SteedeD@e637a483d18442128d105a67f1ef62ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Starla OFarrell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Starla OFarrell,ou=Human Resources,dc=bitwarden,dc=com", + email: "OFarrelS@a922ba05488e401e9633fbd1813d714f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden,dc=com", + email: "SudanJ@7a081f2b6b9244909f5b879d315b7d98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Revkah Bawek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Revkah Bawek,ou=Janitorial,dc=bitwarden,dc=com", + email: "BawekR@39188148fca245a6a6c8dafa540618a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tian Dundin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tian Dundin,ou=Management,dc=bitwarden,dc=com", + email: "DundinT@40c277345d80491f9b505a1f852464d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aiden Dido,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aiden Dido,ou=Product Testing,dc=bitwarden,dc=com", + email: "DidoA@6108e9c33f3243228025c7adcbd2900a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pit Yancey,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pit Yancey,ou=Product Testing,dc=bitwarden,dc=com", + email: "YanceyP@62ebc0cac09c4b59836fa31868a1365d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden,dc=com", + email: "FitzsimS@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aartjan Robson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Aartjan Robson,ou=Product Testing,dc=bitwarden,dc=com", + email: "RobsonA@30c0b9dc05334a06863e7dfa5130cda4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winona Latreille,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Winona Latreille,ou=Product Testing,dc=bitwarden,dc=com", + email: "LatreilW@39fe1cbe98f04968ad60ef7f60dbbcf4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dis Schmeing,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dis Schmeing,ou=Peons,dc=bitwarden,dc=com", + email: "SchmeinD@c40fad5c5c0d4ba88c3868a6e4fb152e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krystalle McHale,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Krystalle McHale,ou=Human Resources,dc=bitwarden,dc=com", + email: "McHaleK@628c910870424ef4b90e6f84f78914eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jastinder Zollman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jastinder Zollman,ou=Peons,dc=bitwarden,dc=com", + email: "ZollmanJ@4f46f81f678a4f9fb404fab87f91cd92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden,dc=com", + email: "KiebelS@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Conny Blackburn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Conny Blackburn,ou=Management,dc=bitwarden,dc=com", + email: "BlackbuC@749481ce636a428dadfe3b049bd9815e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden,dc=com", + email: "BulifanY@89baa82bca2c415183512b5bc8d6890b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lian Tripps,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lian Tripps,ou=Administrative,dc=bitwarden,dc=com", + email: "TrippsL@c8e189f083634334a1fd0d200a0183f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlyn Tiseo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karlyn Tiseo,ou=Management,dc=bitwarden,dc=com", + email: "TiseoK@d22cee8cdc104128b64ec5a3dc27a2cd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Josselyn Sugarman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Josselyn Sugarman,ou=Peons,dc=bitwarden,dc=com", + email: "SugarmaJ@3936c42808104e269d45d901a49adbd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashlie Michailov,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ashlie Michailov,ou=Peons,dc=bitwarden,dc=com", + email: "MichailA@11c4ba17ab574f3bb46442f426b1a2c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden,dc=com", + email: "ElliotM@2cad753cd401488c83abddc338324f15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cindie McNeill,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cindie McNeill,ou=Administrative,dc=bitwarden,dc=com", + email: "McNeillC@8555fc7f07904922939eba5ad297ecac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Izak Katibian,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Izak Katibian,ou=Management,dc=bitwarden,dc=com", + email: "KatibiaI@50a4724a631e41a7bce3841ce6d93bf4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nanci Fiteny,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nanci Fiteny,ou=Management,dc=bitwarden,dc=com", + email: "FitenyN@d5a0d21c338246c5b1eb6d57f0e070b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marijke Tiseo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Marijke Tiseo,ou=Management,dc=bitwarden,dc=com", + email: "TiseoM@5043368b73ac4d89bc4fa2d5f818cf74.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akshay Herlihy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Akshay Herlihy,ou=Peons,dc=bitwarden,dc=com", + email: "HerlihyA@38fa64796bc14d52bff67c18f15afb33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomson Dasch,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Thomson Dasch,ou=Product Development,dc=bitwarden,dc=com", + email: "DaschT@08a7e5e74be04f44a364a958dd103e80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Min StMartin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Min StMartin,ou=Product Development,dc=bitwarden,dc=com", + email: "StMartiM@11066945925d4920b7876e8ee0d7adc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maybelle Karol,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maybelle Karol,ou=Administrative,dc=bitwarden,dc=com", + email: "KarolM@5039da0210e54d01a6092745e22d3750.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cindy Ferner,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cindy Ferner,ou=Janitorial,dc=bitwarden,dc=com", + email: "FernerC@b156fe83e1034ca0b9adcd6fbf561490.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nerti Buskens,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Nerti Buskens,ou=Administrative,dc=bitwarden,dc=com", + email: "BuskensN@65ad77a0a7134c499e3c0bd4fd84a125.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selvaraj Merrick,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Selvaraj Merrick,ou=Management,dc=bitwarden,dc=com", + email: "MerrickS@b6599d8f9a8449eaa08086c058ccaba9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julien Simmons,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Julien Simmons,ou=Human Resources,dc=bitwarden,dc=com", + email: "SimmonsJ@c8572d1903484794a6cbdbc65d71c32b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Conchita Meres,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Conchita Meres,ou=Peons,dc=bitwarden,dc=com", + email: "MeresC@368b49862ec74ac1974a058d04889202.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hedi Herling,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hedi Herling,ou=Peons,dc=bitwarden,dc=com", + email: "HerlingH@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roobbie Bizga,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Roobbie Bizga,ou=Payroll,dc=bitwarden,dc=com", + email: "BizgaR@2578fec05f3c4caebb2ed35da0948626.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Izak Hatten,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Izak Hatten,ou=Payroll,dc=bitwarden,dc=com", + email: "HattenI@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parks McInnis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Parks McInnis,ou=Product Testing,dc=bitwarden,dc=com", + email: "McInnisP@a2ea301b88434726b194e4c9303a1849.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchlachP@01593e28a0c9482fb64a5aadc27c2178.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden,dc=com", + email: "AravamuG@282e36163b2b4782beba5acb316b5795.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden,dc=com", + email: "OtsukaL@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lanae Mullen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lanae Mullen,ou=Administrative,dc=bitwarden,dc=com", + email: "MullenL@999816b5a97d4ddb86dcefd199a0b0ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barby Shiue,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Barby Shiue,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShiueB@38977b5a0c5e49539800366c94e12729.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden,dc=com", + email: "LecuyerM@975d3d03a2c146c2aaca8d2698d4ca32.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rizwan Guindi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rizwan Guindi,ou=Administrative,dc=bitwarden,dc=com", + email: "GuindiR@35c77ed09ca846d78581509ce832a819.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anetta Wray,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anetta Wray,ou=Product Development,dc=bitwarden,dc=com", + email: "WrayA@95581eb6a8bb49808363d11bfe34de80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mougy Mo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mougy Mo,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoM@2b9fd035a3c74d0a924ba78f328d5988.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darline Alfred,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Darline Alfred,ou=Management,dc=bitwarden,dc=com", + email: "AlfredD@e039461a53e74fffbd5670db4243d8b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kayla Boscio,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kayla Boscio,ou=Product Testing,dc=bitwarden,dc=com", + email: "BoscioK@bf35e2dd921644e489469fd3b907aac9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Keys Tavares,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Keys Tavares,ou=Product Development,dc=bitwarden,dc=com", + email: "TavaresK@4b233d8ae0e140eb95be281f6d1b2b93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yutaka Branham,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yutaka Branham,ou=Peons,dc=bitwarden,dc=com", + email: "BranhamY@c63acc13c8a740e8a43edd8fb66a56ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elinore Spallin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Elinore Spallin,ou=Peons,dc=bitwarden,dc=com", + email: "SpallinE@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paige McAleer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Paige McAleer,ou=Peons,dc=bitwarden,dc=com", + email: "McAleerP@f94cfa5e44764457a8389aa50bed2570.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Syyed Cantlie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Syyed Cantlie,ou=Peons,dc=bitwarden,dc=com", + email: "CantlieS@39b915a2bd6147869df44af964c00d61.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morley Trefts,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Morley Trefts,ou=Administrative,dc=bitwarden,dc=com", + email: "TreftsM@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden,dc=com", + email: "GarguilD@e530486f70d4429085f9bb8431928632.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden,dc=com", + email: "BleuerR@6907d207239f489294281cbdab840fe4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kania Bnrecad,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kania Bnrecad,ou=Administrative,dc=bitwarden,dc=com", + email: "BnrecadK@c8fa77eb4aa0482bb77de35245880a29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tammi Zukosky,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tammi Zukosky,ou=Management,dc=bitwarden,dc=com", + email: "ZukoskyT@766a422a35f14846b4f938fc382952b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", + email: "WikkeriC@bed8fc52dc684727b827c4af9874c6ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden,dc=com", + email: "BeriaulS@975433a41ce24ba59e1df5051b6724e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leil Halbedel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Leil Halbedel,ou=Janitorial,dc=bitwarden,dc=com", + email: "HalbedeL@52a128393c654a128a33fd5f6a1b0b66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marni Diduch,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Marni Diduch,ou=Product Development,dc=bitwarden,dc=com", + email: "DiduchM@effb1d073c5447c58f6bf516e842aec5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myriam Desrochers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Myriam Desrochers,ou=Management,dc=bitwarden,dc=com", + email: "DesrochM@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden,dc=com", + email: "FraleyN@a4566d06f4404638b79325caaec894f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Court Karademir,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Court Karademir,ou=Administrative,dc=bitwarden,dc=com", + email: "KarademC@952b2b73f82449c88d6a84f30520f482.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jayendra Goba,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jayendra Goba,ou=Product Testing,dc=bitwarden,dc=com", + email: "GobaJ@b3504db7a95a4f5d855c19ba41cc6dc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden,dc=com", + email: "NawabyD@b04066f723fa4eb2a82846786b428021.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kathrerine Hackett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kathrerine Hackett,ou=Management,dc=bitwarden,dc=com", + email: "HackettK@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akihiko Restrepo,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Akihiko Restrepo,ou=Peons,dc=bitwarden,dc=com", + email: "RestrepA@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andra Guindi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Andra Guindi,ou=Peons,dc=bitwarden,dc=com", + email: "GuindiA@f908b5237c0945e690da76df38180ee9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manda Bigley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Manda Bigley,ou=Payroll,dc=bitwarden,dc=com", + email: "BigleyM@faecae55819d4155ab4f3e2d05dac422.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julienne Mevis,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Julienne Mevis,ou=Human Resources,dc=bitwarden,dc=com", + email: "MevisJ@308ad8d2df924e23912f5ff5c482654c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lesya Willison,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lesya Willison,ou=Payroll,dc=bitwarden,dc=com", + email: "WillisoL@cf6dac232ed84a4abc7d8879d016deb3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giri Rupert,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Giri Rupert,ou=Janitorial,dc=bitwarden,dc=com", + email: "RupertG@bfb93d6aa3b84535ab7cdcdbe7575cd9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Oguz Livingston,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Oguz Livingston,ou=Product Development,dc=bitwarden,dc=com", + email: "LivingsO@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celie Wesselow,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Celie Wesselow,ou=Product Testing,dc=bitwarden,dc=com", + email: "WesseloC@158928e23d3842c2af859e8cbe0620c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adria Hagar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Adria Hagar,ou=Product Development,dc=bitwarden,dc=com", + email: "HagarA@47f0a77dd6c841c49ad5d7e57cf1fb47.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden,dc=com", + email: "PamperiZ@65523206681c4c868fd2bcf7f70e47c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Panch Timleck,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Panch Timleck,ou=Administrative,dc=bitwarden,dc=com", + email: "TimleckP@b3da6460e3c04b23b4e63052d3019a72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caro Finley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Caro Finley,ou=Management,dc=bitwarden,dc=com", + email: "FinleyC@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden,dc=com", + email: "SkedelsR@31412703a38e4215b532681beb725718.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fernand Hunsucker,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Fernand Hunsucker,ou=Management,dc=bitwarden,dc=com", + email: "HunsuckF@167b2e0d041045449bd6e5cdf535c0d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maybelle Tognoni,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Maybelle Tognoni,ou=Peons,dc=bitwarden,dc=com", + email: "TognoniM@63a11e75c405416bb483a040d9d4e6c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sunil Boggan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sunil Boggan,ou=Administrative,dc=bitwarden,dc=com", + email: "BogganS@61ded890c4074ecd9ae572c6057905e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theressa McQueen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Theressa McQueen,ou=Peons,dc=bitwarden,dc=com", + email: "McQueenT@376885ebe2864fefa119c1511a764692.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden,dc=com", + email: "LeshowiN@edb80231cf144f5c88b3c412e4500658.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maala Lessard,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maala Lessard,ou=Janitorial,dc=bitwarden,dc=com", + email: "LessardM@a7d617a2a825451dac842ca97ad12dd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jochem Vuncannon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jochem Vuncannon,ou=Management,dc=bitwarden,dc=com", + email: "VuncannJ@32972334779c4c7daa4ee6042db79c56.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden,dc=com", + email: "VallentM@4f5bbd59c73347d8ba49af7225be0d9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden,dc=com", + email: "PintoLoP@508848e150ab4aa7a8a298273ecfc11f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden,dc=com", + email: "GriffitR@6114ed5b2ab14d15895d683682929e6e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdi Mays,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Magdi Mays,ou=Product Development,dc=bitwarden,dc=com", + email: "MaysM@2f0186b834694a76807386afdcfeea26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suvanee Girard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Suvanee Girard,ou=Product Testing,dc=bitwarden,dc=com", + email: "GirardS@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bin Itah,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bin Itah,ou=Management,dc=bitwarden,dc=com", + email: "ItahB@49634f2a5e564b13843ce74e45cd5b8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raynell Zaydan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Raynell Zaydan,ou=Payroll,dc=bitwarden,dc=com", + email: "ZaydanR@97b597f461ba489aadc904c578cfd811.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mabel Combee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mabel Combee,ou=Product Development,dc=bitwarden,dc=com", + email: "CombeeM@b073d85cb935413fbc2609e807c639c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melania Michelsen,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melania Michelsen,ou=Janitorial,dc=bitwarden,dc=com", + email: "MichelsM@d153d3e5031f4425a2d969907becf2cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hollyanne Java,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hollyanne Java,ou=Product Development,dc=bitwarden,dc=com", + email: "JavaH@5eabae8e0a894e598a102f3cdf87fde5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theadora Irani,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Theadora Irani,ou=Product Development,dc=bitwarden,dc=com", + email: "IraniT@4f30af5fbc174672afcc4005c4a463f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eladio Bolio,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Eladio Bolio,ou=Product Development,dc=bitwarden,dc=com", + email: "BolioE@befc127e0437429096ff0e9082a67904.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden,dc=com", + email: "MuselikS@e1745565942b4cc2a108427c315a00de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermien Paksi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hermien Paksi,ou=Product Development,dc=bitwarden,dc=com", + email: "PaksiH@35e3f59923a249d090ebec943db66364.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrilee Sipple,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Merrilee Sipple,ou=Product Development,dc=bitwarden,dc=com", + email: "SippleM@b847cd495a564fd88ad378e323d86f9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aleece Mielke,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Aleece Mielke,ou=Human Resources,dc=bitwarden,dc=com", + email: "MielkeA@37ac065458a84fc994659f0d86c970d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harinder Sabry,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Harinder Sabry,ou=Administrative,dc=bitwarden,dc=com", + email: "SabryH@b60e4ba7e4ea41b7aff4212cdb1e99c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eamon Brivet,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Eamon Brivet,ou=Peons,dc=bitwarden,dc=com", + email: "BrivetE@1f197603b6704c1dbee512646173cacd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Analiese Chapman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Analiese Chapman,ou=Peons,dc=bitwarden,dc=com", + email: "ChapmanA@b617366a0a1e4d7aa5679a9f680a89f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meghan Murphy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Meghan Murphy,ou=Payroll,dc=bitwarden,dc=com", + email: "MurphyM@6f5b7d94be494781b38d4b416e8e82d2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden,dc=com", + email: "FreylerD@4d3a1b4d7f214d738a08a6641bde06fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nikolia Guin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nikolia Guin,ou=Human Resources,dc=bitwarden,dc=com", + email: "GuinN@272fe3f35e92442897a84fe95f9bd54a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dana Tupling,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dana Tupling,ou=Product Testing,dc=bitwarden,dc=com", + email: "TuplingD@ef271778b0964b66a7d614683b9a3b20.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eliot Havis,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eliot Havis,ou=Payroll,dc=bitwarden,dc=com", + email: "HavisE@a7efbad4dbbd458699231bf651e29d1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryl Codrington,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maryl Codrington,ou=Product Testing,dc=bitwarden,dc=com", + email: "CodringM@6d359ae3f48f4f958525326d5a17bef5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden,dc=com", + email: "KirleyP@8f4ba0e949d54b87a25fce54b7a59ad4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constantia Neubauer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Constantia Neubauer,ou=Product Development,dc=bitwarden,dc=com", + email: "NeubaueC@7448491b00a74a3e95be2c2010be9a72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Savita Sei,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Savita Sei,ou=Human Resources,dc=bitwarden,dc=com", + email: "SeiS@aa6e4c8f93be4db1b434356df7956ece.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yehuda Huret,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yehuda Huret,ou=Peons,dc=bitwarden,dc=com", + email: "HuretY@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden,dc=com", + email: "LobassoO@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Livvie Barlow,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Livvie Barlow,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarlowL@cbcf5ba0830142c9ada57ab9a8c305a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sebastian Burger,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sebastian Burger,ou=Product Development,dc=bitwarden,dc=com", + email: "BurgerS@4d453e35974e4b1795f354665a71c575.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", + email: "VitagliJ@ea0898ff0877402d9c2e36c10881d242.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Datas Cochran,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Datas Cochran,ou=Management,dc=bitwarden,dc=com", + email: "CochranD@7f04a3ff8bcd4af8bad4e2a152862067.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chander Copley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Chander Copley,ou=Administrative,dc=bitwarden,dc=com", + email: "CopleyC@d07a2006b3a1498a93ccb152c91ebf77.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Careers Serapin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Careers Serapin,ou=Product Development,dc=bitwarden,dc=com", + email: "SerapinC@12bcb122c4694351b3e767abc87fcd5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden,dc=com", + email: "KumamotM@bce06db68abd4490849597341c60e88f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden,dc=com", + email: "VanLateH@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mei Ballinger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mei Ballinger,ou=Administrative,dc=bitwarden,dc=com", + email: "BallingM@ca5cfe9e2bd34d4daa1788a54ae9670d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guillema Sarioglu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Guillema Sarioglu,ou=Management,dc=bitwarden,dc=com", + email: "SarioglG@a5c8780c86ee42949bb714c84dc95d44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Samual Colquhoun,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Samual Colquhoun,ou=Administrative,dc=bitwarden,dc=com", + email: "ColquhoS@af38a73cbf364504a84e0d960de55c89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden,dc=com", + email: "VanderhK@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden,dc=com", + email: "KelschR@bd6dedb04a504f54bb83fff2aa24490b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden,dc=com", + email: "TalmontU@2c548192dd0a450e9fdd873045107605.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden,dc=com", + email: "KarunarB@eb263435394f4d6ab9827469c04cb342.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden,dc=com", + email: "SanfordC@e38af9fe725143fba59fa84a861f0258.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hubert Cicci,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hubert Cicci,ou=Janitorial,dc=bitwarden,dc=com", + email: "CicciH@c87d7949ca254b4faaba46ba985802e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chung Gooch,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chung Gooch,ou=Payroll,dc=bitwarden,dc=com", + email: "GoochC@503f6e3a96f3479bbfed7039bc14da05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnnie Trainer,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Johnnie Trainer,ou=Administrative,dc=bitwarden,dc=com", + email: "TrainerJ@7056e30d771245dcacf5054aa8552268.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden,dc=com", + email: "LeitnerS@7279f15d1e764fb3b1076fe52d173852.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camile Latin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Camile Latin,ou=Management,dc=bitwarden,dc=com", + email: "LatinC@b4e0316b69b8470f901342e4f4f1cdf5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Radio Ong,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Radio Ong,ou=Product Development,dc=bitwarden,dc=com", + email: "OngR@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmina Joly,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Carmina Joly,ou=Janitorial,dc=bitwarden,dc=com", + email: "JolyC@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alese Zarate,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Alese Zarate,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZarateA@a2e58ac4aa674923b6c4c06738a79475.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Babb Dpierre,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Babb Dpierre,ou=Human Resources,dc=bitwarden,dc=com", + email: "DpierreB@54603ca23b334ee2ab268dfe7ef5998b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden,dc=com", + email: "RtprelC@ca6d3da0e0ae431b8aa777badba75d1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden,dc=com", + email: "SaranBrD@7dbf2c52de6d4f65b7e5ea3788d86d3e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dalila Forbes,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dalila Forbes,ou=Product Development,dc=bitwarden,dc=com", + email: "ForbesD@a48701aa8d324e65a88e2c654b93d791.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden,dc=com", + email: "AbelowT@42f51a65b1584dbea4e8a6daf5a3f864.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pinder Pedley,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pinder Pedley,ou=Administrative,dc=bitwarden,dc=com", + email: "PedleyP@47a7a80ec8774325ad24930467e7f72e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden,dc=com", + email: "ThibodeL@38889c54d4b943c0b9fc26641a496258.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzi Gribbons,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Suzi Gribbons,ou=Product Development,dc=bitwarden,dc=com", + email: "GribbonS@2dc8c62e4ed74cd885bbff5260cbb174.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hulst Sinasac,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hulst Sinasac,ou=Payroll,dc=bitwarden,dc=com", + email: "SinasacH@e35bcff773e44a658149b86ee66df875.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden,dc=com", + email: "HolthauM@4cf65bbff1914896934f97301ec7a0ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Naser deSalis,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Naser deSalis,ou=Administrative,dc=bitwarden,dc=com", + email: "deSalisN@2620fb87759f467a90bd68158f6c4bde.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden,dc=com", + email: "StarkebC@3ce0a01f27f6425688fde2fe2ac46894.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden,dc=com", + email: "SaltsidG@1e13847ccc3c4ff8a4232936d21cc7f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurise Efstration,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maurise Efstration,ou=Product Testing,dc=bitwarden,dc=com", + email: "EfstratM@8bce8e47b62d4ccfb285ce5d7a43698b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranvir Reetz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ranvir Reetz,ou=Payroll,dc=bitwarden,dc=com", + email: "ReetzR@da92b528ad714b68bb8622f4f41299c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alidia COKOL,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alidia COKOL,ou=Peons,dc=bitwarden,dc=com", + email: "COKOLA@4e3272dfa10d49cf921e5550808b516c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden,dc=com", + email: "LameyA@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shashank Pifko,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shashank Pifko,ou=Janitorial,dc=bitwarden,dc=com", + email: "PifkoS@0eed0e32043f4408ad5c64ea168a59bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden,dc=com", + email: "LegrandM@669b2a81bf23431db2962dc8de3e583a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eulalie Montcalm,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eulalie Montcalm,ou=Management,dc=bitwarden,dc=com", + email: "MontcalE@2229562e57b44d9d8ff347bf88958fa0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calla Voight,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Calla Voight,ou=Peons,dc=bitwarden,dc=com", + email: "VoightC@5e9eaf0e4bc34fb7abad197540e304cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynette Kay,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lynette Kay,ou=Payroll,dc=bitwarden,dc=com", + email: "KayL@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carleen Baxter,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Carleen Baxter,ou=Product Testing,dc=bitwarden,dc=com", + email: "BaxterC@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hubert Brading,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hubert Brading,ou=Product Testing,dc=bitwarden,dc=com", + email: "BradingH@6d3e8dd854344b0786a5b5ed369ee17d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christian Norwood,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Christian Norwood,ou=Management,dc=bitwarden,dc=com", + email: "NorwoodC@9c67311a9b9a47fdab61ba341dc09ba9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Den Fogle,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Den Fogle,ou=Product Testing,dc=bitwarden,dc=com", + email: "FogleD@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden,dc=com", + email: "KardomaL@53730a8d12f040129003f875c65328b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden,dc=com", + email: "MoyceK@ce3c3de60304481ea49d2ee345f72ace.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karol Dummer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Karol Dummer,ou=Product Testing,dc=bitwarden,dc=com", + email: "DummerK@6fd29755fe674bd2b6f70bd1498c6322.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Myrna Samora,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Myrna Samora,ou=Peons,dc=bitwarden,dc=com", + email: "SamoraM@a26a9c7d638a4a938f85aa60d8cdaebf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden,dc=com", + email: "CucciolA@7747f5fffb014d46a2a05d592c7bbe1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KuiSoon Bajada,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=KuiSoon Bajada,ou=Management,dc=bitwarden,dc=com", + email: "BajadaK@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvina Madison,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alvina Madison,ou=Janitorial,dc=bitwarden,dc=com", + email: "MadisonA@ef9dfa73b56a46a59a0d8721e608cbdf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Celyne Krater,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Celyne Krater,ou=Human Resources,dc=bitwarden,dc=com", + email: "KraterC@ac9bf0e4278e4b36812b33be5aa4f608.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pierre Hysler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pierre Hysler,ou=Management,dc=bitwarden,dc=com", + email: "HyslerP@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gordy Fab,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gordy Fab,ou=Administrative,dc=bitwarden,dc=com", + email: "FabG@59b0f3f771e94b3fb34ff9f80e0b476b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mouna LaRue,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mouna LaRue,ou=Product Development,dc=bitwarden,dc=com", + email: "LaRueM@869bcf8a299b41b19a933afcb83f9250.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden,dc=com", + email: "BeaubieC@02a64bb675cb4342ba7d85e9f53c10e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janot Carella,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Janot Carella,ou=Administrative,dc=bitwarden,dc=com", + email: "CarellaJ@99adc70861e74db5b3e496e79ef1d82c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanny Blauer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vanny Blauer,ou=Product Testing,dc=bitwarden,dc=com", + email: "BlauerV@6d9d7b1cc3684aeba19170292652b3d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden,dc=com", + email: "RymkiewR@bf2777e1bdc741d1becaefb23144f2ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dineke Sheth,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dineke Sheth,ou=Payroll,dc=bitwarden,dc=com", + email: "ShethD@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Feliza Camblin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Feliza Camblin,ou=Product Development,dc=bitwarden,dc=com", + email: "CamblinF@56aabbc898544c8399acb68bd9f1ecb0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zonda Bartush,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Zonda Bartush,ou=Payroll,dc=bitwarden,dc=com", + email: "BartushZ@321b01a1b92242e68a892ee12821e529.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden,dc=com", + email: "FainaruB@7e878d5ac7f34222a15cdadf43462965.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Radford Wiklund,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Radford Wiklund,ou=Human Resources,dc=bitwarden,dc=com", + email: "WiklundR@7457f3dc34da48928e7e6436d305b132.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pamella Sosa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Pamella Sosa,ou=Payroll,dc=bitwarden,dc=com", + email: "SosaP@02d364e8b5314cbabf82326287f95a37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marya Felton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marya Felton,ou=Janitorial,dc=bitwarden,dc=com", + email: "FeltonM@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aindrea Cairns,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Aindrea Cairns,ou=Peons,dc=bitwarden,dc=com", + email: "CairnsA@0cc0e22ab87d4684add7d45a9b0fda60.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katherina Deek,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Katherina Deek,ou=Administrative,dc=bitwarden,dc=com", + email: "DeekK@fb4a2dbd97ab48dfa6d2e8c5573179c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardeen Grasman,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ardeen Grasman,ou=Payroll,dc=bitwarden,dc=com", + email: "GrasmanA@f71e60ae996f4c5ebaf5d7f30d0cd29a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Isin VanOorschot,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Isin VanOorschot,ou=Administrative,dc=bitwarden,dc=com", + email: "VanOorsI@a5d2c703b13b45c8a8419761826a32aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karrah Laferriere,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Karrah Laferriere,ou=Product Development,dc=bitwarden,dc=com", + email: "LaferriK@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanae Baynes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sanae Baynes,ou=Human Resources,dc=bitwarden,dc=com", + email: "BaynesS@9db63434a78e416392ae93e3976c1bfc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden,dc=com", + email: "NawabyO@1d0711f3e8d548e39cdf575baeb4ce17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zainab Doan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zainab Doan,ou=Product Testing,dc=bitwarden,dc=com", + email: "DoanZ@aa334b1a73514c2283534b58c2c9420b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cassy Seagle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cassy Seagle,ou=Management,dc=bitwarden,dc=com", + email: "SeagleC@69110fc674fa4f148260f46145056777.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wonda McCallum,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wonda McCallum,ou=Human Resources,dc=bitwarden,dc=com", + email: "McCalluW@b33a6b1f0ec54653bdc3b3ea69c66e04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florina Meredith,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Florina Meredith,ou=Payroll,dc=bitwarden,dc=com", + email: "MereditF@fb292094ced54372abffc8f9b3f21a26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nat Sadeghi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Nat Sadeghi,ou=Peons,dc=bitwarden,dc=com", + email: "SadeghiN@ee0a394b2c0349338a67625cbf75e536.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hendra Viegas,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hendra Viegas,ou=Management,dc=bitwarden,dc=com", + email: "ViegasH@eb1784d5a4ea473392ddeedf92456d2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettie Coutellier,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bettie Coutellier,ou=Payroll,dc=bitwarden,dc=com", + email: "CoutellB@cf6dac232ed84a4abc7d8879d016deb3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden,dc=com", + email: "DaaboulF@8557bf093f9c42cfa11eafadaf8fc9c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davis Connolly,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Davis Connolly,ou=Peons,dc=bitwarden,dc=com", + email: "ConnollD@42e3b9b8ee274c8a9cda68af97a76f9f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carma Rittenhouse,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Carma Rittenhouse,ou=Peons,dc=bitwarden,dc=com", + email: "RittenhC@9d33ffd4da1445afb8600e31e26d24d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden,dc=com", + email: "PastoreK@fdfa91cc52474679acb5b6774dfb094f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarah Longchamps,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sarah Longchamps,ou=Peons,dc=bitwarden,dc=com", + email: "LongchaS@b6298340ba144f0b8733c3b9bced2139.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haroon Neefs,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Haroon Neefs,ou=Human Resources,dc=bitwarden,dc=com", + email: "NeefsH@9e8d975d9dd144cc96db09fe1a3c236a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden,dc=com", + email: "BulkovsI@e0c925d836104225ad7119289c418ab5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenson Soumis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jenson Soumis,ou=Product Testing,dc=bitwarden,dc=com", + email: "SoumisJ@999816b5a97d4ddb86dcefd199a0b0ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minni Malynowsky,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Minni Malynowsky,ou=Product Development,dc=bitwarden,dc=com", + email: "MalynowM@df91f02938d046d8adb3f260f0e722ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Issam Coord,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Issam Coord,ou=Product Testing,dc=bitwarden,dc=com", + email: "CoordI@c3fff83a4ae14cdfafade886fdcd1bf4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynna Salam,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lynna Salam,ou=Administrative,dc=bitwarden,dc=com", + email: "SalamL@88d921807e6d4efcbe781081bb56a4f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Huong Quinones,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Huong Quinones,ou=Payroll,dc=bitwarden,dc=com", + email: "QuinoneH@982161c18d1c4b49bf26a62584cbb202.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Class Picard,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Class Picard,ou=Payroll,dc=bitwarden,dc=com", + email: "PicardC@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden,dc=com", + email: "GeddesG@7756ec2c272a477595e6c246408ba8de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Craig Kneisel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Craig Kneisel,ou=Product Development,dc=bitwarden,dc=com", + email: "KneiselC@f6a15f7382e844a784e99c66615d4c58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fay Franco,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fay Franco,ou=Administrative,dc=bitwarden,dc=com", + email: "FrancoF@c4dfc71b0753437c958ea6ea07827916.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZoellneR@c26660b210ac46199a711eb8c8869838.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden,dc=com", + email: "StrauchG@a202d5209c7047ff8a841ac785c909b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gae Garrett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gae Garrett,ou=Peons,dc=bitwarden,dc=com", + email: "GarrettG@627980edebc9489aa1090404c21eeba1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martita Sales,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Martita Sales,ou=Product Testing,dc=bitwarden,dc=com", + email: "SalesM@67f4fc26cd9549b3a5eca4e7223ddec0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amaleta McClelland,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Amaleta McClelland,ou=Management,dc=bitwarden,dc=com", + email: "McClellA@403ad564c08e47b8824594419bf3ec17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rico Vandevalk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rico Vandevalk,ou=Administrative,dc=bitwarden,dc=com", + email: "VandevaR@415554f5adbe4c70a27d90a1a4deab5a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nanny Kempski,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nanny Kempski,ou=Janitorial,dc=bitwarden,dc=com", + email: "KempskiN@321b01a1b92242e68a892ee12821e529.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antonella Stambouli,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Antonella Stambouli,ou=Management,dc=bitwarden,dc=com", + email: "StambouA@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", + email: "AldhizeB@ae68418003e140fcbb7a4f2dbfa228c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rhett Womack,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rhett Womack,ou=Management,dc=bitwarden,dc=com", + email: "WomackR@9c1452db789c444e9e9d833c048f2e21.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kenneth Afkham,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kenneth Afkham,ou=Peons,dc=bitwarden,dc=com", + email: "AfkhamK@975433a41ce24ba59e1df5051b6724e9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Asmar Dermardiros,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Asmar Dermardiros,ou=Peons,dc=bitwarden,dc=com", + email: "DermardA@239b668cfa5b4428b1bdcd0e10203d09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marabel ORourke,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marabel ORourke,ou=Human Resources,dc=bitwarden,dc=com", + email: "ORourkeM@53d9002f0c614599a72d6e2756021160.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lowry Fahey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lowry Fahey,ou=Management,dc=bitwarden,dc=com", + email: "FaheyL@2efaf5e757274a05a9df0223ae176be1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christy Phalpher,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Christy Phalpher,ou=Administrative,dc=bitwarden,dc=com", + email: "PhalpheC@3313782fad5f448f843eeeeabc4b6528.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden,dc=com", + email: "BinggelD@52e746b148db486a82aefd7394487227.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emr Hacker,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Emr Hacker,ou=Management,dc=bitwarden,dc=com", + email: "HackerE@703805ed33844be785223bfd3a5cb030.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Estelle Robieux,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Estelle Robieux,ou=Peons,dc=bitwarden,dc=com", + email: "RobieuxE@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden,dc=com", + email: "HawryshA@b827aeadf87046f484e6a5d514c5b320.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden,dc=com", + email: "HirshmaS@dfd74a54e46140bbbd208154864b4090.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashraf Maybee,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ashraf Maybee,ou=Administrative,dc=bitwarden,dc=com", + email: "MaybeeA@44096bc0588c471797cb8902036037bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bakel Sils,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bakel Sils,ou=Product Testing,dc=bitwarden,dc=com", + email: "SilsB@a54c7df8ebbf43f99b4f24faf5b4f79c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Linnell Wepf,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Linnell Wepf,ou=Peons,dc=bitwarden,dc=com", + email: "WepfL@4d236ad201e144feaf6ab19937ae47de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Foad Lebeau,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Foad Lebeau,ou=Janitorial,dc=bitwarden,dc=com", + email: "LebeauF@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bal Braverman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bal Braverman,ou=Peons,dc=bitwarden,dc=com", + email: "BravermB@0d3732b7ea1d4d659dee1e0435292c15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", + email: "EslamboG@c8a26fbe5497453bad20457867557fff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Buda Virchick,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Buda Virchick,ou=Janitorial,dc=bitwarden,dc=com", + email: "VirchicB@6489fafbf61a4caab26d661679e37a51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden,dc=com", + email: "AmbachR@19f0b3104cc549c5972e2013b118e2bf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden,dc=com", + email: "KenyonM@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alika Kirchner,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alika Kirchner,ou=Peons,dc=bitwarden,dc=com", + email: "KirchneA@12e070c46c9248eda6657574192aedf1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kata Hagerty,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kata Hagerty,ou=Peons,dc=bitwarden,dc=com", + email: "HagertyK@939e830de4504aab81a7c388f1546624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorraine Polk,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lorraine Polk,ou=Human Resources,dc=bitwarden,dc=com", + email: "PolkL@e822d8d41f85463a96816619505c18d0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tildi Washburn,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tildi Washburn,ou=Product Testing,dc=bitwarden,dc=com", + email: "WashburT@a8e8db7991ef41888b107f53097f906b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minette Reva,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Minette Reva,ou=Payroll,dc=bitwarden,dc=com", + email: "RevaM@45638c0afa5e4a23a27125f3cd5aa607.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farag Wolter,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Farag Wolter,ou=Management,dc=bitwarden,dc=com", + email: "WolterF@0569f2e4dd6a4e4a8a7f59c9d21907c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnnMarie Valentik,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=AnnMarie Valentik,ou=Management,dc=bitwarden,dc=com", + email: "ValentiA@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden,dc=com", + email: "KaiglerR@723327dae88a42b1b49dd35709ea4974.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HooiLee Ronald,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=HooiLee Ronald,ou=Peons,dc=bitwarden,dc=com", + email: "RonaldH@8bb7a419aa064dabb3a5664772478164.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gipsy Raman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gipsy Raman,ou=Human Resources,dc=bitwarden,dc=com", + email: "RamanG@f6485fb9c17a4291ac3724383aaae8e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akram Nagendra,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Akram Nagendra,ou=Human Resources,dc=bitwarden,dc=com", + email: "NagendrA@81a2fc82bdcd4a3582b8aa6d409fc9a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden,dc=com", + email: "OvansB@5411fa97ed104161bed6dae71e8cb050.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glen Majeed,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Glen Majeed,ou=Payroll,dc=bitwarden,dc=com", + email: "MajeedG@f263976411814a39ae02ef1a1447e567.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marieke Pien,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marieke Pien,ou=Janitorial,dc=bitwarden,dc=com", + email: "PienM@3118b07730ef4ee1ba02df2d8acb61a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ingrid Lieure,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ingrid Lieure,ou=Management,dc=bitwarden,dc=com", + email: "LieureI@22b03905699c4e05b21e937a3135b87c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roya Tod,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Roya Tod,ou=Janitorial,dc=bitwarden,dc=com", + email: "TodR@55d1ab95eef3488782a93b7bd4d6acf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeMarcoC@1726f5bfacd044bf871463e64c567d5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christye Meridew,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Christye Meridew,ou=Product Testing,dc=bitwarden,dc=com", + email: "MeridewC@96682e2a4433480fa87b37b2ffbd15b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Patrick Albers,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Patrick Albers,ou=Administrative,dc=bitwarden,dc=com", + email: "AlbersP@d534d4e018bc4513999f8eae2be01976.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doralynn Swyer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Doralynn Swyer,ou=Peons,dc=bitwarden,dc=com", + email: "SwyerD@900b9e73ea874cc4989de9de3d123d54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanni Katsouras,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vanni Katsouras,ou=Management,dc=bitwarden,dc=com", + email: "KatsourV@8429461810c443b49add09521f9c6b46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rogelio McGrath,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rogelio McGrath,ou=Administrative,dc=bitwarden,dc=com", + email: "McGrathR@53f9c944c90445fcb9727989bead4466.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden,dc=com", + email: "BellehuG@6ee7e09ddbec43048b71898f265116eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daphine Kutschke,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Daphine Kutschke,ou=Administrative,dc=bitwarden,dc=com", + email: "KutschkD@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jin Lyall,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jin Lyall,ou=Peons,dc=bitwarden,dc=com", + email: "LyallJ@bd234f19e2034627848e6380646db915.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden,dc=com", + email: "GiguereK@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clerissa Maduri,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Clerissa Maduri,ou=Administrative,dc=bitwarden,dc=com", + email: "MaduriC@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Simonne Lukers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Simonne Lukers,ou=Management,dc=bitwarden,dc=com", + email: "LukersS@f1957adbdc8943baae36c793bc84fd7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacynth Manto,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jacynth Manto,ou=Product Testing,dc=bitwarden,dc=com", + email: "MantoJ@bd920fe5c7d549d08f1567ef15f28b56.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden,dc=com", + email: "BibleE@327358f986b94dcfa1839385e66d7856.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronan Rattray,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ronan Rattray,ou=Human Resources,dc=bitwarden,dc=com", + email: "RattrayR@599d357394854e689476d822b0b57fa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doloritas Ocone,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Doloritas Ocone,ou=Management,dc=bitwarden,dc=com", + email: "OconeD@5393bc67f8ee409593915ca305198b36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Etta Smithson,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Etta Smithson,ou=Human Resources,dc=bitwarden,dc=com", + email: "SmithsoE@101f510449dd4db58ccdaa8d8df89d63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden,dc=com", + email: "MoulsofR@6b9e684fa59647e280b75516ef2c9723.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", + email: "NagenthJ@6c3860a955fe431ca8d48e56cd2c1cc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephanie Pickles,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Stephanie Pickles,ou=Peons,dc=bitwarden,dc=com", + email: "PicklesS@468705ba5f434f3295170aa6ba4375b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karla Hearnden,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Karla Hearnden,ou=Management,dc=bitwarden,dc=com", + email: "HearndeK@f9c4bace7749496ca9d16bcee3ec0a9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden,dc=com", + email: "ArbucklW@df1f69e145f84092af98fbde9b9513c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xenia Schmitz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Xenia Schmitz,ou=Administrative,dc=bitwarden,dc=com", + email: "SchmitzX@866ee03787a64b2f93dee41c244c546a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sande Withrow,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sande Withrow,ou=Administrative,dc=bitwarden,dc=com", + email: "WithrowS@8488bd932270494b964d988d57bbae02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pammie Guilbert,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pammie Guilbert,ou=Peons,dc=bitwarden,dc=com", + email: "GuilberP@8342e98dcb144504925e856ae40dc976.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabina Dolson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sabina Dolson,ou=Payroll,dc=bitwarden,dc=com", + email: "DolsonS@29c3d32bd72d456b98ccdb1f1f704bb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden,dc=com", + email: "McKayC@880f27f5dd8149c7b2b47da8b579fcbf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyril Tullius,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cyril Tullius,ou=Janitorial,dc=bitwarden,dc=com", + email: "TulliusC@15f299e0af604cd282364f75359dfca1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden,dc=com", + email: "AntonelB@e800254840ec4cdd98916b4e083fcf9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden,dc=com", + email: "OgrodniH@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden,dc=com", + email: "PryorC@cd9aa4cc15f7474aa6c5dd1195964bad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agathe Kinney,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Agathe Kinney,ou=Product Testing,dc=bitwarden,dc=com", + email: "KinneyA@ed49844bd2994c2dab1d86730cce0d44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nevsa Botting,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nevsa Botting,ou=Payroll,dc=bitwarden,dc=com", + email: "BottingN@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden,dc=com", + email: "NonkesC@0d089601fe8d4842aca2c104051c6a49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden,dc=com", + email: "QuevillE@679765b52d394d7ba89a59f3e71121ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden,dc=com", + email: "LinebarK@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisse Wallis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melisse Wallis,ou=Janitorial,dc=bitwarden,dc=com", + email: "WallisM@cea72e60113c4004b6d166b7d2581f81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benoite Lenior,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Benoite Lenior,ou=Administrative,dc=bitwarden,dc=com", + email: "LeniorB@20e14dd3d2dd44c8a8925dd175adb2ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marya Lozier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marya Lozier,ou=Janitorial,dc=bitwarden,dc=com", + email: "LozierM@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Access Phelps,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Access Phelps,ou=Product Testing,dc=bitwarden,dc=com", + email: "PhelpsA@97024eb0461a46d6aa6052406945f68c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ned Hammonds,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ned Hammonds,ou=Janitorial,dc=bitwarden,dc=com", + email: "HammondN@ab6be5fd115643a9838774bec61580fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ernest Betterley,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ernest Betterley,ou=Payroll,dc=bitwarden,dc=com", + email: "BetterlE@d7c42a5466a44da1a41df54a07b84c5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kana Licata,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kana Licata,ou=Janitorial,dc=bitwarden,dc=com", + email: "LicataK@7cb67504c13e412a8fec103be024f92b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermione Donahue,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hermione Donahue,ou=Management,dc=bitwarden,dc=com", + email: "DonahueH@3986b5b118ef4d79a84f9f227789123a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rochette Materkowski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rochette Materkowski,ou=Administrative,dc=bitwarden,dc=com", + email: "MaterkoR@9fbbd3b588db493faa565bcde3d4e632.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden,dc=com", + email: "DirbmR@3ee9065d7b6b4e83b28bb68fa8c51cff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lan Simms,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lan Simms,ou=Peons,dc=bitwarden,dc=com", + email: "SimmsL@597ee7a281994e04852496c0f41850b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Troy Bengtson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Troy Bengtson,ou=Payroll,dc=bitwarden,dc=com", + email: "BengtsoT@6814734c8a1a4426b43d87c3c6b525f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden,dc=com", + email: "PeixotoS@938a7a8d77714dae9ee57a1ad9691680.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natka Moritz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Natka Moritz,ou=Product Testing,dc=bitwarden,dc=com", + email: "MoritzN@49a7dfb897474c7dad3d0d47056d73c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden,dc=com", + email: "PryszlaT@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brook Clifton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brook Clifton,ou=Management,dc=bitwarden,dc=com", + email: "CliftonB@3addc4fa91024158bfa9904c24f12164.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maggee Colton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Maggee Colton,ou=Management,dc=bitwarden,dc=com", + email: "ColtonM@e97e68f305e3440c9129677cf226a2f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden,dc=com", + email: "HolinskB@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rae Willey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rae Willey,ou=Administrative,dc=bitwarden,dc=com", + email: "WilleyR@83f3b1a626774d71882e96bf3396b700.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden,dc=com", + email: "MattiuzS@770858a0ba27427fa80380c180b40ddb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terence Murray,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Terence Murray,ou=Janitorial,dc=bitwarden,dc=com", + email: "MurrayT@bbd1af679b0c4f5eb725bdbe4b2aee6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden,dc=com", + email: "OstapiwJ@ceef53b02cf14daf8dcf3b446c7764b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ransom Grande,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ransom Grande,ou=Payroll,dc=bitwarden,dc=com", + email: "GrandeR@7728cd06c9f24725b1335c5276362320.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lindy Clinger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lindy Clinger,ou=Human Resources,dc=bitwarden,dc=com", + email: "ClingerL@6d69b599308f48ccb963c12b5968912d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clyde Hanser,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clyde Hanser,ou=Management,dc=bitwarden,dc=com", + email: "HanserC@d6c8569604a646f9806f25f3b316b85e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden,dc=com", + email: "MastersW@4445babf8a7d4d96bd8cbd44d9ed3bc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charita Rainsforth,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Charita Rainsforth,ou=Payroll,dc=bitwarden,dc=com", + email: "RainsfoC@2babe722fdef4b0fa98bbd24f66fbecf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden,dc=com", + email: "BaylessM@04bb8c62899b41dd85b281860ec060e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Remo Duchesne,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Remo Duchesne,ou=Human Resources,dc=bitwarden,dc=com", + email: "DuchesnR@87b6080a8e904aef9833756715afd0f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Radames Verrilli,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Radames Verrilli,ou=Product Testing,dc=bitwarden,dc=com", + email: "VerrillR@5a335fc442a34146b7e0bc22b5e52fbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alanna Dillard,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Alanna Dillard,ou=Janitorial,dc=bitwarden,dc=com", + email: "DillardA@d7bcc941bf9944f4a0cf58f580b041c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chantal Neander,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Chantal Neander,ou=Administrative,dc=bitwarden,dc=com", + email: "NeanderC@5e9773b417544d1f926187faa8565de5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leese Nagendra,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Leese Nagendra,ou=Management,dc=bitwarden,dc=com", + email: "NagendrL@5ca487ddf481407baca0f7ac58492fb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden,dc=com", + email: "SilversR@21813dd069254b74bf250b7db15a806f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erena Ticzon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Erena Ticzon,ou=Payroll,dc=bitwarden,dc=com", + email: "TiczonE@9077504eeb5f4af282c6c876f04ee045.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden,dc=com", + email: "MaludziM@d099b87b6d4c4f55806f0c8cf8dbfe18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden,dc=com", + email: "TangrenC@9df76257bd034e648ad7f06b4b88283f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Far Fogelson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Far Fogelson,ou=Administrative,dc=bitwarden,dc=com", + email: "FogelsoF@940a7593b88c4fb0afde713027fc2a16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anne Kobeski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anne Kobeski,ou=Administrative,dc=bitwarden,dc=com", + email: "KobeskiA@4f265a55f05f44d196ed2a8ef628acec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ursola Hastie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ursola Hastie,ou=Payroll,dc=bitwarden,dc=com", + email: "HastieU@a34bb7d1546c462cb51396798bb22845.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden,dc=com", + email: "LichtenB@ec913a211e094c66bf75ab14cafe8fb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden,dc=com", + email: "HiltzT@ab27f4e751074bd087dace4a33698f66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Germaine Wingate,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Germaine Wingate,ou=Product Testing,dc=bitwarden,dc=com", + email: "WingateG@a87ac40ce2a547c8a852f41a3d6dfeae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olympia Peets,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Olympia Peets,ou=Payroll,dc=bitwarden,dc=com", + email: "PeetsO@db51bc9053f3446197c0ce77497e73c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sati Varughese,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sati Varughese,ou=Janitorial,dc=bitwarden,dc=com", + email: "VarugheS@12257cabb5eb48ceb908520b2745a457.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tab Gozen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tab Gozen,ou=Human Resources,dc=bitwarden,dc=com", + email: "GozenT@520c5bcfe42945ff9a9bc4329f8d9224.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden,dc=com", + email: "DunlopB@c9f8cbb8d3d848c99fea02136e8a89f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ioana Newsome,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ioana Newsome,ou=Administrative,dc=bitwarden,dc=com", + email: "NewsomeI@c41f8f7aea354718b6ea3277359c3684.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden,dc=com", + email: "DpnqaW@829d5713be204a9ab0a7f267371638c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden,dc=com", + email: "RuffoloS@28a9681724804070b81d5f99c070a25f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Damian Lescot,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Damian Lescot,ou=Product Development,dc=bitwarden,dc=com", + email: "LescotD@6bb09be3d23943f6925bf796ee13d06b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raz Roseland,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Raz Roseland,ou=Payroll,dc=bitwarden,dc=com", + email: "RoselanR@39eecbf6644e41e6a54aa634c1d5a5be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden,dc=com", + email: "VossM@6e1fed861212421a9e034f7ade197c18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vivianna Lackie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vivianna Lackie,ou=Management,dc=bitwarden,dc=com", + email: "LackieV@c6135533c1c14dabb3956121df0f7a96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hadi Freeley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hadi Freeley,ou=Janitorial,dc=bitwarden,dc=com", + email: "FreeleyH@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carol Sarson,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carol Sarson,ou=Management,dc=bitwarden,dc=com", + email: "SarsonC@9d5ea794acf845deab8b5f3d0cc82f3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden,dc=com", + email: "PaolettM@658d341f53c7427cb916d5817479bb06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailene Mackin,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ailene Mackin,ou=Janitorial,dc=bitwarden,dc=com", + email: "MackinA@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden,dc=com", + email: "RollinsU@33df80476cec44768009e5ea91fdde4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden,dc=com", + email: "JasminP@9f7e1d164477458983f7ecf611ccd053.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bret Winicki,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Bret Winicki,ou=Product Testing,dc=bitwarden,dc=com", + email: "WinickiB@54f117c8b36b486ab03de0f2d082701e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hatty Latchford,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hatty Latchford,ou=Peons,dc=bitwarden,dc=com", + email: "LatchfoH@0600d7e5efe7437ab4bf4188ef381ca8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden,dc=com", + email: "SwepstoM@f5f5c7e1f86f41029a11eb9627ca25be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trey Baenziger,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Trey Baenziger,ou=Product Testing,dc=bitwarden,dc=com", + email: "BaenzigT@2c4a787e446b470797a2c3a15157473d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ioan Elsing,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ioan Elsing,ou=Product Testing,dc=bitwarden,dc=com", + email: "ElsingI@2a96d5dbd54f4fdb9c20889b618e8eea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joy Ferrara,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Joy Ferrara,ou=Payroll,dc=bitwarden,dc=com", + email: "FerraraJ@f69c90cc2b8c4a8e9725fac3e3a7a1d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", + email: "HazeldiC@582578f4c0a34d7283b52c37fe385620.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rowe Clinton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Rowe Clinton,ou=Product Testing,dc=bitwarden,dc=com", + email: "ClintonR@39cdc253bc3c4fafbda637c79741172e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dolores McCafferty,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dolores McCafferty,ou=Product Development,dc=bitwarden,dc=com", + email: "McCaffeD@9fb3bab6a5274e42930ef0c4e486700b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luciana Lepore,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Luciana Lepore,ou=Administrative,dc=bitwarden,dc=com", + email: "LeporeL@d257ebd18e114f6aa84afd223eee79f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden,dc=com", + email: "CicchinC@75db88f614404021a489793ab108bedb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jimmie Korest,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jimmie Korest,ou=Administrative,dc=bitwarden,dc=com", + email: "KorestJ@735bae6f17be4d659b3d005e2e886c13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden,dc=com", + email: "CrackneK@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Martelle Reno,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Martelle Reno,ou=Human Resources,dc=bitwarden,dc=com", + email: "RenoM@de1b941b029b482ba2e81cfa3a5aa97c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hock Chilausky,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hock Chilausky,ou=Administrative,dc=bitwarden,dc=com", + email: "ChilausH@8dfc1cdc4f364e48b56261d47a4ab828.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teddie Bulan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Teddie Bulan,ou=Janitorial,dc=bitwarden,dc=com", + email: "BulanT@4136b563ed9340ee98f3a89751b3b749.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lavonda Rowsell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lavonda Rowsell,ou=Management,dc=bitwarden,dc=com", + email: "RowsellL@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden,dc=com", + email: "BabasakA@9eaee5a095454441a8ff73a3e26fa008.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden,dc=com", + email: "DaneshzP@a312c5a631954b3083418977a35fbc96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorinda Nolet,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lorinda Nolet,ou=Payroll,dc=bitwarden,dc=com", + email: "NoletL@87d497e060994207b70ef7bd8c3d6175.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ike Outage,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ike Outage,ou=Human Resources,dc=bitwarden,dc=com", + email: "OutageI@1d45ed10a4c94ef092969b5e721cde30.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erin Dolson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Erin Dolson,ou=Peons,dc=bitwarden,dc=com", + email: "DolsonE@834d5c62ddb748bdb27bdbef9776c699.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden,dc=com", + email: "RodriguZ@587817ef80f642439eb2bd6954e605f0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anderson Sitar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anderson Sitar,ou=Management,dc=bitwarden,dc=com", + email: "SitarA@75858e9b0a57431ea93369d3d0fdb55e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden,dc=com", + email: "GrandboC@f8828e0649db4c3db49f92ffdaeb1fea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranga Cawley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ranga Cawley,ou=Product Testing,dc=bitwarden,dc=com", + email: "CawleyR@8a772ad7c8a24040a4f2b442f7aa7a04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kylie Parnell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kylie Parnell,ou=Human Resources,dc=bitwarden,dc=com", + email: "ParnellK@e28cbc2c5f7b45ddab3e3b415504a46c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden,dc=com", + email: "TestingG@388f37e043f44f87a961652591a7a940.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Millisent Ladymon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Millisent Ladymon,ou=Product Development,dc=bitwarden,dc=com", + email: "LadymonM@98315d8e8bc34b77b08ac74a18e3be73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden,dc=com", + email: "ReinbotC@65d073567be540b69713d5ac0dbae37f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilda Turcot,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tilda Turcot,ou=Administrative,dc=bitwarden,dc=com", + email: "TurcotT@29d0d437b2c147b0847b9dd994ec881e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yuji McCabe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yuji McCabe,ou=Payroll,dc=bitwarden,dc=com", + email: "McCabeY@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pen Yost,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Pen Yost,ou=Janitorial,dc=bitwarden,dc=com", + email: "YostP@a58f1d89c8df4bb585be88ea46688614.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Traci Ahdieh,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Traci Ahdieh,ou=Management,dc=bitwarden,dc=com", + email: "AhdiehT@0d3a1096e9114165b169e9981629dc14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fay Deugau,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fay Deugau,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeugauF@c928e664ca344d17b905e23403ffeabf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Inna MokFung,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Inna MokFung,ou=Administrative,dc=bitwarden,dc=com", + email: "MokFungI@a99084400fcf4b279e00215493abf581.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden,dc=com", + email: "BahgatT@efcd1b5597e34989b53d787ed4a06081.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tehchi McEwan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tehchi McEwan,ou=Peons,dc=bitwarden,dc=com", + email: "McEwanT@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tats Graves,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tats Graves,ou=Administrative,dc=bitwarden,dc=com", + email: "GravesT@a6ec4676b0ad44f28916d133e3a83b4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden,dc=com", + email: "AnnabelT@4fe51546324e43adb896246907c2c135.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nakina Steranka,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nakina Steranka,ou=Payroll,dc=bitwarden,dc=com", + email: "SterankN@2daa2d54a3ef4729ab85003e87e24fc2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilda Reid,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gilda Reid,ou=Peons,dc=bitwarden,dc=com", + email: "ReidG@dec219c60891448d9130e91ee40108cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden,dc=com", + email: "McellisH@7e878d5ac7f34222a15cdadf43462965.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arnis Truchon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Arnis Truchon,ou=Administrative,dc=bitwarden,dc=com", + email: "TruchonA@912fbf9c89084a08a95b13d9b901e072.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden,dc=com", + email: "DocumenR@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden,dc=com", + email: "AckwoodS@bebbec64fc5b426aa6d6b13aab8ac6c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paige Wanzeck,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Paige Wanzeck,ou=Management,dc=bitwarden,dc=com", + email: "WanzeckP@be6364f0dd5d4b9ca40fd1cd6b60dc01.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dutch HSI,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dutch HSI,ou=Product Testing,dc=bitwarden,dc=com", + email: "HSID@f1796b877596418d9a10887e44f60c73.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adda Danai,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Adda Danai,ou=Product Development,dc=bitwarden,dc=com", + email: "DanaiA@2229562e57b44d9d8ff347bf88958fa0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Netty Muttaqi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Netty Muttaqi,ou=Management,dc=bitwarden,dc=com", + email: "MuttaqiN@05834ac23b2d4ffd8c19e87e4a8a3312.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karly Breglec,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karly Breglec,ou=Peons,dc=bitwarden,dc=com", + email: "BreglecK@7bea05cd51e741778b53f257dcc46e63.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden,dc=com", + email: "GerbecA@4adccb8182214b56b2168ff34b029365.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gurdip Thornber,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gurdip Thornber,ou=Management,dc=bitwarden,dc=com", + email: "ThornbeG@7470f93c470941c983e3e9faa8bed631.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulcea Bassett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dulcea Bassett,ou=Management,dc=bitwarden,dc=com", + email: "BassettD@6d2ee1c01cd84a73a333667538c9c7b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caprice Selent,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Caprice Selent,ou=Payroll,dc=bitwarden,dc=com", + email: "SelentC@abccdcf5035347f79868c63de7257f89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hemant Remillard,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Hemant Remillard,ou=Janitorial,dc=bitwarden,dc=com", + email: "RemillaH@cc172d717b9241f0a28f83e3ce74fb85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilak Odgers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tilak Odgers,ou=Management,dc=bitwarden,dc=com", + email: "OdgersT@d7b181ccc8954040a7c4160403df7781.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaela Wooff,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kaela Wooff,ou=Peons,dc=bitwarden,dc=com", + email: "WooffK@c78a9a65ca75452787721ced31a98916.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeardurG@369d0d96577549cc8a38c9240b9041ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden,dc=com", + email: "DolezalB@fadd1eac8fe2451fa3ba21f515baaf1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grey Krakowetz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Grey Krakowetz,ou=Administrative,dc=bitwarden,dc=com", + email: "KrakoweG@5c9e892ecd964d17bdc57422f30b14b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Canute Ladymon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Canute Ladymon,ou=Payroll,dc=bitwarden,dc=com", + email: "LadymonC@1cec494b2c6b4b8a8fb44bcdcbcfca34.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alex Lumley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Alex Lumley,ou=Human Resources,dc=bitwarden,dc=com", + email: "LumleyA@c7211550a0e54b11899929b0d44158ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gunars Runkel,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gunars Runkel,ou=Peons,dc=bitwarden,dc=com", + email: "RunkelG@bfbe96af9d94476ba3dcfc88f7bdf41b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Careers McAdorey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Careers McAdorey,ou=Management,dc=bitwarden,dc=com", + email: "McAdoreC@a8e48e7f01fb4831b7bf783525861229.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardelia Bunner,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ardelia Bunner,ou=Management,dc=bitwarden,dc=com", + email: "BunnerA@48da65776d804c88bd44538c39d70bac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fekri Hunike,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fekri Hunike,ou=Product Testing,dc=bitwarden,dc=com", + email: "HunikeF@4440633f8f29482c8743bf0c056d529c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adey Shippen,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Adey Shippen,ou=Peons,dc=bitwarden,dc=com", + email: "ShippenA@23d4be833d7746b6959f35fd9cc7acb5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malina Lederman,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Malina Lederman,ou=Janitorial,dc=bitwarden,dc=com", + email: "LedermaM@b4a96c186a084a79b91245984247afc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden,dc=com", + email: "KikutaC@392a4a6a368341beb07fcc7da7744c10.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perry Maryak,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Perry Maryak,ou=Product Development,dc=bitwarden,dc=com", + email: "MaryakP@c22edd5791c346768ee9b376006f6c67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vance Ruppert,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vance Ruppert,ou=Payroll,dc=bitwarden,dc=com", + email: "RuppertV@20c9c762ac48445f91be8a70247647f6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Peg Toscano,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Peg Toscano,ou=Human Resources,dc=bitwarden,dc=com", + email: "ToscanoP@6ea643c033164b309c315ce3b4972cd5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Monah Tsonos,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Monah Tsonos,ou=Product Testing,dc=bitwarden,dc=com", + email: "TsonosM@9f17762c03e9474abb40044c838d96f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meade Latulippe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Meade Latulippe,ou=Janitorial,dc=bitwarden,dc=com", + email: "LatulipM@c4952a4f27294740adcb993c369618a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karan Piper,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karan Piper,ou=Peons,dc=bitwarden,dc=com", + email: "PiperK@44bcfd07218c489eba7387452f761d66.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chander Paulus,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Chander Paulus,ou=Product Testing,dc=bitwarden,dc=com", + email: "PaulusC@b00dae30a7d643d19965ff3ced64a2ec.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Parham Cisco,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Parham Cisco,ou=Product Testing,dc=bitwarden,dc=com", + email: "CiscoP@16a262560039498cb0b40791fe72917a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden,dc=com", + email: "HaganV@4a8d22894cf24b2dbddb3ccac895cba0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charmain Chahal,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Charmain Chahal,ou=Payroll,dc=bitwarden,dc=com", + email: "ChahalC@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden,dc=com", + email: "PinizzoA@51229efcbb5c42119b299e0a2768aeae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden,dc=com", + email: "SobkowA@7979cefae37f498d8fb0f14251a8537d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janelle Tucker,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Janelle Tucker,ou=Janitorial,dc=bitwarden,dc=com", + email: "TuckerJ@d49ef3511c504afba6eb7b305ddc6daf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angie Tesch,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Angie Tesch,ou=Janitorial,dc=bitwarden,dc=com", + email: "TeschA@48da65776d804c88bd44538c39d70bac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Traci Wolter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Traci Wolter,ou=Human Resources,dc=bitwarden,dc=com", + email: "WolterT@f0da7bbf51f0472cbdc26a3d196ad9f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Azmina Bergeson,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Azmina Bergeson,ou=Peons,dc=bitwarden,dc=com", + email: "BergesoA@01414db3388a4e4b949f31547b79484c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dolly Dane,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Dolly Dane,ou=Peons,dc=bitwarden,dc=com", + email: "DaneD@bc4cae64b5dd4867a72d318eb0fa8dc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Narendra Matsuzawa,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Narendra Matsuzawa,ou=Management,dc=bitwarden,dc=com", + email: "MatsuzaN@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden,dc=com", + email: "KiblerZ@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Souza Austin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Souza Austin,ou=Administrative,dc=bitwarden,dc=com", + email: "AustinS@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden,dc=com", + email: "FerruzzH@b36741628ac5411aa6219ea976eb30f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden,dc=com", + email: "WithrowL@30c200fc237249269682c9ad7e2548d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chrissy Marren,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Chrissy Marren,ou=Payroll,dc=bitwarden,dc=com", + email: "MarrenC@8b67b2d7bd1144ea807341eb074f69ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden,dc=com", + email: "VanSchoB@82a602f457ae4136b678ebd6177ccf89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tandie Virgoe,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Tandie Virgoe,ou=Peons,dc=bitwarden,dc=com", + email: "VirgoeT@6befdabbbc374615aeeed6f7a15c3c4b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calley Naujoks,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Calley Naujoks,ou=Management,dc=bitwarden,dc=com", + email: "NaujoksC@68503c7f9b494f9789d4c554a08c5cad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Regan Neilsen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Regan Neilsen,ou=Administrative,dc=bitwarden,dc=com", + email: "NeilsenR@995d86ac0711408aa561a9fbb566ede2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Katja Waterman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Katja Waterman,ou=Product Development,dc=bitwarden,dc=com", + email: "WatermaK@c145b5c52b41469195e7c7d838041281.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sol Royals,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sol Royals,ou=Human Resources,dc=bitwarden,dc=com", + email: "RoyalsS@612e8eb188de48388f43236fca542654.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=KahMing Dubreck,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=KahMing Dubreck,ou=Administrative,dc=bitwarden,dc=com", + email: "DubreckK@b2c537a3f6174546b2a7b1777d2dea4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melitta Hunter,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Melitta Hunter,ou=Product Testing,dc=bitwarden,dc=com", + email: "HunterM@f26a95f0337144a7a3fdc9a2ef672cb1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trang Tucker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Trang Tucker,ou=Product Testing,dc=bitwarden,dc=com", + email: "TuckerT@08455693013d466f8b3622782a9a4935.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden,dc=com", + email: "DiFalcoE@75f92a023d754e1aabb5bf6fcaf0b4f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZinkieN@17084ac6bac544e082e8e10baef9e88a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Garth Alfaro,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Garth Alfaro,ou=Management,dc=bitwarden,dc=com", + email: "AlfaroG@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rickie Genge,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rickie Genge,ou=Human Resources,dc=bitwarden,dc=com", + email: "GengeR@406a5f63a2784737a47e7de7eb972559.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariette Piggott,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mariette Piggott,ou=Administrative,dc=bitwarden,dc=com", + email: "PiggottM@2e9e3fdb5ac94378ae0798f03ed2af05.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darla Schierbaum,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Darla Schierbaum,ou=Payroll,dc=bitwarden,dc=com", + email: "SchierbD@7b9b134496944c719de5669c91d7d638.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden,dc=com", + email: "WesolowD@da38cf4466c54f10aa416fd5fe880608.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Technical Ely,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Technical Ely,ou=Product Development,dc=bitwarden,dc=com", + email: "ElyT@766a422a35f14846b4f938fc382952b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Merrill Loa,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Merrill Loa,ou=Product Testing,dc=bitwarden,dc=com", + email: "LoaM@c0d54806b2fc4ad4b2d446db11ce599e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jojo Liew,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jojo Liew,ou=Human Resources,dc=bitwarden,dc=com", + email: "LiewJ@0fae6975893e4404981e1b0278fd9893.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noemi Gulko,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Noemi Gulko,ou=Janitorial,dc=bitwarden,dc=com", + email: "GulkoN@8e3480814c5a4c65afb875411a3ea9b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aurel Mullins,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Aurel Mullins,ou=Administrative,dc=bitwarden,dc=com", + email: "MullinsA@0971bdcc719c47c9919ba37996d1ed23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raine Hauck,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Raine Hauck,ou=Product Testing,dc=bitwarden,dc=com", + email: "HauckR@9aa6fa345e3b4b228034222cc7155638.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Munaz Mand,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Munaz Mand,ou=Product Development,dc=bitwarden,dc=com", + email: "MandM@ef559f52881646a99efdc2bb68264cd2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zoe Leinen,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zoe Leinen,ou=Product Development,dc=bitwarden,dc=com", + email: "LeinenZ@6c30ff46c5cd461da39b83f9603a1955.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bihari Simkin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bihari Simkin,ou=Management,dc=bitwarden,dc=com", + email: "SimkinB@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wannell Rivard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Wannell Rivard,ou=Administrative,dc=bitwarden,dc=com", + email: "RivardW@d69b98c45b46402fa345a4972b0e5bd0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adey Daquano,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Adey Daquano,ou=Payroll,dc=bitwarden,dc=com", + email: "DaquanoA@7b2fb8bfc0d04f79b6758cb3412b518b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emeline Drewes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Emeline Drewes,ou=Peons,dc=bitwarden,dc=com", + email: "DrewesE@dc5cce98288c46dd8403e25e36918671.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden,dc=com", + email: "ShtulmaT@c18f3219cf9044e5a9cd277268cdc426.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden,dc=com", + email: "HoffsteH@be2317e07ddc4fd1bc1dad5673b21da8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rayshell Dow,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rayshell Dow,ou=Administrative,dc=bitwarden,dc=com", + email: "DowR@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sohayla Claggett,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sohayla Claggett,ou=Management,dc=bitwarden,dc=com", + email: "ClaggetS@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden,dc=com", + email: "BickforJ@494658ad0bff4810b3d5b5096c85b666.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden,dc=com", + email: "KuykendD@4c3bb131ea5148028bf43ce4a8c06b23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debora Lauzon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Debora Lauzon,ou=Human Resources,dc=bitwarden,dc=com", + email: "LauzonD@ecf37ebd8f10485fa151b2f40942afe7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", + email: "SaidzadG@8fd45f1616e84409af12cbcbd209c8d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aggi Culver,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aggi Culver,ou=Janitorial,dc=bitwarden,dc=com", + email: "CulverA@aad296bdf0c3455e889336146dbd77fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Delcine Pesold,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Delcine Pesold,ou=Management,dc=bitwarden,dc=com", + email: "PesoldD@752c449dfd0b47e48d05c032fa7b3f44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pauline Bullion,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pauline Bullion,ou=Management,dc=bitwarden,dc=com", + email: "BullionP@29d43cca18a84193868799ddbf3f9a87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tibor Belley,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tibor Belley,ou=Product Development,dc=bitwarden,dc=com", + email: "BelleyT@01d69d83f76e4ee599aaa94ccfd4bc18.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vere Cushing,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vere Cushing,ou=Management,dc=bitwarden,dc=com", + email: "CushingV@b7566f62e9e44dcd9dcaead50b2af46e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorris Joshi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dorris Joshi,ou=Administrative,dc=bitwarden,dc=com", + email: "JoshiD@a989bc4f0b1a4c80b486110777685af8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Victor Hollenbach,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Victor Hollenbach,ou=Payroll,dc=bitwarden,dc=com", + email: "HollenbV@78d24e557fdb498286a91f7c5eae2c30.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joyan Irvin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joyan Irvin,ou=Administrative,dc=bitwarden,dc=com", + email: "IrvinJ@17ea3745d5a8427d897fcb5d0d2d0c15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zoenka Ivan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Zoenka Ivan,ou=Peons,dc=bitwarden,dc=com", + email: "IvanZ@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wylo Rummans,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wylo Rummans,ou=Product Development,dc=bitwarden,dc=com", + email: "RummansW@e51ab927442b42fd83641345150b54a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tyler McKibbin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tyler McKibbin,ou=Product Development,dc=bitwarden,dc=com", + email: "McKibbiT@2ff2f928aa234ef4a8cf382c36a615f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorolice Puelma,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dorolice Puelma,ou=Payroll,dc=bitwarden,dc=com", + email: "PuelmaD@a5a8edfdd5c4429e9cf280f8b1f9e995.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anwar Mauck,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Anwar Mauck,ou=Management,dc=bitwarden,dc=com", + email: "MauckA@3abcba99c85c41ab8cf93d708c5ee721.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gillian Weihs,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gillian Weihs,ou=Payroll,dc=bitwarden,dc=com", + email: "WeihsG@48309888d14d433584a39c4104dff764.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Freddy Boase,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Freddy Boase,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoaseF@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manny Degraauw,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Manny Degraauw,ou=Payroll,dc=bitwarden,dc=com", + email: "DegraauM@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zahir Meagher,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Zahir Meagher,ou=Administrative,dc=bitwarden,dc=com", + email: "MeagherZ@e83c7fe22d2948c19d5fbcdc0bcbd551.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chiho Kowalski,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Chiho Kowalski,ou=Administrative,dc=bitwarden,dc=com", + email: "KowalskC@037b2dcc29f840fa8751d096972382fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jan Gittins,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jan Gittins,ou=Human Resources,dc=bitwarden,dc=com", + email: "GittinsJ@ba3add3fa0e5474bb8115e77e9d392b7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nalani Madsen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nalani Madsen,ou=Management,dc=bitwarden,dc=com", + email: "MadsenN@95f57db35aaf437db0b68cb389e1a35e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Casie Banerd,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Casie Banerd,ou=Human Resources,dc=bitwarden,dc=com", + email: "BanerdC@2f216938e95c4fb6a803f01467935076.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beryle Camillucci,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Beryle Camillucci,ou=Management,dc=bitwarden,dc=com", + email: "CamilluB@2c11f6a276034996a4ddc6513434ce9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lubomyr Duran,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lubomyr Duran,ou=Product Development,dc=bitwarden,dc=com", + email: "DuranL@411afe1416f249ecaeca51c1080b0066.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertruda Boyajian,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gertruda Boyajian,ou=Peons,dc=bitwarden,dc=com", + email: "BoyajiaG@29c4d99a2e804a9e9c7906925415c847.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyanna Roehl,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dyanna Roehl,ou=Payroll,dc=bitwarden,dc=com", + email: "RoehlD@0aab2eb5b2a945ccbb114c330fb9e2b8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kikelia Kember,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kikelia Kember,ou=Payroll,dc=bitwarden,dc=com", + email: "KemberK@7a95e2b863354946b5a2f7998b9af35e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yalcin Tanferna,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Yalcin Tanferna,ou=Management,dc=bitwarden,dc=com", + email: "TanfernY@7e48be8bff9a4d928095a1943ae64cc5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Justina Copello,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Justina Copello,ou=Janitorial,dc=bitwarden,dc=com", + email: "CopelloJ@7e23b8de808e4c8687b7d328cf2c1f4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bam Luin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bam Luin,ou=Administrative,dc=bitwarden,dc=com", + email: "LuinB@3714b871eeed4ef2ad7f86d04b774a06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden,dc=com", + email: "WisniewM@aeb0dceac3c04d0aac41074478a4ecb3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frieda Dulaney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Frieda Dulaney,ou=Product Development,dc=bitwarden,dc=com", + email: "DulaneyF@e87afd88a7464f34a9f1cefeecf49e3d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Les Allahdin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Les Allahdin,ou=Administrative,dc=bitwarden,dc=com", + email: "AllahdiL@d3f6a0448cf246c98f76952766172afe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melek Fennessey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melek Fennessey,ou=Management,dc=bitwarden,dc=com", + email: "FennessM@0a55e98e06b6402b83131ff9ddd68552.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quon Zukosky,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Quon Zukosky,ou=Management,dc=bitwarden,dc=com", + email: "ZukoskyQ@8eaa02b53fec48d0842607d198bfec39.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andrea ONeall,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Andrea ONeall,ou=Product Testing,dc=bitwarden,dc=com", + email: "ONeallA@995d47539bff49b8a85a5ecb474bd257.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Setsuko Keck,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Setsuko Keck,ou=Janitorial,dc=bitwarden,dc=com", + email: "KeckS@4a913335a7f143d2b385347b29ca43fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruchel Borosh,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ruchel Borosh,ou=Management,dc=bitwarden,dc=com", + email: "BoroshR@a4ebc705137a4ddb9ebce3e4b095eec3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chloette Zadow,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chloette Zadow,ou=Peons,dc=bitwarden,dc=com", + email: "ZadowC@006106eb4fa5430982fa52048d307012.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarena Fothergill,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sarena Fothergill,ou=Management,dc=bitwarden,dc=com", + email: "FothergS@78e66db4daf244269be3e0f7fc49db85.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaquith Canfield,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jaquith Canfield,ou=Product Development,dc=bitwarden,dc=com", + email: "CanfielJ@ddb5a80ff9f74390b91dd39ff94d365e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darell Carrillo,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Darell Carrillo,ou=Human Resources,dc=bitwarden,dc=com", + email: "CarrillD@3dc91dfe6410493ba2012f554bea81e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Malgosia Beilin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Malgosia Beilin,ou=Product Development,dc=bitwarden,dc=com", + email: "BeilinM@73769e96fc584ccd856adcc4d5fe88ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bekki Kensinger,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bekki Kensinger,ou=Payroll,dc=bitwarden,dc=com", + email: "KensingB@30ca0b4b2c6d4aff9d3ac9b5f46982e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benny Stahl,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Benny Stahl,ou=Administrative,dc=bitwarden,dc=com", + email: "StahlB@6e645f68154e4e0a9f217d10cb782190.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonja Blake,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sonja Blake,ou=Management,dc=bitwarden,dc=com", + email: "BlakeS@9b3c4690331a4a13a5aeb576bf120640.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corny Cowick,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Corny Cowick,ou=Administrative,dc=bitwarden,dc=com", + email: "CowickC@50a85f24c25d40e8a8c71e34d2304607.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibelle McAlister,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sibelle McAlister,ou=Peons,dc=bitwarden,dc=com", + email: "McAlistS@b9847a93402b4d7e9eab2f6967e34b51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden,dc=com", + email: "GerstmaM@0fe89eeff7dc4fc1a0f74df0bfbf040f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden,dc=com", + email: "DiogoK@c81d6e524d4f4e8ab4225b79b67ec3c9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden,dc=com", + email: "BushellE@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden,dc=com", + email: "ZadehV@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Souza Deininger,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Souza Deininger,ou=Product Development,dc=bitwarden,dc=com", + email: "DeiningS@b140b76ec6b34c518f0c06eda43db13e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beata Surray,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Beata Surray,ou=Payroll,dc=bitwarden,dc=com", + email: "SurrayB@344ac38ed8f246e1aa4a5cafeb824a1c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Betsy Bergman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Betsy Bergman,ou=Human Resources,dc=bitwarden,dc=com", + email: "BergmanB@312a6c96857e41e898ce218801eab796.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cheryl Deibert,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cheryl Deibert,ou=Peons,dc=bitwarden,dc=com", + email: "DeibertC@6dfd976d46114be489d1c70dd10e11f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darrel Bottoms,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Darrel Bottoms,ou=Payroll,dc=bitwarden,dc=com", + email: "BottomsD@dcbfb0982f2b4bb7bdf60b8f61c36502.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden,dc=com", + email: "AhdiehC@b0c6b060c84743b6a9eb5943601ed7e1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cissiee Gostanian,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cissiee Gostanian,ou=Peons,dc=bitwarden,dc=com", + email: "GostaniC@6a7058ac13d642658b7f7adc5e875217.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Portia Beecker,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Portia Beecker,ou=Payroll,dc=bitwarden,dc=com", + email: "BeeckerP@74754781579f4c4bbee5126ecca3cdbe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden,dc=com", + email: "SaberiH@08dc96d6e1284f068d1587b61ddbfede.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alli AbouEzze,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Alli AbouEzze,ou=Payroll,dc=bitwarden,dc=com", + email: "AbouEzzA@3cd269b5d58f4f4392c1d0f7bebb70ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kirk Cuddihey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kirk Cuddihey,ou=Peons,dc=bitwarden,dc=com", + email: "CuddiheK@aa98e19fc6664718bf16b34c3c3283c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChoonLin Marneris,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=ChoonLin Marneris,ou=Peons,dc=bitwarden,dc=com", + email: "MarneriC@d0765271186d48a4a72bafc8ed84bb23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden,dc=com", + email: "FriedlD@b39319cd8660409ab6d3b20577474e4a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davida Milakovic,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Davida Milakovic,ou=Payroll,dc=bitwarden,dc=com", + email: "MilakovD@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janela Bennison,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Janela Bennison,ou=Human Resources,dc=bitwarden,dc=com", + email: "BennisoJ@e1d5f9e67dcb4da6918e282801f19d33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden,dc=com", + email: "VieillaH@aa27b3d0b2304f6aa579ad064be338d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zorine Records,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Zorine Records,ou=Peons,dc=bitwarden,dc=com", + email: "RecordsZ@4b233d8ae0e140eb95be281f6d1b2b93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden,dc=com", + email: "LogarajM@bf118e8244174e9f89af2ea2f2fc47ac.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashleigh Ligon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ashleigh Ligon,ou=Management,dc=bitwarden,dc=com", + email: "LigonA@3fec2785d837452b919cb6ba8975932d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nelly Kerns,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nelly Kerns,ou=Human Resources,dc=bitwarden,dc=com", + email: "KernsN@25d13e46c21f42c88f458b84e9f2035e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chicky Domine,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chicky Domine,ou=Peons,dc=bitwarden,dc=com", + email: "DomineC@2d496c580b4f4816a656973b9003a612.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Woon Morrin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Woon Morrin,ou=Human Resources,dc=bitwarden,dc=com", + email: "MorrinW@cabd0c89a78947b69a999dc093307343.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tedra Shwed,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tedra Shwed,ou=Product Development,dc=bitwarden,dc=com", + email: "ShwedT@ce09eff4e27d456d8a017939b41c80b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wallis Whitfill,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wallis Whitfill,ou=Product Development,dc=bitwarden,dc=com", + email: "WhitfilW@9e756b675bb74e34850e55cc8a973979.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Torey Tropea,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Torey Tropea,ou=Janitorial,dc=bitwarden,dc=com", + email: "TropeaT@358baf59282c4aecb9c88b92eb26205b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Israel Ginest,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Israel Ginest,ou=Janitorial,dc=bitwarden,dc=com", + email: "GinestI@f4cac90289b44dc28b9de765747f5a7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yoko Honda,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yoko Honda,ou=Peons,dc=bitwarden,dc=com", + email: "HondaY@06a1126691e242c186fd659978ae6b78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Farzin Herlihy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Farzin Herlihy,ou=Peons,dc=bitwarden,dc=com", + email: "HerlihyF@698fc42a217d4dcab9ecca9924295e3b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden,dc=com", + email: "DidioDuT@72b8934ece8a4ceaba3014bcfcb801ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden,dc=com", + email: "LevesquA@2ca3e374401a4254833b5cbf4d34e968.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Benny Ratnam,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Benny Ratnam,ou=Product Development,dc=bitwarden,dc=com", + email: "RatnamB@93731e13c9e64512a53eb35ade181e8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reeba Pape,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reeba Pape,ou=Peons,dc=bitwarden,dc=com", + email: "PapeR@e242cd7509b945bca8984d07e1fb1255.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashu Kohn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ashu Kohn,ou=Administrative,dc=bitwarden,dc=com", + email: "KohnA@123c99e30f8149cea0d20a1c6360de45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liese McCombs,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Liese McCombs,ou=Peons,dc=bitwarden,dc=com", + email: "McCombsL@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden,dc=com", + email: "SonodaP@a8d52d2b633f41a2be5b6bf6015e6a0d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden,dc=com", + email: "CromwelL@a83f5faad57246c68e39925cbe706599.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden,dc=com", + email: "NetworkH@df3533ea43b14b7e966113cda7d50713.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blinny Zanet,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Blinny Zanet,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZanetB@5398775f17574785a44a78e1afa74d02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sanjay Themann,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sanjay Themann,ou=Product Development,dc=bitwarden,dc=com", + email: "ThemannS@e47694cd8b2a43baba9d3f4d0bafb719.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vijay Shorgan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vijay Shorgan,ou=Administrative,dc=bitwarden,dc=com", + email: "ShorganV@49ae34cdf8be4b8eb94f1974e6e81833.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duncan Kiang,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Duncan Kiang,ou=Payroll,dc=bitwarden,dc=com", + email: "KiangD@9d026b334a7143518a4125ed6fc356b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden,dc=com", + email: "DasrathH@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liliane Chima,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Liliane Chima,ou=Payroll,dc=bitwarden,dc=com", + email: "ChimaL@25e73f953c4a41e5afd2d99582d35572.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khai Diradmin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Khai Diradmin,ou=Payroll,dc=bitwarden,dc=com", + email: "DiradmiK@cd3e8f43f0dd4d3fb94f3baba8d46ade.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden,dc=com", + email: "HengeveK@009b48ec99e641a9b127fbabb87ff147.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Burton Deans,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Burton Deans,ou=Janitorial,dc=bitwarden,dc=com", + email: "DeansB@11066945925d4920b7876e8ee0d7adc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden,dc=com", + email: "TimesheJ@fb0a3750df834bc493046b175453d58f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elly Kubash,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Elly Kubash,ou=Product Testing,dc=bitwarden,dc=com", + email: "KubashE@b0361fa8905e48acad0bbc69c1da25d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden,dc=com", + email: "MazanjiA@965eaa64d55b462eb17422051f0b66a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tallou Gothard,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tallou Gothard,ou=Administrative,dc=bitwarden,dc=com", + email: "GothardT@f6c4a9fff2af4eafbf743b05d6249663.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden,dc=com", + email: "ChiabauM@f273a190f14545708d6c984111d46055.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden,dc=com", + email: "ChoptovO@77df1d4a30ab443892398806ba3c7576.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Perry Schmitz,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Perry Schmitz,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchmitzP@68995b01422d4fac85d1f7b91ec07a75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avinash Finn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Avinash Finn,ou=Janitorial,dc=bitwarden,dc=com", + email: "FinnA@2ab1da0352f24de2973c7264573c59be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marabel Hippert,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marabel Hippert,ou=Human Resources,dc=bitwarden,dc=com", + email: "HippertM@ebcad067bfb54e2996e22c6d3ae46310.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klazina Desharnais,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Klazina Desharnais,ou=Peons,dc=bitwarden,dc=com", + email: "DesharnK@89540e87cb364fefaa3b2a5074215102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ursala Vezeau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ursala Vezeau,ou=Payroll,dc=bitwarden,dc=com", + email: "VezeauU@61391b1e27a64c79ad40798665590378.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Muffin Atteridge,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Muffin Atteridge,ou=Product Development,dc=bitwarden,dc=com", + email: "AtteridM@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanya Marcoux,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vanya Marcoux,ou=Management,dc=bitwarden,dc=com", + email: "MarcouxV@dbdefa82bd204e5ab1e6a5b8f9bbc438.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mercy Nakano,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mercy Nakano,ou=Product Testing,dc=bitwarden,dc=com", + email: "NakanoM@f1c1878671bd497c916d8d6aa3e192fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden,dc=com", + email: "SugarbrS@ab3309e246f140c79e997dde5ccb290c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlina Weaver,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Arlina Weaver,ou=Janitorial,dc=bitwarden,dc=com", + email: "WeaverA@5cb368696cd247eea76178d9b0f44b81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Seven Okon,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Seven Okon,ou=Product Testing,dc=bitwarden,dc=com", + email: "OkonS@9da8707f84d94fc6a64c7ccfeaa1b78b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden,dc=com", + email: "CiccareR@af9b2025e2d4428a825c1c465719ccc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Liliane Gurer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Liliane Gurer,ou=Human Resources,dc=bitwarden,dc=com", + email: "GurerL@06929a8dcdce40d387113e867b6564b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HonKong Salem,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=HonKong Salem,ou=Human Resources,dc=bitwarden,dc=com", + email: "SalemH@a3f5c91e6cdf46d98f250a62d67415ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden,dc=com", + email: "MansourR@e64b8dfa86634e858dc40a565c229607.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glynnis Daniells,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Glynnis Daniells,ou=Management,dc=bitwarden,dc=com", + email: "DaniellG@547fa50227684350b1f92837929bd166.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden,dc=com", + email: "SteMariE@5128133359594cd18d137c259ecf1184.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miran McKeone,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Miran McKeone,ou=Product Testing,dc=bitwarden,dc=com", + email: "McKeoneM@be56d01786b846e3aa64454147150e23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dion Polulack,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dion Polulack,ou=Administrative,dc=bitwarden,dc=com", + email: "PolulacD@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hartley Busch,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hartley Busch,ou=Product Testing,dc=bitwarden,dc=com", + email: "BuschH@c7a27fd01c1647d28de4dfcfed9b1184.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gusella Popper,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gusella Popper,ou=Human Resources,dc=bitwarden,dc=com", + email: "PopperG@903b76c810774286bddac3a5a25eb6b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wits Stutts,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wits Stutts,ou=Human Resources,dc=bitwarden,dc=com", + email: "StuttsW@010ac2dbb4cb4b37b616090dd6b67211.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Afzal Rusch,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Afzal Rusch,ou=Peons,dc=bitwarden,dc=com", + email: "RuschA@133bae8b2a2c42388199fc3fdfad66b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karon McBrayne,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Karon McBrayne,ou=Human Resources,dc=bitwarden,dc=com", + email: "McBraynK@42caf052c7364166a6c614169e68423b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Judy Homa,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Judy Homa,ou=Payroll,dc=bitwarden,dc=com", + email: "HomaJ@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tarik Tester,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tarik Tester,ou=Administrative,dc=bitwarden,dc=com", + email: "TesterT@392b60a69449497fa8daa89cef186b78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carole Suykens,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carole Suykens,ou=Administrative,dc=bitwarden,dc=com", + email: "SuykensC@b7faf436ed93412c95576fc8c712f2d1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden,dc=com", + email: "DiRienzN@b7e74d1e3c394a0f8846f3f4c8d34c1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saman Koverzin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Saman Koverzin,ou=Payroll,dc=bitwarden,dc=com", + email: "KoverziS@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaushik Reid,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kaushik Reid,ou=Product Development,dc=bitwarden,dc=com", + email: "ReidK@496d582fba1f48fead6391e894698c13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eastreg Buchan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eastreg Buchan,ou=Administrative,dc=bitwarden,dc=com", + email: "BuchanE@7b1a03c5445247ebb52034bf84aa1aeb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kevyn Yu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kevyn Yu,ou=Management,dc=bitwarden,dc=com", + email: "YuK@50db0b06f7084e4cb9a7af7a31c89f8b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Violante Chaurasia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Violante Chaurasia,ou=Product Development,dc=bitwarden,dc=com", + email: "ChaurasV@570b2a8b45094bdbb019684431d6e2af.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden,dc=com", + email: "FragnitC@90c585b5539b419a977fd9fb6fa21443.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden,dc=com", + email: "WetzelE@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden,dc=com", + email: "ParrishC@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franklin Landry,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Franklin Landry,ou=Janitorial,dc=bitwarden,dc=com", + email: "LandryF@197bef16e6cb42f3bbfedc909bc4a49d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rejean Hartsell,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Rejean Hartsell,ou=Payroll,dc=bitwarden,dc=com", + email: "HartselR@86262c8a96f6428ca6c85ec378671d82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden,dc=com", + email: "SchlachD@584af194d9e84647b332e4629d64528d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Crista Reece,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Crista Reece,ou=Product Development,dc=bitwarden,dc=com", + email: "ReeceC@68504e0f13984c8c9f4e31aa33c193c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Apryle Briard,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Apryle Briard,ou=Management,dc=bitwarden,dc=com", + email: "BriardA@c72f77d8df544dfda8a24066a5992ad2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joni Netas,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Joni Netas,ou=Management,dc=bitwarden,dc=com", + email: "NetasJ@35a1311d06994f1e8d741b9b47461442.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicola Hensen,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nicola Hensen,ou=Product Testing,dc=bitwarden,dc=com", + email: "HensenN@9a2d48dfe13f43e0a7df082cbd40535c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden,dc=com", + email: "OrolJ@d0cc080dcb974f719dfa65f1932864b3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bruce Galasso,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Bruce Galasso,ou=Human Resources,dc=bitwarden,dc=com", + email: "GalassoB@6d93f84a8aef4b70975e9d9fd01027a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden,dc=com", + email: "BalkissS@81a2fc82bdcd4a3582b8aa6d409fc9a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margeaux Chunn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Margeaux Chunn,ou=Administrative,dc=bitwarden,dc=com", + email: "ChunnM@47a09a57ddfd44dea0c2830e2bbbf9fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Long Esry,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Long Esry,ou=Management,dc=bitwarden,dc=com", + email: "EsryL@290c8e7e8138440babe5064ce0d66502.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lynette Brearley,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lynette Brearley,ou=Janitorial,dc=bitwarden,dc=com", + email: "BrearleL@428ea86de0d24cc293fcc0e69c36a51d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Birdie Cawley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Birdie Cawley,ou=Human Resources,dc=bitwarden,dc=com", + email: "CawleyB@308ad8d2df924e23912f5ff5c482654c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden,dc=com", + email: "BorojevD@0534f193dc3e49e39af35f74a2ae824e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deana MacNeill,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Deana MacNeill,ou=Payroll,dc=bitwarden,dc=com", + email: "MacNeilD@8a2e8c6a93cc4c9691c29760f92509c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Afton Tanner,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Afton Tanner,ou=Human Resources,dc=bitwarden,dc=com", + email: "TannerA@dea0182c9b1748ab8a8a0767e4b98659.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden,dc=com", + email: "DorrS@324b0826345f41f396413f010ceddf84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden,dc=com", + email: "SheffeyN@b699e66369ae440b80fffe24208900a7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JooEuin Peters,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=JooEuin Peters,ou=Human Resources,dc=bitwarden,dc=com", + email: "PetersJ@b798af896e7f46128e34697b90918aeb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jordan Normandin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jordan Normandin,ou=Administrative,dc=bitwarden,dc=com", + email: "NormandJ@5888a61aa6564f429dd2584910d49491.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden,dc=com", + email: "GlasaP@4504d7b5d7bb4c7c81665aefd8680fbc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brynna Swanston,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brynna Swanston,ou=Payroll,dc=bitwarden,dc=com", + email: "SwanstoB@273b97d9d3ef49d78a58814ba63e226c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden,dc=com", + email: "BellosaA@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saumitra Svo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Saumitra Svo,ou=Product Development,dc=bitwarden,dc=com", + email: "SvoS@1bf120076f9247a7ab75ce12810b0f67.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Modestia Hersee,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Modestia Hersee,ou=Administrative,dc=bitwarden,dc=com", + email: "HerseeM@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gretna Ergle,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gretna Ergle,ou=Product Development,dc=bitwarden,dc=com", + email: "ErgleG@71d3829da9684452bc0895ff673e8847.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gary Denmark,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gary Denmark,ou=Payroll,dc=bitwarden,dc=com", + email: "DenmarkG@07b1787368a34e789ce994f0c32f4345.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fei Isert,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fei Isert,ou=Janitorial,dc=bitwarden,dc=com", + email: "IsertF@9e756b675bb74e34850e55cc8a973979.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden,dc=com", + email: "EinarssB@7ce0aeed71954a9186228a48b133b9f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden,dc=com", + email: "DeatricN@d9c35c3dbb1b4cc08294fcf741816060.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden,dc=com", + email: "AmouzgaH@c0bb112b79244d4d83013bcf4b7051b1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden,dc=com", + email: "McilroyB@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Armand Bebber,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Armand Bebber,ou=Management,dc=bitwarden,dc=com", + email: "BebberA@b02e51a832a2451eb62f542aaa4c12e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Virgina Kahnert,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Virgina Kahnert,ou=Management,dc=bitwarden,dc=com", + email: "KahnertV@6b4a8c4f12054500898abbcc69fbe20c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antoni Vickers,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Antoni Vickers,ou=Management,dc=bitwarden,dc=com", + email: "VickersA@a33324bfbeba45c9aed68650670aad46.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dan Telos,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dan Telos,ou=Payroll,dc=bitwarden,dc=com", + email: "TelosD@6a38182664754d55b0af48acc18ccf15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden,dc=com", + email: "BoeckeG@0d39953bed12477b8b2344944beb0598.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rory Chan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rory Chan,ou=Administrative,dc=bitwarden,dc=com", + email: "ChanR@eb68be01f6024473a2ca0fe1f0709934.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden,dc=com", + email: "MaisonnJ@ce606f959aaf4b37a3890f8fbd9f2472.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gertrude Senyshyn,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gertrude Senyshyn,ou=Management,dc=bitwarden,dc=com", + email: "SenyshyG@566e3f43810e4586a805d84cd5a87397.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Missagh Yeh,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Missagh Yeh,ou=Product Development,dc=bitwarden,dc=com", + email: "YehM@5c913aa699ee49ff8e754a7b748977ab.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden,dc=com", + email: "MacDermM@02ce75bcb8d0491f899a2b936126cb22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden,dc=com", + email: "LizziC@9b989160bc6d49579fbfc8f1e85ccc6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morganica Ashdown,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Morganica Ashdown,ou=Management,dc=bitwarden,dc=com", + email: "AshdownM@44d25c0f3b3b4712b7ef7271475275d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joey Moore,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joey Moore,ou=Peons,dc=bitwarden,dc=com", + email: "MooreJ@f4a421d551d64acc80985f5e163c5415.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rheta Knobloch,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rheta Knobloch,ou=Peons,dc=bitwarden,dc=com", + email: "KnoblocR@b3d11e6744594feeb414ee01bf2eac98.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden,dc=com", + email: "KahhaleT@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Far Shupe,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Far Shupe,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShupeF@0f19fa3cc3984923830c48638164b69b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noni Pauley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Noni Pauley,ou=Human Resources,dc=bitwarden,dc=com", + email: "PauleyN@af48941e4bc546738283cbae39bf8e38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hera Eike,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hera Eike,ou=Product Testing,dc=bitwarden,dc=com", + email: "EikeH@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisa Peacemaker,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melisa Peacemaker,ou=Management,dc=bitwarden,dc=com", + email: "PeacemaM@7ae74f35c1ca49719017f2b0cacc9b3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wylo Woodley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Wylo Woodley,ou=Management,dc=bitwarden,dc=com", + email: "WoodleyW@c870d166444a452b9465ab41e64ba24a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Collette Quevillon,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Collette Quevillon,ou=Human Resources,dc=bitwarden,dc=com", + email: "QuevillC@d8ade951537b40409f7045af7b027387.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden,dc=com", + email: "SunderlS@fc6e03b5bcc94a1489d08dba2fb3849a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden,dc=com", + email: "KosasihD@93e4f4c832eb40f5b256fbdf877ac624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Renelle Ducic,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Renelle Ducic,ou=Product Testing,dc=bitwarden,dc=com", + email: "DucicR@c89844059bb741f7bb88e4d7fb7f5f87.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", + email: "RadovniH@2d6d6884b9df4e34bfb750fc0fb4ded8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden,dc=com", + email: "ReijerkL@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden,dc=com", + email: "GuilforR@e92792a71a1b4fd28678d03900079ed2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailis Gabe,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ailis Gabe,ou=Human Resources,dc=bitwarden,dc=com", + email: "GabeA@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Selena Sanoy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Selena Sanoy,ou=Human Resources,dc=bitwarden,dc=com", + email: "SanoyS@05f7379ac7b945a2a2343b19ee63fd8a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Electra Hassold,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Electra Hassold,ou=Administrative,dc=bitwarden,dc=com", + email: "HassoldE@159b400ec7df422e9066036fd18c450c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terry Johnston,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Terry Johnston,ou=Janitorial,dc=bitwarden,dc=com", + email: "JohnstoT@d37e812441464f08ac2750e113db6273.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franny Towill,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Franny Towill,ou=Product Development,dc=bitwarden,dc=com", + email: "TowillF@08eacc9f081b46aa9b5cc2682b8df342.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden,dc=com", + email: "GodowskJ@d5d81ed9dfd74923bfc76f6eb5eeb481.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden,dc=com", + email: "SatkunaG@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Duquette Pratt,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Duquette Pratt,ou=Payroll,dc=bitwarden,dc=com", + email: "PrattD@95581eb6a8bb49808363d11bfe34de80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden,dc=com", + email: "AderholC@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alb Hussein,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alb Hussein,ou=Administrative,dc=bitwarden,dc=com", + email: "HusseinA@cd959caf747140188faf96b58d108003.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sam Ference,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sam Ference,ou=Product Testing,dc=bitwarden,dc=com", + email: "FerenceS@80b32d7e2c334eb6876146c942d4c564.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yukinobu Riebl,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Yukinobu Riebl,ou=Peons,dc=bitwarden,dc=com", + email: "RieblY@72030161dcd24217be14766e527d14fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tarus Hillard,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tarus Hillard,ou=Product Development,dc=bitwarden,dc=com", + email: "HillardT@a80cec7586b34ab8b14925cae24221e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ramonda Lott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ramonda Lott,ou=Human Resources,dc=bitwarden,dc=com", + email: "LottR@9092ac0216724776b99f389469a93c29.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden,dc=com", + email: "EhningeJ@098e681e17464ddaaa4b5aa6ff614551.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anitra Arora,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Anitra Arora,ou=Payroll,dc=bitwarden,dc=com", + email: "AroraA@f42de10624ae405d913d9b34565ffc09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden,dc=com", + email: "TousignN@abb5d6aab45f41aea925c272cfd268d5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sonja Tohama,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Sonja Tohama,ou=Peons,dc=bitwarden,dc=com", + email: "TohamaS@c3ea2e07159b4059b3afc3ddc88034c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rycca Bloemker,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rycca Bloemker,ou=Administrative,dc=bitwarden,dc=com", + email: "BloemkeR@cdfacd88fafe4ba8970bb7d5170496d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joydeep Elledge,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Joydeep Elledge,ou=Peons,dc=bitwarden,dc=com", + email: "ElledgeJ@5f4045bbd5c44c0b997bde75dafd864c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden,dc=com", + email: "UmetsuS@913917cd10c1410fb1c6287add8a017a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silvie Nevardauskis,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Silvie Nevardauskis,ou=Management,dc=bitwarden,dc=com", + email: "NevardaS@0f20bc491a46484db42d8b650f7e698d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ilene Curnow,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ilene Curnow,ou=Product Development,dc=bitwarden,dc=com", + email: "CurnowI@ec8a28f7df2f4b4a9a8f12cccd975869.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailee Sudbey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ailee Sudbey,ou=Management,dc=bitwarden,dc=com", + email: "SudbeyA@953969dd8e824fa6843e718cd3751626.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maarten Mejia,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Maarten Mejia,ou=Administrative,dc=bitwarden,dc=com", + email: "MejiaM@ba4cd38fdb404f248c82c6d86153d0e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PierreAndre Abbate,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=PierreAndre Abbate,ou=Peons,dc=bitwarden,dc=com", + email: "AbbateP@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kizzie Adey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kizzie Adey,ou=Product Development,dc=bitwarden,dc=com", + email: "AdeyK@aa04f1225a3142f7b6d7d981c171a9da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Krystn Skerlak,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Krystn Skerlak,ou=Administrative,dc=bitwarden,dc=com", + email: "SkerlakK@fc85f8e4436a4774ae1c7ec792457997.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden,dc=com", + email: "BragineB@2674a7c4cfa741269519e72fdf975394.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kailey Southon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kailey Southon,ou=Administrative,dc=bitwarden,dc=com", + email: "SouthonK@1bc81f639d7b4a75a6776b919ea7ed35.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PohSoon Corpening,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=PohSoon Corpening,ou=Payroll,dc=bitwarden,dc=com", + email: "CorpeniP@cb8c25a6f9d34eadb38ab3240d4f1b15.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cissy Systest,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cissy Systest,ou=Management,dc=bitwarden,dc=com", + email: "SystestC@96705dd7d66249d08ee808bb87068456.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ailee Garry,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ailee Garry,ou=Human Resources,dc=bitwarden,dc=com", + email: "GarryA@e8711dcc34d6494b9af82b382ecdea7d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juliet Goyal,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Juliet Goyal,ou=Product Testing,dc=bitwarden,dc=com", + email: "GoyalJ@85b2024b914940b3b4bc6a5df6e6c822.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gleda Carldata,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gleda Carldata,ou=Payroll,dc=bitwarden,dc=com", + email: "CarldatG@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elane Latour,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Elane Latour,ou=Human Resources,dc=bitwarden,dc=com", + email: "LatourE@bf0924ca7ffa40efa64182b434d3b054.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Matt Sharman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Matt Sharman,ou=Peons,dc=bitwarden,dc=com", + email: "SharmanM@8455fc0dd08e47d9b5acf4e37eea1485.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden,dc=com", + email: "LauristA@13ff1430cb9943818286488abb33cd82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden,dc=com", + email: "ShambliS@7a1388ca21ac40f49e6770963202dbc7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Violante Moomey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Violante Moomey,ou=Payroll,dc=bitwarden,dc=com", + email: "MoomeyV@c26335dd55544c05ae4c2fc1f3eeffc9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valery Howell,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Valery Howell,ou=Management,dc=bitwarden,dc=com", + email: "HowellV@55ccff73a37c4e769e4ec261e5ec528f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorri Fontanini,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lorri Fontanini,ou=Administrative,dc=bitwarden,dc=com", + email: "FontaniL@364738d989114590842291a79ecffd92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden,dc=com", + email: "DaigneaF@601752671ede409e9d90ea7a410ff21e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden,dc=com", + email: "BnrlsiS@a978666c2277497faaff3d19bd9575e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden,dc=com", + email: "SquizzaO@556b8709dd59455493d3a037cd03b5fa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ivette Frantz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ivette Frantz,ou=Payroll,dc=bitwarden,dc=com", + email: "FrantzI@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cyndie Mohideen,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cyndie Mohideen,ou=Management,dc=bitwarden,dc=com", + email: "MohideeC@f721dbef06364385bb5bd030d8447566.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden,dc=com", + email: "HurwitzH@f7fa81d9317e47ad8fbf83696ed935e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ardine Grimm,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ardine Grimm,ou=Peons,dc=bitwarden,dc=com", + email: "GrimmA@697132edecc44b08a924e05590de1c19.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raine Capps,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Raine Capps,ou=Human Resources,dc=bitwarden,dc=com", + email: "CappsR@d71da34df9024aaf8ef124f781734513.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden,dc=com", + email: "GovindaJ@77dbd1cf021243c180e2be10461d9b3a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Skyler Khurana,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Skyler Khurana,ou=Administrative,dc=bitwarden,dc=com", + email: "KhuranaS@4160dbb07b29483d98d27e9c15a9e3bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden,dc=com", + email: "BeaudinR@668a7be7467f426eaa481fcc0af0008d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden,dc=com", + email: "PillswoN@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kris Warfel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kris Warfel,ou=Management,dc=bitwarden,dc=com", + email: "WarfelK@a58f1d89c8df4bb585be88ea46688614.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden,dc=com", + email: "MoorcroJ@fb51e4746fc04473a7bebe9c1a3d6645.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruby Stansbury,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ruby Stansbury,ou=Administrative,dc=bitwarden,dc=com", + email: "StansbuR@6fae91be06034397b93a1b498797d995.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=John Seery,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=John Seery,ou=Peons,dc=bitwarden,dc=com", + email: "SeeryJ@325b607b73d843cb9936d27aa4bfeb13.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", + email: "DelbrouK@21813dd069254b74bf250b7db15a806f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Callida Boarder,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Callida Boarder,ou=Product Development,dc=bitwarden,dc=com", + email: "BoarderC@4eab057e70644dff8f3d5ac041be0877.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rona Cosgrove,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rona Cosgrove,ou=Management,dc=bitwarden,dc=com", + email: "CosgrovR@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tasia Anchia,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tasia Anchia,ou=Human Resources,dc=bitwarden,dc=com", + email: "AnchiaT@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden,dc=com", + email: "PedneauA@de05663cc1c445b9849ee8fab2914551.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wallis Barentsen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Wallis Barentsen,ou=Administrative,dc=bitwarden,dc=com", + email: "BarentsW@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fan Cranston,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Fan Cranston,ou=Product Testing,dc=bitwarden,dc=com", + email: "CranstoF@d7689b7c727b40419f38fdc39c4261e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Helen Hyde,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Helen Hyde,ou=Janitorial,dc=bitwarden,dc=com", + email: "HydeH@e8907f80592d493daf791f32c2949815.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raeann OKarina,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Raeann OKarina,ou=Product Development,dc=bitwarden,dc=com", + email: "OKarinaR@c659efb530134031a977821791781191.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden,dc=com", + email: "KinoshiF@42e197c00c4e41749aff9f9665181f54.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olga Magee,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Olga Magee,ou=Product Development,dc=bitwarden,dc=com", + email: "MageeO@e9aa0388b0974f709cc43e6d5c1d4048.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibel Munter,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sibel Munter,ou=Janitorial,dc=bitwarden,dc=com", + email: "MunterS@85cf93c1a5be4b4aba8d72ecb1e88b93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmella Pillars,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Carmella Pillars,ou=Administrative,dc=bitwarden,dc=com", + email: "PillarsC@c928e664ca344d17b905e23403ffeabf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden,dc=com", + email: "KotykS@4ef93a5243aa4272a03cee0beaecc3a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden,dc=com", + email: "BehroozT@61b37bdecd0d4342ba802388d8b5a903.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden,dc=com", + email: "GruszczA@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tabbi Bladon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tabbi Bladon,ou=Administrative,dc=bitwarden,dc=com", + email: "BladonT@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Umesh Areu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Umesh Areu,ou=Product Testing,dc=bitwarden,dc=com", + email: "AreuU@5d0d20354c594b5780df45982564458f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Orel Delahay,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Orel Delahay,ou=Product Testing,dc=bitwarden,dc=com", + email: "DelahayO@f009b38fd0b643efae4b268d5ce0abb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corrie Cipolla,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Corrie Cipolla,ou=Product Development,dc=bitwarden,dc=com", + email: "CipollaC@bf258d9f715f4af3b7d9b3ec9a4b6843.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Longdist Goliss,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Longdist Goliss,ou=Janitorial,dc=bitwarden,dc=com", + email: "GolissL@fe60fc6c21f046639fc69fd725ace3ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belissa Northcott,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Belissa Northcott,ou=Product Development,dc=bitwarden,dc=com", + email: "NorthcoB@1765994e2a5c4efcb4f3aabfae2cc880.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eula Gouldson,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Eula Gouldson,ou=Payroll,dc=bitwarden,dc=com", + email: "GouldsoE@855a2f4f2cb9421d8b0276fe6c08af37.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatrix Rea,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Beatrix Rea,ou=Management,dc=bitwarden,dc=com", + email: "ReaB@091047b60e174697bb729ce954d717c0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden,dc=com", + email: "KhalilzA@71b383e74c8c4d0394a6539daed34aaf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Larysa Fleming,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Larysa Fleming,ou=Product Testing,dc=bitwarden,dc=com", + email: "FlemingL@36bc6957b14948c298f68fedb3e83da0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andras Dziemian,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Andras Dziemian,ou=Administrative,dc=bitwarden,dc=com", + email: "DziemiaA@a56f80c85b414f69996ee5700b35f815.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden,dc=com", + email: "MachnicA@472c805b68f843ad9fd85cb16521749b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Afke Coallier,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Afke Coallier,ou=Management,dc=bitwarden,dc=com", + email: "CoallieA@976adcda025f45689f8ecd72de9c606c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lachu Fricks,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lachu Fricks,ou=Janitorial,dc=bitwarden,dc=com", + email: "FricksL@d479485aa9bf4fdf874b1f50fdaba08c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pammy Slautterback,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pammy Slautterback,ou=Administrative,dc=bitwarden,dc=com", + email: "SlautteP@87263f2ad4e44ac39562038c9af16152.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maribelle Balderston,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maribelle Balderston,ou=Payroll,dc=bitwarden,dc=com", + email: "BaldersM@64ae9afa0c594dd6834a0d977f843d49.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vahe Birks,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Vahe Birks,ou=Product Development,dc=bitwarden,dc=com", + email: "BirksV@ebdda7804b294714949d48657bdd3830.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tobe PKDCD,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tobe PKDCD,ou=Product Development,dc=bitwarden,dc=com", + email: "PKDCDT@1a2826f06614436585f4faa14772cf1b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden,dc=com", + email: "GahuniaD@a3b3e1a7dc12465fbb231dc02524f751.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melynda Phillips,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Melynda Phillips,ou=Administrative,dc=bitwarden,dc=com", + email: "PhillipM@da12337d358141f5bd4c9f1cff61b597.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arina Collazo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Arina Collazo,ou=Payroll,dc=bitwarden,dc=com", + email: "CollazoA@f322213c017f4153baac5a8cc04c844a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cesare Karolefski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cesare Karolefski,ou=Payroll,dc=bitwarden,dc=com", + email: "KarolefC@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden,dc=com", + email: "ZukasR@973c4a1a5d1a4e4f9c421404b565659a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden,dc=com", + email: "GaiserJ@7dd6cc5778d64f7ea47fc9b85bb01ae7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Partick Bassil,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Partick Bassil,ou=Human Resources,dc=bitwarden,dc=com", + email: "BassilP@dd5cfcee75de4e98844cbb2dd89a0b3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Siamak Wagle,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Siamak Wagle,ou=Product Testing,dc=bitwarden,dc=com", + email: "WagleS@a4f62387533541bbbdac898b8a707eb3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Reine Hamlett,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Reine Hamlett,ou=Peons,dc=bitwarden,dc=com", + email: "HamlettR@55ec9ab4177d4a9faecb693090c29c24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Albert Tebinka,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Albert Tebinka,ou=Payroll,dc=bitwarden,dc=com", + email: "TebinkaA@67ca48342c3741e5ba95513725c86734.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wally Pedneault,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Wally Pedneault,ou=Product Testing,dc=bitwarden,dc=com", + email: "PedneauW@d4ab5d5f822b49189aa188422c9bf4ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shahriar Farnham,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Shahriar Farnham,ou=Peons,dc=bitwarden,dc=com", + email: "FarnhamS@4d05bb60c7e84d1eab5ee07d5a5162ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Concordia Thorman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Concordia Thorman,ou=Human Resources,dc=bitwarden,dc=com", + email: "ThormanC@5020798a7692438bb9e14d9a42dd1742.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarath Lathrop,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Sarath Lathrop,ou=Management,dc=bitwarden,dc=com", + email: "LathropS@f37bc771a4b8490799f5a19ea4f33525.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HanVan Cuthill,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=HanVan Cuthill,ou=Peons,dc=bitwarden,dc=com", + email: "CuthillH@c0a6b6c92fcf4d2e9e442a4db87fb8d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Demetri Acree,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Demetri Acree,ou=Human Resources,dc=bitwarden,dc=com", + email: "AcreeD@8491514e025546c6b44944519f176a38.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gord St,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gord St,ou=Product Development,dc=bitwarden,dc=com", + email: "StG@a8e48e7f01fb4831b7bf783525861229.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robyn Porter,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Robyn Porter,ou=Payroll,dc=bitwarden,dc=com", + email: "PorterR@3ccc8c61b3e7403f9b193bb2ac877a17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kristine Ratnam,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kristine Ratnam,ou=Peons,dc=bitwarden,dc=com", + email: "RatnamK@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trude Leander,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Trude Leander,ou=Management,dc=bitwarden,dc=com", + email: "LeanderT@03dd2273d709477db635cdb7c9075823.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacinta Burkepile,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jacinta Burkepile,ou=Management,dc=bitwarden,dc=com", + email: "BurkepiJ@2ff176a8051c415c910dbab59433a7db.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden,dc=com", + email: "SchoeneF@1e52d43b6db2414f90519482b0521313.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sissela Mathewson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sissela Mathewson,ou=Administrative,dc=bitwarden,dc=com", + email: "MathewsS@28cc7c8054f54d5097838bc00378ffcf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden,dc=com", + email: "SheaffeJ@889b0ce56e2f447a9f04b2ef65f2b835.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaela Gleason,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Kaela Gleason,ou=Product Testing,dc=bitwarden,dc=com", + email: "GleasonK@a08e5c7ab6bd42a9af2ba6fcd91cbe9f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mandi Popovich,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mandi Popovich,ou=Product Development,dc=bitwarden,dc=com", + email: "PopovicM@121cc33033f14e9b867c78ba3a8f3e2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bhal Mymryk,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bhal Mymryk,ou=Management,dc=bitwarden,dc=com", + email: "MymrykB@1c5b6afbcbf04ba3993488cc8b65901b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wenxi Sethian,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Wenxi Sethian,ou=Product Development,dc=bitwarden,dc=com", + email: "SethianW@71af05daaeb140bfbca8a2d29597805e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mabel Kwa,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mabel Kwa,ou=Peons,dc=bitwarden,dc=com", + email: "KwaM@76dc6fcc5e8748ab8f701b414ac24ae8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Neysa Uguccioni,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Neysa Uguccioni,ou=Management,dc=bitwarden,dc=com", + email: "UguccioN@0b027bdff1d041629ac882de18aab2e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Toby Ayoup,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Toby Ayoup,ou=Administrative,dc=bitwarden,dc=com", + email: "AyoupT@4ec1bcfbb97c4709b780fa74b3d05500.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden,dc=com", + email: "EnglemaC@e60dd9bce03a413a915d470a19570918.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drusilla Allman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Drusilla Allman,ou=Management,dc=bitwarden,dc=com", + email: "AllmanD@fa78004a0e4e45e5ac5f338a764f9f48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=SangMaun Rabzel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=SangMaun Rabzel,ou=Management,dc=bitwarden,dc=com", + email: "RabzelS@206e631bec554251823680304e50fd4f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettine Bresnan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bettine Bresnan,ou=Peons,dc=bitwarden,dc=com", + email: "BresnanB@0c6af3053743415cb69498758e59a3c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blithe Searl,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Blithe Searl,ou=Product Testing,dc=bitwarden,dc=com", + email: "SearlB@d7689b7c727b40419f38fdc39c4261e2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden,dc=com", + email: "DeLeonS@ce001280b666479eb0eb4d06e9257b27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Haig Talton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Haig Talton,ou=Janitorial,dc=bitwarden,dc=com", + email: "TaltonH@2a9fef67c2a84062aa431a97e4e79582.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ryman Smerdell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Ryman Smerdell,ou=Product Development,dc=bitwarden,dc=com", + email: "SmerdelR@0a2f8517f7174295bf5ecdcb9f344855.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Admin Cassar,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Admin Cassar,ou=Janitorial,dc=bitwarden,dc=com", + email: "CassarA@b04066f723fa4eb2a82846786b428021.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden,dc=com", + email: "BucklinJ@fe6420c124954c6f8c3c4003778996ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esmail Santos,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Esmail Santos,ou=Janitorial,dc=bitwarden,dc=com", + email: "SantosE@5fa9a69302a9422abedbd51aa69f472b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walter Coley,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Walter Coley,ou=Human Resources,dc=bitwarden,dc=com", + email: "ColeyW@672856c5dd4e4183bcd781a952ed21fe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jeanne Boult,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jeanne Boult,ou=Janitorial,dc=bitwarden,dc=com", + email: "BoultJ@8a049b49f80d420a99b91944b3a9e703.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avie Scourneau,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Avie Scourneau,ou=Management,dc=bitwarden,dc=com", + email: "ScourneA@7f4cd5fa42d7400bbd064f829049395c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bettie Cescon,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bettie Cescon,ou=Payroll,dc=bitwarden,dc=com", + email: "CesconB@d0bd6c1a3fa44296a243273f0ddf6cd9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maureene Weiser,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Maureene Weiser,ou=Human Resources,dc=bitwarden,dc=com", + email: "WeiserM@0c871b0ecc1a46debc66287e828580e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisent Annibale,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Melisent Annibale,ou=Janitorial,dc=bitwarden,dc=com", + email: "AnnibalM@6882bb306b30484eac03893eca277bd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bonnie Corse,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bonnie Corse,ou=Peons,dc=bitwarden,dc=com", + email: "CorseB@eef26e16e3d34907ba8bf0f347b63dd8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Querida Gertridge,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Querida Gertridge,ou=Management,dc=bitwarden,dc=com", + email: "GertridQ@848de2e1032948c1b5d78b7a20263232.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lily Stites,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lily Stites,ou=Payroll,dc=bitwarden,dc=com", + email: "StitesL@296f507ac233431e85903a87c2e1452b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Woon Klimon,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Woon Klimon,ou=Management,dc=bitwarden,dc=com", + email: "KlimonW@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlota Oros,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carlota Oros,ou=Payroll,dc=bitwarden,dc=com", + email: "OrosC@d3825e009de74b68a881393dca2712eb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gil Spurway,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gil Spurway,ou=Human Resources,dc=bitwarden,dc=com", + email: "SpurwayG@51d1be7d90e1479f9d4a84f4cba3ea09.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Licha Weinbender,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Licha Weinbender,ou=Product Development,dc=bitwarden,dc=com", + email: "WeinbenL@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirabella Awano,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mirabella Awano,ou=Product Testing,dc=bitwarden,dc=com", + email: "AwanoM@185b51f28c7f46da96dbfb585fb3e90d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lura Centis,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lura Centis,ou=Product Testing,dc=bitwarden,dc=com", + email: "CentisL@4f40a523634a450ca8245b527c300f0b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden,dc=com", + email: "TrasmunI@f9c4f76269ed44f38b1b08bb540ca247.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aveline Berhane,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Aveline Berhane,ou=Management,dc=bitwarden,dc=com", + email: "BerhaneA@b4304c61f77b49d7b5286781d16ef287.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden,dc=com", + email: "LoewenJ@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Billy Costantino,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Billy Costantino,ou=Payroll,dc=bitwarden,dc=com", + email: "CostantB@721925c092ab4630a360f318924bd972.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorrie Fortner,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dorrie Fortner,ou=Product Development,dc=bitwarden,dc=com", + email: "FortnerD@17e6e9bce9be4a43964f6f155661a373.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", + email: "HolcombS@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden,dc=com", + email: "VanwormK@457942790eaf4536a925540b16e6a49f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carleen Toly,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Carleen Toly,ou=Human Resources,dc=bitwarden,dc=com", + email: "TolyC@388bb63ae18342968e266bd18c49e361.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vijay Nassr,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Vijay Nassr,ou=Management,dc=bitwarden,dc=com", + email: "NassrV@e5b7fb51703341b6b79b40d29cc46235.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandro Gorius,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sandro Gorius,ou=Human Resources,dc=bitwarden,dc=com", + email: "GoriusS@d92356164b8e41ecbc89a75089ba1ed5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=He Crowder,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=He Crowder,ou=Peons,dc=bitwarden,dc=com", + email: "CrowderH@403ad564c08e47b8824594419bf3ec17.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atta Kutch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Atta Kutch,ou=Management,dc=bitwarden,dc=com", + email: "KutchA@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Devon Kaudel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Devon Kaudel,ou=Administrative,dc=bitwarden,dc=com", + email: "KaudelD@d98f77a80f7c4109b5fdb982a57a9e6b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deidre Cirulli,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Deidre Cirulli,ou=Peons,dc=bitwarden,dc=com", + email: "CirulliD@da7bd2be911046399d0c6417c3572f36.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kala Bourget,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kala Bourget,ou=Peons,dc=bitwarden,dc=com", + email: "BourgetK@7ed928ce83094d698eeb083bd149cb2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Charo Hembrick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Charo Hembrick,ou=Payroll,dc=bitwarden,dc=com", + email: "HembricC@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janene Torrell,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Janene Torrell,ou=Product Testing,dc=bitwarden,dc=com", + email: "TorrellJ@4cc04e0f745f47c7be4e632269c6eb14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eben Shayanpour,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Eben Shayanpour,ou=Product Development,dc=bitwarden,dc=com", + email: "ShayanpE@13ff1430cb9943818286488abb33cd82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden,dc=com", + email: "RozierE@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yves Dhir,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Yves Dhir,ou=Payroll,dc=bitwarden,dc=com", + email: "DhirY@ef09bde80592442abb2f639748abce27.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden,dc=com", + email: "BnrlsiT@9c774f2280a1402ea1c5682381735a11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aile Frink,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aile Frink,ou=Product Development,dc=bitwarden,dc=com", + email: "FrinkA@3c0162b1baa744cf93a13a4dd3e63a95.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden,dc=com", + email: "CalhounS@939e830de4504aab81a7c388f1546624.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden,dc=com", + email: "BrindAmS@1726f5bfacd044bf871463e64c567d5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Damara Jaswal,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Damara Jaswal,ou=Product Testing,dc=bitwarden,dc=com", + email: "JaswalD@ac7712596f924826bb4a05f6697a0ee3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ethelin Girotti,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ethelin Girotti,ou=Administrative,dc=bitwarden,dc=com", + email: "GirottiE@b827ba5736ae48268de38db3e9e259c3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pramod Foessl,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pramod Foessl,ou=Product Testing,dc=bitwarden,dc=com", + email: "FoesslP@39726a1b008d411d8a28b85a63102ac3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Octavia Handschy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Octavia Handschy,ou=Peons,dc=bitwarden,dc=com", + email: "HandschO@d121b17d8b8d40b599281654effa97ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kerstin Nandi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kerstin Nandi,ou=Management,dc=bitwarden,dc=com", + email: "NandiK@353b753321aa4a97a115856474e231b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elwood Bouick,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Elwood Bouick,ou=Product Development,dc=bitwarden,dc=com", + email: "BouickE@2246db4eb56e489a8d8791baa981b362.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarence Dpu,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clarence Dpu,ou=Management,dc=bitwarden,dc=com", + email: "DpuC@61fe9b3be1774f2d947cd8507fb19a6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shama Norton,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Shama Norton,ou=Janitorial,dc=bitwarden,dc=com", + email: "NortonS@7c673260c1654ab39a2cf9c0221276cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vo Sauer,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Vo Sauer,ou=Payroll,dc=bitwarden,dc=com", + email: "SauerV@503fe0b136ce4292a59167d529c63c6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilberte Ferland,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gilberte Ferland,ou=Administrative,dc=bitwarden,dc=com", + email: "FerlandG@dfcb2a19ea66423b8c7753e337720a1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Valeria Harmon,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Valeria Harmon,ou=Janitorial,dc=bitwarden,dc=com", + email: "HarmonV@15697ed59de04051be420308b9e31bf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden,dc=com", + email: "OgrodniF@003a19d1bf9146d984f813f1bd527371.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorthy Youngman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dorthy Youngman,ou=Management,dc=bitwarden,dc=com", + email: "YoungmaD@81b3fb831aa74c6eb047aa19d5ff709c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilles Litherland,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gilles Litherland,ou=Payroll,dc=bitwarden,dc=com", + email: "LitherlG@d3b61e3cc90b49cc9ba1a573da70d77b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erick Wicht,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Erick Wicht,ou=Peons,dc=bitwarden,dc=com", + email: "WichtE@a0faacd6502f4c289ffd19b314c03e45.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden,dc=com", + email: "ElectroD@7070424bb94c4f288a054e30d222335a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kassie Nava,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kassie Nava,ou=Product Development,dc=bitwarden,dc=com", + email: "NavaK@7b2b1b92e9ae4fe4a68b2d0b29724ff5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opaline Ober,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Opaline Ober,ou=Janitorial,dc=bitwarden,dc=com", + email: "OberO@13f66f98b46e4ca78042c5426b60b783.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden,dc=com", + email: "GillesR@bf3722e960fc4d239d118bd3637206be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madan Baab,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Madan Baab,ou=Product Development,dc=bitwarden,dc=com", + email: "BaabM@5427bdee75c245c39f1a2b879610cd11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Htd Hersee,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Htd Hersee,ou=Administrative,dc=bitwarden,dc=com", + email: "HerseeH@64c2fa20001b495182e976975782823e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorita Anker,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Dorita Anker,ou=Product Testing,dc=bitwarden,dc=com", + email: "AnkerD@ba86ce5a5ce74352a483e9becf24707d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christopher Cohea,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Christopher Cohea,ou=Management,dc=bitwarden,dc=com", + email: "CoheaC@364a7b91d06e4e96b9f9da53be963330.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robbie Bunting,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Robbie Bunting,ou=Human Resources,dc=bitwarden,dc=com", + email: "BuntingR@ef2d41c14b454c68ae998d020dbd8441.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden,dc=com", + email: "VitaccoA@d8cda96778684be5a884f9cf0be697ce.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden,dc=com", + email: "GarciaLC@47835e50e03e464aa819e55cdfc4261b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Masood Shipe,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Masood Shipe,ou=Management,dc=bitwarden,dc=com", + email: "ShipeM@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden,dc=com", + email: "MatsuzaA@1f4900f32c02427db7ff10eff22275bb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden,dc=com", + email: "McLachlS@4fdb4b1142dd43e2b745e38a2e8dcfc4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernardina Sreedhar,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bernardina Sreedhar,ou=Management,dc=bitwarden,dc=com", + email: "SreedhaB@e1b5546a5ab54f1a8c4afd4caf48fb6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Atl Corbin,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Atl Corbin,ou=Product Testing,dc=bitwarden,dc=com", + email: "CorbinA@31088ab6ae1c44e2b8845b41b99020c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alice Knighton,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alice Knighton,ou=Management,dc=bitwarden,dc=com", + email: "KnightoA@cb07970b0c0045b19cc41917f946567f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fern Okafo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Fern Okafo,ou=Product Development,dc=bitwarden,dc=com", + email: "OkafoF@387cb4eeb42b453d9fdeaffd6fead144.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brietta Dupras,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brietta Dupras,ou=Management,dc=bitwarden,dc=com", + email: "DuprasB@64f2029803c84bd485b5906422a02667.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wanda Becker,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Wanda Becker,ou=Human Resources,dc=bitwarden,dc=com", + email: "BeckerW@a6318282a95143ad9eb6eec2fd89dea7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerben Kozlowski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gerben Kozlowski,ou=Management,dc=bitwarden,dc=com", + email: "KozlowsG@ef62870980d64d4ebbfd1c03f4cab294.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maynard Burness,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Maynard Burness,ou=Product Development,dc=bitwarden,dc=com", + email: "BurnessM@520c5bcfe42945ff9a9bc4329f8d9224.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sylva Milloy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sylva Milloy,ou=Janitorial,dc=bitwarden,dc=com", + email: "MilloyS@804b9151f1ba415a894983275163dae1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=CheeYin Westphal,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=CheeYin Westphal,ou=Administrative,dc=bitwarden,dc=com", + email: "WestphaC@a1372432defa4ccd9584b648a051efd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden,dc=com", + email: "NadeauDT@d457e1580197417888cc4a9c93599471.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bawn McNeal,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bawn McNeal,ou=Peons,dc=bitwarden,dc=com", + email: "McNealB@9abf99278fb8488383a30c0af0b67716.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raine Fogle,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Raine Fogle,ou=Peons,dc=bitwarden,dc=com", + email: "FogleR@cd3e8f43f0dd4d3fb94f3baba8d46ade.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eyde Sitch,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Eyde Sitch,ou=Management,dc=bitwarden,dc=com", + email: "SitchE@7193a73f55bc4b758a5c65a864323aa2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Windowing Walkins,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Windowing Walkins,ou=Product Testing,dc=bitwarden,dc=com", + email: "WalkinsW@f9e807ad6c8448a7b4463b10b5cc7416.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alisun Hampel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Alisun Hampel,ou=Management,dc=bitwarden,dc=com", + email: "HampelA@d52c1f1046c6411eb0907201f8f5a6d8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Quinta Pimpare,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Quinta Pimpare,ou=Product Development,dc=bitwarden,dc=com", + email: "PimpareQ@926986a7a9224c51b55271804ad9a9d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jemimah Whitney,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Jemimah Whitney,ou=Product Development,dc=bitwarden,dc=com", + email: "WhitneyJ@687816d020af4e4c9d25419b3dd63e14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marta McNerlan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Marta McNerlan,ou=Peons,dc=bitwarden,dc=com", + email: "McNerlaM@2faed39246da44659e67f7ee9bc9a292.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miranda Sobel,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Miranda Sobel,ou=Human Resources,dc=bitwarden,dc=com", + email: "SobelM@01a39cd47fba422abe5be28943be33a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minda Andric,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Minda Andric,ou=Peons,dc=bitwarden,dc=com", + email: "AndricM@c5077a2f25784ddab82881f1aec25848.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roselle Baber,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Roselle Baber,ou=Management,dc=bitwarden,dc=com", + email: "BaberR@b8d27e8398214587851640fca750ea6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Four Keene,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Four Keene,ou=Peons,dc=bitwarden,dc=com", + email: "KeeneF@271b979d05d84246a9dbf07f2554970e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Souza Salyer,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Souza Salyer,ou=Human Resources,dc=bitwarden,dc=com", + email: "SalyerS@e36a0def7d834657ab4aab201a87a463.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Petri Beehler,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Petri Beehler,ou=Management,dc=bitwarden,dc=com", + email: "BeehlerP@530608b4f9df417187aa615866b37d82.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annadiane Hyrne,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Annadiane Hyrne,ou=Peons,dc=bitwarden,dc=com", + email: "HyrneA@4467185dad394a2ab964d923a668f7a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Freida Nock,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Freida Nock,ou=Human Resources,dc=bitwarden,dc=com", + email: "NockF@e358162fa0384d918adc01a68c3773f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Adrianne Hollenbach,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Adrianne Hollenbach,ou=Management,dc=bitwarden,dc=com", + email: "HollenbA@17090ec80eaa480fa5878f4ca04b3503.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leon Hulme,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Leon Hulme,ou=Human Resources,dc=bitwarden,dc=com", + email: "HulmeL@a0e52fac0f494b0982a62c82b5201e22.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Izabel Schnell,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Izabel Schnell,ou=Product Development,dc=bitwarden,dc=com", + email: "SchnellI@559e1a46c2f944d8a33837a661c67fa0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jammie Parisien,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jammie Parisien,ou=Administrative,dc=bitwarden,dc=com", + email: "ParisieJ@8318909e0776426c8a3322dfc777c59c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cori Oreilly,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Cori Oreilly,ou=Human Resources,dc=bitwarden,dc=com", + email: "OreillyC@c9e4e7670c4c4defb2239518befdd386.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Enzo Rodgers,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Enzo Rodgers,ou=Product Development,dc=bitwarden,dc=com", + email: "RodgersE@6075ce54c1c346baad961bf0742aef3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pic Basinger,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Pic Basinger,ou=Peons,dc=bitwarden,dc=com", + email: "BasingeP@4c9858703e48497c924d77014e6a3b88.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden,dc=com", + email: "FuquaB@7c7d4c294db5460a9b0b3e7e2e1f0255.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paqs Atalla,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Paqs Atalla,ou=Janitorial,dc=bitwarden,dc=com", + email: "AtallaP@ef893a2718a6415a89b1218247ab6f7e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norina McClymont,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Norina McClymont,ou=Management,dc=bitwarden,dc=com", + email: "McClymoN@dd187a873e4c4bb299a3c9194e913cba.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sadella Psklib,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Sadella Psklib,ou=Administrative,dc=bitwarden,dc=com", + email: "PsklibS@52d447bfc2464a51a20925b35098fffa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bqb Mulvie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Bqb Mulvie,ou=Payroll,dc=bitwarden,dc=com", + email: "MulvieB@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jenica Brophy,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jenica Brophy,ou=Human Resources,dc=bitwarden,dc=com", + email: "BrophyJ@b19f5c0cd758429f9a018da5785536ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden,dc=com", + email: "MattiuzG@22a72674ecec479588f031d302cecb2d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Steen Dubuc,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Steen Dubuc,ou=Product Development,dc=bitwarden,dc=com", + email: "DubucS@f58bbd26c10847bc8e678cb993396656.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shea Blesi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shea Blesi,ou=Management,dc=bitwarden,dc=com", + email: "BlesiS@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kusum Tilden,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Kusum Tilden,ou=Human Resources,dc=bitwarden,dc=com", + email: "TildenK@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Famke Chuah,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Famke Chuah,ou=Administrative,dc=bitwarden,dc=com", + email: "ChuahF@ff582b028bb14d7f8a64ae9e228eb6b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden,dc=com", + email: "CytrynbA@1fd495b25f014a69affe5c97974df0f7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden,dc=com", + email: "SnodgraA@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=HoaVan Drummer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=HoaVan Drummer,ou=Peons,dc=bitwarden,dc=com", + email: "DrummerH@64ea5273cbad4fe1bbdf6cc7bf563ed4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Metrics McCoy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Metrics McCoy,ou=Peons,dc=bitwarden,dc=com", + email: "McCoyM@f57569f7524f4479b4d43ec8c220c303.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden,dc=com", + email: "ZarkelB@bb451e9caafd4e81b5fb79f1aea3830a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden,dc=com", + email: "WiebeM@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolas Lally,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nicolas Lally,ou=Product Testing,dc=bitwarden,dc=com", + email: "LallyN@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Candie Siefert,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Candie Siefert,ou=Administrative,dc=bitwarden,dc=com", + email: "SiefertC@88c454cb568147c58332d77ce464726b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ulf Novak,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Ulf Novak,ou=Product Testing,dc=bitwarden,dc=com", + email: "NovakU@1d0fa7b832b142ce82ca5e924a1754a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", + email: "RhattigF@1a99800019bc40cc83877edaa3c037bd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Paulette Unkefer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Paulette Unkefer,ou=Peons,dc=bitwarden,dc=com", + email: "UnkeferP@972afc9853ee4f2c90b26fb09fc7d779.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden,dc=com", + email: "GolissC@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gwendolin Kean,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gwendolin Kean,ou=Payroll,dc=bitwarden,dc=com", + email: "KeanG@06bce776ad5946a6be606d0392cec3ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marthe Harvey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Marthe Harvey,ou=Human Resources,dc=bitwarden,dc=com", + email: "HarveyM@79f70adba366489f9a827cac7a2d8fd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden,dc=com", + email: "ElhamahD@bb48b434201c4705a4eb043e09cd6d70.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francene AuYeung,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Francene AuYeung,ou=Peons,dc=bitwarden,dc=com", + email: "AuYeungF@0d2f49c4afec422dbf4961ec0258d7e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Juliana Omura,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Juliana Omura,ou=Peons,dc=bitwarden,dc=com", + email: "OmuraJ@797c12ee868e41e5be4bb46785d3d6aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emelina Elliot,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Emelina Elliot,ou=Product Development,dc=bitwarden,dc=com", + email: "ElliotE@5437f19907594de59138cb373ea3e4a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Waverly Monforton,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Waverly Monforton,ou=Payroll,dc=bitwarden,dc=com", + email: "MonfortW@78921cb9fe6c47488d5cf12368310816.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gladys Bilanski,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Gladys Bilanski,ou=Management,dc=bitwarden,dc=com", + email: "BilanskG@631ae20fb31c4a77babae0e6eaf9b74d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Analise Shea,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Analise Shea,ou=Product Testing,dc=bitwarden,dc=com", + email: "SheaA@5f0294cf70af42dd8b675e776526c55e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cart Boutin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Cart Boutin,ou=Management,dc=bitwarden,dc=com", + email: "BoutinC@5829ced5acec40878d4752d92d457b7b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kunie Hoorman,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Kunie Hoorman,ou=Product Development,dc=bitwarden,dc=com", + email: "HoormanK@306375064b2741d094b3e69f5fcd1355.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odelinda Keilty,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Odelinda Keilty,ou=Payroll,dc=bitwarden,dc=com", + email: "KeiltyO@99ed379ff20347a2afcfdca050997d8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden,dc=com", + email: "NicolaoB@31b20282a43b4a2586c05543f32a2ad0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stella Sist,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Stella Sist,ou=Peons,dc=bitwarden,dc=com", + email: "SistS@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden,dc=com", + email: "PhillipM@2322b02e7fdc412fb0617a541c4ec04c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dayle Schenkel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dayle Schenkel,ou=Management,dc=bitwarden,dc=com", + email: "SchenkeD@dbc00763a9de485c97697558ab9ccf2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlyn McBroom,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Arlyn McBroom,ou=Payroll,dc=bitwarden,dc=com", + email: "McBroomA@810805989c354ad7a79f655890d0527e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brear Jensen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Brear Jensen,ou=Payroll,dc=bitwarden,dc=com", + email: "JensenB@f3145f0fc9d14ab089c58ad253fdbe93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ann Bulengo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ann Bulengo,ou=Administrative,dc=bitwarden,dc=com", + email: "BulengoA@25c6b9a9cdb0416ea3c7c7318ec420ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Esma Jak,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Esma Jak,ou=Human Resources,dc=bitwarden,dc=com", + email: "JakE@0c79359a2e94444a9804cb3df1168a2f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Larkin Nance,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Larkin Nance,ou=Payroll,dc=bitwarden,dc=com", + email: "NanceL@3f23376c66604a36ab332ecde75543de.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirelle Novak,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mirelle Novak,ou=Peons,dc=bitwarden,dc=com", + email: "NovakM@5d21976aa8594197bf4a897cb95dc5c6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorothy Laurich,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Dorothy Laurich,ou=Product Development,dc=bitwarden,dc=com", + email: "LaurichD@2d82e4fbfc604880a9f0d07a8531daa9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shyam Wernik,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Shyam Wernik,ou=Human Resources,dc=bitwarden,dc=com", + email: "WernikS@76e7e62397cf46a7b8c004ca6e02f899.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Niek Rahmany,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Niek Rahmany,ou=Product Development,dc=bitwarden,dc=com", + email: "RahmanyN@94ce9594247c4b4684617b905ff4b38b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jung Kimler,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Jung Kimler,ou=Administrative,dc=bitwarden,dc=com", + email: "KimlerJ@fb2a9835511b44fba3bde94e482a2f71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden,dc=com", + email: "HearndeJ@74cfe2fa4b0b457bbb2822816bc66149.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lolita Mufti,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Lolita Mufti,ou=Product Testing,dc=bitwarden,dc=com", + email: "MuftiL@8fb6b5ed2e0c4f9896a409d4b0bce533.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coord Kalleward,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Coord Kalleward,ou=Management,dc=bitwarden,dc=com", + email: "KallewaC@b114f468b2f34a46af68fa26b5215d8f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Garnet Shames,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Garnet Shames,ou=Payroll,dc=bitwarden,dc=com", + email: "ShamesG@53a050beae0b4f609caf7ccf53a73868.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fara Shireman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Fara Shireman,ou=Human Resources,dc=bitwarden,dc=com", + email: "ShiremaF@a8b705848c504748848b8aba539736f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden,dc=com", + email: "KatsourE@abd7a0e1e97f4d19962cc07f7f9bc4e3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shahid Neil,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Shahid Neil,ou=Management,dc=bitwarden,dc=com", + email: "NeilS@c3e7bf42d4644f6bb0bcdc78feeb3e92.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Starlene Falardeau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Starlene Falardeau,ou=Payroll,dc=bitwarden,dc=com", + email: "FalardeS@4196ac503710477b96965e0281bd88e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marce Plaisance,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marce Plaisance,ou=Janitorial,dc=bitwarden,dc=com", + email: "PlaisanM@3557661a889d4d1aa53732cbd0d2ba7c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lena Mathias,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lena Mathias,ou=Product Development,dc=bitwarden,dc=com", + email: "MathiasL@890d1310fd334cdc8c698f8a47f59b9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gaby Booking,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Gaby Booking,ou=Janitorial,dc=bitwarden,dc=com", + email: "BookingG@076fd971827e4bad8f0fb878bbd61e75.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michaela Trimble,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Michaela Trimble,ou=Product Testing,dc=bitwarden,dc=com", + email: "TrimbleM@d36f0da7bde1417c871787ddace3eaa5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden,dc=com", + email: "TrochuL@63ba35c8524545369a911e12c7f3bea9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucie Kilner,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Lucie Kilner,ou=Payroll,dc=bitwarden,dc=com", + email: "KilnerL@f3145f0fc9d14ab089c58ad253fdbe93.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danyelle Rider,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Danyelle Rider,ou=Product Testing,dc=bitwarden,dc=com", + email: "RiderD@415c030ee16d4de4a7392387c8cef87f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mariska Tien,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mariska Tien,ou=Peons,dc=bitwarden,dc=com", + email: "TienM@8f61b7df745c411eb50459783db5da78.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Belvia Lamoureux,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Belvia Lamoureux,ou=Peons,dc=bitwarden,dc=com", + email: "LamoureB@5449de7063aa4ed2b6578dde4c294893.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden,dc=com", + email: "PevecS@8557bf093f9c42cfa11eafadaf8fc9c1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jian Marneris,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jian Marneris,ou=Payroll,dc=bitwarden,dc=com", + email: "MarneriJ@c4fdb8e85dc84c0eb28174e2bfc1119e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dagmar Moseby,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Dagmar Moseby,ou=Payroll,dc=bitwarden,dc=com", + email: "MosebyD@d3fcdb605edb46b186b8487dae0de85d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Casie Ress,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Casie Ress,ou=Janitorial,dc=bitwarden,dc=com", + email: "RessC@3176045f47fb4a99bfb7ada750f4ebf5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hrinfo Okura,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Hrinfo Okura,ou=Payroll,dc=bitwarden,dc=com", + email: "OkuraH@687816d020af4e4c9d25419b3dd63e14.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Korney Fadlallah,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Korney Fadlallah,ou=Administrative,dc=bitwarden,dc=com", + email: "FadlallK@72192729ccbe43a199e14adff9e9435d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jiri Leftwich,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Jiri Leftwich,ou=Peons,dc=bitwarden,dc=com", + email: "LeftwicJ@67e1d3a1e2154702a69e299a8ae82d10.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden,dc=com", + email: "GallaisM@2a074f142f094eecb44b675913154101.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tildie Abbott,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Tildie Abbott,ou=Human Resources,dc=bitwarden,dc=com", + email: "AbbottT@3384fe06e3e740708cd219dff85b1f83.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kalindi Keehan,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kalindi Keehan,ou=Peons,dc=bitwarden,dc=com", + email: "KeehanK@5398775f17574785a44a78e1afa74d02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Collette Patchett,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Collette Patchett,ou=Product Development,dc=bitwarden,dc=com", + email: "PatchetC@b1def85879ca4d1390e9e6b1d5b583ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cristiane Ruth,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cristiane Ruth,ou=Peons,dc=bitwarden,dc=com", + email: "RuthC@5214956f0ee84ad493b8defdd90a23da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden,dc=com", + email: "MaciejeK@bf3c9cfe52ab46f8a1843392d272b32b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden,dc=com", + email: "MayhughT@e467c17deb834d9fbc8b67f6cfbeb951.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden,dc=com", + email: "WhitefoG@31c61f2c8f9340ee8037a78602dae0c7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sedat Gurley,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sedat Gurley,ou=Product Testing,dc=bitwarden,dc=com", + email: "GurleyS@4eada34c16d14ddcb614de11bcd04009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharai Coxall,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sharai Coxall,ou=Product Development,dc=bitwarden,dc=com", + email: "CoxallS@63acb1cef0d64271b1836eb0bdd826d3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franny Walton,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Franny Walton,ou=Product Testing,dc=bitwarden,dc=com", + email: "WaltonF@5191509f48d94538ad03dc3532ab7b16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aryn Klimas,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aryn Klimas,ou=Janitorial,dc=bitwarden,dc=com", + email: "KlimasA@d7b344ca45cd4c63b54c502d92e2c5d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden,dc=com", + email: "MacchiuJ@a2ea301b88434726b194e4c9303a1849.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorise Yue,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dorise Yue,ou=Human Resources,dc=bitwarden,dc=com", + email: "YueD@ae51202c09c842a381cec0b8654819ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mellisa Gustlin,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Mellisa Gustlin,ou=Management,dc=bitwarden,dc=com", + email: "GustlinM@2f0e638056364f0ebcf3676022d443c8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Butch Roper,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Butch Roper,ou=Administrative,dc=bitwarden,dc=com", + email: "RoperB@465c6a27d41345cf88d762adf10ae61e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden,dc=com", + email: "LeboN@67d3a8519ac14347aeb58946a31a1f50.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden,dc=com", + email: "OaksD@a0698e6e756a42f28ea2d90c4b303b9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mendel Rolls,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mendel Rolls,ou=Administrative,dc=bitwarden,dc=com", + email: "RollsM@776517ed1aad4bc8864e3bcd6b8432b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cecelia Dowse,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Cecelia Dowse,ou=Administrative,dc=bitwarden,dc=com", + email: "DowseC@97c81e07db974df3904138905672982c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden,dc=com", + email: "BarrowsJ@658d341f53c7427cb916d5817479bb06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anette Lassig,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Anette Lassig,ou=Janitorial,dc=bitwarden,dc=com", + email: "LassigA@09584180f5c84cea9422d4844e19cecf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gio Londhe,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gio Londhe,ou=Human Resources,dc=bitwarden,dc=com", + email: "LondheG@28985efb8c4d4c12b05fcd27a8c26b7f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden,dc=com", + email: "CropperC@b193a1e78b454203b9fa10eeebe62941.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tadayuki Mak,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tadayuki Mak,ou=Product Development,dc=bitwarden,dc=com", + email: "MakT@3de40f1f4bb746cab1a4ba47c2543175.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden,dc=com", + email: "RatnayaA@b923ae18e63741c4b104cfaeccc5a072.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ri Trisic,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ri Trisic,ou=Peons,dc=bitwarden,dc=com", + email: "TrisicR@d13e5b3d0b624833b56bbffe10dce123.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ileana Doyle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Ileana Doyle,ou=Management,dc=bitwarden,dc=com", + email: "DoyleI@39547ebc25814369833c967034408a9a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nico Badelt,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nico Badelt,ou=Management,dc=bitwarden,dc=com", + email: "BadeltN@1e81b45ef9d44be28cfb9e51c55e2212.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ragu Lieure,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Ragu Lieure,ou=Administrative,dc=bitwarden,dc=com", + email: "LieureR@7eeb5a2e39b24090937294c20835ac1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claudia Berhane,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Claudia Berhane,ou=Management,dc=bitwarden,dc=com", + email: "BerhaneC@8737fee626484322a472390d3fcd9614.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Silvana Tunali,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Silvana Tunali,ou=Human Resources,dc=bitwarden,dc=com", + email: "TunaliS@d30e293ef1a4478a8b737f763542bea7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anand Henshaw,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Anand Henshaw,ou=Administrative,dc=bitwarden,dc=com", + email: "HenshawA@9203e13698914816bdcd0ae89556ac90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Imtaz Ledamun,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Imtaz Ledamun,ou=Peons,dc=bitwarden,dc=com", + email: "LedamunI@71bf922abd2749a3982856c35ce9c912.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meryl Diaz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Meryl Diaz,ou=Product Development,dc=bitwarden,dc=com", + email: "DiazM@c1107b78fcdc4c7da36d0ed149a4f820.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saraann Anastasio,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Saraann Anastasio,ou=Administrative,dc=bitwarden,dc=com", + email: "AnastasS@a3b3e1a7dc12465fbb231dc02524f751.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Declan Creane,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Declan Creane,ou=Product Development,dc=bitwarden,dc=com", + email: "CreaneD@985464865b044117812421256bb2a81d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Terrell Mathieson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Terrell Mathieson,ou=Administrative,dc=bitwarden,dc=com", + email: "MathiesT@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden,dc=com", + email: "GibbonsM@6e63ac1e5cff4aa489817dd6f33e1a44.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden,dc=com", + email: "LeydigC@c69269019dbb421c8567785c28a21f04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olympia DMS,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Olympia DMS,ou=Peons,dc=bitwarden,dc=com", + email: "DMSO@9cba00e55266421b93bd11c17d0407ed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mounir Pullum,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Mounir Pullum,ou=Payroll,dc=bitwarden,dc=com", + email: "PullumM@a7e7b13342d14512ab65c0fc1d87a2ae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden,dc=com", + email: "McDowelG@5a83a2a2968c4e6f9cd933a562095339.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Constantina Faou,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Constantina Faou,ou=Product Development,dc=bitwarden,dc=com", + email: "FaouC@4376a00e71594ef1b26e2e0a8e02ecaa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Santiago Georges,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Santiago Georges,ou=Management,dc=bitwarden,dc=com", + email: "GeorgesS@f17372744618439491402613e317ee84.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marinette Ficker,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Marinette Ficker,ou=Janitorial,dc=bitwarden,dc=com", + email: "FickerM@368b49862ec74ac1974a058d04889202.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janet Pankiw,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Janet Pankiw,ou=Administrative,dc=bitwarden,dc=com", + email: "PankiwJ@4155bdebff5941d48d470ec7ba36ba81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden,dc=com", + email: "MohajerS@8e1bdb2b71764573ad6ede8abcf3030f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Else Hazenboom,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Else Hazenboom,ou=Product Testing,dc=bitwarden,dc=com", + email: "HazenboE@5c48fade5edf4f5784f81c27e5012291.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Saibal Traynor,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Saibal Traynor,ou=Peons,dc=bitwarden,dc=com", + email: "TraynorS@d9dfb2c3a70849548f67937ceedb07f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khue Mein,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Khue Mein,ou=Human Resources,dc=bitwarden,dc=com", + email: "MeinK@04a84c4ba77a4d778bbb90bf38322dca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden,dc=com", + email: "SchaffeB@df40332a741445b7a8fa73b2a928c4b0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=PeyKee Fetterman,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=PeyKee Fetterman,ou=Management,dc=bitwarden,dc=com", + email: "FettermP@afdb909799524b7dbed21ce8a882a129.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Claire Reinlie,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Claire Reinlie,ou=Management,dc=bitwarden,dc=com", + email: "ReinlieC@825889a0436341f395c7130d2978f17d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shawna Lahlum,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shawna Lahlum,ou=Product Development,dc=bitwarden,dc=com", + email: "LahlumS@11d46bffb41f4b52a78d536832879f6a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darelle Childress,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Darelle Childress,ou=Product Development,dc=bitwarden,dc=com", + email: "ChildreD@6ffe5ab0f525480aa833777930f34870.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kessiah Alford,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kessiah Alford,ou=Peons,dc=bitwarden,dc=com", + email: "AlfordK@238696ade728438aa3391299a0dc9901.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Theressa Olivier,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Theressa Olivier,ou=Peons,dc=bitwarden,dc=com", + email: "OlivierT@3ac90edfcfff46898d6b206ad200961d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pauly Jago,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pauly Jago,ou=Product Testing,dc=bitwarden,dc=com", + email: "JagoP@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Collete Krabicka,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Collete Krabicka,ou=Product Development,dc=bitwarden,dc=com", + email: "KrabickC@7cae85b47554428097a6ccb66a70ecf0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kim Highsmith,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kim Highsmith,ou=Administrative,dc=bitwarden,dc=com", + email: "HighsmiK@1ae1933dac97453a926e3efbe8067be8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden,dc=com", + email: "MaludziN@19be86f3b1d34c7ab6993505e8f0ad33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elladine Schwab,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Elladine Schwab,ou=Janitorial,dc=bitwarden,dc=com", + email: "SchwabE@fdc7d191201f48f4ad7e078c4bc3a04a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden,dc=com", + email: "KnickerF@f853c03d8c874a9b82d05bbacc050701.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden,dc=com", + email: "ParthasT@a3360bcceedb4a1c970485f0ee727ec8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=XiaoMing Dorr,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=XiaoMing Dorr,ou=Management,dc=bitwarden,dc=com", + email: "DorrX@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clement Durant,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Clement Durant,ou=Peons,dc=bitwarden,dc=com", + email: "DurantC@50bab9f9cf1041a789372e5001d27214.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rejeanne Shelegey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Rejeanne Shelegey,ou=Management,dc=bitwarden,dc=com", + email: "ShelegeR@de4005aec23f451ca3bc6305e1d4b24c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicky McDowall,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nicky McDowall,ou=Payroll,dc=bitwarden,dc=com", + email: "McDowalN@99e9bc5df9fd4340b54c8a144a9561a1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden,dc=com", + email: "ChepregJ@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomasa Fulk,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Thomasa Fulk,ou=Peons,dc=bitwarden,dc=com", + email: "FulkT@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Florri Tregenza,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Florri Tregenza,ou=Peons,dc=bitwarden,dc=com", + email: "TregenzF@759d634715d84fd98852f9030d6bb1fd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hester Colbourne,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hester Colbourne,ou=Product Development,dc=bitwarden,dc=com", + email: "ColbourH@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anitra Hugel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Anitra Hugel,ou=Product Development,dc=bitwarden,dc=com", + email: "HugelA@41e8e26802fc4aa2a4f148597fd04eef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kanu Cuervo,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kanu Cuervo,ou=Management,dc=bitwarden,dc=com", + email: "CuervoK@4ffdbcbdfbba4f78b2cb0e4b52273909.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden,dc=com", + email: "LethebiO@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden,dc=com", + email: "HafermaA@566c53c3c68842f79a345eff5495df76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Faruk Hanzel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Faruk Hanzel,ou=Product Development,dc=bitwarden,dc=com", + email: "HanzelF@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Trent Carli,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Trent Carli,ou=Product Development,dc=bitwarden,dc=com", + email: "CarliT@d95e5fa5af7a4a96ac09ece7f1a1a4f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maurene Paliga,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Maurene Paliga,ou=Payroll,dc=bitwarden,dc=com", + email: "PaligaM@0fae6975893e4404981e1b0278fd9893.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Minette Manner,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Minette Manner,ou=Management,dc=bitwarden,dc=com", + email: "MannerM@2ee12d03ea504c8cbd45c956288b9b76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden,dc=com", + email: "MerklinD@e471e3a82052467cbf4b6e0a9c1ffb9e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elio Lough,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elio Lough,ou=Payroll,dc=bitwarden,dc=com", + email: "LoughE@a63636764be2417c8862dba36d524669.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Abigael Noddin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Abigael Noddin,ou=Peons,dc=bitwarden,dc=com", + email: "NoddinA@db51bc9053f3446197c0ce77497e73c2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Winna Bono,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Winna Bono,ou=Human Resources,dc=bitwarden,dc=com", + email: "BonoW@7c32fb701ef74a0cad22be6cdec84337.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden,dc=com", + email: "JubenviK@828715479ac64a4e9327e29f8a0322a8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karalynn Paylor,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Karalynn Paylor,ou=Administrative,dc=bitwarden,dc=com", + email: "PaylorK@77c372e3de4e484f817d59e9093d13ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caterina Pittam,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Caterina Pittam,ou=Peons,dc=bitwarden,dc=com", + email: "PittamC@73270e440d9c4ce889031efd2cc4d745.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Michaela Cuffle,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Michaela Cuffle,ou=Management,dc=bitwarden,dc=com", + email: "CuffleM@c927612f4cbe4fcf841a3d7e140a391c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sibylle Martins,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sibylle Martins,ou=Human Resources,dc=bitwarden,dc=com", + email: "MartinsS@84cc1f48f9a6495a85f0c7e7652d7056.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jade Noguchi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jade Noguchi,ou=Payroll,dc=bitwarden,dc=com", + email: "NoguchiJ@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Guenna Lazure,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Guenna Lazure,ou=Peons,dc=bitwarden,dc=com", + email: "LazureG@1b72488cc66542c3a9a532a6c9260a5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beatrisa Staring,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Beatrisa Staring,ou=Product Development,dc=bitwarden,dc=com", + email: "StaringB@c5642a4e738442dc82e826ce039fbed0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bernadine Schrang,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Bernadine Schrang,ou=Product Development,dc=bitwarden,dc=com", + email: "SchrangB@696db7ebc26e4f86a6552c4f6f755d76.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alese Rigdon,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Alese Rigdon,ou=Product Development,dc=bitwarden,dc=com", + email: "RigdonA@c6cd785d90994077a9f86547f3ad75a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=MaryJo Harms,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=MaryJo Harms,ou=Janitorial,dc=bitwarden,dc=com", + email: "HarmsM@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorris Akita,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Dorris Akita,ou=Janitorial,dc=bitwarden,dc=com", + email: "AkitaD@deb24c82a57b4b4ba4fd2ff9dfbbb9d6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thanh Dewitt,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Thanh Dewitt,ou=Product Development,dc=bitwarden,dc=com", + email: "DewittT@5e4e7d75e05b48bd8f2b694051e48b65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden,dc=com", + email: "KlosterR@7ab7643662f14cef84497ec647fde7ff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", + email: "BaggermA@a372f6ef68844d9ba9a56394e6e19253.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Davita Stenson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Davita Stenson,ou=Product Development,dc=bitwarden,dc=com", + email: "StensonD@e62b6bada3794f6abc6e683f712748b4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pak Krone,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Pak Krone,ou=Product Development,dc=bitwarden,dc=com", + email: "KroneP@42be868e79934b2781b6098b8536a633.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idalina Vogt,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Idalina Vogt,ou=Product Testing,dc=bitwarden,dc=com", + email: "VogtI@95371e442302451c9744b100e5d4b3c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden,dc=com", + email: "VankootW@804b9151f1ba415a894983275163dae1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yuan Wester,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Yuan Wester,ou=Product Development,dc=bitwarden,dc=com", + email: "WesterY@1dc3a166a7d1429cbda07bce89749db3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Riaz Gulis,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Riaz Gulis,ou=Product Development,dc=bitwarden,dc=com", + email: "GulisR@145129e0e2ad4c1cabc46b1331f17265.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odetta Masse,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Odetta Masse,ou=Product Testing,dc=bitwarden,dc=com", + email: "MasseO@aa7285e13fe546c6b7b266b1436cce65.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stacia Presgrove,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Stacia Presgrove,ou=Management,dc=bitwarden,dc=com", + email: "PresgroS@f5efd1e9a39c413dbfa9f7e476ae7cea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norbert Salazar,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Norbert Salazar,ou=Product Development,dc=bitwarden,dc=com", + email: "SalazarN@36dd795f7b764cba960063e604e64710.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nevein Grimshaw,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nevein Grimshaw,ou=Management,dc=bitwarden,dc=com", + email: "GrimshaN@1d6456d50bf342eb9edbc475cb3ae754.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Annaliese Hudak,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Annaliese Hudak,ou=Product Development,dc=bitwarden,dc=com", + email: "HudakA@8086b9fea7b2437cb09806e8e5c40f1a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Andromache Machika,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Andromache Machika,ou=Product Development,dc=bitwarden,dc=com", + email: "MachikaA@aae9b0d8d8c047aa8aadb6213597cf90.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Meriann Larose,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Meriann Larose,ou=Human Resources,dc=bitwarden,dc=com", + email: "LaroseM@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agathe Kikuchi,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Agathe Kikuchi,ou=Management,dc=bitwarden,dc=com", + email: "KikuchiA@7c90e56d6cd142eb807f1e1a9bbefb5e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Somsak Fields,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Somsak Fields,ou=Janitorial,dc=bitwarden,dc=com", + email: "FieldsS@0177394985bc446d8344b5896f855979.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zitella Hussein,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zitella Hussein,ou=Product Testing,dc=bitwarden,dc=com", + email: "HusseinZ@c659efb530134031a977821791781191.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Varennes ParkerShane,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Varennes ParkerShane,ou=Peons,dc=bitwarden,dc=com", + email: "ParkerSV@6ad50b5570274446ac57cf22bb8d002a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden,dc=com", + email: "MajumdaN@1291a44cab8442a6a669d12c387911e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Idelle Leicht,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Idelle Leicht,ou=Payroll,dc=bitwarden,dc=com", + email: "LeichtI@db317ee4bd8b44f39022e9dbfa6a622b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Darb Swinkels,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Darb Swinkels,ou=Product Testing,dc=bitwarden,dc=com", + email: "SwinkelD@fd2458f229b6479d85b521aa5a4cd638.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden,dc=com", + email: "NagleT@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Koren Perfetti,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Koren Perfetti,ou=Product Testing,dc=bitwarden,dc=com", + email: "PerfettK@99f91fc2bf8f45d2b847f01ff41a14da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kelcey Reuss,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Kelcey Reuss,ou=Administrative,dc=bitwarden,dc=com", + email: "ReussK@c9027f607987451aa869ec32b2ad0708.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lujanka Contardo,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lujanka Contardo,ou=Product Development,dc=bitwarden,dc=com", + email: "ContardL@e43c05f5415a492785e600f140e34b3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden,dc=com", + email: "TwidaleK@a77c7140e8a14e9180f6ceda32adedff.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barton Seggie,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Barton Seggie,ou=Payroll,dc=bitwarden,dc=com", + email: "SeggieB@c25c8eeee77f4478896f338b08270109.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden,dc=com", + email: "PricharH@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Julee Norby,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Julee Norby,ou=Janitorial,dc=bitwarden,dc=com", + email: "NorbyJ@affed2f672a845bead4365ae80e4a101.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharai Torok,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sharai Torok,ou=Payroll,dc=bitwarden,dc=com", + email: "TorokS@11aa381a3094436abdc8bd9975f709cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden,dc=com", + email: "OShaughL@d6721ca94efc423ca3ff9d14e2b46e8c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden,dc=com", + email: "SugandiF@528c9fa3f4634d4b9c93989a607b8098.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cefee Donelan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Cefee Donelan,ou=Payroll,dc=bitwarden,dc=com", + email: "DonelanC@7f74d23b6c664be682e93e811e1b368f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jderek Sankey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jderek Sankey,ou=Management,dc=bitwarden,dc=com", + email: "SankeyJ@30fd8caea98d43dc8f4491c614480126.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sid Barnhill,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Sid Barnhill,ou=Product Testing,dc=bitwarden,dc=com", + email: "BarnhilS@1d677d74737a4c97a99e772d549b45f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kamlesh Hoang,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kamlesh Hoang,ou=Peons,dc=bitwarden,dc=com", + email: "HoangK@8441796b12754e19879e114c62d45933.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sarath McCall,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sarath McCall,ou=Payroll,dc=bitwarden,dc=com", + email: "McCallS@95704a5d367a4911b51583656800520a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nermana Douglas,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Nermana Douglas,ou=Management,dc=bitwarden,dc=com", + email: "DouglasN@11af325799324b3caac4bd3790e434d4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Student Sonne,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Student Sonne,ou=Janitorial,dc=bitwarden,dc=com", + email: "SonneS@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maisie DaGama,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maisie DaGama,ou=Product Testing,dc=bitwarden,dc=com", + email: "DaGamaM@0c23adeda02746a4adaf81e3c1305ae8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Erminie Battershill,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Erminie Battershill,ou=Peons,dc=bitwarden,dc=com", + email: "BattersE@5be830b142b64fb88eef5251cf8d2b55.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jung Betts,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jung Betts,ou=Payroll,dc=bitwarden,dc=com", + email: "BettsJ@a31de830b7f74a7a9756ec57873d87d7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maddi Naolu,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maddi Naolu,ou=Product Testing,dc=bitwarden,dc=com", + email: "NaoluM@375640a8a3724defaeb05e0a11f25f5c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden,dc=com", + email: "PrzybycD@886606fb40e04b00b9dac2bed959f0a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ammar Parise,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ammar Parise,ou=Janitorial,dc=bitwarden,dc=com", + email: "PariseA@bacbd388513349be8db6d6f67cee97e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden,dc=com", + email: "IngreyY@c058e0f8bc3242ec861c9425536523d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Agata Khouderchan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Agata Khouderchan,ou=Management,dc=bitwarden,dc=com", + email: "KhouderA@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joella Casey,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Joella Casey,ou=Product Development,dc=bitwarden,dc=com", + email: "CaseyJ@b3127b0c3cfd4bcf84fd8497792fb64f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sharone Torrell,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sharone Torrell,ou=Janitorial,dc=bitwarden,dc=com", + email: "TorrellS@4745fb1993c34e22b6d51076c613f514.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ebony Vitaglian,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ebony Vitaglian,ou=Peons,dc=bitwarden,dc=com", + email: "VitagliE@9ab7fb3558f841749b06922a784e1384.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden,dc=com", + email: "NagarajM@973c4a1a5d1a4e4f9c421404b565659a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Evanne Callos,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Evanne Callos,ou=Product Development,dc=bitwarden,dc=com", + email: "CallosE@0bec70e6fa8d461ab29f67f7a630e586.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Purvee Kwast,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Purvee Kwast,ou=Peons,dc=bitwarden,dc=com", + email: "KwastP@e5509c3650ae4df593beadde93c97a4e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eluned Vinson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Eluned Vinson,ou=Administrative,dc=bitwarden,dc=com", + email: "VinsonE@3307e42f1d8c4293bd7a59fddc05e774.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Melisandra McVey,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Melisandra McVey,ou=Management,dc=bitwarden,dc=com", + email: "McVeyM@c1717c5f197c4d3987c6204634e4161c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Philipa Netdbs,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Philipa Netdbs,ou=Payroll,dc=bitwarden,dc=com", + email: "NetdbsP@ca30a33ca5c3482596934454af56a1c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Art Totten,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Art Totten,ou=Product Testing,dc=bitwarden,dc=com", + email: "TottenA@04b18099c35449929ab89aa5f1f3c21f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roxanna Colquette,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Roxanna Colquette,ou=Payroll,dc=bitwarden,dc=com", + email: "ColquetR@ba8c5354f208420b92e908dc80950154.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Janessa Bienek,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Janessa Bienek,ou=Product Development,dc=bitwarden,dc=com", + email: "BienekJ@cbebf122dc7c488591550ff3c1c37645.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Christa Schrage,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Christa Schrage,ou=Management,dc=bitwarden,dc=com", + email: "SchrageC@c7f3f4b5404343009726750451b5ec5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Glenna Trefry,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Glenna Trefry,ou=Janitorial,dc=bitwarden,dc=com", + email: "TrefryG@f3b9cbf7ffc94ed4be6295e8dcbbd47b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Cecco Langevin,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Cecco Langevin,ou=Peons,dc=bitwarden,dc=com", + email: "LangeviC@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Magdy McCloskey,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Magdy McCloskey,ou=Administrative,dc=bitwarden,dc=com", + email: "McCloskM@40f66c0e51ca46c99bb0961cc624fcc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Filion Karam,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Filion Karam,ou=Management,dc=bitwarden,dc=com", + email: "KaramF@d8522133168344ce827a4130e7d16436.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nerissa Volz,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nerissa Volz,ou=Human Resources,dc=bitwarden,dc=com", + email: "VolzN@238696ade728438aa3391299a0dc9901.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Barb Crockett,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Barb Crockett,ou=Product Testing,dc=bitwarden,dc=com", + email: "CrocketB@f4587b22e18d47378cee893ba77c7d5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Klara deSalis,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Klara deSalis,ou=Janitorial,dc=bitwarden,dc=com", + email: "deSalisK@6f3b5ed6595f43e9be2b077643241ff9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Teri Hildum,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Teri Hildum,ou=Human Resources,dc=bitwarden,dc=com", + email: "HildumT@8a6ed36334664a75a9cc6a912bbbee51.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lorenza Pafilis,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lorenza Pafilis,ou=Peons,dc=bitwarden,dc=com", + email: "PafilisL@25a387134c7d40ab8adc2bebd578c5a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden,dc=com", + email: "NakatsuN@04d1c6c3175f4974b260a83a63c42a2e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anda Joyce,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Anda Joyce,ou=Peons,dc=bitwarden,dc=com", + email: "JoyceA@8c2946e2ae1e4ec0a1e9edd05301d704.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rustu Biss,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Rustu Biss,ou=Human Resources,dc=bitwarden,dc=com", + email: "BissR@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geer Devault,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Geer Devault,ou=Management,dc=bitwarden,dc=com", + email: "DevaultG@e340baad13364e06873f6c506e0427ea.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bea Nemec,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Bea Nemec,ou=Management,dc=bitwarden,dc=com", + email: "NemecB@a8ae1585c1f243f79caee56f5d3ecb02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Veneice Tobias,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Veneice Tobias,ou=Product Development,dc=bitwarden,dc=com", + email: "TobiasV@1a08913edfd44837a7e737b90b169ef7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden,dc=com", + email: "KneeshaS@ab120df6e5194bf6ac6a830bba26f7f2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dorolice Communication,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Dorolice Communication,ou=Management,dc=bitwarden,dc=com", + email: "CommuniD@fef3179c9c4841a591a83e801687f728.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Danica Middleton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Danica Middleton,ou=Human Resources,dc=bitwarden,dc=com", + email: "MiddletD@752a496e92da43f3852dc6fc94c2530e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Bradley Stokker,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Bradley Stokker,ou=Peons,dc=bitwarden,dc=com", + email: "StokkerB@7d6095181b454ecb8a89a9772da4d295.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kessia Reiser,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Kessia Reiser,ou=Management,dc=bitwarden,dc=com", + email: "ReiserK@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden,dc=com", + email: "WatchorS@11e135fa916b4ec49a99ab186c82a0aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lope Keim,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lope Keim,ou=Janitorial,dc=bitwarden,dc=com", + email: "KeimL@724bb72313a2494c8bc8f0602203fd58.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tonya Hine,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Tonya Hine,ou=Janitorial,dc=bitwarden,dc=com", + email: "HineT@0b95963fb73545098f8197081089a1f3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden,dc=com", + email: "WilkieZ@d99d4047451b4e76b9f1ce1cef474716.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lisa Lande,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Lisa Lande,ou=Product Development,dc=bitwarden,dc=com", + email: "LandeL@a524fcb1eac4447e976069bb86ce0e2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lapkin Matney,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Lapkin Matney,ou=Administrative,dc=bitwarden,dc=com", + email: "MatneyL@b76d7503542847f29f63dbae71a2b656.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden,dc=com", + email: "BourgauN@a34dd1944e1c4d68b93ae1f0684316ef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden,dc=com", + email: "RtprelbJ@b1f81108ccde47b8a2df0aba6ea7b365.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lenee Topp,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Lenee Topp,ou=Janitorial,dc=bitwarden,dc=com", + email: "ToppL@38661906a7a24233a4109f4402fd5f5f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sacto Miskelly,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Sacto Miskelly,ou=Payroll,dc=bitwarden,dc=com", + email: "MiskellS@45383e5a120c4c58a302e7c79762cfc3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sib Schissel,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Sib Schissel,ou=Product Development,dc=bitwarden,dc=com", + email: "SchisseS@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tessa Severin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Tessa Severin,ou=Payroll,dc=bitwarden,dc=com", + email: "SeverinT@85dda47759d846abae02b74a574c7914.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drucill Brickey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Drucill Brickey,ou=Peons,dc=bitwarden,dc=com", + email: "BrickeyD@47062aafd0e846809818576b78318155.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caterina StMartin,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Caterina StMartin,ou=Administrative,dc=bitwarden,dc=com", + email: "StMartiC@0710345c27d44c78bde32a03e3d70c26.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rojer Jurek,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Rojer Jurek,ou=Peons,dc=bitwarden,dc=com", + email: "JurekR@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shannah Colpitts,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shannah Colpitts,ou=Administrative,dc=bitwarden,dc=com", + email: "ColpittS@ec5b8f0e9ac54265b8c5ceea3f25604f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Holst Lowder,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Holst Lowder,ou=Janitorial,dc=bitwarden,dc=com", + email: "LowderH@9bec1f480eec4baea66a1e4c2e434262.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hernan Cano,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Hernan Cano,ou=Management,dc=bitwarden,dc=com", + email: "CanoH@cad06adc163e4feeb3c82e23f3cc80c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Opto Broten,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Opto Broten,ou=Human Resources,dc=bitwarden,dc=com", + email: "BrotenO@c26e885b4f4a47e7befaa9bedce07d04.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden,dc=com", + email: "MetcalfJ@49a5c823cbe74e80b9d7e45aa3c6dc0c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden,dc=com", + email: "LystuikL@8b4252ea9d114f95b65956efe85c0aae.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden,dc=com", + email: "BilodeaP@ae1bd8aa112143fa87c88a44e69aa310.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden,dc=com", + email: "AboussoG@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden,dc=com", + email: "StephenJ@9c33cfc2346e4ce69bd595e18c9344a0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jill Domine,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jill Domine,ou=Management,dc=bitwarden,dc=com", + email: "DomineJ@f46633fbb9a14011a26194c56d6fd793.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Calypso Bolding,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Calypso Bolding,ou=Human Resources,dc=bitwarden,dc=com", + email: "BoldingC@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden,dc=com", + email: "LegrandC@7848d01e47bb47dd88ac5b785d126995.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicolina Scp,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Nicolina Scp,ou=Janitorial,dc=bitwarden,dc=com", + email: "ScpN@3fe7f6d7adf6406f923792a176bd4ea0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden,dc=com", + email: "HagstroB@849b3c4e1c2c440d9331e7ccb7fe6ee8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Walter Cuddy,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Walter Cuddy,ou=Janitorial,dc=bitwarden,dc=com", + email: "CuddyW@afcd0af4da324c3492fbd5aaa52ff03c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden,dc=com", + email: "ParmaksC@511ccdcb357841e29d15d33838533afe.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ruby Mattson,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Ruby Mattson,ou=Janitorial,dc=bitwarden,dc=com", + email: "MattsonR@bb05d1b4bcfb47c3a365c022dca10213.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ranna Bedford,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Ranna Bedford,ou=Payroll,dc=bitwarden,dc=com", + email: "BedfordR@d4eaa963470a4ec593f45c3b1f5e6d31.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Amalle Rodi,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Amalle Rodi,ou=Payroll,dc=bitwarden,dc=com", + email: "RodiA@36bf168f83f54de6b68d81c3236caec7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eolande Tarver,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Eolande Tarver,ou=Human Resources,dc=bitwarden,dc=com", + email: "TarverE@ee233aa2d9a24ed1b6259dfbaed5ede4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilda Kirady,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tilda Kirady,ou=Product Testing,dc=bitwarden,dc=com", + email: "KiradyT@f131b0c80bf2427c8f1448cabfd51b89.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shailin Harris,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Shailin Harris,ou=Product Development,dc=bitwarden,dc=com", + email: "HarrisS@b97f63fadf014761ad37c4e561572265.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Axel Panter,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Axel Panter,ou=Payroll,dc=bitwarden,dc=com", + email: "PanterA@559e1a46c2f944d8a33837a661c67fa0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Karel McKerrow,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Karel McKerrow,ou=Janitorial,dc=bitwarden,dc=com", + email: "McKerroK@a54f12818a1846468b5223c21ce7b95a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden,dc=com", + email: "SYSINTH@ff55511857a042e0b4f985da98eaf06c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arabelle Jepson,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Arabelle Jepson,ou=Product Development,dc=bitwarden,dc=com", + email: "JepsonA@b034a4332db1440db9d21ffa224b40ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Donna Imhof,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Donna Imhof,ou=Payroll,dc=bitwarden,dc=com", + email: "ImhofD@31e0e9341ea74d639b4c5d690dfc3510.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden,dc=com", + email: "MastenbT@970a67116dba428ca784557a5cd27357.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lucila Caruth,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Lucila Caruth,ou=Management,dc=bitwarden,dc=com", + email: "CaruthL@4f4529779c39486286005f0294a1558e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Serban Kamal,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Serban Kamal,ou=Janitorial,dc=bitwarden,dc=com", + email: "KamalS@5f77a03327624c95b0af47acd4b143e5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Suzann Minter,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Suzann Minter,ou=Product Development,dc=bitwarden,dc=com", + email: "MinterS@f3b7d3d07c2e403b8aacf9226428b2e0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roselia Valvasori,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Roselia Valvasori,ou=Product Development,dc=bitwarden,dc=com", + email: "ValvasoR@dea332c9554341478a9465c061b04c2c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nancey ODonovan,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Nancey ODonovan,ou=Payroll,dc=bitwarden,dc=com", + email: "ODonovaN@d292ac0c300a44aaaa8fa15264950aa9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Deva Deugau,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Deva Deugau,ou=Payroll,dc=bitwarden,dc=com", + email: "DeugauD@c1864662acf34812bb78c7f7029d15f8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden,dc=com", + email: "LipskiG@6a7ad90af8b14ef5805ef3e5ef79c783.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Almire Rokas,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Almire Rokas,ou=Product Development,dc=bitwarden,dc=com", + email: "RokasA@70f44c830c534fd69815f0a242b800aa.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden,dc=com", + email: "KawashiN@2a1378ca3fed44339fabf27d28472e8d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aideen Sterian,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Aideen Sterian,ou=Product Development,dc=bitwarden,dc=com", + email: "SterianA@86ec81373a8049308a0ea3aa5ec73e40.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Norma Gording,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Norma Gording,ou=Peons,dc=bitwarden,dc=com", + email: "GordingN@4ea4f1e353e542d591c9ee228e04b29f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Caye LeTarte,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Caye LeTarte,ou=Human Resources,dc=bitwarden,dc=com", + email: "LeTarteC@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Odile Blaufus,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Odile Blaufus,ou=Product Development,dc=bitwarden,dc=com", + email: "BlaufusO@4d42e606140043c2b9dd8fa49a74f077.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerti Macchiusi,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Gerti Macchiusi,ou=Peons,dc=bitwarden,dc=com", + email: "MacchiuG@5bfdb02bbe094e32837af4fd211ac0c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmelita Fucito,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Carmelita Fucito,ou=Product Development,dc=bitwarden,dc=com", + email: "FucitoC@21bcf6a485b34cf591de5e2c4c73b2a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Xenia Ertan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Xenia Ertan,ou=Management,dc=bitwarden,dc=com", + email: "ErtanX@3735d00458534db99064f02f9211b0c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Foster Swinson,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Foster Swinson,ou=Administrative,dc=bitwarden,dc=com", + email: "SwinsonF@ca07554d305246dd85334089406d833c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden,dc=com", + email: "StennetJ@5bfe34f0b38046f495b7f4a7ffee01c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Fwpreg Liem,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Fwpreg Liem,ou=Administrative,dc=bitwarden,dc=com", + email: "LiemF@c28624b05f7d4c31811fad5e0d04b1e6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden,dc=com", + email: "MacMeekR@a85aab1f1ab04cd48420e81e7374b4e8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden,dc=com", + email: "RakotomE@16e252f623154ea09c88ae20c619b8c4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Yevette Egan,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Yevette Egan,ou=Product Testing,dc=bitwarden,dc=com", + email: "EganY@abb4a2ffe4d34b86b74539eca6366630.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clarice Seymour,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Clarice Seymour,ou=Management,dc=bitwarden,dc=com", + email: "SeymourC@2b13da408414484c934b524c33272c48.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden,dc=com", + email: "PopowicM@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden,dc=com", + email: "BnrinfoC@b1fdb151f0e64e1a958a0e82820ba255.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miles Khorami,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Miles Khorami,ou=Payroll,dc=bitwarden,dc=com", + email: "KhoramiM@6f609804b5454243a8f49419cf4fa238.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden,dc=com", + email: "UhlhornR@ed7609251fc6464495c48d57ffb093b6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joon Panton,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Joon Panton,ou=Administrative,dc=bitwarden,dc=com", + email: "PantonJ@399088e535dc444183a128d7fd1a5d16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Olympe Calmejane,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Olympe Calmejane,ou=Management,dc=bitwarden,dc=com", + email: "CalmejaO@9afe54538fed45b288aa10f6ca71fa1c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Felicdad Thornber,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Felicdad Thornber,ou=Peons,dc=bitwarden,dc=com", + email: "ThornbeF@a48701aa8d324e65a88e2c654b93d791.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pradeep Recktenwald,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Pradeep Recktenwald,ou=Management,dc=bitwarden,dc=com", + email: "RecktenP@4a5d6761844a487688a8f353a67dc3a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vanya Sherrill,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Vanya Sherrill,ou=Administrative,dc=bitwarden,dc=com", + email: "SherrilV@397524543d124dbf9d2177984f3399f5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Kittie Bangia,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Kittie Bangia,ou=Peons,dc=bitwarden,dc=com", + email: "BangiaK@aab792405d0e421e9faa1d2235dbde11.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Freek Xayaraj,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Freek Xayaraj,ou=Product Development,dc=bitwarden,dc=com", + email: "XayarajF@b2d36917909a45fd9de4c6c83faf6196.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emelina Dotsey,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Emelina Dotsey,ou=Payroll,dc=bitwarden,dc=com", + email: "DotseyE@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Jacob Scss,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Jacob Scss,ou=Management,dc=bitwarden,dc=com", + email: "ScssJ@eb51241312c644a68d6f84102cb2d201.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nicholas Palasek,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nicholas Palasek,ou=Product Development,dc=bitwarden,dc=com", + email: "PalasekN@f6469cbfb72544718327959dbf443a96.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Business Worsley,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Business Worsley,ou=Management,dc=bitwarden,dc=com", + email: "WorsleyB@400859d9959f4901a5309e45fdb61bf6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dita Billard,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Dita Billard,ou=Human Resources,dc=bitwarden,dc=com", + email: "BillardD@96a96fd515be425ca19359bc8dcf6a6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coleman Holman,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Coleman Holman,ou=Human Resources,dc=bitwarden,dc=com", + email: "HolmanC@9fb3bab6a5274e42930ef0c4e486700b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elberta Shnider,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Elberta Shnider,ou=Management,dc=bitwarden,dc=com", + email: "ShniderE@9aa7896234604e35853331a58b365781.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden,dc=com", + email: "LaddG@c3158f1fa2f94243a73d4266ce1cfc71.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden,dc=com", + email: "BuhrkuhJ@bf35e2dd921644e489469fd3b907aac9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mirabel Queries,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Mirabel Queries,ou=Administrative,dc=bitwarden,dc=com", + email: "QueriesM@d37e812441464f08ac2750e113db6273.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden,dc=com", + email: "StrayhoL@fc3a6a2ed2a041edaaee095273406b72.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden,dc=com", + email: "DolginoE@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arts Marttinen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Arts Marttinen,ou=Payroll,dc=bitwarden,dc=com", + email: "MarttinA@aa04f1225a3142f7b6d7d981c171a9da.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Velma Goldberg,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Velma Goldberg,ou=Product Development,dc=bitwarden,dc=com", + email: "GoldberV@f282bdd196b049c89323e32ec5a7899a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Anet Sanity,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Anet Sanity,ou=Peons,dc=bitwarden,dc=com", + email: "SanityA@8be534402b894a65896ab57da74025f9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Pars Events,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Pars Events,ou=Administrative,dc=bitwarden,dc=com", + email: "EventsP@e713d665881b44ac9ce046c8aa4c6aed.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Wilow Veloz,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Wilow Veloz,ou=Payroll,dc=bitwarden,dc=com", + email: "VelozW@a58a307053124302a6ca25cc3c4fe9ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Grayce Dunnion,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Grayce Dunnion,ou=Management,dc=bitwarden,dc=com", + email: "DunnionG@fc6babf36ff04b1ba708df129305676b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Starlin Schrader,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Starlin Schrader,ou=Janitorial,dc=bitwarden,dc=com", + email: "SchradeS@d0d4dffbb82e4dbdbf12aa7aeb40f542.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Desire Nagle,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Desire Nagle,ou=Janitorial,dc=bitwarden,dc=com", + email: "NagleD@fdf7c005242c47b4bd750584e7c3c19c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Shaylah Haertel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Shaylah Haertel,ou=Administrative,dc=bitwarden,dc=com", + email: "HaertelS@cb3d55c1f17a445fad106ff05cef5824.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tomi LaFargue,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tomi LaFargue,ou=Management,dc=bitwarden,dc=com", + email: "LaFarguT@47b3a42002e74101b1c82f87517bcbef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Willard Kammerer,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Willard Kammerer,ou=Peons,dc=bitwarden,dc=com", + email: "KammereW@1ee81678c18a401888dd91f025f34959.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tyronda Wippel,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tyronda Wippel,ou=Administrative,dc=bitwarden,dc=com", + email: "WippelT@4ec22cc100774410b5e1902a4221791b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carmina Fulmer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Carmina Fulmer,ou=Management,dc=bitwarden,dc=com", + email: "FulmerC@31bdf3f083274a9a823bbf5bbd24461a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden,dc=com", + email: "MulliniT@14182a5bfd714b33b79ce62ac2db69ad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden,dc=com", + email: "SumpterL@48f0936a82dc447d9d8007505168b4a9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Sukey Sato,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Sukey Sato,ou=Human Resources,dc=bitwarden,dc=com", + email: "SatoS@c13dcfb6eda14d3a8fe16fc4279da963.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden,dc=com", + email: "MalkiewC@10a46cb8875644479396c1c5e3228c3c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lawrence Perrella,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Lawrence Perrella,ou=Peons,dc=bitwarden,dc=com", + email: "PerrellL@95a30cb6b6df4f6cbb4f3a7dd5e82fb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Nathan Trumble,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Nathan Trumble,ou=Product Development,dc=bitwarden,dc=com", + email: "TrumbleN@dfa5577bb9624995ab3eb6b74bc12412.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden,dc=com", + email: "StrattoS@683112f18e2b4c49865ce3f726ce15d9.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Noslab Gribbons,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Noslab Gribbons,ou=Product Development,dc=bitwarden,dc=com", + email: "GribbonN@939ff1674a5f4554858a2fd6d59c6ec0.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden,dc=com", + email: "CzarnecA@33f3610924fd40f8baab137780c1a3cc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden,dc=com", + email: "PawlikoC@8415106c9bc644ca88df9b8987cb1aef.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Alayne Jurman,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Alayne Jurman,ou=Peons,dc=bitwarden,dc=com", + email: "JurmanA@6a21fb77585b45b89d50ed136958d009.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Ashlee Lamey,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Ashlee Lamey,ou=Peons,dc=bitwarden,dc=com", + email: "LameyA@2ea5cd05f7bb4e668e89ea0ce9ab618b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden,dc=com", + email: "LakshmiZ@2e06903f00cc4bf8844eeda994fe2f9b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Miquela Gilles,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Miquela Gilles,ou=Peons,dc=bitwarden,dc=com", + email: "GillesM@87d2a0e0ce5644aa904b7d1121de84a3.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Arlana Ghani,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Arlana Ghani,ou=Management,dc=bitwarden,dc=com", + email: "GhaniA@5464c7892e2c49b9ab8b77fcfa248401.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Avinash Rospars,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Avinash Rospars,ou=Product Development,dc=bitwarden,dc=com", + email: "RosparsA@d9e32d7c83eb4ccf8004a41c9874f6a2.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Raman Reporting,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Raman Reporting,ou=Management,dc=bitwarden,dc=com", + email: "ReportiR@58d046473fe24d0d8bf6f510239a1102.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden,dc=com", + email: "AbdullaA@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Vince Dallal,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Vince Dallal,ou=Janitorial,dc=bitwarden,dc=com", + email: "DallalV@75bd7d8bfac045f4b199b40359d5079a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Leanne Gorfine,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Leanne Gorfine,ou=Product Development,dc=bitwarden,dc=com", + email: "GorfineL@c4b901cf01964b3f995f83f754a51496.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden,dc=com", + email: "BourbonS@dce637b43f194588ba44f478eabb0b1d.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Corinna Bashyam,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Corinna Bashyam,ou=Payroll,dc=bitwarden,dc=com", + email: "BashyamC@537a7fb8e8084a50ad524dcf8366437e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden,dc=com", + email: "BraaksmC@971b6275e2eb43e286f57ac3cf73eb02.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Etta Medlin,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Etta Medlin,ou=Payroll,dc=bitwarden,dc=com", + email: "MedlinE@de77b93d37dd4a028afd3b2ff785ef86.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden,dc=com", + email: "HammondR@3d8456e2419f4f54a124d2319bee4b8e.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden,dc=com", + email: "SebehZ@1c7214ddcee648aeb2dd535a7efb20fc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Stew Chopowick,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Stew Chopowick,ou=Administrative,dc=bitwarden,dc=com", + email: "ChopowiS@7179efeeba4d4c0496c30132c2185e2b.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden,dc=com", + email: "RibaldoB@0bf16d212dca48d58b5ba2e7e2475978.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Josie Clysdale,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Josie Clysdale,ou=Administrative,dc=bitwarden,dc=com", + email: "ClysdalJ@2d39ed714c62438fae50357ee6eb38cf.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Moyna Rolph,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Moyna Rolph,ou=Payroll,dc=bitwarden,dc=com", + email: "RolphM@50d89f8e16e348cfb044b13e46694d6c.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Roze Wiebe,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Roze Wiebe,ou=Human Resources,dc=bitwarden,dc=com", + email: "WiebeR@c82bc1c119194cf1a43f9559e17d2471.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Khai Habelrih,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Khai Habelrih,ou=Administrative,dc=bitwarden,dc=com", + email: "HabelriK@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=How Zisu,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=How Zisu,ou=Janitorial,dc=bitwarden,dc=com", + email: "ZisuH@bdcc53d4f0d44402a52a4e37b6a55cb6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden,dc=com", + email: "WaddickM@3d584c1804c549129f374b5c39437b16.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Morena Zeggil,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Morena Zeggil,ou=Product Development,dc=bitwarden,dc=com", + email: "ZeggilM@9b4c46b33b054223bd92a713c0feadad.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden,dc=com", + email: "RickettM@f07caf5199104113b8565ebc43aef936.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden,dc=com", + email: "CastongT@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden,dc=com", + email: "IarocciA@c5e55ae911a448dbaf1704a805131e06.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden,dc=com", + externalId: "cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden,dc=com", + email: "BoeyenS@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden,dc=com", + email: "GaconniZ@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden,dc=com", + email: "SchanneD@77df1d4a30ab443892398806ba3c7576.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Mathew Jarvie,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Mathew Jarvie,ou=Peons,dc=bitwarden,dc=com", + email: "JarvieM@75fda0f549234930a497d29af4b3d736.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Joelle Eason,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Joelle Eason,ou=Product Development,dc=bitwarden,dc=com", + email: "EasonJ@1f78de795d09437e9e2f587d718715dc.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Angil Dungan,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Angil Dungan,ou=Management,dc=bitwarden,dc=com", + email: "DunganA@4e65ebf97c5c4a7e80cecb934226e7a6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Geraldine Landaveri,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Geraldine Landaveri,ou=Peons,dc=bitwarden,dc=com", + email: "LandaveG@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madeline Congdon,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Madeline Congdon,ou=Administrative,dc=bitwarden,dc=com", + email: "CongdonM@a89e7ae3165749939a17b64967946632.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Rod Bedford,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Rod Bedford,ou=Administrative,dc=bitwarden,dc=com", + email: "BedfordR@9e2b20abc536451c80331d81dc08fb80.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden,dc=com", + externalId: "cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden,dc=com", + email: "ShivchaE@8131a404a7e44763a5c3195d705b1dc8.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Eula Steip,ou=Janitorial,dc=bitwarden,dc=com", + externalId: "cn=Eula Steip,ou=Janitorial,dc=bitwarden,dc=com", + email: "SteipE@6188569c9fcd404582c5c4a9062e9bc6.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Lennart Murphin,ou=Human Resources,dc=bitwarden,dc=com", + externalId: "cn=Lennart Murphin,ou=Human Resources,dc=bitwarden,dc=com", + email: "MurphinL@dc4ca8de100a44c98afc7e8972ff5e00.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Emmye Reeves,ou=Peons,dc=bitwarden,dc=com", + externalId: "cn=Emmye Reeves,ou=Peons,dc=bitwarden,dc=com", + email: "ReevesE@fa3acd28f4de417999317e1321170d2a.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Madel Fiorile,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Madel Fiorile,ou=Product Development,dc=bitwarden,dc=com", + email: "FiorileM@1487aec275284e49a79c5c4099f33bdb.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Hiroki Edwards,ou=Product Development,dc=bitwarden,dc=com", + externalId: "cn=Hiroki Edwards,ou=Product Development,dc=bitwarden,dc=com", + email: "EdwardsH@40814008a82d4ec3b13f45cb20ad20a4.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Douglass Rivest,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Douglass Rivest,ou=Product Testing,dc=bitwarden,dc=com", + email: "RivestD@289444924c894df68dc76e9d8add4066.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Tammi Kramer,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Tammi Kramer,ou=Management,dc=bitwarden,dc=com", + email: "KramerT@096bd16e7b9047ef820ae279d36addd1.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden,dc=com", + externalId: "cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden,dc=com", + email: "MahoneyD@4583e86a2ba94a5da0ee973472b7f221.bitwarden.com", + }, + { + deleted: false, + disabled: false, + referenceId: "cn=Brunhilda Bezdel,ou=Management,dc=bitwarden,dc=com", + externalId: "cn=Brunhilda Bezdel,ou=Management,dc=bitwarden,dc=com", + email: "BezdelB@523cb0530fdd41dc8c1ab88cc74839c7.bitwarden.com", + }, +]; +export const users11k = data.map((v) => UserEntry.fromJSON({ ...v, email: v.email.toLowerCase() })); diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index a3b219b22..5df691946 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -3,6 +3,7 @@ import { APP_INITIALIZER, NgModule } from "@angular/core"; import { JslibServicesModule } from "@/jslib/angular/src/services/jslib-services.module"; import { ApiService as ApiServiceAbstraction } from "@/jslib/common/src/abstractions/api.service"; import { AppIdService as AppIdServiceAbstraction } from "@/jslib/common/src/abstractions/appId.service"; +import { BatchingService as BatchingServiceAbstraction } from "@/jslib/common/src/abstractions/batching.service"; import { BroadcasterService as BroadcasterServiceAbstraction } from "@/jslib/common/src/abstractions/broadcaster.service"; import { CryptoService as CryptoServiceAbstraction } from "@/jslib/common/src/abstractions/crypto.service"; import { CryptoFunctionService as CryptoFunctionServiceAbstraction } from "@/jslib/common/src/abstractions/cryptoFunction.service"; @@ -175,6 +176,7 @@ export function initFactory( I18nServiceAbstraction, EnvironmentServiceAbstraction, StateServiceAbstraction, + BatchingServiceAbstraction, ], }), safeProvider(AuthGuardService), diff --git a/src/bwdc.ts b/src/bwdc.ts index 84abf65bb..8fc56954b 100644 --- a/src/bwdc.ts +++ b/src/bwdc.ts @@ -7,6 +7,7 @@ import { LogLevelType } from "@/jslib/common/src/enums/logLevelType"; import { StateFactory } from "@/jslib/common/src/factories/stateFactory"; import { GlobalState } from "@/jslib/common/src/models/domain/globalState"; import { AppIdService } from "@/jslib/common/src/services/appId.service"; +import { BatchingService } from "@/jslib/common/src/services/batching.service"; import { ContainerService } from "@/jslib/common/src/services/container.service"; import { CryptoService } from "@/jslib/common/src/services/crypto.service"; import { EnvironmentService } from "@/jslib/common/src/services/environment.service"; @@ -51,6 +52,7 @@ export class Main { syncService: SyncService; stateService: StateService; stateMigrationService: StateMigrationService; + batchingService: BatchingService; constructor() { const applicationName = "Bitwarden Directory Connector"; @@ -154,6 +156,7 @@ export class Main { this.i18nService, this.environmentService, this.stateService, + this.batchingService, ); this.program = new Program(this); diff --git a/src/services/sync.service.spec.ts b/src/services/sync.service.spec.ts new file mode 100644 index 000000000..587985416 --- /dev/null +++ b/src/services/sync.service.spec.ts @@ -0,0 +1,174 @@ +import { mock, MockProxy } from "jest-mock-extended"; + +import { ApiService } from "@/jslib/common/src/abstractions/api.service"; +import { BatchingService } from "@/jslib/common/src/abstractions/batching.service"; +import { CryptoFunctionService } from "@/jslib/common/src/abstractions/cryptoFunction.service"; +import { EnvironmentService } from "@/jslib/common/src/abstractions/environment.service"; +import { LogService } from "@/jslib/common/src/abstractions/log.service"; +import { MessagingService } from "@/jslib/common/src/abstractions/messaging.service"; + +import { group11k } from "../../openldap/group-fixtures-11000"; +import { users11k } from "../../openldap/user-fixtures-11000"; +import { DirectoryType } from "../enums/directoryType"; +import { LdapConfiguration } from "../models/ldapConfiguration"; +import { SyncConfiguration } from "../models/syncConfiguration"; + +import { I18nService } from "./i18n.service"; +import { StateService } from "./state.service"; +import { SyncService } from "./sync.service"; + +describe("SyncService", () => { + let logService: MockProxy; + let cryptoFunctionService: MockProxy; + let apiService: MockProxy; + let messagingService: MockProxy; + let i18nService: MockProxy; + let environmentService: MockProxy; + let stateService: MockProxy; + let batchingService: MockProxy; + + let syncService: SyncService; + + beforeEach(async () => { + logService = mock(); + cryptoFunctionService = mock(); + apiService = mock(); + messagingService = mock(); + i18nService = mock(); + environmentService = mock(); + stateService = mock(); + batchingService = mock(); + + stateService.getDirectoryType.mockResolvedValue(DirectoryType.Ldap); + + syncService = new SyncService( + logService, + cryptoFunctionService, + apiService, + messagingService, + i18nService, + environmentService, + stateService, + batchingService, + ); + }); + + it("Sync posts single request successfully for unique hashes", async () => { + stateService.getDirectory + .calledWith(DirectoryType.Ldap) + .mockResolvedValue(getLdapConfiguration()); + + stateService.getSync.mockResolvedValue(getSyncConfiguration({ groups: true, users: true })); + stateService.getOrganizationId.mockResolvedValue("fakeId"); + cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(1)); + + const results = await syncService.sync(true, false); + + expect(results).toEqual([group11k, users11k]); + expect(apiService.postPublicImportDirectory).toHaveBeenCalledTimes(1); + }); + + it("Sync posts multiple request successfully for unique hashes", async () => { + stateService.getDirectory + .calledWith(DirectoryType.Ldap) + .mockResolvedValue(getLdapConfiguration()); + + stateService.getSync.mockResolvedValue(getLargeSyncConfiguration()); + stateService.getOrganizationId.mockResolvedValue("fakeId"); + cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(1)); + + const batchSize = 2000; + const totalUsers = users11k.length; + const mockRequests = []; + + for (let i = 0; i <= totalUsers; i += batchSize) { + mockRequests.push({ + members: [], + groups: [], + overwriteExisting: true, + largeImport: true, + }); + } + + batchingService.batchRequests.mockReturnValue(mockRequests); + + const result = await syncService.sync(true, false); + + // This test relies on having a config with 11k users created. The main thing we want to test here is that the + // requests are separated into multiple REST requests. + expect(apiService.postPublicImportDirectory).toHaveBeenCalledTimes( + Math.ceil(users11k.length / batchSize), + ); + expect(result).toEqual([group11k, users11k]); + }); + + it("does not post for the same hash", async () => { + stateService.getDirectory + .calledWith(DirectoryType.Ldap) + .mockResolvedValue(getLdapConfiguration()); + + stateService.getSync.mockResolvedValue(getSyncConfiguration({ groups: true, users: true })); + stateService.getOrganizationId.mockResolvedValue("fakeId"); + cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(0)); + + await syncService.sync(true, false); + + expect(apiService.postPublicImportDirectory).toHaveBeenCalledTimes(0); + }); +}); + +/** + * @returns a basic ldap configuration without TLS/SSL enabled. Can be overridden by passing in a partial configuration. + */ +const getLdapConfiguration = (config?: Partial): LdapConfiguration => ({ + ssl: false, + startTls: false, + tlsCaPath: null, + sslAllowUnauthorized: false, + sslCertPath: null, + sslKeyPath: null, + sslCaPath: null, + hostname: "localhost", + port: 1389, + domain: null, + rootPath: "dc=bitwarden,dc=com", + currentUser: false, + username: "cn=admin,dc=bitwarden,dc=com", + password: "admin", + ad: false, + pagedSearch: false, + ...(config ?? {}), +}); + +/** + * @returns a basic sync configuration. Can be overridden by passing in a partial configuration. + */ +const getSyncConfiguration = (config?: Partial): SyncConfiguration => ({ + users: false, + groups: false, + interval: 5, + userFilter: null, + groupFilter: null, + removeDisabled: false, + overwriteExisting: false, + largeImport: false, + // Ldap properties + groupObjectClass: "posixGroup", + userObjectClass: "person", + groupPath: null, + userPath: null, + groupNameAttribute: "cn", + userEmailAttribute: "mail", + memberAttribute: "memberUid", + useEmailPrefixSuffix: false, + emailPrefixAttribute: "sAMAccountName", + emailSuffix: null, + creationDateAttribute: "whenCreated", + revisionDateAttribute: "whenChanged", + ...(config ?? {}), +}); + +const getLargeSyncConfiguration = () => ({ + ...getSyncConfiguration({ groups: true, users: true }), + largeImport: true, +}); diff --git a/src/services/sync.service.ts b/src/services/sync.service.ts index db966d0ae..4a91cb245 100644 --- a/src/services/sync.service.ts +++ b/src/services/sync.service.ts @@ -1,4 +1,5 @@ import { ApiService } from "@/jslib/common/src/abstractions/api.service"; +import { BatchingService } from "@/jslib/common/src/abstractions/batching.service"; import { CryptoFunctionService } from "@/jslib/common/src/abstractions/cryptoFunction.service"; import { EnvironmentService } from "@/jslib/common/src/abstractions/environment.service"; import { I18nService } from "@/jslib/common/src/abstractions/i18n.service"; @@ -31,6 +32,7 @@ export class SyncService { private i18nService: I18nService, private environmentService: EnvironmentService, private stateService: StateService, + private batchingService: BatchingService, ) {} async sync(force: boolean, test: boolean): Promise<[GroupEntry[], UserEntry[]]> { @@ -78,41 +80,22 @@ export class SyncService { return [groups, users]; } - const req = this.buildRequest( + const reqs = this.buildRequest( groups, users, syncConfig.removeDisabled, syncConfig.overwriteExisting, syncConfig.largeImport, ); - const reqJson = JSON.stringify(req); - const orgId = await this.stateService.getOrganizationId(); - if (orgId == null) { - throw new Error("Organization not set."); - } + const reqJson = JSON.stringify(reqs); - // TODO: Remove hashLegacy once we're sure clients have had time to sync new hashes - let hashLegacy: string = null; - const hashBuffLegacy = await this.cryptoFunctionService.hash( - this.environmentService.getApiUrl() + reqJson, - "sha256", - ); - if (hashBuffLegacy != null) { - hashLegacy = Utils.fromBufferToB64(hashBuffLegacy); - } - let hash: string = null; - const hashBuff = await this.cryptoFunctionService.hash( - this.environmentService.getApiUrl() + orgId + reqJson, - "sha256", - ); - if (hashBuff != null) { - hash = Utils.fromBufferToB64(hashBuff); - } - const lastHash = await this.stateService.getLastSyncHash(); + const hash: string = await this.generateNewHash(reqJson); - if (lastHash == null || (hash !== lastHash && hashLegacy !== lastHash)) { - await this.apiService.postPublicImportDirectory(req); + if (hash) { + for (const req of reqs) { + await this.apiService.postPublicImportDirectory(req); + } await this.stateService.setLastSyncHash(hash); } else { groups = null; @@ -133,6 +116,36 @@ export class SyncService { } } + async generateNewHash(reqJson: string): Promise { + const orgId = await this.stateService.getOrganizationId(); + if (orgId == null) { + throw new Error("Organization not set."); + } + + // TODO: Remove hashLegacy once we're sure clients have had time to sync new hashes + let hashLegacy: string = null; + const hashBuffLegacy = await this.cryptoFunctionService.hash( + this.environmentService.getApiUrl() + reqJson, + "sha256", + ); + if (hashBuffLegacy != null) { + hashLegacy = Utils.fromBufferToB64(hashBuffLegacy); + } + let hash: string = null; + const hashBuff = await this.cryptoFunctionService.hash( + this.environmentService.getApiUrl() + orgId + reqJson, + "sha256", + ); + if (hashBuff != null) { + hash = Utils.fromBufferToB64(hashBuff); + } + const lastHash = await this.stateService.getLastSyncHash(); + + const hashIsNew = lastHash == null || (hash !== lastHash && hashLegacy !== lastHash); + + return hashIsNew ? hash : ""; + } + private removeDuplicateUsers(users: UserEntry[]) { if (users == null) { return null; @@ -198,7 +211,7 @@ export class SyncService { return allUsers; } - private getDirectoryService(): IDirectoryService { + getDirectoryService(): IDirectoryService { switch (this.dirType) { case DirectoryType.GSuite: return new GSuiteDirectoryService(this.logService, this.i18nService, this.stateService); @@ -221,25 +234,31 @@ export class SyncService { removeDisabled: boolean, overwriteExisting: boolean, largeImport = false, - ) { - return new OrganizationImportRequest({ - groups: (groups ?? []).map((g) => { - return { - name: g.name, - externalId: g.externalId, - memberExternalIds: Array.from(g.userMemberExternalIds), - }; - }), - users: (users ?? []).map((u) => { - return { - email: u.email, - externalId: u.externalId, - deleted: u.deleted || (removeDisabled && u.disabled), - }; - }), - overwriteExisting: overwriteExisting, - largeImport: largeImport, - }); + ): OrganizationImportRequest[] { + if (largeImport) { + return this.batchingService.batchRequests(groups, users, overwriteExisting, removeDisabled); + } else { + return [ + new OrganizationImportRequest({ + groups: (groups ?? []).map((g) => { + return { + name: g.name, + externalId: g.externalId, + memberExternalIds: Array.from(g.userMemberExternalIds), + }; + }), + users: (users ?? []).map((u) => { + return { + email: u.email, + externalId: u.externalId, + deleted: u.deleted || (removeDisabled && u.disabled), + }; + }), + overwriteExisting: overwriteExisting, + largeImport: largeImport, + }), + ]; + } } private async saveSyncTimes(syncConfig: SyncConfiguration, time: Date) { From 80b863dc1f26cf53b0b0cbe826dd573a1b91bf9a Mon Sep 17 00:00:00 2001 From: Brandon Date: Mon, 6 Jan 2025 14:52:54 -0500 Subject: [PATCH 02/11] next iteration --- .../src/services/jslib-services.module.ts | 21 ++++- .../abstractions/directory-factory.service.ts | 15 +++ ....service.ts => request-builder.service.ts} | 4 +- .../services/batch-requests.service.spec.ts | 66 +++++++++++++ ...g.service.ts => batch-requests.service.ts} | 9 +- .../src/services/batching.service.spec.ts | 67 -------------- .../src/services/single-request.service.ts | 36 ++++++++ src/app/services/services.module.ts | 8 +- src/bwdc.ts | 12 ++- src/models/hashResult.ts | 4 + src/services/directory-factory.service.ts | 36 ++++++++ src/services/sync.service.spec.ts | 38 ++++++-- src/services/sync.service.ts | 92 ++++++++----------- 13 files changed, 262 insertions(+), 146 deletions(-) create mode 100644 jslib/common/src/abstractions/directory-factory.service.ts rename jslib/common/src/abstractions/{batching.service.ts => request-builder.service.ts} (83%) create mode 100644 jslib/common/src/services/batch-requests.service.spec.ts rename jslib/common/src/services/{batching.service.ts => batch-requests.service.ts} (87%) delete mode 100644 jslib/common/src/services/batching.service.spec.ts create mode 100644 jslib/common/src/services/single-request.service.ts create mode 100644 src/models/hashResult.ts create mode 100644 src/services/directory-factory.service.ts diff --git a/jslib/angular/src/services/jslib-services.module.ts b/jslib/angular/src/services/jslib-services.module.ts index b2c65dedf..82094fccf 100644 --- a/jslib/angular/src/services/jslib-services.module.ts +++ b/jslib/angular/src/services/jslib-services.module.ts @@ -2,10 +2,10 @@ import { LOCALE_ID, NgModule } from "@angular/core"; import { ApiService as ApiServiceAbstraction } from "@/jslib/common/src/abstractions/api.service"; import { AppIdService as AppIdServiceAbstraction } from "@/jslib/common/src/abstractions/appId.service"; -import { BatchingService as BatchingServiceAbstraction } from "@/jslib/common/src/abstractions/batching.service"; import { BroadcasterService as BroadcasterServiceAbstraction } from "@/jslib/common/src/abstractions/broadcaster.service"; import { CryptoService as CryptoServiceAbstraction } from "@/jslib/common/src/abstractions/crypto.service"; import { CryptoFunctionService as CryptoFunctionServiceAbstraction } from "@/jslib/common/src/abstractions/cryptoFunction.service"; +import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; import { EnvironmentService as EnvironmentServiceAbstraction } from "@/jslib/common/src/abstractions/environment.service"; import { I18nService as I18nServiceAbstraction } from "@/jslib/common/src/abstractions/i18n.service"; import { LogService } from "@/jslib/common/src/abstractions/log.service"; @@ -20,14 +20,17 @@ import { Account } from "@/jslib/common/src/models/domain/account"; import { GlobalState } from "@/jslib/common/src/models/domain/globalState"; import { ApiService } from "@/jslib/common/src/services/api.service"; import { AppIdService } from "@/jslib/common/src/services/appId.service"; -import { BatchingService } from "@/jslib/common/src/services/batching.service"; +import { BatchRequestBuilder } from "@/jslib/common/src/services/batch-requests.service"; import { ConsoleLogService } from "@/jslib/common/src/services/consoleLog.service"; import { CryptoService } from "@/jslib/common/src/services/crypto.service"; import { EnvironmentService } from "@/jslib/common/src/services/environment.service"; +import { SingleRequestBuilder } from "@/jslib/common/src/services/single-request.service"; import { StateService } from "@/jslib/common/src/services/state.service"; import { StateMigrationService } from "@/jslib/common/src/services/stateMigration.service"; import { TokenService } from "@/jslib/common/src/services/token.service"; +import { DirectoryFactoryService } from "@/src/services/directory-factory.service"; + import { SafeInjectionToken, SECURE_STORAGE, @@ -141,8 +144,18 @@ import { ValidationService } from "./validation.service"; deps: [StorageServiceAbstraction, SECURE_STORAGE], }), safeProvider({ - provide: BatchingServiceAbstraction, - useClass: BatchingService, + provide: BatchRequestBuilder, + useClass: BatchRequestBuilder, + useAngularDecorators: true, + }), + safeProvider({ + provide: SingleRequestBuilder, + useClass: SingleRequestBuilder, + useAngularDecorators: true, + }), + safeProvider({ + provide: DirectoryFactoryAbstraction, + useClass: DirectoryFactoryService, useAngularDecorators: true, }), ] satisfies SafeProvider[], diff --git a/jslib/common/src/abstractions/directory-factory.service.ts b/jslib/common/src/abstractions/directory-factory.service.ts new file mode 100644 index 000000000..0bc0b4e30 --- /dev/null +++ b/jslib/common/src/abstractions/directory-factory.service.ts @@ -0,0 +1,15 @@ +import { DirectoryType } from "@/src/enums/directoryType"; +import { IDirectoryService } from "@/src/services/directory.service"; + +import { I18nService } from "./i18n.service"; +import { LogService } from "./log.service"; +import { StateService } from "./state.service"; + +export abstract class DirectoryFactoryAbstraction { + abstract createService( + type: DirectoryType, + logService: LogService, + i18nService: I18nService, + stateService: StateService, + ): IDirectoryService; +} diff --git a/jslib/common/src/abstractions/batching.service.ts b/jslib/common/src/abstractions/request-builder.service.ts similarity index 83% rename from jslib/common/src/abstractions/batching.service.ts rename to jslib/common/src/abstractions/request-builder.service.ts index 8bb5894f5..643e2fd8e 100644 --- a/jslib/common/src/abstractions/batching.service.ts +++ b/jslib/common/src/abstractions/request-builder.service.ts @@ -3,8 +3,8 @@ import { UserEntry } from "@/src/models/userEntry"; import { OrganizationImportRequest } from "../models/request/organizationImportRequest"; -export abstract class BatchingService { - batchRequests: ( +export abstract class RequestBuilderAbstratction { + buildRequest: ( groups: GroupEntry[], users: UserEntry[], removeDisabled: boolean, diff --git a/jslib/common/src/services/batch-requests.service.spec.ts b/jslib/common/src/services/batch-requests.service.spec.ts new file mode 100644 index 000000000..722bd02c4 --- /dev/null +++ b/jslib/common/src/services/batch-requests.service.spec.ts @@ -0,0 +1,66 @@ +import { GroupEntry } from "@/src/models/groupEntry"; +import { UserEntry } from "@/src/models/userEntry"; + +import { BatchRequestBuilder } from "./batch-requests.service"; +import { SingleRequestBuilder } from "./single-request.service"; + +describe("BatchingService", () => { + let batchRequestBuilder: BatchRequestBuilder; + let singleRequestBuilder: SingleRequestBuilder; + let userSimulator: (userCount: number) => UserEntry[]; + let groupSimulator: (userCount: number) => GroupEntry[]; + + beforeEach(async () => { + const batchSize = 2000; + + batchRequestBuilder = new BatchRequestBuilder(batchSize); + singleRequestBuilder = new SingleRequestBuilder(); + + userSimulator = (userCount: number) => { + const simulatedArray: UserEntry[] = []; + for (let i = 0; i < userCount; i += batchSize) { + for (let j = 0; j <= batchSize; j++) { + simulatedArray.push(new UserEntry()); + } + } + return simulatedArray; + }; + + groupSimulator = (groupCount: number) => { + const simulatedArray: GroupEntry[] = []; + for (let i = 0; i < groupCount; i += batchSize) { + for (let j = 0; j <= batchSize; j++) { + simulatedArray.push(new GroupEntry()); + } + } + return simulatedArray; + }; + }); + + it("Batches requests for > 2000 users", () => { + const mockGroups = groupSimulator(11000); + const mockUsers = userSimulator(11000); + + const requests = batchRequestBuilder.buildRequest(mockGroups, mockUsers, true, true); + + expect(requests.length).toEqual(14); + }); + + it("SingleRequestBuilder returns single request for 200 users", () => { + const mockGroups = groupSimulator(200); + const mockUsers = userSimulator(200); + + const requests = singleRequestBuilder.buildRequest(mockGroups, mockUsers, true, true); + + expect(requests.length).toEqual(1); + }); + + it("BatchRequestBuilder retuns an empty array when there are no users or groups", () => { + const mockGroups = groupSimulator(0); + const mockUsers = userSimulator(0); + + const requests = batchRequestBuilder.buildRequest(mockGroups, mockUsers, true, true); + + expect(requests).toEqual([]); + }); +}); diff --git a/jslib/common/src/services/batching.service.ts b/jslib/common/src/services/batch-requests.service.ts similarity index 87% rename from jslib/common/src/services/batching.service.ts rename to jslib/common/src/services/batch-requests.service.ts index 285938e7e..832592c0c 100644 --- a/jslib/common/src/services/batching.service.ts +++ b/jslib/common/src/services/batch-requests.service.ts @@ -1,13 +1,14 @@ -import { BatchingService as BatchingServiceAbstraction } from "@/jslib/common/src/abstractions/batching.service"; import { OrganizationImportRequest } from "@/jslib/common/src/models/request/organizationImportRequest"; import { GroupEntry } from "@/src/models/groupEntry"; import { UserEntry } from "@/src/models/userEntry"; -export class BatchingService implements BatchingServiceAbstraction { - batchSize = 2000; +import { RequestBuilderAbstratction } from "../abstractions/request-builder.service"; - batchRequests( +export class BatchRequestBuilder implements RequestBuilderAbstratction { + constructor(private batchSize: number = 2000) {} + + buildRequest( groups: GroupEntry[], users: UserEntry[], removeDisabled: boolean, diff --git a/jslib/common/src/services/batching.service.spec.ts b/jslib/common/src/services/batching.service.spec.ts deleted file mode 100644 index 6846062a0..000000000 --- a/jslib/common/src/services/batching.service.spec.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { GroupEntry } from "@/src/models/groupEntry"; -import { UserEntry } from "@/src/models/userEntry"; - -import { BatchingService } from "./batching.service"; - -describe("BatchingService", () => { - let batchingService: BatchingService; - let userSimulator: (userCount: number) => UserEntry[]; - let groupSimulator: (userCount: number) => GroupEntry[]; - - beforeEach(async () => { - batchingService = new BatchingService(); - - userSimulator = (userCount: number) => { - const simulatedArray: UserEntry[] = []; - for (let i = 0; i < userCount; i += batchingService.batchSize) { - for (let j = 0; j <= batchingService.batchSize; j++) { - simulatedArray.push(new UserEntry()); - } - } - return simulatedArray; - }; - - groupSimulator = (groupCount: number) => { - const simulatedArray: GroupEntry[] = []; - for (let i = 0; i < groupCount; i += batchingService.batchSize) { - for (let j = 0; j <= batchingService.batchSize; j++) { - simulatedArray.push(new GroupEntry()); - } - } - return simulatedArray; - }; - }); - - it("Batches requests for > 2000 users", () => { - const mockGroups = groupSimulator(11000); - const mockUsers = userSimulator(11000); - - const requests = batchingService.batchRequests(mockGroups, mockUsers, true, true); - - expect(requests.length).toEqual( - Math.ceil(mockGroups.length / batchingService.batchSize) + - Math.ceil(mockUsers.length / batchingService.batchSize), - ); - }); - - it("Does not batch requests for < 2000 users", () => { - const mockGroups = groupSimulator(200); - const mockUsers = userSimulator(200); - - const requests = batchingService.batchRequests(mockGroups, mockUsers, true, true); - - expect(requests.length).toEqual( - Math.ceil(mockGroups.length / batchingService.batchSize) + - Math.ceil(mockUsers.length / batchingService.batchSize), - ); - }); - - it("Retuns an empty array when there are no users or groups", () => { - const mockGroups = groupSimulator(0); - const mockUsers = userSimulator(0); - - const requests = batchingService.batchRequests(mockGroups, mockUsers, true, true); - - expect(requests).toEqual([]); - }); -}); diff --git a/jslib/common/src/services/single-request.service.ts b/jslib/common/src/services/single-request.service.ts new file mode 100644 index 000000000..c5a2816bb --- /dev/null +++ b/jslib/common/src/services/single-request.service.ts @@ -0,0 +1,36 @@ +import { OrganizationImportRequest } from "@/jslib/common/src/models/request/organizationImportRequest"; + +import { GroupEntry } from "@/src/models/groupEntry"; +import { UserEntry } from "@/src/models/userEntry"; + +import { RequestBuilderAbstratction } from "../abstractions/request-builder.service"; + +export class SingleRequestBuilder implements RequestBuilderAbstratction { + buildRequest( + groups: GroupEntry[], + users: UserEntry[], + removeDisabled: boolean, + overwriteExisting: boolean, + ): OrganizationImportRequest[] { + return [ + new OrganizationImportRequest({ + groups: (groups ?? []).map((g) => { + return { + name: g.name, + externalId: g.externalId, + memberExternalIds: Array.from(g.userMemberExternalIds), + }; + }), + users: (users ?? []).map((u) => { + return { + email: u.email, + externalId: u.externalId, + deleted: u.deleted || (removeDisabled && u.disabled), + }; + }), + overwriteExisting: overwriteExisting, + largeImport: false, + }), + ]; + } +} diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index 5df691946..900b28b00 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -3,10 +3,10 @@ import { APP_INITIALIZER, NgModule } from "@angular/core"; import { JslibServicesModule } from "@/jslib/angular/src/services/jslib-services.module"; import { ApiService as ApiServiceAbstraction } from "@/jslib/common/src/abstractions/api.service"; import { AppIdService as AppIdServiceAbstraction } from "@/jslib/common/src/abstractions/appId.service"; -import { BatchingService as BatchingServiceAbstraction } from "@/jslib/common/src/abstractions/batching.service"; import { BroadcasterService as BroadcasterServiceAbstraction } from "@/jslib/common/src/abstractions/broadcaster.service"; import { CryptoService as CryptoServiceAbstraction } from "@/jslib/common/src/abstractions/crypto.service"; import { CryptoFunctionService as CryptoFunctionServiceAbstraction } from "@/jslib/common/src/abstractions/cryptoFunction.service"; +import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; import { EnvironmentService as EnvironmentServiceAbstraction } from "@/jslib/common/src/abstractions/environment.service"; import { I18nService as I18nServiceAbstraction } from "@/jslib/common/src/abstractions/i18n.service"; import { LogService as LogServiceAbstraction } from "@/jslib/common/src/abstractions/log.service"; @@ -17,7 +17,9 @@ import { StorageService as StorageServiceAbstraction } from "@/jslib/common/src/ import { TokenService as TokenServiceAbstraction } from "@/jslib/common/src/abstractions/token.service"; import { StateFactory } from "@/jslib/common/src/factories/stateFactory"; import { GlobalState } from "@/jslib/common/src/models/domain/globalState"; +import { BatchRequestBuilder as BatchRequestAbstraction } from "@/jslib/common/src/services/batch-requests.service"; import { ContainerService } from "@/jslib/common/src/services/container.service"; +import { SingleRequestBuilder as SingleRequestAbstraction } from "@/jslib/common/src/services/single-request.service"; import { ElectronLogService } from "@/jslib/electron/src/services/electronLog.service"; import { ElectronPlatformUtilsService } from "@/jslib/electron/src/services/electronPlatformUtils.service"; import { ElectronRendererMessagingService } from "@/jslib/electron/src/services/electronRendererMessaging.service"; @@ -176,7 +178,9 @@ export function initFactory( I18nServiceAbstraction, EnvironmentServiceAbstraction, StateServiceAbstraction, - BatchingServiceAbstraction, + BatchRequestAbstraction, + SingleRequestAbstraction, + DirectoryFactoryAbstraction, ], }), safeProvider(AuthGuardService), diff --git a/src/bwdc.ts b/src/bwdc.ts index 8fc56954b..c8f3486af 100644 --- a/src/bwdc.ts +++ b/src/bwdc.ts @@ -7,11 +7,12 @@ import { LogLevelType } from "@/jslib/common/src/enums/logLevelType"; import { StateFactory } from "@/jslib/common/src/factories/stateFactory"; import { GlobalState } from "@/jslib/common/src/models/domain/globalState"; import { AppIdService } from "@/jslib/common/src/services/appId.service"; -import { BatchingService } from "@/jslib/common/src/services/batching.service"; +import { BatchRequestBuilder } from "@/jslib/common/src/services/batch-requests.service"; import { ContainerService } from "@/jslib/common/src/services/container.service"; import { CryptoService } from "@/jslib/common/src/services/crypto.service"; import { EnvironmentService } from "@/jslib/common/src/services/environment.service"; import { NoopMessagingService } from "@/jslib/common/src/services/noopMessaging.service"; +import { SingleRequestBuilder } from "@/jslib/common/src/services/single-request.service"; import { TokenService } from "@/jslib/common/src/services/token.service"; import { CliPlatformUtilsService } from "@/jslib/node/src/cli/services/cliPlatformUtils.service"; import { ConsoleLogService } from "@/jslib/node/src/cli/services/consoleLog.service"; @@ -21,6 +22,7 @@ import { NodeCryptoFunctionService } from "@/jslib/node/src/services/nodeCryptoF import { Account } from "./models/account"; import { Program } from "./program"; import { AuthService } from "./services/auth.service"; +import { DirectoryFactoryService } from "./services/directory-factory.service"; import { I18nService } from "./services/i18n.service"; import { KeytarSecureStorageService } from "./services/keytarSecureStorage.service"; import { LowdbStorageService } from "./services/lowdbStorage.service"; @@ -52,7 +54,9 @@ export class Main { syncService: SyncService; stateService: StateService; stateMigrationService: StateMigrationService; - batchingService: BatchingService; + directoryFactoryService: DirectoryFactoryService; + batchRequestBuilder: BatchRequestBuilder; + singleRequestBuilder: SingleRequestBuilder; constructor() { const applicationName = "Bitwarden Directory Connector"; @@ -156,7 +160,9 @@ export class Main { this.i18nService, this.environmentService, this.stateService, - this.batchingService, + this.batchRequestBuilder, + this.singleRequestBuilder, + this.directoryFactoryService, ); this.program = new Program(this); diff --git a/src/models/hashResult.ts b/src/models/hashResult.ts new file mode 100644 index 000000000..ab9220949 --- /dev/null +++ b/src/models/hashResult.ts @@ -0,0 +1,4 @@ +export class HashResult { + hash: string; + hashLegacy: string; +} diff --git a/src/services/directory-factory.service.ts b/src/services/directory-factory.service.ts new file mode 100644 index 000000000..b30197833 --- /dev/null +++ b/src/services/directory-factory.service.ts @@ -0,0 +1,36 @@ +import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; +import { I18nService } from "@/jslib/common/src/abstractions/i18n.service"; +import { LogService } from "@/jslib/common/src/abstractions/log.service"; + +import { StateService } from "../abstractions/state.service"; +import { DirectoryType } from "../enums/directoryType"; + +import { AzureDirectoryService } from "./azure-directory.service"; +import { GSuiteDirectoryService } from "./gsuite-directory.service"; +import { LdapDirectoryService } from "./ldap-directory.service"; +import { OktaDirectoryService } from "./okta-directory.service"; +import { OneLoginDirectoryService } from "./onelogin-directory.service"; + +export class DirectoryFactoryService implements DirectoryFactoryAbstraction { + createService( + directoryType: DirectoryType, + logService: LogService, + i18nService: I18nService, + stateService: StateService, + ) { + switch (directoryType) { + case DirectoryType.GSuite: + return new GSuiteDirectoryService(logService, i18nService, stateService); + case DirectoryType.AzureActiveDirectory: + return new AzureDirectoryService(logService, i18nService, stateService); + case DirectoryType.Ldap: + return new LdapDirectoryService(logService, i18nService, stateService); + case DirectoryType.Okta: + return new OktaDirectoryService(logService, i18nService, stateService); + case DirectoryType.OneLogin: + return new OneLoginDirectoryService(logService, i18nService, stateService); + default: + return null; + } + } +} diff --git a/src/services/sync.service.spec.ts b/src/services/sync.service.spec.ts index 587985416..4a3d4f99a 100644 --- a/src/services/sync.service.spec.ts +++ b/src/services/sync.service.spec.ts @@ -1,11 +1,14 @@ import { mock, MockProxy } from "jest-mock-extended"; import { ApiService } from "@/jslib/common/src/abstractions/api.service"; -import { BatchingService } from "@/jslib/common/src/abstractions/batching.service"; import { CryptoFunctionService } from "@/jslib/common/src/abstractions/cryptoFunction.service"; +import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; import { EnvironmentService } from "@/jslib/common/src/abstractions/environment.service"; import { LogService } from "@/jslib/common/src/abstractions/log.service"; import { MessagingService } from "@/jslib/common/src/abstractions/messaging.service"; +import { OrganizationImportRequest } from "@/jslib/common/src/models/request/organizationImportRequest"; +import { BatchRequestBuilder } from "@/jslib/common/src/services/batch-requests.service"; +import { SingleRequestBuilder } from "@/jslib/common/src/services/single-request.service"; import { group11k } from "../../openldap/group-fixtures-11000"; import { users11k } from "../../openldap/user-fixtures-11000"; @@ -14,6 +17,7 @@ import { LdapConfiguration } from "../models/ldapConfiguration"; import { SyncConfiguration } from "../models/syncConfiguration"; import { I18nService } from "./i18n.service"; +import { LdapDirectoryService } from "./ldap-directory.service"; import { StateService } from "./state.service"; import { SyncService } from "./sync.service"; @@ -25,7 +29,9 @@ describe("SyncService", () => { let i18nService: MockProxy; let environmentService: MockProxy; let stateService: MockProxy; - let batchingService: MockProxy; + let directoryFactory: MockProxy; + let batchRequestBuilder: MockProxy; + let singleRequestBuilder: MockProxy; let syncService: SyncService; @@ -37,9 +43,15 @@ describe("SyncService", () => { i18nService = mock(); environmentService = mock(); stateService = mock(); - batchingService = mock(); + directoryFactory = mock(); + batchRequestBuilder = mock(); + singleRequestBuilder = mock(); stateService.getDirectoryType.mockResolvedValue(DirectoryType.Ldap); + stateService.getOrganizationId.mockResolvedValue("fakeId"); + directoryFactory.createService.mockReturnValue( + new LdapDirectoryService(logService, i18nService, stateService), + ); syncService = new SyncService( logService, @@ -49,7 +61,9 @@ describe("SyncService", () => { i18nService, environmentService, stateService, - batchingService, + batchRequestBuilder, + singleRequestBuilder, + directoryFactory, ); }); @@ -59,9 +73,19 @@ describe("SyncService", () => { .mockResolvedValue(getLdapConfiguration()); stateService.getSync.mockResolvedValue(getSyncConfiguration({ groups: true, users: true })); - stateService.getOrganizationId.mockResolvedValue("fakeId"); cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(1)); + const mockRequest: OrganizationImportRequest[] = [ + { + members: [], + groups: [], + overwriteExisting: true, + largeImport: true, + }, + ]; + + singleRequestBuilder.buildRequest.mockReturnValue(mockRequest); + const results = await syncService.sync(true, false); expect(results).toEqual([group11k, users11k]); @@ -74,7 +98,6 @@ describe("SyncService", () => { .mockResolvedValue(getLdapConfiguration()); stateService.getSync.mockResolvedValue(getLargeSyncConfiguration()); - stateService.getOrganizationId.mockResolvedValue("fakeId"); cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(1)); const batchSize = 2000; @@ -90,7 +113,7 @@ describe("SyncService", () => { }); } - batchingService.batchRequests.mockReturnValue(mockRequests); + batchRequestBuilder.buildRequest.mockReturnValue(mockRequests); const result = await syncService.sync(true, false); @@ -108,7 +131,6 @@ describe("SyncService", () => { .mockResolvedValue(getLdapConfiguration()); stateService.getSync.mockResolvedValue(getSyncConfiguration({ groups: true, users: true })); - stateService.getOrganizationId.mockResolvedValue("fakeId"); cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(0)); await syncService.sync(true, false); diff --git a/src/services/sync.service.ts b/src/services/sync.service.ts index 4a91cb245..f6b65e831 100644 --- a/src/services/sync.service.ts +++ b/src/services/sync.service.ts @@ -1,26 +1,22 @@ import { ApiService } from "@/jslib/common/src/abstractions/api.service"; -import { BatchingService } from "@/jslib/common/src/abstractions/batching.service"; import { CryptoFunctionService } from "@/jslib/common/src/abstractions/cryptoFunction.service"; +import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; import { EnvironmentService } from "@/jslib/common/src/abstractions/environment.service"; import { I18nService } from "@/jslib/common/src/abstractions/i18n.service"; import { LogService } from "@/jslib/common/src/abstractions/log.service"; import { MessagingService } from "@/jslib/common/src/abstractions/messaging.service"; import { Utils } from "@/jslib/common/src/misc/utils"; import { OrganizationImportRequest } from "@/jslib/common/src/models/request/organizationImportRequest"; +import { BatchRequestBuilder } from "@/jslib/common/src/services/batch-requests.service"; +import { SingleRequestBuilder } from "@/jslib/common/src/services/single-request.service"; import { StateService } from "../abstractions/state.service"; import { DirectoryType } from "../enums/directoryType"; import { GroupEntry } from "../models/groupEntry"; +import { HashResult } from "../models/hashResult"; import { SyncConfiguration } from "../models/syncConfiguration"; import { UserEntry } from "../models/userEntry"; -import { AzureDirectoryService } from "./azure-directory.service"; -import { IDirectoryService } from "./directory.service"; -import { GSuiteDirectoryService } from "./gsuite-directory.service"; -import { LdapDirectoryService } from "./ldap-directory.service"; -import { OktaDirectoryService } from "./okta-directory.service"; -import { OneLoginDirectoryService } from "./onelogin-directory.service"; - export class SyncService { private dirType: DirectoryType; @@ -32,7 +28,9 @@ export class SyncService { private i18nService: I18nService, private environmentService: EnvironmentService, private stateService: StateService, - private batchingService: BatchingService, + private batchRequestBuilder: BatchRequestBuilder, + private singleRequestBuilder: SingleRequestBuilder, + private directoryFactory: DirectoryFactoryAbstraction, ) {} async sync(force: boolean, test: boolean): Promise<[GroupEntry[], UserEntry[]]> { @@ -41,7 +39,12 @@ export class SyncService { throw new Error("No directory configured."); } - const directoryService = this.getDirectoryService(); + const directoryService = this.directoryFactory.createService( + this.dirType, + this.logService, + this.i18nService, + this.stateService, + ); if (directoryService == null) { throw new Error("Cannot load directory service."); } @@ -90,13 +93,13 @@ export class SyncService { const reqJson = JSON.stringify(reqs); - const hash: string = await this.generateNewHash(reqJson); + const result: HashResult = await this.generateHash(reqJson); - if (hash) { + if (result.hash && (await this.compareToLastHash(result))) { for (const req of reqs) { await this.apiService.postPublicImportDirectory(req); } - await this.stateService.setLastSyncHash(hash); + await this.stateService.setLastSyncHash(result.hash); } else { groups = null; users = null; @@ -116,7 +119,7 @@ export class SyncService { } } - async generateNewHash(reqJson: string): Promise { + async generateHash(reqJson: string): Promise { const orgId = await this.stateService.getOrganizationId(); if (orgId == null) { throw new Error("Organization not set."); @@ -139,11 +142,14 @@ export class SyncService { if (hashBuff != null) { hash = Utils.fromBufferToB64(hashBuff); } - const lastHash = await this.stateService.getLastSyncHash(); - const hashIsNew = lastHash == null || (hash !== lastHash && hashLegacy !== lastHash); + return { hash, hashLegacy }; + } + + async compareToLastHash(hashes: HashResult): Promise { + const lastHash = await this.stateService.getLastSyncHash(); - return hashIsNew ? hash : ""; + return lastHash == null || (hashes.hash !== lastHash && hashes.hashLegacy !== lastHash); } private removeDuplicateUsers(users: UserEntry[]) { @@ -211,23 +217,6 @@ export class SyncService { return allUsers; } - getDirectoryService(): IDirectoryService { - switch (this.dirType) { - case DirectoryType.GSuite: - return new GSuiteDirectoryService(this.logService, this.i18nService, this.stateService); - case DirectoryType.AzureActiveDirectory: - return new AzureDirectoryService(this.logService, this.i18nService, this.stateService); - case DirectoryType.Ldap: - return new LdapDirectoryService(this.logService, this.i18nService, this.stateService); - case DirectoryType.Okta: - return new OktaDirectoryService(this.logService, this.i18nService, this.stateService); - case DirectoryType.OneLogin: - return new OneLoginDirectoryService(this.logService, this.i18nService, this.stateService); - default: - return null; - } - } - private buildRequest( groups: GroupEntry[], users: UserEntry[], @@ -235,29 +224,20 @@ export class SyncService { overwriteExisting: boolean, largeImport = false, ): OrganizationImportRequest[] { - if (largeImport) { - return this.batchingService.batchRequests(groups, users, overwriteExisting, removeDisabled); + if (largeImport && groups.length + users.length > 2000) { + return this.batchRequestBuilder.buildRequest( + groups, + users, + overwriteExisting, + removeDisabled, + ); } else { - return [ - new OrganizationImportRequest({ - groups: (groups ?? []).map((g) => { - return { - name: g.name, - externalId: g.externalId, - memberExternalIds: Array.from(g.userMemberExternalIds), - }; - }), - users: (users ?? []).map((u) => { - return { - email: u.email, - externalId: u.externalId, - deleted: u.deleted || (removeDisabled && u.disabled), - }; - }), - overwriteExisting: overwriteExisting, - largeImport: largeImport, - }), - ]; + return this.singleRequestBuilder.buildRequest( + groups, + users, + overwriteExisting, + removeDisabled, + ); } } From c25d4be05cbbcfc294ca2a5d024a56e5c37316b2 Mon Sep 17 00:00:00 2001 From: Brandon Date: Mon, 6 Jan 2025 16:28:41 -0500 Subject: [PATCH 03/11] clean up --- openldap/group-fixtures-11000.ts | 11027 - openldap/ldifs/directory-11000.ldif | 340708 --------------- .../directory-20.ldif | 0 openldap/user-fixtures-11000.ts | 77008 ---- src/services/sync.service.spec.ts | 18 +- 5 files changed, 5 insertions(+), 428756 deletions(-) delete mode 100644 openldap/group-fixtures-11000.ts delete mode 100644 openldap/ldifs/directory-11000.ldif rename openldap/{example-ldifs => ldifs}/directory-20.ldif (100%) delete mode 100644 openldap/user-fixtures-11000.ts diff --git a/openldap/group-fixtures-11000.ts b/openldap/group-fixtures-11000.ts deleted file mode 100644 index ec95beb0b..000000000 --- a/openldap/group-fixtures-11000.ts +++ /dev/null @@ -1,11027 +0,0 @@ -import { Jsonify } from "type-fest"; - -import { GroupEntry } from "../src/models/groupEntry"; - -// These must match the ldap server seed data in directory.ldif -const data: Jsonify[] = [ - { - groupMemberReferenceIds: [], - userMemberExternalIds: [ - "cn=Edlene Morocz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mimi Mufti,ou=Peons,dc=bitwarden,dc=com", - "cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elianore Snapper,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lujanka Dickford,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nedi Siegel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Simulation Beswick,ou=Management,dc=bitwarden,dc=com", - "cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden,dc=com", - "cn=Ola Paulhus,ou=Management,dc=bitwarden,dc=com", - "cn=Yen Sharkey,ou=Peons,dc=bitwarden,dc=com", - "cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aila Koster,ou=Peons,dc=bitwarden,dc=com", - "cn=Dacia Colterman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Helma Bento,ou=Product Development,dc=bitwarden,dc=com", - "cn=Holst Issa,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nicolina Eu,ou=Management,dc=bitwarden,dc=com", - "cn=Nobuko Nyland,ou=Payroll,dc=bitwarden,dc=com", - "cn=Erlene Hargrow,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aila Mawani,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eula Neault,ou=Payroll,dc=bitwarden,dc=com", - "cn=Grata Tomacic,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Larissa Gillette,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Panch Sziladi,ou=Peons,dc=bitwarden,dc=com", - "cn=Morley Chadha,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kem Bizga,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carmel Vawter,ou=Payroll,dc=bitwarden,dc=com", - "cn=Corly Tesch,ou=Payroll,dc=bitwarden,dc=com", - "cn=Laureen Ladet,ou=Product Development,dc=bitwarden,dc=com", - "cn=AnneMarie Sills,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sonny Creamer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Access Banerd,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mina Chee,ou=Peons,dc=bitwarden,dc=com", - "cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fabienne Vempati,ou=Management,dc=bitwarden,dc=com", - "cn=Saman Bosch,ou=Management,dc=bitwarden,dc=com", - "cn=Farag Collevecchio,ou=Peons,dc=bitwarden,dc=com", - "cn=Randhir Dobransky,ou=Peons,dc=bitwarden,dc=com", - "cn=Maddy Beausejour,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carita Stetner,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dvm Ricketson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Viktoria Relations,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hot Hisaki,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kristien Reinwald,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anjanette Codata,ou=Product Development,dc=bitwarden,dc=com", - "cn=Antonia Killam,ou=Management,dc=bitwarden,dc=com", - "cn=Rosene Bonner,ou=Peons,dc=bitwarden,dc=com", - "cn=Janson Vrbetic,ou=Management,dc=bitwarden,dc=com", - "cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clyde Beggs,ou=Peons,dc=bitwarden,dc=com", - "cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cal Storey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pearline Towsley,ou=Peons,dc=bitwarden,dc=com", - "cn=Violet Ninetyone,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hr Healy,ou=Peons,dc=bitwarden,dc=com", - "cn=Ondrea Schultze,ou=Peons,dc=bitwarden,dc=com", - "cn=Lita Gille,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joelle Delong,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fabien Klapper,ou=Product Development,dc=bitwarden,dc=com", - "cn=Christie Andersen,ou=Peons,dc=bitwarden,dc=com", - "cn=Sarena Semler,ou=Administrative,dc=bitwarden,dc=com", - "cn=Janka Norfleet,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden,dc=com", - "cn=Verena Cadzow,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Roselin Clinton,ou=Management,dc=bitwarden,dc=com", - "cn=Niki Tosczak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden,dc=com", - "cn=Alli McCartney,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Helaine Sture,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elane Boggia,ou=Peons,dc=bitwarden,dc=com", - "cn=Cristen Bethune,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elbert Strauch,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stock Krenn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maurice Wurtz,ou=Peons,dc=bitwarden,dc=com", - "cn=YoungJune Grauer,ou=Management,dc=bitwarden,dc=com", - "cn=Jock Subsara,ou=Management,dc=bitwarden,dc=com", - "cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Latia Amarsi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Armand Klimas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sibbie DeWiele,ou=Management,dc=bitwarden,dc=com", - "cn=Kiam Surreau,ou=Administrative,dc=bitwarden,dc=com", - "cn=Clarabelle Committe,ou=Peons,dc=bitwarden,dc=com", - "cn=Geralene Lan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Madelyn Runnels,ou=Peons,dc=bitwarden,dc=com", - "cn=Marshal Hawken,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sickle Hartley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carran Cramer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=KienNghiep Eby,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pacific Derrett,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Allyce Chickorie,ou=Management,dc=bitwarden,dc=com", - "cn=Risa Hatten,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cherise Racette,ou=Management,dc=bitwarden,dc=com", - "cn=Ava Wetteland,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shaun Fares,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Miss Rogne,ou=Peons,dc=bitwarden,dc=com", - "cn=Vyky Wichers,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Christal Logan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marga Narron,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emmalee Foods,ou=Management,dc=bitwarden,dc=com", - "cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carmelina Scully,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shyam Carr,ou=Administrative,dc=bitwarden,dc=com", - "cn=Katie Jeska,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Penni Sarto,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marge Levere,ou=Management,dc=bitwarden,dc=com", - "cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Konrad Fabijanic,ou=Peons,dc=bitwarden,dc=com", - "cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden,dc=com", - "cn=Colman Epplett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rama Akhtar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cari Cuany,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Betteanne Donak,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nguyen Jaques,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bobette Sherlock,ou=Peons,dc=bitwarden,dc=com", - "cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Barsha Ozmizrak,ou=Management,dc=bitwarden,dc=com", - "cn=Tandi Dao,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jackie Bissonnette,ou=Peons,dc=bitwarden,dc=com", - "cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Margaretta Amott,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yetta Litherland,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rubetta Altman,ou=Product Development,dc=bitwarden,dc=com", - "cn=LeiSee Plato,ou=Peons,dc=bitwarden,dc=com", - "cn=Fayette Kos,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ginette Vilis,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorelle Ladymon,ou=Peons,dc=bitwarden,dc=com", - "cn=Behnam Cairns,ou=Management,dc=bitwarden,dc=com", - "cn=Othella McGrath,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Minnnie Hough,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darci Glasgow,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Franz Kosasih,ou=Administrative,dc=bitwarden,dc=com", - "cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Zonda Keyes,ou=Management,dc=bitwarden,dc=com", - "cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Iwona Eicher,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hugo Baltodano,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karyl Jiang,ou=Human Resources,dc=bitwarden,dc=com", - "cn=KumMeng Dover,ou=Administrative,dc=bitwarden,dc=com", - "cn=Homa Brownlee,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tianbao Cemensky,ou=Management,dc=bitwarden,dc=com", - "cn=Meggy Jansen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Thad Bertram,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dallas Gulick,ou=Management,dc=bitwarden,dc=com", - "cn=Marna Kindem,ou=Peons,dc=bitwarden,dc=com", - "cn=Denny Worpell,ou=Management,dc=bitwarden,dc=com", - "cn=Tanitansy Thibon,ou=Management,dc=bitwarden,dc=com", - "cn=Koray Vasiliadis,ou=Peons,dc=bitwarden,dc=com", - "cn=Ettie Sils,ou=Management,dc=bitwarden,dc=com", - "cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Millard Tromm,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Merlina Benschop,ou=Peons,dc=bitwarden,dc=com", - "cn=Shanna Bourgon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Liza Gumb,ou=Management,dc=bitwarden,dc=com", - "cn=Gokul Livingstone,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jamison Hines,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Clem Bongers,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vina McKie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Duc Dinalic,ou=Management,dc=bitwarden,dc=com", - "cn=Gena Lawther,ou=Management,dc=bitwarden,dc=com", - "cn=HooiLee Bourgon,ou=Peons,dc=bitwarden,dc=com", - "cn=Teresa Kenkel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marin Suprick,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Attilio Bullett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Blake Skerry,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Amir McColman,ou=Management,dc=bitwarden,dc=com", - "cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Minne Danker,ou=Management,dc=bitwarden,dc=com", - "cn=Rizzo Irick,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Syl Hughes,ou=Management,dc=bitwarden,dc=com", - "cn=Jagat Beato,ou=Peons,dc=bitwarden,dc=com", - "cn=Masood Tomassi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shamsia Mincey,ou=Peons,dc=bitwarden,dc=com", - "cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden,dc=com", - "cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tove Goodridge,ou=Payroll,dc=bitwarden,dc=com", - "cn=Elberta Incze,ou=Management,dc=bitwarden,dc=com", - "cn=Bobinette Belboul,ou=Peons,dc=bitwarden,dc=com", - "cn=Lynna Elsing,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ioana Bresee,ou=Peons,dc=bitwarden,dc=com", - "cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Seanna Lasher,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bella Lally,ou=Peons,dc=bitwarden,dc=com", - "cn=Romina Koman,ou=Peons,dc=bitwarden,dc=com", - "cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Abbye Kurth,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cecil Babb,ou=Product Development,dc=bitwarden,dc=com", - "cn=Thinh Merinder,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dinah Kodsi,ou=Peons,dc=bitwarden,dc=com", - "cn=Loria Salzillo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden,dc=com", - "cn=Johnna Rodkey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Willi Kepekci,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tillie Laniel,ou=Peons,dc=bitwarden,dc=com", - "cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Helene Esser,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lina Frederick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sluis Brauer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bosiljka Valerius,ou=Peons,dc=bitwarden,dc=com", - "cn=Prity Ruthart,ou=Peons,dc=bitwarden,dc=com", - "cn=Arlinda Weddell,ou=Peons,dc=bitwarden,dc=com", - "cn=Yatish Drynan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Coila Daniells,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Digby Abrams,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kalie Hine,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pierette Rodriques,ou=Management,dc=bitwarden,dc=com", - "cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marleen Potts,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lela Kita,ou=Payroll,dc=bitwarden,dc=com", - "cn=Angie Kou,ou=Peons,dc=bitwarden,dc=com", - "cn=Mab Goba,ou=Management,dc=bitwarden,dc=com", - "cn=Roe Sandberg,ou=Peons,dc=bitwarden,dc=com", - "cn=Randene Wintour,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Avie Lannan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Wiele Levert,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Amata Boles,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lpo Firment,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Katey Carkner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vito Mereu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Willa Mikelonis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lysy Halicki,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gabriell Aery,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden,dc=com", - "cn=Morgan Christian,ou=Management,dc=bitwarden,dc=com", - "cn=Shona Ernst,ou=Payroll,dc=bitwarden,dc=com", - "cn=Melynda Traynor,ou=Peons,dc=bitwarden,dc=com", - "cn=Christer Bortolussi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Frances Yvon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brigitta Ipadmin,ou=Management,dc=bitwarden,dc=com", - "cn=Garland Kenney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vivia Zaloker,ou=Administrative,dc=bitwarden,dc=com", - "cn=Reed Bassignana,ou=Peons,dc=bitwarden,dc=com", - "cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Robbie Kara,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lorri Abe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Norman Schmeler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lethia Godse,ou=Management,dc=bitwarden,dc=com", - "cn=Elsy Sigut,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rosabella Toothman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Royce OColmain,ou=Peons,dc=bitwarden,dc=com", - "cn=Leigha Contine,ou=Management,dc=bitwarden,dc=com", - "cn=Ivo Chaurette,ou=Payroll,dc=bitwarden,dc=com", - "cn=Loleta Macoosh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Raina Morgan,ou=Peons,dc=bitwarden,dc=com", - "cn=Laury Madras,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden,dc=com", - "cn=YuHung Marting,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Garry Brashear,ou=Peons,dc=bitwarden,dc=com", - "cn=Klara Npi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden,dc=com", - "cn=Edita VanRijswijk,ou=Management,dc=bitwarden,dc=com", - "cn=Jeana Horwood,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lianna Horton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Felicia Audette,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jayesh Purson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zora Weldon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Htd Knobloch,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden,dc=com", - "cn=Detlef Morglan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Berthe Peter,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alyce Tangren,ou=Management,dc=bitwarden,dc=com", - "cn=Grissel Beaudoin,ou=Peons,dc=bitwarden,dc=com", - "cn=Octavio Mathur,ou=Peons,dc=bitwarden,dc=com", - "cn=Elyssa Chui,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Danica Rubinstein,ou=Management,dc=bitwarden,dc=com", - "cn=Karna Netto,ou=Product Development,dc=bitwarden,dc=com", - "cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wallie Newhook,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cavin Circe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Notley Salinas,ou=Administrative,dc=bitwarden,dc=com", - "cn=Catrina Pezzoli,ou=Peons,dc=bitwarden,dc=com", - "cn=Marrilee Montague,ou=Payroll,dc=bitwarden,dc=com", - "cn=Frederica KongQuee,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fianna Rubio,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Neely Godo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karil Mielke,ou=Product Development,dc=bitwarden,dc=com", - "cn=Livvie Blodgett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ursula Potter,ou=Administrative,dc=bitwarden,dc=com", - "cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Charil Garbish,ou=Management,dc=bitwarden,dc=com", - "cn=William Groleau,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden,dc=com", - "cn=LouisRene Albers,ou=Payroll,dc=bitwarden,dc=com", - "cn=Emilie Geldrez,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tomasina Willett,ou=Peons,dc=bitwarden,dc=com", - "cn=Prams Bertolini,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vivyanne Mulder,ou=Management,dc=bitwarden,dc=com", - "cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Clarence Sonier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Emelia Esry,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ranea Beffert,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Saraann Lui,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden,dc=com", - "cn=Katrina Dauterive,ou=Product Development,dc=bitwarden,dc=com", - "cn=Talia Mattson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yevette Lazzara,ou=Peons,dc=bitwarden,dc=com", - "cn=Kirby Hagley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marit Montelli,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Monroe Ghulati,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carolan Bott,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anet Gehring,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kaela Binner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Libor Schanne,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bertie Bounds,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pascale Hutchings,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rochella Mazarick,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sheela Adam,ou=Product Development,dc=bitwarden,dc=com", - "cn=Norio Crabtree,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jey Shackley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Linda Juhan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Donica Banens,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marianna Fagan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Otha Mousseau,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rodrigus Helwege,ou=Peons,dc=bitwarden,dc=com", - "cn=Cathe Bolli,ou=Payroll,dc=bitwarden,dc=com", - "cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Odele Docherty,ou=Peons,dc=bitwarden,dc=com", - "cn=Allie Corbeil,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marshal Mayo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Neil Bestavros,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pirooz Rashed,ou=Administrative,dc=bitwarden,dc=com", - "cn=Corinna Davy,ou=Management,dc=bitwarden,dc=com", - "cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Melford Sehgal,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden,dc=com", - "cn=Juditha Moree,ou=Peons,dc=bitwarden,dc=com", - "cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden,dc=com", - ], - users: [], - referenceId: "cn=Blue Team,dc=bitwarden,dc=com", - externalId: "cn=Blue Team,dc=bitwarden,dc=com", - name: "Blue Team", - }, - { - groupMemberReferenceIds: [], - externalId: "cn=Red Team,dc=bitwarden,dc=com", - userMemberExternalIds: [ - "cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gerardjan Toulson,ou=Peons,dc=bitwarden,dc=com", - "cn=CheeYong BrownGillard,ou=Management,dc=bitwarden,dc=com", - "cn=Sherri Hamilton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kameko Lozier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cariotta Loyst,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alisa Centre,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shanon Vexler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Air Falkner,ou=Administrative,dc=bitwarden,dc=com", - "cn=Burton Backshall,ou=Product Development,dc=bitwarden,dc=com", - "cn=Frinel Beeston,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mahmoud Namiki,ou=Peons,dc=bitwarden,dc=com", - "cn=Hpone Paryag,ou=Management,dc=bitwarden,dc=com", - "cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sieber Sallee,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Caria Iribarren,ou=Payroll,dc=bitwarden,dc=com", - "cn=Odelle Translations,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carri Putman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Emelia McDonough,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Scarlet Netzke,ou=Product Development,dc=bitwarden,dc=com", - "cn=Verene Rigstad,ou=Management,dc=bitwarden,dc=com", - "cn=Corette Barbour,ou=Peons,dc=bitwarden,dc=com", - "cn=Becka McConkey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elvina Thomson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shamshad Kuntova,ou=Management,dc=bitwarden,dc=com", - "cn=Barbey Hews,ou=Payroll,dc=bitwarden,dc=com", - "cn=Olympie Sails,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bessie Kurian,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ardella Nagai,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bette Pipit,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sigrid Strock,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Benne Baab,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zohar Hauge,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden,dc=com", - "cn=LyddaJune Challice,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ediva Hately,ou=Payroll,dc=bitwarden,dc=com", - "cn=Faizal Vezina,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Champathon Bhatti,ou=Management,dc=bitwarden,dc=com", - "cn=Habib Barreyre,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nerita Jansen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rey Bayly,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vivian Faruque,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Steve Iyengar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Martina Fuson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dix NeKueey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maude Wippel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cherye Tanner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Edeline Kingdon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nadya Security,ou=Product Development,dc=bitwarden,dc=com", - "cn=Murray Longo,ou=Peons,dc=bitwarden,dc=com", - "cn=Catherin Witzman,ou=Management,dc=bitwarden,dc=com", - "cn=Harrison Salembier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Judi Nahata,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rudie Unxlb,ou=Management,dc=bitwarden,dc=com", - "cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Noni Garwood,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Melanie Sager,ou=Administrative,dc=bitwarden,dc=com", - "cn=Breena Psklib,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jeni Gros,ou=Peons,dc=bitwarden,dc=com", - "cn=Yoda Mejury,ou=Administrative,dc=bitwarden,dc=com", - "cn=Charla Mahbeer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roana Jurman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hqs Bresnan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tuhina Syrett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Genia Oestreich,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bianka Zeiger,ou=Management,dc=bitwarden,dc=com", - "cn=Jessalin Sauve,ou=Payroll,dc=bitwarden,dc=com", - "cn=Saman Dunik,ou=Product Development,dc=bitwarden,dc=com", - "cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pierre Latin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nariko Hobgood,ou=Peons,dc=bitwarden,dc=com", - "cn=Isin Scheck,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tessy McClelland,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dany Barel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lana Ellerman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dusan Bcs,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shekhar Howat,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shara Tims,ou=Management,dc=bitwarden,dc=com", - "cn=Floyd Shelby,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dacie Kato,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lenore Spraggins,ou=Management,dc=bitwarden,dc=com", - "cn=Prafula Diffee,ou=Management,dc=bitwarden,dc=com", - "cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lelah Marcellus,ou=Peons,dc=bitwarden,dc=com", - "cn=Marion Commons,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gay Golia,ou=Payroll,dc=bitwarden,dc=com", - "cn=Susanetta Technosoft,ou=Peons,dc=bitwarden,dc=com", - "cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nha Chytil,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Newton Hoddinott,ou=Peons,dc=bitwarden,dc=com", - "cn=Allyn Aitken,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anand Lojewski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kitt Fetzko,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fleet Nie,ou=Product Testing,dc=bitwarden,dc=com", - "cn=WeeThong Berube,ou=Management,dc=bitwarden,dc=com", - "cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Farshid Gard,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Violet Potvin,ou=Peons,dc=bitwarden,dc=com", - "cn=Indy Calder,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gwenette Feild,ou=Management,dc=bitwarden,dc=com", - "cn=Guillermo Leavell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Henryetta Raing,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Petronia Bermel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Remi Giuliani,ou=Payroll,dc=bitwarden,dc=com", - "cn=Faizal Moussette,ou=Peons,dc=bitwarden,dc=com", - "cn=Connie Barentsen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Verla Trottier,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vincente Isip,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pal Burchby,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ibbie Gung,ou=Peons,dc=bitwarden,dc=com", - "cn=Ned Pownall,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lucky Carmody,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mayumi Presgrove,ou=Management,dc=bitwarden,dc=com", - "cn=MunHang Altay,ou=Peons,dc=bitwarden,dc=com", - "cn=Savina Wefers,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marjoke NewLab,ou=Administrative,dc=bitwarden,dc=com", - "cn=Caralie Ferner,ou=Management,dc=bitwarden,dc=com", - "cn=Julio Marineau,ou=Administrative,dc=bitwarden,dc=com", - "cn=Olivette Crompton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Roly Slobodrian,ou=Product Development,dc=bitwarden,dc=com", - "cn=Partha Archibald,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Emerson Tait,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Claudette Talbot,ou=Product Testing,dc=bitwarden,dc=com", - "cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden,dc=com", - "cn=Dominica Nttest,ou=Product Development,dc=bitwarden,dc=com", - "cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tilak McGruder,ou=Peons,dc=bitwarden,dc=com", - "cn=Rieni Faley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alice Rist,ou=Management,dc=bitwarden,dc=com", - "cn=Nona Diee,ou=Product Testing,dc=bitwarden,dc=com", - "cn=ChongLai Jennings,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zdenka Filkins,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Adelind Loveday,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mariet Hotson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden,dc=com", - "cn=Nirmal Loper,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rhianon Mansi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shamim Pospisil,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Powell Brar,ou=Peons,dc=bitwarden,dc=com", - "cn=Nir Saisho,ou=Peons,dc=bitwarden,dc=com", - "cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Milissent Bowes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Harmonie Luquire,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Beth Nolet,ou=Payroll,dc=bitwarden,dc=com", - "cn=Georgette Manica,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Beitris Linton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Othella Difilippo,ou=Management,dc=bitwarden,dc=com", - "cn=Deloris Mattes,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brittni Holliday,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pat Pereira,ou=Janitorial,dc=bitwarden,dc=com", - "cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Walliw Marling,ou=Peons,dc=bitwarden,dc=com", - "cn=Susann Biggers,ou=Management,dc=bitwarden,dc=com", - "cn=Niek Sainsbury,ou=Payroll,dc=bitwarden,dc=com", - "cn=ChyeLian Codack,ou=Management,dc=bitwarden,dc=com", - "cn=Bailey Altmann,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden,dc=com", - "cn=Rich Ruigrok,ou=Management,dc=bitwarden,dc=com", - "cn=Mason AbiAad,ou=Peons,dc=bitwarden,dc=com", - "cn=Nike Mayfield,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ranson Darden,ou=Janitorial,dc=bitwarden,dc=com", - "cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Raju Ciochon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sammy Sourour,ou=Peons,dc=bitwarden,dc=com", - "cn=Theresa Dolson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lotti Farnum,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fouad Caton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Terry Lodeserto,ou=Peons,dc=bitwarden,dc=com", - "cn=Fei Bebee,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Oral Hamid,ou=Peons,dc=bitwarden,dc=com", - "cn=Anabelle Krater,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ginnie Vosu,ou=Management,dc=bitwarden,dc=com", - "cn=Anallese Haufe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Roze Bakkum,ou=Management,dc=bitwarden,dc=com", - "cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Belvia Aylwin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Duong Bannard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kees Rashid,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cami Glew,ou=Management,dc=bitwarden,dc=com", - "cn=Tien Giuliani,ou=Payroll,dc=bitwarden,dc=com", - "cn=Evie Morin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dorena Godina,ou=Peons,dc=bitwarden,dc=com", - "cn=Arn Ricketts,ou=Peons,dc=bitwarden,dc=com", - "cn=Beatriz Hagley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Karissa AuYang,ou=Management,dc=bitwarden,dc=com", - "cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden,dc=com", - "cn=Froukje Kennedy,ou=Management,dc=bitwarden,dc=com", - "cn=Hazel Nash,ou=Product Development,dc=bitwarden,dc=com", - "cn=Soyeh Neely,ou=Product Testing,dc=bitwarden,dc=com", - "cn=WaiChau McHale,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kathrine Schejbal,ou=Peons,dc=bitwarden,dc=com", - "cn=Shobana Eisler,ou=Management,dc=bitwarden,dc=com", - "cn=Joete Stamps,ou=Payroll,dc=bitwarden,dc=com", - "cn=Oneida Curnow,ou=Peons,dc=bitwarden,dc=com", - "cn=Naohiko McCray,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lang DeBoer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Selime Yuengling,ou=Peons,dc=bitwarden,dc=com", - "cn=Dolli Cracknell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Justino Willhoff,ou=Janitorial,dc=bitwarden,dc=com", - "cn=ShingCheong Eastus,ou=Management,dc=bitwarden,dc=com", - "cn=Said Fran,ou=Product Development,dc=bitwarden,dc=com", - "cn=Olga Rehbein,ou=Peons,dc=bitwarden,dc=com", - "cn=Quinta Blezard,ou=Management,dc=bitwarden,dc=com", - "cn=Felisha Linke,ou=Peons,dc=bitwarden,dc=com", - "cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elisabet Somppi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Arda Poluchowska,ou=Management,dc=bitwarden,dc=com", - "cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Valry Agnihotri,ou=Peons,dc=bitwarden,dc=com", - "cn=Gerri Rosko,ou=Payroll,dc=bitwarden,dc=com", - "cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Farouk Korf,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Valida Ribi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maynie Levert,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Floria DAoust,ou=Product Development,dc=bitwarden,dc=com", - "cn=Den Ormesher,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden,dc=com", - "cn=Brier VanNeste,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pars Fleury,ou=Administrative,dc=bitwarden,dc=com", - "cn=Roshelle Latif,ou=Payroll,dc=bitwarden,dc=com", - "cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Micah Eva,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Magdalen Howe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gloriane Knitl,ou=Peons,dc=bitwarden,dc=com", - "cn=Issy Paget,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Justinn Mazey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nan Wellard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bryana Sathe,ou=Peons,dc=bitwarden,dc=com", - "cn=Pavla Keiser,ou=Administrative,dc=bitwarden,dc=com", - "cn=Myriam Blezard,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shobana Berna,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ginni Felske,ou=Product Testing,dc=bitwarden,dc=com", - "cn=HingFai Shearer,ou=Management,dc=bitwarden,dc=com", - "cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alissa Junkin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bryon Valko,ou=Payroll,dc=bitwarden,dc=com", - "cn=Matt Casey,ou=Peons,dc=bitwarden,dc=com", - "cn=Lizette Klappholz,ou=Peons,dc=bitwarden,dc=com", - "cn=Maryl Petrick,ou=Peons,dc=bitwarden,dc=com", - "cn=Thalia Felske,ou=Payroll,dc=bitwarden,dc=com", - "cn=Louisa Macoosh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dino Kurauchi,ou=Peons,dc=bitwarden,dc=com", - "cn=Heida Kyoung,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fleurette Neyman,ou=Management,dc=bitwarden,dc=com", - "cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden,dc=com", - "cn=Susanne Keates,ou=Management,dc=bitwarden,dc=com", - "cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alyce Gravely,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Paulo Whidden,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lee Abbott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mustapha Tull,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tsing Oakley,ou=Management,dc=bitwarden,dc=com", - "cn=Ozlem Nys,ou=Administrative,dc=bitwarden,dc=com", - "cn=Canute Fran,ou=Payroll,dc=bitwarden,dc=com", - "cn=Erina RTP,ou=Payroll,dc=bitwarden,dc=com", - "cn=Efdal Maund,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Peggy Corpening,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hiren Bopp,ou=Peons,dc=bitwarden,dc=com", - "cn=Neala Seeds,ou=Management,dc=bitwarden,dc=com", - "cn=Torie Seamster,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Benoit Heilsnis,ou=Management,dc=bitwarden,dc=com", - "cn=Madalyn Timmons,ou=Administrative,dc=bitwarden,dc=com", - "cn=Frinel Reiser,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Harish Shukor,ou=Administrative,dc=bitwarden,dc=com", - "cn=Felice Hazenboom,ou=Management,dc=bitwarden,dc=com", - "cn=Lorna Kreimer,ou=Management,dc=bitwarden,dc=com", - "cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rheal Lauten,ou=Management,dc=bitwarden,dc=com", - "cn=Vivi Vexler,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden,dc=com", - "cn=Leigha Elwood,ou=Payroll,dc=bitwarden,dc=com", - "cn=Basia Smyth,ou=Peons,dc=bitwarden,dc=com", - "cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mario Cassidy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amy Rafol,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lennart Shultz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sherwood Caton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tesa Suprick,ou=Management,dc=bitwarden,dc=com", - "cn=Maryl Fleugel,ou=Peons,dc=bitwarden,dc=com", - "cn=Clarine Hauge,ou=Peons,dc=bitwarden,dc=com", - "cn=Cordy Ghossein,ou=Administrative,dc=bitwarden,dc=com", - "cn=Judith Fuqua,ou=Peons,dc=bitwarden,dc=com", - "cn=Maurine Boucher,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Billie Shoulars,ou=Product Development,dc=bitwarden,dc=com", - "cn=Trever Shearer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jacquie Desilets,ou=Product Development,dc=bitwarden,dc=com", - "cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ramiz Gung,ou=Administrative,dc=bitwarden,dc=com", - "cn=Windy Sadeghi,ou=Product Development,dc=bitwarden,dc=com", - "cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cassey Papp,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aurelia Hann,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rani Korpela,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Danni Tsuji,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fredia Handschy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Verna Muldoon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bjorn Treen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden,dc=com", - "cn=Garth Callery,ou=Payroll,dc=bitwarden,dc=com", - "cn=Livvie VanOorschot,ou=Peons,dc=bitwarden,dc=com", - "cn=Anderson Hockaday,ou=Peons,dc=bitwarden,dc=com", - "cn=Kaia Archer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bethany Buder,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden,dc=com", - "cn=Willie Godse,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gaye Tjia,ou=Payroll,dc=bitwarden,dc=com", - "cn=Valencia Claise,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Loria Buckley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shahram Campeau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fanchette Zaman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Junk Nishith,ou=Peons,dc=bitwarden,dc=com", - "cn=Bennett Biage,ou=Peons,dc=bitwarden,dc=com", - "cn=Klazien Propes,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kenneth DAnjou,ou=Peons,dc=bitwarden,dc=com", - "cn=Parviz Shahen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Coleen Litherland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=ChongLai Hingtgen,ou=Management,dc=bitwarden,dc=com", - "cn=Izabel Heeralall,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rueben Dynie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lolita Mecteau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gunars Rafflin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Thad Besnier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Leonard Ireland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jany Lotz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sultan Sergo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden,dc=com", - "cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Erena Mersinger,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nitin Operators,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hennrietta Siewert,ou=Management,dc=bitwarden,dc=com", - "cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Othelia Solodko,ou=Peons,dc=bitwarden,dc=com", - "cn=Huong Commazzi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Duljit Zbuda,ou=Payroll,dc=bitwarden,dc=com", - "cn=Thang Bushnell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carri Gary,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Valli Carlebach,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bobb Lacosse,ou=Peons,dc=bitwarden,dc=com", - "cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Abby Presutti,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vivie Lauson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Geraldine McLennan,ou=Management,dc=bitwarden,dc=com", - "cn=Glenda Lai,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lind Zeiger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Valina Raaflaub,ou=Administrative,dc=bitwarden,dc=com", - "cn=Susanne Alink,ou=Payroll,dc=bitwarden,dc=com", - "cn=Al Wrigley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden,dc=com", - "cn=Laurie Bijons,ou=Administrative,dc=bitwarden,dc=com", - "cn=Begum Minyard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hotline Au,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cornelle Coupal,ou=Peons,dc=bitwarden,dc=com", - "cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Turkey Moser,ou=Product Development,dc=bitwarden,dc=com", - "cn=Warwick Mau,ou=Product Testing,dc=bitwarden,dc=com", - "cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Wynne Clow,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shelly Keller,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ole Carbajal,ou=Administrative,dc=bitwarden,dc=com", - "cn=Richardson Luxford,ou=Management,dc=bitwarden,dc=com", - "cn=Breanne Tassy,ou=Peons,dc=bitwarden,dc=com", - "cn=Austina Acree,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gen Rushton,ou=Peons,dc=bitwarden,dc=com", - "cn=Lebbie Lortie,ou=Management,dc=bitwarden,dc=com", - "cn=Geoff Achcar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hollie Amir,ou=Payroll,dc=bitwarden,dc=com", - "cn=Timm Alvarez,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Huan Adornato,ou=Product Development,dc=bitwarden,dc=com", - "cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Reynold Meletios,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Britney Farrell,ou=Management,dc=bitwarden,dc=com", - "cn=Marne Tougas,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dyanna Goff,ou=Payroll,dc=bitwarden,dc=com", - "cn=Laverne NetTeam,ou=Peons,dc=bitwarden,dc=com", - "cn=Genny Bladon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sask Griswold,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rae Beckham,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=ChoKuen Layton,ou=Management,dc=bitwarden,dc=com", - "cn=Merlina Gofron,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jany Kamal,ou=Management,dc=bitwarden,dc=com", - "cn=Freddie Rolfes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nickie Acree,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden,dc=com", - "cn=Davina Amu,ou=Peons,dc=bitwarden,dc=com", - "cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Akin Capelle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Focus Decourcy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Moel Wynes,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bertrand Schiegl,ou=Peons,dc=bitwarden,dc=com", - "cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden,dc=com", - "cn=Coursey Stansfield,ou=Management,dc=bitwarden,dc=com", - "cn=Tavis Theodore,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bello Madani,ou=Management,dc=bitwarden,dc=com", - "cn=Sameh Kyoung,ou=Management,dc=bitwarden,dc=com", - "cn=Liem Isley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Estrella Balsas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bailey Trickett,ou=Management,dc=bitwarden,dc=com", - "cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Martha Hovey,ou=Management,dc=bitwarden,dc=com", - "cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden,dc=com", - "cn=ChinFui Iezzi,ou=Management,dc=bitwarden,dc=com", - "cn=Cortney Tolar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Walter Napke,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jenson Yabe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hanh Preo,ou=Peons,dc=bitwarden,dc=com", - "cn=Opto Decasper,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Regan Novak,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Orella Viriato,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ruthy Maher,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Roxanne Mohammad,ou=Management,dc=bitwarden,dc=com", - "cn=Guner Kelso,ou=Product Development,dc=bitwarden,dc=com", - "cn=Drusy Masapati,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anthiathia Bessell,ou=Peons,dc=bitwarden,dc=com", - "cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Saibal Swartz,ou=Peons,dc=bitwarden,dc=com", - "cn=Magdi Sulewski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Katharine Byers,ou=Administrative,dc=bitwarden,dc=com", - "cn=Donal Kashaninia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chicky Sils,ou=Human Resources,dc=bitwarden,dc=com", - "cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden,dc=com", - "cn=Gillie Dedas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kassie Dack,ou=Administrative,dc=bitwarden,dc=com", - "cn=Munir Gonsalves,ou=Peons,dc=bitwarden,dc=com", - "cn=Grietje Ansorger,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden,dc=com", - "cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden,dc=com", - "cn=Latisha Dallago,ou=Peons,dc=bitwarden,dc=com", - "cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Luther Attard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elisa Bernier,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cally Rios,ou=Management,dc=bitwarden,dc=com", - "cn=Flossie Ordway,ou=Administrative,dc=bitwarden,dc=com", - "cn=Trudie Beveridge,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jin Schavo,ou=Management,dc=bitwarden,dc=com", - "cn=Birgit Reznick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sylvia Manica,ou=Peons,dc=bitwarden,dc=com", - "cn=Adelind Vance,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Odella Anthonissen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=America Turney,ou=Management,dc=bitwarden,dc=com", - "cn=Rudie Vaughn,ou=Peons,dc=bitwarden,dc=com", - "cn=Idris Hotlist,ou=Product Development,dc=bitwarden,dc=com", - "cn=Petri Soreanu,ou=Payroll,dc=bitwarden,dc=com", - "cn=Inge Hurteau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tats McDermott,ou=Management,dc=bitwarden,dc=com", - "cn=Lianne Wanda,ou=Administrative,dc=bitwarden,dc=com", - "cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marinna Drane,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shelly Cavan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bryce Luetchford,ou=Management,dc=bitwarden,dc=com", - "cn=Mariana Munden,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Morris Pafilis,ou=Peons,dc=bitwarden,dc=com", - "cn=Shirl Clipperton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leona Buchko,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tybi Welsford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Baris Derome,ou=Payroll,dc=bitwarden,dc=com", - "cn=Munir Dickford,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ailsun Yvon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jeffery Becquart,ou=Peons,dc=bitwarden,dc=com", - "cn=Cindelyn Capozzi,ou=Management,dc=bitwarden,dc=com", - "cn=Regan Hesse,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aida Blackwell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Justine Aguirre,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maurene Zafarullah,ou=Management,dc=bitwarden,dc=com", - "cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Karita Donovan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shaw Lantto,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gwen Prog,ou=Peons,dc=bitwarden,dc=com", - "cn=Cecile Evans,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ringo Campara,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Melonie Loveland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Quinn Malizia,ou=Payroll,dc=bitwarden,dc=com", - "cn=Virgie Slaby,ou=Management,dc=bitwarden,dc=com", - "cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kamil Daniells,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bevvy Dalloste,ou=Management,dc=bitwarden,dc=com", - "cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Perri Gaylor,ou=Administrative,dc=bitwarden,dc=com", - "cn=Klink Bruneau,ou=Management,dc=bitwarden,dc=com", - "cn=Siamack Dace,ou=Administrative,dc=bitwarden,dc=com", - "cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jay Ginest,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wilona Caudle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden,dc=com", - "cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Laz Plante,ou=Product Development,dc=bitwarden,dc=com", - "cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ellene Holberry,ou=Administrative,dc=bitwarden,dc=com", - "cn=Niel McComb,ou=Peons,dc=bitwarden,dc=com", - "cn=Anni Demchuk,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Chen Crosson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lonna Leong,ou=Administrative,dc=bitwarden,dc=com", - "cn=Drusie Prewitt,ou=Management,dc=bitwarden,dc=com", - "cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jen Assenza,ou=Peons,dc=bitwarden,dc=com", - "cn=Lynnet Henshaw,ou=Management,dc=bitwarden,dc=com", - "cn=Wanids Pepper,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tamara Ahlers,ou=Payroll,dc=bitwarden,dc=com", - "cn=Karilynn Roddick,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mariesara CamelToueg,ou=Management,dc=bitwarden,dc=com", - "cn=Doe Yowell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Deedee Mattes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Luis Sinnett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Evette Bouffard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Armin Bakkum,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Grady Gregorski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ede Riggins,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vi Biamonte,ou=Management,dc=bitwarden,dc=com", - "cn=Shauna Moizer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maryanna Rao,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kore Hedrick,ou=Management,dc=bitwarden,dc=com", - "cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marris Legrove,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden,dc=com", - "cn=Olusola Hudson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cordula Lewandowski,ou=Management,dc=bitwarden,dc=com", - "cn=Olwen Salyer,ou=Management,dc=bitwarden,dc=com", - "cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kristine Guignon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Daphna Leong,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Larysa Singer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hilmi Spohn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sharity Fusca,ou=Peons,dc=bitwarden,dc=com", - "cn=Kendre Favrot,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pit Cotuna,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carma Mattiussi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leeann Staring,ou=Administrative,dc=bitwarden,dc=com", - "cn=Indiana Bodford,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden,dc=com", - "cn=Hermia Besse,ou=Payroll,dc=bitwarden,dc=com", - "cn=Keri Struble,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rolande Kiger,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cyndy Auton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Blaise Bookings,ou=Administrative,dc=bitwarden,dc=com", - "cn=Door Rigdon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Allianora Toperzer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Phaedra Criswell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Peter Dodson,ou=Peons,dc=bitwarden,dc=com", - "cn=Rhea Brewer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Junette Bayno,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jonis Innes,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Femke Roddick,ou=Management,dc=bitwarden,dc=com", - "cn=Nanine Psutka,ou=Management,dc=bitwarden,dc=com", - "cn=Stergios Koonce,ou=Management,dc=bitwarden,dc=com", - "cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Moyra Boulay,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Door McKerrow,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden,dc=com", - "cn=Paolina McCaughey,ou=Management,dc=bitwarden,dc=com", - "cn=Greer Metzger,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marlena Boyachek,ou=Payroll,dc=bitwarden,dc=com", - "cn=LyKhanh Hollbach,ou=Management,dc=bitwarden,dc=com", - "cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rosana Wendling,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eve StVil,ou=Payroll,dc=bitwarden,dc=com", - "cn=GuoQiang Hagen,ou=Peons,dc=bitwarden,dc=com", - "cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dorella Golczewski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Clarette Stokes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mo Barsch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Janos Running,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hanco Epstein,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden,dc=com", - "cn=Daisie Solman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nachum Biard,ou=Management,dc=bitwarden,dc=com", - "cn=Essy Goyal,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lorie Sehmbey,ou=Peons,dc=bitwarden,dc=com", - "cn=Armelle Schwane,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Brietta Plato,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nolana Hedman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zenia Hilwa,ou=Administrative,dc=bitwarden,dc=com", - "cn=Souphalack Delong,ou=Product Development,dc=bitwarden,dc=com", - "cn=Robbie Dibler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Biddie Tedrick,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gracia Peluso,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sanja Maxey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Petronella Tullius,ou=Payroll,dc=bitwarden,dc=com", - "cn=Henrie Lorint,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden,dc=com", - "cn=Donnette Kruger,ou=Peons,dc=bitwarden,dc=com", - "cn=Delle Schwantes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden,dc=com", - "cn=Print Gaitan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Patsy Mattiussi,ou=Management,dc=bitwarden,dc=com", - "cn=Phil Afkham,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sheldon Blatt,ou=Peons,dc=bitwarden,dc=com", - "cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Oryal Raschig,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hector Manus,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pollyanna Goza,ou=Payroll,dc=bitwarden,dc=com", - "cn=Koren Penner,ou=Payroll,dc=bitwarden,dc=com", - "cn=Iteke Wiedman,ou=Management,dc=bitwarden,dc=com", - "cn=Darrelle StJohn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kazuhito Schram,ou=Peons,dc=bitwarden,dc=com", - "cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shirene Eaves,ou=Product Development,dc=bitwarden,dc=com", - "cn=Desiree Southon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lianna Lackie,ou=Peons,dc=bitwarden,dc=com", - "cn=Misti Sayed,ou=Management,dc=bitwarden,dc=com", - "cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dione McCain,ou=Peons,dc=bitwarden,dc=com", - "cn=Deny Stasiak,ou=Management,dc=bitwarden,dc=com", - "cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ladell Butvich,ou=Management,dc=bitwarden,dc=com", - "cn=Loralyn Eller,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jan Crosson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Oral Pridgen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Subra Tuttle,ou=Payroll,dc=bitwarden,dc=com", - "cn=Teruko Fleischer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Quintina Ying,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nerti StJames,ou=Administrative,dc=bitwarden,dc=com", - "cn=RongChin Guatto,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mercer Zattiero,ou=Payroll,dc=bitwarden,dc=com", - "cn=Budi Enos,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tuoi Abdou,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nath Labarge,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sophi McCullogh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jorry Babineau,ou=Product Development,dc=bitwarden,dc=com", - "cn=Adey Fogelson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bela Fouillard,ou=Management,dc=bitwarden,dc=com", - "cn=Paola Barbeau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Milo Hasen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Corabella Scarffe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Parkinson Bir,ou=Product Development,dc=bitwarden,dc=com", - "cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden,dc=com", - "cn=Salis Quilty,ou=Payroll,dc=bitwarden,dc=com", - "cn=Stormi Vempati,ou=Management,dc=bitwarden,dc=com", - "cn=Lauretta Salvin,ou=Peons,dc=bitwarden,dc=com", - "cn=Sarine Quane,ou=Management,dc=bitwarden,dc=com", - "cn=Rocio Brauer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Margaretta Muchow,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dona Nairn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carolien Skiba,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cathee Bress,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mandy Settels,ou=Payroll,dc=bitwarden,dc=com", - "cn=Odetta Tzuang,ou=Payroll,dc=bitwarden,dc=com", - "cn=Arne Matney,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dvm LaPlante,ou=Payroll,dc=bitwarden,dc=com", - "cn=Edeline ORourke,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jiri Sengoba,ou=Product Development,dc=bitwarden,dc=com", - "cn=Terence Ashdown,ou=Payroll,dc=bitwarden,dc=com", - "cn=Donni Keilholz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Minhwi Vallet,ou=Product Development,dc=bitwarden,dc=com", - "cn=Allianora Wissler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Francisco Elam,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Katie Labrie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kazuhiko Drewes,ou=Management,dc=bitwarden,dc=com", - "cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Meade Esmaili,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gwennie Sojkowski,ou=Management,dc=bitwarden,dc=com", - "cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden,dc=com", - "cn=Winona Paine,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chiquita Ferrell,ou=Peons,dc=bitwarden,dc=com", - "cn=Burgess Platthy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Harlene Kortje,ou=Product Development,dc=bitwarden,dc=com", - "cn=Suhas Ilic,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kamil Caines,ou=Human Resources,dc=bitwarden,dc=com", - "cn=HorLam Momon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Farah Brennand,ou=Management,dc=bitwarden,dc=com", - "cn=Wilfred Issa,ou=Management,dc=bitwarden,dc=com", - "cn=Zino Larson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rhiamon Devault,ou=Product Development,dc=bitwarden,dc=com", - "cn=Michiko Sich,ou=Management,dc=bitwarden,dc=com", - "cn=Weber Ishii,ou=Payroll,dc=bitwarden,dc=com", - "cn=Beppie Kilburn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Durali Abelow,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eleen Pappu,ou=Payroll,dc=bitwarden,dc=com", - "cn=Betty Elzer,ou=Peons,dc=bitwarden,dc=com", - "cn=Sallyann Environment,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ans Pozzi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Blithe Sherow,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jacklin Alles,ou=Peons,dc=bitwarden,dc=com", - "cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pauly Wycoff,ou=Peons,dc=bitwarden,dc=com", - "cn=Jackson Narron,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hermia Probs,ou=Administrative,dc=bitwarden,dc=com", - "cn=Scovill McPhail,ou=Management,dc=bitwarden,dc=com", - "cn=Dian Zalite,ou=Administrative,dc=bitwarden,dc=com", - "cn=Puran Dundin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Migdalia Warner,ou=Peons,dc=bitwarden,dc=com", - "cn=Mechelle Kirn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jaan Hartin,ou=Peons,dc=bitwarden,dc=com", - "cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anne JantzLee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cherey Desantis,ou=Peons,dc=bitwarden,dc=com", - "cn=Celie Aksel,ou=Management,dc=bitwarden,dc=com", - "cn=Aleta Khosla,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lennart Cramm,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elex Sohal,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marianna Annas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sergei MacElwee,ou=Management,dc=bitwarden,dc=com", - "cn=Jay Dutil,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bevvy Routhier,ou=Peons,dc=bitwarden,dc=com", - "cn=Kacie Sconzo,ou=Peons,dc=bitwarden,dc=com", - "cn=Annadiane Davids,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Karan ETAS,ou=Peons,dc=bitwarden,dc=com", - "cn=Betti Savoie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Croix Dunn,ou=Management,dc=bitwarden,dc=com", - "cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden,dc=com", - "cn=Raymond McCaw,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Laurna Ferner,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cathe Boyer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hanco Elgin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Krier Brickman,ou=Management,dc=bitwarden,dc=com", - "cn=Aime IBNTAS,ou=Management,dc=bitwarden,dc=com", - "cn=Theodore Pierson,ou=Peons,dc=bitwarden,dc=com", - "cn=Monling Wormald,ou=Management,dc=bitwarden,dc=com", - "cn=Amandy Poma,ou=Peons,dc=bitwarden,dc=com", - "cn=Carri Loper,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cherri Bramlett,ou=Peons,dc=bitwarden,dc=com", - "cn=Tai Nerem,ou=Payroll,dc=bitwarden,dc=com", - "cn=Luciano Homayoon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Clovis Kaji,ou=Peons,dc=bitwarden,dc=com", - "cn=Constancy Sugihara,ou=Peons,dc=bitwarden,dc=com", - "cn=Micki Pownall,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Norma Rabipour,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mietek Nadon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sophie Malhotra,ou=Peons,dc=bitwarden,dc=com", - "cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Prue Zollman,ou=Peons,dc=bitwarden,dc=com", - "cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shaughan Lockard,ou=Management,dc=bitwarden,dc=com", - "cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marga Hao,ou=Peons,dc=bitwarden,dc=com", - "cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elset Yach,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jaynie Moniter,ou=Administrative,dc=bitwarden,dc=com", - "cn=Penelopa Kenik,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nam Mersch,ou=Administrative,dc=bitwarden,dc=com", - "cn=Valida US,ou=Management,dc=bitwarden,dc=com", - "cn=Jillian Pde,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Everette Klaassen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden,dc=com", - "cn=Selime Helstab,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Norean Wilford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bebe Spurway,ou=Peons,dc=bitwarden,dc=com", - "cn=Alka Kowal,ou=Product Development,dc=bitwarden,dc=com", - "cn=Michele Biggers,ou=Product Development,dc=bitwarden,dc=com", - "cn=Connie Stotz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Layne Efstration,ou=Peons,dc=bitwarden,dc=com", - "cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ankie Commazzi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cubicle Qu,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wassim Charette,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kas Audet,ou=Product Development,dc=bitwarden,dc=com", - "cn=Emalee Lockett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Janell Kurniawan,ou=Peons,dc=bitwarden,dc=com", - "cn=Georganne Munikoti,ou=Payroll,dc=bitwarden,dc=com", - "cn=Neala Casalou,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hai Grubbs,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alyssa Strackholder,ou=Peons,dc=bitwarden,dc=com", - "cn=Jossine Hoddinott,ou=Management,dc=bitwarden,dc=com", - "cn=Phyllis Majd,ou=Management,dc=bitwarden,dc=com", - "cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nevil Rosch,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lyndon Rao,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Karina Kempffer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Khalil Popovich,ou=Administrative,dc=bitwarden,dc=com", - "cn=Thomasa Dann,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rocke Tedrick,ou=Management,dc=bitwarden,dc=com", - "cn=Subra Howie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dasi Rabon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ivor Shennan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tosca Linfield,ou=Peons,dc=bitwarden,dc=com", - "cn=Shandee Vosup,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Janith Gursin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rora Kingrey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rhett Vavroch,ou=Peons,dc=bitwarden,dc=com", - "cn=Allene Izzotti,ou=Peons,dc=bitwarden,dc=com", - "cn=Ag Charlino,ou=Product Development,dc=bitwarden,dc=com", - "cn=Archie Kenyon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Malissia Albright,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mccauley Guillet,ou=Peons,dc=bitwarden,dc=com", - "cn=Maudie Overcash,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yolanthe Svo,ou=Peons,dc=bitwarden,dc=com", - "cn=Ashley Koskinen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden,dc=com", - "cn=Babb Mayne,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Godfrey Wiltz,ou=Peons,dc=bitwarden,dc=com", - "cn=Arlana Crowell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Arina Kempffer,ou=Peons,dc=bitwarden,dc=com", - "cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kip Grimshaw,ou=Management,dc=bitwarden,dc=com", - "cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Addons Wurtz,ou=Peons,dc=bitwarden,dc=com", - "cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden,dc=com", - "cn=Farzin Nebel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shell Hurst,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Khosro Kuo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Michel Kernahan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Melba Besnier,ou=Management,dc=bitwarden,dc=com", - "cn=Ailee Schwenk,ou=Management,dc=bitwarden,dc=com", - "cn=Klink Aguilar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Arnis Daly,ou=Peons,dc=bitwarden,dc=com", - "cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ofilia Keilty,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ans Casperson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Janick McGregor,ou=Management,dc=bitwarden,dc=com", - "cn=Chuan Bernstein,ou=Payroll,dc=bitwarden,dc=com", - "cn=Donall HickmanMiott,ou=Management,dc=bitwarden,dc=com", - "cn=Doc Cantlie,ou=Administrative,dc=bitwarden,dc=com", - "cn=Christer Chapen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Flory Ziegler,ou=Management,dc=bitwarden,dc=com", - "cn=Altay Stevenson,ou=Management,dc=bitwarden,dc=com", - "cn=Mada Curtin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dasha Kivell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Minna Hyatt,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tiff Brambley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gerrard Kinos,ou=Management,dc=bitwarden,dc=com", - "cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Norikatsu Knox,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sabine Litz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Candee Rightmire,ou=Management,dc=bitwarden,dc=com", - "cn=Jorge Layton,ou=Payroll,dc=bitwarden,dc=com", - "cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ed Joe,ou=Administrative,dc=bitwarden,dc=com", - "cn=Portia Sim,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jian Gardner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ashien Brewton,ou=Management,dc=bitwarden,dc=com", - "cn=Opto Seay,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rolande Prattico,ou=Administrative,dc=bitwarden,dc=com", - "cn=Reggie Boggs,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Zero Dourley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gabie Hirayama,ou=Peons,dc=bitwarden,dc=com", - "cn=Kalindi Keene,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rod Krenos,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bahadir Borozny,ou=Management,dc=bitwarden,dc=com", - "cn=Prudy Morelli,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Zero Volchegursky,ou=Management,dc=bitwarden,dc=com", - "cn=Riyaz Leone,ou=Management,dc=bitwarden,dc=com", - "cn=Jade Njo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Albert Healy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Helsa Eder,ou=Administrative,dc=bitwarden,dc=com", - "cn=Patt Overby,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dasya Chenard,ou=Management,dc=bitwarden,dc=com", - "cn=Rosana Hensen,ou=Management,dc=bitwarden,dc=com", - "cn=Thekla Helpb,ou=Payroll,dc=bitwarden,dc=com", - "cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jacquetta Alary,ou=Peons,dc=bitwarden,dc=com", - "cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden,dc=com", - "cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nari Dilallo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Betti Tanner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Weilin Tupling,ou=Peons,dc=bitwarden,dc=com", - "cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Roly Odden,ou=Management,dc=bitwarden,dc=com", - "cn=Junie Siegel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karna Nairn,ou=Peons,dc=bitwarden,dc=com", - "cn=Pascale Innes,ou=Peons,dc=bitwarden,dc=com", - "cn=Darbie Scalabrini,ou=Peons,dc=bitwarden,dc=com", - "cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elsi Toles,ou=Administrative,dc=bitwarden,dc=com", - "cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Steinar Royster,ou=Administrative,dc=bitwarden,dc=com", - "cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sono Wissler,ou=Administrative,dc=bitwarden,dc=com", - "cn=Par Fani,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Matti Beisel,ou=Peons,dc=bitwarden,dc=com", - "cn=Regine Sergi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Oralia Daymond,ou=Payroll,dc=bitwarden,dc=com", - "cn=Adey Mein,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bettina Petree,ou=Management,dc=bitwarden,dc=com", - "cn=Sisile Larner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Roseann Sheldon,ou=Peons,dc=bitwarden,dc=com", - "cn=Irc Grona,ou=Administrative,dc=bitwarden,dc=com", - "cn=Michael Verrenneau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Walley Gostanian,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emogene Assistance,ou=Management,dc=bitwarden,dc=com", - "cn=Florance Berna,ou=Payroll,dc=bitwarden,dc=com", - "cn=Barry Holcombe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Grietje Gilstorf,ou=Management,dc=bitwarden,dc=com", - "cn=Una Shang,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gina Pilotte,ou=Management,dc=bitwarden,dc=com", - "cn=Rolando Yancey,ou=Management,dc=bitwarden,dc=com", - "cn=Ardeen Porter,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gajendra Dery,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jere Jasmin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Caritta Verma,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Edric Tilk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Janelle Downes,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rebeca Dicaprio,ou=Management,dc=bitwarden,dc=com", - "cn=Everett Pittam,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden,dc=com", - "cn=Erwin Hlady,ou=Management,dc=bitwarden,dc=com", - "cn=Shiu Masty,ou=Peons,dc=bitwarden,dc=com", - "cn=Terrijo Roth,ou=Peons,dc=bitwarden,dc=com", - "cn=Venus Fischetti,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hewlet Noorani,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pansy Ochman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Henny Recabarren,ou=Product Development,dc=bitwarden,dc=com", - "cn=Humberto Gottschalk,ou=Peons,dc=bitwarden,dc=com", - "cn=Vernon Planthara,ou=Administrative,dc=bitwarden,dc=com", - "cn=Clo Upshaw,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Afton Sykes,ou=Peons,dc=bitwarden,dc=com", - "cn=Vesna Kowalski,ou=Management,dc=bitwarden,dc=com", - "cn=Prissie Rintala,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Virginia Telfer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ginette Brans,ou=Peons,dc=bitwarden,dc=com", - "cn=Marsie OConner,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Amandip Habib,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ezella Pesik,ou=Product Development,dc=bitwarden,dc=com", - "cn=Liv Tabl,ou=Management,dc=bitwarden,dc=com", - "cn=Joni McClarren,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leonida Stefanac,ou=Peons,dc=bitwarden,dc=com", - "cn=Viviyan Baird,ou=Product Development,dc=bitwarden,dc=com", - "cn=Robbin Meriwether,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gwennyth Basser,ou=Administrative,dc=bitwarden,dc=com", - "cn=Binh Aversa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marlee Jawor,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Antonio Risdal,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dieter Dickinson,ou=Peons,dc=bitwarden,dc=com", - "cn=Gilda Shnay,ou=Product Development,dc=bitwarden,dc=com", - "cn=Agnese Herrington,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rebekkah Meleski,ou=Peons,dc=bitwarden,dc=com", - "cn=Noelyn Blander,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tamera Rennie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Portia Cruzado,ou=Administrative,dc=bitwarden,dc=com", - "cn=Robinett Samson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sherman Frodsham,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maury Jansen,ou=Management,dc=bitwarden,dc=com", - "cn=Tilly Ocampo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pauli Capes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Augusta Subick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jastinder Gysel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jason Loveless,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pamella Trudel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lucina Volfe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sheena Chung,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Andriana Myers,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Henk Goin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Leese DeWiele,ou=Administrative,dc=bitwarden,dc=com", - "cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Emp Lenior,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lorine Skaret,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rora Duthie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aubrette Carlson,ou=Peons,dc=bitwarden,dc=com", - "cn=Delisle Moledina,ou=Management,dc=bitwarden,dc=com", - "cn=Chloris Fogle,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hadria Keung,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sarena Sandhar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shina Vilhan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Candace Nadler,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Osiris Rtpbuild,ou=Management,dc=bitwarden,dc=com", - "cn=Patt Lampe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ola Fricks,ou=Management,dc=bitwarden,dc=com", - "cn=Jobie Brassem,ou=Product Development,dc=bitwarden,dc=com", - "cn=Amarjit Shull,ou=Management,dc=bitwarden,dc=com", - "cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marriet Grau,ou=Peons,dc=bitwarden,dc=com", - "cn=Kellsie Tilmon,ou=Management,dc=bitwarden,dc=com", - "cn=Deloria Tulk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Julianna Towsley,ou=Peons,dc=bitwarden,dc=com", - "cn=Power Surazski,ou=Administrative,dc=bitwarden,dc=com", - "cn=YueMin Dube,ou=Peons,dc=bitwarden,dc=com", - "cn=Gerald Hamel,ou=Management,dc=bitwarden,dc=com", - "cn=Cami Hanley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Silvana Barakat,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maxey Bulman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dzung Newsom,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mats DMSDB,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kevyn Minai,ou=Management,dc=bitwarden,dc=com", - "cn=Dhanvinder Biss,ou=Peons,dc=bitwarden,dc=com", - "cn=Joan Badowski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Libby Sarna,ou=Peons,dc=bitwarden,dc=com", - "cn=Madalena Farnham,ou=Administrative,dc=bitwarden,dc=com", - "cn=Peder Chowhan,ou=Management,dc=bitwarden,dc=com", - "cn=Bird Bluschke,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kaycee Wiggins,ou=Management,dc=bitwarden,dc=com", - "cn=Fwpreg Daymond,ou=Peons,dc=bitwarden,dc=com", - "cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jobi Bryant,ou=Payroll,dc=bitwarden,dc=com", - "cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Modesta WAR,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Eveleen Jasti,ou=Peons,dc=bitwarden,dc=com", - "cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Toney Singh,ou=Peons,dc=bitwarden,dc=com", - "cn=Amelia Altekar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Audivox Duncan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eliezer Rheault,ou=Management,dc=bitwarden,dc=com", - "cn=KimMinh Lenehan,ou=Peons,dc=bitwarden,dc=com", - "cn=Viole Kirkland,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden,dc=com", - "cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden,dc=com", - "cn=Bahram Strauch,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jagdev Paulett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Graham Tanner,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Beau Watkins,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Durali Pickens,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jorry Yost,ou=Management,dc=bitwarden,dc=com", - "cn=Laser DeNest,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chanda Leenher,ou=Management,dc=bitwarden,dc=com", - "cn=Luke Catlett,ou=Management,dc=bitwarden,dc=com", - "cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden,dc=com", - "cn=Femke Krikorian,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden,dc=com", - "cn=Evert Traynor,ou=Management,dc=bitwarden,dc=com", - "cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tess Ketchum,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jordanna Cacha,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brietta Dages,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Natver Alleva,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden,dc=com", - "cn=Phan Rimsa,ou=Product Development,dc=bitwarden,dc=com", - "cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Thakor Brandon,ou=Peons,dc=bitwarden,dc=com", - "cn=Samir Guerin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Colene Revis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mike Funderburg,ou=Peons,dc=bitwarden,dc=com", - "cn=Rozalie Sassine,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jinny Siddell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kai Etemad,ou=Peons,dc=bitwarden,dc=com", - "cn=Odette Wagle,ou=Payroll,dc=bitwarden,dc=com", - "cn=Josephine Leon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gale Leder,ou=Product Development,dc=bitwarden,dc=com", - "cn=Danny Mau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alma McRann,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Martijn Groth,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Allyson Boroski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Janice Powney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marys Marleau,ou=Peons,dc=bitwarden,dc=com", - "cn=Colin Langelier,ou=Management,dc=bitwarden,dc=com", - "cn=Cornel Delzer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Liane Pappu,ou=Peons,dc=bitwarden,dc=com", - "cn=Ollie Mir,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tiffy Moyers,ou=Management,dc=bitwarden,dc=com", - "cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Catja Taralp,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jey Musick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kamil Doi,ou=Management,dc=bitwarden,dc=com", - "cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lelia Gougeon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mamie Godfrey,ou=Management,dc=bitwarden,dc=com", - "cn=Ibby Dragan,ou=Peons,dc=bitwarden,dc=com", - "cn=Krier Rouer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Neila Donleycott,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vithit Toothman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brear Wiklund,ou=Payroll,dc=bitwarden,dc=com", - "cn=Joletta Chaaban,ou=Payroll,dc=bitwarden,dc=com", - "cn=Allan Kpodzo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alvin Fleishman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Amos Nadeau,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden,dc=com", - "cn=Astra McPhail,ou=Management,dc=bitwarden,dc=com", - "cn=Miguelita Lukie,ou=Management,dc=bitwarden,dc=com", - "cn=Joellen Rummans,ou=Peons,dc=bitwarden,dc=com", - "cn=Blythe Bessette,ou=Management,dc=bitwarden,dc=com", - "cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden,dc=com", - "cn=Felipe Dassie,ou=Peons,dc=bitwarden,dc=com", - "cn=Renu Dermardiros,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yen Sails,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Claudie Willett,ou=Management,dc=bitwarden,dc=com", - "cn=Antonia Kashef,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leta Weeks,ou=Product Development,dc=bitwarden,dc=com", - "cn=Saraann Ku,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Malgosia Allaman,ou=Peons,dc=bitwarden,dc=com", - "cn=Dorri Brickey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gilles Tullo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stacia Wever,ou=Administrative,dc=bitwarden,dc=com", - "cn=Herman Georgiou,ou=Management,dc=bitwarden,dc=com", - "cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Clarey Shibata,ou=Management,dc=bitwarden,dc=com", - "cn=Elyn Witzmann,ou=Peons,dc=bitwarden,dc=com", - "cn=Corry Lasch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ilsa Reeder,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shaib Fysh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Goldarina Delaat,ou=Administrative,dc=bitwarden,dc=com", - "cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Con Liskoff,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dannie Belaire,ou=Payroll,dc=bitwarden,dc=com", - "cn=Syyed Nasato,ou=Payroll,dc=bitwarden,dc=com", - "cn=Paloma Meijer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anestassia Pilch,ou=Product Development,dc=bitwarden,dc=com", - "cn=Caroline Weakley,ou=Management,dc=bitwarden,dc=com", - "cn=Brad Widener,ou=Peons,dc=bitwarden,dc=com", - "cn=Nga Holvey,ou=Payroll,dc=bitwarden,dc=com", - "cn=Breanne Hatten,ou=Peons,dc=bitwarden,dc=com", - "cn=Babita Yuhn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sanjoy Burbage,ou=Management,dc=bitwarden,dc=com", - "cn=Hettie Grassmann,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jacques Lobello,ou=Administrative,dc=bitwarden,dc=com", - "cn=Susi Vezina,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hynek Bergland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Brenton Zou,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mohamed Popper,ou=Peons,dc=bitwarden,dc=com", - "cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden,dc=com", - "cn=Suzan Brisebois,ou=Administrative,dc=bitwarden,dc=com", - "cn=Violette Capostagno,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden,dc=com", - "cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liem Dalloste,ou=Management,dc=bitwarden,dc=com", - "cn=Bernita Hui,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mab Bhatia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bamby Ressner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nadir Harold,ou=Administrative,dc=bitwarden,dc=com", - "cn=Norikazu Loughery,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gerda Cuthill,ou=Payroll,dc=bitwarden,dc=com", - "cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Blakeley Moynihan,ou=Management,dc=bitwarden,dc=com", - "cn=Ronni DMSDB,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Desdemona Howes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Micaela Grelck,ou=Administrative,dc=bitwarden,dc=com", - "cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Moria Brandstadt,ou=Peons,dc=bitwarden,dc=com", - "cn=Raf VanAlphen,ou=Management,dc=bitwarden,dc=com", - "cn=Jianli Seniuk,ou=Management,dc=bitwarden,dc=com", - "cn=Stephani Wheatley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Misty Jamison,ou=Product Development,dc=bitwarden,dc=com", - "cn=Liduine Brindley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Inam Cripps,ou=Payroll,dc=bitwarden,dc=com", - "cn=Megumi Sattler,ou=Management,dc=bitwarden,dc=com", - "cn=Marlies Zalokar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tiphanie Banik,ou=Management,dc=bitwarden,dc=com", - "cn=Rosene Couse,ou=Payroll,dc=bitwarden,dc=com", - "cn=Adoree Sevilla,ou=Product Development,dc=bitwarden,dc=com", - "cn=Caye Clinton,ou=Management,dc=bitwarden,dc=com", - "cn=Ernie Waybright,ou=Product Development,dc=bitwarden,dc=com", - "cn=Doc Hamlett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Abdul Peschke,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cordi Systest,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jania Mong,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kristi Plato,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Simeon Schober,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leyton Artuso,ou=Payroll,dc=bitwarden,dc=com", - "cn=Di Corritore,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Norbert Meubus,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Allsun Briard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rec Desjardins,ou=Administrative,dc=bitwarden,dc=com", - "cn=Daveen Portelance,ou=Administrative,dc=bitwarden,dc=com", - "cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Christel Lebon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aura Kloth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Laser Totino,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mike Engman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marijo Tranter,ou=Peons,dc=bitwarden,dc=com", - "cn=Mainoo Fran,ou=Peons,dc=bitwarden,dc=com", - "cn=Janos Coulman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lacey Benfield,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Harrie Devenyi,ou=Management,dc=bitwarden,dc=com", - "cn=Lishe Tatum,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gena Skwarok,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=PierreAndre Crucefix,ou=Management,dc=bitwarden,dc=com", - "cn=Ree Smits,ou=Product Development,dc=bitwarden,dc=com", - "cn=Panch Talbot,ou=Product Development,dc=bitwarden,dc=com", - "cn=Janean Wittich,ou=Payroll,dc=bitwarden,dc=com", - "cn=Notley Loyola,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Caitlin Grover,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cissy Paris,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kedah Hedman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Susy Simard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nahum Mofina,ou=Payroll,dc=bitwarden,dc=com", - "cn=Patti Simcoe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Clarisse McArthur,ou=Administrative,dc=bitwarden,dc=com", - "cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dwight Naujoks,ou=Peons,dc=bitwarden,dc=com", - "cn=Melodee Buzzell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Schouwen Chahal,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kanya Reuben,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marji Corvo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Annarbor Zitko,ou=Management,dc=bitwarden,dc=com", - "cn=Genovera Thibodeaux,ou=Management,dc=bitwarden,dc=com", - "cn=Aleen Gure,ou=Peons,dc=bitwarden,dc=com", - "cn=Trever Jowett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Concettina Cegelski,ou=Peons,dc=bitwarden,dc=com", - "cn=Eleen Lew,ou=Management,dc=bitwarden,dc=com", - "cn=Minna Reddington,ou=Product Development,dc=bitwarden,dc=com", - "cn=Stateson Benning,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emil Pavlic,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kassia Newnam,ou=Payroll,dc=bitwarden,dc=com", - "cn=Clarke Angeli,ou=Administrative,dc=bitwarden,dc=com", - "cn=Flor Rabon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Damian Berning,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cristal Lum,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Palme Lystuik,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shina Tremaine,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Muire Cencier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Brinn Weinbender,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Candee Gozen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Julienne Spencer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Benny Kimm,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kyle Pape,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hetti Maciejewski,ou=Management,dc=bitwarden,dc=com", - "cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Peder Bevington,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Royce Kerr,ou=Payroll,dc=bitwarden,dc=com", - "cn=Madelon Armitage,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sohayla Resnick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Teri Fabry,ou=Administrative,dc=bitwarden,dc=com", - "cn=Deina Martincello,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aleen Ayre,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roseline Risher,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Reuben Lychak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kelsy Rozier,ou=Administrative,dc=bitwarden,dc=com", - "cn=Herronald Walta,ou=Management,dc=bitwarden,dc=com", - "cn=Oralee Shiflett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maurice Coe,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Greg Candelario,ou=Management,dc=bitwarden,dc=com", - "cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Genny Horemans,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Willeke Gagnon,ou=Management,dc=bitwarden,dc=com", - "cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nijen Testa,ou=Management,dc=bitwarden,dc=com", - "cn=Binni Vasile,ou=Administrative,dc=bitwarden,dc=com", - "cn=Thor Mamoulides,ou=Peons,dc=bitwarden,dc=com", - "cn=Merridie Charlinski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sundaram Trocchi,ou=Management,dc=bitwarden,dc=com", - "cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Divine Sebeh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tiff Mader,ou=Peons,dc=bitwarden,dc=com", - "cn=Karly Adornato,ou=Management,dc=bitwarden,dc=com", - "cn=Petrina Bovey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Andie Subasinghe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kimiko Florescu,ou=Management,dc=bitwarden,dc=com", - "cn=Agnesse Kiger,ou=Management,dc=bitwarden,dc=com", - "cn=Trude Hanham,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden,dc=com", - "cn=Greta Timler,ou=Peons,dc=bitwarden,dc=com", - "cn=Bobbye Ludviksen,ou=Management,dc=bitwarden,dc=com", - "cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Adiana Tohama,ou=Administrative,dc=bitwarden,dc=com", - "cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hildagarde Neumann,ou=Peons,dc=bitwarden,dc=com", - "cn=Sibylla Younger,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jodie Eckstein,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rea Barolet,ou=Management,dc=bitwarden,dc=com", - "cn=Rustu Paige,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Davinder Caves,ou=Product Development,dc=bitwarden,dc=com", - "cn=Celyne Settels,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marina Higham,ou=Payroll,dc=bitwarden,dc=com", - "cn=Augusto Gawargy,ou=Peons,dc=bitwarden,dc=com", - "cn=Hudai Popp,ou=Administrative,dc=bitwarden,dc=com", - "cn=Babak Tussey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lionel Childers,ou=Administrative,dc=bitwarden,dc=com", - "cn=Robena McDevitt,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gael Elias,ou=Peons,dc=bitwarden,dc=com", - "cn=Floria Harless,ou=Management,dc=bitwarden,dc=com", - "cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kandy Chanco,ou=Peons,dc=bitwarden,dc=com", - "cn=Vanya Pelissier,ou=Management,dc=bitwarden,dc=com", - "cn=Noubar Shute,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eliza Roney,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Els Sridhar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Masood Kemppainen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Karisa Botting,ou=Payroll,dc=bitwarden,dc=com", - "cn=Francisco Dallaire,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jordana Hersee,ou=Peons,dc=bitwarden,dc=com", - "cn=Gillan Hufana,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shep Schroeder,ou=Administrative,dc=bitwarden,dc=com", - "cn=Masahiro Haughey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mariele Puukila,ou=Management,dc=bitwarden,dc=com", - "cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=An Assenza,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nerta Huitt,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dela Gilliam,ou=Product Development,dc=bitwarden,dc=com", - "cn=Edric Dolginoff,ou=Product Development,dc=bitwarden,dc=com", - "cn=Livvy Flores,ou=Administrative,dc=bitwarden,dc=com", - "cn=Flossi Fumerton,ou=Management,dc=bitwarden,dc=com", - "cn=Fanni Noah,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tobe Blostein,ou=Payroll,dc=bitwarden,dc=com", - "cn=Madlen JodoinStJean,ou=Management,dc=bitwarden,dc=com", - "cn=Felipe McBroom,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Stella Hoare,ou=Human Resources,dc=bitwarden,dc=com", - "cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anthony Pringle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alexina Buschelman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Floris Decelles,ou=Peons,dc=bitwarden,dc=com", - "cn=Bella Jayamanne,ou=Product Development,dc=bitwarden,dc=com", - "cn=Erminie Normandin,ou=Management,dc=bitwarden,dc=com", - "cn=Niz Colucci,ou=Management,dc=bitwarden,dc=com", - "cn=Muni Strock,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aybars Lavers,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Careers DeSalis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anna Meckley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lilith Stejskal,ou=Payroll,dc=bitwarden,dc=com", - "cn=Prudy Australia,ou=Payroll,dc=bitwarden,dc=com", - "cn=Stevena Alberse,ou=Payroll,dc=bitwarden,dc=com", - "cn=Janson Finak,ou=Peons,dc=bitwarden,dc=com", - "cn=Trudy Hillring,ou=Administrative,dc=bitwarden,dc=com", - "cn=Albert Rolfes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Coletta Azad,ou=Management,dc=bitwarden,dc=com", - "cn=Celestyna DeVries,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Darda Mitrani,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Burton Falquero,ou=Management,dc=bitwarden,dc=com", - "cn=Lishe Suess,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Adora Droste,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Paper Blakeslee,ou=Administrative,dc=bitwarden,dc=com", - "cn=Teena Klavkalns,ou=Administrative,dc=bitwarden,dc=com", - "cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden,dc=com", - "cn=ChiKwan Lakhani,ou=Management,dc=bitwarden,dc=com", - "cn=Niz Tassy,ou=Peons,dc=bitwarden,dc=com", - "cn=Marg Cavanagh,ou=Peons,dc=bitwarden,dc=com", - "cn=Anthony Luyten,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mira Hinkel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Florette Amos,ou=Payroll,dc=bitwarden,dc=com", - "cn=Clara Maglione,ou=Management,dc=bitwarden,dc=com", - "cn=Kizzie Leang,ou=Peons,dc=bitwarden,dc=com", - "cn=Celestia Tobias,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jet McGregor,ou=Management,dc=bitwarden,dc=com", - "cn=Kristien Brokaw,ou=Peons,dc=bitwarden,dc=com", - "cn=Karole Su,ou=Payroll,dc=bitwarden,dc=com", - "cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden,dc=com", - "cn=Laureen Shrieves,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dalila Hassold,ou=Management,dc=bitwarden,dc=com", - "cn=Miro Trent,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ashley Woessner,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Orelia Nasir,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yoshiaki Blann,ou=Peons,dc=bitwarden,dc=com", - "cn=Jolie Dropin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mami Badjari,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nash Enstone,ou=Peons,dc=bitwarden,dc=com", - "cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Binny Strannemar,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dorri Auker,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Beverie Wada,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vivian Skaftason,ou=Peons,dc=bitwarden,dc=com", - "cn=Fayth Marr,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rowan Reichow,ou=Payroll,dc=bitwarden,dc=com", - "cn=Clementia Pesik,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sofie Baugnon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Astrid Montoya,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden,dc=com", - "cn=Grover Dehoff,ou=Management,dc=bitwarden,dc=com", - "cn=Nerty Nair,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rene McKearney,ou=Peons,dc=bitwarden,dc=com", - "cn=Pat Libadmin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kanu Slozil,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cecile Shupe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fahim Kandra,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gerald Laroche,ou=Janitorial,dc=bitwarden,dc=com", - "cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Devon Pesold,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Daile Burger,ou=Administrative,dc=bitwarden,dc=com", - "cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tricord Gumb,ou=Peons,dc=bitwarden,dc=com", - "cn=Shena Atteridge,ou=Product Development,dc=bitwarden,dc=com", - "cn=Silvester Piette,ou=Administrative,dc=bitwarden,dc=com", - "cn=Amnon Gause,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clemente Eva,ou=Product Development,dc=bitwarden,dc=com", - "cn=Donnajean Carron,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ailene Chavez,ou=Payroll,dc=bitwarden,dc=com", - "cn=Annet Leshowitz,ou=Management,dc=bitwarden,dc=com", - "cn=Willy Jimenez,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Teddi Arai,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tammy McBeth,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Waverly Cadshare,ou=Administrative,dc=bitwarden,dc=com", - "cn=JeanLouis Okura,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tonia Khosla,ou=Peons,dc=bitwarden,dc=com", - "cn=Binni Rasmussen,ou=Management,dc=bitwarden,dc=com", - "cn=Herb Stansbury,ou=Peons,dc=bitwarden,dc=com", - "cn=Ralina Fouke,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Merridie Vankooten,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden,dc=com", - "cn=Millie Doda,ou=Management,dc=bitwarden,dc=com", - "cn=Alexia Layton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lottie Filpus,ou=Management,dc=bitwarden,dc=com", - "cn=Tommie Craib,ou=Peons,dc=bitwarden,dc=com", - "cn=Narrima Cavnar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Walt Gentes,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gay Acelvari,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Raeann Laws,ou=Peons,dc=bitwarden,dc=com", - "cn=YuKai Goodrow,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tad Caceres,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dorreen Dewit,ou=Administrative,dc=bitwarden,dc=com", - "cn=Francisca Griswold,ou=Management,dc=bitwarden,dc=com", - "cn=Motaz Metz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lorry Suprick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cassey Precoda,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kevina Zauhar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Diandra Pafilis,ou=Management,dc=bitwarden,dc=com", - "cn=Shaylah Poyner,ou=Peons,dc=bitwarden,dc=com", - "cn=Agenia Joshi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Imre Farag,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alina Naphan,ou=Management,dc=bitwarden,dc=com", - "cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Twila Billard,ou=Management,dc=bitwarden,dc=com", - "cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ari Windom,ou=Product Development,dc=bitwarden,dc=com", - "cn=Opaline Gomes,ou=Management,dc=bitwarden,dc=com", - "cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden,dc=com", - "cn=Svend Bongers,ou=Administrative,dc=bitwarden,dc=com", - "cn=Suzette Burkey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Klazina Grabowski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jester Alink,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Andre Hatzenbichler,ou=Management,dc=bitwarden,dc=com", - "cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Raudres Negandhi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marj Posta,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden,dc=com", - "cn=WaiMan Stillwell,ou=Peons,dc=bitwarden,dc=com", - "cn=Audi Adamski,ou=Peons,dc=bitwarden,dc=com", - "cn=Earl Stanton,ou=Peons,dc=bitwarden,dc=com", - "cn=Reggie Venturini,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jannelle Berro,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marya Buford,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kally Tinney,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Verile Maksoud,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shaun Sandhu,ou=Management,dc=bitwarden,dc=com", - "cn=Michal Andrew,ou=Administrative,dc=bitwarden,dc=com", - "cn=Valerie Efthim,ou=Peons,dc=bitwarden,dc=com", - "cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sadella Loggins,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden,dc=com", - "cn=HackHoo Hunter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Meter Hickerson,ou=Peons,dc=bitwarden,dc=com", - "cn=MaryKay Lan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Giana Pierson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shiela Anthonissen,ou=Management,dc=bitwarden,dc=com", - "cn=Toby Winterberg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Leticia Metheny,ou=Management,dc=bitwarden,dc=com", - "cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden,dc=com", - "cn=Raven Tuan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leddy Kochis,ou=Peons,dc=bitwarden,dc=com", - "cn=Niek Tripp,ou=Administrative,dc=bitwarden,dc=com", - "cn=Curtis Caglayan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eladio Nadler,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kameko Ayres,ou=Product Development,dc=bitwarden,dc=com", - "cn=Florinda Templeton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Omayma Halula,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shellie Blethen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Corliss Pharris,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mareah Gooderham,ou=Product Development,dc=bitwarden,dc=com", - "cn=Olwen Yelvington,ou=Management,dc=bitwarden,dc=com", - "cn=Maiga Buder,ou=Product Development,dc=bitwarden,dc=com", - "cn=Madlen Booking,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darell Liang,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Neena Mayes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hannie Robieux,ou=Payroll,dc=bitwarden,dc=com", - "cn=Regine Iantaffi,ou=Peons,dc=bitwarden,dc=com", - "cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gladi Steffes,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kalli Chanonat,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bob Gronwall,ou=Peons,dc=bitwarden,dc=com", - "cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden,dc=com", - "cn=Faunie Moroz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Avrit Abrahim,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bernard Placido,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Flory Ganadry,ou=Management,dc=bitwarden,dc=com", - "cn=Berti Steski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Charline Fross,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bonnar Burns,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kate Scorziello,ou=Administrative,dc=bitwarden,dc=com", - "cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Olenka Tota,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ceil Foubert,ou=Human Resources,dc=bitwarden,dc=com", - "cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Devinne Zanga,ou=Peons,dc=bitwarden,dc=com", - "cn=Letti Boocock,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Charin Fallah,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Clea Astorino,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cassandry Hilton,ou=Peons,dc=bitwarden,dc=com", - "cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karlene Homan,ou=Management,dc=bitwarden,dc=com", - "cn=Anjanette McCaffity,ou=Management,dc=bitwarden,dc=com", - "cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Micky Brodowski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Neetu Miles,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rhodia Irick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Phat Mecteau,ou=Peons,dc=bitwarden,dc=com", - "cn=Tzung Winfield,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Amandie Britman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Brittani Guitard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hubert Majors,ou=Payroll,dc=bitwarden,dc=com", - "cn=KinYee Amini,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Riva Malott,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gizela Fenez,ou=Peons,dc=bitwarden,dc=com", - "cn=Thompson Santos,ou=Payroll,dc=bitwarden,dc=com", - "cn=Student Anker,ou=Peons,dc=bitwarden,dc=com", - "cn=Carlita Flores,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Domenick Thomey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lanie Wayler,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roxi Leonida,ou=Administrative,dc=bitwarden,dc=com", - "cn=Isin Paczynski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Condell MacPhail,ou=Administrative,dc=bitwarden,dc=com", - "cn=Swd Braganza,ou=Management,dc=bitwarden,dc=com", - "cn=Herbie Bilton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tas Hagerty,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cristin Pambianchi,ou=Management,dc=bitwarden,dc=com", - "cn=Deann Lutz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Datha Apter,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aretha Kursell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Norry Trpisovsky,ou=Peons,dc=bitwarden,dc=com", - "cn=Ladell Doig,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mer Hasan,ou=Peons,dc=bitwarden,dc=com", - "cn=Therine Solman,ou=Peons,dc=bitwarden,dc=com", - "cn=Garnet Gooch,ou=Administrative,dc=bitwarden,dc=com", - "cn=Colli Magee,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sammy Topol,ou=Management,dc=bitwarden,dc=com", - "cn=Chelsae Cacha,ou=Management,dc=bitwarden,dc=com", - "cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Melvin Stanton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Annabella Fisher,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pelly Difilippo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Virginia Clites,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lionel Kahil,ou=Management,dc=bitwarden,dc=com", - "cn=Beatrix Weger,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Roxanne Klimon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ernestine Campara,ou=Management,dc=bitwarden,dc=com", - "cn=Gaal Jcst,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nancy Cesario,ou=Management,dc=bitwarden,dc=com", - "cn=Rosita Carella,ou=Peons,dc=bitwarden,dc=com", - "cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Keven Cordy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wan Savard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jen Kamoun,ou=Administrative,dc=bitwarden,dc=com", - "cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zitella Paylor,ou=Administrative,dc=bitwarden,dc=com", - "cn=Logan Blaylock,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Merunix Walkley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kaja Runkel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leia Samuel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Catha Matsunaga,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Luc Harless,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Katja Firtos,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden,dc=com", - "cn=Mechelle Khawar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Channa Abernethy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Benita Lathrop,ou=Management,dc=bitwarden,dc=com", - "cn=Zelda Naem,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bettina Kudas,ou=Management,dc=bitwarden,dc=com", - "cn=Bettye Stern,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Janice Mattes,ou=Management,dc=bitwarden,dc=com", - "cn=Indiana Cobo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lan Galbraith,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joey Godcharles,ou=Management,dc=bitwarden,dc=com", - "cn=Anastasia Sunstrum,ou=Management,dc=bitwarden,dc=com", - "cn=Dyan Reller,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yih DeCecco,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Leese Paul,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nani Dedas,ou=Payroll,dc=bitwarden,dc=com", - "cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sari Rettie,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Etty Lowther,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Toss Basa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Naohiko Fradette,ou=Administrative,dc=bitwarden,dc=com", - "cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mathew Rodkey,ou=Peons,dc=bitwarden,dc=com", - "cn=Sherry Maness,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Delphinia Brehm,ou=Product Development,dc=bitwarden,dc=com", - "cn=Roselin Payn,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Arline Fryer,ou=Management,dc=bitwarden,dc=com", - "cn=Piper Lesperance,ou=Peons,dc=bitwarden,dc=com", - "cn=Mindy Herring,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vonnie Bullard,ou=Peons,dc=bitwarden,dc=com", - "cn=Lotti Gutcher,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sheldon Overton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Celestine Zargham,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marv Regier,ou=Product Development,dc=bitwarden,dc=com", - "cn=Teddi Behler,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pascale Lawrie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Class Focht,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Leonida Raha,ou=Management,dc=bitwarden,dc=com", - "cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ree Goodier,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Raj Mahlig,ou=Peons,dc=bitwarden,dc=com", - "cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ruchel Jobs,ou=Management,dc=bitwarden,dc=com", - "cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Fanchette Wittich,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lorie Boucher,ou=Peons,dc=bitwarden,dc=com", - "cn=MingChang Presner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dierdre Rehel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ulrica Benda,ou=Administrative,dc=bitwarden,dc=com", - "cn=Brechtje Revah,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Howden Hoxie,ou=Management,dc=bitwarden,dc=com", - "cn=Marjory Hardin,ou=Management,dc=bitwarden,dc=com", - "cn=Kac Geuder,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Conchita Borek,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carter Billard,ou=Peons,dc=bitwarden,dc=com", - "cn=Alison Culberson,ou=Management,dc=bitwarden,dc=com", - "cn=Dev Lynham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lucie Longhenry,ou=Product Development,dc=bitwarden,dc=com", - "cn=Somsak Breault,ou=Administrative,dc=bitwarden,dc=com", - "cn=Regina Astor,ou=Peons,dc=bitwarden,dc=com", - "cn=Idalia Krauel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lolly Mattson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Corinna Jesshope,ou=Administrative,dc=bitwarden,dc=com", - "cn=Guinevere Bower,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden,dc=com", - "cn=Frederic Kemish,ou=Payroll,dc=bitwarden,dc=com", - "cn=Barb Mandel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rochell Muise,ou=Management,dc=bitwarden,dc=com", - "cn=Thea Atteridge,ou=Administrative,dc=bitwarden,dc=com", - "cn=Theressa Marks,ou=Management,dc=bitwarden,dc=com", - "cn=Agna Ntelpac,ou=Peons,dc=bitwarden,dc=com", - "cn=Peder Grewal,ou=Peons,dc=bitwarden,dc=com", - "cn=Melony Nahas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ileana Ude,ou=Peons,dc=bitwarden,dc=com", - "cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fscocos Azari,ou=Payroll,dc=bitwarden,dc=com", - "cn=Charmaine Rahmany,ou=Peons,dc=bitwarden,dc=com", - "cn=Ayn Odum,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden,dc=com", - "cn=Norm Berrisford,ou=Peons,dc=bitwarden,dc=com", - "cn=Elly Nagarur,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lenette Sandness,ou=Management,dc=bitwarden,dc=com", - "cn=Emyle Fuqua,ou=Management,dc=bitwarden,dc=com", - "cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Elysia McDuffie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lorilee Projects,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Amalee Borg,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden,dc=com", - "cn=ThanhHung McAdams,ou=Management,dc=bitwarden,dc=com", - "cn=Jessa Simmons,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Timothea Culverhouse,ou=Peons,dc=bitwarden,dc=com", - "cn=Dorice Op,ou=Management,dc=bitwarden,dc=com", - "cn=Estrellita Haney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maddalena Hammermeister,ou=Management,dc=bitwarden,dc=com", - "cn=Alfonso Benyon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden,dc=com", - "cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alfy McBroom,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fina Hoctor,ou=Peons,dc=bitwarden,dc=com", - "cn=Ardene Cuu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cristie Madani,ou=Peons,dc=bitwarden,dc=com", - "cn=Stephane Zorzi,ou=Management,dc=bitwarden,dc=com", - "cn=Ellen Kruusement,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Arnie Vickers,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tak Kuhlkamp,ou=Management,dc=bitwarden,dc=com", - "cn=Linet Gartshore,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dina Satta,ou=Product Development,dc=bitwarden,dc=com", - "cn=Candis Bothwell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Daphene Minck,ou=Administrative,dc=bitwarden,dc=com", - "cn=Adan Duncan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Willa Trisko,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Katalin Totten,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=CostasDinos Labrador,ou=Management,dc=bitwarden,dc=com", - "cn=Andrzej Coulman,ou=Peons,dc=bitwarden,dc=com", - "cn=Sheryl Perrin,ou=Peons,dc=bitwarden,dc=com", - "cn=Emma Mullaney,ou=Management,dc=bitwarden,dc=com", - "cn=Son Beneda,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Grey Mathis,ou=Management,dc=bitwarden,dc=com", - "cn=Briney McReady,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden,dc=com", - "cn=Erle Gravitt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tresrch Valko,ou=Management,dc=bitwarden,dc=com", - "cn=Cherey Braginetz,ou=Management,dc=bitwarden,dc=com", - "cn=Annadiane Kok,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ozay Dulin,ou=Management,dc=bitwarden,dc=com", - "cn=Avtar Markle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rodi Pettinger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anett Gach,ou=Management,dc=bitwarden,dc=com", - "cn=Golda Hanington,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marlyne Shein,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Doortje Kennedy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jacenta Pufpaff,ou=Management,dc=bitwarden,dc=com", - "cn=Kirit Steede,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Declan McQuaig,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fairy Soyster,ou=Administrative,dc=bitwarden,dc=com", - "cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shashi Vitaglian,ou=Management,dc=bitwarden,dc=com", - "cn=Henri Challice,ou=Peons,dc=bitwarden,dc=com", - "cn=Moreen CSR,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Geralene Sabri,ou=Payroll,dc=bitwarden,dc=com", - "cn=Melhem Sherrer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Coors Lavarnway,ou=Product Development,dc=bitwarden,dc=com", - "cn=Perrine Kursell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alane Lou,ou=Management,dc=bitwarden,dc=com", - "cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Demet Ince,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bev Lineham,ou=Payroll,dc=bitwarden,dc=com", - "cn=Corinna Thorson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Daniela Rizk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mentor Endsley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=PeyKee Rusin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wojciech Zorony,ou=Peons,dc=bitwarden,dc=com", - "cn=Juliane Lafata,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden,dc=com", - "cn=Buck Willoughby,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Atsushi Bible,ou=Administrative,dc=bitwarden,dc=com", - "cn=Veen Graibe,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Juli Poe,ou=Management,dc=bitwarden,dc=com", - "cn=Keys Foos,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hanneke Weil,ou=Janitorial,dc=bitwarden,dc=com", - "cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Narrima Kaplan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nellie Guth,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ermengarde Swact,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carmelo Holley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Virgie Ensign,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vittorio Msg,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ragui Radford,ou=Management,dc=bitwarden,dc=com", - "cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amalia Giertych,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bert McDougall,ou=Peons,dc=bitwarden,dc=com", - "cn=Cherida Behlen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Willa Brandsen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nancey Piggott,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bui Potesta,ou=Administrative,dc=bitwarden,dc=com", - "cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ivo Dobbs,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brigitta Maskell,ou=Peons,dc=bitwarden,dc=com", - "cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nong Polashock,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gisele Forbes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden,dc=com", - "cn=Madonna Sheu,ou=Management,dc=bitwarden,dc=com", - "cn=Dzung Evans,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hermione Delf,ou=Product Development,dc=bitwarden,dc=com", - "cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Koray Deleon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Korie Swinks,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Wynnie Joyce,ou=Peons,dc=bitwarden,dc=com", - "cn=Teetwo Jarman,ou=Management,dc=bitwarden,dc=com", - "cn=Flss Daquano,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Doc Frederick,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hellmut Harrod,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kelcie Uchida,ou=Product Development,dc=bitwarden,dc=com", - "cn=Oksana Sitler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vitia Dacre,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carly Cencier,ou=Management,dc=bitwarden,dc=com", - "cn=Loc Sochovka,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tonye Lenox,ou=Payroll,dc=bitwarden,dc=com", - "cn=Olly Ooi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Margie Herman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Giustina Farrington,ou=Payroll,dc=bitwarden,dc=com", - "cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Liviu Fisprod,ou=Management,dc=bitwarden,dc=com", - "cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alfons Toothman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ronica Espinosa,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jeane Yuhanna,ou=Peons,dc=bitwarden,dc=com", - "cn=Paulien Misutka,ou=Management,dc=bitwarden,dc=com", - "cn=Humberto Azevedo,ou=Management,dc=bitwarden,dc=com", - "cn=Cissy Benning,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gib Gouhara,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ameline Ikotin,ou=Management,dc=bitwarden,dc=com", - "cn=Johanne Coloads,ou=Administrative,dc=bitwarden,dc=com", - "cn=Germaine Sabri,ou=Management,dc=bitwarden,dc=com", - "cn=Justine Gramiak,ou=Peons,dc=bitwarden,dc=com", - "cn=Selma Coxe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nga Hoag,ou=Janitorial,dc=bitwarden,dc=com", - "cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Claudette Towers,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wilhelmina Yardy,ou=Management,dc=bitwarden,dc=com", - "cn=Farooq Rosche,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elyssa Schvan,ou=Peons,dc=bitwarden,dc=com", - "cn=Phoenix Jims,ou=Human Resources,dc=bitwarden,dc=com", - "cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Melesa Kaypour,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shoji Truelove,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Turus Risto,ou=Management,dc=bitwarden,dc=com", - "cn=Metrics Bartley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Calla Floysvik,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alparslan McAdams,ou=Management,dc=bitwarden,dc=com", - "cn=Tej OSullivan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Melly Plourde,ou=Peons,dc=bitwarden,dc=com", - "cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ara Coules,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden,dc=com", - "cn=Heida Barnett,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marylynne Wolski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mellisa Cormier,ou=Administrative,dc=bitwarden,dc=com", - "cn=Neely Schluter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dorelia Cohrs,ou=Management,dc=bitwarden,dc=com", - "cn=Dede Fernald,ou=Peons,dc=bitwarden,dc=com", - "cn=Real Piitz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Petunia Croteau,ou=Administrative,dc=bitwarden,dc=com", - "cn=Haley Tsonos,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hyacinth Hamner,ou=Management,dc=bitwarden,dc=com", - "cn=Clemence Gardiner,ou=Peons,dc=bitwarden,dc=com", - "cn=Francine Laurich,ou=Management,dc=bitwarden,dc=com", - "cn=Narrima Saucerman,ou=Peons,dc=bitwarden,dc=com", - "cn=Han Cozyn,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Chuck Dorr,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Andre Ashworth,ou=Management,dc=bitwarden,dc=com", - "cn=Edin Kell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Theresa Rendon,ou=Peons,dc=bitwarden,dc=com", - "cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jacenta Byczko,ou=Peons,dc=bitwarden,dc=com", - "cn=Cass Boehms,ou=Management,dc=bitwarden,dc=com", - "cn=Melba Holvey,ou=Peons,dc=bitwarden,dc=com", - "cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cristofaro Beland,ou=Management,dc=bitwarden,dc=com", - "cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden,dc=com", - "cn=Inam Ouzas,ou=Payroll,dc=bitwarden,dc=com", - "cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Quang Austin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kassi Ottosson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Christian Bradlow,ou=Payroll,dc=bitwarden,dc=com", - "cn=Azar Darnel,ou=Peons,dc=bitwarden,dc=com", - "cn=Reza Reinboth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Indira Dimitry,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Subhashini Freiwald,ou=Management,dc=bitwarden,dc=com", - "cn=Izzy Metherell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dreddy Willett,ou=Management,dc=bitwarden,dc=com", - "cn=Avis Benham,ou=Management,dc=bitwarden,dc=com", - "cn=Wilie Eva,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zorine OHearn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Niek Salazar,ou=Peons,dc=bitwarden,dc=com", - "cn=Prabir Bachynski,ou=Management,dc=bitwarden,dc=com", - "cn=Steen Selchow,ou=Peons,dc=bitwarden,dc=com", - "cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden,dc=com", - "cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tessi Nagai,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sande Lonsdale,ou=Administrative,dc=bitwarden,dc=com", - "cn=Euphemia Byer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jewell Samson,ou=Management,dc=bitwarden,dc=com", - "cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Haley McMannen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Joyous Bessette,ou=Product Development,dc=bitwarden,dc=com", - "cn=Emanuel Tupas,ou=Management,dc=bitwarden,dc=com", - "cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Janeczka Bautista,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alf Meunier,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dena Stevenson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Khalil Verch,ou=Peons,dc=bitwarden,dc=com", - "cn=Adela Rios,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roselle Sowry,ou=Management,dc=bitwarden,dc=com", - "cn=Leonida Wenham,ou=Payroll,dc=bitwarden,dc=com", - "cn=Camille Balog,ou=Peons,dc=bitwarden,dc=com", - "cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lona Tuttle,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ryszard Dack,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Channa Bergeron,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dannie Leth,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Noell McWalters,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ally Viehweg,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elena Leima,ou=Administrative,dc=bitwarden,dc=com", - "cn=Manny Grau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cornie Hobgood,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kirsti Sridaran,ou=Peons,dc=bitwarden,dc=com", - "cn=Cynthya Ganness,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Becky Bento,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Murial Richardson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ashok Ugwa,ou=Peons,dc=bitwarden,dc=com", - "cn=Sarena Devgon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Valeria Bracewell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cristina Ard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Katrinka Harville,ou=Administrative,dc=bitwarden,dc=com", - "cn=Colette Chern,ou=Product Testing,dc=bitwarden,dc=com", - "cn=PohSoon Mellor,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden,dc=com", - "cn=Reg Mou,ou=Payroll,dc=bitwarden,dc=com", - "cn=Flor Fong,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Will Imbemba,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Serene Lindquist,ou=Product Development,dc=bitwarden,dc=com", - "cn=Joeann Upton,ou=Peons,dc=bitwarden,dc=com", - "cn=Fariba Cowell,ou=Peons,dc=bitwarden,dc=com", - "cn=Annadiane Meijer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cleo Mgmt,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ferne Finane,ou=Payroll,dc=bitwarden,dc=com", - "cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elisabetta Angell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Me Womack,ou=Payroll,dc=bitwarden,dc=com", - "cn=Randie Takata,ou=Payroll,dc=bitwarden,dc=com", - "cn=Birgitte Marshall,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lorita Pilon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ind Brindley,ou=Peons,dc=bitwarden,dc=com", - "cn=Gaal Ugwa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tilda Sharratt,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yueping Kardomateas,ou=Peons,dc=bitwarden,dc=com", - "cn=Bela Plaisance,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carlen Privitera,ou=Payroll,dc=bitwarden,dc=com", - "cn=Survey Vanta,ou=Peons,dc=bitwarden,dc=com", - "cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bevyn Germano,ou=Peons,dc=bitwarden,dc=com", - "cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Norcal Sabourin,ou=Management,dc=bitwarden,dc=com", - "cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cuong Schwab,ou=Peons,dc=bitwarden,dc=com", - "cn=Seang Reichinger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sherryl Appell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rayna Hanford,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hynek Alles,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cal Wilby,ou=Administrative,dc=bitwarden,dc=com", - "cn=Furrukh Gros,ou=Peons,dc=bitwarden,dc=com", - "cn=Barlas Rezzik,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cong Kish,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ping ONeill,ou=Peons,dc=bitwarden,dc=com", - "cn=Aladin Mikulka,ou=Peons,dc=bitwarden,dc=com", - "cn=Marj Baldock,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden,dc=com", - "cn=Abby Theocharakis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Linnea Boucouris,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bernd Gaebel,ou=Management,dc=bitwarden,dc=com", - "cn=Tiina Ackaouy,ou=Management,dc=bitwarden,dc=com", - "cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Florrie Latin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bliss Salinas,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Binny MacGregor,ou=Administrative,dc=bitwarden,dc=com", - "cn=Margie Rubin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sarene Videa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Harpal Iskandar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Melloney Mussar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Arnett Typer,ou=Peons,dc=bitwarden,dc=com", - "cn=Dulce Dore,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mandy Auth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nata Lampman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Scpiivo Lauten,ou=Management,dc=bitwarden,dc=com", - "cn=Susannah Ergle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sharona Purohit,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sukey Ameen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dhawal Obenauf,ou=Management,dc=bitwarden,dc=com", - "cn=Nuntel Cozart,ou=Administrative,dc=bitwarden,dc=com", - "cn=Turkey Massone,ou=Peons,dc=bitwarden,dc=com", - "cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maxie Aladangady,ou=Management,dc=bitwarden,dc=com", - "cn=Housseini Sammons,ou=Product Development,dc=bitwarden,dc=com", - "cn=Saraann Koman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Saudra Griffith,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yongli Craver,ou=Management,dc=bitwarden,dc=com", - "cn=Pardip LaVecchia,ou=Peons,dc=bitwarden,dc=com", - "cn=Subhash Waid,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Deane Saiyed,ou=Peons,dc=bitwarden,dc=com", - "cn=Joannah McBryan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kyle Anconetani,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cicily Carlisle,ou=Management,dc=bitwarden,dc=com", - "cn=Carole Coats,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Leonelle Halpern,ou=Payroll,dc=bitwarden,dc=com", - "cn=Clare Deatrick,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marty Maunu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ronni Paynter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Duong Davies,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Greer Behlen,ou=Peons,dc=bitwarden,dc=com", - "cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden,dc=com", - "cn=Poldi Volk,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden,dc=com", - "cn=Estelle Specs,ou=Management,dc=bitwarden,dc=com", - "cn=Tina Guarino,ou=Peons,dc=bitwarden,dc=com", - "cn=Pamelina Kovats,ou=Management,dc=bitwarden,dc=com", - "cn=Dany deGrace,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden,dc=com", - "cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden,dc=com", - "cn=Grata Hosang,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Eoin Ketchum,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rora Feild,ou=Payroll,dc=bitwarden,dc=com", - "cn=Chryste Tsenter,ou=Peons,dc=bitwarden,dc=com", - "cn=Yoda Calleja,ou=Management,dc=bitwarden,dc=com", - "cn=Vannie Babalola,ou=Peons,dc=bitwarden,dc=com", - "cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden,dc=com", - "cn=Sheryl Diec,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Candice Scribner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Farand Rambow,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darb Jedrysiak,ou=Peons,dc=bitwarden,dc=com", - "cn=Valentia Edmison,ou=Administrative,dc=bitwarden,dc=com", - "cn=Reid Hotline,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nelli Camblin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shaji Heilig,ou=Management,dc=bitwarden,dc=com", - "cn=Angil Shariff,ou=Peons,dc=bitwarden,dc=com", - "cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Linet McRitchie,ou=Management,dc=bitwarden,dc=com", - "cn=Chen Mayer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anibal Nafezi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Monteene Azmak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bep Ramsayer,ou=Peons,dc=bitwarden,dc=com", - "cn=Emilee Mereu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Madalena Brodie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Liese Childers,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shekar Finnie,ou=Management,dc=bitwarden,dc=com", - "cn=Ilysa Connor,ou=Peons,dc=bitwarden,dc=com", - "cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Milly Taghizadeh,ou=Management,dc=bitwarden,dc=com", - "cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Guglielma Gomes,ou=Peons,dc=bitwarden,dc=com", - "cn=Malorie Sei,ou=Product Development,dc=bitwarden,dc=com", - "cn=Loella Stephenson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rozalie Farr,ou=Management,dc=bitwarden,dc=com", - "cn=Jessa Humphrey,ou=Peons,dc=bitwarden,dc=com", - "cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden,dc=com", - "cn=Audrie Rembecki,ou=Management,dc=bitwarden,dc=com", - "cn=Miroslav Federico,ou=Payroll,dc=bitwarden,dc=com", - "cn=Steffi Voelcker,ou=Peons,dc=bitwarden,dc=com", - "cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden,dc=com", - "cn=Aloysia OKarina,ou=Management,dc=bitwarden,dc=com", - "cn=Betsy Braun,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carling Cupido,ou=Product Development,dc=bitwarden,dc=com", - "cn=Saman McNichol,ou=Management,dc=bitwarden,dc=com", - "cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Selma Slotnick,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Felicia Holz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Joke Cottengim,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sonoe Linke,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marce Tracey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Muffin Gadbois,ou=Management,dc=bitwarden,dc=com", - "cn=Ros Rajwani,ou=Peons,dc=bitwarden,dc=com", - "cn=Lynnelle Shane,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kissee Ide,ou=Peons,dc=bitwarden,dc=com", - "cn=Leesa Trader,ou=Peons,dc=bitwarden,dc=com", - "cn=Indy Pullan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Micro Valente,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lea Marineau,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dinh Yadollahi,ou=Management,dc=bitwarden,dc=com", - "cn=Nj Patchett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Helsa Calis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Drona Panter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Filia Magnusson,ou=Management,dc=bitwarden,dc=com", - "cn=Bernadette Schmelzel,ou=Management,dc=bitwarden,dc=com", - "cn=Elva Radcliffe,ou=Administrative,dc=bitwarden,dc=com", - "cn=Janson Sealy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bethina Horak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Manny Burkhardt,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mehmud Rios,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jinann Wildeman,ou=Management,dc=bitwarden,dc=com", - "cn=Lisetta Semler,ou=Management,dc=bitwarden,dc=com", - "cn=Trenna Fradette,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sashenka Warwick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bassam Cisco,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Yvan Kea,ou=Management,dc=bitwarden,dc=com", - "cn=Ijff Monforton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anderson Nunold,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dulcia Burkey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Isidora Wilczewski,ou=Management,dc=bitwarden,dc=com", - "cn=Alexine Tarof,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ashok Bagg,ou=Management,dc=bitwarden,dc=com", - "cn=Antoni Friesen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Beate Ribot,ou=Administrative,dc=bitwarden,dc=com", - "cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pde Bautista,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marco Cho,ou=Administrative,dc=bitwarden,dc=com", - "cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ashly McNitt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ginni Brunelle,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maybelle Hammond,ou=Management,dc=bitwarden,dc=com", - "cn=Georgine Delaney,ou=Peons,dc=bitwarden,dc=com", - "cn=Brent Guindi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Annette Madgett,ou=Management,dc=bitwarden,dc=com", - "cn=Tesa Duda,ou=Payroll,dc=bitwarden,dc=com", - "cn=Idus Welch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fina Volkmann,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eirena Mahn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pinakin Spooner,ou=Management,dc=bitwarden,dc=com", - "cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kannan McCabe,ou=Management,dc=bitwarden,dc=com", - "cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Magda Bullard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dzung Datema,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kiele Boggs,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Othelia Humphrey,ou=Payroll,dc=bitwarden,dc=com", - "cn=Willabella Sarto,ou=Peons,dc=bitwarden,dc=com", - "cn=Maitreya Carriere,ou=Management,dc=bitwarden,dc=com", - "cn=Marje Sherwin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dode Schnell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden,dc=com", - "cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden,dc=com", - "cn=PuiWah Szopinski,ou=Peons,dc=bitwarden,dc=com", - "cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jack Totaro,ou=Management,dc=bitwarden,dc=com", - "cn=Hettie Phagan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Margalo Scholey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Delly Newnam,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ernst Dinkel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Charis Armstead,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Purnam Dillabough,ou=Peons,dc=bitwarden,dc=com", - "cn=Cart Fillmore,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yuen Maybee,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Petr Battershill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Beulah Nowell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Aryn Mills,ou=Peons,dc=bitwarden,dc=com", - "cn=Car Gillet,ou=Peons,dc=bitwarden,dc=com", - "cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ronn Gorsky,ou=Payroll,dc=bitwarden,dc=com", - "cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roly Dirilten,ou=Administrative,dc=bitwarden,dc=com", - "cn=Betteann Thaker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Howden Raglin,ou=Peons,dc=bitwarden,dc=com", - "cn=Madeline Sipple,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zulema Marra,ou=Management,dc=bitwarden,dc=com", - "cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden,dc=com", - "cn=Amalita Ivancevic,ou=Management,dc=bitwarden,dc=com", - "cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden,dc=com", - "cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lazlo McClelland,ou=Product Development,dc=bitwarden,dc=com", - "cn=Angele Mitrani,ou=Management,dc=bitwarden,dc=com", - "cn=Ghislain Kechichian,ou=Peons,dc=bitwarden,dc=com", - "cn=Merrily Administrator,ou=Management,dc=bitwarden,dc=com", - "cn=Zena Farrell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ovila Lanctot,ou=Payroll,dc=bitwarden,dc=com", - "cn=Karie Kurash,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kalina Mednick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yannis Behnam,ou=Peons,dc=bitwarden,dc=com", - "cn=Lionel Carevic,ou=Peons,dc=bitwarden,dc=com", - "cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Olav McNitt,ou=Peons,dc=bitwarden,dc=com", - "cn=Jobi ONeal,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ellissa Marson,ou=Management,dc=bitwarden,dc=com", - "cn=Anita Bovee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gavin Buckingham,ou=Administrative,dc=bitwarden,dc=com", - "cn=Joke Reddick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Johna Revill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marlee Gillespie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Des Theriot,ou=Management,dc=bitwarden,dc=com", - "cn=Daphine Kobeski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Subhashini Bachewich,ou=Peons,dc=bitwarden,dc=com", - "cn=Linnell Altekar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aubrette Holz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mollee Etemad,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Renie Spicer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Halley Clason,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mister Stampfl,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hq Skelly,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anthony Markham,ou=Management,dc=bitwarden,dc=com", - "cn=Neilla Shingler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Korrie Stallcup,ou=Management,dc=bitwarden,dc=com", - "cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Delcina Barcza,ou=Product Development,dc=bitwarden,dc=com", - "cn=Evette Coddington,ou=Peons,dc=bitwarden,dc=com", - "cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Joelynn Lightfield,ou=Peons,dc=bitwarden,dc=com", - "cn=Isaac Cossota,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lyle DorionMagnan,ou=Management,dc=bitwarden,dc=com", - "cn=Tsing Daya,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Achal Justus,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ilda Meskimen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden,dc=com", - "cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jaya Ellul,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tessi Hipp,ou=Peons,dc=bitwarden,dc=com", - "cn=Tatyana Gooch,ou=Peons,dc=bitwarden,dc=com", - "cn=Ashlan Inamullah,ou=Management,dc=bitwarden,dc=com", - "cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jandy McCollum,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kattie Thom,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hideo Nelson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Karam Abraham,ou=Payroll,dc=bitwarden,dc=com", - "cn=Evita Mahin,ou=Peons,dc=bitwarden,dc=com", - "cn=Doll Hwang,ou=Peons,dc=bitwarden,dc=com", - "cn=Atsushi Gros,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lacee Kraus,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tonu Doncaster,ou=Peons,dc=bitwarden,dc=com", - "cn=Tobye Rupnow,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gilberte Correia,ou=Payroll,dc=bitwarden,dc=com", - "cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elva Goza,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nath Gazier,ou=Administrative,dc=bitwarden,dc=com", - "cn=Serene Tandiono,ou=Administrative,dc=bitwarden,dc=com", - "cn=Guner Sinnett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden,dc=com", - "cn=Carolien Predel,ou=Management,dc=bitwarden,dc=com", - "cn=Fouad Woodman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Remy Muenstermann,ou=Payroll,dc=bitwarden,dc=com", - "cn=Erkan Burkert,ou=Product Development,dc=bitwarden,dc=com", - "cn=Linnea Oliveira,ou=Management,dc=bitwarden,dc=com", - "cn=Steve Nass,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Henrie Malkani,ou=Product Development,dc=bitwarden,dc=com", - "cn=Almeta Batura,ou=Peons,dc=bitwarden,dc=com", - "cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Laurianne Storey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nady Straub,ou=Management,dc=bitwarden,dc=com", - "cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sami McQuaig,ou=Administrative,dc=bitwarden,dc=com", - "cn=Moises Semler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Richard FWPtools,ou=Peons,dc=bitwarden,dc=com", - "cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Danielle Sells,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sylva Hikita,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jeannine McMurray,ou=Administrative,dc=bitwarden,dc=com", - "cn=Robbin Vanstory,ou=Peons,dc=bitwarden,dc=com", - "cn=Gertie Dix,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Daloris Pippy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Robinia Chytil,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Randy Haaksman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ginn Rembecki,ou=Payroll,dc=bitwarden,dc=com", - "cn=Deva Morimoto,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sioux Laney,ou=Peons,dc=bitwarden,dc=com", - "cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden,dc=com", - "cn=Demetri Sepe,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mickey Fiset,ou=Peons,dc=bitwarden,dc=com", - "cn=Avie AltingMees,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kanya Ralph,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elisabeth Viens,ou=Peons,dc=bitwarden,dc=com", - "cn=Christin Hussain,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Stephannie Oam,ou=Management,dc=bitwarden,dc=com", - "cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kerrie Cholet,ou=Payroll,dc=bitwarden,dc=com", - "cn=Barnes Todaro,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Paulie Stellitano,ou=Product Development,dc=bitwarden,dc=com", - "cn=Quon Lamm,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wenxi Reade,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fabienne Hoehling,ou=Management,dc=bitwarden,dc=com", - "cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lanita Delorenzi,ou=Peons,dc=bitwarden,dc=com", - "cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Chong Alleva,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden,dc=com", - "cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Theresita Flanagan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Luc Sutton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Adnan Madani,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jason Quelch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Terrence Rolston,ou=Management,dc=bitwarden,dc=com", - "cn=Douglass Kwee,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Manjit Sankey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Thalia Majid,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anna Gullekson,ou=Peons,dc=bitwarden,dc=com", - "cn=Steffi Rok,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gerrard Kearns,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden,dc=com", - "cn=Teri Braginetz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nuri Spieker,ou=Peons,dc=bitwarden,dc=com", - "cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Flossy Leveille,ou=Management,dc=bitwarden,dc=com", - "cn=Witte Houghton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gateway Szaran,ou=Administrative,dc=bitwarden,dc=com", - "cn=Othelia Henley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Stacia Sova,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kellen Nickells,ou=Product Development,dc=bitwarden,dc=com", - "cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marika Brombal,ou=Peons,dc=bitwarden,dc=com", - "cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kally Woodyer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Constancia Liao,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alexander Riley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bobb Hubers,ou=Management,dc=bitwarden,dc=com", - "cn=Vannie Clenney,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Udaya Kingaby,ou=Peons,dc=bitwarden,dc=com", - "cn=Dari OHara,ou=Administrative,dc=bitwarden,dc=com", - "cn=Merralee Firment,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Aurie Alanoly,ou=Peons,dc=bitwarden,dc=com", - "cn=Nadim Junkin,ou=Peons,dc=bitwarden,dc=com", - "cn=Erik Chapman,ou=Management,dc=bitwarden,dc=com", - "cn=Adora Lamers,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Micah Brabec,ou=Peons,dc=bitwarden,dc=com", - "cn=Annette Brandsen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Amabelle Lockwood,ou=Management,dc=bitwarden,dc=com", - "cn=Rosaline Carldata,ou=Peons,dc=bitwarden,dc=com", - "cn=Diana Felczak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Regis Liesemer,ou=Peons,dc=bitwarden,dc=com", - "cn=Joke Mrozinski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marcelle Hine,ou=Product Development,dc=bitwarden,dc=com", - "cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Grayce Cicci,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Idris CPM,ou=Management,dc=bitwarden,dc=com", - "cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ree Budhram,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elda Ranahan,ou=Peons,dc=bitwarden,dc=com", - "cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shailendra Kapsa,ou=Management,dc=bitwarden,dc=com", - "cn=Persis Emig,ou=Peons,dc=bitwarden,dc=com", - "cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Laurel Grills,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Saloma Jaques,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sebastian Kammerer,ou=Management,dc=bitwarden,dc=com", - "cn=Grayce Roesler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Helene Krowlek,ou=Administrative,dc=bitwarden,dc=com", - "cn=Charman Nagy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jacqueline Sorathia,ou=Management,dc=bitwarden,dc=com", - "cn=Leanne Devine,ou=Product Development,dc=bitwarden,dc=com", - "cn=Manon Benham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Meg Lara,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sanae Carpool,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mia Willis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gheorghe Younan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Val Toth,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ishan Puukila,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Davinder Thibert,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mounir Theoret,ou=Payroll,dc=bitwarden,dc=com", - "cn=Air Baldwin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Arlyne Miao,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Debi Seniuk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pas Maksuta,ou=Product Development,dc=bitwarden,dc=com", - "cn=Camellia Tencer,ou=Peons,dc=bitwarden,dc=com", - "cn=HinWai Menaker,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lenore Inrig,ou=Payroll,dc=bitwarden,dc=com", - "cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sibeal Manner,ou=Management,dc=bitwarden,dc=com", - "cn=Vo Filpus,ou=Management,dc=bitwarden,dc=com", - "cn=Martine Captives,ou=Payroll,dc=bitwarden,dc=com", - "cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Wileen Elgar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Basheer Illidge,ou=Management,dc=bitwarden,dc=com", - "cn=Jodine Swartz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Barbette VanHaste,ou=Payroll,dc=bitwarden,dc=com", - "cn=Envoy Dignam,ou=Product Development,dc=bitwarden,dc=com", - "cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ghassan Visser,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bryna Grandy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nonna Calkins,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tchangid Cosner,ou=Peons,dc=bitwarden,dc=com", - "cn=Happy Armstead,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Siva Trader,ou=Management,dc=bitwarden,dc=com", - "cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Norton Hlady,ou=Management,dc=bitwarden,dc=com", - "cn=Benita Brivet,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ulrike Ta,ou=Peons,dc=bitwarden,dc=com", - "cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden,dc=com", - "cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jimmy Ramey,ou=Management,dc=bitwarden,dc=com", - "cn=Romano Teacher,ou=Administrative,dc=bitwarden,dc=com", - "cn=Poppy Ong,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Takako Cambre,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eachelle Etu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Merlina Eimer,ou=Peons,dc=bitwarden,dc=com", - "cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Imelda Ornburn,ou=Management,dc=bitwarden,dc=com", - "cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Elex Syal,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vern Rantala,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sarina Handley,ou=Peons,dc=bitwarden,dc=com", - "cn=Edward Meldrum,ou=Product Development,dc=bitwarden,dc=com", - "cn=Margaretta Hord,ou=Payroll,dc=bitwarden,dc=com", - "cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Calley Hvezda,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rodina Sumi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jessa Harlan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Curt Tadge,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bertrand Spearpoint,ou=Management,dc=bitwarden,dc=com", - "cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Annabel Cadtools,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hanny Wayler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Devi Cobran,ou=Peons,dc=bitwarden,dc=com", - "cn=Tian Sydnor,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Remi Ladd,ou=Product Development,dc=bitwarden,dc=com", - "cn=Miles Bannan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Annnora Burchby,ou=Management,dc=bitwarden,dc=com", - "cn=Mariet Finzel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rozalie Kesler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jude Farmer,ou=Peons,dc=bitwarden,dc=com", - "cn=Mervin Grisoni,ou=Peons,dc=bitwarden,dc=com", - "cn=Sarath Beekman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anna Hepburn,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bethany Passier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Traci DuBerger,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ceciley Kuan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden,dc=com", - "cn=Krishan Stamps,ou=Product Development,dc=bitwarden,dc=com", - "cn=Colin Gibbins,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Utpala Neault,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chery Dickinson,ou=Peons,dc=bitwarden,dc=com", - "cn=Elwood Schmitz,ou=Management,dc=bitwarden,dc=com", - "cn=Trang Kang,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marylee Lowrie,ou=Management,dc=bitwarden,dc=com", - "cn=Donall Zlatin,ou=Management,dc=bitwarden,dc=com", - "cn=Dilip Willette,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gen Templeton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Celinda Guttman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dede Lan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Othella Toolset,ou=Payroll,dc=bitwarden,dc=com", - "cn=Genovera Kusmider,ou=Management,dc=bitwarden,dc=com", - "cn=JoAnn Donohue,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eliezer Laing,ou=Management,dc=bitwarden,dc=com", - "cn=Hayley Rundstein,ou=Management,dc=bitwarden,dc=com", - "cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Daffi Chalker,ou=Payroll,dc=bitwarden,dc=com", - "cn=Debee Hazelrig,ou=Peons,dc=bitwarden,dc=com", - "cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Warren Niu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Thuong Malkinson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Remi Denver,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Maritsa Keenan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Johnath Linn,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Joan Yousuf,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roscoe LePage,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Powell Tosczak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Charles Chatha,ou=Management,dc=bitwarden,dc=com", - "cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tina Dadalt,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sosanna Starnes,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gilly Wasylyk,ou=Management,dc=bitwarden,dc=com", - "cn=Naser Cooksey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Betta Parn,ou=Management,dc=bitwarden,dc=com", - "cn=Lon Sourour,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Neetu Kromer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lon Sells,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shivdarsan Garry,ou=Management,dc=bitwarden,dc=com", - "cn=Co Reinhold,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Inez Elks,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden,dc=com", - "cn=John Senecal,ou=Payroll,dc=bitwarden,dc=com", - "cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marit Whatley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sammie Datta,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Clea Laing,ou=Peons,dc=bitwarden,dc=com", - "cn=Rex Pelletier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gaby Dybenko,ou=Peons,dc=bitwarden,dc=com", - "cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Velma Donahee,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Chawki Targosky,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Clemente Boroski,ou=Peons,dc=bitwarden,dc=com", - "cn=JinYun Vea,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dawn Pelland,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden,dc=com", - "cn=Snehal Benne,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Selma Sinasac,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cindee Majid,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Croix Valiveti,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jelene Watkins,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Harriot Macklem,ou=Administrative,dc=bitwarden,dc=com", - "cn=Torey Kilzer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gilberta Howie,ou=Peons,dc=bitwarden,dc=com", - "cn=Darrel Doerfel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Phu Lukie,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Katja Teder,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rina Talton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nelleke Haley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shalna Yao,ou=Peons,dc=bitwarden,dc=com", - "cn=Karmen Wever,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Udaya Magnuson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tory Racz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Danika Jamaly,ou=Payroll,dc=bitwarden,dc=com", - "cn=Loc McElligott,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maryanne Herr,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Norrie Vanwychen,ou=Peons,dc=bitwarden,dc=com", - "cn=Babette Hammond,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dae Malloy,ou=Peons,dc=bitwarden,dc=com", - "cn=Demi Uyar,ou=Peons,dc=bitwarden,dc=com", - "cn=Drago Wooley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lira Akhtar,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Blair Costen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Celinka Truong,ou=Management,dc=bitwarden,dc=com", - "cn=Olympe Wyndham,ou=Payroll,dc=bitwarden,dc=com", - "cn=Emp Slyteris,ou=Management,dc=bitwarden,dc=com", - "cn=Brien Ensign,ou=Management,dc=bitwarden,dc=com", - "cn=Nicolas Whetston,ou=Management,dc=bitwarden,dc=com", - "cn=Annalise Combaz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jiri Clary,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Emelia Farag,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cang Calva,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sanjeev Tates,ou=Management,dc=bitwarden,dc=com", - "cn=Lindsey Mina,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yueh Gowl,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=America Ballarte,ou=Administrative,dc=bitwarden,dc=com", - "cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden,dc=com", - "cn=Student Center,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jillana Cusick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Edmund Caine,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Faith Langenberg,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gussi Zisu,ou=Product Development,dc=bitwarden,dc=com", - "cn=Enrica Scss,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Franklin Mahlig,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hazem Doerksen,ou=Management,dc=bitwarden,dc=com", - "cn=Sabra Williams,ou=Payroll,dc=bitwarden,dc=com", - "cn=Des Terrell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jolene Casey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karilynn Dekeyser,ou=Management,dc=bitwarden,dc=com", - "cn=Gaal Gach,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Emory Davalo,ou=Management,dc=bitwarden,dc=com", - "cn=Leia Boccali,ou=Management,dc=bitwarden,dc=com", - "cn=Hollie Redding,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maurita Hewett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Alberta Popel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden,dc=com", - "cn=Warden Norgaard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stephine Este,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Allx Vezeau,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hattie Offers,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Priti Stowe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tilly Lienemann,ou=Product Development,dc=bitwarden,dc=com", - "cn=Constantina Totaro,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bendite Basser,ou=Management,dc=bitwarden,dc=com", - "cn=Trish Ettridge,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Leola Musca,ou=Peons,dc=bitwarden,dc=com", - "cn=Oral Priestley,ou=Peons,dc=bitwarden,dc=com", - "cn=Yonik Yurach,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hudai Weare,ou=Peons,dc=bitwarden,dc=com", - "cn=Miguela Brodersen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sohale Suomela,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yonik Murison,ou=Management,dc=bitwarden,dc=com", - "cn=Delora Grund,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mietek Humes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lili Cozzi,ou=Peons,dc=bitwarden,dc=com", - "cn=Mil Badmington,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kittie Chapman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Las Bongers,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ramez Beisel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gerladina Miello,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hernan Aversa,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rozanne Botting,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amandy Ganness,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lisabeth Joll,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hillary Pintado,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nadean Fiorile,ou=Management,dc=bitwarden,dc=com", - "cn=Sohayla Ip,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ashley Seagle,ou=Payroll,dc=bitwarden,dc=com", - "cn=Christoph Dwyer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Minnesota Reich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marilyn Godden,ou=Product Development,dc=bitwarden,dc=com", - "cn=Weiping Choynowska,ou=Management,dc=bitwarden,dc=com", - "cn=Karlen Pelz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mela Speers,ou=Payroll,dc=bitwarden,dc=com", - "cn=PierreHenri Oates,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ramon Metcalfe,ou=Management,dc=bitwarden,dc=com", - "cn=Domeniga Purohit,ou=Management,dc=bitwarden,dc=com", - "cn=Goldy Locke,ou=Janitorial,dc=bitwarden,dc=com", - "cn=PakJong Braginetz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hilde Miotla,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ning Spitzer,ou=Peons,dc=bitwarden,dc=com", - "cn=Marylee Eberle,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shalne Monfre,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sammie Wickie,ou=Administrative,dc=bitwarden,dc=com", - "cn=Teresita Vonderscher,ou=Peons,dc=bitwarden,dc=com", - "cn=Derek Boase,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ehi Sova,ou=Payroll,dc=bitwarden,dc=com", - "cn=Suzette Chaddha,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lennart Delong,ou=Administrative,dc=bitwarden,dc=com", - "cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Diann Glast,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tiffanie Beehler,ou=Peons,dc=bitwarden,dc=com", - "cn=Leny Teague,ou=Administrative,dc=bitwarden,dc=com", - "cn=Trever Casson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Chester Greene,ou=Peons,dc=bitwarden,dc=com", - "cn=Celine Vey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pinder Leonida,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Beryl Lalonde,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cicely Ivers,ou=Management,dc=bitwarden,dc=com", - "cn=Lorinda Kenworthy,ou=Management,dc=bitwarden,dc=com", - "cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Demetre Obrecht,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden,dc=com", - "cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sheryl Nemec,ou=Payroll,dc=bitwarden,dc=com", - "cn=Freya Reich,ou=Management,dc=bitwarden,dc=com", - "cn=Willyt Kresl,ou=Peons,dc=bitwarden,dc=com", - "cn=Nenad Kilner,ou=Peons,dc=bitwarden,dc=com", - "cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nakina Brittain,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joyous Nunn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hugo Tarsky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Davida Starnes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Heping Id,ou=Management,dc=bitwarden,dc=com", - "cn=Nill Ferreira,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Amabel DAngelo,ou=Management,dc=bitwarden,dc=com", - "cn=Brad Scarffe,ou=Management,dc=bitwarden,dc=com", - "cn=Elfie Florescu,ou=Peons,dc=bitwarden,dc=com", - "cn=Nayan Caffrey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Deonne Ripa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mehdi Mainville,ou=Peons,dc=bitwarden,dc=com", - "cn=Jade Yumurtaci,ou=Peons,dc=bitwarden,dc=com", - "cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden,dc=com", - "cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Fey Bilton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Isoft Manwaring,ou=Peons,dc=bitwarden,dc=com", - "cn=Addia RossRoss,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Adoree Debord,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tesa Coordinator,ou=Product Development,dc=bitwarden,dc=com", - "cn=Crissie Beausejour,ou=Peons,dc=bitwarden,dc=com", - "cn=Hojjat Nahata,ou=Peons,dc=bitwarden,dc=com", - "cn=Julina Sy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kendre Lotochinski,ou=Management,dc=bitwarden,dc=com", - "cn=Yih NadeauDostie,ou=Management,dc=bitwarden,dc=com", - "cn=Glynnis Neisius,ou=Peons,dc=bitwarden,dc=com", - "cn=Sono Orsini,ou=Peons,dc=bitwarden,dc=com", - "cn=Devon Romberg,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lorne Agily,ou=Management,dc=bitwarden,dc=com", - "cn=Henka Colford,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Niek Bocklage,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gill Castillo,ou=Peons,dc=bitwarden,dc=com", - "cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cary Thumm,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rod Eisenach,ou=Payroll,dc=bitwarden,dc=com", - "cn=Axel McAdams,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amara Lagarde,ou=Management,dc=bitwarden,dc=com", - "cn=Gerianne Deluca,ou=Peons,dc=bitwarden,dc=com", - "cn=Mick Barreyre,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Netta Hartin,ou=Peons,dc=bitwarden,dc=com", - "cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden,dc=com", - "cn=Juli Chen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cubical Quintana,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liping Acton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lorry Suprick,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mattie Astorino,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Suzanne Guatto,ou=Management,dc=bitwarden,dc=com", - "cn=Norton Sapena,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tsugio Behlen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pammy Liu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Deeyn Frie,ou=Peons,dc=bitwarden,dc=com", - "cn=Dael Valliere,ou=Management,dc=bitwarden,dc=com", - "cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ranna Gentes,ou=Peons,dc=bitwarden,dc=com", - "cn=Khue Trivedi,ou=Administrative,dc=bitwarden,dc=com", - "cn=YuKai Holloway,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mrugesh Gaskins,ou=Management,dc=bitwarden,dc=com", - "cn=Belle Kilner,ou=Management,dc=bitwarden,dc=com", - "cn=Sieber Binnington,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nananne Bahl,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Selia Demers,ou=Management,dc=bitwarden,dc=com", - "cn=Karl Deployment,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jolene Eicher,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Merridie Partello,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tae Hughson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bobbye Cech,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Drucy Serour,ou=Payroll,dc=bitwarden,dc=com", - "cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elnore Alvaro,ou=Management,dc=bitwarden,dc=com", - "cn=Briney Emery,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dawn Shubaly,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leny Redway,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Augusto Mather,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Biplab Natale,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ninon Coffey,ou=Peons,dc=bitwarden,dc=com", - "cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nando Masterplan,ou=Peons,dc=bitwarden,dc=com", - "cn=Farouk Closson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jacob Andress,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fikre Mau,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zan StPierre,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Michigan Callaghan,ou=Peons,dc=bitwarden,dc=com", - "cn=Vesna Suharly,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maurise Travers,ou=Management,dc=bitwarden,dc=com", - "cn=Loella Herve,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Libbi Marting,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Derrick Myatt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chelsey Emond,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Harvey Jugandi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ida Sydor,ou=Peons,dc=bitwarden,dc=com", - "cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=MingMing Wagoner,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shena Joudrey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lurline Nickell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Camilla Njo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dannie Levesque,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tarah Melanson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Phan Srinivasan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ibby Sundar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jerald Battiston,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rorie Freno,ou=Payroll,dc=bitwarden,dc=com", - "cn=Howie Jubenville,ou=Product Development,dc=bitwarden,dc=com", - "cn=Neely Dudas,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kennon Risto,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jimson McVey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elisabet Deicher,ou=Payroll,dc=bitwarden,dc=com", - "cn=Amye Barritt,ou=Administrative,dc=bitwarden,dc=com", - "cn=Corry Ivett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Adan Kelkar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ross Sepko,ou=Management,dc=bitwarden,dc=com", - "cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Apryle Davy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Carlota Inoue,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leanne Smolin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kailey Bagshaw,ou=Peons,dc=bitwarden,dc=com", - "cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Trever Moffatt,ou=Management,dc=bitwarden,dc=com", - "cn=Weringh Behlen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alain Walser,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kanya Erguven,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Robina Prestrud,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Emmye Nahas,ou=Product Development,dc=bitwarden,dc=com", - "cn=Flori Suddarth,ou=Management,dc=bitwarden,dc=com", - "cn=Mkt Kelso,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Annie Goswick,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rhonda Beeston,ou=Peons,dc=bitwarden,dc=com", - "cn=Amrik Bokij,ou=Payroll,dc=bitwarden,dc=com", - "cn=Merralee Malkani,ou=Management,dc=bitwarden,dc=com", - "cn=Kyle Malkani,ou=Management,dc=bitwarden,dc=com", - "cn=Leese Jamaly,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eloise Gurash,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elpida Marples,ou=Administrative,dc=bitwarden,dc=com", - "cn=Blondie Algood,ou=Administrative,dc=bitwarden,dc=com", - "cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Averil Hirsch,ou=Peons,dc=bitwarden,dc=com", - "cn=Manijeh Older,ou=Management,dc=bitwarden,dc=com", - "cn=Lonee Swinkels,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jun Reith,ou=Product Development,dc=bitwarden,dc=com", - "cn=Otter Uberig,ou=Management,dc=bitwarden,dc=com", - "cn=Hendrik Ruyant,ou=Management,dc=bitwarden,dc=com", - "cn=Colline Monaco,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ilene Didylowski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Norine Krone,ou=Administrative,dc=bitwarden,dc=com", - "cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Chander Daudin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Phelia Valois,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carmela Bonner,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brandice Becquart,ou=Management,dc=bitwarden,dc=com", - "cn=Gen Guinnane,ou=Management,dc=bitwarden,dc=com", - "cn=Carmelia Lawlor,ou=Management,dc=bitwarden,dc=com", - "cn=Riva DIppolito,ou=Management,dc=bitwarden,dc=com", - "cn=Letisha Subsara,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chellappan Caple,ou=Management,dc=bitwarden,dc=com", - "cn=Lendon Shigemura,ou=Management,dc=bitwarden,dc=com", - "cn=Alicia Vermette,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marys Pellegrini,ou=Management,dc=bitwarden,dc=com", - "cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden,dc=com", - "cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Es Veillette,ou=Management,dc=bitwarden,dc=com", - "cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Schell Rezzik,ou=Product Development,dc=bitwarden,dc=com", - "cn=Haig Salyer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sachiko Dragert,ou=Payroll,dc=bitwarden,dc=com", - "cn=Agatha Potocki,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mark Bethune,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dorey Friedrich,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alexina Hord,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wilson Vosup,ou=Management,dc=bitwarden,dc=com", - "cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Forrest DCruz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Roger Seelaender,ou=Peons,dc=bitwarden,dc=com", - "cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mal Ellul,ou=Management,dc=bitwarden,dc=com", - "cn=Bep Pilkington,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Wylma Meiser,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Huppert Buffett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kass Kelland,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dpnis Stetter,ou=Peons,dc=bitwarden,dc=com", - "cn=Tash Hibler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Edee Badger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Edel Ellacott,ou=Peons,dc=bitwarden,dc=com", - "cn=Rosa Baird,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anna Kahtasian,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hiren Plastina,ou=Peons,dc=bitwarden,dc=com", - "cn=Alese Sumpter,ou=Peons,dc=bitwarden,dc=com", - "cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Simonne Filer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yeung Kaufman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Claire Wada,ou=Management,dc=bitwarden,dc=com", - "cn=Laury Breglec,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maurice Guinnane,ou=Administrative,dc=bitwarden,dc=com", - "cn=Laraine DuBois,ou=Peons,dc=bitwarden,dc=com", - "cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hettie Johannes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hedvig Risler,ou=Management,dc=bitwarden,dc=com", - "cn=Edward Badza,ou=Payroll,dc=bitwarden,dc=com", - "cn=Femke Trittler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lino Krauel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anders Raddalgoda,ou=Management,dc=bitwarden,dc=com", - "cn=Rijn Benschop,ou=Management,dc=bitwarden,dc=com", - "cn=Deva Hoch,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fearless Quattrucci,ou=Management,dc=bitwarden,dc=com", - "cn=Pia Singham,ou=Peons,dc=bitwarden,dc=com", - "cn=Zdenek Schutte,ou=Product Development,dc=bitwarden,dc=com", - "cn=Liam Darveau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Yung Deployment,ou=Management,dc=bitwarden,dc=com", - "cn=Raman Feild,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nial Meunier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Evans Laker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vale Wiederhold,ou=Management,dc=bitwarden,dc=com", - "cn=Dulce Xavier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Walt Ventura,ou=Management,dc=bitwarden,dc=com", - "cn=Miklos Rhyndress,ou=Peons,dc=bitwarden,dc=com", - "cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cherise Blodgett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jenifer Stansell,ou=Peons,dc=bitwarden,dc=com", - "cn=Fung Ginzburg,ou=Peons,dc=bitwarden,dc=com", - "cn=Nikolaos Mapile,ou=Management,dc=bitwarden,dc=com", - "cn=Queenie Spolar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Franki Weyand,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Suat Whitford,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Isadora Capelle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Loria Timmerman,ou=Product Development,dc=bitwarden,dc=com", - "cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bobbi Dupree,ou=Management,dc=bitwarden,dc=com", - "cn=Leshia Gaither,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Calla McIsaac,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roby Kasbia,ou=Peons,dc=bitwarden,dc=com", - "cn=Samia Wacker,ou=Management,dc=bitwarden,dc=com", - "cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Stephen Marketing,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anissa Gottstein,ou=Peons,dc=bitwarden,dc=com", - "cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carlin Boult,ou=Peons,dc=bitwarden,dc=com", - "cn=Kitt Briden,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ramniklal Buske,ou=Management,dc=bitwarden,dc=com", - "cn=Par Giang,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden,dc=com", - "cn=Daisey Karam,ou=Management,dc=bitwarden,dc=com", - "cn=Levent Khouderchah,ou=Product Development,dc=bitwarden,dc=com", - "cn=Demetria Projects,ou=Management,dc=bitwarden,dc=com", - "cn=Jules Highsmith,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Misbah Kimma,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Morganne Teed,ou=Management,dc=bitwarden,dc=com", - "cn=Mozelle Huang,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stacy Boehlke,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden,dc=com", - "cn=Angelica Sarkari,ou=Management,dc=bitwarden,dc=com", - "cn=Michel Akyurekli,ou=Payroll,dc=bitwarden,dc=com", - "cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rayna Diep,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ollie Forslund,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Germain Nobes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Daria Farnham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rohit McSorley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Novelia Sossaman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marabel Oster,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marco Hoagland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gerty Hebert,ou=Management,dc=bitwarden,dc=com", - "cn=Marcela Dufresne,ou=Management,dc=bitwarden,dc=com", - "cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Almeda Maloney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Madalyn Bakay,ou=Peons,dc=bitwarden,dc=com", - "cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Allen Papantonis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Leoline Cholette,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Leanna MTL,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden,dc=com", - "cn=Octavio Naugle,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Charangit Brasset,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gena Lovejoy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vivi Dysart,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Giuseppe Laing,ou=Management,dc=bitwarden,dc=com", - "cn=Zeb Morrissette,ou=Product Development,dc=bitwarden,dc=com", - "cn=Corly Wingate,ou=Payroll,dc=bitwarden,dc=com", - "cn=UnaMae Del,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Almerinda MTL,ou=Product Development,dc=bitwarden,dc=com", - "cn=JeanRoch Della,ou=Peons,dc=bitwarden,dc=com", - "cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cris Viano,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Takis Bulmer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Adah Calistro,ou=Peons,dc=bitwarden,dc=com", - "cn=Jessalin Stooke,ou=Peons,dc=bitwarden,dc=com", - "cn=Zsazsa Ukena,ou=Management,dc=bitwarden,dc=com", - "cn=Raynell Shears,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kem Wares,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tai Galloway,ou=Administrative,dc=bitwarden,dc=com", - "cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Parviz Kinsella,ou=Administrative,dc=bitwarden,dc=com", - "cn=Madelyn Godo,ou=Peons,dc=bitwarden,dc=com", - "cn=Willow Sorathia,ou=Management,dc=bitwarden,dc=com", - "cn=Jonelle Rynders,ou=Management,dc=bitwarden,dc=com", - "cn=Avinash Vieiro,ou=Payroll,dc=bitwarden,dc=com", - "cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mikhail Fssup,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kimmi Trent,ou=Payroll,dc=bitwarden,dc=com", - "cn=Drucie Lindow,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kristine Hogue,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carmon Ghossein,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eunice Bushell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ailene Leander,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Truus Fodell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zulema Clairmont,ou=Product Development,dc=bitwarden,dc=com", - "cn=Libor Wyble,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Debera Shu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hailee Gould,ou=Peons,dc=bitwarden,dc=com", - "cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Colm Coody,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Orly Rahn,ou=Management,dc=bitwarden,dc=com", - "cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Glornia Hage,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Desiree Morini,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Laina McKibbon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Peach McGlynn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ines Younan,ou=Management,dc=bitwarden,dc=com", - "cn=Jai Junkie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ping Lombrink,ou=Management,dc=bitwarden,dc=com", - "cn=Georgianne Colwell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bryant Fronsee,ou=Administrative,dc=bitwarden,dc=com", - "cn=Amata Funderburg,ou=Administrative,dc=bitwarden,dc=com", - "cn=Camila Nason,ou=Peons,dc=bitwarden,dc=com", - "cn=Eldon ONeil,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Manda Bins,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joete Thieken,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nurettin Parisen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lester Leonida,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mira Aczel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Takehiko Malizia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Niel Vickers,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Letta Baltodano,ou=Management,dc=bitwarden,dc=com", - "cn=De Moneypenny,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dyke Suh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Barrie Botting,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anantha Uhl,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kettie Lanier,ou=Management,dc=bitwarden,dc=com", - "cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden,dc=com", - "cn=LianHong Grills,ou=Administrative,dc=bitwarden,dc=com", - "cn=Charlean Leo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gilbert Howerton,ou=Peons,dc=bitwarden,dc=com", - "cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Loralie Balutis,ou=Peons,dc=bitwarden,dc=com", - "cn=Harri Wortman,ou=Management,dc=bitwarden,dc=com", - "cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lorine Grund,ou=Management,dc=bitwarden,dc=com", - "cn=Lesley Coyne,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nelleke Lind,ou=Management,dc=bitwarden,dc=com", - "cn=Bam Raschig,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nicoline Gelo,ou=Peons,dc=bitwarden,dc=com", - "cn=Brigid Austin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Farooq Farquhar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Brandy Strauss,ou=Management,dc=bitwarden,dc=com", - "cn=Jake McGorman,ou=Management,dc=bitwarden,dc=com", - "cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ruchi Furst,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joann Truffer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anton Chao,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cacilie Murnaghan,ou=Management,dc=bitwarden,dc=com", - "cn=Ilene Magri,ou=Management,dc=bitwarden,dc=com", - "cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kiele Willis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Blondie MMail,ou=Janitorial,dc=bitwarden,dc=com", - "cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Yevette Kantor,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Youji Lawson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Neysa Dpu,ou=Administrative,dc=bitwarden,dc=com", - "cn=KaiWai Barriere,ou=Management,dc=bitwarden,dc=com", - "cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Latashia Waldie,ou=Peons,dc=bitwarden,dc=com", - "cn=Gordy Durham,ou=Management,dc=bitwarden,dc=com", - "cn=Dierdre Isip,ou=Payroll,dc=bitwarden,dc=com", - "cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ailis Stumpf,ou=Product Development,dc=bitwarden,dc=com", - "cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden,dc=com", - "cn=Puneet Aloi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden,dc=com", - "cn=Del Buckingham,ou=Peons,dc=bitwarden,dc=com", - "cn=Pardeep Roney,ou=Management,dc=bitwarden,dc=com", - "cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden,dc=com", - "cn=Valma Myrillas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alvira Dessain,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Melli Ertan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Keri Stroupe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Billi Chiu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Willette Tel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ynes Jezioranski,ou=Peons,dc=bitwarden,dc=com", - "cn=Teruko Cregan,ou=Peons,dc=bitwarden,dc=com", - "cn=Rick Novisedlak,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden,dc=com", - "cn=Notley Peterson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Joyous ONeal,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Perle Dolan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ioana Hermack,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nikolaos Nickonov,ou=Management,dc=bitwarden,dc=com", - "cn=Kirstie Rodger,ou=Management,dc=bitwarden,dc=com", - "cn=Sheree Siddell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tas Chitnis,ou=Product Development,dc=bitwarden,dc=com", - "cn=Whitfield Vexler,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Janifer Gundecha,ou=Management,dc=bitwarden,dc=com", - "cn=Diandra Shnay,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Semmler Bamfo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Martina Grazzini,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Minnie Dickie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Susanna Buckman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Johnette Yendall,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aurelie Doray,ou=Peons,dc=bitwarden,dc=com", - "cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dusan Menyhart,ou=Product Development,dc=bitwarden,dc=com", - "cn=Utilla Brandon,ou=Peons,dc=bitwarden,dc=com", - "cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Selma Kwant,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Levent Debord,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tandie Gourley,ou=Peons,dc=bitwarden,dc=com", - "cn=Indy Hu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fscocos Houston,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Oriana McInnis,ou=Peons,dc=bitwarden,dc=com", - "cn=Maggee Bentley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Inm Venjohn,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Corena Parks,ou=Product Development,dc=bitwarden,dc=com", - "cn=Irv Dicks,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marwan Marks,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kamal Calleja,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jonelle Menna,ou=Product Development,dc=bitwarden,dc=com", - "cn=Miran McGinn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wan Janovich,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gerben Dayal,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lorilee Ravi,ou=Peons,dc=bitwarden,dc=com", - "cn=McGee Levasseur,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Charmain Spurlin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lainey Grainger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Delly Clegg,ou=Product Development,dc=bitwarden,dc=com", - "cn=Addie Koolstra,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nga Orsini,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cherye Knighten,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Betteann Sieling,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Salim McIntyre,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karole Heng,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden,dc=com", - "cn=Norio Saifullah,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shannen Jagatic,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vania Gibson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Robyn Blann,ou=Administrative,dc=bitwarden,dc=com", - "cn=Krier Cruey,ou=Management,dc=bitwarden,dc=com", - "cn=Barbette Christie,ou=Peons,dc=bitwarden,dc=com", - "cn=Feodora Koller,ou=Management,dc=bitwarden,dc=com", - "cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Saudra Ghaemian,ou=Peons,dc=bitwarden,dc=com", - "cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Valentine Newell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Oriana McRae,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kizzee Halley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bette Stellwag,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Henriette Peixoto,ou=Administrative,dc=bitwarden,dc=com", - "cn=Matt Denmark,ou=Management,dc=bitwarden,dc=com", - "cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Feng Rowland,ou=Payroll,dc=bitwarden,dc=com", - "cn=Theresa Naguib,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eden Annibale,ou=Peons,dc=bitwarden,dc=com", - "cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cele Toshach,ou=Payroll,dc=bitwarden,dc=com", - "cn=Car Naro,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jocelyn Napert,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Arlette Irani,ou=Management,dc=bitwarden,dc=com", - "cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Basheer Berhane,ou=Payroll,dc=bitwarden,dc=com", - "cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Betti Tilley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ashu Drakage,ou=Peons,dc=bitwarden,dc=com", - "cn=Yetty Likert,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nady Bushnell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Selle Verch,ou=Administrative,dc=bitwarden,dc=com", - "cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden,dc=com", - "cn=YeeNing Sikes,ou=Management,dc=bitwarden,dc=com", - "cn=Bachittar Seamster,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elmer Gribbon,ou=Management,dc=bitwarden,dc=com", - "cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marlin Schrier,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bobb Bowcock,ou=Management,dc=bitwarden,dc=com", - "cn=Hermia Mendez,ou=Management,dc=bitwarden,dc=com", - "cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden,dc=com", - "cn=Thaddeus Hoehn,ou=Management,dc=bitwarden,dc=com", - "cn=Bawn Asfazadour,ou=Management,dc=bitwarden,dc=com", - "cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Franky Foest,ou=Administrative,dc=bitwarden,dc=com", - "cn=Daphene Scheck,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Milicent Hoeler,ou=Management,dc=bitwarden,dc=com", - "cn=Luis Louis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Daveta SiuKwok,ou=Peons,dc=bitwarden,dc=com", - "cn=Minni Daymond,ou=Administrative,dc=bitwarden,dc=com", - "cn=Muriel Barakat,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Thuan Szaran,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mitchell Willette,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mohan Piper,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Carmelle Froud,ou=Administrative,dc=bitwarden,dc=com", - "cn=Modesta Farr,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Liese Griffiths,ou=Management,dc=bitwarden,dc=com", - "cn=Meghan Carboni,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bryon Kluger,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Petar Khatri,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Paige Poustchi,ou=Peons,dc=bitwarden,dc=com", - "cn=Jessa Dias,ou=Payroll,dc=bitwarden,dc=com", - "cn=Zorah Purohit,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shoshanna Talevi,ou=Peons,dc=bitwarden,dc=com", - "cn=Priore Hastings,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tulip Waytowich,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hirooki Skwarok,ou=Peons,dc=bitwarden,dc=com", - "cn=Balaji Brogden,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zola Cuddihey,ou=Payroll,dc=bitwarden,dc=com", - "cn=JeanDenis Intihar,ou=Management,dc=bitwarden,dc=com", - "cn=Rejean Marc,ou=Management,dc=bitwarden,dc=com", - "cn=Aly Mooney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Daniele Mondor,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden,dc=com", - "cn=Charman Feeley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Auto Arwakhi,ou=Peons,dc=bitwarden,dc=com", - "cn=Paulette Lunn,ou=Payroll,dc=bitwarden,dc=com", - "cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kellia Froud,ou=Management,dc=bitwarden,dc=com", - "cn=Vittorio Calis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maryam Doan,ou=Product Development,dc=bitwarden,dc=com", - "cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden,dc=com", - "cn=Nathalia Haerle,ou=Management,dc=bitwarden,dc=com", - "cn=Krystn OHeocha,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carena Chaplin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eden MacDonald,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jo Snuggs,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hsinshi Sheth,ou=Peons,dc=bitwarden,dc=com", - "cn=Tata Whisler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Troy Hilton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Binni Siewert,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alyse Wingo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ladan Chilausky,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gwenette Farago,ou=Management,dc=bitwarden,dc=com", - "cn=Narinder Staffeld,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nir Dionne,ou=Management,dc=bitwarden,dc=com", - "cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", - "cn=LouisRene Ellens,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Oneida Sallee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Humphrey Redish,ou=Peons,dc=bitwarden,dc=com", - "cn=Kerry Labarge,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Quyen Aronstam,ou=Administrative,dc=bitwarden,dc=com", - "cn=KaiMing Parker,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Laure Norman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fabienne Koprulu,ou=Peons,dc=bitwarden,dc=com", - "cn=Prue Dipace,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Randolph Holtze,ou=Payroll,dc=bitwarden,dc=com", - "cn=Julianna Amin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Iris Berryhill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mahendra Michelussi,ou=Management,dc=bitwarden,dc=com", - "cn=Melesa Beagley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Khue Medeiros,ou=Payroll,dc=bitwarden,dc=com", - "cn=Evangeline Vance,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Czes Corkey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Malena Cronan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maia Lamy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gates Frape,ou=Product Development,dc=bitwarden,dc=com", - "cn=Berangere Budihardjo,ou=Management,dc=bitwarden,dc=com", - "cn=Sheryl Hekel,ou=Peons,dc=bitwarden,dc=com", - "cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kaycee Wu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Herbie Njo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Devan McCorkell,ou=Management,dc=bitwarden,dc=com", - "cn=Crin Landon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wrennie Dinkel,ou=Peons,dc=bitwarden,dc=com", - "cn=Siana Duffney,ou=Management,dc=bitwarden,dc=com", - "cn=Holst IC,ou=Product Testing,dc=bitwarden,dc=com", - "cn=SikYin Matney,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Masahiro Lauten,ou=Peons,dc=bitwarden,dc=com", - "cn=Nash Hesk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pier Kimma,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lenee Gryder,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Loesje Javor,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sallie Lehman,ou=Management,dc=bitwarden,dc=com", - "cn=Yvette Yun,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rui Hawi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Costas Pracht,ou=Management,dc=bitwarden,dc=com", - "cn=Rec Mazarick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Del Ambler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tessi Denebeim,ou=Peons,dc=bitwarden,dc=com", - "cn=Pru Digiacomo,ou=Peons,dc=bitwarden,dc=com", - "cn=Annabell Fung,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Alberta Widener,ou=Peons,dc=bitwarden,dc=com", - "cn=PakJong Klebsch,ou=Administrative,dc=bitwarden,dc=com", - "cn=Detlev Croxford,ou=Payroll,dc=bitwarden,dc=com", - "cn=Graeme Khatri,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Franky Dattalo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Careers Howes,ou=Peons,dc=bitwarden,dc=com", - "cn=Susie Gawdan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Milou Lepine,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ransom Steski,ou=Payroll,dc=bitwarden,dc=com", - "cn=ItsEng Lander,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kevyn Dore,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Merna MacNeill,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ioan Goridkov,ou=Payroll,dc=bitwarden,dc=com", - "cn=Michelle Miner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mair Harada,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lynnet Lewandowski,ou=Management,dc=bitwarden,dc=com", - "cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Henk Ramanathan,ou=Management,dc=bitwarden,dc=com", - "cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Selinda Settels,ou=Product Development,dc=bitwarden,dc=com", - "cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=ItsEng Kozak,ou=Management,dc=bitwarden,dc=com", - "cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marybelle Ervi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yuji Menna,ou=Peons,dc=bitwarden,dc=com", - "cn=Harlene Koa,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Prashant Feltman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Margit Waghray,ou=Management,dc=bitwarden,dc=com", - "cn=Naim Paar,ou=Peons,dc=bitwarden,dc=com", - "cn=Flying Labossiere,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Barbette Kolski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Joby Paulovics,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Feliza Grabner,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dona VanLoon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jacquie Thorson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Appolonia Roberge,ou=Payroll,dc=bitwarden,dc=com", - "cn=Blaise Huynh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lashonda Ogburn,ou=Management,dc=bitwarden,dc=com", - "cn=Juline Flindall,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lujanka Paylor,ou=Peons,dc=bitwarden,dc=com", - "cn=Barbee Brox,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Julia Zanetti,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Othilia Rch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gaal Despault,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mary Zalzale,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hilmi Guilbault,ou=Management,dc=bitwarden,dc=com", - "cn=YuenPui Matney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Heidie Schieber,ou=Administrative,dc=bitwarden,dc=com", - "cn=Denise Tranter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cassy Burge,ou=Peons,dc=bitwarden,dc=com", - "cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rowena Kam,ou=Administrative,dc=bitwarden,dc=com", - "cn=Theodore Murris,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bang Lischynsky,ou=Management,dc=bitwarden,dc=com", - "cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Delphine Yuan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Heloise Woodall,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ram Minter,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rosa ElAm,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shirene Id,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pauline Noffke,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Seungchul Irwin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Myrlene Santi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Perry Lovejoy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Viola Gundry,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vlado Dordari,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cindra DeMarco,ou=Management,dc=bitwarden,dc=com", - "cn=Delcine Wyss,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aurora Gibb,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rona Maciel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Moel Goswick,ou=Management,dc=bitwarden,dc=com", - "cn=Coord Herrington,ou=Peons,dc=bitwarden,dc=com", - "cn=Vic Cullen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sabine Misko,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Annmarie Brunet,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden,dc=com", - "cn=Icy Meleski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Apollo Mitalas,ou=Management,dc=bitwarden,dc=com", - "cn=Shirleen Costache,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tulip Bannan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mareah Mior,ou=Product Development,dc=bitwarden,dc=com", - "cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lorraine Sikri,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karyn Laroche,ou=Payroll,dc=bitwarden,dc=com", - "cn=Koral Carkner,ou=Peons,dc=bitwarden,dc=com", - "cn=Hyung Harada,ou=Peons,dc=bitwarden,dc=com", - "cn=Lottie Fernald,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Edyta Samalot,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eoin Morrin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Froukje Viney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sir Rivera,ou=Payroll,dc=bitwarden,dc=com", - "cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ky LEcuyer,ou=Peons,dc=bitwarden,dc=com", - "cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Buda Lumley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marley Haley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ernestine Newport,ou=Management,dc=bitwarden,dc=com", - "cn=Myrtle Bernier,ou=Management,dc=bitwarden,dc=com", - "cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Karil Chennette,ou=Management,dc=bitwarden,dc=com", - "cn=Liz Burrowes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ivona Koch,ou=Administrative,dc=bitwarden,dc=com", - "cn=Berta Mou,ou=Management,dc=bitwarden,dc=com", - "cn=Pris Freire,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Toyanne Ragde,ou=Administrative,dc=bitwarden,dc=com", - "cn=Domenick Zingeler,ou=Management,dc=bitwarden,dc=com", - "cn=Stergios Incze,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hera Haupt,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden,dc=com", - "cn=Robena Scodras,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ibby Feist,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lachu Namiki,ou=Administrative,dc=bitwarden,dc=com", - "cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Norry Wolfs,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tahir Frederick,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marlies Mraz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Farooq Gaebel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Janell Rolston,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jere Jubenville,ou=Payroll,dc=bitwarden,dc=com", - "cn=Noelyn Benham,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maury Ismail,ou=Management,dc=bitwarden,dc=com", - "cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nixie Cusato,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alastair Slozil,ou=Administrative,dc=bitwarden,dc=com", - "cn=Georgena Behrens,ou=Management,dc=bitwarden,dc=com", - "cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Prayson McCormack,ou=Management,dc=bitwarden,dc=com", - "cn=Sharyl Meerveld,ou=Management,dc=bitwarden,dc=com", - "cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tech McAllister,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Budi Anglin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Business Marcelissen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=MaryKay Wilcox,ou=Management,dc=bitwarden,dc=com", - "cn=Ingeborg Ferraro,ou=Management,dc=bitwarden,dc=com", - "cn=Dulcinea Merrils,ou=Peons,dc=bitwarden,dc=com", - "cn=Chiquia Tanner,ou=Peons,dc=bitwarden,dc=com", - "cn=Dorreen Zrobok,ou=Management,dc=bitwarden,dc=com", - "cn=Floris Bui,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maarten Braum,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shane Levert,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hesther Gunderson,ou=Management,dc=bitwarden,dc=com", - "cn=Korney Walkley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Enrica Keates,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sir Benda,ou=Management,dc=bitwarden,dc=com", - "cn=Samara Edmunds,ou=Peons,dc=bitwarden,dc=com", - "cn=Eoin Moomey,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shandy Sambi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bili Giuntini,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Stephenie Steiert,ou=Peons,dc=bitwarden,dc=com", - "cn=Esmaria Seddigh,ou=Peons,dc=bitwarden,dc=com", - "cn=Su Keef,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ignatius Baines,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jenson Arbuckle,ou=Management,dc=bitwarden,dc=com", - "cn=Jaclin Schreiber,ou=Management,dc=bitwarden,dc=com", - "cn=Steen Realtime,ou=Administrative,dc=bitwarden,dc=com", - "cn=Edmx Walston,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Abu Corbeil,ou=Peons,dc=bitwarden,dc=com", - "cn=Annamaria Woll,ou=Administrative,dc=bitwarden,dc=com", - "cn=Merdia Baer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Henrietta Horwood,ou=Peons,dc=bitwarden,dc=com", - "cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden,dc=com", - "cn=Hannis Sooley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Teruko Zork,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gerrit Erwin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kylila Valliani,ou=Administrative,dc=bitwarden,dc=com", - "cn=Courtenay Meres,ou=Product Development,dc=bitwarden,dc=com", - "cn=Theodora Henshaw,ou=Peons,dc=bitwarden,dc=com", - "cn=Feodora Chohan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Corri Gower,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mimi Malisic,ou=Payroll,dc=bitwarden,dc=com", - "cn=Farra Threader,ou=Payroll,dc=bitwarden,dc=com", - "cn=Myrna Felske,ou=Payroll,dc=bitwarden,dc=com", - "cn=Adiana Claveau,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brigitte Tiseo,ou=Peons,dc=bitwarden,dc=com", - "cn=Keith Jahromi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elfreda Erkel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jacinta Boult,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mab Sizto,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Howard Scarlett,ou=Peons,dc=bitwarden,dc=com", - "cn=CoOp Grondin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Felton Bartz,ou=Peons,dc=bitwarden,dc=com", - "cn=Norene Molnar,ou=Management,dc=bitwarden,dc=com", - "cn=Gabey Solomon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Joanne Trefry,ou=Peons,dc=bitwarden,dc=com", - "cn=Sukey Grimm,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sari Realtime,ou=Management,dc=bitwarden,dc=com", - "cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fanni Hite,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Faiz Brodersen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kazem Snead,ou=Payroll,dc=bitwarden,dc=com", - "cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Donia McCormick,ou=Product Development,dc=bitwarden,dc=com", - "cn=Akin Gillies,ou=Peons,dc=bitwarden,dc=com", - "cn=Baldev Chugha,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carla Wichman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sarine Croxford,ou=Payroll,dc=bitwarden,dc=com", - "cn=Truda LaFargue,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marco Secrest,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bellina Onder,ou=Janitorial,dc=bitwarden,dc=com", - "cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden,dc=com", - "cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yumi Britton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Subhashini Tadge,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jacky Cavasin,ou=Management,dc=bitwarden,dc=com", - "cn=Katalin Qadri,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Evanne Holesinger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Malethia Elliot,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dhawal Howard,ou=Management,dc=bitwarden,dc=com", - "cn=Stacee Syed,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kem Birkwood,ou=Product Development,dc=bitwarden,dc=com", - "cn=Steffen Godo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Merlin McCormack,ou=Administrative,dc=bitwarden,dc=com", - "cn=Darell Sumi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tybie Hulen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Crysta Aderhold,ou=Management,dc=bitwarden,dc=com", - "cn=Ranna Barriere,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ignatius Bankhead,ou=Management,dc=bitwarden,dc=com", - "cn=Carlis McCafferty,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dewey Cozyn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Raphaela Bainton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Paulette Gateau,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Molly IRCMTL,ou=Peons,dc=bitwarden,dc=com", - "cn=Danial Simhan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aditya Nordstrom,ou=Management,dc=bitwarden,dc=com", - "cn=Jacquenetta Altherr,ou=Management,dc=bitwarden,dc=com", - "cn=Joeann DeAnda,ou=Administrative,dc=bitwarden,dc=com", - "cn=Valentina Andrew,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kemal Kaoud,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roseanna Koiste,ou=Administrative,dc=bitwarden,dc=com", - "cn=Camino Medlin,ou=Management,dc=bitwarden,dc=com", - "cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lilian Racette,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Clara Partello,ou=Administrative,dc=bitwarden,dc=com", - "cn=Birdie Pifko,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Salomi Erickson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Opal Lovas,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden,dc=com", - "cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden,dc=com", - "cn=Jai Malizia,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alice Krogh,ou=Management,dc=bitwarden,dc=com", - "cn=Ronan Gillard,ou=Payroll,dc=bitwarden,dc=com", - "cn=BettyAnn Sakauye,ou=Management,dc=bitwarden,dc=com", - "cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Adan Fralick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Koren Jalali,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Reza StAmour,ou=Payroll,dc=bitwarden,dc=com", - "cn=Binh DALE,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kanata Panch,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kanata Runciman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lester Brookhart,ou=Management,dc=bitwarden,dc=com", - "cn=Adelheid Godin,ou=Management,dc=bitwarden,dc=com", - "cn=Calypso Hagar,ou=Management,dc=bitwarden,dc=com", - "cn=Leann Bawek,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stormy Bayraktar,ou=Management,dc=bitwarden,dc=com", - "cn=Margarita Delisle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rao Fontana,ou=Management,dc=bitwarden,dc=com", - "cn=Richard Bachelu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tatsman Musa,ou=Management,dc=bitwarden,dc=com", - "cn=Pia Maksoud,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Scovill Sayar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Norry Shen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kayle Ahmad,ou=Payroll,dc=bitwarden,dc=com", - "cn=Debor Schiltz,ou=Peons,dc=bitwarden,dc=com", - "cn=Sandi Kochanski,ou=Management,dc=bitwarden,dc=com", - "cn=Hadria Rowley,ou=Peons,dc=bitwarden,dc=com", - "cn=Rosetta Toscano,ou=Peons,dc=bitwarden,dc=com", - "cn=Chi Winsborrow,ou=Payroll,dc=bitwarden,dc=com", - "cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ammar Foldes,ou=Management,dc=bitwarden,dc=com", - "cn=Andria Nagy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Earle Calkins,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Irc Loper,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dari Landriault,ou=Management,dc=bitwarden,dc=com", - "cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lonna Varano,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shan Heynen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carena Pennington,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Luci Sebastien,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden,dc=com", - "cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden,dc=com", - "cn=Gayleen Hagglund,ou=Management,dc=bitwarden,dc=com", - "cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sybyl Gubbins,ou=Management,dc=bitwarden,dc=com", - "cn=Coursdev Racette,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fayth Biggs,ou=Payroll,dc=bitwarden,dc=com", - "cn=Neely Elbeze,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jamin Shute,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sabuson Flach,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Laurence Wootton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eric Skrobecki,ou=Management,dc=bitwarden,dc=com", - "cn=Tatum Meffe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Reinhard Homonick,ou=Peons,dc=bitwarden,dc=com", - "cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Imojean Sinnott,ou=Payroll,dc=bitwarden,dc=com", - "cn=Matt Buttrey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tadayuki Seguin,ou=Management,dc=bitwarden,dc=com", - "cn=Cang Smyth,ou=Management,dc=bitwarden,dc=com", - "cn=Suzie Guillet,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leilah Traulich,ou=Management,dc=bitwarden,dc=com", - "cn=Horst Kaye,ou=Management,dc=bitwarden,dc=com", - "cn=Nuri Licerio,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tommi Preville,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fredericka Christopher,ou=Peons,dc=bitwarden,dc=com", - "cn=Avivah Shostak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tyne Briard,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Drucy Levere,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gianna Rivera,ou=Administrative,dc=bitwarden,dc=com", - "cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Natalya Heller,ou=Peons,dc=bitwarden,dc=com", - "cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dyana Harsch,ou=Management,dc=bitwarden,dc=com", - "cn=Kazem Guenette,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Allis McCartney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Arlana Shemwell,ou=Peons,dc=bitwarden,dc=com", - "cn=Francisca Pollinzi,ou=Peons,dc=bitwarden,dc=com", - "cn=Radomir Neate,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Earnest Wracher,ou=Peons,dc=bitwarden,dc=com", - "cn=Aurie Hinkle,ou=Management,dc=bitwarden,dc=com", - "cn=Durali Raynor,ou=Management,dc=bitwarden,dc=com", - "cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Isoft Parkash,ou=Peons,dc=bitwarden,dc=com", - "cn=Phillie Kneese,ou=Peons,dc=bitwarden,dc=com", - "cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lucinda Cuellar,ou=Peons,dc=bitwarden,dc=com", - "cn=Rozele Chahal,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marko Mgmt,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anissa Adcox,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hanh Glanfield,ou=Management,dc=bitwarden,dc=com", - "cn=Shailesh Bienek,ou=Management,dc=bitwarden,dc=com", - "cn=Gerardo Bedlington,ou=Peons,dc=bitwarden,dc=com", - "cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Erle Kasprzak,ou=Management,dc=bitwarden,dc=com", - "cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden,dc=com", - "cn=Knut Nilson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Laser Sandiford,ou=Payroll,dc=bitwarden,dc=com", - "cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden,dc=com", - "cn=Moon Bulanda,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Weiping Zeller,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lora Luetchford,ou=Management,dc=bitwarden,dc=com", - "cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mareah Horning,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kapsch Graver,ou=Administrative,dc=bitwarden,dc=com", - "cn=HoiKin Denley,ou=Management,dc=bitwarden,dc=com", - "cn=Huong Quinlan,ou=Management,dc=bitwarden,dc=com", - "cn=Vahe Ruffolo,ou=Peons,dc=bitwarden,dc=com", - "cn=Darina Duguay,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shayna Hollander,ou=Human Resources,dc=bitwarden,dc=com", - "cn=SikYin Gosset,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sapphire Dassie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Baha Brouillette,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Isabella Horning,ou=Management,dc=bitwarden,dc=com", - "cn=Avtar Nyce,ou=Administrative,dc=bitwarden,dc=com", - "cn=Horacio McGuire,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Huyen Guatto,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rustu Thill,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fayre Childers,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sabrina Lenir,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gale Goggin,ou=Management,dc=bitwarden,dc=com", - "cn=Louis Volker,ou=Payroll,dc=bitwarden,dc=com", - "cn=Myrah Roussier,ou=Product Testing,dc=bitwarden,dc=com", - "cn=LLoyd McKeegan,ou=Peons,dc=bitwarden,dc=com", - "cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Annadiane Ctas,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leyton Rolls,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gaal Ragan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hermine Stults,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Klarika MacLean,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Reginald Smit,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cassi McMahon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Myranda Javed,ou=Management,dc=bitwarden,dc=com", - "cn=Cherye Bukta,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carlynne Roob,ou=Administrative,dc=bitwarden,dc=com", - "cn=Wai Winters,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lester Koster,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Alev Llaguno,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jud Fairman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Toyanne Fishencord,ou=Management,dc=bitwarden,dc=com", - "cn=Clarinda Vele,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Blondie Moghis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden,dc=com", - "cn=Noraly Mackzum,ou=Peons,dc=bitwarden,dc=com", - "cn=Len Grzegorek,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ria NetworkOps,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sunny Forslund,ou=Management,dc=bitwarden,dc=com", - "cn=Fanchette Veals,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bobbee Combee,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bennett Attanasio,ou=Management,dc=bitwarden,dc=com", - "cn=Zongyi Stults,ou=Payroll,dc=bitwarden,dc=com", - "cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rob Goupil,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gwyneth Neander,ou=Peons,dc=bitwarden,dc=com", - "cn=Lillien Grohovsky,ou=Management,dc=bitwarden,dc=com", - "cn=Sianna Machika,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Blakeley Lagace,ou=Payroll,dc=bitwarden,dc=com", - "cn=Thuong Rains,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Peg Lahaie,ou=Administrative,dc=bitwarden,dc=com", - "cn=Annissa Bears,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jaffer Grosjean,ou=Management,dc=bitwarden,dc=com", - "cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Quoc Ennis,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Katalin Alteen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Suzie Caruso,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hanh Marui,ou=Peons,dc=bitwarden,dc=com", - "cn=Margette Bolly,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Arvin Mauldin,ou=Peons,dc=bitwarden,dc=com", - "cn=Stephi Sloan,ou=Management,dc=bitwarden,dc=com", - "cn=Ariella Kindel,ou=Management,dc=bitwarden,dc=com", - "cn=Sluis Rasmus,ou=Peons,dc=bitwarden,dc=com", - "cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Onida Kessing,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tasha Good,ou=Payroll,dc=bitwarden,dc=com", - "cn=Audrie Hadaway,ou=Payroll,dc=bitwarden,dc=com", - "cn=Natka Herzig,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Naima Simzer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lotte Ichizen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marco Seto,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mollee Ensing,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Roe Schenk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Christian Wales,ou=Peons,dc=bitwarden,dc=com", - "cn=Loes Rioux,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rubetta Lui,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lonni Sabadash,ou=Peons,dc=bitwarden,dc=com", - "cn=Monica Duensing,ou=Peons,dc=bitwarden,dc=com", - "cn=Colm Gratton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden,dc=com", - "cn=Denise Randall,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Haggar Labfive,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Willow Marko,ou=Management,dc=bitwarden,dc=com", - "cn=Paulinus McNabb,ou=Payroll,dc=bitwarden,dc=com", - "cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sula Piersol,ou=Product Development,dc=bitwarden,dc=com", - "cn=Phillip Shearin,ou=Peons,dc=bitwarden,dc=com", - "cn=Marg Villeneuve,ou=Management,dc=bitwarden,dc=com", - "cn=Halette Kirfman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vijya Wrigley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leung Veit,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Celka Sylvain,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Michiko Zanetti,ou=Payroll,dc=bitwarden,dc=com", - "cn=Derick Sheremeto,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shuji Blander,ou=Payroll,dc=bitwarden,dc=com", - "cn=Conni Dubee,ou=Payroll,dc=bitwarden,dc=com", - "cn=Charlot Kling,ou=Peons,dc=bitwarden,dc=com", - "cn=Ved Missailidis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Valera Rummans,ou=Payroll,dc=bitwarden,dc=com", - "cn=Neely Bresnan,ou=Peons,dc=bitwarden,dc=com", - "cn=Trey Zagrodney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cordie Hippert,ou=Management,dc=bitwarden,dc=com", - "cn=Zanni Godwin,ou=Peons,dc=bitwarden,dc=com", - "cn=Yannick Cricker,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tayeb Leahy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Paulo Goldner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Casi CHOCS,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nata Booking,ou=Peons,dc=bitwarden,dc=com", - "cn=Doretta Turkki,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hq Buske,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roe Levey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Orelia Salinas,ou=Payroll,dc=bitwarden,dc=com", - "cn=Atlante Standel,ou=Peons,dc=bitwarden,dc=com", - "cn=Leela Rylott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cavin Cobo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Moe Oastler,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lesley ElTorky,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brina Guttman,ou=Management,dc=bitwarden,dc=com", - "cn=Hiroko Fait,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Annie Eaton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maskell Fung,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden,dc=com", - "cn=Franky Ramachandran,ou=Product Development,dc=bitwarden,dc=com", - "cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sherri StJohn,ou=Payroll,dc=bitwarden,dc=com", - "cn=Laser Kokkat,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kjell Boatwright,ou=Management,dc=bitwarden,dc=com", - "cn=Lilly Keane,ou=Product Development,dc=bitwarden,dc=com", - "cn=Guenther Feith,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ross Whitaker,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tessi Franze,ou=Management,dc=bitwarden,dc=com", - "cn=Norel Aly,ou=Janitorial,dc=bitwarden,dc=com", - "cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Minetta Mackzum,ou=Administrative,dc=bitwarden,dc=com", - "cn=Javier Kinsey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Donelle Stites,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sophia Gazo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tosca Julian,ou=Peons,dc=bitwarden,dc=com", - "cn=Kellyann Stotz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ende Broome,ou=Administrative,dc=bitwarden,dc=com", - "cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Krystalle Barnes,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Janaye Woodward,ou=Management,dc=bitwarden,dc=com", - "cn=Margot Morin,ou=Peons,dc=bitwarden,dc=com", - "cn=Izumi LeGuen,ou=Peons,dc=bitwarden,dc=com", - "cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden,dc=com", - "cn=Constance Boynton,ou=Management,dc=bitwarden,dc=com", - "cn=Georgia Blazer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Millard Lightfield,ou=Payroll,dc=bitwarden,dc=com", - "cn=Clio Bugajska,ou=Management,dc=bitwarden,dc=com", - "cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anitra Metrics,ou=Administrative,dc=bitwarden,dc=com", - "cn=Manish Strachan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nessy Langton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leonida Moncur,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Uday Australia,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bren Marzella,ou=Management,dc=bitwarden,dc=com", - "cn=Vries Bathrick,ou=Management,dc=bitwarden,dc=com", - "cn=Maryann Felix,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carly Bugajski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Baruk Zinn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Robinett Etten,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Monteene Fraties,ou=Peons,dc=bitwarden,dc=com", - "cn=Jo Ritter,ou=Administrative,dc=bitwarden,dc=com", - "cn=Laurent Viehweg,ou=Administrative,dc=bitwarden,dc=com", - "cn=Devonne Erickson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chantal Di,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sluis Quek,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maxey Cavasso,ou=Management,dc=bitwarden,dc=com", - "cn=Claire Greveling,ou=Product Development,dc=bitwarden,dc=com", - "cn=Keven Krishnan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dau Banigan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kayla Carlisle,ou=Administrative,dc=bitwarden,dc=com", - "cn=Juozas Hengl,ou=Management,dc=bitwarden,dc=com", - "cn=Ramniklal Traulich,ou=Management,dc=bitwarden,dc=com", - "cn=David Vennos,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shiela Nixon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mona Kohler,ou=Management,dc=bitwarden,dc=com", - "cn=Elene DOrazio,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elspeth Bussey,ou=Peons,dc=bitwarden,dc=com", - "cn=Mari Abbott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden,dc=com", - "cn=Josine Hwang,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gypsy Weiser,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nir Cornaro,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bettine Centis,ou=Peons,dc=bitwarden,dc=com", - "cn=Sami Phipps,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Valaria Jamshidi,ou=Peons,dc=bitwarden,dc=com", - "cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Loleta DuBois,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Suzi Penfield,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mot Harper,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Beata Shyu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carter Munroe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Johnnie Holmes,ou=Peons,dc=bitwarden,dc=com", - "cn=Rollo Rolfes,ou=Management,dc=bitwarden,dc=com", - "cn=Wendye Queries,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tonie Ausley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bertina Winchester,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Knut Louisseize,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Miguelita Merworth,ou=Peons,dc=bitwarden,dc=com", - "cn=Vlad Hilder,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Norry Hord,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kurt Bozicevich,ou=Peons,dc=bitwarden,dc=com", - "cn=Charles Orsini,ou=Management,dc=bitwarden,dc=com", - "cn=Meriline Tom,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Genga Kahn,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gates Scharf,ou=Peons,dc=bitwarden,dc=com", - "cn=Isabelita Weger,ou=Management,dc=bitwarden,dc=com", - "cn=Dulci Arsenault,ou=Peons,dc=bitwarden,dc=com", - "cn=Lurleen Mowbray,ou=Management,dc=bitwarden,dc=com", - "cn=Kary Bickford,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tsugio Knorp,ou=Product Development,dc=bitwarden,dc=com", - "cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sindee Haertel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Reiko Lemay,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Karoline Korey,ou=Peons,dc=bitwarden,dc=com", - "cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zonnya Penn,ou=Payroll,dc=bitwarden,dc=com", - "cn=Christoph Lorance,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vanity Tropea,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cyb Centers,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Muire Bakhach,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eliza Gros,ou=Peons,dc=bitwarden,dc=com", - "cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Brita Jodoin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Renu Paynter,ou=Administrative,dc=bitwarden,dc=com", - "cn=Honey Karole,ou=Payroll,dc=bitwarden,dc=com", - "cn=MaryJane Cusick,ou=Peons,dc=bitwarden,dc=com", - "cn=Romina McClain,ou=Payroll,dc=bitwarden,dc=com", - "cn=Robinett Zeisler,ou=Management,dc=bitwarden,dc=com", - "cn=Ervin Guindi,ou=Management,dc=bitwarden,dc=com", - "cn=Vernice Brandon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wil Vasil,ou=Peons,dc=bitwarden,dc=com", - "cn=Anader Atp,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cecil Martincich,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Madelin Hysler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Colleen Hotlist,ou=Administrative,dc=bitwarden,dc=com", - "cn=Clarence Baragar,ou=Peons,dc=bitwarden,dc=com", - "cn=Marvette Mony,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Janette Stasyszyn,ou=Management,dc=bitwarden,dc=com", - "cn=Colette Iu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Morissa Weiss,ou=Payroll,dc=bitwarden,dc=com", - "cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Olva Smid,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Beulah Kacor,ou=Management,dc=bitwarden,dc=com", - "cn=Stefa Aksel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sadru Quintana,ou=Administrative,dc=bitwarden,dc=com", - "cn=Suzan Dourley,ou=Peons,dc=bitwarden,dc=com", - "cn=Wil Hirose,ou=Management,dc=bitwarden,dc=com", - "cn=Auria Remson,ou=Management,dc=bitwarden,dc=com", - "cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pennie Akai,ou=Peons,dc=bitwarden,dc=com", - "cn=Allyce Versteeg,ou=Peons,dc=bitwarden,dc=com", - "cn=Norah Saunderson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chery Vieira,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Karita Hoekstra,ou=Peons,dc=bitwarden,dc=com", - "cn=Milt Pilipchuk,ou=Peons,dc=bitwarden,dc=com", - "cn=Pal Hnidek,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Teodora Weidinger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stephen Shearer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Celka Antle,ou=Peons,dc=bitwarden,dc=com", - "cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Binnie Newham,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ursula Duvarci,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ted Clinton,ou=Peons,dc=bitwarden,dc=com", - "cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ivie Petrie,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kuswara Heighton,ou=Management,dc=bitwarden,dc=com", - "cn=Johanna Virani,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marit Simons,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Joel Hinton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mentor Kimler,ou=Payroll,dc=bitwarden,dc=com", - "cn=Thuy Kolos,ou=Peons,dc=bitwarden,dc=com", - "cn=Sergiu Chai,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sande Desjarlais,ou=Product Development,dc=bitwarden,dc=com", - "cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Allis Sherard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Miriya Planthara,ou=Management,dc=bitwarden,dc=com", - "cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden,dc=com", - "cn=HackHoo Jatar,ou=Management,dc=bitwarden,dc=com", - "cn=Vonni Mansi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mair Tsui,ou=Payroll,dc=bitwarden,dc=com", - "cn=Darya Marttinen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kees Arsena,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Darleen Flowers,ou=Product Development,dc=bitwarden,dc=com", - "cn=Noyes Huenemann,ou=Management,dc=bitwarden,dc=com", - "cn=Buster Myre,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tristano Angus,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Anita Roesler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Monling Goin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dannye Munsey,ou=Peons,dc=bitwarden,dc=com", - "cn=Agnella Pinalez,ou=Peons,dc=bitwarden,dc=com", - "cn=Shashank Romberg,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Narinder Vilhan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jeremy Schuster,ou=Management,dc=bitwarden,dc=com", - "cn=Saraann Blakkolb,ou=Management,dc=bitwarden,dc=com", - "cn=Aida Brunelle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Merrielle Hine,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden,dc=com", - "cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden,dc=com", - "cn=Beckie Cowell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maso Mathewson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Arnis Fredette,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maddie Bowick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jolene Datema,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kuswara Musick,ou=Management,dc=bitwarden,dc=com", - "cn=Belia Mustafa,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kelcie Rowe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Oguz Crafton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anallese Luszczek,ou=Product Development,dc=bitwarden,dc=com", - "cn=Raeann Fu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dyanna Hartling,ou=Payroll,dc=bitwarden,dc=com", - "cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hamid Peng,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Michaela Minichillo,ou=Peons,dc=bitwarden,dc=com", - "cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Romano Moosavi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nannette Pantages,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zaihua Dhuga,ou=Peons,dc=bitwarden,dc=com", - "cn=Niki Brock,ou=Management,dc=bitwarden,dc=com", - "cn=Lucila Jatar,ou=Management,dc=bitwarden,dc=com", - "cn=Reiko StJames,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carmen Poulin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Loree Dorval,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Reinhold Ballinger,ou=Management,dc=bitwarden,dc=com", - "cn=Mat Smyth,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lesya Maye,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dixie Oshinski,ou=Management,dc=bitwarden,dc=com", - "cn=Stephanie Crerar,ou=Peons,dc=bitwarden,dc=com", - "cn=Miguelita Wyss,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lee Kreimer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Violetta Nttest,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chau Gyenes,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melva Kaefer,ou=Management,dc=bitwarden,dc=com", - "cn=Celinka Laprade,ou=Peons,dc=bitwarden,dc=com", - "cn=Abbey Firat,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Coleen Kovats,ou=Product Development,dc=bitwarden,dc=com", - "cn=Merla Tsitsior,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marek Harwerth,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bertie Whatley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Message Cohen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chai NTINASH,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karin Schaller,ou=Management,dc=bitwarden,dc=com", - "cn=Nicolea StMartin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Heda Bowens,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Conni Westgarth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Joell Bolzon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Christianne Carling,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nessy Grewal,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lex Woodyer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pamela Fon,ou=Peons,dc=bitwarden,dc=com", - "cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden,dc=com", - "cn=Loris Winterberg,ou=Administrative,dc=bitwarden,dc=com", - "cn=Business Huether,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Susanne Repeta,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Willie Murphy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Donella Duncan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden,dc=com", - "cn=JeanBernard Coord,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tove Mettrey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kathye Terwilligar,ou=Peons,dc=bitwarden,dc=com", - "cn=Emilda Wylie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anette McBryan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jannelle Burnside,ou=Management,dc=bitwarden,dc=com", - "cn=Swact Evans,ou=Management,dc=bitwarden,dc=com", - "cn=Almeda Bloemker,ou=Peons,dc=bitwarden,dc=com", - "cn=Ronn Peschke,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ainslee Scp,ou=Management,dc=bitwarden,dc=com", - "cn=Claudina Jablonski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Olwen Garey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden,dc=com", - "cn=Empdb Jahromi,ou=Peons,dc=bitwarden,dc=com", - "cn=Ri Stouder,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Darlene Mahonen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mayumi Piitz,ou=Peons,dc=bitwarden,dc=com", - "cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jeri Nadeau,ou=Product Development,dc=bitwarden,dc=com", - "cn=Valentina Diogo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Errol Pieron,ou=Administrative,dc=bitwarden,dc=com", - "cn=Blanca Murock,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rebeka McKinley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sean Stayton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elex Zaharychuk,ou=Management,dc=bitwarden,dc=com", - "cn=Francesca Alguire,ou=Management,dc=bitwarden,dc=com", - "cn=Georgie Bosy,ou=Peons,dc=bitwarden,dc=com", - "cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fenelia Costache,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mab Lao,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sayla Varia,ou=Payroll,dc=bitwarden,dc=com", - "cn=Helyn Roberts,ou=Peons,dc=bitwarden,dc=com", - "cn=Emr Zisu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ame Frie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Wonda Chao,ou=Administrative,dc=bitwarden,dc=com", - "cn=Oralle Checinski,ou=Peons,dc=bitwarden,dc=com", - "cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden,dc=com", - "cn=Birendra Britton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rebeka McCall,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Constantine Bulanda,ou=Management,dc=bitwarden,dc=com", - "cn=Sibel Kurdas,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pcta Littlewood,ou=Management,dc=bitwarden,dc=com", - "cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Normand Simpkin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Viole Scates,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Melisent McAfee,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jemima Hennelly,ou=Peons,dc=bitwarden,dc=com", - "cn=Halette Hoag,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fayre Patenaude,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rob Allan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Noyes Bergman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Else McCollam,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bellina Koens,ou=Management,dc=bitwarden,dc=com", - "cn=Lian Shapcott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Florella Pichocki,ou=Management,dc=bitwarden,dc=com", - "cn=Maribel Zafarano,ou=Management,dc=bitwarden,dc=com", - "cn=Ren Dickerson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Darla Puglia,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Stacee Mamoulides,ou=Peons,dc=bitwarden,dc=com", - "cn=Adrien Bennatt,ou=Management,dc=bitwarden,dc=com", - "cn=Stesha Cotten,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ryann McRonald,ou=Management,dc=bitwarden,dc=com", - "cn=Joete Pham,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kimmie Dyess,ou=Management,dc=bitwarden,dc=com", - "cn=Crin Seeley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mercie Polson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elvert Tripp,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mead Urquhart,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jan Delorenzi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Johnny Stetter,ou=Management,dc=bitwarden,dc=com", - "cn=Marjan Bourk,ou=Management,dc=bitwarden,dc=com", - "cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marjan Angell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Darrol Calder,ou=Administrative,dc=bitwarden,dc=com", - "cn=Meridian Buder,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ericka Contardo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Saeed Liston,ou=Peons,dc=bitwarden,dc=com", - "cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cinnamon Jurman,ou=Peons,dc=bitwarden,dc=com", - "cn=Karlie Hord,ou=Peons,dc=bitwarden,dc=com", - "cn=Ozlem Switching,ou=Peons,dc=bitwarden,dc=com", - "cn=Seven Figura,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Birendra Helton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Madan Babcock,ou=Management,dc=bitwarden,dc=com", - "cn=Mandi Whitford,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ilse Silwer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tommy Fabry,ou=Administrative,dc=bitwarden,dc=com", - "cn=Doloritas Renton,ou=Peons,dc=bitwarden,dc=com", - "cn=Beb Carlson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Audrey Charchanko,ou=Peons,dc=bitwarden,dc=com", - "cn=Grantley Walles,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vale Yost,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kalie Krausbar,ou=Management,dc=bitwarden,dc=com", - "cn=Martino Busby,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Selma Kletchko,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lineth Montoute,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jolie Langenberg,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carm Mach,ou=Janitorial,dc=bitwarden,dc=com", - "cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden,dc=com", - "cn=Radio Balog,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zere Zafarullah,ou=Management,dc=bitwarden,dc=com", - "cn=Waly Grabowski,ou=Management,dc=bitwarden,dc=com", - "cn=Dallas Smelters,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zalee Caron,ou=Product Development,dc=bitwarden,dc=com", - "cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden,dc=com", - "cn=Konstanze Cordell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Froukje Ecker,ou=Management,dc=bitwarden,dc=com", - "cn=Petri Uhlig,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tessa Pino,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Britni Routing,ou=Administrative,dc=bitwarden,dc=com", - "cn=Michelle Mirza,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Starlin Schilling,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Manya Cripps,ou=Administrative,dc=bitwarden,dc=com", - "cn=Esther Buttrey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tamma Sellwood,ou=Administrative,dc=bitwarden,dc=com", - "cn=RongChin Fisher,ou=Management,dc=bitwarden,dc=com", - "cn=Karena Bissegger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zainab Musgrove,ou=Peons,dc=bitwarden,dc=com", - "cn=Rebekah Fenner,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gabey Florescu,ou=Peons,dc=bitwarden,dc=com", - "cn=Padraig Scorziello,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clarisse Venne,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sally Gimon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Siusan Surridge,ou=Management,dc=bitwarden,dc=com", - "cn=Dorris MacDonald,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zoltan Copes,ou=Peons,dc=bitwarden,dc=com", - "cn=Annadiane Moulton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chrystal Salkok,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ayaz McFeely,ou=Payroll,dc=bitwarden,dc=com", - "cn=Missie Dinnin,ou=Peons,dc=bitwarden,dc=com", - "cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karlee Cheval,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Constantia Hampshire,ou=Peons,dc=bitwarden,dc=com", - "cn=Delle Stansfield,ou=Administrative,dc=bitwarden,dc=com", - "cn=Percy Fiset,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Thea Goh,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Evanne Twiss,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden,dc=com", - "cn=Opaline Bayno,ou=Management,dc=bitwarden,dc=com", - "cn=Delbert Hodgens,ou=Payroll,dc=bitwarden,dc=com", - "cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden,dc=com", - "cn=Antonio Ide,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden,dc=com", - "cn=Berget Feil,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Matty Danielak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Prafula Stasney,ou=Management,dc=bitwarden,dc=com", - "cn=Eyk Bradford,ou=Peons,dc=bitwarden,dc=com", - "cn=Della Barbe,ou=Management,dc=bitwarden,dc=com", - "cn=Darelle Waid,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dino Farren,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ruth Chouinard,ou=Peons,dc=bitwarden,dc=com", - "cn=Tiina Averette,ou=Product Development,dc=bitwarden,dc=com", - "cn=Meghann Marasco,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Agnella Chona,ou=Management,dc=bitwarden,dc=com", - "cn=Olimpia Stetter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zea Hoadley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kanu Constantinides,ou=Management,dc=bitwarden,dc=com", - "cn=Priti Hummerston,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Siobhan Duffney,ou=Product Development,dc=bitwarden,dc=com", - "cn=KaiWai Greenberg,ou=Management,dc=bitwarden,dc=com", - "cn=Phyllys Relations,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Onette Erwin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Micheal Threader,ou=Peons,dc=bitwarden,dc=com", - "cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Melitta Teacher,ou=Management,dc=bitwarden,dc=com", - "cn=Francesca Spinks,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kippie Genova,ou=Human Resources,dc=bitwarden,dc=com", - "cn=My Geuder,ou=Payroll,dc=bitwarden,dc=com", - "cn=Corene Goldman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bea Shanahan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Adah Simzer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Minnesota Safah,ou=Administrative,dc=bitwarden,dc=com", - "cn=Perrine Ketkar,ou=Peons,dc=bitwarden,dc=com", - "cn=Jilly Kwok,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sharona Lunde,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lynnette Juskevicius,ou=Management,dc=bitwarden,dc=com", - "cn=PeyKee Gunther,ou=Administrative,dc=bitwarden,dc=com", - "cn=Howden LaBauve,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dana Linaugh,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gnni Schafer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Callida Tropea,ou=Management,dc=bitwarden,dc=com", - "cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amara Zisu,ou=Product Development,dc=bitwarden,dc=com", - "cn=Delly Macklem,ou=Product Development,dc=bitwarden,dc=com", - "cn=Faustina Yedema,ou=Payroll,dc=bitwarden,dc=com", - "cn=Annamaria Handforth,ou=Administrative,dc=bitwarden,dc=com", - "cn=Korney Gehm,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Archie Klimon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Angela Holland,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marcellina Clairmont,ou=Peons,dc=bitwarden,dc=com", - "cn=Kristien Yamamoto,ou=Peons,dc=bitwarden,dc=com", - "cn=Nayan Simcox,ou=Payroll,dc=bitwarden,dc=com", - "cn=Celisse Draier,ou=Product Development,dc=bitwarden,dc=com", - "cn=Matty Vasile,ou=Payroll,dc=bitwarden,dc=com", - "cn=WingKi McClain,ou=Peons,dc=bitwarden,dc=com", - "cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shutterbug Ta,ou=Product Development,dc=bitwarden,dc=com", - "cn=Les Oreilly,ou=Administrative,dc=bitwarden,dc=com", - "cn=Veen Cawley,ou=Management,dc=bitwarden,dc=com", - "cn=Stergios Romanowski,ou=Peons,dc=bitwarden,dc=com", - "cn=Shyam Hipson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carley Dal,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Chickie Dyna,ou=Management,dc=bitwarden,dc=com", - "cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Norstar Bouick,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kapsch Bitton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yoko Feder,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eugine Werick,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marley Newcomb,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zhanna Lyons,ou=Management,dc=bitwarden,dc=com", - "cn=Desire Adam,ou=Administrative,dc=bitwarden,dc=com", - "cn=Joni Dhir,ou=Payroll,dc=bitwarden,dc=com", - "cn=Quyen Boyle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fallon Lavigne,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aleda Kato,ou=Peons,dc=bitwarden,dc=com", - "cn=Cristine Musser,ou=Peons,dc=bitwarden,dc=com", - "cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shantee Tsao,ou=Administrative,dc=bitwarden,dc=com", - "cn=Phu Krowlek,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Estrella Infocenter,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Steinar Mathur,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jayme Shemwell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Masha McGinn,ou=Administrative,dc=bitwarden,dc=com", - "cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Astrix Tiller,ou=Peons,dc=bitwarden,dc=com", - "cn=Arlan Fadel,ou=Management,dc=bitwarden,dc=com", - "cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Siouxie Norgaard,ou=Management,dc=bitwarden,dc=com", - "cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden,dc=com", - "cn=Phaedra Mavrou,ou=Peons,dc=bitwarden,dc=com", - "cn=Thang Kerr,ou=Peons,dc=bitwarden,dc=com", - "cn=Helsa Cau,ou=Management,dc=bitwarden,dc=com", - "cn=Dyana Tchir,ou=Management,dc=bitwarden,dc=com", - "cn=Elga Hrenyk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brooks Helgeland,ou=Management,dc=bitwarden,dc=com", - "cn=Toshi Ircmer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden,dc=com", - "cn=Yosuf Diaconu,ou=Peons,dc=bitwarden,dc=com", - "cn=Nomi Kielstra,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carolyn Sanche,ou=Peons,dc=bitwarden,dc=com", - "cn=Marj Anker,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Agneta Gundlach,ou=Peons,dc=bitwarden,dc=com", - "cn=Jeffery Pafilis,ou=Management,dc=bitwarden,dc=com", - "cn=Isoft Buchanan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cassaundra Gerenser,ou=Management,dc=bitwarden,dc=com", - "cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roberta Rorie,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bliss Fahey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden,dc=com", - "cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wargnier Deployment,ou=Management,dc=bitwarden,dc=com", - "cn=Orsa Brunsting,ou=Peons,dc=bitwarden,dc=com", - "cn=Gudrun Yassa,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden,dc=com", - "cn=Damon Bradbury,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden,dc=com", - "cn=Onette Garguilo,ou=Peons,dc=bitwarden,dc=com", - "cn=Meridel Dahl,ou=Management,dc=bitwarden,dc=com", - "cn=Clem Gallagher,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lanni Totti,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Robertson Soh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pavia Costen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karyn Holz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ikram Thiel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden,dc=com", - "cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ladan Fabrizio,ou=Peons,dc=bitwarden,dc=com", - "cn=Leeanne Credille,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Augusto Aguiar,ou=Management,dc=bitwarden,dc=com", - "cn=Gayl IBNTAS,ou=Peons,dc=bitwarden,dc=com", - "cn=Painterson Watkinson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kieran Copley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Othilie Sconzo,ou=Peons,dc=bitwarden,dc=com", - "cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Raju Sellars,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carly Kammerer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dian Rhoads,ou=Administrative,dc=bitwarden,dc=com", - "cn=Utpala Weldon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden,dc=com", - "cn=Thornton McDermott,ou=Product Development,dc=bitwarden,dc=com", - "cn=Juditha Shirai,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Wini Flynn,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Open Simhan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Adelina Grigsby,ou=Management,dc=bitwarden,dc=com", - "cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden,dc=com", - "cn=Woon Gillis,ou=Product Development,dc=bitwarden,dc=com", - "cn=Remi Lillis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dagmar Niles,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Geralene Groleau,ou=Peons,dc=bitwarden,dc=com", - "cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Colm Katsouras,ou=Peons,dc=bitwarden,dc=com", - "cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden,dc=com", - "cn=Caroline Darou,ou=Management,dc=bitwarden,dc=com", - "cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maegan Rafter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Margery Buckalew,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Charleen Willison,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Basia Ouellette,ou=Management,dc=bitwarden,dc=com", - "cn=Latashia Ridgeway,ou=Peons,dc=bitwarden,dc=com", - "cn=Rhodia SOS,ou=Administrative,dc=bitwarden,dc=com", - "cn=WaiHung Kan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ehab Gidaro,ou=Administrative,dc=bitwarden,dc=com", - "cn=Almeda Barstow,ou=Peons,dc=bitwarden,dc=com", - "cn=Hernan Newbold,ou=Payroll,dc=bitwarden,dc=com", - "cn=Elonore Lorenc,ou=Product Development,dc=bitwarden,dc=com", - "cn=Melva Dingle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Janka Gorfine,ou=Peons,dc=bitwarden,dc=com", - "cn=Carleen Natiuk,ou=Management,dc=bitwarden,dc=com", - "cn=Dimitra Prokes,ou=Management,dc=bitwarden,dc=com", - "cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", - "cn=WaiMan Sinha,ou=Peons,dc=bitwarden,dc=com", - "cn=Therese Nikfarjam,ou=Peons,dc=bitwarden,dc=com", - "cn=Geer Lamonde,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chelsae Polder,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shuji Pien,ou=Peons,dc=bitwarden,dc=com", - "cn=Annet Rege,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ellen Vertolli,ou=Management,dc=bitwarden,dc=com", - "cn=Zandra Belk,ou=Management,dc=bitwarden,dc=com", - "cn=Milan Shu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lubomir Carver,ou=Peons,dc=bitwarden,dc=com", - "cn=Kieron Remrey,ou=Payroll,dc=bitwarden,dc=com", - "cn=Frayda Urquhart,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kat Torok,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Selina Sauder,ou=Administrative,dc=bitwarden,dc=com", - "cn=Joshi Wery,ou=Administrative,dc=bitwarden,dc=com", - "cn=Corilla Carey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Devon Patchcor,ou=Peons,dc=bitwarden,dc=com", - "cn=Thor Crompton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sallee Demone,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Patsy Hanley,ou=Peons,dc=bitwarden,dc=com", - "cn=Lily Sturdivant,ou=Management,dc=bitwarden,dc=com", - "cn=Howie Howarth,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jo Tropeano,ou=Administrative,dc=bitwarden,dc=com", - "cn=Howard Acs,ou=Payroll,dc=bitwarden,dc=com", - "cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Otakar Carella,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Digby Papajanis,ou=Peons,dc=bitwarden,dc=com", - "cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Trixy Grewal,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sami Huguin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kui Mulero,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tyne McHarg,ou=Product Development,dc=bitwarden,dc=com", - "cn=Constantin Harkness,ou=Product Development,dc=bitwarden,dc=com", - "cn=Galen Mariani,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dolores Lacosse,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vradmin Aasen,ou=Peons,dc=bitwarden,dc=com", - "cn=Roseline Revis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eiji Tel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mariesara Reichman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sandi Bush,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Emmalynn Dai,ou=Payroll,dc=bitwarden,dc=com", - "cn=Josef Godcharles,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gay Ondovcik,ou=Administrative,dc=bitwarden,dc=com", - "cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cad fpsched,ou=Administrative,dc=bitwarden,dc=com", - "cn=Oscar Paris,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chan Blumer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chabert Hawkins,ou=Payroll,dc=bitwarden,dc=com", - "cn=VanKing Iskandar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carena Toplis,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nelleke Fredette,ou=Payroll,dc=bitwarden,dc=com", - "cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jock Ahdieh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ru Lindt,ou=Peons,dc=bitwarden,dc=com", - "cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden,dc=com", - "cn=Desiri Picard,ou=Management,dc=bitwarden,dc=com", - "cn=Mewa Melfi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Elio Naylor,ou=Peons,dc=bitwarden,dc=com", - "cn=Vince Adamowicz,ou=Peons,dc=bitwarden,dc=com", - "cn=Annis Emery,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Valma Standen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mauro Meres,ou=Product Development,dc=bitwarden,dc=com", - "cn=Brianne Takagi,ou=Peons,dc=bitwarden,dc=com", - "cn=Azra Gravely,ou=Management,dc=bitwarden,dc=com", - "cn=Liza Centeno,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lendon Pinney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Madelina Naolu,ou=Management,dc=bitwarden,dc=com", - "cn=Brittan Vela,ou=Peons,dc=bitwarden,dc=com", - "cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marcos Spicer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pierrette Deleon,ou=Management,dc=bitwarden,dc=com", - "cn=Darell Groth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kathi Altman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Moel Pieroway,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mildred Fansher,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Georgina Hardersen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rasia Jakim,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rycca Satterfield,ou=Peons,dc=bitwarden,dc=com", - "cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden,dc=com", - "cn=Merissa Jessup,ou=Management,dc=bitwarden,dc=com", - "cn=Divine Zarate,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nitin Wolfe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden,dc=com", - "cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bijan Badjari,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Margy Chartrand,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Velma Portz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dodie Bandel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Georgianne Bydeley,ou=Management,dc=bitwarden,dc=com", - "cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Barbe Bolduc,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shaylah Demren,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ngai Konarski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Candi Ashley,ou=Peons,dc=bitwarden,dc=com", - "cn=Darko Ledoux,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Trish Laberge,ou=Payroll,dc=bitwarden,dc=com", - "cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Charee Fiegel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eirena McNeese,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden,dc=com", - "cn=Meade Epting,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eliza Marko,ou=Product Development,dc=bitwarden,dc=com", - "cn=Doll Crutchfield,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sergei Edwards,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Alfons Besson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Delmar Modl,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Peggie Jung,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mot Goodner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shaine Davalo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rod Hingtgen,ou=Peons,dc=bitwarden,dc=com", - "cn=Maddalena Melton,ou=Peons,dc=bitwarden,dc=com", - "cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gusta Reavis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ramanand Noy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tom Gowens,ou=Peons,dc=bitwarden,dc=com", - "cn=Sayed Wilke,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jeralee Kiefer,ou=Peons,dc=bitwarden,dc=com", - "cn=Tatsuya Kayle,ou=Management,dc=bitwarden,dc=com", - "cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Roselin Zahn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shanda deRosenroll,ou=Management,dc=bitwarden,dc=com", - "cn=Meriline Parkin,ou=Management,dc=bitwarden,dc=com", - "cn=Minnesota Milway,ou=Product Development,dc=bitwarden,dc=com", - "cn=Oren Keffer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Blanche Lantto,ou=Peons,dc=bitwarden,dc=com", - "cn=Penny Polakowski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Helene Halford,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ladonna Kester,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carling Castillo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cark Redish,ou=Management,dc=bitwarden,dc=com", - "cn=Caresse Appenzeller,ou=Peons,dc=bitwarden,dc=com", - "cn=Sheree Berman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anabal Hathaway,ou=Payroll,dc=bitwarden,dc=com", - "cn=Valma Keffer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Johnny Harron,ou=Payroll,dc=bitwarden,dc=com", - "cn=Channa Brokaw,ou=Product Development,dc=bitwarden,dc=com", - "cn=Annabella Spaugh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Klink Sprott,ou=Administrative,dc=bitwarden,dc=com", - "cn=Roe Reinboth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cathrine Mashura,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shigeru Rausch,ou=Payroll,dc=bitwarden,dc=com", - "cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ingeberg Eagles,ou=Management,dc=bitwarden,dc=com", - "cn=Arjun Auker,ou=Peons,dc=bitwarden,dc=com", - "cn=Cary Gillot,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kishor Aurelius,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mair Dragert,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nata Manson,ou=Management,dc=bitwarden,dc=com", - "cn=Carmody Stough,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vicky Kenol,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lorelle Korf,ou=Peons,dc=bitwarden,dc=com", - "cn=Angele Dangubic,ou=Peons,dc=bitwarden,dc=com", - "cn=Ilene Knio,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Harrison Klodt,ou=Administrative,dc=bitwarden,dc=com", - "cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Orel Hassenklover,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sonya Hixson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Simen Pankhurst,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alberta Roddy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shelley Guitard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Benthem Aghili,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nad Sheth,ou=Peons,dc=bitwarden,dc=com", - "cn=Katherine AuYeung,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rollie Lohoar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Siamak Tullo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marco Trautman,ou=Management,dc=bitwarden,dc=com", - "cn=James Silgardo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gipsy Letulle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Missagh Breglec,ou=Payroll,dc=bitwarden,dc=com", - "cn=Debadeep Karass,ou=Product Development,dc=bitwarden,dc=com", - "cn=Madeline Bir,ou=Payroll,dc=bitwarden,dc=com", - "cn=Betsey Doi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden,dc=com", - "cn=Indiana Schejbal,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mickie Farhan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cubicle McMann,ou=Administrative,dc=bitwarden,dc=com", - "cn=Olva Mathewson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden,dc=com", - "cn=Kiet Strober,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Meggy Vardy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cyrine Marceau,ou=Management,dc=bitwarden,dc=com", - "cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Junk Kopala,ou=Payroll,dc=bitwarden,dc=com", - "cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shandra Connell,ou=Management,dc=bitwarden,dc=com", - "cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Munaz Reynolds,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lavinia LaBauve,ou=Peons,dc=bitwarden,dc=com", - "cn=Lilllie Ruthart,ou=Peons,dc=bitwarden,dc=com", - "cn=Mani Keseris,ou=Payroll,dc=bitwarden,dc=com", - "cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lilith LLoyd,ou=Management,dc=bitwarden,dc=com", - "cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Luann Rodger,ou=Product Development,dc=bitwarden,dc=com", - "cn=Evania Keehan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vivianna Rassell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rudie Dunlay,ou=Payroll,dc=bitwarden,dc=com", - "cn=Berti JantzLee,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Aigneis Marghetis,ou=Peons,dc=bitwarden,dc=com", - "cn=Gordon Buhler,ou=Management,dc=bitwarden,dc=com", - "cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Austine ODale,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lab Carstensen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amalita Smith,ou=Peons,dc=bitwarden,dc=com", - "cn=Barbe Degen,ou=Management,dc=bitwarden,dc=com", - "cn=Ros Varkel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Anissa Belley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Khurshid Balsas,ou=Peons,dc=bitwarden,dc=com", - "cn=Amata Byers,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tonya Brough,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nancy Stocker,ou=Peons,dc=bitwarden,dc=com", - "cn=Analiese Hooper,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mikelis Chaves,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liv Ayukawa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Amir Andre,ou=Peons,dc=bitwarden,dc=com", - "cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jacob Mahin,ou=Management,dc=bitwarden,dc=com", - "cn=Genvieve Albers,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mallory Xenos,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden,dc=com", - "cn=Christie Shapiro,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jackie Au,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marshall Paine,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roman Materna,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jerald Gutcher,ou=Management,dc=bitwarden,dc=com", - "cn=Berty Bittman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden,dc=com", - "cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Adara Smyth,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Robenia Prescott,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Berna Mahaffee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Drusilla Riou,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elsie Ryals,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sanae Glaser,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Melisenda Shuster,ou=Peons,dc=bitwarden,dc=com", - "cn=Jasver Loza,ou=Management,dc=bitwarden,dc=com", - "cn=Joseph Beshai,ou=Management,dc=bitwarden,dc=com", - "cn=Rebecca Landriault,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kokkhiang Holness,ou=Management,dc=bitwarden,dc=com", - "cn=Stormy Berger,ou=Management,dc=bitwarden,dc=com", - "cn=Olva Mooder,ou=Peons,dc=bitwarden,dc=com", - "cn=Tash Ficco,ou=Payroll,dc=bitwarden,dc=com", - "cn=Paulita Jobs,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kanata Ning,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dalila Shull,ou=Payroll,dc=bitwarden,dc=com", - "cn=Georgianne Bour,ou=Administrative,dc=bitwarden,dc=com", - "cn=Venita Brandon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Krishna Kiens,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ashlen Plssup,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hojjat Burchat,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mani Gravitte,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chiu Pilipchuk,ou=Management,dc=bitwarden,dc=com", - "cn=Shamim Uffner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Trude Graves,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Caressa Balogh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lyn Serre,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clemmy Doda,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kesley Nallengara,ou=Management,dc=bitwarden,dc=com", - "cn=Joji Skeoch,ou=Management,dc=bitwarden,dc=com", - "cn=Gwyn Peerman,ou=Management,dc=bitwarden,dc=com", - "cn=Mila Lodeserto,ou=Administrative,dc=bitwarden,dc=com", - "cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bess Ottowa,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sieber Churchill,ou=Peons,dc=bitwarden,dc=com", - "cn=Lyndy Sides,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lino Rix,ou=Administrative,dc=bitwarden,dc=com", - "cn=Charangit Desplanque,ou=Product Development,dc=bitwarden,dc=com", - "cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden,dc=com", - "cn=Barry Vajentic,ou=Product Development,dc=bitwarden,dc=com", - "cn=Waiching Morrin,ou=Management,dc=bitwarden,dc=com", - "cn=Sattar Kane,ou=Payroll,dc=bitwarden,dc=com", - "cn=YukWha Kielstra,ou=Management,dc=bitwarden,dc=com", - "cn=Sharon Meletios,ou=Management,dc=bitwarden,dc=com", - "cn=Binni Gaines,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ying Spejewski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Agnesse Nessman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yoda Milne,ou=Peons,dc=bitwarden,dc=com", - "cn=Marsh McGurn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hilda Baldridge,ou=Management,dc=bitwarden,dc=com", - "cn=Caro Vopalensky,ou=Product Development,dc=bitwarden,dc=com", - "cn=Buffy Naolu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Royal Parniani,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anthea Eros,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kiele Commazzi,ou=Management,dc=bitwarden,dc=com", - "cn=Yvan Diaconu,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kitti Seshadri,ou=Payroll,dc=bitwarden,dc=com", - "cn=Camala McMillan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eamon Salvin,ou=Management,dc=bitwarden,dc=com", - "cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vito Calcote,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mandie Kneeshaw,ou=Management,dc=bitwarden,dc=com", - "cn=Fiann Fouts,ou=Administrative,dc=bitwarden,dc=com", - "cn=Patt Ferner,ou=Management,dc=bitwarden,dc=com", - "cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Grier Kovarik,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mela MacNeill,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Akram Rajwani,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lendon Valin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ikram Taylor,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gert Grassmann,ou=Payroll,dc=bitwarden,dc=com", - "cn=Oksana Dorn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Karleen McKinley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Helmut Sigda,ou=Payroll,dc=bitwarden,dc=com", - "cn=Grover Au,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Barb Ricketts,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carina Akens,ou=Product Development,dc=bitwarden,dc=com", - "cn=Beilul Scheduling,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kitson Nelon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Daphna Ragde,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Paulina Early,ou=Administrative,dc=bitwarden,dc=com", - "cn=Abbie Jamshidi,ou=Management,dc=bitwarden,dc=com", - "cn=Quynh Lorenc,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kelwin Popadick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fitness Pape,ou=Management,dc=bitwarden,dc=com", - "cn=Dion Chiou,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mayasandra Naor,ou=Management,dc=bitwarden,dc=com", - "cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vince Soulliere,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kasey Turney,ou=Management,dc=bitwarden,dc=com", - "cn=Zonda Amato,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Eleanore Bertini,ou=Payroll,dc=bitwarden,dc=com", - "cn=Georgetta Schreiber,ou=Peons,dc=bitwarden,dc=com", - "cn=Kalai Seatter,ou=Peons,dc=bitwarden,dc=com", - "cn=Susie Moffett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Garnet Vieregge,ou=Peons,dc=bitwarden,dc=com", - "cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden,dc=com", - "cn=Majid Liao,ou=Payroll,dc=bitwarden,dc=com", - "cn=Abdallah Lobello,ou=Administrative,dc=bitwarden,dc=com", - "cn=Felecia Bnrecad,ou=Peons,dc=bitwarden,dc=com", - "cn=Waja Eteminan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lorrel Piercy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pris Bobar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Albertine Karass,ou=Payroll,dc=bitwarden,dc=com", - "cn=Saskia Koskie,ou=Peons,dc=bitwarden,dc=com", - "cn=Adda Paddon,ou=Management,dc=bitwarden,dc=com", - "cn=Normand Tay,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ardene Hofstede,ou=Product Development,dc=bitwarden,dc=com", - "cn=Panos Wessell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Carolan Kamerson,ou=Management,dc=bitwarden,dc=com", - "cn=Stew Doan,ou=Peons,dc=bitwarden,dc=com", - "cn=Tap Moreau,ou=Product Development,dc=bitwarden,dc=com", - "cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Peg Alcott,ou=Product Development,dc=bitwarden,dc=com", - "cn=Henrika Mihm,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Count Watts,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lesly Engman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Txp Calmejane,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Aurore Hubers,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sharad Shearin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jennica Vonck,ou=Management,dc=bitwarden,dc=com", - "cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chesteen Wyant,ou=Management,dc=bitwarden,dc=com", - "cn=Coraline Kolton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Horacio Oberpriller,ou=Management,dc=bitwarden,dc=com", - "cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lsi Assistance,ou=Janitorial,dc=bitwarden,dc=com", - "cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gusta Dadkhah,ou=Management,dc=bitwarden,dc=com", - "cn=Daphene Cho,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Minerva Arvin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lynna Gumb,ou=Management,dc=bitwarden,dc=com", - "cn=Arleen Owen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chelsae Geer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Abraham McDougald,ou=Management,dc=bitwarden,dc=com", - "cn=Jessa Piasecki,ou=Management,dc=bitwarden,dc=com", - "cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hertha Wayler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Haste Isherwood,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tonye Frumerie,ou=Management,dc=bitwarden,dc=com", - "cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lilly Serapin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Phebe Gordon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cary Gronwall,ou=Peons,dc=bitwarden,dc=com", - "cn=Mer Kearney,ou=Management,dc=bitwarden,dc=com", - "cn=Viqar Campeau,ou=Administrative,dc=bitwarden,dc=com", - "cn=Annet Chatfield,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lizzie Zaid,ou=Management,dc=bitwarden,dc=com", - "cn=Norcal Schrier,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marlyne Tardiff,ou=Management,dc=bitwarden,dc=com", - "cn=Annabella Vogel,ou=Peons,dc=bitwarden,dc=com", - "cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Farzin Depooter,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Denys Paone,ou=Management,dc=bitwarden,dc=com", - "cn=Ghassan Payne,ou=Administrative,dc=bitwarden,dc=com", - "cn=Heida Cripps,ou=Management,dc=bitwarden,dc=com", - "cn=Sayed Belaire,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sileas Brungardt,ou=Management,dc=bitwarden,dc=com", - "cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nicholas Shupe,ou=Peons,dc=bitwarden,dc=com", - "cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Margaret Binda,ou=Peons,dc=bitwarden,dc=com", - "cn=MaryAnn Windom,ou=Peons,dc=bitwarden,dc=com", - "cn=Cammie Lobello,ou=Payroll,dc=bitwarden,dc=com", - "cn=HangTong Shek,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Engin Mersinger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rebbecca Perina,ou=Management,dc=bitwarden,dc=com", - "cn=Piero Preece,ou=Peons,dc=bitwarden,dc=com", - "cn=Pradip Draffin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jacynth Etemad,ou=Administrative,dc=bitwarden,dc=com", - "cn=Brittany Pokinko,ou=Management,dc=bitwarden,dc=com", - "cn=Jeannot Rch,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Wiebren Zaia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karlyn Kell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Noriko Devenny,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Porfirio Epperson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Linnet Streight,ou=Management,dc=bitwarden,dc=com", - "cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tomi Bridges,ou=Management,dc=bitwarden,dc=com", - "cn=Gerardo Walia,ou=Management,dc=bitwarden,dc=com", - "cn=Hailee Corace,ou=Administrative,dc=bitwarden,dc=com", - "cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Munir Copes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Susan Fowler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Caye Setiawan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Daffy Hering,ou=Administrative,dc=bitwarden,dc=com", - "cn=YoungJune Radford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Brana Susanto,ou=Administrative,dc=bitwarden,dc=com", - "cn=Neile Niles,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joydeep Loos,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sohail Pilon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Melisse Odum,ou=Management,dc=bitwarden,dc=com", - "cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden,dc=com", - "cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden,dc=com", - "cn=Shay Fouchard,ou=Management,dc=bitwarden,dc=com", - "cn=Lesly Checkland,ou=Peons,dc=bitwarden,dc=com", - "cn=Roelof Balascak,ou=Product Development,dc=bitwarden,dc=com", - "cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Miguel Skof,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden,dc=com", - "cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zdenek Gahan,ou=Peons,dc=bitwarden,dc=com", - "cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden,dc=com", - "cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden,dc=com", - "cn=Merrile Lian,ou=Payroll,dc=bitwarden,dc=com", - "cn=Engracia Messick,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Caron Sammon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Charlotta McLennan,ou=Management,dc=bitwarden,dc=com", - "cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dexter Follett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Una Ausley,ou=Management,dc=bitwarden,dc=com", - "cn=Adria Calow,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alora Bamfo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gunnar Molani,ou=Peons,dc=bitwarden,dc=com", - "cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lenee Marasco,ou=Payroll,dc=bitwarden,dc=com", - "cn=Byron Shelegey,ou=Management,dc=bitwarden,dc=com", - "cn=Charline Jago,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anette Holloway,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Florida Polashock,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Snair Mcshane,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jackson Schraner,ou=Product Testing,dc=bitwarden,dc=com", - "cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden,dc=com", - "cn=Cherianne Tidd,ou=Payroll,dc=bitwarden,dc=com", - "cn=Melisent Sampat,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tiffy Udall,ou=Payroll,dc=bitwarden,dc=com", - "cn=Adeline Cruz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tuan Fenati,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jaclyn Hook,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lucky DeBaets,ou=Payroll,dc=bitwarden,dc=com", - "cn=Toma Belcher,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ayda Ricketson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Edie Fuller,ou=Product Development,dc=bitwarden,dc=com", - "cn=Adrienne Teacher,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karilynn Sokolowski,ou=Management,dc=bitwarden,dc=com", - "cn=Edna Etemad,ou=Management,dc=bitwarden,dc=com", - "cn=Heike Hoxie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Noelyn Snair,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Annis Yung,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Olenka Gulis,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jeanna Brousseau,ou=Management,dc=bitwarden,dc=com", - "cn=Nikolaos Farley,ou=Management,dc=bitwarden,dc=com", - "cn=Sydney Olivares,ou=Management,dc=bitwarden,dc=com", - "cn=Lary MacMillanBrown,ou=Management,dc=bitwarden,dc=com", - "cn=Makam Junaid,ou=Payroll,dc=bitwarden,dc=com", - "cn=Janson Breon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Persis Bourret,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nonah Naylor,ou=Peons,dc=bitwarden,dc=com", - "cn=Delmar Goold,ou=Management,dc=bitwarden,dc=com", - "cn=Noslab Despres,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leonida Maloney,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Heida Witzmann,ou=Product Development,dc=bitwarden,dc=com", - "cn=Azhar Klug,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lynnette Mirande,ou=Product Development,dc=bitwarden,dc=com", - "cn=Esmond Ronald,ou=Management,dc=bitwarden,dc=com", - "cn=Ruthie Weyand,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ileane DeWitte,ou=Peons,dc=bitwarden,dc=com", - "cn=Chocs Lanava,ou=Product Development,dc=bitwarden,dc=com", - "cn=Abu Hubbard,ou=Peons,dc=bitwarden,dc=com", - "cn=Felita Kaps,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Christin Shea,ou=Administrative,dc=bitwarden,dc=com", - "cn=Haroon Trese,ou=Payroll,dc=bitwarden,dc=com", - "cn=Norbert Ruest,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Woody Bourlet,ou=Administrative,dc=bitwarden,dc=com", - "cn=Saied DeCristofaro,ou=Peons,dc=bitwarden,dc=com", - "cn=Dael Lariviere,ou=Administrative,dc=bitwarden,dc=com", - "cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Miro Tabor,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Der Fernando,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vivianne McCrain,ou=Peons,dc=bitwarden,dc=com", - "cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden,dc=com", - "cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Madelina Todloski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vijai Combaz,ou=Management,dc=bitwarden,dc=com", - "cn=Sohayla Neate,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Weldon Robustness,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Freddy Jachym,ou=Management,dc=bitwarden,dc=com", - "cn=Eliezer Assistance,ou=Management,dc=bitwarden,dc=com", - "cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Orelia Pisani,ou=Peons,dc=bitwarden,dc=com", - "cn=Shelton Spencer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jonthan Khoury,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tricord Bresee,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Julietta Tillman,ou=Peons,dc=bitwarden,dc=com", - "cn=Almeria Falke,ou=Peons,dc=bitwarden,dc=com", - "cn=Aaron Deakin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Soyeh Noy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Genia Mooken,ou=Product Development,dc=bitwarden,dc=com", - "cn=Norton Chronowic,ou=Management,dc=bitwarden,dc=com", - "cn=Thom Hink,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vanny Swepston,ou=Peons,dc=bitwarden,dc=com", - "cn=Mabel Bycenko,ou=Peons,dc=bitwarden,dc=com", - "cn=Kiyoon Chau,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nel Addetia,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Emeline Willmore,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maged Bernardo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Murry Okafo,ou=Management,dc=bitwarden,dc=com", - "cn=Vita Coursol,ou=Peons,dc=bitwarden,dc=com", - "cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jelene Rivest,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Magda Sims,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Fanni Kelly,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Phyl Komatsu,ou=Product Development,dc=bitwarden,dc=com", - "cn=Blondie Bessette,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zonda Marette,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tavis Bovee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Aurore Danker,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yawar Benjes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jayme Casey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Daisi Encomenderos,ou=Management,dc=bitwarden,dc=com", - "cn=Biplab Caton,ou=Peons,dc=bitwarden,dc=com", - "cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Izak Roussin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Montreal Mersch,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sybille Shwed,ou=Management,dc=bitwarden,dc=com", - "cn=Gordie Oey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nerte Diederichs,ou=Administrative,dc=bitwarden,dc=com", - "cn=Annemarie Harrell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ara Darcel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eng Mangum,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kaye Dulude,ou=Management,dc=bitwarden,dc=com", - "cn=Dinny Farrell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pru McIntomny,ou=Management,dc=bitwarden,dc=com", - "cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rosemary Liao,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ketty Torrens,ou=Peons,dc=bitwarden,dc=com", - "cn=Dinny Meggitt,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ashien Moran,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nerissa Brkich,ou=Management,dc=bitwarden,dc=com", - "cn=Ioan Usrouter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bekki Blimkie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bryn Spieker,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vijya Torian,ou=Payroll,dc=bitwarden,dc=com", - "cn=Teiichi Marconi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Allegra Chaaban,ou=Peons,dc=bitwarden,dc=com", - "cn=Mair Wefers,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kerri Turbes,ou=Peons,dc=bitwarden,dc=com", - "cn=Debora Dion,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Erdem Cowen,ou=Peons,dc=bitwarden,dc=com", - "cn=Thierry Crockett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Karrah Kassam,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Odile Dbs,ou=Management,dc=bitwarden,dc=com", - "cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lacy Haughwout,ou=Management,dc=bitwarden,dc=com", - "cn=Jimson Volfe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dede Billingham,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden,dc=com", - "cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kissee Gowan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eulalie Webber,ou=Product Development,dc=bitwarden,dc=com", - "cn=Court Trefry,ou=Management,dc=bitwarden,dc=com", - "cn=Claretta Kilcoin,ou=Peons,dc=bitwarden,dc=com", - "cn=Kassia Daaboul,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden,dc=com", - "cn=Weber Gu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rank Courtney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aaren Neustifter,ou=Management,dc=bitwarden,dc=com", - "cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Clifford Forgues,ou=Peons,dc=bitwarden,dc=com", - "cn=Donnie Laverty,ou=Janitorial,dc=bitwarden,dc=com", - "cn=How Sebastien,ou=Peons,dc=bitwarden,dc=com", - "cn=Hung Tabl,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maye Atoui,ou=Payroll,dc=bitwarden,dc=com", - "cn=Deva Currie,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vivienne Bourk,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gerber Kiernan,ou=Peons,dc=bitwarden,dc=com", - "cn=Me Muhammed,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ragui Lorenc,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorenza McCormick,ou=Peons,dc=bitwarden,dc=com", - "cn=Beatrisa Malaher,ou=Peons,dc=bitwarden,dc=com", - "cn=Tiffi Beverly,ou=Payroll,dc=bitwarden,dc=com", - "cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Analise Shiley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fan Neander,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Diamond Azer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dorothee Azmak,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sydel MacGillivray,ou=Peons,dc=bitwarden,dc=com", - "cn=Martelle Filpus,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Merunix Fadlallah,ou=Management,dc=bitwarden,dc=com", - "cn=Faz Seegobin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jeffery Panek,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chip Billard,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tran Selbrede,ou=Peons,dc=bitwarden,dc=com", - "cn=Wade Boersma,ou=Peons,dc=bitwarden,dc=com", - "cn=Quintana Huneault,ou=Administrative,dc=bitwarden,dc=com", - "cn=Coors Beerkens,ou=Administrative,dc=bitwarden,dc=com", - "cn=Prudence Schacham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Evita Cropper,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joletta Senten,ou=Peons,dc=bitwarden,dc=com", - "cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fotini Suyama,ou=Management,dc=bitwarden,dc=com", - "cn=Hazel Gesino,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ivie Murison,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mahesh Flach,ou=Payroll,dc=bitwarden,dc=com", - "cn=Annalee Prikkel,ou=Management,dc=bitwarden,dc=com", - "cn=Catja Scholman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Anda Fastpack,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Salis Nehring,ou=Management,dc=bitwarden,dc=com", - "cn=Francis LeBlanc,ou=Payroll,dc=bitwarden,dc=com", - "cn=Humberto Stensrud,ou=Management,dc=bitwarden,dc=com", - "cn=Manfred Wesolowski,ou=Peons,dc=bitwarden,dc=com", - "cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Estele Fiest,ou=Peons,dc=bitwarden,dc=com", - "cn=Maciej Fucito,ou=Administrative,dc=bitwarden,dc=com", - "cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Frinel Veals,ou=Payroll,dc=bitwarden,dc=com", - "cn=Catha Ghossein,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Basia Trinidad,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vita Leveille,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lidio Toomer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kessel Keveny,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alf Noorani,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kirstyn Hutt,ou=Management,dc=bitwarden,dc=com", - "cn=Blisse Lein,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Edithe Dougall,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sage Randell,ou=Peons,dc=bitwarden,dc=com", - "cn=Carina Hume,ou=Peons,dc=bitwarden,dc=com", - "cn=Mickie Prystie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nalin Levere,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Allen Iannotti,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maressa Poulin,ou=Peons,dc=bitwarden,dc=com", - "cn=Danni Hummerston,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rosabel Buley,ou=Management,dc=bitwarden,dc=com", - "cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sayed Virant,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sundaram Lojewski,ou=Management,dc=bitwarden,dc=com", - "cn=Laina Ertl,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jeniece Bcs,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tammy Heikkila,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pearle Bruketa,ou=Management,dc=bitwarden,dc=com", - "cn=Cherie Brett,ou=Peons,dc=bitwarden,dc=com", - "cn=Hector Gingrich,ou=Product Development,dc=bitwarden,dc=com", - "cn=Biplab VanHaste,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Roby Larin,ou=Management,dc=bitwarden,dc=com", - "cn=Shirley Holvey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shari Skaff,ou=Peons,dc=bitwarden,dc=com", - "cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden,dc=com", - "cn=Valida Fleischer,ou=Administrative,dc=bitwarden,dc=com", - "cn=March Hess,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kamran Shabatura,ou=Peons,dc=bitwarden,dc=com", - "cn=Arturo Ensign,ou=Administrative,dc=bitwarden,dc=com", - "cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lauryn Wever,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anda Wilhoit,ou=Administrative,dc=bitwarden,dc=com", - "cn=Samia Cochran,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Michie ToDo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Arvind Gundecha,ou=Peons,dc=bitwarden,dc=com", - "cn=Costas Watson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ebba Gutcher,ou=Peons,dc=bitwarden,dc=com", - "cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Peggie Madl,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Norry Benjamin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Loreen Chapen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Loay Clairmont,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jagdev Eaton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vina Smothers,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Minerva Cuper,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lynette Cascarini,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lsi Loughran,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cassandry Emmert,ou=Management,dc=bitwarden,dc=com", - "cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Minnesota Herzig,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lauren Syrett,ou=Peons,dc=bitwarden,dc=com", - "cn=Dyana Pennell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Camella IRCMARKET,ou=Peons,dc=bitwarden,dc=com", - "cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Doro Cottengim,ou=Peons,dc=bitwarden,dc=com", - "cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden,dc=com", - "cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nesta Bydeley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yogesh Meckley,ou=Peons,dc=bitwarden,dc=com", - "cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ailene Challice,ou=Payroll,dc=bitwarden,dc=com", - "cn=Viola Hately,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shunro Singer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Chitra McAleer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jay Biage,ou=Payroll,dc=bitwarden,dc=com", - "cn=Faydra Kandra,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shandee Safah,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gen Marano,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bettina Spinelli,ou=Management,dc=bitwarden,dc=com", - "cn=Mureil Vish,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alane Carlisle,ou=Management,dc=bitwarden,dc=com", - "cn=Sayre Paulett,ou=Management,dc=bitwarden,dc=com", - "cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ambur Fernandez,ou=Peons,dc=bitwarden,dc=com", - "cn=Carlye Puelma,ou=Management,dc=bitwarden,dc=com", - "cn=Eleonore Edwige,ou=Administrative,dc=bitwarden,dc=com", - "cn=Yoshi Neustifter,ou=Management,dc=bitwarden,dc=com", - "cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bernd Ribakovs,ou=Peons,dc=bitwarden,dc=com", - "cn=Ralph Taylor,ou=Management,dc=bitwarden,dc=com", - "cn=Baldev Annab,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Me Cuany,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Neville Doble,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alidia Banens,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hans Fahey,ou=Peons,dc=bitwarden,dc=com", - "cn=Luce Piper,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maible Adamo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Leny Husarewych,ou=Management,dc=bitwarden,dc=com", - "cn=Gerald Bijjani,ou=Peons,dc=bitwarden,dc=com", - "cn=Maint Olivares,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Arturo Groves,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ho Rolnick,ou=Administrative,dc=bitwarden,dc=com", - "cn=Erning Lingafelter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alanah Wolff,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Corrianne Hughson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wallis Grubbs,ou=Management,dc=bitwarden,dc=com", - "cn=Eran Sziladi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Joji Cassar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sunil Brisebois,ou=Payroll,dc=bitwarden,dc=com", - "cn=Otha Dee,ou=Peons,dc=bitwarden,dc=com", - "cn=Dyane Hungle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marlane Mitchell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Belva Knighten,ou=Administrative,dc=bitwarden,dc=com", - "cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden,dc=com", - "cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shahriar Upchurch,ou=Management,dc=bitwarden,dc=com", - "cn=Blaire Hr,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Idalia Batura,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bachittar Reneau,ou=Management,dc=bitwarden,dc=com", - "cn=Inger Oshiro,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sharline Chester,ou=Payroll,dc=bitwarden,dc=com", - "cn=Glynn Surreau,ou=Peons,dc=bitwarden,dc=com", - "cn=Hatti Griffiths,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gudrun Robson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sati Hallett,ou=Management,dc=bitwarden,dc=com", - "cn=Lotty Flansburg,ou=Payroll,dc=bitwarden,dc=com", - "cn=Larina Scanlon,ou=Peons,dc=bitwarden,dc=com", - "cn=Barney Surridge,ou=Peons,dc=bitwarden,dc=com", - "cn=Yolanda Wanda,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dasie Tougas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Julee Milton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Selle Oslund,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leelah Docherty,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Clement Srivastava,ou=Management,dc=bitwarden,dc=com", - "cn=Marsie Schreiber,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cathryn Bokij,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden,dc=com", - "cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden,dc=com", - "cn=Melody Fontana,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Saul Fussell,ou=Management,dc=bitwarden,dc=com", - "cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Thomas Gourley,ou=Peons,dc=bitwarden,dc=com", - "cn=Norstar Trefts,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cathi Keiser,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Apryle Haurie,ou=Peons,dc=bitwarden,dc=com", - "cn=Rozanne Trouborst,ou=Peons,dc=bitwarden,dc=com", - "cn=Catlaina Intemann,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anabel Intune,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ninnetta Matney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Regina Lemay,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Janos Davis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dniren Serack,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jaffer Guty,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kalpit Devine,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zitella Sammon,ou=Management,dc=bitwarden,dc=com", - "cn=Renate Worrall,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Medria Aribindi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eba Bockaj,ou=Payroll,dc=bitwarden,dc=com", - "cn=Calley Thaxton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rheal Dadgar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Daphene Bayno,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dilpreet Javor,ou=Management,dc=bitwarden,dc=com", - "cn=Kambiz Nyce,ou=Peons,dc=bitwarden,dc=com", - "cn=Karan Molochko,ou=Administrative,dc=bitwarden,dc=com", - "cn=Olav Straub,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Berget Hnidek,ou=Peons,dc=bitwarden,dc=com", - "cn=Shahriar Benschop,ou=Peons,dc=bitwarden,dc=com", - "cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wilkin Boinnard,ou=Management,dc=bitwarden,dc=com", - "cn=Vital Simcoe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lydie Hooker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Greta Minyard,ou=Management,dc=bitwarden,dc=com", - "cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Adelice Fishman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Devinne Kellum,ou=Administrative,dc=bitwarden,dc=com", - "cn=Breena Telco,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tianbao Gerlich,ou=Management,dc=bitwarden,dc=com", - "cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden,dc=com", - "cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lana Keates,ou=Administrative,dc=bitwarden,dc=com", - "cn=Veena Richards,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Charin Clocklab,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kollen Fenwick,ou=Management,dc=bitwarden,dc=com", - "cn=Lucille Orol,ou=Management,dc=bitwarden,dc=com", - "cn=Maier Bobar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dori Garwood,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gussi Horak,ou=Management,dc=bitwarden,dc=com", - "cn=Marillin Boroski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Noelyn Hinkle,ou=Peons,dc=bitwarden,dc=com", - "cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Erlene Schirmer,ou=Management,dc=bitwarden,dc=com", - "cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Binh Hoagland,ou=Peons,dc=bitwarden,dc=com", - "cn=Aviva McIsaac,ou=Administrative,dc=bitwarden,dc=com", - "cn=Noami Cinicolo,ou=Peons,dc=bitwarden,dc=com", - "cn=Yukuo Wolford,ou=Administrative,dc=bitwarden,dc=com", - "cn=Amalea Kesler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cyril Inglis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ladan Schutz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bob Erbach,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hideki Fobert,ou=Management,dc=bitwarden,dc=com", - "cn=Koral Bilton,ou=Peons,dc=bitwarden,dc=com", - "cn=Adriane Denike,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ayako McCormick,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Renell Kales,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brennan Wolter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mariya Wesselow,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roe Kathie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rici Sobel,ou=Peons,dc=bitwarden,dc=com", - "cn=Eladio Malek,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Siew Dunajski,ou=Peons,dc=bitwarden,dc=com", - "cn=Rosalie Feild,ou=Peons,dc=bitwarden,dc=com", - "cn=Karyl Scarrow,ou=Management,dc=bitwarden,dc=com", - "cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hoog Fielden,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fredericka Corbett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mabelle Bondurant,ou=Management,dc=bitwarden,dc=com", - "cn=Zafar McCarron,ou=Management,dc=bitwarden,dc=com", - "cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Malia Faletti,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nesta Mawji,ou=Management,dc=bitwarden,dc=com", - "cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liliana Vaillant,ou=Payroll,dc=bitwarden,dc=com", - "cn=Den Arora,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rosabel Parkins,ou=Product Development,dc=bitwarden,dc=com", - "cn=Edyta Moroz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=James Brunato,ou=Product Development,dc=bitwarden,dc=com", - "cn=Retha Miceli,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emmie Hage,ou=Product Development,dc=bitwarden,dc=com", - "cn=Open Kozsukan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Crystal Dommety,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lindsey Coxall,ou=Product Development,dc=bitwarden,dc=com", - "cn=Morgen Theoret,ou=Management,dc=bitwarden,dc=com", - "cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anallise Golas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Emad Sztein,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marianne Makarenko,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anda Lytle,ou=Management,dc=bitwarden,dc=com", - "cn=Anneliese Hanser,ou=Product Development,dc=bitwarden,dc=com", - "cn=Herb Gagnon,ou=Peons,dc=bitwarden,dc=com", - "cn=Isabella Conroy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brandon Menaker,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mame Sanford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bea Aloi,ou=Peons,dc=bitwarden,dc=com", - "cn=Sylvia Alink,ou=Management,dc=bitwarden,dc=com", - "cn=Mora McGovern,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tiphani Lieure,ou=Administrative,dc=bitwarden,dc=com", - "cn=Consolata Bejar,ou=Peons,dc=bitwarden,dc=com", - "cn=Winnie Jensenworth,ou=Management,dc=bitwarden,dc=com", - "cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Takashi Lamirande,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rosamund Serack,ou=Payroll,dc=bitwarden,dc=com", - "cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Natalee Keitel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Desiree Conde,ou=Peons,dc=bitwarden,dc=com", - "cn=Clyde Kamal,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shana Mulvie,ou=Management,dc=bitwarden,dc=com", - "cn=PeyKee Rios,ou=Management,dc=bitwarden,dc=com", - "cn=Costas Szabo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Su Organization,ou=Management,dc=bitwarden,dc=com", - "cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Norean Brien,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tiena Clapham,ou=Management,dc=bitwarden,dc=com", - "cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jade Jims,ou=Management,dc=bitwarden,dc=com", - "cn=Ramin McKeen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden,dc=com", - "cn=Steffie Bohn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rachael DuBois,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kore Mayhugh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eleen Moledina,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kaminsky Meany,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pammi Overton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sinh Abbott,ou=Peons,dc=bitwarden,dc=com", - "cn=LouAnn Gaines,ou=Product Development,dc=bitwarden,dc=com", - "cn=Arabella Shamblin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cammie Erbach,ou=Management,dc=bitwarden,dc=com", - "cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden,dc=com", - "cn=Dayton Baughan,ou=Peons,dc=bitwarden,dc=com", - "cn=Meggi Rozier,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Romulus Zuk,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marce Tiller,ou=Payroll,dc=bitwarden,dc=com", - "cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Patt Brennand,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Claus Depew,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vahe Kerwin,ou=Peons,dc=bitwarden,dc=com", - "cn=Pauletta Crocker,ou=Peons,dc=bitwarden,dc=com", - "cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sterling Shostak,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kartik Rogge,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fei Reich,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leyla Etten,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sattar Sergent,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kare Hochberger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lilly Kuykendall,ou=Management,dc=bitwarden,dc=com", - "cn=Rachele Fullum,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Madella Forslund,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Janio Fussell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lacy Carr,ou=Payroll,dc=bitwarden,dc=com", - "cn=Erinna Odden,ou=Peons,dc=bitwarden,dc=com", - "cn=Bertrand Devgon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ahmet Achille,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Heike Jenner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lynde Staats,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Estele Kolappa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Oriana Hughes,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lucila Rand,ou=Payroll,dc=bitwarden,dc=com", - "cn=Emile Bellis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=LouisPhilippe Hann,ou=Management,dc=bitwarden,dc=com", - "cn=Franka Frey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jillian Unger,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mathilda Diederichs,ou=Management,dc=bitwarden,dc=com", - "cn=Susanna Vlahos,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aila Henninger,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bettye Guth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Livvie Benwell,ou=Peons,dc=bitwarden,dc=com", - "cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melek Nagendra,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lesli Tobias,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Greta Schecter,ou=Management,dc=bitwarden,dc=com", - "cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nevil Padgett,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bianka Cooke,ou=Management,dc=bitwarden,dc=com", - "cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marjan Lyman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aurora Bayno,ou=Peons,dc=bitwarden,dc=com", - "cn=Housseini Dominguez,ou=Administrative,dc=bitwarden,dc=com", - "cn=Arnie Ulrich,ou=Administrative,dc=bitwarden,dc=com", - "cn=Amrik Carlock,ou=Administrative,dc=bitwarden,dc=com", - "cn=Saundra Crapco,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shashi Ketcheson,ou=Management,dc=bitwarden,dc=com", - "cn=Maidlab McMillion,ou=Peons,dc=bitwarden,dc=com", - "cn=Cloe Marquart,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roselle Donald,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Chander Roussy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sunny Rollin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sam Meldrum,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kitson Sture,ou=Management,dc=bitwarden,dc=com", - "cn=Janot Breglec,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gaye Rothwell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Moe Schumann,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sarene Keifer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Janette Npi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Danette Galloway,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorianne Mullett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Isabeau Wippel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cassi McRae,ou=Human Resources,dc=bitwarden,dc=com", - "cn=WaiLeung Marples,ou=Product Development,dc=bitwarden,dc=com", - "cn=Joceline Seifried,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bill Coldwell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marlo Belich,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Prams StOnge,ou=Peons,dc=bitwarden,dc=com", - "cn=Eudora Dunstan,ou=Management,dc=bitwarden,dc=com", - "cn=Thor Ritz,ou=Management,dc=bitwarden,dc=com", - "cn=Manhatten Isert,ou=Product Development,dc=bitwarden,dc=com", - "cn=Farra Garee,ou=Payroll,dc=bitwarden,dc=com", - "cn=Arun Xpm,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alida Ausley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden,dc=com", - "cn=Trina Okon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kania Harter,ou=Payroll,dc=bitwarden,dc=com", - "cn=Samantha Gantt,ou=Product Development,dc=bitwarden,dc=com", - "cn=Akin Houde,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vince Herscovici,ou=Peons,dc=bitwarden,dc=com", - "cn=Issy Bachecongi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden,dc=com", - "cn=Seelan Licandro,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hqs Dipper,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sidone Ricks,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Meghan Wai,ou=Product Development,dc=bitwarden,dc=com", - "cn=Koen MacInnes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden,dc=com", - "cn=Doralin Worthington,ou=Management,dc=bitwarden,dc=com", - "cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Loris Godfrey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Monroe Halpin,ou=Management,dc=bitwarden,dc=com", - "cn=Gerianna Arnon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hazem Pien,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cristofaro Dysart,ou=Peons,dc=bitwarden,dc=com", - "cn=Margot Muzio,ou=Peons,dc=bitwarden,dc=com", - "cn=Makary Wagers,ou=Peons,dc=bitwarden,dc=com", - "cn=Yudy Sandford,ou=Payroll,dc=bitwarden,dc=com", - "cn=Baruk Junaid,ou=Peons,dc=bitwarden,dc=com", - "cn=Morganne Grimmell,ou=Management,dc=bitwarden,dc=com", - "cn=Evaleen Beine,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yumi Mudry,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Salomi Heisler,ou=Management,dc=bitwarden,dc=com", - "cn=Trey ETAS,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Co Knighten,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gillie Rheaume,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jamal Scotti,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sharri Lotz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Agnella Loi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Leno Henley,ou=Management,dc=bitwarden,dc=com", - "cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elex Langer,ou=Peons,dc=bitwarden,dc=com", - "cn=Dwain Bielby,ou=Product Development,dc=bitwarden,dc=com", - "cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roy Terranova,ou=Peons,dc=bitwarden,dc=com", - "cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vaughn Corlett,ou=Peons,dc=bitwarden,dc=com", - "cn=Gladys Helmy,ou=Management,dc=bitwarden,dc=com", - "cn=Bihari Mirek,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lissa Hernandez,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden,dc=com", - "cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Torre Monahan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maia Arellano,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gina Hattar,ou=Management,dc=bitwarden,dc=com", - "cn=Dena Trottier,ou=Peons,dc=bitwarden,dc=com", - "cn=Vmchange Cavan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lorie Brickey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ardie Dix,ou=Peons,dc=bitwarden,dc=com", - "cn=Maybelle Augustus,ou=Product Development,dc=bitwarden,dc=com", - "cn=Engracia Materkowski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jacqueline Durant,ou=Payroll,dc=bitwarden,dc=com", - "cn=Charly Klapper,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elpida Doerr,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bethena Parniani,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Janka Macklem,ou=Management,dc=bitwarden,dc=com", - "cn=Myrtie Mc,ou=Administrative,dc=bitwarden,dc=com", - "cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ludovika McKnight,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anil Cotuna,ou=Management,dc=bitwarden,dc=com", - "cn=Merrile Wilson,ou=Management,dc=bitwarden,dc=com", - "cn=Zahara Ferree,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maryrose Sagan,ou=Peons,dc=bitwarden,dc=com", - "cn=Legra Binder,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ernaline Tierney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Seven Nicol,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jeannine Forsythe,ou=Peons,dc=bitwarden,dc=com", - "cn=Tilmon Taheri,ou=Administrative,dc=bitwarden,dc=com", - "cn=Svr Krishnan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Niki Khurana,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Duong Laux,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vevay Isert,ou=Management,dc=bitwarden,dc=com", - "cn=Lonnie Visser,ou=Management,dc=bitwarden,dc=com", - "cn=Chungsik Choquette,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kalli Meilleur,ou=Administrative,dc=bitwarden,dc=com", - "cn=Merline Riggs,ou=Product Development,dc=bitwarden,dc=com", - "cn=Milka Parkes,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bakel Fisette,ou=Management,dc=bitwarden,dc=com", - "cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kiley Hester,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eydie Edgar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sherwyn Monn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Danna Hagenbuch,ou=Management,dc=bitwarden,dc=com", - "cn=Flossi Davidson,ou=Management,dc=bitwarden,dc=com", - "cn=Rosy Bergmann,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden,dc=com", - "cn=Larine Broca,ou=Peons,dc=bitwarden,dc=com", - "cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Therine McCurdy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Clarice Travers,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dacey Bedard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lissa Barsky,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lino Endrys,ou=Peons,dc=bitwarden,dc=com", - "cn=Fina WGA,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Munir Colton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marje Dallaire,ou=Payroll,dc=bitwarden,dc=com", - "cn=Farrah Meehan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tilda Alsop,ou=Peons,dc=bitwarden,dc=com", - "cn=Leni Janovich,ou=Peons,dc=bitwarden,dc=com", - "cn=Katrina Morreale,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hinda Briante,ou=Payroll,dc=bitwarden,dc=com", - "cn=Helli Frie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Renell Ulrich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden,dc=com", - "cn=Moel Taralp,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Keeley Rok,ou=Peons,dc=bitwarden,dc=com", - "cn=Britta Melucci,ou=Payroll,dc=bitwarden,dc=com", - "cn=StClair Farren,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vino Papantonis,ou=Peons,dc=bitwarden,dc=com", - "cn=Sandi ENG,ou=Administrative,dc=bitwarden,dc=com", - "cn=Michaela Blimkie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mort Kestelman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Reinhold Briggs,ou=Peons,dc=bitwarden,dc=com", - "cn=Norbert Rider,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eveline Smelters,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elinor Stambouli,ou=Management,dc=bitwarden,dc=com", - "cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Donnette Kenol,ou=Administrative,dc=bitwarden,dc=com", - "cn=Margette Keogh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Makam Kumagai,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tallou Vairavan,ou=Management,dc=bitwarden,dc=com", - "cn=Elana Derrett,ou=Management,dc=bitwarden,dc=com", - "cn=Hanny Farranto,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lucina Hobesh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jashvant Mellor,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dupuy McNeese,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ying Forbs,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Paper Cowell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vispy Snair,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mona DeCecco,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karolien Beznowski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Frinel Godcharles,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dung Goldstein,ou=Product Development,dc=bitwarden,dc=com", - "cn=Scarlet Coody,ou=Product Development,dc=bitwarden,dc=com", - "cn=Julina Stahly,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kippy Roman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Helsa Stahly,ou=Management,dc=bitwarden,dc=com", - "cn=Hiroko Whetston,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aviva Harwerth,ou=Peons,dc=bitwarden,dc=com", - "cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alida Ferriera,ou=Peons,dc=bitwarden,dc=com", - "cn=Vyky ONeal,ou=Payroll,dc=bitwarden,dc=com", - "cn=Daya Loader,ou=Peons,dc=bitwarden,dc=com", - "cn=Katsunori Bouret,ou=Management,dc=bitwarden,dc=com", - "cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rex Combellack,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tallia Videa,ou=Management,dc=bitwarden,dc=com", - "cn=Remy Lalonde,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tobi Houde,ou=Management,dc=bitwarden,dc=com", - "cn=Tommi Luna,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden,dc=com", - "cn=Alana Gelo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden,dc=com", - "cn=Seven Salazar,ou=Management,dc=bitwarden,dc=com", - "cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Conway Jenness,ou=Administrative,dc=bitwarden,dc=com", - "cn=VanKing Padgett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tansy Aronovich,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fidelity Shelley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tres Parr,ou=Management,dc=bitwarden,dc=com", - "cn=Myrtice Graver,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Junette Weyand,ou=Product Development,dc=bitwarden,dc=com", - "cn=Daune Gosset,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden,dc=com", - "cn=Rolando McNally,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kirstie Trochu,ou=Product Development,dc=bitwarden,dc=com", - "cn=MaryLou Brock,ou=Peons,dc=bitwarden,dc=com", - "cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Edy Singbeil,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carsten Macklin,ou=Management,dc=bitwarden,dc=com", - "cn=Weiping Arnone,ou=Peons,dc=bitwarden,dc=com", - "cn=Joceline Muir,ou=Administrative,dc=bitwarden,dc=com", - "cn=Opal Isaac,ou=Management,dc=bitwarden,dc=com", - "cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dedra Bastien,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kiri Gillon,ou=Management,dc=bitwarden,dc=com", - "cn=Geoff Bergstrom,ou=Peons,dc=bitwarden,dc=com", - "cn=Ngai Dorion,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dayna Bragg,ou=Management,dc=bitwarden,dc=com", - "cn=Madonna Parihar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ari Fergusson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ramonda Tromm,ou=Product Development,dc=bitwarden,dc=com", - "cn=Foster Cre,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Willette Juhan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Melamie Darcel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Arlena Joe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mufi Higgins,ou=Management,dc=bitwarden,dc=com", - "cn=Viera Paetsch,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roy Wai,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cheslie Lamont,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ash Moomey,ou=Payroll,dc=bitwarden,dc=com", - "cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Humphrey Culver,ou=Product Development,dc=bitwarden,dc=com", - "cn=Consolata Daniells,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cark Lowman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carolien Tabl,ou=Peons,dc=bitwarden,dc=com", - "cn=Jere Nadon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Weber Chouinard,ou=Management,dc=bitwarden,dc=com", - "cn=Othilia Redfoot,ou=Product Development,dc=bitwarden,dc=com", - "cn=Drudy Joffe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Moris Abdullah,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Misbah Mach,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maribel Searles,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lilah Haverkamp,ou=Management,dc=bitwarden,dc=com", - "cn=Fanny Baril,ou=Payroll,dc=bitwarden,dc=com", - "cn=Milou Dada,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Earnest Walters,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rochelle Buford,ou=Management,dc=bitwarden,dc=com", - "cn=Rajani Enns,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ofella Nessman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Donella Lethebinh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tzung Camillucci,ou=Management,dc=bitwarden,dc=com", - "cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden,dc=com", - "cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Suzanna Furst,ou=Payroll,dc=bitwarden,dc=com", - "cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Berri Pracht,ou=Payroll,dc=bitwarden,dc=com", - "cn=Esko Feist,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dorin McNerney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kataryna Vaters,ou=Peons,dc=bitwarden,dc=com", - "cn=Nikki Captives,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mureil Fowlkes,ou=Peons,dc=bitwarden,dc=com", - "cn=Charla Silieff,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gladys Jarvah,ou=Management,dc=bitwarden,dc=com", - "cn=Juan Hummel,ou=Peons,dc=bitwarden,dc=com", - "cn=Cathryn Scheible,ou=Peons,dc=bitwarden,dc=com", - "cn=Harri Senese,ou=Product Development,dc=bitwarden,dc=com", - "cn=Moreen Lemay,ou=Management,dc=bitwarden,dc=com", - "cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jabir Gunn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dotty Oman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Quintina Mallett,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Adie Itah,ou=Payroll,dc=bitwarden,dc=com", - "cn=Philippine Corcoran,ou=Peons,dc=bitwarden,dc=com", - "cn=Ollie Panter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Clint Jesty,ou=Product Development,dc=bitwarden,dc=com", - "cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tomasina Gofron,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nong Bnrecad,ou=Peons,dc=bitwarden,dc=com", - "cn=Margy Lucas,ou=Management,dc=bitwarden,dc=com", - "cn=Melvin Cohen,ou=Peons,dc=bitwarden,dc=com", - "cn=Milissent Rolls,ou=Peons,dc=bitwarden,dc=com", - "cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Theodore Egdorf,ou=Peons,dc=bitwarden,dc=com", - "cn=Vernice Drynan,ou=Management,dc=bitwarden,dc=com", - "cn=Hensley Parrish,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden,dc=com", - "cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elbert Culley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fady Benavides,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Djenana LeGuen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tele Travers,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cherilyn Stults,ou=Administrative,dc=bitwarden,dc=com", - "cn=Harri Kuntova,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dulcine Litherland,ou=Peons,dc=bitwarden,dc=com", - "cn=Kelwin Diee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden,dc=com", - "cn=Veen Tarver,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kimberlee Malee,ou=Payroll,dc=bitwarden,dc=com", - "cn=Chiho Larmour,ou=Management,dc=bitwarden,dc=com", - "cn=Merrily Provencal,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Divina Brevard,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Celine Lotan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Noriko Corner,ou=Management,dc=bitwarden,dc=com", - "cn=Janean Hoshi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shorwan Womack,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hattie Beilin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Loralie Cumming,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sanae Zalameda,ou=Peons,dc=bitwarden,dc=com", - "cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Krystalle Logue,ou=Peons,dc=bitwarden,dc=com", - "cn=Fara Dillow,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lonna Willcock,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Thrift McClelland,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tres Bashton,ou=Peons,dc=bitwarden,dc=com", - "cn=Lara Terneus,ou=Product Development,dc=bitwarden,dc=com", - "cn=Taryna Ganguly,ou=Administrative,dc=bitwarden,dc=com", - "cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Serge Systems,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marisca Parise,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brook Ta,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Evanne Servance,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hamzeh Lyall,ou=Peons,dc=bitwarden,dc=com", - "cn=Collette Yao,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mandy Heiliger,ou=Peons,dc=bitwarden,dc=com", - "cn=Liduine Farah,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Arlee Hawley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Theresina Reinink,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hanny Hassey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gil Zhou,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jurgen Strauss,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anestassia Phair,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Koko Fetzko,ou=Management,dc=bitwarden,dc=com", - "cn=Irc McRae,ou=Management,dc=bitwarden,dc=com", - "cn=Aime Reno,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Olympe Aston,ou=Administrative,dc=bitwarden,dc=com", - "cn=Janenna Durnford,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Selcuk Sochovka,ou=Peons,dc=bitwarden,dc=com", - "cn=Lauretta Abell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Akin Algood,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lenette Rance,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden,dc=com", - "cn=Louisa Thorne,ou=Janitorial,dc=bitwarden,dc=com", - "cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden,dc=com", - "cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ichiro Schill,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Delila Swinson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sriv Paul,ou=Peons,dc=bitwarden,dc=com", - "cn=Trish Rombeek,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tien Aghi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Barlas Discover,ou=Peons,dc=bitwarden,dc=com", - "cn=Sarita Cescon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Errol MAINT,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vonny Sheu,ou=Management,dc=bitwarden,dc=com", - "cn=Guilford Kung,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marguerite Markland,ou=Peons,dc=bitwarden,dc=com", - "cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Viviane Lenox,ou=Payroll,dc=bitwarden,dc=com", - "cn=Walliw Borrelli,ou=Management,dc=bitwarden,dc=com", - "cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden,dc=com", - "cn=Amalea Laskin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Florida Gebrael,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kieron Walkins,ou=Product Development,dc=bitwarden,dc=com", - "cn=Andree Junkin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Louise Joudrey,ou=Peons,dc=bitwarden,dc=com", - "cn=Gillie Achcar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Divine Ferriss,ou=Administrative,dc=bitwarden,dc=com", - "cn=Noella Charlebois,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brenn Screener,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Olivie Bruneau,ou=Management,dc=bitwarden,dc=com", - "cn=Annemarie VanMeter,ou=Peons,dc=bitwarden,dc=com", - "cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rudy Piper,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Berny Burger,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shirene Moyers,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hideki Willis,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Manas Leveille,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Collette Quane,ou=Product Development,dc=bitwarden,dc=com", - "cn=Renu Schallenberg,ou=Administrative,dc=bitwarden,dc=com", - "cn=Craig Fleischer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marla Visentin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Baris Ralph,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gusta Nugent,ou=Management,dc=bitwarden,dc=com", - "cn=Boer Jago,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kieran Wattier,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mala Shillingford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Charyl Whitty,ou=Management,dc=bitwarden,dc=com", - "cn=Jawad Waller,ou=Management,dc=bitwarden,dc=com", - "cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Glynda Tisdall,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aditya Runnels,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shuji Lisch,ou=Management,dc=bitwarden,dc=com", - "cn=Corette Biggers,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sarah Marceau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Huy Reporting,ou=Payroll,dc=bitwarden,dc=com", - "cn=Charissa Douglas,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cortney Okamoto,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rene Fletcher,ou=Payroll,dc=bitwarden,dc=com", - "cn=Deryck Nassr,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Coraline Kato,ou=Peons,dc=bitwarden,dc=com", - "cn=Becca Hallenbeck,ou=Peons,dc=bitwarden,dc=com", - "cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carin Briggs,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wai Pellizzeri,ou=Peons,dc=bitwarden,dc=com", - "cn=Joachim Nesrallah,ou=Peons,dc=bitwarden,dc=com", - "cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Loesje Smothers,ou=Management,dc=bitwarden,dc=com", - "cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dani Maksoud,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kieran Forghani,ou=Management,dc=bitwarden,dc=com", - "cn=Lusa Korpela,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Data Roussin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Stone Scholes,ou=Peons,dc=bitwarden,dc=com", - "cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Agathe Huddleston,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vmchange Vacher,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aleta Buntrock,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darlleen Murris,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mysore Kenlan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden,dc=com", - "cn=Roxanne Janning,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alexander Enns,ou=Peons,dc=bitwarden,dc=com", - "cn=Koen Keith,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mohan Parulekar,ou=Peons,dc=bitwarden,dc=com", - "cn=Ronna Esparza,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hot Terrel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aparna Loiseau,ou=Peons,dc=bitwarden,dc=com", - "cn=Lana Fasken,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fariborz Neefs,ou=Peons,dc=bitwarden,dc=com", - "cn=Netty Eustace,ou=Peons,dc=bitwarden,dc=com", - "cn=Rio Philion,ou=Product Development,dc=bitwarden,dc=com", - "cn=Beverlie Kutten,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=William Ridgewell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nonah McGlynn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Grace Hickerson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden,dc=com", - "cn=Liping Levi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mauro Meubus,ou=Administrative,dc=bitwarden,dc=com", - "cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", - "cn=Minny Southon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Halina Zenar,ou=Management,dc=bitwarden,dc=com", - "cn=Gwenny Bertram,ou=Payroll,dc=bitwarden,dc=com", - "cn=Andreana Gaube,ou=Peons,dc=bitwarden,dc=com", - "cn=Michelina Zbib,ou=Payroll,dc=bitwarden,dc=com", - "cn=Davis Mutcher,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kelcey Yedema,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kaila Squizzato,ou=Peons,dc=bitwarden,dc=com", - "cn=Ddene Ciocca,ou=Product Development,dc=bitwarden,dc=com", - "cn=Harmony Peschke,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cheslie NTINASH,ou=Management,dc=bitwarden,dc=com", - "cn=Celisse Malizia,ou=Management,dc=bitwarden,dc=com", - "cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rachelle Siew,ou=Product Development,dc=bitwarden,dc=com", - "cn=Charlean Robson,ou=Peons,dc=bitwarden,dc=com", - "cn=Gabriela Mustillo,ou=Management,dc=bitwarden,dc=com", - "cn=Latia Viau,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Madlen Venning,ou=Management,dc=bitwarden,dc=com", - "cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gunilla Skene,ou=Management,dc=bitwarden,dc=com", - "cn=Anestassia Ting,ou=Management,dc=bitwarden,dc=com", - "cn=MaryJane Telco,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mansukha Tchir,ou=Product Development,dc=bitwarden,dc=com", - "cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sherline Gillard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Inm Stefanac,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden,dc=com", - "cn=PengDavid Pryor,ou=Payroll,dc=bitwarden,dc=com", - "cn=Agathe Hr,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ervin Biage,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Brandie Vargo,ou=Administrative,dc=bitwarden,dc=com", - "cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Augusto Audette,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Loella Haydock,ou=Product Development,dc=bitwarden,dc=com", - "cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tami Scarlett,ou=Peons,dc=bitwarden,dc=com", - "cn=Betteanne Badza,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Roman Barsony,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Katrinka Debortoli,ou=Peons,dc=bitwarden,dc=com", - "cn=Jillana Alary,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Margeaux Raines,ou=Administrative,dc=bitwarden,dc=com", - "cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cassi Moritz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sales Rasmus,ou=Administrative,dc=bitwarden,dc=com", - "cn=Katrine Thomason,ou=Product Development,dc=bitwarden,dc=com", - "cn=Celka Kester,ou=Management,dc=bitwarden,dc=com", - "cn=Pansie Mayea,ou=Payroll,dc=bitwarden,dc=com", - "cn=Burton Shearer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden,dc=com", - "cn=Augusto Montero,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eyde Gallion,ou=Management,dc=bitwarden,dc=com", - "cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sule Valenziano,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Therese Totti,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dyana ChampionDemers,ou=Management,dc=bitwarden,dc=com", - "cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ranea Zitko,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Thayne Langer,ou=Peons,dc=bitwarden,dc=com", - "cn=Chie Hilton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gisela Enet,ou=Administrative,dc=bitwarden,dc=com", - "cn=Erlene Krajesky,ou=Peons,dc=bitwarden,dc=com", - "cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cezary Stephens,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cyndie Therrien,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rolf Philip,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karla Biss,ou=Peons,dc=bitwarden,dc=com", - "cn=Danica Margittai,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shelly Fabris,ou=Management,dc=bitwarden,dc=com", - "cn=Netta Gregorio,ou=Product Development,dc=bitwarden,dc=com", - "cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lu Tsai,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anabella McManus,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sandeep Deneen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fiore Brogdon,ou=Management,dc=bitwarden,dc=com", - "cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mariellen Tilley,ou=Management,dc=bitwarden,dc=com", - "cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ina Joudrey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Baines Buettgen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carie Pitcher,ou=Administrative,dc=bitwarden,dc=com", - "cn=Candie Gurer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Zino Swinson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Terese Beton,ou=Peons,dc=bitwarden,dc=com", - "cn=Reena Gullekson,ou=Peons,dc=bitwarden,dc=com", - "cn=Yoda Prado,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Waneta Irwin,ou=Peons,dc=bitwarden,dc=com", - "cn=Prity Wyllie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jillian Borzic,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Akio Broussard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ind Suitt,ou=Peons,dc=bitwarden,dc=com", - "cn=Alyse Walkley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Julienne Milne,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kit Lesperance,ou=Peons,dc=bitwarden,dc=com", - "cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Libbi Niccolls,ou=Management,dc=bitwarden,dc=com", - "cn=Kas Ashraf,ou=Payroll,dc=bitwarden,dc=com", - "cn=Georgia Henderson,ou=Peons,dc=bitwarden,dc=com", - "cn=Nuri Mand,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shafiq Doi,ou=Management,dc=bitwarden,dc=com", - "cn=Mamie Angerer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Trula Ledou,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hoy Rushton,ou=Management,dc=bitwarden,dc=com", - "cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden,dc=com", - "cn=Bobette Tohama,ou=Product Development,dc=bitwarden,dc=com", - "cn=Four Elks,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alli Kaura,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gil Walston,ou=Administrative,dc=bitwarden,dc=com", - "cn=Viole Lopinski,ou=Peons,dc=bitwarden,dc=com", - "cn=Amy StOnge,ou=Payroll,dc=bitwarden,dc=com", - "cn=Emogene Cocke,ou=Peons,dc=bitwarden,dc=com", - "cn=Tash Sails,ou=Product Development,dc=bitwarden,dc=com", - "cn=Coral Viriato,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Des Zacharias,ou=Payroll,dc=bitwarden,dc=com", - "cn=Durantaye Skelly,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Candie Mitsui,ou=Management,dc=bitwarden,dc=com", - "cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rocke Baughan,ou=Peons,dc=bitwarden,dc=com", - "cn=Vyza Tsuk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tiffany Fisprod,ou=Management,dc=bitwarden,dc=com", - "cn=Rafael Tucker,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kayle Gedman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Arthur Axberg,ou=Administrative,dc=bitwarden,dc=com", - "cn=Deeanne Armstead,ou=Management,dc=bitwarden,dc=com", - "cn=Gaye Sils,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sadan Trottier,ou=Peons,dc=bitwarden,dc=com", - "cn=Reina Woods,ou=Peons,dc=bitwarden,dc=com", - "cn=Krystalle Evers,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mair Bascombe,ou=Management,dc=bitwarden,dc=com", - "cn=Dinker Meehan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elena Chabrat,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rozelle Kunkel,ou=Management,dc=bitwarden,dc=com", - "cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Christine Moree,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anje Saward,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kwok Pringle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Chiho Zilaie,ou=Peons,dc=bitwarden,dc=com", - "cn=Shaw Leigh,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rosita Updt,ou=Payroll,dc=bitwarden,dc=com", - "cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Selim Kriegler,ou=Peons,dc=bitwarden,dc=com", - "cn=Tae Jeng,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden,dc=com", - "cn=Faz Chan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ericka Hayes,ou=Administrative,dc=bitwarden,dc=com", - "cn=Calli Pharr,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pamela Hufana,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Carley Fogleman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marsh Gribbons,ou=Peons,dc=bitwarden,dc=com", - "cn=Herminia Corvo,ou=Peons,dc=bitwarden,dc=com", - "cn=Loutitia Bruce,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Genga Poley,ou=Peons,dc=bitwarden,dc=com", - "cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Petunia Gunther,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bernice Yuan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brigitte Zahn,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lexis Otsuka,ou=Management,dc=bitwarden,dc=com", - "cn=Avril Hoffelt,ou=Management,dc=bitwarden,dc=com", - "cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vax Regier,ou=Peons,dc=bitwarden,dc=com", - "cn=Meara Lindsey,ou=Peons,dc=bitwarden,dc=com", - "cn=Aeriel Juan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dear Valerien,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shobana Bardsley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Iona Kohl,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Idette Ramage,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mick Jakab,ou=Product Development,dc=bitwarden,dc=com", - "cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Clay Staats,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ronica Dummer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rolf Maudrie,ou=Peons,dc=bitwarden,dc=com", - "cn=Sidonnie Comp,ou=Peons,dc=bitwarden,dc=com", - "cn=Jimmie Mand,ou=Management,dc=bitwarden,dc=com", - "cn=Esmaria Walston,ou=Peons,dc=bitwarden,dc=com", - "cn=Claude LaVecchia,ou=Management,dc=bitwarden,dc=com", - "cn=Rusty Montgomery,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chelsey Favreau,ou=Peons,dc=bitwarden,dc=com", - "cn=JulieAnne Drubld,ou=Management,dc=bitwarden,dc=com", - "cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shantee Moulton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Camilla Sayegh,ou=Management,dc=bitwarden,dc=com", - "cn=Txp Wojdylo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Belen Miernik,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mani Skillen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Diahann Roeten,ou=Janitorial,dc=bitwarden,dc=com", - "cn=KaiWai COKOL,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maible Adorno,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zero Fletcher,ou=Management,dc=bitwarden,dc=com", - "cn=Daveen Burnage,ou=Management,dc=bitwarden,dc=com", - "cn=Ebony Duquette,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tracie Holinski,ou=Peons,dc=bitwarden,dc=com", - "cn=Rio Naem,ou=Payroll,dc=bitwarden,dc=com", - "cn=Reeta Abel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Felicle McCartin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Darrell Presgrove,ou=Payroll,dc=bitwarden,dc=com", - "cn=Faizal Awadalla,ou=Management,dc=bitwarden,dc=com", - "cn=SikYin Borha,ou=Administrative,dc=bitwarden,dc=com", - "cn=Steve Marette,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Janeva Diener,ou=Product Development,dc=bitwarden,dc=com", - "cn=Amelie Brashear,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kenneth Tahamont,ou=Peons,dc=bitwarden,dc=com", - "cn=Mario Pappu,ou=Peons,dc=bitwarden,dc=com", - "cn=Bethena Arnauld,ou=Peons,dc=bitwarden,dc=com", - "cn=Nhut Hollis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Claudette Murton,ou=Management,dc=bitwarden,dc=com", - "cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dalila Solomon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Veriee Aksel,ou=Peons,dc=bitwarden,dc=com", - "cn=Mirella Lambregts,ou=Payroll,dc=bitwarden,dc=com", - "cn=Paulinus Bagi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rodrigo Healy,ou=Peons,dc=bitwarden,dc=com", - "cn=Vicheara Reimann,ou=Payroll,dc=bitwarden,dc=com", - "cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Johan Srivastava,ou=Peons,dc=bitwarden,dc=com", - "cn=Isl Luciani,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Monah Nipper,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sibyl Luettchau,ou=Peons,dc=bitwarden,dc=com", - "cn=Maryl Feeley,ou=Peons,dc=bitwarden,dc=com", - "cn=Moyna Syres,ou=Management,dc=bitwarden,dc=com", - "cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Petri Jimenez,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mike Inoue,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anita Gonsalves,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dennis Saad,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Taryna Anchia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Abigale Dacal,ou=Peons,dc=bitwarden,dc=com", - "cn=Kana Gantt,ou=Peons,dc=bitwarden,dc=com", - "cn=Hans Raing,ou=Payroll,dc=bitwarden,dc=com", - "cn=Melford Lopes,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hermina Ng,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ren Schwenk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Subramaniam Cranston,ou=Peons,dc=bitwarden,dc=com", - "cn=Coors Livas,ou=Management,dc=bitwarden,dc=com", - "cn=Arleyne Schreier,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ko Yuen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=HsingJu Kellogg,ou=Peons,dc=bitwarden,dc=com", - "cn=Juanita Beisel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jackson Forbes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bethina Rosvick,ou=Peons,dc=bitwarden,dc=com", - "cn=Osama Bitton,ou=Peons,dc=bitwarden,dc=com", - "cn=Douglass Eales,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Linh Ostifichuk,ou=Peons,dc=bitwarden,dc=com", - "cn=Leonor Hepburn,ou=Peons,dc=bitwarden,dc=com", - "cn=Umesh Mayhugh,ou=Management,dc=bitwarden,dc=com", - "cn=Cecile Chorley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alia Kuehne,ou=Peons,dc=bitwarden,dc=com", - "cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Fernando Pacey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sela Sandlford,ou=Management,dc=bitwarden,dc=com", - "cn=Latashia McCuaig,ou=Peons,dc=bitwarden,dc=com", - "cn=Dara Goodwin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Helli Charlino,ou=Peons,dc=bitwarden,dc=com", - "cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Erhard Ikeda,ou=Administrative,dc=bitwarden,dc=com", - "cn=Perrin Lai,ou=Peons,dc=bitwarden,dc=com", - "cn=Vickie Bardsley,ou=Peons,dc=bitwarden,dc=com", - "cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden,dc=com", - "cn=Katherin Habert,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nobuko Prickett,ou=Peons,dc=bitwarden,dc=com", - "cn=Amye Seery,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Illinois Bolgos,ou=Peons,dc=bitwarden,dc=com", - "cn=Sandro Ploof,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Turgay Potesta,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Debi Hore,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leyla Toulson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Morris Asghar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eirik Satkamp,ou=Payroll,dc=bitwarden,dc=com", - "cn=Asghar Graziano,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Randee McIntee,ou=Management,dc=bitwarden,dc=com", - "cn=Magnolia Aderhold,ou=Peons,dc=bitwarden,dc=com", - "cn=Gert Thibert,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hunter Durant,ou=Payroll,dc=bitwarden,dc=com", - "cn=Luci Gergen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yousef Musick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shabbir Derganc,ou=Peons,dc=bitwarden,dc=com", - "cn=Amalita Korey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Herbie Merrils,ou=Product Testing,dc=bitwarden,dc=com", - "cn=YuenPui Woodford,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mair Dobransky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fae Molson,ou=Management,dc=bitwarden,dc=com", - "cn=Subhash Moizer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rosella Spillane,ou=Peons,dc=bitwarden,dc=com", - "cn=Persis Modi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tamar Haggart,ou=Payroll,dc=bitwarden,dc=com", - "cn=Orelie Cheval,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ronna Morton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eryn Avirett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rowe Firment,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fidela Irving,ou=Product Development,dc=bitwarden,dc=com", - "cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Desire Rutter,ou=Administrative,dc=bitwarden,dc=com", - "cn=Xaviera Anstead,ou=Management,dc=bitwarden,dc=com", - "cn=Kelsi McAlister,ou=Management,dc=bitwarden,dc=com", - "cn=Marce Onyshko,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Son AlBasi,ou=Peons,dc=bitwarden,dc=com", - "cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Julianne Temp,ou=Administrative,dc=bitwarden,dc=com", - "cn=Seamus Sathe,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Terra Tanatichat,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Emil Hogeboom,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anup Volkmer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kevin Tangren,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Germaine Lisak,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Deni Chea,ou=Management,dc=bitwarden,dc=com", - "cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jooran Hilton,ou=Peons,dc=bitwarden,dc=com", - "cn=Pramod Piltz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Reyaud Kurio,ou=Management,dc=bitwarden,dc=com", - "cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden,dc=com", - "cn=Radio DiNinno,ou=Janitorial,dc=bitwarden,dc=com", - "cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cynde Tudo,ou=Peons,dc=bitwarden,dc=com", - "cn=Genga Huor,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leandra Steffy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden,dc=com", - "cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Trisha Walpole,ou=Peons,dc=bitwarden,dc=com", - "cn=Valli Buzzell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gita Manuszak,ou=Management,dc=bitwarden,dc=com", - "cn=Sadru Suda,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Susana Mattes,ou=Administrative,dc=bitwarden,dc=com", - "cn=Diannne Geuder,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ned Faletti,ou=Management,dc=bitwarden,dc=com", - "cn=Gwenni Felske,ou=Peons,dc=bitwarden,dc=com", - "cn=Coretta Mayne,ou=Management,dc=bitwarden,dc=com", - "cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cissiee Hampton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kalina Fangio,ou=Management,dc=bitwarden,dc=com", - "cn=Petter Sarna,ou=Management,dc=bitwarden,dc=com", - "cn=Nando Shurtleff,ou=Management,dc=bitwarden,dc=com", - "cn=Valene St,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elysia Swiat,ou=Administrative,dc=bitwarden,dc=com", - "cn=Yonik Valerien,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jania Clouthier,ou=Management,dc=bitwarden,dc=com", - "cn=Lennart Whang,ou=Management,dc=bitwarden,dc=com", - "cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hala Wallis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Levy Younger,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rahel Strober,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Casi Swick,ou=Peons,dc=bitwarden,dc=com", - "cn=Dimitrios Coop,ou=Payroll,dc=bitwarden,dc=com", - "cn=Elga Ashton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Harley Streatfield,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Khamdy Quinn,ou=Payroll,dc=bitwarden,dc=com", - "cn=Devan Kashima,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Regine Frizado,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roger Bondurant,ou=Peons,dc=bitwarden,dc=com", - "cn=Taffy Solkoff,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mame Muradia,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shirlee Mackey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Terrye Redish,ou=Product Development,dc=bitwarden,dc=com", - "cn=Penelope Rey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Anthony Meyer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dre McNerney,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Brooks Drescher,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brandea Dziemian,ou=Administrative,dc=bitwarden,dc=com", - "cn=Candis Richer,ou=Peons,dc=bitwarden,dc=com", - "cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden,dc=com", - "cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden,dc=com", - "cn=Ludovico Gleason,ou=Management,dc=bitwarden,dc=com", - "cn=Ninette McTiernan,ou=Management,dc=bitwarden,dc=com", - "cn=TunLin Pinney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Joshi Cassese,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Miroslav StPierre,ou=Management,dc=bitwarden,dc=com", - "cn=Sammy Krater,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sapphira McCain,ou=Peons,dc=bitwarden,dc=com", - "cn=Pierrette Discover,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ulf Willcox,ou=Management,dc=bitwarden,dc=com", - "cn=Carmen Trame,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cornelia Karim,ou=Peons,dc=bitwarden,dc=com", - "cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden,dc=com", - "cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roobbie Stars,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sharee Wynes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sil Marano,ou=Peons,dc=bitwarden,dc=com", - "cn=Leonor Maginley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nicoline Magee,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Penang Musca,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carlos Smyth,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden,dc=com", - "cn=Evania Copello,ou=Management,dc=bitwarden,dc=com", - "cn=Jamie Tschaja,ou=Peons,dc=bitwarden,dc=com", - "cn=Thang Dallaire,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Daphine Chandra,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ohio Baerg,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden,dc=com", - "cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Else Brien,ou=Administrative,dc=bitwarden,dc=com", - "cn=Giampaolo Gu,ou=Payroll,dc=bitwarden,dc=com", - "cn=Seven Tregenza,ou=Peons,dc=bitwarden,dc=com", - "cn=Rakel Ressner,ou=Peons,dc=bitwarden,dc=com", - "cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Britney Prestia,ou=Peons,dc=bitwarden,dc=com", - "cn=Jonathan Guty,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Livvy Hoag,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rennie Postolek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jayesh Liao,ou=Peons,dc=bitwarden,dc=com", - "cn=Tiffany Fougere,ou=Management,dc=bitwarden,dc=com", - "cn=Darline Swinson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Biddie Scp,ou=Management,dc=bitwarden,dc=com", - "cn=Colin Irick,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yueli Clinger,ou=Peons,dc=bitwarden,dc=com", - "cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Randa Wery,ou=Payroll,dc=bitwarden,dc=com", - "cn=Theodor Schute,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Keeley Basa,ou=Management,dc=bitwarden,dc=com", - "cn=Mimi Clements,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dasi Baader,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kerrin Miner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tania Guimond,ou=Peons,dc=bitwarden,dc=com", - "cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hedvige Doran,ou=Management,dc=bitwarden,dc=com", - "cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Diahann Nason,ou=Peons,dc=bitwarden,dc=com", - "cn=Leecia Guarino,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kacie Moyano,ou=Management,dc=bitwarden,dc=com", - "cn=Dicky Guignon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bobbie Suwala,ou=Peons,dc=bitwarden,dc=com", - "cn=Melissa Adkinson,ou=Peons,dc=bitwarden,dc=com", - "cn=Georgine Lantto,ou=Peons,dc=bitwarden,dc=com", - "cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Johnnie Mayes,ou=Management,dc=bitwarden,dc=com", - "cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anker Serapin,ou=Management,dc=bitwarden,dc=com", - "cn=Mable Thirugnanam,ou=Management,dc=bitwarden,dc=com", - "cn=Allan Rizewiski,ou=Management,dc=bitwarden,dc=com", - "cn=Peng Quantrill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Addy Paunins,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Friederike Constable,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Starlene Solodko,ou=Payroll,dc=bitwarden,dc=com", - "cn=Verene Ludchen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Curtis Mersch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Piper Brander,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rozalin Heppes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cad Ajersch,ou=Human Resources,dc=bitwarden,dc=com", - "cn=TakWai Wagoner,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carran Rokas,ou=Administrative,dc=bitwarden,dc=com", - "cn=Idus Wayling,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maryann Somerville,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mildred Dumas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ilda Bisson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Babb Nicolle,ou=Management,dc=bitwarden,dc=com", - "cn=Karyn Pagani,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Agnola MacRae,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tessi Borha,ou=Peons,dc=bitwarden,dc=com", - "cn=Tonia OToole,ou=Product Development,dc=bitwarden,dc=com", - "cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gheorghe Eros,ou=Management,dc=bitwarden,dc=com", - "cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Robina Chaikowsky,ou=Peons,dc=bitwarden,dc=com", - "cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ursala Wadden,ou=Management,dc=bitwarden,dc=com", - "cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sephira Munsey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Neal Astle,ou=Management,dc=bitwarden,dc=com", - "cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vacman Lapostolle,ou=Management,dc=bitwarden,dc=com", - "cn=Genna Rappoport,ou=Management,dc=bitwarden,dc=com", - "cn=Lenny Mundi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden,dc=com", - "cn=Iva Pilote,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Caridad Spolar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elenore Jatar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Otha Scheffler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Janot Greenway,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rowan Hicks,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bertina Harkness,ou=Management,dc=bitwarden,dc=com", - "cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Misbah Desautels,ou=Payroll,dc=bitwarden,dc=com", - "cn=TakWai Miranda,ou=Peons,dc=bitwarden,dc=com", - "cn=Blisse Silverman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nerty Longchamps,ou=Management,dc=bitwarden,dc=com", - "cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hilary Mendonca,ou=Peons,dc=bitwarden,dc=com", - "cn=Vivien Seager,ou=Payroll,dc=bitwarden,dc=com", - "cn=Estele Dasch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joyous Belson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zorine OLeary,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kanata Kilby,ou=Peons,dc=bitwarden,dc=com", - "cn=Peder Gaylor,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carter MacMaid,ou=Payroll,dc=bitwarden,dc=com", - "cn=Man Dacre,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Theresina Torrell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emelda Neely,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Avinash Kingaby,ou=Product Development,dc=bitwarden,dc=com", - "cn=Crysta Sloan,ou=Peons,dc=bitwarden,dc=com", - "cn=Buck Auerbach,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fallon Windom,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden,dc=com", - "cn=Samir Wesenberg,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hildegaard Valko,ou=Management,dc=bitwarden,dc=com", - "cn=Azmina Irvine,ou=Peons,dc=bitwarden,dc=com", - "cn=Cortland Kwa,ou=Administrative,dc=bitwarden,dc=com", - "cn=Franz Artspssa,ou=Administrative,dc=bitwarden,dc=com", - "cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marrissa Ronan,ou=Peons,dc=bitwarden,dc=com", - "cn=Stanislas Sehgal,ou=Management,dc=bitwarden,dc=com", - "cn=Woody Morocz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Karla Proffit,ou=Peons,dc=bitwarden,dc=com", - "cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Julianna Varughese,ou=Management,dc=bitwarden,dc=com", - "cn=Elset Neustifter,ou=Peons,dc=bitwarden,dc=com", - "cn=Grete Daymond,ou=Peons,dc=bitwarden,dc=com", - "cn=Thekla Wokoma,ou=Management,dc=bitwarden,dc=com", - "cn=Sika Koller,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sukey Strauss,ou=Administrative,dc=bitwarden,dc=com", - "cn=Icy Foeppel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yongli Barrows,ou=Peons,dc=bitwarden,dc=com", - "cn=Xaviera Broca,ou=Product Development,dc=bitwarden,dc=com", - "cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Junette Foos,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ashraf Denter,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amelina Marceau,ou=Management,dc=bitwarden,dc=com", - "cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yuen Huppert,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vijai Bergeron,ou=Administrative,dc=bitwarden,dc=com", - "cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Diane Andersen,ou=Management,dc=bitwarden,dc=com", - "cn=Jester Mannion,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Christy Townsel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Raine Assistance,ou=Payroll,dc=bitwarden,dc=com", - "cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ireland Ciochon,ou=Administrative,dc=bitwarden,dc=com", - "cn=WaiMan Binner,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ruperta Jodoin,ou=Peons,dc=bitwarden,dc=com", - "cn=Narrima Tu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elonore Spieker,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pick Santella,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lynea Newcomb,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yukinaga Brander,ou=Peons,dc=bitwarden,dc=com", - "cn=Jerrylee Galloway,ou=Peons,dc=bitwarden,dc=com", - "cn=Mia Amarsi,ou=Peons,dc=bitwarden,dc=com", - "cn=Joyous Smecca,ou=Management,dc=bitwarden,dc=com", - "cn=Larkin Baughan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lillis Tyler,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rosy Stctest,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Costas Zanetti,ou=Administrative,dc=bitwarden,dc=com", - "cn=Technical Carpentier,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lanie Geesman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Eydie Sliter,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Trista Farag,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chery Greaver,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Katuscha Huor,ou=Management,dc=bitwarden,dc=com", - "cn=Bue Satta,ou=Administrative,dc=bitwarden,dc=com", - "cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden,dc=com", - "cn=Justine Manolios,ou=Administrative,dc=bitwarden,dc=com", - "cn=Guenna Sullivan,ou=Peons,dc=bitwarden,dc=com", - "cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Deb Sehmbey,ou=Management,dc=bitwarden,dc=com", - "cn=Gavra Skrobanski,ou=Peons,dc=bitwarden,dc=com", - "cn=Gajendra Deibert,ou=Management,dc=bitwarden,dc=com", - "cn=Yong Nuttall,ou=Product Development,dc=bitwarden,dc=com", - "cn=Siew Saiyed,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Access McCullough,ou=Peons,dc=bitwarden,dc=com", - "cn=Charmion Sathe,ou=Management,dc=bitwarden,dc=com", - "cn=Wilow Tools,ou=Human Resources,dc=bitwarden,dc=com", - "cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marylin Fradette,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bellina Capobianco,ou=Payroll,dc=bitwarden,dc=com", - "cn=Darcee Stegall,ou=Peons,dc=bitwarden,dc=com", - "cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tonie Georgiou,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vahe Jasen,ou=Peons,dc=bitwarden,dc=com", - "cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dien Plambeck,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pamella Royle,ou=Payroll,dc=bitwarden,dc=com", - "cn=Miro Doolittle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden,dc=com", - "cn=Esmaria Ligurs,ou=Management,dc=bitwarden,dc=com", - "cn=Jim Gillespie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lottie Patoka,ou=Peons,dc=bitwarden,dc=com", - "cn=Keven Camillucci,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ning Schiegl,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Torie Sridaran,ou=Management,dc=bitwarden,dc=com", - "cn=Jilly Ziai,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Katharyn Herak,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carmina Slade,ou=Peons,dc=bitwarden,dc=com", - "cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden,dc=com", - "cn=NamKiet Dada,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nashir SUPPORT,ou=Management,dc=bitwarden,dc=com", - "cn=Bonni Gehring,ou=Product Development,dc=bitwarden,dc=com", - "cn=Agenia Deboer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tatiana Keene,ou=Peons,dc=bitwarden,dc=com", - "cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ora Trayer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Malissa Walta,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sage Jones,ou=Administrative,dc=bitwarden,dc=com", - "cn=Homer Boothroyd,ou=Administrative,dc=bitwarden,dc=com", - "cn=Oksana Baran,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gill Stalter,ou=Peons,dc=bitwarden,dc=com", - "cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden,dc=com", - "cn=PohSoon Carter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cherilynn Munden,ou=Product Development,dc=bitwarden,dc=com", - "cn=Stephie Wong,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Leah Makoid,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sisely Cameron,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lacie Seddigh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Golda Decasper,ou=Peons,dc=bitwarden,dc=com", - "cn=Chander Kernahan,ou=Product Development,dc=bitwarden,dc=com", - "cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nicola Haupt,ou=Product Development,dc=bitwarden,dc=com", - "cn=Orelle Ifact,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jak Locken,ou=Product Development,dc=bitwarden,dc=com", - "cn=Phillis Hermack,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marcellina Knighton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Krystal Runnels,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sonnnie Steven,ou=Administrative,dc=bitwarden,dc=com", - "cn=Catherin Whaley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fernanda Michalos,ou=Payroll,dc=bitwarden,dc=com", - "cn=Darline Worpell,ou=Management,dc=bitwarden,dc=com", - "cn=Jose Brading,ou=Administrative,dc=bitwarden,dc=com", - "cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Adrie Coverdale,ou=Administrative,dc=bitwarden,dc=com", - "cn=Coral Larrigan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lorrin Derrett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Xu Gertridge,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carlisle Wokoma,ou=Management,dc=bitwarden,dc=com", - "cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tatsuya Standel,ou=Management,dc=bitwarden,dc=com", - "cn=Shirline Dahl,ou=Peons,dc=bitwarden,dc=com", - "cn=Mandie Tota,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nicolea Garee,ou=Management,dc=bitwarden,dc=com", - "cn=Geraldine Meehan,ou=Administrative,dc=bitwarden,dc=com", - "cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mickie Budhram,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Faustina Severinac,ou=Management,dc=bitwarden,dc=com", - "cn=Roy Zaloker,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karel Padiou,ou=Peons,dc=bitwarden,dc=com", - "cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Taiwana Rhodes,ou=Management,dc=bitwarden,dc=com", - "cn=Hedi Cicci,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Valaria Limerick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Oralia Hoggan,ou=Management,dc=bitwarden,dc=com", - "cn=Leyla Parham,ou=Management,dc=bitwarden,dc=com", - "cn=Derick Paar,ou=Peons,dc=bitwarden,dc=com", - "cn=Dau Peart,ou=Peons,dc=bitwarden,dc=com", - "cn=Danell Kapp,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pen Marshall,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kary Soo,ou=Management,dc=bitwarden,dc=com", - "cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kiem Pracht,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vick Marleau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Adrianna Bruder,ou=Management,dc=bitwarden,dc=com", - "cn=Isabelita Swinney,ou=Peons,dc=bitwarden,dc=com", - "cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kelcey Lee,ou=Administrative,dc=bitwarden,dc=com", - "cn=Brandy Koellner,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Selie Schedulers,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Addons Dieter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lesly Willett,ou=Peons,dc=bitwarden,dc=com", - "cn=Coleman Wolski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shutterbug Lauson,ou=Management,dc=bitwarden,dc=com", - "cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nancy Oziskender,ou=Payroll,dc=bitwarden,dc=com", - "cn=Doloritas Flowers,ou=Management,dc=bitwarden,dc=com", - "cn=Veleta Lun,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aila Speaker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Scptest Menna,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Madeleine Goss,ou=Administrative,dc=bitwarden,dc=com", - "cn=Thuy Sullivan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sheridan Sandner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Malory Groff,ou=Payroll,dc=bitwarden,dc=com", - "cn=Armine livinston,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Anibal Ribakovs,ou=Management,dc=bitwarden,dc=com", - "cn=Tao Kardomateas,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mommy Neto,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Goldwyn Lister,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jesus Fraser,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sabina Davison,ou=Peons,dc=bitwarden,dc=com", - "cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ohio Leong,ou=Peons,dc=bitwarden,dc=com", - "cn=Helma Fulford,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Wendy Ashford,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ricki Schadan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carolee McClintock,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fara Phifer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jennee Jasmin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Yatish Streng,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mair Basladynski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Karyn Bender,ou=Administrative,dc=bitwarden,dc=com", - "cn=Beate Ahlberg,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roberto Binder,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Miro Sparksman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ethan Salazar,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elza Meubus,ou=Human Resources,dc=bitwarden,dc=com", - "cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden,dc=com", - "cn=Phyllida Peng,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leslie Wagoner,ou=Administrative,dc=bitwarden,dc=com", - "cn=Erning Dmsrtime,ou=Peons,dc=bitwarden,dc=com", - "cn=Frederica Barel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Wilkin Coupal,ou=Management,dc=bitwarden,dc=com", - "cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden,dc=com", - "cn=Millie Kenol,ou=Payroll,dc=bitwarden,dc=com", - "cn=Miklos Menzies,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=WenKai Peleato,ou=Payroll,dc=bitwarden,dc=com", - "cn=ChoLun Simser,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Minerva Paulett,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Asia Aleong,ou=Product Development,dc=bitwarden,dc=com", - "cn=Xantippe Sydor,ou=Product Development,dc=bitwarden,dc=com", - "cn=Devora Bunker,ou=Peons,dc=bitwarden,dc=com", - "cn=Hudai Dallago,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pamella Herman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Preston Marco,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sybyl McIver,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Fidelia Mehta,ou=Peons,dc=bitwarden,dc=com", - "cn=Tom Boose,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lorrel Manno,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Stacee Finnie,ou=Administrative,dc=bitwarden,dc=com", - "cn=Clari Beshai,ou=Management,dc=bitwarden,dc=com", - "cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden,dc=com", - "cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clovis Banigan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cherin Shedd,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ivonne Whiting,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ardra Gemmill,ou=Payroll,dc=bitwarden,dc=com", - "cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden,dc=com", - "cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Arthur Koch,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leonie Begley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vanessa Thum,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rey Boyer,ou=Management,dc=bitwarden,dc=com", - "cn=Nanete Tomlinson,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorrie Lamy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Donal DorisHampton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leonardo Palasek,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rhodie Seery,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leonas Salomon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sibel McKnight,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anabel Borel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Milo Gravitte,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Katha Noddin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jami Baab,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Verna Petree,ou=Product Development,dc=bitwarden,dc=com", - "cn=Adelia Leibich,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jann Marquart,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mirjam Cleary,ou=Peons,dc=bitwarden,dc=com", - "cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anselma Sabat,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ursola Zagorski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gael Cho,ou=Peons,dc=bitwarden,dc=com", - "cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kris Rotzjean,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zaneta Wun,ou=Product Development,dc=bitwarden,dc=com", - "cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ania Scalabrini,ou=Administrative,dc=bitwarden,dc=com", - "cn=Andras Maruszak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tab Kalair,ou=Peons,dc=bitwarden,dc=com", - "cn=Nadya Speer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Turus Bisson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ioan Naylor,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jeroen Fleurima,ou=Peons,dc=bitwarden,dc=com", - "cn=Lacy Arai,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sylvain Hickin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Margaret Begley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vick Lovegrove,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bob Acres,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dahlia Oost,ou=Management,dc=bitwarden,dc=com", - "cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ianthe Yum,ou=Management,dc=bitwarden,dc=com", - "cn=Judi Adamo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Filibert Pachulski,ou=Peons,dc=bitwarden,dc=com", - "cn=Carmon Kroeger,ou=Management,dc=bitwarden,dc=com", - "cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Camellia Gavidia,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fqa Abrams,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pepita Houston,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden,dc=com", - "cn=Horst Becan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ericha Akai,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mina Amato,ou=Payroll,dc=bitwarden,dc=com", - "cn=Katherine Ostarello,ou=Management,dc=bitwarden,dc=com", - "cn=Mario Bice,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Othelia Radford,ou=Payroll,dc=bitwarden,dc=com", - "cn=Meta Todloski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Riyaz Georges,ou=Administrative,dc=bitwarden,dc=com", - "cn=Teddi Connell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Huong OKelly,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maddalena Dillard,ou=Payroll,dc=bitwarden,dc=com", - "cn=Amandip Lescot,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Verinder Chiou,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Helmut Asdel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vital Therrien,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ileana Bottomley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Julian Condurelis,ou=Management,dc=bitwarden,dc=com", - "cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nashib Mikulka,ou=Payroll,dc=bitwarden,dc=com", - "cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cristie Nill,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Oliy Maloney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Davita Berger,ou=Peons,dc=bitwarden,dc=com", - "cn=Metyn Mullaly,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ning Suitt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rafa Vilozny,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden,dc=com", - "cn=Anita Bui,ou=Product Development,dc=bitwarden,dc=com", - "cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Verina Lamirande,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gusella Loggins,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hatty Murash,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Clyde Labenek,ou=Product Development,dc=bitwarden,dc=com", - "cn=New Koay,ou=Payroll,dc=bitwarden,dc=com", - "cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Doria Smothers,ou=Management,dc=bitwarden,dc=com", - "cn=Tonia Gahan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Reina Gracey,ou=Management,dc=bitwarden,dc=com", - "cn=Vale Harwerth,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gavra Brule,ou=Peons,dc=bitwarden,dc=com", - "cn=Corilla Angustia,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Simona Lemyre,ou=Management,dc=bitwarden,dc=com", - "cn=Loris Knappe,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mariya Frumerie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pradip Wesenberg,ou=Peons,dc=bitwarden,dc=com", - "cn=Teena Szuminski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jeanie Shumate,ou=Management,dc=bitwarden,dc=com", - "cn=Mindy Agnew,ou=Peons,dc=bitwarden,dc=com", - "cn=Cosette Hagley,ou=Peons,dc=bitwarden,dc=com", - "cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Darnell Gombos,ou=Product Development,dc=bitwarden,dc=com", - "cn=Odille Belisle,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mirilla Malik,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lise Disalvo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lou Burchat,ou=Peons,dc=bitwarden,dc=com", - "cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Donita Teichman,ou=Peons,dc=bitwarden,dc=com", - "cn=Hermione Monet,ou=Peons,dc=bitwarden,dc=com", - "cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Belicia Kupitz,ou=Peons,dc=bitwarden,dc=com", - "cn=Tani Rausch,ou=Administrative,dc=bitwarden,dc=com", - "cn=Berget Baerg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Skyler Hariman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Toni Shaddock,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Foad Roberts,ou=Peons,dc=bitwarden,dc=com", - "cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Keely Dee,ou=Peons,dc=bitwarden,dc=com", - "cn=Shiu Trimble,ou=Management,dc=bitwarden,dc=com", - "cn=Gwenore Taren,ou=Product Development,dc=bitwarden,dc=com", - "cn=Saraann Millen,ou=Peons,dc=bitwarden,dc=com", - "cn=Sandra Mosley,ou=Administrative,dc=bitwarden,dc=com", - "cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bernhard Niro,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ema Kelkar,ou=Peons,dc=bitwarden,dc=com", - "cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Erich Pandey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Farshid Sattler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anissa Nasato,ou=Payroll,dc=bitwarden,dc=com", - "cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Grietje Dionne,ou=Management,dc=bitwarden,dc=com", - "cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Asia Dobbs,ou=Administrative,dc=bitwarden,dc=com", - "cn=Flor Powney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Valera Fogelson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aideen Vanaman,ou=Peons,dc=bitwarden,dc=com", - "cn=Pattie McLemore,ou=Payroll,dc=bitwarden,dc=com", - "cn=Levy Wolfson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Patricia Pappas,ou=Administrative,dc=bitwarden,dc=com", - "cn=Miguel Kozak,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gina Toolroom,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fairy Tables,ou=Management,dc=bitwarden,dc=com", - "cn=Selia Larocque,ou=Management,dc=bitwarden,dc=com", - "cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jozef Altmann,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Octavio Doud,ou=Peons,dc=bitwarden,dc=com", - "cn=Atl Baugnon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stacie Tabler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chantal Feil,ou=Payroll,dc=bitwarden,dc=com", - "cn=Waverly Caron,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cindy McTurner,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cherri Loper,ou=Management,dc=bitwarden,dc=com", - "cn=Joleen Fobert,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marley Dadalt,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jennee Reznick,ou=Peons,dc=bitwarden,dc=com", - "cn=Gerrit Pullan,ou=Peons,dc=bitwarden,dc=com", - "cn=Duke Ness,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emilie Grigsby,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shiroshi Thorsen,ou=Management,dc=bitwarden,dc=com", - "cn=Katey Dorr,ou=Administrative,dc=bitwarden,dc=com", - "cn=Manuela Whitsell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alvina Stokoe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Theo TestNTMVAA,ou=Management,dc=bitwarden,dc=com", - "cn=Maidsir Spaugh,ou=Management,dc=bitwarden,dc=com", - "cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vilas Jarvah,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cilka Chadha,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Merl Heffner,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shelly Adler,ou=Management,dc=bitwarden,dc=com", - "cn=Marchelle Howie,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chick Doucet,ou=Management,dc=bitwarden,dc=com", - "cn=Vittoria Astley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hector Easaw,ou=Payroll,dc=bitwarden,dc=com", - "cn=Matilda Gomez,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Crista McMasters,ou=Management,dc=bitwarden,dc=com", - "cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden,dc=com", - "cn=Amnish Haydock,ou=Management,dc=bitwarden,dc=com", - "cn=Mignonne Shull,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lizzy Monson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Riyad Stropp,ou=Peons,dc=bitwarden,dc=com", - "cn=Jennee Tipping,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lorianne Devera,ou=Peons,dc=bitwarden,dc=com", - "cn=Kana VanSickle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bina Scales,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ariela Stachowiak,ou=Peons,dc=bitwarden,dc=com", - "cn=Leontine Kresl,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tomasine Borza,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Emory Ramnarine,ou=Product Development,dc=bitwarden,dc=com", - "cn=Corella Loperena,ou=Management,dc=bitwarden,dc=com", - "cn=Mirna Kashef,ou=Administrative,dc=bitwarden,dc=com", - "cn=Roseann Coyne,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Agenia Zampino,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vic Lenox,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sissie Rao,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chi Shreve,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gloria DeGrandis,ou=Management,dc=bitwarden,dc=com", - "cn=Ryann Teacher,ou=Management,dc=bitwarden,dc=com", - "cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", - "cn=Naveen Kollman,ou=Peons,dc=bitwarden,dc=com", - "cn=Rozina Schipper,ou=Management,dc=bitwarden,dc=com", - "cn=Partha Kelsay,ou=Peons,dc=bitwarden,dc=com", - "cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vinh Dhar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden,dc=com", - "cn=Cart Cardozo,ou=Management,dc=bitwarden,dc=com", - "cn=Briana Ambler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kemp Akai,ou=Management,dc=bitwarden,dc=com", - "cn=Anjela Gribbons,ou=Product Development,dc=bitwarden,dc=com", - "cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hudai Baulch,ou=Payroll,dc=bitwarden,dc=com", - "cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kee Gilchrist,ou=Payroll,dc=bitwarden,dc=com", - "cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ellis Brunner,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Violet Luwemba,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kessia McVicker,ou=Management,dc=bitwarden,dc=com", - "cn=Buffy Treen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Huub Palfreyman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Walt Pringle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rima OBrien,ou=Peons,dc=bitwarden,dc=com", - "cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden,dc=com", - "cn=Robinett Borg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Wai Elms,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alikee Seay,ou=Janitorial,dc=bitwarden,dc=com", - "cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pammi Abrams,ou=Peons,dc=bitwarden,dc=com", - "cn=Gateway Benzick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rhody Birk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Atlanta Brannon,ou=Management,dc=bitwarden,dc=com", - "cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden,dc=com", - "cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Moshe Bowick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shirene Lommen,ou=Management,dc=bitwarden,dc=com", - "cn=Chand Fusca,ou=Peons,dc=bitwarden,dc=com", - "cn=Bethina Kigyos,ou=Peons,dc=bitwarden,dc=com", - "cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Paolina Ricketson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Isaac McNeil,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jaman Churchill,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Erick Heynen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sondra Frie,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mack Hermanns,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Patchit Panesar,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mohamad Ng,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jayme McMillen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Perrin McMasters,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joell Veloz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Naima Swinks,ou=Management,dc=bitwarden,dc=com", - "cn=Mab Amato,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jeanna Lawther,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Luther Kordik,ou=Peons,dc=bitwarden,dc=com", - "cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jenine Sutton,ou=Peons,dc=bitwarden,dc=com", - "cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ronny Blomquist,ou=Management,dc=bitwarden,dc=com", - "cn=Krystal Noel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clark Bruneau,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anallese Bloemker,ou=Administrative,dc=bitwarden,dc=com", - "cn=WenKai Schemena,ou=Peons,dc=bitwarden,dc=com", - "cn=Luan Goupil,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Verna Britt,ou=Management,dc=bitwarden,dc=com", - "cn=Hoog Gareis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Skyler Lamy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Layne Esry,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Amrik Thornber,ou=Payroll,dc=bitwarden,dc=com", - "cn=Michaela Lobianco,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Roxy Banerjee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Derek Ukena,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jenelle Crothers,ou=Administrative,dc=bitwarden,dc=com", - "cn=Devonna Caron,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Neill Droste,ou=Peons,dc=bitwarden,dc=com", - "cn=Lissy MooYoung,ou=Payroll,dc=bitwarden,dc=com", - "cn=Frederica Herbers,ou=Product Development,dc=bitwarden,dc=com", - "cn=Geir Madigan,ou=Peons,dc=bitwarden,dc=com", - "cn=Cal Vosburg,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darrol Schluter,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Augustin Polashock,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karrah Federico,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Arlina Douet,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Herb Cantrell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ott Beresnikow,ou=Management,dc=bitwarden,dc=com", - "cn=Tracey Tates,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jeniece Belmont,ou=Peons,dc=bitwarden,dc=com", - "cn=Vern Vosup,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zoltan Zumhagen,ou=Management,dc=bitwarden,dc=com", - "cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Makiko Walta,ou=Management,dc=bitwarden,dc=com", - "cn=Ermentrude Boult,ou=Management,dc=bitwarden,dc=com", - "cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Larisa Szura,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Wiebe Ku,ou=Peons,dc=bitwarden,dc=com", - "cn=Zeljko Subick,ou=Management,dc=bitwarden,dc=com", - "cn=Liese Neill,ou=Product Development,dc=bitwarden,dc=com", - "cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Doralin PATCOR,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tillie Erskine,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sheeree Petrunka,ou=Management,dc=bitwarden,dc=com", - "cn=Winifred Grelck,ou=Management,dc=bitwarden,dc=com", - "cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Toni Volkmer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alexandra Bassett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ineke Aloi,ou=Management,dc=bitwarden,dc=com", - "cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shafiq Hearn,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bucklin Venne,ou=Management,dc=bitwarden,dc=com", - "cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Theodora Kendall,ou=Management,dc=bitwarden,dc=com", - "cn=Kee Simanskis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Micky Moorefield,ou=Management,dc=bitwarden,dc=com", - "cn=Saraann Helpline,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Blondy Kluke,ou=Management,dc=bitwarden,dc=com", - "cn=Marys Edgette,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Verina McGuigan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Beryl Desmond,ou=Management,dc=bitwarden,dc=com", - "cn=Sydel Staples,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Letta Kalyani,ou=Peons,dc=bitwarden,dc=com", - "cn=Shuo Anstett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Winifred Billing,ou=Payroll,dc=bitwarden,dc=com", - "cn=Colene Colwell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Isabelita Irving,ou=Management,dc=bitwarden,dc=com", - "cn=Raudres Fleischer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Laslo Anstett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ovila Liverman,ou=Management,dc=bitwarden,dc=com", - "cn=Angy Walkins,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hesham Ellison,ou=Management,dc=bitwarden,dc=com", - "cn=Arnett Boone,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tawauna Culver,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Annelise Traulich,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Farouk Goridkov,ou=Peons,dc=bitwarden,dc=com", - "cn=Loris Huestis,ou=Management,dc=bitwarden,dc=com", - "cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sile Creighton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Deborah Marui,ou=Payroll,dc=bitwarden,dc=com", - "cn=Drona Hahn,ou=Peons,dc=bitwarden,dc=com", - "cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Genia Pewitt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Annet Bagshaw,ou=Peons,dc=bitwarden,dc=com", - "cn=Martha Hilaire,ou=Product Development,dc=bitwarden,dc=com", - "cn=Consuelo Welch,ou=Management,dc=bitwarden,dc=com", - "cn=Marti Petrea,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pratibha Gater,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pojanart Edey,ou=Peons,dc=bitwarden,dc=com", - "cn=Maynard Shennan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Theressa Schultze,ou=Peons,dc=bitwarden,dc=com", - "cn=Nanon McIntyre,ou=Product Development,dc=bitwarden,dc=com", - "cn=Silvia Peiser,ou=Peons,dc=bitwarden,dc=com", - "cn=Meryl LeClair,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tariq Standel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Yeung Walpole,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carita Timmerman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Haley Herren,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elbert Allard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Trix VO,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tommi Kapsa,ou=Peons,dc=bitwarden,dc=com", - "cn=Teriann Stastny,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bryant Goel,ou=Peons,dc=bitwarden,dc=com", - "cn=Willabella Darnell,ou=Peons,dc=bitwarden,dc=com", - "cn=Noemi Skerlak,ou=Peons,dc=bitwarden,dc=com", - "cn=Veena Siefert,ou=Product Development,dc=bitwarden,dc=com", - "cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Karyn Frankenberger,ou=Management,dc=bitwarden,dc=com", - "cn=Angil Simpkin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Berta Fetzko,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lance Saltsider,ou=Peons,dc=bitwarden,dc=com", - "cn=Vijai Brent,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Miss Casper,ou=Peons,dc=bitwarden,dc=com", - "cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Adrienne Askins,ou=Peons,dc=bitwarden,dc=com", - "cn=Omayma Kinos,ou=Management,dc=bitwarden,dc=com", - "cn=Francene Babin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maitilde Clerke,ou=Management,dc=bitwarden,dc=com", - "cn=Wileen Martel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Salli Boroski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lissi Straub,ou=Peons,dc=bitwarden,dc=com", - "cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Adrian Paialunga,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dido Kohl,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chung Yarber,ou=Human Resources,dc=bitwarden,dc=com", - "cn=KwokLan Starowicz,ou=Management,dc=bitwarden,dc=com", - "cn=Odile Finane,ou=Peons,dc=bitwarden,dc=com", - "cn=Shila Wykoff,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nga Seroka,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden,dc=com", - "cn=Laurel Godfrey,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marja Brivet,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fung Holvey,ou=Management,dc=bitwarden,dc=com", - "cn=Remy Freeth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Christina Schwartz,ou=Management,dc=bitwarden,dc=com", - "cn=Sissy Snelling,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Randa Cumpston,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maitreya Dpu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jon Giotis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mala Kilner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Melanie Bubel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Collie Nentwich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Madella Feder,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden,dc=com", - "cn=Roman Burleigh,ou=Product Development,dc=bitwarden,dc=com", - "cn=SangMaun Nunn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Moria Auld,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ted Demeulemeester,ou=Management,dc=bitwarden,dc=com", - "cn=Bertha Lamont,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hayden Francese,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jeannette Quante,ou=Management,dc=bitwarden,dc=com", - "cn=Steffane Middleton,ou=Peons,dc=bitwarden,dc=com", - "cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden,dc=com", - "cn=Saied Streight,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marco Ethier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carlyn Gallion,ou=Management,dc=bitwarden,dc=com", - "cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pacific Maxin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Coursey Breiten,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brandea Bagi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Silva Hoag,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sybilla Tipping,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mindy LePage,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Beckie Bach,ou=Peons,dc=bitwarden,dc=com", - "cn=Catie Biermann,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jin Benge,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Elsa Breglec,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Clementina Lozinski,ou=Management,dc=bitwarden,dc=com", - "cn=Danella Gullekson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Monte Luker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Valry Bratten,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lissi Neumeister,ou=Management,dc=bitwarden,dc=com", - "cn=Claribel Digenova,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tatsman Verma,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ransom Nipper,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gilemette McWherter,ou=Management,dc=bitwarden,dc=com", - "cn=Holst Bringhurst,ou=Management,dc=bitwarden,dc=com", - "cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Joe Guatto,ou=Peons,dc=bitwarden,dc=com", - "cn=Peder Jarmon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Melisa Lenior,ou=Management,dc=bitwarden,dc=com", - "cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shafiq Archer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nancee Smuda,ou=Peons,dc=bitwarden,dc=com", - "cn=Ferdinanda Yan,ou=Peons,dc=bitwarden,dc=com", - "cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Portia Basinger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vanda Holmes,ou=Management,dc=bitwarden,dc=com", - "cn=Sid Shedd,ou=Payroll,dc=bitwarden,dc=com", - "cn=Merrielle Cinar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ginevra Varady,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Noraly Hassan,ou=Peons,dc=bitwarden,dc=com", - "cn=Ron Stirling,ou=Peons,dc=bitwarden,dc=com", - "cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kala Huber,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Woon Rasmus,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jaime Delf,ou=Peons,dc=bitwarden,dc=com", - "cn=Dina Kaunas,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Todd Gainer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=HonKong Woolwine,ou=Peons,dc=bitwarden,dc=com", - "cn=Joelie Challice,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Margalo Behlen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Trish Meunier,ou=Payroll,dc=bitwarden,dc=com", - "cn=Verine Lilleniit,ou=Management,dc=bitwarden,dc=com", - "cn=Corilla Popescu,ou=Management,dc=bitwarden,dc=com", - "cn=Wynne Hudson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Laurel Leavell,ou=Management,dc=bitwarden,dc=com", - "cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Madlin Irvin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ashleigh Salembier,ou=Peons,dc=bitwarden,dc=com", - "cn=Sacha Dailey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lynett Reddy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bregitte Nixon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Peter Engineering,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pawel Drane,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tommy Cisco,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dvm Early,ou=Product Development,dc=bitwarden,dc=com", - "cn=Akin Forgeron,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lilllie Precoda,ou=Product Development,dc=bitwarden,dc=com", - "cn=Corinna Spragg,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yoke Pitre,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rao Grosman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Renate Belford,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden,dc=com", - "cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nico Olsheski,ou=Peons,dc=bitwarden,dc=com", - "cn=Alta Wiley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bennet Dunham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Chandran Crutchfield,ou=Peons,dc=bitwarden,dc=com", - "cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Suha Stiles,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sheela Montague,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brandais Speight,ou=Peons,dc=bitwarden,dc=com", - "cn=Ignatius USER,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Merilyn Trull,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ursulina Parise,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ailey Bosworth,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ally Pickett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Viviene St,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cole Kyoung,ou=Management,dc=bitwarden,dc=com", - "cn=Brana Telesis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Naohiko Netzke,ou=Management,dc=bitwarden,dc=com", - "cn=Tessty Aiken,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Riannon Clifford,ou=Management,dc=bitwarden,dc=com", - "cn=Roxanne Kardos,ou=Management,dc=bitwarden,dc=com", - "cn=Salome Shellman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Agnella Shiley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden,dc=com", - "cn=Afzal Muise,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dita Yarosh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aparna Gamsa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Angelita Letsome,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Peder Lotan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Etienne Courchesne,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Huguette Foos,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rania Myhill,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Crista Saha,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dori Brissette,ou=Management,dc=bitwarden,dc=com", - "cn=Niki Bonney,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lyman Busuttil,ou=Payroll,dc=bitwarden,dc=com", - "cn=Loon Esselbach,ou=Peons,dc=bitwarden,dc=com", - "cn=Eleni Hiers,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sal Soo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tdr Porebski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lilian Binda,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fil Craggs,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fan Bednar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kanya Koens,ou=Peons,dc=bitwarden,dc=com", - "cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Salomi Enns,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dido Lanthier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Corny Uyar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pinder Barclay,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Micki Munns,ou=Administrative,dc=bitwarden,dc=com", - "cn=Milly Raines,ou=Management,dc=bitwarden,dc=com", - "cn=Pas Waines,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden,dc=com", - "cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kala Berning,ou=Peons,dc=bitwarden,dc=com", - "cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden,dc=com", - "cn=Greg Bach,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clay Rasmussen,ou=Management,dc=bitwarden,dc=com", - "cn=Kira Rummans,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Graciela Birtch,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Audie Pintwala,ou=Management,dc=bitwarden,dc=com", - "cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gabbie Chiverton,ou=Peons,dc=bitwarden,dc=com", - "cn=Deann Sheridan,ou=Peons,dc=bitwarden,dc=com", - "cn=Orie Lahaie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hodge Schroff,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gertrude Rains,ou=Product Testing,dc=bitwarden,dc=com", - "cn=ChuChay Averett,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Amando Fernandez,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carolann McCorkle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kalvin Jamshidi,ou=Management,dc=bitwarden,dc=com", - "cn=Candis Gentzler,ou=Management,dc=bitwarden,dc=com", - "cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gil Strauss,ou=Management,dc=bitwarden,dc=com", - "cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Prab Crafton,ou=Peons,dc=bitwarden,dc=com", - "cn=Aurora Francoeur,ou=Peons,dc=bitwarden,dc=com", - "cn=Francois Willcox,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ethan Engelberg,ou=Administrative,dc=bitwarden,dc=com", - "cn=Beryl Security,ou=Peons,dc=bitwarden,dc=com", - "cn=Jessica Lovelace,ou=Management,dc=bitwarden,dc=com", - "cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden,dc=com", - "cn=Fqa Desilets,ou=Management,dc=bitwarden,dc=com", - "cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emlynn Louie,ou=Management,dc=bitwarden,dc=com", - "cn=Russel Gillies,ou=Management,dc=bitwarden,dc=com", - "cn=Dionne Parniani,ou=Peons,dc=bitwarden,dc=com", - "cn=Birmingham Shippen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Trudy Durling,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Selena Mickens,ou=Management,dc=bitwarden,dc=com", - "cn=Laureen Paczek,ou=Management,dc=bitwarden,dc=com", - "cn=Gurjinder Gosset,ou=Peons,dc=bitwarden,dc=com", - "cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dede McKeage,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shanda Scroger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ophelia McHale,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ajit Kiens,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nicole Zhao,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Saloma Alkire,ou=Peons,dc=bitwarden,dc=com", - "cn=Khosro Essery,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Veronike Dyck,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Franc Revelle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Freda Tschaja,ou=Management,dc=bitwarden,dc=com", - "cn=Deepak Sangha,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jennee Stover,ou=Peons,dc=bitwarden,dc=com", - "cn=Diamond Brownfield,ou=Management,dc=bitwarden,dc=com", - "cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sangman Estey,ou=Management,dc=bitwarden,dc=com", - "cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ola Kupitz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Willetta Mayes,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nahum Sprigings,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Juile Nttest,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hazel Johannes,ou=Management,dc=bitwarden,dc=com", - "cn=Rebeka Welker,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gordon Fares,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Corella Swanston,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alisun Volfe,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Karine McKerrow,ou=Peons,dc=bitwarden,dc=com", - "cn=Yvan Gandhi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Darrol Mair,ou=Payroll,dc=bitwarden,dc=com", - "cn=Narendra Cramer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Christina Bittman,ou=Peons,dc=bitwarden,dc=com", - "cn=Vo Peacocke,ou=Administrative,dc=bitwarden,dc=com", - "cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Salim Brushey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jorey Jensen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Willow Benda,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marilyn Nardiello,ou=Management,dc=bitwarden,dc=com", - "cn=Federica Keck,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carling Sture,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Inessa McCaffity,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Esko Todaro,ou=Payroll,dc=bitwarden,dc=com", - "cn=Charman Brownridge,ou=Payroll,dc=bitwarden,dc=com", - "cn=Le Reese,ou=Peons,dc=bitwarden,dc=com", - "cn=Cavin Bijons,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden,dc=com", - "cn=Naresh Hiltz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jai Tiller,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Esme Daniells,ou=Payroll,dc=bitwarden,dc=com", - "cn=Trey McWalters,ou=Product Development,dc=bitwarden,dc=com", - "cn=Edlene Bumgarner,ou=Peons,dc=bitwarden,dc=com", - "cn=Tape OHearn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Robbin Hayman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Debadeep Andrade,ou=Peons,dc=bitwarden,dc=com", - "cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Parham Maunu,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ruthe Calhoun,ou=Peons,dc=bitwarden,dc=com", - "cn=Albert Waid,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mason Azar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tory Vairavan,ou=Management,dc=bitwarden,dc=com", - "cn=Marisa Kuntova,ou=Management,dc=bitwarden,dc=com", - "cn=Rungroj Rains,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tak Tihanyi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sharlene Litz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chelsea Ruane,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eddy Talbot,ou=Administrative,dc=bitwarden,dc=com", - "cn=Manhatten Tota,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Annabela Gingrich,ou=Administrative,dc=bitwarden,dc=com", - "cn=Regis Watmore,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shanda Bowen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jyoti Wells,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hanns Sharkey,ou=Management,dc=bitwarden,dc=com", - "cn=Reva Ostapiw,ou=Peons,dc=bitwarden,dc=com", - "cn=Michele Elkaim,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emil Knappe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Beryl Windsor,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Joyan Varia,ou=Human Resources,dc=bitwarden,dc=com", - "cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mitchell Gatka,ou=Peons,dc=bitwarden,dc=com", - "cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ailee Events,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Herre Cadeau,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kaye Hafiz,ou=Peons,dc=bitwarden,dc=com", - "cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shahid Follett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pet Bohanan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Colly Daigle,ou=Peons,dc=bitwarden,dc=com", - "cn=Deva StOnge,ou=Management,dc=bitwarden,dc=com", - "cn=Giri Glucksman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jorey Gillet,ou=Management,dc=bitwarden,dc=com", - "cn=Shelagh Balutis,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rachelle Prakash,ou=Management,dc=bitwarden,dc=com", - "cn=Akshay OKelly,ou=Management,dc=bitwarden,dc=com", - "cn=Condell Kho,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cordey Ballard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amelita Okura,ou=Management,dc=bitwarden,dc=com", - "cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nadeen Longpre,ou=Management,dc=bitwarden,dc=com", - "cn=Imtaz Chouinard,ou=Peons,dc=bitwarden,dc=com", - "cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Melinda Tappert,ou=Administrative,dc=bitwarden,dc=com", - "cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Misha Karaali,ou=Payroll,dc=bitwarden,dc=com", - "cn=Evanne Donator,ou=Management,dc=bitwarden,dc=com", - "cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gussy Prikkel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Liping DaSilva,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden,dc=com", - "cn=HackHoo Sayed,ou=Administrative,dc=bitwarden,dc=com", - "cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rozanne Heurich,ou=Peons,dc=bitwarden,dc=com", - "cn=Arabel Omura,ou=Management,dc=bitwarden,dc=com", - "cn=Marce Rivest,ou=Management,dc=bitwarden,dc=com", - "cn=Irena Hammermeister,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sotos Bratten,ou=Product Development,dc=bitwarden,dc=com", - "cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden,dc=com", - "cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Elpida Vuignier,ou=Administrative,dc=bitwarden,dc=com", - "cn=Naoma Rowe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pawel Bourget,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Deloria Couser,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Conni Stainback,ou=Peons,dc=bitwarden,dc=com", - "cn=Modesta Huszarik,ou=Administrative,dc=bitwarden,dc=com", - "cn=Reinhold Ribi,ou=Peons,dc=bitwarden,dc=com", - "cn=Loris Grimes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sid Walford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ingrid Kruger,ou=Peons,dc=bitwarden,dc=com", - "cn=Baha Raymond,ou=Administrative,dc=bitwarden,dc=com", - "cn=Raffi Legrove,ou=Management,dc=bitwarden,dc=com", - "cn=Julita Shemwell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pooh Claveau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Haig Zumhagen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Penni Gehring,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Melodie Parham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Violetta Fallah,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shay Molson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Guillema Halicki,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sacto Kao,ou=Peons,dc=bitwarden,dc=com", - "cn=Linh Kishi,ou=Peons,dc=bitwarden,dc=com", - "cn=Careers Caves,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nicolina Kopke,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kristel Credico,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pankaj Clow,ou=Peons,dc=bitwarden,dc=com", - "cn=Radomir Remson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Josefina Parr,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Korie Grooms,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nelson Lytle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Greet Driver,ou=Product Development,dc=bitwarden,dc=com", - "cn=Phillis Pravato,ou=Peons,dc=bitwarden,dc=com", - "cn=Patch Eberlin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Malorie Goos,ou=Janitorial,dc=bitwarden,dc=com", - "cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Effie Pracht,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elza Gillon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Maddy Falletti,ou=Product Development,dc=bitwarden,dc=com", - "cn=Candee DiFalco,ou=Management,dc=bitwarden,dc=com", - "cn=Martynne McCloughan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marris Lobello,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rochell Denmark,ou=Payroll,dc=bitwarden,dc=com", - "cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ngai Michael,ou=Human Resources,dc=bitwarden,dc=com", - "cn=JoLee Fredette,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liv Veedell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Verina Coddington,ou=Product Development,dc=bitwarden,dc=com", - "cn=March Easton,ou=Management,dc=bitwarden,dc=com", - "cn=Jianli Kahhale,ou=Management,dc=bitwarden,dc=com", - "cn=Shamshad Bozicevich,ou=Management,dc=bitwarden,dc=com", - "cn=Renate Kahkonen,ou=Management,dc=bitwarden,dc=com", - "cn=Aile Lugsdin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Warwick Gamarnik,ou=Peons,dc=bitwarden,dc=com", - "cn=Candee Brubaker,ou=Administrative,dc=bitwarden,dc=com", - "cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nashir Tue,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lolita Hanson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Antoinette WPMS,ou=Management,dc=bitwarden,dc=com", - "cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Margaux Rollo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Idell Pung,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tandy Etoh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Twana Schneider,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lari Killeen,ou=Management,dc=bitwarden,dc=com", - "cn=Pars Tigg,ou=Management,dc=bitwarden,dc=com", - "cn=Marjy Botyrius,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sol Trefts,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Leigh Boulerice,ou=Peons,dc=bitwarden,dc=com", - "cn=Harpal Bashton,ou=Management,dc=bitwarden,dc=com", - "cn=Valeda Laliberte,ou=Management,dc=bitwarden,dc=com", - "cn=Winnah Kabel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lecien Bunting,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Blancha TempleDowning,ou=Peons,dc=bitwarden,dc=com", - "cn=Kyla Burton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ronna Faison,ou=Payroll,dc=bitwarden,dc=com", - "cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nel Mohrmann,ou=Peons,dc=bitwarden,dc=com", - "cn=Naresh Kok,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cang Kinamon,ou=Management,dc=bitwarden,dc=com", - "cn=Amalea Snyder,ou=Management,dc=bitwarden,dc=com", - "cn=Caryn Rizk,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Edel AbiAad,ou=Management,dc=bitwarden,dc=com", - "cn=Jey Dufresne,ou=Management,dc=bitwarden,dc=com", - "cn=Kass Lyliston,ou=Peons,dc=bitwarden,dc=com", - "cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gabie Autoquote,ou=Management,dc=bitwarden,dc=com", - "cn=Vina Sebastian,ou=Peons,dc=bitwarden,dc=com", - "cn=Annabella Blasing,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nicolette Spann,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Blancha Bradee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tamarah Solheim,ou=Administrative,dc=bitwarden,dc=com", - "cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cleo Depew,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gordon Galligan,ou=Peons,dc=bitwarden,dc=com", - "cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Terra Brookhart,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden,dc=com", - "cn=Hellen Benzick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jenda Serrano,ou=Peons,dc=bitwarden,dc=com", - "cn=Chrystal Draves,ou=Management,dc=bitwarden,dc=com", - "cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nicola Dallago,ou=Management,dc=bitwarden,dc=com", - "cn=Gisele Zattiero,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nora Hishchak,ou=Peons,dc=bitwarden,dc=com", - "cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Merrili Janelle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Claire Valia,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Farica Horwitz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gregory Bluethner,ou=Peons,dc=bitwarden,dc=com", - "cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liviu Hume,ou=Payroll,dc=bitwarden,dc=com", - "cn=Angelie Heile,ou=Peons,dc=bitwarden,dc=com", - "cn=Tatiania Delage,ou=Peons,dc=bitwarden,dc=com", - "cn=Celisse Murdoch,ou=Management,dc=bitwarden,dc=com", - "cn=NamKiet Phillip,ou=Management,dc=bitwarden,dc=com", - "cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden,dc=com", - "cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden,dc=com", - "cn=Merrili Wierzba,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kittie Gabbai,ou=Peons,dc=bitwarden,dc=com", - "cn=Timi Hendriks,ou=Payroll,dc=bitwarden,dc=com", - "cn=Deana Cargnelli,ou=Management,dc=bitwarden,dc=com", - "cn=Lizzie Petro,ou=Product Development,dc=bitwarden,dc=com", - "cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shyam Johnsen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Valencia Tomlinson,ou=Management,dc=bitwarden,dc=com", - "cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Frederic Scurlock,ou=Administrative,dc=bitwarden,dc=com", - "cn=Guillema McGorman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jenda Ostarello,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rivkah Neywick,ou=Peons,dc=bitwarden,dc=com", - "cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Coursdev Angeli,ou=Peons,dc=bitwarden,dc=com", - "cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dari Ersil,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marjolein Stephens,ou=Product Development,dc=bitwarden,dc=com", - "cn=Doro Vempati,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sono Pokrifcak,ou=Management,dc=bitwarden,dc=com", - "cn=Moniek Bergado,ou=Administrative,dc=bitwarden,dc=com", - "cn=KwokWa Moriarty,ou=Management,dc=bitwarden,dc=com", - "cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sluis Nizman,ou=Management,dc=bitwarden,dc=com", - "cn=Michel Salkini,ou=Payroll,dc=bitwarden,dc=com", - "cn=JoDee Cownie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Germaine Turney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Berenice Yates,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Geoff Catlett,ou=Payroll,dc=bitwarden,dc=com", - "cn=MarieAndree Bour,ou=Peons,dc=bitwarden,dc=com", - "cn=Dixie Gionet,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lyndel Amarsi,ou=Peons,dc=bitwarden,dc=com", - "cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden,dc=com", - "cn=Hulda McDowell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Leil Forrest,ou=Payroll,dc=bitwarden,dc=com", - "cn=Natassia Mallozzi,ou=Management,dc=bitwarden,dc=com", - "cn=Zack Meckler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Isidora Ralph,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ailis Reis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Arvin McWilton,ou=Peons,dc=bitwarden,dc=com", - "cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden,dc=com", - "cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Matti Bruce,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Joel Rynders,ou=Peons,dc=bitwarden,dc=com", - "cn=Stefanie Malle,ou=Administrative,dc=bitwarden,dc=com", - "cn=Yokan Basco,ou=Peons,dc=bitwarden,dc=com", - "cn=Froukje Gionet,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nenad OToole,ou=Payroll,dc=bitwarden,dc=com", - "cn=Aileen Haney,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hannis Flindall,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Anderson Bulan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden,dc=com", - "cn=Denny Bourguignon,ou=Management,dc=bitwarden,dc=com", - "cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden,dc=com", - "cn=Reeva Doherty,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Piyush Holness,ou=Management,dc=bitwarden,dc=com", - "cn=Minette Hazeldine,ou=Payroll,dc=bitwarden,dc=com", - "cn=Haruko Hepburn,ou=Management,dc=bitwarden,dc=com", - "cn=Carlo Mong,ou=Peons,dc=bitwarden,dc=com", - "cn=Oksana Klein,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dimitri Pineau,ou=Peons,dc=bitwarden,dc=com", - "cn=Geri Shabo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Saied Vertolli,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Txp Cummings,ou=Administrative,dc=bitwarden,dc=com", - "cn=Britt Caruth,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kwong Engleman,ou=Management,dc=bitwarden,dc=com", - "cn=Vikki Tzuang,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sickle StJames,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aundrea Yates,ou=Management,dc=bitwarden,dc=com", - "cn=Nam Cuddy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Methi Zoerb,ou=Management,dc=bitwarden,dc=com", - "cn=Elysia Zhong,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kacie Herriotts,ou=Management,dc=bitwarden,dc=com", - "cn=Hermine Fung,ou=Product Development,dc=bitwarden,dc=com", - "cn=Manoj Caterina,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Penny Sim,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Grzegorz Feist,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sadan Spears,ou=Peons,dc=bitwarden,dc=com", - "cn=Peter Grazzini,ou=Management,dc=bitwarden,dc=com", - "cn=Kasifa Bauer,ou=Management,dc=bitwarden,dc=com", - "cn=Milena Hendricksen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Allix Tsui,ou=Peons,dc=bitwarden,dc=com", - "cn=Jenda Cobban,ou=Payroll,dc=bitwarden,dc=com", - "cn=Concettina Linberg,ou=Peons,dc=bitwarden,dc=com", - "cn=Colin Tahir,ou=Peons,dc=bitwarden,dc=com", - "cn=Gates Hesche,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marjie Karp,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dorella Reeder,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shankar Brehm,ou=Management,dc=bitwarden,dc=com", - "cn=Natalee Broadwell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gay Denette,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Leita Malloy,ou=Peons,dc=bitwarden,dc=com", - "cn=Novelia Tigg,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Aeriell Cottrell,ou=Management,dc=bitwarden,dc=com", - "cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nickie Sicard,ou=Product Development,dc=bitwarden,dc=com", - "cn=Con Lampman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tidwell Plssup,ou=Product Development,dc=bitwarden,dc=com", - "cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dwight Goatcher,ou=Product Development,dc=bitwarden,dc=com", - "cn=Germana Easson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rosetta Hatz,ou=Peons,dc=bitwarden,dc=com", - "cn=Chen Karsan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jorie Maltese,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Corilla Filkins,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kassem Chaput,ou=Payroll,dc=bitwarden,dc=com", - "cn=Karl Rombeek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hiren Leinen,ou=Payroll,dc=bitwarden,dc=com", - "cn=My Handforth,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ruby Duffy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ranjit Chaurasia,ou=Management,dc=bitwarden,dc=com", - "cn=Xiaofeng Dach,ou=Management,dc=bitwarden,dc=com", - "cn=Bob Chaddock,ou=Payroll,dc=bitwarden,dc=com", - "cn=Beatrice Costas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hynda Miksik,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jacquie Jablonski,ou=Peons,dc=bitwarden,dc=com", - "cn=Ashok Karol,ou=Management,dc=bitwarden,dc=com", - "cn=Zeljko Goodrow,ou=Management,dc=bitwarden,dc=com", - "cn=ManFai Yearwood,ou=Administrative,dc=bitwarden,dc=com", - "cn=Grazia Ruben,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gee Buechner,ou=Payroll,dc=bitwarden,dc=com", - "cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kial Skillen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Raul Dantu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liuka Awano,ou=Payroll,dc=bitwarden,dc=com", - "cn=Caryl Teder,ou=Management,dc=bitwarden,dc=com", - "cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lex Matheson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jamie Ballard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gaye Telos,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Laz Wilemon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Euphemia Novak,ou=Administrative,dc=bitwarden,dc=com", - "cn=Wini Haverty,ou=Product Development,dc=bitwarden,dc=com", - "cn=Halli Mavis,ou=Management,dc=bitwarden,dc=com", - "cn=WingMan Vesterdal,ou=Peons,dc=bitwarden,dc=com", - "cn=Blithe Keuning,ou=Product Development,dc=bitwarden,dc=com", - "cn=Katya Tracz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Raymond Biggers,ou=Product Development,dc=bitwarden,dc=com", - "cn=Theresita Mashura,ou=Peons,dc=bitwarden,dc=com", - "cn=Joly Dummer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Feng Yeh,ou=Peons,dc=bitwarden,dc=com", - "cn=Robin Martenson,ou=Peons,dc=bitwarden,dc=com", - "cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kara Tarle,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jerzy Benoit,ou=Management,dc=bitwarden,dc=com", - "cn=Abahri Brauer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Baljinder Kowalsky,ou=Management,dc=bitwarden,dc=com", - "cn=Kimberly Chung,ou=Peons,dc=bitwarden,dc=com", - "cn=Shaibal Andrew,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden,dc=com", - "cn=Oralla ENG,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rubina RTP,ou=Payroll,dc=bitwarden,dc=com", - "cn=Orie Larribeau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Brear Hagwood,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Radford Gille,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shina Chari,ou=Peons,dc=bitwarden,dc=com", - "cn=Mariel Yan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bakoury Whitten,ou=Product Development,dc=bitwarden,dc=com", - "cn=Donovan Bedard,ou=Product Development,dc=bitwarden,dc=com", - "cn=Almeria Whitman,ou=Management,dc=bitwarden,dc=com", - "cn=Ardyth Ely,ou=Management,dc=bitwarden,dc=com", - "cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aleen Meckler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Riane Pantages,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Coral Wickes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden,dc=com", - "cn=Dalia Doda,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Suki Currie,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gateway Bain,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Inger Tchir,ou=Payroll,dc=bitwarden,dc=com", - "cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Laraine Arellano,ou=Product Development,dc=bitwarden,dc=com", - "cn=Roana Fulford,ou=Administrative,dc=bitwarden,dc=com", - "cn=Camellia Sheth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fayina Passier,ou=Peons,dc=bitwarden,dc=com", - "cn=Constantia Bielan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sacha Hiller,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Myranda Poff,ou=Product Development,dc=bitwarden,dc=com", - "cn=Victor McDaniel,ou=Management,dc=bitwarden,dc=com", - "cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=James Predon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Alta Bergwerff,ou=Peons,dc=bitwarden,dc=com", - "cn=Keven Abbie,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karia Pintwala,ou=Product Development,dc=bitwarden,dc=com", - "cn=Philly Scharf,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jazmin Hargrow,ou=Management,dc=bitwarden,dc=com", - "cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Misti Ellington,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nevein Quinones,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Devinne McMasters,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carola Eustace,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Thelma Fazel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Arlene Galasso,ou=Product Development,dc=bitwarden,dc=com", - "cn=Andrew Shuman,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Alane Planting,ou=Peons,dc=bitwarden,dc=com", - "cn=Elle Chaddock,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rachael Benchimol,ou=Product Development,dc=bitwarden,dc=com", - "cn=Claresta Ramakrishna,ou=Management,dc=bitwarden,dc=com", - "cn=Ivory Bolon,ou=Peons,dc=bitwarden,dc=com", - "cn=Brenton Buker,ou=Payroll,dc=bitwarden,dc=com", - "cn=Beau Dorion,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lelah Souza,ou=Peons,dc=bitwarden,dc=com", - "cn=Helen Marshman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yvon Uae,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Laten Vartanesian,ou=Product Development,dc=bitwarden,dc=com", - "cn=Susy Kadamani,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Berte Hesk,ou=Product Development,dc=bitwarden,dc=com", - "cn=Joy Willard,ou=Management,dc=bitwarden,dc=com", - "cn=Britte Thorman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Amberly Inscoe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Karole Prints,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ludovico Reinink,ou=Peons,dc=bitwarden,dc=com", - "cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maritsa Mashura,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fern McGuigan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gavin Parr,ou=Peons,dc=bitwarden,dc=com", - "cn=Anthiathia Nie,ou=Management,dc=bitwarden,dc=com", - "cn=Vita Larkin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Madan Enstone,ou=Peons,dc=bitwarden,dc=com", - "cn=Marilyn Wainwright,ou=Peons,dc=bitwarden,dc=com", - "cn=Amanda Tigg,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jermaine Shackley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alev Sunatori,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Juliette Finane,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jessamyn Frampton,ou=Peons,dc=bitwarden,dc=com", - "cn=Norina Piersol,ou=Product Development,dc=bitwarden,dc=com", - "cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Subhra Darby,ou=Janitorial,dc=bitwarden,dc=com", - "cn=AnneLise Krodel,ou=Management,dc=bitwarden,dc=com", - "cn=Bobbi Azevedo,ou=Management,dc=bitwarden,dc=com", - "cn=Vikki Tu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Message Armstrong,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maury Este,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Noel Mitrani,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shaib Codata,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tiffy Youngman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Terese VanHulst,ou=Peons,dc=bitwarden,dc=com", - "cn=Brigitta Southon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ashlan Nyce,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alasdair Huether,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rakesh Izzotti,ou=Management,dc=bitwarden,dc=com", - "cn=Irish Gaither,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Verlyn Farah,ou=Peons,dc=bitwarden,dc=com", - "cn=Rana Schartmann,ou=Peons,dc=bitwarden,dc=com", - "cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden,dc=com", - "cn=XuanLien Harms,ou=Management,dc=bitwarden,dc=com", - "cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Regine Danforth,ou=Management,dc=bitwarden,dc=com", - "cn=Adda Gutcher,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hpone Croxall,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ailee McCauley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nadya Finucane,ou=Management,dc=bitwarden,dc=com", - "cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brita Digenova,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jami Franze,ou=Peons,dc=bitwarden,dc=com", - "cn=Mariele Barnhart,ou=Management,dc=bitwarden,dc=com", - "cn=Jacalyn Jawor,ou=Management,dc=bitwarden,dc=com", - "cn=National Gahunia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Retha Spallin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Estrella Benner,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Thomasina Kling,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jaan Lian,ou=Peons,dc=bitwarden,dc=com", - "cn=Carola Osatuik,ou=Management,dc=bitwarden,dc=com", - "cn=Fifine Roussin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mariam Markmeyer,ou=Management,dc=bitwarden,dc=com", - "cn=Randall Chalker,ou=Peons,dc=bitwarden,dc=com", - "cn=Anki Harriett,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Teena Pufpaff,ou=Management,dc=bitwarden,dc=com", - "cn=Dalip Horak,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tamarra Grassmann,ou=Peons,dc=bitwarden,dc=com", - "cn=Arun Adolfie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lettie Janelle,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden,dc=com", - "cn=Huib Kayle,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vicki Streibel,ou=Management,dc=bitwarden,dc=com", - "cn=Ingeberg Gomm,ou=Peons,dc=bitwarden,dc=com", - "cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorianna Windom,ou=Peons,dc=bitwarden,dc=com", - "cn=Tamera Meyer,ou=Peons,dc=bitwarden,dc=com", - "cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Corliss Chenard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rheba Castelloe,ou=Peons,dc=bitwarden,dc=com", - "cn=Marijke Bielby,ou=Management,dc=bitwarden,dc=com", - "cn=Steen Carpool,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marigold Girgis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tdr Gavidia,ou=Administrative,dc=bitwarden,dc=com", - "cn=Judith Charbonneau,ou=Product Development,dc=bitwarden,dc=com", - "cn=Katerine Manners,ou=Management,dc=bitwarden,dc=com", - "cn=Tasha Netdev,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ken Shiue,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tc Hayman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Corry Johnston,ou=Management,dc=bitwarden,dc=com", - "cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Farag Rogge,ou=Product Development,dc=bitwarden,dc=com", - "cn=Scot Santitoro,ou=Payroll,dc=bitwarden,dc=com", - "cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Micah Goheen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kasey Primeau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Frankie Nesbitt,ou=Management,dc=bitwarden,dc=com", - "cn=Fran Visockis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Prudence Deugau,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elbert Figura,ou=Peons,dc=bitwarden,dc=com", - "cn=Dorian Kingzett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Camila Wilhoit,ou=Management,dc=bitwarden,dc=com", - "cn=Wannell Klapper,ou=Product Development,dc=bitwarden,dc=com", - "cn=Brynne Hiers,ou=Peons,dc=bitwarden,dc=com", - "cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Barbi Hebbar,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden,dc=com", - "cn=Panch Golka,ou=Payroll,dc=bitwarden,dc=com", - "cn=Freya Seagraves,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Makary Pulver,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carmela Voitel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nonah Ledet,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marti Mac,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maxi Isaac,ou=Administrative,dc=bitwarden,dc=com", - "cn=Orlyn Eros,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Amandi Twiss,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Carolyne Delmar,ou=Peons,dc=bitwarden,dc=com", - "cn=Los Barbeau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fung Godwin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Coreen Underwood,ou=Product Development,dc=bitwarden,dc=com", - "cn=Inquire Morse,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roby Kalyani,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Leena OKelly,ou=Peons,dc=bitwarden,dc=com", - "cn=Joli Gavidia,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gint Cioffi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chelsea Arvin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Allix Closson,ou=Management,dc=bitwarden,dc=com", - "cn=Ortensia Renwick,ou=Payroll,dc=bitwarden,dc=com", - "cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Megumi Lipski,ou=Peons,dc=bitwarden,dc=com", - "cn=Tulip Jeanes,ou=Peons,dc=bitwarden,dc=com", - "cn=Meg Kuechler,ou=Peons,dc=bitwarden,dc=com", - "cn=Severin Sridaran,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rivalee Markes,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gus Darcie,ou=Management,dc=bitwarden,dc=com", - "cn=Farah Fiorile,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jagjit Orr,ou=Payroll,dc=bitwarden,dc=com", - "cn=Allyce Maduri,ou=Product Development,dc=bitwarden,dc=com", - "cn=Padma Mannion,ou=Administrative,dc=bitwarden,dc=com", - "cn=Armin Balogh,ou=Management,dc=bitwarden,dc=com", - "cn=Weiping Schneider,ou=Management,dc=bitwarden,dc=com", - "cn=Wakako Schneider,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aubrey Worsley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden,dc=com", - "cn=Didar Chakravarti,ou=Peons,dc=bitwarden,dc=com", - "cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ninetta Pullum,ou=Peons,dc=bitwarden,dc=com", - "cn=Suki Marrec,ou=Peons,dc=bitwarden,dc=com", - "cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ian Locicero,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Modestia Prado,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Linette Hoxie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Christi Silverstone,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gertie Stough,ou=Product Development,dc=bitwarden,dc=com", - "cn=Christy Mazurek,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Fikre Vieiro,ou=Product Development,dc=bitwarden,dc=com", - "cn=Leila Mullett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Irina Holinski,ou=Peons,dc=bitwarden,dc=com", - "cn=Kari Denmark,ou=Product Development,dc=bitwarden,dc=com", - "cn=Inge Valenziano,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Denis Khurana,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marice Klug,ou=Product Development,dc=bitwarden,dc=com", - "cn=Denver Welling,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Windowing Lukic,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sig Mistry,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kathe Rohan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kristie Valente,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maiga Burdick,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Manh Malee,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Benita Rosvick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Serban Gerard,ou=Management,dc=bitwarden,dc=com", - "cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden,dc=com", - "cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Condell Sorensen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden,dc=com", - "cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden,dc=com", - "cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden,dc=com", - "cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden,dc=com", - "cn=Giang Hildum,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Loise Prasad,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ronnie Hillson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gavra Sokolowski,ou=Peons,dc=bitwarden,dc=com", - "cn=Candy Husain,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alvin Shwed,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kenna Marui,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aleta Gargul,ou=Peons,dc=bitwarden,dc=com", - "cn=Mani Khatod,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Trixy Palik,ou=Management,dc=bitwarden,dc=com", - "cn=Dimitri Reese,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rosamond McEachern,ou=Management,dc=bitwarden,dc=com", - "cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Augustin Bayne,ou=Management,dc=bitwarden,dc=com", - "cn=Corkstown Beattie,ou=Product Development,dc=bitwarden,dc=com", - "cn=Prudence Fickes,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lavina Cirulli,ou=Peons,dc=bitwarden,dc=com", - "cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tiertza Korea,ou=Peons,dc=bitwarden,dc=com", - "cn=Javed Collecutt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Adrianna Shypski,ou=Peons,dc=bitwarden,dc=com", - "cn=Susanne Denison,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lilian Rickborn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Remy Blackwood,ou=Product Development,dc=bitwarden,dc=com", - "cn=Beret Cemensky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bel Browning,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lula Communications,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ronn Turbyfill,ou=Peons,dc=bitwarden,dc=com", - "cn=Cindy Deol,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marjory Ranahan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Winona Baccari,ou=Peons,dc=bitwarden,dc=com", - "cn=Veda Gaines,ou=Management,dc=bitwarden,dc=com", - "cn=Anup Mundi,ou=Peons,dc=bitwarden,dc=com", - "cn=Alyce Felli,ou=Payroll,dc=bitwarden,dc=com", - "cn=Janet Ludchen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Noubar Novotny,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Starlin Joe,ou=Administrative,dc=bitwarden,dc=com", - "cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden,dc=com", - "cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Devora Pde,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darya McGeown,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dnsproj Walles,ou=Peons,dc=bitwarden,dc=com", - "cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden,dc=com", - "cn=Norma Lepine,ou=Peons,dc=bitwarden,dc=com", - "cn=Brandy Verma,ou=Management,dc=bitwarden,dc=com", - "cn=Blanch Virk,ou=Management,dc=bitwarden,dc=com", - "cn=Viviana Waucheul,ou=Management,dc=bitwarden,dc=com", - "cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brittani Menasce,ou=Payroll,dc=bitwarden,dc=com", - "cn=Khalil Mincey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shedman Jakim,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Reba Chadha,ou=Management,dc=bitwarden,dc=com", - "cn=Ailey Randall,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dino Dangubic,ou=Management,dc=bitwarden,dc=com", - "cn=Marlies Ortiz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Uri Neufeld,ou=Peons,dc=bitwarden,dc=com", - "cn=Loralee McDunn,ou=Management,dc=bitwarden,dc=com", - "cn=Caridad Sawada,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Willis Shelley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pauletta Weakley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nanni Taul,ou=Management,dc=bitwarden,dc=com", - "cn=Neetu Jeng,ou=Management,dc=bitwarden,dc=com", - "cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aimee Poma,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mer Mayes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alisa Rogan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden,dc=com", - "cn=Penni Yim,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Melessa Vuong,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anni Blander,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lesli Hassan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marthena Holleran,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Josi Management,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Elga Conlon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Francesca Boyd,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden,dc=com", - "cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marit Ahlers,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Donovan Rega,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elli Bourdignon,ou=Peons,dc=bitwarden,dc=com", - "cn=Haily Mo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mohammed Minai,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kirit Storrie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jenn Bennison,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Durantaye Molson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Viola Devouges,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden,dc=com", - "cn=Palme Boose,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zarah Doriot,ou=Peons,dc=bitwarden,dc=com", - "cn=Eirik McCray,ou=Management,dc=bitwarden,dc=com", - "cn=Brennan Saito,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bambie Borel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Devonne Salkini,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bawn Straub,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jojo Peart,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marieke Deibert,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ginelle Couture,ou=Management,dc=bitwarden,dc=com", - "cn=Gnni Podolski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Uunko Kodsi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sharline Tullius,ou=Management,dc=bitwarden,dc=com", - "cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shoeb Scales,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nissa Twarog,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hrinfo Popel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anallese Dressler,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fredra Skillen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shafique Behrens,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ross Saravanos,ou=Product Testing,dc=bitwarden,dc=com", - "cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Albertine Dorey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Junia Kun,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden,dc=com", - "cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rey Galvin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kentaro Prada,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Caro Roithmaier,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cassondra Rollin,ou=Management,dc=bitwarden,dc=com", - "cn=Kiet Kantor,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gilemette Grubbs,ou=Peons,dc=bitwarden,dc=com", - "cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden,dc=com", - "cn=Calida Knudsen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bendite Costelloe,ou=Product Development,dc=bitwarden,dc=com", - "cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden,dc=com", - "cn=Desirae Tye,ou=Administrative,dc=bitwarden,dc=com", - "cn=Yong Papalitskas,ou=Peons,dc=bitwarden,dc=com", - "cn=Orsola Shieff,ou=Product Development,dc=bitwarden,dc=com", - "cn=Meade Lindler,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Canadian Gass,ou=Product Development,dc=bitwarden,dc=com", - "cn=Liping Woll,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dwaine Oka,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jed Colbourne,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pammi Crucefix,ou=Management,dc=bitwarden,dc=com", - "cn=Joelle Vardy,ou=Peons,dc=bitwarden,dc=com", - "cn=Wenona Angerer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Arjun Passier,ou=Peons,dc=bitwarden,dc=com", - "cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kas Breedlove,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hoog Trinidad,ou=Peons,dc=bitwarden,dc=com", - "cn=Jesselyn Lindholm,ou=Management,dc=bitwarden,dc=com", - "cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Claude Sylvie,ou=Peons,dc=bitwarden,dc=com", - "cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden,dc=com", - "cn=Matelda Wrigley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Emil Kaden,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wing Miranda,ou=Product Development,dc=bitwarden,dc=com", - "cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden,dc=com", - "cn=Goldina Kho,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sidoney Dugas,ou=Administrative,dc=bitwarden,dc=com", - "cn=Alis Tu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nawa Higgins,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nataly McHale,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sabuson Keels,ou=Administrative,dc=bitwarden,dc=com", - "cn=Katrina Caltrider,ou=Management,dc=bitwarden,dc=com", - "cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Damon Bakhach,ou=Peons,dc=bitwarden,dc=com", - "cn=Nevein Paar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eliezer Mendorf,ou=Management,dc=bitwarden,dc=com", - "cn=Saree Salva,ou=Product Testing,dc=bitwarden,dc=com", - "cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mary Bayno,ou=Payroll,dc=bitwarden,dc=com", - "cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Arnie McMillion,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden,dc=com", - "cn=Salaidh Wery,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hq Bracy,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Philippa Sanson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", - "cn=Karrah Kielstra,ou=Management,dc=bitwarden,dc=com", - "cn=Saloma Brauer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cheuk Mayr,ou=Management,dc=bitwarden,dc=com", - "cn=Verene Misslitz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Doe Codack,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lowell Seufert,ou=Administrative,dc=bitwarden,dc=com", - "cn=Willa Unkefer,ou=Peons,dc=bitwarden,dc=com", - "cn=Bep Wassel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yuri McCullen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Genevieve Licata,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Stacia Mersch,ou=Management,dc=bitwarden,dc=com", - "cn=Opal Tatemichi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nash Hemphill,ou=Administrative,dc=bitwarden,dc=com", - "cn=Amir McKillop,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nam Nentwich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden,dc=com", - "cn=Arvin Gourley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amara Wichers,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ellen Dada,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gunilla Katz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Core Herrick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jack Predon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marc Pestill,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eadie Jamensky,ou=Peons,dc=bitwarden,dc=com", - "cn=Corenda MacLaren,ou=Management,dc=bitwarden,dc=com", - "cn=Duy Starnes,ou=Management,dc=bitwarden,dc=com", - "cn=Milan Retallack,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zarella Sauck,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nathalia Testsds,ou=Administrative,dc=bitwarden,dc=com", - "cn=Florette Nttest,ou=Management,dc=bitwarden,dc=com", - "cn=Dari OConnor,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tracie Jenner,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mot Stirling,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yodha Bui,ou=Payroll,dc=bitwarden,dc=com", - "cn=Clifton Murphyking,ou=Product Development,dc=bitwarden,dc=com", - "cn=HonKong Drago,ou=Product Development,dc=bitwarden,dc=com", - "cn=Greer Popowicz,ou=Management,dc=bitwarden,dc=com", - "cn=Asia Schuette,ou=Product Development,dc=bitwarden,dc=com", - "cn=Barbette Stotz,ou=Peons,dc=bitwarden,dc=com", - "cn=Joyann Lun,ou=Peons,dc=bitwarden,dc=com", - "cn=Caz Brunato,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sorin Dipper,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bucklin OKarina,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tuan Pannell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Neda Reece,ou=Product Development,dc=bitwarden,dc=com", - "cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden,dc=com", - "cn=Audrey US,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dona Sudan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mahendra Puett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Evangelia Kusan,ou=Peons,dc=bitwarden,dc=com", - "cn=Mead Bielan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Damara Bertrand,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sarah Kardos,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Odele Mahiger,ou=Peons,dc=bitwarden,dc=com", - "cn=Salah Poe,ou=Peons,dc=bitwarden,dc=com", - "cn=Garry Sterescu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Takehiko Magnan,ou=Management,dc=bitwarden,dc=com", - "cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Loraine Giese,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ilya Mackey,ou=Management,dc=bitwarden,dc=com", - "cn=Clari Wahab,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nichol Etten,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Clayton Sridaran,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marijke Ervi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tally Pirkle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Haste Katcher,ou=Product Development,dc=bitwarden,dc=com", - "cn=Norstar Lipski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hedi Konarski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kwing DeStefani,ou=Payroll,dc=bitwarden,dc=com", - "cn=Helma Ramsden,ou=Administrative,dc=bitwarden,dc=com", - "cn=Joanna Aimone,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leon Epplett,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bobby Frink,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rob Milinkovich,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lexie Thorsen,ou=Management,dc=bitwarden,dc=com", - "cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carlene Grignon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Russ Battersby,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Andrew Thifault,ou=Product Development,dc=bitwarden,dc=com", - "cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Celinda Krisa,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fawnia Starks,ou=Management,dc=bitwarden,dc=com", - "cn=Prissie Schieber,ou=Peons,dc=bitwarden,dc=com", - "cn=Lyn Yuhn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Joellyn Montelli,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vanny Fenton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rosabella Mathis,ou=Peons,dc=bitwarden,dc=com", - "cn=Celestine Demir,ou=Payroll,dc=bitwarden,dc=com", - "cn=Charlena Mirande,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bennett Marting,ou=Peons,dc=bitwarden,dc=com", - "cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Analiese Steene,ou=Payroll,dc=bitwarden,dc=com", - "cn=Janine Stirrett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wiele Rowan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Maia Reva,ou=Management,dc=bitwarden,dc=com", - "cn=Tian Beeby,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nazib Schembri,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cammy Shumate,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rianon Schick,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Viole Areu,ou=Product Development,dc=bitwarden,dc=com", - "cn=Brigitta Piper,ou=Product Development,dc=bitwarden,dc=com", - "cn=Melly Kelkar,ou=Management,dc=bitwarden,dc=com", - "cn=Maritsa McCain,ou=Product Development,dc=bitwarden,dc=com", - "cn=Melissa Griffioen,ou=Management,dc=bitwarden,dc=com", - "cn=Tak Sebeh,ou=Peons,dc=bitwarden,dc=com", - "cn=Vittorio Muradia,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jonell McElligott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jey Pau,ou=Administrative,dc=bitwarden,dc=com", - "cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jillane Metz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Parveen Burnage,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Martine Gilliard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden,dc=com", - "cn=Shaji Langelier,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Manny Nolan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vrinda Keuning,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aile StOnge,ou=Management,dc=bitwarden,dc=com", - "cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden,dc=com", - "cn=Helge Bowyer,ou=Peons,dc=bitwarden,dc=com", - "cn=Norbert Missailidis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Letizia Quon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Haily Lamothe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alie Staats,ou=Management,dc=bitwarden,dc=com", - "cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden,dc=com", - "cn=Corry Brewer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hanja Godwin,ou=Peons,dc=bitwarden,dc=com", - "cn=Brianna Hien,ou=Product Development,dc=bitwarden,dc=com", - "cn=Evy Raing,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rebekah Siegel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Brekel Silverstone,ou=Administrative,dc=bitwarden,dc=com", - "cn=Harm Mehta,ou=Product Development,dc=bitwarden,dc=com", - "cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jae Caudill,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hilde Hibberd,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tres Nyland,ou=Management,dc=bitwarden,dc=com", - "cn=Bettye Moynihan,ou=Peons,dc=bitwarden,dc=com", - "cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shahriar Trull,ou=Peons,dc=bitwarden,dc=com", - "cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Edyta Hargadon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marris Hameed,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aurelia Raynard,ou=Management,dc=bitwarden,dc=com", - "cn=Rivi Ludwig,ou=Management,dc=bitwarden,dc=com", - "cn=Isadora Vaters,ou=Payroll,dc=bitwarden,dc=com", - "cn=Elana Moy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Helaine Salamon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Briney Smithson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Selva Hillidge,ou=Payroll,dc=bitwarden,dc=com", - "cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden,dc=com", - "cn=Parks Pavitt,ou=Payroll,dc=bitwarden,dc=com", - "cn=Design Pepler,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shahram Dpierre,ou=Peons,dc=bitwarden,dc=com", - "cn=Sylvain Dans,ou=Peons,dc=bitwarden,dc=com", - "cn=Phuoc Vu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Candide Elhamahmy,ou=Management,dc=bitwarden,dc=com", - "cn=Sarine Hopley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Velma Brasset,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Clemmie Brower,ou=Product Development,dc=bitwarden,dc=com", - "cn=Drudy Badger,ou=Product Development,dc=bitwarden,dc=com", - "cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kimmy Nagaraj,ou=Management,dc=bitwarden,dc=com", - "cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Torrie Lai,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bryon Bannister,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Melford Charter,ou=Administrative,dc=bitwarden,dc=com", - "cn=Meriel Tota,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden,dc=com", - "cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darrel Samora,ou=Management,dc=bitwarden,dc=com", - "cn=Gabi Fares,ou=Peons,dc=bitwarden,dc=com", - "cn=Bao Byrd,ou=Management,dc=bitwarden,dc=com", - "cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wilf Rodenfels,ou=Peons,dc=bitwarden,dc=com", - "cn=Jeri Gupton,ou=Product Development,dc=bitwarden,dc=com", - "cn=Didar Brooksbank,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cathe Malone,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Evey Haddad,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ginette Smoot,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dorita Heffner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Reind Mufti,ou=Management,dc=bitwarden,dc=com", - "cn=Carolynn Dikens,ou=Payroll,dc=bitwarden,dc=com", - "cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lurleen Eberle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tandy Fssup,ou=Peons,dc=bitwarden,dc=com", - "cn=Datas Simmonds,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darline Frankenberger,ou=Management,dc=bitwarden,dc=com", - "cn=Merry Cadtools,ou=Payroll,dc=bitwarden,dc=com", - "cn=Chabane Hornung,ou=Peons,dc=bitwarden,dc=com", - "cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Colm Yassa,ou=Peons,dc=bitwarden,dc=com", - "cn=Jillayne Cobb,ou=Peons,dc=bitwarden,dc=com", - "cn=Ruby Brotherton,ou=Peons,dc=bitwarden,dc=com", - "cn=Marjie Geyer,ou=Product Development,dc=bitwarden,dc=com", - "cn=McGee Schreiber,ou=Peons,dc=bitwarden,dc=com", - "cn=Myrna Befanis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maurine StJames,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ebony DuBerger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Donnette Leighton,ou=Management,dc=bitwarden,dc=com", - "cn=Daryl Broca,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cristabel Orth,ou=Peons,dc=bitwarden,dc=com", - "cn=Constantia Lundy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shashi Amini,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leola Richard,ou=Management,dc=bitwarden,dc=com", - "cn=Jai Pascas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Petronille Receiving,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sidonia Badza,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Career Culkin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aubrey Mina,ou=Peons,dc=bitwarden,dc=com", - "cn=Wilhelmus Mandel,ou=Management,dc=bitwarden,dc=com", - "cn=Anya Kantor,ou=Product Testing,dc=bitwarden,dc=com", - "cn=National MacCarthy,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nissie Heile,ou=Management,dc=bitwarden,dc=com", - "cn=Pac Popowycz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Blancha Cousineau,ou=Peons,dc=bitwarden,dc=com", - "cn=Harper McWaters,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Adorne Bejar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lenee Marasco,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Reggi Hor,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Andres Williford,ou=Management,dc=bitwarden,dc=com", - "cn=Kwan Devault,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lionel Reinlie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gunter Glidewell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nick Brewer,ou=Peons,dc=bitwarden,dc=com", - "cn=Josefa Kilburn,ou=Management,dc=bitwarden,dc=com", - "cn=Cindy Oestreich,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pia Turchan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Louisa Ryall,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cherry Tennant,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Paul Rafael,ou=Management,dc=bitwarden,dc=com", - "cn=Glornia Cicchino,ou=Product Development,dc=bitwarden,dc=com", - "cn=Annalee Terminals,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dave Salehi,ou=Peons,dc=bitwarden,dc=com", - "cn=Wendy Slattery,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Previn Hirayama,ou=Payroll,dc=bitwarden,dc=com", - "cn=Evvy Barsony,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hollie Lawton,ou=Management,dc=bitwarden,dc=com", - "cn=Dacie Doi,ou=Management,dc=bitwarden,dc=com", - "cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hall Twitty,ou=Peons,dc=bitwarden,dc=com", - "cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tien Ferraro,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorine Metrailer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Heidie ElAm,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nyssa Australia,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Melford Ashdown,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rowe McHarg,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden,dc=com", - "cn=Rasla ODoherty,ou=Management,dc=bitwarden,dc=com", - "cn=Felicle Ramondt,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jasver Jurman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anderea Albritton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alana Melkild,ou=Management,dc=bitwarden,dc=com", - "cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Orie Kellogg,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Liva McMasters,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kiah Chandan,ou=Peons,dc=bitwarden,dc=com", - "cn=Vipi Bladon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dan Yost,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ivo Dziawa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vahid Routing,ou=Administrative,dc=bitwarden,dc=com", - "cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marianna Wray,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sunning Spence,ou=Management,dc=bitwarden,dc=com", - "cn=Cart Pyron,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nashville Venier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Glenn Salem,ou=Management,dc=bitwarden,dc=com", - "cn=Raman Smolin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marin Mokbel,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rici Plasse,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anup Klammer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ninon Starr,ou=Peons,dc=bitwarden,dc=com", - "cn=Atul Orth,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tung Lazar,ou=Management,dc=bitwarden,dc=com", - "cn=Conchita Raley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Steen Meyer,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ingunna Zollman,ou=Administrative,dc=bitwarden,dc=com", - "cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Winnie Goss,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dori Myatt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Beb Jammu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Reno Raines,ou=Payroll,dc=bitwarden,dc=com", - "cn=Delilah Praeuner,ou=Peons,dc=bitwarden,dc=com", - "cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Christiane Wanner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sada Polulack,ou=Payroll,dc=bitwarden,dc=com", - "cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shauna Caputo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hrdata Placido,ou=Product Development,dc=bitwarden,dc=com", - "cn=Belvia Raissian,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Odette Swiatkowski,ou=Management,dc=bitwarden,dc=com", - "cn=Richelle Thorne,ou=Management,dc=bitwarden,dc=com", - "cn=Jacques Bhatia,ou=Peons,dc=bitwarden,dc=com", - "cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Houman Levere,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden,dc=com", - "cn=Doloritas Adams,ou=Management,dc=bitwarden,dc=com", - "cn=Starr Selent,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Doria Sherrill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Maire Follett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ying Schulze,ou=Management,dc=bitwarden,dc=com", - "cn=Samual Franzky,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nert Bombardier,ou=Product Development,dc=bitwarden,dc=com", - "cn=Catherine Hite,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ilyse Mueller,ou=Product Development,dc=bitwarden,dc=com", - "cn=Stephenie Brennen,ou=Management,dc=bitwarden,dc=com", - "cn=Normand Hussein,ou=Peons,dc=bitwarden,dc=com", - "cn=Greta Vilayil,ou=Product Development,dc=bitwarden,dc=com", - "cn=Siana Letsome,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cosola Steene,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cooney Momon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Julie Dinalic,ou=Product Development,dc=bitwarden,dc=com", - "cn=Manya Mukherjee,ou=Peons,dc=bitwarden,dc=com", - "cn=Evans Letsome,ou=Management,dc=bitwarden,dc=com", - "cn=Silvana Filpus,ou=Human Resources,dc=bitwarden,dc=com", - "cn=YauFun Poindexter,ou=Administrative,dc=bitwarden,dc=com", - "cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Emmy Blissett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Blanche VanKast,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Merry Aderhold,ou=Peons,dc=bitwarden,dc=com", - "cn=Gwenni Marren,ou=Management,dc=bitwarden,dc=com", - "cn=Allys Akita,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Marris Fanchi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bryna McMann,ou=Peons,dc=bitwarden,dc=com", - "cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Clayton Lychak,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden,dc=com", - "cn=Abe Parton,ou=Peons,dc=bitwarden,dc=com", - "cn=Felice Kaehler,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jacenta Sztein,ou=Management,dc=bitwarden,dc=com", - "cn=Sonja Hoag,ou=Payroll,dc=bitwarden,dc=com", - "cn=Manmohan MacAdams,ou=Peons,dc=bitwarden,dc=com", - "cn=Cathe Bejar,ou=Peons,dc=bitwarden,dc=com", - "cn=Tape Vandervelde,ou=Administrative,dc=bitwarden,dc=com", - "cn=Adria Leger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Modesty Quinlan,ou=Management,dc=bitwarden,dc=com", - "cn=Jawaid Upton,ou=Management,dc=bitwarden,dc=com", - "cn=Trevor Vradmin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Helena Pellizzari,ou=Peons,dc=bitwarden,dc=com", - "cn=MunHang Salinas,ou=Janitorial,dc=bitwarden,dc=com", - "cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Delcina Forbes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Norene Tarver,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Angie Leiba,ou=Management,dc=bitwarden,dc=com", - "cn=Ernest Welker,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Fitzgerald Kabel,ou=Management,dc=bitwarden,dc=com", - "cn=Zaven Bethune,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aridatha Flindall,ou=Management,dc=bitwarden,dc=com", - "cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kipp Aubuchon,ou=Management,dc=bitwarden,dc=com", - "cn=Daile Id,ou=Payroll,dc=bitwarden,dc=com", - "cn=Shea Lashmit,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Stuart Murdock,ou=Payroll,dc=bitwarden,dc=com", - "cn=Adrianna Ness,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vanity Penland,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Denzil Willenbring,ou=Administrative,dc=bitwarden,dc=com", - "cn=Erna Stephen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=MarieAndree Ness,ou=Management,dc=bitwarden,dc=com", - "cn=LouisRene Borozny,ou=Payroll,dc=bitwarden,dc=com", - "cn=Donetta Grabowski,ou=Peons,dc=bitwarden,dc=com", - "cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Henk Crick,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ineke Haig,ou=Payroll,dc=bitwarden,dc=com", - "cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Felipa Catlett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kathye Ledou,ou=Management,dc=bitwarden,dc=com", - "cn=Pawel Pippin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Godiva Pesik,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Evelina Mapile,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pammy Rogers,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pas Giles,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marietta CamelToueg,ou=Management,dc=bitwarden,dc=com", - "cn=Rico Meachum,ou=Management,dc=bitwarden,dc=com", - "cn=Venkat Marrone,ou=Administrative,dc=bitwarden,dc=com", - "cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Elwood Gould,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden,dc=com", - "cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Darrel Hoch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Eunice Gerhart,ou=Management,dc=bitwarden,dc=com", - "cn=Karena Gunasekera,ou=Administrative,dc=bitwarden,dc=com", - "cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Charmine Izzo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nicolea Fagan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Huyen Nashville,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden,dc=com", - "cn=Myrtia Closson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ioana Jenner,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leon Bays,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ulf Cotner,ou=Peons,dc=bitwarden,dc=com", - "cn=Jinann Hassey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bevvy Huot,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Coord Cadd,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Envoy Lesway,ou=Peons,dc=bitwarden,dc=com", - "cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maybelle Brannon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lrc Blaiklock,ou=Peons,dc=bitwarden,dc=com", - "cn=Abu Melucci,ou=Management,dc=bitwarden,dc=com", - "cn=Hedwiga Personna,ou=Administrative,dc=bitwarden,dc=com", - "cn=Osmond Usyk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ilona Schoch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kieron Bouick,ou=Management,dc=bitwarden,dc=com", - "cn=Hettie Gruber,ou=Peons,dc=bitwarden,dc=com", - "cn=Farzin Hilaire,ou=Management,dc=bitwarden,dc=com", - "cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jaimie Valin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Meggy Fajardo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lyda Sym,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alia Lucente,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carline Klotz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marilin Boylan,ou=Management,dc=bitwarden,dc=com", - "cn=Mustapha Noles,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Brandais Cullum,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vradmin Lough,ou=Product Development,dc=bitwarden,dc=com", - "cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Laser Lennig,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wren Gopaul,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Whitney Inoue,ou=Product Development,dc=bitwarden,dc=com", - "cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karlee Weyand,ou=Management,dc=bitwarden,dc=com", - "cn=Fox Richmond,ou=Product Development,dc=bitwarden,dc=com", - "cn=Patrick Perreault,ou=Peons,dc=bitwarden,dc=com", - "cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden,dc=com", - "cn=Saloma Turbes,ou=Peons,dc=bitwarden,dc=com", - "cn=Tiffy Klammer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sonbol Portz,ou=Product Development,dc=bitwarden,dc=com", - "cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darko Gawdan,ou=Peons,dc=bitwarden,dc=com", - "cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dodie Starr,ou=Management,dc=bitwarden,dc=com", - "cn=Britt Bivens,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hanh Sohns,ou=Administrative,dc=bitwarden,dc=com", - "cn=Friederike Awano,ou=Product Development,dc=bitwarden,dc=com", - "cn=Franki Nassr,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sheridan Arcouet,ou=Peons,dc=bitwarden,dc=com", - "cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shoeb McCrimmon,ou=Management,dc=bitwarden,dc=com", - "cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sherline Morreale,ou=Product Development,dc=bitwarden,dc=com", - "cn=Emilia Tisdale,ou=Product Development,dc=bitwarden,dc=com", - "cn=Reinhold Shumate,ou=Peons,dc=bitwarden,dc=com", - "cn=Tatyana Packard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gloriana Vendette,ou=Peons,dc=bitwarden,dc=com", - "cn=Consuela Ravi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sioux Langlois,ou=Payroll,dc=bitwarden,dc=com", - "cn=Olympia Lieure,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cad Thorley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ryoung Moeschet,ou=Peons,dc=bitwarden,dc=com", - "cn=Jorry Freno,ou=Payroll,dc=bitwarden,dc=com", - "cn=Amandie Cottengim,ou=Peons,dc=bitwarden,dc=com", - "cn=Bran MacNeil,ou=Management,dc=bitwarden,dc=com", - "cn=Eladio Strudwick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cleveland Jagla,ou=Payroll,dc=bitwarden,dc=com", - "cn=Julien Osterberg,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Frederika Brower,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Timmi Bascombe,ou=Management,dc=bitwarden,dc=com", - "cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Milicent Frondozo,ou=Management,dc=bitwarden,dc=com", - "cn=Danell Silang,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Baljinder StJohn,ou=Product Development,dc=bitwarden,dc=com", - "cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Joannah Gendre,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zero Strickland,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lujanka Turner,ou=Administrative,dc=bitwarden,dc=com", - "cn=Trish Meissner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Han Hermes,ou=Management,dc=bitwarden,dc=com", - "cn=Annamaria Daly,ou=Payroll,dc=bitwarden,dc=com", - "cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden,dc=com", - "cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Roger Latella,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Korney Blevins,ou=Product Development,dc=bitwarden,dc=com", - "cn=Elsey Meckley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jill Langton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Peg Arnott,ou=Peons,dc=bitwarden,dc=com", - "cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lotta Witkowski,ou=Peons,dc=bitwarden,dc=com", - "cn=TunLin Dickerson,ou=Peons,dc=bitwarden,dc=com", - "cn=Sile Golczewski,ou=Product Development,dc=bitwarden,dc=com", - "cn=Joshi Formagie,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Penni Marzullo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maible Blauer,ou=Management,dc=bitwarden,dc=com", - "cn=Fawne Fanthome,ou=Administrative,dc=bitwarden,dc=com", - "cn=Brinna Spraggins,ou=Peons,dc=bitwarden,dc=com", - "cn=Misbah FWPtools,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shona Keck,ou=Peons,dc=bitwarden,dc=com", - "cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Doe Digenova,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Edel Huliganga,ou=Payroll,dc=bitwarden,dc=com", - "cn=Miquela Khosla,ou=Management,dc=bitwarden,dc=com", - "cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Butch Gewell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mindy Wealch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Petri Quintero,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Windowing Feyen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Charlotta Demarest,ou=Payroll,dc=bitwarden,dc=com", - "cn=Honey Badjari,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nady Kness,ou=Peons,dc=bitwarden,dc=com", - "cn=Magdaia Pagi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Peri Morden,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Avie Moores,ou=Peons,dc=bitwarden,dc=com", - "cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden,dc=com", - "cn=Schell Wendling,ou=Peons,dc=bitwarden,dc=com", - "cn=Reynold Labiche,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vince Bulger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nedi England,ou=Administrative,dc=bitwarden,dc=com", - "cn=Field Ueyama,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Mina ODonnell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rubie Suddarth,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fanchette Felli,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dorry Livshits,ou=Payroll,dc=bitwarden,dc=com", - "cn=Merle Turchan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Achal Blann,ou=Peons,dc=bitwarden,dc=com", - "cn=Marty Barr,ou=Management,dc=bitwarden,dc=com", - "cn=Lilin Tisdall,ou=Peons,dc=bitwarden,dc=com", - "cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Camille Seddigh,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Manon Swinamer,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Marci Uludamar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marcel Mathiue,ou=Management,dc=bitwarden,dc=com", - "cn=Clementina Salkilld,ou=Peons,dc=bitwarden,dc=com", - "cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden,dc=com", - "cn=Gertrudis Zahn,ou=Peons,dc=bitwarden,dc=com", - "cn=Jere Forghani,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gilemette Dellinger,ou=Peons,dc=bitwarden,dc=com", - "cn=Magdalene Byers,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Parnell Hamlin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nath Popovich,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Patch Lassonde,ou=Peons,dc=bitwarden,dc=com", - "cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nata Corse,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marj Npi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Emery Daoust,ou=Peons,dc=bitwarden,dc=com", - "cn=Danya Prasada,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Partha Blackman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Florette Shemwell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden,dc=com", - "cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden,dc=com", - "cn=Abagael Zattiero,ou=Management,dc=bitwarden,dc=com", - "cn=Mardi Lowder,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mercy Steranka,ou=Management,dc=bitwarden,dc=com", - "cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Catja Josiah,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marlena Rickey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shandee Reno,ou=Product Development,dc=bitwarden,dc=com", - "cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Silva Connolly,ou=Administrative,dc=bitwarden,dc=com", - "cn=Iwan Theriot,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Emerson Terminals,ou=Payroll,dc=bitwarden,dc=com", - "cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Felicdad Popela,ou=Administrative,dc=bitwarden,dc=com", - "cn=Himanshu Zahn,ou=Peons,dc=bitwarden,dc=com", - "cn=Luisa Legros,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brenn Thedford,ou=Peons,dc=bitwarden,dc=com", - "cn=Albina Kruusement,ou=Peons,dc=bitwarden,dc=com", - "cn=Yueping Yamada,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Belvia Abbott,ou=Product Development,dc=bitwarden,dc=com", - "cn=Seyma Currier,ou=Administrative,dc=bitwarden,dc=com", - "cn=Derrik Steede,ou=Management,dc=bitwarden,dc=com", - "cn=Starla OFarrell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Revkah Bawek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tian Dundin,ou=Management,dc=bitwarden,dc=com", - "cn=Aiden Dido,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pit Yancey,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Aartjan Robson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Winona Latreille,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dis Schmeing,ou=Peons,dc=bitwarden,dc=com", - "cn=Krystalle McHale,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jastinder Zollman,ou=Peons,dc=bitwarden,dc=com", - "cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Conny Blackburn,ou=Management,dc=bitwarden,dc=com", - "cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lian Tripps,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karlyn Tiseo,ou=Management,dc=bitwarden,dc=com", - "cn=Josselyn Sugarman,ou=Peons,dc=bitwarden,dc=com", - "cn=Ashlie Michailov,ou=Peons,dc=bitwarden,dc=com", - "cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cindie McNeill,ou=Administrative,dc=bitwarden,dc=com", - "cn=Izak Katibian,ou=Management,dc=bitwarden,dc=com", - "cn=Nanci Fiteny,ou=Management,dc=bitwarden,dc=com", - "cn=Marijke Tiseo,ou=Management,dc=bitwarden,dc=com", - "cn=Akshay Herlihy,ou=Peons,dc=bitwarden,dc=com", - "cn=Thomson Dasch,ou=Product Development,dc=bitwarden,dc=com", - "cn=Min StMartin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maybelle Karol,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cindy Ferner,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nerti Buskens,ou=Administrative,dc=bitwarden,dc=com", - "cn=Selvaraj Merrick,ou=Management,dc=bitwarden,dc=com", - "cn=Julien Simmons,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Conchita Meres,ou=Peons,dc=bitwarden,dc=com", - "cn=Hedi Herling,ou=Peons,dc=bitwarden,dc=com", - "cn=Roobbie Bizga,ou=Payroll,dc=bitwarden,dc=com", - "cn=Izak Hatten,ou=Payroll,dc=bitwarden,dc=com", - "cn=Parks McInnis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lanae Mullen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Barby Shiue,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rizwan Guindi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anetta Wray,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mougy Mo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Darline Alfred,ou=Management,dc=bitwarden,dc=com", - "cn=Kayla Boscio,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Keys Tavares,ou=Product Development,dc=bitwarden,dc=com", - "cn=Yutaka Branham,ou=Peons,dc=bitwarden,dc=com", - "cn=Elinore Spallin,ou=Peons,dc=bitwarden,dc=com", - "cn=Paige McAleer,ou=Peons,dc=bitwarden,dc=com", - "cn=Syyed Cantlie,ou=Peons,dc=bitwarden,dc=com", - "cn=Morley Trefts,ou=Administrative,dc=bitwarden,dc=com", - "cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kania Bnrecad,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tammi Zukosky,ou=Management,dc=bitwarden,dc=com", - "cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Leil Halbedel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marni Diduch,ou=Product Development,dc=bitwarden,dc=com", - "cn=Myriam Desrochers,ou=Management,dc=bitwarden,dc=com", - "cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Court Karademir,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jayendra Goba,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kathrerine Hackett,ou=Management,dc=bitwarden,dc=com", - "cn=Akihiko Restrepo,ou=Peons,dc=bitwarden,dc=com", - "cn=Andra Guindi,ou=Peons,dc=bitwarden,dc=com", - "cn=Manda Bigley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Julienne Mevis,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lesya Willison,ou=Payroll,dc=bitwarden,dc=com", - "cn=Giri Rupert,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Oguz Livingston,ou=Product Development,dc=bitwarden,dc=com", - "cn=Celie Wesselow,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Adria Hagar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Panch Timleck,ou=Administrative,dc=bitwarden,dc=com", - "cn=Caro Finley,ou=Management,dc=bitwarden,dc=com", - "cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Fernand Hunsucker,ou=Management,dc=bitwarden,dc=com", - "cn=Maybelle Tognoni,ou=Peons,dc=bitwarden,dc=com", - "cn=Sunil Boggan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Theressa McQueen,ou=Peons,dc=bitwarden,dc=com", - "cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Maala Lessard,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jochem Vuncannon,ou=Management,dc=bitwarden,dc=com", - "cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden,dc=com", - "cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Magdi Mays,ou=Product Development,dc=bitwarden,dc=com", - "cn=Suvanee Girard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bin Itah,ou=Management,dc=bitwarden,dc=com", - "cn=Raynell Zaydan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mabel Combee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Melania Michelsen,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hollyanne Java,ou=Product Development,dc=bitwarden,dc=com", - "cn=Theadora Irani,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eladio Bolio,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hermien Paksi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Merrilee Sipple,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aleece Mielke,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Harinder Sabry,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eamon Brivet,ou=Peons,dc=bitwarden,dc=com", - "cn=Analiese Chapman,ou=Peons,dc=bitwarden,dc=com", - "cn=Meghan Murphy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nikolia Guin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dana Tupling,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eliot Havis,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maryl Codrington,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Constantia Neubauer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Savita Sei,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yehuda Huret,ou=Peons,dc=bitwarden,dc=com", - "cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Livvie Barlow,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sebastian Burger,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Datas Cochran,ou=Management,dc=bitwarden,dc=com", - "cn=Chander Copley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Careers Serapin,ou=Product Development,dc=bitwarden,dc=com", - "cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mei Ballinger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Guillema Sarioglu,ou=Management,dc=bitwarden,dc=com", - "cn=Samual Colquhoun,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden,dc=com", - "cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden,dc=com", - "cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hubert Cicci,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chung Gooch,ou=Payroll,dc=bitwarden,dc=com", - "cn=Johnnie Trainer,ou=Administrative,dc=bitwarden,dc=com", - "cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Camile Latin,ou=Management,dc=bitwarden,dc=com", - "cn=Radio Ong,ou=Product Development,dc=bitwarden,dc=com", - "cn=Carmina Joly,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alese Zarate,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Babb Dpierre,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dalila Forbes,ou=Product Development,dc=bitwarden,dc=com", - "cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pinder Pedley,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden,dc=com", - "cn=Suzi Gribbons,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hulst Sinasac,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Naser deSalis,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden,dc=com", - "cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden,dc=com", - "cn=Maurise Efstration,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ranvir Reetz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alidia COKOL,ou=Peons,dc=bitwarden,dc=com", - "cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shashank Pifko,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eulalie Montcalm,ou=Management,dc=bitwarden,dc=com", - "cn=Calla Voight,ou=Peons,dc=bitwarden,dc=com", - "cn=Lynette Kay,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carleen Baxter,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hubert Brading,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Christian Norwood,ou=Management,dc=bitwarden,dc=com", - "cn=Den Fogle,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Karol Dummer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Myrna Samora,ou=Peons,dc=bitwarden,dc=com", - "cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden,dc=com", - "cn=KuiSoon Bajada,ou=Management,dc=bitwarden,dc=com", - "cn=Alvina Madison,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Celyne Krater,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pierre Hysler,ou=Management,dc=bitwarden,dc=com", - "cn=Gordy Fab,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mouna LaRue,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Janot Carella,ou=Administrative,dc=bitwarden,dc=com", - "cn=Vanny Blauer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dineke Sheth,ou=Payroll,dc=bitwarden,dc=com", - "cn=Feliza Camblin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zonda Bartush,ou=Payroll,dc=bitwarden,dc=com", - "cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Radford Wiklund,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Pamella Sosa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marya Felton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aindrea Cairns,ou=Peons,dc=bitwarden,dc=com", - "cn=Katherina Deek,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ardeen Grasman,ou=Payroll,dc=bitwarden,dc=com", - "cn=Isin VanOorschot,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karrah Laferriere,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sanae Baynes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Zainab Doan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cassy Seagle,ou=Management,dc=bitwarden,dc=com", - "cn=Wonda McCallum,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Florina Meredith,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nat Sadeghi,ou=Peons,dc=bitwarden,dc=com", - "cn=Hendra Viegas,ou=Management,dc=bitwarden,dc=com", - "cn=Bettie Coutellier,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Davis Connolly,ou=Peons,dc=bitwarden,dc=com", - "cn=Carma Rittenhouse,ou=Peons,dc=bitwarden,dc=com", - "cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sarah Longchamps,ou=Peons,dc=bitwarden,dc=com", - "cn=Haroon Neefs,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jenson Soumis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Minni Malynowsky,ou=Product Development,dc=bitwarden,dc=com", - "cn=Issam Coord,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lynna Salam,ou=Administrative,dc=bitwarden,dc=com", - "cn=Huong Quinones,ou=Payroll,dc=bitwarden,dc=com", - "cn=Class Picard,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Craig Kneisel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Fay Franco,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gae Garrett,ou=Peons,dc=bitwarden,dc=com", - "cn=Martita Sales,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amaleta McClelland,ou=Management,dc=bitwarden,dc=com", - "cn=Rico Vandevalk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nanny Kempski,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Antonella Stambouli,ou=Management,dc=bitwarden,dc=com", - "cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rhett Womack,ou=Management,dc=bitwarden,dc=com", - "cn=Kenneth Afkham,ou=Peons,dc=bitwarden,dc=com", - "cn=Asmar Dermardiros,ou=Peons,dc=bitwarden,dc=com", - "cn=Marabel ORourke,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lowry Fahey,ou=Management,dc=bitwarden,dc=com", - "cn=Christy Phalpher,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Emr Hacker,ou=Management,dc=bitwarden,dc=com", - "cn=Estelle Robieux,ou=Peons,dc=bitwarden,dc=com", - "cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ashraf Maybee,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bakel Sils,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Linnell Wepf,ou=Peons,dc=bitwarden,dc=com", - "cn=Foad Lebeau,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bal Braverman,ou=Peons,dc=bitwarden,dc=com", - "cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Buda Virchick,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Alika Kirchner,ou=Peons,dc=bitwarden,dc=com", - "cn=Kata Hagerty,ou=Peons,dc=bitwarden,dc=com", - "cn=Lorraine Polk,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tildi Washburn,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Minette Reva,ou=Payroll,dc=bitwarden,dc=com", - "cn=Farag Wolter,ou=Management,dc=bitwarden,dc=com", - "cn=AnnMarie Valentik,ou=Management,dc=bitwarden,dc=com", - "cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden,dc=com", - "cn=HooiLee Ronald,ou=Peons,dc=bitwarden,dc=com", - "cn=Gipsy Raman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Akram Nagendra,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Glen Majeed,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marieke Pien,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ingrid Lieure,ou=Management,dc=bitwarden,dc=com", - "cn=Roya Tod,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Christye Meridew,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Patrick Albers,ou=Administrative,dc=bitwarden,dc=com", - "cn=Doralynn Swyer,ou=Peons,dc=bitwarden,dc=com", - "cn=Vanni Katsouras,ou=Management,dc=bitwarden,dc=com", - "cn=Rogelio McGrath,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Daphine Kutschke,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jin Lyall,ou=Peons,dc=bitwarden,dc=com", - "cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Clerissa Maduri,ou=Administrative,dc=bitwarden,dc=com", - "cn=Simonne Lukers,ou=Management,dc=bitwarden,dc=com", - "cn=Jacynth Manto,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ronan Rattray,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Doloritas Ocone,ou=Management,dc=bitwarden,dc=com", - "cn=Etta Smithson,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Stephanie Pickles,ou=Peons,dc=bitwarden,dc=com", - "cn=Karla Hearnden,ou=Management,dc=bitwarden,dc=com", - "cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Xenia Schmitz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sande Withrow,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pammie Guilbert,ou=Peons,dc=bitwarden,dc=com", - "cn=Sabina Dolson,ou=Payroll,dc=bitwarden,dc=com", - "cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cyril Tullius,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden,dc=com", - "cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Agathe Kinney,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nevsa Botting,ou=Payroll,dc=bitwarden,dc=com", - "cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melisse Wallis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Benoite Lenior,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marya Lozier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Access Phelps,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ned Hammonds,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ernest Betterley,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kana Licata,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hermione Donahue,ou=Management,dc=bitwarden,dc=com", - "cn=Rochette Materkowski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lan Simms,ou=Peons,dc=bitwarden,dc=com", - "cn=Troy Bengtson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Natka Moritz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brook Clifton,ou=Management,dc=bitwarden,dc=com", - "cn=Maggee Colton,ou=Management,dc=bitwarden,dc=com", - "cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rae Willey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Terence Murray,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ransom Grande,ou=Payroll,dc=bitwarden,dc=com", - "cn=Lindy Clinger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Clyde Hanser,ou=Management,dc=bitwarden,dc=com", - "cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Charita Rainsforth,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Remo Duchesne,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Radames Verrilli,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alanna Dillard,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chantal Neander,ou=Administrative,dc=bitwarden,dc=com", - "cn=Leese Nagendra,ou=Management,dc=bitwarden,dc=com", - "cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden,dc=com", - "cn=Erena Ticzon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Far Fogelson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Anne Kobeski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ursola Hastie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden,dc=com", - "cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Germaine Wingate,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Olympia Peets,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sati Varughese,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tab Gozen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ioana Newsome,ou=Administrative,dc=bitwarden,dc=com", - "cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Damian Lescot,ou=Product Development,dc=bitwarden,dc=com", - "cn=Raz Roseland,ou=Payroll,dc=bitwarden,dc=com", - "cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vivianna Lackie,ou=Management,dc=bitwarden,dc=com", - "cn=Hadi Freeley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carol Sarson,ou=Management,dc=bitwarden,dc=com", - "cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ailene Mackin,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bret Winicki,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Hatty Latchford,ou=Peons,dc=bitwarden,dc=com", - "cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Trey Baenziger,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ioan Elsing,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Joy Ferrara,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Rowe Clinton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dolores McCafferty,ou=Product Development,dc=bitwarden,dc=com", - "cn=Luciana Lepore,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jimmie Korest,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Martelle Reno,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hock Chilausky,ou=Administrative,dc=bitwarden,dc=com", - "cn=Teddie Bulan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lavonda Rowsell,ou=Management,dc=bitwarden,dc=com", - "cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lorinda Nolet,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ike Outage,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Erin Dolson,ou=Peons,dc=bitwarden,dc=com", - "cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anderson Sitar,ou=Management,dc=bitwarden,dc=com", - "cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ranga Cawley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kylie Parnell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Millisent Ladymon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tilda Turcot,ou=Administrative,dc=bitwarden,dc=com", - "cn=Yuji McCabe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Pen Yost,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Traci Ahdieh,ou=Management,dc=bitwarden,dc=com", - "cn=Fay Deugau,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Inna MokFung,ou=Administrative,dc=bitwarden,dc=com", - "cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tehchi McEwan,ou=Peons,dc=bitwarden,dc=com", - "cn=Tats Graves,ou=Administrative,dc=bitwarden,dc=com", - "cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nakina Steranka,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gilda Reid,ou=Peons,dc=bitwarden,dc=com", - "cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden,dc=com", - "cn=Arnis Truchon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden,dc=com", - "cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Paige Wanzeck,ou=Management,dc=bitwarden,dc=com", - "cn=Dutch HSI,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Adda Danai,ou=Product Development,dc=bitwarden,dc=com", - "cn=Netty Muttaqi,ou=Management,dc=bitwarden,dc=com", - "cn=Karly Breglec,ou=Peons,dc=bitwarden,dc=com", - "cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gurdip Thornber,ou=Management,dc=bitwarden,dc=com", - "cn=Dulcea Bassett,ou=Management,dc=bitwarden,dc=com", - "cn=Caprice Selent,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hemant Remillard,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tilak Odgers,ou=Management,dc=bitwarden,dc=com", - "cn=Kaela Wooff,ou=Peons,dc=bitwarden,dc=com", - "cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden,dc=com", - "cn=Grey Krakowetz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Canute Ladymon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Alex Lumley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gunars Runkel,ou=Peons,dc=bitwarden,dc=com", - "cn=Careers McAdorey,ou=Management,dc=bitwarden,dc=com", - "cn=Ardelia Bunner,ou=Management,dc=bitwarden,dc=com", - "cn=Fekri Hunike,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Adey Shippen,ou=Peons,dc=bitwarden,dc=com", - "cn=Malina Lederman,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Perry Maryak,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vance Ruppert,ou=Payroll,dc=bitwarden,dc=com", - "cn=Peg Toscano,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Monah Tsonos,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Meade Latulippe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Karan Piper,ou=Peons,dc=bitwarden,dc=com", - "cn=Chander Paulus,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Parham Cisco,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Charmain Chahal,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden,dc=com", - "cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden,dc=com", - "cn=Janelle Tucker,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Angie Tesch,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Traci Wolter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Azmina Bergeson,ou=Peons,dc=bitwarden,dc=com", - "cn=Dolly Dane,ou=Peons,dc=bitwarden,dc=com", - "cn=Narendra Matsuzawa,ou=Management,dc=bitwarden,dc=com", - "cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Souza Austin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Chrissy Marren,ou=Payroll,dc=bitwarden,dc=com", - "cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tandie Virgoe,ou=Peons,dc=bitwarden,dc=com", - "cn=Calley Naujoks,ou=Management,dc=bitwarden,dc=com", - "cn=Regan Neilsen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Katja Waterman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sol Royals,ou=Human Resources,dc=bitwarden,dc=com", - "cn=KahMing Dubreck,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melitta Hunter,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Trang Tucker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Garth Alfaro,ou=Management,dc=bitwarden,dc=com", - "cn=Rickie Genge,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mariette Piggott,ou=Administrative,dc=bitwarden,dc=com", - "cn=Darla Schierbaum,ou=Payroll,dc=bitwarden,dc=com", - "cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Technical Ely,ou=Product Development,dc=bitwarden,dc=com", - "cn=Merrill Loa,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jojo Liew,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Noemi Gulko,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Aurel Mullins,ou=Administrative,dc=bitwarden,dc=com", - "cn=Raine Hauck,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Munaz Mand,ou=Product Development,dc=bitwarden,dc=com", - "cn=Zoe Leinen,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bihari Simkin,ou=Management,dc=bitwarden,dc=com", - "cn=Wannell Rivard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Adey Daquano,ou=Payroll,dc=bitwarden,dc=com", - "cn=Emeline Drewes,ou=Peons,dc=bitwarden,dc=com", - "cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden,dc=com", - "cn=Rayshell Dow,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sohayla Claggett,ou=Management,dc=bitwarden,dc=com", - "cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden,dc=com", - "cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden,dc=com", - "cn=Debora Lauzon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aggi Culver,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Delcine Pesold,ou=Management,dc=bitwarden,dc=com", - "cn=Pauline Bullion,ou=Management,dc=bitwarden,dc=com", - "cn=Tibor Belley,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vere Cushing,ou=Management,dc=bitwarden,dc=com", - "cn=Dorris Joshi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Victor Hollenbach,ou=Payroll,dc=bitwarden,dc=com", - "cn=Joyan Irvin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Zoenka Ivan,ou=Peons,dc=bitwarden,dc=com", - "cn=Wylo Rummans,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tyler McKibbin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Dorolice Puelma,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anwar Mauck,ou=Management,dc=bitwarden,dc=com", - "cn=Gillian Weihs,ou=Payroll,dc=bitwarden,dc=com", - "cn=Freddy Boase,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Manny Degraauw,ou=Payroll,dc=bitwarden,dc=com", - "cn=Zahir Meagher,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chiho Kowalski,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jan Gittins,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nalani Madsen,ou=Management,dc=bitwarden,dc=com", - "cn=Casie Banerd,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Beryle Camillucci,ou=Management,dc=bitwarden,dc=com", - "cn=Lubomyr Duran,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gertruda Boyajian,ou=Peons,dc=bitwarden,dc=com", - "cn=Dyanna Roehl,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kikelia Kember,ou=Payroll,dc=bitwarden,dc=com", - "cn=Yalcin Tanferna,ou=Management,dc=bitwarden,dc=com", - "cn=Justina Copello,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bam Luin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Frieda Dulaney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Les Allahdin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melek Fennessey,ou=Management,dc=bitwarden,dc=com", - "cn=Quon Zukosky,ou=Management,dc=bitwarden,dc=com", - "cn=Andrea ONeall,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Setsuko Keck,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ruchel Borosh,ou=Management,dc=bitwarden,dc=com", - "cn=Chloette Zadow,ou=Peons,dc=bitwarden,dc=com", - "cn=Sarena Fothergill,ou=Management,dc=bitwarden,dc=com", - "cn=Jaquith Canfield,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darell Carrillo,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Malgosia Beilin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bekki Kensinger,ou=Payroll,dc=bitwarden,dc=com", - "cn=Benny Stahl,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sonja Blake,ou=Management,dc=bitwarden,dc=com", - "cn=Corny Cowick,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sibelle McAlister,ou=Peons,dc=bitwarden,dc=com", - "cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Souza Deininger,ou=Product Development,dc=bitwarden,dc=com", - "cn=Beata Surray,ou=Payroll,dc=bitwarden,dc=com", - "cn=Betsy Bergman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cheryl Deibert,ou=Peons,dc=bitwarden,dc=com", - "cn=Darrel Bottoms,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Cissiee Gostanian,ou=Peons,dc=bitwarden,dc=com", - "cn=Portia Beecker,ou=Payroll,dc=bitwarden,dc=com", - "cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alli AbouEzze,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kirk Cuddihey,ou=Peons,dc=bitwarden,dc=com", - "cn=ChoonLin Marneris,ou=Peons,dc=bitwarden,dc=com", - "cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Davida Milakovic,ou=Payroll,dc=bitwarden,dc=com", - "cn=Janela Bennison,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Zorine Records,ou=Peons,dc=bitwarden,dc=com", - "cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ashleigh Ligon,ou=Management,dc=bitwarden,dc=com", - "cn=Nelly Kerns,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Chicky Domine,ou=Peons,dc=bitwarden,dc=com", - "cn=Woon Morrin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tedra Shwed,ou=Product Development,dc=bitwarden,dc=com", - "cn=Wallis Whitfill,ou=Product Development,dc=bitwarden,dc=com", - "cn=Torey Tropea,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Israel Ginest,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Yoko Honda,ou=Peons,dc=bitwarden,dc=com", - "cn=Farzin Herlihy,ou=Peons,dc=bitwarden,dc=com", - "cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Benny Ratnam,ou=Product Development,dc=bitwarden,dc=com", - "cn=Reeba Pape,ou=Peons,dc=bitwarden,dc=com", - "cn=Ashu Kohn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liese McCombs,ou=Peons,dc=bitwarden,dc=com", - "cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Blinny Zanet,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sanjay Themann,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vijay Shorgan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Duncan Kiang,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Liliane Chima,ou=Payroll,dc=bitwarden,dc=com", - "cn=Khai Diradmin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden,dc=com", - "cn=Burton Deans,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Elly Kubash,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tallou Gothard,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden,dc=com", - "cn=Perry Schmitz,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Avinash Finn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Marabel Hippert,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Klazina Desharnais,ou=Peons,dc=bitwarden,dc=com", - "cn=Ursala Vezeau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Muffin Atteridge,ou=Product Development,dc=bitwarden,dc=com", - "cn=Vanya Marcoux,ou=Management,dc=bitwarden,dc=com", - "cn=Mercy Nakano,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden,dc=com", - "cn=Arlina Weaver,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Seven Okon,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden,dc=com", - "cn=Liliane Gurer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=HonKong Salem,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Glynnis Daniells,ou=Management,dc=bitwarden,dc=com", - "cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Miran McKeone,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dion Polulack,ou=Administrative,dc=bitwarden,dc=com", - "cn=Hartley Busch,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gusella Popper,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Wits Stutts,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Afzal Rusch,ou=Peons,dc=bitwarden,dc=com", - "cn=Karon McBrayne,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Judy Homa,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tarik Tester,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carole Suykens,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Saman Koverzin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kaushik Reid,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eastreg Buchan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kevyn Yu,ou=Management,dc=bitwarden,dc=com", - "cn=Violante Chaurasia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Franklin Landry,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Rejean Hartsell,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Crista Reece,ou=Product Development,dc=bitwarden,dc=com", - "cn=Apryle Briard,ou=Management,dc=bitwarden,dc=com", - "cn=Joni Netas,ou=Management,dc=bitwarden,dc=com", - "cn=Nicola Hensen,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Bruce Galasso,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden,dc=com", - "cn=Margeaux Chunn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Long Esry,ou=Management,dc=bitwarden,dc=com", - "cn=Lynette Brearley,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Birdie Cawley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Deana MacNeill,ou=Payroll,dc=bitwarden,dc=com", - "cn=Afton Tanner,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden,dc=com", - "cn=JooEuin Peters,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jordan Normandin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brynna Swanston,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden,dc=com", - "cn=Saumitra Svo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Modestia Hersee,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gretna Ergle,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gary Denmark,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fei Isert,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden,dc=com", - "cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Armand Bebber,ou=Management,dc=bitwarden,dc=com", - "cn=Virgina Kahnert,ou=Management,dc=bitwarden,dc=com", - "cn=Antoni Vickers,ou=Management,dc=bitwarden,dc=com", - "cn=Dan Telos,ou=Payroll,dc=bitwarden,dc=com", - "cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Rory Chan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gertrude Senyshyn,ou=Management,dc=bitwarden,dc=com", - "cn=Missagh Yeh,ou=Product Development,dc=bitwarden,dc=com", - "cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Morganica Ashdown,ou=Management,dc=bitwarden,dc=com", - "cn=Joey Moore,ou=Peons,dc=bitwarden,dc=com", - "cn=Rheta Knobloch,ou=Peons,dc=bitwarden,dc=com", - "cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden,dc=com", - "cn=Far Shupe,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Noni Pauley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Hera Eike,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Melisa Peacemaker,ou=Management,dc=bitwarden,dc=com", - "cn=Wylo Woodley,ou=Management,dc=bitwarden,dc=com", - "cn=Collette Quevillon,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Renelle Ducic,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ailis Gabe,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Selena Sanoy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Electra Hassold,ou=Administrative,dc=bitwarden,dc=com", - "cn=Terry Johnston,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Franny Towill,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Duquette Pratt,ou=Payroll,dc=bitwarden,dc=com", - "cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Alb Hussein,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sam Ference,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Yukinobu Riebl,ou=Peons,dc=bitwarden,dc=com", - "cn=Tarus Hillard,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ramonda Lott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Anitra Arora,ou=Payroll,dc=bitwarden,dc=com", - "cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sonja Tohama,ou=Peons,dc=bitwarden,dc=com", - "cn=Rycca Bloemker,ou=Administrative,dc=bitwarden,dc=com", - "cn=Joydeep Elledge,ou=Peons,dc=bitwarden,dc=com", - "cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Silvie Nevardauskis,ou=Management,dc=bitwarden,dc=com", - "cn=Ilene Curnow,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ailee Sudbey,ou=Management,dc=bitwarden,dc=com", - "cn=Maarten Mejia,ou=Administrative,dc=bitwarden,dc=com", - "cn=PierreAndre Abbate,ou=Peons,dc=bitwarden,dc=com", - "cn=Kizzie Adey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Krystn Skerlak,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kailey Southon,ou=Administrative,dc=bitwarden,dc=com", - "cn=PohSoon Corpening,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cissy Systest,ou=Management,dc=bitwarden,dc=com", - "cn=Ailee Garry,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Juliet Goyal,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gleda Carldata,ou=Payroll,dc=bitwarden,dc=com", - "cn=Elane Latour,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Matt Sharman,ou=Peons,dc=bitwarden,dc=com", - "cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Violante Moomey,ou=Payroll,dc=bitwarden,dc=com", - "cn=Valery Howell,ou=Management,dc=bitwarden,dc=com", - "cn=Lorri Fontanini,ou=Administrative,dc=bitwarden,dc=com", - "cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ivette Frantz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cyndie Mohideen,ou=Management,dc=bitwarden,dc=com", - "cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ardine Grimm,ou=Peons,dc=bitwarden,dc=com", - "cn=Raine Capps,ou=Human Resources,dc=bitwarden,dc=com", - "cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Skyler Khurana,ou=Administrative,dc=bitwarden,dc=com", - "cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kris Warfel,ou=Management,dc=bitwarden,dc=com", - "cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ruby Stansbury,ou=Administrative,dc=bitwarden,dc=com", - "cn=John Seery,ou=Peons,dc=bitwarden,dc=com", - "cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Callida Boarder,ou=Product Development,dc=bitwarden,dc=com", - "cn=Rona Cosgrove,ou=Management,dc=bitwarden,dc=com", - "cn=Tasia Anchia,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden,dc=com", - "cn=Wallis Barentsen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Fan Cranston,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Helen Hyde,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Raeann OKarina,ou=Product Development,dc=bitwarden,dc=com", - "cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden,dc=com", - "cn=Olga Magee,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sibel Munter,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Carmella Pillars,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden,dc=com", - "cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tabbi Bladon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Umesh Areu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Orel Delahay,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Corrie Cipolla,ou=Product Development,dc=bitwarden,dc=com", - "cn=Longdist Goliss,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Belissa Northcott,ou=Product Development,dc=bitwarden,dc=com", - "cn=Eula Gouldson,ou=Payroll,dc=bitwarden,dc=com", - "cn=Beatrix Rea,ou=Management,dc=bitwarden,dc=com", - "cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden,dc=com", - "cn=Larysa Fleming,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Andras Dziemian,ou=Administrative,dc=bitwarden,dc=com", - "cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden,dc=com", - "cn=Afke Coallier,ou=Management,dc=bitwarden,dc=com", - "cn=Lachu Fricks,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Pammy Slautterback,ou=Administrative,dc=bitwarden,dc=com", - "cn=Maribelle Balderston,ou=Payroll,dc=bitwarden,dc=com", - "cn=Vahe Birks,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tobe PKDCD,ou=Product Development,dc=bitwarden,dc=com", - "cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden,dc=com", - "cn=Melynda Phillips,ou=Administrative,dc=bitwarden,dc=com", - "cn=Arina Collazo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Cesare Karolefski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Partick Bassil,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Siamak Wagle,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Reine Hamlett,ou=Peons,dc=bitwarden,dc=com", - "cn=Albert Tebinka,ou=Payroll,dc=bitwarden,dc=com", - "cn=Wally Pedneault,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shahriar Farnham,ou=Peons,dc=bitwarden,dc=com", - "cn=Concordia Thorman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Sarath Lathrop,ou=Management,dc=bitwarden,dc=com", - "cn=HanVan Cuthill,ou=Peons,dc=bitwarden,dc=com", - "cn=Demetri Acree,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gord St,ou=Product Development,dc=bitwarden,dc=com", - "cn=Robyn Porter,ou=Payroll,dc=bitwarden,dc=com", - "cn=Kristine Ratnam,ou=Peons,dc=bitwarden,dc=com", - "cn=Trude Leander,ou=Management,dc=bitwarden,dc=com", - "cn=Jacinta Burkepile,ou=Management,dc=bitwarden,dc=com", - "cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sissela Mathewson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kaela Gleason,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mandi Popovich,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bhal Mymryk,ou=Management,dc=bitwarden,dc=com", - "cn=Wenxi Sethian,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mabel Kwa,ou=Peons,dc=bitwarden,dc=com", - "cn=Neysa Uguccioni,ou=Management,dc=bitwarden,dc=com", - "cn=Toby Ayoup,ou=Administrative,dc=bitwarden,dc=com", - "cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Drusilla Allman,ou=Management,dc=bitwarden,dc=com", - "cn=SangMaun Rabzel,ou=Management,dc=bitwarden,dc=com", - "cn=Bettine Bresnan,ou=Peons,dc=bitwarden,dc=com", - "cn=Blithe Searl,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Haig Talton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ryman Smerdell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Admin Cassar,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Esmail Santos,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Walter Coley,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jeanne Boult,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Avie Scourneau,ou=Management,dc=bitwarden,dc=com", - "cn=Bettie Cescon,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maureene Weiser,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Melisent Annibale,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bonnie Corse,ou=Peons,dc=bitwarden,dc=com", - "cn=Querida Gertridge,ou=Management,dc=bitwarden,dc=com", - "cn=Lily Stites,ou=Payroll,dc=bitwarden,dc=com", - "cn=Woon Klimon,ou=Management,dc=bitwarden,dc=com", - "cn=Carlota Oros,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gil Spurway,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Licha Weinbender,ou=Product Development,dc=bitwarden,dc=com", - "cn=Mirabella Awano,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lura Centis,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Aveline Berhane,ou=Management,dc=bitwarden,dc=com", - "cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden,dc=com", - "cn=Billy Costantino,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dorrie Fortner,ou=Product Development,dc=bitwarden,dc=com", - "cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden,dc=com", - "cn=Carleen Toly,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Vijay Nassr,ou=Management,dc=bitwarden,dc=com", - "cn=Sandro Gorius,ou=Human Resources,dc=bitwarden,dc=com", - "cn=He Crowder,ou=Peons,dc=bitwarden,dc=com", - "cn=Atta Kutch,ou=Management,dc=bitwarden,dc=com", - "cn=Devon Kaudel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Deidre Cirulli,ou=Peons,dc=bitwarden,dc=com", - "cn=Kala Bourget,ou=Peons,dc=bitwarden,dc=com", - "cn=Charo Hembrick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Janene Torrell,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Eben Shayanpour,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Yves Dhir,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Aile Frink,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden,dc=com", - "cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Damara Jaswal,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Ethelin Girotti,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pramod Foessl,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Octavia Handschy,ou=Peons,dc=bitwarden,dc=com", - "cn=Kerstin Nandi,ou=Management,dc=bitwarden,dc=com", - "cn=Elwood Bouick,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clarence Dpu,ou=Management,dc=bitwarden,dc=com", - "cn=Shama Norton,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Vo Sauer,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gilberte Ferland,ou=Administrative,dc=bitwarden,dc=com", - "cn=Valeria Harmon,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dorthy Youngman,ou=Management,dc=bitwarden,dc=com", - "cn=Gilles Litherland,ou=Payroll,dc=bitwarden,dc=com", - "cn=Erick Wicht,ou=Peons,dc=bitwarden,dc=com", - "cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Kassie Nava,ou=Product Development,dc=bitwarden,dc=com", - "cn=Opaline Ober,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Madan Baab,ou=Product Development,dc=bitwarden,dc=com", - "cn=Htd Hersee,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dorita Anker,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Christopher Cohea,ou=Management,dc=bitwarden,dc=com", - "cn=Robbie Bunting,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Masood Shipe,ou=Management,dc=bitwarden,dc=com", - "cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Bernardina Sreedhar,ou=Management,dc=bitwarden,dc=com", - "cn=Atl Corbin,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alice Knighton,ou=Management,dc=bitwarden,dc=com", - "cn=Fern Okafo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Brietta Dupras,ou=Management,dc=bitwarden,dc=com", - "cn=Wanda Becker,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gerben Kozlowski,ou=Management,dc=bitwarden,dc=com", - "cn=Maynard Burness,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sylva Milloy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=CheeYin Westphal,ou=Administrative,dc=bitwarden,dc=com", - "cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden,dc=com", - "cn=Bawn McNeal,ou=Peons,dc=bitwarden,dc=com", - "cn=Raine Fogle,ou=Peons,dc=bitwarden,dc=com", - "cn=Eyde Sitch,ou=Management,dc=bitwarden,dc=com", - "cn=Windowing Walkins,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Alisun Hampel,ou=Management,dc=bitwarden,dc=com", - "cn=Quinta Pimpare,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jemimah Whitney,ou=Product Development,dc=bitwarden,dc=com", - "cn=Marta McNerlan,ou=Peons,dc=bitwarden,dc=com", - "cn=Miranda Sobel,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Minda Andric,ou=Peons,dc=bitwarden,dc=com", - "cn=Roselle Baber,ou=Management,dc=bitwarden,dc=com", - "cn=Four Keene,ou=Peons,dc=bitwarden,dc=com", - "cn=Souza Salyer,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Petri Beehler,ou=Management,dc=bitwarden,dc=com", - "cn=Annadiane Hyrne,ou=Peons,dc=bitwarden,dc=com", - "cn=Freida Nock,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Adrianne Hollenbach,ou=Management,dc=bitwarden,dc=com", - "cn=Leon Hulme,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Izabel Schnell,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jammie Parisien,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cori Oreilly,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Enzo Rodgers,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pic Basinger,ou=Peons,dc=bitwarden,dc=com", - "cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden,dc=com", - "cn=Paqs Atalla,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Norina McClymont,ou=Management,dc=bitwarden,dc=com", - "cn=Sadella Psklib,ou=Administrative,dc=bitwarden,dc=com", - "cn=Bqb Mulvie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jenica Brophy,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Steen Dubuc,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shea Blesi,ou=Management,dc=bitwarden,dc=com", - "cn=Kusum Tilden,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Famke Chuah,ou=Administrative,dc=bitwarden,dc=com", - "cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden,dc=com", - "cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden,dc=com", - "cn=HoaVan Drummer,ou=Peons,dc=bitwarden,dc=com", - "cn=Metrics McCoy,ou=Peons,dc=bitwarden,dc=com", - "cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Nicolas Lally,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Candie Siefert,ou=Administrative,dc=bitwarden,dc=com", - "cn=Ulf Novak,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Paulette Unkefer,ou=Peons,dc=bitwarden,dc=com", - "cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Gwendolin Kean,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marthe Harvey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden,dc=com", - "cn=Francene AuYeung,ou=Peons,dc=bitwarden,dc=com", - "cn=Juliana Omura,ou=Peons,dc=bitwarden,dc=com", - "cn=Emelina Elliot,ou=Product Development,dc=bitwarden,dc=com", - "cn=Waverly Monforton,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gladys Bilanski,ou=Management,dc=bitwarden,dc=com", - "cn=Analise Shea,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Cart Boutin,ou=Management,dc=bitwarden,dc=com", - "cn=Kunie Hoorman,ou=Product Development,dc=bitwarden,dc=com", - "cn=Odelinda Keilty,ou=Payroll,dc=bitwarden,dc=com", - "cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Stella Sist,ou=Peons,dc=bitwarden,dc=com", - "cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Dayle Schenkel,ou=Management,dc=bitwarden,dc=com", - "cn=Arlyn McBroom,ou=Payroll,dc=bitwarden,dc=com", - "cn=Brear Jensen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Ann Bulengo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Esma Jak,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Larkin Nance,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mirelle Novak,ou=Peons,dc=bitwarden,dc=com", - "cn=Dorothy Laurich,ou=Product Development,dc=bitwarden,dc=com", - "cn=Shyam Wernik,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Niek Rahmany,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jung Kimler,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lolita Mufti,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Coord Kalleward,ou=Management,dc=bitwarden,dc=com", - "cn=Garnet Shames,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fara Shireman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shahid Neil,ou=Management,dc=bitwarden,dc=com", - "cn=Starlene Falardeau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Marce Plaisance,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lena Mathias,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gaby Booking,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Michaela Trimble,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lucie Kilner,ou=Payroll,dc=bitwarden,dc=com", - "cn=Danyelle Rider,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Mariska Tien,ou=Peons,dc=bitwarden,dc=com", - "cn=Belvia Lamoureux,ou=Peons,dc=bitwarden,dc=com", - "cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jian Marneris,ou=Payroll,dc=bitwarden,dc=com", - "cn=Dagmar Moseby,ou=Payroll,dc=bitwarden,dc=com", - "cn=Casie Ress,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hrinfo Okura,ou=Payroll,dc=bitwarden,dc=com", - "cn=Korney Fadlallah,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jiri Leftwich,ou=Peons,dc=bitwarden,dc=com", - "cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tildie Abbott,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Kalindi Keehan,ou=Peons,dc=bitwarden,dc=com", - "cn=Collette Patchett,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cristiane Ruth,ou=Peons,dc=bitwarden,dc=com", - "cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sedat Gurley,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Sharai Coxall,ou=Product Development,dc=bitwarden,dc=com", - "cn=Franny Walton,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Aryn Klimas,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dorise Yue,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mellisa Gustlin,ou=Management,dc=bitwarden,dc=com", - "cn=Butch Roper,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Mendel Rolls,ou=Administrative,dc=bitwarden,dc=com", - "cn=Cecelia Dowse,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Anette Lassig,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Gio Londhe,ou=Human Resources,dc=bitwarden,dc=com", - "cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tadayuki Mak,ou=Product Development,dc=bitwarden,dc=com", - "cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ri Trisic,ou=Peons,dc=bitwarden,dc=com", - "cn=Ileana Doyle,ou=Management,dc=bitwarden,dc=com", - "cn=Nico Badelt,ou=Management,dc=bitwarden,dc=com", - "cn=Ragu Lieure,ou=Administrative,dc=bitwarden,dc=com", - "cn=Claudia Berhane,ou=Management,dc=bitwarden,dc=com", - "cn=Silvana Tunali,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Anand Henshaw,ou=Administrative,dc=bitwarden,dc=com", - "cn=Imtaz Ledamun,ou=Peons,dc=bitwarden,dc=com", - "cn=Meryl Diaz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Saraann Anastasio,ou=Administrative,dc=bitwarden,dc=com", - "cn=Declan Creane,ou=Product Development,dc=bitwarden,dc=com", - "cn=Terrell Mathieson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Olympia DMS,ou=Peons,dc=bitwarden,dc=com", - "cn=Mounir Pullum,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden,dc=com", - "cn=Constantina Faou,ou=Product Development,dc=bitwarden,dc=com", - "cn=Santiago Georges,ou=Management,dc=bitwarden,dc=com", - "cn=Marinette Ficker,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Janet Pankiw,ou=Administrative,dc=bitwarden,dc=com", - "cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Else Hazenboom,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Saibal Traynor,ou=Peons,dc=bitwarden,dc=com", - "cn=Khue Mein,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden,dc=com", - "cn=PeyKee Fetterman,ou=Management,dc=bitwarden,dc=com", - "cn=Claire Reinlie,ou=Management,dc=bitwarden,dc=com", - "cn=Shawna Lahlum,ou=Product Development,dc=bitwarden,dc=com", - "cn=Darelle Childress,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kessiah Alford,ou=Peons,dc=bitwarden,dc=com", - "cn=Theressa Olivier,ou=Peons,dc=bitwarden,dc=com", - "cn=Pauly Jago,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Collete Krabicka,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kim Highsmith,ou=Administrative,dc=bitwarden,dc=com", - "cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elladine Schwab,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden,dc=com", - "cn=XiaoMing Dorr,ou=Management,dc=bitwarden,dc=com", - "cn=Clement Durant,ou=Peons,dc=bitwarden,dc=com", - "cn=Rejeanne Shelegey,ou=Management,dc=bitwarden,dc=com", - "cn=Nicky McDowall,ou=Payroll,dc=bitwarden,dc=com", - "cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden,dc=com", - "cn=Thomasa Fulk,ou=Peons,dc=bitwarden,dc=com", - "cn=Florri Tregenza,ou=Peons,dc=bitwarden,dc=com", - "cn=Hester Colbourne,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anitra Hugel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kanu Cuervo,ou=Management,dc=bitwarden,dc=com", - "cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden,dc=com", - "cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Faruk Hanzel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Trent Carli,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maurene Paliga,ou=Payroll,dc=bitwarden,dc=com", - "cn=Minette Manner,ou=Management,dc=bitwarden,dc=com", - "cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elio Lough,ou=Payroll,dc=bitwarden,dc=com", - "cn=Abigael Noddin,ou=Peons,dc=bitwarden,dc=com", - "cn=Winna Bono,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden,dc=com", - "cn=Karalynn Paylor,ou=Administrative,dc=bitwarden,dc=com", - "cn=Caterina Pittam,ou=Peons,dc=bitwarden,dc=com", - "cn=Michaela Cuffle,ou=Management,dc=bitwarden,dc=com", - "cn=Sibylle Martins,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jade Noguchi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Guenna Lazure,ou=Peons,dc=bitwarden,dc=com", - "cn=Beatrisa Staring,ou=Product Development,dc=bitwarden,dc=com", - "cn=Bernadine Schrang,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alese Rigdon,ou=Product Development,dc=bitwarden,dc=com", - "cn=MaryJo Harms,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Dorris Akita,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Thanh Dewitt,ou=Product Development,dc=bitwarden,dc=com", - "cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Davita Stenson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Pak Krone,ou=Product Development,dc=bitwarden,dc=com", - "cn=Idalina Vogt,ou=Product Testing,dc=bitwarden,dc=com", - "cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yuan Wester,ou=Product Development,dc=bitwarden,dc=com", - "cn=Riaz Gulis,ou=Product Development,dc=bitwarden,dc=com", - "cn=Odetta Masse,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Stacia Presgrove,ou=Management,dc=bitwarden,dc=com", - "cn=Norbert Salazar,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nevein Grimshaw,ou=Management,dc=bitwarden,dc=com", - "cn=Annaliese Hudak,ou=Product Development,dc=bitwarden,dc=com", - "cn=Andromache Machika,ou=Product Development,dc=bitwarden,dc=com", - "cn=Meriann Larose,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Agathe Kikuchi,ou=Management,dc=bitwarden,dc=com", - "cn=Somsak Fields,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zitella Hussein,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Varennes ParkerShane,ou=Peons,dc=bitwarden,dc=com", - "cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Idelle Leicht,ou=Payroll,dc=bitwarden,dc=com", - "cn=Darb Swinkels,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Koren Perfetti,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kelcey Reuss,ou=Administrative,dc=bitwarden,dc=com", - "cn=Lujanka Contardo,ou=Product Development,dc=bitwarden,dc=com", - "cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Barton Seggie,ou=Payroll,dc=bitwarden,dc=com", - "cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Julee Norby,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sharai Torok,ou=Payroll,dc=bitwarden,dc=com", - "cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden,dc=com", - "cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden,dc=com", - "cn=Cefee Donelan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jderek Sankey,ou=Management,dc=bitwarden,dc=com", - "cn=Sid Barnhill,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Kamlesh Hoang,ou=Peons,dc=bitwarden,dc=com", - "cn=Sarath McCall,ou=Payroll,dc=bitwarden,dc=com", - "cn=Nermana Douglas,ou=Management,dc=bitwarden,dc=com", - "cn=Student Sonne,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Maisie DaGama,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Erminie Battershill,ou=Peons,dc=bitwarden,dc=com", - "cn=Jung Betts,ou=Payroll,dc=bitwarden,dc=com", - "cn=Maddi Naolu,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Ammar Parise,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Agata Khouderchan,ou=Management,dc=bitwarden,dc=com", - "cn=Joella Casey,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sharone Torrell,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ebony Vitaglian,ou=Peons,dc=bitwarden,dc=com", - "cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Evanne Callos,ou=Product Development,dc=bitwarden,dc=com", - "cn=Purvee Kwast,ou=Peons,dc=bitwarden,dc=com", - "cn=Eluned Vinson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Melisandra McVey,ou=Management,dc=bitwarden,dc=com", - "cn=Philipa Netdbs,ou=Payroll,dc=bitwarden,dc=com", - "cn=Art Totten,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Roxanna Colquette,ou=Payroll,dc=bitwarden,dc=com", - "cn=Janessa Bienek,ou=Product Development,dc=bitwarden,dc=com", - "cn=Christa Schrage,ou=Management,dc=bitwarden,dc=com", - "cn=Glenna Trefry,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Cecco Langevin,ou=Peons,dc=bitwarden,dc=com", - "cn=Magdy McCloskey,ou=Administrative,dc=bitwarden,dc=com", - "cn=Filion Karam,ou=Management,dc=bitwarden,dc=com", - "cn=Nerissa Volz,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Barb Crockett,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Klara deSalis,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Teri Hildum,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Lorenza Pafilis,ou=Peons,dc=bitwarden,dc=com", - "cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anda Joyce,ou=Peons,dc=bitwarden,dc=com", - "cn=Rustu Biss,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Geer Devault,ou=Management,dc=bitwarden,dc=com", - "cn=Bea Nemec,ou=Management,dc=bitwarden,dc=com", - "cn=Veneice Tobias,ou=Product Development,dc=bitwarden,dc=com", - "cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Dorolice Communication,ou=Management,dc=bitwarden,dc=com", - "cn=Danica Middleton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Bradley Stokker,ou=Peons,dc=bitwarden,dc=com", - "cn=Kessia Reiser,ou=Management,dc=bitwarden,dc=com", - "cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lope Keim,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Tonya Hine,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Lisa Lande,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lapkin Matney,ou=Administrative,dc=bitwarden,dc=com", - "cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lenee Topp,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Sacto Miskelly,ou=Payroll,dc=bitwarden,dc=com", - "cn=Sib Schissel,ou=Product Development,dc=bitwarden,dc=com", - "cn=Tessa Severin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Drucill Brickey,ou=Peons,dc=bitwarden,dc=com", - "cn=Caterina StMartin,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rojer Jurek,ou=Peons,dc=bitwarden,dc=com", - "cn=Shannah Colpitts,ou=Administrative,dc=bitwarden,dc=com", - "cn=Holst Lowder,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hernan Cano,ou=Management,dc=bitwarden,dc=com", - "cn=Opto Broten,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden,dc=com", - "cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden,dc=com", - "cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Jill Domine,ou=Management,dc=bitwarden,dc=com", - "cn=Calypso Bolding,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nicolina Scp,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden,dc=com", - "cn=Walter Cuddy,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden,dc=com", - "cn=Ruby Mattson,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Ranna Bedford,ou=Payroll,dc=bitwarden,dc=com", - "cn=Amalle Rodi,ou=Payroll,dc=bitwarden,dc=com", - "cn=Eolande Tarver,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Tilda Kirady,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Shailin Harris,ou=Product Development,dc=bitwarden,dc=com", - "cn=Axel Panter,ou=Payroll,dc=bitwarden,dc=com", - "cn=Karel McKerrow,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Arabelle Jepson,ou=Product Development,dc=bitwarden,dc=com", - "cn=Donna Imhof,ou=Payroll,dc=bitwarden,dc=com", - "cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden,dc=com", - "cn=Lucila Caruth,ou=Management,dc=bitwarden,dc=com", - "cn=Serban Kamal,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Suzann Minter,ou=Product Development,dc=bitwarden,dc=com", - "cn=Roselia Valvasori,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nancey ODonovan,ou=Payroll,dc=bitwarden,dc=com", - "cn=Deva Deugau,ou=Payroll,dc=bitwarden,dc=com", - "cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden,dc=com", - "cn=Almire Rokas,ou=Product Development,dc=bitwarden,dc=com", - "cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Aideen Sterian,ou=Product Development,dc=bitwarden,dc=com", - "cn=Norma Gording,ou=Peons,dc=bitwarden,dc=com", - "cn=Caye LeTarte,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Odile Blaufus,ou=Product Development,dc=bitwarden,dc=com", - "cn=Gerti Macchiusi,ou=Peons,dc=bitwarden,dc=com", - "cn=Carmelita Fucito,ou=Product Development,dc=bitwarden,dc=com", - "cn=Xenia Ertan,ou=Management,dc=bitwarden,dc=com", - "cn=Foster Swinson,ou=Administrative,dc=bitwarden,dc=com", - "cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden,dc=com", - "cn=Fwpreg Liem,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden,dc=com", - "cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Yevette Egan,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Clarice Seymour,ou=Management,dc=bitwarden,dc=com", - "cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden,dc=com", - "cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden,dc=com", - "cn=Miles Khorami,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden,dc=com", - "cn=Joon Panton,ou=Administrative,dc=bitwarden,dc=com", - "cn=Olympe Calmejane,ou=Management,dc=bitwarden,dc=com", - "cn=Felicdad Thornber,ou=Peons,dc=bitwarden,dc=com", - "cn=Pradeep Recktenwald,ou=Management,dc=bitwarden,dc=com", - "cn=Vanya Sherrill,ou=Administrative,dc=bitwarden,dc=com", - "cn=Kittie Bangia,ou=Peons,dc=bitwarden,dc=com", - "cn=Freek Xayaraj,ou=Product Development,dc=bitwarden,dc=com", - "cn=Emelina Dotsey,ou=Payroll,dc=bitwarden,dc=com", - "cn=Jacob Scss,ou=Management,dc=bitwarden,dc=com", - "cn=Nicholas Palasek,ou=Product Development,dc=bitwarden,dc=com", - "cn=Business Worsley,ou=Management,dc=bitwarden,dc=com", - "cn=Dita Billard,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Coleman Holman,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Elberta Shnider,ou=Management,dc=bitwarden,dc=com", - "cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden,dc=com", - "cn=Mirabel Queries,ou=Administrative,dc=bitwarden,dc=com", - "cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden,dc=com", - "cn=Arts Marttinen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Velma Goldberg,ou=Product Development,dc=bitwarden,dc=com", - "cn=Anet Sanity,ou=Peons,dc=bitwarden,dc=com", - "cn=Pars Events,ou=Administrative,dc=bitwarden,dc=com", - "cn=Wilow Veloz,ou=Payroll,dc=bitwarden,dc=com", - "cn=Grayce Dunnion,ou=Management,dc=bitwarden,dc=com", - "cn=Starlin Schrader,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Desire Nagle,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Shaylah Haertel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Tomi LaFargue,ou=Management,dc=bitwarden,dc=com", - "cn=Willard Kammerer,ou=Peons,dc=bitwarden,dc=com", - "cn=Tyronda Wippel,ou=Administrative,dc=bitwarden,dc=com", - "cn=Carmina Fulmer,ou=Management,dc=bitwarden,dc=com", - "cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden,dc=com", - "cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden,dc=com", - "cn=Sukey Sato,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden,dc=com", - "cn=Lawrence Perrella,ou=Peons,dc=bitwarden,dc=com", - "cn=Nathan Trumble,ou=Product Development,dc=bitwarden,dc=com", - "cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Noslab Gribbons,ou=Product Development,dc=bitwarden,dc=com", - "cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden,dc=com", - "cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden,dc=com", - "cn=Alayne Jurman,ou=Peons,dc=bitwarden,dc=com", - "cn=Ashlee Lamey,ou=Peons,dc=bitwarden,dc=com", - "cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden,dc=com", - "cn=Miquela Gilles,ou=Peons,dc=bitwarden,dc=com", - "cn=Arlana Ghani,ou=Management,dc=bitwarden,dc=com", - "cn=Avinash Rospars,ou=Product Development,dc=bitwarden,dc=com", - "cn=Raman Reporting,ou=Management,dc=bitwarden,dc=com", - "cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Vince Dallal,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Leanne Gorfine,ou=Product Development,dc=bitwarden,dc=com", - "cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Corinna Bashyam,ou=Payroll,dc=bitwarden,dc=com", - "cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden,dc=com", - "cn=Etta Medlin,ou=Payroll,dc=bitwarden,dc=com", - "cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden,dc=com", - "cn=Stew Chopowick,ou=Administrative,dc=bitwarden,dc=com", - "cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden,dc=com", - "cn=Josie Clysdale,ou=Administrative,dc=bitwarden,dc=com", - "cn=Moyna Rolph,ou=Payroll,dc=bitwarden,dc=com", - "cn=Roze Wiebe,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Khai Habelrih,ou=Administrative,dc=bitwarden,dc=com", - "cn=How Zisu,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden,dc=com", - "cn=Morena Zeggil,ou=Product Development,dc=bitwarden,dc=com", - "cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden,dc=com", - "cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden,dc=com", - "cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden,dc=com", - "cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden,dc=com", - "cn=Mathew Jarvie,ou=Peons,dc=bitwarden,dc=com", - "cn=Joelle Eason,ou=Product Development,dc=bitwarden,dc=com", - "cn=Angil Dungan,ou=Management,dc=bitwarden,dc=com", - "cn=Geraldine Landaveri,ou=Peons,dc=bitwarden,dc=com", - "cn=Madeline Congdon,ou=Administrative,dc=bitwarden,dc=com", - "cn=Rod Bedford,ou=Administrative,dc=bitwarden,dc=com", - "cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden,dc=com", - "cn=Eula Steip,ou=Janitorial,dc=bitwarden,dc=com", - "cn=Lennart Murphin,ou=Human Resources,dc=bitwarden,dc=com", - "cn=Emmye Reeves,ou=Peons,dc=bitwarden,dc=com", - "cn=Madel Fiorile,ou=Product Development,dc=bitwarden,dc=com", - "cn=Hiroki Edwards,ou=Product Development,dc=bitwarden,dc=com", - "cn=Douglass Rivest,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Tammi Kramer,ou=Management,dc=bitwarden,dc=com", - "cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden,dc=com", - "cn=Brunhilda Bezdel,ou=Management,dc=bitwarden,dc=com", - ], - users: [], - referenceId: "cn=Red Team,dc=bitwarden,dc=com", - name: "Red Team", - }, -]; - -export const group11k = data.map((g) => GroupEntry.fromJSON(g)); diff --git a/openldap/ldifs/directory-11000.ldif b/openldap/ldifs/directory-11000.ldif deleted file mode 100644 index 7bf44e43d..000000000 --- a/openldap/ldifs/directory-11000.ldif +++ /dev/null @@ -1,340708 +0,0 @@ -version: 1 - -dn: dc=bitwarden,dc=com -dc: bitwarden -objectClass: dcObject -objectClass: organization -o: Bitwarden - -dn: ou=Accounting,dc=bitwarden, dc=com -changetype: add -ou: Accounting -objectClass: top -objectClass: organizationalUnit - -dn: ou=Product Development,dc=bitwarden, dc=com -changetype: add -ou: Product Development -objectClass: top -objectClass: organizationalUnit - -dn: ou=Product Testing,dc=bitwarden, dc=com -changetype: add -ou: Product Testing -objectClass: top -objectClass: organizationalUnit - -dn: ou=Human Resources,dc=bitwarden, dc=com -changetype: add -ou: Human Resources -objectClass: top -objectClass: organizationalUnit - -dn: ou=Payroll,dc=bitwarden, dc=com -changetype: add -ou: Payroll -objectClass: top -objectClass: organizationalUnit - -dn: ou=Janitorial,dc=bitwarden, dc=com -changetype: add -ou: Janitorial -objectClass: top -objectClass: organizationalUnit - -dn: ou=Management,dc=bitwarden, dc=com -changetype: add -ou: Management -objectClass: top -objectClass: organizationalUnit - -dn: ou=Administrative,dc=bitwarden, dc=com -changetype: add -ou: Administrative -objectClass: top -objectClass: organizationalUnit - -dn: ou=Peons,dc=bitwarden, dc=com -changetype: add -ou: Peons -objectClass: top -objectClass: organizationalUnit - -dn: ou=Planning,dc=bitwarden, dc=com -changetype: add -ou: Planning -objectClass: top -objectClass: organizationalUnit - -dn: cn=Blue Team,dc=bitwarden,dc=com -changetype: add -cn: Blue Team -gidnumber: 500 -memberuid: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mimi Mufti,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elianore Snapper,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nedi Siegel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Simulation Beswick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ola Paulhus,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Yen Sharkey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aila Koster,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Helma Bento,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Holst Issa,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nicolina Eu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aila Mawani,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eula Neault,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Grata Tomacic,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Panch Sziladi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Morley Chadha,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kem Bizga,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carmel Vawter,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Corly Tesch,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Laureen Ladet,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Access Banerd,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mina Chee,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fabienne Vempati,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Saman Bosch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Farag Collevecchio,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Randhir Dobransky,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carita Stetner,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Viktoria Relations,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anjanette Codata,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Antonia Killam,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rosene Bonner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Janson Vrbetic,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clyde Beggs,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cal Storey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pearline Towsley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hr Healy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ondrea Schultze,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lita Gille,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joelle Delong,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fabien Klapper,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Christie Andersen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sarena Semler,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Roselin Clinton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alli McCartney,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Helaine Sture,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elane Boggia,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elbert Strauch,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stock Krenn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maurice Wurtz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=YoungJune Grauer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jock Subsara,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Latia Amarsi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Armand Klimas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sibbie DeWiele,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kiam Surreau,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Clarabelle Committe,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Geralene Lan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Madelyn Runnels,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marshal Hawken,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carran Cramer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Allyce Chickorie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Risa Hatten,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cherise Racette,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ava Wetteland,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shaun Fares,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Miss Rogne,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Christal Logan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marga Narron,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emmalee Foods,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carmelina Scully,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shyam Carr,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Katie Jeska,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Penni Sarto,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marge Levere,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Colman Epplett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rama Akhtar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cari Cuany,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bobette Sherlock,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tandi Dao,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yetta Litherland,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rubetta Altman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=LeiSee Plato,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fayette Kos,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ginette Vilis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Behnam Cairns,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Othella McGrath,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Minnnie Hough,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Franz Kosasih,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Zonda Keyes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Iwona Eicher,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=KumMeng Dover,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tianbao Cemensky,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Thad Bertram,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dallas Gulick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marna Kindem,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Denny Worpell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tanitansy Thibon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ettie Sils,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Millard Tromm,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Merlina Benschop,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Liza Gumb,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jamison Hines,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Clem Bongers,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vina McKie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Duc Dinalic,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gena Lawther,ou=Management,dc=bitwarden,dc=com -memberuid: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marin Suprick,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Blake Skerry,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Amir McColman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Minne Danker,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Syl Hughes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jagat Beato,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Masood Tomassi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shamsia Mincey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tove Goodridge,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Elberta Incze,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bobinette Belboul,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lynna Elsing,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ioana Bresee,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Seanna Lasher,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bella Lally,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Romina Koman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Abbye Kurth,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cecil Babb,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dinah Kodsi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Loria Salzillo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Willi Kepekci,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tillie Laniel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Helene Esser,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lina Frederick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sluis Brauer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Prity Ruthart,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Arlinda Weddell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Coila Daniells,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Digby Abrams,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kalie Hine,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pierette Rodriques,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marleen Potts,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lela Kita,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Angie Kou,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mab Goba,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Roe Sandberg,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Randene Wintour,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Avie Lannan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Wiele Levert,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Amata Boles,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lpo Firment,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Katey Carkner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vito Mereu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lysy Halicki,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Morgan Christian,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shona Ernst,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Melynda Traynor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Frances Yvon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Garland Kenney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Reed Bassignana,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Robbie Kara,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lorri Abe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lethia Godse,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Royce OColmain,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leigha Contine,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Raina Morgan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Laury Madras,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=YuHung Marting,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Garry Brashear,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Klara Npi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Edita VanRijswijk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jeana Horwood,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lianna Horton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Felicia Audette,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jayesh Purson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zora Weldon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Detlef Morglan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Berthe Peter,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alyce Tangren,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Octavio Mathur,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Danica Rubinstein,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Karna Netto,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wallie Newhook,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cavin Circe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Notley Salinas,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marrilee Montague,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Neely Godo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karil Mielke,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ursula Potter,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Charil Garbish,ou=Management,dc=bitwarden,dc=com -memberuid: cn=William Groleau,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=LouisRene Albers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tomasina Willett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vivyanne Mulder,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Emelia Esry,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Saraann Lui,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Talia Mattson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yevette Lazzara,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kirby Hagley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marit Montelli,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carolan Bott,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anet Gehring,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kaela Binner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Libor Schanne,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sheela Adam,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jey Shackley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Linda Juhan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Donica Banens,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marianna Fagan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Otha Mousseau,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cathe Bolli,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Odele Docherty,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marshal Mayo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Corinna Davy,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Melford Sehgal,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Juditha Moree,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden,dc=com -objectclass: posixGroup -objectclass: top - -dn: cn=Red Team,dc=bitwarden,dc=com -changetype: add -cn: Red Team -gidnumber: 600 -memberuid: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gerardjan Toulson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alisa Centre,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Air Falkner,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Burton Backshall,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Frinel Beeston,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hpone Paryag,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sieber Sallee,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Caria Iribarren,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Odelle Translations,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carri Putman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Verene Rigstad,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Corette Barbour,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Becka McConkey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shamshad Kuntova,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Barbey Hews,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Olympie Sails,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bessie Kurian,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bette Pipit,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Benne Baab,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ediva Hately,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Faizal Vezina,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Champathon Bhatti,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Habib Barreyre,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nerita Jansen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rey Bayly,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vivian Faruque,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Steve Iyengar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Martina Fuson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maude Wippel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cherye Tanner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nadya Security,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Murray Longo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Catherin Witzman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Judi Nahata,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rudie Unxlb,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Noni Garwood,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Melanie Sager,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Breena Psklib,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jeni Gros,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yoda Mejury,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roana Jurman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Genia Oestreich,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bianka Zeiger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Saman Dunik,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pierre Latin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nariko Hobgood,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Isin Scheck,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dany Barel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dusan Bcs,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shekhar Howat,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shara Tims,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dacie Kato,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lenore Spraggins,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Prafula Diffee,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lelah Marcellus,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marion Commons,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gay Golia,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nha Chytil,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Newton Hoddinott,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fleet Nie,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=WeeThong Berube,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Farshid Gard,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Violet Potvin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Indy Calder,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gwenette Feild,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Henryetta Raing,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Petronia Bermel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Remi Giuliani,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Faizal Moussette,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Connie Barentsen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Verla Trottier,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vincente Isip,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pal Burchby,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ibbie Gung,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ned Pownall,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mayumi Presgrove,ou=Management,dc=bitwarden,dc=com -memberuid: cn=MunHang Altay,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Savina Wefers,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Caralie Ferner,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Julio Marineau,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Partha Archibald,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Emerson Tait,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Claudette Talbot,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dominica Nttest,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tilak McGruder,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rieni Faley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alice Rist,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nona Diee,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Adelind Loveday,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mariet Hotson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nirmal Loper,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Powell Brar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nir Saisho,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Beth Nolet,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Georgette Manica,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Beitris Linton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Othella Difilippo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Deloris Mattes,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brittni Holliday,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pat Pereira,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Walliw Marling,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Susann Biggers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Niek Sainsbury,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=ChyeLian Codack,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rich Ruigrok,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mason AbiAad,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ranson Darden,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Raju Ciochon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sammy Sourour,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lotti Farnum,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fouad Caton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Terry Lodeserto,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fei Bebee,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Oral Hamid,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ginnie Vosu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Roze Bakkum,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Belvia Aylwin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Duong Bannard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kees Rashid,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cami Glew,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tien Giuliani,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Evie Morin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dorena Godina,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Arn Ricketts,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Karissa AuYang,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Froukje Kennedy,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hazel Nash,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shobana Eisler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joete Stamps,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Oneida Curnow,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Naohiko McCray,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lang DeBoer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Selime Yuengling,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=ShingCheong Eastus,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Said Fran,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Olga Rehbein,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Quinta Blezard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Felisha Linke,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elisabet Somppi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Arda Poluchowska,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Valry Agnihotri,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gerri Rosko,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Farouk Korf,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Valida Ribi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maynie Levert,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Floria DAoust,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Den Ormesher,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pars Fleury,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Roshelle Latif,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Micah Eva,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Magdalen Howe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gloriane Knitl,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Issy Paget,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Justinn Mazey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nan Wellard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bryana Sathe,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pavla Keiser,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Myriam Blezard,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shobana Berna,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ginni Felske,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=HingFai Shearer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alissa Junkin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bryon Valko,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Matt Casey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lizette Klappholz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maryl Petrick,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Thalia Felske,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dino Kurauchi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Heida Kyoung,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fleurette Neyman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Susanne Keates,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alyce Gravely,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Paulo Whidden,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lee Abbott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mustapha Tull,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tsing Oakley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ozlem Nys,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Canute Fran,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Erina RTP,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Efdal Maund,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hiren Bopp,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Neala Seeds,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Torie Seamster,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Benoit Heilsnis,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Harish Shukor,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Felice Hazenboom,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lorna Kreimer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rheal Lauten,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leigha Elwood,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Basia Smyth,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mario Cassidy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amy Rafol,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lennart Shultz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sherwood Caton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tesa Suprick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maryl Fleugel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Clarine Hauge,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cordy Ghossein,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Judith Fuqua,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Billie Shoulars,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Trever Shearer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jacquie Desilets,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ramiz Gung,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cassey Papp,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rani Korpela,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Danni Tsuji,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fredia Handschy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Verna Muldoon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bjorn Treen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Garth Callery,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Livvie VanOorschot,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Anderson Hockaday,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kaia Archer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bethany Buder,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Willie Godse,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gaye Tjia,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Valencia Claise,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Loria Buckley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Junk Nishith,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bennett Biage,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Klazien Propes,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kenneth DAnjou,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Parviz Shahen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rueben Dynie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gunars Rafflin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Thad Besnier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Leonard Ireland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jany Lotz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nitin Operators,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hennrietta Siewert,ou=Management,dc=bitwarden,dc=com -memberuid: cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Othelia Solodko,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Thang Bushnell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carri Gary,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Valli Carlebach,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bobb Lacosse,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Abby Presutti,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Geraldine McLennan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Glenda Lai,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lind Zeiger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Susanne Alink,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Al Wrigley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Laurie Bijons,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Begum Minyard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hotline Au,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cornelle Coupal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Turkey Moser,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Warwick Mau,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Wynne Clow,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shelly Keller,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ole Carbajal,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Richardson Luxford,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Breanne Tassy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Austina Acree,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gen Rushton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lebbie Lortie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Geoff Achcar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hollie Amir,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Timm Alvarez,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Huan Adornato,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Reynold Meletios,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Britney Farrell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marne Tougas,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dyanna Goff,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Laverne NetTeam,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Genny Bladon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sask Griswold,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rae Beckham,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=ChoKuen Layton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Merlina Gofron,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jany Kamal,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Freddie Rolfes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nickie Acree,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Davina Amu,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Akin Capelle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Focus Decourcy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Moel Wynes,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bertrand Schiegl,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Coursey Stansfield,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tavis Theodore,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bello Madani,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sameh Kyoung,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Liem Isley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bailey Trickett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Martha Hovey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=ChinFui Iezzi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cortney Tolar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Walter Napke,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jenson Yabe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hanh Preo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Opto Decasper,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Regan Novak,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Orella Viriato,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ruthy Maher,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Roxanne Mohammad,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Guner Kelso,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Drusy Masapati,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Saibal Swartz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Magdi Sulewski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Katharine Byers,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chicky Sils,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kassie Dack,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Munir Gonsalves,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Grietje Ansorger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Latisha Dallago,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Luther Attard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elisa Bernier,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cally Rios,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Flossie Ordway,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jin Schavo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Birgit Reznick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sylvia Manica,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Adelind Vance,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Odella Anthonissen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=America Turney,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rudie Vaughn,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Idris Hotlist,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Petri Soreanu,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Inge Hurteau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tats McDermott,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lianne Wanda,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marinna Drane,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shelly Cavan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bryce Luetchford,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mariana Munden,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Morris Pafilis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shirl Clipperton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leona Buchko,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tybi Welsford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Baris Derome,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Munir Dickford,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ailsun Yvon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jeffery Becquart,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cindelyn Capozzi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Regan Hesse,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aida Blackwell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Justine Aguirre,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maurene Zafarullah,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Karita Donovan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gwen Prog,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cecile Evans,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ringo Campara,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Quinn Malizia,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Virgie Slaby,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kamil Daniells,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bevvy Dalloste,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Perri Gaylor,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Klink Bruneau,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Siamack Dace,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jay Ginest,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wilona Caudle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Laz Plante,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ellene Holberry,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Niel McComb,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Chen Crosson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lonna Leong,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Drusie Prewitt,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jen Assenza,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lynnet Henshaw,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wanids Pepper,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tamara Ahlers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mariesara CamelToueg,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Doe Yowell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Deedee Mattes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Luis Sinnett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Evette Bouffard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Armin Bakkum,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Grady Gregorski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ede Riggins,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vi Biamonte,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shauna Moizer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maryanna Rao,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kore Hedrick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marris Legrove,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Olusola Hudson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cordula Lewandowski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Olwen Salyer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kristine Guignon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Daphna Leong,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Larysa Singer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sharity Fusca,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pit Cotuna,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leeann Staring,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Indiana Bodford,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hermia Besse,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Keri Struble,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rolande Kiger,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cyndy Auton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Blaise Bookings,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Door Rigdon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Allianora Toperzer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Phaedra Criswell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Peter Dodson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rhea Brewer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Junette Bayno,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jonis Innes,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Femke Roddick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nanine Psutka,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stergios Koonce,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Moyra Boulay,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Door McKerrow,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Paolina McCaughey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Greer Metzger,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marlena Boyachek,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=LyKhanh Hollbach,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rosana Wendling,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eve StVil,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=GuoQiang Hagen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Clarette Stokes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mo Barsch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Janos Running,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hanco Epstein,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Daisie Solman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nachum Biard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Essy Goyal,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Armelle Schwane,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Brietta Plato,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nolana Hedman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zenia Hilwa,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Souphalack Delong,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Robbie Dibler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Biddie Tedrick,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gracia Peluso,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sanja Maxey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Petronella Tullius,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Henrie Lorint,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Donnette Kruger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Delle Schwantes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Print Gaitan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Patsy Mattiussi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Phil Afkham,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sheldon Blatt,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hector Manus,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pollyanna Goza,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Koren Penner,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Iteke Wiedman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Darrelle StJohn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kazuhito Schram,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shirene Eaves,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Desiree Southon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lianna Lackie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Misti Sayed,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dione McCain,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Deny Stasiak,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ladell Butvich,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Loralyn Eller,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jan Crosson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Subra Tuttle,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Teruko Fleischer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Quintina Ying,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nerti StJames,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=RongChin Guatto,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mercer Zattiero,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Budi Enos,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tuoi Abdou,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nath Labarge,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sophi McCullogh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jorry Babineau,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Adey Fogelson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bela Fouillard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Paola Barbeau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Milo Hasen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Corabella Scarffe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Parkinson Bir,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Salis Quilty,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Stormi Vempati,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lauretta Salvin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sarine Quane,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rocio Brauer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Margaretta Muchow,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dona Nairn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carolien Skiba,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cathee Bress,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mandy Settels,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Odetta Tzuang,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Arne Matney,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dvm LaPlante,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Edeline ORourke,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jiri Sengoba,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Terence Ashdown,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Donni Keilholz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Minhwi Vallet,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Allianora Wissler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Francisco Elam,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Katie Labrie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kazuhiko Drewes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Meade Esmaili,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gwennie Sojkowski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Winona Paine,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chiquita Ferrell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Burgess Platthy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Harlene Kortje,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Suhas Ilic,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kamil Caines,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=HorLam Momon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Farah Brennand,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wilfred Issa,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zino Larson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rhiamon Devault,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Michiko Sich,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Weber Ishii,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Beppie Kilburn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Durali Abelow,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eleen Pappu,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Betty Elzer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sallyann Environment,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ans Pozzi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Blithe Sherow,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jacklin Alles,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pauly Wycoff,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jackson Narron,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hermia Probs,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Scovill McPhail,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dian Zalite,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Puran Dundin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Migdalia Warner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mechelle Kirn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jaan Hartin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anne JantzLee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cherey Desantis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Celie Aksel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aleta Khosla,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lennart Cramm,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elex Sohal,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marianna Annas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sergei MacElwee,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jay Dutil,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bevvy Routhier,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kacie Sconzo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annadiane Davids,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Karan ETAS,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Betti Savoie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Croix Dunn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Raymond McCaw,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Laurna Ferner,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cathe Boyer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hanco Elgin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Krier Brickman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aime IBNTAS,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Theodore Pierson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Monling Wormald,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Amandy Poma,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carri Loper,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cherri Bramlett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tai Nerem,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Luciano Homayoon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Clovis Kaji,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Constancy Sugihara,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Micki Pownall,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Norma Rabipour,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mietek Nadon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sophie Malhotra,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Prue Zollman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shaughan Lockard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marga Hao,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elset Yach,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jaynie Moniter,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Penelopa Kenik,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nam Mersch,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Valida US,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jillian Pde,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Everette Klaassen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Selime Helstab,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Norean Wilford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bebe Spurway,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alka Kowal,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Michele Biggers,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Connie Stotz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Layne Efstration,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ankie Commazzi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cubicle Qu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wassim Charette,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kas Audet,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Emalee Lockett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Janell Kurniawan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Georganne Munikoti,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Neala Casalou,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hai Grubbs,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alyssa Strackholder,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jossine Hoddinott,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Phyllis Majd,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nevil Rosch,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lyndon Rao,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Karina Kempffer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Khalil Popovich,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Thomasa Dann,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rocke Tedrick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Subra Howie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dasi Rabon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ivor Shennan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tosca Linfield,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shandee Vosup,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Janith Gursin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rora Kingrey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rhett Vavroch,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Allene Izzotti,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ag Charlino,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Archie Kenyon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Malissia Albright,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mccauley Guillet,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maudie Overcash,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yolanthe Svo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ashley Koskinen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Babb Mayne,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Godfrey Wiltz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Arlana Crowell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Arina Kempffer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kip Grimshaw,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Addons Wurtz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Farzin Nebel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shell Hurst,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Khosro Kuo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Michel Kernahan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Melba Besnier,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ailee Schwenk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Klink Aguilar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Arnis Daly,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ofilia Keilty,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ans Casperson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Janick McGregor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chuan Bernstein,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Donall HickmanMiott,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Doc Cantlie,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Christer Chapen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Flory Ziegler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Altay Stevenson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mada Curtin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dasha Kivell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Minna Hyatt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tiff Brambley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gerrard Kinos,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Norikatsu Knox,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sabine Litz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Candee Rightmire,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jorge Layton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ed Joe,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Portia Sim,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jian Gardner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ashien Brewton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Opto Seay,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rolande Prattico,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Reggie Boggs,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Zero Dourley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gabie Hirayama,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kalindi Keene,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rod Krenos,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bahadir Borozny,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Prudy Morelli,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Zero Volchegursky,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Riyaz Leone,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jade Njo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Albert Healy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Helsa Eder,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Patt Overby,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dasya Chenard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rosana Hensen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Thekla Helpb,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jacquetta Alary,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nari Dilallo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Betti Tanner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Weilin Tupling,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Roly Odden,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Junie Siegel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karna Nairn,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pascale Innes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Darbie Scalabrini,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elsi Toles,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Steinar Royster,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sono Wissler,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Par Fani,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Matti Beisel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Regine Sergi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Oralia Daymond,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Adey Mein,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bettina Petree,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sisile Larner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Roseann Sheldon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Irc Grona,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Michael Verrenneau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Walley Gostanian,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emogene Assistance,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Florance Berna,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Barry Holcombe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Grietje Gilstorf,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Una Shang,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gina Pilotte,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rolando Yancey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ardeen Porter,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gajendra Dery,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jere Jasmin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Caritta Verma,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Edric Tilk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Janelle Downes,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rebeca Dicaprio,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Everett Pittam,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Erwin Hlady,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shiu Masty,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Terrijo Roth,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Venus Fischetti,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hewlet Noorani,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pansy Ochman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Henny Recabarren,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Humberto Gottschalk,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vernon Planthara,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Clo Upshaw,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Afton Sykes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vesna Kowalski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Prissie Rintala,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Virginia Telfer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ginette Brans,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marsie OConner,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Amandip Habib,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ezella Pesik,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Liv Tabl,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joni McClarren,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leonida Stefanac,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Viviyan Baird,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Robbin Meriwether,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gwennyth Basser,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Binh Aversa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marlee Jawor,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Antonio Risdal,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dieter Dickinson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gilda Shnay,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Agnese Herrington,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rebekkah Meleski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Noelyn Blander,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tamera Rennie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Portia Cruzado,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Robinett Samson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sherman Frodsham,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maury Jansen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tilly Ocampo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pauli Capes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Augusta Subick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jastinder Gysel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jason Loveless,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pamella Trudel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lucina Volfe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sheena Chung,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Andriana Myers,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Henk Goin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Leese DeWiele,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Emp Lenior,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lorine Skaret,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rora Duthie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aubrette Carlson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Delisle Moledina,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chloris Fogle,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hadria Keung,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sarena Sandhar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shina Vilhan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Candace Nadler,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Osiris Rtpbuild,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Patt Lampe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ola Fricks,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jobie Brassem,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Amarjit Shull,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marriet Grau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kellsie Tilmon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Deloria Tulk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Julianna Towsley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Power Surazski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=YueMin Dube,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gerald Hamel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cami Hanley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Silvana Barakat,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maxey Bulman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dzung Newsom,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mats DMSDB,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kevyn Minai,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dhanvinder Biss,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joan Badowski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Libby Sarna,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Madalena Farnham,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Peder Chowhan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bird Bluschke,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kaycee Wiggins,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fwpreg Daymond,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jobi Bryant,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Modesta WAR,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Eveleen Jasti,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Toney Singh,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Amelia Altekar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Audivox Duncan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eliezer Rheault,ou=Management,dc=bitwarden,dc=com -memberuid: cn=KimMinh Lenehan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Viole Kirkland,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bahram Strauch,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jagdev Paulett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Graham Tanner,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Beau Watkins,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Durali Pickens,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jorry Yost,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Laser DeNest,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chanda Leenher,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Luke Catlett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Femke Krikorian,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Evert Traynor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tess Ketchum,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jordanna Cacha,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brietta Dages,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Natver Alleva,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Phan Rimsa,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Thakor Brandon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Samir Guerin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Colene Revis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mike Funderburg,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rozalie Sassine,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jinny Siddell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kai Etemad,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Odette Wagle,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Josephine Leon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gale Leder,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Danny Mau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alma McRann,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Martijn Groth,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Allyson Boroski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Janice Powney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marys Marleau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Colin Langelier,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cornel Delzer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Liane Pappu,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ollie Mir,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tiffy Moyers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Catja Taralp,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jey Musick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kamil Doi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lelia Gougeon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mamie Godfrey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ibby Dragan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Krier Rouer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Neila Donleycott,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vithit Toothman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brear Wiklund,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Joletta Chaaban,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Allan Kpodzo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alvin Fleishman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Amos Nadeau,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Astra McPhail,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Miguelita Lukie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joellen Rummans,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Blythe Bessette,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Felipe Dassie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Renu Dermardiros,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yen Sails,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Claudie Willett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Antonia Kashef,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leta Weeks,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Saraann Ku,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Malgosia Allaman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dorri Brickey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gilles Tullo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stacia Wever,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Herman Georgiou,ou=Management,dc=bitwarden,dc=com -memberuid: cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Clarey Shibata,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elyn Witzmann,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Corry Lasch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ilsa Reeder,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shaib Fysh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Goldarina Delaat,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Con Liskoff,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dannie Belaire,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Syyed Nasato,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Paloma Meijer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anestassia Pilch,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Caroline Weakley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Brad Widener,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nga Holvey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Breanne Hatten,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Babita Yuhn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sanjoy Burbage,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hettie Grassmann,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jacques Lobello,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Susi Vezina,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hynek Bergland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Brenton Zou,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mohamed Popper,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Suzan Brisebois,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Violette Capostagno,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liem Dalloste,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bernita Hui,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mab Bhatia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bamby Ressner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nadir Harold,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Norikazu Loughery,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gerda Cuthill,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Blakeley Moynihan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ronni DMSDB,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Desdemona Howes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Micaela Grelck,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Moria Brandstadt,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Raf VanAlphen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jianli Seniuk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stephani Wheatley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Misty Jamison,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Liduine Brindley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Inam Cripps,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Megumi Sattler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marlies Zalokar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tiphanie Banik,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rosene Couse,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Adoree Sevilla,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Caye Clinton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ernie Waybright,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Doc Hamlett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Abdul Peschke,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cordi Systest,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jania Mong,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kristi Plato,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Simeon Schober,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leyton Artuso,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Di Corritore,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Norbert Meubus,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Allsun Briard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rec Desjardins,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Daveen Portelance,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Christel Lebon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aura Kloth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Laser Totino,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mike Engman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marijo Tranter,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mainoo Fran,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Janos Coulman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lacey Benfield,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Harrie Devenyi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lishe Tatum,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gena Skwarok,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=PierreAndre Crucefix,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ree Smits,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Panch Talbot,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Janean Wittich,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Notley Loyola,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Caitlin Grover,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cissy Paris,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kedah Hedman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Susy Simard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nahum Mofina,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Patti Simcoe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Clarisse McArthur,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dwight Naujoks,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Melodee Buzzell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Schouwen Chahal,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kanya Reuben,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marji Corvo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Annarbor Zitko,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Genovera Thibodeaux,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aleen Gure,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Trever Jowett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Concettina Cegelski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eleen Lew,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Minna Reddington,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Stateson Benning,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emil Pavlic,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kassia Newnam,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Clarke Angeli,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Flor Rabon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Damian Berning,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cristal Lum,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Palme Lystuik,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shina Tremaine,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Muire Cencier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Brinn Weinbender,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Candee Gozen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Julienne Spencer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Benny Kimm,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kyle Pape,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hetti Maciejewski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Peder Bevington,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Royce Kerr,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Madelon Armitage,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sohayla Resnick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Teri Fabry,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Deina Martincello,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aleen Ayre,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roseline Risher,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Reuben Lychak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kelsy Rozier,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Herronald Walta,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Oralee Shiflett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maurice Coe,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Greg Candelario,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Genny Horemans,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Willeke Gagnon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nijen Testa,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Binni Vasile,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Thor Mamoulides,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Merridie Charlinski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sundaram Trocchi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Divine Sebeh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tiff Mader,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Karly Adornato,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Petrina Bovey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Andie Subasinghe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kimiko Florescu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Agnesse Kiger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Trude Hanham,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Greta Timler,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bobbye Ludviksen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Adiana Tohama,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hildagarde Neumann,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sibylla Younger,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jodie Eckstein,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rea Barolet,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rustu Paige,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Davinder Caves,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Celyne Settels,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marina Higham,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Augusto Gawargy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hudai Popp,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Babak Tussey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lionel Childers,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Robena McDevitt,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gael Elias,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Floria Harless,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kandy Chanco,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vanya Pelissier,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Noubar Shute,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eliza Roney,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Els Sridhar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Masood Kemppainen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Karisa Botting,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Francisco Dallaire,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jordana Hersee,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gillan Hufana,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shep Schroeder,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Masahiro Haughey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mariele Puukila,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=An Assenza,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nerta Huitt,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dela Gilliam,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Edric Dolginoff,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Livvy Flores,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Flossi Fumerton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fanni Noah,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tobe Blostein,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Madlen JodoinStJean,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Felipe McBroom,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Stella Hoare,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anthony Pringle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alexina Buschelman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Floris Decelles,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bella Jayamanne,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Erminie Normandin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Niz Colucci,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Muni Strock,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aybars Lavers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Careers DeSalis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anna Meckley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lilith Stejskal,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Prudy Australia,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Stevena Alberse,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Janson Finak,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Trudy Hillring,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Albert Rolfes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Coletta Azad,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Celestyna DeVries,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Darda Mitrani,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Burton Falquero,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lishe Suess,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Adora Droste,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Paper Blakeslee,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Teena Klavkalns,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=ChiKwan Lakhani,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Niz Tassy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marg Cavanagh,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Anthony Luyten,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mira Hinkel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Florette Amos,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Clara Maglione,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kizzie Leang,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Celestia Tobias,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jet McGregor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kristien Brokaw,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Karole Su,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Laureen Shrieves,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dalila Hassold,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Miro Trent,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ashley Woessner,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Orelia Nasir,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yoshiaki Blann,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jolie Dropin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mami Badjari,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nash Enstone,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Binny Strannemar,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dorri Auker,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Beverie Wada,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vivian Skaftason,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fayth Marr,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rowan Reichow,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Clementia Pesik,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sofie Baugnon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Astrid Montoya,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Grover Dehoff,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nerty Nair,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rene McKearney,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pat Libadmin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kanu Slozil,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cecile Shupe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fahim Kandra,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gerald Laroche,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Devon Pesold,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Daile Burger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tricord Gumb,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shena Atteridge,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Silvester Piette,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Amnon Gause,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clemente Eva,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Donnajean Carron,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ailene Chavez,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Annet Leshowitz,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Willy Jimenez,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Teddi Arai,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tammy McBeth,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Waverly Cadshare,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=JeanLouis Okura,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tonia Khosla,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Binni Rasmussen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Herb Stansbury,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ralina Fouke,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Merridie Vankooten,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Millie Doda,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Alexia Layton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lottie Filpus,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tommie Craib,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Narrima Cavnar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Walt Gentes,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gay Acelvari,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Raeann Laws,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=YuKai Goodrow,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tad Caceres,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dorreen Dewit,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Francisca Griswold,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Motaz Metz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lorry Suprick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cassey Precoda,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kevina Zauhar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Diandra Pafilis,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shaylah Poyner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Agenia Joshi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Imre Farag,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alina Naphan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Twila Billard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ari Windom,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Opaline Gomes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Svend Bongers,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Suzette Burkey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Klazina Grabowski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jester Alink,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Andre Hatzenbichler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Raudres Negandhi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marj Posta,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=WaiMan Stillwell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Audi Adamski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Earl Stanton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Reggie Venturini,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jannelle Berro,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marya Buford,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kally Tinney,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Verile Maksoud,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shaun Sandhu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Michal Andrew,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Valerie Efthim,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sadella Loggins,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=HackHoo Hunter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Meter Hickerson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MaryKay Lan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Giana Pierson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shiela Anthonissen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Toby Winterberg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Leticia Metheny,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Raven Tuan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leddy Kochis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Niek Tripp,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Curtis Caglayan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eladio Nadler,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kameko Ayres,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Florinda Templeton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Omayma Halula,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shellie Blethen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Corliss Pharris,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mareah Gooderham,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Olwen Yelvington,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maiga Buder,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Madlen Booking,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darell Liang,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Neena Mayes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hannie Robieux,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Regine Iantaffi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gladi Steffes,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kalli Chanonat,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bob Gronwall,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Faunie Moroz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Avrit Abrahim,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bernard Placido,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Flory Ganadry,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Berti Steski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Charline Fross,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bonnar Burns,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kate Scorziello,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Olenka Tota,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ceil Foubert,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Devinne Zanga,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Letti Boocock,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Charin Fallah,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Clea Astorino,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cassandry Hilton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karlene Homan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anjanette McCaffity,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Micky Brodowski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Neetu Miles,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rhodia Irick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Phat Mecteau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tzung Winfield,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Amandie Britman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Brittani Guitard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hubert Majors,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=KinYee Amini,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Riva Malott,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gizela Fenez,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Thompson Santos,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Student Anker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carlita Flores,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Domenick Thomey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lanie Wayler,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roxi Leonida,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Isin Paczynski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Condell MacPhail,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Swd Braganza,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Herbie Bilton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tas Hagerty,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cristin Pambianchi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Deann Lutz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Datha Apter,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aretha Kursell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Norry Trpisovsky,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ladell Doig,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mer Hasan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Therine Solman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Garnet Gooch,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Colli Magee,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sammy Topol,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chelsae Cacha,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Melvin Stanton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Annabella Fisher,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pelly Difilippo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Virginia Clites,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lionel Kahil,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Beatrix Weger,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Roxanne Klimon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ernestine Campara,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gaal Jcst,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nancy Cesario,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rosita Carella,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Keven Cordy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wan Savard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jen Kamoun,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zitella Paylor,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Logan Blaylock,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Merunix Walkley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kaja Runkel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leia Samuel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Catha Matsunaga,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Luc Harless,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Katja Firtos,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mechelle Khawar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Channa Abernethy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Benita Lathrop,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zelda Naem,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bettina Kudas,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bettye Stern,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Janice Mattes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Indiana Cobo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lan Galbraith,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joey Godcharles,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anastasia Sunstrum,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dyan Reller,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yih DeCecco,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Leese Paul,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nani Dedas,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sari Rettie,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Etty Lowther,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Toss Basa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Naohiko Fradette,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mathew Rodkey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sherry Maness,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Delphinia Brehm,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Roselin Payn,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Arline Fryer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Piper Lesperance,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mindy Herring,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vonnie Bullard,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lotti Gutcher,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sheldon Overton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Celestine Zargham,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marv Regier,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Teddi Behler,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pascale Lawrie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Class Focht,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Leonida Raha,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ree Goodier,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Raj Mahlig,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ruchel Jobs,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Fanchette Wittich,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lorie Boucher,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MingChang Presner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dierdre Rehel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ulrica Benda,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Brechtje Revah,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Howden Hoxie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marjory Hardin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kac Geuder,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Conchita Borek,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carter Billard,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alison Culberson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dev Lynham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lucie Longhenry,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Somsak Breault,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Regina Astor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Idalia Krauel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lolly Mattson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Corinna Jesshope,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Guinevere Bower,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Frederic Kemish,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Barb Mandel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rochell Muise,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Thea Atteridge,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Theressa Marks,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Agna Ntelpac,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Peder Grewal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Melony Nahas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ileana Ude,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fscocos Azari,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Charmaine Rahmany,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ayn Odum,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Norm Berrisford,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Elly Nagarur,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lenette Sandness,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Emyle Fuqua,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Elysia McDuffie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lorilee Projects,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Amalee Borg,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=ThanhHung McAdams,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jessa Simmons,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Timothea Culverhouse,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dorice Op,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Estrellita Haney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maddalena Hammermeister,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Alfonso Benyon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alfy McBroom,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fina Hoctor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ardene Cuu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cristie Madani,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Stephane Zorzi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ellen Kruusement,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Arnie Vickers,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tak Kuhlkamp,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Linet Gartshore,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dina Satta,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Candis Bothwell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Daphene Minck,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Adan Duncan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Willa Trisko,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Katalin Totten,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=CostasDinos Labrador,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Andrzej Coulman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sheryl Perrin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Emma Mullaney,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Son Beneda,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Grey Mathis,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Briney McReady,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Erle Gravitt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tresrch Valko,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cherey Braginetz,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Annadiane Kok,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ozay Dulin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Avtar Markle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rodi Pettinger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anett Gach,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Golda Hanington,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marlyne Shein,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Doortje Kennedy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jacenta Pufpaff,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kirit Steede,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Declan McQuaig,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fairy Soyster,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shashi Vitaglian,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Henri Challice,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Moreen CSR,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Geralene Sabri,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Melhem Sherrer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Coors Lavarnway,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Perrine Kursell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alane Lou,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Demet Ince,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bev Lineham,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Corinna Thorson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Daniela Rizk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mentor Endsley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=PeyKee Rusin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wojciech Zorony,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Juliane Lafata,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Buck Willoughby,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Atsushi Bible,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Veen Graibe,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Juli Poe,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Keys Foos,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hanneke Weil,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Narrima Kaplan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nellie Guth,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ermengarde Swact,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carmelo Holley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Virgie Ensign,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vittorio Msg,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ragui Radford,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amalia Giertych,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bert McDougall,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cherida Behlen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Willa Brandsen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nancey Piggott,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bui Potesta,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ivo Dobbs,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brigitta Maskell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nong Polashock,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gisele Forbes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Madonna Sheu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dzung Evans,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hermione Delf,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Koray Deleon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Korie Swinks,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Wynnie Joyce,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Teetwo Jarman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Flss Daquano,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Doc Frederick,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hellmut Harrod,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kelcie Uchida,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Oksana Sitler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vitia Dacre,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carly Cencier,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Loc Sochovka,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tonye Lenox,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Olly Ooi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Margie Herman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Giustina Farrington,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Liviu Fisprod,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alfons Toothman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ronica Espinosa,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jeane Yuhanna,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Paulien Misutka,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Humberto Azevedo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cissy Benning,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gib Gouhara,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ameline Ikotin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Johanne Coloads,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Germaine Sabri,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Justine Gramiak,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Selma Coxe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nga Hoag,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Claudette Towers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wilhelmina Yardy,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Farooq Rosche,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elyssa Schvan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Phoenix Jims,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Melesa Kaypour,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shoji Truelove,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Turus Risto,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Metrics Bartley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Calla Floysvik,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alparslan McAdams,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tej OSullivan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Melly Plourde,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ara Coules,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Heida Barnett,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marylynne Wolski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mellisa Cormier,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Neely Schluter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dorelia Cohrs,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dede Fernald,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Real Piitz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Petunia Croteau,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Haley Tsonos,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hyacinth Hamner,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Clemence Gardiner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Francine Laurich,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Narrima Saucerman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Han Cozyn,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Chuck Dorr,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Andre Ashworth,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Edin Kell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Theresa Rendon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jacenta Byczko,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cass Boehms,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Melba Holvey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cristofaro Beland,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Inam Ouzas,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Quang Austin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kassi Ottosson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Christian Bradlow,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Azar Darnel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Reza Reinboth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Indira Dimitry,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Subhashini Freiwald,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Izzy Metherell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dreddy Willett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Avis Benham,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wilie Eva,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zorine OHearn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Niek Salazar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Prabir Bachynski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Steen Selchow,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tessi Nagai,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sande Lonsdale,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Euphemia Byer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jewell Samson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Haley McMannen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Joyous Bessette,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Emanuel Tupas,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Janeczka Bautista,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alf Meunier,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dena Stevenson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Khalil Verch,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Adela Rios,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roselle Sowry,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Leonida Wenham,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Camille Balog,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lona Tuttle,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ryszard Dack,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Channa Bergeron,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dannie Leth,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Noell McWalters,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ally Viehweg,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elena Leima,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Manny Grau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cornie Hobgood,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kirsti Sridaran,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cynthya Ganness,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Becky Bento,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Murial Richardson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ashok Ugwa,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sarena Devgon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Valeria Bracewell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cristina Ard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Katrinka Harville,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Colette Chern,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=PohSoon Mellor,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Reg Mou,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Flor Fong,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Will Imbemba,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Serene Lindquist,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Joeann Upton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fariba Cowell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annadiane Meijer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cleo Mgmt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ferne Finane,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elisabetta Angell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Me Womack,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Randie Takata,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Birgitte Marshall,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lorita Pilon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ind Brindley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gaal Ugwa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tilda Sharratt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yueping Kardomateas,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bela Plaisance,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carlen Privitera,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Survey Vanta,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bevyn Germano,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Norcal Sabourin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cuong Schwab,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Seang Reichinger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sherryl Appell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rayna Hanford,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hynek Alles,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cal Wilby,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Furrukh Gros,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Barlas Rezzik,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cong Kish,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ping ONeill,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aladin Mikulka,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marj Baldock,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Abby Theocharakis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Linnea Boucouris,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bernd Gaebel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tiina Ackaouy,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Florrie Latin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bliss Salinas,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Binny MacGregor,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Margie Rubin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sarene Videa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Harpal Iskandar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Melloney Mussar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Arnett Typer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dulce Dore,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mandy Auth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nata Lampman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Scpiivo Lauten,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Susannah Ergle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sharona Purohit,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sukey Ameen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dhawal Obenauf,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nuntel Cozart,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Turkey Massone,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maxie Aladangady,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Housseini Sammons,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Saraann Koman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Saudra Griffith,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yongli Craver,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pardip LaVecchia,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Subhash Waid,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Deane Saiyed,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joannah McBryan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kyle Anconetani,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cicily Carlisle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Carole Coats,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Leonelle Halpern,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Clare Deatrick,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marty Maunu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ronni Paynter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Duong Davies,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Greer Behlen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Poldi Volk,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Estelle Specs,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tina Guarino,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pamelina Kovats,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dany deGrace,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden,dc=com -memberuid: cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Grata Hosang,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Eoin Ketchum,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rora Feild,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Chryste Tsenter,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yoda Calleja,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vannie Babalola,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sheryl Diec,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Candice Scribner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Farand Rambow,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darb Jedrysiak,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Valentia Edmison,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Reid Hotline,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nelli Camblin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shaji Heilig,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Angil Shariff,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Linet McRitchie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chen Mayer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anibal Nafezi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Monteene Azmak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bep Ramsayer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Emilee Mereu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Madalena Brodie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Liese Childers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shekar Finnie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ilysa Connor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Milly Taghizadeh,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Guglielma Gomes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Malorie Sei,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Loella Stephenson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rozalie Farr,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jessa Humphrey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Audrie Rembecki,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Miroslav Federico,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Steffi Voelcker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aloysia OKarina,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Betsy Braun,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carling Cupido,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Saman McNichol,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Selma Slotnick,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Felicia Holz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Joke Cottengim,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sonoe Linke,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marce Tracey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Muffin Gadbois,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ros Rajwani,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lynnelle Shane,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kissee Ide,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leesa Trader,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Indy Pullan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Micro Valente,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lea Marineau,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dinh Yadollahi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nj Patchett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Helsa Calis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Drona Panter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Filia Magnusson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bernadette Schmelzel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elva Radcliffe,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Janson Sealy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bethina Horak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Manny Burkhardt,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mehmud Rios,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jinann Wildeman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lisetta Semler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Trenna Fradette,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sashenka Warwick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bassam Cisco,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Yvan Kea,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ijff Monforton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anderson Nunold,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dulcia Burkey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Isidora Wilczewski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Alexine Tarof,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ashok Bagg,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Antoni Friesen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Beate Ribot,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pde Bautista,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marco Cho,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ashly McNitt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ginni Brunelle,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maybelle Hammond,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Georgine Delaney,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Brent Guindi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Annette Madgett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tesa Duda,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Idus Welch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fina Volkmann,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eirena Mahn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pinakin Spooner,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kannan McCabe,ou=Management,dc=bitwarden,dc=com -memberuid: cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Magda Bullard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dzung Datema,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kiele Boggs,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Othelia Humphrey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Willabella Sarto,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maitreya Carriere,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marje Sherwin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dode Schnell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=PuiWah Szopinski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jack Totaro,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hettie Phagan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Margalo Scholey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Delly Newnam,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ernst Dinkel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Charis Armstead,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Purnam Dillabough,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cart Fillmore,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yuen Maybee,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Petr Battershill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Beulah Nowell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Aryn Mills,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Car Gillet,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ronn Gorsky,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roly Dirilten,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Betteann Thaker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Howden Raglin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Madeline Sipple,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zulema Marra,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Amalita Ivancevic,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lazlo McClelland,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Angele Mitrani,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ghislain Kechichian,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Merrily Administrator,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zena Farrell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ovila Lanctot,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Karie Kurash,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kalina Mednick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yannis Behnam,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lionel Carevic,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Olav McNitt,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jobi ONeal,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ellissa Marson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anita Bovee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gavin Buckingham,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Joke Reddick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Johna Revill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marlee Gillespie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Des Theriot,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Daphine Kobeski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Subhashini Bachewich,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Linnell Altekar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aubrette Holz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mollee Etemad,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Renie Spicer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Halley Clason,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mister Stampfl,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hq Skelly,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anthony Markham,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Neilla Shingler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Korrie Stallcup,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Delcina Barcza,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Evette Coddington,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Joelynn Lightfield,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Isaac Cossota,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lyle DorionMagnan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tsing Daya,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Achal Justus,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ilda Meskimen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jaya Ellul,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tessi Hipp,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tatyana Gooch,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ashlan Inamullah,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jandy McCollum,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kattie Thom,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hideo Nelson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Karam Abraham,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Evita Mahin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Doll Hwang,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Atsushi Gros,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lacee Kraus,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tonu Doncaster,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tobye Rupnow,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gilberte Correia,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elva Goza,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nath Gazier,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Serene Tandiono,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Guner Sinnett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carolien Predel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fouad Woodman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Remy Muenstermann,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Erkan Burkert,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Linnea Oliveira,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Steve Nass,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Henrie Malkani,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Almeta Batura,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Laurianne Storey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nady Straub,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sami McQuaig,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Moises Semler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Richard FWPtools,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Danielle Sells,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sylva Hikita,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jeannine McMurray,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Robbin Vanstory,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gertie Dix,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Daloris Pippy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Robinia Chytil,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Randy Haaksman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ginn Rembecki,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Deva Morimoto,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sioux Laney,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Demetri Sepe,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mickey Fiset,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Avie AltingMees,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kanya Ralph,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elisabeth Viens,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Christin Hussain,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Stephannie Oam,ou=Management,dc=bitwarden,dc=com -memberuid: cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kerrie Cholet,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Barnes Todaro,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Paulie Stellitano,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Quon Lamm,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wenxi Reade,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fabienne Hoehling,ou=Management,dc=bitwarden,dc=com -memberuid: cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lanita Delorenzi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Chong Alleva,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Theresita Flanagan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Luc Sutton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Adnan Madani,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jason Quelch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Terrence Rolston,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Douglass Kwee,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Manjit Sankey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Thalia Majid,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anna Gullekson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Steffi Rok,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gerrard Kearns,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Teri Braginetz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nuri Spieker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Flossy Leveille,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Witte Houghton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gateway Szaran,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Othelia Henley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Stacia Sova,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kellen Nickells,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marika Brombal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kally Woodyer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Constancia Liao,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alexander Riley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bobb Hubers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vannie Clenney,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Udaya Kingaby,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dari OHara,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Merralee Firment,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Aurie Alanoly,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nadim Junkin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Erik Chapman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Adora Lamers,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Micah Brabec,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annette Brandsen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Amabelle Lockwood,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rosaline Carldata,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Diana Felczak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Regis Liesemer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joke Mrozinski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marcelle Hine,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Grayce Cicci,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Idris CPM,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ree Budhram,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elda Ranahan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shailendra Kapsa,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Persis Emig,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Laurel Grills,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Saloma Jaques,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sebastian Kammerer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Grayce Roesler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Helene Krowlek,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Charman Nagy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jacqueline Sorathia,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Leanne Devine,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Manon Benham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Meg Lara,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sanae Carpool,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mia Willis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gheorghe Younan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Val Toth,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ishan Puukila,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Davinder Thibert,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mounir Theoret,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Air Baldwin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Arlyne Miao,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Debi Seniuk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pas Maksuta,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Camellia Tencer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=HinWai Menaker,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lenore Inrig,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sibeal Manner,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vo Filpus,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Martine Captives,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Wileen Elgar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Basheer Illidge,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jodine Swartz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Barbette VanHaste,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Envoy Dignam,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ghassan Visser,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bryna Grandy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nonna Calkins,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tchangid Cosner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Happy Armstead,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Siva Trader,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Norton Hlady,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Benita Brivet,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ulrike Ta,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jimmy Ramey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Romano Teacher,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Poppy Ong,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Takako Cambre,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eachelle Etu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Merlina Eimer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Imelda Ornburn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Elex Syal,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vern Rantala,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sarina Handley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Edward Meldrum,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Margaretta Hord,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Calley Hvezda,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rodina Sumi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jessa Harlan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Curt Tadge,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bertrand Spearpoint,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Annabel Cadtools,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hanny Wayler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Devi Cobran,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tian Sydnor,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Remi Ladd,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Miles Bannan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Annnora Burchby,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mariet Finzel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rozalie Kesler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jude Farmer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mervin Grisoni,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sarath Beekman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anna Hepburn,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bethany Passier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Traci DuBerger,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ceciley Kuan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Krishan Stamps,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Colin Gibbins,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Utpala Neault,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chery Dickinson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Elwood Schmitz,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Trang Kang,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marylee Lowrie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Donall Zlatin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dilip Willette,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gen Templeton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Celinda Guttman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dede Lan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Othella Toolset,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Genovera Kusmider,ou=Management,dc=bitwarden,dc=com -memberuid: cn=JoAnn Donohue,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eliezer Laing,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hayley Rundstein,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Daffi Chalker,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Debee Hazelrig,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Warren Niu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Thuong Malkinson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Remi Denver,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Maritsa Keenan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Johnath Linn,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Joan Yousuf,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roscoe LePage,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Powell Tosczak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Charles Chatha,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tina Dadalt,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sosanna Starnes,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gilly Wasylyk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Naser Cooksey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Betta Parn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lon Sourour,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Neetu Kromer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lon Sells,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shivdarsan Garry,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Co Reinhold,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Inez Elks,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=John Senecal,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marit Whatley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sammie Datta,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Clea Laing,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rex Pelletier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gaby Dybenko,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Velma Donahee,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Chawki Targosky,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Clemente Boroski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=JinYun Vea,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dawn Pelland,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Snehal Benne,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Selma Sinasac,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cindee Majid,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Croix Valiveti,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jelene Watkins,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Harriot Macklem,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Torey Kilzer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gilberta Howie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Darrel Doerfel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Phu Lukie,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Katja Teder,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rina Talton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nelleke Haley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shalna Yao,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Karmen Wever,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Udaya Magnuson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tory Racz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Danika Jamaly,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Loc McElligott,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maryanne Herr,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Norrie Vanwychen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Babette Hammond,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dae Malloy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Demi Uyar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Drago Wooley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lira Akhtar,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Blair Costen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Celinka Truong,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Olympe Wyndham,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Emp Slyteris,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Brien Ensign,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nicolas Whetston,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Annalise Combaz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jiri Clary,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Emelia Farag,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cang Calva,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sanjeev Tates,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lindsey Mina,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yueh Gowl,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=America Ballarte,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Student Center,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jillana Cusick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Edmund Caine,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Faith Langenberg,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gussi Zisu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Enrica Scss,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Franklin Mahlig,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hazem Doerksen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sabra Williams,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Des Terrell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jolene Casey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karilynn Dekeyser,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gaal Gach,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Emory Davalo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Leia Boccali,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hollie Redding,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maurita Hewett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Alberta Popel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Warden Norgaard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stephine Este,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Allx Vezeau,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hattie Offers,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Priti Stowe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tilly Lienemann,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Constantina Totaro,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bendite Basser,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Trish Ettridge,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Leola Musca,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Oral Priestley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yonik Yurach,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hudai Weare,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Miguela Brodersen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sohale Suomela,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yonik Murison,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Delora Grund,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mietek Humes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lili Cozzi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mil Badmington,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kittie Chapman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Las Bongers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ramez Beisel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gerladina Miello,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hernan Aversa,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rozanne Botting,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amandy Ganness,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lisabeth Joll,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hillary Pintado,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nadean Fiorile,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sohayla Ip,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ashley Seagle,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Christoph Dwyer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Minnesota Reich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marilyn Godden,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Weiping Choynowska,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Karlen Pelz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mela Speers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=PierreHenri Oates,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ramon Metcalfe,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Domeniga Purohit,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Goldy Locke,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=PakJong Braginetz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hilde Miotla,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ning Spitzer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marylee Eberle,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shalne Monfre,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sammie Wickie,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Teresita Vonderscher,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Derek Boase,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ehi Sova,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Suzette Chaddha,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lennart Delong,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Diann Glast,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tiffanie Beehler,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leny Teague,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Trever Casson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Chester Greene,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Celine Vey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pinder Leonida,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Beryl Lalonde,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cicely Ivers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lorinda Kenworthy,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Demetre Obrecht,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sheryl Nemec,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Freya Reich,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Willyt Kresl,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nenad Kilner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nakina Brittain,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joyous Nunn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hugo Tarsky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Davida Starnes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Heping Id,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nill Ferreira,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Amabel DAngelo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Brad Scarffe,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elfie Florescu,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nayan Caffrey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Deonne Ripa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mehdi Mainville,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jade Yumurtaci,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Fey Bilton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Isoft Manwaring,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Addia RossRoss,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Adoree Debord,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tesa Coordinator,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Crissie Beausejour,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hojjat Nahata,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Julina Sy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kendre Lotochinski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Yih NadeauDostie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Glynnis Neisius,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sono Orsini,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Devon Romberg,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lorne Agily,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Henka Colford,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Niek Bocklage,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gill Castillo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cary Thumm,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rod Eisenach,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Axel McAdams,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amara Lagarde,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gerianne Deluca,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mick Barreyre,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Netta Hartin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Juli Chen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cubical Quintana,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liping Acton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lorry Suprick,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mattie Astorino,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Suzanne Guatto,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Norton Sapena,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tsugio Behlen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pammy Liu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Deeyn Frie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dael Valliere,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ranna Gentes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Khue Trivedi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=YuKai Holloway,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mrugesh Gaskins,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Belle Kilner,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sieber Binnington,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nananne Bahl,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Selia Demers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Karl Deployment,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jolene Eicher,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Merridie Partello,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tae Hughson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bobbye Cech,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Drucy Serour,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elnore Alvaro,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Briney Emery,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dawn Shubaly,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leny Redway,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Augusto Mather,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Biplab Natale,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ninon Coffey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nando Masterplan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Farouk Closson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jacob Andress,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fikre Mau,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zan StPierre,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Michigan Callaghan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vesna Suharly,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maurise Travers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Loella Herve,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Libbi Marting,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Derrick Myatt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chelsey Emond,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Harvey Jugandi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ida Sydor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=MingMing Wagoner,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shena Joudrey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lurline Nickell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Camilla Njo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dannie Levesque,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tarah Melanson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Phan Srinivasan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ibby Sundar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jerald Battiston,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rorie Freno,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Howie Jubenville,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Neely Dudas,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kennon Risto,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jimson McVey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elisabet Deicher,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Amye Barritt,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Corry Ivett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Adan Kelkar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ross Sepko,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Apryle Davy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Carlota Inoue,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leanne Smolin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kailey Bagshaw,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Trever Moffatt,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Weringh Behlen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alain Walser,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kanya Erguven,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Robina Prestrud,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Emmye Nahas,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Flori Suddarth,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mkt Kelso,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Annie Goswick,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rhonda Beeston,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Amrik Bokij,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Merralee Malkani,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kyle Malkani,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Leese Jamaly,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eloise Gurash,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elpida Marples,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Blondie Algood,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Averil Hirsch,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Manijeh Older,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lonee Swinkels,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jun Reith,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Otter Uberig,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hendrik Ruyant,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Colline Monaco,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ilene Didylowski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Norine Krone,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Chander Daudin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Phelia Valois,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carmela Bonner,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brandice Becquart,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gen Guinnane,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Carmelia Lawlor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Riva DIppolito,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Letisha Subsara,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chellappan Caple,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lendon Shigemura,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Alicia Vermette,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marys Pellegrini,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Es Veillette,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Schell Rezzik,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Haig Salyer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sachiko Dragert,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Agatha Potocki,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mark Bethune,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dorey Friedrich,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alexina Hord,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wilson Vosup,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Forrest DCruz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Roger Seelaender,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mal Ellul,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bep Pilkington,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Wylma Meiser,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Huppert Buffett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kass Kelland,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dpnis Stetter,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tash Hibler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Edee Badger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Edel Ellacott,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rosa Baird,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anna Kahtasian,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hiren Plastina,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alese Sumpter,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Simonne Filer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yeung Kaufman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Claire Wada,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Laury Breglec,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maurice Guinnane,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Laraine DuBois,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hettie Johannes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hedvig Risler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Edward Badza,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Femke Trittler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lino Krauel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anders Raddalgoda,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rijn Benschop,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Deva Hoch,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fearless Quattrucci,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pia Singham,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Zdenek Schutte,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Liam Darveau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Yung Deployment,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Raman Feild,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nial Meunier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Evans Laker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vale Wiederhold,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dulce Xavier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Walt Ventura,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Miklos Rhyndress,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cherise Blodgett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jenifer Stansell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fung Ginzburg,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nikolaos Mapile,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Queenie Spolar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Franki Weyand,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Suat Whitford,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Isadora Capelle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Loria Timmerman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bobbi Dupree,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Leshia Gaither,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Calla McIsaac,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roby Kasbia,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Samia Wacker,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Stephen Marketing,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anissa Gottstein,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carlin Boult,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kitt Briden,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ramniklal Buske,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Par Giang,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Daisey Karam,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Levent Khouderchah,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Demetria Projects,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jules Highsmith,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Misbah Kimma,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Morganne Teed,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mozelle Huang,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stacy Boehlke,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Angelica Sarkari,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Michel Akyurekli,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rayna Diep,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ollie Forslund,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Germain Nobes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Daria Farnham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rohit McSorley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Novelia Sossaman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marabel Oster,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marco Hoagland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gerty Hebert,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marcela Dufresne,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Almeda Maloney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Madalyn Bakay,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Allen Papantonis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Leoline Cholette,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Leanna MTL,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Octavio Naugle,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Charangit Brasset,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gena Lovejoy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vivi Dysart,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Giuseppe Laing,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zeb Morrissette,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Corly Wingate,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=UnaMae Del,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Almerinda MTL,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=JeanRoch Della,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cris Viano,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Takis Bulmer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Adah Calistro,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jessalin Stooke,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Zsazsa Ukena,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Raynell Shears,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kem Wares,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tai Galloway,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Parviz Kinsella,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Madelyn Godo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Willow Sorathia,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jonelle Rynders,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Avinash Vieiro,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mikhail Fssup,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kimmi Trent,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Drucie Lindow,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kristine Hogue,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carmon Ghossein,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eunice Bushell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ailene Leander,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Truus Fodell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zulema Clairmont,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Libor Wyble,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Debera Shu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hailee Gould,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Colm Coody,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Orly Rahn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Glornia Hage,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Desiree Morini,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Laina McKibbon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Peach McGlynn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ines Younan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jai Junkie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ping Lombrink,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Georgianne Colwell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bryant Fronsee,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Amata Funderburg,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Camila Nason,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eldon ONeil,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Manda Bins,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joete Thieken,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nurettin Parisen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lester Leonida,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mira Aczel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Takehiko Malizia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Niel Vickers,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Letta Baltodano,ou=Management,dc=bitwarden,dc=com -memberuid: cn=De Moneypenny,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dyke Suh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Barrie Botting,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anantha Uhl,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kettie Lanier,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=LianHong Grills,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Charlean Leo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gilbert Howerton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Loralie Balutis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Harri Wortman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lorine Grund,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lesley Coyne,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nelleke Lind,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bam Raschig,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nicoline Gelo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Brigid Austin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Farooq Farquhar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Brandy Strauss,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jake McGorman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ruchi Furst,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joann Truffer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anton Chao,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cacilie Murnaghan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ilene Magri,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kiele Willis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Blondie MMail,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Yevette Kantor,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Youji Lawson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Neysa Dpu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=KaiWai Barriere,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Latashia Waldie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gordy Durham,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dierdre Isip,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ailis Stumpf,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Puneet Aloi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Del Buckingham,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pardeep Roney,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Valma Myrillas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alvira Dessain,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Melli Ertan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Keri Stroupe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Billi Chiu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Willette Tel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ynes Jezioranski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Teruko Cregan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rick Novisedlak,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Notley Peterson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Joyous ONeal,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Perle Dolan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ioana Hermack,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nikolaos Nickonov,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kirstie Rodger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sheree Siddell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tas Chitnis,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Whitfield Vexler,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Janifer Gundecha,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Diandra Shnay,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Semmler Bamfo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Martina Grazzini,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Minnie Dickie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Susanna Buckman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Johnette Yendall,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aurelie Doray,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dusan Menyhart,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Utilla Brandon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Selma Kwant,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Levent Debord,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tandie Gourley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Indy Hu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fscocos Houston,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Oriana McInnis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maggee Bentley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Inm Venjohn,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Corena Parks,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Irv Dicks,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marwan Marks,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kamal Calleja,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jonelle Menna,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Miran McGinn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wan Janovich,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gerben Dayal,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lorilee Ravi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=McGee Levasseur,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Charmain Spurlin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lainey Grainger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Delly Clegg,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Addie Koolstra,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nga Orsini,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cherye Knighten,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Betteann Sieling,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Salim McIntyre,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karole Heng,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Norio Saifullah,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shannen Jagatic,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vania Gibson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Robyn Blann,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Krier Cruey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Barbette Christie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Feodora Koller,ou=Management,dc=bitwarden,dc=com -memberuid: cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Saudra Ghaemian,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Valentine Newell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Oriana McRae,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kizzee Halley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bette Stellwag,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Henriette Peixoto,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Matt Denmark,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Feng Rowland,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Theresa Naguib,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eden Annibale,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cele Toshach,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Car Naro,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jocelyn Napert,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Arlette Irani,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Basheer Berhane,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Betti Tilley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ashu Drakage,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yetty Likert,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nady Bushnell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Selle Verch,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=YeeNing Sikes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bachittar Seamster,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elmer Gribbon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marlin Schrier,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bobb Bowcock,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hermia Mendez,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Thaddeus Hoehn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bawn Asfazadour,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Franky Foest,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Daphene Scheck,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Milicent Hoeler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Luis Louis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Daveta SiuKwok,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Minni Daymond,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Muriel Barakat,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Thuan Szaran,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mitchell Willette,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mohan Piper,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Carmelle Froud,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Modesta Farr,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Liese Griffiths,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Meghan Carboni,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bryon Kluger,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Petar Khatri,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Paige Poustchi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jessa Dias,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Zorah Purohit,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shoshanna Talevi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Priore Hastings,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tulip Waytowich,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hirooki Skwarok,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Balaji Brogden,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zola Cuddihey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=JeanDenis Intihar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rejean Marc,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aly Mooney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Daniele Mondor,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Charman Feeley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Auto Arwakhi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Paulette Lunn,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kellia Froud,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vittorio Calis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maryam Doan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nathalia Haerle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Krystn OHeocha,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carena Chaplin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eden MacDonald,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jo Snuggs,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hsinshi Sheth,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tata Whisler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Troy Hilton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Binni Siewert,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alyse Wingo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ladan Chilausky,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gwenette Farago,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Narinder Staffeld,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nir Dionne,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=LouisRene Ellens,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Oneida Sallee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Humphrey Redish,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kerry Labarge,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Quyen Aronstam,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=KaiMing Parker,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Laure Norman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fabienne Koprulu,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Prue Dipace,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Randolph Holtze,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Julianna Amin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Iris Berryhill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mahendra Michelussi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Melesa Beagley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Khue Medeiros,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Evangeline Vance,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Czes Corkey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Malena Cronan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maia Lamy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gates Frape,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Berangere Budihardjo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sheryl Hekel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kaycee Wu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Herbie Njo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Devan McCorkell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Crin Landon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wrennie Dinkel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Siana Duffney,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Holst IC,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=SikYin Matney,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Masahiro Lauten,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nash Hesk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pier Kimma,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lenee Gryder,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Loesje Javor,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sallie Lehman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Yvette Yun,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rui Hawi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Costas Pracht,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rec Mazarick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Del Ambler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tessi Denebeim,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pru Digiacomo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annabell Fung,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Alberta Widener,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=PakJong Klebsch,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Detlev Croxford,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Graeme Khatri,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Franky Dattalo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Careers Howes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Susie Gawdan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Milou Lepine,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ransom Steski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=ItsEng Lander,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kevyn Dore,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Merna MacNeill,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ioan Goridkov,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Michelle Miner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mair Harada,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lynnet Lewandowski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Henk Ramanathan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Selinda Settels,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=ItsEng Kozak,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marybelle Ervi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yuji Menna,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Harlene Koa,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Prashant Feltman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Margit Waghray,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Naim Paar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Flying Labossiere,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Barbette Kolski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Joby Paulovics,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Feliza Grabner,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dona VanLoon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jacquie Thorson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Appolonia Roberge,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Blaise Huynh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lashonda Ogburn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Juline Flindall,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lujanka Paylor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Barbee Brox,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Julia Zanetti,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Othilia Rch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gaal Despault,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mary Zalzale,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hilmi Guilbault,ou=Management,dc=bitwarden,dc=com -memberuid: cn=YuenPui Matney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Heidie Schieber,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Denise Tranter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cassy Burge,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rowena Kam,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Theodore Murris,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bang Lischynsky,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Delphine Yuan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Heloise Woodall,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ram Minter,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rosa ElAm,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shirene Id,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pauline Noffke,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Seungchul Irwin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Myrlene Santi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Perry Lovejoy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Viola Gundry,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vlado Dordari,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cindra DeMarco,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Delcine Wyss,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aurora Gibb,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rona Maciel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Moel Goswick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Coord Herrington,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vic Cullen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sabine Misko,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Annmarie Brunet,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Icy Meleski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Apollo Mitalas,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shirleen Costache,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tulip Bannan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mareah Mior,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lorraine Sikri,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karyn Laroche,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Koral Carkner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hyung Harada,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lottie Fernald,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Edyta Samalot,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eoin Morrin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Froukje Viney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sir Rivera,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ky LEcuyer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Buda Lumley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marley Haley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ernestine Newport,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Myrtle Bernier,ou=Management,dc=bitwarden,dc=com -memberuid: cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Karil Chennette,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Liz Burrowes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ivona Koch,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Berta Mou,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pris Freire,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Toyanne Ragde,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Domenick Zingeler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stergios Incze,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hera Haupt,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Robena Scodras,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ibby Feist,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lachu Namiki,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Norry Wolfs,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tahir Frederick,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marlies Mraz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Farooq Gaebel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Janell Rolston,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jere Jubenville,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Noelyn Benham,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maury Ismail,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nixie Cusato,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alastair Slozil,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Georgena Behrens,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Prayson McCormack,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sharyl Meerveld,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tech McAllister,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Budi Anglin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Business Marcelissen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=MaryKay Wilcox,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ingeborg Ferraro,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dulcinea Merrils,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chiquia Tanner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dorreen Zrobok,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Floris Bui,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maarten Braum,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shane Levert,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hesther Gunderson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Korney Walkley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Enrica Keates,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sir Benda,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Samara Edmunds,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eoin Moomey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shandy Sambi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bili Giuntini,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Stephenie Steiert,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Esmaria Seddigh,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Su Keef,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ignatius Baines,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jenson Arbuckle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jaclin Schreiber,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Steen Realtime,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Edmx Walston,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Abu Corbeil,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annamaria Woll,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Merdia Baer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Henrietta Horwood,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hannis Sooley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Teruko Zork,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gerrit Erwin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kylila Valliani,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Courtenay Meres,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Theodora Henshaw,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Feodora Chohan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Corri Gower,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mimi Malisic,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Farra Threader,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Myrna Felske,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Adiana Claveau,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brigitte Tiseo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Keith Jahromi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elfreda Erkel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jacinta Boult,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mab Sizto,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Howard Scarlett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=CoOp Grondin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Felton Bartz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Norene Molnar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gabey Solomon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Joanne Trefry,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sukey Grimm,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sari Realtime,ou=Management,dc=bitwarden,dc=com -memberuid: cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fanni Hite,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Faiz Brodersen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kazem Snead,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Donia McCormick,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Akin Gillies,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Baldev Chugha,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carla Wichman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sarine Croxford,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Truda LaFargue,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marco Secrest,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bellina Onder,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yumi Britton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Subhashini Tadge,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jacky Cavasin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Katalin Qadri,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Evanne Holesinger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Malethia Elliot,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dhawal Howard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stacee Syed,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kem Birkwood,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Steffen Godo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Merlin McCormack,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Darell Sumi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tybie Hulen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Crysta Aderhold,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ranna Barriere,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ignatius Bankhead,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Carlis McCafferty,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dewey Cozyn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Raphaela Bainton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Paulette Gateau,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Molly IRCMTL,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Danial Simhan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aditya Nordstrom,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jacquenetta Altherr,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joeann DeAnda,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Valentina Andrew,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kemal Kaoud,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roseanna Koiste,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Camino Medlin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lilian Racette,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Clara Partello,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Birdie Pifko,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Salomi Erickson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Opal Lovas,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jai Malizia,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alice Krogh,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ronan Gillard,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=BettyAnn Sakauye,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Adan Fralick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Koren Jalali,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Reza StAmour,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Binh DALE,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kanata Panch,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kanata Runciman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lester Brookhart,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Adelheid Godin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Calypso Hagar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Leann Bawek,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stormy Bayraktar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Margarita Delisle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rao Fontana,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Richard Bachelu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tatsman Musa,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pia Maksoud,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Scovill Sayar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Norry Shen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kayle Ahmad,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Debor Schiltz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sandi Kochanski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hadria Rowley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rosetta Toscano,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chi Winsborrow,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ammar Foldes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Andria Nagy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Earle Calkins,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Irc Loper,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dari Landriault,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lonna Varano,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shan Heynen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carena Pennington,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Luci Sebastien,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gayleen Hagglund,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sybyl Gubbins,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Coursdev Racette,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fayth Biggs,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Neely Elbeze,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jamin Shute,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sabuson Flach,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Laurence Wootton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eric Skrobecki,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tatum Meffe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Reinhard Homonick,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Imojean Sinnott,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Matt Buttrey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tadayuki Seguin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cang Smyth,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Suzie Guillet,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leilah Traulich,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Horst Kaye,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nuri Licerio,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tommi Preville,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fredericka Christopher,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Avivah Shostak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tyne Briard,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Drucy Levere,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gianna Rivera,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Natalya Heller,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dyana Harsch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kazem Guenette,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Allis McCartney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Arlana Shemwell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Francisca Pollinzi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Radomir Neate,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Earnest Wracher,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aurie Hinkle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Durali Raynor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Isoft Parkash,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Phillie Kneese,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lucinda Cuellar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rozele Chahal,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marko Mgmt,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anissa Adcox,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hanh Glanfield,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shailesh Bienek,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gerardo Bedlington,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Erle Kasprzak,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Knut Nilson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Laser Sandiford,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Moon Bulanda,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Weiping Zeller,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lora Luetchford,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mareah Horning,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kapsch Graver,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=HoiKin Denley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Huong Quinlan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vahe Ruffolo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Darina Duguay,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shayna Hollander,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=SikYin Gosset,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sapphire Dassie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Baha Brouillette,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Isabella Horning,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Avtar Nyce,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Horacio McGuire,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Huyen Guatto,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rustu Thill,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fayre Childers,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sabrina Lenir,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gale Goggin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Louis Volker,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Myrah Roussier,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=LLoyd McKeegan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Annadiane Ctas,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leyton Rolls,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gaal Ragan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hermine Stults,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Klarika MacLean,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Reginald Smit,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cassi McMahon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Myranda Javed,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cherye Bukta,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carlynne Roob,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Wai Winters,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lester Koster,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Alev Llaguno,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jud Fairman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Toyanne Fishencord,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Clarinda Vele,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Blondie Moghis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Noraly Mackzum,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Len Grzegorek,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ria NetworkOps,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sunny Forslund,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fanchette Veals,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bobbee Combee,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bennett Attanasio,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zongyi Stults,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rob Goupil,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gwyneth Neander,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lillien Grohovsky,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sianna Machika,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Blakeley Lagace,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Thuong Rains,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Peg Lahaie,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Annissa Bears,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jaffer Grosjean,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Quoc Ennis,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Katalin Alteen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Suzie Caruso,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hanh Marui,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Margette Bolly,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Arvin Mauldin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Stephi Sloan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ariella Kindel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sluis Rasmus,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Onida Kessing,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tasha Good,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Audrie Hadaway,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Natka Herzig,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Naima Simzer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lotte Ichizen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marco Seto,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mollee Ensing,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Roe Schenk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Christian Wales,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Loes Rioux,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rubetta Lui,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lonni Sabadash,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Monica Duensing,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Colm Gratton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Denise Randall,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Haggar Labfive,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Willow Marko,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Paulinus McNabb,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sula Piersol,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Phillip Shearin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marg Villeneuve,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Halette Kirfman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vijya Wrigley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leung Veit,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Celka Sylvain,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Michiko Zanetti,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Derick Sheremeto,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shuji Blander,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Conni Dubee,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Charlot Kling,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ved Missailidis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Valera Rummans,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Neely Bresnan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Trey Zagrodney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cordie Hippert,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zanni Godwin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yannick Cricker,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tayeb Leahy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Paulo Goldner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Casi CHOCS,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nata Booking,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Doretta Turkki,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hq Buske,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roe Levey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Orelia Salinas,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Atlante Standel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leela Rylott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cavin Cobo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Moe Oastler,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lesley ElTorky,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brina Guttman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hiroko Fait,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Annie Eaton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maskell Fung,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Franky Ramachandran,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sherri StJohn,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Laser Kokkat,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kjell Boatwright,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lilly Keane,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Guenther Feith,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ross Whitaker,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tessi Franze,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Norel Aly,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Minetta Mackzum,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Javier Kinsey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Donelle Stites,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sophia Gazo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tosca Julian,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kellyann Stotz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ende Broome,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Krystalle Barnes,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Janaye Woodward,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Margot Morin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Izumi LeGuen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Constance Boynton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Georgia Blazer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Millard Lightfield,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Clio Bugajska,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anitra Metrics,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Manish Strachan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nessy Langton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leonida Moncur,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Uday Australia,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bren Marzella,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vries Bathrick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maryann Felix,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carly Bugajski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Baruk Zinn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Robinett Etten,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Monteene Fraties,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jo Ritter,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Laurent Viehweg,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Devonne Erickson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chantal Di,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sluis Quek,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maxey Cavasso,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Claire Greveling,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Keven Krishnan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dau Banigan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kayla Carlisle,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Juozas Hengl,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ramniklal Traulich,ou=Management,dc=bitwarden,dc=com -memberuid: cn=David Vennos,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shiela Nixon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mona Kohler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elene DOrazio,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elspeth Bussey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mari Abbott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Josine Hwang,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gypsy Weiser,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nir Cornaro,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bettine Centis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sami Phipps,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Valaria Jamshidi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Loleta DuBois,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Suzi Penfield,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mot Harper,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Beata Shyu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carter Munroe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Johnnie Holmes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rollo Rolfes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wendye Queries,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tonie Ausley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bertina Winchester,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Knut Louisseize,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Miguelita Merworth,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vlad Hilder,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Norry Hord,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kurt Bozicevich,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Charles Orsini,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Meriline Tom,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Genga Kahn,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gates Scharf,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Isabelita Weger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dulci Arsenault,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lurleen Mowbray,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kary Bickford,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tsugio Knorp,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sindee Haertel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Reiko Lemay,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Karoline Korey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zonnya Penn,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Christoph Lorance,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vanity Tropea,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cyb Centers,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Muire Bakhach,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eliza Gros,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Brita Jodoin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Renu Paynter,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Honey Karole,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=MaryJane Cusick,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Romina McClain,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Robinett Zeisler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ervin Guindi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vernice Brandon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wil Vasil,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Anader Atp,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cecil Martincich,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Madelin Hysler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Colleen Hotlist,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Clarence Baragar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marvette Mony,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Janette Stasyszyn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Colette Iu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Morissa Weiss,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Olva Smid,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Beulah Kacor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stefa Aksel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sadru Quintana,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Suzan Dourley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Wil Hirose,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Auria Remson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pennie Akai,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Allyce Versteeg,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Norah Saunderson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chery Vieira,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Karita Hoekstra,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Milt Pilipchuk,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pal Hnidek,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Teodora Weidinger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stephen Shearer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Celka Antle,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Binnie Newham,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ursula Duvarci,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ted Clinton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ivie Petrie,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kuswara Heighton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Johanna Virani,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marit Simons,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Joel Hinton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mentor Kimler,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Thuy Kolos,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sergiu Chai,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sande Desjarlais,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Allis Sherard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Miriya Planthara,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=HackHoo Jatar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vonni Mansi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mair Tsui,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Darya Marttinen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kees Arsena,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Darleen Flowers,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Noyes Huenemann,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Buster Myre,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tristano Angus,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Anita Roesler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Monling Goin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dannye Munsey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Agnella Pinalez,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shashank Romberg,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Narinder Vilhan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jeremy Schuster,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Saraann Blakkolb,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aida Brunelle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Merrielle Hine,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Beckie Cowell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maso Mathewson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Arnis Fredette,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maddie Bowick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jolene Datema,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kuswara Musick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Belia Mustafa,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kelcie Rowe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Oguz Crafton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anallese Luszczek,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Raeann Fu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dyanna Hartling,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hamid Peng,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Michaela Minichillo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Romano Moosavi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nannette Pantages,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zaihua Dhuga,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Niki Brock,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lucila Jatar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Reiko StJames,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carmen Poulin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Loree Dorval,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Reinhold Ballinger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mat Smyth,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lesya Maye,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dixie Oshinski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stephanie Crerar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Miguelita Wyss,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lee Kreimer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Violetta Nttest,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chau Gyenes,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melva Kaefer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Celinka Laprade,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Abbey Firat,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Coleen Kovats,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Merla Tsitsior,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marek Harwerth,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bertie Whatley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Message Cohen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chai NTINASH,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karin Schaller,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nicolea StMartin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Heda Bowens,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Conni Westgarth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Joell Bolzon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Christianne Carling,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nessy Grewal,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lex Woodyer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pamela Fon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Loris Winterberg,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Business Huether,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Susanne Repeta,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Willie Murphy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Donella Duncan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=JeanBernard Coord,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tove Mettrey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kathye Terwilligar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Emilda Wylie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anette McBryan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jannelle Burnside,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Swact Evans,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Almeda Bloemker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ronn Peschke,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ainslee Scp,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Claudina Jablonski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Olwen Garey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Empdb Jahromi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ri Stouder,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Darlene Mahonen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mayumi Piitz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jeri Nadeau,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Valentina Diogo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Errol Pieron,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Blanca Murock,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rebeka McKinley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sean Stayton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elex Zaharychuk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Francesca Alguire,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Georgie Bosy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fenelia Costache,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mab Lao,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sayla Varia,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Helyn Roberts,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Emr Zisu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ame Frie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Wonda Chao,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Oralle Checinski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Birendra Britton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rebeka McCall,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Constantine Bulanda,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sibel Kurdas,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pcta Littlewood,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Normand Simpkin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Viole Scates,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Melisent McAfee,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jemima Hennelly,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Halette Hoag,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fayre Patenaude,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rob Allan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Noyes Bergman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Else McCollam,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bellina Koens,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lian Shapcott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Florella Pichocki,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maribel Zafarano,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ren Dickerson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Darla Puglia,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Stacee Mamoulides,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Adrien Bennatt,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stesha Cotten,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ryann McRonald,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joete Pham,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kimmie Dyess,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Crin Seeley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mercie Polson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elvert Tripp,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mead Urquhart,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jan Delorenzi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Johnny Stetter,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marjan Bourk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marjan Angell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Darrol Calder,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Meridian Buder,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ericka Contardo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Saeed Liston,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cinnamon Jurman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Karlie Hord,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ozlem Switching,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Seven Figura,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Birendra Helton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Madan Babcock,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mandi Whitford,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ilse Silwer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tommy Fabry,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Doloritas Renton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Beb Carlson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Audrey Charchanko,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Grantley Walles,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vale Yost,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kalie Krausbar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Martino Busby,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Selma Kletchko,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lineth Montoute,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jolie Langenberg,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carm Mach,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Radio Balog,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zere Zafarullah,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Waly Grabowski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dallas Smelters,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zalee Caron,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Konstanze Cordell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Froukje Ecker,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Petri Uhlig,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tessa Pino,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Britni Routing,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Michelle Mirza,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Starlin Schilling,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Manya Cripps,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Esther Buttrey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tamma Sellwood,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=RongChin Fisher,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Karena Bissegger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zainab Musgrove,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rebekah Fenner,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gabey Florescu,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Padraig Scorziello,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clarisse Venne,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sally Gimon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Siusan Surridge,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dorris MacDonald,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zoltan Copes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annadiane Moulton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chrystal Salkok,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ayaz McFeely,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Missie Dinnin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karlee Cheval,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Constantia Hampshire,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Delle Stansfield,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Percy Fiset,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Thea Goh,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Evanne Twiss,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Opaline Bayno,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Delbert Hodgens,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Antonio Ide,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Berget Feil,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Matty Danielak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Prafula Stasney,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Eyk Bradford,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Della Barbe,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Darelle Waid,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dino Farren,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ruth Chouinard,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tiina Averette,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Meghann Marasco,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Agnella Chona,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Olimpia Stetter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zea Hoadley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kanu Constantinides,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Priti Hummerston,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Siobhan Duffney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=KaiWai Greenberg,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Phyllys Relations,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Onette Erwin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Micheal Threader,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Melitta Teacher,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Francesca Spinks,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kippie Genova,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=My Geuder,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Corene Goldman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bea Shanahan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Adah Simzer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Minnesota Safah,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Perrine Ketkar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jilly Kwok,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sharona Lunde,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lynnette Juskevicius,ou=Management,dc=bitwarden,dc=com -memberuid: cn=PeyKee Gunther,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Howden LaBauve,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dana Linaugh,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gnni Schafer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Callida Tropea,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amara Zisu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Delly Macklem,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Faustina Yedema,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Annamaria Handforth,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Korney Gehm,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Archie Klimon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Angela Holland,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marcellina Clairmont,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kristien Yamamoto,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nayan Simcox,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Celisse Draier,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Matty Vasile,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=WingKi McClain,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shutterbug Ta,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Les Oreilly,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Veen Cawley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stergios Romanowski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shyam Hipson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carley Dal,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Chickie Dyna,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Norstar Bouick,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kapsch Bitton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yoko Feder,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eugine Werick,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marley Newcomb,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zhanna Lyons,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Desire Adam,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Joni Dhir,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Quyen Boyle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fallon Lavigne,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aleda Kato,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cristine Musser,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shantee Tsao,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Phu Krowlek,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Estrella Infocenter,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Steinar Mathur,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jayme Shemwell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Masha McGinn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Astrix Tiller,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Arlan Fadel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Siouxie Norgaard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Phaedra Mavrou,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Thang Kerr,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Helsa Cau,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dyana Tchir,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elga Hrenyk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brooks Helgeland,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Toshi Ircmer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yosuf Diaconu,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nomi Kielstra,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carolyn Sanche,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marj Anker,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Agneta Gundlach,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jeffery Pafilis,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Isoft Buchanan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cassaundra Gerenser,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roberta Rorie,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bliss Fahey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wargnier Deployment,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Orsa Brunsting,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gudrun Yassa,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Damon Bradbury,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Onette Garguilo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Meridel Dahl,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Clem Gallagher,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lanni Totti,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Robertson Soh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pavia Costen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karyn Holz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ikram Thiel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ladan Fabrizio,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leeanne Credille,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Augusto Aguiar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gayl IBNTAS,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Painterson Watkinson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kieran Copley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Othilie Sconzo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Raju Sellars,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carly Kammerer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dian Rhoads,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Utpala Weldon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Thornton McDermott,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Juditha Shirai,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Wini Flynn,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Open Simhan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Adelina Grigsby,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Woon Gillis,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Remi Lillis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dagmar Niles,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Geralene Groleau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Colm Katsouras,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Caroline Darou,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maegan Rafter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Margery Buckalew,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Charleen Willison,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Basia Ouellette,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Latashia Ridgeway,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rhodia SOS,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=WaiHung Kan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ehab Gidaro,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Almeda Barstow,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hernan Newbold,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Elonore Lorenc,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Melva Dingle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Janka Gorfine,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carleen Natiuk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dimitra Prokes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=WaiMan Sinha,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Therese Nikfarjam,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Geer Lamonde,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chelsae Polder,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shuji Pien,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annet Rege,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ellen Vertolli,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zandra Belk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Milan Shu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lubomir Carver,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kieron Remrey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Frayda Urquhart,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kat Torok,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Selina Sauder,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Joshi Wery,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Corilla Carey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Devon Patchcor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Thor Crompton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sallee Demone,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Patsy Hanley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lily Sturdivant,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Howie Howarth,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jo Tropeano,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Howard Acs,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Otakar Carella,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Digby Papajanis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Trixy Grewal,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sami Huguin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kui Mulero,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tyne McHarg,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Constantin Harkness,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Galen Mariani,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dolores Lacosse,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vradmin Aasen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Roseline Revis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eiji Tel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mariesara Reichman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sandi Bush,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Emmalynn Dai,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Josef Godcharles,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gay Ondovcik,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cad fpsched,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Oscar Paris,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chan Blumer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chabert Hawkins,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=VanKing Iskandar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carena Toplis,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nelleke Fredette,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jock Ahdieh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ru Lindt,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Desiri Picard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mewa Melfi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Elio Naylor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vince Adamowicz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annis Emery,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Valma Standen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mauro Meres,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Brianne Takagi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Azra Gravely,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Liza Centeno,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lendon Pinney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Madelina Naolu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Brittan Vela,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marcos Spicer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pierrette Deleon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Darell Groth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kathi Altman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Moel Pieroway,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mildred Fansher,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Georgina Hardersen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rasia Jakim,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rycca Satterfield,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Merissa Jessup,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Divine Zarate,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nitin Wolfe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bijan Badjari,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Margy Chartrand,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Velma Portz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dodie Bandel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Georgianne Bydeley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Barbe Bolduc,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shaylah Demren,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ngai Konarski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Candi Ashley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Darko Ledoux,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Trish Laberge,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Charee Fiegel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eirena McNeese,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Meade Epting,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eliza Marko,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Doll Crutchfield,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sergei Edwards,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Alfons Besson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Delmar Modl,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Peggie Jung,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mot Goodner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shaine Davalo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rod Hingtgen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maddalena Melton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gusta Reavis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ramanand Noy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tom Gowens,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sayed Wilke,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jeralee Kiefer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tatsuya Kayle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Roselin Zahn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shanda deRosenroll,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Meriline Parkin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Minnesota Milway,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Oren Keffer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Blanche Lantto,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Penny Polakowski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Helene Halford,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ladonna Kester,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carling Castillo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cark Redish,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Caresse Appenzeller,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sheree Berman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anabal Hathaway,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Valma Keffer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Johnny Harron,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Channa Brokaw,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Annabella Spaugh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Klink Sprott,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Roe Reinboth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cathrine Mashura,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shigeru Rausch,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ingeberg Eagles,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Arjun Auker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cary Gillot,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kishor Aurelius,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mair Dragert,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nata Manson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Carmody Stough,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vicky Kenol,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lorelle Korf,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Angele Dangubic,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ilene Knio,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Harrison Klodt,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Orel Hassenklover,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sonya Hixson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Simen Pankhurst,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alberta Roddy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shelley Guitard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Benthem Aghili,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nad Sheth,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Katherine AuYeung,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rollie Lohoar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Siamak Tullo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marco Trautman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=James Silgardo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gipsy Letulle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Missagh Breglec,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Debadeep Karass,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Madeline Bir,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Betsey Doi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Indiana Schejbal,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mickie Farhan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cubicle McMann,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Olva Mathewson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kiet Strober,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Meggy Vardy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cyrine Marceau,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Junk Kopala,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shandra Connell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Munaz Reynolds,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lavinia LaBauve,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lilllie Ruthart,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mani Keseris,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lilith LLoyd,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Luann Rodger,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Evania Keehan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vivianna Rassell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rudie Dunlay,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Berti JantzLee,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Aigneis Marghetis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gordon Buhler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Austine ODale,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lab Carstensen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amalita Smith,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Barbe Degen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ros Varkel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Anissa Belley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Khurshid Balsas,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Amata Byers,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tonya Brough,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nancy Stocker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Analiese Hooper,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mikelis Chaves,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liv Ayukawa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Amir Andre,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jacob Mahin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Genvieve Albers,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mallory Xenos,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Christie Shapiro,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jackie Au,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marshall Paine,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roman Materna,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jerald Gutcher,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Berty Bittman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Adara Smyth,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Robenia Prescott,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Berna Mahaffee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Drusilla Riou,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elsie Ryals,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sanae Glaser,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Melisenda Shuster,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jasver Loza,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joseph Beshai,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rebecca Landriault,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kokkhiang Holness,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stormy Berger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Olva Mooder,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tash Ficco,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Paulita Jobs,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kanata Ning,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dalila Shull,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Georgianne Bour,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Venita Brandon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Krishna Kiens,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ashlen Plssup,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hojjat Burchat,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mani Gravitte,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chiu Pilipchuk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shamim Uffner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Trude Graves,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Caressa Balogh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lyn Serre,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clemmy Doda,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kesley Nallengara,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joji Skeoch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gwyn Peerman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mila Lodeserto,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bess Ottowa,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sieber Churchill,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lyndy Sides,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lino Rix,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Charangit Desplanque,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Barry Vajentic,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Waiching Morrin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sattar Kane,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=YukWha Kielstra,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sharon Meletios,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Binni Gaines,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ying Spejewski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Agnesse Nessman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yoda Milne,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marsh McGurn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hilda Baldridge,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Caro Vopalensky,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Buffy Naolu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Royal Parniani,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anthea Eros,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kiele Commazzi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Yvan Diaconu,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kitti Seshadri,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Camala McMillan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eamon Salvin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vito Calcote,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mandie Kneeshaw,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fiann Fouts,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Patt Ferner,ou=Management,dc=bitwarden,dc=com -memberuid: cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Grier Kovarik,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mela MacNeill,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Akram Rajwani,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lendon Valin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ikram Taylor,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gert Grassmann,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Oksana Dorn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Karleen McKinley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Helmut Sigda,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Grover Au,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Barb Ricketts,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carina Akens,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Beilul Scheduling,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kitson Nelon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Daphna Ragde,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Paulina Early,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Abbie Jamshidi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Quynh Lorenc,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kelwin Popadick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fitness Pape,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dion Chiou,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mayasandra Naor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vince Soulliere,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kasey Turney,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zonda Amato,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Eleanore Bertini,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Georgetta Schreiber,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kalai Seatter,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Susie Moffett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Garnet Vieregge,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Majid Liao,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Abdallah Lobello,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Felecia Bnrecad,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Waja Eteminan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lorrel Piercy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pris Bobar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Albertine Karass,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Saskia Koskie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Adda Paddon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Normand Tay,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ardene Hofstede,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Panos Wessell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Carolan Kamerson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stew Doan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tap Moreau,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Peg Alcott,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Henrika Mihm,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Count Watts,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lesly Engman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Txp Calmejane,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Aurore Hubers,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sharad Shearin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jennica Vonck,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chesteen Wyant,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Coraline Kolton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Horacio Oberpriller,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lsi Assistance,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gusta Dadkhah,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Daphene Cho,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Minerva Arvin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lynna Gumb,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Arleen Owen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chelsae Geer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Abraham McDougald,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jessa Piasecki,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hertha Wayler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Haste Isherwood,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tonye Frumerie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lilly Serapin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Phebe Gordon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cary Gronwall,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mer Kearney,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Viqar Campeau,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Annet Chatfield,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lizzie Zaid,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Norcal Schrier,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marlyne Tardiff,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Annabella Vogel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Farzin Depooter,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Denys Paone,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ghassan Payne,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Heida Cripps,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sayed Belaire,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sileas Brungardt,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nicholas Shupe,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Margaret Binda,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MaryAnn Windom,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cammie Lobello,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=HangTong Shek,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Engin Mersinger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rebbecca Perina,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Piero Preece,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pradip Draffin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jacynth Etemad,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Brittany Pokinko,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jeannot Rch,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Wiebren Zaia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karlyn Kell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Noriko Devenny,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Porfirio Epperson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Linnet Streight,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tomi Bridges,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gerardo Walia,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hailee Corace,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Munir Copes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Susan Fowler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Caye Setiawan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Daffy Hering,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=YoungJune Radford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Brana Susanto,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Neile Niles,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joydeep Loos,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sohail Pilon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Melisse Odum,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shay Fouchard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lesly Checkland,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Roelof Balascak,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Miguel Skof,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zdenek Gahan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Merrile Lian,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Engracia Messick,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Caron Sammon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Charlotta McLennan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dexter Follett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Una Ausley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Adria Calow,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alora Bamfo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gunnar Molani,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lenee Marasco,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Byron Shelegey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Charline Jago,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anette Holloway,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Florida Polashock,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Snair Mcshane,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jackson Schraner,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cherianne Tidd,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Melisent Sampat,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tiffy Udall,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Adeline Cruz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tuan Fenati,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jaclyn Hook,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lucky DeBaets,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Toma Belcher,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ayda Ricketson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Edie Fuller,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Adrienne Teacher,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karilynn Sokolowski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Edna Etemad,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Heike Hoxie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Noelyn Snair,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Annis Yung,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Olenka Gulis,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jeanna Brousseau,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nikolaos Farley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sydney Olivares,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lary MacMillanBrown,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Makam Junaid,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Janson Breon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Persis Bourret,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nonah Naylor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Delmar Goold,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Noslab Despres,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leonida Maloney,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Heida Witzmann,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Azhar Klug,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lynnette Mirande,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Esmond Ronald,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ruthie Weyand,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ileane DeWitte,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chocs Lanava,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Abu Hubbard,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Felita Kaps,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Christin Shea,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Haroon Trese,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Norbert Ruest,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Woody Bourlet,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Saied DeCristofaro,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dael Lariviere,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Miro Tabor,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Der Fernando,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vivianne McCrain,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Madelina Todloski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vijai Combaz,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sohayla Neate,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Weldon Robustness,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Freddy Jachym,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Eliezer Assistance,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Orelia Pisani,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shelton Spencer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jonthan Khoury,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tricord Bresee,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Julietta Tillman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Almeria Falke,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aaron Deakin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Soyeh Noy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Genia Mooken,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Norton Chronowic,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Thom Hink,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vanny Swepston,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mabel Bycenko,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kiyoon Chau,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nel Addetia,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Emeline Willmore,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maged Bernardo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Murry Okafo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vita Coursol,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jelene Rivest,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Magda Sims,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Fanni Kelly,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Phyl Komatsu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Blondie Bessette,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zonda Marette,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tavis Bovee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Aurore Danker,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yawar Benjes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jayme Casey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Daisi Encomenderos,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Biplab Caton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Izak Roussin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Montreal Mersch,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sybille Shwed,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gordie Oey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nerte Diederichs,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Annemarie Harrell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ara Darcel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eng Mangum,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kaye Dulude,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dinny Farrell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pru McIntomny,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rosemary Liao,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ketty Torrens,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dinny Meggitt,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ashien Moran,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nerissa Brkich,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ioan Usrouter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bekki Blimkie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bryn Spieker,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vijya Torian,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Teiichi Marconi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Allegra Chaaban,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mair Wefers,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kerri Turbes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Debora Dion,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Erdem Cowen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Thierry Crockett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Karrah Kassam,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Odile Dbs,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lacy Haughwout,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jimson Volfe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dede Billingham,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kissee Gowan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eulalie Webber,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Court Trefry,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Claretta Kilcoin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kassia Daaboul,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Weber Gu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rank Courtney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aaren Neustifter,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Clifford Forgues,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Donnie Laverty,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=How Sebastien,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hung Tabl,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maye Atoui,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Deva Currie,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vivienne Bourk,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gerber Kiernan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Me Muhammed,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ragui Lorenc,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorenza McCormick,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Beatrisa Malaher,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tiffi Beverly,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Analise Shiley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fan Neander,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Diamond Azer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dorothee Azmak,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sydel MacGillivray,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Martelle Filpus,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Merunix Fadlallah,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Faz Seegobin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jeffery Panek,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chip Billard,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tran Selbrede,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Wade Boersma,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Quintana Huneault,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Coors Beerkens,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Prudence Schacham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Evita Cropper,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joletta Senten,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fotini Suyama,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hazel Gesino,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ivie Murison,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mahesh Flach,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Annalee Prikkel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Catja Scholman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Anda Fastpack,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Salis Nehring,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Francis LeBlanc,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Humberto Stensrud,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Manfred Wesolowski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Estele Fiest,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maciej Fucito,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Frinel Veals,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Catha Ghossein,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Basia Trinidad,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vita Leveille,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lidio Toomer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kessel Keveny,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alf Noorani,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kirstyn Hutt,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Blisse Lein,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Edithe Dougall,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sage Randell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carina Hume,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mickie Prystie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nalin Levere,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Allen Iannotti,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maressa Poulin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Danni Hummerston,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rosabel Buley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sayed Virant,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sundaram Lojewski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Laina Ertl,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jeniece Bcs,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tammy Heikkila,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pearle Bruketa,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cherie Brett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hector Gingrich,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Biplab VanHaste,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Roby Larin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shirley Holvey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shari Skaff,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Valida Fleischer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=March Hess,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kamran Shabatura,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Arturo Ensign,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lauryn Wever,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anda Wilhoit,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Samia Cochran,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Michie ToDo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Arvind Gundecha,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Costas Watson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ebba Gutcher,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Peggie Madl,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Norry Benjamin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Loreen Chapen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Loay Clairmont,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jagdev Eaton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vina Smothers,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Minerva Cuper,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lynette Cascarini,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lsi Loughran,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cassandry Emmert,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Minnesota Herzig,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lauren Syrett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dyana Pennell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Camella IRCMARKET,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Doro Cottengim,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nesta Bydeley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yogesh Meckley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ailene Challice,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Viola Hately,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shunro Singer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Chitra McAleer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jay Biage,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Faydra Kandra,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shandee Safah,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gen Marano,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bettina Spinelli,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mureil Vish,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alane Carlisle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sayre Paulett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ambur Fernandez,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carlye Puelma,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Eleonore Edwige,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Yoshi Neustifter,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bernd Ribakovs,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ralph Taylor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Baldev Annab,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Me Cuany,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Neville Doble,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alidia Banens,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hans Fahey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Luce Piper,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maible Adamo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Leny Husarewych,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gerald Bijjani,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maint Olivares,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Arturo Groves,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ho Rolnick,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Erning Lingafelter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alanah Wolff,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Corrianne Hughson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wallis Grubbs,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Eran Sziladi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Joji Cassar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sunil Brisebois,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Otha Dee,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dyane Hungle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marlane Mitchell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Belva Knighten,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shahriar Upchurch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Blaire Hr,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Idalia Batura,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bachittar Reneau,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Inger Oshiro,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sharline Chester,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Glynn Surreau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hatti Griffiths,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gudrun Robson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sati Hallett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lotty Flansburg,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Larina Scanlon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Barney Surridge,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yolanda Wanda,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dasie Tougas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Julee Milton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Selle Oslund,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leelah Docherty,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Clement Srivastava,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marsie Schreiber,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cathryn Bokij,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Melody Fontana,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Saul Fussell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Thomas Gourley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Norstar Trefts,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cathi Keiser,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Apryle Haurie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rozanne Trouborst,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Catlaina Intemann,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anabel Intune,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ninnetta Matney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Regina Lemay,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Janos Davis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dniren Serack,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jaffer Guty,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kalpit Devine,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zitella Sammon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Renate Worrall,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Medria Aribindi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eba Bockaj,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Calley Thaxton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rheal Dadgar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Daphene Bayno,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dilpreet Javor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kambiz Nyce,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Karan Molochko,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Olav Straub,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Berget Hnidek,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shahriar Benschop,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wilkin Boinnard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vital Simcoe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lydie Hooker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Greta Minyard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Adelice Fishman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Devinne Kellum,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Breena Telco,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tianbao Gerlich,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lana Keates,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Veena Richards,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Charin Clocklab,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kollen Fenwick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lucille Orol,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maier Bobar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dori Garwood,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gussi Horak,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marillin Boroski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Noelyn Hinkle,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Erlene Schirmer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Binh Hoagland,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aviva McIsaac,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Noami Cinicolo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yukuo Wolford,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Amalea Kesler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cyril Inglis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ladan Schutz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bob Erbach,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hideki Fobert,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Koral Bilton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Adriane Denike,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ayako McCormick,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Renell Kales,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brennan Wolter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mariya Wesselow,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roe Kathie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rici Sobel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eladio Malek,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Siew Dunajski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rosalie Feild,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Karyl Scarrow,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hoog Fielden,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fredericka Corbett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mabelle Bondurant,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zafar McCarron,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Malia Faletti,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nesta Mawji,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liliana Vaillant,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Den Arora,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rosabel Parkins,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Edyta Moroz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=James Brunato,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Retha Miceli,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emmie Hage,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Open Kozsukan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Crystal Dommety,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lindsey Coxall,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Morgen Theoret,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anallise Golas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Emad Sztein,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marianne Makarenko,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anda Lytle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anneliese Hanser,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Herb Gagnon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Isabella Conroy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brandon Menaker,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mame Sanford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bea Aloi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sylvia Alink,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mora McGovern,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tiphani Lieure,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Consolata Bejar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Winnie Jensenworth,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Takashi Lamirande,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rosamund Serack,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Natalee Keitel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Desiree Conde,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Clyde Kamal,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shana Mulvie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=PeyKee Rios,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Costas Szabo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Su Organization,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Norean Brien,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tiena Clapham,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jade Jims,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ramin McKeen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Steffie Bohn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rachael DuBois,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kore Mayhugh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eleen Moledina,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kaminsky Meany,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pammi Overton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sinh Abbott,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=LouAnn Gaines,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Arabella Shamblin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cammie Erbach,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dayton Baughan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Meggi Rozier,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Romulus Zuk,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marce Tiller,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Patt Brennand,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Claus Depew,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vahe Kerwin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pauletta Crocker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sterling Shostak,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kartik Rogge,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fei Reich,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leyla Etten,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sattar Sergent,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kare Hochberger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lilly Kuykendall,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rachele Fullum,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Madella Forslund,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Janio Fussell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lacy Carr,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Erinna Odden,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bertrand Devgon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ahmet Achille,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Heike Jenner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lynde Staats,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Estele Kolappa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Oriana Hughes,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lucila Rand,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Emile Bellis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=LouisPhilippe Hann,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Franka Frey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jillian Unger,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mathilda Diederichs,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Susanna Vlahos,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aila Henninger,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bettye Guth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Livvie Benwell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melek Nagendra,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lesli Tobias,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Greta Schecter,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nevil Padgett,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bianka Cooke,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marjan Lyman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aurora Bayno,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Housseini Dominguez,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Arnie Ulrich,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Amrik Carlock,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Saundra Crapco,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shashi Ketcheson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maidlab McMillion,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cloe Marquart,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roselle Donald,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Chander Roussy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sunny Rollin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sam Meldrum,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kitson Sture,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Janot Breglec,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gaye Rothwell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Moe Schumann,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sarene Keifer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Janette Npi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Danette Galloway,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorianne Mullett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Isabeau Wippel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cassi McRae,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=WaiLeung Marples,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Joceline Seifried,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bill Coldwell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marlo Belich,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Prams StOnge,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eudora Dunstan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Thor Ritz,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Manhatten Isert,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Farra Garee,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Arun Xpm,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alida Ausley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Trina Okon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kania Harter,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Samantha Gantt,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Akin Houde,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vince Herscovici,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Issy Bachecongi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Seelan Licandro,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hqs Dipper,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sidone Ricks,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Meghan Wai,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Koen MacInnes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Doralin Worthington,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Loris Godfrey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Monroe Halpin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gerianna Arnon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hazem Pien,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cristofaro Dysart,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Margot Muzio,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Makary Wagers,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yudy Sandford,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Baruk Junaid,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Morganne Grimmell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Evaleen Beine,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yumi Mudry,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Salomi Heisler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Trey ETAS,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Co Knighten,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gillie Rheaume,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jamal Scotti,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sharri Lotz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Agnella Loi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Leno Henley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elex Langer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dwain Bielby,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roy Terranova,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vaughn Corlett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gladys Helmy,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bihari Mirek,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lissa Hernandez,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Torre Monahan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maia Arellano,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gina Hattar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dena Trottier,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vmchange Cavan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lorie Brickey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ardie Dix,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maybelle Augustus,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Engracia Materkowski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jacqueline Durant,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Charly Klapper,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elpida Doerr,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bethena Parniani,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Janka Macklem,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Myrtie Mc,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ludovika McKnight,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anil Cotuna,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Merrile Wilson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zahara Ferree,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maryrose Sagan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Legra Binder,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ernaline Tierney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Seven Nicol,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jeannine Forsythe,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tilmon Taheri,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Svr Krishnan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Niki Khurana,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Duong Laux,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vevay Isert,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lonnie Visser,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chungsik Choquette,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kalli Meilleur,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Merline Riggs,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Milka Parkes,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bakel Fisette,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kiley Hester,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eydie Edgar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sherwyn Monn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Danna Hagenbuch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Flossi Davidson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rosy Bergmann,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Larine Broca,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Therine McCurdy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Clarice Travers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dacey Bedard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lissa Barsky,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lino Endrys,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fina WGA,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Munir Colton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marje Dallaire,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Farrah Meehan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tilda Alsop,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leni Janovich,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Katrina Morreale,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hinda Briante,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Helli Frie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Renell Ulrich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Moel Taralp,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Keeley Rok,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Britta Melucci,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=StClair Farren,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vino Papantonis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sandi ENG,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Michaela Blimkie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mort Kestelman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Reinhold Briggs,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Norbert Rider,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eveline Smelters,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elinor Stambouli,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Donnette Kenol,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Margette Keogh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Makam Kumagai,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tallou Vairavan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elana Derrett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hanny Farranto,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lucina Hobesh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jashvant Mellor,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dupuy McNeese,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ying Forbs,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Paper Cowell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vispy Snair,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mona DeCecco,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karolien Beznowski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Frinel Godcharles,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dung Goldstein,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Scarlet Coody,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Julina Stahly,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kippy Roman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Helsa Stahly,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hiroko Whetston,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aviva Harwerth,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alida Ferriera,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vyky ONeal,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Daya Loader,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Katsunori Bouret,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rex Combellack,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tallia Videa,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Remy Lalonde,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tobi Houde,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tommi Luna,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alana Gelo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Seven Salazar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Conway Jenness,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=VanKing Padgett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tansy Aronovich,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fidelity Shelley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tres Parr,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Myrtice Graver,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Junette Weyand,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Daune Gosset,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rolando McNally,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kirstie Trochu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=MaryLou Brock,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Edy Singbeil,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carsten Macklin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Weiping Arnone,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joceline Muir,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Opal Isaac,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dedra Bastien,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kiri Gillon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Geoff Bergstrom,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ngai Dorion,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dayna Bragg,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Madonna Parihar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ari Fergusson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ramonda Tromm,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Foster Cre,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Willette Juhan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Melamie Darcel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Arlena Joe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mufi Higgins,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Viera Paetsch,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roy Wai,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cheslie Lamont,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ash Moomey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Humphrey Culver,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Consolata Daniells,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cark Lowman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carolien Tabl,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jere Nadon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Weber Chouinard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Othilia Redfoot,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Drudy Joffe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Moris Abdullah,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Misbah Mach,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maribel Searles,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lilah Haverkamp,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fanny Baril,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Milou Dada,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Earnest Walters,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rochelle Buford,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rajani Enns,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ofella Nessman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Donella Lethebinh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tzung Camillucci,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Suzanna Furst,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Berri Pracht,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Esko Feist,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dorin McNerney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kataryna Vaters,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nikki Captives,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mureil Fowlkes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Charla Silieff,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gladys Jarvah,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Juan Hummel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cathryn Scheible,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Harri Senese,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Moreen Lemay,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jabir Gunn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dotty Oman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Quintina Mallett,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Adie Itah,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Philippine Corcoran,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ollie Panter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Clint Jesty,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tomasina Gofron,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nong Bnrecad,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Margy Lucas,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Melvin Cohen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Milissent Rolls,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Theodore Egdorf,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vernice Drynan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hensley Parrish,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elbert Culley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fady Benavides,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Djenana LeGuen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tele Travers,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cherilyn Stults,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Harri Kuntova,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dulcine Litherland,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kelwin Diee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Veen Tarver,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kimberlee Malee,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Chiho Larmour,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Merrily Provencal,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Divina Brevard,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Celine Lotan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Noriko Corner,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Janean Hoshi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shorwan Womack,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hattie Beilin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Loralie Cumming,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sanae Zalameda,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Krystalle Logue,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fara Dillow,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lonna Willcock,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Thrift McClelland,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tres Bashton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lara Terneus,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Taryna Ganguly,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Serge Systems,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marisca Parise,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brook Ta,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Evanne Servance,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hamzeh Lyall,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Collette Yao,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mandy Heiliger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Liduine Farah,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Arlee Hawley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Theresina Reinink,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hanny Hassey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gil Zhou,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jurgen Strauss,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anestassia Phair,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Koko Fetzko,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Irc McRae,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aime Reno,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Olympe Aston,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Janenna Durnford,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Selcuk Sochovka,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lauretta Abell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Akin Algood,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lenette Rance,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Louisa Thorne,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ichiro Schill,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Delila Swinson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sriv Paul,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Trish Rombeek,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tien Aghi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Barlas Discover,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sarita Cescon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Errol MAINT,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vonny Sheu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Guilford Kung,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marguerite Markland,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Viviane Lenox,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Walliw Borrelli,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Amalea Laskin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Florida Gebrael,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kieron Walkins,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Andree Junkin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Louise Joudrey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gillie Achcar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Divine Ferriss,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Noella Charlebois,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brenn Screener,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Olivie Bruneau,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Annemarie VanMeter,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rudy Piper,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Berny Burger,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shirene Moyers,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hideki Willis,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Manas Leveille,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Collette Quane,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Renu Schallenberg,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Craig Fleischer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marla Visentin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Baris Ralph,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gusta Nugent,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Boer Jago,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kieran Wattier,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mala Shillingford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Charyl Whitty,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jawad Waller,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Glynda Tisdall,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aditya Runnels,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shuji Lisch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Corette Biggers,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sarah Marceau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Huy Reporting,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Charissa Douglas,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cortney Okamoto,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rene Fletcher,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Deryck Nassr,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Coraline Kato,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Becca Hallenbeck,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carin Briggs,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wai Pellizzeri,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joachim Nesrallah,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Loesje Smothers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dani Maksoud,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kieran Forghani,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lusa Korpela,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Data Roussin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Stone Scholes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Agathe Huddleston,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vmchange Vacher,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aleta Buntrock,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darlleen Murris,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mysore Kenlan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Roxanne Janning,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alexander Enns,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Koen Keith,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mohan Parulekar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ronna Esparza,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hot Terrel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aparna Loiseau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lana Fasken,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fariborz Neefs,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Netty Eustace,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rio Philion,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Beverlie Kutten,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=William Ridgewell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nonah McGlynn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Grace Hickerson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Liping Levi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mauro Meubus,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Minny Southon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Halina Zenar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gwenny Bertram,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Andreana Gaube,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Michelina Zbib,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Davis Mutcher,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kelcey Yedema,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kaila Squizzato,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ddene Ciocca,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Harmony Peschke,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cheslie NTINASH,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Celisse Malizia,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rachelle Siew,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Charlean Robson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gabriela Mustillo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Latia Viau,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Madlen Venning,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gunilla Skene,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anestassia Ting,ou=Management,dc=bitwarden,dc=com -memberuid: cn=MaryJane Telco,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mansukha Tchir,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sherline Gillard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Inm Stefanac,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=PengDavid Pryor,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Agathe Hr,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ervin Biage,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Brandie Vargo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Augusto Audette,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Loella Haydock,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tami Scarlett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Betteanne Badza,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Roman Barsony,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Katrinka Debortoli,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jillana Alary,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Margeaux Raines,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cassi Moritz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sales Rasmus,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Katrine Thomason,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Celka Kester,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pansie Mayea,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Burton Shearer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Augusto Montero,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eyde Gallion,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sule Valenziano,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Therese Totti,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dyana ChampionDemers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ranea Zitko,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Thayne Langer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chie Hilton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gisela Enet,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Erlene Krajesky,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cezary Stephens,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cyndie Therrien,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rolf Philip,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karla Biss,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Danica Margittai,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shelly Fabris,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Netta Gregorio,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lu Tsai,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anabella McManus,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sandeep Deneen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fiore Brogdon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mariellen Tilley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ina Joudrey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Baines Buettgen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carie Pitcher,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Candie Gurer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Zino Swinson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Terese Beton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Reena Gullekson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yoda Prado,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Waneta Irwin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Prity Wyllie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jillian Borzic,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Akio Broussard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ind Suitt,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alyse Walkley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Julienne Milne,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kit Lesperance,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Libbi Niccolls,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kas Ashraf,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Georgia Henderson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nuri Mand,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shafiq Doi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mamie Angerer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Trula Ledou,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hoy Rushton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bobette Tohama,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Four Elks,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alli Kaura,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gil Walston,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Viole Lopinski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Amy StOnge,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Emogene Cocke,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tash Sails,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Coral Viriato,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Des Zacharias,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Durantaye Skelly,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Candie Mitsui,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rocke Baughan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vyza Tsuk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tiffany Fisprod,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rafael Tucker,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kayle Gedman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Arthur Axberg,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Deeanne Armstead,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gaye Sils,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sadan Trottier,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Reina Woods,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Krystalle Evers,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mair Bascombe,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dinker Meehan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elena Chabrat,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rozelle Kunkel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Christine Moree,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anje Saward,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kwok Pringle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Chiho Zilaie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shaw Leigh,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rosita Updt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Selim Kriegler,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tae Jeng,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Faz Chan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ericka Hayes,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Calli Pharr,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pamela Hufana,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Carley Fogleman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marsh Gribbons,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Herminia Corvo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Loutitia Bruce,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Genga Poley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Petunia Gunther,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bernice Yuan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brigitte Zahn,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lexis Otsuka,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Avril Hoffelt,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vax Regier,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Meara Lindsey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aeriel Juan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dear Valerien,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shobana Bardsley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Iona Kohl,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Idette Ramage,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mick Jakab,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Clay Staats,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ronica Dummer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rolf Maudrie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sidonnie Comp,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jimmie Mand,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Esmaria Walston,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Claude LaVecchia,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rusty Montgomery,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chelsey Favreau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=JulieAnne Drubld,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shantee Moulton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Camilla Sayegh,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Txp Wojdylo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Belen Miernik,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mani Skillen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Diahann Roeten,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=KaiWai COKOL,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maible Adorno,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zero Fletcher,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Daveen Burnage,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ebony Duquette,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tracie Holinski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rio Naem,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Reeta Abel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Felicle McCartin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Darrell Presgrove,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Faizal Awadalla,ou=Management,dc=bitwarden,dc=com -memberuid: cn=SikYin Borha,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Steve Marette,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Janeva Diener,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Amelie Brashear,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kenneth Tahamont,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mario Pappu,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bethena Arnauld,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nhut Hollis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Claudette Murton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dalila Solomon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Veriee Aksel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mirella Lambregts,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Paulinus Bagi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rodrigo Healy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vicheara Reimann,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Johan Srivastava,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Isl Luciani,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Monah Nipper,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sibyl Luettchau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maryl Feeley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Moyna Syres,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Petri Jimenez,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mike Inoue,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anita Gonsalves,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dennis Saad,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Taryna Anchia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Abigale Dacal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kana Gantt,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hans Raing,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Melford Lopes,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hermina Ng,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ren Schwenk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Subramaniam Cranston,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Coors Livas,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Arleyne Schreier,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ko Yuen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=HsingJu Kellogg,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Juanita Beisel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jackson Forbes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bethina Rosvick,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Osama Bitton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Douglass Eales,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Linh Ostifichuk,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leonor Hepburn,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Umesh Mayhugh,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cecile Chorley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alia Kuehne,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Fernando Pacey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sela Sandlford,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Latashia McCuaig,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dara Goodwin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Helli Charlino,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Erhard Ikeda,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Perrin Lai,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vickie Bardsley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Katherin Habert,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nobuko Prickett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Amye Seery,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Illinois Bolgos,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sandro Ploof,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Turgay Potesta,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Debi Hore,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leyla Toulson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Morris Asghar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eirik Satkamp,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Asghar Graziano,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Randee McIntee,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Magnolia Aderhold,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gert Thibert,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hunter Durant,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Luci Gergen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yousef Musick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shabbir Derganc,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Amalita Korey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Herbie Merrils,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=YuenPui Woodford,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mair Dobransky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fae Molson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Subhash Moizer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rosella Spillane,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Persis Modi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tamar Haggart,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Orelie Cheval,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ronna Morton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eryn Avirett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rowe Firment,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fidela Irving,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Desire Rutter,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Xaviera Anstead,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kelsi McAlister,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marce Onyshko,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Son AlBasi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Julianne Temp,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Seamus Sathe,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Terra Tanatichat,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Emil Hogeboom,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anup Volkmer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kevin Tangren,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Germaine Lisak,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Deni Chea,ou=Management,dc=bitwarden,dc=com -memberuid: cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jooran Hilton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pramod Piltz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Reyaud Kurio,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Radio DiNinno,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cynde Tudo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Genga Huor,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leandra Steffy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Trisha Walpole,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Valli Buzzell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gita Manuszak,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sadru Suda,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Susana Mattes,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Diannne Geuder,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ned Faletti,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gwenni Felske,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Coretta Mayne,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cissiee Hampton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kalina Fangio,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Petter Sarna,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nando Shurtleff,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Valene St,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elysia Swiat,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Yonik Valerien,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jania Clouthier,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lennart Whang,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hala Wallis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Levy Younger,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rahel Strober,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Casi Swick,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dimitrios Coop,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Elga Ashton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Harley Streatfield,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Khamdy Quinn,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Devan Kashima,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Regine Frizado,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roger Bondurant,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Taffy Solkoff,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mame Muradia,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shirlee Mackey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Terrye Redish,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Penelope Rey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Anthony Meyer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dre McNerney,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Brooks Drescher,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brandea Dziemian,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Candis Richer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ludovico Gleason,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ninette McTiernan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=TunLin Pinney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Joshi Cassese,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Miroslav StPierre,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sammy Krater,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sapphira McCain,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pierrette Discover,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ulf Willcox,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Carmen Trame,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cornelia Karim,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roobbie Stars,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sharee Wynes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sil Marano,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leonor Maginley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nicoline Magee,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Penang Musca,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carlos Smyth,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Evania Copello,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jamie Tschaja,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Thang Dallaire,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Daphine Chandra,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ohio Baerg,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Else Brien,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Giampaolo Gu,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Seven Tregenza,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rakel Ressner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Britney Prestia,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jonathan Guty,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Livvy Hoag,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rennie Postolek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jayesh Liao,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tiffany Fougere,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Darline Swinson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Biddie Scp,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Colin Irick,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yueli Clinger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Randa Wery,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Theodor Schute,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Keeley Basa,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mimi Clements,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dasi Baader,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kerrin Miner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tania Guimond,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hedvige Doran,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Diahann Nason,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leecia Guarino,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kacie Moyano,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dicky Guignon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bobbie Suwala,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Melissa Adkinson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Georgine Lantto,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Johnnie Mayes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anker Serapin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mable Thirugnanam,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Allan Rizewiski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Peng Quantrill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Addy Paunins,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Friederike Constable,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Starlene Solodko,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Verene Ludchen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Curtis Mersch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Piper Brander,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rozalin Heppes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cad Ajersch,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=TakWai Wagoner,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carran Rokas,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Idus Wayling,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maryann Somerville,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mildred Dumas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ilda Bisson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Babb Nicolle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Karyn Pagani,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Agnola MacRae,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tessi Borha,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tonia OToole,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gheorghe Eros,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Robina Chaikowsky,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ursala Wadden,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sephira Munsey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Neal Astle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vacman Lapostolle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Genna Rappoport,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lenny Mundi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Iva Pilote,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Caridad Spolar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elenore Jatar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Otha Scheffler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Janot Greenway,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rowan Hicks,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bertina Harkness,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Misbah Desautels,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=TakWai Miranda,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Blisse Silverman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nerty Longchamps,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hilary Mendonca,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vivien Seager,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Estele Dasch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joyous Belson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zorine OLeary,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kanata Kilby,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Peder Gaylor,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carter MacMaid,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Man Dacre,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Theresina Torrell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emelda Neely,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Avinash Kingaby,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Crysta Sloan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Buck Auerbach,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fallon Windom,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Samir Wesenberg,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hildegaard Valko,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Azmina Irvine,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cortland Kwa,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Franz Artspssa,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marrissa Ronan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Stanislas Sehgal,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Woody Morocz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Karla Proffit,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Julianna Varughese,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elset Neustifter,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Grete Daymond,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Thekla Wokoma,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sika Koller,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sukey Strauss,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Icy Foeppel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yongli Barrows,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Xaviera Broca,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Junette Foos,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ashraf Denter,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amelina Marceau,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yuen Huppert,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vijai Bergeron,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Diane Andersen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jester Mannion,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Christy Townsel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Raine Assistance,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ireland Ciochon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=WaiMan Binner,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ruperta Jodoin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Narrima Tu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elonore Spieker,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pick Santella,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lynea Newcomb,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yukinaga Brander,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jerrylee Galloway,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mia Amarsi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joyous Smecca,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Larkin Baughan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lillis Tyler,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rosy Stctest,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Costas Zanetti,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Technical Carpentier,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lanie Geesman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Eydie Sliter,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Trista Farag,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chery Greaver,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Katuscha Huor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bue Satta,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Justine Manolios,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Guenna Sullivan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Deb Sehmbey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gavra Skrobanski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gajendra Deibert,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Yong Nuttall,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Siew Saiyed,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Access McCullough,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Charmion Sathe,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wilow Tools,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marylin Fradette,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bellina Capobianco,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Darcee Stegall,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tonie Georgiou,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vahe Jasen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dien Plambeck,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pamella Royle,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Miro Doolittle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Esmaria Ligurs,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jim Gillespie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lottie Patoka,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Keven Camillucci,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ning Schiegl,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Torie Sridaran,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jilly Ziai,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Katharyn Herak,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carmina Slade,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=NamKiet Dada,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nashir SUPPORT,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bonni Gehring,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Agenia Deboer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tatiana Keene,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ora Trayer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Malissa Walta,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sage Jones,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Homer Boothroyd,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Oksana Baran,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gill Stalter,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=PohSoon Carter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cherilynn Munden,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Stephie Wong,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Leah Makoid,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sisely Cameron,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lacie Seddigh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Golda Decasper,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chander Kernahan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nicola Haupt,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Orelle Ifact,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jak Locken,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Phillis Hermack,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marcellina Knighton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Krystal Runnels,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sonnnie Steven,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Catherin Whaley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fernanda Michalos,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Darline Worpell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jose Brading,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Adrie Coverdale,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Coral Larrigan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lorrin Derrett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Xu Gertridge,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carlisle Wokoma,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tatsuya Standel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shirline Dahl,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mandie Tota,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nicolea Garee,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Geraldine Meehan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mickie Budhram,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Faustina Severinac,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Roy Zaloker,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karel Padiou,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Taiwana Rhodes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hedi Cicci,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Valaria Limerick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Oralia Hoggan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Leyla Parham,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Derick Paar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dau Peart,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Danell Kapp,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pen Marshall,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kary Soo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kiem Pracht,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vick Marleau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Adrianna Bruder,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Isabelita Swinney,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kelcey Lee,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Brandy Koellner,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Selie Schedulers,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Addons Dieter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lesly Willett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Coleman Wolski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shutterbug Lauson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nancy Oziskender,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Doloritas Flowers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Veleta Lun,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aila Speaker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Scptest Menna,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Madeleine Goss,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Thuy Sullivan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sheridan Sandner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Malory Groff,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Armine livinston,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Anibal Ribakovs,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tao Kardomateas,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mommy Neto,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Goldwyn Lister,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jesus Fraser,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sabina Davison,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ohio Leong,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Helma Fulford,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Wendy Ashford,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ricki Schadan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carolee McClintock,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fara Phifer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jennee Jasmin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Yatish Streng,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mair Basladynski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Karyn Bender,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Beate Ahlberg,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roberto Binder,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Miro Sparksman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ethan Salazar,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elza Meubus,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Phyllida Peng,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leslie Wagoner,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Erning Dmsrtime,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Frederica Barel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Wilkin Coupal,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Millie Kenol,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Miklos Menzies,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=WenKai Peleato,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=ChoLun Simser,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Minerva Paulett,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Asia Aleong,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Xantippe Sydor,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Devora Bunker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hudai Dallago,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pamella Herman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Preston Marco,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sybyl McIver,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Fidelia Mehta,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tom Boose,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lorrel Manno,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Stacee Finnie,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Clari Beshai,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clovis Banigan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cherin Shedd,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ivonne Whiting,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ardra Gemmill,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Arthur Koch,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leonie Begley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vanessa Thum,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rey Boyer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nanete Tomlinson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorrie Lamy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Donal DorisHampton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leonardo Palasek,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rhodie Seery,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leonas Salomon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sibel McKnight,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anabel Borel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Milo Gravitte,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Katha Noddin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jami Baab,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Verna Petree,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Adelia Leibich,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jann Marquart,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mirjam Cleary,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anselma Sabat,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ursola Zagorski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gael Cho,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kris Rotzjean,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zaneta Wun,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ania Scalabrini,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Andras Maruszak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tab Kalair,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nadya Speer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Turus Bisson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ioan Naylor,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jeroen Fleurima,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lacy Arai,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sylvain Hickin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Margaret Begley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vick Lovegrove,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bob Acres,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dahlia Oost,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ianthe Yum,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Judi Adamo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Filibert Pachulski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carmon Kroeger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Camellia Gavidia,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fqa Abrams,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pepita Houston,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Horst Becan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ericha Akai,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mina Amato,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Katherine Ostarello,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mario Bice,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Othelia Radford,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Meta Todloski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Riyaz Georges,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Teddi Connell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Huong OKelly,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maddalena Dillard,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Amandip Lescot,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Verinder Chiou,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Helmut Asdel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vital Therrien,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ileana Bottomley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Julian Condurelis,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nashib Mikulka,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cristie Nill,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Oliy Maloney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Davita Berger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Metyn Mullaly,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ning Suitt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rafa Vilozny,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anita Bui,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Verina Lamirande,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gusella Loggins,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hatty Murash,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Clyde Labenek,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=New Koay,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Doria Smothers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tonia Gahan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Reina Gracey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vale Harwerth,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gavra Brule,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Corilla Angustia,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Simona Lemyre,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Loris Knappe,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mariya Frumerie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pradip Wesenberg,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Teena Szuminski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jeanie Shumate,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mindy Agnew,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cosette Hagley,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Darnell Gombos,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Odille Belisle,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mirilla Malik,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lise Disalvo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lou Burchat,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Donita Teichman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hermione Monet,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Belicia Kupitz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tani Rausch,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Berget Baerg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Skyler Hariman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Toni Shaddock,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Foad Roberts,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Keely Dee,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shiu Trimble,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gwenore Taren,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Saraann Millen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sandra Mosley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bernhard Niro,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ema Kelkar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Erich Pandey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Farshid Sattler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anissa Nasato,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Grietje Dionne,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Asia Dobbs,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Flor Powney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Valera Fogelson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aideen Vanaman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pattie McLemore,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Levy Wolfson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Patricia Pappas,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Miguel Kozak,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gina Toolroom,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fairy Tables,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Selia Larocque,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jozef Altmann,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Octavio Doud,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Atl Baugnon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stacie Tabler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chantal Feil,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Waverly Caron,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cindy McTurner,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cherri Loper,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joleen Fobert,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marley Dadalt,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jennee Reznick,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gerrit Pullan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Duke Ness,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emilie Grigsby,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shiroshi Thorsen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Katey Dorr,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Manuela Whitsell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alvina Stokoe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Theo TestNTMVAA,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maidsir Spaugh,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vilas Jarvah,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cilka Chadha,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Merl Heffner,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shelly Adler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marchelle Howie,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chick Doucet,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vittoria Astley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hector Easaw,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Matilda Gomez,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Crista McMasters,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Amnish Haydock,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mignonne Shull,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lizzy Monson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Riyad Stropp,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jennee Tipping,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lorianne Devera,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kana VanSickle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bina Scales,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ariela Stachowiak,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Leontine Kresl,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tomasine Borza,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Emory Ramnarine,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Corella Loperena,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mirna Kashef,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Roseann Coyne,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Agenia Zampino,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vic Lenox,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sissie Rao,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chi Shreve,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gloria DeGrandis,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ryann Teacher,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Naveen Kollman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rozina Schipper,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Partha Kelsay,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vinh Dhar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cart Cardozo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Briana Ambler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kemp Akai,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anjela Gribbons,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hudai Baulch,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kee Gilchrist,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ellis Brunner,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Violet Luwemba,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kessia McVicker,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Buffy Treen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Huub Palfreyman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Walt Pringle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rima OBrien,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Robinett Borg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Wai Elms,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alikee Seay,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pammi Abrams,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gateway Benzick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rhody Birk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Atlanta Brannon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Moshe Bowick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shirene Lommen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chand Fusca,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bethina Kigyos,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Paolina Ricketson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Isaac McNeil,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jaman Churchill,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Erick Heynen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sondra Frie,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mack Hermanns,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Patchit Panesar,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mohamad Ng,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jayme McMillen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Perrin McMasters,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joell Veloz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Naima Swinks,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mab Amato,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jeanna Lawther,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Luther Kordik,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jenine Sutton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ronny Blomquist,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Krystal Noel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clark Bruneau,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anallese Bloemker,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=WenKai Schemena,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Luan Goupil,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Verna Britt,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hoog Gareis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Skyler Lamy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Layne Esry,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Amrik Thornber,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Michaela Lobianco,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Roxy Banerjee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Derek Ukena,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jenelle Crothers,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Devonna Caron,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Neill Droste,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lissy MooYoung,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Frederica Herbers,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Geir Madigan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cal Vosburg,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darrol Schluter,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Augustin Polashock,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karrah Federico,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Arlina Douet,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Herb Cantrell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ott Beresnikow,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tracey Tates,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jeniece Belmont,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vern Vosup,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zoltan Zumhagen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Makiko Walta,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ermentrude Boult,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Larisa Szura,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Wiebe Ku,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Zeljko Subick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Liese Neill,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Doralin PATCOR,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tillie Erskine,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sheeree Petrunka,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Winifred Grelck,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Toni Volkmer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alexandra Bassett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ineke Aloi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shafiq Hearn,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bucklin Venne,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Theodora Kendall,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kee Simanskis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Micky Moorefield,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Saraann Helpline,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Blondy Kluke,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marys Edgette,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Verina McGuigan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Beryl Desmond,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sydel Staples,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Letta Kalyani,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shuo Anstett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Winifred Billing,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Colene Colwell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Isabelita Irving,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Raudres Fleischer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Laslo Anstett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ovila Liverman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Angy Walkins,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hesham Ellison,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Arnett Boone,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tawauna Culver,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Annelise Traulich,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Farouk Goridkov,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Loris Huestis,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sile Creighton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Deborah Marui,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Drona Hahn,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Genia Pewitt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Annet Bagshaw,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Martha Hilaire,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Consuelo Welch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marti Petrea,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pratibha Gater,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pojanart Edey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maynard Shennan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Theressa Schultze,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nanon McIntyre,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Silvia Peiser,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Meryl LeClair,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tariq Standel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Yeung Walpole,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carita Timmerman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Haley Herren,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elbert Allard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Trix VO,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tommi Kapsa,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Teriann Stastny,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bryant Goel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Willabella Darnell,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Noemi Skerlak,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Veena Siefert,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Karyn Frankenberger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Angil Simpkin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Berta Fetzko,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lance Saltsider,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vijai Brent,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Miss Casper,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Adrienne Askins,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Omayma Kinos,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Francene Babin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maitilde Clerke,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wileen Martel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Salli Boroski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lissi Straub,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Adrian Paialunga,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dido Kohl,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chung Yarber,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=KwokLan Starowicz,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Odile Finane,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shila Wykoff,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nga Seroka,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Laurel Godfrey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marja Brivet,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fung Holvey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Remy Freeth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Christina Schwartz,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sissy Snelling,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Randa Cumpston,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maitreya Dpu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jon Giotis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mala Kilner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Melanie Bubel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Collie Nentwich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Madella Feder,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Roman Burleigh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=SangMaun Nunn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Moria Auld,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ted Demeulemeester,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bertha Lamont,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hayden Francese,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jeannette Quante,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Steffane Middleton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Saied Streight,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marco Ethier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carlyn Gallion,ou=Management,dc=bitwarden,dc=com -memberuid: cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pacific Maxin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Coursey Breiten,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brandea Bagi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Silva Hoag,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sybilla Tipping,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mindy LePage,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Beckie Bach,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Catie Biermann,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jin Benge,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Elsa Breglec,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Clementina Lozinski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Danella Gullekson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Monte Luker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Valry Bratten,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lissi Neumeister,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Claribel Digenova,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tatsman Verma,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ransom Nipper,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gilemette McWherter,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Holst Bringhurst,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Joe Guatto,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Peder Jarmon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Melisa Lenior,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shafiq Archer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nancee Smuda,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ferdinanda Yan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Portia Basinger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vanda Holmes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sid Shedd,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Merrielle Cinar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ginevra Varady,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Noraly Hassan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ron Stirling,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kala Huber,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Woon Rasmus,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jaime Delf,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dina Kaunas,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Todd Gainer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=HonKong Woolwine,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joelie Challice,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Margalo Behlen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Trish Meunier,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Verine Lilleniit,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Corilla Popescu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wynne Hudson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Laurel Leavell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Madlin Irvin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ashleigh Salembier,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sacha Dailey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lynett Reddy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bregitte Nixon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Peter Engineering,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pawel Drane,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tommy Cisco,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dvm Early,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Akin Forgeron,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lilllie Precoda,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Corinna Spragg,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yoke Pitre,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rao Grosman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Renate Belford,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nico Olsheski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alta Wiley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bennet Dunham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Chandran Crutchfield,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Suha Stiles,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sheela Montague,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brandais Speight,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ignatius USER,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Merilyn Trull,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ursulina Parise,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ailey Bosworth,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ally Pickett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Viviene St,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cole Kyoung,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Brana Telesis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Naohiko Netzke,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tessty Aiken,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Riannon Clifford,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Roxanne Kardos,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Salome Shellman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Agnella Shiley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Afzal Muise,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dita Yarosh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aparna Gamsa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Angelita Letsome,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Peder Lotan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Etienne Courchesne,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Huguette Foos,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rania Myhill,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Crista Saha,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dori Brissette,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Niki Bonney,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lyman Busuttil,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Loon Esselbach,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eleni Hiers,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sal Soo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tdr Porebski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lilian Binda,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fil Craggs,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fan Bednar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kanya Koens,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Salomi Enns,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dido Lanthier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Corny Uyar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pinder Barclay,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Micki Munns,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Milly Raines,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pas Waines,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kala Berning,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Greg Bach,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clay Rasmussen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kira Rummans,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Graciela Birtch,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Audie Pintwala,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gabbie Chiverton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Deann Sheridan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Orie Lahaie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hodge Schroff,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gertrude Rains,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=ChuChay Averett,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Amando Fernandez,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carolann McCorkle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kalvin Jamshidi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Candis Gentzler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gil Strauss,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Prab Crafton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aurora Francoeur,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Francois Willcox,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ethan Engelberg,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Beryl Security,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jessica Lovelace,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fqa Desilets,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emlynn Louie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Russel Gillies,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dionne Parniani,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Birmingham Shippen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Trudy Durling,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Selena Mickens,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Laureen Paczek,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gurjinder Gosset,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dede McKeage,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shanda Scroger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ophelia McHale,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ajit Kiens,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nicole Zhao,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Saloma Alkire,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Khosro Essery,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Veronike Dyck,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Franc Revelle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Freda Tschaja,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Deepak Sangha,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jennee Stover,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Diamond Brownfield,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sangman Estey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ola Kupitz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Willetta Mayes,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nahum Sprigings,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Juile Nttest,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hazel Johannes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rebeka Welker,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gordon Fares,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Corella Swanston,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alisun Volfe,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Karine McKerrow,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yvan Gandhi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Darrol Mair,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Narendra Cramer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Christina Bittman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vo Peacocke,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Salim Brushey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jorey Jensen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Willow Benda,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marilyn Nardiello,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Federica Keck,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carling Sture,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Inessa McCaffity,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Esko Todaro,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Charman Brownridge,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Le Reese,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cavin Bijons,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Naresh Hiltz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jai Tiller,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Esme Daniells,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Trey McWalters,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Edlene Bumgarner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tape OHearn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Robbin Hayman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Debadeep Andrade,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Parham Maunu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ruthe Calhoun,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Albert Waid,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mason Azar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tory Vairavan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marisa Kuntova,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rungroj Rains,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tak Tihanyi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sharlene Litz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chelsea Ruane,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eddy Talbot,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Manhatten Tota,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Annabela Gingrich,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Regis Watmore,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shanda Bowen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jyoti Wells,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hanns Sharkey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Reva Ostapiw,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Michele Elkaim,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emil Knappe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Beryl Windsor,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Joyan Varia,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mitchell Gatka,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ailee Events,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Herre Cadeau,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kaye Hafiz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shahid Follett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pet Bohanan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Colly Daigle,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Deva StOnge,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Giri Glucksman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jorey Gillet,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shelagh Balutis,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rachelle Prakash,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Akshay OKelly,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Condell Kho,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cordey Ballard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amelita Okura,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nadeen Longpre,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Imtaz Chouinard,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Melinda Tappert,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Misha Karaali,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Evanne Donator,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gussy Prikkel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Liping DaSilva,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=HackHoo Sayed,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rozanne Heurich,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Arabel Omura,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marce Rivest,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Irena Hammermeister,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sotos Bratten,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Elpida Vuignier,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Naoma Rowe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pawel Bourget,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Deloria Couser,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Conni Stainback,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Modesta Huszarik,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Reinhold Ribi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Loris Grimes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sid Walford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ingrid Kruger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Baha Raymond,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Raffi Legrove,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Julita Shemwell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pooh Claveau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Haig Zumhagen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Penni Gehring,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Melodie Parham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Violetta Fallah,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shay Molson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Guillema Halicki,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sacto Kao,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Linh Kishi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Careers Caves,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nicolina Kopke,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kristel Credico,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pankaj Clow,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Radomir Remson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Josefina Parr,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Korie Grooms,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nelson Lytle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Greet Driver,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Phillis Pravato,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Patch Eberlin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Malorie Goos,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Effie Pracht,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elza Gillon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Maddy Falletti,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Candee DiFalco,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Martynne McCloughan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marris Lobello,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rochell Denmark,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ngai Michael,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=JoLee Fredette,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liv Veedell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Verina Coddington,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=March Easton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jianli Kahhale,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shamshad Bozicevich,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Renate Kahkonen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aile Lugsdin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Warwick Gamarnik,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Candee Brubaker,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nashir Tue,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lolita Hanson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Antoinette WPMS,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Margaux Rollo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Idell Pung,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tandy Etoh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Twana Schneider,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lari Killeen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pars Tigg,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marjy Botyrius,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sol Trefts,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Leigh Boulerice,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Harpal Bashton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Valeda Laliberte,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Winnah Kabel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lecien Bunting,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Blancha TempleDowning,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kyla Burton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ronna Faison,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nel Mohrmann,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Naresh Kok,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cang Kinamon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Amalea Snyder,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Caryn Rizk,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Edel AbiAad,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jey Dufresne,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kass Lyliston,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gabie Autoquote,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vina Sebastian,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Annabella Blasing,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nicolette Spann,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Blancha Bradee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tamarah Solheim,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cleo Depew,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gordon Galligan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Terra Brookhart,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hellen Benzick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jenda Serrano,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chrystal Draves,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nicola Dallago,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gisele Zattiero,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nora Hishchak,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Merrili Janelle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Claire Valia,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Farica Horwitz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gregory Bluethner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liviu Hume,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Angelie Heile,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tatiania Delage,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Celisse Murdoch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=NamKiet Phillip,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Merrili Wierzba,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kittie Gabbai,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Timi Hendriks,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Deana Cargnelli,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lizzie Petro,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shyam Johnsen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Valencia Tomlinson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Frederic Scurlock,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Guillema McGorman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jenda Ostarello,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rivkah Neywick,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Coursdev Angeli,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dari Ersil,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marjolein Stephens,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Doro Vempati,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sono Pokrifcak,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Moniek Bergado,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=KwokWa Moriarty,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sluis Nizman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Michel Salkini,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=JoDee Cownie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Germaine Turney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Berenice Yates,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Geoff Catlett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=MarieAndree Bour,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dixie Gionet,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lyndel Amarsi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hulda McDowell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Leil Forrest,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Natassia Mallozzi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zack Meckler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Isidora Ralph,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ailis Reis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Arvin McWilton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Matti Bruce,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Joel Rynders,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Stefanie Malle,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Yokan Basco,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Froukje Gionet,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nenad OToole,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Aileen Haney,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hannis Flindall,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Anderson Bulan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Denny Bourguignon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Reeva Doherty,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Piyush Holness,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Minette Hazeldine,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Haruko Hepburn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Carlo Mong,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Oksana Klein,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dimitri Pineau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Geri Shabo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Saied Vertolli,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Txp Cummings,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Britt Caruth,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kwong Engleman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vikki Tzuang,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sickle StJames,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aundrea Yates,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nam Cuddy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Methi Zoerb,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elysia Zhong,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kacie Herriotts,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hermine Fung,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Manoj Caterina,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Penny Sim,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Grzegorz Feist,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sadan Spears,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Peter Grazzini,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kasifa Bauer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Milena Hendricksen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Allix Tsui,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jenda Cobban,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Concettina Linberg,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Colin Tahir,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gates Hesche,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marjie Karp,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dorella Reeder,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shankar Brehm,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Natalee Broadwell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gay Denette,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Leita Malloy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Novelia Tigg,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Aeriell Cottrell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nickie Sicard,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Con Lampman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tidwell Plssup,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dwight Goatcher,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Germana Easson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rosetta Hatz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chen Karsan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jorie Maltese,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Corilla Filkins,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kassem Chaput,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Karl Rombeek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hiren Leinen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=My Handforth,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ruby Duffy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ranjit Chaurasia,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Xiaofeng Dach,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bob Chaddock,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Beatrice Costas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hynda Miksik,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jacquie Jablonski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ashok Karol,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zeljko Goodrow,ou=Management,dc=bitwarden,dc=com -memberuid: cn=ManFai Yearwood,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Grazia Ruben,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gee Buechner,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kial Skillen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Raul Dantu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liuka Awano,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Caryl Teder,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lex Matheson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jamie Ballard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gaye Telos,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Laz Wilemon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Euphemia Novak,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Wini Haverty,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Halli Mavis,ou=Management,dc=bitwarden,dc=com -memberuid: cn=WingMan Vesterdal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Blithe Keuning,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Katya Tracz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Raymond Biggers,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Theresita Mashura,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joly Dummer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Feng Yeh,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Robin Martenson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kara Tarle,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jerzy Benoit,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Abahri Brauer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Baljinder Kowalsky,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kimberly Chung,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shaibal Andrew,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Oralla ENG,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rubina RTP,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Orie Larribeau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Brear Hagwood,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Radford Gille,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shina Chari,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mariel Yan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bakoury Whitten,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Donovan Bedard,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Almeria Whitman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ardyth Ely,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aleen Meckler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Riane Pantages,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Coral Wickes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dalia Doda,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Suki Currie,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gateway Bain,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Inger Tchir,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Laraine Arellano,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Roana Fulford,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Camellia Sheth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fayina Passier,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Constantia Bielan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sacha Hiller,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Myranda Poff,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Victor McDaniel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=James Predon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Alta Bergwerff,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Keven Abbie,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karia Pintwala,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Philly Scharf,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jazmin Hargrow,ou=Management,dc=bitwarden,dc=com -memberuid: cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Misti Ellington,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nevein Quinones,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Devinne McMasters,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carola Eustace,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Thelma Fazel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Arlene Galasso,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Andrew Shuman,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Alane Planting,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Elle Chaddock,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rachael Benchimol,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Claresta Ramakrishna,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ivory Bolon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Brenton Buker,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Beau Dorion,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lelah Souza,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Helen Marshman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yvon Uae,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Laten Vartanesian,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Susy Kadamani,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Berte Hesk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Joy Willard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Britte Thorman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Amberly Inscoe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Karole Prints,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ludovico Reinink,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maritsa Mashura,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fern McGuigan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gavin Parr,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Anthiathia Nie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vita Larkin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Madan Enstone,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marilyn Wainwright,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Amanda Tigg,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jermaine Shackley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alev Sunatori,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Juliette Finane,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jessamyn Frampton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Norina Piersol,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Subhra Darby,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=AnneLise Krodel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bobbi Azevedo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vikki Tu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Message Armstrong,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maury Este,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Noel Mitrani,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shaib Codata,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tiffy Youngman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Terese VanHulst,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Brigitta Southon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ashlan Nyce,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alasdair Huether,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rakesh Izzotti,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Irish Gaither,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Verlyn Farah,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rana Schartmann,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=XuanLien Harms,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Regine Danforth,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Adda Gutcher,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hpone Croxall,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ailee McCauley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nadya Finucane,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brita Digenova,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jami Franze,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mariele Barnhart,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jacalyn Jawor,ou=Management,dc=bitwarden,dc=com -memberuid: cn=National Gahunia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Retha Spallin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Estrella Benner,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Thomasina Kling,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jaan Lian,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carola Osatuik,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fifine Roussin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mariam Markmeyer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Randall Chalker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Anki Harriett,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Teena Pufpaff,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dalip Horak,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tamarra Grassmann,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Arun Adolfie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lettie Janelle,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Huib Kayle,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vicki Streibel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ingeberg Gomm,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorianna Windom,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tamera Meyer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Corliss Chenard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rheba Castelloe,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marijke Bielby,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Steen Carpool,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marigold Girgis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tdr Gavidia,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Judith Charbonneau,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Katerine Manners,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tasha Netdev,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ken Shiue,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tc Hayman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Corry Johnston,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Farag Rogge,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Scot Santitoro,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Micah Goheen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kasey Primeau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Frankie Nesbitt,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fran Visockis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Prudence Deugau,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elbert Figura,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dorian Kingzett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Camila Wilhoit,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wannell Klapper,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Brynne Hiers,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Barbi Hebbar,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Panch Golka,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Freya Seagraves,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Makary Pulver,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carmela Voitel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nonah Ledet,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marti Mac,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maxi Isaac,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Orlyn Eros,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Amandi Twiss,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Carolyne Delmar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Los Barbeau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fung Godwin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Coreen Underwood,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Inquire Morse,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roby Kalyani,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Leena OKelly,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joli Gavidia,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gint Cioffi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chelsea Arvin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Allix Closson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ortensia Renwick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Megumi Lipski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tulip Jeanes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Meg Kuechler,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Severin Sridaran,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rivalee Markes,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gus Darcie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Farah Fiorile,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jagjit Orr,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Allyce Maduri,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Padma Mannion,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Armin Balogh,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Weiping Schneider,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wakako Schneider,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aubrey Worsley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Didar Chakravarti,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ninetta Pullum,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Suki Marrec,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ian Locicero,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Modestia Prado,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Linette Hoxie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Christi Silverstone,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gertie Stough,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Christy Mazurek,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Fikre Vieiro,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Leila Mullett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Irina Holinski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kari Denmark,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Inge Valenziano,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Denis Khurana,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marice Klug,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Denver Welling,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Windowing Lukic,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sig Mistry,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kathe Rohan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kristie Valente,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maiga Burdick,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Manh Malee,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Benita Rosvick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Serban Gerard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Condell Sorensen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Giang Hildum,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Loise Prasad,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ronnie Hillson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gavra Sokolowski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Candy Husain,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alvin Shwed,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kenna Marui,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aleta Gargul,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mani Khatod,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Trixy Palik,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dimitri Reese,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rosamond McEachern,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Augustin Bayne,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Corkstown Beattie,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Prudence Fickes,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lavina Cirulli,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tiertza Korea,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Javed Collecutt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Adrianna Shypski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Susanne Denison,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lilian Rickborn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Remy Blackwood,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Beret Cemensky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bel Browning,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lula Communications,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ronn Turbyfill,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cindy Deol,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marjory Ranahan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Winona Baccari,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Veda Gaines,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anup Mundi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alyce Felli,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Janet Ludchen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Noubar Novotny,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Starlin Joe,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Devora Pde,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darya McGeown,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dnsproj Walles,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Norma Lepine,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Brandy Verma,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Blanch Virk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Viviana Waucheul,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brittani Menasce,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Khalil Mincey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shedman Jakim,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Reba Chadha,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ailey Randall,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dino Dangubic,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marlies Ortiz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Uri Neufeld,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Loralee McDunn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Caridad Sawada,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Willis Shelley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pauletta Weakley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nanni Taul,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Neetu Jeng,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aimee Poma,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mer Mayes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alisa Rogan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Penni Yim,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Melessa Vuong,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anni Blander,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lesli Hassan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marthena Holleran,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Josi Management,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Elga Conlon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Francesca Boyd,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marit Ahlers,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Donovan Rega,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elli Bourdignon,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Haily Mo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mohammed Minai,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kirit Storrie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jenn Bennison,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Durantaye Molson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Viola Devouges,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Palme Boose,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zarah Doriot,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eirik McCray,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Brennan Saito,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bambie Borel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Devonne Salkini,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bawn Straub,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jojo Peart,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marieke Deibert,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ginelle Couture,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gnni Podolski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Uunko Kodsi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sharline Tullius,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shoeb Scales,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nissa Twarog,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hrinfo Popel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anallese Dressler,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fredra Skillen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shafique Behrens,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ross Saravanos,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Albertine Dorey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Junia Kun,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rey Galvin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kentaro Prada,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Caro Roithmaier,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cassondra Rollin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kiet Kantor,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gilemette Grubbs,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Calida Knudsen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bendite Costelloe,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Desirae Tye,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Yong Papalitskas,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Orsola Shieff,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Meade Lindler,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Canadian Gass,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Liping Woll,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dwaine Oka,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jed Colbourne,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pammi Crucefix,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joelle Vardy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Wenona Angerer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Arjun Passier,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kas Breedlove,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hoog Trinidad,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jesselyn Lindholm,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Claude Sylvie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Matelda Wrigley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Emil Kaden,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wing Miranda,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Goldina Kho,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sidoney Dugas,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Alis Tu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nawa Higgins,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nataly McHale,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sabuson Keels,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Katrina Caltrider,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Damon Bakhach,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nevein Paar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eliezer Mendorf,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Saree Salva,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mary Bayno,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Arnie McMillion,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Salaidh Wery,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hq Bracy,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Philippa Sanson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Karrah Kielstra,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Saloma Brauer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cheuk Mayr,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Verene Misslitz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Doe Codack,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lowell Seufert,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Willa Unkefer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bep Wassel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yuri McCullen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Genevieve Licata,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Stacia Mersch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Opal Tatemichi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nash Hemphill,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Amir McKillop,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nam Nentwich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Arvin Gourley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amara Wichers,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ellen Dada,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gunilla Katz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Core Herrick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jack Predon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marc Pestill,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eadie Jamensky,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Corenda MacLaren,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Duy Starnes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Milan Retallack,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zarella Sauck,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nathalia Testsds,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Florette Nttest,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dari OConnor,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tracie Jenner,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mot Stirling,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yodha Bui,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Clifton Murphyking,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=HonKong Drago,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Greer Popowicz,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Asia Schuette,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Barbette Stotz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joyann Lun,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Caz Brunato,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sorin Dipper,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bucklin OKarina,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tuan Pannell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Neda Reece,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Audrey US,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dona Sudan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mahendra Puett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Evangelia Kusan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mead Bielan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Damara Bertrand,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sarah Kardos,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Odele Mahiger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Salah Poe,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Garry Sterescu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Takehiko Magnan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Loraine Giese,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ilya Mackey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Clari Wahab,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nichol Etten,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Clayton Sridaran,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marijke Ervi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tally Pirkle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Haste Katcher,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Norstar Lipski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hedi Konarski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kwing DeStefani,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Helma Ramsden,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Joanna Aimone,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leon Epplett,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bobby Frink,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rob Milinkovich,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lexie Thorsen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carlene Grignon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Russ Battersby,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Andrew Thifault,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Celinda Krisa,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fawnia Starks,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Prissie Schieber,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lyn Yuhn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Joellyn Montelli,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vanny Fenton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rosabella Mathis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Celestine Demir,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Charlena Mirande,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bennett Marting,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Analiese Steene,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Janine Stirrett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wiele Rowan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Maia Reva,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tian Beeby,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nazib Schembri,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cammy Shumate,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rianon Schick,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Viole Areu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Brigitta Piper,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Melly Kelkar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maritsa McCain,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Melissa Griffioen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tak Sebeh,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vittorio Muradia,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jonell McElligott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jey Pau,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jillane Metz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Parveen Burnage,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Martine Gilliard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shaji Langelier,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Manny Nolan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vrinda Keuning,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aile StOnge,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Helge Bowyer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Norbert Missailidis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Letizia Quon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Haily Lamothe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alie Staats,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Corry Brewer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hanja Godwin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Brianna Hien,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Evy Raing,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rebekah Siegel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Brekel Silverstone,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Harm Mehta,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jae Caudill,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hilde Hibberd,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tres Nyland,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bettye Moynihan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shahriar Trull,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Edyta Hargadon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marris Hameed,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aurelia Raynard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rivi Ludwig,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Isadora Vaters,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Elana Moy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Helaine Salamon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Briney Smithson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Selva Hillidge,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Parks Pavitt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Design Pepler,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shahram Dpierre,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sylvain Dans,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Phuoc Vu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Candide Elhamahmy,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sarine Hopley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Velma Brasset,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Clemmie Brower,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Drudy Badger,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kimmy Nagaraj,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Torrie Lai,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bryon Bannister,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Melford Charter,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Meriel Tota,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darrel Samora,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gabi Fares,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bao Byrd,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wilf Rodenfels,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jeri Gupton,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Didar Brooksbank,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cathe Malone,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Evey Haddad,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ginette Smoot,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dorita Heffner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Reind Mufti,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Carolynn Dikens,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lurleen Eberle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tandy Fssup,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Datas Simmonds,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darline Frankenberger,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Merry Cadtools,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Chabane Hornung,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Colm Yassa,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jillayne Cobb,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ruby Brotherton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marjie Geyer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=McGee Schreiber,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Myrna Befanis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maurine StJames,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ebony DuBerger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Donnette Leighton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Daryl Broca,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cristabel Orth,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Constantia Lundy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shashi Amini,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leola Richard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jai Pascas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Petronille Receiving,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sidonia Badza,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Career Culkin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aubrey Mina,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Wilhelmus Mandel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anya Kantor,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=National MacCarthy,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nissie Heile,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pac Popowycz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Blancha Cousineau,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Harper McWaters,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Adorne Bejar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lenee Marasco,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Reggi Hor,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Andres Williford,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kwan Devault,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lionel Reinlie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gunter Glidewell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nick Brewer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Josefa Kilburn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cindy Oestreich,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pia Turchan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Louisa Ryall,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cherry Tennant,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Paul Rafael,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Glornia Cicchino,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Annalee Terminals,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dave Salehi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Wendy Slattery,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Previn Hirayama,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Evvy Barsony,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hollie Lawton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dacie Doi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hall Twitty,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tien Ferraro,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorine Metrailer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Heidie ElAm,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nyssa Australia,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Melford Ashdown,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rowe McHarg,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rasla ODoherty,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Felicle Ramondt,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jasver Jurman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anderea Albritton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alana Melkild,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Orie Kellogg,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Liva McMasters,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kiah Chandan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vipi Bladon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dan Yost,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ivo Dziawa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vahid Routing,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marianna Wray,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sunning Spence,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cart Pyron,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nashville Venier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Glenn Salem,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Raman Smolin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marin Mokbel,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rici Plasse,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anup Klammer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ninon Starr,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Atul Orth,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tung Lazar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Conchita Raley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Steen Meyer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ingunna Zollman,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Winnie Goss,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dori Myatt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Beb Jammu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Reno Raines,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Delilah Praeuner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Christiane Wanner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sada Polulack,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shauna Caputo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hrdata Placido,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Belvia Raissian,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Odette Swiatkowski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Richelle Thorne,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jacques Bhatia,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Houman Levere,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Doloritas Adams,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Starr Selent,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Doria Sherrill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Maire Follett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ying Schulze,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Samual Franzky,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nert Bombardier,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Catherine Hite,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ilyse Mueller,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Stephenie Brennen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Normand Hussein,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Greta Vilayil,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Siana Letsome,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cosola Steene,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cooney Momon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Julie Dinalic,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Manya Mukherjee,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Evans Letsome,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Silvana Filpus,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=YauFun Poindexter,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Emmy Blissett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Blanche VanKast,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Merry Aderhold,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gwenni Marren,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Allys Akita,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Marris Fanchi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bryna McMann,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Clayton Lychak,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Abe Parton,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Felice Kaehler,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jacenta Sztein,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sonja Hoag,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Manmohan MacAdams,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Cathe Bejar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tape Vandervelde,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Adria Leger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Modesty Quinlan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jawaid Upton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Trevor Vradmin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Helena Pellizzari,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=MunHang Salinas,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Delcina Forbes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Norene Tarver,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Angie Leiba,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ernest Welker,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Fitzgerald Kabel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zaven Bethune,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aridatha Flindall,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kipp Aubuchon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Daile Id,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Shea Lashmit,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Stuart Murdock,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Adrianna Ness,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vanity Penland,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Denzil Willenbring,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Erna Stephen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=MarieAndree Ness,ou=Management,dc=bitwarden,dc=com -memberuid: cn=LouisRene Borozny,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Donetta Grabowski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Henk Crick,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ineke Haig,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Felipa Catlett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kathye Ledou,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pawel Pippin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Godiva Pesik,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Evelina Mapile,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pammy Rogers,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pas Giles,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marietta CamelToueg,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rico Meachum,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Venkat Marrone,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Elwood Gould,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Darrel Hoch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Eunice Gerhart,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Karena Gunasekera,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Charmine Izzo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nicolea Fagan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Huyen Nashville,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Myrtia Closson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ioana Jenner,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leon Bays,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ulf Cotner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jinann Hassey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bevvy Huot,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Coord Cadd,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Envoy Lesway,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maybelle Brannon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lrc Blaiklock,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Abu Melucci,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hedwiga Personna,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Osmond Usyk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ilona Schoch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kieron Bouick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hettie Gruber,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Farzin Hilaire,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jaimie Valin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Meggy Fajardo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lyda Sym,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alia Lucente,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carline Klotz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marilin Boylan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mustapha Noles,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Brandais Cullum,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vradmin Lough,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Laser Lennig,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wren Gopaul,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Whitney Inoue,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karlee Weyand,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fox Richmond,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Patrick Perreault,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Saloma Turbes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tiffy Klammer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sonbol Portz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darko Gawdan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dodie Starr,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Britt Bivens,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hanh Sohns,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Friederike Awano,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Franki Nassr,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sheridan Arcouet,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shoeb McCrimmon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sherline Morreale,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Emilia Tisdale,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Reinhold Shumate,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tatyana Packard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gloriana Vendette,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Consuela Ravi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sioux Langlois,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Olympia Lieure,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cad Thorley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ryoung Moeschet,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jorry Freno,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Amandie Cottengim,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bran MacNeil,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Eladio Strudwick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cleveland Jagla,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Julien Osterberg,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Frederika Brower,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Timmi Bascombe,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Milicent Frondozo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Danell Silang,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Baljinder StJohn,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Joannah Gendre,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zero Strickland,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lujanka Turner,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Trish Meissner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Han Hermes,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Annamaria Daly,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Roger Latella,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Korney Blevins,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Elsey Meckley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jill Langton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Peg Arnott,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lotta Witkowski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=TunLin Dickerson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sile Golczewski,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Joshi Formagie,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Penni Marzullo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maible Blauer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fawne Fanthome,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Brinna Spraggins,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Misbah FWPtools,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shona Keck,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Doe Digenova,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Edel Huliganga,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Miquela Khosla,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Butch Gewell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mindy Wealch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Petri Quintero,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Windowing Feyen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Charlotta Demarest,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Honey Badjari,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nady Kness,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Magdaia Pagi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Peri Morden,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Avie Moores,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Schell Wendling,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Reynold Labiche,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vince Bulger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nedi England,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Field Ueyama,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Mina ODonnell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rubie Suddarth,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fanchette Felli,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dorry Livshits,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Merle Turchan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Achal Blann,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marty Barr,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lilin Tisdall,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Camille Seddigh,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Manon Swinamer,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Marci Uludamar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marcel Mathiue,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Clementina Salkilld,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gertrudis Zahn,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jere Forghani,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gilemette Dellinger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Magdalene Byers,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Parnell Hamlin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nath Popovich,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Patch Lassonde,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nata Corse,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marj Npi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Emery Daoust,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Danya Prasada,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Partha Blackman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Florette Shemwell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Abagael Zattiero,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mardi Lowder,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mercy Steranka,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Catja Josiah,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marlena Rickey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shandee Reno,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Silva Connolly,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Iwan Theriot,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Emerson Terminals,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Felicdad Popela,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Himanshu Zahn,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Luisa Legros,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brenn Thedford,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Albina Kruusement,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Yueping Yamada,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Belvia Abbott,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Seyma Currier,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Derrik Steede,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Starla OFarrell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Revkah Bawek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tian Dundin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Aiden Dido,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pit Yancey,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Aartjan Robson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Winona Latreille,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dis Schmeing,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Krystalle McHale,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jastinder Zollman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Conny Blackburn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lian Tripps,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karlyn Tiseo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Josselyn Sugarman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ashlie Michailov,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cindie McNeill,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Izak Katibian,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nanci Fiteny,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marijke Tiseo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Akshay Herlihy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Thomson Dasch,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Min StMartin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maybelle Karol,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cindy Ferner,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nerti Buskens,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Selvaraj Merrick,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Julien Simmons,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Conchita Meres,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hedi Herling,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Roobbie Bizga,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Izak Hatten,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Parks McInnis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lanae Mullen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Barby Shiue,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rizwan Guindi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anetta Wray,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mougy Mo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Darline Alfred,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kayla Boscio,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Keys Tavares,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Yutaka Branham,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Elinore Spallin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Paige McAleer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Syyed Cantlie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Morley Trefts,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kania Bnrecad,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tammi Zukosky,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Leil Halbedel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marni Diduch,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Myriam Desrochers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Court Karademir,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jayendra Goba,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kathrerine Hackett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Akihiko Restrepo,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Andra Guindi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Manda Bigley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Julienne Mevis,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lesya Willison,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Giri Rupert,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Oguz Livingston,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Celie Wesselow,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Adria Hagar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Panch Timleck,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Caro Finley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Fernand Hunsucker,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maybelle Tognoni,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sunil Boggan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Theressa McQueen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Maala Lessard,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jochem Vuncannon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Magdi Mays,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Suvanee Girard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bin Itah,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Raynell Zaydan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mabel Combee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Melania Michelsen,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hollyanne Java,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Theadora Irani,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eladio Bolio,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hermien Paksi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Merrilee Sipple,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aleece Mielke,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Harinder Sabry,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eamon Brivet,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Analiese Chapman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Meghan Murphy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nikolia Guin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dana Tupling,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eliot Havis,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maryl Codrington,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Constantia Neubauer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Savita Sei,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yehuda Huret,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Livvie Barlow,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sebastian Burger,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Datas Cochran,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chander Copley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Careers Serapin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mei Ballinger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Guillema Sarioglu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Samual Colquhoun,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hubert Cicci,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chung Gooch,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Johnnie Trainer,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Camile Latin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Radio Ong,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Carmina Joly,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alese Zarate,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Babb Dpierre,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dalila Forbes,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pinder Pedley,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Suzi Gribbons,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hulst Sinasac,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Naser deSalis,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maurise Efstration,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ranvir Reetz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alidia COKOL,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shashank Pifko,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eulalie Montcalm,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Calla Voight,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lynette Kay,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carleen Baxter,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hubert Brading,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Christian Norwood,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Den Fogle,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Karol Dummer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Myrna Samora,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden,dc=com -memberuid: cn=KuiSoon Bajada,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Alvina Madison,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Celyne Krater,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pierre Hysler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gordy Fab,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mouna LaRue,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Janot Carella,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Vanny Blauer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dineke Sheth,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Feliza Camblin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zonda Bartush,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Radford Wiklund,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Pamella Sosa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marya Felton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aindrea Cairns,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Katherina Deek,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ardeen Grasman,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Isin VanOorschot,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karrah Laferriere,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sanae Baynes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Zainab Doan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cassy Seagle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wonda McCallum,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Florina Meredith,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nat Sadeghi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hendra Viegas,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bettie Coutellier,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Davis Connolly,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carma Rittenhouse,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sarah Longchamps,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Haroon Neefs,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jenson Soumis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Minni Malynowsky,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Issam Coord,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lynna Salam,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Huong Quinones,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Class Picard,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Craig Kneisel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Fay Franco,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gae Garrett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Martita Sales,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amaleta McClelland,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rico Vandevalk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nanny Kempski,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Antonella Stambouli,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rhett Womack,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kenneth Afkham,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Asmar Dermardiros,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marabel ORourke,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lowry Fahey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Christy Phalpher,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Emr Hacker,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Estelle Robieux,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ashraf Maybee,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bakel Sils,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Linnell Wepf,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Foad Lebeau,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bal Braverman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Buda Virchick,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Alika Kirchner,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kata Hagerty,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lorraine Polk,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tildi Washburn,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Minette Reva,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Farag Wolter,ou=Management,dc=bitwarden,dc=com -memberuid: cn=AnnMarie Valentik,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=HooiLee Ronald,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Gipsy Raman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Akram Nagendra,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Glen Majeed,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marieke Pien,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ingrid Lieure,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Roya Tod,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Christye Meridew,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Patrick Albers,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Doralynn Swyer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Vanni Katsouras,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rogelio McGrath,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Daphine Kutschke,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jin Lyall,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Clerissa Maduri,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Simonne Lukers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jacynth Manto,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ronan Rattray,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Doloritas Ocone,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Etta Smithson,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Stephanie Pickles,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Karla Hearnden,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Xenia Schmitz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sande Withrow,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pammie Guilbert,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sabina Dolson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cyril Tullius,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Agathe Kinney,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nevsa Botting,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melisse Wallis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Benoite Lenior,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marya Lozier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Access Phelps,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ned Hammonds,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ernest Betterley,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kana Licata,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hermione Donahue,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rochette Materkowski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lan Simms,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Troy Bengtson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Natka Moritz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brook Clifton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maggee Colton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rae Willey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Terence Murray,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ransom Grande,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Lindy Clinger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Clyde Hanser,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Charita Rainsforth,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Remo Duchesne,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Radames Verrilli,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alanna Dillard,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chantal Neander,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Leese Nagendra,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Erena Ticzon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Far Fogelson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Anne Kobeski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ursola Hastie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Germaine Wingate,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Olympia Peets,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sati Varughese,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tab Gozen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ioana Newsome,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Damian Lescot,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Raz Roseland,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vivianna Lackie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hadi Freeley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carol Sarson,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ailene Mackin,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bret Winicki,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Hatty Latchford,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Trey Baenziger,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ioan Elsing,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Joy Ferrara,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Rowe Clinton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dolores McCafferty,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Luciana Lepore,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jimmie Korest,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Martelle Reno,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hock Chilausky,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Teddie Bulan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lavonda Rowsell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lorinda Nolet,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ike Outage,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Erin Dolson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anderson Sitar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ranga Cawley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kylie Parnell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Millisent Ladymon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tilda Turcot,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Yuji McCabe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Pen Yost,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Traci Ahdieh,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fay Deugau,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Inna MokFung,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tehchi McEwan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tats Graves,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nakina Steranka,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gilda Reid,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Arnis Truchon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Paige Wanzeck,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dutch HSI,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Adda Danai,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Netty Muttaqi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Karly Breglec,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gurdip Thornber,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dulcea Bassett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Caprice Selent,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hemant Remillard,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tilak Odgers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kaela Wooff,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Grey Krakowetz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Canute Ladymon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Alex Lumley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gunars Runkel,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Careers McAdorey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ardelia Bunner,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fekri Hunike,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Adey Shippen,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Malina Lederman,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Perry Maryak,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vance Ruppert,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Peg Toscano,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Monah Tsonos,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Meade Latulippe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Karan Piper,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Chander Paulus,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Parham Cisco,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Charmain Chahal,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Janelle Tucker,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Angie Tesch,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Traci Wolter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Azmina Bergeson,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dolly Dane,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Narendra Matsuzawa,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Souza Austin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Chrissy Marren,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tandie Virgoe,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Calley Naujoks,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Regan Neilsen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Katja Waterman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sol Royals,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=KahMing Dubreck,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melitta Hunter,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Trang Tucker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Garth Alfaro,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Rickie Genge,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mariette Piggott,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Darla Schierbaum,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Technical Ely,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Merrill Loa,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jojo Liew,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Noemi Gulko,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Aurel Mullins,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Raine Hauck,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Munaz Mand,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Zoe Leinen,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bihari Simkin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wannell Rivard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Adey Daquano,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Emeline Drewes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Rayshell Dow,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sohayla Claggett,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Debora Lauzon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aggi Culver,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Delcine Pesold,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Pauline Bullion,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tibor Belley,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vere Cushing,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dorris Joshi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Victor Hollenbach,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Joyan Irvin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Zoenka Ivan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Wylo Rummans,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tyler McKibbin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Dorolice Puelma,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anwar Mauck,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gillian Weihs,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Freddy Boase,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Manny Degraauw,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Zahir Meagher,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chiho Kowalski,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jan Gittins,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nalani Madsen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Casie Banerd,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Beryle Camillucci,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lubomyr Duran,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gertruda Boyajian,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dyanna Roehl,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kikelia Kember,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Yalcin Tanferna,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Justina Copello,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bam Luin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Frieda Dulaney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Les Allahdin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melek Fennessey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Quon Zukosky,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Andrea ONeall,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Setsuko Keck,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ruchel Borosh,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Chloette Zadow,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sarena Fothergill,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jaquith Canfield,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darell Carrillo,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Malgosia Beilin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bekki Kensinger,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Benny Stahl,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sonja Blake,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Corny Cowick,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sibelle McAlister,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Souza Deininger,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Beata Surray,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Betsy Bergman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cheryl Deibert,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Darrel Bottoms,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Cissiee Gostanian,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Portia Beecker,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alli AbouEzze,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kirk Cuddihey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=ChoonLin Marneris,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Davida Milakovic,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Janela Bennison,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Zorine Records,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ashleigh Ligon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nelly Kerns,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Chicky Domine,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Woon Morrin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tedra Shwed,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Wallis Whitfill,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Torey Tropea,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Israel Ginest,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Yoko Honda,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Farzin Herlihy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Benny Ratnam,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Reeba Pape,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ashu Kohn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liese McCombs,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Blinny Zanet,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sanjay Themann,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vijay Shorgan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Duncan Kiang,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Liliane Chima,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Khai Diradmin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Burton Deans,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Elly Kubash,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tallou Gothard,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Perry Schmitz,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Avinash Finn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Marabel Hippert,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Klazina Desharnais,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ursala Vezeau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Muffin Atteridge,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Vanya Marcoux,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mercy Nakano,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Arlina Weaver,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Seven Okon,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Liliane Gurer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=HonKong Salem,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Glynnis Daniells,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Miran McKeone,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dion Polulack,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Hartley Busch,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gusella Popper,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Wits Stutts,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Afzal Rusch,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Karon McBrayne,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Judy Homa,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tarik Tester,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carole Suykens,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Saman Koverzin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kaushik Reid,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eastreg Buchan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kevyn Yu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Violante Chaurasia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Franklin Landry,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Rejean Hartsell,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Crista Reece,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Apryle Briard,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joni Netas,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nicola Hensen,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Bruce Galasso,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Margeaux Chunn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Long Esry,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lynette Brearley,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Birdie Cawley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Deana MacNeill,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Afton Tanner,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=JooEuin Peters,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jordan Normandin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brynna Swanston,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Saumitra Svo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Modestia Hersee,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gretna Ergle,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gary Denmark,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fei Isert,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Armand Bebber,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Virgina Kahnert,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Antoni Vickers,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dan Telos,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Rory Chan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gertrude Senyshyn,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Missagh Yeh,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Morganica Ashdown,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joey Moore,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rheta Knobloch,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Far Shupe,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Noni Pauley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Hera Eike,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Melisa Peacemaker,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wylo Woodley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Collette Quevillon,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Renelle Ducic,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ailis Gabe,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Selena Sanoy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Electra Hassold,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Terry Johnston,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Franny Towill,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Duquette Pratt,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Alb Hussein,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sam Ference,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Yukinobu Riebl,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tarus Hillard,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ramonda Lott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Anitra Arora,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sonja Tohama,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rycca Bloemker,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Joydeep Elledge,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Silvie Nevardauskis,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ilene Curnow,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ailee Sudbey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maarten Mejia,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=PierreAndre Abbate,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kizzie Adey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Krystn Skerlak,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kailey Southon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=PohSoon Corpening,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cissy Systest,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ailee Garry,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Juliet Goyal,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gleda Carldata,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Elane Latour,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Matt Sharman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Violante Moomey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Valery Howell,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lorri Fontanini,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ivette Frantz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cyndie Mohideen,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ardine Grimm,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Raine Capps,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Skyler Khurana,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kris Warfel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ruby Stansbury,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=John Seery,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Callida Boarder,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Rona Cosgrove,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tasia Anchia,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Wallis Barentsen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Fan Cranston,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Helen Hyde,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Raeann OKarina,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Olga Magee,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sibel Munter,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Carmella Pillars,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tabbi Bladon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Umesh Areu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Orel Delahay,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Corrie Cipolla,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Longdist Goliss,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Belissa Northcott,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Eula Gouldson,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Beatrix Rea,ou=Management,dc=bitwarden,dc=com -memberuid: cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Larysa Fleming,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Andras Dziemian,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Afke Coallier,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lachu Fricks,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Pammy Slautterback,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Maribelle Balderston,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Vahe Birks,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tobe PKDCD,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Melynda Phillips,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Arina Collazo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Cesare Karolefski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Partick Bassil,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Siamak Wagle,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Reine Hamlett,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Albert Tebinka,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Wally Pedneault,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shahriar Farnham,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Concordia Thorman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Sarath Lathrop,ou=Management,dc=bitwarden,dc=com -memberuid: cn=HanVan Cuthill,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Demetri Acree,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gord St,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Robyn Porter,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Kristine Ratnam,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Trude Leander,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Jacinta Burkepile,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sissela Mathewson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kaela Gleason,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mandi Popovich,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bhal Mymryk,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wenxi Sethian,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mabel Kwa,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Neysa Uguccioni,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Toby Ayoup,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Drusilla Allman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=SangMaun Rabzel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bettine Bresnan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Blithe Searl,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Haig Talton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ryman Smerdell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Admin Cassar,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Esmail Santos,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Walter Coley,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jeanne Boult,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Avie Scourneau,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bettie Cescon,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maureene Weiser,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Melisent Annibale,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bonnie Corse,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Querida Gertridge,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Lily Stites,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Woon Klimon,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Carlota Oros,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gil Spurway,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Licha Weinbender,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Mirabella Awano,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lura Centis,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Aveline Berhane,ou=Management,dc=bitwarden,dc=com -memberuid: cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Billy Costantino,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dorrie Fortner,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carleen Toly,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Vijay Nassr,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sandro Gorius,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=He Crowder,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Atta Kutch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Devon Kaudel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Deidre Cirulli,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kala Bourget,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Charo Hembrick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Janene Torrell,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Eben Shayanpour,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Yves Dhir,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Aile Frink,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Damara Jaswal,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Ethelin Girotti,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pramod Foessl,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Octavia Handschy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kerstin Nandi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Elwood Bouick,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clarence Dpu,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shama Norton,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Vo Sauer,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gilberte Ferland,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Valeria Harmon,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dorthy Youngman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gilles Litherland,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Erick Wicht,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Kassie Nava,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Opaline Ober,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Madan Baab,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Htd Hersee,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dorita Anker,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Christopher Cohea,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Robbie Bunting,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Masood Shipe,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Bernardina Sreedhar,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Atl Corbin,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alice Knighton,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Fern Okafo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Brietta Dupras,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Wanda Becker,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gerben Kozlowski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Maynard Burness,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sylva Milloy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=CheeYin Westphal,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Bawn McNeal,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Raine Fogle,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eyde Sitch,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Windowing Walkins,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Alisun Hampel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Quinta Pimpare,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jemimah Whitney,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Marta McNerlan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Miranda Sobel,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Minda Andric,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Roselle Baber,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Four Keene,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Souza Salyer,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Petri Beehler,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Annadiane Hyrne,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Freida Nock,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Adrianne Hollenbach,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Leon Hulme,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Izabel Schnell,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jammie Parisien,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cori Oreilly,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Enzo Rodgers,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pic Basinger,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Paqs Atalla,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Norina McClymont,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sadella Psklib,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Bqb Mulvie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jenica Brophy,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Steen Dubuc,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shea Blesi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kusum Tilden,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Famke Chuah,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=HoaVan Drummer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Metrics McCoy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Nicolas Lally,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Candie Siefert,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Ulf Novak,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Paulette Unkefer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Gwendolin Kean,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marthe Harvey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Francene AuYeung,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Juliana Omura,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Emelina Elliot,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Waverly Monforton,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gladys Bilanski,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Analise Shea,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Cart Boutin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Kunie Hoorman,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Odelinda Keilty,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Stella Sist,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Dayle Schenkel,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Arlyn McBroom,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Brear Jensen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Ann Bulengo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Esma Jak,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Larkin Nance,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mirelle Novak,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Dorothy Laurich,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Shyam Wernik,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Niek Rahmany,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jung Kimler,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lolita Mufti,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Coord Kalleward,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Garnet Shames,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fara Shireman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shahid Neil,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Starlene Falardeau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Marce Plaisance,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lena Mathias,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gaby Booking,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Michaela Trimble,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lucie Kilner,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Danyelle Rider,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Mariska Tien,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Belvia Lamoureux,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jian Marneris,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Dagmar Moseby,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Casie Ress,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hrinfo Okura,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Korney Fadlallah,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jiri Leftwich,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tildie Abbott,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Kalindi Keehan,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Collette Patchett,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cristiane Ruth,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sedat Gurley,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Sharai Coxall,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Franny Walton,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Aryn Klimas,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dorise Yue,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mellisa Gustlin,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Butch Roper,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Mendel Rolls,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Cecelia Dowse,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Anette Lassig,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Gio Londhe,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tadayuki Mak,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ri Trisic,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ileana Doyle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nico Badelt,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Ragu Lieure,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Claudia Berhane,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Silvana Tunali,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Anand Henshaw,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Imtaz Ledamun,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Meryl Diaz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Saraann Anastasio,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Declan Creane,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Terrell Mathieson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Olympia DMS,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Mounir Pullum,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Constantina Faou,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Santiago Georges,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Marinette Ficker,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Janet Pankiw,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Else Hazenboom,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Saibal Traynor,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Khue Mein,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=PeyKee Fetterman,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Claire Reinlie,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Shawna Lahlum,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Darelle Childress,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kessiah Alford,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Theressa Olivier,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pauly Jago,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Collete Krabicka,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kim Highsmith,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elladine Schwab,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=XiaoMing Dorr,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Clement Durant,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rejeanne Shelegey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nicky McDowall,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Thomasa Fulk,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Florri Tregenza,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Hester Colbourne,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anitra Hugel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kanu Cuervo,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Faruk Hanzel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Trent Carli,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maurene Paliga,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Minette Manner,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elio Lough,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Abigael Noddin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Winna Bono,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Karalynn Paylor,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Caterina Pittam,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Michaela Cuffle,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sibylle Martins,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jade Noguchi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Guenna Lazure,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Beatrisa Staring,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Bernadine Schrang,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alese Rigdon,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=MaryJo Harms,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Dorris Akita,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Thanh Dewitt,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Davita Stenson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Pak Krone,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Idalina Vogt,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yuan Wester,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Riaz Gulis,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Odetta Masse,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Stacia Presgrove,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Norbert Salazar,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nevein Grimshaw,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Annaliese Hudak,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Andromache Machika,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Meriann Larose,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Agathe Kikuchi,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Somsak Fields,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zitella Hussein,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Varennes ParkerShane,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Idelle Leicht,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Darb Swinkels,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Koren Perfetti,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kelcey Reuss,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Lujanka Contardo,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Barton Seggie,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Julee Norby,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sharai Torok,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Cefee Donelan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jderek Sankey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sid Barnhill,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Kamlesh Hoang,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sarath McCall,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Nermana Douglas,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Student Sonne,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Maisie DaGama,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Erminie Battershill,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Jung Betts,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Maddi Naolu,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Ammar Parise,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Agata Khouderchan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Joella Casey,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sharone Torrell,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ebony Vitaglian,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Evanne Callos,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Purvee Kwast,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Eluned Vinson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Melisandra McVey,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Philipa Netdbs,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Art Totten,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Roxanna Colquette,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Janessa Bienek,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Christa Schrage,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Glenna Trefry,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Cecco Langevin,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Magdy McCloskey,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Filion Karam,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nerissa Volz,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Barb Crockett,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Klara deSalis,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Teri Hildum,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Lorenza Pafilis,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anda Joyce,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Rustu Biss,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Geer Devault,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Bea Nemec,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Veneice Tobias,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Dorolice Communication,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Danica Middleton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Bradley Stokker,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Kessia Reiser,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lope Keim,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Tonya Hine,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Lisa Lande,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lapkin Matney,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lenee Topp,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Sacto Miskelly,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Sib Schissel,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Tessa Severin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Drucill Brickey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Caterina StMartin,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rojer Jurek,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Shannah Colpitts,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Holst Lowder,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hernan Cano,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Opto Broten,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Jill Domine,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Calypso Bolding,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nicolina Scp,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Walter Cuddy,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ruby Mattson,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Ranna Bedford,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Amalle Rodi,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Eolande Tarver,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Tilda Kirady,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Shailin Harris,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Axel Panter,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Karel McKerrow,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Arabelle Jepson,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Donna Imhof,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Lucila Caruth,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Serban Kamal,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Suzann Minter,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Roselia Valvasori,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nancey ODonovan,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Deva Deugau,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Almire Rokas,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Aideen Sterian,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Norma Gording,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Caye LeTarte,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Odile Blaufus,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Gerti Macchiusi,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Carmelita Fucito,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Xenia Ertan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Foster Swinson,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Fwpreg Liem,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Yevette Egan,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Clarice Seymour,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Miles Khorami,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Joon Panton,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Olympe Calmejane,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Felicdad Thornber,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pradeep Recktenwald,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Vanya Sherrill,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Kittie Bangia,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Freek Xayaraj,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Emelina Dotsey,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Jacob Scss,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Nicholas Palasek,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Business Worsley,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Dita Billard,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Coleman Holman,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Elberta Shnider,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Mirabel Queries,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Arts Marttinen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Velma Goldberg,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Anet Sanity,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Pars Events,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Wilow Veloz,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Grayce Dunnion,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Starlin Schrader,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Desire Nagle,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Shaylah Haertel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Tomi LaFargue,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Willard Kammerer,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Tyronda Wippel,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Carmina Fulmer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Sukey Sato,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Lawrence Perrella,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Nathan Trumble,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Noslab Gribbons,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Alayne Jurman,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Ashlee Lamey,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Miquela Gilles,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Arlana Ghani,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Avinash Rospars,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Raman Reporting,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Vince Dallal,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Leanne Gorfine,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Corinna Bashyam,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Etta Medlin,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Stew Chopowick,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Josie Clysdale,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Moyna Rolph,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Roze Wiebe,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Khai Habelrih,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=How Zisu,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Morena Zeggil,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden,dc=com -memberuid: cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Mathew Jarvie,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Joelle Eason,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Angil Dungan,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Geraldine Landaveri,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Madeline Congdon,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Rod Bedford,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden,dc=com -memberuid: cn=Eula Steip,ou=Janitorial,dc=bitwarden,dc=com -memberuid: cn=Lennart Murphin,ou=Human Resources,dc=bitwarden,dc=com -memberuid: cn=Emmye Reeves,ou=Peons,dc=bitwarden,dc=com -memberuid: cn=Madel Fiorile,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Hiroki Edwards,ou=Product Development,dc=bitwarden,dc=com -memberuid: cn=Douglass Rivest,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Tammi Kramer,ou=Management,dc=bitwarden,dc=com -memberuid: cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden,dc=com -memberuid: cn=Brunhilda Bezdel,ou=Management,dc=bitwarden,dc=com -objectclass: posixGroup -objectclass: top - -dn: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edlene Morocz -sn: Morocz -description: This is Edlene Morocz's description -facsimileTelephoneNumber: +1 213 196-5347 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 817-2787 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: MoroczE -givenName: Edlene -mail: MoroczE@a11f000faf34447ab870e32427af41fb.bitwarden.com -carLicense: X1N60W -departmentNumber: 9457 -employeeType: Normal -homePhone: +1 213 454-8447 -initials: E. M. -mobile: +1 213 542-4751 -pager: +1 213 118-8171 -roomNumber: 9259 - -dn: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mimi Mufti -sn: Mufti -description: This is Mimi Mufti's description -facsimileTelephoneNumber: +1 804 903-6336 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 804 913-9640 -title: Associate Peons Punk -userPassword: Password1 -uid: MuftiM -givenName: Mimi -mail: MuftiM@5ce1ae303e1b4216bb8884b6b93d1c56.bitwarden.com -carLicense: MOWG46 -departmentNumber: 7294 -employeeType: Employee -homePhone: +1 804 613-2718 -initials: M. M. -mobile: +1 804 189-7395 -pager: +1 804 551-4350 -roomNumber: 9719 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelon PueGilchrist -sn: PueGilchrist -description: This is Madelon PueGilchrist's description -facsimileTelephoneNumber: +1 510 970-3519 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 487-7016 -title: Junior Human Resources Fellow -userPassword: Password1 -uid: PueGilcM -givenName: Madelon -mail: PueGilcM@465384ee6f90454f9bd37364e1619114.bitwarden.com -carLicense: YBPWV5 -departmentNumber: 9545 -employeeType: Employee -homePhone: +1 510 260-9480 -initials: M. P. -mobile: +1 510 863-2301 -pager: +1 510 963-2278 -roomNumber: 8639 -secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elianore Snapper -sn: Snapper -description: This is Elianore Snapper's description -facsimileTelephoneNumber: +1 510 220-1300 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 575-8366 -title: Chief Payroll Pinhead -userPassword: Password1 -uid: SnapperE -givenName: Elianore -mail: SnapperE@3ffb284a6509471fa1b109716579396c.bitwarden.com -carLicense: VPIOW8 -departmentNumber: 5917 -employeeType: Normal -homePhone: +1 510 270-9446 -initials: E. S. -mobile: +1 510 269-7389 -pager: +1 510 274-1124 -roomNumber: 9430 -secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lujanka Dickford -sn: Dickford -description: This is Lujanka Dickford's description -facsimileTelephoneNumber: +1 415 731-3707 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 222-6674 -title: Junior Product Development Madonna -userPassword: Password1 -uid: DickforL -givenName: Lujanka -mail: DickforL@bf3c648ed6d6430384d28d39f0e9c516.bitwarden.com -carLicense: SUOR33 -departmentNumber: 1279 -employeeType: Employee -homePhone: +1 415 131-1801 -initials: L. D. -mobile: +1 415 816-7816 -pager: +1 415 996-8570 -roomNumber: 9132 -secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nedi Siegel -sn: Siegel -description: This is Nedi Siegel's description -facsimileTelephoneNumber: +1 206 709-2980 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 506-9180 -title: Master Product Development Visionary -userPassword: Password1 -uid: SiegelN -givenName: Nedi -mail: SiegelN@e88c29e7defd4cc4a4f9f6a6238e817f.bitwarden.com -carLicense: 9EAHWJ -departmentNumber: 8079 -employeeType: Employee -homePhone: +1 206 336-3044 -initials: N. S. -mobile: +1 206 165-6000 -pager: +1 206 266-8020 -roomNumber: 8562 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thelma Stampfl -sn: Stampfl -description: This is Thelma Stampfl's description -facsimileTelephoneNumber: +1 408 372-9960 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 232-6141 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: StampflT -givenName: Thelma -mail: StampflT@3bd17db97361499690e9a4a1c0655d19.bitwarden.com -carLicense: JAFKQG -departmentNumber: 4831 -employeeType: Contract -homePhone: +1 408 300-5402 -initials: T. S. -mobile: +1 408 977-5303 -pager: +1 408 555-2023 -roomNumber: 9826 -secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Simulation Beswick -sn: Beswick -description: This is Simulation Beswick's description -facsimileTelephoneNumber: +1 510 166-6046 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 246-1321 -title: Supreme Management Grunt -userPassword: Password1 -uid: BeswickS -givenName: Simulation -mail: BeswickS@e4326b57161d41be8c559868d23f22e4.bitwarden.com -carLicense: WE4Y8J -departmentNumber: 4825 -employeeType: Contract -homePhone: +1 510 399-9500 -initials: S. B. -mobile: +1 510 907-6401 -pager: +1 510 412-9093 -roomNumber: 8235 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherrie Bellehumeur -sn: Bellehumeur -description: This is Sherrie Bellehumeur's description -facsimileTelephoneNumber: +1 408 274-7999 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 770-1558 -title: Master Management Developer -userPassword: Password1 -uid: BellehuS -givenName: Sherrie -mail: BellehuS@5d35d83c207d418fad061afb7ba230bf.bitwarden.com -carLicense: 3TS4JN -departmentNumber: 6887 -employeeType: Contract -homePhone: +1 408 982-8635 -initials: S. B. -mobile: +1 408 456-9508 -pager: +1 408 859-6900 -roomNumber: 8954 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ola Paulhus -sn: Paulhus -description: This is Ola Paulhus's description -facsimileTelephoneNumber: +1 213 790-2698 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 440-3345 -title: Master Management President -userPassword: Password1 -uid: PaulhusO -givenName: Ola -mail: PaulhusO@f2e251b2cd334a149a91e0fa8b8a2220.bitwarden.com -carLicense: K6NH8O -departmentNumber: 2268 -employeeType: Contract -homePhone: +1 213 475-3911 -initials: O. P. -mobile: +1 213 784-4258 -pager: +1 213 821-4722 -roomNumber: 8555 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yen Sharkey -sn: Sharkey -description: This is Yen Sharkey's description -facsimileTelephoneNumber: +1 415 319-8087 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 585-5239 -title: Supreme Peons President -userPassword: Password1 -uid: SharkeyY -givenName: Yen -mail: SharkeyY@f23640bc04e54c3b84040581a3dccada.bitwarden.com -carLicense: BNI3E0 -departmentNumber: 2641 -employeeType: Contract -homePhone: +1 415 230-5745 -initials: Y. S. -mobile: +1 415 754-9353 -pager: +1 415 289-1573 -roomNumber: 9570 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corkstown Sheppard -sn: Sheppard -description: This is Corkstown Sheppard's description -facsimileTelephoneNumber: +1 206 285-5462 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 245-9952 -title: Master Administrative Consultant -userPassword: Password1 -uid: ShepparC -givenName: Corkstown -mail: ShepparC@327fab76e13f495691accc9986f353a5.bitwarden.com -carLicense: 2PSMN3 -departmentNumber: 2440 -employeeType: Employee -homePhone: +1 206 242-1931 -initials: C. S. -mobile: +1 206 560-9143 -pager: +1 206 810-6643 -roomNumber: 9152 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aila Koster -sn: Koster -description: This is Aila Koster's description -facsimileTelephoneNumber: +1 206 782-6101 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 266-3950 -title: Chief Peons Mascot -userPassword: Password1 -uid: KosterA -givenName: Aila -mail: KosterA@17b298c689464c4385fe9cac8f40eea6.bitwarden.com -carLicense: ELSFI9 -departmentNumber: 1623 -employeeType: Normal -homePhone: +1 206 685-1218 -initials: A. K. -mobile: +1 206 164-3685 -pager: +1 206 262-2607 -roomNumber: 8399 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dacia Colterman -sn: Colterman -description: This is Dacia Colterman's description -facsimileTelephoneNumber: +1 804 184-2015 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 812-1718 -title: Chief Human Resources Pinhead -userPassword: Password1 -uid: ColtermD -givenName: Dacia -mail: ColtermD@752a496e92da43f3852dc6fc94c2530e.bitwarden.com -carLicense: S4G474 -departmentNumber: 9843 -employeeType: Normal -homePhone: +1 804 277-8342 -initials: D. C. -mobile: +1 804 921-3703 -pager: +1 804 360-7921 -roomNumber: 9092 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helma Bento -sn: Bento -description: This is Helma Bento's description -facsimileTelephoneNumber: +1 415 907-5104 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 462-2425 -title: Chief Product Development Mascot -userPassword: Password1 -uid: BentoH -givenName: Helma -mail: BentoH@be4e574e5026401884f8759627863563.bitwarden.com -carLicense: 0A82WT -departmentNumber: 4055 -employeeType: Contract -homePhone: +1 415 794-5027 -initials: H. B. -mobile: +1 415 829-7674 -pager: +1 415 240-4510 -roomNumber: 9074 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Holst Issa -sn: Issa -description: This is Holst Issa's description -facsimileTelephoneNumber: +1 415 556-6013 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 797-1114 -title: Master Human Resources Dictator -userPassword: Password1 -uid: IssaH -givenName: Holst -mail: IssaH@780f09ce8c394dd7859dd4f97439f35d.bitwarden.com -carLicense: 9IM36P -departmentNumber: 1940 -employeeType: Contract -homePhone: +1 415 159-6372 -initials: H. I. -mobile: +1 415 782-8782 -pager: +1 415 618-7794 -roomNumber: 8026 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolina Eu -sn: Eu -description: This is Nicolina Eu's description -facsimileTelephoneNumber: +1 818 949-8304 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 358-1448 -title: Chief Management Director -userPassword: Password1 -uid: EuN -givenName: Nicolina -mail: EuN@62b33fdd2568434bbbd48333e7f20ed7.bitwarden.com -carLicense: JAY4W8 -departmentNumber: 2978 -employeeType: Employee -homePhone: +1 818 533-3850 -initials: N. E. -mobile: +1 818 188-6650 -pager: +1 818 849-1319 -roomNumber: 8563 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nobuko Nyland -sn: Nyland -description: This is Nobuko Nyland's description -facsimileTelephoneNumber: +1 804 888-2241 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 980-1045 -title: Associate Payroll Fellow -userPassword: Password1 -uid: NylandN -givenName: Nobuko -mail: NylandN@d4b6d833d5a74158a2213fcbac0525a9.bitwarden.com -carLicense: 3BE52I -departmentNumber: 4578 -employeeType: Employee -homePhone: +1 804 385-9529 -initials: N. N. -mobile: +1 804 663-2393 -pager: +1 804 505-2190 -roomNumber: 8674 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erlene Hargrow -sn: Hargrow -description: This is Erlene Hargrow's description -facsimileTelephoneNumber: +1 213 214-1535 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 213 909-8556 -title: Supreme Payroll Dictator -userPassword: Password1 -uid: HargrowE -givenName: Erlene -mail: HargrowE@a48701aa8d324e65a88e2c654b93d791.bitwarden.com -carLicense: UMYHG8 -departmentNumber: 5092 -employeeType: Employee -homePhone: +1 213 812-2616 -initials: E. H. -mobile: +1 213 201-5480 -pager: +1 213 579-5927 -roomNumber: 9601 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aila Mawani -sn: Mawani -description: This is Aila Mawani's description -facsimileTelephoneNumber: +1 804 858-3865 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 237-5893 -title: Master Product Testing Consultant -userPassword: Password1 -uid: MawaniA -givenName: Aila -mail: MawaniA@67e3aaef7f7f4f1cbd8f4f936f598c13.bitwarden.com -carLicense: PSW05L -departmentNumber: 9243 -employeeType: Contract -homePhone: +1 804 150-9990 -initials: A. M. -mobile: +1 804 983-5569 -pager: +1 804 707-4672 -roomNumber: 9817 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eula Neault -sn: Neault -description: This is Eula Neault's description -facsimileTelephoneNumber: +1 415 817-2165 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 790-3852 -title: Junior Payroll Engineer -userPassword: Password1 -uid: NeaultE -givenName: Eula -mail: NeaultE@5f64c8c895024a00af4d42855babab9f.bitwarden.com -carLicense: M2XS7I -departmentNumber: 1514 -employeeType: Employee -homePhone: +1 415 745-1170 -initials: E. N. -mobile: +1 415 447-3096 -pager: +1 415 435-1278 -roomNumber: 9333 -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grata Tomacic -sn: Tomacic -description: This is Grata Tomacic's description -facsimileTelephoneNumber: +1 213 518-4396 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 213 596-9588 -title: Master Administrative Mascot -userPassword: Password1 -uid: TomacicG -givenName: Grata -mail: TomacicG@79f438ac5a2045c28f6ad4893a72e3bf.bitwarden.com -carLicense: AET358 -departmentNumber: 9139 -employeeType: Normal -homePhone: +1 213 123-1709 -initials: G. T. -mobile: +1 213 837-4407 -pager: +1 213 110-2239 -roomNumber: 8508 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebekah Gallinger -sn: Gallinger -description: This is Rebekah Gallinger's description -facsimileTelephoneNumber: +1 510 586-4114 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 192-8489 -title: Chief Payroll Engineer -userPassword: Password1 -uid: GallingR -givenName: Rebekah -mail: GallingR@520ff39da95249c7ade86c3a64b17f3f.bitwarden.com -carLicense: MP8647 -departmentNumber: 3627 -employeeType: Contract -homePhone: +1 510 601-8858 -initials: R. G. -mobile: +1 510 755-7634 -pager: +1 510 116-1560 -roomNumber: 8429 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurizia Skillen -sn: Skillen -description: This is Maurizia Skillen's description -facsimileTelephoneNumber: +1 206 853-2890 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 380-6177 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: SkillenM -givenName: Maurizia -mail: SkillenM@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com -carLicense: O0F949 -departmentNumber: 9722 -employeeType: Employee -homePhone: +1 206 435-2526 -initials: M. S. -mobile: +1 206 455-8226 -pager: +1 206 501-8426 -roomNumber: 9342 -secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Larissa Gillette -sn: Gillette -description: This is Larissa Gillette's description -facsimileTelephoneNumber: +1 510 690-9348 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 713-3384 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: GillettL -givenName: Larissa -mail: GillettL@8de5f1673aad4b42ac90ff25da206774.bitwarden.com -carLicense: CTNTS3 -departmentNumber: 3064 -employeeType: Employee -homePhone: +1 510 622-9380 -initials: L. G. -mobile: +1 510 707-1772 -pager: +1 510 974-7268 -roomNumber: 8081 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gusella Vilhan -sn: Vilhan -description: This is Gusella Vilhan's description -facsimileTelephoneNumber: +1 804 474-8855 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 976-7327 -title: Supreme Human Resources President -userPassword: Password1 -uid: VilhanG -givenName: Gusella -mail: VilhanG@8779bd2690ca4e74bc6ad755c1a9e7dd.bitwarden.com -carLicense: R7RCJE -departmentNumber: 6921 -employeeType: Normal -homePhone: +1 804 921-2730 -initials: G. V. -mobile: +1 804 728-1627 -pager: +1 804 262-3886 -roomNumber: 8363 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Panch Sziladi -sn: Sziladi -description: This is Panch Sziladi's description -facsimileTelephoneNumber: +1 213 982-8664 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 426-7965 -title: Supreme Peons Sales Rep -userPassword: Password1 -uid: SziladiP -givenName: Panch -mail: SziladiP@5ebaa8af105c497682481efce65265ab.bitwarden.com -carLicense: IETEI9 -departmentNumber: 6220 -employeeType: Contract -homePhone: +1 213 192-2152 -initials: P. S. -mobile: +1 213 566-6617 -pager: +1 213 444-7748 -roomNumber: 8211 -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morley Chadha -sn: Chadha -description: This is Morley Chadha's description -facsimileTelephoneNumber: +1 213 476-3783 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 165-9907 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: ChadhaM -givenName: Morley -mail: ChadhaM@7e56f35864a04d13abbef377d8dec333.bitwarden.com -carLicense: J2BOOX -departmentNumber: 5822 -employeeType: Employee -homePhone: +1 213 158-9268 -initials: M. C. -mobile: +1 213 475-9361 -pager: +1 213 327-6993 -roomNumber: 9858 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kem Bizga -sn: Bizga -description: This is Kem Bizga's description -facsimileTelephoneNumber: +1 206 134-2002 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 257-6532 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: BizgaK -givenName: Kem -mail: BizgaK@e82a7163f0b1403c8ef83f8850e77a61.bitwarden.com -carLicense: 6PR33Q -departmentNumber: 1295 -employeeType: Normal -homePhone: +1 206 674-4273 -initials: K. B. -mobile: +1 206 130-9129 -pager: +1 206 406-1370 -roomNumber: 8231 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmel Vawter -sn: Vawter -description: This is Carmel Vawter's description -facsimileTelephoneNumber: +1 206 817-4342 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 181-3356 -title: Chief Payroll Vice President -userPassword: Password1 -uid: VawterC -givenName: Carmel -mail: VawterC@058f9e396c334403aa5edc7cb4dcabbc.bitwarden.com -carLicense: M0TDCM -departmentNumber: 6780 -employeeType: Employee -homePhone: +1 206 678-6578 -initials: C. V. -mobile: +1 206 212-2485 -pager: +1 206 822-3494 -roomNumber: 9914 -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corly Tesch -sn: Tesch -description: This is Corly Tesch's description -facsimileTelephoneNumber: +1 510 760-7291 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 990-3597 -title: Junior Payroll Director -userPassword: Password1 -uid: TeschC -givenName: Corly -mail: TeschC@9e46d49d53a540a080afbdcfa4525ae4.bitwarden.com -carLicense: GYQP4V -departmentNumber: 7035 -employeeType: Normal -homePhone: +1 510 777-3164 -initials: C. T. -mobile: +1 510 937-5713 -pager: +1 510 868-2076 -roomNumber: 9827 -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laureen Ladet -sn: Ladet -description: This is Laureen Ladet's description -facsimileTelephoneNumber: +1 818 950-1868 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 269-5342 -title: Associate Product Development Architect -userPassword: Password1 -uid: LadetL -givenName: Laureen -mail: LadetL@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com -carLicense: FMEM0H -departmentNumber: 2423 -employeeType: Employee -homePhone: +1 818 171-7634 -initials: L. L. -mobile: +1 818 216-7834 -pager: +1 818 270-4625 -roomNumber: 9095 -secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnneMarie Sills -sn: Sills -description: This is AnneMarie Sills's description -facsimileTelephoneNumber: +1 408 365-5172 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 787-3957 -title: Chief Administrative Director -userPassword: Password1 -uid: SillsA -givenName: AnneMarie -mail: SillsA@6c5d1cc04bcc4690b1cd5f323caabcec.bitwarden.com -carLicense: BEE6XM -departmentNumber: 4141 -employeeType: Contract -homePhone: +1 408 506-7695 -initials: A. S. -mobile: +1 408 550-5955 -pager: +1 408 911-2731 -roomNumber: 9304 -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonny Creamer -sn: Creamer -description: This is Sonny Creamer's description -facsimileTelephoneNumber: +1 415 475-1215 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 404-1221 -title: Supreme Janitorial Mascot -userPassword: Password1 -uid: CreamerS -givenName: Sonny -mail: CreamerS@b88d4b807454424b816f4d4edf5c78f3.bitwarden.com -carLicense: YH7A1T -departmentNumber: 1369 -employeeType: Contract -homePhone: +1 415 378-6179 -initials: S. C. -mobile: +1 415 457-8850 -pager: +1 415 627-4857 -roomNumber: 9843 -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thia Rigsbee -sn: Rigsbee -description: This is Thia Rigsbee's description -facsimileTelephoneNumber: +1 415 990-2803 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 145-5592 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: RigsbeeT -givenName: Thia -mail: RigsbeeT@69ddae2b604b41af97e31581db1a7259.bitwarden.com -carLicense: IAM295 -departmentNumber: 9186 -employeeType: Employee -homePhone: +1 415 867-9586 -initials: T. R. -mobile: +1 415 352-3366 -pager: +1 415 787-4318 -roomNumber: 8150 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Access Banerd -sn: Banerd -description: This is Access Banerd's description -facsimileTelephoneNumber: +1 818 186-1671 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 602-7110 -title: Supreme Human Resources Consultant -userPassword: Password1 -uid: BanerdA -givenName: Access -mail: BanerdA@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com -carLicense: L8SF9H -departmentNumber: 4536 -employeeType: Normal -homePhone: +1 818 519-6470 -initials: A. B. -mobile: +1 818 961-3909 -pager: +1 818 595-5754 -roomNumber: 8992 -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mina Chee -sn: Chee -description: This is Mina Chee's description -facsimileTelephoneNumber: +1 818 347-1675 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 887-6598 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: CheeM -givenName: Mina -mail: CheeM@73b4280752ea430d90a4e41ca224258f.bitwarden.com -carLicense: 7V2TOX -departmentNumber: 5325 -employeeType: Employee -homePhone: +1 818 442-8788 -initials: M. C. -mobile: +1 818 926-8392 -pager: +1 818 182-6873 -roomNumber: 8535 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dpnlab Guilbert -sn: Guilbert -description: This is Dpnlab Guilbert's description -facsimileTelephoneNumber: +1 818 445-1038 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 980-5792 -title: Chief Payroll Punk -userPassword: Password1 -uid: GuilberD -givenName: Dpnlab -mail: GuilberD@a26a9c7d638a4a938f85aa60d8cdaebf.bitwarden.com -carLicense: O2SREJ -departmentNumber: 3465 -employeeType: Contract -homePhone: +1 818 181-4139 -initials: D. G. -mobile: +1 818 521-8648 -pager: +1 818 456-6938 -roomNumber: 8356 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fabienne Vempati -sn: Vempati -description: This is Fabienne Vempati's description -facsimileTelephoneNumber: +1 804 854-6718 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 936-7883 -title: Master Management Vice President -userPassword: Password1 -uid: VempatiF -givenName: Fabienne -mail: VempatiF@ad1687f9a97b47bf9fe47c86e586e467.bitwarden.com -carLicense: H8KLRQ -departmentNumber: 7361 -employeeType: Normal -homePhone: +1 804 118-2632 -initials: F. V. -mobile: +1 804 419-3917 -pager: +1 804 916-8154 -roomNumber: 8064 -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saman Bosch -sn: Bosch -description: This is Saman Bosch's description -facsimileTelephoneNumber: +1 206 422-1014 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 454-8400 -title: Junior Management Grunt -userPassword: Password1 -uid: BoschS -givenName: Saman -mail: BoschS@f009b38fd0b643efae4b268d5ce0abb7.bitwarden.com -carLicense: JN9S6L -departmentNumber: 8810 -employeeType: Employee -homePhone: +1 206 318-1923 -initials: S. B. -mobile: +1 206 413-5674 -pager: +1 206 228-3058 -roomNumber: 9989 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farag Collevecchio -sn: Collevecchio -description: This is Farag Collevecchio's description -facsimileTelephoneNumber: +1 408 310-7638 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 917-6792 -title: Supreme Peons Manager -userPassword: Password1 -uid: ColleveF -givenName: Farag -mail: ColleveF@107125a246e24f24a9cf40da49e16737.bitwarden.com -carLicense: B70JAR -departmentNumber: 9473 -employeeType: Contract -homePhone: +1 408 231-8090 -initials: F. C. -mobile: +1 408 675-4868 -pager: +1 408 288-4564 -roomNumber: 8704 -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com - -dn: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randhir Dobransky -sn: Dobransky -description: This is Randhir Dobransky's description -facsimileTelephoneNumber: +1 804 410-5773 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 567-3046 -title: Junior Peons Technician -userPassword: Password1 -uid: DobransR -givenName: Randhir -mail: DobransR@4dd34983587f4a0b9ee3f3c06d2784e6.bitwarden.com -carLicense: 5G43WG -departmentNumber: 5047 -employeeType: Employee -homePhone: +1 804 114-2466 -initials: R. D. -mobile: +1 804 169-9739 -pager: +1 804 559-8453 -roomNumber: 8582 -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maddy Beausejour -sn: Beausejour -description: This is Maddy Beausejour's description -facsimileTelephoneNumber: +1 206 324-9938 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 996-5727 -title: Associate Administrative Mascot -userPassword: Password1 -uid: BeausejM -givenName: Maddy -mail: BeausejM@78ace4543e8b4e7abd63d7e3b9ef6ace.bitwarden.com -carLicense: FOTACG -departmentNumber: 2460 -employeeType: Contract -homePhone: +1 206 890-2822 -initials: M. B. -mobile: +1 206 525-7772 -pager: +1 206 979-1178 -roomNumber: 8945 -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carita Stetner -sn: Stetner -description: This is Carita Stetner's description -facsimileTelephoneNumber: +1 213 167-4173 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 213 751-8575 -title: Chief Administrative Mascot -userPassword: Password1 -uid: StetnerC -givenName: Carita -mail: StetnerC@f450bfcb7980440badfefb5db1f9b1e7.bitwarden.com -carLicense: X64JMT -departmentNumber: 5334 -employeeType: Contract -homePhone: +1 213 811-2008 -initials: C. S. -mobile: +1 213 511-3531 -pager: +1 213 599-8641 -roomNumber: 9710 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dvm Ricketson -sn: Ricketson -description: This is Dvm Ricketson's description -facsimileTelephoneNumber: +1 804 675-7492 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 804 128-4814 -title: Junior Payroll Grunt -userPassword: Password1 -uid: RicketsD -givenName: Dvm -mail: RicketsD@89dcd9d2c857498a86ade06ecc312230.bitwarden.com -carLicense: AUIRNF -departmentNumber: 3759 -employeeType: Normal -homePhone: +1 804 974-5513 -initials: D. R. -mobile: +1 804 772-7296 -pager: +1 804 993-6437 -roomNumber: 8301 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebeca Gantt -sn: Gantt -description: This is Rebeca Gantt's description -facsimileTelephoneNumber: +1 510 650-3292 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 359-1544 -title: Master Janitorial Evangelist -userPassword: Password1 -uid: GanttR -givenName: Rebeca -mail: GanttR@b61ae18043f9458aa61f6fc88ad93618.bitwarden.com -carLicense: 6U8UMA -departmentNumber: 1649 -employeeType: Employee -homePhone: +1 510 182-9516 -initials: R. G. -mobile: +1 510 361-9817 -pager: +1 510 671-6076 -roomNumber: 9096 -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viktoria Relations -sn: Relations -description: This is Viktoria Relations's description -facsimileTelephoneNumber: +1 804 813-7073 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 400-1663 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: RelatioV -givenName: Viktoria -mail: RelatioV@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com -carLicense: P1BTHM -departmentNumber: 4393 -employeeType: Contract -homePhone: +1 804 183-8953 -initials: V. R. -mobile: +1 804 606-8133 -pager: +1 804 440-5965 -roomNumber: 9584 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hot Hisaki -sn: Hisaki -description: This is Hot Hisaki's description -facsimileTelephoneNumber: +1 213 403-9511 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 213 371-5013 -title: Junior Product Testing Evangelist -userPassword: Password1 -uid: HisakiH -givenName: Hot -mail: HisakiH@096f60c023cb468a8d116af8aa53dafa.bitwarden.com -carLicense: 5UFOD1 -departmentNumber: 3107 -employeeType: Contract -homePhone: +1 213 389-4215 -initials: H. H. -mobile: +1 213 286-1936 -pager: +1 213 825-1882 -roomNumber: 9243 -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristien Reinwald -sn: Reinwald -description: This is Kristien Reinwald's description -facsimileTelephoneNumber: +1 510 675-7315 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 510 824-1335 -title: Associate Payroll Assistant -userPassword: Password1 -uid: ReinwalK -givenName: Kristien -mail: ReinwalK@d0277d6f48c14695a4405ab88f901980.bitwarden.com -carLicense: 0QPKG4 -departmentNumber: 8210 -employeeType: Employee -homePhone: +1 510 642-4832 -initials: K. R. -mobile: +1 510 309-3841 -pager: +1 510 318-6154 -roomNumber: 9835 -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anjanette Codata -sn: Codata -description: This is Anjanette Codata's description -facsimileTelephoneNumber: +1 213 970-7300 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 763-9681 -title: Junior Product Development Writer -userPassword: Password1 -uid: CodataA -givenName: Anjanette -mail: CodataA@b72198c81eb943f9965cdab0dd75e67b.bitwarden.com -carLicense: LSC7PS -departmentNumber: 6173 -employeeType: Normal -homePhone: +1 213 657-6626 -initials: A. C. -mobile: +1 213 121-3153 -pager: +1 213 896-4639 -roomNumber: 9082 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com - -dn: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antonia Killam -sn: Killam -description: This is Antonia Killam's description -facsimileTelephoneNumber: +1 213 462-6299 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 884-4630 -title: Master Management Writer -userPassword: Password1 -uid: KillamA -givenName: Antonia -mail: KillamA@d09db853699d499ba28b7118a2e128fd.bitwarden.com -carLicense: S8QV11 -departmentNumber: 1074 -employeeType: Normal -homePhone: +1 213 197-2971 -initials: A. K. -mobile: +1 213 993-3368 -pager: +1 213 832-4251 -roomNumber: 8027 -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosene Bonner -sn: Bonner -description: This is Rosene Bonner's description -facsimileTelephoneNumber: +1 206 330-3690 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 779-9181 -title: Junior Peons Warrior -userPassword: Password1 -uid: BonnerR -givenName: Rosene -mail: BonnerR@121cc33033f14e9b867c78ba3a8f3e2b.bitwarden.com -carLicense: 7DASVX -departmentNumber: 6999 -employeeType: Contract -homePhone: +1 206 226-6834 -initials: R. B. -mobile: +1 206 375-5401 -pager: +1 206 223-9164 -roomNumber: 9166 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janson Vrbetic -sn: Vrbetic -description: This is Janson Vrbetic's description -facsimileTelephoneNumber: +1 510 683-1314 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 423-4369 -title: Master Management Writer -userPassword: Password1 -uid: VrbeticJ -givenName: Janson -mail: VrbeticJ@541a9a67add74942af05ec9661f08230.bitwarden.com -carLicense: HUIYDT -departmentNumber: 5244 -employeeType: Normal -homePhone: +1 510 813-7706 -initials: J. V. -mobile: +1 510 593-6287 -pager: +1 510 679-9633 -roomNumber: 8464 -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bevyn Vonreichbauer -sn: Vonreichbauer -description: This is Bevyn Vonreichbauer's description -facsimileTelephoneNumber: +1 213 516-1688 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 459-8183 -title: Master Product Testing Dictator -userPassword: Password1 -uid: VonreicB -givenName: Bevyn -mail: VonreicB@8311a48378874d7c8881d49ce93338e6.bitwarden.com -carLicense: KM4JOT -departmentNumber: 3154 -employeeType: Employee -homePhone: +1 213 189-1175 -initials: B. V. -mobile: +1 213 513-5676 -pager: +1 213 687-5369 -roomNumber: 9856 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurijn Weidenborner -sn: Weidenborner -description: This is Maurijn Weidenborner's description -facsimileTelephoneNumber: +1 804 806-6924 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 923-3519 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: WeidenbM -givenName: Maurijn -mail: WeidenbM@3bd94762b36248a3a966e29a33d3058c.bitwarden.com -carLicense: AL8XQ6 -departmentNumber: 5875 -employeeType: Employee -homePhone: +1 804 818-5707 -initials: M. W. -mobile: +1 804 443-8704 -pager: +1 804 840-6166 -roomNumber: 9258 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Balakrishna Mystkowski -sn: Mystkowski -description: This is Balakrishna Mystkowski's description -facsimileTelephoneNumber: +1 415 934-5941 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 415 663-1585 -title: Master Product Development Mascot -userPassword: Password1 -uid: MystkowB -givenName: Balakrishna -mail: MystkowB@7f94876ebfe04b25a6342dc4d9880231.bitwarden.com -carLicense: MUCD8O -departmentNumber: 2539 -employeeType: Normal -homePhone: +1 415 237-7609 -initials: B. M. -mobile: +1 415 864-5403 -pager: +1 415 954-2899 -roomNumber: 9800 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clyde Beggs -sn: Beggs -description: This is Clyde Beggs's description -facsimileTelephoneNumber: +1 206 319-6302 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 124-3384 -title: Supreme Peons Developer -userPassword: Password1 -uid: BeggsC -givenName: Clyde -mail: BeggsC@8dd82af0c0e64a528cb0191d0b7789f2.bitwarden.com -carLicense: IUOUR1 -departmentNumber: 4621 -employeeType: Employee -homePhone: +1 206 521-4067 -initials: C. B. -mobile: +1 206 507-2194 -pager: +1 206 189-6771 -roomNumber: 9640 -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ohio Ackwood -sn: Ackwood -description: This is Ohio Ackwood's description -facsimileTelephoneNumber: +1 804 569-6378 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 283-1877 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: AckwoodO -givenName: Ohio -mail: AckwoodO@7731926b8eba477c82aacfea38c5fc13.bitwarden.com -carLicense: PMQUMD -departmentNumber: 3621 -employeeType: Normal -homePhone: +1 804 223-9823 -initials: O. A. -mobile: +1 804 687-2623 -pager: +1 804 835-6957 -roomNumber: 9218 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cal Storey -sn: Storey -description: This is Cal Storey's description -facsimileTelephoneNumber: +1 804 951-9418 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 804 679-2570 -title: Chief Human Resources President -userPassword: Password1 -uid: StoreyC -givenName: Cal -mail: StoreyC@446fda101a9542ef9472f9748a3bbad3.bitwarden.com -carLicense: SIDSBI -departmentNumber: 8387 -employeeType: Normal -homePhone: +1 804 749-7703 -initials: C. S. -mobile: +1 804 937-3701 -pager: +1 804 171-1468 -roomNumber: 8276 -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Scarlet Coyne -sn: Coyne -description: This is Scarlet Coyne's description -facsimileTelephoneNumber: +1 415 419-3495 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 429-1408 -title: Associate Human Resources Manager -userPassword: Password1 -uid: CoyneS -givenName: Scarlet -mail: CoyneS@bff70836a23e4971b616373a470331a4.bitwarden.com -carLicense: LAM5U3 -departmentNumber: 1383 -employeeType: Contract -homePhone: +1 415 277-8368 -initials: S. C. -mobile: +1 415 995-9090 -pager: +1 415 876-1155 -roomNumber: 9566 -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pearline Towsley -sn: Towsley -description: This is Pearline Towsley's description -facsimileTelephoneNumber: +1 408 214-9940 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 408 375-8243 -title: Associate Peons Assistant -userPassword: Password1 -uid: TowsleyP -givenName: Pearline -mail: TowsleyP@03118a048f5d4356bb8bbf044152a0bc.bitwarden.com -carLicense: 7PULR2 -departmentNumber: 5971 -employeeType: Employee -homePhone: +1 408 912-5717 -initials: P. T. -mobile: +1 408 752-8942 -pager: +1 408 734-7205 -roomNumber: 9631 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Violet Ninetyone -sn: Ninetyone -description: This is Violet Ninetyone's description -facsimileTelephoneNumber: +1 818 950-5802 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 714-1532 -title: Master Product Development Writer -userPassword: Password1 -uid: NinetyoV -givenName: Violet -mail: NinetyoV@c1217eb361b34f5f9200a6d2ac0e0924.bitwarden.com -carLicense: QG741W -departmentNumber: 1463 -employeeType: Employee -homePhone: +1 818 922-4828 -initials: V. N. -mobile: +1 818 810-9712 -pager: +1 818 848-7852 -roomNumber: 8994 -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hr Healy -sn: Healy -description: This is Hr Healy's description -facsimileTelephoneNumber: +1 213 608-1948 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 263-7513 -title: Master Peons Architect -userPassword: Password1 -uid: HealyH -givenName: Hr -mail: HealyH@29ea2fbdcd594c67b7900d7a29977699.bitwarden.com -carLicense: 34152W -departmentNumber: 8721 -employeeType: Normal -homePhone: +1 213 133-1193 -initials: H. H. -mobile: +1 213 146-5195 -pager: +1 213 124-8596 -roomNumber: 8425 -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ondrea Schultze -sn: Schultze -description: This is Ondrea Schultze's description -facsimileTelephoneNumber: +1 206 777-1279 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 206 786-6190 -title: Associate Peons Technician -userPassword: Password1 -uid: SchultzO -givenName: Ondrea -mail: SchultzO@f252b0badb62492c910f90ea10fa1426.bitwarden.com -carLicense: FP9348 -departmentNumber: 8547 -employeeType: Contract -homePhone: +1 206 200-1326 -initials: O. S. -mobile: +1 206 448-1187 -pager: +1 206 653-3531 -roomNumber: 8504 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lita Gille -sn: Gille -description: This is Lita Gille's description -facsimileTelephoneNumber: +1 415 607-1592 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 895-3928 -title: Master Janitorial Admin -userPassword: Password1 -uid: GilleL -givenName: Lita -mail: GilleL@985392d95f2c4602acfb90f908cc5548.bitwarden.com -carLicense: 1SI4O6 -departmentNumber: 4907 -employeeType: Employee -homePhone: +1 415 548-8051 -initials: L. G. -mobile: +1 415 133-3424 -pager: +1 415 722-4472 -roomNumber: 8116 -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joelle Delong -sn: Delong -description: This is Joelle Delong's description -facsimileTelephoneNumber: +1 818 168-8208 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 504-1735 -title: Chief Administrative Mascot -userPassword: Password1 -uid: DelongJ -givenName: Joelle -mail: DelongJ@b2621506fe2b459baf1ad04147fee681.bitwarden.com -carLicense: 9W32XE -departmentNumber: 5518 -employeeType: Normal -homePhone: +1 818 752-5335 -initials: J. D. -mobile: +1 818 588-3340 -pager: +1 818 614-7604 -roomNumber: 9533 -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com - -dn: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fabien Klapper -sn: Klapper -description: This is Fabien Klapper's description -facsimileTelephoneNumber: +1 408 343-4748 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 139-2008 -title: Supreme Product Development Punk -userPassword: Password1 -uid: KlapperF -givenName: Fabien -mail: KlapperF@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com -carLicense: 66GBBI -departmentNumber: 1367 -employeeType: Normal -homePhone: +1 408 478-1989 -initials: F. K. -mobile: +1 408 758-8481 -pager: +1 408 974-6113 -roomNumber: 8884 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christie Andersen -sn: Andersen -description: This is Christie Andersen's description -facsimileTelephoneNumber: +1 408 672-1067 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 527-6179 -title: Master Peons Architect -userPassword: Password1 -uid: AnderseC -givenName: Christie -mail: AnderseC@f541074a8300482d85b53966c8cecebb.bitwarden.com -carLicense: N3R031 -departmentNumber: 7310 -employeeType: Normal -homePhone: +1 408 620-3172 -initials: C. A. -mobile: +1 408 700-6663 -pager: +1 408 921-3818 -roomNumber: 9589 -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarena Semler -sn: Semler -description: This is Sarena Semler's description -facsimileTelephoneNumber: +1 510 218-7056 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 190-7531 -title: Chief Administrative Czar -userPassword: Password1 -uid: SemlerS -givenName: Sarena -mail: SemlerS@4f429ec00b3846cdb96eadb01bfd7a99.bitwarden.com -carLicense: GCEYQF -departmentNumber: 3285 -employeeType: Employee -homePhone: +1 510 534-3141 -initials: S. S. -mobile: +1 510 328-3345 -pager: +1 510 590-3223 -roomNumber: 9387 -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janka Norfleet -sn: Norfleet -description: This is Janka Norfleet's description -facsimileTelephoneNumber: +1 818 801-6928 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 751-6753 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: NorfleeJ -givenName: Janka -mail: NorfleeJ@c6becf10621f424386eceb52ac60363d.bitwarden.com -carLicense: 8C3R1K -departmentNumber: 2199 -employeeType: Contract -homePhone: +1 818 126-7473 -initials: J. N. -mobile: +1 818 841-3570 -pager: +1 818 671-5902 -roomNumber: 9318 -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmelita McClintock -sn: McClintock -description: This is Carmelita McClintock's description -facsimileTelephoneNumber: +1 804 571-8607 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 219-9064 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: McClintC -givenName: Carmelita -mail: McClintC@79732267294c4ff69a75a9c93c8c2c5a.bitwarden.com -carLicense: VXAYA7 -departmentNumber: 4942 -employeeType: Contract -homePhone: +1 804 446-2137 -initials: C. M. -mobile: +1 804 675-4366 -pager: +1 804 712-6588 -roomNumber: 9346 -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margalit Schnurmann -sn: Schnurmann -description: This is Margalit Schnurmann's description -facsimileTelephoneNumber: +1 408 714-3542 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 264-9682 -title: Junior Payroll Czar -userPassword: Password1 -uid: SchnurmM -givenName: Margalit -mail: SchnurmM@cdc31465418c4033ab89394a6307e530.bitwarden.com -carLicense: 952PUG -departmentNumber: 7732 -employeeType: Contract -homePhone: +1 408 801-2572 -initials: M. S. -mobile: +1 408 872-6634 -pager: +1 408 275-2981 -roomNumber: 8702 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verena Cadzow -sn: Cadzow -description: This is Verena Cadzow's description -facsimileTelephoneNumber: +1 415 520-8453 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 132-5964 -title: Junior Product Testing Sales Rep -userPassword: Password1 -uid: CadzowV -givenName: Verena -mail: CadzowV@00b74fb6ef364737950ddfdf6aa8c176.bitwarden.com -carLicense: GJYDOU -departmentNumber: 3576 -employeeType: Normal -homePhone: +1 415 827-8462 -initials: V. C. -mobile: +1 415 673-2909 -pager: +1 415 929-2331 -roomNumber: 8243 -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roselin Clinton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roselin Clinton -sn: Clinton -description: This is Roselin Clinton's description -facsimileTelephoneNumber: +1 408 560-1542 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 408 466-3805 -title: Master Management Technician -userPassword: Password1 -uid: ClintonR -givenName: Roselin -mail: ClintonR@68cdb3f1f4a34d45a9e696c1e31a6e1d.bitwarden.com -carLicense: TNUMQ2 -departmentNumber: 8952 -employeeType: Employee -homePhone: +1 408 239-4824 -initials: R. C. -mobile: +1 408 313-6974 -pager: +1 408 986-7006 -roomNumber: 9132 -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niki Tosczak -sn: Tosczak -description: This is Niki Tosczak's description -facsimileTelephoneNumber: +1 510 987-4784 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 810-9017 -title: Supreme Janitorial Artist -userPassword: Password1 -uid: TosczakN -givenName: Niki -mail: TosczakN@0eafa9df29954ccc8d03b1a1a5c6c726.bitwarden.com -carLicense: PXXQJS -departmentNumber: 3567 -employeeType: Normal -homePhone: +1 510 210-1651 -initials: N. T. -mobile: +1 510 871-8724 -pager: +1 510 829-5416 -roomNumber: 8702 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsey Sacchetti -sn: Sacchetti -description: This is Chelsey Sacchetti's description -facsimileTelephoneNumber: +1 213 120-2668 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 991-2334 -title: Master Peons Madonna -userPassword: Password1 -uid: SacchetC -givenName: Chelsey -mail: SacchetC@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com -carLicense: EXWVSS -departmentNumber: 5871 -employeeType: Contract -homePhone: +1 213 997-6816 -initials: C. S. -mobile: +1 213 538-8213 -pager: +1 213 597-8830 -roomNumber: 8706 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alli McCartney -sn: McCartney -description: This is Alli McCartney's description -facsimileTelephoneNumber: +1 804 597-4209 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 551-2065 -title: Master Human Resources Technician -userPassword: Password1 -uid: McCartnA -givenName: Alli -mail: McCartnA@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com -carLicense: RBSARC -departmentNumber: 3782 -employeeType: Employee -homePhone: +1 804 416-4403 -initials: A. M. -mobile: +1 804 528-7079 -pager: +1 804 195-3679 -roomNumber: 9433 -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helaine Sture -sn: Sture -description: This is Helaine Sture's description -facsimileTelephoneNumber: +1 804 835-8185 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 198-1747 -title: Master Product Testing Madonna -userPassword: Password1 -uid: StureH -givenName: Helaine -mail: StureH@1d5f034b9f0b4b2d8a9c2ac70eae1af4.bitwarden.com -carLicense: 4KJHNV -departmentNumber: 8442 -employeeType: Contract -homePhone: +1 804 972-6960 -initials: H. S. -mobile: +1 804 372-2136 -pager: +1 804 209-4870 -roomNumber: 9333 -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elane Boggia -sn: Boggia -description: This is Elane Boggia's description -facsimileTelephoneNumber: +1 415 556-7479 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 688-6241 -title: Associate Peons Mascot -userPassword: Password1 -uid: BoggiaE -givenName: Elane -mail: BoggiaE@1390fe347bf84da5b12ed2e7e03c14a9.bitwarden.com -carLicense: VH4QYJ -departmentNumber: 6085 -employeeType: Normal -homePhone: +1 415 363-1650 -initials: E. B. -mobile: +1 415 196-5365 -pager: +1 415 449-7808 -roomNumber: 9164 -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristen Bethune -sn: Bethune -description: This is Cristen Bethune's description -facsimileTelephoneNumber: +1 206 119-3959 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 930-2604 -title: Chief Human Resources Writer -userPassword: Password1 -uid: BethuneC -givenName: Cristen -mail: BethuneC@5e878ad72c9742919c149b3ae36447b2.bitwarden.com -carLicense: CW8QUF -departmentNumber: 6369 -employeeType: Normal -homePhone: +1 206 557-4787 -initials: C. B. -mobile: +1 206 907-5643 -pager: +1 206 797-1016 -roomNumber: 8571 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elbert Strauch -sn: Strauch -description: This is Elbert Strauch's description -facsimileTelephoneNumber: +1 206 742-1484 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 563-5131 -title: Chief Administrative Mascot -userPassword: Password1 -uid: StrauchE -givenName: Elbert -mail: StrauchE@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com -carLicense: Y2NIEQ -departmentNumber: 5513 -employeeType: Employee -homePhone: +1 206 194-6409 -initials: E. S. -mobile: +1 206 107-6279 -pager: +1 206 491-8001 -roomNumber: 8367 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stock Krenn -sn: Krenn -description: This is Stock Krenn's description -facsimileTelephoneNumber: +1 510 522-9598 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 918-2690 -title: Supreme Product Development Pinhead -userPassword: Password1 -uid: KrennS -givenName: Stock -mail: KrennS@391ddf0224dd407ba001b022d1309d23.bitwarden.com -carLicense: RQ6EK4 -departmentNumber: 8634 -employeeType: Contract -homePhone: +1 510 791-7996 -initials: S. K. -mobile: +1 510 126-8507 -pager: +1 510 752-1296 -roomNumber: 8086 -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurice Wurtz -sn: Wurtz -description: This is Maurice Wurtz's description -facsimileTelephoneNumber: +1 213 230-4610 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 772-7927 -title: Junior Peons Warrior -userPassword: Password1 -uid: WurtzM -givenName: Maurice -mail: WurtzM@d8178390586b4ff2afbd07f5124be8ce.bitwarden.com -carLicense: YK2CSO -departmentNumber: 7525 -employeeType: Employee -homePhone: +1 213 292-9859 -initials: M. W. -mobile: +1 213 857-3025 -pager: +1 213 120-3542 -roomNumber: 9955 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YoungJune Grauer -sn: Grauer -description: This is YoungJune Grauer's description -facsimileTelephoneNumber: +1 415 998-8290 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 996-4775 -title: Junior Management Stooge -userPassword: Password1 -uid: GrauerY -givenName: YoungJune -mail: GrauerY@434812d441a24c9dafd1550eb22dcb62.bitwarden.com -carLicense: 3EHV9E -departmentNumber: 5350 -employeeType: Normal -homePhone: +1 415 530-4168 -initials: Y. G. -mobile: +1 415 177-8594 -pager: +1 415 338-3948 -roomNumber: 8389 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jock Subsara -sn: Subsara -description: This is Jock Subsara's description -facsimileTelephoneNumber: +1 415 308-4027 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 459-9605 -title: Junior Management Fellow -userPassword: Password1 -uid: SubsaraJ -givenName: Jock -mail: SubsaraJ@01c459dd18154d91bb999b9b97f18487.bitwarden.com -carLicense: CP45OB -departmentNumber: 7066 -employeeType: Contract -homePhone: +1 415 357-4716 -initials: J. S. -mobile: +1 415 221-2745 -pager: +1 415 743-8603 -roomNumber: 8987 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosina Bassignana -sn: Bassignana -description: This is Rosina Bassignana's description -facsimileTelephoneNumber: +1 415 130-7212 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 236-5113 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: BassignR -givenName: Rosina -mail: BassignR@15d7a602173249f0aea4978bd6de557b.bitwarden.com -carLicense: MGMEE1 -departmentNumber: 8776 -employeeType: Normal -homePhone: +1 415 485-7859 -initials: R. B. -mobile: +1 415 200-8113 -pager: +1 415 103-9868 -roomNumber: 8185 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarangarajan Reilly -sn: Reilly -description: This is Sarangarajan Reilly's description -facsimileTelephoneNumber: +1 510 169-2660 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 510 291-1037 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: ReillyS -givenName: Sarangarajan -mail: ReillyS@d5949360307842458664ec19684f5fbf.bitwarden.com -carLicense: SAIHQ2 -departmentNumber: 5070 -employeeType: Normal -homePhone: +1 510 860-9343 -initials: S. R. -mobile: +1 510 636-6434 -pager: +1 510 130-4151 -roomNumber: 8920 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Latia Amarsi -sn: Amarsi -description: This is Latia Amarsi's description -facsimileTelephoneNumber: +1 213 987-8399 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 988-7091 -title: Master Payroll Czar -userPassword: Password1 -uid: AmarsiL -givenName: Latia -mail: AmarsiL@d3f6a0448cf246c98f76952766172afe.bitwarden.com -carLicense: 6IDOCT -departmentNumber: 3438 -employeeType: Normal -homePhone: +1 213 893-8583 -initials: L. A. -mobile: +1 213 745-2117 -pager: +1 213 829-4672 -roomNumber: 9641 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Babak Culverhouse -sn: Culverhouse -description: This is Babak Culverhouse's description -facsimileTelephoneNumber: +1 213 693-3227 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 186-6373 -title: Associate Human Resources Punk -userPassword: Password1 -uid: CulverhB -givenName: Babak -mail: CulverhB@a85c3929256747e4a90337c3ba0f9538.bitwarden.com -carLicense: WR8ALQ -departmentNumber: 5582 -employeeType: Employee -homePhone: +1 213 946-7215 -initials: B. C. -mobile: +1 213 456-8408 -pager: +1 213 466-1329 -roomNumber: 9012 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Armand Klimas -sn: Klimas -description: This is Armand Klimas's description -facsimileTelephoneNumber: +1 213 596-5104 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 213-8199 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: KlimasA -givenName: Armand -mail: KlimasA@cc354ce01f7d4b1dbbd812fe0f0347ab.bitwarden.com -carLicense: XBS7R6 -departmentNumber: 8855 -employeeType: Normal -homePhone: +1 213 382-7196 -initials: A. K. -mobile: +1 213 599-4067 -pager: +1 213 848-2841 -roomNumber: 9718 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibbie DeWiele -sn: DeWiele -description: This is Sibbie DeWiele's description -facsimileTelephoneNumber: +1 213 633-1588 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 297-1903 -title: Master Management Madonna -userPassword: Password1 -uid: DeWieleS -givenName: Sibbie -mail: DeWieleS@6166cdfc1e46480f804599bfc1632742.bitwarden.com -carLicense: V5CLFH -departmentNumber: 8410 -employeeType: Normal -homePhone: +1 213 925-8901 -initials: S. D. -mobile: +1 213 785-1932 -pager: +1 213 839-3075 -roomNumber: 8730 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiam Surreau -sn: Surreau -description: This is Kiam Surreau's description -facsimileTelephoneNumber: +1 415 985-4775 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 111-9899 -title: Chief Administrative Admin -userPassword: Password1 -uid: SurreauK -givenName: Kiam -mail: SurreauK@26ece7db144b41bb92ce5c1250e537b0.bitwarden.com -carLicense: 092W9H -departmentNumber: 7422 -employeeType: Contract -homePhone: +1 415 778-4201 -initials: K. S. -mobile: +1 415 590-7629 -pager: +1 415 182-9790 -roomNumber: 8266 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarabelle Committe -sn: Committe -description: This is Clarabelle Committe's description -facsimileTelephoneNumber: +1 415 841-3041 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 608-2472 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: CommittC -givenName: Clarabelle -mail: CommittC@987beca3f52a49bd924ac83295cf5b4d.bitwarden.com -carLicense: 8H2OCU -departmentNumber: 2614 -employeeType: Employee -homePhone: +1 415 713-8200 -initials: C. C. -mobile: +1 415 294-7309 -pager: +1 415 608-8377 -roomNumber: 8232 -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geralene Lan -sn: Lan -description: This is Geralene Lan's description -facsimileTelephoneNumber: +1 510 614-7871 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 660-7961 -title: Junior Product Development Grunt -userPassword: Password1 -uid: LanG -givenName: Geralene -mail: LanG@0a2947c0937246148acc395ec6aa6da8.bitwarden.com -carLicense: NEQ5JY -departmentNumber: 9737 -employeeType: Contract -homePhone: +1 510 444-8848 -initials: G. L. -mobile: +1 510 890-9747 -pager: +1 510 360-4796 -roomNumber: 8246 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelyn Runnels -sn: Runnels -description: This is Madelyn Runnels's description -facsimileTelephoneNumber: +1 510 790-4800 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 219-9245 -title: Chief Peons Punk -userPassword: Password1 -uid: RunnelsM -givenName: Madelyn -mail: RunnelsM@b2f73c176c104e9dad8630c2f13ec103.bitwarden.com -carLicense: BDQXOO -departmentNumber: 8214 -employeeType: Normal -homePhone: +1 510 533-4371 -initials: M. R. -mobile: +1 510 448-5448 -pager: +1 510 846-4965 -roomNumber: 8337 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marshal Hawken -sn: Hawken -description: This is Marshal Hawken's description -facsimileTelephoneNumber: +1 408 621-1500 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 680-3463 -title: Supreme Product Development Fellow -userPassword: Password1 -uid: HawkenM -givenName: Marshal -mail: HawkenM@a4dea908812d4b559d6d4b4ddbcb0f53.bitwarden.com -carLicense: NEMIST -departmentNumber: 3021 -employeeType: Normal -homePhone: +1 408 955-3128 -initials: M. H. -mobile: +1 408 115-3982 -pager: +1 408 639-9412 -roomNumber: 8513 -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sickle Hartley -sn: Hartley -description: This is Sickle Hartley's description -facsimileTelephoneNumber: +1 818 157-7549 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 725-2994 -title: Associate Human Resources Pinhead -userPassword: Password1 -uid: HartleyS -givenName: Sickle -mail: HartleyS@aea15ef0456d4cd2988add4323d0edb7.bitwarden.com -carLicense: 01IDLL -departmentNumber: 7318 -employeeType: Normal -homePhone: +1 818 813-8628 -initials: S. H. -mobile: +1 818 512-2580 -pager: +1 818 223-9985 -roomNumber: 8922 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carran Cramer -sn: Cramer -description: This is Carran Cramer's description -facsimileTelephoneNumber: +1 206 990-9678 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 206 637-6668 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: CramerC -givenName: Carran -mail: CramerC@da80fbc552e74c92b5c02d6f794db308.bitwarden.com -carLicense: C5VUAM -departmentNumber: 7383 -employeeType: Employee -homePhone: +1 206 304-8768 -initials: C. C. -mobile: +1 206 955-8055 -pager: +1 206 177-2965 -roomNumber: 8017 -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KienNghiep Eby -sn: Eby -description: This is KienNghiep Eby's description -facsimileTelephoneNumber: +1 804 179-5121 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 890-3542 -title: Associate Payroll Janitor -userPassword: Password1 -uid: EbyK -givenName: KienNghiep -mail: EbyK@d787acf2cb0f4ad79059f38dcecb70e1.bitwarden.com -carLicense: 2XJ3SB -departmentNumber: 4577 -employeeType: Employee -homePhone: +1 804 407-4052 -initials: K. E. -mobile: +1 804 283-1326 -pager: +1 804 780-9429 -roomNumber: 9530 -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pacific Derrett -sn: Derrett -description: This is Pacific Derrett's description -facsimileTelephoneNumber: +1 206 498-3192 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 461-3814 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: DerrettP -givenName: Pacific -mail: DerrettP@4247bf0f3a2e46bbbb1c691078752396.bitwarden.com -carLicense: DYA967 -departmentNumber: 5266 -employeeType: Normal -homePhone: +1 206 406-7893 -initials: P. D. -mobile: +1 206 804-9922 -pager: +1 206 469-3228 -roomNumber: 9827 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allyce Chickorie -sn: Chickorie -description: This is Allyce Chickorie's description -facsimileTelephoneNumber: +1 510 610-7678 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 124-4432 -title: Supreme Management Stooge -userPassword: Password1 -uid: ChickorA -givenName: Allyce -mail: ChickorA@a3cca719b1e44338804967e6cd3716a5.bitwarden.com -carLicense: L7L7G4 -departmentNumber: 7191 -employeeType: Contract -homePhone: +1 510 135-1147 -initials: A. C. -mobile: +1 510 851-2885 -pager: +1 510 544-9768 -roomNumber: 8059 -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Risa Hatten -sn: Hatten -description: This is Risa Hatten's description -facsimileTelephoneNumber: +1 213 927-8612 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 229-7781 -title: Chief Administrative Warrior -userPassword: Password1 -uid: HattenR -givenName: Risa -mail: HattenR@66ab35d6948347a9bae3a60013004915.bitwarden.com -carLicense: E5V0RJ -departmentNumber: 6818 -employeeType: Contract -homePhone: +1 213 466-3059 -initials: R. H. -mobile: +1 213 628-4550 -pager: +1 213 686-6829 -roomNumber: 8693 -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherise Racette -sn: Racette -description: This is Cherise Racette's description -facsimileTelephoneNumber: +1 818 280-4824 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 594-1524 -title: Chief Management Evangelist -userPassword: Password1 -uid: RacetteC -givenName: Cherise -mail: RacetteC@2c6078f6eca44c55a3b0351656fc7d8a.bitwarden.com -carLicense: AIVLGE -departmentNumber: 9885 -employeeType: Contract -homePhone: +1 818 168-2293 -initials: C. R. -mobile: +1 818 628-5296 -pager: +1 818 753-1601 -roomNumber: 8803 -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ava Wetteland -sn: Wetteland -description: This is Ava Wetteland's description -facsimileTelephoneNumber: +1 510 688-8465 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 773-9802 -title: Master Product Development Visionary -userPassword: Password1 -uid: WettelaA -givenName: Ava -mail: WettelaA@013fb02061ee471c942b593b9cccbedb.bitwarden.com -carLicense: I6DGLK -departmentNumber: 6796 -employeeType: Normal -homePhone: +1 510 644-5393 -initials: A. W. -mobile: +1 510 956-1288 -pager: +1 510 771-6481 -roomNumber: 8785 -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bonita Chiamvimonvat -sn: Chiamvimonvat -description: This is Bonita Chiamvimonvat's description -facsimileTelephoneNumber: +1 408 730-4837 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 538-5170 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: ChiamviB -givenName: Bonita -mail: ChiamviB@ba3add3fa0e5474bb8115e77e9d392b7.bitwarden.com -carLicense: Q5YBAJ -departmentNumber: 5600 -employeeType: Employee -homePhone: +1 408 579-8351 -initials: B. C. -mobile: +1 408 361-6070 -pager: +1 408 644-3738 -roomNumber: 9165 -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaun Fares -sn: Fares -description: This is Shaun Fares's description -facsimileTelephoneNumber: +1 510 777-6472 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 541-9326 -title: Master Human Resources Developer -userPassword: Password1 -uid: FaresS -givenName: Shaun -mail: FaresS@79f438ac5a2045c28f6ad4893a72e3bf.bitwarden.com -carLicense: UJRKYT -departmentNumber: 1615 -employeeType: Employee -homePhone: +1 510 483-8329 -initials: S. F. -mobile: +1 510 429-9526 -pager: +1 510 692-7983 -roomNumber: 9969 -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miss Rogne -sn: Rogne -description: This is Miss Rogne's description -facsimileTelephoneNumber: +1 415 119-6636 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 769-6960 -title: Junior Peons Developer -userPassword: Password1 -uid: RogneM -givenName: Miss -mail: RogneM@4437a885539842e694e181973aeef65f.bitwarden.com -carLicense: C8YUBG -departmentNumber: 9609 -employeeType: Normal -homePhone: +1 415 972-9971 -initials: M. R. -mobile: +1 415 392-1654 -pager: +1 415 328-4095 -roomNumber: 8987 -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vyky Wichers -sn: Wichers -description: This is Vyky Wichers's description -facsimileTelephoneNumber: +1 415 766-2932 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 415 383-8304 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: WichersV -givenName: Vyky -mail: WichersV@c9a0e26d4ea742c783cb4ebee35bdd7b.bitwarden.com -carLicense: AXAKBU -departmentNumber: 1046 -employeeType: Employee -homePhone: +1 415 880-4626 -initials: V. W. -mobile: +1 415 406-9084 -pager: +1 415 161-3581 -roomNumber: 8010 -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christal Logan -sn: Logan -description: This is Christal Logan's description -facsimileTelephoneNumber: +1 804 687-8432 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 207-8897 -title: Chief Payroll Director -userPassword: Password1 -uid: LoganC -givenName: Christal -mail: LoganC@355444411163413985e2752e5591891d.bitwarden.com -carLicense: R8YYWA -departmentNumber: 9041 -employeeType: Contract -homePhone: +1 804 723-8990 -initials: C. L. -mobile: +1 804 989-6320 -pager: +1 804 162-9010 -roomNumber: 9618 -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gretna Witkowski -sn: Witkowski -description: This is Gretna Witkowski's description -facsimileTelephoneNumber: +1 213 724-5444 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 362-1387 -title: Chief Product Testing Developer -userPassword: Password1 -uid: WitkowsG -givenName: Gretna -mail: WitkowsG@cabcf482c8b8459d8a74ab2619df86df.bitwarden.com -carLicense: QALXVL -departmentNumber: 2038 -employeeType: Normal -homePhone: +1 213 536-1790 -initials: G. W. -mobile: +1 213 147-7236 -pager: +1 213 114-2220 -roomNumber: 9912 -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marga Narron -sn: Narron -description: This is Marga Narron's description -facsimileTelephoneNumber: +1 408 265-1893 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 408 240-8050 -title: Master Janitorial Mascot -userPassword: Password1 -uid: NarronM -givenName: Marga -mail: NarronM@602ba75a97ea4dc1ac3622553464c0ac.bitwarden.com -carLicense: BVJ510 -departmentNumber: 7170 -employeeType: Employee -homePhone: +1 408 835-4332 -initials: M. N. -mobile: +1 408 909-8045 -pager: +1 408 264-7944 -roomNumber: 9360 -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Migdalia Flanagan -sn: Flanagan -description: This is Migdalia Flanagan's description -facsimileTelephoneNumber: +1 510 438-2145 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 902-1273 -title: Chief Administrative Assistant -userPassword: Password1 -uid: FlanagaM -givenName: Migdalia -mail: FlanagaM@b1bb838cb11c403bbdc958ce4b4c9d2d.bitwarden.com -carLicense: 98NFRD -departmentNumber: 6301 -employeeType: Employee -homePhone: +1 510 382-9511 -initials: M. F. -mobile: +1 510 360-3736 -pager: +1 510 306-9670 -roomNumber: 9393 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emmalee Foods -sn: Foods -description: This is Emmalee Foods's description -facsimileTelephoneNumber: +1 818 425-4116 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 920-7552 -title: Supreme Management Writer -userPassword: Password1 -uid: FoodsE -givenName: Emmalee -mail: FoodsE@74805c1fee3243bbadc8f72d3fd3001a.bitwarden.com -carLicense: NOBJPA -departmentNumber: 1795 -employeeType: Contract -homePhone: +1 818 627-4972 -initials: E. F. -mobile: +1 818 555-4923 -pager: +1 818 673-4058 -roomNumber: 8438 -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edeline Lakhian -sn: Lakhian -description: This is Edeline Lakhian's description -facsimileTelephoneNumber: +1 510 910-4942 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 637-3412 -title: Associate Janitorial Developer -userPassword: Password1 -uid: LakhianE -givenName: Edeline -mail: LakhianE@e52e6f8f31c240f3b4e78172d5b85958.bitwarden.com -carLicense: QRLYHI -departmentNumber: 4235 -employeeType: Employee -homePhone: +1 510 305-8703 -initials: E. L. -mobile: +1 510 160-6460 -pager: +1 510 615-9909 -roomNumber: 9140 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmelina Scully -sn: Scully -description: This is Carmelina Scully's description -facsimileTelephoneNumber: +1 804 265-8495 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 846-5833 -title: Master Payroll Warrior -userPassword: Password1 -uid: ScullyC -givenName: Carmelina -mail: ScullyC@3235f42e984e402081a7536149bf78d7.bitwarden.com -carLicense: GJ8FXH -departmentNumber: 2348 -employeeType: Contract -homePhone: +1 804 656-6650 -initials: C. S. -mobile: +1 804 928-1977 -pager: +1 804 904-4225 -roomNumber: 8891 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shyam Carr -sn: Carr -description: This is Shyam Carr's description -facsimileTelephoneNumber: +1 206 709-2137 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 394-7948 -title: Junior Administrative Janitor -userPassword: Password1 -uid: CarrS -givenName: Shyam -mail: CarrS@49afaf830b95419abf9fc28dbca190f3.bitwarden.com -carLicense: RYBCGF -departmentNumber: 7387 -employeeType: Contract -homePhone: +1 206 439-3179 -initials: S. C. -mobile: +1 206 284-9659 -pager: +1 206 641-5553 -roomNumber: 9090 -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katie Jeska,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katie Jeska -sn: Jeska -description: This is Katie Jeska's description -facsimileTelephoneNumber: +1 804 712-7860 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 762-8032 -title: Chief Human Resources Janitor -userPassword: Password1 -uid: JeskaK -givenName: Katie -mail: JeskaK@64d7ecf288c04c558094c63f6b45f377.bitwarden.com -carLicense: KB7RGC -departmentNumber: 5581 -employeeType: Normal -homePhone: +1 804 856-7375 -initials: K. J. -mobile: +1 804 122-7366 -pager: +1 804 901-8055 -roomNumber: 9719 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Penni Sarto -sn: Sarto -description: This is Penni Sarto's description -facsimileTelephoneNumber: +1 415 169-7041 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 172-5081 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: SartoP -givenName: Penni -mail: SartoP@05ad6fc184974bd39ebbb3184d131d86.bitwarden.com -carLicense: CIM9G9 -departmentNumber: 3455 -employeeType: Normal -homePhone: +1 415 302-9420 -initials: P. S. -mobile: +1 415 313-1201 -pager: +1 415 128-9010 -roomNumber: 8210 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marge Levere -sn: Levere -description: This is Marge Levere's description -facsimileTelephoneNumber: +1 408 257-8838 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 383-3711 -title: Supreme Management Director -userPassword: Password1 -uid: LevereM -givenName: Marge -mail: LevereM@bf2dcabaa08a40c0b50f35192372f0ab.bitwarden.com -carLicense: 1006UA -departmentNumber: 2903 -employeeType: Contract -homePhone: +1 408 537-9919 -initials: M. L. -mobile: +1 408 137-4528 -pager: +1 408 836-6363 -roomNumber: 8596 -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozalia Delolmodiez -sn: Delolmodiez -description: This is Rozalia Delolmodiez's description -facsimileTelephoneNumber: +1 213 951-2757 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 751-1844 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: DelolmoR -givenName: Rozalia -mail: DelolmoR@982161c18d1c4b49bf26a62584cbb202.bitwarden.com -carLicense: BYK25O -departmentNumber: 7087 -employeeType: Normal -homePhone: +1 213 311-7244 -initials: R. D. -mobile: +1 213 643-9867 -pager: +1 213 432-2235 -roomNumber: 9480 -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Konrad Fabijanic -sn: Fabijanic -description: This is Konrad Fabijanic's description -facsimileTelephoneNumber: +1 818 286-4995 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 378-1843 -title: Junior Peons Visionary -userPassword: Password1 -uid: FabijanK -givenName: Konrad -mail: FabijanK@e6bf56fbfb254a10af3f0b967f4bdcb4.bitwarden.com -carLicense: FE4FT8 -departmentNumber: 4284 -employeeType: Normal -homePhone: +1 818 904-3019 -initials: K. F. -mobile: +1 818 268-2669 -pager: +1 818 545-8743 -roomNumber: 9567 -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prity Nikfarjam -sn: Nikfarjam -description: This is Prity Nikfarjam's description -facsimileTelephoneNumber: +1 510 202-5195 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 391-4601 -title: Chief Payroll Admin -userPassword: Password1 -uid: NikfarjP -givenName: Prity -mail: NikfarjP@6e287118b6904f0fb9c650aef9285536.bitwarden.com -carLicense: F3QMT0 -departmentNumber: 4861 -employeeType: Normal -homePhone: +1 510 105-5306 -initials: P. N. -mobile: +1 510 111-4438 -pager: +1 510 960-8479 -roomNumber: 9759 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com - -dn: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colman Epplett -sn: Epplett -description: This is Colman Epplett's description -facsimileTelephoneNumber: +1 213 107-5878 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 213 934-6180 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: EpplettC -givenName: Colman -mail: EpplettC@ab6b4dd3e6a9481bb932dc2b39ad4c1b.bitwarden.com -carLicense: D8BGU8 -departmentNumber: 2883 -employeeType: Employee -homePhone: +1 213 581-6884 -initials: C. E. -mobile: +1 213 752-9822 -pager: +1 213 886-8535 -roomNumber: 8530 -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rama Akhtar -sn: Akhtar -description: This is Rama Akhtar's description -facsimileTelephoneNumber: +1 804 701-4903 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 876-8862 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: AkhtarR -givenName: Rama -mail: AkhtarR@e76e8162b84b46138ec7767983e49241.bitwarden.com -carLicense: GVJFNF -departmentNumber: 1140 -employeeType: Employee -homePhone: +1 804 208-1248 -initials: R. A. -mobile: +1 804 637-7306 -pager: +1 804 111-1625 -roomNumber: 9258 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cari Cuany -sn: Cuany -description: This is Cari Cuany's description -facsimileTelephoneNumber: +1 408 215-7823 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 234-7677 -title: Chief Human Resources Dictator -userPassword: Password1 -uid: CuanyC -givenName: Cari -mail: CuanyC@91416a3afaee4244b90876f4646b52c2.bitwarden.com -carLicense: HVIJTA -departmentNumber: 7042 -employeeType: Contract -homePhone: +1 408 932-8695 -initials: C. C. -mobile: +1 408 794-8803 -pager: +1 408 146-3228 -roomNumber: 9791 -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betteanne Donak -sn: Donak -description: This is Betteanne Donak's description -facsimileTelephoneNumber: +1 804 282-6422 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 470-7102 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: DonakB -givenName: Betteanne -mail: DonakB@1fe7e1be2b764fc8b9d6a489254a78f4.bitwarden.com -carLicense: WVF0LL -departmentNumber: 8542 -employeeType: Employee -homePhone: +1 804 718-1535 -initials: B. D. -mobile: +1 804 116-9626 -pager: +1 804 656-8516 -roomNumber: 9538 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nguyen Jaques -sn: Jaques -description: This is Nguyen Jaques's description -facsimileTelephoneNumber: +1 818 895-6929 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 346-6832 -title: Associate Administrative Punk -userPassword: Password1 -uid: JaquesN -givenName: Nguyen -mail: JaquesN@fda4d4ae921446e0b58dd0cc3cb8d908.bitwarden.com -carLicense: QSH69L -departmentNumber: 2139 -employeeType: Contract -homePhone: +1 818 503-4896 -initials: N. J. -mobile: +1 818 522-8663 -pager: +1 818 582-9451 -roomNumber: 8470 -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobette Sherlock -sn: Sherlock -description: This is Bobette Sherlock's description -facsimileTelephoneNumber: +1 415 682-4625 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 380-8857 -title: Chief Peons Artist -userPassword: Password1 -uid: SherlocB -givenName: Bobette -mail: SherlocB@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com -carLicense: PWYUAG -departmentNumber: 1607 -employeeType: Contract -homePhone: +1 415 703-4306 -initials: B. S. -mobile: +1 415 388-8211 -pager: +1 415 858-2104 -roomNumber: 9919 -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnna DiCosola -sn: DiCosola -description: This is Johnna DiCosola's description -facsimileTelephoneNumber: +1 213 385-6226 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 172-2790 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: DiCosolJ -givenName: Johnna -mail: DiCosolJ@bceb773cb0004bb8a003929876f0fb36.bitwarden.com -carLicense: 7RWCYF -departmentNumber: 1078 -employeeType: Employee -homePhone: +1 213 587-3181 -initials: J. D. -mobile: +1 213 663-9439 -pager: +1 213 553-4918 -roomNumber: 8848 -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barsha Ozmizrak -sn: Ozmizrak -description: This is Barsha Ozmizrak's description -facsimileTelephoneNumber: +1 510 985-3195 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 438-3068 -title: Master Management Evangelist -userPassword: Password1 -uid: OzmizraB -givenName: Barsha -mail: OzmizraB@5427bdee75c245c39f1a2b879610cd11.bitwarden.com -carLicense: BYF93G -departmentNumber: 9876 -employeeType: Normal -homePhone: +1 510 156-4313 -initials: B. O. -mobile: +1 510 557-5043 -pager: +1 510 100-8669 -roomNumber: 8510 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tandi Dao -sn: Dao -description: This is Tandi Dao's description -facsimileTelephoneNumber: +1 206 138-6751 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 494-1956 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: DaoT -givenName: Tandi -mail: DaoT@9b989160bc6d49579fbfc8f1e85ccc6c.bitwarden.com -carLicense: F39U48 -departmentNumber: 2724 -employeeType: Employee -homePhone: +1 206 597-9559 -initials: T. D. -mobile: +1 206 206-8082 -pager: +1 206 833-8322 -roomNumber: 8334 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jackie Bissonnette -sn: Bissonnette -description: This is Jackie Bissonnette's description -facsimileTelephoneNumber: +1 804 942-9913 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 308-8707 -title: Master Peons Punk -userPassword: Password1 -uid: BissonnJ -givenName: Jackie -mail: BissonnJ@26a00bf401bc40aabc0ccf70a3195da2.bitwarden.com -carLicense: KIR13G -departmentNumber: 8859 -employeeType: Employee -homePhone: +1 804 206-5529 -initials: J. B. -mobile: +1 804 852-8767 -pager: +1 804 480-7242 -roomNumber: 9508 -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephen Radvanyi -sn: Radvanyi -description: This is Stephen Radvanyi's description -facsimileTelephoneNumber: +1 415 718-8528 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 238-5088 -title: Supreme Payroll Czar -userPassword: Password1 -uid: RadvanyS -givenName: Stephen -mail: RadvanyS@e6341ae3add343adaa16f2b5badc740f.bitwarden.com -carLicense: IF7WKY -departmentNumber: 1858 -employeeType: Normal -homePhone: +1 415 269-1545 -initials: S. R. -mobile: +1 415 534-1693 -pager: +1 415 212-2502 -roomNumber: 8528 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hinda HowePatterson -sn: HowePatterson -description: This is Hinda HowePatterson's description -facsimileTelephoneNumber: +1 804 280-1698 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 192-2169 -title: Associate Product Testing Figurehead -userPassword: Password1 -uid: HowePatH -givenName: Hinda -mail: HowePatH@523e609eb44e4dad826c580fd26d6d8a.bitwarden.com -carLicense: 8IRNTS -departmentNumber: 8668 -employeeType: Contract -homePhone: +1 804 308-6205 -initials: H. H. -mobile: +1 804 950-9594 -pager: +1 804 492-1222 -roomNumber: 9605 -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margaretta Amott -sn: Amott -description: This is Margaretta Amott's description -facsimileTelephoneNumber: +1 415 795-8121 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 804-4664 -title: Associate Janitorial Manager -userPassword: Password1 -uid: AmottM -givenName: Margaretta -mail: AmottM@9b6ac34e0ff04d81b84f1dd42d147248.bitwarden.com -carLicense: 46RFQM -departmentNumber: 1341 -employeeType: Contract -homePhone: +1 415 610-7890 -initials: M. A. -mobile: +1 415 243-9380 -pager: +1 415 118-4960 -roomNumber: 9998 -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malynda TempleDowning -sn: TempleDowning -description: This is Malynda TempleDowning's description -facsimileTelephoneNumber: +1 818 575-3397 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 983-6031 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: TempleDM -givenName: Malynda -mail: TempleDM@399ec0c914824f4b8aebd42d99e8c0c9.bitwarden.com -carLicense: 2GEGJL -departmentNumber: 2043 -employeeType: Contract -homePhone: +1 818 284-8914 -initials: M. T. -mobile: +1 818 891-7799 -pager: +1 818 632-6339 -roomNumber: 9292 -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yetta Litherland -sn: Litherland -description: This is Yetta Litherland's description -facsimileTelephoneNumber: +1 213 896-2337 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 213 718-1918 -title: Supreme Administrative Czar -userPassword: Password1 -uid: LitherlY -givenName: Yetta -mail: LitherlY@e552a99c6612464e99801fc5eab2cf25.bitwarden.com -carLicense: 2ELDDC -departmentNumber: 7395 -employeeType: Employee -homePhone: +1 213 176-9454 -initials: Y. L. -mobile: +1 213 299-2163 -pager: +1 213 947-2972 -roomNumber: 9564 -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tedi Boothroyd -sn: Boothroyd -description: This is Tedi Boothroyd's description -facsimileTelephoneNumber: +1 213 105-9830 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 230-8417 -title: Associate Product Development Fellow -userPassword: Password1 -uid: BoothroT -givenName: Tedi -mail: BoothroT@7e7d56512878406ba5f19451276eb821.bitwarden.com -carLicense: STVOED -departmentNumber: 5359 -employeeType: Employee -homePhone: +1 213 174-2157 -initials: T. B. -mobile: +1 213 188-2598 -pager: +1 213 294-1766 -roomNumber: 8427 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rubetta Altman -sn: Altman -description: This is Rubetta Altman's description -facsimileTelephoneNumber: +1 408 345-3956 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 366-5972 -title: Supreme Product Development Technician -userPassword: Password1 -uid: AltmanR -givenName: Rubetta -mail: AltmanR@5cab5d1545fd4012a00a0f17162dad39.bitwarden.com -carLicense: 0EE99I -departmentNumber: 5099 -employeeType: Contract -homePhone: +1 408 895-8662 -initials: R. A. -mobile: +1 408 271-3624 -pager: +1 408 610-9532 -roomNumber: 9944 -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LeiSee Plato -sn: Plato -description: This is LeiSee Plato's description -facsimileTelephoneNumber: +1 206 532-3780 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 469-5811 -title: Master Peons Dictator -userPassword: Password1 -uid: PlatoL -givenName: LeiSee -mail: PlatoL@895bfd9f2c6f4f82814cbf2199cfb1f8.bitwarden.com -carLicense: D239U8 -departmentNumber: 4688 -employeeType: Employee -homePhone: +1 206 965-1699 -initials: L. P. -mobile: +1 206 439-9566 -pager: +1 206 932-2881 -roomNumber: 8906 -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fayette Kos -sn: Kos -description: This is Fayette Kos's description -facsimileTelephoneNumber: +1 206 406-8427 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 206 532-4674 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: KosF -givenName: Fayette -mail: KosF@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com -carLicense: 0I1F2S -departmentNumber: 5724 -employeeType: Contract -homePhone: +1 206 594-6397 -initials: F. K. -mobile: +1 206 615-5926 -pager: +1 206 777-7076 -roomNumber: 8805 -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Redgie Craycraft -sn: Craycraft -description: This is Redgie Craycraft's description -facsimileTelephoneNumber: +1 206 732-7915 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 705-3471 -title: Associate Human Resources Punk -userPassword: Password1 -uid: CraycraR -givenName: Redgie -mail: CraycraR@68e2448e6be24959a88911c23cb3d4b4.bitwarden.com -carLicense: EGL59S -departmentNumber: 9664 -employeeType: Employee -homePhone: +1 206 452-5370 -initials: R. C. -mobile: +1 206 181-3928 -pager: +1 206 836-6719 -roomNumber: 8707 -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginette Vilis -sn: Vilis -description: This is Ginette Vilis's description -facsimileTelephoneNumber: +1 408 559-8994 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 874-1699 -title: Junior Peons Figurehead -userPassword: Password1 -uid: VilisG -givenName: Ginette -mail: VilisG@77eb010514ae421883af972518c1a82e.bitwarden.com -carLicense: YLITAO -departmentNumber: 5168 -employeeType: Contract -homePhone: +1 408 895-2119 -initials: G. V. -mobile: +1 408 116-3265 -pager: +1 408 772-8100 -roomNumber: 9106 -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorelle Ladymon -sn: Ladymon -description: This is Lorelle Ladymon's description -facsimileTelephoneNumber: +1 408 546-4373 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 525-2935 -title: Junior Peons Architect -userPassword: Password1 -uid: LadymonL -givenName: Lorelle -mail: LadymonL@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com -carLicense: TOG0G5 -departmentNumber: 7290 -employeeType: Normal -homePhone: +1 408 565-4887 -initials: L. L. -mobile: +1 408 155-6474 -pager: +1 408 303-7669 -roomNumber: 8297 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Behnam Cairns -sn: Cairns -description: This is Behnam Cairns's description -facsimileTelephoneNumber: +1 804 285-1839 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 527-5993 -title: Junior Management Grunt -userPassword: Password1 -uid: CairnsB -givenName: Behnam -mail: CairnsB@ad4942d8c3c341119939c679c4dae154.bitwarden.com -carLicense: HV039H -departmentNumber: 1775 -employeeType: Normal -homePhone: +1 804 966-4163 -initials: B. C. -mobile: +1 804 243-8365 -pager: +1 804 160-1482 -roomNumber: 8560 -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othella McGrath -sn: McGrath -description: This is Othella McGrath's description -facsimileTelephoneNumber: +1 213 986-8613 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 246-7788 -title: Chief Janitorial Visionary -userPassword: Password1 -uid: McGrathO -givenName: Othella -mail: McGrathO@e90e000c44ce4d4ea0b0d2e2fa3e3a2f.bitwarden.com -carLicense: WEXY49 -departmentNumber: 6105 -employeeType: Contract -homePhone: +1 213 385-9848 -initials: O. M. -mobile: +1 213 630-5230 -pager: +1 213 814-5260 -roomNumber: 9740 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minnnie Hough -sn: Hough -description: This is Minnnie Hough's description -facsimileTelephoneNumber: +1 206 348-6954 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 179-5913 -title: Associate Product Development Dictator -userPassword: Password1 -uid: HoughM -givenName: Minnnie -mail: HoughM@3ecb1c63de854804b4e8af1966a28c00.bitwarden.com -carLicense: KPN0GV -departmentNumber: 9731 -employeeType: Contract -homePhone: +1 206 575-6352 -initials: M. H. -mobile: +1 206 693-8819 -pager: +1 206 234-4969 -roomNumber: 8901 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darci Glasgow -sn: Glasgow -description: This is Darci Glasgow's description -facsimileTelephoneNumber: +1 206 370-5820 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 998-5811 -title: Associate Human Resources Architect -userPassword: Password1 -uid: GlasgowD -givenName: Darci -mail: GlasgowD@66d6a653ea384626bd4c52723439804a.bitwarden.com -carLicense: BTFWKY -departmentNumber: 7278 -employeeType: Employee -homePhone: +1 206 152-2451 -initials: D. G. -mobile: +1 206 670-1387 -pager: +1 206 303-4916 -roomNumber: 8296 -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franz Kosasih -sn: Kosasih -description: This is Franz Kosasih's description -facsimileTelephoneNumber: +1 804 607-9775 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 492-4965 -title: Associate Administrative Developer -userPassword: Password1 -uid: KosasihF -givenName: Franz -mail: KosasihF@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com -carLicense: 501K62 -departmentNumber: 4474 -employeeType: Employee -homePhone: +1 804 505-4586 -initials: F. K. -mobile: +1 804 220-5844 -pager: +1 804 505-7128 -roomNumber: 8119 -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Four Savarimuthu -sn: Savarimuthu -description: This is Four Savarimuthu's description -facsimileTelephoneNumber: +1 213 498-5393 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 327-1252 -title: Chief Human Resources Czar -userPassword: Password1 -uid: SavarimF -givenName: Four -mail: SavarimF@2c5e9a0ea53e4c3488f28ebc0a631b01.bitwarden.com -carLicense: 7NKOTY -departmentNumber: 5921 -employeeType: Employee -homePhone: +1 213 430-6684 -initials: F. S. -mobile: +1 213 155-5851 -pager: +1 213 406-5754 -roomNumber: 9231 -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zonda Keyes -sn: Keyes -description: This is Zonda Keyes's description -facsimileTelephoneNumber: +1 206 713-8227 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 666-4257 -title: Associate Management Manager -userPassword: Password1 -uid: KeyesZ -givenName: Zonda -mail: KeyesZ@73df9726f63046799112335cf0c61cd9.bitwarden.com -carLicense: 3G4OJJ -departmentNumber: 2220 -employeeType: Contract -homePhone: +1 206 626-6836 -initials: Z. K. -mobile: +1 206 975-9655 -pager: +1 206 272-4969 -roomNumber: 9031 -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vicheara Claybrook -sn: Claybrook -description: This is Vicheara Claybrook's description -facsimileTelephoneNumber: +1 415 749-6795 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 371-5842 -title: Supreme Janitorial Sales Rep -userPassword: Password1 -uid: ClaybroV -givenName: Vicheara -mail: ClaybroV@5c3854c0e45246a0b3fb22153a7146d3.bitwarden.com -carLicense: BFQUD8 -departmentNumber: 5481 -employeeType: Normal -homePhone: +1 415 441-7108 -initials: V. C. -mobile: +1 415 574-3356 -pager: +1 415 626-6640 -roomNumber: 8923 -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Iwona Eicher -sn: Eicher -description: This is Iwona Eicher's description -facsimileTelephoneNumber: +1 510 102-5094 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 964-1439 -title: Junior Product Development Warrior -userPassword: Password1 -uid: EicherI -givenName: Iwona -mail: EicherI@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com -carLicense: 09300K -departmentNumber: 7049 -employeeType: Normal -homePhone: +1 510 883-7603 -initials: I. E. -mobile: +1 510 132-8819 -pager: +1 510 969-3941 -roomNumber: 8141 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marinna Rabjohn -sn: Rabjohn -description: This is Marinna Rabjohn's description -facsimileTelephoneNumber: +1 408 281-8482 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 772-7225 -title: Junior Janitorial Architect -userPassword: Password1 -uid: RabjohnM -givenName: Marinna -mail: RabjohnM@9f370afe60bb4f1ab01d1df2abbe72ba.bitwarden.com -carLicense: TXMVFF -departmentNumber: 7713 -employeeType: Employee -homePhone: +1 408 105-1852 -initials: M. R. -mobile: +1 408 738-2783 -pager: +1 408 130-9719 -roomNumber: 9291 -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hugo Baltodano -sn: Baltodano -description: This is Hugo Baltodano's description -facsimileTelephoneNumber: +1 415 662-5224 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 526-1457 -title: Master Administrative Mascot -userPassword: Password1 -uid: BaltodaH -givenName: Hugo -mail: BaltodaH@78bfa2e0c44e45a08260250819c1abe3.bitwarden.com -carLicense: JYKGVU -departmentNumber: 4649 -employeeType: Employee -homePhone: +1 415 664-2240 -initials: H. B. -mobile: +1 415 167-5741 -pager: +1 415 475-5988 -roomNumber: 8651 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karyl Jiang -sn: Jiang -description: This is Karyl Jiang's description -facsimileTelephoneNumber: +1 804 713-6011 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 677-2860 -title: Junior Human Resources Admin -userPassword: Password1 -uid: JiangK -givenName: Karyl -mail: JiangK@536233742e094d32a93b46e75cbb8e9e.bitwarden.com -carLicense: RJWRJV -departmentNumber: 5073 -employeeType: Contract -homePhone: +1 804 948-8672 -initials: K. J. -mobile: +1 804 650-1985 -pager: +1 804 397-4330 -roomNumber: 9477 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KumMeng Dover -sn: Dover -description: This is KumMeng Dover's description -facsimileTelephoneNumber: +1 415 161-3560 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 232-8966 -title: Junior Administrative Fellow -userPassword: Password1 -uid: DoverK -givenName: KumMeng -mail: DoverK@b381db8c81ea4ed2b9296ea4988780aa.bitwarden.com -carLicense: WP01VW -departmentNumber: 5649 -employeeType: Contract -homePhone: +1 415 914-9733 -initials: K. D. -mobile: +1 415 102-3650 -pager: +1 415 684-2071 -roomNumber: 9279 -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Homa Brownlee -sn: Brownlee -description: This is Homa Brownlee's description -facsimileTelephoneNumber: +1 213 213-2639 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 102-4484 -title: Junior Product Testing Evangelist -userPassword: Password1 -uid: BrownleH -givenName: Homa -mail: BrownleH@4897906c5be74769a474a0be126fe831.bitwarden.com -carLicense: UF3J2V -departmentNumber: 3722 -employeeType: Contract -homePhone: +1 213 526-1118 -initials: H. B. -mobile: +1 213 159-5562 -pager: +1 213 961-7620 -roomNumber: 9438 -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nonna Jensenworth -sn: Jensenworth -description: This is Nonna Jensenworth's description -facsimileTelephoneNumber: +1 213 322-6671 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 909-3899 -title: Junior Human Resources Stooge -userPassword: Password1 -uid: JensenwN -givenName: Nonna -mail: JensenwN@8dadc7ef65624c618ad03f0f74792b58.bitwarden.com -carLicense: 67HSX7 -departmentNumber: 2149 -employeeType: Normal -homePhone: +1 213 711-2679 -initials: N. J. -mobile: +1 213 115-3355 -pager: +1 213 795-2556 -roomNumber: 9018 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pansie Jemczyk -sn: Jemczyk -description: This is Pansie Jemczyk's description -facsimileTelephoneNumber: +1 818 619-4563 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 599-5525 -title: Junior Product Development Figurehead -userPassword: Password1 -uid: JemczykP -givenName: Pansie -mail: JemczykP@8cd5207192cc415ba684b6325051ff04.bitwarden.com -carLicense: AXJ47E -departmentNumber: 7048 -employeeType: Employee -homePhone: +1 818 637-3733 -initials: P. J. -mobile: +1 818 932-9588 -pager: +1 818 741-6219 -roomNumber: 9041 -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tianbao Cemensky -sn: Cemensky -description: This is Tianbao Cemensky's description -facsimileTelephoneNumber: +1 213 763-2560 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 751-7495 -title: Master Management Figurehead -userPassword: Password1 -uid: CemenskT -givenName: Tianbao -mail: CemenskT@f356b9ffcffb4ac98d745b6fe117b574.bitwarden.com -carLicense: 8G3XUG -departmentNumber: 4011 -employeeType: Employee -homePhone: +1 213 592-2564 -initials: T. C. -mobile: +1 213 348-5662 -pager: +1 213 851-1242 -roomNumber: 9017 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meggy Jansen -sn: Jansen -description: This is Meggy Jansen's description -facsimileTelephoneNumber: +1 415 883-7835 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 401-2251 -title: Junior Janitorial Admin -userPassword: Password1 -uid: JansenM -givenName: Meggy -mail: JansenM@5e943e5d6d7b48d9af98d3041b109570.bitwarden.com -carLicense: AS8WUV -departmentNumber: 6120 -employeeType: Employee -homePhone: +1 415 637-1184 -initials: M. J. -mobile: +1 415 384-2277 -pager: +1 415 322-9033 -roomNumber: 9985 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thad Bertram -sn: Bertram -description: This is Thad Bertram's description -facsimileTelephoneNumber: +1 206 492-5781 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 629-4485 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: BertramT -givenName: Thad -mail: BertramT@87217c69784645aaa23bd55d67419f7d.bitwarden.com -carLicense: 3DII8G -departmentNumber: 3550 -employeeType: Normal -homePhone: +1 206 665-6506 -initials: T. B. -mobile: +1 206 733-2786 -pager: +1 206 286-2478 -roomNumber: 8040 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dallas Gulick -sn: Gulick -description: This is Dallas Gulick's description -facsimileTelephoneNumber: +1 804 230-6997 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 465-5147 -title: Junior Management Grunt -userPassword: Password1 -uid: GulickD -givenName: Dallas -mail: GulickD@e24249e5021b459b98fb73b4ee245cd6.bitwarden.com -carLicense: QALESK -departmentNumber: 1847 -employeeType: Employee -homePhone: +1 804 198-6586 -initials: D. G. -mobile: +1 804 990-3006 -pager: +1 804 488-9984 -roomNumber: 9654 -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marna Kindem -sn: Kindem -description: This is Marna Kindem's description -facsimileTelephoneNumber: +1 415 405-6222 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 125-2595 -title: Associate Peons Technician -userPassword: Password1 -uid: KindemM -givenName: Marna -mail: KindemM@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com -carLicense: X4B4W3 -departmentNumber: 3863 -employeeType: Employee -homePhone: +1 415 520-3837 -initials: M. K. -mobile: +1 415 553-8686 -pager: +1 415 858-3930 -roomNumber: 9091 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denny Worpell -sn: Worpell -description: This is Denny Worpell's description -facsimileTelephoneNumber: +1 213 839-5176 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 767-7149 -title: Supreme Management Assistant -userPassword: Password1 -uid: WorpellD -givenName: Denny -mail: WorpellD@d323371cf0d149c19d396f6a749e3098.bitwarden.com -carLicense: 43QB40 -departmentNumber: 5706 -employeeType: Contract -homePhone: +1 213 681-8541 -initials: D. W. -mobile: +1 213 513-3900 -pager: +1 213 282-1496 -roomNumber: 8930 -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tanitansy Thibon -sn: Thibon -description: This is Tanitansy Thibon's description -facsimileTelephoneNumber: +1 415 161-9887 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 604-9279 -title: Associate Management Consultant -userPassword: Password1 -uid: ThibonT -givenName: Tanitansy -mail: ThibonT@864d7fffc05349a6937099b5cb95ba17.bitwarden.com -carLicense: N5IXN9 -departmentNumber: 1508 -employeeType: Contract -homePhone: +1 415 934-3357 -initials: T. T. -mobile: +1 415 380-7065 -pager: +1 415 909-2388 -roomNumber: 9648 -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koray Vasiliadis -sn: Vasiliadis -description: This is Koray Vasiliadis's description -facsimileTelephoneNumber: +1 510 989-7858 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 510 741-6075 -title: Master Peons Sales Rep -userPassword: Password1 -uid: VasiliaK -givenName: Koray -mail: VasiliaK@b08a31b6db4d4d2a9a1e1fd91f822e32.bitwarden.com -carLicense: 2GCWCL -departmentNumber: 6322 -employeeType: Normal -homePhone: +1 510 274-6643 -initials: K. V. -mobile: +1 510 645-1509 -pager: +1 510 666-1175 -roomNumber: 8509 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ettie Sils -sn: Sils -description: This is Ettie Sils's description -facsimileTelephoneNumber: +1 213 293-3708 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 687-8215 -title: Junior Management Figurehead -userPassword: Password1 -uid: SilsE -givenName: Ettie -mail: SilsE@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com -carLicense: 7GF2UN -departmentNumber: 8198 -employeeType: Contract -homePhone: +1 213 702-7496 -initials: E. S. -mobile: +1 213 936-3036 -pager: +1 213 988-7273 -roomNumber: 9350 -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daffy Kollmorgen -sn: Kollmorgen -description: This is Daffy Kollmorgen's description -facsimileTelephoneNumber: +1 206 692-7188 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 200-4986 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: KollmorD -givenName: Daffy -mail: KollmorD@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com -carLicense: 0MGWXB -departmentNumber: 3423 -employeeType: Normal -homePhone: +1 206 624-5398 -initials: D. K. -mobile: +1 206 818-4766 -pager: +1 206 687-5057 -roomNumber: 8093 -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Millard Tromm -sn: Tromm -description: This is Millard Tromm's description -facsimileTelephoneNumber: +1 510 283-4113 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 765-3255 -title: Associate Human Resources Manager -userPassword: Password1 -uid: TrommM -givenName: Millard -mail: TrommM@364738d989114590842291a79ecffd92.bitwarden.com -carLicense: XEKER1 -departmentNumber: 3354 -employeeType: Contract -homePhone: +1 510 655-8225 -initials: M. T. -mobile: +1 510 547-8177 -pager: +1 510 455-9449 -roomNumber: 9219 -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rycca Zolmer -sn: Zolmer -description: This is Rycca Zolmer's description -facsimileTelephoneNumber: +1 415 890-5667 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 221-6563 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: ZolmerR -givenName: Rycca -mail: ZolmerR@f53717c4000348b2a1cde8b0fde1aa1a.bitwarden.com -carLicense: 58PR50 -departmentNumber: 8597 -employeeType: Employee -homePhone: +1 415 774-6824 -initials: R. Z. -mobile: +1 415 775-4446 -pager: +1 415 611-2336 -roomNumber: 9413 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merlina Benschop -sn: Benschop -description: This is Merlina Benschop's description -facsimileTelephoneNumber: +1 804 516-1738 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 346-7617 -title: Junior Peons Warrior -userPassword: Password1 -uid: BenschoM -givenName: Merlina -mail: BenschoM@113ea99347684507857d63f3c383c84e.bitwarden.com -carLicense: WR6KBF -departmentNumber: 9905 -employeeType: Employee -homePhone: +1 804 935-1131 -initials: M. B. -mobile: +1 804 229-2131 -pager: +1 804 352-6113 -roomNumber: 9586 -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shanna Bourgon -sn: Bourgon -description: This is Shanna Bourgon's description -facsimileTelephoneNumber: +1 408 971-4004 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 705-7856 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: BourgonS -givenName: Shanna -mail: BourgonS@2f60971fa268439caffee9f84b2be8cb.bitwarden.com -carLicense: A4JYOD -departmentNumber: 7231 -employeeType: Contract -homePhone: +1 408 528-3274 -initials: S. B. -mobile: +1 408 977-1751 -pager: +1 408 701-4742 -roomNumber: 8579 -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liza Gumb -sn: Gumb -description: This is Liza Gumb's description -facsimileTelephoneNumber: +1 415 157-3465 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 823-9012 -title: Associate Management Dictator -userPassword: Password1 -uid: GumbL -givenName: Liza -mail: GumbL@eb1e32d5d45a4fa98044c369dbe415f8.bitwarden.com -carLicense: 4BMCC6 -departmentNumber: 7242 -employeeType: Contract -homePhone: +1 415 579-8056 -initials: L. G. -mobile: +1 415 817-6411 -pager: +1 415 905-1633 -roomNumber: 8921 -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gokul Livingstone -sn: Livingstone -description: This is Gokul Livingstone's description -facsimileTelephoneNumber: +1 818 591-5381 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 818 292-5014 -title: Associate Product Development Stooge -userPassword: Password1 -uid: LivingsG -givenName: Gokul -mail: LivingsG@e62346e3a4bc49f8a310562753f43a8b.bitwarden.com -carLicense: TD7HQ0 -departmentNumber: 4123 -employeeType: Employee -homePhone: +1 818 136-3342 -initials: G. L. -mobile: +1 818 492-8368 -pager: +1 818 887-2313 -roomNumber: 9698 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jamison Hines,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jamison Hines -sn: Hines -description: This is Jamison Hines's description -facsimileTelephoneNumber: +1 408 195-1935 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 297-6644 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: HinesJ -givenName: Jamison -mail: HinesJ@1461dbc17b9c4f428daab775690e9506.bitwarden.com -carLicense: EPT0BX -departmentNumber: 5554 -employeeType: Employee -homePhone: +1 408 651-2301 -initials: J. H. -mobile: +1 408 523-1779 -pager: +1 408 383-6135 -roomNumber: 9532 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clem Bongers -sn: Bongers -description: This is Clem Bongers's description -facsimileTelephoneNumber: +1 804 925-8753 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 804 901-2547 -title: Associate Human Resources Director -userPassword: Password1 -uid: BongersC -givenName: Clem -mail: BongersC@9fa42e4f0ec04b66b2fd5c843402ebd1.bitwarden.com -carLicense: TREUFO -departmentNumber: 8917 -employeeType: Employee -homePhone: +1 804 974-1961 -initials: C. B. -mobile: +1 804 439-8719 -pager: +1 804 137-3094 -roomNumber: 9878 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vina McKie -sn: McKie -description: This is Vina McKie's description -facsimileTelephoneNumber: +1 804 460-1096 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 207-3024 -title: Master Payroll Visionary -userPassword: Password1 -uid: McKieV -givenName: Vina -mail: McKieV@04f2dffe06bf4234900a9cc4318bfe61.bitwarden.com -carLicense: G9K6PH -departmentNumber: 4584 -employeeType: Contract -homePhone: +1 804 247-7846 -initials: V. M. -mobile: +1 804 101-5665 -pager: +1 804 958-3293 -roomNumber: 8971 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duc Dinalic -sn: Dinalic -description: This is Duc Dinalic's description -facsimileTelephoneNumber: +1 510 264-2932 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 510 915-9343 -title: Junior Management Mascot -userPassword: Password1 -uid: DinalicD -givenName: Duc -mail: DinalicD@64c2fa20001b495182e976975782823e.bitwarden.com -carLicense: MXUA1I -departmentNumber: 6721 -employeeType: Contract -homePhone: +1 510 767-9185 -initials: D. D. -mobile: +1 510 203-3595 -pager: +1 510 722-8445 -roomNumber: 9457 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gena Lawther -sn: Lawther -description: This is Gena Lawther's description -facsimileTelephoneNumber: +1 408 307-7128 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 746-3604 -title: Chief Management Czar -userPassword: Password1 -uid: LawtherG -givenName: Gena -mail: LawtherG@dbbc0930b0d2479ca97fea1080c3afcd.bitwarden.com -carLicense: CHX0F3 -departmentNumber: 5803 -employeeType: Employee -homePhone: +1 408 537-5817 -initials: G. L. -mobile: +1 408 369-5945 -pager: +1 408 859-3275 -roomNumber: 9280 -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HooiLee Bourgon -sn: Bourgon -description: This is HooiLee Bourgon's description -facsimileTelephoneNumber: +1 510 260-7181 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 306-3007 -title: Supreme Peons Assistant -userPassword: Password1 -uid: BourgonH -givenName: HooiLee -mail: BourgonH@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com -carLicense: XK5TVB -departmentNumber: 7263 -employeeType: Contract -homePhone: +1 510 884-5547 -initials: H. B. -mobile: +1 510 375-6901 -pager: +1 510 696-6138 -roomNumber: 8869 -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teresa Kenkel -sn: Kenkel -description: This is Teresa Kenkel's description -facsimileTelephoneNumber: +1 818 436-6021 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 818 272-4206 -title: Supreme Payroll Figurehead -userPassword: Password1 -uid: KenkelT -givenName: Teresa -mail: KenkelT@e3d22003ed4443a89482f00559e86e88.bitwarden.com -carLicense: SXLM6W -departmentNumber: 4417 -employeeType: Normal -homePhone: +1 818 613-1436 -initials: T. K. -mobile: +1 818 494-9885 -pager: +1 818 503-3829 -roomNumber: 9014 -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marin Suprick -sn: Suprick -description: This is Marin Suprick's description -facsimileTelephoneNumber: +1 818 578-3825 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 356-9900 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: SuprickM -givenName: Marin -mail: SuprickM@85be5888418240a8880dd2671e654a34.bitwarden.com -carLicense: 716QE7 -departmentNumber: 4291 -employeeType: Normal -homePhone: +1 818 465-5773 -initials: M. S. -mobile: +1 818 615-5501 -pager: +1 818 957-3938 -roomNumber: 9261 -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Attilio Bullett -sn: Bullett -description: This is Attilio Bullett's description -facsimileTelephoneNumber: +1 408 600-7625 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 367-3813 -title: Master Product Testing Dictator -userPassword: Password1 -uid: BullettA -givenName: Attilio -mail: BullettA@101b8efea162489cbe4b00acbe71ea5a.bitwarden.com -carLicense: NEPMSU -departmentNumber: 9857 -employeeType: Employee -homePhone: +1 408 474-9243 -initials: A. B. -mobile: +1 408 100-9665 -pager: +1 408 946-4883 -roomNumber: 9732 -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blake Skerry -sn: Skerry -description: This is Blake Skerry's description -facsimileTelephoneNumber: +1 206 707-7008 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 206 927-9132 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: SkerryB -givenName: Blake -mail: SkerryB@4a47eda5b0994d6aac96fd9eb9bf327f.bitwarden.com -carLicense: 6I15E6 -departmentNumber: 5970 -employeeType: Normal -homePhone: +1 206 154-3689 -initials: B. S. -mobile: +1 206 830-9122 -pager: +1 206 882-1181 -roomNumber: 8710 -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amir McColman -sn: McColman -description: This is Amir McColman's description -facsimileTelephoneNumber: +1 415 503-6566 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 770-6946 -title: Master Management Czar -userPassword: Password1 -uid: McColmaA -givenName: Amir -mail: McColmaA@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com -carLicense: EWUPGE -departmentNumber: 5146 -employeeType: Normal -homePhone: +1 415 395-5522 -initials: A. M. -mobile: +1 415 883-7735 -pager: +1 415 592-5911 -roomNumber: 9489 -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fiore Ambroise -sn: Ambroise -description: This is Fiore Ambroise's description -facsimileTelephoneNumber: +1 804 478-7679 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 658-3922 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: AmbroisF -givenName: Fiore -mail: AmbroisF@c1fb4f6fb6854ac09da830fa08bf174b.bitwarden.com -carLicense: 5HA3YN -departmentNumber: 1824 -employeeType: Normal -homePhone: +1 804 612-6672 -initials: F. A. -mobile: +1 804 433-8762 -pager: +1 804 636-1415 -roomNumber: 9826 -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minne Danker -sn: Danker -description: This is Minne Danker's description -facsimileTelephoneNumber: +1 510 329-5425 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 584-5495 -title: Chief Management Manager -userPassword: Password1 -uid: DankerM -givenName: Minne -mail: DankerM@7e7d56512878406ba5f19451276eb821.bitwarden.com -carLicense: OIW041 -departmentNumber: 5688 -employeeType: Employee -homePhone: +1 510 663-4799 -initials: M. D. -mobile: +1 510 974-2336 -pager: +1 510 823-7622 -roomNumber: 9050 -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rizzo Irick -sn: Irick -description: This is Rizzo Irick's description -facsimileTelephoneNumber: +1 206 789-5209 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 239-9247 -title: Junior Human Resources Stooge -userPassword: Password1 -uid: IrickR -givenName: Rizzo -mail: IrickR@a762ad5f7ab94a82ae700785cde02626.bitwarden.com -carLicense: UF9MO7 -departmentNumber: 7630 -employeeType: Contract -homePhone: +1 206 472-2207 -initials: R. I. -mobile: +1 206 841-5732 -pager: +1 206 650-5724 -roomNumber: 9525 -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyb Biedermann -sn: Biedermann -description: This is Cyb Biedermann's description -facsimileTelephoneNumber: +1 206 821-8571 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 206 924-8967 -title: Chief Product Testing Engineer -userPassword: Password1 -uid: BiedermC -givenName: Cyb -mail: BiedermC@ccf238ac72764498a2a4e871140940fd.bitwarden.com -carLicense: XGFHVV -departmentNumber: 1997 -employeeType: Contract -homePhone: +1 206 846-3060 -initials: C. B. -mobile: +1 206 254-7146 -pager: +1 206 557-9600 -roomNumber: 9771 -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nobuko Zureik -sn: Zureik -description: This is Nobuko Zureik's description -facsimileTelephoneNumber: +1 804 950-6048 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 246-9182 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: ZureikN -givenName: Nobuko -mail: ZureikN@32cbfafe741b446491d67cea0d5c681a.bitwarden.com -carLicense: 1V83NY -departmentNumber: 5376 -employeeType: Contract -homePhone: +1 804 421-5299 -initials: N. Z. -mobile: +1 804 746-7010 -pager: +1 804 386-7818 -roomNumber: 8315 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Syl Hughes -sn: Hughes -description: This is Syl Hughes's description -facsimileTelephoneNumber: +1 415 609-3170 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 602-5979 -title: Supreme Management President -userPassword: Password1 -uid: HughesS -givenName: Syl -mail: HughesS@29d43cca18a84193868799ddbf3f9a87.bitwarden.com -carLicense: 59M8B8 -departmentNumber: 7423 -employeeType: Contract -homePhone: +1 415 748-4939 -initials: S. H. -mobile: +1 415 373-4916 -pager: +1 415 688-4120 -roomNumber: 9166 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jagat Beato -sn: Beato -description: This is Jagat Beato's description -facsimileTelephoneNumber: +1 415 787-3632 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 193-2971 -title: Junior Peons Stooge -userPassword: Password1 -uid: BeatoJ -givenName: Jagat -mail: BeatoJ@cb0fd14a62264345a0844bec81676fd8.bitwarden.com -carLicense: TLUCKH -departmentNumber: 4505 -employeeType: Contract -homePhone: +1 415 544-7601 -initials: J. B. -mobile: +1 415 538-3194 -pager: +1 415 345-8156 -roomNumber: 9673 -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Masood Tomassi -sn: Tomassi -description: This is Masood Tomassi's description -facsimileTelephoneNumber: +1 408 137-5902 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 161-4969 -title: Associate Payroll Admin -userPassword: Password1 -uid: TomassiM -givenName: Masood -mail: TomassiM@f38a9d14e36244e8ae609b15157f60d2.bitwarden.com -carLicense: AN1ESV -departmentNumber: 3767 -employeeType: Contract -homePhone: +1 408 602-3277 -initials: M. T. -mobile: +1 408 485-4093 -pager: +1 408 865-8666 -roomNumber: 8914 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subhash Dachelet -sn: Dachelet -description: This is Subhash Dachelet's description -facsimileTelephoneNumber: +1 415 174-9611 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 238-1995 -title: Master Janitorial Punk -userPassword: Password1 -uid: DacheleS -givenName: Subhash -mail: DacheleS@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com -carLicense: TYGVXV -departmentNumber: 6091 -employeeType: Normal -homePhone: +1 415 103-2331 -initials: S. D. -mobile: +1 415 765-8117 -pager: +1 415 665-3454 -roomNumber: 8525 -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shamsia Mincey -sn: Mincey -description: This is Shamsia Mincey's description -facsimileTelephoneNumber: +1 415 383-1966 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 773-1661 -title: Junior Peons Visionary -userPassword: Password1 -uid: MinceyS -givenName: Shamsia -mail: MinceyS@a3cc15e6ac3a471cb783c4563846998f.bitwarden.com -carLicense: I3WAAV -departmentNumber: 4070 -employeeType: Normal -homePhone: +1 415 427-4157 -initials: S. M. -mobile: +1 415 423-9739 -pager: +1 415 946-8613 -roomNumber: 9988 -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacey Dittburner -sn: Dittburner -description: This is Stacey Dittburner's description -facsimileTelephoneNumber: +1 415 497-2292 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 876-6662 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: DittburS -givenName: Stacey -mail: DittburS@8c2946e2ae1e4ec0a1e9edd05301d704.bitwarden.com -carLicense: JFV0CY -departmentNumber: 1005 -employeeType: Contract -homePhone: +1 415 249-7426 -initials: S. D. -mobile: +1 415 750-1228 -pager: +1 415 960-9725 -roomNumber: 8794 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LeiSee Goodwin -sn: Goodwin -description: This is LeiSee Goodwin's description -facsimileTelephoneNumber: +1 408 885-4132 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 390-8313 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: GoodwinL -givenName: LeiSee -mail: GoodwinL@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com -carLicense: 6GAFHK -departmentNumber: 6311 -employeeType: Employee -homePhone: +1 408 371-2613 -initials: L. G. -mobile: +1 408 380-5878 -pager: +1 408 345-1444 -roomNumber: 8065 -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tove Goodridge -sn: Goodridge -description: This is Tove Goodridge's description -facsimileTelephoneNumber: +1 213 225-7541 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 306-9950 -title: Junior Payroll Mascot -userPassword: Password1 -uid: GoodridT -givenName: Tove -mail: GoodridT@b566534e0b1f46eaaa1ea84025fc6d78.bitwarden.com -carLicense: O74BY5 -departmentNumber: 5282 -employeeType: Contract -homePhone: +1 213 797-3637 -initials: T. G. -mobile: +1 213 379-3105 -pager: +1 213 488-4942 -roomNumber: 9579 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elberta Incze -sn: Incze -description: This is Elberta Incze's description -facsimileTelephoneNumber: +1 213 225-4682 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 351-2183 -title: Master Management Manager -userPassword: Password1 -uid: InczeE -givenName: Elberta -mail: InczeE@5cf57c701a8d46aa885749d2ca77c6a3.bitwarden.com -carLicense: 323FW2 -departmentNumber: 5801 -employeeType: Contract -homePhone: +1 213 946-6990 -initials: E. I. -mobile: +1 213 168-3243 -pager: +1 213 924-8301 -roomNumber: 9709 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobinette Belboul -sn: Belboul -description: This is Bobinette Belboul's description -facsimileTelephoneNumber: +1 510 528-4096 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 566-8434 -title: Associate Peons Artist -userPassword: Password1 -uid: BelboulB -givenName: Bobinette -mail: BelboulB@f29767cb71284b6995c0c1e79eecbc92.bitwarden.com -carLicense: 7F5EMD -departmentNumber: 4167 -employeeType: Contract -homePhone: +1 510 122-4140 -initials: B. B. -mobile: +1 510 381-4871 -pager: +1 510 432-1558 -roomNumber: 8837 -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynna Elsing -sn: Elsing -description: This is Lynna Elsing's description -facsimileTelephoneNumber: +1 408 807-1698 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 918-5758 -title: Master Product Development Punk -userPassword: Password1 -uid: ElsingL -givenName: Lynna -mail: ElsingL@b9d4bc3408874c868cfc03e30b01af48.bitwarden.com -carLicense: 2U3PSY -departmentNumber: 2800 -employeeType: Normal -homePhone: +1 408 910-8431 -initials: L. E. -mobile: +1 408 851-3642 -pager: +1 408 232-7268 -roomNumber: 8705 -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ioana Bresee -sn: Bresee -description: This is Ioana Bresee's description -facsimileTelephoneNumber: +1 213 242-2385 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 268-9929 -title: Junior Peons Developer -userPassword: Password1 -uid: BreseeI -givenName: Ioana -mail: BreseeI@25209ef0bef9422ba827a4158c5d2eb7.bitwarden.com -carLicense: TYKJ9C -departmentNumber: 7929 -employeeType: Employee -homePhone: +1 213 803-6274 -initials: I. B. -mobile: +1 213 263-4455 -pager: +1 213 931-4884 -roomNumber: 8460 -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kentaro Farrell -sn: Farrell -description: This is Kentaro Farrell's description -facsimileTelephoneNumber: +1 510 716-7922 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 380-6696 -title: Chief Janitorial Sales Rep -userPassword: Password1 -uid: FarrellK -givenName: Kentaro -mail: FarrellK@4e073aa3a1c84fccb5d5f011b1fd7a56.bitwarden.com -carLicense: 0OMWYW -departmentNumber: 9589 -employeeType: Normal -homePhone: +1 510 804-9235 -initials: K. F. -mobile: +1 510 126-2356 -pager: +1 510 165-1488 -roomNumber: 8711 -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seanna Lasher -sn: Lasher -description: This is Seanna Lasher's description -facsimileTelephoneNumber: +1 206 977-2990 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 206 797-4753 -title: Supreme Payroll Czar -userPassword: Password1 -uid: LasherS -givenName: Seanna -mail: LasherS@2c4a787e446b470797a2c3a15157473d.bitwarden.com -carLicense: U5WMLS -departmentNumber: 7862 -employeeType: Employee -homePhone: +1 206 103-2042 -initials: S. L. -mobile: +1 206 548-3027 -pager: +1 206 254-5718 -roomNumber: 8506 -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pittsburgh Michael -sn: Michael -description: This is Pittsburgh Michael's description -facsimileTelephoneNumber: +1 408 239-2623 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 408 854-8944 -title: Associate Product Testing Czar -userPassword: Password1 -uid: MichaelP -givenName: Pittsburgh -mail: MichaelP@752c449dfd0b47e48d05c032fa7b3f44.bitwarden.com -carLicense: MU9M2V -departmentNumber: 9507 -employeeType: Normal -homePhone: +1 408 754-3876 -initials: P. M. -mobile: +1 408 459-2212 -pager: +1 408 567-9810 -roomNumber: 8152 -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bella Lally -sn: Lally -description: This is Bella Lally's description -facsimileTelephoneNumber: +1 213 947-4757 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 171-3710 -title: Junior Peons Engineer -userPassword: Password1 -uid: LallyB -givenName: Bella -mail: LallyB@59d35b61e06047f398b5db0a5e96a7de.bitwarden.com -carLicense: BRGF1N -departmentNumber: 6392 -employeeType: Normal -homePhone: +1 213 227-1030 -initials: B. L. -mobile: +1 213 783-9779 -pager: +1 213 823-9900 -roomNumber: 8934 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Romina Koman -sn: Koman -description: This is Romina Koman's description -facsimileTelephoneNumber: +1 213 176-4847 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 169-7083 -title: Supreme Peons Assistant -userPassword: Password1 -uid: KomanR -givenName: Romina -mail: KomanR@3a6874a38197445fbf21db557fe28dc6.bitwarden.com -carLicense: 8NMS14 -departmentNumber: 6103 -employeeType: Contract -homePhone: +1 213 939-9297 -initials: R. K. -mobile: +1 213 459-9451 -pager: +1 213 782-3737 -roomNumber: 8306 -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bcspatch Krauel -sn: Krauel -description: This is Bcspatch Krauel's description -facsimileTelephoneNumber: +1 408 327-3118 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 391-9625 -title: Associate Product Testing Admin -userPassword: Password1 -uid: KrauelB -givenName: Bcspatch -mail: KrauelB@efedd508d8ec42c3907045cd058c9d61.bitwarden.com -carLicense: 0DICWE -departmentNumber: 3574 -employeeType: Normal -homePhone: +1 408 548-7692 -initials: B. K. -mobile: +1 408 125-2644 -pager: +1 408 716-7971 -roomNumber: 9804 -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abbye Kurth -sn: Kurth -description: This is Abbye Kurth's description -facsimileTelephoneNumber: +1 415 923-5251 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 995-1757 -title: Chief Product Development Janitor -userPassword: Password1 -uid: KurthA -givenName: Abbye -mail: KurthA@d90060a8a6214d68a708f85a619deb45.bitwarden.com -carLicense: 1Y02A1 -departmentNumber: 9956 -employeeType: Contract -homePhone: +1 415 328-9168 -initials: A. K. -mobile: +1 415 555-8255 -pager: +1 415 292-3973 -roomNumber: 9102 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cecil Babb -sn: Babb -description: This is Cecil Babb's description -facsimileTelephoneNumber: +1 408 927-3469 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 205-2420 -title: Chief Product Development Fellow -userPassword: Password1 -uid: BabbC -givenName: Cecil -mail: BabbC@9688197f14c24b1ba3397822373736ec.bitwarden.com -carLicense: 82C3OD -departmentNumber: 7483 -employeeType: Contract -homePhone: +1 408 280-2346 -initials: C. B. -mobile: +1 408 924-8585 -pager: +1 408 250-6937 -roomNumber: 8486 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thinh Merinder -sn: Merinder -description: This is Thinh Merinder's description -facsimileTelephoneNumber: +1 206 346-5917 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 206 915-4616 -title: Chief Human Resources Engineer -userPassword: Password1 -uid: MerindeT -givenName: Thinh -mail: MerindeT@634978d04fca41d6af5289220bc42474.bitwarden.com -carLicense: YGUNPF -departmentNumber: 7186 -employeeType: Normal -homePhone: +1 206 758-2073 -initials: T. M. -mobile: +1 206 676-8657 -pager: +1 206 618-7491 -roomNumber: 9106 -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermann SYSINT -sn: SYSINT -description: This is Hermann SYSINT's description -facsimileTelephoneNumber: +1 415 752-4654 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 310-5216 -title: Supreme Product Testing Director -userPassword: Password1 -uid: SYSINTH -givenName: Hermann -mail: SYSINTH@06e4c92f7e694121b9c489567f46001f.bitwarden.com -carLicense: 94T2XO -departmentNumber: 6892 -employeeType: Employee -homePhone: +1 415 102-3799 -initials: H. S. -mobile: +1 415 130-5981 -pager: +1 415 252-3921 -roomNumber: 9063 -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dinah Kodsi -sn: Kodsi -description: This is Dinah Kodsi's description -facsimileTelephoneNumber: +1 206 455-5739 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 166-5341 -title: Junior Peons Mascot -userPassword: Password1 -uid: KodsiD -givenName: Dinah -mail: KodsiD@b9ee0922c6034c7c9e48852dd91cb364.bitwarden.com -carLicense: VMG9CW -departmentNumber: 1314 -employeeType: Normal -homePhone: +1 206 470-1432 -initials: D. K. -mobile: +1 206 178-7755 -pager: +1 206 727-3171 -roomNumber: 8108 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loria Salzillo -sn: Salzillo -description: This is Loria Salzillo's description -facsimileTelephoneNumber: +1 510 401-1585 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 248-3232 -title: Associate Administrative Writer -userPassword: Password1 -uid: SalzillL -givenName: Loria -mail: SalzillL@6682496b1da24faaa8a9e146fd0cd025.bitwarden.com -carLicense: WB28MP -departmentNumber: 7238 -employeeType: Contract -homePhone: +1 510 266-7869 -initials: L. S. -mobile: +1 510 238-2960 -pager: +1 510 168-5453 -roomNumber: 9015 -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sapphira Aggarwal -sn: Aggarwal -description: This is Sapphira Aggarwal's description -facsimileTelephoneNumber: +1 818 181-8450 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 818 749-4927 -title: Junior Peons Engineer -userPassword: Password1 -uid: AggarwaS -givenName: Sapphira -mail: AggarwaS@764613c40e224c12ab1c1cb80b18e644.bitwarden.com -carLicense: A0RYOL -departmentNumber: 2630 -employeeType: Contract -homePhone: +1 818 138-6550 -initials: S. A. -mobile: +1 818 856-6643 -pager: +1 818 299-1467 -roomNumber: 8928 -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnna Rodkey -sn: Rodkey -description: This is Johnna Rodkey's description -facsimileTelephoneNumber: +1 206 247-6982 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 543-1163 -title: Master Administrative Manager -userPassword: Password1 -uid: RodkeyJ -givenName: Johnna -mail: RodkeyJ@a2805efb65eb441e91001eedfa87637b.bitwarden.com -carLicense: HAXQ6W -departmentNumber: 8764 -employeeType: Contract -homePhone: +1 206 582-4565 -initials: J. R. -mobile: +1 206 854-3986 -pager: +1 206 213-6565 -roomNumber: 8080 -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alexander Brouthillier -sn: Brouthillier -description: This is Alexander Brouthillier's description -facsimileTelephoneNumber: +1 510 701-9785 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 751-5334 -title: Junior Payroll Visionary -userPassword: Password1 -uid: BrouthiA -givenName: Alexander -mail: BrouthiA@1f70c3bade4e4575a0687e469e22b825.bitwarden.com -carLicense: YEHV1O -departmentNumber: 8124 -employeeType: Contract -homePhone: +1 510 399-3528 -initials: A. B. -mobile: +1 510 935-3085 -pager: +1 510 989-7747 -roomNumber: 8759 -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eudora Jeanes -sn: Jeanes -description: This is Eudora Jeanes's description -facsimileTelephoneNumber: +1 408 218-4534 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 408 670-5909 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: JeanesE -givenName: Eudora -mail: JeanesE@5fb0b5507509483b9896f4a9d7f4badb.bitwarden.com -carLicense: U1NOLQ -departmentNumber: 7830 -employeeType: Normal -homePhone: +1 408 273-7129 -initials: E. J. -mobile: +1 408 125-2903 -pager: +1 408 453-6287 -roomNumber: 8805 -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willi Kepekci -sn: Kepekci -description: This is Willi Kepekci's description -facsimileTelephoneNumber: +1 206 993-5313 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 291-8412 -title: Master Payroll Assistant -userPassword: Password1 -uid: KepekciW -givenName: Willi -mail: KepekciW@40326010316a4eb6ad347835467b575d.bitwarden.com -carLicense: 3RWEFF -departmentNumber: 5959 -employeeType: Employee -homePhone: +1 206 341-8630 -initials: W. K. -mobile: +1 206 800-1817 -pager: +1 206 685-5931 -roomNumber: 9456 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tillie Laniel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tillie Laniel -sn: Laniel -description: This is Tillie Laniel's description -facsimileTelephoneNumber: +1 510 746-7388 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 774-3723 -title: Associate Peons Warrior -userPassword: Password1 -uid: LanielT -givenName: Tillie -mail: LanielT@db38fdb09e92403f9dae01242350f08c.bitwarden.com -carLicense: ATUTCM -departmentNumber: 8899 -employeeType: Employee -homePhone: +1 510 162-4396 -initials: T. L. -mobile: +1 510 431-4491 -pager: +1 510 415-7665 -roomNumber: 9709 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonie Linebarger -sn: Linebarger -description: This is Tonie Linebarger's description -facsimileTelephoneNumber: +1 415 947-4824 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 202-2305 -title: Master Human Resources Visionary -userPassword: Password1 -uid: LinebarT -givenName: Tonie -mail: LinebarT@63cf6afc822f42ed95e0208899f901bf.bitwarden.com -carLicense: 7ETCNG -departmentNumber: 9534 -employeeType: Normal -homePhone: +1 415 586-4415 -initials: T. L. -mobile: +1 415 365-8858 -pager: +1 415 521-1086 -roomNumber: 8630 -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helene Esser -sn: Esser -description: This is Helene Esser's description -facsimileTelephoneNumber: +1 818 457-4904 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 848-1444 -title: Associate Product Development Writer -userPassword: Password1 -uid: EsserH -givenName: Helene -mail: EsserH@16792a64200240e9a79e8e2ea0c19fe2.bitwarden.com -carLicense: GGAI1O -departmentNumber: 3773 -employeeType: Contract -homePhone: +1 818 901-8842 -initials: H. E. -mobile: +1 818 402-2479 -pager: +1 818 291-1197 -roomNumber: 9029 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lina Frederick -sn: Frederick -description: This is Lina Frederick's description -facsimileTelephoneNumber: +1 415 588-2101 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 237-2435 -title: Chief Product Testing Grunt -userPassword: Password1 -uid: FrederiL -givenName: Lina -mail: FrederiL@fde34f63385e43da8f208ba38082e1b9.bitwarden.com -carLicense: TKPXO4 -departmentNumber: 6895 -employeeType: Contract -homePhone: +1 415 230-4014 -initials: L. F. -mobile: +1 415 834-2111 -pager: +1 415 211-4608 -roomNumber: 9232 -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ktusn Rtprel -sn: Rtprel -description: This is Ktusn Rtprel's description -facsimileTelephoneNumber: +1 415 808-3740 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 114-3695 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: RtprelK -givenName: Ktusn -mail: RtprelK@ffbf9bf698dd4e7a9f64eeee84b5ec64.bitwarden.com -carLicense: XAOXIJ -departmentNumber: 1597 -employeeType: Normal -homePhone: +1 415 441-3611 -initials: K. R. -mobile: +1 415 664-8634 -pager: +1 415 406-2149 -roomNumber: 8226 -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sluis Brauer -sn: Brauer -description: This is Sluis Brauer's description -facsimileTelephoneNumber: +1 804 337-2261 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 126-7223 -title: Master Payroll Madonna -userPassword: Password1 -uid: BrauerS -givenName: Sluis -mail: BrauerS@f20ae448bfd2461babe4076c52578ba5.bitwarden.com -carLicense: FP7EHJ -departmentNumber: 9034 -employeeType: Normal -homePhone: +1 804 132-7778 -initials: S. B. -mobile: +1 804 269-2808 -pager: +1 804 953-7134 -roomNumber: 9893 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bosiljka Valerius -sn: Valerius -description: This is Bosiljka Valerius's description -facsimileTelephoneNumber: +1 818 905-3872 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 687-7856 -title: Junior Peons Manager -userPassword: Password1 -uid: ValeriuB -givenName: Bosiljka -mail: ValeriuB@d1a1137d84784363bf758dcc449d2a19.bitwarden.com -carLicense: A2OJE6 -departmentNumber: 3620 -employeeType: Contract -homePhone: +1 818 414-8390 -initials: B. V. -mobile: +1 818 308-8404 -pager: +1 818 262-4676 -roomNumber: 8617 -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prity Ruthart -sn: Ruthart -description: This is Prity Ruthart's description -facsimileTelephoneNumber: +1 804 721-7347 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 217-8366 -title: Chief Peons Manager -userPassword: Password1 -uid: RuthartP -givenName: Prity -mail: RuthartP@258e2d1e3bae4588bdceb50925d13250.bitwarden.com -carLicense: CUAREY -departmentNumber: 2783 -employeeType: Contract -homePhone: +1 804 112-9112 -initials: P. R. -mobile: +1 804 282-5695 -pager: +1 804 768-5890 -roomNumber: 9275 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlinda Weddell -sn: Weddell -description: This is Arlinda Weddell's description -facsimileTelephoneNumber: +1 213 235-3297 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 494-9938 -title: Chief Peons Developer -userPassword: Password1 -uid: WeddellA -givenName: Arlinda -mail: WeddellA@6d359ae3f48f4f958525326d5a17bef5.bitwarden.com -carLicense: 8NEAUP -departmentNumber: 6696 -employeeType: Normal -homePhone: +1 213 473-8976 -initials: A. W. -mobile: +1 213 229-4613 -pager: +1 213 418-6906 -roomNumber: 8460 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yatish Drynan -sn: Drynan -description: This is Yatish Drynan's description -facsimileTelephoneNumber: +1 818 381-8067 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 722-6805 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: DrynanY -givenName: Yatish -mail: DrynanY@c355112aa8644f0dbbdba2f53dfed719.bitwarden.com -carLicense: MTBRLE -departmentNumber: 5010 -employeeType: Employee -homePhone: +1 818 977-1186 -initials: Y. D. -mobile: +1 818 852-5352 -pager: +1 818 807-8450 -roomNumber: 9539 -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coila Daniells -sn: Daniells -description: This is Coila Daniells's description -facsimileTelephoneNumber: +1 510 319-6622 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 965-1554 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: DaniellC -givenName: Coila -mail: DaniellC@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com -carLicense: VXNWI7 -departmentNumber: 7459 -employeeType: Normal -homePhone: +1 510 974-6770 -initials: C. D. -mobile: +1 510 842-2903 -pager: +1 510 151-9026 -roomNumber: 9858 -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Detlef AlBasi -sn: AlBasi -description: This is Detlef AlBasi's description -facsimileTelephoneNumber: +1 408 294-8182 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 235-6902 -title: Master Product Testing Dictator -userPassword: Password1 -uid: AlBasiD -givenName: Detlef -mail: AlBasiD@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com -carLicense: T052CL -departmentNumber: 9123 -employeeType: Employee -homePhone: +1 408 339-1479 -initials: D. A. -mobile: +1 408 405-9997 -pager: +1 408 484-2417 -roomNumber: 8035 -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lark Gillstrom -sn: Gillstrom -description: This is Lark Gillstrom's description -facsimileTelephoneNumber: +1 510 996-3979 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 523-5712 -title: Supreme Human Resources Manager -userPassword: Password1 -uid: GillstrL -givenName: Lark -mail: GillstrL@6a80666af164421099cd30f445f1491e.bitwarden.com -carLicense: XEI5P9 -departmentNumber: 6189 -employeeType: Normal -homePhone: +1 510 447-1733 -initials: L. G. -mobile: +1 510 628-5340 -pager: +1 510 417-3756 -roomNumber: 8382 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Digby Abrams -sn: Abrams -description: This is Digby Abrams's description -facsimileTelephoneNumber: +1 804 853-5442 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 804 106-5000 -title: Associate Payroll Janitor -userPassword: Password1 -uid: AbramsD -givenName: Digby -mail: AbramsD@20e4624ef958401cb7727678bb609188.bitwarden.com -carLicense: HSU3AM -departmentNumber: 9394 -employeeType: Employee -homePhone: +1 804 600-8211 -initials: D. A. -mobile: +1 804 802-8499 -pager: +1 804 644-4805 -roomNumber: 9613 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalie Hine -sn: Hine -description: This is Kalie Hine's description -facsimileTelephoneNumber: +1 415 205-2137 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 258-9018 -title: Chief Payroll Admin -userPassword: Password1 -uid: HineK -givenName: Kalie -mail: HineK@e283d01de99446bc9d29b5fac0fa1bca.bitwarden.com -carLicense: 3JB0FS -departmentNumber: 9598 -employeeType: Contract -homePhone: +1 415 356-2753 -initials: K. H. -mobile: +1 415 854-3035 -pager: +1 415 242-5927 -roomNumber: 9436 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pierette Rodriques -sn: Rodriques -description: This is Pierette Rodriques's description -facsimileTelephoneNumber: +1 818 927-2444 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 222-1110 -title: Chief Management Director -userPassword: Password1 -uid: RodriquP -givenName: Pierette -mail: RodriquP@18569f82a4734a83991f0330d7e468e1.bitwarden.com -carLicense: RK2VCL -departmentNumber: 2738 -employeeType: Normal -homePhone: +1 818 342-9754 -initials: P. R. -mobile: +1 818 782-3070 -pager: +1 818 965-2795 -roomNumber: 9663 -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ysabel Wesenberg -sn: Wesenberg -description: This is Ysabel Wesenberg's description -facsimileTelephoneNumber: +1 415 186-7200 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 205-1337 -title: Chief Product Testing Technician -userPassword: Password1 -uid: WesenbeY -givenName: Ysabel -mail: WesenbeY@06636af2d3fb40bf87cb80da540e167a.bitwarden.com -carLicense: S4K3Y1 -departmentNumber: 6414 -employeeType: Normal -homePhone: +1 415 272-4431 -initials: Y. W. -mobile: +1 415 670-7134 -pager: +1 415 949-9893 -roomNumber: 9749 -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marleen Potts -sn: Potts -description: This is Marleen Potts's description -facsimileTelephoneNumber: +1 818 149-8872 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 953-3100 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: PottsM -givenName: Marleen -mail: PottsM@88d8b282161d4154bfd3a8dda92cc317.bitwarden.com -carLicense: M4FH31 -departmentNumber: 2424 -employeeType: Normal -homePhone: +1 818 993-2088 -initials: M. P. -mobile: +1 818 638-6560 -pager: +1 818 521-7054 -roomNumber: 9009 -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lela Kita -sn: Kita -description: This is Lela Kita's description -facsimileTelephoneNumber: +1 206 596-3964 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 773-3409 -title: Junior Payroll President -userPassword: Password1 -uid: KitaL -givenName: Lela -mail: KitaL@c33b0066e4a94f2895f1ce062cf2a5b2.bitwarden.com -carLicense: LKIW4T -departmentNumber: 5587 -employeeType: Employee -homePhone: +1 206 548-7902 -initials: L. K. -mobile: +1 206 775-2980 -pager: +1 206 885-3571 -roomNumber: 9969 -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angie Kou -sn: Kou -description: This is Angie Kou's description -facsimileTelephoneNumber: +1 206 930-6821 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 565-4141 -title: Associate Peons Developer -userPassword: Password1 -uid: KouA -givenName: Angie -mail: KouA@28fe718e73d141bb8aec4e57b4f0fed7.bitwarden.com -carLicense: OVSHMF -departmentNumber: 4603 -employeeType: Employee -homePhone: +1 206 550-7652 -initials: A. K. -mobile: +1 206 726-3592 -pager: +1 206 179-7274 -roomNumber: 9418 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mab Goba -sn: Goba -description: This is Mab Goba's description -facsimileTelephoneNumber: +1 804 300-2632 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 490-4762 -title: Supreme Management Czar -userPassword: Password1 -uid: GobaM -givenName: Mab -mail: GobaM@f38a9d14e36244e8ae609b15157f60d2.bitwarden.com -carLicense: 8WFUQH -departmentNumber: 6745 -employeeType: Contract -homePhone: +1 804 481-4073 -initials: M. G. -mobile: +1 804 533-7693 -pager: +1 804 295-9899 -roomNumber: 9634 -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roe Sandberg -sn: Sandberg -description: This is Roe Sandberg's description -facsimileTelephoneNumber: +1 213 156-5311 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 213 446-2837 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: SandberR -givenName: Roe -mail: SandberR@a4ddeff635f14fe6b72b17daaba90627.bitwarden.com -carLicense: BHE4PM -departmentNumber: 7448 -employeeType: Contract -homePhone: +1 213 401-7768 -initials: R. S. -mobile: +1 213 363-7826 -pager: +1 213 257-4672 -roomNumber: 8543 -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randene Wintour -sn: Wintour -description: This is Randene Wintour's description -facsimileTelephoneNumber: +1 510 103-2195 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 510 788-6653 -title: Master Human Resources Czar -userPassword: Password1 -uid: WintourR -givenName: Randene -mail: WintourR@8237422e949f4acf92d97f787e6bf098.bitwarden.com -carLicense: P6BM4M -departmentNumber: 7703 -employeeType: Normal -homePhone: +1 510 116-2787 -initials: R. W. -mobile: +1 510 847-2943 -pager: +1 510 823-6042 -roomNumber: 8419 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avie Lannan -sn: Lannan -description: This is Avie Lannan's description -facsimileTelephoneNumber: +1 804 715-7382 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 526-6536 -title: Associate Product Testing Artist -userPassword: Password1 -uid: LannanA -givenName: Avie -mail: LannanA@dfe553cd1a3f4695943b7b16fc34c074.bitwarden.com -carLicense: EAUBJB -departmentNumber: 2689 -employeeType: Employee -homePhone: +1 804 657-8172 -initials: A. L. -mobile: +1 804 929-5441 -pager: +1 804 968-3915 -roomNumber: 8045 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jania Ahluwalia -sn: Ahluwalia -description: This is Jania Ahluwalia's description -facsimileTelephoneNumber: +1 408 477-5221 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 514-5375 -title: Master Product Testing Warrior -userPassword: Password1 -uid: AhluwalJ -givenName: Jania -mail: AhluwalJ@ca8ef169aecd439b84062b84d007e951.bitwarden.com -carLicense: CB5BST -departmentNumber: 3435 -employeeType: Contract -homePhone: +1 408 982-6208 -initials: J. A. -mobile: +1 408 242-9516 -pager: +1 408 314-2248 -roomNumber: 9619 -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wiele Levert -sn: Levert -description: This is Wiele Levert's description -facsimileTelephoneNumber: +1 415 662-2603 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 888-5198 -title: Master Janitorial Admin -userPassword: Password1 -uid: LevertW -givenName: Wiele -mail: LevertW@5a771b0086d24bceafcaac2a637338d8.bitwarden.com -carLicense: 0QI4L8 -departmentNumber: 3683 -employeeType: Employee -homePhone: +1 415 430-9798 -initials: W. L. -mobile: +1 415 748-4166 -pager: +1 415 856-4371 -roomNumber: 9630 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amata Boles -sn: Boles -description: This is Amata Boles's description -facsimileTelephoneNumber: +1 206 551-8313 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 903-4438 -title: Chief Janitorial Consultant -userPassword: Password1 -uid: BolesA -givenName: Amata -mail: BolesA@68177ed4081e492fb681d0ca752ae8d5.bitwarden.com -carLicense: OF7A9L -departmentNumber: 4582 -employeeType: Contract -homePhone: +1 206 935-4064 -initials: A. B. -mobile: +1 206 312-4913 -pager: +1 206 895-7922 -roomNumber: 8814 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lpo Firment -sn: Firment -description: This is Lpo Firment's description -facsimileTelephoneNumber: +1 206 995-6666 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 506-3554 -title: Supreme Janitorial Artist -userPassword: Password1 -uid: FirmentL -givenName: Lpo -mail: FirmentL@f0c19e711ead4be4b0aef294eba8ecf4.bitwarden.com -carLicense: EEUDXR -departmentNumber: 4922 -employeeType: Normal -homePhone: +1 206 212-1233 -initials: L. F. -mobile: +1 206 744-9108 -pager: +1 206 389-3864 -roomNumber: 9094 -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katey Carkner -sn: Carkner -description: This is Katey Carkner's description -facsimileTelephoneNumber: +1 408 866-6599 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 570-4361 -title: Junior Product Development Consultant -userPassword: Password1 -uid: CarknerK -givenName: Katey -mail: CarknerK@98610eb59a8644899b5f6a7dba9c32ac.bitwarden.com -carLicense: OLYGHT -departmentNumber: 8778 -employeeType: Employee -homePhone: +1 408 819-6610 -initials: K. C. -mobile: +1 408 121-3100 -pager: +1 408 106-3769 -roomNumber: 9022 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vito Mereu -sn: Mereu -description: This is Vito Mereu's description -facsimileTelephoneNumber: +1 818 776-6030 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 450-5576 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: MereuV -givenName: Vito -mail: MereuV@e52bb91930a9487fa1adfb0b49d2e1a5.bitwarden.com -carLicense: M0JSMR -departmentNumber: 5852 -employeeType: Contract -homePhone: +1 818 390-5463 -initials: V. M. -mobile: +1 818 158-8076 -pager: +1 818 915-6329 -roomNumber: 9266 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willa Mikelonis -sn: Mikelonis -description: This is Willa Mikelonis's description -facsimileTelephoneNumber: +1 206 703-2119 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 206 418-2216 -title: Associate Payroll Punk -userPassword: Password1 -uid: MikelonW -givenName: Willa -mail: MikelonW@a4b64e3b322940649b1a6e04da490b37.bitwarden.com -carLicense: TJVT15 -departmentNumber: 9111 -employeeType: Employee -homePhone: +1 206 279-7016 -initials: W. M. -mobile: +1 206 548-5326 -pager: +1 206 273-2479 -roomNumber: 8521 -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lysy Halicki -sn: Halicki -description: This is Lysy Halicki's description -facsimileTelephoneNumber: +1 415 714-5983 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 728-5843 -title: Supreme Administrative Admin -userPassword: Password1 -uid: HalickiL -givenName: Lysy -mail: HalickiL@06d6eb97d0e1492aaf4272e7f2ff9fa8.bitwarden.com -carLicense: IRLKLD -departmentNumber: 6054 -employeeType: Normal -homePhone: +1 415 812-1678 -initials: L. H. -mobile: +1 415 748-7612 -pager: +1 415 158-3864 -roomNumber: 9392 -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabriell Aery -sn: Aery -description: This is Gabriell Aery's description -facsimileTelephoneNumber: +1 415 557-5210 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 521-7821 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: AeryG -givenName: Gabriell -mail: AeryG@2837fee1af77497ebd94556ee2aed90f.bitwarden.com -carLicense: B4M68G -departmentNumber: 7486 -employeeType: Normal -homePhone: +1 415 723-2130 -initials: G. A. -mobile: +1 415 624-8474 -pager: +1 415 994-1072 -roomNumber: 9737 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosalynd Gopisetty -sn: Gopisetty -description: This is Rosalynd Gopisetty's description -facsimileTelephoneNumber: +1 206 568-2983 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 179-3424 -title: Chief Product Development Consultant -userPassword: Password1 -uid: GopisetR -givenName: Rosalynd -mail: GopisetR@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com -carLicense: TTK35K -departmentNumber: 6513 -employeeType: Contract -homePhone: +1 206 927-1402 -initials: R. G. -mobile: +1 206 475-6702 -pager: +1 206 585-2552 -roomNumber: 9322 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morgan Christian -sn: Christian -description: This is Morgan Christian's description -facsimileTelephoneNumber: +1 818 672-6140 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 373-4993 -title: Associate Management Mascot -userPassword: Password1 -uid: ChristiM -givenName: Morgan -mail: ChristiM@c84f52f23bdc49c1957e8a0091babea8.bitwarden.com -carLicense: DIQ8TC -departmentNumber: 7766 -employeeType: Employee -homePhone: +1 818 242-7837 -initials: M. C. -mobile: +1 818 710-7080 -pager: +1 818 807-4118 -roomNumber: 9093 -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shona Ernst -sn: Ernst -description: This is Shona Ernst's description -facsimileTelephoneNumber: +1 415 600-3143 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 107-1767 -title: Master Payroll Czar -userPassword: Password1 -uid: ErnstS -givenName: Shona -mail: ErnstS@729666359ed04f0995bf97703c170436.bitwarden.com -carLicense: KALBNO -departmentNumber: 8805 -employeeType: Contract -homePhone: +1 415 830-2410 -initials: S. E. -mobile: +1 415 550-5753 -pager: +1 415 872-4616 -roomNumber: 8764 -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Melynda Traynor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melynda Traynor -sn: Traynor -description: This is Melynda Traynor's description -facsimileTelephoneNumber: +1 804 650-3095 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 436-9513 -title: Supreme Peons Assistant -userPassword: Password1 -uid: TraynorM -givenName: Melynda -mail: TraynorM@acfece6da1e443b5827761c1e0df01ee.bitwarden.com -carLicense: LPLT93 -departmentNumber: 4545 -employeeType: Normal -homePhone: +1 804 408-5396 -initials: M. T. -mobile: +1 804 372-3503 -pager: +1 804 497-7890 -roomNumber: 8574 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christer Bortolussi -sn: Bortolussi -description: This is Christer Bortolussi's description -facsimileTelephoneNumber: +1 818 335-9030 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 818 188-3165 -title: Master Product Development Janitor -userPassword: Password1 -uid: BortoluC -givenName: Christer -mail: BortoluC@f8d039f2941a426ba21fb52c89e7b4f3.bitwarden.com -carLicense: SQPX64 -departmentNumber: 6958 -employeeType: Employee -homePhone: +1 818 982-6812 -initials: C. B. -mobile: +1 818 233-5006 -pager: +1 818 158-2564 -roomNumber: 9699 -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frances Yvon -sn: Yvon -description: This is Frances Yvon's description -facsimileTelephoneNumber: +1 804 292-9751 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 327-9758 -title: Associate Payroll Pinhead -userPassword: Password1 -uid: YvonF -givenName: Frances -mail: YvonF@e7a2d820b36a4b2ca0436c4a7ceb43d4.bitwarden.com -carLicense: 411FFT -departmentNumber: 7069 -employeeType: Normal -homePhone: +1 804 533-6497 -initials: F. Y. -mobile: +1 804 401-8236 -pager: +1 804 908-1213 -roomNumber: 8184 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigitta Ipadmin -sn: Ipadmin -description: This is Brigitta Ipadmin's description -facsimileTelephoneNumber: +1 408 728-7651 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 408 519-8633 -title: Junior Management Technician -userPassword: Password1 -uid: IpadminB -givenName: Brigitta -mail: IpadminB@0e6ec851a2a74ae0b90601b63a1f201f.bitwarden.com -carLicense: SV1FSK -departmentNumber: 2650 -employeeType: Contract -homePhone: +1 408 790-1803 -initials: B. I. -mobile: +1 408 366-1821 -pager: +1 408 926-3945 -roomNumber: 8538 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Garland Kenney -sn: Kenney -description: This is Garland Kenney's description -facsimileTelephoneNumber: +1 510 906-3546 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 510 305-6571 -title: Associate Administrative Visionary -userPassword: Password1 -uid: KenneyG -givenName: Garland -mail: KenneyG@8a50e9e39d6c4166974a9cc7fff3efec.bitwarden.com -carLicense: XF7WPX -departmentNumber: 9606 -employeeType: Normal -homePhone: +1 510 537-5114 -initials: G. K. -mobile: +1 510 864-2779 -pager: +1 510 242-7035 -roomNumber: 8220 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivia Zaloker -sn: Zaloker -description: This is Vivia Zaloker's description -facsimileTelephoneNumber: +1 818 888-7100 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 901-2527 -title: Master Administrative Vice President -userPassword: Password1 -uid: ZalokerV -givenName: Vivia -mail: ZalokerV@22c1616450914b67aaa0021953493b44.bitwarden.com -carLicense: T9169H -departmentNumber: 2843 -employeeType: Contract -homePhone: +1 818 809-4160 -initials: V. Z. -mobile: +1 818 459-7013 -pager: +1 818 142-5355 -roomNumber: 9214 -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reed Bassignana -sn: Bassignana -description: This is Reed Bassignana's description -facsimileTelephoneNumber: +1 213 686-9775 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 144-7038 -title: Master Peons Sales Rep -userPassword: Password1 -uid: BassignR -givenName: Reed -mail: BassignR@e903c41d0e6d47309eaa689127a4e081.bitwarden.com -carLicense: CP7E4Q -departmentNumber: 7000 -employeeType: Employee -homePhone: +1 213 444-4078 -initials: R. B. -mobile: +1 213 650-3667 -pager: +1 213 898-2108 -roomNumber: 9243 -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martha Dunkelman -sn: Dunkelman -description: This is Martha Dunkelman's description -facsimileTelephoneNumber: +1 206 832-3703 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 206 304-2279 -title: Junior Human Resources President -userPassword: Password1 -uid: DunkelmM -givenName: Martha -mail: DunkelmM@552eccf10ef74257ae39c54b44c29e41.bitwarden.com -carLicense: HTV490 -departmentNumber: 9304 -employeeType: Contract -homePhone: +1 206 155-8723 -initials: M. D. -mobile: +1 206 803-7148 -pager: +1 206 750-9043 -roomNumber: 9269 -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robbie Kara -sn: Kara -description: This is Robbie Kara's description -facsimileTelephoneNumber: +1 408 888-6710 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 120-7064 -title: Supreme Human Resources Janitor -userPassword: Password1 -uid: KaraR -givenName: Robbie -mail: KaraR@248ea67a976b401d946bef01a3dddf9b.bitwarden.com -carLicense: TWX29I -departmentNumber: 3778 -employeeType: Contract -homePhone: +1 408 623-4260 -initials: R. K. -mobile: +1 408 856-9067 -pager: +1 408 182-7901 -roomNumber: 8477 -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorri Abe -sn: Abe -description: This is Lorri Abe's description -facsimileTelephoneNumber: +1 206 896-5478 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 206 744-6806 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: AbeL -givenName: Lorri -mail: AbeL@982a9dc04ec64d818da9977446a91014.bitwarden.com -carLicense: 0524FD -departmentNumber: 9258 -employeeType: Contract -homePhone: +1 206 354-8326 -initials: L. A. -mobile: +1 206 309-4664 -pager: +1 206 719-8888 -roomNumber: 8110 -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michaelina Weitzel -sn: Weitzel -description: This is Michaelina Weitzel's description -facsimileTelephoneNumber: +1 818 208-4562 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 340-5653 -title: Chief Janitorial Stooge -userPassword: Password1 -uid: WeitzelM -givenName: Michaelina -mail: WeitzelM@ae5f65ffb5c9447faad9235fe08e30d3.bitwarden.com -carLicense: VXY8R1 -departmentNumber: 2744 -employeeType: Contract -homePhone: +1 818 145-2648 -initials: M. W. -mobile: +1 818 659-6922 -pager: +1 818 976-8581 -roomNumber: 9350 -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norman Schmeler -sn: Schmeler -description: This is Norman Schmeler's description -facsimileTelephoneNumber: +1 213 545-2048 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 213-3662 -title: Supreme Product Testing President -userPassword: Password1 -uid: SchmeleN -givenName: Norman -mail: SchmeleN@9e6632ca10d4463a8725e828e08ec1be.bitwarden.com -carLicense: 556CRW -departmentNumber: 8431 -employeeType: Normal -homePhone: +1 213 558-2231 -initials: N. S. -mobile: +1 213 335-1371 -pager: +1 213 734-6894 -roomNumber: 9294 -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lethia Godse -sn: Godse -description: This is Lethia Godse's description -facsimileTelephoneNumber: +1 415 862-9422 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 828-7200 -title: Master Management Grunt -userPassword: Password1 -uid: GodseL -givenName: Lethia -mail: GodseL@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com -carLicense: BEJNQ8 -departmentNumber: 4504 -employeeType: Employee -homePhone: +1 415 664-2018 -initials: L. G. -mobile: +1 415 818-3527 -pager: +1 415 992-6380 -roomNumber: 8726 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elsy Sigut -sn: Sigut -description: This is Elsy Sigut's description -facsimileTelephoneNumber: +1 818 161-6116 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 169-5886 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: SigutE -givenName: Elsy -mail: SigutE@f943c40608904ca78dc0db77ac3253cf.bitwarden.com -carLicense: NFITTD -departmentNumber: 8831 -employeeType: Contract -homePhone: +1 818 953-3329 -initials: E. S. -mobile: +1 818 127-5289 -pager: +1 818 283-1193 -roomNumber: 8530 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosabella Toothman -sn: Toothman -description: This is Rosabella Toothman's description -facsimileTelephoneNumber: +1 213 785-6802 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 617-6315 -title: Associate Administrative Madonna -userPassword: Password1 -uid: ToothmaR -givenName: Rosabella -mail: ToothmaR@946a8a93d7d645ea944ce0f8d3611acd.bitwarden.com -carLicense: CJNQM9 -departmentNumber: 8183 -employeeType: Normal -homePhone: +1 213 777-4603 -initials: R. T. -mobile: +1 213 564-2367 -pager: +1 213 219-4725 -roomNumber: 9020 -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Royce OColmain -sn: OColmain -description: This is Royce OColmain's description -facsimileTelephoneNumber: +1 818 164-4113 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 528-8739 -title: Master Peons Manager -userPassword: Password1 -uid: OColmaiR -givenName: Royce -mail: OColmaiR@469fa45be80f47a9832c4ebf2310f220.bitwarden.com -carLicense: PFPYDO -departmentNumber: 7376 -employeeType: Employee -homePhone: +1 818 708-4729 -initials: R. O. -mobile: +1 818 444-1581 -pager: +1 818 330-1473 -roomNumber: 8184 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leigha Contine -sn: Contine -description: This is Leigha Contine's description -facsimileTelephoneNumber: +1 213 132-3048 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 466-5095 -title: Master Management Architect -userPassword: Password1 -uid: ContineL -givenName: Leigha -mail: ContineL@cc5c080b822048c1b52dd0d714af0c8b.bitwarden.com -carLicense: NLL904 -departmentNumber: 6116 -employeeType: Normal -homePhone: +1 213 194-9671 -initials: L. C. -mobile: +1 213 816-7796 -pager: +1 213 804-9855 -roomNumber: 9442 -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivo Chaurette -sn: Chaurette -description: This is Ivo Chaurette's description -facsimileTelephoneNumber: +1 415 270-1060 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 743-4679 -title: Supreme Payroll Figurehead -userPassword: Password1 -uid: ChauretI -givenName: Ivo -mail: ChauretI@7b01d0fa3a5d4a17b706f9bcc42a9ead.bitwarden.com -carLicense: 2D8MID -departmentNumber: 5713 -employeeType: Normal -homePhone: +1 415 837-3862 -initials: I. C. -mobile: +1 415 189-3619 -pager: +1 415 125-8972 -roomNumber: 9941 -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loleta Macoosh -sn: Macoosh -description: This is Loleta Macoosh's description -facsimileTelephoneNumber: +1 206 169-3427 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 928-3403 -title: Chief Payroll Assistant -userPassword: Password1 -uid: MacooshL -givenName: Loleta -mail: MacooshL@a455dbe4f11547cab81564b3288ee560.bitwarden.com -carLicense: QFQPKT -departmentNumber: 6428 -employeeType: Employee -homePhone: +1 206 992-6194 -initials: L. M. -mobile: +1 206 285-1125 -pager: +1 206 905-8994 -roomNumber: 8392 -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raina Morgan -sn: Morgan -description: This is Raina Morgan's description -facsimileTelephoneNumber: +1 415 455-4577 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 681-6032 -title: Master Peons Developer -userPassword: Password1 -uid: MorganR -givenName: Raina -mail: MorganR@03f807cda02845ada6f9c4f0cc25cb9a.bitwarden.com -carLicense: 03M9AD -departmentNumber: 7513 -employeeType: Normal -homePhone: +1 415 121-7526 -initials: R. M. -mobile: +1 415 957-5758 -pager: +1 415 401-6291 -roomNumber: 8163 -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laury Madras -sn: Madras -description: This is Laury Madras's description -facsimileTelephoneNumber: +1 818 168-3602 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 764-8912 -title: Associate Product Testing Admin -userPassword: Password1 -uid: MadrasL -givenName: Laury -mail: MadrasL@5b483b0db3b24546950eadd5a11e2bbb.bitwarden.com -carLicense: 6KWMSG -departmentNumber: 9944 -employeeType: Normal -homePhone: +1 818 943-7544 -initials: L. M. -mobile: +1 818 488-5075 -pager: +1 818 790-6692 -roomNumber: 9526 -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellis Eggersgluess -sn: Eggersgluess -description: This is Ellis Eggersgluess's description -facsimileTelephoneNumber: +1 804 172-3217 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 862-1514 -title: Junior Peons Madonna -userPassword: Password1 -uid: EggersgE -givenName: Ellis -mail: EggersgE@ade29194809c470d9cdfd87fd5b67232.bitwarden.com -carLicense: 0Y3R4Q -departmentNumber: 3900 -employeeType: Contract -homePhone: +1 804 293-8909 -initials: E. E. -mobile: +1 804 163-3772 -pager: +1 804 489-5244 -roomNumber: 8565 -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YuHung Marting -sn: Marting -description: This is YuHung Marting's description -facsimileTelephoneNumber: +1 415 720-1784 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 506-5954 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: MartingY -givenName: YuHung -mail: MartingY@eac3f0cb976143adb3703a9365be1f75.bitwarden.com -carLicense: OQBH1M -departmentNumber: 3745 -employeeType: Normal -homePhone: +1 415 261-1604 -initials: Y. M. -mobile: +1 415 132-5111 -pager: +1 415 147-8439 -roomNumber: 9206 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Garry Brashear -sn: Brashear -description: This is Garry Brashear's description -facsimileTelephoneNumber: +1 510 343-4795 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 544-5421 -title: Associate Peons Punk -userPassword: Password1 -uid: BrasheaG -givenName: Garry -mail: BrasheaG@0ac78d51e7f24be4983e8a7b1f6fd549.bitwarden.com -carLicense: 2XR1VD -departmentNumber: 5638 -employeeType: Contract -homePhone: +1 510 623-8210 -initials: G. B. -mobile: +1 510 677-6751 -pager: +1 510 144-9228 -roomNumber: 8137 -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klara Npi -sn: Npi -description: This is Klara Npi's description -facsimileTelephoneNumber: +1 415 863-6218 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 444-4554 -title: Supreme Janitorial Punk -userPassword: Password1 -uid: NpiK -givenName: Klara -mail: NpiK@85aee2e172b24229925fd4385b4414cf.bitwarden.com -carLicense: J8QTRS -departmentNumber: 3212 -employeeType: Employee -homePhone: +1 415 279-8072 -initials: K. N. -mobile: +1 415 310-9497 -pager: +1 415 726-3113 -roomNumber: 8513 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calley Slinowsky -sn: Slinowsky -description: This is Calley Slinowsky's description -facsimileTelephoneNumber: +1 818 349-1477 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 651-7135 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: SlinowsC -givenName: Calley -mail: SlinowsC@9b6ac34e0ff04d81b84f1dd42d147248.bitwarden.com -carLicense: 1320VK -departmentNumber: 2029 -employeeType: Contract -homePhone: +1 818 590-7766 -initials: C. S. -mobile: +1 818 968-3805 -pager: +1 818 251-3818 -roomNumber: 8724 -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinette Ayukawa -sn: Ayukawa -description: This is Robinette Ayukawa's description -facsimileTelephoneNumber: +1 415 282-9560 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 844-2333 -title: Chief Product Development Punk -userPassword: Password1 -uid: AyukawaR -givenName: Robinette -mail: AyukawaR@2295c6d141ba49579c21c8c873a50f8c.bitwarden.com -carLicense: 9M5IFP -departmentNumber: 1456 -employeeType: Contract -homePhone: +1 415 894-1574 -initials: R. A. -mobile: +1 415 803-1625 -pager: +1 415 450-7469 -roomNumber: 8304 -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edita VanRijswijk -sn: VanRijswijk -description: This is Edita VanRijswijk's description -facsimileTelephoneNumber: +1 213 514-9666 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 980-9385 -title: Associate Management Pinhead -userPassword: Password1 -uid: VanRijsE -givenName: Edita -mail: VanRijsE@790e9575d19b49f797a1e46c053b138e.bitwarden.com -carLicense: OQIDMD -departmentNumber: 4685 -employeeType: Normal -homePhone: +1 213 344-6931 -initials: E. V. -mobile: +1 213 355-7939 -pager: +1 213 651-4226 -roomNumber: 9763 -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeana Horwood -sn: Horwood -description: This is Jeana Horwood's description -facsimileTelephoneNumber: +1 213 553-2148 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 857-1894 -title: Chief Product Development Dictator -userPassword: Password1 -uid: HorwoodJ -givenName: Jeana -mail: HorwoodJ@c82abe08fb0140599e247f8f838f49b0.bitwarden.com -carLicense: QMOLWH -departmentNumber: 7372 -employeeType: Normal -homePhone: +1 213 766-9299 -initials: J. H. -mobile: +1 213 830-1113 -pager: +1 213 838-1468 -roomNumber: 9887 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lianna Horton -sn: Horton -description: This is Lianna Horton's description -facsimileTelephoneNumber: +1 408 691-6325 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 691-3339 -title: Chief Product Development Director -userPassword: Password1 -uid: HortonL -givenName: Lianna -mail: HortonL@f5c69553f79a4b59937ac455a61cfbaf.bitwarden.com -carLicense: WATOUE -departmentNumber: 5342 -employeeType: Contract -homePhone: +1 408 105-2235 -initials: L. H. -mobile: +1 408 422-8511 -pager: +1 408 419-4435 -roomNumber: 9569 -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Muriel Jesshope -sn: Jesshope -description: This is Muriel Jesshope's description -facsimileTelephoneNumber: +1 213 926-1483 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 624-2942 -title: Master Janitorial Vice President -userPassword: Password1 -uid: JesshopM -givenName: Muriel -mail: JesshopM@a907d87b6f8a40ee9746474ef0aee487.bitwarden.com -carLicense: 4QRJ6W -departmentNumber: 3006 -employeeType: Normal -homePhone: +1 213 880-5902 -initials: M. J. -mobile: +1 213 163-5684 -pager: +1 213 488-2846 -roomNumber: 9711 -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felicia Audette -sn: Audette -description: This is Felicia Audette's description -facsimileTelephoneNumber: +1 213 966-5961 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 834-4961 -title: Chief Administrative Director -userPassword: Password1 -uid: AudetteF -givenName: Felicia -mail: AudetteF@de1b941b029b482ba2e81cfa3a5aa97c.bitwarden.com -carLicense: VBI3V9 -departmentNumber: 7152 -employeeType: Contract -homePhone: +1 213 169-7123 -initials: F. A. -mobile: +1 213 539-9289 -pager: +1 213 785-5952 -roomNumber: 9462 -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jayesh Purson -sn: Purson -description: This is Jayesh Purson's description -facsimileTelephoneNumber: +1 804 605-6347 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 796-4682 -title: Associate Product Development Vice President -userPassword: Password1 -uid: PursonJ -givenName: Jayesh -mail: PursonJ@d3223b51e74344f49d9004d993927007.bitwarden.com -carLicense: X77CE0 -departmentNumber: 2602 -employeeType: Contract -homePhone: +1 804 421-1714 -initials: J. P. -mobile: +1 804 505-1728 -pager: +1 804 804-5207 -roomNumber: 9481 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zora Weldon -sn: Weldon -description: This is Zora Weldon's description -facsimileTelephoneNumber: +1 510 868-6176 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 549-6225 -title: Chief Payroll Architect -userPassword: Password1 -uid: WeldonZ -givenName: Zora -mail: WeldonZ@f69c90cc2b8c4a8e9725fac3e3a7a1d1.bitwarden.com -carLicense: DA7TLB -departmentNumber: 6526 -employeeType: Contract -homePhone: +1 510 584-5058 -initials: Z. W. -mobile: +1 510 720-7168 -pager: +1 510 458-6192 -roomNumber: 8995 -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Htd Knobloch -sn: Knobloch -description: This is Htd Knobloch's description -facsimileTelephoneNumber: +1 415 441-1004 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 415 964-9630 -title: Supreme Human Resources Architect -userPassword: Password1 -uid: KnoblocH -givenName: Htd -mail: KnoblocH@3c6215949b3243fca9ffcfc0e897aa4b.bitwarden.com -carLicense: DTX89I -departmentNumber: 5426 -employeeType: Employee -homePhone: +1 415 764-1971 -initials: H. K. -mobile: +1 415 327-5639 -pager: +1 415 855-8639 -roomNumber: 9012 -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marco Ainsworth -sn: Ainsworth -description: This is Marco Ainsworth's description -facsimileTelephoneNumber: +1 415 914-6095 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 924-5224 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: AinsworM -givenName: Marco -mail: AinsworM@35cbe55d624d41aaa7e77e5513292711.bitwarden.com -carLicense: 7S7PWX -departmentNumber: 6653 -employeeType: Contract -homePhone: +1 415 687-4087 -initials: M. A. -mobile: +1 415 267-1424 -pager: +1 415 628-3264 -roomNumber: 8947 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rajesh Cwirzen -sn: Cwirzen -description: This is Rajesh Cwirzen's description -facsimileTelephoneNumber: +1 818 200-6975 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 818 757-6929 -title: Supreme Janitorial Figurehead -userPassword: Password1 -uid: CwirzenR -givenName: Rajesh -mail: CwirzenR@e769e682c0c04d6c8ec17a9892d1ed72.bitwarden.com -carLicense: 079NU3 -departmentNumber: 8022 -employeeType: Employee -homePhone: +1 818 598-9221 -initials: R. C. -mobile: +1 818 355-3060 -pager: +1 818 421-9676 -roomNumber: 9428 -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheilakathryn Carli -sn: Carli -description: This is Sheilakathryn Carli's description -facsimileTelephoneNumber: +1 804 988-7541 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 495-6975 -title: Supreme Product Development Consultant -userPassword: Password1 -uid: CarliS -givenName: Sheilakathryn -mail: CarliS@6388b4d593ae4d1cb45d59e7f2b8132f.bitwarden.com -carLicense: BNEWFD -departmentNumber: 6477 -employeeType: Normal -homePhone: +1 804 109-7623 -initials: S. C. -mobile: +1 804 110-5787 -pager: +1 804 519-1931 -roomNumber: 8738 -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Detlef Morglan -sn: Morglan -description: This is Detlef Morglan's description -facsimileTelephoneNumber: +1 818 791-2709 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 818 408-3596 -title: Master Product Development Punk -userPassword: Password1 -uid: MorglanD -givenName: Detlef -mail: MorglanD@99ed379ff20347a2afcfdca050997d8c.bitwarden.com -carLicense: R8A2TO -departmentNumber: 6164 -employeeType: Normal -homePhone: +1 818 511-7648 -initials: D. M. -mobile: +1 818 537-4708 -pager: +1 818 162-6611 -roomNumber: 8704 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berthe Peter -sn: Peter -description: This is Berthe Peter's description -facsimileTelephoneNumber: +1 804 700-7547 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 804 954-2103 -title: Chief Janitorial Manager -userPassword: Password1 -uid: PeterB -givenName: Berthe -mail: PeterB@d6177daa79a64f8eb62f8d79f0c41ce3.bitwarden.com -carLicense: M5TEXN -departmentNumber: 8428 -employeeType: Contract -homePhone: +1 804 435-4683 -initials: B. P. -mobile: +1 804 941-9277 -pager: +1 804 726-1566 -roomNumber: 8931 -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alyce Tangren -sn: Tangren -description: This is Alyce Tangren's description -facsimileTelephoneNumber: +1 804 940-8692 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 869-3986 -title: Associate Management Janitor -userPassword: Password1 -uid: TangrenA -givenName: Alyce -mail: TangrenA@b134362a785742d6b5a1f5d5c2746e9a.bitwarden.com -carLicense: 93SBFD -departmentNumber: 8179 -employeeType: Normal -homePhone: +1 804 740-1944 -initials: A. T. -mobile: +1 804 397-3005 -pager: +1 804 257-5803 -roomNumber: 9068 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grissel Beaudoin -sn: Beaudoin -description: This is Grissel Beaudoin's description -facsimileTelephoneNumber: +1 415 622-4710 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 725-6357 -title: Supreme Peons Mascot -userPassword: Password1 -uid: BeaudoiG -givenName: Grissel -mail: BeaudoiG@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com -carLicense: NVEEML -departmentNumber: 7271 -employeeType: Employee -homePhone: +1 415 899-3019 -initials: G. B. -mobile: +1 415 673-3081 -pager: +1 415 607-5630 -roomNumber: 9804 -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Octavio Mathur -sn: Mathur -description: This is Octavio Mathur's description -facsimileTelephoneNumber: +1 818 824-3160 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 818 544-5647 -title: Chief Peons Engineer -userPassword: Password1 -uid: MathurO -givenName: Octavio -mail: MathurO@993d4c54591c4b179bcffd016a7fe8cd.bitwarden.com -carLicense: MQXVQ7 -departmentNumber: 6351 -employeeType: Contract -homePhone: +1 818 379-8022 -initials: O. M. -mobile: +1 818 289-6582 -pager: +1 818 871-1602 -roomNumber: 9764 -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elyssa Chui -sn: Chui -description: This is Elyssa Chui's description -facsimileTelephoneNumber: +1 818 694-5473 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 609-6440 -title: Junior Product Testing Writer -userPassword: Password1 -uid: ChuiE -givenName: Elyssa -mail: ChuiE@4f99a2d4c8e343d39b81a3ab47785f76.bitwarden.com -carLicense: PFDPUA -departmentNumber: 1199 -employeeType: Contract -homePhone: +1 818 548-7019 -initials: E. C. -mobile: +1 818 193-1472 -pager: +1 818 350-4927 -roomNumber: 9404 -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danica Rubinstein -sn: Rubinstein -description: This is Danica Rubinstein's description -facsimileTelephoneNumber: +1 213 103-5667 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 174-4691 -title: Master Management Evangelist -userPassword: Password1 -uid: RubinstD -givenName: Danica -mail: RubinstD@021f182578104bf484110ac6631b5efa.bitwarden.com -carLicense: W7DRKV -departmentNumber: 4783 -employeeType: Normal -homePhone: +1 213 962-7069 -initials: D. R. -mobile: +1 213 679-8217 -pager: +1 213 391-7784 -roomNumber: 8151 -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karna Netto -sn: Netto -description: This is Karna Netto's description -facsimileTelephoneNumber: +1 213 199-9393 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 254-4161 -title: Chief Product Development Admin -userPassword: Password1 -uid: NettoK -givenName: Karna -mail: NettoK@c4198b8f2847457c97c168c8fc0c7617.bitwarden.com -carLicense: LR53IL -departmentNumber: 5178 -employeeType: Normal -homePhone: +1 213 485-3369 -initials: K. N. -mobile: +1 213 864-5227 -pager: +1 213 548-5854 -roomNumber: 9596 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doug Millspaugh -sn: Millspaugh -description: This is Doug Millspaugh's description -facsimileTelephoneNumber: +1 213 920-4358 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 404-5239 -title: Chief Product Testing Writer -userPassword: Password1 -uid: MillspaD -givenName: Doug -mail: MillspaD@cd28596cfe754eb9be84580279d7d513.bitwarden.com -carLicense: N833JL -departmentNumber: 9408 -employeeType: Contract -homePhone: +1 213 278-3437 -initials: D. M. -mobile: +1 213 240-5253 -pager: +1 213 207-3576 -roomNumber: 8726 -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niki Kalnitsky -sn: Kalnitsky -description: This is Niki Kalnitsky's description -facsimileTelephoneNumber: +1 818 304-4637 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 856-2981 -title: Junior Payroll Technician -userPassword: Password1 -uid: KalnitsN -givenName: Niki -mail: KalnitsN@172938ae8ac04facad61a01b31d0a0e5.bitwarden.com -carLicense: 11O8YD -departmentNumber: 9347 -employeeType: Employee -homePhone: +1 818 218-6160 -initials: N. K. -mobile: +1 818 228-1633 -pager: +1 818 337-8238 -roomNumber: 9631 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wallie Newhook -sn: Newhook -description: This is Wallie Newhook's description -facsimileTelephoneNumber: +1 213 520-3791 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 213 842-1787 -title: Chief Product Development Madonna -userPassword: Password1 -uid: NewhookW -givenName: Wallie -mail: NewhookW@c9f8cbb8d3d848c99fea02136e8a89f7.bitwarden.com -carLicense: QON4FH -departmentNumber: 5587 -employeeType: Normal -homePhone: +1 213 585-4528 -initials: W. N. -mobile: +1 213 250-2558 -pager: +1 213 789-8870 -roomNumber: 8904 -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cavin Circe -sn: Circe -description: This is Cavin Circe's description -facsimileTelephoneNumber: +1 408 635-4564 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 927-1774 -title: Chief Payroll Writer -userPassword: Password1 -uid: CirceC -givenName: Cavin -mail: CirceC@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com -carLicense: T1GQFB -departmentNumber: 1976 -employeeType: Employee -homePhone: +1 408 189-4094 -initials: C. C. -mobile: +1 408 491-2984 -pager: +1 408 332-6367 -roomNumber: 8049 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Notley Salinas -sn: Salinas -description: This is Notley Salinas's description -facsimileTelephoneNumber: +1 415 820-9876 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 739-5960 -title: Associate Administrative Writer -userPassword: Password1 -uid: SalinasN -givenName: Notley -mail: SalinasN@0989aaf9c0104bbbb2f202d6a2004237.bitwarden.com -carLicense: QHF5LS -departmentNumber: 3879 -employeeType: Employee -homePhone: +1 415 371-3312 -initials: N. S. -mobile: +1 415 510-8124 -pager: +1 415 561-9347 -roomNumber: 9941 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catrina Pezzoli -sn: Pezzoli -description: This is Catrina Pezzoli's description -facsimileTelephoneNumber: +1 213 977-4445 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 980-1860 -title: Associate Peons Visionary -userPassword: Password1 -uid: PezzoliC -givenName: Catrina -mail: PezzoliC@41b27b52057643c68d8f76bcab984247.bitwarden.com -carLicense: SJ3XH4 -departmentNumber: 2511 -employeeType: Normal -homePhone: +1 213 324-6478 -initials: C. P. -mobile: +1 213 231-1585 -pager: +1 213 850-7817 -roomNumber: 9555 -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marrilee Montague -sn: Montague -description: This is Marrilee Montague's description -facsimileTelephoneNumber: +1 804 226-6821 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 804 257-3658 -title: Junior Payroll Janitor -userPassword: Password1 -uid: MontaguM -givenName: Marrilee -mail: MontaguM@ccc8e04b90324a8e82f8a7a8473e9c5e.bitwarden.com -carLicense: 1OJ07R -departmentNumber: 1610 -employeeType: Employee -homePhone: +1 804 527-8785 -initials: M. M. -mobile: +1 804 852-8033 -pager: +1 804 459-3742 -roomNumber: 9053 -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frederica KongQuee -sn: KongQuee -description: This is Frederica KongQuee's description -facsimileTelephoneNumber: +1 213 359-7639 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 653-1209 -title: Associate Payroll Engineer -userPassword: Password1 -uid: KongQueF -givenName: Frederica -mail: KongQueF@31248f3f7d37450a9d666ddb80ad3cdd.bitwarden.com -carLicense: CG2FPS -departmentNumber: 8613 -employeeType: Employee -homePhone: +1 213 609-3971 -initials: F. K. -mobile: +1 213 444-1830 -pager: +1 213 936-7068 -roomNumber: 8114 -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fianna Rubio -sn: Rubio -description: This is Fianna Rubio's description -facsimileTelephoneNumber: +1 818 502-3427 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 254-4421 -title: Junior Human Resources Artist -userPassword: Password1 -uid: RubioF -givenName: Fianna -mail: RubioF@b9ea78565da6440e8046b744a6f78fc9.bitwarden.com -carLicense: RWV4TT -departmentNumber: 7357 -employeeType: Employee -homePhone: +1 818 426-8226 -initials: F. R. -mobile: +1 818 536-2622 -pager: +1 818 241-7714 -roomNumber: 9504 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neely Godo -sn: Godo -description: This is Neely Godo's description -facsimileTelephoneNumber: +1 408 787-2246 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 982-7113 -title: Master Product Development Consultant -userPassword: Password1 -uid: GodoN -givenName: Neely -mail: GodoN@2d9d879a9a524c4888e7cfdd60a3152d.bitwarden.com -carLicense: LUXYY4 -departmentNumber: 2888 -employeeType: Contract -homePhone: +1 408 833-4011 -initials: N. G. -mobile: +1 408 410-6557 -pager: +1 408 790-9277 -roomNumber: 9248 -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karil Mielke -sn: Mielke -description: This is Karil Mielke's description -facsimileTelephoneNumber: +1 510 542-6529 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 933-5143 -title: Chief Product Development Grunt -userPassword: Password1 -uid: MielkeK -givenName: Karil -mail: MielkeK@fe9596dda25448d7a8bea63825cc667a.bitwarden.com -carLicense: BIMNTE -departmentNumber: 2186 -employeeType: Normal -homePhone: +1 510 797-9266 -initials: K. M. -mobile: +1 510 653-6818 -pager: +1 510 908-7837 -roomNumber: 9839 -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Livvie Blodgett -sn: Blodgett -description: This is Livvie Blodgett's description -facsimileTelephoneNumber: +1 408 636-7797 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 808-5950 -title: Chief Product Development Visionary -userPassword: Password1 -uid: BlodgetL -givenName: Livvie -mail: BlodgetL@29ffdd3ea48d48d48e57e1480deff23d.bitwarden.com -carLicense: LUMUU4 -departmentNumber: 2725 -employeeType: Normal -homePhone: +1 408 179-7803 -initials: L. B. -mobile: +1 408 601-1970 -pager: +1 408 707-3849 -roomNumber: 9940 -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ursula Potter -sn: Potter -description: This is Ursula Potter's description -facsimileTelephoneNumber: +1 818 509-8326 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 818 790-3836 -title: Associate Administrative Developer -userPassword: Password1 -uid: PotterU -givenName: Ursula -mail: PotterU@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com -carLicense: T09R39 -departmentNumber: 7499 -employeeType: Normal -homePhone: +1 818 785-5679 -initials: U. P. -mobile: +1 818 446-2142 -pager: +1 818 294-8904 -roomNumber: 8155 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laina Ecroyd -sn: Ecroyd -description: This is Laina Ecroyd's description -facsimileTelephoneNumber: +1 804 824-8130 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 629-2682 -title: Junior Human Resources Fellow -userPassword: Password1 -uid: EcroydL -givenName: Laina -mail: EcroydL@7ac3538c32ef4218882c130acb03a83a.bitwarden.com -carLicense: QJD0BN -departmentNumber: 8812 -employeeType: Normal -homePhone: +1 804 836-5665 -initials: L. E. -mobile: +1 804 939-4675 -pager: +1 804 237-5021 -roomNumber: 9614 -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Charil Garbish,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charil Garbish -sn: Garbish -description: This is Charil Garbish's description -facsimileTelephoneNumber: +1 804 585-6671 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 386-7470 -title: Junior Management Architect -userPassword: Password1 -uid: GarbishC -givenName: Charil -mail: GarbishC@8aed4579481d435c98b14fd5983c7417.bitwarden.com -carLicense: 0P45N1 -departmentNumber: 9805 -employeeType: Contract -homePhone: +1 804 756-4701 -initials: C. G. -mobile: +1 804 402-4809 -pager: +1 804 645-3543 -roomNumber: 9751 -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: William Groleau -sn: Groleau -description: This is William Groleau's description -facsimileTelephoneNumber: +1 408 687-7265 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 110-7221 -title: Master Administrative President -userPassword: Password1 -uid: GroleauW -givenName: William -mail: GroleauW@a0ce50d00f1c4513b832bf04095b308e.bitwarden.com -carLicense: 6P0I92 -departmentNumber: 2185 -employeeType: Normal -homePhone: +1 408 632-4237 -initials: W. G. -mobile: +1 408 944-2648 -pager: +1 408 515-1739 -roomNumber: 9589 -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emmie Gavillucci -sn: Gavillucci -description: This is Emmie Gavillucci's description -facsimileTelephoneNumber: +1 510 535-3074 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 510 256-4710 -title: Associate Payroll Stooge -userPassword: Password1 -uid: GavilluE -givenName: Emmie -mail: GavilluE@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com -carLicense: T7LHQ1 -departmentNumber: 9975 -employeeType: Employee -homePhone: +1 510 393-8597 -initials: E. G. -mobile: +1 510 858-9201 -pager: +1 510 939-7525 -roomNumber: 8382 -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LouisRene Albers -sn: Albers -description: This is LouisRene Albers's description -facsimileTelephoneNumber: +1 213 114-9882 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 837-3944 -title: Chief Payroll Engineer -userPassword: Password1 -uid: AlbersL -givenName: LouisRene -mail: AlbersL@43965c00f0db4ca198510569e172ade1.bitwarden.com -carLicense: LK6235 -departmentNumber: 8617 -employeeType: Normal -homePhone: +1 213 138-7753 -initials: L. A. -mobile: +1 213 861-3068 -pager: +1 213 545-7021 -roomNumber: 8418 -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emilie Geldrez -sn: Geldrez -description: This is Emilie Geldrez's description -facsimileTelephoneNumber: +1 408 134-2410 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 712-9707 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: GeldrezE -givenName: Emilie -mail: GeldrezE@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com -carLicense: R5FUJ5 -departmentNumber: 8936 -employeeType: Normal -homePhone: +1 408 816-8266 -initials: E. G. -mobile: +1 408 414-2998 -pager: +1 408 413-5235 -roomNumber: 8634 -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tomasina Willett -sn: Willett -description: This is Tomasina Willett's description -facsimileTelephoneNumber: +1 408 623-9924 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 840-3486 -title: Master Peons Czar -userPassword: Password1 -uid: WillettT -givenName: Tomasina -mail: WillettT@4a53c85fc87e459ba535fa5859abd60b.bitwarden.com -carLicense: P0FKNO -departmentNumber: 3240 -employeeType: Normal -homePhone: +1 408 661-3035 -initials: T. W. -mobile: +1 408 638-5966 -pager: +1 408 779-6114 -roomNumber: 9159 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prams Bertolini -sn: Bertolini -description: This is Prams Bertolini's description -facsimileTelephoneNumber: +1 213 982-8371 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 863-6256 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: BertoliP -givenName: Prams -mail: BertoliP@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com -carLicense: D66UVG -departmentNumber: 8956 -employeeType: Normal -homePhone: +1 213 976-2795 -initials: P. B. -mobile: +1 213 497-9931 -pager: +1 213 941-1520 -roomNumber: 8239 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivyanne Mulder -sn: Mulder -description: This is Vivyanne Mulder's description -facsimileTelephoneNumber: +1 206 761-4471 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 793-3218 -title: Master Management Figurehead -userPassword: Password1 -uid: MulderV -givenName: Vivyanne -mail: MulderV@c0e7d2cafc7f4a0fac99a6e2d0d32d1b.bitwarden.com -carLicense: 5IMQ7J -departmentNumber: 8754 -employeeType: Employee -homePhone: +1 206 423-4460 -initials: V. M. -mobile: +1 206 570-3910 -pager: +1 206 308-4965 -roomNumber: 9873 -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roscoe Nicoletta -sn: Nicoletta -description: This is Roscoe Nicoletta's description -facsimileTelephoneNumber: +1 415 714-5980 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 575-7781 -title: Junior Janitorial Punk -userPassword: Password1 -uid: NicoletR -givenName: Roscoe -mail: NicoletR@0995be80c7f7438a9503246039ba086d.bitwarden.com -carLicense: U2YYS0 -departmentNumber: 3665 -employeeType: Contract -homePhone: +1 415 219-1779 -initials: R. N. -mobile: +1 415 718-8991 -pager: +1 415 644-1557 -roomNumber: 8697 -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarence Sonier -sn: Sonier -description: This is Clarence Sonier's description -facsimileTelephoneNumber: +1 206 970-5984 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 662-4488 -title: Master Janitorial Mascot -userPassword: Password1 -uid: SonierC -givenName: Clarence -mail: SonierC@47ed50d743ed4ddaa8e7844725dfae63.bitwarden.com -carLicense: VW4VU9 -departmentNumber: 9354 -employeeType: Contract -homePhone: +1 206 366-9193 -initials: C. S. -mobile: +1 206 617-6600 -pager: +1 206 563-5768 -roomNumber: 8286 -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emelia Esry -sn: Esry -description: This is Emelia Esry's description -facsimileTelephoneNumber: +1 408 142-9469 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 408 711-1320 -title: Supreme Administrative Punk -userPassword: Password1 -uid: EsryE -givenName: Emelia -mail: EsryE@8967a677365042bf9b4c49a667cc17a9.bitwarden.com -carLicense: 42XVGS -departmentNumber: 1828 -employeeType: Normal -homePhone: +1 408 327-4976 -initials: E. E. -mobile: +1 408 421-6084 -pager: +1 408 319-3261 -roomNumber: 9227 -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranea Beffert -sn: Beffert -description: This is Ranea Beffert's description -facsimileTelephoneNumber: +1 206 922-2043 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 206 442-4544 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: BeffertR -givenName: Ranea -mail: BeffertR@526978f755294aedac8265e43fde0a0e.bitwarden.com -carLicense: WMEGXT -departmentNumber: 7715 -employeeType: Employee -homePhone: +1 206 982-1605 -initials: R. B. -mobile: +1 206 741-6384 -pager: +1 206 252-4682 -roomNumber: 8202 -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orlando Salyniuk -sn: Salyniuk -description: This is Orlando Salyniuk's description -facsimileTelephoneNumber: +1 408 992-2836 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 318-3406 -title: Supreme Payroll Czar -userPassword: Password1 -uid: SalyniuO -givenName: Orlando -mail: SalyniuO@c3ff70181a1748d2af2d2661f51fc5e8.bitwarden.com -carLicense: F2K1A6 -departmentNumber: 7614 -employeeType: Employee -homePhone: +1 408 202-2395 -initials: O. S. -mobile: +1 408 478-2109 -pager: +1 408 449-7315 -roomNumber: 8933 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saraann Lui -sn: Lui -description: This is Saraann Lui's description -facsimileTelephoneNumber: +1 213 502-9423 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 307-9041 -title: Junior Product Development Janitor -userPassword: Password1 -uid: LuiS -givenName: Saraann -mail: LuiS@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com -carLicense: HUI8A5 -departmentNumber: 4087 -employeeType: Employee -homePhone: +1 213 139-8180 -initials: S. L. -mobile: +1 213 358-1985 -pager: +1 213 596-4002 -roomNumber: 8452 -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ghislain Lindberg -sn: Lindberg -description: This is Ghislain Lindberg's description -facsimileTelephoneNumber: +1 510 188-4643 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 147-6222 -title: Junior Payroll Mascot -userPassword: Password1 -uid: LindberG -givenName: Ghislain -mail: LindberG@5b938862d9b84f248e738a32d39aab3b.bitwarden.com -carLicense: NJSE7C -departmentNumber: 9278 -employeeType: Contract -homePhone: +1 510 113-4769 -initials: G. L. -mobile: +1 510 280-1079 -pager: +1 510 151-2811 -roomNumber: 9337 -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katrina Dauterive -sn: Dauterive -description: This is Katrina Dauterive's description -facsimileTelephoneNumber: +1 415 551-6277 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 927-6039 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: DauteriK -givenName: Katrina -mail: DauteriK@1477a7ab60474aad9654b79aa14f0737.bitwarden.com -carLicense: QN9X1B -departmentNumber: 7378 -employeeType: Normal -homePhone: +1 415 785-4212 -initials: K. D. -mobile: +1 415 317-6296 -pager: +1 415 382-7611 -roomNumber: 8581 -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Talia Mattson -sn: Mattson -description: This is Talia Mattson's description -facsimileTelephoneNumber: +1 510 122-8961 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 110-6874 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: MattsonT -givenName: Talia -mail: MattsonT@01c954b9634144e3b54bd66a31610430.bitwarden.com -carLicense: A0GXIT -departmentNumber: 4960 -employeeType: Normal -homePhone: +1 510 597-6889 -initials: T. M. -mobile: +1 510 623-9097 -pager: +1 510 828-2054 -roomNumber: 8422 -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weldon Bresnan -sn: Bresnan -description: This is Weldon Bresnan's description -facsimileTelephoneNumber: +1 818 414-3663 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 195-4278 -title: Associate Human Resources Artist -userPassword: Password1 -uid: BresnanW -givenName: Weldon -mail: BresnanW@c1cc2a964c6c4e93a2be19842505091b.bitwarden.com -carLicense: 0URND9 -departmentNumber: 7120 -employeeType: Employee -homePhone: +1 818 401-5975 -initials: W. B. -mobile: +1 818 256-6298 -pager: +1 818 898-5527 -roomNumber: 8181 -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yevette Lazzara,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yevette Lazzara -sn: Lazzara -description: This is Yevette Lazzara's description -facsimileTelephoneNumber: +1 206 956-4149 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 424-1476 -title: Chief Peons Developer -userPassword: Password1 -uid: LazzaraY -givenName: Yevette -mail: LazzaraY@db3499e49ce34ebd81d2f39ace8a49cd.bitwarden.com -carLicense: 6I9F6L -departmentNumber: 7126 -employeeType: Contract -homePhone: +1 206 271-2469 -initials: Y. L. -mobile: +1 206 991-5237 -pager: +1 206 843-1535 -roomNumber: 9864 -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kirby Hagley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirby Hagley -sn: Hagley -description: This is Kirby Hagley's description -facsimileTelephoneNumber: +1 510 142-7029 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 566-5405 -title: Chief Product Development Director -userPassword: Password1 -uid: HagleyK -givenName: Kirby -mail: HagleyK@fe740c0ae3204fcc953b18216e0c9dcc.bitwarden.com -carLicense: 75H3EF -departmentNumber: 6330 -employeeType: Employee -homePhone: +1 510 830-8527 -initials: K. H. -mobile: +1 510 156-2829 -pager: +1 510 885-4690 -roomNumber: 9092 -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marit Montelli -sn: Montelli -description: This is Marit Montelli's description -facsimileTelephoneNumber: +1 206 655-8896 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 367-3866 -title: Master Product Testing Assistant -userPassword: Password1 -uid: MontellM -givenName: Marit -mail: MontellM@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com -carLicense: HKCXN5 -departmentNumber: 8318 -employeeType: Contract -homePhone: +1 206 735-6218 -initials: M. M. -mobile: +1 206 895-5794 -pager: +1 206 409-7346 -roomNumber: 8250 -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monroe Ghulati -sn: Ghulati -description: This is Monroe Ghulati's description -facsimileTelephoneNumber: +1 213 945-9285 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 213 842-9357 -title: Master Payroll Assistant -userPassword: Password1 -uid: GhulatiM -givenName: Monroe -mail: GhulatiM@dce0711c306745dfb235a826c6991d57.bitwarden.com -carLicense: HI600N -departmentNumber: 3302 -employeeType: Employee -homePhone: +1 213 412-6648 -initials: M. G. -mobile: +1 213 613-9431 -pager: +1 213 662-9703 -roomNumber: 9675 -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Carolan Bott,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolan Bott -sn: Bott -description: This is Carolan Bott's description -facsimileTelephoneNumber: +1 818 677-7137 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 697-4809 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: BottC -givenName: Carolan -mail: BottC@3d692d684ca742119b69b3914fc21732.bitwarden.com -carLicense: 0KRRMV -departmentNumber: 7363 -employeeType: Employee -homePhone: +1 818 783-7103 -initials: C. B. -mobile: +1 818 227-9847 -pager: +1 818 395-8434 -roomNumber: 8102 -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anet Gehring,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anet Gehring -sn: Gehring -description: This is Anet Gehring's description -facsimileTelephoneNumber: +1 206 432-2377 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 130-5986 -title: Master Product Development Assistant -userPassword: Password1 -uid: GehringA -givenName: Anet -mail: GehringA@8a950b2ad99e488bb8e8780065c87d40.bitwarden.com -carLicense: 0S1VPV -departmentNumber: 1423 -employeeType: Normal -homePhone: +1 206 418-4936 -initials: A. G. -mobile: +1 206 399-6940 -pager: +1 206 283-9032 -roomNumber: 9730 -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaela Binner -sn: Binner -description: This is Kaela Binner's description -facsimileTelephoneNumber: +1 818 781-6477 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 818 442-7441 -title: Master Human Resources Warrior -userPassword: Password1 -uid: BinnerK -givenName: Kaela -mail: BinnerK@4d0502da536c4d0b8ac6cf9b766f7317.bitwarden.com -carLicense: HF5SK2 -departmentNumber: 9338 -employeeType: Normal -homePhone: +1 818 849-3103 -initials: K. B. -mobile: +1 818 203-2394 -pager: +1 818 361-8577 -roomNumber: 8664 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailee Paulhus -sn: Paulhus -description: This is Ailee Paulhus's description -facsimileTelephoneNumber: +1 818 978-9266 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 524-4774 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: PaulhusA -givenName: Ailee -mail: PaulhusA@fbf26b520a7b4c988cb7a7f55d34af0b.bitwarden.com -carLicense: MHJBBX -departmentNumber: 5221 -employeeType: Normal -homePhone: +1 818 830-5311 -initials: A. P. -mobile: +1 818 688-9281 -pager: +1 818 511-6218 -roomNumber: 8995 -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Libor Schanne -sn: Schanne -description: This is Libor Schanne's description -facsimileTelephoneNumber: +1 804 231-8176 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 412-9863 -title: Master Product Testing Mascot -userPassword: Password1 -uid: SchanneL -givenName: Libor -mail: SchanneL@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com -carLicense: 61D8OJ -departmentNumber: 2349 -employeeType: Employee -homePhone: +1 804 415-3420 -initials: L. S. -mobile: +1 804 417-3385 -pager: +1 804 201-2594 -roomNumber: 8543 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bertie Bounds -sn: Bounds -description: This is Bertie Bounds's description -facsimileTelephoneNumber: +1 415 750-8701 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 264-7471 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: BoundsB -givenName: Bertie -mail: BoundsB@f103afa7e026431c8e52eb4ed735c99a.bitwarden.com -carLicense: TT3IP3 -departmentNumber: 4305 -employeeType: Employee -homePhone: +1 415 972-3383 -initials: B. B. -mobile: +1 415 502-3312 -pager: +1 415 792-2296 -roomNumber: 9375 -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pascale Hutchings -sn: Hutchings -description: This is Pascale Hutchings's description -facsimileTelephoneNumber: +1 408 718-8345 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 215-5203 -title: Junior Administrative Stooge -userPassword: Password1 -uid: HutchinP -givenName: Pascale -mail: HutchinP@1161e749733c49b2979c0ee6e1e741fc.bitwarden.com -carLicense: PVWFUH -departmentNumber: 6778 -employeeType: Employee -homePhone: +1 408 155-2345 -initials: P. H. -mobile: +1 408 176-9101 -pager: +1 408 439-8828 -roomNumber: 9645 -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rochella Mazarick -sn: Mazarick -description: This is Rochella Mazarick's description -facsimileTelephoneNumber: +1 213 837-2534 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 477-1659 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: MazaricR -givenName: Rochella -mail: MazaricR@4ad19e5c2a7149b892ada70174e983fb.bitwarden.com -carLicense: O6YWU9 -departmentNumber: 2925 -employeeType: Employee -homePhone: +1 213 287-3738 -initials: R. M. -mobile: +1 213 636-6964 -pager: +1 213 461-1190 -roomNumber: 8089 -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheela Adam -sn: Adam -description: This is Sheela Adam's description -facsimileTelephoneNumber: +1 818 149-7424 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 869-6093 -title: Supreme Product Development Dictator -userPassword: Password1 -uid: AdamS -givenName: Sheela -mail: AdamS@6eda6577067f465b84cdc51153ccba3d.bitwarden.com -carLicense: XRJNM6 -departmentNumber: 4078 -employeeType: Contract -homePhone: +1 818 211-1433 -initials: S. A. -mobile: +1 818 746-3524 -pager: +1 818 521-3759 -roomNumber: 8888 -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norio Crabtree -sn: Crabtree -description: This is Norio Crabtree's description -facsimileTelephoneNumber: +1 818 309-9004 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 818 622-4067 -title: Master Human Resources Pinhead -userPassword: Password1 -uid: CrabtreN -givenName: Norio -mail: CrabtreN@3913d51a20f344409448501766a0f142.bitwarden.com -carLicense: EMQBYJ -departmentNumber: 1707 -employeeType: Employee -homePhone: +1 818 789-2187 -initials: N. C. -mobile: +1 818 295-7203 -pager: +1 818 303-6169 -roomNumber: 9267 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jey Shackley -sn: Shackley -description: This is Jey Shackley's description -facsimileTelephoneNumber: +1 206 576-8771 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 461-3672 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: ShackleJ -givenName: Jey -mail: ShackleJ@e974b86e9f10486baa2ed0156d74e959.bitwarden.com -carLicense: HO8POI -departmentNumber: 3749 -employeeType: Employee -homePhone: +1 206 590-3447 -initials: J. S. -mobile: +1 206 746-6446 -pager: +1 206 558-7412 -roomNumber: 9020 -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linda Juhan -sn: Juhan -description: This is Linda Juhan's description -facsimileTelephoneNumber: +1 415 357-7178 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 415 810-9170 -title: Supreme Administrative Pinhead -userPassword: Password1 -uid: JuhanL -givenName: Linda -mail: JuhanL@e2cbb69d157949f2a27ec4f04bfab065.bitwarden.com -carLicense: Y6QE90 -departmentNumber: 5378 -employeeType: Employee -homePhone: +1 415 533-3660 -initials: L. J. -mobile: +1 415 857-9075 -pager: +1 415 957-7976 -roomNumber: 8672 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donica Banens -sn: Banens -description: This is Donica Banens's description -facsimileTelephoneNumber: +1 510 206-1389 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 977-9044 -title: Supreme Product Testing President -userPassword: Password1 -uid: BanensD -givenName: Donica -mail: BanensD@e4c6dfe9f4dd43a2a1ea392ceb99c9cb.bitwarden.com -carLicense: SHBOO8 -departmentNumber: 2341 -employeeType: Contract -homePhone: +1 510 183-4542 -initials: D. B. -mobile: +1 510 745-8192 -pager: +1 510 939-1061 -roomNumber: 8902 -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrei Postlethwaite -sn: Postlethwaite -description: This is Andrei Postlethwaite's description -facsimileTelephoneNumber: +1 804 226-3450 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 341-6118 -title: Master Payroll Engineer -userPassword: Password1 -uid: PostletA -givenName: Andrei -mail: PostletA@affed2f672a845bead4365ae80e4a101.bitwarden.com -carLicense: QUH8JU -departmentNumber: 8243 -employeeType: Contract -homePhone: +1 804 149-6906 -initials: A. P. -mobile: +1 804 716-9580 -pager: +1 804 877-5452 -roomNumber: 8136 -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marianna Fagan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marianna Fagan -sn: Fagan -description: This is Marianna Fagan's description -facsimileTelephoneNumber: +1 408 838-9631 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 192-4502 -title: Associate Product Testing Director -userPassword: Password1 -uid: FaganM -givenName: Marianna -mail: FaganM@9f90762fec514dd6aa8e8cba5782dba8.bitwarden.com -carLicense: I5KHUY -departmentNumber: 4115 -employeeType: Normal -homePhone: +1 408 515-1183 -initials: M. F. -mobile: +1 408 819-2231 -pager: +1 408 656-4247 -roomNumber: 8711 -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Otha Mousseau -sn: Mousseau -description: This is Otha Mousseau's description -facsimileTelephoneNumber: +1 408 831-2761 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 802-3891 -title: Junior Product Development Mascot -userPassword: Password1 -uid: MousseaO -givenName: Otha -mail: MousseaO@b5d68bec53824e6ba7d281f697cd7939.bitwarden.com -carLicense: D3WM3O -departmentNumber: 7435 -employeeType: Contract -homePhone: +1 408 361-1431 -initials: O. M. -mobile: +1 408 885-7381 -pager: +1 408 413-3290 -roomNumber: 9203 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rodrigus Helwege -sn: Helwege -description: This is Rodrigus Helwege's description -facsimileTelephoneNumber: +1 804 626-2326 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 938-1385 -title: Chief Peons Punk -userPassword: Password1 -uid: HelwegeR -givenName: Rodrigus -mail: HelwegeR@f89a515c80574bae9191a55e3c4dfaf6.bitwarden.com -carLicense: XP47D4 -departmentNumber: 4148 -employeeType: Employee -homePhone: +1 804 682-5473 -initials: R. H. -mobile: +1 804 101-8411 -pager: +1 804 922-1541 -roomNumber: 9956 -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cathe Bolli,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathe Bolli -sn: Bolli -description: This is Cathe Bolli's description -facsimileTelephoneNumber: +1 804 340-9957 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 804 191-9951 -title: Chief Payroll Sales Rep -userPassword: Password1 -uid: BolliC -givenName: Cathe -mail: BolliC@f7a81f2e1780475aad82532745d8c03d.bitwarden.com -carLicense: HCPBBJ -departmentNumber: 5984 -employeeType: Contract -homePhone: +1 804 867-5835 -initials: C. B. -mobile: +1 804 734-1845 -pager: +1 804 395-8082 -roomNumber: 9030 -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zsazsa Lindemulder -sn: Lindemulder -description: This is Zsazsa Lindemulder's description -facsimileTelephoneNumber: +1 818 300-1649 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 617-1076 -title: Chief Human Resources Architect -userPassword: Password1 -uid: LindemuZ -givenName: Zsazsa -mail: LindemuZ@5a39c0ae003342a5afebbb7b314c015d.bitwarden.com -carLicense: 7PLLWA -departmentNumber: 4464 -employeeType: Employee -homePhone: +1 818 226-1255 -initials: Z. L. -mobile: +1 818 810-7246 -pager: +1 818 164-9518 -roomNumber: 9970 -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odele Docherty -sn: Docherty -description: This is Odele Docherty's description -facsimileTelephoneNumber: +1 818 551-5843 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 225-6324 -title: Associate Peons Assistant -userPassword: Password1 -uid: DochertO -givenName: Odele -mail: DochertO@a59346ad14cf48868393d6c59fa9cec4.bitwarden.com -carLicense: 42Q65U -departmentNumber: 2906 -employeeType: Normal -homePhone: +1 818 610-4018 -initials: O. D. -mobile: +1 818 121-1575 -pager: +1 818 134-1145 -roomNumber: 9085 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allie Corbeil -sn: Corbeil -description: This is Allie Corbeil's description -facsimileTelephoneNumber: +1 804 536-9792 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 951-8179 -title: Associate Janitorial Architect -userPassword: Password1 -uid: CorbeilA -givenName: Allie -mail: CorbeilA@354ddafd53d546cbab9bc884653e06a1.bitwarden.com -carLicense: 62X8JD -departmentNumber: 6000 -employeeType: Employee -homePhone: +1 804 552-6963 -initials: A. C. -mobile: +1 804 682-7158 -pager: +1 804 908-3779 -roomNumber: 9472 -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marshal Mayo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marshal Mayo -sn: Mayo -description: This is Marshal Mayo's description -facsimileTelephoneNumber: +1 213 920-4521 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 667-7677 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: MayoM -givenName: Marshal -mail: MayoM@6ff512afd6074ffb8be89092e99d3615.bitwarden.com -carLicense: UCPR5R -departmentNumber: 4293 -employeeType: Employee -homePhone: +1 213 926-2028 -initials: M. M. -mobile: +1 213 779-9356 -pager: +1 213 600-1713 -roomNumber: 9976 -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com - -dn: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neil Bestavros -sn: Bestavros -description: This is Neil Bestavros's description -facsimileTelephoneNumber: +1 408 468-5234 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 798-8002 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: BestavrN -givenName: Neil -mail: BestavrN@ef157743b5d94ee5a4fdc8f8efde50c1.bitwarden.com -carLicense: 011SCS -departmentNumber: 4097 -employeeType: Contract -homePhone: +1 408 923-8688 -initials: N. B. -mobile: +1 408 595-7909 -pager: +1 408 468-7985 -roomNumber: 9239 -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pirooz Rashed -sn: Rashed -description: This is Pirooz Rashed's description -facsimileTelephoneNumber: +1 818 908-2422 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 269-5501 -title: Junior Administrative Warrior -userPassword: Password1 -uid: RashedP -givenName: Pirooz -mail: RashedP@a54b6e1d0be04405aa83502caa5550a3.bitwarden.com -carLicense: CCVUWR -departmentNumber: 8803 -employeeType: Normal -homePhone: +1 818 494-9592 -initials: P. R. -mobile: +1 818 222-6486 -pager: +1 818 871-4693 -roomNumber: 9337 -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com - -dn: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corinna Davy -sn: Davy -description: This is Corinna Davy's description -facsimileTelephoneNumber: +1 415 863-9848 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 508-6800 -title: Associate Management Architect -userPassword: Password1 -uid: DavyC -givenName: Corinna -mail: DavyC@7909b3c6de394fb88dda677b48087880.bitwarden.com -carLicense: 27O4TM -departmentNumber: 6807 -employeeType: Employee -homePhone: +1 415 285-4363 -initials: C. D. -mobile: +1 415 274-2805 -pager: +1 415 625-5796 -roomNumber: 8057 -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tesfagaber Luoma -sn: Luoma -description: This is Tesfagaber Luoma's description -facsimileTelephoneNumber: +1 804 717-4138 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 466-7437 -title: Associate Product Testing Writer -userPassword: Password1 -uid: LuomaT -givenName: Tesfagaber -mail: LuomaT@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com -carLicense: FB9LLS -departmentNumber: 1851 -employeeType: Employee -homePhone: +1 804 382-2067 -initials: T. L. -mobile: +1 804 684-6424 -pager: +1 804 556-4499 -roomNumber: 8906 -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melford Sehgal -sn: Sehgal -description: This is Melford Sehgal's description -facsimileTelephoneNumber: +1 213 688-7731 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 175-3533 -title: Supreme Product Development Fellow -userPassword: Password1 -uid: SehgalM -givenName: Melford -mail: SehgalM@22da63f56f314dcd9cf81575674754db.bitwarden.com -carLicense: XH7PFR -departmentNumber: 9814 -employeeType: Normal -homePhone: +1 213 228-8137 -initials: M. S. -mobile: +1 213 624-3369 -pager: +1 213 237-3388 -roomNumber: 8689 -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tsuyoshi Keast -sn: Keast -description: This is Tsuyoshi Keast's description -facsimileTelephoneNumber: +1 415 290-3677 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 530-1411 -title: Junior Payroll Vice President -userPassword: Password1 -uid: KeastT -givenName: Tsuyoshi -mail: KeastT@f9ac72c800c648adb93805922921ecdf.bitwarden.com -carLicense: Q2NQC0 -departmentNumber: 4722 -employeeType: Employee -homePhone: +1 415 359-2217 -initials: T. K. -mobile: +1 415 313-1121 -pager: +1 415 844-7444 -roomNumber: 9412 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juditha Moree -sn: Moree -description: This is Juditha Moree's description -facsimileTelephoneNumber: +1 206 880-2670 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 331-3582 -title: Associate Peons Czar -userPassword: Password1 -uid: MoreeJ -givenName: Juditha -mail: MoreeJ@4db77e65231d4196be74b445bea3989e.bitwarden.com -carLicense: 24QYRF -departmentNumber: 8482 -employeeType: Contract -homePhone: +1 206 679-3572 -initials: J. M. -mobile: +1 206 186-3840 -pager: +1 206 854-1910 -roomNumber: 8442 -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ibby Woroszczuk -sn: Woroszczuk -description: This is Ibby Woroszczuk's description -facsimileTelephoneNumber: +1 804 651-6753 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 804 954-6896 -title: Junior Peons Mascot -userPassword: Password1 -uid: WoroszcI -givenName: Ibby -mail: WoroszcI@37965586ec09459fa0ca3d745850a83d.bitwarden.com -carLicense: RBSET9 -departmentNumber: 4320 -employeeType: Employee -homePhone: +1 804 319-1456 -initials: I. W. -mobile: +1 804 706-7249 -pager: +1 804 266-1181 -roomNumber: 8659 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rodrigo Staten -sn: Staten -description: This is Rodrigo Staten's description -facsimileTelephoneNumber: +1 213 228-8866 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 174-7326 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: StatenR -givenName: Rodrigo -mail: StatenR@1a08913edfd44837a7e737b90b169ef7.bitwarden.com -carLicense: O9QU3Y -departmentNumber: 9568 -employeeType: Normal -homePhone: +1 213 505-8231 -initials: R. S. -mobile: +1 213 335-6247 -pager: +1 213 160-5983 -roomNumber: 9516 -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gerardjan Toulson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerardjan Toulson -sn: Toulson -description: This is Gerardjan Toulson's description -facsimileTelephoneNumber: +1 818 680-6567 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 923-8023 -title: Chief Peons Janitor -userPassword: Password1 -uid: ToulsonG -givenName: Gerardjan -mail: ToulsonG@697132edecc44b08a924e05590de1c19.bitwarden.com -carLicense: THF12W -departmentNumber: 8530 -employeeType: Contract -homePhone: +1 818 931-4238 -initials: G. T. -mobile: +1 818 148-8277 -pager: +1 818 729-7949 -roomNumber: 8188 -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: CheeYong BrownGillard -sn: BrownGillard -description: This is CheeYong BrownGillard's description -facsimileTelephoneNumber: +1 510 631-2166 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 840-5898 -title: Chief Management Evangelist -userPassword: Password1 -uid: BrownGiC -givenName: CheeYong -mail: BrownGiC@918e521a01f947209849cc2803a3bf8e.bitwarden.com -carLicense: QOCBTA -departmentNumber: 7518 -employeeType: Contract -homePhone: +1 510 905-3482 -initials: C. B. -mobile: +1 510 472-2680 -pager: +1 510 281-5762 -roomNumber: 8173 -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherri Hamilton -sn: Hamilton -description: This is Sherri Hamilton's description -facsimileTelephoneNumber: +1 415 712-2017 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 184-2209 -title: Associate Administrative Punk -userPassword: Password1 -uid: HamiltoS -givenName: Sherri -mail: HamiltoS@548e0585ebf342b985467eca55f4e5f8.bitwarden.com -carLicense: AB905E -departmentNumber: 3041 -employeeType: Normal -homePhone: +1 415 271-9542 -initials: S. H. -mobile: +1 415 917-4706 -pager: +1 415 995-1509 -roomNumber: 8287 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvaro Gopaul -sn: Gopaul -description: This is Alvaro Gopaul's description -facsimileTelephoneNumber: +1 213 255-7367 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 151-5342 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: GopaulA -givenName: Alvaro -mail: GopaulA@b95980740e3e4af9a8e0bdf7f4c5cc79.bitwarden.com -carLicense: DVSKHD -departmentNumber: 8684 -employeeType: Employee -homePhone: +1 213 817-6144 -initials: A. G. -mobile: +1 213 610-4039 -pager: +1 213 408-8828 -roomNumber: 8483 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kameko Lozier -sn: Lozier -description: This is Kameko Lozier's description -facsimileTelephoneNumber: +1 804 604-5884 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 804 889-1201 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: LozierK -givenName: Kameko -mail: LozierK@2837fee1af77497ebd94556ee2aed90f.bitwarden.com -carLicense: DYIYTC -departmentNumber: 6586 -employeeType: Normal -homePhone: +1 804 898-6271 -initials: K. L. -mobile: +1 804 504-2779 -pager: +1 804 102-7558 -roomNumber: 8466 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cariotta Loyst -sn: Loyst -description: This is Cariotta Loyst's description -facsimileTelephoneNumber: +1 804 368-2478 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 267-2600 -title: Supreme Administrative Stooge -userPassword: Password1 -uid: LoystC -givenName: Cariotta -mail: LoystC@9ce6bf5980404783a2a6de74e34f57ce.bitwarden.com -carLicense: D3HTM0 -departmentNumber: 2276 -employeeType: Normal -homePhone: +1 804 558-4434 -initials: C. L. -mobile: +1 804 754-4801 -pager: +1 804 589-8754 -roomNumber: 8678 -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alisa Centre -sn: Centre -description: This is Alisa Centre's description -facsimileTelephoneNumber: +1 408 596-7749 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 408 809-9169 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: CentreA -givenName: Alisa -mail: CentreA@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com -carLicense: YYJSEL -departmentNumber: 4519 -employeeType: Contract -homePhone: +1 408 930-7117 -initials: A. C. -mobile: +1 408 347-4286 -pager: +1 408 277-4052 -roomNumber: 8704 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shanon Vexler -sn: Vexler -description: This is Shanon Vexler's description -facsimileTelephoneNumber: +1 213 821-2939 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 520-8979 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: VexlerS -givenName: Shanon -mail: VexlerS@579e377dbccf49f9a1d3ddb8cb18a335.bitwarden.com -carLicense: UQUOAY -departmentNumber: 1442 -employeeType: Contract -homePhone: +1 213 448-2117 -initials: S. V. -mobile: +1 213 852-8670 -pager: +1 213 186-5634 -roomNumber: 8858 -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Air Falkner -sn: Falkner -description: This is Air Falkner's description -facsimileTelephoneNumber: +1 818 606-2321 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 818 644-2083 -title: Chief Administrative Janitor -userPassword: Password1 -uid: FalknerA -givenName: Air -mail: FalknerA@e6c11ea0a5f743ce85492782888f6da6.bitwarden.com -carLicense: CI1KS8 -departmentNumber: 8614 -employeeType: Contract -homePhone: +1 818 418-2320 -initials: A. F. -mobile: +1 818 598-9632 -pager: +1 818 844-7448 -roomNumber: 8344 -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Burton Backshall,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Burton Backshall -sn: Backshall -description: This is Burton Backshall's description -facsimileTelephoneNumber: +1 804 108-1992 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 324-2508 -title: Chief Product Development Madonna -userPassword: Password1 -uid: BackshaB -givenName: Burton -mail: BackshaB@d0791fb71f15494a9e924795bc26c624.bitwarden.com -carLicense: S4D0VT -departmentNumber: 3950 -employeeType: Normal -homePhone: +1 804 418-2575 -initials: B. B. -mobile: +1 804 754-9099 -pager: +1 804 235-2120 -roomNumber: 8549 -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frinel Beeston -sn: Beeston -description: This is Frinel Beeston's description -facsimileTelephoneNumber: +1 415 366-6365 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 765-8800 -title: Junior Product Development Manager -userPassword: Password1 -uid: BeestonF -givenName: Frinel -mail: BeestonF@c2fbe2791d9c4564ab131c65109368d4.bitwarden.com -carLicense: 1SMRMC -departmentNumber: 5890 -employeeType: Employee -homePhone: +1 415 217-3877 -initials: F. B. -mobile: +1 415 557-4203 -pager: +1 415 592-5767 -roomNumber: 8223 -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mahmoud Namiki -sn: Namiki -description: This is Mahmoud Namiki's description -facsimileTelephoneNumber: +1 804 517-1320 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 804 875-2228 -title: Chief Peons Engineer -userPassword: Password1 -uid: NamikiM -givenName: Mahmoud -mail: NamikiM@1bd9378f4faa43eeb60412b52d7ba309.bitwarden.com -carLicense: C3KSLQ -departmentNumber: 7870 -employeeType: Employee -homePhone: +1 804 817-8381 -initials: M. N. -mobile: +1 804 808-2111 -pager: +1 804 363-5856 -roomNumber: 9950 -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hpone Paryag -sn: Paryag -description: This is Hpone Paryag's description -facsimileTelephoneNumber: +1 510 765-1630 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 768-6587 -title: Master Management Stooge -userPassword: Password1 -uid: ParyagH -givenName: Hpone -mail: ParyagH@9aa79f8c69db4e08af4e7f9de400cc67.bitwarden.com -carLicense: 44F8T6 -departmentNumber: 5772 -employeeType: Contract -homePhone: +1 510 347-8613 -initials: H. P. -mobile: +1 510 927-9552 -pager: +1 510 922-8481 -roomNumber: 8121 -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alison Hunnicutt -sn: Hunnicutt -description: This is Alison Hunnicutt's description -facsimileTelephoneNumber: +1 818 728-8337 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 112-4895 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: HunnicuA -givenName: Alison -mail: HunnicuA@b20e95bb821d468897ef10c14e5d7732.bitwarden.com -carLicense: QQ162U -departmentNumber: 4613 -employeeType: Normal -homePhone: +1 818 642-4161 -initials: A. H. -mobile: +1 818 733-4578 -pager: +1 818 984-3676 -roomNumber: 8679 -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sieber Sallee -sn: Sallee -description: This is Sieber Sallee's description -facsimileTelephoneNumber: +1 510 116-1532 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 774-9397 -title: Junior Payroll Dictator -userPassword: Password1 -uid: SalleeS -givenName: Sieber -mail: SalleeS@b39d8f666f1848e6abb69d85d224a354.bitwarden.com -carLicense: UQW89A -departmentNumber: 6165 -employeeType: Contract -homePhone: +1 510 176-6099 -initials: S. S. -mobile: +1 510 399-1857 -pager: +1 510 955-7363 -roomNumber: 9689 -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rochette Kelleher -sn: Kelleher -description: This is Rochette Kelleher's description -facsimileTelephoneNumber: +1 510 382-9944 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 448-4733 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: KelleheR -givenName: Rochette -mail: KelleheR@f89cfd7b6c774159aa1072f91e39c57d.bitwarden.com -carLicense: TOWIOY -departmentNumber: 9932 -employeeType: Contract -homePhone: +1 510 659-6083 -initials: R. K. -mobile: +1 510 644-2571 -pager: +1 510 390-7289 -roomNumber: 8681 -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Caria Iribarren,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caria Iribarren -sn: Iribarren -description: This is Caria Iribarren's description -facsimileTelephoneNumber: +1 206 729-2304 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 474-3883 -title: Junior Payroll Fellow -userPassword: Password1 -uid: IribarrC -givenName: Caria -mail: IribarrC@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com -carLicense: 6V84CJ -departmentNumber: 4882 -employeeType: Employee -homePhone: +1 206 379-6576 -initials: C. I. -mobile: +1 206 693-6730 -pager: +1 206 564-9140 -roomNumber: 9127 -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odelle Translations -sn: Translations -description: This is Odelle Translations's description -facsimileTelephoneNumber: +1 408 823-3331 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 228-1972 -title: Chief Product Development Artist -userPassword: Password1 -uid: TranslaO -givenName: Odelle -mail: TranslaO@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com -carLicense: WL8BWN -departmentNumber: 1029 -employeeType: Normal -homePhone: +1 408 212-8842 -initials: O. T. -mobile: +1 408 365-1758 -pager: +1 408 429-2363 -roomNumber: 8896 -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carri Putman -sn: Putman -description: This is Carri Putman's description -facsimileTelephoneNumber: +1 213 600-4275 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 900-8919 -title: Associate Human Resources Figurehead -userPassword: Password1 -uid: PutmanC -givenName: Carri -mail: PutmanC@e4e6dd48bdee49b19bac8627f30f860e.bitwarden.com -carLicense: TC2MT1 -departmentNumber: 9919 -employeeType: Contract -homePhone: +1 213 629-8273 -initials: C. P. -mobile: +1 213 447-9103 -pager: +1 213 775-2486 -roomNumber: 9062 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emelia McDonough -sn: McDonough -description: This is Emelia McDonough's description -facsimileTelephoneNumber: +1 804 231-8000 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 804 753-1322 -title: Associate Product Testing Stooge -userPassword: Password1 -uid: McDonouE -givenName: Emelia -mail: McDonouE@d7308e0ca15544e4a4a8b07f0f8e915f.bitwarden.com -carLicense: NJ5D2S -departmentNumber: 7858 -employeeType: Employee -homePhone: +1 804 895-1352 -initials: E. M. -mobile: +1 804 149-1495 -pager: +1 804 705-4999 -roomNumber: 9854 -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Scarlet Netzke -sn: Netzke -description: This is Scarlet Netzke's description -facsimileTelephoneNumber: +1 408 276-7143 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 369-5357 -title: Chief Product Development Assistant -userPassword: Password1 -uid: NetzkeS -givenName: Scarlet -mail: NetzkeS@04d1c6c3175f4974b260a83a63c42a2e.bitwarden.com -carLicense: OTW8VP -departmentNumber: 3360 -employeeType: Normal -homePhone: +1 408 180-9908 -initials: S. N. -mobile: +1 408 485-9072 -pager: +1 408 764-2757 -roomNumber: 8726 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verene Rigstad -sn: Rigstad -description: This is Verene Rigstad's description -facsimileTelephoneNumber: +1 804 145-5885 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 718-9424 -title: Chief Management Assistant -userPassword: Password1 -uid: RigstadV -givenName: Verene -mail: RigstadV@69ee17ca1fce4d84a70a5da5e4623d42.bitwarden.com -carLicense: KASAWL -departmentNumber: 1864 -employeeType: Employee -homePhone: +1 804 174-6477 -initials: V. R. -mobile: +1 804 948-3297 -pager: +1 804 948-3091 -roomNumber: 8855 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corette Barbour -sn: Barbour -description: This is Corette Barbour's description -facsimileTelephoneNumber: +1 408 796-8322 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 785-2691 -title: Master Peons Janitor -userPassword: Password1 -uid: BarbourC -givenName: Corette -mail: BarbourC@f7bb4a6bddd0428a80f02d8f054f1d38.bitwarden.com -carLicense: G8UB4A -departmentNumber: 1771 -employeeType: Contract -homePhone: +1 408 424-3723 -initials: C. B. -mobile: +1 408 730-6312 -pager: +1 408 156-6342 -roomNumber: 8174 -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Becka McConkey -sn: McConkey -description: This is Becka McConkey's description -facsimileTelephoneNumber: +1 415 736-5088 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 507-2238 -title: Associate Administrative Mascot -userPassword: Password1 -uid: McConkeB -givenName: Becka -mail: McConkeB@f1434a2496e04947b22957e2d4157e2f.bitwarden.com -carLicense: 9N11PA -departmentNumber: 9600 -employeeType: Contract -homePhone: +1 415 820-3398 -initials: B. M. -mobile: +1 415 578-4244 -pager: +1 415 251-3981 -roomNumber: 9649 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elvina Thomson -sn: Thomson -description: This is Elvina Thomson's description -facsimileTelephoneNumber: +1 804 284-3068 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 154-8729 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: ThomsonE -givenName: Elvina -mail: ThomsonE@f4bc7e00c89b48dd98661e0980828f00.bitwarden.com -carLicense: 4TMEWR -departmentNumber: 9537 -employeeType: Employee -homePhone: +1 804 564-4148 -initials: E. T. -mobile: +1 804 447-3145 -pager: +1 804 738-1524 -roomNumber: 8935 -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosalynd Spitzer -sn: Spitzer -description: This is Rosalynd Spitzer's description -facsimileTelephoneNumber: +1 408 998-9339 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 185-6568 -title: Supreme Human Resources Figurehead -userPassword: Password1 -uid: SpitzerR -givenName: Rosalynd -mail: SpitzerR@4583e86a2ba94a5da0ee973472b7f221.bitwarden.com -carLicense: YLF3EL -departmentNumber: 8981 -employeeType: Contract -homePhone: +1 408 628-2922 -initials: R. S. -mobile: +1 408 264-4480 -pager: +1 408 965-8967 -roomNumber: 9587 -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shamshad Kuntova -sn: Kuntova -description: This is Shamshad Kuntova's description -facsimileTelephoneNumber: +1 818 688-2428 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 854-9115 -title: Chief Management Writer -userPassword: Password1 -uid: KuntovaS -givenName: Shamshad -mail: KuntovaS@54f117c8b36b486ab03de0f2d082701e.bitwarden.com -carLicense: 6RMAWT -departmentNumber: 3249 -employeeType: Employee -homePhone: +1 818 146-4251 -initials: S. K. -mobile: +1 818 997-8830 -pager: +1 818 724-4362 -roomNumber: 9351 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Barbey Hews,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbey Hews -sn: Hews -description: This is Barbey Hews's description -facsimileTelephoneNumber: +1 510 408-1677 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 135-8772 -title: Junior Payroll Assistant -userPassword: Password1 -uid: HewsB -givenName: Barbey -mail: HewsB@a7a2ea5054874ae4b56e15a527bea910.bitwarden.com -carLicense: 3PQ5AT -departmentNumber: 3407 -employeeType: Employee -homePhone: +1 510 654-9155 -initials: B. H. -mobile: +1 510 609-6394 -pager: +1 510 995-9588 -roomNumber: 8743 -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olympie Sails -sn: Sails -description: This is Olympie Sails's description -facsimileTelephoneNumber: +1 804 365-5739 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 862-2558 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: SailsO -givenName: Olympie -mail: SailsO@00ba8548c9214cafaefbf458359d4e04.bitwarden.com -carLicense: TDB99R -departmentNumber: 4612 -employeeType: Employee -homePhone: +1 804 907-2447 -initials: O. S. -mobile: +1 804 175-5923 -pager: +1 804 284-7119 -roomNumber: 8725 -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bessie Kurian -sn: Kurian -description: This is Bessie Kurian's description -facsimileTelephoneNumber: +1 408 237-7415 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 408 508-9707 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: KurianB -givenName: Bessie -mail: KurianB@8f19a5dea8ea45418a7a41a37029db9d.bitwarden.com -carLicense: YQAKHG -departmentNumber: 1441 -employeeType: Normal -homePhone: +1 408 718-5752 -initials: B. K. -mobile: +1 408 407-4682 -pager: +1 408 639-8215 -roomNumber: 8079 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardella Nagai -sn: Nagai -description: This is Ardella Nagai's description -facsimileTelephoneNumber: +1 818 535-9905 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 918-9964 -title: Junior Product Testing Czar -userPassword: Password1 -uid: NagaiA -givenName: Ardella -mail: NagaiA@d8616cd8f0a04953a01e474cf74f8ce6.bitwarden.com -carLicense: YIA8LV -departmentNumber: 6231 -employeeType: Contract -homePhone: +1 818 305-7235 -initials: A. N. -mobile: +1 818 797-9739 -pager: +1 818 435-7706 -roomNumber: 8169 -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bette Pipit -sn: Pipit -description: This is Bette Pipit's description -facsimileTelephoneNumber: +1 415 868-6052 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 628-3225 -title: Master Product Development Madonna -userPassword: Password1 -uid: PipitB -givenName: Bette -mail: PipitB@b417b358872d4f06a467efc0ad01ed42.bitwarden.com -carLicense: IN9IIF -departmentNumber: 2956 -employeeType: Employee -homePhone: +1 415 900-2196 -initials: B. P. -mobile: +1 415 897-8346 -pager: +1 415 767-6740 -roomNumber: 9888 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sigrid Strock -sn: Strock -description: This is Sigrid Strock's description -facsimileTelephoneNumber: +1 804 414-3647 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 766-8504 -title: Junior Human Resources Writer -userPassword: Password1 -uid: StrockS -givenName: Sigrid -mail: StrockS@9ef348c30ab2422686d3631e1278083f.bitwarden.com -carLicense: RPRHFJ -departmentNumber: 4451 -employeeType: Employee -homePhone: +1 804 767-8662 -initials: S. S. -mobile: +1 804 859-2408 -pager: +1 804 588-7723 -roomNumber: 8768 -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benne Baab -sn: Baab -description: This is Benne Baab's description -facsimileTelephoneNumber: +1 818 269-1058 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 705-2832 -title: Supreme Administrative Architect -userPassword: Password1 -uid: BaabB -givenName: Benne -mail: BaabB@baaf0b21059d49b7b0cbaab183707e97.bitwarden.com -carLicense: BKW4OK -departmentNumber: 9931 -employeeType: Contract -homePhone: +1 818 830-1848 -initials: B. B. -mobile: +1 818 195-1717 -pager: +1 818 336-5344 -roomNumber: 8552 -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zohar Hauge -sn: Hauge -description: This is Zohar Hauge's description -facsimileTelephoneNumber: +1 818 183-5550 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 875-9153 -title: Associate Human Resources Writer -userPassword: Password1 -uid: HaugeZ -givenName: Zohar -mail: HaugeZ@48f1828297214bd19c99e71d64dfcbf9.bitwarden.com -carLicense: X7J7L8 -departmentNumber: 4484 -employeeType: Employee -homePhone: +1 818 662-5092 -initials: Z. H. -mobile: +1 818 216-3571 -pager: +1 818 287-9895 -roomNumber: 9317 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melloney Clairmont -sn: Clairmont -description: This is Melloney Clairmont's description -facsimileTelephoneNumber: +1 804 255-2773 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 804 920-9383 -title: Junior Human Resources Consultant -userPassword: Password1 -uid: ClairmoM -givenName: Melloney -mail: ClairmoM@26ece7db144b41bb92ce5c1250e537b0.bitwarden.com -carLicense: SA2QWI -departmentNumber: 7625 -employeeType: Employee -homePhone: +1 804 359-4438 -initials: M. C. -mobile: +1 804 782-4135 -pager: +1 804 651-5931 -roomNumber: 8565 -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LyddaJune Challice -sn: Challice -description: This is LyddaJune Challice's description -facsimileTelephoneNumber: +1 213 487-6720 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 165-6182 -title: Chief Administrative Madonna -userPassword: Password1 -uid: ChallicL -givenName: LyddaJune -mail: ChallicL@25d255df81334378bc3576c7c1d51739.bitwarden.com -carLicense: 2S2GMM -departmentNumber: 9318 -employeeType: Contract -homePhone: +1 213 848-6776 -initials: L. C. -mobile: +1 213 627-2966 -pager: +1 213 914-7238 -roomNumber: 9146 -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ediva Hately -sn: Hately -description: This is Ediva Hately's description -facsimileTelephoneNumber: +1 510 208-5326 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 960-3743 -title: Supreme Payroll Stooge -userPassword: Password1 -uid: HatelyE -givenName: Ediva -mail: HatelyE@ec52acac521a47c8bb3c3eba39b11afe.bitwarden.com -carLicense: 9AQQVY -departmentNumber: 4524 -employeeType: Contract -homePhone: +1 510 437-3839 -initials: E. H. -mobile: +1 510 487-9783 -pager: +1 510 588-2249 -roomNumber: 9835 -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faizal Vezina -sn: Vezina -description: This is Faizal Vezina's description -facsimileTelephoneNumber: +1 206 409-4453 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 857-7214 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: VezinaF -givenName: Faizal -mail: VezinaF@6dd87ab9e5af49468fc97aebdbd7b449.bitwarden.com -carLicense: LXY99N -departmentNumber: 6069 -employeeType: Contract -homePhone: +1 206 932-6613 -initials: F. V. -mobile: +1 206 332-3284 -pager: +1 206 221-7419 -roomNumber: 8793 -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mehetabel Yarbrough -sn: Yarbrough -description: This is Mehetabel Yarbrough's description -facsimileTelephoneNumber: +1 804 804-3506 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 789-9162 -title: Master Product Testing Warrior -userPassword: Password1 -uid: YarbrouM -givenName: Mehetabel -mail: YarbrouM@d1612f2d13a644a1b4c476bf4354cf19.bitwarden.com -carLicense: BUN86E -departmentNumber: 7588 -employeeType: Normal -homePhone: +1 804 312-1030 -initials: M. Y. -mobile: +1 804 376-4062 -pager: +1 804 507-1322 -roomNumber: 9611 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Champathon Bhatti -sn: Bhatti -description: This is Champathon Bhatti's description -facsimileTelephoneNumber: +1 818 920-7458 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 818 215-2126 -title: Chief Management Writer -userPassword: Password1 -uid: BhattiC -givenName: Champathon -mail: BhattiC@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com -carLicense: Y56CJ2 -departmentNumber: 2980 -employeeType: Contract -homePhone: +1 818 561-5275 -initials: C. B. -mobile: +1 818 179-5513 -pager: +1 818 712-3774 -roomNumber: 8153 -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Habib Barreyre -sn: Barreyre -description: This is Habib Barreyre's description -facsimileTelephoneNumber: +1 415 982-5518 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 773-1812 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: BarreyrH -givenName: Habib -mail: BarreyrH@1702c7050ede4a30a493b614c6f96d2a.bitwarden.com -carLicense: D7V3G9 -departmentNumber: 2763 -employeeType: Normal -homePhone: +1 415 920-4837 -initials: H. B. -mobile: +1 415 918-2048 -pager: +1 415 186-5313 -roomNumber: 8666 -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nerita Jansen -sn: Jansen -description: This is Nerita Jansen's description -facsimileTelephoneNumber: +1 213 625-6075 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 213 954-4618 -title: Master Payroll Janitor -userPassword: Password1 -uid: JansenN -givenName: Nerita -mail: JansenN@f2c84157e6154587ab1b35a9267acfc4.bitwarden.com -carLicense: TA9H08 -departmentNumber: 1438 -employeeType: Employee -homePhone: +1 213 594-4707 -initials: N. J. -mobile: +1 213 627-4298 -pager: +1 213 802-6752 -roomNumber: 8014 -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rey Bayly -sn: Bayly -description: This is Rey Bayly's description -facsimileTelephoneNumber: +1 510 484-9533 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 510 921-5753 -title: Chief Product Testing Madonna -userPassword: Password1 -uid: BaylyR -givenName: Rey -mail: BaylyR@ad10fda7d62846699bd55fa5e7fba7a1.bitwarden.com -carLicense: HDSXTR -departmentNumber: 9890 -employeeType: Normal -homePhone: +1 510 712-4078 -initials: R. B. -mobile: +1 510 152-4135 -pager: +1 510 304-8291 -roomNumber: 8821 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vivian Faruque,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivian Faruque -sn: Faruque -description: This is Vivian Faruque's description -facsimileTelephoneNumber: +1 415 858-4559 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 647-2102 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: FaruqueV -givenName: Vivian -mail: FaruqueV@a3ff9ad4378e4e7583f3b4b9731af8f9.bitwarden.com -carLicense: NJJ9S6 -departmentNumber: 2417 -employeeType: Normal -homePhone: +1 415 176-2452 -initials: V. F. -mobile: +1 415 199-4010 -pager: +1 415 551-1919 -roomNumber: 8211 -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steve Iyengar -sn: Iyengar -description: This is Steve Iyengar's description -facsimileTelephoneNumber: +1 415 183-2078 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 488-5274 -title: Associate Product Development Evangelist -userPassword: Password1 -uid: IyengarS -givenName: Steve -mail: IyengarS@2e4bc239cf294f54ac5f0943a69682af.bitwarden.com -carLicense: A4UTHM -departmentNumber: 2622 -employeeType: Normal -homePhone: +1 415 441-2622 -initials: S. I. -mobile: +1 415 788-8983 -pager: +1 415 332-3576 -roomNumber: 8069 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martina Fuson -sn: Fuson -description: This is Martina Fuson's description -facsimileTelephoneNumber: +1 510 811-3395 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 447-5076 -title: Associate Human Resources Punk -userPassword: Password1 -uid: FusonM -givenName: Martina -mail: FusonM@0ae738aab8b34e09a528e238e7de4218.bitwarden.com -carLicense: 9QGRGS -departmentNumber: 7824 -employeeType: Contract -homePhone: +1 510 311-7769 -initials: M. F. -mobile: +1 510 628-1878 -pager: +1 510 462-4884 -roomNumber: 8003 -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dix NeKueey -sn: NeKueey -description: This is Dix NeKueey's description -facsimileTelephoneNumber: +1 818 997-4845 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 337-2474 -title: Junior Human Resources Engineer -userPassword: Password1 -uid: NeKueeyD -givenName: Dix -mail: NeKueeyD@8a81a9b500bd4a66b7be9ae0b34b3c40.bitwarden.com -carLicense: CPS6LN -departmentNumber: 2821 -employeeType: Contract -homePhone: +1 818 864-9854 -initials: D. N. -mobile: +1 818 460-2554 -pager: +1 818 405-8228 -roomNumber: 9632 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glenda Langenberg -sn: Langenberg -description: This is Glenda Langenberg's description -facsimileTelephoneNumber: +1 804 565-1801 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 584-9925 -title: Junior Janitorial Czar -userPassword: Password1 -uid: LangenbG -givenName: Glenda -mail: LangenbG@52c0af83c3aa40458e4bfbccce98b0cc.bitwarden.com -carLicense: HM5UFE -departmentNumber: 9196 -employeeType: Contract -homePhone: +1 804 278-9394 -initials: G. L. -mobile: +1 804 263-2708 -pager: +1 804 223-5005 -roomNumber: 9198 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Layananda Hrushowy -sn: Hrushowy -description: This is Layananda Hrushowy's description -facsimileTelephoneNumber: +1 213 907-9777 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 651-8307 -title: Master Human Resources Manager -userPassword: Password1 -uid: HrushowL -givenName: Layananda -mail: HrushowL@38306b84edde4354aecf7858df87e85c.bitwarden.com -carLicense: FLBSTW -departmentNumber: 5984 -employeeType: Normal -homePhone: +1 213 307-1226 -initials: L. H. -mobile: +1 213 454-1758 -pager: +1 213 542-5372 -roomNumber: 8905 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maude Wippel -sn: Wippel -description: This is Maude Wippel's description -facsimileTelephoneNumber: +1 206 897-7298 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 333-8061 -title: Junior Human Resources Consultant -userPassword: Password1 -uid: WippelM -givenName: Maude -mail: WippelM@35f4596c2f6f4d62a06cffe0bc4a52f3.bitwarden.com -carLicense: S5W2NA -departmentNumber: 7305 -employeeType: Contract -homePhone: +1 206 968-3724 -initials: M. W. -mobile: +1 206 377-5037 -pager: +1 206 247-2405 -roomNumber: 9066 -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherye Tanner -sn: Tanner -description: This is Cherye Tanner's description -facsimileTelephoneNumber: +1 408 350-6145 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 655-3414 -title: Supreme Product Development Madonna -userPassword: Password1 -uid: TannerC -givenName: Cherye -mail: TannerC@7798e7042f70474aba3b67fa0dae49e5.bitwarden.com -carLicense: V5DTR6 -departmentNumber: 9250 -employeeType: Employee -homePhone: +1 408 609-4618 -initials: C. T. -mobile: +1 408 660-3196 -pager: +1 408 740-4285 -roomNumber: 8247 -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edeline Kingdon -sn: Kingdon -description: This is Edeline Kingdon's description -facsimileTelephoneNumber: +1 510 950-2010 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 271-1077 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: KingdonE -givenName: Edeline -mail: KingdonE@4a47e69492284601911d68b00175e387.bitwarden.com -carLicense: J20T43 -departmentNumber: 7255 -employeeType: Normal -homePhone: +1 510 612-7384 -initials: E. K. -mobile: +1 510 225-7252 -pager: +1 510 933-6668 -roomNumber: 9470 -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nadya Security,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nadya Security -sn: Security -description: This is Nadya Security's description -facsimileTelephoneNumber: +1 818 841-1179 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 757-4533 -title: Master Product Development Assistant -userPassword: Password1 -uid: SecuritN -givenName: Nadya -mail: SecuritN@b9738f973d174fefb1c145c3c8510e65.bitwarden.com -carLicense: QRC278 -departmentNumber: 9716 -employeeType: Normal -homePhone: +1 818 899-8108 -initials: N. S. -mobile: +1 818 725-6531 -pager: +1 818 513-4789 -roomNumber: 8343 -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com - -dn: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Murray Longo -sn: Longo -description: This is Murray Longo's description -facsimileTelephoneNumber: +1 408 756-3460 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 489-6824 -title: Chief Peons Madonna -userPassword: Password1 -uid: LongoM -givenName: Murray -mail: LongoM@28e53bb2a33341d2aa3d71254b03f94e.bitwarden.com -carLicense: 7XGL84 -departmentNumber: 1305 -employeeType: Normal -homePhone: +1 408 786-9942 -initials: M. L. -mobile: +1 408 488-2711 -pager: +1 408 559-1331 -roomNumber: 8998 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catherin Witzman -sn: Witzman -description: This is Catherin Witzman's description -facsimileTelephoneNumber: +1 206 974-8735 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 816-7326 -title: Supreme Management Janitor -userPassword: Password1 -uid: WitzmanC -givenName: Catherin -mail: WitzmanC@9e6632ca10d4463a8725e828e08ec1be.bitwarden.com -carLicense: 5HS6TH -departmentNumber: 8922 -employeeType: Employee -homePhone: +1 206 576-3940 -initials: C. W. -mobile: +1 206 498-6291 -pager: +1 206 464-6117 -roomNumber: 9952 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harrison Salembier -sn: Salembier -description: This is Harrison Salembier's description -facsimileTelephoneNumber: +1 408 372-7570 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 387-1837 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: SalembiH -givenName: Harrison -mail: SalembiH@ac35a0f082f64c8fad3930aef071e266.bitwarden.com -carLicense: 170S2W -departmentNumber: 3109 -employeeType: Normal -homePhone: +1 408 372-3384 -initials: H. S. -mobile: +1 408 772-1782 -pager: +1 408 381-7545 -roomNumber: 8740 -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Judi Nahata -sn: Nahata -description: This is Judi Nahata's description -facsimileTelephoneNumber: +1 213 860-9264 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 831-6295 -title: Supreme Payroll Vice President -userPassword: Password1 -uid: NahataJ -givenName: Judi -mail: NahataJ@5fa2601aad7947d29e66e0d319cf4fe6.bitwarden.com -carLicense: MM3HMU -departmentNumber: 9180 -employeeType: Employee -homePhone: +1 213 612-4727 -initials: J. N. -mobile: +1 213 242-2899 -pager: +1 213 192-8510 -roomNumber: 8197 -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rudie Unxlb -sn: Unxlb -description: This is Rudie Unxlb's description -facsimileTelephoneNumber: +1 408 691-8332 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 471-3875 -title: Junior Management Warrior -userPassword: Password1 -uid: UnxlbR -givenName: Rudie -mail: UnxlbR@70f1ce8795a5424f95be4cd2035c7da5.bitwarden.com -carLicense: 447MG4 -departmentNumber: 4037 -employeeType: Contract -homePhone: +1 408 617-4420 -initials: R. U. -mobile: +1 408 987-5433 -pager: +1 408 492-4068 -roomNumber: 8495 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rochell Walkowiak -sn: Walkowiak -description: This is Rochell Walkowiak's description -facsimileTelephoneNumber: +1 206 519-5523 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 587-5820 -title: Junior Product Testing Technician -userPassword: Password1 -uid: WalkowiR -givenName: Rochell -mail: WalkowiR@68160ac83a0c4294838110992a71a0f1.bitwarden.com -carLicense: 3GE7IM -departmentNumber: 4803 -employeeType: Employee -homePhone: +1 206 908-3478 -initials: R. W. -mobile: +1 206 989-1692 -pager: +1 206 388-5775 -roomNumber: 9516 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noni Garwood -sn: Garwood -description: This is Noni Garwood's description -facsimileTelephoneNumber: +1 818 134-1280 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 818 410-4278 -title: Associate Janitorial Technician -userPassword: Password1 -uid: GarwoodN -givenName: Noni -mail: GarwoodN@5a401695e3b247eaaefdf24718c62818.bitwarden.com -carLicense: 0Q3LID -departmentNumber: 3357 -employeeType: Normal -homePhone: +1 818 328-4179 -initials: N. G. -mobile: +1 818 899-6911 -pager: +1 818 426-7539 -roomNumber: 9085 -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melanie Sager -sn: Sager -description: This is Melanie Sager's description -facsimileTelephoneNumber: +1 206 279-2368 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 568-4131 -title: Chief Administrative Artist -userPassword: Password1 -uid: SagerM -givenName: Melanie -mail: SagerM@b9f5d400bf0646fc915b7405c1e68fb5.bitwarden.com -carLicense: 34HECM -departmentNumber: 2510 -employeeType: Employee -homePhone: +1 206 738-8572 -initials: M. S. -mobile: +1 206 219-6859 -pager: +1 206 100-2292 -roomNumber: 8663 -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Breena Psklib -sn: Psklib -description: This is Breena Psklib's description -facsimileTelephoneNumber: +1 510 889-2566 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 758-5405 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: PsklibB -givenName: Breena -mail: PsklibB@78e43a217f1544b688e5b552cf94a4d4.bitwarden.com -carLicense: 9IY4L6 -departmentNumber: 4282 -employeeType: Normal -homePhone: +1 510 119-3941 -initials: B. P. -mobile: +1 510 160-2038 -pager: +1 510 126-5021 -roomNumber: 9657 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jeni Gros,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeni Gros -sn: Gros -description: This is Jeni Gros's description -facsimileTelephoneNumber: +1 213 102-7509 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 804-1487 -title: Chief Peons Artist -userPassword: Password1 -uid: GrosJ -givenName: Jeni -mail: GrosJ@26c6bb248ba04843bb1af218af492cce.bitwarden.com -carLicense: OJAG1L -departmentNumber: 1735 -employeeType: Contract -homePhone: +1 213 540-5098 -initials: J. G. -mobile: +1 213 289-8098 -pager: +1 213 612-2675 -roomNumber: 8691 -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoda Mejury -sn: Mejury -description: This is Yoda Mejury's description -facsimileTelephoneNumber: +1 206 340-5526 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 767-8371 -title: Master Administrative Punk -userPassword: Password1 -uid: MejuryY -givenName: Yoda -mail: MejuryY@772f2352dfda4e68a2e93adac56a7699.bitwarden.com -carLicense: JAIA4O -departmentNumber: 4423 -employeeType: Employee -homePhone: +1 206 669-6719 -initials: Y. M. -mobile: +1 206 436-5813 -pager: +1 206 701-1964 -roomNumber: 8098 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charla Mahbeer -sn: Mahbeer -description: This is Charla Mahbeer's description -facsimileTelephoneNumber: +1 804 248-8122 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 852-2041 -title: Master Payroll Director -userPassword: Password1 -uid: MahbeerC -givenName: Charla -mail: MahbeerC@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com -carLicense: 057WX0 -departmentNumber: 9979 -employeeType: Normal -homePhone: +1 804 146-2626 -initials: C. M. -mobile: +1 804 734-4657 -pager: +1 804 176-8848 -roomNumber: 9511 -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roana Jurman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roana Jurman -sn: Jurman -description: This is Roana Jurman's description -facsimileTelephoneNumber: +1 804 829-1137 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 529-4586 -title: Chief Administrative Grunt -userPassword: Password1 -uid: JurmanR -givenName: Roana -mail: JurmanR@9dfbdbf789f545c2997fc26ecdaa5624.bitwarden.com -carLicense: D2ID0D -departmentNumber: 7302 -employeeType: Employee -homePhone: +1 804 913-9102 -initials: R. J. -mobile: +1 804 183-3437 -pager: +1 804 298-6482 -roomNumber: 8014 -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eustacia Efthim -sn: Efthim -description: This is Eustacia Efthim's description -facsimileTelephoneNumber: +1 804 530-6347 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 176-8863 -title: Chief Product Testing Director -userPassword: Password1 -uid: EfthimE -givenName: Eustacia -mail: EfthimE@dfe553cd1a3f4695943b7b16fc34c074.bitwarden.com -carLicense: CJ1E8I -departmentNumber: 4798 -employeeType: Normal -homePhone: +1 804 223-3626 -initials: E. E. -mobile: +1 804 288-7335 -pager: +1 804 311-3137 -roomNumber: 9397 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hqs Bresnan -sn: Bresnan -description: This is Hqs Bresnan's description -facsimileTelephoneNumber: +1 510 584-9846 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 510 401-4460 -title: Chief Administrative Dictator -userPassword: Password1 -uid: BresnanH -givenName: Hqs -mail: BresnanH@e43cc7ce085348f1b4b8706b3e875f12.bitwarden.com -carLicense: O2H9HO -departmentNumber: 8946 -employeeType: Contract -homePhone: +1 510 556-2810 -initials: H. B. -mobile: +1 510 865-5391 -pager: +1 510 559-4192 -roomNumber: 9561 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tuhina Syrett -sn: Syrett -description: This is Tuhina Syrett's description -facsimileTelephoneNumber: +1 510 592-7404 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 574-9777 -title: Supreme Product Development Manager -userPassword: Password1 -uid: SyrettT -givenName: Tuhina -mail: SyrettT@1f071e8813ad43c0a975571fab76b110.bitwarden.com -carLicense: 3CUPAF -departmentNumber: 6073 -employeeType: Normal -homePhone: +1 510 992-9674 -initials: T. S. -mobile: +1 510 216-3609 -pager: +1 510 787-8249 -roomNumber: 8029 -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dianemarie Schwaderer -sn: Schwaderer -description: This is Dianemarie Schwaderer's description -facsimileTelephoneNumber: +1 415 737-8636 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 415 890-8255 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: SchwadeD -givenName: Dianemarie -mail: SchwadeD@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com -carLicense: YDTQXB -departmentNumber: 5515 -employeeType: Normal -homePhone: +1 415 810-5868 -initials: D. S. -mobile: +1 415 295-9167 -pager: +1 415 419-1363 -roomNumber: 9035 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lottie Zattiero -sn: Zattiero -description: This is Lottie Zattiero's description -facsimileTelephoneNumber: +1 818 595-5540 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 429-6089 -title: Master Janitorial Punk -userPassword: Password1 -uid: ZattierL -givenName: Lottie -mail: ZattierL@765c6bf8e6a844bd84fd3519331c09a2.bitwarden.com -carLicense: FX84G9 -departmentNumber: 4283 -employeeType: Contract -homePhone: +1 818 764-2560 -initials: L. Z. -mobile: +1 818 373-2724 -pager: +1 818 745-6111 -roomNumber: 8046 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Genia Oestreich,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genia Oestreich -sn: Oestreich -description: This is Genia Oestreich's description -facsimileTelephoneNumber: +1 510 611-5662 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 984-1858 -title: Junior Human Resources Mascot -userPassword: Password1 -uid: OestreiG -givenName: Genia -mail: OestreiG@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com -carLicense: DTP3GR -departmentNumber: 4435 -employeeType: Contract -homePhone: +1 510 724-4062 -initials: G. O. -mobile: +1 510 675-5166 -pager: +1 510 700-8787 -roomNumber: 8701 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lizzy Wieland -sn: Wieland -description: This is Lizzy Wieland's description -facsimileTelephoneNumber: +1 415 387-6415 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 883-9631 -title: Junior Janitorial Stooge -userPassword: Password1 -uid: WielandL -givenName: Lizzy -mail: WielandL@bcf6de0b8d2c44a68286d08f9d47b1f4.bitwarden.com -carLicense: D5A6NW -departmentNumber: 6255 -employeeType: Employee -homePhone: +1 415 715-1822 -initials: L. W. -mobile: +1 415 203-4717 -pager: +1 415 919-3671 -roomNumber: 9645 -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bianka Zeiger -sn: Zeiger -description: This is Bianka Zeiger's description -facsimileTelephoneNumber: +1 510 931-1671 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 567-9153 -title: Junior Management Fellow -userPassword: Password1 -uid: ZeigerB -givenName: Bianka -mail: ZeigerB@e02ec4faef1b4085b1936ed885e8098e.bitwarden.com -carLicense: I3JJB9 -departmentNumber: 4285 -employeeType: Normal -homePhone: +1 510 831-7896 -initials: B. Z. -mobile: +1 510 929-6040 -pager: +1 510 906-1756 -roomNumber: 9305 -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessalin Sauve -sn: Sauve -description: This is Jessalin Sauve's description -facsimileTelephoneNumber: +1 804 888-8759 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 597-3415 -title: Associate Payroll Warrior -userPassword: Password1 -uid: SauveJ -givenName: Jessalin -mail: SauveJ@a54e1a8d83dc4c3fb078394695fc7ec3.bitwarden.com -carLicense: WN0W2X -departmentNumber: 2497 -employeeType: Normal -homePhone: +1 804 435-1901 -initials: J. S. -mobile: +1 804 211-1549 -pager: +1 804 272-7024 -roomNumber: 9325 -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saman Dunik -sn: Dunik -description: This is Saman Dunik's description -facsimileTelephoneNumber: +1 510 151-9531 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 472-9856 -title: Master Product Development Madonna -userPassword: Password1 -uid: DunikS -givenName: Saman -mail: DunikS@e743ff560bc141ac901e6e68b4d4b309.bitwarden.com -carLicense: IWHT9B -departmentNumber: 9317 -employeeType: Employee -homePhone: +1 510 635-3552 -initials: S. D. -mobile: +1 510 715-6725 -pager: +1 510 470-1354 -roomNumber: 9548 -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giulia Bocservice -sn: Bocservice -description: This is Giulia Bocservice's description -facsimileTelephoneNumber: +1 818 625-1550 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 656-3971 -title: Master Janitorial Janitor -userPassword: Password1 -uid: BocservG -givenName: Giulia -mail: BocservG@7e77b31039db4b1f99292c84f6f816dd.bitwarden.com -carLicense: NEX1H9 -departmentNumber: 1597 -employeeType: Normal -homePhone: +1 818 575-7257 -initials: G. B. -mobile: +1 818 768-4260 -pager: +1 818 663-7421 -roomNumber: 8020 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pierre Latin -sn: Latin -description: This is Pierre Latin's description -facsimileTelephoneNumber: +1 510 396-4338 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 683-8772 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: LatinP -givenName: Pierre -mail: LatinP@644890029ffd446eb74105a23250b77a.bitwarden.com -carLicense: VEUA6I -departmentNumber: 8673 -employeeType: Normal -homePhone: +1 510 345-5730 -initials: P. L. -mobile: +1 510 704-9890 -pager: +1 510 747-8197 -roomNumber: 9715 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nariko Hobgood -sn: Hobgood -description: This is Nariko Hobgood's description -facsimileTelephoneNumber: +1 510 394-7191 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 129-9324 -title: Chief Peons Dictator -userPassword: Password1 -uid: HobgoodN -givenName: Nariko -mail: HobgoodN@9ed24949c63a464eabe81723e17de419.bitwarden.com -carLicense: 39CVBG -departmentNumber: 2807 -employeeType: Normal -homePhone: +1 510 727-7392 -initials: N. H. -mobile: +1 510 634-5556 -pager: +1 510 252-1486 -roomNumber: 8158 -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isin Scheck -sn: Scheck -description: This is Isin Scheck's description -facsimileTelephoneNumber: +1 510 630-5143 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 274-6623 -title: Chief Administrative Consultant -userPassword: Password1 -uid: ScheckI -givenName: Isin -mail: ScheckI@bc1e9c4893b549519fdc2cec6b403596.bitwarden.com -carLicense: YM77TE -departmentNumber: 1943 -employeeType: Normal -homePhone: +1 510 954-8207 -initials: I. S. -mobile: +1 510 317-4525 -pager: +1 510 982-1171 -roomNumber: 9649 -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tessy McClelland -sn: McClelland -description: This is Tessy McClelland's description -facsimileTelephoneNumber: +1 415 669-9276 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 425-6782 -title: Master Human Resources Admin -userPassword: Password1 -uid: McClellT -givenName: Tessy -mail: McClellT@60dd1cbe4aa24d86beb286bcf0b69548.bitwarden.com -carLicense: CX69QI -departmentNumber: 1950 -employeeType: Normal -homePhone: +1 415 882-1465 -initials: T. M. -mobile: +1 415 568-3132 -pager: +1 415 464-9528 -roomNumber: 9320 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dany Barel -sn: Barel -description: This is Dany Barel's description -facsimileTelephoneNumber: +1 408 700-3003 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 869-1614 -title: Master Human Resources Assistant -userPassword: Password1 -uid: BarelD -givenName: Dany -mail: BarelD@6bff82c20ec04cdbbb19d4912ec16456.bitwarden.com -carLicense: 34R7PI -departmentNumber: 4701 -employeeType: Contract -homePhone: +1 408 902-8283 -initials: D. B. -mobile: +1 408 871-1218 -pager: +1 408 979-4653 -roomNumber: 8265 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lana Ellerman -sn: Ellerman -description: This is Lana Ellerman's description -facsimileTelephoneNumber: +1 206 238-7944 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 206 765-4139 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: EllermaL -givenName: Lana -mail: EllermaL@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com -carLicense: 3IWVU4 -departmentNumber: 6998 -employeeType: Contract -homePhone: +1 206 972-3559 -initials: L. E. -mobile: +1 206 571-3723 -pager: +1 206 904-6714 -roomNumber: 8496 -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dusan Bcs,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dusan Bcs -sn: Bcs -description: This is Dusan Bcs's description -facsimileTelephoneNumber: +1 206 619-2608 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 629-6911 -title: Junior Payroll Director -userPassword: Password1 -uid: BcsD -givenName: Dusan -mail: BcsD@293ff1600ea248568d3941cc4fb51d60.bitwarden.com -carLicense: G9SD48 -departmentNumber: 6153 -employeeType: Normal -homePhone: +1 206 169-7422 -initials: D. B. -mobile: +1 206 896-2786 -pager: +1 206 417-4465 -roomNumber: 9124 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shekhar Howat -sn: Howat -description: This is Shekhar Howat's description -facsimileTelephoneNumber: +1 510 969-7243 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 622-2099 -title: Chief Administrative Fellow -userPassword: Password1 -uid: HowatS -givenName: Shekhar -mail: HowatS@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com -carLicense: RXUK3I -departmentNumber: 9483 -employeeType: Contract -homePhone: +1 510 720-7215 -initials: S. H. -mobile: +1 510 946-2784 -pager: +1 510 246-3198 -roomNumber: 8538 -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulcie deCHABERT -sn: deCHABERT -description: This is Dulcie deCHABERT's description -facsimileTelephoneNumber: +1 818 796-5539 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 400-6343 -title: Associate Product Development Dictator -userPassword: Password1 -uid: deCHABED -givenName: Dulcie -mail: deCHABED@4dd695555b2a49e2b74882d7eff564a3.bitwarden.com -carLicense: 4C9LBH -departmentNumber: 3487 -employeeType: Normal -homePhone: +1 818 481-5900 -initials: D. d. -mobile: +1 818 829-1600 -pager: +1 818 108-7540 -roomNumber: 9314 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shara Tims,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shara Tims -sn: Tims -description: This is Shara Tims's description -facsimileTelephoneNumber: +1 213 509-3565 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 346-9073 -title: Supreme Management Sales Rep -userPassword: Password1 -uid: TimsS -givenName: Shara -mail: TimsS@5d35c5b6f750428c9353f8dff621462f.bitwarden.com -carLicense: REMIRA -departmentNumber: 2119 -employeeType: Employee -homePhone: +1 213 452-9223 -initials: S. T. -mobile: +1 213 341-1667 -pager: +1 213 342-1340 -roomNumber: 8470 -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Floyd Shelby -sn: Shelby -description: This is Floyd Shelby's description -facsimileTelephoneNumber: +1 415 150-3091 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 235-7919 -title: Chief Human Resources Czar -userPassword: Password1 -uid: ShelbyF -givenName: Floyd -mail: ShelbyF@f4427bd3a5b545c2b85736658e707e3f.bitwarden.com -carLicense: NNO6X7 -departmentNumber: 6338 -employeeType: Employee -homePhone: +1 415 798-5494 -initials: F. S. -mobile: +1 415 764-8943 -pager: +1 415 604-4655 -roomNumber: 9742 -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirabelle Ricciuto -sn: Ricciuto -description: This is Mirabelle Ricciuto's description -facsimileTelephoneNumber: +1 415 196-4277 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 672-1152 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: RicciutM -givenName: Mirabelle -mail: RicciutM@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com -carLicense: 9QB3OD -departmentNumber: 1946 -employeeType: Contract -homePhone: +1 415 428-6767 -initials: M. R. -mobile: +1 415 505-5628 -pager: +1 415 390-8417 -roomNumber: 8579 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dacie Kato -sn: Kato -description: This is Dacie Kato's description -facsimileTelephoneNumber: +1 415 568-4895 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 660-2804 -title: Master Administrative Director -userPassword: Password1 -uid: KatoD -givenName: Dacie -mail: KatoD@3e66c64942f744cf87e59fe75cc026a5.bitwarden.com -carLicense: 44UNIM -departmentNumber: 6303 -employeeType: Employee -homePhone: +1 415 762-8076 -initials: D. K. -mobile: +1 415 279-3415 -pager: +1 415 634-1676 -roomNumber: 9477 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilberte Abadines -sn: Abadines -description: This is Gilberte Abadines's description -facsimileTelephoneNumber: +1 213 528-4663 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 187-4291 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: AbadineG -givenName: Gilberte -mail: AbadineG@28bab7013196462088adedc0b611337e.bitwarden.com -carLicense: FT70WT -departmentNumber: 1434 -employeeType: Normal -homePhone: +1 213 434-4706 -initials: G. A. -mobile: +1 213 146-4976 -pager: +1 213 881-7270 -roomNumber: 8801 -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenore Spraggins -sn: Spraggins -description: This is Lenore Spraggins's description -facsimileTelephoneNumber: +1 510 719-2600 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 319-6445 -title: Associate Management Sales Rep -userPassword: Password1 -uid: SpraggiL -givenName: Lenore -mail: SpraggiL@48f1828297214bd19c99e71d64dfcbf9.bitwarden.com -carLicense: E7JAWN -departmentNumber: 7818 -employeeType: Contract -homePhone: +1 510 276-7757 -initials: L. S. -mobile: +1 510 169-5252 -pager: +1 510 583-2722 -roomNumber: 8014 -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prafula Diffee -sn: Diffee -description: This is Prafula Diffee's description -facsimileTelephoneNumber: +1 206 950-9769 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 106-9520 -title: Master Management Assistant -userPassword: Password1 -uid: DiffeeP -givenName: Prafula -mail: DiffeeP@e57fc3c0c9fd4fe59e5be73e693747dc.bitwarden.com -carLicense: NYNJDE -departmentNumber: 2131 -employeeType: Contract -homePhone: +1 206 800-9149 -initials: P. D. -mobile: +1 206 357-5934 -pager: +1 206 125-4720 -roomNumber: 9281 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michiko Schmoe -sn: Schmoe -description: This is Michiko Schmoe's description -facsimileTelephoneNumber: +1 510 639-9191 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 814-2483 -title: Master Product Testing Admin -userPassword: Password1 -uid: SchmoeM -givenName: Michiko -mail: SchmoeM@acd0b809d8b743afb94979b86a5c2246.bitwarden.com -carLicense: M3SBAC -departmentNumber: 4041 -employeeType: Employee -homePhone: +1 510 234-1416 -initials: M. S. -mobile: +1 510 143-4401 -pager: +1 510 809-5620 -roomNumber: 9778 -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lelah Marcellus -sn: Marcellus -description: This is Lelah Marcellus's description -facsimileTelephoneNumber: +1 206 480-5785 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 874-4343 -title: Chief Peons Vice President -userPassword: Password1 -uid: MarcellL -givenName: Lelah -mail: MarcellL@169cb65474a04a90af058154d6e97aa7.bitwarden.com -carLicense: JHU0MU -departmentNumber: 3725 -employeeType: Contract -homePhone: +1 206 290-6934 -initials: L. M. -mobile: +1 206 429-5996 -pager: +1 206 168-2081 -roomNumber: 8460 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marion Commons -sn: Commons -description: This is Marion Commons's description -facsimileTelephoneNumber: +1 206 874-8812 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 619-7287 -title: Junior Payroll Dictator -userPassword: Password1 -uid: CommonsM -givenName: Marion -mail: CommonsM@f20cdd91b77c4fa1af532b2ee7f13b4b.bitwarden.com -carLicense: 7O6GED -departmentNumber: 4879 -employeeType: Contract -homePhone: +1 206 831-7239 -initials: M. C. -mobile: +1 206 299-4310 -pager: +1 206 557-3611 -roomNumber: 8922 -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gay Golia -sn: Golia -description: This is Gay Golia's description -facsimileTelephoneNumber: +1 213 706-8087 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 213 508-5418 -title: Junior Payroll Madonna -userPassword: Password1 -uid: GoliaG -givenName: Gay -mail: GoliaG@da12337d358141f5bd4c9f1cff61b597.bitwarden.com -carLicense: 8FKVTC -departmentNumber: 5411 -employeeType: Normal -homePhone: +1 213 780-7330 -initials: G. G. -mobile: +1 213 318-9583 -pager: +1 213 128-5137 -roomNumber: 9096 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com - -dn: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susanetta Technosoft -sn: Technosoft -description: This is Susanetta Technosoft's description -facsimileTelephoneNumber: +1 415 785-9450 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 205-3132 -title: Junior Peons Director -userPassword: Password1 -uid: TechnosS -givenName: Susanetta -mail: TechnosS@b691a9d9d55d48b682fc2aa40cacb560.bitwarden.com -carLicense: 9LON7Q -departmentNumber: 4163 -employeeType: Contract -homePhone: +1 415 475-3046 -initials: S. T. -mobile: +1 415 731-6380 -pager: +1 415 495-2747 -roomNumber: 9358 -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jasmina Levasseur -sn: Levasseur -description: This is Jasmina Levasseur's description -facsimileTelephoneNumber: +1 510 457-3491 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 120-4619 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: LevasseJ -givenName: Jasmina -mail: LevasseJ@be3459b8963e4676a7255dc7efa74560.bitwarden.com -carLicense: LJHYPF -departmentNumber: 1625 -employeeType: Normal -homePhone: +1 510 723-5611 -initials: J. L. -mobile: +1 510 930-9450 -pager: +1 510 703-3801 -roomNumber: 9541 -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nha Chytil -sn: Chytil -description: This is Nha Chytil's description -facsimileTelephoneNumber: +1 804 980-6423 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 601-8108 -title: Chief Product Testing Grunt -userPassword: Password1 -uid: ChytilN -givenName: Nha -mail: ChytilN@802b05236c97484db9a6d34278cbb7c2.bitwarden.com -carLicense: 9CG7SK -departmentNumber: 6642 -employeeType: Contract -homePhone: +1 804 427-2010 -initials: N. C. -mobile: +1 804 141-7750 -pager: +1 804 244-4681 -roomNumber: 9686 -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Newton Hoddinott,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Newton Hoddinott -sn: Hoddinott -description: This is Newton Hoddinott's description -facsimileTelephoneNumber: +1 415 684-9578 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 559-2547 -title: Chief Peons Pinhead -userPassword: Password1 -uid: HoddinoN -givenName: Newton -mail: HoddinoN@7eb3446796544055a8625bc9cff5db0c.bitwarden.com -carLicense: AQCA2S -departmentNumber: 9781 -employeeType: Contract -homePhone: +1 415 270-6429 -initials: N. H. -mobile: +1 415 291-3606 -pager: +1 415 980-5825 -roomNumber: 8154 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allyn Aitken -sn: Aitken -description: This is Allyn Aitken's description -facsimileTelephoneNumber: +1 213 441-2652 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 283-8767 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: AitkenA -givenName: Allyn -mail: AitkenA@7946abd9e23746828acbb3d03a0807b4.bitwarden.com -carLicense: FGQR5S -departmentNumber: 7187 -employeeType: Normal -homePhone: +1 213 751-4464 -initials: A. A. -mobile: +1 213 413-2717 -pager: +1 213 795-5102 -roomNumber: 9585 -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anand Lojewski -sn: Lojewski -description: This is Anand Lojewski's description -facsimileTelephoneNumber: +1 213 208-8459 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 268-7037 -title: Chief Product Testing Director -userPassword: Password1 -uid: LojewskA -givenName: Anand -mail: LojewskA@c6d1ec6a4914414f92d063e0d067da44.bitwarden.com -carLicense: K2WIPY -departmentNumber: 3358 -employeeType: Normal -homePhone: +1 213 948-8182 -initials: A. L. -mobile: +1 213 464-7733 -pager: +1 213 354-2821 -roomNumber: 8712 -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kitt Fetzko -sn: Fetzko -description: This is Kitt Fetzko's description -facsimileTelephoneNumber: +1 415 362-8654 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 385-8636 -title: Junior Payroll Fellow -userPassword: Password1 -uid: FetzkoK -givenName: Kitt -mail: FetzkoK@bd7ed784957343358f080e4bf8b3e472.bitwarden.com -carLicense: BU7CTH -departmentNumber: 6024 -employeeType: Contract -homePhone: +1 415 628-3876 -initials: K. F. -mobile: +1 415 369-1940 -pager: +1 415 675-6855 -roomNumber: 8108 -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fleet Nie -sn: Nie -description: This is Fleet Nie's description -facsimileTelephoneNumber: +1 818 956-1994 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 923-7742 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: NieF -givenName: Fleet -mail: NieF@b7e1a16b9cde4b3eaeea7ec65d5e0355.bitwarden.com -carLicense: KUPV1L -departmentNumber: 9926 -employeeType: Employee -homePhone: +1 818 317-6994 -initials: F. N. -mobile: +1 818 867-6873 -pager: +1 818 797-3217 -roomNumber: 9657 -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=WeeThong Berube,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WeeThong Berube -sn: Berube -description: This is WeeThong Berube's description -facsimileTelephoneNumber: +1 415 333-1464 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 955-5006 -title: Associate Management Assistant -userPassword: Password1 -uid: BerubeW -givenName: WeeThong -mail: BerubeW@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com -carLicense: A5R072 -departmentNumber: 7918 -employeeType: Normal -homePhone: +1 415 835-4602 -initials: W. B. -mobile: +1 415 526-8125 -pager: +1 415 650-6810 -roomNumber: 8263 -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manimozhi Morettin -sn: Morettin -description: This is Manimozhi Morettin's description -facsimileTelephoneNumber: +1 213 806-6507 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 561-9040 -title: Associate Janitorial Director -userPassword: Password1 -uid: MorettiM -givenName: Manimozhi -mail: MorettiM@e238991b4ea94ec2a590fa4d2299b05f.bitwarden.com -carLicense: WOJHB2 -departmentNumber: 8056 -employeeType: Employee -homePhone: +1 213 904-4164 -initials: M. M. -mobile: +1 213 593-7970 -pager: +1 213 285-5852 -roomNumber: 8880 -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farshid Gard -sn: Gard -description: This is Farshid Gard's description -facsimileTelephoneNumber: +1 206 103-3973 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 651-7116 -title: Associate Payroll Technician -userPassword: Password1 -uid: GardF -givenName: Farshid -mail: GardF@a06bbbc55c33432c98c9104924935152.bitwarden.com -carLicense: LPCN7A -departmentNumber: 9705 -employeeType: Contract -homePhone: +1 206 576-9715 -initials: F. G. -mobile: +1 206 263-1514 -pager: +1 206 767-1409 -roomNumber: 8971 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rodrigus Lampman -sn: Lampman -description: This is Rodrigus Lampman's description -facsimileTelephoneNumber: +1 213 278-5392 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 721-5882 -title: Associate Product Development Consultant -userPassword: Password1 -uid: LampmanR -givenName: Rodrigus -mail: LampmanR@3043aaac30ae49c8997df0727179c296.bitwarden.com -carLicense: 8QJN6M -departmentNumber: 7595 -employeeType: Contract -homePhone: +1 213 873-6003 -initials: R. L. -mobile: +1 213 766-6362 -pager: +1 213 433-7671 -roomNumber: 9569 -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Violet Potvin -sn: Potvin -description: This is Violet Potvin's description -facsimileTelephoneNumber: +1 206 722-3184 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 784-3797 -title: Supreme Peons Grunt -userPassword: Password1 -uid: PotvinV -givenName: Violet -mail: PotvinV@a08efe5b84294d16861c8c7bd814d0f9.bitwarden.com -carLicense: 2SQ1S0 -departmentNumber: 3482 -employeeType: Normal -homePhone: +1 206 175-2562 -initials: V. P. -mobile: +1 206 222-9462 -pager: +1 206 538-5201 -roomNumber: 8162 -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Indy Calder -sn: Calder -description: This is Indy Calder's description -facsimileTelephoneNumber: +1 415 641-2789 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 118-5141 -title: Master Administrative Warrior -userPassword: Password1 -uid: CalderI -givenName: Indy -mail: CalderI@f049893b54cd4adb8a60be3288ab94cc.bitwarden.com -carLicense: GW0DDU -departmentNumber: 1038 -employeeType: Contract -homePhone: +1 415 935-5380 -initials: I. C. -mobile: +1 415 174-4230 -pager: +1 415 174-7413 -roomNumber: 9232 -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwenette Feild -sn: Feild -description: This is Gwenette Feild's description -facsimileTelephoneNumber: +1 818 106-5210 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 818 113-1204 -title: Associate Management President -userPassword: Password1 -uid: FeildG -givenName: Gwenette -mail: FeildG@e63b193a86324aeaa005190985da3761.bitwarden.com -carLicense: GWE4TW -departmentNumber: 4406 -employeeType: Contract -homePhone: +1 818 950-6345 -initials: G. F. -mobile: +1 818 619-8231 -pager: +1 818 130-7044 -roomNumber: 8385 -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guillermo Leavell -sn: Leavell -description: This is Guillermo Leavell's description -facsimileTelephoneNumber: +1 804 805-7477 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 542-1649 -title: Master Administrative Grunt -userPassword: Password1 -uid: LeavellG -givenName: Guillermo -mail: LeavellG@d52f84a4faf148e392088a55b1d91d85.bitwarden.com -carLicense: 55QV7U -departmentNumber: 7926 -employeeType: Contract -homePhone: +1 804 992-9300 -initials: G. L. -mobile: +1 804 430-4042 -pager: +1 804 613-8252 -roomNumber: 9496 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com - -dn: cn=Henryetta Raing,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henryetta Raing -sn: Raing -description: This is Henryetta Raing's description -facsimileTelephoneNumber: +1 408 485-3424 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 650-2716 -title: Master Human Resources Pinhead -userPassword: Password1 -uid: RaingH -givenName: Henryetta -mail: RaingH@6c398eb0cd5c4b4784131d450d82aca7.bitwarden.com -carLicense: QM10T9 -departmentNumber: 9975 -employeeType: Contract -homePhone: +1 408 111-9949 -initials: H. R. -mobile: +1 408 783-5645 -pager: +1 408 683-6850 -roomNumber: 8464 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petronia Bermel -sn: Bermel -description: This is Petronia Bermel's description -facsimileTelephoneNumber: +1 213 509-7671 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 760-4129 -title: Junior Administrative Dictator -userPassword: Password1 -uid: BermelP -givenName: Petronia -mail: BermelP@8a34c70e0b134b1abc06ed65698294f3.bitwarden.com -carLicense: YDGN2E -departmentNumber: 5791 -employeeType: Normal -homePhone: +1 213 137-8030 -initials: P. B. -mobile: +1 213 534-7226 -pager: +1 213 731-6839 -roomNumber: 9815 -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlina Pollinzi -sn: Pollinzi -description: This is Arlina Pollinzi's description -facsimileTelephoneNumber: +1 206 252-1695 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 359-7198 -title: Junior Product Testing Punk -userPassword: Password1 -uid: PollinzA -givenName: Arlina -mail: PollinzA@d79e418348c94168b4dd89d46432d83f.bitwarden.com -carLicense: BCS5RQ -departmentNumber: 1060 -employeeType: Contract -homePhone: +1 206 165-3145 -initials: A. P. -mobile: +1 206 310-4549 -pager: +1 206 728-6042 -roomNumber: 9842 -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Remi Giuliani -sn: Giuliani -description: This is Remi Giuliani's description -facsimileTelephoneNumber: +1 206 577-7013 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 496-1736 -title: Supreme Payroll Fellow -userPassword: Password1 -uid: GiulianR -givenName: Remi -mail: GiulianR@14d341098b454a7bb14a0607de600424.bitwarden.com -carLicense: 8RPSSP -departmentNumber: 1371 -employeeType: Employee -homePhone: +1 206 140-1530 -initials: R. G. -mobile: +1 206 755-2037 -pager: +1 206 788-2228 -roomNumber: 9878 -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faizal Moussette -sn: Moussette -description: This is Faizal Moussette's description -facsimileTelephoneNumber: +1 804 699-9391 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 145-3358 -title: Master Peons Warrior -userPassword: Password1 -uid: MoussetF -givenName: Faizal -mail: MoussetF@0a5665832ffe44f8afdc48293ba69573.bitwarden.com -carLicense: 0BT97L -departmentNumber: 8134 -employeeType: Normal -homePhone: +1 804 220-5236 -initials: F. M. -mobile: +1 804 268-7345 -pager: +1 804 811-3296 -roomNumber: 8418 -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Connie Barentsen -sn: Barentsen -description: This is Connie Barentsen's description -facsimileTelephoneNumber: +1 213 488-5493 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 303-4830 -title: Master Product Development President -userPassword: Password1 -uid: BarentsC -givenName: Connie -mail: BarentsC@866dcdf7141f4b00b327974f7403df8c.bitwarden.com -carLicense: WTKLQB -departmentNumber: 6039 -employeeType: Contract -homePhone: +1 213 297-3973 -initials: C. B. -mobile: +1 213 966-6965 -pager: +1 213 529-8558 -roomNumber: 9830 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verla Trottier -sn: Trottier -description: This is Verla Trottier's description -facsimileTelephoneNumber: +1 804 692-4664 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 582-3177 -title: Associate Administrative Pinhead -userPassword: Password1 -uid: TrottieV -givenName: Verla -mail: TrottieV@02579819bace4f10858d46919dbea287.bitwarden.com -carLicense: 5A39IA -departmentNumber: 8214 -employeeType: Normal -homePhone: +1 804 445-8150 -initials: V. T. -mobile: +1 804 500-1543 -pager: +1 804 344-7038 -roomNumber: 9583 -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vincente Isip,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vincente Isip -sn: Isip -description: This is Vincente Isip's description -facsimileTelephoneNumber: +1 804 990-8214 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 245-1680 -title: Chief Payroll Engineer -userPassword: Password1 -uid: IsipV -givenName: Vincente -mail: IsipV@3ebdc674ebed47c4a4f33a4fcf39c448.bitwarden.com -carLicense: J3H1S1 -departmentNumber: 3669 -employeeType: Employee -homePhone: +1 804 224-8230 -initials: V. I. -mobile: +1 804 855-7899 -pager: +1 804 440-8472 -roomNumber: 9568 -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tabbie SchaeferNTMVAA -sn: SchaeferNTMVAA -description: This is Tabbie SchaeferNTMVAA's description -facsimileTelephoneNumber: +1 510 540-9040 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 510 386-6328 -title: Master Administrative Evangelist -userPassword: Password1 -uid: SchaefeT -givenName: Tabbie -mail: SchaefeT@910f877bb3744ec8a7fde724ecbc2355.bitwarden.com -carLicense: 44QMRH -departmentNumber: 4171 -employeeType: Employee -homePhone: +1 510 520-6251 -initials: T. S. -mobile: +1 510 326-2856 -pager: +1 510 921-6992 -roomNumber: 8711 -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pal Burchby -sn: Burchby -description: This is Pal Burchby's description -facsimileTelephoneNumber: +1 206 995-8016 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 120-7447 -title: Associate Payroll Engineer -userPassword: Password1 -uid: BurchbyP -givenName: Pal -mail: BurchbyP@67726c3db6374bb3bfa2e22fd29415c2.bitwarden.com -carLicense: 8SPKRI -departmentNumber: 5110 -employeeType: Normal -homePhone: +1 206 653-8179 -initials: P. B. -mobile: +1 206 110-7974 -pager: +1 206 671-9490 -roomNumber: 8389 -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ibbie Gung -sn: Gung -description: This is Ibbie Gung's description -facsimileTelephoneNumber: +1 408 376-2005 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 387-7417 -title: Associate Peons Developer -userPassword: Password1 -uid: GungI -givenName: Ibbie -mail: GungI@0b027bdff1d041629ac882de18aab2e6.bitwarden.com -carLicense: VO5SHR -departmentNumber: 3825 -employeeType: Normal -homePhone: +1 408 829-9273 -initials: I. G. -mobile: +1 408 949-3451 -pager: +1 408 887-7666 -roomNumber: 9473 -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ned Pownall -sn: Pownall -description: This is Ned Pownall's description -facsimileTelephoneNumber: +1 213 418-3923 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 213 773-3992 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: PownallN -givenName: Ned -mail: PownallN@536233742e094d32a93b46e75cbb8e9e.bitwarden.com -carLicense: K6QLR3 -departmentNumber: 2663 -employeeType: Contract -homePhone: +1 213 274-2726 -initials: N. P. -mobile: +1 213 772-5527 -pager: +1 213 316-3930 -roomNumber: 8178 -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucky Carmody -sn: Carmody -description: This is Lucky Carmody's description -facsimileTelephoneNumber: +1 206 412-8683 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 724-8760 -title: Junior Product Testing Architect -userPassword: Password1 -uid: CarmodyL -givenName: Lucky -mail: CarmodyL@64262e7f36fb4e62b9763eac72d5b421.bitwarden.com -carLicense: W3S3GU -departmentNumber: 9178 -employeeType: Employee -homePhone: +1 206 362-6852 -initials: L. C. -mobile: +1 206 114-1997 -pager: +1 206 984-7614 -roomNumber: 9977 -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mayumi Presgrove -sn: Presgrove -description: This is Mayumi Presgrove's description -facsimileTelephoneNumber: +1 206 970-6824 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 206 193-2875 -title: Chief Management Vice President -userPassword: Password1 -uid: PresgroM -givenName: Mayumi -mail: PresgroM@d843134b5a6249eda76a289f48094398.bitwarden.com -carLicense: E2U5I3 -departmentNumber: 4723 -employeeType: Employee -homePhone: +1 206 239-5683 -initials: M. P. -mobile: +1 206 945-9836 -pager: +1 206 635-6170 -roomNumber: 8652 -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MunHang Altay -sn: Altay -description: This is MunHang Altay's description -facsimileTelephoneNumber: +1 408 158-1250 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 408 817-6165 -title: Master Peons Developer -userPassword: Password1 -uid: AltayM -givenName: MunHang -mail: AltayM@96682e2a4433480fa87b37b2ffbd15b6.bitwarden.com -carLicense: DQIPIL -departmentNumber: 8908 -employeeType: Employee -homePhone: +1 408 934-6837 -initials: M. A. -mobile: +1 408 141-7878 -pager: +1 408 713-7642 -roomNumber: 8964 -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Savina Wefers -sn: Wefers -description: This is Savina Wefers's description -facsimileTelephoneNumber: +1 818 181-4364 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 818 602-1947 -title: Master Administrative Czar -userPassword: Password1 -uid: WefersS -givenName: Savina -mail: WefersS@2644ea139af74505ae830870e9453a4b.bitwarden.com -carLicense: U0EMDE -departmentNumber: 3903 -employeeType: Contract -homePhone: +1 818 406-3531 -initials: S. W. -mobile: +1 818 386-2200 -pager: +1 818 506-1079 -roomNumber: 8957 -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjoke NewLab -sn: NewLab -description: This is Marjoke NewLab's description -facsimileTelephoneNumber: +1 213 442-5903 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 576-2172 -title: Associate Administrative Consultant -userPassword: Password1 -uid: NewLabM -givenName: Marjoke -mail: NewLabM@814dda3cb4844359b194c7c1721b00a4.bitwarden.com -carLicense: 3PC0SR -departmentNumber: 5674 -employeeType: Normal -homePhone: +1 213 257-5116 -initials: M. N. -mobile: +1 213 891-9476 -pager: +1 213 166-7968 -roomNumber: 9820 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caralie Ferner -sn: Ferner -description: This is Caralie Ferner's description -facsimileTelephoneNumber: +1 206 643-1812 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 517-5333 -title: Supreme Management Admin -userPassword: Password1 -uid: FernerC -givenName: Caralie -mail: FernerC@fac250dee9af4898ab4d0ae592252d91.bitwarden.com -carLicense: MBLX4F -departmentNumber: 4179 -employeeType: Normal -homePhone: +1 206 278-1422 -initials: C. F. -mobile: +1 206 891-3679 -pager: +1 206 220-8271 -roomNumber: 8849 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julio Marineau -sn: Marineau -description: This is Julio Marineau's description -facsimileTelephoneNumber: +1 213 489-8061 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 855-3849 -title: Associate Administrative Stooge -userPassword: Password1 -uid: MarineaJ -givenName: Julio -mail: MarineaJ@71d3d1f769604a3488d5ddef3b60da65.bitwarden.com -carLicense: 7YO4VB -departmentNumber: 9197 -employeeType: Contract -homePhone: +1 213 301-3252 -initials: J. M. -mobile: +1 213 451-4340 -pager: +1 213 374-2272 -roomNumber: 9404 -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olivette Crompton -sn: Crompton -description: This is Olivette Crompton's description -facsimileTelephoneNumber: +1 415 243-8609 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 415 311-9311 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: CromptoO -givenName: Olivette -mail: CromptoO@ba5fbd8ccee64957820f429bea9cbd2b.bitwarden.com -carLicense: RVFXJ6 -departmentNumber: 4273 -employeeType: Contract -homePhone: +1 415 988-6658 -initials: O. C. -mobile: +1 415 478-8613 -pager: +1 415 227-6343 -roomNumber: 8270 -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roly Slobodrian -sn: Slobodrian -description: This is Roly Slobodrian's description -facsimileTelephoneNumber: +1 415 969-8700 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 419-1791 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: SlobodrR -givenName: Roly -mail: SlobodrR@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com -carLicense: 6YO3FW -departmentNumber: 4395 -employeeType: Contract -homePhone: +1 415 268-5186 -initials: R. S. -mobile: +1 415 881-6648 -pager: +1 415 563-3875 -roomNumber: 8877 -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Partha Archibald -sn: Archibald -description: This is Partha Archibald's description -facsimileTelephoneNumber: +1 510 817-5520 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 525-4615 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: ArchibaP -givenName: Partha -mail: ArchibaP@228bf00bc301425ea3b9e943ef8da200.bitwarden.com -carLicense: YF8IR3 -departmentNumber: 2040 -employeeType: Normal -homePhone: +1 510 623-8627 -initials: P. A. -mobile: +1 510 229-9388 -pager: +1 510 165-1082 -roomNumber: 8557 -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Emerson Tait,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emerson Tait -sn: Tait -description: This is Emerson Tait's description -facsimileTelephoneNumber: +1 415 255-6635 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 734-4329 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: TaitE -givenName: Emerson -mail: TaitE@16f4ba41e9ce46f887a8d5af57b9057c.bitwarden.com -carLicense: FIH1J3 -departmentNumber: 6978 -employeeType: Employee -homePhone: +1 415 252-2452 -initials: E. T. -mobile: +1 415 167-6174 -pager: +1 415 116-7842 -roomNumber: 9478 -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Claudette Talbot,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claudette Talbot -sn: Talbot -description: This is Claudette Talbot's description -facsimileTelephoneNumber: +1 206 575-2909 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 192-8472 -title: Supreme Product Testing Technician -userPassword: Password1 -uid: TalbotC -givenName: Claudette -mail: TalbotC@c6f2558da4e64d1a92ecfa7046888845.bitwarden.com -carLicense: RAKYGS -departmentNumber: 9110 -employeeType: Contract -homePhone: +1 206 258-3751 -initials: C. T. -mobile: +1 206 899-7180 -pager: +1 206 930-3324 -roomNumber: 9178 -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnnHoon Kolesnik -sn: Kolesnik -description: This is AnnHoon Kolesnik's description -facsimileTelephoneNumber: +1 415 622-7321 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 529-1842 -title: Associate Management Sales Rep -userPassword: Password1 -uid: KolesniA -givenName: AnnHoon -mail: KolesniA@736a95b54bac464a997ec017d18bac14.bitwarden.com -carLicense: 4XI4YT -departmentNumber: 6446 -employeeType: Employee -homePhone: +1 415 718-6065 -initials: A. K. -mobile: +1 415 594-7843 -pager: +1 415 589-3857 -roomNumber: 9795 -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dominica Nttest -sn: Nttest -description: This is Dominica Nttest's description -facsimileTelephoneNumber: +1 408 934-9196 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 210-4053 -title: Chief Product Development Stooge -userPassword: Password1 -uid: NttestD -givenName: Dominica -mail: NttestD@a5390b0a929f4049987256511e1011a2.bitwarden.com -carLicense: 2UFELE -departmentNumber: 6909 -employeeType: Employee -homePhone: +1 408 451-8087 -initials: D. N. -mobile: +1 408 478-6602 -pager: +1 408 885-3391 -roomNumber: 8148 -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theresita Tebbe -sn: Tebbe -description: This is Theresita Tebbe's description -facsimileTelephoneNumber: +1 206 645-9423 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 815-3761 -title: Supreme Product Testing Architect -userPassword: Password1 -uid: TebbeT -givenName: Theresita -mail: TebbeT@f2be683ee5744190957c1b7e8dba3ddd.bitwarden.com -carLicense: M6PTA2 -departmentNumber: 2876 -employeeType: Contract -homePhone: +1 206 530-5019 -initials: T. T. -mobile: +1 206 610-5625 -pager: +1 206 122-3890 -roomNumber: 8070 -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com - -dn: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peng Dunsmore -sn: Dunsmore -description: This is Peng Dunsmore's description -facsimileTelephoneNumber: +1 415 896-2111 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 443-1698 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: DunsmorP -givenName: Peng -mail: DunsmorP@c50001e1264a4acfa5c0640c389ba320.bitwarden.com -carLicense: O0KSOU -departmentNumber: 8125 -employeeType: Normal -homePhone: +1 415 552-8422 -initials: P. D. -mobile: +1 415 874-3227 -pager: +1 415 245-7781 -roomNumber: 9125 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tilak McGruder,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilak McGruder -sn: McGruder -description: This is Tilak McGruder's description -facsimileTelephoneNumber: +1 510 801-3537 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 426-3788 -title: Master Peons Grunt -userPassword: Password1 -uid: McGrudeT -givenName: Tilak -mail: McGrudeT@37bf4a5746434161add8180aecc906d3.bitwarden.com -carLicense: UM921T -departmentNumber: 1019 -employeeType: Normal -homePhone: +1 510 878-2003 -initials: T. M. -mobile: +1 510 182-6208 -pager: +1 510 220-1520 -roomNumber: 9257 -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rieni Faley -sn: Faley -description: This is Rieni Faley's description -facsimileTelephoneNumber: +1 804 322-1876 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 804 891-8378 -title: Chief Product Testing Technician -userPassword: Password1 -uid: FaleyR -givenName: Rieni -mail: FaleyR@9a209519348642769473b09231da3137.bitwarden.com -carLicense: 210JHY -departmentNumber: 5023 -employeeType: Normal -homePhone: +1 804 691-8879 -initials: R. F. -mobile: +1 804 902-2226 -pager: +1 804 790-4489 -roomNumber: 8481 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alice Rist -sn: Rist -description: This is Alice Rist's description -facsimileTelephoneNumber: +1 804 156-7514 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 470-4856 -title: Associate Management Grunt -userPassword: Password1 -uid: RistA -givenName: Alice -mail: RistA@96aca1386b95408bb0fa75eae456680d.bitwarden.com -carLicense: AG835K -departmentNumber: 4429 -employeeType: Employee -homePhone: +1 804 118-6395 -initials: A. R. -mobile: +1 804 389-1060 -pager: +1 804 974-2265 -roomNumber: 8841 -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nona Diee -sn: Diee -description: This is Nona Diee's description -facsimileTelephoneNumber: +1 510 320-2798 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 510 162-3882 -title: Master Product Testing Grunt -userPassword: Password1 -uid: DieeN -givenName: Nona -mail: DieeN@59366f30a0164aa7a53680e97db8816b.bitwarden.com -carLicense: GIMY2B -departmentNumber: 3509 -employeeType: Contract -homePhone: +1 510 447-5293 -initials: N. D. -mobile: +1 510 129-3055 -pager: +1 510 349-3521 -roomNumber: 8347 -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChongLai Jennings -sn: Jennings -description: This is ChongLai Jennings's description -facsimileTelephoneNumber: +1 510 223-1923 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 164-5032 -title: Master Product Development Grunt -userPassword: Password1 -uid: JenningC -givenName: ChongLai -mail: JenningC@b5110eee63164b03a1156fbe465ff053.bitwarden.com -carLicense: 3OUXUQ -departmentNumber: 7334 -employeeType: Normal -homePhone: +1 510 927-2634 -initials: C. J. -mobile: +1 510 978-7484 -pager: +1 510 908-9866 -roomNumber: 8409 -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zdenka Filkins -sn: Filkins -description: This is Zdenka Filkins's description -facsimileTelephoneNumber: +1 510 118-1202 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 510 346-8663 -title: Chief Administrative Writer -userPassword: Password1 -uid: FilkinsZ -givenName: Zdenka -mail: FilkinsZ@a9c59171bde04e7ba8c3ddd4da73b134.bitwarden.com -carLicense: X4Y4A6 -departmentNumber: 6187 -employeeType: Employee -homePhone: +1 510 255-6598 -initials: Z. F. -mobile: +1 510 448-8533 -pager: +1 510 818-2777 -roomNumber: 9467 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lisbeth Longpre -sn: Longpre -description: This is Lisbeth Longpre's description -facsimileTelephoneNumber: +1 804 486-3890 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 250-8399 -title: Master Human Resources Mascot -userPassword: Password1 -uid: LongpreL -givenName: Lisbeth -mail: LongpreL@e4e042389aa64630b74c843d58da1b0b.bitwarden.com -carLicense: QWP21C -departmentNumber: 5943 -employeeType: Employee -homePhone: +1 804 494-5601 -initials: L. L. -mobile: +1 804 697-3374 -pager: +1 804 717-2065 -roomNumber: 8871 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherilynn Hannula -sn: Hannula -description: This is Cherilynn Hannula's description -facsimileTelephoneNumber: +1 213 664-4431 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 665-5771 -title: Chief Human Resources Visionary -userPassword: Password1 -uid: HannulaC -givenName: Cherilynn -mail: HannulaC@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com -carLicense: JBHG1P -departmentNumber: 4755 -employeeType: Normal -homePhone: +1 213 255-1718 -initials: C. H. -mobile: +1 213 105-7888 -pager: +1 213 159-3514 -roomNumber: 8688 -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Adelind Loveday,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adelind Loveday -sn: Loveday -description: This is Adelind Loveday's description -facsimileTelephoneNumber: +1 415 116-2533 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 218-8995 -title: Master Human Resources Assistant -userPassword: Password1 -uid: LovedayA -givenName: Adelind -mail: LovedayA@05ead9116c4b4fc8909d1d71879a73f3.bitwarden.com -carLicense: 6RJLCW -departmentNumber: 5085 -employeeType: Normal -homePhone: +1 415 143-9319 -initials: A. L. -mobile: +1 415 102-3929 -pager: +1 415 595-4314 -roomNumber: 9212 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antoinette Riordan -sn: Riordan -description: This is Antoinette Riordan's description -facsimileTelephoneNumber: +1 804 954-9110 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 804 278-1485 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: RiordanA -givenName: Antoinette -mail: RiordanA@c659efb530134031a977821791781191.bitwarden.com -carLicense: J3W15L -departmentNumber: 2239 -employeeType: Contract -homePhone: +1 804 133-5650 -initials: A. R. -mobile: +1 804 639-9371 -pager: +1 804 344-2257 -roomNumber: 8239 -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariet Hotson -sn: Hotson -description: This is Mariet Hotson's description -facsimileTelephoneNumber: +1 206 667-1188 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 840-5675 -title: Junior Product Development Punk -userPassword: Password1 -uid: HotsonM -givenName: Mariet -mail: HotsonM@638dc4979c734dc6a0edddc9856d364c.bitwarden.com -carLicense: P3CUUB -departmentNumber: 4617 -employeeType: Normal -homePhone: +1 206 611-7070 -initials: M. H. -mobile: +1 206 129-9447 -pager: +1 206 415-5489 -roomNumber: 9034 -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vinnie Golaszewski -sn: Golaszewski -description: This is Vinnie Golaszewski's description -facsimileTelephoneNumber: +1 415 884-2376 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 507-3782 -title: Junior Peons Janitor -userPassword: Password1 -uid: GolaszeV -givenName: Vinnie -mail: GolaszeV@8aca496809cf4238a39dc0c2b2a9c742.bitwarden.com -carLicense: RI938L -departmentNumber: 7831 -employeeType: Contract -homePhone: +1 415 533-7588 -initials: V. G. -mobile: +1 415 708-8727 -pager: +1 415 290-3984 -roomNumber: 8243 -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nirmal Loper -sn: Loper -description: This is Nirmal Loper's description -facsimileTelephoneNumber: +1 408 730-5236 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 553-9580 -title: Chief Administrative Punk -userPassword: Password1 -uid: LoperN -givenName: Nirmal -mail: LoperN@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com -carLicense: GKSB80 -departmentNumber: 6059 -employeeType: Contract -homePhone: +1 408 373-6228 -initials: N. L. -mobile: +1 408 139-7137 -pager: +1 408 914-5197 -roomNumber: 8329 -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhianon Mansi -sn: Mansi -description: This is Rhianon Mansi's description -facsimileTelephoneNumber: +1 510 170-5105 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 146-8382 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: MansiR -givenName: Rhianon -mail: MansiR@0163e1f0b0b44e11ba7d1bbab29d9f5b.bitwarden.com -carLicense: 7QTJJS -departmentNumber: 5882 -employeeType: Contract -homePhone: +1 510 301-8981 -initials: R. M. -mobile: +1 510 247-4185 -pager: +1 510 347-2797 -roomNumber: 9864 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shamim Pospisil -sn: Pospisil -description: This is Shamim Pospisil's description -facsimileTelephoneNumber: +1 206 403-5254 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 144-7201 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: PospisiS -givenName: Shamim -mail: PospisiS@ee3b17b3006441ea89cd65327cca286b.bitwarden.com -carLicense: 8IQ8JT -departmentNumber: 1855 -employeeType: Normal -homePhone: +1 206 772-9024 -initials: S. P. -mobile: +1 206 809-6021 -pager: +1 206 677-3079 -roomNumber: 9145 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sukhendu Commons -sn: Commons -description: This is Sukhendu Commons's description -facsimileTelephoneNumber: +1 206 718-9807 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 900-2233 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: CommonsS -givenName: Sukhendu -mail: CommonsS@e796563e8bce48b5ba76fcbb11b9e8e1.bitwarden.com -carLicense: 7CT4NI -departmentNumber: 9444 -employeeType: Employee -homePhone: +1 206 937-6491 -initials: S. C. -mobile: +1 206 854-3757 -pager: +1 206 555-7879 -roomNumber: 8931 -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Powell Brar -sn: Brar -description: This is Powell Brar's description -facsimileTelephoneNumber: +1 818 889-2203 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 149-7442 -title: Chief Peons Mascot -userPassword: Password1 -uid: BrarP -givenName: Powell -mail: BrarP@9a3790894cf44bf0b7e534074bf381cf.bitwarden.com -carLicense: 32UDT9 -departmentNumber: 3458 -employeeType: Normal -homePhone: +1 818 883-4809 -initials: P. B. -mobile: +1 818 709-9681 -pager: +1 818 744-4569 -roomNumber: 9393 -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nir Saisho,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nir Saisho -sn: Saisho -description: This is Nir Saisho's description -facsimileTelephoneNumber: +1 408 655-6006 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 408 815-1020 -title: Master Peons Manager -userPassword: Password1 -uid: SaishoN -givenName: Nir -mail: SaishoN@ab3c86d1ac584fffb00ba8469a8050a5.bitwarden.com -carLicense: TG86V7 -departmentNumber: 1216 -employeeType: Normal -homePhone: +1 408 935-7469 -initials: N. S. -mobile: +1 408 386-1316 -pager: +1 408 877-9721 -roomNumber: 9888 -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherill Cantwell -sn: Cantwell -description: This is Sherill Cantwell's description -facsimileTelephoneNumber: +1 415 978-6014 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 415 552-4746 -title: Associate Product Testing President -userPassword: Password1 -uid: CantwelS -givenName: Sherill -mail: CantwelS@73094f3ce9ac4263881b0e47be23fd15.bitwarden.com -carLicense: OCE60P -departmentNumber: 1219 -employeeType: Employee -homePhone: +1 415 430-8662 -initials: S. C. -mobile: +1 415 292-7306 -pager: +1 415 151-3563 -roomNumber: 8179 -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milissent Bowes -sn: Bowes -description: This is Milissent Bowes's description -facsimileTelephoneNumber: +1 510 783-3341 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 276-1302 -title: Chief Product Testing Developer -userPassword: Password1 -uid: BowesM -givenName: Milissent -mail: BowesM@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com -carLicense: NJIQNF -departmentNumber: 8249 -employeeType: Employee -homePhone: +1 510 538-8754 -initials: M. B. -mobile: +1 510 465-9779 -pager: +1 510 204-1414 -roomNumber: 8656 -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harmonie Luquire -sn: Luquire -description: This is Harmonie Luquire's description -facsimileTelephoneNumber: +1 510 711-7342 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 210-1523 -title: Junior Product Development Stooge -userPassword: Password1 -uid: LuquireH -givenName: Harmonie -mail: LuquireH@97df64fd63964d63ae961e1122586e46.bitwarden.com -carLicense: FUPUH8 -departmentNumber: 2285 -employeeType: Contract -homePhone: +1 510 145-9787 -initials: H. L. -mobile: +1 510 860-1406 -pager: +1 510 844-5556 -roomNumber: 9431 -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorothea Laughton -sn: Laughton -description: This is Dorothea Laughton's description -facsimileTelephoneNumber: +1 206 255-8527 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 890-1681 -title: Master Product Testing Engineer -userPassword: Password1 -uid: LaughtoD -givenName: Dorothea -mail: LaughtoD@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com -carLicense: 352EJJ -departmentNumber: 3297 -employeeType: Contract -homePhone: +1 206 905-5028 -initials: D. L. -mobile: +1 206 361-1772 -pager: +1 206 776-9102 -roomNumber: 8190 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beth Nolet -sn: Nolet -description: This is Beth Nolet's description -facsimileTelephoneNumber: +1 213 772-8076 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 379-4523 -title: Chief Payroll Developer -userPassword: Password1 -uid: NoletB -givenName: Beth -mail: NoletB@d0494e96e3ad464e9c20a3d7c613cc77.bitwarden.com -carLicense: F249EJ -departmentNumber: 7061 -employeeType: Employee -homePhone: +1 213 976-5427 -initials: B. N. -mobile: +1 213 890-2245 -pager: +1 213 682-3086 -roomNumber: 9157 -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgette Manica -sn: Manica -description: This is Georgette Manica's description -facsimileTelephoneNumber: +1 408 638-7033 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 911-5837 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: ManicaG -givenName: Georgette -mail: ManicaG@9f4dcfc9947f4a519924493e85b35351.bitwarden.com -carLicense: 5C22T1 -departmentNumber: 2956 -employeeType: Normal -homePhone: +1 408 263-7438 -initials: G. M. -mobile: +1 408 397-2417 -pager: +1 408 732-1860 -roomNumber: 9229 -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beitris Linton -sn: Linton -description: This is Beitris Linton's description -facsimileTelephoneNumber: +1 510 248-9063 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 510 732-2840 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: LintonB -givenName: Beitris -mail: LintonB@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com -carLicense: N6LUV3 -departmentNumber: 2477 -employeeType: Contract -homePhone: +1 510 642-2127 -initials: B. L. -mobile: +1 510 933-9199 -pager: +1 510 643-7273 -roomNumber: 8000 -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othella Difilippo -sn: Difilippo -description: This is Othella Difilippo's description -facsimileTelephoneNumber: +1 213 524-1943 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 263-9901 -title: Chief Management Stooge -userPassword: Password1 -uid: DifilipO -givenName: Othella -mail: DifilipO@84b57e0771b643809ac58933f98cbf52.bitwarden.com -carLicense: MSYHQ8 -departmentNumber: 3748 -employeeType: Normal -homePhone: +1 213 480-8993 -initials: O. D. -mobile: +1 213 787-5411 -pager: +1 213 683-4951 -roomNumber: 8730 -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deloris Mattes -sn: Mattes -description: This is Deloris Mattes's description -facsimileTelephoneNumber: +1 510 911-6056 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 116-2629 -title: Master Payroll Figurehead -userPassword: Password1 -uid: MattesD -givenName: Deloris -mail: MattesD@b34436a247d34fc9bc5677457c93ba78.bitwarden.com -carLicense: RWX6YT -departmentNumber: 8718 -employeeType: Normal -homePhone: +1 510 467-3261 -initials: D. M. -mobile: +1 510 452-2991 -pager: +1 510 479-5920 -roomNumber: 8124 -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brittni Holliday -sn: Holliday -description: This is Brittni Holliday's description -facsimileTelephoneNumber: +1 213 422-9926 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 213 890-9868 -title: Supreme Product Development Visionary -userPassword: Password1 -uid: HollidaB -givenName: Brittni -mail: HollidaB@bcc33b39417e4c04a97f5b3c58134988.bitwarden.com -carLicense: 36Q2V6 -departmentNumber: 1281 -employeeType: Contract -homePhone: +1 213 959-6643 -initials: B. H. -mobile: +1 213 718-7890 -pager: +1 213 874-2867 -roomNumber: 9260 -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pat Pereira -sn: Pereira -description: This is Pat Pereira's description -facsimileTelephoneNumber: +1 206 747-8543 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 206 839-4457 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: PereiraP -givenName: Pat -mail: PereiraP@4975c1c585e54bc795db4420186bb06b.bitwarden.com -carLicense: WQP5UM -departmentNumber: 8754 -employeeType: Normal -homePhone: +1 206 543-1497 -initials: P. P. -mobile: +1 206 629-1833 -pager: +1 206 379-1127 -roomNumber: 8135 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LouAnn Kozak -sn: Kozak -description: This is LouAnn Kozak's description -facsimileTelephoneNumber: +1 818 642-1245 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 890-5169 -title: Associate Janitorial Artist -userPassword: Password1 -uid: KozakL -givenName: LouAnn -mail: KozakL@8d1dad7a1e434fb6a881d4de0fc41e03.bitwarden.com -carLicense: 6NRBUI -departmentNumber: 8134 -employeeType: Employee -homePhone: +1 818 345-4416 -initials: L. K. -mobile: +1 818 773-7266 -pager: +1 818 796-2676 -roomNumber: 9390 -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zanni Edmondson -sn: Edmondson -description: This is Zanni Edmondson's description -facsimileTelephoneNumber: +1 510 829-7414 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 813-6937 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: EdmondsZ -givenName: Zanni -mail: EdmondsZ@4c978255de304b4eb6660f909451b46e.bitwarden.com -carLicense: YUMRFT -departmentNumber: 2590 -employeeType: Employee -homePhone: +1 510 659-4655 -initials: Z. E. -mobile: +1 510 558-8930 -pager: +1 510 646-4928 -roomNumber: 8778 -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com - -dn: cn=Walliw Marling,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walliw Marling -sn: Marling -description: This is Walliw Marling's description -facsimileTelephoneNumber: +1 206 611-8142 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 821-2498 -title: Associate Peons Architect -userPassword: Password1 -uid: MarlingW -givenName: Walliw -mail: MarlingW@6e40ae9d01a3469990a9e83e8c2f8ec4.bitwarden.com -carLicense: 4VXU6E -departmentNumber: 1804 -employeeType: Normal -homePhone: +1 206 338-9313 -initials: W. M. -mobile: +1 206 806-7485 -pager: +1 206 616-4316 -roomNumber: 8215 -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Susann Biggers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susann Biggers -sn: Biggers -description: This is Susann Biggers's description -facsimileTelephoneNumber: +1 206 962-8071 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 206 205-6187 -title: Chief Management Technician -userPassword: Password1 -uid: BiggersS -givenName: Susann -mail: BiggersS@5e51d9a3833b42d3a0ca89712e0f4b6d.bitwarden.com -carLicense: IWECOL -departmentNumber: 9945 -employeeType: Normal -homePhone: +1 206 208-3152 -initials: S. B. -mobile: +1 206 345-8431 -pager: +1 206 191-9035 -roomNumber: 9605 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Niek Sainsbury,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niek Sainsbury -sn: Sainsbury -description: This is Niek Sainsbury's description -facsimileTelephoneNumber: +1 408 358-4906 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 345-5204 -title: Junior Payroll Engineer -userPassword: Password1 -uid: SainsbuN -givenName: Niek -mail: SainsbuN@a55a0552890b4055ae5195bed49574db.bitwarden.com -carLicense: MLWHD9 -departmentNumber: 1722 -employeeType: Contract -homePhone: +1 408 336-7779 -initials: N. S. -mobile: +1 408 613-6202 -pager: +1 408 805-2790 -roomNumber: 8524 -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=ChyeLian Codack,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChyeLian Codack -sn: Codack -description: This is ChyeLian Codack's description -facsimileTelephoneNumber: +1 510 491-5845 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 525-5045 -title: Master Management Technician -userPassword: Password1 -uid: CodackC -givenName: ChyeLian -mail: CodackC@67c03444c05a42a3b6969db268f587ab.bitwarden.com -carLicense: K69CSP -departmentNumber: 4366 -employeeType: Contract -homePhone: +1 510 675-5173 -initials: C. C. -mobile: +1 510 854-1770 -pager: +1 510 224-9731 -roomNumber: 9831 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bailey Altmann -sn: Altmann -description: This is Bailey Altmann's description -facsimileTelephoneNumber: +1 415 269-3557 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 649-9445 -title: Junior Janitorial Artist -userPassword: Password1 -uid: AltmannB -givenName: Bailey -mail: AltmannB@4231983db0fc4e4dbb0a6c07f8f902a4.bitwarden.com -carLicense: 0AT0RF -departmentNumber: 7354 -employeeType: Normal -homePhone: +1 415 515-3656 -initials: B. A. -mobile: +1 415 187-4150 -pager: +1 415 879-8244 -roomNumber: 9191 -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glenda Dmsrtime -sn: Dmsrtime -description: This is Glenda Dmsrtime's description -facsimileTelephoneNumber: +1 213 883-9700 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 743-6109 -title: Chief Peons Czar -userPassword: Password1 -uid: DmsrtimG -givenName: Glenda -mail: DmsrtimG@0af04fcd60da40099a5a068c388bafe2.bitwarden.com -carLicense: 4AI8VB -departmentNumber: 8729 -employeeType: Normal -homePhone: +1 213 578-2226 -initials: G. D. -mobile: +1 213 827-5796 -pager: +1 213 873-9020 -roomNumber: 8807 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rich Ruigrok -sn: Ruigrok -description: This is Rich Ruigrok's description -facsimileTelephoneNumber: +1 415 444-3979 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 415 156-4043 -title: Associate Management Warrior -userPassword: Password1 -uid: RuigrokR -givenName: Rich -mail: RuigrokR@ba4f810ac4254d8dbe9cfd7199a37cf3.bitwarden.com -carLicense: V4A7SE -departmentNumber: 5766 -employeeType: Employee -homePhone: +1 415 708-6298 -initials: R. R. -mobile: +1 415 326-5587 -pager: +1 415 982-9204 -roomNumber: 9120 -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mason AbiAad -sn: AbiAad -description: This is Mason AbiAad's description -facsimileTelephoneNumber: +1 206 251-4383 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 774-5492 -title: Master Peons Grunt -userPassword: Password1 -uid: AbiAadM -givenName: Mason -mail: AbiAadM@d153ea0cdea446bcae59fcfadb7ae1da.bitwarden.com -carLicense: D1DSRR -departmentNumber: 6562 -employeeType: Normal -homePhone: +1 206 753-7790 -initials: M. A. -mobile: +1 206 742-1132 -pager: +1 206 513-8032 -roomNumber: 8296 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nike Mayfield -sn: Mayfield -description: This is Nike Mayfield's description -facsimileTelephoneNumber: +1 213 198-2927 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 505-4685 -title: Supreme Human Resources President -userPassword: Password1 -uid: MayfielN -givenName: Nike -mail: MayfielN@e283d01de99446bc9d29b5fac0fa1bca.bitwarden.com -carLicense: QARB19 -departmentNumber: 8507 -employeeType: Contract -homePhone: +1 213 133-2671 -initials: N. M. -mobile: +1 213 990-2780 -pager: +1 213 161-5559 -roomNumber: 8347 -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranson Darden -sn: Darden -description: This is Ranson Darden's description -facsimileTelephoneNumber: +1 408 608-2876 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 408 911-7721 -title: Master Janitorial Pinhead -userPassword: Password1 -uid: DardenR -givenName: Ranson -mail: DardenR@f16a2d687f8e42b59a7e0fd83e0707b1.bitwarden.com -carLicense: J8GUXA -departmentNumber: 9816 -employeeType: Contract -homePhone: +1 408 314-3052 -initials: R. D. -mobile: +1 408 925-9250 -pager: +1 408 168-7259 -roomNumber: 8345 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SiuMan Romanowski -sn: Romanowski -description: This is SiuMan Romanowski's description -facsimileTelephoneNumber: +1 206 580-4880 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 206 293-2970 -title: Junior Product Testing Artist -userPassword: Password1 -uid: RomanowS -givenName: SiuMan -mail: RomanowS@893bc48ed45e4ab7ab4ee0815dd34812.bitwarden.com -carLicense: 036LC7 -departmentNumber: 3242 -employeeType: Contract -homePhone: +1 206 703-3553 -initials: S. R. -mobile: +1 206 736-8001 -pager: +1 206 942-6720 -roomNumber: 9033 -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raju Ciochon -sn: Ciochon -description: This is Raju Ciochon's description -facsimileTelephoneNumber: +1 415 164-6231 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 908-7754 -title: Chief Product Development Architect -userPassword: Password1 -uid: CiochonR -givenName: Raju -mail: CiochonR@63ff836ac8c24e04a4d1edd33fa65c85.bitwarden.com -carLicense: XMR7LF -departmentNumber: 4014 -employeeType: Normal -homePhone: +1 415 926-6239 -initials: R. C. -mobile: +1 415 232-8778 -pager: +1 415 886-3541 -roomNumber: 8063 -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jerrilee Dunbar -sn: Dunbar -description: This is Jerrilee Dunbar's description -facsimileTelephoneNumber: +1 818 403-7241 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 387-5290 -title: Master Administrative Stooge -userPassword: Password1 -uid: DunbarJ -givenName: Jerrilee -mail: DunbarJ@ba6173368f8d45d6bc4e88d832382485.bitwarden.com -carLicense: BL7C4E -departmentNumber: 1678 -employeeType: Contract -homePhone: +1 818 926-3486 -initials: J. D. -mobile: +1 818 909-3295 -pager: +1 818 976-1430 -roomNumber: 9796 -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ealasaid TempleDowning -sn: TempleDowning -description: This is Ealasaid TempleDowning's description -facsimileTelephoneNumber: +1 415 782-6212 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 743-1506 -title: Master Janitorial Fellow -userPassword: Password1 -uid: TempleDE -givenName: Ealasaid -mail: TempleDE@b05ff67fc97048daa745e10c79506c73.bitwarden.com -carLicense: UWX39T -departmentNumber: 8317 -employeeType: Employee -homePhone: +1 415 178-2432 -initials: E. T. -mobile: +1 415 152-3820 -pager: +1 415 120-3684 -roomNumber: 8319 -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sammy Sourour -sn: Sourour -description: This is Sammy Sourour's description -facsimileTelephoneNumber: +1 415 988-8539 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 681-7754 -title: Supreme Peons Visionary -userPassword: Password1 -uid: SourourS -givenName: Sammy -mail: SourourS@02e89016127d40e485d3c85f04f6d436.bitwarden.com -carLicense: OXH9NW -departmentNumber: 9949 -employeeType: Employee -homePhone: +1 415 548-6618 -initials: S. S. -mobile: +1 415 841-5054 -pager: +1 415 905-7955 -roomNumber: 9633 -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theresa Dolson -sn: Dolson -description: This is Theresa Dolson's description -facsimileTelephoneNumber: +1 818 892-1887 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 598-2076 -title: Junior Janitorial President -userPassword: Password1 -uid: DolsonT -givenName: Theresa -mail: DolsonT@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com -carLicense: LKT2L9 -departmentNumber: 6184 -employeeType: Contract -homePhone: +1 818 504-2170 -initials: T. D. -mobile: +1 818 115-2752 -pager: +1 818 737-2948 -roomNumber: 8293 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lotti Farnum -sn: Farnum -description: This is Lotti Farnum's description -facsimileTelephoneNumber: +1 415 194-9192 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 769-9947 -title: Associate Payroll Czar -userPassword: Password1 -uid: FarnumL -givenName: Lotti -mail: FarnumL@308bfff65d134099bb462e88bbd36698.bitwarden.com -carLicense: 28U0NG -departmentNumber: 3055 -employeeType: Contract -homePhone: +1 415 457-4872 -initials: L. F. -mobile: +1 415 574-6214 -pager: +1 415 741-4647 -roomNumber: 9145 -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com - -dn: cn=Fouad Caton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fouad Caton -sn: Caton -description: This is Fouad Caton's description -facsimileTelephoneNumber: +1 415 582-9526 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 415 143-9038 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: CatonF -givenName: Fouad -mail: CatonF@cf49925012a7483a8306930aeb4cf78e.bitwarden.com -carLicense: GXX86M -departmentNumber: 3310 -employeeType: Employee -homePhone: +1 415 879-4147 -initials: F. C. -mobile: +1 415 264-8362 -pager: +1 415 530-8052 -roomNumber: 8816 -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terry Lodeserto -sn: Lodeserto -description: This is Terry Lodeserto's description -facsimileTelephoneNumber: +1 213 636-6071 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 485-3725 -title: Associate Peons Janitor -userPassword: Password1 -uid: LodeserT -givenName: Terry -mail: LodeserT@a4626a0d04a64c1083f47ce852f633ad.bitwarden.com -carLicense: YVOW13 -departmentNumber: 7435 -employeeType: Normal -homePhone: +1 213 434-7242 -initials: T. L. -mobile: +1 213 420-5986 -pager: +1 213 339-1960 -roomNumber: 8209 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fei Bebee -sn: Bebee -description: This is Fei Bebee's description -facsimileTelephoneNumber: +1 804 704-3557 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 286-8127 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: BebeeF -givenName: Fei -mail: BebeeF@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com -carLicense: H6W3DL -departmentNumber: 3373 -employeeType: Normal -homePhone: +1 804 258-4640 -initials: F. B. -mobile: +1 804 210-8577 -pager: +1 804 209-6566 -roomNumber: 9313 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Oral Hamid,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oral Hamid -sn: Hamid -description: This is Oral Hamid's description -facsimileTelephoneNumber: +1 415 784-8058 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 917-7168 -title: Chief Peons President -userPassword: Password1 -uid: HamidO -givenName: Oral -mail: HamidO@a71cdec4b0f443efb562be5952de7f81.bitwarden.com -carLicense: OLVX9L -departmentNumber: 9984 -employeeType: Employee -homePhone: +1 415 165-4604 -initials: O. H. -mobile: +1 415 492-1925 -pager: +1 415 536-3275 -roomNumber: 8780 -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anabelle Krater -sn: Krater -description: This is Anabelle Krater's description -facsimileTelephoneNumber: +1 510 805-1260 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 211-7435 -title: Associate Human Resources President -userPassword: Password1 -uid: KraterA -givenName: Anabelle -mail: KraterA@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com -carLicense: TH07UX -departmentNumber: 3828 -employeeType: Employee -homePhone: +1 510 264-8059 -initials: A. K. -mobile: +1 510 978-4355 -pager: +1 510 877-3665 -roomNumber: 9082 -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ginnie Vosu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginnie Vosu -sn: Vosu -description: This is Ginnie Vosu's description -facsimileTelephoneNumber: +1 804 772-7452 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 221-5258 -title: Chief Management Consultant -userPassword: Password1 -uid: VosuG -givenName: Ginnie -mail: VosuG@ed87fa3a81eb418da1bb630466cba42d.bitwarden.com -carLicense: JTRLLT -departmentNumber: 9189 -employeeType: Normal -homePhone: +1 804 694-2786 -initials: G. V. -mobile: +1 804 974-6537 -pager: +1 804 222-1571 -roomNumber: 9346 -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anallese Haufe -sn: Haufe -description: This is Anallese Haufe's description -facsimileTelephoneNumber: +1 408 822-8863 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 940-2161 -title: Supreme Janitorial Developer -userPassword: Password1 -uid: HaufeA -givenName: Anallese -mail: HaufeA@56d11716ccc04cd3b803f8858fc5a1ca.bitwarden.com -carLicense: 5DLQA9 -departmentNumber: 8005 -employeeType: Contract -homePhone: +1 408 827-6260 -initials: A. H. -mobile: +1 408 483-6526 -pager: +1 408 995-7888 -roomNumber: 8879 -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roze Bakkum -sn: Bakkum -description: This is Roze Bakkum's description -facsimileTelephoneNumber: +1 408 386-2585 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 899-1608 -title: Associate Management Engineer -userPassword: Password1 -uid: BakkumR -givenName: Roze -mail: BakkumR@a26084161ba1445494da78b7a16404c8.bitwarden.com -carLicense: KLEOUQ -departmentNumber: 5690 -employeeType: Contract -homePhone: +1 408 690-6382 -initials: R. B. -mobile: +1 408 916-6071 -pager: +1 408 210-2294 -roomNumber: 9325 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krystle Jamensky -sn: Jamensky -description: This is Krystle Jamensky's description -facsimileTelephoneNumber: +1 206 365-1286 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 108-3728 -title: Junior Product Testing President -userPassword: Password1 -uid: JamenskK -givenName: Krystle -mail: JamenskK@e6ed933c0a1d45ec83769226267acd7a.bitwarden.com -carLicense: L4IXM6 -departmentNumber: 2641 -employeeType: Employee -homePhone: +1 206 445-3014 -initials: K. J. -mobile: +1 206 634-9821 -pager: +1 206 678-6768 -roomNumber: 8950 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Belvia Aylwin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belvia Aylwin -sn: Aylwin -description: This is Belvia Aylwin's description -facsimileTelephoneNumber: +1 510 618-4548 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 510 953-2519 -title: Chief Administrative Madonna -userPassword: Password1 -uid: AylwinB -givenName: Belvia -mail: AylwinB@fb6923d9574749cc9a77b6988394e1a3.bitwarden.com -carLicense: B61RXG -departmentNumber: 8047 -employeeType: Normal -homePhone: +1 510 609-7265 -initials: B. A. -mobile: +1 510 917-2634 -pager: +1 510 406-2767 -roomNumber: 9836 -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Duong Bannard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duong Bannard -sn: Bannard -description: This is Duong Bannard's description -facsimileTelephoneNumber: +1 804 955-3718 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 764-7707 -title: Junior Administrative Stooge -userPassword: Password1 -uid: BannardD -givenName: Duong -mail: BannardD@10e90e32f8224ce7bbb550670baa2ab8.bitwarden.com -carLicense: EC83PW -departmentNumber: 2620 -employeeType: Contract -homePhone: +1 804 116-4200 -initials: D. B. -mobile: +1 804 490-5153 -pager: +1 804 822-6797 -roomNumber: 9717 -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kees Rashid -sn: Rashid -description: This is Kees Rashid's description -facsimileTelephoneNumber: +1 206 968-9322 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 997-3312 -title: Junior Janitorial Mascot -userPassword: Password1 -uid: RashidK -givenName: Kees -mail: RashidK@351deec9477e4e51877822ae4f8cd070.bitwarden.com -carLicense: VP92D4 -departmentNumber: 6706 -employeeType: Contract -homePhone: +1 206 442-9865 -initials: K. R. -mobile: +1 206 484-2564 -pager: +1 206 896-1669 -roomNumber: 9621 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cami Glew -sn: Glew -description: This is Cami Glew's description -facsimileTelephoneNumber: +1 415 992-2968 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 415 832-3756 -title: Chief Management Admin -userPassword: Password1 -uid: GlewC -givenName: Cami -mail: GlewC@0df8f05e50bc474da42b5a37234e2e7d.bitwarden.com -carLicense: GDA64Y -departmentNumber: 8111 -employeeType: Normal -homePhone: +1 415 396-7825 -initials: C. G. -mobile: +1 415 860-6694 -pager: +1 415 846-1304 -roomNumber: 9662 -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tien Giuliani,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tien Giuliani -sn: Giuliani -description: This is Tien Giuliani's description -facsimileTelephoneNumber: +1 804 894-2794 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 804 604-5342 -title: Associate Payroll Vice President -userPassword: Password1 -uid: GiulianT -givenName: Tien -mail: GiulianT@6a7e60c1eef24773be3efbf0c4240827.bitwarden.com -carLicense: TOIESU -departmentNumber: 6411 -employeeType: Employee -homePhone: +1 804 795-8499 -initials: T. G. -mobile: +1 804 936-6895 -pager: +1 804 784-4357 -roomNumber: 8262 -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evie Morin -sn: Morin -description: This is Evie Morin's description -facsimileTelephoneNumber: +1 818 597-6690 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 818 523-3943 -title: Master Administrative Figurehead -userPassword: Password1 -uid: MorinE -givenName: Evie -mail: MorinE@f2c07dab9bd04b82822cc496cad44d9f.bitwarden.com -carLicense: MOJBHE -departmentNumber: 5746 -employeeType: Normal -homePhone: +1 818 488-7917 -initials: E. M. -mobile: +1 818 641-5696 -pager: +1 818 410-5762 -roomNumber: 9845 -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorena Godina -sn: Godina -description: This is Dorena Godina's description -facsimileTelephoneNumber: +1 510 837-3198 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 496-9704 -title: Junior Peons Punk -userPassword: Password1 -uid: GodinaD -givenName: Dorena -mail: GodinaD@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com -carLicense: HC26P4 -departmentNumber: 8049 -employeeType: Normal -homePhone: +1 510 493-6882 -initials: D. G. -mobile: +1 510 473-8126 -pager: +1 510 672-7725 -roomNumber: 8065 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arn Ricketts -sn: Ricketts -description: This is Arn Ricketts's description -facsimileTelephoneNumber: +1 818 672-6472 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 519-5850 -title: Associate Peons Punk -userPassword: Password1 -uid: RickettA -givenName: Arn -mail: RickettA@7612c1ed110442fbbc70e6069bdde272.bitwarden.com -carLicense: 0OVQLX -departmentNumber: 1968 -employeeType: Employee -homePhone: +1 818 962-9895 -initials: A. R. -mobile: +1 818 318-9116 -pager: +1 818 870-5125 -roomNumber: 9370 -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatriz Hagley -sn: Hagley -description: This is Beatriz Hagley's description -facsimileTelephoneNumber: +1 206 966-4901 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 103-5745 -title: Chief Payroll Janitor -userPassword: Password1 -uid: HagleyB -givenName: Beatriz -mail: HagleyB@417a3a09bd36400f8dce8f57ab33032c.bitwarden.com -carLicense: ORBFG2 -departmentNumber: 1516 -employeeType: Normal -homePhone: +1 206 938-7766 -initials: B. H. -mobile: +1 206 961-5757 -pager: +1 206 206-3329 -roomNumber: 8400 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karissa AuYang -sn: AuYang -description: This is Karissa AuYang's description -facsimileTelephoneNumber: +1 213 220-1092 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 927-4459 -title: Master Management Technician -userPassword: Password1 -uid: AuYangK -givenName: Karissa -mail: AuYangK@0695846df1ff4a078ca865ab0794005c.bitwarden.com -carLicense: CDLPQY -departmentNumber: 6655 -employeeType: Normal -homePhone: +1 213 211-4522 -initials: K. A. -mobile: +1 213 408-4440 -pager: +1 213 766-4522 -roomNumber: 8117 -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pankesh Annunziata -sn: Annunziata -description: This is Pankesh Annunziata's description -facsimileTelephoneNumber: +1 213 437-4076 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 860-7189 -title: Chief Administrative Vice President -userPassword: Password1 -uid: AnnunziP -givenName: Pankesh -mail: AnnunziP@87263f2ad4e44ac39562038c9af16152.bitwarden.com -carLicense: P77HCI -departmentNumber: 5133 -employeeType: Employee -homePhone: +1 213 350-9324 -initials: P. A. -mobile: +1 213 945-6003 -pager: +1 213 250-2993 -roomNumber: 9377 -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Froukje Kennedy -sn: Kennedy -description: This is Froukje Kennedy's description -facsimileTelephoneNumber: +1 415 510-3290 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 817-2797 -title: Supreme Management Consultant -userPassword: Password1 -uid: KennedyF -givenName: Froukje -mail: KennedyF@e55b43fab5194d70867c5cdfb0b99fcb.bitwarden.com -carLicense: D6S006 -departmentNumber: 5253 -employeeType: Contract -homePhone: +1 415 891-1875 -initials: F. K. -mobile: +1 415 135-9354 -pager: +1 415 292-1196 -roomNumber: 8269 -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hazel Nash -sn: Nash -description: This is Hazel Nash's description -facsimileTelephoneNumber: +1 213 462-7458 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 326-4677 -title: Chief Product Development Admin -userPassword: Password1 -uid: NashH -givenName: Hazel -mail: NashH@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com -carLicense: 9BY7EX -departmentNumber: 6675 -employeeType: Employee -homePhone: +1 213 734-9678 -initials: H. N. -mobile: +1 213 526-1096 -pager: +1 213 642-5055 -roomNumber: 9638 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Soyeh Neely -sn: Neely -description: This is Soyeh Neely's description -facsimileTelephoneNumber: +1 206 520-6874 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 796-7557 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: NeelyS -givenName: Soyeh -mail: NeelyS@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com -carLicense: 39D3O1 -departmentNumber: 7725 -employeeType: Normal -homePhone: +1 206 489-9479 -initials: S. N. -mobile: +1 206 590-4351 -pager: +1 206 955-4668 -roomNumber: 9066 -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WaiChau McHale -sn: McHale -description: This is WaiChau McHale's description -facsimileTelephoneNumber: +1 408 793-7843 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 408 575-2315 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: McHaleW -givenName: WaiChau -mail: McHaleW@ea90c3e9804d4eccbf51d816e6665474.bitwarden.com -carLicense: 3BKVUV -departmentNumber: 4509 -employeeType: Contract -homePhone: +1 408 208-5036 -initials: W. M. -mobile: +1 408 636-5534 -pager: +1 408 637-7553 -roomNumber: 9168 -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathrine Schejbal -sn: Schejbal -description: This is Kathrine Schejbal's description -facsimileTelephoneNumber: +1 510 638-2258 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 741-1394 -title: Chief Peons Manager -userPassword: Password1 -uid: SchejbaK -givenName: Kathrine -mail: SchejbaK@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com -carLicense: 6W758W -departmentNumber: 4997 -employeeType: Contract -homePhone: +1 510 439-9830 -initials: K. S. -mobile: +1 510 390-8312 -pager: +1 510 333-5818 -roomNumber: 9126 -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shobana Eisler -sn: Eisler -description: This is Shobana Eisler's description -facsimileTelephoneNumber: +1 213 228-8535 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 315-1487 -title: Junior Management Engineer -userPassword: Password1 -uid: EislerS -givenName: Shobana -mail: EislerS@a922ba05488e401e9633fbd1813d714f.bitwarden.com -carLicense: 507T3Y -departmentNumber: 3273 -employeeType: Contract -homePhone: +1 213 306-7415 -initials: S. E. -mobile: +1 213 183-7733 -pager: +1 213 442-6893 -roomNumber: 8037 -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joete Stamps -sn: Stamps -description: This is Joete Stamps's description -facsimileTelephoneNumber: +1 206 912-5631 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 206 830-7642 -title: Master Payroll Dictator -userPassword: Password1 -uid: StampsJ -givenName: Joete -mail: StampsJ@85c3b55181514b55979bbf8d48a7d2ec.bitwarden.com -carLicense: I2GUTR -departmentNumber: 1972 -employeeType: Employee -homePhone: +1 206 229-4416 -initials: J. S. -mobile: +1 206 944-2622 -pager: +1 206 726-2711 -roomNumber: 9795 -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oneida Curnow -sn: Curnow -description: This is Oneida Curnow's description -facsimileTelephoneNumber: +1 818 563-6277 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 411-6128 -title: Associate Peons Artist -userPassword: Password1 -uid: CurnowO -givenName: Oneida -mail: CurnowO@ea3044bbf20e4e989696a49bb606f948.bitwarden.com -carLicense: HLIOUI -departmentNumber: 4360 -employeeType: Contract -homePhone: +1 818 780-2222 -initials: O. C. -mobile: +1 818 369-6330 -pager: +1 818 758-4975 -roomNumber: 8354 -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Naohiko McCray,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naohiko McCray -sn: McCray -description: This is Naohiko McCray's description -facsimileTelephoneNumber: +1 415 581-5598 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 224-7765 -title: Junior Janitorial Director -userPassword: Password1 -uid: McCrayN -givenName: Naohiko -mail: McCrayN@04448fada1ea4fa4b445ea9be1736993.bitwarden.com -carLicense: TOBKY5 -departmentNumber: 6661 -employeeType: Employee -homePhone: +1 415 393-2934 -initials: N. M. -mobile: +1 415 890-9540 -pager: +1 415 924-4565 -roomNumber: 9279 -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lang DeBoer -sn: DeBoer -description: This is Lang DeBoer's description -facsimileTelephoneNumber: +1 415 472-4784 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 751-4643 -title: Junior Product Development Vice President -userPassword: Password1 -uid: DeBoerL -givenName: Lang -mail: DeBoerL@fff701bd2ea44826a3be41e44496b16d.bitwarden.com -carLicense: HORFKX -departmentNumber: 3554 -employeeType: Contract -homePhone: +1 415 901-2066 -initials: L. D. -mobile: +1 415 819-3809 -pager: +1 415 105-8636 -roomNumber: 9123 -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selime Yuengling -sn: Yuengling -description: This is Selime Yuengling's description -facsimileTelephoneNumber: +1 818 223-6128 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 652-9558 -title: Junior Peons Artist -userPassword: Password1 -uid: YuengliS -givenName: Selime -mail: YuengliS@b99d09dc15214a99a049d574cca06ad4.bitwarden.com -carLicense: L6KTA7 -departmentNumber: 6355 -employeeType: Normal -homePhone: +1 818 947-5089 -initials: S. Y. -mobile: +1 818 760-4736 -pager: +1 818 273-7403 -roomNumber: 9122 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dolli Cracknell -sn: Cracknell -description: This is Dolli Cracknell's description -facsimileTelephoneNumber: +1 804 189-9975 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 515-6382 -title: Junior Payroll Technician -userPassword: Password1 -uid: CrackneD -givenName: Dolli -mail: CrackneD@0477f7500cad42ceb4af441ae4e4ca2d.bitwarden.com -carLicense: WLI4QX -departmentNumber: 2119 -employeeType: Normal -homePhone: +1 804 334-6018 -initials: D. C. -mobile: +1 804 722-6954 -pager: +1 804 620-7149 -roomNumber: 8690 -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reggi Eckhart -sn: Eckhart -description: This is Reggi Eckhart's description -facsimileTelephoneNumber: +1 818 337-3592 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 741-4129 -title: Associate Janitorial Punk -userPassword: Password1 -uid: EckhartR -givenName: Reggi -mail: EckhartR@519077386b7144648a1af65801ba340e.bitwarden.com -carLicense: 451J0V -departmentNumber: 9119 -employeeType: Employee -homePhone: +1 818 824-4243 -initials: R. E. -mobile: +1 818 135-3419 -pager: +1 818 170-4702 -roomNumber: 8570 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Justino Willhoff -sn: Willhoff -description: This is Justino Willhoff's description -facsimileTelephoneNumber: +1 818 435-3932 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 818 710-5066 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: WillhofJ -givenName: Justino -mail: WillhofJ@756ec4d446d24d4291f75c428b4e0284.bitwarden.com -carLicense: T85DU3 -departmentNumber: 8297 -employeeType: Contract -homePhone: +1 818 883-7012 -initials: J. W. -mobile: +1 818 689-9445 -pager: +1 818 328-1299 -roomNumber: 9386 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ShingCheong Eastus -sn: Eastus -description: This is ShingCheong Eastus's description -facsimileTelephoneNumber: +1 510 376-8306 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 652-1353 -title: Master Management Sales Rep -userPassword: Password1 -uid: EastusS -givenName: ShingCheong -mail: EastusS@b9e3cd16f2b646b993b7e643861e809b.bitwarden.com -carLicense: LHAA9Q -departmentNumber: 9369 -employeeType: Normal -homePhone: +1 510 203-6240 -initials: S. E. -mobile: +1 510 655-3602 -pager: +1 510 355-6030 -roomNumber: 9469 -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Said Fran -sn: Fran -description: This is Said Fran's description -facsimileTelephoneNumber: +1 415 146-1541 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 883-6562 -title: Chief Product Development Punk -userPassword: Password1 -uid: FranS -givenName: Said -mail: FranS@6105773677f144b2ba0b3fcab80e7802.bitwarden.com -carLicense: S7J0IT -departmentNumber: 9654 -employeeType: Contract -homePhone: +1 415 247-5959 -initials: S. F. -mobile: +1 415 367-5727 -pager: +1 415 392-4556 -roomNumber: 8845 -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olga Rehbein -sn: Rehbein -description: This is Olga Rehbein's description -facsimileTelephoneNumber: +1 213 421-9463 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 437-8446 -title: Junior Peons Visionary -userPassword: Password1 -uid: RehbeinO -givenName: Olga -mail: RehbeinO@00018780c15f455eb74328ce8b255114.bitwarden.com -carLicense: QU3OKU -departmentNumber: 8458 -employeeType: Contract -homePhone: +1 213 681-2492 -initials: O. R. -mobile: +1 213 212-3162 -pager: +1 213 179-2391 -roomNumber: 9963 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quinta Blezard -sn: Blezard -description: This is Quinta Blezard's description -facsimileTelephoneNumber: +1 415 361-8706 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 884-7338 -title: Master Management Fellow -userPassword: Password1 -uid: BlezardQ -givenName: Quinta -mail: BlezardQ@222e3b4f0b4746df8dd6c24b1a79a79b.bitwarden.com -carLicense: 9C5N4X -departmentNumber: 7062 -employeeType: Employee -homePhone: +1 415 581-5033 -initials: Q. B. -mobile: +1 415 998-6339 -pager: +1 415 620-1245 -roomNumber: 8688 -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felisha Linke -sn: Linke -description: This is Felisha Linke's description -facsimileTelephoneNumber: +1 408 333-1803 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 925-8114 -title: Junior Peons Janitor -userPassword: Password1 -uid: LinkeF -givenName: Felisha -mail: LinkeF@aca976004a314abfbb7dfda7c7926044.bitwarden.com -carLicense: 6BX4K9 -departmentNumber: 8584 -employeeType: Normal -homePhone: +1 408 982-5486 -initials: F. L. -mobile: +1 408 299-9661 -pager: +1 408 318-6489 -roomNumber: 9846 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kunitaka Slautterback -sn: Slautterback -description: This is Kunitaka Slautterback's description -facsimileTelephoneNumber: +1 804 820-6878 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 500-6661 -title: Supreme Payroll President -userPassword: Password1 -uid: SlautteK -givenName: Kunitaka -mail: SlautteK@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com -carLicense: 9THY66 -departmentNumber: 3940 -employeeType: Contract -homePhone: +1 804 516-3255 -initials: K. S. -mobile: +1 804 165-7441 -pager: +1 804 912-6245 -roomNumber: 9758 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vicheara Yanosik -sn: Yanosik -description: This is Vicheara Yanosik's description -facsimileTelephoneNumber: +1 213 663-2580 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 974-9915 -title: Master Human Resources Dictator -userPassword: Password1 -uid: YanosikV -givenName: Vicheara -mail: YanosikV@0030e1596d9147918c7c2fdae8f6513c.bitwarden.com -carLicense: XGJQOB -departmentNumber: 7142 -employeeType: Employee -homePhone: +1 213 919-4524 -initials: V. Y. -mobile: +1 213 563-1618 -pager: +1 213 629-2785 -roomNumber: 9454 -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elisabet Somppi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elisabet Somppi -sn: Somppi -description: This is Elisabet Somppi's description -facsimileTelephoneNumber: +1 510 514-8550 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 190-2264 -title: Master Administrative Artist -userPassword: Password1 -uid: SomppiE -givenName: Elisabet -mail: SomppiE@388f37e043f44f87a961652591a7a940.bitwarden.com -carLicense: ELGMFU -departmentNumber: 9878 -employeeType: Contract -homePhone: +1 510 870-4800 -initials: E. S. -mobile: +1 510 847-6961 -pager: +1 510 110-6510 -roomNumber: 8667 -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arda Poluchowska -sn: Poluchowska -description: This is Arda Poluchowska's description -facsimileTelephoneNumber: +1 408 460-3769 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 442-5438 -title: Master Management Janitor -userPassword: Password1 -uid: PoluchoA -givenName: Arda -mail: PoluchoA@59a53864c7aa4d7ea9936880199e460a.bitwarden.com -carLicense: 50C9CU -departmentNumber: 3258 -employeeType: Contract -homePhone: +1 408 760-2832 -initials: A. P. -mobile: +1 408 356-6033 -pager: +1 408 841-1777 -roomNumber: 8935 -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claudette Daugavietis -sn: Daugavietis -description: This is Claudette Daugavietis's description -facsimileTelephoneNumber: +1 818 752-3708 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 211-7810 -title: Associate Administrative Mascot -userPassword: Password1 -uid: DaugaviC -givenName: Claudette -mail: DaugaviC@c9b145063e654a36b0f903ec21358b26.bitwarden.com -carLicense: GKTQ3B -departmentNumber: 1791 -employeeType: Contract -homePhone: +1 818 906-7796 -initials: C. D. -mobile: +1 818 720-8006 -pager: +1 818 645-8891 -roomNumber: 9227 -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valry Agnihotri -sn: Agnihotri -description: This is Valry Agnihotri's description -facsimileTelephoneNumber: +1 510 557-4071 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 844-8893 -title: Associate Peons Assistant -userPassword: Password1 -uid: AgnihotV -givenName: Valry -mail: AgnihotV@8cf075f892994459a2bb7138294f3585.bitwarden.com -carLicense: U3TF1O -departmentNumber: 9671 -employeeType: Contract -homePhone: +1 510 956-2624 -initials: V. A. -mobile: +1 510 523-9150 -pager: +1 510 959-7488 -roomNumber: 8044 -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerri Rosko -sn: Rosko -description: This is Gerri Rosko's description -facsimileTelephoneNumber: +1 415 233-2574 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 727-9929 -title: Chief Payroll Admin -userPassword: Password1 -uid: RoskoG -givenName: Gerri -mail: RoskoG@87ac1189e97646f890363efe4db63ec0.bitwarden.com -carLicense: NFGKSP -departmentNumber: 4705 -employeeType: Contract -homePhone: +1 415 227-1467 -initials: G. R. -mobile: +1 415 703-1999 -pager: +1 415 362-3005 -roomNumber: 9834 -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrilee McMasters -sn: McMasters -description: This is Merrilee McMasters's description -facsimileTelephoneNumber: +1 213 556-5573 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 903-9287 -title: Chief Janitorial Technician -userPassword: Password1 -uid: McMasteM -givenName: Merrilee -mail: McMasteM@f01315dbdd864d028245d0f49a2de87a.bitwarden.com -carLicense: KJA15T -departmentNumber: 6147 -employeeType: Normal -homePhone: +1 213 522-5795 -initials: M. M. -mobile: +1 213 137-1903 -pager: +1 213 954-4729 -roomNumber: 9001 -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Farouk Korf,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farouk Korf -sn: Korf -description: This is Farouk Korf's description -facsimileTelephoneNumber: +1 206 980-4688 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 889-3094 -title: Chief Human Resources Vice President -userPassword: Password1 -uid: KorfF -givenName: Farouk -mail: KorfF@756bb6f9687f4cb8b648d97f2eda64b2.bitwarden.com -carLicense: BM4N39 -departmentNumber: 8078 -employeeType: Contract -homePhone: +1 206 868-6308 -initials: F. K. -mobile: +1 206 733-9590 -pager: +1 206 111-9356 -roomNumber: 8531 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeanette Wagner -sn: Wagner -description: This is Jeanette Wagner's description -facsimileTelephoneNumber: +1 213 992-5145 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 213 119-5425 -title: Associate Human Resources Warrior -userPassword: Password1 -uid: WagnerJ -givenName: Jeanette -mail: WagnerJ@0033304ecf264958be4e3649e61343d9.bitwarden.com -carLicense: A09FAS -departmentNumber: 3772 -employeeType: Employee -homePhone: +1 213 729-2363 -initials: J. W. -mobile: +1 213 973-6684 -pager: +1 213 483-6216 -roomNumber: 8910 -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natalya Mussallem -sn: Mussallem -description: This is Natalya Mussallem's description -facsimileTelephoneNumber: +1 206 424-7736 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 448-6706 -title: Junior Human Resources President -userPassword: Password1 -uid: MussallN -givenName: Natalya -mail: MussallN@6b26c4bc2c534e799205cb4979fba2ee.bitwarden.com -carLicense: 28PHNS -departmentNumber: 1236 -employeeType: Normal -homePhone: +1 206 241-5680 -initials: N. M. -mobile: +1 206 252-7805 -pager: +1 206 815-1794 -roomNumber: 8770 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valida Ribi -sn: Ribi -description: This is Valida Ribi's description -facsimileTelephoneNumber: +1 213 675-6194 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 116-1188 -title: Chief Administrative Dictator -userPassword: Password1 -uid: RibiV -givenName: Valida -mail: RibiV@f090dc2fb4b84377af0ef3308a0fb4cd.bitwarden.com -carLicense: EK1YKK -departmentNumber: 2483 -employeeType: Contract -homePhone: +1 213 968-6168 -initials: V. R. -mobile: +1 213 238-5980 -pager: +1 213 813-2755 -roomNumber: 9869 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maynie Levert -sn: Levert -description: This is Maynie Levert's description -facsimileTelephoneNumber: +1 818 648-7381 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 897-2410 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: LevertM -givenName: Maynie -mail: LevertM@a97141a360d8445daa6a6439dfbbd290.bitwarden.com -carLicense: XMRJAN -departmentNumber: 2235 -employeeType: Normal -homePhone: +1 818 695-4443 -initials: M. L. -mobile: +1 818 604-4073 -pager: +1 818 844-5976 -roomNumber: 9179 -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Floria DAoust -sn: DAoust -description: This is Floria DAoust's description -facsimileTelephoneNumber: +1 804 939-8320 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 332-6179 -title: Supreme Product Development Director -userPassword: Password1 -uid: DAoustF -givenName: Floria -mail: DAoustF@d69ecc02f7cc498a8c0f20edc1735b63.bitwarden.com -carLicense: 4D3SFE -departmentNumber: 3818 -employeeType: Contract -homePhone: +1 804 583-9201 -initials: F. D. -mobile: +1 804 554-5032 -pager: +1 804 971-9543 -roomNumber: 8352 -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Den Ormesher -sn: Ormesher -description: This is Den Ormesher's description -facsimileTelephoneNumber: +1 408 890-3920 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 640-4035 -title: Associate Administrative Technician -userPassword: Password1 -uid: OrmesheD -givenName: Den -mail: OrmesheD@ec10cc023e454fb0bbdd9208be69f4fc.bitwarden.com -carLicense: QX2WD0 -departmentNumber: 7458 -employeeType: Contract -homePhone: +1 408 422-8331 -initials: D. O. -mobile: +1 408 720-2896 -pager: +1 408 163-4676 -roomNumber: 8152 -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lashonda Reynolds -sn: Reynolds -description: This is Lashonda Reynolds's description -facsimileTelephoneNumber: +1 408 845-3736 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 166-8993 -title: Chief Administrative Figurehead -userPassword: Password1 -uid: ReynoldL -givenName: Lashonda -mail: ReynoldL@7af30a4b3f91418e9e6fee4aafd165df.bitwarden.com -carLicense: XP09HV -departmentNumber: 6289 -employeeType: Normal -homePhone: +1 408 292-3305 -initials: L. R. -mobile: +1 408 725-4125 -pager: +1 408 538-5848 -roomNumber: 8607 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brier VanNeste -sn: VanNeste -description: This is Brier VanNeste's description -facsimileTelephoneNumber: +1 510 792-6215 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 149-7254 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: VanNestB -givenName: Brier -mail: VanNestB@7b25e3cdf8714ae1a2b9340b249e36c1.bitwarden.com -carLicense: 42CLUJ -departmentNumber: 8361 -employeeType: Contract -homePhone: +1 510 468-1746 -initials: B. V. -mobile: +1 510 712-7590 -pager: +1 510 120-8225 -roomNumber: 9147 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kayla Schenkel -sn: Schenkel -description: This is Kayla Schenkel's description -facsimileTelephoneNumber: +1 415 188-2835 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 415 526-4711 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: SchenkeK -givenName: Kayla -mail: SchenkeK@71c9697cb5b44c66abac282f624d120e.bitwarden.com -carLicense: YQU86W -departmentNumber: 8557 -employeeType: Contract -homePhone: +1 415 107-2791 -initials: K. S. -mobile: +1 415 401-5367 -pager: +1 415 456-3861 -roomNumber: 8952 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pars Fleury -sn: Fleury -description: This is Pars Fleury's description -facsimileTelephoneNumber: +1 818 258-2856 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 457-9449 -title: Chief Administrative Fellow -userPassword: Password1 -uid: FleuryP -givenName: Pars -mail: FleuryP@c3d2d2c0ad16421093e58b9a80d13fae.bitwarden.com -carLicense: KLQ1P7 -departmentNumber: 8835 -employeeType: Employee -homePhone: +1 818 814-8963 -initials: P. F. -mobile: +1 818 816-3844 -pager: +1 818 238-3077 -roomNumber: 8810 -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roshelle Latif -sn: Latif -description: This is Roshelle Latif's description -facsimileTelephoneNumber: +1 510 369-3524 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 356-5322 -title: Chief Payroll Visionary -userPassword: Password1 -uid: LatifR -givenName: Roshelle -mail: LatifR@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com -carLicense: HG6UOO -departmentNumber: 6710 -employeeType: Normal -homePhone: +1 510 364-4575 -initials: R. L. -mobile: +1 510 641-6755 -pager: +1 510 989-2360 -roomNumber: 8898 -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annelise Hemphill -sn: Hemphill -description: This is Annelise Hemphill's description -facsimileTelephoneNumber: +1 206 597-9300 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 861-3387 -title: Junior Product Testing Dictator -userPassword: Password1 -uid: HemphilA -givenName: Annelise -mail: HemphilA@7648a4a2dba943e48a8b8e6e57e6c163.bitwarden.com -carLicense: 7B3XDJ -departmentNumber: 3848 -employeeType: Contract -homePhone: +1 206 155-9393 -initials: A. H. -mobile: +1 206 878-1047 -pager: +1 206 251-9179 -roomNumber: 8442 -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rashmi Yazdani -sn: Yazdani -description: This is Rashmi Yazdani's description -facsimileTelephoneNumber: +1 818 167-1589 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 818 821-1861 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: YazdaniR -givenName: Rashmi -mail: YazdaniR@a2522479a3ee40098579019920206caf.bitwarden.com -carLicense: JUAQE9 -departmentNumber: 6071 -employeeType: Contract -homePhone: +1 818 293-7844 -initials: R. Y. -mobile: +1 818 481-3628 -pager: +1 818 132-4597 -roomNumber: 9622 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Micah Eva,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micah Eva -sn: Eva -description: This is Micah Eva's description -facsimileTelephoneNumber: +1 804 692-1763 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 159-7065 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: EvaM -givenName: Micah -mail: EvaM@e133020db6a24c759a701885b4f7f426.bitwarden.com -carLicense: R5HW57 -departmentNumber: 5410 -employeeType: Normal -homePhone: +1 804 650-6803 -initials: M. E. -mobile: +1 804 795-2450 -pager: +1 804 845-7258 -roomNumber: 9325 -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdalen Howe -sn: Howe -description: This is Magdalen Howe's description -facsimileTelephoneNumber: +1 408 842-7905 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 441-9893 -title: Chief Payroll Assistant -userPassword: Password1 -uid: HoweM -givenName: Magdalen -mail: HoweM@21063d63862a4b1aa0c4c81ad5ebd22a.bitwarden.com -carLicense: WLIRG2 -departmentNumber: 1741 -employeeType: Normal -homePhone: +1 408 117-9626 -initials: M. H. -mobile: +1 408 950-6777 -pager: +1 408 668-1850 -roomNumber: 9009 -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Becki Hornbeek -sn: Hornbeek -description: This is Becki Hornbeek's description -facsimileTelephoneNumber: +1 408 834-2581 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 389-9294 -title: Junior Human Resources President -userPassword: Password1 -uid: HornbeeB -givenName: Becki -mail: HornbeeB@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com -carLicense: JBO5SS -departmentNumber: 6292 -employeeType: Employee -homePhone: +1 408 358-8701 -initials: B. H. -mobile: +1 408 494-1023 -pager: +1 408 311-7302 -roomNumber: 9249 -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jorrie Daigle -sn: Daigle -description: This is Jorrie Daigle's description -facsimileTelephoneNumber: +1 408 337-5185 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 408 757-1521 -title: Chief Janitorial Stooge -userPassword: Password1 -uid: DaigleJ -givenName: Jorrie -mail: DaigleJ@2f0ef4b1759e41b483f68723f29c3b29.bitwarden.com -carLicense: GJJRQ3 -departmentNumber: 4513 -employeeType: Contract -homePhone: +1 408 120-8262 -initials: J. D. -mobile: +1 408 611-9775 -pager: +1 408 943-4706 -roomNumber: 8101 -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gloriane Knitl,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gloriane Knitl -sn: Knitl -description: This is Gloriane Knitl's description -facsimileTelephoneNumber: +1 804 267-1208 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 354-5776 -title: Chief Peons President -userPassword: Password1 -uid: KnitlG -givenName: Gloriane -mail: KnitlG@5da7177901fc42a3a2e0603d9a2f29e3.bitwarden.com -carLicense: 0D3GX8 -departmentNumber: 6121 -employeeType: Employee -homePhone: +1 804 374-6196 -initials: G. K. -mobile: +1 804 133-8103 -pager: +1 804 575-1267 -roomNumber: 8643 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Issy Paget -sn: Paget -description: This is Issy Paget's description -facsimileTelephoneNumber: +1 804 777-5667 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 804 979-9060 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: PagetI -givenName: Issy -mail: PagetI@865a836daa5b4648b95df389d46126d0.bitwarden.com -carLicense: I3UFOT -departmentNumber: 3886 -employeeType: Employee -homePhone: +1 804 223-7054 -initials: I. P. -mobile: +1 804 450-2714 -pager: +1 804 181-3606 -roomNumber: 9528 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Justinn Mazey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Justinn Mazey -sn: Mazey -description: This is Justinn Mazey's description -facsimileTelephoneNumber: +1 804 650-8301 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 350-1404 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: MazeyJ -givenName: Justinn -mail: MazeyJ@a2c6fbef8f1b420994ca3b288c3969a8.bitwarden.com -carLicense: X3HGH0 -departmentNumber: 1335 -employeeType: Normal -homePhone: +1 804 411-4976 -initials: J. M. -mobile: +1 804 858-3948 -pager: +1 804 478-7418 -roomNumber: 9274 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nan Wellard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nan Wellard -sn: Wellard -description: This is Nan Wellard's description -facsimileTelephoneNumber: +1 804 714-8119 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 526-2310 -title: Chief Human Resources Manager -userPassword: Password1 -uid: WellardN -givenName: Nan -mail: WellardN@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com -carLicense: ROBLN5 -departmentNumber: 9045 -employeeType: Employee -homePhone: +1 804 734-4237 -initials: N. W. -mobile: +1 804 824-9768 -pager: +1 804 718-6837 -roomNumber: 8833 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryana Sathe -sn: Sathe -description: This is Bryana Sathe's description -facsimileTelephoneNumber: +1 804 110-7418 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 804 144-5012 -title: Master Peons Engineer -userPassword: Password1 -uid: SatheB -givenName: Bryana -mail: SatheB@13da8e4c7f9644f5a68d87ae81657c2f.bitwarden.com -carLicense: MPPHS0 -departmentNumber: 1018 -employeeType: Employee -homePhone: +1 804 896-8986 -initials: B. S. -mobile: +1 804 725-8338 -pager: +1 804 119-9623 -roomNumber: 8297 -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pavla Keiser -sn: Keiser -description: This is Pavla Keiser's description -facsimileTelephoneNumber: +1 213 895-9329 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 210-9356 -title: Supreme Administrative Manager -userPassword: Password1 -uid: KeiserP -givenName: Pavla -mail: KeiserP@d424430a319442dd8ccc18dd79f178d7.bitwarden.com -carLicense: EUUM67 -departmentNumber: 2884 -employeeType: Normal -homePhone: +1 213 913-7889 -initials: P. K. -mobile: +1 213 955-3434 -pager: +1 213 417-6968 -roomNumber: 9708 -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com - -dn: cn=Myriam Blezard,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myriam Blezard -sn: Blezard -description: This is Myriam Blezard's description -facsimileTelephoneNumber: +1 415 437-5223 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 833-7809 -title: Junior Janitorial Technician -userPassword: Password1 -uid: BlezardM -givenName: Myriam -mail: BlezardM@9dd46e72015c4014b5f15189a14009e2.bitwarden.com -carLicense: NIN27U -departmentNumber: 2241 -employeeType: Employee -homePhone: +1 415 805-3252 -initials: M. B. -mobile: +1 415 932-1963 -pager: +1 415 422-1781 -roomNumber: 9884 -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mehmet Cuper -sn: Cuper -description: This is Mehmet Cuper's description -facsimileTelephoneNumber: +1 213 984-6194 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 736-3819 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: CuperM -givenName: Mehmet -mail: CuperM@7f63e51441fc4e1aab1257e0bb185e66.bitwarden.com -carLicense: 7VN671 -departmentNumber: 7359 -employeeType: Contract -homePhone: +1 213 642-9001 -initials: M. C. -mobile: +1 213 619-9618 -pager: +1 213 502-8828 -roomNumber: 9500 -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shobana Berna -sn: Berna -description: This is Shobana Berna's description -facsimileTelephoneNumber: +1 818 762-3207 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 985-9420 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: BernaS -givenName: Shobana -mail: BernaS@231bc329012a4b71830de92a0a747aec.bitwarden.com -carLicense: 0SD5NX -departmentNumber: 1818 -employeeType: Employee -homePhone: +1 818 861-4951 -initials: S. B. -mobile: +1 818 180-9861 -pager: +1 818 198-3942 -roomNumber: 9669 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ginni Felske,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginni Felske -sn: Felske -description: This is Ginni Felske's description -facsimileTelephoneNumber: +1 206 398-8560 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 510-8007 -title: Master Product Testing President -userPassword: Password1 -uid: FelskeG -givenName: Ginni -mail: FelskeG@7e7a2a61072144f1bbb5c3973fb03067.bitwarden.com -carLicense: 9O1EMV -departmentNumber: 6041 -employeeType: Employee -homePhone: +1 206 188-4331 -initials: G. F. -mobile: +1 206 866-9652 -pager: +1 206 603-1705 -roomNumber: 9265 -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HingFai Shearer -sn: Shearer -description: This is HingFai Shearer's description -facsimileTelephoneNumber: +1 408 258-9319 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 446-2812 -title: Chief Management Janitor -userPassword: Password1 -uid: ShearerH -givenName: HingFai -mail: ShearerH@7969b0806fba4e3d88a5a3efd04eb548.bitwarden.com -carLicense: E4EAFF -departmentNumber: 7086 -employeeType: Normal -homePhone: +1 408 701-1121 -initials: H. S. -mobile: +1 408 521-7040 -pager: +1 408 502-8424 -roomNumber: 9704 -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yuji Dilallo -sn: Dilallo -description: This is Yuji Dilallo's description -facsimileTelephoneNumber: +1 213 609-9610 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 213 264-5127 -title: Chief Product Testing Director -userPassword: Password1 -uid: DilalloY -givenName: Yuji -mail: DilalloY@36b4191e06e749fa9ae622f109b3b75b.bitwarden.com -carLicense: 3X5ELP -departmentNumber: 1286 -employeeType: Normal -homePhone: +1 213 642-4266 -initials: Y. D. -mobile: +1 213 980-4525 -pager: +1 213 917-5828 -roomNumber: 9234 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alissa Junkin -sn: Junkin -description: This is Alissa Junkin's description -facsimileTelephoneNumber: +1 408 108-3825 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 680-1189 -title: Chief Administrative Consultant -userPassword: Password1 -uid: JunkinA -givenName: Alissa -mail: JunkinA@c219bf062505483787e15d8eef41ed24.bitwarden.com -carLicense: C90BGR -departmentNumber: 5716 -employeeType: Employee -homePhone: +1 408 130-8789 -initials: A. J. -mobile: +1 408 748-9777 -pager: +1 408 750-6062 -roomNumber: 8404 -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryon Valko -sn: Valko -description: This is Bryon Valko's description -facsimileTelephoneNumber: +1 804 135-7714 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 334-6770 -title: Associate Payroll Dictator -userPassword: Password1 -uid: ValkoB -givenName: Bryon -mail: ValkoB@ea79beffe5bf4069ab41a806bbd716f7.bitwarden.com -carLicense: 3FJR0E -departmentNumber: 2432 -employeeType: Contract -homePhone: +1 804 689-7500 -initials: B. V. -mobile: +1 804 116-6702 -pager: +1 804 267-3067 -roomNumber: 8771 -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matt Casey -sn: Casey -description: This is Matt Casey's description -facsimileTelephoneNumber: +1 818 346-9396 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 818 594-5925 -title: Chief Peons Warrior -userPassword: Password1 -uid: CaseyM -givenName: Matt -mail: CaseyM@602d8f6d1a6449018081ad850b50b27b.bitwarden.com -carLicense: FYFU0G -departmentNumber: 4986 -employeeType: Normal -homePhone: +1 818 773-6484 -initials: M. C. -mobile: +1 818 471-7792 -pager: +1 818 590-2938 -roomNumber: 8317 -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lizette Klappholz -sn: Klappholz -description: This is Lizette Klappholz's description -facsimileTelephoneNumber: +1 804 990-1734 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 804 675-1324 -title: Master Peons Fellow -userPassword: Password1 -uid: KlapphoL -givenName: Lizette -mail: KlapphoL@753b4215422c4be18da9d3838b304ad2.bitwarden.com -carLicense: LF8JPQ -departmentNumber: 3003 -employeeType: Normal -homePhone: +1 804 118-5480 -initials: L. K. -mobile: +1 804 539-3694 -pager: +1 804 455-2097 -roomNumber: 8684 -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryl Petrick -sn: Petrick -description: This is Maryl Petrick's description -facsimileTelephoneNumber: +1 213 495-2855 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 536-9195 -title: Junior Peons Evangelist -userPassword: Password1 -uid: PetrickM -givenName: Maryl -mail: PetrickM@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com -carLicense: VONN2M -departmentNumber: 3550 -employeeType: Normal -homePhone: +1 213 950-1473 -initials: M. P. -mobile: +1 213 472-6532 -pager: +1 213 940-6069 -roomNumber: 9950 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Thalia Felske,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thalia Felske -sn: Felske -description: This is Thalia Felske's description -facsimileTelephoneNumber: +1 408 675-1919 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 519-8437 -title: Junior Payroll Visionary -userPassword: Password1 -uid: FelskeT -givenName: Thalia -mail: FelskeT@7ea385d9791745059f886b750a2e50fb.bitwarden.com -carLicense: LJJLGJ -departmentNumber: 5027 -employeeType: Normal -homePhone: +1 408 809-9539 -initials: T. F. -mobile: +1 408 129-7706 -pager: +1 408 849-2909 -roomNumber: 9337 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Louisa Macoosh -sn: Macoosh -description: This is Louisa Macoosh's description -facsimileTelephoneNumber: +1 206 457-2562 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 146-4958 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: MacooshL -givenName: Louisa -mail: MacooshL@4376a00e71594ef1b26e2e0a8e02ecaa.bitwarden.com -carLicense: N85WJ1 -departmentNumber: 6175 -employeeType: Employee -homePhone: +1 206 976-4548 -initials: L. M. -mobile: +1 206 169-4514 -pager: +1 206 254-8943 -roomNumber: 8037 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dino Kurauchi -sn: Kurauchi -description: This is Dino Kurauchi's description -facsimileTelephoneNumber: +1 804 452-7730 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 409-4843 -title: Chief Peons Janitor -userPassword: Password1 -uid: KurauchD -givenName: Dino -mail: KurauchD@df1443771fec4b9b851db7a87599995c.bitwarden.com -carLicense: AYAWQP -departmentNumber: 8911 -employeeType: Contract -homePhone: +1 804 392-7179 -initials: D. K. -mobile: +1 804 748-3756 -pager: +1 804 996-8984 -roomNumber: 8242 -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Heida Kyoung,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heida Kyoung -sn: Kyoung -description: This is Heida Kyoung's description -facsimileTelephoneNumber: +1 804 693-4097 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 804 722-6285 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: KyoungH -givenName: Heida -mail: KyoungH@fad13712be524b2bb53fd1f676c9976a.bitwarden.com -carLicense: RF60CX -departmentNumber: 3867 -employeeType: Normal -homePhone: +1 804 382-2667 -initials: H. K. -mobile: +1 804 741-3404 -pager: +1 804 662-7549 -roomNumber: 9920 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fleurette Neyman -sn: Neyman -description: This is Fleurette Neyman's description -facsimileTelephoneNumber: +1 408 910-7017 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 497-1545 -title: Master Management Janitor -userPassword: Password1 -uid: NeymanF -givenName: Fleurette -mail: NeymanF@e9ed05b9fb474121a884b5f5eaada8bf.bitwarden.com -carLicense: 076CF7 -departmentNumber: 8100 -employeeType: Employee -homePhone: +1 408 865-3755 -initials: F. N. -mobile: +1 408 576-3203 -pager: +1 408 587-1284 -roomNumber: 8151 -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zulfikar Rigsbee -sn: Rigsbee -description: This is Zulfikar Rigsbee's description -facsimileTelephoneNumber: +1 206 242-3611 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 863-9251 -title: Master Peons Sales Rep -userPassword: Password1 -uid: RigsbeeZ -givenName: Zulfikar -mail: RigsbeeZ@3b4c579bb3694dc89217301699689565.bitwarden.com -carLicense: QQ5SXI -departmentNumber: 7037 -employeeType: Normal -homePhone: +1 206 869-6202 -initials: Z. R. -mobile: +1 206 715-7077 -pager: +1 206 529-1444 -roomNumber: 9975 -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susanne Keates -sn: Keates -description: This is Susanne Keates's description -facsimileTelephoneNumber: +1 213 588-9127 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 571-3848 -title: Chief Management Engineer -userPassword: Password1 -uid: KeatesS -givenName: Susanne -mail: KeatesS@7ec11ccdde9a4f8c84d9525ea5fe4ff1.bitwarden.com -carLicense: 2HE17E -departmentNumber: 7229 -employeeType: Employee -homePhone: +1 213 807-8256 -initials: S. K. -mobile: +1 213 833-8029 -pager: +1 213 600-9027 -roomNumber: 8904 -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jurgen Proudfoot -sn: Proudfoot -description: This is Jurgen Proudfoot's description -facsimileTelephoneNumber: +1 206 160-9315 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 143-9025 -title: Master Janitorial Vice President -userPassword: Password1 -uid: ProudfoJ -givenName: Jurgen -mail: ProudfoJ@a90852e05a704b189e86f5be23a6fead.bitwarden.com -carLicense: MUPSF7 -departmentNumber: 5807 -employeeType: Employee -homePhone: +1 206 497-6837 -initials: J. P. -mobile: +1 206 235-5964 -pager: +1 206 964-7436 -roomNumber: 9720 -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvinia Wilkes -sn: Wilkes -description: This is Alvinia Wilkes's description -facsimileTelephoneNumber: +1 510 250-4802 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 433-3043 -title: Supreme Product Development Fellow -userPassword: Password1 -uid: WilkesA -givenName: Alvinia -mail: WilkesA@8415106c9bc644ca88df9b8987cb1aef.bitwarden.com -carLicense: 27IYVC -departmentNumber: 2018 -employeeType: Normal -homePhone: +1 510 497-6599 -initials: A. W. -mobile: +1 510 848-2652 -pager: +1 510 835-8235 -roomNumber: 8333 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alyce Gravely,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alyce Gravely -sn: Gravely -description: This is Alyce Gravely's description -facsimileTelephoneNumber: +1 804 755-3656 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 988-9959 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: GravelyA -givenName: Alyce -mail: GravelyA@8e58146437ae4809935cbbfea9366714.bitwarden.com -carLicense: HTGQCD -departmentNumber: 6630 -employeeType: Normal -homePhone: +1 804 948-3287 -initials: A. G. -mobile: +1 804 169-6056 -pager: +1 804 779-4221 -roomNumber: 8444 -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulo Whidden -sn: Whidden -description: This is Paulo Whidden's description -facsimileTelephoneNumber: +1 818 641-2348 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 143-5110 -title: Supreme Product Development Artist -userPassword: Password1 -uid: WhiddenP -givenName: Paulo -mail: WhiddenP@3bf5412f9df744cdbfb41ee6ad860514.bitwarden.com -carLicense: 4WNDTD -departmentNumber: 9043 -employeeType: Contract -homePhone: +1 818 503-4365 -initials: P. W. -mobile: +1 818 949-7433 -pager: +1 818 126-9845 -roomNumber: 9540 -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lee Abbott -sn: Abbott -description: This is Lee Abbott's description -facsimileTelephoneNumber: +1 415 690-9372 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 661-3354 -title: Chief Human Resources Figurehead -userPassword: Password1 -uid: AbbottL -givenName: Lee -mail: AbbottL@4160dbb07b29483d98d27e9c15a9e3bd.bitwarden.com -carLicense: OT760A -departmentNumber: 8447 -employeeType: Employee -homePhone: +1 415 545-8074 -initials: L. A. -mobile: +1 415 350-2991 -pager: +1 415 646-8023 -roomNumber: 9287 -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mustapha Tull -sn: Tull -description: This is Mustapha Tull's description -facsimileTelephoneNumber: +1 818 973-3035 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 252-1307 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: TullM -givenName: Mustapha -mail: TullM@07bd916cf158429f8580a7fcf2ca8d82.bitwarden.com -carLicense: AQQS6W -departmentNumber: 8200 -employeeType: Contract -homePhone: +1 818 483-4853 -initials: M. T. -mobile: +1 818 437-2443 -pager: +1 818 885-3412 -roomNumber: 8314 -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tsing Oakley -sn: Oakley -description: This is Tsing Oakley's description -facsimileTelephoneNumber: +1 804 189-8903 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 534-5555 -title: Chief Management Writer -userPassword: Password1 -uid: OakleyT -givenName: Tsing -mail: OakleyT@aab792405d0e421e9faa1d2235dbde11.bitwarden.com -carLicense: KHN8CA -departmentNumber: 8634 -employeeType: Employee -homePhone: +1 804 571-8071 -initials: T. O. -mobile: +1 804 560-5634 -pager: +1 804 596-1812 -roomNumber: 8621 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ozlem Nys -sn: Nys -description: This is Ozlem Nys's description -facsimileTelephoneNumber: +1 408 998-8065 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 521-1699 -title: Chief Administrative Czar -userPassword: Password1 -uid: NysO -givenName: Ozlem -mail: NysO@9050ca894d2e4faaa4c16fc83c480a1a.bitwarden.com -carLicense: 91I07D -departmentNumber: 3140 -employeeType: Normal -homePhone: +1 408 788-2616 -initials: O. N. -mobile: +1 408 343-6985 -pager: +1 408 589-5667 -roomNumber: 9286 -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Canute Fran -sn: Fran -description: This is Canute Fran's description -facsimileTelephoneNumber: +1 415 139-5903 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 578-9363 -title: Master Payroll Madonna -userPassword: Password1 -uid: FranC -givenName: Canute -mail: FranC@8029b2d4dc2441e188d25c43ec86afd1.bitwarden.com -carLicense: L0AU1P -departmentNumber: 9685 -employeeType: Employee -homePhone: +1 415 852-6258 -initials: C. F. -mobile: +1 415 107-5672 -pager: +1 415 219-8202 -roomNumber: 9038 -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erina RTP -sn: RTP -description: This is Erina RTP's description -facsimileTelephoneNumber: +1 510 167-2475 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 671-5045 -title: Supreme Payroll Madonna -userPassword: Password1 -uid: RTPE -givenName: Erina -mail: RTPE@af7219707df54fa3a07b2c4c1c18c6db.bitwarden.com -carLicense: 5L8HQ3 -departmentNumber: 1469 -employeeType: Contract -homePhone: +1 510 165-2281 -initials: E. R. -mobile: +1 510 705-5155 -pager: +1 510 243-7464 -roomNumber: 8919 -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Efdal Maund,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Efdal Maund -sn: Maund -description: This is Efdal Maund's description -facsimileTelephoneNumber: +1 818 272-9686 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 818 335-2948 -title: Junior Product Testing Dictator -userPassword: Password1 -uid: MaundE -givenName: Efdal -mail: MaundE@ea33ceb5d67949f9a3def71720aea530.bitwarden.com -carLicense: NE661R -departmentNumber: 1479 -employeeType: Contract -homePhone: +1 818 248-4347 -initials: E. M. -mobile: +1 818 793-1877 -pager: +1 818 325-8066 -roomNumber: 8020 -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peggy Corpening -sn: Corpening -description: This is Peggy Corpening's description -facsimileTelephoneNumber: +1 408 653-3974 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 788-4593 -title: Associate Janitorial Technician -userPassword: Password1 -uid: CorpeniP -givenName: Peggy -mail: CorpeniP@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com -carLicense: DSC55S -departmentNumber: 3349 -employeeType: Contract -homePhone: +1 408 766-5868 -initials: P. C. -mobile: +1 408 158-7035 -pager: +1 408 175-7752 -roomNumber: 8282 -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hiren Bopp -sn: Bopp -description: This is Hiren Bopp's description -facsimileTelephoneNumber: +1 206 637-2629 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 612-8076 -title: Junior Peons Madonna -userPassword: Password1 -uid: BoppH -givenName: Hiren -mail: BoppH@f0be25ac1a9142fbafef7971f03b3c8e.bitwarden.com -carLicense: LV454C -departmentNumber: 5320 -employeeType: Normal -homePhone: +1 206 394-8141 -initials: H. B. -mobile: +1 206 547-2478 -pager: +1 206 623-2213 -roomNumber: 8813 -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neala Seeds -sn: Seeds -description: This is Neala Seeds's description -facsimileTelephoneNumber: +1 804 691-8647 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 122-5539 -title: Chief Management Stooge -userPassword: Password1 -uid: SeedsN -givenName: Neala -mail: SeedsN@b9fd76bcb36c44ce9fb6bf40da399946.bitwarden.com -carLicense: 666NV6 -departmentNumber: 6211 -employeeType: Employee -homePhone: +1 804 968-1407 -initials: N. S. -mobile: +1 804 798-6999 -pager: +1 804 532-8404 -roomNumber: 9862 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Torie Seamster,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Torie Seamster -sn: Seamster -description: This is Torie Seamster's description -facsimileTelephoneNumber: +1 510 565-8287 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 973-7536 -title: Associate Janitorial President -userPassword: Password1 -uid: SeamsteT -givenName: Torie -mail: SeamsteT@dc389f3c42ad495288e841e30bcf37cb.bitwarden.com -carLicense: XERBD7 -departmentNumber: 6273 -employeeType: Contract -homePhone: +1 510 477-3375 -initials: T. S. -mobile: +1 510 378-9266 -pager: +1 510 735-3845 -roomNumber: 9447 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rajinderpal Mattson -sn: Mattson -description: This is Rajinderpal Mattson's description -facsimileTelephoneNumber: +1 510 613-5543 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 881-9987 -title: Supreme Product Testing Director -userPassword: Password1 -uid: MattsonR -givenName: Rajinderpal -mail: MattsonR@8225e046db804e04b9a2cde5ffe23088.bitwarden.com -carLicense: MOAMU5 -departmentNumber: 1780 -employeeType: Normal -homePhone: +1 510 757-6226 -initials: R. M. -mobile: +1 510 414-4428 -pager: +1 510 761-3413 -roomNumber: 8683 -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Louella Plmcoop -sn: Plmcoop -description: This is Louella Plmcoop's description -facsimileTelephoneNumber: +1 415 993-1209 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 543-2519 -title: Junior Human Resources Visionary -userPassword: Password1 -uid: PlmcoopL -givenName: Louella -mail: PlmcoopL@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com -carLicense: FLO7S6 -departmentNumber: 5499 -employeeType: Employee -homePhone: +1 415 400-6828 -initials: L. P. -mobile: +1 415 400-5848 -pager: +1 415 715-8793 -roomNumber: 9695 -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Benoit Heilsnis,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benoit Heilsnis -sn: Heilsnis -description: This is Benoit Heilsnis's description -facsimileTelephoneNumber: +1 213 806-3488 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 280-4278 -title: Master Management Visionary -userPassword: Password1 -uid: HeilsniB -givenName: Benoit -mail: HeilsniB@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com -carLicense: A29MMK -departmentNumber: 2623 -employeeType: Contract -homePhone: +1 213 237-4424 -initials: B. H. -mobile: +1 213 530-1792 -pager: +1 213 784-8946 -roomNumber: 9787 -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com - -dn: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madalyn Timmons -sn: Timmons -description: This is Madalyn Timmons's description -facsimileTelephoneNumber: +1 818 483-5036 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 598-5390 -title: Associate Administrative Dictator -userPassword: Password1 -uid: TimmonsM -givenName: Madalyn -mail: TimmonsM@d5949360307842458664ec19684f5fbf.bitwarden.com -carLicense: RGGOQP -departmentNumber: 1014 -employeeType: Contract -homePhone: +1 818 281-5858 -initials: M. T. -mobile: +1 818 704-1342 -pager: +1 818 355-4281 -roomNumber: 9270 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frinel Reiser -sn: Reiser -description: This is Frinel Reiser's description -facsimileTelephoneNumber: +1 213 913-7941 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 317-7032 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: ReiserF -givenName: Frinel -mail: ReiserF@4038f35398434f35b757e53f593f7609.bitwarden.com -carLicense: 4CB4MQ -departmentNumber: 1421 -employeeType: Contract -homePhone: +1 213 366-7487 -initials: F. R. -mobile: +1 213 492-1997 -pager: +1 213 207-3879 -roomNumber: 8455 -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tara LeBlanc -sn: LeBlanc -description: This is Tara LeBlanc's description -facsimileTelephoneNumber: +1 415 646-9020 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 246-1736 -title: Supreme Product Testing Visionary -userPassword: Password1 -uid: LeBlancT -givenName: Tara -mail: LeBlancT@59110a8eb1b44c7887a8222252c623b1.bitwarden.com -carLicense: BA1PCO -departmentNumber: 5482 -employeeType: Employee -homePhone: +1 415 542-9084 -initials: T. L. -mobile: +1 415 909-8673 -pager: +1 415 223-4467 -roomNumber: 8564 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harish Shukor -sn: Shukor -description: This is Harish Shukor's description -facsimileTelephoneNumber: +1 804 476-4630 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 600-5189 -title: Supreme Administrative Artist -userPassword: Password1 -uid: ShukorH -givenName: Harish -mail: ShukorH@e94b60e385324317a966bf045a1adf9b.bitwarden.com -carLicense: X0FL5T -departmentNumber: 8833 -employeeType: Normal -homePhone: +1 804 696-1761 -initials: H. S. -mobile: +1 804 112-3009 -pager: +1 804 154-5915 -roomNumber: 9518 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Felice Hazenboom,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felice Hazenboom -sn: Hazenboom -description: This is Felice Hazenboom's description -facsimileTelephoneNumber: +1 213 990-8610 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 230-6853 -title: Chief Management Mascot -userPassword: Password1 -uid: HazenboF -givenName: Felice -mail: HazenboF@f77e0f58a0a6420b98bdf66cba559331.bitwarden.com -carLicense: GBEXI7 -departmentNumber: 1549 -employeeType: Normal -homePhone: +1 213 965-4362 -initials: F. H. -mobile: +1 213 698-8814 -pager: +1 213 592-6583 -roomNumber: 8459 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorna Kreimer -sn: Kreimer -description: This is Lorna Kreimer's description -facsimileTelephoneNumber: +1 213 656-9720 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 188-1368 -title: Master Management Admin -userPassword: Password1 -uid: KreimerL -givenName: Lorna -mail: KreimerL@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com -carLicense: O7K6Y2 -departmentNumber: 6195 -employeeType: Contract -homePhone: +1 213 232-1556 -initials: L. K. -mobile: +1 213 566-6837 -pager: +1 213 100-1894 -roomNumber: 8947 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raoul VieillardBaron -sn: VieillardBaron -description: This is Raoul VieillardBaron's description -facsimileTelephoneNumber: +1 510 149-5601 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 542-7633 -title: Master Payroll Technician -userPassword: Password1 -uid: VieillaR -givenName: Raoul -mail: VieillaR@9631cf83572b457187e3e13135609236.bitwarden.com -carLicense: 8AT4T6 -departmentNumber: 8383 -employeeType: Employee -homePhone: +1 510 747-7972 -initials: R. V. -mobile: +1 510 988-6624 -pager: +1 510 826-5721 -roomNumber: 8777 -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rheal Lauten -sn: Lauten -description: This is Rheal Lauten's description -facsimileTelephoneNumber: +1 818 280-4775 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 966-6456 -title: Associate Management Developer -userPassword: Password1 -uid: LautenR -givenName: Rheal -mail: LautenR@52c6c82549d445678721da442aca8e53.bitwarden.com -carLicense: 0PQ0FN -departmentNumber: 5191 -employeeType: Normal -homePhone: +1 818 865-1783 -initials: R. L. -mobile: +1 818 204-6391 -pager: +1 818 993-2338 -roomNumber: 8299 -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivi Vexler -sn: Vexler -description: This is Vivi Vexler's description -facsimileTelephoneNumber: +1 818 461-9669 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 464-4687 -title: Supreme Human Resources Director -userPassword: Password1 -uid: VexlerV -givenName: Vivi -mail: VexlerV@655d3e1ee97a47bbb182f0f8f120b20e.bitwarden.com -carLicense: SHKTKN -departmentNumber: 3136 -employeeType: Contract -homePhone: +1 818 207-8941 -initials: V. V. -mobile: +1 818 852-4226 -pager: +1 818 184-9570 -roomNumber: 8765 -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Timothy KnesMaxwell -sn: KnesMaxwell -description: This is Timothy KnesMaxwell's description -facsimileTelephoneNumber: +1 510 398-4281 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 159-1819 -title: Associate Peons Figurehead -userPassword: Password1 -uid: KnesMaxT -givenName: Timothy -mail: KnesMaxT@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com -carLicense: Y7QVA4 -departmentNumber: 3534 -employeeType: Employee -homePhone: +1 510 727-9419 -initials: T. K. -mobile: +1 510 975-3114 -pager: +1 510 143-4521 -roomNumber: 9435 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leigha Elwood,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leigha Elwood -sn: Elwood -description: This is Leigha Elwood's description -facsimileTelephoneNumber: +1 510 333-2616 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 744-1312 -title: Master Payroll Consultant -userPassword: Password1 -uid: ElwoodL -givenName: Leigha -mail: ElwoodL@218c25dbb17f4d33a804e7f553e646ad.bitwarden.com -carLicense: FGNX55 -departmentNumber: 2853 -employeeType: Employee -homePhone: +1 510 988-1815 -initials: L. E. -mobile: +1 510 207-2441 -pager: +1 510 100-5903 -roomNumber: 8041 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Basia Smyth -sn: Smyth -description: This is Basia Smyth's description -facsimileTelephoneNumber: +1 804 691-6355 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 564-9810 -title: Supreme Peons Czar -userPassword: Password1 -uid: SmythB -givenName: Basia -mail: SmythB@a08e5c7ab6bd42a9af2ba6fcd91cbe9f.bitwarden.com -carLicense: 944YCR -departmentNumber: 5381 -employeeType: Contract -homePhone: +1 804 941-4080 -initials: B. S. -mobile: +1 804 888-3485 -pager: +1 804 360-3745 -roomNumber: 8972 -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilberta Doshi -sn: Doshi -description: This is Gilberta Doshi's description -facsimileTelephoneNumber: +1 415 766-7337 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 549-8119 -title: Junior Product Testing Sales Rep -userPassword: Password1 -uid: DoshiG -givenName: Gilberta -mail: DoshiG@ab4945aa25ed4d9d93fe1199c4fd7f3e.bitwarden.com -carLicense: VISJ9A -departmentNumber: 7562 -employeeType: Employee -homePhone: +1 415 436-5430 -initials: G. D. -mobile: +1 415 623-9928 -pager: +1 415 266-5594 -roomNumber: 9824 -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mario Cassidy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mario Cassidy -sn: Cassidy -description: This is Mario Cassidy's description -facsimileTelephoneNumber: +1 415 449-4430 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 859-7756 -title: Master Product Testing Artist -userPassword: Password1 -uid: CassidyM -givenName: Mario -mail: CassidyM@263d73d48ee5419ea1c676473e08abd9.bitwarden.com -carLicense: 4NVN4U -departmentNumber: 9482 -employeeType: Contract -homePhone: +1 415 147-9030 -initials: M. C. -mobile: +1 415 312-6213 -pager: +1 415 576-5803 -roomNumber: 8710 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Amy Rafol,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amy Rafol -sn: Rafol -description: This is Amy Rafol's description -facsimileTelephoneNumber: +1 818 543-9739 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 818 289-8622 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: RafolA -givenName: Amy -mail: RafolA@5a6fbc14dafa43aa8f4929e962d562ff.bitwarden.com -carLicense: 5UUI0O -departmentNumber: 1762 -employeeType: Contract -homePhone: +1 818 970-1776 -initials: A. R. -mobile: +1 818 970-1709 -pager: +1 818 172-1613 -roomNumber: 9542 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lennart Shultz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lennart Shultz -sn: Shultz -description: This is Lennart Shultz's description -facsimileTelephoneNumber: +1 818 522-9643 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 730-9217 -title: Master Payroll Writer -userPassword: Password1 -uid: ShultzL -givenName: Lennart -mail: ShultzL@e06a3ea69e0543f694c26fcc29d8e66a.bitwarden.com -carLicense: 6M51O6 -departmentNumber: 8699 -employeeType: Normal -homePhone: +1 818 166-6980 -initials: L. S. -mobile: +1 818 753-3488 -pager: +1 818 636-5202 -roomNumber: 8684 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sherwood Caton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherwood Caton -sn: Caton -description: This is Sherwood Caton's description -facsimileTelephoneNumber: +1 818 742-3447 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 418-4637 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: CatonS -givenName: Sherwood -mail: CatonS@b6cc594207744e52965d98de10453ef4.bitwarden.com -carLicense: 5NMIOO -departmentNumber: 3366 -employeeType: Contract -homePhone: +1 818 258-6588 -initials: S. C. -mobile: +1 818 992-4281 -pager: +1 818 538-2900 -roomNumber: 8405 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tesa Suprick -sn: Suprick -description: This is Tesa Suprick's description -facsimileTelephoneNumber: +1 804 327-7038 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 126-1781 -title: Supreme Management Warrior -userPassword: Password1 -uid: SuprickT -givenName: Tesa -mail: SuprickT@ff246c4446e74d80b9a0be3db943a949.bitwarden.com -carLicense: W3NKRN -departmentNumber: 1945 -employeeType: Employee -homePhone: +1 804 802-5790 -initials: T. S. -mobile: +1 804 556-6427 -pager: +1 804 522-5953 -roomNumber: 8313 -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maryl Fleugel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryl Fleugel -sn: Fleugel -description: This is Maryl Fleugel's description -facsimileTelephoneNumber: +1 510 671-7708 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 274-9868 -title: Supreme Peons Engineer -userPassword: Password1 -uid: FleugelM -givenName: Maryl -mail: FleugelM@3b31b1e22b674d48829733c162895a88.bitwarden.com -carLicense: N3D3OC -departmentNumber: 7230 -employeeType: Normal -homePhone: +1 510 912-5180 -initials: M. F. -mobile: +1 510 615-3421 -pager: +1 510 611-2965 -roomNumber: 9841 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarine Hauge -sn: Hauge -description: This is Clarine Hauge's description -facsimileTelephoneNumber: +1 206 279-6380 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 719-5924 -title: Associate Peons Director -userPassword: Password1 -uid: HaugeC -givenName: Clarine -mail: HaugeC@a774bfe9f410429f835439e7192aaefa.bitwarden.com -carLicense: BJH7OU -departmentNumber: 3194 -employeeType: Employee -homePhone: +1 206 708-6359 -initials: C. H. -mobile: +1 206 868-9503 -pager: +1 206 316-1350 -roomNumber: 9088 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cordy Ghossein,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cordy Ghossein -sn: Ghossein -description: This is Cordy Ghossein's description -facsimileTelephoneNumber: +1 408 555-6169 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 656-2811 -title: Junior Administrative Janitor -userPassword: Password1 -uid: GhosseiC -givenName: Cordy -mail: GhosseiC@dcff8ad1dc3f4785b5ae7b1adb2fe760.bitwarden.com -carLicense: 23241T -departmentNumber: 9413 -employeeType: Contract -homePhone: +1 408 312-4644 -initials: C. G. -mobile: +1 408 549-9212 -pager: +1 408 785-9327 -roomNumber: 9160 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Judith Fuqua -sn: Fuqua -description: This is Judith Fuqua's description -facsimileTelephoneNumber: +1 213 708-1793 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 549-1443 -title: Junior Peons Figurehead -userPassword: Password1 -uid: FuquaJ -givenName: Judith -mail: FuquaJ@7ac8324ed047496d93c460651ba38b86.bitwarden.com -carLicense: K603IJ -departmentNumber: 5996 -employeeType: Contract -homePhone: +1 213 145-8333 -initials: J. F. -mobile: +1 213 841-2072 -pager: +1 213 763-6583 -roomNumber: 8505 -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurine Boucher -sn: Boucher -description: This is Maurine Boucher's description -facsimileTelephoneNumber: +1 818 498-9009 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 477-9422 -title: Chief Product Testing Manager -userPassword: Password1 -uid: BoucherM -givenName: Maurine -mail: BoucherM@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com -carLicense: IGXUD1 -departmentNumber: 7554 -employeeType: Normal -homePhone: +1 818 779-7979 -initials: M. B. -mobile: +1 818 251-3320 -pager: +1 818 901-5046 -roomNumber: 9532 -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com - -dn: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Billie Shoulars -sn: Shoulars -description: This is Billie Shoulars's description -facsimileTelephoneNumber: +1 510 900-6953 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 684-7081 -title: Associate Product Development Madonna -userPassword: Password1 -uid: ShoularB -givenName: Billie -mail: ShoularB@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com -carLicense: YJCUYT -departmentNumber: 8629 -employeeType: Contract -homePhone: +1 510 294-3197 -initials: B. S. -mobile: +1 510 179-7615 -pager: +1 510 666-2247 -roomNumber: 9594 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trever Shearer -sn: Shearer -description: This is Trever Shearer's description -facsimileTelephoneNumber: +1 206 995-7661 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 697-3991 -title: Chief Janitorial Punk -userPassword: Password1 -uid: ShearerT -givenName: Trever -mail: ShearerT@5916185da56942a89544e9165bcd412d.bitwarden.com -carLicense: DSBW41 -departmentNumber: 9492 -employeeType: Employee -homePhone: +1 206 800-2258 -initials: T. S. -mobile: +1 206 211-9198 -pager: +1 206 285-2865 -roomNumber: 9325 -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jocelin Balakrishnan -sn: Balakrishnan -description: This is Jocelin Balakrishnan's description -facsimileTelephoneNumber: +1 206 423-5063 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 280-5475 -title: Supreme Payroll Janitor -userPassword: Password1 -uid: BalakriJ -givenName: Jocelin -mail: BalakriJ@14d1b49506834e5c9ccc77fc2529566f.bitwarden.com -carLicense: XUOBJN -departmentNumber: 6634 -employeeType: Normal -homePhone: +1 206 353-9961 -initials: J. B. -mobile: +1 206 499-8867 -pager: +1 206 636-5045 -roomNumber: 9240 -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jacquie Desilets,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquie Desilets -sn: Desilets -description: This is Jacquie Desilets's description -facsimileTelephoneNumber: +1 415 639-7286 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 884-8049 -title: Junior Product Development Engineer -userPassword: Password1 -uid: DesiletJ -givenName: Jacquie -mail: DesiletJ@19dd9c11e1e24ba5acf8058772d38ba6.bitwarden.com -carLicense: 7L65IH -departmentNumber: 5215 -employeeType: Contract -homePhone: +1 415 990-5275 -initials: J. D. -mobile: +1 415 992-8490 -pager: +1 415 533-4673 -roomNumber: 8839 -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Uday Hoffpauir -sn: Hoffpauir -description: This is Uday Hoffpauir's description -facsimileTelephoneNumber: +1 818 661-7221 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 879-5156 -title: Associate Administrative Manager -userPassword: Password1 -uid: HoffpauU -givenName: Uday -mail: HoffpauU@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com -carLicense: 4BI3C8 -departmentNumber: 6623 -employeeType: Employee -homePhone: +1 818 986-9200 -initials: U. H. -mobile: +1 818 393-6886 -pager: +1 818 931-8140 -roomNumber: 8478 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramiz Gung -sn: Gung -description: This is Ramiz Gung's description -facsimileTelephoneNumber: +1 510 756-6258 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 425-2848 -title: Junior Administrative Madonna -userPassword: Password1 -uid: GungR -givenName: Ramiz -mail: GungR@1bf42132d9e3428b965ff134eb4c90cb.bitwarden.com -carLicense: UL1FJ2 -departmentNumber: 6455 -employeeType: Contract -homePhone: +1 510 850-1874 -initials: R. G. -mobile: +1 510 737-1730 -pager: +1 510 640-6625 -roomNumber: 8267 -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Windy Sadeghi -sn: Sadeghi -description: This is Windy Sadeghi's description -facsimileTelephoneNumber: +1 804 253-5991 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 915-7564 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: SadeghiW -givenName: Windy -mail: SadeghiW@b9931a18cd464837927f1e3fda3b9311.bitwarden.com -carLicense: A7PXET -departmentNumber: 1142 -employeeType: Employee -homePhone: +1 804 950-5178 -initials: W. S. -mobile: +1 804 496-8325 -pager: +1 804 409-6993 -roomNumber: 9859 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: QuangTrung Worsley -sn: Worsley -description: This is QuangTrung Worsley's description -facsimileTelephoneNumber: +1 415 771-2349 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 886-2609 -title: Supreme Human Resources Consultant -userPassword: Password1 -uid: WorsleyQ -givenName: QuangTrung -mail: WorsleyQ@29304bc9f76b483ca16f5ea531e7bcf1.bitwarden.com -carLicense: NV1BFW -departmentNumber: 3311 -employeeType: Employee -homePhone: +1 415 286-2555 -initials: Q. W. -mobile: +1 415 916-7155 -pager: +1 415 876-2134 -roomNumber: 9588 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassey Papp -sn: Papp -description: This is Cassey Papp's description -facsimileTelephoneNumber: +1 415 910-5130 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 356-8349 -title: Master Payroll Consultant -userPassword: Password1 -uid: PappC -givenName: Cassey -mail: PappC@8a0ffcfb089f41e2a9b8a526ad5a6649.bitwarden.com -carLicense: ORDJ65 -departmentNumber: 2959 -employeeType: Contract -homePhone: +1 415 407-6156 -initials: C. P. -mobile: +1 415 309-6369 -pager: +1 415 805-7869 -roomNumber: 8709 -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurelia Hann -sn: Hann -description: This is Aurelia Hann's description -facsimileTelephoneNumber: +1 213 312-8334 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 313-2852 -title: Supreme Human Resources Czar -userPassword: Password1 -uid: HannA -givenName: Aurelia -mail: HannA@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com -carLicense: GHXBCB -departmentNumber: 2883 -employeeType: Normal -homePhone: +1 213 141-1215 -initials: A. H. -mobile: +1 213 718-3480 -pager: +1 213 625-8820 -roomNumber: 8651 -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com - -dn: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saibal Bennatt -sn: Bennatt -description: This is Saibal Bennatt's description -facsimileTelephoneNumber: +1 213 658-6915 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 528-9188 -title: Junior Human Resources Admin -userPassword: Password1 -uid: BennattS -givenName: Saibal -mail: BennattS@8b0e9ea1f038436b807e98b4a43ebc09.bitwarden.com -carLicense: J4UJNT -departmentNumber: 2522 -employeeType: Normal -homePhone: +1 213 526-1111 -initials: S. B. -mobile: +1 213 767-9471 -pager: +1 213 493-7894 -roomNumber: 9017 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rani Korpela,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rani Korpela -sn: Korpela -description: This is Rani Korpela's description -facsimileTelephoneNumber: +1 408 683-4286 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 408 158-6399 -title: Master Product Testing Mascot -userPassword: Password1 -uid: KorpelaR -givenName: Rani -mail: KorpelaR@108017314a624d21908ec502dfe2ba35.bitwarden.com -carLicense: 6DBSNX -departmentNumber: 4774 -employeeType: Contract -homePhone: +1 408 817-7377 -initials: R. K. -mobile: +1 408 842-3261 -pager: +1 408 176-7266 -roomNumber: 9892 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com - -dn: cn=Danni Tsuji,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danni Tsuji -sn: Tsuji -description: This is Danni Tsuji's description -facsimileTelephoneNumber: +1 206 157-1313 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 463-6182 -title: Supreme Product Testing President -userPassword: Password1 -uid: TsujiD -givenName: Danni -mail: TsujiD@74874b1f59f14645addb6739912642a5.bitwarden.com -carLicense: L63T5P -departmentNumber: 6140 -employeeType: Normal -homePhone: +1 206 372-6035 -initials: D. T. -mobile: +1 206 776-6812 -pager: +1 206 550-9436 -roomNumber: 8047 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fredia Handschy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fredia Handschy -sn: Handschy -description: This is Fredia Handschy's description -facsimileTelephoneNumber: +1 408 209-6945 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 408 897-3090 -title: Master Human Resources Director -userPassword: Password1 -uid: HandschF -givenName: Fredia -mail: HandschF@75222612f09a48669122f28219f497da.bitwarden.com -carLicense: 71NL6M -departmentNumber: 7421 -employeeType: Contract -homePhone: +1 408 112-3718 -initials: F. H. -mobile: +1 408 680-9062 -pager: +1 408 107-8994 -roomNumber: 8984 -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Verna Muldoon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verna Muldoon -sn: Muldoon -description: This is Verna Muldoon's description -facsimileTelephoneNumber: +1 415 460-9862 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 646-4231 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: MuldoonV -givenName: Verna -mail: MuldoonV@0fc5b098eca54d018d5f544f351b55a0.bitwarden.com -carLicense: HJDPC9 -departmentNumber: 2272 -employeeType: Employee -homePhone: +1 415 850-9553 -initials: V. M. -mobile: +1 415 490-4862 -pager: +1 415 429-2273 -roomNumber: 8164 -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bjorn Treen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bjorn Treen -sn: Treen -description: This is Bjorn Treen's description -facsimileTelephoneNumber: +1 408 390-8685 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 857-6251 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: TreenB -givenName: Bjorn -mail: TreenB@1328e218756d4754a97476c1079975d2.bitwarden.com -carLicense: DIXNDC -departmentNumber: 4977 -employeeType: Employee -homePhone: +1 408 680-4212 -initials: B. T. -mobile: +1 408 651-1060 -pager: +1 408 726-6312 -roomNumber: 9030 -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Omayma Dekeyser -sn: Dekeyser -description: This is Omayma Dekeyser's description -facsimileTelephoneNumber: +1 408 205-8531 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 189-3552 -title: Junior Payroll President -userPassword: Password1 -uid: DekeyseO -givenName: Omayma -mail: DekeyseO@9bf9dafac536489a824f4a8be21bc745.bitwarden.com -carLicense: 6E28R4 -departmentNumber: 3326 -employeeType: Employee -homePhone: +1 408 231-8335 -initials: O. D. -mobile: +1 408 197-4141 -pager: +1 408 250-3852 -roomNumber: 8503 -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Garth Callery,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Garth Callery -sn: Callery -description: This is Garth Callery's description -facsimileTelephoneNumber: +1 213 544-9479 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 564-9615 -title: Supreme Payroll Czar -userPassword: Password1 -uid: CalleryG -givenName: Garth -mail: CalleryG@b4277bbde59048f39a27a7d14145a06f.bitwarden.com -carLicense: 9QVY7N -departmentNumber: 6786 -employeeType: Normal -homePhone: +1 213 448-5667 -initials: G. C. -mobile: +1 213 841-1026 -pager: +1 213 306-3830 -roomNumber: 8105 -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Livvie VanOorschot,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Livvie VanOorschot -sn: VanOorschot -description: This is Livvie VanOorschot's description -facsimileTelephoneNumber: +1 408 105-8128 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 171-8121 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: VanOorsL -givenName: Livvie -mail: VanOorsL@fd1544a938044a8db9c9f3fe2943b130.bitwarden.com -carLicense: FXBESI -departmentNumber: 9885 -employeeType: Normal -homePhone: +1 408 386-6801 -initials: L. V. -mobile: +1 408 557-9132 -pager: +1 408 547-3981 -roomNumber: 9339 -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anderson Hockaday -sn: Hockaday -description: This is Anderson Hockaday's description -facsimileTelephoneNumber: +1 408 975-9986 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 408 121-4217 -title: Associate Peons Figurehead -userPassword: Password1 -uid: HockadaA -givenName: Anderson -mail: HockadaA@1d41a9185db448b89563a6b96b582da2.bitwarden.com -carLicense: NCFIXA -departmentNumber: 4440 -employeeType: Employee -homePhone: +1 408 248-5722 -initials: A. H. -mobile: +1 408 953-3759 -pager: +1 408 913-8496 -roomNumber: 8252 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaia Archer -sn: Archer -description: This is Kaia Archer's description -facsimileTelephoneNumber: +1 408 282-8410 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 961-2634 -title: Junior Payroll Technician -userPassword: Password1 -uid: ArcherK -givenName: Kaia -mail: ArcherK@24654ed939354e3da65d9c0370b72da6.bitwarden.com -carLicense: 9HF5LU -departmentNumber: 9127 -employeeType: Contract -homePhone: +1 408 409-7457 -initials: K. A. -mobile: +1 408 610-8382 -pager: +1 408 829-8006 -roomNumber: 8973 -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bethany Buder -sn: Buder -description: This is Bethany Buder's description -facsimileTelephoneNumber: +1 206 371-4057 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 945-8854 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: BuderB -givenName: Bethany -mail: BuderB@010c83cd95d146b392f7ca822e61fa73.bitwarden.com -carLicense: Q75YP4 -departmentNumber: 7147 -employeeType: Contract -homePhone: +1 206 472-5418 -initials: B. B. -mobile: +1 206 470-3039 -pager: +1 206 562-4997 -roomNumber: 8626 -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyssa Ranieri -sn: Ranieri -description: This is Lyssa Ranieri's description -facsimileTelephoneNumber: +1 510 819-2603 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 219-9360 -title: Associate Product Development Czar -userPassword: Password1 -uid: RanieriL -givenName: Lyssa -mail: RanieriL@c03f4de271664bdb800593169930d556.bitwarden.com -carLicense: E46QT7 -departmentNumber: 5976 -employeeType: Contract -homePhone: +1 510 182-1884 -initials: L. R. -mobile: +1 510 192-3197 -pager: +1 510 759-3123 -roomNumber: 8497 -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willie Godse -sn: Godse -description: This is Willie Godse's description -facsimileTelephoneNumber: +1 818 598-3021 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 818 694-7190 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: GodseW -givenName: Willie -mail: GodseW@f75201d6bca8489ca55858f0848a1669.bitwarden.com -carLicense: 0M41DL -departmentNumber: 6808 -employeeType: Contract -homePhone: +1 818 990-5140 -initials: W. G. -mobile: +1 818 161-6515 -pager: +1 818 506-4205 -roomNumber: 9801 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nichole Shurtleff -sn: Shurtleff -description: This is Nichole Shurtleff's description -facsimileTelephoneNumber: +1 206 634-3727 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 206 483-8548 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: ShurtleN -givenName: Nichole -mail: ShurtleN@cb6528fc9c7340cb803e788c0a111c6f.bitwarden.com -carLicense: TAG1W6 -departmentNumber: 5649 -employeeType: Employee -homePhone: +1 206 855-6609 -initials: N. S. -mobile: +1 206 309-8506 -pager: +1 206 104-4302 -roomNumber: 8862 -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaye Tjia -sn: Tjia -description: This is Gaye Tjia's description -facsimileTelephoneNumber: +1 415 891-2884 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 898-5690 -title: Master Payroll Evangelist -userPassword: Password1 -uid: TjiaG -givenName: Gaye -mail: TjiaG@a85c3929256747e4a90337c3ba0f9538.bitwarden.com -carLicense: 7O532O -departmentNumber: 7848 -employeeType: Employee -homePhone: +1 415 820-6696 -initials: G. T. -mobile: +1 415 163-6683 -pager: +1 415 878-1919 -roomNumber: 8280 -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valencia Claise -sn: Claise -description: This is Valencia Claise's description -facsimileTelephoneNumber: +1 213 390-5471 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 635-8343 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: ClaiseV -givenName: Valencia -mail: ClaiseV@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com -carLicense: W3R7EE -departmentNumber: 4128 -employeeType: Normal -homePhone: +1 213 779-5606 -initials: V. C. -mobile: +1 213 347-3505 -pager: +1 213 973-5763 -roomNumber: 9738 -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loria Buckley -sn: Buckley -description: This is Loria Buckley's description -facsimileTelephoneNumber: +1 408 282-7599 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 408 777-8632 -title: Chief Administrative Grunt -userPassword: Password1 -uid: BuckleyL -givenName: Loria -mail: BuckleyL@cfdd74fbc82d447189196d6325d87684.bitwarden.com -carLicense: 9X0PMC -departmentNumber: 7144 -employeeType: Contract -homePhone: +1 408 845-4142 -initials: L. B. -mobile: +1 408 896-5654 -pager: +1 408 965-3227 -roomNumber: 9716 -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christiane Sydoryk -sn: Sydoryk -description: This is Christiane Sydoryk's description -facsimileTelephoneNumber: +1 415 401-5792 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 356-9500 -title: Associate Payroll Developer -userPassword: Password1 -uid: SydorykC -givenName: Christiane -mail: SydorykC@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com -carLicense: 24BRJO -departmentNumber: 4355 -employeeType: Employee -homePhone: +1 415 605-3500 -initials: C. S. -mobile: +1 415 255-3748 -pager: +1 415 285-2642 -roomNumber: 9297 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shahram Campeau -sn: Campeau -description: This is Shahram Campeau's description -facsimileTelephoneNumber: +1 213 297-1926 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 791-6235 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: CampeauS -givenName: Shahram -mail: CampeauS@81fb0b932b3945ce818faf5c44a57597.bitwarden.com -carLicense: FGEAN4 -departmentNumber: 7502 -employeeType: Employee -homePhone: +1 213 879-6305 -initials: S. C. -mobile: +1 213 315-4693 -pager: +1 213 427-4935 -roomNumber: 8934 -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fanchette Zaman -sn: Zaman -description: This is Fanchette Zaman's description -facsimileTelephoneNumber: +1 818 897-9094 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 183-7654 -title: Master Administrative Consultant -userPassword: Password1 -uid: ZamanF -givenName: Fanchette -mail: ZamanF@520f892e74614b6eaf9cfa5ff5ab84c6.bitwarden.com -carLicense: T2I17P -departmentNumber: 4873 -employeeType: Employee -homePhone: +1 818 726-5940 -initials: F. Z. -mobile: +1 818 159-2563 -pager: +1 818 235-3733 -roomNumber: 8472 -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Junk Nishith -sn: Nishith -description: This is Junk Nishith's description -facsimileTelephoneNumber: +1 415 420-7634 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 322-6938 -title: Chief Peons Stooge -userPassword: Password1 -uid: NishithJ -givenName: Junk -mail: NishithJ@1177792fc11347bea581d955434fd518.bitwarden.com -carLicense: 1B7FL5 -departmentNumber: 1346 -employeeType: Employee -homePhone: +1 415 217-6007 -initials: J. N. -mobile: +1 415 520-4281 -pager: +1 415 229-5875 -roomNumber: 8010 -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bennett Biage -sn: Biage -description: This is Bennett Biage's description -facsimileTelephoneNumber: +1 213 569-2509 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 814-9010 -title: Chief Peons Warrior -userPassword: Password1 -uid: BiageB -givenName: Bennett -mail: BiageB@cffeb78804aa490585f0a6cc8cbc0f74.bitwarden.com -carLicense: 04M83L -departmentNumber: 8422 -employeeType: Employee -homePhone: +1 213 649-9318 -initials: B. B. -mobile: +1 213 164-6670 -pager: +1 213 975-8538 -roomNumber: 9084 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Klazien Propes,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klazien Propes -sn: Propes -description: This is Klazien Propes's description -facsimileTelephoneNumber: +1 415 717-3895 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 415 801-6196 -title: Chief Payroll Grunt -userPassword: Password1 -uid: PropesK -givenName: Klazien -mail: PropesK@dd687ab076584ccca8478641e789ca39.bitwarden.com -carLicense: YQ2KDO -departmentNumber: 7846 -employeeType: Normal -homePhone: +1 415 241-6726 -initials: K. P. -mobile: +1 415 961-5268 -pager: +1 415 907-7889 -roomNumber: 8791 -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kenneth DAnjou,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kenneth DAnjou -sn: DAnjou -description: This is Kenneth DAnjou's description -facsimileTelephoneNumber: +1 415 813-6625 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 591-3592 -title: Chief Peons Technician -userPassword: Password1 -uid: DAnjouK -givenName: Kenneth -mail: DAnjouK@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com -carLicense: 4A1H2K -departmentNumber: 4303 -employeeType: Contract -homePhone: +1 415 274-2950 -initials: K. D. -mobile: +1 415 958-3506 -pager: +1 415 944-9169 -roomNumber: 9447 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Parviz Shahen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parviz Shahen -sn: Shahen -description: This is Parviz Shahen's description -facsimileTelephoneNumber: +1 213 809-1692 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 264-6876 -title: Associate Janitorial President -userPassword: Password1 -uid: ShahenP -givenName: Parviz -mail: ShahenP@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com -carLicense: 4B9H98 -departmentNumber: 6122 -employeeType: Normal -homePhone: +1 213 825-8863 -initials: P. S. -mobile: +1 213 611-9199 -pager: +1 213 655-1537 -roomNumber: 8855 -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veda Hunsucker -sn: Hunsucker -description: This is Veda Hunsucker's description -facsimileTelephoneNumber: +1 415 441-3782 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 759-1804 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: HunsuckV -givenName: Veda -mail: HunsuckV@e6b52be13e984c2c8799a67382d2c196.bitwarden.com -carLicense: Q0HF0G -departmentNumber: 9406 -employeeType: Normal -homePhone: +1 415 207-4918 -initials: V. H. -mobile: +1 415 877-6444 -pager: +1 415 428-7682 -roomNumber: 8526 -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coleen Litherland -sn: Litherland -description: This is Coleen Litherland's description -facsimileTelephoneNumber: +1 415 509-5713 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 542-8198 -title: Associate Janitorial Visionary -userPassword: Password1 -uid: LitherlC -givenName: Coleen -mail: LitherlC@8a82552e24c34c32a05d56cde3562a9e.bitwarden.com -carLicense: VE855W -departmentNumber: 6842 -employeeType: Contract -homePhone: +1 415 197-4194 -initials: C. L. -mobile: +1 415 241-2567 -pager: +1 415 223-9057 -roomNumber: 8208 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChongLai Hingtgen -sn: Hingtgen -description: This is ChongLai Hingtgen's description -facsimileTelephoneNumber: +1 804 109-9103 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 712-2527 -title: Junior Management Visionary -userPassword: Password1 -uid: HingtgeC -givenName: ChongLai -mail: HingtgeC@411afe1416f249ecaeca51c1080b0066.bitwarden.com -carLicense: VYI6SP -departmentNumber: 6851 -employeeType: Normal -homePhone: +1 804 458-7199 -initials: C. H. -mobile: +1 804 905-2333 -pager: +1 804 495-8494 -roomNumber: 9570 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Izabel Heeralall -sn: Heeralall -description: This is Izabel Heeralall's description -facsimileTelephoneNumber: +1 415 228-7254 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 671-9180 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: HeeralaI -givenName: Izabel -mail: HeeralaI@86e5c38e7f5c41538bf306ddacec173d.bitwarden.com -carLicense: 76EUVI -departmentNumber: 8085 -employeeType: Normal -homePhone: +1 415 121-9905 -initials: I. H. -mobile: +1 415 941-7638 -pager: +1 415 680-4463 -roomNumber: 9535 -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rueben Dynie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rueben Dynie -sn: Dynie -description: This is Rueben Dynie's description -facsimileTelephoneNumber: +1 408 492-8443 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 400-6611 -title: Junior Product Development Admin -userPassword: Password1 -uid: DynieR -givenName: Rueben -mail: DynieR@59b31ced00714ba083da3568d5c3fc53.bitwarden.com -carLicense: 1M9C3W -departmentNumber: 1617 -employeeType: Employee -homePhone: +1 408 148-2278 -initials: R. D. -mobile: +1 408 535-2710 -pager: +1 408 623-2080 -roomNumber: 9247 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lolita Mecteau -sn: Mecteau -description: This is Lolita Mecteau's description -facsimileTelephoneNumber: +1 213 689-3390 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 307-2543 -title: Chief Payroll Grunt -userPassword: Password1 -uid: MecteauL -givenName: Lolita -mail: MecteauL@15e1dad937154f5596069e31511d5e99.bitwarden.com -carLicense: A5DID4 -departmentNumber: 1015 -employeeType: Employee -homePhone: +1 213 199-1071 -initials: L. M. -mobile: +1 213 110-4713 -pager: +1 213 145-4492 -roomNumber: 9841 -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gunars Rafflin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gunars Rafflin -sn: Rafflin -description: This is Gunars Rafflin's description -facsimileTelephoneNumber: +1 206 967-5945 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 805-8862 -title: Associate Product Development Mascot -userPassword: Password1 -uid: RafflinG -givenName: Gunars -mail: RafflinG@781f1406846947ac8e77d85a552d214c.bitwarden.com -carLicense: EAHGK5 -departmentNumber: 4202 -employeeType: Normal -homePhone: +1 206 820-5957 -initials: G. R. -mobile: +1 206 961-4663 -pager: +1 206 886-7476 -roomNumber: 8214 -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Thad Besnier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thad Besnier -sn: Besnier -description: This is Thad Besnier's description -facsimileTelephoneNumber: +1 510 858-1238 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 680-7377 -title: Master Human Resources Assistant -userPassword: Password1 -uid: BesnierT -givenName: Thad -mail: BesnierT@86960440b39e484991dab5509dd065da.bitwarden.com -carLicense: QEYGMQ -departmentNumber: 5174 -employeeType: Employee -homePhone: +1 510 300-8189 -initials: T. B. -mobile: +1 510 891-3604 -pager: +1 510 387-8838 -roomNumber: 8446 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leonard Ireland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonard Ireland -sn: Ireland -description: This is Leonard Ireland's description -facsimileTelephoneNumber: +1 818 990-8640 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 802-9392 -title: Supreme Janitorial Figurehead -userPassword: Password1 -uid: IrelandL -givenName: Leonard -mail: IrelandL@6fb157970cd743f9add2879c395cda3d.bitwarden.com -carLicense: N135JU -departmentNumber: 1942 -employeeType: Employee -homePhone: +1 818 950-6934 -initials: L. I. -mobile: +1 818 907-4356 -pager: +1 818 826-6570 -roomNumber: 9136 -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jany Lotz -sn: Lotz -description: This is Jany Lotz's description -facsimileTelephoneNumber: +1 804 155-1453 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 804 641-3907 -title: Associate Product Testing Architect -userPassword: Password1 -uid: LotzJ -givenName: Jany -mail: LotzJ@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com -carLicense: XGSKW4 -departmentNumber: 5519 -employeeType: Contract -homePhone: +1 804 345-9705 -initials: J. L. -mobile: +1 804 331-1379 -pager: +1 804 496-8841 -roomNumber: 9872 -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aretha Mensinkai -sn: Mensinkai -description: This is Aretha Mensinkai's description -facsimileTelephoneNumber: +1 206 404-2397 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 191-8766 -title: Master Product Testing Vice President -userPassword: Password1 -uid: MensinkA -givenName: Aretha -mail: MensinkA@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com -carLicense: LFHLE5 -departmentNumber: 7607 -employeeType: Contract -homePhone: +1 206 382-8563 -initials: A. M. -mobile: +1 206 974-9508 -pager: +1 206 637-9012 -roomNumber: 8320 -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sultan Sergo -sn: Sergo -description: This is Sultan Sergo's description -facsimileTelephoneNumber: +1 213 652-6031 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 551-2106 -title: Master Human Resources Fellow -userPassword: Password1 -uid: SergoS -givenName: Sultan -mail: SergoS@08adbe0d28a046d4a737480e8f7a8864.bitwarden.com -carLicense: CUDWBI -departmentNumber: 5926 -employeeType: Normal -homePhone: +1 213 870-4250 -initials: S. S. -mobile: +1 213 857-5643 -pager: +1 213 823-8566 -roomNumber: 8545 -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninnetta Luzarraga -sn: Luzarraga -description: This is Ninnetta Luzarraga's description -facsimileTelephoneNumber: +1 510 796-4346 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 894-1354 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: LuzarraN -givenName: Ninnetta -mail: LuzarraN@38fa64796bc14d52bff67c18f15afb33.bitwarden.com -carLicense: 5UY9W3 -departmentNumber: 9395 -employeeType: Employee -homePhone: +1 510 688-3649 -initials: N. L. -mobile: +1 510 538-7875 -pager: +1 510 879-9646 -roomNumber: 9888 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxana VandenHeuvel -sn: VandenHeuvel -description: This is Roxana VandenHeuvel's description -facsimileTelephoneNumber: +1 206 196-6160 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 206 131-1596 -title: Chief Human Resources Warrior -userPassword: Password1 -uid: VandenHR -givenName: Roxana -mail: VandenHR@ba6a021b4ab04e618e804649a47d46ad.bitwarden.com -carLicense: M79ED5 -departmentNumber: 9432 -employeeType: Employee -homePhone: +1 206 426-7848 -initials: R. V. -mobile: +1 206 370-1636 -pager: +1 206 762-1743 -roomNumber: 8881 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erena Mersinger -sn: Mersinger -description: This is Erena Mersinger's description -facsimileTelephoneNumber: +1 818 122-8359 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 298-7364 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: MersingE -givenName: Erena -mail: MersingE@7670182abb394f41a5633ad118cf9427.bitwarden.com -carLicense: J2RV3Q -departmentNumber: 4658 -employeeType: Contract -homePhone: +1 818 152-3971 -initials: E. M. -mobile: +1 818 416-7811 -pager: +1 818 416-5955 -roomNumber: 8729 -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nitin Operators -sn: Operators -description: This is Nitin Operators's description -facsimileTelephoneNumber: +1 804 653-2448 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 863-2785 -title: Master Product Development Warrior -userPassword: Password1 -uid: OperatoN -givenName: Nitin -mail: OperatoN@158d3f3fe926431185097653519b63f6.bitwarden.com -carLicense: 31BECJ -departmentNumber: 5723 -employeeType: Normal -homePhone: +1 804 900-5197 -initials: N. O. -mobile: +1 804 178-2396 -pager: +1 804 402-1314 -roomNumber: 9968 -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hennrietta Siewert -sn: Siewert -description: This is Hennrietta Siewert's description -facsimileTelephoneNumber: +1 408 635-6498 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 752-4471 -title: Master Management Fellow -userPassword: Password1 -uid: SiewertH -givenName: Hennrietta -mail: SiewertH@c91f0550b80f407f9309a7740af038d8.bitwarden.com -carLicense: 9H6EM6 -departmentNumber: 5015 -employeeType: Contract -homePhone: +1 408 516-4074 -initials: H. S. -mobile: +1 408 470-8047 -pager: +1 408 733-3090 -roomNumber: 9498 -secretary: cn=Mimi Mufti,ou=Peons,dc=bitwarden, dc=com -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanRoch Kosturik -sn: Kosturik -description: This is JeanRoch Kosturik's description -facsimileTelephoneNumber: +1 213 218-1107 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 482-1027 -title: Master Human Resources Admin -userPassword: Password1 -uid: KosturiJ -givenName: JeanRoch -mail: KosturiJ@fa1af835a33740e2a57a5bcf70758d5b.bitwarden.com -carLicense: DSD47U -departmentNumber: 2706 -employeeType: Contract -homePhone: +1 213 858-1591 -initials: J. K. -mobile: +1 213 619-3775 -pager: +1 213 582-2096 -roomNumber: 8216 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othelia Solodko -sn: Solodko -description: This is Othelia Solodko's description -facsimileTelephoneNumber: +1 206 887-7806 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 378-6582 -title: Master Peons Stooge -userPassword: Password1 -uid: SolodkoO -givenName: Othelia -mail: SolodkoO@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com -carLicense: I97FMK -departmentNumber: 4191 -employeeType: Employee -homePhone: +1 206 389-5729 -initials: O. S. -mobile: +1 206 857-6033 -pager: +1 206 290-3911 -roomNumber: 9096 -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huong Commazzi -sn: Commazzi -description: This is Huong Commazzi's description -facsimileTelephoneNumber: +1 206 221-5427 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 206 530-2229 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: CommazzH -givenName: Huong -mail: CommazzH@43a2075086314e66b15465a3ec778b06.bitwarden.com -carLicense: P7M55G -departmentNumber: 1370 -employeeType: Normal -homePhone: +1 206 133-4098 -initials: H. C. -mobile: +1 206 111-1315 -pager: +1 206 298-6219 -roomNumber: 9597 -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duljit Zbuda -sn: Zbuda -description: This is Duljit Zbuda's description -facsimileTelephoneNumber: +1 206 917-1194 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 160-2034 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: ZbudaD -givenName: Duljit -mail: ZbudaD@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com -carLicense: 7QS12C -departmentNumber: 3911 -employeeType: Normal -homePhone: +1 206 697-3498 -initials: D. Z. -mobile: +1 206 206-3973 -pager: +1 206 361-2140 -roomNumber: 8543 -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com - -dn: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thang Bushnell -sn: Bushnell -description: This is Thang Bushnell's description -facsimileTelephoneNumber: +1 818 803-9961 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 818 962-8352 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: BushnelT -givenName: Thang -mail: BushnelT@1ea928fc24024e4dbf51eb3081589728.bitwarden.com -carLicense: H7LL9F -departmentNumber: 3613 -employeeType: Employee -homePhone: +1 818 668-6735 -initials: T. B. -mobile: +1 818 485-4553 -pager: +1 818 782-4257 -roomNumber: 9287 -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carri Gary -sn: Gary -description: This is Carri Gary's description -facsimileTelephoneNumber: +1 415 359-9392 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 415 673-2219 -title: Associate Human Resources Artist -userPassword: Password1 -uid: GaryC -givenName: Carri -mail: GaryC@ca74af6c5dcc4f0b974e414c7310f581.bitwarden.com -carLicense: NT5S26 -departmentNumber: 9604 -employeeType: Employee -homePhone: +1 415 870-2568 -initials: C. G. -mobile: +1 415 909-8660 -pager: +1 415 998-4320 -roomNumber: 9810 -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vance Marschewaki -sn: Marschewaki -description: This is Vance Marschewaki's description -facsimileTelephoneNumber: +1 510 996-7027 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 420-5729 -title: Master Product Testing Janitor -userPassword: Password1 -uid: MarscheV -givenName: Vance -mail: MarscheV@92ea67fb39f84becbbf887d7485c3c5a.bitwarden.com -carLicense: 7K0K4Q -departmentNumber: 1412 -employeeType: Employee -homePhone: +1 510 976-9774 -initials: V. M. -mobile: +1 510 147-5464 -pager: +1 510 508-3807 -roomNumber: 8761 -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Valli Carlebach,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valli Carlebach -sn: Carlebach -description: This is Valli Carlebach's description -facsimileTelephoneNumber: +1 206 729-6166 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 607-4917 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: CarlebaV -givenName: Valli -mail: CarlebaV@01d1aca7cbb94392b78f9069af19437c.bitwarden.com -carLicense: 35LFLP -departmentNumber: 6636 -employeeType: Employee -homePhone: +1 206 938-9575 -initials: V. C. -mobile: +1 206 383-4807 -pager: +1 206 178-1927 -roomNumber: 9423 -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobb Lacosse -sn: Lacosse -description: This is Bobb Lacosse's description -facsimileTelephoneNumber: +1 206 738-6602 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 547-6285 -title: Chief Peons Figurehead -userPassword: Password1 -uid: LacosseB -givenName: Bobb -mail: LacosseB@468db28ee3ec432fadb0f7251c3b2864.bitwarden.com -carLicense: IATND9 -departmentNumber: 3379 -employeeType: Employee -homePhone: +1 206 406-9044 -initials: B. L. -mobile: +1 206 596-4696 -pager: +1 206 613-9297 -roomNumber: 9737 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brunhilda Smale -sn: Smale -description: This is Brunhilda Smale's description -facsimileTelephoneNumber: +1 206 487-8461 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 346-3212 -title: Master Janitorial Stooge -userPassword: Password1 -uid: SmaleB -givenName: Brunhilda -mail: SmaleB@67a50420f0564b4b9d502195a9eb7324.bitwarden.com -carLicense: FA6449 -departmentNumber: 2310 -employeeType: Normal -homePhone: +1 206 249-5504 -initials: B. S. -mobile: +1 206 426-9107 -pager: +1 206 172-9629 -roomNumber: 8081 -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Abby Presutti,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abby Presutti -sn: Presutti -description: This is Abby Presutti's description -facsimileTelephoneNumber: +1 408 118-1853 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 816-4582 -title: Chief Administrative Writer -userPassword: Password1 -uid: PresuttA -givenName: Abby -mail: PresuttA@886606fb40e04b00b9dac2bed959f0a3.bitwarden.com -carLicense: XKDCSM -departmentNumber: 9253 -employeeType: Normal -homePhone: +1 408 504-4076 -initials: A. P. -mobile: +1 408 319-4476 -pager: +1 408 358-3910 -roomNumber: 9515 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilsa Waugh -sn: Waugh -description: This is Ilsa Waugh's description -facsimileTelephoneNumber: +1 415 100-3632 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 768-8908 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: WaughI -givenName: Ilsa -mail: WaughI@7bb49167acf14fb699745413bf51b4ab.bitwarden.com -carLicense: P74F9G -departmentNumber: 2979 -employeeType: Normal -homePhone: +1 415 418-2967 -initials: I. W. -mobile: +1 415 442-4193 -pager: +1 415 849-3939 -roomNumber: 8295 -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cheuk Legrandvallet -sn: Legrandvallet -description: This is Cheuk Legrandvallet's description -facsimileTelephoneNumber: +1 804 684-1917 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 339-4071 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: LegrandC -givenName: Cheuk -mail: LegrandC@fec32bd067f043f9ace8cd549f8f376e.bitwarden.com -carLicense: 4LGAP2 -departmentNumber: 1042 -employeeType: Normal -homePhone: +1 804 863-4335 -initials: C. L. -mobile: +1 804 262-6236 -pager: +1 804 389-9588 -roomNumber: 9302 -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivie Lauson -sn: Lauson -description: This is Vivie Lauson's description -facsimileTelephoneNumber: +1 415 138-5006 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 595-7491 -title: Chief Janitorial Madonna -userPassword: Password1 -uid: LausonV -givenName: Vivie -mail: LausonV@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com -carLicense: 3YRXSC -departmentNumber: 4593 -employeeType: Normal -homePhone: +1 415 826-6726 -initials: V. L. -mobile: +1 415 737-2227 -pager: +1 415 357-7449 -roomNumber: 8217 -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luciana Gilliland -sn: Gilliland -description: This is Luciana Gilliland's description -facsimileTelephoneNumber: +1 213 190-4410 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 860-9648 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: GillilaL -givenName: Luciana -mail: GillilaL@5eb9182fed7b491098a3a7edcd1734b0.bitwarden.com -carLicense: Y62GKV -departmentNumber: 7149 -employeeType: Employee -homePhone: +1 213 411-2866 -initials: L. G. -mobile: +1 213 702-1742 -pager: +1 213 336-3286 -roomNumber: 8874 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Geraldine McLennan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geraldine McLennan -sn: McLennan -description: This is Geraldine McLennan's description -facsimileTelephoneNumber: +1 415 214-9713 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 573-9692 -title: Chief Management Czar -userPassword: Password1 -uid: McLennaG -givenName: Geraldine -mail: McLennaG@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com -carLicense: EYJ7K1 -departmentNumber: 3225 -employeeType: Normal -homePhone: +1 415 236-3717 -initials: G. M. -mobile: +1 415 400-3718 -pager: +1 415 492-5117 -roomNumber: 9679 -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glenda Lai -sn: Lai -description: This is Glenda Lai's description -facsimileTelephoneNumber: +1 213 277-7721 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 136-4643 -title: Chief Product Development Warrior -userPassword: Password1 -uid: LaiG -givenName: Glenda -mail: LaiG@ae53aabd10664b19a046cac496931fe5.bitwarden.com -carLicense: DDAHPD -departmentNumber: 2791 -employeeType: Contract -homePhone: +1 213 232-4054 -initials: G. L. -mobile: +1 213 562-4207 -pager: +1 213 316-9045 -roomNumber: 8200 -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lind Zeiger -sn: Zeiger -description: This is Lind Zeiger's description -facsimileTelephoneNumber: +1 804 939-5223 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 759-2538 -title: Junior Administrative Director -userPassword: Password1 -uid: ZeigerL -givenName: Lind -mail: ZeigerL@ac23a3efb4fc4c9b913a615742b5cec6.bitwarden.com -carLicense: 0VLB7J -departmentNumber: 9129 -employeeType: Normal -homePhone: +1 804 293-6829 -initials: L. Z. -mobile: +1 804 234-4567 -pager: +1 804 463-6224 -roomNumber: 9834 -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valina Raaflaub -sn: Raaflaub -description: This is Valina Raaflaub's description -facsimileTelephoneNumber: +1 408 207-5487 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 408 751-5726 -title: Associate Administrative Madonna -userPassword: Password1 -uid: RaaflauV -givenName: Valina -mail: RaaflauV@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com -carLicense: UXN009 -departmentNumber: 2635 -employeeType: Normal -homePhone: +1 408 374-4763 -initials: V. R. -mobile: +1 408 269-1240 -pager: +1 408 192-7457 -roomNumber: 9917 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Susanne Alink,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susanne Alink -sn: Alink -description: This is Susanne Alink's description -facsimileTelephoneNumber: +1 408 165-3697 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 324-4805 -title: Chief Payroll Writer -userPassword: Password1 -uid: AlinkS -givenName: Susanne -mail: AlinkS@f80ee53b420043fbaade7eda6821c2a3.bitwarden.com -carLicense: YLC96U -departmentNumber: 9144 -employeeType: Normal -homePhone: +1 408 946-1420 -initials: S. A. -mobile: +1 408 191-9000 -pager: +1 408 932-3986 -roomNumber: 9983 -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Al Wrigley -sn: Wrigley -description: This is Al Wrigley's description -facsimileTelephoneNumber: +1 415 639-4021 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 195-2044 -title: Supreme Human Resources Pinhead -userPassword: Password1 -uid: WrigleyA -givenName: Al -mail: WrigleyA@388d6df3272e41188b24fb047a0d1f64.bitwarden.com -carLicense: PI8LDU -departmentNumber: 5460 -employeeType: Employee -homePhone: +1 415 715-2021 -initials: A. W. -mobile: +1 415 803-9074 -pager: +1 415 298-9147 -roomNumber: 8871 -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elizabeth Brassem -sn: Brassem -description: This is Elizabeth Brassem's description -facsimileTelephoneNumber: +1 213 929-7717 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 378-1367 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: BrassemE -givenName: Elizabeth -mail: BrassemE@e0d712a3d6444bfb88c4e181c5b5e72d.bitwarden.com -carLicense: GQSQ58 -departmentNumber: 4906 -employeeType: Contract -homePhone: +1 213 224-2421 -initials: E. B. -mobile: +1 213 130-4716 -pager: +1 213 145-6398 -roomNumber: 8130 -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laurie Bijons -sn: Bijons -description: This is Laurie Bijons's description -facsimileTelephoneNumber: +1 408 519-4146 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 501-3379 -title: Junior Administrative Assistant -userPassword: Password1 -uid: BijonsL -givenName: Laurie -mail: BijonsL@d957d37e990148fd9b9079128818783d.bitwarden.com -carLicense: XRABSI -departmentNumber: 5907 -employeeType: Contract -homePhone: +1 408 231-1351 -initials: L. B. -mobile: +1 408 383-2467 -pager: +1 408 939-5531 -roomNumber: 8750 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Begum Minyard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Begum Minyard -sn: Minyard -description: This is Begum Minyard's description -facsimileTelephoneNumber: +1 408 618-7439 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 461-9050 -title: Master Human Resources Punk -userPassword: Password1 -uid: MinyardB -givenName: Begum -mail: MinyardB@6b490fc40c68440ca61573fe5b83533b.bitwarden.com -carLicense: G43KUD -departmentNumber: 6840 -employeeType: Contract -homePhone: +1 408 137-1174 -initials: B. M. -mobile: +1 408 429-2489 -pager: +1 408 417-5345 -roomNumber: 9913 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hotline Au -sn: Au -description: This is Hotline Au's description -facsimileTelephoneNumber: +1 818 437-9237 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 447-7588 -title: Associate Product Development Admin -userPassword: Password1 -uid: AuH -givenName: Hotline -mail: AuH@a220f117ba9a47bf841474c3d9809325.bitwarden.com -carLicense: XHUI70 -departmentNumber: 3926 -employeeType: Employee -homePhone: +1 818 212-8328 -initials: H. A. -mobile: +1 818 979-4174 -pager: +1 818 968-5394 -roomNumber: 8621 -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cornelle Coupal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cornelle Coupal -sn: Coupal -description: This is Cornelle Coupal's description -facsimileTelephoneNumber: +1 408 114-1692 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 966-6097 -title: Junior Peons Architect -userPassword: Password1 -uid: CoupalC -givenName: Cornelle -mail: CoupalC@006106eb4fa5430982fa52048d307012.bitwarden.com -carLicense: TK21VE -departmentNumber: 5090 -employeeType: Employee -homePhone: +1 408 401-5198 -initials: C. C. -mobile: +1 408 171-5358 -pager: +1 408 408-2167 -roomNumber: 8396 -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vishwa Prodmgmt -sn: Prodmgmt -description: This is Vishwa Prodmgmt's description -facsimileTelephoneNumber: +1 804 961-5982 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 425-2039 -title: Associate Product Testing Figurehead -userPassword: Password1 -uid: ProdmgmV -givenName: Vishwa -mail: ProdmgmV@7747f5fffb014d46a2a05d592c7bbe1a.bitwarden.com -carLicense: 48M74G -departmentNumber: 5804 -employeeType: Employee -homePhone: +1 804 680-2691 -initials: V. P. -mobile: +1 804 630-4680 -pager: +1 804 990-3194 -roomNumber: 9793 -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Turkey Moser,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Turkey Moser -sn: Moser -description: This is Turkey Moser's description -facsimileTelephoneNumber: +1 804 771-2298 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 953-1942 -title: Chief Product Development Fellow -userPassword: Password1 -uid: MoserT -givenName: Turkey -mail: MoserT@3ae6b803292e4da4b28cd13a1bfe807a.bitwarden.com -carLicense: MROJ1V -departmentNumber: 4308 -employeeType: Normal -homePhone: +1 804 983-5088 -initials: T. M. -mobile: +1 804 835-7584 -pager: +1 804 414-1843 -roomNumber: 8669 -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Warwick Mau,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Warwick Mau -sn: Mau -description: This is Warwick Mau's description -facsimileTelephoneNumber: +1 510 782-9299 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 931-2516 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: MauW -givenName: Warwick -mail: MauW@964bc78b98164950b5c94e42f0381893.bitwarden.com -carLicense: BXNXVH -departmentNumber: 7307 -employeeType: Normal -homePhone: +1 510 744-5004 -initials: W. M. -mobile: +1 510 901-2787 -pager: +1 510 752-7025 -roomNumber: 8010 -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WeeSeng AbiAad -sn: AbiAad -description: This is WeeSeng AbiAad's description -facsimileTelephoneNumber: +1 408 920-7220 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 907-1004 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: AbiAadW -givenName: WeeSeng -mail: AbiAadW@fd05e86a9d6648ff83b1905135704728.bitwarden.com -carLicense: UHN2NT -departmentNumber: 2241 -employeeType: Normal -homePhone: +1 408 742-1593 -initials: W. A. -mobile: +1 408 929-4524 -pager: +1 408 325-2339 -roomNumber: 9137 -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wynne Clow -sn: Clow -description: This is Wynne Clow's description -facsimileTelephoneNumber: +1 206 924-9089 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 983-9140 -title: Master Payroll Assistant -userPassword: Password1 -uid: ClowW -givenName: Wynne -mail: ClowW@ace8aeb1c7ed45ec9b1e40da691d3781.bitwarden.com -carLicense: IMP62E -departmentNumber: 3642 -employeeType: Contract -homePhone: +1 206 569-5048 -initials: W. C. -mobile: +1 206 959-6704 -pager: +1 206 214-1685 -roomNumber: 8658 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelly Keller -sn: Keller -description: This is Shelly Keller's description -facsimileTelephoneNumber: +1 408 715-4974 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 979-2903 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: KellerS -givenName: Shelly -mail: KellerS@539cce6ead8749dbb15039351f6600f2.bitwarden.com -carLicense: Y9Y9FD -departmentNumber: 6721 -employeeType: Employee -homePhone: +1 408 937-1205 -initials: S. K. -mobile: +1 408 264-9109 -pager: +1 408 441-4783 -roomNumber: 8321 -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ole Carbajal -sn: Carbajal -description: This is Ole Carbajal's description -facsimileTelephoneNumber: +1 510 459-2444 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 510 897-7286 -title: Chief Administrative Evangelist -userPassword: Password1 -uid: CarbajaO -givenName: Ole -mail: CarbajaO@befc232b3f4240ada061cd42724f306e.bitwarden.com -carLicense: 97OXDY -departmentNumber: 1558 -employeeType: Employee -homePhone: +1 510 401-1393 -initials: O. C. -mobile: +1 510 354-1705 -pager: +1 510 580-2175 -roomNumber: 9751 -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Richardson Luxford,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Richardson Luxford -sn: Luxford -description: This is Richardson Luxford's description -facsimileTelephoneNumber: +1 415 324-9522 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 385-3636 -title: Supreme Management Director -userPassword: Password1 -uid: LuxfordR -givenName: Richardson -mail: LuxfordR@2ec15169d3824bb991e5ec642147de0b.bitwarden.com -carLicense: 8EVC7P -departmentNumber: 3162 -employeeType: Normal -homePhone: +1 415 819-3839 -initials: R. L. -mobile: +1 415 172-5210 -pager: +1 415 810-3774 -roomNumber: 8506 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Breanne Tassy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Breanne Tassy -sn: Tassy -description: This is Breanne Tassy's description -facsimileTelephoneNumber: +1 510 414-8335 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 303-7709 -title: Chief Peons Grunt -userPassword: Password1 -uid: TassyB -givenName: Breanne -mail: TassyB@108e0aee5d8240a1ab913e4b9c6c59ea.bitwarden.com -carLicense: SF04Y1 -departmentNumber: 2085 -employeeType: Normal -homePhone: +1 510 546-2737 -initials: B. T. -mobile: +1 510 853-5379 -pager: +1 510 897-9220 -roomNumber: 9164 -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Austina Acree -sn: Acree -description: This is Austina Acree's description -facsimileTelephoneNumber: +1 213 946-6854 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 434-8332 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: AcreeA -givenName: Austina -mail: AcreeA@0115872801044ba284591166aa6c228d.bitwarden.com -carLicense: 3PXK7D -departmentNumber: 7031 -employeeType: Employee -homePhone: +1 213 256-7948 -initials: A. A. -mobile: +1 213 382-8708 -pager: +1 213 695-3860 -roomNumber: 8100 -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gen Rushton -sn: Rushton -description: This is Gen Rushton's description -facsimileTelephoneNumber: +1 415 605-1434 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 150-4745 -title: Chief Peons Assistant -userPassword: Password1 -uid: RushtonG -givenName: Gen -mail: RushtonG@7e5dd3d40d75462fa1e8cd66dc2520cc.bitwarden.com -carLicense: 8P4WYY -departmentNumber: 7879 -employeeType: Contract -homePhone: +1 415 404-4923 -initials: G. R. -mobile: +1 415 434-7260 -pager: +1 415 130-5185 -roomNumber: 9063 -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lebbie Lortie -sn: Lortie -description: This is Lebbie Lortie's description -facsimileTelephoneNumber: +1 510 788-4705 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 592-5975 -title: Master Management Admin -userPassword: Password1 -uid: LortieL -givenName: Lebbie -mail: LortieL@2bebf972d05d4565b74cc490d2d76c19.bitwarden.com -carLicense: IJ7NMT -departmentNumber: 4158 -employeeType: Contract -homePhone: +1 510 209-3743 -initials: L. L. -mobile: +1 510 490-9656 -pager: +1 510 147-8937 -roomNumber: 8214 -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Geoff Achcar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geoff Achcar -sn: Achcar -description: This is Geoff Achcar's description -facsimileTelephoneNumber: +1 818 260-4115 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 567-2581 -title: Supreme Payroll President -userPassword: Password1 -uid: AchcarG -givenName: Geoff -mail: AchcarG@a035bec181ea4cd9abd3953e80704bef.bitwarden.com -carLicense: D6EN39 -departmentNumber: 8925 -employeeType: Contract -homePhone: +1 818 340-9738 -initials: G. A. -mobile: +1 818 966-2460 -pager: +1 818 725-4432 -roomNumber: 9594 -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hollie Amir -sn: Amir -description: This is Hollie Amir's description -facsimileTelephoneNumber: +1 206 733-7943 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 206 351-5931 -title: Supreme Payroll Vice President -userPassword: Password1 -uid: AmirH -givenName: Hollie -mail: AmirH@5b8fdd487f414248bc005f588420c84d.bitwarden.com -carLicense: FVS2HL -departmentNumber: 4470 -employeeType: Employee -homePhone: +1 206 768-4406 -initials: H. A. -mobile: +1 206 661-6410 -pager: +1 206 342-6357 -roomNumber: 9558 -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Timm Alvarez,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Timm Alvarez -sn: Alvarez -description: This is Timm Alvarez's description -facsimileTelephoneNumber: +1 206 594-1122 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 475-6301 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: AlvarezT -givenName: Timm -mail: AlvarezT@37f6e89a491b4e36b50bf46647ad8a4f.bitwarden.com -carLicense: U4H5AM -departmentNumber: 1191 -employeeType: Employee -homePhone: +1 206 105-9368 -initials: T. A. -mobile: +1 206 563-6101 -pager: +1 206 546-7957 -roomNumber: 8191 -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Huan Adornato,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huan Adornato -sn: Adornato -description: This is Huan Adornato's description -facsimileTelephoneNumber: +1 206 452-3810 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 170-1016 -title: Supreme Product Development President -userPassword: Password1 -uid: AdornatH -givenName: Huan -mail: AdornatH@0d5ea7c8c89145008270f344ad787afd.bitwarden.com -carLicense: 1TFST0 -departmentNumber: 1213 -employeeType: Employee -homePhone: +1 206 839-6987 -initials: H. A. -mobile: +1 206 674-4132 -pager: +1 206 967-9159 -roomNumber: 8519 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margarethe Plaisance -sn: Plaisance -description: This is Margarethe Plaisance's description -facsimileTelephoneNumber: +1 213 734-8465 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 474-5522 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: PlaisanM -givenName: Margarethe -mail: PlaisanM@e9c23ff2d9044043850cca96d60bbdf5.bitwarden.com -carLicense: QFVGYE -departmentNumber: 5739 -employeeType: Normal -homePhone: +1 213 765-3014 -initials: M. P. -mobile: +1 213 752-5223 -pager: +1 213 251-8473 -roomNumber: 8370 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meredith Kyzer -sn: Kyzer -description: This is Meredith Kyzer's description -facsimileTelephoneNumber: +1 510 922-3159 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 588-4860 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: KyzerM -givenName: Meredith -mail: KyzerM@b827ba5736ae48268de38db3e9e259c3.bitwarden.com -carLicense: UU70GY -departmentNumber: 6513 -employeeType: Contract -homePhone: +1 510 538-5698 -initials: M. K. -mobile: +1 510 951-2523 -pager: +1 510 597-8621 -roomNumber: 9284 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Reynold Meletios,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reynold Meletios -sn: Meletios -description: This is Reynold Meletios's description -facsimileTelephoneNumber: +1 818 885-2568 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 761-7321 -title: Master Janitorial Madonna -userPassword: Password1 -uid: MeletioR -givenName: Reynold -mail: MeletioR@4284ced1de0045e2ba27e1b8bfd75a64.bitwarden.com -carLicense: 62H38L -departmentNumber: 3870 -employeeType: Employee -homePhone: +1 818 101-5133 -initials: R. M. -mobile: +1 818 857-3836 -pager: +1 818 871-1206 -roomNumber: 8783 -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Britney Farrell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Britney Farrell -sn: Farrell -description: This is Britney Farrell's description -facsimileTelephoneNumber: +1 510 679-4435 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 933-2618 -title: Associate Management Madonna -userPassword: Password1 -uid: FarrellB -givenName: Britney -mail: FarrellB@68cfba969ba74400992bfae87ff5159e.bitwarden.com -carLicense: WV416N -departmentNumber: 5572 -employeeType: Normal -homePhone: +1 510 797-8127 -initials: B. F. -mobile: +1 510 421-1722 -pager: +1 510 136-8676 -roomNumber: 8019 -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marne Tougas,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marne Tougas -sn: Tougas -description: This is Marne Tougas's description -facsimileTelephoneNumber: +1 415 424-2019 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 645-3071 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: TougasM -givenName: Marne -mail: TougasM@53866fe0b2f743ba8c1060bb63e44fe7.bitwarden.com -carLicense: X2BUNS -departmentNumber: 2762 -employeeType: Employee -homePhone: +1 415 980-3776 -initials: M. T. -mobile: +1 415 516-9159 -pager: +1 415 964-8940 -roomNumber: 9792 -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyanna Goff -sn: Goff -description: This is Dyanna Goff's description -facsimileTelephoneNumber: +1 206 407-3196 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 859-1477 -title: Chief Payroll Vice President -userPassword: Password1 -uid: GoffD -givenName: Dyanna -mail: GoffD@073188fe54434a759fdc0baa318abab1.bitwarden.com -carLicense: UBF8IM -departmentNumber: 4913 -employeeType: Employee -homePhone: +1 206 834-8868 -initials: D. G. -mobile: +1 206 320-3199 -pager: +1 206 330-9655 -roomNumber: 8962 -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laverne NetTeam -sn: NetTeam -description: This is Laverne NetTeam's description -facsimileTelephoneNumber: +1 415 821-7365 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 526-4188 -title: Junior Peons Janitor -userPassword: Password1 -uid: NetTeamL -givenName: Laverne -mail: NetTeamL@d1d366221ba74192a46f7f104d0479c6.bitwarden.com -carLicense: 2BLS1T -departmentNumber: 8580 -employeeType: Employee -homePhone: +1 415 389-3061 -initials: L. N. -mobile: +1 415 519-1186 -pager: +1 415 263-6725 -roomNumber: 8743 -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genny Bladon -sn: Bladon -description: This is Genny Bladon's description -facsimileTelephoneNumber: +1 415 727-8333 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 802-7796 -title: Chief Janitorial President -userPassword: Password1 -uid: BladonG -givenName: Genny -mail: BladonG@8227646c55034cf9b21757fce681b53f.bitwarden.com -carLicense: YDCAJF -departmentNumber: 2171 -employeeType: Contract -homePhone: +1 415 655-4299 -initials: G. B. -mobile: +1 415 506-6928 -pager: +1 415 259-1588 -roomNumber: 9895 -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sask Griswold,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sask Griswold -sn: Griswold -description: This is Sask Griswold's description -facsimileTelephoneNumber: +1 415 725-1576 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 870-4215 -title: Associate Product Development Czar -userPassword: Password1 -uid: GriswolS -givenName: Sask -mail: GriswolS@ce9a5204a370483987964a25eaf0057b.bitwarden.com -carLicense: ALSXWK -departmentNumber: 7535 -employeeType: Normal -homePhone: +1 415 275-1741 -initials: S. G. -mobile: +1 415 841-4678 -pager: +1 415 679-7742 -roomNumber: 8124 -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rae Beckham,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rae Beckham -sn: Beckham -description: This is Rae Beckham's description -facsimileTelephoneNumber: +1 408 944-8998 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 106-6529 -title: Supreme Payroll Technician -userPassword: Password1 -uid: BeckhamR -givenName: Rae -mail: BeckhamR@b400fcdf725047b698292665de84946c.bitwarden.com -carLicense: U2TPO7 -departmentNumber: 8768 -employeeType: Contract -homePhone: +1 408 853-8535 -initials: R. B. -mobile: +1 408 666-5697 -pager: +1 408 177-4519 -roomNumber: 9652 -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassaundra Gary -sn: Gary -description: This is Cassaundra Gary's description -facsimileTelephoneNumber: +1 213 109-3216 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 858-8127 -title: Supreme Product Testing Writer -userPassword: Password1 -uid: GaryC -givenName: Cassaundra -mail: GaryC@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com -carLicense: AFE2V8 -departmentNumber: 3325 -employeeType: Contract -homePhone: +1 213 832-4346 -initials: C. G. -mobile: +1 213 666-9725 -pager: +1 213 540-2265 -roomNumber: 8273 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emlynne Linaugh -sn: Linaugh -description: This is Emlynne Linaugh's description -facsimileTelephoneNumber: +1 818 842-5312 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 385-8439 -title: Chief Administrative Visionary -userPassword: Password1 -uid: LinaughE -givenName: Emlynne -mail: LinaughE@964bc78b98164950b5c94e42f0381893.bitwarden.com -carLicense: 9D8VE3 -departmentNumber: 8476 -employeeType: Employee -homePhone: +1 818 854-9957 -initials: E. L. -mobile: +1 818 692-1474 -pager: +1 818 261-8158 -roomNumber: 9984 -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Priscilla Mauldin -sn: Mauldin -description: This is Priscilla Mauldin's description -facsimileTelephoneNumber: +1 206 879-5050 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 206 605-4472 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: MauldinP -givenName: Priscilla -mail: MauldinP@aaf992b9334d42f0913adfd4d6280d9d.bitwarden.com -carLicense: B09HIK -departmentNumber: 5121 -employeeType: Normal -homePhone: +1 206 825-1105 -initials: P. M. -mobile: +1 206 957-9909 -pager: +1 206 491-1569 -roomNumber: 9139 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=ChoKuen Layton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChoKuen Layton -sn: Layton -description: This is ChoKuen Layton's description -facsimileTelephoneNumber: +1 213 487-5889 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 445-4282 -title: Supreme Management Grunt -userPassword: Password1 -uid: LaytonC -givenName: ChoKuen -mail: LaytonC@f356862401984def8bd045192d245ee9.bitwarden.com -carLicense: T0ALUN -departmentNumber: 1354 -employeeType: Normal -homePhone: +1 213 775-3722 -initials: C. L. -mobile: +1 213 668-8638 -pager: +1 213 525-9969 -roomNumber: 9985 -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merlina Gofron -sn: Gofron -description: This is Merlina Gofron's description -facsimileTelephoneNumber: +1 415 732-2592 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 698-9872 -title: Junior Product Development Stooge -userPassword: Password1 -uid: GofronM -givenName: Merlina -mail: GofronM@5b1e92da278e4b9ca91014027a0aa9ce.bitwarden.com -carLicense: 4AQ10D -departmentNumber: 4043 -employeeType: Employee -homePhone: +1 415 120-8843 -initials: M. G. -mobile: +1 415 740-5334 -pager: +1 415 247-4957 -roomNumber: 8517 -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jany Kamal -sn: Kamal -description: This is Jany Kamal's description -facsimileTelephoneNumber: +1 408 951-9370 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 691-6824 -title: Associate Management Manager -userPassword: Password1 -uid: KamalJ -givenName: Jany -mail: KamalJ@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com -carLicense: GEVLKE -departmentNumber: 6411 -employeeType: Normal -homePhone: +1 408 660-6093 -initials: J. K. -mobile: +1 408 629-6424 -pager: +1 408 955-5764 -roomNumber: 9080 -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Freddie Rolfes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Freddie Rolfes -sn: Rolfes -description: This is Freddie Rolfes's description -facsimileTelephoneNumber: +1 804 656-2591 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 337-6813 -title: Master Product Development Director -userPassword: Password1 -uid: RolfesF -givenName: Freddie -mail: RolfesF@7eb391b0b5674f9795ca1cebe83846e1.bitwarden.com -carLicense: T45IVC -departmentNumber: 4228 -employeeType: Normal -homePhone: +1 804 581-2120 -initials: F. R. -mobile: +1 804 926-5958 -pager: +1 804 469-5356 -roomNumber: 9644 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nickie Acree -sn: Acree -description: This is Nickie Acree's description -facsimileTelephoneNumber: +1 415 410-9362 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 106-5701 -title: Supreme Administrative Pinhead -userPassword: Password1 -uid: AcreeN -givenName: Nickie -mail: AcreeN@c3999c476a6d4270acb03c758687a2bc.bitwarden.com -carLicense: QKS13L -departmentNumber: 7643 -employeeType: Normal -homePhone: +1 415 611-3273 -initials: N. A. -mobile: +1 415 951-1638 -pager: +1 415 869-9684 -roomNumber: 9745 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rajinderpal Flueckinger -sn: Flueckinger -description: This is Rajinderpal Flueckinger's description -facsimileTelephoneNumber: +1 415 351-2936 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 132-5192 -title: Chief Peons Developer -userPassword: Password1 -uid: FlueckiR -givenName: Rajinderpal -mail: FlueckiR@b3ae6dae564847d7ba4d0a12a6361531.bitwarden.com -carLicense: 27D0UT -departmentNumber: 2347 -employeeType: Normal -homePhone: +1 415 889-9934 -initials: R. F. -mobile: +1 415 142-6286 -pager: +1 415 296-6970 -roomNumber: 9063 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com - -dn: cn=Davina Amu,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davina Amu -sn: Amu -description: This is Davina Amu's description -facsimileTelephoneNumber: +1 206 756-9594 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 206 989-4005 -title: Chief Peons Fellow -userPassword: Password1 -uid: AmuD -givenName: Davina -mail: AmuD@d08b187bcf0d40f4953d0fe4abf84b6f.bitwarden.com -carLicense: 2RHMSU -departmentNumber: 7028 -employeeType: Normal -homePhone: +1 206 273-4823 -initials: D. A. -mobile: +1 206 800-3813 -pager: +1 206 352-2973 -roomNumber: 9416 -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amandi Kouhi -sn: Kouhi -description: This is Amandi Kouhi's description -facsimileTelephoneNumber: +1 415 653-7048 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 218-9961 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: KouhiA -givenName: Amandi -mail: KouhiA@4048b5b3b12f4302afcee427cb6c6b34.bitwarden.com -carLicense: MVN8NL -departmentNumber: 9019 -employeeType: Contract -homePhone: +1 415 113-1673 -initials: A. K. -mobile: +1 415 379-5193 -pager: +1 415 360-5471 -roomNumber: 9122 -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YauFun Fennessey -sn: Fennessey -description: This is YauFun Fennessey's description -facsimileTelephoneNumber: +1 206 815-7502 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 223-9101 -title: Supreme Product Testing President -userPassword: Password1 -uid: FennessY -givenName: YauFun -mail: FennessY@d7b97704ed464563bae0dc6e06484719.bitwarden.com -carLicense: AV4JXJ -departmentNumber: 6483 -employeeType: Normal -homePhone: +1 206 100-3572 -initials: Y. F. -mobile: +1 206 206-6652 -pager: +1 206 894-1125 -roomNumber: 8869 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Akin Capelle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akin Capelle -sn: Capelle -description: This is Akin Capelle's description -facsimileTelephoneNumber: +1 510 229-9037 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 471-6760 -title: Associate Product Development President -userPassword: Password1 -uid: CapelleA -givenName: Akin -mail: CapelleA@fc4cfa1e28824d9b9e67a02d1242c76a.bitwarden.com -carLicense: RCBP72 -departmentNumber: 9929 -employeeType: Employee -homePhone: +1 510 566-3454 -initials: A. C. -mobile: +1 510 732-6922 -pager: +1 510 439-1520 -roomNumber: 8344 -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Focus Decourcy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Focus Decourcy -sn: Decourcy -description: This is Focus Decourcy's description -facsimileTelephoneNumber: +1 206 227-4906 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 206 607-4358 -title: Junior Payroll Architect -userPassword: Password1 -uid: DecourcF -givenName: Focus -mail: DecourcF@9564989367ee45b494d155a6be9f3761.bitwarden.com -carLicense: 2KXXET -departmentNumber: 5171 -employeeType: Employee -homePhone: +1 206 908-4084 -initials: F. D. -mobile: +1 206 377-3452 -pager: +1 206 222-5453 -roomNumber: 8379 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com - -dn: cn=Moel Wynes,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moel Wynes -sn: Wynes -description: This is Moel Wynes's description -facsimileTelephoneNumber: +1 213 403-4086 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 158-2861 -title: Master Janitorial Engineer -userPassword: Password1 -uid: WynesM -givenName: Moel -mail: WynesM@4cd419e4880743fba3fb72008e9a330b.bitwarden.com -carLicense: GXABDL -departmentNumber: 1682 -employeeType: Employee -homePhone: +1 213 127-4467 -initials: M. W. -mobile: +1 213 290-1888 -pager: +1 213 175-2939 -roomNumber: 8987 -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bertrand Schiegl,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bertrand Schiegl -sn: Schiegl -description: This is Bertrand Schiegl's description -facsimileTelephoneNumber: +1 818 453-2622 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 818 274-4642 -title: Associate Peons Director -userPassword: Password1 -uid: SchieglB -givenName: Bertrand -mail: SchieglB@d3284c9107174588867290b3601e936f.bitwarden.com -carLicense: E93QQK -departmentNumber: 9373 -employeeType: Employee -homePhone: +1 818 635-3897 -initials: B. S. -mobile: +1 818 416-6264 -pager: +1 818 828-2856 -roomNumber: 8474 -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquenetta Lakhani -sn: Lakhani -description: This is Jacquenetta Lakhani's description -facsimileTelephoneNumber: +1 408 671-3651 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 524-8931 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: LakhaniJ -givenName: Jacquenetta -mail: LakhaniJ@3eb77d9e6bdc439197d45c120ada5eb9.bitwarden.com -carLicense: HGQC2B -departmentNumber: 8842 -employeeType: Contract -homePhone: +1 408 182-7466 -initials: J. L. -mobile: +1 408 826-5616 -pager: +1 408 402-5539 -roomNumber: 9743 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coursey Stansfield -sn: Stansfield -description: This is Coursey Stansfield's description -facsimileTelephoneNumber: +1 818 645-9795 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 562-6426 -title: Junior Management Consultant -userPassword: Password1 -uid: StansfiC -givenName: Coursey -mail: StansfiC@175f672e954d4d05baa0e0e2d7a5150d.bitwarden.com -carLicense: 8WRLLF -departmentNumber: 6441 -employeeType: Normal -homePhone: +1 818 247-7204 -initials: C. S. -mobile: +1 818 385-9587 -pager: +1 818 182-8422 -roomNumber: 8855 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tavis Theodore,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tavis Theodore -sn: Theodore -description: This is Tavis Theodore's description -facsimileTelephoneNumber: +1 415 836-3168 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 427-5817 -title: Chief Administrative President -userPassword: Password1 -uid: TheodorT -givenName: Tavis -mail: TheodorT@574eddc7483948a59c9d38d5c8f6a354.bitwarden.com -carLicense: IMK5LR -departmentNumber: 3079 -employeeType: Contract -homePhone: +1 415 560-4992 -initials: T. T. -mobile: +1 415 718-1202 -pager: +1 415 943-5747 -roomNumber: 8163 -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bello Madani -sn: Madani -description: This is Bello Madani's description -facsimileTelephoneNumber: +1 804 951-5634 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 780-3656 -title: Supreme Management Punk -userPassword: Password1 -uid: MadaniB -givenName: Bello -mail: MadaniB@6b01ea5296ae43ddbca168736ac18b91.bitwarden.com -carLicense: QF007F -departmentNumber: 3710 -employeeType: Employee -homePhone: +1 804 155-2232 -initials: B. M. -mobile: +1 804 131-6670 -pager: +1 804 227-3266 -roomNumber: 9555 -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sameh Kyoung,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sameh Kyoung -sn: Kyoung -description: This is Sameh Kyoung's description -facsimileTelephoneNumber: +1 408 190-4051 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 630-2080 -title: Chief Management Warrior -userPassword: Password1 -uid: KyoungS -givenName: Sameh -mail: KyoungS@cbc86aec4ebd45fb8e05b7c1a8564753.bitwarden.com -carLicense: Q8VWUN -departmentNumber: 6634 -employeeType: Contract -homePhone: +1 408 612-6729 -initials: S. K. -mobile: +1 408 625-1793 -pager: +1 408 192-6552 -roomNumber: 8888 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liem Isley -sn: Isley -description: This is Liem Isley's description -facsimileTelephoneNumber: +1 510 737-1917 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 510 918-3205 -title: Chief Payroll Assistant -userPassword: Password1 -uid: IsleyL -givenName: Liem -mail: IsleyL@41d9d77642444cc9ab9d5b4e9a3c43fc.bitwarden.com -carLicense: R72NL5 -departmentNumber: 8163 -employeeType: Employee -homePhone: +1 510 503-7355 -initials: L. I. -mobile: +1 510 770-2932 -pager: +1 510 377-7086 -roomNumber: 9417 -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estrella Balsas -sn: Balsas -description: This is Estrella Balsas's description -facsimileTelephoneNumber: +1 804 181-5529 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 260-2712 -title: Supreme Human Resources Engineer -userPassword: Password1 -uid: BalsasE -givenName: Estrella -mail: BalsasE@14a50969231442b7a4661f1630e8f16c.bitwarden.com -carLicense: OY492Y -departmentNumber: 6673 -employeeType: Employee -homePhone: +1 804 847-4425 -initials: E. B. -mobile: +1 804 108-5823 -pager: +1 804 496-8657 -roomNumber: 8751 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bailey Trickett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bailey Trickett -sn: Trickett -description: This is Bailey Trickett's description -facsimileTelephoneNumber: +1 213 548-7419 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 982-3008 -title: Master Management Director -userPassword: Password1 -uid: TricketB -givenName: Bailey -mail: TricketB@74ad719f3ca94101b51f4a4b5749fe0a.bitwarden.com -carLicense: JK5ESK -departmentNumber: 1910 -employeeType: Contract -homePhone: +1 213 251-1267 -initials: B. T. -mobile: +1 213 795-5300 -pager: +1 213 166-6813 -roomNumber: 8167 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raghuvir Costandi -sn: Costandi -description: This is Raghuvir Costandi's description -facsimileTelephoneNumber: +1 818 625-7408 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 832-1333 -title: Chief Product Testing Punk -userPassword: Password1 -uid: CostandR -givenName: Raghuvir -mail: CostandR@57507372eada4752ba384ecd326c57ac.bitwarden.com -carLicense: D5HDEY -departmentNumber: 6513 -employeeType: Employee -homePhone: +1 818 362-7881 -initials: R. C. -mobile: +1 818 635-4026 -pager: +1 818 470-7194 -roomNumber: 8860 -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Martha Hovey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martha Hovey -sn: Hovey -description: This is Martha Hovey's description -facsimileTelephoneNumber: +1 408 828-9954 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 228-8636 -title: Supreme Management Grunt -userPassword: Password1 -uid: HoveyM -givenName: Martha -mail: HoveyM@85af325f68b4407789de4090abc807e7.bitwarden.com -carLicense: HVGWV0 -departmentNumber: 8842 -employeeType: Employee -homePhone: +1 408 649-3972 -initials: M. H. -mobile: +1 408 505-7737 -pager: +1 408 736-8348 -roomNumber: 8112 -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathrine Salsbery -sn: Salsbery -description: This is Cathrine Salsbery's description -facsimileTelephoneNumber: +1 206 518-5331 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 546-1692 -title: Master Janitorial Vice President -userPassword: Password1 -uid: SalsberC -givenName: Cathrine -mail: SalsberC@c8c34efeb3fd47f485bda2d57f298fa8.bitwarden.com -carLicense: 9DUCEB -departmentNumber: 4464 -employeeType: Employee -homePhone: +1 206 323-6116 -initials: C. S. -mobile: +1 206 336-1113 -pager: +1 206 618-9424 -roomNumber: 8939 -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com - -dn: cn=ChinFui Iezzi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChinFui Iezzi -sn: Iezzi -description: This is ChinFui Iezzi's description -facsimileTelephoneNumber: +1 206 831-9320 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 253-4869 -title: Associate Management President -userPassword: Password1 -uid: IezziC -givenName: ChinFui -mail: IezziC@d117baceef9a4168bde2647e78683a37.bitwarden.com -carLicense: 8IKUN7 -departmentNumber: 7026 -employeeType: Normal -homePhone: +1 206 114-4365 -initials: C. I. -mobile: +1 206 379-4148 -pager: +1 206 301-1029 -roomNumber: 9083 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cortney Tolar -sn: Tolar -description: This is Cortney Tolar's description -facsimileTelephoneNumber: +1 213 746-4502 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 288-5426 -title: Junior Payroll Engineer -userPassword: Password1 -uid: TolarC -givenName: Cortney -mail: TolarC@77dc8afa92a942f990e0358d489eb936.bitwarden.com -carLicense: GPNUJ1 -departmentNumber: 9933 -employeeType: Contract -homePhone: +1 213 497-8342 -initials: C. T. -mobile: +1 213 755-4361 -pager: +1 213 296-7957 -roomNumber: 9358 -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alta Chandrashekar -sn: Chandrashekar -description: This is Alta Chandrashekar's description -facsimileTelephoneNumber: +1 415 761-7569 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 238-5326 -title: Junior Human Resources Madonna -userPassword: Password1 -uid: ChandraA -givenName: Alta -mail: ChandraA@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com -carLicense: FLYU7X -departmentNumber: 1548 -employeeType: Employee -homePhone: +1 415 371-9651 -initials: A. C. -mobile: +1 415 697-9533 -pager: +1 415 990-1680 -roomNumber: 9148 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walter Napke -sn: Napke -description: This is Walter Napke's description -facsimileTelephoneNumber: +1 415 553-9117 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 291-5687 -title: Junior Administrative Consultant -userPassword: Password1 -uid: NapkeW -givenName: Walter -mail: NapkeW@638dc4979c734dc6a0edddc9856d364c.bitwarden.com -carLicense: 9HDS0W -departmentNumber: 4215 -employeeType: Contract -homePhone: +1 415 465-5881 -initials: W. N. -mobile: +1 415 601-3588 -pager: +1 415 131-7926 -roomNumber: 9680 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenson Yabe -sn: Yabe -description: This is Jenson Yabe's description -facsimileTelephoneNumber: +1 408 559-1846 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 750-2652 -title: Chief Product Development Technician -userPassword: Password1 -uid: YabeJ -givenName: Jenson -mail: YabeJ@478d49ea22024f81bf0c3655b7d4984f.bitwarden.com -carLicense: PQYM68 -departmentNumber: 5124 -employeeType: Contract -homePhone: +1 408 439-6918 -initials: J. Y. -mobile: +1 408 522-3516 -pager: +1 408 691-3871 -roomNumber: 9486 -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanh Preo -sn: Preo -description: This is Hanh Preo's description -facsimileTelephoneNumber: +1 804 227-2611 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 804 989-3759 -title: Supreme Peons Vice President -userPassword: Password1 -uid: PreoH -givenName: Hanh -mail: PreoH@bc24a263fb344aa0a892bcbfdbc90a0d.bitwarden.com -carLicense: W6ANVR -departmentNumber: 4208 -employeeType: Normal -homePhone: +1 804 448-7161 -initials: H. P. -mobile: +1 804 308-8501 -pager: +1 804 218-8207 -roomNumber: 8117 -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Opto Decasper,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opto Decasper -sn: Decasper -description: This is Opto Decasper's description -facsimileTelephoneNumber: +1 510 170-8173 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 510 513-4475 -title: Master Human Resources Madonna -userPassword: Password1 -uid: DecaspeO -givenName: Opto -mail: DecaspeO@ec27ad8054ec49e6b80dae8c88335049.bitwarden.com -carLicense: XHC50I -departmentNumber: 2236 -employeeType: Normal -homePhone: +1 510 926-4105 -initials: O. D. -mobile: +1 510 937-1905 -pager: +1 510 184-3765 -roomNumber: 9521 -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regan Novak -sn: Novak -description: This is Regan Novak's description -facsimileTelephoneNumber: +1 510 134-4403 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 737-7597 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: NovakR -givenName: Regan -mail: NovakR@458bebdbb1db445da5a7c0df36fdfcef.bitwarden.com -carLicense: DQN01I -departmentNumber: 4434 -employeeType: Contract -homePhone: +1 510 501-3076 -initials: R. N. -mobile: +1 510 703-3160 -pager: +1 510 997-3250 -roomNumber: 8110 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Orella Viriato,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orella Viriato -sn: Viriato -description: This is Orella Viriato's description -facsimileTelephoneNumber: +1 510 965-6191 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 886-6069 -title: Junior Payroll Madonna -userPassword: Password1 -uid: ViriatoO -givenName: Orella -mail: ViriatoO@8127ace43f234ba5be577208dd638928.bitwarden.com -carLicense: QX50LA -departmentNumber: 2979 -employeeType: Normal -homePhone: +1 510 181-8993 -initials: O. V. -mobile: +1 510 580-1159 -pager: +1 510 984-9893 -roomNumber: 8838 -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ruthy Maher,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruthy Maher -sn: Maher -description: This is Ruthy Maher's description -facsimileTelephoneNumber: +1 510 919-3223 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 670-7247 -title: Associate Janitorial Admin -userPassword: Password1 -uid: MaherR -givenName: Ruthy -mail: MaherR@b0093dc523e14382988b5e422d50b328.bitwarden.com -carLicense: OPLLGD -departmentNumber: 6613 -employeeType: Normal -homePhone: +1 510 623-4691 -initials: R. M. -mobile: +1 510 710-4347 -pager: +1 510 251-7951 -roomNumber: 8188 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Roxanne Mohammad,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxanne Mohammad -sn: Mohammad -description: This is Roxanne Mohammad's description -facsimileTelephoneNumber: +1 213 267-6869 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 663-8472 -title: Master Management Artist -userPassword: Password1 -uid: MohammaR -givenName: Roxanne -mail: MohammaR@b98237c36de745c3a996a916f9116823.bitwarden.com -carLicense: 11VHS9 -departmentNumber: 8050 -employeeType: Contract -homePhone: +1 213 977-2611 -initials: R. M. -mobile: +1 213 758-8703 -pager: +1 213 189-6908 -roomNumber: 9896 -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guner Kelso -sn: Kelso -description: This is Guner Kelso's description -facsimileTelephoneNumber: +1 213 166-3623 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 652-3976 -title: Chief Product Development President -userPassword: Password1 -uid: KelsoG -givenName: Guner -mail: KelsoG@43da9c69baa14266b4c8812eff59c738.bitwarden.com -carLicense: 8UKMF1 -departmentNumber: 8002 -employeeType: Employee -homePhone: +1 213 915-1729 -initials: G. K. -mobile: +1 213 162-2755 -pager: +1 213 496-9031 -roomNumber: 8574 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drusy Masapati -sn: Masapati -description: This is Drusy Masapati's description -facsimileTelephoneNumber: +1 510 875-7652 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 524-9491 -title: Junior Payroll Vice President -userPassword: Password1 -uid: MasapatD -givenName: Drusy -mail: MasapatD@fcd97c4a8c3844f08b1e5ede745ae54d.bitwarden.com -carLicense: 227LKV -departmentNumber: 2269 -employeeType: Normal -homePhone: +1 510 162-5728 -initials: D. M. -mobile: +1 510 516-5294 -pager: +1 510 196-8704 -roomNumber: 9512 -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anthiathia Bessell -sn: Bessell -description: This is Anthiathia Bessell's description -facsimileTelephoneNumber: +1 510 770-9633 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 427-7070 -title: Junior Peons Consultant -userPassword: Password1 -uid: BessellA -givenName: Anthiathia -mail: BessellA@954e7c28b409486ab4b5e846037b6b00.bitwarden.com -carLicense: TLDNHV -departmentNumber: 8934 -employeeType: Normal -homePhone: +1 510 469-3531 -initials: A. B. -mobile: +1 510 271-2456 -pager: +1 510 196-7528 -roomNumber: 9357 -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verlyn Bryan -sn: Bryan -description: This is Verlyn Bryan's description -facsimileTelephoneNumber: +1 804 774-6531 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 804 208-9359 -title: Master Janitorial Janitor -userPassword: Password1 -uid: BryanV -givenName: Verlyn -mail: BryanV@9df231d2e4bf4076a68fc1ec37967ddc.bitwarden.com -carLicense: 1OGXEY -departmentNumber: 1551 -employeeType: Employee -homePhone: +1 804 445-7341 -initials: V. B. -mobile: +1 804 364-9849 -pager: +1 804 341-3587 -roomNumber: 8677 -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com - -dn: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saibal Swartz -sn: Swartz -description: This is Saibal Swartz's description -facsimileTelephoneNumber: +1 415 357-3695 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 493-6575 -title: Chief Peons Developer -userPassword: Password1 -uid: SwartzS -givenName: Saibal -mail: SwartzS@5c758bae8ef348278f14828cc31d2360.bitwarden.com -carLicense: OWDNYH -departmentNumber: 9695 -employeeType: Employee -homePhone: +1 415 565-3756 -initials: S. S. -mobile: +1 415 928-4557 -pager: +1 415 398-7531 -roomNumber: 8615 -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Magdi Sulewski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdi Sulewski -sn: Sulewski -description: This is Magdi Sulewski's description -facsimileTelephoneNumber: +1 206 122-4501 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 462-9376 -title: Chief Administrative Janitor -userPassword: Password1 -uid: SulewskM -givenName: Magdi -mail: SulewskM@26ea76142f2a4637b028d1aa71d30271.bitwarden.com -carLicense: OACBS9 -departmentNumber: 8911 -employeeType: Normal -homePhone: +1 206 566-1938 -initials: M. S. -mobile: +1 206 283-3382 -pager: +1 206 704-8362 -roomNumber: 9131 -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katharine Byers,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katharine Byers -sn: Byers -description: This is Katharine Byers's description -facsimileTelephoneNumber: +1 206 328-8629 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 662-6286 -title: Chief Administrative President -userPassword: Password1 -uid: ByersK -givenName: Katharine -mail: ByersK@cff08fbfbb494d1cac1d02cef13ff5e6.bitwarden.com -carLicense: 6I9ILE -departmentNumber: 5998 -employeeType: Normal -homePhone: +1 206 776-6819 -initials: K. B. -mobile: +1 206 938-5161 -pager: +1 206 827-2569 -roomNumber: 8286 -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donal Kashaninia -sn: Kashaninia -description: This is Donal Kashaninia's description -facsimileTelephoneNumber: +1 408 373-4280 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 343-6060 -title: Master Product Development Vice President -userPassword: Password1 -uid: KashaniD -givenName: Donal -mail: KashaniD@0708f7927e154039bccaf12df5697875.bitwarden.com -carLicense: 8G9V8H -departmentNumber: 1093 -employeeType: Normal -homePhone: +1 408 899-5536 -initials: D. K. -mobile: +1 408 450-9365 -pager: +1 408 429-8127 -roomNumber: 8565 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chicky Sils,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chicky Sils -sn: Sils -description: This is Chicky Sils's description -facsimileTelephoneNumber: +1 213 808-3565 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 213 870-3337 -title: Supreme Human Resources Director -userPassword: Password1 -uid: SilsC -givenName: Chicky -mail: SilsC@89e33259b1f341dda582db87064be4b8.bitwarden.com -carLicense: NO4WC5 -departmentNumber: 6971 -employeeType: Contract -homePhone: +1 213 680-3545 -initials: C. S. -mobile: +1 213 865-4738 -pager: +1 213 187-6432 -roomNumber: 8842 -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanJacques Urbielewicz -sn: Urbielewicz -description: This is JeanJacques Urbielewicz's description -facsimileTelephoneNumber: +1 408 488-9409 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 934-6124 -title: Supreme Management Visionary -userPassword: Password1 -uid: UrbieleJ -givenName: JeanJacques -mail: UrbieleJ@e7602a60599a42e38e55df23f8bedf7d.bitwarden.com -carLicense: NIAQFW -departmentNumber: 8207 -employeeType: Contract -homePhone: +1 408 858-5054 -initials: J. U. -mobile: +1 408 842-2375 -pager: +1 408 794-1882 -roomNumber: 8401 -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gillie Dedas -sn: Dedas -description: This is Gillie Dedas's description -facsimileTelephoneNumber: +1 804 237-7845 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 443-5764 -title: Supreme Product Testing Figurehead -userPassword: Password1 -uid: DedasG -givenName: Gillie -mail: DedasG@cd532997f28e491fbc9b8de411038a21.bitwarden.com -carLicense: LMP9TB -departmentNumber: 5222 -employeeType: Contract -homePhone: +1 804 949-6684 -initials: G. D. -mobile: +1 804 924-1505 -pager: +1 804 876-5717 -roomNumber: 8111 -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kassie Dack,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kassie Dack -sn: Dack -description: This is Kassie Dack's description -facsimileTelephoneNumber: +1 408 492-3126 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 408 891-4687 -title: Master Administrative Consultant -userPassword: Password1 -uid: DackK -givenName: Kassie -mail: DackK@eef25158b5b94cc287e7e9c6eefb6e6a.bitwarden.com -carLicense: FSMSK8 -departmentNumber: 3834 -employeeType: Employee -homePhone: +1 408 815-6360 -initials: K. D. -mobile: +1 408 327-5831 -pager: +1 408 149-8098 -roomNumber: 9450 -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Munir Gonsalves -sn: Gonsalves -description: This is Munir Gonsalves's description -facsimileTelephoneNumber: +1 510 931-1864 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 398-2087 -title: Associate Peons Stooge -userPassword: Password1 -uid: GonsalvM -givenName: Munir -mail: GonsalvM@d5693b03fff041e0bff80a2597afaae3.bitwarden.com -carLicense: M9STWR -departmentNumber: 9691 -employeeType: Employee -homePhone: +1 510 420-2266 -initials: M. G. -mobile: +1 510 394-6281 -pager: +1 510 345-7124 -roomNumber: 9300 -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grietje Ansorger -sn: Ansorger -description: This is Grietje Ansorger's description -facsimileTelephoneNumber: +1 213 575-9462 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 306-5448 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: AnsorgeG -givenName: Grietje -mail: AnsorgeG@0a4355ee7fe94c7bb8cc9baf9905f443.bitwarden.com -carLicense: 3N68TC -departmentNumber: 8618 -employeeType: Normal -homePhone: +1 213 363-9099 -initials: G. A. -mobile: +1 213 701-3206 -pager: +1 213 229-6440 -roomNumber: 9473 -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorianne Winklemaier -sn: Winklemaier -description: This is Lorianne Winklemaier's description -facsimileTelephoneNumber: +1 206 383-7363 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 206 697-2115 -title: Chief Payroll Mascot -userPassword: Password1 -uid: WinklemL -givenName: Lorianne -mail: WinklemL@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com -carLicense: AFG12N -departmentNumber: 9746 -employeeType: Contract -homePhone: +1 206 725-5522 -initials: L. W. -mobile: +1 206 141-7235 -pager: +1 206 823-4446 -roomNumber: 9795 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isabel McDonnell -sn: McDonnell -description: This is Isabel McDonnell's description -facsimileTelephoneNumber: +1 804 553-1499 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 183-1361 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: McDonneI -givenName: Isabel -mail: McDonneI@7e78b04dbd3c4b8d878396ef3d8060c3.bitwarden.com -carLicense: PQ8I4V -departmentNumber: 8736 -employeeType: Employee -homePhone: +1 804 163-9274 -initials: I. M. -mobile: +1 804 858-4553 -pager: +1 804 666-8116 -roomNumber: 9399 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mitzi Novisedlak -sn: Novisedlak -description: This is Mitzi Novisedlak's description -facsimileTelephoneNumber: +1 818 103-3492 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 540-2081 -title: Junior Administrative Artist -userPassword: Password1 -uid: NovisedM -givenName: Mitzi -mail: NovisedM@17e12fc1204748719cf2bf325fcfbdd8.bitwarden.com -carLicense: SW71GJ -departmentNumber: 9217 -employeeType: Normal -homePhone: +1 818 625-9712 -initials: M. N. -mobile: +1 818 323-7398 -pager: +1 818 319-9342 -roomNumber: 9139 -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Latisha Dallago -sn: Dallago -description: This is Latisha Dallago's description -facsimileTelephoneNumber: +1 408 535-6343 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 914-6147 -title: Supreme Peons Director -userPassword: Password1 -uid: DallagoL -givenName: Latisha -mail: DallagoL@79e37cdfcd844256b0d515cae5e360dd.bitwarden.com -carLicense: 8HF2K8 -departmentNumber: 2330 -employeeType: Normal -homePhone: +1 408 578-2548 -initials: L. D. -mobile: +1 408 818-5249 -pager: +1 408 454-5647 -roomNumber: 9871 -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catlee Borodajluk -sn: Borodajluk -description: This is Catlee Borodajluk's description -facsimileTelephoneNumber: +1 408 418-3347 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 408 316-6528 -title: Master Product Development Admin -userPassword: Password1 -uid: BorodajC -givenName: Catlee -mail: BorodajC@b901034853bb49fab2332c009f7f5577.bitwarden.com -carLicense: F2X11R -departmentNumber: 4943 -employeeType: Contract -homePhone: +1 408 681-1846 -initials: C. B. -mobile: +1 408 860-9606 -pager: +1 408 914-8540 -roomNumber: 9521 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com - -dn: cn=Luther Attard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luther Attard -sn: Attard -description: This is Luther Attard's description -facsimileTelephoneNumber: +1 206 468-2043 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 328-3007 -title: Master Administrative Punk -userPassword: Password1 -uid: AttardL -givenName: Luther -mail: AttardL@e049bad88da840aab339da6c7656c9ea.bitwarden.com -carLicense: W5P1M6 -departmentNumber: 1731 -employeeType: Employee -homePhone: +1 206 719-4393 -initials: L. A. -mobile: +1 206 323-9961 -pager: +1 206 380-3595 -roomNumber: 8062 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elisa Bernier,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elisa Bernier -sn: Bernier -description: This is Elisa Bernier's description -facsimileTelephoneNumber: +1 213 352-7407 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 213 310-1892 -title: Chief Payroll Consultant -userPassword: Password1 -uid: BernierE -givenName: Elisa -mail: BernierE@03984172df9e48acbd783f2986930e0c.bitwarden.com -carLicense: DKFHTQ -departmentNumber: 8430 -employeeType: Employee -homePhone: +1 213 127-7323 -initials: E. B. -mobile: +1 213 816-6201 -pager: +1 213 858-6358 -roomNumber: 8463 -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cally Rios -sn: Rios -description: This is Cally Rios's description -facsimileTelephoneNumber: +1 804 833-7788 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 918-6140 -title: Junior Management Evangelist -userPassword: Password1 -uid: RiosC -givenName: Cally -mail: RiosC@93cef961e98e48e482c9b5e04d825449.bitwarden.com -carLicense: HK3DSF -departmentNumber: 4580 -employeeType: Contract -homePhone: +1 804 384-6514 -initials: C. R. -mobile: +1 804 786-3515 -pager: +1 804 888-7731 -roomNumber: 9258 -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Flossie Ordway,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flossie Ordway -sn: Ordway -description: This is Flossie Ordway's description -facsimileTelephoneNumber: +1 804 367-1992 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 611-3917 -title: Junior Administrative Admin -userPassword: Password1 -uid: OrdwayF -givenName: Flossie -mail: OrdwayF@e208162ab8d64ca7aba1cebad89531f1.bitwarden.com -carLicense: BPOV8M -departmentNumber: 5681 -employeeType: Normal -homePhone: +1 804 180-3631 -initials: F. O. -mobile: +1 804 407-8468 -pager: +1 804 441-7945 -roomNumber: 8426 -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trudie Beveridge -sn: Beveridge -description: This is Trudie Beveridge's description -facsimileTelephoneNumber: +1 415 810-2104 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 706-5915 -title: Supreme Payroll Technician -userPassword: Password1 -uid: BeveridT -givenName: Trudie -mail: BeveridT@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com -carLicense: E93B2K -departmentNumber: 9243 -employeeType: Normal -homePhone: +1 415 340-7204 -initials: T. B. -mobile: +1 415 958-9090 -pager: +1 415 349-8223 -roomNumber: 9794 -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jin Schavo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jin Schavo -sn: Schavo -description: This is Jin Schavo's description -facsimileTelephoneNumber: +1 213 126-5114 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 684-4841 -title: Junior Management Sales Rep -userPassword: Password1 -uid: SchavoJ -givenName: Jin -mail: SchavoJ@c77bec2c020044a183f917437c7fdfe4.bitwarden.com -carLicense: V09H8O -departmentNumber: 9027 -employeeType: Normal -homePhone: +1 213 951-4469 -initials: J. S. -mobile: +1 213 566-6867 -pager: +1 213 194-1144 -roomNumber: 8456 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Birgit Reznick -sn: Reznick -description: This is Birgit Reznick's description -facsimileTelephoneNumber: +1 510 701-6858 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 642-7177 -title: Junior Payroll Warrior -userPassword: Password1 -uid: ReznickB -givenName: Birgit -mail: ReznickB@e6d1825771da43ab8c15fdf770febdde.bitwarden.com -carLicense: VWPGLQ -departmentNumber: 8775 -employeeType: Contract -homePhone: +1 510 356-6754 -initials: B. R. -mobile: +1 510 444-2929 -pager: +1 510 489-1517 -roomNumber: 9721 -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sylvia Manica,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sylvia Manica -sn: Manica -description: This is Sylvia Manica's description -facsimileTelephoneNumber: +1 804 362-1704 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 171-2691 -title: Associate Peons Vice President -userPassword: Password1 -uid: ManicaS -givenName: Sylvia -mail: ManicaS@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com -carLicense: 8ALI6T -departmentNumber: 9453 -employeeType: Normal -homePhone: +1 804 394-4909 -initials: S. M. -mobile: +1 804 838-2980 -pager: +1 804 562-9978 -roomNumber: 8653 -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Adelind Vance,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adelind Vance -sn: Vance -description: This is Adelind Vance's description -facsimileTelephoneNumber: +1 206 935-4461 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 424-5118 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: VanceA -givenName: Adelind -mail: VanceA@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com -carLicense: WDP61E -departmentNumber: 4015 -employeeType: Contract -homePhone: +1 206 401-1546 -initials: A. V. -mobile: +1 206 960-1860 -pager: +1 206 117-9089 -roomNumber: 9324 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Odella Anthonissen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odella Anthonissen -sn: Anthonissen -description: This is Odella Anthonissen's description -facsimileTelephoneNumber: +1 206 653-8390 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 606-8037 -title: Associate Administrative Architect -userPassword: Password1 -uid: AnthoniO -givenName: Odella -mail: AnthoniO@3137189e80b64a7c8c939097944e94dd.bitwarden.com -carLicense: H0VP8I -departmentNumber: 7114 -employeeType: Normal -homePhone: +1 206 355-9645 -initials: O. A. -mobile: +1 206 242-6224 -pager: +1 206 280-5635 -roomNumber: 9593 -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esmeralda Moraetes -sn: Moraetes -description: This is Esmeralda Moraetes's description -facsimileTelephoneNumber: +1 510 833-3084 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 510 939-7821 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: MoraeteE -givenName: Esmeralda -mail: MoraeteE@2fdf5806d6f34ec890d7f79e0eef4970.bitwarden.com -carLicense: LUE1PM -departmentNumber: 5139 -employeeType: Employee -homePhone: +1 510 656-2103 -initials: E. M. -mobile: +1 510 640-6377 -pager: +1 510 173-3229 -roomNumber: 8474 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=America Turney,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: America Turney -sn: Turney -description: This is America Turney's description -facsimileTelephoneNumber: +1 818 101-1111 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 208-5902 -title: Junior Management Writer -userPassword: Password1 -uid: TurneyA -givenName: America -mail: TurneyA@9e6a1308cc704783acacae7fd7bbd94e.bitwarden.com -carLicense: KU7B2B -departmentNumber: 6660 -employeeType: Contract -homePhone: +1 818 363-7574 -initials: A. T. -mobile: +1 818 657-1534 -pager: +1 818 231-8215 -roomNumber: 8804 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rudie Vaughn,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rudie Vaughn -sn: Vaughn -description: This is Rudie Vaughn's description -facsimileTelephoneNumber: +1 804 619-5327 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 789-8533 -title: Chief Peons Consultant -userPassword: Password1 -uid: VaughnR -givenName: Rudie -mail: VaughnR@dfd2035fc95c43339bef38a244e36ede.bitwarden.com -carLicense: 3FFP1O -departmentNumber: 1839 -employeeType: Normal -homePhone: +1 804 144-5715 -initials: R. V. -mobile: +1 804 875-4798 -pager: +1 804 767-5401 -roomNumber: 9946 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idris Hotlist -sn: Hotlist -description: This is Idris Hotlist's description -facsimileTelephoneNumber: +1 510 882-4509 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 565-8187 -title: Associate Product Development Consultant -userPassword: Password1 -uid: HotlistI -givenName: Idris -mail: HotlistI@623538f66c6d44c9949856d7b9d692ad.bitwarden.com -carLicense: 5682N7 -departmentNumber: 2183 -employeeType: Contract -homePhone: +1 510 566-8832 -initials: I. H. -mobile: +1 510 846-8316 -pager: +1 510 323-5180 -roomNumber: 9090 -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petri Soreanu -sn: Soreanu -description: This is Petri Soreanu's description -facsimileTelephoneNumber: +1 213 786-1138 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 213 517-4840 -title: Supreme Payroll Admin -userPassword: Password1 -uid: SoreanuP -givenName: Petri -mail: SoreanuP@2c933403160143d19a899179ef24cca2.bitwarden.com -carLicense: 8O7VIL -departmentNumber: 5941 -employeeType: Normal -homePhone: +1 213 194-7412 -initials: P. S. -mobile: +1 213 845-6747 -pager: +1 213 380-3200 -roomNumber: 8525 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Inge Hurteau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inge Hurteau -sn: Hurteau -description: This is Inge Hurteau's description -facsimileTelephoneNumber: +1 818 544-9100 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 818 316-2108 -title: Supreme Payroll Technician -userPassword: Password1 -uid: HurteauI -givenName: Inge -mail: HurteauI@ca967230de2944e896318dde6183d882.bitwarden.com -carLicense: R3SYYH -departmentNumber: 9773 -employeeType: Contract -homePhone: +1 818 996-6232 -initials: I. H. -mobile: +1 818 213-5360 -pager: +1 818 290-8521 -roomNumber: 9711 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailee Dejongh -sn: Dejongh -description: This is Ailee Dejongh's description -facsimileTelephoneNumber: +1 510 251-2048 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 635-2241 -title: Junior Product Testing Czar -userPassword: Password1 -uid: DejonghA -givenName: Ailee -mail: DejonghA@f6353cc2886243fe9b2219b4953d333b.bitwarden.com -carLicense: J5FOOH -departmentNumber: 4960 -employeeType: Employee -homePhone: +1 510 472-2011 -initials: A. D. -mobile: +1 510 774-7616 -pager: +1 510 377-4030 -roomNumber: 9483 -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tats McDermott -sn: McDermott -description: This is Tats McDermott's description -facsimileTelephoneNumber: +1 415 546-6094 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 608-2206 -title: Junior Management Stooge -userPassword: Password1 -uid: McDermoT -givenName: Tats -mail: McDermoT@7a3b1be5d62c42abaf0253c9b042dfe2.bitwarden.com -carLicense: WP6SBI -departmentNumber: 9549 -employeeType: Employee -homePhone: +1 415 112-7912 -initials: T. M. -mobile: +1 415 247-4548 -pager: +1 415 715-7544 -roomNumber: 9972 -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lianne Wanda,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lianne Wanda -sn: Wanda -description: This is Lianne Wanda's description -facsimileTelephoneNumber: +1 206 204-3020 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 681-6765 -title: Junior Administrative Fellow -userPassword: Password1 -uid: WandaL -givenName: Lianne -mail: WandaL@28e53bb2a33341d2aa3d71254b03f94e.bitwarden.com -carLicense: LOOIFU -departmentNumber: 2148 -employeeType: Normal -homePhone: +1 206 973-2340 -initials: L. W. -mobile: +1 206 647-7212 -pager: +1 206 367-9034 -roomNumber: 8506 -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estrella Rodschat -sn: Rodschat -description: This is Estrella Rodschat's description -facsimileTelephoneNumber: +1 804 457-6650 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 417-9949 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: RodschaE -givenName: Estrella -mail: RodschaE@09592cdb49ba4e06a680e4327c7f211f.bitwarden.com -carLicense: OT4U6G -departmentNumber: 4851 -employeeType: Employee -homePhone: +1 804 562-6525 -initials: E. R. -mobile: +1 804 126-5324 -pager: +1 804 806-2371 -roomNumber: 9937 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katuscha Bleile -sn: Bleile -description: This is Katuscha Bleile's description -facsimileTelephoneNumber: +1 408 983-4509 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 950-2583 -title: Chief Product Testing Punk -userPassword: Password1 -uid: BleileK -givenName: Katuscha -mail: BleileK@2af6f21a0f39407fbdd08178b71bb34d.bitwarden.com -carLicense: MOCT4T -departmentNumber: 4425 -employeeType: Contract -homePhone: +1 408 637-1156 -initials: K. B. -mobile: +1 408 250-5402 -pager: +1 408 565-1065 -roomNumber: 9168 -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marinna Drane -sn: Drane -description: This is Marinna Drane's description -facsimileTelephoneNumber: +1 213 224-1811 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 213 966-3338 -title: Master Product Testing Stooge -userPassword: Password1 -uid: DraneM -givenName: Marinna -mail: DraneM@79f5757f3e9044b8849adc8729857a5a.bitwarden.com -carLicense: RJ4C8V -departmentNumber: 8471 -employeeType: Contract -homePhone: +1 213 964-3019 -initials: M. D. -mobile: +1 213 205-6526 -pager: +1 213 131-2542 -roomNumber: 9193 -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shelly Cavan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelly Cavan -sn: Cavan -description: This is Shelly Cavan's description -facsimileTelephoneNumber: +1 415 190-2782 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 930-3768 -title: Chief Administrative Engineer -userPassword: Password1 -uid: CavanS -givenName: Shelly -mail: CavanS@ae61f912d37d41959ec8fa8339b2d969.bitwarden.com -carLicense: MD0WPJ -departmentNumber: 1958 -employeeType: Normal -homePhone: +1 415 195-3714 -initials: S. C. -mobile: +1 415 690-1460 -pager: +1 415 790-8948 -roomNumber: 8298 -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryce Luetchford -sn: Luetchford -description: This is Bryce Luetchford's description -facsimileTelephoneNumber: +1 408 305-1911 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 633-1637 -title: Associate Management Czar -userPassword: Password1 -uid: LuetchfB -givenName: Bryce -mail: LuetchfB@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com -carLicense: 5XQ5QC -departmentNumber: 9362 -employeeType: Contract -homePhone: +1 408 568-1621 -initials: B. L. -mobile: +1 408 785-1136 -pager: +1 408 456-3033 -roomNumber: 8694 -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariana Munden -sn: Munden -description: This is Mariana Munden's description -facsimileTelephoneNumber: +1 408 776-1784 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 408 594-4176 -title: Master Administrative Developer -userPassword: Password1 -uid: MundenM -givenName: Mariana -mail: MundenM@2578fec05f3c4caebb2ed35da0948626.bitwarden.com -carLicense: WOSW0K -departmentNumber: 7008 -employeeType: Employee -homePhone: +1 408 732-9455 -initials: M. M. -mobile: +1 408 163-8503 -pager: +1 408 981-4199 -roomNumber: 9258 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lawrence MACKenzie -sn: MACKenzie -description: This is Lawrence MACKenzie's description -facsimileTelephoneNumber: +1 206 473-9268 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 701-7750 -title: Supreme Product Testing Figurehead -userPassword: Password1 -uid: MACKenzL -givenName: Lawrence -mail: MACKenzL@abe51797f5124683a93236751a4e6fc3.bitwarden.com -carLicense: 7W9FBX -departmentNumber: 9260 -employeeType: Employee -homePhone: +1 206 241-9523 -initials: L. M. -mobile: +1 206 249-7981 -pager: +1 206 273-3416 -roomNumber: 9833 -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Morris Pafilis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morris Pafilis -sn: Pafilis -description: This is Morris Pafilis's description -facsimileTelephoneNumber: +1 510 551-6660 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 268-4316 -title: Junior Peons Artist -userPassword: Password1 -uid: PafilisM -givenName: Morris -mail: PafilisM@4c3f9ac9725344988223c5450f40e73e.bitwarden.com -carLicense: UIG8PJ -departmentNumber: 4861 -employeeType: Employee -homePhone: +1 510 437-4984 -initials: M. P. -mobile: +1 510 431-9297 -pager: +1 510 195-9157 -roomNumber: 8074 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shirl Clipperton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirl Clipperton -sn: Clipperton -description: This is Shirl Clipperton's description -facsimileTelephoneNumber: +1 510 440-2235 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 991-1767 -title: Master Payroll Janitor -userPassword: Password1 -uid: ClipperS -givenName: Shirl -mail: ClipperS@6f1536f416b1420eb770d530c5bda521.bitwarden.com -carLicense: YKA2TB -departmentNumber: 4599 -employeeType: Contract -homePhone: +1 510 578-6033 -initials: S. C. -mobile: +1 510 790-2877 -pager: +1 510 330-3360 -roomNumber: 8035 -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leona Buchko -sn: Buchko -description: This is Leona Buchko's description -facsimileTelephoneNumber: +1 510 510-3957 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 406-8814 -title: Junior Janitorial Punk -userPassword: Password1 -uid: BuchkoL -givenName: Leona -mail: BuchkoL@318e6f8cd7334449ba69aed9ea189bd4.bitwarden.com -carLicense: KU5QD7 -departmentNumber: 7836 -employeeType: Contract -homePhone: +1 510 106-4302 -initials: L. B. -mobile: +1 510 577-5162 -pager: +1 510 165-2009 -roomNumber: 8423 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tybi Welsford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tybi Welsford -sn: Welsford -description: This is Tybi Welsford's description -facsimileTelephoneNumber: +1 206 132-7949 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 460-3908 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: WelsforT -givenName: Tybi -mail: WelsforT@b8436b0997234174a1d3652199251b81.bitwarden.com -carLicense: DC0FQO -departmentNumber: 5221 -employeeType: Contract -homePhone: +1 206 211-8797 -initials: T. W. -mobile: +1 206 399-7180 -pager: +1 206 553-9703 -roomNumber: 8258 -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baris Derome -sn: Derome -description: This is Baris Derome's description -facsimileTelephoneNumber: +1 804 961-9884 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 198-2729 -title: Chief Payroll Admin -userPassword: Password1 -uid: DeromeB -givenName: Baris -mail: DeromeB@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com -carLicense: 13RQAM -departmentNumber: 3695 -employeeType: Normal -homePhone: +1 804 829-3223 -initials: B. D. -mobile: +1 804 877-8659 -pager: +1 804 691-1364 -roomNumber: 9336 -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Munir Dickford,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Munir Dickford -sn: Dickford -description: This is Munir Dickford's description -facsimileTelephoneNumber: +1 818 699-5821 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 620-4660 -title: Master Administrative President -userPassword: Password1 -uid: DickforM -givenName: Munir -mail: DickforM@7f5616c56b8c4a60ad958a3ffbba9f8e.bitwarden.com -carLicense: TJQFJJ -departmentNumber: 7286 -employeeType: Contract -homePhone: +1 818 679-5425 -initials: M. D. -mobile: +1 818 533-4160 -pager: +1 818 495-8523 -roomNumber: 8651 -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ailsun Yvon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailsun Yvon -sn: Yvon -description: This is Ailsun Yvon's description -facsimileTelephoneNumber: +1 206 799-5904 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 103-9152 -title: Supreme Administrative Admin -userPassword: Password1 -uid: YvonA -givenName: Ailsun -mail: YvonA@fded6a4ffab747d786306ddc62c3c811.bitwarden.com -carLicense: SXPTW9 -departmentNumber: 9057 -employeeType: Normal -homePhone: +1 206 571-1681 -initials: A. Y. -mobile: +1 206 829-4313 -pager: +1 206 817-2963 -roomNumber: 9130 -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jeffery Becquart,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeffery Becquart -sn: Becquart -description: This is Jeffery Becquart's description -facsimileTelephoneNumber: +1 408 397-9471 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 194-5628 -title: Associate Peons Pinhead -userPassword: Password1 -uid: BecquarJ -givenName: Jeffery -mail: BecquarJ@a8bd7981e56041ddac5e4b90f0535dfa.bitwarden.com -carLicense: JW3C5F -departmentNumber: 1987 -employeeType: Normal -homePhone: +1 408 959-5641 -initials: J. B. -mobile: +1 408 412-5393 -pager: +1 408 952-1682 -roomNumber: 9974 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cindelyn Capozzi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cindelyn Capozzi -sn: Capozzi -description: This is Cindelyn Capozzi's description -facsimileTelephoneNumber: +1 415 748-6900 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 939-9583 -title: Supreme Management Manager -userPassword: Password1 -uid: CapozziC -givenName: Cindelyn -mail: CapozziC@4683d74c822246798b509a58b74b661d.bitwarden.com -carLicense: FEYJ8M -departmentNumber: 6193 -employeeType: Contract -homePhone: +1 415 691-7736 -initials: C. C. -mobile: +1 415 396-2966 -pager: +1 415 823-1684 -roomNumber: 9868 -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Regan Hesse,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regan Hesse -sn: Hesse -description: This is Regan Hesse's description -facsimileTelephoneNumber: +1 510 441-8819 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 874-8421 -title: Supreme Product Development Punk -userPassword: Password1 -uid: HesseR -givenName: Regan -mail: HesseR@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com -carLicense: N1O2OC -departmentNumber: 4885 -employeeType: Contract -homePhone: +1 510 938-2589 -initials: R. H. -mobile: +1 510 880-2783 -pager: +1 510 422-6696 -roomNumber: 9012 -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aida Blackwell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aida Blackwell -sn: Blackwell -description: This is Aida Blackwell's description -facsimileTelephoneNumber: +1 213 324-1891 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 124-4577 -title: Master Payroll Engineer -userPassword: Password1 -uid: BlackweA -givenName: Aida -mail: BlackweA@75230f61780f4e0e9cf624359c2b6622.bitwarden.com -carLicense: NK7GYF -departmentNumber: 4390 -employeeType: Contract -homePhone: +1 213 771-2716 -initials: A. B. -mobile: +1 213 693-2515 -pager: +1 213 829-7282 -roomNumber: 9799 -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com - -dn: cn=Justine Aguirre,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Justine Aguirre -sn: Aguirre -description: This is Justine Aguirre's description -facsimileTelephoneNumber: +1 818 980-8393 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 395-7303 -title: Supreme Product Development President -userPassword: Password1 -uid: AguirreJ -givenName: Justine -mail: AguirreJ@8c4f062c4385431b8ef3682c208e76a0.bitwarden.com -carLicense: 3A9YXO -departmentNumber: 9666 -employeeType: Contract -homePhone: +1 818 403-8202 -initials: J. A. -mobile: +1 818 284-3464 -pager: +1 818 317-6889 -roomNumber: 9667 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maurene Zafarullah,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurene Zafarullah -sn: Zafarullah -description: This is Maurene Zafarullah's description -facsimileTelephoneNumber: +1 213 333-6174 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 442-6624 -title: Junior Management Writer -userPassword: Password1 -uid: ZafarulM -givenName: Maurene -mail: ZafarulM@6f2328709fbe4233b85bba3d4ce3d844.bitwarden.com -carLicense: CCM8GM -departmentNumber: 3390 -employeeType: Normal -homePhone: +1 213 632-8107 -initials: M. Z. -mobile: +1 213 558-2295 -pager: +1 213 793-1281 -roomNumber: 9990 -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sohayla Whaley -sn: Whaley -description: This is Sohayla Whaley's description -facsimileTelephoneNumber: +1 804 543-5485 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 609-8821 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: WhaleyS -givenName: Sohayla -mail: WhaleyS@68e96d35b7bb4addbceb19d0fa830ff5.bitwarden.com -carLicense: XEGA18 -departmentNumber: 9869 -employeeType: Normal -homePhone: +1 804 268-5525 -initials: S. W. -mobile: +1 804 755-4549 -pager: +1 804 197-9239 -roomNumber: 9520 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karita Donovan -sn: Donovan -description: This is Karita Donovan's description -facsimileTelephoneNumber: +1 510 198-9472 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 794-2946 -title: Master Product Testing Stooge -userPassword: Password1 -uid: DonovanK -givenName: Karita -mail: DonovanK@612e506d26154bfda9f499632b50c09f.bitwarden.com -carLicense: 19796X -departmentNumber: 8995 -employeeType: Employee -homePhone: +1 510 815-5002 -initials: K. D. -mobile: +1 510 648-3608 -pager: +1 510 287-5483 -roomNumber: 9643 -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaw Lantto -sn: Lantto -description: This is Shaw Lantto's description -facsimileTelephoneNumber: +1 206 670-9470 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 859-8535 -title: Associate Product Testing Director -userPassword: Password1 -uid: LanttoS -givenName: Shaw -mail: LanttoS@30919d15fb3f4281a17499420dcfbd91.bitwarden.com -carLicense: IWNA4Q -departmentNumber: 5254 -employeeType: Contract -homePhone: +1 206 161-3379 -initials: S. L. -mobile: +1 206 847-4329 -pager: +1 206 441-3999 -roomNumber: 9691 -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gwen Prog,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwen Prog -sn: Prog -description: This is Gwen Prog's description -facsimileTelephoneNumber: +1 510 541-9438 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 681-3734 -title: Supreme Peons Evangelist -userPassword: Password1 -uid: ProgG -givenName: Gwen -mail: ProgG@d95fe89a4d1149c9bcf3a6baa177125b.bitwarden.com -carLicense: MHGQVB -departmentNumber: 9525 -employeeType: Contract -homePhone: +1 510 761-7092 -initials: G. P. -mobile: +1 510 937-5202 -pager: +1 510 176-4400 -roomNumber: 9589 -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cecile Evans -sn: Evans -description: This is Cecile Evans's description -facsimileTelephoneNumber: +1 818 997-9637 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 818 575-7405 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: EvansC -givenName: Cecile -mail: EvansC@63186a053fb840c4904ffef80f864eb8.bitwarden.com -carLicense: PUR3JK -departmentNumber: 1308 -employeeType: Normal -homePhone: +1 818 892-5960 -initials: C. E. -mobile: +1 818 386-2129 -pager: +1 818 880-7394 -roomNumber: 8388 -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ringo Campara -sn: Campara -description: This is Ringo Campara's description -facsimileTelephoneNumber: +1 818 734-3335 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 818 701-1263 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: CamparaR -givenName: Ringo -mail: CamparaR@053a5e187b0b4033abb4000d18053cd9.bitwarden.com -carLicense: L2BDRX -departmentNumber: 8358 -employeeType: Contract -homePhone: +1 818 749-5420 -initials: R. C. -mobile: +1 818 223-5077 -pager: +1 818 504-7153 -roomNumber: 9202 -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melonie Loveland -sn: Loveland -description: This is Melonie Loveland's description -facsimileTelephoneNumber: +1 415 715-3850 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 450-8138 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: LovelanM -givenName: Melonie -mail: LovelanM@b0139312a83c40d5aff228440731260a.bitwarden.com -carLicense: P5IULJ -departmentNumber: 6170 -employeeType: Employee -homePhone: +1 415 977-5047 -initials: M. L. -mobile: +1 415 911-6434 -pager: +1 415 761-9264 -roomNumber: 8983 -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Quinn Malizia,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quinn Malizia -sn: Malizia -description: This is Quinn Malizia's description -facsimileTelephoneNumber: +1 415 795-1386 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 382-2360 -title: Chief Payroll Consultant -userPassword: Password1 -uid: MaliziaQ -givenName: Quinn -mail: MaliziaQ@4026e9bfc98e483f893d2b9e6722e931.bitwarden.com -carLicense: 8UX6AS -departmentNumber: 4870 -employeeType: Employee -homePhone: +1 415 152-8363 -initials: Q. M. -mobile: +1 415 401-9735 -pager: +1 415 623-6277 -roomNumber: 8140 -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Virgie Slaby,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Virgie Slaby -sn: Slaby -description: This is Virgie Slaby's description -facsimileTelephoneNumber: +1 818 473-8440 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 347-8117 -title: Junior Management Architect -userPassword: Password1 -uid: SlabyV -givenName: Virgie -mail: SlabyV@c57373b0d5374d00a3d6688cc686509b.bitwarden.com -carLicense: LG9031 -departmentNumber: 3095 -employeeType: Normal -homePhone: +1 818 924-8067 -initials: V. S. -mobile: +1 818 450-8975 -pager: +1 818 275-5162 -roomNumber: 8496 -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toyanne Smedema -sn: Smedema -description: This is Toyanne Smedema's description -facsimileTelephoneNumber: +1 804 120-6809 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 804 164-4670 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: SmedemaT -givenName: Toyanne -mail: SmedemaT@e498ba2a91544031964c1fffed4ef12c.bitwarden.com -carLicense: JQSBQ0 -departmentNumber: 5718 -employeeType: Contract -homePhone: +1 804 307-6865 -initials: T. S. -mobile: +1 804 381-6265 -pager: +1 804 117-1835 -roomNumber: 8297 -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kamil Daniells,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamil Daniells -sn: Daniells -description: This is Kamil Daniells's description -facsimileTelephoneNumber: +1 408 639-2490 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 985-3346 -title: Master Product Testing Janitor -userPassword: Password1 -uid: DaniellK -givenName: Kamil -mail: DaniellK@7c43e52d9b034f3bbc23711903010993.bitwarden.com -carLicense: 19I2Y7 -departmentNumber: 4006 -employeeType: Contract -homePhone: +1 408 474-4129 -initials: K. D. -mobile: +1 408 670-6936 -pager: +1 408 357-1846 -roomNumber: 9738 -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bevvy Dalloste,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bevvy Dalloste -sn: Dalloste -description: This is Bevvy Dalloste's description -facsimileTelephoneNumber: +1 408 226-9941 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 614-9703 -title: Master Management Assistant -userPassword: Password1 -uid: DallostB -givenName: Bevvy -mail: DallostB@741f68246b944172a356682db963a82d.bitwarden.com -carLicense: HVX2SE -departmentNumber: 7967 -employeeType: Employee -homePhone: +1 408 135-6632 -initials: B. D. -mobile: +1 408 404-7052 -pager: +1 408 460-2610 -roomNumber: 8513 -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henrie Lobianco -sn: Lobianco -description: This is Henrie Lobianco's description -facsimileTelephoneNumber: +1 510 346-6532 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 484-8444 -title: Master Product Testing Fellow -userPassword: Password1 -uid: LobiancH -givenName: Henrie -mail: LobiancH@a96cfc77d7fd4aca9d37da4b46aad39b.bitwarden.com -carLicense: ENHOA1 -departmentNumber: 8362 -employeeType: Normal -homePhone: +1 510 624-3766 -initials: H. L. -mobile: +1 510 219-1979 -pager: +1 510 608-1849 -roomNumber: 9222 -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Perri Gaylor,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perri Gaylor -sn: Gaylor -description: This is Perri Gaylor's description -facsimileTelephoneNumber: +1 804 344-1390 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 193-4833 -title: Junior Administrative Czar -userPassword: Password1 -uid: GaylorP -givenName: Perri -mail: GaylorP@526b2e31e79b488fb63ef0570005204a.bitwarden.com -carLicense: KDXCJH -departmentNumber: 4595 -employeeType: Normal -homePhone: +1 804 898-3828 -initials: P. G. -mobile: +1 804 157-9202 -pager: +1 804 666-6685 -roomNumber: 8080 -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Klink Bruneau,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klink Bruneau -sn: Bruneau -description: This is Klink Bruneau's description -facsimileTelephoneNumber: +1 206 185-4195 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 884-6611 -title: Supreme Management Artist -userPassword: Password1 -uid: BruneauK -givenName: Klink -mail: BruneauK@471393a67ebd4f51b67e7d9aeec04e67.bitwarden.com -carLicense: RXAUU5 -departmentNumber: 9991 -employeeType: Contract -homePhone: +1 206 909-6235 -initials: K. B. -mobile: +1 206 839-7478 -pager: +1 206 775-7501 -roomNumber: 8318 -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Siamack Dace,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siamack Dace -sn: Dace -description: This is Siamack Dace's description -facsimileTelephoneNumber: +1 510 449-6479 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 886-3443 -title: Master Administrative Admin -userPassword: Password1 -uid: DaceS -givenName: Siamack -mail: DaceS@d4d56842eb064bd38446a254d77ceab5.bitwarden.com -carLicense: UMD6TC -departmentNumber: 8541 -employeeType: Employee -homePhone: +1 510 278-8418 -initials: S. D. -mobile: +1 510 570-6081 -pager: +1 510 836-6396 -roomNumber: 8745 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Everette Shivcharan -sn: Shivcharan -description: This is Everette Shivcharan's description -facsimileTelephoneNumber: +1 804 165-5780 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 539-1097 -title: Chief Janitorial Architect -userPassword: Password1 -uid: ShivchaE -givenName: Everette -mail: ShivchaE@e89ca6a0c26a42d387c16cb15d267c2d.bitwarden.com -carLicense: R9C0II -departmentNumber: 2643 -employeeType: Employee -homePhone: +1 804 465-1568 -initials: E. S. -mobile: +1 804 672-7521 -pager: +1 804 449-4676 -roomNumber: 9625 -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jay Ginest,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jay Ginest -sn: Ginest -description: This is Jay Ginest's description -facsimileTelephoneNumber: +1 818 334-9275 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 825-4617 -title: Chief Human Resources Developer -userPassword: Password1 -uid: GinestJ -givenName: Jay -mail: GinestJ@3cccd227e41948e79986f554706a7781.bitwarden.com -carLicense: DWYFSF -departmentNumber: 5695 -employeeType: Employee -homePhone: +1 818 905-6332 -initials: J. G. -mobile: +1 818 205-1168 -pager: +1 818 185-7097 -roomNumber: 8897 -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wilona Caudle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilona Caudle -sn: Caudle -description: This is Wilona Caudle's description -facsimileTelephoneNumber: +1 510 198-2584 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 616-3261 -title: Associate Product Development Visionary -userPassword: Password1 -uid: CaudleW -givenName: Wilona -mail: CaudleW@90463e36c9634ed7af09a58415debfe0.bitwarden.com -carLicense: G21IN6 -departmentNumber: 6719 -employeeType: Employee -homePhone: +1 510 952-5660 -initials: W. C. -mobile: +1 510 125-9427 -pager: +1 510 448-6178 -roomNumber: 9508 -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ulrike Nevardauskis -sn: Nevardauskis -description: This is Ulrike Nevardauskis's description -facsimileTelephoneNumber: +1 213 678-6277 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 213 479-8056 -title: Associate Product Development Manager -userPassword: Password1 -uid: NevardaU -givenName: Ulrike -mail: NevardaU@83146e7f57ba40bd8fd147c075fc9a0d.bitwarden.com -carLicense: E4NSF6 -departmentNumber: 8383 -employeeType: Employee -homePhone: +1 213 338-5214 -initials: U. N. -mobile: +1 213 773-3097 -pager: +1 213 635-3658 -roomNumber: 9583 -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siamak Gibeault -sn: Gibeault -description: This is Siamak Gibeault's description -facsimileTelephoneNumber: +1 408 285-3502 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 408 297-5192 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: GibeaulS -givenName: Siamak -mail: GibeaulS@d449a5092c5940c4981c5759373cd556.bitwarden.com -carLicense: WN5N6K -departmentNumber: 3905 -employeeType: Contract -homePhone: +1 408 856-8512 -initials: S. G. -mobile: +1 408 711-9103 -pager: +1 408 352-1215 -roomNumber: 8972 -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Laz Plante,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laz Plante -sn: Plante -description: This is Laz Plante's description -facsimileTelephoneNumber: +1 415 976-8633 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 156-9083 -title: Junior Product Development Admin -userPassword: Password1 -uid: PlanteL -givenName: Laz -mail: PlanteL@737f5132e7a343ceaab6a20163c2ba4e.bitwarden.com -carLicense: NHDMXP -departmentNumber: 6252 -employeeType: Contract -homePhone: +1 415 889-3060 -initials: L. P. -mobile: +1 415 682-3421 -pager: +1 415 602-1294 -roomNumber: 9351 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meghan Kathnelson -sn: Kathnelson -description: This is Meghan Kathnelson's description -facsimileTelephoneNumber: +1 818 402-9540 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 803-7853 -title: Chief Administrative Madonna -userPassword: Password1 -uid: KathnelM -givenName: Meghan -mail: KathnelM@7ab7643662f14cef84497ec647fde7ff.bitwarden.com -carLicense: IPFLWY -departmentNumber: 7776 -employeeType: Contract -homePhone: +1 818 214-4307 -initials: M. K. -mobile: +1 818 248-6987 -pager: +1 818 260-8899 -roomNumber: 9001 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellene Holberry -sn: Holberry -description: This is Ellene Holberry's description -facsimileTelephoneNumber: +1 415 984-5588 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 717-8881 -title: Master Administrative Artist -userPassword: Password1 -uid: HolberrE -givenName: Ellene -mail: HolberrE@0c0cb73653474aa4b8a172e8089ffde7.bitwarden.com -carLicense: O0D2JM -departmentNumber: 5525 -employeeType: Employee -homePhone: +1 415 454-2446 -initials: E. H. -mobile: +1 415 464-6973 -pager: +1 415 656-9832 -roomNumber: 9693 -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Niel McComb,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niel McComb -sn: McComb -description: This is Niel McComb's description -facsimileTelephoneNumber: +1 804 103-1140 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 804 380-6411 -title: Master Peons Developer -userPassword: Password1 -uid: McCombN -givenName: Niel -mail: McCombN@840c6c20816640f3a23c22832cd051de.bitwarden.com -carLicense: ILISO2 -departmentNumber: 2316 -employeeType: Contract -homePhone: +1 804 250-9054 -initials: N. M. -mobile: +1 804 795-7110 -pager: +1 804 493-3766 -roomNumber: 8956 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anni Demchuk -sn: Demchuk -description: This is Anni Demchuk's description -facsimileTelephoneNumber: +1 206 261-7312 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 206 644-7983 -title: Supreme Human Resources Architect -userPassword: Password1 -uid: DemchukA -givenName: Anni -mail: DemchukA@75230f61780f4e0e9cf624359c2b6622.bitwarden.com -carLicense: 6KWK6Y -departmentNumber: 9970 -employeeType: Employee -homePhone: +1 206 416-8409 -initials: A. D. -mobile: +1 206 278-4342 -pager: +1 206 822-9888 -roomNumber: 8931 -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chen Crosson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chen Crosson -sn: Crosson -description: This is Chen Crosson's description -facsimileTelephoneNumber: +1 415 622-7213 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 890-9285 -title: Associate Janitorial Figurehead -userPassword: Password1 -uid: CrossonC -givenName: Chen -mail: CrossonC@948fee4ac0644e21a6b3abc34aeaa20f.bitwarden.com -carLicense: 8EEFT5 -departmentNumber: 4409 -employeeType: Contract -homePhone: +1 415 848-5547 -initials: C. C. -mobile: +1 415 948-2756 -pager: +1 415 319-4099 -roomNumber: 8345 -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ammamaria Barsony -sn: Barsony -description: This is Ammamaria Barsony's description -facsimileTelephoneNumber: +1 510 305-2091 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 971-1942 -title: Supreme Janitorial Director -userPassword: Password1 -uid: BarsonyA -givenName: Ammamaria -mail: BarsonyA@ac405217bf53481daa900e9995e259fe.bitwarden.com -carLicense: ENVMSM -departmentNumber: 8896 -employeeType: Contract -homePhone: +1 510 141-2022 -initials: A. B. -mobile: +1 510 625-3874 -pager: +1 510 439-5125 -roomNumber: 9312 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Justina Kirkwood -sn: Kirkwood -description: This is Justina Kirkwood's description -facsimileTelephoneNumber: +1 818 451-7503 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 649-9697 -title: Associate Human Resources Technician -userPassword: Password1 -uid: KirkwooJ -givenName: Justina -mail: KirkwooJ@b154fab59ca14553be1151ffa2cd4d97.bitwarden.com -carLicense: F86QAK -departmentNumber: 7319 -employeeType: Employee -homePhone: +1 818 192-8453 -initials: J. K. -mobile: +1 818 115-3360 -pager: +1 818 371-6898 -roomNumber: 9060 -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lonna Leong,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lonna Leong -sn: Leong -description: This is Lonna Leong's description -facsimileTelephoneNumber: +1 408 909-2660 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 695-5669 -title: Master Administrative Warrior -userPassword: Password1 -uid: LeongL -givenName: Lonna -mail: LeongL@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com -carLicense: JYUKVQ -departmentNumber: 1790 -employeeType: Contract -homePhone: +1 408 615-8322 -initials: L. L. -mobile: +1 408 908-8012 -pager: +1 408 378-8530 -roomNumber: 9731 -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Drusie Prewitt,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drusie Prewitt -sn: Prewitt -description: This is Drusie Prewitt's description -facsimileTelephoneNumber: +1 415 210-4480 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 415 794-3149 -title: Chief Management Czar -userPassword: Password1 -uid: PrewittD -givenName: Drusie -mail: PrewittD@52bca4c594a04715b5715f08c172758d.bitwarden.com -carLicense: DG6IR4 -departmentNumber: 1427 -employeeType: Normal -homePhone: +1 415 172-3994 -initials: D. P. -mobile: +1 415 916-3650 -pager: +1 415 182-2759 -roomNumber: 9393 -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulciana Gendron -sn: Gendron -description: This is Dulciana Gendron's description -facsimileTelephoneNumber: +1 408 894-9617 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 408 131-5835 -title: Junior Janitorial Stooge -userPassword: Password1 -uid: GendronD -givenName: Dulciana -mail: GendronD@3c11f573de8f4908ada18c7fd8a1cb8d.bitwarden.com -carLicense: 6HII1A -departmentNumber: 4469 -employeeType: Contract -homePhone: +1 408 996-9666 -initials: D. G. -mobile: +1 408 440-9830 -pager: +1 408 980-9630 -roomNumber: 8954 -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jen Assenza,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jen Assenza -sn: Assenza -description: This is Jen Assenza's description -facsimileTelephoneNumber: +1 804 762-9427 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 273-5583 -title: Junior Peons Manager -userPassword: Password1 -uid: AssenzaJ -givenName: Jen -mail: AssenzaJ@4a47e69492284601911d68b00175e387.bitwarden.com -carLicense: FN0TQG -departmentNumber: 7579 -employeeType: Employee -homePhone: +1 804 602-3393 -initials: J. A. -mobile: +1 804 919-3206 -pager: +1 804 225-5641 -roomNumber: 8096 -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lynnet Henshaw,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynnet Henshaw -sn: Henshaw -description: This is Lynnet Henshaw's description -facsimileTelephoneNumber: +1 804 720-1638 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 804 413-2831 -title: Junior Management Engineer -userPassword: Password1 -uid: HenshawL -givenName: Lynnet -mail: HenshawL@4d62425a140c4e9283e4fbe1fb7421be.bitwarden.com -carLicense: 01NBFR -departmentNumber: 5864 -employeeType: Contract -homePhone: +1 804 217-4711 -initials: L. H. -mobile: +1 804 766-8652 -pager: +1 804 685-8108 -roomNumber: 8100 -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wanids Pepper,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wanids Pepper -sn: Pepper -description: This is Wanids Pepper's description -facsimileTelephoneNumber: +1 818 463-5820 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 467-6553 -title: Chief Administrative Architect -userPassword: Password1 -uid: PepperW -givenName: Wanids -mail: PepperW@ea9e0894161f45a1a243f11b80970704.bitwarden.com -carLicense: W4O5KS -departmentNumber: 4174 -employeeType: Contract -homePhone: +1 818 337-7572 -initials: W. P. -mobile: +1 818 384-2023 -pager: +1 818 846-4237 -roomNumber: 8152 -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tamara Ahlers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamara Ahlers -sn: Ahlers -description: This is Tamara Ahlers's description -facsimileTelephoneNumber: +1 408 705-7687 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 249-5137 -title: Master Payroll Czar -userPassword: Password1 -uid: AhlersT -givenName: Tamara -mail: AhlersT@f435a2b95da94bf4a1e437105cc89fad.bitwarden.com -carLicense: RV4TT7 -departmentNumber: 8153 -employeeType: Contract -homePhone: +1 408 961-4960 -initials: T. A. -mobile: +1 408 132-1910 -pager: +1 408 731-6450 -roomNumber: 9279 -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karilynn Roddick -sn: Roddick -description: This is Karilynn Roddick's description -facsimileTelephoneNumber: +1 415 277-4642 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 866-8229 -title: Junior Product Development Artist -userPassword: Password1 -uid: RoddickK -givenName: Karilynn -mail: RoddickK@ab04014fcfcf443881ea178cd34f1aab.bitwarden.com -carLicense: YF42HG -departmentNumber: 2053 -employeeType: Normal -homePhone: +1 415 351-1931 -initials: K. R. -mobile: +1 415 794-4052 -pager: +1 415 891-9980 -roomNumber: 9215 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mariesara CamelToueg,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariesara CamelToueg -sn: CamelToueg -description: This is Mariesara CamelToueg's description -facsimileTelephoneNumber: +1 408 674-4053 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 731-6233 -title: Associate Management Sales Rep -userPassword: Password1 -uid: CamelToM -givenName: Mariesara -mail: CamelToM@528cdf5245b64779b73a856ecc3f4a50.bitwarden.com -carLicense: 35BXET -departmentNumber: 4576 -employeeType: Employee -homePhone: +1 408 302-3839 -initials: M. C. -mobile: +1 408 271-8804 -pager: +1 408 107-5856 -roomNumber: 8534 -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doe Yowell -sn: Yowell -description: This is Doe Yowell's description -facsimileTelephoneNumber: +1 510 163-2832 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 343-7672 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: YowellD -givenName: Doe -mail: YowellD@46af47a358cc432b9e3e57dfdff8445e.bitwarden.com -carLicense: UV7QR9 -departmentNumber: 5099 -employeeType: Normal -homePhone: +1 510 125-4159 -initials: D. Y. -mobile: +1 510 547-5792 -pager: +1 510 407-3479 -roomNumber: 8089 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Deedee Mattes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deedee Mattes -sn: Mattes -description: This is Deedee Mattes's description -facsimileTelephoneNumber: +1 213 710-8582 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 742-8666 -title: Chief Human Resources Mascot -userPassword: Password1 -uid: MattesD -givenName: Deedee -mail: MattesD@fb55149cb2a74d6c9e271920a1046f2a.bitwarden.com -carLicense: JRUNDP -departmentNumber: 4767 -employeeType: Normal -homePhone: +1 213 180-1624 -initials: D. M. -mobile: +1 213 953-5483 -pager: +1 213 906-6804 -roomNumber: 9273 -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Luis Sinnett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luis Sinnett -sn: Sinnett -description: This is Luis Sinnett's description -facsimileTelephoneNumber: +1 818 644-9975 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 557-7550 -title: Junior Product Testing Assistant -userPassword: Password1 -uid: SinnettL -givenName: Luis -mail: SinnettL@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com -carLicense: LBYT2B -departmentNumber: 5642 -employeeType: Normal -homePhone: +1 818 220-7641 -initials: L. S. -mobile: +1 818 440-1574 -pager: +1 818 644-1759 -roomNumber: 9861 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elianore Sweetnam -sn: Sweetnam -description: This is Elianore Sweetnam's description -facsimileTelephoneNumber: +1 213 805-8555 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 975-2301 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: SweetnaE -givenName: Elianore -mail: SweetnaE@60e903b99c4f452b858f19d9843dcc15.bitwarden.com -carLicense: V69C39 -departmentNumber: 8292 -employeeType: Employee -homePhone: +1 213 555-4798 -initials: E. S. -mobile: +1 213 219-5600 -pager: +1 213 867-6105 -roomNumber: 9405 -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Evette Bouffard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evette Bouffard -sn: Bouffard -description: This is Evette Bouffard's description -facsimileTelephoneNumber: +1 408 628-2767 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 634-4117 -title: Chief Human Resources Stooge -userPassword: Password1 -uid: BouffarE -givenName: Evette -mail: BouffarE@a88363254d654a46a988ed9a05ced93a.bitwarden.com -carLicense: LTJYU0 -departmentNumber: 6753 -employeeType: Contract -homePhone: +1 408 622-8139 -initials: E. B. -mobile: +1 408 480-6928 -pager: +1 408 128-4620 -roomNumber: 8273 -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Armin Bakkum,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Armin Bakkum -sn: Bakkum -description: This is Armin Bakkum's description -facsimileTelephoneNumber: +1 818 471-2603 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 360-8704 -title: Master Human Resources Janitor -userPassword: Password1 -uid: BakkumA -givenName: Armin -mail: BakkumA@4bc388c8d1cb44a0a2404340d63cfe5b.bitwarden.com -carLicense: 333XR0 -departmentNumber: 1515 -employeeType: Employee -homePhone: +1 818 917-1403 -initials: A. B. -mobile: +1 818 655-6776 -pager: +1 818 678-8826 -roomNumber: 9787 -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Feliza Azizuddin -sn: Azizuddin -description: This is Feliza Azizuddin's description -facsimileTelephoneNumber: +1 818 477-1118 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 818 356-4148 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: AzizuddF -givenName: Feliza -mail: AzizuddF@6f1536f416b1420eb770d530c5bda521.bitwarden.com -carLicense: Q2OIMA -departmentNumber: 3196 -employeeType: Contract -homePhone: +1 818 710-9884 -initials: F. A. -mobile: +1 818 103-6961 -pager: +1 818 178-4833 -roomNumber: 9626 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Grady Gregorski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grady Gregorski -sn: Gregorski -description: This is Grady Gregorski's description -facsimileTelephoneNumber: +1 804 213-7715 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 362-6690 -title: Junior Administrative Warrior -userPassword: Password1 -uid: GregorsG -givenName: Grady -mail: GregorsG@75db2ded6c224e4da9fab555cc5d1c55.bitwarden.com -carLicense: VPKBML -departmentNumber: 4486 -employeeType: Employee -homePhone: +1 804 615-1138 -initials: G. G. -mobile: +1 804 598-2618 -pager: +1 804 477-6354 -roomNumber: 9194 -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ede Riggins -sn: Riggins -description: This is Ede Riggins's description -facsimileTelephoneNumber: +1 818 668-4759 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 987-3213 -title: Junior Administrative Figurehead -userPassword: Password1 -uid: RigginsE -givenName: Ede -mail: RigginsE@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com -carLicense: AC52W6 -departmentNumber: 7803 -employeeType: Normal -homePhone: +1 818 491-2103 -initials: E. R. -mobile: +1 818 223-8426 -pager: +1 818 475-1620 -roomNumber: 9290 -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisse Lemyre -sn: Lemyre -description: This is Melisse Lemyre's description -facsimileTelephoneNumber: +1 818 463-8957 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 618-6393 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: LemyreM -givenName: Melisse -mail: LemyreM@d9be0d61b3d04e0e964a2ed65ee39def.bitwarden.com -carLicense: EW2U7X -departmentNumber: 5333 -employeeType: Normal -homePhone: +1 818 202-6220 -initials: M. L. -mobile: +1 818 482-3874 -pager: +1 818 337-3484 -roomNumber: 8558 -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vi Biamonte,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vi Biamonte -sn: Biamonte -description: This is Vi Biamonte's description -facsimileTelephoneNumber: +1 206 411-4434 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 404-1965 -title: Master Management Fellow -userPassword: Password1 -uid: BiamontV -givenName: Vi -mail: BiamontV@394dfb035c4a4d4f9d0db1fc772d6f2c.bitwarden.com -carLicense: K6ABL2 -departmentNumber: 2055 -employeeType: Normal -homePhone: +1 206 657-2610 -initials: V. B. -mobile: +1 206 566-9502 -pager: +1 206 211-1494 -roomNumber: 9917 -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shauna Moizer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shauna Moizer -sn: Moizer -description: This is Shauna Moizer's description -facsimileTelephoneNumber: +1 415 330-6632 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 235-1416 -title: Master Janitorial Evangelist -userPassword: Password1 -uid: MoizerS -givenName: Shauna -mail: MoizerS@b134362a785742d6b5a1f5d5c2746e9a.bitwarden.com -carLicense: LLS6FE -departmentNumber: 9098 -employeeType: Contract -homePhone: +1 415 220-1730 -initials: S. M. -mobile: +1 415 489-9458 -pager: +1 415 178-9497 -roomNumber: 8237 -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramaprakash Eakins -sn: Eakins -description: This is Ramaprakash Eakins's description -facsimileTelephoneNumber: +1 818 946-2085 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 477-8195 -title: Supreme Payroll Artist -userPassword: Password1 -uid: EakinsR -givenName: Ramaprakash -mail: EakinsR@b57908d5940c498f802323dedcdd1fe7.bitwarden.com -carLicense: 5EX9CS -departmentNumber: 1016 -employeeType: Employee -homePhone: +1 818 707-2094 -initials: R. E. -mobile: +1 818 302-3024 -pager: +1 818 136-9974 -roomNumber: 9313 -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryanna Rao -sn: Rao -description: This is Maryanna Rao's description -facsimileTelephoneNumber: +1 415 914-1390 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 181-7189 -title: Supreme Payroll Fellow -userPassword: Password1 -uid: RaoM -givenName: Maryanna -mail: RaoM@e8149d5dfc6644b79cb026322f0adffe.bitwarden.com -carLicense: 5V3G1P -departmentNumber: 3110 -employeeType: Contract -homePhone: +1 415 570-1626 -initials: M. R. -mobile: +1 415 847-2338 -pager: +1 415 178-8341 -roomNumber: 9429 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kore Hedrick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kore Hedrick -sn: Hedrick -description: This is Kore Hedrick's description -facsimileTelephoneNumber: +1 818 650-6320 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 380-5312 -title: Supreme Management Vice President -userPassword: Password1 -uid: HedrickK -givenName: Kore -mail: HedrickK@dddb0ef21490453ca7770ab3e7c98c8a.bitwarden.com -carLicense: WB8A77 -departmentNumber: 7052 -employeeType: Employee -homePhone: +1 818 670-3074 -initials: K. H. -mobile: +1 818 151-3451 -pager: +1 818 251-5847 -roomNumber: 8069 -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cornelius Lafever -sn: Lafever -description: This is Cornelius Lafever's description -facsimileTelephoneNumber: +1 415 631-8425 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 787-4452 -title: Associate Janitorial Technician -userPassword: Password1 -uid: LafeverC -givenName: Cornelius -mail: LafeverC@bc5b48bcb0df42c9948c4c39df2e429f.bitwarden.com -carLicense: Y90YW5 -departmentNumber: 3883 -employeeType: Contract -homePhone: +1 415 675-2129 -initials: C. L. -mobile: +1 415 436-9109 -pager: +1 415 194-4342 -roomNumber: 8632 -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcelo Lobianco -sn: Lobianco -description: This is Marcelo Lobianco's description -facsimileTelephoneNumber: +1 415 709-4327 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 948-5782 -title: Chief Payroll Punk -userPassword: Password1 -uid: LobiancM -givenName: Marcelo -mail: LobiancM@bd9027744e31459db23a7217225fbe23.bitwarden.com -carLicense: G0O56O -departmentNumber: 5653 -employeeType: Contract -homePhone: +1 415 783-5182 -initials: M. L. -mobile: +1 415 283-1309 -pager: +1 415 475-9043 -roomNumber: 8905 -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cari GuyArbour -sn: GuyArbour -description: This is Cari GuyArbour's description -facsimileTelephoneNumber: +1 510 108-9064 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 158-1171 -title: Chief Product Testing Admin -userPassword: Password1 -uid: GuyArboC -givenName: Cari -mail: GuyArboC@50440101366043ed987d2eecbe048532.bitwarden.com -carLicense: OLJLGV -departmentNumber: 8567 -employeeType: Normal -homePhone: +1 510 230-3499 -initials: C. G. -mobile: +1 510 693-4076 -pager: +1 510 652-2959 -roomNumber: 8274 -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marris Legrove,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marris Legrove -sn: Legrove -description: This is Marris Legrove's description -facsimileTelephoneNumber: +1 510 880-5357 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 817-9121 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: LegroveM -givenName: Marris -mail: LegroveM@57ceba44120949db81f6e0d349dde456.bitwarden.com -carLicense: KOQYBM -departmentNumber: 7597 -employeeType: Employee -homePhone: +1 510 956-8020 -initials: M. L. -mobile: +1 510 496-7509 -pager: +1 510 503-7312 -roomNumber: 8286 -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilliard Sinasac -sn: Sinasac -description: This is Hilliard Sinasac's description -facsimileTelephoneNumber: +1 408 590-9015 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 274-3583 -title: Associate Payroll Dictator -userPassword: Password1 -uid: SinasacH -givenName: Hilliard -mail: SinasacH@6929241d20d8492688967f473f97d5ee.bitwarden.com -carLicense: 1BTJHQ -departmentNumber: 9317 -employeeType: Contract -homePhone: +1 408 307-1098 -initials: H. S. -mobile: +1 408 381-1526 -pager: +1 408 148-2903 -roomNumber: 8083 -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Olusola Hudson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olusola Hudson -sn: Hudson -description: This is Olusola Hudson's description -facsimileTelephoneNumber: +1 415 932-3321 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 721-3123 -title: Master Janitorial Evangelist -userPassword: Password1 -uid: HudsonO -givenName: Olusola -mail: HudsonO@8df0438ac9ae4a56af6789a0baa3c594.bitwarden.com -carLicense: A2RA8N -departmentNumber: 3462 -employeeType: Contract -homePhone: +1 415 146-2104 -initials: O. H. -mobile: +1 415 934-2517 -pager: +1 415 674-4080 -roomNumber: 8983 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cordula Lewandowski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cordula Lewandowski -sn: Lewandowski -description: This is Cordula Lewandowski's description -facsimileTelephoneNumber: +1 206 764-1922 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 342-9644 -title: Junior Management Evangelist -userPassword: Password1 -uid: LewandoC -givenName: Cordula -mail: LewandoC@aee41a45245c488583a4e60c217e30cb.bitwarden.com -carLicense: DTPN5O -departmentNumber: 7238 -employeeType: Normal -homePhone: +1 206 818-1777 -initials: C. L. -mobile: +1 206 853-7053 -pager: +1 206 101-7334 -roomNumber: 9851 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Olwen Salyer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olwen Salyer -sn: Salyer -description: This is Olwen Salyer's description -facsimileTelephoneNumber: +1 804 240-4825 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 254-3880 -title: Junior Management Madonna -userPassword: Password1 -uid: SalyerO -givenName: Olwen -mail: SalyerO@dcbfb0982f2b4bb7bdf60b8f61c36502.bitwarden.com -carLicense: V0OP6U -departmentNumber: 6697 -employeeType: Normal -homePhone: +1 804 866-3619 -initials: O. S. -mobile: +1 804 985-1400 -pager: +1 804 319-2921 -roomNumber: 8987 -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henny Balakrishnan -sn: Balakrishnan -description: This is Henny Balakrishnan's description -facsimileTelephoneNumber: +1 510 666-7750 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 827-2817 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: BalakriH -givenName: Henny -mail: BalakriH@5b3c54f47fc64ffbbe62b2e499081d43.bitwarden.com -carLicense: AJ4QS8 -departmentNumber: 3528 -employeeType: Employee -homePhone: +1 510 104-1551 -initials: H. B. -mobile: +1 510 213-9016 -pager: +1 510 516-9075 -roomNumber: 8972 -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kristine Guignon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristine Guignon -sn: Guignon -description: This is Kristine Guignon's description -facsimileTelephoneNumber: +1 408 267-7569 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 751-3151 -title: Associate Human Resources Stooge -userPassword: Password1 -uid: GuignonK -givenName: Kristine -mail: GuignonK@180993b547ec4c93a6ebea6992867699.bitwarden.com -carLicense: LBGOD3 -departmentNumber: 8329 -employeeType: Normal -homePhone: +1 408 803-8245 -initials: K. G. -mobile: +1 408 264-4259 -pager: +1 408 814-1313 -roomNumber: 8600 -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Daphna Leong,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphna Leong -sn: Leong -description: This is Daphna Leong's description -facsimileTelephoneNumber: +1 804 919-2132 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 804 954-6229 -title: Chief Janitorial Stooge -userPassword: Password1 -uid: LeongD -givenName: Daphna -mail: LeongD@d37901086196495ab5d77980959c7f35.bitwarden.com -carLicense: Q94TQ8 -departmentNumber: 2342 -employeeType: Normal -homePhone: +1 804 433-1351 -initials: D. L. -mobile: +1 804 799-9959 -pager: +1 804 565-5784 -roomNumber: 8898 -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Larysa Singer -sn: Singer -description: This is Larysa Singer's description -facsimileTelephoneNumber: +1 213 947-3175 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 254-6912 -title: Junior Product Development Figurehead -userPassword: Password1 -uid: SingerL -givenName: Larysa -mail: SingerL@e68f51f1d9244f0a8bff7f138347479d.bitwarden.com -carLicense: UQAJON -departmentNumber: 5913 -employeeType: Employee -homePhone: +1 213 951-5049 -initials: L. S. -mobile: +1 213 137-4096 -pager: +1 213 424-6631 -roomNumber: 9156 -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilmi Spohn -sn: Spohn -description: This is Hilmi Spohn's description -facsimileTelephoneNumber: +1 408 412-2400 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 543-9279 -title: Supreme Product Development Artist -userPassword: Password1 -uid: SpohnH -givenName: Hilmi -mail: SpohnH@2699c3099b704f2ba70219415c473196.bitwarden.com -carLicense: S3CUOX -departmentNumber: 8231 -employeeType: Employee -homePhone: +1 408 705-1017 -initials: H. S. -mobile: +1 408 244-1280 -pager: +1 408 820-1897 -roomNumber: 8081 -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sharity Fusca,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharity Fusca -sn: Fusca -description: This is Sharity Fusca's description -facsimileTelephoneNumber: +1 510 359-8918 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 296-7724 -title: Junior Peons Madonna -userPassword: Password1 -uid: FuscaS -givenName: Sharity -mail: FuscaS@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com -carLicense: F4KHQ7 -departmentNumber: 8529 -employeeType: Contract -homePhone: +1 510 285-7096 -initials: S. F. -mobile: +1 510 262-6385 -pager: +1 510 420-8135 -roomNumber: 9965 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kendre Favrot -sn: Favrot -description: This is Kendre Favrot's description -facsimileTelephoneNumber: +1 510 483-5229 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 251-6231 -title: Supreme Janitorial Punk -userPassword: Password1 -uid: FavrotK -givenName: Kendre -mail: FavrotK@f6866989cc784904871bcaa73d189a85.bitwarden.com -carLicense: 9I6GGY -departmentNumber: 2608 -employeeType: Employee -homePhone: +1 510 585-1690 -initials: K. F. -mobile: +1 510 967-5422 -pager: +1 510 712-3786 -roomNumber: 9553 -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pit Cotuna,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pit Cotuna -sn: Cotuna -description: This is Pit Cotuna's description -facsimileTelephoneNumber: +1 415 591-6134 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 628-1191 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: CotunaP -givenName: Pit -mail: CotunaP@3a582b3bf0c346c09f92fe33efef44dc.bitwarden.com -carLicense: ABJEK2 -departmentNumber: 9365 -employeeType: Employee -homePhone: +1 415 154-5210 -initials: P. C. -mobile: +1 415 734-8773 -pager: +1 415 327-8255 -roomNumber: 8497 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carma Mattiussi -sn: Mattiussi -description: This is Carma Mattiussi's description -facsimileTelephoneNumber: +1 206 512-2923 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 277-5736 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: MattiusC -givenName: Carma -mail: MattiusC@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com -carLicense: 6L2P73 -departmentNumber: 8705 -employeeType: Normal -homePhone: +1 206 953-3500 -initials: C. M. -mobile: +1 206 896-4590 -pager: +1 206 992-2961 -roomNumber: 8524 -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucky Maliepaard -sn: Maliepaard -description: This is Lucky Maliepaard's description -facsimileTelephoneNumber: +1 510 533-5335 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 753-2557 -title: Supreme Payroll Fellow -userPassword: Password1 -uid: MaliepaL -givenName: Lucky -mail: MaliepaL@f0ddebf82b7547be9ea16dacf25cc0a8.bitwarden.com -carLicense: 75XO33 -departmentNumber: 1347 -employeeType: Normal -homePhone: +1 510 681-6111 -initials: L. M. -mobile: +1 510 550-7726 -pager: +1 510 481-6232 -roomNumber: 9178 -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Leeann Staring,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leeann Staring -sn: Staring -description: This is Leeann Staring's description -facsimileTelephoneNumber: +1 213 821-9612 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 884-5069 -title: Master Administrative Developer -userPassword: Password1 -uid: StaringL -givenName: Leeann -mail: StaringL@951421a2e53b48ba8767b74d986be6dd.bitwarden.com -carLicense: 88LFVS -departmentNumber: 5599 -employeeType: Employee -homePhone: +1 213 120-3531 -initials: L. S. -mobile: +1 213 809-7594 -pager: +1 213 535-5680 -roomNumber: 8020 -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Indiana Bodford,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Indiana Bodford -sn: Bodford -description: This is Indiana Bodford's description -facsimileTelephoneNumber: +1 804 995-4702 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 611-5593 -title: Junior Administrative Czar -userPassword: Password1 -uid: BodfordI -givenName: Indiana -mail: BodfordI@58b17cbf3c8c49a497e5fef5616324ae.bitwarden.com -carLicense: VV3YUR -departmentNumber: 7586 -employeeType: Contract -homePhone: +1 804 582-7113 -initials: I. B. -mobile: +1 804 749-9140 -pager: +1 804 678-9966 -roomNumber: 9095 -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maighdiln Zukovsky -sn: Zukovsky -description: This is Maighdiln Zukovsky's description -facsimileTelephoneNumber: +1 415 756-4696 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 415 303-4870 -title: Chief Management Manager -userPassword: Password1 -uid: ZukovskM -givenName: Maighdiln -mail: ZukovskM@58ad0883939b4209a1c1bf6c7755ae5e.bitwarden.com -carLicense: LFDBMM -departmentNumber: 9593 -employeeType: Employee -homePhone: +1 415 729-7110 -initials: M. Z. -mobile: +1 415 874-6784 -pager: +1 415 457-9523 -roomNumber: 8000 -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hermia Besse,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermia Besse -sn: Besse -description: This is Hermia Besse's description -facsimileTelephoneNumber: +1 818 576-7425 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 834-3632 -title: Associate Payroll Consultant -userPassword: Password1 -uid: BesseH -givenName: Hermia -mail: BesseH@622a54e630224fe7b08d7367fa70f841.bitwarden.com -carLicense: LKNLY2 -departmentNumber: 4918 -employeeType: Normal -homePhone: +1 818 132-4966 -initials: H. B. -mobile: +1 818 864-3681 -pager: +1 818 363-8998 -roomNumber: 9725 -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keri Struble -sn: Struble -description: This is Keri Struble's description -facsimileTelephoneNumber: +1 818 758-3719 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 548-2814 -title: Chief Product Development Punk -userPassword: Password1 -uid: StrubleK -givenName: Keri -mail: StrubleK@dcff57d96764408cb291cdc17909588d.bitwarden.com -carLicense: Y0C1GL -departmentNumber: 4039 -employeeType: Employee -homePhone: +1 818 499-2010 -initials: K. S. -mobile: +1 818 427-6270 -pager: +1 818 380-5858 -roomNumber: 9695 -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rolande Kiger,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rolande Kiger -sn: Kiger -description: This is Rolande Kiger's description -facsimileTelephoneNumber: +1 213 944-1075 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 778-4478 -title: Junior Product Development Developer -userPassword: Password1 -uid: KigerR -givenName: Rolande -mail: KigerR@512b1443d1ed45ccb0713f3efd2670c6.bitwarden.com -carLicense: JG7MTL -departmentNumber: 5280 -employeeType: Employee -homePhone: +1 213 528-7920 -initials: R. K. -mobile: +1 213 854-9130 -pager: +1 213 100-7584 -roomNumber: 8640 -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hana CampbellTapp -sn: CampbellTapp -description: This is Hana CampbellTapp's description -facsimileTelephoneNumber: +1 213 196-6211 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 213 613-3162 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: CampbelH -givenName: Hana -mail: CampbelH@484147050d834a1da350db4c28e9f45b.bitwarden.com -carLicense: RELEHN -departmentNumber: 7342 -employeeType: Normal -homePhone: +1 213 264-1544 -initials: H. C. -mobile: +1 213 724-1438 -pager: +1 213 326-3490 -roomNumber: 9419 -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyndy Auton -sn: Auton -description: This is Cyndy Auton's description -facsimileTelephoneNumber: +1 415 160-8508 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 141-5709 -title: Associate Administrative Czar -userPassword: Password1 -uid: AutonC -givenName: Cyndy -mail: AutonC@921a896c746149b8b4b3f6884b3f726f.bitwarden.com -carLicense: KHTECA -departmentNumber: 7351 -employeeType: Normal -homePhone: +1 415 995-9900 -initials: C. A. -mobile: +1 415 230-1376 -pager: +1 415 960-3720 -roomNumber: 9029 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blaise Bookings -sn: Bookings -description: This is Blaise Bookings's description -facsimileTelephoneNumber: +1 818 631-3015 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 818 578-9668 -title: Chief Administrative President -userPassword: Password1 -uid: BookingB -givenName: Blaise -mail: BookingB@ffbf9bf698dd4e7a9f64eeee84b5ec64.bitwarden.com -carLicense: QFMF19 -departmentNumber: 5514 -employeeType: Normal -homePhone: +1 818 227-1074 -initials: B. B. -mobile: +1 818 579-3961 -pager: +1 818 229-6758 -roomNumber: 9353 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Door Rigdon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Door Rigdon -sn: Rigdon -description: This is Door Rigdon's description -facsimileTelephoneNumber: +1 213 443-1797 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 213 136-3723 -title: Chief Human Resources Figurehead -userPassword: Password1 -uid: RigdonD -givenName: Door -mail: RigdonD@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com -carLicense: T8KHLL -departmentNumber: 5524 -employeeType: Normal -homePhone: +1 213 241-9879 -initials: D. R. -mobile: +1 213 163-9843 -pager: +1 213 209-7588 -roomNumber: 8080 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Allianora Toperzer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allianora Toperzer -sn: Toperzer -description: This is Allianora Toperzer's description -facsimileTelephoneNumber: +1 206 876-6811 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 220-2195 -title: Supreme Payroll Warrior -userPassword: Password1 -uid: ToperzeA -givenName: Allianora -mail: ToperzeA@e57ea92ee58c48afbafa0ac14075f3d3.bitwarden.com -carLicense: JD34QW -departmentNumber: 3688 -employeeType: Employee -homePhone: +1 206 467-6764 -initials: A. T. -mobile: +1 206 559-8557 -pager: +1 206 752-1168 -roomNumber: 9160 -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Phaedra Criswell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phaedra Criswell -sn: Criswell -description: This is Phaedra Criswell's description -facsimileTelephoneNumber: +1 206 797-4250 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 206 150-1000 -title: Chief Payroll Developer -userPassword: Password1 -uid: CriswelP -givenName: Phaedra -mail: CriswelP@4e6902e8e5bc41b48b78414d1956bb3d.bitwarden.com -carLicense: IN8KG7 -departmentNumber: 4547 -employeeType: Normal -homePhone: +1 206 233-5570 -initials: P. C. -mobile: +1 206 213-6441 -pager: +1 206 886-8872 -roomNumber: 8003 -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peter Dodson -sn: Dodson -description: This is Peter Dodson's description -facsimileTelephoneNumber: +1 206 326-8015 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 841-9951 -title: Chief Peons Stooge -userPassword: Password1 -uid: DodsonP -givenName: Peter -mail: DodsonP@a628382231454e68acb07ae2b6a10a7a.bitwarden.com -carLicense: LPVFUY -departmentNumber: 8290 -employeeType: Contract -homePhone: +1 206 471-2861 -initials: P. D. -mobile: +1 206 834-5120 -pager: +1 206 161-1551 -roomNumber: 8459 -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rhea Brewer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhea Brewer -sn: Brewer -description: This is Rhea Brewer's description -facsimileTelephoneNumber: +1 818 740-5956 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 110-9136 -title: Junior Janitorial Developer -userPassword: Password1 -uid: BrewerR -givenName: Rhea -mail: BrewerR@ba86ce5a5ce74352a483e9becf24707d.bitwarden.com -carLicense: MPRMDG -departmentNumber: 5205 -employeeType: Normal -homePhone: +1 818 580-4009 -initials: R. B. -mobile: +1 818 667-8072 -pager: +1 818 441-7175 -roomNumber: 8643 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Junette Bayno -sn: Bayno -description: This is Junette Bayno's description -facsimileTelephoneNumber: +1 213 455-1523 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 283-6391 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: BaynoJ -givenName: Junette -mail: BaynoJ@8b1fbee81b754d1880f61c509f62094e.bitwarden.com -carLicense: 0QVIBN -departmentNumber: 6741 -employeeType: Contract -homePhone: +1 213 695-3452 -initials: J. B. -mobile: +1 213 504-3469 -pager: +1 213 449-9153 -roomNumber: 8539 -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jonis Innes,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jonis Innes -sn: Innes -description: This is Jonis Innes's description -facsimileTelephoneNumber: +1 804 405-5746 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 565-2523 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: InnesJ -givenName: Jonis -mail: InnesJ@99988a1f6cfe4cd7a9e85e41ec5cdd61.bitwarden.com -carLicense: 5EUMOX -departmentNumber: 6552 -employeeType: Contract -homePhone: +1 804 720-6245 -initials: J. I. -mobile: +1 804 677-4912 -pager: +1 804 904-5728 -roomNumber: 8370 -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Femke Roddick -sn: Roddick -description: This is Femke Roddick's description -facsimileTelephoneNumber: +1 818 243-6605 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 818 115-7218 -title: Master Management Technician -userPassword: Password1 -uid: RoddickF -givenName: Femke -mail: RoddickF@dea3d3c373d64ad7827a6102b58d23cd.bitwarden.com -carLicense: IL2336 -departmentNumber: 7442 -employeeType: Normal -homePhone: +1 818 678-8285 -initials: F. R. -mobile: +1 818 344-9579 -pager: +1 818 973-5532 -roomNumber: 8174 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nanine Psutka,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nanine Psutka -sn: Psutka -description: This is Nanine Psutka's description -facsimileTelephoneNumber: +1 408 876-6666 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 115-6743 -title: Chief Management Consultant -userPassword: Password1 -uid: PsutkaN -givenName: Nanine -mail: PsutkaN@e7504ea4712040488444ef96484ed4da.bitwarden.com -carLicense: LAAQ6R -departmentNumber: 7169 -employeeType: Contract -homePhone: +1 408 907-3384 -initials: N. P. -mobile: +1 408 260-7079 -pager: +1 408 416-3206 -roomNumber: 9461 -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Stergios Koonce,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stergios Koonce -sn: Koonce -description: This is Stergios Koonce's description -facsimileTelephoneNumber: +1 804 626-8684 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 680-6403 -title: Supreme Management Figurehead -userPassword: Password1 -uid: KoonceS -givenName: Stergios -mail: KoonceS@a424c942226a48928880fd6debd4c0c3.bitwarden.com -carLicense: T7T0MK -departmentNumber: 6763 -employeeType: Normal -homePhone: +1 804 656-8445 -initials: S. K. -mobile: +1 804 311-7714 -pager: +1 804 900-7320 -roomNumber: 8206 -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andreana Mahaffee -sn: Mahaffee -description: This is Andreana Mahaffee's description -facsimileTelephoneNumber: +1 818 344-4254 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 430-4223 -title: Associate Human Resources Manager -userPassword: Password1 -uid: MahaffeA -givenName: Andreana -mail: MahaffeA@7d677330ed854492a1b9ebde717a718a.bitwarden.com -carLicense: E6KEQW -departmentNumber: 3193 -employeeType: Contract -homePhone: +1 818 726-9396 -initials: A. M. -mobile: +1 818 785-5801 -pager: +1 818 446-5665 -roomNumber: 9443 -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Moyra Boulay,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moyra Boulay -sn: Boulay -description: This is Moyra Boulay's description -facsimileTelephoneNumber: +1 818 845-3622 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 680-5905 -title: Associate Human Resources Writer -userPassword: Password1 -uid: BoulayM -givenName: Moyra -mail: BoulayM@37715fd42e014d19908e5a2bc34c1623.bitwarden.com -carLicense: QHOCYC -departmentNumber: 9115 -employeeType: Employee -homePhone: +1 818 719-7496 -initials: M. B. -mobile: +1 818 875-4011 -pager: +1 818 201-1212 -roomNumber: 8404 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Door McKerrow -sn: McKerrow -description: This is Door McKerrow's description -facsimileTelephoneNumber: +1 213 394-5685 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 854-5447 -title: Associate Product Testing Czar -userPassword: Password1 -uid: McKerroD -givenName: Door -mail: McKerroD@c4c3b80cbf1b45589053dbe0004de909.bitwarden.com -carLicense: HMKFHG -departmentNumber: 2474 -employeeType: Employee -homePhone: +1 213 136-2245 -initials: D. M. -mobile: +1 213 867-5867 -pager: +1 213 454-2339 -roomNumber: 8735 -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mahmoud Rtpbuild -sn: Rtpbuild -description: This is Mahmoud Rtpbuild's description -facsimileTelephoneNumber: +1 510 702-6627 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 896-8069 -title: Associate Management Madonna -userPassword: Password1 -uid: RtpbuilM -givenName: Mahmoud -mail: RtpbuilM@bd88542b35754611b56bc9f67e5f51df.bitwarden.com -carLicense: KRYRD2 -departmentNumber: 7229 -employeeType: Contract -homePhone: +1 510 739-4835 -initials: M. R. -mobile: +1 510 764-7243 -pager: +1 510 859-4268 -roomNumber: 8967 -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paolina McCaughey -sn: McCaughey -description: This is Paolina McCaughey's description -facsimileTelephoneNumber: +1 408 294-7652 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 904-2147 -title: Associate Management Stooge -userPassword: Password1 -uid: McCaughP -givenName: Paolina -mail: McCaughP@438e70287f6d4d35a04d438ca352f234.bitwarden.com -carLicense: CI11IH -departmentNumber: 7117 -employeeType: Employee -homePhone: +1 408 200-9531 -initials: P. M. -mobile: +1 408 690-8540 -pager: +1 408 322-9735 -roomNumber: 8619 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Greer Metzger,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greer Metzger -sn: Metzger -description: This is Greer Metzger's description -facsimileTelephoneNumber: +1 213 448-7214 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 326-6219 -title: Associate Janitorial Writer -userPassword: Password1 -uid: MetzgerG -givenName: Greer -mail: MetzgerG@5da44ffb6b534c2a8e8e949cd515b1cd.bitwarden.com -carLicense: JKSVQT -departmentNumber: 3039 -employeeType: Contract -homePhone: +1 213 508-1352 -initials: G. M. -mobile: +1 213 208-7608 -pager: +1 213 628-7339 -roomNumber: 8160 -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marlena Boyachek,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlena Boyachek -sn: Boyachek -description: This is Marlena Boyachek's description -facsimileTelephoneNumber: +1 206 373-9089 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 453-8734 -title: Chief Payroll Madonna -userPassword: Password1 -uid: BoyacheM -givenName: Marlena -mail: BoyacheM@b9ba4daba0344711bdffdc5268946fdc.bitwarden.com -carLicense: VAHY8S -departmentNumber: 9430 -employeeType: Employee -homePhone: +1 206 441-7738 -initials: M. B. -mobile: +1 206 350-4977 -pager: +1 206 681-6021 -roomNumber: 9556 -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=LyKhanh Hollbach,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LyKhanh Hollbach -sn: Hollbach -description: This is LyKhanh Hollbach's description -facsimileTelephoneNumber: +1 804 789-7752 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 747-4918 -title: Supreme Management Madonna -userPassword: Password1 -uid: HollbacL -givenName: LyKhanh -mail: HollbacL@ee2b03b1182d458c89ed3ab0221f6486.bitwarden.com -carLicense: UB6RAQ -departmentNumber: 8407 -employeeType: Normal -homePhone: +1 804 189-9294 -initials: L. H. -mobile: +1 804 738-8475 -pager: +1 804 976-4624 -roomNumber: 8979 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariejeanne Goos -sn: Goos -description: This is Mariejeanne Goos's description -facsimileTelephoneNumber: +1 804 616-8923 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 804 206-9706 -title: Supreme Janitorial Punk -userPassword: Password1 -uid: GoosM -givenName: Mariejeanne -mail: GoosM@f414860515324b3cad4d00dd4f44cc65.bitwarden.com -carLicense: 1OMTL7 -departmentNumber: 6681 -employeeType: Employee -homePhone: +1 804 302-5920 -initials: M. G. -mobile: +1 804 857-2341 -pager: +1 804 736-5755 -roomNumber: 8724 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rosana Wendling,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosana Wendling -sn: Wendling -description: This is Rosana Wendling's description -facsimileTelephoneNumber: +1 804 531-1960 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 804 549-7264 -title: Associate Product Development Technician -userPassword: Password1 -uid: WendlinR -givenName: Rosana -mail: WendlinR@503493165e34480591885ddd3a12206f.bitwarden.com -carLicense: FI4YJ7 -departmentNumber: 3175 -employeeType: Normal -homePhone: +1 804 495-8463 -initials: R. W. -mobile: +1 804 914-8023 -pager: +1 804 695-1911 -roomNumber: 9806 -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eve StVil,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eve StVil -sn: StVil -description: This is Eve StVil's description -facsimileTelephoneNumber: +1 206 908-3981 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 994-2370 -title: Junior Payroll Mascot -userPassword: Password1 -uid: StVilE -givenName: Eve -mail: StVilE@775db391b36843f3b6967be5112cd7c8.bitwarden.com -carLicense: HH06S6 -departmentNumber: 6456 -employeeType: Normal -homePhone: +1 206 361-9201 -initials: E. S. -mobile: +1 206 777-3792 -pager: +1 206 947-8232 -roomNumber: 9105 -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=GuoQiang Hagen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: GuoQiang Hagen -sn: Hagen -description: This is GuoQiang Hagen's description -facsimileTelephoneNumber: +1 510 625-6729 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 780-2463 -title: Associate Peons Stooge -userPassword: Password1 -uid: HagenG -givenName: GuoQiang -mail: HagenG@c7a2f477472645bf848fd46eb4fcb7eb.bitwarden.com -carLicense: XYQVG7 -departmentNumber: 2804 -employeeType: Contract -homePhone: +1 510 154-3230 -initials: G. H. -mobile: +1 510 254-7983 -pager: +1 510 393-8997 -roomNumber: 8959 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lsiunix Brooks -sn: Brooks -description: This is Lsiunix Brooks's description -facsimileTelephoneNumber: +1 818 473-3004 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 528-4810 -title: Chief Administrative Janitor -userPassword: Password1 -uid: BrooksL -givenName: Lsiunix -mail: BrooksL@804b9151f1ba415a894983275163dae1.bitwarden.com -carLicense: K4OW12 -departmentNumber: 7496 -employeeType: Contract -homePhone: +1 818 408-8855 -initials: L. B. -mobile: +1 818 405-3717 -pager: +1 818 656-3091 -roomNumber: 8536 -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorella Golczewski -sn: Golczewski -description: This is Dorella Golczewski's description -facsimileTelephoneNumber: +1 206 837-6595 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 852-3709 -title: Chief Payroll Assistant -userPassword: Password1 -uid: GolczewD -givenName: Dorella -mail: GolczewD@a04d0222f0c24ad6848955600bad7ace.bitwarden.com -carLicense: CF8YXX -departmentNumber: 7104 -employeeType: Contract -homePhone: +1 206 273-3085 -initials: D. G. -mobile: +1 206 121-5552 -pager: +1 206 720-4974 -roomNumber: 9816 -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Clarette Stokes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarette Stokes -sn: Stokes -description: This is Clarette Stokes's description -facsimileTelephoneNumber: +1 415 764-4880 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 833-3211 -title: Master Product Testing President -userPassword: Password1 -uid: StokesC -givenName: Clarette -mail: StokesC@a9155ee13aea4c5eb8fee4736f83eac6.bitwarden.com -carLicense: HASSV1 -departmentNumber: 6131 -employeeType: Contract -homePhone: +1 415 135-1820 -initials: C. S. -mobile: +1 415 816-4631 -pager: +1 415 395-9828 -roomNumber: 8255 -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrilla Wyllie -sn: Wyllie -description: This is Myrilla Wyllie's description -facsimileTelephoneNumber: +1 206 945-5393 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 438-9734 -title: Associate Payroll Stooge -userPassword: Password1 -uid: WyllieM -givenName: Myrilla -mail: WyllieM@e4fc7058a5874f7d8c9c45b862065a64.bitwarden.com -carLicense: EE4I2J -departmentNumber: 2540 -employeeType: Normal -homePhone: +1 206 620-5244 -initials: M. W. -mobile: +1 206 669-1282 -pager: +1 206 154-4235 -roomNumber: 8462 -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vincenzo Yarosh -sn: Yarosh -description: This is Vincenzo Yarosh's description -facsimileTelephoneNumber: +1 510 138-3977 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 845-1927 -title: Chief Payroll Fellow -userPassword: Password1 -uid: YaroshV -givenName: Vincenzo -mail: YaroshV@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com -carLicense: V09BGC -departmentNumber: 1851 -employeeType: Contract -homePhone: +1 510 747-7187 -initials: V. Y. -mobile: +1 510 162-8091 -pager: +1 510 630-5591 -roomNumber: 8599 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mo Barsch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mo Barsch -sn: Barsch -description: This is Mo Barsch's description -facsimileTelephoneNumber: +1 804 391-3034 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 804 328-7600 -title: Master Janitorial Czar -userPassword: Password1 -uid: BarschM -givenName: Mo -mail: BarschM@70ae4897e890467abad1e75edafff103.bitwarden.com -carLicense: B0QKIE -departmentNumber: 8377 -employeeType: Employee -homePhone: +1 804 332-2058 -initials: M. B. -mobile: +1 804 579-2857 -pager: +1 804 389-1175 -roomNumber: 9043 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Janos Running,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janos Running -sn: Running -description: This is Janos Running's description -facsimileTelephoneNumber: +1 818 236-5990 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 797-9391 -title: Junior Product Testing Director -userPassword: Password1 -uid: RunningJ -givenName: Janos -mail: RunningJ@0d7e83c0e7e042119673bb3ec0e8332f.bitwarden.com -carLicense: I5II19 -departmentNumber: 3295 -employeeType: Normal -homePhone: +1 818 266-4355 -initials: J. R. -mobile: +1 818 822-2629 -pager: +1 818 397-1098 -roomNumber: 9651 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hanco Epstein,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanco Epstein -sn: Epstein -description: This is Hanco Epstein's description -facsimileTelephoneNumber: +1 415 616-4767 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 783-7645 -title: Associate Payroll Writer -userPassword: Password1 -uid: EpsteinH -givenName: Hanco -mail: EpsteinH@6b7e5105ccc94f1f8fda16b3cc882538.bitwarden.com -carLicense: DRODGD -departmentNumber: 6368 -employeeType: Normal -homePhone: +1 415 198-4554 -initials: H. E. -mobile: +1 415 382-4911 -pager: +1 415 681-8168 -roomNumber: 8418 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maylynn Dolginoff -sn: Dolginoff -description: This is Maylynn Dolginoff's description -facsimileTelephoneNumber: +1 206 706-2358 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 206 686-3423 -title: Associate Product Development Grunt -userPassword: Password1 -uid: DolginoM -givenName: Maylynn -mail: DolginoM@c0ccbcc04bb9406b99bd8cec081542a2.bitwarden.com -carLicense: 1FTFJM -departmentNumber: 8990 -employeeType: Employee -homePhone: +1 206 253-1207 -initials: M. D. -mobile: +1 206 345-5713 -pager: +1 206 863-9371 -roomNumber: 9025 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daisie Solman -sn: Solman -description: This is Daisie Solman's description -facsimileTelephoneNumber: +1 804 570-2813 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 892-6981 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: SolmanD -givenName: Daisie -mail: SolmanD@86d24a798dce4653a3b75c56ae675864.bitwarden.com -carLicense: 3ABE1A -departmentNumber: 8194 -employeeType: Contract -homePhone: +1 804 168-6760 -initials: D. S. -mobile: +1 804 621-6134 -pager: +1 804 160-3665 -roomNumber: 8517 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nachum Biard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nachum Biard -sn: Biard -description: This is Nachum Biard's description -facsimileTelephoneNumber: +1 818 500-3243 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 556-9773 -title: Chief Management Artist -userPassword: Password1 -uid: BiardN -givenName: Nachum -mail: BiardN@2a9fef67c2a84062aa431a97e4e79582.bitwarden.com -carLicense: 9OJQ7W -departmentNumber: 6315 -employeeType: Contract -homePhone: +1 818 897-1781 -initials: N. B. -mobile: +1 818 721-2594 -pager: +1 818 717-2407 -roomNumber: 9642 -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Essy Goyal,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Essy Goyal -sn: Goyal -description: This is Essy Goyal's description -facsimileTelephoneNumber: +1 206 860-7133 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 376-3305 -title: Associate Product Development Warrior -userPassword: Password1 -uid: GoyalE -givenName: Essy -mail: GoyalE@077838522ab04e7fa5ae528e1ed00284.bitwarden.com -carLicense: J4WQ4U -departmentNumber: 3705 -employeeType: Employee -homePhone: +1 206 831-7434 -initials: E. G. -mobile: +1 206 262-9112 -pager: +1 206 743-7141 -roomNumber: 9806 -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorie Sehmbey -sn: Sehmbey -description: This is Lorie Sehmbey's description -facsimileTelephoneNumber: +1 510 348-3001 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 510 221-1866 -title: Chief Peons Figurehead -userPassword: Password1 -uid: SehmbeyL -givenName: Lorie -mail: SehmbeyL@b549d25d2e83426ba75b6cd3682958b0.bitwarden.com -carLicense: 510424 -departmentNumber: 2081 -employeeType: Normal -homePhone: +1 510 651-1878 -initials: L. S. -mobile: +1 510 390-5532 -pager: +1 510 313-4432 -roomNumber: 8209 -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Armelle Schwane,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Armelle Schwane -sn: Schwane -description: This is Armelle Schwane's description -facsimileTelephoneNumber: +1 804 220-2992 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 804 849-7500 -title: Master Human Resources Technician -userPassword: Password1 -uid: SchwaneA -givenName: Armelle -mail: SchwaneA@142c4cd6004348ef8f83b6439314cf24.bitwarden.com -carLicense: OXP9TK -departmentNumber: 9552 -employeeType: Contract -homePhone: +1 804 673-6998 -initials: A. S. -mobile: +1 804 675-2092 -pager: +1 804 724-9132 -roomNumber: 8671 -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brietta Plato,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brietta Plato -sn: Plato -description: This is Brietta Plato's description -facsimileTelephoneNumber: +1 213 976-1648 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 218-4592 -title: Supreme Product Testing Vice President -userPassword: Password1 -uid: PlatoB -givenName: Brietta -mail: PlatoB@d494db8e881541faa9bd79d54aee6c6c.bitwarden.com -carLicense: ELI6S7 -departmentNumber: 6306 -employeeType: Normal -homePhone: +1 213 558-7037 -initials: B. P. -mobile: +1 213 756-5637 -pager: +1 213 852-4110 -roomNumber: 9023 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lebbie Dragan -sn: Dragan -description: This is Lebbie Dragan's description -facsimileTelephoneNumber: +1 408 240-5208 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 833-9277 -title: Chief Human Resources Consultant -userPassword: Password1 -uid: DraganL -givenName: Lebbie -mail: DraganL@c4fa2184e3754d1f80f7d5580d9d94a2.bitwarden.com -carLicense: J186NA -departmentNumber: 6358 -employeeType: Normal -homePhone: +1 408 391-2177 -initials: L. D. -mobile: +1 408 623-8525 -pager: +1 408 329-1656 -roomNumber: 9920 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HooiLee Olivares -sn: Olivares -description: This is HooiLee Olivares's description -facsimileTelephoneNumber: +1 408 189-6648 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 138-7391 -title: Supreme Product Testing Manager -userPassword: Password1 -uid: OlivareH -givenName: HooiLee -mail: OlivareH@dbc48514ad4f4049ab1d92515eab342e.bitwarden.com -carLicense: 20LJYE -departmentNumber: 2686 -employeeType: Contract -homePhone: +1 408 767-3425 -initials: H. O. -mobile: +1 408 901-9148 -pager: +1 408 848-5153 -roomNumber: 9091 -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nolana Hedman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nolana Hedman -sn: Hedman -description: This is Nolana Hedman's description -facsimileTelephoneNumber: +1 408 276-7686 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 422-2472 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: HedmanN -givenName: Nolana -mail: HedmanN@12d826ce1ce0413184a7ed1f22160fef.bitwarden.com -carLicense: 26UNIA -departmentNumber: 4609 -employeeType: Employee -homePhone: +1 408 698-3652 -initials: N. H. -mobile: +1 408 543-5939 -pager: +1 408 510-5815 -roomNumber: 8456 -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zenia Hilwa,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zenia Hilwa -sn: Hilwa -description: This is Zenia Hilwa's description -facsimileTelephoneNumber: +1 213 567-6518 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 960-2788 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: HilwaZ -givenName: Zenia -mail: HilwaZ@e8b42fe4709142ccb9521fb60b9c2535.bitwarden.com -carLicense: UGE8QS -departmentNumber: 8500 -employeeType: Employee -homePhone: +1 213 229-6117 -initials: Z. H. -mobile: +1 213 665-7949 -pager: +1 213 794-5331 -roomNumber: 8714 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Souphalack Delong -sn: Delong -description: This is Souphalack Delong's description -facsimileTelephoneNumber: +1 818 620-3760 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 177-7714 -title: Associate Product Development Fellow -userPassword: Password1 -uid: DelongS -givenName: Souphalack -mail: DelongS@ed09d6145c6443eda98f0394646537ec.bitwarden.com -carLicense: 5J5YY2 -departmentNumber: 6501 -employeeType: Normal -homePhone: +1 818 380-9043 -initials: S. D. -mobile: +1 818 392-6761 -pager: +1 818 878-5066 -roomNumber: 8757 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com - -dn: cn=Robbie Dibler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robbie Dibler -sn: Dibler -description: This is Robbie Dibler's description -facsimileTelephoneNumber: +1 415 496-3323 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 711-2200 -title: Chief Product Testing Director -userPassword: Password1 -uid: DiblerR -givenName: Robbie -mail: DiblerR@45083f5b369b49bba6dba6e41ec7e2f6.bitwarden.com -carLicense: DXBFPP -departmentNumber: 8415 -employeeType: Employee -homePhone: +1 415 259-5363 -initials: R. D. -mobile: +1 415 689-9985 -pager: +1 415 390-9552 -roomNumber: 9476 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eimile Azzuolo -sn: Azzuolo -description: This is Eimile Azzuolo's description -facsimileTelephoneNumber: +1 213 345-5655 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 286-4575 -title: Master Administrative Artist -userPassword: Password1 -uid: AzzuoloE -givenName: Eimile -mail: AzzuoloE@825450a5303e4ddbb87fc29d54b883c1.bitwarden.com -carLicense: NYMJYL -departmentNumber: 5886 -employeeType: Contract -homePhone: +1 213 761-1430 -initials: E. A. -mobile: +1 213 586-5127 -pager: +1 213 514-4063 -roomNumber: 9576 -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Biddie Tedrick,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Biddie Tedrick -sn: Tedrick -description: This is Biddie Tedrick's description -facsimileTelephoneNumber: +1 804 952-5910 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 982-8530 -title: Junior Product Development Dictator -userPassword: Password1 -uid: TedrickB -givenName: Biddie -mail: TedrickB@a98d6363773e4de690c703d6d6786140.bitwarden.com -carLicense: XMXLTT -departmentNumber: 3882 -employeeType: Contract -homePhone: +1 804 900-9137 -initials: B. T. -mobile: +1 804 328-2651 -pager: +1 804 538-3259 -roomNumber: 9688 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gracia Peluso,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gracia Peluso -sn: Peluso -description: This is Gracia Peluso's description -facsimileTelephoneNumber: +1 415 924-7467 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 256-5178 -title: Master Payroll Manager -userPassword: Password1 -uid: PelusoG -givenName: Gracia -mail: PelusoG@8c3513194f7b4d468cf6b129b14b72f5.bitwarden.com -carLicense: CW5CQQ -departmentNumber: 6302 -employeeType: Employee -homePhone: +1 415 374-3027 -initials: G. P. -mobile: +1 415 434-6558 -pager: +1 415 170-5344 -roomNumber: 9243 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sanja Maxey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanja Maxey -sn: Maxey -description: This is Sanja Maxey's description -facsimileTelephoneNumber: +1 818 342-4916 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 284-7927 -title: Chief Product Development Engineer -userPassword: Password1 -uid: MaxeyS -givenName: Sanja -mail: MaxeyS@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com -carLicense: 8R1F8T -departmentNumber: 3309 -employeeType: Normal -homePhone: +1 818 948-4978 -initials: S. M. -mobile: +1 818 234-4918 -pager: +1 818 644-4808 -roomNumber: 8429 -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Petronella Tullius,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petronella Tullius -sn: Tullius -description: This is Petronella Tullius's description -facsimileTelephoneNumber: +1 510 673-9547 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 899-3505 -title: Supreme Payroll Admin -userPassword: Password1 -uid: TulliusP -givenName: Petronella -mail: TulliusP@35aa710455a54ec9aacb0743a9cce4e9.bitwarden.com -carLicense: 4K7VEP -departmentNumber: 1268 -employeeType: Normal -homePhone: +1 510 231-1441 -initials: P. T. -mobile: +1 510 995-8785 -pager: +1 510 359-8214 -roomNumber: 9107 -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Henrie Lorint,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henrie Lorint -sn: Lorint -description: This is Henrie Lorint's description -facsimileTelephoneNumber: +1 213 611-9669 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 304-4527 -title: Junior Product Development Czar -userPassword: Password1 -uid: LorintH -givenName: Henrie -mail: LorintH@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com -carLicense: W9LRQE -departmentNumber: 2746 -employeeType: Contract -homePhone: +1 213 897-3986 -initials: H. L. -mobile: +1 213 537-4075 -pager: +1 213 661-2974 -roomNumber: 8592 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaylee Spilchak -sn: Spilchak -description: This is Kaylee Spilchak's description -facsimileTelephoneNumber: +1 510 614-5230 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 888-6565 -title: Supreme Payroll Madonna -userPassword: Password1 -uid: SpilchaK -givenName: Kaylee -mail: SpilchaK@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com -carLicense: 2OWQ7U -departmentNumber: 7138 -employeeType: Contract -homePhone: +1 510 983-2286 -initials: K. S. -mobile: +1 510 837-7269 -pager: +1 510 437-9910 -roomNumber: 9461 -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Donnette Kruger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donnette Kruger -sn: Kruger -description: This is Donnette Kruger's description -facsimileTelephoneNumber: +1 408 826-8284 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 945-1519 -title: Supreme Peons Artist -userPassword: Password1 -uid: KrugerD -givenName: Donnette -mail: KrugerD@e5c90ecebea1435c996209dde46c0296.bitwarden.com -carLicense: R1L3OC -departmentNumber: 4829 -employeeType: Normal -homePhone: +1 408 776-9215 -initials: D. K. -mobile: +1 408 486-5528 -pager: +1 408 962-9574 -roomNumber: 8826 -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Delle Schwantes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delle Schwantes -sn: Schwantes -description: This is Delle Schwantes's description -facsimileTelephoneNumber: +1 206 426-8611 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 924-1063 -title: Chief Product Testing President -userPassword: Password1 -uid: SchwantD -givenName: Delle -mail: SchwantD@d1c16d58dcf54061b0da81b1943ffc50.bitwarden.com -carLicense: 4X1B2H -departmentNumber: 8934 -employeeType: Employee -homePhone: +1 206 566-4998 -initials: D. S. -mobile: +1 206 865-3314 -pager: +1 206 904-9753 -roomNumber: 8923 -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hyacinthie Brannan -sn: Brannan -description: This is Hyacinthie Brannan's description -facsimileTelephoneNumber: +1 804 476-7886 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 268-6184 -title: Chief Peons Janitor -userPassword: Password1 -uid: BrannanH -givenName: Hyacinthie -mail: BrannanH@71f5b0be2e4a45d1a4579d7977668bec.bitwarden.com -carLicense: P00O2G -departmentNumber: 7244 -employeeType: Contract -homePhone: +1 804 500-3057 -initials: H. B. -mobile: +1 804 923-4706 -pager: +1 804 271-8624 -roomNumber: 9832 -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Print Gaitan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Print Gaitan -sn: Gaitan -description: This is Print Gaitan's description -facsimileTelephoneNumber: +1 415 553-6657 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 927-1467 -title: Junior Administrative Madonna -userPassword: Password1 -uid: GaitanP -givenName: Print -mail: GaitanP@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com -carLicense: W613E7 -departmentNumber: 8548 -employeeType: Employee -homePhone: +1 415 721-2210 -initials: P. G. -mobile: +1 415 293-6990 -pager: +1 415 707-1603 -roomNumber: 8073 -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Patsy Mattiussi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patsy Mattiussi -sn: Mattiussi -description: This is Patsy Mattiussi's description -facsimileTelephoneNumber: +1 415 509-3936 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 773-6685 -title: Associate Management Sales Rep -userPassword: Password1 -uid: MattiusP -givenName: Patsy -mail: MattiusP@acd445bf65f54e4ebe350927dbe3e51f.bitwarden.com -carLicense: SQF2TJ -departmentNumber: 6840 -employeeType: Normal -homePhone: +1 415 303-8138 -initials: P. M. -mobile: +1 415 790-1999 -pager: +1 415 108-5980 -roomNumber: 8914 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Phil Afkham,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phil Afkham -sn: Afkham -description: This is Phil Afkham's description -facsimileTelephoneNumber: +1 804 452-3039 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 983-7081 -title: Master Administrative Assistant -userPassword: Password1 -uid: AfkhamP -givenName: Phil -mail: AfkhamP@ea3044bbf20e4e989696a49bb606f948.bitwarden.com -carLicense: 7HY30U -departmentNumber: 3879 -employeeType: Employee -homePhone: +1 804 384-8616 -initials: P. A. -mobile: +1 804 140-3597 -pager: +1 804 540-6411 -roomNumber: 9058 -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheldon Blatt -sn: Blatt -description: This is Sheldon Blatt's description -facsimileTelephoneNumber: +1 818 689-6925 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 627-5455 -title: Chief Peons Dictator -userPassword: Password1 -uid: BlattS -givenName: Sheldon -mail: BlattS@b2fc4afe69c5444b8fa5daf60bf297fa.bitwarden.com -carLicense: 9BHWS7 -departmentNumber: 1875 -employeeType: Normal -homePhone: +1 818 700-5918 -initials: S. B. -mobile: +1 818 192-3214 -pager: +1 818 576-2064 -roomNumber: 8740 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Netti Pitcavage -sn: Pitcavage -description: This is Netti Pitcavage's description -facsimileTelephoneNumber: +1 415 271-7591 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 964-9582 -title: Junior Janitorial Artist -userPassword: Password1 -uid: PitcavaN -givenName: Netti -mail: PitcavaN@f945ede1d0be465895cf3f38663266a7.bitwarden.com -carLicense: S9149W -departmentNumber: 8938 -employeeType: Normal -homePhone: +1 415 938-7829 -initials: N. P. -mobile: +1 415 747-4797 -pager: +1 415 455-5469 -roomNumber: 8649 -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oryal Raschig -sn: Raschig -description: This is Oryal Raschig's description -facsimileTelephoneNumber: +1 408 780-4310 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 722-7334 -title: Chief Product Testing Architect -userPassword: Password1 -uid: RaschigO -givenName: Oryal -mail: RaschigO@1f0f559b444d45e3b1fe4488d0fe440e.bitwarden.com -carLicense: YNHSOT -departmentNumber: 6794 -employeeType: Contract -homePhone: +1 408 117-5487 -initials: O. R. -mobile: +1 408 669-4153 -pager: +1 408 214-6489 -roomNumber: 9103 -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hector Manus -sn: Manus -description: This is Hector Manus's description -facsimileTelephoneNumber: +1 213 777-1217 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 213 916-2656 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: ManusH -givenName: Hector -mail: ManusH@52db00da846a4ecd950665d8955a7231.bitwarden.com -carLicense: VRJKPJ -departmentNumber: 3359 -employeeType: Normal -homePhone: +1 213 926-3809 -initials: H. M. -mobile: +1 213 399-5007 -pager: +1 213 728-8667 -roomNumber: 8835 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Pollyanna Goza,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pollyanna Goza -sn: Goza -description: This is Pollyanna Goza's description -facsimileTelephoneNumber: +1 804 839-7187 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 804 477-1879 -title: Associate Payroll Consultant -userPassword: Password1 -uid: GozaP -givenName: Pollyanna -mail: GozaP@6b986c50e43742ad9f5c4c157dff0f70.bitwarden.com -carLicense: BYSTHF -departmentNumber: 6010 -employeeType: Contract -homePhone: +1 804 302-6747 -initials: P. G. -mobile: +1 804 774-7090 -pager: +1 804 616-2689 -roomNumber: 9959 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Koren Penner,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koren Penner -sn: Penner -description: This is Koren Penner's description -facsimileTelephoneNumber: +1 408 210-8833 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 302-2779 -title: Supreme Payroll Assistant -userPassword: Password1 -uid: PennerK -givenName: Koren -mail: PennerK@bc86e63e2935428fbf0579fffe710ad0.bitwarden.com -carLicense: EY0Q9D -departmentNumber: 7572 -employeeType: Normal -homePhone: +1 408 880-6715 -initials: K. P. -mobile: +1 408 410-3036 -pager: +1 408 452-4051 -roomNumber: 8937 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Iteke Wiedman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Iteke Wiedman -sn: Wiedman -description: This is Iteke Wiedman's description -facsimileTelephoneNumber: +1 213 713-5696 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 820-5629 -title: Junior Management Czar -userPassword: Password1 -uid: WiedmanI -givenName: Iteke -mail: WiedmanI@63d6d6335a55425b90628af92fedefa5.bitwarden.com -carLicense: UQS068 -departmentNumber: 1890 -employeeType: Employee -homePhone: +1 213 370-5519 -initials: I. W. -mobile: +1 213 238-4359 -pager: +1 213 569-4062 -roomNumber: 8982 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Darrelle StJohn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrelle StJohn -sn: StJohn -description: This is Darrelle StJohn's description -facsimileTelephoneNumber: +1 415 685-6703 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 747-2396 -title: Supreme Product Development Czar -userPassword: Password1 -uid: StJohnD -givenName: Darrelle -mail: StJohnD@83e659b7a46148c68a7895067104477c.bitwarden.com -carLicense: LC5BFW -departmentNumber: 7423 -employeeType: Contract -homePhone: +1 415 803-6528 -initials: D. S. -mobile: +1 415 331-5889 -pager: +1 415 301-2811 -roomNumber: 9698 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kazuhito Schram,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazuhito Schram -sn: Schram -description: This is Kazuhito Schram's description -facsimileTelephoneNumber: +1 206 629-9847 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 437-2196 -title: Associate Peons Janitor -userPassword: Password1 -uid: SchramK -givenName: Kazuhito -mail: SchramK@35963b7e4db249a890418c98f5c7f6fe.bitwarden.com -carLicense: DWON8B -departmentNumber: 7562 -employeeType: Normal -homePhone: +1 206 822-2342 -initials: K. S. -mobile: +1 206 314-1213 -pager: +1 206 191-8718 -roomNumber: 9251 -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emelyne Hickman -sn: Hickman -description: This is Emelyne Hickman's description -facsimileTelephoneNumber: +1 206 589-3897 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 341-2252 -title: Junior Product Testing Evangelist -userPassword: Password1 -uid: HickmanE -givenName: Emelyne -mail: HickmanE@848a5e9ff7e64339b3d7fd8820b74e23.bitwarden.com -carLicense: I1FGSE -departmentNumber: 5165 -employeeType: Normal -homePhone: +1 206 211-3511 -initials: E. H. -mobile: +1 206 508-8058 -pager: +1 206 480-8567 -roomNumber: 9612 -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirene Eaves -sn: Eaves -description: This is Shirene Eaves's description -facsimileTelephoneNumber: +1 206 516-9773 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 356-2956 -title: Master Product Development Artist -userPassword: Password1 -uid: EavesS -givenName: Shirene -mail: EavesS@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com -carLicense: HK8NIS -departmentNumber: 3972 -employeeType: Employee -homePhone: +1 206 659-1986 -initials: S. E. -mobile: +1 206 499-1436 -pager: +1 206 949-4588 -roomNumber: 8127 -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Desiree Southon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desiree Southon -sn: Southon -description: This is Desiree Southon's description -facsimileTelephoneNumber: +1 415 736-8804 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 311-9062 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: SouthonD -givenName: Desiree -mail: SouthonD@068a0b6470f0444b9815d3ef36001ebd.bitwarden.com -carLicense: 8SP4CU -departmentNumber: 7183 -employeeType: Employee -homePhone: +1 415 243-5712 -initials: D. S. -mobile: +1 415 263-8053 -pager: +1 415 788-8011 -roomNumber: 9540 -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lianna Lackie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lianna Lackie -sn: Lackie -description: This is Lianna Lackie's description -facsimileTelephoneNumber: +1 206 124-3191 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 955-3793 -title: Junior Peons Fellow -userPassword: Password1 -uid: LackieL -givenName: Lianna -mail: LackieL@965c6793f8bb43c9b546fbac1da94494.bitwarden.com -carLicense: NO37XA -departmentNumber: 9388 -employeeType: Normal -homePhone: +1 206 192-1233 -initials: L. L. -mobile: +1 206 905-6393 -pager: +1 206 127-2897 -roomNumber: 9490 -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Misti Sayed,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Misti Sayed -sn: Sayed -description: This is Misti Sayed's description -facsimileTelephoneNumber: +1 213 295-8311 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 824-6626 -title: Supreme Management Warrior -userPassword: Password1 -uid: SayedM -givenName: Misti -mail: SayedM@9520af3454cc4edd8a0c750979c8a5ba.bitwarden.com -carLicense: Q7KHAS -departmentNumber: 1874 -employeeType: Normal -homePhone: +1 213 705-4197 -initials: M. S. -mobile: +1 213 131-8347 -pager: +1 213 272-4635 -roomNumber: 8681 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kartik Calmejane -sn: Calmejane -description: This is Kartik Calmejane's description -facsimileTelephoneNumber: +1 818 136-1973 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 935-4737 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: CalmejaK -givenName: Kartik -mail: CalmejaK@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com -carLicense: I6S4UV -departmentNumber: 6194 -employeeType: Contract -homePhone: +1 818 588-3652 -initials: K. C. -mobile: +1 818 569-9279 -pager: +1 818 797-2383 -roomNumber: 9871 -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dione McCain,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dione McCain -sn: McCain -description: This is Dione McCain's description -facsimileTelephoneNumber: +1 415 605-8901 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 627-3559 -title: Associate Peons Artist -userPassword: Password1 -uid: McCainD -givenName: Dione -mail: McCainD@9bcba57fcf5a4e57996fd300e4b639aa.bitwarden.com -carLicense: D8O8IF -departmentNumber: 2073 -employeeType: Employee -homePhone: +1 415 215-1172 -initials: D. M. -mobile: +1 415 781-3831 -pager: +1 415 254-1777 -roomNumber: 9214 -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Deny Stasiak,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deny Stasiak -sn: Stasiak -description: This is Deny Stasiak's description -facsimileTelephoneNumber: +1 415 553-1130 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 140-9244 -title: Chief Management Vice President -userPassword: Password1 -uid: StasiakD -givenName: Deny -mail: StasiakD@00134d4d1d4e4011b58c753077077cfb.bitwarden.com -carLicense: 91KU1U -departmentNumber: 8229 -employeeType: Normal -homePhone: +1 415 246-8798 -initials: D. S. -mobile: +1 415 305-7479 -pager: +1 415 680-1978 -roomNumber: 9036 -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aindrea Kavis -sn: Kavis -description: This is Aindrea Kavis's description -facsimileTelephoneNumber: +1 408 931-6638 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 528-9662 -title: Master Janitorial Warrior -userPassword: Password1 -uid: KavisA -givenName: Aindrea -mail: KavisA@0eff01dc47b3434da343723db4d36d91.bitwarden.com -carLicense: EOX16G -departmentNumber: 2170 -employeeType: Contract -homePhone: +1 408 638-4793 -initials: A. K. -mobile: +1 408 225-1775 -pager: +1 408 880-3183 -roomNumber: 9787 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ladell Butvich,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ladell Butvich -sn: Butvich -description: This is Ladell Butvich's description -facsimileTelephoneNumber: +1 804 382-3771 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 455-9420 -title: Master Management President -userPassword: Password1 -uid: ButvichL -givenName: Ladell -mail: ButvichL@baf2ad01dd2145308a21b27aa982b3f0.bitwarden.com -carLicense: 8A1TTB -departmentNumber: 7137 -employeeType: Contract -homePhone: +1 804 813-2220 -initials: L. B. -mobile: +1 804 398-9401 -pager: +1 804 116-8167 -roomNumber: 8215 -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Loralyn Eller,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loralyn Eller -sn: Eller -description: This is Loralyn Eller's description -facsimileTelephoneNumber: +1 213 125-1899 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 850-9482 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: EllerL -givenName: Loralyn -mail: EllerL@15a73f4bf1a344b28ac5394e2a720618.bitwarden.com -carLicense: XECOJ8 -departmentNumber: 9039 -employeeType: Employee -homePhone: +1 213 541-2910 -initials: L. E. -mobile: +1 213 962-5983 -pager: +1 213 102-5213 -roomNumber: 8479 -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vinay Yearwood -sn: Yearwood -description: This is Vinay Yearwood's description -facsimileTelephoneNumber: +1 213 478-1295 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 912-9603 -title: Associate Janitorial Assistant -userPassword: Password1 -uid: YearwooV -givenName: Vinay -mail: YearwooV@22633d68b49a4505af065c4f4eb2af78.bitwarden.com -carLicense: BERWHP -departmentNumber: 3249 -employeeType: Employee -homePhone: +1 213 789-2926 -initials: V. Y. -mobile: +1 213 301-6492 -pager: +1 213 333-8242 -roomNumber: 9592 -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jan Crosson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jan Crosson -sn: Crosson -description: This is Jan Crosson's description -facsimileTelephoneNumber: +1 206 420-1675 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 696-7954 -title: Master Human Resources Engineer -userPassword: Password1 -uid: CrossonJ -givenName: Jan -mail: CrossonJ@ca4bcea8df924ec485a1d77e062859ea.bitwarden.com -carLicense: R76W8T -departmentNumber: 6704 -employeeType: Normal -homePhone: +1 206 222-6807 -initials: J. C. -mobile: +1 206 980-8304 -pager: +1 206 485-4016 -roomNumber: 9919 -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oral Pridgen -sn: Pridgen -description: This is Oral Pridgen's description -facsimileTelephoneNumber: +1 804 766-1378 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 479-8812 -title: Associate Human Resources Czar -userPassword: Password1 -uid: PridgenO -givenName: Oral -mail: PridgenO@07bbb3f489e64bb6a266eab64608e052.bitwarden.com -carLicense: 106385 -departmentNumber: 7205 -employeeType: Employee -homePhone: +1 804 172-3919 -initials: O. P. -mobile: +1 804 535-6474 -pager: +1 804 789-2485 -roomNumber: 9532 -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Subra Tuttle,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subra Tuttle -sn: Tuttle -description: This is Subra Tuttle's description -facsimileTelephoneNumber: +1 206 459-5483 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 452-4900 -title: Supreme Payroll Assistant -userPassword: Password1 -uid: TuttleS -givenName: Subra -mail: TuttleS@d3deba7943134e29a9162d65f8af2a8d.bitwarden.com -carLicense: OB69E1 -departmentNumber: 1690 -employeeType: Normal -homePhone: +1 206 595-4783 -initials: S. T. -mobile: +1 206 180-9694 -pager: +1 206 799-4963 -roomNumber: 8331 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Teruko Fleischer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teruko Fleischer -sn: Fleischer -description: This is Teruko Fleischer's description -facsimileTelephoneNumber: +1 804 593-3664 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 962-7692 -title: Master Product Development Writer -userPassword: Password1 -uid: FleischT -givenName: Teruko -mail: FleischT@db5bfc481c624386b635ec1638ed585f.bitwarden.com -carLicense: PV9A88 -departmentNumber: 4990 -employeeType: Employee -homePhone: +1 804 837-5393 -initials: T. F. -mobile: +1 804 657-8518 -pager: +1 804 236-4121 -roomNumber: 9693 -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelbi Schiefer -sn: Schiefer -description: This is Shelbi Schiefer's description -facsimileTelephoneNumber: +1 415 629-4092 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 388-3498 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: SchiefeS -givenName: Shelbi -mail: SchiefeS@51c65dec05994f879d2a718e7f7237a9.bitwarden.com -carLicense: FC524M -departmentNumber: 1207 -employeeType: Contract -homePhone: +1 415 918-1180 -initials: S. S. -mobile: +1 415 131-2158 -pager: +1 415 506-1795 -roomNumber: 8638 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Quintina Ying,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quintina Ying -sn: Ying -description: This is Quintina Ying's description -facsimileTelephoneNumber: +1 415 362-1171 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 148-9766 -title: Master Product Testing Fellow -userPassword: Password1 -uid: YingQ -givenName: Quintina -mail: YingQ@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com -carLicense: 75N23O -departmentNumber: 5793 -employeeType: Employee -homePhone: +1 415 100-5418 -initials: Q. Y. -mobile: +1 415 716-4289 -pager: +1 415 284-7154 -roomNumber: 8137 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nerti StJames,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nerti StJames -sn: StJames -description: This is Nerti StJames's description -facsimileTelephoneNumber: +1 415 255-3201 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 160-1665 -title: Chief Administrative Director -userPassword: Password1 -uid: StJamesN -givenName: Nerti -mail: StJamesN@c7693ecd6d0049638df22f6d2f6641d3.bitwarden.com -carLicense: 5ELGCO -departmentNumber: 9837 -employeeType: Contract -homePhone: +1 415 313-5823 -initials: N. S. -mobile: +1 415 451-8606 -pager: +1 415 456-5513 -roomNumber: 9918 -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=RongChin Guatto,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: RongChin Guatto -sn: Guatto -description: This is RongChin Guatto's description -facsimileTelephoneNumber: +1 213 870-6564 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 171-5472 -title: Chief Product Development Warrior -userPassword: Password1 -uid: GuattoR -givenName: RongChin -mail: GuattoR@b4fa9c83a97e478e900b988131cc53a7.bitwarden.com -carLicense: 5UC6XL -departmentNumber: 3991 -employeeType: Normal -homePhone: +1 213 258-1627 -initials: R. G. -mobile: +1 213 275-3338 -pager: +1 213 257-5822 -roomNumber: 9094 -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mercer Zattiero,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mercer Zattiero -sn: Zattiero -description: This is Mercer Zattiero's description -facsimileTelephoneNumber: +1 510 858-7414 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 655-8503 -title: Supreme Payroll Technician -userPassword: Password1 -uid: ZattierM -givenName: Mercer -mail: ZattierM@df91f02938d046d8adb3f260f0e722ef.bitwarden.com -carLicense: YS0XYC -departmentNumber: 6125 -employeeType: Employee -homePhone: +1 510 364-3247 -initials: M. Z. -mobile: +1 510 518-3596 -pager: +1 510 314-3011 -roomNumber: 9964 -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Budi Enos,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Budi Enos -sn: Enos -description: This is Budi Enos's description -facsimileTelephoneNumber: +1 510 848-3472 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 817-9930 -title: Junior Product Testing Madonna -userPassword: Password1 -uid: EnosB -givenName: Budi -mail: EnosB@34a3a218f8b144eeb85092195b25ce2c.bitwarden.com -carLicense: 5B1SW5 -departmentNumber: 2295 -employeeType: Normal -homePhone: +1 510 274-5116 -initials: B. E. -mobile: +1 510 464-4501 -pager: +1 510 966-7373 -roomNumber: 8053 -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tuoi Abdou,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tuoi Abdou -sn: Abdou -description: This is Tuoi Abdou's description -facsimileTelephoneNumber: +1 213 937-3788 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 842-4898 -title: Chief Payroll President -userPassword: Password1 -uid: AbdouT -givenName: Tuoi -mail: AbdouT@44ea03cf4294421b92acd6efdd5ace30.bitwarden.com -carLicense: LLKTG0 -departmentNumber: 7702 -employeeType: Normal -homePhone: +1 213 529-5314 -initials: T. A. -mobile: +1 213 552-6496 -pager: +1 213 264-2324 -roomNumber: 9035 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nath Labarge,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nath Labarge -sn: Labarge -description: This is Nath Labarge's description -facsimileTelephoneNumber: +1 804 447-5956 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 526-5504 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: LabargeN -givenName: Nath -mail: LabargeN@331976d3e9d2482b9e23f03ce7111228.bitwarden.com -carLicense: 0X7IO0 -departmentNumber: 2651 -employeeType: Contract -homePhone: +1 804 655-1781 -initials: N. L. -mobile: +1 804 853-7672 -pager: +1 804 683-1509 -roomNumber: 9088 -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sophi McCullogh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sophi McCullogh -sn: McCullogh -description: This is Sophi McCullogh's description -facsimileTelephoneNumber: +1 213 234-8834 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 922-7516 -title: Associate Payroll Vice President -userPassword: Password1 -uid: McCulloS -givenName: Sophi -mail: McCulloS@dd187a873e4c4bb299a3c9194e913cba.bitwarden.com -carLicense: XOWN2J -departmentNumber: 1775 -employeeType: Contract -homePhone: +1 213 427-4468 -initials: S. M. -mobile: +1 213 964-2133 -pager: +1 213 549-6786 -roomNumber: 9306 -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jorry Babineau,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jorry Babineau -sn: Babineau -description: This is Jorry Babineau's description -facsimileTelephoneNumber: +1 213 493-4516 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 213 897-9887 -title: Master Product Development Director -userPassword: Password1 -uid: BabineaJ -givenName: Jorry -mail: BabineaJ@120daee2645049f7b74da97b5abb659d.bitwarden.com -carLicense: XYH4JE -departmentNumber: 1441 -employeeType: Contract -homePhone: +1 213 608-8563 -initials: J. B. -mobile: +1 213 127-5211 -pager: +1 213 358-3133 -roomNumber: 8366 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Adey Fogelson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adey Fogelson -sn: Fogelson -description: This is Adey Fogelson's description -facsimileTelephoneNumber: +1 206 536-2429 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 174-5714 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: FogelsoA -givenName: Adey -mail: FogelsoA@a3cca719b1e44338804967e6cd3716a5.bitwarden.com -carLicense: U12TMF -departmentNumber: 9898 -employeeType: Normal -homePhone: +1 206 799-3720 -initials: A. F. -mobile: +1 206 112-3225 -pager: +1 206 654-8319 -roomNumber: 9755 -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bela Fouillard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bela Fouillard -sn: Fouillard -description: This is Bela Fouillard's description -facsimileTelephoneNumber: +1 818 282-3105 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 435-8863 -title: Supreme Management Consultant -userPassword: Password1 -uid: FouillaB -givenName: Bela -mail: FouillaB@618ad2c22a0a4c09b662c6b5ae8494c7.bitwarden.com -carLicense: 2I7LYR -departmentNumber: 1009 -employeeType: Contract -homePhone: +1 818 417-6072 -initials: B. F. -mobile: +1 818 963-7717 -pager: +1 818 993-7903 -roomNumber: 8405 -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Paola Barbeau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paola Barbeau -sn: Barbeau -description: This is Paola Barbeau's description -facsimileTelephoneNumber: +1 206 737-5382 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 354-9430 -title: Master Payroll Artist -userPassword: Password1 -uid: BarbeauP -givenName: Paola -mail: BarbeauP@40079c706f0f41f9961a4ed47bc17c65.bitwarden.com -carLicense: 2TN6AL -departmentNumber: 2724 -employeeType: Normal -homePhone: +1 206 866-9397 -initials: P. B. -mobile: +1 206 804-3530 -pager: +1 206 915-6435 -roomNumber: 9152 -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorianne McWhinney -sn: McWhinney -description: This is Lorianne McWhinney's description -facsimileTelephoneNumber: +1 510 926-5820 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 510 403-3579 -title: Associate Product Development Punk -userPassword: Password1 -uid: McWhinnL -givenName: Lorianne -mail: McWhinnL@46d0a281aed94fa7a62017174b4b9de9.bitwarden.com -carLicense: U1O8H1 -departmentNumber: 4184 -employeeType: Contract -homePhone: +1 510 210-8056 -initials: L. M. -mobile: +1 510 790-3072 -pager: +1 510 594-6977 -roomNumber: 8087 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Milo Hasen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milo Hasen -sn: Hasen -description: This is Milo Hasen's description -facsimileTelephoneNumber: +1 213 644-8401 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 864-2801 -title: Junior Product Development Warrior -userPassword: Password1 -uid: HasenM -givenName: Milo -mail: HasenM@8ac0b632f576407ba66f1733b0c4738e.bitwarden.com -carLicense: 8653T4 -departmentNumber: 6207 -employeeType: Employee -homePhone: +1 213 171-7630 -initials: M. H. -mobile: +1 213 965-6294 -pager: +1 213 411-8163 -roomNumber: 8510 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Corabella Scarffe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corabella Scarffe -sn: Scarffe -description: This is Corabella Scarffe's description -facsimileTelephoneNumber: +1 804 302-5450 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 392-1615 -title: Chief Product Development Vice President -userPassword: Password1 -uid: ScarffeC -givenName: Corabella -mail: ScarffeC@b39d8f666f1848e6abb69d85d224a354.bitwarden.com -carLicense: FMUGEY -departmentNumber: 5031 -employeeType: Contract -homePhone: +1 804 388-6392 -initials: C. S. -mobile: +1 804 280-9473 -pager: +1 804 586-1332 -roomNumber: 9288 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parkinson Bir -sn: Bir -description: This is Parkinson Bir's description -facsimileTelephoneNumber: +1 804 284-3689 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 603-1682 -title: Chief Product Development Dictator -userPassword: Password1 -uid: BirP -givenName: Parkinson -mail: BirP@f89f635a8be04a889dbefd8a681219c7.bitwarden.com -carLicense: 9YB61N -departmentNumber: 8484 -employeeType: Normal -homePhone: +1 804 935-5396 -initials: P. B. -mobile: +1 804 818-2175 -pager: +1 804 177-8759 -roomNumber: 8787 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatrisa Zivkovic -sn: Zivkovic -description: This is Beatrisa Zivkovic's description -facsimileTelephoneNumber: +1 408 217-2823 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 861-2112 -title: Junior Payroll Fellow -userPassword: Password1 -uid: ZivkoviB -givenName: Beatrisa -mail: ZivkoviB@0e430e5bab6e4a2fa53e5bfd14eb15b0.bitwarden.com -carLicense: LPU8X5 -departmentNumber: 6709 -employeeType: Contract -homePhone: +1 408 137-4480 -initials: B. Z. -mobile: +1 408 243-1377 -pager: +1 408 479-5983 -roomNumber: 9686 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Salis Quilty,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salis Quilty -sn: Quilty -description: This is Salis Quilty's description -facsimileTelephoneNumber: +1 415 298-8181 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 189-2517 -title: Associate Payroll Stooge -userPassword: Password1 -uid: QuiltyS -givenName: Salis -mail: QuiltyS@9ec09b5f2f3848f7b253932b170c96c0.bitwarden.com -carLicense: MY2AC1 -departmentNumber: 2195 -employeeType: Contract -homePhone: +1 415 584-1937 -initials: S. Q. -mobile: +1 415 646-2339 -pager: +1 415 928-1757 -roomNumber: 8342 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Stormi Vempati,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stormi Vempati -sn: Vempati -description: This is Stormi Vempati's description -facsimileTelephoneNumber: +1 408 623-6884 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 178-1724 -title: Chief Management Sales Rep -userPassword: Password1 -uid: VempatiS -givenName: Stormi -mail: VempatiS@edfe7405a5b34e7bb39744d59a06067d.bitwarden.com -carLicense: D9D49F -departmentNumber: 4287 -employeeType: Contract -homePhone: +1 408 781-8826 -initials: S. V. -mobile: +1 408 383-1237 -pager: +1 408 643-5126 -roomNumber: 9047 -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lauretta Salvin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lauretta Salvin -sn: Salvin -description: This is Lauretta Salvin's description -facsimileTelephoneNumber: +1 818 549-4524 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 818 952-9442 -title: Associate Peons Assistant -userPassword: Password1 -uid: SalvinL -givenName: Lauretta -mail: SalvinL@58d046473fe24d0d8bf6f510239a1102.bitwarden.com -carLicense: F2J9IY -departmentNumber: 6035 -employeeType: Contract -homePhone: +1 818 970-1793 -initials: L. S. -mobile: +1 818 897-1642 -pager: +1 818 752-6451 -roomNumber: 9514 -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sarine Quane,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarine Quane -sn: Quane -description: This is Sarine Quane's description -facsimileTelephoneNumber: +1 408 180-4833 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 874-7006 -title: Master Management Fellow -userPassword: Password1 -uid: QuaneS -givenName: Sarine -mail: QuaneS@7d9f9ce4ff8b4d56b5e90ecb1e79413c.bitwarden.com -carLicense: OAPA32 -departmentNumber: 9090 -employeeType: Normal -homePhone: +1 408 641-3131 -initials: S. Q. -mobile: +1 408 674-4349 -pager: +1 408 716-7234 -roomNumber: 8985 -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rocio Brauer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rocio Brauer -sn: Brauer -description: This is Rocio Brauer's description -facsimileTelephoneNumber: +1 408 139-5233 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 469-4887 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: BrauerR -givenName: Rocio -mail: BrauerR@ec5b72978f304decbd01b86ff428bb78.bitwarden.com -carLicense: XU4KKH -departmentNumber: 4993 -employeeType: Contract -homePhone: +1 408 410-1296 -initials: R. B. -mobile: +1 408 307-8190 -pager: +1 408 875-1724 -roomNumber: 9816 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Margaretta Muchow,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margaretta Muchow -sn: Muchow -description: This is Margaretta Muchow's description -facsimileTelephoneNumber: +1 818 644-2358 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 794-9227 -title: Chief Product Development President -userPassword: Password1 -uid: MuchowM -givenName: Margaretta -mail: MuchowM@5c51ed312b7d40789d1387ca1b76506e.bitwarden.com -carLicense: ILHJFT -departmentNumber: 7980 -employeeType: Contract -homePhone: +1 818 751-2105 -initials: M. M. -mobile: +1 818 262-4541 -pager: +1 818 129-1884 -roomNumber: 9698 -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dona Nairn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dona Nairn -sn: Nairn -description: This is Dona Nairn's description -facsimileTelephoneNumber: +1 804 217-8336 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 807-7150 -title: Master Janitorial Mascot -userPassword: Password1 -uid: NairnD -givenName: Dona -mail: NairnD@4ce8989b72bf418782f9268b205e86e4.bitwarden.com -carLicense: NQTA6C -departmentNumber: 7393 -employeeType: Employee -homePhone: +1 804 442-8879 -initials: D. N. -mobile: +1 804 593-7611 -pager: +1 804 204-1292 -roomNumber: 9856 -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carolien Skiba,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolien Skiba -sn: Skiba -description: This is Carolien Skiba's description -facsimileTelephoneNumber: +1 510 967-2643 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 141-2874 -title: Supreme Administrative Manager -userPassword: Password1 -uid: SkibaC -givenName: Carolien -mail: SkibaC@a98f671d807c43a797dff7cd33629811.bitwarden.com -carLicense: RT07V3 -departmentNumber: 7095 -employeeType: Normal -homePhone: +1 510 728-3202 -initials: C. S. -mobile: +1 510 951-3735 -pager: +1 510 377-8176 -roomNumber: 9916 -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cathee Bress,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathee Bress -sn: Bress -description: This is Cathee Bress's description -facsimileTelephoneNumber: +1 510 526-2127 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 679-6481 -title: Junior Product Development Evangelist -userPassword: Password1 -uid: BressC -givenName: Cathee -mail: BressC@98bcbee6a1c244fa8e846bbc7936d10f.bitwarden.com -carLicense: 667XT9 -departmentNumber: 6007 -employeeType: Employee -homePhone: +1 510 418-2050 -initials: C. B. -mobile: +1 510 148-1890 -pager: +1 510 252-3736 -roomNumber: 8645 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mandy Settels,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mandy Settels -sn: Settels -description: This is Mandy Settels's description -facsimileTelephoneNumber: +1 408 720-7350 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 423-3084 -title: Master Payroll Developer -userPassword: Password1 -uid: SettelsM -givenName: Mandy -mail: SettelsM@a70c344bf7f247fc92a9688532a78eaa.bitwarden.com -carLicense: DUU3F4 -departmentNumber: 1754 -employeeType: Normal -homePhone: +1 408 407-8572 -initials: M. S. -mobile: +1 408 221-3702 -pager: +1 408 175-3264 -roomNumber: 9994 -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Odetta Tzuang,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odetta Tzuang -sn: Tzuang -description: This is Odetta Tzuang's description -facsimileTelephoneNumber: +1 206 550-8908 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 960-6569 -title: Associate Payroll Czar -userPassword: Password1 -uid: TzuangO -givenName: Odetta -mail: TzuangO@24f4ab788e7441abadbc2141835089b9.bitwarden.com -carLicense: S2D1CE -departmentNumber: 5282 -employeeType: Employee -homePhone: +1 206 927-4828 -initials: O. T. -mobile: +1 206 533-9334 -pager: +1 206 658-6879 -roomNumber: 8188 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arne Matney,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arne Matney -sn: Matney -description: This is Arne Matney's description -facsimileTelephoneNumber: +1 213 269-6235 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 584-5900 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: MatneyA -givenName: Arne -mail: MatneyA@df9e6df2116c4c0abb1ab3ad5d8dbaf8.bitwarden.com -carLicense: HYQNT2 -departmentNumber: 1798 -employeeType: Employee -homePhone: +1 213 394-6812 -initials: A. M. -mobile: +1 213 635-9008 -pager: +1 213 126-9043 -roomNumber: 9389 -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rijn Halliwill -sn: Halliwill -description: This is Rijn Halliwill's description -facsimileTelephoneNumber: +1 818 668-7727 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 396-5285 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: HalliwiR -givenName: Rijn -mail: HalliwiR@e51aa6debfeb4cc88c68dfc76ad89784.bitwarden.com -carLicense: D9GFNK -departmentNumber: 9626 -employeeType: Normal -homePhone: +1 818 712-3218 -initials: R. H. -mobile: +1 818 503-5499 -pager: +1 818 443-1044 -roomNumber: 8594 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kylen Maenpaa -sn: Maenpaa -description: This is Kylen Maenpaa's description -facsimileTelephoneNumber: +1 213 995-9172 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 864-5169 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: MaenpaaK -givenName: Kylen -mail: MaenpaaK@fa475df3d2b54f0daa8cb07fc8f9be10.bitwarden.com -carLicense: G44OVV -departmentNumber: 4237 -employeeType: Normal -homePhone: +1 213 827-5921 -initials: K. M. -mobile: +1 213 366-7376 -pager: +1 213 619-4175 -roomNumber: 9962 -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ernest Derbyshire -sn: Derbyshire -description: This is Ernest Derbyshire's description -facsimileTelephoneNumber: +1 206 847-3541 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 137-2475 -title: Chief Payroll Architect -userPassword: Password1 -uid: DerbyshE -givenName: Ernest -mail: DerbyshE@5e2c67d0d05546f9b167a97275baece6.bitwarden.com -carLicense: R3EUT0 -departmentNumber: 8164 -employeeType: Employee -homePhone: +1 206 749-8635 -initials: E. D. -mobile: +1 206 159-4314 -pager: +1 206 919-9218 -roomNumber: 9061 -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dvm LaPlante,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dvm LaPlante -sn: LaPlante -description: This is Dvm LaPlante's description -facsimileTelephoneNumber: +1 510 604-6356 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 916-2715 -title: Junior Payroll Punk -userPassword: Password1 -uid: LaPlantD -givenName: Dvm -mail: LaPlantD@efeefad1218b44b4b09303834453b239.bitwarden.com -carLicense: OXLB5E -departmentNumber: 1568 -employeeType: Normal -homePhone: +1 510 789-3507 -initials: D. L. -mobile: +1 510 722-8997 -pager: +1 510 161-6738 -roomNumber: 9929 -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Edeline ORourke,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edeline ORourke -sn: ORourke -description: This is Edeline ORourke's description -facsimileTelephoneNumber: +1 818 150-2810 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 660-9642 -title: Chief Payroll Developer -userPassword: Password1 -uid: ORourkeE -givenName: Edeline -mail: ORourkeE@a2c9df9a4cd24389b4a0116cc38b3328.bitwarden.com -carLicense: 6NG2J6 -departmentNumber: 1216 -employeeType: Employee -homePhone: +1 818 609-1669 -initials: E. O. -mobile: +1 818 921-5608 -pager: +1 818 930-9770 -roomNumber: 8217 -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jiri Sengoba,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jiri Sengoba -sn: Sengoba -description: This is Jiri Sengoba's description -facsimileTelephoneNumber: +1 408 683-9116 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 769-1875 -title: Junior Product Development Director -userPassword: Password1 -uid: SengobaJ -givenName: Jiri -mail: SengobaJ@ef59e9dfc35148e0a47d9411700130fb.bitwarden.com -carLicense: 3B7LV1 -departmentNumber: 6180 -employeeType: Employee -homePhone: +1 408 174-2193 -initials: J. S. -mobile: +1 408 379-5162 -pager: +1 408 480-6124 -roomNumber: 9702 -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Terence Ashdown,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terence Ashdown -sn: Ashdown -description: This is Terence Ashdown's description -facsimileTelephoneNumber: +1 415 309-5355 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 980-6804 -title: Associate Payroll Czar -userPassword: Password1 -uid: AshdownT -givenName: Terence -mail: AshdownT@8680d13ae864492b9dc7a4d4204aef89.bitwarden.com -carLicense: J0ACKF -departmentNumber: 7963 -employeeType: Employee -homePhone: +1 415 309-1167 -initials: T. A. -mobile: +1 415 773-3203 -pager: +1 415 957-6545 -roomNumber: 8894 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Donni Keilholz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donni Keilholz -sn: Keilholz -description: This is Donni Keilholz's description -facsimileTelephoneNumber: +1 206 421-7209 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 197-6139 -title: Master Janitorial Vice President -userPassword: Password1 -uid: KeilholD -givenName: Donni -mail: KeilholD@77627e1e8f8e4cdc88cd6606136ffbcf.bitwarden.com -carLicense: QCM250 -departmentNumber: 9071 -employeeType: Normal -homePhone: +1 206 474-9491 -initials: D. K. -mobile: +1 206 472-2969 -pager: +1 206 212-8667 -roomNumber: 8460 -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephanie Larsen -sn: Larsen -description: This is Stephanie Larsen's description -facsimileTelephoneNumber: +1 213 616-2128 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 629-4944 -title: Chief Janitorial Stooge -userPassword: Password1 -uid: LarsenS -givenName: Stephanie -mail: LarsenS@2ce1c1b789434fc0b1cfbba03b1eddc8.bitwarden.com -carLicense: 3JLKDC -departmentNumber: 4769 -employeeType: Contract -homePhone: +1 213 822-5092 -initials: S. L. -mobile: +1 213 297-9933 -pager: +1 213 981-6488 -roomNumber: 9591 -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verlyn Reinlie -sn: Reinlie -description: This is Verlyn Reinlie's description -facsimileTelephoneNumber: +1 213 756-9242 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 490-3935 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: ReinlieV -givenName: Verlyn -mail: ReinlieV@af244d93e89148e099720c8250f904c6.bitwarden.com -carLicense: NNI5OA -departmentNumber: 2607 -employeeType: Normal -homePhone: +1 213 527-2217 -initials: V. R. -mobile: +1 213 818-9257 -pager: +1 213 949-3193 -roomNumber: 8605 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Minhwi Vallet,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minhwi Vallet -sn: Vallet -description: This is Minhwi Vallet's description -facsimileTelephoneNumber: +1 804 217-5627 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 572-7409 -title: Associate Product Development Consultant -userPassword: Password1 -uid: ValletM -givenName: Minhwi -mail: ValletM@053a5e187b0b4033abb4000d18053cd9.bitwarden.com -carLicense: CSS3RH -departmentNumber: 6678 -employeeType: Normal -homePhone: +1 804 266-1466 -initials: M. V. -mobile: +1 804 160-3448 -pager: +1 804 187-5145 -roomNumber: 9113 -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Allianora Wissler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allianora Wissler -sn: Wissler -description: This is Allianora Wissler's description -facsimileTelephoneNumber: +1 415 769-1883 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 133-9864 -title: Chief Janitorial President -userPassword: Password1 -uid: WisslerA -givenName: Allianora -mail: WisslerA@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com -carLicense: NDV8F8 -departmentNumber: 5291 -employeeType: Normal -homePhone: +1 415 233-3404 -initials: A. W. -mobile: +1 415 888-7507 -pager: +1 415 286-5592 -roomNumber: 9295 -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Francisco Elam,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francisco Elam -sn: Elam -description: This is Francisco Elam's description -facsimileTelephoneNumber: +1 804 169-9503 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 804 173-5011 -title: Chief Product Testing Czar -userPassword: Password1 -uid: ElamF -givenName: Francisco -mail: ElamF@ff45973707884b8a993a9b6a0db0aa11.bitwarden.com -carLicense: NURR9F -departmentNumber: 6696 -employeeType: Employee -homePhone: +1 804 546-6030 -initials: F. E. -mobile: +1 804 713-3370 -pager: +1 804 475-3968 -roomNumber: 9980 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katie Labrie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katie Labrie -sn: Labrie -description: This is Katie Labrie's description -facsimileTelephoneNumber: +1 415 437-2364 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 346-5389 -title: Junior Janitorial Manager -userPassword: Password1 -uid: LabrieK -givenName: Katie -mail: LabrieK@c974995ddc894f639cebc6e910eb3bc3.bitwarden.com -carLicense: 0RCS0Y -departmentNumber: 2865 -employeeType: Normal -homePhone: +1 415 270-7825 -initials: K. L. -mobile: +1 415 452-3778 -pager: +1 415 872-6767 -roomNumber: 8919 -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kazuhiko Drewes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazuhiko Drewes -sn: Drewes -description: This is Kazuhiko Drewes's description -facsimileTelephoneNumber: +1 213 963-4704 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 773-4497 -title: Associate Management Artist -userPassword: Password1 -uid: DrewesK -givenName: Kazuhiko -mail: DrewesK@991dc3abafbe42ae88689cdf83c52cb7.bitwarden.com -carLicense: M1TG14 -departmentNumber: 1476 -employeeType: Normal -homePhone: +1 213 172-9327 -initials: K. D. -mobile: +1 213 677-7431 -pager: +1 213 254-9296 -roomNumber: 8620 -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com -manager: cn=Duong Bannard,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charmane Dhuga -sn: Dhuga -description: This is Charmane Dhuga's description -facsimileTelephoneNumber: +1 804 745-3543 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 338-1581 -title: Supreme Human Resources Evangelist -userPassword: Password1 -uid: DhugaC -givenName: Charmane -mail: DhugaC@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com -carLicense: Y91I1E -departmentNumber: 5005 -employeeType: Normal -homePhone: +1 804 655-6980 -initials: C. D. -mobile: +1 804 167-7042 -pager: +1 804 879-5286 -roomNumber: 9229 -manager: cn=Edlene Morocz,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Meade Esmaili,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meade Esmaili -sn: Esmaili -description: This is Meade Esmaili's description -facsimileTelephoneNumber: +1 408 411-8905 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 956-5281 -title: Associate Product Development Admin -userPassword: Password1 -uid: EsmailiM -givenName: Meade -mail: EsmailiM@9b1dcdebf2c241bf975e03d6ac9197e3.bitwarden.com -carLicense: DC3II7 -departmentNumber: 4469 -employeeType: Employee -homePhone: +1 408 557-4235 -initials: M. E. -mobile: +1 408 774-8512 -pager: +1 408 934-9918 -roomNumber: 8426 -secretary: cn=Carolan Bott,ou=Janitorial,dc=bitwarden, dc=com -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gwennie Sojkowski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwennie Sojkowski -sn: Sojkowski -description: This is Gwennie Sojkowski's description -facsimileTelephoneNumber: +1 510 572-6147 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 583-5829 -title: Master Management Assistant -userPassword: Password1 -uid: SojkowsG -givenName: Gwennie -mail: SojkowsG@7705ffcba30447f5b39ef2ac69db9c3a.bitwarden.com -carLicense: TILQ7I -departmentNumber: 7659 -employeeType: Contract -homePhone: +1 510 605-7775 -initials: G. S. -mobile: +1 510 514-8207 -pager: +1 510 662-4461 -roomNumber: 8511 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadan Satkunaseelan -sn: Satkunaseelan -description: This is Sadan Satkunaseelan's description -facsimileTelephoneNumber: +1 804 921-2856 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 235-3008 -title: Chief Peons President -userPassword: Password1 -uid: SatkunaS -givenName: Sadan -mail: SatkunaS@348695c8b467437c83a5f7c72f04c2de.bitwarden.com -carLicense: OFRATP -departmentNumber: 6170 -employeeType: Normal -homePhone: +1 804 913-9450 -initials: S. S. -mobile: +1 804 649-5021 -pager: +1 804 567-2830 -roomNumber: 8060 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Winona Paine,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winona Paine -sn: Paine -description: This is Winona Paine's description -facsimileTelephoneNumber: +1 415 401-4013 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 988-7771 -title: Associate Administrative Janitor -userPassword: Password1 -uid: PaineW -givenName: Winona -mail: PaineW@3bd9de2175e44743a96e1e8c28036657.bitwarden.com -carLicense: UGED3E -departmentNumber: 1882 -employeeType: Normal -homePhone: +1 415 683-1342 -initials: W. P. -mobile: +1 415 739-7907 -pager: +1 415 592-6532 -roomNumber: 8897 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chiquita Ferrell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chiquita Ferrell -sn: Ferrell -description: This is Chiquita Ferrell's description -facsimileTelephoneNumber: +1 818 977-3127 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 472-3998 -title: Junior Peons Dictator -userPassword: Password1 -uid: FerrellC -givenName: Chiquita -mail: FerrellC@492b9c186a41410b8362945cf33f6ac7.bitwarden.com -carLicense: 8E8LS0 -departmentNumber: 2538 -employeeType: Normal -homePhone: +1 818 701-5265 -initials: C. F. -mobile: +1 818 926-5632 -pager: +1 818 358-9861 -roomNumber: 8830 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Burgess Platthy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Burgess Platthy -sn: Platthy -description: This is Burgess Platthy's description -facsimileTelephoneNumber: +1 804 703-1139 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 804 657-2400 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: PlatthyB -givenName: Burgess -mail: PlatthyB@c90fcc6a2adf434b982935936ff5f7b6.bitwarden.com -carLicense: P0V4BA -departmentNumber: 4143 -employeeType: Employee -homePhone: +1 804 225-5720 -initials: B. P. -mobile: +1 804 765-1829 -pager: +1 804 983-1573 -roomNumber: 9963 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Harlene Kortje,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harlene Kortje -sn: Kortje -description: This is Harlene Kortje's description -facsimileTelephoneNumber: +1 213 910-1376 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 213 161-7938 -title: Junior Product Development Fellow -userPassword: Password1 -uid: KortjeH -givenName: Harlene -mail: KortjeH@9f0054716a414ce084f33e268195dbbd.bitwarden.com -carLicense: XG3MXU -departmentNumber: 7194 -employeeType: Contract -homePhone: +1 213 699-5913 -initials: H. K. -mobile: +1 213 885-4219 -pager: +1 213 774-1097 -roomNumber: 8317 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Suhas Ilic,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suhas Ilic -sn: Ilic -description: This is Suhas Ilic's description -facsimileTelephoneNumber: +1 408 575-2203 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 597-8031 -title: Junior Administrative Director -userPassword: Password1 -uid: IlicS -givenName: Suhas -mail: IlicS@aa11a3e30f7d4b8b9f6e08ae63f7a50f.bitwarden.com -carLicense: U6EFSG -departmentNumber: 8855 -employeeType: Contract -homePhone: +1 408 528-9717 -initials: S. I. -mobile: +1 408 794-4243 -pager: +1 408 664-5730 -roomNumber: 9620 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kamil Caines,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamil Caines -sn: Caines -description: This is Kamil Caines's description -facsimileTelephoneNumber: +1 415 395-5625 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 174-9337 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: CainesK -givenName: Kamil -mail: CainesK@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com -carLicense: MT9257 -departmentNumber: 2105 -employeeType: Normal -homePhone: +1 415 278-8014 -initials: K. C. -mobile: +1 415 316-6921 -pager: +1 415 456-4999 -roomNumber: 9221 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=HorLam Momon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HorLam Momon -sn: Momon -description: This is HorLam Momon's description -facsimileTelephoneNumber: +1 415 443-4231 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 603-1559 -title: Chief Product Testing Technician -userPassword: Password1 -uid: MomonH -givenName: HorLam -mail: MomonH@47fbb574e9c1480db21858032e62e0c7.bitwarden.com -carLicense: CUHSLT -departmentNumber: 4760 -employeeType: Contract -homePhone: +1 415 939-3418 -initials: H. M. -mobile: +1 415 638-4183 -pager: +1 415 289-2583 -roomNumber: 8288 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Farah Brennand,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farah Brennand -sn: Brennand -description: This is Farah Brennand's description -facsimileTelephoneNumber: +1 415 922-3672 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 935-5976 -title: Supreme Management Visionary -userPassword: Password1 -uid: BrennanF -givenName: Farah -mail: BrennanF@5670176255f949f78b023f460fb780c7.bitwarden.com -carLicense: I7J6AO -departmentNumber: 4009 -employeeType: Normal -homePhone: +1 415 514-4177 -initials: F. B. -mobile: +1 415 210-3740 -pager: +1 415 975-6868 -roomNumber: 8920 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Wilfred Issa,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilfred Issa -sn: Issa -description: This is Wilfred Issa's description -facsimileTelephoneNumber: +1 213 618-3576 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 704-6392 -title: Supreme Management Pinhead -userPassword: Password1 -uid: IssaW -givenName: Wilfred -mail: IssaW@ebbd3bd6f4c84c3b86ade3725f39d1ef.bitwarden.com -carLicense: H9N9MF -departmentNumber: 2704 -employeeType: Contract -homePhone: +1 213 674-9358 -initials: W. I. -mobile: +1 213 763-8196 -pager: +1 213 166-3869 -roomNumber: 9577 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zino Larson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zino Larson -sn: Larson -description: This is Zino Larson's description -facsimileTelephoneNumber: +1 510 592-9582 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 510 161-1529 -title: Master Janitorial Director -userPassword: Password1 -uid: LarsonZ -givenName: Zino -mail: LarsonZ@86698d59a6aa411691a02fa8cabde4d0.bitwarden.com -carLicense: HRCDLP -departmentNumber: 1997 -employeeType: Normal -homePhone: +1 510 501-8031 -initials: Z. L. -mobile: +1 510 769-4585 -pager: +1 510 621-4753 -roomNumber: 8744 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorthy Welsch -sn: Welsch -description: This is Dorthy Welsch's description -facsimileTelephoneNumber: +1 213 841-7559 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 179-6490 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: WelschD -givenName: Dorthy -mail: WelschD@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com -carLicense: 1HOKPQ -departmentNumber: 9100 -employeeType: Employee -homePhone: +1 213 721-2092 -initials: D. W. -mobile: +1 213 839-7978 -pager: +1 213 679-3261 -roomNumber: 8131 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rhiamon Devault,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhiamon Devault -sn: Devault -description: This is Rhiamon Devault's description -facsimileTelephoneNumber: +1 206 188-2668 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 827-8069 -title: Supreme Product Development Artist -userPassword: Password1 -uid: DevaultR -givenName: Rhiamon -mail: DevaultR@3fd921dd1e2f4c51ac696af9e0351f02.bitwarden.com -carLicense: E3YBU4 -departmentNumber: 2583 -employeeType: Employee -homePhone: +1 206 434-7378 -initials: R. D. -mobile: +1 206 513-1059 -pager: +1 206 686-7266 -roomNumber: 8173 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Michiko Sich,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michiko Sich -sn: Sich -description: This is Michiko Sich's description -facsimileTelephoneNumber: +1 213 785-5866 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 243-2826 -title: Supreme Management Developer -userPassword: Password1 -uid: SichM -givenName: Michiko -mail: SichM@a3445f6a5f3345a9957e7fe7bacb2499.bitwarden.com -carLicense: RMK6YS -departmentNumber: 1172 -employeeType: Normal -homePhone: +1 213 900-7005 -initials: M. S. -mobile: +1 213 489-1321 -pager: +1 213 264-4718 -roomNumber: 9509 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Weber Ishii,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weber Ishii -sn: Ishii -description: This is Weber Ishii's description -facsimileTelephoneNumber: +1 408 910-2703 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 259-5525 -title: Junior Payroll Vice President -userPassword: Password1 -uid: IshiiW -givenName: Weber -mail: IshiiW@becb244da0554983b71d06f587be1dbc.bitwarden.com -carLicense: JBG4ID -departmentNumber: 3081 -employeeType: Contract -homePhone: +1 408 744-6623 -initials: W. I. -mobile: +1 408 726-6526 -pager: +1 408 109-6840 -roomNumber: 8501 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Beppie Kilburn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beppie Kilburn -sn: Kilburn -description: This is Beppie Kilburn's description -facsimileTelephoneNumber: +1 206 977-9150 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 991-2285 -title: Master Product Development Engineer -userPassword: Password1 -uid: KilburnB -givenName: Beppie -mail: KilburnB@4691b2eac8ba4d1390582076e407a460.bitwarden.com -carLicense: 5I0JST -departmentNumber: 1473 -employeeType: Normal -homePhone: +1 206 948-2078 -initials: B. K. -mobile: +1 206 424-1288 -pager: +1 206 361-4813 -roomNumber: 9346 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Durali Abelow,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Durali Abelow -sn: Abelow -description: This is Durali Abelow's description -facsimileTelephoneNumber: +1 408 420-2987 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 187-1650 -title: Master Payroll Assistant -userPassword: Password1 -uid: AbelowD -givenName: Durali -mail: AbelowD@8a40f0f791fd451f85ce90daae1d6995.bitwarden.com -carLicense: 1EOKQ4 -departmentNumber: 6960 -employeeType: Normal -homePhone: +1 408 248-9706 -initials: D. A. -mobile: +1 408 453-1074 -pager: +1 408 493-4419 -roomNumber: 8891 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eleen Pappu,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eleen Pappu -sn: Pappu -description: This is Eleen Pappu's description -facsimileTelephoneNumber: +1 206 570-3235 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 513-5435 -title: Junior Payroll Engineer -userPassword: Password1 -uid: PappuE -givenName: Eleen -mail: PappuE@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com -carLicense: Y21JKG -departmentNumber: 1379 -employeeType: Employee -homePhone: +1 206 196-7455 -initials: E. P. -mobile: +1 206 920-9565 -pager: +1 206 320-8638 -roomNumber: 8171 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Betty Elzer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betty Elzer -sn: Elzer -description: This is Betty Elzer's description -facsimileTelephoneNumber: +1 818 976-8374 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 818 779-5209 -title: Master Peons Technician -userPassword: Password1 -uid: ElzerB -givenName: Betty -mail: ElzerB@02d556d8128c42b5aa2cd5d4238f40aa.bitwarden.com -carLicense: FKJPWI -departmentNumber: 2981 -employeeType: Normal -homePhone: +1 818 108-6935 -initials: B. E. -mobile: +1 818 771-3047 -pager: +1 818 299-3747 -roomNumber: 8979 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sallyann Environment,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sallyann Environment -sn: Environment -description: This is Sallyann Environment's description -facsimileTelephoneNumber: +1 818 737-6308 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 436-9004 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: EnvironS -givenName: Sallyann -mail: EnvironS@11fa5cc8547c46d98b4271c0748028a9.bitwarden.com -carLicense: RWBAFY -departmentNumber: 3550 -employeeType: Contract -homePhone: +1 818 260-1613 -initials: S. E. -mobile: +1 818 307-3809 -pager: +1 818 110-7248 -roomNumber: 8711 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ans Pozzi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ans Pozzi -sn: Pozzi -description: This is Ans Pozzi's description -facsimileTelephoneNumber: +1 510 908-8920 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 957-4278 -title: Junior Janitorial Manager -userPassword: Password1 -uid: PozziA -givenName: Ans -mail: PozziA@f910b6421df04b2e9cdfa3e15c0b0190.bitwarden.com -carLicense: 4FQ2XF -departmentNumber: 4839 -employeeType: Contract -homePhone: +1 510 358-4549 -initials: A. P. -mobile: +1 510 154-1418 -pager: +1 510 793-6808 -roomNumber: 8231 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Blithe Sherow,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blithe Sherow -sn: Sherow -description: This is Blithe Sherow's description -facsimileTelephoneNumber: +1 818 221-2077 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 818 892-8003 -title: Associate Product Testing Grunt -userPassword: Password1 -uid: SherowB -givenName: Blithe -mail: SherowB@0eccc35b1ecb45239e2d62bd2610a4ba.bitwarden.com -carLicense: 9HK7X9 -departmentNumber: 9384 -employeeType: Contract -homePhone: +1 818 794-8061 -initials: B. S. -mobile: +1 818 763-5319 -pager: +1 818 589-8494 -roomNumber: 8925 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jacklin Alles,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacklin Alles -sn: Alles -description: This is Jacklin Alles's description -facsimileTelephoneNumber: +1 213 390-1101 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 938-8207 -title: Master Peons Punk -userPassword: Password1 -uid: AllesJ -givenName: Jacklin -mail: AllesJ@b99b0b5c7b724e06a91026c096a8854d.bitwarden.com -carLicense: S2JU6Q -departmentNumber: 5099 -employeeType: Normal -homePhone: +1 213 440-1098 -initials: J. A. -mobile: +1 213 515-7241 -pager: +1 213 763-3997 -roomNumber: 8858 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmelle Kelemen -sn: Kelemen -description: This is Carmelle Kelemen's description -facsimileTelephoneNumber: +1 206 164-3308 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 385-3902 -title: Chief Administrative Consultant -userPassword: Password1 -uid: KelemenC -givenName: Carmelle -mail: KelemenC@8586ff08ef6b4c7592578bab914dcf40.bitwarden.com -carLicense: AV1NKA -departmentNumber: 8642 -employeeType: Normal -homePhone: +1 206 856-5277 -initials: C. K. -mobile: +1 206 777-7409 -pager: +1 206 523-7170 -roomNumber: 9874 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carleen Rundstein -sn: Rundstein -description: This is Carleen Rundstein's description -facsimileTelephoneNumber: +1 804 839-2190 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 167-7562 -title: Junior Human Resources Technician -userPassword: Password1 -uid: RundsteC -givenName: Carleen -mail: RundsteC@8aed4579481d435c98b14fd5983c7417.bitwarden.com -carLicense: K4BLSS -departmentNumber: 4849 -employeeType: Employee -homePhone: +1 804 463-5079 -initials: C. R. -mobile: +1 804 280-2459 -pager: +1 804 696-1845 -roomNumber: 9135 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosemary Tsai -sn: Tsai -description: This is Rosemary Tsai's description -facsimileTelephoneNumber: +1 213 145-3459 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 345-5117 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: TsaiR -givenName: Rosemary -mail: TsaiR@3f5b9048c8924fec87576c273249cede.bitwarden.com -carLicense: 35MS89 -departmentNumber: 3250 -employeeType: Employee -homePhone: +1 213 426-3518 -initials: R. T. -mobile: +1 213 711-1657 -pager: +1 213 889-4513 -roomNumber: 9100 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pauly Wycoff,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pauly Wycoff -sn: Wycoff -description: This is Pauly Wycoff's description -facsimileTelephoneNumber: +1 510 510-2848 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 715-8127 -title: Master Peons Pinhead -userPassword: Password1 -uid: WycoffP -givenName: Pauly -mail: WycoffP@1871a69ca6234f999f51d3a9b4eb4578.bitwarden.com -carLicense: HRSRN9 -departmentNumber: 3588 -employeeType: Normal -homePhone: +1 510 442-6828 -initials: P. W. -mobile: +1 510 162-4988 -pager: +1 510 120-8703 -roomNumber: 9890 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jackson Narron,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jackson Narron -sn: Narron -description: This is Jackson Narron's description -facsimileTelephoneNumber: +1 206 304-5341 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 641-4999 -title: Master Product Development Mascot -userPassword: Password1 -uid: NarronJ -givenName: Jackson -mail: NarronJ@87a3c7cedd324317a0a5cf80dbc758d8.bitwarden.com -carLicense: DVY6GI -departmentNumber: 9185 -employeeType: Normal -homePhone: +1 206 285-1416 -initials: J. N. -mobile: +1 206 476-6889 -pager: +1 206 209-6287 -roomNumber: 9428 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hermia Probs,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermia Probs -sn: Probs -description: This is Hermia Probs's description -facsimileTelephoneNumber: +1 804 746-1511 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 979-6247 -title: Supreme Administrative Engineer -userPassword: Password1 -uid: ProbsH -givenName: Hermia -mail: ProbsH@158d934795614bc784693ab70a2cd0b7.bitwarden.com -carLicense: UTYQWX -departmentNumber: 9865 -employeeType: Normal -homePhone: +1 804 186-1816 -initials: H. P. -mobile: +1 804 677-5315 -pager: +1 804 652-1719 -roomNumber: 9458 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Scovill McPhail,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Scovill McPhail -sn: McPhail -description: This is Scovill McPhail's description -facsimileTelephoneNumber: +1 804 942-5130 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 877-6276 -title: Master Management Fellow -userPassword: Password1 -uid: McPhailS -givenName: Scovill -mail: McPhailS@5184500633ec4ec1833d29082b384d33.bitwarden.com -carLicense: 9X7F8J -departmentNumber: 7430 -employeeType: Normal -homePhone: +1 804 683-5345 -initials: S. M. -mobile: +1 804 989-7135 -pager: +1 804 668-8619 -roomNumber: 8657 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dian Zalite,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dian Zalite -sn: Zalite -description: This is Dian Zalite's description -facsimileTelephoneNumber: +1 818 392-7582 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 578-2840 -title: Junior Administrative Writer -userPassword: Password1 -uid: ZaliteD -givenName: Dian -mail: ZaliteD@4fad719157f44ed19b7c7a96b512f7f4.bitwarden.com -carLicense: 7XE5TG -departmentNumber: 9424 -employeeType: Employee -homePhone: +1 818 946-5845 -initials: D. Z. -mobile: +1 818 150-7440 -pager: +1 818 422-3806 -roomNumber: 8778 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Puran Dundin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Puran Dundin -sn: Dundin -description: This is Puran Dundin's description -facsimileTelephoneNumber: +1 415 397-4415 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 814-5859 -title: Supreme Human Resources Engineer -userPassword: Password1 -uid: DundinP -givenName: Puran -mail: DundinP@412f6fbf438a4b3d8bbdf6350bccd80d.bitwarden.com -carLicense: HBA006 -departmentNumber: 9701 -employeeType: Contract -homePhone: +1 415 515-1364 -initials: P. D. -mobile: +1 415 301-1690 -pager: +1 415 211-2692 -roomNumber: 8216 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sosanna Nguyen -sn: Nguyen -description: This is Sosanna Nguyen's description -facsimileTelephoneNumber: +1 408 685-5328 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 222-4745 -title: Supreme Payroll Developer -userPassword: Password1 -uid: NguyenS -givenName: Sosanna -mail: NguyenS@35c9d3d9400d43a581b3020b915ebc3f.bitwarden.com -carLicense: EPV0F9 -departmentNumber: 1004 -employeeType: Normal -homePhone: +1 408 343-1335 -initials: S. N. -mobile: +1 408 589-9765 -pager: +1 408 138-1039 -roomNumber: 9601 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Migdalia Warner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Migdalia Warner -sn: Warner -description: This is Migdalia Warner's description -facsimileTelephoneNumber: +1 415 288-7232 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 551-5475 -title: Master Peons Manager -userPassword: Password1 -uid: WarnerM -givenName: Migdalia -mail: WarnerM@724caed46aaf481fb3e0817c5c10cdb6.bitwarden.com -carLicense: L6XSTR -departmentNumber: 5639 -employeeType: Employee -homePhone: +1 415 713-8133 -initials: M. W. -mobile: +1 415 790-7868 -pager: +1 415 852-1386 -roomNumber: 9856 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mechelle Kirn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mechelle Kirn -sn: Kirn -description: This is Mechelle Kirn's description -facsimileTelephoneNumber: +1 213 775-6485 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 914-5456 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: KirnM -givenName: Mechelle -mail: KirnM@7e9f6d17b8fc4a199e49adcccc9ca5e1.bitwarden.com -carLicense: LFOOJS -departmentNumber: 3661 -employeeType: Contract -homePhone: +1 213 210-5075 -initials: M. K. -mobile: +1 213 160-5512 -pager: +1 213 481-8483 -roomNumber: 8569 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jaan Hartin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaan Hartin -sn: Hartin -description: This is Jaan Hartin's description -facsimileTelephoneNumber: +1 818 267-6905 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 947-4708 -title: Master Peons Grunt -userPassword: Password1 -uid: HartinJ -givenName: Jaan -mail: HartinJ@a00e1b95d28e4af1be227d0b3e225d0c.bitwarden.com -carLicense: SMHGFN -departmentNumber: 8224 -employeeType: Employee -homePhone: +1 818 443-8493 -initials: J. H. -mobile: +1 818 295-6618 -pager: +1 818 314-1487 -roomNumber: 8828 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marilyn MacHattie -sn: MacHattie -description: This is Marilyn MacHattie's description -facsimileTelephoneNumber: +1 804 434-3188 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 368-6657 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: MacHattM -givenName: Marilyn -mail: MacHattM@1f586a2e93fc4e14adcb10bebbfd4b67.bitwarden.com -carLicense: N0574D -departmentNumber: 5574 -employeeType: Contract -homePhone: +1 804 602-1477 -initials: M. M. -mobile: +1 804 756-1697 -pager: +1 804 411-2922 -roomNumber: 9474 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anne JantzLee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anne JantzLee -sn: JantzLee -description: This is Anne JantzLee's description -facsimileTelephoneNumber: +1 818 930-7701 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 119-7635 -title: Chief Product Development Grunt -userPassword: Password1 -uid: JantzLeA -givenName: Anne -mail: JantzLeA@ec5b8f0e9ac54265b8c5ceea3f25604f.bitwarden.com -carLicense: 45T1AH -departmentNumber: 1657 -employeeType: Normal -homePhone: +1 818 827-3803 -initials: A. J. -mobile: +1 818 209-1838 -pager: +1 818 955-7774 -roomNumber: 8263 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blakelee Kemish -sn: Kemish -description: This is Blakelee Kemish's description -facsimileTelephoneNumber: +1 206 709-6289 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 534-5949 -title: Master Human Resources Punk -userPassword: Password1 -uid: KemishB -givenName: Blakelee -mail: KemishB@ade9a269c2794f41972a0cd585efc66c.bitwarden.com -carLicense: 3PJ1QG -departmentNumber: 8911 -employeeType: Contract -homePhone: +1 206 992-7104 -initials: B. K. -mobile: +1 206 270-8253 -pager: +1 206 113-4690 -roomNumber: 8341 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rachele VanDerBoom -sn: VanDerBoom -description: This is Rachele VanDerBoom's description -facsimileTelephoneNumber: +1 510 918-5631 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 993-7339 -title: Master Product Development Visionary -userPassword: Password1 -uid: VanDerBR -givenName: Rachele -mail: VanDerBR@b51c90a7a7734a92a0afbe6bbc47547e.bitwarden.com -carLicense: 9NWKIQ -departmentNumber: 5012 -employeeType: Normal -homePhone: +1 510 562-2729 -initials: R. V. -mobile: +1 510 855-5572 -pager: +1 510 604-2757 -roomNumber: 8386 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cherey Desantis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherey Desantis -sn: Desantis -description: This is Cherey Desantis's description -facsimileTelephoneNumber: +1 213 607-9098 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 213 887-5470 -title: Chief Peons Pinhead -userPassword: Password1 -uid: DesantiC -givenName: Cherey -mail: DesantiC@aae225b6543e4edebfd4e8a70cd66e37.bitwarden.com -carLicense: PG8DVX -departmentNumber: 5582 -employeeType: Normal -homePhone: +1 213 618-9779 -initials: C. D. -mobile: +1 213 869-5097 -pager: +1 213 283-9247 -roomNumber: 9335 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Celie Aksel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celie Aksel -sn: Aksel -description: This is Celie Aksel's description -facsimileTelephoneNumber: +1 510 124-9024 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 837-6507 -title: Junior Management Czar -userPassword: Password1 -uid: AkselC -givenName: Celie -mail: AkselC@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com -carLicense: 7P7NFM -departmentNumber: 1422 -employeeType: Contract -homePhone: +1 510 191-2735 -initials: C. A. -mobile: +1 510 837-2455 -pager: +1 510 967-4179 -roomNumber: 8837 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aleta Khosla,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aleta Khosla -sn: Khosla -description: This is Aleta Khosla's description -facsimileTelephoneNumber: +1 804 809-7168 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 804 280-4129 -title: Junior Payroll Artist -userPassword: Password1 -uid: KhoslaA -givenName: Aleta -mail: KhoslaA@3235591d985b4d2894779cd55ac400f1.bitwarden.com -carLicense: HSN283 -departmentNumber: 9804 -employeeType: Contract -homePhone: +1 804 536-7339 -initials: A. K. -mobile: +1 804 307-7620 -pager: +1 804 955-8650 -roomNumber: 9724 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lennart Cramm,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lennart Cramm -sn: Cramm -description: This is Lennart Cramm's description -facsimileTelephoneNumber: +1 415 264-3621 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 538-3888 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: CrammL -givenName: Lennart -mail: CrammL@d8178390586b4ff2afbd07f5124be8ce.bitwarden.com -carLicense: EBXFE3 -departmentNumber: 7616 -employeeType: Normal -homePhone: +1 415 948-7705 -initials: L. C. -mobile: +1 415 684-6027 -pager: +1 415 118-4833 -roomNumber: 9276 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elex Sohal,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elex Sohal -sn: Sohal -description: This is Elex Sohal's description -facsimileTelephoneNumber: +1 415 954-1328 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 583-7512 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: SohalE -givenName: Elex -mail: SohalE@9c333a28d24845c1a7234d2e35b66565.bitwarden.com -carLicense: GY0LK6 -departmentNumber: 2236 -employeeType: Normal -homePhone: +1 415 877-3429 -initials: E. S. -mobile: +1 415 960-2286 -pager: +1 415 372-3302 -roomNumber: 9299 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marianna Annas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marianna Annas -sn: Annas -description: This is Marianna Annas's description -facsimileTelephoneNumber: +1 213 897-1729 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 196-4433 -title: Chief Human Resources President -userPassword: Password1 -uid: AnnasM -givenName: Marianna -mail: AnnasM@0fe89eeff7dc4fc1a0f74df0bfbf040f.bitwarden.com -carLicense: 10BNI2 -departmentNumber: 2968 -employeeType: Contract -homePhone: +1 213 129-9289 -initials: M. A. -mobile: +1 213 662-1344 -pager: +1 213 712-8045 -roomNumber: 9223 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sergei MacElwee,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sergei MacElwee -sn: MacElwee -description: This is Sergei MacElwee's description -facsimileTelephoneNumber: +1 206 925-6724 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 704-5148 -title: Associate Management Madonna -userPassword: Password1 -uid: MacElweS -givenName: Sergei -mail: MacElweS@5bd88496e76c4f90b1f70eced0bf0739.bitwarden.com -carLicense: HOQSDU -departmentNumber: 7818 -employeeType: Employee -homePhone: +1 206 560-9019 -initials: S. M. -mobile: +1 206 704-6338 -pager: +1 206 533-6818 -roomNumber: 8727 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jay Dutil,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jay Dutil -sn: Dutil -description: This is Jay Dutil's description -facsimileTelephoneNumber: +1 415 969-2743 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 876-6133 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: DutilJ -givenName: Jay -mail: DutilJ@b347e7ca23ac4a809e51a769a6ab8366.bitwarden.com -carLicense: D0DOEL -departmentNumber: 8594 -employeeType: Normal -homePhone: +1 415 602-2902 -initials: J. D. -mobile: +1 415 957-4961 -pager: +1 415 532-6673 -roomNumber: 8695 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bevvy Routhier,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bevvy Routhier -sn: Routhier -description: This is Bevvy Routhier's description -facsimileTelephoneNumber: +1 818 207-7395 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 534-1065 -title: Supreme Peons Punk -userPassword: Password1 -uid: RouthieB -givenName: Bevvy -mail: RouthieB@7b122176285947e2aaa662ba71171180.bitwarden.com -carLicense: V453CM -departmentNumber: 5688 -employeeType: Employee -homePhone: +1 818 598-8204 -initials: B. R. -mobile: +1 818 439-4948 -pager: +1 818 430-9532 -roomNumber: 9904 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kacie Sconzo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kacie Sconzo -sn: Sconzo -description: This is Kacie Sconzo's description -facsimileTelephoneNumber: +1 804 939-7055 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 855-1718 -title: Junior Peons Punk -userPassword: Password1 -uid: SconzoK -givenName: Kacie -mail: SconzoK@7d0b6de1366f4854a2055e12fa1d2f25.bitwarden.com -carLicense: SS1DWG -departmentNumber: 6625 -employeeType: Contract -homePhone: +1 804 669-6883 -initials: K. S. -mobile: +1 804 188-6314 -pager: +1 804 624-8464 -roomNumber: 8172 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Annadiane Davids,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annadiane Davids -sn: Davids -description: This is Annadiane Davids's description -facsimileTelephoneNumber: +1 415 198-1867 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 119-1620 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: DavidsA -givenName: Annadiane -mail: DavidsA@1c617dcb4ec1414887e1b3bae62ec625.bitwarden.com -carLicense: 5GNA5T -departmentNumber: 5709 -employeeType: Employee -homePhone: +1 415 759-5394 -initials: A. D. -mobile: +1 415 252-1190 -pager: +1 415 309-5557 -roomNumber: 8505 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karan ETAS,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karan ETAS -sn: ETAS -description: This is Karan ETAS's description -facsimileTelephoneNumber: +1 206 741-3070 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 291-5741 -title: Supreme Peons Consultant -userPassword: Password1 -uid: ETASK -givenName: Karan -mail: ETASK@72edbeb53d9b4d36832bc312f776b4b1.bitwarden.com -carLicense: VSF8AS -departmentNumber: 9461 -employeeType: Employee -homePhone: +1 206 365-7958 -initials: K. E. -mobile: +1 206 635-1352 -pager: +1 206 924-8317 -roomNumber: 9923 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Betti Savoie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betti Savoie -sn: Savoie -description: This is Betti Savoie's description -facsimileTelephoneNumber: +1 206 619-4758 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 135-9090 -title: Supreme Product Development Stooge -userPassword: Password1 -uid: SavoieB -givenName: Betti -mail: SavoieB@10a46cb8875644479396c1c5e3228c3c.bitwarden.com -carLicense: DWCJ1I -departmentNumber: 9692 -employeeType: Normal -homePhone: +1 206 558-3475 -initials: B. S. -mobile: +1 206 335-4343 -pager: +1 206 819-3541 -roomNumber: 9273 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Croix Dunn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Croix Dunn -sn: Dunn -description: This is Croix Dunn's description -facsimileTelephoneNumber: +1 510 328-6290 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 234-1232 -title: Chief Management Technician -userPassword: Password1 -uid: DunnC -givenName: Croix -mail: DunnC@30a3ec06c4f44d1ba72c3001af7e8528.bitwarden.com -carLicense: YDDUTP -departmentNumber: 8925 -employeeType: Contract -homePhone: +1 510 732-6330 -initials: C. D. -mobile: +1 510 705-4963 -pager: +1 510 288-5036 -roomNumber: 9652 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardelia NowinaKonopka -sn: NowinaKonopka -description: This is Ardelia NowinaKonopka's description -facsimileTelephoneNumber: +1 408 457-7374 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 613-7880 -title: Master Administrative Grunt -userPassword: Password1 -uid: NowinaKA -givenName: Ardelia -mail: NowinaKA@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com -carLicense: RYIOXU -departmentNumber: 2252 -employeeType: Normal -homePhone: +1 408 154-3406 -initials: A. N. -mobile: +1 408 966-6728 -pager: +1 408 340-9959 -roomNumber: 9984 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Raymond McCaw,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raymond McCaw -sn: McCaw -description: This is Raymond McCaw's description -facsimileTelephoneNumber: +1 510 411-7669 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 616-7637 -title: Master Product Testing Consultant -userPassword: Password1 -uid: McCawR -givenName: Raymond -mail: McCawR@51677cc10f054f54964d7669880e03b1.bitwarden.com -carLicense: LYWSEV -departmentNumber: 8153 -employeeType: Contract -homePhone: +1 510 621-1057 -initials: R. M. -mobile: +1 510 788-2888 -pager: +1 510 850-7918 -roomNumber: 8431 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Laurna Ferner,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laurna Ferner -sn: Ferner -description: This is Laurna Ferner's description -facsimileTelephoneNumber: +1 804 745-1731 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 967-7596 -title: Supreme Payroll Manager -userPassword: Password1 -uid: FernerL -givenName: Laurna -mail: FernerL@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com -carLicense: 4V8KJ1 -departmentNumber: 1903 -employeeType: Contract -homePhone: +1 804 263-3554 -initials: L. F. -mobile: +1 804 769-9676 -pager: +1 804 958-6939 -roomNumber: 9019 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cathe Boyer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathe Boyer -sn: Boyer -description: This is Cathe Boyer's description -facsimileTelephoneNumber: +1 818 586-1908 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 829-5767 -title: Master Product Testing Punk -userPassword: Password1 -uid: BoyerC -givenName: Cathe -mail: BoyerC@bc1068ff7c5a442e884cab9ab7c4508b.bitwarden.com -carLicense: 0BORII -departmentNumber: 2207 -employeeType: Contract -homePhone: +1 818 208-8397 -initials: C. B. -mobile: +1 818 252-1043 -pager: +1 818 439-3395 -roomNumber: 8789 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hanco Elgin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanco Elgin -sn: Elgin -description: This is Hanco Elgin's description -facsimileTelephoneNumber: +1 415 828-1625 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 972-4263 -title: Associate Product Development Developer -userPassword: Password1 -uid: ElginH -givenName: Hanco -mail: ElginH@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com -carLicense: 0ERGLV -departmentNumber: 4154 -employeeType: Normal -homePhone: +1 415 556-6277 -initials: H. E. -mobile: +1 415 176-7465 -pager: +1 415 317-7383 -roomNumber: 8207 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Krier Brickman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krier Brickman -sn: Brickman -description: This is Krier Brickman's description -facsimileTelephoneNumber: +1 818 795-2311 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 480-7979 -title: Junior Management Developer -userPassword: Password1 -uid: BrickmaK -givenName: Krier -mail: BrickmaK@de96a17ce06e4487ba5f98c80195f121.bitwarden.com -carLicense: MH053J -departmentNumber: 8140 -employeeType: Normal -homePhone: +1 818 581-1063 -initials: K. B. -mobile: +1 818 211-7775 -pager: +1 818 815-4083 -roomNumber: 8624 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Aime IBNTAS,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aime IBNTAS -sn: IBNTAS -description: This is Aime IBNTAS's description -facsimileTelephoneNumber: +1 804 820-5586 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 850-8580 -title: Chief Management Punk -userPassword: Password1 -uid: IBNTASA -givenName: Aime -mail: IBNTASA@22c1ff8b360b4e918d680377dc0c9182.bitwarden.com -carLicense: Q5YTRI -departmentNumber: 7872 -employeeType: Employee -homePhone: +1 804 755-7361 -initials: A. I. -mobile: +1 804 352-3044 -pager: +1 804 513-4521 -roomNumber: 8363 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Theodore Pierson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theodore Pierson -sn: Pierson -description: This is Theodore Pierson's description -facsimileTelephoneNumber: +1 408 532-3405 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 801-1613 -title: Master Peons Technician -userPassword: Password1 -uid: PiersonT -givenName: Theodore -mail: PiersonT@59a4a020a4c74747a44b5e60109428e1.bitwarden.com -carLicense: VCWLH5 -departmentNumber: 7285 -employeeType: Contract -homePhone: +1 408 598-9240 -initials: T. P. -mobile: +1 408 398-8373 -pager: +1 408 248-4508 -roomNumber: 9757 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Monling Wormald,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monling Wormald -sn: Wormald -description: This is Monling Wormald's description -facsimileTelephoneNumber: +1 818 978-8297 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 750-1179 -title: Supreme Management Grunt -userPassword: Password1 -uid: WormaldM -givenName: Monling -mail: WormaldM@5d439b9e1cae4e6b90829e7c5b63fe41.bitwarden.com -carLicense: 31F6RX -departmentNumber: 3713 -employeeType: Contract -homePhone: +1 818 860-8717 -initials: M. W. -mobile: +1 818 108-3533 -pager: +1 818 129-9910 -roomNumber: 9669 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Amandy Poma,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amandy Poma -sn: Poma -description: This is Amandy Poma's description -facsimileTelephoneNumber: +1 415 178-8648 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 878-6187 -title: Master Peons Madonna -userPassword: Password1 -uid: PomaA -givenName: Amandy -mail: PomaA@4846d6ca825b452cab08fe6610eca31a.bitwarden.com -carLicense: 9M5Q0A -departmentNumber: 3243 -employeeType: Employee -homePhone: +1 415 863-9841 -initials: A. P. -mobile: +1 415 430-4340 -pager: +1 415 336-7116 -roomNumber: 8099 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carri Loper,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carri Loper -sn: Loper -description: This is Carri Loper's description -facsimileTelephoneNumber: +1 804 515-4326 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 299-3740 -title: Associate Product Development Czar -userPassword: Password1 -uid: LoperC -givenName: Carri -mail: LoperC@2f13ca54ee794decad24515251a42dff.bitwarden.com -carLicense: 6UT5BC -departmentNumber: 5239 -employeeType: Normal -homePhone: +1 804 898-9219 -initials: C. L. -mobile: +1 804 110-2800 -pager: +1 804 939-6496 -roomNumber: 8644 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cherri Bramlett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherri Bramlett -sn: Bramlett -description: This is Cherri Bramlett's description -facsimileTelephoneNumber: +1 213 416-9439 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 213 545-7647 -title: Master Peons Warrior -userPassword: Password1 -uid: BramletC -givenName: Cherri -mail: BramletC@ad4942d8c3c341119939c679c4dae154.bitwarden.com -carLicense: CMT665 -departmentNumber: 9793 -employeeType: Contract -homePhone: +1 213 338-1732 -initials: C. B. -mobile: +1 213 992-9264 -pager: +1 213 119-8397 -roomNumber: 8173 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tai Nerem,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tai Nerem -sn: Nerem -description: This is Tai Nerem's description -facsimileTelephoneNumber: +1 804 964-2587 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 707-3493 -title: Master Payroll Pinhead -userPassword: Password1 -uid: NeremT -givenName: Tai -mail: NeremT@b7e3c41f407e4dca81b533d904e13c76.bitwarden.com -carLicense: C18LU1 -departmentNumber: 3212 -employeeType: Normal -homePhone: +1 804 951-5524 -initials: T. N. -mobile: +1 804 486-4115 -pager: +1 804 477-2010 -roomNumber: 8140 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Luciano Homayoon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luciano Homayoon -sn: Homayoon -description: This is Luciano Homayoon's description -facsimileTelephoneNumber: +1 818 907-7120 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 805-5401 -title: Associate Product Development Stooge -userPassword: Password1 -uid: HomayooL -givenName: Luciano -mail: HomayooL@01a767a014e944228e30a2d3d6133594.bitwarden.com -carLicense: 8HBN2F -departmentNumber: 1727 -employeeType: Normal -homePhone: +1 818 500-6058 -initials: L. H. -mobile: +1 818 730-6703 -pager: +1 818 570-6674 -roomNumber: 9238 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verina Yakibchuk -sn: Yakibchuk -description: This is Verina Yakibchuk's description -facsimileTelephoneNumber: +1 408 567-9897 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 671-2951 -title: Associate Product Development Stooge -userPassword: Password1 -uid: YakibchV -givenName: Verina -mail: YakibchV@5696a65182774017a94deb08a344af69.bitwarden.com -carLicense: I4B0QJ -departmentNumber: 7825 -employeeType: Employee -homePhone: +1 408 739-6258 -initials: V. Y. -mobile: +1 408 377-7736 -pager: +1 408 609-4746 -roomNumber: 8613 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndel Gibeault -sn: Gibeault -description: This is Lyndel Gibeault's description -facsimileTelephoneNumber: +1 415 729-3082 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 325-1216 -title: Supreme Payroll Figurehead -userPassword: Password1 -uid: GibeaulL -givenName: Lyndel -mail: GibeaulL@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com -carLicense: LH3XXN -departmentNumber: 2990 -employeeType: Employee -homePhone: +1 415 695-9685 -initials: L. G. -mobile: +1 415 170-7202 -pager: +1 415 755-7709 -roomNumber: 8184 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tetsuyuki Campos -sn: Campos -description: This is Tetsuyuki Campos's description -facsimileTelephoneNumber: +1 415 112-3264 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 796-9068 -title: Junior Payroll Writer -userPassword: Password1 -uid: CamposT -givenName: Tetsuyuki -mail: CamposT@8cb1c49a16684bdda8ffa7f4489a6280.bitwarden.com -carLicense: 8F6YCQ -departmentNumber: 2248 -employeeType: Contract -homePhone: +1 415 406-2561 -initials: T. C. -mobile: +1 415 595-1334 -pager: +1 415 936-4779 -roomNumber: 8390 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lindsy Sargent -sn: Sargent -description: This is Lindsy Sargent's description -facsimileTelephoneNumber: +1 804 113-4736 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 804 120-8358 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: SargentL -givenName: Lindsy -mail: SargentL@34d5ed1c9d7241bdb443981287a04354.bitwarden.com -carLicense: XVGPQK -departmentNumber: 2569 -employeeType: Employee -homePhone: +1 804 335-6416 -initials: L. S. -mobile: +1 804 451-2869 -pager: +1 804 652-4352 -roomNumber: 8846 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Clovis Kaji,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clovis Kaji -sn: Kaji -description: This is Clovis Kaji's description -facsimileTelephoneNumber: +1 206 884-6317 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 872-8108 -title: Associate Peons Stooge -userPassword: Password1 -uid: KajiC -givenName: Clovis -mail: KajiC@80603eaa60c04031b0548162ee532532.bitwarden.com -carLicense: 8N27O6 -departmentNumber: 3681 -employeeType: Contract -homePhone: +1 206 696-9627 -initials: C. K. -mobile: +1 206 724-7191 -pager: +1 206 132-2594 -roomNumber: 8514 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Constancy Sugihara,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constancy Sugihara -sn: Sugihara -description: This is Constancy Sugihara's description -facsimileTelephoneNumber: +1 415 767-9095 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 672-2140 -title: Chief Peons Developer -userPassword: Password1 -uid: SugiharC -givenName: Constancy -mail: SugiharC@2390e6e80b5549ef9ff5de37313136db.bitwarden.com -carLicense: C767SQ -departmentNumber: 9909 -employeeType: Contract -homePhone: +1 415 975-7406 -initials: C. S. -mobile: +1 415 145-4516 -pager: +1 415 677-2247 -roomNumber: 8733 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Micki Pownall,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micki Pownall -sn: Pownall -description: This is Micki Pownall's description -facsimileTelephoneNumber: +1 213 436-6653 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 213 927-6917 -title: Master Janitorial Artist -userPassword: Password1 -uid: PownallM -givenName: Micki -mail: PownallM@40f66c0e51ca46c99bb0961cc624fcc8.bitwarden.com -carLicense: 44EN3X -departmentNumber: 1608 -employeeType: Employee -homePhone: +1 213 658-9576 -initials: M. P. -mobile: +1 213 426-6056 -pager: +1 213 564-8743 -roomNumber: 8466 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Norma Rabipour,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norma Rabipour -sn: Rabipour -description: This is Norma Rabipour's description -facsimileTelephoneNumber: +1 415 497-3148 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 820-8837 -title: Master Payroll Pinhead -userPassword: Password1 -uid: RabipouN -givenName: Norma -mail: RabipouN@2a72bc736ffb4d18ae10b2685172d382.bitwarden.com -carLicense: VSJ5UK -departmentNumber: 1029 -employeeType: Employee -homePhone: +1 415 694-7439 -initials: N. R. -mobile: +1 415 329-9824 -pager: +1 415 412-9724 -roomNumber: 8944 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sylvie Kapuscinski -sn: Kapuscinski -description: This is Sylvie Kapuscinski's description -facsimileTelephoneNumber: +1 213 803-3933 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 598-9526 -title: Supreme Payroll President -userPassword: Password1 -uid: KapusciS -givenName: Sylvie -mail: KapusciS@ecc23b0febab430da88b21a7330ed12e.bitwarden.com -carLicense: MUJT6K -departmentNumber: 2559 -employeeType: Normal -homePhone: +1 213 631-8195 -initials: S. K. -mobile: +1 213 759-5165 -pager: +1 213 368-2771 -roomNumber: 9162 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mietek Nadon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mietek Nadon -sn: Nadon -description: This is Mietek Nadon's description -facsimileTelephoneNumber: +1 213 691-6231 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 263-9334 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: NadonM -givenName: Mietek -mail: NadonM@bbf5361396904a4082fadb57709a5d90.bitwarden.com -carLicense: CC26G6 -departmentNumber: 6797 -employeeType: Employee -homePhone: +1 213 833-3274 -initials: M. N. -mobile: +1 213 228-8864 -pager: +1 213 181-4884 -roomNumber: 8938 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sophie Malhotra,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sophie Malhotra -sn: Malhotra -description: This is Sophie Malhotra's description -facsimileTelephoneNumber: +1 804 401-5742 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 842-9768 -title: Supreme Peons Manager -userPassword: Password1 -uid: MalhotrS -givenName: Sophie -mail: MalhotrS@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com -carLicense: WSWK49 -departmentNumber: 8711 -employeeType: Employee -homePhone: +1 804 274-3056 -initials: S. M. -mobile: +1 804 944-7996 -pager: +1 804 665-9307 -roomNumber: 9996 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sichao Minichillo -sn: Minichillo -description: This is Sichao Minichillo's description -facsimileTelephoneNumber: +1 510 888-9774 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 394-2461 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: MinichiS -givenName: Sichao -mail: MinichiS@bfd0acda55624910b3eb6aeadd91155d.bitwarden.com -carLicense: YCDVYG -departmentNumber: 1106 -employeeType: Employee -homePhone: +1 510 711-1957 -initials: S. M. -mobile: +1 510 834-1045 -pager: +1 510 887-1841 -roomNumber: 9246 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Prue Zollman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prue Zollman -sn: Zollman -description: This is Prue Zollman's description -facsimileTelephoneNumber: +1 415 132-9605 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 925-1465 -title: Junior Peons Mascot -userPassword: Password1 -uid: ZollmanP -givenName: Prue -mail: ZollmanP@073d9b40128d435294a7cce9001bca7b.bitwarden.com -carLicense: MQ6XYT -departmentNumber: 2380 -employeeType: Normal -homePhone: +1 415 695-2302 -initials: P. Z. -mobile: +1 415 378-9623 -pager: +1 415 216-6537 -roomNumber: 8784 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnnHoon Rezzik -sn: Rezzik -description: This is AnnHoon Rezzik's description -facsimileTelephoneNumber: +1 818 923-7614 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 563-5753 -title: Associate Product Development Pinhead -userPassword: Password1 -uid: RezzikA -givenName: AnnHoon -mail: RezzikA@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com -carLicense: QDDGVT -departmentNumber: 5284 -employeeType: Employee -homePhone: +1 818 914-3367 -initials: A. R. -mobile: +1 818 533-4576 -pager: +1 818 383-3136 -roomNumber: 8391 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shaughan Lockard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaughan Lockard -sn: Lockard -description: This is Shaughan Lockard's description -facsimileTelephoneNumber: +1 818 807-4582 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 585-9748 -title: Supreme Management Fellow -userPassword: Password1 -uid: LockardS -givenName: Shaughan -mail: LockardS@954efb273c2f4e7c983d0f352f5fd30d.bitwarden.com -carLicense: 87IJAR -departmentNumber: 9854 -employeeType: Contract -homePhone: +1 818 405-6214 -initials: S. L. -mobile: +1 818 567-2655 -pager: +1 818 444-9695 -roomNumber: 9039 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lonni Wurtz -sn: Wurtz -description: This is Lonni Wurtz's description -facsimileTelephoneNumber: +1 408 273-8982 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 945-2059 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: WurtzL -givenName: Lonni -mail: WurtzL@1624a6875b7a4c1a90bfa41548cd44d0.bitwarden.com -carLicense: 5K3HN2 -departmentNumber: 6480 -employeeType: Employee -homePhone: +1 408 711-7010 -initials: L. W. -mobile: +1 408 930-6102 -pager: +1 408 508-4596 -roomNumber: 9223 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marga Hao,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marga Hao -sn: Hao -description: This is Marga Hao's description -facsimileTelephoneNumber: +1 415 121-4715 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 415 395-9906 -title: Supreme Peons Writer -userPassword: Password1 -uid: HaoM -givenName: Marga -mail: HaoM@cf1f0125e0794b80b348dddaa747ca09.bitwarden.com -carLicense: 823KKK -departmentNumber: 6951 -employeeType: Normal -homePhone: +1 415 485-5142 -initials: M. H. -mobile: +1 415 663-2442 -pager: +1 415 948-9642 -roomNumber: 9692 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdy Hockaday -sn: Hockaday -description: This is Magdy Hockaday's description -facsimileTelephoneNumber: +1 206 710-5198 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 387-2479 -title: Chief Product Testing Figurehead -userPassword: Password1 -uid: HockadaM -givenName: Magdy -mail: HockadaM@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com -carLicense: X11J6I -departmentNumber: 6955 -employeeType: Employee -homePhone: +1 206 354-2175 -initials: M. H. -mobile: +1 206 299-3244 -pager: +1 206 101-3432 -roomNumber: 9763 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elset Yach,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elset Yach -sn: Yach -description: This is Elset Yach's description -facsimileTelephoneNumber: +1 206 778-5947 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 313-6681 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: YachE -givenName: Elset -mail: YachE@2b23dbb27baf478681a802c2510dd0df.bitwarden.com -carLicense: KQ5R94 -departmentNumber: 5822 -employeeType: Contract -homePhone: +1 206 600-2218 -initials: E. Y. -mobile: +1 206 333-2811 -pager: +1 206 123-6386 -roomNumber: 9176 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jaynie Moniter,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaynie Moniter -sn: Moniter -description: This is Jaynie Moniter's description -facsimileTelephoneNumber: +1 804 338-6189 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 804 308-4840 -title: Junior Administrative Punk -userPassword: Password1 -uid: MoniterJ -givenName: Jaynie -mail: MoniterJ@b1d81d4ed0934642a942a3e784da5fea.bitwarden.com -carLicense: JE3V76 -departmentNumber: 4273 -employeeType: Normal -homePhone: +1 804 874-3051 -initials: J. M. -mobile: +1 804 257-9529 -pager: +1 804 234-3705 -roomNumber: 9749 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Penelopa Kenik,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Penelopa Kenik -sn: Kenik -description: This is Penelopa Kenik's description -facsimileTelephoneNumber: +1 213 174-3613 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 769-3740 -title: Associate Administrative Writer -userPassword: Password1 -uid: KenikP -givenName: Penelopa -mail: KenikP@7ec2199d42d34d768c9936149cbba49a.bitwarden.com -carLicense: LRP3UI -departmentNumber: 3695 -employeeType: Normal -homePhone: +1 213 906-7000 -initials: P. K. -mobile: +1 213 753-8173 -pager: +1 213 860-4108 -roomNumber: 9019 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nam Mersch,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nam Mersch -sn: Mersch -description: This is Nam Mersch's description -facsimileTelephoneNumber: +1 415 563-5864 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 538-4347 -title: Junior Administrative Mascot -userPassword: Password1 -uid: MerschN -givenName: Nam -mail: MerschN@f4c3a3037e484ed2a44d9517cbd72877.bitwarden.com -carLicense: C3NO9R -departmentNumber: 1201 -employeeType: Employee -homePhone: +1 415 723-6914 -initials: N. M. -mobile: +1 415 853-8637 -pager: +1 415 280-6502 -roomNumber: 8686 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Valida US,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valida US -sn: US -description: This is Valida US's description -facsimileTelephoneNumber: +1 415 281-1125 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 401-3920 -title: Associate Management Admin -userPassword: Password1 -uid: USV -givenName: Valida -mail: USV@7ed3387e63ee42a8ac53af5791774853.bitwarden.com -carLicense: IAI3UB -departmentNumber: 1637 -employeeType: Normal -homePhone: +1 415 909-8906 -initials: V. U. -mobile: +1 415 390-5406 -pager: +1 415 632-2549 -roomNumber: 9842 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jillian Pde,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jillian Pde -sn: Pde -description: This is Jillian Pde's description -facsimileTelephoneNumber: +1 818 148-7893 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 818 502-6345 -title: Chief Human Resources Technician -userPassword: Password1 -uid: PdeJ -givenName: Jillian -mail: PdeJ@006960dc799e4266a280a383e581ea9c.bitwarden.com -carLicense: J84FH7 -departmentNumber: 4925 -employeeType: Normal -homePhone: +1 818 735-8379 -initials: J. P. -mobile: +1 818 331-2791 -pager: +1 818 143-1195 -roomNumber: 8082 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaz Toastmasters -sn: Toastmasters -description: This is Kaz Toastmasters's description -facsimileTelephoneNumber: +1 408 814-5173 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 294-5266 -title: Associate Administrative Warrior -userPassword: Password1 -uid: ToastmaK -givenName: Kaz -mail: ToastmaK@2079b61842c64cb8a53095d0062cfb7c.bitwarden.com -carLicense: 1IWBTP -departmentNumber: 3699 -employeeType: Contract -homePhone: +1 408 968-7871 -initials: K. T. -mobile: +1 408 743-1221 -pager: +1 408 369-7439 -roomNumber: 9839 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kimberlee Gaube -sn: Gaube -description: This is Kimberlee Gaube's description -facsimileTelephoneNumber: +1 213 810-5183 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 705-1564 -title: Master Human Resources Director -userPassword: Password1 -uid: GaubeK -givenName: Kimberlee -mail: GaubeK@ce4d0d0fb96d4c2eaa1d4595e57562a4.bitwarden.com -carLicense: UHHBD8 -departmentNumber: 9087 -employeeType: Normal -homePhone: +1 213 716-7236 -initials: K. G. -mobile: +1 213 463-7338 -pager: +1 213 869-4979 -roomNumber: 8596 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Everette Klaassen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Everette Klaassen -sn: Klaassen -description: This is Everette Klaassen's description -facsimileTelephoneNumber: +1 415 265-7216 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 448-6107 -title: Chief Administrative Assistant -userPassword: Password1 -uid: KlaasseE -givenName: Everette -mail: KlaasseE@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com -carLicense: Y0FEML -departmentNumber: 9883 -employeeType: Normal -homePhone: +1 415 544-3887 -initials: E. K. -mobile: +1 415 558-2665 -pager: +1 415 564-9227 -roomNumber: 8307 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernette PrestonThomas -sn: PrestonThomas -description: This is Bernette PrestonThomas's description -facsimileTelephoneNumber: +1 213 369-5366 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 342-8588 -title: Supreme Peons Pinhead -userPassword: Password1 -uid: PrestonB -givenName: Bernette -mail: PrestonB@63acb1cef0d64271b1836eb0bdd826d3.bitwarden.com -carLicense: X3T6OU -departmentNumber: 5409 -employeeType: Normal -homePhone: +1 213 670-1421 -initials: B. P. -mobile: +1 213 936-9578 -pager: +1 213 952-5957 -roomNumber: 8669 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Selime Helstab,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selime Helstab -sn: Helstab -description: This is Selime Helstab's description -facsimileTelephoneNumber: +1 818 435-8589 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 535-8431 -title: Junior Human Resources Fellow -userPassword: Password1 -uid: HelstabS -givenName: Selime -mail: HelstabS@625bebb6da704a99ac3b3be79cc8544f.bitwarden.com -carLicense: 6PQKNG -departmentNumber: 5199 -employeeType: Employee -homePhone: +1 818 190-3358 -initials: S. H. -mobile: +1 818 971-7977 -pager: +1 818 800-1052 -roomNumber: 8663 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Norean Wilford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norean Wilford -sn: Wilford -description: This is Norean Wilford's description -facsimileTelephoneNumber: +1 415 712-4846 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 123-6384 -title: Associate Human Resources Admin -userPassword: Password1 -uid: WilfordN -givenName: Norean -mail: WilfordN@a14bb54592f8410c82402fefd034b4c8.bitwarden.com -carLicense: QC0RAX -departmentNumber: 3324 -employeeType: Normal -homePhone: +1 415 932-2567 -initials: N. W. -mobile: +1 415 562-6080 -pager: +1 415 722-2085 -roomNumber: 8239 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bebe Spurway,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bebe Spurway -sn: Spurway -description: This is Bebe Spurway's description -facsimileTelephoneNumber: +1 213 176-9166 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 503-4126 -title: Master Peons Sales Rep -userPassword: Password1 -uid: SpurwayB -givenName: Bebe -mail: SpurwayB@9600bec077154f61b674051df84e620d.bitwarden.com -carLicense: WUNG9I -departmentNumber: 1403 -employeeType: Contract -homePhone: +1 213 539-2342 -initials: B. S. -mobile: +1 213 815-9772 -pager: +1 213 990-8697 -roomNumber: 9858 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alka Kowal,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alka Kowal -sn: Kowal -description: This is Alka Kowal's description -facsimileTelephoneNumber: +1 408 215-5688 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 774-8150 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: KowalA -givenName: Alka -mail: KowalA@b6629f19402c4b2bb567e45ac5181f90.bitwarden.com -carLicense: 4FE4WC -departmentNumber: 1324 -employeeType: Employee -homePhone: +1 408 591-7767 -initials: A. K. -mobile: +1 408 640-7555 -pager: +1 408 623-6942 -roomNumber: 9250 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Michele Biggers,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michele Biggers -sn: Biggers -description: This is Michele Biggers's description -facsimileTelephoneNumber: +1 206 709-7166 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 271-8896 -title: Master Product Development Developer -userPassword: Password1 -uid: BiggersM -givenName: Michele -mail: BiggersM@b6eb7288ffdc4998a186a638d57adec2.bitwarden.com -carLicense: PU9XMB -departmentNumber: 8706 -employeeType: Contract -homePhone: +1 206 382-8030 -initials: M. B. -mobile: +1 206 290-4157 -pager: +1 206 713-1171 -roomNumber: 9402 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Connie Stotz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Connie Stotz -sn: Stotz -description: This is Connie Stotz's description -facsimileTelephoneNumber: +1 213 509-9298 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 213 106-7699 -title: Associate Payroll Manager -userPassword: Password1 -uid: StotzC -givenName: Connie -mail: StotzC@2b9187d4c2e04433a4bddadbfe09ed1f.bitwarden.com -carLicense: A0SJ1E -departmentNumber: 9242 -employeeType: Employee -homePhone: +1 213 644-9292 -initials: C. S. -mobile: +1 213 906-3375 -pager: +1 213 864-3139 -roomNumber: 8219 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Layne Efstration,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Layne Efstration -sn: Efstration -description: This is Layne Efstration's description -facsimileTelephoneNumber: +1 818 226-7032 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 239-6759 -title: Master Peons Madonna -userPassword: Password1 -uid: EfstratL -givenName: Layne -mail: EfstratL@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com -carLicense: OAIMNI -departmentNumber: 3490 -employeeType: Employee -homePhone: +1 818 232-3755 -initials: L. E. -mobile: +1 818 862-3771 -pager: +1 818 864-1064 -roomNumber: 8516 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurora Petrescu -sn: Petrescu -description: This is Aurora Petrescu's description -facsimileTelephoneNumber: +1 213 429-6800 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 707-3226 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: PetrescA -givenName: Aurora -mail: PetrescA@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com -carLicense: 8N1ACE -departmentNumber: 9515 -employeeType: Contract -homePhone: +1 213 407-7087 -initials: A. P. -mobile: +1 213 724-3344 -pager: +1 213 843-5928 -roomNumber: 9746 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ankie Commazzi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ankie Commazzi -sn: Commazzi -description: This is Ankie Commazzi's description -facsimileTelephoneNumber: +1 206 896-5271 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 670-4412 -title: Junior Product Development Sales Rep -userPassword: Password1 -uid: CommazzA -givenName: Ankie -mail: CommazzA@c00094c05d9e45abbdfd0c40940b13a0.bitwarden.com -carLicense: H25DOF -departmentNumber: 1039 -employeeType: Normal -homePhone: +1 206 624-9734 -initials: A. C. -mobile: +1 206 718-5730 -pager: +1 206 542-2714 -roomNumber: 8136 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cubicle Qu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cubicle Qu -sn: Qu -description: This is Cubicle Qu's description -facsimileTelephoneNumber: +1 206 395-6432 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 129-7314 -title: Chief Product Development Admin -userPassword: Password1 -uid: QuC -givenName: Cubicle -mail: QuC@32c1a38264404bd194fb0ceed714adf7.bitwarden.com -carLicense: DFO86N -departmentNumber: 1136 -employeeType: Employee -homePhone: +1 206 586-8987 -initials: C. Q. -mobile: +1 206 572-1823 -pager: +1 206 341-5439 -roomNumber: 8974 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Wassim Charette,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wassim Charette -sn: Charette -description: This is Wassim Charette's description -facsimileTelephoneNumber: +1 818 343-3200 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 417-7317 -title: Junior Product Development Consultant -userPassword: Password1 -uid: CharettW -givenName: Wassim -mail: CharettW@39671d86e7aa455f86029b2564b66afc.bitwarden.com -carLicense: GMIOVB -departmentNumber: 7025 -employeeType: Contract -homePhone: +1 818 861-4452 -initials: W. C. -mobile: +1 818 971-2852 -pager: +1 818 202-6877 -roomNumber: 9599 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kas Audet,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kas Audet -sn: Audet -description: This is Kas Audet's description -facsimileTelephoneNumber: +1 415 411-3829 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 415 263-7510 -title: Master Product Development Grunt -userPassword: Password1 -uid: AudetK -givenName: Kas -mail: AudetK@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com -carLicense: U14FWR -departmentNumber: 6602 -employeeType: Normal -homePhone: +1 415 552-2035 -initials: K. A. -mobile: +1 415 288-9903 -pager: +1 415 457-7173 -roomNumber: 9441 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Emalee Lockett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emalee Lockett -sn: Lockett -description: This is Emalee Lockett's description -facsimileTelephoneNumber: +1 206 214-4676 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 293-5266 -title: Chief Product Testing Director -userPassword: Password1 -uid: LockettE -givenName: Emalee -mail: LockettE@37913e5a58404daf99d21d566bf33e43.bitwarden.com -carLicense: UG0WWF -departmentNumber: 7765 -employeeType: Employee -homePhone: +1 206 787-8267 -initials: E. L. -mobile: +1 206 425-6719 -pager: +1 206 374-2256 -roomNumber: 8792 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Janell Kurniawan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janell Kurniawan -sn: Kurniawan -description: This is Janell Kurniawan's description -facsimileTelephoneNumber: +1 213 658-3569 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 529-2719 -title: Junior Peons Sales Rep -userPassword: Password1 -uid: KurniawJ -givenName: Janell -mail: KurniawJ@8429461810c443b49add09521f9c6b46.bitwarden.com -carLicense: DTH1BA -departmentNumber: 7583 -employeeType: Normal -homePhone: +1 213 112-4482 -initials: J. K. -mobile: +1 213 524-5786 -pager: +1 213 140-6502 -roomNumber: 9613 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Georganne Munikoti,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georganne Munikoti -sn: Munikoti -description: This is Georganne Munikoti's description -facsimileTelephoneNumber: +1 408 466-9308 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 866-6173 -title: Junior Payroll Punk -userPassword: Password1 -uid: MunikotG -givenName: Georganne -mail: MunikotG@fb3704e4d78c445393093a687cfa48ee.bitwarden.com -carLicense: XGTQC2 -departmentNumber: 4846 -employeeType: Contract -homePhone: +1 408 466-4831 -initials: G. M. -mobile: +1 408 691-9457 -pager: +1 408 866-3714 -roomNumber: 9861 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Neala Casalou,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neala Casalou -sn: Casalou -description: This is Neala Casalou's description -facsimileTelephoneNumber: +1 510 940-7197 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 254-7147 -title: Chief Administrative Technician -userPassword: Password1 -uid: CasalouN -givenName: Neala -mail: CasalouN@8ec44466df45450ab3876834678ca129.bitwarden.com -carLicense: MOXDEB -departmentNumber: 4483 -employeeType: Normal -homePhone: +1 510 712-7883 -initials: N. C. -mobile: +1 510 969-7948 -pager: +1 510 529-9526 -roomNumber: 9884 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hai Grubbs,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hai Grubbs -sn: Grubbs -description: This is Hai Grubbs's description -facsimileTelephoneNumber: +1 804 810-4299 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 113-4428 -title: Chief Human Resources Director -userPassword: Password1 -uid: GrubbsH -givenName: Hai -mail: GrubbsH@cb980ae301084964a9693d89f9fb2ea1.bitwarden.com -carLicense: GL6VHP -departmentNumber: 9204 -employeeType: Employee -homePhone: +1 804 763-4293 -initials: H. G. -mobile: +1 804 426-4878 -pager: +1 804 387-5742 -roomNumber: 9885 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Octavio Kamboh -sn: Kamboh -description: This is Octavio Kamboh's description -facsimileTelephoneNumber: +1 415 676-9092 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 415 509-2004 -title: Junior Product Testing Director -userPassword: Password1 -uid: KambohO -givenName: Octavio -mail: KambohO@fbe76a3d276b4f1cb5ff4b0955ac6aa4.bitwarden.com -carLicense: NXQHMP -departmentNumber: 8817 -employeeType: Contract -homePhone: +1 415 820-5408 -initials: O. K. -mobile: +1 415 259-8347 -pager: +1 415 711-9485 -roomNumber: 9064 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alyssa Strackholder,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alyssa Strackholder -sn: Strackholder -description: This is Alyssa Strackholder's description -facsimileTelephoneNumber: +1 510 298-7260 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 510 660-6784 -title: Supreme Peons Technician -userPassword: Password1 -uid: StrackhA -givenName: Alyssa -mail: StrackhA@e9e9b377fde94158b464d15a038dd043.bitwarden.com -carLicense: ELNOU2 -departmentNumber: 6160 -employeeType: Contract -homePhone: +1 510 660-3714 -initials: A. S. -mobile: +1 510 396-9457 -pager: +1 510 283-5906 -roomNumber: 9907 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jossine Hoddinott,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jossine Hoddinott -sn: Hoddinott -description: This is Jossine Hoddinott's description -facsimileTelephoneNumber: +1 415 950-1886 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 961-1963 -title: Chief Management Punk -userPassword: Password1 -uid: HoddinoJ -givenName: Jossine -mail: HoddinoJ@dde41eef116c45e7ad8c210d83eced54.bitwarden.com -carLicense: IFQOCY -departmentNumber: 2992 -employeeType: Employee -homePhone: +1 415 407-2581 -initials: J. H. -mobile: +1 415 187-5373 -pager: +1 415 107-9789 -roomNumber: 8794 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Phyllis Majd,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phyllis Majd -sn: Majd -description: This is Phyllis Majd's description -facsimileTelephoneNumber: +1 408 354-7525 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 408 720-9154 -title: Master Management Artist -userPassword: Password1 -uid: MajdP -givenName: Phyllis -mail: MajdP@0944047161f34c1d8982efcddb384be7.bitwarden.com -carLicense: 8MC9WP -departmentNumber: 3216 -employeeType: Contract -homePhone: +1 408 637-2407 -initials: P. M. -mobile: +1 408 741-7482 -pager: +1 408 354-9351 -roomNumber: 8923 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquette Cribbs -sn: Cribbs -description: This is Jacquette Cribbs's description -facsimileTelephoneNumber: +1 510 210-7789 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 581-1754 -title: Junior Payroll Stooge -userPassword: Password1 -uid: CribbsJ -givenName: Jacquette -mail: CribbsJ@93c66893cda74239a9a56d1199a44457.bitwarden.com -carLicense: STR008 -departmentNumber: 7143 -employeeType: Employee -homePhone: +1 510 652-7702 -initials: J. C. -mobile: +1 510 623-3137 -pager: +1 510 413-2720 -roomNumber: 8193 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nevil Rosch,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nevil Rosch -sn: Rosch -description: This is Nevil Rosch's description -facsimileTelephoneNumber: +1 510 656-8516 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 424-7330 -title: Junior Human Resources Stooge -userPassword: Password1 -uid: RoschN -givenName: Nevil -mail: RoschN@624c1f5dcdc642f18cde445a6f13923f.bitwarden.com -carLicense: Q9ILTK -departmentNumber: 8018 -employeeType: Employee -homePhone: +1 510 638-3969 -initials: N. R. -mobile: +1 510 936-6800 -pager: +1 510 185-4749 -roomNumber: 8030 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lyndon Rao,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndon Rao -sn: Rao -description: This is Lyndon Rao's description -facsimileTelephoneNumber: +1 408 542-9810 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 838-5575 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: RaoL -givenName: Lyndon -mail: RaoL@e231c4794bfb41dabd87a985afed1418.bitwarden.com -carLicense: W7G608 -departmentNumber: 8207 -employeeType: Contract -homePhone: +1 408 371-5199 -initials: L. R. -mobile: +1 408 120-2128 -pager: +1 408 219-1609 -roomNumber: 8557 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karina Kempffer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karina Kempffer -sn: Kempffer -description: This is Karina Kempffer's description -facsimileTelephoneNumber: +1 206 832-2766 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 125-5374 -title: Chief Payroll Admin -userPassword: Password1 -uid: KempffeK -givenName: Karina -mail: KempffeK@efcd32daf30f47bab7fc31cf8968544d.bitwarden.com -carLicense: IJFMRR -departmentNumber: 3449 -employeeType: Contract -homePhone: +1 206 106-2075 -initials: K. K. -mobile: +1 206 529-4146 -pager: +1 206 874-3726 -roomNumber: 9950 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Khalil Popovich,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khalil Popovich -sn: Popovich -description: This is Khalil Popovich's description -facsimileTelephoneNumber: +1 206 314-5751 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 415-5046 -title: Master Administrative Admin -userPassword: Password1 -uid: PopovicK -givenName: Khalil -mail: PopovicK@800d6472c1b2428eb81e895d2bd61870.bitwarden.com -carLicense: OGRHM9 -departmentNumber: 7764 -employeeType: Normal -homePhone: +1 206 872-1775 -initials: K. P. -mobile: +1 206 810-2178 -pager: +1 206 543-9180 -roomNumber: 8074 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Thomasa Dann,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomasa Dann -sn: Dann -description: This is Thomasa Dann's description -facsimileTelephoneNumber: +1 818 728-3682 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 818 902-1225 -title: Master Administrative Mascot -userPassword: Password1 -uid: DannT -givenName: Thomasa -mail: DannT@1ec01709e9aa47c08c93dbd75ae81ee4.bitwarden.com -carLicense: PTYGAL -departmentNumber: 9003 -employeeType: Normal -homePhone: +1 818 771-9062 -initials: T. D. -mobile: +1 818 475-4053 -pager: +1 818 778-1076 -roomNumber: 8391 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jill Hollenbeck -sn: Hollenbeck -description: This is Jill Hollenbeck's description -facsimileTelephoneNumber: +1 415 661-4434 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 376-9699 -title: Supreme Product Development Director -userPassword: Password1 -uid: HollenbJ -givenName: Jill -mail: HollenbJ@64c82d0938384c03a8fdb8436b666c54.bitwarden.com -carLicense: TK7SFE -departmentNumber: 5817 -employeeType: Employee -homePhone: +1 415 755-4606 -initials: J. H. -mobile: +1 415 211-4950 -pager: +1 415 345-7700 -roomNumber: 9647 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rocke Tedrick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rocke Tedrick -sn: Tedrick -description: This is Rocke Tedrick's description -facsimileTelephoneNumber: +1 818 930-3550 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 606-2937 -title: Chief Management Writer -userPassword: Password1 -uid: TedrickR -givenName: Rocke -mail: TedrickR@19e6520548714755abff0e45bce4810c.bitwarden.com -carLicense: 4C3S34 -departmentNumber: 3099 -employeeType: Contract -homePhone: +1 818 501-6996 -initials: R. T. -mobile: +1 818 450-2237 -pager: +1 818 435-5018 -roomNumber: 9183 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Subra Howie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subra Howie -sn: Howie -description: This is Subra Howie's description -facsimileTelephoneNumber: +1 206 670-3489 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 780-1104 -title: Junior Human Resources Janitor -userPassword: Password1 -uid: HowieS -givenName: Subra -mail: HowieS@1d41a9185db448b89563a6b96b582da2.bitwarden.com -carLicense: NDH1IG -departmentNumber: 3548 -employeeType: Contract -homePhone: +1 206 338-4539 -initials: S. H. -mobile: +1 206 594-2687 -pager: +1 206 338-6160 -roomNumber: 9097 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dasi Rabon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dasi Rabon -sn: Rabon -description: This is Dasi Rabon's description -facsimileTelephoneNumber: +1 510 427-4892 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 696-5400 -title: Junior Administrative Dictator -userPassword: Password1 -uid: RabonD -givenName: Dasi -mail: RabonD@27fbf31dae1b43168fe83a06d4b95ff2.bitwarden.com -carLicense: NTQTND -departmentNumber: 4720 -employeeType: Employee -homePhone: +1 510 800-3352 -initials: D. R. -mobile: +1 510 460-5685 -pager: +1 510 279-3184 -roomNumber: 8923 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ivor Shennan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivor Shennan -sn: Shennan -description: This is Ivor Shennan's description -facsimileTelephoneNumber: +1 213 966-6324 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 768-9063 -title: Associate Administrative Fellow -userPassword: Password1 -uid: ShennanI -givenName: Ivor -mail: ShennanI@45381f65705a4542858d101bca1876a8.bitwarden.com -carLicense: QRFHAJ -departmentNumber: 2059 -employeeType: Employee -homePhone: +1 213 929-5246 -initials: I. S. -mobile: +1 213 201-6510 -pager: +1 213 524-7486 -roomNumber: 9679 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tosca Linfield,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tosca Linfield -sn: Linfield -description: This is Tosca Linfield's description -facsimileTelephoneNumber: +1 206 808-4897 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 132-2221 -title: Junior Peons Admin -userPassword: Password1 -uid: LinfielT -givenName: Tosca -mail: LinfielT@2c480a27811f43a0bbdfebcf0cd44264.bitwarden.com -carLicense: TYTQBS -departmentNumber: 8133 -employeeType: Contract -homePhone: +1 206 630-8665 -initials: T. L. -mobile: +1 206 687-2108 -pager: +1 206 232-9743 -roomNumber: 9311 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shandee Vosup,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shandee Vosup -sn: Vosup -description: This is Shandee Vosup's description -facsimileTelephoneNumber: +1 415 178-9308 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 555-2457 -title: Supreme Product Testing Sales Rep -userPassword: Password1 -uid: VosupS -givenName: Shandee -mail: VosupS@daecf76d8c3940f1a79ca6f29fd09de1.bitwarden.com -carLicense: B2610T -departmentNumber: 3876 -employeeType: Contract -homePhone: +1 415 825-4866 -initials: S. V. -mobile: +1 415 922-2347 -pager: +1 415 214-3055 -roomNumber: 9735 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Janith Gursin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janith Gursin -sn: Gursin -description: This is Janith Gursin's description -facsimileTelephoneNumber: +1 213 459-3665 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 530-3119 -title: Master Product Testing Grunt -userPassword: Password1 -uid: GursinJ -givenName: Janith -mail: GursinJ@a26129e30095439fb00cad0905c71920.bitwarden.com -carLicense: GVV47Y -departmentNumber: 7276 -employeeType: Normal -homePhone: +1 213 105-2964 -initials: J. G. -mobile: +1 213 557-9471 -pager: +1 213 670-6554 -roomNumber: 8264 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rora Kingrey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rora Kingrey -sn: Kingrey -description: This is Rora Kingrey's description -facsimileTelephoneNumber: +1 408 193-6508 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 379-1779 -title: Master Product Development Technician -userPassword: Password1 -uid: KingreyR -givenName: Rora -mail: KingreyR@1baee55063104657aab587314d3f4ff6.bitwarden.com -carLicense: 2O4A28 -departmentNumber: 5307 -employeeType: Contract -homePhone: +1 408 261-2120 -initials: R. K. -mobile: +1 408 300-1263 -pager: +1 408 964-3254 -roomNumber: 9007 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacenta Papageorges -sn: Papageorges -description: This is Jacenta Papageorges's description -facsimileTelephoneNumber: +1 415 526-7318 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 782-3856 -title: Associate Product Development Architect -userPassword: Password1 -uid: PapageoJ -givenName: Jacenta -mail: PapageoJ@d70cda87f2da4062bf59637caf72c7ba.bitwarden.com -carLicense: P71BY0 -departmentNumber: 3307 -employeeType: Normal -homePhone: +1 415 186-1915 -initials: J. P. -mobile: +1 415 148-3700 -pager: +1 415 768-7081 -roomNumber: 9353 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rhett Vavroch,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhett Vavroch -sn: Vavroch -description: This is Rhett Vavroch's description -facsimileTelephoneNumber: +1 408 802-4643 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 408 917-2294 -title: Supreme Peons Grunt -userPassword: Password1 -uid: VavrochR -givenName: Rhett -mail: VavrochR@8b7fc53ad9d44eee917cc3e25b895199.bitwarden.com -carLicense: RR5FDY -departmentNumber: 2135 -employeeType: Contract -homePhone: +1 408 951-4563 -initials: R. V. -mobile: +1 408 509-8648 -pager: +1 408 227-8571 -roomNumber: 9785 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Allene Izzotti,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allene Izzotti -sn: Izzotti -description: This is Allene Izzotti's description -facsimileTelephoneNumber: +1 510 393-6891 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 422-9754 -title: Junior Peons Artist -userPassword: Password1 -uid: IzzottiA -givenName: Allene -mail: IzzottiA@72e93c7c4c5a421bbcbde1495b495745.bitwarden.com -carLicense: 8PX8OL -departmentNumber: 9484 -employeeType: Contract -homePhone: +1 510 517-2651 -initials: A. I. -mobile: +1 510 848-7206 -pager: +1 510 359-3404 -roomNumber: 8644 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ag Charlino,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ag Charlino -sn: Charlino -description: This is Ag Charlino's description -facsimileTelephoneNumber: +1 804 382-7215 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 712-6284 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: CharlinA -givenName: Ag -mail: CharlinA@b7be2bf29b064b349a27848f01a085d8.bitwarden.com -carLicense: EXS5EU -departmentNumber: 9189 -employeeType: Employee -homePhone: +1 804 489-2019 -initials: A. C. -mobile: +1 804 496-8780 -pager: +1 804 741-7219 -roomNumber: 8351 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Archie Kenyon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Archie Kenyon -sn: Kenyon -description: This is Archie Kenyon's description -facsimileTelephoneNumber: +1 510 259-7309 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 854-9145 -title: Master Administrative Architect -userPassword: Password1 -uid: KenyonA -givenName: Archie -mail: KenyonA@31b13d20c58546e5aa89cbb19323b703.bitwarden.com -carLicense: ECP7SG -departmentNumber: 9287 -employeeType: Contract -homePhone: +1 510 304-4947 -initials: A. K. -mobile: +1 510 888-9214 -pager: +1 510 615-2186 -roomNumber: 8603 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Malissia Albright,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malissia Albright -sn: Albright -description: This is Malissia Albright's description -facsimileTelephoneNumber: +1 408 350-1675 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 445-5923 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: AlbrighM -givenName: Malissia -mail: AlbrighM@09779ad61d2a4fdab823e1d8c1f5f2c0.bitwarden.com -carLicense: PMQ0LN -departmentNumber: 5443 -employeeType: Employee -homePhone: +1 408 447-1406 -initials: M. A. -mobile: +1 408 298-4537 -pager: +1 408 932-8473 -roomNumber: 8235 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mccauley Guillet,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mccauley Guillet -sn: Guillet -description: This is Mccauley Guillet's description -facsimileTelephoneNumber: +1 818 490-9719 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 410-8104 -title: Junior Peons Figurehead -userPassword: Password1 -uid: GuilletM -givenName: Mccauley -mail: GuilletM@58f86a0b49c64ddabc6d69323185b642.bitwarden.com -carLicense: T1UMD4 -departmentNumber: 6440 -employeeType: Normal -homePhone: +1 818 748-5085 -initials: M. G. -mobile: +1 818 730-7660 -pager: +1 818 811-4695 -roomNumber: 8994 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maudie Overcash,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maudie Overcash -sn: Overcash -description: This is Maudie Overcash's description -facsimileTelephoneNumber: +1 408 896-2705 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 576-1921 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: OvercasM -givenName: Maudie -mail: OvercasM@159a287c6435442fa0a5a9052a8c949d.bitwarden.com -carLicense: 7RUE7A -departmentNumber: 9874 -employeeType: Normal -homePhone: +1 408 128-5692 -initials: M. O. -mobile: +1 408 363-5005 -pager: +1 408 824-1225 -roomNumber: 9274 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pradyumn Darden -sn: Darden -description: This is Pradyumn Darden's description -facsimileTelephoneNumber: +1 206 437-2704 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 460-9326 -title: Chief Human Resources Writer -userPassword: Password1 -uid: DardenP -givenName: Pradyumn -mail: DardenP@7fd31459ef69403fab8afffbf1b1fedf.bitwarden.com -carLicense: 75TL7J -departmentNumber: 1414 -employeeType: Contract -homePhone: +1 206 694-1630 -initials: P. D. -mobile: +1 206 840-6104 -pager: +1 206 362-9825 -roomNumber: 9067 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yolanthe Svo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yolanthe Svo -sn: Svo -description: This is Yolanthe Svo's description -facsimileTelephoneNumber: +1 206 547-2886 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 140-4485 -title: Junior Peons Manager -userPassword: Password1 -uid: SvoY -givenName: Yolanthe -mail: SvoY@d4a050fbe8424ef0ad6c18f4f810e367.bitwarden.com -carLicense: M879T6 -departmentNumber: 1317 -employeeType: Contract -homePhone: +1 206 315-7836 -initials: Y. S. -mobile: +1 206 420-2293 -pager: +1 206 798-7783 -roomNumber: 8294 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ashley Koskinen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashley Koskinen -sn: Koskinen -description: This is Ashley Koskinen's description -facsimileTelephoneNumber: +1 206 134-3198 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 237-2089 -title: Associate Administrative Stooge -userPassword: Password1 -uid: KoskineA -givenName: Ashley -mail: KoskineA@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com -carLicense: V8BJAK -departmentNumber: 3762 -employeeType: Contract -homePhone: +1 206 306-3344 -initials: A. K. -mobile: +1 206 537-3361 -pager: +1 206 257-8327 -roomNumber: 8849 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liesbeth Dugal -sn: Dugal -description: This is Liesbeth Dugal's description -facsimileTelephoneNumber: +1 804 736-1454 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 804 238-4414 -title: Junior Product Development Writer -userPassword: Password1 -uid: DugalL -givenName: Liesbeth -mail: DugalL@0ce86c5e561e43da985b731babc7ee7a.bitwarden.com -carLicense: G5XL2C -departmentNumber: 7713 -employeeType: Normal -homePhone: +1 804 439-1276 -initials: L. D. -mobile: +1 804 766-7639 -pager: +1 804 942-9078 -roomNumber: 8648 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Babb Mayne,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Babb Mayne -sn: Mayne -description: This is Babb Mayne's description -facsimileTelephoneNumber: +1 408 885-8287 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 866-7395 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: MayneB -givenName: Babb -mail: MayneB@c27a00f3c7f148d486de7c0cf03bd914.bitwarden.com -carLicense: DEF0N7 -departmentNumber: 2795 -employeeType: Employee -homePhone: +1 408 230-8505 -initials: B. M. -mobile: +1 408 830-6844 -pager: +1 408 575-9643 -roomNumber: 9839 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dehlia Madgett -sn: Madgett -description: This is Dehlia Madgett's description -facsimileTelephoneNumber: +1 408 441-5134 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 408 610-1848 -title: Chief Janitorial Figurehead -userPassword: Password1 -uid: MadgettD -givenName: Dehlia -mail: MadgettD@f318f75c01ee43e0921a0e961414763d.bitwarden.com -carLicense: PRCRG0 -departmentNumber: 8749 -employeeType: Employee -homePhone: +1 408 766-7067 -initials: D. M. -mobile: +1 408 781-6031 -pager: +1 408 932-2398 -roomNumber: 9718 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Godfrey Wiltz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Godfrey Wiltz -sn: Wiltz -description: This is Godfrey Wiltz's description -facsimileTelephoneNumber: +1 408 247-4856 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 826-9733 -title: Junior Peons Writer -userPassword: Password1 -uid: WiltzG -givenName: Godfrey -mail: WiltzG@9b2c23de49384f84ae5a2204e6781b81.bitwarden.com -carLicense: 8AM06B -departmentNumber: 2414 -employeeType: Normal -homePhone: +1 408 391-1707 -initials: G. W. -mobile: +1 408 972-3654 -pager: +1 408 313-5542 -roomNumber: 8064 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arlana Crowell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlana Crowell -sn: Crowell -description: This is Arlana Crowell's description -facsimileTelephoneNumber: +1 206 603-3561 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 913-4853 -title: Chief Human Resources Architect -userPassword: Password1 -uid: CrowellA -givenName: Arlana -mail: CrowellA@2ae864edc92447c18c93c9a4cd896b97.bitwarden.com -carLicense: VBFO13 -departmentNumber: 8494 -employeeType: Normal -homePhone: +1 206 848-4955 -initials: A. C. -mobile: +1 206 360-8586 -pager: +1 206 140-5591 -roomNumber: 8331 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arina Kempffer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arina Kempffer -sn: Kempffer -description: This is Arina Kempffer's description -facsimileTelephoneNumber: +1 206 246-6161 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 270-7806 -title: Master Peons Visionary -userPassword: Password1 -uid: KempffeA -givenName: Arina -mail: KempffeA@b5f5dce787d942a9beb6dc9f7c09c07b.bitwarden.com -carLicense: 7F9UHR -departmentNumber: 9528 -employeeType: Normal -homePhone: +1 206 733-1567 -initials: A. K. -mobile: +1 206 873-8645 -pager: +1 206 385-4405 -roomNumber: 9713 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cuthbert Vandagriff -sn: Vandagriff -description: This is Cuthbert Vandagriff's description -facsimileTelephoneNumber: +1 510 923-3128 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 591-8196 -title: Master Janitorial Dictator -userPassword: Password1 -uid: VandagrC -givenName: Cuthbert -mail: VandagrC@f34d92cdab5f41e598142a994af089cf.bitwarden.com -carLicense: PJ9L0O -departmentNumber: 5893 -employeeType: Normal -homePhone: +1 510 566-9772 -initials: C. V. -mobile: +1 510 837-6674 -pager: +1 510 276-4575 -roomNumber: 8518 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gena Sookdeo -sn: Sookdeo -description: This is Gena Sookdeo's description -facsimileTelephoneNumber: +1 415 677-2634 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 365-5481 -title: Chief Janitorial Sales Rep -userPassword: Password1 -uid: SookdeoG -givenName: Gena -mail: SookdeoG@7192ef9a358648a898c636498c183ffc.bitwarden.com -carLicense: S3XYHV -departmentNumber: 9727 -employeeType: Employee -homePhone: +1 415 779-5438 -initials: G. S. -mobile: +1 415 214-2648 -pager: +1 415 235-1695 -roomNumber: 9666 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angelika Appenzeller -sn: Appenzeller -description: This is Angelika Appenzeller's description -facsimileTelephoneNumber: +1 804 627-7926 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 907-1468 -title: Master Janitorial Czar -userPassword: Password1 -uid: AppenzeA -givenName: Angelika -mail: AppenzeA@91d70d29739b45a5ab390be4cdfdd9f2.bitwarden.com -carLicense: 8UW8KC -departmentNumber: 7725 -employeeType: Employee -homePhone: +1 804 112-9433 -initials: A. A. -mobile: +1 804 128-2720 -pager: +1 804 104-7230 -roomNumber: 9883 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bnrecad Dickie -sn: Dickie -description: This is Bnrecad Dickie's description -facsimileTelephoneNumber: +1 206 457-4876 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 548-9378 -title: Supreme Product Development Czar -userPassword: Password1 -uid: DickieB -givenName: Bnrecad -mail: DickieB@a914f96796cb4376a46a7e46c8ebb6a9.bitwarden.com -carLicense: 78MIHK -departmentNumber: 7312 -employeeType: Contract -homePhone: +1 206 234-4967 -initials: B. D. -mobile: +1 206 274-7863 -pager: +1 206 723-6689 -roomNumber: 9635 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kip Grimshaw,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kip Grimshaw -sn: Grimshaw -description: This is Kip Grimshaw's description -facsimileTelephoneNumber: +1 804 606-1494 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 322-6585 -title: Chief Management President -userPassword: Password1 -uid: GrimshaK -givenName: Kip -mail: GrimshaK@ca43d93b2a2647ef8c67ee1857820bdb.bitwarden.com -carLicense: 3U1X53 -departmentNumber: 6566 -employeeType: Contract -homePhone: +1 804 421-8547 -initials: K. G. -mobile: +1 804 985-2388 -pager: +1 804 538-6400 -roomNumber: 8150 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerardo Pbx -sn: Pbx -description: This is Gerardo Pbx's description -facsimileTelephoneNumber: +1 206 268-3325 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 968-6129 -title: Master Human Resources Punk -userPassword: Password1 -uid: PbxG -givenName: Gerardo -mail: PbxG@a5043dbf64444983b86424abe39aba1d.bitwarden.com -carLicense: QW2MH8 -departmentNumber: 7427 -employeeType: Normal -homePhone: +1 206 170-5018 -initials: G. P. -mobile: +1 206 866-4497 -pager: +1 206 552-9418 -roomNumber: 9338 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Addons Wurtz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Addons Wurtz -sn: Wurtz -description: This is Addons Wurtz's description -facsimileTelephoneNumber: +1 510 134-9116 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 490-2389 -title: Supreme Peons Stooge -userPassword: Password1 -uid: WurtzA -givenName: Addons -mail: WurtzA@0cca6f71d9404c488f8d31ec44e5edd8.bitwarden.com -carLicense: 4NXXTI -departmentNumber: 4274 -employeeType: Employee -homePhone: +1 510 186-2798 -initials: A. W. -mobile: +1 510 492-1573 -pager: +1 510 751-7155 -roomNumber: 8995 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MarieJosee Chiniwala -sn: Chiniwala -description: This is MarieJosee Chiniwala's description -facsimileTelephoneNumber: +1 415 286-9996 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 832-1140 -title: Master Peons Pinhead -userPassword: Password1 -uid: ChiniwaM -givenName: MarieJosee -mail: ChiniwaM@f8d234f023da4a3fb593b28104632797.bitwarden.com -carLicense: HKX3GJ -departmentNumber: 7405 -employeeType: Normal -homePhone: +1 415 536-4015 -initials: M. C. -mobile: +1 415 106-1138 -pager: +1 415 249-5681 -roomNumber: 8313 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Farzin Nebel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farzin Nebel -sn: Nebel -description: This is Farzin Nebel's description -facsimileTelephoneNumber: +1 804 347-6032 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 812-2048 -title: Junior Product Development Sales Rep -userPassword: Password1 -uid: NebelF -givenName: Farzin -mail: NebelF@960fde1bd9064545ac557eb042ebf65f.bitwarden.com -carLicense: YVKP7D -departmentNumber: 8750 -employeeType: Contract -homePhone: +1 804 926-1779 -initials: F. N. -mobile: +1 804 602-2963 -pager: +1 804 669-5394 -roomNumber: 9576 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shell Hurst,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shell Hurst -sn: Hurst -description: This is Shell Hurst's description -facsimileTelephoneNumber: +1 510 869-4469 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 993-1056 -title: Chief Janitorial Artist -userPassword: Password1 -uid: HurstS -givenName: Shell -mail: HurstS@12301f83685f482eaef7fc27694b679e.bitwarden.com -carLicense: 6434II -departmentNumber: 7999 -employeeType: Normal -homePhone: +1 510 950-8999 -initials: S. H. -mobile: +1 510 797-6192 -pager: +1 510 953-9126 -roomNumber: 9366 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rochelle Paluso -sn: Paluso -description: This is Rochelle Paluso's description -facsimileTelephoneNumber: +1 804 417-8962 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 161-2543 -title: Master Human Resources Visionary -userPassword: Password1 -uid: PalusoR -givenName: Rochelle -mail: PalusoR@82d0d802cca8422e814bc6ecdf25484c.bitwarden.com -carLicense: 38RJM6 -departmentNumber: 4194 -employeeType: Contract -homePhone: +1 804 609-7326 -initials: R. P. -mobile: +1 804 974-1685 -pager: +1 804 487-5216 -roomNumber: 9878 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dwain OCarroll -sn: OCarroll -description: This is Dwain OCarroll's description -facsimileTelephoneNumber: +1 818 852-6581 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 489-3249 -title: Master Human Resources Grunt -userPassword: Password1 -uid: OCarrolD -givenName: Dwain -mail: OCarrolD@8ae5753568884557b826bbbe6815b824.bitwarden.com -carLicense: IT0D3U -departmentNumber: 9357 -employeeType: Employee -homePhone: +1 818 768-5306 -initials: D. O. -mobile: +1 818 984-8306 -pager: +1 818 435-5193 -roomNumber: 9086 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Khosro Kuo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khosro Kuo -sn: Kuo -description: This is Khosro Kuo's description -facsimileTelephoneNumber: +1 510 984-6272 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 619-4948 -title: Master Human Resources Stooge -userPassword: Password1 -uid: KuoK -givenName: Khosro -mail: KuoK@a081497caeb44f8587c4809a817c9728.bitwarden.com -carLicense: HCHDR1 -departmentNumber: 4256 -employeeType: Employee -homePhone: +1 510 593-4073 -initials: K. K. -mobile: +1 510 874-5738 -pager: +1 510 471-7107 -roomNumber: 8854 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Michel Kernahan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michel Kernahan -sn: Kernahan -description: This is Michel Kernahan's description -facsimileTelephoneNumber: +1 510 480-3508 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 697-1970 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: KernahaM -givenName: Michel -mail: KernahaM@df756e7ca37d42aaab0cfecdbe1dbcdc.bitwarden.com -carLicense: F58XBW -departmentNumber: 5407 -employeeType: Normal -homePhone: +1 510 966-5939 -initials: M. K. -mobile: +1 510 186-7853 -pager: +1 510 704-3970 -roomNumber: 9124 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Melba Besnier,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melba Besnier -sn: Besnier -description: This is Melba Besnier's description -facsimileTelephoneNumber: +1 415 141-7394 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 655-6086 -title: Junior Management Janitor -userPassword: Password1 -uid: BesnierM -givenName: Melba -mail: BesnierM@5627b6b1b02646ec88c596099b169466.bitwarden.com -carLicense: HS0FNB -departmentNumber: 1791 -employeeType: Contract -homePhone: +1 415 126-6203 -initials: M. B. -mobile: +1 415 707-2688 -pager: +1 415 841-3528 -roomNumber: 9559 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ailee Schwenk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailee Schwenk -sn: Schwenk -description: This is Ailee Schwenk's description -facsimileTelephoneNumber: +1 818 583-3583 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 943-6840 -title: Junior Management Writer -userPassword: Password1 -uid: SchwenkA -givenName: Ailee -mail: SchwenkA@1d184a251b65443396a8cb4416166285.bitwarden.com -carLicense: SA6HNJ -departmentNumber: 2146 -employeeType: Contract -homePhone: +1 818 468-3880 -initials: A. S. -mobile: +1 818 423-6954 -pager: +1 818 230-9672 -roomNumber: 8415 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Klink Aguilar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klink Aguilar -sn: Aguilar -description: This is Klink Aguilar's description -facsimileTelephoneNumber: +1 206 869-1368 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 135-7250 -title: Associate Product Development Pinhead -userPassword: Password1 -uid: AguilarK -givenName: Klink -mail: AguilarK@075229ffb9b64ef789e1bac7125aa507.bitwarden.com -carLicense: YXSUHU -departmentNumber: 8337 -employeeType: Normal -homePhone: +1 206 374-1974 -initials: K. A. -mobile: +1 206 463-6878 -pager: +1 206 413-7725 -roomNumber: 9321 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Arnis Daly,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arnis Daly -sn: Daly -description: This is Arnis Daly's description -facsimileTelephoneNumber: +1 510 108-3895 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 510 911-3668 -title: Associate Peons Stooge -userPassword: Password1 -uid: DalyA -givenName: Arnis -mail: DalyA@6a8087cffa824fdc9d204ef1b876817b.bitwarden.com -carLicense: ADFPBK -departmentNumber: 1244 -employeeType: Contract -homePhone: +1 510 682-6884 -initials: A. D. -mobile: +1 510 872-8169 -pager: +1 510 931-3118 -roomNumber: 9883 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermina Kennedy -sn: Kennedy -description: This is Hermina Kennedy's description -facsimileTelephoneNumber: +1 510 149-3549 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 289-9017 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: KennedyH -givenName: Hermina -mail: KennedyH@76aa1b335bb64366a833ba61a905d441.bitwarden.com -carLicense: HOR9CA -departmentNumber: 2554 -employeeType: Employee -homePhone: +1 510 509-2549 -initials: H. K. -mobile: +1 510 401-9882 -pager: +1 510 225-1114 -roomNumber: 8201 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ofilia Keilty,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ofilia Keilty -sn: Keilty -description: This is Ofilia Keilty's description -facsimileTelephoneNumber: +1 213 221-9227 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 384-1298 -title: Chief Product Development Grunt -userPassword: Password1 -uid: KeiltyO -givenName: Ofilia -mail: KeiltyO@b112fc0413114ddcbf0202947d5c2011.bitwarden.com -carLicense: CUSWA2 -departmentNumber: 3402 -employeeType: Normal -homePhone: +1 213 849-3040 -initials: O. K. -mobile: +1 213 593-1100 -pager: +1 213 877-5650 -roomNumber: 8359 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ans Casperson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ans Casperson -sn: Casperson -description: This is Ans Casperson's description -facsimileTelephoneNumber: +1 804 669-9335 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 157-5719 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: CaspersA -givenName: Ans -mail: CaspersA@fd10790283ad43fb8ee24519792eda1e.bitwarden.com -carLicense: W5WJKB -departmentNumber: 1222 -employeeType: Normal -homePhone: +1 804 251-3966 -initials: A. C. -mobile: +1 804 925-8300 -pager: +1 804 148-1601 -roomNumber: 8353 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Janick McGregor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janick McGregor -sn: McGregor -description: This is Janick McGregor's description -facsimileTelephoneNumber: +1 213 222-8850 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 363-3383 -title: Junior Management Visionary -userPassword: Password1 -uid: McGregoJ -givenName: Janick -mail: McGregoJ@0bec70e6fa8d461ab29f67f7a630e586.bitwarden.com -carLicense: DMPVEF -departmentNumber: 1533 -employeeType: Employee -homePhone: +1 213 907-7867 -initials: J. M. -mobile: +1 213 170-8103 -pager: +1 213 980-9393 -roomNumber: 8058 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chuan Bernstein,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chuan Bernstein -sn: Bernstein -description: This is Chuan Bernstein's description -facsimileTelephoneNumber: +1 408 771-2881 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 189-2681 -title: Master Payroll Janitor -userPassword: Password1 -uid: BernsteC -givenName: Chuan -mail: BernsteC@796636c316134f4ea242b8ffac574e0e.bitwarden.com -carLicense: 7GIQ2P -departmentNumber: 8311 -employeeType: Employee -homePhone: +1 408 173-2602 -initials: C. B. -mobile: +1 408 303-3799 -pager: +1 408 383-6131 -roomNumber: 9784 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Donall HickmanMiott,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donall HickmanMiott -sn: HickmanMiott -description: This is Donall HickmanMiott's description -facsimileTelephoneNumber: +1 213 507-7980 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 746-3125 -title: Junior Management Engineer -userPassword: Password1 -uid: HickmanD -givenName: Donall -mail: HickmanD@1a52986d673a41e591f5e253ac65f5bb.bitwarden.com -carLicense: 18VVGG -departmentNumber: 2503 -employeeType: Normal -homePhone: +1 213 750-9812 -initials: D. H. -mobile: +1 213 790-5754 -pager: +1 213 745-1352 -roomNumber: 8448 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Doc Cantlie,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doc Cantlie -sn: Cantlie -description: This is Doc Cantlie's description -facsimileTelephoneNumber: +1 510 987-7863 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 510 456-9112 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: CantlieD -givenName: Doc -mail: CantlieD@83146e7f57ba40bd8fd147c075fc9a0d.bitwarden.com -carLicense: 40UWIX -departmentNumber: 5267 -employeeType: Contract -homePhone: +1 510 312-5452 -initials: D. C. -mobile: +1 510 456-6505 -pager: +1 510 820-7766 -roomNumber: 8452 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Christer Chapen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christer Chapen -sn: Chapen -description: This is Christer Chapen's description -facsimileTelephoneNumber: +1 510 850-3524 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 510 521-9199 -title: Chief Product Testing Czar -userPassword: Password1 -uid: ChapenC -givenName: Christer -mail: ChapenC@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com -carLicense: X8OPST -departmentNumber: 4670 -employeeType: Normal -homePhone: +1 510 236-6907 -initials: C. C. -mobile: +1 510 944-7209 -pager: +1 510 589-1031 -roomNumber: 8995 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maribeth Eslambolchi -sn: Eslambolchi -description: This is Maribeth Eslambolchi's description -facsimileTelephoneNumber: +1 510 921-3905 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 639-3833 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: EslamboM -givenName: Maribeth -mail: EslamboM@af76d6a9c4ee47b5be6351f28cb88a83.bitwarden.com -carLicense: HNOE3M -departmentNumber: 5003 -employeeType: Employee -homePhone: +1 510 412-6363 -initials: M. E. -mobile: +1 510 105-3331 -pager: +1 510 392-2339 -roomNumber: 9757 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Flory Ziegler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flory Ziegler -sn: Ziegler -description: This is Flory Ziegler's description -facsimileTelephoneNumber: +1 804 286-5240 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 789-7651 -title: Master Management Grunt -userPassword: Password1 -uid: ZieglerF -givenName: Flory -mail: ZieglerF@e4cb1f57405243129844c08d2e77b681.bitwarden.com -carLicense: FE8X33 -departmentNumber: 8356 -employeeType: Contract -homePhone: +1 804 282-6202 -initials: F. Z. -mobile: +1 804 377-2017 -pager: +1 804 627-2635 -roomNumber: 9808 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Altay Stevenson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Altay Stevenson -sn: Stevenson -description: This is Altay Stevenson's description -facsimileTelephoneNumber: +1 804 373-9914 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 558-6410 -title: Supreme Management Vice President -userPassword: Password1 -uid: StevensA -givenName: Altay -mail: StevensA@989c1fcac1b54129b688e303c3fcab40.bitwarden.com -carLicense: YRAMDD -departmentNumber: 4907 -employeeType: Employee -homePhone: +1 804 614-7153 -initials: A. S. -mobile: +1 804 720-8771 -pager: +1 804 466-2105 -roomNumber: 9330 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mada Curtin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mada Curtin -sn: Curtin -description: This is Mada Curtin's description -facsimileTelephoneNumber: +1 206 191-5844 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 651-8821 -title: Supreme Administrative Director -userPassword: Password1 -uid: CurtinM -givenName: Mada -mail: CurtinM@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com -carLicense: C6QF5F -departmentNumber: 9406 -employeeType: Employee -homePhone: +1 206 468-1702 -initials: M. C. -mobile: +1 206 660-6943 -pager: +1 206 247-7317 -roomNumber: 8913 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dasha Kivell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dasha Kivell -sn: Kivell -description: This is Dasha Kivell's description -facsimileTelephoneNumber: +1 510 846-7146 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 510 594-9572 -title: Junior Product Development Writer -userPassword: Password1 -uid: KivellD -givenName: Dasha -mail: KivellD@a6532d9f9838406fa36604afc09c1100.bitwarden.com -carLicense: XBXOGV -departmentNumber: 6989 -employeeType: Contract -homePhone: +1 510 935-6064 -initials: D. K. -mobile: +1 510 533-8383 -pager: +1 510 470-7871 -roomNumber: 9671 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Minna Hyatt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minna Hyatt -sn: Hyatt -description: This is Minna Hyatt's description -facsimileTelephoneNumber: +1 510 567-9571 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 510 292-9356 -title: Associate Payroll Madonna -userPassword: Password1 -uid: HyattM -givenName: Minna -mail: HyattM@859c4245e0604293a1eb9ae487b0f7d1.bitwarden.com -carLicense: UJ2814 -departmentNumber: 7698 -employeeType: Contract -homePhone: +1 510 753-2051 -initials: M. H. -mobile: +1 510 967-6887 -pager: +1 510 915-6923 -roomNumber: 8025 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tiff Brambley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiff Brambley -sn: Brambley -description: This is Tiff Brambley's description -facsimileTelephoneNumber: +1 510 434-8137 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 816-5951 -title: Associate Product Development Fellow -userPassword: Password1 -uid: BrambleT -givenName: Tiff -mail: BrambleT@7388d6407a304050b7d1b21890b91ab6.bitwarden.com -carLicense: GVN8T5 -departmentNumber: 8032 -employeeType: Normal -homePhone: +1 510 438-3440 -initials: T. B. -mobile: +1 510 556-2677 -pager: +1 510 952-2971 -roomNumber: 8010 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gerrard Kinos,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerrard Kinos -sn: Kinos -description: This is Gerrard Kinos's description -facsimileTelephoneNumber: +1 415 621-6754 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 465-5714 -title: Supreme Management Consultant -userPassword: Password1 -uid: KinosG -givenName: Gerrard -mail: KinosG@5c9b9d5c8575423f84d184975eedd13e.bitwarden.com -carLicense: K678M9 -departmentNumber: 9827 -employeeType: Employee -homePhone: +1 415 780-1385 -initials: G. K. -mobile: +1 415 481-5750 -pager: +1 415 914-3219 -roomNumber: 8620 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Philippine McDaniel -sn: McDaniel -description: This is Philippine McDaniel's description -facsimileTelephoneNumber: +1 818 704-5435 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 744-5008 -title: Master Janitorial Consultant -userPassword: Password1 -uid: McDanieP -givenName: Philippine -mail: McDanieP@3f8d70a2bece482898bc31be4127bc01.bitwarden.com -carLicense: IW4OC9 -departmentNumber: 3603 -employeeType: Normal -homePhone: +1 818 708-7038 -initials: P. M. -mobile: +1 818 205-2481 -pager: +1 818 634-4655 -roomNumber: 8755 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Norikatsu Knox,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norikatsu Knox -sn: Knox -description: This is Norikatsu Knox's description -facsimileTelephoneNumber: +1 213 826-1857 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 292-6021 -title: Junior Administrative Czar -userPassword: Password1 -uid: KnoxN -givenName: Norikatsu -mail: KnoxN@ba892bea3b8945d19eac9125b1901b77.bitwarden.com -carLicense: WX2EX6 -departmentNumber: 3173 -employeeType: Employee -homePhone: +1 213 960-4642 -initials: N. K. -mobile: +1 213 581-2650 -pager: +1 213 943-2088 -roomNumber: 9580 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sabine Litz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabine Litz -sn: Litz -description: This is Sabine Litz's description -facsimileTelephoneNumber: +1 206 947-6118 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 777-8593 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: LitzS -givenName: Sabine -mail: LitzS@577d33811aef46c2a87033464ba91210.bitwarden.com -carLicense: KBYNV2 -departmentNumber: 1721 -employeeType: Normal -homePhone: +1 206 263-2756 -initials: S. L. -mobile: +1 206 541-5362 -pager: +1 206 664-8035 -roomNumber: 8310 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Candee Rightmire,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candee Rightmire -sn: Rightmire -description: This is Candee Rightmire's description -facsimileTelephoneNumber: +1 510 954-8466 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 951-5813 -title: Supreme Management Fellow -userPassword: Password1 -uid: RightmiC -givenName: Candee -mail: RightmiC@88a362d8c08640c59911ccd0faa3d84a.bitwarden.com -carLicense: LMMQ4C -departmentNumber: 5960 -employeeType: Normal -homePhone: +1 510 579-5026 -initials: C. R. -mobile: +1 510 154-3966 -pager: +1 510 261-3034 -roomNumber: 9261 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jorge Layton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jorge Layton -sn: Layton -description: This is Jorge Layton's description -facsimileTelephoneNumber: +1 408 359-2696 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 408 249-9293 -title: Master Payroll Engineer -userPassword: Password1 -uid: LaytonJ -givenName: Jorge -mail: LaytonJ@2632abf3a2f24d08a48ac678703e5a07.bitwarden.com -carLicense: OQUQXU -departmentNumber: 8412 -employeeType: Normal -homePhone: +1 408 191-8105 -initials: J. L. -mobile: +1 408 967-7982 -pager: +1 408 230-8305 -roomNumber: 8248 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: RongChin Sawczyn -sn: Sawczyn -description: This is RongChin Sawczyn's description -facsimileTelephoneNumber: +1 408 827-9854 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 453-9922 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: SawczynR -givenName: RongChin -mail: SawczynR@8d2bde7cc8a74ac5887aa1747493b68d.bitwarden.com -carLicense: 2JGNYC -departmentNumber: 6822 -employeeType: Normal -homePhone: +1 408 571-1787 -initials: R. S. -mobile: +1 408 803-2004 -pager: +1 408 244-2751 -roomNumber: 8448 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigida Forecasting -sn: Forecasting -description: This is Brigida Forecasting's description -facsimileTelephoneNumber: +1 510 461-6554 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 557-9874 -title: Master Human Resources Czar -userPassword: Password1 -uid: ForecasB -givenName: Brigida -mail: ForecasB@e75be13fa8934e138f210bfa3bbca375.bitwarden.com -carLicense: OGQRDJ -departmentNumber: 7494 -employeeType: Normal -homePhone: +1 510 956-1214 -initials: B. F. -mobile: +1 510 161-3470 -pager: +1 510 268-9756 -roomNumber: 8002 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ed Joe,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ed Joe -sn: Joe -description: This is Ed Joe's description -facsimileTelephoneNumber: +1 408 966-6320 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 370-1937 -title: Chief Administrative Warrior -userPassword: Password1 -uid: JoeE -givenName: Ed -mail: JoeE@8d3c44ed2e3e425b88258d14938dfd7c.bitwarden.com -carLicense: A1LYNB -departmentNumber: 7153 -employeeType: Employee -homePhone: +1 408 979-1020 -initials: E. J. -mobile: +1 408 598-6401 -pager: +1 408 739-3298 -roomNumber: 8573 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Portia Sim,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Portia Sim -sn: Sim -description: This is Portia Sim's description -facsimileTelephoneNumber: +1 213 975-9087 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 245-8138 -title: Master Product Development Vice President -userPassword: Password1 -uid: SimP -givenName: Portia -mail: SimP@5f44867d3815485286c6292e360f1c67.bitwarden.com -carLicense: 2L3FG0 -departmentNumber: 6940 -employeeType: Employee -homePhone: +1 213 720-2809 -initials: P. S. -mobile: +1 213 407-9950 -pager: +1 213 839-8048 -roomNumber: 9328 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jian Gardner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jian Gardner -sn: Gardner -description: This is Jian Gardner's description -facsimileTelephoneNumber: +1 213 412-5692 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 213 165-5336 -title: Chief Product Development Consultant -userPassword: Password1 -uid: GardnerJ -givenName: Jian -mail: GardnerJ@52dd6b005be946f88fd736bfecf761d2.bitwarden.com -carLicense: KOB1DX -departmentNumber: 4977 -employeeType: Normal -homePhone: +1 213 100-3696 -initials: J. G. -mobile: +1 213 283-8718 -pager: +1 213 780-3541 -roomNumber: 9374 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ashien Brewton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashien Brewton -sn: Brewton -description: This is Ashien Brewton's description -facsimileTelephoneNumber: +1 510 623-2800 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 838-3444 -title: Chief Management Punk -userPassword: Password1 -uid: BrewtonA -givenName: Ashien -mail: BrewtonA@719d42488cdd461d9a46a6d7e3fd0edb.bitwarden.com -carLicense: I452KI -departmentNumber: 7687 -employeeType: Employee -homePhone: +1 510 987-3514 -initials: A. B. -mobile: +1 510 467-4627 -pager: +1 510 917-6468 -roomNumber: 8142 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Opto Seay,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opto Seay -sn: Seay -description: This is Opto Seay's description -facsimileTelephoneNumber: +1 213 989-9626 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 814-8857 -title: Master Product Development President -userPassword: Password1 -uid: SeayO -givenName: Opto -mail: SeayO@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com -carLicense: A45A36 -departmentNumber: 2849 -employeeType: Normal -homePhone: +1 213 109-1492 -initials: O. S. -mobile: +1 213 519-3211 -pager: +1 213 501-9933 -roomNumber: 8013 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rolande Prattico,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rolande Prattico -sn: Prattico -description: This is Rolande Prattico's description -facsimileTelephoneNumber: +1 510 307-5451 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 510 751-1181 -title: Junior Administrative Janitor -userPassword: Password1 -uid: PratticR -givenName: Rolande -mail: PratticR@4ea4f1e353e542d591c9ee228e04b29f.bitwarden.com -carLicense: PVE5K2 -departmentNumber: 2318 -employeeType: Employee -homePhone: +1 510 314-9267 -initials: R. P. -mobile: +1 510 285-5804 -pager: +1 510 224-6129 -roomNumber: 9080 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Reggie Boggs,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reggie Boggs -sn: Boggs -description: This is Reggie Boggs's description -facsimileTelephoneNumber: +1 213 927-8156 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 397-7770 -title: Associate Human Resources Artist -userPassword: Password1 -uid: BoggsR -givenName: Reggie -mail: BoggsR@03fd765619e04536a01e210ec3db68b0.bitwarden.com -carLicense: 143IET -departmentNumber: 3863 -employeeType: Contract -homePhone: +1 213 941-4811 -initials: R. B. -mobile: +1 213 356-4282 -pager: +1 213 941-3758 -roomNumber: 9656 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zero Dourley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zero Dourley -sn: Dourley -description: This is Zero Dourley's description -facsimileTelephoneNumber: +1 510 167-5186 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 510 120-5921 -title: Supreme Product Testing Technician -userPassword: Password1 -uid: DourleyZ -givenName: Zero -mail: DourleyZ@713ec84902e3407ea7c47d43e09273a9.bitwarden.com -carLicense: Y4KLXW -departmentNumber: 9171 -employeeType: Employee -homePhone: +1 510 191-2511 -initials: Z. D. -mobile: +1 510 979-7845 -pager: +1 510 959-6191 -roomNumber: 8936 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gabie Hirayama,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabie Hirayama -sn: Hirayama -description: This is Gabie Hirayama's description -facsimileTelephoneNumber: +1 818 717-1878 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 896-2980 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: HirayamG -givenName: Gabie -mail: HirayamG@3a3f7974ffc147bc8e5ab8732ee37359.bitwarden.com -carLicense: S4CE41 -departmentNumber: 4636 -employeeType: Employee -homePhone: +1 818 702-2198 -initials: G. H. -mobile: +1 818 107-6831 -pager: +1 818 488-7479 -roomNumber: 8813 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kalindi Keene,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalindi Keene -sn: Keene -description: This is Kalindi Keene's description -facsimileTelephoneNumber: +1 415 936-9489 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 356-1027 -title: Chief Administrative Madonna -userPassword: Password1 -uid: KeeneK -givenName: Kalindi -mail: KeeneK@453e1aa146534f789cee9f78a1f430f8.bitwarden.com -carLicense: WDXNRT -departmentNumber: 2327 -employeeType: Contract -homePhone: +1 415 401-7684 -initials: K. K. -mobile: +1 415 682-3921 -pager: +1 415 646-1087 -roomNumber: 9613 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rod Krenos,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rod Krenos -sn: Krenos -description: This is Rod Krenos's description -facsimileTelephoneNumber: +1 510 366-1345 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 662-4910 -title: Associate Human Resources Technician -userPassword: Password1 -uid: KrenosR -givenName: Rod -mail: KrenosR@7099256f6cc64433985279df12772e6d.bitwarden.com -carLicense: 2W7FY1 -departmentNumber: 8081 -employeeType: Employee -homePhone: +1 510 987-1258 -initials: R. K. -mobile: +1 510 883-5717 -pager: +1 510 509-9839 -roomNumber: 8765 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bahadir Borozny,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bahadir Borozny -sn: Borozny -description: This is Bahadir Borozny's description -facsimileTelephoneNumber: +1 213 193-8279 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 126-2615 -title: Junior Management Technician -userPassword: Password1 -uid: BoroznyB -givenName: Bahadir -mail: BoroznyB@91bb90ade3ed45329bdbe468ae424f00.bitwarden.com -carLicense: 24PMBT -departmentNumber: 9659 -employeeType: Employee -homePhone: +1 213 722-7787 -initials: B. B. -mobile: +1 213 635-9776 -pager: +1 213 690-5846 -roomNumber: 9699 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Prudy Morelli,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prudy Morelli -sn: Morelli -description: This is Prudy Morelli's description -facsimileTelephoneNumber: +1 206 879-8683 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 206 340-9216 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: MorelliP -givenName: Prudy -mail: MorelliP@952e219a347c41c2b9729763800ed734.bitwarden.com -carLicense: RXWO07 -departmentNumber: 6446 -employeeType: Contract -homePhone: +1 206 463-9599 -initials: P. M. -mobile: +1 206 730-5854 -pager: +1 206 967-2295 -roomNumber: 8857 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zero Volchegursky,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zero Volchegursky -sn: Volchegursky -description: This is Zero Volchegursky's description -facsimileTelephoneNumber: +1 510 135-4703 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 923-9557 -title: Supreme Management Madonna -userPassword: Password1 -uid: VolchegZ -givenName: Zero -mail: VolchegZ@3de40f1f4bb746cab1a4ba47c2543175.bitwarden.com -carLicense: 77V9U6 -departmentNumber: 6993 -employeeType: Employee -homePhone: +1 510 303-2640 -initials: Z. V. -mobile: +1 510 810-5756 -pager: +1 510 589-8544 -roomNumber: 9473 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Riyaz Leone,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Riyaz Leone -sn: Leone -description: This is Riyaz Leone's description -facsimileTelephoneNumber: +1 213 943-5154 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 150-3419 -title: Supreme Management Engineer -userPassword: Password1 -uid: LeoneR -givenName: Riyaz -mail: LeoneR@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com -carLicense: 3E12JJ -departmentNumber: 2668 -employeeType: Normal -homePhone: +1 213 786-1584 -initials: R. L. -mobile: +1 213 644-8572 -pager: +1 213 216-5583 -roomNumber: 9529 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jade Njo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jade Njo -sn: Njo -description: This is Jade Njo's description -facsimileTelephoneNumber: +1 213 498-5972 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 215-3346 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: NjoJ -givenName: Jade -mail: NjoJ@dc14108a33864343abea453a90202c78.bitwarden.com -carLicense: A8QIKK -departmentNumber: 1125 -employeeType: Normal -homePhone: +1 213 458-6603 -initials: J. N. -mobile: +1 213 471-3356 -pager: +1 213 773-8112 -roomNumber: 9032 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hildy Hargrow -sn: Hargrow -description: This is Hildy Hargrow's description -facsimileTelephoneNumber: +1 510 546-5519 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 849-8818 -title: Junior Human Resources Director -userPassword: Password1 -uid: HargrowH -givenName: Hildy -mail: HargrowH@7080ace676f14d789edd6d153887110b.bitwarden.com -carLicense: AAQQE7 -departmentNumber: 3138 -employeeType: Normal -homePhone: +1 510 515-8317 -initials: H. H. -mobile: +1 510 878-2201 -pager: +1 510 541-9338 -roomNumber: 9152 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Albert Healy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Albert Healy -sn: Healy -description: This is Albert Healy's description -facsimileTelephoneNumber: +1 818 797-7336 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 139-3272 -title: Chief Human Resources Visionary -userPassword: Password1 -uid: HealyA -givenName: Albert -mail: HealyA@2c865634e0e045e2b70cc9cc6dc9005f.bitwarden.com -carLicense: 9IQ8HM -departmentNumber: 2883 -employeeType: Normal -homePhone: +1 818 911-2095 -initials: A. H. -mobile: +1 818 401-4920 -pager: +1 818 245-2695 -roomNumber: 8799 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorry Marshaus -sn: Marshaus -description: This is Dorry Marshaus's description -facsimileTelephoneNumber: +1 408 700-3932 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 196-2618 -title: Master Human Resources Fellow -userPassword: Password1 -uid: MarshauD -givenName: Dorry -mail: MarshauD@07a4bc595e2e42d18a0e9f7b0a858ca8.bitwarden.com -carLicense: RXHSI3 -departmentNumber: 4068 -employeeType: Contract -homePhone: +1 408 627-6419 -initials: D. M. -mobile: +1 408 990-4337 -pager: +1 408 154-2224 -roomNumber: 8010 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Helsa Eder,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helsa Eder -sn: Eder -description: This is Helsa Eder's description -facsimileTelephoneNumber: +1 213 208-8162 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 445-5903 -title: Associate Administrative Writer -userPassword: Password1 -uid: EderH -givenName: Helsa -mail: EderH@e9361d04edcf46f9a225b99f53867f61.bitwarden.com -carLicense: VXNLQ1 -departmentNumber: 3610 -employeeType: Contract -homePhone: +1 213 683-5037 -initials: H. E. -mobile: +1 213 967-3759 -pager: +1 213 606-6823 -roomNumber: 8655 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Patt Overby,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patt Overby -sn: Overby -description: This is Patt Overby's description -facsimileTelephoneNumber: +1 408 589-7673 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 408 724-7380 -title: Junior Administrative Figurehead -userPassword: Password1 -uid: OverbyP -givenName: Patt -mail: OverbyP@11458275b70842ea81e3c8a96d06615f.bitwarden.com -carLicense: DRJU3P -departmentNumber: 1769 -employeeType: Employee -homePhone: +1 408 261-4360 -initials: P. O. -mobile: +1 408 147-8815 -pager: +1 408 246-2114 -roomNumber: 9782 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dasya Chenard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dasya Chenard -sn: Chenard -description: This is Dasya Chenard's description -facsimileTelephoneNumber: +1 408 843-4501 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 408 746-6460 -title: Supreme Management Vice President -userPassword: Password1 -uid: ChenardD -givenName: Dasya -mail: ChenardD@d9e32d7c83eb4ccf8004a41c9874f6a2.bitwarden.com -carLicense: PIUHTS -departmentNumber: 7422 -employeeType: Employee -homePhone: +1 408 912-9468 -initials: D. C. -mobile: +1 408 361-1389 -pager: +1 408 246-9568 -roomNumber: 8938 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rosana Hensen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosana Hensen -sn: Hensen -description: This is Rosana Hensen's description -facsimileTelephoneNumber: +1 804 702-5865 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 791-2582 -title: Chief Management Engineer -userPassword: Password1 -uid: HensenR -givenName: Rosana -mail: HensenR@b5a44095f2374197a4ff741b9417f6b1.bitwarden.com -carLicense: UCXRWV -departmentNumber: 8721 -employeeType: Normal -homePhone: +1 804 836-9730 -initials: R. H. -mobile: +1 804 206-4511 -pager: +1 804 598-9248 -roomNumber: 9821 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Thekla Helpb,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thekla Helpb -sn: Helpb -description: This is Thekla Helpb's description -facsimileTelephoneNumber: +1 818 663-1622 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 938-2780 -title: Supreme Payroll Fellow -userPassword: Password1 -uid: HelpbT -givenName: Thekla -mail: HelpbT@5319f4b5e8194323b5cce9067279026f.bitwarden.com -carLicense: PYW3P5 -departmentNumber: 1290 -employeeType: Normal -homePhone: +1 818 950-7292 -initials: T. H. -mobile: +1 818 680-7460 -pager: +1 818 365-8085 -roomNumber: 8062 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seyma Eubanks -sn: Eubanks -description: This is Seyma Eubanks's description -facsimileTelephoneNumber: +1 408 428-3361 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 513-7786 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: EubanksS -givenName: Seyma -mail: EubanksS@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com -carLicense: UHJ1M1 -departmentNumber: 3496 -employeeType: Employee -homePhone: +1 408 842-3327 -initials: S. E. -mobile: +1 408 852-5966 -pager: +1 408 686-8745 -roomNumber: 8111 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jacquetta Alary,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquetta Alary -sn: Alary -description: This is Jacquetta Alary's description -facsimileTelephoneNumber: +1 408 186-4478 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 236-4233 -title: Master Peons Architect -userPassword: Password1 -uid: AlaryJ -givenName: Jacquetta -mail: AlaryJ@fce4c1e9f1a6429083bed21e1e54a500.bitwarden.com -carLicense: SWM80S -departmentNumber: 7347 -employeeType: Normal -homePhone: +1 408 771-7902 -initials: J. A. -mobile: +1 408 330-2499 -pager: +1 408 109-6324 -roomNumber: 8983 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjory Jasrotia -sn: Jasrotia -description: This is Marjory Jasrotia's description -facsimileTelephoneNumber: +1 213 978-1382 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 213 459-9410 -title: Junior Administrative President -userPassword: Password1 -uid: JasrotiM -givenName: Marjory -mail: JasrotiM@9aabc0c0846e44fe90512a9449c3b77f.bitwarden.com -carLicense: 9VSL5D -departmentNumber: 5747 -employeeType: Employee -homePhone: +1 213 782-6600 -initials: M. J. -mobile: +1 213 715-4384 -pager: +1 213 593-9086 -roomNumber: 9469 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LouisPhilippe Bazemore -sn: Bazemore -description: This is LouisPhilippe Bazemore's description -facsimileTelephoneNumber: +1 818 946-5186 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 495-4086 -title: Chief Human Resources Czar -userPassword: Password1 -uid: BazemorL -givenName: LouisPhilippe -mail: BazemorL@2cd58a63642c4f52b76ece1f793d964f.bitwarden.com -carLicense: JHXP68 -departmentNumber: 7181 -employeeType: Contract -homePhone: +1 818 382-2949 -initials: L. B. -mobile: +1 818 381-7030 -pager: +1 818 479-4371 -roomNumber: 8620 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bonnie Bechtel -sn: Bechtel -description: This is Bonnie Bechtel's description -facsimileTelephoneNumber: +1 804 955-8313 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 656-9024 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: BechtelB -givenName: Bonnie -mail: BechtelB@101b8efea162489cbe4b00acbe71ea5a.bitwarden.com -carLicense: H4TGEF -departmentNumber: 1490 -employeeType: Employee -homePhone: +1 804 268-9168 -initials: B. B. -mobile: +1 804 886-9711 -pager: +1 804 706-9822 -roomNumber: 8091 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nari Dilallo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nari Dilallo -sn: Dilallo -description: This is Nari Dilallo's description -facsimileTelephoneNumber: +1 510 180-1230 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 131-6525 -title: Associate Payroll Artist -userPassword: Password1 -uid: DilalloN -givenName: Nari -mail: DilalloN@eec4bbb8da77429f893524017458e5d9.bitwarden.com -carLicense: I0PVQF -departmentNumber: 7160 -employeeType: Normal -homePhone: +1 510 198-1639 -initials: N. D. -mobile: +1 510 191-2617 -pager: +1 510 386-5160 -roomNumber: 8271 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Betti Tanner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betti Tanner -sn: Tanner -description: This is Betti Tanner's description -facsimileTelephoneNumber: +1 818 901-9806 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 798-5842 -title: Master Human Resources Vice President -userPassword: Password1 -uid: TannerB -givenName: Betti -mail: TannerB@f3bf6ba88e9949f59b53ce8700fcbd97.bitwarden.com -carLicense: G9VQE2 -departmentNumber: 4709 -employeeType: Contract -homePhone: +1 818 244-5823 -initials: B. T. -mobile: +1 818 271-3443 -pager: +1 818 228-1523 -roomNumber: 8137 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Weilin Tupling,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weilin Tupling -sn: Tupling -description: This is Weilin Tupling's description -facsimileTelephoneNumber: +1 415 228-6489 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 851-2044 -title: Junior Peons Warrior -userPassword: Password1 -uid: TuplingW -givenName: Weilin -mail: TuplingW@f6a15f7382e844a784e99c66615d4c58.bitwarden.com -carLicense: RSG5CU -departmentNumber: 9213 -employeeType: Employee -homePhone: +1 415 906-3027 -initials: W. T. -mobile: +1 415 804-6590 -pager: +1 415 104-9768 -roomNumber: 9669 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pierrette Loyola -sn: Loyola -description: This is Pierrette Loyola's description -facsimileTelephoneNumber: +1 415 179-1889 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 924-9242 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: LoyolaP -givenName: Pierrette -mail: LoyolaP@d3b7d248cb224bf8a4d600d381f25048.bitwarden.com -carLicense: W9JKEH -departmentNumber: 6199 -employeeType: Contract -homePhone: +1 415 256-4736 -initials: P. L. -mobile: +1 415 387-3390 -pager: +1 415 257-7732 -roomNumber: 8074 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roly Odden,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roly Odden -sn: Odden -description: This is Roly Odden's description -facsimileTelephoneNumber: +1 510 171-6644 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 510 405-2239 -title: Junior Management Czar -userPassword: Password1 -uid: OddenR -givenName: Roly -mail: OddenR@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com -carLicense: QHNULV -departmentNumber: 6000 -employeeType: Contract -homePhone: +1 510 488-8805 -initials: R. O. -mobile: +1 510 777-3311 -pager: +1 510 162-6401 -roomNumber: 8170 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Junie Siegel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Junie Siegel -sn: Siegel -description: This is Junie Siegel's description -facsimileTelephoneNumber: +1 818 518-7761 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 867-6540 -title: Supreme Product Development Sales Rep -userPassword: Password1 -uid: SiegelJ -givenName: Junie -mail: SiegelJ@0266937dc1da4f6ca345872742d007d5.bitwarden.com -carLicense: 487BM9 -departmentNumber: 4544 -employeeType: Contract -homePhone: +1 818 911-5570 -initials: J. S. -mobile: +1 818 610-2207 -pager: +1 818 257-3035 -roomNumber: 8543 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karna Nairn,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karna Nairn -sn: Nairn -description: This is Karna Nairn's description -facsimileTelephoneNumber: +1 206 619-7609 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 258-4818 -title: Supreme Peons Fellow -userPassword: Password1 -uid: NairnK -givenName: Karna -mail: NairnK@240320ec20894b66932f0d930796bec9.bitwarden.com -carLicense: HB82XR -departmentNumber: 8463 -employeeType: Employee -homePhone: +1 206 255-5555 -initials: K. N. -mobile: +1 206 492-8031 -pager: +1 206 148-4070 -roomNumber: 9998 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pascale Innes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pascale Innes -sn: Innes -description: This is Pascale Innes's description -facsimileTelephoneNumber: +1 804 211-6275 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 544-3935 -title: Chief Peons Dictator -userPassword: Password1 -uid: InnesP -givenName: Pascale -mail: InnesP@e740afc7882b41df9170031ff18ecd69.bitwarden.com -carLicense: PCHQBE -departmentNumber: 9093 -employeeType: Employee -homePhone: +1 804 190-3381 -initials: P. I. -mobile: +1 804 916-9083 -pager: +1 804 891-2766 -roomNumber: 8521 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Darbie Scalabrini,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darbie Scalabrini -sn: Scalabrini -description: This is Darbie Scalabrini's description -facsimileTelephoneNumber: +1 818 395-9376 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 620-1249 -title: Master Peons Punk -userPassword: Password1 -uid: ScalabrD -givenName: Darbie -mail: ScalabrD@543e9d6f1baf4e398f4b35d8fd14d7df.bitwarden.com -carLicense: BFYYX9 -departmentNumber: 6176 -employeeType: Normal -homePhone: +1 818 310-2478 -initials: D. S. -mobile: +1 818 948-2731 -pager: +1 818 145-1644 -roomNumber: 8741 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evangelia DeBernardo -sn: DeBernardo -description: This is Evangelia DeBernardo's description -facsimileTelephoneNumber: +1 804 954-2021 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 241-8801 -title: Chief Product Development Punk -userPassword: Password1 -uid: DeBernaE -givenName: Evangelia -mail: DeBernaE@a45191844e6a4a65beb487444486faa6.bitwarden.com -carLicense: TCMMOJ -departmentNumber: 8667 -employeeType: Contract -homePhone: +1 804 995-8838 -initials: E. D. -mobile: +1 804 129-8705 -pager: +1 804 370-6793 -roomNumber: 9183 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Elsi Toles,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elsi Toles -sn: Toles -description: This is Elsi Toles's description -facsimileTelephoneNumber: +1 408 908-3787 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 199-9198 -title: Master Administrative Architect -userPassword: Password1 -uid: TolesE -givenName: Elsi -mail: TolesE@e5fdd3d67af74cde904584628c237f35.bitwarden.com -carLicense: 1QF82S -departmentNumber: 7914 -employeeType: Employee -homePhone: +1 408 105-6966 -initials: E. T. -mobile: +1 408 528-4963 -pager: +1 408 910-1148 -roomNumber: 8663 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xuong Mendonca -sn: Mendonca -description: This is Xuong Mendonca's description -facsimileTelephoneNumber: +1 818 505-7254 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 818 546-4053 -title: Associate Product Testing Developer -userPassword: Password1 -uid: MendoncX -givenName: Xuong -mail: MendoncX@89cc2a9b2ec949b1a8070c39d600dc45.bitwarden.com -carLicense: 3JA47G -departmentNumber: 3085 -employeeType: Normal -homePhone: +1 818 332-3063 -initials: X. M. -mobile: +1 818 486-4843 -pager: +1 818 278-7120 -roomNumber: 9931 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Steinar Royster,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steinar Royster -sn: Royster -description: This is Steinar Royster's description -facsimileTelephoneNumber: +1 818 400-8358 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 771-6899 -title: Chief Administrative Technician -userPassword: Password1 -uid: RoysterS -givenName: Steinar -mail: RoysterS@3c377b6d3a464b54841abc0f3eeba132.bitwarden.com -carLicense: T1K1OT -departmentNumber: 4164 -employeeType: Employee -homePhone: +1 818 753-3672 -initials: S. R. -mobile: +1 818 361-2444 -pager: +1 818 882-5585 -roomNumber: 9395 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Callie Constantinescu -sn: Constantinescu -description: This is Callie Constantinescu's description -facsimileTelephoneNumber: +1 818 254-5577 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 973-4249 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: ConstanC -givenName: Callie -mail: ConstanC@a997ea3fe107458ebeee5012c3a4f6a8.bitwarden.com -carLicense: UP0TDE -departmentNumber: 6331 -employeeType: Employee -homePhone: +1 818 290-7052 -initials: C. C. -mobile: +1 818 807-6631 -pager: +1 818 124-9601 -roomNumber: 8645 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sono Wissler,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sono Wissler -sn: Wissler -description: This is Sono Wissler's description -facsimileTelephoneNumber: +1 408 264-9527 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 166-3736 -title: Chief Administrative Vice President -userPassword: Password1 -uid: WisslerS -givenName: Sono -mail: WisslerS@fa0238e4957946f6b30d70f1a6cdea6e.bitwarden.com -carLicense: DJD281 -departmentNumber: 4069 -employeeType: Normal -homePhone: +1 408 535-2859 -initials: S. W. -mobile: +1 408 152-6315 -pager: +1 408 115-3038 -roomNumber: 8611 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Par Fani,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Par Fani -sn: Fani -description: This is Par Fani's description -facsimileTelephoneNumber: +1 415 608-6601 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 626-2144 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: FaniP -givenName: Par -mail: FaniP@faec862307e2490ab9310236bae87643.bitwarden.com -carLicense: IIG4SU -departmentNumber: 5002 -employeeType: Employee -homePhone: +1 415 649-8181 -initials: P. F. -mobile: +1 415 755-7552 -pager: +1 415 606-5790 -roomNumber: 9190 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ethelda Stagmier -sn: Stagmier -description: This is Ethelda Stagmier's description -facsimileTelephoneNumber: +1 804 134-6298 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 222-8778 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: StagmieE -givenName: Ethelda -mail: StagmieE@0444443925704655be3c38857a5dd7a3.bitwarden.com -carLicense: AAP0Y6 -departmentNumber: 8121 -employeeType: Employee -homePhone: +1 804 207-2466 -initials: E. S. -mobile: +1 804 647-7323 -pager: +1 804 678-4354 -roomNumber: 8080 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maso Gerlinsky -sn: Gerlinsky -description: This is Maso Gerlinsky's description -facsimileTelephoneNumber: +1 415 769-4829 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 624-9111 -title: Associate Janitorial Artist -userPassword: Password1 -uid: GerlinsM -givenName: Maso -mail: GerlinsM@0cab6ba3bc394ea5975adecee65ca1c4.bitwarden.com -carLicense: 6M55RA -departmentNumber: 8505 -employeeType: Normal -homePhone: +1 415 440-2887 -initials: M. G. -mobile: +1 415 748-6004 -pager: +1 415 139-3017 -roomNumber: 9638 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Matti Beisel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matti Beisel -sn: Beisel -description: This is Matti Beisel's description -facsimileTelephoneNumber: +1 415 366-8337 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 415 610-8230 -title: Chief Peons Czar -userPassword: Password1 -uid: BeiselM -givenName: Matti -mail: BeiselM@0b56a4c94023459d8772d8f7af50540e.bitwarden.com -carLicense: 3XUMCY -departmentNumber: 7486 -employeeType: Normal -homePhone: +1 415 174-1415 -initials: M. B. -mobile: +1 415 826-8777 -pager: +1 415 106-6960 -roomNumber: 9187 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Regine Sergi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regine Sergi -sn: Sergi -description: This is Regine Sergi's description -facsimileTelephoneNumber: +1 415 460-6680 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 599-3748 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: SergiR -givenName: Regine -mail: SergiR@28361b33929c47fcba44b2074b43f0e2.bitwarden.com -carLicense: FJU837 -departmentNumber: 5668 -employeeType: Normal -homePhone: +1 415 337-6673 -initials: R. S. -mobile: +1 415 649-5637 -pager: +1 415 516-6923 -roomNumber: 8787 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Oralia Daymond,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oralia Daymond -sn: Daymond -description: This is Oralia Daymond's description -facsimileTelephoneNumber: +1 206 145-3954 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 315-8534 -title: Supreme Payroll Dictator -userPassword: Password1 -uid: DaymondO -givenName: Oralia -mail: DaymondO@b6e5aee724a54904bb06d1cd94c0be8e.bitwarden.com -carLicense: SUE6H1 -departmentNumber: 8473 -employeeType: Normal -homePhone: +1 206 384-6331 -initials: O. D. -mobile: +1 206 632-4930 -pager: +1 206 362-3354 -roomNumber: 8424 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adey Mein,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adey Mein -sn: Mein -description: This is Adey Mein's description -facsimileTelephoneNumber: +1 818 316-6074 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 818 627-1809 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: MeinA -givenName: Adey -mail: MeinA@dc836bc8f8b34c3ea421ef30574e0176.bitwarden.com -carLicense: H0Y9DC -departmentNumber: 3102 -employeeType: Employee -homePhone: +1 818 868-1453 -initials: A. M. -mobile: +1 818 357-3904 -pager: +1 818 838-3665 -roomNumber: 9450 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bettina Petree,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettina Petree -sn: Petree -description: This is Bettina Petree's description -facsimileTelephoneNumber: +1 415 365-8377 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 332-8020 -title: Supreme Management Artist -userPassword: Password1 -uid: PetreeB -givenName: Bettina -mail: PetreeB@8f32883a93db43f481d60f1e3715ec28.bitwarden.com -carLicense: VAYLTL -departmentNumber: 3692 -employeeType: Employee -homePhone: +1 415 756-3910 -initials: B. P. -mobile: +1 415 500-4663 -pager: +1 415 718-3972 -roomNumber: 8431 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sisile Larner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sisile Larner -sn: Larner -description: This is Sisile Larner's description -facsimileTelephoneNumber: +1 818 279-7656 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 729-1855 -title: Chief Product Development Fellow -userPassword: Password1 -uid: LarnerS -givenName: Sisile -mail: LarnerS@39906d66250a450299ac97c0daaa1661.bitwarden.com -carLicense: Y2M8RE -departmentNumber: 1270 -employeeType: Normal -homePhone: +1 818 454-3407 -initials: S. L. -mobile: +1 818 115-8840 -pager: +1 818 403-1709 -roomNumber: 9045 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roseann Sheldon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roseann Sheldon -sn: Sheldon -description: This is Roseann Sheldon's description -facsimileTelephoneNumber: +1 415 358-3994 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 476-5290 -title: Junior Peons Mascot -userPassword: Password1 -uid: SheldonR -givenName: Roseann -mail: SheldonR@7d42ba8899ef4daea01b1b9e81793953.bitwarden.com -carLicense: WTX5VI -departmentNumber: 3654 -employeeType: Contract -homePhone: +1 415 365-7218 -initials: R. S. -mobile: +1 415 401-1808 -pager: +1 415 777-8382 -roomNumber: 8584 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Irc Grona,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Irc Grona -sn: Grona -description: This is Irc Grona's description -facsimileTelephoneNumber: +1 213 550-3432 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 665-2388 -title: Junior Administrative Technician -userPassword: Password1 -uid: GronaI -givenName: Irc -mail: GronaI@816208f7d0af4f3aad2a75dc5fc86d1a.bitwarden.com -carLicense: 73CG4E -departmentNumber: 5613 -employeeType: Normal -homePhone: +1 213 755-8032 -initials: I. G. -mobile: +1 213 621-9170 -pager: +1 213 111-7745 -roomNumber: 8505 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Michael Verrenneau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michael Verrenneau -sn: Verrenneau -description: This is Michael Verrenneau's description -facsimileTelephoneNumber: +1 213 622-7959 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 802-8809 -title: Chief Payroll Director -userPassword: Password1 -uid: VerrennM -givenName: Michael -mail: VerrennM@d7b181ccc8954040a7c4160403df7781.bitwarden.com -carLicense: U9KSN9 -departmentNumber: 1603 -employeeType: Employee -homePhone: +1 213 353-4420 -initials: M. V. -mobile: +1 213 746-4837 -pager: +1 213 482-8810 -roomNumber: 9341 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Walley Gostanian,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walley Gostanian -sn: Gostanian -description: This is Walley Gostanian's description -facsimileTelephoneNumber: +1 415 576-9424 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 587-2689 -title: Master Janitorial Developer -userPassword: Password1 -uid: GostaniW -givenName: Walley -mail: GostaniW@5d8901804e424468b0bef6e0378317d6.bitwarden.com -carLicense: AURM0K -departmentNumber: 1248 -employeeType: Employee -homePhone: +1 415 234-1135 -initials: W. G. -mobile: +1 415 636-1140 -pager: +1 415 164-2820 -roomNumber: 9743 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evelien Veyrat -sn: Veyrat -description: This is Evelien Veyrat's description -facsimileTelephoneNumber: +1 213 245-7401 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 768-6776 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: VeyratE -givenName: Evelien -mail: VeyratE@9604db567a254e64976e339d21f654b1.bitwarden.com -carLicense: 7J3MED -departmentNumber: 4568 -employeeType: Normal -homePhone: +1 213 931-5398 -initials: E. V. -mobile: +1 213 669-1508 -pager: +1 213 955-6724 -roomNumber: 8091 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charyl Fulmer -sn: Fulmer -description: This is Charyl Fulmer's description -facsimileTelephoneNumber: +1 804 745-7345 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 183-5800 -title: Supreme Product Testing Sales Rep -userPassword: Password1 -uid: FulmerC -givenName: Charyl -mail: FulmerC@47b619accc2242b98a908129e561089a.bitwarden.com -carLicense: R8X0O4 -departmentNumber: 1745 -employeeType: Contract -homePhone: +1 804 771-5939 -initials: C. F. -mobile: +1 804 614-3916 -pager: +1 804 400-5986 -roomNumber: 8154 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Torrie Ramachandran -sn: Ramachandran -description: This is Torrie Ramachandran's description -facsimileTelephoneNumber: +1 415 752-2990 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 842-7083 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: RamachaT -givenName: Torrie -mail: RamachaT@9a3c3b333ac543bcbc3719d5e5f7e60a.bitwarden.com -carLicense: P4B7RI -departmentNumber: 8778 -employeeType: Contract -homePhone: +1 415 231-3193 -initials: T. R. -mobile: +1 415 503-3922 -pager: +1 415 876-4583 -roomNumber: 9642 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emogene Assistance,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emogene Assistance -sn: Assistance -description: This is Emogene Assistance's description -facsimileTelephoneNumber: +1 206 720-5469 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 810-5888 -title: Junior Management Stooge -userPassword: Password1 -uid: AssistaE -givenName: Emogene -mail: AssistaE@e3adbf44503541a8a477fd522db5f455.bitwarden.com -carLicense: O4LHFM -departmentNumber: 8346 -employeeType: Employee -homePhone: +1 206 320-6298 -initials: E. A. -mobile: +1 206 738-3449 -pager: +1 206 964-5589 -roomNumber: 9271 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Florance Berna,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florance Berna -sn: Berna -description: This is Florance Berna's description -facsimileTelephoneNumber: +1 510 206-8480 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 382-9682 -title: Chief Payroll Mascot -userPassword: Password1 -uid: BernaF -givenName: Florance -mail: BernaF@2b42e3127b664e198e679bfa6b541f42.bitwarden.com -carLicense: TYLMD6 -departmentNumber: 7362 -employeeType: Contract -homePhone: +1 510 142-1992 -initials: F. B. -mobile: +1 510 174-2119 -pager: +1 510 394-8465 -roomNumber: 9865 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Barry Holcombe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barry Holcombe -sn: Holcombe -description: This is Barry Holcombe's description -facsimileTelephoneNumber: +1 818 623-1399 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 681-1114 -title: Master Product Testing Artist -userPassword: Password1 -uid: HolcombB -givenName: Barry -mail: HolcombB@c41cc1e3b0d842d3bbad24db018def06.bitwarden.com -carLicense: 1D22X2 -departmentNumber: 1832 -employeeType: Contract -homePhone: +1 818 251-8710 -initials: B. H. -mobile: +1 818 614-1724 -pager: +1 818 531-5319 -roomNumber: 9756 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Grietje Gilstorf,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grietje Gilstorf -sn: Gilstorf -description: This is Grietje Gilstorf's description -facsimileTelephoneNumber: +1 415 241-1441 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 843-8528 -title: Junior Management Technician -userPassword: Password1 -uid: GilstorG -givenName: Grietje -mail: GilstorG@ec1b66029a6a489dbc29c0e623bfb41a.bitwarden.com -carLicense: 4F6BFJ -departmentNumber: 3022 -employeeType: Normal -homePhone: +1 415 871-6882 -initials: G. G. -mobile: +1 415 551-8364 -pager: +1 415 591-2639 -roomNumber: 8874 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Una Shang,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Una Shang -sn: Shang -description: This is Una Shang's description -facsimileTelephoneNumber: +1 415 893-3692 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 158-6376 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: ShangU -givenName: Una -mail: ShangU@923b7e20c77d4d479afa0bf52e9ff34f.bitwarden.com -carLicense: WKDYKI -departmentNumber: 6963 -employeeType: Employee -homePhone: +1 415 875-6108 -initials: U. S. -mobile: +1 415 560-5731 -pager: +1 415 705-1224 -roomNumber: 9402 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gina Pilotte,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gina Pilotte -sn: Pilotte -description: This is Gina Pilotte's description -facsimileTelephoneNumber: +1 415 212-4590 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 438-7904 -title: Chief Management Architect -userPassword: Password1 -uid: PilotteG -givenName: Gina -mail: PilotteG@c78a9a65ca75452787721ced31a98916.bitwarden.com -carLicense: FMKIB8 -departmentNumber: 5368 -employeeType: Employee -homePhone: +1 415 198-7820 -initials: G. P. -mobile: +1 415 866-6354 -pager: +1 415 115-7111 -roomNumber: 9430 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rolando Yancey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rolando Yancey -sn: Yancey -description: This is Rolando Yancey's description -facsimileTelephoneNumber: +1 213 900-9691 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 326-8182 -title: Supreme Management Stooge -userPassword: Password1 -uid: YanceyR -givenName: Rolando -mail: YanceyR@4a0e814607ef4adf977758aa230a12dd.bitwarden.com -carLicense: D6AJ3P -departmentNumber: 3511 -employeeType: Contract -homePhone: +1 213 988-6032 -initials: R. Y. -mobile: +1 213 816-7667 -pager: +1 213 224-7572 -roomNumber: 9664 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ardeen Porter,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardeen Porter -sn: Porter -description: This is Ardeen Porter's description -facsimileTelephoneNumber: +1 804 931-5077 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 365-9016 -title: Master Administrative Manager -userPassword: Password1 -uid: PorterA -givenName: Ardeen -mail: PorterA@758c49f7de6a4e8cbc4f91d054f2473b.bitwarden.com -carLicense: 821O98 -departmentNumber: 9004 -employeeType: Normal -homePhone: +1 804 127-1549 -initials: A. P. -mobile: +1 804 377-9490 -pager: +1 804 330-9600 -roomNumber: 8163 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gajendra Dery,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gajendra Dery -sn: Dery -description: This is Gajendra Dery's description -facsimileTelephoneNumber: +1 408 430-5651 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 589-7171 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: DeryG -givenName: Gajendra -mail: DeryG@06a9344fa78d4a1da0daf58ee470dc98.bitwarden.com -carLicense: NS8FG5 -departmentNumber: 6352 -employeeType: Normal -homePhone: +1 408 773-8618 -initials: G. D. -mobile: +1 408 455-3521 -pager: +1 408 818-7068 -roomNumber: 9976 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jere Jasmin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jere Jasmin -sn: Jasmin -description: This is Jere Jasmin's description -facsimileTelephoneNumber: +1 415 906-7892 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 452-1614 -title: Master Payroll Grunt -userPassword: Password1 -uid: JasminJ -givenName: Jere -mail: JasminJ@191c836466354fe5b2fec288c1d53713.bitwarden.com -carLicense: GP334J -departmentNumber: 8450 -employeeType: Contract -homePhone: +1 415 970-2819 -initials: J. J. -mobile: +1 415 321-9068 -pager: +1 415 728-1036 -roomNumber: 8465 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Caritta Verma,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caritta Verma -sn: Verma -description: This is Caritta Verma's description -facsimileTelephoneNumber: +1 206 941-7065 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 643-9935 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: VermaC -givenName: Caritta -mail: VermaC@77eb010514ae421883af972518c1a82e.bitwarden.com -carLicense: H8GVDI -departmentNumber: 4387 -employeeType: Normal -homePhone: +1 206 104-3550 -initials: C. V. -mobile: +1 206 993-3622 -pager: +1 206 465-6849 -roomNumber: 9535 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Edric Tilk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edric Tilk -sn: Tilk -description: This is Edric Tilk's description -facsimileTelephoneNumber: +1 408 782-7571 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 144-9357 -title: Supreme Administrative Czar -userPassword: Password1 -uid: TilkE -givenName: Edric -mail: TilkE@c6381227edb84dfc90689a9cc3080334.bitwarden.com -carLicense: UVAKSN -departmentNumber: 2829 -employeeType: Employee -homePhone: +1 408 153-3524 -initials: E. T. -mobile: +1 408 563-3665 -pager: +1 408 194-9600 -roomNumber: 8337 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Janelle Downes,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janelle Downes -sn: Downes -description: This is Janelle Downes's description -facsimileTelephoneNumber: +1 510 534-3735 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 746-4193 -title: Junior Administrative Admin -userPassword: Password1 -uid: DownesJ -givenName: Janelle -mail: DownesJ@e080eb242a96464dba0da1ce711ec7f1.bitwarden.com -carLicense: A3THXB -departmentNumber: 5177 -employeeType: Contract -homePhone: +1 510 144-5060 -initials: J. D. -mobile: +1 510 731-8303 -pager: +1 510 506-1566 -roomNumber: 9884 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rebeca Dicaprio,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebeca Dicaprio -sn: Dicaprio -description: This is Rebeca Dicaprio's description -facsimileTelephoneNumber: +1 206 804-8525 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 206 909-4878 -title: Junior Management Dictator -userPassword: Password1 -uid: DicapriR -givenName: Rebeca -mail: DicapriR@e33d3ed1cbf54d6c887c9e826f3363fc.bitwarden.com -carLicense: YB1S9O -departmentNumber: 8605 -employeeType: Normal -homePhone: +1 206 559-1995 -initials: R. D. -mobile: +1 206 308-7698 -pager: +1 206 849-3119 -roomNumber: 9516 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Everett Pittam,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Everett Pittam -sn: Pittam -description: This is Everett Pittam's description -facsimileTelephoneNumber: +1 408 815-8141 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 799-8979 -title: Master Product Testing President -userPassword: Password1 -uid: PittamE -givenName: Everett -mail: PittamE@d5d0e43f3dbe4e67a0afeef31a233058.bitwarden.com -carLicense: U0OT8R -departmentNumber: 5333 -employeeType: Employee -homePhone: +1 408 704-2051 -initials: E. P. -mobile: +1 408 982-2094 -pager: +1 408 944-1065 -roomNumber: 9133 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ngai Antkowiak -sn: Antkowiak -description: This is Ngai Antkowiak's description -facsimileTelephoneNumber: +1 415 511-9662 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 925-5657 -title: Master Administrative Technician -userPassword: Password1 -uid: AntkowiN -givenName: Ngai -mail: AntkowiN@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com -carLicense: LD9IRE -departmentNumber: 1068 -employeeType: Contract -homePhone: +1 415 794-7285 -initials: N. A. -mobile: +1 415 212-5816 -pager: +1 415 736-2682 -roomNumber: 8998 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Erwin Hlady,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erwin Hlady -sn: Hlady -description: This is Erwin Hlady's description -facsimileTelephoneNumber: +1 415 207-5267 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 267-3099 -title: Supreme Management Consultant -userPassword: Password1 -uid: HladyE -givenName: Erwin -mail: HladyE@7f15b04bcb6949009d518c224559328a.bitwarden.com -carLicense: 4CCKHO -departmentNumber: 3055 -employeeType: Employee -homePhone: +1 415 890-4154 -initials: E. H. -mobile: +1 415 922-5316 -pager: +1 415 428-1436 -roomNumber: 9640 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shiu Masty,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shiu Masty -sn: Masty -description: This is Shiu Masty's description -facsimileTelephoneNumber: +1 206 511-3595 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 502-7061 -title: Chief Peons Admin -userPassword: Password1 -uid: MastyS -givenName: Shiu -mail: MastyS@171799a1ff4347f880be38e1dad1f90e.bitwarden.com -carLicense: HQYSY7 -departmentNumber: 3120 -employeeType: Employee -homePhone: +1 206 831-8859 -initials: S. M. -mobile: +1 206 844-9809 -pager: +1 206 155-2595 -roomNumber: 9424 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Terrijo Roth,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terrijo Roth -sn: Roth -description: This is Terrijo Roth's description -facsimileTelephoneNumber: +1 415 200-4294 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 910-8171 -title: Chief Peons Figurehead -userPassword: Password1 -uid: RothT -givenName: Terrijo -mail: RothT@164b360781494ed5a1326bd8161f5895.bitwarden.com -carLicense: KNGUDT -departmentNumber: 4713 -employeeType: Contract -homePhone: +1 415 431-3876 -initials: T. R. -mobile: +1 415 838-6771 -pager: +1 415 610-3207 -roomNumber: 8203 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Venus Fischetti,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Venus Fischetti -sn: Fischetti -description: This is Venus Fischetti's description -facsimileTelephoneNumber: +1 510 529-4159 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 510 605-2398 -title: Associate Product Testing Developer -userPassword: Password1 -uid: FischetV -givenName: Venus -mail: FischetV@b25a6c9a4813403592f85516045bbb70.bitwarden.com -carLicense: TB73XU -departmentNumber: 5489 -employeeType: Normal -homePhone: +1 510 497-5963 -initials: V. F. -mobile: +1 510 486-5616 -pager: +1 510 190-9268 -roomNumber: 9849 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hewlet Noorani,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hewlet Noorani -sn: Noorani -description: This is Hewlet Noorani's description -facsimileTelephoneNumber: +1 213 141-6861 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 876-3611 -title: Master Administrative Developer -userPassword: Password1 -uid: NooraniH -givenName: Hewlet -mail: NooraniH@494f2548825245788f70b0629ca28b58.bitwarden.com -carLicense: K0U3AN -departmentNumber: 1145 -employeeType: Normal -homePhone: +1 213 647-3887 -initials: H. N. -mobile: +1 213 774-5384 -pager: +1 213 467-3367 -roomNumber: 8201 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hyacinth Wayler -sn: Wayler -description: This is Hyacinth Wayler's description -facsimileTelephoneNumber: +1 213 327-4975 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 397-8743 -title: Master Product Development Technician -userPassword: Password1 -uid: WaylerH -givenName: Hyacinth -mail: WaylerH@649c22a7b0164583bbf6f7f11f7746ba.bitwarden.com -carLicense: BFLOB5 -departmentNumber: 3364 -employeeType: Normal -homePhone: +1 213 688-8141 -initials: H. W. -mobile: +1 213 684-6031 -pager: +1 213 466-1008 -roomNumber: 9988 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Pansy Ochman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pansy Ochman -sn: Ochman -description: This is Pansy Ochman's description -facsimileTelephoneNumber: +1 415 168-8838 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 551-5643 -title: Supreme Product Development President -userPassword: Password1 -uid: OchmanP -givenName: Pansy -mail: OchmanP@ecd862454c8b49a4ab4dccef5a805c86.bitwarden.com -carLicense: T2T0QJ -departmentNumber: 4359 -employeeType: Employee -homePhone: +1 415 201-6217 -initials: P. O. -mobile: +1 415 879-5494 -pager: +1 415 900-8354 -roomNumber: 9214 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Henny Recabarren,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henny Recabarren -sn: Recabarren -description: This is Henny Recabarren's description -facsimileTelephoneNumber: +1 213 141-8075 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 736-3034 -title: Master Product Development Developer -userPassword: Password1 -uid: RecabarH -givenName: Henny -mail: RecabarH@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com -carLicense: YLJ1H4 -departmentNumber: 7475 -employeeType: Normal -homePhone: +1 213 537-2166 -initials: H. R. -mobile: +1 213 596-1733 -pager: +1 213 528-8065 -roomNumber: 8904 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Humberto Gottschalk,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Humberto Gottschalk -sn: Gottschalk -description: This is Humberto Gottschalk's description -facsimileTelephoneNumber: +1 415 952-5684 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 415 858-3147 -title: Associate Peons Figurehead -userPassword: Password1 -uid: GottschH -givenName: Humberto -mail: GottschH@646791cae30048e78e840ca24e142dc7.bitwarden.com -carLicense: Y3MW0M -departmentNumber: 4224 -employeeType: Normal -homePhone: +1 415 538-4002 -initials: H. G. -mobile: +1 415 218-5331 -pager: +1 415 689-9459 -roomNumber: 8590 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vernon Planthara,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vernon Planthara -sn: Planthara -description: This is Vernon Planthara's description -facsimileTelephoneNumber: +1 510 123-2328 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 663-9441 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: PlanthaV -givenName: Vernon -mail: PlanthaV@59024f397a2e4e8693b32cc8290b543c.bitwarden.com -carLicense: BAMFN4 -departmentNumber: 7990 -employeeType: Employee -homePhone: +1 510 951-4163 -initials: V. P. -mobile: +1 510 648-2851 -pager: +1 510 721-1658 -roomNumber: 8391 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Clo Upshaw,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clo Upshaw -sn: Upshaw -description: This is Clo Upshaw's description -facsimileTelephoneNumber: +1 408 130-8414 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 477-8491 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: UpshawC -givenName: Clo -mail: UpshawC@04f6d76d8e594566a6a34acb754c567c.bitwarden.com -carLicense: XGUXIG -departmentNumber: 7510 -employeeType: Employee -homePhone: +1 408 943-7859 -initials: C. U. -mobile: +1 408 314-1713 -pager: +1 408 370-6400 -roomNumber: 9093 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Afton Sykes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Afton Sykes -sn: Sykes -description: This is Afton Sykes's description -facsimileTelephoneNumber: +1 415 273-3998 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 677-7634 -title: Master Peons Visionary -userPassword: Password1 -uid: SykesA -givenName: Afton -mail: SykesA@5b18d26e867d4e609682950868db4cbf.bitwarden.com -carLicense: H9NO0U -departmentNumber: 5121 -employeeType: Contract -homePhone: +1 415 359-6146 -initials: A. S. -mobile: +1 415 926-9592 -pager: +1 415 500-8103 -roomNumber: 9547 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vesna Kowalski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vesna Kowalski -sn: Kowalski -description: This is Vesna Kowalski's description -facsimileTelephoneNumber: +1 213 245-4163 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 593-8194 -title: Associate Management Evangelist -userPassword: Password1 -uid: KowalskV -givenName: Vesna -mail: KowalskV@af93e6fe934c42b6ad84be86f4af830d.bitwarden.com -carLicense: 25MKKP -departmentNumber: 4437 -employeeType: Employee -homePhone: +1 213 240-6738 -initials: V. K. -mobile: +1 213 845-8390 -pager: +1 213 440-2667 -roomNumber: 9346 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Prissie Rintala,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prissie Rintala -sn: Rintala -description: This is Prissie Rintala's description -facsimileTelephoneNumber: +1 408 483-6942 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 522-1212 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: RintalaP -givenName: Prissie -mail: RintalaP@4985d7e0a81648efb3bc84a7fdf3691b.bitwarden.com -carLicense: IO87ET -departmentNumber: 5766 -employeeType: Contract -homePhone: +1 408 164-7783 -initials: P. R. -mobile: +1 408 852-8886 -pager: +1 408 655-4752 -roomNumber: 9949 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Virginia Telfer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Virginia Telfer -sn: Telfer -description: This is Virginia Telfer's description -facsimileTelephoneNumber: +1 415 631-2246 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 409-2618 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: TelferV -givenName: Virginia -mail: TelferV@dbc002b2cc9f41fca56ea18c0d728d15.bitwarden.com -carLicense: XPL07T -departmentNumber: 7582 -employeeType: Normal -homePhone: +1 415 721-5108 -initials: V. T. -mobile: +1 415 234-9648 -pager: +1 415 341-9500 -roomNumber: 9556 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ginette Brans,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginette Brans -sn: Brans -description: This is Ginette Brans's description -facsimileTelephoneNumber: +1 415 910-5132 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 827-4914 -title: Supreme Peons Writer -userPassword: Password1 -uid: BransG -givenName: Ginette -mail: BransG@10bb017137f049d59bb1ad7676fcda69.bitwarden.com -carLicense: Y4GYP2 -departmentNumber: 7903 -employeeType: Contract -homePhone: +1 415 114-5678 -initials: G. B. -mobile: +1 415 654-1860 -pager: +1 415 548-6989 -roomNumber: 8119 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marsie OConner,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marsie OConner -sn: OConner -description: This is Marsie OConner's description -facsimileTelephoneNumber: +1 415 596-8355 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 218-1170 -title: Associate Janitorial Director -userPassword: Password1 -uid: OConnerM -givenName: Marsie -mail: OConnerM@11c4ba17ab574f3bb46442f426b1a2c7.bitwarden.com -carLicense: 7KY8YN -departmentNumber: 9622 -employeeType: Contract -homePhone: +1 415 974-6457 -initials: M. O. -mobile: +1 415 141-1059 -pager: +1 415 308-8050 -roomNumber: 9865 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Amandip Habib,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amandip Habib -sn: Habib -description: This is Amandip Habib's description -facsimileTelephoneNumber: +1 818 239-1329 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 991-8202 -title: Master Product Testing Fellow -userPassword: Password1 -uid: HabibA -givenName: Amandip -mail: HabibA@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com -carLicense: CLL7QP -departmentNumber: 2098 -employeeType: Normal -homePhone: +1 818 400-5709 -initials: A. H. -mobile: +1 818 720-1446 -pager: +1 818 777-6062 -roomNumber: 8255 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ezella Pesik,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ezella Pesik -sn: Pesik -description: This is Ezella Pesik's description -facsimileTelephoneNumber: +1 804 704-1945 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 871-2701 -title: Master Product Development Vice President -userPassword: Password1 -uid: PesikE -givenName: Ezella -mail: PesikE@d2ec725893494e2d93ab18b2a21bf817.bitwarden.com -carLicense: 01GQ2L -departmentNumber: 4997 -employeeType: Employee -homePhone: +1 804 373-9744 -initials: E. P. -mobile: +1 804 854-9644 -pager: +1 804 947-4295 -roomNumber: 9588 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Liv Tabl,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liv Tabl -sn: Tabl -description: This is Liv Tabl's description -facsimileTelephoneNumber: +1 804 454-5856 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 418-8952 -title: Master Management Janitor -userPassword: Password1 -uid: TablL -givenName: Liv -mail: TablL@fae6cb3fc8dc4148a6266128bed876ce.bitwarden.com -carLicense: E8Y5M4 -departmentNumber: 4962 -employeeType: Normal -homePhone: +1 804 426-5644 -initials: L. T. -mobile: +1 804 651-1468 -pager: +1 804 744-3461 -roomNumber: 8383 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Joni McClarren,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joni McClarren -sn: McClarren -description: This is Joni McClarren's description -facsimileTelephoneNumber: +1 510 373-7393 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 897-6236 -title: Master Human Resources Technician -userPassword: Password1 -uid: McClarrJ -givenName: Joni -mail: McClarrJ@d13f782f99e54b11940789543670141b.bitwarden.com -carLicense: CO4H2B -departmentNumber: 3874 -employeeType: Normal -homePhone: +1 510 873-8768 -initials: J. M. -mobile: +1 510 240-6028 -pager: +1 510 851-4175 -roomNumber: 8118 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlinda Blackwood -sn: Blackwood -description: This is Arlinda Blackwood's description -facsimileTelephoneNumber: +1 818 419-5647 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 412-9005 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: BlackwoA -givenName: Arlinda -mail: BlackwoA@72b0656cb70b415ca87f666c0c859e2b.bitwarden.com -carLicense: ML6CU3 -departmentNumber: 8027 -employeeType: Contract -homePhone: +1 818 451-8242 -initials: A. B. -mobile: +1 818 391-3634 -pager: +1 818 686-5081 -roomNumber: 8197 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Leonida Stefanac,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonida Stefanac -sn: Stefanac -description: This is Leonida Stefanac's description -facsimileTelephoneNumber: +1 818 236-2772 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 818 954-8682 -title: Chief Peons Dictator -userPassword: Password1 -uid: StefanaL -givenName: Leonida -mail: StefanaL@4d36f09b6d2e498eae6cce028472d669.bitwarden.com -carLicense: W8TKU2 -departmentNumber: 7005 -employeeType: Normal -homePhone: +1 818 824-6127 -initials: L. S. -mobile: +1 818 884-8389 -pager: +1 818 691-1188 -roomNumber: 8742 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Viviyan Baird,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viviyan Baird -sn: Baird -description: This is Viviyan Baird's description -facsimileTelephoneNumber: +1 804 714-4349 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 627-5397 -title: Chief Product Development Technician -userPassword: Password1 -uid: BairdV -givenName: Viviyan -mail: BairdV@6ec1e4c42a894d9bb6d499b1b4526fa2.bitwarden.com -carLicense: H63XTA -departmentNumber: 2657 -employeeType: Contract -homePhone: +1 804 465-5464 -initials: V. B. -mobile: +1 804 667-3012 -pager: +1 804 417-6413 -roomNumber: 9463 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Robbin Meriwether,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robbin Meriwether -sn: Meriwether -description: This is Robbin Meriwether's description -facsimileTelephoneNumber: +1 206 365-9127 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 971-5714 -title: Associate Product Development Manager -userPassword: Password1 -uid: MeriwetR -givenName: Robbin -mail: MeriwetR@bdc3cbcec8a2447188118ae5b601e009.bitwarden.com -carLicense: 0AD9EN -departmentNumber: 5912 -employeeType: Contract -homePhone: +1 206 636-1963 -initials: R. M. -mobile: +1 206 207-7491 -pager: +1 206 247-6561 -roomNumber: 9738 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gwennyth Basser,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwennyth Basser -sn: Basser -description: This is Gwennyth Basser's description -facsimileTelephoneNumber: +1 213 971-4434 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 541-9577 -title: Junior Administrative Technician -userPassword: Password1 -uid: BasserG -givenName: Gwennyth -mail: BasserG@34de97baa0ba4e6e804422e1a33c9bba.bitwarden.com -carLicense: 5UGCPK -departmentNumber: 8860 -employeeType: Employee -homePhone: +1 213 138-5438 -initials: G. B. -mobile: +1 213 401-3674 -pager: +1 213 575-7107 -roomNumber: 8210 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Binh Aversa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binh Aversa -sn: Aversa -description: This is Binh Aversa's description -facsimileTelephoneNumber: +1 408 450-5693 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 959-1909 -title: Junior Payroll Dictator -userPassword: Password1 -uid: AversaB -givenName: Binh -mail: AversaB@e05752054bdf4aeabb75f365622f6480.bitwarden.com -carLicense: 1VEQTJ -departmentNumber: 2160 -employeeType: Employee -homePhone: +1 408 319-4135 -initials: B. A. -mobile: +1 408 494-8110 -pager: +1 408 679-2132 -roomNumber: 9530 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marlee Jawor,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlee Jawor -sn: Jawor -description: This is Marlee Jawor's description -facsimileTelephoneNumber: +1 206 285-1944 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 433-7031 -title: Junior Product Testing Punk -userPassword: Password1 -uid: JaworM -givenName: Marlee -mail: JaworM@bbf9c04e50a241698a5503a647ae8281.bitwarden.com -carLicense: S6M81R -departmentNumber: 4699 -employeeType: Normal -homePhone: +1 206 514-8707 -initials: M. J. -mobile: +1 206 554-4221 -pager: +1 206 703-3990 -roomNumber: 8095 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Antonio Risdal,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antonio Risdal -sn: Risdal -description: This is Antonio Risdal's description -facsimileTelephoneNumber: +1 206 107-3493 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 537-6520 -title: Chief Product Testing President -userPassword: Password1 -uid: RisdalA -givenName: Antonio -mail: RisdalA@b18734eaf31b4b8a9fcf2accdab91823.bitwarden.com -carLicense: MVIW8M -departmentNumber: 8856 -employeeType: Normal -homePhone: +1 206 197-8263 -initials: A. R. -mobile: +1 206 282-9207 -pager: +1 206 313-2803 -roomNumber: 8563 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dieter Dickinson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dieter Dickinson -sn: Dickinson -description: This is Dieter Dickinson's description -facsimileTelephoneNumber: +1 213 573-4315 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 583-4270 -title: Supreme Peons Evangelist -userPassword: Password1 -uid: DickinsD -givenName: Dieter -mail: DickinsD@869bcf8a299b41b19a933afcb83f9250.bitwarden.com -carLicense: PDWGUP -departmentNumber: 6204 -employeeType: Contract -homePhone: +1 213 114-5787 -initials: D. D. -mobile: +1 213 665-9155 -pager: +1 213 265-6871 -roomNumber: 9104 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gilda Shnay,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilda Shnay -sn: Shnay -description: This is Gilda Shnay's description -facsimileTelephoneNumber: +1 213 688-7331 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 583-5497 -title: Junior Product Development Czar -userPassword: Password1 -uid: ShnayG -givenName: Gilda -mail: ShnayG@e6981380e68944d6b1fabbe651d0a66a.bitwarden.com -carLicense: XG3LAS -departmentNumber: 9039 -employeeType: Contract -homePhone: +1 213 527-9735 -initials: G. S. -mobile: +1 213 736-4984 -pager: +1 213 607-1244 -roomNumber: 8795 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Agnese Herrington,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnese Herrington -sn: Herrington -description: This is Agnese Herrington's description -facsimileTelephoneNumber: +1 408 645-5067 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 673-8744 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: HerringA -givenName: Agnese -mail: HerringA@5e097b6f4fcc40c7a34c83f921520553.bitwarden.com -carLicense: BEQWLY -departmentNumber: 7959 -employeeType: Employee -homePhone: +1 408 534-8865 -initials: A. H. -mobile: +1 408 953-8524 -pager: +1 408 520-2633 -roomNumber: 9797 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rebekkah Meleski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebekkah Meleski -sn: Meleski -description: This is Rebekkah Meleski's description -facsimileTelephoneNumber: +1 408 795-7737 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 566-5525 -title: Supreme Peons Evangelist -userPassword: Password1 -uid: MeleskiR -givenName: Rebekkah -mail: MeleskiR@7342ff3b405b4e4cae02a437b3fc6bca.bitwarden.com -carLicense: 9V05OE -departmentNumber: 9636 -employeeType: Normal -homePhone: +1 408 367-5403 -initials: R. M. -mobile: +1 408 813-6137 -pager: +1 408 734-8221 -roomNumber: 9000 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Noelyn Blander,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noelyn Blander -sn: Blander -description: This is Noelyn Blander's description -facsimileTelephoneNumber: +1 510 385-9194 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 101-4256 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: BlanderN -givenName: Noelyn -mail: BlanderN@a074c5229e6741c19f43f776155a3d03.bitwarden.com -carLicense: WAEEPG -departmentNumber: 4454 -employeeType: Contract -homePhone: +1 510 272-4819 -initials: N. B. -mobile: +1 510 812-2984 -pager: +1 510 483-2579 -roomNumber: 9288 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tamera Rennie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamera Rennie -sn: Rennie -description: This is Tamera Rennie's description -facsimileTelephoneNumber: +1 408 924-3839 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 456-4507 -title: Associate Payroll Assistant -userPassword: Password1 -uid: RennieT -givenName: Tamera -mail: RennieT@14a50969231442b7a4661f1630e8f16c.bitwarden.com -carLicense: T13JV0 -departmentNumber: 4366 -employeeType: Contract -homePhone: +1 408 986-5735 -initials: T. R. -mobile: +1 408 412-7992 -pager: +1 408 515-4441 -roomNumber: 8480 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Portia Cruzado,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Portia Cruzado -sn: Cruzado -description: This is Portia Cruzado's description -facsimileTelephoneNumber: +1 206 418-8598 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 716-7414 -title: Junior Administrative Writer -userPassword: Password1 -uid: CruzadoP -givenName: Portia -mail: CruzadoP@fe60fc6c21f046639fc69fd725ace3ee.bitwarden.com -carLicense: CR3N6K -departmentNumber: 7049 -employeeType: Employee -homePhone: +1 206 988-9166 -initials: P. C. -mobile: +1 206 724-3414 -pager: +1 206 335-1219 -roomNumber: 8993 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Robinett Samson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinett Samson -sn: Samson -description: This is Robinett Samson's description -facsimileTelephoneNumber: +1 510 611-9010 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 510 312-4666 -title: Master Payroll Manager -userPassword: Password1 -uid: SamsonR -givenName: Robinett -mail: SamsonR@b0365da8cd3b4eef9d2acb818f1cbef0.bitwarden.com -carLicense: L1B43A -departmentNumber: 9775 -employeeType: Employee -homePhone: +1 510 230-6289 -initials: R. S. -mobile: +1 510 750-5083 -pager: +1 510 954-8079 -roomNumber: 8538 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelcey Potvin -sn: Potvin -description: This is Kelcey Potvin's description -facsimileTelephoneNumber: +1 415 752-3602 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 415 494-5567 -title: Associate Product Testing Evangelist -userPassword: Password1 -uid: PotvinK -givenName: Kelcey -mail: PotvinK@a199f75806e043a29f88f2704ef795cb.bitwarden.com -carLicense: B5O7N9 -departmentNumber: 6167 -employeeType: Normal -homePhone: +1 415 218-4300 -initials: K. P. -mobile: +1 415 877-3763 -pager: +1 415 133-3420 -roomNumber: 9325 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coleman Jeavons -sn: Jeavons -description: This is Coleman Jeavons's description -facsimileTelephoneNumber: +1 804 752-3748 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 719-1472 -title: Chief Human Resources Vice President -userPassword: Password1 -uid: JeavonsC -givenName: Coleman -mail: JeavonsC@66856639d6224561b9d5baf4deda51d9.bitwarden.com -carLicense: 0SKS73 -departmentNumber: 1449 -employeeType: Employee -homePhone: +1 804 198-6017 -initials: C. J. -mobile: +1 804 470-1935 -pager: +1 804 592-2880 -roomNumber: 8923 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sherman Frodsham,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherman Frodsham -sn: Frodsham -description: This is Sherman Frodsham's description -facsimileTelephoneNumber: +1 415 120-6167 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 890-7446 -title: Master Administrative President -userPassword: Password1 -uid: FrodshaS -givenName: Sherman -mail: FrodshaS@d71f931e88694d74b88e32769af98e29.bitwarden.com -carLicense: KSGUHJ -departmentNumber: 7358 -employeeType: Contract -homePhone: +1 415 702-9506 -initials: S. F. -mobile: +1 415 939-3626 -pager: +1 415 526-7500 -roomNumber: 9354 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maury Jansen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maury Jansen -sn: Jansen -description: This is Maury Jansen's description -facsimileTelephoneNumber: +1 818 915-1725 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 193-3790 -title: Chief Management Janitor -userPassword: Password1 -uid: JansenM -givenName: Maury -mail: JansenM@0e3cc15d16b54ddeae75d206f48f1204.bitwarden.com -carLicense: PD93RX -departmentNumber: 2690 -employeeType: Contract -homePhone: +1 818 982-2655 -initials: M. J. -mobile: +1 818 330-7998 -pager: +1 818 673-4984 -roomNumber: 8791 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tilly Ocampo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilly Ocampo -sn: Ocampo -description: This is Tilly Ocampo's description -facsimileTelephoneNumber: +1 408 973-8293 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 597-2641 -title: Master Payroll President -userPassword: Password1 -uid: OcampoT -givenName: Tilly -mail: OcampoT@3ad345248df74d59a3ad7d7cbfe0100d.bitwarden.com -carLicense: IF9HKP -departmentNumber: 2822 -employeeType: Employee -homePhone: +1 408 321-5491 -initials: T. O. -mobile: +1 408 359-1368 -pager: +1 408 447-4035 -roomNumber: 9834 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Pauli Capes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pauli Capes -sn: Capes -description: This is Pauli Capes's description -facsimileTelephoneNumber: +1 415 607-5198 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 415 911-9466 -title: Supreme Human Resources Director -userPassword: Password1 -uid: CapesP -givenName: Pauli -mail: CapesP@6a7058ac13d642658b7f7adc5e875217.bitwarden.com -carLicense: 3B3GGI -departmentNumber: 4430 -employeeType: Contract -homePhone: +1 415 310-1567 -initials: P. C. -mobile: +1 415 737-9810 -pager: +1 415 259-9322 -roomNumber: 9291 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Augusta Subick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Augusta Subick -sn: Subick -description: This is Augusta Subick's description -facsimileTelephoneNumber: +1 818 508-2913 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 164-1406 -title: Supreme Payroll Consultant -userPassword: Password1 -uid: SubickA -givenName: Augusta -mail: SubickA@ce6ea378c27b45efb4f43990327ef994.bitwarden.com -carLicense: 01QLWP -departmentNumber: 3650 -employeeType: Contract -homePhone: +1 818 587-3757 -initials: A. S. -mobile: +1 818 435-5883 -pager: +1 818 529-1864 -roomNumber: 9303 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jastinder Gysel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jastinder Gysel -sn: Gysel -description: This is Jastinder Gysel's description -facsimileTelephoneNumber: +1 818 226-4296 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 713-2301 -title: Master Administrative Developer -userPassword: Password1 -uid: GyselJ -givenName: Jastinder -mail: GyselJ@38743dc2a7284707827cb55c3c04b77c.bitwarden.com -carLicense: UYM0DF -departmentNumber: 5757 -employeeType: Employee -homePhone: +1 818 583-8410 -initials: J. G. -mobile: +1 818 409-6334 -pager: +1 818 588-3439 -roomNumber: 9424 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jason Loveless,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jason Loveless -sn: Loveless -description: This is Jason Loveless's description -facsimileTelephoneNumber: +1 804 268-5793 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 513-2756 -title: Master Human Resources Warrior -userPassword: Password1 -uid: LovelesJ -givenName: Jason -mail: LovelesJ@3f957af8403b44cda402864b6bf1f589.bitwarden.com -carLicense: DOF1AI -departmentNumber: 1462 -employeeType: Employee -homePhone: +1 804 242-7559 -initials: J. L. -mobile: +1 804 811-5333 -pager: +1 804 936-8692 -roomNumber: 9265 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pamella Trudel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pamella Trudel -sn: Trudel -description: This is Pamella Trudel's description -facsimileTelephoneNumber: +1 510 176-2807 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 510 344-4960 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: TrudelP -givenName: Pamella -mail: TrudelP@acaf00cd94184334a88c04c02dc188dd.bitwarden.com -carLicense: NGG4NI -departmentNumber: 8363 -employeeType: Employee -homePhone: +1 510 266-1835 -initials: P. T. -mobile: +1 510 566-9806 -pager: +1 510 956-2541 -roomNumber: 9800 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lucina Volfe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucina Volfe -sn: Volfe -description: This is Lucina Volfe's description -facsimileTelephoneNumber: +1 818 307-9445 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 818 378-9806 -title: Supreme Payroll Mascot -userPassword: Password1 -uid: VolfeL -givenName: Lucina -mail: VolfeL@875af3604a224bc0adcaa7037f12ca60.bitwarden.com -carLicense: U9MGQU -departmentNumber: 8485 -employeeType: Normal -homePhone: +1 818 844-7033 -initials: L. V. -mobile: +1 818 172-8330 -pager: +1 818 267-3909 -roomNumber: 9720 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sheena Chung,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheena Chung -sn: Chung -description: This is Sheena Chung's description -facsimileTelephoneNumber: +1 213 721-5363 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 341-5262 -title: Associate Product Testing Technician -userPassword: Password1 -uid: ChungS -givenName: Sheena -mail: ChungS@8d3c44ed2e3e425b88258d14938dfd7c.bitwarden.com -carLicense: VIOAWS -departmentNumber: 4802 -employeeType: Normal -homePhone: +1 213 280-5813 -initials: S. C. -mobile: +1 213 801-3731 -pager: +1 213 130-8616 -roomNumber: 8944 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Andriana Myers,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andriana Myers -sn: Myers -description: This is Andriana Myers's description -facsimileTelephoneNumber: +1 206 596-6400 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 341-5955 -title: Junior Janitorial Writer -userPassword: Password1 -uid: MyersA -givenName: Andriana -mail: MyersA@4d2b6aeb52944f46890dd70951e65aa3.bitwarden.com -carLicense: 1QDWSB -departmentNumber: 7282 -employeeType: Normal -homePhone: +1 206 741-8685 -initials: A. M. -mobile: +1 206 122-1151 -pager: +1 206 536-8083 -roomNumber: 9567 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lourdes Rossanese -sn: Rossanese -description: This is Lourdes Rossanese's description -facsimileTelephoneNumber: +1 818 222-4726 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 676-5912 -title: Junior Human Resources Consultant -userPassword: Password1 -uid: RossaneL -givenName: Lourdes -mail: RossaneL@ab5a3e15caae4984acf7b1a615995a84.bitwarden.com -carLicense: 8Q17JT -departmentNumber: 4515 -employeeType: Contract -homePhone: +1 818 814-1708 -initials: L. R. -mobile: +1 818 246-2936 -pager: +1 818 123-9015 -roomNumber: 9683 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Henk Goin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henk Goin -sn: Goin -description: This is Henk Goin's description -facsimileTelephoneNumber: +1 213 427-1899 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 801-3647 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: GoinH -givenName: Henk -mail: GoinH@d457e1580197417888cc4a9c93599471.bitwarden.com -carLicense: LT30U4 -departmentNumber: 5393 -employeeType: Employee -homePhone: +1 213 810-9500 -initials: H. G. -mobile: +1 213 738-4925 -pager: +1 213 528-6577 -roomNumber: 8812 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cesar Rabecs -sn: Rabecs -description: This is Cesar Rabecs's description -facsimileTelephoneNumber: +1 206 182-5419 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 376-5660 -title: Chief Product Testing Dictator -userPassword: Password1 -uid: RabecsC -givenName: Cesar -mail: RabecsC@a38a54d93a9a4ec1a621a87e5a204d4b.bitwarden.com -carLicense: K6G8DD -departmentNumber: 5271 -employeeType: Normal -homePhone: +1 206 486-1555 -initials: C. R. -mobile: +1 206 106-4552 -pager: +1 206 265-2579 -roomNumber: 8234 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamma Parkhill -sn: Parkhill -description: This is Tamma Parkhill's description -facsimileTelephoneNumber: +1 510 476-3321 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 479-4893 -title: Junior Product Testing Writer -userPassword: Password1 -uid: ParkhilT -givenName: Tamma -mail: ParkhilT@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com -carLicense: 83PM9W -departmentNumber: 5588 -employeeType: Normal -homePhone: +1 510 687-8282 -initials: T. P. -mobile: +1 510 106-4819 -pager: +1 510 167-2886 -roomNumber: 9605 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Leese DeWiele,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leese DeWiele -sn: DeWiele -description: This is Leese DeWiele's description -facsimileTelephoneNumber: +1 804 337-5744 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 378-2949 -title: Supreme Administrative Director -userPassword: Password1 -uid: DeWieleL -givenName: Leese -mail: DeWieleL@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com -carLicense: N5L96Y -departmentNumber: 2754 -employeeType: Normal -homePhone: +1 804 851-8820 -initials: L. D. -mobile: +1 804 164-4707 -pager: +1 804 982-6467 -roomNumber: 8217 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrzej Carrillo -sn: Carrillo -description: This is Andrzej Carrillo's description -facsimileTelephoneNumber: +1 818 807-3448 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 589-9312 -title: Master Janitorial Artist -userPassword: Password1 -uid: CarrillA -givenName: Andrzej -mail: CarrillA@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com -carLicense: FBG6MN -departmentNumber: 6599 -employeeType: Employee -homePhone: +1 818 732-2185 -initials: A. C. -mobile: +1 818 554-5342 -pager: +1 818 803-1673 -roomNumber: 8105 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Emp Lenior,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emp Lenior -sn: Lenior -description: This is Emp Lenior's description -facsimileTelephoneNumber: +1 213 349-9257 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 188-9716 -title: Junior Administrative Grunt -userPassword: Password1 -uid: LeniorE -givenName: Emp -mail: LeniorE@78455201418b4eda8d1307aa8e77e3d6.bitwarden.com -carLicense: 8T3JEE -departmentNumber: 6211 -employeeType: Employee -homePhone: +1 213 341-5762 -initials: E. L. -mobile: +1 213 379-5699 -pager: +1 213 226-5492 -roomNumber: 9024 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorine Skaret,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorine Skaret -sn: Skaret -description: This is Lorine Skaret's description -facsimileTelephoneNumber: +1 804 327-2783 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 910-5977 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: SkaretL -givenName: Lorine -mail: SkaretL@1ab5e46ea4fb40b292686a380747c794.bitwarden.com -carLicense: ANRL7K -departmentNumber: 6947 -employeeType: Contract -homePhone: +1 804 510-5714 -initials: L. S. -mobile: +1 804 182-3634 -pager: +1 804 499-5026 -roomNumber: 9611 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rora Duthie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rora Duthie -sn: Duthie -description: This is Rora Duthie's description -facsimileTelephoneNumber: +1 213 287-7645 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 213 518-5557 -title: Supreme Product Development Pinhead -userPassword: Password1 -uid: DuthieR -givenName: Rora -mail: DuthieR@127f75e34fa94456a07c8ec8f332f580.bitwarden.com -carLicense: WK5QJA -departmentNumber: 4410 -employeeType: Normal -homePhone: +1 213 232-2302 -initials: R. D. -mobile: +1 213 603-6981 -pager: +1 213 615-3228 -roomNumber: 8468 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aubrette Carlson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aubrette Carlson -sn: Carlson -description: This is Aubrette Carlson's description -facsimileTelephoneNumber: +1 206 197-4223 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 580-4369 -title: Master Peons Artist -userPassword: Password1 -uid: CarlsonA -givenName: Aubrette -mail: CarlsonA@2c0f47a97a024956922ed080c07c7087.bitwarden.com -carLicense: H7XFBK -departmentNumber: 4574 -employeeType: Employee -homePhone: +1 206 575-2593 -initials: A. C. -mobile: +1 206 813-5345 -pager: +1 206 373-3995 -roomNumber: 9275 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Delisle Moledina,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delisle Moledina -sn: Moledina -description: This is Delisle Moledina's description -facsimileTelephoneNumber: +1 804 343-4369 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 690-8023 -title: Supreme Management Czar -userPassword: Password1 -uid: MoledinD -givenName: Delisle -mail: MoledinD@7aa27c58a55f473b92a9bea4edfa7790.bitwarden.com -carLicense: HH76OS -departmentNumber: 1409 -employeeType: Contract -homePhone: +1 804 941-2070 -initials: D. M. -mobile: +1 804 754-7655 -pager: +1 804 612-3272 -roomNumber: 9056 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chloris Fogle,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chloris Fogle -sn: Fogle -description: This is Chloris Fogle's description -facsimileTelephoneNumber: +1 510 713-1732 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 510 146-5450 -title: Chief Payroll Admin -userPassword: Password1 -uid: FogleC -givenName: Chloris -mail: FogleC@c925a785cc914f7896a342038a540076.bitwarden.com -carLicense: O27JD2 -departmentNumber: 4599 -employeeType: Normal -homePhone: +1 510 143-6749 -initials: C. F. -mobile: +1 510 283-8075 -pager: +1 510 428-9281 -roomNumber: 9621 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hadria Keung,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hadria Keung -sn: Keung -description: This is Hadria Keung's description -facsimileTelephoneNumber: +1 818 774-6844 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 204-1923 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: KeungH -givenName: Hadria -mail: KeungH@c8f486d27e8b44169d6f371867433900.bitwarden.com -carLicense: UAW4WH -departmentNumber: 6319 -employeeType: Normal -homePhone: +1 818 229-5002 -initials: H. K. -mobile: +1 818 117-9662 -pager: +1 818 310-4368 -roomNumber: 9787 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sarena Sandhar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarena Sandhar -sn: Sandhar -description: This is Sarena Sandhar's description -facsimileTelephoneNumber: +1 415 393-2790 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 475-3359 -title: Master Product Development Vice President -userPassword: Password1 -uid: SandharS -givenName: Sarena -mail: SandharS@6994ff306ef64425a30543b5e9a42d04.bitwarden.com -carLicense: 0QHY2Q -departmentNumber: 1697 -employeeType: Normal -homePhone: +1 415 448-7568 -initials: S. S. -mobile: +1 415 792-5410 -pager: +1 415 996-4454 -roomNumber: 8898 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shina Vilhan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shina Vilhan -sn: Vilhan -description: This is Shina Vilhan's description -facsimileTelephoneNumber: +1 213 228-2801 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 321-1043 -title: Chief Human Resources Mascot -userPassword: Password1 -uid: VilhanS -givenName: Shina -mail: VilhanS@a50159dd57124aa194b68385c74dfad6.bitwarden.com -carLicense: 3ASMAK -departmentNumber: 6448 -employeeType: Normal -homePhone: +1 213 521-8349 -initials: S. V. -mobile: +1 213 911-5642 -pager: +1 213 987-7083 -roomNumber: 8502 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Candace Nadler,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candace Nadler -sn: Nadler -description: This is Candace Nadler's description -facsimileTelephoneNumber: +1 415 350-4681 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 415 139-3344 -title: Associate Human Resources Punk -userPassword: Password1 -uid: NadlerC -givenName: Candace -mail: NadlerC@1f029313d9f242ecbc83d4ed5e9cc00f.bitwarden.com -carLicense: W9XSDB -departmentNumber: 2510 -employeeType: Employee -homePhone: +1 415 839-2416 -initials: C. N. -mobile: +1 415 841-9598 -pager: +1 415 125-8063 -roomNumber: 8038 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Osiris Rtpbuild,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Osiris Rtpbuild -sn: Rtpbuild -description: This is Osiris Rtpbuild's description -facsimileTelephoneNumber: +1 818 297-6173 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 818 702-6253 -title: Associate Management Janitor -userPassword: Password1 -uid: RtpbuilO -givenName: Osiris -mail: RtpbuilO@d223bf95e305408f8ce65e186425ec5a.bitwarden.com -carLicense: IXPA70 -departmentNumber: 6518 -employeeType: Employee -homePhone: +1 818 702-7445 -initials: O. R. -mobile: +1 818 331-4669 -pager: +1 818 775-7016 -roomNumber: 8791 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Patt Lampe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patt Lampe -sn: Lampe -description: This is Patt Lampe's description -facsimileTelephoneNumber: +1 510 911-9779 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 536-2260 -title: Junior Payroll Czar -userPassword: Password1 -uid: LampeP -givenName: Patt -mail: LampeP@fb51e4746fc04473a7bebe9c1a3d6645.bitwarden.com -carLicense: CCVHIG -departmentNumber: 4324 -employeeType: Normal -homePhone: +1 510 737-3275 -initials: P. L. -mobile: +1 510 409-9914 -pager: +1 510 545-4160 -roomNumber: 9234 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ola Fricks,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ola Fricks -sn: Fricks -description: This is Ola Fricks's description -facsimileTelephoneNumber: +1 206 902-9476 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 569-6764 -title: Junior Management Admin -userPassword: Password1 -uid: FricksO -givenName: Ola -mail: FricksO@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com -carLicense: 93OS5M -departmentNumber: 2875 -employeeType: Employee -homePhone: +1 206 623-7946 -initials: O. F. -mobile: +1 206 921-9818 -pager: +1 206 874-3066 -roomNumber: 9786 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jobie Brassem,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jobie Brassem -sn: Brassem -description: This is Jobie Brassem's description -facsimileTelephoneNumber: +1 206 590-3400 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 690-1803 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: BrassemJ -givenName: Jobie -mail: BrassemJ@da5a908240674035b4f089697eec14f2.bitwarden.com -carLicense: IVQF6W -departmentNumber: 8653 -employeeType: Employee -homePhone: +1 206 226-7677 -initials: J. B. -mobile: +1 206 843-6538 -pager: +1 206 752-6963 -roomNumber: 9507 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Amarjit Shull,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amarjit Shull -sn: Shull -description: This is Amarjit Shull's description -facsimileTelephoneNumber: +1 510 872-2518 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 814-1030 -title: Associate Management Artist -userPassword: Password1 -uid: ShullA -givenName: Amarjit -mail: ShullA@33e3d5f7842a441e967a49435691d7e1.bitwarden.com -carLicense: VMGBT9 -departmentNumber: 2941 -employeeType: Normal -homePhone: +1 510 847-3610 -initials: A. S. -mobile: +1 510 525-5244 -pager: +1 510 676-1741 -roomNumber: 9069 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elysee Maenpaa -sn: Maenpaa -description: This is Elysee Maenpaa's description -facsimileTelephoneNumber: +1 213 452-6288 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 213 535-5649 -title: Master Payroll Manager -userPassword: Password1 -uid: MaenpaaE -givenName: Elysee -mail: MaenpaaE@fcff654db86140cbab4aa071c0d40b07.bitwarden.com -carLicense: TAP3KB -departmentNumber: 4322 -employeeType: Employee -homePhone: +1 213 189-7681 -initials: E. M. -mobile: +1 213 783-2873 -pager: +1 213 831-7596 -roomNumber: 8521 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marriet Grau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marriet Grau -sn: Grau -description: This is Marriet Grau's description -facsimileTelephoneNumber: +1 818 167-7160 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 892-8514 -title: Master Peons Pinhead -userPassword: Password1 -uid: GrauM -givenName: Marriet -mail: GrauM@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com -carLicense: 2XTH1S -departmentNumber: 4826 -employeeType: Normal -homePhone: +1 818 127-3698 -initials: M. G. -mobile: +1 818 938-8292 -pager: +1 818 356-9653 -roomNumber: 8332 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kellsie Tilmon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kellsie Tilmon -sn: Tilmon -description: This is Kellsie Tilmon's description -facsimileTelephoneNumber: +1 510 488-2413 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 133-6562 -title: Associate Management Technician -userPassword: Password1 -uid: TilmonK -givenName: Kellsie -mail: TilmonK@b0ec022ac74f4073806f06ef760d43a1.bitwarden.com -carLicense: TB68HS -departmentNumber: 9977 -employeeType: Normal -homePhone: +1 510 471-5599 -initials: K. T. -mobile: +1 510 265-6602 -pager: +1 510 869-8093 -roomNumber: 9648 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Deloria Tulk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deloria Tulk -sn: Tulk -description: This is Deloria Tulk's description -facsimileTelephoneNumber: +1 415 188-2888 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 472-5700 -title: Chief Janitorial Visionary -userPassword: Password1 -uid: TulkD -givenName: Deloria -mail: TulkD@dd51cc0eafb644c3952bfc8183b9acd1.bitwarden.com -carLicense: X7Q25K -departmentNumber: 6341 -employeeType: Contract -homePhone: +1 415 473-6625 -initials: D. T. -mobile: +1 415 189-4234 -pager: +1 415 218-6433 -roomNumber: 9942 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Julianna Towsley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julianna Towsley -sn: Towsley -description: This is Julianna Towsley's description -facsimileTelephoneNumber: +1 206 611-3977 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 190-3266 -title: Associate Peons Admin -userPassword: Password1 -uid: TowsleyJ -givenName: Julianna -mail: TowsleyJ@dd31f4ea6f0c44f4aa5f46684ef66e9a.bitwarden.com -carLicense: 4IMQU7 -departmentNumber: 6631 -employeeType: Contract -homePhone: +1 206 977-4675 -initials: J. T. -mobile: +1 206 896-3138 -pager: +1 206 252-4098 -roomNumber: 8683 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Power Surazski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Power Surazski -sn: Surazski -description: This is Power Surazski's description -facsimileTelephoneNumber: +1 818 173-6252 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 584-5809 -title: Associate Administrative Grunt -userPassword: Password1 -uid: SurazskP -givenName: Power -mail: SurazskP@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com -carLicense: BQPGE8 -departmentNumber: 6764 -employeeType: Normal -homePhone: +1 818 640-8873 -initials: P. S. -mobile: +1 818 255-8362 -pager: +1 818 766-5590 -roomNumber: 9564 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=YueMin Dube,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YueMin Dube -sn: Dube -description: This is YueMin Dube's description -facsimileTelephoneNumber: +1 415 937-8985 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 719-5703 -title: Chief Peons Admin -userPassword: Password1 -uid: DubeY -givenName: YueMin -mail: DubeY@e54368d6007d4c1ebda0848d18470ef4.bitwarden.com -carLicense: GNC7S4 -departmentNumber: 3167 -employeeType: Employee -homePhone: +1 415 205-5725 -initials: Y. D. -mobile: +1 415 579-4816 -pager: +1 415 876-5555 -roomNumber: 9108 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gerald Hamel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerald Hamel -sn: Hamel -description: This is Gerald Hamel's description -facsimileTelephoneNumber: +1 510 212-9437 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 373-5021 -title: Associate Management Vice President -userPassword: Password1 -uid: HamelG -givenName: Gerald -mail: HamelG@28fab2a5e4034ede9d4f584a0fd75e72.bitwarden.com -carLicense: G909HR -departmentNumber: 2951 -employeeType: Normal -homePhone: +1 510 402-1290 -initials: G. H. -mobile: +1 510 100-4537 -pager: +1 510 984-3390 -roomNumber: 8860 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cami Hanley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cami Hanley -sn: Hanley -description: This is Cami Hanley's description -facsimileTelephoneNumber: +1 206 840-8286 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 206 931-3898 -title: Associate Janitorial President -userPassword: Password1 -uid: HanleyC -givenName: Cami -mail: HanleyC@ce001280b666479eb0eb4d06e9257b27.bitwarden.com -carLicense: O0C1JD -departmentNumber: 9060 -employeeType: Employee -homePhone: +1 206 777-1861 -initials: C. H. -mobile: +1 206 167-7653 -pager: +1 206 580-9289 -roomNumber: 9572 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shigeki Sharpe -sn: Sharpe -description: This is Shigeki Sharpe's description -facsimileTelephoneNumber: +1 213 545-8577 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 819-4685 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: SharpeS -givenName: Shigeki -mail: SharpeS@8a8d1631964049f182939e971c150026.bitwarden.com -carLicense: 1DY36K -departmentNumber: 1368 -employeeType: Normal -homePhone: +1 213 388-1614 -initials: S. S. -mobile: +1 213 172-5317 -pager: +1 213 971-8426 -roomNumber: 9194 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Silvana Barakat,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silvana Barakat -sn: Barakat -description: This is Silvana Barakat's description -facsimileTelephoneNumber: +1 804 507-3463 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 414-1054 -title: Supreme Administrative Czar -userPassword: Password1 -uid: BarakatS -givenName: Silvana -mail: BarakatS@7e7a2a61072144f1bbb5c3973fb03067.bitwarden.com -carLicense: FGD9I5 -departmentNumber: 9707 -employeeType: Normal -homePhone: +1 804 358-6829 -initials: S. B. -mobile: +1 804 689-4110 -pager: +1 804 668-6908 -roomNumber: 9147 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maxey Bulman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maxey Bulman -sn: Bulman -description: This is Maxey Bulman's description -facsimileTelephoneNumber: +1 213 115-5366 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 818-8365 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: BulmanM -givenName: Maxey -mail: BulmanM@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com -carLicense: 1SFAEQ -departmentNumber: 5617 -employeeType: Employee -homePhone: +1 213 737-4602 -initials: M. B. -mobile: +1 213 164-3919 -pager: +1 213 328-3327 -roomNumber: 8221 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigitta Shalmon -sn: Shalmon -description: This is Brigitta Shalmon's description -facsimileTelephoneNumber: +1 408 711-5359 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 253-3491 -title: Chief Payroll Warrior -userPassword: Password1 -uid: ShalmonB -givenName: Brigitta -mail: ShalmonB@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com -carLicense: UQYTNG -departmentNumber: 4325 -employeeType: Normal -homePhone: +1 408 601-6361 -initials: B. S. -mobile: +1 408 861-5930 -pager: +1 408 240-4563 -roomNumber: 9640 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dzung Newsom,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dzung Newsom -sn: Newsom -description: This is Dzung Newsom's description -facsimileTelephoneNumber: +1 213 185-9615 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 245-7300 -title: Supreme Administrative Developer -userPassword: Password1 -uid: NewsomD -givenName: Dzung -mail: NewsomD@726081298eb8483da69721764554f8d6.bitwarden.com -carLicense: 4YP1R8 -departmentNumber: 6055 -employeeType: Contract -homePhone: +1 213 721-2501 -initials: D. N. -mobile: +1 213 826-9527 -pager: +1 213 507-9584 -roomNumber: 9916 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mats DMSDB,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mats DMSDB -sn: DMSDB -description: This is Mats DMSDB's description -facsimileTelephoneNumber: +1 415 864-5728 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 362-1222 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: DMSDBM -givenName: Mats -mail: DMSDBM@ddab05ea50514da6944e78ee5d4888e8.bitwarden.com -carLicense: V64LW3 -departmentNumber: 5493 -employeeType: Contract -homePhone: +1 415 204-3439 -initials: M. D. -mobile: +1 415 430-3991 -pager: +1 415 362-8486 -roomNumber: 8124 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shigeru McElhone -sn: McElhone -description: This is Shigeru McElhone's description -facsimileTelephoneNumber: +1 804 168-1728 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 561-5375 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: McElhonS -givenName: Shigeru -mail: McElhonS@d0a3070a29b14a28b31681edd00fc298.bitwarden.com -carLicense: LR66J6 -departmentNumber: 7052 -employeeType: Normal -homePhone: +1 804 851-8043 -initials: S. M. -mobile: +1 804 712-9036 -pager: +1 804 987-1165 -roomNumber: 9917 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harrietta Cetraro -sn: Cetraro -description: This is Harrietta Cetraro's description -facsimileTelephoneNumber: +1 415 738-4302 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 839-4061 -title: Chief Payroll Mascot -userPassword: Password1 -uid: CetraroH -givenName: Harrietta -mail: CetraroH@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com -carLicense: H2G7M9 -departmentNumber: 8504 -employeeType: Employee -homePhone: +1 415 164-7286 -initials: H. C. -mobile: +1 415 679-9788 -pager: +1 415 839-9076 -roomNumber: 8658 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kevyn Minai,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kevyn Minai -sn: Minai -description: This is Kevyn Minai's description -facsimileTelephoneNumber: +1 818 259-4373 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 489-1969 -title: Master Management Sales Rep -userPassword: Password1 -uid: MinaiK -givenName: Kevyn -mail: MinaiK@67a9d61944244b79b04665b16e622d77.bitwarden.com -carLicense: BEW6VF -departmentNumber: 3187 -employeeType: Employee -homePhone: +1 818 129-2949 -initials: K. M. -mobile: +1 818 764-3842 -pager: +1 818 736-4433 -roomNumber: 8248 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dhanvinder Biss,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhanvinder Biss -sn: Biss -description: This is Dhanvinder Biss's description -facsimileTelephoneNumber: +1 804 625-8318 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 126-9099 -title: Associate Peons Writer -userPassword: Password1 -uid: BissD -givenName: Dhanvinder -mail: BissD@b838776a11e74718955f6601c7f8d1e7.bitwarden.com -carLicense: G5C3TA -departmentNumber: 6203 -employeeType: Employee -homePhone: +1 804 120-1865 -initials: D. B. -mobile: +1 804 269-5403 -pager: +1 804 238-4286 -roomNumber: 9156 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joan Badowski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joan Badowski -sn: Badowski -description: This is Joan Badowski's description -facsimileTelephoneNumber: +1 408 160-5491 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 408 709-8218 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: BadowskJ -givenName: Joan -mail: BadowskJ@b27312faaad24253933d0ff172f19446.bitwarden.com -carLicense: K21BL8 -departmentNumber: 1250 -employeeType: Contract -homePhone: +1 408 792-7227 -initials: J. B. -mobile: +1 408 696-9905 -pager: +1 408 540-2211 -roomNumber: 8162 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyman Obenauf -sn: Obenauf -description: This is Lyman Obenauf's description -facsimileTelephoneNumber: +1 804 620-7436 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 278-5154 -title: Junior Human Resources Artist -userPassword: Password1 -uid: ObenaufL -givenName: Lyman -mail: ObenaufL@f2546b85540e458c8c528fab744261e5.bitwarden.com -carLicense: OUPM7A -departmentNumber: 6102 -employeeType: Contract -homePhone: +1 804 186-9867 -initials: L. O. -mobile: +1 804 386-8953 -pager: +1 804 369-9236 -roomNumber: 9518 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Libby Sarna,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Libby Sarna -sn: Sarna -description: This is Libby Sarna's description -facsimileTelephoneNumber: +1 510 623-2715 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 513-6972 -title: Master Peons Pinhead -userPassword: Password1 -uid: SarnaL -givenName: Libby -mail: SarnaL@17f5261c44794d03856d13a510e0aa52.bitwarden.com -carLicense: 3RYPKK -departmentNumber: 7884 -employeeType: Employee -homePhone: +1 510 223-9887 -initials: L. S. -mobile: +1 510 936-1518 -pager: +1 510 593-4497 -roomNumber: 9050 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Madalena Farnham,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madalena Farnham -sn: Farnham -description: This is Madalena Farnham's description -facsimileTelephoneNumber: +1 415 774-6716 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 807-1009 -title: Associate Administrative Stooge -userPassword: Password1 -uid: FarnhamM -givenName: Madalena -mail: FarnhamM@3ce51f6d63564349a707188cebe0b9db.bitwarden.com -carLicense: VJO6TA -departmentNumber: 2188 -employeeType: Employee -homePhone: +1 415 532-7335 -initials: M. F. -mobile: +1 415 624-8997 -pager: +1 415 510-9960 -roomNumber: 8213 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Peder Chowhan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peder Chowhan -sn: Chowhan -description: This is Peder Chowhan's description -facsimileTelephoneNumber: +1 213 868-5477 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 755-3613 -title: Chief Management Janitor -userPassword: Password1 -uid: ChowhanP -givenName: Peder -mail: ChowhanP@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com -carLicense: 05G5VR -departmentNumber: 3201 -employeeType: Normal -homePhone: +1 213 839-3026 -initials: P. C. -mobile: +1 213 430-1645 -pager: +1 213 554-2365 -roomNumber: 9021 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bird Bluschke,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bird Bluschke -sn: Bluschke -description: This is Bird Bluschke's description -facsimileTelephoneNumber: +1 510 823-2080 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 262-5115 -title: Master Product Development Grunt -userPassword: Password1 -uid: BluschkB -givenName: Bird -mail: BluschkB@27e750a927bc40878975a7adaa60f684.bitwarden.com -carLicense: FV6T6T -departmentNumber: 8389 -employeeType: Contract -homePhone: +1 510 931-1123 -initials: B. B. -mobile: +1 510 911-6000 -pager: +1 510 266-4960 -roomNumber: 8133 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kaycee Wiggins,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaycee Wiggins -sn: Wiggins -description: This is Kaycee Wiggins's description -facsimileTelephoneNumber: +1 213 305-4820 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 168-7185 -title: Supreme Management Fellow -userPassword: Password1 -uid: WigginsK -givenName: Kaycee -mail: WigginsK@bebbec64fc5b426aa6d6b13aab8ac6c1.bitwarden.com -carLicense: U2KRM2 -departmentNumber: 4318 -employeeType: Contract -homePhone: +1 213 129-5108 -initials: K. W. -mobile: +1 213 699-1723 -pager: +1 213 255-1746 -roomNumber: 8470 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fwpreg Daymond,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fwpreg Daymond -sn: Daymond -description: This is Fwpreg Daymond's description -facsimileTelephoneNumber: +1 408 282-4362 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 268-6897 -title: Junior Peons Engineer -userPassword: Password1 -uid: DaymondF -givenName: Fwpreg -mail: DaymondF@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com -carLicense: 5RLHCP -departmentNumber: 1261 -employeeType: Contract -homePhone: +1 408 576-1224 -initials: F. D. -mobile: +1 408 406-6854 -pager: +1 408 771-3580 -roomNumber: 8141 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lex PrestonThomas -sn: PrestonThomas -description: This is Lex PrestonThomas's description -facsimileTelephoneNumber: +1 206 323-8087 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 934-6387 -title: Master Product Testing Vice President -userPassword: Password1 -uid: PrestonL -givenName: Lex -mail: PrestonL@3fe3dd83a28445b5a95bc5da230f8774.bitwarden.com -carLicense: Y7FEQA -departmentNumber: 4419 -employeeType: Contract -homePhone: +1 206 373-3010 -initials: L. P. -mobile: +1 206 350-6689 -pager: +1 206 249-7019 -roomNumber: 9152 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jobi Bryant,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jobi Bryant -sn: Bryant -description: This is Jobi Bryant's description -facsimileTelephoneNumber: +1 510 384-6701 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 167-1007 -title: Associate Payroll Grunt -userPassword: Password1 -uid: BryantJ -givenName: Jobi -mail: BryantJ@547fa50227684350b1f92837929bd166.bitwarden.com -carLicense: 0R184G -departmentNumber: 6901 -employeeType: Employee -homePhone: +1 510 653-1684 -initials: J. B. -mobile: +1 510 384-2490 -pager: +1 510 297-7327 -roomNumber: 9465 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allsun Hjartarson -sn: Hjartarson -description: This is Allsun Hjartarson's description -facsimileTelephoneNumber: +1 804 282-5204 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 189-3802 -title: Chief Product Development Vice President -userPassword: Password1 -uid: HjartarA -givenName: Allsun -mail: HjartarA@02ff8597c50443248a49f6bef6b843ff.bitwarden.com -carLicense: A05WD0 -departmentNumber: 6667 -employeeType: Employee -homePhone: +1 804 775-1451 -initials: A. H. -mobile: +1 804 512-2284 -pager: +1 804 168-5822 -roomNumber: 8412 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Modesta WAR,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Modesta WAR -sn: WAR -description: This is Modesta WAR's description -facsimileTelephoneNumber: +1 408 887-4846 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 218-1345 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: WARM -givenName: Modesta -mail: WARM@9f5475585fd4485cae51ba09721f524b.bitwarden.com -carLicense: L52SIK -departmentNumber: 3232 -employeeType: Contract -homePhone: +1 408 238-7865 -initials: M. W. -mobile: +1 408 483-8876 -pager: +1 408 698-5901 -roomNumber: 9543 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eveleen Jasti,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eveleen Jasti -sn: Jasti -description: This is Eveleen Jasti's description -facsimileTelephoneNumber: +1 213 545-4182 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 596-4035 -title: Junior Peons Visionary -userPassword: Password1 -uid: JastiE -givenName: Eveleen -mail: JastiE@91c2f03d5f5f46289c8711d8060fde6a.bitwarden.com -carLicense: TWOFUB -departmentNumber: 4706 -employeeType: Normal -homePhone: +1 213 698-9707 -initials: E. J. -mobile: +1 213 473-6911 -pager: +1 213 436-3965 -roomNumber: 8089 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmody Kenworthy -sn: Kenworthy -description: This is Carmody Kenworthy's description -facsimileTelephoneNumber: +1 213 383-7095 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 528-6436 -title: Chief Product Testing Czar -userPassword: Password1 -uid: KenwortC -givenName: Carmody -mail: KenwortC@302710031153467b98bc48e3c4bc257f.bitwarden.com -carLicense: E5Q95J -departmentNumber: 9403 -employeeType: Employee -homePhone: +1 213 869-6385 -initials: C. K. -mobile: +1 213 330-8761 -pager: +1 213 307-7902 -roomNumber: 9663 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Toney Singh,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toney Singh -sn: Singh -description: This is Toney Singh's description -facsimileTelephoneNumber: +1 206 139-9396 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 159-2413 -title: Chief Peons Admin -userPassword: Password1 -uid: SinghT -givenName: Toney -mail: SinghT@c8fa77eb4aa0482bb77de35245880a29.bitwarden.com -carLicense: 1QYL9M -departmentNumber: 5753 -employeeType: Normal -homePhone: +1 206 417-1915 -initials: T. S. -mobile: +1 206 569-8089 -pager: +1 206 768-5925 -roomNumber: 8030 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amelia Altekar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amelia Altekar -sn: Altekar -description: This is Amelia Altekar's description -facsimileTelephoneNumber: +1 415 866-5684 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 760-1234 -title: Associate Payroll Stooge -userPassword: Password1 -uid: AltekarA -givenName: Amelia -mail: AltekarA@d88544e210f84cc7827363eadc0d3128.bitwarden.com -carLicense: CBH9GE -departmentNumber: 6680 -employeeType: Employee -homePhone: +1 415 366-6860 -initials: A. A. -mobile: +1 415 773-3195 -pager: +1 415 108-9364 -roomNumber: 8674 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiny Kreiger -sn: Kreiger -description: This is Tiny Kreiger's description -facsimileTelephoneNumber: +1 818 222-8932 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 818 377-3437 -title: Associate Product Testing Czar -userPassword: Password1 -uid: KreigerT -givenName: Tiny -mail: KreigerT@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com -carLicense: CW3NYE -departmentNumber: 8958 -employeeType: Normal -homePhone: +1 818 921-4954 -initials: T. K. -mobile: +1 818 989-6009 -pager: +1 818 135-8227 -roomNumber: 9952 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Audivox Duncan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Audivox Duncan -sn: Duncan -description: This is Audivox Duncan's description -facsimileTelephoneNumber: +1 818 959-5623 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 588-1181 -title: Associate Payroll Architect -userPassword: Password1 -uid: DuncanA -givenName: Audivox -mail: DuncanA@dddbcacbba5c4e16876ccb04b6135782.bitwarden.com -carLicense: 4VNB9C -departmentNumber: 8834 -employeeType: Contract -homePhone: +1 818 444-5240 -initials: A. D. -mobile: +1 818 330-5593 -pager: +1 818 324-4048 -roomNumber: 9865 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Eliezer Rheault,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eliezer Rheault -sn: Rheault -description: This is Eliezer Rheault's description -facsimileTelephoneNumber: +1 415 207-4933 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 143-2540 -title: Junior Management Madonna -userPassword: Password1 -uid: RheaultE -givenName: Eliezer -mail: RheaultE@395a1522673545a2b6f4ec5f1b7796af.bitwarden.com -carLicense: VAVL4S -departmentNumber: 5081 -employeeType: Employee -homePhone: +1 415 647-7993 -initials: E. R. -mobile: +1 415 983-5041 -pager: +1 415 941-2430 -roomNumber: 9951 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=KimMinh Lenehan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KimMinh Lenehan -sn: Lenehan -description: This is KimMinh Lenehan's description -facsimileTelephoneNumber: +1 206 157-8018 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 459-5767 -title: Associate Peons Mascot -userPassword: Password1 -uid: LenehanK -givenName: KimMinh -mail: LenehanK@d4eabd10ae4c40a485e4ca44d8a0318c.bitwarden.com -carLicense: BF39TS -departmentNumber: 6815 -employeeType: Employee -homePhone: +1 206 732-8846 -initials: K. L. -mobile: +1 206 737-8865 -pager: +1 206 450-5247 -roomNumber: 8847 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Viole Kirkland,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viole Kirkland -sn: Kirkland -description: This is Viole Kirkland's description -facsimileTelephoneNumber: +1 206 655-1580 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 418-5212 -title: Master Payroll Dictator -userPassword: Password1 -uid: KirklanV -givenName: Viole -mail: KirklanV@4f1519512714466da3525736d08bec31.bitwarden.com -carLicense: BR05N4 -departmentNumber: 7642 -employeeType: Contract -homePhone: +1 206 296-5154 -initials: V. K. -mobile: +1 206 302-1118 -pager: +1 206 264-3827 -roomNumber: 9636 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brahmananda Montmorency -sn: Montmorency -description: This is Brahmananda Montmorency's description -facsimileTelephoneNumber: +1 804 296-2173 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 804 140-1515 -title: Junior Peons President -userPassword: Password1 -uid: MontmorB -givenName: Brahmananda -mail: MontmorB@127bd07831b64b0e92ce92ea10c209be.bitwarden.com -carLicense: XAKKI2 -departmentNumber: 5400 -employeeType: Contract -homePhone: +1 804 436-6367 -initials: B. M. -mobile: +1 804 336-7728 -pager: +1 804 103-4328 -roomNumber: 8899 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhTinh Tognoni -sn: Tognoni -description: This is ThanhTinh Tognoni's description -facsimileTelephoneNumber: +1 818 950-9158 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 818 381-7214 -title: Chief Peons Consultant -userPassword: Password1 -uid: TognoniT -givenName: ThanhTinh -mail: TognoniT@73644206f22948e88cda9a77b8ecb4e1.bitwarden.com -carLicense: KWS2JC -departmentNumber: 7971 -employeeType: Contract -homePhone: +1 818 182-1319 -initials: T. T. -mobile: +1 818 672-1050 -pager: +1 818 621-3209 -roomNumber: 8392 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bahram Strauch,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bahram Strauch -sn: Strauch -description: This is Bahram Strauch's description -facsimileTelephoneNumber: +1 206 959-7657 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 477-2963 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: StrauchB -givenName: Bahram -mail: StrauchB@5c9608f5189942e19cb9ace71ff4cc1f.bitwarden.com -carLicense: I2SKMV -departmentNumber: 3719 -employeeType: Employee -homePhone: +1 206 903-5985 -initials: B. S. -mobile: +1 206 686-4402 -pager: +1 206 936-4771 -roomNumber: 8550 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jagdev Paulett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jagdev Paulett -sn: Paulett -description: This is Jagdev Paulett's description -facsimileTelephoneNumber: +1 206 393-3845 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 206 608-2942 -title: Junior Product Development Stooge -userPassword: Password1 -uid: PaulettJ -givenName: Jagdev -mail: PaulettJ@18569f82a4734a83991f0330d7e468e1.bitwarden.com -carLicense: PRET7C -departmentNumber: 2013 -employeeType: Employee -homePhone: +1 206 925-1419 -initials: J. P. -mobile: +1 206 541-9552 -pager: +1 206 718-2325 -roomNumber: 9112 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Graham Tanner,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Graham Tanner -sn: Tanner -description: This is Graham Tanner's description -facsimileTelephoneNumber: +1 510 955-8286 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 698-7023 -title: Supreme Product Testing Figurehead -userPassword: Password1 -uid: TannerG -givenName: Graham -mail: TannerG@61c05d1e8ba240fc8053923a475b5800.bitwarden.com -carLicense: FS9OWC -departmentNumber: 5892 -employeeType: Contract -homePhone: +1 510 500-1296 -initials: G. T. -mobile: +1 510 932-2375 -pager: +1 510 720-5415 -roomNumber: 9326 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Beau Watkins,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beau Watkins -sn: Watkins -description: This is Beau Watkins's description -facsimileTelephoneNumber: +1 510 388-6798 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 842-8636 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: WatkinsB -givenName: Beau -mail: WatkinsB@b50829feebfd4e22a33d8ae67daa6149.bitwarden.com -carLicense: ST8UW5 -departmentNumber: 2604 -employeeType: Normal -homePhone: +1 510 551-5051 -initials: B. W. -mobile: +1 510 494-3459 -pager: +1 510 196-5871 -roomNumber: 8090 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Durali Pickens,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Durali Pickens -sn: Pickens -description: This is Durali Pickens's description -facsimileTelephoneNumber: +1 213 682-7041 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 213 925-2174 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: PickensD -givenName: Durali -mail: PickensD@dba38a73d24f45109e2386384dae2ed3.bitwarden.com -carLicense: WOS1WO -departmentNumber: 5072 -employeeType: Contract -homePhone: +1 213 256-8213 -initials: D. P. -mobile: +1 213 444-9706 -pager: +1 213 254-8905 -roomNumber: 9213 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigit Hollingshead -sn: Hollingshead -description: This is Brigit Hollingshead's description -facsimileTelephoneNumber: +1 408 117-1110 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 700-2545 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: HollingB -givenName: Brigit -mail: HollingB@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com -carLicense: 6IMR00 -departmentNumber: 2752 -employeeType: Contract -homePhone: +1 408 937-2272 -initials: B. H. -mobile: +1 408 636-5013 -pager: +1 408 696-8354 -roomNumber: 9114 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chatri Hinchey -sn: Hinchey -description: This is Chatri Hinchey's description -facsimileTelephoneNumber: +1 206 826-7866 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 290-2072 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: HincheyC -givenName: Chatri -mail: HincheyC@b9f44a907d41480f95c6eb062092de29.bitwarden.com -carLicense: ITABQE -departmentNumber: 4722 -employeeType: Contract -homePhone: +1 206 611-2232 -initials: C. H. -mobile: +1 206 803-2734 -pager: +1 206 128-8389 -roomNumber: 8514 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HingFai Kenworthy -sn: Kenworthy -description: This is HingFai Kenworthy's description -facsimileTelephoneNumber: +1 804 149-7634 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 988-1371 -title: Chief Administrative Consultant -userPassword: Password1 -uid: KenwortH -givenName: HingFai -mail: KenwortH@00051a1d50da40f1b7bc2c53cc756ab9.bitwarden.com -carLicense: NWLJQC -departmentNumber: 3793 -employeeType: Contract -homePhone: +1 804 368-9268 -initials: H. K. -mobile: +1 804 299-5468 -pager: +1 804 399-3732 -roomNumber: 8693 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jorry Yost,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jorry Yost -sn: Yost -description: This is Jorry Yost's description -facsimileTelephoneNumber: +1 408 446-3142 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 201-2715 -title: Master Management Technician -userPassword: Password1 -uid: YostJ -givenName: Jorry -mail: YostJ@7de1122203ab4ca0a8ccf7ec79a93139.bitwarden.com -carLicense: 427UW5 -departmentNumber: 7829 -employeeType: Normal -homePhone: +1 408 144-7607 -initials: J. Y. -mobile: +1 408 525-9005 -pager: +1 408 815-8371 -roomNumber: 9171 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Laser DeNest,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laser DeNest -sn: DeNest -description: This is Laser DeNest's description -facsimileTelephoneNumber: +1 510 903-9112 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 476-8869 -title: Associate Janitorial Czar -userPassword: Password1 -uid: DeNestL -givenName: Laser -mail: DeNestL@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com -carLicense: 701KCW -departmentNumber: 4346 -employeeType: Normal -homePhone: +1 510 309-2872 -initials: L. D. -mobile: +1 510 271-6850 -pager: +1 510 937-9442 -roomNumber: 9769 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chanda Leenher,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chanda Leenher -sn: Leenher -description: This is Chanda Leenher's description -facsimileTelephoneNumber: +1 804 638-5652 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 910-9913 -title: Chief Management Dictator -userPassword: Password1 -uid: LeenherC -givenName: Chanda -mail: LeenherC@d7681493431f47c4aee39faeda0957a7.bitwarden.com -carLicense: 07JDI8 -departmentNumber: 9305 -employeeType: Employee -homePhone: +1 804 851-7345 -initials: C. L. -mobile: +1 804 953-2227 -pager: +1 804 721-9221 -roomNumber: 8478 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Luke Catlett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luke Catlett -sn: Catlett -description: This is Luke Catlett's description -facsimileTelephoneNumber: +1 804 524-4538 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 826-8510 -title: Master Management Punk -userPassword: Password1 -uid: CatlettL -givenName: Luke -mail: CatlettL@e316e4482c314662b2118590a4d2173a.bitwarden.com -carLicense: 70VYG8 -departmentNumber: 5519 -employeeType: Contract -homePhone: +1 804 288-5291 -initials: L. C. -mobile: +1 804 177-6475 -pager: +1 804 161-1559 -roomNumber: 8173 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vicheara Scssdev -sn: Scssdev -description: This is Vicheara Scssdev's description -facsimileTelephoneNumber: +1 408 163-2687 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 191-9972 -title: Associate Product Development Janitor -userPassword: Password1 -uid: ScssdevV -givenName: Vicheara -mail: ScssdevV@234773e7f27c46889eabde71c1cb8d67.bitwarden.com -carLicense: LF291M -departmentNumber: 3739 -employeeType: Contract -homePhone: +1 408 597-5712 -initials: V. S. -mobile: +1 408 368-7746 -pager: +1 408 596-9712 -roomNumber: 9434 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Femke Krikorian,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Femke Krikorian -sn: Krikorian -description: This is Femke Krikorian's description -facsimileTelephoneNumber: +1 510 896-9239 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 981-7695 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: KrikoriF -givenName: Femke -mail: KrikoriF@09621247c2534422b65027556ba23ec6.bitwarden.com -carLicense: VB8A9Y -departmentNumber: 1895 -employeeType: Contract -homePhone: +1 510 184-2057 -initials: F. K. -mobile: +1 510 804-3352 -pager: +1 510 536-2555 -roomNumber: 9548 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corkstown MacLaren -sn: MacLaren -description: This is Corkstown MacLaren's description -facsimileTelephoneNumber: +1 510 772-9604 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 847-6322 -title: Supreme Administrative Engineer -userPassword: Password1 -uid: MacLareC -givenName: Corkstown -mail: MacLareC@66ebe9b8d29246329e6e17db480edb7b.bitwarden.com -carLicense: ML9S1N -departmentNumber: 9781 -employeeType: Contract -homePhone: +1 510 738-2216 -initials: C. M. -mobile: +1 510 675-4138 -pager: +1 510 330-2793 -roomNumber: 8512 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Evert Traynor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evert Traynor -sn: Traynor -description: This is Evert Traynor's description -facsimileTelephoneNumber: +1 818 694-3703 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 818 376-5956 -title: Supreme Management Assistant -userPassword: Password1 -uid: TraynorE -givenName: Evert -mail: TraynorE@ed89cbae21214e4d86110d4c5688d2bc.bitwarden.com -carLicense: X24VER -departmentNumber: 4185 -employeeType: Contract -homePhone: +1 818 888-5460 -initials: E. T. -mobile: +1 818 374-3704 -pager: +1 818 998-4757 -roomNumber: 8194 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HackHoo Shapland -sn: Shapland -description: This is HackHoo Shapland's description -facsimileTelephoneNumber: +1 804 164-3864 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 804 166-8265 -title: Supreme Product Testing Visionary -userPassword: Password1 -uid: ShaplanH -givenName: HackHoo -mail: ShaplanH@737b5dcffbb7418088cb0751fc35cc9b.bitwarden.com -carLicense: LUH6EY -departmentNumber: 7992 -employeeType: Normal -homePhone: +1 804 205-3438 -initials: H. S. -mobile: +1 804 699-6074 -pager: +1 804 155-8569 -roomNumber: 9526 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tess Ketchum,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tess Ketchum -sn: Ketchum -description: This is Tess Ketchum's description -facsimileTelephoneNumber: +1 510 932-7236 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 347-1200 -title: Master Product Development Figurehead -userPassword: Password1 -uid: KetchumT -givenName: Tess -mail: KetchumT@394281e627bd4a44a2749e8e04564938.bitwarden.com -carLicense: 3BBPTT -departmentNumber: 7286 -employeeType: Contract -homePhone: +1 510 718-8880 -initials: T. K. -mobile: +1 510 580-4489 -pager: +1 510 295-3685 -roomNumber: 8778 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jordanna Cacha,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jordanna Cacha -sn: Cacha -description: This is Jordanna Cacha's description -facsimileTelephoneNumber: +1 415 625-1706 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 540-6501 -title: Supreme Payroll Admin -userPassword: Password1 -uid: CachaJ -givenName: Jordanna -mail: CachaJ@14d341098b454a7bb14a0607de600424.bitwarden.com -carLicense: QBAUC9 -departmentNumber: 1672 -employeeType: Contract -homePhone: +1 415 440-1187 -initials: J. C. -mobile: +1 415 850-6320 -pager: +1 415 342-1335 -roomNumber: 8214 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Brietta Dages,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brietta Dages -sn: Dages -description: This is Brietta Dages's description -facsimileTelephoneNumber: +1 818 983-6018 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 636-3892 -title: Master Janitorial Mascot -userPassword: Password1 -uid: DagesB -givenName: Brietta -mail: DagesB@7022b955bef74762989f3e8241ec17a6.bitwarden.com -carLicense: 5Q41X3 -departmentNumber: 9969 -employeeType: Employee -homePhone: +1 818 826-2982 -initials: B. D. -mobile: +1 818 265-2273 -pager: +1 818 305-2651 -roomNumber: 9919 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Natver Alleva,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natver Alleva -sn: Alleva -description: This is Natver Alleva's description -facsimileTelephoneNumber: +1 804 425-9438 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 638-1870 -title: Supreme Janitorial Figurehead -userPassword: Password1 -uid: AllevaN -givenName: Natver -mail: AllevaN@9f370afe60bb4f1ab01d1df2abbe72ba.bitwarden.com -carLicense: L0DKIH -departmentNumber: 1451 -employeeType: Employee -homePhone: +1 804 683-1758 -initials: N. A. -mobile: +1 804 849-8401 -pager: +1 804 646-5711 -roomNumber: 9859 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raffi Tzaneteas -sn: Tzaneteas -description: This is Raffi Tzaneteas's description -facsimileTelephoneNumber: +1 408 668-4372 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 571-3744 -title: Junior Administrative Dictator -userPassword: Password1 -uid: TzaneteR -givenName: Raffi -mail: TzaneteR@1d18e975cba24a40891491f30692b0e9.bitwarden.com -carLicense: OGRTAM -departmentNumber: 3926 -employeeType: Normal -homePhone: +1 408 751-1561 -initials: R. T. -mobile: +1 408 834-6662 -pager: +1 408 206-7687 -roomNumber: 9471 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Phan Rimsa,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phan Rimsa -sn: Rimsa -description: This is Phan Rimsa's description -facsimileTelephoneNumber: +1 213 115-3383 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 221-7321 -title: Junior Product Development Engineer -userPassword: Password1 -uid: RimsaP -givenName: Phan -mail: RimsaP@e2cbb69d157949f2a27ec4f04bfab065.bitwarden.com -carLicense: CPDVNM -departmentNumber: 7865 -employeeType: Contract -homePhone: +1 213 465-1802 -initials: P. R. -mobile: +1 213 580-9534 -pager: +1 213 505-1556 -roomNumber: 9806 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helenelizabeth Ledwell -sn: Ledwell -description: This is Helenelizabeth Ledwell's description -facsimileTelephoneNumber: +1 415 802-3106 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 226-6795 -title: Associate Product Development Architect -userPassword: Password1 -uid: LedwellH -givenName: Helenelizabeth -mail: LedwellH@80c3b4098db8471fa50bda6c3d5b250b.bitwarden.com -carLicense: N18B9F -departmentNumber: 5371 -employeeType: Contract -homePhone: +1 415 195-7671 -initials: H. L. -mobile: +1 415 334-8698 -pager: +1 415 113-7359 -roomNumber: 9320 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Thakor Brandon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thakor Brandon -sn: Brandon -description: This is Thakor Brandon's description -facsimileTelephoneNumber: +1 415 355-7770 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 860-6328 -title: Junior Peons Fellow -userPassword: Password1 -uid: BrandonT -givenName: Thakor -mail: BrandonT@bf22abb443f242d591554d5b4dde5bdb.bitwarden.com -carLicense: X9XIST -departmentNumber: 8985 -employeeType: Normal -homePhone: +1 415 328-8485 -initials: T. B. -mobile: +1 415 859-5633 -pager: +1 415 772-2991 -roomNumber: 8094 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Samir Guerin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Samir Guerin -sn: Guerin -description: This is Samir Guerin's description -facsimileTelephoneNumber: +1 408 206-5086 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 408 998-1656 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: GuerinS -givenName: Samir -mail: GuerinS@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com -carLicense: NS4HK9 -departmentNumber: 6748 -employeeType: Contract -homePhone: +1 408 638-6750 -initials: S. G. -mobile: +1 408 977-6914 -pager: +1 408 195-7776 -roomNumber: 9304 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Colene Revis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colene Revis -sn: Revis -description: This is Colene Revis's description -facsimileTelephoneNumber: +1 818 767-5106 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 780-3625 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: RevisC -givenName: Colene -mail: RevisC@c92365298bdc408a8d5a96e4deae0869.bitwarden.com -carLicense: 6K2Q6P -departmentNumber: 8486 -employeeType: Contract -homePhone: +1 818 836-5955 -initials: C. R. -mobile: +1 818 300-2037 -pager: +1 818 839-5944 -roomNumber: 8094 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mike Funderburg,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mike Funderburg -sn: Funderburg -description: This is Mike Funderburg's description -facsimileTelephoneNumber: +1 818 857-4626 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 832-6595 -title: Master Peons Stooge -userPassword: Password1 -uid: FunderbM -givenName: Mike -mail: FunderbM@fb31dc4ff0104ce1b3fc5a01a2d75d94.bitwarden.com -carLicense: 08F057 -departmentNumber: 8484 -employeeType: Employee -homePhone: +1 818 849-6573 -initials: M. F. -mobile: +1 818 564-2164 -pager: +1 818 440-7960 -roomNumber: 9425 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rozalie Sassine,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozalie Sassine -sn: Sassine -description: This is Rozalie Sassine's description -facsimileTelephoneNumber: +1 415 612-3877 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 591-1876 -title: Junior Administrative Consultant -userPassword: Password1 -uid: SassineR -givenName: Rozalie -mail: SassineR@f2e037d77334498ab9322f95dd7d350d.bitwarden.com -carLicense: 2SKUO1 -departmentNumber: 2068 -employeeType: Contract -homePhone: +1 415 879-2726 -initials: R. S. -mobile: +1 415 448-7956 -pager: +1 415 443-3820 -roomNumber: 8530 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jinny Siddell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jinny Siddell -sn: Siddell -description: This is Jinny Siddell's description -facsimileTelephoneNumber: +1 206 219-2801 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 206 721-8276 -title: Supreme Human Resources President -userPassword: Password1 -uid: SiddellJ -givenName: Jinny -mail: SiddellJ@d465cf0e3efb407fbb73b24e2d2b8525.bitwarden.com -carLicense: TOPS9B -departmentNumber: 8208 -employeeType: Normal -homePhone: +1 206 951-4438 -initials: J. S. -mobile: +1 206 698-1509 -pager: +1 206 529-9954 -roomNumber: 9280 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kai Etemad,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kai Etemad -sn: Etemad -description: This is Kai Etemad's description -facsimileTelephoneNumber: +1 408 407-5198 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 212-7226 -title: Supreme Peons Consultant -userPassword: Password1 -uid: EtemadK -givenName: Kai -mail: EtemadK@a96211277807499cbc72ba383cf3f7fd.bitwarden.com -carLicense: WNV802 -departmentNumber: 9094 -employeeType: Contract -homePhone: +1 408 627-9627 -initials: K. E. -mobile: +1 408 409-1057 -pager: +1 408 706-9835 -roomNumber: 9397 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Odette Wagle,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odette Wagle -sn: Wagle -description: This is Odette Wagle's description -facsimileTelephoneNumber: +1 408 859-4620 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 758-9571 -title: Junior Payroll Assistant -userPassword: Password1 -uid: WagleO -givenName: Odette -mail: WagleO@5dae1ed2c9f445258f886d50e89467ac.bitwarden.com -carLicense: 3HDVPL -departmentNumber: 6500 -employeeType: Employee -homePhone: +1 408 937-3451 -initials: O. W. -mobile: +1 408 296-1980 -pager: +1 408 935-1862 -roomNumber: 9661 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Josephine Leon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Josephine Leon -sn: Leon -description: This is Josephine Leon's description -facsimileTelephoneNumber: +1 804 282-2972 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 986-6243 -title: Associate Product Testing Consultant -userPassword: Password1 -uid: LeonJ -givenName: Josephine -mail: LeonJ@21c8fcb0ee18495787a55ca1696354cd.bitwarden.com -carLicense: JGFJUE -departmentNumber: 2844 -employeeType: Employee -homePhone: +1 804 720-3354 -initials: J. L. -mobile: +1 804 877-2935 -pager: +1 804 555-9024 -roomNumber: 9763 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gale Leder,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gale Leder -sn: Leder -description: This is Gale Leder's description -facsimileTelephoneNumber: +1 804 843-3805 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 804 939-2453 -title: Associate Product Development Pinhead -userPassword: Password1 -uid: LederG -givenName: Gale -mail: LederG@2e792851d84240488be196888c877106.bitwarden.com -carLicense: 69GHYH -departmentNumber: 6678 -employeeType: Contract -homePhone: +1 804 286-7103 -initials: G. L. -mobile: +1 804 868-4785 -pager: +1 804 668-8100 -roomNumber: 9555 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Danny Mau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danny Mau -sn: Mau -description: This is Danny Mau's description -facsimileTelephoneNumber: +1 408 494-8885 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 155-2319 -title: Junior Payroll Punk -userPassword: Password1 -uid: MauD -givenName: Danny -mail: MauD@a98a94682d81417d89ea8aad5fa82d5a.bitwarden.com -carLicense: YT7T33 -departmentNumber: 4822 -employeeType: Normal -homePhone: +1 408 384-6744 -initials: D. M. -mobile: +1 408 667-1403 -pager: +1 408 871-7741 -roomNumber: 8104 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alma McRann,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alma McRann -sn: McRann -description: This is Alma McRann's description -facsimileTelephoneNumber: +1 408 553-6921 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 615-8677 -title: Junior Product Testing Mascot -userPassword: Password1 -uid: McRannA -givenName: Alma -mail: McRannA@49b304035fc44bb4a3e211286fc4d652.bitwarden.com -carLicense: HR69JY -departmentNumber: 3724 -employeeType: Normal -homePhone: +1 408 910-6859 -initials: A. M. -mobile: +1 408 105-1025 -pager: +1 408 880-6576 -roomNumber: 8608 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Martijn Groth,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martijn Groth -sn: Groth -description: This is Martijn Groth's description -facsimileTelephoneNumber: +1 408 667-8300 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 737-3680 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: GrothM -givenName: Martijn -mail: GrothM@8455fc0dd08e47d9b5acf4e37eea1485.bitwarden.com -carLicense: QWKY9J -departmentNumber: 5780 -employeeType: Normal -homePhone: +1 408 702-2649 -initials: M. G. -mobile: +1 408 151-8984 -pager: +1 408 955-2749 -roomNumber: 8147 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Allyson Boroski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allyson Boroski -sn: Boroski -description: This is Allyson Boroski's description -facsimileTelephoneNumber: +1 510 214-2467 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 932-2939 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: BoroskiA -givenName: Allyson -mail: BoroskiA@38d6239d446040c7892f72bde901e5dc.bitwarden.com -carLicense: QYDM73 -departmentNumber: 2594 -employeeType: Employee -homePhone: +1 510 631-1438 -initials: A. B. -mobile: +1 510 675-8249 -pager: +1 510 818-6627 -roomNumber: 8194 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Janice Powney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janice Powney -sn: Powney -description: This is Janice Powney's description -facsimileTelephoneNumber: +1 213 383-8566 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 723-6432 -title: Junior Product Development Admin -userPassword: Password1 -uid: PowneyJ -givenName: Janice -mail: PowneyJ@6676cc13b20e4042b28843f12be18e7b.bitwarden.com -carLicense: FEEB11 -departmentNumber: 5335 -employeeType: Normal -homePhone: +1 213 537-5490 -initials: J. P. -mobile: +1 213 721-7552 -pager: +1 213 686-9301 -roomNumber: 8041 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marys Marleau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marys Marleau -sn: Marleau -description: This is Marys Marleau's description -facsimileTelephoneNumber: +1 510 171-4987 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 510 169-3517 -title: Junior Peons Vice President -userPassword: Password1 -uid: MarleauM -givenName: Marys -mail: MarleauM@ad4942d8c3c341119939c679c4dae154.bitwarden.com -carLicense: L0LNEQ -departmentNumber: 6065 -employeeType: Employee -homePhone: +1 510 288-4715 -initials: M. M. -mobile: +1 510 737-2648 -pager: +1 510 379-4049 -roomNumber: 8224 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Colin Langelier,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colin Langelier -sn: Langelier -description: This is Colin Langelier's description -facsimileTelephoneNumber: +1 206 616-6109 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 343-3863 -title: Associate Management Grunt -userPassword: Password1 -uid: LangeliC -givenName: Colin -mail: LangeliC@910b366efc9d45ae94d1175a5271d29c.bitwarden.com -carLicense: R6752L -departmentNumber: 5914 -employeeType: Normal -homePhone: +1 206 188-2055 -initials: C. L. -mobile: +1 206 766-1553 -pager: +1 206 103-5210 -roomNumber: 9664 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cornel Delzer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cornel Delzer -sn: Delzer -description: This is Cornel Delzer's description -facsimileTelephoneNumber: +1 804 892-1235 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 850-4611 -title: Junior Janitorial Manager -userPassword: Password1 -uid: DelzerC -givenName: Cornel -mail: DelzerC@1e938c02408a4595b2f669d03197c9de.bitwarden.com -carLicense: Y0YR8B -departmentNumber: 5915 -employeeType: Contract -homePhone: +1 804 546-7860 -initials: C. D. -mobile: +1 804 811-9003 -pager: +1 804 619-5000 -roomNumber: 8266 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Liane Pappu,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liane Pappu -sn: Pappu -description: This is Liane Pappu's description -facsimileTelephoneNumber: +1 510 219-3584 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 252-2291 -title: Supreme Peons Warrior -userPassword: Password1 -uid: PappuL -givenName: Liane -mail: PappuL@00031bbeb0ff4d1a8275609c6cc825b8.bitwarden.com -carLicense: VY0QSX -departmentNumber: 6269 -employeeType: Contract -homePhone: +1 510 682-1332 -initials: L. P. -mobile: +1 510 511-8632 -pager: +1 510 480-5400 -roomNumber: 9092 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ollie Mir,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ollie Mir -sn: Mir -description: This is Ollie Mir's description -facsimileTelephoneNumber: +1 213 595-8073 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 675-3293 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: MirO -givenName: Ollie -mail: MirO@24af3dac7e7c4580ae1949e9dbc7b5bd.bitwarden.com -carLicense: JF0L9P -departmentNumber: 1874 -employeeType: Normal -homePhone: +1 213 573-3177 -initials: O. M. -mobile: +1 213 859-9259 -pager: +1 213 731-6215 -roomNumber: 9213 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tiffy Moyers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffy Moyers -sn: Moyers -description: This is Tiffy Moyers's description -facsimileTelephoneNumber: +1 213 206-4617 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 270-1293 -title: Supreme Management Manager -userPassword: Password1 -uid: MoyersT -givenName: Tiffy -mail: MoyersT@086cd0723f0c4d19b12b0a6c52b08ed8.bitwarden.com -carLicense: 9TH8H8 -departmentNumber: 7782 -employeeType: Employee -homePhone: +1 213 405-5840 -initials: T. M. -mobile: +1 213 371-7039 -pager: +1 213 777-3373 -roomNumber: 8834 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chi Radcliffe -sn: Radcliffe -description: This is Chi Radcliffe's description -facsimileTelephoneNumber: +1 408 762-9652 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 407-5687 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: RadclifC -givenName: Chi -mail: RadclifC@7c55c5fda50b444180fe09120e80248b.bitwarden.com -carLicense: W1YY9Y -departmentNumber: 9953 -employeeType: Contract -homePhone: +1 408 399-7999 -initials: C. R. -mobile: +1 408 424-3329 -pager: +1 408 506-2742 -roomNumber: 9292 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Catja Taralp,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catja Taralp -sn: Taralp -description: This is Catja Taralp's description -facsimileTelephoneNumber: +1 510 616-4971 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 510 249-1856 -title: Associate Product Testing Evangelist -userPassword: Password1 -uid: TaralpC -givenName: Catja -mail: TaralpC@c8ee45aa130e469ab9d08427bf58a160.bitwarden.com -carLicense: CX0EJ0 -departmentNumber: 4344 -employeeType: Employee -homePhone: +1 510 455-9598 -initials: C. T. -mobile: +1 510 100-7363 -pager: +1 510 937-7745 -roomNumber: 9531 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jey Musick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jey Musick -sn: Musick -description: This is Jey Musick's description -facsimileTelephoneNumber: +1 804 297-6926 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 158-1500 -title: Associate Product Testing Madonna -userPassword: Password1 -uid: MusickJ -givenName: Jey -mail: MusickJ@883a827472584ea8ab8edcc535c72169.bitwarden.com -carLicense: 02TCD3 -departmentNumber: 4824 -employeeType: Contract -homePhone: +1 804 585-9715 -initials: J. M. -mobile: +1 804 755-3427 -pager: +1 804 231-3776 -roomNumber: 9134 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kamil Doi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamil Doi -sn: Doi -description: This is Kamil Doi's description -facsimileTelephoneNumber: +1 206 455-6703 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 223-1830 -title: Master Management Fellow -userPassword: Password1 -uid: DoiK -givenName: Kamil -mail: DoiK@2666ff26960c49cbbd8ff121a2639624.bitwarden.com -carLicense: 2SCARP -departmentNumber: 8525 -employeeType: Contract -homePhone: +1 206 612-7037 -initials: K. D. -mobile: +1 206 188-3416 -pager: +1 206 751-9481 -roomNumber: 9248 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlin DeAlmeida -sn: DeAlmeida -description: This is Marlin DeAlmeida's description -facsimileTelephoneNumber: +1 818 264-7105 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 487-7144 -title: Chief Janitorial Director -userPassword: Password1 -uid: DeAlmeiM -givenName: Marlin -mail: DeAlmeiM@a41f06888fb0407e87dd9f629bea1689.bitwarden.com -carLicense: AH1O7T -departmentNumber: 4367 -employeeType: Contract -homePhone: +1 818 566-7076 -initials: M. D. -mobile: +1 818 650-8492 -pager: +1 818 940-6799 -roomNumber: 8860 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lelia Gougeon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lelia Gougeon -sn: Gougeon -description: This is Lelia Gougeon's description -facsimileTelephoneNumber: +1 206 259-1067 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 242-2795 -title: Associate Administrative Madonna -userPassword: Password1 -uid: GougeonL -givenName: Lelia -mail: GougeonL@1bc1409c08584b65b922db79a968ffbf.bitwarden.com -carLicense: KKUVP8 -departmentNumber: 5034 -employeeType: Employee -homePhone: +1 206 768-1836 -initials: L. G. -mobile: +1 206 448-3328 -pager: +1 206 629-5343 -roomNumber: 8427 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mamie Godfrey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mamie Godfrey -sn: Godfrey -description: This is Mamie Godfrey's description -facsimileTelephoneNumber: +1 408 541-3273 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 408 141-9297 -title: Chief Management Director -userPassword: Password1 -uid: GodfreyM -givenName: Mamie -mail: GodfreyM@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com -carLicense: PD99CA -departmentNumber: 1695 -employeeType: Employee -homePhone: +1 408 380-7125 -initials: M. G. -mobile: +1 408 591-2523 -pager: +1 408 658-8745 -roomNumber: 9293 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ibby Dragan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ibby Dragan -sn: Dragan -description: This is Ibby Dragan's description -facsimileTelephoneNumber: +1 213 802-7590 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 121-3541 -title: Master Peons Manager -userPassword: Password1 -uid: DraganI -givenName: Ibby -mail: DraganI@8eaa02b53fec48d0842607d198bfec39.bitwarden.com -carLicense: H1WR93 -departmentNumber: 6844 -employeeType: Normal -homePhone: +1 213 825-9132 -initials: I. D. -mobile: +1 213 501-4800 -pager: +1 213 137-6531 -roomNumber: 8657 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Krier Rouer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krier Rouer -sn: Rouer -description: This is Krier Rouer's description -facsimileTelephoneNumber: +1 804 400-9824 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 476-7413 -title: Supreme Administrative Czar -userPassword: Password1 -uid: RouerK -givenName: Krier -mail: RouerK@d4881d0da2824b94aad995234e30bb1a.bitwarden.com -carLicense: FGR3DM -departmentNumber: 3623 -employeeType: Normal -homePhone: +1 804 544-3279 -initials: K. R. -mobile: +1 804 248-8027 -pager: +1 804 392-5030 -roomNumber: 8162 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Neila Donleycott,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neila Donleycott -sn: Donleycott -description: This is Neila Donleycott's description -facsimileTelephoneNumber: +1 804 551-9139 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 963-1263 -title: Associate Product Development Consultant -userPassword: Password1 -uid: DonleycN -givenName: Neila -mail: DonleycN@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com -carLicense: FWV7B3 -departmentNumber: 5141 -employeeType: Employee -homePhone: +1 804 461-1900 -initials: N. D. -mobile: +1 804 149-1173 -pager: +1 804 461-7769 -roomNumber: 8322 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vithit Toothman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vithit Toothman -sn: Toothman -description: This is Vithit Toothman's description -facsimileTelephoneNumber: +1 408 459-8593 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 806-3211 -title: Master Payroll Mascot -userPassword: Password1 -uid: ToothmaV -givenName: Vithit -mail: ToothmaV@f2f9b94a61d74e48ae3ede318c7f996c.bitwarden.com -carLicense: 6O6FQL -departmentNumber: 3202 -employeeType: Employee -homePhone: +1 408 348-6623 -initials: V. T. -mobile: +1 408 289-2005 -pager: +1 408 960-8185 -roomNumber: 9103 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Brear Wiklund,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brear Wiklund -sn: Wiklund -description: This is Brear Wiklund's description -facsimileTelephoneNumber: +1 804 895-3090 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 374-4973 -title: Supreme Payroll Dictator -userPassword: Password1 -uid: WiklundB -givenName: Brear -mail: WiklundB@b4093fe5132a4a878de6dc85a8b08a1b.bitwarden.com -carLicense: R7Y5AC -departmentNumber: 6044 -employeeType: Contract -homePhone: +1 804 662-4797 -initials: B. W. -mobile: +1 804 967-9700 -pager: +1 804 691-6483 -roomNumber: 8691 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Joletta Chaaban,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joletta Chaaban -sn: Chaaban -description: This is Joletta Chaaban's description -facsimileTelephoneNumber: +1 206 167-9684 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 537-5225 -title: Junior Payroll Director -userPassword: Password1 -uid: ChaabanJ -givenName: Joletta -mail: ChaabanJ@d1a4100b9b9b406ab43bd8e679e7075d.bitwarden.com -carLicense: F43TMN -departmentNumber: 8362 -employeeType: Normal -homePhone: +1 206 961-3851 -initials: J. C. -mobile: +1 206 951-7043 -pager: +1 206 140-2129 -roomNumber: 9482 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Allan Kpodzo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allan Kpodzo -sn: Kpodzo -description: This is Allan Kpodzo's description -facsimileTelephoneNumber: +1 408 387-1121 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 333-8227 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: KpodzoA -givenName: Allan -mail: KpodzoA@bccf93cb8d9f4a129349caa39e630322.bitwarden.com -carLicense: QM7K1L -departmentNumber: 1978 -employeeType: Normal -homePhone: +1 408 105-7195 -initials: A. K. -mobile: +1 408 146-2009 -pager: +1 408 831-5599 -roomNumber: 8975 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alvin Fleishman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvin Fleishman -sn: Fleishman -description: This is Alvin Fleishman's description -facsimileTelephoneNumber: +1 510 249-7855 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 510 869-2776 -title: Chief Administrative Consultant -userPassword: Password1 -uid: FleishmA -givenName: Alvin -mail: FleishmA@893fcaa2270d412d875ced076aac8306.bitwarden.com -carLicense: DV41PA -departmentNumber: 4369 -employeeType: Contract -homePhone: +1 510 641-4642 -initials: A. F. -mobile: +1 510 830-1908 -pager: +1 510 112-4543 -roomNumber: 8723 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Amos Nadeau,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amos Nadeau -sn: Nadeau -description: This is Amos Nadeau's description -facsimileTelephoneNumber: +1 206 894-2401 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 206 846-6157 -title: Associate Administrative Mascot -userPassword: Password1 -uid: NadeauA -givenName: Amos -mail: NadeauA@4683d74c822246798b509a58b74b661d.bitwarden.com -carLicense: N678UB -departmentNumber: 4822 -employeeType: Normal -homePhone: +1 206 562-5811 -initials: A. N. -mobile: +1 206 653-2356 -pager: +1 206 730-1545 -roomNumber: 8317 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fariborz Gubenco -sn: Gubenco -description: This is Fariborz Gubenco's description -facsimileTelephoneNumber: +1 804 419-2964 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 970-8404 -title: Junior Administrative Pinhead -userPassword: Password1 -uid: GubencoF -givenName: Fariborz -mail: GubencoF@b4304c61f77b49d7b5286781d16ef287.bitwarden.com -carLicense: 1MM9E3 -departmentNumber: 2235 -employeeType: Employee -homePhone: +1 804 406-4186 -initials: F. G. -mobile: +1 804 332-3091 -pager: +1 804 497-8195 -roomNumber: 9259 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Astra McPhail,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Astra McPhail -sn: McPhail -description: This is Astra McPhail's description -facsimileTelephoneNumber: +1 408 923-4777 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 795-7214 -title: Supreme Management Janitor -userPassword: Password1 -uid: McPhailA -givenName: Astra -mail: McPhailA@8a9b6d7044ae4a78a0f823a14af47f84.bitwarden.com -carLicense: P276BL -departmentNumber: 3632 -employeeType: Employee -homePhone: +1 408 504-8509 -initials: A. M. -mobile: +1 408 209-9786 -pager: +1 408 432-6534 -roomNumber: 9076 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Miguelita Lukie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miguelita Lukie -sn: Lukie -description: This is Miguelita Lukie's description -facsimileTelephoneNumber: +1 213 882-2814 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 892-8001 -title: Supreme Management Warrior -userPassword: Password1 -uid: LukieM -givenName: Miguelita -mail: LukieM@a98a0b7e8c1d4fe88c53128550e8ca96.bitwarden.com -carLicense: EG637W -departmentNumber: 5561 -employeeType: Contract -homePhone: +1 213 499-9964 -initials: M. L. -mobile: +1 213 337-7860 -pager: +1 213 541-3112 -roomNumber: 8667 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joellen Rummans,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joellen Rummans -sn: Rummans -description: This is Joellen Rummans's description -facsimileTelephoneNumber: +1 213 773-7690 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 858-9018 -title: Master Peons Madonna -userPassword: Password1 -uid: RummansJ -givenName: Joellen -mail: RummansJ@a139b435b4cd48eeb3da7e5c63440d77.bitwarden.com -carLicense: D5VC31 -departmentNumber: 7643 -employeeType: Employee -homePhone: +1 213 111-1947 -initials: J. R. -mobile: +1 213 891-1588 -pager: +1 213 315-7739 -roomNumber: 9748 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Blythe Bessette,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blythe Bessette -sn: Bessette -description: This is Blythe Bessette's description -facsimileTelephoneNumber: +1 818 246-3571 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 818 277-9624 -title: Junior Management Mascot -userPassword: Password1 -uid: BessettB -givenName: Blythe -mail: BessettB@cbb0ee6f701a44b3b861eccb184e6264.bitwarden.com -carLicense: 8UDC7D -departmentNumber: 5114 -employeeType: Contract -homePhone: +1 818 151-4840 -initials: B. B. -mobile: +1 818 328-9290 -pager: +1 818 444-6302 -roomNumber: 8597 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nathan OPERATIONS -sn: OPERATIONS -description: This is Nathan OPERATIONS's description -facsimileTelephoneNumber: +1 804 653-1985 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 683-4698 -title: Chief Peons President -userPassword: Password1 -uid: OPERATIN -givenName: Nathan -mail: OPERATIN@98502193cf164ea4ab82010779caeff8.bitwarden.com -carLicense: 3DF1I2 -departmentNumber: 5431 -employeeType: Employee -homePhone: +1 804 524-4065 -initials: N. O. -mobile: +1 804 415-5568 -pager: +1 804 523-1313 -roomNumber: 9194 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Felipe Dassie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felipe Dassie -sn: Dassie -description: This is Felipe Dassie's description -facsimileTelephoneNumber: +1 408 770-7420 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 408 879-8287 -title: Chief Peons President -userPassword: Password1 -uid: DassieF -givenName: Felipe -mail: DassieF@921728abb6324aefb035d6063e7e1e37.bitwarden.com -carLicense: 007AD8 -departmentNumber: 8777 -employeeType: Employee -homePhone: +1 408 350-1160 -initials: F. D. -mobile: +1 408 695-3951 -pager: +1 408 313-5265 -roomNumber: 8911 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Renu Dermardiros,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renu Dermardiros -sn: Dermardiros -description: This is Renu Dermardiros's description -facsimileTelephoneNumber: +1 510 460-6744 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 547-4600 -title: Supreme Payroll Czar -userPassword: Password1 -uid: DermardR -givenName: Renu -mail: DermardR@e080eb242a96464dba0da1ce711ec7f1.bitwarden.com -carLicense: ARXIV7 -departmentNumber: 9045 -employeeType: Contract -homePhone: +1 510 284-6477 -initials: R. D. -mobile: +1 510 633-7116 -pager: +1 510 808-9559 -roomNumber: 8949 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yen Sails,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yen Sails -sn: Sails -description: This is Yen Sails's description -facsimileTelephoneNumber: +1 206 932-7843 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 321-4104 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: SailsY -givenName: Yen -mail: SailsY@b13bd03113d249d69d9301b44834eaa1.bitwarden.com -carLicense: OD9OHP -departmentNumber: 4384 -employeeType: Contract -homePhone: +1 206 398-3634 -initials: Y. S. -mobile: +1 206 243-1002 -pager: +1 206 890-4887 -roomNumber: 9442 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Claudie Willett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claudie Willett -sn: Willett -description: This is Claudie Willett's description -facsimileTelephoneNumber: +1 213 240-2634 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 243-2566 -title: Associate Management Pinhead -userPassword: Password1 -uid: WillettC -givenName: Claudie -mail: WillettC@7167bede64e647b8a348838a0a19c5fc.bitwarden.com -carLicense: HRUGRU -departmentNumber: 2830 -employeeType: Employee -homePhone: +1 213 818-3260 -initials: C. W. -mobile: +1 213 765-6429 -pager: +1 213 942-2577 -roomNumber: 9101 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Antonia Kashef,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antonia Kashef -sn: Kashef -description: This is Antonia Kashef's description -facsimileTelephoneNumber: +1 510 597-9216 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 622-9108 -title: Junior Product Testing Evangelist -userPassword: Password1 -uid: KashefA -givenName: Antonia -mail: KashefA@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com -carLicense: 3T0EQW -departmentNumber: 1116 -employeeType: Normal -homePhone: +1 510 431-7660 -initials: A. K. -mobile: +1 510 585-5005 -pager: +1 510 249-7654 -roomNumber: 9553 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cleopatra Kikuchi -sn: Kikuchi -description: This is Cleopatra Kikuchi's description -facsimileTelephoneNumber: +1 818 280-5968 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 977-8980 -title: Associate Product Development Grunt -userPassword: Password1 -uid: KikuchiC -givenName: Cleopatra -mail: KikuchiC@e209292ce8494e20a17431a0c16ad1ce.bitwarden.com -carLicense: E252V0 -departmentNumber: 9576 -employeeType: Contract -homePhone: +1 818 254-1752 -initials: C. K. -mobile: +1 818 112-4339 -pager: +1 818 148-6719 -roomNumber: 8638 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leta Weeks,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leta Weeks -sn: Weeks -description: This is Leta Weeks's description -facsimileTelephoneNumber: +1 818 442-5634 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 792-9334 -title: Associate Product Development Visionary -userPassword: Password1 -uid: WeeksL -givenName: Leta -mail: WeeksL@ffdba696892b4a2faf2f9784c5557e4c.bitwarden.com -carLicense: MWV80G -departmentNumber: 2961 -employeeType: Contract -homePhone: +1 818 594-5609 -initials: L. W. -mobile: +1 818 925-5923 -pager: +1 818 548-6764 -roomNumber: 9311 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Saraann Ku,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saraann Ku -sn: Ku -description: This is Saraann Ku's description -facsimileTelephoneNumber: +1 510 756-6497 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 314-4771 -title: Associate Human Resources Czar -userPassword: Password1 -uid: KuS -givenName: Saraann -mail: KuS@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com -carLicense: 9BXRMN -departmentNumber: 1851 -employeeType: Normal -homePhone: +1 510 816-9421 -initials: S. K. -mobile: +1 510 183-4952 -pager: +1 510 459-4050 -roomNumber: 8896 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Malgosia Allaman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malgosia Allaman -sn: Allaman -description: This is Malgosia Allaman's description -facsimileTelephoneNumber: +1 804 425-2900 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 820-6218 -title: Master Peons Fellow -userPassword: Password1 -uid: AllamanM -givenName: Malgosia -mail: AllamanM@a426d86bc70a41169741acf404c40b77.bitwarden.com -carLicense: S22T37 -departmentNumber: 5681 -employeeType: Contract -homePhone: +1 804 444-2298 -initials: M. A. -mobile: +1 804 401-2035 -pager: +1 804 177-5142 -roomNumber: 9303 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dorri Brickey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorri Brickey -sn: Brickey -description: This is Dorri Brickey's description -facsimileTelephoneNumber: +1 206 855-1807 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 532-7081 -title: Master Product Development Engineer -userPassword: Password1 -uid: BrickeyD -givenName: Dorri -mail: BrickeyD@52375a276d8e4116b12e682b77fe0b05.bitwarden.com -carLicense: E6YA2Q -departmentNumber: 6466 -employeeType: Normal -homePhone: +1 206 461-4349 -initials: D. B. -mobile: +1 206 970-2269 -pager: +1 206 111-5541 -roomNumber: 8674 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gilles Tullo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilles Tullo -sn: Tullo -description: This is Gilles Tullo's description -facsimileTelephoneNumber: +1 818 171-9454 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 672-3122 -title: Junior Administrative Artist -userPassword: Password1 -uid: TulloG -givenName: Gilles -mail: TulloG@8cf075f892994459a2bb7138294f3585.bitwarden.com -carLicense: 43BE6G -departmentNumber: 3756 -employeeType: Normal -homePhone: +1 818 604-9100 -initials: G. T. -mobile: +1 818 936-9494 -pager: +1 818 914-2830 -roomNumber: 9466 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Stacia Wever,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacia Wever -sn: Wever -description: This is Stacia Wever's description -facsimileTelephoneNumber: +1 415 479-7895 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 738-5825 -title: Master Administrative Warrior -userPassword: Password1 -uid: WeverS -givenName: Stacia -mail: WeverS@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com -carLicense: CQ53UJ -departmentNumber: 4275 -employeeType: Employee -homePhone: +1 415 715-6702 -initials: S. W. -mobile: +1 415 203-9134 -pager: +1 415 278-1930 -roomNumber: 9105 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Herman Georgiou,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herman Georgiou -sn: Georgiou -description: This is Herman Georgiou's description -facsimileTelephoneNumber: +1 213 682-3242 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 788-5262 -title: Master Management Dictator -userPassword: Password1 -uid: GeorgioH -givenName: Herman -mail: GeorgioH@a96211277807499cbc72ba383cf3f7fd.bitwarden.com -carLicense: SYM2EH -departmentNumber: 1366 -employeeType: Employee -homePhone: +1 213 153-3918 -initials: H. G. -mobile: +1 213 848-1346 -pager: +1 213 335-6069 -roomNumber: 8177 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: QuangTrung Prokop -sn: Prokop -description: This is QuangTrung Prokop's description -facsimileTelephoneNumber: +1 206 197-9480 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 987-4229 -title: Junior Human Resources Manager -userPassword: Password1 -uid: ProkopQ -givenName: QuangTrung -mail: ProkopQ@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com -carLicense: K80PVB -departmentNumber: 7802 -employeeType: Employee -homePhone: +1 206 384-8273 -initials: Q. P. -mobile: +1 206 981-1785 -pager: +1 206 754-4671 -roomNumber: 8605 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Clarey Shibata,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarey Shibata -sn: Shibata -description: This is Clarey Shibata's description -facsimileTelephoneNumber: +1 206 696-4855 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 885-2341 -title: Junior Management Punk -userPassword: Password1 -uid: ShibataC -givenName: Clarey -mail: ShibataC@fcbf2ef1cdb340fcb4c052a580a37b96.bitwarden.com -carLicense: SEBC54 -departmentNumber: 2322 -employeeType: Contract -homePhone: +1 206 463-3665 -initials: C. S. -mobile: +1 206 104-3396 -pager: +1 206 839-4752 -roomNumber: 9542 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Elyn Witzmann,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elyn Witzmann -sn: Witzmann -description: This is Elyn Witzmann's description -facsimileTelephoneNumber: +1 408 581-1343 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 739-8013 -title: Master Peons Manager -userPassword: Password1 -uid: WitzmanE -givenName: Elyn -mail: WitzmanE@37e3de35a8c340a7b99329132ff492e1.bitwarden.com -carLicense: 5T4174 -departmentNumber: 7018 -employeeType: Employee -homePhone: +1 408 805-6829 -initials: E. W. -mobile: +1 408 477-7267 -pager: +1 408 711-2567 -roomNumber: 8354 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Corry Lasch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corry Lasch -sn: Lasch -description: This is Corry Lasch's description -facsimileTelephoneNumber: +1 408 699-6065 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 425-1102 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: LaschC -givenName: Corry -mail: LaschC@b0c3511415624300926253fbc8566845.bitwarden.com -carLicense: R8DPXX -departmentNumber: 5192 -employeeType: Contract -homePhone: +1 408 165-9593 -initials: C. L. -mobile: +1 408 534-2738 -pager: +1 408 640-9497 -roomNumber: 8896 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ilsa Reeder,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilsa Reeder -sn: Reeder -description: This is Ilsa Reeder's description -facsimileTelephoneNumber: +1 510 239-2309 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 384-7337 -title: Chief Product Development Warrior -userPassword: Password1 -uid: ReederI -givenName: Ilsa -mail: ReederI@d52c1f1046c6411eb0907201f8f5a6d8.bitwarden.com -carLicense: 7PUP1S -departmentNumber: 7608 -employeeType: Contract -homePhone: +1 510 120-1785 -initials: I. R. -mobile: +1 510 487-8500 -pager: +1 510 729-9133 -roomNumber: 8078 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yasmin Kopala -sn: Kopala -description: This is Yasmin Kopala's description -facsimileTelephoneNumber: +1 408 905-5021 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 300-2675 -title: Associate Human Resources Grunt -userPassword: Password1 -uid: KopalaY -givenName: Yasmin -mail: KopalaY@e47f64bef69f4dd48dddefa04608b96f.bitwarden.com -carLicense: HHACY2 -departmentNumber: 2876 -employeeType: Contract -homePhone: +1 408 940-8494 -initials: Y. K. -mobile: +1 408 948-6024 -pager: +1 408 539-2796 -roomNumber: 9222 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dpn Lanunix -sn: Lanunix -description: This is Dpn Lanunix's description -facsimileTelephoneNumber: +1 206 548-6020 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 555-7054 -title: Chief Human Resources Manager -userPassword: Password1 -uid: LanunixD -givenName: Dpn -mail: LanunixD@d8b377610c7d421f8eec4a02e5fb3c9d.bitwarden.com -carLicense: KPHRT6 -departmentNumber: 1437 -employeeType: Normal -homePhone: +1 206 299-6561 -initials: D. L. -mobile: +1 206 853-5612 -pager: +1 206 686-1197 -roomNumber: 8927 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shaib Fysh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaib Fysh -sn: Fysh -description: This is Shaib Fysh's description -facsimileTelephoneNumber: +1 510 548-9778 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 937-9911 -title: Junior Payroll Janitor -userPassword: Password1 -uid: FyshS -givenName: Shaib -mail: FyshS@5d8cc64a505e4795adb2db74fb44a1cf.bitwarden.com -carLicense: QN68C6 -departmentNumber: 1941 -employeeType: Contract -homePhone: +1 510 572-7777 -initials: S. F. -mobile: +1 510 849-9825 -pager: +1 510 403-1933 -roomNumber: 8465 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorilyn Swearingen -sn: Swearingen -description: This is Lorilyn Swearingen's description -facsimileTelephoneNumber: +1 804 761-8904 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 591-9191 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: SwearinL -givenName: Lorilyn -mail: SwearinL@c50e1d17976a4acebd18f01bbfd46623.bitwarden.com -carLicense: 7EFB17 -departmentNumber: 3210 -employeeType: Employee -homePhone: +1 804 627-3214 -initials: L. S. -mobile: +1 804 269-8710 -pager: +1 804 904-2249 -roomNumber: 8734 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Goldarina Delaat,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Goldarina Delaat -sn: Delaat -description: This is Goldarina Delaat's description -facsimileTelephoneNumber: +1 206 287-3130 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 206 110-8569 -title: Chief Administrative Technician -userPassword: Password1 -uid: DelaatG -givenName: Goldarina -mail: DelaatG@75858e9b0a57431ea93369d3d0fdb55e.bitwarden.com -carLicense: 93VWX4 -departmentNumber: 3640 -employeeType: Normal -homePhone: +1 206 842-2821 -initials: G. D. -mobile: +1 206 239-6124 -pager: +1 206 907-8812 -roomNumber: 9982 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margo Kolodiejchuk -sn: Kolodiejchuk -description: This is Margo Kolodiejchuk's description -facsimileTelephoneNumber: +1 408 621-2344 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 471-5428 -title: Master Payroll Manager -userPassword: Password1 -uid: KolodieM -givenName: Margo -mail: KolodieM@f99fab41afc647d5a865c56f14ad624d.bitwarden.com -carLicense: UT7CDE -departmentNumber: 9417 -employeeType: Normal -homePhone: +1 408 692-2289 -initials: M. K. -mobile: +1 408 963-1153 -pager: +1 408 966-2189 -roomNumber: 8917 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Con Liskoff,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Con Liskoff -sn: Liskoff -description: This is Con Liskoff's description -facsimileTelephoneNumber: +1 804 601-3383 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 497-6932 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: LiskoffC -givenName: Con -mail: LiskoffC@ac5ce5b90419470188e40d8780712bf4.bitwarden.com -carLicense: 01JASH -departmentNumber: 8392 -employeeType: Normal -homePhone: +1 804 180-2011 -initials: C. L. -mobile: +1 804 468-2620 -pager: +1 804 773-1903 -roomNumber: 8204 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dannie Belaire,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dannie Belaire -sn: Belaire -description: This is Dannie Belaire's description -facsimileTelephoneNumber: +1 415 252-6578 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 415 735-5337 -title: Associate Payroll Visionary -userPassword: Password1 -uid: BelaireD -givenName: Dannie -mail: BelaireD@b885e453b9ed486ebec88cb2a7678928.bitwarden.com -carLicense: UBCJKE -departmentNumber: 7005 -employeeType: Normal -homePhone: +1 415 667-3784 -initials: D. B. -mobile: +1 415 355-5351 -pager: +1 415 387-2386 -roomNumber: 8272 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Syyed Nasato,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Syyed Nasato -sn: Nasato -description: This is Syyed Nasato's description -facsimileTelephoneNumber: +1 804 896-7578 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 599-8089 -title: Master Payroll Consultant -userPassword: Password1 -uid: NasatoS -givenName: Syyed -mail: NasatoS@35062355c8cb4574a234b41f34896a6b.bitwarden.com -carLicense: VLT2E4 -departmentNumber: 4735 -employeeType: Employee -homePhone: +1 804 176-7759 -initials: S. N. -mobile: +1 804 954-2706 -pager: +1 804 135-3162 -roomNumber: 9444 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Paloma Meijer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paloma Meijer -sn: Meijer -description: This is Paloma Meijer's description -facsimileTelephoneNumber: +1 804 114-3693 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 680-4770 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: MeijerP -givenName: Paloma -mail: MeijerP@35a90dbd42ea4858949658f923e13119.bitwarden.com -carLicense: PEUY50 -departmentNumber: 3329 -employeeType: Contract -homePhone: +1 804 711-8203 -initials: P. M. -mobile: +1 804 192-4710 -pager: +1 804 179-6833 -roomNumber: 9172 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marleen Cucuzzella -sn: Cucuzzella -description: This is Marleen Cucuzzella's description -facsimileTelephoneNumber: +1 510 767-1189 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 607-8777 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: CucuzzeM -givenName: Marleen -mail: CucuzzeM@4bf79c0ee4d34c7692b9804d098856ec.bitwarden.com -carLicense: OIX4AN -departmentNumber: 5465 -employeeType: Normal -homePhone: +1 510 126-3275 -initials: M. C. -mobile: +1 510 637-2847 -pager: +1 510 447-9164 -roomNumber: 9822 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anestassia Pilch,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anestassia Pilch -sn: Pilch -description: This is Anestassia Pilch's description -facsimileTelephoneNumber: +1 415 934-2759 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 803-5199 -title: Junior Product Development Stooge -userPassword: Password1 -uid: PilchA -givenName: Anestassia -mail: PilchA@64cec2e36e064bf29124f55fbca16d06.bitwarden.com -carLicense: NGMQP4 -departmentNumber: 9579 -employeeType: Contract -homePhone: +1 415 743-8192 -initials: A. P. -mobile: +1 415 904-1927 -pager: +1 415 195-4668 -roomNumber: 8248 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Caroline Weakley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caroline Weakley -sn: Weakley -description: This is Caroline Weakley's description -facsimileTelephoneNumber: +1 213 788-9551 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 417-5604 -title: Master Management Admin -userPassword: Password1 -uid: WeakleyC -givenName: Caroline -mail: WeakleyC@c38fb3d41e6d4c59bb5e63a066239f4b.bitwarden.com -carLicense: UX8UEJ -departmentNumber: 7797 -employeeType: Contract -homePhone: +1 213 477-9344 -initials: C. W. -mobile: +1 213 115-1607 -pager: +1 213 920-1912 -roomNumber: 9721 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Brad Widener,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brad Widener -sn: Widener -description: This is Brad Widener's description -facsimileTelephoneNumber: +1 804 459-3110 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 642-8265 -title: Chief Peons Pinhead -userPassword: Password1 -uid: WidenerB -givenName: Brad -mail: WidenerB@3b22641d076842469513221f673236de.bitwarden.com -carLicense: C3B9DA -departmentNumber: 9743 -employeeType: Normal -homePhone: +1 804 199-3929 -initials: B. W. -mobile: +1 804 867-3030 -pager: +1 804 454-1100 -roomNumber: 9331 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nga Holvey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nga Holvey -sn: Holvey -description: This is Nga Holvey's description -facsimileTelephoneNumber: +1 818 474-3661 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 818 739-5602 -title: Supreme Payroll Punk -userPassword: Password1 -uid: HolveyN -givenName: Nga -mail: HolveyN@a902f1ad65b842baa48923792860ef8e.bitwarden.com -carLicense: 0EB0CF -departmentNumber: 8198 -employeeType: Employee -homePhone: +1 818 801-9812 -initials: N. H. -mobile: +1 818 446-3224 -pager: +1 818 945-4535 -roomNumber: 8469 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Breanne Hatten,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Breanne Hatten -sn: Hatten -description: This is Breanne Hatten's description -facsimileTelephoneNumber: +1 206 149-4991 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 206 874-3738 -title: Master Peons Writer -userPassword: Password1 -uid: HattenB -givenName: Breanne -mail: HattenB@7e87a6fdda7846518a51a730a93f1c6d.bitwarden.com -carLicense: MCC9NV -departmentNumber: 5336 -employeeType: Normal -homePhone: +1 206 907-4359 -initials: B. H. -mobile: +1 206 984-8939 -pager: +1 206 535-7148 -roomNumber: 8323 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Babita Yuhn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Babita Yuhn -sn: Yuhn -description: This is Babita Yuhn's description -facsimileTelephoneNumber: +1 818 937-3100 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 818 937-1993 -title: Chief Janitorial Sales Rep -userPassword: Password1 -uid: YuhnB -givenName: Babita -mail: YuhnB@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com -carLicense: 44BKTE -departmentNumber: 7359 -employeeType: Normal -homePhone: +1 818 243-9030 -initials: B. Y. -mobile: +1 818 650-4842 -pager: +1 818 314-4279 -roomNumber: 8496 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bhupendra Caplinger -sn: Caplinger -description: This is Bhupendra Caplinger's description -facsimileTelephoneNumber: +1 510 116-6584 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 515-3881 -title: Chief Janitorial Writer -userPassword: Password1 -uid: CaplingB -givenName: Bhupendra -mail: CaplingB@866dcdf7141f4b00b327974f7403df8c.bitwarden.com -carLicense: 4545AF -departmentNumber: 7104 -employeeType: Normal -homePhone: +1 510 675-8983 -initials: B. C. -mobile: +1 510 463-2464 -pager: +1 510 283-9260 -roomNumber: 8064 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sanjoy Burbage,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanjoy Burbage -sn: Burbage -description: This is Sanjoy Burbage's description -facsimileTelephoneNumber: +1 510 939-1145 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 229-8584 -title: Master Management Dictator -userPassword: Password1 -uid: BurbageS -givenName: Sanjoy -mail: BurbageS@d9cdf2972f5548b0814498e608f03bf6.bitwarden.com -carLicense: NY6QLM -departmentNumber: 5213 -employeeType: Contract -homePhone: +1 510 968-9733 -initials: S. B. -mobile: +1 510 652-2231 -pager: +1 510 917-5535 -roomNumber: 8244 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hettie Grassmann,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hettie Grassmann -sn: Grassmann -description: This is Hettie Grassmann's description -facsimileTelephoneNumber: +1 415 653-4177 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 536-2658 -title: Junior Payroll Fellow -userPassword: Password1 -uid: GrassmaH -givenName: Hettie -mail: GrassmaH@49634f2a5e564b13843ce74e45cd5b8f.bitwarden.com -carLicense: 92L2A6 -departmentNumber: 2806 -employeeType: Normal -homePhone: +1 415 309-2680 -initials: H. G. -mobile: +1 415 150-1230 -pager: +1 415 615-2787 -roomNumber: 8583 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacques Lobello,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacques Lobello -sn: Lobello -description: This is Jacques Lobello's description -facsimileTelephoneNumber: +1 510 110-3140 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 625-8146 -title: Junior Administrative Sales Rep -userPassword: Password1 -uid: LobelloJ -givenName: Jacques -mail: LobelloJ@23cf32b7148140cfb4b02ddf8d62cfa5.bitwarden.com -carLicense: PJ09JA -departmentNumber: 6788 -employeeType: Normal -homePhone: +1 510 500-7016 -initials: J. L. -mobile: +1 510 822-4135 -pager: +1 510 523-7107 -roomNumber: 9795 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Susi Vezina,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susi Vezina -sn: Vezina -description: This is Susi Vezina's description -facsimileTelephoneNumber: +1 213 832-2140 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 213 441-6406 -title: Associate Product Testing Architect -userPassword: Password1 -uid: VezinaS -givenName: Susi -mail: VezinaS@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com -carLicense: 5KGVSH -departmentNumber: 6142 -employeeType: Contract -homePhone: +1 213 619-4340 -initials: S. V. -mobile: +1 213 858-9861 -pager: +1 213 869-7106 -roomNumber: 8348 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulo Watanabe -sn: Watanabe -description: This is Paulo Watanabe's description -facsimileTelephoneNumber: +1 415 921-1124 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 276-2003 -title: Master Janitorial Consultant -userPassword: Password1 -uid: WatanabP -givenName: Paulo -mail: WatanabP@91415ae4cae4467d8a1e1d9b9c594a7c.bitwarden.com -carLicense: WPCJC8 -departmentNumber: 4654 -employeeType: Normal -homePhone: +1 415 751-2697 -initials: P. W. -mobile: +1 415 379-5103 -pager: +1 415 335-5126 -roomNumber: 9906 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hynek Bergland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hynek Bergland -sn: Bergland -description: This is Hynek Bergland's description -facsimileTelephoneNumber: +1 408 266-8356 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 408 390-8810 -title: Associate Janitorial Developer -userPassword: Password1 -uid: BerglanH -givenName: Hynek -mail: BerglanH@648152cfae1e47ffa5e239f481673983.bitwarden.com -carLicense: P4LECH -departmentNumber: 6237 -employeeType: Contract -homePhone: +1 408 829-9058 -initials: H. B. -mobile: +1 408 813-3377 -pager: +1 408 673-2783 -roomNumber: 9397 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilyse VanSchyndel -sn: VanSchyndel -description: This is Ilyse VanSchyndel's description -facsimileTelephoneNumber: +1 415 145-8163 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 279-6748 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: VanSchyI -givenName: Ilyse -mail: VanSchyI@05612bbc895f46abb970a45c00f480d9.bitwarden.com -carLicense: 158UFC -departmentNumber: 5413 -employeeType: Contract -homePhone: +1 415 761-7157 -initials: I. V. -mobile: +1 415 478-5635 -pager: +1 415 762-7546 -roomNumber: 9124 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Brenton Zou,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brenton Zou -sn: Zou -description: This is Brenton Zou's description -facsimileTelephoneNumber: +1 415 784-3614 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 849-6547 -title: Chief Human Resources Artist -userPassword: Password1 -uid: ZouB -givenName: Brenton -mail: ZouB@264d4763d0c84adba308d4c4cab556c4.bitwarden.com -carLicense: 8XETTD -departmentNumber: 7699 -employeeType: Employee -homePhone: +1 415 696-6236 -initials: B. Z. -mobile: +1 415 539-9472 -pager: +1 415 902-7380 -roomNumber: 8453 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florina HowePatterson -sn: HowePatterson -description: This is Florina HowePatterson's description -facsimileTelephoneNumber: +1 510 441-3132 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 846-8117 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: HowePatF -givenName: Florina -mail: HowePatF@a0859d351c9f4c38bafe2c10a4129e60.bitwarden.com -carLicense: 7GMYQ6 -departmentNumber: 5900 -employeeType: Contract -homePhone: +1 510 565-2549 -initials: F. H. -mobile: +1 510 611-7948 -pager: +1 510 213-3617 -roomNumber: 9779 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mohamed Popper,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mohamed Popper -sn: Popper -description: This is Mohamed Popper's description -facsimileTelephoneNumber: +1 206 166-5544 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 129-2531 -title: Junior Peons Assistant -userPassword: Password1 -uid: PopperM -givenName: Mohamed -mail: PopperM@7f4b5ca02e594ee8a8204a5051500312.bitwarden.com -carLicense: V4A59Y -departmentNumber: 6017 -employeeType: Normal -homePhone: +1 206 474-1092 -initials: M. P. -mobile: +1 206 179-5338 -pager: +1 206 721-2604 -roomNumber: 8804 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dnadoc Tejada -sn: Tejada -description: This is Dnadoc Tejada's description -facsimileTelephoneNumber: +1 206 661-6923 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 206 616-3759 -title: Supreme Payroll Assistant -userPassword: Password1 -uid: TejadaD -givenName: Dnadoc -mail: TejadaD@039e3a194ecb4b229b6171f883dbe2ca.bitwarden.com -carLicense: SET8T3 -departmentNumber: 8858 -employeeType: Employee -homePhone: +1 206 901-3904 -initials: D. T. -mobile: +1 206 539-6622 -pager: +1 206 475-9765 -roomNumber: 8943 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Suzan Brisebois,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzan Brisebois -sn: Brisebois -description: This is Suzan Brisebois's description -facsimileTelephoneNumber: +1 408 917-2274 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 291-4156 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: BriseboS -givenName: Suzan -mail: BriseboS@befc232b3f4240ada061cd42724f306e.bitwarden.com -carLicense: GR657V -departmentNumber: 5254 -employeeType: Contract -homePhone: +1 408 961-4577 -initials: S. B. -mobile: +1 408 577-7655 -pager: +1 408 113-6427 -roomNumber: 9877 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Violette Capostagno,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Violette Capostagno -sn: Capostagno -description: This is Violette Capostagno's description -facsimileTelephoneNumber: +1 408 481-8365 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 680-3424 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: CapostaV -givenName: Violette -mail: CapostaV@33b35540a4bc4f6baa81886f1273a7c9.bitwarden.com -carLicense: 4AD2D0 -departmentNumber: 2543 -employeeType: Contract -homePhone: +1 408 838-3972 -initials: V. C. -mobile: +1 408 907-6165 -pager: +1 408 469-7154 -roomNumber: 9674 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolyn Shoemaker -sn: Shoemaker -description: This is Jolyn Shoemaker's description -facsimileTelephoneNumber: +1 206 171-6403 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 403-8739 -title: Chief Payroll Warrior -userPassword: Password1 -uid: ShoemakJ -givenName: Jolyn -mail: ShoemakJ@1566e50dd621416d8ec481ceb9271778.bitwarden.com -carLicense: 2WNWOD -departmentNumber: 4400 -employeeType: Contract -homePhone: +1 206 597-4881 -initials: J. S. -mobile: +1 206 649-9184 -pager: +1 206 208-1391 -roomNumber: 9259 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darsey BrownGillard -sn: BrownGillard -description: This is Darsey BrownGillard's description -facsimileTelephoneNumber: +1 213 997-8219 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 213 545-6626 -title: Junior Administrative Punk -userPassword: Password1 -uid: BrownGiD -givenName: Darsey -mail: BrownGiD@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com -carLicense: 6AV4KC -departmentNumber: 1102 -employeeType: Normal -homePhone: +1 213 989-6160 -initials: D. B. -mobile: +1 213 228-2130 -pager: +1 213 270-5323 -roomNumber: 9550 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Liem Dalloste,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liem Dalloste -sn: Dalloste -description: This is Liem Dalloste's description -facsimileTelephoneNumber: +1 408 305-3313 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 424-1550 -title: Junior Management Punk -userPassword: Password1 -uid: DallostL -givenName: Liem -mail: DallostL@a17de6ea9dda4d659f1501b4b4ed4d2a.bitwarden.com -carLicense: NY26N7 -departmentNumber: 7091 -employeeType: Contract -homePhone: +1 408 346-7622 -initials: L. D. -mobile: +1 408 511-8621 -pager: +1 408 745-1988 -roomNumber: 8939 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bernita Hui,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernita Hui -sn: Hui -description: This is Bernita Hui's description -facsimileTelephoneNumber: +1 408 506-2842 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 119-4434 -title: Chief Product Testing Writer -userPassword: Password1 -uid: HuiB -givenName: Bernita -mail: HuiB@155d681ec6564fc8a96a2716f8046f1d.bitwarden.com -carLicense: 9HHMP4 -departmentNumber: 4823 -employeeType: Employee -homePhone: +1 408 688-6511 -initials: B. H. -mobile: +1 408 121-8860 -pager: +1 408 351-8896 -roomNumber: 9251 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mab Bhatia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mab Bhatia -sn: Bhatia -description: This is Mab Bhatia's description -facsimileTelephoneNumber: +1 213 202-4084 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 230-9129 -title: Supreme Product Development Admin -userPassword: Password1 -uid: BhatiaM -givenName: Mab -mail: BhatiaM@f5afe6422dca491da65fa6a254990cc8.bitwarden.com -carLicense: SXMYS7 -departmentNumber: 8780 -employeeType: Contract -homePhone: +1 213 757-2334 -initials: M. B. -mobile: +1 213 471-7286 -pager: +1 213 459-5671 -roomNumber: 9996 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bamby Ressner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bamby Ressner -sn: Ressner -description: This is Bamby Ressner's description -facsimileTelephoneNumber: +1 510 956-8327 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 778-4211 -title: Chief Human Resources Figurehead -userPassword: Password1 -uid: RessnerB -givenName: Bamby -mail: RessnerB@c32875a7d5c84e0cbf7df721e038b80b.bitwarden.com -carLicense: N76AR3 -departmentNumber: 9698 -employeeType: Employee -homePhone: +1 510 992-7854 -initials: B. R. -mobile: +1 510 980-7867 -pager: +1 510 212-4934 -roomNumber: 9623 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moniek Kamminga -sn: Kamminga -description: This is Moniek Kamminga's description -facsimileTelephoneNumber: +1 804 115-4244 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 804 945-5815 -title: Master Human Resources Technician -userPassword: Password1 -uid: KammingM -givenName: Moniek -mail: KammingM@a922ba05488e401e9633fbd1813d714f.bitwarden.com -carLicense: LN1GD2 -departmentNumber: 6386 -employeeType: Normal -homePhone: +1 804 494-6388 -initials: M. K. -mobile: +1 804 957-4507 -pager: +1 804 581-4353 -roomNumber: 9458 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nadir Harold,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nadir Harold -sn: Harold -description: This is Nadir Harold's description -facsimileTelephoneNumber: +1 818 385-6589 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 254-8685 -title: Supreme Administrative Developer -userPassword: Password1 -uid: HaroldN -givenName: Nadir -mail: HaroldN@0452103199be4e45a9d502fc8103d707.bitwarden.com -carLicense: 6VJAJK -departmentNumber: 1767 -employeeType: Contract -homePhone: +1 818 209-9906 -initials: N. H. -mobile: +1 818 361-1551 -pager: +1 818 140-3924 -roomNumber: 9035 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Norikazu Loughery,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norikazu Loughery -sn: Loughery -description: This is Norikazu Loughery's description -facsimileTelephoneNumber: +1 206 329-8321 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 895-1240 -title: Supreme Administrative President -userPassword: Password1 -uid: LougherN -givenName: Norikazu -mail: LougherN@a8523f0ff874441ba48222b981c29c83.bitwarden.com -carLicense: HM6Y9B -departmentNumber: 9443 -employeeType: Normal -homePhone: +1 206 411-3825 -initials: N. L. -mobile: +1 206 256-6800 -pager: +1 206 204-7251 -roomNumber: 9358 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gerda Cuthill,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerda Cuthill -sn: Cuthill -description: This is Gerda Cuthill's description -facsimileTelephoneNumber: +1 510 303-7102 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 436-1761 -title: Associate Payroll Vice President -userPassword: Password1 -uid: CuthillG -givenName: Gerda -mail: CuthillG@ad0ef2c2568345158919240fe983f26f.bitwarden.com -carLicense: RN97KF -departmentNumber: 6470 -employeeType: Employee -homePhone: +1 510 845-1205 -initials: G. C. -mobile: +1 510 280-9870 -pager: +1 510 830-8047 -roomNumber: 9412 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subhash Ranoa -sn: Ranoa -description: This is Subhash Ranoa's description -facsimileTelephoneNumber: +1 415 258-2071 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 379-7476 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: RanoaS -givenName: Subhash -mail: RanoaS@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com -carLicense: G9CCXH -departmentNumber: 9987 -employeeType: Contract -homePhone: +1 415 712-6197 -initials: S. R. -mobile: +1 415 311-9700 -pager: +1 415 588-6198 -roomNumber: 9303 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Blakeley Moynihan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blakeley Moynihan -sn: Moynihan -description: This is Blakeley Moynihan's description -facsimileTelephoneNumber: +1 818 100-4389 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 203-6844 -title: Associate Management Czar -userPassword: Password1 -uid: MoynihaB -givenName: Blakeley -mail: MoynihaB@b6c212225ddb4f9ba95fbbaec945f94a.bitwarden.com -carLicense: RJWKP4 -departmentNumber: 6765 -employeeType: Normal -homePhone: +1 818 197-4582 -initials: B. M. -mobile: +1 818 401-2734 -pager: +1 818 568-1792 -roomNumber: 9247 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ronni DMSDB,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronni DMSDB -sn: DMSDB -description: This is Ronni DMSDB's description -facsimileTelephoneNumber: +1 213 865-1932 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 180-2571 -title: Chief Administrative Czar -userPassword: Password1 -uid: DMSDBR -givenName: Ronni -mail: DMSDBR@353b753321aa4a97a115856474e231b6.bitwarden.com -carLicense: R3O7YC -departmentNumber: 3947 -employeeType: Contract -homePhone: +1 213 234-3360 -initials: R. D. -mobile: +1 213 413-2708 -pager: +1 213 819-5131 -roomNumber: 8248 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kemal Theocharakis -sn: Theocharakis -description: This is Kemal Theocharakis's description -facsimileTelephoneNumber: +1 804 137-5577 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 214-8056 -title: Supreme Administrative Punk -userPassword: Password1 -uid: TheochaK -givenName: Kemal -mail: TheochaK@f724343d8470496bb0df55542d73aa26.bitwarden.com -carLicense: C2A9PW -departmentNumber: 4831 -employeeType: Normal -homePhone: +1 804 855-8095 -initials: K. T. -mobile: +1 804 701-8827 -pager: +1 804 810-3452 -roomNumber: 8960 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Desdemona Howes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desdemona Howes -sn: Howes -description: This is Desdemona Howes's description -facsimileTelephoneNumber: +1 213 239-2988 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 676-6055 -title: Associate Product Development Punk -userPassword: Password1 -uid: HowesD -givenName: Desdemona -mail: HowesD@d402d45df6ee44758d534e95cb5617f0.bitwarden.com -carLicense: 8U0PB7 -departmentNumber: 1716 -employeeType: Contract -homePhone: +1 213 233-6205 -initials: D. H. -mobile: +1 213 675-8073 -pager: +1 213 138-1119 -roomNumber: 8779 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Micaela Grelck,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micaela Grelck -sn: Grelck -description: This is Micaela Grelck's description -facsimileTelephoneNumber: +1 818 858-4301 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 458-4855 -title: Associate Administrative Stooge -userPassword: Password1 -uid: GrelckM -givenName: Micaela -mail: GrelckM@24d7cb43aaeb44b593ff6b98218942cd.bitwarden.com -carLicense: V6APCD -departmentNumber: 9396 -employeeType: Employee -homePhone: +1 818 668-7708 -initials: M. G. -mobile: +1 818 257-4711 -pager: +1 818 807-9817 -roomNumber: 9608 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natala Yarbrough -sn: Yarbrough -description: This is Natala Yarbrough's description -facsimileTelephoneNumber: +1 408 303-8251 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 835-2029 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: YarbrouN -givenName: Natala -mail: YarbrouN@3ff7146541124494b887915621fe41a5.bitwarden.com -carLicense: 2W5O65 -departmentNumber: 1481 -employeeType: Normal -homePhone: +1 408 445-7270 -initials: N. Y. -mobile: +1 408 180-1955 -pager: +1 408 508-8160 -roomNumber: 8482 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Moria Brandstadt,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moria Brandstadt -sn: Brandstadt -description: This is Moria Brandstadt's description -facsimileTelephoneNumber: +1 415 515-1736 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 269-8105 -title: Supreme Peons Warrior -userPassword: Password1 -uid: BrandstM -givenName: Moria -mail: BrandstM@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com -carLicense: UOL8RL -departmentNumber: 1225 -employeeType: Contract -homePhone: +1 415 486-6084 -initials: M. B. -mobile: +1 415 478-5757 -pager: +1 415 445-1154 -roomNumber: 8040 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Raf VanAlphen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raf VanAlphen -sn: VanAlphen -description: This is Raf VanAlphen's description -facsimileTelephoneNumber: +1 415 374-7528 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 430-2694 -title: Supreme Management Writer -userPassword: Password1 -uid: VanAlphR -givenName: Raf -mail: VanAlphR@b5110eee63164b03a1156fbe465ff053.bitwarden.com -carLicense: 6NPNWW -departmentNumber: 6456 -employeeType: Employee -homePhone: +1 415 702-2084 -initials: R. V. -mobile: +1 415 724-6527 -pager: +1 415 269-9973 -roomNumber: 8097 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jianli Seniuk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jianli Seniuk -sn: Seniuk -description: This is Jianli Seniuk's description -facsimileTelephoneNumber: +1 804 805-6790 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 655-2074 -title: Chief Management Grunt -userPassword: Password1 -uid: SeniukJ -givenName: Jianli -mail: SeniukJ@9d1f7bcfce524784b93c42075dd94a6c.bitwarden.com -carLicense: NEWMUF -departmentNumber: 1058 -employeeType: Employee -homePhone: +1 804 595-8286 -initials: J. S. -mobile: +1 804 255-2942 -pager: +1 804 708-1004 -roomNumber: 9643 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Stephani Wheatley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephani Wheatley -sn: Wheatley -description: This is Stephani Wheatley's description -facsimileTelephoneNumber: +1 206 988-8095 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 200-1585 -title: Junior Administrative Mascot -userPassword: Password1 -uid: WheatleS -givenName: Stephani -mail: WheatleS@f759e44a1c504c63b3eae17c75b66fa2.bitwarden.com -carLicense: Y13GA3 -departmentNumber: 7719 -employeeType: Normal -homePhone: +1 206 494-6890 -initials: S. W. -mobile: +1 206 850-7275 -pager: +1 206 909-3357 -roomNumber: 9205 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Misty Jamison,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Misty Jamison -sn: Jamison -description: This is Misty Jamison's description -facsimileTelephoneNumber: +1 818 193-3912 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 818 729-4772 -title: Master Product Development Vice President -userPassword: Password1 -uid: JamisonM -givenName: Misty -mail: JamisonM@e084ec394e994677a50d409a6357c42a.bitwarden.com -carLicense: 5A0DS6 -departmentNumber: 5486 -employeeType: Employee -homePhone: +1 818 449-4478 -initials: M. J. -mobile: +1 818 816-7526 -pager: +1 818 241-3358 -roomNumber: 9316 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Liduine Brindley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liduine Brindley -sn: Brindley -description: This is Liduine Brindley's description -facsimileTelephoneNumber: +1 804 743-2137 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 409-4896 -title: Master Janitorial Writer -userPassword: Password1 -uid: BrindleL -givenName: Liduine -mail: BrindleL@b3c93053c0224253988d5c3b976abcae.bitwarden.com -carLicense: UH9BKF -departmentNumber: 2947 -employeeType: Normal -homePhone: +1 804 498-8099 -initials: L. B. -mobile: +1 804 208-9084 -pager: +1 804 170-4929 -roomNumber: 8539 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Inam Cripps,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inam Cripps -sn: Cripps -description: This is Inam Cripps's description -facsimileTelephoneNumber: +1 804 146-3351 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 804 390-3197 -title: Chief Payroll President -userPassword: Password1 -uid: CrippsI -givenName: Inam -mail: CrippsI@98610eb59a8644899b5f6a7dba9c32ac.bitwarden.com -carLicense: SKMITF -departmentNumber: 3035 -employeeType: Contract -homePhone: +1 804 192-8218 -initials: I. C. -mobile: +1 804 761-1096 -pager: +1 804 699-9697 -roomNumber: 8246 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Megumi Sattler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Megumi Sattler -sn: Sattler -description: This is Megumi Sattler's description -facsimileTelephoneNumber: +1 818 198-8812 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 613-9708 -title: Junior Management Writer -userPassword: Password1 -uid: SattlerM -givenName: Megumi -mail: SattlerM@17fbe5ad18ef4466b77b146a182aae32.bitwarden.com -carLicense: W3N9MA -departmentNumber: 9550 -employeeType: Normal -homePhone: +1 818 841-3463 -initials: M. S. -mobile: +1 818 279-7630 -pager: +1 818 376-8654 -roomNumber: 9669 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marlies Zalokar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlies Zalokar -sn: Zalokar -description: This is Marlies Zalokar's description -facsimileTelephoneNumber: +1 206 937-8625 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 500-8356 -title: Junior Administrative Figurehead -userPassword: Password1 -uid: ZalokarM -givenName: Marlies -mail: ZalokarM@540d8b0a17d449ce8bcc397ded86d3bf.bitwarden.com -carLicense: VAR0GP -departmentNumber: 1028 -employeeType: Normal -homePhone: +1 206 326-6131 -initials: M. Z. -mobile: +1 206 843-6262 -pager: +1 206 269-3623 -roomNumber: 9154 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tiphanie Banik,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiphanie Banik -sn: Banik -description: This is Tiphanie Banik's description -facsimileTelephoneNumber: +1 408 893-7626 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 140-9368 -title: Junior Management Visionary -userPassword: Password1 -uid: BanikT -givenName: Tiphanie -mail: BanikT@4ac57cc4c8df40e5be8ca01811d8b65f.bitwarden.com -carLicense: QI9P31 -departmentNumber: 3242 -employeeType: Contract -homePhone: +1 408 764-1434 -initials: T. B. -mobile: +1 408 762-1494 -pager: +1 408 122-8606 -roomNumber: 9193 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rosene Couse,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosene Couse -sn: Couse -description: This is Rosene Couse's description -facsimileTelephoneNumber: +1 818 387-3067 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 818 834-5653 -title: Associate Payroll Manager -userPassword: Password1 -uid: CouseR -givenName: Rosene -mail: CouseR@466f24c0ae9947d2a9b6e4673a116085.bitwarden.com -carLicense: R2LFQ6 -departmentNumber: 8274 -employeeType: Contract -homePhone: +1 818 396-5213 -initials: R. C. -mobile: +1 818 277-2158 -pager: +1 818 863-1276 -roomNumber: 8335 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Adoree Sevilla,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adoree Sevilla -sn: Sevilla -description: This is Adoree Sevilla's description -facsimileTelephoneNumber: +1 206 405-2053 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 206 767-3625 -title: Associate Product Development Czar -userPassword: Password1 -uid: SevillaA -givenName: Adoree -mail: SevillaA@b8436b0997234174a1d3652199251b81.bitwarden.com -carLicense: CLCAJB -departmentNumber: 9205 -employeeType: Employee -homePhone: +1 206 757-3224 -initials: A. S. -mobile: +1 206 244-5719 -pager: +1 206 879-5618 -roomNumber: 9831 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Caye Clinton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caye Clinton -sn: Clinton -description: This is Caye Clinton's description -facsimileTelephoneNumber: +1 415 378-2655 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 675-2905 -title: Chief Management Fellow -userPassword: Password1 -uid: ClintonC -givenName: Caye -mail: ClintonC@ab847cb978244923bfe5ad73b2ff99dc.bitwarden.com -carLicense: 9MIKJT -departmentNumber: 5478 -employeeType: Contract -homePhone: +1 415 518-4984 -initials: C. C. -mobile: +1 415 998-2534 -pager: +1 415 104-2536 -roomNumber: 9587 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ernie Waybright,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ernie Waybright -sn: Waybright -description: This is Ernie Waybright's description -facsimileTelephoneNumber: +1 408 158-9920 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 796-2970 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: WaybrigE -givenName: Ernie -mail: WaybrigE@d5b185918176486786ef73f8f666edb2.bitwarden.com -carLicense: AY7VB8 -departmentNumber: 1646 -employeeType: Normal -homePhone: +1 408 488-5210 -initials: E. W. -mobile: +1 408 575-8552 -pager: +1 408 290-7706 -roomNumber: 8775 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Doc Hamlett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doc Hamlett -sn: Hamlett -description: This is Doc Hamlett's description -facsimileTelephoneNumber: +1 818 216-2825 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 882-8030 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: HamlettD -givenName: Doc -mail: HamlettD@941810c9cdbf4e55b754495e8f57a20a.bitwarden.com -carLicense: QQBPRG -departmentNumber: 7838 -employeeType: Contract -homePhone: +1 818 256-9767 -initials: D. H. -mobile: +1 818 460-5119 -pager: +1 818 773-5836 -roomNumber: 8283 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Abdul Peschke,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abdul Peschke -sn: Peschke -description: This is Abdul Peschke's description -facsimileTelephoneNumber: +1 510 726-8503 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 795-4300 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: PeschkeA -givenName: Abdul -mail: PeschkeA@fa78ddbf4a824e749170662a86f94ae1.bitwarden.com -carLicense: 62N37W -departmentNumber: 2628 -employeeType: Normal -homePhone: +1 510 244-7437 -initials: A. P. -mobile: +1 510 102-5225 -pager: +1 510 131-4508 -roomNumber: 8474 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cordi Systest,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cordi Systest -sn: Systest -description: This is Cordi Systest's description -facsimileTelephoneNumber: +1 408 882-9587 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 791-4653 -title: Chief Payroll Director -userPassword: Password1 -uid: SystestC -givenName: Cordi -mail: SystestC@ee3b17b3006441ea89cd65327cca286b.bitwarden.com -carLicense: 8G5HS0 -departmentNumber: 3740 -employeeType: Contract -homePhone: +1 408 945-4240 -initials: C. S. -mobile: +1 408 156-5206 -pager: +1 408 233-2472 -roomNumber: 9286 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jania Mong,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jania Mong -sn: Mong -description: This is Jania Mong's description -facsimileTelephoneNumber: +1 804 860-5320 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 794-7809 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: MongJ -givenName: Jania -mail: MongJ@9f0f27ec9d584e2ca9d6420c7dbe54a3.bitwarden.com -carLicense: XAO77E -departmentNumber: 3101 -employeeType: Normal -homePhone: +1 804 103-6648 -initials: J. M. -mobile: +1 804 640-1218 -pager: +1 804 923-4969 -roomNumber: 9535 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kristi Plato,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristi Plato -sn: Plato -description: This is Kristi Plato's description -facsimileTelephoneNumber: +1 804 185-8041 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 635-5101 -title: Master Product Testing Czar -userPassword: Password1 -uid: PlatoK -givenName: Kristi -mail: PlatoK@defaeef7e5514df8a6f49e7ca33a461b.bitwarden.com -carLicense: RRNHEG -departmentNumber: 9710 -employeeType: Normal -homePhone: +1 804 657-5616 -initials: K. P. -mobile: +1 804 896-1272 -pager: +1 804 122-7871 -roomNumber: 8460 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Simeon Schober,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Simeon Schober -sn: Schober -description: This is Simeon Schober's description -facsimileTelephoneNumber: +1 510 374-1744 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 478-5898 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: SchoberS -givenName: Simeon -mail: SchoberS@edbf1767c38f4bddb743829cf9c30bc0.bitwarden.com -carLicense: DQMC4H -departmentNumber: 2766 -employeeType: Contract -homePhone: +1 510 619-9825 -initials: S. S. -mobile: +1 510 289-9992 -pager: +1 510 387-7192 -roomNumber: 9299 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leyton Artuso,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leyton Artuso -sn: Artuso -description: This is Leyton Artuso's description -facsimileTelephoneNumber: +1 804 329-1249 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 173-4699 -title: Master Payroll Stooge -userPassword: Password1 -uid: ArtusoL -givenName: Leyton -mail: ArtusoL@a16de69a6d644f62a90c207d5ff7152f.bitwarden.com -carLicense: 7SIB1W -departmentNumber: 4647 -employeeType: Contract -homePhone: +1 804 544-8050 -initials: L. A. -mobile: +1 804 566-9838 -pager: +1 804 871-1929 -roomNumber: 9509 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Di Corritore,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Di Corritore -sn: Corritore -description: This is Di Corritore's description -facsimileTelephoneNumber: +1 804 392-3361 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 856-6973 -title: Junior Human Resources Visionary -userPassword: Password1 -uid: CorritoD -givenName: Di -mail: CorritoD@f167cff0138c406287e1a7234664f7ea.bitwarden.com -carLicense: CC1CUO -departmentNumber: 4692 -employeeType: Contract -homePhone: +1 804 306-8241 -initials: D. C. -mobile: +1 804 253-5099 -pager: +1 804 344-9552 -roomNumber: 8097 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Norbert Meubus,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norbert Meubus -sn: Meubus -description: This is Norbert Meubus's description -facsimileTelephoneNumber: +1 213 480-2587 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 967-9681 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: MeubusN -givenName: Norbert -mail: MeubusN@8967a677365042bf9b4c49a667cc17a9.bitwarden.com -carLicense: LIJPOJ -departmentNumber: 9419 -employeeType: Contract -homePhone: +1 213 787-9466 -initials: N. M. -mobile: +1 213 584-9240 -pager: +1 213 713-6515 -roomNumber: 8887 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Allsun Briard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allsun Briard -sn: Briard -description: This is Allsun Briard's description -facsimileTelephoneNumber: +1 408 632-3937 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 108-8660 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: BriardA -givenName: Allsun -mail: BriardA@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com -carLicense: IJ91TT -departmentNumber: 6793 -employeeType: Contract -homePhone: +1 408 871-8492 -initials: A. B. -mobile: +1 408 876-8976 -pager: +1 408 629-2180 -roomNumber: 9846 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rec Desjardins,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rec Desjardins -sn: Desjardins -description: This is Rec Desjardins's description -facsimileTelephoneNumber: +1 213 247-8311 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 875-6748 -title: Chief Administrative Evangelist -userPassword: Password1 -uid: DesjardR -givenName: Rec -mail: DesjardR@bf2777e1bdc741d1becaefb23144f2ff.bitwarden.com -carLicense: 5RIY7W -departmentNumber: 1349 -employeeType: Employee -homePhone: +1 213 827-4169 -initials: R. D. -mobile: +1 213 577-6512 -pager: +1 213 687-1421 -roomNumber: 8570 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Daveen Portelance,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daveen Portelance -sn: Portelance -description: This is Daveen Portelance's description -facsimileTelephoneNumber: +1 213 712-9985 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 507-3987 -title: Associate Administrative Consultant -userPassword: Password1 -uid: PortelaD -givenName: Daveen -mail: PortelaD@51972c3fcd684339942be0fdc3e53b2a.bitwarden.com -carLicense: 6B3GJS -departmentNumber: 8428 -employeeType: Contract -homePhone: +1 213 724-9766 -initials: D. P. -mobile: +1 213 848-7563 -pager: +1 213 236-7497 -roomNumber: 9757 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laureen Ikotin -sn: Ikotin -description: This is Laureen Ikotin's description -facsimileTelephoneNumber: +1 213 270-7975 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 632-2599 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: IkotinL -givenName: Laureen -mail: IkotinL@4467185dad394a2ab964d923a668f7a8.bitwarden.com -carLicense: Y1Y99P -departmentNumber: 3387 -employeeType: Employee -homePhone: +1 213 424-3466 -initials: L. I. -mobile: +1 213 878-9151 -pager: +1 213 533-4161 -roomNumber: 9465 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Christel Lebon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christel Lebon -sn: Lebon -description: This is Christel Lebon's description -facsimileTelephoneNumber: +1 415 159-5373 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 139-9034 -title: Master Product Development Admin -userPassword: Password1 -uid: LebonC -givenName: Christel -mail: LebonC@8959763ade854592b5aa640be7f6b9e1.bitwarden.com -carLicense: N7J8F1 -departmentNumber: 8447 -employeeType: Normal -homePhone: +1 415 742-7738 -initials: C. L. -mobile: +1 415 510-6381 -pager: +1 415 638-5471 -roomNumber: 8879 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aura Kloth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aura Kloth -sn: Kloth -description: This is Aura Kloth's description -facsimileTelephoneNumber: +1 213 247-1458 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 641-2093 -title: Chief Janitorial Manager -userPassword: Password1 -uid: KlothA -givenName: Aura -mail: KlothA@0dddb86650e94c559800b280597f0c4c.bitwarden.com -carLicense: 1E3BKC -departmentNumber: 8030 -employeeType: Employee -homePhone: +1 213 885-3824 -initials: A. K. -mobile: +1 213 707-6316 -pager: +1 213 671-2386 -roomNumber: 9097 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Laser Totino,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laser Totino -sn: Totino -description: This is Laser Totino's description -facsimileTelephoneNumber: +1 408 269-9865 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 244-1350 -title: Junior Product Development Mascot -userPassword: Password1 -uid: TotinoL -givenName: Laser -mail: TotinoL@9190783dca9540caa517cb6cbdd19160.bitwarden.com -carLicense: LEAAOB -departmentNumber: 1135 -employeeType: Normal -homePhone: +1 408 447-2645 -initials: L. T. -mobile: +1 408 480-3564 -pager: +1 408 698-9297 -roomNumber: 8829 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mike Engman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mike Engman -sn: Engman -description: This is Mike Engman's description -facsimileTelephoneNumber: +1 818 701-4182 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 726-8231 -title: Chief Human Resources Czar -userPassword: Password1 -uid: EngmanM -givenName: Mike -mail: EngmanM@096bd16e7b9047ef820ae279d36addd1.bitwarden.com -carLicense: CB7IRK -departmentNumber: 2470 -employeeType: Employee -homePhone: +1 818 367-2992 -initials: M. E. -mobile: +1 818 920-7686 -pager: +1 818 825-5318 -roomNumber: 8698 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marijo Tranter,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marijo Tranter -sn: Tranter -description: This is Marijo Tranter's description -facsimileTelephoneNumber: +1 804 473-3806 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 161-6235 -title: Master Peons Evangelist -userPassword: Password1 -uid: TranterM -givenName: Marijo -mail: TranterM@06df9cb737014f4380a57a8c4a3ae0ca.bitwarden.com -carLicense: W05VF8 -departmentNumber: 7760 -employeeType: Contract -homePhone: +1 804 327-6199 -initials: M. T. -mobile: +1 804 689-7845 -pager: +1 804 201-3044 -roomNumber: 9885 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mainoo Fran,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mainoo Fran -sn: Fran -description: This is Mainoo Fran's description -facsimileTelephoneNumber: +1 206 438-3243 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 206 142-4118 -title: Associate Peons Grunt -userPassword: Password1 -uid: FranM -givenName: Mainoo -mail: FranM@9fee234f1d9045788518ccfa0390a5ac.bitwarden.com -carLicense: 7INL2O -departmentNumber: 6252 -employeeType: Employee -homePhone: +1 206 180-2054 -initials: M. F. -mobile: +1 206 121-6872 -pager: +1 206 482-9859 -roomNumber: 8624 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Janos Coulman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janos Coulman -sn: Coulman -description: This is Janos Coulman's description -facsimileTelephoneNumber: +1 213 695-1746 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 254-5704 -title: Supreme Administrative Architect -userPassword: Password1 -uid: CoulmanJ -givenName: Janos -mail: CoulmanJ@7c4650791d5f415f847cb32968294e66.bitwarden.com -carLicense: P95R67 -departmentNumber: 3430 -employeeType: Contract -homePhone: +1 213 807-7663 -initials: J. C. -mobile: +1 213 798-3506 -pager: +1 213 471-8983 -roomNumber: 8830 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lacey Benfield,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lacey Benfield -sn: Benfield -description: This is Lacey Benfield's description -facsimileTelephoneNumber: +1 408 310-2593 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 290-1351 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: BenfielL -givenName: Lacey -mail: BenfielL@4b7280a9bb884d1e9623c6b7302b3c2a.bitwarden.com -carLicense: 4E0I7L -departmentNumber: 1396 -employeeType: Employee -homePhone: +1 408 888-9954 -initials: L. B. -mobile: +1 408 955-5162 -pager: +1 408 844-7477 -roomNumber: 9470 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Harrie Devenyi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harrie Devenyi -sn: Devenyi -description: This is Harrie Devenyi's description -facsimileTelephoneNumber: +1 510 119-3549 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 367-5530 -title: Master Management Writer -userPassword: Password1 -uid: DevenyiH -givenName: Harrie -mail: DevenyiH@da5a908240674035b4f089697eec14f2.bitwarden.com -carLicense: PGDY42 -departmentNumber: 3319 -employeeType: Normal -homePhone: +1 510 208-7627 -initials: H. D. -mobile: +1 510 872-2969 -pager: +1 510 884-8307 -roomNumber: 9633 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lishe Tatum,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lishe Tatum -sn: Tatum -description: This is Lishe Tatum's description -facsimileTelephoneNumber: +1 510 431-3318 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 640-2815 -title: Associate Product Development Punk -userPassword: Password1 -uid: TatumL -givenName: Lishe -mail: TatumL@2172785b8d9f4adca3b3c11556362a8d.bitwarden.com -carLicense: BV8X8S -departmentNumber: 7671 -employeeType: Employee -homePhone: +1 510 629-3104 -initials: L. T. -mobile: +1 510 575-8598 -pager: +1 510 708-3431 -roomNumber: 9823 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gena Skwarok,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gena Skwarok -sn: Skwarok -description: This is Gena Skwarok's description -facsimileTelephoneNumber: +1 510 278-4719 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 992-1452 -title: Associate Janitorial Manager -userPassword: Password1 -uid: SkwarokG -givenName: Gena -mail: SkwarokG@e442907aab1c4de2a3d2eb6b7fab8ddf.bitwarden.com -carLicense: 0TA9M7 -departmentNumber: 6001 -employeeType: Normal -homePhone: +1 510 163-3471 -initials: G. S. -mobile: +1 510 882-5528 -pager: +1 510 670-9948 -roomNumber: 9950 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ileane Thomaier -sn: Thomaier -description: This is Ileane Thomaier's description -facsimileTelephoneNumber: +1 206 970-2233 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 691-6010 -title: Master Human Resources Director -userPassword: Password1 -uid: ThomaieI -givenName: Ileane -mail: ThomaieI@f0c445142fda405aa9dfac5dc2ebfc44.bitwarden.com -carLicense: I3X7RC -departmentNumber: 6982 -employeeType: Contract -homePhone: +1 206 733-9571 -initials: I. T. -mobile: +1 206 380-4344 -pager: +1 206 424-5365 -roomNumber: 9748 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=PierreAndre Crucefix,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PierreAndre Crucefix -sn: Crucefix -description: This is PierreAndre Crucefix's description -facsimileTelephoneNumber: +1 818 853-9842 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 127-4905 -title: Junior Management Architect -userPassword: Password1 -uid: CrucefiP -givenName: PierreAndre -mail: CrucefiP@6529706823d04eeaa37acaabefd44ca6.bitwarden.com -carLicense: TS6CTG -departmentNumber: 8308 -employeeType: Employee -homePhone: +1 818 584-3515 -initials: P. C. -mobile: +1 818 179-5310 -pager: +1 818 158-6580 -roomNumber: 8468 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ree Smits,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ree Smits -sn: Smits -description: This is Ree Smits's description -facsimileTelephoneNumber: +1 415 905-6258 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 415 162-1080 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: SmitsR -givenName: Ree -mail: SmitsR@052e52ce35f04f70be77c9d468493034.bitwarden.com -carLicense: 6I53QO -departmentNumber: 7854 -employeeType: Normal -homePhone: +1 415 873-8231 -initials: R. S. -mobile: +1 415 643-9992 -pager: +1 415 687-8590 -roomNumber: 8410 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Panch Talbot,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Panch Talbot -sn: Talbot -description: This is Panch Talbot's description -facsimileTelephoneNumber: +1 818 131-4812 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 312-2957 -title: Master Product Development Pinhead -userPassword: Password1 -uid: TalbotP -givenName: Panch -mail: TalbotP@53855167a537436d8e1bbb93f42697aa.bitwarden.com -carLicense: PN8EEA -departmentNumber: 3609 -employeeType: Contract -homePhone: +1 818 906-7051 -initials: P. T. -mobile: +1 818 230-2899 -pager: +1 818 656-2100 -roomNumber: 8220 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Janean Wittich,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janean Wittich -sn: Wittich -description: This is Janean Wittich's description -facsimileTelephoneNumber: +1 818 799-3590 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 818 961-8496 -title: Associate Payroll Admin -userPassword: Password1 -uid: WittichJ -givenName: Janean -mail: WittichJ@f1af10e65a3c4deea04ab7a7f844eadd.bitwarden.com -carLicense: A0OTRP -departmentNumber: 5423 -employeeType: Contract -homePhone: +1 818 114-2894 -initials: J. W. -mobile: +1 818 734-6406 -pager: +1 818 619-2090 -roomNumber: 9893 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Notley Loyola,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Notley Loyola -sn: Loyola -description: This is Notley Loyola's description -facsimileTelephoneNumber: +1 213 618-1798 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 786-8178 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: LoyolaN -givenName: Notley -mail: LoyolaN@cab7f96e07f64f6bbb85fb9b89c17c94.bitwarden.com -carLicense: J56CMK -departmentNumber: 9184 -employeeType: Employee -homePhone: +1 213 959-3041 -initials: N. L. -mobile: +1 213 759-1047 -pager: +1 213 126-5545 -roomNumber: 8878 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shunhui Montuno -sn: Montuno -description: This is Shunhui Montuno's description -facsimileTelephoneNumber: +1 510 576-3373 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 520-8920 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: MontunoS -givenName: Shunhui -mail: MontunoS@bd9027744e31459db23a7217225fbe23.bitwarden.com -carLicense: XW8BIN -departmentNumber: 7791 -employeeType: Employee -homePhone: +1 510 668-1837 -initials: S. M. -mobile: +1 510 243-5057 -pager: +1 510 828-4321 -roomNumber: 9467 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhansukh Jones -sn: Jones -description: This is Dhansukh Jones's description -facsimileTelephoneNumber: +1 510 156-7477 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 657-7796 -title: Master Human Resources Engineer -userPassword: Password1 -uid: JonesD -givenName: Dhansukh -mail: JonesD@4bdb34fb0864411d8dbdc932e9545ec7.bitwarden.com -carLicense: RYD1TK -departmentNumber: 5155 -employeeType: Employee -homePhone: +1 510 521-4353 -initials: D. J. -mobile: +1 510 379-9120 -pager: +1 510 483-5784 -roomNumber: 9482 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Caitlin Grover,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caitlin Grover -sn: Grover -description: This is Caitlin Grover's description -facsimileTelephoneNumber: +1 818 200-9761 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 818 534-1242 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: GroverC -givenName: Caitlin -mail: GroverC@8a2b562f0ebe48deb34ccc278a542072.bitwarden.com -carLicense: 9G99WF -departmentNumber: 6162 -employeeType: Employee -homePhone: +1 818 132-9941 -initials: C. G. -mobile: +1 818 788-7086 -pager: +1 818 154-1196 -roomNumber: 9191 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Icylyn MacLeod -sn: MacLeod -description: This is Icylyn MacLeod's description -facsimileTelephoneNumber: +1 818 607-7793 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 582-6698 -title: Chief Human Resources Vice President -userPassword: Password1 -uid: MacLeodI -givenName: Icylyn -mail: MacLeodI@a768ee42cf36461cb3b1a0b6949b0e29.bitwarden.com -carLicense: GIW29G -departmentNumber: 2140 -employeeType: Normal -homePhone: +1 818 499-3581 -initials: I. M. -mobile: +1 818 645-8846 -pager: +1 818 341-5817 -roomNumber: 8141 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cissy Paris,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cissy Paris -sn: Paris -description: This is Cissy Paris's description -facsimileTelephoneNumber: +1 408 659-7016 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 508-2996 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: ParisC -givenName: Cissy -mail: ParisC@f648ab5b740d44ca8b0dc821ba7c94a0.bitwarden.com -carLicense: 9YYFHP -departmentNumber: 8806 -employeeType: Employee -homePhone: +1 408 778-5863 -initials: C. P. -mobile: +1 408 850-2997 -pager: +1 408 923-5442 -roomNumber: 9028 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kedah Hedman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kedah Hedman -sn: Hedman -description: This is Kedah Hedman's description -facsimileTelephoneNumber: +1 206 281-7870 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 206 606-9243 -title: Master Janitorial Technician -userPassword: Password1 -uid: HedmanK -givenName: Kedah -mail: HedmanK@ed2fd2ca43bb4b14bff25d5cd87d9abc.bitwarden.com -carLicense: V09268 -departmentNumber: 8969 -employeeType: Contract -homePhone: +1 206 318-3082 -initials: K. H. -mobile: +1 206 165-9635 -pager: +1 206 850-7085 -roomNumber: 8236 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Susy Simard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susy Simard -sn: Simard -description: This is Susy Simard's description -facsimileTelephoneNumber: +1 818 140-2655 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 543-1997 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: SimardS -givenName: Susy -mail: SimardS@5f40d634eafb4f78acd0b5b4ff05298b.bitwarden.com -carLicense: 6RXDXH -departmentNumber: 6291 -employeeType: Employee -homePhone: +1 818 891-3544 -initials: S. S. -mobile: +1 818 671-4124 -pager: +1 818 181-3467 -roomNumber: 9407 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Enriqueta Maynard -sn: Maynard -description: This is Enriqueta Maynard's description -facsimileTelephoneNumber: +1 408 659-9728 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 542-3393 -title: Associate Administrative Sales Rep -userPassword: Password1 -uid: MaynardE -givenName: Enriqueta -mail: MaynardE@9b70e886a18d422fa3404374b5a9613c.bitwarden.com -carLicense: QLTMWH -departmentNumber: 5124 -employeeType: Normal -homePhone: +1 408 923-9383 -initials: E. M. -mobile: +1 408 160-8406 -pager: +1 408 428-3952 -roomNumber: 8560 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nahum Mofina,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nahum Mofina -sn: Mofina -description: This is Nahum Mofina's description -facsimileTelephoneNumber: +1 213 364-6818 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 213 668-3636 -title: Associate Payroll Writer -userPassword: Password1 -uid: MofinaN -givenName: Nahum -mail: MofinaN@0aee22428274445fb9c2a16b33d788f7.bitwarden.com -carLicense: 7IFRO6 -departmentNumber: 2623 -employeeType: Contract -homePhone: +1 213 139-5411 -initials: N. M. -mobile: +1 213 126-6425 -pager: +1 213 186-9799 -roomNumber: 9832 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Patti Simcoe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patti Simcoe -sn: Simcoe -description: This is Patti Simcoe's description -facsimileTelephoneNumber: +1 510 903-2937 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 289-7706 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: SimcoeP -givenName: Patti -mail: SimcoeP@bcd6417c39254a37b7a0a0d395d66c96.bitwarden.com -carLicense: A1VGXG -departmentNumber: 3159 -employeeType: Normal -homePhone: +1 510 754-4100 -initials: P. S. -mobile: +1 510 768-9823 -pager: +1 510 202-6636 -roomNumber: 8535 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Clarisse McArthur,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarisse McArthur -sn: McArthur -description: This is Clarisse McArthur's description -facsimileTelephoneNumber: +1 818 924-9015 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 588-7341 -title: Associate Administrative Dictator -userPassword: Password1 -uid: McArthuC -givenName: Clarisse -mail: McArthuC@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com -carLicense: G3HUIH -departmentNumber: 1991 -employeeType: Contract -homePhone: +1 818 125-7866 -initials: C. M. -mobile: +1 818 989-1141 -pager: +1 818 963-4692 -roomNumber: 9113 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ZehirCharlie Kastelberg -sn: Kastelberg -description: This is ZehirCharlie Kastelberg's description -facsimileTelephoneNumber: +1 415 343-2881 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 774-8275 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: KastelbZ -givenName: ZehirCharlie -mail: KastelbZ@264cb0b5ded347678dd5fba66a4be57f.bitwarden.com -carLicense: E88GKG -departmentNumber: 1692 -employeeType: Normal -homePhone: +1 415 928-6475 -initials: Z. K. -mobile: +1 415 403-6246 -pager: +1 415 260-5516 -roomNumber: 8525 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dwight Naujoks,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dwight Naujoks -sn: Naujoks -description: This is Dwight Naujoks's description -facsimileTelephoneNumber: +1 804 125-6547 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 737-5554 -title: Master Peons Dictator -userPassword: Password1 -uid: NaujoksD -givenName: Dwight -mail: NaujoksD@af7402077fba4129bbcd03f9bf068e4f.bitwarden.com -carLicense: EF8VW0 -departmentNumber: 2834 -employeeType: Normal -homePhone: +1 804 260-8385 -initials: D. N. -mobile: +1 804 744-2300 -pager: +1 804 658-9502 -roomNumber: 8372 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Melodee Buzzell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melodee Buzzell -sn: Buzzell -description: This is Melodee Buzzell's description -facsimileTelephoneNumber: +1 213 161-6786 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 900-6269 -title: Associate Payroll Dictator -userPassword: Password1 -uid: BuzzellM -givenName: Melodee -mail: BuzzellM@eaa1c30d2e624c8ba36eae1d34cb0c00.bitwarden.com -carLicense: 516OTO -departmentNumber: 1011 -employeeType: Employee -homePhone: +1 213 252-5520 -initials: M. B. -mobile: +1 213 395-6377 -pager: +1 213 505-5417 -roomNumber: 8791 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Schouwen Chahal,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Schouwen Chahal -sn: Chahal -description: This is Schouwen Chahal's description -facsimileTelephoneNumber: +1 415 846-9170 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 224-8055 -title: Associate Product Development Developer -userPassword: Password1 -uid: ChahalS -givenName: Schouwen -mail: ChahalS@3546d29dd7834be9b84722d152b319e0.bitwarden.com -carLicense: M3TBM7 -departmentNumber: 3457 -employeeType: Employee -homePhone: +1 415 679-3955 -initials: S. C. -mobile: +1 415 319-8232 -pager: +1 415 811-4749 -roomNumber: 9310 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kanya Reuben,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanya Reuben -sn: Reuben -description: This is Kanya Reuben's description -facsimileTelephoneNumber: +1 415 615-5096 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 355-4657 -title: Chief Administrative Manager -userPassword: Password1 -uid: ReubenK -givenName: Kanya -mail: ReubenK@e5bf2a74f7d948bb97855f44d83972fe.bitwarden.com -carLicense: VP0RHP -departmentNumber: 9540 -employeeType: Normal -homePhone: +1 415 331-4076 -initials: K. R. -mobile: +1 415 153-9538 -pager: +1 415 531-4179 -roomNumber: 8897 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marji Corvo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marji Corvo -sn: Corvo -description: This is Marji Corvo's description -facsimileTelephoneNumber: +1 804 548-5857 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 844-3268 -title: Associate Payroll Admin -userPassword: Password1 -uid: CorvoM -givenName: Marji -mail: CorvoM@eb78b63b75ba4f27a8837a49801a5d87.bitwarden.com -carLicense: IUKW9B -departmentNumber: 7035 -employeeType: Employee -homePhone: +1 804 879-4979 -initials: M. C. -mobile: +1 804 903-4715 -pager: +1 804 956-7714 -roomNumber: 8811 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Annarbor Zitko,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annarbor Zitko -sn: Zitko -description: This is Annarbor Zitko's description -facsimileTelephoneNumber: +1 408 604-5625 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 989-6030 -title: Junior Management Artist -userPassword: Password1 -uid: ZitkoA -givenName: Annarbor -mail: ZitkoA@c21c5e2df59f42bd80274a7d5eb23246.bitwarden.com -carLicense: XIB7L6 -departmentNumber: 6605 -employeeType: Normal -homePhone: +1 408 105-5552 -initials: A. Z. -mobile: +1 408 168-1849 -pager: +1 408 503-1742 -roomNumber: 8101 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Genovera Thibodeaux,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genovera Thibodeaux -sn: Thibodeaux -description: This is Genovera Thibodeaux's description -facsimileTelephoneNumber: +1 415 145-2946 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 707-4737 -title: Master Management Writer -userPassword: Password1 -uid: ThibodeG -givenName: Genovera -mail: ThibodeG@6fcf3faf71c9481bb038b9b9074ab98d.bitwarden.com -carLicense: I2BTHJ -departmentNumber: 2365 -employeeType: Employee -homePhone: +1 415 539-4528 -initials: G. T. -mobile: +1 415 251-9642 -pager: +1 415 762-7572 -roomNumber: 9702 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Aleen Gure,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aleen Gure -sn: Gure -description: This is Aleen Gure's description -facsimileTelephoneNumber: +1 818 771-5304 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 818 754-6628 -title: Supreme Peons Writer -userPassword: Password1 -uid: GureA -givenName: Aleen -mail: GureA@918d2d4077734b5f89b3311e0d63e21b.bitwarden.com -carLicense: 9BVUCA -departmentNumber: 5114 -employeeType: Employee -homePhone: +1 818 993-5816 -initials: A. G. -mobile: +1 818 845-3126 -pager: +1 818 619-6656 -roomNumber: 9748 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Trever Jowett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trever Jowett -sn: Jowett -description: This is Trever Jowett's description -facsimileTelephoneNumber: +1 206 716-4526 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 916-9773 -title: Associate Payroll Punk -userPassword: Password1 -uid: JowettT -givenName: Trever -mail: JowettT@439323a8d95149fea66efa1b90531fea.bitwarden.com -carLicense: LJB3UN -departmentNumber: 9812 -employeeType: Employee -homePhone: +1 206 853-6134 -initials: T. J. -mobile: +1 206 678-6918 -pager: +1 206 867-9925 -roomNumber: 8146 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Concettina Cegelski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Concettina Cegelski -sn: Cegelski -description: This is Concettina Cegelski's description -facsimileTelephoneNumber: +1 804 407-5480 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 195-1990 -title: Master Peons Vice President -userPassword: Password1 -uid: CegelskC -givenName: Concettina -mail: CegelskC@4855de695c764b0c94d33f9516982d93.bitwarden.com -carLicense: 2MRPMW -departmentNumber: 4117 -employeeType: Employee -homePhone: +1 804 413-7831 -initials: C. C. -mobile: +1 804 591-1774 -pager: +1 804 660-6088 -roomNumber: 9831 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eleen Lew,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eleen Lew -sn: Lew -description: This is Eleen Lew's description -facsimileTelephoneNumber: +1 804 145-6612 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 105-6709 -title: Junior Management Sales Rep -userPassword: Password1 -uid: LewE -givenName: Eleen -mail: LewE@f67253dadd384838b6a62668b81ee96d.bitwarden.com -carLicense: MDY89F -departmentNumber: 2937 -employeeType: Employee -homePhone: +1 804 550-8721 -initials: E. L. -mobile: +1 804 142-7561 -pager: +1 804 187-2186 -roomNumber: 8710 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Minna Reddington,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minna Reddington -sn: Reddington -description: This is Minna Reddington's description -facsimileTelephoneNumber: +1 408 511-7104 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 408 571-4969 -title: Supreme Product Development Admin -userPassword: Password1 -uid: ReddingM -givenName: Minna -mail: ReddingM@f962e28831974b93a906a03bfb585f1d.bitwarden.com -carLicense: O1AE3P -departmentNumber: 1492 -employeeType: Normal -homePhone: +1 408 642-3452 -initials: M. R. -mobile: +1 408 258-5491 -pager: +1 408 933-6481 -roomNumber: 9172 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Stateson Benning,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stateson Benning -sn: Benning -description: This is Stateson Benning's description -facsimileTelephoneNumber: +1 818 489-5771 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 616-5455 -title: Junior Administrative Writer -userPassword: Password1 -uid: BenningS -givenName: Stateson -mail: BenningS@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com -carLicense: SWED2U -departmentNumber: 7320 -employeeType: Normal -homePhone: +1 818 177-2030 -initials: S. B. -mobile: +1 818 996-5623 -pager: +1 818 573-5311 -roomNumber: 9280 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emil Pavlic,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emil Pavlic -sn: Pavlic -description: This is Emil Pavlic's description -facsimileTelephoneNumber: +1 213 825-8823 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 461-7339 -title: Associate Product Development Stooge -userPassword: Password1 -uid: PavlicE -givenName: Emil -mail: PavlicE@d5f1e05d95aa48aa94789d8e594894db.bitwarden.com -carLicense: E66Q5U -departmentNumber: 8440 -employeeType: Contract -homePhone: +1 213 132-8907 -initials: E. P. -mobile: +1 213 987-7089 -pager: +1 213 420-3084 -roomNumber: 9519 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kassia Newnam,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kassia Newnam -sn: Newnam -description: This is Kassia Newnam's description -facsimileTelephoneNumber: +1 206 691-7359 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 230-5322 -title: Junior Payroll Vice President -userPassword: Password1 -uid: NewnamK -givenName: Kassia -mail: NewnamK@775db391b36843f3b6967be5112cd7c8.bitwarden.com -carLicense: NO4SPL -departmentNumber: 5940 -employeeType: Employee -homePhone: +1 206 143-2896 -initials: K. N. -mobile: +1 206 649-1595 -pager: +1 206 495-8784 -roomNumber: 8109 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Clarke Angeli,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarke Angeli -sn: Angeli -description: This is Clarke Angeli's description -facsimileTelephoneNumber: +1 804 856-3821 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 412-9255 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: AngeliC -givenName: Clarke -mail: AngeliC@d5e1ce2fb74a43bfad3a9a3884b1f907.bitwarden.com -carLicense: FGJBAX -departmentNumber: 1945 -employeeType: Normal -homePhone: +1 804 529-7762 -initials: C. A. -mobile: +1 804 398-4878 -pager: +1 804 498-2921 -roomNumber: 8019 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Flor Rabon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flor Rabon -sn: Rabon -description: This is Flor Rabon's description -facsimileTelephoneNumber: +1 818 226-8245 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 717-9050 -title: Supreme Administrative Pinhead -userPassword: Password1 -uid: RabonF -givenName: Flor -mail: RabonF@a8d52d2b633f41a2be5b6bf6015e6a0d.bitwarden.com -carLicense: FK13UN -departmentNumber: 4347 -employeeType: Employee -homePhone: +1 818 713-3573 -initials: F. R. -mobile: +1 818 222-7879 -pager: +1 818 735-1601 -roomNumber: 9059 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Damian Berning,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Damian Berning -sn: Berning -description: This is Damian Berning's description -facsimileTelephoneNumber: +1 206 682-6040 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 372-8904 -title: Junior Product Development Mascot -userPassword: Password1 -uid: BerningD -givenName: Damian -mail: BerningD@02ff8597c50443248a49f6bef6b843ff.bitwarden.com -carLicense: E3A861 -departmentNumber: 2986 -employeeType: Contract -homePhone: +1 206 818-1832 -initials: D. B. -mobile: +1 206 183-5949 -pager: +1 206 332-2358 -roomNumber: 9080 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cristal Lum,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristal Lum -sn: Lum -description: This is Cristal Lum's description -facsimileTelephoneNumber: +1 206 502-4243 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 129-9705 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: LumC -givenName: Cristal -mail: LumC@8883700de05445f081429f80d76247cb.bitwarden.com -carLicense: SVSNS2 -departmentNumber: 6075 -employeeType: Contract -homePhone: +1 206 285-9905 -initials: C. L. -mobile: +1 206 360-4975 -pager: +1 206 511-8344 -roomNumber: 9696 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Palme Lystuik,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Palme Lystuik -sn: Lystuik -description: This is Palme Lystuik's description -facsimileTelephoneNumber: +1 510 750-5245 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 796-1248 -title: Chief Human Resources Stooge -userPassword: Password1 -uid: LystuikP -givenName: Palme -mail: LystuikP@5ee91f5143cf4d9ead291d13c9d53edc.bitwarden.com -carLicense: GLTG31 -departmentNumber: 9414 -employeeType: Employee -homePhone: +1 510 531-4838 -initials: P. L. -mobile: +1 510 326-6684 -pager: +1 510 541-2668 -roomNumber: 8734 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shina Tremaine,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shina Tremaine -sn: Tremaine -description: This is Shina Tremaine's description -facsimileTelephoneNumber: +1 818 657-2077 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 818 298-5326 -title: Master Product Testing Vice President -userPassword: Password1 -uid: TremainS -givenName: Shina -mail: TremainS@8dfc96b3d0e547578cb502ea67822dc4.bitwarden.com -carLicense: U5YSOD -departmentNumber: 1272 -employeeType: Employee -homePhone: +1 818 984-4038 -initials: S. T. -mobile: +1 818 458-7494 -pager: +1 818 593-7157 -roomNumber: 9609 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Muire Cencier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Muire Cencier -sn: Cencier -description: This is Muire Cencier's description -facsimileTelephoneNumber: +1 415 197-7271 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 415 509-1815 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: CencierM -givenName: Muire -mail: CencierM@8b494156718243beaccc49c77764ab7f.bitwarden.com -carLicense: J0XPMQ -departmentNumber: 7953 -employeeType: Normal -homePhone: +1 415 523-8418 -initials: M. C. -mobile: +1 415 314-3200 -pager: +1 415 576-3790 -roomNumber: 9055 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Brinn Weinbender,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brinn Weinbender -sn: Weinbender -description: This is Brinn Weinbender's description -facsimileTelephoneNumber: +1 415 419-2443 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 214-9673 -title: Supreme Product Development Punk -userPassword: Password1 -uid: WeinbenB -givenName: Brinn -mail: WeinbenB@7770d32208f64a63bf44fae15e8c6935.bitwarden.com -carLicense: ETQC4K -departmentNumber: 5490 -employeeType: Contract -homePhone: +1 415 539-5847 -initials: B. W. -mobile: +1 415 136-4665 -pager: +1 415 808-4171 -roomNumber: 8326 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jasmin Bopp -sn: Bopp -description: This is Jasmin Bopp's description -facsimileTelephoneNumber: +1 818 933-9589 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 307-3853 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: BoppJ -givenName: Jasmin -mail: BoppJ@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com -carLicense: NFKJON -departmentNumber: 6383 -employeeType: Normal -homePhone: +1 818 219-3108 -initials: J. B. -mobile: +1 818 569-3138 -pager: +1 818 379-6612 -roomNumber: 8126 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phyllis Medlock -sn: Medlock -description: This is Phyllis Medlock's description -facsimileTelephoneNumber: +1 213 690-5638 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 418-9968 -title: Supreme Janitorial Artist -userPassword: Password1 -uid: MedlockP -givenName: Phyllis -mail: MedlockP@17cb5e3bf33c46c8bb068c8715e4918e.bitwarden.com -carLicense: 2CY2VG -departmentNumber: 9934 -employeeType: Employee -homePhone: +1 213 586-5454 -initials: P. M. -mobile: +1 213 644-9114 -pager: +1 213 535-3196 -roomNumber: 9533 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Candee Gozen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candee Gozen -sn: Gozen -description: This is Candee Gozen's description -facsimileTelephoneNumber: +1 510 648-5391 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 449-1903 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: GozenC -givenName: Candee -mail: GozenC@43c4575cb998431b9ef40f1885b13a40.bitwarden.com -carLicense: U63S6U -departmentNumber: 5455 -employeeType: Normal -homePhone: +1 510 126-1734 -initials: C. G. -mobile: +1 510 776-5791 -pager: +1 510 964-8768 -roomNumber: 8322 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Julienne Spencer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julienne Spencer -sn: Spencer -description: This is Julienne Spencer's description -facsimileTelephoneNumber: +1 415 302-6390 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 832-7333 -title: Associate Human Resources Assistant -userPassword: Password1 -uid: SpencerJ -givenName: Julienne -mail: SpencerJ@e116936732ce45789365cbd54acef482.bitwarden.com -carLicense: O31C8Y -departmentNumber: 7720 -employeeType: Normal -homePhone: +1 415 634-7385 -initials: J. S. -mobile: +1 415 764-6712 -pager: +1 415 438-8211 -roomNumber: 8874 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Benny Kimm,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benny Kimm -sn: Kimm -description: This is Benny Kimm's description -facsimileTelephoneNumber: +1 510 498-8236 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 425-6783 -title: Master Payroll Fellow -userPassword: Password1 -uid: KimmB -givenName: Benny -mail: KimmB@a90852e05a704b189e86f5be23a6fead.bitwarden.com -carLicense: 0AK3EN -departmentNumber: 2506 -employeeType: Employee -homePhone: +1 510 977-9610 -initials: B. K. -mobile: +1 510 353-4677 -pager: +1 510 228-6286 -roomNumber: 9059 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bella DiGiambattista -sn: DiGiambattista -description: This is Bella DiGiambattista's description -facsimileTelephoneNumber: +1 804 823-3397 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 596-4251 -title: Associate Payroll Sales Rep -userPassword: Password1 -uid: DiGiambB -givenName: Bella -mail: DiGiambB@1719e95244a44b8596cb64a3732d8148.bitwarden.com -carLicense: 9S0IF9 -departmentNumber: 5672 -employeeType: Contract -homePhone: +1 804 204-6771 -initials: B. D. -mobile: +1 804 939-5906 -pager: +1 804 846-8855 -roomNumber: 9012 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kyle Pape,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kyle Pape -sn: Pape -description: This is Kyle Pape's description -facsimileTelephoneNumber: +1 206 362-5296 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 241-4416 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: PapeK -givenName: Kyle -mail: PapeK@cfb3c19130a34bd8a1175d4c3cbe2bde.bitwarden.com -carLicense: TWFN1D -departmentNumber: 9199 -employeeType: Employee -homePhone: +1 206 206-6542 -initials: K. P. -mobile: +1 206 572-3984 -pager: +1 206 173-3332 -roomNumber: 9065 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hetti Maciejewski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hetti Maciejewski -sn: Maciejewski -description: This is Hetti Maciejewski's description -facsimileTelephoneNumber: +1 408 162-1154 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 768-1443 -title: Junior Management Pinhead -userPassword: Password1 -uid: MaciejeH -givenName: Hetti -mail: MaciejeH@2f2c7c75a80e4912bb53354bb0764e32.bitwarden.com -carLicense: K3WOWE -departmentNumber: 8916 -employeeType: Normal -homePhone: +1 408 470-3299 -initials: H. M. -mobile: +1 408 305-7996 -pager: +1 408 555-4338 -roomNumber: 8394 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Godiva Arunachalam -sn: Arunachalam -description: This is Godiva Arunachalam's description -facsimileTelephoneNumber: +1 206 458-1161 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 206 426-8900 -title: Chief Product Testing Czar -userPassword: Password1 -uid: ArunachG -givenName: Godiva -mail: ArunachG@4f1058076962434d992f12cefe18bd59.bitwarden.com -carLicense: VJYCNM -departmentNumber: 5288 -employeeType: Normal -homePhone: +1 206 274-3165 -initials: G. A. -mobile: +1 206 106-3535 -pager: +1 206 854-4642 -roomNumber: 9701 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Peder Bevington,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peder Bevington -sn: Bevington -description: This is Peder Bevington's description -facsimileTelephoneNumber: +1 206 589-4336 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 103-6428 -title: Junior Product Testing Artist -userPassword: Password1 -uid: BevingtP -givenName: Peder -mail: BevingtP@349cbf4e75d847c1a3a3932212036d74.bitwarden.com -carLicense: 42X4BD -departmentNumber: 7917 -employeeType: Employee -homePhone: +1 206 867-6783 -initials: P. B. -mobile: +1 206 769-3393 -pager: +1 206 369-6865 -roomNumber: 9203 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Royce Kerr,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Royce Kerr -sn: Kerr -description: This is Royce Kerr's description -facsimileTelephoneNumber: +1 213 139-9155 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 664-8100 -title: Supreme Payroll Admin -userPassword: Password1 -uid: KerrR -givenName: Royce -mail: KerrR@6dfbae5841184eee86f16ac4a1176697.bitwarden.com -carLicense: 1IX9ME -departmentNumber: 3800 -employeeType: Normal -homePhone: +1 213 556-7256 -initials: R. K. -mobile: +1 213 922-2257 -pager: +1 213 218-7732 -roomNumber: 9349 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Madelon Armitage,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelon Armitage -sn: Armitage -description: This is Madelon Armitage's description -facsimileTelephoneNumber: +1 415 654-9654 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 618-8156 -title: Master Janitorial Engineer -userPassword: Password1 -uid: ArmitagM -givenName: Madelon -mail: ArmitagM@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com -carLicense: BHBJ9R -departmentNumber: 3541 -employeeType: Contract -homePhone: +1 415 547-6985 -initials: M. A. -mobile: +1 415 868-7378 -pager: +1 415 943-4108 -roomNumber: 9984 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sohayla Resnick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sohayla Resnick -sn: Resnick -description: This is Sohayla Resnick's description -facsimileTelephoneNumber: +1 510 933-4416 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 288-6462 -title: Supreme Payroll President -userPassword: Password1 -uid: ResnickS -givenName: Sohayla -mail: ResnickS@8396829dbd6f4494811aec04c011380c.bitwarden.com -carLicense: 27VN2E -departmentNumber: 1471 -employeeType: Contract -homePhone: +1 510 462-4489 -initials: S. R. -mobile: +1 510 252-5210 -pager: +1 510 944-9972 -roomNumber: 8794 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaela TraceyMcCabe -sn: TraceyMcCabe -description: This is Kaela TraceyMcCabe's description -facsimileTelephoneNumber: +1 213 122-5503 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 306-6994 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: TraceyMK -givenName: Kaela -mail: TraceyMK@a2257412df964db8b0b017a63b40027d.bitwarden.com -carLicense: D8U553 -departmentNumber: 3654 -employeeType: Normal -homePhone: +1 213 167-5904 -initials: K. T. -mobile: +1 213 507-8226 -pager: +1 213 663-8270 -roomNumber: 8533 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Teri Fabry,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teri Fabry -sn: Fabry -description: This is Teri Fabry's description -facsimileTelephoneNumber: +1 818 313-8043 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 417-9054 -title: Master Administrative Architect -userPassword: Password1 -uid: FabryT -givenName: Teri -mail: FabryT@cec3211a38a84845bf22d5434e7f7858.bitwarden.com -carLicense: FQOYG6 -departmentNumber: 9046 -employeeType: Contract -homePhone: +1 818 675-1411 -initials: T. F. -mobile: +1 818 911-3439 -pager: +1 818 649-7389 -roomNumber: 9813 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Deina Martincello,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deina Martincello -sn: Martincello -description: This is Deina Martincello's description -facsimileTelephoneNumber: +1 213 564-5480 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 129-4785 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: MartincD -givenName: Deina -mail: MartincD@1cec494b2c6b4b8a8fb44bcdcbcfca34.bitwarden.com -carLicense: MCLPX5 -departmentNumber: 1620 -employeeType: Contract -homePhone: +1 213 938-1965 -initials: D. M. -mobile: +1 213 504-9731 -pager: +1 213 375-7785 -roomNumber: 8556 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aleen Ayre,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aleen Ayre -sn: Ayre -description: This is Aleen Ayre's description -facsimileTelephoneNumber: +1 510 502-7428 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 828-4624 -title: Chief Human Resources Consultant -userPassword: Password1 -uid: AyreA -givenName: Aleen -mail: AyreA@efa9f7679ea94344a42e6df58b28f7ca.bitwarden.com -carLicense: TTRH1X -departmentNumber: 6032 -employeeType: Contract -homePhone: +1 510 138-1102 -initials: A. A. -mobile: +1 510 373-4874 -pager: +1 510 672-8383 -roomNumber: 8640 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roseline Risher,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roseline Risher -sn: Risher -description: This is Roseline Risher's description -facsimileTelephoneNumber: +1 804 246-5515 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 473-2968 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: RisherR -givenName: Roseline -mail: RisherR@1b5d8352bac64038b1e8fc921d81a384.bitwarden.com -carLicense: P4JE2I -departmentNumber: 8712 -employeeType: Employee -homePhone: +1 804 811-1850 -initials: R. R. -mobile: +1 804 279-2031 -pager: +1 804 280-3305 -roomNumber: 8073 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Reuben Lychak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reuben Lychak -sn: Lychak -description: This is Reuben Lychak's description -facsimileTelephoneNumber: +1 415 805-3853 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 243-2913 -title: Junior Janitorial Punk -userPassword: Password1 -uid: LychakR -givenName: Reuben -mail: LychakR@98b778e04cdc413792a21b3367fbde45.bitwarden.com -carLicense: 1JA1GM -departmentNumber: 1586 -employeeType: Normal -homePhone: +1 415 194-6262 -initials: R. L. -mobile: +1 415 692-3779 -pager: +1 415 863-1011 -roomNumber: 9904 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kelsy Rozier,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelsy Rozier -sn: Rozier -description: This is Kelsy Rozier's description -facsimileTelephoneNumber: +1 415 520-9011 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 625-3937 -title: Junior Administrative Engineer -userPassword: Password1 -uid: RozierK -givenName: Kelsy -mail: RozierK@d26e69c4dd7641e8943c5c22db2243f2.bitwarden.com -carLicense: JC8GCY -departmentNumber: 8648 -employeeType: Employee -homePhone: +1 415 259-6505 -initials: K. R. -mobile: +1 415 860-2085 -pager: +1 415 721-5131 -roomNumber: 8933 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Herronald Walta,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herronald Walta -sn: Walta -description: This is Herronald Walta's description -facsimileTelephoneNumber: +1 510 528-4151 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 639-6591 -title: Supreme Management Sales Rep -userPassword: Password1 -uid: WaltaH -givenName: Herronald -mail: WaltaH@8df14385ae864b439973adc9259c1607.bitwarden.com -carLicense: 4QFGDB -departmentNumber: 5318 -employeeType: Normal -homePhone: +1 510 347-8345 -initials: H. W. -mobile: +1 510 970-6690 -pager: +1 510 514-5705 -roomNumber: 8233 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Oralee Shiflett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oralee Shiflett -sn: Shiflett -description: This is Oralee Shiflett's description -facsimileTelephoneNumber: +1 510 225-9890 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 998-6091 -title: Associate Payroll Grunt -userPassword: Password1 -uid: ShifletO -givenName: Oralee -mail: ShifletO@9cb309c14f394c15bfd37b4264f18ad3.bitwarden.com -carLicense: QTIEUL -departmentNumber: 9107 -employeeType: Normal -homePhone: +1 510 213-7463 -initials: O. S. -mobile: +1 510 836-7071 -pager: +1 510 409-3838 -roomNumber: 9026 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maurice Coe,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurice Coe -sn: Coe -description: This is Maurice Coe's description -facsimileTelephoneNumber: +1 206 128-9102 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 331-3849 -title: Master Administrative Warrior -userPassword: Password1 -uid: CoeM -givenName: Maurice -mail: CoeM@df4398eeee504d4688e79f5fade4e06a.bitwarden.com -carLicense: K5IDAH -departmentNumber: 5045 -employeeType: Contract -homePhone: +1 206 886-3455 -initials: M. C. -mobile: +1 206 818-2715 -pager: +1 206 714-8065 -roomNumber: 8621 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaughan Lesmerises -sn: Lesmerises -description: This is Shaughan Lesmerises's description -facsimileTelephoneNumber: +1 408 268-9316 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 110-4242 -title: Chief Human Resources Stooge -userPassword: Password1 -uid: LesmeriS -givenName: Shaughan -mail: LesmeriS@71334519f85d4ff38bd6a6b8f4192c09.bitwarden.com -carLicense: 6YDLYF -departmentNumber: 5168 -employeeType: Contract -homePhone: +1 408 679-2952 -initials: S. L. -mobile: +1 408 881-5960 -pager: +1 408 170-1851 -roomNumber: 8041 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Greg Candelario,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greg Candelario -sn: Candelario -description: This is Greg Candelario's description -facsimileTelephoneNumber: +1 818 430-9746 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 457-9875 -title: Associate Management Architect -userPassword: Password1 -uid: CandelaG -givenName: Greg -mail: CandelaG@0ad12ce5726b4f478ea6768be55c341f.bitwarden.com -carLicense: 0B243Y -departmentNumber: 7990 -employeeType: Employee -homePhone: +1 818 974-7779 -initials: G. C. -mobile: +1 818 480-2676 -pager: +1 818 562-2968 -roomNumber: 8714 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janeta Gerynowicz -sn: Gerynowicz -description: This is Janeta Gerynowicz's description -facsimileTelephoneNumber: +1 510 232-4117 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 126-2074 -title: Associate Product Testing Grunt -userPassword: Password1 -uid: GerynowJ -givenName: Janeta -mail: GerynowJ@f913ff5eacd8463cb806d02d62200c74.bitwarden.com -carLicense: O8JNAI -departmentNumber: 1728 -employeeType: Contract -homePhone: +1 510 857-3044 -initials: J. G. -mobile: +1 510 914-9806 -pager: +1 510 480-9858 -roomNumber: 9703 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Genny Horemans,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genny Horemans -sn: Horemans -description: This is Genny Horemans's description -facsimileTelephoneNumber: +1 206 193-9989 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 261-8755 -title: Master Human Resources Admin -userPassword: Password1 -uid: HoremanG -givenName: Genny -mail: HoremanG@5dc39fbc350c43fe84c932142400265c.bitwarden.com -carLicense: QWSBIR -departmentNumber: 4142 -employeeType: Contract -homePhone: +1 206 763-7809 -initials: G. H. -mobile: +1 206 581-2447 -pager: +1 206 387-9519 -roomNumber: 8996 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Willeke Gagnon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willeke Gagnon -sn: Gagnon -description: This is Willeke Gagnon's description -facsimileTelephoneNumber: +1 510 575-3783 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 653-8373 -title: Chief Management Warrior -userPassword: Password1 -uid: GagnonW -givenName: Willeke -mail: GagnonW@a40bbab821574ad58a604582fafa7e52.bitwarden.com -carLicense: 8TCPEC -departmentNumber: 3592 -employeeType: Normal -homePhone: +1 510 471-3611 -initials: W. G. -mobile: +1 510 749-5003 -pager: +1 510 171-3956 -roomNumber: 9634 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsy Elhamahmy -sn: Elhamahmy -description: This is Chelsy Elhamahmy's description -facsimileTelephoneNumber: +1 415 204-9946 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 415 450-7516 -title: Junior Product Testing Writer -userPassword: Password1 -uid: ElhamahC -givenName: Chelsy -mail: ElhamahC@19261efb99bb4b2ba698af6633bee481.bitwarden.com -carLicense: 3AWIGQ -departmentNumber: 4652 -employeeType: Employee -homePhone: +1 415 720-1913 -initials: C. E. -mobile: +1 415 423-6728 -pager: +1 415 748-5714 -roomNumber: 8817 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nijen Testa,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nijen Testa -sn: Testa -description: This is Nijen Testa's description -facsimileTelephoneNumber: +1 510 944-5124 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 359-2071 -title: Junior Management Architect -userPassword: Password1 -uid: TestaN -givenName: Nijen -mail: TestaN@b704bf76672f4edf96dc7a81797bfb18.bitwarden.com -carLicense: EP3Y83 -departmentNumber: 3473 -employeeType: Normal -homePhone: +1 510 514-8794 -initials: N. T. -mobile: +1 510 258-6266 -pager: +1 510 304-8851 -roomNumber: 8373 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Binni Vasile,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binni Vasile -sn: Vasile -description: This is Binni Vasile's description -facsimileTelephoneNumber: +1 415 463-9436 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 822-9777 -title: Master Administrative Stooge -userPassword: Password1 -uid: VasileB -givenName: Binni -mail: VasileB@9367f9f8454348d3886816e5fdc4ee80.bitwarden.com -carLicense: QWEFWM -departmentNumber: 7027 -employeeType: Employee -homePhone: +1 415 101-1124 -initials: B. V. -mobile: +1 415 735-1325 -pager: +1 415 753-7539 -roomNumber: 8053 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Thor Mamoulides,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thor Mamoulides -sn: Mamoulides -description: This is Thor Mamoulides's description -facsimileTelephoneNumber: +1 415 360-7978 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 111-2663 -title: Master Peons Assistant -userPassword: Password1 -uid: MamouliT -givenName: Thor -mail: MamouliT@514c4dabf5514f759283b3fa82dba706.bitwarden.com -carLicense: 1BA816 -departmentNumber: 6199 -employeeType: Normal -homePhone: +1 415 259-6915 -initials: T. M. -mobile: +1 415 537-3065 -pager: +1 415 801-1732 -roomNumber: 9614 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Merridie Charlinski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merridie Charlinski -sn: Charlinski -description: This is Merridie Charlinski's description -facsimileTelephoneNumber: +1 818 661-2519 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 372-8047 -title: Junior Product Development Janitor -userPassword: Password1 -uid: CharlinM -givenName: Merridie -mail: CharlinM@503493165e34480591885ddd3a12206f.bitwarden.com -carLicense: MREXE7 -departmentNumber: 9741 -employeeType: Contract -homePhone: +1 818 161-1314 -initials: M. C. -mobile: +1 818 650-2272 -pager: +1 818 991-3385 -roomNumber: 9620 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sundaram Trocchi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sundaram Trocchi -sn: Trocchi -description: This is Sundaram Trocchi's description -facsimileTelephoneNumber: +1 206 378-3859 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 424-1251 -title: Master Management Engineer -userPassword: Password1 -uid: TrocchiS -givenName: Sundaram -mail: TrocchiS@9c1a16ce358c4da3bb256d63a9955243.bitwarden.com -carLicense: X9XU2P -departmentNumber: 1843 -employeeType: Employee -homePhone: +1 206 295-9992 -initials: S. T. -mobile: +1 206 980-6762 -pager: +1 206 441-7702 -roomNumber: 8755 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naoma Ajersch -sn: Ajersch -description: This is Naoma Ajersch's description -facsimileTelephoneNumber: +1 408 728-8155 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 408 331-4865 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: AjerschN -givenName: Naoma -mail: AjerschN@3264b8974bc14e47aff69928751d5552.bitwarden.com -carLicense: 361DQ8 -departmentNumber: 7874 -employeeType: Contract -homePhone: +1 408 111-6007 -initials: N. A. -mobile: +1 408 366-7498 -pager: +1 408 221-9901 -roomNumber: 9750 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Divine Sebeh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Divine Sebeh -sn: Sebeh -description: This is Divine Sebeh's description -facsimileTelephoneNumber: +1 510 580-9164 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 510 599-8853 -title: Associate Product Development Admin -userPassword: Password1 -uid: SebehD -givenName: Divine -mail: SebehD@8396829dbd6f4494811aec04c011380c.bitwarden.com -carLicense: F82FPC -departmentNumber: 5463 -employeeType: Contract -homePhone: +1 510 212-8872 -initials: D. S. -mobile: +1 510 395-7103 -pager: +1 510 879-7947 -roomNumber: 9736 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tiff Mader,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiff Mader -sn: Mader -description: This is Tiff Mader's description -facsimileTelephoneNumber: +1 408 701-6431 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 408 232-2468 -title: Junior Peons Grunt -userPassword: Password1 -uid: MaderT -givenName: Tiff -mail: MaderT@5252b436274c46eeaa1a93446d86930f.bitwarden.com -carLicense: LU5C36 -departmentNumber: 5697 -employeeType: Employee -homePhone: +1 408 219-9176 -initials: T. M. -mobile: +1 408 369-9580 -pager: +1 408 948-1971 -roomNumber: 9013 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Karly Adornato,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karly Adornato -sn: Adornato -description: This is Karly Adornato's description -facsimileTelephoneNumber: +1 213 554-5634 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 619-7412 -title: Master Management Vice President -userPassword: Password1 -uid: AdornatK -givenName: Karly -mail: AdornatK@a821e56b318247488fefa798a1560d4c.bitwarden.com -carLicense: V2LTMD -departmentNumber: 7074 -employeeType: Contract -homePhone: +1 213 265-5041 -initials: K. A. -mobile: +1 213 783-7054 -pager: +1 213 446-1233 -roomNumber: 8747 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Petrina Bovey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petrina Bovey -sn: Bovey -description: This is Petrina Bovey's description -facsimileTelephoneNumber: +1 408 384-1911 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 465-6341 -title: Chief Product Development Dictator -userPassword: Password1 -uid: BoveyP -givenName: Petrina -mail: BoveyP@cb080e2974a14fac8bb31166d02685f0.bitwarden.com -carLicense: PP5EM0 -departmentNumber: 6033 -employeeType: Contract -homePhone: +1 408 792-9375 -initials: P. B. -mobile: +1 408 460-2339 -pager: +1 408 461-3827 -roomNumber: 9847 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Andie Subasinghe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andie Subasinghe -sn: Subasinghe -description: This is Andie Subasinghe's description -facsimileTelephoneNumber: +1 206 683-9954 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 462-7229 -title: Junior Product Development Consultant -userPassword: Password1 -uid: SubasinA -givenName: Andie -mail: SubasinA@a2de644016074e339d2f86b6a140c75b.bitwarden.com -carLicense: 9RL8WX -departmentNumber: 2888 -employeeType: Normal -homePhone: +1 206 121-6726 -initials: A. S. -mobile: +1 206 393-8420 -pager: +1 206 308-1043 -roomNumber: 8446 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kimiko Florescu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kimiko Florescu -sn: Florescu -description: This is Kimiko Florescu's description -facsimileTelephoneNumber: +1 415 755-3539 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 415 495-1832 -title: Chief Management Grunt -userPassword: Password1 -uid: FlorescK -givenName: Kimiko -mail: FlorescK@68682c9b2559463bb9da0d98b541595f.bitwarden.com -carLicense: RBQV80 -departmentNumber: 5698 -employeeType: Normal -homePhone: +1 415 176-8768 -initials: K. F. -mobile: +1 415 980-6165 -pager: +1 415 633-8820 -roomNumber: 8271 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Agnesse Kiger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnesse Kiger -sn: Kiger -description: This is Agnesse Kiger's description -facsimileTelephoneNumber: +1 206 906-3871 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 860-8060 -title: Junior Management Visionary -userPassword: Password1 -uid: KigerA -givenName: Agnesse -mail: KigerA@d6b3231dbb434132911ed9c9e37e3901.bitwarden.com -carLicense: DQJG97 -departmentNumber: 8121 -employeeType: Contract -homePhone: +1 206 560-1108 -initials: A. K. -mobile: +1 206 841-7717 -pager: +1 206 906-3249 -roomNumber: 8445 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Trude Hanham,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trude Hanham -sn: Hanham -description: This is Trude Hanham's description -facsimileTelephoneNumber: +1 206 731-1045 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 215-7297 -title: Supreme Janitorial Technician -userPassword: Password1 -uid: HanhamT -givenName: Trude -mail: HanhamT@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com -carLicense: HTS1PN -departmentNumber: 9309 -employeeType: Normal -homePhone: +1 206 410-7344 -initials: T. H. -mobile: +1 206 747-6932 -pager: +1 206 340-7063 -roomNumber: 8148 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verile Szaplonczay -sn: Szaplonczay -description: This is Verile Szaplonczay's description -facsimileTelephoneNumber: +1 804 624-1470 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 229-8171 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: SzaplonV -givenName: Verile -mail: SzaplonV@bcfbfd5ee6b14185b04773704662d3e6.bitwarden.com -carLicense: J23SP7 -departmentNumber: 5805 -employeeType: Contract -homePhone: +1 804 833-8029 -initials: V. S. -mobile: +1 804 862-7652 -pager: +1 804 795-7873 -roomNumber: 8330 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Greta Timler,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greta Timler -sn: Timler -description: This is Greta Timler's description -facsimileTelephoneNumber: +1 408 593-3868 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 870-8877 -title: Master Peons Janitor -userPassword: Password1 -uid: TimlerG -givenName: Greta -mail: TimlerG@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com -carLicense: 4RT1N8 -departmentNumber: 1882 -employeeType: Employee -homePhone: +1 408 859-8907 -initials: G. T. -mobile: +1 408 878-3066 -pager: +1 408 419-5086 -roomNumber: 9995 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bobbye Ludviksen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobbye Ludviksen -sn: Ludviksen -description: This is Bobbye Ludviksen's description -facsimileTelephoneNumber: +1 818 935-4959 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 547-7139 -title: Junior Management Assistant -userPassword: Password1 -uid: LudviksB -givenName: Bobbye -mail: LudviksB@5ffed17cc69d4719b003fa0cfe2777f7.bitwarden.com -carLicense: FFK37W -departmentNumber: 3657 -employeeType: Employee -homePhone: +1 818 882-8347 -initials: B. L. -mobile: +1 818 541-3304 -pager: +1 818 641-2078 -roomNumber: 9844 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raphaela Koleyni -sn: Koleyni -description: This is Raphaela Koleyni's description -facsimileTelephoneNumber: +1 415 574-4830 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 208-6964 -title: Junior Human Resources Mascot -userPassword: Password1 -uid: KoleyniR -givenName: Raphaela -mail: KoleyniR@2c04f0ba9f9e42d4ba30e45d9ac9ae06.bitwarden.com -carLicense: MHE6H8 -departmentNumber: 3940 -employeeType: Employee -homePhone: +1 415 205-8470 -initials: R. K. -mobile: +1 415 784-3514 -pager: +1 415 926-2327 -roomNumber: 8736 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Adiana Tohama,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adiana Tohama -sn: Tohama -description: This is Adiana Tohama's description -facsimileTelephoneNumber: +1 510 346-7833 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 510 530-1802 -title: Associate Administrative Consultant -userPassword: Password1 -uid: TohamaA -givenName: Adiana -mail: TohamaA@3fe7f6d7adf6406f923792a176bd4ea0.bitwarden.com -carLicense: RM8MV4 -departmentNumber: 9387 -employeeType: Contract -homePhone: +1 510 339-7440 -initials: A. T. -mobile: +1 510 957-1394 -pager: +1 510 758-6079 -roomNumber: 8070 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evangelo Rygwalski -sn: Rygwalski -description: This is Evangelo Rygwalski's description -facsimileTelephoneNumber: +1 818 122-5218 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 818 838-8828 -title: Master Administrative Dictator -userPassword: Password1 -uid: RygwalsE -givenName: Evangelo -mail: RygwalsE@e0325d1b480a46fd813ea04ca5c966cc.bitwarden.com -carLicense: O7T6ID -departmentNumber: 6024 -employeeType: Normal -homePhone: +1 818 174-9449 -initials: E. R. -mobile: +1 818 298-9328 -pager: +1 818 126-3132 -roomNumber: 9600 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hildagarde Neumann,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hildagarde Neumann -sn: Neumann -description: This is Hildagarde Neumann's description -facsimileTelephoneNumber: +1 213 419-5805 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 553-6285 -title: Supreme Peons Admin -userPassword: Password1 -uid: NeumannH -givenName: Hildagarde -mail: NeumannH@736366bf947d4889a5087519dbc9eaff.bitwarden.com -carLicense: T6LQSR -departmentNumber: 2250 -employeeType: Contract -homePhone: +1 213 297-7969 -initials: H. N. -mobile: +1 213 222-3299 -pager: +1 213 818-6487 -roomNumber: 8964 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sibylla Younger,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibylla Younger -sn: Younger -description: This is Sibylla Younger's description -facsimileTelephoneNumber: +1 818 465-4992 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 818 699-2478 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: YoungerS -givenName: Sibylla -mail: YoungerS@f1ba9fe3a35e44c3978d785a0d395a14.bitwarden.com -carLicense: RJ6LMX -departmentNumber: 4845 -employeeType: Employee -homePhone: +1 818 669-4623 -initials: S. Y. -mobile: +1 818 769-1434 -pager: +1 818 211-5178 -roomNumber: 8259 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jodie Eckstein,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jodie Eckstein -sn: Eckstein -description: This is Jodie Eckstein's description -facsimileTelephoneNumber: +1 510 410-7245 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 554-5514 -title: Associate Administrative Visionary -userPassword: Password1 -uid: EcksteiJ -givenName: Jodie -mail: EcksteiJ@d07128744ede47b1a1b8648da086036a.bitwarden.com -carLicense: NV9J6F -departmentNumber: 2878 -employeeType: Contract -homePhone: +1 510 259-6890 -initials: J. E. -mobile: +1 510 602-4988 -pager: +1 510 849-2222 -roomNumber: 9363 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rea Barolet,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rea Barolet -sn: Barolet -description: This is Rea Barolet's description -facsimileTelephoneNumber: +1 408 209-7321 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 678-1534 -title: Supreme Management Vice President -userPassword: Password1 -uid: BaroletR -givenName: Rea -mail: BaroletR@4824b8d6b19b477496c8e66703f2331e.bitwarden.com -carLicense: H963P3 -departmentNumber: 5364 -employeeType: Normal -homePhone: +1 408 879-1777 -initials: R. B. -mobile: +1 408 628-9877 -pager: +1 408 998-2937 -roomNumber: 9071 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rustu Paige,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rustu Paige -sn: Paige -description: This is Rustu Paige's description -facsimileTelephoneNumber: +1 804 987-6750 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 825-7370 -title: Master Janitorial Writer -userPassword: Password1 -uid: PaigeR -givenName: Rustu -mail: PaigeR@777873609ce9463eb7000e930f9c88d2.bitwarden.com -carLicense: 7L61ID -departmentNumber: 3856 -employeeType: Normal -homePhone: +1 804 227-4100 -initials: R. P. -mobile: +1 804 282-3985 -pager: +1 804 202-2182 -roomNumber: 8488 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Davinder Caves,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davinder Caves -sn: Caves -description: This is Davinder Caves's description -facsimileTelephoneNumber: +1 213 981-9696 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 153-5300 -title: Chief Product Development President -userPassword: Password1 -uid: CavesD -givenName: Davinder -mail: CavesD@c356619b4769401bb929afda889d39f9.bitwarden.com -carLicense: 3B8RSR -departmentNumber: 6612 -employeeType: Employee -homePhone: +1 213 246-6080 -initials: D. C. -mobile: +1 213 902-4097 -pager: +1 213 541-7703 -roomNumber: 9585 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Celyne Settels,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celyne Settels -sn: Settels -description: This is Celyne Settels's description -facsimileTelephoneNumber: +1 206 764-7515 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 956-8510 -title: Chief Administrative Technician -userPassword: Password1 -uid: SettelsC -givenName: Celyne -mail: SettelsC@ab04014fcfcf443881ea178cd34f1aab.bitwarden.com -carLicense: PV0L1I -departmentNumber: 1837 -employeeType: Normal -homePhone: +1 206 255-5379 -initials: C. S. -mobile: +1 206 998-3707 -pager: +1 206 109-3134 -roomNumber: 8557 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marina Higham,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marina Higham -sn: Higham -description: This is Marina Higham's description -facsimileTelephoneNumber: +1 213 326-5957 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 738-6112 -title: Junior Payroll Fellow -userPassword: Password1 -uid: HighamM -givenName: Marina -mail: HighamM@fe740c0ae3204fcc953b18216e0c9dcc.bitwarden.com -carLicense: 2AHTFY -departmentNumber: 6355 -employeeType: Employee -homePhone: +1 213 529-9716 -initials: M. H. -mobile: +1 213 481-1702 -pager: +1 213 812-7932 -roomNumber: 9397 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Augusto Gawargy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Augusto Gawargy -sn: Gawargy -description: This is Augusto Gawargy's description -facsimileTelephoneNumber: +1 818 540-3813 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 910-5719 -title: Master Peons Stooge -userPassword: Password1 -uid: GawargyA -givenName: Augusto -mail: GawargyA@fe184af833734409842cae4ea614a7b7.bitwarden.com -carLicense: 80T5K9 -departmentNumber: 7431 -employeeType: Normal -homePhone: +1 818 154-8665 -initials: A. G. -mobile: +1 818 759-5564 -pager: +1 818 232-8603 -roomNumber: 9394 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hudai Popp,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hudai Popp -sn: Popp -description: This is Hudai Popp's description -facsimileTelephoneNumber: +1 510 667-1881 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 865-6634 -title: Junior Administrative Engineer -userPassword: Password1 -uid: PoppH -givenName: Hudai -mail: PoppH@066366af1bc843378bcfdd813a95df98.bitwarden.com -carLicense: 915HF5 -departmentNumber: 1992 -employeeType: Contract -homePhone: +1 510 791-3203 -initials: H. P. -mobile: +1 510 121-5796 -pager: +1 510 357-3368 -roomNumber: 8761 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Babak Tussey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Babak Tussey -sn: Tussey -description: This is Babak Tussey's description -facsimileTelephoneNumber: +1 408 493-7615 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 878-5986 -title: Associate Product Development Fellow -userPassword: Password1 -uid: TusseyB -givenName: Babak -mail: TusseyB@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com -carLicense: 8RXY8K -departmentNumber: 7689 -employeeType: Normal -homePhone: +1 408 862-2501 -initials: B. T. -mobile: +1 408 997-8940 -pager: +1 408 119-8492 -roomNumber: 8052 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wenonah Bellehumeur -sn: Bellehumeur -description: This is Wenonah Bellehumeur's description -facsimileTelephoneNumber: +1 206 345-6915 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 206 749-4157 -title: Master Human Resources Stooge -userPassword: Password1 -uid: BellehuW -givenName: Wenonah -mail: BellehuW@71bf922abd2749a3982856c35ce9c912.bitwarden.com -carLicense: QDSU57 -departmentNumber: 9077 -employeeType: Normal -homePhone: +1 206 152-8228 -initials: W. B. -mobile: +1 206 754-9802 -pager: +1 206 843-1622 -roomNumber: 8777 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lionel Childers,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lionel Childers -sn: Childers -description: This is Lionel Childers's description -facsimileTelephoneNumber: +1 213 476-1008 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 441-2353 -title: Junior Administrative Grunt -userPassword: Password1 -uid: ChilderL -givenName: Lionel -mail: ChilderL@328af8448e3c4d53991764541abc54ba.bitwarden.com -carLicense: SLT9LO -departmentNumber: 9298 -employeeType: Employee -homePhone: +1 213 341-6015 -initials: L. C. -mobile: +1 213 678-7929 -pager: +1 213 240-3396 -roomNumber: 9671 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Robena McDevitt,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robena McDevitt -sn: McDevitt -description: This is Robena McDevitt's description -facsimileTelephoneNumber: +1 804 873-5027 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 949-5254 -title: Supreme Human Resources Architect -userPassword: Password1 -uid: McDevitR -givenName: Robena -mail: McDevitR@9967fe39a419474db05f70cea6eee0f1.bitwarden.com -carLicense: UYOGYW -departmentNumber: 3527 -employeeType: Contract -homePhone: +1 804 136-3813 -initials: R. M. -mobile: +1 804 511-7763 -pager: +1 804 799-5860 -roomNumber: 8799 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilbertina Wellard -sn: Wellard -description: This is Gilbertina Wellard's description -facsimileTelephoneNumber: +1 206 627-1549 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 224-1001 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: WellardG -givenName: Gilbertina -mail: WellardG@b613aec4ece744c9bcff2f9c3efe0aed.bitwarden.com -carLicense: HM64WM -departmentNumber: 9328 -employeeType: Normal -homePhone: +1 206 594-6684 -initials: G. W. -mobile: +1 206 287-4109 -pager: +1 206 642-5866 -roomNumber: 8080 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dupuy Barszczewski -sn: Barszczewski -description: This is Dupuy Barszczewski's description -facsimileTelephoneNumber: +1 804 810-1321 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 355-4276 -title: Chief Product Testing Punk -userPassword: Password1 -uid: BarszczD -givenName: Dupuy -mail: BarszczD@dc4e00565ed740ca8c4a935c1cd2fe2a.bitwarden.com -carLicense: 7VX6GT -departmentNumber: 8132 -employeeType: Normal -homePhone: +1 804 951-3356 -initials: D. B. -mobile: +1 804 108-6902 -pager: +1 804 133-6287 -roomNumber: 8535 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gael Elias,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gael Elias -sn: Elias -description: This is Gael Elias's description -facsimileTelephoneNumber: +1 510 631-1740 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 761-9368 -title: Supreme Peons President -userPassword: Password1 -uid: EliasG -givenName: Gael -mail: EliasG@9dc5f26c8d604d308d7d70d0272f1d88.bitwarden.com -carLicense: FOBBH6 -departmentNumber: 9468 -employeeType: Contract -homePhone: +1 510 411-8924 -initials: G. E. -mobile: +1 510 300-2553 -pager: +1 510 567-2669 -roomNumber: 9858 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Floria Harless,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Floria Harless -sn: Harless -description: This is Floria Harless's description -facsimileTelephoneNumber: +1 804 140-1611 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 419-1545 -title: Associate Management Developer -userPassword: Password1 -uid: HarlessF -givenName: Floria -mail: HarlessF@0d3b7d7cbc834c0cbc976d09482d6768.bitwarden.com -carLicense: GCOJY0 -departmentNumber: 2709 -employeeType: Normal -homePhone: +1 804 726-9505 -initials: F. H. -mobile: +1 804 857-3286 -pager: +1 804 398-2872 -roomNumber: 9382 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mehmud Rickel -sn: Rickel -description: This is Mehmud Rickel's description -facsimileTelephoneNumber: +1 510 492-4757 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 567-4215 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: RickelM -givenName: Mehmud -mail: RickelM@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com -carLicense: TEXP5J -departmentNumber: 8463 -employeeType: Employee -homePhone: +1 510 745-3440 -initials: M. R. -mobile: +1 510 638-9444 -pager: +1 510 362-8526 -roomNumber: 8641 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kandy Chanco,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kandy Chanco -sn: Chanco -description: This is Kandy Chanco's description -facsimileTelephoneNumber: +1 818 332-3347 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 304-8520 -title: Associate Peons Grunt -userPassword: Password1 -uid: ChancoK -givenName: Kandy -mail: ChancoK@dbf1f20f7fd241cc84adfba60d194c8f.bitwarden.com -carLicense: CKFMQ1 -departmentNumber: 1165 -employeeType: Normal -homePhone: +1 818 705-2567 -initials: K. C. -mobile: +1 818 648-7825 -pager: +1 818 856-5795 -roomNumber: 9183 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vanya Pelissier,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanya Pelissier -sn: Pelissier -description: This is Vanya Pelissier's description -facsimileTelephoneNumber: +1 818 648-8043 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 804-6203 -title: Junior Management Mascot -userPassword: Password1 -uid: PelissiV -givenName: Vanya -mail: PelissiV@d4881d0da2824b94aad995234e30bb1a.bitwarden.com -carLicense: 9DTU7A -departmentNumber: 4214 -employeeType: Contract -homePhone: +1 818 967-2828 -initials: V. P. -mobile: +1 818 977-5068 -pager: +1 818 785-1296 -roomNumber: 9552 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Noubar Shute,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noubar Shute -sn: Shute -description: This is Noubar Shute's description -facsimileTelephoneNumber: +1 415 812-4984 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 650-7739 -title: Chief Payroll President -userPassword: Password1 -uid: ShuteN -givenName: Noubar -mail: ShuteN@defab017f9734cfab5b3fea4ed24112c.bitwarden.com -carLicense: URN0UB -departmentNumber: 9305 -employeeType: Normal -homePhone: +1 415 235-2675 -initials: N. S. -mobile: +1 415 204-1505 -pager: +1 415 314-4710 -roomNumber: 8049 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cilka Galluzzi -sn: Galluzzi -description: This is Cilka Galluzzi's description -facsimileTelephoneNumber: +1 510 669-5107 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 832-8496 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: GalluzzC -givenName: Cilka -mail: GalluzzC@193a813b90bf4054a776a2e46081339c.bitwarden.com -carLicense: B9L4CO -departmentNumber: 2108 -employeeType: Contract -homePhone: +1 510 727-7875 -initials: C. G. -mobile: +1 510 135-2683 -pager: +1 510 169-2256 -roomNumber: 9295 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eliza Roney,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eliza Roney -sn: Roney -description: This is Eliza Roney's description -facsimileTelephoneNumber: +1 206 612-9014 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 206 763-4655 -title: Supreme Product Testing Technician -userPassword: Password1 -uid: RoneyE -givenName: Eliza -mail: RoneyE@daa1e24c0eb048798f1d4ee756ce865c.bitwarden.com -carLicense: ORJ89O -departmentNumber: 8363 -employeeType: Normal -homePhone: +1 206 291-9354 -initials: E. R. -mobile: +1 206 771-2946 -pager: +1 206 168-7956 -roomNumber: 9531 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Els Sridhar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Els Sridhar -sn: Sridhar -description: This is Els Sridhar's description -facsimileTelephoneNumber: +1 818 281-7594 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 818 130-6000 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: SridharE -givenName: Els -mail: SridharE@7cefaa55a36f4be4acff376f7ddd1a67.bitwarden.com -carLicense: 5LRQ63 -departmentNumber: 7662 -employeeType: Employee -homePhone: +1 818 839-7266 -initials: E. S. -mobile: +1 818 955-3447 -pager: +1 818 725-5126 -roomNumber: 8723 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Masood Kemppainen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Masood Kemppainen -sn: Kemppainen -description: This is Masood Kemppainen's description -facsimileTelephoneNumber: +1 804 625-6368 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 804 388-7957 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: KemppaiM -givenName: Masood -mail: KemppaiM@8b0911565ebc48f8bdf8c3ff36728f00.bitwarden.com -carLicense: 02AEJH -departmentNumber: 3034 -employeeType: Employee -homePhone: +1 804 445-8203 -initials: M. K. -mobile: +1 804 248-2661 -pager: +1 804 765-7025 -roomNumber: 8204 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karisa Botting,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karisa Botting -sn: Botting -description: This is Karisa Botting's description -facsimileTelephoneNumber: +1 804 498-6294 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 180-7824 -title: Associate Payroll Pinhead -userPassword: Password1 -uid: BottingK -givenName: Karisa -mail: BottingK@fecc39f9d20d45d991f7afeb75e37b9b.bitwarden.com -carLicense: RH2PKY -departmentNumber: 2106 -employeeType: Contract -homePhone: +1 804 598-6591 -initials: K. B. -mobile: +1 804 837-7171 -pager: +1 804 338-3380 -roomNumber: 9370 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Francisco Dallaire,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francisco Dallaire -sn: Dallaire -description: This is Francisco Dallaire's description -facsimileTelephoneNumber: +1 206 389-6018 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 339-5972 -title: Associate Payroll Artist -userPassword: Password1 -uid: DallairF -givenName: Francisco -mail: DallairF@7bdb27652ff44b53af3458ba811e7f70.bitwarden.com -carLicense: FQQ7DR -departmentNumber: 6679 -employeeType: Contract -homePhone: +1 206 528-7816 -initials: F. D. -mobile: +1 206 648-7869 -pager: +1 206 122-5910 -roomNumber: 8511 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jordana Hersee,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jordana Hersee -sn: Hersee -description: This is Jordana Hersee's description -facsimileTelephoneNumber: +1 818 366-2346 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 818 229-1368 -title: Master Peons Engineer -userPassword: Password1 -uid: HerseeJ -givenName: Jordana -mail: HerseeJ@6eda6577067f465b84cdc51153ccba3d.bitwarden.com -carLicense: 312038 -departmentNumber: 2145 -employeeType: Normal -homePhone: +1 818 718-4417 -initials: J. H. -mobile: +1 818 328-3766 -pager: +1 818 185-8028 -roomNumber: 8451 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gillan Hufana,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gillan Hufana -sn: Hufana -description: This is Gillan Hufana's description -facsimileTelephoneNumber: +1 804 302-1299 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 177-4244 -title: Chief Human Resources Czar -userPassword: Password1 -uid: HufanaG -givenName: Gillan -mail: HufanaG@7d2914d75d254468950490f34fff79f9.bitwarden.com -carLicense: QVFV1D -departmentNumber: 9744 -employeeType: Contract -homePhone: +1 804 486-2798 -initials: G. H. -mobile: +1 804 646-3456 -pager: +1 804 626-1443 -roomNumber: 8295 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shep Schroeder,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shep Schroeder -sn: Schroeder -description: This is Shep Schroeder's description -facsimileTelephoneNumber: +1 510 768-6681 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 817-5667 -title: Chief Administrative Director -userPassword: Password1 -uid: SchroedS -givenName: Shep -mail: SchroedS@5414e6754d4b4f6bbcd511a3a43e9ff6.bitwarden.com -carLicense: N2O1SV -departmentNumber: 8158 -employeeType: Contract -homePhone: +1 510 284-1827 -initials: S. S. -mobile: +1 510 126-7507 -pager: +1 510 151-7586 -roomNumber: 8602 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Masahiro Haughey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Masahiro Haughey -sn: Haughey -description: This is Masahiro Haughey's description -facsimileTelephoneNumber: +1 206 972-4060 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 231-6122 -title: Supreme Administrative Architect -userPassword: Password1 -uid: HaugheyM -givenName: Masahiro -mail: HaugheyM@43ed30f036954e65898067e558a32b4d.bitwarden.com -carLicense: UCKD7V -departmentNumber: 9182 -employeeType: Employee -homePhone: +1 206 175-4257 -initials: M. H. -mobile: +1 206 383-9185 -pager: +1 206 316-1572 -roomNumber: 9340 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgiana Boyajian -sn: Boyajian -description: This is Georgiana Boyajian's description -facsimileTelephoneNumber: +1 510 195-8911 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 297-8683 -title: Junior Payroll Architect -userPassword: Password1 -uid: BoyajiaG -givenName: Georgiana -mail: BoyajiaG@ecd862454c8b49a4ab4dccef5a805c86.bitwarden.com -carLicense: YHIKOX -departmentNumber: 4059 -employeeType: Employee -homePhone: +1 510 246-8687 -initials: G. B. -mobile: +1 510 223-5499 -pager: +1 510 212-2644 -roomNumber: 9083 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mariele Puukila,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariele Puukila -sn: Puukila -description: This is Mariele Puukila's description -facsimileTelephoneNumber: +1 804 326-1763 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 473-8079 -title: Master Management Assistant -userPassword: Password1 -uid: PuukilaM -givenName: Mariele -mail: PuukilaM@9168c74ef41149569e1e454986f240f5.bitwarden.com -carLicense: 4MWIIA -departmentNumber: 4808 -employeeType: Employee -homePhone: +1 804 316-7674 -initials: M. P. -mobile: +1 804 639-2669 -pager: +1 804 102-8550 -roomNumber: 8233 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nathalie Hopkinson -sn: Hopkinson -description: This is Nathalie Hopkinson's description -facsimileTelephoneNumber: +1 206 678-6632 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 611-9842 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: HopkinsN -givenName: Nathalie -mail: HopkinsN@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com -carLicense: XHQ6E4 -departmentNumber: 6768 -employeeType: Contract -homePhone: +1 206 878-4646 -initials: N. H. -mobile: +1 206 751-9497 -pager: +1 206 942-8562 -roomNumber: 8965 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=An Assenza,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: An Assenza -sn: Assenza -description: This is An Assenza's description -facsimileTelephoneNumber: +1 213 533-8324 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 498-6476 -title: Junior Administrative President -userPassword: Password1 -uid: AssenzaA -givenName: An -mail: AssenzaA@6012fc3f273d40f18822bdc7b0a5938e.bitwarden.com -carLicense: LIKCBY -departmentNumber: 9876 -employeeType: Contract -homePhone: +1 213 593-1076 -initials: A. A. -mobile: +1 213 412-6043 -pager: +1 213 666-7507 -roomNumber: 8778 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nerta Huitt,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nerta Huitt -sn: Huitt -description: This is Nerta Huitt's description -facsimileTelephoneNumber: +1 804 808-3106 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 974-1027 -title: Chief Product Development Architect -userPassword: Password1 -uid: HuittN -givenName: Nerta -mail: HuittN@9a5eb95a8d064ae1ab7c5bae15e123a0.bitwarden.com -carLicense: PAB4CJ -departmentNumber: 6809 -employeeType: Contract -homePhone: +1 804 979-8496 -initials: N. H. -mobile: +1 804 586-6601 -pager: +1 804 585-5313 -roomNumber: 9094 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dela Gilliam,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dela Gilliam -sn: Gilliam -description: This is Dela Gilliam's description -facsimileTelephoneNumber: +1 818 366-8222 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 746-2731 -title: Supreme Product Development Architect -userPassword: Password1 -uid: GilliamD -givenName: Dela -mail: GilliamD@2ffe207cbf4244c5be34772f95d3e203.bitwarden.com -carLicense: WO6QAQ -departmentNumber: 1913 -employeeType: Normal -homePhone: +1 818 186-6395 -initials: D. G. -mobile: +1 818 474-2796 -pager: +1 818 929-2114 -roomNumber: 8465 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Edric Dolginoff,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edric Dolginoff -sn: Dolginoff -description: This is Edric Dolginoff's description -facsimileTelephoneNumber: +1 213 231-8343 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 547-9479 -title: Associate Product Development Manager -userPassword: Password1 -uid: DolginoE -givenName: Edric -mail: DolginoE@b5bcc4ce776e4805ab4216703177730e.bitwarden.com -carLicense: NT3VY0 -departmentNumber: 7550 -employeeType: Employee -homePhone: +1 213 295-2175 -initials: E. D. -mobile: +1 213 560-2425 -pager: +1 213 200-2702 -roomNumber: 9348 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Livvy Flores,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Livvy Flores -sn: Flores -description: This is Livvy Flores's description -facsimileTelephoneNumber: +1 818 914-9881 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 453-3053 -title: Junior Administrative Sales Rep -userPassword: Password1 -uid: FloresL -givenName: Livvy -mail: FloresL@7c2fe37e93114583be5da4a11c32b590.bitwarden.com -carLicense: FVH958 -departmentNumber: 6360 -employeeType: Employee -homePhone: +1 818 759-2517 -initials: L. F. -mobile: +1 818 822-4414 -pager: +1 818 279-5352 -roomNumber: 9158 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Flossi Fumerton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flossi Fumerton -sn: Fumerton -description: This is Flossi Fumerton's description -facsimileTelephoneNumber: +1 510 769-2451 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 851-2920 -title: Supreme Management Admin -userPassword: Password1 -uid: FumertoF -givenName: Flossi -mail: FumertoF@1c6815f019224d89bea339008a2dffbe.bitwarden.com -carLicense: YW6BSP -departmentNumber: 5491 -employeeType: Employee -homePhone: +1 510 974-9892 -initials: F. F. -mobile: +1 510 152-7344 -pager: +1 510 987-5218 -roomNumber: 9006 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fanni Noah,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fanni Noah -sn: Noah -description: This is Fanni Noah's description -facsimileTelephoneNumber: +1 510 630-4285 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 434-6825 -title: Associate Administrative Stooge -userPassword: Password1 -uid: NoahF -givenName: Fanni -mail: NoahF@a08a36a3e7a643d9a21fd4a80adf64e7.bitwarden.com -carLicense: 6XWDUI -departmentNumber: 5082 -employeeType: Contract -homePhone: +1 510 619-2342 -initials: F. N. -mobile: +1 510 327-5571 -pager: +1 510 871-9640 -roomNumber: 8532 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tobe Blostein,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tobe Blostein -sn: Blostein -description: This is Tobe Blostein's description -facsimileTelephoneNumber: +1 206 156-5118 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 578-7671 -title: Master Payroll Manager -userPassword: Password1 -uid: BlosteiT -givenName: Tobe -mail: BlosteiT@452f7760183e4b0298d966a8ad5e45e0.bitwarden.com -carLicense: F5ASXU -departmentNumber: 6062 -employeeType: Employee -homePhone: +1 206 283-2177 -initials: T. B. -mobile: +1 206 627-2402 -pager: +1 206 593-8423 -roomNumber: 8572 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Madlen JodoinStJean,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madlen JodoinStJean -sn: JodoinStJean -description: This is Madlen JodoinStJean's description -facsimileTelephoneNumber: +1 213 595-2871 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 946-3628 -title: Supreme Management Grunt -userPassword: Password1 -uid: JodoinSM -givenName: Madlen -mail: JodoinSM@e97e68f305e3440c9129677cf226a2f9.bitwarden.com -carLicense: 30IFPJ -departmentNumber: 9801 -employeeType: Employee -homePhone: +1 213 897-4296 -initials: M. J. -mobile: +1 213 651-1843 -pager: +1 213 864-6519 -roomNumber: 9055 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Felipe McBroom,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felipe McBroom -sn: McBroom -description: This is Felipe McBroom's description -facsimileTelephoneNumber: +1 206 594-4400 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 149-1801 -title: Associate Janitorial Artist -userPassword: Password1 -uid: McBroomF -givenName: Felipe -mail: McBroomF@48f243cdc32d45d6aad070d357ee442e.bitwarden.com -carLicense: L27D8F -departmentNumber: 7376 -employeeType: Employee -homePhone: +1 206 617-9303 -initials: F. M. -mobile: +1 206 261-6393 -pager: +1 206 177-7501 -roomNumber: 8589 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stella Hoare,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stella Hoare -sn: Hoare -description: This is Stella Hoare's description -facsimileTelephoneNumber: +1 206 453-4815 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 694-9940 -title: Chief Human Resources Director -userPassword: Password1 -uid: HoareS -givenName: Stella -mail: HoareS@cbf0651b176b40b3a9e0984d1cf7efbc.bitwarden.com -carLicense: DGNGQ8 -departmentNumber: 6514 -employeeType: Normal -homePhone: +1 206 815-8173 -initials: S. H. -mobile: +1 206 601-3454 -pager: +1 206 785-1916 -roomNumber: 8518 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ShenZhi Csop -sn: Csop -description: This is ShenZhi Csop's description -facsimileTelephoneNumber: +1 206 259-7243 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 697-9639 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: CsopS -givenName: ShenZhi -mail: CsopS@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com -carLicense: Y6RVDA -departmentNumber: 7709 -employeeType: Normal -homePhone: +1 206 678-5155 -initials: S. C. -mobile: +1 206 163-3528 -pager: +1 206 132-4561 -roomNumber: 9969 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anthony Pringle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anthony Pringle -sn: Pringle -description: This is Anthony Pringle's description -facsimileTelephoneNumber: +1 213 597-2686 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 232-5731 -title: Chief Janitorial Artist -userPassword: Password1 -uid: PringleA -givenName: Anthony -mail: PringleA@547a7e1e0d95484c8a7654407d3e43c9.bitwarden.com -carLicense: IXNHXG -departmentNumber: 3407 -employeeType: Contract -homePhone: +1 213 577-3121 -initials: A. P. -mobile: +1 213 829-2669 -pager: +1 213 202-6637 -roomNumber: 8896 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Alexina Buschelman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alexina Buschelman -sn: Buschelman -description: This is Alexina Buschelman's description -facsimileTelephoneNumber: +1 510 261-3467 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 308-9203 -title: Chief Product Development Assistant -userPassword: Password1 -uid: BuschelA -givenName: Alexina -mail: BuschelA@b1fe32739d494b049e229d2be6982c9a.bitwarden.com -carLicense: M16DAS -departmentNumber: 2701 -employeeType: Employee -homePhone: +1 510 660-1134 -initials: A. B. -mobile: +1 510 772-4516 -pager: +1 510 329-1331 -roomNumber: 9969 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Floris Decelles,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Floris Decelles -sn: Decelles -description: This is Floris Decelles's description -facsimileTelephoneNumber: +1 510 272-7300 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 225-2336 -title: Chief Peons Grunt -userPassword: Password1 -uid: DecelleF -givenName: Floris -mail: DecelleF@0b9e602c3a92485da529010ed919b9e2.bitwarden.com -carLicense: RJF61V -departmentNumber: 2122 -employeeType: Normal -homePhone: +1 510 457-7312 -initials: F. D. -mobile: +1 510 162-8466 -pager: +1 510 828-8557 -roomNumber: 9465 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bella Jayamanne,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bella Jayamanne -sn: Jayamanne -description: This is Bella Jayamanne's description -facsimileTelephoneNumber: +1 213 856-5289 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 735-4215 -title: Chief Product Development Technician -userPassword: Password1 -uid: JayamanB -givenName: Bella -mail: JayamanB@6ffc05f614d948aa9f4574ca027b0151.bitwarden.com -carLicense: G70PC3 -departmentNumber: 3482 -employeeType: Contract -homePhone: +1 213 402-3238 -initials: B. J. -mobile: +1 213 688-5464 -pager: +1 213 707-3908 -roomNumber: 8732 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Erminie Normandin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erminie Normandin -sn: Normandin -description: This is Erminie Normandin's description -facsimileTelephoneNumber: +1 510 244-4466 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 577-6165 -title: Master Management Stooge -userPassword: Password1 -uid: NormandE -givenName: Erminie -mail: NormandE@9f9fe6d238ce4f8cb29cecfb73bf648a.bitwarden.com -carLicense: 06KQT8 -departmentNumber: 1188 -employeeType: Normal -homePhone: +1 510 400-5591 -initials: E. N. -mobile: +1 510 974-7103 -pager: +1 510 563-6075 -roomNumber: 9729 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Niz Colucci,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niz Colucci -sn: Colucci -description: This is Niz Colucci's description -facsimileTelephoneNumber: +1 408 659-3415 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 746-3548 -title: Supreme Management Figurehead -userPassword: Password1 -uid: ColucciN -givenName: Niz -mail: ColucciN@415c030ee16d4de4a7392387c8cef87f.bitwarden.com -carLicense: DL73VG -departmentNumber: 1570 -employeeType: Contract -homePhone: +1 408 993-1232 -initials: N. C. -mobile: +1 408 679-9969 -pager: +1 408 598-1004 -roomNumber: 9876 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Muni Strock,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Muni Strock -sn: Strock -description: This is Muni Strock's description -facsimileTelephoneNumber: +1 213 374-8358 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 213 875-6422 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: StrockM -givenName: Muni -mail: StrockM@2b8b15b2c5c943829658bf927a1b606d.bitwarden.com -carLicense: 1DL59O -departmentNumber: 7476 -employeeType: Employee -homePhone: +1 213 293-7534 -initials: M. S. -mobile: +1 213 902-7727 -pager: +1 213 480-6104 -roomNumber: 9861 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aybars Lavers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aybars Lavers -sn: Lavers -description: This is Aybars Lavers's description -facsimileTelephoneNumber: +1 408 764-9326 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 151-7748 -title: Chief Payroll Vice President -userPassword: Password1 -uid: LaversA -givenName: Aybars -mail: LaversA@3a6874a38197445fbf21db557fe28dc6.bitwarden.com -carLicense: 2VRBPR -departmentNumber: 5686 -employeeType: Employee -homePhone: +1 408 481-9728 -initials: A. L. -mobile: +1 408 425-4585 -pager: +1 408 182-2794 -roomNumber: 9812 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bakoury Desrosiers -sn: Desrosiers -description: This is Bakoury Desrosiers's description -facsimileTelephoneNumber: +1 510 348-1071 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 377-8314 -title: Master Payroll Vice President -userPassword: Password1 -uid: DesrosiB -givenName: Bakoury -mail: DesrosiB@3f22733d317d4f91854fb0b865164d32.bitwarden.com -carLicense: 451NJS -departmentNumber: 8975 -employeeType: Contract -homePhone: +1 510 759-8922 -initials: B. D. -mobile: +1 510 815-8596 -pager: +1 510 460-9861 -roomNumber: 9632 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yettie Borodajluk -sn: Borodajluk -description: This is Yettie Borodajluk's description -facsimileTelephoneNumber: +1 415 275-8272 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 927-4632 -title: Junior Payroll Janitor -userPassword: Password1 -uid: BorodajY -givenName: Yettie -mail: BorodajY@16d1d9688ffa4f59a9529d3b32ff16fb.bitwarden.com -carLicense: PIF9L9 -departmentNumber: 3529 -employeeType: Contract -homePhone: +1 415 737-4316 -initials: Y. B. -mobile: +1 415 914-4720 -pager: +1 415 363-7891 -roomNumber: 8732 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corrina Kodnar -sn: Kodnar -description: This is Corrina Kodnar's description -facsimileTelephoneNumber: +1 804 213-2066 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 884-9421 -title: Master Janitorial Technician -userPassword: Password1 -uid: KodnarC -givenName: Corrina -mail: KodnarC@6af59491c5a74fddb4c99c2f4eaecac5.bitwarden.com -carLicense: UEER3B -departmentNumber: 7228 -employeeType: Employee -homePhone: +1 804 463-7373 -initials: C. K. -mobile: +1 804 100-4713 -pager: +1 804 648-8546 -roomNumber: 9404 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Careers DeSalis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Careers DeSalis -sn: DeSalis -description: This is Careers DeSalis's description -facsimileTelephoneNumber: +1 415 635-3185 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 899-1937 -title: Master Janitorial Technician -userPassword: Password1 -uid: DeSalisC -givenName: Careers -mail: DeSalisC@d8f95844461442f7932326cd41b836f9.bitwarden.com -carLicense: WWL29U -departmentNumber: 5526 -employeeType: Employee -homePhone: +1 415 417-1453 -initials: C. D. -mobile: +1 415 699-9404 -pager: +1 415 112-6712 -roomNumber: 9343 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harmonie Calcote -sn: Calcote -description: This is Harmonie Calcote's description -facsimileTelephoneNumber: +1 804 850-8638 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 804 159-5392 -title: Chief Product Testing Grunt -userPassword: Password1 -uid: CalcoteH -givenName: Harmonie -mail: CalcoteH@530df39e624341ce900342a91a704d99.bitwarden.com -carLicense: K4OCEC -departmentNumber: 9867 -employeeType: Employee -homePhone: +1 804 739-5475 -initials: H. C. -mobile: +1 804 967-8450 -pager: +1 804 144-4098 -roomNumber: 8128 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Anna Meckley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anna Meckley -sn: Meckley -description: This is Anna Meckley's description -facsimileTelephoneNumber: +1 408 645-1625 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 709-6475 -title: Junior Payroll Consultant -userPassword: Password1 -uid: MeckleyA -givenName: Anna -mail: MeckleyA@a046a9cbbddd48b590c68e29ebbbad81.bitwarden.com -carLicense: AH19DP -departmentNumber: 6432 -employeeType: Contract -homePhone: +1 408 721-9866 -initials: A. M. -mobile: +1 408 717-3225 -pager: +1 408 529-8097 -roomNumber: 8631 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lilith Stejskal,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilith Stejskal -sn: Stejskal -description: This is Lilith Stejskal's description -facsimileTelephoneNumber: +1 415 747-9895 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 649-5899 -title: Master Payroll Pinhead -userPassword: Password1 -uid: StejskaL -givenName: Lilith -mail: StejskaL@a23a63f768764ebb9f25e196f981df61.bitwarden.com -carLicense: KWA5T5 -departmentNumber: 3026 -employeeType: Contract -homePhone: +1 415 636-6685 -initials: L. S. -mobile: +1 415 453-1571 -pager: +1 415 251-5887 -roomNumber: 8771 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Prudy Australia,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prudy Australia -sn: Australia -description: This is Prudy Australia's description -facsimileTelephoneNumber: +1 408 624-2136 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 338-6179 -title: Master Payroll Punk -userPassword: Password1 -uid: AustralP -givenName: Prudy -mail: AustralP@0886597f6db54159b6bf740e90826839.bitwarden.com -carLicense: EPTJV7 -departmentNumber: 3055 -employeeType: Normal -homePhone: +1 408 494-8403 -initials: P. A. -mobile: +1 408 277-7911 -pager: +1 408 781-4816 -roomNumber: 8503 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stevena Alberse,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stevena Alberse -sn: Alberse -description: This is Stevena Alberse's description -facsimileTelephoneNumber: +1 415 688-8128 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 349-8020 -title: Supreme Payroll Architect -userPassword: Password1 -uid: AlberseS -givenName: Stevena -mail: AlberseS@8eaa02b53fec48d0842607d198bfec39.bitwarden.com -carLicense: LFA645 -departmentNumber: 5368 -employeeType: Employee -homePhone: +1 415 368-2656 -initials: S. A. -mobile: +1 415 658-6886 -pager: +1 415 855-8438 -roomNumber: 9107 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Janson Finak,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janson Finak -sn: Finak -description: This is Janson Finak's description -facsimileTelephoneNumber: +1 206 628-9000 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 970-8202 -title: Junior Peons Director -userPassword: Password1 -uid: FinakJ -givenName: Janson -mail: FinakJ@1e51049529e146d4a9d0e0d1e98a7af3.bitwarden.com -carLicense: WEY198 -departmentNumber: 3961 -employeeType: Normal -homePhone: +1 206 989-4939 -initials: J. F. -mobile: +1 206 374-1265 -pager: +1 206 639-8541 -roomNumber: 9577 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Trudy Hillring,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trudy Hillring -sn: Hillring -description: This is Trudy Hillring's description -facsimileTelephoneNumber: +1 408 170-7012 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 160-1707 -title: Master Administrative Evangelist -userPassword: Password1 -uid: HillrinT -givenName: Trudy -mail: HillrinT@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com -carLicense: 6TR784 -departmentNumber: 5090 -employeeType: Contract -homePhone: +1 408 835-5818 -initials: T. H. -mobile: +1 408 763-6309 -pager: +1 408 637-1073 -roomNumber: 9144 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Albert Rolfes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Albert Rolfes -sn: Rolfes -description: This is Albert Rolfes's description -facsimileTelephoneNumber: +1 408 252-7347 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 386-3234 -title: Master Product Testing Consultant -userPassword: Password1 -uid: RolfesA -givenName: Albert -mail: RolfesA@c8ee77199e8a4c8b9eaba7996bee1657.bitwarden.com -carLicense: UBH6KS -departmentNumber: 6379 -employeeType: Contract -homePhone: +1 408 892-5866 -initials: A. R. -mobile: +1 408 590-8840 -pager: +1 408 138-1106 -roomNumber: 9428 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Coletta Azad,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coletta Azad -sn: Azad -description: This is Coletta Azad's description -facsimileTelephoneNumber: +1 818 239-7673 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 774-5806 -title: Associate Management Mascot -userPassword: Password1 -uid: AzadC -givenName: Coletta -mail: AzadC@8e76ac132bbc40639d377cc963491f20.bitwarden.com -carLicense: 5Y6KT4 -departmentNumber: 1611 -employeeType: Contract -homePhone: +1 818 405-6487 -initials: C. A. -mobile: +1 818 325-8544 -pager: +1 818 316-3216 -roomNumber: 8214 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Celestyna DeVries,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celestyna DeVries -sn: DeVries -description: This is Celestyna DeVries's description -facsimileTelephoneNumber: +1 804 114-5866 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 334-9985 -title: Associate Peons Architect -userPassword: Password1 -uid: DeVriesC -givenName: Celestyna -mail: DeVriesC@235bdf1949f24a4b80141074712cdcd7.bitwarden.com -carLicense: FKMYXY -departmentNumber: 2743 -employeeType: Employee -homePhone: +1 804 595-1751 -initials: C. D. -mobile: +1 804 111-7107 -pager: +1 804 751-4975 -roomNumber: 8502 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorilee Klostermann -sn: Klostermann -description: This is Lorilee Klostermann's description -facsimileTelephoneNumber: +1 206 187-5555 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 206 293-4179 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: KlosterL -givenName: Lorilee -mail: KlosterL@3ce51f6d63564349a707188cebe0b9db.bitwarden.com -carLicense: 9PEKJA -departmentNumber: 4104 -employeeType: Employee -homePhone: +1 206 159-2993 -initials: L. K. -mobile: +1 206 137-7493 -pager: +1 206 929-4909 -roomNumber: 9315 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Darda Mitrani,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darda Mitrani -sn: Mitrani -description: This is Darda Mitrani's description -facsimileTelephoneNumber: +1 206 134-8476 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 750-3895 -title: Supreme Human Resources Artist -userPassword: Password1 -uid: MitraniD -givenName: Darda -mail: MitraniD@edaeeeda9dac4d529991a1e33586bf00.bitwarden.com -carLicense: VJABF6 -departmentNumber: 6269 -employeeType: Contract -homePhone: +1 206 282-2913 -initials: D. M. -mobile: +1 206 526-3904 -pager: +1 206 126-6944 -roomNumber: 9245 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Burton Falquero,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Burton Falquero -sn: Falquero -description: This is Burton Falquero's description -facsimileTelephoneNumber: +1 206 400-8215 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 499-9789 -title: Associate Management Mascot -userPassword: Password1 -uid: FalquerB -givenName: Burton -mail: FalquerB@e677741303634ac2804273adce139081.bitwarden.com -carLicense: L71CCJ -departmentNumber: 5980 -employeeType: Normal -homePhone: +1 206 941-7850 -initials: B. F. -mobile: +1 206 924-4740 -pager: +1 206 179-3378 -roomNumber: 8071 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lishe Suess,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lishe Suess -sn: Suess -description: This is Lishe Suess's description -facsimileTelephoneNumber: +1 818 144-9366 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 279-4735 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: SuessL -givenName: Lishe -mail: SuessL@280567b14e5b498fb0bc375c822f4548.bitwarden.com -carLicense: HJE2CB -departmentNumber: 8199 -employeeType: Contract -homePhone: +1 818 692-8216 -initials: L. S. -mobile: +1 818 443-7992 -pager: +1 818 872-1805 -roomNumber: 8062 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Adora Droste,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adora Droste -sn: Droste -description: This is Adora Droste's description -facsimileTelephoneNumber: +1 818 551-7184 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 180-3298 -title: Chief Human Resources Vice President -userPassword: Password1 -uid: DrosteA -givenName: Adora -mail: DrosteA@58fb794b3cd74bd6925d4e906edf1e0e.bitwarden.com -carLicense: QP7JAF -departmentNumber: 7593 -employeeType: Contract -homePhone: +1 818 240-9279 -initials: A. D. -mobile: +1 818 496-1357 -pager: +1 818 724-9679 -roomNumber: 8744 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maybelle Obermeyer -sn: Obermeyer -description: This is Maybelle Obermeyer's description -facsimileTelephoneNumber: +1 510 943-6135 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 638-6844 -title: Master Janitorial Madonna -userPassword: Password1 -uid: ObermeyM -givenName: Maybelle -mail: ObermeyM@acb4046ec7714c0fad9acedf1017d851.bitwarden.com -carLicense: BLJ8X1 -departmentNumber: 2360 -employeeType: Contract -homePhone: +1 510 230-1805 -initials: M. O. -mobile: +1 510 570-7999 -pager: +1 510 474-2295 -roomNumber: 8730 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Paper Blakeslee,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paper Blakeslee -sn: Blakeslee -description: This is Paper Blakeslee's description -facsimileTelephoneNumber: +1 510 508-6952 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 196-6731 -title: Junior Administrative Pinhead -userPassword: Password1 -uid: BlakeslP -givenName: Paper -mail: BlakeslP@35f9e0ae24c24ec3baa413620b2b7eb4.bitwarden.com -carLicense: UG6KA8 -departmentNumber: 8932 -employeeType: Normal -homePhone: +1 510 810-1638 -initials: P. B. -mobile: +1 510 620-2217 -pager: +1 510 777-9602 -roomNumber: 8030 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Teena Klavkalns,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teena Klavkalns -sn: Klavkalns -description: This is Teena Klavkalns's description -facsimileTelephoneNumber: +1 415 918-3995 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 156-2092 -title: Supreme Administrative Manager -userPassword: Password1 -uid: KlavkalT -givenName: Teena -mail: KlavkalT@f397e344461e4f9a88c49c97eb320637.bitwarden.com -carLicense: 29J0KY -departmentNumber: 8595 -employeeType: Contract -homePhone: +1 415 572-5528 -initials: T. K. -mobile: +1 415 748-2121 -pager: +1 415 122-8516 -roomNumber: 9575 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veradis Mitchelson -sn: Mitchelson -description: This is Veradis Mitchelson's description -facsimileTelephoneNumber: +1 408 840-3195 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 408 601-8680 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: MitchelV -givenName: Veradis -mail: MitchelV@91ed7be59f5046a99ecb320616cf96d3.bitwarden.com -carLicense: G1HFRL -departmentNumber: 4313 -employeeType: Contract -homePhone: +1 408 832-4515 -initials: V. M. -mobile: +1 408 509-8920 -pager: +1 408 754-4219 -roomNumber: 8105 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sybila McQuarrie -sn: McQuarrie -description: This is Sybila McQuarrie's description -facsimileTelephoneNumber: +1 213 337-2795 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 213 600-4811 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: McQuarrS -givenName: Sybila -mail: McQuarrS@96b5430a2ccc4177bd773424088b496b.bitwarden.com -carLicense: ECBVWP -departmentNumber: 6262 -employeeType: Contract -homePhone: +1 213 835-1360 -initials: S. M. -mobile: +1 213 907-7601 -pager: +1 213 117-1688 -roomNumber: 8531 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=ChiKwan Lakhani,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChiKwan Lakhani -sn: Lakhani -description: This is ChiKwan Lakhani's description -facsimileTelephoneNumber: +1 213 610-3319 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 656-2479 -title: Associate Management President -userPassword: Password1 -uid: LakhaniC -givenName: ChiKwan -mail: LakhaniC@c75f0e626db74dca96376386c5032bd2.bitwarden.com -carLicense: 9QYJ2F -departmentNumber: 1129 -employeeType: Normal -homePhone: +1 213 602-3152 -initials: C. L. -mobile: +1 213 702-2572 -pager: +1 213 612-8314 -roomNumber: 9721 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Niz Tassy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niz Tassy -sn: Tassy -description: This is Niz Tassy's description -facsimileTelephoneNumber: +1 510 230-4246 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 901-4822 -title: Master Peons President -userPassword: Password1 -uid: TassyN -givenName: Niz -mail: TassyN@339e122adcf4463f83274df9a1e1749f.bitwarden.com -carLicense: 6TQQY6 -departmentNumber: 4517 -employeeType: Normal -homePhone: +1 510 280-3524 -initials: N. T. -mobile: +1 510 540-9254 -pager: +1 510 555-7896 -roomNumber: 9555 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marg Cavanagh,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marg Cavanagh -sn: Cavanagh -description: This is Marg Cavanagh's description -facsimileTelephoneNumber: +1 213 882-8441 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 561-4476 -title: Junior Peons Engineer -userPassword: Password1 -uid: CavanagM -givenName: Marg -mail: CavanagM@f2a6f34598244e88aecb895cbecfca2e.bitwarden.com -carLicense: HT17C9 -departmentNumber: 9628 -employeeType: Employee -homePhone: +1 213 632-5705 -initials: M. C. -mobile: +1 213 806-7838 -pager: +1 213 352-8362 -roomNumber: 8410 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anthony Luyten,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anthony Luyten -sn: Luyten -description: This is Anthony Luyten's description -facsimileTelephoneNumber: +1 510 638-2206 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 556-5295 -title: Master Administrative Fellow -userPassword: Password1 -uid: LuytenA -givenName: Anthony -mail: LuytenA@07f933542a8443fa9fa85a2d55eb8b28.bitwarden.com -carLicense: 7TS99U -departmentNumber: 1884 -employeeType: Contract -homePhone: +1 510 878-8736 -initials: A. L. -mobile: +1 510 309-6455 -pager: +1 510 916-1908 -roomNumber: 9946 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mira Hinkel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mira Hinkel -sn: Hinkel -description: This is Mira Hinkel's description -facsimileTelephoneNumber: +1 510 782-4626 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 205-9204 -title: Chief Product Testing Architect -userPassword: Password1 -uid: HinkelM -givenName: Mira -mail: HinkelM@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com -carLicense: 6ELHBB -departmentNumber: 6917 -employeeType: Contract -homePhone: +1 510 382-2695 -initials: M. H. -mobile: +1 510 503-5585 -pager: +1 510 379-8527 -roomNumber: 9655 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Florette Amos,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florette Amos -sn: Amos -description: This is Florette Amos's description -facsimileTelephoneNumber: +1 408 488-7307 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 459-8430 -title: Chief Payroll Dictator -userPassword: Password1 -uid: AmosF -givenName: Florette -mail: AmosF@20bbf24fbc3b442da2b7e99430631372.bitwarden.com -carLicense: WEH6LR -departmentNumber: 2050 -employeeType: Normal -homePhone: +1 408 209-8155 -initials: F. A. -mobile: +1 408 671-7778 -pager: +1 408 571-4279 -roomNumber: 8259 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Clara Maglione,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clara Maglione -sn: Maglione -description: This is Clara Maglione's description -facsimileTelephoneNumber: +1 415 392-6217 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 954-7091 -title: Associate Management Grunt -userPassword: Password1 -uid: MaglionC -givenName: Clara -mail: MaglionC@9377f34b40c845ea9ad33f532a97d8a4.bitwarden.com -carLicense: QPEF06 -departmentNumber: 6452 -employeeType: Normal -homePhone: +1 415 964-5634 -initials: C. M. -mobile: +1 415 909-3348 -pager: +1 415 391-2995 -roomNumber: 9161 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kizzie Leang,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kizzie Leang -sn: Leang -description: This is Kizzie Leang's description -facsimileTelephoneNumber: +1 206 836-5333 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 404-5328 -title: Master Peons Engineer -userPassword: Password1 -uid: LeangK -givenName: Kizzie -mail: LeangK@3b6256d1a2114444bde1996d1b271e4c.bitwarden.com -carLicense: 6L545C -departmentNumber: 9587 -employeeType: Employee -homePhone: +1 206 912-9765 -initials: K. L. -mobile: +1 206 492-9714 -pager: +1 206 915-6098 -roomNumber: 8091 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Celestia Tobias,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celestia Tobias -sn: Tobias -description: This is Celestia Tobias's description -facsimileTelephoneNumber: +1 408 555-1027 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 929-4963 -title: Junior Administrative Mascot -userPassword: Password1 -uid: TobiasC -givenName: Celestia -mail: TobiasC@db3ffdb4452b42c4898f995b3d073240.bitwarden.com -carLicense: 3MODH9 -departmentNumber: 1199 -employeeType: Employee -homePhone: +1 408 683-8429 -initials: C. T. -mobile: +1 408 963-4073 -pager: +1 408 569-6008 -roomNumber: 9359 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hayden Silverthorn -sn: Silverthorn -description: This is Hayden Silverthorn's description -facsimileTelephoneNumber: +1 415 422-2924 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 387-8686 -title: Master Product Development Manager -userPassword: Password1 -uid: SilvertH -givenName: Hayden -mail: SilvertH@02d364e8b5314cbabf82326287f95a37.bitwarden.com -carLicense: IU4JAP -departmentNumber: 7077 -employeeType: Employee -homePhone: +1 415 436-7499 -initials: H. S. -mobile: +1 415 537-4150 -pager: +1 415 949-5844 -roomNumber: 8415 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jet McGregor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jet McGregor -sn: McGregor -description: This is Jet McGregor's description -facsimileTelephoneNumber: +1 510 846-3610 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 406-3508 -title: Supreme Management Stooge -userPassword: Password1 -uid: McGregoJ -givenName: Jet -mail: McGregoJ@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com -carLicense: ELR0L7 -departmentNumber: 7685 -employeeType: Contract -homePhone: +1 510 437-7665 -initials: J. M. -mobile: +1 510 178-6071 -pager: +1 510 553-4803 -roomNumber: 9862 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kristien Brokaw,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristien Brokaw -sn: Brokaw -description: This is Kristien Brokaw's description -facsimileTelephoneNumber: +1 804 709-2145 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 916-9620 -title: Chief Peons Figurehead -userPassword: Password1 -uid: BrokawK -givenName: Kristien -mail: BrokawK@02ce75bcb8d0491f899a2b936126cb22.bitwarden.com -carLicense: Q4J7AP -departmentNumber: 1144 -employeeType: Contract -homePhone: +1 804 880-2444 -initials: K. B. -mobile: +1 804 897-4799 -pager: +1 804 562-6867 -roomNumber: 9013 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Karole Su,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karole Su -sn: Su -description: This is Karole Su's description -facsimileTelephoneNumber: +1 408 212-9363 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 168-8093 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: SuK -givenName: Karole -mail: SuK@a55a0552890b4055ae5195bed49574db.bitwarden.com -carLicense: 0IF23V -departmentNumber: 9900 -employeeType: Employee -homePhone: +1 408 658-8329 -initials: K. S. -mobile: +1 408 262-2294 -pager: +1 408 195-6217 -roomNumber: 9513 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clemente Ziebarth -sn: Ziebarth -description: This is Clemente Ziebarth's description -facsimileTelephoneNumber: +1 804 637-7544 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 394-5696 -title: Chief Administrative Director -userPassword: Password1 -uid: ZiebartC -givenName: Clemente -mail: ZiebartC@98b2d363da184136b48a9bfde02f5760.bitwarden.com -carLicense: HOI7JB -departmentNumber: 1333 -employeeType: Contract -homePhone: +1 804 376-7971 -initials: C. Z. -mobile: +1 804 475-3033 -pager: +1 804 122-7727 -roomNumber: 8961 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Laureen Shrieves,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laureen Shrieves -sn: Shrieves -description: This is Laureen Shrieves's description -facsimileTelephoneNumber: +1 818 633-3381 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 818 812-9944 -title: Chief Payroll Czar -userPassword: Password1 -uid: ShrieveL -givenName: Laureen -mail: ShrieveL@7f942390e1bf40f296074b513660c50e.bitwarden.com -carLicense: 8Y5HRR -departmentNumber: 6229 -employeeType: Contract -homePhone: +1 818 254-8863 -initials: L. S. -mobile: +1 818 372-6265 -pager: +1 818 717-9793 -roomNumber: 8546 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dalila Hassold,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dalila Hassold -sn: Hassold -description: This is Dalila Hassold's description -facsimileTelephoneNumber: +1 804 761-1666 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 234-3946 -title: Master Management Visionary -userPassword: Password1 -uid: HassoldD -givenName: Dalila -mail: HassoldD@8b7fc53ad9d44eee917cc3e25b895199.bitwarden.com -carLicense: 83HPEU -departmentNumber: 3816 -employeeType: Contract -homePhone: +1 804 872-9602 -initials: D. H. -mobile: +1 804 904-1462 -pager: +1 804 204-6761 -roomNumber: 8201 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Miro Trent,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miro Trent -sn: Trent -description: This is Miro Trent's description -facsimileTelephoneNumber: +1 804 306-2911 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 567-3430 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: TrentM -givenName: Miro -mail: TrentM@494658ad0bff4810b3d5b5096c85b666.bitwarden.com -carLicense: P4JXBK -departmentNumber: 3978 -employeeType: Normal -homePhone: +1 804 340-3676 -initials: M. T. -mobile: +1 804 532-3631 -pager: +1 804 760-5060 -roomNumber: 9279 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ashley Woessner,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashley Woessner -sn: Woessner -description: This is Ashley Woessner's description -facsimileTelephoneNumber: +1 415 951-2497 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 190-8640 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: WoessneA -givenName: Ashley -mail: WoessneA@dfbf12c2de4a4c2a9714439426a97be0.bitwarden.com -carLicense: VJGN1A -departmentNumber: 6018 -employeeType: Contract -homePhone: +1 415 277-2569 -initials: A. W. -mobile: +1 415 490-9186 -pager: +1 415 647-9257 -roomNumber: 8049 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Orelia Nasir,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orelia Nasir -sn: Nasir -description: This is Orelia Nasir's description -facsimileTelephoneNumber: +1 213 197-4645 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 700-2345 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: NasirO -givenName: Orelia -mail: NasirO@2ba9191b746c48859df4b1a8bcc442ae.bitwarden.com -carLicense: QIMQ3I -departmentNumber: 5457 -employeeType: Contract -homePhone: +1 213 784-3475 -initials: O. N. -mobile: +1 213 468-2671 -pager: +1 213 706-9328 -roomNumber: 8811 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yoshiaki Blann,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoshiaki Blann -sn: Blann -description: This is Yoshiaki Blann's description -facsimileTelephoneNumber: +1 408 950-7774 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 266-9676 -title: Supreme Peons Vice President -userPassword: Password1 -uid: BlannY -givenName: Yoshiaki -mail: BlannY@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com -carLicense: BBC9KM -departmentNumber: 3820 -employeeType: Normal -homePhone: +1 408 238-6836 -initials: Y. B. -mobile: +1 408 911-6573 -pager: +1 408 663-2665 -roomNumber: 8954 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jolie Dropin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolie Dropin -sn: Dropin -description: This is Jolie Dropin's description -facsimileTelephoneNumber: +1 818 405-5605 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 327-9864 -title: Junior Product Testing Grunt -userPassword: Password1 -uid: DropinJ -givenName: Jolie -mail: DropinJ@9cde21d54f45469eaa2726ba1c900158.bitwarden.com -carLicense: RPTWLT -departmentNumber: 4452 -employeeType: Employee -homePhone: +1 818 284-4903 -initials: J. D. -mobile: +1 818 174-1663 -pager: +1 818 539-1687 -roomNumber: 9071 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mami Badjari,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mami Badjari -sn: Badjari -description: This is Mami Badjari's description -facsimileTelephoneNumber: +1 408 421-5149 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 599-5195 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: BadjariM -givenName: Mami -mail: BadjariM@db74de76c5374bf883b5c0e4951495b9.bitwarden.com -carLicense: D5IXVM -departmentNumber: 4046 -employeeType: Normal -homePhone: +1 408 657-3895 -initials: M. B. -mobile: +1 408 426-6778 -pager: +1 408 514-4763 -roomNumber: 9930 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nash Enstone,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nash Enstone -sn: Enstone -description: This is Nash Enstone's description -facsimileTelephoneNumber: +1 804 359-5510 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 542-8443 -title: Master Peons Janitor -userPassword: Password1 -uid: EnstoneN -givenName: Nash -mail: EnstoneN@7dc4d22df72d4b7ea867e84e8a1a18c9.bitwarden.com -carLicense: C6J8AN -departmentNumber: 6100 -employeeType: Normal -homePhone: +1 804 676-8734 -initials: N. E. -mobile: +1 804 942-6066 -pager: +1 804 928-2174 -roomNumber: 8170 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirsteni Baribeau -sn: Baribeau -description: This is Kirsteni Baribeau's description -facsimileTelephoneNumber: +1 213 148-8814 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 213 448-6716 -title: Junior Human Resources Writer -userPassword: Password1 -uid: BaribeaK -givenName: Kirsteni -mail: BaribeaK@dc4e00565ed740ca8c4a935c1cd2fe2a.bitwarden.com -carLicense: CAN7Y1 -departmentNumber: 4485 -employeeType: Employee -homePhone: +1 213 769-3857 -initials: K. B. -mobile: +1 213 873-8409 -pager: +1 213 262-4911 -roomNumber: 9235 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crissie Panchmatia -sn: Panchmatia -description: This is Crissie Panchmatia's description -facsimileTelephoneNumber: +1 415 715-4989 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 248-7134 -title: Supreme Janitorial Mascot -userPassword: Password1 -uid: PanchmaC -givenName: Crissie -mail: PanchmaC@a5f4802ff3844a6da03607a2952d6142.bitwarden.com -carLicense: J4A765 -departmentNumber: 8339 -employeeType: Normal -homePhone: +1 415 872-2854 -initials: C. P. -mobile: +1 415 279-9465 -pager: +1 415 973-7331 -roomNumber: 8278 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Binny Strannemar,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binny Strannemar -sn: Strannemar -description: This is Binny Strannemar's description -facsimileTelephoneNumber: +1 818 788-2545 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 915-2848 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: StranneB -givenName: Binny -mail: StranneB@d1b4a8f4bfcd4e2c9e8835bd8152821a.bitwarden.com -carLicense: T9IQ4G -departmentNumber: 6654 -employeeType: Employee -homePhone: +1 818 173-7455 -initials: B. S. -mobile: +1 818 652-9179 -pager: +1 818 844-2351 -roomNumber: 9776 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dorri Auker,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorri Auker -sn: Auker -description: This is Dorri Auker's description -facsimileTelephoneNumber: +1 415 368-2250 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 415 249-3399 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: AukerD -givenName: Dorri -mail: AukerD@2adc28241a1f46749fea06db3960400f.bitwarden.com -carLicense: B9M11F -departmentNumber: 6645 -employeeType: Employee -homePhone: +1 415 761-5852 -initials: D. A. -mobile: +1 415 931-1381 -pager: +1 415 733-3022 -roomNumber: 9557 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zofia Bergstrom -sn: Bergstrom -description: This is Zofia Bergstrom's description -facsimileTelephoneNumber: +1 818 129-8750 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 628-6793 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: BergstrZ -givenName: Zofia -mail: BergstrZ@d12ac5e9d33844cb95242d9ef1474ea0.bitwarden.com -carLicense: MCJOO2 -departmentNumber: 2469 -employeeType: Employee -homePhone: +1 818 202-9367 -initials: Z. B. -mobile: +1 818 282-6451 -pager: +1 818 247-3719 -roomNumber: 8867 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Beverie Wada,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beverie Wada -sn: Wada -description: This is Beverie Wada's description -facsimileTelephoneNumber: +1 510 317-8797 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 845-2365 -title: Master Product Development Dictator -userPassword: Password1 -uid: WadaB -givenName: Beverie -mail: WadaB@f707f835774c41b68275e151d7d499c9.bitwarden.com -carLicense: IU6VC0 -departmentNumber: 1831 -employeeType: Employee -homePhone: +1 510 886-7639 -initials: B. W. -mobile: +1 510 299-6369 -pager: +1 510 344-8778 -roomNumber: 9534 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ebrahim Carbone -sn: Carbone -description: This is Ebrahim Carbone's description -facsimileTelephoneNumber: +1 415 522-1912 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 201-4113 -title: Associate Product Development Writer -userPassword: Password1 -uid: CarboneE -givenName: Ebrahim -mail: CarboneE@b7faf436ed93412c95576fc8c712f2d1.bitwarden.com -carLicense: 3EJRSY -departmentNumber: 6053 -employeeType: Employee -homePhone: +1 415 931-1268 -initials: E. C. -mobile: +1 415 970-2837 -pager: +1 415 947-5250 -roomNumber: 8489 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vivian Skaftason,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivian Skaftason -sn: Skaftason -description: This is Vivian Skaftason's description -facsimileTelephoneNumber: +1 213 584-8749 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 244-3331 -title: Associate Peons Visionary -userPassword: Password1 -uid: SkaftasV -givenName: Vivian -mail: SkaftasV@387e909c989e4028811c31a83af61782.bitwarden.com -carLicense: 3G9WT4 -departmentNumber: 2572 -employeeType: Normal -homePhone: +1 213 448-1302 -initials: V. S. -mobile: +1 213 984-2917 -pager: +1 213 320-9308 -roomNumber: 9730 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fayth Marr,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fayth Marr -sn: Marr -description: This is Fayth Marr's description -facsimileTelephoneNumber: +1 415 875-7935 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 402-5309 -title: Associate Product Testing Evangelist -userPassword: Password1 -uid: MarrF -givenName: Fayth -mail: MarrF@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com -carLicense: NU8MK5 -departmentNumber: 8726 -employeeType: Normal -homePhone: +1 415 767-1040 -initials: F. M. -mobile: +1 415 964-2757 -pager: +1 415 615-5029 -roomNumber: 8306 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rowan Reichow,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rowan Reichow -sn: Reichow -description: This is Rowan Reichow's description -facsimileTelephoneNumber: +1 510 109-2888 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 414-9247 -title: Junior Payroll Grunt -userPassword: Password1 -uid: ReichowR -givenName: Rowan -mail: ReichowR@95d418bbcea04118a52deb10863e13db.bitwarden.com -carLicense: SEXHH2 -departmentNumber: 6203 -employeeType: Contract -homePhone: +1 510 285-2139 -initials: R. R. -mobile: +1 510 257-7142 -pager: +1 510 730-8371 -roomNumber: 9756 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clementia Pesik,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clementia Pesik -sn: Pesik -description: This is Clementia Pesik's description -facsimileTelephoneNumber: +1 818 785-7073 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 887-1994 -title: Junior Payroll Czar -userPassword: Password1 -uid: PesikC -givenName: Clementia -mail: PesikC@afd234efc12945238daa43bdcf2611be.bitwarden.com -carLicense: NWH92D -departmentNumber: 7782 -employeeType: Contract -homePhone: +1 818 409-5405 -initials: C. P. -mobile: +1 818 298-3203 -pager: +1 818 142-9496 -roomNumber: 8382 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sofie Baugnon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sofie Baugnon -sn: Baugnon -description: This is Sofie Baugnon's description -facsimileTelephoneNumber: +1 213 108-6180 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 460-5086 -title: Junior Administrative Warrior -userPassword: Password1 -uid: BaugnonS -givenName: Sofie -mail: BaugnonS@59778d9e834c452586d9e26b970164f5.bitwarden.com -carLicense: IIA6DO -departmentNumber: 2157 -employeeType: Contract -homePhone: +1 213 996-6164 -initials: S. B. -mobile: +1 213 577-6365 -pager: +1 213 762-6413 -roomNumber: 8725 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Astrid Montoya,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Astrid Montoya -sn: Montoya -description: This is Astrid Montoya's description -facsimileTelephoneNumber: +1 408 590-8676 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 712-6850 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: MontoyaA -givenName: Astrid -mail: MontoyaA@936c219fa5734e078ad4251f638dcef1.bitwarden.com -carLicense: 71KMQW -departmentNumber: 6236 -employeeType: Contract -homePhone: +1 408 342-4289 -initials: A. M. -mobile: +1 408 308-7094 -pager: +1 408 478-5751 -roomNumber: 9603 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hongzhi Muzio -sn: Muzio -description: This is Hongzhi Muzio's description -facsimileTelephoneNumber: +1 804 101-8635 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 804 908-2638 -title: Supreme Administrative Evangelist -userPassword: Password1 -uid: MuzioH -givenName: Hongzhi -mail: MuzioH@4ae1d64c9a5a4ca1a7356298a39877d9.bitwarden.com -carLicense: ONKUVS -departmentNumber: 5242 -employeeType: Normal -homePhone: +1 804 668-4780 -initials: H. M. -mobile: +1 804 823-6932 -pager: +1 804 786-7510 -roomNumber: 9532 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Grover Dehoff,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grover Dehoff -sn: Dehoff -description: This is Grover Dehoff's description -facsimileTelephoneNumber: +1 408 786-3582 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 408 463-8217 -title: Chief Management Czar -userPassword: Password1 -uid: DehoffG -givenName: Grover -mail: DehoffG@8e58146437ae4809935cbbfea9366714.bitwarden.com -carLicense: IK98OF -departmentNumber: 3804 -employeeType: Employee -homePhone: +1 408 654-9099 -initials: G. D. -mobile: +1 408 876-4339 -pager: +1 408 701-8340 -roomNumber: 9636 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nerty Nair,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nerty Nair -sn: Nair -description: This is Nerty Nair's description -facsimileTelephoneNumber: +1 818 896-5956 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 855-2677 -title: Supreme Product Testing Assistant -userPassword: Password1 -uid: NairN -givenName: Nerty -mail: NairN@57c8e316985b48038aad56a3f94817a1.bitwarden.com -carLicense: DHWROD -departmentNumber: 7940 -employeeType: Normal -homePhone: +1 818 677-3610 -initials: N. N. -mobile: +1 818 504-8131 -pager: +1 818 832-1032 -roomNumber: 8436 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eloisa Gehr -sn: Gehr -description: This is Eloisa Gehr's description -facsimileTelephoneNumber: +1 206 567-4591 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 210-8862 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: GehrE -givenName: Eloisa -mail: GehrE@0cee059feb2f45d0a3e77b9cb46c95e2.bitwarden.com -carLicense: KP3H9E -departmentNumber: 5971 -employeeType: Contract -homePhone: +1 206 505-4875 -initials: E. G. -mobile: +1 206 955-7938 -pager: +1 206 556-1758 -roomNumber: 9384 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rene McKearney,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rene McKearney -sn: McKearney -description: This is Rene McKearney's description -facsimileTelephoneNumber: +1 408 242-1442 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 585-6354 -title: Supreme Peons Writer -userPassword: Password1 -uid: McKearnR -givenName: Rene -mail: McKearnR@62d6b52263d643d2a05493b576aca6a5.bitwarden.com -carLicense: 0Q3FW4 -departmentNumber: 6553 -employeeType: Employee -homePhone: +1 408 336-2483 -initials: R. M. -mobile: +1 408 330-7005 -pager: +1 408 132-8497 -roomNumber: 8554 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Pat Libadmin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pat Libadmin -sn: Libadmin -description: This is Pat Libadmin's description -facsimileTelephoneNumber: +1 804 575-8696 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 313-6267 -title: Master Payroll Vice President -userPassword: Password1 -uid: LibadmiP -givenName: Pat -mail: LibadmiP@adfd9881a9c8497ca549f3f76c4a7563.bitwarden.com -carLicense: DKSVSB -departmentNumber: 9944 -employeeType: Contract -homePhone: +1 804 936-7201 -initials: P. L. -mobile: +1 804 344-5895 -pager: +1 804 659-8322 -roomNumber: 8489 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anneliese Dunningham -sn: Dunningham -description: This is Anneliese Dunningham's description -facsimileTelephoneNumber: +1 510 255-3959 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 623-2319 -title: Chief Human Resources Engineer -userPassword: Password1 -uid: DunningA -givenName: Anneliese -mail: DunningA@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com -carLicense: O1IEIO -departmentNumber: 5717 -employeeType: Contract -homePhone: +1 510 508-2316 -initials: A. D. -mobile: +1 510 664-6154 -pager: +1 510 502-7952 -roomNumber: 8197 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kanu Slozil,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanu Slozil -sn: Slozil -description: This is Kanu Slozil's description -facsimileTelephoneNumber: +1 408 855-5038 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 253-4074 -title: Chief Administrative Punk -userPassword: Password1 -uid: SlozilK -givenName: Kanu -mail: SlozilK@841df0a2276144ffade10ec334e0a08c.bitwarden.com -carLicense: IA54QD -departmentNumber: 1857 -employeeType: Normal -homePhone: +1 408 900-8614 -initials: K. S. -mobile: +1 408 184-5609 -pager: +1 408 324-5285 -roomNumber: 8094 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cecile Shupe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cecile Shupe -sn: Shupe -description: This is Cecile Shupe's description -facsimileTelephoneNumber: +1 213 329-2096 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 494-5142 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: ShupeC -givenName: Cecile -mail: ShupeC@ece1fab2e72c4ef2980d13b290c0165f.bitwarden.com -carLicense: 7QM92R -departmentNumber: 3580 -employeeType: Normal -homePhone: +1 213 451-4330 -initials: C. S. -mobile: +1 213 113-2961 -pager: +1 213 192-7903 -roomNumber: 8374 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fahim Kandra,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fahim Kandra -sn: Kandra -description: This is Fahim Kandra's description -facsimileTelephoneNumber: +1 408 895-7891 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 349-3720 -title: Associate Administrative Architect -userPassword: Password1 -uid: KandraF -givenName: Fahim -mail: KandraF@e9f78b5202b6404b9ee727f9d75a47b9.bitwarden.com -carLicense: 8VS9NA -departmentNumber: 8075 -employeeType: Employee -homePhone: +1 408 799-8562 -initials: F. K. -mobile: +1 408 473-9188 -pager: +1 408 718-8426 -roomNumber: 9596 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gerald Laroche,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerald Laroche -sn: Laroche -description: This is Gerald Laroche's description -facsimileTelephoneNumber: +1 213 879-9388 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 824-6190 -title: Junior Janitorial Janitor -userPassword: Password1 -uid: LarocheG -givenName: Gerald -mail: LarocheG@c2ff834411a74d309100193d31df013a.bitwarden.com -carLicense: 8GXOAI -departmentNumber: 2180 -employeeType: Normal -homePhone: +1 213 587-8049 -initials: G. L. -mobile: +1 213 127-9116 -pager: +1 213 146-5745 -roomNumber: 8261 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChiYin Wikkerink -sn: Wikkerink -description: This is ChiYin Wikkerink's description -facsimileTelephoneNumber: +1 415 346-2998 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 200-1146 -title: Junior Janitorial President -userPassword: Password1 -uid: WikkeriC -givenName: ChiYin -mail: WikkeriC@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com -carLicense: XXSX7X -departmentNumber: 8023 -employeeType: Employee -homePhone: +1 415 335-4206 -initials: C. W. -mobile: +1 415 360-9830 -pager: +1 415 283-8837 -roomNumber: 9501 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Devon Pesold,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devon Pesold -sn: Pesold -description: This is Devon Pesold's description -facsimileTelephoneNumber: +1 408 758-4886 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 253-4981 -title: Master Janitorial Vice President -userPassword: Password1 -uid: PesoldD -givenName: Devon -mail: PesoldD@9befe039acaf4d578a86c80d677d5d49.bitwarden.com -carLicense: NQWU7N -departmentNumber: 7664 -employeeType: Employee -homePhone: +1 408 394-6182 -initials: D. P. -mobile: +1 408 384-1885 -pager: +1 408 115-7459 -roomNumber: 9018 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Daile Burger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daile Burger -sn: Burger -description: This is Daile Burger's description -facsimileTelephoneNumber: +1 213 990-1344 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 116-1760 -title: Chief Administrative Vice President -userPassword: Password1 -uid: BurgerD -givenName: Daile -mail: BurgerD@2050283a8ad249b48adb290c7534145d.bitwarden.com -carLicense: WFLT3F -departmentNumber: 9844 -employeeType: Employee -homePhone: +1 213 185-9871 -initials: D. B. -mobile: +1 213 510-5756 -pager: +1 213 832-5792 -roomNumber: 8050 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanNormand Kauffman -sn: Kauffman -description: This is JeanNormand Kauffman's description -facsimileTelephoneNumber: +1 804 190-4401 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 804 940-8746 -title: Junior Payroll Mascot -userPassword: Password1 -uid: KauffmaJ -givenName: JeanNormand -mail: KauffmaJ@4fd308eba088404ab84d4a632c943b2d.bitwarden.com -carLicense: R5GMAM -departmentNumber: 7357 -employeeType: Normal -homePhone: +1 804 736-7328 -initials: J. K. -mobile: +1 804 164-1675 -pager: +1 804 602-1950 -roomNumber: 9721 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tricord Gumb,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tricord Gumb -sn: Gumb -description: This is Tricord Gumb's description -facsimileTelephoneNumber: +1 510 388-7218 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 779-3947 -title: Supreme Peons Mascot -userPassword: Password1 -uid: GumbT -givenName: Tricord -mail: GumbT@1114ec94893c4de2b94b261fe2161258.bitwarden.com -carLicense: 75DO2K -departmentNumber: 4010 -employeeType: Employee -homePhone: +1 510 639-6021 -initials: T. G. -mobile: +1 510 839-4271 -pager: +1 510 590-8733 -roomNumber: 8256 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shena Atteridge,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shena Atteridge -sn: Atteridge -description: This is Shena Atteridge's description -facsimileTelephoneNumber: +1 818 228-6997 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 222-4425 -title: Associate Product Development Stooge -userPassword: Password1 -uid: AtteridS -givenName: Shena -mail: AtteridS@34b13abf3e53487c98ee71b110b55537.bitwarden.com -carLicense: VXBJGE -departmentNumber: 1428 -employeeType: Contract -homePhone: +1 818 950-3400 -initials: S. A. -mobile: +1 818 299-7423 -pager: +1 818 674-5387 -roomNumber: 8162 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Silvester Piette,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silvester Piette -sn: Piette -description: This is Silvester Piette's description -facsimileTelephoneNumber: +1 206 565-3259 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 219-3479 -title: Master Administrative Vice President -userPassword: Password1 -uid: PietteS -givenName: Silvester -mail: PietteS@7e7373daa08d4a3b834f2e415978d199.bitwarden.com -carLicense: DXBIBE -departmentNumber: 2446 -employeeType: Normal -homePhone: +1 206 858-1277 -initials: S. P. -mobile: +1 206 832-9720 -pager: +1 206 280-7197 -roomNumber: 9202 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Amnon Gause,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amnon Gause -sn: Gause -description: This is Amnon Gause's description -facsimileTelephoneNumber: +1 818 571-1217 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 575-2523 -title: Master Product Development Janitor -userPassword: Password1 -uid: GauseA -givenName: Amnon -mail: GauseA@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com -carLicense: CL3KIX -departmentNumber: 7400 -employeeType: Contract -homePhone: +1 818 651-9009 -initials: A. G. -mobile: +1 818 696-6246 -pager: +1 818 129-9506 -roomNumber: 9713 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Clemente Eva,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clemente Eva -sn: Eva -description: This is Clemente Eva's description -facsimileTelephoneNumber: +1 510 929-9842 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 510 194-2090 -title: Associate Product Development Director -userPassword: Password1 -uid: EvaC -givenName: Clemente -mail: EvaC@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com -carLicense: V3AXYC -departmentNumber: 1365 -employeeType: Employee -homePhone: +1 510 697-6573 -initials: C. E. -mobile: +1 510 539-2072 -pager: +1 510 529-2031 -roomNumber: 9589 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Donnajean Carron,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donnajean Carron -sn: Carron -description: This is Donnajean Carron's description -facsimileTelephoneNumber: +1 206 163-8939 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 345-4978 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: CarronD -givenName: Donnajean -mail: CarronD@d0eb59d9416b478ea7e9e6add086d998.bitwarden.com -carLicense: 70DDD6 -departmentNumber: 8280 -employeeType: Employee -homePhone: +1 206 908-9866 -initials: D. C. -mobile: +1 206 917-6856 -pager: +1 206 781-9174 -roomNumber: 8999 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wieslaw Serbus -sn: Serbus -description: This is Wieslaw Serbus's description -facsimileTelephoneNumber: +1 510 711-8241 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 504-3526 -title: Master Janitorial Fellow -userPassword: Password1 -uid: SerbusW -givenName: Wieslaw -mail: SerbusW@e67a7ab12b0d4d819423914b8a02e571.bitwarden.com -carLicense: E93TBF -departmentNumber: 2929 -employeeType: Normal -homePhone: +1 510 334-2059 -initials: W. S. -mobile: +1 510 866-5795 -pager: +1 510 379-5938 -roomNumber: 9561 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ailene Chavez,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailene Chavez -sn: Chavez -description: This is Ailene Chavez's description -facsimileTelephoneNumber: +1 510 671-6550 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 341-2540 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: ChavezA -givenName: Ailene -mail: ChavezA@49f125d3a1b3429789a5b52822aa6b88.bitwarden.com -carLicense: U0X3FG -departmentNumber: 8222 -employeeType: Contract -homePhone: +1 510 386-6883 -initials: A. C. -mobile: +1 510 311-4827 -pager: +1 510 676-7641 -roomNumber: 8779 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Annet Leshowitz,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annet Leshowitz -sn: Leshowitz -description: This is Annet Leshowitz's description -facsimileTelephoneNumber: +1 408 477-3114 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 170-1486 -title: Associate Management Vice President -userPassword: Password1 -uid: LeshowiA -givenName: Annet -mail: LeshowiA@f6a15f7382e844a784e99c66615d4c58.bitwarden.com -carLicense: GEP8SL -departmentNumber: 9883 -employeeType: Employee -homePhone: +1 408 941-9562 -initials: A. L. -mobile: +1 408 338-3326 -pager: +1 408 891-9752 -roomNumber: 9757 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Willy Jimenez,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willy Jimenez -sn: Jimenez -description: This is Willy Jimenez's description -facsimileTelephoneNumber: +1 213 616-6443 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 225-1637 -title: Supreme Human Resources Engineer -userPassword: Password1 -uid: JimenezW -givenName: Willy -mail: JimenezW@91c1e03d3c58475f891067cc0da82fda.bitwarden.com -carLicense: NW6TEE -departmentNumber: 9488 -employeeType: Normal -homePhone: +1 213 642-4441 -initials: W. J. -mobile: +1 213 303-3902 -pager: +1 213 473-5437 -roomNumber: 9564 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Teddi Arai,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teddi Arai -sn: Arai -description: This is Teddi Arai's description -facsimileTelephoneNumber: +1 818 482-4296 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 818 874-2301 -title: Associate Payroll Mascot -userPassword: Password1 -uid: AraiT -givenName: Teddi -mail: AraiT@23c49cd8e8ea45d2969cffc2057f5127.bitwarden.com -carLicense: G1G7KY -departmentNumber: 6051 -employeeType: Contract -homePhone: +1 818 361-2440 -initials: T. A. -mobile: +1 818 455-8535 -pager: +1 818 834-6087 -roomNumber: 8986 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tammy McBeth,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tammy McBeth -sn: McBeth -description: This is Tammy McBeth's description -facsimileTelephoneNumber: +1 415 892-9096 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 292-9389 -title: Chief Human Resources Writer -userPassword: Password1 -uid: McBethT -givenName: Tammy -mail: McBethT@a0441f048a884d1891acef81ab17bc91.bitwarden.com -carLicense: 5IPLKA -departmentNumber: 8175 -employeeType: Contract -homePhone: +1 415 819-3943 -initials: T. M. -mobile: +1 415 850-7972 -pager: +1 415 879-1255 -roomNumber: 8796 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Waverly Cadshare,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Waverly Cadshare -sn: Cadshare -description: This is Waverly Cadshare's description -facsimileTelephoneNumber: +1 818 918-6267 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 409-8719 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: CadsharW -givenName: Waverly -mail: CadsharW@1fca0d84539f4e2793fe7b6d498c02ff.bitwarden.com -carLicense: KW1XL5 -departmentNumber: 1557 -employeeType: Normal -homePhone: +1 818 856-5368 -initials: W. C. -mobile: +1 818 174-2371 -pager: +1 818 255-3169 -roomNumber: 8889 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=JeanLouis Okura,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanLouis Okura -sn: Okura -description: This is JeanLouis Okura's description -facsimileTelephoneNumber: +1 415 436-3026 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 415 299-7885 -title: Master Payroll Developer -userPassword: Password1 -uid: OkuraJ -givenName: JeanLouis -mail: OkuraJ@70e5048368bb463a909414f19d29543c.bitwarden.com -carLicense: BWSWCR -departmentNumber: 6400 -employeeType: Contract -homePhone: +1 415 527-1755 -initials: J. O. -mobile: +1 415 732-6371 -pager: +1 415 768-2522 -roomNumber: 8461 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tonia Khosla,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonia Khosla -sn: Khosla -description: This is Tonia Khosla's description -facsimileTelephoneNumber: +1 206 961-5018 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 616-7344 -title: Supreme Peons Sales Rep -userPassword: Password1 -uid: KhoslaT -givenName: Tonia -mail: KhoslaT@9c2e6c9cd4a84de798c45d0f7e513159.bitwarden.com -carLicense: TI4GPJ -departmentNumber: 6087 -employeeType: Normal -homePhone: +1 206 765-9019 -initials: T. K. -mobile: +1 206 335-1219 -pager: +1 206 605-3112 -roomNumber: 8627 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Binni Rasmussen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binni Rasmussen -sn: Rasmussen -description: This is Binni Rasmussen's description -facsimileTelephoneNumber: +1 818 480-2306 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 326-7968 -title: Supreme Management Stooge -userPassword: Password1 -uid: RasmussB -givenName: Binni -mail: RasmussB@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com -carLicense: QVNR9N -departmentNumber: 5996 -employeeType: Normal -homePhone: +1 818 813-3980 -initials: B. R. -mobile: +1 818 740-8104 -pager: +1 818 788-5005 -roomNumber: 8274 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Herb Stansbury,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herb Stansbury -sn: Stansbury -description: This is Herb Stansbury's description -facsimileTelephoneNumber: +1 408 173-4504 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 335-2446 -title: Supreme Peons Warrior -userPassword: Password1 -uid: StansbuH -givenName: Herb -mail: StansbuH@e163cc78ce6a4972adc62831f8cfd810.bitwarden.com -carLicense: CMBCWC -departmentNumber: 2943 -employeeType: Employee -homePhone: +1 408 690-1280 -initials: H. S. -mobile: +1 408 154-8965 -pager: +1 408 163-2623 -roomNumber: 8958 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ralina Fouke,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ralina Fouke -sn: Fouke -description: This is Ralina Fouke's description -facsimileTelephoneNumber: +1 818 822-2310 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 818 726-9459 -title: Supreme Administrative Punk -userPassword: Password1 -uid: FoukeR -givenName: Ralina -mail: FoukeR@3358f35c8d4144d59100e666ebc7914f.bitwarden.com -carLicense: LX7XV7 -departmentNumber: 1076 -employeeType: Normal -homePhone: +1 818 649-9938 -initials: R. F. -mobile: +1 818 435-2308 -pager: +1 818 936-7429 -roomNumber: 8367 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ehi Lawrie -sn: Lawrie -description: This is Ehi Lawrie's description -facsimileTelephoneNumber: +1 213 507-3416 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 457-6547 -title: Master Human Resources Director -userPassword: Password1 -uid: LawrieE -givenName: Ehi -mail: LawrieE@0fcafdb14683453782c5b7d16f816196.bitwarden.com -carLicense: 8GM2IM -departmentNumber: 5104 -employeeType: Normal -homePhone: +1 213 106-1695 -initials: E. L. -mobile: +1 213 508-5142 -pager: +1 213 124-3581 -roomNumber: 9711 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Merridie Vankooten,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merridie Vankooten -sn: Vankooten -description: This is Merridie Vankooten's description -facsimileTelephoneNumber: +1 415 830-6815 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 429-9258 -title: Master Payroll Figurehead -userPassword: Password1 -uid: VankootM -givenName: Merridie -mail: VankootM@41bf97a0f83643ecb5c3ae7dea3fc6f2.bitwarden.com -carLicense: GMB75B -departmentNumber: 7913 -employeeType: Normal -homePhone: +1 415 795-5170 -initials: M. V. -mobile: +1 415 102-3396 -pager: +1 415 185-1985 -roomNumber: 8535 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalinda Joachimpillai -sn: Joachimpillai -description: This is Kalinda Joachimpillai's description -facsimileTelephoneNumber: +1 804 641-9567 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 624-6000 -title: Chief Management Figurehead -userPassword: Password1 -uid: JoachimK -givenName: Kalinda -mail: JoachimK@e99ccdd4f1854e85b7018db9ee827387.bitwarden.com -carLicense: FLYCAT -departmentNumber: 5414 -employeeType: Normal -homePhone: +1 804 172-8252 -initials: K. J. -mobile: +1 804 283-9652 -pager: +1 804 805-7037 -roomNumber: 8986 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Millie Doda,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Millie Doda -sn: Doda -description: This is Millie Doda's description -facsimileTelephoneNumber: +1 804 497-3854 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 344-8641 -title: Junior Management Sales Rep -userPassword: Password1 -uid: DodaM -givenName: Millie -mail: DodaM@7341939506294cf3bdd4bdeca7674074.bitwarden.com -carLicense: 3OAOOD -departmentNumber: 4663 -employeeType: Normal -homePhone: +1 804 185-1961 -initials: M. D. -mobile: +1 804 722-7806 -pager: +1 804 298-6191 -roomNumber: 8476 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alexia Layton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alexia Layton -sn: Layton -description: This is Alexia Layton's description -facsimileTelephoneNumber: +1 206 951-1106 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 287-3409 -title: Master Janitorial Grunt -userPassword: Password1 -uid: LaytonA -givenName: Alexia -mail: LaytonA@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com -carLicense: GKS4R8 -departmentNumber: 1510 -employeeType: Contract -homePhone: +1 206 295-8399 -initials: A. L. -mobile: +1 206 615-5794 -pager: +1 206 839-9628 -roomNumber: 8027 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lottie Filpus,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lottie Filpus -sn: Filpus -description: This is Lottie Filpus's description -facsimileTelephoneNumber: +1 804 333-1154 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 804 504-9684 -title: Master Management Assistant -userPassword: Password1 -uid: FilpusL -givenName: Lottie -mail: FilpusL@f069d8208db84a5496e2d819694425d2.bitwarden.com -carLicense: LIFPQA -departmentNumber: 5829 -employeeType: Normal -homePhone: +1 804 298-8577 -initials: L. F. -mobile: +1 804 965-2918 -pager: +1 804 549-5964 -roomNumber: 8343 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tommie Craib,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tommie Craib -sn: Craib -description: This is Tommie Craib's description -facsimileTelephoneNumber: +1 408 550-7882 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 755-3038 -title: Junior Peons Pinhead -userPassword: Password1 -uid: CraibT -givenName: Tommie -mail: CraibT@a1229ea2ddce4147b437f4d3ad26de38.bitwarden.com -carLicense: B2A7RE -departmentNumber: 6477 -employeeType: Employee -homePhone: +1 408 856-5589 -initials: T. C. -mobile: +1 408 334-5196 -pager: +1 408 473-2629 -roomNumber: 8481 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Narrima Cavnar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Narrima Cavnar -sn: Cavnar -description: This is Narrima Cavnar's description -facsimileTelephoneNumber: +1 415 886-7568 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 636-4025 -title: Supreme Payroll Dictator -userPassword: Password1 -uid: CavnarN -givenName: Narrima -mail: CavnarN@d5cee79f473a444ab2622a6d06a74e01.bitwarden.com -carLicense: 2GG35F -departmentNumber: 5080 -employeeType: Normal -homePhone: +1 415 141-8410 -initials: N. C. -mobile: +1 415 879-3478 -pager: +1 415 768-5408 -roomNumber: 9103 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Walt Gentes,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walt Gentes -sn: Gentes -description: This is Walt Gentes's description -facsimileTelephoneNumber: +1 206 708-4021 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 578-9410 -title: Junior Administrative Admin -userPassword: Password1 -uid: GentesW -givenName: Walt -mail: GentesW@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com -carLicense: CRF094 -departmentNumber: 8028 -employeeType: Contract -homePhone: +1 206 942-1135 -initials: W. G. -mobile: +1 206 326-3105 -pager: +1 206 290-7209 -roomNumber: 8955 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gay Acelvari,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gay Acelvari -sn: Acelvari -description: This is Gay Acelvari's description -facsimileTelephoneNumber: +1 804 389-5990 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 803-5411 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: AcelvarG -givenName: Gay -mail: AcelvarG@00cf2c241c534697a382f39ac298a035.bitwarden.com -carLicense: K8JYKC -departmentNumber: 3013 -employeeType: Normal -homePhone: +1 804 920-6284 -initials: G. A. -mobile: +1 804 434-3756 -pager: +1 804 602-5923 -roomNumber: 8878 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Raeann Laws,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raeann Laws -sn: Laws -description: This is Raeann Laws's description -facsimileTelephoneNumber: +1 415 753-2076 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 750-5333 -title: Associate Peons Grunt -userPassword: Password1 -uid: LawsR -givenName: Raeann -mail: LawsR@14a50969231442b7a4661f1630e8f16c.bitwarden.com -carLicense: LXN12S -departmentNumber: 8704 -employeeType: Normal -homePhone: +1 415 180-7432 -initials: R. L. -mobile: +1 415 412-9199 -pager: +1 415 800-7573 -roomNumber: 9595 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=YuKai Goodrow,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YuKai Goodrow -sn: Goodrow -description: This is YuKai Goodrow's description -facsimileTelephoneNumber: +1 206 548-1064 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 584-1853 -title: Associate Payroll Grunt -userPassword: Password1 -uid: GoodrowY -givenName: YuKai -mail: GoodrowY@5961547593ce4d3d831c972ef1cd392b.bitwarden.com -carLicense: 448D8R -departmentNumber: 4640 -employeeType: Contract -homePhone: +1 206 752-6424 -initials: Y. G. -mobile: +1 206 655-5189 -pager: +1 206 217-1567 -roomNumber: 9885 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorrin Bnrinfo -sn: Bnrinfo -description: This is Lorrin Bnrinfo's description -facsimileTelephoneNumber: +1 415 728-5268 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 359-7851 -title: Junior Product Testing Figurehead -userPassword: Password1 -uid: BnrinfoL -givenName: Lorrin -mail: BnrinfoL@7c6533f264974d51a9e95294d086acef.bitwarden.com -carLicense: D58FMA -departmentNumber: 9769 -employeeType: Normal -homePhone: +1 415 732-6775 -initials: L. B. -mobile: +1 415 545-1042 -pager: +1 415 439-4822 -roomNumber: 9028 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tad Caceres,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tad Caceres -sn: Caceres -description: This is Tad Caceres's description -facsimileTelephoneNumber: +1 818 127-5598 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 222-7029 -title: Associate Janitorial Assistant -userPassword: Password1 -uid: CaceresT -givenName: Tad -mail: CaceresT@aa27b3d0b2304f6aa579ad064be338d9.bitwarden.com -carLicense: 0SGQP9 -departmentNumber: 4022 -employeeType: Contract -homePhone: +1 818 919-5435 -initials: T. C. -mobile: +1 818 950-1266 -pager: +1 818 986-4293 -roomNumber: 8506 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dorreen Dewit,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorreen Dewit -sn: Dewit -description: This is Dorreen Dewit's description -facsimileTelephoneNumber: +1 510 208-9362 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 554-8214 -title: Chief Administrative Mascot -userPassword: Password1 -uid: DewitD -givenName: Dorreen -mail: DewitD@789d3ef8deb24c20bce9e2915a466aef.bitwarden.com -carLicense: J7MJ9N -departmentNumber: 4202 -employeeType: Normal -homePhone: +1 510 454-9122 -initials: D. D. -mobile: +1 510 414-7571 -pager: +1 510 484-1775 -roomNumber: 8322 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Francisca Griswold,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francisca Griswold -sn: Griswold -description: This is Francisca Griswold's description -facsimileTelephoneNumber: +1 213 932-7629 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 415-1288 -title: Junior Management Figurehead -userPassword: Password1 -uid: GriswolF -givenName: Francisca -mail: GriswolF@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com -carLicense: HCAEJK -departmentNumber: 2680 -employeeType: Contract -homePhone: +1 213 781-9757 -initials: F. G. -mobile: +1 213 171-2946 -pager: +1 213 785-9831 -roomNumber: 8045 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Motaz Metz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Motaz Metz -sn: Metz -description: This is Motaz Metz's description -facsimileTelephoneNumber: +1 206 385-4268 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 410-8265 -title: Junior Janitorial Director -userPassword: Password1 -uid: MetzM -givenName: Motaz -mail: MetzM@c6ecb3f5d2c24d25a5b9ac4ff092f2f0.bitwarden.com -carLicense: FQXXCF -departmentNumber: 4562 -employeeType: Contract -homePhone: +1 206 536-9982 -initials: M. M. -mobile: +1 206 204-8227 -pager: +1 206 173-1224 -roomNumber: 8520 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lorry Suprick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorry Suprick -sn: Suprick -description: This is Lorry Suprick's description -facsimileTelephoneNumber: +1 213 698-1364 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 521-8766 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: SuprickL -givenName: Lorry -mail: SuprickL@ae7270bab55c471e8d4684834aceebc2.bitwarden.com -carLicense: N7ONMJ -departmentNumber: 8305 -employeeType: Normal -homePhone: +1 213 990-3774 -initials: L. S. -mobile: +1 213 319-4179 -pager: +1 213 565-6773 -roomNumber: 8416 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cassey Precoda,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassey Precoda -sn: Precoda -description: This is Cassey Precoda's description -facsimileTelephoneNumber: +1 206 484-5723 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 845-3524 -title: Master Product Development Consultant -userPassword: Password1 -uid: PrecodaC -givenName: Cassey -mail: PrecodaC@a4566d06f4404638b79325caaec894f9.bitwarden.com -carLicense: MN6J43 -departmentNumber: 8441 -employeeType: Contract -homePhone: +1 206 560-1733 -initials: C. P. -mobile: +1 206 919-8498 -pager: +1 206 917-6696 -roomNumber: 8858 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kevina Zauhar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kevina Zauhar -sn: Zauhar -description: This is Kevina Zauhar's description -facsimileTelephoneNumber: +1 415 856-1163 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 266-5234 -title: Master Payroll Pinhead -userPassword: Password1 -uid: ZauharK -givenName: Kevina -mail: ZauharK@e705dc3960ae453fb9cbbc66d57830b4.bitwarden.com -carLicense: S23HOD -departmentNumber: 4753 -employeeType: Employee -homePhone: +1 415 427-3102 -initials: K. Z. -mobile: +1 415 384-5864 -pager: +1 415 393-5650 -roomNumber: 8123 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Diandra Pafilis,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diandra Pafilis -sn: Pafilis -description: This is Diandra Pafilis's description -facsimileTelephoneNumber: +1 818 553-9327 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 855-4038 -title: Chief Management Punk -userPassword: Password1 -uid: PafilisD -givenName: Diandra -mail: PafilisD@06d31112a23c438e8cd439e22e02ac63.bitwarden.com -carLicense: BQGIHD -departmentNumber: 8129 -employeeType: Contract -homePhone: +1 818 362-1716 -initials: D. P. -mobile: +1 818 356-9790 -pager: +1 818 261-9444 -roomNumber: 9439 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shaylah Poyner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaylah Poyner -sn: Poyner -description: This is Shaylah Poyner's description -facsimileTelephoneNumber: +1 804 966-9614 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 295-3935 -title: Chief Peons Figurehead -userPassword: Password1 -uid: PoynerS -givenName: Shaylah -mail: PoynerS@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com -carLicense: L4CFFQ -departmentNumber: 3001 -employeeType: Normal -homePhone: +1 804 170-5971 -initials: S. P. -mobile: +1 804 858-4158 -pager: +1 804 857-9599 -roomNumber: 8885 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Agenia Joshi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agenia Joshi -sn: Joshi -description: This is Agenia Joshi's description -facsimileTelephoneNumber: +1 510 143-3233 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 266-6881 -title: Chief Product Development Sales Rep -userPassword: Password1 -uid: JoshiA -givenName: Agenia -mail: JoshiA@6e182e42a9474534add2d6f2d3638914.bitwarden.com -carLicense: F13741 -departmentNumber: 5494 -employeeType: Contract -homePhone: +1 510 718-6369 -initials: A. J. -mobile: +1 510 408-3000 -pager: +1 510 754-4300 -roomNumber: 9454 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aaren LaVecchia -sn: LaVecchia -description: This is Aaren LaVecchia's description -facsimileTelephoneNumber: +1 213 604-9468 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 249-1415 -title: Supreme Janitorial Director -userPassword: Password1 -uid: LaVecchA -givenName: Aaren -mail: LaVecchA@bd2c7ab0e4084b83a6509029744de154.bitwarden.com -carLicense: UYTEKC -departmentNumber: 5697 -employeeType: Contract -homePhone: +1 213 569-9344 -initials: A. L. -mobile: +1 213 138-2839 -pager: +1 213 849-5501 -roomNumber: 8002 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rodrigus Watchmaker -sn: Watchmaker -description: This is Rodrigus Watchmaker's description -facsimileTelephoneNumber: +1 415 809-5858 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 927-6452 -title: Master Product Testing President -userPassword: Password1 -uid: WatchmaR -givenName: Rodrigus -mail: WatchmaR@e10037e1eec24ce3ab8d8566fc3aaa83.bitwarden.com -carLicense: KFC9EG -departmentNumber: 4934 -employeeType: Normal -homePhone: +1 415 650-4763 -initials: R. W. -mobile: +1 415 511-5792 -pager: +1 415 165-7156 -roomNumber: 9673 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madalena Oziemblo -sn: Oziemblo -description: This is Madalena Oziemblo's description -facsimileTelephoneNumber: +1 408 125-7332 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 405-6014 -title: Master Payroll Writer -userPassword: Password1 -uid: OziemblM -givenName: Madalena -mail: OziemblM@0e5adb3dd0d14cc89a2b37de2a8aa9c6.bitwarden.com -carLicense: OUAEPM -departmentNumber: 6071 -employeeType: Contract -homePhone: +1 408 248-7408 -initials: M. O. -mobile: +1 408 377-3279 -pager: +1 408 276-4554 -roomNumber: 8636 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Imre Farag,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imre Farag -sn: Farag -description: This is Imre Farag's description -facsimileTelephoneNumber: +1 415 464-5144 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 525-1855 -title: Master Product Development Warrior -userPassword: Password1 -uid: FaragI -givenName: Imre -mail: FaragI@00cec4060ff5488a983c2cc3b42801e4.bitwarden.com -carLicense: 9SFCR3 -departmentNumber: 9515 -employeeType: Contract -homePhone: +1 415 406-7806 -initials: I. F. -mobile: +1 415 869-2208 -pager: +1 415 865-2300 -roomNumber: 8289 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alina Naphan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alina Naphan -sn: Naphan -description: This is Alina Naphan's description -facsimileTelephoneNumber: +1 206 941-7408 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 815-7262 -title: Junior Management President -userPassword: Password1 -uid: NaphanA -givenName: Alina -mail: NaphanA@e9aa0388b0974f709cc43e6d5c1d4048.bitwarden.com -carLicense: G1KROT -departmentNumber: 1724 -employeeType: Contract -homePhone: +1 206 653-7873 -initials: A. N. -mobile: +1 206 551-9541 -pager: +1 206 333-5197 -roomNumber: 9176 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariquilla Gibson -sn: Gibson -description: This is Mariquilla Gibson's description -facsimileTelephoneNumber: +1 408 655-6642 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 408 904-3622 -title: Chief Janitorial Consultant -userPassword: Password1 -uid: GibsonM -givenName: Mariquilla -mail: GibsonM@29c3d32bd72d456b98ccdb1f1f704bb5.bitwarden.com -carLicense: CHJTPE -departmentNumber: 1220 -employeeType: Employee -homePhone: +1 408 199-3009 -initials: M. G. -mobile: +1 408 277-4389 -pager: +1 408 876-4987 -roomNumber: 9928 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Twila Billard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Twila Billard -sn: Billard -description: This is Twila Billard's description -facsimileTelephoneNumber: +1 415 880-7605 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 458-7724 -title: Associate Management Czar -userPassword: Password1 -uid: BillardT -givenName: Twila -mail: BillardT@6fe2230bebbe45c4b4897cbd6f689c6c.bitwarden.com -carLicense: YGNSIP -departmentNumber: 1046 -employeeType: Employee -homePhone: +1 415 384-9806 -initials: T. B. -mobile: +1 415 613-4692 -pager: +1 415 423-5430 -roomNumber: 8485 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xiaojing Wooff -sn: Wooff -description: This is Xiaojing Wooff's description -facsimileTelephoneNumber: +1 818 559-4807 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 699-8080 -title: Chief Administrative Developer -userPassword: Password1 -uid: WooffX -givenName: Xiaojing -mail: WooffX@55ead9ec44144dd8a609d27bbb37e157.bitwarden.com -carLicense: 5DI6WW -departmentNumber: 5357 -employeeType: Contract -homePhone: +1 818 609-8079 -initials: X. W. -mobile: +1 818 635-4462 -pager: +1 818 990-4250 -roomNumber: 9629 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ari Windom,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ari Windom -sn: Windom -description: This is Ari Windom's description -facsimileTelephoneNumber: +1 213 849-6034 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 961-1285 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: WindomA -givenName: Ari -mail: WindomA@d5a62d125bc14270b01fa0b9a8576c7d.bitwarden.com -carLicense: M9DJ6H -departmentNumber: 4921 -employeeType: Contract -homePhone: +1 213 163-8881 -initials: A. W. -mobile: +1 213 414-6686 -pager: +1 213 686-4809 -roomNumber: 8845 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Opaline Gomes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opaline Gomes -sn: Gomes -description: This is Opaline Gomes's description -facsimileTelephoneNumber: +1 415 513-4786 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 415 107-7714 -title: Chief Management Grunt -userPassword: Password1 -uid: GomesO -givenName: Opaline -mail: GomesO@3009937061fa44e08033cd2d77480708.bitwarden.com -carLicense: FI7TIT -departmentNumber: 4274 -employeeType: Employee -homePhone: +1 415 139-2668 -initials: O. G. -mobile: +1 415 812-4749 -pager: +1 415 980-7635 -roomNumber: 9755 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rodi Dyrdahl -sn: Dyrdahl -description: This is Rodi Dyrdahl's description -facsimileTelephoneNumber: +1 818 121-9364 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 508-7248 -title: Associate Peons President -userPassword: Password1 -uid: DyrdahlR -givenName: Rodi -mail: DyrdahlR@4c9ea5cb0c6d47f0bff8da92c6c9d0eb.bitwarden.com -carLicense: 5PU9DB -departmentNumber: 4319 -employeeType: Contract -homePhone: +1 818 698-6673 -initials: R. D. -mobile: +1 818 656-3884 -pager: +1 818 950-7615 -roomNumber: 9657 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Svend Bongers,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Svend Bongers -sn: Bongers -description: This is Svend Bongers's description -facsimileTelephoneNumber: +1 206 645-2791 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 357-3327 -title: Chief Administrative Fellow -userPassword: Password1 -uid: BongersS -givenName: Svend -mail: BongersS@3ee42841812c4e2f8f42547c056a47a4.bitwarden.com -carLicense: QVY4A8 -departmentNumber: 9706 -employeeType: Employee -homePhone: +1 206 398-3385 -initials: S. B. -mobile: +1 206 553-9756 -pager: +1 206 873-3084 -roomNumber: 8573 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Suzette Burkey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzette Burkey -sn: Burkey -description: This is Suzette Burkey's description -facsimileTelephoneNumber: +1 510 913-9663 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 911-1471 -title: Associate Janitorial Evangelist -userPassword: Password1 -uid: BurkeyS -givenName: Suzette -mail: BurkeyS@471e794006cb42c3b4dce1c843b0ccc3.bitwarden.com -carLicense: MIXEQ9 -departmentNumber: 3084 -employeeType: Employee -homePhone: +1 510 706-2759 -initials: S. B. -mobile: +1 510 211-4313 -pager: +1 510 367-1203 -roomNumber: 8393 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Klazina Grabowski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klazina Grabowski -sn: Grabowski -description: This is Klazina Grabowski's description -facsimileTelephoneNumber: +1 818 179-3129 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 839-3428 -title: Supreme Product Development Janitor -userPassword: Password1 -uid: GrabowsK -givenName: Klazina -mail: GrabowsK@116c2088f9014599b930c7e21848d917.bitwarden.com -carLicense: 1IBOXT -departmentNumber: 4224 -employeeType: Normal -homePhone: +1 818 415-4561 -initials: K. G. -mobile: +1 818 601-5491 -pager: +1 818 714-3456 -roomNumber: 8974 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jester Alink,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jester Alink -sn: Alink -description: This is Jester Alink's description -facsimileTelephoneNumber: +1 804 507-9949 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 652-8881 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: AlinkJ -givenName: Jester -mail: AlinkJ@995756bc696444e0925a45b2d907b2e0.bitwarden.com -carLicense: JB7GDI -departmentNumber: 3528 -employeeType: Normal -homePhone: +1 804 487-6075 -initials: J. A. -mobile: +1 804 796-2068 -pager: +1 804 513-9927 -roomNumber: 8472 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arnold Fogelson -sn: Fogelson -description: This is Arnold Fogelson's description -facsimileTelephoneNumber: +1 206 713-9149 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 516-3684 -title: Associate Product Testing President -userPassword: Password1 -uid: FogelsoA -givenName: Arnold -mail: FogelsoA@7cb67504c13e412a8fec103be024f92b.bitwarden.com -carLicense: 16Q6JY -departmentNumber: 4957 -employeeType: Contract -homePhone: +1 206 300-9831 -initials: A. F. -mobile: +1 206 105-4902 -pager: +1 206 219-7415 -roomNumber: 8191 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Andre Hatzenbichler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andre Hatzenbichler -sn: Hatzenbichler -description: This is Andre Hatzenbichler's description -facsimileTelephoneNumber: +1 206 574-1450 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 221-8050 -title: Chief Management Sales Rep -userPassword: Password1 -uid: HatzenbA -givenName: Andre -mail: HatzenbA@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com -carLicense: 3H8GFC -departmentNumber: 9028 -employeeType: Employee -homePhone: +1 206 534-5985 -initials: A. H. -mobile: +1 206 752-7507 -pager: +1 206 222-6098 -roomNumber: 8860 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndon Montuno -sn: Montuno -description: This is Lyndon Montuno's description -facsimileTelephoneNumber: +1 804 547-4269 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 904-5343 -title: Master Janitorial Punk -userPassword: Password1 -uid: MontunoL -givenName: Lyndon -mail: MontunoL@c8d14bd2dc82442f9c5011dbd053c45a.bitwarden.com -carLicense: 39TIBY -departmentNumber: 2860 -employeeType: Employee -homePhone: +1 804 568-6206 -initials: L. M. -mobile: +1 804 967-8229 -pager: +1 804 795-3277 -roomNumber: 9054 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Raudres Negandhi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raudres Negandhi -sn: Negandhi -description: This is Raudres Negandhi's description -facsimileTelephoneNumber: +1 510 251-8076 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 761-3165 -title: Master Administrative Artist -userPassword: Password1 -uid: NegandhR -givenName: Raudres -mail: NegandhR@b866cf3614c84b6ab1508dbbda76e67a.bitwarden.com -carLicense: 3OIKDB -departmentNumber: 6735 -employeeType: Employee -homePhone: +1 510 675-9579 -initials: R. N. -mobile: +1 510 453-6256 -pager: +1 510 229-8398 -roomNumber: 9817 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marj Posta,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marj Posta -sn: Posta -description: This is Marj Posta's description -facsimileTelephoneNumber: +1 408 236-1076 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 550-8040 -title: Supreme Administrative Writer -userPassword: Password1 -uid: PostaM -givenName: Marj -mail: PostaM@68ce8f6324ee4d5691543ff35fe05d84.bitwarden.com -carLicense: TKTXIY -departmentNumber: 8798 -employeeType: Contract -homePhone: +1 408 963-9279 -initials: M. P. -mobile: +1 408 472-6842 -pager: +1 408 748-6712 -roomNumber: 9038 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mozelle Lalonde -sn: Lalonde -description: This is Mozelle Lalonde's description -facsimileTelephoneNumber: +1 206 445-2369 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 139-2249 -title: Junior Payroll Czar -userPassword: Password1 -uid: LalondeM -givenName: Mozelle -mail: LalondeM@31118e4ea061472193269b0ea325f915.bitwarden.com -carLicense: 0A03FQ -departmentNumber: 4900 -employeeType: Contract -homePhone: +1 206 433-8830 -initials: M. L. -mobile: +1 206 137-7134 -pager: +1 206 143-7516 -roomNumber: 9025 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=WaiMan Stillwell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WaiMan Stillwell -sn: Stillwell -description: This is WaiMan Stillwell's description -facsimileTelephoneNumber: +1 213 198-2764 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 149-5256 -title: Associate Peons Visionary -userPassword: Password1 -uid: StillweW -givenName: WaiMan -mail: StillweW@fb6b5989f0e34d278066748667edadde.bitwarden.com -carLicense: VU0LM7 -departmentNumber: 2376 -employeeType: Employee -homePhone: +1 213 950-6433 -initials: W. S. -mobile: +1 213 266-5310 -pager: +1 213 541-1249 -roomNumber: 8291 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Audi Adamski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Audi Adamski -sn: Adamski -description: This is Audi Adamski's description -facsimileTelephoneNumber: +1 804 412-3318 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 804 939-2573 -title: Associate Peons Dictator -userPassword: Password1 -uid: AdamskiA -givenName: Audi -mail: AdamskiA@2ac984f088f74653b77322f263723237.bitwarden.com -carLicense: KI4NY6 -departmentNumber: 2332 -employeeType: Normal -homePhone: +1 804 430-8563 -initials: A. A. -mobile: +1 804 110-9757 -pager: +1 804 684-4861 -roomNumber: 8482 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Earl Stanton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Earl Stanton -sn: Stanton -description: This is Earl Stanton's description -facsimileTelephoneNumber: +1 510 734-5473 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 510 569-6578 -title: Junior Peons Admin -userPassword: Password1 -uid: StantonE -givenName: Earl -mail: StantonE@c7b440e597614575a5a39ed9339f6e2e.bitwarden.com -carLicense: VGBFO6 -departmentNumber: 5920 -employeeType: Employee -homePhone: +1 510 168-7455 -initials: E. S. -mobile: +1 510 425-4122 -pager: +1 510 646-7340 -roomNumber: 8464 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Reggie Venturini,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reggie Venturini -sn: Venturini -description: This is Reggie Venturini's description -facsimileTelephoneNumber: +1 804 337-7186 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 556-1321 -title: Associate Administrative Fellow -userPassword: Password1 -uid: VenturiR -givenName: Reggie -mail: VenturiR@8227646c55034cf9b21757fce681b53f.bitwarden.com -carLicense: T66MJT -departmentNumber: 2640 -employeeType: Contract -homePhone: +1 804 738-2432 -initials: R. V. -mobile: +1 804 170-8493 -pager: +1 804 805-5590 -roomNumber: 8671 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jannelle Berro,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jannelle Berro -sn: Berro -description: This is Jannelle Berro's description -facsimileTelephoneNumber: +1 213 214-7258 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 508-4973 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: BerroJ -givenName: Jannelle -mail: BerroJ@6452f4682aa64d008088217c5ad881f7.bitwarden.com -carLicense: 72QHOU -departmentNumber: 3334 -employeeType: Normal -homePhone: +1 213 282-5516 -initials: J. B. -mobile: +1 213 360-5230 -pager: +1 213 460-6336 -roomNumber: 9683 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marya Buford,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marya Buford -sn: Buford -description: This is Marya Buford's description -facsimileTelephoneNumber: +1 206 843-8010 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 422-6940 -title: Master Payroll Pinhead -userPassword: Password1 -uid: BufordM -givenName: Marya -mail: BufordM@b1e31f863da04aa8b9a57d43a6e09dae.bitwarden.com -carLicense: 1G0XBY -departmentNumber: 8248 -employeeType: Normal -homePhone: +1 206 398-7207 -initials: M. B. -mobile: +1 206 318-9304 -pager: +1 206 272-3957 -roomNumber: 8743 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kally Tinney,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kally Tinney -sn: Tinney -description: This is Kally Tinney's description -facsimileTelephoneNumber: +1 213 977-5272 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 484-6079 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: TinneyK -givenName: Kally -mail: TinneyK@cf1f0125e0794b80b348dddaa747ca09.bitwarden.com -carLicense: GUNHFJ -departmentNumber: 9348 -employeeType: Contract -homePhone: +1 213 325-1038 -initials: K. T. -mobile: +1 213 510-2222 -pager: +1 213 151-9459 -roomNumber: 8129 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Verile Maksoud,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verile Maksoud -sn: Maksoud -description: This is Verile Maksoud's description -facsimileTelephoneNumber: +1 206 821-7375 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 101-7167 -title: Supreme Product Development Artist -userPassword: Password1 -uid: MaksoudV -givenName: Verile -mail: MaksoudV@bf7383f759754f9b9777ee05159141ee.bitwarden.com -carLicense: 54BPUS -departmentNumber: 4990 -employeeType: Normal -homePhone: +1 206 307-9692 -initials: V. M. -mobile: +1 206 590-7935 -pager: +1 206 388-4176 -roomNumber: 8054 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shaun Sandhu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaun Sandhu -sn: Sandhu -description: This is Shaun Sandhu's description -facsimileTelephoneNumber: +1 206 997-4469 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 123-9484 -title: Junior Management Punk -userPassword: Password1 -uid: SandhuS -givenName: Shaun -mail: SandhuS@c67e58274a874c9595360f767ef27116.bitwarden.com -carLicense: VRCENS -departmentNumber: 4912 -employeeType: Employee -homePhone: +1 206 211-2123 -initials: S. S. -mobile: +1 206 719-3791 -pager: +1 206 820-5427 -roomNumber: 8291 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Michal Andrew,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michal Andrew -sn: Andrew -description: This is Michal Andrew's description -facsimileTelephoneNumber: +1 415 898-9331 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 820-6495 -title: Supreme Administrative Developer -userPassword: Password1 -uid: AndrewM -givenName: Michal -mail: AndrewM@4dd9b19c6f6848e2a0768f206ad89104.bitwarden.com -carLicense: TF8BGJ -departmentNumber: 6259 -employeeType: Contract -homePhone: +1 415 973-4881 -initials: M. A. -mobile: +1 415 300-2218 -pager: +1 415 744-5191 -roomNumber: 8007 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Valerie Efthim,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valerie Efthim -sn: Efthim -description: This is Valerie Efthim's description -facsimileTelephoneNumber: +1 510 203-6928 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 480-7003 -title: Master Peons Janitor -userPassword: Password1 -uid: EfthimV -givenName: Valerie -mail: EfthimV@8a407807d42746848c0943df6e11c535.bitwarden.com -carLicense: U647OW -departmentNumber: 9967 -employeeType: Employee -homePhone: +1 510 753-4188 -initials: V. E. -mobile: +1 510 968-4756 -pager: +1 510 930-3364 -roomNumber: 8302 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imre Pizzanelli -sn: Pizzanelli -description: This is Imre Pizzanelli's description -facsimileTelephoneNumber: +1 213 239-3400 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 714-6955 -title: Chief Payroll Grunt -userPassword: Password1 -uid: PizzaneI -givenName: Imre -mail: PizzaneI@7dd094a2e53049a29a9302610c3b379c.bitwarden.com -carLicense: 99355B -departmentNumber: 5224 -employeeType: Employee -homePhone: +1 213 348-2558 -initials: I. P. -mobile: +1 213 294-7693 -pager: +1 213 212-1269 -roomNumber: 8759 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sadella Loggins,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadella Loggins -sn: Loggins -description: This is Sadella Loggins's description -facsimileTelephoneNumber: +1 510 728-5497 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 197-3390 -title: Master Janitorial Architect -userPassword: Password1 -uid: LogginsS -givenName: Sadella -mail: LogginsS@afea5fd146ef4dd19f19321d779917eb.bitwarden.com -carLicense: N1CD7X -departmentNumber: 4736 -employeeType: Employee -homePhone: +1 510 722-3585 -initials: S. L. -mobile: +1 510 874-1708 -pager: +1 510 364-8189 -roomNumber: 9198 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helenelizabeth Leiwe -sn: Leiwe -description: This is Helenelizabeth Leiwe's description -facsimileTelephoneNumber: +1 206 986-7474 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 206 145-8099 -title: Junior Product Development Warrior -userPassword: Password1 -uid: LeiweH -givenName: Helenelizabeth -mail: LeiweH@a973beae67824ff38510168917193e58.bitwarden.com -carLicense: T1NDFE -departmentNumber: 7874 -employeeType: Normal -homePhone: +1 206 951-4839 -initials: H. L. -mobile: +1 206 914-3866 -pager: +1 206 185-3783 -roomNumber: 8369 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=HackHoo Hunter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HackHoo Hunter -sn: Hunter -description: This is HackHoo Hunter's description -facsimileTelephoneNumber: +1 206 782-4511 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 691-2788 -title: Chief Product Development Mascot -userPassword: Password1 -uid: HunterH -givenName: HackHoo -mail: HunterH@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com -carLicense: 2MHNKN -departmentNumber: 6435 -employeeType: Normal -homePhone: +1 206 941-5305 -initials: H. H. -mobile: +1 206 111-7951 -pager: +1 206 486-2013 -roomNumber: 8179 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Meter Hickerson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meter Hickerson -sn: Hickerson -description: This is Meter Hickerson's description -facsimileTelephoneNumber: +1 415 114-7675 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 722-8923 -title: Supreme Peons Warrior -userPassword: Password1 -uid: HickersM -givenName: Meter -mail: HickersM@518da73225eb4a77959fb191daf72b49.bitwarden.com -carLicense: JH1XVI -departmentNumber: 3341 -employeeType: Employee -homePhone: +1 415 110-3045 -initials: M. H. -mobile: +1 415 159-3557 -pager: +1 415 663-5636 -roomNumber: 8868 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=MaryKay Lan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryKay Lan -sn: Lan -description: This is MaryKay Lan's description -facsimileTelephoneNumber: +1 510 542-6355 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 427-5413 -title: Master Janitorial President -userPassword: Password1 -uid: LanM -givenName: MaryKay -mail: LanM@fd5fdd80b1a14938bb4e5ddb7ae924b8.bitwarden.com -carLicense: TIEVWK -departmentNumber: 2105 -employeeType: Contract -homePhone: +1 510 105-5234 -initials: M. L. -mobile: +1 510 719-6086 -pager: +1 510 508-9444 -roomNumber: 9359 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Giana Pierson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giana Pierson -sn: Pierson -description: This is Giana Pierson's description -facsimileTelephoneNumber: +1 818 425-6018 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 134-3234 -title: Junior Administrative Warrior -userPassword: Password1 -uid: PiersonG -givenName: Giana -mail: PiersonG@ae78ee526c5e44bdaf510c03b717277a.bitwarden.com -carLicense: 24TB7O -departmentNumber: 6763 -employeeType: Contract -homePhone: +1 818 716-5682 -initials: G. P. -mobile: +1 818 159-6179 -pager: +1 818 402-2979 -roomNumber: 9004 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shiela Anthonissen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shiela Anthonissen -sn: Anthonissen -description: This is Shiela Anthonissen's description -facsimileTelephoneNumber: +1 206 479-1830 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 689-5305 -title: Associate Management Director -userPassword: Password1 -uid: AnthoniS -givenName: Shiela -mail: AnthoniS@92fac5dc49334a53a79e5778457c6927.bitwarden.com -carLicense: P0UMX8 -departmentNumber: 6998 -employeeType: Contract -homePhone: +1 206 695-8267 -initials: S. A. -mobile: +1 206 260-9077 -pager: +1 206 904-2353 -roomNumber: 8256 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Toby Winterberg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toby Winterberg -sn: Winterberg -description: This is Toby Winterberg's description -facsimileTelephoneNumber: +1 804 711-8634 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 804 350-4500 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: WinterbT -givenName: Toby -mail: WinterbT@5b0da98f68834ea191407bb1ee431580.bitwarden.com -carLicense: D0DLB4 -departmentNumber: 9350 -employeeType: Employee -homePhone: +1 804 250-1780 -initials: T. W. -mobile: +1 804 121-3262 -pager: +1 804 404-6503 -roomNumber: 9525 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Leticia Metheny,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leticia Metheny -sn: Metheny -description: This is Leticia Metheny's description -facsimileTelephoneNumber: +1 510 460-6655 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 929-6828 -title: Junior Management Vice President -userPassword: Password1 -uid: MethenyL -givenName: Leticia -mail: MethenyL@523c7925179d4304b25908d832088d77.bitwarden.com -carLicense: KH1206 -departmentNumber: 8179 -employeeType: Employee -homePhone: +1 510 738-9508 -initials: L. M. -mobile: +1 510 286-4534 -pager: +1 510 217-3819 -roomNumber: 9974 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Skipper Moschopoulos -sn: Moschopoulos -description: This is Skipper Moschopoulos's description -facsimileTelephoneNumber: +1 818 692-5767 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 660-2438 -title: Associate Payroll Director -userPassword: Password1 -uid: MoschopS -givenName: Skipper -mail: MoschopS@d21aff3093e74a19bbea5f621e17cee4.bitwarden.com -carLicense: 6CMDO2 -departmentNumber: 8128 -employeeType: Employee -homePhone: +1 818 214-7392 -initials: S. M. -mobile: +1 818 427-4962 -pager: +1 818 456-7343 -roomNumber: 8174 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Raven Tuan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raven Tuan -sn: Tuan -description: This is Raven Tuan's description -facsimileTelephoneNumber: +1 206 460-2713 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 723-3753 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: TuanR -givenName: Raven -mail: TuanR@fa45ba90b06846bb81fc9f04c3bbe415.bitwarden.com -carLicense: Q3D9HK -departmentNumber: 2691 -employeeType: Contract -homePhone: +1 206 537-6128 -initials: R. T. -mobile: +1 206 627-7495 -pager: +1 206 995-3632 -roomNumber: 8353 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leddy Kochis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leddy Kochis -sn: Kochis -description: This is Leddy Kochis's description -facsimileTelephoneNumber: +1 408 524-4046 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 966-8280 -title: Master Peons Madonna -userPassword: Password1 -uid: KochisL -givenName: Leddy -mail: KochisL@4791ce49665d4017b7808a73f1a6c3d7.bitwarden.com -carLicense: 9V7PYQ -departmentNumber: 7187 -employeeType: Employee -homePhone: +1 408 958-1234 -initials: L. K. -mobile: +1 408 884-4985 -pager: +1 408 164-7947 -roomNumber: 8058 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Niek Tripp,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niek Tripp -sn: Tripp -description: This is Niek Tripp's description -facsimileTelephoneNumber: +1 213 840-9072 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 683-1993 -title: Chief Administrative Consultant -userPassword: Password1 -uid: TrippN -givenName: Niek -mail: TrippN@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com -carLicense: KVHSG7 -departmentNumber: 1378 -employeeType: Contract -homePhone: +1 213 780-8751 -initials: N. T. -mobile: +1 213 426-6487 -pager: +1 213 444-2642 -roomNumber: 8725 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Curtis Caglayan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Curtis Caglayan -sn: Caglayan -description: This is Curtis Caglayan's description -facsimileTelephoneNumber: +1 510 425-6043 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 147-6300 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: CaglayaC -givenName: Curtis -mail: CaglayaC@4641f68e88f74b89a7d91f372f89c707.bitwarden.com -carLicense: K39FS8 -departmentNumber: 2967 -employeeType: Normal -homePhone: +1 510 781-8085 -initials: C. C. -mobile: +1 510 153-6668 -pager: +1 510 644-6997 -roomNumber: 8024 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ibbie Sebastian -sn: Sebastian -description: This is Ibbie Sebastian's description -facsimileTelephoneNumber: +1 213 638-9126 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 389-7980 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: SebastiI -givenName: Ibbie -mail: SebastiI@f5c077cada0a4d8d8147cbf8b500bc50.bitwarden.com -carLicense: YLWGGA -departmentNumber: 8203 -employeeType: Employee -homePhone: +1 213 149-4690 -initials: I. S. -mobile: +1 213 344-7854 -pager: +1 213 929-3044 -roomNumber: 9232 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eladio Nadler,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eladio Nadler -sn: Nadler -description: This is Eladio Nadler's description -facsimileTelephoneNumber: +1 206 542-5076 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 554-3840 -title: Associate Administrative Engineer -userPassword: Password1 -uid: NadlerE -givenName: Eladio -mail: NadlerE@395a1522673545a2b6f4ec5f1b7796af.bitwarden.com -carLicense: TXH3AK -departmentNumber: 9216 -employeeType: Employee -homePhone: +1 206 541-4782 -initials: E. N. -mobile: +1 206 494-6760 -pager: +1 206 947-1595 -roomNumber: 8284 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kameko Ayres,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kameko Ayres -sn: Ayres -description: This is Kameko Ayres's description -facsimileTelephoneNumber: +1 213 319-2971 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 252-6818 -title: Master Product Development Architect -userPassword: Password1 -uid: AyresK -givenName: Kameko -mail: AyresK@23f2b7d7514a4767820f5e79ce7c0c7d.bitwarden.com -carLicense: RO3IOD -departmentNumber: 5865 -employeeType: Normal -homePhone: +1 213 677-3149 -initials: K. A. -mobile: +1 213 924-1132 -pager: +1 213 647-4199 -roomNumber: 8179 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Florinda Templeton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florinda Templeton -sn: Templeton -description: This is Florinda Templeton's description -facsimileTelephoneNumber: +1 408 688-3898 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 683-2366 -title: Chief Product Development Dictator -userPassword: Password1 -uid: TempletF -givenName: Florinda -mail: TempletF@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com -carLicense: YLVJTY -departmentNumber: 8561 -employeeType: Contract -homePhone: +1 408 331-3269 -initials: F. T. -mobile: +1 408 294-3582 -pager: +1 408 132-3833 -roomNumber: 8064 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Omayma Halula,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Omayma Halula -sn: Halula -description: This is Omayma Halula's description -facsimileTelephoneNumber: +1 408 337-2661 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 706-5826 -title: Master Payroll Engineer -userPassword: Password1 -uid: HalulaO -givenName: Omayma -mail: HalulaO@c3a780fc1cae424e99d05abc11ec9e6a.bitwarden.com -carLicense: X7I48A -departmentNumber: 9665 -employeeType: Normal -homePhone: +1 408 373-3451 -initials: O. H. -mobile: +1 408 436-1848 -pager: +1 408 447-5230 -roomNumber: 9010 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shellie Blethen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shellie Blethen -sn: Blethen -description: This is Shellie Blethen's description -facsimileTelephoneNumber: +1 818 203-8291 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 818 120-7282 -title: Chief Human Resources Janitor -userPassword: Password1 -uid: BlethenS -givenName: Shellie -mail: BlethenS@95aba425683d4bd1840a81fc67427bb1.bitwarden.com -carLicense: 8MTN0N -departmentNumber: 7931 -employeeType: Contract -homePhone: +1 818 472-5819 -initials: S. B. -mobile: +1 818 908-8562 -pager: +1 818 776-4829 -roomNumber: 9567 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annemarijke Marceau -sn: Marceau -description: This is Annemarijke Marceau's description -facsimileTelephoneNumber: +1 213 445-2318 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 151-3194 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: MarceauA -givenName: Annemarijke -mail: MarceauA@6c578796ae9e48a3a3b7ff8b9d3b060a.bitwarden.com -carLicense: RN5FMD -departmentNumber: 9905 -employeeType: Employee -homePhone: +1 213 322-4535 -initials: A. M. -mobile: +1 213 728-7263 -pager: +1 213 324-7090 -roomNumber: 9886 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Corliss Pharris,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corliss Pharris -sn: Pharris -description: This is Corliss Pharris's description -facsimileTelephoneNumber: +1 408 586-7562 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 408 542-3578 -title: Associate Payroll Grunt -userPassword: Password1 -uid: PharrisC -givenName: Corliss -mail: PharrisC@8ab88106282a4e96ae4334aaf2a9980f.bitwarden.com -carLicense: BHTYL3 -departmentNumber: 5350 -employeeType: Employee -homePhone: +1 408 523-2857 -initials: C. P. -mobile: +1 408 224-7329 -pager: +1 408 193-4623 -roomNumber: 9686 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mareah Gooderham,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mareah Gooderham -sn: Gooderham -description: This is Mareah Gooderham's description -facsimileTelephoneNumber: +1 804 643-5465 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 590-4954 -title: Chief Product Development Writer -userPassword: Password1 -uid: GooderhM -givenName: Mareah -mail: GooderhM@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com -carLicense: WNPLAM -departmentNumber: 8464 -employeeType: Normal -homePhone: +1 804 680-4845 -initials: M. G. -mobile: +1 804 628-6736 -pager: +1 804 610-2101 -roomNumber: 8211 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Olwen Yelvington,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olwen Yelvington -sn: Yelvington -description: This is Olwen Yelvington's description -facsimileTelephoneNumber: +1 804 104-1457 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 574-7094 -title: Chief Management Grunt -userPassword: Password1 -uid: YelvingO -givenName: Olwen -mail: YelvingO@d2bd61540f2c442085d5a71bd0d2fc4d.bitwarden.com -carLicense: QDQTFU -departmentNumber: 9660 -employeeType: Employee -homePhone: +1 804 389-9935 -initials: O. Y. -mobile: +1 804 495-1919 -pager: +1 804 618-6110 -roomNumber: 8053 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maiga Buder,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maiga Buder -sn: Buder -description: This is Maiga Buder's description -facsimileTelephoneNumber: +1 804 367-5264 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 756-9601 -title: Associate Product Development Dictator -userPassword: Password1 -uid: BuderM -givenName: Maiga -mail: BuderM@9ff9a89b32504ff5afdb9c11208b7d0a.bitwarden.com -carLicense: EICG2R -departmentNumber: 2287 -employeeType: Employee -homePhone: +1 804 995-6732 -initials: M. B. -mobile: +1 804 915-7589 -pager: +1 804 831-3828 -roomNumber: 8555 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Madlen Booking,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madlen Booking -sn: Booking -description: This is Madlen Booking's description -facsimileTelephoneNumber: +1 818 598-9888 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 317-1453 -title: Associate Product Development Admin -userPassword: Password1 -uid: BookingM -givenName: Madlen -mail: BookingM@a67ff5b1ad97429ba599b05adf0b8c32.bitwarden.com -carLicense: FJPH24 -departmentNumber: 8286 -employeeType: Contract -homePhone: +1 818 678-6492 -initials: M. B. -mobile: +1 818 276-5726 -pager: +1 818 196-8553 -roomNumber: 8254 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Darell Liang,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darell Liang -sn: Liang -description: This is Darell Liang's description -facsimileTelephoneNumber: +1 804 562-5790 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 804 679-3097 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: LiangD -givenName: Darell -mail: LiangD@49c28823fa6d4e18b2bd79c94f037cd5.bitwarden.com -carLicense: PBM9K7 -departmentNumber: 3346 -employeeType: Contract -homePhone: +1 804 194-3136 -initials: D. L. -mobile: +1 804 340-5339 -pager: +1 804 473-5763 -roomNumber: 8962 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klarrisa Tregenza -sn: Tregenza -description: This is Klarrisa Tregenza's description -facsimileTelephoneNumber: +1 206 779-9988 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 854-8309 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: TregenzK -givenName: Klarrisa -mail: TregenzK@290c8e7e8138440babe5064ce0d66502.bitwarden.com -carLicense: 82Y2T9 -departmentNumber: 1364 -employeeType: Normal -homePhone: +1 206 493-4392 -initials: K. T. -mobile: +1 206 696-6685 -pager: +1 206 123-6069 -roomNumber: 8597 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Neena Mayes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neena Mayes -sn: Mayes -description: This is Neena Mayes's description -facsimileTelephoneNumber: +1 510 914-8807 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 510 277-8261 -title: Junior Human Resources Janitor -userPassword: Password1 -uid: MayesN -givenName: Neena -mail: MayesN@0159105d118c42e49c1ba8afedb04349.bitwarden.com -carLicense: 4DX68Y -departmentNumber: 7674 -employeeType: Employee -homePhone: +1 510 908-1286 -initials: N. M. -mobile: +1 510 843-6696 -pager: +1 510 435-8290 -roomNumber: 8975 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hannie Robieux,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hannie Robieux -sn: Robieux -description: This is Hannie Robieux's description -facsimileTelephoneNumber: +1 818 922-1355 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 136-1486 -title: Junior Payroll Vice President -userPassword: Password1 -uid: RobieuxH -givenName: Hannie -mail: RobieuxH@2fd47af450d743418108699823631680.bitwarden.com -carLicense: AWEU44 -departmentNumber: 2538 -employeeType: Normal -homePhone: +1 818 777-7691 -initials: H. R. -mobile: +1 818 329-8178 -pager: +1 818 410-8753 -roomNumber: 9797 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Regine Iantaffi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regine Iantaffi -sn: Iantaffi -description: This is Regine Iantaffi's description -facsimileTelephoneNumber: +1 415 549-6739 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 540-2719 -title: Supreme Peons Mascot -userPassword: Password1 -uid: IantaffR -givenName: Regine -mail: IantaffR@643e8725ab414409abd27e0fe695dde2.bitwarden.com -carLicense: FL49UW -departmentNumber: 3477 -employeeType: Normal -homePhone: +1 415 845-7415 -initials: R. I. -mobile: +1 415 603-3230 -pager: +1 415 512-7330 -roomNumber: 8884 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramonda Henshaw -sn: Henshaw -description: This is Ramonda Henshaw's description -facsimileTelephoneNumber: +1 213 264-7088 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 683-3079 -title: Chief Administrative Admin -userPassword: Password1 -uid: HenshawR -givenName: Ramonda -mail: HenshawR@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com -carLicense: 4SJNGM -departmentNumber: 2982 -employeeType: Contract -homePhone: +1 213 297-9385 -initials: R. H. -mobile: +1 213 346-3878 -pager: +1 213 109-7287 -roomNumber: 8601 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gladi Steffes,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gladi Steffes -sn: Steffes -description: This is Gladi Steffes's description -facsimileTelephoneNumber: +1 213 903-9570 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 681-2310 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: SteffesG -givenName: Gladi -mail: SteffesG@32e3fa5da06a4fd3803417733702b064.bitwarden.com -carLicense: C91UK1 -departmentNumber: 6983 -employeeType: Contract -homePhone: +1 213 273-4222 -initials: G. S. -mobile: +1 213 246-3133 -pager: +1 213 291-4040 -roomNumber: 9270 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kalli Chanonat,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalli Chanonat -sn: Chanonat -description: This is Kalli Chanonat's description -facsimileTelephoneNumber: +1 510 671-5918 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 510 646-4557 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: ChanonaK -givenName: Kalli -mail: ChanonaK@aa334b1a73514c2283534b58c2c9420b.bitwarden.com -carLicense: MRJ1Q6 -departmentNumber: 1777 -employeeType: Normal -homePhone: +1 510 736-5371 -initials: K. C. -mobile: +1 510 953-2377 -pager: +1 510 668-7572 -roomNumber: 8304 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bob Gronwall,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bob Gronwall -sn: Gronwall -description: This is Bob Gronwall's description -facsimileTelephoneNumber: +1 415 713-3093 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 502-8008 -title: Master Peons Stooge -userPassword: Password1 -uid: GronwalB -givenName: Bob -mail: GronwalB@0f8c263e7f6c452db2957bf93d2cdb86.bitwarden.com -carLicense: CSGFJE -departmentNumber: 9915 -employeeType: Contract -homePhone: +1 415 793-5763 -initials: B. G. -mobile: +1 415 401-9546 -pager: +1 415 203-7785 -roomNumber: 9882 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giovanni Rizewiski -sn: Rizewiski -description: This is Giovanni Rizewiski's description -facsimileTelephoneNumber: +1 510 902-6857 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 384-3956 -title: Chief Peons Warrior -userPassword: Password1 -uid: RizewisG -givenName: Giovanni -mail: RizewisG@0c871b0ecc1a46debc66287e828580e3.bitwarden.com -carLicense: VFOYAX -departmentNumber: 3866 -employeeType: Normal -homePhone: +1 510 190-3757 -initials: G. R. -mobile: +1 510 860-3824 -pager: +1 510 231-2532 -roomNumber: 8999 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Faunie Moroz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faunie Moroz -sn: Moroz -description: This is Faunie Moroz's description -facsimileTelephoneNumber: +1 804 846-4323 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 640-1644 -title: Associate Product Development President -userPassword: Password1 -uid: MorozF -givenName: Faunie -mail: MorozF@8a380e2be5ea40e5ac3c58889b7903b7.bitwarden.com -carLicense: UIQTSI -departmentNumber: 1289 -employeeType: Employee -homePhone: +1 804 683-4666 -initials: F. M. -mobile: +1 804 534-8016 -pager: +1 804 269-8229 -roomNumber: 8334 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Avrit Abrahim,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avrit Abrahim -sn: Abrahim -description: This is Avrit Abrahim's description -facsimileTelephoneNumber: +1 415 841-2838 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 617-8924 -title: Master Payroll Technician -userPassword: Password1 -uid: AbrahimA -givenName: Avrit -mail: AbrahimA@3f9f595da27346f4869f68e3fa5be108.bitwarden.com -carLicense: UDDROF -departmentNumber: 2999 -employeeType: Normal -homePhone: +1 415 370-4009 -initials: A. A. -mobile: +1 415 129-2386 -pager: +1 415 112-6533 -roomNumber: 8034 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marietta Shunmugam -sn: Shunmugam -description: This is Marietta Shunmugam's description -facsimileTelephoneNumber: +1 804 310-6747 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 799-8279 -title: Master Human Resources Technician -userPassword: Password1 -uid: ShunmugM -givenName: Marietta -mail: ShunmugM@80196116addf4f41ba15c7f335724d57.bitwarden.com -carLicense: 27VLYO -departmentNumber: 3997 -employeeType: Normal -homePhone: +1 804 708-3817 -initials: M. S. -mobile: +1 804 787-2561 -pager: +1 804 996-6511 -roomNumber: 8375 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelcie Ruttan -sn: Ruttan -description: This is Kelcie Ruttan's description -facsimileTelephoneNumber: +1 206 982-6690 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 521-8020 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: RuttanK -givenName: Kelcie -mail: RuttanK@5bc6becc7c8b4be7bfb46c3c5ef26514.bitwarden.com -carLicense: X3LMM1 -departmentNumber: 4786 -employeeType: Employee -homePhone: +1 206 327-4352 -initials: K. R. -mobile: +1 206 638-2164 -pager: +1 206 610-5558 -roomNumber: 8139 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bernard Placido,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernard Placido -sn: Placido -description: This is Bernard Placido's description -facsimileTelephoneNumber: +1 510 253-6373 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 168-7244 -title: Supreme Payroll Punk -userPassword: Password1 -uid: PlacidoB -givenName: Bernard -mail: PlacidoB@be9d6d33980e45aa8fdb6ebf08094f9b.bitwarden.com -carLicense: CUHV7Y -departmentNumber: 8812 -employeeType: Contract -homePhone: +1 510 673-7908 -initials: B. P. -mobile: +1 510 431-8352 -pager: +1 510 803-4613 -roomNumber: 9525 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kariotta Sprunger -sn: Sprunger -description: This is Kariotta Sprunger's description -facsimileTelephoneNumber: +1 206 773-7394 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 429-7542 -title: Chief Administrative Fellow -userPassword: Password1 -uid: SprungeK -givenName: Kariotta -mail: SprungeK@234baafa6151436c9e90b2aa2617a7d2.bitwarden.com -carLicense: 78DYQS -departmentNumber: 7299 -employeeType: Normal -homePhone: +1 206 904-1455 -initials: K. S. -mobile: +1 206 551-8685 -pager: +1 206 811-5871 -roomNumber: 8758 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Graciela VanPatten -sn: VanPatten -description: This is Graciela VanPatten's description -facsimileTelephoneNumber: +1 510 287-6778 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 232-4216 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: VanPattG -givenName: Graciela -mail: VanPattG@f6cc3e776c61473088c0113a2174d24c.bitwarden.com -carLicense: J46E75 -departmentNumber: 1278 -employeeType: Employee -homePhone: +1 510 110-8417 -initials: G. V. -mobile: +1 510 521-4601 -pager: +1 510 571-6453 -roomNumber: 9751 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Flory Ganadry,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flory Ganadry -sn: Ganadry -description: This is Flory Ganadry's description -facsimileTelephoneNumber: +1 415 355-3909 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 677-3145 -title: Master Management Figurehead -userPassword: Password1 -uid: GanadryF -givenName: Flory -mail: GanadryF@0c3f5d55309540bf85d561938fa59231.bitwarden.com -carLicense: COVYO0 -departmentNumber: 7552 -employeeType: Employee -homePhone: +1 415 697-6778 -initials: F. G. -mobile: +1 415 904-2475 -pager: +1 415 995-5790 -roomNumber: 8288 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Berti Steski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berti Steski -sn: Steski -description: This is Berti Steski's description -facsimileTelephoneNumber: +1 415 400-3264 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 342-4704 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: SteskiB -givenName: Berti -mail: SteskiB@c54cbe69dcd34a96b7a131338d06781d.bitwarden.com -carLicense: NTAIXR -departmentNumber: 4000 -employeeType: Contract -homePhone: +1 415 394-6224 -initials: B. S. -mobile: +1 415 660-5026 -pager: +1 415 658-1357 -roomNumber: 8062 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Charline Fross,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charline Fross -sn: Fross -description: This is Charline Fross's description -facsimileTelephoneNumber: +1 213 664-7603 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 250-3863 -title: Master Product Development Director -userPassword: Password1 -uid: FrossC -givenName: Charline -mail: FrossC@786bf687e1984b2da694b96e1738976f.bitwarden.com -carLicense: RB0991 -departmentNumber: 5197 -employeeType: Employee -homePhone: +1 213 123-7646 -initials: C. F. -mobile: +1 213 208-6911 -pager: +1 213 929-4094 -roomNumber: 8399 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bonnar Burns,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bonnar Burns -sn: Burns -description: This is Bonnar Burns's description -facsimileTelephoneNumber: +1 818 314-7333 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 139-4282 -title: Associate Product Development Stooge -userPassword: Password1 -uid: BurnsB -givenName: Bonnar -mail: BurnsB@c44cf57c7e494ab8a133e7f2a6a02284.bitwarden.com -carLicense: 7KR4IK -departmentNumber: 1909 -employeeType: Employee -homePhone: +1 818 483-8710 -initials: B. B. -mobile: +1 818 353-2443 -pager: +1 818 854-2546 -roomNumber: 8525 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kate Scorziello,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kate Scorziello -sn: Scorziello -description: This is Kate Scorziello's description -facsimileTelephoneNumber: +1 818 558-1881 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 818 352-1405 -title: Chief Administrative Janitor -userPassword: Password1 -uid: ScorzieK -givenName: Kate -mail: ScorzieK@3340c10fa973435198296f285f1bf380.bitwarden.com -carLicense: KO0ATW -departmentNumber: 1750 -employeeType: Normal -homePhone: +1 818 234-1914 -initials: K. S. -mobile: +1 818 395-2135 -pager: +1 818 810-1679 -roomNumber: 8556 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SvennErik Kamboh -sn: Kamboh -description: This is SvennErik Kamboh's description -facsimileTelephoneNumber: +1 804 305-5438 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 124-6330 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: KambohS -givenName: SvennErik -mail: KambohS@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com -carLicense: FWPFJG -departmentNumber: 5336 -employeeType: Normal -homePhone: +1 804 361-2364 -initials: S. K. -mobile: +1 804 791-3683 -pager: +1 804 434-3859 -roomNumber: 8137 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Olenka Tota,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olenka Tota -sn: Tota -description: This is Olenka Tota's description -facsimileTelephoneNumber: +1 415 944-3515 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 415 457-2127 -title: Junior Human Resources Madonna -userPassword: Password1 -uid: TotaO -givenName: Olenka -mail: TotaO@2c3e110ee6f849dd9d12214b3161a037.bitwarden.com -carLicense: 0BH1PI -departmentNumber: 5111 -employeeType: Contract -homePhone: +1 415 131-6877 -initials: O. T. -mobile: +1 415 905-1318 -pager: +1 415 492-3091 -roomNumber: 8007 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanh Vonderhaar -sn: Vonderhaar -description: This is Hanh Vonderhaar's description -facsimileTelephoneNumber: +1 804 112-8921 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 968-6741 -title: Associate Payroll Mascot -userPassword: Password1 -uid: VonderhH -givenName: Hanh -mail: VonderhH@1d23264dcd2241baa77e90f901c50315.bitwarden.com -carLicense: XTBM66 -departmentNumber: 4160 -employeeType: Normal -homePhone: +1 804 631-6578 -initials: H. V. -mobile: +1 804 410-7057 -pager: +1 804 696-7534 -roomNumber: 9343 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ceil Foubert,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ceil Foubert -sn: Foubert -description: This is Ceil Foubert's description -facsimileTelephoneNumber: +1 213 689-1189 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 166-3853 -title: Junior Human Resources Writer -userPassword: Password1 -uid: FoubertC -givenName: Ceil -mail: FoubertC@f6edafa4c10c4c53bf1931829503f011.bitwarden.com -carLicense: MJG80M -departmentNumber: 7485 -employeeType: Normal -homePhone: +1 213 445-3992 -initials: C. F. -mobile: +1 213 150-8812 -pager: +1 213 561-2439 -roomNumber: 8369 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JooGeok Kouhi -sn: Kouhi -description: This is JooGeok Kouhi's description -facsimileTelephoneNumber: +1 804 399-8284 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 894-9318 -title: Chief Product Development Developer -userPassword: Password1 -uid: KouhiJ -givenName: JooGeok -mail: KouhiJ@b0cf4813000442ff977f9358e32e3342.bitwarden.com -carLicense: D97ULF -departmentNumber: 3176 -employeeType: Employee -homePhone: +1 804 478-3702 -initials: J. K. -mobile: +1 804 524-6540 -pager: +1 804 871-4581 -roomNumber: 9864 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chellappan Pietromonaco -sn: Pietromonaco -description: This is Chellappan Pietromonaco's description -facsimileTelephoneNumber: +1 804 458-7715 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 804 288-2720 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: PietromC -givenName: Chellappan -mail: PietromC@ca73de7d8fb447f899df1cc98c2c34a2.bitwarden.com -carLicense: OMN5B9 -departmentNumber: 2833 -employeeType: Contract -homePhone: +1 804 257-4220 -initials: C. P. -mobile: +1 804 168-7022 -pager: +1 804 764-5190 -roomNumber: 8259 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tetsumo Thuswaldner -sn: Thuswaldner -description: This is Tetsumo Thuswaldner's description -facsimileTelephoneNumber: +1 818 580-2877 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 401-1028 -title: Associate Human Resources Visionary -userPassword: Password1 -uid: ThuswalT -givenName: Tetsumo -mail: ThuswalT@549a00afcc4642b6988c79a50d08a8a3.bitwarden.com -carLicense: 8I5WFP -departmentNumber: 4601 -employeeType: Normal -homePhone: +1 818 773-4319 -initials: T. T. -mobile: +1 818 685-2554 -pager: +1 818 705-7303 -roomNumber: 9177 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Devinne Zanga,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devinne Zanga -sn: Zanga -description: This is Devinne Zanga's description -facsimileTelephoneNumber: +1 408 434-8281 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 411-5850 -title: Chief Peons Dictator -userPassword: Password1 -uid: ZangaD -givenName: Devinne -mail: ZangaD@5df54d8944e947f396093baae162579f.bitwarden.com -carLicense: EQTICY -departmentNumber: 7922 -employeeType: Contract -homePhone: +1 408 356-8412 -initials: D. Z. -mobile: +1 408 415-8798 -pager: +1 408 669-2142 -roomNumber: 8067 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Letti Boocock,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Letti Boocock -sn: Boocock -description: This is Letti Boocock's description -facsimileTelephoneNumber: +1 510 799-5285 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 726-2643 -title: Chief Human Resources Writer -userPassword: Password1 -uid: BoocockL -givenName: Letti -mail: BoocockL@97a601b7bf924aea9927e9bb24e9dce4.bitwarden.com -carLicense: 7PJNT7 -departmentNumber: 9335 -employeeType: Contract -homePhone: +1 510 202-6617 -initials: L. B. -mobile: +1 510 998-5759 -pager: +1 510 174-4575 -roomNumber: 9848 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Charin Fallah,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charin Fallah -sn: Fallah -description: This is Charin Fallah's description -facsimileTelephoneNumber: +1 818 860-4428 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 545-2342 -title: Chief Human Resources Engineer -userPassword: Password1 -uid: FallahC -givenName: Charin -mail: FallahC@37503b661def462c8ca2c73740caf74d.bitwarden.com -carLicense: PEGTVG -departmentNumber: 3304 -employeeType: Employee -homePhone: +1 818 404-8573 -initials: C. F. -mobile: +1 818 838-8756 -pager: +1 818 809-2483 -roomNumber: 9145 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Clea Astorino,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clea Astorino -sn: Astorino -description: This is Clea Astorino's description -facsimileTelephoneNumber: +1 510 655-1471 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 510 733-7367 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: AstorinC -givenName: Clea -mail: AstorinC@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com -carLicense: 5V4YMM -departmentNumber: 5856 -employeeType: Contract -homePhone: +1 510 478-1686 -initials: C. A. -mobile: +1 510 383-2139 -pager: +1 510 863-7435 -roomNumber: 9451 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cassandry Hilton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassandry Hilton -sn: Hilton -description: This is Cassandry Hilton's description -facsimileTelephoneNumber: +1 804 334-9070 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 380-7591 -title: Supreme Peons Manager -userPassword: Password1 -uid: HiltonC -givenName: Cassandry -mail: HiltonC@96f772c600724b25bd473286135ce70b.bitwarden.com -carLicense: WS77M5 -departmentNumber: 9638 -employeeType: Employee -homePhone: +1 804 603-9932 -initials: C. H. -mobile: +1 804 928-6626 -pager: +1 804 892-8405 -roomNumber: 9080 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sohayla Sugarbroad -sn: Sugarbroad -description: This is Sohayla Sugarbroad's description -facsimileTelephoneNumber: +1 818 723-3126 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 220-4678 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: SugarbrS -givenName: Sohayla -mail: SugarbrS@9426a2bdce5b455d93581bbbd4e466d1.bitwarden.com -carLicense: Q1I1KI -departmentNumber: 9321 -employeeType: Contract -homePhone: +1 818 443-1540 -initials: S. S. -mobile: +1 818 762-6724 -pager: +1 818 149-7300 -roomNumber: 9494 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karlene Homan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlene Homan -sn: Homan -description: This is Karlene Homan's description -facsimileTelephoneNumber: +1 408 199-9372 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 764-8358 -title: Master Management Director -userPassword: Password1 -uid: HomanK -givenName: Karlene -mail: HomanK@7c64049fb61442b49d970b3e88ea4fff.bitwarden.com -carLicense: YFCE43 -departmentNumber: 9476 -employeeType: Contract -homePhone: +1 408 814-6456 -initials: K. H. -mobile: +1 408 503-4007 -pager: +1 408 286-3955 -roomNumber: 9801 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anjanette McCaffity,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anjanette McCaffity -sn: McCaffity -description: This is Anjanette McCaffity's description -facsimileTelephoneNumber: +1 415 741-6299 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 937-5255 -title: Master Management Writer -userPassword: Password1 -uid: McCaffiA -givenName: Anjanette -mail: McCaffiA@e682211d32bb40e7ace0a806e7eb8802.bitwarden.com -carLicense: Q00EOJ -departmentNumber: 4407 -employeeType: Contract -homePhone: +1 415 230-1076 -initials: A. M. -mobile: +1 415 958-3052 -pager: +1 415 275-2469 -roomNumber: 9707 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peach Heinrichs -sn: Heinrichs -description: This is Peach Heinrichs's description -facsimileTelephoneNumber: +1 818 341-8350 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 837-6774 -title: Junior Product Testing Czar -userPassword: Password1 -uid: HeinricP -givenName: Peach -mail: HeinricP@b5697730a3f645a8a3b7775071bff9d2.bitwarden.com -carLicense: Q6LKII -departmentNumber: 6531 -employeeType: Employee -homePhone: +1 818 670-1834 -initials: P. H. -mobile: +1 818 495-7330 -pager: +1 818 170-4191 -roomNumber: 9676 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Micky Brodowski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micky Brodowski -sn: Brodowski -description: This is Micky Brodowski's description -facsimileTelephoneNumber: +1 408 446-3447 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 724-6168 -title: Associate Payroll Assistant -userPassword: Password1 -uid: BrodowsM -givenName: Micky -mail: BrodowsM@b5f56e1924634c2689d55900ad6e24f1.bitwarden.com -carLicense: K6N79P -departmentNumber: 4500 -employeeType: Employee -homePhone: +1 408 213-3903 -initials: M. B. -mobile: +1 408 498-7297 -pager: +1 408 644-4510 -roomNumber: 8134 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Neetu Miles,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neetu Miles -sn: Miles -description: This is Neetu Miles's description -facsimileTelephoneNumber: +1 213 488-8564 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 612-9348 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: MilesN -givenName: Neetu -mail: MilesN@9a5bdc9a34e041db8cf5f51cd958707f.bitwarden.com -carLicense: FMV8IQ -departmentNumber: 9026 -employeeType: Employee -homePhone: +1 213 168-7611 -initials: N. M. -mobile: +1 213 932-5772 -pager: +1 213 610-6994 -roomNumber: 9886 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rhodia Irick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhodia Irick -sn: Irick -description: This is Rhodia Irick's description -facsimileTelephoneNumber: +1 804 824-7423 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 165-2072 -title: Master Product Testing Warrior -userPassword: Password1 -uid: IrickR -givenName: Rhodia -mail: IrickR@b6e5aee724a54904bb06d1cd94c0be8e.bitwarden.com -carLicense: XMYUI2 -departmentNumber: 6636 -employeeType: Employee -homePhone: +1 804 588-3427 -initials: R. I. -mobile: +1 804 850-6336 -pager: +1 804 854-4210 -roomNumber: 8356 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Phat Mecteau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phat Mecteau -sn: Mecteau -description: This is Phat Mecteau's description -facsimileTelephoneNumber: +1 510 878-3715 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 510 960-1222 -title: Master Peons Dictator -userPassword: Password1 -uid: MecteauP -givenName: Phat -mail: MecteauP@9ecc403b039d43679eefc1da35dbd584.bitwarden.com -carLicense: PSMR8G -departmentNumber: 2590 -employeeType: Employee -homePhone: +1 510 406-1960 -initials: P. M. -mobile: +1 510 105-9788 -pager: +1 510 700-6428 -roomNumber: 8616 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tzung Winfield,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tzung Winfield -sn: Winfield -description: This is Tzung Winfield's description -facsimileTelephoneNumber: +1 818 990-8983 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 543-2889 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: WinfielT -givenName: Tzung -mail: WinfielT@a762ad5f7ab94a82ae700785cde02626.bitwarden.com -carLicense: RSMY1O -departmentNumber: 2649 -employeeType: Employee -homePhone: +1 818 261-4837 -initials: T. W. -mobile: +1 818 566-3024 -pager: +1 818 790-4821 -roomNumber: 9081 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Amandie Britman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amandie Britman -sn: Britman -description: This is Amandie Britman's description -facsimileTelephoneNumber: +1 510 949-8191 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 344-7142 -title: Supreme Payroll Warrior -userPassword: Password1 -uid: BritmanA -givenName: Amandie -mail: BritmanA@23128e7ff9d145ae80543eb5e7da5669.bitwarden.com -carLicense: KE9XTK -departmentNumber: 3754 -employeeType: Contract -homePhone: +1 510 339-9619 -initials: A. B. -mobile: +1 510 784-9271 -pager: +1 510 287-5892 -roomNumber: 8428 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamillah Lannan -sn: Lannan -description: This is Kamillah Lannan's description -facsimileTelephoneNumber: +1 213 315-2324 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 359-2076 -title: Chief Human Resources Janitor -userPassword: Password1 -uid: LannanK -givenName: Kamillah -mail: LannanK@dc0c8137c1f0444baf57655cd3888c75.bitwarden.com -carLicense: BXMYM7 -departmentNumber: 5692 -employeeType: Employee -homePhone: +1 213 893-3371 -initials: K. L. -mobile: +1 213 850-5899 -pager: +1 213 976-4785 -roomNumber: 8853 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaquelyn Mowbray -sn: Mowbray -description: This is Jaquelyn Mowbray's description -facsimileTelephoneNumber: +1 510 426-5125 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 721-8388 -title: Associate Product Development Czar -userPassword: Password1 -uid: MowbrayJ -givenName: Jaquelyn -mail: MowbrayJ@b60aa937d01647ea80a3225aa7e4cdc5.bitwarden.com -carLicense: 9K04VL -departmentNumber: 2170 -employeeType: Employee -homePhone: +1 510 897-5493 -initials: J. M. -mobile: +1 510 103-4318 -pager: +1 510 866-5163 -roomNumber: 9499 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeannie Moshiri -sn: Moshiri -description: This is Jeannie Moshiri's description -facsimileTelephoneNumber: +1 510 609-5860 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 174-4374 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: MoshiriJ -givenName: Jeannie -mail: MoshiriJ@964166b8cdd041c68aaae270afb90271.bitwarden.com -carLicense: NQOE0M -departmentNumber: 9272 -employeeType: Contract -homePhone: +1 510 519-5793 -initials: J. M. -mobile: +1 510 746-7526 -pager: +1 510 260-2081 -roomNumber: 9574 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Brittani Guitard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brittani Guitard -sn: Guitard -description: This is Brittani Guitard's description -facsimileTelephoneNumber: +1 213 638-4062 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 937-6742 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: GuitardB -givenName: Brittani -mail: GuitardB@ecc994146f8e4e3b8a176bee8df24c8d.bitwarden.com -carLicense: GSBGPU -departmentNumber: 2992 -employeeType: Contract -homePhone: +1 213 412-2519 -initials: B. G. -mobile: +1 213 666-1474 -pager: +1 213 841-5268 -roomNumber: 8940 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hubert Majors,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hubert Majors -sn: Majors -description: This is Hubert Majors's description -facsimileTelephoneNumber: +1 408 245-9150 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 956-4290 -title: Supreme Payroll Developer -userPassword: Password1 -uid: MajorsH -givenName: Hubert -mail: MajorsH@52db00da846a4ecd950665d8955a7231.bitwarden.com -carLicense: EJRR4V -departmentNumber: 8808 -employeeType: Normal -homePhone: +1 408 584-8730 -initials: H. M. -mobile: +1 408 287-2655 -pager: +1 408 203-3758 -roomNumber: 8354 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=KinYee Amini,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KinYee Amini -sn: Amini -description: This is KinYee Amini's description -facsimileTelephoneNumber: +1 510 784-5641 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 718-2449 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: AminiK -givenName: KinYee -mail: AminiK@ea0898ff0877402d9c2e36c10881d242.bitwarden.com -carLicense: JG67JF -departmentNumber: 3804 -employeeType: Employee -homePhone: +1 510 294-8952 -initials: K. A. -mobile: +1 510 294-6426 -pager: +1 510 719-8757 -roomNumber: 9744 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Riva Malott,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Riva Malott -sn: Malott -description: This is Riva Malott's description -facsimileTelephoneNumber: +1 206 951-2656 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 385-8047 -title: Supreme Janitorial Sales Rep -userPassword: Password1 -uid: MalottR -givenName: Riva -mail: MalottR@0740d70384e04d4883e40f4df47caeab.bitwarden.com -carLicense: JB52FG -departmentNumber: 6539 -employeeType: Normal -homePhone: +1 206 648-7260 -initials: R. M. -mobile: +1 206 689-5439 -pager: +1 206 194-7424 -roomNumber: 9581 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gizela Fenez,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gizela Fenez -sn: Fenez -description: This is Gizela Fenez's description -facsimileTelephoneNumber: +1 804 874-5247 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 804 709-3912 -title: Junior Peons Manager -userPassword: Password1 -uid: FenezG -givenName: Gizela -mail: FenezG@85a71b552bfd49e9ae6851cb672bc85b.bitwarden.com -carLicense: EGPER6 -departmentNumber: 4918 -employeeType: Contract -homePhone: +1 804 605-8812 -initials: G. F. -mobile: +1 804 905-1966 -pager: +1 804 442-1359 -roomNumber: 9774 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Thompson Santos,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thompson Santos -sn: Santos -description: This is Thompson Santos's description -facsimileTelephoneNumber: +1 408 233-1512 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 858-8721 -title: Master Payroll Writer -userPassword: Password1 -uid: SantosT -givenName: Thompson -mail: SantosT@1a25c5eecf2b4862871ccde04c2d3ffb.bitwarden.com -carLicense: 2EKAGW -departmentNumber: 2601 -employeeType: Contract -homePhone: +1 408 660-9310 -initials: T. S. -mobile: +1 408 432-4255 -pager: +1 408 308-3388 -roomNumber: 8469 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Student Anker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Student Anker -sn: Anker -description: This is Student Anker's description -facsimileTelephoneNumber: +1 510 654-7168 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 149-1677 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: AnkerS -givenName: Student -mail: AnkerS@802b05236c97484db9a6d34278cbb7c2.bitwarden.com -carLicense: 2WIBUJ -departmentNumber: 8534 -employeeType: Normal -homePhone: +1 510 531-9699 -initials: S. A. -mobile: +1 510 845-9738 -pager: +1 510 653-3189 -roomNumber: 9904 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carlita Flores,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlita Flores -sn: Flores -description: This is Carlita Flores's description -facsimileTelephoneNumber: +1 408 852-6783 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 875-7758 -title: Associate Human Resources Director -userPassword: Password1 -uid: FloresC -givenName: Carlita -mail: FloresC@dabb673b74534388bb1466a7f0fed6b0.bitwarden.com -carLicense: L6SNGK -departmentNumber: 1819 -employeeType: Normal -homePhone: +1 408 149-2343 -initials: C. F. -mobile: +1 408 136-7706 -pager: +1 408 686-7887 -roomNumber: 9843 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Domenick Thomey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Domenick Thomey -sn: Thomey -description: This is Domenick Thomey's description -facsimileTelephoneNumber: +1 206 867-9772 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 633-3771 -title: Chief Product Testing Engineer -userPassword: Password1 -uid: ThomeyD -givenName: Domenick -mail: ThomeyD@0d2070a7704249ccae81fc4b91659074.bitwarden.com -carLicense: IQUY0W -departmentNumber: 6078 -employeeType: Contract -homePhone: +1 206 322-9469 -initials: D. T. -mobile: +1 206 940-3285 -pager: +1 206 111-1557 -roomNumber: 9002 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pegeen Beckham -sn: Beckham -description: This is Pegeen Beckham's description -facsimileTelephoneNumber: +1 213 396-4037 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 988-3648 -title: Master Human Resources Czar -userPassword: Password1 -uid: BeckhamP -givenName: Pegeen -mail: BeckhamP@2d00b4c5d94943aaab567276a570648e.bitwarden.com -carLicense: JJ5TCR -departmentNumber: 1549 -employeeType: Normal -homePhone: +1 213 786-7183 -initials: P. B. -mobile: +1 213 611-1528 -pager: +1 213 801-1075 -roomNumber: 9899 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lanie Wayler,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lanie Wayler -sn: Wayler -description: This is Lanie Wayler's description -facsimileTelephoneNumber: +1 213 650-7693 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 311-5891 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: WaylerL -givenName: Lanie -mail: WaylerL@5abf2b8f947a433ea32c981885ccae42.bitwarden.com -carLicense: MPMT4P -departmentNumber: 7289 -employeeType: Employee -homePhone: +1 213 747-8054 -initials: L. W. -mobile: +1 213 850-3586 -pager: +1 213 220-1862 -roomNumber: 8694 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roxi Leonida,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxi Leonida -sn: Leonida -description: This is Roxi Leonida's description -facsimileTelephoneNumber: +1 213 138-1393 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 635-7441 -title: Master Administrative Technician -userPassword: Password1 -uid: LeonidaR -givenName: Roxi -mail: LeonidaR@a7c911c3534b41fcbf3c7f9346df687d.bitwarden.com -carLicense: 1V2G8A -departmentNumber: 1633 -employeeType: Normal -homePhone: +1 213 257-5390 -initials: R. L. -mobile: +1 213 770-2937 -pager: +1 213 662-6465 -roomNumber: 9449 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Isin Paczynski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isin Paczynski -sn: Paczynski -description: This is Isin Paczynski's description -facsimileTelephoneNumber: +1 804 205-9137 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 842-3112 -title: Chief Product Development Manager -userPassword: Password1 -uid: PaczynsI -givenName: Isin -mail: PaczynsI@7cff87d9428241d385e3a8b08cc7cf02.bitwarden.com -carLicense: GGJKE9 -departmentNumber: 2022 -employeeType: Contract -homePhone: +1 804 801-3153 -initials: I. P. -mobile: +1 804 235-5363 -pager: +1 804 392-6601 -roomNumber: 9979 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Condell MacPhail,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Condell MacPhail -sn: MacPhail -description: This is Condell MacPhail's description -facsimileTelephoneNumber: +1 415 717-4024 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 476-5514 -title: Junior Administrative Fellow -userPassword: Password1 -uid: MacPhaiC -givenName: Condell -mail: MacPhaiC@1bed3f33f95f46ba84060b615fc669ef.bitwarden.com -carLicense: G0OIJI -departmentNumber: 1916 -employeeType: Employee -homePhone: +1 415 882-8856 -initials: C. M. -mobile: +1 415 493-7910 -pager: +1 415 578-4503 -roomNumber: 8750 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Swd Braganza,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Swd Braganza -sn: Braganza -description: This is Swd Braganza's description -facsimileTelephoneNumber: +1 206 697-7672 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 747-7460 -title: Junior Management President -userPassword: Password1 -uid: BraganzS -givenName: Swd -mail: BraganzS@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com -carLicense: FFXMLU -departmentNumber: 7107 -employeeType: Contract -homePhone: +1 206 441-1377 -initials: S. B. -mobile: +1 206 503-8885 -pager: +1 206 693-2762 -roomNumber: 9516 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Herbie Bilton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herbie Bilton -sn: Bilton -description: This is Herbie Bilton's description -facsimileTelephoneNumber: +1 510 731-6894 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 590-3338 -title: Associate Payroll President -userPassword: Password1 -uid: BiltonH -givenName: Herbie -mail: BiltonH@30f521987a9e4cbfb386d3a1369f2935.bitwarden.com -carLicense: 8B1VVJ -departmentNumber: 3234 -employeeType: Normal -homePhone: +1 510 304-1050 -initials: H. B. -mobile: +1 510 413-2856 -pager: +1 510 924-3660 -roomNumber: 8281 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tas Hagerty,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tas Hagerty -sn: Hagerty -description: This is Tas Hagerty's description -facsimileTelephoneNumber: +1 804 822-8156 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 131-6857 -title: Junior Janitorial Janitor -userPassword: Password1 -uid: HagertyT -givenName: Tas -mail: HagertyT@eb6e0362b9c044ceb04b07f121efebbf.bitwarden.com -carLicense: 0QEYM0 -departmentNumber: 5817 -employeeType: Normal -homePhone: +1 804 760-8871 -initials: T. H. -mobile: +1 804 149-7624 -pager: +1 804 853-9373 -roomNumber: 9375 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cristin Pambianchi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristin Pambianchi -sn: Pambianchi -description: This is Cristin Pambianchi's description -facsimileTelephoneNumber: +1 510 635-3763 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 894-6521 -title: Master Management Consultant -userPassword: Password1 -uid: PambianC -givenName: Cristin -mail: PambianC@18060edcc6234a8b8fe795c650ecf126.bitwarden.com -carLicense: 1KEV2F -departmentNumber: 5824 -employeeType: Contract -homePhone: +1 510 662-8736 -initials: C. P. -mobile: +1 510 533-4263 -pager: +1 510 941-9698 -roomNumber: 9603 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Deann Lutz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deann Lutz -sn: Lutz -description: This is Deann Lutz's description -facsimileTelephoneNumber: +1 415 951-1459 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 415 818-6681 -title: Chief Product Development President -userPassword: Password1 -uid: LutzD -givenName: Deann -mail: LutzD@3201bacf5bb24ae3afcce52434ad7af4.bitwarden.com -carLicense: DI5C48 -departmentNumber: 3903 -employeeType: Normal -homePhone: +1 415 721-9727 -initials: D. L. -mobile: +1 415 695-1541 -pager: +1 415 669-6022 -roomNumber: 8049 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Datha Apter,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Datha Apter -sn: Apter -description: This is Datha Apter's description -facsimileTelephoneNumber: +1 213 394-2201 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 574-8350 -title: Master Payroll Punk -userPassword: Password1 -uid: ApterD -givenName: Datha -mail: ApterD@ea68ff21788e47d08d129553b31a56f2.bitwarden.com -carLicense: CKTGYT -departmentNumber: 2722 -employeeType: Employee -homePhone: +1 213 572-3957 -initials: D. A. -mobile: +1 213 553-3213 -pager: +1 213 779-2218 -roomNumber: 9485 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aretha Kursell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aretha Kursell -sn: Kursell -description: This is Aretha Kursell's description -facsimileTelephoneNumber: +1 510 661-3847 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 740-8956 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: KursellA -givenName: Aretha -mail: KursellA@17061e8235904e0b93980e91f7a69e37.bitwarden.com -carLicense: 3983BM -departmentNumber: 1739 -employeeType: Contract -homePhone: +1 510 403-8511 -initials: A. K. -mobile: +1 510 376-8574 -pager: +1 510 153-2345 -roomNumber: 8502 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Attilio Aldhizer -sn: Aldhizer -description: This is Attilio Aldhizer's description -facsimileTelephoneNumber: +1 408 118-2093 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 385-6292 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: AldhizeA -givenName: Attilio -mail: AldhizeA@5527d8c433094cecbedb01f554d34d26.bitwarden.com -carLicense: 0VQAHA -departmentNumber: 3131 -employeeType: Employee -homePhone: +1 408 434-5182 -initials: A. A. -mobile: +1 408 258-6415 -pager: +1 408 622-9394 -roomNumber: 9106 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alverta Guilbault -sn: Guilbault -description: This is Alverta Guilbault's description -facsimileTelephoneNumber: +1 206 764-7312 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 267-4477 -title: Supreme Human Resources Director -userPassword: Password1 -uid: GuilbauA -givenName: Alverta -mail: GuilbauA@96b2a23653bd4867b5a7bf172ebf238c.bitwarden.com -carLicense: 5XGBNX -departmentNumber: 5147 -employeeType: Employee -homePhone: +1 206 330-4292 -initials: A. G. -mobile: +1 206 302-1718 -pager: +1 206 845-4664 -roomNumber: 8155 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Norry Trpisovsky,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norry Trpisovsky -sn: Trpisovsky -description: This is Norry Trpisovsky's description -facsimileTelephoneNumber: +1 206 769-4817 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 499-9185 -title: Supreme Peons Director -userPassword: Password1 -uid: TrpisovN -givenName: Norry -mail: TrpisovN@44154c0b8f05440cb2dfceffbfdfaf5f.bitwarden.com -carLicense: PJQU8L -departmentNumber: 6621 -employeeType: Employee -homePhone: +1 206 531-7660 -initials: N. T. -mobile: +1 206 229-7682 -pager: +1 206 230-2055 -roomNumber: 8246 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ladell Doig,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ladell Doig -sn: Doig -description: This is Ladell Doig's description -facsimileTelephoneNumber: +1 408 277-3647 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 112-3015 -title: Associate Payroll Writer -userPassword: Password1 -uid: DoigL -givenName: Ladell -mail: DoigL@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com -carLicense: LG91Y3 -departmentNumber: 8562 -employeeType: Contract -homePhone: +1 408 544-4087 -initials: L. D. -mobile: +1 408 514-9224 -pager: +1 408 451-6174 -roomNumber: 9986 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mer Hasan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mer Hasan -sn: Hasan -description: This is Mer Hasan's description -facsimileTelephoneNumber: +1 213 262-4133 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 849-3424 -title: Junior Peons Admin -userPassword: Password1 -uid: HasanM -givenName: Mer -mail: HasanM@8e939e1720cd4eec84cf0ef4b954cc46.bitwarden.com -carLicense: 3W16XN -departmentNumber: 1691 -employeeType: Employee -homePhone: +1 213 722-7808 -initials: M. H. -mobile: +1 213 574-1354 -pager: +1 213 540-4257 -roomNumber: 9421 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Therine Solman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Therine Solman -sn: Solman -description: This is Therine Solman's description -facsimileTelephoneNumber: +1 818 264-5515 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 818 945-1953 -title: Supreme Peons Vice President -userPassword: Password1 -uid: SolmanT -givenName: Therine -mail: SolmanT@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com -carLicense: EFLB6K -departmentNumber: 9411 -employeeType: Normal -homePhone: +1 818 210-6427 -initials: T. S. -mobile: +1 818 839-7035 -pager: +1 818 970-8962 -roomNumber: 9882 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Garnet Gooch,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Garnet Gooch -sn: Gooch -description: This is Garnet Gooch's description -facsimileTelephoneNumber: +1 213 249-4238 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 213 580-3702 -title: Junior Administrative Artist -userPassword: Password1 -uid: GoochG -givenName: Garnet -mail: GoochG@c9b01dac43c94e75a452c54efb5c8e21.bitwarden.com -carLicense: Y2986U -departmentNumber: 6682 -employeeType: Normal -homePhone: +1 213 986-6306 -initials: G. G. -mobile: +1 213 370-6288 -pager: +1 213 413-3496 -roomNumber: 9554 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Colli Magee,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colli Magee -sn: Magee -description: This is Colli Magee's description -facsimileTelephoneNumber: +1 206 839-8260 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 532-6262 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: MageeC -givenName: Colli -mail: MageeC@f8c2812065094b4daf335260acd27140.bitwarden.com -carLicense: JQ5B3W -departmentNumber: 3169 -employeeType: Contract -homePhone: +1 206 829-8365 -initials: C. M. -mobile: +1 206 786-5696 -pager: +1 206 842-1083 -roomNumber: 8595 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sammy Topol,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sammy Topol -sn: Topol -description: This is Sammy Topol's description -facsimileTelephoneNumber: +1 415 390-4604 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 989-9558 -title: Chief Management Mascot -userPassword: Password1 -uid: TopolS -givenName: Sammy -mail: TopolS@cd3d382133434cf09ea0a78c7fbb0555.bitwarden.com -carLicense: M8RP63 -departmentNumber: 3587 -employeeType: Contract -homePhone: +1 415 192-6636 -initials: S. T. -mobile: +1 415 247-5332 -pager: +1 415 195-6264 -roomNumber: 8664 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chelsae Cacha,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsae Cacha -sn: Cacha -description: This is Chelsae Cacha's description -facsimileTelephoneNumber: +1 510 150-5854 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 366-6906 -title: Master Management Stooge -userPassword: Password1 -uid: CachaC -givenName: Chelsae -mail: CachaC@8013079ee9144b479560c9bcb06bab11.bitwarden.com -carLicense: 5US1JP -departmentNumber: 6571 -employeeType: Contract -homePhone: +1 510 994-9950 -initials: C. C. -mobile: +1 510 623-2391 -pager: +1 510 970-9483 -roomNumber: 9506 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Albertine DeSimone -sn: DeSimone -description: This is Albertine DeSimone's description -facsimileTelephoneNumber: +1 206 404-4553 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 798-2430 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: DeSimonA -givenName: Albertine -mail: DeSimonA@4cccac2b65cb4d559e1c7c657101129e.bitwarden.com -carLicense: M09O3C -departmentNumber: 8599 -employeeType: Employee -homePhone: +1 206 322-4729 -initials: A. D. -mobile: +1 206 412-6016 -pager: +1 206 233-8730 -roomNumber: 9517 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Melvin Stanton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melvin Stanton -sn: Stanton -description: This is Melvin Stanton's description -facsimileTelephoneNumber: +1 206 682-5200 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 280-9009 -title: Junior Product Development Visionary -userPassword: Password1 -uid: StantonM -givenName: Melvin -mail: StantonM@776517ed1aad4bc8864e3bcd6b8432b4.bitwarden.com -carLicense: 0O43M1 -departmentNumber: 3301 -employeeType: Contract -homePhone: +1 206 288-6038 -initials: M. S. -mobile: +1 206 577-8583 -pager: +1 206 636-1427 -roomNumber: 8341 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karolien Skrebels -sn: Skrebels -description: This is Karolien Skrebels's description -facsimileTelephoneNumber: +1 213 723-5669 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 256-4513 -title: Junior Janitorial President -userPassword: Password1 -uid: SkrebelK -givenName: Karolien -mail: SkrebelK@8c92d3eeaf56468bbc92aef74edba2cf.bitwarden.com -carLicense: 738P83 -departmentNumber: 2518 -employeeType: Employee -homePhone: +1 213 837-8778 -initials: K. S. -mobile: +1 213 663-1323 -pager: +1 213 109-7527 -roomNumber: 9488 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Annabella Fisher,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annabella Fisher -sn: Fisher -description: This is Annabella Fisher's description -facsimileTelephoneNumber: +1 408 402-9007 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 521-6033 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: FisherA -givenName: Annabella -mail: FisherA@2226746e47f246e6bac38a341375363b.bitwarden.com -carLicense: LAFJA5 -departmentNumber: 6579 -employeeType: Normal -homePhone: +1 408 682-8679 -initials: A. F. -mobile: +1 408 993-4585 -pager: +1 408 614-4289 -roomNumber: 9896 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pelly Difilippo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pelly Difilippo -sn: Difilippo -description: This is Pelly Difilippo's description -facsimileTelephoneNumber: +1 206 617-5050 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 892-2570 -title: Associate Administrative Mascot -userPassword: Password1 -uid: DifilipP -givenName: Pelly -mail: DifilipP@96ba8081521e4fe79c79c0f0b9ef5643.bitwarden.com -carLicense: UJUCGI -departmentNumber: 3037 -employeeType: Employee -homePhone: +1 206 155-1819 -initials: P. D. -mobile: +1 206 438-3173 -pager: +1 206 893-9786 -roomNumber: 9596 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Virginia Clites,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Virginia Clites -sn: Clites -description: This is Virginia Clites's description -facsimileTelephoneNumber: +1 804 283-5645 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 939-9806 -title: Associate Product Development Madonna -userPassword: Password1 -uid: ClitesV -givenName: Virginia -mail: ClitesV@2eb6d97dc4644dd39ac68997e9422017.bitwarden.com -carLicense: 2RRX64 -departmentNumber: 6760 -employeeType: Normal -homePhone: +1 804 306-1409 -initials: V. C. -mobile: +1 804 157-4835 -pager: +1 804 995-7066 -roomNumber: 9992 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lionel Kahil,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lionel Kahil -sn: Kahil -description: This is Lionel Kahil's description -facsimileTelephoneNumber: +1 804 721-4160 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 346-5540 -title: Associate Management Stooge -userPassword: Password1 -uid: KahilL -givenName: Lionel -mail: KahilL@e6ecc40f4d2343039a82728f79fb14d2.bitwarden.com -carLicense: FHQSV7 -departmentNumber: 2273 -employeeType: Normal -homePhone: +1 804 146-7193 -initials: L. K. -mobile: +1 804 682-6511 -pager: +1 804 561-7500 -roomNumber: 9269 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beatrix Weger,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatrix Weger -sn: Weger -description: This is Beatrix Weger's description -facsimileTelephoneNumber: +1 408 873-8354 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 408 476-4737 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: WegerB -givenName: Beatrix -mail: WegerB@ccb0d62f1b7541d69c0eb30915728fc1.bitwarden.com -carLicense: 1QNJ3V -departmentNumber: 2440 -employeeType: Contract -homePhone: +1 408 351-2737 -initials: B. W. -mobile: +1 408 388-5005 -pager: +1 408 263-5116 -roomNumber: 9755 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Roxanne Klimon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxanne Klimon -sn: Klimon -description: This is Roxanne Klimon's description -facsimileTelephoneNumber: +1 415 988-7212 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 195-4908 -title: Master Administrative President -userPassword: Password1 -uid: KlimonR -givenName: Roxanne -mail: KlimonR@518da73225eb4a77959fb191daf72b49.bitwarden.com -carLicense: LB0B09 -departmentNumber: 5290 -employeeType: Contract -homePhone: +1 415 434-1719 -initials: R. K. -mobile: +1 415 118-8799 -pager: +1 415 933-5408 -roomNumber: 8222 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ernestine Campara,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ernestine Campara -sn: Campara -description: This is Ernestine Campara's description -facsimileTelephoneNumber: +1 408 644-9190 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 408 467-1129 -title: Junior Management Artist -userPassword: Password1 -uid: CamparaE -givenName: Ernestine -mail: CamparaE@404f39e9e9f7414486e29f7cf6e81694.bitwarden.com -carLicense: GU67HF -departmentNumber: 1742 -employeeType: Contract -homePhone: +1 408 701-6875 -initials: E. C. -mobile: +1 408 830-1099 -pager: +1 408 461-6860 -roomNumber: 9640 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gaal Jcst,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaal Jcst -sn: Jcst -description: This is Gaal Jcst's description -facsimileTelephoneNumber: +1 213 602-2626 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 685-8581 -title: Associate Janitorial Czar -userPassword: Password1 -uid: JcstG -givenName: Gaal -mail: JcstG@ca74af6c5dcc4f0b974e414c7310f581.bitwarden.com -carLicense: 61I0SV -departmentNumber: 3975 -employeeType: Contract -homePhone: +1 213 814-6982 -initials: G. J. -mobile: +1 213 828-3941 -pager: +1 213 460-9515 -roomNumber: 8150 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nancy Cesario,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nancy Cesario -sn: Cesario -description: This is Nancy Cesario's description -facsimileTelephoneNumber: +1 804 826-8542 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 241-5716 -title: Associate Management Consultant -userPassword: Password1 -uid: CesarioN -givenName: Nancy -mail: CesarioN@0834bcacddfd4229b6702a62e2551569.bitwarden.com -carLicense: MMLWAJ -departmentNumber: 1806 -employeeType: Normal -homePhone: +1 804 479-5218 -initials: N. C. -mobile: +1 804 650-1629 -pager: +1 804 415-9481 -roomNumber: 8070 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rosita Carella,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosita Carella -sn: Carella -description: This is Rosita Carella's description -facsimileTelephoneNumber: +1 818 656-8239 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 124-7124 -title: Chief Peons Warrior -userPassword: Password1 -uid: CarellaR -givenName: Rosita -mail: CarellaR@36e3b9c15a4246d0b9f5619fbb566424.bitwarden.com -carLicense: 2LMLJF -departmentNumber: 6549 -employeeType: Normal -homePhone: +1 818 943-7468 -initials: R. C. -mobile: +1 818 991-9902 -pager: +1 818 496-1438 -roomNumber: 8288 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reiko Gheorghe -sn: Gheorghe -description: This is Reiko Gheorghe's description -facsimileTelephoneNumber: +1 818 439-1040 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 603-3090 -title: Master Janitorial Visionary -userPassword: Password1 -uid: GheorghR -givenName: Reiko -mail: GheorghR@7585d16536b0418b992e73193b27cc42.bitwarden.com -carLicense: 0C9A5Q -departmentNumber: 3843 -employeeType: Contract -homePhone: +1 818 125-9391 -initials: R. G. -mobile: +1 818 675-9573 -pager: +1 818 108-7025 -roomNumber: 9293 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Keven Cordy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keven Cordy -sn: Cordy -description: This is Keven Cordy's description -facsimileTelephoneNumber: +1 213 175-3274 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 781-9278 -title: Master Human Resources Czar -userPassword: Password1 -uid: CordyK -givenName: Keven -mail: CordyK@0af04fcd60da40099a5a068c388bafe2.bitwarden.com -carLicense: SEYH2S -departmentNumber: 7841 -employeeType: Contract -homePhone: +1 213 352-1780 -initials: K. C. -mobile: +1 213 900-9014 -pager: +1 213 457-2682 -roomNumber: 9418 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jordain Cellucci -sn: Cellucci -description: This is Jordain Cellucci's description -facsimileTelephoneNumber: +1 415 662-3561 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 415 836-4804 -title: Chief Product Testing Technician -userPassword: Password1 -uid: CelluccJ -givenName: Jordain -mail: CelluccJ@68cfba969ba74400992bfae87ff5159e.bitwarden.com -carLicense: KQRPLP -departmentNumber: 2948 -employeeType: Contract -homePhone: +1 415 490-7810 -initials: J. C. -mobile: +1 415 157-3733 -pager: +1 415 660-9060 -roomNumber: 8028 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jourdan Azevedo -sn: Azevedo -description: This is Jourdan Azevedo's description -facsimileTelephoneNumber: +1 818 688-4882 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 818 310-2107 -title: Chief Product Development Sales Rep -userPassword: Password1 -uid: AzevedoJ -givenName: Jourdan -mail: AzevedoJ@69b627b90a5c4b27910e77ecc55f7d25.bitwarden.com -carLicense: 55P2IL -departmentNumber: 9785 -employeeType: Employee -homePhone: +1 818 771-5501 -initials: J. A. -mobile: +1 818 509-6305 -pager: +1 818 160-5673 -roomNumber: 9021 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wan Savard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wan Savard -sn: Savard -description: This is Wan Savard's description -facsimileTelephoneNumber: +1 510 945-3557 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 206-6988 -title: Chief Product Testing Artist -userPassword: Password1 -uid: SavardW -givenName: Wan -mail: SavardW@28d2c310a8f14caeb811cfb7bdd890df.bitwarden.com -carLicense: PTD6SD -departmentNumber: 7921 -employeeType: Contract -homePhone: +1 510 680-4506 -initials: W. S. -mobile: +1 510 104-6228 -pager: +1 510 613-5128 -roomNumber: 9849 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Albertine Hulvershorn -sn: Hulvershorn -description: This is Albertine Hulvershorn's description -facsimileTelephoneNumber: +1 408 749-4876 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 812-4870 -title: Master Human Resources Assistant -userPassword: Password1 -uid: HulversA -givenName: Albertine -mail: HulversA@ad005e1f3e2c4d6ba75c2d9c48687591.bitwarden.com -carLicense: YDX0WE -departmentNumber: 4570 -employeeType: Employee -homePhone: +1 408 411-1542 -initials: A. H. -mobile: +1 408 232-5872 -pager: +1 408 741-7289 -roomNumber: 8014 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phaedra OHeocha -sn: OHeocha -description: This is Phaedra OHeocha's description -facsimileTelephoneNumber: +1 804 503-3225 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 758-1433 -title: Master Product Testing Assistant -userPassword: Password1 -uid: OHeochaP -givenName: Phaedra -mail: OHeochaP@4cd03f6d248a456a897d07898cc62094.bitwarden.com -carLicense: NAPXDD -departmentNumber: 7067 -employeeType: Employee -homePhone: +1 804 116-1673 -initials: P. O. -mobile: +1 804 850-7794 -pager: +1 804 572-6477 -roomNumber: 8875 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jen Kamoun,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jen Kamoun -sn: Kamoun -description: This is Jen Kamoun's description -facsimileTelephoneNumber: +1 415 682-8300 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 505-4097 -title: Junior Administrative Pinhead -userPassword: Password1 -uid: KamounJ -givenName: Jen -mail: KamounJ@f7e815f56fc1472f8f953f85688ba7a4.bitwarden.com -carLicense: NIJLWG -departmentNumber: 4763 -employeeType: Contract -homePhone: +1 415 420-4358 -initials: J. K. -mobile: +1 415 662-4804 -pager: +1 415 876-6504 -roomNumber: 8927 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daisi Rabjohn -sn: Rabjohn -description: This is Daisi Rabjohn's description -facsimileTelephoneNumber: +1 206 486-5684 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 586-2640 -title: Master Product Testing Technician -userPassword: Password1 -uid: RabjohnD -givenName: Daisi -mail: RabjohnD@b96d42e36dbf45089ca1b6d523eba92e.bitwarden.com -carLicense: DV797B -departmentNumber: 1638 -employeeType: Contract -homePhone: +1 206 851-5469 -initials: D. R. -mobile: +1 206 507-6643 -pager: +1 206 190-6953 -roomNumber: 9508 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zitella Paylor,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zitella Paylor -sn: Paylor -description: This is Zitella Paylor's description -facsimileTelephoneNumber: +1 415 959-5406 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 310-9677 -title: Master Administrative Manager -userPassword: Password1 -uid: PaylorZ -givenName: Zitella -mail: PaylorZ@04570161b7ed42e28c63e5ce9c0aa4a2.bitwarden.com -carLicense: 6N11AS -departmentNumber: 8608 -employeeType: Contract -homePhone: +1 415 794-1223 -initials: Z. P. -mobile: +1 415 781-6373 -pager: +1 415 696-4367 -roomNumber: 8865 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Logan Blaylock,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Logan Blaylock -sn: Blaylock -description: This is Logan Blaylock's description -facsimileTelephoneNumber: +1 213 958-6933 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 742-1827 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: BlaylocL -givenName: Logan -mail: BlaylocL@2699c3099b704f2ba70219415c473196.bitwarden.com -carLicense: QM57PS -departmentNumber: 7090 -employeeType: Normal -homePhone: +1 213 162-4723 -initials: L. B. -mobile: +1 213 434-3304 -pager: +1 213 653-7585 -roomNumber: 8096 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Merunix Walkley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merunix Walkley -sn: Walkley -description: This is Merunix Walkley's description -facsimileTelephoneNumber: +1 213 105-5972 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 708-9083 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: WalkleyM -givenName: Merunix -mail: WalkleyM@2ddbcfc2fdd94fdaa7f9feba31236675.bitwarden.com -carLicense: O7LDHT -departmentNumber: 2981 -employeeType: Normal -homePhone: +1 213 581-4970 -initials: M. W. -mobile: +1 213 912-4175 -pager: +1 213 775-7933 -roomNumber: 9148 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: DiaEdin Plssup -sn: Plssup -description: This is DiaEdin Plssup's description -facsimileTelephoneNumber: +1 804 656-2412 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 804 391-6665 -title: Supreme Administrative Czar -userPassword: Password1 -uid: PlssupD -givenName: DiaEdin -mail: PlssupD@f5e50d6b794248c497f1edc0acd0a4d1.bitwarden.com -carLicense: 9LMXV8 -departmentNumber: 3110 -employeeType: Contract -homePhone: +1 804 928-3788 -initials: D. P. -mobile: +1 804 381-9303 -pager: +1 804 923-9072 -roomNumber: 8094 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kaja Runkel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaja Runkel -sn: Runkel -description: This is Kaja Runkel's description -facsimileTelephoneNumber: +1 510 169-4479 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 561-1218 -title: Associate Administrative Writer -userPassword: Password1 -uid: RunkelK -givenName: Kaja -mail: RunkelK@2818571517744716a1e0f70eed1d8ffd.bitwarden.com -carLicense: 0NSMMQ -departmentNumber: 3426 -employeeType: Normal -homePhone: +1 510 449-5011 -initials: K. R. -mobile: +1 510 740-1257 -pager: +1 510 288-1671 -roomNumber: 8110 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Leia Samuel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leia Samuel -sn: Samuel -description: This is Leia Samuel's description -facsimileTelephoneNumber: +1 510 343-5589 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 848-5609 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: SamuelL -givenName: Leia -mail: SamuelL@9eff12629cf040fd91abde8fb9ba1a1e.bitwarden.com -carLicense: YND6HO -departmentNumber: 2968 -employeeType: Contract -homePhone: +1 510 644-6749 -initials: L. S. -mobile: +1 510 714-8108 -pager: +1 510 170-4958 -roomNumber: 9529 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Catha Matsunaga,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catha Matsunaga -sn: Matsunaga -description: This is Catha Matsunaga's description -facsimileTelephoneNumber: +1 818 647-4576 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 625-2380 -title: Chief Product Development Architect -userPassword: Password1 -uid: MatsunaC -givenName: Catha -mail: MatsunaC@a0698e6e756a42f28ea2d90c4b303b9e.bitwarden.com -carLicense: 5R1NOQ -departmentNumber: 7850 -employeeType: Normal -homePhone: +1 818 805-1816 -initials: C. M. -mobile: +1 818 550-3325 -pager: +1 818 335-3836 -roomNumber: 9051 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolynn Delorenzi -sn: Delorenzi -description: This is Jolynn Delorenzi's description -facsimileTelephoneNumber: +1 818 350-3143 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 818 270-8621 -title: Supreme Administrative Figurehead -userPassword: Password1 -uid: DelorenJ -givenName: Jolynn -mail: DelorenJ@6612035362774dc39b65e2c45a86df3a.bitwarden.com -carLicense: AU7VBL -departmentNumber: 6058 -employeeType: Contract -homePhone: +1 818 333-1040 -initials: J. D. -mobile: +1 818 325-7741 -pager: +1 818 912-7087 -roomNumber: 9377 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Luc Harless,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luc Harless -sn: Harless -description: This is Luc Harless's description -facsimileTelephoneNumber: +1 818 157-3723 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 635-4817 -title: Supreme Human Resources Czar -userPassword: Password1 -uid: HarlessL -givenName: Luc -mail: HarlessL@a3cc15e6ac3a471cb783c4563846998f.bitwarden.com -carLicense: 93SLF0 -departmentNumber: 4921 -employeeType: Employee -homePhone: +1 818 585-9539 -initials: L. H. -mobile: +1 818 871-7270 -pager: +1 818 719-8758 -roomNumber: 8267 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Katja Firtos,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katja Firtos -sn: Firtos -description: This is Katja Firtos's description -facsimileTelephoneNumber: +1 408 525-5081 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 408 231-7431 -title: Master Human Resources Technician -userPassword: Password1 -uid: FirtosK -givenName: Katja -mail: FirtosK@f115ded519524610ab74393c6ce8cdfc.bitwarden.com -carLicense: W5V721 -departmentNumber: 4915 -employeeType: Employee -homePhone: +1 408 776-4928 -initials: K. F. -mobile: +1 408 597-5782 -pager: +1 408 383-5157 -roomNumber: 8154 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vikki Ewasyshyn -sn: Ewasyshyn -description: This is Vikki Ewasyshyn's description -facsimileTelephoneNumber: +1 510 158-6834 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 614-1726 -title: Chief Peons Punk -userPassword: Password1 -uid: EwasyshV -givenName: Vikki -mail: EwasyshV@5e62af5b40314ecea84813300a46dd77.bitwarden.com -carLicense: NKBV07 -departmentNumber: 9705 -employeeType: Employee -homePhone: +1 510 885-9772 -initials: V. E. -mobile: +1 510 178-1868 -pager: +1 510 458-2425 -roomNumber: 9716 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mechelle Khawar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mechelle Khawar -sn: Khawar -description: This is Mechelle Khawar's description -facsimileTelephoneNumber: +1 213 653-8918 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 710-7799 -title: Junior Product Development Figurehead -userPassword: Password1 -uid: KhawarM -givenName: Mechelle -mail: KhawarM@1339c7fc80324a9f9d6a9b7e7dc59ef3.bitwarden.com -carLicense: 9NIMVH -departmentNumber: 6280 -employeeType: Employee -homePhone: +1 213 221-7059 -initials: M. K. -mobile: +1 213 311-4282 -pager: +1 213 362-1166 -roomNumber: 9447 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bawn Gdowik -sn: Gdowik -description: This is Bawn Gdowik's description -facsimileTelephoneNumber: +1 206 121-9989 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 949-9678 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: GdowikB -givenName: Bawn -mail: GdowikB@34211993f6a54dc18f00a71a05d87998.bitwarden.com -carLicense: QQAJGO -departmentNumber: 8933 -employeeType: Normal -homePhone: +1 206 442-3936 -initials: B. G. -mobile: +1 206 444-6114 -pager: +1 206 157-2582 -roomNumber: 9980 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Channa Abernethy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Channa Abernethy -sn: Abernethy -description: This is Channa Abernethy's description -facsimileTelephoneNumber: +1 818 497-7255 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 898-9933 -title: Junior Janitorial Mascot -userPassword: Password1 -uid: AbernetC -givenName: Channa -mail: AbernetC@f397541d0e814623b745c4fbd77b1a79.bitwarden.com -carLicense: 3B8XBF -departmentNumber: 8502 -employeeType: Normal -homePhone: +1 818 654-7250 -initials: C. A. -mobile: +1 818 389-1628 -pager: +1 818 565-6136 -roomNumber: 8631 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Benita Lathrop,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benita Lathrop -sn: Lathrop -description: This is Benita Lathrop's description -facsimileTelephoneNumber: +1 206 270-8053 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 519-7884 -title: Associate Management Technician -userPassword: Password1 -uid: LathropB -givenName: Benita -mail: LathropB@186cf3c7f45744c0827699c22d51d565.bitwarden.com -carLicense: VTLLQF -departmentNumber: 6762 -employeeType: Normal -homePhone: +1 206 230-2111 -initials: B. L. -mobile: +1 206 721-3673 -pager: +1 206 125-3398 -roomNumber: 8196 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zelda Naem,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zelda Naem -sn: Naem -description: This is Zelda Naem's description -facsimileTelephoneNumber: +1 415 269-4589 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 975-7511 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: NaemZ -givenName: Zelda -mail: NaemZ@eb362d3928c448a4b72d63b85283da63.bitwarden.com -carLicense: SULSM6 -departmentNumber: 6622 -employeeType: Normal -homePhone: +1 415 242-4238 -initials: Z. N. -mobile: +1 415 765-3311 -pager: +1 415 133-2357 -roomNumber: 9675 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bettina Kudas,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettina Kudas -sn: Kudas -description: This is Bettina Kudas's description -facsimileTelephoneNumber: +1 415 543-8947 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 991-7278 -title: Chief Management Developer -userPassword: Password1 -uid: KudasB -givenName: Bettina -mail: KudasB@4a562374ace845b8b062489d81f91f68.bitwarden.com -carLicense: R0SV29 -departmentNumber: 1018 -employeeType: Employee -homePhone: +1 415 586-1302 -initials: B. K. -mobile: +1 415 762-1554 -pager: +1 415 245-6571 -roomNumber: 9190 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bettye Stern,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettye Stern -sn: Stern -description: This is Bettye Stern's description -facsimileTelephoneNumber: +1 804 400-3703 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 804 572-3134 -title: Master Payroll Architect -userPassword: Password1 -uid: SternB -givenName: Bettye -mail: SternB@67c2a7396dd34122b1f16e12b22a71ae.bitwarden.com -carLicense: FYJEGB -departmentNumber: 6667 -employeeType: Normal -homePhone: +1 804 857-5940 -initials: B. S. -mobile: +1 804 505-4131 -pager: +1 804 557-3802 -roomNumber: 8336 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lexine Aurelius -sn: Aurelius -description: This is Lexine Aurelius's description -facsimileTelephoneNumber: +1 408 316-4364 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 416-6426 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: AureliuL -givenName: Lexine -mail: AureliuL@532585f196ca4cccb80b4aa643b1dccd.bitwarden.com -carLicense: OW9VJ0 -departmentNumber: 7866 -employeeType: Contract -homePhone: +1 408 609-4965 -initials: L. A. -mobile: +1 408 715-2386 -pager: +1 408 783-9971 -roomNumber: 8645 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Janice Mattes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janice Mattes -sn: Mattes -description: This is Janice Mattes's description -facsimileTelephoneNumber: +1 804 565-3817 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 576-4908 -title: Chief Management Architect -userPassword: Password1 -uid: MattesJ -givenName: Janice -mail: MattesJ@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com -carLicense: 2PUNG7 -departmentNumber: 7796 -employeeType: Normal -homePhone: +1 804 500-4493 -initials: J. M. -mobile: +1 804 121-9647 -pager: +1 804 992-2276 -roomNumber: 8808 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Indiana Cobo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Indiana Cobo -sn: Cobo -description: This is Indiana Cobo's description -facsimileTelephoneNumber: +1 206 210-3248 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 472-4096 -title: Chief Human Resources Technician -userPassword: Password1 -uid: CoboI -givenName: Indiana -mail: CoboI@a951d7743a6642c2b51879514b5ca776.bitwarden.com -carLicense: D1CDIC -departmentNumber: 3801 -employeeType: Employee -homePhone: +1 206 623-4407 -initials: I. C. -mobile: +1 206 361-4610 -pager: +1 206 796-9960 -roomNumber: 9722 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lan Galbraith,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lan Galbraith -sn: Galbraith -description: This is Lan Galbraith's description -facsimileTelephoneNumber: +1 818 444-1730 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 805-3963 -title: Chief Janitorial Visionary -userPassword: Password1 -uid: GalbraiL -givenName: Lan -mail: GalbraiL@9b332776dd7c411abb2f40983aa8e189.bitwarden.com -carLicense: CJD3IV -departmentNumber: 5826 -employeeType: Contract -homePhone: +1 818 370-5273 -initials: L. G. -mobile: +1 818 806-4275 -pager: +1 818 953-2711 -roomNumber: 9478 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Joey Godcharles,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joey Godcharles -sn: Godcharles -description: This is Joey Godcharles's description -facsimileTelephoneNumber: +1 804 187-7949 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 658-3929 -title: Supreme Management Engineer -userPassword: Password1 -uid: GodcharJ -givenName: Joey -mail: GodcharJ@8c25af5fe5974fca953506b7d4eacda2.bitwarden.com -carLicense: 4PSYKS -departmentNumber: 2217 -employeeType: Employee -homePhone: +1 804 501-2141 -initials: J. G. -mobile: +1 804 249-6774 -pager: +1 804 425-8943 -roomNumber: 8438 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anastasia Sunstrum,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anastasia Sunstrum -sn: Sunstrum -description: This is Anastasia Sunstrum's description -facsimileTelephoneNumber: +1 213 424-5427 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 650-9992 -title: Master Management Czar -userPassword: Password1 -uid: SunstruA -givenName: Anastasia -mail: SunstruA@5bf40bf9784b4bb1b69d85ef3b145a7f.bitwarden.com -carLicense: P1DG5L -departmentNumber: 4753 -employeeType: Employee -homePhone: +1 213 379-6133 -initials: A. S. -mobile: +1 213 380-2034 -pager: +1 213 396-1750 -roomNumber: 8414 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dyan Reller,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyan Reller -sn: Reller -description: This is Dyan Reller's description -facsimileTelephoneNumber: +1 804 407-6914 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 242-6031 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: RellerD -givenName: Dyan -mail: RellerD@663a5be72ae949e89d0ecc1766eaf211.bitwarden.com -carLicense: YWRSOJ -departmentNumber: 6116 -employeeType: Employee -homePhone: +1 804 592-9685 -initials: D. R. -mobile: +1 804 957-4795 -pager: +1 804 792-3167 -roomNumber: 8236 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yih DeCecco,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yih DeCecco -sn: DeCecco -description: This is Yih DeCecco's description -facsimileTelephoneNumber: +1 213 579-4620 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 918-3823 -title: Master Janitorial Madonna -userPassword: Password1 -uid: DeCeccoY -givenName: Yih -mail: DeCeccoY@167b62c26a954f76bb6e985cad7eded6.bitwarden.com -carLicense: P64FD0 -departmentNumber: 9550 -employeeType: Normal -homePhone: +1 213 212-2919 -initials: Y. D. -mobile: +1 213 423-1154 -pager: +1 213 524-9478 -roomNumber: 8543 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leese Paul,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leese Paul -sn: Paul -description: This is Leese Paul's description -facsimileTelephoneNumber: +1 510 324-6736 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 178-7507 -title: Chief Payroll Developer -userPassword: Password1 -uid: PaulL -givenName: Leese -mail: PaulL@084896222f8c4b7eae30f7297ef0556c.bitwarden.com -carLicense: 5MYKLD -departmentNumber: 9213 -employeeType: Normal -homePhone: +1 510 809-7161 -initials: L. P. -mobile: +1 510 681-1348 -pager: +1 510 975-5827 -roomNumber: 9001 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nani Dedas,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nani Dedas -sn: Dedas -description: This is Nani Dedas's description -facsimileTelephoneNumber: +1 818 840-2847 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 818 783-4329 -title: Chief Payroll Mascot -userPassword: Password1 -uid: DedasN -givenName: Nani -mail: DedasN@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com -carLicense: TH1AJK -departmentNumber: 9446 -employeeType: Normal -homePhone: +1 818 762-5438 -initials: N. D. -mobile: +1 818 603-2533 -pager: +1 818 264-6667 -roomNumber: 8718 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Survey Lanzkron -sn: Lanzkron -description: This is Survey Lanzkron's description -facsimileTelephoneNumber: +1 206 816-9085 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 389-4422 -title: Chief Janitorial Czar -userPassword: Password1 -uid: LanzkroS -givenName: Survey -mail: LanzkroS@c7313b08ac43436397b7d1757040a613.bitwarden.com -carLicense: ACWBQU -departmentNumber: 7557 -employeeType: Employee -homePhone: +1 206 840-8406 -initials: S. L. -mobile: +1 206 119-5001 -pager: +1 206 580-6506 -roomNumber: 9279 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sari Rettie,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sari Rettie -sn: Rettie -description: This is Sari Rettie's description -facsimileTelephoneNumber: +1 206 530-7366 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 350-6033 -title: Chief Product Testing Director -userPassword: Password1 -uid: RettieS -givenName: Sari -mail: RettieS@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com -carLicense: XU69LM -departmentNumber: 3535 -employeeType: Employee -homePhone: +1 206 105-7649 -initials: S. R. -mobile: +1 206 697-3558 -pager: +1 206 120-3615 -roomNumber: 9138 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Etty Lowther,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Etty Lowther -sn: Lowther -description: This is Etty Lowther's description -facsimileTelephoneNumber: +1 818 714-8688 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 105-2858 -title: Master Product Testing Architect -userPassword: Password1 -uid: LowtherE -givenName: Etty -mail: LowtherE@5c906f42508445a781fade8bd577e2f3.bitwarden.com -carLicense: SL1BWG -departmentNumber: 1087 -employeeType: Normal -homePhone: +1 818 652-8000 -initials: E. L. -mobile: +1 818 745-9797 -pager: +1 818 482-9874 -roomNumber: 8408 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Toss Basa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toss Basa -sn: Basa -description: This is Toss Basa's description -facsimileTelephoneNumber: +1 510 626-2779 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 658-9981 -title: Master Payroll Vice President -userPassword: Password1 -uid: BasaT -givenName: Toss -mail: BasaT@04b4f27ec2ac43be97552612edca5a77.bitwarden.com -carLicense: 8WUXHT -departmentNumber: 3143 -employeeType: Normal -homePhone: +1 510 459-9756 -initials: T. B. -mobile: +1 510 861-8042 -pager: +1 510 281-6335 -roomNumber: 8338 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Naohiko Fradette,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naohiko Fradette -sn: Fradette -description: This is Naohiko Fradette's description -facsimileTelephoneNumber: +1 818 765-9080 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 249-8325 -title: Supreme Administrative Punk -userPassword: Password1 -uid: FradettN -givenName: Naohiko -mail: FradettN@e8492435966a4ed884337f2807856c41.bitwarden.com -carLicense: 78H5ES -departmentNumber: 2341 -employeeType: Employee -homePhone: +1 818 832-2861 -initials: N. F. -mobile: +1 818 723-3603 -pager: +1 818 847-8173 -roomNumber: 9728 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veradis Loadbuild -sn: Loadbuild -description: This is Veradis Loadbuild's description -facsimileTelephoneNumber: +1 415 555-6404 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 415 122-3872 -title: Master Human Resources President -userPassword: Password1 -uid: LoadbuiV -givenName: Veradis -mail: LoadbuiV@2d0e71959712498892398e30a50d5bec.bitwarden.com -carLicense: CO96WJ -departmentNumber: 7903 -employeeType: Contract -homePhone: +1 415 754-2908 -initials: V. L. -mobile: +1 415 525-8923 -pager: +1 415 982-6541 -roomNumber: 8332 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mathew Rodkey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mathew Rodkey -sn: Rodkey -description: This is Mathew Rodkey's description -facsimileTelephoneNumber: +1 408 910-5466 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 130-6217 -title: Supreme Peons Warrior -userPassword: Password1 -uid: RodkeyM -givenName: Mathew -mail: RodkeyM@49f96debcda94fc6baf356990b14b103.bitwarden.com -carLicense: N4BOAG -departmentNumber: 5571 -employeeType: Employee -homePhone: +1 408 744-6175 -initials: M. R. -mobile: +1 408 754-6547 -pager: +1 408 611-2831 -roomNumber: 9060 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sherry Maness,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherry Maness -sn: Maness -description: This is Sherry Maness's description -facsimileTelephoneNumber: +1 213 604-5054 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 860-1077 -title: Supreme Janitorial Visionary -userPassword: Password1 -uid: ManessS -givenName: Sherry -mail: ManessS@e58493f3b9184086b499252afcbae6a2.bitwarden.com -carLicense: UQQE2F -departmentNumber: 7561 -employeeType: Employee -homePhone: +1 213 457-1672 -initials: S. M. -mobile: +1 213 792-7173 -pager: +1 213 635-9297 -roomNumber: 8804 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lowell Barentsen -sn: Barentsen -description: This is Lowell Barentsen's description -facsimileTelephoneNumber: +1 510 551-9658 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 910-2750 -title: Supreme Janitorial Writer -userPassword: Password1 -uid: BarentsL -givenName: Lowell -mail: BarentsL@9ef3979acd57459c854aa3907f13053a.bitwarden.com -carLicense: 6J0K7B -departmentNumber: 7251 -employeeType: Contract -homePhone: +1 510 348-3188 -initials: L. B. -mobile: +1 510 997-1717 -pager: +1 510 767-1077 -roomNumber: 8761 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabbey Constantinides -sn: Constantinides -description: This is Gabbey Constantinides's description -facsimileTelephoneNumber: +1 510 335-6241 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 510 716-4671 -title: Chief Product Testing Developer -userPassword: Password1 -uid: ConstanG -givenName: Gabbey -mail: ConstanG@bcfbfd5ee6b14185b04773704662d3e6.bitwarden.com -carLicense: IY0768 -departmentNumber: 7378 -employeeType: Normal -homePhone: +1 510 351-8420 -initials: G. C. -mobile: +1 510 509-9951 -pager: +1 510 630-5088 -roomNumber: 8962 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Delphinia Brehm,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delphinia Brehm -sn: Brehm -description: This is Delphinia Brehm's description -facsimileTelephoneNumber: +1 206 554-2524 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 277-1367 -title: Master Product Development Fellow -userPassword: Password1 -uid: BrehmD -givenName: Delphinia -mail: BrehmD@d3f27a242bfb4ac3a10d62c1f67cde29.bitwarden.com -carLicense: HDVUUN -departmentNumber: 3008 -employeeType: Normal -homePhone: +1 206 290-7993 -initials: D. B. -mobile: +1 206 844-7239 -pager: +1 206 161-2302 -roomNumber: 8099 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Roselin Payn,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roselin Payn -sn: Payn -description: This is Roselin Payn's description -facsimileTelephoneNumber: +1 415 970-4420 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 857-7428 -title: Chief Human Resources Visionary -userPassword: Password1 -uid: PaynR -givenName: Roselin -mail: PaynR@8b4e205f7cd04cdf9570b14ba9584f1d.bitwarden.com -carLicense: OGJSFL -departmentNumber: 5835 -employeeType: Contract -homePhone: +1 415 922-6095 -initials: R. P. -mobile: +1 415 513-4623 -pager: +1 415 224-2901 -roomNumber: 9535 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arline Fryer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arline Fryer -sn: Fryer -description: This is Arline Fryer's description -facsimileTelephoneNumber: +1 213 254-1717 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 240-1859 -title: Master Management Evangelist -userPassword: Password1 -uid: FryerA -givenName: Arline -mail: FryerA@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com -carLicense: B5LVWQ -departmentNumber: 1431 -employeeType: Normal -homePhone: +1 213 644-6236 -initials: A. F. -mobile: +1 213 241-4186 -pager: +1 213 359-9336 -roomNumber: 9820 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Piper Lesperance,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Piper Lesperance -sn: Lesperance -description: This is Piper Lesperance's description -facsimileTelephoneNumber: +1 206 571-7416 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 370-1492 -title: Junior Peons Madonna -userPassword: Password1 -uid: LesperaP -givenName: Piper -mail: LesperaP@a2ea301b88434726b194e4c9303a1849.bitwarden.com -carLicense: AR5JGR -departmentNumber: 7235 -employeeType: Contract -homePhone: +1 206 913-8956 -initials: P. L. -mobile: +1 206 804-4939 -pager: +1 206 586-7462 -roomNumber: 9077 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mindy Herring,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mindy Herring -sn: Herring -description: This is Mindy Herring's description -facsimileTelephoneNumber: +1 206 103-9646 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 517-3985 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: HerringM -givenName: Mindy -mail: HerringM@75ca8d39c50647a3bea983d4fa29d680.bitwarden.com -carLicense: F30UFL -departmentNumber: 8249 -employeeType: Contract -homePhone: +1 206 753-5540 -initials: M. H. -mobile: +1 206 596-1912 -pager: +1 206 267-8065 -roomNumber: 8628 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chandrakant Rodely -sn: Rodely -description: This is Chandrakant Rodely's description -facsimileTelephoneNumber: +1 818 638-1847 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 249-7474 -title: Chief Janitorial Sales Rep -userPassword: Password1 -uid: RodelyC -givenName: Chandrakant -mail: RodelyC@ca829dfd11e64b2594b0329b3f25132e.bitwarden.com -carLicense: P630XA -departmentNumber: 6214 -employeeType: Normal -homePhone: +1 818 136-9678 -initials: C. R. -mobile: +1 818 734-4215 -pager: +1 818 977-4530 -roomNumber: 8666 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vonnie Bullard,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vonnie Bullard -sn: Bullard -description: This is Vonnie Bullard's description -facsimileTelephoneNumber: +1 408 216-3687 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 232-9965 -title: Junior Peons Visionary -userPassword: Password1 -uid: BullardV -givenName: Vonnie -mail: BullardV@13739ed68fac456bb1c36df8aacf938b.bitwarden.com -carLicense: LJQOUB -departmentNumber: 5840 -employeeType: Contract -homePhone: +1 408 953-5780 -initials: V. B. -mobile: +1 408 961-9395 -pager: +1 408 996-6109 -roomNumber: 9605 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lotti Gutcher,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lotti Gutcher -sn: Gutcher -description: This is Lotti Gutcher's description -facsimileTelephoneNumber: +1 415 907-9701 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 438-9534 -title: Master Product Development Vice President -userPassword: Password1 -uid: GutcherL -givenName: Lotti -mail: GutcherL@f60373f986824ff5b24230896655c1d9.bitwarden.com -carLicense: DO66CT -departmentNumber: 5872 -employeeType: Contract -homePhone: +1 415 537-2458 -initials: L. G. -mobile: +1 415 609-9774 -pager: +1 415 930-9694 -roomNumber: 8181 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sheldon Overton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheldon Overton -sn: Overton -description: This is Sheldon Overton's description -facsimileTelephoneNumber: +1 206 527-1442 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 177-7166 -title: Junior Product Development Czar -userPassword: Password1 -uid: OvertonS -givenName: Sheldon -mail: OvertonS@f46633fbb9a14011a26194c56d6fd793.bitwarden.com -carLicense: LYJ5BK -departmentNumber: 1524 -employeeType: Normal -homePhone: +1 206 515-1467 -initials: S. O. -mobile: +1 206 172-2770 -pager: +1 206 150-9099 -roomNumber: 9259 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Celestine Zargham,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celestine Zargham -sn: Zargham -description: This is Celestine Zargham's description -facsimileTelephoneNumber: +1 408 958-7503 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 408 715-1148 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: ZarghamC -givenName: Celestine -mail: ZarghamC@7e7373daa08d4a3b834f2e415978d199.bitwarden.com -carLicense: O0J87F -departmentNumber: 8690 -employeeType: Employee -homePhone: +1 408 526-4860 -initials: C. Z. -mobile: +1 408 882-1591 -pager: +1 408 246-1590 -roomNumber: 8932 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marv Regier,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marv Regier -sn: Regier -description: This is Marv Regier's description -facsimileTelephoneNumber: +1 804 641-5981 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 619-6141 -title: Master Product Development Manager -userPassword: Password1 -uid: RegierM -givenName: Marv -mail: RegierM@abdd973e03c84ced8f6317d8b973d650.bitwarden.com -carLicense: 5KGSM4 -departmentNumber: 8060 -employeeType: Contract -homePhone: +1 804 495-1154 -initials: M. R. -mobile: +1 804 589-3375 -pager: +1 804 425-6239 -roomNumber: 9012 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Teddi Behler,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teddi Behler -sn: Behler -description: This is Teddi Behler's description -facsimileTelephoneNumber: +1 510 207-5308 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 628-4121 -title: Supreme Administrative Manager -userPassword: Password1 -uid: BehlerT -givenName: Teddi -mail: BehlerT@f2b2c2d7db06460ba37d008fa1436774.bitwarden.com -carLicense: 3MEC6V -departmentNumber: 2131 -employeeType: Employee -homePhone: +1 510 103-8099 -initials: T. B. -mobile: +1 510 878-6756 -pager: +1 510 487-6348 -roomNumber: 8750 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pascale Lawrie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pascale Lawrie -sn: Lawrie -description: This is Pascale Lawrie's description -facsimileTelephoneNumber: +1 415 158-5138 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 542-7309 -title: Supreme Payroll President -userPassword: Password1 -uid: LawrieP -givenName: Pascale -mail: LawrieP@7a73ebe249a24a008fa58af0c16c0578.bitwarden.com -carLicense: C0EAR1 -departmentNumber: 6160 -employeeType: Employee -homePhone: +1 415 104-1431 -initials: P. L. -mobile: +1 415 734-1535 -pager: +1 415 605-4731 -roomNumber: 8933 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barnes Sysadmin -sn: Sysadmin -description: This is Barnes Sysadmin's description -facsimileTelephoneNumber: +1 213 919-5341 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 438-9194 -title: Associate Payroll Director -userPassword: Password1 -uid: SysadmiB -givenName: Barnes -mail: SysadmiB@822da1d370d045aaadf5490626c311f7.bitwarden.com -carLicense: NCRKPT -departmentNumber: 4780 -employeeType: Contract -homePhone: +1 213 480-7992 -initials: B. S. -mobile: +1 213 996-3121 -pager: +1 213 172-1314 -roomNumber: 9387 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Class Focht,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Class Focht -sn: Focht -description: This is Class Focht's description -facsimileTelephoneNumber: +1 408 381-8737 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 314-2961 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: FochtC -givenName: Class -mail: FochtC@cdc522ed20cd44a189467c4e7a11e69b.bitwarden.com -carLicense: 6224PS -departmentNumber: 3647 -employeeType: Employee -homePhone: +1 408 665-3651 -initials: C. F. -mobile: +1 408 376-4382 -pager: +1 408 690-3196 -roomNumber: 9143 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leonida Raha,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonida Raha -sn: Raha -description: This is Leonida Raha's description -facsimileTelephoneNumber: +1 510 264-7892 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 800-3103 -title: Supreme Management Janitor -userPassword: Password1 -uid: RahaL -givenName: Leonida -mail: RahaL@a7dde2ed9345430eab1db4c18ae1be2c.bitwarden.com -carLicense: UL0KM2 -departmentNumber: 8092 -employeeType: Normal -homePhone: +1 510 429-2124 -initials: L. R. -mobile: +1 510 140-8437 -pager: +1 510 255-7658 -roomNumber: 8071 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emylee BaggermanWebster -sn: BaggermanWebster -description: This is Emylee BaggermanWebster's description -facsimileTelephoneNumber: +1 408 519-3791 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 610-7376 -title: Chief Product Testing Punk -userPassword: Password1 -uid: BaggermE -givenName: Emylee -mail: BaggermE@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com -carLicense: XYQRS3 -departmentNumber: 9918 -employeeType: Normal -homePhone: +1 408 340-1791 -initials: E. B. -mobile: +1 408 435-6220 -pager: +1 408 135-3666 -roomNumber: 8979 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ree Goodier,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ree Goodier -sn: Goodier -description: This is Ree Goodier's description -facsimileTelephoneNumber: +1 510 983-6404 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 111-1450 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: GoodierR -givenName: Ree -mail: GoodierR@64b7c8578355450790f3fb63c15436b2.bitwarden.com -carLicense: 5455NX -departmentNumber: 6452 -employeeType: Contract -homePhone: +1 510 394-7255 -initials: R. G. -mobile: +1 510 815-6950 -pager: +1 510 175-1816 -roomNumber: 9666 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wally Hlauschek -sn: Hlauschek -description: This is Wally Hlauschek's description -facsimileTelephoneNumber: +1 206 726-7689 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 737-1424 -title: Chief Product Testing Czar -userPassword: Password1 -uid: HlauschW -givenName: Wally -mail: HlauschW@ab148181beff4ed0bd2db4ce8fd9f720.bitwarden.com -carLicense: CQD0MV -departmentNumber: 9646 -employeeType: Employee -homePhone: +1 206 415-8274 -initials: W. H. -mobile: +1 206 499-7340 -pager: +1 206 249-9067 -roomNumber: 8248 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Raj Mahlig,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raj Mahlig -sn: Mahlig -description: This is Raj Mahlig's description -facsimileTelephoneNumber: +1 804 354-2564 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 469-3851 -title: Supreme Peons Artist -userPassword: Password1 -uid: MahligR -givenName: Raj -mail: MahligR@47682bc47a784ad6a0b0eb19fb2f6567.bitwarden.com -carLicense: YYDKKI -departmentNumber: 8762 -employeeType: Normal -homePhone: +1 804 293-3278 -initials: R. M. -mobile: +1 804 511-5671 -pager: +1 804 370-6101 -roomNumber: 9756 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nobutaka Merinder -sn: Merinder -description: This is Nobutaka Merinder's description -facsimileTelephoneNumber: +1 415 464-1178 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 618-4674 -title: Master Janitorial Technician -userPassword: Password1 -uid: MerindeN -givenName: Nobutaka -mail: MerindeN@ab64d8db9da04b27bba1bfcb5bef47a6.bitwarden.com -carLicense: D81NE7 -departmentNumber: 6285 -employeeType: Employee -homePhone: +1 415 730-7183 -initials: N. M. -mobile: +1 415 303-8322 -pager: +1 415 932-1473 -roomNumber: 9510 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ruchel Jobs,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruchel Jobs -sn: Jobs -description: This is Ruchel Jobs's description -facsimileTelephoneNumber: +1 213 639-7463 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 767-4517 -title: Master Management Grunt -userPassword: Password1 -uid: JobsR -givenName: Ruchel -mail: JobsR@5086e8ad642d4bbd8705f06e9ddda989.bitwarden.com -carLicense: Y3TSOU -departmentNumber: 1436 -employeeType: Employee -homePhone: +1 213 918-2232 -initials: R. J. -mobile: +1 213 420-7139 -pager: +1 213 173-1303 -roomNumber: 9407 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgena Zaloker -sn: Zaloker -description: This is Georgena Zaloker's description -facsimileTelephoneNumber: +1 510 956-7341 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 939-5030 -title: Junior Human Resources Architect -userPassword: Password1 -uid: ZalokerG -givenName: Georgena -mail: ZalokerG@95fa7f3851674364944296f3d3c2378d.bitwarden.com -carLicense: EKBHB4 -departmentNumber: 6743 -employeeType: Employee -homePhone: +1 510 430-8036 -initials: G. Z. -mobile: +1 510 650-6832 -pager: +1 510 794-1270 -roomNumber: 9534 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fanchette Wittich,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fanchette Wittich -sn: Wittich -description: This is Fanchette Wittich's description -facsimileTelephoneNumber: +1 408 258-9153 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 408 659-8737 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: WittichF -givenName: Fanchette -mail: WittichF@abdd973e03c84ced8f6317d8b973d650.bitwarden.com -carLicense: Y3TVFV -departmentNumber: 9973 -employeeType: Employee -homePhone: +1 408 428-3835 -initials: F. W. -mobile: +1 408 971-4597 -pager: +1 408 361-1591 -roomNumber: 8345 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lorie Boucher,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorie Boucher -sn: Boucher -description: This is Lorie Boucher's description -facsimileTelephoneNumber: +1 213 814-4418 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 969-4290 -title: Chief Peons Vice President -userPassword: Password1 -uid: BoucherL -givenName: Lorie -mail: BoucherL@459e2f62db0c40d5b3c7b2d6945ef874.bitwarden.com -carLicense: N20IG9 -departmentNumber: 2533 -employeeType: Contract -homePhone: +1 213 811-5859 -initials: L. B. -mobile: +1 213 629-6208 -pager: +1 213 467-1380 -roomNumber: 8635 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=MingChang Presner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MingChang Presner -sn: Presner -description: This is MingChang Presner's description -facsimileTelephoneNumber: +1 213 379-1632 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 500-1551 -title: Junior Human Resources President -userPassword: Password1 -uid: PresnerM -givenName: MingChang -mail: PresnerM@144f4bf7b2a54773b3cf6bc1af396542.bitwarden.com -carLicense: 4QY754 -departmentNumber: 3552 -employeeType: Employee -homePhone: +1 213 920-2144 -initials: M. P. -mobile: +1 213 733-3207 -pager: +1 213 662-7580 -roomNumber: 8082 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dierdre Rehel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dierdre Rehel -sn: Rehel -description: This is Dierdre Rehel's description -facsimileTelephoneNumber: +1 213 730-2507 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 861-3761 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: RehelD -givenName: Dierdre -mail: RehelD@1a43b4fd45d14eebb3f3365f12f4390c.bitwarden.com -carLicense: ROUAK5 -departmentNumber: 4414 -employeeType: Contract -homePhone: +1 213 806-2591 -initials: D. R. -mobile: +1 213 323-6323 -pager: +1 213 263-5412 -roomNumber: 9226 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ulrica Benda,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ulrica Benda -sn: Benda -description: This is Ulrica Benda's description -facsimileTelephoneNumber: +1 206 423-9202 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 130-5930 -title: Chief Administrative Artist -userPassword: Password1 -uid: BendaU -givenName: Ulrica -mail: BendaU@d9da444c24af403dad834f9973048314.bitwarden.com -carLicense: PFN4B9 -departmentNumber: 2110 -employeeType: Contract -homePhone: +1 206 339-8542 -initials: U. B. -mobile: +1 206 538-6751 -pager: +1 206 250-8395 -roomNumber: 9172 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Brechtje Revah,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brechtje Revah -sn: Revah -description: This is Brechtje Revah's description -facsimileTelephoneNumber: +1 510 540-7210 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 137-6984 -title: Associate Human Resources Manager -userPassword: Password1 -uid: RevahB -givenName: Brechtje -mail: RevahB@753cc3c48ad24183b60cde608a41edda.bitwarden.com -carLicense: J98GAG -departmentNumber: 5669 -employeeType: Normal -homePhone: +1 510 879-8101 -initials: B. R. -mobile: +1 510 260-2932 -pager: +1 510 462-9049 -roomNumber: 8685 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Howden Hoxie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Howden Hoxie -sn: Hoxie -description: This is Howden Hoxie's description -facsimileTelephoneNumber: +1 206 937-6001 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 932-7272 -title: Junior Management Manager -userPassword: Password1 -uid: HoxieH -givenName: Howden -mail: HoxieH@40992f2ace8d43a59f800186f855c626.bitwarden.com -carLicense: 8U8I6X -departmentNumber: 2279 -employeeType: Normal -homePhone: +1 206 942-8001 -initials: H. H. -mobile: +1 206 926-5135 -pager: +1 206 335-7813 -roomNumber: 9250 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marjory Hardin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjory Hardin -sn: Hardin -description: This is Marjory Hardin's description -facsimileTelephoneNumber: +1 408 678-6422 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 408 342-2308 -title: Junior Management Writer -userPassword: Password1 -uid: HardinM -givenName: Marjory -mail: HardinM@b7be2bf29b064b349a27848f01a085d8.bitwarden.com -carLicense: DR2MKD -departmentNumber: 9090 -employeeType: Normal -homePhone: +1 408 602-1212 -initials: M. H. -mobile: +1 408 105-5077 -pager: +1 408 758-1691 -roomNumber: 9130 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kac Geuder,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kac Geuder -sn: Geuder -description: This is Kac Geuder's description -facsimileTelephoneNumber: +1 213 444-7953 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 155-8400 -title: Master Product Testing Stooge -userPassword: Password1 -uid: GeuderK -givenName: Kac -mail: GeuderK@8b6590e2256543d7b3730d478ab0e5e8.bitwarden.com -carLicense: 7SRREG -departmentNumber: 2837 -employeeType: Normal -homePhone: +1 213 910-7004 -initials: K. G. -mobile: +1 213 667-9469 -pager: +1 213 278-1042 -roomNumber: 8245 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antonia MacElwee -sn: MacElwee -description: This is Antonia MacElwee's description -facsimileTelephoneNumber: +1 804 757-7186 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 432-4984 -title: Chief Product Testing Architect -userPassword: Password1 -uid: MacElweA -givenName: Antonia -mail: MacElweA@e56c19ec1c2c428ba6d15f1ddf8804fc.bitwarden.com -carLicense: HHKCLC -departmentNumber: 3143 -employeeType: Normal -homePhone: +1 804 469-9869 -initials: A. M. -mobile: +1 804 493-4308 -pager: +1 804 815-6743 -roomNumber: 9370 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Derrick Moynihan -sn: Moynihan -description: This is Derrick Moynihan's description -facsimileTelephoneNumber: +1 510 687-7730 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 992-6316 -title: Master Janitorial Pinhead -userPassword: Password1 -uid: MoynihaD -givenName: Derrick -mail: MoynihaD@57e1662648e94370b63269dae2e89f73.bitwarden.com -carLicense: 2DFPCQ -departmentNumber: 9986 -employeeType: Normal -homePhone: +1 510 106-5280 -initials: D. M. -mobile: +1 510 301-9688 -pager: +1 510 782-9823 -roomNumber: 8961 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurel Iacovo -sn: Iacovo -description: This is Aurel Iacovo's description -facsimileTelephoneNumber: +1 415 588-4316 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 543-1828 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: IacovoA -givenName: Aurel -mail: IacovoA@99efb52676a5438d8f4dfeb830e52009.bitwarden.com -carLicense: N39EA5 -departmentNumber: 6539 -employeeType: Employee -homePhone: +1 415 279-2620 -initials: A. I. -mobile: +1 415 710-8756 -pager: +1 415 633-9640 -roomNumber: 8137 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Conchita Borek,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Conchita Borek -sn: Borek -description: This is Conchita Borek's description -facsimileTelephoneNumber: +1 415 653-8501 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 415 596-4054 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: BorekC -givenName: Conchita -mail: BorekC@c1da23a059a74c3d8ae1ac9edb4d3eea.bitwarden.com -carLicense: F4AQAF -departmentNumber: 4591 -employeeType: Normal -homePhone: +1 415 460-2390 -initials: C. B. -mobile: +1 415 657-8790 -pager: +1 415 697-7042 -roomNumber: 9622 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carter Billard,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carter Billard -sn: Billard -description: This is Carter Billard's description -facsimileTelephoneNumber: +1 213 141-3220 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 753-3793 -title: Associate Peons Fellow -userPassword: Password1 -uid: BillardC -givenName: Carter -mail: BillardC@cba87d0d73a2419787e0432699089510.bitwarden.com -carLicense: J1AY5C -departmentNumber: 5962 -employeeType: Normal -homePhone: +1 213 896-8910 -initials: C. B. -mobile: +1 213 725-1149 -pager: +1 213 872-6297 -roomNumber: 9656 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alison Culberson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alison Culberson -sn: Culberson -description: This is Alison Culberson's description -facsimileTelephoneNumber: +1 510 913-9212 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 849-8445 -title: Supreme Management Stooge -userPassword: Password1 -uid: CulbersA -givenName: Alison -mail: CulbersA@86c55960d45747ecb5afd7997d576a89.bitwarden.com -carLicense: 91SCAV -departmentNumber: 7257 -employeeType: Contract -homePhone: +1 510 578-8194 -initials: A. C. -mobile: +1 510 666-8820 -pager: +1 510 969-2880 -roomNumber: 9543 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dev Lynham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dev Lynham -sn: Lynham -description: This is Dev Lynham's description -facsimileTelephoneNumber: +1 818 810-5711 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 281-1925 -title: Master Product Testing Fellow -userPassword: Password1 -uid: LynhamD -givenName: Dev -mail: LynhamD@4d2b6aeb52944f46890dd70951e65aa3.bitwarden.com -carLicense: ALEEJQ -departmentNumber: 4502 -employeeType: Normal -homePhone: +1 818 151-9545 -initials: D. L. -mobile: +1 818 928-4788 -pager: +1 818 850-1321 -roomNumber: 9821 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lucie Longhenry,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucie Longhenry -sn: Longhenry -description: This is Lucie Longhenry's description -facsimileTelephoneNumber: +1 213 835-7708 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 487-8444 -title: Associate Product Development Writer -userPassword: Password1 -uid: LonghenL -givenName: Lucie -mail: LonghenL@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com -carLicense: 3RS8DI -departmentNumber: 4079 -employeeType: Employee -homePhone: +1 213 307-6216 -initials: L. L. -mobile: +1 213 205-5333 -pager: +1 213 448-4558 -roomNumber: 8657 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Somsak Breault,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Somsak Breault -sn: Breault -description: This is Somsak Breault's description -facsimileTelephoneNumber: +1 206 445-7012 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 532-9623 -title: Junior Administrative Engineer -userPassword: Password1 -uid: BreaultS -givenName: Somsak -mail: BreaultS@db7691c9dca24eb7875f7a9259652b96.bitwarden.com -carLicense: JEUQB9 -departmentNumber: 2745 -employeeType: Employee -homePhone: +1 206 420-7370 -initials: S. B. -mobile: +1 206 225-9619 -pager: +1 206 246-7422 -roomNumber: 9987 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Regina Astor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regina Astor -sn: Astor -description: This is Regina Astor's description -facsimileTelephoneNumber: +1 206 818-5226 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 391-6899 -title: Associate Peons Developer -userPassword: Password1 -uid: AstorR -givenName: Regina -mail: AstorR@30db69640fb048128840ef2fb85c3577.bitwarden.com -carLicense: NNX76R -departmentNumber: 1431 -employeeType: Employee -homePhone: +1 206 993-5027 -initials: R. A. -mobile: +1 206 674-1647 -pager: +1 206 445-5249 -roomNumber: 8618 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Idalia Krauel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idalia Krauel -sn: Krauel -description: This is Idalia Krauel's description -facsimileTelephoneNumber: +1 804 841-3180 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 782-7496 -title: Master Payroll Madonna -userPassword: Password1 -uid: KrauelI -givenName: Idalia -mail: KrauelI@8225e046db804e04b9a2cde5ffe23088.bitwarden.com -carLicense: 545DV5 -departmentNumber: 2074 -employeeType: Employee -homePhone: +1 804 295-4896 -initials: I. K. -mobile: +1 804 533-8763 -pager: +1 804 625-7898 -roomNumber: 8422 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bnrtor Tadevich -sn: Tadevich -description: This is Bnrtor Tadevich's description -facsimileTelephoneNumber: +1 510 428-5741 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 275-9814 -title: Junior Human Resources Punk -userPassword: Password1 -uid: TadevicB -givenName: Bnrtor -mail: TadevicB@332c34f573ad4ec89381a4995815cc7e.bitwarden.com -carLicense: XQ6Y9T -departmentNumber: 2637 -employeeType: Employee -homePhone: +1 510 176-3738 -initials: B. T. -mobile: +1 510 554-8406 -pager: +1 510 446-2571 -roomNumber: 8454 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lolly Mattson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lolly Mattson -sn: Mattson -description: This is Lolly Mattson's description -facsimileTelephoneNumber: +1 818 309-5817 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 818 655-5512 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: MattsonL -givenName: Lolly -mail: MattsonL@039ec15b8547455eb4745e09f294d624.bitwarden.com -carLicense: SCAKAV -departmentNumber: 5393 -employeeType: Employee -homePhone: +1 818 112-5992 -initials: L. M. -mobile: +1 818 102-4633 -pager: +1 818 625-6388 -roomNumber: 9214 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Corinna Jesshope,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corinna Jesshope -sn: Jesshope -description: This is Corinna Jesshope's description -facsimileTelephoneNumber: +1 408 474-3063 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 545-5006 -title: Junior Administrative President -userPassword: Password1 -uid: JesshopC -givenName: Corinna -mail: JesshopC@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com -carLicense: 1EA4VH -departmentNumber: 3513 -employeeType: Employee -homePhone: +1 408 658-1162 -initials: C. J. -mobile: +1 408 588-9997 -pager: +1 408 222-8106 -roomNumber: 9389 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Guinevere Bower,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guinevere Bower -sn: Bower -description: This is Guinevere Bower's description -facsimileTelephoneNumber: +1 408 683-9768 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 232-3421 -title: Associate Product Development Madonna -userPassword: Password1 -uid: BowerG -givenName: Guinevere -mail: BowerG@1c2297c1716444ad8e93762f014c7f67.bitwarden.com -carLicense: 1OOMS3 -departmentNumber: 3419 -employeeType: Normal -homePhone: +1 408 828-7163 -initials: G. B. -mobile: +1 408 942-6996 -pager: +1 408 154-2755 -roomNumber: 9333 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivienne Feutlinske -sn: Feutlinske -description: This is Vivienne Feutlinske's description -facsimileTelephoneNumber: +1 415 145-9387 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 151-9727 -title: Supreme Product Development Visionary -userPassword: Password1 -uid: FeutlinV -givenName: Vivienne -mail: FeutlinV@dac9dfd573ee4f928ec9aa0996157f6f.bitwarden.com -carLicense: 35R6WJ -departmentNumber: 3542 -employeeType: Employee -homePhone: +1 415 936-2443 -initials: V. F. -mobile: +1 415 769-4206 -pager: +1 415 816-4147 -roomNumber: 8549 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Frederic Kemish,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frederic Kemish -sn: Kemish -description: This is Frederic Kemish's description -facsimileTelephoneNumber: +1 804 145-8005 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 862-6595 -title: Chief Payroll Developer -userPassword: Password1 -uid: KemishF -givenName: Frederic -mail: KemishF@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com -carLicense: 9RKFU4 -departmentNumber: 6436 -employeeType: Contract -homePhone: +1 804 663-5744 -initials: F. K. -mobile: +1 804 415-6401 -pager: +1 804 202-1029 -roomNumber: 8038 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Barb Mandel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barb Mandel -sn: Mandel -description: This is Barb Mandel's description -facsimileTelephoneNumber: +1 415 982-1420 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 853-2110 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: MandelB -givenName: Barb -mail: MandelB@123afab4d4de40e09319189089980d97.bitwarden.com -carLicense: AJWKCD -departmentNumber: 4548 -employeeType: Employee -homePhone: +1 415 980-7337 -initials: B. M. -mobile: +1 415 701-7424 -pager: +1 415 417-8406 -roomNumber: 8721 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rochell Muise,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rochell Muise -sn: Muise -description: This is Rochell Muise's description -facsimileTelephoneNumber: +1 415 268-1816 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 884-7637 -title: Junior Management Vice President -userPassword: Password1 -uid: MuiseR -givenName: Rochell -mail: MuiseR@d0510c6d4d2248279a5b0899ea306017.bitwarden.com -carLicense: 13GMOD -departmentNumber: 5457 -employeeType: Normal -homePhone: +1 415 891-3963 -initials: R. M. -mobile: +1 415 842-1357 -pager: +1 415 761-3894 -roomNumber: 9885 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Thea Atteridge,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thea Atteridge -sn: Atteridge -description: This is Thea Atteridge's description -facsimileTelephoneNumber: +1 510 558-8057 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 592-4665 -title: Master Administrative Technician -userPassword: Password1 -uid: AtteridT -givenName: Thea -mail: AtteridT@a6ca114df8334b8bba40f6036dd95ee9.bitwarden.com -carLicense: S0K92A -departmentNumber: 2069 -employeeType: Employee -homePhone: +1 510 674-7619 -initials: T. A. -mobile: +1 510 674-6855 -pager: +1 510 329-6458 -roomNumber: 9490 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Theressa Marks,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theressa Marks -sn: Marks -description: This is Theressa Marks's description -facsimileTelephoneNumber: +1 510 722-3573 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 765-1716 -title: Supreme Management Assistant -userPassword: Password1 -uid: MarksT -givenName: Theressa -mail: MarksT@4c1c5169ce594a0e842e898138488cd4.bitwarden.com -carLicense: OFXP0X -departmentNumber: 4094 -employeeType: Contract -homePhone: +1 510 701-4368 -initials: T. M. -mobile: +1 510 773-3893 -pager: +1 510 826-4439 -roomNumber: 9436 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Agna Ntelpac,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agna Ntelpac -sn: Ntelpac -description: This is Agna Ntelpac's description -facsimileTelephoneNumber: +1 408 555-4440 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 117-3865 -title: Supreme Peons Assistant -userPassword: Password1 -uid: NtelpacA -givenName: Agna -mail: NtelpacA@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com -carLicense: 9QNFS1 -departmentNumber: 5812 -employeeType: Contract -homePhone: +1 408 676-1395 -initials: A. N. -mobile: +1 408 389-1648 -pager: +1 408 181-9613 -roomNumber: 9028 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Peder Grewal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peder Grewal -sn: Grewal -description: This is Peder Grewal's description -facsimileTelephoneNumber: +1 510 241-8856 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 520-7410 -title: Junior Peons Artist -userPassword: Password1 -uid: GrewalP -givenName: Peder -mail: GrewalP@f20cdd91b77c4fa1af532b2ee7f13b4b.bitwarden.com -carLicense: PW17V5 -departmentNumber: 3784 -employeeType: Employee -homePhone: +1 510 901-5318 -initials: P. G. -mobile: +1 510 193-8659 -pager: +1 510 609-5073 -roomNumber: 8348 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Melony Nahas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melony Nahas -sn: Nahas -description: This is Melony Nahas's description -facsimileTelephoneNumber: +1 213 874-7191 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 213 223-4792 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: NahasM -givenName: Melony -mail: NahasM@8d84473559264c6592d3bbcbad962447.bitwarden.com -carLicense: O2UDLJ -departmentNumber: 6192 -employeeType: Employee -homePhone: +1 213 226-8708 -initials: M. N. -mobile: +1 213 827-5692 -pager: +1 213 294-3149 -roomNumber: 9034 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ileana Ude,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ileana Ude -sn: Ude -description: This is Ileana Ude's description -facsimileTelephoneNumber: +1 510 986-2909 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 716-2414 -title: Associate Peons Figurehead -userPassword: Password1 -uid: UdeI -givenName: Ileana -mail: UdeI@3862de637e0345d9b2a1837a52d0c5b1.bitwarden.com -carLicense: P31192 -departmentNumber: 7196 -employeeType: Normal -homePhone: +1 510 235-3103 -initials: I. U. -mobile: +1 510 885-2571 -pager: +1 510 324-1565 -roomNumber: 9281 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sofeya Khosravi -sn: Khosravi -description: This is Sofeya Khosravi's description -facsimileTelephoneNumber: +1 818 156-6788 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 420-1201 -title: Supreme Administrative Punk -userPassword: Password1 -uid: KhosravS -givenName: Sofeya -mail: KhosravS@f4f79ae5585f4229b44ed35d134a2fdc.bitwarden.com -carLicense: 09TRPT -departmentNumber: 6552 -employeeType: Normal -homePhone: +1 818 776-9311 -initials: S. K. -mobile: +1 818 339-3741 -pager: +1 818 802-8932 -roomNumber: 8602 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fscocos Azari,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fscocos Azari -sn: Azari -description: This is Fscocos Azari's description -facsimileTelephoneNumber: +1 818 250-6830 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 818 502-9790 -title: Associate Payroll Vice President -userPassword: Password1 -uid: AzariF -givenName: Fscocos -mail: AzariF@a8f7a07ce7504ae4bfde0cfae682a40b.bitwarden.com -carLicense: P1QHF3 -departmentNumber: 7700 -employeeType: Contract -homePhone: +1 818 524-3095 -initials: F. A. -mobile: +1 818 546-9397 -pager: +1 818 101-9465 -roomNumber: 9530 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Charmaine Rahmany,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charmaine Rahmany -sn: Rahmany -description: This is Charmaine Rahmany's description -facsimileTelephoneNumber: +1 415 442-9089 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 359-1009 -title: Junior Peons Janitor -userPassword: Password1 -uid: RahmanyC -givenName: Charmaine -mail: RahmanyC@37f4b24424844e629b19d1ee55799aa3.bitwarden.com -carLicense: 91BEAN -departmentNumber: 8314 -employeeType: Employee -homePhone: +1 415 281-2692 -initials: C. R. -mobile: +1 415 590-5803 -pager: +1 415 380-1438 -roomNumber: 9779 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ayn Odum,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ayn Odum -sn: Odum -description: This is Ayn Odum's description -facsimileTelephoneNumber: +1 408 391-8482 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 388-1803 -title: Chief Human Resources Dictator -userPassword: Password1 -uid: OdumA -givenName: Ayn -mail: OdumA@65523206681c4c868fd2bcf7f70e47c0.bitwarden.com -carLicense: M07N1Q -departmentNumber: 7209 -employeeType: Contract -homePhone: +1 408 626-6864 -initials: A. O. -mobile: +1 408 692-5629 -pager: +1 408 589-9645 -roomNumber: 8775 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annmaria LHeureux -sn: LHeureux -description: This is Annmaria LHeureux's description -facsimileTelephoneNumber: +1 213 360-7316 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 858-4909 -title: Master Administrative Director -userPassword: Password1 -uid: LHeureuA -givenName: Annmaria -mail: LHeureuA@bf23af50aea94f99aca4c696a7e766ff.bitwarden.com -carLicense: VXRPMT -departmentNumber: 1772 -employeeType: Contract -homePhone: +1 213 816-3211 -initials: A. L. -mobile: +1 213 300-8098 -pager: +1 213 380-3928 -roomNumber: 9037 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Norm Berrisford,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norm Berrisford -sn: Berrisford -description: This is Norm Berrisford's description -facsimileTelephoneNumber: +1 415 765-9320 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 628-1677 -title: Junior Peons Punk -userPassword: Password1 -uid: BerrisfN -givenName: Norm -mail: BerrisfN@32ce2ca229594ba68651edf24232f002.bitwarden.com -carLicense: 862J85 -departmentNumber: 7448 -employeeType: Employee -homePhone: +1 415 883-3205 -initials: N. B. -mobile: +1 415 285-3957 -pager: +1 415 231-5200 -roomNumber: 8723 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Elly Nagarur,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elly Nagarur -sn: Nagarur -description: This is Elly Nagarur's description -facsimileTelephoneNumber: +1 415 925-1211 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 398-1293 -title: Chief Product Development Janitor -userPassword: Password1 -uid: NagarurE -givenName: Elly -mail: NagarurE@0179b4952dc54ba39e1bba2996936e9f.bitwarden.com -carLicense: 4MN2XJ -departmentNumber: 5527 -employeeType: Employee -homePhone: +1 415 656-7520 -initials: E. N. -mobile: +1 415 421-2994 -pager: +1 415 954-2881 -roomNumber: 8834 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibley Sprunger -sn: Sprunger -description: This is Sibley Sprunger's description -facsimileTelephoneNumber: +1 818 991-7774 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 450-1245 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: SprungeS -givenName: Sibley -mail: SprungeS@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com -carLicense: MM2TJN -departmentNumber: 1258 -employeeType: Employee -homePhone: +1 818 863-2719 -initials: S. S. -mobile: +1 818 909-5899 -pager: +1 818 207-9139 -roomNumber: 8011 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lenette Sandness,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenette Sandness -sn: Sandness -description: This is Lenette Sandness's description -facsimileTelephoneNumber: +1 206 910-2208 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 119-1003 -title: Chief Management Consultant -userPassword: Password1 -uid: SandnesL -givenName: Lenette -mail: SandnesL@c8261f605fed4bb494dcc3af9b18f70f.bitwarden.com -carLicense: 6NBX3G -departmentNumber: 8989 -employeeType: Contract -homePhone: +1 206 722-4143 -initials: L. S. -mobile: +1 206 960-4758 -pager: +1 206 929-4060 -roomNumber: 8586 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emyle Fuqua,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emyle Fuqua -sn: Fuqua -description: This is Emyle Fuqua's description -facsimileTelephoneNumber: +1 804 670-7264 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 556-2611 -title: Master Management Mascot -userPassword: Password1 -uid: FuquaE -givenName: Emyle -mail: FuquaE@ab34f7a574c74b59a12477bad26d03c0.bitwarden.com -carLicense: P205YH -departmentNumber: 9260 -employeeType: Employee -homePhone: +1 804 426-1675 -initials: E. F. -mobile: +1 804 858-6767 -pager: +1 804 735-7759 -roomNumber: 9340 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alejandra Saungikar -sn: Saungikar -description: This is Alejandra Saungikar's description -facsimileTelephoneNumber: +1 213 790-5065 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 670-9856 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: SaungikA -givenName: Alejandra -mail: SaungikA@377af438e28144f198471c633c478745.bitwarden.com -carLicense: FB4I0H -departmentNumber: 4071 -employeeType: Normal -homePhone: +1 213 551-2413 -initials: A. S. -mobile: +1 213 488-7959 -pager: +1 213 880-3327 -roomNumber: 8009 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elysia McDuffie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elysia McDuffie -sn: McDuffie -description: This is Elysia McDuffie's description -facsimileTelephoneNumber: +1 804 386-6267 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 203-4226 -title: Master Payroll Consultant -userPassword: Password1 -uid: McDuffiE -givenName: Elysia -mail: McDuffiE@98febd962501443b89a9e8bfacf12a9e.bitwarden.com -carLicense: QETT9L -departmentNumber: 1730 -employeeType: Contract -homePhone: +1 804 404-9374 -initials: E. M. -mobile: +1 804 883-9071 -pager: +1 804 376-1263 -roomNumber: 9445 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lorilee Projects,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorilee Projects -sn: Projects -description: This is Lorilee Projects's description -facsimileTelephoneNumber: +1 818 975-2279 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 484-3607 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: ProjectL -givenName: Lorilee -mail: ProjectL@4b0a9ffaaeec4cc3ae5daf192d65fc6b.bitwarden.com -carLicense: YU4MAA -departmentNumber: 1998 -employeeType: Normal -homePhone: +1 818 588-7011 -initials: L. P. -mobile: +1 818 210-9882 -pager: +1 818 537-1981 -roomNumber: 8107 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helenka Herlihy -sn: Herlihy -description: This is Helenka Herlihy's description -facsimileTelephoneNumber: +1 408 501-2633 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 876-9436 -title: Junior Human Resources Developer -userPassword: Password1 -uid: HerlihyH -givenName: Helenka -mail: HerlihyH@9e3b275453fb4081a04ee8dbb4f6bd0b.bitwarden.com -carLicense: JG6QYG -departmentNumber: 1206 -employeeType: Contract -homePhone: +1 408 857-8975 -initials: H. H. -mobile: +1 408 455-1196 -pager: +1 408 133-3862 -roomNumber: 9105 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Amalee Borg,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amalee Borg -sn: Borg -description: This is Amalee Borg's description -facsimileTelephoneNumber: +1 415 549-8460 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 615-7970 -title: Chief Human Resources Developer -userPassword: Password1 -uid: BorgA -givenName: Amalee -mail: BorgA@62d6b52263d643d2a05493b576aca6a5.bitwarden.com -carLicense: 00MY3G -departmentNumber: 8901 -employeeType: Employee -homePhone: +1 415 204-4186 -initials: A. B. -mobile: +1 415 606-2074 -pager: +1 415 231-7991 -roomNumber: 8563 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerrit Witkowski -sn: Witkowski -description: This is Gerrit Witkowski's description -facsimileTelephoneNumber: +1 818 389-3426 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 818 695-5197 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: WitkowsG -givenName: Gerrit -mail: WitkowsG@3876f00a01cc4c9cadffa2031adb446a.bitwarden.com -carLicense: HBKPFD -departmentNumber: 1169 -employeeType: Contract -homePhone: +1 818 792-7010 -initials: G. W. -mobile: +1 818 246-8862 -pager: +1 818 412-4203 -roomNumber: 8737 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=ThanhHung McAdams,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhHung McAdams -sn: McAdams -description: This is ThanhHung McAdams's description -facsimileTelephoneNumber: +1 804 577-4759 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 597-3383 -title: Chief Management Punk -userPassword: Password1 -uid: McAdamsT -givenName: ThanhHung -mail: McAdamsT@d7b344ca45cd4c63b54c502d92e2c5d9.bitwarden.com -carLicense: JDMLGA -departmentNumber: 9072 -employeeType: Employee -homePhone: +1 804 748-1492 -initials: T. M. -mobile: +1 804 299-4885 -pager: +1 804 803-9800 -roomNumber: 9827 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jessa Simmons,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessa Simmons -sn: Simmons -description: This is Jessa Simmons's description -facsimileTelephoneNumber: +1 804 890-8834 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 313-7938 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: SimmonsJ -givenName: Jessa -mail: SimmonsJ@a923c3e154c74115a9ff0fe18985dc09.bitwarden.com -carLicense: 36SG25 -departmentNumber: 4588 -employeeType: Normal -homePhone: +1 804 975-2835 -initials: J. S. -mobile: +1 804 920-2416 -pager: +1 804 526-3523 -roomNumber: 8339 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Timothea Culverhouse,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Timothea Culverhouse -sn: Culverhouse -description: This is Timothea Culverhouse's description -facsimileTelephoneNumber: +1 818 911-8507 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 818 527-6839 -title: Associate Peons Artist -userPassword: Password1 -uid: CulverhT -givenName: Timothea -mail: CulverhT@01debeaa74ed4916a69ca3761e5ab388.bitwarden.com -carLicense: 2YL04J -departmentNumber: 1432 -employeeType: Normal -homePhone: +1 818 463-5971 -initials: T. C. -mobile: +1 818 590-3120 -pager: +1 818 251-5213 -roomNumber: 8867 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dorice Op,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorice Op -sn: Op -description: This is Dorice Op's description -facsimileTelephoneNumber: +1 213 410-3059 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 790-7047 -title: Junior Management Assistant -userPassword: Password1 -uid: OpD -givenName: Dorice -mail: OpD@3e32ccd0c8a847b6ac8fb9c09f485fe3.bitwarden.com -carLicense: AHDS4G -departmentNumber: 2006 -employeeType: Normal -homePhone: +1 213 617-8408 -initials: D. O. -mobile: +1 213 967-2633 -pager: +1 213 746-6574 -roomNumber: 8209 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Estrellita Haney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estrellita Haney -sn: Haney -description: This is Estrellita Haney's description -facsimileTelephoneNumber: +1 818 703-7347 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 187-1818 -title: Chief Administrative Technician -userPassword: Password1 -uid: HaneyE -givenName: Estrellita -mail: HaneyE@89e4e0e6aba5481cb5a471d8c425e9ac.bitwarden.com -carLicense: 3S7STK -departmentNumber: 6604 -employeeType: Contract -homePhone: +1 818 763-7468 -initials: E. H. -mobile: +1 818 484-3563 -pager: +1 818 966-9501 -roomNumber: 8062 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kuldip Rabenstein -sn: Rabenstein -description: This is Kuldip Rabenstein's description -facsimileTelephoneNumber: +1 408 294-9017 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 731-1613 -title: Associate Human Resources Assistant -userPassword: Password1 -uid: RabenstK -givenName: Kuldip -mail: RabenstK@c40623c8d9ac4757937cfee44c180e7b.bitwarden.com -carLicense: BBBTQ0 -departmentNumber: 6681 -employeeType: Employee -homePhone: +1 408 525-5339 -initials: K. R. -mobile: +1 408 308-8491 -pager: +1 408 153-6759 -roomNumber: 8017 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maddalena Hammermeister,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maddalena Hammermeister -sn: Hammermeister -description: This is Maddalena Hammermeister's description -facsimileTelephoneNumber: +1 415 940-7905 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 250-6333 -title: Supreme Management Grunt -userPassword: Password1 -uid: HammermM -givenName: Maddalena -mail: HammermM@8f4b2d337f4f4418a987619b5765155d.bitwarden.com -carLicense: C79L2U -departmentNumber: 3364 -employeeType: Normal -homePhone: +1 415 907-9993 -initials: M. H. -mobile: +1 415 979-6683 -pager: +1 415 857-6683 -roomNumber: 8300 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alfonso Benyon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alfonso Benyon -sn: Benyon -description: This is Alfonso Benyon's description -facsimileTelephoneNumber: +1 415 667-6106 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 245-5242 -title: Supreme Payroll President -userPassword: Password1 -uid: BenyonA -givenName: Alfonso -mail: BenyonA@f72cf2b3454841e499da566c9feae899.bitwarden.com -carLicense: 5VD50N -departmentNumber: 2283 -employeeType: Normal -homePhone: +1 415 952-4439 -initials: A. B. -mobile: +1 415 106-1777 -pager: +1 415 740-3974 -roomNumber: 8738 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorisa Lanteigne -sn: Lanteigne -description: This is Dorisa Lanteigne's description -facsimileTelephoneNumber: +1 213 767-4406 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 847-9805 -title: Chief Peons Consultant -userPassword: Password1 -uid: LanteigD -givenName: Dorisa -mail: LanteigD@9524e5fbf8844145b5c00986d16d8376.bitwarden.com -carLicense: 7B92JV -departmentNumber: 6144 -employeeType: Normal -homePhone: +1 213 494-3075 -initials: D. L. -mobile: +1 213 814-5067 -pager: +1 213 365-9631 -roomNumber: 9789 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: GeeMeng Simonsen -sn: Simonsen -description: This is GeeMeng Simonsen's description -facsimileTelephoneNumber: +1 510 813-2325 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 218-7728 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: SimonseG -givenName: GeeMeng -mail: SimonseG@7edf6527f6ba409aa280a1bd0cd976a0.bitwarden.com -carLicense: IW6UEP -departmentNumber: 7922 -employeeType: Normal -homePhone: +1 510 343-4598 -initials: G. S. -mobile: +1 510 241-8049 -pager: +1 510 254-3860 -roomNumber: 8473 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Alfy McBroom,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alfy McBroom -sn: McBroom -description: This is Alfy McBroom's description -facsimileTelephoneNumber: +1 818 255-3871 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 264-7702 -title: Junior Administrative Vice President -userPassword: Password1 -uid: McBroomA -givenName: Alfy -mail: McBroomA@3cf8abc9393b4308ab07b683b0ddf523.bitwarden.com -carLicense: UPCPYA -departmentNumber: 7073 -employeeType: Employee -homePhone: +1 818 877-3809 -initials: A. M. -mobile: +1 818 383-9015 -pager: +1 818 810-2031 -roomNumber: 9448 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fina Hoctor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fina Hoctor -sn: Hoctor -description: This is Fina Hoctor's description -facsimileTelephoneNumber: +1 206 223-6303 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 592-9768 -title: Associate Peons Vice President -userPassword: Password1 -uid: HoctorF -givenName: Fina -mail: HoctorF@bf91192220a74764b99bec46e53e3350.bitwarden.com -carLicense: HXPWCG -departmentNumber: 7958 -employeeType: Normal -homePhone: +1 206 954-5246 -initials: F. H. -mobile: +1 206 704-2429 -pager: +1 206 784-2565 -roomNumber: 8832 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ardene Cuu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardene Cuu -sn: Cuu -description: This is Ardene Cuu's description -facsimileTelephoneNumber: +1 818 384-5407 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 952-4765 -title: Supreme Product Testing Punk -userPassword: Password1 -uid: CuuA -givenName: Ardene -mail: CuuA@f7752e330a264f1884c22f0f347f41b4.bitwarden.com -carLicense: RD778W -departmentNumber: 3905 -employeeType: Employee -homePhone: +1 818 981-8667 -initials: A. C. -mobile: +1 818 638-7025 -pager: +1 818 991-1849 -roomNumber: 8187 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gajendra Trinh -sn: Trinh -description: This is Gajendra Trinh's description -facsimileTelephoneNumber: +1 804 712-4282 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 641-4098 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: TrinhG -givenName: Gajendra -mail: TrinhG@63d9ff681cbd4332bc60e641ac986747.bitwarden.com -carLicense: VXD20N -departmentNumber: 7280 -employeeType: Contract -homePhone: +1 804 843-5586 -initials: G. T. -mobile: +1 804 547-7133 -pager: +1 804 164-7423 -roomNumber: 9398 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cristie Madani,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristie Madani -sn: Madani -description: This is Cristie Madani's description -facsimileTelephoneNumber: +1 415 608-4086 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 909-2301 -title: Chief Peons Punk -userPassword: Password1 -uid: MadaniC -givenName: Cristie -mail: MadaniC@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com -carLicense: 1R3ASY -departmentNumber: 3396 -employeeType: Contract -homePhone: +1 415 988-2212 -initials: C. M. -mobile: +1 415 640-8016 -pager: +1 415 949-8264 -roomNumber: 9280 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Stephane Zorzi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephane Zorzi -sn: Zorzi -description: This is Stephane Zorzi's description -facsimileTelephoneNumber: +1 415 261-5675 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 912-4321 -title: Chief Management Dictator -userPassword: Password1 -uid: ZorziS -givenName: Stephane -mail: ZorziS@883a827472584ea8ab8edcc535c72169.bitwarden.com -carLicense: 226MWM -departmentNumber: 2717 -employeeType: Normal -homePhone: +1 415 237-5435 -initials: S. Z. -mobile: +1 415 234-2258 -pager: +1 415 320-1013 -roomNumber: 8221 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ellen Kruusement,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellen Kruusement -sn: Kruusement -description: This is Ellen Kruusement's description -facsimileTelephoneNumber: +1 415 402-6472 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 122-2499 -title: Master Administrative Figurehead -userPassword: Password1 -uid: KruusemE -givenName: Ellen -mail: KruusemE@5b737a4d09c2499f8798a895b59012b1.bitwarden.com -carLicense: 4Q6FN5 -departmentNumber: 3098 -employeeType: Contract -homePhone: +1 415 717-4557 -initials: E. K. -mobile: +1 415 246-1095 -pager: +1 415 753-1491 -roomNumber: 8509 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tianbao Homonick -sn: Homonick -description: This is Tianbao Homonick's description -facsimileTelephoneNumber: +1 804 524-2707 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 804 589-6041 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: HomonicT -givenName: Tianbao -mail: HomonicT@a1c59eb0876b440cad715bc7a625284c.bitwarden.com -carLicense: SM8XHT -departmentNumber: 4690 -employeeType: Employee -homePhone: +1 804 644-1136 -initials: T. H. -mobile: +1 804 697-5906 -pager: +1 804 450-6370 -roomNumber: 9675 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arnie Vickers,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arnie Vickers -sn: Vickers -description: This is Arnie Vickers's description -facsimileTelephoneNumber: +1 415 550-6753 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 832-3302 -title: Master Janitorial Artist -userPassword: Password1 -uid: VickersA -givenName: Arnie -mail: VickersA@d1aff07ca59844dcbbf406f0fc775f82.bitwarden.com -carLicense: 4LR9EW -departmentNumber: 3178 -employeeType: Contract -homePhone: +1 415 711-5288 -initials: A. V. -mobile: +1 415 602-3394 -pager: +1 415 299-7213 -roomNumber: 9722 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tak Kuhlkamp,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tak Kuhlkamp -sn: Kuhlkamp -description: This is Tak Kuhlkamp's description -facsimileTelephoneNumber: +1 415 162-4729 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 220-3915 -title: Chief Management Developer -userPassword: Password1 -uid: KuhlkamT -givenName: Tak -mail: KuhlkamT@6ff512afd6074ffb8be89092e99d3615.bitwarden.com -carLicense: FGKRQ5 -departmentNumber: 2749 -employeeType: Normal -homePhone: +1 415 870-2297 -initials: T. K. -mobile: +1 415 837-6837 -pager: +1 415 727-2260 -roomNumber: 8904 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Linet Gartshore,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linet Gartshore -sn: Gartshore -description: This is Linet Gartshore's description -facsimileTelephoneNumber: +1 213 835-5345 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 974-6241 -title: Chief Janitorial Director -userPassword: Password1 -uid: GartshoL -givenName: Linet -mail: GartshoL@4d29dc852c7e4d5a81edcd4807f79169.bitwarden.com -carLicense: 0Y0EJ5 -departmentNumber: 1320 -employeeType: Contract -homePhone: +1 213 562-8700 -initials: L. G. -mobile: +1 213 412-3025 -pager: +1 213 233-7087 -roomNumber: 8073 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dina Satta,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dina Satta -sn: Satta -description: This is Dina Satta's description -facsimileTelephoneNumber: +1 415 372-6337 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 984-1415 -title: Chief Product Development Architect -userPassword: Password1 -uid: SattaD -givenName: Dina -mail: SattaD@eaed65d5c2954ae7b76835d57d5da55f.bitwarden.com -carLicense: WAEV2V -departmentNumber: 6740 -employeeType: Contract -homePhone: +1 415 223-4909 -initials: D. S. -mobile: +1 415 830-8772 -pager: +1 415 881-2599 -roomNumber: 9757 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Candis Bothwell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candis Bothwell -sn: Bothwell -description: This is Candis Bothwell's description -facsimileTelephoneNumber: +1 818 541-1384 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 760-3929 -title: Chief Janitorial President -userPassword: Password1 -uid: BothwelC -givenName: Candis -mail: BothwelC@cc252680b96a4999bccdcb3df4f9a7ab.bitwarden.com -carLicense: BCU59I -departmentNumber: 1007 -employeeType: Employee -homePhone: +1 818 391-1806 -initials: C. B. -mobile: +1 818 336-3424 -pager: +1 818 340-2541 -roomNumber: 9536 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Daphene Minck,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphene Minck -sn: Minck -description: This is Daphene Minck's description -facsimileTelephoneNumber: +1 408 388-4010 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 230-2387 -title: Master Administrative Architect -userPassword: Password1 -uid: MinckD -givenName: Daphene -mail: MinckD@811a3e44246748c98e3bda8ba1579d34.bitwarden.com -carLicense: FWF5K8 -departmentNumber: 1653 -employeeType: Employee -homePhone: +1 408 286-3303 -initials: D. M. -mobile: +1 408 200-9217 -pager: +1 408 876-5377 -roomNumber: 9477 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Adan Duncan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adan Duncan -sn: Duncan -description: This is Adan Duncan's description -facsimileTelephoneNumber: +1 415 112-9092 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 251-4547 -title: Supreme Administrative Engineer -userPassword: Password1 -uid: DuncanA -givenName: Adan -mail: DuncanA@a7445c22136445feb44e85392464b31c.bitwarden.com -carLicense: XKCLAT -departmentNumber: 2340 -employeeType: Employee -homePhone: +1 415 139-4974 -initials: A. D. -mobile: +1 415 818-6853 -pager: +1 415 468-4961 -roomNumber: 8683 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Willa Trisko,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willa Trisko -sn: Trisko -description: This is Willa Trisko's description -facsimileTelephoneNumber: +1 510 129-6387 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 894-4308 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: TriskoW -givenName: Willa -mail: TriskoW@2af8061425ae493eb62ca1242598b59b.bitwarden.com -carLicense: 15TSQV -departmentNumber: 7801 -employeeType: Normal -homePhone: +1 510 909-6543 -initials: W. T. -mobile: +1 510 651-1858 -pager: +1 510 605-1532 -roomNumber: 9382 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessamine Boisseau -sn: Boisseau -description: This is Jessamine Boisseau's description -facsimileTelephoneNumber: +1 415 665-3071 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 711-2876 -title: Master Janitorial Janitor -userPassword: Password1 -uid: BoisseaJ -givenName: Jessamine -mail: BoisseaJ@2ad21f67126841ddab38e6a0de0bbf55.bitwarden.com -carLicense: NK5GPU -departmentNumber: 6442 -employeeType: Contract -homePhone: +1 415 773-6233 -initials: J. B. -mobile: +1 415 481-2529 -pager: +1 415 310-3526 -roomNumber: 9868 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katalin Totten,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katalin Totten -sn: Totten -description: This is Katalin Totten's description -facsimileTelephoneNumber: +1 818 863-8725 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 798-4952 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: TottenK -givenName: Katalin -mail: TottenK@d5293c91bc7840f0948a89a10840461e.bitwarden.com -carLicense: E3MK76 -departmentNumber: 4049 -employeeType: Normal -homePhone: +1 818 544-9114 -initials: K. T. -mobile: +1 818 678-3665 -pager: +1 818 163-9948 -roomNumber: 8593 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bonni Mastronardi -sn: Mastronardi -description: This is Bonni Mastronardi's description -facsimileTelephoneNumber: +1 408 514-3133 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 344-1130 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: MastronB -givenName: Bonni -mail: MastronB@3d73d44a83034f7492ad5f7b28f5be7b.bitwarden.com -carLicense: 8W65JC -departmentNumber: 9615 -employeeType: Contract -homePhone: +1 408 482-1076 -initials: B. M. -mobile: +1 408 561-3830 -pager: +1 408 328-7039 -roomNumber: 9365 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=CostasDinos Labrador,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: CostasDinos Labrador -sn: Labrador -description: This is CostasDinos Labrador's description -facsimileTelephoneNumber: +1 206 126-1862 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 325-4390 -title: Junior Management Vice President -userPassword: Password1 -uid: LabradoC -givenName: CostasDinos -mail: LabradoC@9204194a2da94dc0b82d2268bcb1f7fe.bitwarden.com -carLicense: O3L101 -departmentNumber: 6432 -employeeType: Employee -homePhone: +1 206 290-9870 -initials: C. L. -mobile: +1 206 266-2206 -pager: +1 206 958-9534 -roomNumber: 9019 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Andrzej Coulman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrzej Coulman -sn: Coulman -description: This is Andrzej Coulman's description -facsimileTelephoneNumber: +1 206 874-1722 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 258-2973 -title: Master Peons Madonna -userPassword: Password1 -uid: CoulmanA -givenName: Andrzej -mail: CoulmanA@ee31a32bc4dc4dfc9c3e0d1edb9f7ccb.bitwarden.com -carLicense: 377ELD -departmentNumber: 5258 -employeeType: Employee -homePhone: +1 206 619-3174 -initials: A. C. -mobile: +1 206 885-4216 -pager: +1 206 640-5971 -roomNumber: 8766 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sheryl Perrin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheryl Perrin -sn: Perrin -description: This is Sheryl Perrin's description -facsimileTelephoneNumber: +1 213 995-3918 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 533-8826 -title: Chief Peons Writer -userPassword: Password1 -uid: PerrinS -givenName: Sheryl -mail: PerrinS@32f4159b3c3143c5bb4ec812d9ad7150.bitwarden.com -carLicense: 1XHXDA -departmentNumber: 5182 -employeeType: Contract -homePhone: +1 213 416-6720 -initials: S. P. -mobile: +1 213 346-9283 -pager: +1 213 267-4321 -roomNumber: 8674 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emma Mullaney,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emma Mullaney -sn: Mullaney -description: This is Emma Mullaney's description -facsimileTelephoneNumber: +1 213 545-5623 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 506-9475 -title: Supreme Management Czar -userPassword: Password1 -uid: MullaneE -givenName: Emma -mail: MullaneE@91cbd6d172d049aa810e0a17e3a01178.bitwarden.com -carLicense: QEBSCT -departmentNumber: 1683 -employeeType: Normal -homePhone: +1 213 550-9574 -initials: E. M. -mobile: +1 213 331-1967 -pager: +1 213 436-3221 -roomNumber: 9612 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Son Beneda,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Son Beneda -sn: Beneda -description: This is Son Beneda's description -facsimileTelephoneNumber: +1 510 159-1008 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 397-7534 -title: Chief Janitorial Madonna -userPassword: Password1 -uid: BenedaS -givenName: Son -mail: BenedaS@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com -carLicense: E4F2OR -departmentNumber: 1339 -employeeType: Employee -homePhone: +1 510 917-4914 -initials: S. B. -mobile: +1 510 923-2740 -pager: +1 510 730-3291 -roomNumber: 8337 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Grey Mathis,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grey Mathis -sn: Mathis -description: This is Grey Mathis's description -facsimileTelephoneNumber: +1 213 522-5595 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 351-8825 -title: Associate Management Sales Rep -userPassword: Password1 -uid: MathisG -givenName: Grey -mail: MathisG@a199f75806e043a29f88f2704ef795cb.bitwarden.com -carLicense: WAXNRP -departmentNumber: 1516 -employeeType: Employee -homePhone: +1 213 342-5144 -initials: G. M. -mobile: +1 213 475-5999 -pager: +1 213 612-7334 -roomNumber: 9037 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Briney McReady,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Briney McReady -sn: McReady -description: This is Briney McReady's description -facsimileTelephoneNumber: +1 415 664-7490 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 766-7856 -title: Junior Human Resources Manager -userPassword: Password1 -uid: McReadyB -givenName: Briney -mail: McReadyB@39f08fc1ca40404b8801837822a1c019.bitwarden.com -carLicense: NO7PCF -departmentNumber: 2603 -employeeType: Employee -homePhone: +1 415 905-9903 -initials: B. M. -mobile: +1 415 257-1618 -pager: +1 415 157-5143 -roomNumber: 8159 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernhard Brickman -sn: Brickman -description: This is Bernhard Brickman's description -facsimileTelephoneNumber: +1 408 662-7136 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 588-5367 -title: Master Human Resources Engineer -userPassword: Password1 -uid: BrickmaB -givenName: Bernhard -mail: BrickmaB@0dfd1c2a9e584308b69f05d708033865.bitwarden.com -carLicense: XHMMEY -departmentNumber: 2940 -employeeType: Employee -homePhone: +1 408 831-3040 -initials: B. B. -mobile: +1 408 490-8401 -pager: +1 408 932-1539 -roomNumber: 8227 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiphanie Networkroom -sn: Networkroom -description: This is Tiphanie Networkroom's description -facsimileTelephoneNumber: +1 206 670-5973 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 393-3927 -title: Supreme Payroll Grunt -userPassword: Password1 -uid: NetworkT -givenName: Tiphanie -mail: NetworkT@28fca843a5ae4175b7bbc20728951453.bitwarden.com -carLicense: D5KGI4 -departmentNumber: 7781 -employeeType: Contract -homePhone: +1 206 384-5384 -initials: T. N. -mobile: +1 206 426-2510 -pager: +1 206 448-4191 -roomNumber: 9605 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Erle Gravitt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erle Gravitt -sn: Gravitt -description: This is Erle Gravitt's description -facsimileTelephoneNumber: +1 818 710-4192 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 722-2671 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: GravittE -givenName: Erle -mail: GravittE@203540604c5b4cbe8d3ddb3137f9e7ee.bitwarden.com -carLicense: Q7D26Q -departmentNumber: 7466 -employeeType: Normal -homePhone: +1 818 373-3466 -initials: E. G. -mobile: +1 818 662-3933 -pager: +1 818 983-9300 -roomNumber: 9943 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jewel Watchmaker -sn: Watchmaker -description: This is Jewel Watchmaker's description -facsimileTelephoneNumber: +1 804 878-8521 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 974-3243 -title: Master Human Resources Grunt -userPassword: Password1 -uid: WatchmaJ -givenName: Jewel -mail: WatchmaJ@fe07c8e421ca4cd7b23c9c2c841a5e93.bitwarden.com -carLicense: QKBUW5 -departmentNumber: 9125 -employeeType: Normal -homePhone: +1 804 303-9498 -initials: J. W. -mobile: +1 804 329-1570 -pager: +1 804 450-3764 -roomNumber: 8929 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tresrch Valko,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tresrch Valko -sn: Valko -description: This is Tresrch Valko's description -facsimileTelephoneNumber: +1 206 997-7355 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 839-1606 -title: Associate Management Stooge -userPassword: Password1 -uid: ValkoT -givenName: Tresrch -mail: ValkoT@ebf0dcbeda274c399a35e80b52ead9c6.bitwarden.com -carLicense: 2PYR2S -departmentNumber: 1469 -employeeType: Normal -homePhone: +1 206 915-9905 -initials: T. V. -mobile: +1 206 646-2555 -pager: +1 206 736-5504 -roomNumber: 8002 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cherey Braginetz,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherey Braginetz -sn: Braginetz -description: This is Cherey Braginetz's description -facsimileTelephoneNumber: +1 804 501-2911 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 239-4032 -title: Associate Management Developer -userPassword: Password1 -uid: BragineC -givenName: Cherey -mail: BragineC@d753979fad154486ac459615561fae04.bitwarden.com -carLicense: MOQ1OM -departmentNumber: 9379 -employeeType: Contract -homePhone: +1 804 442-2919 -initials: C. B. -mobile: +1 804 249-1940 -pager: +1 804 484-7676 -roomNumber: 8198 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Annadiane Kok,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annadiane Kok -sn: Kok -description: This is Annadiane Kok's description -facsimileTelephoneNumber: +1 804 631-5603 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 456-8679 -title: Chief Payroll President -userPassword: Password1 -uid: KokA -givenName: Annadiane -mail: KokA@4fd308eba088404ab84d4a632c943b2d.bitwarden.com -carLicense: 2JVDH8 -departmentNumber: 9205 -employeeType: Contract -homePhone: +1 804 631-4509 -initials: A. K. -mobile: +1 804 314-5038 -pager: +1 804 446-9446 -roomNumber: 8734 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ozay Dulin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ozay Dulin -sn: Dulin -description: This is Ozay Dulin's description -facsimileTelephoneNumber: +1 206 814-7773 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 523-7772 -title: Supreme Management Manager -userPassword: Password1 -uid: DulinO -givenName: Ozay -mail: DulinO@6d6cd5a839c849eb98fcaf40d89c77e2.bitwarden.com -carLicense: HGMTDU -departmentNumber: 4592 -employeeType: Employee -homePhone: +1 206 747-7509 -initials: O. D. -mobile: +1 206 893-7315 -pager: +1 206 564-2235 -roomNumber: 8116 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Avtar Markle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avtar Markle -sn: Markle -description: This is Avtar Markle's description -facsimileTelephoneNumber: +1 804 641-9801 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 602-4388 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: MarkleA -givenName: Avtar -mail: MarkleA@bf9ca547b016429e8b1013b51e16d909.bitwarden.com -carLicense: BN4EE4 -departmentNumber: 8952 -employeeType: Normal -homePhone: +1 804 557-4788 -initials: A. M. -mobile: +1 804 618-9288 -pager: +1 804 171-1550 -roomNumber: 9810 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mahshad Bachecongi -sn: Bachecongi -description: This is Mahshad Bachecongi's description -facsimileTelephoneNumber: +1 206 808-7311 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 706-6583 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: BachecoM -givenName: Mahshad -mail: BachecoM@0fd4dc879e87454189121973304c8184.bitwarden.com -carLicense: LNNSW6 -departmentNumber: 6294 -employeeType: Contract -homePhone: +1 206 264-5530 -initials: M. B. -mobile: +1 206 218-3235 -pager: +1 206 877-9018 -roomNumber: 9155 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rodi Pettinger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rodi Pettinger -sn: Pettinger -description: This is Rodi Pettinger's description -facsimileTelephoneNumber: +1 213 748-3947 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 127-9779 -title: Supreme Payroll Assistant -userPassword: Password1 -uid: PettingR -givenName: Rodi -mail: PettingR@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com -carLicense: 32I4JJ -departmentNumber: 8779 -employeeType: Normal -homePhone: +1 213 911-5661 -initials: R. P. -mobile: +1 213 323-4826 -pager: +1 213 688-1522 -roomNumber: 8486 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anett Gach,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anett Gach -sn: Gach -description: This is Anett Gach's description -facsimileTelephoneNumber: +1 510 269-3344 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 512-1645 -title: Associate Management Evangelist -userPassword: Password1 -uid: GachA -givenName: Anett -mail: GachA@753cc3c48ad24183b60cde608a41edda.bitwarden.com -carLicense: TCNY4T -departmentNumber: 3475 -employeeType: Normal -homePhone: +1 510 874-3867 -initials: A. G. -mobile: +1 510 546-6971 -pager: +1 510 425-4590 -roomNumber: 8033 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Golda Hanington,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Golda Hanington -sn: Hanington -description: This is Golda Hanington's description -facsimileTelephoneNumber: +1 415 312-8636 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 868-3536 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: HaningtG -givenName: Golda -mail: HaningtG@72dcb42620634cf59fa336b64a03ee7a.bitwarden.com -carLicense: RQ4L3D -departmentNumber: 5620 -employeeType: Normal -homePhone: +1 415 464-5699 -initials: G. H. -mobile: +1 415 828-4852 -pager: +1 415 715-7721 -roomNumber: 9929 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xiaomei Silieff -sn: Silieff -description: This is Xiaomei Silieff's description -facsimileTelephoneNumber: +1 510 412-5022 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 828-7450 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: SilieffX -givenName: Xiaomei -mail: SilieffX@726ecb5497c547bd9a98886468705226.bitwarden.com -carLicense: RBYNLI -departmentNumber: 3155 -employeeType: Employee -homePhone: +1 510 591-9154 -initials: X. S. -mobile: +1 510 809-3684 -pager: +1 510 213-6958 -roomNumber: 8076 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marlyne Shein,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlyne Shein -sn: Shein -description: This is Marlyne Shein's description -facsimileTelephoneNumber: +1 510 102-2271 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 383-7740 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: SheinM -givenName: Marlyne -mail: SheinM@9135ac12963a4f24b390086599e22c6a.bitwarden.com -carLicense: LNCGTB -departmentNumber: 5232 -employeeType: Contract -homePhone: +1 510 260-3074 -initials: M. S. -mobile: +1 510 428-1623 -pager: +1 510 604-4548 -roomNumber: 8998 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Doortje Kennedy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doortje Kennedy -sn: Kennedy -description: This is Doortje Kennedy's description -facsimileTelephoneNumber: +1 408 628-4791 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 418-9779 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: KennedyD -givenName: Doortje -mail: KennedyD@c4980ee808ce471c9fa1c01e63ff6d49.bitwarden.com -carLicense: EFJBPK -departmentNumber: 1828 -employeeType: Contract -homePhone: +1 408 213-7247 -initials: D. K. -mobile: +1 408 805-8944 -pager: +1 408 669-4637 -roomNumber: 8355 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jacenta Pufpaff,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacenta Pufpaff -sn: Pufpaff -description: This is Jacenta Pufpaff's description -facsimileTelephoneNumber: +1 408 874-6860 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 218-4227 -title: Junior Management President -userPassword: Password1 -uid: PufpaffJ -givenName: Jacenta -mail: PufpaffJ@7cddbe59bf50457dab82b34532e65c48.bitwarden.com -carLicense: 0FR8HR -departmentNumber: 2849 -employeeType: Contract -homePhone: +1 408 325-7367 -initials: J. P. -mobile: +1 408 634-4646 -pager: +1 408 477-6957 -roomNumber: 8659 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kirit Steede,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirit Steede -sn: Steede -description: This is Kirit Steede's description -facsimileTelephoneNumber: +1 415 432-6600 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 786-1015 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: SteedeK -givenName: Kirit -mail: SteedeK@e04a5587d2ec44048c4ba8ec3bd3bbfb.bitwarden.com -carLicense: J17EU5 -departmentNumber: 4522 -employeeType: Employee -homePhone: +1 415 239-4716 -initials: K. S. -mobile: +1 415 639-8935 -pager: +1 415 908-9208 -roomNumber: 9549 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Declan McQuaig,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Declan McQuaig -sn: McQuaig -description: This is Declan McQuaig's description -facsimileTelephoneNumber: +1 804 112-2813 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 524-4068 -title: Junior Payroll Stooge -userPassword: Password1 -uid: McQuaigD -givenName: Declan -mail: McQuaigD@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com -carLicense: RVT68O -departmentNumber: 7501 -employeeType: Normal -homePhone: +1 804 911-7324 -initials: D. M. -mobile: +1 804 413-8897 -pager: +1 804 660-8537 -roomNumber: 8320 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fairy Soyster,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fairy Soyster -sn: Soyster -description: This is Fairy Soyster's description -facsimileTelephoneNumber: +1 213 894-1411 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 636-3028 -title: Associate Administrative Evangelist -userPassword: Password1 -uid: SoysterF -givenName: Fairy -mail: SoysterF@4f18c35149c4458281415f92a8183767.bitwarden.com -carLicense: OQ8BXP -departmentNumber: 9294 -employeeType: Employee -homePhone: +1 213 863-3519 -initials: F. S. -mobile: +1 213 960-4328 -pager: +1 213 840-2810 -roomNumber: 8977 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yovonnda Hempinstall -sn: Hempinstall -description: This is Yovonnda Hempinstall's description -facsimileTelephoneNumber: +1 408 928-7157 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 408 358-9619 -title: Chief Janitorial Janitor -userPassword: Password1 -uid: HempinsY -givenName: Yovonnda -mail: HempinsY@7a5a7925311246c29caba8271a6bbf7c.bitwarden.com -carLicense: 60EO5L -departmentNumber: 7053 -employeeType: Normal -homePhone: +1 408 528-4073 -initials: Y. H. -mobile: +1 408 134-3560 -pager: +1 408 575-7847 -roomNumber: 9473 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shashi Vitaglian,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shashi Vitaglian -sn: Vitaglian -description: This is Shashi Vitaglian's description -facsimileTelephoneNumber: +1 408 224-5684 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 379-2944 -title: Chief Management Figurehead -userPassword: Password1 -uid: VitagliS -givenName: Shashi -mail: VitagliS@3a233bee8d41491582f971c2a34ef527.bitwarden.com -carLicense: 1H9F3Q -departmentNumber: 6888 -employeeType: Employee -homePhone: +1 408 252-7469 -initials: S. V. -mobile: +1 408 301-6893 -pager: +1 408 634-7054 -roomNumber: 9388 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Henri Challice,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henri Challice -sn: Challice -description: This is Henri Challice's description -facsimileTelephoneNumber: +1 408 616-9886 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 408 263-9994 -title: Junior Peons Madonna -userPassword: Password1 -uid: ChallicH -givenName: Henri -mail: ChallicH@e646f2536f984f3baa2b805d03bb59c5.bitwarden.com -carLicense: K5098N -departmentNumber: 3832 -employeeType: Contract -homePhone: +1 408 684-6538 -initials: H. C. -mobile: +1 408 711-9879 -pager: +1 408 667-6077 -roomNumber: 9012 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Moreen CSR,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moreen CSR -sn: CSR -description: This is Moreen CSR's description -facsimileTelephoneNumber: +1 804 720-9486 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 556-9769 -title: Chief Human Resources Manager -userPassword: Password1 -uid: CSRM -givenName: Moreen -mail: CSRM@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com -carLicense: 2N78K6 -departmentNumber: 9550 -employeeType: Employee -homePhone: +1 804 724-3751 -initials: M. C. -mobile: +1 804 255-3213 -pager: +1 804 927-4078 -roomNumber: 8779 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Geralene Sabri,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geralene Sabri -sn: Sabri -description: This is Geralene Sabri's description -facsimileTelephoneNumber: +1 408 576-5628 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 408 393-4667 -title: Chief Payroll Janitor -userPassword: Password1 -uid: SabriG -givenName: Geralene -mail: SabriG@34e650ed4f054ffe9f07e59b82b133e2.bitwarden.com -carLicense: J66A7A -departmentNumber: 1664 -employeeType: Employee -homePhone: +1 408 862-6506 -initials: G. S. -mobile: +1 408 594-8282 -pager: +1 408 107-6520 -roomNumber: 9298 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Melhem Sherrer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melhem Sherrer -sn: Sherrer -description: This is Melhem Sherrer's description -facsimileTelephoneNumber: +1 510 982-6187 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 429-9280 -title: Master Product Development Pinhead -userPassword: Password1 -uid: SherrerM -givenName: Melhem -mail: SherrerM@4da7d564972d46f2924a6a8ae018f420.bitwarden.com -carLicense: EC8XI9 -departmentNumber: 9466 -employeeType: Contract -homePhone: +1 510 740-2504 -initials: M. S. -mobile: +1 510 570-5970 -pager: +1 510 864-3233 -roomNumber: 9330 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Coors Lavarnway,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coors Lavarnway -sn: Lavarnway -description: This is Coors Lavarnway's description -facsimileTelephoneNumber: +1 206 294-8016 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 372-8946 -title: Junior Product Development Grunt -userPassword: Password1 -uid: LavarnwC -givenName: Coors -mail: LavarnwC@708a672c33064628b91c3dd2fa37a575.bitwarden.com -carLicense: Q243B5 -departmentNumber: 7825 -employeeType: Contract -homePhone: +1 206 597-7799 -initials: C. L. -mobile: +1 206 295-3498 -pager: +1 206 964-9285 -roomNumber: 8915 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Perrine Kursell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perrine Kursell -sn: Kursell -description: This is Perrine Kursell's description -facsimileTelephoneNumber: +1 213 923-1019 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 270-8345 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: KursellP -givenName: Perrine -mail: KursellP@aff14874002145038419ccad7efa4aff.bitwarden.com -carLicense: Q8NVYC -departmentNumber: 7987 -employeeType: Employee -homePhone: +1 213 449-5849 -initials: P. K. -mobile: +1 213 301-1001 -pager: +1 213 867-5394 -roomNumber: 8385 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alane Lou,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alane Lou -sn: Lou -description: This is Alane Lou's description -facsimileTelephoneNumber: +1 206 370-2417 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 750-4049 -title: Associate Management Warrior -userPassword: Password1 -uid: LouA -givenName: Alane -mail: LouA@4b435cef82e14b3699af7f4cf8872441.bitwarden.com -carLicense: 569DWL -departmentNumber: 5614 -employeeType: Normal -homePhone: +1 206 522-6029 -initials: A. L. -mobile: +1 206 292-1595 -pager: +1 206 460-2384 -roomNumber: 8906 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilhelmine Townsel -sn: Townsel -description: This is Wilhelmine Townsel's description -facsimileTelephoneNumber: +1 408 693-1342 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 986-7032 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: TownselW -givenName: Wilhelmine -mail: TownselW@b3769d1b6e45429ebcc1ae937a2749cb.bitwarden.com -carLicense: YNH9Q3 -departmentNumber: 3881 -employeeType: Employee -homePhone: +1 408 329-3369 -initials: W. T. -mobile: +1 408 889-8565 -pager: +1 408 332-7152 -roomNumber: 9821 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Demet Ince,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Demet Ince -sn: Ince -description: This is Demet Ince's description -facsimileTelephoneNumber: +1 408 953-1374 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 408 778-1683 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: InceD -givenName: Demet -mail: InceD@da0493d79258465a92f6929fa5f9ec32.bitwarden.com -carLicense: VHEEUL -departmentNumber: 5269 -employeeType: Normal -homePhone: +1 408 166-7394 -initials: D. I. -mobile: +1 408 760-4702 -pager: +1 408 545-7733 -roomNumber: 8380 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bev Lineham,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bev Lineham -sn: Lineham -description: This is Bev Lineham's description -facsimileTelephoneNumber: +1 415 411-2203 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 874-9241 -title: Master Payroll Evangelist -userPassword: Password1 -uid: LinehamB -givenName: Bev -mail: LinehamB@943ab680cb9b4c9d8805dc06118922e2.bitwarden.com -carLicense: 2B0DV7 -departmentNumber: 7676 -employeeType: Normal -homePhone: +1 415 838-8480 -initials: B. L. -mobile: +1 415 984-5832 -pager: +1 415 416-4509 -roomNumber: 9900 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Corinna Thorson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corinna Thorson -sn: Thorson -description: This is Corinna Thorson's description -facsimileTelephoneNumber: +1 804 221-1045 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 361-7491 -title: Associate Payroll Madonna -userPassword: Password1 -uid: ThorsonC -givenName: Corinna -mail: ThorsonC@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com -carLicense: PV6D6O -departmentNumber: 4710 -employeeType: Contract -homePhone: +1 804 647-1976 -initials: C. T. -mobile: +1 804 983-7312 -pager: +1 804 789-4676 -roomNumber: 8942 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Daniela Rizk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daniela Rizk -sn: Rizk -description: This is Daniela Rizk's description -facsimileTelephoneNumber: +1 206 500-8113 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 243-4582 -title: Master Administrative Engineer -userPassword: Password1 -uid: RizkD -givenName: Daniela -mail: RizkD@d4562d1fe07448ba9965c2be7e88f80e.bitwarden.com -carLicense: 810W4P -departmentNumber: 3890 -employeeType: Normal -homePhone: +1 206 977-3265 -initials: D. R. -mobile: +1 206 544-5296 -pager: +1 206 972-2150 -roomNumber: 9438 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darcie Oskorep -sn: Oskorep -description: This is Darcie Oskorep's description -facsimileTelephoneNumber: +1 213 962-1813 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 539-2130 -title: Associate Janitorial Mascot -userPassword: Password1 -uid: OskorepD -givenName: Darcie -mail: OskorepD@d809403fc3704b2d9d3f57b70ad276fd.bitwarden.com -carLicense: QNCA1N -departmentNumber: 7820 -employeeType: Normal -homePhone: +1 213 364-9468 -initials: D. O. -mobile: +1 213 728-9163 -pager: +1 213 866-5738 -roomNumber: 8927 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mentor Endsley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mentor Endsley -sn: Endsley -description: This is Mentor Endsley's description -facsimileTelephoneNumber: +1 408 935-9251 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 182-1456 -title: Associate Janitorial Director -userPassword: Password1 -uid: EndsleyM -givenName: Mentor -mail: EndsleyM@339dae1666c141369c4355c1dbcfe99d.bitwarden.com -carLicense: BOCB36 -departmentNumber: 2539 -employeeType: Normal -homePhone: +1 408 352-8496 -initials: M. E. -mobile: +1 408 689-4240 -pager: +1 408 473-7349 -roomNumber: 8788 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=PeyKee Rusin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PeyKee Rusin -sn: Rusin -description: This is PeyKee Rusin's description -facsimileTelephoneNumber: +1 415 683-4163 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 975-6559 -title: Master Payroll Madonna -userPassword: Password1 -uid: RusinP -givenName: PeyKee -mail: RusinP@e164bbc73c0249c881dbd1db3dd138b4.bitwarden.com -carLicense: OBQTMP -departmentNumber: 6110 -employeeType: Normal -homePhone: +1 415 911-1425 -initials: P. R. -mobile: +1 415 431-9086 -pager: +1 415 245-3405 -roomNumber: 9389 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wojciech Zorony,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wojciech Zorony -sn: Zorony -description: This is Wojciech Zorony's description -facsimileTelephoneNumber: +1 415 140-5431 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 577-5955 -title: Supreme Peons Punk -userPassword: Password1 -uid: ZoronyW -givenName: Wojciech -mail: ZoronyW@e2e6ff31723a4db1a62b945f5410fadf.bitwarden.com -carLicense: H2EO23 -departmentNumber: 7026 -employeeType: Contract -homePhone: +1 415 823-7100 -initials: W. Z. -mobile: +1 415 740-4204 -pager: +1 415 209-7991 -roomNumber: 9687 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Juliane Lafata,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juliane Lafata -sn: Lafata -description: This is Juliane Lafata's description -facsimileTelephoneNumber: +1 510 357-3433 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 207-8207 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: LafataJ -givenName: Juliane -mail: LafataJ@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com -carLicense: VXYKDL -departmentNumber: 4376 -employeeType: Normal -homePhone: +1 510 998-4828 -initials: J. L. -mobile: +1 510 420-7734 -pager: +1 510 529-8635 -roomNumber: 9142 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oguz Mombourquette -sn: Mombourquette -description: This is Oguz Mombourquette's description -facsimileTelephoneNumber: +1 818 193-4802 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 571-1442 -title: Junior Administrative Director -userPassword: Password1 -uid: MombourO -givenName: Oguz -mail: MombourO@95a1ee6b5b3f4c268b18ee946c8c10a0.bitwarden.com -carLicense: C5JFM6 -departmentNumber: 1798 -employeeType: Contract -homePhone: +1 818 191-3416 -initials: O. M. -mobile: +1 818 368-7534 -pager: +1 818 126-8745 -roomNumber: 9657 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Buck Willoughby,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Buck Willoughby -sn: Willoughby -description: This is Buck Willoughby's description -facsimileTelephoneNumber: +1 510 696-2985 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 911-1905 -title: Master Janitorial Writer -userPassword: Password1 -uid: WillougB -givenName: Buck -mail: WillougB@a0d2b79a81564204acbc37b6b6efdfe4.bitwarden.com -carLicense: SE2E5A -departmentNumber: 7411 -employeeType: Contract -homePhone: +1 510 673-9408 -initials: B. W. -mobile: +1 510 132-8586 -pager: +1 510 514-2438 -roomNumber: 8930 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Atsushi Bible,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atsushi Bible -sn: Bible -description: This is Atsushi Bible's description -facsimileTelephoneNumber: +1 415 927-6088 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 976-6484 -title: Chief Administrative President -userPassword: Password1 -uid: BibleA -givenName: Atsushi -mail: BibleA@c91b2ddabda245189089b8e227b823b2.bitwarden.com -carLicense: UXD21A -departmentNumber: 7505 -employeeType: Contract -homePhone: +1 415 377-4166 -initials: A. B. -mobile: +1 415 700-7231 -pager: +1 415 495-2137 -roomNumber: 9453 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Veen Graibe,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veen Graibe -sn: Graibe -description: This is Veen Graibe's description -facsimileTelephoneNumber: +1 206 420-8966 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 739-1956 -title: Chief Administrative Engineer -userPassword: Password1 -uid: GraibeV -givenName: Veen -mail: GraibeV@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com -carLicense: W59BS4 -departmentNumber: 6796 -employeeType: Normal -homePhone: +1 206 526-9644 -initials: V. G. -mobile: +1 206 152-7281 -pager: +1 206 924-3493 -roomNumber: 9543 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginnie Mandeville -sn: Mandeville -description: This is Ginnie Mandeville's description -facsimileTelephoneNumber: +1 408 660-7034 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 914-1151 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: MandeviG -givenName: Ginnie -mail: MandeviG@94769a3591824a7c91ce0e683601c159.bitwarden.com -carLicense: QXFXDA -departmentNumber: 9500 -employeeType: Normal -homePhone: +1 408 106-7378 -initials: G. M. -mobile: +1 408 953-7946 -pager: +1 408 308-5293 -roomNumber: 8350 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Juli Poe,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juli Poe -sn: Poe -description: This is Juli Poe's description -facsimileTelephoneNumber: +1 510 284-6917 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 211-8571 -title: Associate Management Sales Rep -userPassword: Password1 -uid: PoeJ -givenName: Juli -mail: PoeJ@121756f8b87b4a8eac937b954ab1cbe2.bitwarden.com -carLicense: 2WBOQN -departmentNumber: 9660 -employeeType: Normal -homePhone: +1 510 225-9559 -initials: J. P. -mobile: +1 510 983-2910 -pager: +1 510 379-8266 -roomNumber: 8213 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Keys Foos,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keys Foos -sn: Foos -description: This is Keys Foos's description -facsimileTelephoneNumber: +1 408 243-7430 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 408-3693 -title: Junior Product Development Grunt -userPassword: Password1 -uid: FoosK -givenName: Keys -mail: FoosK@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com -carLicense: JTCJJB -departmentNumber: 7974 -employeeType: Employee -homePhone: +1 408 621-4363 -initials: K. F. -mobile: +1 408 366-3753 -pager: +1 408 527-1240 -roomNumber: 9446 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hanneke Weil,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanneke Weil -sn: Weil -description: This is Hanneke Weil's description -facsimileTelephoneNumber: +1 206 227-7627 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 188-3165 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: WeilH -givenName: Hanneke -mail: WeilH@d375d17b83f44fc4be3924ad0f54b388.bitwarden.com -carLicense: W3S1U2 -departmentNumber: 5051 -employeeType: Contract -homePhone: +1 206 101-9926 -initials: H. W. -mobile: +1 206 252-8645 -pager: +1 206 381-4068 -roomNumber: 9102 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MichaelMorgan Nassoy -sn: Nassoy -description: This is MichaelMorgan Nassoy's description -facsimileTelephoneNumber: +1 804 432-3019 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 125-2760 -title: Master Product Development Madonna -userPassword: Password1 -uid: NassoyM -givenName: MichaelMorgan -mail: NassoyM@b5bcc4ce776e4805ab4216703177730e.bitwarden.com -carLicense: VQFGJS -departmentNumber: 6944 -employeeType: Employee -homePhone: +1 804 556-5242 -initials: M. N. -mobile: +1 804 785-5916 -pager: +1 804 770-5922 -roomNumber: 8686 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Narrima Kaplan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Narrima Kaplan -sn: Kaplan -description: This is Narrima Kaplan's description -facsimileTelephoneNumber: +1 206 589-9616 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 830-1229 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: KaplanN -givenName: Narrima -mail: KaplanN@3340c10fa973435198296f285f1bf380.bitwarden.com -carLicense: HAPBGT -departmentNumber: 1690 -employeeType: Normal -homePhone: +1 206 274-8981 -initials: N. K. -mobile: +1 206 933-7975 -pager: +1 206 844-9459 -roomNumber: 9037 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nellie Guth,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nellie Guth -sn: Guth -description: This is Nellie Guth's description -facsimileTelephoneNumber: +1 510 216-8797 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 892-4231 -title: Supreme Administrative Technician -userPassword: Password1 -uid: GuthN -givenName: Nellie -mail: GuthN@acd4caa886454500972e2351b4443a5f.bitwarden.com -carLicense: F2XABA -departmentNumber: 1250 -employeeType: Employee -homePhone: +1 510 586-2943 -initials: N. G. -mobile: +1 510 215-7753 -pager: +1 510 646-5517 -roomNumber: 9572 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ermengarde Swact,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ermengarde Swact -sn: Swact -description: This is Ermengarde Swact's description -facsimileTelephoneNumber: +1 510 772-8513 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 393-1699 -title: Chief Payroll Mascot -userPassword: Password1 -uid: SwactE -givenName: Ermengarde -mail: SwactE@5ae024a345a94b5090f63e27d57061d6.bitwarden.com -carLicense: BYO34Q -departmentNumber: 4322 -employeeType: Normal -homePhone: +1 510 182-8664 -initials: E. S. -mobile: +1 510 732-9587 -pager: +1 510 285-5469 -roomNumber: 9932 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carmelo Holley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmelo Holley -sn: Holley -description: This is Carmelo Holley's description -facsimileTelephoneNumber: +1 213 155-4258 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 639-7334 -title: Chief Janitorial Punk -userPassword: Password1 -uid: HolleyC -givenName: Carmelo -mail: HolleyC@2a01d36814a04a9ebc13810183a6b11d.bitwarden.com -carLicense: PUG0X3 -departmentNumber: 7978 -employeeType: Contract -homePhone: +1 213 607-3755 -initials: C. H. -mobile: +1 213 390-5441 -pager: +1 213 753-5298 -roomNumber: 8565 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Virgie Ensign,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Virgie Ensign -sn: Ensign -description: This is Virgie Ensign's description -facsimileTelephoneNumber: +1 213 505-2237 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 968-4322 -title: Master Janitorial Writer -userPassword: Password1 -uid: EnsignV -givenName: Virgie -mail: EnsignV@6af59491c5a74fddb4c99c2f4eaecac5.bitwarden.com -carLicense: M6E5KQ -departmentNumber: 4920 -employeeType: Normal -homePhone: +1 213 713-3593 -initials: V. E. -mobile: +1 213 197-3451 -pager: +1 213 888-4356 -roomNumber: 9284 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vittorio Msg,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vittorio Msg -sn: Msg -description: This is Vittorio Msg's description -facsimileTelephoneNumber: +1 206 564-4745 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 874-6147 -title: Supreme Administrative Vice President -userPassword: Password1 -uid: MsgV -givenName: Vittorio -mail: MsgV@683e25fc9db544c199938de64838b325.bitwarden.com -carLicense: 17SN7V -departmentNumber: 6859 -employeeType: Normal -homePhone: +1 206 735-1037 -initials: V. M. -mobile: +1 206 556-5162 -pager: +1 206 796-1058 -roomNumber: 9836 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ragui Radford,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ragui Radford -sn: Radford -description: This is Ragui Radford's description -facsimileTelephoneNumber: +1 206 304-4395 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 760-2747 -title: Master Management Czar -userPassword: Password1 -uid: RadfordR -givenName: Ragui -mail: RadfordR@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com -carLicense: L2LXJJ -departmentNumber: 7301 -employeeType: Contract -homePhone: +1 206 103-4059 -initials: R. R. -mobile: +1 206 958-1200 -pager: +1 206 994-3888 -roomNumber: 8787 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lusa Wokoma -sn: Wokoma -description: This is Lusa Wokoma's description -facsimileTelephoneNumber: +1 804 490-5232 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 804 325-2352 -title: Junior Product Testing Manager -userPassword: Password1 -uid: WokomaL -givenName: Lusa -mail: WokomaL@b750d8129f2b4a6388d0065112d46a75.bitwarden.com -carLicense: R2WD4C -departmentNumber: 8075 -employeeType: Contract -homePhone: +1 804 528-4327 -initials: L. W. -mobile: +1 804 822-8263 -pager: +1 804 715-7913 -roomNumber: 9618 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Amalia Giertych,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amalia Giertych -sn: Giertych -description: This is Amalia Giertych's description -facsimileTelephoneNumber: +1 415 909-3472 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 424-7227 -title: Master Janitorial Fellow -userPassword: Password1 -uid: GiertycA -givenName: Amalia -mail: GiertycA@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com -carLicense: 8BNNRR -departmentNumber: 7726 -employeeType: Contract -homePhone: +1 415 190-6021 -initials: A. G. -mobile: +1 415 574-8598 -pager: +1 415 741-9028 -roomNumber: 8760 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bert McDougall,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bert McDougall -sn: McDougall -description: This is Bert McDougall's description -facsimileTelephoneNumber: +1 213 196-6624 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 834-8905 -title: Master Peons Warrior -userPassword: Password1 -uid: McDougaB -givenName: Bert -mail: McDougaB@6b490fc40c68440ca61573fe5b83533b.bitwarden.com -carLicense: O89AOR -departmentNumber: 3519 -employeeType: Employee -homePhone: +1 213 953-6135 -initials: B. M. -mobile: +1 213 245-9084 -pager: +1 213 441-1598 -roomNumber: 8660 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cherida Behlen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherida Behlen -sn: Behlen -description: This is Cherida Behlen's description -facsimileTelephoneNumber: +1 408 845-3539 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 477-6913 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: BehlenC -givenName: Cherida -mail: BehlenC@e209292ce8494e20a17431a0c16ad1ce.bitwarden.com -carLicense: HNN3DV -departmentNumber: 9783 -employeeType: Contract -homePhone: +1 408 176-8120 -initials: C. B. -mobile: +1 408 546-7166 -pager: +1 408 823-4027 -roomNumber: 9913 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Willa Brandsen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willa Brandsen -sn: Brandsen -description: This is Willa Brandsen's description -facsimileTelephoneNumber: +1 213 716-5970 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 750-6599 -title: Associate Payroll Figurehead -userPassword: Password1 -uid: BrandseW -givenName: Willa -mail: BrandseW@9b8cc74fde31459a93e65b46f65c8533.bitwarden.com -carLicense: ENP0U3 -departmentNumber: 3869 -employeeType: Normal -homePhone: +1 213 734-9841 -initials: W. B. -mobile: +1 213 524-5395 -pager: +1 213 573-9257 -roomNumber: 8957 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nancey Piggott,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nancey Piggott -sn: Piggott -description: This is Nancey Piggott's description -facsimileTelephoneNumber: +1 818 537-9588 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 818 917-7531 -title: Junior Payroll Architect -userPassword: Password1 -uid: PiggottN -givenName: Nancey -mail: PiggottN@5c7aa17839c348428d1ed0e06a9b190a.bitwarden.com -carLicense: Q0WKNA -departmentNumber: 6803 -employeeType: Normal -homePhone: +1 818 801-3463 -initials: N. P. -mobile: +1 818 320-5224 -pager: +1 818 678-5096 -roomNumber: 9225 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bui Potesta,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bui Potesta -sn: Potesta -description: This is Bui Potesta's description -facsimileTelephoneNumber: +1 510 976-9508 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 866-1510 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: PotestaB -givenName: Bui -mail: PotestaB@a5557159c1c14e57b5492ca45de2de58.bitwarden.com -carLicense: OV4OAO -departmentNumber: 2287 -employeeType: Employee -homePhone: +1 510 942-8274 -initials: B. P. -mobile: +1 510 722-3867 -pager: +1 510 994-1085 -roomNumber: 8685 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilfred Kenyon -sn: Kenyon -description: This is Wilfred Kenyon's description -facsimileTelephoneNumber: +1 510 997-3612 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 857-9605 -title: Master Human Resources Evangelist -userPassword: Password1 -uid: KenyonW -givenName: Wilfred -mail: KenyonW@7a69f72bb5b04c0ba3a5c02cbe85a1be.bitwarden.com -carLicense: E998TP -departmentNumber: 5362 -employeeType: Contract -homePhone: +1 510 578-9335 -initials: W. K. -mobile: +1 510 869-4259 -pager: +1 510 140-4911 -roomNumber: 9669 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Korney NolanMoore -sn: NolanMoore -description: This is Korney NolanMoore's description -facsimileTelephoneNumber: +1 408 219-2391 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 162-1779 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: NolanMoK -givenName: Korney -mail: NolanMoK@b8b19224acee46229ad2985e549b9721.bitwarden.com -carLicense: VH03VD -departmentNumber: 1971 -employeeType: Normal -homePhone: +1 408 213-7364 -initials: K. N. -mobile: +1 408 382-9689 -pager: +1 408 144-2363 -roomNumber: 8464 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ivo Dobbs,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivo Dobbs -sn: Dobbs -description: This is Ivo Dobbs's description -facsimileTelephoneNumber: +1 818 789-1258 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 876-6854 -title: Associate Payroll Warrior -userPassword: Password1 -uid: DobbsI -givenName: Ivo -mail: DobbsI@6db077c0ab9b46b8abf59e4daca54e6a.bitwarden.com -carLicense: FM5WDE -departmentNumber: 5979 -employeeType: Contract -homePhone: +1 818 475-3151 -initials: I. D. -mobile: +1 818 904-7179 -pager: +1 818 100-8236 -roomNumber: 8117 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brigitta Maskell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigitta Maskell -sn: Maskell -description: This is Brigitta Maskell's description -facsimileTelephoneNumber: +1 206 819-7910 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 894-8471 -title: Chief Peons Architect -userPassword: Password1 -uid: MaskellB -givenName: Brigitta -mail: MaskellB@35f9e0ae24c24ec3baa413620b2b7eb4.bitwarden.com -carLicense: HT1LTJ -departmentNumber: 2923 -employeeType: Contract -homePhone: +1 206 891-8847 -initials: B. M. -mobile: +1 206 975-6295 -pager: +1 206 347-1852 -roomNumber: 9700 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kizzee Flickinger -sn: Flickinger -description: This is Kizzee Flickinger's description -facsimileTelephoneNumber: +1 510 405-8842 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 928-3877 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: FlickinK -givenName: Kizzee -mail: FlickinK@a1ff5ce57b0d4a5ab92e5a7972b3c4b0.bitwarden.com -carLicense: 7KMYIY -departmentNumber: 1059 -employeeType: Normal -homePhone: +1 510 795-9833 -initials: K. F. -mobile: +1 510 846-1737 -pager: +1 510 755-2558 -roomNumber: 8112 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nong Polashock,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nong Polashock -sn: Polashock -description: This is Nong Polashock's description -facsimileTelephoneNumber: +1 213 169-6238 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 716-2216 -title: Chief Product Testing Janitor -userPassword: Password1 -uid: PolashoN -givenName: Nong -mail: PolashoN@ec1ddd180ec346c9ac4e8ff1fbae4cee.bitwarden.com -carLicense: R2JON1 -departmentNumber: 3298 -employeeType: Normal -homePhone: +1 213 923-9624 -initials: N. P. -mobile: +1 213 965-1564 -pager: +1 213 707-3368 -roomNumber: 8482 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozanne Cobbold -sn: Cobbold -description: This is Rozanne Cobbold's description -facsimileTelephoneNumber: +1 213 655-1311 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 915-5000 -title: Master Product Testing Architect -userPassword: Password1 -uid: CobboldR -givenName: Rozanne -mail: CobboldR@07b1787368a34e789ce994f0c32f4345.bitwarden.com -carLicense: R3EA29 -departmentNumber: 6168 -employeeType: Normal -homePhone: +1 213 788-4165 -initials: R. C. -mobile: +1 213 437-3000 -pager: +1 213 908-1361 -roomNumber: 9003 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leendert Beaulieu -sn: Beaulieu -description: This is Leendert Beaulieu's description -facsimileTelephoneNumber: +1 206 825-9117 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 239-5029 -title: Chief Product Testing President -userPassword: Password1 -uid: BeaulieL -givenName: Leendert -mail: BeaulieL@c2a256a75eaf4a37b7136ba6b0518b6c.bitwarden.com -carLicense: S2TSBF -departmentNumber: 2187 -employeeType: Normal -homePhone: +1 206 272-6926 -initials: L. B. -mobile: +1 206 187-8543 -pager: +1 206 117-6352 -roomNumber: 9419 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gisele Forbes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gisele Forbes -sn: Forbes -description: This is Gisele Forbes's description -facsimileTelephoneNumber: +1 408 325-9291 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 904-8303 -title: Associate Product Testing Developer -userPassword: Password1 -uid: ForbesG -givenName: Gisele -mail: ForbesG@232786cf6be745b08d532519f75fd65e.bitwarden.com -carLicense: NTF1NH -departmentNumber: 7612 -employeeType: Normal -homePhone: +1 408 213-8079 -initials: G. F. -mobile: +1 408 466-4596 -pager: +1 408 535-2333 -roomNumber: 8656 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beverly Chaintreuil -sn: Chaintreuil -description: This is Beverly Chaintreuil's description -facsimileTelephoneNumber: +1 213 432-3149 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 836-2463 -title: Junior Administrative Consultant -userPassword: Password1 -uid: ChaintrB -givenName: Beverly -mail: ChaintrB@75be32b1be62419e90c08307d5bdff60.bitwarden.com -carLicense: Q4IGH0 -departmentNumber: 3341 -employeeType: Employee -homePhone: +1 213 888-8908 -initials: B. C. -mobile: +1 213 345-2701 -pager: +1 213 839-2752 -roomNumber: 9297 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Madonna Sheu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madonna Sheu -sn: Sheu -description: This is Madonna Sheu's description -facsimileTelephoneNumber: +1 408 294-8628 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 283-2865 -title: Supreme Management Technician -userPassword: Password1 -uid: SheuM -givenName: Madonna -mail: SheuM@5466c54e889b4267baf9470fe7add9b1.bitwarden.com -carLicense: 8MSN6Y -departmentNumber: 7740 -employeeType: Normal -homePhone: +1 408 401-9978 -initials: M. S. -mobile: +1 408 695-4381 -pager: +1 408 591-3101 -roomNumber: 8710 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dzung Evans,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dzung Evans -sn: Evans -description: This is Dzung Evans's description -facsimileTelephoneNumber: +1 415 842-2222 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 415 636-4419 -title: Associate Human Resources Manager -userPassword: Password1 -uid: EvansD -givenName: Dzung -mail: EvansD@ca8f4832ccb34eecb660b444c29c036c.bitwarden.com -carLicense: 095A95 -departmentNumber: 8772 -employeeType: Employee -homePhone: +1 415 671-2813 -initials: D. E. -mobile: +1 415 954-1670 -pager: +1 415 860-1187 -roomNumber: 8295 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hermione Delf,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermione Delf -sn: Delf -description: This is Hermione Delf's description -facsimileTelephoneNumber: +1 804 797-3916 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 529-7479 -title: Junior Product Development Admin -userPassword: Password1 -uid: DelfH -givenName: Hermione -mail: DelfH@2b27acc969e94cf2aa1e0ddf34189475.bitwarden.com -carLicense: 6DWLI7 -departmentNumber: 7723 -employeeType: Contract -homePhone: +1 804 280-1241 -initials: H. D. -mobile: +1 804 379-7596 -pager: +1 804 521-5464 -roomNumber: 9395 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Somsak Dansereau -sn: Dansereau -description: This is Somsak Dansereau's description -facsimileTelephoneNumber: +1 804 763-3410 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 423-8548 -title: Chief Product Testing Manager -userPassword: Password1 -uid: DansereS -givenName: Somsak -mail: DansereS@181e7c5d669f48eca80875ae007e40bd.bitwarden.com -carLicense: 5UDYFD -departmentNumber: 7335 -employeeType: Contract -homePhone: +1 804 838-2558 -initials: S. D. -mobile: +1 804 130-1958 -pager: +1 804 525-5695 -roomNumber: 8486 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Koray Deleon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koray Deleon -sn: Deleon -description: This is Koray Deleon's description -facsimileTelephoneNumber: +1 206 652-3632 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 206 741-4716 -title: Supreme Human Resources Pinhead -userPassword: Password1 -uid: DeleonK -givenName: Koray -mail: DeleonK@46baf5a1236843538b25328b706d56d5.bitwarden.com -carLicense: VDM2IT -departmentNumber: 6950 -employeeType: Contract -homePhone: +1 206 819-1391 -initials: K. D. -mobile: +1 206 745-8480 -pager: +1 206 614-1483 -roomNumber: 9133 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Korie Swinks,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Korie Swinks -sn: Swinks -description: This is Korie Swinks's description -facsimileTelephoneNumber: +1 415 248-7780 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 548-6998 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: SwinksK -givenName: Korie -mail: SwinksK@abac4d1589c04140a0e454484535ad15.bitwarden.com -carLicense: BM9DJB -departmentNumber: 4176 -employeeType: Normal -homePhone: +1 415 486-8590 -initials: K. S. -mobile: +1 415 781-3968 -pager: +1 415 744-1092 -roomNumber: 8383 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wynnie Joyce,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wynnie Joyce -sn: Joyce -description: This is Wynnie Joyce's description -facsimileTelephoneNumber: +1 213 664-7735 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 970-1972 -title: Associate Peons Admin -userPassword: Password1 -uid: JoyceW -givenName: Wynnie -mail: JoyceW@f48984d7e7db42f4891e864fa2c4158a.bitwarden.com -carLicense: K9BVGB -departmentNumber: 3180 -employeeType: Normal -homePhone: +1 213 516-2047 -initials: W. J. -mobile: +1 213 167-9433 -pager: +1 213 553-1802 -roomNumber: 8562 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Teetwo Jarman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teetwo Jarman -sn: Jarman -description: This is Teetwo Jarman's description -facsimileTelephoneNumber: +1 415 907-9098 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 116-7824 -title: Chief Management Punk -userPassword: Password1 -uid: JarmanT -givenName: Teetwo -mail: JarmanT@5fc1a3cb7d794193b94e35fbd63bc6e8.bitwarden.com -carLicense: GT4J73 -departmentNumber: 6624 -employeeType: Employee -homePhone: +1 415 110-3767 -initials: T. J. -mobile: +1 415 822-6355 -pager: +1 415 850-8079 -roomNumber: 9415 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Flss Daquano,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flss Daquano -sn: Daquano -description: This is Flss Daquano's description -facsimileTelephoneNumber: +1 804 164-9682 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 307-7446 -title: Master Product Testing Grunt -userPassword: Password1 -uid: DaquanoF -givenName: Flss -mail: DaquanoF@f9f1d010b27b497284c7d10a3ee24be1.bitwarden.com -carLicense: 0E47SS -departmentNumber: 9210 -employeeType: Employee -homePhone: +1 804 431-1006 -initials: F. D. -mobile: +1 804 641-8910 -pager: +1 804 553-9515 -roomNumber: 8511 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Doc Frederick,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doc Frederick -sn: Frederick -description: This is Doc Frederick's description -facsimileTelephoneNumber: +1 415 520-2530 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 799-4918 -title: Supreme Human Resources Pinhead -userPassword: Password1 -uid: FrederiD -givenName: Doc -mail: FrederiD@910237fae0394e20b1bd8e8be3e49be6.bitwarden.com -carLicense: UU78D9 -departmentNumber: 7177 -employeeType: Normal -homePhone: +1 415 765-1703 -initials: D. F. -mobile: +1 415 863-3354 -pager: +1 415 291-5536 -roomNumber: 9223 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hellmut Harrod,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hellmut Harrod -sn: Harrod -description: This is Hellmut Harrod's description -facsimileTelephoneNumber: +1 415 302-7440 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 791-3202 -title: Associate Product Development Fellow -userPassword: Password1 -uid: HarrodH -givenName: Hellmut -mail: HarrodH@a5a91129e0ba4691a9ff41395fb1c999.bitwarden.com -carLicense: ODWTK4 -departmentNumber: 9182 -employeeType: Employee -homePhone: +1 415 734-2546 -initials: H. H. -mobile: +1 415 427-4360 -pager: +1 415 217-8836 -roomNumber: 8709 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kelcie Uchida,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelcie Uchida -sn: Uchida -description: This is Kelcie Uchida's description -facsimileTelephoneNumber: +1 408 593-1648 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 949-1696 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: UchidaK -givenName: Kelcie -mail: UchidaK@127f75e34fa94456a07c8ec8f332f580.bitwarden.com -carLicense: 36H627 -departmentNumber: 3011 -employeeType: Employee -homePhone: +1 408 464-7880 -initials: K. U. -mobile: +1 408 499-7661 -pager: +1 408 979-5386 -roomNumber: 8592 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Oksana Sitler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oksana Sitler -sn: Sitler -description: This is Oksana Sitler's description -facsimileTelephoneNumber: +1 213 409-3709 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 481-6217 -title: Master Product Development Assistant -userPassword: Password1 -uid: SitlerO -givenName: Oksana -mail: SitlerO@6ce8963e36d24b6b992ec2839a5706bf.bitwarden.com -carLicense: OGL9N6 -departmentNumber: 7346 -employeeType: Contract -homePhone: +1 213 229-7912 -initials: O. S. -mobile: +1 213 954-2770 -pager: +1 213 346-9547 -roomNumber: 8682 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vitia Dacre,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vitia Dacre -sn: Dacre -description: This is Vitia Dacre's description -facsimileTelephoneNumber: +1 408 185-9101 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 698-6492 -title: Master Payroll Artist -userPassword: Password1 -uid: DacreV -givenName: Vitia -mail: DacreV@dde5fb6e4b074693aad4d3211880997e.bitwarden.com -carLicense: OIWAEI -departmentNumber: 9012 -employeeType: Employee -homePhone: +1 408 974-3262 -initials: V. D. -mobile: +1 408 670-4404 -pager: +1 408 924-5265 -roomNumber: 8438 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanjoy Vella -sn: Vella -description: This is Sanjoy Vella's description -facsimileTelephoneNumber: +1 206 403-2380 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 126-5845 -title: Master Product Testing Manager -userPassword: Password1 -uid: VellaS -givenName: Sanjoy -mail: VellaS@850db1da58bd42079908c4f0bd25aebc.bitwarden.com -carLicense: 9I06NP -departmentNumber: 6555 -employeeType: Normal -homePhone: +1 206 202-1904 -initials: S. V. -mobile: +1 206 927-2987 -pager: +1 206 146-4951 -roomNumber: 8740 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Housseini Jolicoeur -sn: Jolicoeur -description: This is Housseini Jolicoeur's description -facsimileTelephoneNumber: +1 510 829-4704 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 977-1988 -title: Master Payroll Developer -userPassword: Password1 -uid: JolicoeH -givenName: Housseini -mail: JolicoeH@193a813b90bf4054a776a2e46081339c.bitwarden.com -carLicense: JLHKF4 -departmentNumber: 6690 -employeeType: Normal -homePhone: +1 510 339-9963 -initials: H. J. -mobile: +1 510 984-4235 -pager: +1 510 652-2224 -roomNumber: 8146 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Carly Cencier,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carly Cencier -sn: Cencier -description: This is Carly Cencier's description -facsimileTelephoneNumber: +1 510 125-5960 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 812-9748 -title: Chief Management Consultant -userPassword: Password1 -uid: CencierC -givenName: Carly -mail: CencierC@7673bf0b891540b586de1703874cedb9.bitwarden.com -carLicense: YUE6YM -departmentNumber: 6392 -employeeType: Contract -homePhone: +1 510 348-4469 -initials: C. C. -mobile: +1 510 967-2772 -pager: +1 510 748-8419 -roomNumber: 8469 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Loc Sochovka,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loc Sochovka -sn: Sochovka -description: This is Loc Sochovka's description -facsimileTelephoneNumber: +1 818 132-9619 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 925-2879 -title: Supreme Human Resources Janitor -userPassword: Password1 -uid: SochovkL -givenName: Loc -mail: SochovkL@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com -carLicense: 0WO2XT -departmentNumber: 1225 -employeeType: Contract -homePhone: +1 818 544-8846 -initials: L. S. -mobile: +1 818 877-7213 -pager: +1 818 635-2755 -roomNumber: 8160 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tonye Lenox,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonye Lenox -sn: Lenox -description: This is Tonye Lenox's description -facsimileTelephoneNumber: +1 415 288-5474 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 273-5139 -title: Associate Payroll Stooge -userPassword: Password1 -uid: LenoxT -givenName: Tonye -mail: LenoxT@02869e10b5974489814843ac717e10a8.bitwarden.com -carLicense: 0YURS2 -departmentNumber: 9858 -employeeType: Normal -homePhone: +1 415 716-2233 -initials: T. L. -mobile: +1 415 817-2300 -pager: +1 415 630-8007 -roomNumber: 9001 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Olly Ooi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olly Ooi -sn: Ooi -description: This is Olly Ooi's description -facsimileTelephoneNumber: +1 415 374-2570 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 240-2144 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: OoiO -givenName: Olly -mail: OoiO@49fe706dbe7849f2b9658de63b5fdca6.bitwarden.com -carLicense: R162OO -departmentNumber: 9534 -employeeType: Normal -homePhone: +1 415 853-3509 -initials: O. O. -mobile: +1 415 445-9800 -pager: +1 415 357-8642 -roomNumber: 8083 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Margie Herman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margie Herman -sn: Herman -description: This is Margie Herman's description -facsimileTelephoneNumber: +1 818 384-1408 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 641-5093 -title: Chief Administrative Developer -userPassword: Password1 -uid: HermanM -givenName: Margie -mail: HermanM@26ea76142f2a4637b028d1aa71d30271.bitwarden.com -carLicense: MLLHYT -departmentNumber: 7134 -employeeType: Normal -homePhone: +1 818 964-5670 -initials: M. H. -mobile: +1 818 152-5752 -pager: +1 818 995-1591 -roomNumber: 9548 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Giustina Farrington,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giustina Farrington -sn: Farrington -description: This is Giustina Farrington's description -facsimileTelephoneNumber: +1 213 455-2683 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 963-3907 -title: Junior Payroll Manager -userPassword: Password1 -uid: FarringG -givenName: Giustina -mail: FarringG@43156b01c6bc494fbc8570d9a5003fc5.bitwarden.com -carLicense: 4WXS2M -departmentNumber: 2560 -employeeType: Employee -homePhone: +1 213 949-4795 -initials: G. F. -mobile: +1 213 255-9414 -pager: +1 213 706-6980 -roomNumber: 9051 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deane Bellehumeur -sn: Bellehumeur -description: This is Deane Bellehumeur's description -facsimileTelephoneNumber: +1 213 803-3031 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 157-6539 -title: Junior Janitorial Technician -userPassword: Password1 -uid: BellehuD -givenName: Deane -mail: BellehuD@cefc491b1b064419a5c03c35fa4c9c33.bitwarden.com -carLicense: 8IPRLC -departmentNumber: 7777 -employeeType: Employee -homePhone: +1 213 744-9645 -initials: D. B. -mobile: +1 213 130-1394 -pager: +1 213 393-4284 -roomNumber: 8634 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Liviu Fisprod,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liviu Fisprod -sn: Fisprod -description: This is Liviu Fisprod's description -facsimileTelephoneNumber: +1 206 973-7498 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 206 367-9237 -title: Associate Management Warrior -userPassword: Password1 -uid: FisprodL -givenName: Liviu -mail: FisprodL@518da73225eb4a77959fb191daf72b49.bitwarden.com -carLicense: 61IM40 -departmentNumber: 4209 -employeeType: Normal -homePhone: +1 206 658-2684 -initials: L. F. -mobile: +1 206 674-4459 -pager: +1 206 513-2601 -roomNumber: 8780 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hana JeeHowe -sn: JeeHowe -description: This is Hana JeeHowe's description -facsimileTelephoneNumber: +1 408 600-5692 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 408 497-3039 -title: Junior Janitorial Artist -userPassword: Password1 -uid: JeeHoweH -givenName: Hana -mail: JeeHoweH@f8b5ec3dd78f44e3bd6de92c22b0edfc.bitwarden.com -carLicense: I0E0R3 -departmentNumber: 1190 -employeeType: Contract -homePhone: +1 408 647-4482 -initials: H. J. -mobile: +1 408 668-9668 -pager: +1 408 556-2697 -roomNumber: 8588 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alfons Toothman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alfons Toothman -sn: Toothman -description: This is Alfons Toothman's description -facsimileTelephoneNumber: +1 206 355-6651 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 206 847-4624 -title: Supreme Payroll President -userPassword: Password1 -uid: ToothmaA -givenName: Alfons -mail: ToothmaA@b3c93053c0224253988d5c3b976abcae.bitwarden.com -carLicense: VIINKQ -departmentNumber: 9227 -employeeType: Contract -homePhone: +1 206 814-7321 -initials: A. T. -mobile: +1 206 580-9717 -pager: +1 206 708-3915 -roomNumber: 9924 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ronica Espinosa,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronica Espinosa -sn: Espinosa -description: This is Ronica Espinosa's description -facsimileTelephoneNumber: +1 408 248-6199 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 408 956-6556 -title: Chief Administrative Madonna -userPassword: Password1 -uid: EspinosR -givenName: Ronica -mail: EspinosR@9dcbe58177c3454c992be9f2bcd770bc.bitwarden.com -carLicense: GGJDE0 -departmentNumber: 8817 -employeeType: Contract -homePhone: +1 408 751-2477 -initials: R. E. -mobile: +1 408 451-5224 -pager: +1 408 168-1511 -roomNumber: 8006 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeane Yuhanna,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeane Yuhanna -sn: Yuhanna -description: This is Jeane Yuhanna's description -facsimileTelephoneNumber: +1 510 125-7812 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 308-8735 -title: Chief Peons Punk -userPassword: Password1 -uid: YuhannaJ -givenName: Jeane -mail: YuhannaJ@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com -carLicense: B2Y9IL -departmentNumber: 5681 -employeeType: Contract -homePhone: +1 510 196-2802 -initials: J. Y. -mobile: +1 510 592-2784 -pager: +1 510 368-2803 -roomNumber: 8088 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Paulien Misutka,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulien Misutka -sn: Misutka -description: This is Paulien Misutka's description -facsimileTelephoneNumber: +1 206 719-5983 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 204-7084 -title: Supreme Management Engineer -userPassword: Password1 -uid: MisutkaP -givenName: Paulien -mail: MisutkaP@1eca82e8a13846f79eca4d8e3955a909.bitwarden.com -carLicense: FDUHDC -departmentNumber: 2918 -employeeType: Employee -homePhone: +1 206 840-7466 -initials: P. M. -mobile: +1 206 554-8312 -pager: +1 206 472-1312 -roomNumber: 8477 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Humberto Azevedo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Humberto Azevedo -sn: Azevedo -description: This is Humberto Azevedo's description -facsimileTelephoneNumber: +1 415 377-7634 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 451-6963 -title: Master Management Punk -userPassword: Password1 -uid: AzevedoH -givenName: Humberto -mail: AzevedoH@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com -carLicense: QYXOYN -departmentNumber: 4602 -employeeType: Contract -homePhone: +1 415 795-6594 -initials: H. A. -mobile: +1 415 870-6082 -pager: +1 415 302-3962 -roomNumber: 8173 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cissy Benning,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cissy Benning -sn: Benning -description: This is Cissy Benning's description -facsimileTelephoneNumber: +1 206 792-7422 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 528-3913 -title: Master Administrative Stooge -userPassword: Password1 -uid: BenningC -givenName: Cissy -mail: BenningC@b1455661bd7543dbbba61526147b93a9.bitwarden.com -carLicense: SOBLGP -departmentNumber: 3837 -employeeType: Employee -homePhone: +1 206 991-8345 -initials: C. B. -mobile: +1 206 340-7414 -pager: +1 206 610-5390 -roomNumber: 8875 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorletha Schonberger -sn: Schonberger -description: This is Lorletha Schonberger's description -facsimileTelephoneNumber: +1 213 354-4694 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 213 446-2826 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: SchonbeL -givenName: Lorletha -mail: SchonbeL@05749581377d47ba8047ee7237ce7f83.bitwarden.com -carLicense: MULNEA -departmentNumber: 2182 -employeeType: Contract -homePhone: +1 213 946-7316 -initials: L. S. -mobile: +1 213 729-4793 -pager: +1 213 191-9589 -roomNumber: 8249 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vacman Beaudet -sn: Beaudet -description: This is Vacman Beaudet's description -facsimileTelephoneNumber: +1 510 885-3966 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 510 537-8906 -title: Chief Human Resources Czar -userPassword: Password1 -uid: BeaudetV -givenName: Vacman -mail: BeaudetV@20652fd58932448b926b6d40287545d2.bitwarden.com -carLicense: MEIDKH -departmentNumber: 8195 -employeeType: Contract -homePhone: +1 510 525-9232 -initials: V. B. -mobile: +1 510 892-2930 -pager: +1 510 286-2445 -roomNumber: 8073 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gib Gouhara,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gib Gouhara -sn: Gouhara -description: This is Gib Gouhara's description -facsimileTelephoneNumber: +1 213 676-8906 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 661-7189 -title: Associate Administrative Pinhead -userPassword: Password1 -uid: GouharaG -givenName: Gib -mail: GouharaG@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com -carLicense: Q6TXKW -departmentNumber: 7064 -employeeType: Contract -homePhone: +1 213 508-4565 -initials: G. G. -mobile: +1 213 265-8553 -pager: +1 213 133-2612 -roomNumber: 9284 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ameline Ikotin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ameline Ikotin -sn: Ikotin -description: This is Ameline Ikotin's description -facsimileTelephoneNumber: +1 510 934-2641 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 694-7715 -title: Chief Management Assistant -userPassword: Password1 -uid: IkotinA -givenName: Ameline -mail: IkotinA@5c6902554d684605823ee60bd0935275.bitwarden.com -carLicense: AADECI -departmentNumber: 2222 -employeeType: Employee -homePhone: +1 510 671-8627 -initials: A. I. -mobile: +1 510 116-4731 -pager: +1 510 404-7482 -roomNumber: 8808 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Johanne Coloads,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johanne Coloads -sn: Coloads -description: This is Johanne Coloads's description -facsimileTelephoneNumber: +1 804 194-1186 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 471-3124 -title: Master Administrative President -userPassword: Password1 -uid: ColoadsJ -givenName: Johanne -mail: ColoadsJ@acd4caa886454500972e2351b4443a5f.bitwarden.com -carLicense: EPT98V -departmentNumber: 7906 -employeeType: Employee -homePhone: +1 804 808-7814 -initials: J. C. -mobile: +1 804 714-4649 -pager: +1 804 838-1295 -roomNumber: 8162 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Germaine Sabri,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Germaine Sabri -sn: Sabri -description: This is Germaine Sabri's description -facsimileTelephoneNumber: +1 213 268-7745 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 151-4074 -title: Junior Management Architect -userPassword: Password1 -uid: SabriG -givenName: Germaine -mail: SabriG@207e1d82de324f5b9c63fc14e33c9595.bitwarden.com -carLicense: FOF98X -departmentNumber: 4909 -employeeType: Employee -homePhone: +1 213 218-9951 -initials: G. S. -mobile: +1 213 607-3285 -pager: +1 213 759-3943 -roomNumber: 9010 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Justine Gramiak,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Justine Gramiak -sn: Gramiak -description: This is Justine Gramiak's description -facsimileTelephoneNumber: +1 408 626-8921 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 621-7582 -title: Supreme Peons Mascot -userPassword: Password1 -uid: GramiakJ -givenName: Justine -mail: GramiakJ@4fd308eba088404ab84d4a632c943b2d.bitwarden.com -carLicense: 93VE2N -departmentNumber: 2541 -employeeType: Employee -homePhone: +1 408 245-5139 -initials: J. G. -mobile: +1 408 254-9454 -pager: +1 408 816-3670 -roomNumber: 8094 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Selma Coxe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selma Coxe -sn: Coxe -description: This is Selma Coxe's description -facsimileTelephoneNumber: +1 415 816-9504 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 987-1011 -title: Junior Payroll Consultant -userPassword: Password1 -uid: CoxeS -givenName: Selma -mail: CoxeS@7336ab4f2ede4dc9a7be8d102b8fa46f.bitwarden.com -carLicense: I4CK7I -departmentNumber: 6956 -employeeType: Normal -homePhone: +1 415 481-2976 -initials: S. C. -mobile: +1 415 598-7448 -pager: +1 415 585-5823 -roomNumber: 8119 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nga Hoag,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nga Hoag -sn: Hoag -description: This is Nga Hoag's description -facsimileTelephoneNumber: +1 408 585-3292 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 408 252-2536 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: HoagN -givenName: Nga -mail: HoagN@759d634715d84fd98852f9030d6bb1fd.bitwarden.com -carLicense: RWLRM0 -departmentNumber: 9017 -employeeType: Contract -homePhone: +1 408 151-6022 -initials: N. H. -mobile: +1 408 834-2269 -pager: +1 408 223-6428 -roomNumber: 8323 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanPaul Bcs -sn: Bcs -description: This is JeanPaul Bcs's description -facsimileTelephoneNumber: +1 804 878-5004 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 818-9774 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: BcsJ -givenName: JeanPaul -mail: BcsJ@9be954e44923466fa24be9ef8ce9bc6a.bitwarden.com -carLicense: 66S1H5 -departmentNumber: 3018 -employeeType: Employee -homePhone: +1 804 938-8146 -initials: J. B. -mobile: +1 804 311-2629 -pager: +1 804 264-2403 -roomNumber: 9172 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Claudette Towers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claudette Towers -sn: Towers -description: This is Claudette Towers's description -facsimileTelephoneNumber: +1 818 457-2472 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 241-1329 -title: Master Payroll Architect -userPassword: Password1 -uid: TowersC -givenName: Claudette -mail: TowersC@19cb9d22e4184ceea78aafbb98426e0d.bitwarden.com -carLicense: HQLJ66 -departmentNumber: 7139 -employeeType: Employee -homePhone: +1 818 741-2374 -initials: C. T. -mobile: +1 818 445-9409 -pager: +1 818 844-5901 -roomNumber: 8497 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hala VanDenKieboom -sn: VanDenKieboom -description: This is Hala VanDenKieboom's description -facsimileTelephoneNumber: +1 804 839-9109 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 785-9813 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: VanDenKH -givenName: Hala -mail: VanDenKH@edc642e0d4114142a514590d284702bf.bitwarden.com -carLicense: F4XT5C -departmentNumber: 9139 -employeeType: Normal -homePhone: +1 804 519-5569 -initials: H. V. -mobile: +1 804 617-8728 -pager: +1 804 187-8840 -roomNumber: 8740 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Wilhelmina Yardy,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilhelmina Yardy -sn: Yardy -description: This is Wilhelmina Yardy's description -facsimileTelephoneNumber: +1 510 507-8544 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 849-1813 -title: Chief Management Evangelist -userPassword: Password1 -uid: YardyW -givenName: Wilhelmina -mail: YardyW@03dd1842eed94795a2debd8504958a83.bitwarden.com -carLicense: UWS2CC -departmentNumber: 7350 -employeeType: Employee -homePhone: +1 510 617-4006 -initials: W. Y. -mobile: +1 510 983-7948 -pager: +1 510 109-3949 -roomNumber: 8790 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Farooq Rosche,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farooq Rosche -sn: Rosche -description: This is Farooq Rosche's description -facsimileTelephoneNumber: +1 804 466-4443 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 249-8498 -title: Associate Product Testing Czar -userPassword: Password1 -uid: RoscheF -givenName: Farooq -mail: RoscheF@1871a69ca6234f999f51d3a9b4eb4578.bitwarden.com -carLicense: 9FYC8D -departmentNumber: 2321 -employeeType: Employee -homePhone: +1 804 926-8811 -initials: F. R. -mobile: +1 804 618-9609 -pager: +1 804 219-8874 -roomNumber: 8020 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joannie Kornachuk -sn: Kornachuk -description: This is Joannie Kornachuk's description -facsimileTelephoneNumber: +1 415 162-7099 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 102-9459 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: KornachJ -givenName: Joannie -mail: KornachJ@d73357acec7c4a888c336fde87967132.bitwarden.com -carLicense: JST82N -departmentNumber: 2006 -employeeType: Normal -homePhone: +1 415 345-6858 -initials: J. K. -mobile: +1 415 131-9824 -pager: +1 415 697-2985 -roomNumber: 9843 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Elyssa Schvan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elyssa Schvan -sn: Schvan -description: This is Elyssa Schvan's description -facsimileTelephoneNumber: +1 408 551-4846 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 701-1017 -title: Junior Peons Director -userPassword: Password1 -uid: SchvanE -givenName: Elyssa -mail: SchvanE@52c6c82549d445678721da442aca8e53.bitwarden.com -carLicense: FHGFJ9 -departmentNumber: 1701 -employeeType: Normal -homePhone: +1 408 746-5588 -initials: E. S. -mobile: +1 408 858-5148 -pager: +1 408 874-3815 -roomNumber: 8016 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Phoenix Jims,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phoenix Jims -sn: Jims -description: This is Phoenix Jims's description -facsimileTelephoneNumber: +1 818 860-2325 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 478-2879 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: JimsP -givenName: Phoenix -mail: JimsP@c68b993f950f4e2f86efe0dfd639b00c.bitwarden.com -carLicense: LABM3H -departmentNumber: 4982 -employeeType: Contract -homePhone: +1 818 984-4103 -initials: P. J. -mobile: +1 818 443-3162 -pager: +1 818 813-2803 -roomNumber: 8328 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChristieAnne Klassen -sn: Klassen -description: This is ChristieAnne Klassen's description -facsimileTelephoneNumber: +1 510 925-7085 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 962-3561 -title: Junior Product Development Visionary -userPassword: Password1 -uid: KlassenC -givenName: ChristieAnne -mail: KlassenC@1b5d8352bac64038b1e8fc921d81a384.bitwarden.com -carLicense: KQ5ALA -departmentNumber: 1675 -employeeType: Contract -homePhone: +1 510 797-1679 -initials: C. K. -mobile: +1 510 615-4169 -pager: +1 510 277-1055 -roomNumber: 9867 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sosanna Flickinger -sn: Flickinger -description: This is Sosanna Flickinger's description -facsimileTelephoneNumber: +1 213 421-1908 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 291-4174 -title: Chief Janitorial President -userPassword: Password1 -uid: FlickinS -givenName: Sosanna -mail: FlickinS@fa9b1528fbb74720b69f2a879f936284.bitwarden.com -carLicense: 2YGO2E -departmentNumber: 7734 -employeeType: Normal -homePhone: +1 213 595-9274 -initials: S. F. -mobile: +1 213 624-1926 -pager: +1 213 588-2448 -roomNumber: 9783 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guillema Allahdin -sn: Allahdin -description: This is Guillema Allahdin's description -facsimileTelephoneNumber: +1 408 996-5434 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 846-6999 -title: Master Janitorial Admin -userPassword: Password1 -uid: AllahdiG -givenName: Guillema -mail: AllahdiG@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com -carLicense: GU1FCK -departmentNumber: 2758 -employeeType: Normal -homePhone: +1 408 919-9542 -initials: G. A. -mobile: +1 408 836-9259 -pager: +1 408 567-1355 -roomNumber: 8420 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Melesa Kaypour,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melesa Kaypour -sn: Kaypour -description: This is Melesa Kaypour's description -facsimileTelephoneNumber: +1 818 202-1934 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 291-7142 -title: Associate Product Development Consultant -userPassword: Password1 -uid: KaypourM -givenName: Melesa -mail: KaypourM@cbf7358079f24e3ab0356b9f914cfc7f.bitwarden.com -carLicense: CKH7WU -departmentNumber: 9811 -employeeType: Employee -homePhone: +1 818 783-8092 -initials: M. K. -mobile: +1 818 768-2736 -pager: +1 818 961-1641 -roomNumber: 9069 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shoji Truelove,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shoji Truelove -sn: Truelove -description: This is Shoji Truelove's description -facsimileTelephoneNumber: +1 206 672-4476 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 206 704-7314 -title: Chief Janitorial Admin -userPassword: Password1 -uid: TruelovS -givenName: Shoji -mail: TruelovS@8240df43b5e045ccb33a1c30532dbedd.bitwarden.com -carLicense: QWG72H -departmentNumber: 7711 -employeeType: Contract -homePhone: +1 206 432-2249 -initials: S. T. -mobile: +1 206 417-2484 -pager: +1 206 932-1610 -roomNumber: 9627 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Turus Risto,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Turus Risto -sn: Risto -description: This is Turus Risto's description -facsimileTelephoneNumber: +1 206 942-3032 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 540-3399 -title: Supreme Management Artist -userPassword: Password1 -uid: RistoT -givenName: Turus -mail: RistoT@9d2ddb8397544898b83d629b995b3f24.bitwarden.com -carLicense: 79WTV9 -departmentNumber: 3187 -employeeType: Contract -homePhone: +1 206 754-6769 -initials: T. R. -mobile: +1 206 451-6765 -pager: +1 206 242-8764 -roomNumber: 9229 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Metrics Bartley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Metrics Bartley -sn: Bartley -description: This is Metrics Bartley's description -facsimileTelephoneNumber: +1 213 310-8450 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 131-5487 -title: Junior Payroll Figurehead -userPassword: Password1 -uid: BartleyM -givenName: Metrics -mail: BartleyM@23128e7ff9d145ae80543eb5e7da5669.bitwarden.com -carLicense: OIB9KO -departmentNumber: 4064 -employeeType: Employee -homePhone: +1 213 280-9319 -initials: M. B. -mobile: +1 213 337-3138 -pager: +1 213 747-5812 -roomNumber: 8357 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Calla Floysvik,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calla Floysvik -sn: Floysvik -description: This is Calla Floysvik's description -facsimileTelephoneNumber: +1 415 701-9381 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 283-1773 -title: Chief Janitorial Figurehead -userPassword: Password1 -uid: FloysviC -givenName: Calla -mail: FloysviC@a3b225e3f0d642fb9de7a9d591d3b8fc.bitwarden.com -carLicense: JG5WYE -departmentNumber: 3463 -employeeType: Normal -homePhone: +1 415 185-4321 -initials: C. F. -mobile: +1 415 387-7937 -pager: +1 415 578-2159 -roomNumber: 9312 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alfonzo Bnrsport -sn: Bnrsport -description: This is Alfonzo Bnrsport's description -facsimileTelephoneNumber: +1 206 828-4217 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 494-6936 -title: Chief Payroll Czar -userPassword: Password1 -uid: BnrsporA -givenName: Alfonzo -mail: BnrsporA@207f92af6bc444a9a508764b35dab916.bitwarden.com -carLicense: SSXDGS -departmentNumber: 8668 -employeeType: Contract -homePhone: +1 206 559-6290 -initials: A. B. -mobile: +1 206 963-9081 -pager: +1 206 996-7853 -roomNumber: 9565 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rakhuma Savarimuthu -sn: Savarimuthu -description: This is Rakhuma Savarimuthu's description -facsimileTelephoneNumber: +1 818 282-1657 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 782-9538 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: SavarimR -givenName: Rakhuma -mail: SavarimR@765c6bf8e6a844bd84fd3519331c09a2.bitwarden.com -carLicense: UB419F -departmentNumber: 5909 -employeeType: Contract -homePhone: +1 818 278-7422 -initials: R. S. -mobile: +1 818 419-5785 -pager: +1 818 649-8231 -roomNumber: 8911 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alparslan McAdams,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alparslan McAdams -sn: McAdams -description: This is Alparslan McAdams's description -facsimileTelephoneNumber: +1 510 394-2336 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 189-4068 -title: Supreme Management Pinhead -userPassword: Password1 -uid: McAdamsA -givenName: Alparslan -mail: McAdamsA@9cce2e5b95a34e48b64d619f2a9e3bd6.bitwarden.com -carLicense: A4O0L8 -departmentNumber: 7949 -employeeType: Employee -homePhone: +1 510 530-3330 -initials: A. M. -mobile: +1 510 469-5299 -pager: +1 510 174-4219 -roomNumber: 8424 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tej OSullivan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tej OSullivan -sn: OSullivan -description: This is Tej OSullivan's description -facsimileTelephoneNumber: +1 408 908-2911 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 687-7551 -title: Chief Payroll Czar -userPassword: Password1 -uid: OSullivT -givenName: Tej -mail: OSullivT@679bf1d9fa5d438b8807d8c8a658fd6b.bitwarden.com -carLicense: 91ROHY -departmentNumber: 7655 -employeeType: Employee -homePhone: +1 408 728-9113 -initials: T. O. -mobile: +1 408 758-8812 -pager: +1 408 478-4904 -roomNumber: 8211 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Melly Plourde,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melly Plourde -sn: Plourde -description: This is Melly Plourde's description -facsimileTelephoneNumber: +1 818 938-6560 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 245-1071 -title: Associate Peons Developer -userPassword: Password1 -uid: PlourdeM -givenName: Melly -mail: PlourdeM@55d6078545ee499ab423dc186ca21695.bitwarden.com -carLicense: VWP430 -departmentNumber: 9590 -employeeType: Contract -homePhone: +1 818 604-8969 -initials: M. P. -mobile: +1 818 803-9061 -pager: +1 818 443-3648 -roomNumber: 9592 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heike Mendelsohn -sn: Mendelsohn -description: This is Heike Mendelsohn's description -facsimileTelephoneNumber: +1 206 867-8171 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 206 256-8246 -title: Chief Janitorial Admin -userPassword: Password1 -uid: MendelsH -givenName: Heike -mail: MendelsH@c88c546a41dd403183cf489cf47f2715.bitwarden.com -carLicense: 9R59XO -departmentNumber: 3860 -employeeType: Normal -homePhone: +1 206 696-7951 -initials: H. M. -mobile: +1 206 566-8855 -pager: +1 206 993-8412 -roomNumber: 8913 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ara Coules,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ara Coules -sn: Coules -description: This is Ara Coules's description -facsimileTelephoneNumber: +1 510 199-3582 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 758-3155 -title: Junior Product Development Grunt -userPassword: Password1 -uid: CoulesA -givenName: Ara -mail: CoulesA@c643a761475a4a67b1e62fab24451a4d.bitwarden.com -carLicense: 8N8HPP -departmentNumber: 7373 -employeeType: Contract -homePhone: +1 510 417-4358 -initials: A. C. -mobile: +1 510 842-2144 -pager: +1 510 297-3878 -roomNumber: 8004 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacek Hagstrom -sn: Hagstrom -description: This is Jacek Hagstrom's description -facsimileTelephoneNumber: +1 804 334-5877 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 804 591-2092 -title: Chief Payroll Developer -userPassword: Password1 -uid: HagstroJ -givenName: Jacek -mail: HagstroJ@77209db2428f411d91371f32d860ae4c.bitwarden.com -carLicense: YCXU8V -departmentNumber: 7698 -employeeType: Normal -homePhone: +1 804 304-8713 -initials: J. H. -mobile: +1 804 150-1752 -pager: +1 804 395-1109 -roomNumber: 9056 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Heida Barnett,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heida Barnett -sn: Barnett -description: This is Heida Barnett's description -facsimileTelephoneNumber: +1 415 762-7494 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 610-5015 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: BarnettH -givenName: Heida -mail: BarnettH@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com -carLicense: 2YB6SS -departmentNumber: 6026 -employeeType: Contract -homePhone: +1 415 379-6280 -initials: H. B. -mobile: +1 415 759-9984 -pager: +1 415 470-3372 -roomNumber: 8072 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marylynne Wolski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marylynne Wolski -sn: Wolski -description: This is Marylynne Wolski's description -facsimileTelephoneNumber: +1 415 940-1781 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 572-4163 -title: Master Product Development Engineer -userPassword: Password1 -uid: WolskiM -givenName: Marylynne -mail: WolskiM@34211993f6a54dc18f00a71a05d87998.bitwarden.com -carLicense: 5NJF2J -departmentNumber: 2382 -employeeType: Employee -homePhone: +1 415 732-8752 -initials: M. W. -mobile: +1 415 736-1897 -pager: +1 415 630-3920 -roomNumber: 9806 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mellisa Cormier,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mellisa Cormier -sn: Cormier -description: This is Mellisa Cormier's description -facsimileTelephoneNumber: +1 206 951-6923 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 988-5349 -title: Junior Administrative Punk -userPassword: Password1 -uid: CormierM -givenName: Mellisa -mail: CormierM@defab017f9734cfab5b3fea4ed24112c.bitwarden.com -carLicense: HCE4DY -departmentNumber: 9727 -employeeType: Employee -homePhone: +1 206 850-7725 -initials: M. C. -mobile: +1 206 170-8500 -pager: +1 206 374-5345 -roomNumber: 9211 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Neely Schluter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neely Schluter -sn: Schluter -description: This is Neely Schluter's description -facsimileTelephoneNumber: +1 408 338-9121 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 345-4062 -title: Master Product Development Visionary -userPassword: Password1 -uid: SchluteN -givenName: Neely -mail: SchluteN@b4cdee1243de400699df8d563680e709.bitwarden.com -carLicense: BSXPAW -departmentNumber: 8959 -employeeType: Contract -homePhone: +1 408 384-9928 -initials: N. S. -mobile: +1 408 721-5522 -pager: +1 408 414-5207 -roomNumber: 9794 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dorelia Cohrs,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorelia Cohrs -sn: Cohrs -description: This is Dorelia Cohrs's description -facsimileTelephoneNumber: +1 415 929-3233 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 540-1780 -title: Associate Management Writer -userPassword: Password1 -uid: CohrsD -givenName: Dorelia -mail: CohrsD@36e3b9c15a4246d0b9f5619fbb566424.bitwarden.com -carLicense: LOPCU1 -departmentNumber: 9218 -employeeType: Normal -homePhone: +1 415 984-1361 -initials: D. C. -mobile: +1 415 267-2069 -pager: +1 415 271-9171 -roomNumber: 8154 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dede Fernald,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dede Fernald -sn: Fernald -description: This is Dede Fernald's description -facsimileTelephoneNumber: +1 206 152-6575 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 675-1888 -title: Junior Peons President -userPassword: Password1 -uid: FernaldD -givenName: Dede -mail: FernaldD@03076c5c8b8949f1af9c49c0d6d892b6.bitwarden.com -carLicense: LFA2OO -departmentNumber: 3767 -employeeType: Employee -homePhone: +1 206 470-4608 -initials: D. F. -mobile: +1 206 665-9623 -pager: +1 206 710-4436 -roomNumber: 8199 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Real Piitz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Real Piitz -sn: Piitz -description: This is Real Piitz's description -facsimileTelephoneNumber: +1 408 198-7941 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 408 233-6483 -title: Associate Product Testing President -userPassword: Password1 -uid: PiitzR -givenName: Real -mail: PiitzR@dab11b4d8bc0443d8cd54025f08f0682.bitwarden.com -carLicense: 3R82BI -departmentNumber: 6010 -employeeType: Employee -homePhone: +1 408 148-3574 -initials: R. P. -mobile: +1 408 967-6513 -pager: +1 408 947-4852 -roomNumber: 8649 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Petunia Croteau,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petunia Croteau -sn: Croteau -description: This is Petunia Croteau's description -facsimileTelephoneNumber: +1 408 569-5688 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 386-8169 -title: Junior Administrative Artist -userPassword: Password1 -uid: CroteauP -givenName: Petunia -mail: CroteauP@543e9d6f1baf4e398f4b35d8fd14d7df.bitwarden.com -carLicense: E5CDMP -departmentNumber: 7618 -employeeType: Contract -homePhone: +1 408 703-8795 -initials: P. C. -mobile: +1 408 390-7437 -pager: +1 408 144-5728 -roomNumber: 9329 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Haley Tsonos,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haley Tsonos -sn: Tsonos -description: This is Haley Tsonos's description -facsimileTelephoneNumber: +1 818 311-3827 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 476-7165 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: TsonosH -givenName: Haley -mail: TsonosH@ca737191dd6c4e499a75456baacb8a74.bitwarden.com -carLicense: 9JVUTJ -departmentNumber: 9657 -employeeType: Employee -homePhone: +1 818 642-8555 -initials: H. T. -mobile: +1 818 272-4028 -pager: +1 818 656-5771 -roomNumber: 8101 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hyacinth Hamner,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hyacinth Hamner -sn: Hamner -description: This is Hyacinth Hamner's description -facsimileTelephoneNumber: +1 408 224-1243 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 249-6017 -title: Associate Management Evangelist -userPassword: Password1 -uid: HamnerH -givenName: Hyacinth -mail: HamnerH@411a0caf6b524748b5bcc8d8176112b4.bitwarden.com -carLicense: K2FC2U -departmentNumber: 9218 -employeeType: Contract -homePhone: +1 408 927-7285 -initials: H. H. -mobile: +1 408 917-1424 -pager: +1 408 496-2085 -roomNumber: 9158 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Clemence Gardiner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clemence Gardiner -sn: Gardiner -description: This is Clemence Gardiner's description -facsimileTelephoneNumber: +1 415 576-8536 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 415 245-7637 -title: Chief Peons Vice President -userPassword: Password1 -uid: GardineC -givenName: Clemence -mail: GardineC@1c31600804664edcbc5e5ccaff471cf0.bitwarden.com -carLicense: GDEJ63 -departmentNumber: 5297 -employeeType: Employee -homePhone: +1 415 321-9787 -initials: C. G. -mobile: +1 415 787-4181 -pager: +1 415 427-5389 -roomNumber: 8075 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Francine Laurich,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francine Laurich -sn: Laurich -description: This is Francine Laurich's description -facsimileTelephoneNumber: +1 818 379-2771 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 818 407-7045 -title: Supreme Management Pinhead -userPassword: Password1 -uid: LaurichF -givenName: Francine -mail: LaurichF@d5c6232f07e54daabb55a10963c14dea.bitwarden.com -carLicense: 4L57MR -departmentNumber: 4847 -employeeType: Normal -homePhone: +1 818 424-1714 -initials: F. L. -mobile: +1 818 365-4332 -pager: +1 818 933-7932 -roomNumber: 8983 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Narrima Saucerman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Narrima Saucerman -sn: Saucerman -description: This is Narrima Saucerman's description -facsimileTelephoneNumber: +1 804 226-7621 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 232-1405 -title: Chief Peons Janitor -userPassword: Password1 -uid: SaucermN -givenName: Narrima -mail: SaucermN@483a67de96074cb9b0b7084bfe826405.bitwarden.com -carLicense: 5V3V09 -departmentNumber: 1381 -employeeType: Employee -homePhone: +1 804 676-4318 -initials: N. S. -mobile: +1 804 622-4248 -pager: +1 804 173-4346 -roomNumber: 8875 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Han Cozyn,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Han Cozyn -sn: Cozyn -description: This is Han Cozyn's description -facsimileTelephoneNumber: +1 213 934-1808 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 174-4556 -title: Master Product Testing Mascot -userPassword: Password1 -uid: CozynH -givenName: Han -mail: CozynH@62eff42d0f404cf7b0b018186ba6bdb5.bitwarden.com -carLicense: EPFFST -departmentNumber: 1190 -employeeType: Contract -homePhone: +1 213 146-8876 -initials: H. C. -mobile: +1 213 838-8186 -pager: +1 213 231-8211 -roomNumber: 9606 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chuck Dorr,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chuck Dorr -sn: Dorr -description: This is Chuck Dorr's description -facsimileTelephoneNumber: +1 213 351-8143 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 380-7296 -title: Associate Human Resources Visionary -userPassword: Password1 -uid: DorrC -givenName: Chuck -mail: DorrC@681d410e89ea46dbbb918431ab9e5e29.bitwarden.com -carLicense: 5UJQ18 -departmentNumber: 8765 -employeeType: Contract -homePhone: +1 213 121-2004 -initials: C. D. -mobile: +1 213 735-7580 -pager: +1 213 112-7880 -roomNumber: 8701 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sephira Dubreck -sn: Dubreck -description: This is Sephira Dubreck's description -facsimileTelephoneNumber: +1 213 853-4527 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 881-6893 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: DubreckS -givenName: Sephira -mail: DubreckS@d2e91f960afd4021a7949b2d591d1072.bitwarden.com -carLicense: JET9Y3 -departmentNumber: 7758 -employeeType: Contract -homePhone: +1 213 564-8981 -initials: S. D. -mobile: +1 213 588-3171 -pager: +1 213 532-2961 -roomNumber: 9932 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eleonora Hutt -sn: Hutt -description: This is Eleonora Hutt's description -facsimileTelephoneNumber: +1 804 918-3907 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 804 321-3568 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: HuttE -givenName: Eleonora -mail: HuttE@b8e727bc14df4a0daced5f490054e337.bitwarden.com -carLicense: DRJJNV -departmentNumber: 4908 -employeeType: Contract -homePhone: +1 804 829-9830 -initials: E. H. -mobile: +1 804 446-3202 -pager: +1 804 284-2100 -roomNumber: 9714 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Andre Ashworth,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andre Ashworth -sn: Ashworth -description: This is Andre Ashworth's description -facsimileTelephoneNumber: +1 818 365-1593 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 648-8403 -title: Supreme Management Writer -userPassword: Password1 -uid: AshwortA -givenName: Andre -mail: AshwortA@ab352c8f0fb84cc3a9ed7cae538f0a71.bitwarden.com -carLicense: 5NQNN2 -departmentNumber: 7644 -employeeType: Employee -homePhone: +1 818 248-6031 -initials: A. A. -mobile: +1 818 633-8458 -pager: +1 818 986-6915 -roomNumber: 8737 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Edin Kell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edin Kell -sn: Kell -description: This is Edin Kell's description -facsimileTelephoneNumber: +1 408 640-6573 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 731-6396 -title: Junior Product Development Visionary -userPassword: Password1 -uid: KellE -givenName: Edin -mail: KellE@f15475096e0d43418f4b3b20f6539fb3.bitwarden.com -carLicense: S5W5H8 -departmentNumber: 6969 -employeeType: Normal -homePhone: +1 408 512-7600 -initials: E. K. -mobile: +1 408 651-8306 -pager: +1 408 615-3209 -roomNumber: 9877 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Theresa Rendon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theresa Rendon -sn: Rendon -description: This is Theresa Rendon's description -facsimileTelephoneNumber: +1 818 190-6087 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 818 647-2021 -title: Junior Peons Punk -userPassword: Password1 -uid: RendonT -givenName: Theresa -mail: RendonT@9db63434a78e416392ae93e3976c1bfc.bitwarden.com -carLicense: XHTEH1 -departmentNumber: 5803 -employeeType: Employee -homePhone: +1 818 431-6040 -initials: T. R. -mobile: +1 818 142-8171 -pager: +1 818 483-8382 -roomNumber: 8677 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sriranjani Atl -sn: Atl -description: This is Sriranjani Atl's description -facsimileTelephoneNumber: +1 510 237-2584 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 293-8428 -title: Master Janitorial Dictator -userPassword: Password1 -uid: AtlS -givenName: Sriranjani -mail: AtlS@f33f81bcdd214dc799f298c784f94b9e.bitwarden.com -carLicense: H5R3MJ -departmentNumber: 3357 -employeeType: Employee -homePhone: +1 510 291-8949 -initials: S. A. -mobile: +1 510 158-9443 -pager: +1 510 497-1152 -roomNumber: 8558 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jacenta Byczko,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacenta Byczko -sn: Byczko -description: This is Jacenta Byczko's description -facsimileTelephoneNumber: +1 804 429-9007 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 503-6620 -title: Master Peons Architect -userPassword: Password1 -uid: ByczkoJ -givenName: Jacenta -mail: ByczkoJ@ee4903e98f36436eb410a6a5c9869ea3.bitwarden.com -carLicense: 14TRY7 -departmentNumber: 4255 -employeeType: Employee -homePhone: +1 804 274-5425 -initials: J. B. -mobile: +1 804 891-9466 -pager: +1 804 214-7470 -roomNumber: 9329 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cass Boehms,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cass Boehms -sn: Boehms -description: This is Cass Boehms's description -facsimileTelephoneNumber: +1 818 366-2725 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 580-8390 -title: Chief Management Director -userPassword: Password1 -uid: BoehmsC -givenName: Cass -mail: BoehmsC@9d1f7bcfce524784b93c42075dd94a6c.bitwarden.com -carLicense: VRKYP1 -departmentNumber: 7882 -employeeType: Contract -homePhone: +1 818 825-5651 -initials: C. B. -mobile: +1 818 739-6123 -pager: +1 818 151-9372 -roomNumber: 9443 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Melba Holvey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melba Holvey -sn: Holvey -description: This is Melba Holvey's description -facsimileTelephoneNumber: +1 213 224-7571 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 691-1029 -title: Chief Peons Madonna -userPassword: Password1 -uid: HolveyM -givenName: Melba -mail: HolveyM@1e91ce6746854cd6839980eca37c6276.bitwarden.com -carLicense: ULXTHE -departmentNumber: 6796 -employeeType: Employee -homePhone: +1 213 137-3684 -initials: M. H. -mobile: +1 213 307-5209 -pager: +1 213 435-2224 -roomNumber: 8465 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cam Tsakalis -sn: Tsakalis -description: This is Cam Tsakalis's description -facsimileTelephoneNumber: +1 804 312-5158 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 804 883-6913 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: TsakaliC -givenName: Cam -mail: TsakaliC@a9a16c4a0f7545639cb0982e970e6363.bitwarden.com -carLicense: 7G4J4W -departmentNumber: 3852 -employeeType: Employee -homePhone: +1 804 321-7892 -initials: C. T. -mobile: +1 804 838-6827 -pager: +1 804 314-5177 -roomNumber: 9589 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cristofaro Beland,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristofaro Beland -sn: Beland -description: This is Cristofaro Beland's description -facsimileTelephoneNumber: +1 408 934-3214 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 396-4461 -title: Supreme Management Grunt -userPassword: Password1 -uid: BelandC -givenName: Cristofaro -mail: BelandC@188fd969cdd04895b43683adfa5ef7c5.bitwarden.com -carLicense: U76X81 -departmentNumber: 5123 -employeeType: Normal -homePhone: +1 408 359-7936 -initials: C. B. -mobile: +1 408 719-7203 -pager: +1 408 372-4964 -roomNumber: 8280 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monteene Mezzoiuso -sn: Mezzoiuso -description: This is Monteene Mezzoiuso's description -facsimileTelephoneNumber: +1 408 844-2927 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 408 934-3207 -title: Master Administrative Warrior -userPassword: Password1 -uid: MezzoiuM -givenName: Monteene -mail: MezzoiuM@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com -carLicense: 3OM3WK -departmentNumber: 6086 -employeeType: Normal -homePhone: +1 408 986-7210 -initials: M. M. -mobile: +1 408 475-5194 -pager: +1 408 629-1729 -roomNumber: 8439 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Inam Ouzas,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inam Ouzas -sn: Ouzas -description: This is Inam Ouzas's description -facsimileTelephoneNumber: +1 510 763-4841 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 947-6668 -title: Master Payroll Assistant -userPassword: Password1 -uid: OuzasI -givenName: Inam -mail: OuzasI@8f2fce1e0aaf45f1b91b3f64b80ef5f2.bitwarden.com -carLicense: OF0070 -departmentNumber: 1814 -employeeType: Contract -homePhone: +1 510 876-2238 -initials: I. O. -mobile: +1 510 129-5695 -pager: +1 510 152-1514 -roomNumber: 8335 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blithe Pambianchi -sn: Pambianchi -description: This is Blithe Pambianchi's description -facsimileTelephoneNumber: +1 408 607-8088 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 584-8880 -title: Master Product Testing Warrior -userPassword: Password1 -uid: PambianB -givenName: Blithe -mail: PambianB@bbd1af679b0c4f5eb725bdbe4b2aee6a.bitwarden.com -carLicense: 4K9OTM -departmentNumber: 4074 -employeeType: Contract -homePhone: +1 408 607-7095 -initials: B. P. -mobile: +1 408 377-9479 -pager: +1 408 779-6678 -roomNumber: 8423 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Quang Austin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quang Austin -sn: Austin -description: This is Quang Austin's description -facsimileTelephoneNumber: +1 415 832-5114 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 592-8296 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: AustinQ -givenName: Quang -mail: AustinQ@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com -carLicense: PE7WQC -departmentNumber: 3881 -employeeType: Normal -homePhone: +1 415 424-8246 -initials: Q. A. -mobile: +1 415 592-1625 -pager: +1 415 295-2770 -roomNumber: 9606 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kassi Ottosson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kassi Ottosson -sn: Ottosson -description: This is Kassi Ottosson's description -facsimileTelephoneNumber: +1 510 313-8626 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 159-7441 -title: Master Product Development Punk -userPassword: Password1 -uid: OttossoK -givenName: Kassi -mail: OttossoK@e0ae386e8aba4e05af8962cf46a874a0.bitwarden.com -carLicense: YKI4AW -departmentNumber: 2894 -employeeType: Normal -homePhone: +1 510 233-3087 -initials: K. O. -mobile: +1 510 312-5473 -pager: +1 510 518-1944 -roomNumber: 8251 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Christian Bradlow,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christian Bradlow -sn: Bradlow -description: This is Christian Bradlow's description -facsimileTelephoneNumber: +1 415 680-5813 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 597-4742 -title: Chief Payroll Architect -userPassword: Password1 -uid: BradlowC -givenName: Christian -mail: BradlowC@bab890af02d045bcaf621cc90d0b2098.bitwarden.com -carLicense: Y0MRXI -departmentNumber: 7399 -employeeType: Contract -homePhone: +1 415 181-5297 -initials: C. B. -mobile: +1 415 320-2868 -pager: +1 415 774-1773 -roomNumber: 9836 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Azar Darnel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Azar Darnel -sn: Darnel -description: This is Azar Darnel's description -facsimileTelephoneNumber: +1 213 604-1557 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 943-1638 -title: Junior Peons Writer -userPassword: Password1 -uid: DarnelA -givenName: Azar -mail: DarnelA@b2518035c29e4c3b8b295e3c4a0f3c33.bitwarden.com -carLicense: U0HMFP -departmentNumber: 6145 -employeeType: Normal -homePhone: +1 213 136-1007 -initials: A. D. -mobile: +1 213 511-8656 -pager: +1 213 748-9013 -roomNumber: 8689 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Reza Reinboth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reza Reinboth -sn: Reinboth -description: This is Reza Reinboth's description -facsimileTelephoneNumber: +1 206 277-2357 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 206 355-6113 -title: Junior Janitorial Artist -userPassword: Password1 -uid: ReinbotR -givenName: Reza -mail: ReinbotR@3abf5dcbcc5646ed98709fb5a815b159.bitwarden.com -carLicense: L5819K -departmentNumber: 9870 -employeeType: Normal -homePhone: +1 206 658-2222 -initials: R. R. -mobile: +1 206 801-4877 -pager: +1 206 443-2076 -roomNumber: 9401 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Indira Dimitry,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Indira Dimitry -sn: Dimitry -description: This is Indira Dimitry's description -facsimileTelephoneNumber: +1 804 487-2777 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 872-4041 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: DimitryI -givenName: Indira -mail: DimitryI@615969db00524d14a21249f8a920880f.bitwarden.com -carLicense: 1XGKR1 -departmentNumber: 9453 -employeeType: Contract -homePhone: +1 804 839-2595 -initials: I. D. -mobile: +1 804 769-7199 -pager: +1 804 125-4515 -roomNumber: 9444 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Subhashini Freiwald,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subhashini Freiwald -sn: Freiwald -description: This is Subhashini Freiwald's description -facsimileTelephoneNumber: +1 818 823-7389 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 561-1971 -title: Chief Management Warrior -userPassword: Password1 -uid: FreiwalS -givenName: Subhashini -mail: FreiwalS@be9da34bc6794b9296b1c2babbc6f1c7.bitwarden.com -carLicense: QX8FQV -departmentNumber: 3215 -employeeType: Normal -homePhone: +1 818 412-3102 -initials: S. F. -mobile: +1 818 957-4586 -pager: +1 818 861-4293 -roomNumber: 8389 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Izzy Metherell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Izzy Metherell -sn: Metherell -description: This is Izzy Metherell's description -facsimileTelephoneNumber: +1 206 949-8778 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 788-2230 -title: Master Human Resources Consultant -userPassword: Password1 -uid: MethereI -givenName: Izzy -mail: MethereI@e5a8ff27d33a4796b9268d1fcb1eeeaf.bitwarden.com -carLicense: CD87MK -departmentNumber: 9722 -employeeType: Normal -homePhone: +1 206 904-6014 -initials: I. M. -mobile: +1 206 334-8707 -pager: +1 206 974-9098 -roomNumber: 9440 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rivy Wojtecki -sn: Wojtecki -description: This is Rivy Wojtecki's description -facsimileTelephoneNumber: +1 510 216-7261 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 832-2775 -title: Chief Product Development Architect -userPassword: Password1 -uid: WojteckR -givenName: Rivy -mail: WojteckR@15a66c25c5f240459bbc3d55fefe3a21.bitwarden.com -carLicense: 1DWPGW -departmentNumber: 1773 -employeeType: Contract -homePhone: +1 510 584-6371 -initials: R. W. -mobile: +1 510 792-4136 -pager: +1 510 228-4883 -roomNumber: 8744 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dreddy Willett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dreddy Willett -sn: Willett -description: This is Dreddy Willett's description -facsimileTelephoneNumber: +1 213 125-3709 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 819-4729 -title: Junior Management Visionary -userPassword: Password1 -uid: WillettD -givenName: Dreddy -mail: WillettD@541a9a67add74942af05ec9661f08230.bitwarden.com -carLicense: 5NKTYC -departmentNumber: 2261 -employeeType: Contract -homePhone: +1 213 787-5793 -initials: D. W. -mobile: +1 213 961-7558 -pager: +1 213 256-1155 -roomNumber: 8470 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Avis Benham,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avis Benham -sn: Benham -description: This is Avis Benham's description -facsimileTelephoneNumber: +1 818 425-5988 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 874-8979 -title: Junior Management Sales Rep -userPassword: Password1 -uid: BenhamA -givenName: Avis -mail: BenhamA@8ded8bbd82ce42aeaa0782da2c17da44.bitwarden.com -carLicense: HYITAX -departmentNumber: 2186 -employeeType: Normal -homePhone: +1 818 842-2825 -initials: A. B. -mobile: +1 818 152-3526 -pager: +1 818 448-3072 -roomNumber: 8967 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wilie Eva,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilie Eva -sn: Eva -description: This is Wilie Eva's description -facsimileTelephoneNumber: +1 206 995-8409 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 295-8403 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: EvaW -givenName: Wilie -mail: EvaW@b9fa5d9bc1554c279a35e716d782ab43.bitwarden.com -carLicense: 36G51N -departmentNumber: 3978 -employeeType: Normal -homePhone: +1 206 682-8179 -initials: W. E. -mobile: +1 206 359-1221 -pager: +1 206 915-2342 -roomNumber: 8400 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Zorine OHearn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zorine OHearn -sn: OHearn -description: This is Zorine OHearn's description -facsimileTelephoneNumber: +1 213 756-9236 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 160-1115 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: OHearnZ -givenName: Zorine -mail: OHearnZ@3d0ca046d5484a24beb101fc9ea74b59.bitwarden.com -carLicense: LBUIRC -departmentNumber: 3724 -employeeType: Employee -homePhone: +1 213 430-5318 -initials: Z. O. -mobile: +1 213 218-4072 -pager: +1 213 902-8649 -roomNumber: 9263 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Niek Salazar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niek Salazar -sn: Salazar -description: This is Niek Salazar's description -facsimileTelephoneNumber: +1 818 980-4422 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 927-2222 -title: Supreme Peons Manager -userPassword: Password1 -uid: SalazarN -givenName: Niek -mail: SalazarN@04448fada1ea4fa4b445ea9be1736993.bitwarden.com -carLicense: EIJNSE -departmentNumber: 6597 -employeeType: Normal -homePhone: +1 818 309-3969 -initials: N. S. -mobile: +1 818 741-1526 -pager: +1 818 939-1471 -roomNumber: 9407 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Prabir Bachynski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prabir Bachynski -sn: Bachynski -description: This is Prabir Bachynski's description -facsimileTelephoneNumber: +1 510 403-9055 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 100-7702 -title: Associate Management Manager -userPassword: Password1 -uid: BachynsP -givenName: Prabir -mail: BachynsP@33881fd6c18c4c30a4c1757346a78912.bitwarden.com -carLicense: NFNRER -departmentNumber: 9742 -employeeType: Normal -homePhone: +1 510 821-1757 -initials: P. B. -mobile: +1 510 187-7593 -pager: +1 510 426-3002 -roomNumber: 8344 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Steen Selchow,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steen Selchow -sn: Selchow -description: This is Steen Selchow's description -facsimileTelephoneNumber: +1 818 596-1302 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 818 641-6940 -title: Associate Peons Director -userPassword: Password1 -uid: SelchowS -givenName: Steen -mail: SelchowS@1d3f5eae43b5493f95ee42fa1458d39c.bitwarden.com -carLicense: CX7OB4 -departmentNumber: 7881 -employeeType: Normal -homePhone: +1 818 464-2827 -initials: S. S. -mobile: +1 818 511-9794 -pager: +1 818 520-2497 -roomNumber: 9620 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanja VanSchyndel -sn: VanSchyndel -description: This is Hanja VanSchyndel's description -facsimileTelephoneNumber: +1 818 291-5369 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 699-3620 -title: Associate Peons Grunt -userPassword: Password1 -uid: VanSchyH -givenName: Hanja -mail: VanSchyH@b742b209006e494cbb6f8a4e0b48b884.bitwarden.com -carLicense: H3Y4Y2 -departmentNumber: 8878 -employeeType: Employee -homePhone: +1 818 148-7604 -initials: H. V. -mobile: +1 818 742-9061 -pager: +1 818 694-7439 -roomNumber: 9922 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yannis Kowaleski -sn: Kowaleski -description: This is Yannis Kowaleski's description -facsimileTelephoneNumber: +1 213 474-1871 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 880-6676 -title: Chief Janitorial Madonna -userPassword: Password1 -uid: KowalesY -givenName: Yannis -mail: KowalesY@75db88f614404021a489793ab108bedb.bitwarden.com -carLicense: X7PVM8 -departmentNumber: 1354 -employeeType: Contract -homePhone: +1 213 422-8042 -initials: Y. K. -mobile: +1 213 328-7988 -pager: +1 213 102-6335 -roomNumber: 9528 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tessi Nagai,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tessi Nagai -sn: Nagai -description: This is Tessi Nagai's description -facsimileTelephoneNumber: +1 415 192-9010 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 415 558-1555 -title: Junior Payroll Vice President -userPassword: Password1 -uid: NagaiT -givenName: Tessi -mail: NagaiT@dc14108a33864343abea453a90202c78.bitwarden.com -carLicense: AEHE3L -departmentNumber: 6325 -employeeType: Contract -homePhone: +1 415 123-2307 -initials: T. N. -mobile: +1 415 989-5962 -pager: +1 415 341-4132 -roomNumber: 8025 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sande Lonsdale,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sande Lonsdale -sn: Lonsdale -description: This is Sande Lonsdale's description -facsimileTelephoneNumber: +1 818 890-4756 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 217-5430 -title: Associate Administrative Mascot -userPassword: Password1 -uid: LonsdalS -givenName: Sande -mail: LonsdalS@54d404ee0ed9466bae5e36b6d97997f9.bitwarden.com -carLicense: PCHRCH -departmentNumber: 6237 -employeeType: Contract -homePhone: +1 818 451-8409 -initials: S. L. -mobile: +1 818 833-7913 -pager: +1 818 741-9722 -roomNumber: 9426 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Euphemia Byer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Euphemia Byer -sn: Byer -description: This is Euphemia Byer's description -facsimileTelephoneNumber: +1 206 695-9480 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 206 501-9549 -title: Chief Administrative Grunt -userPassword: Password1 -uid: ByerE -givenName: Euphemia -mail: ByerE@6e645f68154e4e0a9f217d10cb782190.bitwarden.com -carLicense: D3BAIL -departmentNumber: 6609 -employeeType: Normal -homePhone: +1 206 326-7349 -initials: E. B. -mobile: +1 206 137-8362 -pager: +1 206 817-8345 -roomNumber: 9927 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jewell Samson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jewell Samson -sn: Samson -description: This is Jewell Samson's description -facsimileTelephoneNumber: +1 415 227-5865 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 810-6314 -title: Junior Management Mascot -userPassword: Password1 -uid: SamsonJ -givenName: Jewell -mail: SamsonJ@829d5713be204a9ab0a7f267371638c5.bitwarden.com -carLicense: NE6O93 -departmentNumber: 6722 -employeeType: Employee -homePhone: +1 415 196-3738 -initials: J. S. -mobile: +1 415 323-5600 -pager: +1 415 808-3999 -roomNumber: 8405 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bnrtor Turcotte -sn: Turcotte -description: This is Bnrtor Turcotte's description -facsimileTelephoneNumber: +1 510 116-5476 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 510 364-5610 -title: Junior Human Resources Czar -userPassword: Password1 -uid: TurcottB -givenName: Bnrtor -mail: TurcottB@a99084400fcf4b279e00215493abf581.bitwarden.com -carLicense: 7TJX1R -departmentNumber: 7959 -employeeType: Normal -homePhone: +1 510 721-3125 -initials: B. T. -mobile: +1 510 237-3711 -pager: +1 510 571-3138 -roomNumber: 8694 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Haley McMannen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haley McMannen -sn: McMannen -description: This is Haley McMannen's description -facsimileTelephoneNumber: +1 408 174-8364 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 489-7425 -title: Junior Payroll Artist -userPassword: Password1 -uid: McManneH -givenName: Haley -mail: McManneH@22471469e5a74d89b5185fdcb7a6b10d.bitwarden.com -carLicense: LNFQJN -departmentNumber: 7783 -employeeType: Contract -homePhone: +1 408 558-4799 -initials: H. M. -mobile: +1 408 126-7282 -pager: +1 408 838-3285 -roomNumber: 9985 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joyous Bessette,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joyous Bessette -sn: Bessette -description: This is Joyous Bessette's description -facsimileTelephoneNumber: +1 804 832-2705 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 138-6163 -title: Chief Product Development Visionary -userPassword: Password1 -uid: BessettJ -givenName: Joyous -mail: BessettJ@0106d5b2fef44588899b233f3fe1c5e8.bitwarden.com -carLicense: 2QP4QH -departmentNumber: 3150 -employeeType: Normal -homePhone: +1 804 925-5634 -initials: J. B. -mobile: +1 804 539-1135 -pager: +1 804 437-5292 -roomNumber: 9573 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emanuel Tupas,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emanuel Tupas -sn: Tupas -description: This is Emanuel Tupas's description -facsimileTelephoneNumber: +1 408 603-4738 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 442-6791 -title: Master Management Czar -userPassword: Password1 -uid: TupasE -givenName: Emanuel -mail: TupasE@ddf0e3f8901347a997696359d60088c4.bitwarden.com -carLicense: RFRKHQ -departmentNumber: 9729 -employeeType: Normal -homePhone: +1 408 255-8275 -initials: E. T. -mobile: +1 408 222-3795 -pager: +1 408 108-7560 -roomNumber: 9802 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nakina Ircmer -sn: Ircmer -description: This is Nakina Ircmer's description -facsimileTelephoneNumber: +1 415 504-6459 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 415 242-5773 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: IrcmerN -givenName: Nakina -mail: IrcmerN@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com -carLicense: EXY3CN -departmentNumber: 8327 -employeeType: Normal -homePhone: +1 415 940-3909 -initials: N. I. -mobile: +1 415 871-3833 -pager: +1 415 485-9235 -roomNumber: 8555 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terrence Vasarhelyi -sn: Vasarhelyi -description: This is Terrence Vasarhelyi's description -facsimileTelephoneNumber: +1 408 928-5410 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 287-1703 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: VasarheT -givenName: Terrence -mail: VasarheT@b2d8dc3ab10d41babd472bab4f40b9f8.bitwarden.com -carLicense: XKWT15 -departmentNumber: 2183 -employeeType: Normal -homePhone: +1 408 785-9163 -initials: T. V. -mobile: +1 408 575-3553 -pager: +1 408 828-3537 -roomNumber: 9119 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zeljko Tarasewicz -sn: Tarasewicz -description: This is Zeljko Tarasewicz's description -facsimileTelephoneNumber: +1 818 283-2291 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 818 251-4916 -title: Junior Payroll Dictator -userPassword: Password1 -uid: TarasewZ -givenName: Zeljko -mail: TarasewZ@00952e8f7e7647889172eabc088c9368.bitwarden.com -carLicense: MTJUSV -departmentNumber: 7123 -employeeType: Contract -homePhone: +1 818 681-9778 -initials: Z. T. -mobile: +1 818 724-1448 -pager: +1 818 195-2993 -roomNumber: 9096 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Janeczka Bautista,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janeczka Bautista -sn: Bautista -description: This is Janeczka Bautista's description -facsimileTelephoneNumber: +1 415 493-6871 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 172-5251 -title: Junior Product Development Technician -userPassword: Password1 -uid: BautistJ -givenName: Janeczka -mail: BautistJ@48f6e6bce8ac404d917503a6c43988fa.bitwarden.com -carLicense: JB4OIJ -departmentNumber: 8074 -employeeType: Normal -homePhone: +1 415 442-5665 -initials: J. B. -mobile: +1 415 633-3460 -pager: +1 415 140-9256 -roomNumber: 9188 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Alf Meunier,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alf Meunier -sn: Meunier -description: This is Alf Meunier's description -facsimileTelephoneNumber: +1 206 755-3310 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 471-9969 -title: Master Product Development Director -userPassword: Password1 -uid: MeunierA -givenName: Alf -mail: MeunierA@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com -carLicense: J7RJGJ -departmentNumber: 5754 -employeeType: Contract -homePhone: +1 206 877-6751 -initials: A. M. -mobile: +1 206 808-1764 -pager: +1 206 945-7630 -roomNumber: 9697 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dena Stevenson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dena Stevenson -sn: Stevenson -description: This is Dena Stevenson's description -facsimileTelephoneNumber: +1 804 879-7882 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 804 840-7959 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: StevensD -givenName: Dena -mail: StevensD@e9efa6e493c94e819a8af125d338efb9.bitwarden.com -carLicense: OM41JY -departmentNumber: 3114 -employeeType: Normal -homePhone: +1 804 374-4269 -initials: D. S. -mobile: +1 804 869-1129 -pager: +1 804 301-6184 -roomNumber: 9545 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Khalil Verch,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khalil Verch -sn: Verch -description: This is Khalil Verch's description -facsimileTelephoneNumber: +1 510 463-5042 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 142-5160 -title: Master Peons Mascot -userPassword: Password1 -uid: VerchK -givenName: Khalil -mail: VerchK@f9c0f71d487646dca3eac1c7c5deeeaf.bitwarden.com -carLicense: F7F5V0 -departmentNumber: 3967 -employeeType: Employee -homePhone: +1 510 277-5900 -initials: K. V. -mobile: +1 510 324-2803 -pager: +1 510 618-6943 -roomNumber: 8656 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adela Rios,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adela Rios -sn: Rios -description: This is Adela Rios's description -facsimileTelephoneNumber: +1 415 517-6226 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 293-6936 -title: Chief Payroll Admin -userPassword: Password1 -uid: RiosA -givenName: Adela -mail: RiosA@0b870e85b4df46a89fb7255ad1447634.bitwarden.com -carLicense: 23FO9E -departmentNumber: 3261 -employeeType: Normal -homePhone: +1 415 137-5451 -initials: A. R. -mobile: +1 415 717-2360 -pager: +1 415 976-7413 -roomNumber: 9871 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Roselle Sowry,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roselle Sowry -sn: Sowry -description: This is Roselle Sowry's description -facsimileTelephoneNumber: +1 408 788-3993 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 590-2115 -title: Associate Management Assistant -userPassword: Password1 -uid: SowryR -givenName: Roselle -mail: SowryR@67f0c4cb093d45e88db73275893310b8.bitwarden.com -carLicense: CBOU2K -departmentNumber: 3549 -employeeType: Normal -homePhone: +1 408 735-3474 -initials: R. S. -mobile: +1 408 441-6967 -pager: +1 408 153-8916 -roomNumber: 8119 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leonida Wenham,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonida Wenham -sn: Wenham -description: This is Leonida Wenham's description -facsimileTelephoneNumber: +1 818 408-7324 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 263-5804 -title: Chief Payroll Dictator -userPassword: Password1 -uid: WenhamL -givenName: Leonida -mail: WenhamL@ad261b7bb83c4b9b8809f461bc78f37f.bitwarden.com -carLicense: S8FWH7 -departmentNumber: 9592 -employeeType: Normal -homePhone: +1 818 735-7836 -initials: L. W. -mobile: +1 818 758-4469 -pager: +1 818 265-7833 -roomNumber: 8314 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Camille Balog,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camille Balog -sn: Balog -description: This is Camille Balog's description -facsimileTelephoneNumber: +1 510 258-2595 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 253-9980 -title: Supreme Peons Vice President -userPassword: Password1 -uid: BalogC -givenName: Camille -mail: BalogC@6b282dc55aa94d768c03263feaea873d.bitwarden.com -carLicense: BK0K65 -departmentNumber: 6954 -employeeType: Employee -homePhone: +1 510 467-7898 -initials: C. B. -mobile: +1 510 537-9347 -pager: +1 510 435-9290 -roomNumber: 9820 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margaretha Stegmueller -sn: Stegmueller -description: This is Margaretha Stegmueller's description -facsimileTelephoneNumber: +1 818 361-6011 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 312-5486 -title: Chief Administrative Assistant -userPassword: Password1 -uid: StegmueM -givenName: Margaretha -mail: StegmueM@7223d03a1da84d46925f52800fbe8b33.bitwarden.com -carLicense: 7GQ7SP -departmentNumber: 7102 -employeeType: Normal -homePhone: +1 818 100-6190 -initials: M. S. -mobile: +1 818 643-3467 -pager: +1 818 121-1722 -roomNumber: 9796 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lona Tuttle,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lona Tuttle -sn: Tuttle -description: This is Lona Tuttle's description -facsimileTelephoneNumber: +1 408 127-7915 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 763-1265 -title: Chief Payroll Warrior -userPassword: Password1 -uid: TuttleL -givenName: Lona -mail: TuttleL@2fba4efbb4b44dbe8c7dc5c682d67dce.bitwarden.com -carLicense: R5G1TB -departmentNumber: 1769 -employeeType: Contract -homePhone: +1 408 542-4495 -initials: L. T. -mobile: +1 408 599-5643 -pager: +1 408 971-5462 -roomNumber: 8318 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ryszard Dack,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ryszard Dack -sn: Dack -description: This is Ryszard Dack's description -facsimileTelephoneNumber: +1 818 975-8531 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 210-5735 -title: Master Janitorial Dictator -userPassword: Password1 -uid: DackR -givenName: Ryszard -mail: DackR@ab43f8d0eb5a4fa69395019fc76ff8cf.bitwarden.com -carLicense: HSU4FS -departmentNumber: 9349 -employeeType: Contract -homePhone: +1 818 495-4323 -initials: R. D. -mobile: +1 818 273-1591 -pager: +1 818 628-5893 -roomNumber: 8645 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anastassia Hollingsworth -sn: Hollingsworth -description: This is Anastassia Hollingsworth's description -facsimileTelephoneNumber: +1 408 420-9588 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 408 885-7675 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: HollingA -givenName: Anastassia -mail: HollingA@063f46f6e3c34f628dc59cd54e082665.bitwarden.com -carLicense: 0FTIJR -departmentNumber: 7452 -employeeType: Employee -homePhone: +1 408 256-5247 -initials: A. H. -mobile: +1 408 837-4465 -pager: +1 408 962-5556 -roomNumber: 9198 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Channa Bergeron,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Channa Bergeron -sn: Bergeron -description: This is Channa Bergeron's description -facsimileTelephoneNumber: +1 818 702-9438 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 414-3936 -title: Supreme Administrative Punk -userPassword: Password1 -uid: BergeroC -givenName: Channa -mail: BergeroC@2f0ef4b1759e41b483f68723f29c3b29.bitwarden.com -carLicense: KEKY6J -departmentNumber: 4907 -employeeType: Employee -homePhone: +1 818 279-1943 -initials: C. B. -mobile: +1 818 241-3068 -pager: +1 818 998-1557 -roomNumber: 9622 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lurleen Balgalvis -sn: Balgalvis -description: This is Lurleen Balgalvis's description -facsimileTelephoneNumber: +1 510 211-3333 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 222-1694 -title: Junior Payroll Punk -userPassword: Password1 -uid: BalgalvL -givenName: Lurleen -mail: BalgalvL@44f2ec4b07a84206abba4026497fde27.bitwarden.com -carLicense: OQ8R33 -departmentNumber: 3947 -employeeType: Employee -homePhone: +1 510 345-5768 -initials: L. B. -mobile: +1 510 237-2751 -pager: +1 510 204-9818 -roomNumber: 9297 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angelie Gorhum -sn: Gorhum -description: This is Angelie Gorhum's description -facsimileTelephoneNumber: +1 415 353-2757 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 156-8156 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: GorhumA -givenName: Angelie -mail: GorhumA@aad5dc78feef4ac1b9b7f52c8e200ee3.bitwarden.com -carLicense: 1WAB7M -departmentNumber: 9741 -employeeType: Normal -homePhone: +1 415 892-3861 -initials: A. G. -mobile: +1 415 836-6702 -pager: +1 415 929-1930 -roomNumber: 8217 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dannie Leth,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dannie Leth -sn: Leth -description: This is Dannie Leth's description -facsimileTelephoneNumber: +1 510 366-5029 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 445-7026 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: LethD -givenName: Dannie -mail: LethD@341c2a7aa79d4aa1aa97b332acebc155.bitwarden.com -carLicense: EYSGKY -departmentNumber: 4575 -employeeType: Normal -homePhone: +1 510 263-4017 -initials: D. L. -mobile: +1 510 555-5892 -pager: +1 510 736-6129 -roomNumber: 9799 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Noell McWalters,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noell McWalters -sn: McWalters -description: This is Noell McWalters's description -facsimileTelephoneNumber: +1 804 513-5712 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 797-9622 -title: Chief Administrative Writer -userPassword: Password1 -uid: McWalteN -givenName: Noell -mail: McWalteN@435172b6be714733b4c4e8a61d6bf70e.bitwarden.com -carLicense: E3USW9 -departmentNumber: 3435 -employeeType: Employee -homePhone: +1 804 649-9298 -initials: N. M. -mobile: +1 804 486-2409 -pager: +1 804 693-4445 -roomNumber: 8258 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ally Viehweg,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ally Viehweg -sn: Viehweg -description: This is Ally Viehweg's description -facsimileTelephoneNumber: +1 206 332-1650 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 907-4567 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: ViehwegA -givenName: Ally -mail: ViehwegA@080a543860d941fdbfeb0d224af903ae.bitwarden.com -carLicense: NVJDAB -departmentNumber: 7163 -employeeType: Normal -homePhone: +1 206 621-8723 -initials: A. V. -mobile: +1 206 582-4219 -pager: +1 206 709-4959 -roomNumber: 8489 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranvir Ferenz -sn: Ferenz -description: This is Ranvir Ferenz's description -facsimileTelephoneNumber: +1 804 583-3555 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 417-5707 -title: Master Human Resources Warrior -userPassword: Password1 -uid: FerenzR -givenName: Ranvir -mail: FerenzR@28133a838b684d2e99a29d650ff2c42d.bitwarden.com -carLicense: QHAA6A -departmentNumber: 5609 -employeeType: Contract -homePhone: +1 804 711-9203 -initials: R. F. -mobile: +1 804 902-7489 -pager: +1 804 279-3226 -roomNumber: 8029 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elena Leima,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elena Leima -sn: Leima -description: This is Elena Leima's description -facsimileTelephoneNumber: +1 510 474-6193 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 524-5054 -title: Chief Administrative Stooge -userPassword: Password1 -uid: LeimaE -givenName: Elena -mail: LeimaE@1461123b615643b9b7c6f81f4c511488.bitwarden.com -carLicense: GX7HRH -departmentNumber: 2171 -employeeType: Normal -homePhone: +1 510 537-8375 -initials: E. L. -mobile: +1 510 735-5281 -pager: +1 510 734-1292 -roomNumber: 9468 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Manny Grau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manny Grau -sn: Grau -description: This is Manny Grau's description -facsimileTelephoneNumber: +1 213 409-5193 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 136-2447 -title: Associate Payroll Assistant -userPassword: Password1 -uid: GrauM -givenName: Manny -mail: GrauM@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com -carLicense: Y49WH9 -departmentNumber: 9891 -employeeType: Normal -homePhone: +1 213 693-3540 -initials: M. G. -mobile: +1 213 579-8159 -pager: +1 213 280-6560 -roomNumber: 9867 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cornie Hobgood,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cornie Hobgood -sn: Hobgood -description: This is Cornie Hobgood's description -facsimileTelephoneNumber: +1 408 777-5722 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 984-8364 -title: Master Payroll Writer -userPassword: Password1 -uid: HobgoodC -givenName: Cornie -mail: HobgoodC@a5186e33e69446d1bb74fa25b1e42650.bitwarden.com -carLicense: UTGUEE -departmentNumber: 5479 -employeeType: Contract -homePhone: +1 408 541-7772 -initials: C. H. -mobile: +1 408 669-8572 -pager: +1 408 293-2968 -roomNumber: 9641 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kirsti Sridaran,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirsti Sridaran -sn: Sridaran -description: This is Kirsti Sridaran's description -facsimileTelephoneNumber: +1 213 465-8799 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 119-6188 -title: Master Peons Janitor -userPassword: Password1 -uid: SridaraK -givenName: Kirsti -mail: SridaraK@ca8f4832ccb34eecb660b444c29c036c.bitwarden.com -carLicense: E65UPY -departmentNumber: 9808 -employeeType: Employee -homePhone: +1 213 346-6217 -initials: K. S. -mobile: +1 213 850-9425 -pager: +1 213 835-9188 -roomNumber: 9552 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cynthya Ganness,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cynthya Ganness -sn: Ganness -description: This is Cynthya Ganness's description -facsimileTelephoneNumber: +1 510 817-4588 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 510 938-8467 -title: Master Product Development Artist -userPassword: Password1 -uid: GannessC -givenName: Cynthya -mail: GannessC@4132afcbe852461d84c4e04897cbd70a.bitwarden.com -carLicense: MKDR9A -departmentNumber: 4216 -employeeType: Normal -homePhone: +1 510 684-1079 -initials: C. G. -mobile: +1 510 230-9047 -pager: +1 510 898-2775 -roomNumber: 8085 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vilhelmina Gabe -sn: Gabe -description: This is Vilhelmina Gabe's description -facsimileTelephoneNumber: +1 206 534-9494 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 677-3746 -title: Junior Janitorial President -userPassword: Password1 -uid: GabeV -givenName: Vilhelmina -mail: GabeV@8a518eca58904534b05396f1b7366d38.bitwarden.com -carLicense: EPAI94 -departmentNumber: 1995 -employeeType: Normal -homePhone: +1 206 829-4159 -initials: V. G. -mobile: +1 206 226-7610 -pager: +1 206 821-1620 -roomNumber: 9278 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Becky Bento,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Becky Bento -sn: Bento -description: This is Becky Bento's description -facsimileTelephoneNumber: +1 510 638-4192 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 847-5946 -title: Master Human Resources Developer -userPassword: Password1 -uid: BentoB -givenName: Becky -mail: BentoB@201177ec03f246b1b586746301578c04.bitwarden.com -carLicense: OOEJ6X -departmentNumber: 9356 -employeeType: Contract -homePhone: +1 510 513-6198 -initials: B. B. -mobile: +1 510 632-6118 -pager: +1 510 247-6717 -roomNumber: 9834 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Murial Richardson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Murial Richardson -sn: Richardson -description: This is Murial Richardson's description -facsimileTelephoneNumber: +1 804 977-4491 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 806-5139 -title: Supreme Product Testing Evangelist -userPassword: Password1 -uid: RichardM -givenName: Murial -mail: RichardM@a6096cd0d9c54e7cb57ad3b57e445595.bitwarden.com -carLicense: FEYB1Y -departmentNumber: 8726 -employeeType: Employee -homePhone: +1 804 417-7543 -initials: M. R. -mobile: +1 804 595-1046 -pager: +1 804 933-9555 -roomNumber: 8940 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ashok Ugwa,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashok Ugwa -sn: Ugwa -description: This is Ashok Ugwa's description -facsimileTelephoneNumber: +1 415 162-8979 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 764-5406 -title: Supreme Peons Vice President -userPassword: Password1 -uid: UgwaA -givenName: Ashok -mail: UgwaA@33b7fa6f25dd4387a5408d5f26b794a1.bitwarden.com -carLicense: HD93A1 -departmentNumber: 7464 -employeeType: Normal -homePhone: +1 415 422-4504 -initials: A. U. -mobile: +1 415 163-5680 -pager: +1 415 744-3614 -roomNumber: 9502 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sarena Devgon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarena Devgon -sn: Devgon -description: This is Sarena Devgon's description -facsimileTelephoneNumber: +1 213 926-6707 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 269-9927 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: DevgonS -givenName: Sarena -mail: DevgonS@5f9301f0062b42de89716ec7e410b165.bitwarden.com -carLicense: 3FSUOL -departmentNumber: 7291 -employeeType: Employee -homePhone: +1 213 262-6905 -initials: S. D. -mobile: +1 213 171-3867 -pager: +1 213 875-2839 -roomNumber: 9892 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Valeria Bracewell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valeria Bracewell -sn: Bracewell -description: This is Valeria Bracewell's description -facsimileTelephoneNumber: +1 818 604-5715 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 818 741-1599 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: BraceweV -givenName: Valeria -mail: BraceweV@32cbfafe741b446491d67cea0d5c681a.bitwarden.com -carLicense: CMXOMY -departmentNumber: 5369 -employeeType: Employee -homePhone: +1 818 719-4920 -initials: V. B. -mobile: +1 818 437-3368 -pager: +1 818 605-3696 -roomNumber: 9687 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cristina Ard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristina Ard -sn: Ard -description: This is Cristina Ard's description -facsimileTelephoneNumber: +1 804 938-9032 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 804 458-7601 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: ArdC -givenName: Cristina -mail: ArdC@4a1e113d03e64aa594660480aad5198e.bitwarden.com -carLicense: OWKE2J -departmentNumber: 1123 -employeeType: Contract -homePhone: +1 804 378-2649 -initials: C. A. -mobile: +1 804 898-4445 -pager: +1 804 285-9647 -roomNumber: 8866 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Katrinka Harville,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katrinka Harville -sn: Harville -description: This is Katrinka Harville's description -facsimileTelephoneNumber: +1 206 618-1115 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 537-5777 -title: Chief Administrative Mascot -userPassword: Password1 -uid: HarvillK -givenName: Katrinka -mail: HarvillK@39974c25ecbe436f9e77637f71866303.bitwarden.com -carLicense: CQHET9 -departmentNumber: 6578 -employeeType: Normal -homePhone: +1 206 335-6733 -initials: K. H. -mobile: +1 206 563-8956 -pager: +1 206 542-4562 -roomNumber: 9767 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Colette Chern,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colette Chern -sn: Chern -description: This is Colette Chern's description -facsimileTelephoneNumber: +1 818 313-5426 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 818 409-7678 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: ChernC -givenName: Colette -mail: ChernC@750387c73d1b4103872918e3d3e93c32.bitwarden.com -carLicense: 44LUWP -departmentNumber: 6593 -employeeType: Employee -homePhone: +1 818 931-4897 -initials: C. C. -mobile: +1 818 891-9843 -pager: +1 818 221-7698 -roomNumber: 8588 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=PohSoon Mellor,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PohSoon Mellor -sn: Mellor -description: This is PohSoon Mellor's description -facsimileTelephoneNumber: +1 408 506-9165 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 408 315-5847 -title: Master Administrative Grunt -userPassword: Password1 -uid: MellorP -givenName: PohSoon -mail: MellorP@41bf97a0f83643ecb5c3ae7dea3fc6f2.bitwarden.com -carLicense: 4RLAV0 -departmentNumber: 6185 -employeeType: Contract -homePhone: +1 408 493-4592 -initials: P. M. -mobile: +1 408 757-7511 -pager: +1 408 817-8458 -roomNumber: 8477 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheileagh deElizalde -sn: deElizalde -description: This is Sheileagh deElizalde's description -facsimileTelephoneNumber: +1 818 482-3659 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 665-8133 -title: Junior Product Development Madonna -userPassword: Password1 -uid: deElizaS -givenName: Sheileagh -mail: deElizaS@f414860515324b3cad4d00dd4f44cc65.bitwarden.com -carLicense: UNLT7E -departmentNumber: 9175 -employeeType: Contract -homePhone: +1 818 523-9179 -initials: S. d. -mobile: +1 818 174-6475 -pager: +1 818 563-6827 -roomNumber: 8939 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Reg Mou,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reg Mou -sn: Mou -description: This is Reg Mou's description -facsimileTelephoneNumber: +1 818 608-8518 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 967-2956 -title: Junior Payroll Architect -userPassword: Password1 -uid: MouR -givenName: Reg -mail: MouR@44154c0b8f05440cb2dfceffbfdfaf5f.bitwarden.com -carLicense: 2R6IKX -departmentNumber: 1471 -employeeType: Contract -homePhone: +1 818 370-6821 -initials: R. M. -mobile: +1 818 114-4514 -pager: +1 818 282-5402 -roomNumber: 9932 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Flor Fong,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flor Fong -sn: Fong -description: This is Flor Fong's description -facsimileTelephoneNumber: +1 213 716-6140 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 462-4559 -title: Chief Human Resources Figurehead -userPassword: Password1 -uid: FongF -givenName: Flor -mail: FongF@4440d5a8c29244aaa65d7ce99130f973.bitwarden.com -carLicense: MJ4AVA -departmentNumber: 9328 -employeeType: Contract -homePhone: +1 213 328-2426 -initials: F. F. -mobile: +1 213 520-3731 -pager: +1 213 587-1229 -roomNumber: 8157 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Will Imbemba,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Will Imbemba -sn: Imbemba -description: This is Will Imbemba's description -facsimileTelephoneNumber: +1 213 426-1881 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 213 279-1309 -title: Chief Human Resources Developer -userPassword: Password1 -uid: ImbembaW -givenName: Will -mail: ImbembaW@8ec725a0b25640da9e4f5b4c8838762a.bitwarden.com -carLicense: A6MSRF -departmentNumber: 8801 -employeeType: Normal -homePhone: +1 213 745-2025 -initials: W. I. -mobile: +1 213 980-9434 -pager: +1 213 461-6002 -roomNumber: 8468 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Serene Lindquist,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Serene Lindquist -sn: Lindquist -description: This is Serene Lindquist's description -facsimileTelephoneNumber: +1 804 701-8782 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 763-5854 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: LindquiS -givenName: Serene -mail: LindquiS@d323371cf0d149c19d396f6a749e3098.bitwarden.com -carLicense: OLYQ74 -departmentNumber: 4094 -employeeType: Employee -homePhone: +1 804 608-2069 -initials: S. L. -mobile: +1 804 103-8984 -pager: +1 804 324-3389 -roomNumber: 9454 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joeann Upton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joeann Upton -sn: Upton -description: This is Joeann Upton's description -facsimileTelephoneNumber: +1 804 132-7273 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 810-4492 -title: Master Peons Czar -userPassword: Password1 -uid: UptonJ -givenName: Joeann -mail: UptonJ@6f161c0885be4a50be1e5e174b0c967a.bitwarden.com -carLicense: TUJ3BV -departmentNumber: 2273 -employeeType: Contract -homePhone: +1 804 929-3552 -initials: J. U. -mobile: +1 804 653-7633 -pager: +1 804 691-8566 -roomNumber: 8523 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fariba Cowell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fariba Cowell -sn: Cowell -description: This is Fariba Cowell's description -facsimileTelephoneNumber: +1 818 765-2970 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 818 267-1146 -title: Supreme Peons Mascot -userPassword: Password1 -uid: CowellF -givenName: Fariba -mail: CowellF@727c241675fb4155a37dd1e11418c186.bitwarden.com -carLicense: 3654WS -departmentNumber: 8876 -employeeType: Employee -homePhone: +1 818 466-7171 -initials: F. C. -mobile: +1 818 743-2511 -pager: +1 818 982-6748 -roomNumber: 9753 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Annadiane Meijer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annadiane Meijer -sn: Meijer -description: This is Annadiane Meijer's description -facsimileTelephoneNumber: +1 408 570-3429 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 533-7194 -title: Master Payroll Admin -userPassword: Password1 -uid: MeijerA -givenName: Annadiane -mail: MeijerA@123c99e30f8149cea0d20a1c6360de45.bitwarden.com -carLicense: I9YLU0 -departmentNumber: 7353 -employeeType: Contract -homePhone: +1 408 565-3081 -initials: A. M. -mobile: +1 408 677-7009 -pager: +1 408 990-9423 -roomNumber: 8511 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cleo Mgmt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cleo Mgmt -sn: Mgmt -description: This is Cleo Mgmt's description -facsimileTelephoneNumber: +1 213 297-7952 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 362-9011 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: MgmtC -givenName: Cleo -mail: MgmtC@33e8933bc7494a68acd4251758e509d3.bitwarden.com -carLicense: O8IH24 -departmentNumber: 1036 -employeeType: Contract -homePhone: +1 213 453-1968 -initials: C. M. -mobile: +1 213 661-9444 -pager: +1 213 897-3699 -roomNumber: 9950 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ferne Finane,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ferne Finane -sn: Finane -description: This is Ferne Finane's description -facsimileTelephoneNumber: +1 408 617-7329 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 806-7721 -title: Associate Payroll Madonna -userPassword: Password1 -uid: FinaneF -givenName: Ferne -mail: FinaneF@85922018edea47b985151236684ae904.bitwarden.com -carLicense: JOS9GC -departmentNumber: 6409 -employeeType: Normal -homePhone: +1 408 120-8041 -initials: F. F. -mobile: +1 408 178-6480 -pager: +1 408 424-8304 -roomNumber: 8415 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanBernard Ficco -sn: Ficco -description: This is JeanBernard Ficco's description -facsimileTelephoneNumber: +1 408 444-6112 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 890-7348 -title: Chief Product Development Mascot -userPassword: Password1 -uid: FiccoJ -givenName: JeanBernard -mail: FiccoJ@b6e4c56ef12d46659a7adc74b2b4e7b7.bitwarden.com -carLicense: TCVPSV -departmentNumber: 7510 -employeeType: Normal -homePhone: +1 408 100-9033 -initials: J. F. -mobile: +1 408 497-6077 -pager: +1 408 171-8208 -roomNumber: 8204 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elisabetta Angell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elisabetta Angell -sn: Angell -description: This is Elisabetta Angell's description -facsimileTelephoneNumber: +1 206 860-8313 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 985-2134 -title: Associate Administrative Mascot -userPassword: Password1 -uid: AngellE -givenName: Elisabetta -mail: AngellE@4466c387ca38420ebdc497ef8de08842.bitwarden.com -carLicense: 675KKI -departmentNumber: 6313 -employeeType: Employee -homePhone: +1 206 644-4743 -initials: E. A. -mobile: +1 206 770-7378 -pager: +1 206 970-9244 -roomNumber: 9300 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Me Womack,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Me Womack -sn: Womack -description: This is Me Womack's description -facsimileTelephoneNumber: +1 510 155-1530 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 532-6764 -title: Supreme Payroll Architect -userPassword: Password1 -uid: WomackM -givenName: Me -mail: WomackM@0812c60db2284153af1913e30a97f907.bitwarden.com -carLicense: U71W64 -departmentNumber: 7583 -employeeType: Contract -homePhone: +1 510 151-4223 -initials: M. W. -mobile: +1 510 995-4564 -pager: +1 510 757-2658 -roomNumber: 9012 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Randie Takata,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randie Takata -sn: Takata -description: This is Randie Takata's description -facsimileTelephoneNumber: +1 415 789-5145 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 304-6146 -title: Chief Payroll Dictator -userPassword: Password1 -uid: TakataR -givenName: Randie -mail: TakataR@7be22f7ee9eb41bbba87c747f0e4e97d.bitwarden.com -carLicense: J6282M -departmentNumber: 6362 -employeeType: Contract -homePhone: +1 415 726-3409 -initials: R. T. -mobile: +1 415 792-9072 -pager: +1 415 356-5135 -roomNumber: 8102 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Birgitte Marshall,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Birgitte Marshall -sn: Marshall -description: This is Birgitte Marshall's description -facsimileTelephoneNumber: +1 818 768-2315 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 435-2451 -title: Junior Payroll Developer -userPassword: Password1 -uid: MarshalB -givenName: Birgitte -mail: MarshalB@afde3113416043d98395556c73711549.bitwarden.com -carLicense: 2YCOO3 -departmentNumber: 4981 -employeeType: Normal -homePhone: +1 818 783-1419 -initials: B. M. -mobile: +1 818 711-5748 -pager: +1 818 628-5192 -roomNumber: 8505 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorita Pilon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorita Pilon -sn: Pilon -description: This is Lorita Pilon's description -facsimileTelephoneNumber: +1 206 619-5477 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 436-2853 -title: Associate Payroll Mascot -userPassword: Password1 -uid: PilonL -givenName: Lorita -mail: PilonL@e442907aab1c4de2a3d2eb6b7fab8ddf.bitwarden.com -carLicense: PEYHT5 -departmentNumber: 3460 -employeeType: Contract -homePhone: +1 206 348-1368 -initials: L. P. -mobile: +1 206 926-4366 -pager: +1 206 883-3740 -roomNumber: 9750 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ind Brindley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ind Brindley -sn: Brindley -description: This is Ind Brindley's description -facsimileTelephoneNumber: +1 408 349-1296 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 938-5880 -title: Junior Peons Stooge -userPassword: Password1 -uid: BrindleI -givenName: Ind -mail: BrindleI@b472332785454ae6b007bcbe058ef6e6.bitwarden.com -carLicense: JN0SEA -departmentNumber: 3042 -employeeType: Employee -homePhone: +1 408 309-4279 -initials: I. B. -mobile: +1 408 995-3448 -pager: +1 408 608-8589 -roomNumber: 9093 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gaal Ugwa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaal Ugwa -sn: Ugwa -description: This is Gaal Ugwa's description -facsimileTelephoneNumber: +1 206 295-5976 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 976-3718 -title: Junior Payroll Madonna -userPassword: Password1 -uid: UgwaG -givenName: Gaal -mail: UgwaG@a1e6ebe78e6e49b2afcf7ed11f908644.bitwarden.com -carLicense: NH4MCV -departmentNumber: 4780 -employeeType: Employee -homePhone: +1 206 725-1878 -initials: G. U. -mobile: +1 206 714-3935 -pager: +1 206 261-1593 -roomNumber: 8924 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tilda Sharratt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilda Sharratt -sn: Sharratt -description: This is Tilda Sharratt's description -facsimileTelephoneNumber: +1 804 514-1143 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 689-8279 -title: Supreme Payroll Consultant -userPassword: Password1 -uid: SharratT -givenName: Tilda -mail: SharratT@aadd895e8a7f4326b9573a1143995b88.bitwarden.com -carLicense: JXVFM7 -departmentNumber: 7869 -employeeType: Contract -homePhone: +1 804 125-5432 -initials: T. S. -mobile: +1 804 936-6169 -pager: +1 804 211-2056 -roomNumber: 9062 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yueping Kardomateas,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yueping Kardomateas -sn: Kardomateas -description: This is Yueping Kardomateas's description -facsimileTelephoneNumber: +1 213 199-6155 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 852-4371 -title: Supreme Peons Technician -userPassword: Password1 -uid: KardomaY -givenName: Yueping -mail: KardomaY@22acfb768c09448b9b9c3d7bd8e3a389.bitwarden.com -carLicense: DI54HQ -departmentNumber: 9493 -employeeType: Contract -homePhone: +1 213 743-5320 -initials: Y. K. -mobile: +1 213 634-9172 -pager: +1 213 354-1205 -roomNumber: 8338 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bela Plaisance,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bela Plaisance -sn: Plaisance -description: This is Bela Plaisance's description -facsimileTelephoneNumber: +1 213 520-3711 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 213 489-9180 -title: Chief Product Development Punk -userPassword: Password1 -uid: PlaisanB -givenName: Bela -mail: PlaisanB@af7402077fba4129bbcd03f9bf068e4f.bitwarden.com -carLicense: UU0XL0 -departmentNumber: 7686 -employeeType: Normal -homePhone: +1 213 979-9465 -initials: B. P. -mobile: +1 213 980-6406 -pager: +1 213 162-9858 -roomNumber: 8215 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Carlen Privitera,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlen Privitera -sn: Privitera -description: This is Carlen Privitera's description -facsimileTelephoneNumber: +1 408 995-1320 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 420-9316 -title: Master Payroll Evangelist -userPassword: Password1 -uid: PriviteC -givenName: Carlen -mail: PriviteC@01412eb858be4efb9cf7976be214a30b.bitwarden.com -carLicense: 47YK2H -departmentNumber: 2549 -employeeType: Contract -homePhone: +1 408 368-8788 -initials: C. P. -mobile: +1 408 269-3261 -pager: +1 408 145-4816 -roomNumber: 8863 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Survey Vanta,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Survey Vanta -sn: Vanta -description: This is Survey Vanta's description -facsimileTelephoneNumber: +1 818 447-5849 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 282-6056 -title: Supreme Peons Developer -userPassword: Password1 -uid: VantaS -givenName: Survey -mail: VantaS@d4ad583ecaae406097e581a7aec5a780.bitwarden.com -carLicense: QBYUH2 -departmentNumber: 6346 -employeeType: Contract -homePhone: +1 818 989-9594 -initials: S. V. -mobile: +1 818 939-6532 -pager: +1 818 555-6397 -roomNumber: 9862 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrna Nesrallah -sn: Nesrallah -description: This is Myrna Nesrallah's description -facsimileTelephoneNumber: +1 804 729-6905 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 223-8342 -title: Master Administrative President -userPassword: Password1 -uid: NesrallM -givenName: Myrna -mail: NesrallM@43a2075086314e66b15465a3ec778b06.bitwarden.com -carLicense: B6W60F -departmentNumber: 2639 -employeeType: Contract -homePhone: +1 804 432-7355 -initials: M. N. -mobile: +1 804 646-5959 -pager: +1 804 717-2129 -roomNumber: 9822 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bevyn Germano,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bevyn Germano -sn: Germano -description: This is Bevyn Germano's description -facsimileTelephoneNumber: +1 408 436-1318 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 197-4094 -title: Master Peons Technician -userPassword: Password1 -uid: GermanoB -givenName: Bevyn -mail: GermanoB@d4e8bab259134e1b8e7db63aa3a30d2a.bitwarden.com -carLicense: 6O9CII -departmentNumber: 4480 -employeeType: Normal -homePhone: +1 408 708-5073 -initials: B. G. -mobile: +1 408 243-3685 -pager: +1 408 371-6546 -roomNumber: 8715 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tats Lawbaugh -sn: Lawbaugh -description: This is Tats Lawbaugh's description -facsimileTelephoneNumber: +1 213 525-1744 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 730-5270 -title: Junior Product Development Technician -userPassword: Password1 -uid: LawbaugT -givenName: Tats -mail: LawbaugT@5e51d9a3833b42d3a0ca89712e0f4b6d.bitwarden.com -carLicense: 4NSY9L -departmentNumber: 1666 -employeeType: Employee -homePhone: +1 213 340-1540 -initials: T. L. -mobile: +1 213 262-7420 -pager: +1 213 455-9216 -roomNumber: 9065 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Norcal Sabourin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norcal Sabourin -sn: Sabourin -description: This is Norcal Sabourin's description -facsimileTelephoneNumber: +1 818 853-9813 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 404-8340 -title: Junior Management Sales Rep -userPassword: Password1 -uid: SabouriN -givenName: Norcal -mail: SabouriN@148b0748cafd4655898b3cdac38d15c1.bitwarden.com -carLicense: TKYCAO -departmentNumber: 7298 -employeeType: Employee -homePhone: +1 818 382-6084 -initials: N. S. -mobile: +1 818 654-6759 -pager: +1 818 562-7723 -roomNumber: 8226 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vincenzo Rusin -sn: Rusin -description: This is Vincenzo Rusin's description -facsimileTelephoneNumber: +1 415 223-6034 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 143-4404 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: RusinV -givenName: Vincenzo -mail: RusinV@5f59551b04db44d39569a60a87960164.bitwarden.com -carLicense: PYK5VE -departmentNumber: 5947 -employeeType: Normal -homePhone: +1 415 178-7811 -initials: V. R. -mobile: +1 415 900-2314 -pager: +1 415 399-8908 -roomNumber: 9546 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cuong Schwab,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cuong Schwab -sn: Schwab -description: This is Cuong Schwab's description -facsimileTelephoneNumber: +1 415 142-1461 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 262-3449 -title: Junior Peons Developer -userPassword: Password1 -uid: SchwabC -givenName: Cuong -mail: SchwabC@e6d1825771da43ab8c15fdf770febdde.bitwarden.com -carLicense: PVA77S -departmentNumber: 4059 -employeeType: Normal -homePhone: +1 415 706-1749 -initials: C. S. -mobile: +1 415 547-9159 -pager: +1 415 661-2173 -roomNumber: 9129 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Seang Reichinger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seang Reichinger -sn: Reichinger -description: This is Seang Reichinger's description -facsimileTelephoneNumber: +1 818 964-8385 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 611-4384 -title: Associate Administrative Figurehead -userPassword: Password1 -uid: ReichinS -givenName: Seang -mail: ReichinS@c829ed47073b4d85a7396da70f656311.bitwarden.com -carLicense: XRQ8LS -departmentNumber: 2746 -employeeType: Normal -homePhone: +1 818 144-9814 -initials: S. R. -mobile: +1 818 673-6801 -pager: +1 818 449-6122 -roomNumber: 8372 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sherryl Appell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherryl Appell -sn: Appell -description: This is Sherryl Appell's description -facsimileTelephoneNumber: +1 408 876-9101 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 408 642-7490 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: AppellS -givenName: Sherryl -mail: AppellS@b2c537a3f6174546b2a7b1777d2dea4e.bitwarden.com -carLicense: 0FG2VO -departmentNumber: 9315 -employeeType: Employee -homePhone: +1 408 891-3284 -initials: S. A. -mobile: +1 408 725-8059 -pager: +1 408 486-2262 -roomNumber: 8964 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rayna Hanford,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rayna Hanford -sn: Hanford -description: This is Rayna Hanford's description -facsimileTelephoneNumber: +1 415 536-2331 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 577-5024 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: HanfordR -givenName: Rayna -mail: HanfordR@2b6053354b004588977b46a0cd4d26dd.bitwarden.com -carLicense: 990J29 -departmentNumber: 4142 -employeeType: Normal -homePhone: +1 415 497-7425 -initials: R. H. -mobile: +1 415 110-1791 -pager: +1 415 939-2724 -roomNumber: 8096 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hynek Alles,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hynek Alles -sn: Alles -description: This is Hynek Alles's description -facsimileTelephoneNumber: +1 818 632-5645 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 818 671-9543 -title: Associate Payroll Madonna -userPassword: Password1 -uid: AllesH -givenName: Hynek -mail: AllesH@6b1195b29ef347f9ab299fd5409ce2bd.bitwarden.com -carLicense: DC84T1 -departmentNumber: 3865 -employeeType: Normal -homePhone: +1 818 168-6108 -initials: H. A. -mobile: +1 818 852-8994 -pager: +1 818 371-7869 -roomNumber: 8406 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cal Wilby,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cal Wilby -sn: Wilby -description: This is Cal Wilby's description -facsimileTelephoneNumber: +1 415 743-6904 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 687-3985 -title: Junior Administrative Madonna -userPassword: Password1 -uid: WilbyC -givenName: Cal -mail: WilbyC@34552c4db0554609b8e8f530d9b4516c.bitwarden.com -carLicense: E7OER6 -departmentNumber: 6925 -employeeType: Normal -homePhone: +1 415 698-1083 -initials: C. W. -mobile: +1 415 120-3770 -pager: +1 415 520-9349 -roomNumber: 9114 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Furrukh Gros,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Furrukh Gros -sn: Gros -description: This is Furrukh Gros's description -facsimileTelephoneNumber: +1 408 983-8988 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 433-2858 -title: Junior Peons Manager -userPassword: Password1 -uid: GrosF -givenName: Furrukh -mail: GrosF@7d6095181b454ecb8a89a9772da4d295.bitwarden.com -carLicense: KC1YTK -departmentNumber: 5587 -employeeType: Employee -homePhone: +1 408 936-8587 -initials: F. G. -mobile: +1 408 804-3100 -pager: +1 408 870-4599 -roomNumber: 8541 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Barlas Rezzik,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barlas Rezzik -sn: Rezzik -description: This is Barlas Rezzik's description -facsimileTelephoneNumber: +1 804 860-7551 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 515-5005 -title: Master Product Development Manager -userPassword: Password1 -uid: RezzikB -givenName: Barlas -mail: RezzikB@cd39a8ff12ee4798a79e248d3318980a.bitwarden.com -carLicense: EN41MD -departmentNumber: 1060 -employeeType: Employee -homePhone: +1 804 406-2303 -initials: B. R. -mobile: +1 804 976-8255 -pager: +1 804 319-7864 -roomNumber: 8659 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cong Kish,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cong Kish -sn: Kish -description: This is Cong Kish's description -facsimileTelephoneNumber: +1 804 365-5128 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 804 728-7807 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: KishC -givenName: Cong -mail: KishC@837254eeede24c15906b803e5cce94f7.bitwarden.com -carLicense: JUY7L5 -departmentNumber: 4299 -employeeType: Normal -homePhone: +1 804 790-2815 -initials: C. K. -mobile: +1 804 292-2994 -pager: +1 804 801-7103 -roomNumber: 8210 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ping ONeill,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ping ONeill -sn: ONeill -description: This is Ping ONeill's description -facsimileTelephoneNumber: +1 510 178-4123 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 277-5401 -title: Chief Peons Fellow -userPassword: Password1 -uid: ONeillP -givenName: Ping -mail: ONeillP@232786cf6be745b08d532519f75fd65e.bitwarden.com -carLicense: NNWU3N -departmentNumber: 6118 -employeeType: Employee -homePhone: +1 510 130-8704 -initials: P. O. -mobile: +1 510 326-4878 -pager: +1 510 386-4450 -roomNumber: 8999 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aladin Mikulka,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aladin Mikulka -sn: Mikulka -description: This is Aladin Mikulka's description -facsimileTelephoneNumber: +1 213 715-2668 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 209-6419 -title: Associate Peons Engineer -userPassword: Password1 -uid: MikulkaA -givenName: Aladin -mail: MikulkaA@cbf35b83abed4f6d86f5e0a80e7c13e0.bitwarden.com -carLicense: 9VIDL1 -departmentNumber: 4794 -employeeType: Normal -homePhone: +1 213 957-9556 -initials: A. M. -mobile: +1 213 993-6749 -pager: +1 213 686-8573 -roomNumber: 8468 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marj Baldock,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marj Baldock -sn: Baldock -description: This is Marj Baldock's description -facsimileTelephoneNumber: +1 408 123-6459 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 654-3733 -title: Master Product Testing Consultant -userPassword: Password1 -uid: BaldockM -givenName: Marj -mail: BaldockM@b1b7656e019d440a9a3ca7d6d074faa1.bitwarden.com -carLicense: SWELF5 -departmentNumber: 9802 -employeeType: Employee -homePhone: +1 408 340-5586 -initials: M. B. -mobile: +1 408 328-1638 -pager: +1 408 779-3363 -roomNumber: 9490 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucy Deligdisch -sn: Deligdisch -description: This is Lucy Deligdisch's description -facsimileTelephoneNumber: +1 804 183-2642 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 697-9116 -title: Supreme Payroll Technician -userPassword: Password1 -uid: DeligdiL -givenName: Lucy -mail: DeligdiL@20e14dd3d2dd44c8a8925dd175adb2ff.bitwarden.com -carLicense: X5S631 -departmentNumber: 2567 -employeeType: Employee -homePhone: +1 804 778-2696 -initials: L. D. -mobile: +1 804 219-4394 -pager: +1 804 925-5708 -roomNumber: 9308 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Abby Theocharakis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abby Theocharakis -sn: Theocharakis -description: This is Abby Theocharakis's description -facsimileTelephoneNumber: +1 213 921-5197 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 231-9378 -title: Chief Payroll Technician -userPassword: Password1 -uid: TheochaA -givenName: Abby -mail: TheochaA@1025092185dc4f3abfbf07259ddd26cd.bitwarden.com -carLicense: WDB9OH -departmentNumber: 2173 -employeeType: Contract -homePhone: +1 213 851-2896 -initials: A. T. -mobile: +1 213 884-7008 -pager: +1 213 688-2206 -roomNumber: 8032 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Linnea Boucouris,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linnea Boucouris -sn: Boucouris -description: This is Linnea Boucouris's description -facsimileTelephoneNumber: +1 818 118-5161 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 818 444-9601 -title: Chief Payroll Mascot -userPassword: Password1 -uid: BoucourL -givenName: Linnea -mail: BoucourL@0ed48bdbdb1f464288e368731b18494f.bitwarden.com -carLicense: HU8LH3 -departmentNumber: 8053 -employeeType: Employee -homePhone: +1 818 893-7711 -initials: L. B. -mobile: +1 818 500-6346 -pager: +1 818 532-9345 -roomNumber: 8152 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bernd Gaebel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernd Gaebel -sn: Gaebel -description: This is Bernd Gaebel's description -facsimileTelephoneNumber: +1 408 226-2662 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 250-4685 -title: Master Management Sales Rep -userPassword: Password1 -uid: GaebelB -givenName: Bernd -mail: GaebelB@e9c5f780826246738e4b88d9c1251717.bitwarden.com -carLicense: F5U4FV -departmentNumber: 1048 -employeeType: Normal -homePhone: +1 408 727-8819 -initials: B. G. -mobile: +1 408 263-5702 -pager: +1 408 844-1320 -roomNumber: 9864 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tiina Ackaouy,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiina Ackaouy -sn: Ackaouy -description: This is Tiina Ackaouy's description -facsimileTelephoneNumber: +1 408 719-9549 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 455-2154 -title: Junior Management Pinhead -userPassword: Password1 -uid: AckaouyT -givenName: Tiina -mail: AckaouyT@c98eaad0f92a41b49339315f79d6648a.bitwarden.com -carLicense: R305LW -departmentNumber: 2918 -employeeType: Employee -homePhone: +1 408 742-4354 -initials: T. A. -mobile: +1 408 940-1528 -pager: +1 408 554-6812 -roomNumber: 8762 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xiaojing Lehtinen -sn: Lehtinen -description: This is Xiaojing Lehtinen's description -facsimileTelephoneNumber: +1 510 197-7677 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 190-3981 -title: Master Product Development Technician -userPassword: Password1 -uid: LehtineX -givenName: Xiaojing -mail: LehtineX@7d28967c327e4e23a4b006845992cccc.bitwarden.com -carLicense: GMHYB2 -departmentNumber: 2533 -employeeType: Contract -homePhone: +1 510 321-8009 -initials: X. L. -mobile: +1 510 365-2619 -pager: +1 510 252-3827 -roomNumber: 9808 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Florrie Latin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florrie Latin -sn: Latin -description: This is Florrie Latin's description -facsimileTelephoneNumber: +1 818 547-2018 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 784-6252 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: LatinF -givenName: Florrie -mail: LatinF@7d4ab817fa5e4f88b55f8de9796f837b.bitwarden.com -carLicense: 7J1XXN -departmentNumber: 8581 -employeeType: Contract -homePhone: +1 818 787-9238 -initials: F. L. -mobile: +1 818 559-5762 -pager: +1 818 990-9490 -roomNumber: 8959 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bliss Salinas,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bliss Salinas -sn: Salinas -description: This is Bliss Salinas's description -facsimileTelephoneNumber: +1 206 779-8559 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 807-8437 -title: Chief Janitorial Visionary -userPassword: Password1 -uid: SalinasB -givenName: Bliss -mail: SalinasB@e2d1ebaa6959429ebc4edc14189d9271.bitwarden.com -carLicense: TBT1JO -departmentNumber: 4468 -employeeType: Employee -homePhone: +1 206 538-2369 -initials: B. S. -mobile: +1 206 774-3416 -pager: +1 206 800-9933 -roomNumber: 9331 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Binny MacGregor,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binny MacGregor -sn: MacGregor -description: This is Binny MacGregor's description -facsimileTelephoneNumber: +1 415 156-8418 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 646-7502 -title: Chief Administrative Engineer -userPassword: Password1 -uid: MacGregB -givenName: Binny -mail: MacGregB@3bd82317516042bfa7398fbc080a5ab7.bitwarden.com -carLicense: TL4YMB -departmentNumber: 5999 -employeeType: Employee -homePhone: +1 415 796-1194 -initials: B. M. -mobile: +1 415 197-7114 -pager: +1 415 611-2024 -roomNumber: 9307 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Margie Rubin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margie Rubin -sn: Rubin -description: This is Margie Rubin's description -facsimileTelephoneNumber: +1 213 773-6402 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 561-4397 -title: Chief Administrative Director -userPassword: Password1 -uid: RubinM -givenName: Margie -mail: RubinM@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com -carLicense: CQHXGL -departmentNumber: 3904 -employeeType: Normal -homePhone: +1 213 796-8248 -initials: M. R. -mobile: +1 213 891-4374 -pager: +1 213 672-9509 -roomNumber: 8546 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sarene Videa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarene Videa -sn: Videa -description: This is Sarene Videa's description -facsimileTelephoneNumber: +1 804 237-3717 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 423-2121 -title: Supreme Payroll Madonna -userPassword: Password1 -uid: VideaS -givenName: Sarene -mail: VideaS@682a8645714a480188da85c157ef9433.bitwarden.com -carLicense: IU3SG2 -departmentNumber: 1558 -employeeType: Employee -homePhone: +1 804 384-8678 -initials: S. V. -mobile: +1 804 546-3964 -pager: +1 804 207-2342 -roomNumber: 9349 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Harpal Iskandar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harpal Iskandar -sn: Iskandar -description: This is Harpal Iskandar's description -facsimileTelephoneNumber: +1 213 436-6625 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 423-3463 -title: Associate Payroll Writer -userPassword: Password1 -uid: IskandaH -givenName: Harpal -mail: IskandaH@ba22866e80644775858f87806fbde4da.bitwarden.com -carLicense: PYLDRD -departmentNumber: 5420 -employeeType: Employee -homePhone: +1 213 438-1855 -initials: H. I. -mobile: +1 213 961-8078 -pager: +1 213 218-6267 -roomNumber: 9638 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Melloney Mussar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melloney Mussar -sn: Mussar -description: This is Melloney Mussar's description -facsimileTelephoneNumber: +1 510 986-9485 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 406-6270 -title: Supreme Administrative Stooge -userPassword: Password1 -uid: MussarM -givenName: Melloney -mail: MussarM@4a3dbef197ba4d769249c1f49c2d0f57.bitwarden.com -carLicense: RUOA6P -departmentNumber: 8271 -employeeType: Contract -homePhone: +1 510 134-3906 -initials: M. M. -mobile: +1 510 979-5482 -pager: +1 510 442-7271 -roomNumber: 9339 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arnett Typer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arnett Typer -sn: Typer -description: This is Arnett Typer's description -facsimileTelephoneNumber: +1 804 878-8896 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 804 844-8197 -title: Supreme Peons Developer -userPassword: Password1 -uid: TyperA -givenName: Arnett -mail: TyperA@f85ec6aaedd740f691ab46502bf2fcd1.bitwarden.com -carLicense: SPMD07 -departmentNumber: 8484 -employeeType: Normal -homePhone: +1 804 723-9061 -initials: A. T. -mobile: +1 804 115-7351 -pager: +1 804 805-8516 -roomNumber: 8077 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dulce Dore,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulce Dore -sn: Dore -description: This is Dulce Dore's description -facsimileTelephoneNumber: +1 510 358-8336 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 362-2512 -title: Master Product Testing Assistant -userPassword: Password1 -uid: DoreD -givenName: Dulce -mail: DoreD@9092ac0216724776b99f389469a93c29.bitwarden.com -carLicense: JTE3B8 -departmentNumber: 7483 -employeeType: Employee -homePhone: +1 510 868-9225 -initials: D. D. -mobile: +1 510 336-5352 -pager: +1 510 570-6015 -roomNumber: 8189 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mandy Auth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mandy Auth -sn: Auth -description: This is Mandy Auth's description -facsimileTelephoneNumber: +1 510 127-2992 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 510 692-3335 -title: Master Product Testing Consultant -userPassword: Password1 -uid: AuthM -givenName: Mandy -mail: AuthM@ee614e3163c64fc78862e2066c61b43b.bitwarden.com -carLicense: EPL7D9 -departmentNumber: 2143 -employeeType: Contract -homePhone: +1 510 838-5065 -initials: M. A. -mobile: +1 510 845-9303 -pager: +1 510 882-2459 -roomNumber: 9745 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nata Lampman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nata Lampman -sn: Lampman -description: This is Nata Lampman's description -facsimileTelephoneNumber: +1 408 138-2753 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 536-6872 -title: Chief Product Development Czar -userPassword: Password1 -uid: LampmanN -givenName: Nata -mail: LampmanN@61ded890c4074ecd9ae572c6057905e0.bitwarden.com -carLicense: DONWV7 -departmentNumber: 9965 -employeeType: Employee -homePhone: +1 408 304-3239 -initials: N. L. -mobile: +1 408 938-2212 -pager: +1 408 279-1306 -roomNumber: 9644 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Scpiivo Lauten,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Scpiivo Lauten -sn: Lauten -description: This is Scpiivo Lauten's description -facsimileTelephoneNumber: +1 206 991-4209 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 141-3114 -title: Associate Management Director -userPassword: Password1 -uid: LautenS -givenName: Scpiivo -mail: LautenS@cece21bcad784a3ca39618cc0267819d.bitwarden.com -carLicense: 8IKP3C -departmentNumber: 5343 -employeeType: Contract -homePhone: +1 206 485-8388 -initials: S. L. -mobile: +1 206 375-5976 -pager: +1 206 531-1876 -roomNumber: 8629 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Susannah Ergle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susannah Ergle -sn: Ergle -description: This is Susannah Ergle's description -facsimileTelephoneNumber: +1 415 583-1170 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 239-4166 -title: Master Product Development Fellow -userPassword: Password1 -uid: ErgleS -givenName: Susannah -mail: ErgleS@f8c29c9440874d4eb463ef82c13f890c.bitwarden.com -carLicense: 4YMJ84 -departmentNumber: 1669 -employeeType: Normal -homePhone: +1 415 754-1346 -initials: S. E. -mobile: +1 415 268-1521 -pager: +1 415 781-3228 -roomNumber: 8103 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sharona Purohit,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharona Purohit -sn: Purohit -description: This is Sharona Purohit's description -facsimileTelephoneNumber: +1 408 950-1350 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 408 300-1249 -title: Master Payroll Admin -userPassword: Password1 -uid: PurohitS -givenName: Sharona -mail: PurohitS@58b95b0fde664e13afb0e57d90ecd2ad.bitwarden.com -carLicense: K7KFNK -departmentNumber: 4847 -employeeType: Employee -homePhone: +1 408 650-7288 -initials: S. P. -mobile: +1 408 641-7924 -pager: +1 408 368-8973 -roomNumber: 9319 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sukey Ameen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sukey Ameen -sn: Ameen -description: This is Sukey Ameen's description -facsimileTelephoneNumber: +1 206 847-1893 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 792-4112 -title: Junior Administrative Artist -userPassword: Password1 -uid: AmeenS -givenName: Sukey -mail: AmeenS@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com -carLicense: NI4968 -departmentNumber: 3470 -employeeType: Employee -homePhone: +1 206 818-4285 -initials: S. A. -mobile: +1 206 957-8458 -pager: +1 206 465-1582 -roomNumber: 8278 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dhawal Obenauf,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhawal Obenauf -sn: Obenauf -description: This is Dhawal Obenauf's description -facsimileTelephoneNumber: +1 818 861-7818 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 578-3160 -title: Junior Management Punk -userPassword: Password1 -uid: ObenaufD -givenName: Dhawal -mail: ObenaufD@399088e535dc444183a128d7fd1a5d16.bitwarden.com -carLicense: 772Y2I -departmentNumber: 9625 -employeeType: Normal -homePhone: +1 818 776-3932 -initials: D. O. -mobile: +1 818 364-8984 -pager: +1 818 772-7861 -roomNumber: 8414 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nuntel Cozart,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nuntel Cozart -sn: Cozart -description: This is Nuntel Cozart's description -facsimileTelephoneNumber: +1 510 375-1432 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 242-6021 -title: Chief Administrative Engineer -userPassword: Password1 -uid: CozartN -givenName: Nuntel -mail: CozartN@f4a6804794574a25b07fba470bdf4478.bitwarden.com -carLicense: 5DLY78 -departmentNumber: 3545 -employeeType: Normal -homePhone: +1 510 932-4006 -initials: N. C. -mobile: +1 510 176-1336 -pager: +1 510 259-9742 -roomNumber: 9045 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Turkey Massone,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Turkey Massone -sn: Massone -description: This is Turkey Massone's description -facsimileTelephoneNumber: +1 415 424-5690 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 260-7918 -title: Junior Peons Grunt -userPassword: Password1 -uid: MassoneT -givenName: Turkey -mail: MassoneT@ea675d93e8aa4655831540db70e97a6a.bitwarden.com -carLicense: 6FOAL7 -departmentNumber: 7056 -employeeType: Normal -homePhone: +1 415 182-9409 -initials: T. M. -mobile: +1 415 174-3226 -pager: +1 415 857-5058 -roomNumber: 8757 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barlas Bergstrom -sn: Bergstrom -description: This is Barlas Bergstrom's description -facsimileTelephoneNumber: +1 206 905-3572 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 350-3311 -title: Supreme Product Testing Dictator -userPassword: Password1 -uid: BergstrB -givenName: Barlas -mail: BergstrB@9676da99cfac4bada210a8c85a95f456.bitwarden.com -carLicense: 7T3EJM -departmentNumber: 2143 -employeeType: Employee -homePhone: +1 206 186-2800 -initials: B. B. -mobile: +1 206 153-9675 -pager: +1 206 411-5308 -roomNumber: 8580 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maxie Aladangady,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maxie Aladangady -sn: Aladangady -description: This is Maxie Aladangady's description -facsimileTelephoneNumber: +1 415 918-7986 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 717-3841 -title: Associate Management Madonna -userPassword: Password1 -uid: AladangM -givenName: Maxie -mail: AladangM@0e30929e6bbb48ec8c60769bdbed5c15.bitwarden.com -carLicense: FWK4QE -departmentNumber: 2024 -employeeType: Normal -homePhone: +1 415 527-1931 -initials: M. A. -mobile: +1 415 217-2596 -pager: +1 415 959-4549 -roomNumber: 9138 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Housseini Sammons,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Housseini Sammons -sn: Sammons -description: This is Housseini Sammons's description -facsimileTelephoneNumber: +1 408 309-2420 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 512-6286 -title: Chief Product Development Visionary -userPassword: Password1 -uid: SammonsH -givenName: Housseini -mail: SammonsH@c5f103343b7e4b25bc1a4d2fdd71d622.bitwarden.com -carLicense: EU9IET -departmentNumber: 2329 -employeeType: Normal -homePhone: +1 408 664-7647 -initials: H. S. -mobile: +1 408 735-1771 -pager: +1 408 637-8939 -roomNumber: 9982 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Saraann Koman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saraann Koman -sn: Koman -description: This is Saraann Koman's description -facsimileTelephoneNumber: +1 408 657-5466 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 890-4976 -title: Master Product Testing Artist -userPassword: Password1 -uid: KomanS -givenName: Saraann -mail: KomanS@3a2f01610a4f49818c8117630280919e.bitwarden.com -carLicense: QGPFTP -departmentNumber: 6567 -employeeType: Contract -homePhone: +1 408 389-1917 -initials: S. K. -mobile: +1 408 950-5659 -pager: +1 408 251-2119 -roomNumber: 9323 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Saudra Griffith,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saudra Griffith -sn: Griffith -description: This is Saudra Griffith's description -facsimileTelephoneNumber: +1 213 990-7474 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 784-1169 -title: Junior Product Development Figurehead -userPassword: Password1 -uid: GriffitS -givenName: Saudra -mail: GriffitS@72bccd919e1d4e7a9fb89ff1c2d64c5a.bitwarden.com -carLicense: OXMXH3 -departmentNumber: 8418 -employeeType: Normal -homePhone: +1 213 766-7208 -initials: S. G. -mobile: +1 213 787-4134 -pager: +1 213 545-2095 -roomNumber: 8647 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Yongli Craver,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yongli Craver -sn: Craver -description: This is Yongli Craver's description -facsimileTelephoneNumber: +1 206 329-2321 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 652-5099 -title: Supreme Management Consultant -userPassword: Password1 -uid: CraverY -givenName: Yongli -mail: CraverY@fb80550ae6b245dcb9c2cdf7ac12567e.bitwarden.com -carLicense: GBNJ08 -departmentNumber: 3075 -employeeType: Normal -homePhone: +1 206 783-1811 -initials: Y. C. -mobile: +1 206 432-8152 -pager: +1 206 206-4952 -roomNumber: 8436 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pardip LaVecchia,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pardip LaVecchia -sn: LaVecchia -description: This is Pardip LaVecchia's description -facsimileTelephoneNumber: +1 818 551-8825 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 276-6743 -title: Junior Peons Stooge -userPassword: Password1 -uid: LaVecchP -givenName: Pardip -mail: LaVecchP@e44e2f828b9948f4bb8c5d44954eed11.bitwarden.com -carLicense: Y5WHG9 -departmentNumber: 5872 -employeeType: Normal -homePhone: +1 818 375-3622 -initials: P. L. -mobile: +1 818 243-4231 -pager: +1 818 138-6964 -roomNumber: 9821 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Subhash Waid,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subhash Waid -sn: Waid -description: This is Subhash Waid's description -facsimileTelephoneNumber: +1 206 163-1034 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 425-8443 -title: Associate Product Testing Artist -userPassword: Password1 -uid: WaidS -givenName: Subhash -mail: WaidS@e0fbcbf86ba64fa69e571f107b3ec1d7.bitwarden.com -carLicense: F00VAS -departmentNumber: 5041 -employeeType: Employee -homePhone: +1 206 930-2555 -initials: S. W. -mobile: +1 206 588-1734 -pager: +1 206 367-1479 -roomNumber: 9681 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaye Sobchuk -sn: Sobchuk -description: This is Kaye Sobchuk's description -facsimileTelephoneNumber: +1 408 641-6933 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 951-4428 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: SobchukK -givenName: Kaye -mail: SobchukK@37b876b4a91540b4b71770c7a49beee8.bitwarden.com -carLicense: 1RQKL6 -departmentNumber: 7489 -employeeType: Employee -homePhone: +1 408 690-7255 -initials: K. S. -mobile: +1 408 660-7960 -pager: +1 408 795-2239 -roomNumber: 9302 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Deane Saiyed,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deane Saiyed -sn: Saiyed -description: This is Deane Saiyed's description -facsimileTelephoneNumber: +1 818 225-2033 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 401-7395 -title: Associate Peons Czar -userPassword: Password1 -uid: SaiyedD -givenName: Deane -mail: SaiyedD@22830d32dd4a43f899cece07a5cc99c1.bitwarden.com -carLicense: DI8RVI -departmentNumber: 7213 -employeeType: Employee -homePhone: +1 818 620-2622 -initials: D. S. -mobile: +1 818 587-1270 -pager: +1 818 552-3004 -roomNumber: 9909 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Joannah McBryan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joannah McBryan -sn: McBryan -description: This is Joannah McBryan's description -facsimileTelephoneNumber: +1 408 127-4996 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 672-6692 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: McBryanJ -givenName: Joannah -mail: McBryanJ@f1351648a83a4fd2b80f3e1c5db82076.bitwarden.com -carLicense: 215EI2 -departmentNumber: 2556 -employeeType: Employee -homePhone: +1 408 686-5968 -initials: J. M. -mobile: +1 408 186-4952 -pager: +1 408 794-2625 -roomNumber: 9665 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kariotta Shwed -sn: Shwed -description: This is Kariotta Shwed's description -facsimileTelephoneNumber: +1 206 993-2678 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 163-4926 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: ShwedK -givenName: Kariotta -mail: ShwedK@a77c7140e8a14e9180f6ceda32adedff.bitwarden.com -carLicense: ED479A -departmentNumber: 9052 -employeeType: Contract -homePhone: +1 206 872-6818 -initials: K. S. -mobile: +1 206 647-3022 -pager: +1 206 253-7763 -roomNumber: 8599 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kyle Anconetani,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kyle Anconetani -sn: Anconetani -description: This is Kyle Anconetani's description -facsimileTelephoneNumber: +1 408 106-9880 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 408 284-1937 -title: Junior Administrative Manager -userPassword: Password1 -uid: AnconetK -givenName: Kyle -mail: AnconetK@bea3a59f852447369b2ae52dc89b101a.bitwarden.com -carLicense: AP4X34 -departmentNumber: 6330 -employeeType: Contract -homePhone: +1 408 619-5409 -initials: K. A. -mobile: +1 408 787-5623 -pager: +1 408 668-3994 -roomNumber: 9449 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cicily Carlisle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cicily Carlisle -sn: Carlisle -description: This is Cicily Carlisle's description -facsimileTelephoneNumber: +1 213 650-5327 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 241-7163 -title: Supreme Management Artist -userPassword: Password1 -uid: CarlislC -givenName: Cicily -mail: CarlislC@fabf4e5a1cd441dcbccc8453d82524ac.bitwarden.com -carLicense: 2T6AN6 -departmentNumber: 2108 -employeeType: Contract -homePhone: +1 213 173-3891 -initials: C. C. -mobile: +1 213 729-1804 -pager: +1 213 283-4669 -roomNumber: 8053 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carole Coats,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carole Coats -sn: Coats -description: This is Carole Coats's description -facsimileTelephoneNumber: +1 818 872-5690 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 818 650-9193 -title: Junior Product Testing Artist -userPassword: Password1 -uid: CoatsC -givenName: Carole -mail: CoatsC@72bd0ee0befb455d8cec3b8d293b350f.bitwarden.com -carLicense: E5QAQ4 -departmentNumber: 4637 -employeeType: Contract -homePhone: +1 818 427-7101 -initials: C. C. -mobile: +1 818 336-6543 -pager: +1 818 798-4058 -roomNumber: 8391 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leonelle Halpern,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonelle Halpern -sn: Halpern -description: This is Leonelle Halpern's description -facsimileTelephoneNumber: +1 206 550-3444 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 484-2222 -title: Master Payroll Director -userPassword: Password1 -uid: HalpernL -givenName: Leonelle -mail: HalpernL@4862778236b440e7a6b8cc3c6a3dec32.bitwarden.com -carLicense: RFD5PK -departmentNumber: 3772 -employeeType: Employee -homePhone: +1 206 597-5934 -initials: L. H. -mobile: +1 206 494-2907 -pager: +1 206 316-7963 -roomNumber: 9005 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Clare Deatrick,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clare Deatrick -sn: Deatrick -description: This is Clare Deatrick's description -facsimileTelephoneNumber: +1 804 789-9200 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 374-8785 -title: Supreme Janitorial Mascot -userPassword: Password1 -uid: DeatricC -givenName: Clare -mail: DeatricC@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com -carLicense: 42XA16 -departmentNumber: 9195 -employeeType: Contract -homePhone: +1 804 648-3522 -initials: C. D. -mobile: +1 804 962-4091 -pager: +1 804 811-6340 -roomNumber: 9141 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marty Maunu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marty Maunu -sn: Maunu -description: This is Marty Maunu's description -facsimileTelephoneNumber: +1 206 628-3207 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 741-1582 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: MaunuM -givenName: Marty -mail: MaunuM@1905088fe45c42ef9a2318b32d1a92d9.bitwarden.com -carLicense: ISA4SF -departmentNumber: 9034 -employeeType: Employee -homePhone: +1 206 820-9178 -initials: M. M. -mobile: +1 206 939-6866 -pager: +1 206 284-7452 -roomNumber: 8156 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ronni Paynter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronni Paynter -sn: Paynter -description: This is Ronni Paynter's description -facsimileTelephoneNumber: +1 818 737-5572 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 818 386-4964 -title: Master Product Development Czar -userPassword: Password1 -uid: PaynterR -givenName: Ronni -mail: PaynterR@1d23264dcd2241baa77e90f901c50315.bitwarden.com -carLicense: UASMM1 -departmentNumber: 3645 -employeeType: Normal -homePhone: +1 818 256-8227 -initials: R. P. -mobile: +1 818 685-5407 -pager: +1 818 945-8819 -roomNumber: 9648 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jiri Bemiller -sn: Bemiller -description: This is Jiri Bemiller's description -facsimileTelephoneNumber: +1 213 666-9194 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 714-3361 -title: Chief Human Resources Manager -userPassword: Password1 -uid: BemilleJ -givenName: Jiri -mail: BemilleJ@a312c5a631954b3083418977a35fbc96.bitwarden.com -carLicense: OYPLQ3 -departmentNumber: 5669 -employeeType: Contract -homePhone: +1 213 371-2069 -initials: J. B. -mobile: +1 213 544-6936 -pager: +1 213 939-5847 -roomNumber: 9676 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Duong Davies,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duong Davies -sn: Davies -description: This is Duong Davies's description -facsimileTelephoneNumber: +1 408 173-6641 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 867-3127 -title: Associate Human Resources Manager -userPassword: Password1 -uid: DaviesD -givenName: Duong -mail: DaviesD@ce7f6506438049b28a6c7066d0f5b598.bitwarden.com -carLicense: LIC1JX -departmentNumber: 5315 -employeeType: Employee -homePhone: +1 408 921-7176 -initials: D. D. -mobile: +1 408 394-4485 -pager: +1 408 629-5941 -roomNumber: 9293 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nancy Boutilier -sn: Boutilier -description: This is Nancy Boutilier's description -facsimileTelephoneNumber: +1 510 327-1739 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 900-1152 -title: Master Human Resources Grunt -userPassword: Password1 -uid: BoutiliN -givenName: Nancy -mail: BoutiliN@819341cb2af84d6c855b3feecf7b45b9.bitwarden.com -carLicense: U4EXJJ -departmentNumber: 8254 -employeeType: Contract -homePhone: +1 510 874-1495 -initials: N. B. -mobile: +1 510 677-9323 -pager: +1 510 555-2610 -roomNumber: 9805 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Greer Behlen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greer Behlen -sn: Behlen -description: This is Greer Behlen's description -facsimileTelephoneNumber: +1 213 688-1717 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 655-8687 -title: Junior Peons Admin -userPassword: Password1 -uid: BehlenG -givenName: Greer -mail: BehlenG@613a894fc4ff4101a0a94f865da5db23.bitwarden.com -carLicense: NPGKDN -departmentNumber: 7881 -employeeType: Contract -homePhone: +1 213 640-9948 -initials: G. B. -mobile: +1 213 192-6477 -pager: +1 213 550-9719 -roomNumber: 9105 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roslyn GurArie -sn: GurArie -description: This is Roslyn GurArie's description -facsimileTelephoneNumber: +1 510 766-7855 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 993-7024 -title: Chief Janitorial Manager -userPassword: Password1 -uid: GurArieR -givenName: Roslyn -mail: GurArieR@943cde02b55f4c00aac04891d951946b.bitwarden.com -carLicense: QAWBF9 -departmentNumber: 4611 -employeeType: Employee -homePhone: +1 510 951-2430 -initials: R. G. -mobile: +1 510 563-3362 -pager: +1 510 986-1051 -roomNumber: 8305 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KuiSoon RossRoss -sn: RossRoss -description: This is KuiSoon RossRoss's description -facsimileTelephoneNumber: +1 213 808-8107 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 838-4079 -title: Associate Peons Fellow -userPassword: Password1 -uid: RossRosK -givenName: KuiSoon -mail: RossRosK@9de1e5ab0e97403bbd2b1cd8ab5549b3.bitwarden.com -carLicense: 7O183U -departmentNumber: 2336 -employeeType: Contract -homePhone: +1 213 834-6170 -initials: K. R. -mobile: +1 213 914-7088 -pager: +1 213 376-7490 -roomNumber: 9504 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Poldi Volk,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Poldi Volk -sn: Volk -description: This is Poldi Volk's description -facsimileTelephoneNumber: +1 213 515-9136 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 538-8724 -title: Supreme Product Testing Punk -userPassword: Password1 -uid: VolkP -givenName: Poldi -mail: VolkP@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com -carLicense: BH03HD -departmentNumber: 3129 -employeeType: Contract -homePhone: +1 213 343-3776 -initials: P. V. -mobile: +1 213 922-6739 -pager: +1 213 279-5278 -roomNumber: 9170 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hennrietta Schmadtke -sn: Schmadtke -description: This is Hennrietta Schmadtke's description -facsimileTelephoneNumber: +1 213 273-4970 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 849-9785 -title: Associate Product Development Warrior -userPassword: Password1 -uid: SchmadtH -givenName: Hennrietta -mail: SchmadtH@4b32479366c74b46b2b68466f59bae46.bitwarden.com -carLicense: EL3AK6 -departmentNumber: 7673 -employeeType: Normal -homePhone: +1 213 199-1026 -initials: H. S. -mobile: +1 213 306-3085 -pager: +1 213 143-7941 -roomNumber: 9661 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Estelle Specs,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estelle Specs -sn: Specs -description: This is Estelle Specs's description -facsimileTelephoneNumber: +1 510 809-6875 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 291-3516 -title: Supreme Management Architect -userPassword: Password1 -uid: SpecsE -givenName: Estelle -mail: SpecsE@cbf3bc402182405fa7e4d3e446e6f0ab.bitwarden.com -carLicense: YNL12M -departmentNumber: 2350 -employeeType: Contract -homePhone: +1 510 938-7357 -initials: E. S. -mobile: +1 510 169-1770 -pager: +1 510 104-2850 -roomNumber: 8527 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tina Guarino,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tina Guarino -sn: Guarino -description: This is Tina Guarino's description -facsimileTelephoneNumber: +1 415 594-5689 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 654-8058 -title: Chief Peons Mascot -userPassword: Password1 -uid: GuarinoT -givenName: Tina -mail: GuarinoT@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com -carLicense: VQJ7XL -departmentNumber: 3733 -employeeType: Contract -homePhone: +1 415 834-3267 -initials: T. G. -mobile: +1 415 524-3718 -pager: +1 415 599-7058 -roomNumber: 9668 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pamelina Kovats,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pamelina Kovats -sn: Kovats -description: This is Pamelina Kovats's description -facsimileTelephoneNumber: +1 213 121-9493 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 417-4895 -title: Associate Management Developer -userPassword: Password1 -uid: KovatsP -givenName: Pamelina -mail: KovatsP@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com -carLicense: 6C1OUY -departmentNumber: 7715 -employeeType: Contract -homePhone: +1 213 105-2440 -initials: P. K. -mobile: +1 213 757-7347 -pager: +1 213 984-1674 -roomNumber: 9572 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dany deGrace,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dany deGrace -sn: deGrace -description: This is Dany deGrace's description -facsimileTelephoneNumber: +1 408 103-6787 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 192-1178 -title: Master Administrative Vice President -userPassword: Password1 -uid: deGraceD -givenName: Dany -mail: deGraceD@c53d26d2599d4e87839d1fcfc46deed3.bitwarden.com -carLicense: LPSRSW -departmentNumber: 2040 -employeeType: Contract -homePhone: +1 408 454-1186 -initials: D. d. -mobile: +1 408 923-9515 -pager: +1 408 741-4843 -roomNumber: 9375 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rigoberto Bilsborough -sn: Bilsborough -description: This is Rigoberto Bilsborough's description -facsimileTelephoneNumber: +1 415 902-7119 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 836-4516 -title: Chief Management Dictator -userPassword: Password1 -uid: BilsborR -givenName: Rigoberto -mail: BilsborR@8f54ea12be5d4924822bead7a0de7fce.bitwarden.com -carLicense: VXW3Y2 -departmentNumber: 7999 -employeeType: Normal -homePhone: +1 415 364-1220 -initials: R. B. -mobile: +1 415 681-5352 -pager: +1 415 169-8425 -roomNumber: 9145 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhHung Bajpeyi -sn: Bajpeyi -description: This is ThanhHung Bajpeyi's description -facsimileTelephoneNumber: +1 213 298-8670 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 809-3267 -title: Junior Management Technician -userPassword: Password1 -uid: BajpeyiT -givenName: ThanhHung -mail: BajpeyiT@af703f54ddb945e38afdba5f17819d01.bitwarden.com -carLicense: 0AS3MO -departmentNumber: 4380 -employeeType: Employee -homePhone: +1 213 168-9165 -initials: T. B. -mobile: +1 213 403-8721 -pager: +1 213 921-7892 -roomNumber: 9789 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Grata Hosang,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grata Hosang -sn: Hosang -description: This is Grata Hosang's description -facsimileTelephoneNumber: +1 213 410-3337 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 341-8761 -title: Chief Janitorial Consultant -userPassword: Password1 -uid: HosangG -givenName: Grata -mail: HosangG@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com -carLicense: 0INDOF -departmentNumber: 6537 -employeeType: Employee -homePhone: +1 213 685-1658 -initials: G. H. -mobile: +1 213 907-5965 -pager: +1 213 121-9375 -roomNumber: 9157 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sosanna McAulay -sn: McAulay -description: This is Sosanna McAulay's description -facsimileTelephoneNumber: +1 804 861-7866 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 692-8428 -title: Junior Human Resources Architect -userPassword: Password1 -uid: McAulayS -givenName: Sosanna -mail: McAulayS@15447e827d294576b427fe60b8e58e62.bitwarden.com -carLicense: TIKUJI -departmentNumber: 1873 -employeeType: Normal -homePhone: +1 804 827-4488 -initials: S. M. -mobile: +1 804 605-8231 -pager: +1 804 696-5346 -roomNumber: 9281 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Eoin Ketchum,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eoin Ketchum -sn: Ketchum -description: This is Eoin Ketchum's description -facsimileTelephoneNumber: +1 206 582-4414 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 517-9331 -title: Supreme Payroll Artist -userPassword: Password1 -uid: KetchumE -givenName: Eoin -mail: KetchumE@f4820d79a950444ca53b37bbda89060d.bitwarden.com -carLicense: 77V44G -departmentNumber: 9957 -employeeType: Normal -homePhone: +1 206 265-2394 -initials: E. K. -mobile: +1 206 922-8035 -pager: +1 206 965-9386 -roomNumber: 8906 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rora Feild,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rora Feild -sn: Feild -description: This is Rora Feild's description -facsimileTelephoneNumber: +1 510 251-1332 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 830-4345 -title: Master Payroll Developer -userPassword: Password1 -uid: FeildR -givenName: Rora -mail: FeildR@c0a302c2f9a04dc1997191c76bacca58.bitwarden.com -carLicense: VJTBU6 -departmentNumber: 6546 -employeeType: Contract -homePhone: +1 510 109-7430 -initials: R. F. -mobile: +1 510 528-2566 -pager: +1 510 834-2758 -roomNumber: 8433 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chryste Tsenter,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chryste Tsenter -sn: Tsenter -description: This is Chryste Tsenter's description -facsimileTelephoneNumber: +1 510 106-6924 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 510 267-6369 -title: Chief Peons Manager -userPassword: Password1 -uid: TsenterC -givenName: Chryste -mail: TsenterC@25aebd1493fb4d31a43de4ac0f71a727.bitwarden.com -carLicense: DHR4AM -departmentNumber: 4116 -employeeType: Contract -homePhone: +1 510 121-4374 -initials: C. T. -mobile: +1 510 830-6242 -pager: +1 510 138-4795 -roomNumber: 9216 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yoda Calleja,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoda Calleja -sn: Calleja -description: This is Yoda Calleja's description -facsimileTelephoneNumber: +1 415 365-1965 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 424-3113 -title: Master Management Artist -userPassword: Password1 -uid: CallejaY -givenName: Yoda -mail: CallejaY@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com -carLicense: 3MCSDP -departmentNumber: 9725 -employeeType: Contract -homePhone: +1 415 839-3975 -initials: Y. C. -mobile: +1 415 653-1661 -pager: +1 415 940-3734 -roomNumber: 8163 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vannie Babalola,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vannie Babalola -sn: Babalola -description: This is Vannie Babalola's description -facsimileTelephoneNumber: +1 415 465-7392 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 348-8065 -title: Chief Peons Janitor -userPassword: Password1 -uid: BabalolV -givenName: Vannie -mail: BabalolV@be9d6d33980e45aa8fdb6ebf08094f9b.bitwarden.com -carLicense: XS21WH -departmentNumber: 1601 -employeeType: Employee -homePhone: +1 415 557-9137 -initials: V. B. -mobile: +1 415 682-4849 -pager: +1 415 171-9090 -roomNumber: 8379 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tulip Yenilmez -sn: Yenilmez -description: This is Tulip Yenilmez's description -facsimileTelephoneNumber: +1 408 484-6512 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 803-8303 -title: Chief Payroll Dictator -userPassword: Password1 -uid: YenilmeT -givenName: Tulip -mail: YenilmeT@906d64f7c2b74479970aa6699821b985.bitwarden.com -carLicense: 2BV6UI -departmentNumber: 9350 -employeeType: Employee -homePhone: +1 408 875-5430 -initials: T. Y. -mobile: +1 408 153-1703 -pager: +1 408 879-3768 -roomNumber: 8592 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kimberlee Rakesh -sn: Rakesh -description: This is Kimberlee Rakesh's description -facsimileTelephoneNumber: +1 408 712-6910 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 181-3371 -title: Junior Peons Technician -userPassword: Password1 -uid: RakeshK -givenName: Kimberlee -mail: RakeshK@923baf1ba66c43ddab40764da6c9cc33.bitwarden.com -carLicense: 73QMOT -departmentNumber: 6698 -employeeType: Employee -homePhone: +1 408 437-5371 -initials: K. R. -mobile: +1 408 262-9584 -pager: +1 408 841-9776 -roomNumber: 9983 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sheryl Diec,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheryl Diec -sn: Diec -description: This is Sheryl Diec's description -facsimileTelephoneNumber: +1 415 592-9479 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 324-2234 -title: Master Product Testing Technician -userPassword: Password1 -uid: DiecS -givenName: Sheryl -mail: DiecS@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com -carLicense: NEOTQW -departmentNumber: 4355 -employeeType: Normal -homePhone: +1 415 549-5978 -initials: S. D. -mobile: +1 415 810-8893 -pager: +1 415 655-2611 -roomNumber: 8091 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Candice Scribner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candice Scribner -sn: Scribner -description: This is Candice Scribner's description -facsimileTelephoneNumber: +1 206 451-9287 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 763-9975 -title: Associate Human Resources Manager -userPassword: Password1 -uid: ScribneC -givenName: Candice -mail: ScribneC@eef8f30988664fe78f88de71627c3b63.bitwarden.com -carLicense: 06WPV1 -departmentNumber: 1236 -employeeType: Contract -homePhone: +1 206 839-3945 -initials: C. S. -mobile: +1 206 619-2288 -pager: +1 206 490-5389 -roomNumber: 9186 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmel Lansupport -sn: Lansupport -description: This is Carmel Lansupport's description -facsimileTelephoneNumber: +1 408 693-7975 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 334-6231 -title: Master Product Testing Vice President -userPassword: Password1 -uid: LansuppC -givenName: Carmel -mail: LansuppC@aebedd81d0064bf4bf3e053b89a4b6eb.bitwarden.com -carLicense: 624KE8 -departmentNumber: 9567 -employeeType: Employee -homePhone: +1 408 941-7884 -initials: C. L. -mobile: +1 408 696-4402 -pager: +1 408 605-9972 -roomNumber: 8741 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Farand Rambow,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farand Rambow -sn: Rambow -description: This is Farand Rambow's description -facsimileTelephoneNumber: +1 818 531-4136 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 691-2402 -title: Chief Product Development Vice President -userPassword: Password1 -uid: RambowF -givenName: Farand -mail: RambowF@15fb4ae5d92f48d1828a5523a2de1119.bitwarden.com -carLicense: 8KUHPC -departmentNumber: 1092 -employeeType: Employee -homePhone: +1 818 432-5255 -initials: F. R. -mobile: +1 818 431-7944 -pager: +1 818 769-9934 -roomNumber: 9805 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Darb Jedrysiak,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darb Jedrysiak -sn: Jedrysiak -description: This is Darb Jedrysiak's description -facsimileTelephoneNumber: +1 415 967-3431 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 421-4987 -title: Junior Peons Technician -userPassword: Password1 -uid: JedrysiD -givenName: Darb -mail: JedrysiD@c56a9475370a48efb779b953853ddb74.bitwarden.com -carLicense: WDAL6U -departmentNumber: 1030 -employeeType: Contract -homePhone: +1 415 215-9060 -initials: D. J. -mobile: +1 415 862-2225 -pager: +1 415 466-1900 -roomNumber: 9498 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Valentia Edmison,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valentia Edmison -sn: Edmison -description: This is Valentia Edmison's description -facsimileTelephoneNumber: +1 510 383-7217 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 348-9745 -title: Master Administrative Consultant -userPassword: Password1 -uid: EdmisonV -givenName: Valentia -mail: EdmisonV@509acce88e824dae901a9dc813095e54.bitwarden.com -carLicense: 27EJ1H -departmentNumber: 4126 -employeeType: Normal -homePhone: +1 510 387-1459 -initials: V. E. -mobile: +1 510 699-6933 -pager: +1 510 704-1956 -roomNumber: 9956 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Reid Hotline,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reid Hotline -sn: Hotline -description: This is Reid Hotline's description -facsimileTelephoneNumber: +1 213 352-1338 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 213 112-5727 -title: Master Payroll Figurehead -userPassword: Password1 -uid: HotlineR -givenName: Reid -mail: HotlineR@36cbe8f598cd4972b6d2494f46f3fea8.bitwarden.com -carLicense: 6IONFK -departmentNumber: 2487 -employeeType: Employee -homePhone: +1 213 665-6436 -initials: R. H. -mobile: +1 213 114-2508 -pager: +1 213 863-9325 -roomNumber: 8034 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nelli Camblin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nelli Camblin -sn: Camblin -description: This is Nelli Camblin's description -facsimileTelephoneNumber: +1 213 853-1188 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 826-5011 -title: Associate Payroll Artist -userPassword: Password1 -uid: CamblinN -givenName: Nelli -mail: CamblinN@49d2d3179b1e4e36991607ece7157ce5.bitwarden.com -carLicense: 7OGWIP -departmentNumber: 9329 -employeeType: Normal -homePhone: +1 213 510-8491 -initials: N. C. -mobile: +1 213 922-5747 -pager: +1 213 190-2845 -roomNumber: 8574 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shaji Heilig,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaji Heilig -sn: Heilig -description: This is Shaji Heilig's description -facsimileTelephoneNumber: +1 415 749-5717 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 350-3289 -title: Master Management Mascot -userPassword: Password1 -uid: HeiligS -givenName: Shaji -mail: HeiligS@d221ea793fe54c61b6d0a123f7f92114.bitwarden.com -carLicense: 4XHBFT -departmentNumber: 5722 -employeeType: Contract -homePhone: +1 415 494-2900 -initials: S. H. -mobile: +1 415 481-5596 -pager: +1 415 151-4594 -roomNumber: 8273 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Angil Shariff,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angil Shariff -sn: Shariff -description: This is Angil Shariff's description -facsimileTelephoneNumber: +1 408 877-2271 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 344-5953 -title: Chief Peons Dictator -userPassword: Password1 -uid: ShariffA -givenName: Angil -mail: ShariffA@6278758e52d64d2fa2b3ae646f7b1c8c.bitwarden.com -carLicense: NCBWG8 -departmentNumber: 2920 -employeeType: Contract -homePhone: +1 408 631-1944 -initials: A. S. -mobile: +1 408 627-9650 -pager: +1 408 847-1875 -roomNumber: 8119 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmencita Digilio -sn: Digilio -description: This is Carmencita Digilio's description -facsimileTelephoneNumber: +1 804 542-1400 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 422-4627 -title: Junior Human Resources Manager -userPassword: Password1 -uid: DigilioC -givenName: Carmencita -mail: DigilioC@99cc3f0e751d412fb99b300aa817ed7d.bitwarden.com -carLicense: 5V8FYF -departmentNumber: 6577 -employeeType: Employee -homePhone: +1 804 559-9038 -initials: C. D. -mobile: +1 804 180-6398 -pager: +1 804 811-8147 -roomNumber: 8206 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Linet McRitchie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linet McRitchie -sn: McRitchie -description: This is Linet McRitchie's description -facsimileTelephoneNumber: +1 206 401-5369 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 196-9026 -title: Supreme Management Developer -userPassword: Password1 -uid: McRitchL -givenName: Linet -mail: McRitchL@7ae74f35c1ca49719017f2b0cacc9b3c.bitwarden.com -carLicense: IK5PD4 -departmentNumber: 1337 -employeeType: Contract -homePhone: +1 206 256-7907 -initials: L. M. -mobile: +1 206 677-3293 -pager: +1 206 536-5346 -roomNumber: 8435 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chen Mayer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chen Mayer -sn: Mayer -description: This is Chen Mayer's description -facsimileTelephoneNumber: +1 510 403-8658 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 456-7904 -title: Supreme Product Testing Writer -userPassword: Password1 -uid: MayerC -givenName: Chen -mail: MayerC@f126477184184f8891beac46174dce4f.bitwarden.com -carLicense: G3O2SL -departmentNumber: 5714 -employeeType: Contract -homePhone: +1 510 865-8693 -initials: C. M. -mobile: +1 510 588-8772 -pager: +1 510 637-6399 -roomNumber: 9224 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anibal Nafezi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anibal Nafezi -sn: Nafezi -description: This is Anibal Nafezi's description -facsimileTelephoneNumber: +1 206 202-9590 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 174-8968 -title: Master Administrative Manager -userPassword: Password1 -uid: NafeziA -givenName: Anibal -mail: NafeziA@e3b02f8ad09c4296ae0a5ca3a1e66b19.bitwarden.com -carLicense: WCIFF3 -departmentNumber: 5018 -employeeType: Contract -homePhone: +1 206 398-4679 -initials: A. N. -mobile: +1 206 610-2889 -pager: +1 206 134-7660 -roomNumber: 9669 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Monteene Azmak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monteene Azmak -sn: Azmak -description: This is Monteene Azmak's description -facsimileTelephoneNumber: +1 804 460-9295 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 452-3244 -title: Supreme Human Resources Architect -userPassword: Password1 -uid: AzmakM -givenName: Monteene -mail: AzmakM@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com -carLicense: 479DJH -departmentNumber: 5349 -employeeType: Contract -homePhone: +1 804 192-8525 -initials: M. A. -mobile: +1 804 542-1213 -pager: +1 804 856-2363 -roomNumber: 9742 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerrit Gasparotto -sn: Gasparotto -description: This is Gerrit Gasparotto's description -facsimileTelephoneNumber: +1 510 914-2595 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 439-3553 -title: Junior Human Resources Writer -userPassword: Password1 -uid: GasparoG -givenName: Gerrit -mail: GasparoG@2f5b8316f26f4fc481de13effbbd4ea6.bitwarden.com -carLicense: 27ASDF -departmentNumber: 4241 -employeeType: Employee -homePhone: +1 510 779-1003 -initials: G. G. -mobile: +1 510 377-5035 -pager: +1 510 439-1659 -roomNumber: 9097 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bep Ramsayer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bep Ramsayer -sn: Ramsayer -description: This is Bep Ramsayer's description -facsimileTelephoneNumber: +1 206 463-5519 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 206 146-5879 -title: Chief Peons Stooge -userPassword: Password1 -uid: RamsayeB -givenName: Bep -mail: RamsayeB@6959c2a103f748adbcb2ba7b29cef5d5.bitwarden.com -carLicense: 6FR5WP -departmentNumber: 1800 -employeeType: Employee -homePhone: +1 206 607-6800 -initials: B. R. -mobile: +1 206 424-5336 -pager: +1 206 885-9655 -roomNumber: 9738 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Emilee Mereu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emilee Mereu -sn: Mereu -description: This is Emilee Mereu's description -facsimileTelephoneNumber: +1 818 845-4504 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 262-8451 -title: Supreme Janitorial Director -userPassword: Password1 -uid: MereuE -givenName: Emilee -mail: MereuE@32d242671ec341929f315049a0e40a31.bitwarden.com -carLicense: XDLXV9 -departmentNumber: 5824 -employeeType: Normal -homePhone: +1 818 325-8693 -initials: E. M. -mobile: +1 818 453-3083 -pager: +1 818 170-1247 -roomNumber: 8940 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perrin Iskandar -sn: Iskandar -description: This is Perrin Iskandar's description -facsimileTelephoneNumber: +1 804 400-2484 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 141-8472 -title: Chief Janitorial Grunt -userPassword: Password1 -uid: IskandaP -givenName: Perrin -mail: IskandaP@dbd5f5a4f3554341aff4c62a69269164.bitwarden.com -carLicense: N3PV98 -departmentNumber: 4090 -employeeType: Contract -homePhone: +1 804 713-3501 -initials: P. I. -mobile: +1 804 798-8297 -pager: +1 804 101-5028 -roomNumber: 8061 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Madalena Brodie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madalena Brodie -sn: Brodie -description: This is Madalena Brodie's description -facsimileTelephoneNumber: +1 206 891-5801 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 206 119-1097 -title: Supreme Product Development Pinhead -userPassword: Password1 -uid: BrodieM -givenName: Madalena -mail: BrodieM@a74d44d69cd54766a615e2c08f9ee9f3.bitwarden.com -carLicense: 1LQQAA -departmentNumber: 4490 -employeeType: Employee -homePhone: +1 206 816-8180 -initials: M. B. -mobile: +1 206 572-6810 -pager: +1 206 671-4131 -roomNumber: 8312 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terrence DeVarennes -sn: DeVarennes -description: This is Terrence DeVarennes's description -facsimileTelephoneNumber: +1 206 709-9765 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 887-7139 -title: Master Product Testing Visionary -userPassword: Password1 -uid: DeVarenT -givenName: Terrence -mail: DeVarenT@34211993f6a54dc18f00a71a05d87998.bitwarden.com -carLicense: IBLIBS -departmentNumber: 4276 -employeeType: Normal -homePhone: +1 206 648-2721 -initials: T. D. -mobile: +1 206 870-6399 -pager: +1 206 484-4411 -roomNumber: 8442 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Liese Childers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liese Childers -sn: Childers -description: This is Liese Childers's description -facsimileTelephoneNumber: +1 408 117-6107 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 281-7747 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: ChilderL -givenName: Liese -mail: ChilderL@d97cf4afad7944a09e52ef7af5343e62.bitwarden.com -carLicense: KMCPG1 -departmentNumber: 4022 -employeeType: Normal -homePhone: +1 408 321-7080 -initials: L. C. -mobile: +1 408 555-8586 -pager: +1 408 268-4245 -roomNumber: 9988 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertrudis Grevy -sn: Grevy -description: This is Gertrudis Grevy's description -facsimileTelephoneNumber: +1 415 111-1789 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 861-8390 -title: Associate Administrative Janitor -userPassword: Password1 -uid: GrevyG -givenName: Gertrudis -mail: GrevyG@a54b6e1d0be04405aa83502caa5550a3.bitwarden.com -carLicense: KA8A4K -departmentNumber: 3242 -employeeType: Employee -homePhone: +1 415 583-5749 -initials: G. G. -mobile: +1 415 915-6441 -pager: +1 415 382-1822 -roomNumber: 9264 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shekar Finnie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shekar Finnie -sn: Finnie -description: This is Shekar Finnie's description -facsimileTelephoneNumber: +1 818 331-2977 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 966-7659 -title: Supreme Management Developer -userPassword: Password1 -uid: FinnieS -givenName: Shekar -mail: FinnieS@bd9a2e982f524b64b04ed8892de43767.bitwarden.com -carLicense: ME36TK -departmentNumber: 1240 -employeeType: Employee -homePhone: +1 818 490-8569 -initials: S. F. -mobile: +1 818 237-1879 -pager: +1 818 579-4602 -roomNumber: 8839 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ilysa Connor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilysa Connor -sn: Connor -description: This is Ilysa Connor's description -facsimileTelephoneNumber: +1 415 951-8021 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 732-7915 -title: Supreme Peons Sales Rep -userPassword: Password1 -uid: ConnorI -givenName: Ilysa -mail: ConnorI@c4e315e8ab0343648ac206c0fcb55300.bitwarden.com -carLicense: 0XT1TX -departmentNumber: 5827 -employeeType: Normal -homePhone: +1 415 987-7151 -initials: I. C. -mobile: +1 415 162-1062 -pager: +1 415 345-4009 -roomNumber: 8839 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krissie Culbertson -sn: Culbertson -description: This is Krissie Culbertson's description -facsimileTelephoneNumber: +1 804 233-4069 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 793-6989 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: CulbertK -givenName: Krissie -mail: CulbertK@c2b132c5eea24821b75062bcddc065ce.bitwarden.com -carLicense: S2AFU5 -departmentNumber: 6471 -employeeType: Employee -homePhone: +1 804 906-2881 -initials: K. C. -mobile: +1 804 554-9318 -pager: +1 804 835-8388 -roomNumber: 8336 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Milly Taghizadeh,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milly Taghizadeh -sn: Taghizadeh -description: This is Milly Taghizadeh's description -facsimileTelephoneNumber: +1 213 660-1119 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 648-8124 -title: Master Management Assistant -userPassword: Password1 -uid: TaghizaM -givenName: Milly -mail: TaghizaM@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com -carLicense: FUVUQM -departmentNumber: 8633 -employeeType: Employee -homePhone: +1 213 763-2945 -initials: M. T. -mobile: +1 213 182-1262 -pager: +1 213 403-3100 -roomNumber: 9484 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bibbye Kurauchi -sn: Kurauchi -description: This is Bibbye Kurauchi's description -facsimileTelephoneNumber: +1 510 338-4353 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 691-6548 -title: Master Product Testing Director -userPassword: Password1 -uid: KurauchB -givenName: Bibbye -mail: KurauchB@b1e6441eff8249c99c7f5c6eae360d4f.bitwarden.com -carLicense: 1R06PB -departmentNumber: 3557 -employeeType: Normal -homePhone: +1 510 825-9524 -initials: B. K. -mobile: +1 510 498-5149 -pager: +1 510 180-2197 -roomNumber: 8179 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Guglielma Gomes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guglielma Gomes -sn: Gomes -description: This is Guglielma Gomes's description -facsimileTelephoneNumber: +1 804 922-3938 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 456-1787 -title: Chief Peons Admin -userPassword: Password1 -uid: GomesG -givenName: Guglielma -mail: GomesG@2f63d6d248304182aa4c0d86ba7fd7fd.bitwarden.com -carLicense: QH5H82 -departmentNumber: 3984 -employeeType: Normal -homePhone: +1 804 420-3362 -initials: G. G. -mobile: +1 804 755-6147 -pager: +1 804 481-8550 -roomNumber: 9217 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Malorie Sei,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malorie Sei -sn: Sei -description: This is Malorie Sei's description -facsimileTelephoneNumber: +1 804 729-3161 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 359-7759 -title: Chief Product Development Visionary -userPassword: Password1 -uid: SeiM -givenName: Malorie -mail: SeiM@7660e12ec2f0413d9900f2acb2787cf3.bitwarden.com -carLicense: P0US2A -departmentNumber: 9223 -employeeType: Employee -homePhone: +1 804 921-2255 -initials: M. S. -mobile: +1 804 317-3313 -pager: +1 804 897-6197 -roomNumber: 8603 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Loella Stephenson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loella Stephenson -sn: Stephenson -description: This is Loella Stephenson's description -facsimileTelephoneNumber: +1 818 181-2158 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 334-2214 -title: Chief Product Development Assistant -userPassword: Password1 -uid: StephenL -givenName: Loella -mail: StephenL@878435e5887c47ef90f06778893d179e.bitwarden.com -carLicense: KLHXXJ -departmentNumber: 3045 -employeeType: Contract -homePhone: +1 818 357-6584 -initials: L. S. -mobile: +1 818 837-3829 -pager: +1 818 260-7253 -roomNumber: 8559 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rozalie Farr,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozalie Farr -sn: Farr -description: This is Rozalie Farr's description -facsimileTelephoneNumber: +1 213 487-3724 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 736-7194 -title: Master Management Mascot -userPassword: Password1 -uid: FarrR -givenName: Rozalie -mail: FarrR@5bfc4ef1cec94f918b8b846a80865382.bitwarden.com -carLicense: YD64PO -departmentNumber: 2994 -employeeType: Employee -homePhone: +1 213 606-8899 -initials: R. F. -mobile: +1 213 421-2439 -pager: +1 213 660-1882 -roomNumber: 8940 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jessa Humphrey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessa Humphrey -sn: Humphrey -description: This is Jessa Humphrey's description -facsimileTelephoneNumber: +1 415 425-3570 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 533-1846 -title: Master Peons Engineer -userPassword: Password1 -uid: HumphreJ -givenName: Jessa -mail: HumphreJ@ab25c8f313f4419ba014954b0448d2c3.bitwarden.com -carLicense: 3I9S6V -departmentNumber: 8143 -employeeType: Normal -homePhone: +1 415 156-9509 -initials: J. H. -mobile: +1 415 317-7721 -pager: +1 415 391-9570 -roomNumber: 8179 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pankesh Chambliss -sn: Chambliss -description: This is Pankesh Chambliss's description -facsimileTelephoneNumber: +1 213 661-9546 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 213 858-1760 -title: Supreme Product Development Madonna -userPassword: Password1 -uid: ChambliP -givenName: Pankesh -mail: ChambliP@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com -carLicense: 5WXVQF -departmentNumber: 1430 -employeeType: Employee -homePhone: +1 213 256-5293 -initials: P. C. -mobile: +1 213 880-2764 -pager: +1 213 822-6411 -roomNumber: 9621 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Audrie Rembecki,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Audrie Rembecki -sn: Rembecki -description: This is Audrie Rembecki's description -facsimileTelephoneNumber: +1 213 629-8255 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 851-9385 -title: Master Management Janitor -userPassword: Password1 -uid: RembeckA -givenName: Audrie -mail: RembeckA@b78fed9ef6a94b4d9e8bb1b5d1719aef.bitwarden.com -carLicense: 9NW2MS -departmentNumber: 8875 -employeeType: Employee -homePhone: +1 213 238-9534 -initials: A. R. -mobile: +1 213 430-9589 -pager: +1 213 407-6363 -roomNumber: 9998 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Miroslav Federico,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miroslav Federico -sn: Federico -description: This is Miroslav Federico's description -facsimileTelephoneNumber: +1 408 431-9949 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 258-6924 -title: Associate Payroll Punk -userPassword: Password1 -uid: FedericM -givenName: Miroslav -mail: FedericM@ff701dee527d4bd9bda5646b61d95c09.bitwarden.com -carLicense: MY0NN8 -departmentNumber: 5369 -employeeType: Employee -homePhone: +1 408 100-5137 -initials: M. F. -mobile: +1 408 711-6837 -pager: +1 408 288-4313 -roomNumber: 9735 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Steffi Voelcker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steffi Voelcker -sn: Voelcker -description: This is Steffi Voelcker's description -facsimileTelephoneNumber: +1 818 475-8306 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 973-5150 -title: Chief Peons Engineer -userPassword: Password1 -uid: VoelckeS -givenName: Steffi -mail: VoelckeS@55fd595ff3eb498eb38f456114e4f66d.bitwarden.com -carLicense: 7QWYE9 -departmentNumber: 7605 -employeeType: Contract -homePhone: +1 818 140-1086 -initials: S. V. -mobile: +1 818 591-8768 -pager: +1 818 908-9938 -roomNumber: 8626 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaclyn Czarnecki -sn: Czarnecki -description: This is Jaclyn Czarnecki's description -facsimileTelephoneNumber: +1 408 674-3952 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 600-5547 -title: Supreme Peons Mascot -userPassword: Password1 -uid: CzarnecJ -givenName: Jaclyn -mail: CzarnecJ@22471469e5a74d89b5185fdcb7a6b10d.bitwarden.com -carLicense: EEBP83 -departmentNumber: 1475 -employeeType: Employee -homePhone: +1 408 624-8685 -initials: J. C. -mobile: +1 408 271-5557 -pager: +1 408 487-9092 -roomNumber: 9803 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aloysia OKarina,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aloysia OKarina -sn: OKarina -description: This is Aloysia OKarina's description -facsimileTelephoneNumber: +1 818 419-7837 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 635-1387 -title: Supreme Management Warrior -userPassword: Password1 -uid: OKarinaA -givenName: Aloysia -mail: OKarinaA@35aa710455a54ec9aacb0743a9cce4e9.bitwarden.com -carLicense: 0MGV1R -departmentNumber: 5344 -employeeType: Contract -homePhone: +1 818 231-8297 -initials: A. O. -mobile: +1 818 971-9328 -pager: +1 818 758-6584 -roomNumber: 9541 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Betsy Braun,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betsy Braun -sn: Braun -description: This is Betsy Braun's description -facsimileTelephoneNumber: +1 206 362-3010 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 115-3765 -title: Master Human Resources Assistant -userPassword: Password1 -uid: BraunB -givenName: Betsy -mail: BraunB@67288b6f618543379d7c917a6d4d0385.bitwarden.com -carLicense: OU53EE -departmentNumber: 1956 -employeeType: Employee -homePhone: +1 206 945-2968 -initials: B. B. -mobile: +1 206 502-7683 -pager: +1 206 970-9814 -roomNumber: 9645 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carling Cupido,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carling Cupido -sn: Cupido -description: This is Carling Cupido's description -facsimileTelephoneNumber: +1 804 286-2183 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 904-2254 -title: Junior Product Development Visionary -userPassword: Password1 -uid: CupidoC -givenName: Carling -mail: CupidoC@a0441f048a884d1891acef81ab17bc91.bitwarden.com -carLicense: 31PYIX -departmentNumber: 6938 -employeeType: Employee -homePhone: +1 804 716-6351 -initials: C. C. -mobile: +1 804 621-1630 -pager: +1 804 717-6714 -roomNumber: 9004 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Saman McNichol,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saman McNichol -sn: McNichol -description: This is Saman McNichol's description -facsimileTelephoneNumber: +1 818 762-5375 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 176-2707 -title: Associate Management Assistant -userPassword: Password1 -uid: McNichoS -givenName: Saman -mail: McNichoS@6e6778c4dc0b46a7a3efac6eb8ad5697.bitwarden.com -carLicense: ELP58O -departmentNumber: 8675 -employeeType: Employee -homePhone: +1 818 780-8178 -initials: S. M. -mobile: +1 818 447-6453 -pager: +1 818 674-6362 -roomNumber: 8952 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dnsproj Tweddle -sn: Tweddle -description: This is Dnsproj Tweddle's description -facsimileTelephoneNumber: +1 510 965-3908 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 976-3053 -title: Associate Human Resources Warrior -userPassword: Password1 -uid: TweddleD -givenName: Dnsproj -mail: TweddleD@0aaa3fff5e9b40a799c1f750d8eb797b.bitwarden.com -carLicense: WSFX98 -departmentNumber: 2112 -employeeType: Contract -homePhone: +1 510 723-4782 -initials: D. T. -mobile: +1 510 814-8066 -pager: +1 510 911-9479 -roomNumber: 9682 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalle Devreeze -sn: Devreeze -description: This is Kalle Devreeze's description -facsimileTelephoneNumber: +1 818 872-9546 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 818 841-4876 -title: Chief Human Resources Stooge -userPassword: Password1 -uid: DevreezK -givenName: Kalle -mail: DevreezK@23f6fd02f4fc47ae857bce11e624fa96.bitwarden.com -carLicense: 9JEBFA -departmentNumber: 7517 -employeeType: Normal -homePhone: +1 818 305-6732 -initials: K. D. -mobile: +1 818 431-9135 -pager: +1 818 385-3897 -roomNumber: 8053 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Selma Slotnick,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selma Slotnick -sn: Slotnick -description: This is Selma Slotnick's description -facsimileTelephoneNumber: +1 818 862-8637 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 818 577-5068 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: SlotnicS -givenName: Selma -mail: SlotnicS@dc6a05982d874ebebc06c9a0d16ba5c2.bitwarden.com -carLicense: 960B0F -departmentNumber: 2263 -employeeType: Normal -homePhone: +1 818 159-2114 -initials: S. S. -mobile: +1 818 297-4378 -pager: +1 818 986-4965 -roomNumber: 9224 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akin Anastasiadis -sn: Anastasiadis -description: This is Akin Anastasiadis's description -facsimileTelephoneNumber: +1 818 784-6009 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 530-8771 -title: Master Janitorial Technician -userPassword: Password1 -uid: AnastasA -givenName: Akin -mail: AnastasA@9c1fdcc0e6874a8c82391032a13dcfa4.bitwarden.com -carLicense: 6CT2XT -departmentNumber: 1861 -employeeType: Contract -homePhone: +1 818 378-3811 -initials: A. A. -mobile: +1 818 310-2567 -pager: +1 818 564-6093 -roomNumber: 8994 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Felicia Holz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felicia Holz -sn: Holz -description: This is Felicia Holz's description -facsimileTelephoneNumber: +1 213 997-3671 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 125-7044 -title: Supreme Payroll Warrior -userPassword: Password1 -uid: HolzF -givenName: Felicia -mail: HolzF@189c40acad524386a961885e16a9d551.bitwarden.com -carLicense: P8TBD2 -departmentNumber: 5843 -employeeType: Employee -homePhone: +1 213 827-6689 -initials: F. H. -mobile: +1 213 738-6180 -pager: +1 213 729-6967 -roomNumber: 9734 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joke Cottengim,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joke Cottengim -sn: Cottengim -description: This is Joke Cottengim's description -facsimileTelephoneNumber: +1 408 119-9969 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 469-6470 -title: Supreme Product Testing Writer -userPassword: Password1 -uid: CottengJ -givenName: Joke -mail: CottengJ@6dc0e5d935a04bb897ee53893751111f.bitwarden.com -carLicense: TCS01E -departmentNumber: 7988 -employeeType: Normal -homePhone: +1 408 615-9926 -initials: J. C. -mobile: +1 408 124-2642 -pager: +1 408 512-8534 -roomNumber: 8000 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sonoe Linke,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonoe Linke -sn: Linke -description: This is Sonoe Linke's description -facsimileTelephoneNumber: +1 206 765-5574 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 206 391-2274 -title: Associate Product Development Sales Rep -userPassword: Password1 -uid: LinkeS -givenName: Sonoe -mail: LinkeS@46c8675a51b74aa5ba283cf789fe901d.bitwarden.com -carLicense: 57NUPA -departmentNumber: 3752 -employeeType: Normal -homePhone: +1 206 798-5165 -initials: S. L. -mobile: +1 206 996-8727 -pager: +1 206 834-4003 -roomNumber: 9575 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marce Tracey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marce Tracey -sn: Tracey -description: This is Marce Tracey's description -facsimileTelephoneNumber: +1 510 795-6736 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 510 503-7948 -title: Master Administrative Admin -userPassword: Password1 -uid: TraceyM -givenName: Marce -mail: TraceyM@d1e70dc6cc51492f97ff25ba684b2627.bitwarden.com -carLicense: F8HR8C -departmentNumber: 1653 -employeeType: Employee -homePhone: +1 510 209-6149 -initials: M. T. -mobile: +1 510 788-5941 -pager: +1 510 394-1334 -roomNumber: 9777 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Muffin Gadbois,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Muffin Gadbois -sn: Gadbois -description: This is Muffin Gadbois's description -facsimileTelephoneNumber: +1 804 877-8272 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 895-7143 -title: Junior Management Pinhead -userPassword: Password1 -uid: GadboisM -givenName: Muffin -mail: GadboisM@47c8f2050dbd47fbb19d2678b904f394.bitwarden.com -carLicense: 22S6N2 -departmentNumber: 8858 -employeeType: Contract -homePhone: +1 804 954-4772 -initials: M. G. -mobile: +1 804 588-7141 -pager: +1 804 532-5448 -roomNumber: 8213 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ros Rajwani,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ros Rajwani -sn: Rajwani -description: This is Ros Rajwani's description -facsimileTelephoneNumber: +1 818 287-4412 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 926-5931 -title: Supreme Peons Visionary -userPassword: Password1 -uid: RajwaniR -givenName: Ros -mail: RajwaniR@27bcaa4785014c5c91369f5095a41ea2.bitwarden.com -carLicense: 7Y4BVS -departmentNumber: 7526 -employeeType: Normal -homePhone: +1 818 328-8270 -initials: R. R. -mobile: +1 818 947-2079 -pager: +1 818 841-4826 -roomNumber: 9392 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lynnelle Shane,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynnelle Shane -sn: Shane -description: This is Lynnelle Shane's description -facsimileTelephoneNumber: +1 804 808-7404 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 674-2841 -title: Associate Payroll Writer -userPassword: Password1 -uid: ShaneL -givenName: Lynnelle -mail: ShaneL@f93d2785fb994aaa8ec423242f6986a1.bitwarden.com -carLicense: NANYTS -departmentNumber: 8995 -employeeType: Employee -homePhone: +1 804 432-1903 -initials: L. S. -mobile: +1 804 851-9211 -pager: +1 804 629-8748 -roomNumber: 8931 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kissee Ide,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kissee Ide -sn: Ide -description: This is Kissee Ide's description -facsimileTelephoneNumber: +1 818 519-3998 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 408-6876 -title: Chief Peons Punk -userPassword: Password1 -uid: IdeK -givenName: Kissee -mail: IdeK@83f78532c82a4f77a10f2d7460348b85.bitwarden.com -carLicense: OCLH3I -departmentNumber: 5713 -employeeType: Normal -homePhone: +1 818 973-2312 -initials: K. I. -mobile: +1 818 359-4776 -pager: +1 818 604-8900 -roomNumber: 9562 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leesa Trader,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leesa Trader -sn: Trader -description: This is Leesa Trader's description -facsimileTelephoneNumber: +1 408 222-6905 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 926-6928 -title: Master Peons Warrior -userPassword: Password1 -uid: TraderL -givenName: Leesa -mail: TraderL@e4a770eb171044f780cef5d883eb3a3f.bitwarden.com -carLicense: YMROV8 -departmentNumber: 1341 -employeeType: Normal -homePhone: +1 408 988-9472 -initials: L. T. -mobile: +1 408 976-8726 -pager: +1 408 537-6638 -roomNumber: 8530 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Indy Pullan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Indy Pullan -sn: Pullan -description: This is Indy Pullan's description -facsimileTelephoneNumber: +1 804 597-1596 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 248-8280 -title: Associate Human Resources Technician -userPassword: Password1 -uid: PullanI -givenName: Indy -mail: PullanI@80dd2ec5de3e4cba8ab6e9385f8b5eaa.bitwarden.com -carLicense: 6MD1W8 -departmentNumber: 9963 -employeeType: Employee -homePhone: +1 804 552-1307 -initials: I. P. -mobile: +1 804 117-1398 -pager: +1 804 384-5281 -roomNumber: 9195 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Micro Valente,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micro Valente -sn: Valente -description: This is Micro Valente's description -facsimileTelephoneNumber: +1 818 989-8887 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 310-4866 -title: Junior Product Development President -userPassword: Password1 -uid: ValenteM -givenName: Micro -mail: ValenteM@13f716505b994218abaf3b2234e80f5f.bitwarden.com -carLicense: 54NUGA -departmentNumber: 4101 -employeeType: Contract -homePhone: +1 818 373-1949 -initials: M. V. -mobile: +1 818 548-6423 -pager: +1 818 423-7616 -roomNumber: 8697 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hendrika Lackie -sn: Lackie -description: This is Hendrika Lackie's description -facsimileTelephoneNumber: +1 804 837-6021 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 417-6042 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: LackieH -givenName: Hendrika -mail: LackieH@26874cbc58cb45a4a2a676c29fc0a053.bitwarden.com -carLicense: 951IUO -departmentNumber: 3136 -employeeType: Normal -homePhone: +1 804 901-5866 -initials: H. L. -mobile: +1 804 491-8932 -pager: +1 804 993-8738 -roomNumber: 8057 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lea Marineau,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lea Marineau -sn: Marineau -description: This is Lea Marineau's description -facsimileTelephoneNumber: +1 213 768-9419 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 900-1241 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: MarineaL -givenName: Lea -mail: MarineaL@13757531d26649c1ba7e4dc18bfd6a62.bitwarden.com -carLicense: XDJ4PC -departmentNumber: 8897 -employeeType: Contract -homePhone: +1 213 984-8356 -initials: L. M. -mobile: +1 213 219-8819 -pager: +1 213 920-2179 -roomNumber: 8389 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dinh Yadollahi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dinh Yadollahi -sn: Yadollahi -description: This is Dinh Yadollahi's description -facsimileTelephoneNumber: +1 510 335-5157 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 412-7673 -title: Associate Management President -userPassword: Password1 -uid: YadollaD -givenName: Dinh -mail: YadollaD@a1a01d013d8e44f99cffc6de4935e97e.bitwarden.com -carLicense: XAX4YS -departmentNumber: 9313 -employeeType: Contract -homePhone: +1 510 673-3178 -initials: D. Y. -mobile: +1 510 855-1553 -pager: +1 510 537-4414 -roomNumber: 8737 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nj Patchett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nj Patchett -sn: Patchett -description: This is Nj Patchett's description -facsimileTelephoneNumber: +1 408 439-2866 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 855-6128 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: PatchetN -givenName: Nj -mail: PatchetN@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com -carLicense: 4W1N9V -departmentNumber: 4987 -employeeType: Employee -homePhone: +1 408 457-1621 -initials: N. P. -mobile: +1 408 128-9507 -pager: +1 408 864-5143 -roomNumber: 8105 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vicente Zenisek -sn: Zenisek -description: This is Vicente Zenisek's description -facsimileTelephoneNumber: +1 804 804-8455 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 243-1447 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: ZenisekV -givenName: Vicente -mail: ZenisekV@f1af10e65a3c4deea04ab7a7f844eadd.bitwarden.com -carLicense: NW1717 -departmentNumber: 2920 -employeeType: Normal -homePhone: +1 804 106-6474 -initials: V. Z. -mobile: +1 804 652-8545 -pager: +1 804 542-3325 -roomNumber: 8050 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Helsa Calis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helsa Calis -sn: Calis -description: This is Helsa Calis's description -facsimileTelephoneNumber: +1 804 182-2112 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 804 702-8460 -title: Supreme Administrative Manager -userPassword: Password1 -uid: CalisH -givenName: Helsa -mail: CalisH@0f20bc491a46484db42d8b650f7e698d.bitwarden.com -carLicense: MW3WFF -departmentNumber: 1828 -employeeType: Contract -homePhone: +1 804 398-4417 -initials: H. C. -mobile: +1 804 378-2190 -pager: +1 804 744-5591 -roomNumber: 9002 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Drona Panter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drona Panter -sn: Panter -description: This is Drona Panter's description -facsimileTelephoneNumber: +1 510 230-3901 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 232-5169 -title: Associate Human Resources Director -userPassword: Password1 -uid: PanterD -givenName: Drona -mail: PanterD@45a31d4ab53e40acbe69b0d9b04b9ec0.bitwarden.com -carLicense: ET27UA -departmentNumber: 7232 -employeeType: Employee -homePhone: +1 510 694-1591 -initials: D. P. -mobile: +1 510 873-4538 -pager: +1 510 360-3323 -roomNumber: 8305 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Filia Magnusson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Filia Magnusson -sn: Magnusson -description: This is Filia Magnusson's description -facsimileTelephoneNumber: +1 206 236-8503 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 403-9045 -title: Master Management Fellow -userPassword: Password1 -uid: MagnussF -givenName: Filia -mail: MagnussF@dd5583b679564f14b7cb6461f47a6a4f.bitwarden.com -carLicense: 6CFHCV -departmentNumber: 9540 -employeeType: Normal -homePhone: +1 206 366-4334 -initials: F. M. -mobile: +1 206 714-3236 -pager: +1 206 635-4119 -roomNumber: 8936 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bernadette Schmelzel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernadette Schmelzel -sn: Schmelzel -description: This is Bernadette Schmelzel's description -facsimileTelephoneNumber: +1 206 387-1579 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 206 802-8339 -title: Junior Management Manager -userPassword: Password1 -uid: SchmelzB -givenName: Bernadette -mail: SchmelzB@a5413b46913143afa665313de01c325c.bitwarden.com -carLicense: PP3BJ4 -departmentNumber: 3533 -employeeType: Employee -homePhone: +1 206 705-4180 -initials: B. S. -mobile: +1 206 868-7213 -pager: +1 206 253-1363 -roomNumber: 9382 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elva Radcliffe,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elva Radcliffe -sn: Radcliffe -description: This is Elva Radcliffe's description -facsimileTelephoneNumber: +1 206 747-2086 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 922-2421 -title: Associate Administrative Writer -userPassword: Password1 -uid: RadclifE -givenName: Elva -mail: RadclifE@ae02c83ad0ef40a7bee5a95ca1e9e096.bitwarden.com -carLicense: TM1R9X -departmentNumber: 5953 -employeeType: Contract -homePhone: +1 206 687-7868 -initials: E. R. -mobile: +1 206 790-5405 -pager: +1 206 975-6416 -roomNumber: 9272 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Janson Sealy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janson Sealy -sn: Sealy -description: This is Janson Sealy's description -facsimileTelephoneNumber: +1 510 439-6588 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 991-8887 -title: Chief Human Resources Fellow -userPassword: Password1 -uid: SealyJ -givenName: Janson -mail: SealyJ@ec1c957a0ac64fc4b62ba8838e8e6e5a.bitwarden.com -carLicense: JXI7B7 -departmentNumber: 4058 -employeeType: Contract -homePhone: +1 510 807-1438 -initials: J. S. -mobile: +1 510 799-6841 -pager: +1 510 850-7959 -roomNumber: 8425 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bethina Horak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bethina Horak -sn: Horak -description: This is Bethina Horak's description -facsimileTelephoneNumber: +1 415 753-7606 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 962-3214 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: HorakB -givenName: Bethina -mail: HorakB@d95f88e753834af2ae01c6025a41df6e.bitwarden.com -carLicense: C5PP0U -departmentNumber: 8011 -employeeType: Normal -homePhone: +1 415 659-6067 -initials: B. H. -mobile: +1 415 485-5762 -pager: +1 415 171-5848 -roomNumber: 9575 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Manny Burkhardt,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manny Burkhardt -sn: Burkhardt -description: This is Manny Burkhardt's description -facsimileTelephoneNumber: +1 804 952-5553 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 908-1724 -title: Associate Product Development Fellow -userPassword: Password1 -uid: BurkharM -givenName: Manny -mail: BurkharM@58b1feb535e94d39a943e5e96951c27d.bitwarden.com -carLicense: UJSFPW -departmentNumber: 1550 -employeeType: Contract -homePhone: +1 804 306-8450 -initials: M. B. -mobile: +1 804 840-9501 -pager: +1 804 157-8998 -roomNumber: 8375 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mehmud Rios,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mehmud Rios -sn: Rios -description: This is Mehmud Rios's description -facsimileTelephoneNumber: +1 415 821-3529 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 675-5355 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: RiosM -givenName: Mehmud -mail: RiosM@b73122735ce441d6a5329e1b3833484b.bitwarden.com -carLicense: FS0CQB -departmentNumber: 6478 -employeeType: Normal -homePhone: +1 415 505-7632 -initials: M. R. -mobile: +1 415 710-3902 -pager: +1 415 805-1741 -roomNumber: 9523 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Priscilla Schirmer -sn: Schirmer -description: This is Priscilla Schirmer's description -facsimileTelephoneNumber: +1 415 788-8111 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 748-8303 -title: Supreme Payroll Janitor -userPassword: Password1 -uid: SchirmeP -givenName: Priscilla -mail: SchirmeP@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com -carLicense: KG815O -departmentNumber: 1175 -employeeType: Normal -homePhone: +1 415 869-6917 -initials: P. S. -mobile: +1 415 693-4592 -pager: +1 415 772-9929 -roomNumber: 9613 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jinann Wildeman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jinann Wildeman -sn: Wildeman -description: This is Jinann Wildeman's description -facsimileTelephoneNumber: +1 408 330-1684 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 989-9221 -title: Junior Management Fellow -userPassword: Password1 -uid: WildemaJ -givenName: Jinann -mail: WildemaJ@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com -carLicense: WBJJLG -departmentNumber: 3307 -employeeType: Contract -homePhone: +1 408 989-9568 -initials: J. W. -mobile: +1 408 354-8992 -pager: +1 408 976-8883 -roomNumber: 9564 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lisetta Semler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lisetta Semler -sn: Semler -description: This is Lisetta Semler's description -facsimileTelephoneNumber: +1 206 132-7190 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 494-3280 -title: Junior Management Developer -userPassword: Password1 -uid: SemlerL -givenName: Lisetta -mail: SemlerL@ffcb266a0b9d4db986bd5378efac6255.bitwarden.com -carLicense: 3MIICE -departmentNumber: 2678 -employeeType: Normal -homePhone: +1 206 386-7060 -initials: L. S. -mobile: +1 206 279-6415 -pager: +1 206 801-8441 -roomNumber: 9809 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Trenna Fradette,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trenna Fradette -sn: Fradette -description: This is Trenna Fradette's description -facsimileTelephoneNumber: +1 206 516-4016 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 660-9541 -title: Supreme Janitorial Director -userPassword: Password1 -uid: FradettT -givenName: Trenna -mail: FradettT@37098c17a937400b986b54e1bc765718.bitwarden.com -carLicense: XAOX0G -departmentNumber: 2161 -employeeType: Employee -homePhone: +1 206 961-2906 -initials: T. F. -mobile: +1 206 742-2142 -pager: +1 206 667-5317 -roomNumber: 9865 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffi Vilozny -sn: Vilozny -description: This is Tiffi Vilozny's description -facsimileTelephoneNumber: +1 415 222-1581 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 996-4129 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: ViloznyT -givenName: Tiffi -mail: ViloznyT@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com -carLicense: 1BYUDP -departmentNumber: 1914 -employeeType: Contract -homePhone: +1 415 523-5010 -initials: T. V. -mobile: +1 415 532-6739 -pager: +1 415 414-9036 -roomNumber: 9089 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sashenka Warwick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sashenka Warwick -sn: Warwick -description: This is Sashenka Warwick's description -facsimileTelephoneNumber: +1 804 952-5988 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 813-5157 -title: Associate Payroll Vice President -userPassword: Password1 -uid: WarwickS -givenName: Sashenka -mail: WarwickS@118d571b1571425c87bcb58317919134.bitwarden.com -carLicense: X61B3W -departmentNumber: 7775 -employeeType: Employee -homePhone: +1 804 742-3847 -initials: S. W. -mobile: +1 804 427-2057 -pager: +1 804 551-7575 -roomNumber: 8068 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bassam Cisco,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bassam Cisco -sn: Cisco -description: This is Bassam Cisco's description -facsimileTelephoneNumber: +1 818 430-2616 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 527-6655 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: CiscoB -givenName: Bassam -mail: CiscoB@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com -carLicense: 9IXCC2 -departmentNumber: 7161 -employeeType: Employee -homePhone: +1 818 148-9879 -initials: B. C. -mobile: +1 818 368-8847 -pager: +1 818 605-4697 -roomNumber: 8032 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yvan Kea,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yvan Kea -sn: Kea -description: This is Yvan Kea's description -facsimileTelephoneNumber: +1 510 193-5971 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 152-3696 -title: Supreme Management Stooge -userPassword: Password1 -uid: KeaY -givenName: Yvan -mail: KeaY@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com -carLicense: M5MRT4 -departmentNumber: 5328 -employeeType: Normal -homePhone: +1 510 334-8203 -initials: Y. K. -mobile: +1 510 366-8699 -pager: +1 510 676-8325 -roomNumber: 8433 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ijff Monforton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ijff Monforton -sn: Monforton -description: This is Ijff Monforton's description -facsimileTelephoneNumber: +1 213 290-4912 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 213 966-7150 -title: Junior Product Development Writer -userPassword: Password1 -uid: MonfortI -givenName: Ijff -mail: MonfortI@f273a190f14545708d6c984111d46055.bitwarden.com -carLicense: 64A0F8 -departmentNumber: 5145 -employeeType: Normal -homePhone: +1 213 584-5642 -initials: I. M. -mobile: +1 213 494-7396 -pager: +1 213 732-9003 -roomNumber: 8147 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassi Fadlallah -sn: Fadlallah -description: This is Cassi Fadlallah's description -facsimileTelephoneNumber: +1 415 960-2951 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 767-5878 -title: Master Payroll Technician -userPassword: Password1 -uid: FadlallC -givenName: Cassi -mail: FadlallC@1dc980ce277d4e6690f81b768ece41e0.bitwarden.com -carLicense: WJOT15 -departmentNumber: 3198 -employeeType: Employee -homePhone: +1 415 607-3871 -initials: C. F. -mobile: +1 415 391-2925 -pager: +1 415 813-6226 -roomNumber: 8796 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynsey Tabalba -sn: Tabalba -description: This is Lynsey Tabalba's description -facsimileTelephoneNumber: +1 818 525-5892 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 470-2855 -title: Supreme Product Development Punk -userPassword: Password1 -uid: TabalbaL -givenName: Lynsey -mail: TabalbaL@528c9fa3f4634d4b9c93989a607b8098.bitwarden.com -carLicense: O5WNP2 -departmentNumber: 1956 -employeeType: Normal -homePhone: +1 818 441-1195 -initials: L. T. -mobile: +1 818 523-8152 -pager: +1 818 308-7393 -roomNumber: 8630 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anderson Nunold,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anderson Nunold -sn: Nunold -description: This is Anderson Nunold's description -facsimileTelephoneNumber: +1 804 252-6072 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 112-4942 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: NunoldA -givenName: Anderson -mail: NunoldA@edf99b25a1c649749aeb3745c7ce07a0.bitwarden.com -carLicense: RII0X4 -departmentNumber: 4338 -employeeType: Employee -homePhone: +1 804 532-7282 -initials: A. N. -mobile: +1 804 428-2073 -pager: +1 804 469-4218 -roomNumber: 9620 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dulcia Burkey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulcia Burkey -sn: Burkey -description: This is Dulcia Burkey's description -facsimileTelephoneNumber: +1 818 799-1476 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 818 719-3299 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: BurkeyD -givenName: Dulcia -mail: BurkeyD@1a998e292598475391af8dec2bcfc1a8.bitwarden.com -carLicense: KG1LV8 -departmentNumber: 4875 -employeeType: Normal -homePhone: +1 818 294-9478 -initials: D. B. -mobile: +1 818 836-9294 -pager: +1 818 585-7026 -roomNumber: 9651 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Isidora Wilczewski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isidora Wilczewski -sn: Wilczewski -description: This is Isidora Wilczewski's description -facsimileTelephoneNumber: +1 206 502-5509 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 312-5554 -title: Master Management Director -userPassword: Password1 -uid: WilczewI -givenName: Isidora -mail: WilczewI@dc401fe14a3e4403a51a351982eb441b.bitwarden.com -carLicense: MSTQRB -departmentNumber: 1578 -employeeType: Employee -homePhone: +1 206 770-8197 -initials: I. W. -mobile: +1 206 249-8968 -pager: +1 206 157-6931 -roomNumber: 8871 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alexine Tarof,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alexine Tarof -sn: Tarof -description: This is Alexine Tarof's description -facsimileTelephoneNumber: +1 818 737-6662 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 378-8927 -title: Associate Product Development Stooge -userPassword: Password1 -uid: TarofA -givenName: Alexine -mail: TarofA@b4c7fc4bf99a4f9f92481679c9a4b8b5.bitwarden.com -carLicense: 95DFW7 -departmentNumber: 1754 -employeeType: Normal -homePhone: +1 818 716-9470 -initials: A. T. -mobile: +1 818 925-4876 -pager: +1 818 158-8309 -roomNumber: 8082 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ashok Bagg,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashok Bagg -sn: Bagg -description: This is Ashok Bagg's description -facsimileTelephoneNumber: +1 206 596-3019 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 206 622-7864 -title: Junior Management Figurehead -userPassword: Password1 -uid: BaggA -givenName: Ashok -mail: BaggA@5ecfe4c8aaf4487fb624902f7b975e7f.bitwarden.com -carLicense: 1LHFDW -departmentNumber: 5853 -employeeType: Employee -homePhone: +1 206 408-4046 -initials: A. B. -mobile: +1 206 728-3850 -pager: +1 206 975-9608 -roomNumber: 9175 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Antoni Friesen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antoni Friesen -sn: Friesen -description: This is Antoni Friesen's description -facsimileTelephoneNumber: +1 415 204-7001 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 271-2359 -title: Associate Payroll Engineer -userPassword: Password1 -uid: FriesenA -givenName: Antoni -mail: FriesenA@6e287118b6904f0fb9c650aef9285536.bitwarden.com -carLicense: JNMMYL -departmentNumber: 9356 -employeeType: Employee -homePhone: +1 415 861-2703 -initials: A. F. -mobile: +1 415 819-9149 -pager: +1 415 506-6769 -roomNumber: 8675 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Beate Ribot,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beate Ribot -sn: Ribot -description: This is Beate Ribot's description -facsimileTelephoneNumber: +1 213 704-7346 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 530-8981 -title: Chief Administrative Visionary -userPassword: Password1 -uid: RibotB -givenName: Beate -mail: RibotB@c92fece191874f98841ffeece2238130.bitwarden.com -carLicense: UCBJQA -departmentNumber: 2621 -employeeType: Normal -homePhone: +1 213 374-4232 -initials: B. R. -mobile: +1 213 375-6924 -pager: +1 213 744-9411 -roomNumber: 8639 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evaleen Caltrider -sn: Caltrider -description: This is Evaleen Caltrider's description -facsimileTelephoneNumber: +1 213 967-8713 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 213 605-1917 -title: Associate Janitorial Director -userPassword: Password1 -uid: CaltridE -givenName: Evaleen -mail: CaltridE@392576165dfe4cafb8fa1d35ef39e725.bitwarden.com -carLicense: 9W9FT4 -departmentNumber: 2956 -employeeType: Contract -homePhone: +1 213 474-8391 -initials: E. C. -mobile: +1 213 131-1328 -pager: +1 213 682-6879 -roomNumber: 9776 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Pde Bautista,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pde Bautista -sn: Bautista -description: This is Pde Bautista's description -facsimileTelephoneNumber: +1 206 956-9664 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 957-6516 -title: Chief Janitorial Architect -userPassword: Password1 -uid: BautistP -givenName: Pde -mail: BautistP@ef19dcebf9c048d588e1e2f72c4bddc2.bitwarden.com -carLicense: 9RV33C -departmentNumber: 2875 -employeeType: Normal -homePhone: +1 206 145-1726 -initials: P. B. -mobile: +1 206 295-1490 -pager: +1 206 829-9135 -roomNumber: 8721 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marco Cho,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marco Cho -sn: Cho -description: This is Marco Cho's description -facsimileTelephoneNumber: +1 510 896-6557 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 510 416-3869 -title: Chief Administrative Visionary -userPassword: Password1 -uid: ChoM -givenName: Marco -mail: ChoM@cc02f064f98b40fea712c7f35045e528.bitwarden.com -carLicense: 1WIRQM -departmentNumber: 3081 -employeeType: Normal -homePhone: +1 510 323-5427 -initials: M. C. -mobile: +1 510 471-4053 -pager: +1 510 324-3813 -roomNumber: 9334 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrianna Ruppert -sn: Ruppert -description: This is Adrianna Ruppert's description -facsimileTelephoneNumber: +1 804 673-5592 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 975-9001 -title: Chief Human Resources Developer -userPassword: Password1 -uid: RuppertA -givenName: Adrianna -mail: RuppertA@ecbe7413d7a74dce8478d8a77a5f394f.bitwarden.com -carLicense: RFBD36 -departmentNumber: 3039 -employeeType: Contract -homePhone: +1 804 583-8984 -initials: A. R. -mobile: +1 804 788-7393 -pager: +1 804 954-5821 -roomNumber: 8288 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ashly McNitt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashly McNitt -sn: McNitt -description: This is Ashly McNitt's description -facsimileTelephoneNumber: +1 206 489-7723 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 710-8242 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: McNittA -givenName: Ashly -mail: McNittA@53b9160b2496409caa1d33b8b06ca0f2.bitwarden.com -carLicense: LLY8F9 -departmentNumber: 6295 -employeeType: Contract -homePhone: +1 206 117-8701 -initials: A. M. -mobile: +1 206 141-2135 -pager: +1 206 307-8729 -roomNumber: 8362 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ginni Brunelle,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginni Brunelle -sn: Brunelle -description: This is Ginni Brunelle's description -facsimileTelephoneNumber: +1 510 472-4766 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 183-3218 -title: Junior Administrative Fellow -userPassword: Password1 -uid: BrunellG -givenName: Ginni -mail: BrunellG@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com -carLicense: FI0PCK -departmentNumber: 8662 -employeeType: Employee -homePhone: +1 510 882-9259 -initials: G. B. -mobile: +1 510 335-4796 -pager: +1 510 836-9412 -roomNumber: 9235 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maybelle Hammond,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maybelle Hammond -sn: Hammond -description: This is Maybelle Hammond's description -facsimileTelephoneNumber: +1 213 833-9767 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 951-1795 -title: Supreme Management Visionary -userPassword: Password1 -uid: HammondM -givenName: Maybelle -mail: HammondM@1bd38dfda0ec498fac15746919a63a0e.bitwarden.com -carLicense: YD3T97 -departmentNumber: 3457 -employeeType: Normal -homePhone: +1 213 618-3705 -initials: M. H. -mobile: +1 213 660-3032 -pager: +1 213 804-8382 -roomNumber: 8467 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Georgine Delaney,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgine Delaney -sn: Delaney -description: This is Georgine Delaney's description -facsimileTelephoneNumber: +1 408 316-7165 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 194-7873 -title: Master Peons Czar -userPassword: Password1 -uid: DelaneyG -givenName: Georgine -mail: DelaneyG@d0bb47da3574428792ab636cf81dc1b3.bitwarden.com -carLicense: L81233 -departmentNumber: 2743 -employeeType: Normal -homePhone: +1 408 530-8099 -initials: G. D. -mobile: +1 408 539-9970 -pager: +1 408 139-5904 -roomNumber: 8092 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Brent Guindi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brent Guindi -sn: Guindi -description: This is Brent Guindi's description -facsimileTelephoneNumber: +1 818 607-8536 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 723-2705 -title: Chief Janitorial Admin -userPassword: Password1 -uid: GuindiB -givenName: Brent -mail: GuindiB@309b117b618847b7b78c15d90bccac07.bitwarden.com -carLicense: LRNHQU -departmentNumber: 9337 -employeeType: Employee -homePhone: +1 818 881-3462 -initials: B. G. -mobile: +1 818 117-5906 -pager: +1 818 247-3217 -roomNumber: 9318 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Annette Madgett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annette Madgett -sn: Madgett -description: This is Annette Madgett's description -facsimileTelephoneNumber: +1 804 651-9938 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 757-7679 -title: Chief Management Stooge -userPassword: Password1 -uid: MadgettA -givenName: Annette -mail: MadgettA@87e96f783b644d65b5110e046327acbd.bitwarden.com -carLicense: U6PBD7 -departmentNumber: 9437 -employeeType: Contract -homePhone: +1 804 863-3250 -initials: A. M. -mobile: +1 804 860-6701 -pager: +1 804 782-7879 -roomNumber: 9319 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tesa Duda,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tesa Duda -sn: Duda -description: This is Tesa Duda's description -facsimileTelephoneNumber: +1 408 787-1127 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 811-7629 -title: Associate Payroll Consultant -userPassword: Password1 -uid: DudaT -givenName: Tesa -mail: DudaT@de48d028368243f491b13126a0955d2b.bitwarden.com -carLicense: 08160R -departmentNumber: 6044 -employeeType: Contract -homePhone: +1 408 183-1499 -initials: T. D. -mobile: +1 408 114-8975 -pager: +1 408 584-1526 -roomNumber: 9070 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Idus Welch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idus Welch -sn: Welch -description: This is Idus Welch's description -facsimileTelephoneNumber: +1 213 431-2065 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 765-6875 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: WelchI -givenName: Idus -mail: WelchI@341209807c3b449193b094017d62cb24.bitwarden.com -carLicense: IDGJH0 -departmentNumber: 3718 -employeeType: Employee -homePhone: +1 213 612-5693 -initials: I. W. -mobile: +1 213 157-9523 -pager: +1 213 204-8077 -roomNumber: 9900 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katine BeattieHillier -sn: BeattieHillier -description: This is Katine BeattieHillier's description -facsimileTelephoneNumber: +1 804 588-2649 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 804 972-2639 -title: Associate Janitorial President -userPassword: Password1 -uid: BeattieK -givenName: Katine -mail: BeattieK@6d0942ba8f2d4a37a2dd747e99b7c4eb.bitwarden.com -carLicense: LPPB2T -departmentNumber: 6355 -employeeType: Contract -homePhone: +1 804 118-3253 -initials: K. B. -mobile: +1 804 979-9634 -pager: +1 804 838-5419 -roomNumber: 8860 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyssa Gavens -sn: Gavens -description: This is Lyssa Gavens's description -facsimileTelephoneNumber: +1 804 300-5975 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 165-2216 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: GavensL -givenName: Lyssa -mail: GavensL@c06f5d628bd7482da3cd966d3e8be7ba.bitwarden.com -carLicense: QTRQLU -departmentNumber: 7400 -employeeType: Contract -homePhone: +1 804 236-8644 -initials: L. G. -mobile: +1 804 972-3682 -pager: +1 804 564-8242 -roomNumber: 8512 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrtice Maheu -sn: Maheu -description: This is Myrtice Maheu's description -facsimileTelephoneNumber: +1 415 311-7149 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 730-7325 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: MaheuM -givenName: Myrtice -mail: MaheuM@24c88e38c3b84591a556764222d2f663.bitwarden.com -carLicense: 7E9E6C -departmentNumber: 7481 -employeeType: Employee -homePhone: +1 415 853-9591 -initials: M. M. -mobile: +1 415 542-6073 -pager: +1 415 933-6059 -roomNumber: 9590 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fina Volkmann,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fina Volkmann -sn: Volkmann -description: This is Fina Volkmann's description -facsimileTelephoneNumber: +1 213 726-3515 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 225-2955 -title: Master Payroll Manager -userPassword: Password1 -uid: VolkmanF -givenName: Fina -mail: VolkmanF@b463f1d05e7e4eaba404b90bcd29cc1e.bitwarden.com -carLicense: YGA32R -departmentNumber: 7655 -employeeType: Normal -homePhone: +1 213 765-1270 -initials: F. V. -mobile: +1 213 317-6580 -pager: +1 213 378-8683 -roomNumber: 9103 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Eirena Mahn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eirena Mahn -sn: Mahn -description: This is Eirena Mahn's description -facsimileTelephoneNumber: +1 213 466-3795 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 216-1727 -title: Supreme Janitorial Figurehead -userPassword: Password1 -uid: MahnE -givenName: Eirena -mail: MahnE@0152a211f3f440b4af045cb6354f524e.bitwarden.com -carLicense: RJW9GK -departmentNumber: 3441 -employeeType: Contract -homePhone: +1 213 560-7469 -initials: E. M. -mobile: +1 213 221-1790 -pager: +1 213 971-9434 -roomNumber: 9998 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Pinakin Spooner,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pinakin Spooner -sn: Spooner -description: This is Pinakin Spooner's description -facsimileTelephoneNumber: +1 415 762-5466 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 804-2878 -title: Master Management President -userPassword: Password1 -uid: SpoonerP -givenName: Pinakin -mail: SpoonerP@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com -carLicense: 0XT91H -departmentNumber: 6360 -employeeType: Contract -homePhone: +1 415 540-3924 -initials: P. S. -mobile: +1 415 650-6064 -pager: +1 415 405-1941 -roomNumber: 8448 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luciana Scarffe -sn: Scarffe -description: This is Luciana Scarffe's description -facsimileTelephoneNumber: +1 804 599-2722 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 804 351-8991 -title: Supreme Product Testing Punk -userPassword: Password1 -uid: ScarffeL -givenName: Luciana -mail: ScarffeL@2351067d51a3467b820158a0674b058a.bitwarden.com -carLicense: CVDJ0R -departmentNumber: 1420 -employeeType: Contract -homePhone: +1 804 682-3831 -initials: L. S. -mobile: +1 804 935-3208 -pager: +1 804 653-2516 -roomNumber: 9981 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esther Popieraitis -sn: Popieraitis -description: This is Esther Popieraitis's description -facsimileTelephoneNumber: +1 206 368-1300 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 877-8022 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: PopieraE -givenName: Esther -mail: PopieraE@1ca6d69a45f64604926213dd1e115851.bitwarden.com -carLicense: CMO03B -departmentNumber: 6579 -employeeType: Employee -homePhone: +1 206 494-3552 -initials: E. P. -mobile: +1 206 687-3438 -pager: +1 206 982-7090 -roomNumber: 8833 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryellen Receiving -sn: Receiving -description: This is Maryellen Receiving's description -facsimileTelephoneNumber: +1 415 443-2123 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 824-3615 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: ReceiviM -givenName: Maryellen -mail: ReceiviM@03bb59f0f5b24019aa5b034a3fadd7fe.bitwarden.com -carLicense: 90PCKB -departmentNumber: 8771 -employeeType: Contract -homePhone: +1 415 882-3867 -initials: M. R. -mobile: +1 415 577-8307 -pager: +1 415 667-2420 -roomNumber: 8820 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kannan McCabe,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kannan McCabe -sn: McCabe -description: This is Kannan McCabe's description -facsimileTelephoneNumber: +1 206 761-5768 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 469-3611 -title: Master Management Engineer -userPassword: Password1 -uid: McCabeK -givenName: Kannan -mail: McCabeK@51dbb26cdbdc4f95a7093a6bb469b01b.bitwarden.com -carLicense: WTGDSV -departmentNumber: 4864 -employeeType: Employee -homePhone: +1 206 176-6642 -initials: K. M. -mobile: +1 206 807-6485 -pager: +1 206 725-3075 -roomNumber: 9005 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WaiBun Sloane -sn: Sloane -description: This is WaiBun Sloane's description -facsimileTelephoneNumber: +1 213 131-9038 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 396-1187 -title: Junior Human Resources Engineer -userPassword: Password1 -uid: SloaneW -givenName: WaiBun -mail: SloaneW@fef32f3295c44e0185e68196ce06374a.bitwarden.com -carLicense: 3V5KIJ -departmentNumber: 8038 -employeeType: Contract -homePhone: +1 213 750-1084 -initials: W. S. -mobile: +1 213 227-8002 -pager: +1 213 791-7444 -roomNumber: 9855 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Magda Bullard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magda Bullard -sn: Bullard -description: This is Magda Bullard's description -facsimileTelephoneNumber: +1 408 325-7404 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 133-9403 -title: Master Administrative Technician -userPassword: Password1 -uid: BullardM -givenName: Magda -mail: BullardM@f2c3f0652e32488088bedf6cc0ca618f.bitwarden.com -carLicense: VAF643 -departmentNumber: 6976 -employeeType: Contract -homePhone: +1 408 251-2060 -initials: M. B. -mobile: +1 408 203-2623 -pager: +1 408 701-3273 -roomNumber: 8349 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ophelia Snodgrass -sn: Snodgrass -description: This is Ophelia Snodgrass's description -facsimileTelephoneNumber: +1 213 191-9818 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 695-8201 -title: Junior Product Development Madonna -userPassword: Password1 -uid: SnodgraO -givenName: Ophelia -mail: SnodgraO@651dfea288cb4a3b967f35aa6edd73a9.bitwarden.com -carLicense: 5VRL0D -departmentNumber: 7734 -employeeType: Employee -homePhone: +1 213 307-7065 -initials: O. S. -mobile: +1 213 282-5873 -pager: +1 213 627-1850 -roomNumber: 9240 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dzung Datema,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dzung Datema -sn: Datema -description: This is Dzung Datema's description -facsimileTelephoneNumber: +1 818 915-2134 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 214-1113 -title: Master Janitorial Janitor -userPassword: Password1 -uid: DatemaD -givenName: Dzung -mail: DatemaD@3f4b9aad0e4547d9998409b9c2b65792.bitwarden.com -carLicense: T9JIDI -departmentNumber: 2424 -employeeType: Contract -homePhone: +1 818 866-9983 -initials: D. D. -mobile: +1 818 124-1150 -pager: +1 818 478-7949 -roomNumber: 9129 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kiele Boggs,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiele Boggs -sn: Boggs -description: This is Kiele Boggs's description -facsimileTelephoneNumber: +1 408 589-9191 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 408 652-3078 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: BoggsK -givenName: Kiele -mail: BoggsK@93802411fc4d40bd8843de42a4656ea2.bitwarden.com -carLicense: 39K8FS -departmentNumber: 8893 -employeeType: Contract -homePhone: +1 408 120-2995 -initials: K. B. -mobile: +1 408 489-4497 -pager: +1 408 935-6829 -roomNumber: 8408 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Othelia Humphrey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othelia Humphrey -sn: Humphrey -description: This is Othelia Humphrey's description -facsimileTelephoneNumber: +1 408 721-5642 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 699-3007 -title: Junior Payroll Consultant -userPassword: Password1 -uid: HumphreO -givenName: Othelia -mail: HumphreO@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com -carLicense: XWBST0 -departmentNumber: 6379 -employeeType: Contract -homePhone: +1 408 503-9919 -initials: O. H. -mobile: +1 408 560-9561 -pager: +1 408 698-1793 -roomNumber: 9862 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Willabella Sarto,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willabella Sarto -sn: Sarto -description: This is Willabella Sarto's description -facsimileTelephoneNumber: +1 415 371-7926 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 541-3784 -title: Junior Peons Artist -userPassword: Password1 -uid: SartoW -givenName: Willabella -mail: SartoW@da1b5788f067415eb6baf89891f2b951.bitwarden.com -carLicense: 141J7P -departmentNumber: 1038 -employeeType: Employee -homePhone: +1 415 568-4191 -initials: W. S. -mobile: +1 415 659-8270 -pager: +1 415 140-9137 -roomNumber: 8867 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maitreya Carriere,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maitreya Carriere -sn: Carriere -description: This is Maitreya Carriere's description -facsimileTelephoneNumber: +1 213 335-3478 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 184-7057 -title: Associate Management Assistant -userPassword: Password1 -uid: CarrierM -givenName: Maitreya -mail: CarrierM@9e649b7894c9461dbc0ee0f6133e962b.bitwarden.com -carLicense: RQVGTC -departmentNumber: 2113 -employeeType: Normal -homePhone: +1 213 902-7930 -initials: M. C. -mobile: +1 213 521-3916 -pager: +1 213 206-5982 -roomNumber: 9839 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marje Sherwin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marje Sherwin -sn: Sherwin -description: This is Marje Sherwin's description -facsimileTelephoneNumber: +1 408 685-7176 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 535-1485 -title: Chief Human Resources Warrior -userPassword: Password1 -uid: SherwinM -givenName: Marje -mail: SherwinM@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com -carLicense: RCY91L -departmentNumber: 6468 -employeeType: Employee -homePhone: +1 408 108-6532 -initials: M. S. -mobile: +1 408 859-7507 -pager: +1 408 491-7295 -roomNumber: 9819 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dode Schnell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dode Schnell -sn: Schnell -description: This is Dode Schnell's description -facsimileTelephoneNumber: +1 408 567-6198 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 198-2345 -title: Associate Product Development Stooge -userPassword: Password1 -uid: SchnellD -givenName: Dode -mail: SchnellD@59fd6449f708475fb2e48ed60c509c36.bitwarden.com -carLicense: E1OM79 -departmentNumber: 4267 -employeeType: Normal -homePhone: +1 408 714-7815 -initials: D. S. -mobile: +1 408 840-1527 -pager: +1 408 617-4252 -roomNumber: 8436 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlene Wadasinghe -sn: Wadasinghe -description: This is Arlene Wadasinghe's description -facsimileTelephoneNumber: +1 415 180-5917 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 747-8328 -title: Associate Peons Visionary -userPassword: Password1 -uid: WadasinA -givenName: Arlene -mail: WadasinA@3e74039e650c410fbbe3b9202ae34fbd.bitwarden.com -carLicense: KQXG5J -departmentNumber: 2841 -employeeType: Normal -homePhone: +1 415 550-8785 -initials: A. W. -mobile: +1 415 907-4238 -pager: +1 415 586-5142 -roomNumber: 8756 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolanda Skrobecki -sn: Skrobecki -description: This is Jolanda Skrobecki's description -facsimileTelephoneNumber: +1 804 247-3258 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 618-3352 -title: Supreme Product Development Consultant -userPassword: Password1 -uid: SkrobecJ -givenName: Jolanda -mail: SkrobecJ@8187109cbba7441ab35098b49dbd1de9.bitwarden.com -carLicense: RUM3VM -departmentNumber: 6648 -employeeType: Normal -homePhone: +1 804 145-5646 -initials: J. S. -mobile: +1 804 641-5941 -pager: +1 804 930-6821 -roomNumber: 9274 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=PuiWah Szopinski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PuiWah Szopinski -sn: Szopinski -description: This is PuiWah Szopinski's description -facsimileTelephoneNumber: +1 818 413-4285 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 676-9592 -title: Associate Peons Pinhead -userPassword: Password1 -uid: SzopinsP -givenName: PuiWah -mail: SzopinsP@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com -carLicense: 7BE2S9 -departmentNumber: 2906 -employeeType: Normal -homePhone: +1 818 710-9261 -initials: P. S. -mobile: +1 818 664-2754 -pager: +1 818 102-8265 -roomNumber: 8038 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Halimeda MacMaid -sn: MacMaid -description: This is Halimeda MacMaid's description -facsimileTelephoneNumber: +1 818 920-2061 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 818 614-8941 -title: Chief Human Resources Czar -userPassword: Password1 -uid: MacMaidH -givenName: Halimeda -mail: MacMaidH@c0a6b6c92fcf4d2e9e442a4db87fb8d6.bitwarden.com -carLicense: WI2F86 -departmentNumber: 7778 -employeeType: Contract -homePhone: +1 818 804-6960 -initials: H. M. -mobile: +1 818 730-4569 -pager: +1 818 857-2254 -roomNumber: 9901 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jack Totaro,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jack Totaro -sn: Totaro -description: This is Jack Totaro's description -facsimileTelephoneNumber: +1 818 835-5987 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 320-6005 -title: Junior Management Visionary -userPassword: Password1 -uid: TotaroJ -givenName: Jack -mail: TotaroJ@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com -carLicense: M8A1XV -departmentNumber: 2524 -employeeType: Contract -homePhone: +1 818 195-5462 -initials: J. T. -mobile: +1 818 421-4105 -pager: +1 818 342-8547 -roomNumber: 8082 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hettie Phagan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hettie Phagan -sn: Phagan -description: This is Hettie Phagan's description -facsimileTelephoneNumber: +1 213 676-4929 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 633-9767 -title: Master Human Resources Grunt -userPassword: Password1 -uid: PhaganH -givenName: Hettie -mail: PhaganH@6085c53f98f34479bf7644e7797622f1.bitwarden.com -carLicense: A05MLJ -departmentNumber: 8506 -employeeType: Contract -homePhone: +1 213 744-4273 -initials: H. P. -mobile: +1 213 689-2635 -pager: +1 213 572-5273 -roomNumber: 9174 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Margalo Scholey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margalo Scholey -sn: Scholey -description: This is Margalo Scholey's description -facsimileTelephoneNumber: +1 408 896-3107 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 408 229-1127 -title: Master Product Testing Evangelist -userPassword: Password1 -uid: ScholeyM -givenName: Margalo -mail: ScholeyM@355248f7071d4e58beb9bf6f2b8c9ee2.bitwarden.com -carLicense: FAKS8S -departmentNumber: 9051 -employeeType: Employee -homePhone: +1 408 151-4508 -initials: M. S. -mobile: +1 408 289-6034 -pager: +1 408 534-8916 -roomNumber: 8631 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Delly Newnam,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delly Newnam -sn: Newnam -description: This is Delly Newnam's description -facsimileTelephoneNumber: +1 206 672-4882 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 383-8616 -title: Junior Product Development Warrior -userPassword: Password1 -uid: NewnamD -givenName: Delly -mail: NewnamD@051b892e4657474a87006ab9ebfe221e.bitwarden.com -carLicense: XDWAP7 -departmentNumber: 3915 -employeeType: Contract -homePhone: +1 206 535-4560 -initials: D. N. -mobile: +1 206 257-6720 -pager: +1 206 366-6316 -roomNumber: 8320 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ernst Dinkel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ernst Dinkel -sn: Dinkel -description: This is Ernst Dinkel's description -facsimileTelephoneNumber: +1 415 170-8308 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 943-2511 -title: Master Product Development Engineer -userPassword: Password1 -uid: DinkelE -givenName: Ernst -mail: DinkelE@b7ede65f1eb44e418de85b304b190714.bitwarden.com -carLicense: QX4OOH -departmentNumber: 6778 -employeeType: Normal -homePhone: +1 415 916-6716 -initials: E. D. -mobile: +1 415 817-3047 -pager: +1 415 993-7836 -roomNumber: 8937 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Charis Armstead,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charis Armstead -sn: Armstead -description: This is Charis Armstead's description -facsimileTelephoneNumber: +1 510 897-9454 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 615-8973 -title: Master Human Resources Grunt -userPassword: Password1 -uid: ArmsteaC -givenName: Charis -mail: ArmsteaC@72e85d46fcf84593970655aae6ba4a48.bitwarden.com -carLicense: 0C9QEI -departmentNumber: 8667 -employeeType: Contract -homePhone: +1 510 295-5103 -initials: C. A. -mobile: +1 510 953-5524 -pager: +1 510 656-9433 -roomNumber: 8306 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Purnam Dillabough,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Purnam Dillabough -sn: Dillabough -description: This is Purnam Dillabough's description -facsimileTelephoneNumber: +1 415 365-3595 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 529-2679 -title: Junior Peons Punk -userPassword: Password1 -uid: DillaboP -givenName: Purnam -mail: DillaboP@f0c361699ebd444799c8cfa94bd5e53c.bitwarden.com -carLicense: BU5HDC -departmentNumber: 3041 -employeeType: Contract -homePhone: +1 415 977-3852 -initials: P. D. -mobile: +1 415 952-2273 -pager: +1 415 559-7610 -roomNumber: 9835 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cart Fillmore,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cart Fillmore -sn: Fillmore -description: This is Cart Fillmore's description -facsimileTelephoneNumber: +1 415 254-5696 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 179-5477 -title: Supreme Human Resources Consultant -userPassword: Password1 -uid: FillmorC -givenName: Cart -mail: FillmorC@95d3db8b234f4ca7a8f17262f4fbafbe.bitwarden.com -carLicense: LY8HTG -departmentNumber: 4793 -employeeType: Normal -homePhone: +1 415 701-5167 -initials: C. F. -mobile: +1 415 449-1880 -pager: +1 415 208-9389 -roomNumber: 9433 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yuen Maybee,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yuen Maybee -sn: Maybee -description: This is Yuen Maybee's description -facsimileTelephoneNumber: +1 818 738-3108 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 198-4139 -title: Master Product Testing Grunt -userPassword: Password1 -uid: MaybeeY -givenName: Yuen -mail: MaybeeY@5ae024a345a94b5090f63e27d57061d6.bitwarden.com -carLicense: DFA0GH -departmentNumber: 3654 -employeeType: Employee -homePhone: +1 818 527-8295 -initials: Y. M. -mobile: +1 818 630-5176 -pager: +1 818 116-6234 -roomNumber: 8436 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Petr Battershill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petr Battershill -sn: Battershill -description: This is Petr Battershill's description -facsimileTelephoneNumber: +1 408 438-4015 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 408 743-5082 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: BattersP -givenName: Petr -mail: BattersP@518037bbef344b5ab53506e072d3a395.bitwarden.com -carLicense: 7EBCFF -departmentNumber: 3935 -employeeType: Contract -homePhone: +1 408 554-9033 -initials: P. B. -mobile: +1 408 143-3036 -pager: +1 408 972-7399 -roomNumber: 9649 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Beulah Nowell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beulah Nowell -sn: Nowell -description: This is Beulah Nowell's description -facsimileTelephoneNumber: +1 213 135-4557 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 866-2149 -title: Master Human Resources Assistant -userPassword: Password1 -uid: NowellB -givenName: Beulah -mail: NowellB@983b433db82044e3b6af1fbca582d502.bitwarden.com -carLicense: RR7JX4 -departmentNumber: 5699 -employeeType: Normal -homePhone: +1 213 954-7823 -initials: B. N. -mobile: +1 213 171-5936 -pager: +1 213 781-7443 -roomNumber: 9098 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maidisn Gronwall -sn: Gronwall -description: This is Maidisn Gronwall's description -facsimileTelephoneNumber: +1 818 295-2795 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 818 538-1758 -title: Master Product Testing Punk -userPassword: Password1 -uid: GronwalM -givenName: Maidisn -mail: GronwalM@9ef7921d830342e7a2bb3017c4f04f06.bitwarden.com -carLicense: WOH5EB -departmentNumber: 9456 -employeeType: Normal -homePhone: +1 818 349-2973 -initials: M. G. -mobile: +1 818 452-3366 -pager: +1 818 440-7405 -roomNumber: 8554 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aryn Mills,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aryn Mills -sn: Mills -description: This is Aryn Mills's description -facsimileTelephoneNumber: +1 818 525-3563 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 682-7680 -title: Supreme Peons Grunt -userPassword: Password1 -uid: MillsA -givenName: Aryn -mail: MillsA@15d7a602173249f0aea4978bd6de557b.bitwarden.com -carLicense: 3V53H5 -departmentNumber: 6946 -employeeType: Employee -homePhone: +1 818 235-6165 -initials: A. M. -mobile: +1 818 674-8571 -pager: +1 818 179-6602 -roomNumber: 9259 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Car Gillet,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Car Gillet -sn: Gillet -description: This is Car Gillet's description -facsimileTelephoneNumber: +1 510 427-8237 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 550-3553 -title: Master Peons Figurehead -userPassword: Password1 -uid: GilletC -givenName: Car -mail: GilletC@90e76709c73345b5b9d03c814c8e9b26.bitwarden.com -carLicense: Y8K91S -departmentNumber: 4628 -employeeType: Normal -homePhone: +1 510 722-8210 -initials: C. G. -mobile: +1 510 863-2504 -pager: +1 510 226-3310 -roomNumber: 8148 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melinie Vilmansen -sn: Vilmansen -description: This is Melinie Vilmansen's description -facsimileTelephoneNumber: +1 213 537-8958 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 317-9108 -title: Master Payroll Czar -userPassword: Password1 -uid: VilmansM -givenName: Melinie -mail: VilmansM@7a6163690f7b43abb4115499c63b90a7.bitwarden.com -carLicense: 919S2N -departmentNumber: 6885 -employeeType: Employee -homePhone: +1 213 770-9919 -initials: M. V. -mobile: +1 213 868-2650 -pager: +1 213 165-3826 -roomNumber: 9468 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betteann Bohannon -sn: Bohannon -description: This is Betteann Bohannon's description -facsimileTelephoneNumber: +1 408 641-4324 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 408 486-6856 -title: Junior Janitorial Architect -userPassword: Password1 -uid: BohannoB -givenName: Betteann -mail: BohannoB@7a8159a4b38d481598c0559b90aec74d.bitwarden.com -carLicense: 6E3F2T -departmentNumber: 4437 -employeeType: Normal -homePhone: +1 408 443-6632 -initials: B. B. -mobile: +1 408 677-8483 -pager: +1 408 626-9297 -roomNumber: 9086 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ronn Gorsky,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronn Gorsky -sn: Gorsky -description: This is Ronn Gorsky's description -facsimileTelephoneNumber: +1 804 572-2986 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 612-3238 -title: Master Payroll Grunt -userPassword: Password1 -uid: GorskyR -givenName: Ronn -mail: GorskyR@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com -carLicense: MEN7OE -departmentNumber: 2329 -employeeType: Normal -homePhone: +1 804 995-1125 -initials: R. G. -mobile: +1 804 352-8270 -pager: +1 804 301-4503 -roomNumber: 8743 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benedikta MacHattie -sn: MacHattie -description: This is Benedikta MacHattie's description -facsimileTelephoneNumber: +1 408 212-1769 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 469-2057 -title: Chief Payroll Figurehead -userPassword: Password1 -uid: MacHattB -givenName: Benedikta -mail: MacHattB@412210ae069c4a339c017fbe0c820674.bitwarden.com -carLicense: QVA1LF -departmentNumber: 8851 -employeeType: Employee -homePhone: +1 408 392-7371 -initials: B. M. -mobile: +1 408 832-7724 -pager: +1 408 795-3844 -roomNumber: 9512 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roly Dirilten,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roly Dirilten -sn: Dirilten -description: This is Roly Dirilten's description -facsimileTelephoneNumber: +1 408 168-9636 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 408 711-3128 -title: Chief Administrative Developer -userPassword: Password1 -uid: DirilteR -givenName: Roly -mail: DirilteR@5fc4c33111ce40c6b004653ef715e846.bitwarden.com -carLicense: QPMV7Y -departmentNumber: 3144 -employeeType: Normal -homePhone: +1 408 659-6220 -initials: R. D. -mobile: +1 408 156-1976 -pager: +1 408 308-7300 -roomNumber: 9077 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Betteann Thaker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betteann Thaker -sn: Thaker -description: This is Betteann Thaker's description -facsimileTelephoneNumber: +1 206 758-7848 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 118-5627 -title: Junior Product Testing Czar -userPassword: Password1 -uid: ThakerB -givenName: Betteann -mail: ThakerB@56147ad3dbe542cb8cabca7cdf73e618.bitwarden.com -carLicense: 5U3QJV -departmentNumber: 3108 -employeeType: Employee -homePhone: +1 206 298-2438 -initials: B. T. -mobile: +1 206 240-5047 -pager: +1 206 836-2119 -roomNumber: 8839 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Howden Raglin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Howden Raglin -sn: Raglin -description: This is Howden Raglin's description -facsimileTelephoneNumber: +1 510 661-8765 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 979-4763 -title: Master Peons Director -userPassword: Password1 -uid: RaglinH -givenName: Howden -mail: RaglinH@49a5c823cbe74e80b9d7e45aa3c6dc0c.bitwarden.com -carLicense: 2MSLP0 -departmentNumber: 8709 -employeeType: Contract -homePhone: +1 510 890-7525 -initials: H. R. -mobile: +1 510 486-6207 -pager: +1 510 678-5074 -roomNumber: 9482 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Madeline Sipple,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madeline Sipple -sn: Sipple -description: This is Madeline Sipple's description -facsimileTelephoneNumber: +1 415 698-5323 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 212-3899 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: SippleM -givenName: Madeline -mail: SippleM@42f6c709ced54560a282482057eafc53.bitwarden.com -carLicense: WO0I7P -departmentNumber: 5717 -employeeType: Contract -homePhone: +1 415 813-4821 -initials: M. S. -mobile: +1 415 409-6461 -pager: +1 415 763-7505 -roomNumber: 9215 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zulema Marra,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zulema Marra -sn: Marra -description: This is Zulema Marra's description -facsimileTelephoneNumber: +1 415 348-4367 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 611-8773 -title: Associate Management Engineer -userPassword: Password1 -uid: MarraZ -givenName: Zulema -mail: MarraZ@57ee1e7c1faa4ce2b72c1469382238e6.bitwarden.com -carLicense: W2012R -departmentNumber: 1244 -employeeType: Employee -homePhone: +1 415 404-1514 -initials: Z. M. -mobile: +1 415 381-4172 -pager: +1 415 688-7873 -roomNumber: 9036 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dino Maenpaa -sn: Maenpaa -description: This is Dino Maenpaa's description -facsimileTelephoneNumber: +1 804 588-4154 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 125-8345 -title: Junior Product Testing Director -userPassword: Password1 -uid: MaenpaaD -givenName: Dino -mail: MaenpaaD@5184500633ec4ec1833d29082b384d33.bitwarden.com -carLicense: BFF05S -departmentNumber: 4151 -employeeType: Normal -homePhone: +1 804 793-4380 -initials: D. M. -mobile: +1 804 756-3949 -pager: +1 804 428-2033 -roomNumber: 9126 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaffer Smithdeal -sn: Smithdeal -description: This is Jaffer Smithdeal's description -facsimileTelephoneNumber: +1 213 550-3467 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 213 979-9142 -title: Chief Peons Warrior -userPassword: Password1 -uid: SmithdeJ -givenName: Jaffer -mail: SmithdeJ@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com -carLicense: OC6FC2 -departmentNumber: 7792 -employeeType: Employee -homePhone: +1 213 218-9547 -initials: J. S. -mobile: +1 213 382-7246 -pager: +1 213 717-2038 -roomNumber: 9867 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amalita Ivancevic,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amalita Ivancevic -sn: Ivancevic -description: This is Amalita Ivancevic's description -facsimileTelephoneNumber: +1 804 848-1233 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 777-3051 -title: Supreme Management Developer -userPassword: Password1 -uid: IvancevA -givenName: Amalita -mail: IvancevA@c507f54f9f5548a1b05ab68478cbbf4b.bitwarden.com -carLicense: LV1B4M -departmentNumber: 4333 -employeeType: Contract -homePhone: +1 804 756-7710 -initials: A. I. -mobile: +1 804 332-4834 -pager: +1 804 176-9487 -roomNumber: 8568 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Izabel Zwierzchowski -sn: Zwierzchowski -description: This is Izabel Zwierzchowski's description -facsimileTelephoneNumber: +1 510 246-1971 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 884-1694 -title: Chief Peons Consultant -userPassword: Password1 -uid: ZwierzcI -givenName: Izabel -mail: ZwierzcI@8208431ef5574a1885889c7e3a263d25.bitwarden.com -carLicense: J8F929 -departmentNumber: 1294 -employeeType: Employee -homePhone: +1 510 757-3342 -initials: I. Z. -mobile: +1 510 513-2730 -pager: +1 510 601-4899 -roomNumber: 8288 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avaz Govindasamy -sn: Govindasamy -description: This is Avaz Govindasamy's description -facsimileTelephoneNumber: +1 818 110-8939 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 818 547-4392 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: GovindaA -givenName: Avaz -mail: GovindaA@c595ac3eb122406fb35a1a0f955e739c.bitwarden.com -carLicense: KPBS0W -departmentNumber: 6947 -employeeType: Normal -homePhone: +1 818 595-4778 -initials: A. G. -mobile: +1 818 745-8355 -pager: +1 818 338-3757 -roomNumber: 9401 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juditha Kupidy -sn: Kupidy -description: This is Juditha Kupidy's description -facsimileTelephoneNumber: +1 510 915-7453 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 954-7164 -title: Chief Product Testing Consultant -userPassword: Password1 -uid: KupidyJ -givenName: Juditha -mail: KupidyJ@0333e91411d445859a646e8c16d92c70.bitwarden.com -carLicense: N2E9PQ -departmentNumber: 4830 -employeeType: Contract -homePhone: +1 510 704-5898 -initials: J. K. -mobile: +1 510 158-9347 -pager: +1 510 905-5379 -roomNumber: 8351 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lazlo McClelland,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lazlo McClelland -sn: McClelland -description: This is Lazlo McClelland's description -facsimileTelephoneNumber: +1 408 520-8162 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 584-9137 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: McClellL -givenName: Lazlo -mail: McClellL@b0926f5fa5f345dab897ee36737c0cbd.bitwarden.com -carLicense: L7IFEI -departmentNumber: 6103 -employeeType: Contract -homePhone: +1 408 592-2640 -initials: L. M. -mobile: +1 408 403-9927 -pager: +1 408 760-2100 -roomNumber: 8765 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Angele Mitrani,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angele Mitrani -sn: Mitrani -description: This is Angele Mitrani's description -facsimileTelephoneNumber: +1 415 396-4230 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 374-1902 -title: Associate Management Grunt -userPassword: Password1 -uid: MitraniA -givenName: Angele -mail: MitraniA@4fcafc5d237d4e89ae70144b97fd81b9.bitwarden.com -carLicense: JBD9QG -departmentNumber: 1708 -employeeType: Employee -homePhone: +1 415 504-3113 -initials: A. M. -mobile: +1 415 118-8477 -pager: +1 415 903-9093 -roomNumber: 9284 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ghislain Kechichian,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ghislain Kechichian -sn: Kechichian -description: This is Ghislain Kechichian's description -facsimileTelephoneNumber: +1 804 636-1700 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 605-3718 -title: Supreme Peons Consultant -userPassword: Password1 -uid: KechichG -givenName: Ghislain -mail: KechichG@b6e011a2296d47ac9cf137f608b1c223.bitwarden.com -carLicense: E1VO6E -departmentNumber: 7800 -employeeType: Contract -homePhone: +1 804 376-8702 -initials: G. K. -mobile: +1 804 214-8207 -pager: +1 804 626-5933 -roomNumber: 9276 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Merrily Administrator,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrily Administrator -sn: Administrator -description: This is Merrily Administrator's description -facsimileTelephoneNumber: +1 415 427-8444 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 427-3070 -title: Associate Management Artist -userPassword: Password1 -uid: AdminisM -givenName: Merrily -mail: AdminisM@43965c00f0db4ca198510569e172ade1.bitwarden.com -carLicense: GKEBQ2 -departmentNumber: 6573 -employeeType: Normal -homePhone: +1 415 409-4073 -initials: M. A. -mobile: +1 415 100-2573 -pager: +1 415 771-4356 -roomNumber: 8778 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zena Farrell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zena Farrell -sn: Farrell -description: This is Zena Farrell's description -facsimileTelephoneNumber: +1 213 903-3981 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 682-1034 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: FarrellZ -givenName: Zena -mail: FarrellZ@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com -carLicense: G5MG6D -departmentNumber: 5180 -employeeType: Employee -homePhone: +1 213 428-9638 -initials: Z. F. -mobile: +1 213 831-8023 -pager: +1 213 923-1848 -roomNumber: 9174 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ovila Lanctot,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ovila Lanctot -sn: Lanctot -description: This is Ovila Lanctot's description -facsimileTelephoneNumber: +1 408 550-7823 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 618-9639 -title: Associate Payroll Manager -userPassword: Password1 -uid: LanctotO -givenName: Ovila -mail: LanctotO@a5aea84a7d5a4a6887c80f4ed88bc0e0.bitwarden.com -carLicense: JQ1L6Q -departmentNumber: 2699 -employeeType: Normal -homePhone: +1 408 540-2422 -initials: O. L. -mobile: +1 408 782-2978 -pager: +1 408 190-6874 -roomNumber: 8933 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Karie Kurash,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karie Kurash -sn: Kurash -description: This is Karie Kurash's description -facsimileTelephoneNumber: +1 415 638-1971 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 567-1181 -title: Master Administrative Assistant -userPassword: Password1 -uid: KurashK -givenName: Karie -mail: KurashK@ec2712850890400a82cf449b7931685a.bitwarden.com -carLicense: CG9VLY -departmentNumber: 9851 -employeeType: Normal -homePhone: +1 415 461-9714 -initials: K. K. -mobile: +1 415 695-9267 -pager: +1 415 474-6323 -roomNumber: 8441 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kalina Mednick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalina Mednick -sn: Mednick -description: This is Kalina Mednick's description -facsimileTelephoneNumber: +1 804 225-6623 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 256-6952 -title: Master Payroll Madonna -userPassword: Password1 -uid: MednickK -givenName: Kalina -mail: MednickK@7ae93f71f3d249edac467943331a9dd7.bitwarden.com -carLicense: 4EJ2M3 -departmentNumber: 3870 -employeeType: Normal -homePhone: +1 804 605-8789 -initials: K. M. -mobile: +1 804 837-1781 -pager: +1 804 369-9046 -roomNumber: 9616 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yannis Behnam,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yannis Behnam -sn: Behnam -description: This is Yannis Behnam's description -facsimileTelephoneNumber: +1 206 222-3087 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 747-2444 -title: Supreme Peons Technician -userPassword: Password1 -uid: BehnamY -givenName: Yannis -mail: BehnamY@fa1b72a27fc34f4eb3c5c550f81af8b3.bitwarden.com -carLicense: N52BOJ -departmentNumber: 6248 -employeeType: Contract -homePhone: +1 206 134-7334 -initials: Y. B. -mobile: +1 206 381-6939 -pager: +1 206 953-1814 -roomNumber: 9448 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lionel Carevic,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lionel Carevic -sn: Carevic -description: This is Lionel Carevic's description -facsimileTelephoneNumber: +1 818 489-6882 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 169-1247 -title: Supreme Peons Sales Rep -userPassword: Password1 -uid: CarevicL -givenName: Lionel -mail: CarevicL@9e33462dc38a47268f5ccb5aff17b01e.bitwarden.com -carLicense: RSN8Y1 -departmentNumber: 4334 -employeeType: Contract -homePhone: +1 818 942-9080 -initials: L. C. -mobile: +1 818 178-1348 -pager: +1 818 113-9747 -roomNumber: 9302 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evangelin Sandiford -sn: Sandiford -description: This is Evangelin Sandiford's description -facsimileTelephoneNumber: +1 408 814-8878 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 842-9092 -title: Master Janitorial Visionary -userPassword: Password1 -uid: SandifoE -givenName: Evangelin -mail: SandifoE@1617948aaf9d4dcb8bec36f480701bfb.bitwarden.com -carLicense: 5AVV1M -departmentNumber: 4911 -employeeType: Employee -homePhone: +1 408 225-4182 -initials: E. S. -mobile: +1 408 568-9466 -pager: +1 408 443-1865 -roomNumber: 9421 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Olav McNitt,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olav McNitt -sn: McNitt -description: This is Olav McNitt's description -facsimileTelephoneNumber: +1 818 296-4225 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 478-2638 -title: Supreme Peons Sales Rep -userPassword: Password1 -uid: McNittO -givenName: Olav -mail: McNittO@b0b96975e46b40a097a0034294bf5528.bitwarden.com -carLicense: FM6MFW -departmentNumber: 9133 -employeeType: Employee -homePhone: +1 818 550-8556 -initials: O. M. -mobile: +1 818 798-7342 -pager: +1 818 663-6950 -roomNumber: 9557 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jobi ONeal,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jobi ONeal -sn: ONeal -description: This is Jobi ONeal's description -facsimileTelephoneNumber: +1 818 889-9572 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 581-7552 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: ONealJ -givenName: Jobi -mail: ONealJ@d83f96b44aac4dfe8bb6b493dedbd484.bitwarden.com -carLicense: A2CEXJ -departmentNumber: 7647 -employeeType: Contract -homePhone: +1 818 911-7137 -initials: J. O. -mobile: +1 818 719-6476 -pager: +1 818 821-3662 -roomNumber: 8529 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ellissa Marson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellissa Marson -sn: Marson -description: This is Ellissa Marson's description -facsimileTelephoneNumber: +1 510 638-8703 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 588-5411 -title: Junior Management Visionary -userPassword: Password1 -uid: MarsonE -givenName: Ellissa -mail: MarsonE@83ae92312ed14d6f8e9439baa2583cab.bitwarden.com -carLicense: 7QWYGU -departmentNumber: 6510 -employeeType: Employee -homePhone: +1 510 796-9735 -initials: E. M. -mobile: +1 510 275-8705 -pager: +1 510 783-7984 -roomNumber: 9263 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anita Bovee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anita Bovee -sn: Bovee -description: This is Anita Bovee's description -facsimileTelephoneNumber: +1 213 293-3457 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 747-3999 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: BoveeA -givenName: Anita -mail: BoveeA@49b890ea773a4116b436ebd330dc653e.bitwarden.com -carLicense: V3SCVL -departmentNumber: 6202 -employeeType: Normal -homePhone: +1 213 407-9669 -initials: A. B. -mobile: +1 213 203-3205 -pager: +1 213 307-4691 -roomNumber: 8846 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gavin Buckingham,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gavin Buckingham -sn: Buckingham -description: This is Gavin Buckingham's description -facsimileTelephoneNumber: +1 818 887-1476 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 320-1486 -title: Supreme Administrative Consultant -userPassword: Password1 -uid: BuckingG -givenName: Gavin -mail: BuckingG@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com -carLicense: RGJ11R -departmentNumber: 3678 -employeeType: Normal -homePhone: +1 818 806-1392 -initials: G. B. -mobile: +1 818 237-3323 -pager: +1 818 917-7553 -roomNumber: 8431 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Joke Reddick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joke Reddick -sn: Reddick -description: This is Joke Reddick's description -facsimileTelephoneNumber: +1 213 726-2494 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 772-3086 -title: Junior Payroll Artist -userPassword: Password1 -uid: ReddickJ -givenName: Joke -mail: ReddickJ@93a858edc4454f37b07e48de82573852.bitwarden.com -carLicense: 822NJ3 -departmentNumber: 2849 -employeeType: Employee -homePhone: +1 213 822-8253 -initials: J. R. -mobile: +1 213 618-3389 -pager: +1 213 911-8258 -roomNumber: 8963 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Johna Revill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johna Revill -sn: Revill -description: This is Johna Revill's description -facsimileTelephoneNumber: +1 408 171-7741 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 408 399-4675 -title: Junior Product Testing Mascot -userPassword: Password1 -uid: RevillJ -givenName: Johna -mail: RevillJ@3a5ff7224a884729803af88692f56576.bitwarden.com -carLicense: EUX8VR -departmentNumber: 5576 -employeeType: Contract -homePhone: +1 408 269-6482 -initials: J. R. -mobile: +1 408 276-5437 -pager: +1 408 814-6607 -roomNumber: 9065 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luigi Przybycien -sn: Przybycien -description: This is Luigi Przybycien's description -facsimileTelephoneNumber: +1 415 941-6155 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 440-1589 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: PrzybycL -givenName: Luigi -mail: PrzybycL@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com -carLicense: NQ6Q45 -departmentNumber: 7336 -employeeType: Contract -homePhone: +1 415 476-3426 -initials: L. P. -mobile: +1 415 371-1590 -pager: +1 415 186-8993 -roomNumber: 8728 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marlee Gillespie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlee Gillespie -sn: Gillespie -description: This is Marlee Gillespie's description -facsimileTelephoneNumber: +1 415 702-7563 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 415 232-8588 -title: Supreme Product Development Writer -userPassword: Password1 -uid: GillespM -givenName: Marlee -mail: GillespM@f20eb0847ca14a90a67aa09264897cd2.bitwarden.com -carLicense: S6ULNO -departmentNumber: 5137 -employeeType: Employee -homePhone: +1 415 956-3043 -initials: M. G. -mobile: +1 415 797-1116 -pager: +1 415 388-1151 -roomNumber: 8126 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cedric Chaintreuil -sn: Chaintreuil -description: This is Cedric Chaintreuil's description -facsimileTelephoneNumber: +1 510 900-1275 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 848-5629 -title: Chief Janitorial Figurehead -userPassword: Password1 -uid: ChaintrC -givenName: Cedric -mail: ChaintrC@26c8fa913cbb4779ba0168232a8a145c.bitwarden.com -carLicense: 3D1O49 -departmentNumber: 5727 -employeeType: Contract -homePhone: +1 510 686-3406 -initials: C. C. -mobile: +1 510 612-1641 -pager: +1 510 402-7851 -roomNumber: 8994 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Des Theriot,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Des Theriot -sn: Theriot -description: This is Des Theriot's description -facsimileTelephoneNumber: +1 415 174-2155 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 316-6798 -title: Junior Management Developer -userPassword: Password1 -uid: TheriotD -givenName: Des -mail: TheriotD@a5a630d1967f4b1fbcb91bd230122a62.bitwarden.com -carLicense: KQN86M -departmentNumber: 6717 -employeeType: Employee -homePhone: +1 415 568-8051 -initials: D. T. -mobile: +1 415 501-1606 -pager: +1 415 819-7140 -roomNumber: 9542 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Daphine Kobeski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphine Kobeski -sn: Kobeski -description: This is Daphine Kobeski's description -facsimileTelephoneNumber: +1 206 232-2832 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 574-1713 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: KobeskiD -givenName: Daphine -mail: KobeskiD@436da9fad3274d878f0f8f160f4f3038.bitwarden.com -carLicense: UUK9X0 -departmentNumber: 2274 -employeeType: Contract -homePhone: +1 206 614-4340 -initials: D. K. -mobile: +1 206 909-2594 -pager: +1 206 541-3979 -roomNumber: 9270 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Subhashini Bachewich,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subhashini Bachewich -sn: Bachewich -description: This is Subhashini Bachewich's description -facsimileTelephoneNumber: +1 213 612-1361 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 655-2658 -title: Master Peons Warrior -userPassword: Password1 -uid: BachewiS -givenName: Subhashini -mail: BachewiS@8f055851cf2e446194b128d0faf47339.bitwarden.com -carLicense: GHIN31 -departmentNumber: 3427 -employeeType: Normal -homePhone: +1 213 163-2993 -initials: S. B. -mobile: +1 213 341-2535 -pager: +1 213 581-2684 -roomNumber: 8562 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Linnell Altekar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linnell Altekar -sn: Altekar -description: This is Linnell Altekar's description -facsimileTelephoneNumber: +1 804 646-4076 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 209-2206 -title: Master Janitorial Engineer -userPassword: Password1 -uid: AltekarL -givenName: Linnell -mail: AltekarL@37b876b4a91540b4b71770c7a49beee8.bitwarden.com -carLicense: P459WH -departmentNumber: 7282 -employeeType: Normal -homePhone: +1 804 241-1153 -initials: L. A. -mobile: +1 804 259-3607 -pager: +1 804 283-5844 -roomNumber: 9604 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Aubrette Holz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aubrette Holz -sn: Holz -description: This is Aubrette Holz's description -facsimileTelephoneNumber: +1 818 123-8448 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 818 131-8327 -title: Master Administrative Warrior -userPassword: Password1 -uid: HolzA -givenName: Aubrette -mail: HolzA@2402d8b6f3164809a62dbae516875b67.bitwarden.com -carLicense: 5BND21 -departmentNumber: 2649 -employeeType: Employee -homePhone: +1 818 347-6712 -initials: A. H. -mobile: +1 818 488-2818 -pager: +1 818 424-1521 -roomNumber: 9332 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadru Dillabough -sn: Dillabough -description: This is Sadru Dillabough's description -facsimileTelephoneNumber: +1 415 703-3455 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 378-2039 -title: Supreme Product Testing Engineer -userPassword: Password1 -uid: DillaboS -givenName: Sadru -mail: DillaboS@520ff83094e24aed9f7bf536156db294.bitwarden.com -carLicense: G6SRBN -departmentNumber: 4696 -employeeType: Normal -homePhone: +1 415 929-6338 -initials: S. D. -mobile: +1 415 320-3472 -pager: +1 415 611-3698 -roomNumber: 8822 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mollee Etemad,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mollee Etemad -sn: Etemad -description: This is Mollee Etemad's description -facsimileTelephoneNumber: +1 408 671-5290 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 489-7444 -title: Master Janitorial Punk -userPassword: Password1 -uid: EtemadM -givenName: Mollee -mail: EtemadM@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com -carLicense: 2VWG5Q -departmentNumber: 7799 -employeeType: Employee -homePhone: +1 408 698-2456 -initials: M. E. -mobile: +1 408 782-2056 -pager: +1 408 825-1841 -roomNumber: 8926 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Renie Spicer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renie Spicer -sn: Spicer -description: This is Renie Spicer's description -facsimileTelephoneNumber: +1 510 266-6520 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 641-1902 -title: Supreme Janitorial Figurehead -userPassword: Password1 -uid: SpicerR -givenName: Renie -mail: SpicerR@06a75fbf1c264fecab05cf3c4c5e8244.bitwarden.com -carLicense: FHIU9M -departmentNumber: 4156 -employeeType: Normal -homePhone: +1 510 934-9980 -initials: R. S. -mobile: +1 510 575-1177 -pager: +1 510 128-1331 -roomNumber: 9865 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Halley Clason,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Halley Clason -sn: Clason -description: This is Halley Clason's description -facsimileTelephoneNumber: +1 408 449-8719 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 408 682-1341 -title: Associate Administrative Evangelist -userPassword: Password1 -uid: ClasonH -givenName: Halley -mail: ClasonH@2e5d764491b046f6aa7ce6ba59a519f2.bitwarden.com -carLicense: HKIBMC -departmentNumber: 5605 -employeeType: Contract -homePhone: +1 408 239-4359 -initials: H. C. -mobile: +1 408 358-2018 -pager: +1 408 749-5904 -roomNumber: 9794 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mister Stampfl,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mister Stampfl -sn: Stampfl -description: This is Mister Stampfl's description -facsimileTelephoneNumber: +1 213 698-7464 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 178-9096 -title: Associate Product Testing Consultant -userPassword: Password1 -uid: StampflM -givenName: Mister -mail: StampflM@f56fa15d6b7d4398bc29adc06e1de112.bitwarden.com -carLicense: UTAENH -departmentNumber: 6317 -employeeType: Employee -homePhone: +1 213 392-1272 -initials: M. S. -mobile: +1 213 921-1776 -pager: +1 213 280-7969 -roomNumber: 9065 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariesara TraceyMcCabe -sn: TraceyMcCabe -description: This is Mariesara TraceyMcCabe's description -facsimileTelephoneNumber: +1 415 733-8140 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 415 957-5697 -title: Associate Payroll Architect -userPassword: Password1 -uid: TraceyMM -givenName: Mariesara -mail: TraceyMM@55b35edd71d84140b661b45476973814.bitwarden.com -carLicense: 5TNQXQ -departmentNumber: 1258 -employeeType: Contract -homePhone: +1 415 395-4810 -initials: M. T. -mobile: +1 415 719-2827 -pager: +1 415 470-8047 -roomNumber: 9516 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hq Skelly,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hq Skelly -sn: Skelly -description: This is Hq Skelly's description -facsimileTelephoneNumber: +1 415 451-3919 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 841-9128 -title: Master Administrative Evangelist -userPassword: Password1 -uid: SkellyH -givenName: Hq -mail: SkellyH@10f009f83fa241ed9d40654a174c0f83.bitwarden.com -carLicense: D20CMH -departmentNumber: 4707 -employeeType: Contract -homePhone: +1 415 256-9615 -initials: H. S. -mobile: +1 415 911-8258 -pager: +1 415 783-7714 -roomNumber: 9173 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anthony Markham,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anthony Markham -sn: Markham -description: This is Anthony Markham's description -facsimileTelephoneNumber: +1 206 473-5645 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 356-2437 -title: Junior Management Engineer -userPassword: Password1 -uid: MarkhamA -givenName: Anthony -mail: MarkhamA@f666c666c5c8454c862ee863e1582d3a.bitwarden.com -carLicense: EJ4M96 -departmentNumber: 5109 -employeeType: Normal -homePhone: +1 206 770-2630 -initials: A. M. -mobile: +1 206 638-1904 -pager: +1 206 146-9181 -roomNumber: 9912 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Neilla Shingler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neilla Shingler -sn: Shingler -description: This is Neilla Shingler's description -facsimileTelephoneNumber: +1 206 585-7949 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 149-5934 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: ShingleN -givenName: Neilla -mail: ShingleN@97c4b9ae4f964addb510995883d2e8fe.bitwarden.com -carLicense: THRH93 -departmentNumber: 4832 -employeeType: Normal -homePhone: +1 206 873-8768 -initials: N. S. -mobile: +1 206 465-7965 -pager: +1 206 980-3002 -roomNumber: 9257 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shoji Trouborst -sn: Trouborst -description: This is Shoji Trouborst's description -facsimileTelephoneNumber: +1 415 692-6546 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 514-5548 -title: Junior Product Testing Czar -userPassword: Password1 -uid: TrouborS -givenName: Shoji -mail: TrouborS@0444b3a403d344e4ab1517502c8a1fc8.bitwarden.com -carLicense: RQYAD7 -departmentNumber: 8307 -employeeType: Normal -homePhone: +1 415 664-7088 -initials: S. T. -mobile: +1 415 441-7334 -pager: +1 415 491-9381 -roomNumber: 9886 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Korrie Stallcup,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Korrie Stallcup -sn: Stallcup -description: This is Korrie Stallcup's description -facsimileTelephoneNumber: +1 510 402-3666 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 555-7894 -title: Junior Management Fellow -userPassword: Password1 -uid: StallcuK -givenName: Korrie -mail: StallcuK@e3f89583f77e4884a1d8183b4faa15a7.bitwarden.com -carLicense: 0EFAUF -departmentNumber: 6429 -employeeType: Contract -homePhone: +1 510 825-9595 -initials: K. S. -mobile: +1 510 194-4347 -pager: +1 510 283-4533 -roomNumber: 9747 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jewelle Kittinger -sn: Kittinger -description: This is Jewelle Kittinger's description -facsimileTelephoneNumber: +1 213 744-3217 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 490-4105 -title: Master Administrative Manager -userPassword: Password1 -uid: KittingJ -givenName: Jewelle -mail: KittingJ@e01b4053cbcc4a7e8cc0003d4b938668.bitwarden.com -carLicense: PX3WBV -departmentNumber: 8064 -employeeType: Normal -homePhone: +1 213 391-9747 -initials: J. K. -mobile: +1 213 716-7419 -pager: +1 213 589-6708 -roomNumber: 8442 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Delcina Barcza,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delcina Barcza -sn: Barcza -description: This is Delcina Barcza's description -facsimileTelephoneNumber: +1 206 541-2065 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 190-4081 -title: Supreme Product Development Czar -userPassword: Password1 -uid: BarczaD -givenName: Delcina -mail: BarczaD@61c3aec04f2f4530bf57a1dd23bae4be.bitwarden.com -carLicense: 4RGY5G -departmentNumber: 5144 -employeeType: Contract -homePhone: +1 206 597-8940 -initials: D. B. -mobile: +1 206 726-8435 -pager: +1 206 542-1469 -roomNumber: 9007 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Evette Coddington,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evette Coddington -sn: Coddington -description: This is Evette Coddington's description -facsimileTelephoneNumber: +1 206 432-5220 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 766-3649 -title: Supreme Peons Stooge -userPassword: Password1 -uid: CoddingE -givenName: Evette -mail: CoddingE@50db0b06f7084e4cb9a7af7a31c89f8b.bitwarden.com -carLicense: 6R9C4G -departmentNumber: 1279 -employeeType: Employee -homePhone: +1 206 568-1340 -initials: E. C. -mobile: +1 206 283-8074 -pager: +1 206 926-7224 -roomNumber: 8471 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bhupendra Halley -sn: Halley -description: This is Bhupendra Halley's description -facsimileTelephoneNumber: +1 818 579-9395 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 818 771-9069 -title: Master Product Testing President -userPassword: Password1 -uid: HalleyB -givenName: Bhupendra -mail: HalleyB@bd079bcc8df848e4ad40b50c80eb486f.bitwarden.com -carLicense: 7EBO42 -departmentNumber: 3751 -employeeType: Employee -homePhone: +1 818 925-2503 -initials: B. H. -mobile: +1 818 565-6084 -pager: +1 818 324-6590 -roomNumber: 9935 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joelynn Lightfield,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joelynn Lightfield -sn: Lightfield -description: This is Joelynn Lightfield's description -facsimileTelephoneNumber: +1 510 916-2697 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 510 359-2923 -title: Chief Peons Admin -userPassword: Password1 -uid: LightfiJ -givenName: Joelynn -mail: LightfiJ@4247bf0f3a2e46bbbb1c691078752396.bitwarden.com -carLicense: P3L8L3 -departmentNumber: 1127 -employeeType: Normal -homePhone: +1 510 457-7407 -initials: J. L. -mobile: +1 510 945-9115 -pager: +1 510 175-7238 -roomNumber: 9345 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Isaac Cossota,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isaac Cossota -sn: Cossota -description: This is Isaac Cossota's description -facsimileTelephoneNumber: +1 408 606-6636 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 780-7228 -title: Master Payroll Assistant -userPassword: Password1 -uid: CossotaI -givenName: Isaac -mail: CossotaI@ab43f8d0eb5a4fa69395019fc76ff8cf.bitwarden.com -carLicense: NFAR82 -departmentNumber: 2843 -employeeType: Employee -homePhone: +1 408 747-2792 -initials: I. C. -mobile: +1 408 543-1580 -pager: +1 408 853-4071 -roomNumber: 8073 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardelle Sunatori -sn: Sunatori -description: This is Ardelle Sunatori's description -facsimileTelephoneNumber: +1 213 649-5169 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 213 847-8412 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: SunatorA -givenName: Ardelle -mail: SunatorA@a6c1eeb1053647d78d950c48b3782b75.bitwarden.com -carLicense: P4W2YY -departmentNumber: 9253 -employeeType: Employee -homePhone: +1 213 849-6686 -initials: A. S. -mobile: +1 213 101-8453 -pager: +1 213 458-2667 -roomNumber: 9140 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lyle DorionMagnan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyle DorionMagnan -sn: DorionMagnan -description: This is Lyle DorionMagnan's description -facsimileTelephoneNumber: +1 206 573-9354 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 273-4298 -title: Associate Management Artist -userPassword: Password1 -uid: DorionML -givenName: Lyle -mail: DorionML@d00e5ebc0da5488f8f410f79ea5c559a.bitwarden.com -carLicense: LO50QN -departmentNumber: 7656 -employeeType: Contract -homePhone: +1 206 284-8817 -initials: L. D. -mobile: +1 206 760-5729 -pager: +1 206 769-6469 -roomNumber: 8538 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tsing Daya,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tsing Daya -sn: Daya -description: This is Tsing Daya's description -facsimileTelephoneNumber: +1 510 418-1824 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 358-2334 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: DayaT -givenName: Tsing -mail: DayaT@5c5e6866da4a4802aa0f0136ee49902d.bitwarden.com -carLicense: I8JXY5 -departmentNumber: 2805 -employeeType: Contract -homePhone: +1 510 730-2290 -initials: T. D. -mobile: +1 510 332-6135 -pager: +1 510 557-6146 -roomNumber: 9417 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Achal Justus,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Achal Justus -sn: Justus -description: This is Achal Justus's description -facsimileTelephoneNumber: +1 415 212-8746 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 965-6988 -title: Associate Administrative Pinhead -userPassword: Password1 -uid: JustusA -givenName: Achal -mail: JustusA@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com -carLicense: 0EV3ER -departmentNumber: 6610 -employeeType: Contract -homePhone: +1 415 103-9074 -initials: A. J. -mobile: +1 415 161-7020 -pager: +1 415 709-7244 -roomNumber: 8694 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ilda Meskimen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilda Meskimen -sn: Meskimen -description: This is Ilda Meskimen's description -facsimileTelephoneNumber: +1 804 542-1908 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 217-1288 -title: Associate Administrative Evangelist -userPassword: Password1 -uid: MeskimeI -givenName: Ilda -mail: MeskimeI@b0139312a83c40d5aff228440731260a.bitwarden.com -carLicense: QV9WF9 -departmentNumber: 2733 -employeeType: Employee -homePhone: +1 804 677-8147 -initials: I. M. -mobile: +1 804 399-6778 -pager: +1 804 926-8383 -roomNumber: 9046 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobbi Wojtecki -sn: Wojtecki -description: This is Bobbi Wojtecki's description -facsimileTelephoneNumber: +1 206 726-2365 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 228-7378 -title: Chief Product Development Manager -userPassword: Password1 -uid: WojteckB -givenName: Bobbi -mail: WojteckB@0f207436d6984fc4977dc1a901dbb60d.bitwarden.com -carLicense: XBQDER -departmentNumber: 4978 -employeeType: Normal -homePhone: +1 206 321-8080 -initials: B. W. -mobile: +1 206 941-6760 -pager: +1 206 225-1544 -roomNumber: 8907 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Breanne Drinnan -sn: Drinnan -description: This is Breanne Drinnan's description -facsimileTelephoneNumber: +1 510 369-1528 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 394-6572 -title: Master Janitorial Sales Rep -userPassword: Password1 -uid: DrinnanB -givenName: Breanne -mail: DrinnanB@283ec365fe654c3fba136ca1c0a944d2.bitwarden.com -carLicense: 3P3QFA -departmentNumber: 3703 -employeeType: Normal -homePhone: +1 510 457-9471 -initials: B. D. -mobile: +1 510 900-7478 -pager: +1 510 303-3567 -roomNumber: 8430 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jaya Ellul,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaya Ellul -sn: Ellul -description: This is Jaya Ellul's description -facsimileTelephoneNumber: +1 206 971-5326 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 220-2398 -title: Associate Payroll Admin -userPassword: Password1 -uid: EllulJ -givenName: Jaya -mail: EllulJ@f8a322034d5e45cc8676b5e9fe5f5d0f.bitwarden.com -carLicense: BX3O5P -departmentNumber: 3450 -employeeType: Employee -homePhone: +1 206 138-5241 -initials: J. E. -mobile: +1 206 611-8774 -pager: +1 206 285-4395 -roomNumber: 8812 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tessi Hipp,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tessi Hipp -sn: Hipp -description: This is Tessi Hipp's description -facsimileTelephoneNumber: +1 408 634-2029 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 778-2357 -title: Master Peons President -userPassword: Password1 -uid: HippT -givenName: Tessi -mail: HippT@792920344b6e48bca13d2ab90771bbd5.bitwarden.com -carLicense: S42830 -departmentNumber: 5482 -employeeType: Employee -homePhone: +1 408 642-7992 -initials: T. H. -mobile: +1 408 336-8608 -pager: +1 408 915-5140 -roomNumber: 8234 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tatyana Gooch,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatyana Gooch -sn: Gooch -description: This is Tatyana Gooch's description -facsimileTelephoneNumber: +1 804 366-1182 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 579-1460 -title: Junior Peons Punk -userPassword: Password1 -uid: GoochT -givenName: Tatyana -mail: GoochT@96ee5954dbf645b89509b54bd70ed6ad.bitwarden.com -carLicense: U2Q5SW -departmentNumber: 8775 -employeeType: Employee -homePhone: +1 804 630-3183 -initials: T. G. -mobile: +1 804 813-9928 -pager: +1 804 283-7447 -roomNumber: 8212 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ashlan Inamullah,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashlan Inamullah -sn: Inamullah -description: This is Ashlan Inamullah's description -facsimileTelephoneNumber: +1 408 373-1349 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 551-3620 -title: Supreme Management Czar -userPassword: Password1 -uid: InamullA -givenName: Ashlan -mail: InamullA@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com -carLicense: HW0TE2 -departmentNumber: 1531 -employeeType: Contract -homePhone: +1 408 866-8916 -initials: A. I. -mobile: +1 408 830-8812 -pager: +1 408 691-7268 -roomNumber: 8030 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pooh Schmadtke -sn: Schmadtke -description: This is Pooh Schmadtke's description -facsimileTelephoneNumber: +1 510 219-3362 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 276-7627 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: SchmadtP -givenName: Pooh -mail: SchmadtP@19227d32d4ac4d3c8783acb96838362f.bitwarden.com -carLicense: HCKGD0 -departmentNumber: 9598 -employeeType: Employee -homePhone: +1 510 763-3063 -initials: P. S. -mobile: +1 510 912-9194 -pager: +1 510 769-1493 -roomNumber: 9370 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jandy McCollum,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jandy McCollum -sn: McCollum -description: This is Jandy McCollum's description -facsimileTelephoneNumber: +1 818 506-8754 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 601-6763 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: McColluJ -givenName: Jandy -mail: McColluJ@bf5fb1f833e149108e10f8209a4caa81.bitwarden.com -carLicense: 2636OY -departmentNumber: 2346 -employeeType: Normal -homePhone: +1 818 845-2041 -initials: J. M. -mobile: +1 818 624-6247 -pager: +1 818 700-2657 -roomNumber: 9064 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kattie Thom,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kattie Thom -sn: Thom -description: This is Kattie Thom's description -facsimileTelephoneNumber: +1 818 409-5892 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 526-6440 -title: Supreme Human Resources President -userPassword: Password1 -uid: ThomK -givenName: Kattie -mail: ThomK@d18e4ae711e645c5a354ba4c375d8965.bitwarden.com -carLicense: 40EMNP -departmentNumber: 1153 -employeeType: Contract -homePhone: +1 818 886-7176 -initials: K. T. -mobile: +1 818 242-1307 -pager: +1 818 564-2587 -roomNumber: 8509 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hideo Nelson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hideo Nelson -sn: Nelson -description: This is Hideo Nelson's description -facsimileTelephoneNumber: +1 408 326-2746 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 393-8162 -title: Associate Product Testing Director -userPassword: Password1 -uid: NelsonH -givenName: Hideo -mail: NelsonH@1ae5fc4856da4293b03fc4a57c0646c0.bitwarden.com -carLicense: IU5HMP -departmentNumber: 3449 -employeeType: Contract -homePhone: +1 408 484-5729 -initials: H. N. -mobile: +1 408 573-1452 -pager: +1 408 672-3218 -roomNumber: 9737 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Karam Abraham,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karam Abraham -sn: Abraham -description: This is Karam Abraham's description -facsimileTelephoneNumber: +1 213 745-4414 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 288-6916 -title: Master Payroll President -userPassword: Password1 -uid: AbrahamK -givenName: Karam -mail: AbrahamK@094814e3447d47a28856d14771b265f0.bitwarden.com -carLicense: LFE33R -departmentNumber: 4498 -employeeType: Contract -homePhone: +1 213 939-6387 -initials: K. A. -mobile: +1 213 588-8892 -pager: +1 213 998-8094 -roomNumber: 8451 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Evita Mahin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evita Mahin -sn: Mahin -description: This is Evita Mahin's description -facsimileTelephoneNumber: +1 408 345-3811 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 515-1231 -title: Chief Peons Punk -userPassword: Password1 -uid: MahinE -givenName: Evita -mail: MahinE@7391a6d3d59e40cd941b74d4ab20cfad.bitwarden.com -carLicense: 3YHKUT -departmentNumber: 2998 -employeeType: Employee -homePhone: +1 408 280-8767 -initials: E. M. -mobile: +1 408 883-7278 -pager: +1 408 892-4510 -roomNumber: 8338 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Doll Hwang,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doll Hwang -sn: Hwang -description: This is Doll Hwang's description -facsimileTelephoneNumber: +1 818 254-7933 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 970-1428 -title: Supreme Peons Czar -userPassword: Password1 -uid: HwangD -givenName: Doll -mail: HwangD@eba2f109ece04a08844cbc417a83a156.bitwarden.com -carLicense: VXYYD2 -departmentNumber: 8207 -employeeType: Employee -homePhone: +1 818 746-9117 -initials: D. H. -mobile: +1 818 393-4871 -pager: +1 818 336-8707 -roomNumber: 8004 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Atsushi Gros,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atsushi Gros -sn: Gros -description: This is Atsushi Gros's description -facsimileTelephoneNumber: +1 213 169-2153 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 942-9164 -title: Associate Administrative Madonna -userPassword: Password1 -uid: GrosA -givenName: Atsushi -mail: GrosA@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com -carLicense: 6BDYVC -departmentNumber: 5202 -employeeType: Employee -homePhone: +1 213 137-2357 -initials: A. G. -mobile: +1 213 880-3183 -pager: +1 213 824-6382 -roomNumber: 9100 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lacee Kraus,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lacee Kraus -sn: Kraus -description: This is Lacee Kraus's description -facsimileTelephoneNumber: +1 408 417-3976 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 502-6489 -title: Chief Product Testing Director -userPassword: Password1 -uid: KrausL -givenName: Lacee -mail: KrausL@ea5d27109c534992bb828c5b0124e943.bitwarden.com -carLicense: IYCX5Q -departmentNumber: 2315 -employeeType: Contract -homePhone: +1 408 696-3669 -initials: L. K. -mobile: +1 408 186-8267 -pager: +1 408 394-1553 -roomNumber: 8615 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tonu Doncaster,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonu Doncaster -sn: Doncaster -description: This is Tonu Doncaster's description -facsimileTelephoneNumber: +1 818 506-5291 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 837-7447 -title: Associate Peons Writer -userPassword: Password1 -uid: DoncastT -givenName: Tonu -mail: DoncastT@5d8901804e424468b0bef6e0378317d6.bitwarden.com -carLicense: UR4ASY -departmentNumber: 3980 -employeeType: Normal -homePhone: +1 818 685-5391 -initials: T. D. -mobile: +1 818 342-4904 -pager: +1 818 561-8167 -roomNumber: 9348 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tobye Rupnow,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tobye Rupnow -sn: Rupnow -description: This is Tobye Rupnow's description -facsimileTelephoneNumber: +1 510 293-2595 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 793-3096 -title: Associate Product Development Consultant -userPassword: Password1 -uid: RupnowT -givenName: Tobye -mail: RupnowT@5cb8587bbf2c41a39017176951716d73.bitwarden.com -carLicense: ENOG8T -departmentNumber: 2182 -employeeType: Employee -homePhone: +1 510 786-4740 -initials: T. R. -mobile: +1 510 128-7750 -pager: +1 510 393-3019 -roomNumber: 9305 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gilberte Correia,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilberte Correia -sn: Correia -description: This is Gilberte Correia's description -facsimileTelephoneNumber: +1 510 547-3762 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 607-6736 -title: Supreme Payroll Figurehead -userPassword: Password1 -uid: CorreiaG -givenName: Gilberte -mail: CorreiaG@6faffd19174647ed8adaeaef1a2a75ee.bitwarden.com -carLicense: WPL9WL -departmentNumber: 7911 -employeeType: Normal -homePhone: +1 510 928-3367 -initials: G. C. -mobile: +1 510 278-8860 -pager: +1 510 707-5654 -roomNumber: 8917 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krishnamurthy PueGilchrist -sn: PueGilchrist -description: This is Krishnamurthy PueGilchrist's description -facsimileTelephoneNumber: +1 213 235-7478 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 213 822-6174 -title: Associate Product Development Visionary -userPassword: Password1 -uid: PueGilcK -givenName: Krishnamurthy -mail: PueGilcK@32972334779c4c7daa4ee6042db79c56.bitwarden.com -carLicense: PS7MV5 -departmentNumber: 6624 -employeeType: Employee -homePhone: +1 213 481-6460 -initials: K. P. -mobile: +1 213 917-3567 -pager: +1 213 778-8686 -roomNumber: 8325 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elva Goza,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elva Goza -sn: Goza -description: This is Elva Goza's description -facsimileTelephoneNumber: +1 206 316-1866 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 404-7034 -title: Associate Human Resources Director -userPassword: Password1 -uid: GozaE -givenName: Elva -mail: GozaE@d1f70e2814da436e8e729474e3ae0ca1.bitwarden.com -carLicense: VPI0GC -departmentNumber: 1822 -employeeType: Contract -homePhone: +1 206 833-2769 -initials: E. G. -mobile: +1 206 617-2953 -pager: +1 206 869-6415 -roomNumber: 8220 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wassim Sanzone -sn: Sanzone -description: This is Wassim Sanzone's description -facsimileTelephoneNumber: +1 408 709-3752 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 455-4294 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: SanzoneW -givenName: Wassim -mail: SanzoneW@ea018c15212d4d0b83b37b8dca2d7a5b.bitwarden.com -carLicense: KIBNEB -departmentNumber: 9480 -employeeType: Normal -homePhone: +1 408 972-2314 -initials: W. S. -mobile: +1 408 673-6049 -pager: +1 408 543-3262 -roomNumber: 9303 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nath Gazier,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nath Gazier -sn: Gazier -description: This is Nath Gazier's description -facsimileTelephoneNumber: +1 804 535-1574 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 503-6773 -title: Chief Administrative Stooge -userPassword: Password1 -uid: GazierN -givenName: Nath -mail: GazierN@aefdcea121544b52a45f3a380c86d30e.bitwarden.com -carLicense: WE8VO1 -departmentNumber: 9149 -employeeType: Normal -homePhone: +1 804 160-5943 -initials: N. G. -mobile: +1 804 275-3664 -pager: +1 804 354-6382 -roomNumber: 9544 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Serene Tandiono,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Serene Tandiono -sn: Tandiono -description: This is Serene Tandiono's description -facsimileTelephoneNumber: +1 804 795-8124 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 719-9917 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: TandionS -givenName: Serene -mail: TandionS@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com -carLicense: TQTI2B -departmentNumber: 4632 -employeeType: Contract -homePhone: +1 804 283-2414 -initials: S. T. -mobile: +1 804 319-1327 -pager: +1 804 646-8432 -roomNumber: 8397 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Guner Sinnett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guner Sinnett -sn: Sinnett -description: This is Guner Sinnett's description -facsimileTelephoneNumber: +1 510 106-8715 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 452-3451 -title: Master Payroll Vice President -userPassword: Password1 -uid: SinnettG -givenName: Guner -mail: SinnettG@c73dbaa0e70c411fa0d04bf8fe86f3a6.bitwarden.com -carLicense: CSCAS8 -departmentNumber: 5665 -employeeType: Employee -homePhone: +1 510 940-4252 -initials: G. S. -mobile: +1 510 445-3313 -pager: +1 510 151-2180 -roomNumber: 8426 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mahesh Postlethwaite -sn: Postlethwaite -description: This is Mahesh Postlethwaite's description -facsimileTelephoneNumber: +1 206 547-6489 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 776-4267 -title: Chief Peons Visionary -userPassword: Password1 -uid: PostletM -givenName: Mahesh -mail: PostletM@7526aadf2aaf4f8f86b2debc64e016dd.bitwarden.com -carLicense: FJA451 -departmentNumber: 9823 -employeeType: Employee -homePhone: +1 206 844-1894 -initials: M. P. -mobile: +1 206 864-8821 -pager: +1 206 178-3328 -roomNumber: 9275 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carolien Predel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolien Predel -sn: Predel -description: This is Carolien Predel's description -facsimileTelephoneNumber: +1 206 741-5565 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 221-3603 -title: Associate Management Punk -userPassword: Password1 -uid: PredelC -givenName: Carolien -mail: PredelC@7770d32208f64a63bf44fae15e8c6935.bitwarden.com -carLicense: JEHQXS -departmentNumber: 4984 -employeeType: Employee -homePhone: +1 206 908-7613 -initials: C. P. -mobile: +1 206 940-6477 -pager: +1 206 617-2752 -roomNumber: 8162 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Fouad Woodman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fouad Woodman -sn: Woodman -description: This is Fouad Woodman's description -facsimileTelephoneNumber: +1 510 820-7614 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 103-7124 -title: Supreme Product Development Visionary -userPassword: Password1 -uid: WoodmanF -givenName: Fouad -mail: WoodmanF@deaa9dfec3b843c0b4f3e72afbba1381.bitwarden.com -carLicense: Y78DOL -departmentNumber: 4783 -employeeType: Normal -homePhone: +1 510 982-9619 -initials: F. W. -mobile: +1 510 872-2627 -pager: +1 510 626-2075 -roomNumber: 9960 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Remy Muenstermann,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Remy Muenstermann -sn: Muenstermann -description: This is Remy Muenstermann's description -facsimileTelephoneNumber: +1 510 737-4133 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 963-1792 -title: Junior Payroll Admin -userPassword: Password1 -uid: MuensteR -givenName: Remy -mail: MuensteR@a774bfe9f410429f835439e7192aaefa.bitwarden.com -carLicense: YSH6RL -departmentNumber: 2710 -employeeType: Employee -homePhone: +1 510 246-5377 -initials: R. M. -mobile: +1 510 828-7876 -pager: +1 510 233-4063 -roomNumber: 8832 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Erkan Burkert,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erkan Burkert -sn: Burkert -description: This is Erkan Burkert's description -facsimileTelephoneNumber: +1 206 969-4307 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 206 791-2990 -title: Chief Product Development Assistant -userPassword: Password1 -uid: BurkertE -givenName: Erkan -mail: BurkertE@d5a69c0f90ac41d3bc2cf5630c9098ba.bitwarden.com -carLicense: AKRRJS -departmentNumber: 8132 -employeeType: Contract -homePhone: +1 206 834-9842 -initials: E. B. -mobile: +1 206 872-6742 -pager: +1 206 917-9880 -roomNumber: 9132 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Linnea Oliveira,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linnea Oliveira -sn: Oliveira -description: This is Linnea Oliveira's description -facsimileTelephoneNumber: +1 818 208-2584 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 309-4854 -title: Master Management Manager -userPassword: Password1 -uid: OliveirL -givenName: Linnea -mail: OliveirL@fb3c64c9b443484e8686e2aaa346d1de.bitwarden.com -carLicense: VMSNH1 -departmentNumber: 7151 -employeeType: Contract -homePhone: +1 818 262-6347 -initials: L. O. -mobile: +1 818 356-3849 -pager: +1 818 433-6314 -roomNumber: 9199 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Steve Nass,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steve Nass -sn: Nass -description: This is Steve Nass's description -facsimileTelephoneNumber: +1 818 285-5472 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 818 311-1166 -title: Master Product Testing Consultant -userPassword: Password1 -uid: NassS -givenName: Steve -mail: NassS@310fefd008494b9e8a0a81aff3327a1b.bitwarden.com -carLicense: HJ8NFU -departmentNumber: 1420 -employeeType: Employee -homePhone: +1 818 658-1065 -initials: S. N. -mobile: +1 818 211-1517 -pager: +1 818 321-5403 -roomNumber: 9429 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Henrie Malkani,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henrie Malkani -sn: Malkani -description: This is Henrie Malkani's description -facsimileTelephoneNumber: +1 510 529-1372 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 201-9781 -title: Junior Product Development Engineer -userPassword: Password1 -uid: MalkaniH -givenName: Henrie -mail: MalkaniH@111621500be94783a2bfd9f6dfd05ba5.bitwarden.com -carLicense: LQ5HPV -departmentNumber: 5813 -employeeType: Employee -homePhone: +1 510 877-4231 -initials: H. M. -mobile: +1 510 403-9144 -pager: +1 510 954-8164 -roomNumber: 8940 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Almeta Batura,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Almeta Batura -sn: Batura -description: This is Almeta Batura's description -facsimileTelephoneNumber: +1 213 263-8612 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 616-5476 -title: Junior Peons Stooge -userPassword: Password1 -uid: BaturaA -givenName: Almeta -mail: BaturaA@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com -carLicense: XW03PS -departmentNumber: 6180 -employeeType: Contract -homePhone: +1 213 480-9381 -initials: A. B. -mobile: +1 213 118-7948 -pager: +1 213 298-9995 -roomNumber: 8677 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilly Dudgeon -sn: Dudgeon -description: This is Gilly Dudgeon's description -facsimileTelephoneNumber: +1 818 921-9261 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 818 547-4155 -title: Chief Payroll Madonna -userPassword: Password1 -uid: DudgeonG -givenName: Gilly -mail: DudgeonG@dcb0954e4af74751966d9af34246f81f.bitwarden.com -carLicense: 1WAQY1 -departmentNumber: 9811 -employeeType: Employee -homePhone: +1 818 328-4380 -initials: G. D. -mobile: +1 818 874-9296 -pager: +1 818 275-3081 -roomNumber: 9407 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Laurianne Storey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laurianne Storey -sn: Storey -description: This is Laurianne Storey's description -facsimileTelephoneNumber: +1 804 317-7563 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 804 227-2247 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: StoreyL -givenName: Laurianne -mail: StoreyL@6ab835c0621d479dbd805d5189aa2b92.bitwarden.com -carLicense: 2JBPN6 -departmentNumber: 2923 -employeeType: Contract -homePhone: +1 804 425-9124 -initials: L. S. -mobile: +1 804 602-4159 -pager: +1 804 241-2258 -roomNumber: 9617 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nady Straub,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nady Straub -sn: Straub -description: This is Nady Straub's description -facsimileTelephoneNumber: +1 213 303-8484 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 387-2296 -title: Supreme Management Czar -userPassword: Password1 -uid: StraubN -givenName: Nady -mail: StraubN@ef4d5bf16ea04edda300a945910f03e4.bitwarden.com -carLicense: T6EJU6 -departmentNumber: 4687 -employeeType: Employee -homePhone: +1 213 226-6930 -initials: N. S. -mobile: +1 213 488-4174 -pager: +1 213 217-3698 -roomNumber: 8130 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurijn Guilfoyle -sn: Guilfoyle -description: This is Maurijn Guilfoyle's description -facsimileTelephoneNumber: +1 206 941-9035 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 782-4000 -title: Chief Human Resources Czar -userPassword: Password1 -uid: GuilfoyM -givenName: Maurijn -mail: GuilfoyM@b0c48599d24847958412615828406699.bitwarden.com -carLicense: DS72VR -departmentNumber: 1799 -employeeType: Employee -homePhone: +1 206 435-2507 -initials: M. G. -mobile: +1 206 447-2228 -pager: +1 206 929-1039 -roomNumber: 9548 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sukhendu Adamkowski -sn: Adamkowski -description: This is Sukhendu Adamkowski's description -facsimileTelephoneNumber: +1 510 657-2572 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 510 467-7450 -title: Master Product Development Janitor -userPassword: Password1 -uid: AdamkowS -givenName: Sukhendu -mail: AdamkowS@4cccac2b65cb4d559e1c7c657101129e.bitwarden.com -carLicense: M7IRNF -departmentNumber: 6346 -employeeType: Employee -homePhone: +1 510 120-5104 -initials: S. A. -mobile: +1 510 523-6278 -pager: +1 510 854-4816 -roomNumber: 8886 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sami McQuaig,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sami McQuaig -sn: McQuaig -description: This is Sami McQuaig's description -facsimileTelephoneNumber: +1 818 356-3881 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 276-1936 -title: Associate Administrative Vice President -userPassword: Password1 -uid: McQuaigS -givenName: Sami -mail: McQuaigS@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com -carLicense: 9DGHR6 -departmentNumber: 4978 -employeeType: Employee -homePhone: +1 818 498-7797 -initials: S. M. -mobile: +1 818 694-9735 -pager: +1 818 806-5816 -roomNumber: 8123 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Moises Semler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moises Semler -sn: Semler -description: This is Moises Semler's description -facsimileTelephoneNumber: +1 408 660-9179 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 132-1423 -title: Junior Product Development Dictator -userPassword: Password1 -uid: SemlerM -givenName: Moises -mail: SemlerM@2eeb9567dcd64347a2dcd6492aaa8ddc.bitwarden.com -carLicense: EE2SN3 -departmentNumber: 6401 -employeeType: Employee -homePhone: +1 408 676-6362 -initials: M. S. -mobile: +1 408 742-6157 -pager: +1 408 616-7210 -roomNumber: 9502 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Richard FWPtools,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Richard FWPtools -sn: FWPtools -description: This is Richard FWPtools's description -facsimileTelephoneNumber: +1 408 556-5653 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 462-1331 -title: Junior Peons Visionary -userPassword: Password1 -uid: FWPtoolR -givenName: Richard -mail: FWPtoolR@dd8272e863174597a9c6eb5aaf131b06.bitwarden.com -carLicense: BPYCSF -departmentNumber: 7388 -employeeType: Contract -homePhone: +1 408 783-7383 -initials: R. F. -mobile: +1 408 772-7486 -pager: +1 408 815-2719 -roomNumber: 9727 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelba MacGillivray -sn: MacGillivray -description: This is Shelba MacGillivray's description -facsimileTelephoneNumber: +1 804 521-9523 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 804 216-5935 -title: Supreme Janitorial Visionary -userPassword: Password1 -uid: MacGillS -givenName: Shelba -mail: MacGillS@94747c09a3194eba8b7d52262cebca45.bitwarden.com -carLicense: QR8QHX -departmentNumber: 3447 -employeeType: Normal -homePhone: +1 804 409-4975 -initials: S. M. -mobile: +1 804 313-9768 -pager: +1 804 569-3494 -roomNumber: 8433 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaib Bottomley -sn: Bottomley -description: This is Shaib Bottomley's description -facsimileTelephoneNumber: +1 415 552-2987 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 970-4817 -title: Associate Janitorial Warrior -userPassword: Password1 -uid: BottomlS -givenName: Shaib -mail: BottomlS@c70dbe261a1148e99aeacce847bbdb51.bitwarden.com -carLicense: L6JQQ3 -departmentNumber: 6279 -employeeType: Employee -homePhone: +1 415 398-4757 -initials: S. B. -mobile: +1 415 578-3983 -pager: +1 415 162-3518 -roomNumber: 8651 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Danielle Sells,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danielle Sells -sn: Sells -description: This is Danielle Sells's description -facsimileTelephoneNumber: +1 206 656-9844 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 969-7914 -title: Junior Product Development Director -userPassword: Password1 -uid: SellsD -givenName: Danielle -mail: SellsD@703760e209f6497aa718fce078cb8340.bitwarden.com -carLicense: AN9FA7 -departmentNumber: 2870 -employeeType: Employee -homePhone: +1 206 282-2571 -initials: D. S. -mobile: +1 206 504-7201 -pager: +1 206 146-3123 -roomNumber: 8353 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nashir Isaacs -sn: Isaacs -description: This is Nashir Isaacs's description -facsimileTelephoneNumber: +1 415 100-6902 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 895-1237 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: IsaacsN -givenName: Nashir -mail: IsaacsN@3a117fad58d6422fb9086b1f787bebea.bitwarden.com -carLicense: FTE5A9 -departmentNumber: 6995 -employeeType: Normal -homePhone: +1 415 428-4232 -initials: N. I. -mobile: +1 415 445-7045 -pager: +1 415 482-3251 -roomNumber: 8845 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kac Throgmorton -sn: Throgmorton -description: This is Kac Throgmorton's description -facsimileTelephoneNumber: +1 415 535-8695 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 893-5608 -title: Junior Human Resources Sales Rep -userPassword: Password1 -uid: ThrogmoK -givenName: Kac -mail: ThrogmoK@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com -carLicense: U6AK24 -departmentNumber: 2418 -employeeType: Employee -homePhone: +1 415 115-5347 -initials: K. T. -mobile: +1 415 408-5579 -pager: +1 415 328-3168 -roomNumber: 9280 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sylva Hikita,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sylva Hikita -sn: Hikita -description: This is Sylva Hikita's description -facsimileTelephoneNumber: +1 213 412-1728 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 977-2979 -title: Supreme Administrative President -userPassword: Password1 -uid: HikitaS -givenName: Sylva -mail: HikitaS@a78ed8611e034976918da82623b252aa.bitwarden.com -carLicense: 3UCM9Y -departmentNumber: 2275 -employeeType: Employee -homePhone: +1 213 947-5600 -initials: S. H. -mobile: +1 213 845-5780 -pager: +1 213 393-2251 -roomNumber: 9945 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeannine McMurray,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeannine McMurray -sn: McMurray -description: This is Jeannine McMurray's description -facsimileTelephoneNumber: +1 804 923-1636 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 647-5339 -title: Chief Administrative Consultant -userPassword: Password1 -uid: McMurraJ -givenName: Jeannine -mail: McMurraJ@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com -carLicense: QCEI0E -departmentNumber: 4684 -employeeType: Employee -homePhone: +1 804 187-7252 -initials: J. M. -mobile: +1 804 368-1349 -pager: +1 804 324-7088 -roomNumber: 9882 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Robbin Vanstory,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robbin Vanstory -sn: Vanstory -description: This is Robbin Vanstory's description -facsimileTelephoneNumber: +1 510 263-2034 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 969-4714 -title: Associate Peons Admin -userPassword: Password1 -uid: VanstorR -givenName: Robbin -mail: VanstorR@d2a6214e814b4ea4b87489ad9882572a.bitwarden.com -carLicense: 9961LH -departmentNumber: 5102 -employeeType: Normal -homePhone: +1 510 693-9723 -initials: R. V. -mobile: +1 510 750-6077 -pager: +1 510 411-8276 -roomNumber: 9620 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gertie Dix,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertie Dix -sn: Dix -description: This is Gertie Dix's description -facsimileTelephoneNumber: +1 415 879-2272 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 807-4681 -title: Junior Product Testing Punk -userPassword: Password1 -uid: DixG -givenName: Gertie -mail: DixG@ebc00b9ae1f6452da423353f7889c3bd.bitwarden.com -carLicense: 1KGIRF -departmentNumber: 9559 -employeeType: Normal -homePhone: +1 415 433-8741 -initials: G. D. -mobile: +1 415 394-6628 -pager: +1 415 478-9211 -roomNumber: 8216 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Daloris Pippy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daloris Pippy -sn: Pippy -description: This is Daloris Pippy's description -facsimileTelephoneNumber: +1 415 892-7296 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 265-8792 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: PippyD -givenName: Daloris -mail: PippyD@dc4990156aa641249346113b8218bf9c.bitwarden.com -carLicense: BAK018 -departmentNumber: 1313 -employeeType: Contract -homePhone: +1 415 672-1629 -initials: D. P. -mobile: +1 415 154-1895 -pager: +1 415 945-3820 -roomNumber: 9005 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Robinia Chytil,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinia Chytil -sn: Chytil -description: This is Robinia Chytil's description -facsimileTelephoneNumber: +1 804 675-8751 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 297-5633 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: ChytilR -givenName: Robinia -mail: ChytilR@72967884fe2a4610a29d315ed4d9bc28.bitwarden.com -carLicense: AQKHU4 -departmentNumber: 4492 -employeeType: Contract -homePhone: +1 804 685-2524 -initials: R. C. -mobile: +1 804 751-4681 -pager: +1 804 809-7970 -roomNumber: 9677 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Randy Haaksman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randy Haaksman -sn: Haaksman -description: This is Randy Haaksman's description -facsimileTelephoneNumber: +1 408 232-1053 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 969-7119 -title: Supreme Payroll Consultant -userPassword: Password1 -uid: HaaksmaR -givenName: Randy -mail: HaaksmaR@3ecb1c63de854804b4e8af1966a28c00.bitwarden.com -carLicense: ABRYRX -departmentNumber: 9735 -employeeType: Employee -homePhone: +1 408 135-8380 -initials: R. H. -mobile: +1 408 948-9815 -pager: +1 408 985-5493 -roomNumber: 9135 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alka Chiykowski -sn: Chiykowski -description: This is Alka Chiykowski's description -facsimileTelephoneNumber: +1 408 964-1415 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 987-9702 -title: Junior Human Resources Architect -userPassword: Password1 -uid: ChiykowA -givenName: Alka -mail: ChiykowA@64b8640cd7404f1e9ef28806435c2900.bitwarden.com -carLicense: PL62P2 -departmentNumber: 2760 -employeeType: Contract -homePhone: +1 408 426-8764 -initials: A. C. -mobile: +1 408 144-8549 -pager: +1 408 346-3219 -roomNumber: 9603 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ginn Rembecki,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginn Rembecki -sn: Rembecki -description: This is Ginn Rembecki's description -facsimileTelephoneNumber: +1 213 580-3509 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 213 443-4369 -title: Associate Payroll Manager -userPassword: Password1 -uid: RembeckG -givenName: Ginn -mail: RembeckG@1bca91d4fd4549c6bf14b515f5e0a173.bitwarden.com -carLicense: 3O3282 -departmentNumber: 2200 -employeeType: Employee -homePhone: +1 213 350-4133 -initials: G. R. -mobile: +1 213 116-6973 -pager: +1 213 752-6043 -roomNumber: 8741 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Deva Morimoto,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deva Morimoto -sn: Morimoto -description: This is Deva Morimoto's description -facsimileTelephoneNumber: +1 804 982-7055 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 873-8418 -title: Associate Product Development President -userPassword: Password1 -uid: MorimotD -givenName: Deva -mail: MorimotD@38b2663172424c999e78408a67cf7851.bitwarden.com -carLicense: 9TW2DT -departmentNumber: 6860 -employeeType: Employee -homePhone: +1 804 578-3420 -initials: D. M. -mobile: +1 804 937-9362 -pager: +1 804 115-8452 -roomNumber: 9696 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sioux Laney,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sioux Laney -sn: Laney -description: This is Sioux Laney's description -facsimileTelephoneNumber: +1 213 666-8226 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 586-4516 -title: Supreme Peons Grunt -userPassword: Password1 -uid: LaneyS -givenName: Sioux -mail: LaneyS@e4daa158936a4fde9b3ebffb038e67fa.bitwarden.com -carLicense: TKCR6P -departmentNumber: 5665 -employeeType: Contract -homePhone: +1 213 515-2019 -initials: S. L. -mobile: +1 213 393-2342 -pager: +1 213 744-6810 -roomNumber: 9701 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harmony Eslambolchi -sn: Eslambolchi -description: This is Harmony Eslambolchi's description -facsimileTelephoneNumber: +1 818 700-8142 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 245-8525 -title: Associate Peons Stooge -userPassword: Password1 -uid: EslamboH -givenName: Harmony -mail: EslamboH@0aee22428274445fb9c2a16b33d788f7.bitwarden.com -carLicense: 71DOHF -departmentNumber: 3922 -employeeType: Normal -homePhone: +1 818 262-5025 -initials: H. E. -mobile: +1 818 401-6708 -pager: +1 818 150-4686 -roomNumber: 8282 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Demetri Sepe,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Demetri Sepe -sn: Sepe -description: This is Demetri Sepe's description -facsimileTelephoneNumber: +1 510 646-2818 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 510 661-8212 -title: Chief Administrative Stooge -userPassword: Password1 -uid: SepeD -givenName: Demetri -mail: SepeD@4e6ec37d862e441480157c39097f280d.bitwarden.com -carLicense: MCPVO5 -departmentNumber: 5578 -employeeType: Normal -homePhone: +1 510 105-2257 -initials: D. S. -mobile: +1 510 817-1674 -pager: +1 510 208-9877 -roomNumber: 8232 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zandra Buratynski -sn: Buratynski -description: This is Zandra Buratynski's description -facsimileTelephoneNumber: +1 415 327-2316 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 859-4391 -title: Chief Product Testing Developer -userPassword: Password1 -uid: BuratynZ -givenName: Zandra -mail: BuratynZ@37c4f9ee232544a4846bc4a3466039ef.bitwarden.com -carLicense: NRRP4F -departmentNumber: 4616 -employeeType: Employee -homePhone: +1 415 229-4002 -initials: Z. B. -mobile: +1 415 836-8371 -pager: +1 415 495-8977 -roomNumber: 9805 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mickey Fiset,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mickey Fiset -sn: Fiset -description: This is Mickey Fiset's description -facsimileTelephoneNumber: +1 804 248-1934 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 345-8131 -title: Chief Peons President -userPassword: Password1 -uid: FisetM -givenName: Mickey -mail: FisetM@5b938862d9b84f248e738a32d39aab3b.bitwarden.com -carLicense: MW07NH -departmentNumber: 2871 -employeeType: Contract -homePhone: +1 804 237-3417 -initials: M. F. -mobile: +1 804 198-9472 -pager: +1 804 352-4595 -roomNumber: 9938 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Avie AltingMees,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avie AltingMees -sn: AltingMees -description: This is Avie AltingMees's description -facsimileTelephoneNumber: +1 213 560-7185 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 521-7011 -title: Master Administrative Consultant -userPassword: Password1 -uid: AltingMA -givenName: Avie -mail: AltingMA@f2f9b94a61d74e48ae3ede318c7f996c.bitwarden.com -carLicense: DOUEXT -departmentNumber: 4750 -employeeType: Employee -homePhone: +1 213 793-8438 -initials: A. A. -mobile: +1 213 647-3396 -pager: +1 213 195-7980 -roomNumber: 8981 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kanya Ralph,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanya Ralph -sn: Ralph -description: This is Kanya Ralph's description -facsimileTelephoneNumber: +1 213 713-9753 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 992-7687 -title: Chief Human Resources Janitor -userPassword: Password1 -uid: RalphK -givenName: Kanya -mail: RalphK@2ed3a0c0604d4f8d80fc4a72596ea1a6.bitwarden.com -carLicense: N4OROU -departmentNumber: 3380 -employeeType: Normal -homePhone: +1 213 453-5806 -initials: K. R. -mobile: +1 213 943-6913 -pager: +1 213 714-8476 -roomNumber: 9604 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elisabeth Viens,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elisabeth Viens -sn: Viens -description: This is Elisabeth Viens's description -facsimileTelephoneNumber: +1 408 301-4986 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 421-5161 -title: Master Peons Madonna -userPassword: Password1 -uid: ViensE -givenName: Elisabeth -mail: ViensE@ea4e16c32710425c934ffce7fc0703d6.bitwarden.com -carLicense: SDK6TA -departmentNumber: 7525 -employeeType: Contract -homePhone: +1 408 998-5958 -initials: E. V. -mobile: +1 408 819-5212 -pager: +1 408 743-1652 -roomNumber: 8211 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Christin Hussain,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christin Hussain -sn: Hussain -description: This is Christin Hussain's description -facsimileTelephoneNumber: +1 206 378-1879 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 747-8562 -title: Master Janitorial Punk -userPassword: Password1 -uid: HussainC -givenName: Christin -mail: HussainC@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com -carLicense: 5E90MB -departmentNumber: 5483 -employeeType: Contract -homePhone: +1 206 435-6286 -initials: C. H. -mobile: +1 206 690-7761 -pager: +1 206 634-1012 -roomNumber: 9132 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Stephannie Oam,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephannie Oam -sn: Oam -description: This is Stephannie Oam's description -facsimileTelephoneNumber: +1 408 570-7921 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 611-2612 -title: Supreme Management Artist -userPassword: Password1 -uid: OamS -givenName: Stephannie -mail: OamS@bab890af02d045bcaf621cc90d0b2098.bitwarden.com -carLicense: 81624R -departmentNumber: 3286 -employeeType: Employee -homePhone: +1 408 962-9045 -initials: S. O. -mobile: +1 408 267-5981 -pager: +1 408 731-4123 -roomNumber: 9885 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WeeSeng Barr -sn: Barr -description: This is WeeSeng Barr's description -facsimileTelephoneNumber: +1 213 763-4247 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 387-9576 -title: Junior Janitorial Admin -userPassword: Password1 -uid: BarrW -givenName: WeeSeng -mail: BarrW@2e2a0c8690da45808c0e415496248633.bitwarden.com -carLicense: D6ERU6 -departmentNumber: 6210 -employeeType: Normal -homePhone: +1 213 238-2124 -initials: W. B. -mobile: +1 213 277-9024 -pager: +1 213 974-3734 -roomNumber: 8990 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saraann Rittenhouse -sn: Rittenhouse -description: This is Saraann Rittenhouse's description -facsimileTelephoneNumber: +1 408 939-2713 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 865-3535 -title: Supreme Administrative Manager -userPassword: Password1 -uid: RittenhS -givenName: Saraann -mail: RittenhS@aab974bb6e3141739f83f690a4adf239.bitwarden.com -carLicense: TAOXQ7 -departmentNumber: 2844 -employeeType: Employee -homePhone: +1 408 475-4582 -initials: S. R. -mobile: +1 408 941-9541 -pager: +1 408 711-7534 -roomNumber: 8124 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kerrie Cholet,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kerrie Cholet -sn: Cholet -description: This is Kerrie Cholet's description -facsimileTelephoneNumber: +1 415 236-1210 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 711-2157 -title: Master Payroll Dictator -userPassword: Password1 -uid: CholetK -givenName: Kerrie -mail: CholetK@6edf4c15ac51401f9d8774ffb0590b89.bitwarden.com -carLicense: XBB7YF -departmentNumber: 1076 -employeeType: Contract -homePhone: +1 415 171-3369 -initials: K. C. -mobile: +1 415 850-9505 -pager: +1 415 510-8418 -roomNumber: 8211 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Barnes Todaro,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barnes Todaro -sn: Todaro -description: This is Barnes Todaro's description -facsimileTelephoneNumber: +1 510 197-5368 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 733-8269 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: TodaroB -givenName: Barnes -mail: TodaroB@102dfc559679498e886e0a19d56ecd00.bitwarden.com -carLicense: RQJOAR -departmentNumber: 8294 -employeeType: Contract -homePhone: +1 510 182-4812 -initials: B. T. -mobile: +1 510 586-9117 -pager: +1 510 135-7312 -roomNumber: 9270 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Paulie Stellitano,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulie Stellitano -sn: Stellitano -description: This is Paulie Stellitano's description -facsimileTelephoneNumber: +1 415 794-3593 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 845-9680 -title: Chief Product Development Architect -userPassword: Password1 -uid: StellitP -givenName: Paulie -mail: StellitP@5ad15098bcd947faa38496ab1dc4e2c9.bitwarden.com -carLicense: P52CQB -departmentNumber: 2214 -employeeType: Normal -homePhone: +1 415 741-3591 -initials: P. S. -mobile: +1 415 761-4612 -pager: +1 415 693-2997 -roomNumber: 9940 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Quon Lamm,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quon Lamm -sn: Lamm -description: This is Quon Lamm's description -facsimileTelephoneNumber: +1 510 102-4740 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 510 178-2022 -title: Junior Product Development Visionary -userPassword: Password1 -uid: LammQ -givenName: Quon -mail: LammQ@a2e835bbc90a4bb8aa8eed7abb9fcd6b.bitwarden.com -carLicense: TA2D0P -departmentNumber: 7109 -employeeType: Normal -homePhone: +1 510 894-1871 -initials: Q. L. -mobile: +1 510 596-9917 -pager: +1 510 419-3527 -roomNumber: 8897 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wenxi Reade,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wenxi Reade -sn: Reade -description: This is Wenxi Reade's description -facsimileTelephoneNumber: +1 818 215-5585 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 740-5014 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: ReadeW -givenName: Wenxi -mail: ReadeW@f541074a8300482d85b53966c8cecebb.bitwarden.com -carLicense: VL7WEH -departmentNumber: 4317 -employeeType: Employee -homePhone: +1 818 966-6937 -initials: W. R. -mobile: +1 818 254-9534 -pager: +1 818 532-3872 -roomNumber: 9426 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fabienne Hoehling,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fabienne Hoehling -sn: Hoehling -description: This is Fabienne Hoehling's description -facsimileTelephoneNumber: +1 408 908-2846 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 903-3590 -title: Master Management Czar -userPassword: Password1 -uid: HoehlinF -givenName: Fabienne -mail: HoehlinF@ab5a3e15caae4984acf7b1a615995a84.bitwarden.com -carLicense: LASQ6I -departmentNumber: 7128 -employeeType: Employee -homePhone: +1 408 275-9087 -initials: F. H. -mobile: +1 408 763-8169 -pager: +1 408 789-6842 -roomNumber: 8232 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YokeKee Triggiano -sn: Triggiano -description: This is YokeKee Triggiano's description -facsimileTelephoneNumber: +1 510 915-4852 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 113-2832 -title: Chief Administrative Evangelist -userPassword: Password1 -uid: TriggiaY -givenName: YokeKee -mail: TriggiaY@11375f30f6dd4d8d96f9eb019f620b90.bitwarden.com -carLicense: T7TC94 -departmentNumber: 2461 -employeeType: Employee -homePhone: +1 510 257-2381 -initials: Y. T. -mobile: +1 510 243-7116 -pager: +1 510 641-7580 -roomNumber: 8189 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lanita Delorenzi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lanita Delorenzi -sn: Delorenzi -description: This is Lanita Delorenzi's description -facsimileTelephoneNumber: +1 804 994-1854 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 740-8075 -title: Supreme Peons Mascot -userPassword: Password1 -uid: DelorenL -givenName: Lanita -mail: DelorenL@0a595c1902924e8c80901829c830cca2.bitwarden.com -carLicense: N9ISN8 -departmentNumber: 5762 -employeeType: Employee -homePhone: +1 804 812-5876 -initials: L. D. -mobile: +1 804 532-7177 -pager: +1 804 548-5850 -roomNumber: 8874 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cycelia Seiler -sn: Seiler -description: This is Cycelia Seiler's description -facsimileTelephoneNumber: +1 213 384-7993 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 873-3653 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: SeilerC -givenName: Cycelia -mail: SeilerC@97fbe9f514864d40bb6dc85e4d15c1c0.bitwarden.com -carLicense: QLGQME -departmentNumber: 2620 -employeeType: Contract -homePhone: +1 213 390-8826 -initials: C. S. -mobile: +1 213 576-4794 -pager: +1 213 572-1458 -roomNumber: 9102 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doralyn Cifersky -sn: Cifersky -description: This is Doralyn Cifersky's description -facsimileTelephoneNumber: +1 804 560-9953 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 717-3209 -title: Chief Human Resources Admin -userPassword: Password1 -uid: CiferskD -givenName: Doralyn -mail: CiferskD@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com -carLicense: A8S6KW -departmentNumber: 3840 -employeeType: Normal -homePhone: +1 804 288-4830 -initials: D. C. -mobile: +1 804 479-3369 -pager: +1 804 873-7669 -roomNumber: 9637 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flossi Carbonara -sn: Carbonara -description: This is Flossi Carbonara's description -facsimileTelephoneNumber: +1 818 581-5393 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 105-2329 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: CarbonaF -givenName: Flossi -mail: CarbonaF@7a5ece6d9adf44888506b316b6709917.bitwarden.com -carLicense: QF36IF -departmentNumber: 2558 -employeeType: Employee -homePhone: +1 818 797-2778 -initials: F. C. -mobile: +1 818 790-2475 -pager: +1 818 720-4402 -roomNumber: 8283 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chong Alleva,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chong Alleva -sn: Alleva -description: This is Chong Alleva's description -facsimileTelephoneNumber: +1 804 180-6386 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 804 663-8829 -title: Chief Payroll President -userPassword: Password1 -uid: AllevaC -givenName: Chong -mail: AllevaC@78da39afd8f041eaad04623e643dcf1d.bitwarden.com -carLicense: UL8GX5 -departmentNumber: 3670 -employeeType: Contract -homePhone: +1 804 304-7256 -initials: C. A. -mobile: +1 804 950-3052 -pager: +1 804 623-1551 -roomNumber: 9466 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjo Burkhardt -sn: Burkhardt -description: This is Marjo Burkhardt's description -facsimileTelephoneNumber: +1 510 144-5823 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 305-6884 -title: Master Payroll Director -userPassword: Password1 -uid: BurkharM -givenName: Marjo -mail: BurkharM@e55b43fab5194d70867c5cdfb0b99fcb.bitwarden.com -carLicense: 4A3MLI -departmentNumber: 7081 -employeeType: Contract -homePhone: +1 510 668-1984 -initials: M. B. -mobile: +1 510 610-7315 -pager: +1 510 137-1626 -roomNumber: 8797 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbette Wojnar -sn: Wojnar -description: This is Barbette Wojnar's description -facsimileTelephoneNumber: +1 415 100-6312 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 415 850-1772 -title: Master Product Testing Architect -userPassword: Password1 -uid: WojnarB -givenName: Barbette -mail: WojnarB@afa80aa7187b419eb6bf52dc727c580b.bitwarden.com -carLicense: W7SP51 -departmentNumber: 4537 -employeeType: Employee -homePhone: +1 415 406-1434 -initials: B. W. -mobile: +1 415 701-9177 -pager: +1 415 460-9891 -roomNumber: 9764 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Theresita Flanagan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theresita Flanagan -sn: Flanagan -description: This is Theresita Flanagan's description -facsimileTelephoneNumber: +1 206 699-7100 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 963-9306 -title: Supreme Administrative Visionary -userPassword: Password1 -uid: FlanagaT -givenName: Theresita -mail: FlanagaT@65678c07e8734c7890d5cf5e76fde9cc.bitwarden.com -carLicense: GTVMDN -departmentNumber: 6841 -employeeType: Normal -homePhone: +1 206 699-4311 -initials: T. F. -mobile: +1 206 541-3459 -pager: +1 206 225-4450 -roomNumber: 8579 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Luc Sutton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luc Sutton -sn: Sutton -description: This is Luc Sutton's description -facsimileTelephoneNumber: +1 408 824-8999 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 496-3080 -title: Associate Payroll President -userPassword: Password1 -uid: SuttonL -givenName: Luc -mail: SuttonL@e8193f804bab49a9ab24a3360e9fb251.bitwarden.com -carLicense: YU98NV -departmentNumber: 3499 -employeeType: Contract -homePhone: +1 408 225-7620 -initials: L. S. -mobile: +1 408 691-7388 -pager: +1 408 275-4846 -roomNumber: 9948 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Adnan Madani,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adnan Madani -sn: Madani -description: This is Adnan Madani's description -facsimileTelephoneNumber: +1 206 981-3604 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 231-4235 -title: Junior Product Development Madonna -userPassword: Password1 -uid: MadaniA -givenName: Adnan -mail: MadaniA@9011e405bc8b4f8fa11f77635250f96d.bitwarden.com -carLicense: M9X9GM -departmentNumber: 8474 -employeeType: Normal -homePhone: +1 206 545-4842 -initials: A. M. -mobile: +1 206 464-4456 -pager: +1 206 616-7708 -roomNumber: 9361 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jason Quelch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jason Quelch -sn: Quelch -description: This is Jason Quelch's description -facsimileTelephoneNumber: +1 818 690-2062 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 935-8802 -title: Master Janitorial Punk -userPassword: Password1 -uid: QuelchJ -givenName: Jason -mail: QuelchJ@643a7a9782f24ae2ae0ce0064cc2c175.bitwarden.com -carLicense: CNBG0S -departmentNumber: 3303 -employeeType: Contract -homePhone: +1 818 174-6426 -initials: J. Q. -mobile: +1 818 473-6669 -pager: +1 818 205-5662 -roomNumber: 9075 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernhard Purchasing -sn: Purchasing -description: This is Bernhard Purchasing's description -facsimileTelephoneNumber: +1 408 428-6210 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 408 340-7784 -title: Junior Administrative Pinhead -userPassword: Password1 -uid: PurchasB -givenName: Bernhard -mail: PurchasB@541a9a67add74942af05ec9661f08230.bitwarden.com -carLicense: EGHXVW -departmentNumber: 6214 -employeeType: Normal -homePhone: +1 408 808-4942 -initials: B. P. -mobile: +1 408 260-7951 -pager: +1 408 368-3858 -roomNumber: 8365 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rocke Moubarak -sn: Moubarak -description: This is Rocke Moubarak's description -facsimileTelephoneNumber: +1 408 692-6876 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 408 547-3832 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: MoubaraR -givenName: Rocke -mail: MoubaraR@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com -carLicense: WQWM6T -departmentNumber: 6484 -employeeType: Employee -homePhone: +1 408 810-9249 -initials: R. M. -mobile: +1 408 622-6596 -pager: +1 408 977-4446 -roomNumber: 8878 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Terrence Rolston,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terrence Rolston -sn: Rolston -description: This is Terrence Rolston's description -facsimileTelephoneNumber: +1 213 706-6957 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 895-8405 -title: Associate Management Dictator -userPassword: Password1 -uid: RolstonT -givenName: Terrence -mail: RolstonT@f64d2b674404476caa1b13d86d94ce8c.bitwarden.com -carLicense: JDH35N -departmentNumber: 4027 -employeeType: Contract -homePhone: +1 213 622-4201 -initials: T. R. -mobile: +1 213 346-7688 -pager: +1 213 391-1901 -roomNumber: 9141 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Douglass Kwee,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Douglass Kwee -sn: Kwee -description: This is Douglass Kwee's description -facsimileTelephoneNumber: +1 408 670-9968 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 556-6036 -title: Chief Product Testing Manager -userPassword: Password1 -uid: KweeD -givenName: Douglass -mail: KweeD@b7096e7dad2d445c9a6a84bd0cc4e406.bitwarden.com -carLicense: DNDIOW -departmentNumber: 5304 -employeeType: Contract -homePhone: +1 408 866-5444 -initials: D. K. -mobile: +1 408 992-9656 -pager: +1 408 618-5501 -roomNumber: 8082 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Manjit Sankey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manjit Sankey -sn: Sankey -description: This is Manjit Sankey's description -facsimileTelephoneNumber: +1 415 843-9105 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 134-7856 -title: Master Product Development Engineer -userPassword: Password1 -uid: SankeyM -givenName: Manjit -mail: SankeyM@0e3113ef45cd4f5f8de5c47309c63f86.bitwarden.com -carLicense: F8FY3W -departmentNumber: 6225 -employeeType: Employee -homePhone: +1 415 707-3032 -initials: M. S. -mobile: +1 415 520-7863 -pager: +1 415 702-4529 -roomNumber: 9564 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Thalia Majid,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thalia Majid -sn: Majid -description: This is Thalia Majid's description -facsimileTelephoneNumber: +1 510 929-3969 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 610-4560 -title: Chief Product Testing President -userPassword: Password1 -uid: MajidT -givenName: Thalia -mail: MajidT@190762f539394f3d8d0e37edbd48fa26.bitwarden.com -carLicense: 82VULF -departmentNumber: 5642 -employeeType: Normal -homePhone: +1 510 924-9622 -initials: T. M. -mobile: +1 510 966-2204 -pager: +1 510 869-4236 -roomNumber: 9748 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Anna Gullekson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anna Gullekson -sn: Gullekson -description: This is Anna Gullekson's description -facsimileTelephoneNumber: +1 408 393-2447 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 327-3558 -title: Supreme Peons Consultant -userPassword: Password1 -uid: GulleksA -givenName: Anna -mail: GulleksA@893bc48ed45e4ab7ab4ee0815dd34812.bitwarden.com -carLicense: L4TIM3 -departmentNumber: 9670 -employeeType: Normal -homePhone: +1 408 720-9026 -initials: A. G. -mobile: +1 408 172-1216 -pager: +1 408 641-7026 -roomNumber: 9563 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Steffi Rok,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steffi Rok -sn: Rok -description: This is Steffi Rok's description -facsimileTelephoneNumber: +1 510 383-7457 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 860-4687 -title: Chief Product Testing Architect -userPassword: Password1 -uid: RokS -givenName: Steffi -mail: RokS@8fb9d9d0bee6452fa8938ef7b2ecd6d2.bitwarden.com -carLicense: BHI5V8 -departmentNumber: 8865 -employeeType: Normal -homePhone: +1 510 393-3457 -initials: S. R. -mobile: +1 510 616-6587 -pager: +1 510 440-7359 -roomNumber: 9546 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gerrard Kearns,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerrard Kearns -sn: Kearns -description: This is Gerrard Kearns's description -facsimileTelephoneNumber: +1 415 720-6357 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 826-4446 -title: Master Administrative Manager -userPassword: Password1 -uid: KearnsG -givenName: Gerrard -mail: KearnsG@aca976004a314abfbb7dfda7c7926044.bitwarden.com -carLicense: 8I168E -departmentNumber: 2464 -employeeType: Normal -homePhone: +1 415 868-9241 -initials: G. K. -mobile: +1 415 455-3026 -pager: +1 415 210-6172 -roomNumber: 9705 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebekkah Letendre -sn: Letendre -description: This is Rebekkah Letendre's description -facsimileTelephoneNumber: +1 206 810-1871 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 786-4144 -title: Associate Administrative Janitor -userPassword: Password1 -uid: LetendrR -givenName: Rebekkah -mail: LetendrR@1babd519a8034b2d99c4603db1b7c5f2.bitwarden.com -carLicense: XL9MI6 -departmentNumber: 2314 -employeeType: Normal -homePhone: +1 206 141-6614 -initials: R. L. -mobile: +1 206 844-2278 -pager: +1 206 398-7697 -roomNumber: 9647 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Teri Braginetz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teri Braginetz -sn: Braginetz -description: This is Teri Braginetz's description -facsimileTelephoneNumber: +1 206 337-4098 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 706-9755 -title: Master Janitorial Engineer -userPassword: Password1 -uid: BragineT -givenName: Teri -mail: BragineT@bff4b511cea9469fa37ffb543c659826.bitwarden.com -carLicense: 2TEG25 -departmentNumber: 8839 -employeeType: Contract -homePhone: +1 206 709-5159 -initials: T. B. -mobile: +1 206 676-3396 -pager: +1 206 694-4677 -roomNumber: 9792 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nuri Spieker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nuri Spieker -sn: Spieker -description: This is Nuri Spieker's description -facsimileTelephoneNumber: +1 213 583-6101 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 636-4161 -title: Chief Peons Visionary -userPassword: Password1 -uid: SpiekerN -givenName: Nuri -mail: SpiekerN@afa80aa7187b419eb6bf52dc727c580b.bitwarden.com -carLicense: A6SKK4 -departmentNumber: 9885 -employeeType: Normal -homePhone: +1 213 373-7906 -initials: N. S. -mobile: +1 213 324-5090 -pager: +1 213 479-7357 -roomNumber: 8788 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tobi Bourahla -sn: Bourahla -description: This is Tobi Bourahla's description -facsimileTelephoneNumber: +1 804 559-4395 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 804 656-7905 -title: Master Product Testing Architect -userPassword: Password1 -uid: BourahlT -givenName: Tobi -mail: BourahlT@19b361f0a9d047efa402d72785e83839.bitwarden.com -carLicense: KJ8MSY -departmentNumber: 4936 -employeeType: Normal -homePhone: +1 804 179-1439 -initials: T. B. -mobile: +1 804 224-3608 -pager: +1 804 634-7479 -roomNumber: 8028 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Flossy Leveille,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flossy Leveille -sn: Leveille -description: This is Flossy Leveille's description -facsimileTelephoneNumber: +1 415 801-6959 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 790-9202 -title: Junior Management Sales Rep -userPassword: Password1 -uid: LeveillF -givenName: Flossy -mail: LeveillF@e89f7d8012a542109e09ce98de1ebaa3.bitwarden.com -carLicense: RME7RF -departmentNumber: 4102 -employeeType: Employee -homePhone: +1 415 133-9411 -initials: F. L. -mobile: +1 415 741-1558 -pager: +1 415 204-6420 -roomNumber: 8098 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Witte Houghton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Witte Houghton -sn: Houghton -description: This is Witte Houghton's description -facsimileTelephoneNumber: +1 206 470-8396 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 682-5716 -title: Chief Payroll Technician -userPassword: Password1 -uid: HoughtoW -givenName: Witte -mail: HoughtoW@c91b2ddabda245189089b8e227b823b2.bitwarden.com -carLicense: XAAP9K -departmentNumber: 4229 -employeeType: Employee -homePhone: +1 206 203-5303 -initials: W. H. -mobile: +1 206 388-3271 -pager: +1 206 398-1236 -roomNumber: 8486 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gateway Szaran,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gateway Szaran -sn: Szaran -description: This is Gateway Szaran's description -facsimileTelephoneNumber: +1 415 668-8210 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 570-9279 -title: Master Administrative Dictator -userPassword: Password1 -uid: SzaranG -givenName: Gateway -mail: SzaranG@ba21abcd355b438c8ca475845a96f139.bitwarden.com -carLicense: W0VMBI -departmentNumber: 3045 -employeeType: Normal -homePhone: +1 415 798-1747 -initials: G. S. -mobile: +1 415 836-6060 -pager: +1 415 338-2028 -roomNumber: 9198 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Othelia Henley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othelia Henley -sn: Henley -description: This is Othelia Henley's description -facsimileTelephoneNumber: +1 510 477-7780 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 277-1454 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: HenleyO -givenName: Othelia -mail: HenleyO@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com -carLicense: SGNBHJ -departmentNumber: 2448 -employeeType: Normal -homePhone: +1 510 417-5132 -initials: O. H. -mobile: +1 510 639-7746 -pager: +1 510 447-8815 -roomNumber: 8511 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Stacia Sova,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacia Sova -sn: Sova -description: This is Stacia Sova's description -facsimileTelephoneNumber: +1 818 621-9379 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 761-4178 -title: Junior Janitorial Punk -userPassword: Password1 -uid: SovaS -givenName: Stacia -mail: SovaS@11aa381a3094436abdc8bd9975f709cf.bitwarden.com -carLicense: XI2IH0 -departmentNumber: 2228 -employeeType: Contract -homePhone: +1 818 982-4677 -initials: S. S. -mobile: +1 818 450-6737 -pager: +1 818 948-6086 -roomNumber: 9551 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yueping Lotochinski -sn: Lotochinski -description: This is Yueping Lotochinski's description -facsimileTelephoneNumber: +1 206 750-7053 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 813-3640 -title: Junior Human Resources Architect -userPassword: Password1 -uid: LotochiY -givenName: Yueping -mail: LotochiY@cb2e25cd93c145bf81000296630c3ab7.bitwarden.com -carLicense: WB0JCP -departmentNumber: 9481 -employeeType: Contract -homePhone: +1 206 193-2401 -initials: Y. L. -mobile: +1 206 639-6969 -pager: +1 206 188-8144 -roomNumber: 8321 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kellen Nickells,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kellen Nickells -sn: Nickells -description: This is Kellen Nickells's description -facsimileTelephoneNumber: +1 818 688-6789 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 268-4186 -title: Junior Product Development Mascot -userPassword: Password1 -uid: NickellK -givenName: Kellen -mail: NickellK@1eb9b53c6a0544dd9c49164e1f66daae.bitwarden.com -carLicense: V0PIJ9 -departmentNumber: 9935 -employeeType: Contract -homePhone: +1 818 453-1489 -initials: K. N. -mobile: +1 818 571-8845 -pager: +1 818 845-4143 -roomNumber: 8256 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subu Glofcheskie -sn: Glofcheskie -description: This is Subu Glofcheskie's description -facsimileTelephoneNumber: +1 213 427-8775 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 655-1460 -title: Junior Janitorial Admin -userPassword: Password1 -uid: GlofcheS -givenName: Subu -mail: GlofcheS@49a15030fed84b5c949c8b818a768fcf.bitwarden.com -carLicense: RULLSE -departmentNumber: 5055 -employeeType: Normal -homePhone: +1 213 132-9329 -initials: S. G. -mobile: +1 213 471-4359 -pager: +1 213 582-7932 -roomNumber: 9415 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noelle Miltenburg -sn: Miltenburg -description: This is Noelle Miltenburg's description -facsimileTelephoneNumber: +1 408 814-5509 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 320-1751 -title: Supreme Human Resources Assistant -userPassword: Password1 -uid: MiltenbN -givenName: Noelle -mail: MiltenbN@325baca037db47019cfe17144614afb2.bitwarden.com -carLicense: V251AT -departmentNumber: 1648 -employeeType: Normal -homePhone: +1 408 472-5095 -initials: N. M. -mobile: +1 408 988-9381 -pager: +1 408 315-9499 -roomNumber: 9337 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marika Brombal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marika Brombal -sn: Brombal -description: This is Marika Brombal's description -facsimileTelephoneNumber: +1 510 255-3783 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 695-5441 -title: Chief Peons Pinhead -userPassword: Password1 -uid: BrombalM -givenName: Marika -mail: BrombalM@fc0c286626334794ab4a83e723107bf2.bitwarden.com -carLicense: RJIIAU -departmentNumber: 5205 -employeeType: Employee -homePhone: +1 510 867-9579 -initials: M. B. -mobile: +1 510 884-9251 -pager: +1 510 778-1388 -roomNumber: 8089 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjie Watchmaker -sn: Watchmaker -description: This is Marjie Watchmaker's description -facsimileTelephoneNumber: +1 408 728-8043 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 103-6608 -title: Supreme Product Testing Director -userPassword: Password1 -uid: WatchmaM -givenName: Marjie -mail: WatchmaM@cfa5e8864d9a4014bb3e1303e126d0df.bitwarden.com -carLicense: 91AKU0 -departmentNumber: 1048 -employeeType: Normal -homePhone: +1 408 798-9795 -initials: M. W. -mobile: +1 408 677-4423 -pager: +1 408 321-5313 -roomNumber: 8781 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kally Woodyer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kally Woodyer -sn: Woodyer -description: This is Kally Woodyer's description -facsimileTelephoneNumber: +1 818 590-7124 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 818-3334 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: WoodyerK -givenName: Kally -mail: WoodyerK@d854a7d34f1f40b68a358853dc801a6b.bitwarden.com -carLicense: MA6YJD -departmentNumber: 3881 -employeeType: Normal -homePhone: +1 818 651-8605 -initials: K. W. -mobile: +1 818 265-6210 -pager: +1 818 571-4144 -roomNumber: 9960 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Constancia Liao,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constancia Liao -sn: Liao -description: This is Constancia Liao's description -facsimileTelephoneNumber: +1 206 972-8715 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 945-9669 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: LiaoC -givenName: Constancia -mail: LiaoC@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com -carLicense: AOTU9N -departmentNumber: 3614 -employeeType: Contract -homePhone: +1 206 359-5834 -initials: C. L. -mobile: +1 206 218-2390 -pager: +1 206 926-6779 -roomNumber: 9899 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alexander Riley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alexander Riley -sn: Riley -description: This is Alexander Riley's description -facsimileTelephoneNumber: +1 818 733-4818 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 818 162-6144 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: RileyA -givenName: Alexander -mail: RileyA@e92792a71a1b4fd28678d03900079ed2.bitwarden.com -carLicense: 0HS5WV -departmentNumber: 7189 -employeeType: Contract -homePhone: +1 818 829-8936 -initials: A. R. -mobile: +1 818 826-5107 -pager: +1 818 842-6280 -roomNumber: 9441 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Concordia Radcliffe -sn: Radcliffe -description: This is Concordia Radcliffe's description -facsimileTelephoneNumber: +1 408 622-8596 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 530-8110 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: RadclifC -givenName: Concordia -mail: RadclifC@38a7625af1b14df88545f13f78008710.bitwarden.com -carLicense: 0FOTG1 -departmentNumber: 9036 -employeeType: Normal -homePhone: +1 408 543-4978 -initials: C. R. -mobile: +1 408 442-4826 -pager: +1 408 139-4880 -roomNumber: 8770 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bobb Hubers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobb Hubers -sn: Hubers -description: This is Bobb Hubers's description -facsimileTelephoneNumber: +1 818 208-3453 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 398-8545 -title: Associate Management Evangelist -userPassword: Password1 -uid: HubersB -givenName: Bobb -mail: HubersB@13bd043663fc42cba2436f0d4858727a.bitwarden.com -carLicense: WJRXTT -departmentNumber: 4766 -employeeType: Normal -homePhone: +1 818 515-3351 -initials: B. H. -mobile: +1 818 671-7067 -pager: +1 818 984-7882 -roomNumber: 9021 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vannie Clenney,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vannie Clenney -sn: Clenney -description: This is Vannie Clenney's description -facsimileTelephoneNumber: +1 213 759-2992 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 762-3825 -title: Associate Human Resources Figurehead -userPassword: Password1 -uid: ClenneyV -givenName: Vannie -mail: ClenneyV@b18734eaf31b4b8a9fcf2accdab91823.bitwarden.com -carLicense: TVUVGF -departmentNumber: 2666 -employeeType: Contract -homePhone: +1 213 391-1795 -initials: V. C. -mobile: +1 213 273-1447 -pager: +1 213 501-5838 -roomNumber: 9967 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Udaya Kingaby,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Udaya Kingaby -sn: Kingaby -description: This is Udaya Kingaby's description -facsimileTelephoneNumber: +1 213 693-2648 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 213 183-1074 -title: Associate Peons Manager -userPassword: Password1 -uid: KingabyU -givenName: Udaya -mail: KingabyU@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com -carLicense: EP6O5F -departmentNumber: 7622 -employeeType: Employee -homePhone: +1 213 881-2458 -initials: U. K. -mobile: +1 213 146-1076 -pager: +1 213 695-6839 -roomNumber: 9444 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dari OHara,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dari OHara -sn: OHara -description: This is Dari OHara's description -facsimileTelephoneNumber: +1 415 849-9805 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 186-6951 -title: Master Administrative Grunt -userPassword: Password1 -uid: OHaraD -givenName: Dari -mail: OHaraD@8a0cbe1fe7e149a8b47de17ec0983326.bitwarden.com -carLicense: M1BP0T -departmentNumber: 6269 -employeeType: Contract -homePhone: +1 415 932-3845 -initials: D. O. -mobile: +1 415 737-1827 -pager: +1 415 415-2105 -roomNumber: 8702 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Merralee Firment,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merralee Firment -sn: Firment -description: This is Merralee Firment's description -facsimileTelephoneNumber: +1 415 751-7022 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 283-8760 -title: Chief Product Development Stooge -userPassword: Password1 -uid: FirmentM -givenName: Merralee -mail: FirmentM@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com -carLicense: WL73K2 -departmentNumber: 8959 -employeeType: Employee -homePhone: +1 415 349-6229 -initials: M. F. -mobile: +1 415 604-6451 -pager: +1 415 277-4470 -roomNumber: 9154 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ricardo Osborne -sn: Osborne -description: This is Ricardo Osborne's description -facsimileTelephoneNumber: +1 408 792-4918 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 970-1996 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: OsborneR -givenName: Ricardo -mail: OsborneR@18eab17fefac4eeea398f028a117f313.bitwarden.com -carLicense: FP03YF -departmentNumber: 5960 -employeeType: Contract -homePhone: +1 408 823-6636 -initials: R. O. -mobile: +1 408 505-2644 -pager: +1 408 802-6531 -roomNumber: 9809 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Aurie Alanoly,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurie Alanoly -sn: Alanoly -description: This is Aurie Alanoly's description -facsimileTelephoneNumber: +1 206 712-3864 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 560-9853 -title: Supreme Peons Writer -userPassword: Password1 -uid: AlanolyA -givenName: Aurie -mail: AlanolyA@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com -carLicense: G1H832 -departmentNumber: 1110 -employeeType: Employee -homePhone: +1 206 511-5168 -initials: A. A. -mobile: +1 206 365-6712 -pager: +1 206 373-7322 -roomNumber: 8730 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nadim Junkin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nadim Junkin -sn: Junkin -description: This is Nadim Junkin's description -facsimileTelephoneNumber: +1 408 570-8228 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 869-9757 -title: Supreme Peons Fellow -userPassword: Password1 -uid: JunkinN -givenName: Nadim -mail: JunkinN@09bb099d23204c85bbfd94efdb157b79.bitwarden.com -carLicense: 9KQBDM -departmentNumber: 7613 -employeeType: Normal -homePhone: +1 408 109-4098 -initials: N. J. -mobile: +1 408 482-4249 -pager: +1 408 185-5469 -roomNumber: 8662 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Erik Chapman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erik Chapman -sn: Chapman -description: This is Erik Chapman's description -facsimileTelephoneNumber: +1 510 898-2560 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 227-9342 -title: Associate Management Consultant -userPassword: Password1 -uid: ChapmanE -givenName: Erik -mail: ChapmanE@9d01b447e6a64f299b9f22d5bfa6f85c.bitwarden.com -carLicense: 02QP0L -departmentNumber: 5543 -employeeType: Normal -homePhone: +1 510 878-2635 -initials: E. C. -mobile: +1 510 842-9144 -pager: +1 510 693-2640 -roomNumber: 9939 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Adora Lamers,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adora Lamers -sn: Lamers -description: This is Adora Lamers's description -facsimileTelephoneNumber: +1 206 700-9229 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 812-7698 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: LamersA -givenName: Adora -mail: LamersA@0d80b2a6494e4c3ea20974357dae6a78.bitwarden.com -carLicense: 43DBOO -departmentNumber: 5234 -employeeType: Employee -homePhone: +1 206 218-9281 -initials: A. L. -mobile: +1 206 306-8552 -pager: +1 206 897-9474 -roomNumber: 9407 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiem Kinniburgh -sn: Kinniburgh -description: This is Kiem Kinniburgh's description -facsimileTelephoneNumber: +1 510 845-8926 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 510 930-9557 -title: Chief Product Development Sales Rep -userPassword: Password1 -uid: KinnibuK -givenName: Kiem -mail: KinnibuK@e88ec12c0e274795b179c15ca876ea28.bitwarden.com -carLicense: 3S35CE -departmentNumber: 9544 -employeeType: Employee -homePhone: +1 510 817-8673 -initials: K. K. -mobile: +1 510 239-3176 -pager: +1 510 740-5183 -roomNumber: 9123 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Micah Brabec,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micah Brabec -sn: Brabec -description: This is Micah Brabec's description -facsimileTelephoneNumber: +1 213 320-9789 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 749-6135 -title: Chief Peons President -userPassword: Password1 -uid: BrabecM -givenName: Micah -mail: BrabecM@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com -carLicense: DS32P9 -departmentNumber: 6996 -employeeType: Contract -homePhone: +1 213 552-9222 -initials: M. B. -mobile: +1 213 491-1494 -pager: +1 213 498-9934 -roomNumber: 9269 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Annette Brandsen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annette Brandsen -sn: Brandsen -description: This is Annette Brandsen's description -facsimileTelephoneNumber: +1 206 785-7626 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 928-5636 -title: Chief Product Development President -userPassword: Password1 -uid: BrandseA -givenName: Annette -mail: BrandseA@87319c77ecd947ceb8993498705d4a28.bitwarden.com -carLicense: MPXNN0 -departmentNumber: 2766 -employeeType: Normal -homePhone: +1 206 985-2645 -initials: A. B. -mobile: +1 206 836-3804 -pager: +1 206 375-9815 -roomNumber: 9385 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Amabelle Lockwood,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amabelle Lockwood -sn: Lockwood -description: This is Amabelle Lockwood's description -facsimileTelephoneNumber: +1 213 336-4057 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 547-9182 -title: Master Management Admin -userPassword: Password1 -uid: LockwooA -givenName: Amabelle -mail: LockwooA@6c11e171b5ae4d6a948549d1ce64d6ba.bitwarden.com -carLicense: FGLJ0M -departmentNumber: 4573 -employeeType: Contract -homePhone: +1 213 616-6401 -initials: A. L. -mobile: +1 213 416-2870 -pager: +1 213 700-1965 -roomNumber: 9301 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rosaline Carldata,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosaline Carldata -sn: Carldata -description: This is Rosaline Carldata's description -facsimileTelephoneNumber: +1 818 660-3051 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 671-5624 -title: Chief Peons Visionary -userPassword: Password1 -uid: CarldatR -givenName: Rosaline -mail: CarldatR@624142924058476ab877513f564d46a8.bitwarden.com -carLicense: K17HER -departmentNumber: 9288 -employeeType: Normal -homePhone: +1 818 404-4236 -initials: R. C. -mobile: +1 818 193-3116 -pager: +1 818 914-2871 -roomNumber: 9029 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Diana Felczak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diana Felczak -sn: Felczak -description: This is Diana Felczak's description -facsimileTelephoneNumber: +1 510 299-3602 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 194-8270 -title: Chief Human Resources Writer -userPassword: Password1 -uid: FelczakD -givenName: Diana -mail: FelczakD@79e870d6aec04b1188d3b93e080d363c.bitwarden.com -carLicense: AHWBQS -departmentNumber: 9748 -employeeType: Employee -homePhone: +1 510 262-6249 -initials: D. F. -mobile: +1 510 527-6083 -pager: +1 510 108-2910 -roomNumber: 9675 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Regis Liesemer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regis Liesemer -sn: Liesemer -description: This is Regis Liesemer's description -facsimileTelephoneNumber: +1 804 315-3268 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 725-7333 -title: Associate Peons Pinhead -userPassword: Password1 -uid: LiesemeR -givenName: Regis -mail: LiesemeR@08af06c825e94cb392bd12261cb97963.bitwarden.com -carLicense: X803NC -departmentNumber: 4651 -employeeType: Contract -homePhone: +1 804 325-4468 -initials: R. L. -mobile: +1 804 711-9934 -pager: +1 804 949-7864 -roomNumber: 9995 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Joke Mrozinski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joke Mrozinski -sn: Mrozinski -description: This is Joke Mrozinski's description -facsimileTelephoneNumber: +1 213 890-4586 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 335-5063 -title: Chief Administrative Assistant -userPassword: Password1 -uid: MrozinsJ -givenName: Joke -mail: MrozinsJ@cfa7040d433d4b838919647ccf3ca4bd.bitwarden.com -carLicense: TEB3OX -departmentNumber: 7397 -employeeType: Contract -homePhone: +1 213 127-2925 -initials: J. M. -mobile: +1 213 192-6220 -pager: +1 213 383-5313 -roomNumber: 8472 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marcelle Hine,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcelle Hine -sn: Hine -description: This is Marcelle Hine's description -facsimileTelephoneNumber: +1 415 329-2123 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 815-9553 -title: Supreme Product Development Artist -userPassword: Password1 -uid: HineM -givenName: Marcelle -mail: HineM@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com -carLicense: KN6J6J -departmentNumber: 7143 -employeeType: Normal -homePhone: +1 415 703-9016 -initials: M. H. -mobile: +1 415 944-2195 -pager: +1 415 780-7879 -roomNumber: 8997 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orlyn Legrow -sn: Legrow -description: This is Orlyn Legrow's description -facsimileTelephoneNumber: +1 206 309-2095 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 343-1204 -title: Master Product Testing Architect -userPassword: Password1 -uid: LegrowO -givenName: Orlyn -mail: LegrowO@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com -carLicense: YOTH4M -departmentNumber: 4368 -employeeType: Contract -homePhone: +1 206 372-1345 -initials: O. L. -mobile: +1 206 532-9797 -pager: +1 206 624-7401 -roomNumber: 9466 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Grayce Cicci,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grayce Cicci -sn: Cicci -description: This is Grayce Cicci's description -facsimileTelephoneNumber: +1 804 777-7178 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 267-4561 -title: Master Product Testing Punk -userPassword: Password1 -uid: CicciG -givenName: Grayce -mail: CicciG@79e870d6aec04b1188d3b93e080d363c.bitwarden.com -carLicense: HJWBRX -departmentNumber: 1489 -employeeType: Contract -homePhone: +1 804 678-7452 -initials: G. C. -mobile: +1 804 618-5358 -pager: +1 804 675-7048 -roomNumber: 9853 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Idris CPM,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idris CPM -sn: CPM -description: This is Idris CPM's description -facsimileTelephoneNumber: +1 415 872-5285 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 661-6947 -title: Junior Management President -userPassword: Password1 -uid: CPMI -givenName: Idris -mail: CPMI@065d89caf6134a3f9c8662bc1542414d.bitwarden.com -carLicense: BV7UQR -departmentNumber: 6073 -employeeType: Employee -homePhone: +1 415 328-7317 -initials: I. C. -mobile: +1 415 600-1269 -pager: +1 415 874-8002 -roomNumber: 8324 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tasia Sutarwala -sn: Sutarwala -description: This is Tasia Sutarwala's description -facsimileTelephoneNumber: +1 415 734-3178 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 618-9146 -title: Master Administrative Vice President -userPassword: Password1 -uid: SutarwaT -givenName: Tasia -mail: SutarwaT@021f182578104bf484110ac6631b5efa.bitwarden.com -carLicense: OONVFJ -departmentNumber: 6753 -employeeType: Normal -homePhone: +1 415 132-4356 -initials: T. S. -mobile: +1 415 839-6629 -pager: +1 415 264-4764 -roomNumber: 8678 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ree Budhram,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ree Budhram -sn: Budhram -description: This is Ree Budhram's description -facsimileTelephoneNumber: +1 415 326-7086 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 698-8315 -title: Master Product Development Developer -userPassword: Password1 -uid: BudhramR -givenName: Ree -mail: BudhramR@a3f7434e2b8a46068e08a2b78a0eab76.bitwarden.com -carLicense: 122CNG -departmentNumber: 9417 -employeeType: Contract -homePhone: +1 415 957-8003 -initials: R. B. -mobile: +1 415 203-5056 -pager: +1 415 272-1485 -roomNumber: 8401 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Elda Ranahan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elda Ranahan -sn: Ranahan -description: This is Elda Ranahan's description -facsimileTelephoneNumber: +1 408 213-3325 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 884-2211 -title: Master Peons Technician -userPassword: Password1 -uid: RanahanE -givenName: Elda -mail: RanahanE@bd1d65ed4d0c4a7dad4e3b96610e9934.bitwarden.com -carLicense: SIJNIM -departmentNumber: 3478 -employeeType: Contract -homePhone: +1 408 569-6775 -initials: E. R. -mobile: +1 408 657-8154 -pager: +1 408 399-1789 -roomNumber: 8879 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pinder Metrailer -sn: Metrailer -description: This is Pinder Metrailer's description -facsimileTelephoneNumber: +1 818 196-5106 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 561-9914 -title: Associate Human Resources Czar -userPassword: Password1 -uid: MetrailP -givenName: Pinder -mail: MetrailP@d0bdf08d734447ea82c1911df5e50cfd.bitwarden.com -carLicense: 72JU9Y -departmentNumber: 7980 -employeeType: Contract -homePhone: +1 818 613-9497 -initials: P. M. -mobile: +1 818 292-4757 -pager: +1 818 918-6464 -roomNumber: 9033 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shailendra Kapsa,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shailendra Kapsa -sn: Kapsa -description: This is Shailendra Kapsa's description -facsimileTelephoneNumber: +1 818 580-5818 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 272-5498 -title: Supreme Management Developer -userPassword: Password1 -uid: KapsaS -givenName: Shailendra -mail: KapsaS@43194b35694143d5b8419715c0e79567.bitwarden.com -carLicense: 8CTNT8 -departmentNumber: 5918 -employeeType: Normal -homePhone: +1 818 756-9872 -initials: S. K. -mobile: +1 818 897-3961 -pager: +1 818 713-4617 -roomNumber: 9625 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Persis Emig,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Persis Emig -sn: Emig -description: This is Persis Emig's description -facsimileTelephoneNumber: +1 408 903-6956 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 408 470-6012 -title: Master Peons Consultant -userPassword: Password1 -uid: EmigP -givenName: Persis -mail: EmigP@9fafe4d0289a4f4bbac552a25b2345a7.bitwarden.com -carLicense: 4W3SPP -departmentNumber: 5024 -employeeType: Contract -homePhone: +1 408 780-3141 -initials: P. E. -mobile: +1 408 134-1625 -pager: +1 408 483-6328 -roomNumber: 9759 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wladyslaw Fuson -sn: Fuson -description: This is Wladyslaw Fuson's description -facsimileTelephoneNumber: +1 510 870-4156 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 457-4821 -title: Associate Payroll Director -userPassword: Password1 -uid: FusonW -givenName: Wladyslaw -mail: FusonW@770858a0ba27427fa80380c180b40ddb.bitwarden.com -carLicense: UF8I18 -departmentNumber: 3891 -employeeType: Employee -homePhone: +1 510 576-2373 -initials: W. F. -mobile: +1 510 966-1491 -pager: +1 510 729-9012 -roomNumber: 8263 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jillayne Gendron -sn: Gendron -description: This is Jillayne Gendron's description -facsimileTelephoneNumber: +1 408 736-6588 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 540-5978 -title: Junior Human Resources Engineer -userPassword: Password1 -uid: GendronJ -givenName: Jillayne -mail: GendronJ@b154fab59ca14553be1151ffa2cd4d97.bitwarden.com -carLicense: R54KX1 -departmentNumber: 2974 -employeeType: Employee -homePhone: +1 408 245-9676 -initials: J. G. -mobile: +1 408 125-4022 -pager: +1 408 867-4539 -roomNumber: 8036 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Laurel Grills,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laurel Grills -sn: Grills -description: This is Laurel Grills's description -facsimileTelephoneNumber: +1 415 425-6588 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 276-6795 -title: Chief Product Testing Punk -userPassword: Password1 -uid: GrillsL -givenName: Laurel -mail: GrillsL@5d4e8ddf2cb3440da6c01a697205179e.bitwarden.com -carLicense: 2RKC37 -departmentNumber: 5386 -employeeType: Contract -homePhone: +1 415 124-4981 -initials: L. G. -mobile: +1 415 388-3390 -pager: +1 415 991-7160 -roomNumber: 9685 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Saloma Jaques,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saloma Jaques -sn: Jaques -description: This is Saloma Jaques's description -facsimileTelephoneNumber: +1 818 901-4739 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 822-8909 -title: Chief Administrative Czar -userPassword: Password1 -uid: JaquesS -givenName: Saloma -mail: JaquesS@374014674548406aaa9d72c3d1ad3586.bitwarden.com -carLicense: FMJNN3 -departmentNumber: 1771 -employeeType: Normal -homePhone: +1 818 584-6656 -initials: S. J. -mobile: +1 818 447-6841 -pager: +1 818 186-4765 -roomNumber: 8569 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sebastian Kammerer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sebastian Kammerer -sn: Kammerer -description: This is Sebastian Kammerer's description -facsimileTelephoneNumber: +1 804 214-4299 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 562-2577 -title: Junior Management Pinhead -userPassword: Password1 -uid: KammereS -givenName: Sebastian -mail: KammereS@986fe4fcc1ec45dd9a8c35010d313412.bitwarden.com -carLicense: G6MOBA -departmentNumber: 9155 -employeeType: Employee -homePhone: +1 804 540-7082 -initials: S. K. -mobile: +1 804 546-9590 -pager: +1 804 213-9344 -roomNumber: 9020 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Grayce Roesler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grayce Roesler -sn: Roesler -description: This is Grayce Roesler's description -facsimileTelephoneNumber: +1 415 827-4689 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 524-7132 -title: Supreme Product Testing Sales Rep -userPassword: Password1 -uid: RoeslerG -givenName: Grayce -mail: RoeslerG@bd28f191e92142cf98b8765cb13928aa.bitwarden.com -carLicense: KXWCUL -departmentNumber: 5695 -employeeType: Contract -homePhone: +1 415 834-6758 -initials: G. R. -mobile: +1 415 920-2808 -pager: +1 415 440-1328 -roomNumber: 9876 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Helene Krowlek,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helene Krowlek -sn: Krowlek -description: This is Helene Krowlek's description -facsimileTelephoneNumber: +1 818 388-4989 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 220-1471 -title: Associate Administrative Vice President -userPassword: Password1 -uid: KrowlekH -givenName: Helene -mail: KrowlekH@04bb376282154efc832b529dc3f80793.bitwarden.com -carLicense: M63FCR -departmentNumber: 5621 -employeeType: Employee -homePhone: +1 818 298-1202 -initials: H. K. -mobile: +1 818 247-4704 -pager: +1 818 965-1375 -roomNumber: 8956 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Charman Nagy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charman Nagy -sn: Nagy -description: This is Charman Nagy's description -facsimileTelephoneNumber: +1 818 703-1916 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 804-2886 -title: Supreme Product Development Director -userPassword: Password1 -uid: NagyC -givenName: Charman -mail: NagyC@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com -carLicense: 542RHP -departmentNumber: 5115 -employeeType: Employee -homePhone: +1 818 740-5634 -initials: C. N. -mobile: +1 818 303-2725 -pager: +1 818 187-4290 -roomNumber: 8535 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jacqueline Sorathia,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacqueline Sorathia -sn: Sorathia -description: This is Jacqueline Sorathia's description -facsimileTelephoneNumber: +1 818 408-5962 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 798-5078 -title: Master Management Visionary -userPassword: Password1 -uid: SorathiJ -givenName: Jacqueline -mail: SorathiJ@33045c677af94d5d866f53c47ff9ab36.bitwarden.com -carLicense: J77H3W -departmentNumber: 3077 -employeeType: Normal -homePhone: +1 818 615-3947 -initials: J. S. -mobile: +1 818 911-7587 -pager: +1 818 151-5747 -roomNumber: 9239 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leanne Devine,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leanne Devine -sn: Devine -description: This is Leanne Devine's description -facsimileTelephoneNumber: +1 213 219-4385 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 213 657-5159 -title: Master Product Development Czar -userPassword: Password1 -uid: DevineL -givenName: Leanne -mail: DevineL@683e25fc9db544c199938de64838b325.bitwarden.com -carLicense: JBW73D -departmentNumber: 9492 -employeeType: Contract -homePhone: +1 213 568-4186 -initials: L. D. -mobile: +1 213 467-1881 -pager: +1 213 758-4308 -roomNumber: 9770 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Manon Benham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manon Benham -sn: Benham -description: This is Manon Benham's description -facsimileTelephoneNumber: +1 804 247-8902 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 462-3899 -title: Junior Product Testing Technician -userPassword: Password1 -uid: BenhamM -givenName: Manon -mail: BenhamM@15fb4ae5d92f48d1828a5523a2de1119.bitwarden.com -carLicense: HBP5XD -departmentNumber: 3493 -employeeType: Normal -homePhone: +1 804 377-4103 -initials: M. B. -mobile: +1 804 926-4117 -pager: +1 804 538-7984 -roomNumber: 8290 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Meg Lara,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meg Lara -sn: Lara -description: This is Meg Lara's description -facsimileTelephoneNumber: +1 206 765-8505 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 594-8021 -title: Supreme Human Resources Pinhead -userPassword: Password1 -uid: LaraM -givenName: Meg -mail: LaraM@0d3f6cc1cdcf4ec187af48e309baf95b.bitwarden.com -carLicense: JUKP88 -departmentNumber: 7710 -employeeType: Contract -homePhone: +1 206 752-4892 -initials: M. L. -mobile: +1 206 373-2481 -pager: +1 206 351-8716 -roomNumber: 9351 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sanae Carpool,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanae Carpool -sn: Carpool -description: This is Sanae Carpool's description -facsimileTelephoneNumber: +1 213 167-4472 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 888-1751 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: CarpoolS -givenName: Sanae -mail: CarpoolS@8d1f37d60b9647bf981f8d5200deacf7.bitwarden.com -carLicense: OHNKSM -departmentNumber: 4463 -employeeType: Normal -homePhone: +1 213 822-7873 -initials: S. C. -mobile: +1 213 809-9658 -pager: +1 213 475-7119 -roomNumber: 9554 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mia Willis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mia Willis -sn: Willis -description: This is Mia Willis's description -facsimileTelephoneNumber: +1 415 606-7263 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 227-3489 -title: Associate Product Testing Manager -userPassword: Password1 -uid: WillisM -givenName: Mia -mail: WillisM@8bea6081e631433ebecd2c41f7175d46.bitwarden.com -carLicense: 3RNBDY -departmentNumber: 9485 -employeeType: Normal -homePhone: +1 415 761-1219 -initials: M. W. -mobile: +1 415 133-8568 -pager: +1 415 257-5371 -roomNumber: 8757 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gheorghe Younan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gheorghe Younan -sn: Younan -description: This is Gheorghe Younan's description -facsimileTelephoneNumber: +1 818 881-9560 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 935-9439 -title: Junior Administrative Admin -userPassword: Password1 -uid: YounanG -givenName: Gheorghe -mail: YounanG@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com -carLicense: OIPQYV -departmentNumber: 4582 -employeeType: Contract -homePhone: +1 818 969-3468 -initials: G. Y. -mobile: +1 818 132-5016 -pager: +1 818 462-6824 -roomNumber: 9853 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Val Toth,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Val Toth -sn: Toth -description: This is Val Toth's description -facsimileTelephoneNumber: +1 818 551-5374 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 263-7299 -title: Supreme Administrative Evangelist -userPassword: Password1 -uid: TothV -givenName: Val -mail: TothV@b3dbdab84e2c48b6978c034f8aec9c11.bitwarden.com -carLicense: UCDRHW -departmentNumber: 2173 -employeeType: Normal -homePhone: +1 818 976-6834 -initials: V. T. -mobile: +1 818 843-1532 -pager: +1 818 803-1254 -roomNumber: 8982 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaynor MacDermaid -sn: MacDermaid -description: This is Gaynor MacDermaid's description -facsimileTelephoneNumber: +1 804 136-4905 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 804 697-3965 -title: Junior Product Testing Mascot -userPassword: Password1 -uid: MacDermG -givenName: Gaynor -mail: MacDermG@5d66866885fa4ba8b5860161fb0bcacc.bitwarden.com -carLicense: TFWXPT -departmentNumber: 6580 -employeeType: Employee -homePhone: +1 804 575-7001 -initials: G. M. -mobile: +1 804 195-7760 -pager: +1 804 184-7864 -roomNumber: 8148 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ishan Puukila,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ishan Puukila -sn: Puukila -description: This is Ishan Puukila's description -facsimileTelephoneNumber: +1 213 175-4390 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 320-1415 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: PuukilaI -givenName: Ishan -mail: PuukilaI@f62f35ed22de4bb392da671e518673e3.bitwarden.com -carLicense: Y05704 -departmentNumber: 3610 -employeeType: Employee -homePhone: +1 213 165-9698 -initials: I. P. -mobile: +1 213 768-6325 -pager: +1 213 804-4792 -roomNumber: 8900 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Davinder Thibert,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davinder Thibert -sn: Thibert -description: This is Davinder Thibert's description -facsimileTelephoneNumber: +1 818 656-6574 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 836-5974 -title: Chief Administrative Figurehead -userPassword: Password1 -uid: ThibertD -givenName: Davinder -mail: ThibertD@2abf92fd8c714d91bc2b9d955d40f2ff.bitwarden.com -carLicense: X9GOJP -departmentNumber: 7968 -employeeType: Contract -homePhone: +1 818 592-9405 -initials: D. T. -mobile: +1 818 594-9773 -pager: +1 818 721-5887 -roomNumber: 8659 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mounir Theoret,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mounir Theoret -sn: Theoret -description: This is Mounir Theoret's description -facsimileTelephoneNumber: +1 415 241-8767 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 105-2425 -title: Associate Payroll Engineer -userPassword: Password1 -uid: TheoretM -givenName: Mounir -mail: TheoretM@87263f2ad4e44ac39562038c9af16152.bitwarden.com -carLicense: SEUSS8 -departmentNumber: 9886 -employeeType: Contract -homePhone: +1 415 527-8158 -initials: M. T. -mobile: +1 415 270-1453 -pager: +1 415 272-2298 -roomNumber: 9965 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Air Baldwin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Air Baldwin -sn: Baldwin -description: This is Air Baldwin's description -facsimileTelephoneNumber: +1 818 674-4486 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 589-7687 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: BaldwinA -givenName: Air -mail: BaldwinA@503fe0b136ce4292a59167d529c63c6f.bitwarden.com -carLicense: IL5GA2 -departmentNumber: 4343 -employeeType: Employee -homePhone: +1 818 157-1266 -initials: A. B. -mobile: +1 818 534-3008 -pager: +1 818 811-1227 -roomNumber: 9689 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Arlyne Miao,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlyne Miao -sn: Miao -description: This is Arlyne Miao's description -facsimileTelephoneNumber: +1 804 121-2646 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 148-7706 -title: Master Human Resources Pinhead -userPassword: Password1 -uid: MiaoA -givenName: Arlyne -mail: MiaoA@14f0a617fa68422cb151ec721a7c3c6d.bitwarden.com -carLicense: 6TIG6F -departmentNumber: 3604 -employeeType: Contract -homePhone: +1 804 401-2479 -initials: A. M. -mobile: +1 804 277-2553 -pager: +1 804 467-8022 -roomNumber: 9519 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Debi Seniuk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debi Seniuk -sn: Seniuk -description: This is Debi Seniuk's description -facsimileTelephoneNumber: +1 415 486-9539 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 938-5210 -title: Master Janitorial Fellow -userPassword: Password1 -uid: SeniukD -givenName: Debi -mail: SeniukD@409ada935d6b4cf28b401fd7d4cd1227.bitwarden.com -carLicense: DQHFDQ -departmentNumber: 2747 -employeeType: Contract -homePhone: +1 415 911-5311 -initials: D. S. -mobile: +1 415 822-1154 -pager: +1 415 308-7049 -roomNumber: 8996 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pas Maksuta,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pas Maksuta -sn: Maksuta -description: This is Pas Maksuta's description -facsimileTelephoneNumber: +1 408 792-9883 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 430-1205 -title: Chief Product Development Developer -userPassword: Password1 -uid: MaksutaP -givenName: Pas -mail: MaksutaP@c4687fc25321403c8c563bd392c6eebd.bitwarden.com -carLicense: LIBJFK -departmentNumber: 1938 -employeeType: Employee -homePhone: +1 408 669-2552 -initials: P. M. -mobile: +1 408 826-8425 -pager: +1 408 958-6604 -roomNumber: 9955 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Camellia Tencer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camellia Tencer -sn: Tencer -description: This is Camellia Tencer's description -facsimileTelephoneNumber: +1 415 485-3967 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 114-5959 -title: Master Peons Technician -userPassword: Password1 -uid: TencerC -givenName: Camellia -mail: TencerC@9166d82b2507407f821e6bc43e6ad329.bitwarden.com -carLicense: 3J5S5A -departmentNumber: 4227 -employeeType: Contract -homePhone: +1 415 470-9892 -initials: C. T. -mobile: +1 415 319-5904 -pager: +1 415 498-4818 -roomNumber: 9421 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=HinWai Menaker,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HinWai Menaker -sn: Menaker -description: This is HinWai Menaker's description -facsimileTelephoneNumber: +1 804 945-9302 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 254-8061 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: MenakerH -givenName: HinWai -mail: MenakerH@c44d8fdf489549e795a051d84cc2a931.bitwarden.com -carLicense: 9JJY0U -departmentNumber: 9704 -employeeType: Normal -homePhone: +1 804 985-3593 -initials: H. M. -mobile: +1 804 697-2548 -pager: +1 804 617-9831 -roomNumber: 9240 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalindi Dickerson -sn: Dickerson -description: This is Kalindi Dickerson's description -facsimileTelephoneNumber: +1 408 894-2861 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 429-9436 -title: Associate Payroll Sales Rep -userPassword: Password1 -uid: DickersK -givenName: Kalindi -mail: DickersK@49f8e0161dfd444bb97c350a4d451c6e.bitwarden.com -carLicense: PCPGT3 -departmentNumber: 2747 -employeeType: Contract -homePhone: +1 408 948-7631 -initials: K. D. -mobile: +1 408 189-5453 -pager: +1 408 413-5974 -roomNumber: 9367 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marilynn Wimbush -sn: Wimbush -description: This is Marilynn Wimbush's description -facsimileTelephoneNumber: +1 818 379-7103 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 818 569-6138 -title: Associate Administrative Pinhead -userPassword: Password1 -uid: WimbushM -givenName: Marilynn -mail: WimbushM@52a17214cb1d4651a3e9bb6b3656b1d2.bitwarden.com -carLicense: V7AS9A -departmentNumber: 1204 -employeeType: Contract -homePhone: +1 818 534-4749 -initials: M. W. -mobile: +1 818 392-8862 -pager: +1 818 541-9944 -roomNumber: 9226 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lenore Inrig,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenore Inrig -sn: Inrig -description: This is Lenore Inrig's description -facsimileTelephoneNumber: +1 213 649-9345 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 334-5912 -title: Chief Payroll Punk -userPassword: Password1 -uid: InrigL -givenName: Lenore -mail: InrigL@9d05795ed464449781ae591bd196a1b7.bitwarden.com -carLicense: TNRB86 -departmentNumber: 3620 -employeeType: Normal -homePhone: +1 213 964-3598 -initials: L. I. -mobile: +1 213 656-4882 -pager: +1 213 113-1104 -roomNumber: 8053 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monroe Turbyfill -sn: Turbyfill -description: This is Monroe Turbyfill's description -facsimileTelephoneNumber: +1 818 700-5418 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 442-2962 -title: Supreme Payroll Vice President -userPassword: Password1 -uid: TurbyfiM -givenName: Monroe -mail: TurbyfiM@3b405672834f4c2186242e2cccd0abf2.bitwarden.com -carLicense: AN4FB4 -departmentNumber: 8000 -employeeType: Employee -homePhone: +1 818 627-8438 -initials: M. T. -mobile: +1 818 267-8229 -pager: +1 818 637-7830 -roomNumber: 8396 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sibeal Manner,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibeal Manner -sn: Manner -description: This is Sibeal Manner's description -facsimileTelephoneNumber: +1 804 455-9540 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 340-5077 -title: Master Management Warrior -userPassword: Password1 -uid: MannerS -givenName: Sibeal -mail: MannerS@aea15e7df8c442459769e06303aa4e66.bitwarden.com -carLicense: KDPRV4 -departmentNumber: 4135 -employeeType: Employee -homePhone: +1 804 384-8922 -initials: S. M. -mobile: +1 804 896-4682 -pager: +1 804 679-1279 -roomNumber: 9038 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vo Filpus,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vo Filpus -sn: Filpus -description: This is Vo Filpus's description -facsimileTelephoneNumber: +1 415 666-3532 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 867-9416 -title: Associate Management Artist -userPassword: Password1 -uid: FilpusV -givenName: Vo -mail: FilpusV@05f7379ac7b945a2a2343b19ee63fd8a.bitwarden.com -carLicense: AM9DWS -departmentNumber: 7781 -employeeType: Employee -homePhone: +1 415 771-3355 -initials: V. F. -mobile: +1 415 483-6371 -pager: +1 415 431-9681 -roomNumber: 9915 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Martine Captives,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martine Captives -sn: Captives -description: This is Martine Captives's description -facsimileTelephoneNumber: +1 510 600-1477 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 907-7533 -title: Master Payroll Consultant -userPassword: Password1 -uid: CaptiveM -givenName: Martine -mail: CaptiveM@6e37f106489b4294bc905b93ac1e126f.bitwarden.com -carLicense: F88G35 -departmentNumber: 1774 -employeeType: Normal -homePhone: +1 510 272-9970 -initials: M. C. -mobile: +1 510 352-4992 -pager: +1 510 416-8523 -roomNumber: 8668 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franka Jakabffy -sn: Jakabffy -description: This is Franka Jakabffy's description -facsimileTelephoneNumber: +1 206 794-6937 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 767-2443 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: JakabffF -givenName: Franka -mail: JakabffF@9a62cb6fe77549efbb6b065fb22448c5.bitwarden.com -carLicense: QKBHWV -departmentNumber: 5900 -employeeType: Normal -homePhone: +1 206 994-1166 -initials: F. J. -mobile: +1 206 686-5732 -pager: +1 206 741-6430 -roomNumber: 8976 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Wileen Elgar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wileen Elgar -sn: Elgar -description: This is Wileen Elgar's description -facsimileTelephoneNumber: +1 206 447-6162 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 206 239-3548 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: ElgarW -givenName: Wileen -mail: ElgarW@369d31e12885450e8a3e646342f4bbde.bitwarden.com -carLicense: TNH95E -departmentNumber: 4208 -employeeType: Contract -homePhone: +1 206 940-9714 -initials: W. E. -mobile: +1 206 238-2132 -pager: +1 206 649-2021 -roomNumber: 8171 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Basheer Illidge,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Basheer Illidge -sn: Illidge -description: This is Basheer Illidge's description -facsimileTelephoneNumber: +1 213 715-6288 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 171-8203 -title: Master Management Director -userPassword: Password1 -uid: IllidgeB -givenName: Basheer -mail: IllidgeB@f9e13296819e4d139b7b490c05eac7c4.bitwarden.com -carLicense: 27G0QL -departmentNumber: 1512 -employeeType: Contract -homePhone: +1 213 666-2691 -initials: B. I. -mobile: +1 213 612-8300 -pager: +1 213 206-1536 -roomNumber: 9413 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jodine Swartz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jodine Swartz -sn: Swartz -description: This is Jodine Swartz's description -facsimileTelephoneNumber: +1 818 771-5695 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 247-7648 -title: Supreme Product Testing Technician -userPassword: Password1 -uid: SwartzJ -givenName: Jodine -mail: SwartzJ@07f011cc742c4813b7b97485646c3ab6.bitwarden.com -carLicense: 22QL7H -departmentNumber: 4161 -employeeType: Contract -homePhone: +1 818 214-5569 -initials: J. S. -mobile: +1 818 650-7297 -pager: +1 818 449-5173 -roomNumber: 8805 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnnie Dhar -sn: Dhar -description: This is Johnnie Dhar's description -facsimileTelephoneNumber: +1 206 749-3466 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 718-9428 -title: Supreme Janitorial Sales Rep -userPassword: Password1 -uid: DharJ -givenName: Johnnie -mail: DharJ@0a9a71507ed94ca2ba9642f4919766e3.bitwarden.com -carLicense: RYTUQM -departmentNumber: 2832 -employeeType: Contract -homePhone: +1 206 921-2163 -initials: J. D. -mobile: +1 206 588-4769 -pager: +1 206 426-1039 -roomNumber: 8683 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Barbette VanHaste,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbette VanHaste -sn: VanHaste -description: This is Barbette VanHaste's description -facsimileTelephoneNumber: +1 510 972-2494 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 474-6655 -title: Junior Payroll Architect -userPassword: Password1 -uid: VanHastB -givenName: Barbette -mail: VanHastB@60bd4b43f6e248668a53825c3bbcbca3.bitwarden.com -carLicense: TJYUVU -departmentNumber: 1873 -employeeType: Employee -homePhone: +1 510 656-5737 -initials: B. V. -mobile: +1 510 550-2799 -pager: +1 510 153-3939 -roomNumber: 9348 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Envoy Dignam,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Envoy Dignam -sn: Dignam -description: This is Envoy Dignam's description -facsimileTelephoneNumber: +1 408 689-1332 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 911-4477 -title: Chief Product Development Artist -userPassword: Password1 -uid: DignamE -givenName: Envoy -mail: DignamE@6ba8baad97224f009bad99f9ff3a1b6b.bitwarden.com -carLicense: YW2QMG -departmentNumber: 5291 -employeeType: Contract -homePhone: +1 408 295-2595 -initials: E. D. -mobile: +1 408 891-3257 -pager: +1 408 674-1911 -roomNumber: 9513 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agretha Whitehurst -sn: Whitehurst -description: This is Agretha Whitehurst's description -facsimileTelephoneNumber: +1 510 387-8257 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 510 500-7132 -title: Master Product Testing President -userPassword: Password1 -uid: WhitehuA -givenName: Agretha -mail: WhitehuA@7cefaa55a36f4be4acff376f7ddd1a67.bitwarden.com -carLicense: BA6JWK -departmentNumber: 5626 -employeeType: Employee -homePhone: +1 510 298-9874 -initials: A. W. -mobile: +1 510 381-4153 -pager: +1 510 352-8905 -roomNumber: 8930 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ghassan Visser,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ghassan Visser -sn: Visser -description: This is Ghassan Visser's description -facsimileTelephoneNumber: +1 818 177-3259 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 695-7298 -title: Master Product Development Visionary -userPassword: Password1 -uid: VisserG -givenName: Ghassan -mail: VisserG@87c78a2aa2ad454eb9d547c989c59937.bitwarden.com -carLicense: U360AK -departmentNumber: 2646 -employeeType: Contract -homePhone: +1 818 507-7043 -initials: G. V. -mobile: +1 818 744-9530 -pager: +1 818 687-8193 -roomNumber: 8890 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bryna Grandy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryna Grandy -sn: Grandy -description: This is Bryna Grandy's description -facsimileTelephoneNumber: +1 510 627-4416 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 324-6847 -title: Junior Product Testing Artist -userPassword: Password1 -uid: GrandyB -givenName: Bryna -mail: GrandyB@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com -carLicense: K0V74E -departmentNumber: 8900 -employeeType: Contract -homePhone: +1 510 875-4163 -initials: B. G. -mobile: +1 510 967-4011 -pager: +1 510 386-9954 -roomNumber: 9595 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathryne Rockley -sn: Rockley -description: This is Kathryne Rockley's description -facsimileTelephoneNumber: +1 213 923-7587 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 385-8994 -title: Associate Janitorial Assistant -userPassword: Password1 -uid: RockleyK -givenName: Kathryne -mail: RockleyK@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com -carLicense: E0RT5D -departmentNumber: 3233 -employeeType: Contract -homePhone: +1 213 446-4331 -initials: K. R. -mobile: +1 213 924-2927 -pager: +1 213 308-5979 -roomNumber: 9126 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nonna Calkins,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nonna Calkins -sn: Calkins -description: This is Nonna Calkins's description -facsimileTelephoneNumber: +1 818 309-6266 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 996-3507 -title: Supreme Product Development Pinhead -userPassword: Password1 -uid: CalkinsN -givenName: Nonna -mail: CalkinsN@ca68c16297b44efe9bd231fcf1f835a9.bitwarden.com -carLicense: 8RR3HV -departmentNumber: 7428 -employeeType: Normal -homePhone: +1 818 608-3676 -initials: N. C. -mobile: +1 818 535-2577 -pager: +1 818 563-6771 -roomNumber: 8034 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tchangid Cosner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tchangid Cosner -sn: Cosner -description: This is Tchangid Cosner's description -facsimileTelephoneNumber: +1 213 371-7349 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 185-4590 -title: Master Peons Evangelist -userPassword: Password1 -uid: CosnerT -givenName: Tchangid -mail: CosnerT@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com -carLicense: BPWSDX -departmentNumber: 1777 -employeeType: Normal -homePhone: +1 213 944-1075 -initials: T. C. -mobile: +1 213 681-1065 -pager: +1 213 824-8061 -roomNumber: 8794 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Happy Armstead,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Happy Armstead -sn: Armstead -description: This is Happy Armstead's description -facsimileTelephoneNumber: +1 818 454-6031 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 542-7136 -title: Master Human Resources Technician -userPassword: Password1 -uid: ArmsteaH -givenName: Happy -mail: ArmsteaH@0ed116231128466cad659b85d73b9c7b.bitwarden.com -carLicense: DOR72J -departmentNumber: 9475 -employeeType: Contract -homePhone: +1 818 967-6056 -initials: H. A. -mobile: +1 818 715-2779 -pager: +1 818 377-6262 -roomNumber: 8688 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Siva Trader,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siva Trader -sn: Trader -description: This is Siva Trader's description -facsimileTelephoneNumber: +1 415 716-1243 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 218-2353 -title: Chief Management Writer -userPassword: Password1 -uid: TraderS -givenName: Siva -mail: TraderS@b838776a11e74718955f6601c7f8d1e7.bitwarden.com -carLicense: LN0LDK -departmentNumber: 6146 -employeeType: Normal -homePhone: +1 415 530-4366 -initials: S. T. -mobile: +1 415 740-8572 -pager: +1 415 271-7421 -roomNumber: 8588 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dredi Maragoudakis -sn: Maragoudakis -description: This is Dredi Maragoudakis's description -facsimileTelephoneNumber: +1 804 690-6031 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 703-3905 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: MaragouD -givenName: Dredi -mail: MaragouD@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com -carLicense: 3U3M0A -departmentNumber: 6277 -employeeType: Contract -homePhone: +1 804 781-3114 -initials: D. M. -mobile: +1 804 790-5725 -pager: +1 804 219-4108 -roomNumber: 8160 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Norton Hlady,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norton Hlady -sn: Hlady -description: This is Norton Hlady's description -facsimileTelephoneNumber: +1 408 664-7935 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 685-9909 -title: Supreme Management Consultant -userPassword: Password1 -uid: HladyN -givenName: Norton -mail: HladyN@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com -carLicense: WHX8UC -departmentNumber: 6689 -employeeType: Employee -homePhone: +1 408 862-2826 -initials: N. H. -mobile: +1 408 231-8913 -pager: +1 408 941-1834 -roomNumber: 9605 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Benita Brivet,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benita Brivet -sn: Brivet -description: This is Benita Brivet's description -facsimileTelephoneNumber: +1 804 383-2423 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 116-9850 -title: Junior Human Resources Developer -userPassword: Password1 -uid: BrivetB -givenName: Benita -mail: BrivetB@e37545ccfd5e4e4281ccd855336fcf03.bitwarden.com -carLicense: HGT5T1 -departmentNumber: 4994 -employeeType: Normal -homePhone: +1 804 704-7842 -initials: B. B. -mobile: +1 804 912-9798 -pager: +1 804 127-7000 -roomNumber: 9351 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ulrike Ta,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ulrike Ta -sn: Ta -description: This is Ulrike Ta's description -facsimileTelephoneNumber: +1 408 249-6063 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 408 235-6393 -title: Master Peons Evangelist -userPassword: Password1 -uid: TaU -givenName: Ulrike -mail: TaU@e92792a71a1b4fd28678d03900079ed2.bitwarden.com -carLicense: WM519F -departmentNumber: 6501 -employeeType: Normal -homePhone: +1 408 450-8646 -initials: U. T. -mobile: +1 408 327-2061 -pager: +1 408 414-8802 -roomNumber: 9851 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilda Rainsforth -sn: Rainsforth -description: This is Gilda Rainsforth's description -facsimileTelephoneNumber: +1 510 563-2209 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 306-6647 -title: Junior Administrative Sales Rep -userPassword: Password1 -uid: RainsfoG -givenName: Gilda -mail: RainsfoG@412210ae069c4a339c017fbe0c820674.bitwarden.com -carLicense: KGUWUW -departmentNumber: 9308 -employeeType: Normal -homePhone: +1 510 416-6114 -initials: G. R. -mobile: +1 510 109-1012 -pager: +1 510 169-8969 -roomNumber: 9242 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perle Vandenberg -sn: Vandenberg -description: This is Perle Vandenberg's description -facsimileTelephoneNumber: +1 510 191-7392 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 510 377-6114 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: VandenbP -givenName: Perle -mail: VandenbP@52c9d88a3dde448a9626a726bccbd686.bitwarden.com -carLicense: XFR776 -departmentNumber: 4438 -employeeType: Employee -homePhone: +1 510 711-6916 -initials: P. V. -mobile: +1 510 223-2708 -pager: +1 510 655-5538 -roomNumber: 8702 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jimmy Ramey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jimmy Ramey -sn: Ramey -description: This is Jimmy Ramey's description -facsimileTelephoneNumber: +1 818 938-5609 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 365-7801 -title: Supreme Management Consultant -userPassword: Password1 -uid: RameyJ -givenName: Jimmy -mail: RameyJ@98f223020f174b0b8eb03e442bd857ef.bitwarden.com -carLicense: P6UGDK -departmentNumber: 2822 -employeeType: Normal -homePhone: +1 818 836-4631 -initials: J. R. -mobile: +1 818 196-9385 -pager: +1 818 706-6719 -roomNumber: 8753 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Romano Teacher,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Romano Teacher -sn: Teacher -description: This is Romano Teacher's description -facsimileTelephoneNumber: +1 213 176-1535 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 424-7237 -title: Chief Administrative Architect -userPassword: Password1 -uid: TeacherR -givenName: Romano -mail: TeacherR@6a7ccf71870148fe8f9ac4d527b4d501.bitwarden.com -carLicense: 8NA3X4 -departmentNumber: 2805 -employeeType: Contract -homePhone: +1 213 931-9372 -initials: R. T. -mobile: +1 213 107-4468 -pager: +1 213 963-2567 -roomNumber: 9311 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Poppy Ong,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Poppy Ong -sn: Ong -description: This is Poppy Ong's description -facsimileTelephoneNumber: +1 213 959-5658 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 661-9482 -title: Junior Payroll Figurehead -userPassword: Password1 -uid: OngP -givenName: Poppy -mail: OngP@7f04a3ff8bcd4af8bad4e2a152862067.bitwarden.com -carLicense: V8SAMR -departmentNumber: 4509 -employeeType: Employee -homePhone: +1 213 725-2748 -initials: P. O. -mobile: +1 213 619-3354 -pager: +1 213 894-6994 -roomNumber: 8894 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maudie Sadorra -sn: Sadorra -description: This is Maudie Sadorra's description -facsimileTelephoneNumber: +1 415 239-7430 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 415 242-8720 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: SadorraM -givenName: Maudie -mail: SadorraM@9a316795d99d40a2b8152947d5d04a37.bitwarden.com -carLicense: 2V4V95 -departmentNumber: 7053 -employeeType: Employee -homePhone: +1 415 566-6689 -initials: M. S. -mobile: +1 415 561-6276 -pager: +1 415 636-8121 -roomNumber: 9344 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ynes Witzmann -sn: Witzmann -description: This is Ynes Witzmann's description -facsimileTelephoneNumber: +1 213 432-5043 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 737-2189 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: WitzmanY -givenName: Ynes -mail: WitzmanY@5b79fe30a5de465185a631630aa2a024.bitwarden.com -carLicense: 90TTVS -departmentNumber: 4994 -employeeType: Normal -homePhone: +1 213 463-8411 -initials: Y. W. -mobile: +1 213 309-5647 -pager: +1 213 157-9074 -roomNumber: 8214 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Takako Cambre,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Takako Cambre -sn: Cambre -description: This is Takako Cambre's description -facsimileTelephoneNumber: +1 818 574-5009 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 818 935-4996 -title: Associate Product Development President -userPassword: Password1 -uid: CambreT -givenName: Takako -mail: CambreT@4cf289446e164bf8828133d117ff1a2f.bitwarden.com -carLicense: J4C716 -departmentNumber: 3680 -employeeType: Contract -homePhone: +1 818 670-6794 -initials: T. C. -mobile: +1 818 506-4611 -pager: +1 818 728-9188 -roomNumber: 8901 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eachelle Etu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eachelle Etu -sn: Etu -description: This is Eachelle Etu's description -facsimileTelephoneNumber: +1 206 108-7730 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 539-4330 -title: Master Administrative Pinhead -userPassword: Password1 -uid: EtuE -givenName: Eachelle -mail: EtuE@53c3e76f124f49beb679b871a3ea5611.bitwarden.com -carLicense: TPLIN7 -departmentNumber: 8695 -employeeType: Normal -homePhone: +1 206 544-4318 -initials: E. E. -mobile: +1 206 201-9461 -pager: +1 206 212-2139 -roomNumber: 8190 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Merlina Eimer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merlina Eimer -sn: Eimer -description: This is Merlina Eimer's description -facsimileTelephoneNumber: +1 415 220-5466 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 884-6637 -title: Chief Peons Visionary -userPassword: Password1 -uid: EimerM -givenName: Merlina -mail: EimerM@d0eb59d9416b478ea7e9e6add086d998.bitwarden.com -carLicense: XMUOU9 -departmentNumber: 7654 -employeeType: Normal -homePhone: +1 415 579-8248 -initials: M. E. -mobile: +1 415 256-1732 -pager: +1 415 494-5519 -roomNumber: 8895 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Riyaz McNicol -sn: McNicol -description: This is Riyaz McNicol's description -facsimileTelephoneNumber: +1 408 327-5991 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 318-1253 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: McNicolR -givenName: Riyaz -mail: McNicolR@468705ba5f434f3295170aa6ba4375b9.bitwarden.com -carLicense: Y87JEP -departmentNumber: 3795 -employeeType: Contract -homePhone: +1 408 250-8575 -initials: R. M. -mobile: +1 408 488-9664 -pager: +1 408 550-8750 -roomNumber: 8802 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Imelda Ornburn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imelda Ornburn -sn: Ornburn -description: This is Imelda Ornburn's description -facsimileTelephoneNumber: +1 818 988-5763 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 740-1255 -title: Supreme Management Czar -userPassword: Password1 -uid: OrnburnI -givenName: Imelda -mail: OrnburnI@4aebcb98356f4866a9dbef1e58338e49.bitwarden.com -carLicense: 10LMQC -departmentNumber: 4301 -employeeType: Normal -homePhone: +1 818 605-8551 -initials: I. O. -mobile: +1 818 252-4569 -pager: +1 818 894-6893 -roomNumber: 9354 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deryck Bhatt -sn: Bhatt -description: This is Deryck Bhatt's description -facsimileTelephoneNumber: +1 408 752-8362 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 408 543-2422 -title: Supreme Janitorial Dictator -userPassword: Password1 -uid: BhattD -givenName: Deryck -mail: BhattD@37f0f82dfcd246b8ad39145ec76d2b17.bitwarden.com -carLicense: 8KNDIH -departmentNumber: 4207 -employeeType: Contract -homePhone: +1 408 755-6635 -initials: D. B. -mobile: +1 408 288-4676 -pager: +1 408 722-4829 -roomNumber: 8359 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doroteya Boatwright -sn: Boatwright -description: This is Doroteya Boatwright's description -facsimileTelephoneNumber: +1 213 625-6112 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 585-5018 -title: Junior Janitorial Developer -userPassword: Password1 -uid: BoatwriD -givenName: Doroteya -mail: BoatwriD@32d242671ec341929f315049a0e40a31.bitwarden.com -carLicense: HXQO67 -departmentNumber: 5570 -employeeType: Employee -homePhone: +1 213 338-1335 -initials: D. B. -mobile: +1 213 773-1574 -pager: +1 213 963-2679 -roomNumber: 9798 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elex Syal,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elex Syal -sn: Syal -description: This is Elex Syal's description -facsimileTelephoneNumber: +1 213 762-8402 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 213 868-3552 -title: Supreme Payroll Punk -userPassword: Password1 -uid: SyalE -givenName: Elex -mail: SyalE@c4aa09c164484f0594345b382eb1b6dd.bitwarden.com -carLicense: JRVEQG -departmentNumber: 9568 -employeeType: Contract -homePhone: +1 213 107-3795 -initials: E. S. -mobile: +1 213 942-7268 -pager: +1 213 781-2628 -roomNumber: 9158 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vern Rantala,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vern Rantala -sn: Rantala -description: This is Vern Rantala's description -facsimileTelephoneNumber: +1 415 571-5152 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 852-1123 -title: Associate Administrative Figurehead -userPassword: Password1 -uid: RantalaV -givenName: Vern -mail: RantalaV@8ec725a0b25640da9e4f5b4c8838762a.bitwarden.com -carLicense: FAYJCS -departmentNumber: 2117 -employeeType: Normal -homePhone: +1 415 665-8157 -initials: V. R. -mobile: +1 415 718-9286 -pager: +1 415 696-5834 -roomNumber: 8453 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dacy Rodriguez -sn: Rodriguez -description: This is Dacy Rodriguez's description -facsimileTelephoneNumber: +1 408 869-5984 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 165-9139 -title: Chief Administrative Warrior -userPassword: Password1 -uid: RodriguD -givenName: Dacy -mail: RodriguD@5414557178404b8b850ea72aa60255e2.bitwarden.com -carLicense: E8SYRB -departmentNumber: 7952 -employeeType: Employee -homePhone: +1 408 290-3154 -initials: D. R. -mobile: +1 408 872-2047 -pager: +1 408 774-4091 -roomNumber: 8316 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sarina Handley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarina Handley -sn: Handley -description: This is Sarina Handley's description -facsimileTelephoneNumber: +1 213 536-6778 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 142-1213 -title: Associate Peons Punk -userPassword: Password1 -uid: HandleyS -givenName: Sarina -mail: HandleyS@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com -carLicense: WIBSHL -departmentNumber: 4905 -employeeType: Employee -homePhone: +1 213 522-7841 -initials: S. H. -mobile: +1 213 499-8683 -pager: +1 213 141-1829 -roomNumber: 8313 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Edward Meldrum,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edward Meldrum -sn: Meldrum -description: This is Edward Meldrum's description -facsimileTelephoneNumber: +1 415 565-2006 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 971-8274 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: MeldrumE -givenName: Edward -mail: MeldrumE@42f6c709ced54560a282482057eafc53.bitwarden.com -carLicense: E7NOBG -departmentNumber: 9480 -employeeType: Normal -homePhone: +1 415 949-4852 -initials: E. M. -mobile: +1 415 837-4514 -pager: +1 415 523-6880 -roomNumber: 8138 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Margaretta Hord,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margaretta Hord -sn: Hord -description: This is Margaretta Hord's description -facsimileTelephoneNumber: +1 510 254-4965 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 820-9915 -title: Supreme Payroll Dictator -userPassword: Password1 -uid: HordM -givenName: Margaretta -mail: HordM@310fefd008494b9e8a0a81aff3327a1b.bitwarden.com -carLicense: 3V4GO1 -departmentNumber: 5203 -employeeType: Employee -homePhone: +1 510 820-7232 -initials: M. H. -mobile: +1 510 561-1509 -pager: +1 510 683-3207 -roomNumber: 9936 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xiaofeng Chaplin -sn: Chaplin -description: This is Xiaofeng Chaplin's description -facsimileTelephoneNumber: +1 804 310-1065 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 575-2935 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: ChaplinX -givenName: Xiaofeng -mail: ChaplinX@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com -carLicense: 6UN4TK -departmentNumber: 4449 -employeeType: Employee -homePhone: +1 804 829-6298 -initials: X. C. -mobile: +1 804 479-8641 -pager: +1 804 989-2482 -roomNumber: 9285 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Calley Hvezda,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calley Hvezda -sn: Hvezda -description: This is Calley Hvezda's description -facsimileTelephoneNumber: +1 510 556-4617 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 987-1805 -title: Master Administrative Evangelist -userPassword: Password1 -uid: HvezdaC -givenName: Calley -mail: HvezdaC@07d1afa381e34835a071c5951db2f646.bitwarden.com -carLicense: JBX9XA -departmentNumber: 5784 -employeeType: Employee -homePhone: +1 510 871-9826 -initials: C. H. -mobile: +1 510 758-6196 -pager: +1 510 710-8082 -roomNumber: 8267 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rodina Sumi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rodina Sumi -sn: Sumi -description: This is Rodina Sumi's description -facsimileTelephoneNumber: +1 804 217-2599 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 804 925-9264 -title: Master Payroll Manager -userPassword: Password1 -uid: SumiR -givenName: Rodina -mail: SumiR@54481fd28e0b44a9b20652a08b2dc61e.bitwarden.com -carLicense: 8T1LYA -departmentNumber: 4017 -employeeType: Employee -homePhone: +1 804 703-2194 -initials: R. S. -mobile: +1 804 198-5161 -pager: +1 804 149-9157 -roomNumber: 8758 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jessa Harlan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessa Harlan -sn: Harlan -description: This is Jessa Harlan's description -facsimileTelephoneNumber: +1 206 604-4926 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 283-8079 -title: Junior Payroll Artist -userPassword: Password1 -uid: HarlanJ -givenName: Jessa -mail: HarlanJ@993e0c502fc14bcbb5cab23104ffdc41.bitwarden.com -carLicense: 6E2KQ4 -departmentNumber: 9807 -employeeType: Employee -homePhone: +1 206 292-8998 -initials: J. H. -mobile: +1 206 168-5005 -pager: +1 206 617-9867 -roomNumber: 8569 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Curt Tadge,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Curt Tadge -sn: Tadge -description: This is Curt Tadge's description -facsimileTelephoneNumber: +1 804 181-1083 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 399-2851 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: TadgeC -givenName: Curt -mail: TadgeC@1461dbc17b9c4f428daab775690e9506.bitwarden.com -carLicense: 7HSVC9 -departmentNumber: 3555 -employeeType: Contract -homePhone: +1 804 304-1608 -initials: C. T. -mobile: +1 804 247-9421 -pager: +1 804 756-1529 -roomNumber: 8610 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bertrand Spearpoint,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bertrand Spearpoint -sn: Spearpoint -description: This is Bertrand Spearpoint's description -facsimileTelephoneNumber: +1 206 890-9226 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 761-8775 -title: Master Management Evangelist -userPassword: Password1 -uid: SpearpoB -givenName: Bertrand -mail: SpearpoB@fdcc23b3e21f4f0fa3bffbc78ce6d7d0.bitwarden.com -carLicense: 4MECF3 -departmentNumber: 4212 -employeeType: Contract -homePhone: +1 206 801-4111 -initials: B. S. -mobile: +1 206 934-7679 -pager: +1 206 866-2513 -roomNumber: 8031 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roshelle Gaskins -sn: Gaskins -description: This is Roshelle Gaskins's description -facsimileTelephoneNumber: +1 510 437-2012 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 967-3706 -title: Master Janitorial Consultant -userPassword: Password1 -uid: GaskinsR -givenName: Roshelle -mail: GaskinsR@debbccc9cd9041e58d59a87945bc2243.bitwarden.com -carLicense: R6JNGI -departmentNumber: 2226 -employeeType: Normal -homePhone: +1 510 553-4873 -initials: R. G. -mobile: +1 510 340-5804 -pager: +1 510 671-2075 -roomNumber: 8753 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Annabel Cadtools,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annabel Cadtools -sn: Cadtools -description: This is Annabel Cadtools's description -facsimileTelephoneNumber: +1 415 851-1997 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 936-3468 -title: Junior Administrative Warrior -userPassword: Password1 -uid: CadtoolA -givenName: Annabel -mail: CadtoolA@900720d62ed64510a7a9059255eb24bd.bitwarden.com -carLicense: MDYPSW -departmentNumber: 8698 -employeeType: Contract -homePhone: +1 415 390-5468 -initials: A. C. -mobile: +1 415 282-2633 -pager: +1 415 448-5676 -roomNumber: 9450 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathleen Osiakwan -sn: Osiakwan -description: This is Cathleen Osiakwan's description -facsimileTelephoneNumber: +1 510 793-6134 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 853-2511 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: OsiakwaC -givenName: Cathleen -mail: OsiakwaC@7b1ae059f10c4c999e0f2bc4fd98859f.bitwarden.com -carLicense: 3V83T2 -departmentNumber: 7481 -employeeType: Contract -homePhone: +1 510 804-9571 -initials: C. O. -mobile: +1 510 931-4195 -pager: +1 510 647-9599 -roomNumber: 9437 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hanny Wayler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanny Wayler -sn: Wayler -description: This is Hanny Wayler's description -facsimileTelephoneNumber: +1 206 329-9356 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 593-4887 -title: Chief Product Testing Developer -userPassword: Password1 -uid: WaylerH -givenName: Hanny -mail: WaylerH@a5a34b68dfa14ad7bc7271c070601714.bitwarden.com -carLicense: 0CPN9D -departmentNumber: 9347 -employeeType: Employee -homePhone: +1 206 429-1239 -initials: H. W. -mobile: +1 206 248-7830 -pager: +1 206 977-6915 -roomNumber: 8245 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Devi Cobran,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devi Cobran -sn: Cobran -description: This is Devi Cobran's description -facsimileTelephoneNumber: +1 408 819-7838 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 853-7678 -title: Junior Peons Mascot -userPassword: Password1 -uid: CobranD -givenName: Devi -mail: CobranD@88c26c98102f460daa0c9c7911079e0e.bitwarden.com -carLicense: 5K7H80 -departmentNumber: 8880 -employeeType: Employee -homePhone: +1 408 159-2432 -initials: D. C. -mobile: +1 408 970-6956 -pager: +1 408 150-5557 -roomNumber: 9884 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tian Sydnor,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tian Sydnor -sn: Sydnor -description: This is Tian Sydnor's description -facsimileTelephoneNumber: +1 818 824-4827 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 500-8065 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: SydnorT -givenName: Tian -mail: SydnorT@35d9476cb8424bdab8902ee7a92df819.bitwarden.com -carLicense: EXQ96D -departmentNumber: 4577 -employeeType: Employee -homePhone: +1 818 416-7153 -initials: T. S. -mobile: +1 818 581-4758 -pager: +1 818 697-2124 -roomNumber: 9065 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Remi Ladd,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Remi Ladd -sn: Ladd -description: This is Remi Ladd's description -facsimileTelephoneNumber: +1 213 942-4296 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 663-1736 -title: Junior Product Development Stooge -userPassword: Password1 -uid: LaddR -givenName: Remi -mail: LaddR@15697ed59de04051be420308b9e31bf0.bitwarden.com -carLicense: 6HWKD2 -departmentNumber: 7484 -employeeType: Contract -homePhone: +1 213 604-3701 -initials: R. L. -mobile: +1 213 404-9975 -pager: +1 213 321-4709 -roomNumber: 9857 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Miles Bannan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miles Bannan -sn: Bannan -description: This is Miles Bannan's description -facsimileTelephoneNumber: +1 415 208-5028 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 261-1415 -title: Junior Product Development Dictator -userPassword: Password1 -uid: BannanM -givenName: Miles -mail: BannanM@0b664dacb51949f5b5b39c9e47c7f6dc.bitwarden.com -carLicense: J6JXL2 -departmentNumber: 5101 -employeeType: Employee -homePhone: +1 415 395-5205 -initials: M. B. -mobile: +1 415 236-7887 -pager: +1 415 421-1357 -roomNumber: 9667 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Annnora Burchby,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annnora Burchby -sn: Burchby -description: This is Annnora Burchby's description -facsimileTelephoneNumber: +1 206 360-4561 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 256-4215 -title: Master Management Assistant -userPassword: Password1 -uid: BurchbyA -givenName: Annnora -mail: BurchbyA@8df37ece50134935a25e518004ace140.bitwarden.com -carLicense: OIPGW5 -departmentNumber: 2898 -employeeType: Normal -homePhone: +1 206 128-6557 -initials: A. B. -mobile: +1 206 978-3377 -pager: +1 206 974-1556 -roomNumber: 9287 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mariet Finzel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariet Finzel -sn: Finzel -description: This is Mariet Finzel's description -facsimileTelephoneNumber: +1 510 460-7490 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 862-8002 -title: Supreme Human Resources Manager -userPassword: Password1 -uid: FinzelM -givenName: Mariet -mail: FinzelM@273dfd92cd9f45d0aa9350f559239559.bitwarden.com -carLicense: LEVK32 -departmentNumber: 1362 -employeeType: Employee -homePhone: +1 510 222-5892 -initials: M. F. -mobile: +1 510 494-9937 -pager: +1 510 689-9095 -roomNumber: 9187 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MingChang Boddeveld -sn: Boddeveld -description: This is MingChang Boddeveld's description -facsimileTelephoneNumber: +1 804 887-1238 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 387-1391 -title: Master Payroll Vice President -userPassword: Password1 -uid: BoddeveM -givenName: MingChang -mail: BoddeveM@77e93027bf924f589b18be848df73155.bitwarden.com -carLicense: O154OG -departmentNumber: 2856 -employeeType: Employee -homePhone: +1 804 568-2357 -initials: M. B. -mobile: +1 804 371-5088 -pager: +1 804 748-7368 -roomNumber: 8857 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rozalie Kesler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozalie Kesler -sn: Kesler -description: This is Rozalie Kesler's description -facsimileTelephoneNumber: +1 818 928-2919 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 253-8905 -title: Chief Product Development Manager -userPassword: Password1 -uid: KeslerR -givenName: Rozalie -mail: KeslerR@9e65511aabbb470e82559fb2b20a2924.bitwarden.com -carLicense: MWAXBO -departmentNumber: 1200 -employeeType: Employee -homePhone: +1 818 832-4914 -initials: R. K. -mobile: +1 818 448-8864 -pager: +1 818 624-5168 -roomNumber: 9000 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harriette Zenisek -sn: Zenisek -description: This is Harriette Zenisek's description -facsimileTelephoneNumber: +1 818 460-2788 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 861-2390 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: ZenisekH -givenName: Harriette -mail: ZenisekH@3dc397261aae4717a7ed87ae45b11795.bitwarden.com -carLicense: 9UE704 -departmentNumber: 6443 -employeeType: Employee -homePhone: +1 818 898-3718 -initials: H. Z. -mobile: +1 818 675-3683 -pager: +1 818 718-8474 -roomNumber: 8617 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Santiago Gruszczynski -sn: Gruszczynski -description: This is Santiago Gruszczynski's description -facsimileTelephoneNumber: +1 415 727-4501 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 229-3897 -title: Chief Product Development Janitor -userPassword: Password1 -uid: GruszczS -givenName: Santiago -mail: GruszczS@d0510c6d4d2248279a5b0899ea306017.bitwarden.com -carLicense: N3AA85 -departmentNumber: 8380 -employeeType: Contract -homePhone: +1 415 967-2600 -initials: S. G. -mobile: +1 415 433-6572 -pager: +1 415 263-7730 -roomNumber: 9929 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jude Farmer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jude Farmer -sn: Farmer -description: This is Jude Farmer's description -facsimileTelephoneNumber: +1 206 294-2982 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 571-3030 -title: Associate Peons Artist -userPassword: Password1 -uid: FarmerJ -givenName: Jude -mail: FarmerJ@d275905ea7174c8cab687a1c10573cba.bitwarden.com -carLicense: AP49YS -departmentNumber: 8821 -employeeType: Normal -homePhone: +1 206 394-9280 -initials: J. F. -mobile: +1 206 986-8302 -pager: +1 206 770-6546 -roomNumber: 9551 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mervin Grisoni,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mervin Grisoni -sn: Grisoni -description: This is Mervin Grisoni's description -facsimileTelephoneNumber: +1 408 158-5424 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 188-6452 -title: Chief Peons Technician -userPassword: Password1 -uid: GrisoniM -givenName: Mervin -mail: GrisoniM@16e252f623154ea09c88ae20c619b8c4.bitwarden.com -carLicense: 9H581Q -departmentNumber: 6742 -employeeType: Normal -homePhone: +1 408 527-6634 -initials: M. G. -mobile: +1 408 691-8990 -pager: +1 408 987-4210 -roomNumber: 8011 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sarath Beekman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarath Beekman -sn: Beekman -description: This is Sarath Beekman's description -facsimileTelephoneNumber: +1 213 580-3936 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 213 187-7887 -title: Master Payroll Madonna -userPassword: Password1 -uid: BeekmanS -givenName: Sarath -mail: BeekmanS@92160f75073741b5a487392a12009a3d.bitwarden.com -carLicense: 948H3P -departmentNumber: 8997 -employeeType: Contract -homePhone: +1 213 808-2884 -initials: S. B. -mobile: +1 213 450-4336 -pager: +1 213 627-5164 -roomNumber: 9221 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Anna Hepburn,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anna Hepburn -sn: Hepburn -description: This is Anna Hepburn's description -facsimileTelephoneNumber: +1 408 299-1306 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 568-9141 -title: Chief Payroll Manager -userPassword: Password1 -uid: HepburnA -givenName: Anna -mail: HepburnA@9a316795d99d40a2b8152947d5d04a37.bitwarden.com -carLicense: DIJGM2 -departmentNumber: 3222 -employeeType: Contract -homePhone: +1 408 415-8203 -initials: A. H. -mobile: +1 408 508-5636 -pager: +1 408 868-5250 -roomNumber: 8053 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherilyn Recsnik -sn: Recsnik -description: This is Sherilyn Recsnik's description -facsimileTelephoneNumber: +1 206 323-1988 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 538-9355 -title: Chief Product Testing Writer -userPassword: Password1 -uid: RecsnikS -givenName: Sherilyn -mail: RecsnikS@39fcb29a69e44f47ac997e5c56603f1d.bitwarden.com -carLicense: YY3DGI -departmentNumber: 2968 -employeeType: Normal -homePhone: +1 206 534-6769 -initials: S. R. -mobile: +1 206 498-2964 -pager: +1 206 840-2064 -roomNumber: 9813 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bethany Passier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bethany Passier -sn: Passier -description: This is Bethany Passier's description -facsimileTelephoneNumber: +1 408 972-5840 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 367-5250 -title: Associate Human Resources Architect -userPassword: Password1 -uid: PassierB -givenName: Bethany -mail: PassierB@9b511bf76a87427285e307ecdc0c4cb8.bitwarden.com -carLicense: Y10OXR -departmentNumber: 3007 -employeeType: Employee -homePhone: +1 408 720-8086 -initials: B. P. -mobile: +1 408 315-6850 -pager: +1 408 623-4516 -roomNumber: 9920 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Traci DuBerger,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Traci DuBerger -sn: DuBerger -description: This is Traci DuBerger's description -facsimileTelephoneNumber: +1 804 550-7145 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 340-9988 -title: Chief Product Development Vice President -userPassword: Password1 -uid: DuBergeT -givenName: Traci -mail: DuBergeT@4790190082cb4f5abacc6cccbd58144a.bitwarden.com -carLicense: L0VIBB -departmentNumber: 9300 -employeeType: Normal -homePhone: +1 804 852-9009 -initials: T. D. -mobile: +1 804 259-5306 -pager: +1 804 396-6516 -roomNumber: 9978 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ceciley Kuan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ceciley Kuan -sn: Kuan -description: This is Ceciley Kuan's description -facsimileTelephoneNumber: +1 206 146-3184 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 156-5406 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: KuanC -givenName: Ceciley -mail: KuanC@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com -carLicense: 2CUKVE -departmentNumber: 5716 -employeeType: Contract -homePhone: +1 206 512-4337 -initials: C. K. -mobile: +1 206 151-1865 -pager: +1 206 121-5685 -roomNumber: 9719 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatiana Hoequist -sn: Hoequist -description: This is Tatiana Hoequist's description -facsimileTelephoneNumber: +1 213 871-5069 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 213 544-6793 -title: Master Payroll Dictator -userPassword: Password1 -uid: HoequisT -givenName: Tatiana -mail: HoequisT@cfb0243cd1fe4f70a9f0422d30776059.bitwarden.com -carLicense: NW5VU4 -departmentNumber: 2717 -employeeType: Employee -homePhone: +1 213 481-4929 -initials: T. H. -mobile: +1 213 982-5428 -pager: +1 213 177-6340 -roomNumber: 9715 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Krishan Stamps,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krishan Stamps -sn: Stamps -description: This is Krishan Stamps's description -facsimileTelephoneNumber: +1 818 312-8515 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 582-9793 -title: Master Product Development President -userPassword: Password1 -uid: StampsK -givenName: Krishan -mail: StampsK@d2f384130fce4e7e8437086d4d7eb3d2.bitwarden.com -carLicense: T376R7 -departmentNumber: 2652 -employeeType: Employee -homePhone: +1 818 130-6703 -initials: K. S. -mobile: +1 818 963-7862 -pager: +1 818 180-7877 -roomNumber: 8514 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Colin Gibbins,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colin Gibbins -sn: Gibbins -description: This is Colin Gibbins's description -facsimileTelephoneNumber: +1 213 297-6535 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 186-4951 -title: Master Human Resources Technician -userPassword: Password1 -uid: GibbinsC -givenName: Colin -mail: GibbinsC@47eb73ab21cc404d8ae8ada68387e955.bitwarden.com -carLicense: XIVAWJ -departmentNumber: 3600 -employeeType: Contract -homePhone: +1 213 611-6270 -initials: C. G. -mobile: +1 213 947-7201 -pager: +1 213 156-6560 -roomNumber: 9275 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elysia Wierzba -sn: Wierzba -description: This is Elysia Wierzba's description -facsimileTelephoneNumber: +1 213 190-1211 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 596-2815 -title: Junior Product Testing Architect -userPassword: Password1 -uid: WierzbaE -givenName: Elysia -mail: WierzbaE@5c156ad08db54158952031cf3253ef2e.bitwarden.com -carLicense: VA0NBM -departmentNumber: 2699 -employeeType: Contract -homePhone: +1 213 823-9692 -initials: E. W. -mobile: +1 213 503-9466 -pager: +1 213 355-3911 -roomNumber: 8681 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Utpala Neault,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Utpala Neault -sn: Neault -description: This is Utpala Neault's description -facsimileTelephoneNumber: +1 213 717-2230 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 120-4943 -title: Supreme Administrative Stooge -userPassword: Password1 -uid: NeaultU -givenName: Utpala -mail: NeaultU@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com -carLicense: N7EVMQ -departmentNumber: 5233 -employeeType: Contract -homePhone: +1 213 675-1514 -initials: U. N. -mobile: +1 213 799-2093 -pager: +1 213 940-7699 -roomNumber: 8669 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chery Dickinson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chery Dickinson -sn: Dickinson -description: This is Chery Dickinson's description -facsimileTelephoneNumber: +1 818 581-2338 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 818 902-1875 -title: Master Peons Figurehead -userPassword: Password1 -uid: DickinsC -givenName: Chery -mail: DickinsC@8b4252ea9d114f95b65956efe85c0aae.bitwarden.com -carLicense: V924K9 -departmentNumber: 8866 -employeeType: Employee -homePhone: +1 818 579-1459 -initials: C. D. -mobile: +1 818 242-9655 -pager: +1 818 243-8652 -roomNumber: 9932 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elwood Schmitz,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elwood Schmitz -sn: Schmitz -description: This is Elwood Schmitz's description -facsimileTelephoneNumber: +1 510 169-7818 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 476-9285 -title: Master Management Warrior -userPassword: Password1 -uid: SchmitzE -givenName: Elwood -mail: SchmitzE@80fa9db759cf45d8a9f0fb7fa92c1396.bitwarden.com -carLicense: LUNIK9 -departmentNumber: 6427 -employeeType: Employee -homePhone: +1 510 941-6000 -initials: E. S. -mobile: +1 510 430-9973 -pager: +1 510 895-2048 -roomNumber: 8550 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Trang Kang,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trang Kang -sn: Kang -description: This is Trang Kang's description -facsimileTelephoneNumber: +1 510 727-3236 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 914-6313 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: KangT -givenName: Trang -mail: KangT@2e02b5adbe00404a986538a6f94c5721.bitwarden.com -carLicense: C5M1CD -departmentNumber: 8102 -employeeType: Employee -homePhone: +1 510 264-8124 -initials: T. K. -mobile: +1 510 238-8745 -pager: +1 510 651-1917 -roomNumber: 9442 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norikatsu Tousignant -sn: Tousignant -description: This is Norikatsu Tousignant's description -facsimileTelephoneNumber: +1 804 684-4767 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 794-4291 -title: Master Payroll Director -userPassword: Password1 -uid: TousignN -givenName: Norikatsu -mail: TousignN@986fe4fcc1ec45dd9a8c35010d313412.bitwarden.com -carLicense: 025RBX -departmentNumber: 5810 -employeeType: Contract -homePhone: +1 804 356-2614 -initials: N. T. -mobile: +1 804 392-6830 -pager: +1 804 555-9770 -roomNumber: 9560 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marylee Lowrie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marylee Lowrie -sn: Lowrie -description: This is Marylee Lowrie's description -facsimileTelephoneNumber: +1 804 669-4717 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 806-2652 -title: Associate Management Grunt -userPassword: Password1 -uid: LowrieM -givenName: Marylee -mail: LowrieM@da86453f48a14ef39804047ecac0cb70.bitwarden.com -carLicense: 4O7FCQ -departmentNumber: 3086 -employeeType: Employee -homePhone: +1 804 436-7975 -initials: M. L. -mobile: +1 804 518-4322 -pager: +1 804 459-9014 -roomNumber: 8873 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Donall Zlatin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donall Zlatin -sn: Zlatin -description: This is Donall Zlatin's description -facsimileTelephoneNumber: +1 415 224-6308 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 889-9661 -title: Supreme Management Fellow -userPassword: Password1 -uid: ZlatinD -givenName: Donall -mail: ZlatinD@ab961322c29b4801a8d49767c505d9e3.bitwarden.com -carLicense: X3BHAG -departmentNumber: 6036 -employeeType: Normal -homePhone: +1 415 520-5187 -initials: D. Z. -mobile: +1 415 379-3315 -pager: +1 415 516-5291 -roomNumber: 8056 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dilip Willette,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dilip Willette -sn: Willette -description: This is Dilip Willette's description -facsimileTelephoneNumber: +1 408 824-4658 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 810-4453 -title: Junior Janitorial President -userPassword: Password1 -uid: WillettD -givenName: Dilip -mail: WillettD@06a75fbf1c264fecab05cf3c4c5e8244.bitwarden.com -carLicense: P1ERAM -departmentNumber: 9005 -employeeType: Normal -homePhone: +1 408 714-8305 -initials: D. W. -mobile: +1 408 292-2739 -pager: +1 408 852-9019 -roomNumber: 9242 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gen Templeton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gen Templeton -sn: Templeton -description: This is Gen Templeton's description -facsimileTelephoneNumber: +1 818 392-6902 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 792-4980 -title: Junior Payroll Technician -userPassword: Password1 -uid: TempletG -givenName: Gen -mail: TempletG@cc62ce54a4e64270838c00138d879780.bitwarden.com -carLicense: HM3WHR -departmentNumber: 1349 -employeeType: Contract -homePhone: +1 818 652-9043 -initials: G. T. -mobile: +1 818 775-7348 -pager: +1 818 371-8491 -roomNumber: 8073 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Celinda Guttman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celinda Guttman -sn: Guttman -description: This is Celinda Guttman's description -facsimileTelephoneNumber: +1 804 557-4705 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 915-7872 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: GuttmanC -givenName: Celinda -mail: GuttmanC@8bb20197d5384c00b37949bce07069cf.bitwarden.com -carLicense: MFDB3A -departmentNumber: 3086 -employeeType: Normal -homePhone: +1 804 619-7973 -initials: C. G. -mobile: +1 804 478-2810 -pager: +1 804 535-1152 -roomNumber: 9552 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dede Lan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dede Lan -sn: Lan -description: This is Dede Lan's description -facsimileTelephoneNumber: +1 510 798-1969 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 336-7189 -title: Junior Product Development Sales Rep -userPassword: Password1 -uid: LanD -givenName: Dede -mail: LanD@b2685c20be7244a2b29f08c6434ac903.bitwarden.com -carLicense: 6WBRWY -departmentNumber: 9555 -employeeType: Employee -homePhone: +1 510 229-3123 -initials: D. L. -mobile: +1 510 306-7043 -pager: +1 510 472-3964 -roomNumber: 9284 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Othella Toolset,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othella Toolset -sn: Toolset -description: This is Othella Toolset's description -facsimileTelephoneNumber: +1 415 339-8408 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 628-1031 -title: Associate Payroll Punk -userPassword: Password1 -uid: ToolsetO -givenName: Othella -mail: ToolsetO@2f13ca54ee794decad24515251a42dff.bitwarden.com -carLicense: DUO39T -departmentNumber: 9440 -employeeType: Employee -homePhone: +1 415 591-9900 -initials: O. T. -mobile: +1 415 357-7675 -pager: +1 415 208-1433 -roomNumber: 9293 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Genovera Kusmider,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genovera Kusmider -sn: Kusmider -description: This is Genovera Kusmider's description -facsimileTelephoneNumber: +1 408 542-4401 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 408 255-5228 -title: Associate Management Assistant -userPassword: Password1 -uid: KusmideG -givenName: Genovera -mail: KusmideG@34d5ed1c9d7241bdb443981287a04354.bitwarden.com -carLicense: L8S3BC -departmentNumber: 9405 -employeeType: Contract -homePhone: +1 408 642-7630 -initials: G. K. -mobile: +1 408 808-4594 -pager: +1 408 566-2567 -roomNumber: 8998 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=JoAnn Donohue,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JoAnn Donohue -sn: Donohue -description: This is JoAnn Donohue's description -facsimileTelephoneNumber: +1 818 164-2017 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 351-6889 -title: Junior Product Development Punk -userPassword: Password1 -uid: DonohueJ -givenName: JoAnn -mail: DonohueJ@2d00b4c5d94943aaab567276a570648e.bitwarden.com -carLicense: AL7NYY -departmentNumber: 7270 -employeeType: Contract -homePhone: +1 818 953-5705 -initials: J. D. -mobile: +1 818 994-9195 -pager: +1 818 919-1190 -roomNumber: 9809 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eliezer Laing,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eliezer Laing -sn: Laing -description: This is Eliezer Laing's description -facsimileTelephoneNumber: +1 804 325-6035 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 101-5543 -title: Chief Management Grunt -userPassword: Password1 -uid: LaingE -givenName: Eliezer -mail: LaingE@4439537e23604aa9a13c7005cfec2ed7.bitwarden.com -carLicense: Y7K6T8 -departmentNumber: 8325 -employeeType: Contract -homePhone: +1 804 423-2463 -initials: E. L. -mobile: +1 804 448-1756 -pager: +1 804 896-6532 -roomNumber: 8279 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hayley Rundstein,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hayley Rundstein -sn: Rundstein -description: This is Hayley Rundstein's description -facsimileTelephoneNumber: +1 408 862-9141 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 827-5483 -title: Chief Management Czar -userPassword: Password1 -uid: RundsteH -givenName: Hayley -mail: RundsteH@6e5501c4ee9c48b3adc252f44774d85a.bitwarden.com -carLicense: 3C2BGM -departmentNumber: 8482 -employeeType: Employee -homePhone: +1 408 964-5060 -initials: H. R. -mobile: +1 408 926-7071 -pager: +1 408 345-1867 -roomNumber: 9130 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kerianne Hinds -sn: Hinds -description: This is Kerianne Hinds's description -facsimileTelephoneNumber: +1 510 117-8480 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 993-1699 -title: Junior Human Resources Writer -userPassword: Password1 -uid: HindsK -givenName: Kerianne -mail: HindsK@edf26b21784c41bfaf957ea90f1b32bb.bitwarden.com -carLicense: 5OSFYU -departmentNumber: 8154 -employeeType: Normal -homePhone: +1 510 341-4717 -initials: K. H. -mobile: +1 510 273-4608 -pager: +1 510 240-4108 -roomNumber: 9620 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Daffi Chalker,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daffi Chalker -sn: Chalker -description: This is Daffi Chalker's description -facsimileTelephoneNumber: +1 206 430-7760 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 258-2986 -title: Master Payroll Assistant -userPassword: Password1 -uid: ChalkerD -givenName: Daffi -mail: ChalkerD@bf919e17e05f4868b7c226bdabccfd39.bitwarden.com -carLicense: 8CPDL4 -departmentNumber: 1190 -employeeType: Employee -homePhone: +1 206 948-1089 -initials: D. C. -mobile: +1 206 774-4688 -pager: +1 206 876-8648 -roomNumber: 8467 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Debee Hazelrig,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debee Hazelrig -sn: Hazelrig -description: This is Debee Hazelrig's description -facsimileTelephoneNumber: +1 415 593-2352 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 415 736-5767 -title: Junior Peons Vice President -userPassword: Password1 -uid: HazelriD -givenName: Debee -mail: HazelriD@91469109e9e74dbeada032db2abfd838.bitwarden.com -carLicense: AMFKEF -departmentNumber: 8486 -employeeType: Contract -homePhone: +1 415 237-9405 -initials: D. H. -mobile: +1 415 985-4255 -pager: +1 415 949-3221 -roomNumber: 9096 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eda Kasdorf -sn: Kasdorf -description: This is Eda Kasdorf's description -facsimileTelephoneNumber: +1 408 232-8489 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 976-1122 -title: Chief Human Resources Artist -userPassword: Password1 -uid: KasdorfE -givenName: Eda -mail: KasdorfE@3cd269b5d58f4f4392c1d0f7bebb70ef.bitwarden.com -carLicense: Y0MLD3 -departmentNumber: 2531 -employeeType: Employee -homePhone: +1 408 509-5267 -initials: E. K. -mobile: +1 408 297-3156 -pager: +1 408 169-6525 -roomNumber: 9565 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Warren Niu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Warren Niu -sn: Niu -description: This is Warren Niu's description -facsimileTelephoneNumber: +1 510 761-8423 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 510 782-8728 -title: Master Product Testing Grunt -userPassword: Password1 -uid: NiuW -givenName: Warren -mail: NiuW@a71709f685af42718e5d72a70ff54dea.bitwarden.com -carLicense: 8ILBXU -departmentNumber: 4271 -employeeType: Normal -homePhone: +1 510 418-8573 -initials: W. N. -mobile: +1 510 852-4778 -pager: +1 510 909-4729 -roomNumber: 8103 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Thuong Malkinson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thuong Malkinson -sn: Malkinson -description: This is Thuong Malkinson's description -facsimileTelephoneNumber: +1 408 173-9876 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 575-3781 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: MalkinsT -givenName: Thuong -mail: MalkinsT@20d733e4c13941c7bc31419a4b4229c6.bitwarden.com -carLicense: KDLNIY -departmentNumber: 4506 -employeeType: Normal -homePhone: +1 408 931-6462 -initials: T. M. -mobile: +1 408 318-4676 -pager: +1 408 749-8670 -roomNumber: 8690 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Remi Denver,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Remi Denver -sn: Denver -description: This is Remi Denver's description -facsimileTelephoneNumber: +1 415 444-1648 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 116-8418 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: DenverR -givenName: Remi -mail: DenverR@79479fbb7bd345d6b6aa08b455669b8e.bitwarden.com -carLicense: YXQGBA -departmentNumber: 3440 -employeeType: Normal -homePhone: +1 415 849-2421 -initials: R. D. -mobile: +1 415 576-6259 -pager: +1 415 822-9153 -roomNumber: 8619 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maritsa Keenan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maritsa Keenan -sn: Keenan -description: This is Maritsa Keenan's description -facsimileTelephoneNumber: +1 415 910-2523 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 385-1917 -title: Master Payroll Admin -userPassword: Password1 -uid: KeenanM -givenName: Maritsa -mail: KeenanM@c37d3b12215747d99472a7fb366acdb6.bitwarden.com -carLicense: 9HTVDU -departmentNumber: 8323 -employeeType: Contract -homePhone: +1 415 511-4802 -initials: M. K. -mobile: +1 415 986-2056 -pager: +1 415 136-6897 -roomNumber: 8881 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Johnath Linn,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnath Linn -sn: Linn -description: This is Johnath Linn's description -facsimileTelephoneNumber: +1 206 590-6462 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 155-8629 -title: Master Product Testing Czar -userPassword: Password1 -uid: LinnJ -givenName: Johnath -mail: LinnJ@3bd36e687afb47ec92c7d0d49064bd14.bitwarden.com -carLicense: 45R2O6 -departmentNumber: 1033 -employeeType: Employee -homePhone: +1 206 803-3309 -initials: J. L. -mobile: +1 206 449-8318 -pager: +1 206 952-2703 -roomNumber: 9857 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joan Yousuf,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joan Yousuf -sn: Yousuf -description: This is Joan Yousuf's description -facsimileTelephoneNumber: +1 408 636-6001 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 255-2193 -title: Junior Payroll Engineer -userPassword: Password1 -uid: YousufJ -givenName: Joan -mail: YousufJ@d71f931e88694d74b88e32769af98e29.bitwarden.com -carLicense: UO0T1H -departmentNumber: 1274 -employeeType: Employee -homePhone: +1 408 928-2596 -initials: J. Y. -mobile: +1 408 682-6173 -pager: +1 408 134-4679 -roomNumber: 9584 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Roscoe LePage,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roscoe LePage -sn: LePage -description: This is Roscoe LePage's description -facsimileTelephoneNumber: +1 213 953-3851 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 810-4327 -title: Associate Janitorial Manager -userPassword: Password1 -uid: LePageR -givenName: Roscoe -mail: LePageR@05860c650fd74a9da6c29ee5ab8fb098.bitwarden.com -carLicense: C20Y76 -departmentNumber: 1395 -employeeType: Normal -homePhone: +1 213 600-9338 -initials: R. L. -mobile: +1 213 678-7181 -pager: +1 213 576-7737 -roomNumber: 8930 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Powell Tosczak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Powell Tosczak -sn: Tosczak -description: This is Powell Tosczak's description -facsimileTelephoneNumber: +1 408 900-8269 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 195-1511 -title: Chief Human Resources Manager -userPassword: Password1 -uid: TosczakP -givenName: Powell -mail: TosczakP@d221ea793fe54c61b6d0a123f7f92114.bitwarden.com -carLicense: 4FSRUA -departmentNumber: 8888 -employeeType: Contract -homePhone: +1 408 260-4490 -initials: P. T. -mobile: +1 408 386-5622 -pager: +1 408 616-8381 -roomNumber: 8453 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Charles Chatha,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charles Chatha -sn: Chatha -description: This is Charles Chatha's description -facsimileTelephoneNumber: +1 415 912-6743 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 134-3492 -title: Associate Management Pinhead -userPassword: Password1 -uid: ChathaC -givenName: Charles -mail: ChathaC@a0cd6adce0a94b1fa4dd97607ada8ecc.bitwarden.com -carLicense: WHJPVH -departmentNumber: 4949 -employeeType: Employee -homePhone: +1 415 359-4211 -initials: C. C. -mobile: +1 415 371-8217 -pager: +1 415 356-2690 -roomNumber: 8676 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blondelle Sherwin -sn: Sherwin -description: This is Blondelle Sherwin's description -facsimileTelephoneNumber: +1 804 833-9617 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 804 533-5900 -title: Supreme Payroll Warrior -userPassword: Password1 -uid: SherwinB -givenName: Blondelle -mail: SherwinB@ab1580f3c871483c8482cf412bf044c5.bitwarden.com -carLicense: 10LPBF -departmentNumber: 2484 -employeeType: Contract -homePhone: +1 804 705-2860 -initials: B. S. -mobile: +1 804 953-1280 -pager: +1 804 933-8658 -roomNumber: 9865 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anne Nagenthiram -sn: Nagenthiram -description: This is Anne Nagenthiram's description -facsimileTelephoneNumber: +1 408 185-6019 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 408 978-5879 -title: Junior Janitorial Stooge -userPassword: Password1 -uid: NagenthA -givenName: Anne -mail: NagenthA@b60aa937d01647ea80a3225aa7e4cdc5.bitwarden.com -carLicense: H4NS1J -departmentNumber: 2412 -employeeType: Contract -homePhone: +1 408 235-4438 -initials: A. N. -mobile: +1 408 436-7324 -pager: +1 408 990-9195 -roomNumber: 9222 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xenia Schierbaum -sn: Schierbaum -description: This is Xenia Schierbaum's description -facsimileTelephoneNumber: +1 408 175-4615 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 687-2174 -title: Chief Product Testing Punk -userPassword: Password1 -uid: SchierbX -givenName: Xenia -mail: SchierbX@5b0a4ae806d141a2b61a40d9b397ed02.bitwarden.com -carLicense: 4VRAJ7 -departmentNumber: 3980 -employeeType: Contract -homePhone: +1 408 588-1528 -initials: X. S. -mobile: +1 408 666-5672 -pager: +1 408 103-5525 -roomNumber: 8260 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arabelle RamirezChavez -sn: RamirezChavez -description: This is Arabelle RamirezChavez's description -facsimileTelephoneNumber: +1 206 569-5545 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 117-4541 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: RamirezA -givenName: Arabelle -mail: RamirezA@130d7984e3224d79a3593bfbc13ee192.bitwarden.com -carLicense: 0A3WJ6 -departmentNumber: 7584 -employeeType: Contract -homePhone: +1 206 461-4163 -initials: A. R. -mobile: +1 206 383-4008 -pager: +1 206 955-4340 -roomNumber: 9443 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tina Dadalt,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tina Dadalt -sn: Dadalt -description: This is Tina Dadalt's description -facsimileTelephoneNumber: +1 818 662-9696 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 248-8432 -title: Master Janitorial Punk -userPassword: Password1 -uid: DadaltT -givenName: Tina -mail: DadaltT@70b6429752274e8fb78443facd8775cd.bitwarden.com -carLicense: 044D84 -departmentNumber: 7927 -employeeType: Normal -homePhone: +1 818 167-9564 -initials: T. D. -mobile: +1 818 274-4309 -pager: +1 818 355-1561 -roomNumber: 9851 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sosanna Starnes,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sosanna Starnes -sn: Starnes -description: This is Sosanna Starnes's description -facsimileTelephoneNumber: +1 206 855-2898 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 937-2231 -title: Master Payroll Engineer -userPassword: Password1 -uid: StarnesS -givenName: Sosanna -mail: StarnesS@987beca3f52a49bd924ac83295cf5b4d.bitwarden.com -carLicense: T00IW5 -departmentNumber: 1322 -employeeType: Contract -homePhone: +1 206 617-5129 -initials: S. S. -mobile: +1 206 382-9243 -pager: +1 206 982-1525 -roomNumber: 9672 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gilly Wasylyk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilly Wasylyk -sn: Wasylyk -description: This is Gilly Wasylyk's description -facsimileTelephoneNumber: +1 818 772-3664 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 414-1985 -title: Supreme Management Artist -userPassword: Password1 -uid: WasylykG -givenName: Gilly -mail: WasylykG@79d5277aef56406eb7a48c1a74d35976.bitwarden.com -carLicense: TAJ37L -departmentNumber: 4096 -employeeType: Normal -homePhone: +1 818 213-3842 -initials: G. W. -mobile: +1 818 299-2274 -pager: +1 818 230-4190 -roomNumber: 9429 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Naser Cooksey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naser Cooksey -sn: Cooksey -description: This is Naser Cooksey's description -facsimileTelephoneNumber: +1 206 385-6034 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 410-5229 -title: Master Product Development President -userPassword: Password1 -uid: CookseyN -givenName: Naser -mail: CookseyN@bb2df33f538f4a84ae604317f6602688.bitwarden.com -carLicense: FLEJDL -departmentNumber: 6550 -employeeType: Employee -homePhone: +1 206 355-2948 -initials: N. C. -mobile: +1 206 700-3386 -pager: +1 206 628-9688 -roomNumber: 8027 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Betta Parn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betta Parn -sn: Parn -description: This is Betta Parn's description -facsimileTelephoneNumber: +1 804 378-7084 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 125-3102 -title: Chief Management Technician -userPassword: Password1 -uid: ParnB -givenName: Betta -mail: ParnB@38dcec66f26c4456ab9d677c65296ef1.bitwarden.com -carLicense: 3E4F0E -departmentNumber: 7236 -employeeType: Employee -homePhone: +1 804 729-4594 -initials: B. P. -mobile: +1 804 189-4242 -pager: +1 804 797-4812 -roomNumber: 8280 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lon Sourour,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lon Sourour -sn: Sourour -description: This is Lon Sourour's description -facsimileTelephoneNumber: +1 408 968-9542 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 847-1907 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: SourourL -givenName: Lon -mail: SourourL@4a2fd4a05dbb410fa7af8a1d24b5cd04.bitwarden.com -carLicense: V5M65T -departmentNumber: 4986 -employeeType: Employee -homePhone: +1 408 151-9687 -initials: L. S. -mobile: +1 408 998-1888 -pager: +1 408 305-9200 -roomNumber: 8507 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Neetu Kromer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neetu Kromer -sn: Kromer -description: This is Neetu Kromer's description -facsimileTelephoneNumber: +1 818 982-4974 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 609-1606 -title: Master Payroll Visionary -userPassword: Password1 -uid: KromerN -givenName: Neetu -mail: KromerN@4a5d6761844a487688a8f353a67dc3a6.bitwarden.com -carLicense: NT54DU -departmentNumber: 3302 -employeeType: Normal -homePhone: +1 818 159-8940 -initials: N. K. -mobile: +1 818 903-2439 -pager: +1 818 832-1534 -roomNumber: 8852 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lon Sells,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lon Sells -sn: Sells -description: This is Lon Sells's description -facsimileTelephoneNumber: +1 818 996-2565 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 228-8486 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: SellsL -givenName: Lon -mail: SellsL@28fca843a5ae4175b7bbc20728951453.bitwarden.com -carLicense: I1NG7L -departmentNumber: 3045 -employeeType: Contract -homePhone: +1 818 900-9818 -initials: L. S. -mobile: +1 818 296-5251 -pager: +1 818 682-9151 -roomNumber: 9803 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shivdarsan Garry,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shivdarsan Garry -sn: Garry -description: This is Shivdarsan Garry's description -facsimileTelephoneNumber: +1 408 588-4325 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 703-7592 -title: Junior Management Madonna -userPassword: Password1 -uid: GarryS -givenName: Shivdarsan -mail: GarryS@474927d6f0584e7f9ec7edbb9c9a6503.bitwarden.com -carLicense: QGI096 -departmentNumber: 5395 -employeeType: Employee -homePhone: +1 408 747-9162 -initials: S. G. -mobile: +1 408 998-8371 -pager: +1 408 688-5801 -roomNumber: 9312 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Co Reinhold,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Co Reinhold -sn: Reinhold -description: This is Co Reinhold's description -facsimileTelephoneNumber: +1 213 804-2311 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 179-5291 -title: Associate Human Resources Punk -userPassword: Password1 -uid: ReinholC -givenName: Co -mail: ReinholC@7d9cd1f5b4d645a6bff13b745f4db29e.bitwarden.com -carLicense: 6HL5P4 -departmentNumber: 4727 -employeeType: Contract -homePhone: +1 213 391-8855 -initials: C. R. -mobile: +1 213 975-3557 -pager: +1 213 363-1371 -roomNumber: 8418 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Inez Elks,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inez Elks -sn: Elks -description: This is Inez Elks's description -facsimileTelephoneNumber: +1 818 468-2718 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 586-1071 -title: Junior Human Resources Architect -userPassword: Password1 -uid: ElksI -givenName: Inez -mail: ElksI@fd2bad63f6454f51b13a625709ed0d80.bitwarden.com -carLicense: VHJHJJ -departmentNumber: 1203 -employeeType: Normal -homePhone: +1 818 909-5917 -initials: I. E. -mobile: +1 818 314-2479 -pager: +1 818 986-9155 -roomNumber: 9902 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lalit DaSilva -sn: DaSilva -description: This is Lalit DaSilva's description -facsimileTelephoneNumber: +1 213 767-4839 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 285-1017 -title: Master Janitorial Engineer -userPassword: Password1 -uid: DaSilvaL -givenName: Lalit -mail: DaSilvaL@d45f6836f596476594ad223437a92901.bitwarden.com -carLicense: 2VXU6W -departmentNumber: 2919 -employeeType: Employee -homePhone: +1 213 603-7063 -initials: L. D. -mobile: +1 213 512-6568 -pager: +1 213 494-3297 -roomNumber: 9718 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=John Senecal,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: John Senecal -sn: Senecal -description: This is John Senecal's description -facsimileTelephoneNumber: +1 408 621-2517 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 875-3660 -title: Junior Payroll Visionary -userPassword: Password1 -uid: SenecalJ -givenName: John -mail: SenecalJ@26e1dec8a04040fb9bea3b60a85c414d.bitwarden.com -carLicense: 6LGBY7 -departmentNumber: 2886 -employeeType: Normal -homePhone: +1 408 968-4105 -initials: J. S. -mobile: +1 408 312-3961 -pager: +1 408 160-8244 -roomNumber: 8429 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liz Weatherspoon -sn: Weatherspoon -description: This is Liz Weatherspoon's description -facsimileTelephoneNumber: +1 510 517-3784 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 507-8166 -title: Master Janitorial Stooge -userPassword: Password1 -uid: WeatherL -givenName: Liz -mail: WeatherL@6ab6650181504c9b862cd99522e8d54f.bitwarden.com -carLicense: 7G06QJ -departmentNumber: 1248 -employeeType: Contract -homePhone: +1 510 256-7485 -initials: L. W. -mobile: +1 510 390-6130 -pager: +1 510 783-3456 -roomNumber: 8283 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marit Whatley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marit Whatley -sn: Whatley -description: This is Marit Whatley's description -facsimileTelephoneNumber: +1 818 270-5352 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 818 749-4249 -title: Junior Payroll Admin -userPassword: Password1 -uid: WhatleyM -givenName: Marit -mail: WhatleyM@ca07554d305246dd85334089406d833c.bitwarden.com -carLicense: M4YXQ4 -departmentNumber: 3096 -employeeType: Normal -homePhone: +1 818 789-6020 -initials: M. W. -mobile: +1 818 752-8924 -pager: +1 818 675-1135 -roomNumber: 9083 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sammie Datta,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sammie Datta -sn: Datta -description: This is Sammie Datta's description -facsimileTelephoneNumber: +1 206 331-8524 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 709-4221 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: DattaS -givenName: Sammie -mail: DattaS@80031e1708f3413ea32c3a78e1027c0d.bitwarden.com -carLicense: EHKAC2 -departmentNumber: 5449 -employeeType: Employee -homePhone: +1 206 711-4000 -initials: S. D. -mobile: +1 206 132-9554 -pager: +1 206 996-4978 -roomNumber: 9843 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pegeen Satterfield -sn: Satterfield -description: This is Pegeen Satterfield's description -facsimileTelephoneNumber: +1 206 741-2582 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 295-4403 -title: Chief Human Resources Punk -userPassword: Password1 -uid: SatterfP -givenName: Pegeen -mail: SatterfP@6616dd3e145e4e6a982af39cc5dff517.bitwarden.com -carLicense: 8JHQTT -departmentNumber: 4354 -employeeType: Contract -homePhone: +1 206 303-6361 -initials: P. S. -mobile: +1 206 637-8534 -pager: +1 206 443-8897 -roomNumber: 9648 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Clea Laing,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clea Laing -sn: Laing -description: This is Clea Laing's description -facsimileTelephoneNumber: +1 804 219-9874 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 412-9107 -title: Associate Peons Admin -userPassword: Password1 -uid: LaingC -givenName: Clea -mail: LaingC@4cb31507770f4eb5b18d7d1eac84d8c0.bitwarden.com -carLicense: M7J9HO -departmentNumber: 4013 -employeeType: Contract -homePhone: +1 804 854-8500 -initials: C. L. -mobile: +1 804 399-2840 -pager: +1 804 105-2413 -roomNumber: 9884 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rex Pelletier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rex Pelletier -sn: Pelletier -description: This is Rex Pelletier's description -facsimileTelephoneNumber: +1 804 212-6853 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 804 429-7363 -title: Master Human Resources Dictator -userPassword: Password1 -uid: PelletiR -givenName: Rex -mail: PelletiR@7a7d0894c6494a99ba1054d717cb6514.bitwarden.com -carLicense: E6KP6O -departmentNumber: 9488 -employeeType: Normal -homePhone: +1 804 859-8369 -initials: R. P. -mobile: +1 804 878-8330 -pager: +1 804 816-4744 -roomNumber: 9250 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gaby Dybenko,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaby Dybenko -sn: Dybenko -description: This is Gaby Dybenko's description -facsimileTelephoneNumber: +1 510 390-6354 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 640-3064 -title: Associate Peons Manager -userPassword: Password1 -uid: DybenkoG -givenName: Gaby -mail: DybenkoG@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com -carLicense: OG65EE -departmentNumber: 9201 -employeeType: Normal -homePhone: +1 510 791-3447 -initials: G. D. -mobile: +1 510 189-2107 -pager: +1 510 487-3084 -roomNumber: 9475 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dwight Kinstley -sn: Kinstley -description: This is Dwight Kinstley's description -facsimileTelephoneNumber: +1 415 694-8191 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 271-9843 -title: Associate Janitorial Writer -userPassword: Password1 -uid: KinstleD -givenName: Dwight -mail: KinstleD@44cbc1ffc61f4407b46df0ad2810f7c4.bitwarden.com -carLicense: 1Y7HT3 -departmentNumber: 4250 -employeeType: Contract -homePhone: +1 415 641-9545 -initials: D. K. -mobile: +1 415 891-8928 -pager: +1 415 916-1788 -roomNumber: 9910 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Velma Donahee,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Velma Donahee -sn: Donahee -description: This is Velma Donahee's description -facsimileTelephoneNumber: +1 415 296-6187 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 415 841-2439 -title: Associate Product Testing Grunt -userPassword: Password1 -uid: DonaheeV -givenName: Velma -mail: DonaheeV@49fad969a9cf4f7f9ee17b24c9d91f37.bitwarden.com -carLicense: AD2LS3 -departmentNumber: 3614 -employeeType: Normal -homePhone: +1 415 453-2311 -initials: V. D. -mobile: +1 415 589-3226 -pager: +1 415 925-2876 -roomNumber: 8214 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chawki Targosky,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chawki Targosky -sn: Targosky -description: This is Chawki Targosky's description -facsimileTelephoneNumber: +1 415 829-5107 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 467-7846 -title: Master Product Testing President -userPassword: Password1 -uid: TargoskC -givenName: Chawki -mail: TargoskC@6166cdfc1e46480f804599bfc1632742.bitwarden.com -carLicense: P61YNV -departmentNumber: 1180 -employeeType: Contract -homePhone: +1 415 297-8304 -initials: C. T. -mobile: +1 415 172-6449 -pager: +1 415 638-9908 -roomNumber: 8297 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Clemente Boroski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clemente Boroski -sn: Boroski -description: This is Clemente Boroski's description -facsimileTelephoneNumber: +1 213 681-5552 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 891-3670 -title: Associate Peons Evangelist -userPassword: Password1 -uid: BoroskiC -givenName: Clemente -mail: BoroskiC@c515863a84e8438aba0830f2adfe9717.bitwarden.com -carLicense: QWT0RS -departmentNumber: 8622 -employeeType: Normal -homePhone: +1 213 489-6801 -initials: C. B. -mobile: +1 213 377-6357 -pager: +1 213 882-8242 -roomNumber: 9430 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=JinYun Vea,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JinYun Vea -sn: Vea -description: This is JinYun Vea's description -facsimileTelephoneNumber: +1 415 462-7815 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 373-1269 -title: Chief Product Development Admin -userPassword: Password1 -uid: VeaJ -givenName: JinYun -mail: VeaJ@53ded4f1811e45138f20f4b0826a480a.bitwarden.com -carLicense: H69A8X -departmentNumber: 9300 -employeeType: Contract -homePhone: +1 415 104-1783 -initials: J. V. -mobile: +1 415 123-1736 -pager: +1 415 214-9929 -roomNumber: 9364 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dawn Pelland,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dawn Pelland -sn: Pelland -description: This is Dawn Pelland's description -facsimileTelephoneNumber: +1 415 250-5119 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 202-2567 -title: Master Product Development Grunt -userPassword: Password1 -uid: PellandD -givenName: Dawn -mail: PellandD@c3e4fed0ee6543d6b658ce41386d4984.bitwarden.com -carLicense: X4AW0H -departmentNumber: 8014 -employeeType: Normal -homePhone: +1 415 120-4159 -initials: D. P. -mobile: +1 415 652-2057 -pager: +1 415 608-3102 -roomNumber: 9537 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicole Shamshiri -sn: Shamshiri -description: This is Nicole Shamshiri's description -facsimileTelephoneNumber: +1 415 645-4477 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 388-5537 -title: Associate Administrative Vice President -userPassword: Password1 -uid: ShamshiN -givenName: Nicole -mail: ShamshiN@fad13712be524b2bb53fd1f676c9976a.bitwarden.com -carLicense: J6MHT0 -departmentNumber: 6022 -employeeType: Employee -homePhone: +1 415 127-9949 -initials: N. S. -mobile: +1 415 911-9793 -pager: +1 415 580-8871 -roomNumber: 8122 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Snehal Benne,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Snehal Benne -sn: Benne -description: This is Snehal Benne's description -facsimileTelephoneNumber: +1 804 317-5423 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 682-8145 -title: Chief Human Resources Engineer -userPassword: Password1 -uid: BenneS -givenName: Snehal -mail: BenneS@34b4596fe27f4849b36cd75d1f4d495a.bitwarden.com -carLicense: MDMQLO -departmentNumber: 6552 -employeeType: Normal -homePhone: +1 804 586-5418 -initials: S. B. -mobile: +1 804 193-5425 -pager: +1 804 270-1552 -roomNumber: 9017 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Selma Sinasac,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selma Sinasac -sn: Sinasac -description: This is Selma Sinasac's description -facsimileTelephoneNumber: +1 213 265-9287 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 538-3316 -title: Master Product Development Mascot -userPassword: Password1 -uid: SinasacS -givenName: Selma -mail: SinasacS@21bcf6a485b34cf591de5e2c4c73b2a9.bitwarden.com -carLicense: 178EVV -departmentNumber: 6684 -employeeType: Contract -homePhone: +1 213 604-7772 -initials: S. S. -mobile: +1 213 663-8046 -pager: +1 213 833-3812 -roomNumber: 8564 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vickie Holcombe -sn: Holcombe -description: This is Vickie Holcombe's description -facsimileTelephoneNumber: +1 408 659-8465 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 974-6876 -title: Master Product Testing Technician -userPassword: Password1 -uid: HolcombV -givenName: Vickie -mail: HolcombV@7a909c99a62141c5a029d819c95f8966.bitwarden.com -carLicense: 5CI4B9 -departmentNumber: 6729 -employeeType: Employee -homePhone: +1 408 989-8175 -initials: V. H. -mobile: +1 408 694-5379 -pager: +1 408 120-2809 -roomNumber: 9432 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cindee Majid,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cindee Majid -sn: Majid -description: This is Cindee Majid's description -facsimileTelephoneNumber: +1 510 201-1507 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 622-8548 -title: Junior Payroll Vice President -userPassword: Password1 -uid: MajidC -givenName: Cindee -mail: MajidC@a83f5faad57246c68e39925cbe706599.bitwarden.com -carLicense: APB42M -departmentNumber: 2439 -employeeType: Normal -homePhone: +1 510 323-7397 -initials: C. M. -mobile: +1 510 620-3420 -pager: +1 510 727-2701 -roomNumber: 9344 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aubrey MacElwee -sn: MacElwee -description: This is Aubrey MacElwee's description -facsimileTelephoneNumber: +1 818 911-6148 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 475-7898 -title: Junior Payroll Madonna -userPassword: Password1 -uid: MacElweA -givenName: Aubrey -mail: MacElweA@30940250e8844da39fb713b6d19a3328.bitwarden.com -carLicense: QPIUL3 -departmentNumber: 5410 -employeeType: Employee -homePhone: +1 818 897-4353 -initials: A. M. -mobile: +1 818 492-9179 -pager: +1 818 190-9697 -roomNumber: 9194 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wieslaw Georges -sn: Georges -description: This is Wieslaw Georges's description -facsimileTelephoneNumber: +1 408 906-9213 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 690-2990 -title: Associate Human Resources President -userPassword: Password1 -uid: GeorgesW -givenName: Wieslaw -mail: GeorgesW@c87e51ff3d124e2595c26b85c6dd84c1.bitwarden.com -carLicense: T5MB4Q -departmentNumber: 1776 -employeeType: Contract -homePhone: +1 408 103-1865 -initials: W. G. -mobile: +1 408 462-1056 -pager: +1 408 423-2015 -roomNumber: 9772 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Croix Valiveti,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Croix Valiveti -sn: Valiveti -description: This is Croix Valiveti's description -facsimileTelephoneNumber: +1 206 607-4804 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 214-1808 -title: Associate Human Resources Developer -userPassword: Password1 -uid: ValivetC -givenName: Croix -mail: ValivetC@796636c316134f4ea242b8ffac574e0e.bitwarden.com -carLicense: M5BKB2 -departmentNumber: 5125 -employeeType: Employee -homePhone: +1 206 145-2230 -initials: C. V. -mobile: +1 206 205-9313 -pager: +1 206 806-8924 -roomNumber: 9608 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jelene Watkins,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jelene Watkins -sn: Watkins -description: This is Jelene Watkins's description -facsimileTelephoneNumber: +1 415 588-9041 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 763-6057 -title: Master Human Resources Grunt -userPassword: Password1 -uid: WatkinsJ -givenName: Jelene -mail: WatkinsJ@d117baceef9a4168bde2647e78683a37.bitwarden.com -carLicense: BIS7V0 -departmentNumber: 6608 -employeeType: Employee -homePhone: +1 415 876-3173 -initials: J. W. -mobile: +1 415 666-3960 -pager: +1 415 557-4578 -roomNumber: 8719 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Harriot Macklem,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harriot Macklem -sn: Macklem -description: This is Harriot Macklem's description -facsimileTelephoneNumber: +1 818 694-5630 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 818 426-6403 -title: Associate Administrative Engineer -userPassword: Password1 -uid: MacklemH -givenName: Harriot -mail: MacklemH@bd079bcc8df848e4ad40b50c80eb486f.bitwarden.com -carLicense: 60P731 -departmentNumber: 8989 -employeeType: Normal -homePhone: +1 818 187-4398 -initials: H. M. -mobile: +1 818 498-7623 -pager: +1 818 483-7265 -roomNumber: 8155 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Torey Kilzer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Torey Kilzer -sn: Kilzer -description: This is Torey Kilzer's description -facsimileTelephoneNumber: +1 415 179-1745 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 885-3410 -title: Master Product Testing Evangelist -userPassword: Password1 -uid: KilzerT -givenName: Torey -mail: KilzerT@f75201d6bca8489ca55858f0848a1669.bitwarden.com -carLicense: 11CT0O -departmentNumber: 8857 -employeeType: Normal -homePhone: +1 415 765-7796 -initials: T. K. -mobile: +1 415 161-5121 -pager: +1 415 758-6799 -roomNumber: 8906 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gilberta Howie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilberta Howie -sn: Howie -description: This is Gilberta Howie's description -facsimileTelephoneNumber: +1 408 150-7088 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 427-1472 -title: Junior Peons Stooge -userPassword: Password1 -uid: HowieG -givenName: Gilberta -mail: HowieG@a6c2af5a8f94494bae6122c60dacfc6e.bitwarden.com -carLicense: QH48K3 -departmentNumber: 7893 -employeeType: Normal -homePhone: +1 408 792-9292 -initials: G. H. -mobile: +1 408 224-6607 -pager: +1 408 762-5908 -roomNumber: 8421 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Darrel Doerfel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrel Doerfel -sn: Doerfel -description: This is Darrel Doerfel's description -facsimileTelephoneNumber: +1 818 178-4258 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 479-1262 -title: Master Payroll Janitor -userPassword: Password1 -uid: DoerfelD -givenName: Darrel -mail: DoerfelD@f638e931330c48d7ae5c0869dd725594.bitwarden.com -carLicense: WE9N3N -departmentNumber: 4674 -employeeType: Employee -homePhone: +1 818 267-9489 -initials: D. D. -mobile: +1 818 457-1774 -pager: +1 818 802-9836 -roomNumber: 8899 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anastasia Torrealba -sn: Torrealba -description: This is Anastasia Torrealba's description -facsimileTelephoneNumber: +1 213 675-9477 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 307-4107 -title: Junior Human Resources Evangelist -userPassword: Password1 -uid: TorrealA -givenName: Anastasia -mail: TorrealA@3ac90edfcfff46898d6b206ad200961d.bitwarden.com -carLicense: NKIU8R -departmentNumber: 6895 -employeeType: Normal -homePhone: +1 213 266-7804 -initials: A. T. -mobile: +1 213 278-2075 -pager: +1 213 808-4776 -roomNumber: 8553 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Phu Lukie,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phu Lukie -sn: Lukie -description: This is Phu Lukie's description -facsimileTelephoneNumber: +1 408 165-2085 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 715-1333 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: LukieP -givenName: Phu -mail: LukieP@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com -carLicense: LVEDMK -departmentNumber: 7769 -employeeType: Employee -homePhone: +1 408 219-6251 -initials: P. L. -mobile: +1 408 841-3770 -pager: +1 408 853-3626 -roomNumber: 9152 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Katja Teder,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katja Teder -sn: Teder -description: This is Katja Teder's description -facsimileTelephoneNumber: +1 804 459-4061 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 721-6016 -title: Master Payroll Stooge -userPassword: Password1 -uid: TederK -givenName: Katja -mail: TederK@2adb967556814b64a4967092a73de947.bitwarden.com -carLicense: L8YE1H -departmentNumber: 7534 -employeeType: Contract -homePhone: +1 804 567-6506 -initials: K. T. -mobile: +1 804 596-4099 -pager: +1 804 864-6276 -roomNumber: 9434 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sybilla Cupido -sn: Cupido -description: This is Sybilla Cupido's description -facsimileTelephoneNumber: +1 818 784-4516 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 995-8366 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: CupidoS -givenName: Sybilla -mail: CupidoS@092396cbb25f48afadfced942905695a.bitwarden.com -carLicense: A494LX -departmentNumber: 1549 -employeeType: Normal -homePhone: +1 818 208-1651 -initials: S. C. -mobile: +1 818 391-4866 -pager: +1 818 889-8473 -roomNumber: 9070 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rina Talton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rina Talton -sn: Talton -description: This is Rina Talton's description -facsimileTelephoneNumber: +1 206 650-5261 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 262-9501 -title: Master Administrative Admin -userPassword: Password1 -uid: TaltonR -givenName: Rina -mail: TaltonR@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com -carLicense: NN32DS -departmentNumber: 5115 -employeeType: Contract -homePhone: +1 206 939-2196 -initials: R. T. -mobile: +1 206 362-9758 -pager: +1 206 800-7886 -roomNumber: 8332 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nelleke Haley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nelleke Haley -sn: Haley -description: This is Nelleke Haley's description -facsimileTelephoneNumber: +1 510 393-9644 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 957-9211 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: HaleyN -givenName: Nelleke -mail: HaleyN@1ab5e46ea4fb40b292686a380747c794.bitwarden.com -carLicense: VF17HT -departmentNumber: 1346 -employeeType: Contract -homePhone: +1 510 382-9756 -initials: N. H. -mobile: +1 510 152-5410 -pager: +1 510 514-6280 -roomNumber: 8975 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shalna Yao,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shalna Yao -sn: Yao -description: This is Shalna Yao's description -facsimileTelephoneNumber: +1 510 279-8551 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 345-4659 -title: Master Peons Artist -userPassword: Password1 -uid: YaoS -givenName: Shalna -mail: YaoS@652dfd4ca6554eef8a080dba766c7206.bitwarden.com -carLicense: U346VK -departmentNumber: 4398 -employeeType: Normal -homePhone: +1 510 842-7254 -initials: S. Y. -mobile: +1 510 666-1843 -pager: +1 510 832-1936 -roomNumber: 9136 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karmen Wever,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karmen Wever -sn: Wever -description: This is Karmen Wever's description -facsimileTelephoneNumber: +1 804 649-7648 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 152-5386 -title: Junior Janitorial Warrior -userPassword: Password1 -uid: WeverK -givenName: Karmen -mail: WeverK@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com -carLicense: LLY63P -departmentNumber: 5434 -employeeType: Employee -homePhone: +1 804 422-2581 -initials: K. W. -mobile: +1 804 638-5497 -pager: +1 804 719-5945 -roomNumber: 8992 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ahmad Khatib -sn: Khatib -description: This is Ahmad Khatib's description -facsimileTelephoneNumber: +1 510 812-3012 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 508-2544 -title: Chief Janitorial Architect -userPassword: Password1 -uid: KhatibA -givenName: Ahmad -mail: KhatibA@3400488b7a3349e39ce7a604277f42e7.bitwarden.com -carLicense: HUXNMD -departmentNumber: 6572 -employeeType: Normal -homePhone: +1 510 535-6138 -initials: A. K. -mobile: +1 510 485-3510 -pager: +1 510 977-2162 -roomNumber: 9377 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Udaya Magnuson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Udaya Magnuson -sn: Magnuson -description: This is Udaya Magnuson's description -facsimileTelephoneNumber: +1 408 691-7472 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 486-8755 -title: Supreme Payroll Punk -userPassword: Password1 -uid: MagnusoU -givenName: Udaya -mail: MagnusoU@c72f77d8df544dfda8a24066a5992ad2.bitwarden.com -carLicense: TSRXRM -departmentNumber: 3977 -employeeType: Contract -homePhone: +1 408 616-1665 -initials: U. M. -mobile: +1 408 243-6418 -pager: +1 408 609-2450 -roomNumber: 9104 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tory Racz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tory Racz -sn: Racz -description: This is Tory Racz's description -facsimileTelephoneNumber: +1 408 237-5888 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 252-1519 -title: Associate Payroll Developer -userPassword: Password1 -uid: RaczT -givenName: Tory -mail: RaczT@e48e3f4a8e5644a2a44442f4e1916d3b.bitwarden.com -carLicense: 823E9Q -departmentNumber: 7475 -employeeType: Employee -homePhone: +1 408 136-3195 -initials: T. R. -mobile: +1 408 465-8879 -pager: +1 408 357-4388 -roomNumber: 9429 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Danika Jamaly,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danika Jamaly -sn: Jamaly -description: This is Danika Jamaly's description -facsimileTelephoneNumber: +1 213 258-7578 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 285-1065 -title: Associate Payroll Dictator -userPassword: Password1 -uid: JamalyD -givenName: Danika -mail: JamalyD@995d47539bff49b8a85a5ecb474bd257.bitwarden.com -carLicense: V4P9E4 -departmentNumber: 1154 -employeeType: Normal -homePhone: +1 213 876-3885 -initials: D. J. -mobile: +1 213 549-4925 -pager: +1 213 224-1151 -roomNumber: 8451 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Loc McElligott,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loc McElligott -sn: McElligott -description: This is Loc McElligott's description -facsimileTelephoneNumber: +1 510 705-2637 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 645-1264 -title: Associate Product Development Architect -userPassword: Password1 -uid: McElligL -givenName: Loc -mail: McElligL@0e51e4ac4ff5492f891ae127459e83ab.bitwarden.com -carLicense: K4UWYV -departmentNumber: 5346 -employeeType: Normal -homePhone: +1 510 171-4538 -initials: L. M. -mobile: +1 510 239-7891 -pager: +1 510 697-7690 -roomNumber: 9464 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maryanne Herr,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryanne Herr -sn: Herr -description: This is Maryanne Herr's description -facsimileTelephoneNumber: +1 804 479-2375 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 278-6002 -title: Master Janitorial Artist -userPassword: Password1 -uid: HerrM -givenName: Maryanne -mail: HerrM@6c99b676cc944a0f933ecc8837dfc70b.bitwarden.com -carLicense: L6RRG9 -departmentNumber: 8704 -employeeType: Employee -homePhone: +1 804 755-9276 -initials: M. H. -mobile: +1 804 565-9188 -pager: +1 804 482-3732 -roomNumber: 9531 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Norrie Vanwychen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norrie Vanwychen -sn: Vanwychen -description: This is Norrie Vanwychen's description -facsimileTelephoneNumber: +1 510 679-4325 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 204-2579 -title: Master Peons Pinhead -userPassword: Password1 -uid: VanwychN -givenName: Norrie -mail: VanwychN@cf312555e24a4a5fa558a25238d5f8c7.bitwarden.com -carLicense: O8M9TX -departmentNumber: 4088 -employeeType: Normal -homePhone: +1 510 819-2383 -initials: N. V. -mobile: +1 510 177-9643 -pager: +1 510 478-4068 -roomNumber: 8632 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Babette Hammond,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Babette Hammond -sn: Hammond -description: This is Babette Hammond's description -facsimileTelephoneNumber: +1 415 336-8890 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 333-6915 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: HammondB -givenName: Babette -mail: HammondB@8289a29e96624f61a290ca3e806f9dd8.bitwarden.com -carLicense: MVH6PJ -departmentNumber: 1944 -employeeType: Normal -homePhone: +1 415 961-9729 -initials: B. H. -mobile: +1 415 841-6883 -pager: +1 415 582-3348 -roomNumber: 8502 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dae Malloy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dae Malloy -sn: Malloy -description: This is Dae Malloy's description -facsimileTelephoneNumber: +1 415 149-2893 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 888-8291 -title: Chief Peons Admin -userPassword: Password1 -uid: MalloyD -givenName: Dae -mail: MalloyD@15a45d459da54368b0fd6d1cb3b6eb6c.bitwarden.com -carLicense: EIDYML -departmentNumber: 6985 -employeeType: Normal -homePhone: +1 415 788-4665 -initials: D. M. -mobile: +1 415 960-2757 -pager: +1 415 895-9842 -roomNumber: 9016 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Demi Uyar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Demi Uyar -sn: Uyar -description: This is Demi Uyar's description -facsimileTelephoneNumber: +1 415 573-1550 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 690-1765 -title: Chief Peons Vice President -userPassword: Password1 -uid: UyarD -givenName: Demi -mail: UyarD@31b13d20c58546e5aa89cbb19323b703.bitwarden.com -carLicense: XS2HVR -departmentNumber: 5490 -employeeType: Normal -homePhone: +1 415 441-4548 -initials: D. U. -mobile: +1 415 889-6501 -pager: +1 415 390-4850 -roomNumber: 9488 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Drago Wooley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drago Wooley -sn: Wooley -description: This is Drago Wooley's description -facsimileTelephoneNumber: +1 510 205-4752 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 756-6359 -title: Associate Payroll Pinhead -userPassword: Password1 -uid: WooleyD -givenName: Drago -mail: WooleyD@b9938495171f4052b273ff15a3fbbcac.bitwarden.com -carLicense: J88L45 -departmentNumber: 3318 -employeeType: Employee -homePhone: +1 510 603-3529 -initials: D. W. -mobile: +1 510 567-9759 -pager: +1 510 217-7964 -roomNumber: 9745 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lira Akhtar,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lira Akhtar -sn: Akhtar -description: This is Lira Akhtar's description -facsimileTelephoneNumber: +1 415 652-1443 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 212-6310 -title: Associate Human Resources Punk -userPassword: Password1 -uid: AkhtarL -givenName: Lira -mail: AkhtarL@dbc00763a9de485c97697558ab9ccf2e.bitwarden.com -carLicense: PD0EFV -departmentNumber: 1378 -employeeType: Normal -homePhone: +1 415 759-8106 -initials: L. A. -mobile: +1 415 948-7203 -pager: +1 415 497-2121 -roomNumber: 9560 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Godfrey Metzger -sn: Metzger -description: This is Godfrey Metzger's description -facsimileTelephoneNumber: +1 408 864-3992 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 408 363-7396 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: MetzgerG -givenName: Godfrey -mail: MetzgerG@4ec057135a5045f1a9989fae44b8b962.bitwarden.com -carLicense: T73ELE -departmentNumber: 9744 -employeeType: Contract -homePhone: +1 408 550-8245 -initials: G. M. -mobile: +1 408 793-9255 -pager: +1 408 921-3800 -roomNumber: 9405 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Blair Costen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blair Costen -sn: Costen -description: This is Blair Costen's description -facsimileTelephoneNumber: +1 415 525-7960 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 160-2476 -title: Associate Payroll Warrior -userPassword: Password1 -uid: CostenB -givenName: Blair -mail: CostenB@2ebbe6ccc158418ea03a56b7dd20f4d9.bitwarden.com -carLicense: TYJUUY -departmentNumber: 1094 -employeeType: Employee -homePhone: +1 415 677-8632 -initials: B. C. -mobile: +1 415 643-4144 -pager: +1 415 358-7604 -roomNumber: 9107 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Celinka Truong,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celinka Truong -sn: Truong -description: This is Celinka Truong's description -facsimileTelephoneNumber: +1 213 434-6066 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 580-8573 -title: Associate Management Mascot -userPassword: Password1 -uid: TruongC -givenName: Celinka -mail: TruongC@a3e17557b4384961a999c1890d509b79.bitwarden.com -carLicense: 3W0MAG -departmentNumber: 7275 -employeeType: Employee -homePhone: +1 213 563-9130 -initials: C. T. -mobile: +1 213 348-2186 -pager: +1 213 878-8412 -roomNumber: 8982 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Olympe Wyndham,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olympe Wyndham -sn: Wyndham -description: This is Olympe Wyndham's description -facsimileTelephoneNumber: +1 510 992-5013 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 621-3444 -title: Chief Payroll Consultant -userPassword: Password1 -uid: WyndhamO -givenName: Olympe -mail: WyndhamO@4cb9f71c0f8f42fdadb28a744475bd83.bitwarden.com -carLicense: HKVSKD -departmentNumber: 6065 -employeeType: Employee -homePhone: +1 510 914-3019 -initials: O. W. -mobile: +1 510 500-8644 -pager: +1 510 503-4772 -roomNumber: 8464 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Emp Slyteris,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emp Slyteris -sn: Slyteris -description: This is Emp Slyteris's description -facsimileTelephoneNumber: +1 213 510-5169 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 512-4558 -title: Associate Management Czar -userPassword: Password1 -uid: SlyteriE -givenName: Emp -mail: SlyteriE@60140563b5e14f1182bbd54a9d0efa93.bitwarden.com -carLicense: 3OC2L8 -departmentNumber: 7748 -employeeType: Contract -homePhone: +1 213 498-7579 -initials: E. S. -mobile: +1 213 125-1027 -pager: +1 213 863-9713 -roomNumber: 8369 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Brien Ensign,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brien Ensign -sn: Ensign -description: This is Brien Ensign's description -facsimileTelephoneNumber: +1 818 595-5775 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 432-7731 -title: Chief Management Consultant -userPassword: Password1 -uid: EnsignB -givenName: Brien -mail: EnsignB@6f20d79c56464dde992ea2750d47121a.bitwarden.com -carLicense: RC7WSD -departmentNumber: 5121 -employeeType: Normal -homePhone: +1 818 382-7275 -initials: B. E. -mobile: +1 818 570-1730 -pager: +1 818 500-5944 -roomNumber: 9758 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nicolas Whetston,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolas Whetston -sn: Whetston -description: This is Nicolas Whetston's description -facsimileTelephoneNumber: +1 213 530-3492 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 591-9300 -title: Associate Management Artist -userPassword: Password1 -uid: WhetstoN -givenName: Nicolas -mail: WhetstoN@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com -carLicense: ILLUDK -departmentNumber: 2854 -employeeType: Normal -homePhone: +1 213 124-3499 -initials: N. W. -mobile: +1 213 486-9715 -pager: +1 213 429-5192 -roomNumber: 8832 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Annalise Combaz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annalise Combaz -sn: Combaz -description: This is Annalise Combaz's description -facsimileTelephoneNumber: +1 818 826-2713 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 339-8871 -title: Junior Payroll Technician -userPassword: Password1 -uid: CombazA -givenName: Annalise -mail: CombazA@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com -carLicense: J3Y5KT -departmentNumber: 3575 -employeeType: Normal -homePhone: +1 818 535-8870 -initials: A. C. -mobile: +1 818 509-4293 -pager: +1 818 163-8867 -roomNumber: 9653 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jiri Clary,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jiri Clary -sn: Clary -description: This is Jiri Clary's description -facsimileTelephoneNumber: +1 510 181-2370 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 507-7262 -title: Chief Janitorial Consultant -userPassword: Password1 -uid: ClaryJ -givenName: Jiri -mail: ClaryJ@7a051cc2e7634983a3582a71a4e80384.bitwarden.com -carLicense: M4AXEX -departmentNumber: 3028 -employeeType: Normal -homePhone: +1 510 568-8316 -initials: J. C. -mobile: +1 510 679-2624 -pager: +1 510 640-3539 -roomNumber: 8853 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Emelia Farag,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emelia Farag -sn: Farag -description: This is Emelia Farag's description -facsimileTelephoneNumber: +1 206 189-5853 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 206 393-1760 -title: Associate Product Development Evangelist -userPassword: Password1 -uid: FaragE -givenName: Emelia -mail: FaragE@b03911e4f64b4ff791e7c32a300a48fc.bitwarden.com -carLicense: 53FVBY -departmentNumber: 2684 -employeeType: Contract -homePhone: +1 206 386-5369 -initials: E. F. -mobile: +1 206 579-8343 -pager: +1 206 804-1751 -roomNumber: 9943 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cang Calva,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cang Calva -sn: Calva -description: This is Cang Calva's description -facsimileTelephoneNumber: +1 213 633-8683 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 554-5719 -title: Chief Payroll Figurehead -userPassword: Password1 -uid: CalvaC -givenName: Cang -mail: CalvaC@fab69171647048c9ab39ecbf968a6353.bitwarden.com -carLicense: VL00SV -departmentNumber: 5220 -employeeType: Contract -homePhone: +1 213 130-1295 -initials: C. C. -mobile: +1 213 125-9508 -pager: +1 213 911-3791 -roomNumber: 8684 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anastasia Weidinger -sn: Weidinger -description: This is Anastasia Weidinger's description -facsimileTelephoneNumber: +1 213 352-8986 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 515-8162 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: WeidingA -givenName: Anastasia -mail: WeidingA@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com -carLicense: QQTKF1 -departmentNumber: 7616 -employeeType: Normal -homePhone: +1 213 698-8891 -initials: A. W. -mobile: +1 213 854-4341 -pager: +1 213 393-3976 -roomNumber: 9019 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sanjeev Tates,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanjeev Tates -sn: Tates -description: This is Sanjeev Tates's description -facsimileTelephoneNumber: +1 510 746-1296 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 724-7133 -title: Supreme Management Engineer -userPassword: Password1 -uid: TatesS -givenName: Sanjeev -mail: TatesS@b4ae1434dbd74e3f9fda915972e536aa.bitwarden.com -carLicense: 820SGN -departmentNumber: 9691 -employeeType: Normal -homePhone: +1 510 588-1608 -initials: S. T. -mobile: +1 510 580-9841 -pager: +1 510 967-6108 -roomNumber: 8606 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lindsey Mina,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lindsey Mina -sn: Mina -description: This is Lindsey Mina's description -facsimileTelephoneNumber: +1 804 418-8974 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 284-2077 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: MinaL -givenName: Lindsey -mail: MinaL@c8c34efeb3fd47f485bda2d57f298fa8.bitwarden.com -carLicense: Y6FMVV -departmentNumber: 7572 -employeeType: Contract -homePhone: +1 804 811-3236 -initials: L. M. -mobile: +1 804 791-7107 -pager: +1 804 382-9972 -roomNumber: 8430 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adeniyi Bagshaw -sn: Bagshaw -description: This is Adeniyi Bagshaw's description -facsimileTelephoneNumber: +1 415 327-8884 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 935-4555 -title: Junior Payroll Engineer -userPassword: Password1 -uid: BagshawA -givenName: Adeniyi -mail: BagshawA@2d496c580b4f4816a656973b9003a612.bitwarden.com -carLicense: TF5RAC -departmentNumber: 6630 -employeeType: Employee -homePhone: +1 415 878-5303 -initials: A. B. -mobile: +1 415 663-4673 -pager: +1 415 259-6829 -roomNumber: 9841 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yueh Gowl,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yueh Gowl -sn: Gowl -description: This is Yueh Gowl's description -facsimileTelephoneNumber: +1 510 856-4972 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 510 394-4067 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: GowlY -givenName: Yueh -mail: GowlY@68d52d672a5243b093d527c822a00702.bitwarden.com -carLicense: 6150MI -departmentNumber: 1113 -employeeType: Normal -homePhone: +1 510 669-3398 -initials: Y. G. -mobile: +1 510 491-8665 -pager: +1 510 512-5802 -roomNumber: 9028 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tandi Macquistan -sn: Macquistan -description: This is Tandi Macquistan's description -facsimileTelephoneNumber: +1 408 766-1909 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 824-1137 -title: Master Human Resources Stooge -userPassword: Password1 -uid: MacquisT -givenName: Tandi -mail: MacquisT@1bd24daedf304f73b8c022eec1639654.bitwarden.com -carLicense: DL5006 -departmentNumber: 1713 -employeeType: Employee -homePhone: +1 408 522-5859 -initials: T. M. -mobile: +1 408 110-7533 -pager: +1 408 520-8046 -roomNumber: 8686 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=America Ballarte,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: America Ballarte -sn: Ballarte -description: This is America Ballarte's description -facsimileTelephoneNumber: +1 818 438-9394 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 370-2032 -title: Associate Administrative Czar -userPassword: Password1 -uid: BallartA -givenName: America -mail: BallartA@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com -carLicense: HFHTMB -departmentNumber: 8564 -employeeType: Employee -homePhone: +1 818 976-7868 -initials: A. B. -mobile: +1 818 868-8260 -pager: +1 818 846-1252 -roomNumber: 8946 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Unreg Desjarlais -sn: Desjarlais -description: This is Unreg Desjarlais's description -facsimileTelephoneNumber: +1 818 697-6826 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 153-1863 -title: Junior Product Development Fellow -userPassword: Password1 -uid: DesjarlU -givenName: Unreg -mail: DesjarlU@2daa2d54a3ef4729ab85003e87e24fc2.bitwarden.com -carLicense: KBRJKA -departmentNumber: 6714 -employeeType: Normal -homePhone: +1 818 810-3974 -initials: U. D. -mobile: +1 818 554-9716 -pager: +1 818 493-2870 -roomNumber: 9959 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Student Center,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Student Center -sn: Center -description: This is Student Center's description -facsimileTelephoneNumber: +1 206 192-8833 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 201-4792 -title: Associate Product Testing Developer -userPassword: Password1 -uid: CenterS -givenName: Student -mail: CenterS@554afdc240874cc085face3f95650c9c.bitwarden.com -carLicense: 3JTI2Y -departmentNumber: 8807 -employeeType: Employee -homePhone: +1 206 113-9560 -initials: S. C. -mobile: +1 206 254-9113 -pager: +1 206 951-9533 -roomNumber: 9421 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jillana Cusick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jillana Cusick -sn: Cusick -description: This is Jillana Cusick's description -facsimileTelephoneNumber: +1 804 358-3028 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 732-2909 -title: Chief Product Testing President -userPassword: Password1 -uid: CusickJ -givenName: Jillana -mail: CusickJ@5464c7892e2c49b9ab8b77fcfa248401.bitwarden.com -carLicense: JK1DQG -departmentNumber: 8182 -employeeType: Employee -homePhone: +1 804 777-2299 -initials: J. C. -mobile: +1 804 763-9966 -pager: +1 804 476-8508 -roomNumber: 9633 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChiKeung Matton -sn: Matton -description: This is ChiKeung Matton's description -facsimileTelephoneNumber: +1 408 759-2443 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 408 694-2996 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: MattonC -givenName: ChiKeung -mail: MattonC@4ffdbcbdfbba4f78b2cb0e4b52273909.bitwarden.com -carLicense: NU2WYF -departmentNumber: 6456 -employeeType: Normal -homePhone: +1 408 893-8011 -initials: C. M. -mobile: +1 408 977-9150 -pager: +1 408 717-7911 -roomNumber: 9890 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Edmund Caine,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edmund Caine -sn: Caine -description: This is Edmund Caine's description -facsimileTelephoneNumber: +1 408 759-2591 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 375-1234 -title: Chief Janitorial Punk -userPassword: Password1 -uid: CaineE -givenName: Edmund -mail: CaineE@1fa19cc59b0a4b048ab223f06dc01275.bitwarden.com -carLicense: IPTBAD -departmentNumber: 3948 -employeeType: Employee -homePhone: +1 408 925-6036 -initials: E. C. -mobile: +1 408 427-5625 -pager: +1 408 243-5009 -roomNumber: 8473 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elaine Ketsler -sn: Ketsler -description: This is Elaine Ketsler's description -facsimileTelephoneNumber: +1 818 605-5594 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 654-8184 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: KetslerE -givenName: Elaine -mail: KetslerE@df756e7ca37d42aaab0cfecdbe1dbcdc.bitwarden.com -carLicense: W3MJVD -departmentNumber: 8302 -employeeType: Employee -homePhone: +1 818 985-3632 -initials: E. K. -mobile: +1 818 757-1625 -pager: +1 818 467-4941 -roomNumber: 8385 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lawrence Rajczi -sn: Rajczi -description: This is Lawrence Rajczi's description -facsimileTelephoneNumber: +1 415 822-4918 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 113-4836 -title: Associate Product Development Technician -userPassword: Password1 -uid: RajcziL -givenName: Lawrence -mail: RajcziL@a7efbad4dbbd458699231bf651e29d1b.bitwarden.com -carLicense: RY3KWK -departmentNumber: 7855 -employeeType: Contract -homePhone: +1 415 483-9336 -initials: L. R. -mobile: +1 415 351-8256 -pager: +1 415 354-9941 -roomNumber: 9541 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fleur Dosanjh -sn: Dosanjh -description: This is Fleur Dosanjh's description -facsimileTelephoneNumber: +1 804 649-7393 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 197-6651 -title: Chief Payroll Dictator -userPassword: Password1 -uid: DosanjhF -givenName: Fleur -mail: DosanjhF@c2b132c5eea24821b75062bcddc065ce.bitwarden.com -carLicense: SKBO0A -departmentNumber: 8424 -employeeType: Contract -homePhone: +1 804 841-9388 -initials: F. D. -mobile: +1 804 318-4911 -pager: +1 804 531-1066 -roomNumber: 9745 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Faith Langenberg,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faith Langenberg -sn: Langenberg -description: This is Faith Langenberg's description -facsimileTelephoneNumber: +1 206 851-4802 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 135-4474 -title: Chief Product Development Manager -userPassword: Password1 -uid: LangenbF -givenName: Faith -mail: LangenbF@25309a8b2a9a4469a8c716ccd88d0aa6.bitwarden.com -carLicense: S4KKPH -departmentNumber: 4665 -employeeType: Employee -homePhone: +1 206 885-1954 -initials: F. L. -mobile: +1 206 556-7119 -pager: +1 206 650-4881 -roomNumber: 9145 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gussi Zisu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gussi Zisu -sn: Zisu -description: This is Gussi Zisu's description -facsimileTelephoneNumber: +1 206 602-2022 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 206 673-5560 -title: Chief Product Development Grunt -userPassword: Password1 -uid: ZisuG -givenName: Gussi -mail: ZisuG@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com -carLicense: OJJ5V4 -departmentNumber: 8979 -employeeType: Employee -homePhone: +1 206 839-5655 -initials: G. Z. -mobile: +1 206 868-4417 -pager: +1 206 982-9653 -roomNumber: 8075 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Enrica Scss,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Enrica Scss -sn: Scss -description: This is Enrica Scss's description -facsimileTelephoneNumber: +1 818 548-6818 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 923-8164 -title: Master Human Resources Architect -userPassword: Password1 -uid: ScssE -givenName: Enrica -mail: ScssE@8dadc7ef65624c618ad03f0f74792b58.bitwarden.com -carLicense: FEGVRF -departmentNumber: 1578 -employeeType: Employee -homePhone: +1 818 991-6495 -initials: E. S. -mobile: +1 818 414-5570 -pager: +1 818 470-9418 -roomNumber: 8843 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Franklin Mahlig,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franklin Mahlig -sn: Mahlig -description: This is Franklin Mahlig's description -facsimileTelephoneNumber: +1 408 904-6096 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 408 758-7642 -title: Chief Payroll Dictator -userPassword: Password1 -uid: MahligF -givenName: Franklin -mail: MahligF@fa39eb6119174bbca1d9160100211484.bitwarden.com -carLicense: MHOCDQ -departmentNumber: 6243 -employeeType: Employee -homePhone: +1 408 447-5346 -initials: F. M. -mobile: +1 408 121-4799 -pager: +1 408 648-4108 -roomNumber: 8009 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hazem Doerksen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hazem Doerksen -sn: Doerksen -description: This is Hazem Doerksen's description -facsimileTelephoneNumber: +1 213 282-9697 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 967-1567 -title: Associate Management Sales Rep -userPassword: Password1 -uid: DoerkseH -givenName: Hazem -mail: DoerkseH@0c71a55b89b94698aa504239bb77212e.bitwarden.com -carLicense: EYDVJU -departmentNumber: 1670 -employeeType: Contract -homePhone: +1 213 742-4332 -initials: H. D. -mobile: +1 213 726-3681 -pager: +1 213 586-6462 -roomNumber: 9200 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sabra Williams,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabra Williams -sn: Williams -description: This is Sabra Williams's description -facsimileTelephoneNumber: +1 804 709-2794 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 789-2848 -title: Master Payroll Writer -userPassword: Password1 -uid: WilliamS -givenName: Sabra -mail: WilliamS@dbff573db07a4ff3be645ffc89fde555.bitwarden.com -carLicense: C2K6GC -departmentNumber: 1522 -employeeType: Employee -homePhone: +1 804 672-2862 -initials: S. W. -mobile: +1 804 989-4025 -pager: +1 804 990-6449 -roomNumber: 9734 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Des Terrell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Des Terrell -sn: Terrell -description: This is Des Terrell's description -facsimileTelephoneNumber: +1 408 381-4126 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 855-1645 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: TerrellD -givenName: Des -mail: TerrellD@9bfb2ce2091b4362a561113661f40d4b.bitwarden.com -carLicense: D385LH -departmentNumber: 9360 -employeeType: Employee -homePhone: +1 408 839-6032 -initials: D. T. -mobile: +1 408 211-9194 -pager: +1 408 403-3245 -roomNumber: 9049 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jolene Casey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolene Casey -sn: Casey -description: This is Jolene Casey's description -facsimileTelephoneNumber: +1 408 730-5272 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 186-3478 -title: Junior Product Development Visionary -userPassword: Password1 -uid: CaseyJ -givenName: Jolene -mail: CaseyJ@9b70e886a18d422fa3404374b5a9613c.bitwarden.com -carLicense: P3XFMU -departmentNumber: 3437 -employeeType: Contract -homePhone: +1 408 811-2591 -initials: J. C. -mobile: +1 408 604-6117 -pager: +1 408 398-8259 -roomNumber: 8665 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karilynn Dekeyser,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karilynn Dekeyser -sn: Dekeyser -description: This is Karilynn Dekeyser's description -facsimileTelephoneNumber: +1 415 973-1391 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 183-1833 -title: Supreme Management Admin -userPassword: Password1 -uid: DekeyseK -givenName: Karilynn -mail: DekeyseK@87ac1189e97646f890363efe4db63ec0.bitwarden.com -carLicense: 5HVWHP -departmentNumber: 1338 -employeeType: Normal -homePhone: +1 415 954-1700 -initials: K. D. -mobile: +1 415 237-1060 -pager: +1 415 652-2088 -roomNumber: 8904 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gaal Gach,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaal Gach -sn: Gach -description: This is Gaal Gach's description -facsimileTelephoneNumber: +1 408 828-7370 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 635-5244 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: GachG -givenName: Gaal -mail: GachG@f3c670844ee04d96918bc7abde299f48.bitwarden.com -carLicense: 9A9FW3 -departmentNumber: 8733 -employeeType: Contract -homePhone: +1 408 668-4571 -initials: G. G. -mobile: +1 408 245-7375 -pager: +1 408 993-2771 -roomNumber: 9727 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelia Bianchi -sn: Bianchi -description: This is Shelia Bianchi's description -facsimileTelephoneNumber: +1 213 461-5974 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 640-3684 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: BianchiS -givenName: Shelia -mail: BianchiS@52d447bfc2464a51a20925b35098fffa.bitwarden.com -carLicense: VGWP4Q -departmentNumber: 8044 -employeeType: Employee -homePhone: +1 213 787-5188 -initials: S. B. -mobile: +1 213 802-1022 -pager: +1 213 916-3186 -roomNumber: 8942 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Emory Davalo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emory Davalo -sn: Davalo -description: This is Emory Davalo's description -facsimileTelephoneNumber: +1 804 742-4912 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 177-3552 -title: Chief Management Stooge -userPassword: Password1 -uid: DavaloE -givenName: Emory -mail: DavaloE@38889c54d4b943c0b9fc26641a496258.bitwarden.com -carLicense: 3Q1TWL -departmentNumber: 6721 -employeeType: Normal -homePhone: +1 804 725-5108 -initials: E. D. -mobile: +1 804 370-3571 -pager: +1 804 617-4531 -roomNumber: 8251 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leia Boccali,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leia Boccali -sn: Boccali -description: This is Leia Boccali's description -facsimileTelephoneNumber: +1 818 169-6855 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 221-8874 -title: Supreme Management Fellow -userPassword: Password1 -uid: BoccaliL -givenName: Leia -mail: BoccaliL@c322231add6444d08c5c332c0290fe75.bitwarden.com -carLicense: VSM611 -departmentNumber: 4834 -employeeType: Contract -homePhone: +1 818 995-7730 -initials: L. B. -mobile: +1 818 858-9881 -pager: +1 818 520-9179 -roomNumber: 8983 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hollie Redding,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hollie Redding -sn: Redding -description: This is Hollie Redding's description -facsimileTelephoneNumber: +1 804 734-1936 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 775-6665 -title: Master Payroll Grunt -userPassword: Password1 -uid: ReddingH -givenName: Hollie -mail: ReddingH@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com -carLicense: KNW5PL -departmentNumber: 4837 -employeeType: Employee -homePhone: +1 804 487-3915 -initials: H. R. -mobile: +1 804 288-5842 -pager: +1 804 977-4015 -roomNumber: 9148 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maurita Hewett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurita Hewett -sn: Hewett -description: This is Maurita Hewett's description -facsimileTelephoneNumber: +1 804 699-7799 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 400-7023 -title: Master Human Resources Vice President -userPassword: Password1 -uid: HewettM -givenName: Maurita -mail: HewettM@3b31b1e22b674d48829733c162895a88.bitwarden.com -carLicense: E3CF4Q -departmentNumber: 3313 -employeeType: Normal -homePhone: +1 804 643-1197 -initials: M. H. -mobile: +1 804 801-4038 -pager: +1 804 596-1419 -roomNumber: 8189 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alberta Popel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alberta Popel -sn: Popel -description: This is Alberta Popel's description -facsimileTelephoneNumber: +1 415 469-4472 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 647-7492 -title: Chief Product Testing President -userPassword: Password1 -uid: PopelA -givenName: Alberta -mail: PopelA@4d42e606140043c2b9dd8fa49a74f077.bitwarden.com -carLicense: R5WYQP -departmentNumber: 3928 -employeeType: Contract -homePhone: +1 415 618-1796 -initials: A. P. -mobile: +1 415 516-1161 -pager: +1 415 348-3392 -roomNumber: 8625 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorilyn Iribarren -sn: Iribarren -description: This is Lorilyn Iribarren's description -facsimileTelephoneNumber: +1 408 893-3507 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 561-6372 -title: Master Peons Evangelist -userPassword: Password1 -uid: IribarrL -givenName: Lorilyn -mail: IribarrL@3e32ccd0c8a847b6ac8fb9c09f485fe3.bitwarden.com -carLicense: 1KQIFO -departmentNumber: 1567 -employeeType: Contract -homePhone: +1 408 693-7462 -initials: L. I. -mobile: +1 408 251-7516 -pager: +1 408 385-9451 -roomNumber: 8319 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Warden Norgaard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Warden Norgaard -sn: Norgaard -description: This is Warden Norgaard's description -facsimileTelephoneNumber: +1 510 330-9980 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 162-6662 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: NorgaarW -givenName: Warden -mail: NorgaarW@56a9fc98293a421ebffe47b36941f797.bitwarden.com -carLicense: XB8F6C -departmentNumber: 6951 -employeeType: Normal -homePhone: +1 510 665-4763 -initials: W. N. -mobile: +1 510 150-6472 -pager: +1 510 556-5023 -roomNumber: 9483 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherilynn Schwab -sn: Schwab -description: This is Cherilynn Schwab's description -facsimileTelephoneNumber: +1 213 773-3271 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 206-2043 -title: Associate Administrative Punk -userPassword: Password1 -uid: SchwabC -givenName: Cherilynn -mail: SchwabC@1aebb083de1f400e95541f63da23f2c1.bitwarden.com -carLicense: EMNU47 -departmentNumber: 9577 -employeeType: Normal -homePhone: +1 213 356-9978 -initials: C. S. -mobile: +1 213 303-5726 -pager: +1 213 444-7832 -roomNumber: 8929 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Stephine Este,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephine Este -sn: Este -description: This is Stephine Este's description -facsimileTelephoneNumber: +1 510 958-9793 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 129-9940 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: EsteS -givenName: Stephine -mail: EsteS@cdc522ed20cd44a189467c4e7a11e69b.bitwarden.com -carLicense: M9OFNS -departmentNumber: 1024 -employeeType: Normal -homePhone: +1 510 456-6827 -initials: S. E. -mobile: +1 510 553-8904 -pager: +1 510 616-1098 -roomNumber: 8023 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenny Hunsberger -sn: Hunsberger -description: This is Jenny Hunsberger's description -facsimileTelephoneNumber: +1 206 328-4399 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 740-9207 -title: Junior Human Resources Madonna -userPassword: Password1 -uid: HunsberJ -givenName: Jenny -mail: HunsberJ@158d3f3fe926431185097653519b63f6.bitwarden.com -carLicense: YV2QQ5 -departmentNumber: 9056 -employeeType: Normal -homePhone: +1 206 240-4158 -initials: J. H. -mobile: +1 206 547-4614 -pager: +1 206 892-5650 -roomNumber: 9432 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Allx Vezeau,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allx Vezeau -sn: Vezeau -description: This is Allx Vezeau's description -facsimileTelephoneNumber: +1 213 514-9164 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 364-1859 -title: Master Product Development Manager -userPassword: Password1 -uid: VezeauA -givenName: Allx -mail: VezeauA@85300bcc110a498eb3ba9f0540413134.bitwarden.com -carLicense: 29U099 -departmentNumber: 5941 -employeeType: Employee -homePhone: +1 213 441-5378 -initials: A. V. -mobile: +1 213 836-6645 -pager: +1 213 112-8411 -roomNumber: 9675 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristen Tattenbaum -sn: Tattenbaum -description: This is Kristen Tattenbaum's description -facsimileTelephoneNumber: +1 213 690-7509 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 357-3455 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: TattenbK -givenName: Kristen -mail: TattenbK@9beb3a1b2fdf4217931814a85ad3b3c8.bitwarden.com -carLicense: TQRDL2 -departmentNumber: 4199 -employeeType: Contract -homePhone: +1 213 171-1682 -initials: K. T. -mobile: +1 213 153-7953 -pager: +1 213 153-9273 -roomNumber: 9655 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hattie Offers,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hattie Offers -sn: Offers -description: This is Hattie Offers's description -facsimileTelephoneNumber: +1 206 655-7757 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 119-3079 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: OffersH -givenName: Hattie -mail: OffersH@0db8d6bb53fc45408829aecc391083c0.bitwarden.com -carLicense: 7984FF -departmentNumber: 1959 -employeeType: Employee -homePhone: +1 206 540-9515 -initials: H. O. -mobile: +1 206 552-7698 -pager: +1 206 286-2109 -roomNumber: 8421 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Priti Stowe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Priti Stowe -sn: Stowe -description: This is Priti Stowe's description -facsimileTelephoneNumber: +1 804 274-7003 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 757-2419 -title: Master Product Testing Consultant -userPassword: Password1 -uid: StoweP -givenName: Priti -mail: StoweP@22b03905699c4e05b21e937a3135b87c.bitwarden.com -carLicense: AL3VLT -departmentNumber: 1560 -employeeType: Employee -homePhone: +1 804 194-6813 -initials: P. S. -mobile: +1 804 428-9771 -pager: +1 804 684-6226 -roomNumber: 8681 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antonietta Sawchuk -sn: Sawchuk -description: This is Antonietta Sawchuk's description -facsimileTelephoneNumber: +1 408 652-5778 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 522-8677 -title: Associate Payroll Stooge -userPassword: Password1 -uid: SawchukA -givenName: Antonietta -mail: SawchukA@5d8cc64a505e4795adb2db74fb44a1cf.bitwarden.com -carLicense: N01I72 -departmentNumber: 9647 -employeeType: Employee -homePhone: +1 408 295-6642 -initials: A. S. -mobile: +1 408 731-1891 -pager: +1 408 720-5693 -roomNumber: 8806 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tilly Lienemann,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilly Lienemann -sn: Lienemann -description: This is Tilly Lienemann's description -facsimileTelephoneNumber: +1 408 282-7240 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 408 365-8070 -title: Master Product Development Janitor -userPassword: Password1 -uid: LienemaT -givenName: Tilly -mail: LienemaT@2701f21728624e23b32e7e4a717079a5.bitwarden.com -carLicense: DF5RLY -departmentNumber: 9001 -employeeType: Normal -homePhone: +1 408 970-6134 -initials: T. L. -mobile: +1 408 956-5142 -pager: +1 408 607-6126 -roomNumber: 9878 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Constantina Totaro,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constantina Totaro -sn: Totaro -description: This is Constantina Totaro's description -facsimileTelephoneNumber: +1 510 113-4159 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 510 492-4540 -title: Chief Product Development Punk -userPassword: Password1 -uid: TotaroC -givenName: Constantina -mail: TotaroC@021252a973814ed5ba107ac123b1e8a2.bitwarden.com -carLicense: T0EO38 -departmentNumber: 4601 -employeeType: Employee -homePhone: +1 510 991-9636 -initials: C. T. -mobile: +1 510 300-8450 -pager: +1 510 405-5025 -roomNumber: 8879 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bendite Basser,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bendite Basser -sn: Basser -description: This is Bendite Basser's description -facsimileTelephoneNumber: +1 804 382-7793 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 582-3461 -title: Master Management Engineer -userPassword: Password1 -uid: BasserB -givenName: Bendite -mail: BasserB@d3b588680db34a60a238a39048e01e24.bitwarden.com -carLicense: Q4KBDQ -departmentNumber: 7670 -employeeType: Employee -homePhone: +1 804 428-3497 -initials: B. B. -mobile: +1 804 503-1244 -pager: +1 804 373-5128 -roomNumber: 8832 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Trish Ettridge,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trish Ettridge -sn: Ettridge -description: This is Trish Ettridge's description -facsimileTelephoneNumber: +1 213 732-6960 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 531-9784 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: EttridgT -givenName: Trish -mail: EttridgT@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com -carLicense: UAVFHK -departmentNumber: 6921 -employeeType: Contract -homePhone: +1 213 625-7696 -initials: T. E. -mobile: +1 213 696-9933 -pager: +1 213 998-1819 -roomNumber: 9024 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leola Musca,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leola Musca -sn: Musca -description: This is Leola Musca's description -facsimileTelephoneNumber: +1 213 491-3151 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 610-2605 -title: Chief Peons Fellow -userPassword: Password1 -uid: MuscaL -givenName: Leola -mail: MuscaL@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com -carLicense: 1IXIRY -departmentNumber: 2505 -employeeType: Normal -homePhone: +1 213 663-1060 -initials: L. M. -mobile: +1 213 286-7392 -pager: +1 213 819-5506 -roomNumber: 9301 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Oral Priestley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oral Priestley -sn: Priestley -description: This is Oral Priestley's description -facsimileTelephoneNumber: +1 408 914-2906 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 714-2299 -title: Supreme Peons Mascot -userPassword: Password1 -uid: PriestlO -givenName: Oral -mail: PriestlO@d2ecbc224647418fad2b4f9f972875ba.bitwarden.com -carLicense: OGQ4BL -departmentNumber: 2385 -employeeType: Normal -homePhone: +1 408 135-1675 -initials: O. P. -mobile: +1 408 960-1613 -pager: +1 408 747-5152 -roomNumber: 8188 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yonik Yurach,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yonik Yurach -sn: Yurach -description: This is Yonik Yurach's description -facsimileTelephoneNumber: +1 408 557-8051 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 408 986-4140 -title: Supreme Product Testing Manager -userPassword: Password1 -uid: YurachY -givenName: Yonik -mail: YurachY@91c2f03d5f5f46289c8711d8060fde6a.bitwarden.com -carLicense: 8FVEXN -departmentNumber: 2365 -employeeType: Normal -homePhone: +1 408 909-9864 -initials: Y. Y. -mobile: +1 408 203-4417 -pager: +1 408 840-4691 -roomNumber: 9025 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hudai Weare,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hudai Weare -sn: Weare -description: This is Hudai Weare's description -facsimileTelephoneNumber: +1 213 363-5898 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 680-3753 -title: Associate Peons Director -userPassword: Password1 -uid: WeareH -givenName: Hudai -mail: WeareH@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com -carLicense: G0UAYQ -departmentNumber: 9366 -employeeType: Contract -homePhone: +1 213 263-5639 -initials: H. W. -mobile: +1 213 977-3770 -pager: +1 213 985-8592 -roomNumber: 9580 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Miguela Brodersen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miguela Brodersen -sn: Brodersen -description: This is Miguela Brodersen's description -facsimileTelephoneNumber: +1 415 740-3209 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 912-6568 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: BrodersM -givenName: Miguela -mail: BrodersM@6a78994653434b4c8f51f05c394987d3.bitwarden.com -carLicense: XT5N8B -departmentNumber: 2793 -employeeType: Employee -homePhone: +1 415 981-5030 -initials: M. B. -mobile: +1 415 961-6614 -pager: +1 415 671-4419 -roomNumber: 9995 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sohale Suomela,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sohale Suomela -sn: Suomela -description: This is Sohale Suomela's description -facsimileTelephoneNumber: +1 213 222-3187 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 833-6868 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: SuomelaS -givenName: Sohale -mail: SuomelaS@67c03444c05a42a3b6969db268f587ab.bitwarden.com -carLicense: U4NUBK -departmentNumber: 4379 -employeeType: Employee -homePhone: +1 213 730-8794 -initials: S. S. -mobile: +1 213 756-3598 -pager: +1 213 144-9851 -roomNumber: 9893 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vijayalaks Beckham -sn: Beckham -description: This is Vijayalaks Beckham's description -facsimileTelephoneNumber: +1 408 591-4606 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 620-3736 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: BeckhamV -givenName: Vijayalaks -mail: BeckhamV@5dfbfc6402474d4a84deb330c0f4315f.bitwarden.com -carLicense: AO3CGM -departmentNumber: 4486 -employeeType: Normal -homePhone: +1 408 423-9216 -initials: V. B. -mobile: +1 408 344-8740 -pager: +1 408 577-4599 -roomNumber: 8713 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yonik Murison,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yonik Murison -sn: Murison -description: This is Yonik Murison's description -facsimileTelephoneNumber: +1 408 804-6289 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 515-4649 -title: Supreme Management Manager -userPassword: Password1 -uid: MurisonY -givenName: Yonik -mail: MurisonY@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com -carLicense: XTFP3O -departmentNumber: 6940 -employeeType: Normal -homePhone: +1 408 955-7910 -initials: Y. M. -mobile: +1 408 476-8765 -pager: +1 408 858-9614 -roomNumber: 8211 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Delora Grund,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delora Grund -sn: Grund -description: This is Delora Grund's description -facsimileTelephoneNumber: +1 804 559-3008 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 583-1854 -title: Master Payroll Janitor -userPassword: Password1 -uid: GrundD -givenName: Delora -mail: GrundD@cf4fe07ebe1a44aab01df6b77e2a6602.bitwarden.com -carLicense: U7S2T5 -departmentNumber: 5332 -employeeType: Normal -homePhone: +1 804 691-5163 -initials: D. G. -mobile: +1 804 402-3640 -pager: +1 804 946-5660 -roomNumber: 8633 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mietek Humes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mietek Humes -sn: Humes -description: This is Mietek Humes's description -facsimileTelephoneNumber: +1 415 574-5087 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 415 409-9155 -title: Master Human Resources Fellow -userPassword: Password1 -uid: HumesM -givenName: Mietek -mail: HumesM@10d775dcf33f4a8a85529178af9b9387.bitwarden.com -carLicense: D9FO85 -departmentNumber: 8331 -employeeType: Employee -homePhone: +1 415 619-4190 -initials: M. H. -mobile: +1 415 835-5969 -pager: +1 415 828-6608 -roomNumber: 8656 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lili Cozzi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lili Cozzi -sn: Cozzi -description: This is Lili Cozzi's description -facsimileTelephoneNumber: +1 804 198-3135 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 957-6803 -title: Associate Peons Architect -userPassword: Password1 -uid: CozziL -givenName: Lili -mail: CozziL@aabaf1b2cc7f4426bf4762a10375cf8d.bitwarden.com -carLicense: 1FFYGJ -departmentNumber: 2113 -employeeType: Contract -homePhone: +1 804 974-9200 -initials: L. C. -mobile: +1 804 343-7463 -pager: +1 804 659-4249 -roomNumber: 9093 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mil Badmington,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mil Badmington -sn: Badmington -description: This is Mil Badmington's description -facsimileTelephoneNumber: +1 818 111-5275 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 111-8099 -title: Master Administrative Punk -userPassword: Password1 -uid: BadmingM -givenName: Mil -mail: BadmingM@38d6239d446040c7892f72bde901e5dc.bitwarden.com -carLicense: XFM8VQ -departmentNumber: 7137 -employeeType: Employee -homePhone: +1 818 871-1578 -initials: M. B. -mobile: +1 818 616-6097 -pager: +1 818 956-2016 -roomNumber: 9313 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kittie Chapman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kittie Chapman -sn: Chapman -description: This is Kittie Chapman's description -facsimileTelephoneNumber: +1 213 102-7592 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 490-1835 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: ChapmanK -givenName: Kittie -mail: ChapmanK@a6ec4676b0ad44f28916d133e3a83b4d.bitwarden.com -carLicense: 3RDUXO -departmentNumber: 4422 -employeeType: Contract -homePhone: +1 213 453-3674 -initials: K. C. -mobile: +1 213 961-4683 -pager: +1 213 188-6184 -roomNumber: 9580 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Las Bongers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Las Bongers -sn: Bongers -description: This is Las Bongers's description -facsimileTelephoneNumber: +1 818 701-9077 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 818 555-4052 -title: Chief Payroll Janitor -userPassword: Password1 -uid: BongersL -givenName: Las -mail: BongersL@fa6c45f2cf394efe80e833f5a6b3151c.bitwarden.com -carLicense: M9PBCG -departmentNumber: 5782 -employeeType: Normal -homePhone: +1 818 717-9826 -initials: L. B. -mobile: +1 818 943-6184 -pager: +1 818 656-2324 -roomNumber: 9002 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ramez Beisel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramez Beisel -sn: Beisel -description: This is Ramez Beisel's description -facsimileTelephoneNumber: +1 804 553-6512 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 804 626-7328 -title: Associate Administrative Developer -userPassword: Password1 -uid: BeiselR -givenName: Ramez -mail: BeiselR@6ecbd725f2a04ad095c3bc8afaa5366e.bitwarden.com -carLicense: A71MGO -departmentNumber: 5128 -employeeType: Employee -homePhone: +1 804 513-7694 -initials: R. B. -mobile: +1 804 274-6458 -pager: +1 804 581-6706 -roomNumber: 9391 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lisabeth Burns -sn: Burns -description: This is Lisabeth Burns's description -facsimileTelephoneNumber: +1 510 234-1411 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 869-3308 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: BurnsL -givenName: Lisabeth -mail: BurnsL@060ddcf2c5744483943863ab0571b0e9.bitwarden.com -carLicense: QDAOFI -departmentNumber: 7306 -employeeType: Contract -homePhone: +1 510 653-2340 -initials: L. B. -mobile: +1 510 460-7330 -pager: +1 510 250-7660 -roomNumber: 8136 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gerladina Miello,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerladina Miello -sn: Miello -description: This is Gerladina Miello's description -facsimileTelephoneNumber: +1 804 646-8651 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 362-6854 -title: Master Human Resources Vice President -userPassword: Password1 -uid: MielloG -givenName: Gerladina -mail: MielloG@2347921fc32f42b59e1beb7c60e45e2c.bitwarden.com -carLicense: X3VF3J -departmentNumber: 7762 -employeeType: Normal -homePhone: +1 804 133-7141 -initials: G. M. -mobile: +1 804 276-9390 -pager: +1 804 704-5134 -roomNumber: 9768 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hernan Aversa,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hernan Aversa -sn: Aversa -description: This is Hernan Aversa's description -facsimileTelephoneNumber: +1 206 274-4299 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 615-6745 -title: Chief Human Resources Admin -userPassword: Password1 -uid: AversaH -givenName: Hernan -mail: AversaH@fac57f1f10364a88aa5ab37aeecbc8a1.bitwarden.com -carLicense: NIIM7Q -departmentNumber: 7883 -employeeType: Employee -homePhone: +1 206 717-6837 -initials: H. A. -mobile: +1 206 972-2239 -pager: +1 206 398-4287 -roomNumber: 9372 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rozanne Botting,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozanne Botting -sn: Botting -description: This is Rozanne Botting's description -facsimileTelephoneNumber: +1 510 501-5114 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 262-3397 -title: Junior Product Testing Assistant -userPassword: Password1 -uid: BottingR -givenName: Rozanne -mail: BottingR@22cb224a80984684b19d5e903a9e8f92.bitwarden.com -carLicense: KSQSFF -departmentNumber: 7364 -employeeType: Contract -homePhone: +1 510 203-4478 -initials: R. B. -mobile: +1 510 491-5823 -pager: +1 510 785-8421 -roomNumber: 9429 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ende Pietropaolo -sn: Pietropaolo -description: This is Ende Pietropaolo's description -facsimileTelephoneNumber: +1 206 135-8856 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 455-9478 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: PietropE -givenName: Ende -mail: PietropE@5fcb291282204187a9874bd0f7e51920.bitwarden.com -carLicense: NOKEJH -departmentNumber: 9850 -employeeType: Normal -homePhone: +1 206 156-1089 -initials: E. P. -mobile: +1 206 779-9308 -pager: +1 206 110-8050 -roomNumber: 9987 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Amandy Ganness,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amandy Ganness -sn: Ganness -description: This is Amandy Ganness's description -facsimileTelephoneNumber: +1 510 518-5731 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 909-6036 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: GannessA -givenName: Amandy -mail: GannessA@0896302a59e8422abf0d271687a03fd4.bitwarden.com -carLicense: 6YG1YY -departmentNumber: 9100 -employeeType: Contract -homePhone: +1 510 721-7896 -initials: A. G. -mobile: +1 510 544-9853 -pager: +1 510 235-8895 -roomNumber: 8419 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jasmina Lorenc -sn: Lorenc -description: This is Jasmina Lorenc's description -facsimileTelephoneNumber: +1 804 894-6214 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 612-9627 -title: Associate Product Development Manager -userPassword: Password1 -uid: LorencJ -givenName: Jasmina -mail: LorencJ@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com -carLicense: WKRBCL -departmentNumber: 2715 -employeeType: Employee -homePhone: +1 804 333-5487 -initials: J. L. -mobile: +1 804 626-2201 -pager: +1 804 179-6329 -roomNumber: 8622 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lisabeth Joll,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lisabeth Joll -sn: Joll -description: This is Lisabeth Joll's description -facsimileTelephoneNumber: +1 804 498-2802 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 560-1999 -title: Associate Administrative Vice President -userPassword: Password1 -uid: JollL -givenName: Lisabeth -mail: JollL@a214e2b7ea354ade82afd96303921437.bitwarden.com -carLicense: IOOUDN -departmentNumber: 9736 -employeeType: Contract -homePhone: +1 804 987-4094 -initials: L. J. -mobile: +1 804 507-1562 -pager: +1 804 910-1124 -roomNumber: 8231 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hillary Pintado,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hillary Pintado -sn: Pintado -description: This is Hillary Pintado's description -facsimileTelephoneNumber: +1 213 584-9722 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 953-6595 -title: Associate Janitorial Technician -userPassword: Password1 -uid: PintadoH -givenName: Hillary -mail: PintadoH@9c3ffda5676446e88677016f51b0aafc.bitwarden.com -carLicense: C279LH -departmentNumber: 8768 -employeeType: Employee -homePhone: +1 213 265-1560 -initials: H. P. -mobile: +1 213 879-8332 -pager: +1 213 741-8945 -roomNumber: 8662 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nadean Fiorile,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nadean Fiorile -sn: Fiorile -description: This is Nadean Fiorile's description -facsimileTelephoneNumber: +1 818 306-2148 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 634-5016 -title: Master Management Developer -userPassword: Password1 -uid: FiorileN -givenName: Nadean -mail: FiorileN@67e1d92e08fe4a64be64c20e9ec9029c.bitwarden.com -carLicense: OVCAJY -departmentNumber: 2855 -employeeType: Contract -homePhone: +1 818 133-8216 -initials: N. F. -mobile: +1 818 569-1992 -pager: +1 818 723-3669 -roomNumber: 8718 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sohayla Ip,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sohayla Ip -sn: Ip -description: This is Sohayla Ip's description -facsimileTelephoneNumber: +1 206 793-5784 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 710-6260 -title: Master Product Development Assistant -userPassword: Password1 -uid: IpS -givenName: Sohayla -mail: IpS@6f419933f74e4397b4bf8d2ab48fbfaa.bitwarden.com -carLicense: ORCJKV -departmentNumber: 5789 -employeeType: Contract -homePhone: +1 206 686-9593 -initials: S. I. -mobile: +1 206 764-9741 -pager: +1 206 755-8914 -roomNumber: 9365 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ashley Seagle,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashley Seagle -sn: Seagle -description: This is Ashley Seagle's description -facsimileTelephoneNumber: +1 818 277-2488 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 818 213-6703 -title: Supreme Payroll Sales Rep -userPassword: Password1 -uid: SeagleA -givenName: Ashley -mail: SeagleA@404a4cf774b84260ad9c4cf63634551c.bitwarden.com -carLicense: CF9DDG -departmentNumber: 8911 -employeeType: Contract -homePhone: +1 818 134-6862 -initials: A. S. -mobile: +1 818 534-1199 -pager: +1 818 893-2635 -roomNumber: 8541 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Christoph Dwyer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christoph Dwyer -sn: Dwyer -description: This is Christoph Dwyer's description -facsimileTelephoneNumber: +1 408 107-8926 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 774-3917 -title: Master Product Development Visionary -userPassword: Password1 -uid: DwyerC -givenName: Christoph -mail: DwyerC@4cf65bbff1914896934f97301ec7a0ec.bitwarden.com -carLicense: PILVJS -departmentNumber: 1884 -employeeType: Employee -homePhone: +1 408 593-6019 -initials: C. D. -mobile: +1 408 623-7810 -pager: +1 408 372-5183 -roomNumber: 8899 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Minnesota Reich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minnesota Reich -sn: Reich -description: This is Minnesota Reich's description -facsimileTelephoneNumber: +1 415 518-7190 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 673-2213 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: ReichM -givenName: Minnesota -mail: ReichM@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com -carLicense: 512GQB -departmentNumber: 7732 -employeeType: Normal -homePhone: +1 415 455-8547 -initials: M. R. -mobile: +1 415 411-1972 -pager: +1 415 671-4203 -roomNumber: 8653 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Revkah Niebudek -sn: Niebudek -description: This is Revkah Niebudek's description -facsimileTelephoneNumber: +1 510 179-6695 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 981-3291 -title: Junior Human Resources Mascot -userPassword: Password1 -uid: NiebudeR -givenName: Revkah -mail: NiebudeR@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com -carLicense: NB9QQJ -departmentNumber: 9352 -employeeType: Contract -homePhone: +1 510 140-6288 -initials: R. N. -mobile: +1 510 915-2787 -pager: +1 510 250-1877 -roomNumber: 8952 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marilyn Godden,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marilyn Godden -sn: Godden -description: This is Marilyn Godden's description -facsimileTelephoneNumber: +1 415 877-9206 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 434-9938 -title: Chief Product Development Warrior -userPassword: Password1 -uid: GoddenM -givenName: Marilyn -mail: GoddenM@80ad4e27922841e2b293619d8459a898.bitwarden.com -carLicense: 4WWC94 -departmentNumber: 5720 -employeeType: Employee -homePhone: +1 415 304-3639 -initials: M. G. -mobile: +1 415 593-6133 -pager: +1 415 793-5528 -roomNumber: 9855 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Weiping Choynowska,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weiping Choynowska -sn: Choynowska -description: This is Weiping Choynowska's description -facsimileTelephoneNumber: +1 206 589-9853 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 525-7534 -title: Supreme Management Vice President -userPassword: Password1 -uid: ChoynowW -givenName: Weiping -mail: ChoynowW@7fc160edec22498a9b7f16af82b6aca4.bitwarden.com -carLicense: PJW2T5 -departmentNumber: 2325 -employeeType: Employee -homePhone: +1 206 911-3661 -initials: W. C. -mobile: +1 206 490-9293 -pager: +1 206 527-5519 -roomNumber: 9706 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karlen Pelz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlen Pelz -sn: Pelz -description: This is Karlen Pelz's description -facsimileTelephoneNumber: +1 213 116-2643 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 841-7794 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: PelzK -givenName: Karlen -mail: PelzK@7c3132e0c4a84c2d8ff786513bcac2d1.bitwarden.com -carLicense: V1WBCL -departmentNumber: 4017 -employeeType: Employee -homePhone: +1 213 773-9936 -initials: K. P. -mobile: +1 213 173-6406 -pager: +1 213 575-8342 -roomNumber: 8982 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mela Speers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mela Speers -sn: Speers -description: This is Mela Speers's description -facsimileTelephoneNumber: +1 804 360-9019 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 886-4478 -title: Junior Payroll Admin -userPassword: Password1 -uid: SpeersM -givenName: Mela -mail: SpeersM@3f93f60a8e804d55a6647c56c6c05eab.bitwarden.com -carLicense: YVTGTM -departmentNumber: 6874 -employeeType: Normal -homePhone: +1 804 850-5477 -initials: M. S. -mobile: +1 804 874-8241 -pager: +1 804 309-9189 -roomNumber: 9337 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=PierreHenri Oates,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PierreHenri Oates -sn: Oates -description: This is PierreHenri Oates's description -facsimileTelephoneNumber: +1 206 418-9410 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 206 644-3678 -title: Associate Payroll Figurehead -userPassword: Password1 -uid: OatesP -givenName: PierreHenri -mail: OatesP@234baafa6151436c9e90b2aa2617a7d2.bitwarden.com -carLicense: FQ7O7R -departmentNumber: 6571 -employeeType: Normal -homePhone: +1 206 375-7216 -initials: P. O. -mobile: +1 206 254-3639 -pager: +1 206 525-4873 -roomNumber: 8221 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ramon Metcalfe,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramon Metcalfe -sn: Metcalfe -description: This is Ramon Metcalfe's description -facsimileTelephoneNumber: +1 408 585-2572 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 377-4536 -title: Chief Management Madonna -userPassword: Password1 -uid: MetcalfR -givenName: Ramon -mail: MetcalfR@5e4e7d75e05b48bd8f2b694051e48b65.bitwarden.com -carLicense: F8D55L -departmentNumber: 2429 -employeeType: Normal -homePhone: +1 408 644-5440 -initials: R. M. -mobile: +1 408 778-6144 -pager: +1 408 532-4985 -roomNumber: 8187 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Domeniga Purohit,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Domeniga Purohit -sn: Purohit -description: This is Domeniga Purohit's description -facsimileTelephoneNumber: +1 415 179-8135 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 404-5042 -title: Chief Management Dictator -userPassword: Password1 -uid: PurohitD -givenName: Domeniga -mail: PurohitD@8581b4e4b4314f35bf0c5b0b1ae9f14c.bitwarden.com -carLicense: 24XQY1 -departmentNumber: 2948 -employeeType: Employee -homePhone: +1 415 159-8502 -initials: D. P. -mobile: +1 415 924-5427 -pager: +1 415 697-6088 -roomNumber: 8918 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Goldy Locke,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Goldy Locke -sn: Locke -description: This is Goldy Locke's description -facsimileTelephoneNumber: +1 415 540-8783 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 415 303-4459 -title: Master Janitorial Director -userPassword: Password1 -uid: LockeG -givenName: Goldy -mail: LockeG@6de130a8139a479abd748cccf12fccd5.bitwarden.com -carLicense: UT9YEB -departmentNumber: 9284 -employeeType: Employee -homePhone: +1 415 130-2805 -initials: G. L. -mobile: +1 415 865-4723 -pager: +1 415 382-1634 -roomNumber: 8029 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=PakJong Braginetz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PakJong Braginetz -sn: Braginetz -description: This is PakJong Braginetz's description -facsimileTelephoneNumber: +1 408 543-5262 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 615-2468 -title: Associate Payroll Sales Rep -userPassword: Password1 -uid: BragineP -givenName: PakJong -mail: BragineP@4c89cecd93aa4a6b8c3d033b43c13b92.bitwarden.com -carLicense: KQP5R7 -departmentNumber: 6631 -employeeType: Contract -homePhone: +1 408 921-5785 -initials: P. B. -mobile: +1 408 842-6352 -pager: +1 408 651-8501 -roomNumber: 9139 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hilde Miotla,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilde Miotla -sn: Miotla -description: This is Hilde Miotla's description -facsimileTelephoneNumber: +1 213 636-7683 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 213 765-6588 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: MiotlaH -givenName: Hilde -mail: MiotlaH@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com -carLicense: VYCS44 -departmentNumber: 1349 -employeeType: Employee -homePhone: +1 213 393-3543 -initials: H. M. -mobile: +1 213 823-5638 -pager: +1 213 239-2766 -roomNumber: 9989 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ning Spitzer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ning Spitzer -sn: Spitzer -description: This is Ning Spitzer's description -facsimileTelephoneNumber: +1 206 542-1498 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 381-4726 -title: Supreme Peons Dictator -userPassword: Password1 -uid: SpitzerN -givenName: Ning -mail: SpitzerN@a14bb54592f8410c82402fefd034b4c8.bitwarden.com -carLicense: 6MG2QA -departmentNumber: 6551 -employeeType: Employee -homePhone: +1 206 937-4312 -initials: N. S. -mobile: +1 206 941-3798 -pager: +1 206 487-6976 -roomNumber: 9176 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marylee Eberle,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marylee Eberle -sn: Eberle -description: This is Marylee Eberle's description -facsimileTelephoneNumber: +1 408 740-3446 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 992-1664 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: EberleM -givenName: Marylee -mail: EberleM@0a1d0b108c684b97b7244cb6b1664626.bitwarden.com -carLicense: 296OJU -departmentNumber: 1666 -employeeType: Employee -homePhone: +1 408 471-5852 -initials: M. E. -mobile: +1 408 193-7945 -pager: +1 408 412-5961 -roomNumber: 8623 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaylee Chernetsky -sn: Chernetsky -description: This is Kaylee Chernetsky's description -facsimileTelephoneNumber: +1 213 332-7078 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 614-4158 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: ChernetK -givenName: Kaylee -mail: ChernetK@304e0df786624e098a2c5b1fb73a0e52.bitwarden.com -carLicense: TLDQUD -departmentNumber: 4082 -employeeType: Normal -homePhone: +1 213 536-9704 -initials: K. C. -mobile: +1 213 356-2718 -pager: +1 213 578-1073 -roomNumber: 9718 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shalne Monfre,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shalne Monfre -sn: Monfre -description: This is Shalne Monfre's description -facsimileTelephoneNumber: +1 213 589-4061 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 322-6746 -title: Associate Product Testing Madonna -userPassword: Password1 -uid: MonfreS -givenName: Shalne -mail: MonfreS@0477f7500cad42ceb4af441ae4e4ca2d.bitwarden.com -carLicense: LCXDWY -departmentNumber: 8332 -employeeType: Employee -homePhone: +1 213 528-1607 -initials: S. M. -mobile: +1 213 831-3733 -pager: +1 213 703-4131 -roomNumber: 9370 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sammie Wickie,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sammie Wickie -sn: Wickie -description: This is Sammie Wickie's description -facsimileTelephoneNumber: +1 213 489-9076 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 101-4710 -title: Associate Administrative Engineer -userPassword: Password1 -uid: WickieS -givenName: Sammie -mail: WickieS@a3e3d4a60d05428db3e529e7a841183c.bitwarden.com -carLicense: GHVGT7 -departmentNumber: 6594 -employeeType: Normal -homePhone: +1 213 542-3003 -initials: S. W. -mobile: +1 213 462-1381 -pager: +1 213 841-1291 -roomNumber: 8073 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Teresita Vonderscher,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teresita Vonderscher -sn: Vonderscher -description: This is Teresita Vonderscher's description -facsimileTelephoneNumber: +1 415 784-1208 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 174-3615 -title: Chief Peons Czar -userPassword: Password1 -uid: VondersT -givenName: Teresita -mail: VondersT@c42c43aebed74617b6cc598e2b876357.bitwarden.com -carLicense: XREE6J -departmentNumber: 5004 -employeeType: Normal -homePhone: +1 415 905-8763 -initials: T. V. -mobile: +1 415 343-1024 -pager: +1 415 590-7353 -roomNumber: 9331 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Derek Boase,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Derek Boase -sn: Boase -description: This is Derek Boase's description -facsimileTelephoneNumber: +1 818 703-7841 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 783-5364 -title: Junior Product Testing Dictator -userPassword: Password1 -uid: BoaseD -givenName: Derek -mail: BoaseD@61d65279aba845aea76d91065d514e1d.bitwarden.com -carLicense: WLHXA6 -departmentNumber: 9241 -employeeType: Employee -homePhone: +1 818 327-5357 -initials: D. B. -mobile: +1 818 429-2644 -pager: +1 818 460-2711 -roomNumber: 8755 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ehi Sova,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ehi Sova -sn: Sova -description: This is Ehi Sova's description -facsimileTelephoneNumber: +1 804 124-7427 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 372-1149 -title: Supreme Payroll Admin -userPassword: Password1 -uid: SovaE -givenName: Ehi -mail: SovaE@3b01400372a04ac682bfb36ab66341f1.bitwarden.com -carLicense: NDI08K -departmentNumber: 5445 -employeeType: Normal -homePhone: +1 804 497-4989 -initials: E. S. -mobile: +1 804 109-7381 -pager: +1 804 298-9368 -roomNumber: 8283 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Suzette Chaddha,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzette Chaddha -sn: Chaddha -description: This is Suzette Chaddha's description -facsimileTelephoneNumber: +1 510 724-6280 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 453-3445 -title: Associate Payroll Grunt -userPassword: Password1 -uid: ChaddhaS -givenName: Suzette -mail: ChaddhaS@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com -carLicense: WGGPSL -departmentNumber: 8460 -employeeType: Normal -homePhone: +1 510 206-5721 -initials: S. C. -mobile: +1 510 745-1914 -pager: +1 510 563-5163 -roomNumber: 8815 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lennart Delong,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lennart Delong -sn: Delong -description: This is Lennart Delong's description -facsimileTelephoneNumber: +1 206 603-8068 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 352-3367 -title: Supreme Administrative Evangelist -userPassword: Password1 -uid: DelongL -givenName: Lennart -mail: DelongL@6753274bb619418096cac60a846c2af8.bitwarden.com -carLicense: C04595 -departmentNumber: 3016 -employeeType: Contract -homePhone: +1 206 483-5786 -initials: L. D. -mobile: +1 206 923-5505 -pager: +1 206 448-6688 -roomNumber: 8638 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Audrey Alfaro -sn: Alfaro -description: This is Audrey Alfaro's description -facsimileTelephoneNumber: +1 415 866-4682 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 320-1453 -title: Associate Product Testing Madonna -userPassword: Password1 -uid: AlfaroA -givenName: Audrey -mail: AlfaroA@a75c11902ec34e1fa257326b84b40638.bitwarden.com -carLicense: P22KF6 -departmentNumber: 2422 -employeeType: Employee -homePhone: +1 415 428-1064 -initials: A. A. -mobile: +1 415 292-3212 -pager: +1 415 110-1816 -roomNumber: 9045 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Diann Glast,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diann Glast -sn: Glast -description: This is Diann Glast's description -facsimileTelephoneNumber: +1 415 211-9877 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 942-9988 -title: Supreme Product Development Developer -userPassword: Password1 -uid: GlastD -givenName: Diann -mail: GlastD@8be20a5f8fec49b3a3d2cf11b1d5489b.bitwarden.com -carLicense: U946KQ -departmentNumber: 4364 -employeeType: Employee -homePhone: +1 415 419-7528 -initials: D. G. -mobile: +1 415 164-1278 -pager: +1 415 899-1620 -roomNumber: 9826 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tiffanie Beehler,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffanie Beehler -sn: Beehler -description: This is Tiffanie Beehler's description -facsimileTelephoneNumber: +1 415 135-9932 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 111-5011 -title: Associate Peons Manager -userPassword: Password1 -uid: BeehlerT -givenName: Tiffanie -mail: BeehlerT@c08c80f3c69d4d04b025dc038c8f6045.bitwarden.com -carLicense: PW0PMI -departmentNumber: 2121 -employeeType: Employee -homePhone: +1 415 843-3014 -initials: T. B. -mobile: +1 415 110-1459 -pager: +1 415 766-7039 -roomNumber: 8588 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leny Teague,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leny Teague -sn: Teague -description: This is Leny Teague's description -facsimileTelephoneNumber: +1 804 895-5258 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 804 678-4091 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: TeagueL -givenName: Leny -mail: TeagueL@e5d9cd8563784493b06bdd8fd1d46cd9.bitwarden.com -carLicense: C2JON8 -departmentNumber: 3988 -employeeType: Contract -homePhone: +1 804 404-4884 -initials: L. T. -mobile: +1 804 344-7840 -pager: +1 804 869-3734 -roomNumber: 9300 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Trever Casson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trever Casson -sn: Casson -description: This is Trever Casson's description -facsimileTelephoneNumber: +1 213 661-6097 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 593-9233 -title: Supreme Product Testing Architect -userPassword: Password1 -uid: CassonT -givenName: Trever -mail: CassonT@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com -carLicense: LV0AD0 -departmentNumber: 8851 -employeeType: Employee -homePhone: +1 213 554-9044 -initials: T. C. -mobile: +1 213 756-4217 -pager: +1 213 168-8572 -roomNumber: 8893 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Chester Greene,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chester Greene -sn: Greene -description: This is Chester Greene's description -facsimileTelephoneNumber: +1 415 678-3805 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 181-7729 -title: Junior Peons Punk -userPassword: Password1 -uid: GreeneC -givenName: Chester -mail: GreeneC@9955c860a52142e48ed59c06efdb5d52.bitwarden.com -carLicense: G00YXA -departmentNumber: 2183 -employeeType: Employee -homePhone: +1 415 183-9098 -initials: C. G. -mobile: +1 415 665-5007 -pager: +1 415 601-7830 -roomNumber: 9702 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Celine Vey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celine Vey -sn: Vey -description: This is Celine Vey's description -facsimileTelephoneNumber: +1 804 294-1942 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 603-3115 -title: Supreme Product Development Madonna -userPassword: Password1 -uid: VeyC -givenName: Celine -mail: VeyC@20f59cdd83ae48b3816d0ba42aaa0a71.bitwarden.com -carLicense: L5Q45G -departmentNumber: 5818 -employeeType: Contract -homePhone: +1 804 213-2692 -initials: C. V. -mobile: +1 804 315-3726 -pager: +1 804 544-7656 -roomNumber: 9188 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pinder Leonida,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pinder Leonida -sn: Leonida -description: This is Pinder Leonida's description -facsimileTelephoneNumber: +1 804 977-8597 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 804 682-3399 -title: Master Product Testing Assistant -userPassword: Password1 -uid: LeonidaP -givenName: Pinder -mail: LeonidaP@4fe51546324e43adb896246907c2c135.bitwarden.com -carLicense: A0EDXB -departmentNumber: 9470 -employeeType: Normal -homePhone: +1 804 856-7120 -initials: P. L. -mobile: +1 804 629-3896 -pager: +1 804 969-5178 -roomNumber: 8088 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beryl Lalonde,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beryl Lalonde -sn: Lalonde -description: This is Beryl Lalonde's description -facsimileTelephoneNumber: +1 510 569-6653 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 479-7935 -title: Associate Administrative Developer -userPassword: Password1 -uid: LalondeB -givenName: Beryl -mail: LalondeB@222fec44e9c646688683c89bb36f7404.bitwarden.com -carLicense: 4JD2K4 -departmentNumber: 1600 -employeeType: Normal -homePhone: +1 510 733-7532 -initials: B. L. -mobile: +1 510 993-3608 -pager: +1 510 930-7737 -roomNumber: 9027 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cicely Ivers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cicely Ivers -sn: Ivers -description: This is Cicely Ivers's description -facsimileTelephoneNumber: +1 408 521-1401 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 196-9205 -title: Junior Management Mascot -userPassword: Password1 -uid: IversC -givenName: Cicely -mail: IversC@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com -carLicense: NHAXUP -departmentNumber: 6255 -employeeType: Employee -homePhone: +1 408 521-6022 -initials: C. I. -mobile: +1 408 986-8461 -pager: +1 408 145-9587 -roomNumber: 8667 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorinda Kenworthy,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorinda Kenworthy -sn: Kenworthy -description: This is Lorinda Kenworthy's description -facsimileTelephoneNumber: +1 818 657-9466 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 660-1731 -title: Chief Management Punk -userPassword: Password1 -uid: KenwortL -givenName: Lorinda -mail: KenwortL@a6318282a95143ad9eb6eec2fd89dea7.bitwarden.com -carLicense: WCUJWH -departmentNumber: 4478 -employeeType: Employee -homePhone: +1 818 475-4112 -initials: L. K. -mobile: +1 818 725-3183 -pager: +1 818 611-6857 -roomNumber: 9626 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ketan LaPierre -sn: LaPierre -description: This is Ketan LaPierre's description -facsimileTelephoneNumber: +1 206 131-2891 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 715-6593 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: LaPierrK -givenName: Ketan -mail: LaPierrK@290f3bf5609346169561a1cf35572b57.bitwarden.com -carLicense: QBJPUJ -departmentNumber: 2291 -employeeType: Normal -homePhone: +1 206 407-8170 -initials: K. L. -mobile: +1 206 599-4434 -pager: +1 206 450-6841 -roomNumber: 8453 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Demetre Obrecht,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Demetre Obrecht -sn: Obrecht -description: This is Demetre Obrecht's description -facsimileTelephoneNumber: +1 415 874-5678 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 443-9017 -title: Supreme Administrative Director -userPassword: Password1 -uid: ObrechtD -givenName: Demetre -mail: ObrechtD@33417574ff5641239d149c2ac49c5525.bitwarden.com -carLicense: 26JJI4 -departmentNumber: 5448 -employeeType: Employee -homePhone: +1 415 437-2732 -initials: D. O. -mobile: +1 415 237-5575 -pager: +1 415 296-5505 -roomNumber: 8516 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shandie Urbanowich -sn: Urbanowich -description: This is Shandie Urbanowich's description -facsimileTelephoneNumber: +1 510 723-8411 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 562-4602 -title: Chief Product Development Fellow -userPassword: Password1 -uid: UrbanowS -givenName: Shandie -mail: UrbanowS@7f8cf4c32d334ebd9fa48fd60fc5a429.bitwarden.com -carLicense: EX0OAO -departmentNumber: 6091 -employeeType: Normal -homePhone: +1 510 917-4813 -initials: S. U. -mobile: +1 510 902-5746 -pager: +1 510 139-5596 -roomNumber: 8777 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harriett Brooksbank -sn: Brooksbank -description: This is Harriett Brooksbank's description -facsimileTelephoneNumber: +1 804 284-4489 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 862-1577 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: BrooksbH -givenName: Harriett -mail: BrooksbH@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com -carLicense: 5DXKSA -departmentNumber: 5320 -employeeType: Employee -homePhone: +1 804 830-4642 -initials: H. B. -mobile: +1 804 322-6092 -pager: +1 804 774-2914 -roomNumber: 9427 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sheryl Nemec,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheryl Nemec -sn: Nemec -description: This is Sheryl Nemec's description -facsimileTelephoneNumber: +1 818 584-7565 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 818 397-8315 -title: Master Payroll Dictator -userPassword: Password1 -uid: NemecS -givenName: Sheryl -mail: NemecS@9bb568342a7843e597240cebd0fa3324.bitwarden.com -carLicense: Q052WA -departmentNumber: 6489 -employeeType: Normal -homePhone: +1 818 101-8384 -initials: S. N. -mobile: +1 818 918-9229 -pager: +1 818 408-1655 -roomNumber: 9901 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Freya Reich,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Freya Reich -sn: Reich -description: This is Freya Reich's description -facsimileTelephoneNumber: +1 818 886-8213 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 235-7164 -title: Junior Management Dictator -userPassword: Password1 -uid: ReichF -givenName: Freya -mail: ReichF@c1717c5f197c4d3987c6204634e4161c.bitwarden.com -carLicense: U0G2D9 -departmentNumber: 7896 -employeeType: Normal -homePhone: +1 818 178-4748 -initials: F. R. -mobile: +1 818 640-6311 -pager: +1 818 330-3768 -roomNumber: 8330 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Willyt Kresl,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willyt Kresl -sn: Kresl -description: This is Willyt Kresl's description -facsimileTelephoneNumber: +1 408 825-8264 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 843-2068 -title: Junior Peons Punk -userPassword: Password1 -uid: KreslW -givenName: Willyt -mail: KreslW@566f91b3e6ce4bad9c7f92243d29e023.bitwarden.com -carLicense: TDP2QK -departmentNumber: 9030 -employeeType: Contract -homePhone: +1 408 588-9977 -initials: W. K. -mobile: +1 408 940-6709 -pager: +1 408 975-3626 -roomNumber: 9966 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nenad Kilner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nenad Kilner -sn: Kilner -description: This is Nenad Kilner's description -facsimileTelephoneNumber: +1 804 340-5663 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 263-7864 -title: Junior Peons Dictator -userPassword: Password1 -uid: KilnerN -givenName: Nenad -mail: KilnerN@f52a2af58c834348a94fa371e71ee488.bitwarden.com -carLicense: F47MSJ -departmentNumber: 2533 -employeeType: Contract -homePhone: +1 804 193-3531 -initials: N. K. -mobile: +1 804 496-1645 -pager: +1 804 754-9392 -roomNumber: 9777 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rakel Tranfaglia -sn: Tranfaglia -description: This is Rakel Tranfaglia's description -facsimileTelephoneNumber: +1 818 922-8566 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 850-2254 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: TranfagR -givenName: Rakel -mail: TranfagR@092ab78908d446088e98cb12c4153688.bitwarden.com -carLicense: IS9WJ2 -departmentNumber: 8557 -employeeType: Normal -homePhone: +1 818 574-5218 -initials: R. T. -mobile: +1 818 940-7129 -pager: +1 818 197-4893 -roomNumber: 9758 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nakina Brittain,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nakina Brittain -sn: Brittain -description: This is Nakina Brittain's description -facsimileTelephoneNumber: +1 408 282-4959 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 408 631-3209 -title: Associate Janitorial Evangelist -userPassword: Password1 -uid: BrittaiN -givenName: Nakina -mail: BrittaiN@f291666dbe1942f9939c126ee15d9886.bitwarden.com -carLicense: 6TG00G -departmentNumber: 2539 -employeeType: Employee -homePhone: +1 408 514-9547 -initials: N. B. -mobile: +1 408 409-9475 -pager: +1 408 403-9605 -roomNumber: 9703 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Joyous Nunn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joyous Nunn -sn: Nunn -description: This is Joyous Nunn's description -facsimileTelephoneNumber: +1 510 771-1537 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 688-8835 -title: Chief Product Development Architect -userPassword: Password1 -uid: NunnJ -givenName: Joyous -mail: NunnJ@ad2fbe502361499c9d06dcdb8e2109ef.bitwarden.com -carLicense: X69Q6A -departmentNumber: 8352 -employeeType: Normal -homePhone: +1 510 828-5866 -initials: J. N. -mobile: +1 510 864-2256 -pager: +1 510 358-1856 -roomNumber: 8397 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhiren Lahey -sn: Lahey -description: This is Dhiren Lahey's description -facsimileTelephoneNumber: +1 510 630-3200 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 444-5561 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: LaheyD -givenName: Dhiren -mail: LaheyD@5eabae8e0a894e598a102f3cdf87fde5.bitwarden.com -carLicense: 26MEUC -departmentNumber: 5825 -employeeType: Employee -homePhone: +1 510 164-7901 -initials: D. L. -mobile: +1 510 233-7339 -pager: +1 510 442-1554 -roomNumber: 8826 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hugo Tarsky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hugo Tarsky -sn: Tarsky -description: This is Hugo Tarsky's description -facsimileTelephoneNumber: +1 206 633-2851 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 319-6186 -title: Chief Administrative Technician -userPassword: Password1 -uid: TarskyH -givenName: Hugo -mail: TarskyH@90516b7a68e546109049725db5fc6bce.bitwarden.com -carLicense: GT4EW8 -departmentNumber: 3105 -employeeType: Contract -homePhone: +1 206 524-8559 -initials: H. T. -mobile: +1 206 781-9946 -pager: +1 206 946-1835 -roomNumber: 9937 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Davida Starnes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davida Starnes -sn: Starnes -description: This is Davida Starnes's description -facsimileTelephoneNumber: +1 510 170-3684 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 203-6839 -title: Master Human Resources Developer -userPassword: Password1 -uid: StarnesD -givenName: Davida -mail: StarnesD@54a3e88e10d6420bafc84d4c62e2aba4.bitwarden.com -carLicense: 4XM2OF -departmentNumber: 6144 -employeeType: Normal -homePhone: +1 510 399-6832 -initials: D. S. -mobile: +1 510 334-1920 -pager: +1 510 377-2837 -roomNumber: 9169 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Heping Id,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heping Id -sn: Id -description: This is Heping Id's description -facsimileTelephoneNumber: +1 510 438-4417 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 336-4361 -title: Supreme Management Developer -userPassword: Password1 -uid: IdH -givenName: Heping -mail: IdH@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com -carLicense: 8336RF -departmentNumber: 5391 -employeeType: Normal -homePhone: +1 510 510-5713 -initials: H. I. -mobile: +1 510 611-3786 -pager: +1 510 993-1027 -roomNumber: 8795 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nill Ferreira,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nill Ferreira -sn: Ferreira -description: This is Nill Ferreira's description -facsimileTelephoneNumber: +1 415 792-7899 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 853-4040 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: FerreirN -givenName: Nill -mail: FerreirN@1c27d636b4be486693c87693cde976e4.bitwarden.com -carLicense: JC465K -departmentNumber: 7046 -employeeType: Contract -homePhone: +1 415 360-3289 -initials: N. F. -mobile: +1 415 454-5885 -pager: +1 415 510-1822 -roomNumber: 9256 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nathaniel Kiecksee -sn: Kiecksee -description: This is Nathaniel Kiecksee's description -facsimileTelephoneNumber: +1 510 744-3793 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 386-2075 -title: Chief Payroll Vice President -userPassword: Password1 -uid: KieckseN -givenName: Nathaniel -mail: KieckseN@4ca2ac902d4749ad8038d002b39cb95c.bitwarden.com -carLicense: 60SXTY -departmentNumber: 6405 -employeeType: Normal -homePhone: +1 510 314-4533 -initials: N. K. -mobile: +1 510 513-2587 -pager: +1 510 228-9885 -roomNumber: 9835 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vino Vanderheyden -sn: Vanderheyden -description: This is Vino Vanderheyden's description -facsimileTelephoneNumber: +1 804 909-6534 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 804 295-3586 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: VanderhV -givenName: Vino -mail: VanderhV@80c82ffaa49a474d9be83438195b45a5.bitwarden.com -carLicense: 8GSPVN -departmentNumber: 1272 -employeeType: Normal -homePhone: +1 804 307-5366 -initials: V. V. -mobile: +1 804 393-3266 -pager: +1 804 129-6280 -roomNumber: 9293 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Amabel DAngelo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amabel DAngelo -sn: DAngelo -description: This is Amabel DAngelo's description -facsimileTelephoneNumber: +1 206 284-4476 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 923-6864 -title: Chief Management Writer -userPassword: Password1 -uid: DAngeloA -givenName: Amabel -mail: DAngeloA@427f0c8a6c7f4931b9f522617221c48a.bitwarden.com -carLicense: 1LE7HR -departmentNumber: 6732 -employeeType: Contract -homePhone: +1 206 432-3430 -initials: A. D. -mobile: +1 206 730-1484 -pager: +1 206 653-8374 -roomNumber: 8928 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Brad Scarffe,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brad Scarffe -sn: Scarffe -description: This is Brad Scarffe's description -facsimileTelephoneNumber: +1 408 653-3588 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 247-1108 -title: Supreme Management Consultant -userPassword: Password1 -uid: ScarffeB -givenName: Brad -mail: ScarffeB@0708ead8d9da4345b639ad91b17701b1.bitwarden.com -carLicense: 6EVSQT -departmentNumber: 5858 -employeeType: Employee -homePhone: +1 408 848-8264 -initials: B. S. -mobile: +1 408 687-6494 -pager: +1 408 736-4245 -roomNumber: 9672 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elfie Florescu,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elfie Florescu -sn: Florescu -description: This is Elfie Florescu's description -facsimileTelephoneNumber: +1 818 260-1500 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 849-6061 -title: Supreme Peons Czar -userPassword: Password1 -uid: FlorescE -givenName: Elfie -mail: FlorescE@9480e1acabd5425d80a15e6c019880fd.bitwarden.com -carLicense: N3XKGP -departmentNumber: 3510 -employeeType: Contract -homePhone: +1 818 656-8921 -initials: E. F. -mobile: +1 818 250-1702 -pager: +1 818 668-6657 -roomNumber: 8830 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nayan Caffrey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nayan Caffrey -sn: Caffrey -description: This is Nayan Caffrey's description -facsimileTelephoneNumber: +1 213 386-5856 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 656-6486 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: CaffreyN -givenName: Nayan -mail: CaffreyN@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com -carLicense: 9EJ317 -departmentNumber: 4366 -employeeType: Employee -homePhone: +1 213 383-7724 -initials: N. C. -mobile: +1 213 522-7736 -pager: +1 213 462-1970 -roomNumber: 9949 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Deonne Ripa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deonne Ripa -sn: Ripa -description: This is Deonne Ripa's description -facsimileTelephoneNumber: +1 510 803-3975 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 277-9304 -title: Associate Payroll Mascot -userPassword: Password1 -uid: RipaD -givenName: Deonne -mail: RipaD@bcf6de0b8d2c44a68286d08f9d47b1f4.bitwarden.com -carLicense: ETCP98 -departmentNumber: 4921 -employeeType: Employee -homePhone: +1 510 198-6743 -initials: D. R. -mobile: +1 510 781-3405 -pager: +1 510 881-4269 -roomNumber: 8168 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mehdi Mainville,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mehdi Mainville -sn: Mainville -description: This is Mehdi Mainville's description -facsimileTelephoneNumber: +1 510 755-5384 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 891-2534 -title: Junior Peons Pinhead -userPassword: Password1 -uid: MainvilM -givenName: Mehdi -mail: MainvilM@7101039e23634506b2da2b1c92ecb4cf.bitwarden.com -carLicense: 4OEJ34 -departmentNumber: 8957 -employeeType: Normal -homePhone: +1 510 616-7877 -initials: M. M. -mobile: +1 510 997-4544 -pager: +1 510 490-2743 -roomNumber: 9754 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jade Yumurtaci,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jade Yumurtaci -sn: Yumurtaci -description: This is Jade Yumurtaci's description -facsimileTelephoneNumber: +1 415 949-2173 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 833-2076 -title: Master Peons Punk -userPassword: Password1 -uid: YumurtaJ -givenName: Jade -mail: YumurtaJ@9d5ea794acf845deab8b5f3d0cc82f3c.bitwarden.com -carLicense: 8LPRVN -departmentNumber: 2125 -employeeType: Contract -homePhone: +1 415 955-8014 -initials: J. Y. -mobile: +1 415 201-9206 -pager: +1 415 149-1365 -roomNumber: 9043 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tsuyoshi Sehmbey -sn: Sehmbey -description: This is Tsuyoshi Sehmbey's description -facsimileTelephoneNumber: +1 206 770-7962 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 364-7158 -title: Chief Management Writer -userPassword: Password1 -uid: SehmbeyT -givenName: Tsuyoshi -mail: SehmbeyT@d753979fad154486ac459615561fae04.bitwarden.com -carLicense: JSAGJ7 -departmentNumber: 4720 -employeeType: Normal -homePhone: +1 206 918-1717 -initials: T. S. -mobile: +1 206 809-5709 -pager: +1 206 488-5390 -roomNumber: 8694 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kerstin Capretta -sn: Capretta -description: This is Kerstin Capretta's description -facsimileTelephoneNumber: +1 510 182-7801 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 510 492-4245 -title: Chief Human Resources Developer -userPassword: Password1 -uid: CaprettK -givenName: Kerstin -mail: CaprettK@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com -carLicense: OSFNCK -departmentNumber: 6623 -employeeType: Employee -homePhone: +1 510 967-5327 -initials: K. C. -mobile: +1 510 875-7977 -pager: +1 510 154-7044 -roomNumber: 8888 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fey Bilton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fey Bilton -sn: Bilton -description: This is Fey Bilton's description -facsimileTelephoneNumber: +1 408 136-7556 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 408 195-5846 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: BiltonF -givenName: Fey -mail: BiltonF@f8c8362f349f4cd990f16a4512cb6987.bitwarden.com -carLicense: 46V8F8 -departmentNumber: 2827 -employeeType: Contract -homePhone: +1 408 149-7954 -initials: F. B. -mobile: +1 408 151-8142 -pager: +1 408 265-3094 -roomNumber: 8011 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Isoft Manwaring,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isoft Manwaring -sn: Manwaring -description: This is Isoft Manwaring's description -facsimileTelephoneNumber: +1 213 138-6981 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 889-8051 -title: Supreme Peons Warrior -userPassword: Password1 -uid: ManwariI -givenName: Isoft -mail: ManwariI@21c0df4a152641a4b289e46be985993f.bitwarden.com -carLicense: QNU5XL -departmentNumber: 9297 -employeeType: Contract -homePhone: +1 213 460-1737 -initials: I. M. -mobile: +1 213 912-2121 -pager: +1 213 618-7440 -roomNumber: 8864 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Addia RossRoss,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Addia RossRoss -sn: RossRoss -description: This is Addia RossRoss's description -facsimileTelephoneNumber: +1 818 169-5229 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 921-1940 -title: Master Janitorial Technician -userPassword: Password1 -uid: RossRosA -givenName: Addia -mail: RossRosA@21676ccf48234584998e9b1b9517cc74.bitwarden.com -carLicense: 8NFA6X -departmentNumber: 1564 -employeeType: Employee -homePhone: +1 818 356-3569 -initials: A. R. -mobile: +1 818 278-2575 -pager: +1 818 465-6079 -roomNumber: 8862 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Adoree Debord,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adoree Debord -sn: Debord -description: This is Adoree Debord's description -facsimileTelephoneNumber: +1 408 103-8535 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 873-8593 -title: Junior Payroll Engineer -userPassword: Password1 -uid: DebordA -givenName: Adoree -mail: DebordA@fecfcf752c6e4027af9fd19570ebc44a.bitwarden.com -carLicense: VJE6OJ -departmentNumber: 3475 -employeeType: Employee -homePhone: +1 408 324-2538 -initials: A. D. -mobile: +1 408 407-2342 -pager: +1 408 259-4897 -roomNumber: 9387 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tesa Coordinator,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tesa Coordinator -sn: Coordinator -description: This is Tesa Coordinator's description -facsimileTelephoneNumber: +1 818 796-3634 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 320-9631 -title: Chief Product Development Fellow -userPassword: Password1 -uid: CoordinT -givenName: Tesa -mail: CoordinT@99a51e3de4824b82894f80e7490fdc98.bitwarden.com -carLicense: MG1493 -departmentNumber: 3675 -employeeType: Contract -homePhone: +1 818 758-3299 -initials: T. C. -mobile: +1 818 550-1936 -pager: +1 818 458-2639 -roomNumber: 9720 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Crissie Beausejour,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crissie Beausejour -sn: Beausejour -description: This is Crissie Beausejour's description -facsimileTelephoneNumber: +1 510 893-1848 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 654-5221 -title: Associate Peons Architect -userPassword: Password1 -uid: BeausejC -givenName: Crissie -mail: BeausejC@9e9653057e724f3ba3cf01f171b09f12.bitwarden.com -carLicense: GKXF0P -departmentNumber: 4849 -employeeType: Contract -homePhone: +1 510 748-4479 -initials: C. B. -mobile: +1 510 609-4489 -pager: +1 510 130-6373 -roomNumber: 9847 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hojjat Nahata,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hojjat Nahata -sn: Nahata -description: This is Hojjat Nahata's description -facsimileTelephoneNumber: +1 818 954-5936 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 818 756-9374 -title: Chief Peons Technician -userPassword: Password1 -uid: NahataH -givenName: Hojjat -mail: NahataH@4c99f016701f421ea6d699e1dff81e68.bitwarden.com -carLicense: TE47I8 -departmentNumber: 1004 -employeeType: Contract -homePhone: +1 818 204-2406 -initials: H. N. -mobile: +1 818 536-6673 -pager: +1 818 753-8619 -roomNumber: 9332 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Julina Sy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julina Sy -sn: Sy -description: This is Julina Sy's description -facsimileTelephoneNumber: +1 206 490-5652 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 961-8357 -title: Junior Administrative Artist -userPassword: Password1 -uid: SyJ -givenName: Julina -mail: SyJ@9a5bdc9a34e041db8cf5f51cd958707f.bitwarden.com -carLicense: JBGAVJ -departmentNumber: 9196 -employeeType: Employee -homePhone: +1 206 390-2507 -initials: J. S. -mobile: +1 206 288-6695 -pager: +1 206 544-6438 -roomNumber: 8611 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kendre Lotochinski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kendre Lotochinski -sn: Lotochinski -description: This is Kendre Lotochinski's description -facsimileTelephoneNumber: +1 510 209-7829 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 228-5012 -title: Junior Management Director -userPassword: Password1 -uid: LotochiK -givenName: Kendre -mail: LotochiK@37238c283bde45368b4da8be7c9deb4e.bitwarden.com -carLicense: NHRUE7 -departmentNumber: 2417 -employeeType: Normal -homePhone: +1 510 877-2949 -initials: K. L. -mobile: +1 510 877-2790 -pager: +1 510 205-8582 -roomNumber: 9853 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yih NadeauDostie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yih NadeauDostie -sn: NadeauDostie -description: This is Yih NadeauDostie's description -facsimileTelephoneNumber: +1 804 633-6122 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 251-9888 -title: Master Management Writer -userPassword: Password1 -uid: NadeauDY -givenName: Yih -mail: NadeauDY@c168d422280e4cbfb755415d15add934.bitwarden.com -carLicense: AO4VTG -departmentNumber: 4545 -employeeType: Employee -homePhone: +1 804 421-7540 -initials: Y. N. -mobile: +1 804 321-2618 -pager: +1 804 440-4804 -roomNumber: 8369 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Glynnis Neisius,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glynnis Neisius -sn: Neisius -description: This is Glynnis Neisius's description -facsimileTelephoneNumber: +1 206 370-7780 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 273-4005 -title: Associate Peons Technician -userPassword: Password1 -uid: NeisiusG -givenName: Glynnis -mail: NeisiusG@3ecc1d20e4e1450b8a8fad63f512c730.bitwarden.com -carLicense: 2DHEWQ -departmentNumber: 7269 -employeeType: Normal -homePhone: +1 206 691-8761 -initials: G. N. -mobile: +1 206 476-5122 -pager: +1 206 922-6015 -roomNumber: 9187 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sono Orsini,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sono Orsini -sn: Orsini -description: This is Sono Orsini's description -facsimileTelephoneNumber: +1 510 683-9698 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 663-6731 -title: Chief Peons President -userPassword: Password1 -uid: OrsiniS -givenName: Sono -mail: OrsiniS@7cfc34ac6f4c4e1aba837c354ef5b514.bitwarden.com -carLicense: F3M943 -departmentNumber: 4015 -employeeType: Contract -homePhone: +1 510 147-6184 -initials: S. O. -mobile: +1 510 577-9571 -pager: +1 510 446-7643 -roomNumber: 9086 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Devon Romberg,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devon Romberg -sn: Romberg -description: This is Devon Romberg's description -facsimileTelephoneNumber: +1 213 334-4476 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 213 406-6390 -title: Chief Product Development Dictator -userPassword: Password1 -uid: RombergD -givenName: Devon -mail: RombergD@ca18540933614ae79f2aa564295e8db4.bitwarden.com -carLicense: LF1IBR -departmentNumber: 7525 -employeeType: Employee -homePhone: +1 213 285-8149 -initials: D. R. -mobile: +1 213 351-8032 -pager: +1 213 994-2287 -roomNumber: 8113 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lorne Agily,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorne Agily -sn: Agily -description: This is Lorne Agily's description -facsimileTelephoneNumber: +1 206 729-6821 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 168-1364 -title: Associate Management Assistant -userPassword: Password1 -uid: AgilyL -givenName: Lorne -mail: AgilyL@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com -carLicense: 2NV0UA -departmentNumber: 1178 -employeeType: Employee -homePhone: +1 206 773-6072 -initials: L. A. -mobile: +1 206 170-9532 -pager: +1 206 537-5996 -roomNumber: 8831 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Henka Colford,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henka Colford -sn: Colford -description: This is Henka Colford's description -facsimileTelephoneNumber: +1 818 480-7533 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 373-2476 -title: Chief Administrative Developer -userPassword: Password1 -uid: ColfordH -givenName: Henka -mail: ColfordH@c63acc13c8a740e8a43edd8fb66a56ca.bitwarden.com -carLicense: Y4JCKV -departmentNumber: 6054 -employeeType: Employee -homePhone: +1 818 554-5612 -initials: H. C. -mobile: +1 818 798-7489 -pager: +1 818 794-2602 -roomNumber: 9046 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ddene Pashmineh -sn: Pashmineh -description: This is Ddene Pashmineh's description -facsimileTelephoneNumber: +1 408 892-7707 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 821-3093 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: PashminD -givenName: Ddene -mail: PashminD@04bb8c62899b41dd85b281860ec060e6.bitwarden.com -carLicense: 3UY4LR -departmentNumber: 4889 -employeeType: Employee -homePhone: +1 408 992-5080 -initials: D. P. -mobile: +1 408 712-1289 -pager: +1 408 463-8920 -roomNumber: 9004 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Niek Bocklage,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niek Bocklage -sn: Bocklage -description: This is Niek Bocklage's description -facsimileTelephoneNumber: +1 804 883-9997 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 804 628-5717 -title: Supreme Payroll President -userPassword: Password1 -uid: BocklagN -givenName: Niek -mail: BocklagN@0a49f322d17b42a58985fe2e05d0dafb.bitwarden.com -carLicense: VWAA8K -departmentNumber: 5850 -employeeType: Employee -homePhone: +1 804 706-5536 -initials: N. B. -mobile: +1 804 714-2489 -pager: +1 804 484-2341 -roomNumber: 8040 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gill Castillo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gill Castillo -sn: Castillo -description: This is Gill Castillo's description -facsimileTelephoneNumber: +1 510 314-7551 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 667-3072 -title: Junior Peons Director -userPassword: Password1 -uid: CastillG -givenName: Gill -mail: CastillG@b415261c1aeb4713828c9aaaebea46d8.bitwarden.com -carLicense: OBYSDN -departmentNumber: 6112 -employeeType: Employee -homePhone: +1 510 392-9611 -initials: G. C. -mobile: +1 510 190-2913 -pager: +1 510 574-9284 -roomNumber: 8561 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alkarim Tonkovich -sn: Tonkovich -description: This is Alkarim Tonkovich's description -facsimileTelephoneNumber: +1 206 484-7396 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 989-7200 -title: Associate Administrative Developer -userPassword: Password1 -uid: TonkoviA -givenName: Alkarim -mail: TonkoviA@c2853faa5a5c4802a03043c5ee120c0d.bitwarden.com -carLicense: 798BAB -departmentNumber: 3165 -employeeType: Employee -homePhone: +1 206 720-1621 -initials: A. T. -mobile: +1 206 346-3173 -pager: +1 206 660-8432 -roomNumber: 8747 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vacman Goridkov -sn: Goridkov -description: This is Vacman Goridkov's description -facsimileTelephoneNumber: +1 415 242-1401 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 645-8413 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: GoridkoV -givenName: Vacman -mail: GoridkoV@47a7a80ec8774325ad24930467e7f72e.bitwarden.com -carLicense: M0N7M8 -departmentNumber: 8580 -employeeType: Employee -homePhone: +1 415 290-1497 -initials: V. G. -mobile: +1 415 511-8983 -pager: +1 415 127-3531 -roomNumber: 9939 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cary Thumm,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cary Thumm -sn: Thumm -description: This is Cary Thumm's description -facsimileTelephoneNumber: +1 510 748-8873 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 718-4759 -title: Associate Payroll Engineer -userPassword: Password1 -uid: ThummC -givenName: Cary -mail: ThummC@73c98e62bd724f62ba84304041b99a67.bitwarden.com -carLicense: O65LRI -departmentNumber: 7758 -employeeType: Contract -homePhone: +1 510 352-5013 -initials: C. T. -mobile: +1 510 669-8228 -pager: +1 510 900-5462 -roomNumber: 8916 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rod Eisenach,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rod Eisenach -sn: Eisenach -description: This is Rod Eisenach's description -facsimileTelephoneNumber: +1 510 797-3983 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 486-8715 -title: Master Payroll Warrior -userPassword: Password1 -uid: EisenacR -givenName: Rod -mail: EisenacR@c77e1b04604d4d1f96b1471fffc2169c.bitwarden.com -carLicense: FFHXHL -departmentNumber: 5839 -employeeType: Normal -homePhone: +1 510 675-9330 -initials: R. E. -mobile: +1 510 505-9298 -pager: +1 510 712-6663 -roomNumber: 9502 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Axel McAdams,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Axel McAdams -sn: McAdams -description: This is Axel McAdams's description -facsimileTelephoneNumber: +1 408 228-8000 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 676-7734 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: McAdamsA -givenName: Axel -mail: McAdamsA@223017ad635c4766a831c086905608fa.bitwarden.com -carLicense: BPGOBQ -departmentNumber: 5753 -employeeType: Contract -homePhone: +1 408 777-7745 -initials: A. M. -mobile: +1 408 880-5160 -pager: +1 408 429-7501 -roomNumber: 8241 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Amara Lagarde,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amara Lagarde -sn: Lagarde -description: This is Amara Lagarde's description -facsimileTelephoneNumber: +1 804 969-9723 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 622-2255 -title: Chief Management President -userPassword: Password1 -uid: LagardeA -givenName: Amara -mail: LagardeA@28a93f8db65e4c7896a7639f8d2d6945.bitwarden.com -carLicense: MS016W -departmentNumber: 3700 -employeeType: Employee -homePhone: +1 804 904-9957 -initials: A. L. -mobile: +1 804 646-4087 -pager: +1 804 325-8233 -roomNumber: 9189 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gerianne Deluca,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerianne Deluca -sn: Deluca -description: This is Gerianne Deluca's description -facsimileTelephoneNumber: +1 818 940-2548 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 363-7513 -title: Supreme Peons Dictator -userPassword: Password1 -uid: DelucaG -givenName: Gerianne -mail: DelucaG@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com -carLicense: MP5U5D -departmentNumber: 9285 -employeeType: Employee -homePhone: +1 818 592-7648 -initials: G. D. -mobile: +1 818 101-2561 -pager: +1 818 612-7473 -roomNumber: 8298 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mick Barreyre,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mick Barreyre -sn: Barreyre -description: This is Mick Barreyre's description -facsimileTelephoneNumber: +1 804 263-7410 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 804 986-9074 -title: Junior Janitorial Evangelist -userPassword: Password1 -uid: BarreyrM -givenName: Mick -mail: BarreyrM@edf7b6e6765c4b9395ab808390477139.bitwarden.com -carLicense: DWG02I -departmentNumber: 8089 -employeeType: Employee -homePhone: +1 804 966-5007 -initials: M. B. -mobile: +1 804 679-7823 -pager: +1 804 599-2936 -roomNumber: 9217 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Netta Hartin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Netta Hartin -sn: Hartin -description: This is Netta Hartin's description -facsimileTelephoneNumber: +1 415 470-5551 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 504-4755 -title: Junior Peons Warrior -userPassword: Password1 -uid: HartinN -givenName: Netta -mail: HartinN@9eaee5a095454441a8ff73a3e26fa008.bitwarden.com -carLicense: OD71V4 -departmentNumber: 4519 -employeeType: Contract -homePhone: +1 415 728-4288 -initials: N. H. -mobile: +1 415 725-4268 -pager: +1 415 135-1368 -roomNumber: 9281 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdalen Armentrout -sn: Armentrout -description: This is Magdalen Armentrout's description -facsimileTelephoneNumber: +1 818 863-7407 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 724-4009 -title: Supreme Product Development Punk -userPassword: Password1 -uid: ArmentrM -givenName: Magdalen -mail: ArmentrM@e99ccdd4f1854e85b7018db9ee827387.bitwarden.com -carLicense: V8D0C4 -departmentNumber: 4343 -employeeType: Contract -homePhone: +1 818 587-2050 -initials: M. A. -mobile: +1 818 797-2917 -pager: +1 818 561-8325 -roomNumber: 9826 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Juli Chen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juli Chen -sn: Chen -description: This is Juli Chen's description -facsimileTelephoneNumber: +1 818 278-4922 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 598-8136 -title: Chief Administrative Assistant -userPassword: Password1 -uid: ChenJ -givenName: Juli -mail: ChenJ@6da792b22a5f46b49ab2efdbe92519ba.bitwarden.com -carLicense: JSLFHN -departmentNumber: 2540 -employeeType: Contract -homePhone: +1 818 838-3989 -initials: J. C. -mobile: +1 818 317-1952 -pager: +1 818 983-6393 -roomNumber: 8924 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cubical Quintana,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cubical Quintana -sn: Quintana -description: This is Cubical Quintana's description -facsimileTelephoneNumber: +1 213 474-4633 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 213 422-6379 -title: Junior Administrative Janitor -userPassword: Password1 -uid: QuintanC -givenName: Cubical -mail: QuintanC@008f04f6a73e47758da81bbf288d81a2.bitwarden.com -carLicense: 1RNCHB -departmentNumber: 6867 -employeeType: Employee -homePhone: +1 213 146-5819 -initials: C. Q. -mobile: +1 213 290-7114 -pager: +1 213 141-7462 -roomNumber: 9225 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Liping Acton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liping Acton -sn: Acton -description: This is Liping Acton's description -facsimileTelephoneNumber: +1 510 379-7870 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 619-4398 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: ActonL -givenName: Liping -mail: ActonL@d9cdfd88a6ba482380cbec226ee4ccee.bitwarden.com -carLicense: DWGRNY -departmentNumber: 3293 -employeeType: Normal -homePhone: +1 510 653-6073 -initials: L. A. -mobile: +1 510 985-6630 -pager: +1 510 542-8652 -roomNumber: 8906 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lorry Suprick,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorry Suprick -sn: Suprick -description: This is Lorry Suprick's description -facsimileTelephoneNumber: +1 408 294-8313 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 550-7892 -title: Supreme Administrative President -userPassword: Password1 -uid: SuprickL -givenName: Lorry -mail: SuprickL@872334f15d354ef8b48f04612937d290.bitwarden.com -carLicense: FJELYO -departmentNumber: 4026 -employeeType: Employee -homePhone: +1 408 938-8942 -initials: L. S. -mobile: +1 408 433-4129 -pager: +1 408 523-9686 -roomNumber: 9853 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mattie Astorino,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mattie Astorino -sn: Astorino -description: This is Mattie Astorino's description -facsimileTelephoneNumber: +1 510 930-5756 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 510 434-3230 -title: Chief Administrative Visionary -userPassword: Password1 -uid: AstorinM -givenName: Mattie -mail: AstorinM@103b717daeeb42b79fd5e26fd213a7db.bitwarden.com -carLicense: O0KR7S -departmentNumber: 3960 -employeeType: Employee -homePhone: +1 510 612-8902 -initials: M. A. -mobile: +1 510 966-1240 -pager: +1 510 473-9440 -roomNumber: 9111 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolanda Mooder -sn: Mooder -description: This is Jolanda Mooder's description -facsimileTelephoneNumber: +1 818 492-3543 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 760-7540 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: MooderJ -givenName: Jolanda -mail: MooderJ@982a9dc04ec64d818da9977446a91014.bitwarden.com -carLicense: SDP0V8 -departmentNumber: 6918 -employeeType: Normal -homePhone: +1 818 518-6026 -initials: J. M. -mobile: +1 818 440-1071 -pager: +1 818 900-4253 -roomNumber: 9983 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Suzanne Guatto,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzanne Guatto -sn: Guatto -description: This is Suzanne Guatto's description -facsimileTelephoneNumber: +1 804 722-9145 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 731-7512 -title: Associate Management Consultant -userPassword: Password1 -uid: GuattoS -givenName: Suzanne -mail: GuattoS@677b24267b6440e9ad6bebb082604f25.bitwarden.com -carLicense: PSDGP6 -departmentNumber: 6470 -employeeType: Employee -homePhone: +1 804 892-9483 -initials: S. G. -mobile: +1 804 544-3638 -pager: +1 804 264-9836 -roomNumber: 9177 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Norton Sapena,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norton Sapena -sn: Sapena -description: This is Norton Sapena's description -facsimileTelephoneNumber: +1 213 410-9753 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 580-6092 -title: Associate Product Testing Technician -userPassword: Password1 -uid: SapenaN -givenName: Norton -mail: SapenaN@07f011cc742c4813b7b97485646c3ab6.bitwarden.com -carLicense: F9BIXH -departmentNumber: 4742 -employeeType: Normal -homePhone: +1 213 464-2734 -initials: N. S. -mobile: +1 213 260-7608 -pager: +1 213 374-3725 -roomNumber: 9334 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tsugio Behlen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tsugio Behlen -sn: Behlen -description: This is Tsugio Behlen's description -facsimileTelephoneNumber: +1 510 117-5501 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 421-5497 -title: Associate Administrative Writer -userPassword: Password1 -uid: BehlenT -givenName: Tsugio -mail: BehlenT@c2594ac246a645e3be48149271f5e260.bitwarden.com -carLicense: U6HGV3 -departmentNumber: 8357 -employeeType: Contract -homePhone: +1 510 917-2960 -initials: T. B. -mobile: +1 510 418-4027 -pager: +1 510 511-9534 -roomNumber: 8866 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pammy Liu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pammy Liu -sn: Liu -description: This is Pammy Liu's description -facsimileTelephoneNumber: +1 804 435-6469 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 942-7412 -title: Junior Janitorial President -userPassword: Password1 -uid: LiuP -givenName: Pammy -mail: LiuP@81f849946be048ecbaea85d2b139bc46.bitwarden.com -carLicense: WSNG71 -departmentNumber: 3258 -employeeType: Contract -homePhone: +1 804 895-9995 -initials: P. L. -mobile: +1 804 955-4428 -pager: +1 804 437-2929 -roomNumber: 8552 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Deeyn Frie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deeyn Frie -sn: Frie -description: This is Deeyn Frie's description -facsimileTelephoneNumber: +1 415 754-7590 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 415 464-5004 -title: Chief Peons Consultant -userPassword: Password1 -uid: FrieD -givenName: Deeyn -mail: FrieD@4a53c85fc87e459ba535fa5859abd60b.bitwarden.com -carLicense: LMI62G -departmentNumber: 3882 -employeeType: Normal -homePhone: +1 415 948-3333 -initials: D. F. -mobile: +1 415 713-9129 -pager: +1 415 925-7423 -roomNumber: 8908 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dael Valliere,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dael Valliere -sn: Valliere -description: This is Dael Valliere's description -facsimileTelephoneNumber: +1 415 841-3587 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 322-8127 -title: Chief Management Artist -userPassword: Password1 -uid: VallierD -givenName: Dael -mail: VallierD@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com -carLicense: 3H3KSD -departmentNumber: 7980 -employeeType: Contract -homePhone: +1 415 651-9277 -initials: D. V. -mobile: +1 415 598-4368 -pager: +1 415 793-8803 -roomNumber: 8893 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duncan Lamedica -sn: Lamedica -description: This is Duncan Lamedica's description -facsimileTelephoneNumber: +1 804 405-1565 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 641-6808 -title: Associate Product Testing Czar -userPassword: Password1 -uid: LamedicD -givenName: Duncan -mail: LamedicD@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com -carLicense: VH81QW -departmentNumber: 6221 -employeeType: Normal -homePhone: +1 804 595-2591 -initials: D. L. -mobile: +1 804 760-5416 -pager: +1 804 136-7811 -roomNumber: 8116 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ranna Gentes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranna Gentes -sn: Gentes -description: This is Ranna Gentes's description -facsimileTelephoneNumber: +1 510 537-1744 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 224-9960 -title: Supreme Peons Consultant -userPassword: Password1 -uid: GentesR -givenName: Ranna -mail: GentesR@961e076dc422493d887f975af917cc23.bitwarden.com -carLicense: 7PK3OM -departmentNumber: 6680 -employeeType: Normal -homePhone: +1 510 456-9513 -initials: R. G. -mobile: +1 510 128-5358 -pager: +1 510 640-2150 -roomNumber: 8882 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Khue Trivedi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khue Trivedi -sn: Trivedi -description: This is Khue Trivedi's description -facsimileTelephoneNumber: +1 510 789-7751 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 660-7589 -title: Associate Administrative Consultant -userPassword: Password1 -uid: TrivediK -givenName: Khue -mail: TrivediK@4a5ee2294ea24b569a9468db2ebe9276.bitwarden.com -carLicense: RG9WJ8 -departmentNumber: 9728 -employeeType: Normal -homePhone: +1 510 538-9189 -initials: K. T. -mobile: +1 510 365-2835 -pager: +1 510 894-8726 -roomNumber: 8397 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=YuKai Holloway,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YuKai Holloway -sn: Holloway -description: This is YuKai Holloway's description -facsimileTelephoneNumber: +1 818 641-4476 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 359-9870 -title: Associate Janitorial Admin -userPassword: Password1 -uid: HollowaY -givenName: YuKai -mail: HollowaY@6bcd45269b3d4381b2e2ca25c28340c3.bitwarden.com -carLicense: V5OWKG -departmentNumber: 3958 -employeeType: Normal -homePhone: +1 818 962-7303 -initials: Y. H. -mobile: +1 818 221-4180 -pager: +1 818 116-7601 -roomNumber: 8675 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mrugesh Gaskins,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mrugesh Gaskins -sn: Gaskins -description: This is Mrugesh Gaskins's description -facsimileTelephoneNumber: +1 213 842-7056 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 926-1291 -title: Supreme Management Dictator -userPassword: Password1 -uid: GaskinsM -givenName: Mrugesh -mail: GaskinsM@417f3d03cdca4d2982386320914aed0a.bitwarden.com -carLicense: 7YX1W7 -departmentNumber: 5297 -employeeType: Employee -homePhone: +1 213 384-7880 -initials: M. G. -mobile: +1 213 496-3059 -pager: +1 213 916-6833 -roomNumber: 8849 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Belle Kilner,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belle Kilner -sn: Kilner -description: This is Belle Kilner's description -facsimileTelephoneNumber: +1 415 601-3695 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 166-9689 -title: Junior Management Vice President -userPassword: Password1 -uid: KilnerB -givenName: Belle -mail: KilnerB@f5efd1e9a39c413dbfa9f7e476ae7cea.bitwarden.com -carLicense: 1WQ0SR -departmentNumber: 3143 -employeeType: Normal -homePhone: +1 415 655-3388 -initials: B. K. -mobile: +1 415 120-7545 -pager: +1 415 732-1921 -roomNumber: 8518 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sieber Binnington,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sieber Binnington -sn: Binnington -description: This is Sieber Binnington's description -facsimileTelephoneNumber: +1 818 307-8518 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 499-5266 -title: Master Product Development Czar -userPassword: Password1 -uid: BinningS -givenName: Sieber -mail: BinningS@fed31b4a5e88497aacdfa11612ae4f8e.bitwarden.com -carLicense: JCW8LR -departmentNumber: 8951 -employeeType: Employee -homePhone: +1 818 230-8952 -initials: S. B. -mobile: +1 818 840-2994 -pager: +1 818 451-2866 -roomNumber: 8483 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nananne Bahl,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nananne Bahl -sn: Bahl -description: This is Nananne Bahl's description -facsimileTelephoneNumber: +1 408 178-5779 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 869-2600 -title: Master Administrative Assistant -userPassword: Password1 -uid: BahlN -givenName: Nananne -mail: BahlN@52d447bfc2464a51a20925b35098fffa.bitwarden.com -carLicense: MGHN6G -departmentNumber: 3789 -employeeType: Normal -homePhone: +1 408 437-5934 -initials: N. B. -mobile: +1 408 600-9324 -pager: +1 408 907-8504 -roomNumber: 8478 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eoin DuncanSmith -sn: DuncanSmith -description: This is Eoin DuncanSmith's description -facsimileTelephoneNumber: +1 415 442-9499 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 415 381-1064 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: DuncanSE -givenName: Eoin -mail: DuncanSE@f260a92a20974e44926d8337feae7384.bitwarden.com -carLicense: COXAM6 -departmentNumber: 6287 -employeeType: Contract -homePhone: +1 415 358-9235 -initials: E. D. -mobile: +1 415 476-9371 -pager: +1 415 963-7273 -roomNumber: 8106 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Selia Demers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selia Demers -sn: Demers -description: This is Selia Demers's description -facsimileTelephoneNumber: +1 804 479-2396 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 301-5319 -title: Junior Management Evangelist -userPassword: Password1 -uid: DemersS -givenName: Selia -mail: DemersS@351deec9477e4e51877822ae4f8cd070.bitwarden.com -carLicense: MWIWEP -departmentNumber: 2920 -employeeType: Employee -homePhone: +1 804 761-3154 -initials: S. D. -mobile: +1 804 734-4813 -pager: +1 804 552-2278 -roomNumber: 8847 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Karl Deployment,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karl Deployment -sn: Deployment -description: This is Karl Deployment's description -facsimileTelephoneNumber: +1 206 226-3292 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 330-8292 -title: Master Payroll Engineer -userPassword: Password1 -uid: DeploymK -givenName: Karl -mail: DeploymK@9c29c026596043feb2dca741308aa831.bitwarden.com -carLicense: BJGSWU -departmentNumber: 6015 -employeeType: Employee -homePhone: +1 206 560-4776 -initials: K. D. -mobile: +1 206 260-4295 -pager: +1 206 696-4192 -roomNumber: 8921 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lettie Wolczanski -sn: Wolczanski -description: This is Lettie Wolczanski's description -facsimileTelephoneNumber: +1 804 902-6056 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 739-5064 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: WolczanL -givenName: Lettie -mail: WolczanL@8bb7a419aa064dabb3a5664772478164.bitwarden.com -carLicense: SPF7Q7 -departmentNumber: 1417 -employeeType: Contract -homePhone: +1 804 102-1755 -initials: L. W. -mobile: +1 804 690-4722 -pager: +1 804 897-8355 -roomNumber: 9175 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jolene Eicher,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolene Eicher -sn: Eicher -description: This is Jolene Eicher's description -facsimileTelephoneNumber: +1 213 844-1594 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 332-7055 -title: Junior Product Testing Director -userPassword: Password1 -uid: EicherJ -givenName: Jolene -mail: EicherJ@1502db7fbe534bb781d285fc7f854a26.bitwarden.com -carLicense: BLP0BR -departmentNumber: 4119 -employeeType: Contract -homePhone: +1 213 385-7875 -initials: J. E. -mobile: +1 213 484-6477 -pager: +1 213 293-6870 -roomNumber: 8856 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Merridie Partello,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merridie Partello -sn: Partello -description: This is Merridie Partello's description -facsimileTelephoneNumber: +1 415 799-6699 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 909-7657 -title: Supreme Payroll Writer -userPassword: Password1 -uid: PartellM -givenName: Merridie -mail: PartellM@4b0cd35c3d8442a69514b96d040ad360.bitwarden.com -carLicense: HHBRVQ -departmentNumber: 5731 -employeeType: Employee -homePhone: +1 415 125-1133 -initials: M. P. -mobile: +1 415 100-2449 -pager: +1 415 643-9091 -roomNumber: 8195 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tae Hughson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tae Hughson -sn: Hughson -description: This is Tae Hughson's description -facsimileTelephoneNumber: +1 415 406-8614 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 389-6349 -title: Junior Janitorial Janitor -userPassword: Password1 -uid: HughsonT -givenName: Tae -mail: HughsonT@dd41899c65d54e2a93ab78ead0e2ad6e.bitwarden.com -carLicense: JMP7RF -departmentNumber: 8403 -employeeType: Contract -homePhone: +1 415 462-4753 -initials: T. H. -mobile: +1 415 480-6106 -pager: +1 415 983-5950 -roomNumber: 8047 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bobbye Cech,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobbye Cech -sn: Cech -description: This is Bobbye Cech's description -facsimileTelephoneNumber: +1 408 986-4724 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 420-8112 -title: Associate Administrative Czar -userPassword: Password1 -uid: CechB -givenName: Bobbye -mail: CechB@fc31450cfbdf4f968a1e2c143050e9ed.bitwarden.com -carLicense: LH536Y -departmentNumber: 7811 -employeeType: Contract -homePhone: +1 408 835-1279 -initials: B. C. -mobile: +1 408 884-1082 -pager: +1 408 386-4826 -roomNumber: 8144 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tandy Nilsson -sn: Nilsson -description: This is Tandy Nilsson's description -facsimileTelephoneNumber: +1 213 243-1418 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 262-3207 -title: Chief Human Resources Czar -userPassword: Password1 -uid: NilssonT -givenName: Tandy -mail: NilssonT@7961400fc48646dcae2a3636e26ff106.bitwarden.com -carLicense: FGV39O -departmentNumber: 2892 -employeeType: Contract -homePhone: +1 213 295-2838 -initials: T. N. -mobile: +1 213 294-1580 -pager: +1 213 163-6765 -roomNumber: 8914 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Drucy Serour,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drucy Serour -sn: Serour -description: This is Drucy Serour's description -facsimileTelephoneNumber: +1 213 205-3581 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 860-6278 -title: Chief Payroll Assistant -userPassword: Password1 -uid: SerourD -givenName: Drucy -mail: SerourD@2f4fde2fad2147578d67cd017f823be6.bitwarden.com -carLicense: E89QVT -departmentNumber: 9357 -employeeType: Contract -homePhone: +1 213 857-2349 -initials: D. S. -mobile: +1 213 957-7568 -pager: +1 213 160-8436 -roomNumber: 8958 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abbi Gerlinsky -sn: Gerlinsky -description: This is Abbi Gerlinsky's description -facsimileTelephoneNumber: +1 213 763-5521 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 213 331-2500 -title: Junior Product Development Mascot -userPassword: Password1 -uid: GerlinsA -givenName: Abbi -mail: GerlinsA@7341939506294cf3bdd4bdeca7674074.bitwarden.com -carLicense: FBL592 -departmentNumber: 7471 -employeeType: Normal -homePhone: +1 213 313-1407 -initials: A. G. -mobile: +1 213 375-6229 -pager: +1 213 778-5017 -roomNumber: 8728 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Elnore Alvaro,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elnore Alvaro -sn: Alvaro -description: This is Elnore Alvaro's description -facsimileTelephoneNumber: +1 818 400-3980 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 271-7243 -title: Master Management Punk -userPassword: Password1 -uid: AlvaroE -givenName: Elnore -mail: AlvaroE@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com -carLicense: STID6J -departmentNumber: 9471 -employeeType: Contract -homePhone: +1 818 347-9627 -initials: E. A. -mobile: +1 818 456-5578 -pager: +1 818 126-9013 -roomNumber: 8503 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Briney Emery,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Briney Emery -sn: Emery -description: This is Briney Emery's description -facsimileTelephoneNumber: +1 408 904-4266 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 879-9889 -title: Supreme Human Resources Evangelist -userPassword: Password1 -uid: EmeryB -givenName: Briney -mail: EmeryB@99d73507cedb4612b4870c40410d79f7.bitwarden.com -carLicense: 2AOPH0 -departmentNumber: 6079 -employeeType: Employee -homePhone: +1 408 955-3829 -initials: B. E. -mobile: +1 408 191-9280 -pager: +1 408 160-1347 -roomNumber: 9674 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yukinobu Gandhi -sn: Gandhi -description: This is Yukinobu Gandhi's description -facsimileTelephoneNumber: +1 408 353-1105 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 364-6267 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: GandhiY -givenName: Yukinobu -mail: GandhiY@001f8a7cac5e4e5289e4b851c2ff301c.bitwarden.com -carLicense: TV54Y8 -departmentNumber: 5698 -employeeType: Normal -homePhone: +1 408 875-7459 -initials: Y. G. -mobile: +1 408 227-9563 -pager: +1 408 298-5498 -roomNumber: 9814 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dawn Shubaly,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dawn Shubaly -sn: Shubaly -description: This is Dawn Shubaly's description -facsimileTelephoneNumber: +1 804 446-1480 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 195-4445 -title: Chief Administrative Mascot -userPassword: Password1 -uid: ShubalyD -givenName: Dawn -mail: ShubalyD@8fb9d9d0bee6452fa8938ef7b2ecd6d2.bitwarden.com -carLicense: 156UL7 -departmentNumber: 4399 -employeeType: Normal -homePhone: +1 804 204-9444 -initials: D. S. -mobile: +1 804 970-7294 -pager: +1 804 986-9098 -roomNumber: 9692 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leny Redway,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leny Redway -sn: Redway -description: This is Leny Redway's description -facsimileTelephoneNumber: +1 818 505-6676 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 540-4913 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: RedwayL -givenName: Leny -mail: RedwayL@95fa7f3851674364944296f3d3c2378d.bitwarden.com -carLicense: BPE0XX -departmentNumber: 4916 -employeeType: Employee -homePhone: +1 818 480-8044 -initials: L. R. -mobile: +1 818 906-5316 -pager: +1 818 429-7146 -roomNumber: 8683 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Augusto Mather,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Augusto Mather -sn: Mather -description: This is Augusto Mather's description -facsimileTelephoneNumber: +1 408 155-8153 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 600-7093 -title: Supreme Product Development Pinhead -userPassword: Password1 -uid: MatherA -givenName: Augusto -mail: MatherA@ab120df6e5194bf6ac6a830bba26f7f2.bitwarden.com -carLicense: K1ER03 -departmentNumber: 1833 -employeeType: Employee -homePhone: +1 408 720-9411 -initials: A. M. -mobile: +1 408 562-8418 -pager: +1 408 179-1981 -roomNumber: 9567 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ingeborg OHagan -sn: OHagan -description: This is Ingeborg OHagan's description -facsimileTelephoneNumber: +1 206 928-5958 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 912-7487 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: OHaganI -givenName: Ingeborg -mail: OHaganI@ae98974593454858b3cb78d7db1b60ba.bitwarden.com -carLicense: 07KL23 -departmentNumber: 3213 -employeeType: Normal -homePhone: +1 206 696-7893 -initials: I. O. -mobile: +1 206 306-2584 -pager: +1 206 860-2693 -roomNumber: 8982 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Biplab Natale,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Biplab Natale -sn: Natale -description: This is Biplab Natale's description -facsimileTelephoneNumber: +1 408 809-1372 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 604-7987 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: NataleB -givenName: Biplab -mail: NataleB@848af8a22f514cf2b666369164b5e04f.bitwarden.com -carLicense: 6PXN7D -departmentNumber: 2499 -employeeType: Contract -homePhone: +1 408 566-4441 -initials: B. N. -mobile: +1 408 963-7385 -pager: +1 408 995-2928 -roomNumber: 8649 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ninon Coffey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninon Coffey -sn: Coffey -description: This is Ninon Coffey's description -facsimileTelephoneNumber: +1 804 989-5034 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 167-7629 -title: Chief Peons Developer -userPassword: Password1 -uid: CoffeyN -givenName: Ninon -mail: CoffeyN@fc0265cf65f44283987530dbcb25d095.bitwarden.com -carLicense: U0OCFX -departmentNumber: 8195 -employeeType: Contract -homePhone: +1 804 578-8689 -initials: N. C. -mobile: +1 804 212-6904 -pager: +1 804 232-1853 -roomNumber: 9260 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryLynn Gerritse -sn: Gerritse -description: This is MaryLynn Gerritse's description -facsimileTelephoneNumber: +1 818 306-9879 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 201-5878 -title: Junior Janitorial Czar -userPassword: Password1 -uid: GerritsM -givenName: MaryLynn -mail: GerritsM@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com -carLicense: UDPI2X -departmentNumber: 2922 -employeeType: Contract -homePhone: +1 818 163-5129 -initials: M. G. -mobile: +1 818 103-1781 -pager: +1 818 785-3072 -roomNumber: 8006 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jillana Walkowiak -sn: Walkowiak -description: This is Jillana Walkowiak's description -facsimileTelephoneNumber: +1 818 121-5015 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 910-7389 -title: Master Product Development Pinhead -userPassword: Password1 -uid: WalkowiJ -givenName: Jillana -mail: WalkowiJ@c422d301a0d34f1090b55f1c8625409d.bitwarden.com -carLicense: HKGN8I -departmentNumber: 7745 -employeeType: Contract -homePhone: +1 818 955-6442 -initials: J. W. -mobile: +1 818 362-3123 -pager: +1 818 642-9646 -roomNumber: 9562 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rasia Jauvin -sn: Jauvin -description: This is Rasia Jauvin's description -facsimileTelephoneNumber: +1 510 898-9467 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 101-4236 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: JauvinR -givenName: Rasia -mail: JauvinR@dc389f3c42ad495288e841e30bcf37cb.bitwarden.com -carLicense: 21QW96 -departmentNumber: 9111 -employeeType: Contract -homePhone: +1 510 610-4064 -initials: R. J. -mobile: +1 510 632-9414 -pager: +1 510 396-2762 -roomNumber: 9970 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nando Masterplan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nando Masterplan -sn: Masterplan -description: This is Nando Masterplan's description -facsimileTelephoneNumber: +1 818 603-7399 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 596-8220 -title: Supreme Peons Writer -userPassword: Password1 -uid: MasterpN -givenName: Nando -mail: MasterpN@7b57b8e19b5b443b99958998ffeb1b88.bitwarden.com -carLicense: 3FF3JA -departmentNumber: 1823 -employeeType: Normal -homePhone: +1 818 193-7419 -initials: N. M. -mobile: +1 818 389-8782 -pager: +1 818 854-5791 -roomNumber: 9428 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Farouk Closson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farouk Closson -sn: Closson -description: This is Farouk Closson's description -facsimileTelephoneNumber: +1 206 340-1830 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 939-6546 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: ClossonF -givenName: Farouk -mail: ClossonF@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com -carLicense: XE92V9 -departmentNumber: 3532 -employeeType: Contract -homePhone: +1 206 323-7589 -initials: F. C. -mobile: +1 206 231-7096 -pager: +1 206 170-8116 -roomNumber: 8590 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jacob Andress,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacob Andress -sn: Andress -description: This is Jacob Andress's description -facsimileTelephoneNumber: +1 804 482-2401 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 391-6004 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: AndressJ -givenName: Jacob -mail: AndressJ@3714ef07d9f24410a85dd847beb54eef.bitwarden.com -carLicense: C4XIEC -departmentNumber: 2920 -employeeType: Normal -homePhone: +1 804 543-3425 -initials: J. A. -mobile: +1 804 395-1502 -pager: +1 804 780-3358 -roomNumber: 8511 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tarrah Pavlovic -sn: Pavlovic -description: This is Tarrah Pavlovic's description -facsimileTelephoneNumber: +1 213 137-6554 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 220-4834 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: PavloviT -givenName: Tarrah -mail: PavloviT@8eab0f58e984423689a3d31e38a978a5.bitwarden.com -carLicense: FK842T -departmentNumber: 3898 -employeeType: Normal -homePhone: +1 213 859-7179 -initials: T. P. -mobile: +1 213 861-6444 -pager: +1 213 570-1236 -roomNumber: 8023 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Fikre Mau,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fikre Mau -sn: Mau -description: This is Fikre Mau's description -facsimileTelephoneNumber: +1 206 785-7559 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 951-5576 -title: Master Product Testing Mascot -userPassword: Password1 -uid: MauF -givenName: Fikre -mail: MauF@1338f84446e746bcb89eff436fef936e.bitwarden.com -carLicense: MNSNGE -departmentNumber: 7231 -employeeType: Normal -homePhone: +1 206 609-2997 -initials: F. M. -mobile: +1 206 550-5871 -pager: +1 206 732-4741 -roomNumber: 8205 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zan StPierre,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zan StPierre -sn: StPierre -description: This is Zan StPierre's description -facsimileTelephoneNumber: +1 818 714-3961 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 599-3822 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: StPierrZ -givenName: Zan -mail: StPierrZ@92fe5cbd6cdf40f6b7c15b840696af7e.bitwarden.com -carLicense: 915WDC -departmentNumber: 2572 -employeeType: Normal -homePhone: +1 818 463-6090 -initials: Z. S. -mobile: +1 818 118-6164 -pager: +1 818 639-8548 -roomNumber: 9986 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Michigan Callaghan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michigan Callaghan -sn: Callaghan -description: This is Michigan Callaghan's description -facsimileTelephoneNumber: +1 415 771-4385 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 830-2526 -title: Chief Peons Warrior -userPassword: Password1 -uid: CallaghM -givenName: Michigan -mail: CallaghM@c60b8ebb120748e9aeaff4e4a09ef9ba.bitwarden.com -carLicense: KH4APK -departmentNumber: 6421 -employeeType: Normal -homePhone: +1 415 573-5885 -initials: M. C. -mobile: +1 415 360-7592 -pager: +1 415 717-3904 -roomNumber: 9404 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vesna Suharly,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vesna Suharly -sn: Suharly -description: This is Vesna Suharly's description -facsimileTelephoneNumber: +1 408 950-9385 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 315-5871 -title: Junior Product Testing Consultant -userPassword: Password1 -uid: SuharlyV -givenName: Vesna -mail: SuharlyV@3d0b74ed23c14257ade0d3e35d022c48.bitwarden.com -carLicense: HMCJF8 -departmentNumber: 8396 -employeeType: Contract -homePhone: +1 408 208-8022 -initials: V. S. -mobile: +1 408 554-8276 -pager: +1 408 542-8440 -roomNumber: 8432 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lanette Kardomateas -sn: Kardomateas -description: This is Lanette Kardomateas's description -facsimileTelephoneNumber: +1 415 932-3549 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 415 458-9714 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: KardomaL -givenName: Lanette -mail: KardomaL@10f6046d05e14243ad22c391397b791c.bitwarden.com -carLicense: CJIFYY -departmentNumber: 9639 -employeeType: Normal -homePhone: +1 415 441-8601 -initials: L. K. -mobile: +1 415 289-8647 -pager: +1 415 706-5109 -roomNumber: 8736 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maurise Travers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurise Travers -sn: Travers -description: This is Maurise Travers's description -facsimileTelephoneNumber: +1 818 315-4678 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 599-9648 -title: Master Management Pinhead -userPassword: Password1 -uid: TraversM -givenName: Maurise -mail: TraversM@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com -carLicense: 5XH026 -departmentNumber: 6585 -employeeType: Contract -homePhone: +1 818 749-6539 -initials: M. T. -mobile: +1 818 814-2480 -pager: +1 818 231-1031 -roomNumber: 8164 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Loella Herve,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loella Herve -sn: Herve -description: This is Loella Herve's description -facsimileTelephoneNumber: +1 510 841-7844 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 753-7202 -title: Associate Human Resources Stooge -userPassword: Password1 -uid: HerveL -givenName: Loella -mail: HerveL@574e924f60604e60bceaae691ad7a17d.bitwarden.com -carLicense: BYNCAB -departmentNumber: 9565 -employeeType: Contract -homePhone: +1 510 847-2616 -initials: L. H. -mobile: +1 510 133-2676 -pager: +1 510 456-4261 -roomNumber: 8414 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nettle Zadorozny -sn: Zadorozny -description: This is Nettle Zadorozny's description -facsimileTelephoneNumber: +1 510 868-4036 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 696-4993 -title: Associate Janitorial Writer -userPassword: Password1 -uid: ZadorozN -givenName: Nettle -mail: ZadorozN@a9a16c4a0f7545639cb0982e970e6363.bitwarden.com -carLicense: BE80HC -departmentNumber: 9687 -employeeType: Employee -homePhone: +1 510 340-6193 -initials: N. Z. -mobile: +1 510 579-2874 -pager: +1 510 202-2587 -roomNumber: 9265 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Libbi Marting,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Libbi Marting -sn: Marting -description: This is Libbi Marting's description -facsimileTelephoneNumber: +1 408 176-9997 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 358-1549 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: MartingL -givenName: Libbi -mail: MartingL@8561abc417794d6f8b59aa13dc9be3a5.bitwarden.com -carLicense: 3QTKP7 -departmentNumber: 2024 -employeeType: Contract -homePhone: +1 408 524-1450 -initials: L. M. -mobile: +1 408 739-1601 -pager: +1 408 613-4439 -roomNumber: 8503 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Derrick Myatt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Derrick Myatt -sn: Myatt -description: This is Derrick Myatt's description -facsimileTelephoneNumber: +1 206 246-2440 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 325-2208 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: MyattD -givenName: Derrick -mail: MyattD@8d9527606cc64fa5ab4d6b7792482537.bitwarden.com -carLicense: B4B0U5 -departmentNumber: 4288 -employeeType: Normal -homePhone: +1 206 771-7029 -initials: D. M. -mobile: +1 206 332-6059 -pager: +1 206 591-6413 -roomNumber: 9911 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katharina Nemeth -sn: Nemeth -description: This is Katharina Nemeth's description -facsimileTelephoneNumber: +1 818 138-6513 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 754-5911 -title: Junior Product Testing Madonna -userPassword: Password1 -uid: NemethK -givenName: Katharina -mail: NemethK@8cbfe8f2cf8846329398b1f2552e48e4.bitwarden.com -carLicense: PV6Q76 -departmentNumber: 3532 -employeeType: Employee -homePhone: +1 818 615-9560 -initials: K. N. -mobile: +1 818 867-2181 -pager: +1 818 828-3706 -roomNumber: 8266 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhanvinder Kenyon -sn: Kenyon -description: This is Dhanvinder Kenyon's description -facsimileTelephoneNumber: +1 408 610-2775 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 167-4590 -title: Chief Janitorial Visionary -userPassword: Password1 -uid: KenyonD -givenName: Dhanvinder -mail: KenyonD@c0e366bec54b485a8d61f1970ea7c375.bitwarden.com -carLicense: ULJ7Q0 -departmentNumber: 8733 -employeeType: Employee -homePhone: +1 408 441-5249 -initials: D. K. -mobile: +1 408 627-8977 -pager: +1 408 153-2165 -roomNumber: 9421 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chelsey Emond,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsey Emond -sn: Emond -description: This is Chelsey Emond's description -facsimileTelephoneNumber: +1 213 401-1992 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 940-8113 -title: Associate Janitorial Writer -userPassword: Password1 -uid: EmondC -givenName: Chelsey -mail: EmondC@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com -carLicense: LIK99U -departmentNumber: 3469 -employeeType: Normal -homePhone: +1 213 766-5974 -initials: C. E. -mobile: +1 213 370-9797 -pager: +1 213 449-6149 -roomNumber: 9109 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meredith Saulnier -sn: Saulnier -description: This is Meredith Saulnier's description -facsimileTelephoneNumber: +1 408 293-9984 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 727-3856 -title: Master Human Resources Technician -userPassword: Password1 -uid: SaulnieM -givenName: Meredith -mail: SaulnieM@c8e189f083634334a1fd0d200a0183f2.bitwarden.com -carLicense: 1KCER4 -departmentNumber: 9964 -employeeType: Employee -homePhone: +1 408 761-3400 -initials: M. S. -mobile: +1 408 311-9774 -pager: +1 408 527-8708 -roomNumber: 9963 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Harvey Jugandi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harvey Jugandi -sn: Jugandi -description: This is Harvey Jugandi's description -facsimileTelephoneNumber: +1 415 572-1384 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 277-2432 -title: Supreme Administrative Architect -userPassword: Password1 -uid: JugandiH -givenName: Harvey -mail: JugandiH@b72b425950224ff1bc807aa369857e89.bitwarden.com -carLicense: WSQT86 -departmentNumber: 9645 -employeeType: Employee -homePhone: +1 415 628-7790 -initials: H. J. -mobile: +1 415 989-2851 -pager: +1 415 850-9457 -roomNumber: 9385 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ida Sydor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ida Sydor -sn: Sydor -description: This is Ida Sydor's description -facsimileTelephoneNumber: +1 804 366-4444 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 804 869-2483 -title: Chief Peons Dictator -userPassword: Password1 -uid: SydorI -givenName: Ida -mail: SydorI@17268a5e22084b1a83cdf837a0887b9e.bitwarden.com -carLicense: TKCJB4 -departmentNumber: 2729 -employeeType: Normal -homePhone: +1 804 888-8309 -initials: I. S. -mobile: +1 804 573-9143 -pager: +1 804 373-9049 -roomNumber: 9635 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geneva Stroemer -sn: Stroemer -description: This is Geneva Stroemer's description -facsimileTelephoneNumber: +1 804 902-7141 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 409-6699 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: StroemeG -givenName: Geneva -mail: StroemeG@063f46f6e3c34f628dc59cd54e082665.bitwarden.com -carLicense: T0GCFJ -departmentNumber: 3690 -employeeType: Normal -homePhone: +1 804 675-1408 -initials: G. S. -mobile: +1 804 571-5955 -pager: +1 804 198-8541 -roomNumber: 9100 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=MingMing Wagoner,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MingMing Wagoner -sn: Wagoner -description: This is MingMing Wagoner's description -facsimileTelephoneNumber: +1 213 433-6459 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 213 645-8804 -title: Associate Payroll Writer -userPassword: Password1 -uid: WagonerM -givenName: MingMing -mail: WagonerM@221b1a64a2b0473e979b63298baf53a8.bitwarden.com -carLicense: 0VRTL1 -departmentNumber: 1291 -employeeType: Employee -homePhone: +1 213 873-5621 -initials: M. W. -mobile: +1 213 121-5326 -pager: +1 213 781-6511 -roomNumber: 9753 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shena Joudrey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shena Joudrey -sn: Joudrey -description: This is Shena Joudrey's description -facsimileTelephoneNumber: +1 213 440-8435 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 199-5905 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: JoudreyS -givenName: Shena -mail: JoudreyS@fc250c767129499c871d245494e9d9b6.bitwarden.com -carLicense: AG0F1H -departmentNumber: 6987 -employeeType: Contract -homePhone: +1 213 514-3240 -initials: S. J. -mobile: +1 213 466-1220 -pager: +1 213 673-9437 -roomNumber: 8579 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lurline Nickell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lurline Nickell -sn: Nickell -description: This is Lurline Nickell's description -facsimileTelephoneNumber: +1 510 564-9932 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 983-4548 -title: Associate Product Development Mascot -userPassword: Password1 -uid: NickellL -givenName: Lurline -mail: NickellL@a4626a0d04a64c1083f47ce852f633ad.bitwarden.com -carLicense: O05K47 -departmentNumber: 7111 -employeeType: Employee -homePhone: +1 510 566-5604 -initials: L. N. -mobile: +1 510 238-2853 -pager: +1 510 402-8045 -roomNumber: 9504 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Camilla Njo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camilla Njo -sn: Njo -description: This is Camilla Njo's description -facsimileTelephoneNumber: +1 206 792-6269 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 171-2109 -title: Supreme Product Testing Engineer -userPassword: Password1 -uid: NjoC -givenName: Camilla -mail: NjoC@519077386b7144648a1af65801ba340e.bitwarden.com -carLicense: NO7XIX -departmentNumber: 7484 -employeeType: Employee -homePhone: +1 206 449-8029 -initials: C. N. -mobile: +1 206 765-4230 -pager: +1 206 546-2906 -roomNumber: 9458 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dannie Levesque,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dannie Levesque -sn: Levesque -description: This is Dannie Levesque's description -facsimileTelephoneNumber: +1 804 150-8175 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 804 299-5844 -title: Master Product Development Mascot -userPassword: Password1 -uid: LevesquD -givenName: Dannie -mail: LevesquD@76847a02189543c09ebc787f6f723eab.bitwarden.com -carLicense: F8QMQW -departmentNumber: 6377 -employeeType: Employee -homePhone: +1 804 354-3472 -initials: D. L. -mobile: +1 804 909-5450 -pager: +1 804 973-9044 -roomNumber: 9039 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tarah Melanson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tarah Melanson -sn: Melanson -description: This is Tarah Melanson's description -facsimileTelephoneNumber: +1 818 918-3764 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 818 505-3776 -title: Chief Product Testing Technician -userPassword: Password1 -uid: MelansoT -givenName: Tarah -mail: MelansoT@ba2be91aa4064d8bbc344c883875d66e.bitwarden.com -carLicense: J6XYIG -departmentNumber: 1360 -employeeType: Employee -homePhone: +1 818 216-4105 -initials: T. M. -mobile: +1 818 152-3915 -pager: +1 818 855-7560 -roomNumber: 9168 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Phan Srinivasan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phan Srinivasan -sn: Srinivasan -description: This is Phan Srinivasan's description -facsimileTelephoneNumber: +1 510 628-6145 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 788-6843 -title: Chief Payroll Artist -userPassword: Password1 -uid: SrinivaP -givenName: Phan -mail: SrinivaP@142b52bc05a84c80a55df6addbd72e6b.bitwarden.com -carLicense: OO8DO7 -departmentNumber: 3133 -employeeType: Contract -homePhone: +1 510 176-4127 -initials: P. S. -mobile: +1 510 302-2272 -pager: +1 510 726-2109 -roomNumber: 9036 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ibby Sundar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ibby Sundar -sn: Sundar -description: This is Ibby Sundar's description -facsimileTelephoneNumber: +1 415 650-7236 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 337-4642 -title: Supreme Product Development Czar -userPassword: Password1 -uid: SundarI -givenName: Ibby -mail: SundarI@f89f635a8be04a889dbefd8a681219c7.bitwarden.com -carLicense: H2B3LT -departmentNumber: 6211 -employeeType: Normal -homePhone: +1 415 749-2831 -initials: I. S. -mobile: +1 415 407-2941 -pager: +1 415 630-5361 -roomNumber: 8986 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jerald Battiston,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jerald Battiston -sn: Battiston -description: This is Jerald Battiston's description -facsimileTelephoneNumber: +1 408 605-3886 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 576-1110 -title: Junior Administrative Director -userPassword: Password1 -uid: BattistJ -givenName: Jerald -mail: BattistJ@d7af2d36201f488d997c6f7eea13f491.bitwarden.com -carLicense: 8SQKXX -departmentNumber: 8750 -employeeType: Contract -homePhone: +1 408 662-3113 -initials: J. B. -mobile: +1 408 799-2566 -pager: +1 408 382-5623 -roomNumber: 9454 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rorie Freno,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rorie Freno -sn: Freno -description: This is Rorie Freno's description -facsimileTelephoneNumber: +1 818 546-9767 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 818 761-4352 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: FrenoR -givenName: Rorie -mail: FrenoR@f94a06ac8f314213b758728f67a159f8.bitwarden.com -carLicense: OTHXN5 -departmentNumber: 2873 -employeeType: Contract -homePhone: +1 818 858-5026 -initials: R. F. -mobile: +1 818 166-4056 -pager: +1 818 153-9928 -roomNumber: 9017 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Howie Jubenville,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Howie Jubenville -sn: Jubenville -description: This is Howie Jubenville's description -facsimileTelephoneNumber: +1 213 137-7351 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 213 174-3145 -title: Associate Product Development Fellow -userPassword: Password1 -uid: JubenviH -givenName: Howie -mail: JubenviH@077838522ab04e7fa5ae528e1ed00284.bitwarden.com -carLicense: 9XEKSO -departmentNumber: 3416 -employeeType: Normal -homePhone: +1 213 403-2306 -initials: H. J. -mobile: +1 213 261-2864 -pager: +1 213 172-1367 -roomNumber: 9860 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Neely Dudas,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neely Dudas -sn: Dudas -description: This is Neely Dudas's description -facsimileTelephoneNumber: +1 818 281-5036 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 818 795-3035 -title: Supreme Product Development Czar -userPassword: Password1 -uid: DudasN -givenName: Neely -mail: DudasN@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com -carLicense: 4E4G2A -departmentNumber: 2762 -employeeType: Normal -homePhone: +1 818 136-1037 -initials: N. D. -mobile: +1 818 440-1849 -pager: +1 818 948-1641 -roomNumber: 8002 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sohale Edmxtest -sn: Edmxtest -description: This is Sohale Edmxtest's description -facsimileTelephoneNumber: +1 213 202-4726 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 181-3408 -title: Junior Human Resources Consultant -userPassword: Password1 -uid: EdmxtesS -givenName: Sohale -mail: EdmxtesS@91469109e9e74dbeada032db2abfd838.bitwarden.com -carLicense: 0H7XQ4 -departmentNumber: 9147 -employeeType: Contract -homePhone: +1 213 639-8944 -initials: S. E. -mobile: +1 213 857-9562 -pager: +1 213 446-8801 -roomNumber: 9466 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annamaria Finnerty -sn: Finnerty -description: This is Annamaria Finnerty's description -facsimileTelephoneNumber: +1 510 483-4366 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 123-6210 -title: Master Product Development Mascot -userPassword: Password1 -uid: FinnertA -givenName: Annamaria -mail: FinnertA@8d2bde7cc8a74ac5887aa1747493b68d.bitwarden.com -carLicense: MB55UD -departmentNumber: 8678 -employeeType: Contract -homePhone: +1 510 207-4427 -initials: A. F. -mobile: +1 510 515-4935 -pager: +1 510 900-2183 -roomNumber: 9168 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fawne Thibeault -sn: Thibeault -description: This is Fawne Thibeault's description -facsimileTelephoneNumber: +1 415 328-1217 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 852-3135 -title: Chief Product Testing Admin -userPassword: Password1 -uid: ThibeauF -givenName: Fawne -mail: ThibeauF@0ddc496dccad4aaf85619cae07f217f7.bitwarden.com -carLicense: E7O7SA -departmentNumber: 2748 -employeeType: Contract -homePhone: +1 415 506-4779 -initials: F. T. -mobile: +1 415 124-3349 -pager: +1 415 236-6223 -roomNumber: 8725 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kennon Risto,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kennon Risto -sn: Risto -description: This is Kennon Risto's description -facsimileTelephoneNumber: +1 804 600-1462 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 489-7683 -title: Junior Product Testing Admin -userPassword: Password1 -uid: RistoK -givenName: Kennon -mail: RistoK@516b0fff20e84be4bd74141b3a98052f.bitwarden.com -carLicense: 62I95S -departmentNumber: 2329 -employeeType: Normal -homePhone: +1 804 251-2786 -initials: K. R. -mobile: +1 804 789-1066 -pager: +1 804 601-6100 -roomNumber: 9118 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jimson McVey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jimson McVey -sn: McVey -description: This is Jimson McVey's description -facsimileTelephoneNumber: +1 510 321-4040 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 510 840-3929 -title: Junior Administrative Fellow -userPassword: Password1 -uid: McVeyJ -givenName: Jimson -mail: McVeyJ@4a145fc9121947ce8b995d7a67929715.bitwarden.com -carLicense: DD6DRD -departmentNumber: 3864 -employeeType: Employee -homePhone: +1 510 786-6027 -initials: J. M. -mobile: +1 510 403-5157 -pager: +1 510 126-2175 -roomNumber: 9238 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Elisabet Deicher,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elisabet Deicher -sn: Deicher -description: This is Elisabet Deicher's description -facsimileTelephoneNumber: +1 213 187-1901 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 587-4909 -title: Associate Payroll Czar -userPassword: Password1 -uid: DeicherE -givenName: Elisabet -mail: DeicherE@bf1b7c9bff4a47609eb686872f73e291.bitwarden.com -carLicense: 3DXBJ5 -departmentNumber: 9520 -employeeType: Normal -homePhone: +1 213 806-9194 -initials: E. D. -mobile: +1 213 205-8308 -pager: +1 213 237-7436 -roomNumber: 8326 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Amye Barritt,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amye Barritt -sn: Barritt -description: This is Amye Barritt's description -facsimileTelephoneNumber: +1 206 117-9489 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 119-4898 -title: Chief Administrative Writer -userPassword: Password1 -uid: BarrittA -givenName: Amye -mail: BarrittA@b06576e7cc594af79143f743174735e0.bitwarden.com -carLicense: IHKRSE -departmentNumber: 2715 -employeeType: Normal -homePhone: +1 206 158-4266 -initials: A. B. -mobile: +1 206 777-7079 -pager: +1 206 435-2769 -roomNumber: 9024 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Corry Ivett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corry Ivett -sn: Ivett -description: This is Corry Ivett's description -facsimileTelephoneNumber: +1 818 430-5403 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 319-5016 -title: Associate Human Resources Stooge -userPassword: Password1 -uid: IvettC -givenName: Corry -mail: IvettC@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com -carLicense: 96O8R5 -departmentNumber: 8063 -employeeType: Employee -homePhone: +1 818 209-2939 -initials: C. I. -mobile: +1 818 953-7908 -pager: +1 818 901-4378 -roomNumber: 9096 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Adan Kelkar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adan Kelkar -sn: Kelkar -description: This is Adan Kelkar's description -facsimileTelephoneNumber: +1 804 851-3680 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 517-9581 -title: Associate Product Testing President -userPassword: Password1 -uid: KelkarA -givenName: Adan -mail: KelkarA@0c0d598f6d704fe4b60b7d7dc8951e3a.bitwarden.com -carLicense: 3NCQOT -departmentNumber: 5087 -employeeType: Employee -homePhone: +1 804 118-6229 -initials: A. K. -mobile: +1 804 480-1978 -pager: +1 804 304-9136 -roomNumber: 8379 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ross Sepko,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ross Sepko -sn: Sepko -description: This is Ross Sepko's description -facsimileTelephoneNumber: +1 415 202-5048 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 398-7735 -title: Associate Management Technician -userPassword: Password1 -uid: SepkoR -givenName: Ross -mail: SepkoR@6e39649cbd0445acb57079f77e401bb6.bitwarden.com -carLicense: ASONHD -departmentNumber: 5810 -employeeType: Employee -homePhone: +1 415 961-4376 -initials: R. S. -mobile: +1 415 830-5559 -pager: +1 415 452-7286 -roomNumber: 9828 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronneke Dadkhah -sn: Dadkhah -description: This is Ronneke Dadkhah's description -facsimileTelephoneNumber: +1 415 587-6175 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 492-2383 -title: Supreme Human Resources Artist -userPassword: Password1 -uid: DadkhahR -givenName: Ronneke -mail: DadkhahR@fa77f7a366264da6a4e9ab74eb89c64c.bitwarden.com -carLicense: WH3IEF -departmentNumber: 3366 -employeeType: Normal -homePhone: +1 415 488-9371 -initials: R. D. -mobile: +1 415 959-4718 -pager: +1 415 126-7866 -roomNumber: 8425 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Apryle Davy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Apryle Davy -sn: Davy -description: This is Apryle Davy's description -facsimileTelephoneNumber: +1 206 406-8880 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 338-1556 -title: Chief Administrative Warrior -userPassword: Password1 -uid: DavyA -givenName: Apryle -mail: DavyA@0033304ecf264958be4e3649e61343d9.bitwarden.com -carLicense: LFDQCK -departmentNumber: 4350 -employeeType: Employee -homePhone: +1 206 835-5899 -initials: A. D. -mobile: +1 206 465-9086 -pager: +1 206 324-1583 -roomNumber: 9814 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lecien Akrawi -sn: Akrawi -description: This is Lecien Akrawi's description -facsimileTelephoneNumber: +1 510 566-2375 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 990-7077 -title: Master Product Testing Fellow -userPassword: Password1 -uid: AkrawiL -givenName: Lecien -mail: AkrawiL@86bd838434bd44c0b1970d4b53f78a53.bitwarden.com -carLicense: 3UYR45 -departmentNumber: 8623 -employeeType: Contract -homePhone: +1 510 577-3352 -initials: L. A. -mobile: +1 510 783-8252 -pager: +1 510 729-8700 -roomNumber: 9705 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carlota Inoue,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlota Inoue -sn: Inoue -description: This is Carlota Inoue's description -facsimileTelephoneNumber: +1 206 997-8304 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 902-2736 -title: Junior Product Development Manager -userPassword: Password1 -uid: InoueC -givenName: Carlota -mail: InoueC@13e3dc6812b646519614bfe380e524a9.bitwarden.com -carLicense: WM1TWF -departmentNumber: 8329 -employeeType: Normal -homePhone: +1 206 851-7588 -initials: C. I. -mobile: +1 206 938-8642 -pager: +1 206 706-1302 -roomNumber: 9342 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leanne Smolin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leanne Smolin -sn: Smolin -description: This is Leanne Smolin's description -facsimileTelephoneNumber: +1 213 780-5640 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 523-6788 -title: Associate Payroll Madonna -userPassword: Password1 -uid: SmolinL -givenName: Leanne -mail: SmolinL@7b1ae059f10c4c999e0f2bc4fd98859f.bitwarden.com -carLicense: LF4T7G -departmentNumber: 4117 -employeeType: Contract -homePhone: +1 213 586-2719 -initials: L. S. -mobile: +1 213 879-8334 -pager: +1 213 867-4067 -roomNumber: 8888 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kailey Bagshaw,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kailey Bagshaw -sn: Bagshaw -description: This is Kailey Bagshaw's description -facsimileTelephoneNumber: +1 408 660-6533 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 816-4341 -title: Master Peons Mascot -userPassword: Password1 -uid: BagshawK -givenName: Kailey -mail: BagshawK@326d8403ad204a388a69bbd4329fe5a2.bitwarden.com -carLicense: UE0HPC -departmentNumber: 5229 -employeeType: Normal -homePhone: +1 408 958-9822 -initials: K. B. -mobile: +1 408 570-6715 -pager: +1 408 738-6647 -roomNumber: 8887 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dennis Zerriffi -sn: Zerriffi -description: This is Dennis Zerriffi's description -facsimileTelephoneNumber: +1 213 599-3626 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 344-8466 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: ZerriffD -givenName: Dennis -mail: ZerriffD@eb0751f8f0ce45129ec8ccf1ddccc89a.bitwarden.com -carLicense: MHVYPK -departmentNumber: 7489 -employeeType: Employee -homePhone: +1 213 378-9899 -initials: D. Z. -mobile: +1 213 511-6186 -pager: +1 213 457-6829 -roomNumber: 9988 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Trever Moffatt,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trever Moffatt -sn: Moffatt -description: This is Trever Moffatt's description -facsimileTelephoneNumber: +1 213 822-5839 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 825-5581 -title: Supreme Management Figurehead -userPassword: Password1 -uid: MoffattT -givenName: Trever -mail: MoffattT@d5293c91bc7840f0948a89a10840461e.bitwarden.com -carLicense: 472VJ3 -departmentNumber: 7416 -employeeType: Normal -homePhone: +1 213 405-7942 -initials: T. M. -mobile: +1 213 117-1709 -pager: +1 213 461-6486 -roomNumber: 9200 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Weringh Behlen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weringh Behlen -sn: Behlen -description: This is Weringh Behlen's description -facsimileTelephoneNumber: +1 804 113-8699 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 438-5621 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: BehlenW -givenName: Weringh -mail: BehlenW@ec02515092c0432c96114e0e3b48b13f.bitwarden.com -carLicense: YILUG0 -departmentNumber: 6260 -employeeType: Employee -homePhone: +1 804 392-9027 -initials: W. B. -mobile: +1 804 585-5376 -pager: +1 804 210-4881 -roomNumber: 8023 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Alain Walser,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alain Walser -sn: Walser -description: This is Alain Walser's description -facsimileTelephoneNumber: +1 408 179-2346 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 648-2905 -title: Junior Administrative Assistant -userPassword: Password1 -uid: WalserA -givenName: Alain -mail: WalserA@4d59261d3bca4e1fb4d732d67dc2ff95.bitwarden.com -carLicense: OAAFN1 -departmentNumber: 5670 -employeeType: Normal -homePhone: +1 408 792-4063 -initials: A. W. -mobile: +1 408 181-5741 -pager: +1 408 525-6883 -roomNumber: 9845 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kanya Erguven,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanya Erguven -sn: Erguven -description: This is Kanya Erguven's description -facsimileTelephoneNumber: +1 818 580-6095 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 798-6910 -title: Junior Product Testing Dictator -userPassword: Password1 -uid: ErguvenK -givenName: Kanya -mail: ErguvenK@1b4bc37ec1234668beb3a7c3f6a14e94.bitwarden.com -carLicense: 5CRNYO -departmentNumber: 1023 -employeeType: Normal -homePhone: +1 818 817-5525 -initials: K. E. -mobile: +1 818 737-4033 -pager: +1 818 372-3769 -roomNumber: 8408 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Robina Prestrud,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robina Prestrud -sn: Prestrud -description: This is Robina Prestrud's description -facsimileTelephoneNumber: +1 510 195-1786 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 301-2992 -title: Associate Human Resources Writer -userPassword: Password1 -uid: PrestruR -givenName: Robina -mail: PrestruR@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com -carLicense: GGI4BU -departmentNumber: 4778 -employeeType: Employee -homePhone: +1 510 257-3794 -initials: R. P. -mobile: +1 510 510-9703 -pager: +1 510 553-9459 -roomNumber: 9623 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emmye Nahas,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emmye Nahas -sn: Nahas -description: This is Emmye Nahas's description -facsimileTelephoneNumber: +1 206 998-4448 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 206 145-4792 -title: Supreme Product Development Admin -userPassword: Password1 -uid: NahasE -givenName: Emmye -mail: NahasE@c7756644cb48413f87c87c1ccc9ba2c9.bitwarden.com -carLicense: K2BKOB -departmentNumber: 3719 -employeeType: Employee -homePhone: +1 206 242-7021 -initials: E. N. -mobile: +1 206 441-3966 -pager: +1 206 358-4920 -roomNumber: 9521 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Flori Suddarth,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flori Suddarth -sn: Suddarth -description: This is Flori Suddarth's description -facsimileTelephoneNumber: +1 213 690-6787 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 795-1691 -title: Supreme Management Mascot -userPassword: Password1 -uid: SuddartF -givenName: Flori -mail: SuddartF@df9fef66ff8d4a1eb163eeab8b34d029.bitwarden.com -carLicense: 7L948T -departmentNumber: 2139 -employeeType: Contract -homePhone: +1 213 923-2830 -initials: F. S. -mobile: +1 213 838-8579 -pager: +1 213 884-7755 -roomNumber: 8320 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mkt Kelso,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mkt Kelso -sn: Kelso -description: This is Mkt Kelso's description -facsimileTelephoneNumber: +1 408 161-8233 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 560-7559 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: KelsoM -givenName: Mkt -mail: KelsoM@77605ba7efb54b24b15d418d1dcaf9e1.bitwarden.com -carLicense: LEOFU0 -departmentNumber: 8504 -employeeType: Normal -homePhone: +1 408 749-9978 -initials: M. K. -mobile: +1 408 679-5318 -pager: +1 408 954-6730 -roomNumber: 9700 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Annie Goswick,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annie Goswick -sn: Goswick -description: This is Annie Goswick's description -facsimileTelephoneNumber: +1 213 330-6316 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 535-3488 -title: Master Administrative Grunt -userPassword: Password1 -uid: GoswickA -givenName: Annie -mail: GoswickA@0cd2f193d0214a7093f88bef98ef3534.bitwarden.com -carLicense: VEQGNT -departmentNumber: 9307 -employeeType: Contract -homePhone: +1 213 905-6757 -initials: A. G. -mobile: +1 213 950-5690 -pager: +1 213 189-6484 -roomNumber: 9465 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ianthe Foeppel -sn: Foeppel -description: This is Ianthe Foeppel's description -facsimileTelephoneNumber: +1 804 870-1327 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 214-1230 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: FoeppelI -givenName: Ianthe -mail: FoeppelI@6c580c7bb9d24c0e8e8c0f701314c400.bitwarden.com -carLicense: DAF834 -departmentNumber: 6760 -employeeType: Contract -homePhone: +1 804 487-3060 -initials: I. F. -mobile: +1 804 449-2191 -pager: +1 804 856-4794 -roomNumber: 8944 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rhonda Beeston,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhonda Beeston -sn: Beeston -description: This is Rhonda Beeston's description -facsimileTelephoneNumber: +1 415 864-4792 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 415 728-8850 -title: Associate Peons Fellow -userPassword: Password1 -uid: BeestonR -givenName: Rhonda -mail: BeestonR@f8b5ec3dd78f44e3bd6de92c22b0edfc.bitwarden.com -carLicense: 0F30QN -departmentNumber: 6884 -employeeType: Employee -homePhone: +1 415 533-8217 -initials: R. B. -mobile: +1 415 293-8709 -pager: +1 415 551-7461 -roomNumber: 8747 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amrik Bokij,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amrik Bokij -sn: Bokij -description: This is Amrik Bokij's description -facsimileTelephoneNumber: +1 804 753-7025 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 621-5085 -title: Chief Payroll Janitor -userPassword: Password1 -uid: BokijA -givenName: Amrik -mail: BokijA@231bc329012a4b71830de92a0a747aec.bitwarden.com -carLicense: 1PAQGG -departmentNumber: 8421 -employeeType: Contract -homePhone: +1 804 426-3072 -initials: A. B. -mobile: +1 804 382-5065 -pager: +1 804 426-1941 -roomNumber: 8813 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Merralee Malkani,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merralee Malkani -sn: Malkani -description: This is Merralee Malkani's description -facsimileTelephoneNumber: +1 510 110-8155 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 772-9282 -title: Supreme Management Director -userPassword: Password1 -uid: MalkaniM -givenName: Merralee -mail: MalkaniM@2111c0b8de8b41c796ea6df8823ccfc3.bitwarden.com -carLicense: 7T6193 -departmentNumber: 9950 -employeeType: Normal -homePhone: +1 510 317-6032 -initials: M. M. -mobile: +1 510 879-9164 -pager: +1 510 687-2266 -roomNumber: 9439 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kyle Malkani,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kyle Malkani -sn: Malkani -description: This is Kyle Malkani's description -facsimileTelephoneNumber: +1 510 694-7181 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 161-6541 -title: Chief Management Janitor -userPassword: Password1 -uid: MalkaniK -givenName: Kyle -mail: MalkaniK@456b6a48ca9a4969bd47e1edd5748e50.bitwarden.com -carLicense: S9SIV5 -departmentNumber: 8102 -employeeType: Normal -homePhone: +1 510 823-5972 -initials: K. M. -mobile: +1 510 247-3456 -pager: +1 510 512-8773 -roomNumber: 9008 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Leese Jamaly,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leese Jamaly -sn: Jamaly -description: This is Leese Jamaly's description -facsimileTelephoneNumber: +1 206 150-7545 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 415-9919 -title: Chief Payroll Director -userPassword: Password1 -uid: JamalyL -givenName: Leese -mail: JamalyL@c6a8d6d12ae045f8ba075455c769a929.bitwarden.com -carLicense: 88RBXM -departmentNumber: 8823 -employeeType: Contract -homePhone: +1 206 917-1411 -initials: L. J. -mobile: +1 206 782-2488 -pager: +1 206 613-9861 -roomNumber: 9782 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Eloise Gurash,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eloise Gurash -sn: Gurash -description: This is Eloise Gurash's description -facsimileTelephoneNumber: +1 818 917-4086 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 396-7733 -title: Supreme Human Resources Evangelist -userPassword: Password1 -uid: GurashE -givenName: Eloise -mail: GurashE@1d57349150aa4b7c9c63519094984965.bitwarden.com -carLicense: BM6VOK -departmentNumber: 2616 -employeeType: Normal -homePhone: +1 818 683-2987 -initials: E. G. -mobile: +1 818 914-4143 -pager: +1 818 243-9241 -roomNumber: 8302 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elpida Marples,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elpida Marples -sn: Marples -description: This is Elpida Marples's description -facsimileTelephoneNumber: +1 415 325-9084 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 598-6556 -title: Junior Administrative Madonna -userPassword: Password1 -uid: MarplesE -givenName: Elpida -mail: MarplesE@950e4dfb6fcd4307837aab6105ae8d0b.bitwarden.com -carLicense: A1X3NA -departmentNumber: 2906 -employeeType: Contract -homePhone: +1 415 561-5960 -initials: E. M. -mobile: +1 415 100-6979 -pager: +1 415 633-4056 -roomNumber: 9933 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Blondie Algood,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blondie Algood -sn: Algood -description: This is Blondie Algood's description -facsimileTelephoneNumber: +1 415 774-2019 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 677-3146 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: AlgoodB -givenName: Blondie -mail: AlgoodB@fd60ce8a79b644ba9d190b4bf769b6de.bitwarden.com -carLicense: O99CT7 -departmentNumber: 6887 -employeeType: Employee -homePhone: +1 415 179-4382 -initials: B. A. -mobile: +1 415 118-3902 -pager: +1 415 986-1144 -roomNumber: 9368 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caitrin McWalters -sn: McWalters -description: This is Caitrin McWalters's description -facsimileTelephoneNumber: +1 510 339-4424 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 742-7407 -title: Master Product Testing Czar -userPassword: Password1 -uid: McWalteC -givenName: Caitrin -mail: McWalteC@70ad644ea35f4f68843a1f3bb2116072.bitwarden.com -carLicense: LW9BBE -departmentNumber: 8201 -employeeType: Contract -homePhone: +1 510 543-2056 -initials: C. M. -mobile: +1 510 623-4799 -pager: +1 510 222-8044 -roomNumber: 8262 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Averil Hirsch,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Averil Hirsch -sn: Hirsch -description: This is Averil Hirsch's description -facsimileTelephoneNumber: +1 818 391-8504 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 818 906-3261 -title: Supreme Peons Warrior -userPassword: Password1 -uid: HirschA -givenName: Averil -mail: HirschA@4ce8989b72bf418782f9268b205e86e4.bitwarden.com -carLicense: EKI8I9 -departmentNumber: 1351 -employeeType: Contract -homePhone: +1 818 702-3015 -initials: A. H. -mobile: +1 818 394-1418 -pager: +1 818 995-1754 -roomNumber: 9166 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Manijeh Older,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manijeh Older -sn: Older -description: This is Manijeh Older's description -facsimileTelephoneNumber: +1 804 846-4373 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 895-5799 -title: Associate Management Punk -userPassword: Password1 -uid: OlderM -givenName: Manijeh -mail: OlderM@519a4247e98245adb82415fbed3acf4c.bitwarden.com -carLicense: NUWCC3 -departmentNumber: 1105 -employeeType: Normal -homePhone: +1 804 717-6797 -initials: M. O. -mobile: +1 804 621-8581 -pager: +1 804 960-5193 -roomNumber: 8541 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lonee Swinkels,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lonee Swinkels -sn: Swinkels -description: This is Lonee Swinkels's description -facsimileTelephoneNumber: +1 804 993-2009 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 453-2236 -title: Supreme Administrative Architect -userPassword: Password1 -uid: SwinkelL -givenName: Lonee -mail: SwinkelL@534eab5a672047c98d17e83c1921c458.bitwarden.com -carLicense: ESR9AG -departmentNumber: 4800 -employeeType: Contract -homePhone: +1 804 773-2874 -initials: L. S. -mobile: +1 804 645-8993 -pager: +1 804 730-1090 -roomNumber: 9181 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jun Reith,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jun Reith -sn: Reith -description: This is Jun Reith's description -facsimileTelephoneNumber: +1 408 352-7446 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 893-8441 -title: Master Product Development Admin -userPassword: Password1 -uid: ReithJ -givenName: Jun -mail: ReithJ@813a07c4538b406aa71825ab3ba2ab54.bitwarden.com -carLicense: MS54UR -departmentNumber: 9893 -employeeType: Normal -homePhone: +1 408 307-5398 -initials: J. R. -mobile: +1 408 127-7348 -pager: +1 408 913-1400 -roomNumber: 9255 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Otter Uberig,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Otter Uberig -sn: Uberig -description: This is Otter Uberig's description -facsimileTelephoneNumber: +1 415 408-7227 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 230-7821 -title: Junior Management Evangelist -userPassword: Password1 -uid: UberigO -givenName: Otter -mail: UberigO@2f13ca54ee794decad24515251a42dff.bitwarden.com -carLicense: 4RV42I -departmentNumber: 7337 -employeeType: Contract -homePhone: +1 415 382-2789 -initials: O. U. -mobile: +1 415 204-8416 -pager: +1 415 936-7515 -roomNumber: 8708 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hendrik Ruyant,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hendrik Ruyant -sn: Ruyant -description: This is Hendrik Ruyant's description -facsimileTelephoneNumber: +1 804 448-1032 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 897-7367 -title: Junior Management Fellow -userPassword: Password1 -uid: RuyantH -givenName: Hendrik -mail: RuyantH@b3c93053c0224253988d5c3b976abcae.bitwarden.com -carLicense: CFB1NF -departmentNumber: 7844 -employeeType: Normal -homePhone: +1 804 900-7993 -initials: H. R. -mobile: +1 804 762-7114 -pager: +1 804 535-4861 -roomNumber: 8857 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Colline Monaco,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colline Monaco -sn: Monaco -description: This is Colline Monaco's description -facsimileTelephoneNumber: +1 818 778-5575 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 893-1608 -title: Chief Product Development Technician -userPassword: Password1 -uid: MonacoC -givenName: Colline -mail: MonacoC@bd83bea8ad1d4beeb411fff32d119ceb.bitwarden.com -carLicense: KXUYC5 -departmentNumber: 1480 -employeeType: Normal -homePhone: +1 818 460-1099 -initials: C. M. -mobile: +1 818 452-9015 -pager: +1 818 898-1404 -roomNumber: 8915 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ilene Didylowski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilene Didylowski -sn: Didylowski -description: This is Ilene Didylowski's description -facsimileTelephoneNumber: +1 206 750-2620 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 193-7788 -title: Supreme Payroll Manager -userPassword: Password1 -uid: DidylowI -givenName: Ilene -mail: DidylowI@4fc4e61aa4364561b3dbed18d06aa13c.bitwarden.com -carLicense: EGX8NE -departmentNumber: 2317 -employeeType: Employee -homePhone: +1 206 382-2659 -initials: I. D. -mobile: +1 206 365-8341 -pager: +1 206 436-6228 -roomNumber: 8830 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Norine Krone,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norine Krone -sn: Krone -description: This is Norine Krone's description -facsimileTelephoneNumber: +1 206 317-5357 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 385-6043 -title: Junior Administrative Stooge -userPassword: Password1 -uid: KroneN -givenName: Norine -mail: KroneN@be647af747894379a1244c13fb5bb1f0.bitwarden.com -carLicense: 2N26IL -departmentNumber: 1431 -employeeType: Employee -homePhone: +1 206 978-9227 -initials: N. K. -mobile: +1 206 930-2308 -pager: +1 206 349-1888 -roomNumber: 9631 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yolanthe McLauchlan -sn: McLauchlan -description: This is Yolanthe McLauchlan's description -facsimileTelephoneNumber: +1 415 541-2492 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 614-7659 -title: Chief Payroll Technician -userPassword: Password1 -uid: McLauchY -givenName: Yolanthe -mail: McLauchY@ea44c2476f934218bf3d758975e567c8.bitwarden.com -carLicense: XY13BV -departmentNumber: 7815 -employeeType: Normal -homePhone: +1 415 950-6199 -initials: Y. M. -mobile: +1 415 700-9086 -pager: +1 415 578-6748 -roomNumber: 8469 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Chander Daudin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chander Daudin -sn: Daudin -description: This is Chander Daudin's description -facsimileTelephoneNumber: +1 206 296-6668 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 248-3190 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: DaudinC -givenName: Chander -mail: DaudinC@7c50c697d2e74fa1bb1d9087c755a405.bitwarden.com -carLicense: CELI71 -departmentNumber: 9121 -employeeType: Normal -homePhone: +1 206 865-9438 -initials: C. D. -mobile: +1 206 330-6846 -pager: +1 206 405-2749 -roomNumber: 8054 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Phelia Valois,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phelia Valois -sn: Valois -description: This is Phelia Valois's description -facsimileTelephoneNumber: +1 818 411-4484 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 510-7686 -title: Master Payroll Evangelist -userPassword: Password1 -uid: ValoisP -givenName: Phelia -mail: ValoisP@3183d831d932421d873ae5ed85ead634.bitwarden.com -carLicense: RN88F3 -departmentNumber: 2467 -employeeType: Employee -homePhone: +1 818 444-5023 -initials: P. V. -mobile: +1 818 116-3355 -pager: +1 818 592-1169 -roomNumber: 8236 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carmela Bonner,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmela Bonner -sn: Bonner -description: This is Carmela Bonner's description -facsimileTelephoneNumber: +1 510 171-2399 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 407-8013 -title: Master Payroll Admin -userPassword: Password1 -uid: BonnerC -givenName: Carmela -mail: BonnerC@412af91bb3534a1b89a431db4cb8a7a6.bitwarden.com -carLicense: 45EDOS -departmentNumber: 4988 -employeeType: Normal -homePhone: +1 510 539-2806 -initials: C. B. -mobile: +1 510 154-3285 -pager: +1 510 740-2258 -roomNumber: 8811 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brandice Becquart,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandice Becquart -sn: Becquart -description: This is Brandice Becquart's description -facsimileTelephoneNumber: +1 408 659-1942 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 344-3961 -title: Associate Management Madonna -userPassword: Password1 -uid: BecquarB -givenName: Brandice -mail: BecquarB@4825d57ae32e45d08a65519dcb193960.bitwarden.com -carLicense: 96AUWB -departmentNumber: 3711 -employeeType: Normal -homePhone: +1 408 153-4512 -initials: B. B. -mobile: +1 408 527-9604 -pager: +1 408 178-2981 -roomNumber: 8377 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gen Guinnane,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gen Guinnane -sn: Guinnane -description: This is Gen Guinnane's description -facsimileTelephoneNumber: +1 408 707-8762 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 245-8581 -title: Associate Management Dictator -userPassword: Password1 -uid: GuinnanG -givenName: Gen -mail: GuinnanG@f01b8c6e19b14b049532cb6664f8caaa.bitwarden.com -carLicense: URY9VL -departmentNumber: 7757 -employeeType: Employee -homePhone: +1 408 728-4760 -initials: G. G. -mobile: +1 408 555-2683 -pager: +1 408 956-2888 -roomNumber: 9430 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carmelia Lawlor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmelia Lawlor -sn: Lawlor -description: This is Carmelia Lawlor's description -facsimileTelephoneNumber: +1 510 451-1008 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 992-9786 -title: Master Management Technician -userPassword: Password1 -uid: LawlorC -givenName: Carmelia -mail: LawlorC@2340b24115454336b8f5eb39757ab759.bitwarden.com -carLicense: 053RFJ -departmentNumber: 7505 -employeeType: Contract -homePhone: +1 510 293-3836 -initials: C. L. -mobile: +1 510 103-6589 -pager: +1 510 622-7857 -roomNumber: 8404 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Riva DIppolito,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Riva DIppolito -sn: DIppolito -description: This is Riva DIppolito's description -facsimileTelephoneNumber: +1 213 230-3691 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 507-1916 -title: Junior Management Architect -userPassword: Password1 -uid: DIppoliR -givenName: Riva -mail: DIppoliR@74cfe2fa4b0b457bbb2822816bc66149.bitwarden.com -carLicense: PDGSNJ -departmentNumber: 7217 -employeeType: Contract -homePhone: +1 213 579-2331 -initials: R. D. -mobile: +1 213 308-9841 -pager: +1 213 674-5855 -roomNumber: 9766 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Letisha Subsara,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Letisha Subsara -sn: Subsara -description: This is Letisha Subsara's description -facsimileTelephoneNumber: +1 804 148-2906 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 297-6231 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: SubsaraL -givenName: Letisha -mail: SubsaraL@903617d1ed564473826d5f2c9b25fe7c.bitwarden.com -carLicense: ONXFLH -departmentNumber: 7795 -employeeType: Contract -homePhone: +1 804 963-9708 -initials: L. S. -mobile: +1 804 142-4943 -pager: +1 804 320-4887 -roomNumber: 9429 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chellappan Caple,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chellappan Caple -sn: Caple -description: This is Chellappan Caple's description -facsimileTelephoneNumber: +1 510 451-7872 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 179-4330 -title: Associate Management Sales Rep -userPassword: Password1 -uid: CapleC -givenName: Chellappan -mail: CapleC@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com -carLicense: YYXJQ4 -departmentNumber: 7659 -employeeType: Employee -homePhone: +1 510 102-9754 -initials: C. C. -mobile: +1 510 865-3623 -pager: +1 510 135-6636 -roomNumber: 8081 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lendon Shigemura,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lendon Shigemura -sn: Shigemura -description: This is Lendon Shigemura's description -facsimileTelephoneNumber: +1 818 172-8802 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 725-5089 -title: Supreme Management Assistant -userPassword: Password1 -uid: ShigemuL -givenName: Lendon -mail: ShigemuL@07f933542a8443fa9fa85a2d55eb8b28.bitwarden.com -carLicense: R7LS6J -departmentNumber: 5497 -employeeType: Employee -homePhone: +1 818 141-7519 -initials: L. S. -mobile: +1 818 120-3535 -pager: +1 818 413-9860 -roomNumber: 8289 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alicia Vermette,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alicia Vermette -sn: Vermette -description: This is Alicia Vermette's description -facsimileTelephoneNumber: +1 804 409-5878 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 449-1944 -title: Master Human Resources Visionary -userPassword: Password1 -uid: VermettA -givenName: Alicia -mail: VermettA@9ce7cc8c772f4514b0b5126957e2752f.bitwarden.com -carLicense: 1QG51U -departmentNumber: 7415 -employeeType: Normal -homePhone: +1 804 160-2302 -initials: A. V. -mobile: +1 804 305-8748 -pager: +1 804 265-8780 -roomNumber: 8433 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marys Pellegrini,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marys Pellegrini -sn: Pellegrini -description: This is Marys Pellegrini's description -facsimileTelephoneNumber: +1 213 562-9967 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 884-1821 -title: Supreme Management Vice President -userPassword: Password1 -uid: PellegrM -givenName: Marys -mail: PellegrM@64c2fa20001b495182e976975782823e.bitwarden.com -carLicense: ATL4M8 -departmentNumber: 3050 -employeeType: Employee -homePhone: +1 213 674-9301 -initials: M. P. -mobile: +1 213 114-6092 -pager: +1 213 194-4215 -roomNumber: 8689 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hamzeh Radovnikovic -sn: Radovnikovic -description: This is Hamzeh Radovnikovic's description -facsimileTelephoneNumber: +1 510 239-8325 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 208-1917 -title: Junior Administrative Engineer -userPassword: Password1 -uid: RadovniH -givenName: Hamzeh -mail: RadovniH@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com -carLicense: 9FYPWB -departmentNumber: 9255 -employeeType: Employee -homePhone: +1 510 616-2262 -initials: H. R. -mobile: +1 510 789-9492 -pager: +1 510 423-2964 -roomNumber: 8726 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theresita DIngianni -sn: DIngianni -description: This is Theresita DIngianni's description -facsimileTelephoneNumber: +1 213 890-3572 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 374-5315 -title: Master Product Testing Czar -userPassword: Password1 -uid: DIngianT -givenName: Theresita -mail: DIngianT@d12dc9200de04c139668cd5077c9847d.bitwarden.com -carLicense: 3B6A2L -departmentNumber: 6881 -employeeType: Contract -homePhone: +1 213 115-3359 -initials: T. D. -mobile: +1 213 274-7925 -pager: +1 213 761-4299 -roomNumber: 9536 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Es Veillette,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Es Veillette -sn: Veillette -description: This is Es Veillette's description -facsimileTelephoneNumber: +1 510 549-9767 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 994-9763 -title: Associate Management Figurehead -userPassword: Password1 -uid: VeilletE -givenName: Es -mail: VeilletE@09592cdb49ba4e06a680e4327c7f211f.bitwarden.com -carLicense: 3UEHMJ -departmentNumber: 5656 -employeeType: Normal -homePhone: +1 510 510-6671 -initials: E. V. -mobile: +1 510 805-8257 -pager: +1 510 474-1846 -roomNumber: 9600 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caressa Jelinek -sn: Jelinek -description: This is Caressa Jelinek's description -facsimileTelephoneNumber: +1 213 928-4174 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 963-7604 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: JelinekC -givenName: Caressa -mail: JelinekC@969884d3e1084598a17f4ef0a3aedf04.bitwarden.com -carLicense: MAMQBG -departmentNumber: 1596 -employeeType: Employee -homePhone: +1 213 314-3738 -initials: C. J. -mobile: +1 213 659-4082 -pager: +1 213 524-8847 -roomNumber: 8737 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Schell Rezzik,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Schell Rezzik -sn: Rezzik -description: This is Schell Rezzik's description -facsimileTelephoneNumber: +1 213 731-4506 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 213 192-1239 -title: Chief Product Development Developer -userPassword: Password1 -uid: RezzikS -givenName: Schell -mail: RezzikS@d27f47b62d694195b812aa9e62ea263a.bitwarden.com -carLicense: TA77OD -departmentNumber: 5383 -employeeType: Employee -homePhone: +1 213 148-5621 -initials: S. R. -mobile: +1 213 298-3607 -pager: +1 213 923-1063 -roomNumber: 9823 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Haig Salyer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haig Salyer -sn: Salyer -description: This is Haig Salyer's description -facsimileTelephoneNumber: +1 408 975-1414 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 410-4997 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: SalyerH -givenName: Haig -mail: SalyerH@d0689c747ea94990b3bb0378ca876248.bitwarden.com -carLicense: HK54YB -departmentNumber: 9185 -employeeType: Contract -homePhone: +1 408 674-3635 -initials: H. S. -mobile: +1 408 222-8813 -pager: +1 408 614-1808 -roomNumber: 9986 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sachiko Dragert,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sachiko Dragert -sn: Dragert -description: This is Sachiko Dragert's description -facsimileTelephoneNumber: +1 818 143-6446 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 347-2626 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: DragertS -givenName: Sachiko -mail: DragertS@777873609ce9463eb7000e930f9c88d2.bitwarden.com -carLicense: JSJ10J -departmentNumber: 6591 -employeeType: Contract -homePhone: +1 818 842-9654 -initials: S. D. -mobile: +1 818 716-9051 -pager: +1 818 788-8864 -roomNumber: 8061 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Agatha Potocki,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agatha Potocki -sn: Potocki -description: This is Agatha Potocki's description -facsimileTelephoneNumber: +1 415 584-2115 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 620-9701 -title: Associate Human Resources Grunt -userPassword: Password1 -uid: PotockiA -givenName: Agatha -mail: PotockiA@8068d857ca8d45118464c596ca9f4192.bitwarden.com -carLicense: 6S2MTV -departmentNumber: 1717 -employeeType: Employee -homePhone: +1 415 926-4456 -initials: A. P. -mobile: +1 415 115-4680 -pager: +1 415 501-1838 -roomNumber: 9123 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jerrie Frobel -sn: Frobel -description: This is Jerrie Frobel's description -facsimileTelephoneNumber: +1 818 847-2662 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 743-5219 -title: Supreme Human Resources President -userPassword: Password1 -uid: FrobelJ -givenName: Jerrie -mail: FrobelJ@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com -carLicense: VG4KY3 -departmentNumber: 8407 -employeeType: Normal -homePhone: +1 818 403-1711 -initials: J. F. -mobile: +1 818 928-3054 -pager: +1 818 998-8274 -roomNumber: 8592 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mark Bethune,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mark Bethune -sn: Bethune -description: This is Mark Bethune's description -facsimileTelephoneNumber: +1 510 113-4940 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 656-3728 -title: Junior Human Resources Artist -userPassword: Password1 -uid: BethuneM -givenName: Mark -mail: BethuneM@937ccb2001694e2680b8217ebfc1227e.bitwarden.com -carLicense: GITUXW -departmentNumber: 9186 -employeeType: Normal -homePhone: +1 510 686-1465 -initials: M. B. -mobile: +1 510 173-1480 -pager: +1 510 344-3188 -roomNumber: 9610 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rois Hiscoe -sn: Hiscoe -description: This is Rois Hiscoe's description -facsimileTelephoneNumber: +1 408 491-3041 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 408 791-4976 -title: Chief Product Testing Developer -userPassword: Password1 -uid: HiscoeR -givenName: Rois -mail: HiscoeR@923b7e20c77d4d479afa0bf52e9ff34f.bitwarden.com -carLicense: G5U0HU -departmentNumber: 1455 -employeeType: Normal -homePhone: +1 408 169-6280 -initials: R. H. -mobile: +1 408 576-8127 -pager: +1 408 736-5448 -roomNumber: 9344 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dorey Friedrich,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorey Friedrich -sn: Friedrich -description: This is Dorey Friedrich's description -facsimileTelephoneNumber: +1 818 935-9705 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 751-2353 -title: Supreme Payroll Manager -userPassword: Password1 -uid: FriedriD -givenName: Dorey -mail: FriedriD@d28530c9df644cffbc9c3ddd841cc9a4.bitwarden.com -carLicense: 1N5AXE -departmentNumber: 1008 -employeeType: Employee -homePhone: +1 818 269-6654 -initials: D. F. -mobile: +1 818 216-7617 -pager: +1 818 568-5613 -roomNumber: 8697 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Alexina Hord,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alexina Hord -sn: Hord -description: This is Alexina Hord's description -facsimileTelephoneNumber: +1 510 769-7765 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 712-2961 -title: Chief Product Development Mascot -userPassword: Password1 -uid: HordA -givenName: Alexina -mail: HordA@874d2ffcc419401a838c28aad1adce43.bitwarden.com -carLicense: 1L44O9 -departmentNumber: 8243 -employeeType: Normal -homePhone: +1 510 774-7259 -initials: A. H. -mobile: +1 510 673-6671 -pager: +1 510 669-1001 -roomNumber: 9956 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wilson Vosup,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilson Vosup -sn: Vosup -description: This is Wilson Vosup's description -facsimileTelephoneNumber: +1 408 903-6667 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 489-3885 -title: Supreme Management Figurehead -userPassword: Password1 -uid: VosupW -givenName: Wilson -mail: VosupW@0a13d3df1e3f455093e12ab71e8c81fa.bitwarden.com -carLicense: FO0HHA -departmentNumber: 6884 -employeeType: Normal -homePhone: +1 408 710-7948 -initials: W. V. -mobile: +1 408 108-4356 -pager: +1 408 544-9310 -roomNumber: 9133 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronneke Chmara -sn: Chmara -description: This is Ronneke Chmara's description -facsimileTelephoneNumber: +1 415 931-2776 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 262-7867 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: ChmaraR -givenName: Ronneke -mail: ChmaraR@21cc8cee33394af98a10a365eddcb55c.bitwarden.com -carLicense: U1YU25 -departmentNumber: 4000 -employeeType: Contract -homePhone: +1 415 577-2429 -initials: R. C. -mobile: +1 415 367-6777 -pager: +1 415 810-1550 -roomNumber: 8241 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alisa Dubuc -sn: Dubuc -description: This is Alisa Dubuc's description -facsimileTelephoneNumber: +1 510 451-3654 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 632-2887 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: DubucA -givenName: Alisa -mail: DubucA@5191509f48d94538ad03dc3532ab7b16.bitwarden.com -carLicense: CBN8XW -departmentNumber: 8694 -employeeType: Normal -homePhone: +1 510 483-4831 -initials: A. D. -mobile: +1 510 341-8225 -pager: +1 510 591-6422 -roomNumber: 9845 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Forrest DCruz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Forrest DCruz -sn: DCruz -description: This is Forrest DCruz's description -facsimileTelephoneNumber: +1 206 969-4798 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 594-9277 -title: Supreme Payroll Czar -userPassword: Password1 -uid: DCruzF -givenName: Forrest -mail: DCruzF@523c7925179d4304b25908d832088d77.bitwarden.com -carLicense: 1HTBJX -departmentNumber: 8428 -employeeType: Normal -homePhone: +1 206 163-5580 -initials: F. D. -mobile: +1 206 396-3235 -pager: +1 206 843-2514 -roomNumber: 9499 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Simhan Plucinska -sn: Plucinska -description: This is Simhan Plucinska's description -facsimileTelephoneNumber: +1 408 593-4942 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 344-2140 -title: Master Janitorial Grunt -userPassword: Password1 -uid: PlucinsS -givenName: Simhan -mail: PlucinsS@351deec9477e4e51877822ae4f8cd070.bitwarden.com -carLicense: MYOV1I -departmentNumber: 5978 -employeeType: Employee -homePhone: +1 408 748-5281 -initials: S. P. -mobile: +1 408 917-6975 -pager: +1 408 994-3877 -roomNumber: 8350 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roger Seelaender,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roger Seelaender -sn: Seelaender -description: This is Roger Seelaender's description -facsimileTelephoneNumber: +1 213 761-2281 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 213 741-2081 -title: Associate Peons Consultant -userPassword: Password1 -uid: SeelaenR -givenName: Roger -mail: SeelaenR@73a9aedb7e664c80be8f4a158038334a.bitwarden.com -carLicense: ETFKV3 -departmentNumber: 3729 -employeeType: Employee -homePhone: +1 213 661-8090 -initials: R. S. -mobile: +1 213 634-4400 -pager: +1 213 372-8615 -roomNumber: 9047 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annecorinne Kessing -sn: Kessing -description: This is Annecorinne Kessing's description -facsimileTelephoneNumber: +1 415 756-8928 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 453-6024 -title: Associate Product Testing Artist -userPassword: Password1 -uid: KessingA -givenName: Annecorinne -mail: KessingA@8a74bbad8b794c87a1e4384bad30f8b3.bitwarden.com -carLicense: PQR3L6 -departmentNumber: 5097 -employeeType: Normal -homePhone: +1 415 976-6933 -initials: A. K. -mobile: +1 415 458-7969 -pager: +1 415 266-9266 -roomNumber: 8206 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mal Ellul,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mal Ellul -sn: Ellul -description: This is Mal Ellul's description -facsimileTelephoneNumber: +1 408 935-2416 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 408 899-6051 -title: Supreme Management Fellow -userPassword: Password1 -uid: EllulM -givenName: Mal -mail: EllulM@3ce51f6d63564349a707188cebe0b9db.bitwarden.com -carLicense: QUCL6F -departmentNumber: 3428 -employeeType: Normal -homePhone: +1 408 934-6539 -initials: M. E. -mobile: +1 408 981-5795 -pager: +1 408 797-8788 -roomNumber: 8800 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bep Pilkington,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bep Pilkington -sn: Pilkington -description: This is Bep Pilkington's description -facsimileTelephoneNumber: +1 206 199-7661 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 424-8423 -title: Junior Product Testing Madonna -userPassword: Password1 -uid: PilkingB -givenName: Bep -mail: PilkingB@d72cbd780d2b4b298c22c5ed9275bdef.bitwarden.com -carLicense: KACCV3 -departmentNumber: 1304 -employeeType: Normal -homePhone: +1 206 354-9958 -initials: B. P. -mobile: +1 206 358-4949 -pager: +1 206 500-7310 -roomNumber: 9364 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wylma Meiser,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wylma Meiser -sn: Meiser -description: This is Wylma Meiser's description -facsimileTelephoneNumber: +1 510 924-1985 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 228-9458 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: MeiserW -givenName: Wylma -mail: MeiserW@9f3819b9115a462187208879243957c9.bitwarden.com -carLicense: 1QBA8A -departmentNumber: 1126 -employeeType: Contract -homePhone: +1 510 895-6566 -initials: W. M. -mobile: +1 510 788-2665 -pager: +1 510 910-7175 -roomNumber: 8204 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Huppert Buffett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huppert Buffett -sn: Buffett -description: This is Huppert Buffett's description -facsimileTelephoneNumber: +1 206 150-4104 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 643-7650 -title: Junior Human Resources Mascot -userPassword: Password1 -uid: BuffettH -givenName: Huppert -mail: BuffettH@270d9e715f934566b928260e5a913b8e.bitwarden.com -carLicense: 4NUJYI -departmentNumber: 6888 -employeeType: Employee -homePhone: +1 206 263-2894 -initials: H. B. -mobile: +1 206 986-5219 -pager: +1 206 366-9320 -roomNumber: 8283 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kass Kelland,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kass Kelland -sn: Kelland -description: This is Kass Kelland's description -facsimileTelephoneNumber: +1 510 717-3962 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 296-1989 -title: Chief Human Resources Architect -userPassword: Password1 -uid: KellandK -givenName: Kass -mail: KellandK@29173732550b4d5fa61cc19838febdea.bitwarden.com -carLicense: XL78R6 -departmentNumber: 5308 -employeeType: Employee -homePhone: +1 510 209-8355 -initials: K. K. -mobile: +1 510 355-4284 -pager: +1 510 640-4032 -roomNumber: 8824 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dpnis Stetter,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dpnis Stetter -sn: Stetter -description: This is Dpnis Stetter's description -facsimileTelephoneNumber: +1 510 671-6206 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 510 870-8105 -title: Chief Peons Technician -userPassword: Password1 -uid: StetterD -givenName: Dpnis -mail: StetterD@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com -carLicense: HTX2CG -departmentNumber: 8825 -employeeType: Employee -homePhone: +1 510 446-2495 -initials: D. S. -mobile: +1 510 222-1574 -pager: +1 510 989-7983 -roomNumber: 9719 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tash Hibler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tash Hibler -sn: Hibler -description: This is Tash Hibler's description -facsimileTelephoneNumber: +1 206 888-9200 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 981-6960 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: HiblerT -givenName: Tash -mail: HiblerT@f757676270f44c6398ef7409a2684fcd.bitwarden.com -carLicense: 5EE7CX -departmentNumber: 7980 -employeeType: Contract -homePhone: +1 206 511-3172 -initials: T. H. -mobile: +1 206 145-5022 -pager: +1 206 358-5402 -roomNumber: 8618 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Edee Badger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edee Badger -sn: Badger -description: This is Edee Badger's description -facsimileTelephoneNumber: +1 804 697-2616 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 202-5464 -title: Junior Payroll Warrior -userPassword: Password1 -uid: BadgerE -givenName: Edee -mail: BadgerE@fd46aa029a7840a1becc0ccc22e4bd3f.bitwarden.com -carLicense: 4I0QCP -departmentNumber: 4407 -employeeType: Contract -homePhone: +1 804 280-2647 -initials: E. B. -mobile: +1 804 793-8675 -pager: +1 804 119-7989 -roomNumber: 8647 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Edel Ellacott,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edel Ellacott -sn: Ellacott -description: This is Edel Ellacott's description -facsimileTelephoneNumber: +1 408 363-8603 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 495-1247 -title: Chief Peons Architect -userPassword: Password1 -uid: EllacotE -givenName: Edel -mail: EllacotE@359efdad39cc40ef8440421a8807b6c0.bitwarden.com -carLicense: OH1FQ1 -departmentNumber: 1365 -employeeType: Employee -homePhone: +1 408 397-8869 -initials: E. E. -mobile: +1 408 668-2229 -pager: +1 408 537-1497 -roomNumber: 9998 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosa Baird,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosa Baird -sn: Baird -description: This is Rosa Baird's description -facsimileTelephoneNumber: +1 415 488-6722 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 603-5854 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: BairdR -givenName: Rosa -mail: BairdR@a7cf58aaa965404796cd8b59fc2395b8.bitwarden.com -carLicense: O6D3KO -departmentNumber: 1053 -employeeType: Normal -homePhone: +1 415 577-5040 -initials: R. B. -mobile: +1 415 122-6408 -pager: +1 415 839-4112 -roomNumber: 9178 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Anna Kahtasian,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anna Kahtasian -sn: Kahtasian -description: This is Anna Kahtasian's description -facsimileTelephoneNumber: +1 818 746-3170 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 818 407-2550 -title: Master Product Development Admin -userPassword: Password1 -uid: KahtasiA -givenName: Anna -mail: KahtasiA@7341939506294cf3bdd4bdeca7674074.bitwarden.com -carLicense: S54OXH -departmentNumber: 9299 -employeeType: Employee -homePhone: +1 818 377-1637 -initials: A. K. -mobile: +1 818 969-1570 -pager: +1 818 788-6461 -roomNumber: 9316 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hiren Plastina,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hiren Plastina -sn: Plastina -description: This is Hiren Plastina's description -facsimileTelephoneNumber: +1 206 119-5254 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 616-6725 -title: Associate Peons Artist -userPassword: Password1 -uid: PlastinH -givenName: Hiren -mail: PlastinH@bf39febc19c343cc9aaa907ea0d77554.bitwarden.com -carLicense: 9XQES9 -departmentNumber: 6282 -employeeType: Contract -homePhone: +1 206 588-4505 -initials: H. P. -mobile: +1 206 974-8406 -pager: +1 206 450-9536 -roomNumber: 9560 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alese Sumpter,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alese Sumpter -sn: Sumpter -description: This is Alese Sumpter's description -facsimileTelephoneNumber: +1 415 930-3141 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 955-8131 -title: Associate Peons Architect -userPassword: Password1 -uid: SumpterA -givenName: Alese -mail: SumpterA@68783c5d6bc743ddb0d94e6abd382e0a.bitwarden.com -carLicense: G5B4NQ -departmentNumber: 3100 -employeeType: Contract -homePhone: +1 415 757-8651 -initials: A. S. -mobile: +1 415 369-2398 -pager: +1 415 555-3700 -roomNumber: 8373 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melodie Escobedo -sn: Escobedo -description: This is Melodie Escobedo's description -facsimileTelephoneNumber: +1 510 137-7152 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 939-4086 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: EscobedM -givenName: Melodie -mail: EscobedM@96cd1711168e489f9e672010a4fee01c.bitwarden.com -carLicense: 8CCQU7 -departmentNumber: 7382 -employeeType: Normal -homePhone: +1 510 129-9547 -initials: M. E. -mobile: +1 510 919-6616 -pager: +1 510 281-3265 -roomNumber: 9542 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Simonne Filer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Simonne Filer -sn: Filer -description: This is Simonne Filer's description -facsimileTelephoneNumber: +1 206 416-1223 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 586-9518 -title: Associate Product Development Artist -userPassword: Password1 -uid: FilerS -givenName: Simonne -mail: FilerS@6993d016013446bf8c45519f739f4a8a.bitwarden.com -carLicense: 8OE9KE -departmentNumber: 7969 -employeeType: Employee -homePhone: +1 206 717-5894 -initials: S. F. -mobile: +1 206 323-1243 -pager: +1 206 666-9642 -roomNumber: 8786 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miquela Szypulski -sn: Szypulski -description: This is Miquela Szypulski's description -facsimileTelephoneNumber: +1 415 840-6584 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 284-8858 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: SzypulsM -givenName: Miquela -mail: SzypulsM@3a2a82df656f429a9b40a5251b4c823e.bitwarden.com -carLicense: 2KCSSW -departmentNumber: 1571 -employeeType: Employee -homePhone: +1 415 750-3615 -initials: M. S. -mobile: +1 415 257-5354 -pager: +1 415 146-9672 -roomNumber: 8837 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yeung Kaufman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yeung Kaufman -sn: Kaufman -description: This is Yeung Kaufman's description -facsimileTelephoneNumber: +1 818 545-2528 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 913-7928 -title: Master Product Development Dictator -userPassword: Password1 -uid: KaufmanY -givenName: Yeung -mail: KaufmanY@db0d46fdeb854c2eb066d9894606ad6e.bitwarden.com -carLicense: TKQEY7 -departmentNumber: 1467 -employeeType: Employee -homePhone: +1 818 891-7511 -initials: Y. K. -mobile: +1 818 649-9526 -pager: +1 818 555-9944 -roomNumber: 9673 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Claire Wada,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claire Wada -sn: Wada -description: This is Claire Wada's description -facsimileTelephoneNumber: +1 818 315-1113 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 992-5304 -title: Master Management Visionary -userPassword: Password1 -uid: WadaC -givenName: Claire -mail: WadaC@e13ff358b20d4f05b57860e7899fbc5c.bitwarden.com -carLicense: LK5O57 -departmentNumber: 4551 -employeeType: Contract -homePhone: +1 818 315-2124 -initials: C. W. -mobile: +1 818 823-7816 -pager: +1 818 805-3268 -roomNumber: 9866 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Laury Breglec,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laury Breglec -sn: Breglec -description: This is Laury Breglec's description -facsimileTelephoneNumber: +1 818 169-6292 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 818 243-7821 -title: Associate Administrative Madonna -userPassword: Password1 -uid: BreglecL -givenName: Laury -mail: BreglecL@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com -carLicense: VMFRDC -departmentNumber: 7755 -employeeType: Contract -homePhone: +1 818 947-6694 -initials: L. B. -mobile: +1 818 554-1278 -pager: +1 818 182-8528 -roomNumber: 9509 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maurice Guinnane,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurice Guinnane -sn: Guinnane -description: This is Maurice Guinnane's description -facsimileTelephoneNumber: +1 213 448-9703 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 885-2717 -title: Junior Administrative Warrior -userPassword: Password1 -uid: GuinnanM -givenName: Maurice -mail: GuinnanM@c881c186a173446ea0e986dc58eda7dc.bitwarden.com -carLicense: N8GCOD -departmentNumber: 2417 -employeeType: Contract -homePhone: +1 213 279-4067 -initials: M. G. -mobile: +1 213 763-2315 -pager: +1 213 943-1461 -roomNumber: 9540 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Laraine DuBois,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laraine DuBois -sn: DuBois -description: This is Laraine DuBois's description -facsimileTelephoneNumber: +1 804 964-7610 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 668-2763 -title: Supreme Peons Technician -userPassword: Password1 -uid: DuBoisL -givenName: Laraine -mail: DuBoisL@cac372b8ab83448c81ae16d3c02782c8.bitwarden.com -carLicense: 924K5A -departmentNumber: 1067 -employeeType: Normal -homePhone: +1 804 593-2773 -initials: L. D. -mobile: +1 804 890-8682 -pager: +1 804 148-4725 -roomNumber: 9406 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgeta TestingPOSTTEST -sn: TestingPOSTTEST -description: This is Georgeta TestingPOSTTEST's description -facsimileTelephoneNumber: +1 510 795-7337 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 510 927-1094 -title: Junior Administrative Writer -userPassword: Password1 -uid: TestingG -givenName: Georgeta -mail: TestingG@09e5494aed3a4d83bbfc24e4027adfc2.bitwarden.com -carLicense: M8W3JQ -departmentNumber: 4095 -employeeType: Contract -homePhone: +1 510 278-3901 -initials: G. T. -mobile: +1 510 398-1271 -pager: +1 510 126-5174 -roomNumber: 9564 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hettie Johannes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hettie Johannes -sn: Johannes -description: This is Hettie Johannes's description -facsimileTelephoneNumber: +1 408 431-5509 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 582-7320 -title: Master Product Development Punk -userPassword: Password1 -uid: JohanneH -givenName: Hettie -mail: JohanneH@d7e8af68284e4062b608faac310d89ae.bitwarden.com -carLicense: FOBYCI -departmentNumber: 4927 -employeeType: Employee -homePhone: +1 408 106-2958 -initials: H. J. -mobile: +1 408 619-7606 -pager: +1 408 625-7890 -roomNumber: 9499 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaclyn Westgarth -sn: Westgarth -description: This is Jaclyn Westgarth's description -facsimileTelephoneNumber: +1 415 844-8348 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 476-9630 -title: Master Product Development Consultant -userPassword: Password1 -uid: WestgarJ -givenName: Jaclyn -mail: WestgarJ@67c03444c05a42a3b6969db268f587ab.bitwarden.com -carLicense: P34MXW -departmentNumber: 1668 -employeeType: Employee -homePhone: +1 415 113-3165 -initials: J. W. -mobile: +1 415 559-2343 -pager: +1 415 663-4614 -roomNumber: 9812 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pascale Sprayberry -sn: Sprayberry -description: This is Pascale Sprayberry's description -facsimileTelephoneNumber: +1 415 217-4586 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 415 518-8908 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: SpraybeP -givenName: Pascale -mail: SpraybeP@2c938ad1c79549a5aaba11995cefd879.bitwarden.com -carLicense: 0KS9V8 -departmentNumber: 5768 -employeeType: Normal -homePhone: +1 415 673-1668 -initials: P. S. -mobile: +1 415 415-3347 -pager: +1 415 772-7630 -roomNumber: 9306 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hedvig Risler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hedvig Risler -sn: Risler -description: This is Hedvig Risler's description -facsimileTelephoneNumber: +1 408 424-2545 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 408 238-3071 -title: Supreme Management Czar -userPassword: Password1 -uid: RislerH -givenName: Hedvig -mail: RislerH@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com -carLicense: 5PO1VV -departmentNumber: 7892 -employeeType: Employee -homePhone: +1 408 461-9888 -initials: H. R. -mobile: +1 408 722-2057 -pager: +1 408 252-9261 -roomNumber: 8008 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Edward Badza,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edward Badza -sn: Badza -description: This is Edward Badza's description -facsimileTelephoneNumber: +1 510 468-3143 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 510 525-7207 -title: Junior Payroll Engineer -userPassword: Password1 -uid: BadzaE -givenName: Edward -mail: BadzaE@a32cc86a2bd244a1a69078536f474c4c.bitwarden.com -carLicense: Y7LNIX -departmentNumber: 6859 -employeeType: Employee -homePhone: +1 510 491-6958 -initials: E. B. -mobile: +1 510 226-6366 -pager: +1 510 129-5950 -roomNumber: 9598 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Femke Trittler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Femke Trittler -sn: Trittler -description: This is Femke Trittler's description -facsimileTelephoneNumber: +1 510 677-7251 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 381-9504 -title: Associate Product Testing Dictator -userPassword: Password1 -uid: TrittleF -givenName: Femke -mail: TrittleF@c31dc3397f3a45ca971c4674af07c210.bitwarden.com -carLicense: 70N016 -departmentNumber: 7947 -employeeType: Employee -homePhone: +1 510 878-2307 -initials: F. T. -mobile: +1 510 641-8413 -pager: +1 510 209-8880 -roomNumber: 8838 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lino Krauel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lino Krauel -sn: Krauel -description: This is Lino Krauel's description -facsimileTelephoneNumber: +1 213 881-3660 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 140-1345 -title: Chief Product Testing Admin -userPassword: Password1 -uid: KrauelL -givenName: Lino -mail: KrauelL@6ad1b625c3674b77a93e5c19216d7f12.bitwarden.com -carLicense: MLKR10 -departmentNumber: 4192 -employeeType: Normal -homePhone: +1 213 403-2818 -initials: L. K. -mobile: +1 213 133-8368 -pager: +1 213 222-8714 -roomNumber: 9021 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatsman Ayoup -sn: Ayoup -description: This is Tatsman Ayoup's description -facsimileTelephoneNumber: +1 510 381-9083 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 778-3216 -title: Associate Payroll Janitor -userPassword: Password1 -uid: AyoupT -givenName: Tatsman -mail: AyoupT@a549c5674cda44a29e90f4f33d1b9046.bitwarden.com -carLicense: GT572N -departmentNumber: 7392 -employeeType: Normal -homePhone: +1 510 205-2887 -initials: T. A. -mobile: +1 510 517-3595 -pager: +1 510 912-3230 -roomNumber: 9053 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anders Raddalgoda,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anders Raddalgoda -sn: Raddalgoda -description: This is Anders Raddalgoda's description -facsimileTelephoneNumber: +1 818 666-8982 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 818 232-7878 -title: Junior Management Mascot -userPassword: Password1 -uid: RaddalgA -givenName: Anders -mail: RaddalgA@3913d51a20f344409448501766a0f142.bitwarden.com -carLicense: 5OSTJS -departmentNumber: 6170 -employeeType: Normal -homePhone: +1 818 526-1966 -initials: A. R. -mobile: +1 818 373-7520 -pager: +1 818 655-8147 -roomNumber: 8773 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rijn Benschop,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rijn Benschop -sn: Benschop -description: This is Rijn Benschop's description -facsimileTelephoneNumber: +1 510 252-8012 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 767-6545 -title: Chief Management Architect -userPassword: Password1 -uid: BenschoR -givenName: Rijn -mail: BenschoR@dd44ac1957c74a4cb7889302d7ebe0e9.bitwarden.com -carLicense: SH3FAI -departmentNumber: 9263 -employeeType: Employee -homePhone: +1 510 831-3974 -initials: R. B. -mobile: +1 510 865-9159 -pager: +1 510 953-6149 -roomNumber: 9184 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Deva Hoch,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deva Hoch -sn: Hoch -description: This is Deva Hoch's description -facsimileTelephoneNumber: +1 804 110-6157 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 317-1122 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: HochD -givenName: Deva -mail: HochD@2c865634e0e045e2b70cc9cc6dc9005f.bitwarden.com -carLicense: KTVA93 -departmentNumber: 3888 -employeeType: Normal -homePhone: +1 804 830-5033 -initials: D. H. -mobile: +1 804 405-1044 -pager: +1 804 267-6423 -roomNumber: 9807 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mahboob Mathieson -sn: Mathieson -description: This is Mahboob Mathieson's description -facsimileTelephoneNumber: +1 804 836-9304 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 429-2166 -title: Chief Product Testing Technician -userPassword: Password1 -uid: MathiesM -givenName: Mahboob -mail: MathiesM@f7f4a447205348c3850cb06ffed2a0fd.bitwarden.com -carLicense: 4LI2Y8 -departmentNumber: 2588 -employeeType: Contract -homePhone: +1 804 657-2741 -initials: M. M. -mobile: +1 804 682-1030 -pager: +1 804 358-9979 -roomNumber: 9742 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fearless Quattrucci,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fearless Quattrucci -sn: Quattrucci -description: This is Fearless Quattrucci's description -facsimileTelephoneNumber: +1 510 466-1736 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 949-5800 -title: Junior Management Consultant -userPassword: Password1 -uid: QuattruF -givenName: Fearless -mail: QuattruF@ad1bdee03ce44222a3305339a4d53009.bitwarden.com -carLicense: 9QMARE -departmentNumber: 8733 -employeeType: Employee -homePhone: +1 510 210-8179 -initials: F. Q. -mobile: +1 510 258-4138 -pager: +1 510 731-8711 -roomNumber: 9092 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pia Singham,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pia Singham -sn: Singham -description: This is Pia Singham's description -facsimileTelephoneNumber: +1 408 665-9831 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 821-5032 -title: Master Peons Vice President -userPassword: Password1 -uid: SinghamP -givenName: Pia -mail: SinghamP@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com -carLicense: 9G10TS -departmentNumber: 9639 -employeeType: Contract -homePhone: +1 408 424-1371 -initials: P. S. -mobile: +1 408 876-1205 -pager: +1 408 134-2183 -roomNumber: 8586 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zdenek Schutte,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zdenek Schutte -sn: Schutte -description: This is Zdenek Schutte's description -facsimileTelephoneNumber: +1 408 956-2940 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 984-1835 -title: Chief Product Development Mascot -userPassword: Password1 -uid: SchutteZ -givenName: Zdenek -mail: SchutteZ@327fab76e13f495691accc9986f353a5.bitwarden.com -carLicense: CJ9T12 -departmentNumber: 9614 -employeeType: Contract -homePhone: +1 408 125-6543 -initials: Z. S. -mobile: +1 408 374-1577 -pager: +1 408 364-9802 -roomNumber: 9640 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Liam Darveau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liam Darveau -sn: Darveau -description: This is Liam Darveau's description -facsimileTelephoneNumber: +1 415 646-3397 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 883-2911 -title: Supreme Janitorial Dictator -userPassword: Password1 -uid: DarveauL -givenName: Liam -mail: DarveauL@13b504a8a169451f93c28e40583299e2.bitwarden.com -carLicense: A1STN3 -departmentNumber: 8891 -employeeType: Contract -homePhone: +1 415 873-5640 -initials: L. D. -mobile: +1 415 946-7403 -pager: +1 415 878-1643 -roomNumber: 9352 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yung Deployment,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yung Deployment -sn: Deployment -description: This is Yung Deployment's description -facsimileTelephoneNumber: +1 804 578-2245 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 891-6263 -title: Associate Management Consultant -userPassword: Password1 -uid: DeploymY -givenName: Yung -mail: DeploymY@291647d2cd1d44a99560699f40c48fb8.bitwarden.com -carLicense: EB6MET -departmentNumber: 8696 -employeeType: Employee -homePhone: +1 804 854-8834 -initials: Y. D. -mobile: +1 804 296-8345 -pager: +1 804 424-4893 -roomNumber: 9335 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Raman Feild,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raman Feild -sn: Feild -description: This is Raman Feild's description -facsimileTelephoneNumber: +1 510 149-9923 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 684-2952 -title: Supreme Payroll Warrior -userPassword: Password1 -uid: FeildR -givenName: Raman -mail: FeildR@42f7f72ca79e451abe4a35d3706fd511.bitwarden.com -carLicense: QWE3UH -departmentNumber: 5720 -employeeType: Normal -homePhone: +1 510 246-4766 -initials: R. F. -mobile: +1 510 475-8454 -pager: +1 510 810-1200 -roomNumber: 8659 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mayasandra Mohan -sn: Mohan -description: This is Mayasandra Mohan's description -facsimileTelephoneNumber: +1 818 151-1616 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 358-5499 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: MohanM -givenName: Mayasandra -mail: MohanM@8b6b01e9c008452894c8ace1d155cf0d.bitwarden.com -carLicense: 141VVW -departmentNumber: 8554 -employeeType: Employee -homePhone: +1 818 580-8920 -initials: M. M. -mobile: +1 818 208-5948 -pager: +1 818 998-5260 -roomNumber: 8339 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoke Mustafa -sn: Mustafa -description: This is Yoke Mustafa's description -facsimileTelephoneNumber: +1 818 711-6502 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 833-2371 -title: Chief Human Resources Vice President -userPassword: Password1 -uid: MustafaY -givenName: Yoke -mail: MustafaY@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com -carLicense: T5V9E9 -departmentNumber: 2964 -employeeType: Contract -homePhone: +1 818 537-8689 -initials: Y. M. -mobile: +1 818 153-1585 -pager: +1 818 138-6513 -roomNumber: 8795 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nial Meunier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nial Meunier -sn: Meunier -description: This is Nial Meunier's description -facsimileTelephoneNumber: +1 408 982-9014 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 680-1418 -title: Master Janitorial Evangelist -userPassword: Password1 -uid: MeunierN -givenName: Nial -mail: MeunierN@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com -carLicense: LIYXAH -departmentNumber: 8808 -employeeType: Employee -homePhone: +1 408 791-9742 -initials: N. M. -mobile: +1 408 449-5162 -pager: +1 408 697-3190 -roomNumber: 9897 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Evans Laker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evans Laker -sn: Laker -description: This is Evans Laker's description -facsimileTelephoneNumber: +1 206 237-5119 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 400-5352 -title: Junior Product Testing Mascot -userPassword: Password1 -uid: LakerE -givenName: Evans -mail: LakerE@8068d857ca8d45118464c596ca9f4192.bitwarden.com -carLicense: LWAEAA -departmentNumber: 4790 -employeeType: Normal -homePhone: +1 206 717-6406 -initials: E. L. -mobile: +1 206 115-5402 -pager: +1 206 649-3053 -roomNumber: 8518 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vale Wiederhold,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vale Wiederhold -sn: Wiederhold -description: This is Vale Wiederhold's description -facsimileTelephoneNumber: +1 818 526-1151 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 192-8920 -title: Chief Management Madonna -userPassword: Password1 -uid: WiederhV -givenName: Vale -mail: WiederhV@dd11611b8b2c47a382a866e9115fea27.bitwarden.com -carLicense: PH0SAK -departmentNumber: 2103 -employeeType: Normal -homePhone: +1 818 340-8695 -initials: V. W. -mobile: +1 818 538-6292 -pager: +1 818 325-3235 -roomNumber: 8050 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dulce Xavier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulce Xavier -sn: Xavier -description: This is Dulce Xavier's description -facsimileTelephoneNumber: +1 510 431-8495 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 588-4603 -title: Associate Janitorial Director -userPassword: Password1 -uid: XavierD -givenName: Dulce -mail: XavierD@6ce18e31fee44ca6a1d60162c1ff34ee.bitwarden.com -carLicense: LA20WO -departmentNumber: 4077 -employeeType: Normal -homePhone: +1 510 354-1520 -initials: D. X. -mobile: +1 510 645-6693 -pager: +1 510 432-3321 -roomNumber: 8215 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Walt Ventura,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walt Ventura -sn: Ventura -description: This is Walt Ventura's description -facsimileTelephoneNumber: +1 206 413-8708 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 506-1767 -title: Associate Management Architect -userPassword: Password1 -uid: VenturaW -givenName: Walt -mail: VenturaW@f06eb6e5ebe44697824a5e168080f66f.bitwarden.com -carLicense: XQTJ6T -departmentNumber: 4892 -employeeType: Contract -homePhone: +1 206 786-6197 -initials: W. V. -mobile: +1 206 960-4884 -pager: +1 206 227-2267 -roomNumber: 9139 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Miklos Rhyndress,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miklos Rhyndress -sn: Rhyndress -description: This is Miklos Rhyndress's description -facsimileTelephoneNumber: +1 213 936-6887 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 608-1380 -title: Junior Peons Czar -userPassword: Password1 -uid: RhyndreM -givenName: Miklos -mail: RhyndreM@6d618be347104dbc857cf2fd7fc2c14d.bitwarden.com -carLicense: CXQFPT -departmentNumber: 8256 -employeeType: Normal -homePhone: +1 213 568-4230 -initials: M. R. -mobile: +1 213 748-8647 -pager: +1 213 566-1726 -roomNumber: 9569 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryvonne Frendo -sn: Frendo -description: This is Maryvonne Frendo's description -facsimileTelephoneNumber: +1 804 400-7362 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 804 434-8043 -title: Associate Administrative Fellow -userPassword: Password1 -uid: FrendoM -givenName: Maryvonne -mail: FrendoM@602ba75a97ea4dc1ac3622553464c0ac.bitwarden.com -carLicense: V8MXE2 -departmentNumber: 5592 -employeeType: Normal -homePhone: +1 804 846-6211 -initials: M. F. -mobile: +1 804 675-5509 -pager: +1 804 315-6294 -roomNumber: 9904 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cherise Blodgett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherise Blodgett -sn: Blodgett -description: This is Cherise Blodgett's description -facsimileTelephoneNumber: +1 804 172-6354 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 488-1953 -title: Associate Payroll Director -userPassword: Password1 -uid: BlodgetC -givenName: Cherise -mail: BlodgetC@c03386ce7faa472d85d312447ef33656.bitwarden.com -carLicense: QXH0MX -departmentNumber: 7409 -employeeType: Employee -homePhone: +1 804 664-2299 -initials: C. B. -mobile: +1 804 420-4489 -pager: +1 804 617-1162 -roomNumber: 8243 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jenifer Stansell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenifer Stansell -sn: Stansell -description: This is Jenifer Stansell's description -facsimileTelephoneNumber: +1 804 389-3427 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 919-9744 -title: Master Peons Figurehead -userPassword: Password1 -uid: StanselJ -givenName: Jenifer -mail: StanselJ@8356479eabd643419aa6b8ad0de3b0b4.bitwarden.com -carLicense: CP2XX8 -departmentNumber: 7851 -employeeType: Contract -homePhone: +1 804 513-8309 -initials: J. S. -mobile: +1 804 162-2131 -pager: +1 804 391-1777 -roomNumber: 8382 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fung Ginzburg,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fung Ginzburg -sn: Ginzburg -description: This is Fung Ginzburg's description -facsimileTelephoneNumber: +1 804 284-2257 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 804 977-1051 -title: Associate Peons Director -userPassword: Password1 -uid: GinzburF -givenName: Fung -mail: GinzburF@f94e4910d3ba449793ba33df7347ad39.bitwarden.com -carLicense: 04TWG3 -departmentNumber: 1079 -employeeType: Contract -homePhone: +1 804 985-3201 -initials: F. G. -mobile: +1 804 919-9444 -pager: +1 804 316-9926 -roomNumber: 8733 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nikolaos Mapile,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nikolaos Mapile -sn: Mapile -description: This is Nikolaos Mapile's description -facsimileTelephoneNumber: +1 408 897-3885 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 408 446-1132 -title: Associate Management Pinhead -userPassword: Password1 -uid: MapileN -givenName: Nikolaos -mail: MapileN@edb994df27cb4c98bcb6984d0f87b2c8.bitwarden.com -carLicense: EYFY9W -departmentNumber: 2596 -employeeType: Employee -homePhone: +1 408 243-1166 -initials: N. M. -mobile: +1 408 951-6896 -pager: +1 408 921-7599 -roomNumber: 9893 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Queenie Spolar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Queenie Spolar -sn: Spolar -description: This is Queenie Spolar's description -facsimileTelephoneNumber: +1 510 138-2703 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 913-5321 -title: Associate Administrative Figurehead -userPassword: Password1 -uid: SpolarQ -givenName: Queenie -mail: SpolarQ@a613bdb3274e457a9c2452e800065937.bitwarden.com -carLicense: 0KPUOL -departmentNumber: 2124 -employeeType: Employee -homePhone: +1 510 613-6114 -initials: Q. S. -mobile: +1 510 709-1023 -pager: +1 510 427-4103 -roomNumber: 9129 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rivkah Vopalensky -sn: Vopalensky -description: This is Rivkah Vopalensky's description -facsimileTelephoneNumber: +1 818 403-8249 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 655-9773 -title: Junior Human Resources Consultant -userPassword: Password1 -uid: VopalenR -givenName: Rivkah -mail: VopalenR@f263976411814a39ae02ef1a1447e567.bitwarden.com -carLicense: LT5E3V -departmentNumber: 3045 -employeeType: Contract -homePhone: +1 818 811-8451 -initials: R. V. -mobile: +1 818 654-5404 -pager: +1 818 983-7259 -roomNumber: 8489 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Franki Weyand,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franki Weyand -sn: Weyand -description: This is Franki Weyand's description -facsimileTelephoneNumber: +1 408 639-2973 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 887-2357 -title: Supreme Product Testing Architect -userPassword: Password1 -uid: WeyandF -givenName: Franki -mail: WeyandF@85375ce566b44b3aa8f322d00fc1330c.bitwarden.com -carLicense: T4YAV3 -departmentNumber: 9748 -employeeType: Employee -homePhone: +1 408 645-6926 -initials: F. W. -mobile: +1 408 746-4110 -pager: +1 408 942-9714 -roomNumber: 9037 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Suat Whitford,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suat Whitford -sn: Whitford -description: This is Suat Whitford's description -facsimileTelephoneNumber: +1 213 406-3353 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 920-6633 -title: Junior Janitorial Artist -userPassword: Password1 -uid: WhitforS -givenName: Suat -mail: WhitforS@23cf32b7148140cfb4b02ddf8d62cfa5.bitwarden.com -carLicense: 0BFJ5U -departmentNumber: 9859 -employeeType: Employee -homePhone: +1 213 831-7086 -initials: S. W. -mobile: +1 213 298-5489 -pager: +1 213 502-2377 -roomNumber: 8590 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Isadora Capelle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isadora Capelle -sn: Capelle -description: This is Isadora Capelle's description -facsimileTelephoneNumber: +1 415 391-4219 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 767-2129 -title: Supreme Product Development Director -userPassword: Password1 -uid: CapelleI -givenName: Isadora -mail: CapelleI@6ff43a0cd199484abc0f4c8402f6ccf8.bitwarden.com -carLicense: R69Q79 -departmentNumber: 9781 -employeeType: Employee -homePhone: +1 415 754-7865 -initials: I. C. -mobile: +1 415 433-7501 -pager: +1 415 100-9189 -roomNumber: 9417 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Loria Timmerman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loria Timmerman -sn: Timmerman -description: This is Loria Timmerman's description -facsimileTelephoneNumber: +1 408 754-5715 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 515-3351 -title: Associate Product Development Artist -userPassword: Password1 -uid: TimmermL -givenName: Loria -mail: TimmermL@6c3860a955fe431ca8d48e56cd2c1cc8.bitwarden.com -carLicense: G3DG66 -departmentNumber: 3382 -employeeType: Contract -homePhone: +1 408 248-7707 -initials: L. T. -mobile: +1 408 482-3014 -pager: +1 408 988-3086 -roomNumber: 9765 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryPat Tremblay -sn: Tremblay -description: This is MaryPat Tremblay's description -facsimileTelephoneNumber: +1 818 788-7469 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 502-5004 -title: Chief Payroll Warrior -userPassword: Password1 -uid: TremblaM -givenName: MaryPat -mail: TremblaM@e7d1f4f0f2c247cc84176f3d1fda8997.bitwarden.com -carLicense: 0LXP9O -departmentNumber: 7546 -employeeType: Contract -homePhone: +1 818 643-1172 -initials: M. T. -mobile: +1 818 634-2942 -pager: +1 818 546-4487 -roomNumber: 8041 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alfredo Bedient -sn: Bedient -description: This is Alfredo Bedient's description -facsimileTelephoneNumber: +1 206 495-5719 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 436-8698 -title: Junior Human Resources Director -userPassword: Password1 -uid: BedientA -givenName: Alfredo -mail: BedientA@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com -carLicense: 2Y8IFE -departmentNumber: 1140 -employeeType: Contract -homePhone: +1 206 517-5855 -initials: A. B. -mobile: +1 206 160-4083 -pager: +1 206 600-7837 -roomNumber: 9739 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bobbi Dupree,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobbi Dupree -sn: Dupree -description: This is Bobbi Dupree's description -facsimileTelephoneNumber: +1 206 950-7584 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 662-9241 -title: Master Management Manager -userPassword: Password1 -uid: DupreeB -givenName: Bobbi -mail: DupreeB@d71f931e88694d74b88e32769af98e29.bitwarden.com -carLicense: 0AVCF1 -departmentNumber: 6949 -employeeType: Employee -homePhone: +1 206 514-3866 -initials: B. D. -mobile: +1 206 459-9008 -pager: +1 206 161-9083 -roomNumber: 9534 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leshia Gaither,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leshia Gaither -sn: Gaither -description: This is Leshia Gaither's description -facsimileTelephoneNumber: +1 206 883-7303 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 886-2783 -title: Chief Product Testing Admin -userPassword: Password1 -uid: GaitherL -givenName: Leshia -mail: GaitherL@0bc2c297f4214248890001cfe94999e5.bitwarden.com -carLicense: XB25QN -departmentNumber: 2014 -employeeType: Employee -homePhone: +1 206 308-5468 -initials: L. G. -mobile: +1 206 666-1512 -pager: +1 206 925-6453 -roomNumber: 8337 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Calla McIsaac,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calla McIsaac -sn: McIsaac -description: This is Calla McIsaac's description -facsimileTelephoneNumber: +1 510 880-5597 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 709-4686 -title: Junior Human Resources Artist -userPassword: Password1 -uid: McIsaacC -givenName: Calla -mail: McIsaacC@dcc2a55662ed42a29feb9be5fbe1aebc.bitwarden.com -carLicense: 2NMPF0 -departmentNumber: 5321 -employeeType: Employee -homePhone: +1 510 376-9746 -initials: C. M. -mobile: +1 510 287-1121 -pager: +1 510 844-2636 -roomNumber: 9467 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Roby Kasbia,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roby Kasbia -sn: Kasbia -description: This is Roby Kasbia's description -facsimileTelephoneNumber: +1 804 882-1356 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 187-8050 -title: Chief Peons Punk -userPassword: Password1 -uid: KasbiaR -givenName: Roby -mail: KasbiaR@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com -carLicense: O7SN8P -departmentNumber: 9707 -employeeType: Normal -homePhone: +1 804 234-2206 -initials: R. K. -mobile: +1 804 649-7518 -pager: +1 804 934-9617 -roomNumber: 9027 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Samia Wacker,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Samia Wacker -sn: Wacker -description: This is Samia Wacker's description -facsimileTelephoneNumber: +1 804 972-4940 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 590-3855 -title: Supreme Management Architect -userPassword: Password1 -uid: WackerS -givenName: Samia -mail: WackerS@ffedbb5dcd2e43d89a2fe0f7ea7157e8.bitwarden.com -carLicense: 1LMKJE -departmentNumber: 6511 -employeeType: Normal -homePhone: +1 804 582-5809 -initials: S. W. -mobile: +1 804 726-2098 -pager: +1 804 839-5678 -roomNumber: 9638 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurelia Klimas -sn: Klimas -description: This is Aurelia Klimas's description -facsimileTelephoneNumber: +1 213 819-4851 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 870-1256 -title: Supreme Product Testing Evangelist -userPassword: Password1 -uid: KlimasA -givenName: Aurelia -mail: KlimasA@9cbd4c37891849299ce4208e274287c6.bitwarden.com -carLicense: J8NVR0 -departmentNumber: 1884 -employeeType: Employee -homePhone: +1 213 965-7469 -initials: A. K. -mobile: +1 213 611-1248 -pager: +1 213 980-2166 -roomNumber: 9581 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stephen Marketing,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephen Marketing -sn: Marketing -description: This is Stephen Marketing's description -facsimileTelephoneNumber: +1 415 263-5596 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 141-5174 -title: Chief Administrative Technician -userPassword: Password1 -uid: MarketiS -givenName: Stephen -mail: MarketiS@9b56a002e1e845bebc57785089119222.bitwarden.com -carLicense: 71LWXJ -departmentNumber: 8261 -employeeType: Employee -homePhone: +1 415 991-8789 -initials: S. M. -mobile: +1 415 161-7189 -pager: +1 415 745-9639 -roomNumber: 8453 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulcinea Reuss -sn: Reuss -description: This is Dulcinea Reuss's description -facsimileTelephoneNumber: +1 206 692-5628 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 474-3179 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: ReussD -givenName: Dulcinea -mail: ReussD@6f5f719e8c7c44dba4e5307764a1a899.bitwarden.com -carLicense: JC1NNA -departmentNumber: 2349 -employeeType: Employee -homePhone: +1 206 500-9283 -initials: D. R. -mobile: +1 206 741-4024 -pager: +1 206 558-1276 -roomNumber: 9463 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anissa Gottstein,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anissa Gottstein -sn: Gottstein -description: This is Anissa Gottstein's description -facsimileTelephoneNumber: +1 818 202-8462 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 818 789-9222 -title: Supreme Peons Technician -userPassword: Password1 -uid: GottsteA -givenName: Anissa -mail: GottsteA@87059a6507b64511ab56381369ebea64.bitwarden.com -carLicense: KBSXF6 -departmentNumber: 5903 -employeeType: Employee -homePhone: +1 818 657-7892 -initials: A. G. -mobile: +1 818 550-4603 -pager: +1 818 941-6331 -roomNumber: 9620 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MarieAndree Galipeau -sn: Galipeau -description: This is MarieAndree Galipeau's description -facsimileTelephoneNumber: +1 408 825-6122 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 609-7792 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: GalipeaM -givenName: MarieAndree -mail: GalipeaM@a9d076873ae84725b15dea4969311d19.bitwarden.com -carLicense: O4FMLB -departmentNumber: 3282 -employeeType: Employee -homePhone: +1 408 865-4495 -initials: M. G. -mobile: +1 408 842-1345 -pager: +1 408 551-1282 -roomNumber: 8974 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carlin Boult,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlin Boult -sn: Boult -description: This is Carlin Boult's description -facsimileTelephoneNumber: +1 804 337-2693 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 714-3281 -title: Associate Peons Artist -userPassword: Password1 -uid: BoultC -givenName: Carlin -mail: BoultC@10bb017137f049d59bb1ad7676fcda69.bitwarden.com -carLicense: 3O2LUN -departmentNumber: 2327 -employeeType: Normal -homePhone: +1 804 420-8014 -initials: C. B. -mobile: +1 804 610-1480 -pager: +1 804 263-6631 -roomNumber: 8484 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kitt Briden,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kitt Briden -sn: Briden -description: This is Kitt Briden's description -facsimileTelephoneNumber: +1 818 998-3299 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 887-9300 -title: Chief Janitorial Punk -userPassword: Password1 -uid: BridenK -givenName: Kitt -mail: BridenK@f3d35636fac14230bdd8e3b7a9740351.bitwarden.com -carLicense: EY3R3V -departmentNumber: 3677 -employeeType: Normal -homePhone: +1 818 901-8799 -initials: K. B. -mobile: +1 818 148-3814 -pager: +1 818 662-7195 -roomNumber: 8968 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ramniklal Buske,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramniklal Buske -sn: Buske -description: This is Ramniklal Buske's description -facsimileTelephoneNumber: +1 213 356-9402 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 143-5672 -title: Chief Management President -userPassword: Password1 -uid: BuskeR -givenName: Ramniklal -mail: BuskeR@828176ba128d4cb487e3464dc77f09ef.bitwarden.com -carLicense: PIN5DD -departmentNumber: 3939 -employeeType: Contract -homePhone: +1 213 776-8139 -initials: R. B. -mobile: +1 213 161-1944 -pager: +1 213 986-9301 -roomNumber: 8017 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Par Giang,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Par Giang -sn: Giang -description: This is Par Giang's description -facsimileTelephoneNumber: +1 818 524-6650 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 830-4729 -title: Master Administrative Dictator -userPassword: Password1 -uid: GiangP -givenName: Par -mail: GiangP@510955a0267640f295624f2d3542d78c.bitwarden.com -carLicense: H3BDFI -departmentNumber: 7571 -employeeType: Normal -homePhone: +1 818 717-2479 -initials: P. G. -mobile: +1 818 927-6333 -pager: +1 818 494-1757 -roomNumber: 9955 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquelynn Knox -sn: Knox -description: This is Jacquelynn Knox's description -facsimileTelephoneNumber: +1 408 198-3070 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 218-8179 -title: Associate Product Development Mascot -userPassword: Password1 -uid: KnoxJ -givenName: Jacquelynn -mail: KnoxJ@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com -carLicense: KG0GBF -departmentNumber: 4799 -employeeType: Contract -homePhone: +1 408 315-7258 -initials: J. K. -mobile: +1 408 506-8231 -pager: +1 408 141-9620 -roomNumber: 8892 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Daisey Karam,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daisey Karam -sn: Karam -description: This is Daisey Karam's description -facsimileTelephoneNumber: +1 408 771-2274 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 885-6703 -title: Junior Management Technician -userPassword: Password1 -uid: KaramD -givenName: Daisey -mail: KaramD@af703f54ddb945e38afdba5f17819d01.bitwarden.com -carLicense: OA5XUF -departmentNumber: 9761 -employeeType: Employee -homePhone: +1 408 521-9863 -initials: D. K. -mobile: +1 408 506-6559 -pager: +1 408 117-3571 -roomNumber: 8355 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Levent Khouderchah,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Levent Khouderchah -sn: Khouderchah -description: This is Levent Khouderchah's description -facsimileTelephoneNumber: +1 804 120-2967 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 609-5689 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: KhouderL -givenName: Levent -mail: KhouderL@cc743470ff7d424999d3c3aceed5aa98.bitwarden.com -carLicense: LA2E13 -departmentNumber: 3950 -employeeType: Employee -homePhone: +1 804 718-3999 -initials: L. K. -mobile: +1 804 414-9815 -pager: +1 804 139-1659 -roomNumber: 9494 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Demetria Projects,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Demetria Projects -sn: Projects -description: This is Demetria Projects's description -facsimileTelephoneNumber: +1 818 745-1183 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 729-1159 -title: Supreme Management Sales Rep -userPassword: Password1 -uid: ProjectD -givenName: Demetria -mail: ProjectD@040eff361ea747e78133529faeb94ba1.bitwarden.com -carLicense: 7GX9JI -departmentNumber: 1492 -employeeType: Employee -homePhone: +1 818 194-8768 -initials: D. P. -mobile: +1 818 584-1280 -pager: +1 818 476-4782 -roomNumber: 9020 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jules Highsmith,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jules Highsmith -sn: Highsmith -description: This is Jules Highsmith's description -facsimileTelephoneNumber: +1 818 993-7337 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 818 231-1255 -title: Junior Janitorial Architect -userPassword: Password1 -uid: HighsmiJ -givenName: Jules -mail: HighsmiJ@0798984bbb0c4179a1769a476df089f2.bitwarden.com -carLicense: QMW09E -departmentNumber: 8819 -employeeType: Normal -homePhone: +1 818 531-9090 -initials: J. H. -mobile: +1 818 419-5593 -pager: +1 818 202-3006 -roomNumber: 8544 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Misbah Kimma,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Misbah Kimma -sn: Kimma -description: This is Misbah Kimma's description -facsimileTelephoneNumber: +1 206 210-8545 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 854-9875 -title: Associate Human Resources Grunt -userPassword: Password1 -uid: KimmaM -givenName: Misbah -mail: KimmaM@e5d9cd8563784493b06bdd8fd1d46cd9.bitwarden.com -carLicense: Y177K9 -departmentNumber: 4606 -employeeType: Normal -homePhone: +1 206 909-9397 -initials: M. K. -mobile: +1 206 705-4195 -pager: +1 206 814-2948 -roomNumber: 9818 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Morganne Teed,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morganne Teed -sn: Teed -description: This is Morganne Teed's description -facsimileTelephoneNumber: +1 408 101-5871 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 499-4803 -title: Chief Management Stooge -userPassword: Password1 -uid: TeedM -givenName: Morganne -mail: TeedM@540d8b0a17d449ce8bcc397ded86d3bf.bitwarden.com -carLicense: YQ19U2 -departmentNumber: 1219 -employeeType: Employee -homePhone: +1 408 507-6219 -initials: M. T. -mobile: +1 408 112-9021 -pager: +1 408 979-5476 -roomNumber: 9476 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mozelle Huang,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mozelle Huang -sn: Huang -description: This is Mozelle Huang's description -facsimileTelephoneNumber: +1 818 768-2010 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 904-5828 -title: Junior Administrative Architect -userPassword: Password1 -uid: HuangM -givenName: Mozelle -mail: HuangM@6834e07b8b7a48599c5352f812afcb14.bitwarden.com -carLicense: OYKVUT -departmentNumber: 8376 -employeeType: Employee -homePhone: +1 818 627-4730 -initials: M. H. -mobile: +1 818 233-9078 -pager: +1 818 980-6852 -roomNumber: 8441 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Stacy Boehlke,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacy Boehlke -sn: Boehlke -description: This is Stacy Boehlke's description -facsimileTelephoneNumber: +1 818 143-6461 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 219-8577 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: BoehlkeS -givenName: Stacy -mail: BoehlkeS@7d7fba0007d84df48116a5de2752d736.bitwarden.com -carLicense: SISIH7 -departmentNumber: 9596 -employeeType: Contract -homePhone: +1 818 315-1619 -initials: S. B. -mobile: +1 818 131-5630 -pager: +1 818 718-9778 -roomNumber: 9247 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertrud Alexan -sn: Alexan -description: This is Gertrud Alexan's description -facsimileTelephoneNumber: +1 408 488-7890 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 408 543-2787 -title: Junior Product Testing Madonna -userPassword: Password1 -uid: AlexanG -givenName: Gertrud -mail: AlexanG@c34ab4db75da4e338c2262d22bcb3019.bitwarden.com -carLicense: N41J4U -departmentNumber: 3272 -employeeType: Contract -homePhone: +1 408 963-3003 -initials: G. A. -mobile: +1 408 637-3429 -pager: +1 408 132-7486 -roomNumber: 9857 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolanda Walbridge -sn: Walbridge -description: This is Jolanda Walbridge's description -facsimileTelephoneNumber: +1 510 407-2388 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 378-9486 -title: Master Administrative Admin -userPassword: Password1 -uid: WalbridJ -givenName: Jolanda -mail: WalbridJ@f5fd329c5c644159a0d5837b63c559bb.bitwarden.com -carLicense: CPU9EQ -departmentNumber: 8412 -employeeType: Employee -homePhone: +1 510 498-9925 -initials: J. W. -mobile: +1 510 760-9381 -pager: +1 510 373-1995 -roomNumber: 9516 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Angelica Sarkari,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angelica Sarkari -sn: Sarkari -description: This is Angelica Sarkari's description -facsimileTelephoneNumber: +1 408 297-5818 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 801-9159 -title: Supreme Management Assistant -userPassword: Password1 -uid: SarkariA -givenName: Angelica -mail: SarkariA@97df64fd63964d63ae961e1122586e46.bitwarden.com -carLicense: 0YFP00 -departmentNumber: 7487 -employeeType: Normal -homePhone: +1 408 499-2130 -initials: A. S. -mobile: +1 408 502-2597 -pager: +1 408 714-9812 -roomNumber: 8850 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Michel Akyurekli,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michel Akyurekli -sn: Akyurekli -description: This is Michel Akyurekli's description -facsimileTelephoneNumber: +1 804 503-5707 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 875-5175 -title: Chief Payroll Manager -userPassword: Password1 -uid: AkyurekM -givenName: Michel -mail: AkyurekM@10e0fd0f72834c84a749bfbeb6ab529e.bitwarden.com -carLicense: FXGH5Q -departmentNumber: 3277 -employeeType: Contract -homePhone: +1 804 541-9709 -initials: M. A. -mobile: +1 804 441-6554 -pager: +1 804 512-9168 -roomNumber: 9254 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silvester Sawchuk -sn: Sawchuk -description: This is Silvester Sawchuk's description -facsimileTelephoneNumber: +1 804 936-5777 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 896-8600 -title: Master Product Development President -userPassword: Password1 -uid: SawchukS -givenName: Silvester -mail: SawchukS@cb980ae301084964a9693d89f9fb2ea1.bitwarden.com -carLicense: W4H76N -departmentNumber: 8592 -employeeType: Contract -homePhone: +1 804 537-9413 -initials: S. S. -mobile: +1 804 777-6136 -pager: +1 804 634-1971 -roomNumber: 8989 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rayna Diep,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rayna Diep -sn: Diep -description: This is Rayna Diep's description -facsimileTelephoneNumber: +1 415 424-5411 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 710-5592 -title: Master Product Development Sales Rep -userPassword: Password1 -uid: DiepR -givenName: Rayna -mail: DiepR@dd8272e863174597a9c6eb5aaf131b06.bitwarden.com -carLicense: 8WX0CN -departmentNumber: 8663 -employeeType: Normal -homePhone: +1 415 159-7682 -initials: R. D. -mobile: +1 415 780-9708 -pager: +1 415 204-3990 -roomNumber: 9090 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dolorita Netdbs -sn: Netdbs -description: This is Dolorita Netdbs's description -facsimileTelephoneNumber: +1 510 276-5244 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 410-5381 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: NetdbsD -givenName: Dolorita -mail: NetdbsD@ba870021396f4a5691ef47f553098ab0.bitwarden.com -carLicense: XAXE29 -departmentNumber: 9217 -employeeType: Employee -homePhone: +1 510 584-4255 -initials: D. N. -mobile: +1 510 583-6631 -pager: +1 510 573-4673 -roomNumber: 9385 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ollie Forslund,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ollie Forslund -sn: Forslund -description: This is Ollie Forslund's description -facsimileTelephoneNumber: +1 804 951-2769 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 224-9727 -title: Supreme Product Development Technician -userPassword: Password1 -uid: ForslunO -givenName: Ollie -mail: ForslunO@9e342fa3efb14712a894fba19d56a8d2.bitwarden.com -carLicense: OMDQP4 -departmentNumber: 8125 -employeeType: Contract -homePhone: +1 804 292-3134 -initials: O. F. -mobile: +1 804 656-6976 -pager: +1 804 457-2306 -roomNumber: 8494 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebbecca Ivanyi -sn: Ivanyi -description: This is Rebbecca Ivanyi's description -facsimileTelephoneNumber: +1 213 484-5987 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 920-1560 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: IvanyiR -givenName: Rebbecca -mail: IvanyiR@49fad969a9cf4f7f9ee17b24c9d91f37.bitwarden.com -carLicense: 536HUS -departmentNumber: 8635 -employeeType: Employee -homePhone: +1 213 401-8101 -initials: R. I. -mobile: +1 213 575-8670 -pager: +1 213 210-6660 -roomNumber: 9919 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Germain Nobes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Germain Nobes -sn: Nobes -description: This is Germain Nobes's description -facsimileTelephoneNumber: +1 206 704-3671 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 195-5468 -title: Master Human Resources Developer -userPassword: Password1 -uid: NobesG -givenName: Germain -mail: NobesG@5b56eb88f88b42a3b2d8c2c6c1108102.bitwarden.com -carLicense: UN6H9U -departmentNumber: 5968 -employeeType: Employee -homePhone: +1 206 609-7550 -initials: G. N. -mobile: +1 206 512-6923 -pager: +1 206 585-2274 -roomNumber: 9048 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sidonnie Thomlinson -sn: Thomlinson -description: This is Sidonnie Thomlinson's description -facsimileTelephoneNumber: +1 206 990-3305 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 860-2089 -title: Junior Human Resources Mascot -userPassword: Password1 -uid: ThomlinS -givenName: Sidonnie -mail: ThomlinS@6640f4471cc54a89999fc29622a696c3.bitwarden.com -carLicense: 9ID7NN -departmentNumber: 8747 -employeeType: Employee -homePhone: +1 206 667-5507 -initials: S. T. -mobile: +1 206 216-5040 -pager: +1 206 312-1464 -roomNumber: 9984 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Daria Farnham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daria Farnham -sn: Farnham -description: This is Daria Farnham's description -facsimileTelephoneNumber: +1 213 530-3493 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 966-5091 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: FarnhamD -givenName: Daria -mail: FarnhamD@535949b117544e80b4ad9c1fa166edb9.bitwarden.com -carLicense: PO8CGG -departmentNumber: 5962 -employeeType: Contract -homePhone: +1 213 367-9645 -initials: D. F. -mobile: +1 213 198-5319 -pager: +1 213 895-7139 -roomNumber: 8963 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rohit McSorley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rohit McSorley -sn: McSorley -description: This is Rohit McSorley's description -facsimileTelephoneNumber: +1 510 665-8151 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 242-2858 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: McSorleR -givenName: Rohit -mail: McSorleR@2b68ad1154c2463cae24d71d411d150c.bitwarden.com -carLicense: B5ILOF -departmentNumber: 8757 -employeeType: Normal -homePhone: +1 510 277-4533 -initials: R. M. -mobile: +1 510 703-1421 -pager: +1 510 239-4151 -roomNumber: 9028 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Novelia Sossaman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Novelia Sossaman -sn: Sossaman -description: This is Novelia Sossaman's description -facsimileTelephoneNumber: +1 213 949-9889 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 311-2338 -title: Supreme Administrative Czar -userPassword: Password1 -uid: SossamaN -givenName: Novelia -mail: SossamaN@527588b4f1b4422fb6b034c9d08f2576.bitwarden.com -carLicense: IJKETW -departmentNumber: 4074 -employeeType: Normal -homePhone: +1 213 760-4664 -initials: N. S. -mobile: +1 213 393-3439 -pager: +1 213 917-8565 -roomNumber: 8251 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marabel Oster,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marabel Oster -sn: Oster -description: This is Marabel Oster's description -facsimileTelephoneNumber: +1 415 937-1163 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 814-5831 -title: Associate Human Resources Manager -userPassword: Password1 -uid: OsterM -givenName: Marabel -mail: OsterM@fbc893f003694c649780eac570605509.bitwarden.com -carLicense: P8FVP0 -departmentNumber: 5590 -employeeType: Contract -homePhone: +1 415 370-5084 -initials: M. O. -mobile: +1 415 642-8645 -pager: +1 415 664-9747 -roomNumber: 8750 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mufinella Klashinsky -sn: Klashinsky -description: This is Mufinella Klashinsky's description -facsimileTelephoneNumber: +1 818 717-5733 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 818 944-7625 -title: Master Human Resources Dictator -userPassword: Password1 -uid: KlashinM -givenName: Mufinella -mail: KlashinM@3f84853ed30445ccb6957c251cefdc54.bitwarden.com -carLicense: RL3W8V -departmentNumber: 9247 -employeeType: Normal -homePhone: +1 818 737-8652 -initials: M. K. -mobile: +1 818 330-1996 -pager: +1 818 184-3610 -roomNumber: 8188 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marco Hoagland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marco Hoagland -sn: Hoagland -description: This is Marco Hoagland's description -facsimileTelephoneNumber: +1 804 346-6450 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 775-7723 -title: Master Janitorial Artist -userPassword: Password1 -uid: HoaglanM -givenName: Marco -mail: HoaglanM@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com -carLicense: V5N1RN -departmentNumber: 1891 -employeeType: Contract -homePhone: +1 804 163-1721 -initials: M. H. -mobile: +1 804 447-2126 -pager: +1 804 509-1070 -roomNumber: 9505 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gerty Hebert,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerty Hebert -sn: Hebert -description: This is Gerty Hebert's description -facsimileTelephoneNumber: +1 804 861-5663 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 425-1774 -title: Associate Management President -userPassword: Password1 -uid: HebertG -givenName: Gerty -mail: HebertG@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com -carLicense: 9PWPF0 -departmentNumber: 9596 -employeeType: Normal -homePhone: +1 804 759-9449 -initials: G. H. -mobile: +1 804 958-9210 -pager: +1 804 316-6198 -roomNumber: 9508 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marcela Dufresne,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcela Dufresne -sn: Dufresne -description: This is Marcela Dufresne's description -facsimileTelephoneNumber: +1 206 664-7344 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 206 954-1857 -title: Master Management Admin -userPassword: Password1 -uid: DufresnM -givenName: Marcela -mail: DufresnM@55d3abf188cf489e982ee3fc8f3c0c3d.bitwarden.com -carLicense: 7PK22D -departmentNumber: 3743 -employeeType: Normal -homePhone: +1 206 198-1843 -initials: M. D. -mobile: +1 206 401-1136 -pager: +1 206 338-8054 -roomNumber: 8891 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deidre Chaisupakosol -sn: Chaisupakosol -description: This is Deidre Chaisupakosol's description -facsimileTelephoneNumber: +1 804 847-7909 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 854-8086 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: ChaisupD -givenName: Deidre -mail: ChaisupD@66c076947bac46c6bf8b54d183a4a3cc.bitwarden.com -carLicense: LDD6JE -departmentNumber: 5083 -employeeType: Contract -homePhone: +1 804 175-7832 -initials: D. C. -mobile: +1 804 147-9179 -pager: +1 804 507-3727 -roomNumber: 9565 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Almeda Maloney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Almeda Maloney -sn: Maloney -description: This is Almeda Maloney's description -facsimileTelephoneNumber: +1 206 167-9771 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 382-2717 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: MaloneyA -givenName: Almeda -mail: MaloneyA@861b221ff6974e6cbb5a0c00d198c4bc.bitwarden.com -carLicense: 1GUSI2 -departmentNumber: 7855 -employeeType: Normal -homePhone: +1 206 339-6450 -initials: A. M. -mobile: +1 206 843-8719 -pager: +1 206 672-2246 -roomNumber: 8489 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Madalyn Bakay,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madalyn Bakay -sn: Bakay -description: This is Madalyn Bakay's description -facsimileTelephoneNumber: +1 818 390-6996 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 566-9687 -title: Junior Peons Architect -userPassword: Password1 -uid: BakayM -givenName: Madalyn -mail: BakayM@75234ed0eb0841e9a2b60ec9399e028a.bitwarden.com -carLicense: JFLSVJ -departmentNumber: 9199 -employeeType: Contract -homePhone: +1 818 988-6535 -initials: M. B. -mobile: +1 818 857-9210 -pager: +1 818 472-4333 -roomNumber: 8850 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bunni McNerlan -sn: McNerlan -description: This is Bunni McNerlan's description -facsimileTelephoneNumber: +1 818 436-3506 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 430-8298 -title: Supreme Human Resources Assistant -userPassword: Password1 -uid: McNerlaB -givenName: Bunni -mail: McNerlaB@c9b998177eaf425c9e87bad80d5d4670.bitwarden.com -carLicense: STVWVC -departmentNumber: 2146 -employeeType: Contract -homePhone: +1 818 659-8197 -initials: B. M. -mobile: +1 818 983-1150 -pager: +1 818 350-5239 -roomNumber: 8056 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Allen Papantonis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allen Papantonis -sn: Papantonis -description: This is Allen Papantonis's description -facsimileTelephoneNumber: +1 510 858-7032 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 510 356-1927 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: PapantoA -givenName: Allen -mail: PapantoA@76c37165c9c84b2e91c732cc33c7793d.bitwarden.com -carLicense: TXFOD4 -departmentNumber: 8465 -employeeType: Contract -homePhone: +1 510 267-5079 -initials: A. P. -mobile: +1 510 519-2404 -pager: +1 510 560-3143 -roomNumber: 9258 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leoline Cholette,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leoline Cholette -sn: Cholette -description: This is Leoline Cholette's description -facsimileTelephoneNumber: +1 818 916-6801 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 267-4935 -title: Chief Janitorial President -userPassword: Password1 -uid: CholettL -givenName: Leoline -mail: CholettL@444794b5113d44779ace93e2616392cf.bitwarden.com -carLicense: WI5PWU -departmentNumber: 7397 -employeeType: Normal -homePhone: +1 818 872-8748 -initials: L. C. -mobile: +1 818 874-8591 -pager: +1 818 399-7572 -roomNumber: 8444 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Masahiro Sandhar -sn: Sandhar -description: This is Masahiro Sandhar's description -facsimileTelephoneNumber: +1 206 221-9525 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 477-3256 -title: Chief Product Testing Writer -userPassword: Password1 -uid: SandharM -givenName: Masahiro -mail: SandharM@274384e0320c40758cf1ecbcebf754d6.bitwarden.com -carLicense: VUKXIE -departmentNumber: 1521 -employeeType: Employee -homePhone: +1 206 409-8748 -initials: M. S. -mobile: +1 206 697-5873 -pager: +1 206 498-9254 -roomNumber: 8207 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leanna MTL,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leanna MTL -sn: MTL -description: This is Leanna MTL's description -facsimileTelephoneNumber: +1 415 225-2506 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 834-1455 -title: Chief Administrative Grunt -userPassword: Password1 -uid: MTLL -givenName: Leanna -mail: MTLL@ab71cedcebe141b4ae49c26990bb3316.bitwarden.com -carLicense: RY7LGP -departmentNumber: 8623 -employeeType: Normal -homePhone: +1 415 428-8933 -initials: L. M. -mobile: +1 415 869-7318 -pager: +1 415 296-9107 -roomNumber: 8572 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathlin Guilbert -sn: Guilbert -description: This is Kathlin Guilbert's description -facsimileTelephoneNumber: +1 206 393-7597 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 796-5007 -title: Associate Administrative Czar -userPassword: Password1 -uid: GuilberK -givenName: Kathlin -mail: GuilberK@0525ebb146b94455a69f7d801ab4ff97.bitwarden.com -carLicense: RCR9W4 -departmentNumber: 9889 -employeeType: Contract -homePhone: +1 206 594-1812 -initials: K. G. -mobile: +1 206 360-2360 -pager: +1 206 812-6763 -roomNumber: 8377 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Octavio Naugle,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Octavio Naugle -sn: Naugle -description: This is Octavio Naugle's description -facsimileTelephoneNumber: +1 206 732-7221 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 991-4007 -title: Supreme Product Testing Assistant -userPassword: Password1 -uid: NaugleO -givenName: Octavio -mail: NaugleO@8cef7d2cd1884754b6cc5e28407c0a56.bitwarden.com -carLicense: C01EY1 -departmentNumber: 9483 -employeeType: Employee -homePhone: +1 206 398-1130 -initials: O. N. -mobile: +1 206 760-7388 -pager: +1 206 654-8438 -roomNumber: 8685 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krzysztof Hoehling -sn: Hoehling -description: This is Krzysztof Hoehling's description -facsimileTelephoneNumber: +1 213 949-4660 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 572-5056 -title: Chief Janitorial Stooge -userPassword: Password1 -uid: HoehlinK -givenName: Krzysztof -mail: HoehlinK@72030161dcd24217be14766e527d14fa.bitwarden.com -carLicense: J0U84W -departmentNumber: 1035 -employeeType: Contract -homePhone: +1 213 145-9486 -initials: K. H. -mobile: +1 213 326-7101 -pager: +1 213 502-3284 -roomNumber: 9982 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Charangit Brasset,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charangit Brasset -sn: Brasset -description: This is Charangit Brasset's description -facsimileTelephoneNumber: +1 213 129-5218 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 213 838-1844 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: BrassetC -givenName: Charangit -mail: BrassetC@b524d22ec70741b18bc6152d2cf11515.bitwarden.com -carLicense: 3ATUQW -departmentNumber: 1297 -employeeType: Employee -homePhone: +1 213 734-3671 -initials: C. B. -mobile: +1 213 949-8060 -pager: +1 213 247-9037 -roomNumber: 9842 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gena Lovejoy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gena Lovejoy -sn: Lovejoy -description: This is Gena Lovejoy's description -facsimileTelephoneNumber: +1 818 473-5693 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 568-6201 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: LovejoyG -givenName: Gena -mail: LovejoyG@28d2c310a8f14caeb811cfb7bdd890df.bitwarden.com -carLicense: 6J3QUA -departmentNumber: 5305 -employeeType: Employee -homePhone: +1 818 709-6616 -initials: G. L. -mobile: +1 818 342-7509 -pager: +1 818 346-7347 -roomNumber: 9512 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruchel Ianace -sn: Ianace -description: This is Ruchel Ianace's description -facsimileTelephoneNumber: +1 408 304-5714 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 431-1979 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: IanaceR -givenName: Ruchel -mail: IanaceR@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com -carLicense: KP982S -departmentNumber: 2376 -employeeType: Employee -homePhone: +1 408 884-4658 -initials: R. I. -mobile: +1 408 222-9148 -pager: +1 408 126-2046 -roomNumber: 9656 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vivi Dysart,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivi Dysart -sn: Dysart -description: This is Vivi Dysart's description -facsimileTelephoneNumber: +1 213 240-6668 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 196-7182 -title: Master Payroll Dictator -userPassword: Password1 -uid: DysartV -givenName: Vivi -mail: DysartV@8c0b466f02f748859dc301557d2d5669.bitwarden.com -carLicense: 0MSOIG -departmentNumber: 5502 -employeeType: Employee -homePhone: +1 213 230-1230 -initials: V. D. -mobile: +1 213 781-1171 -pager: +1 213 933-2491 -roomNumber: 8970 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosabelle Montoute -sn: Montoute -description: This is Rosabelle Montoute's description -facsimileTelephoneNumber: +1 213 757-1569 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 607-8269 -title: Master Janitorial Fellow -userPassword: Password1 -uid: MontoutR -givenName: Rosabelle -mail: MontoutR@dbc4eab54b5f4d779246b56a41ba3d42.bitwarden.com -carLicense: 3YB54A -departmentNumber: 5786 -employeeType: Contract -homePhone: +1 213 508-2022 -initials: R. M. -mobile: +1 213 841-9262 -pager: +1 213 702-8099 -roomNumber: 9378 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Giuseppe Laing,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giuseppe Laing -sn: Laing -description: This is Giuseppe Laing's description -facsimileTelephoneNumber: +1 510 884-4172 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 885-6066 -title: Supreme Management Engineer -userPassword: Password1 -uid: LaingG -givenName: Giuseppe -mail: LaingG@16269c126bd14ac9a93025afee70dceb.bitwarden.com -carLicense: EM5TXF -departmentNumber: 1178 -employeeType: Employee -homePhone: +1 510 401-4649 -initials: G. L. -mobile: +1 510 608-7996 -pager: +1 510 737-7325 -roomNumber: 9716 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zeb Morrissette,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zeb Morrissette -sn: Morrissette -description: This is Zeb Morrissette's description -facsimileTelephoneNumber: +1 818 859-4961 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 596-3054 -title: Associate Product Development Madonna -userPassword: Password1 -uid: MorrissZ -givenName: Zeb -mail: MorrissZ@e7982141a478415494932da6ee7a398d.bitwarden.com -carLicense: IYBLYV -departmentNumber: 3781 -employeeType: Normal -homePhone: +1 818 813-1686 -initials: Z. M. -mobile: +1 818 826-1438 -pager: +1 818 277-7393 -roomNumber: 9384 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Corly Wingate,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corly Wingate -sn: Wingate -description: This is Corly Wingate's description -facsimileTelephoneNumber: +1 818 829-8103 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 249-9986 -title: Junior Payroll Visionary -userPassword: Password1 -uid: WingateC -givenName: Corly -mail: WingateC@8b54f75a945349ddb0e951ba57a8fbf6.bitwarden.com -carLicense: JQNJMH -departmentNumber: 8831 -employeeType: Employee -homePhone: +1 818 683-3518 -initials: C. W. -mobile: +1 818 854-7599 -pager: +1 818 947-5333 -roomNumber: 9300 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=UnaMae Del,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: UnaMae Del -sn: Del -description: This is UnaMae Del's description -facsimileTelephoneNumber: +1 510 196-5988 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 116-9699 -title: Junior Human Resources Developer -userPassword: Password1 -uid: DelU -givenName: UnaMae -mail: DelU@526917d21d144952ba135c0232075538.bitwarden.com -carLicense: Q6OC54 -departmentNumber: 3946 -employeeType: Employee -homePhone: +1 510 431-9397 -initials: U. D. -mobile: +1 510 325-1197 -pager: +1 510 584-9966 -roomNumber: 9374 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Almerinda MTL,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Almerinda MTL -sn: MTL -description: This is Almerinda MTL's description -facsimileTelephoneNumber: +1 804 852-5889 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 390-7310 -title: Master Product Development Consultant -userPassword: Password1 -uid: MTLA -givenName: Almerinda -mail: MTLA@56ff7c3ad2a74f428698e9d39e33820f.bitwarden.com -carLicense: GNWFHF -departmentNumber: 5186 -employeeType: Employee -homePhone: +1 804 360-6265 -initials: A. M. -mobile: +1 804 701-6773 -pager: +1 804 729-3890 -roomNumber: 9028 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=JeanRoch Della,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanRoch Della -sn: Della -description: This is JeanRoch Della's description -facsimileTelephoneNumber: +1 206 946-4319 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 267-9995 -title: Master Peons Mascot -userPassword: Password1 -uid: DellaJ -givenName: JeanRoch -mail: DellaJ@79183891cf444d618a0f5a54d8772f40.bitwarden.com -carLicense: AFJE9O -departmentNumber: 9899 -employeeType: Contract -homePhone: +1 206 249-7838 -initials: J. D. -mobile: +1 206 972-4964 -pager: +1 206 360-1001 -roomNumber: 8725 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnola Meyerink -sn: Meyerink -description: This is Agnola Meyerink's description -facsimileTelephoneNumber: +1 213 908-2771 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 611-6391 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: MeyerinA -givenName: Agnola -mail: MeyerinA@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com -carLicense: Y8PYVW -departmentNumber: 4193 -employeeType: Normal -homePhone: +1 213 424-6807 -initials: A. M. -mobile: +1 213 864-2503 -pager: +1 213 693-1194 -roomNumber: 8565 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cris Viano,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cris Viano -sn: Viano -description: This is Cris Viano's description -facsimileTelephoneNumber: +1 510 971-1601 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 613-6352 -title: Associate Payroll Mascot -userPassword: Password1 -uid: VianoC -givenName: Cris -mail: VianoC@ab9abe6692b34c219100026a54077248.bitwarden.com -carLicense: G6851Y -departmentNumber: 5859 -employeeType: Employee -homePhone: +1 510 212-2016 -initials: C. V. -mobile: +1 510 760-3478 -pager: +1 510 281-9751 -roomNumber: 9020 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronni Goodwin -sn: Goodwin -description: This is Ronni Goodwin's description -facsimileTelephoneNumber: +1 818 261-9627 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 908-1886 -title: Junior Product Testing Developer -userPassword: Password1 -uid: GoodwinR -givenName: Ronni -mail: GoodwinR@1df73cc203344a569c1b4737122f78a2.bitwarden.com -carLicense: D3NJS2 -departmentNumber: 9703 -employeeType: Contract -homePhone: +1 818 695-2011 -initials: R. G. -mobile: +1 818 326-5597 -pager: +1 818 543-6147 -roomNumber: 9440 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Takis Bulmer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Takis Bulmer -sn: Bulmer -description: This is Takis Bulmer's description -facsimileTelephoneNumber: +1 408 148-7236 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 152-4266 -title: Junior Administrative Consultant -userPassword: Password1 -uid: BulmerT -givenName: Takis -mail: BulmerT@b6433b672188433c98862791df3ba6da.bitwarden.com -carLicense: NG5ONK -departmentNumber: 1310 -employeeType: Contract -homePhone: +1 408 585-3347 -initials: T. B. -mobile: +1 408 130-7650 -pager: +1 408 906-3708 -roomNumber: 9926 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adah Calistro,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adah Calistro -sn: Calistro -description: This is Adah Calistro's description -facsimileTelephoneNumber: +1 510 712-6505 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 202-7564 -title: Supreme Peons Grunt -userPassword: Password1 -uid: CalistrA -givenName: Adah -mail: CalistrA@97dff61562cc4fcf91cc6b1c0555b351.bitwarden.com -carLicense: KOHP92 -departmentNumber: 6565 -employeeType: Normal -homePhone: +1 510 873-6634 -initials: A. C. -mobile: +1 510 437-7084 -pager: +1 510 293-6736 -roomNumber: 9794 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jessalin Stooke,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessalin Stooke -sn: Stooke -description: This is Jessalin Stooke's description -facsimileTelephoneNumber: +1 213 609-4304 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 813-6197 -title: Junior Peons Engineer -userPassword: Password1 -uid: StookeJ -givenName: Jessalin -mail: StookeJ@bef37f4792b04da289642afddb790432.bitwarden.com -carLicense: 5ML596 -departmentNumber: 5550 -employeeType: Contract -homePhone: +1 213 878-9895 -initials: J. S. -mobile: +1 213 875-8719 -pager: +1 213 369-7163 -roomNumber: 8982 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zsazsa Ukena,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zsazsa Ukena -sn: Ukena -description: This is Zsazsa Ukena's description -facsimileTelephoneNumber: +1 510 755-7310 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 716-6142 -title: Junior Management Director -userPassword: Password1 -uid: UkenaZ -givenName: Zsazsa -mail: UkenaZ@e91e9d47322f42e0863a6aa1fe777b71.bitwarden.com -carLicense: TK22WN -departmentNumber: 2215 -employeeType: Normal -homePhone: +1 510 753-3789 -initials: Z. U. -mobile: +1 510 861-4577 -pager: +1 510 419-9421 -roomNumber: 8475 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Raynell Shears,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raynell Shears -sn: Shears -description: This is Raynell Shears's description -facsimileTelephoneNumber: +1 415 139-6693 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 731-4260 -title: Master Payroll Vice President -userPassword: Password1 -uid: ShearsR -givenName: Raynell -mail: ShearsR@87113723aa0e41bdb0ec57c16297b036.bitwarden.com -carLicense: SLMC74 -departmentNumber: 5059 -employeeType: Contract -homePhone: +1 415 935-6424 -initials: R. S. -mobile: +1 415 789-3335 -pager: +1 415 595-9972 -roomNumber: 8216 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazem Ginzburg -sn: Ginzburg -description: This is Kazem Ginzburg's description -facsimileTelephoneNumber: +1 206 110-5405 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 589-8601 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: GinzburK -givenName: Kazem -mail: GinzburK@0bceb4753c404fdbaaffa3f02923ad68.bitwarden.com -carLicense: AF0LHY -departmentNumber: 4985 -employeeType: Contract -homePhone: +1 206 477-2890 -initials: K. G. -mobile: +1 206 763-5881 -pager: +1 206 321-1982 -roomNumber: 9841 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hephzibah Sherali -sn: Sherali -description: This is Hephzibah Sherali's description -facsimileTelephoneNumber: +1 415 720-4626 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 832-5666 -title: Associate Administrative Fellow -userPassword: Password1 -uid: SheraliH -givenName: Hephzibah -mail: SheraliH@958185118457477783d16f2fa9e93aa2.bitwarden.com -carLicense: QLTH0Q -departmentNumber: 8378 -employeeType: Employee -homePhone: +1 415 586-6798 -initials: H. S. -mobile: +1 415 359-8171 -pager: +1 415 135-1585 -roomNumber: 9525 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kem Wares,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kem Wares -sn: Wares -description: This is Kem Wares's description -facsimileTelephoneNumber: +1 213 991-7696 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 765-2465 -title: Chief Administrative Developer -userPassword: Password1 -uid: WaresK -givenName: Kem -mail: WaresK@52c0e096b1b44f2f8c05cf2d62dc5788.bitwarden.com -carLicense: H003G0 -departmentNumber: 4975 -employeeType: Employee -homePhone: +1 213 773-7101 -initials: K. W. -mobile: +1 213 662-8320 -pager: +1 213 748-6665 -roomNumber: 9602 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tai Galloway,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tai Galloway -sn: Galloway -description: This is Tai Galloway's description -facsimileTelephoneNumber: +1 213 396-1720 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 425-1291 -title: Junior Administrative Dictator -userPassword: Password1 -uid: GallowaT -givenName: Tai -mail: GallowaT@dd438a1d29bd49c79f41cb0fe1c67139.bitwarden.com -carLicense: 0KE9W4 -departmentNumber: 5340 -employeeType: Employee -homePhone: +1 213 391-9989 -initials: T. G. -mobile: +1 213 912-3101 -pager: +1 213 895-6076 -roomNumber: 8547 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Souphalack Eisenach -sn: Eisenach -description: This is Souphalack Eisenach's description -facsimileTelephoneNumber: +1 206 423-5550 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 206 860-5876 -title: Associate Human Resources President -userPassword: Password1 -uid: EisenacS -givenName: Souphalack -mail: EisenacS@7a465c2775724e2fb0c9f1e78b183307.bitwarden.com -carLicense: UG96EW -departmentNumber: 7223 -employeeType: Contract -homePhone: +1 206 769-5970 -initials: S. E. -mobile: +1 206 950-6396 -pager: +1 206 401-4073 -roomNumber: 8598 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Parviz Kinsella,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parviz Kinsella -sn: Kinsella -description: This is Parviz Kinsella's description -facsimileTelephoneNumber: +1 408 394-9342 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 408 880-6572 -title: Chief Administrative Grunt -userPassword: Password1 -uid: KinsellP -givenName: Parviz -mail: KinsellP@353a4c977d99447e8bf6372a139196b2.bitwarden.com -carLicense: AY8RHN -departmentNumber: 4113 -employeeType: Contract -homePhone: +1 408 976-9093 -initials: P. K. -mobile: +1 408 142-4055 -pager: +1 408 723-8792 -roomNumber: 8229 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Madelyn Godo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelyn Godo -sn: Godo -description: This is Madelyn Godo's description -facsimileTelephoneNumber: +1 213 953-4630 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 449-6536 -title: Chief Peons Artist -userPassword: Password1 -uid: GodoM -givenName: Madelyn -mail: GodoM@fe29084b8c204f2e9f20c235a3bde591.bitwarden.com -carLicense: YIMDDW -departmentNumber: 8458 -employeeType: Contract -homePhone: +1 213 723-7714 -initials: M. G. -mobile: +1 213 431-8340 -pager: +1 213 364-4987 -roomNumber: 9626 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Willow Sorathia,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willow Sorathia -sn: Sorathia -description: This is Willow Sorathia's description -facsimileTelephoneNumber: +1 206 459-1608 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 480-4313 -title: Chief Management Evangelist -userPassword: Password1 -uid: SorathiW -givenName: Willow -mail: SorathiW@1bc1409c08584b65b922db79a968ffbf.bitwarden.com -carLicense: EFVOJW -departmentNumber: 7664 -employeeType: Normal -homePhone: +1 206 650-6935 -initials: W. S. -mobile: +1 206 202-4562 -pager: +1 206 150-6498 -roomNumber: 9033 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jonelle Rynders,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jonelle Rynders -sn: Rynders -description: This is Jonelle Rynders's description -facsimileTelephoneNumber: +1 510 461-3528 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 827-5673 -title: Junior Management Writer -userPassword: Password1 -uid: RyndersJ -givenName: Jonelle -mail: RyndersJ@407ea5ccd7404466aa1b36764aa40ace.bitwarden.com -carLicense: 94CVKX -departmentNumber: 9560 -employeeType: Employee -homePhone: +1 510 411-6437 -initials: J. R. -mobile: +1 510 557-1654 -pager: +1 510 602-8143 -roomNumber: 9658 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Avinash Vieiro,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avinash Vieiro -sn: Vieiro -description: This is Avinash Vieiro's description -facsimileTelephoneNumber: +1 213 186-1418 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 888-4141 -title: Associate Payroll Engineer -userPassword: Password1 -uid: VieiroA -givenName: Avinash -mail: VieiroA@26eb3cccbe694e88916be9fa6504534e.bitwarden.com -carLicense: NQ1CNC -departmentNumber: 5663 -employeeType: Contract -homePhone: +1 213 969-7790 -initials: A. V. -mobile: +1 213 978-3441 -pager: +1 213 154-5185 -roomNumber: 8789 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malvina Encomenderos -sn: Encomenderos -description: This is Malvina Encomenderos's description -facsimileTelephoneNumber: +1 510 451-5565 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 607-8908 -title: Junior Product Development Evangelist -userPassword: Password1 -uid: EncomenM -givenName: Malvina -mail: EncomenM@1bfbb076f362457cb073b7b05229490f.bitwarden.com -carLicense: GH3T7B -departmentNumber: 7260 -employeeType: Contract -homePhone: +1 510 959-5032 -initials: M. E. -mobile: +1 510 789-1843 -pager: +1 510 231-7502 -roomNumber: 8474 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mikhail Fssup,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mikhail Fssup -sn: Fssup -description: This is Mikhail Fssup's description -facsimileTelephoneNumber: +1 213 528-6092 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 213 433-6082 -title: Supreme Product Development President -userPassword: Password1 -uid: FssupM -givenName: Mikhail -mail: FssupM@fe8a88d43b8447679253a21f86c61479.bitwarden.com -carLicense: QBET4N -departmentNumber: 8287 -employeeType: Contract -homePhone: +1 213 976-2407 -initials: M. F. -mobile: +1 213 979-7509 -pager: +1 213 168-9705 -roomNumber: 9730 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kimmi Trent,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kimmi Trent -sn: Trent -description: This is Kimmi Trent's description -facsimileTelephoneNumber: +1 804 381-6350 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 317-1946 -title: Junior Payroll Developer -userPassword: Password1 -uid: TrentK -givenName: Kimmi -mail: TrentK@bd234f19e2034627848e6380646db915.bitwarden.com -carLicense: 5QVKJI -departmentNumber: 1553 -employeeType: Normal -homePhone: +1 804 479-3879 -initials: K. T. -mobile: +1 804 295-1530 -pager: +1 804 126-9514 -roomNumber: 9609 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Drucie Lindow,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drucie Lindow -sn: Lindow -description: This is Drucie Lindow's description -facsimileTelephoneNumber: +1 213 240-9607 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 808-2681 -title: Junior Administrative Janitor -userPassword: Password1 -uid: LindowD -givenName: Drucie -mail: LindowD@b8c647e356994d2abad4efb1121ac175.bitwarden.com -carLicense: YMW1W9 -departmentNumber: 5178 -employeeType: Employee -homePhone: +1 213 542-4752 -initials: D. L. -mobile: +1 213 399-8797 -pager: +1 213 651-4477 -roomNumber: 8892 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kristine Hogue,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristine Hogue -sn: Hogue -description: This is Kristine Hogue's description -facsimileTelephoneNumber: +1 510 140-3059 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 424-6188 -title: Chief Administrative President -userPassword: Password1 -uid: HogueK -givenName: Kristine -mail: HogueK@33a856f3df9c45df92aa949a40965338.bitwarden.com -carLicense: 78WY4E -departmentNumber: 3924 -employeeType: Employee -homePhone: +1 510 968-6593 -initials: K. H. -mobile: +1 510 466-1665 -pager: +1 510 695-8310 -roomNumber: 8549 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carmon Ghossein,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmon Ghossein -sn: Ghossein -description: This is Carmon Ghossein's description -facsimileTelephoneNumber: +1 804 541-3131 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 331-5705 -title: Chief Administrative Punk -userPassword: Password1 -uid: GhosseiC -givenName: Carmon -mail: GhosseiC@b1d81d4ed0934642a942a3e784da5fea.bitwarden.com -carLicense: FP9GSP -departmentNumber: 6917 -employeeType: Contract -homePhone: +1 804 944-8045 -initials: C. G. -mobile: +1 804 295-8485 -pager: +1 804 235-8714 -roomNumber: 9865 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eunice Bushell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eunice Bushell -sn: Bushell -description: This is Eunice Bushell's description -facsimileTelephoneNumber: +1 408 473-9071 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 675-1841 -title: Junior Payroll Madonna -userPassword: Password1 -uid: BushellE -givenName: Eunice -mail: BushellE@7ff42394bdb9413f95ee8654a86f2b98.bitwarden.com -carLicense: 5K42CB -departmentNumber: 6947 -employeeType: Normal -homePhone: +1 408 957-4849 -initials: E. B. -mobile: +1 408 535-2035 -pager: +1 408 779-4265 -roomNumber: 9618 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ailene Leander,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailene Leander -sn: Leander -description: This is Ailene Leander's description -facsimileTelephoneNumber: +1 415 998-2047 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 666-8936 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: LeanderA -givenName: Ailene -mail: LeanderA@38084e0586a041acbbdb2c1dfb35d2bb.bitwarden.com -carLicense: PFJBKI -departmentNumber: 9303 -employeeType: Contract -homePhone: +1 415 372-1371 -initials: A. L. -mobile: +1 415 147-1730 -pager: +1 415 932-4430 -roomNumber: 9218 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Truus Fodell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Truus Fodell -sn: Fodell -description: This is Truus Fodell's description -facsimileTelephoneNumber: +1 415 361-5994 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 360-8475 -title: Associate Product Development Technician -userPassword: Password1 -uid: FodellT -givenName: Truus -mail: FodellT@a5186e33e69446d1bb74fa25b1e42650.bitwarden.com -carLicense: J2CQBF -departmentNumber: 2563 -employeeType: Contract -homePhone: +1 415 311-4686 -initials: T. F. -mobile: +1 415 291-2341 -pager: +1 415 216-3440 -roomNumber: 9377 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zulema Clairmont,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zulema Clairmont -sn: Clairmont -description: This is Zulema Clairmont's description -facsimileTelephoneNumber: +1 206 435-5188 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 579-4709 -title: Associate Product Development Vice President -userPassword: Password1 -uid: ClairmoZ -givenName: Zulema -mail: ClairmoZ@789d3ef8deb24c20bce9e2915a466aef.bitwarden.com -carLicense: 5ALGM9 -departmentNumber: 7705 -employeeType: Contract -homePhone: +1 206 974-8519 -initials: Z. C. -mobile: +1 206 526-3863 -pager: +1 206 389-6397 -roomNumber: 9776 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Libor Wyble,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Libor Wyble -sn: Wyble -description: This is Libor Wyble's description -facsimileTelephoneNumber: +1 213 293-5117 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 514-4028 -title: Master Human Resources Mascot -userPassword: Password1 -uid: WybleL -givenName: Libor -mail: WybleL@984a4a5c1e144450ba42a88110cdd2a9.bitwarden.com -carLicense: A5B0LT -departmentNumber: 4549 -employeeType: Normal -homePhone: +1 213 340-5313 -initials: L. W. -mobile: +1 213 425-4529 -pager: +1 213 405-6577 -roomNumber: 9709 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Debera Shu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debera Shu -sn: Shu -description: This is Debera Shu's description -facsimileTelephoneNumber: +1 818 920-1956 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 564-1749 -title: Chief Administrative Dictator -userPassword: Password1 -uid: ShuD -givenName: Debera -mail: ShuD@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com -carLicense: RCTFLM -departmentNumber: 2184 -employeeType: Normal -homePhone: +1 818 983-3319 -initials: D. S. -mobile: +1 818 559-2804 -pager: +1 818 917-9881 -roomNumber: 9782 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vahe Seniuk -sn: Seniuk -description: This is Vahe Seniuk's description -facsimileTelephoneNumber: +1 408 577-9552 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 444-7067 -title: Junior Janitorial Director -userPassword: Password1 -uid: SeniukV -givenName: Vahe -mail: SeniukV@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com -carLicense: X9VH6Y -departmentNumber: 4379 -employeeType: Normal -homePhone: +1 408 205-5117 -initials: V. S. -mobile: +1 408 177-9698 -pager: +1 408 921-9157 -roomNumber: 8759 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Purvee Boulerice -sn: Boulerice -description: This is Purvee Boulerice's description -facsimileTelephoneNumber: +1 510 741-3179 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 715-2149 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: BouleriP -givenName: Purvee -mail: BouleriP@b778c029c2264b3089247adae57812bf.bitwarden.com -carLicense: 588BNC -departmentNumber: 9216 -employeeType: Normal -homePhone: +1 510 477-2406 -initials: P. B. -mobile: +1 510 416-9783 -pager: +1 510 430-7563 -roomNumber: 9908 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hailee Gould,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hailee Gould -sn: Gould -description: This is Hailee Gould's description -facsimileTelephoneNumber: +1 804 230-3232 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 801-3473 -title: Supreme Peons Dictator -userPassword: Password1 -uid: GouldH -givenName: Hailee -mail: GouldH@053cdccb3446469397047f2320d54d6c.bitwarden.com -carLicense: 7EK98W -departmentNumber: 9151 -employeeType: Employee -homePhone: +1 804 532-5174 -initials: H. G. -mobile: +1 804 780-8504 -pager: +1 804 598-6593 -roomNumber: 8695 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnneMarie Komatsu -sn: Komatsu -description: This is AnneMarie Komatsu's description -facsimileTelephoneNumber: +1 206 368-5955 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 971-7983 -title: Junior Human Resources Assistant -userPassword: Password1 -uid: KomatsuA -givenName: AnneMarie -mail: KomatsuA@54d64a829cf84f78beec4b49e0ecd1e5.bitwarden.com -carLicense: GV13RF -departmentNumber: 1796 -employeeType: Normal -homePhone: +1 206 371-7048 -initials: A. K. -mobile: +1 206 436-7264 -pager: +1 206 751-2588 -roomNumber: 8831 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Colm Coody,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colm Coody -sn: Coody -description: This is Colm Coody's description -facsimileTelephoneNumber: +1 408 549-6542 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 525-6095 -title: Master Human Resources Writer -userPassword: Password1 -uid: CoodyC -givenName: Colm -mail: CoodyC@801fded39bf64900acb4ebc42aa0afe0.bitwarden.com -carLicense: J2JIWU -departmentNumber: 3709 -employeeType: Normal -homePhone: +1 408 228-2311 -initials: C. C. -mobile: +1 408 680-1439 -pager: +1 408 335-8139 -roomNumber: 9454 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Orly Rahn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orly Rahn -sn: Rahn -description: This is Orly Rahn's description -facsimileTelephoneNumber: +1 804 766-7184 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 855-7097 -title: Associate Management Grunt -userPassword: Password1 -uid: RahnO -givenName: Orly -mail: RahnO@b25e09cbf8714d1293b2097e25927336.bitwarden.com -carLicense: AWKCH9 -departmentNumber: 5563 -employeeType: Normal -homePhone: +1 804 106-8951 -initials: O. R. -mobile: +1 804 987-8924 -pager: +1 804 828-1597 -roomNumber: 9961 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dana Ashurkoff -sn: Ashurkoff -description: This is Dana Ashurkoff's description -facsimileTelephoneNumber: +1 510 649-6394 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 510 507-9193 -title: Master Human Resources Manager -userPassword: Password1 -uid: AshurkoD -givenName: Dana -mail: AshurkoD@169fcab935f542c68b8a72c59cfcd9c5.bitwarden.com -carLicense: YBJH7Y -departmentNumber: 1354 -employeeType: Employee -homePhone: +1 510 922-2104 -initials: D. A. -mobile: +1 510 755-6245 -pager: +1 510 208-9908 -roomNumber: 8340 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Glornia Hage,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glornia Hage -sn: Hage -description: This is Glornia Hage's description -facsimileTelephoneNumber: +1 510 414-9995 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 932-1557 -title: Chief Janitorial President -userPassword: Password1 -uid: HageG -givenName: Glornia -mail: HageG@64e4540aae0b4842a2b0399c54e9799c.bitwarden.com -carLicense: LHF7DH -departmentNumber: 8182 -employeeType: Normal -homePhone: +1 510 754-1202 -initials: G. H. -mobile: +1 510 746-8590 -pager: +1 510 797-2957 -roomNumber: 9251 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Desiree Morini,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desiree Morini -sn: Morini -description: This is Desiree Morini's description -facsimileTelephoneNumber: +1 206 174-5703 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 203-5655 -title: Associate Product Testing Manager -userPassword: Password1 -uid: MoriniD -givenName: Desiree -mail: MoriniD@620a0deb741d4dc4a818615fd1732275.bitwarden.com -carLicense: T5A96K -departmentNumber: 7297 -employeeType: Employee -homePhone: +1 206 244-3012 -initials: D. M. -mobile: +1 206 624-9634 -pager: +1 206 424-9556 -roomNumber: 9642 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vijya Sorensen -sn: Sorensen -description: This is Vijya Sorensen's description -facsimileTelephoneNumber: +1 510 803-9789 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 538-7661 -title: Master Human Resources Manager -userPassword: Password1 -uid: SorenseV -givenName: Vijya -mail: SorenseV@449193a8d6284b519708a047f998c36e.bitwarden.com -carLicense: PSWURV -departmentNumber: 2974 -employeeType: Employee -homePhone: +1 510 351-1705 -initials: V. S. -mobile: +1 510 524-4979 -pager: +1 510 626-7313 -roomNumber: 9207 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crawford Stensrud -sn: Stensrud -description: This is Crawford Stensrud's description -facsimileTelephoneNumber: +1 510 361-2548 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 275-5579 -title: Chief Janitorial Developer -userPassword: Password1 -uid: StensruC -givenName: Crawford -mail: StensruC@37b876b4a91540b4b71770c7a49beee8.bitwarden.com -carLicense: DPT5HY -departmentNumber: 6906 -employeeType: Normal -homePhone: +1 510 265-8731 -initials: C. S. -mobile: +1 510 880-5255 -pager: +1 510 582-7665 -roomNumber: 9258 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Laina McKibbon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laina McKibbon -sn: McKibbon -description: This is Laina McKibbon's description -facsimileTelephoneNumber: +1 206 134-2465 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 206 492-8565 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: McKibboL -givenName: Laina -mail: McKibboL@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com -carLicense: O0QSUP -departmentNumber: 7725 -employeeType: Employee -homePhone: +1 206 614-5102 -initials: L. M. -mobile: +1 206 147-9501 -pager: +1 206 221-9717 -roomNumber: 8861 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Peach McGlynn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peach McGlynn -sn: McGlynn -description: This is Peach McGlynn's description -facsimileTelephoneNumber: +1 818 309-1981 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 751-7977 -title: Supreme Janitorial Punk -userPassword: Password1 -uid: McGlynnP -givenName: Peach -mail: McGlynnP@e9b1eab0ad46429f9b14fc88c1e1a1ce.bitwarden.com -carLicense: A8ACK2 -departmentNumber: 7645 -employeeType: Contract -homePhone: +1 818 361-5457 -initials: P. M. -mobile: +1 818 125-5707 -pager: +1 818 364-6529 -roomNumber: 9421 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ines Younan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ines Younan -sn: Younan -description: This is Ines Younan's description -facsimileTelephoneNumber: +1 408 814-6739 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 351-1645 -title: Supreme Management Admin -userPassword: Password1 -uid: YounanI -givenName: Ines -mail: YounanI@522cd51783f94d36bac3d92521c9b231.bitwarden.com -carLicense: 2LB1K7 -departmentNumber: 1123 -employeeType: Normal -homePhone: +1 408 892-7096 -initials: I. Y. -mobile: +1 408 684-6907 -pager: +1 408 426-2427 -roomNumber: 8558 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jai Junkie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jai Junkie -sn: Junkie -description: This is Jai Junkie's description -facsimileTelephoneNumber: +1 510 315-5905 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 717-2942 -title: Associate Janitorial Warrior -userPassword: Password1 -uid: JunkieJ -givenName: Jai -mail: JunkieJ@19a8f5526a554f0cb06e7cba3da0c581.bitwarden.com -carLicense: QIGXWL -departmentNumber: 1002 -employeeType: Employee -homePhone: +1 510 584-5632 -initials: J. J. -mobile: +1 510 497-4973 -pager: +1 510 924-4138 -roomNumber: 9357 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kokkhiang Outram -sn: Outram -description: This is Kokkhiang Outram's description -facsimileTelephoneNumber: +1 408 421-4095 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 108-4058 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: OutramK -givenName: Kokkhiang -mail: OutramK@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com -carLicense: A8DUEF -departmentNumber: 9092 -employeeType: Normal -homePhone: +1 408 719-2646 -initials: K. O. -mobile: +1 408 373-3483 -pager: +1 408 140-3373 -roomNumber: 9295 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ping Lombrink,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ping Lombrink -sn: Lombrink -description: This is Ping Lombrink's description -facsimileTelephoneNumber: +1 510 440-9706 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 648-5253 -title: Junior Management Czar -userPassword: Password1 -uid: LombrinP -givenName: Ping -mail: LombrinP@a8b360eab13a4f829ec0541714c28aa0.bitwarden.com -carLicense: 6YN561 -departmentNumber: 6616 -employeeType: Normal -homePhone: +1 510 653-6449 -initials: P. L. -mobile: +1 510 665-7714 -pager: +1 510 499-9473 -roomNumber: 9731 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Georgianne Colwell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgianne Colwell -sn: Colwell -description: This is Georgianne Colwell's description -facsimileTelephoneNumber: +1 804 366-3127 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 421-2163 -title: Supreme Product Development Sales Rep -userPassword: Password1 -uid: ColwellG -givenName: Georgianne -mail: ColwellG@73644206f22948e88cda9a77b8ecb4e1.bitwarden.com -carLicense: 6NGPMC -departmentNumber: 6325 -employeeType: Contract -homePhone: +1 804 874-3831 -initials: G. C. -mobile: +1 804 943-2502 -pager: +1 804 786-8087 -roomNumber: 9950 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bryant Fronsee,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryant Fronsee -sn: Fronsee -description: This is Bryant Fronsee's description -facsimileTelephoneNumber: +1 804 619-5102 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 796-2594 -title: Master Administrative Warrior -userPassword: Password1 -uid: FronseeB -givenName: Bryant -mail: FronseeB@207f06c431db4f90babc987173636b40.bitwarden.com -carLicense: 212ATL -departmentNumber: 4761 -employeeType: Employee -homePhone: +1 804 269-3106 -initials: B. F. -mobile: +1 804 930-8279 -pager: +1 804 630-9927 -roomNumber: 8753 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Amata Funderburg,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amata Funderburg -sn: Funderburg -description: This is Amata Funderburg's description -facsimileTelephoneNumber: +1 804 880-9186 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 855-9177 -title: Master Administrative Mascot -userPassword: Password1 -uid: FunderbA -givenName: Amata -mail: FunderbA@01c954b9634144e3b54bd66a31610430.bitwarden.com -carLicense: X9R9YJ -departmentNumber: 1435 -employeeType: Contract -homePhone: +1 804 758-9455 -initials: A. F. -mobile: +1 804 550-9844 -pager: +1 804 331-8027 -roomNumber: 8483 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Camila Nason,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camila Nason -sn: Nason -description: This is Camila Nason's description -facsimileTelephoneNumber: +1 415 380-1578 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 363-4329 -title: Chief Peons Technician -userPassword: Password1 -uid: NasonC -givenName: Camila -mail: NasonC@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com -carLicense: RU81F0 -departmentNumber: 8863 -employeeType: Employee -homePhone: +1 415 322-7447 -initials: C. N. -mobile: +1 415 950-9424 -pager: +1 415 115-6959 -roomNumber: 8246 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eldon ONeil,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eldon ONeil -sn: ONeil -description: This is Eldon ONeil's description -facsimileTelephoneNumber: +1 818 422-9878 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 399-6148 -title: Junior Product Testing Dictator -userPassword: Password1 -uid: ONeilE -givenName: Eldon -mail: ONeilE@38e93300da7643e5ac4629316f76753a.bitwarden.com -carLicense: JB17CK -departmentNumber: 3868 -employeeType: Normal -homePhone: +1 818 858-2573 -initials: E. O. -mobile: +1 818 853-8191 -pager: +1 818 818-5477 -roomNumber: 9266 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terrie Adkinson -sn: Adkinson -description: This is Terrie Adkinson's description -facsimileTelephoneNumber: +1 818 460-1293 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 114-2401 -title: Master Janitorial Visionary -userPassword: Password1 -uid: AdkinsoT -givenName: Terrie -mail: AdkinsoT@a6a05053959845178f0fed6cc2cd11a0.bitwarden.com -carLicense: 015K7Q -departmentNumber: 4058 -employeeType: Employee -homePhone: +1 818 205-8406 -initials: T. A. -mobile: +1 818 103-7123 -pager: +1 818 731-7454 -roomNumber: 9499 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Manda Bins,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manda Bins -sn: Bins -description: This is Manda Bins's description -facsimileTelephoneNumber: +1 818 707-5311 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 818 604-4796 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: BinsM -givenName: Manda -mail: BinsM@6703f1d29b0341659ab853ef2d4c41f9.bitwarden.com -carLicense: 2R1QVQ -departmentNumber: 9091 -employeeType: Contract -homePhone: +1 818 922-7607 -initials: M. B. -mobile: +1 818 611-9670 -pager: +1 818 972-8542 -roomNumber: 9295 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zaven Pizzimenti -sn: Pizzimenti -description: This is Zaven Pizzimenti's description -facsimileTelephoneNumber: +1 213 157-6737 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 593-9150 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: PizzimeZ -givenName: Zaven -mail: PizzimeZ@4a145fc9121947ce8b995d7a67929715.bitwarden.com -carLicense: LN6DHS -departmentNumber: 4937 -employeeType: Employee -homePhone: +1 213 138-1092 -initials: Z. P. -mobile: +1 213 907-1931 -pager: +1 213 599-9072 -roomNumber: 8836 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joete Thieken,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joete Thieken -sn: Thieken -description: This is Joete Thieken's description -facsimileTelephoneNumber: +1 213 761-9458 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 496-5606 -title: Master Administrative Engineer -userPassword: Password1 -uid: ThiekenJ -givenName: Joete -mail: ThiekenJ@5d35d83c207d418fad061afb7ba230bf.bitwarden.com -carLicense: LHFXO8 -departmentNumber: 2760 -employeeType: Employee -homePhone: +1 213 663-1261 -initials: J. T. -mobile: +1 213 932-9292 -pager: +1 213 457-3646 -roomNumber: 8003 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nurettin Parisen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nurettin Parisen -sn: Parisen -description: This is Nurettin Parisen's description -facsimileTelephoneNumber: +1 408 418-4809 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 116-6723 -title: Chief Product Development Dictator -userPassword: Password1 -uid: ParisenN -givenName: Nurettin -mail: ParisenN@7bfec04dd67a4c9388bb15752591a642.bitwarden.com -carLicense: 13FMA2 -departmentNumber: 7652 -employeeType: Contract -homePhone: +1 408 250-8444 -initials: N. P. -mobile: +1 408 423-8503 -pager: +1 408 787-9291 -roomNumber: 9707 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lester Leonida,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lester Leonida -sn: Leonida -description: This is Lester Leonida's description -facsimileTelephoneNumber: +1 408 407-5243 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 238-7208 -title: Master Administrative Dictator -userPassword: Password1 -uid: LeonidaL -givenName: Lester -mail: LeonidaL@39d704426feb42afa93cfa3dd5e7e000.bitwarden.com -carLicense: 1YMUC5 -departmentNumber: 8148 -employeeType: Employee -homePhone: +1 408 670-3710 -initials: L. L. -mobile: +1 408 144-3083 -pager: +1 408 508-7197 -roomNumber: 8942 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mira Aczel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mira Aczel -sn: Aczel -description: This is Mira Aczel's description -facsimileTelephoneNumber: +1 804 470-9816 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 804 126-2181 -title: Associate Product Development Technician -userPassword: Password1 -uid: AczelM -givenName: Mira -mail: AczelM@3adabc9eed2948c7b0e84ce77e7ad7d6.bitwarden.com -carLicense: ODERJC -departmentNumber: 6349 -employeeType: Normal -homePhone: +1 804 675-3693 -initials: M. A. -mobile: +1 804 410-1442 -pager: +1 804 977-5486 -roomNumber: 9463 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Takehiko Malizia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Takehiko Malizia -sn: Malizia -description: This is Takehiko Malizia's description -facsimileTelephoneNumber: +1 408 321-8521 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 596-3396 -title: Supreme Product Development Janitor -userPassword: Password1 -uid: MaliziaT -givenName: Takehiko -mail: MaliziaT@9e33462dc38a47268f5ccb5aff17b01e.bitwarden.com -carLicense: FBR4PI -departmentNumber: 2221 -employeeType: Employee -homePhone: +1 408 516-7529 -initials: T. M. -mobile: +1 408 815-9060 -pager: +1 408 333-7077 -roomNumber: 9885 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Niel Vickers,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niel Vickers -sn: Vickers -description: This is Niel Vickers's description -facsimileTelephoneNumber: +1 206 738-2287 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 206 451-9544 -title: Chief Human Resources Director -userPassword: Password1 -uid: VickersN -givenName: Niel -mail: VickersN@e3a398150b8f4132954080a42a622e3d.bitwarden.com -carLicense: 6OV5NK -departmentNumber: 9020 -employeeType: Contract -homePhone: +1 206 625-9737 -initials: N. V. -mobile: +1 206 849-6111 -pager: +1 206 446-7374 -roomNumber: 8347 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Letta Baltodano,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Letta Baltodano -sn: Baltodano -description: This is Letta Baltodano's description -facsimileTelephoneNumber: +1 510 517-7293 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 924-8112 -title: Junior Management Admin -userPassword: Password1 -uid: BaltodaL -givenName: Letta -mail: BaltodaL@ffa895bc8daa4c0f81a78140a99f5460.bitwarden.com -carLicense: 21VW7B -departmentNumber: 4679 -employeeType: Employee -homePhone: +1 510 301-5980 -initials: L. B. -mobile: +1 510 745-3083 -pager: +1 510 118-1276 -roomNumber: 8018 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=De Moneypenny,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: De Moneypenny -sn: Moneypenny -description: This is De Moneypenny's description -facsimileTelephoneNumber: +1 415 645-6258 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 987-1192 -title: Chief Payroll Artist -userPassword: Password1 -uid: MoneypeD -givenName: De -mail: MoneypeD@a87ac40ce2a547c8a852f41a3d6dfeae.bitwarden.com -carLicense: CHQCRQ -departmentNumber: 9336 -employeeType: Normal -homePhone: +1 415 689-8668 -initials: D. M. -mobile: +1 415 282-5022 -pager: +1 415 160-4643 -roomNumber: 9757 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dyke Suh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyke Suh -sn: Suh -description: This is Dyke Suh's description -facsimileTelephoneNumber: +1 213 736-6302 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 213 836-3291 -title: Junior Administrative Stooge -userPassword: Password1 -uid: SuhD -givenName: Dyke -mail: SuhD@1e2b67f93f814f68b5e4aa746670a4e8.bitwarden.com -carLicense: TJRTTJ -departmentNumber: 6087 -employeeType: Normal -homePhone: +1 213 677-7148 -initials: D. S. -mobile: +1 213 789-3039 -pager: +1 213 498-1488 -roomNumber: 8443 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Barrie Botting,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barrie Botting -sn: Botting -description: This is Barrie Botting's description -facsimileTelephoneNumber: +1 206 451-5123 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 317-1075 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: BottingB -givenName: Barrie -mail: BottingB@ea26d044205a42efb212069b102bfd27.bitwarden.com -carLicense: X2OBH3 -departmentNumber: 1253 -employeeType: Employee -homePhone: +1 206 570-5594 -initials: B. B. -mobile: +1 206 133-9591 -pager: +1 206 667-5185 -roomNumber: 8600 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anantha Uhl,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anantha Uhl -sn: Uhl -description: This is Anantha Uhl's description -facsimileTelephoneNumber: +1 206 529-9612 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 249-6938 -title: Junior Janitorial Technician -userPassword: Password1 -uid: UhlA -givenName: Anantha -mail: UhlA@75d6e7c6ef474c5e97f655497c047d1f.bitwarden.com -carLicense: 78OQV7 -departmentNumber: 7717 -employeeType: Contract -homePhone: +1 206 671-9917 -initials: A. U. -mobile: +1 206 450-4542 -pager: +1 206 659-7395 -roomNumber: 9553 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kettie Lanier,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kettie Lanier -sn: Lanier -description: This is Kettie Lanier's description -facsimileTelephoneNumber: +1 804 177-9924 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 298-8031 -title: Associate Management Janitor -userPassword: Password1 -uid: LanierK -givenName: Kettie -mail: LanierK@dc21b90d233e4262bb0c379c7e3b2a15.bitwarden.com -carLicense: AIPTTH -departmentNumber: 6664 -employeeType: Employee -homePhone: +1 804 524-3931 -initials: K. L. -mobile: +1 804 531-7811 -pager: +1 804 188-3338 -roomNumber: 9188 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trina SmrkeSurbey -sn: SmrkeSurbey -description: This is Trina SmrkeSurbey's description -facsimileTelephoneNumber: +1 804 890-1157 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 804 314-8432 -title: Associate Peons Visionary -userPassword: Password1 -uid: SmrkeSuT -givenName: Trina -mail: SmrkeSuT@68cdf7c41dd140debe34d656d3cf57b2.bitwarden.com -carLicense: LJH96K -departmentNumber: 8132 -employeeType: Employee -homePhone: +1 804 284-4490 -initials: T. S. -mobile: +1 804 970-1462 -pager: +1 804 543-8622 -roomNumber: 9275 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=LianHong Grills,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LianHong Grills -sn: Grills -description: This is LianHong Grills's description -facsimileTelephoneNumber: +1 510 439-7266 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 707-6620 -title: Master Administrative Grunt -userPassword: Password1 -uid: GrillsL -givenName: LianHong -mail: GrillsL@c3999c476a6d4270acb03c758687a2bc.bitwarden.com -carLicense: ATRE8I -departmentNumber: 1969 -employeeType: Contract -homePhone: +1 510 953-9397 -initials: L. G. -mobile: +1 510 673-8247 -pager: +1 510 384-3281 -roomNumber: 9647 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Charlean Leo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charlean Leo -sn: Leo -description: This is Charlean Leo's description -facsimileTelephoneNumber: +1 510 625-5013 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 749-1520 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: LeoC -givenName: Charlean -mail: LeoC@b08a31b6db4d4d2a9a1e1fd91f822e32.bitwarden.com -carLicense: 7XCCC6 -departmentNumber: 7787 -employeeType: Contract -homePhone: +1 510 293-5708 -initials: C. L. -mobile: +1 510 325-2751 -pager: +1 510 987-7134 -roomNumber: 9108 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gilbert Howerton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilbert Howerton -sn: Howerton -description: This is Gilbert Howerton's description -facsimileTelephoneNumber: +1 213 141-7743 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 570-2002 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: HowertoG -givenName: Gilbert -mail: HowertoG@7dc5b62cf93648d48eddbda676ec7c2b.bitwarden.com -carLicense: UIEJTA -departmentNumber: 1992 -employeeType: Employee -homePhone: +1 213 746-4810 -initials: G. H. -mobile: +1 213 967-9093 -pager: +1 213 801-6376 -roomNumber: 9059 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koko Kasumovich -sn: Kasumovich -description: This is Koko Kasumovich's description -facsimileTelephoneNumber: +1 415 980-1741 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 415 377-5123 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: KasumovK -givenName: Koko -mail: KasumovK@ea0a27f30cde484786db6ba4690325bc.bitwarden.com -carLicense: QGLNPX -departmentNumber: 5029 -employeeType: Contract -homePhone: +1 415 486-5406 -initials: K. K. -mobile: +1 415 743-2944 -pager: +1 415 111-9485 -roomNumber: 9882 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Loralie Balutis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loralie Balutis -sn: Balutis -description: This is Loralie Balutis's description -facsimileTelephoneNumber: +1 415 516-8471 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 911-2638 -title: Supreme Peons Mascot -userPassword: Password1 -uid: BalutisL -givenName: Loralie -mail: BalutisL@00996b193c5d4d3d9dd9d82c9ad7cc6a.bitwarden.com -carLicense: 3VPXQ3 -departmentNumber: 6694 -employeeType: Normal -homePhone: +1 415 158-8976 -initials: L. B. -mobile: +1 415 807-9143 -pager: +1 415 273-9073 -roomNumber: 8116 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Harri Wortman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harri Wortman -sn: Wortman -description: This is Harri Wortman's description -facsimileTelephoneNumber: +1 415 394-7299 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 618-8889 -title: Master Management Artist -userPassword: Password1 -uid: WortmanH -givenName: Harri -mail: WortmanH@3956b0c83ae444e7940e65fc8c4220d5.bitwarden.com -carLicense: 8GW9NK -departmentNumber: 7494 -employeeType: Contract -homePhone: +1 415 402-6821 -initials: H. W. -mobile: +1 415 160-1821 -pager: +1 415 213-6322 -roomNumber: 8238 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnesse Klaudt -sn: Klaudt -description: This is Agnesse Klaudt's description -facsimileTelephoneNumber: +1 206 182-9343 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 585-4845 -title: Supreme Product Development Architect -userPassword: Password1 -uid: KlaudtA -givenName: Agnesse -mail: KlaudtA@534eab5a672047c98d17e83c1921c458.bitwarden.com -carLicense: NNYQRR -departmentNumber: 6407 -employeeType: Employee -homePhone: +1 206 472-5387 -initials: A. K. -mobile: +1 206 346-2523 -pager: +1 206 952-8088 -roomNumber: 8666 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lorine Grund,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorine Grund -sn: Grund -description: This is Lorine Grund's description -facsimileTelephoneNumber: +1 206 732-3007 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 694-4108 -title: Supreme Management Figurehead -userPassword: Password1 -uid: GrundL -givenName: Lorine -mail: GrundL@ef0c8bc927fc4b19a8b12d396a49fa25.bitwarden.com -carLicense: MUMEBS -departmentNumber: 1437 -employeeType: Normal -homePhone: +1 206 984-5019 -initials: L. G. -mobile: +1 206 699-9107 -pager: +1 206 265-8117 -roomNumber: 9863 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lesley Coyne,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lesley Coyne -sn: Coyne -description: This is Lesley Coyne's description -facsimileTelephoneNumber: +1 408 572-9205 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 401-1849 -title: Chief Janitorial Admin -userPassword: Password1 -uid: CoyneL -givenName: Lesley -mail: CoyneL@93251ab1fec549f1aaacc3bfbaff52ee.bitwarden.com -carLicense: JT001J -departmentNumber: 3920 -employeeType: Employee -homePhone: +1 408 288-3756 -initials: L. C. -mobile: +1 408 260-2691 -pager: +1 408 782-9573 -roomNumber: 8980 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nelleke Lind,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nelleke Lind -sn: Lind -description: This is Nelleke Lind's description -facsimileTelephoneNumber: +1 415 905-1569 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 122-4437 -title: Master Management Director -userPassword: Password1 -uid: LindN -givenName: Nelleke -mail: LindN@c27a22599aa849ec8d6e0057e5fc89b1.bitwarden.com -carLicense: RG0YT8 -departmentNumber: 7061 -employeeType: Employee -homePhone: +1 415 778-6880 -initials: N. L. -mobile: +1 415 536-6647 -pager: +1 415 693-8512 -roomNumber: 9379 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bam Raschig,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bam Raschig -sn: Raschig -description: This is Bam Raschig's description -facsimileTelephoneNumber: +1 206 835-4096 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 533-8642 -title: Junior Administrative Manager -userPassword: Password1 -uid: RaschigB -givenName: Bam -mail: RaschigB@a8a3f1161ef54158b589de8fea58b91e.bitwarden.com -carLicense: TW7NSE -departmentNumber: 6308 -employeeType: Normal -homePhone: +1 206 394-1219 -initials: B. R. -mobile: +1 206 294-4623 -pager: +1 206 205-2591 -roomNumber: 8895 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nicoline Gelo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicoline Gelo -sn: Gelo -description: This is Nicoline Gelo's description -facsimileTelephoneNumber: +1 804 751-8681 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 896-4023 -title: Chief Peons Janitor -userPassword: Password1 -uid: GeloN -givenName: Nicoline -mail: GeloN@ac21668d43ba4692aab89cc64a9b9192.bitwarden.com -carLicense: 15F2JD -departmentNumber: 6789 -employeeType: Normal -homePhone: +1 804 138-9431 -initials: N. G. -mobile: +1 804 635-4261 -pager: +1 804 267-2858 -roomNumber: 9316 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Brigid Austin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigid Austin -sn: Austin -description: This is Brigid Austin's description -facsimileTelephoneNumber: +1 510 963-2349 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 227-9066 -title: Chief Administrative Czar -userPassword: Password1 -uid: AustinB -givenName: Brigid -mail: AustinB@bb451e9caafd4e81b5fb79f1aea3830a.bitwarden.com -carLicense: LUE2E9 -departmentNumber: 5443 -employeeType: Contract -homePhone: +1 510 226-7638 -initials: B. A. -mobile: +1 510 612-6584 -pager: +1 510 556-2314 -roomNumber: 8100 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosamund Lavallee -sn: Lavallee -description: This is Rosamund Lavallee's description -facsimileTelephoneNumber: +1 818 557-9278 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 829-3397 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: LavalleR -givenName: Rosamund -mail: LavalleR@645458196d8d458186860230f1cc27c6.bitwarden.com -carLicense: QC1SMQ -departmentNumber: 1381 -employeeType: Employee -homePhone: +1 818 718-4811 -initials: R. L. -mobile: +1 818 953-9200 -pager: +1 818 166-8402 -roomNumber: 9036 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Farooq Farquhar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farooq Farquhar -sn: Farquhar -description: This is Farooq Farquhar's description -facsimileTelephoneNumber: +1 206 409-6389 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 304-6599 -title: Junior Administrative Mascot -userPassword: Password1 -uid: FarquhaF -givenName: Farooq -mail: FarquhaF@9853bdab18e6473e80d7e44abcd07317.bitwarden.com -carLicense: NMPYKG -departmentNumber: 1682 -employeeType: Employee -homePhone: +1 206 540-1661 -initials: F. F. -mobile: +1 206 165-2004 -pager: +1 206 924-2921 -roomNumber: 8918 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Brandy Strauss,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandy Strauss -sn: Strauss -description: This is Brandy Strauss's description -facsimileTelephoneNumber: +1 804 586-6458 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 299-2439 -title: Junior Management Artist -userPassword: Password1 -uid: StraussB -givenName: Brandy -mail: StraussB@08b70f178d5240d696c9850eb93d6f02.bitwarden.com -carLicense: M4H3EQ -departmentNumber: 3394 -employeeType: Normal -homePhone: +1 804 676-3400 -initials: B. S. -mobile: +1 804 267-5186 -pager: +1 804 692-8653 -roomNumber: 8690 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jake McGorman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jake McGorman -sn: McGorman -description: This is Jake McGorman's description -facsimileTelephoneNumber: +1 804 208-6231 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 124-8753 -title: Associate Management Figurehead -userPassword: Password1 -uid: McGormaJ -givenName: Jake -mail: McGormaJ@f8bd0fd0b11340a59263ead33f8063a8.bitwarden.com -carLicense: 0RTEA3 -departmentNumber: 4239 -employeeType: Contract -homePhone: +1 804 592-2323 -initials: J. M. -mobile: +1 804 243-3636 -pager: +1 804 521-1156 -roomNumber: 9480 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kai Mastenbrook -sn: Mastenbrook -description: This is Kai Mastenbrook's description -facsimileTelephoneNumber: +1 510 103-2383 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 705-2598 -title: Associate Administrative Director -userPassword: Password1 -uid: MastenbK -givenName: Kai -mail: MastenbK@b06b941e5d1147e188fc4663bd226c1c.bitwarden.com -carLicense: 55T5RG -departmentNumber: 8535 -employeeType: Employee -homePhone: +1 510 228-5444 -initials: K. M. -mobile: +1 510 860-8224 -pager: +1 510 848-1162 -roomNumber: 8523 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ruchi Furst,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruchi Furst -sn: Furst -description: This is Ruchi Furst's description -facsimileTelephoneNumber: +1 818 559-7934 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 370-7008 -title: Master Janitorial Admin -userPassword: Password1 -uid: FurstR -givenName: Ruchi -mail: FurstR@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com -carLicense: 5GHKHR -departmentNumber: 3957 -employeeType: Contract -homePhone: +1 818 394-3885 -initials: R. F. -mobile: +1 818 883-9615 -pager: +1 818 728-7656 -roomNumber: 9298 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joann Truffer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joann Truffer -sn: Truffer -description: This is Joann Truffer's description -facsimileTelephoneNumber: +1 213 444-6646 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 776-7020 -title: Chief Administrative President -userPassword: Password1 -uid: TrufferJ -givenName: Joann -mail: TrufferJ@f0d1676d1c42478dbb4656ca35d0b50c.bitwarden.com -carLicense: AGJKXO -departmentNumber: 4908 -employeeType: Contract -homePhone: +1 213 130-9222 -initials: J. T. -mobile: +1 213 469-4018 -pager: +1 213 781-7131 -roomNumber: 8599 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Anton Chao,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anton Chao -sn: Chao -description: This is Anton Chao's description -facsimileTelephoneNumber: +1 213 313-6358 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 522-1603 -title: Junior Payroll Visionary -userPassword: Password1 -uid: ChaoA -givenName: Anton -mail: ChaoA@fc85c5eabc344595a2c61eb7ac58789c.bitwarden.com -carLicense: 6A6O88 -departmentNumber: 8472 -employeeType: Contract -homePhone: +1 213 947-2448 -initials: A. C. -mobile: +1 213 726-8052 -pager: +1 213 682-2289 -roomNumber: 9277 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cacilie Murnaghan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cacilie Murnaghan -sn: Murnaghan -description: This is Cacilie Murnaghan's description -facsimileTelephoneNumber: +1 408 177-2687 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 386-1991 -title: Master Management Architect -userPassword: Password1 -uid: MurnaghC -givenName: Cacilie -mail: MurnaghC@63e60d8db42545d0aa6e5c384a01705d.bitwarden.com -carLicense: 06D12T -departmentNumber: 3499 -employeeType: Normal -homePhone: +1 408 234-6665 -initials: C. M. -mobile: +1 408 116-4143 -pager: +1 408 960-8842 -roomNumber: 8676 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ilene Magri,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilene Magri -sn: Magri -description: This is Ilene Magri's description -facsimileTelephoneNumber: +1 206 974-9124 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 389-1701 -title: Supreme Management Janitor -userPassword: Password1 -uid: MagriI -givenName: Ilene -mail: MagriI@c2c92a5abf3749b38d91e565e28d400a.bitwarden.com -carLicense: GD9QUB -departmentNumber: 5310 -employeeType: Employee -homePhone: +1 206 319-3815 -initials: I. M. -mobile: +1 206 275-1416 -pager: +1 206 202-1933 -roomNumber: 9537 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haggar Supervisor -sn: Supervisor -description: This is Haggar Supervisor's description -facsimileTelephoneNumber: +1 818 232-2046 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 818 844-8916 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: SuperviH -givenName: Haggar -mail: SuperviH@bd3dedcd93c84c0aa4af62b582b04e9d.bitwarden.com -carLicense: 4C2TT4 -departmentNumber: 9065 -employeeType: Normal -homePhone: +1 818 653-9199 -initials: H. S. -mobile: +1 818 968-6071 -pager: +1 818 889-3475 -roomNumber: 9763 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mabelle Bannard -sn: Bannard -description: This is Mabelle Bannard's description -facsimileTelephoneNumber: +1 804 796-7154 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 742-6296 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: BannardM -givenName: Mabelle -mail: BannardM@8edc6a8ce7724275bb989e481ab8171b.bitwarden.com -carLicense: PKC4N4 -departmentNumber: 2931 -employeeType: Normal -homePhone: +1 804 110-1683 -initials: M. B. -mobile: +1 804 346-2833 -pager: +1 804 517-2941 -roomNumber: 9710 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kiele Willis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiele Willis -sn: Willis -description: This is Kiele Willis's description -facsimileTelephoneNumber: +1 408 191-7837 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 408 723-6151 -title: Master Janitorial President -userPassword: Password1 -uid: WillisK -givenName: Kiele -mail: WillisK@c3326a8bbe8a452eb1cd54b6abb6e1f0.bitwarden.com -carLicense: HXSJMM -departmentNumber: 6038 -employeeType: Normal -homePhone: +1 408 596-8608 -initials: K. W. -mobile: +1 408 794-6214 -pager: +1 408 762-4503 -roomNumber: 9390 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Blondie MMail,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blondie MMail -sn: MMail -description: This is Blondie MMail's description -facsimileTelephoneNumber: +1 804 575-7708 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 804 177-4013 -title: Chief Janitorial Artist -userPassword: Password1 -uid: MMailB -givenName: Blondie -mail: MMailB@fce4c1e9f1a6429083bed21e1e54a500.bitwarden.com -carLicense: LPTFRE -departmentNumber: 9834 -employeeType: Contract -homePhone: +1 804 232-4095 -initials: B. M. -mobile: +1 804 720-6445 -pager: +1 804 317-4847 -roomNumber: 8097 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JFrancois KohalmiHill -sn: KohalmiHill -description: This is JFrancois KohalmiHill's description -facsimileTelephoneNumber: +1 804 264-9440 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 806-7777 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: KohalmiJ -givenName: JFrancois -mail: KohalmiJ@67f0c4cb093d45e88db73275893310b8.bitwarden.com -carLicense: BEKWKE -departmentNumber: 8850 -employeeType: Normal -homePhone: +1 804 562-3801 -initials: J. K. -mobile: +1 804 998-9722 -pager: +1 804 215-3257 -roomNumber: 8038 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yevette Kantor,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yevette Kantor -sn: Kantor -description: This is Yevette Kantor's description -facsimileTelephoneNumber: +1 408 456-7715 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 713-6575 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: KantorY -givenName: Yevette -mail: KantorY@0402555d9f67459e90e5fb987f132859.bitwarden.com -carLicense: TSCF7P -departmentNumber: 2835 -employeeType: Contract -homePhone: +1 408 348-3718 -initials: Y. K. -mobile: +1 408 633-2679 -pager: +1 408 437-6001 -roomNumber: 9169 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rocco Umeeda -sn: Umeeda -description: This is Rocco Umeeda's description -facsimileTelephoneNumber: +1 408 212-8331 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 408 341-9911 -title: Supreme Janitorial Developer -userPassword: Password1 -uid: UmeedaR -givenName: Rocco -mail: UmeedaR@72edbeb53d9b4d36832bc312f776b4b1.bitwarden.com -carLicense: OQR4E0 -departmentNumber: 7457 -employeeType: Employee -homePhone: +1 408 978-6555 -initials: R. U. -mobile: +1 408 324-3803 -pager: +1 408 398-3811 -roomNumber: 9063 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Youji Lawson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Youji Lawson -sn: Lawson -description: This is Youji Lawson's description -facsimileTelephoneNumber: +1 510 966-9026 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 539-2263 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: LawsonY -givenName: Youji -mail: LawsonY@8ed9716e3ac64c548b2880ae48c87c64.bitwarden.com -carLicense: CEI61Q -departmentNumber: 1257 -employeeType: Contract -homePhone: +1 510 504-9115 -initials: Y. L. -mobile: +1 510 201-9154 -pager: +1 510 103-7967 -roomNumber: 8935 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Neysa Dpu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neysa Dpu -sn: Dpu -description: This is Neysa Dpu's description -facsimileTelephoneNumber: +1 206 351-7772 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 350-9955 -title: Associate Administrative Consultant -userPassword: Password1 -uid: DpuN -givenName: Neysa -mail: DpuN@6e3a8629478147b69f53620c10ea4e46.bitwarden.com -carLicense: UDSFN0 -departmentNumber: 8025 -employeeType: Contract -homePhone: +1 206 715-9514 -initials: N. D. -mobile: +1 206 243-2017 -pager: +1 206 865-9583 -roomNumber: 9715 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=KaiWai Barriere,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KaiWai Barriere -sn: Barriere -description: This is KaiWai Barriere's description -facsimileTelephoneNumber: +1 408 662-1192 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 458-5754 -title: Master Management Consultant -userPassword: Password1 -uid: BarrierK -givenName: KaiWai -mail: BarrierK@f541074a8300482d85b53966c8cecebb.bitwarden.com -carLicense: 3F6V23 -departmentNumber: 5017 -employeeType: Normal -homePhone: +1 408 331-8558 -initials: K. B. -mobile: +1 408 546-7923 -pager: +1 408 445-3045 -roomNumber: 9985 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdalene Buratynski -sn: Buratynski -description: This is Magdalene Buratynski's description -facsimileTelephoneNumber: +1 804 296-6447 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 747-7869 -title: Master Payroll Technician -userPassword: Password1 -uid: BuratynM -givenName: Magdalene -mail: BuratynM@b158d3a8fa274efeac2024038a189bc6.bitwarden.com -carLicense: Y39YTK -departmentNumber: 2690 -employeeType: Employee -homePhone: +1 804 399-2923 -initials: M. B. -mobile: +1 804 271-4769 -pager: +1 804 656-3350 -roomNumber: 9076 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Latashia Waldie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Latashia Waldie -sn: Waldie -description: This is Latashia Waldie's description -facsimileTelephoneNumber: +1 408 447-2135 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 904-3419 -title: Chief Peons Fellow -userPassword: Password1 -uid: WaldieL -givenName: Latashia -mail: WaldieL@4e073aa3a1c84fccb5d5f011b1fd7a56.bitwarden.com -carLicense: 55E6WP -departmentNumber: 8374 -employeeType: Contract -homePhone: +1 408 807-2769 -initials: L. W. -mobile: +1 408 467-5038 -pager: +1 408 227-8306 -roomNumber: 9983 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gordy Durham,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gordy Durham -sn: Durham -description: This is Gordy Durham's description -facsimileTelephoneNumber: +1 510 746-8266 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 111-4117 -title: Junior Management Engineer -userPassword: Password1 -uid: DurhamG -givenName: Gordy -mail: DurhamG@cc8d2b6d697a44a78314b5da49c4f756.bitwarden.com -carLicense: 8X1AFV -departmentNumber: 8790 -employeeType: Normal -homePhone: +1 510 946-5665 -initials: G. D. -mobile: +1 510 959-9056 -pager: +1 510 250-3943 -roomNumber: 8611 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dierdre Isip,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dierdre Isip -sn: Isip -description: This is Dierdre Isip's description -facsimileTelephoneNumber: +1 415 419-2305 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 244-1738 -title: Supreme Payroll Director -userPassword: Password1 -uid: IsipD -givenName: Dierdre -mail: IsipD@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com -carLicense: 9362AM -departmentNumber: 2235 -employeeType: Employee -homePhone: +1 415 484-5053 -initials: D. I. -mobile: +1 415 141-1046 -pager: +1 415 434-8067 -roomNumber: 9780 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reggi Jakubowski -sn: Jakubowski -description: This is Reggi Jakubowski's description -facsimileTelephoneNumber: +1 510 441-5262 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 665-1166 -title: Master Product Testing Fellow -userPassword: Password1 -uid: JakubowR -givenName: Reggi -mail: JakubowR@a71709f685af42718e5d72a70ff54dea.bitwarden.com -carLicense: RNB4L6 -departmentNumber: 6787 -employeeType: Normal -homePhone: +1 510 192-4687 -initials: R. J. -mobile: +1 510 692-2084 -pager: +1 510 677-5353 -roomNumber: 9780 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oralia Bushnell -sn: Bushnell -description: This is Oralia Bushnell's description -facsimileTelephoneNumber: +1 213 677-2104 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 468-7330 -title: Junior Human Resources Artist -userPassword: Password1 -uid: BushnelO -givenName: Oralia -mail: BushnelO@8f4e601fed874b8fa44bcb8ac4c7bc3d.bitwarden.com -carLicense: OTR1J3 -departmentNumber: 8473 -employeeType: Contract -homePhone: +1 213 913-1083 -initials: O. B. -mobile: +1 213 706-6860 -pager: +1 213 162-7855 -roomNumber: 9973 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emelina Weidenborner -sn: Weidenborner -description: This is Emelina Weidenborner's description -facsimileTelephoneNumber: +1 415 377-2396 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 631-7064 -title: Associate Administrative Punk -userPassword: Password1 -uid: WeidenbE -givenName: Emelina -mail: WeidenbE@33e9ea4bed5c488498851d881014c4e4.bitwarden.com -carLicense: 0R512S -departmentNumber: 5480 -employeeType: Employee -homePhone: +1 415 221-5036 -initials: E. W. -mobile: +1 415 743-6165 -pager: +1 415 953-3143 -roomNumber: 9192 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ailis Stumpf,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailis Stumpf -sn: Stumpf -description: This is Ailis Stumpf's description -facsimileTelephoneNumber: +1 510 255-5246 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 510 571-9037 -title: Chief Product Development Vice President -userPassword: Password1 -uid: StumpfA -givenName: Ailis -mail: StumpfA@90c7f28240314e63a7f7df66dc6b7112.bitwarden.com -carLicense: GN17OU -departmentNumber: 9452 -employeeType: Contract -homePhone: +1 510 248-5345 -initials: A. S. -mobile: +1 510 292-5071 -pager: +1 510 857-4084 -roomNumber: 9890 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emelyne Fontanilla -sn: Fontanilla -description: This is Emelyne Fontanilla's description -facsimileTelephoneNumber: +1 206 984-2562 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 206 568-3281 -title: Chief Peons Dictator -userPassword: Password1 -uid: FontaniE -givenName: Emelyne -mail: FontaniE@5857bd6862ae44e0abdb84cc22875a30.bitwarden.com -carLicense: HA3K8X -departmentNumber: 6809 -employeeType: Contract -homePhone: +1 206 756-4096 -initials: E. F. -mobile: +1 206 279-4816 -pager: +1 206 932-3715 -roomNumber: 8891 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Puneet Aloi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Puneet Aloi -sn: Aloi -description: This is Puneet Aloi's description -facsimileTelephoneNumber: +1 818 775-5494 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 818 562-3388 -title: Junior Product Testing Grunt -userPassword: Password1 -uid: AloiP -givenName: Puneet -mail: AloiP@375640a8a3724defaeb05e0a11f25f5c.bitwarden.com -carLicense: EHBWN4 -departmentNumber: 4570 -employeeType: Employee -homePhone: +1 818 235-4656 -initials: P. A. -mobile: +1 818 345-7855 -pager: +1 818 780-1292 -roomNumber: 8618 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorotea Zeigler -sn: Zeigler -description: This is Dorotea Zeigler's description -facsimileTelephoneNumber: +1 213 984-4625 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 129-1837 -title: Chief Payroll Grunt -userPassword: Password1 -uid: ZeiglerD -givenName: Dorotea -mail: ZeiglerD@be2d8ee120a34b15a9149c5056a15a2b.bitwarden.com -carLicense: JISOCD -departmentNumber: 4424 -employeeType: Contract -homePhone: +1 213 517-8026 -initials: D. Z. -mobile: +1 213 280-6228 -pager: +1 213 112-3248 -roomNumber: 8102 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Del Buckingham,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Del Buckingham -sn: Buckingham -description: This is Del Buckingham's description -facsimileTelephoneNumber: +1 818 357-3985 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 818 264-8821 -title: Associate Peons Developer -userPassword: Password1 -uid: BuckingD -givenName: Del -mail: BuckingD@c8d14bd2dc82442f9c5011dbd053c45a.bitwarden.com -carLicense: S772DC -departmentNumber: 8090 -employeeType: Contract -homePhone: +1 818 442-9973 -initials: D. B. -mobile: +1 818 499-8832 -pager: +1 818 557-7480 -roomNumber: 9110 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pardeep Roney,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pardeep Roney -sn: Roney -description: This is Pardeep Roney's description -facsimileTelephoneNumber: +1 415 503-8850 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 384-3049 -title: Supreme Management Artist -userPassword: Password1 -uid: RoneyP -givenName: Pardeep -mail: RoneyP@a8c73be9cd69486db83d92f072753b6a.bitwarden.com -carLicense: 39VFU7 -departmentNumber: 9944 -employeeType: Employee -homePhone: +1 415 448-1880 -initials: P. R. -mobile: +1 415 121-1367 -pager: +1 415 942-6344 -roomNumber: 8759 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shuqing AuYeung -sn: AuYeung -description: This is Shuqing AuYeung's description -facsimileTelephoneNumber: +1 206 534-4999 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 560-1042 -title: Master Product Development Dictator -userPassword: Password1 -uid: AuYeungS -givenName: Shuqing -mail: AuYeungS@31118e4ea061472193269b0ea325f915.bitwarden.com -carLicense: Y5RPV8 -departmentNumber: 5681 -employeeType: Contract -homePhone: +1 206 629-4336 -initials: S. A. -mobile: +1 206 784-1399 -pager: +1 206 215-5516 -roomNumber: 9663 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Valma Myrillas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valma Myrillas -sn: Myrillas -description: This is Valma Myrillas's description -facsimileTelephoneNumber: +1 510 466-7733 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 863-5132 -title: Master Product Testing Artist -userPassword: Password1 -uid: MyrillaV -givenName: Valma -mail: MyrillaV@1ca512dd590d4189adaf95d52220543f.bitwarden.com -carLicense: 296D74 -departmentNumber: 7498 -employeeType: Employee -homePhone: +1 510 512-5548 -initials: V. M. -mobile: +1 510 317-1066 -pager: +1 510 252-7947 -roomNumber: 9325 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Alvira Dessain,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvira Dessain -sn: Dessain -description: This is Alvira Dessain's description -facsimileTelephoneNumber: +1 408 568-6631 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 408 203-2266 -title: Associate Janitorial Punk -userPassword: Password1 -uid: DessainA -givenName: Alvira -mail: DessainA@e00ee60b95474bda83bb814472063684.bitwarden.com -carLicense: QSY3AO -departmentNumber: 8868 -employeeType: Employee -homePhone: +1 408 889-6900 -initials: A. D. -mobile: +1 408 266-5730 -pager: +1 408 359-7461 -roomNumber: 9639 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melli Ertan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melli Ertan -sn: Ertan -description: This is Melli Ertan's description -facsimileTelephoneNumber: +1 213 221-9157 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 292-2640 -title: Chief Administrative Grunt -userPassword: Password1 -uid: ErtanM -givenName: Melli -mail: ErtanM@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com -carLicense: AQQ0QX -departmentNumber: 1696 -employeeType: Normal -homePhone: +1 213 847-2124 -initials: M. E. -mobile: +1 213 672-4753 -pager: +1 213 878-3217 -roomNumber: 9364 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Keri Stroupe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keri Stroupe -sn: Stroupe -description: This is Keri Stroupe's description -facsimileTelephoneNumber: +1 206 408-3734 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 206 106-6711 -title: Supreme Product Development Artist -userPassword: Password1 -uid: StroupeK -givenName: Keri -mail: StroupeK@a30b952d2ab641cf9bc7eee94d4f50c2.bitwarden.com -carLicense: JCL5JY -departmentNumber: 1557 -employeeType: Employee -homePhone: +1 206 649-7642 -initials: K. S. -mobile: +1 206 725-8599 -pager: +1 206 292-7130 -roomNumber: 9271 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Billi Chiu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Billi Chiu -sn: Chiu -description: This is Billi Chiu's description -facsimileTelephoneNumber: +1 415 444-6309 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 693-3044 -title: Junior Human Resources Engineer -userPassword: Password1 -uid: ChiuB -givenName: Billi -mail: ChiuB@3603f9fb94e045a59b767f557fde78c8.bitwarden.com -carLicense: 3EL8GB -departmentNumber: 6580 -employeeType: Normal -homePhone: +1 415 713-6009 -initials: B. C. -mobile: +1 415 384-7416 -pager: +1 415 829-2532 -roomNumber: 9577 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Willette Tel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willette Tel -sn: Tel -description: This is Willette Tel's description -facsimileTelephoneNumber: +1 818 837-5278 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 747-1686 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: TelW -givenName: Willette -mail: TelW@9528dc6cbe3247b1b273b1646f94d087.bitwarden.com -carLicense: 2KJOIL -departmentNumber: 7260 -employeeType: Employee -homePhone: +1 818 862-6477 -initials: W. T. -mobile: +1 818 311-6195 -pager: +1 818 754-8187 -roomNumber: 9980 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ynes Jezioranski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ynes Jezioranski -sn: Jezioranski -description: This is Ynes Jezioranski's description -facsimileTelephoneNumber: +1 415 686-4386 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 159-6981 -title: Associate Peons Fellow -userPassword: Password1 -uid: JezioraY -givenName: Ynes -mail: JezioraY@45e7698e90b843bf96764adac8813e44.bitwarden.com -carLicense: GGK28C -departmentNumber: 4765 -employeeType: Contract -homePhone: +1 415 635-8880 -initials: Y. J. -mobile: +1 415 754-6929 -pager: +1 415 876-3776 -roomNumber: 9080 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Teruko Cregan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teruko Cregan -sn: Cregan -description: This is Teruko Cregan's description -facsimileTelephoneNumber: +1 804 526-1432 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 547-7896 -title: Associate Peons Fellow -userPassword: Password1 -uid: CreganT -givenName: Teruko -mail: CreganT@86d24a798dce4653a3b75c56ae675864.bitwarden.com -carLicense: LN0GGE -departmentNumber: 8889 -employeeType: Contract -homePhone: +1 804 627-4360 -initials: T. C. -mobile: +1 804 519-8475 -pager: +1 804 214-4029 -roomNumber: 9161 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rick Novisedlak,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rick Novisedlak -sn: Novisedlak -description: This is Rick Novisedlak's description -facsimileTelephoneNumber: +1 804 909-4039 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 415-1104 -title: Junior Payroll Assistant -userPassword: Password1 -uid: NovisedR -givenName: Rick -mail: NovisedR@5411fa97ed104161bed6dae71e8cb050.bitwarden.com -carLicense: WMLBDI -departmentNumber: 6152 -employeeType: Contract -homePhone: +1 804 811-8422 -initials: R. N. -mobile: +1 804 442-6005 -pager: +1 804 338-6730 -roomNumber: 8605 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurlie Tiegs -sn: Tiegs -description: This is Aurlie Tiegs's description -facsimileTelephoneNumber: +1 408 509-2764 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 968-9315 -title: Supreme Product Development Czar -userPassword: Password1 -uid: TiegsA -givenName: Aurlie -mail: TiegsA@c5bded5afb9d4ede84cc7d5e63bc3810.bitwarden.com -carLicense: G75LAB -departmentNumber: 5784 -employeeType: Normal -homePhone: +1 408 633-8077 -initials: A. T. -mobile: +1 408 460-8966 -pager: +1 408 287-7791 -roomNumber: 8115 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Notley Peterson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Notley Peterson -sn: Peterson -description: This is Notley Peterson's description -facsimileTelephoneNumber: +1 510 756-6937 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 537-7068 -title: Junior Payroll Artist -userPassword: Password1 -uid: PetersoN -givenName: Notley -mail: PetersoN@7b57b8e19b5b443b99958998ffeb1b88.bitwarden.com -carLicense: KQAH1K -departmentNumber: 2093 -employeeType: Employee -homePhone: +1 510 112-6883 -initials: N. P. -mobile: +1 510 106-5749 -pager: +1 510 616-7022 -roomNumber: 8836 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Joyous ONeal,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joyous ONeal -sn: ONeal -description: This is Joyous ONeal's description -facsimileTelephoneNumber: +1 206 197-8515 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 575-4286 -title: Supreme Product Testing Engineer -userPassword: Password1 -uid: ONealJ -givenName: Joyous -mail: ONealJ@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com -carLicense: U2KASE -departmentNumber: 7633 -employeeType: Normal -homePhone: +1 206 819-4487 -initials: J. O. -mobile: +1 206 157-8302 -pager: +1 206 197-4340 -roomNumber: 9247 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Perle Dolan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perle Dolan -sn: Dolan -description: This is Perle Dolan's description -facsimileTelephoneNumber: +1 510 634-7693 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 895-9104 -title: Chief Janitorial Developer -userPassword: Password1 -uid: DolanP -givenName: Perle -mail: DolanP@c685d3277d5148a0bacdff719084ff0a.bitwarden.com -carLicense: PGGSNK -departmentNumber: 7354 -employeeType: Employee -homePhone: +1 510 223-2677 -initials: P. D. -mobile: +1 510 627-8048 -pager: +1 510 578-3853 -roomNumber: 8073 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ioana Hermack,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ioana Hermack -sn: Hermack -description: This is Ioana Hermack's description -facsimileTelephoneNumber: +1 415 205-9645 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 653-8229 -title: Chief Administrative Dictator -userPassword: Password1 -uid: HermackI -givenName: Ioana -mail: HermackI@bb425b89a99c414cb7e4980da4392291.bitwarden.com -carLicense: 2QLQYY -departmentNumber: 4519 -employeeType: Contract -homePhone: +1 415 794-5410 -initials: I. H. -mobile: +1 415 446-2801 -pager: +1 415 698-1953 -roomNumber: 8719 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nikolaos Nickonov,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nikolaos Nickonov -sn: Nickonov -description: This is Nikolaos Nickonov's description -facsimileTelephoneNumber: +1 206 359-4952 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 206 659-3558 -title: Chief Management Grunt -userPassword: Password1 -uid: NickonoN -givenName: Nikolaos -mail: NickonoN@da1b5788f067415eb6baf89891f2b951.bitwarden.com -carLicense: NM0KG1 -departmentNumber: 9696 -employeeType: Contract -homePhone: +1 206 123-8798 -initials: N. N. -mobile: +1 206 604-9287 -pager: +1 206 136-5604 -roomNumber: 8917 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kirstie Rodger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirstie Rodger -sn: Rodger -description: This is Kirstie Rodger's description -facsimileTelephoneNumber: +1 206 977-5100 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 678-2402 -title: Supreme Management Pinhead -userPassword: Password1 -uid: RodgerK -givenName: Kirstie -mail: RodgerK@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com -carLicense: KYKUO0 -departmentNumber: 5173 -employeeType: Contract -homePhone: +1 206 212-5290 -initials: K. R. -mobile: +1 206 782-1686 -pager: +1 206 407-4333 -roomNumber: 8847 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sheree Siddell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheree Siddell -sn: Siddell -description: This is Sheree Siddell's description -facsimileTelephoneNumber: +1 408 856-9886 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 281-4756 -title: Master Payroll Writer -userPassword: Password1 -uid: SiddellS -givenName: Sheree -mail: SiddellS@c45faf74232c42d9855e1f53b9b93518.bitwarden.com -carLicense: F0IXSJ -departmentNumber: 7643 -employeeType: Contract -homePhone: +1 408 114-9305 -initials: S. S. -mobile: +1 408 699-4462 -pager: +1 408 858-2402 -roomNumber: 8368 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tas Chitnis,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tas Chitnis -sn: Chitnis -description: This is Tas Chitnis's description -facsimileTelephoneNumber: +1 213 315-8683 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 778-7734 -title: Junior Product Development Artist -userPassword: Password1 -uid: ChitnisT -givenName: Tas -mail: ChitnisT@c985a5079f444c70910b648248884490.bitwarden.com -carLicense: 86HJCB -departmentNumber: 5742 -employeeType: Employee -homePhone: +1 213 409-2604 -initials: T. C. -mobile: +1 213 879-8604 -pager: +1 213 361-7277 -roomNumber: 8501 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Whitfield Vexler,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Whitfield Vexler -sn: Vexler -description: This is Whitfield Vexler's description -facsimileTelephoneNumber: +1 415 502-3705 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 293-9992 -title: Master Administrative Director -userPassword: Password1 -uid: VexlerW -givenName: Whitfield -mail: VexlerW@e2a32b6b55ee40dd9f13968ae3f23ead.bitwarden.com -carLicense: D6N6WU -departmentNumber: 5355 -employeeType: Contract -homePhone: +1 415 885-2636 -initials: W. V. -mobile: +1 415 750-3385 -pager: +1 415 825-3787 -roomNumber: 8566 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurijn Drummer -sn: Drummer -description: This is Maurijn Drummer's description -facsimileTelephoneNumber: +1 804 299-1100 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 587-2541 -title: Supreme Janitorial Director -userPassword: Password1 -uid: DrummerM -givenName: Maurijn -mail: DrummerM@7358f14ebc1d437faa31666574716056.bitwarden.com -carLicense: 4J6MPX -departmentNumber: 2353 -employeeType: Normal -homePhone: +1 804 537-8558 -initials: M. D. -mobile: +1 804 638-5302 -pager: +1 804 224-1994 -roomNumber: 8688 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Janifer Gundecha,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janifer Gundecha -sn: Gundecha -description: This is Janifer Gundecha's description -facsimileTelephoneNumber: +1 818 733-9762 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 412-2423 -title: Associate Management Engineer -userPassword: Password1 -uid: GundechJ -givenName: Janifer -mail: GundechJ@c21bdca857b64cf18041de8eb907a456.bitwarden.com -carLicense: CXCVSR -departmentNumber: 2477 -employeeType: Normal -homePhone: +1 818 468-6225 -initials: J. G. -mobile: +1 818 393-5972 -pager: +1 818 700-2951 -roomNumber: 8130 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Diandra Shnay,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diandra Shnay -sn: Shnay -description: This is Diandra Shnay's description -facsimileTelephoneNumber: +1 818 681-7841 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 357-3393 -title: Associate Janitorial Director -userPassword: Password1 -uid: ShnayD -givenName: Diandra -mail: ShnayD@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com -carLicense: 29QW5F -departmentNumber: 6765 -employeeType: Employee -homePhone: +1 818 843-4902 -initials: D. S. -mobile: +1 818 687-8103 -pager: +1 818 434-5495 -roomNumber: 8710 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Semmler Bamfo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Semmler Bamfo -sn: Bamfo -description: This is Semmler Bamfo's description -facsimileTelephoneNumber: +1 415 750-5443 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 469-6033 -title: Junior Payroll Fellow -userPassword: Password1 -uid: BamfoS -givenName: Semmler -mail: BamfoS@4790b8410fc547599da7ac5a22f3c64f.bitwarden.com -carLicense: 9MVJ4H -departmentNumber: 9232 -employeeType: Normal -homePhone: +1 415 825-1734 -initials: S. B. -mobile: +1 415 148-9811 -pager: +1 415 983-6144 -roomNumber: 9673 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquette Gentzler -sn: Gentzler -description: This is Jacquette Gentzler's description -facsimileTelephoneNumber: +1 408 940-6027 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 718-4855 -title: Master Human Resources Artist -userPassword: Password1 -uid: GentzleJ -givenName: Jacquette -mail: GentzleJ@758a671442c6456f8563c5ae42048214.bitwarden.com -carLicense: QF6LSO -departmentNumber: 3502 -employeeType: Normal -homePhone: +1 408 243-3034 -initials: J. G. -mobile: +1 408 156-8299 -pager: +1 408 384-8738 -roomNumber: 9392 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Martina Grazzini,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martina Grazzini -sn: Grazzini -description: This is Martina Grazzini's description -facsimileTelephoneNumber: +1 510 117-4890 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 618-7197 -title: Junior Janitorial Artist -userPassword: Password1 -uid: GrazzinM -givenName: Martina -mail: GrazzinM@566e3f43810e4586a805d84cd5a87397.bitwarden.com -carLicense: 3H837C -departmentNumber: 2841 -employeeType: Normal -homePhone: +1 510 443-7571 -initials: M. G. -mobile: +1 510 400-1039 -pager: +1 510 934-9636 -roomNumber: 9535 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Minnie Dickie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minnie Dickie -sn: Dickie -description: This is Minnie Dickie's description -facsimileTelephoneNumber: +1 213 360-4980 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 567-2507 -title: Associate Product Development Janitor -userPassword: Password1 -uid: DickieM -givenName: Minnie -mail: DickieM@3b50811f02664433a227210515cf2d84.bitwarden.com -carLicense: HH0YTT -departmentNumber: 1988 -employeeType: Employee -homePhone: +1 213 341-3273 -initials: M. D. -mobile: +1 213 671-7168 -pager: +1 213 531-4266 -roomNumber: 8943 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Susanna Buckman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susanna Buckman -sn: Buckman -description: This is Susanna Buckman's description -facsimileTelephoneNumber: +1 818 997-3281 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 626-6279 -title: Master Human Resources Warrior -userPassword: Password1 -uid: BuckmanS -givenName: Susanna -mail: BuckmanS@b6acb1459b804d2d9243461797b49472.bitwarden.com -carLicense: 7O37UJ -departmentNumber: 2443 -employeeType: Employee -homePhone: +1 818 666-3724 -initials: S. B. -mobile: +1 818 122-1051 -pager: +1 818 409-8329 -roomNumber: 8969 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Johnette Yendall,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnette Yendall -sn: Yendall -description: This is Johnette Yendall's description -facsimileTelephoneNumber: +1 213 323-9789 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 202-1206 -title: Supreme Product Development Czar -userPassword: Password1 -uid: YendallJ -givenName: Johnette -mail: YendallJ@c8c5e396d1a54bdc979d0124960b8ac1.bitwarden.com -carLicense: DDV2NT -departmentNumber: 4065 -employeeType: Employee -homePhone: +1 213 918-5787 -initials: J. Y. -mobile: +1 213 656-3980 -pager: +1 213 433-8728 -roomNumber: 8546 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aurelie Doray,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurelie Doray -sn: Doray -description: This is Aurelie Doray's description -facsimileTelephoneNumber: +1 213 467-2313 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 441-4336 -title: Chief Peons Grunt -userPassword: Password1 -uid: DorayA -givenName: Aurelie -mail: DorayA@7dfe1b9d3b374cdda358060433bb4037.bitwarden.com -carLicense: 1GXUXS -departmentNumber: 1658 -employeeType: Normal -homePhone: +1 213 304-7284 -initials: A. D. -mobile: +1 213 994-8303 -pager: +1 213 793-4570 -roomNumber: 9494 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leticia Aravamudhan -sn: Aravamudhan -description: This is Leticia Aravamudhan's description -facsimileTelephoneNumber: +1 206 638-8590 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 543-5605 -title: Junior Product Development Vice President -userPassword: Password1 -uid: AravamuL -givenName: Leticia -mail: AravamuL@af4484e6bd354321bc237bc7b6d97e88.bitwarden.com -carLicense: O96WR0 -departmentNumber: 3225 -employeeType: Employee -homePhone: +1 206 826-6949 -initials: L. A. -mobile: +1 206 505-4170 -pager: +1 206 972-4188 -roomNumber: 8964 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dusan Menyhart,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dusan Menyhart -sn: Menyhart -description: This is Dusan Menyhart's description -facsimileTelephoneNumber: +1 804 193-1825 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 804 306-7677 -title: Associate Product Development Manager -userPassword: Password1 -uid: MenyharD -givenName: Dusan -mail: MenyharD@36f00fa549b64beb879fa1440346fd8b.bitwarden.com -carLicense: N123ID -departmentNumber: 2760 -employeeType: Employee -homePhone: +1 804 598-3169 -initials: D. M. -mobile: +1 804 707-6271 -pager: +1 804 622-5717 -roomNumber: 8260 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Utilla Brandon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Utilla Brandon -sn: Brandon -description: This is Utilla Brandon's description -facsimileTelephoneNumber: +1 213 183-3493 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 228-7154 -title: Master Peons Stooge -userPassword: Password1 -uid: BrandonU -givenName: Utilla -mail: BrandonU@4dd21bf6830a4c908b6586742f2895eb.bitwarden.com -carLicense: G1RT2U -departmentNumber: 4032 -employeeType: Employee -homePhone: +1 213 901-5867 -initials: U. B. -mobile: +1 213 309-3145 -pager: +1 213 311-9006 -roomNumber: 9276 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eduardo Crowle -sn: Crowle -description: This is Eduardo Crowle's description -facsimileTelephoneNumber: +1 510 792-8672 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 708-9645 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: CrowleE -givenName: Eduardo -mail: CrowleE@e60dd9bce03a413a915d470a19570918.bitwarden.com -carLicense: 079XK7 -departmentNumber: 2323 -employeeType: Normal -homePhone: +1 510 897-4413 -initials: E. C. -mobile: +1 510 455-6422 -pager: +1 510 490-1154 -roomNumber: 8530 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Selma Kwant,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selma Kwant -sn: Kwant -description: This is Selma Kwant's description -facsimileTelephoneNumber: +1 415 866-9485 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 655-6762 -title: Master Product Testing Engineer -userPassword: Password1 -uid: KwantS -givenName: Selma -mail: KwantS@f4a421d551d64acc80985f5e163c5415.bitwarden.com -carLicense: 51N1VH -departmentNumber: 2034 -employeeType: Normal -homePhone: +1 415 997-3006 -initials: S. K. -mobile: +1 415 602-3732 -pager: +1 415 416-5796 -roomNumber: 9962 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Levent Debord,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Levent Debord -sn: Debord -description: This is Levent Debord's description -facsimileTelephoneNumber: +1 408 218-5616 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 142-9767 -title: Associate Product Development Visionary -userPassword: Password1 -uid: DebordL -givenName: Levent -mail: DebordL@9676da99cfac4bada210a8c85a95f456.bitwarden.com -carLicense: KNH8KL -departmentNumber: 9930 -employeeType: Normal -homePhone: +1 408 205-1853 -initials: L. D. -mobile: +1 408 443-7953 -pager: +1 408 878-5345 -roomNumber: 9814 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tandie Gourley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tandie Gourley -sn: Gourley -description: This is Tandie Gourley's description -facsimileTelephoneNumber: +1 408 902-6815 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 377-9902 -title: Master Peons Admin -userPassword: Password1 -uid: GourleyT -givenName: Tandie -mail: GourleyT@0ee3c70c9f6e4a52a872f1ee5ca53058.bitwarden.com -carLicense: T7NHOO -departmentNumber: 5887 -employeeType: Normal -homePhone: +1 408 321-6228 -initials: T. G. -mobile: +1 408 972-8684 -pager: +1 408 581-3814 -roomNumber: 9763 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Indy Hu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Indy Hu -sn: Hu -description: This is Indy Hu's description -facsimileTelephoneNumber: +1 415 231-7659 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 847-9389 -title: Master Administrative Consultant -userPassword: Password1 -uid: HuI -givenName: Indy -mail: HuI@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com -carLicense: A630S4 -departmentNumber: 5063 -employeeType: Contract -homePhone: +1 415 113-6256 -initials: I. H. -mobile: +1 415 615-8840 -pager: +1 415 163-4844 -roomNumber: 9234 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stefania Frodsham -sn: Frodsham -description: This is Stefania Frodsham's description -facsimileTelephoneNumber: +1 804 133-8088 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 893-7679 -title: Associate Janitorial Manager -userPassword: Password1 -uid: FrodshaS -givenName: Stefania -mail: FrodshaS@d536ba88c4cb494d89cb1893edcec6ed.bitwarden.com -carLicense: 95U9JJ -departmentNumber: 2327 -employeeType: Normal -homePhone: +1 804 730-3071 -initials: S. F. -mobile: +1 804 380-5091 -pager: +1 804 241-1985 -roomNumber: 8072 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fscocos Houston,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fscocos Houston -sn: Houston -description: This is Fscocos Houston's description -facsimileTelephoneNumber: +1 415 371-3170 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 358-3749 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: HoustonF -givenName: Fscocos -mail: HoustonF@ae2e1b915f9e4564acdcb3a48eca2ab9.bitwarden.com -carLicense: 0ATW4R -departmentNumber: 1102 -employeeType: Normal -homePhone: +1 415 710-2632 -initials: F. H. -mobile: +1 415 371-2235 -pager: +1 415 824-2754 -roomNumber: 8513 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Oriana McInnis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oriana McInnis -sn: McInnis -description: This is Oriana McInnis's description -facsimileTelephoneNumber: +1 818 380-7237 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 995-5684 -title: Junior Peons Grunt -userPassword: Password1 -uid: McInnisO -givenName: Oriana -mail: McInnisO@6ab87a8369934eb19dc984b3fc78b79c.bitwarden.com -carLicense: UD93NC -departmentNumber: 8660 -employeeType: Contract -homePhone: +1 818 604-8359 -initials: O. M. -mobile: +1 818 407-6234 -pager: +1 818 616-1144 -roomNumber: 8011 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maggee Bentley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maggee Bentley -sn: Bentley -description: This is Maggee Bentley's description -facsimileTelephoneNumber: +1 206 689-2049 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 766-2767 -title: Junior Payroll President -userPassword: Password1 -uid: BentleyM -givenName: Maggee -mail: BentleyM@abd7a0e1e97f4d19962cc07f7f9bc4e3.bitwarden.com -carLicense: HQDCYY -departmentNumber: 8032 -employeeType: Employee -homePhone: +1 206 822-1910 -initials: M. B. -mobile: +1 206 198-6697 -pager: +1 206 946-9015 -roomNumber: 9128 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Inm Venjohn,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inm Venjohn -sn: Venjohn -description: This is Inm Venjohn's description -facsimileTelephoneNumber: +1 415 511-4827 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 357-4154 -title: Associate Product Testing Grunt -userPassword: Password1 -uid: VenjohnI -givenName: Inm -mail: VenjohnI@6081422b940842a89e4de80c350bc6cb.bitwarden.com -carLicense: D4J65X -departmentNumber: 8120 -employeeType: Contract -homePhone: +1 415 811-5563 -initials: I. V. -mobile: +1 415 721-6570 -pager: +1 415 951-9866 -roomNumber: 8276 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Corena Parks,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corena Parks -sn: Parks -description: This is Corena Parks's description -facsimileTelephoneNumber: +1 818 376-3018 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 902-4774 -title: Junior Product Development Architect -userPassword: Password1 -uid: ParksC -givenName: Corena -mail: ParksC@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com -carLicense: 64CPEE -departmentNumber: 6137 -employeeType: Contract -homePhone: +1 818 823-6702 -initials: C. P. -mobile: +1 818 652-2352 -pager: +1 818 671-5318 -roomNumber: 9609 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Irv Dicks,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Irv Dicks -sn: Dicks -description: This is Irv Dicks's description -facsimileTelephoneNumber: +1 818 892-7616 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 718-2773 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: DicksI -givenName: Irv -mail: DicksI@1b075a91584f496088ea7442a5922cef.bitwarden.com -carLicense: H1TV64 -departmentNumber: 5424 -employeeType: Employee -homePhone: +1 818 861-9951 -initials: I. D. -mobile: +1 818 306-6073 -pager: +1 818 486-7467 -roomNumber: 9581 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marwan Marks,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marwan Marks -sn: Marks -description: This is Marwan Marks's description -facsimileTelephoneNumber: +1 206 136-3660 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 206 436-7029 -title: Master Product Testing Grunt -userPassword: Password1 -uid: MarksM -givenName: Marwan -mail: MarksM@fb9aa8f3b49848c792549daf315b1674.bitwarden.com -carLicense: 8STQYN -departmentNumber: 2447 -employeeType: Normal -homePhone: +1 206 326-7344 -initials: M. M. -mobile: +1 206 198-1093 -pager: +1 206 425-1758 -roomNumber: 9686 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kamal Calleja,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamal Calleja -sn: Calleja -description: This is Kamal Calleja's description -facsimileTelephoneNumber: +1 510 459-4035 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 423-8928 -title: Chief Janitorial Technician -userPassword: Password1 -uid: CallejaK -givenName: Kamal -mail: CallejaK@0838c5a7fb7841708f56102b10a6cd6b.bitwarden.com -carLicense: RQWKF1 -departmentNumber: 5617 -employeeType: Contract -homePhone: +1 510 273-5444 -initials: K. C. -mobile: +1 510 809-4332 -pager: +1 510 460-2596 -roomNumber: 8954 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jonelle Menna,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jonelle Menna -sn: Menna -description: This is Jonelle Menna's description -facsimileTelephoneNumber: +1 818 472-5006 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 635-5185 -title: Master Product Development Technician -userPassword: Password1 -uid: MennaJ -givenName: Jonelle -mail: MennaJ@2859f4a34f934de4a7cf31d7c6a4b5d2.bitwarden.com -carLicense: C2H3K6 -departmentNumber: 4908 -employeeType: Normal -homePhone: +1 818 316-4873 -initials: J. M. -mobile: +1 818 665-5021 -pager: +1 818 937-6468 -roomNumber: 8428 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Miran McGinn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miran McGinn -sn: McGinn -description: This is Miran McGinn's description -facsimileTelephoneNumber: +1 415 462-6812 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 908-2995 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: McGinnM -givenName: Miran -mail: McGinnM@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com -carLicense: J74QDT -departmentNumber: 5135 -employeeType: Normal -homePhone: +1 415 790-1523 -initials: M. M. -mobile: +1 415 661-7029 -pager: +1 415 677-6770 -roomNumber: 9412 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wan Janovich,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wan Janovich -sn: Janovich -description: This is Wan Janovich's description -facsimileTelephoneNumber: +1 213 165-3626 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 639-9321 -title: Chief Payroll Sales Rep -userPassword: Password1 -uid: JanovicW -givenName: Wan -mail: JanovicW@49f125d3a1b3429789a5b52822aa6b88.bitwarden.com -carLicense: 97JAHA -departmentNumber: 3312 -employeeType: Normal -homePhone: +1 213 474-5482 -initials: W. J. -mobile: +1 213 345-3305 -pager: +1 213 882-2108 -roomNumber: 9065 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shanda Hawryluk -sn: Hawryluk -description: This is Shanda Hawryluk's description -facsimileTelephoneNumber: +1 213 827-3123 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 362-1993 -title: Supreme Administrative Vice President -userPassword: Password1 -uid: HawryluS -givenName: Shanda -mail: HawryluS@f80fca089fec450d8b8e1759f0210196.bitwarden.com -carLicense: CFJNIN -departmentNumber: 9703 -employeeType: Contract -homePhone: +1 213 370-8539 -initials: S. H. -mobile: +1 213 615-1380 -pager: +1 213 186-9735 -roomNumber: 9722 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazuyuki Wilson -sn: Wilson -description: This is Kazuyuki Wilson's description -facsimileTelephoneNumber: +1 510 413-1820 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 510 668-9535 -title: Master Product Development Punk -userPassword: Password1 -uid: WilsonK -givenName: Kazuyuki -mail: WilsonK@dcbbbc8020794d6691fdae775364846a.bitwarden.com -carLicense: 4LNE88 -departmentNumber: 5149 -employeeType: Contract -homePhone: +1 510 602-8220 -initials: K. W. -mobile: +1 510 274-5592 -pager: +1 510 756-8526 -roomNumber: 8847 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gerben Dayal,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerben Dayal -sn: Dayal -description: This is Gerben Dayal's description -facsimileTelephoneNumber: +1 818 775-7459 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 818 309-7241 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: DayalG -givenName: Gerben -mail: DayalG@19726387c894421098fcd2a309797d54.bitwarden.com -carLicense: 8RH7R9 -departmentNumber: 2861 -employeeType: Normal -homePhone: +1 818 298-4544 -initials: G. D. -mobile: +1 818 755-6355 -pager: +1 818 575-5587 -roomNumber: 9836 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lorilee Ravi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorilee Ravi -sn: Ravi -description: This is Lorilee Ravi's description -facsimileTelephoneNumber: +1 510 385-2741 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 867-1348 -title: Associate Peons Madonna -userPassword: Password1 -uid: RaviL -givenName: Lorilee -mail: RaviL@d73ef9502e9045388e89e90d1beb22e0.bitwarden.com -carLicense: 8O20W2 -departmentNumber: 2197 -employeeType: Employee -homePhone: +1 510 945-7147 -initials: L. R. -mobile: +1 510 779-1560 -pager: +1 510 479-1183 -roomNumber: 8964 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=McGee Levasseur,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: McGee Levasseur -sn: Levasseur -description: This is McGee Levasseur's description -facsimileTelephoneNumber: +1 804 133-8356 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 920-6299 -title: Associate Product Testing Punk -userPassword: Password1 -uid: LevasseM -givenName: McGee -mail: LevasseM@2d84c4cc02464a53aeec894db02cd35d.bitwarden.com -carLicense: 1YR3X0 -departmentNumber: 1457 -employeeType: Contract -homePhone: +1 804 739-2885 -initials: M. L. -mobile: +1 804 351-8537 -pager: +1 804 206-4668 -roomNumber: 9883 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Charmain Spurlin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charmain Spurlin -sn: Spurlin -description: This is Charmain Spurlin's description -facsimileTelephoneNumber: +1 408 945-4043 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 120-6099 -title: Master Administrative Vice President -userPassword: Password1 -uid: SpurlinC -givenName: Charmain -mail: SpurlinC@3725e147678f48a0af59ca54935f5941.bitwarden.com -carLicense: FTOHSO -departmentNumber: 5600 -employeeType: Normal -homePhone: +1 408 848-4792 -initials: C. S. -mobile: +1 408 847-8675 -pager: +1 408 816-8758 -roomNumber: 8827 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lainey Grainger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lainey Grainger -sn: Grainger -description: This is Lainey Grainger's description -facsimileTelephoneNumber: +1 408 557-2640 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 408 851-4762 -title: Junior Administrative President -userPassword: Password1 -uid: GraingeL -givenName: Lainey -mail: GraingeL@afc892803baf45f7afbf8693d0730fcc.bitwarden.com -carLicense: DCM2NF -departmentNumber: 3633 -employeeType: Normal -homePhone: +1 408 340-3657 -initials: L. G. -mobile: +1 408 449-7997 -pager: +1 408 589-1473 -roomNumber: 8157 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Delly Clegg,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delly Clegg -sn: Clegg -description: This is Delly Clegg's description -facsimileTelephoneNumber: +1 818 843-8616 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 818 955-7265 -title: Master Product Development Architect -userPassword: Password1 -uid: CleggD -givenName: Delly -mail: CleggD@f3671dd1ede04fe0afa0f9d1294d7d00.bitwarden.com -carLicense: 2J1DNY -departmentNumber: 7045 -employeeType: Normal -homePhone: +1 818 503-6028 -initials: D. C. -mobile: +1 818 402-4471 -pager: +1 818 234-4081 -roomNumber: 9099 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Addie Koolstra,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Addie Koolstra -sn: Koolstra -description: This is Addie Koolstra's description -facsimileTelephoneNumber: +1 804 298-5889 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 466-3314 -title: Chief Human Resources Punk -userPassword: Password1 -uid: KoolstrA -givenName: Addie -mail: KoolstrA@ec5483be40a34a1db29ac90c75090868.bitwarden.com -carLicense: 3434NB -departmentNumber: 2132 -employeeType: Employee -homePhone: +1 804 104-2576 -initials: A. K. -mobile: +1 804 993-2052 -pager: +1 804 927-4159 -roomNumber: 9873 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nga Orsini,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nga Orsini -sn: Orsini -description: This is Nga Orsini's description -facsimileTelephoneNumber: +1 213 150-5530 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 583-1127 -title: Master Product Development Architect -userPassword: Password1 -uid: OrsiniN -givenName: Nga -mail: OrsiniN@6f9b59162216455ba54905a28461b19c.bitwarden.com -carLicense: 2XO1HK -departmentNumber: 7072 -employeeType: Employee -homePhone: +1 213 872-7276 -initials: N. O. -mobile: +1 213 489-9937 -pager: +1 213 246-4497 -roomNumber: 8668 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cherye Knighten,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherye Knighten -sn: Knighten -description: This is Cherye Knighten's description -facsimileTelephoneNumber: +1 818 570-2461 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 357-8273 -title: Junior Janitorial Architect -userPassword: Password1 -uid: KnighteC -givenName: Cherye -mail: KnighteC@502ce1a083704d4ea4b58d700d574c63.bitwarden.com -carLicense: 3E9RJC -departmentNumber: 8040 -employeeType: Employee -homePhone: +1 818 773-2386 -initials: C. K. -mobile: +1 818 114-1171 -pager: +1 818 556-7835 -roomNumber: 9468 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Betteann Sieling,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betteann Sieling -sn: Sieling -description: This is Betteann Sieling's description -facsimileTelephoneNumber: +1 804 588-1477 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 151-9576 -title: Chief Human Resources Admin -userPassword: Password1 -uid: SielingB -givenName: Betteann -mail: SielingB@147ca1a79aa4497190610d15bfa8cc6b.bitwarden.com -carLicense: UYSENQ -departmentNumber: 5853 -employeeType: Employee -homePhone: +1 804 434-8962 -initials: B. S. -mobile: +1 804 909-3510 -pager: +1 804 541-4410 -roomNumber: 9183 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Salim McIntyre,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salim McIntyre -sn: McIntyre -description: This is Salim McIntyre's description -facsimileTelephoneNumber: +1 206 906-2140 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 570-6102 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: McIntyrS -givenName: Salim -mail: McIntyrS@c2a7b578a92f4e2b90afb4532b24efa1.bitwarden.com -carLicense: 8K11Q8 -departmentNumber: 3394 -employeeType: Normal -homePhone: +1 206 920-6206 -initials: S. M. -mobile: +1 206 438-9737 -pager: +1 206 339-7110 -roomNumber: 9571 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaquelyn Fullum -sn: Fullum -description: This is Jaquelyn Fullum's description -facsimileTelephoneNumber: +1 206 719-2267 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 930-4203 -title: Junior Administrative Sales Rep -userPassword: Password1 -uid: FullumJ -givenName: Jaquelyn -mail: FullumJ@4311bb9fc69e4905a1f6f7f3dd2b8fab.bitwarden.com -carLicense: X319AE -departmentNumber: 6532 -employeeType: Employee -homePhone: +1 206 221-4290 -initials: J. F. -mobile: +1 206 783-2970 -pager: +1 206 790-4660 -roomNumber: 8330 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karole Heng,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karole Heng -sn: Heng -description: This is Karole Heng's description -facsimileTelephoneNumber: +1 415 962-3424 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 227-6064 -title: Master Product Testing Dictator -userPassword: Password1 -uid: HengK -givenName: Karole -mail: HengK@d9c6a4248c7f4569bc85ec9d29b8d415.bitwarden.com -carLicense: JJJ1J4 -departmentNumber: 8792 -employeeType: Normal -homePhone: +1 415 482-6703 -initials: K. H. -mobile: +1 415 582-4564 -pager: +1 415 853-5207 -roomNumber: 8173 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jawaid Berryhill -sn: Berryhill -description: This is Jawaid Berryhill's description -facsimileTelephoneNumber: +1 408 425-9203 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 408 444-8949 -title: Master Administrative Evangelist -userPassword: Password1 -uid: BerryhiJ -givenName: Jawaid -mail: BerryhiJ@1e938c02408a4595b2f669d03197c9de.bitwarden.com -carLicense: XSWUCD -departmentNumber: 7147 -employeeType: Normal -homePhone: +1 408 379-3172 -initials: J. B. -mobile: +1 408 690-3532 -pager: +1 408 862-2962 -roomNumber: 9249 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Norio Saifullah,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norio Saifullah -sn: Saifullah -description: This is Norio Saifullah's description -facsimileTelephoneNumber: +1 415 818-1917 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 305-6774 -title: Junior Human Resources Fellow -userPassword: Password1 -uid: SaifullN -givenName: Norio -mail: SaifullN@058dcb3aa7ef439b89d92834e14a6f82.bitwarden.com -carLicense: HYNSM8 -departmentNumber: 5853 -employeeType: Contract -homePhone: +1 415 578-1996 -initials: N. S. -mobile: +1 415 909-9374 -pager: +1 415 179-5572 -roomNumber: 8920 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacki Jorgensen -sn: Jorgensen -description: This is Jacki Jorgensen's description -facsimileTelephoneNumber: +1 206 813-5237 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 824-6051 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: JorgensJ -givenName: Jacki -mail: JorgensJ@9c687885040c4312b6d12f4acbe7233d.bitwarden.com -carLicense: S9J1XM -departmentNumber: 7160 -employeeType: Employee -homePhone: +1 206 262-4481 -initials: J. J. -mobile: +1 206 687-1838 -pager: +1 206 739-9975 -roomNumber: 8924 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shannen Jagatic,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shannen Jagatic -sn: Jagatic -description: This is Shannen Jagatic's description -facsimileTelephoneNumber: +1 213 159-7553 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 817-7053 -title: Supreme Payroll Admin -userPassword: Password1 -uid: JagaticS -givenName: Shannen -mail: JagaticS@5ffed17cc69d4719b003fa0cfe2777f7.bitwarden.com -carLicense: BITRYX -departmentNumber: 7724 -employeeType: Employee -homePhone: +1 213 352-4068 -initials: S. J. -mobile: +1 213 201-7886 -pager: +1 213 295-5442 -roomNumber: 9382 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vania Gibson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vania Gibson -sn: Gibson -description: This is Vania Gibson's description -facsimileTelephoneNumber: +1 206 925-7390 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 731-8535 -title: Master Product Testing Visionary -userPassword: Password1 -uid: GibsonV -givenName: Vania -mail: GibsonV@298910ba55544a1097f46cf86b2ab0db.bitwarden.com -carLicense: I30JDW -departmentNumber: 9045 -employeeType: Normal -homePhone: +1 206 470-3228 -initials: V. G. -mobile: +1 206 521-8493 -pager: +1 206 618-7872 -roomNumber: 8963 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Robyn Blann,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robyn Blann -sn: Blann -description: This is Robyn Blann's description -facsimileTelephoneNumber: +1 213 676-3963 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 389-1219 -title: Master Administrative Czar -userPassword: Password1 -uid: BlannR -givenName: Robyn -mail: BlannR@ae78ee526c5e44bdaf510c03b717277a.bitwarden.com -carLicense: HTRAC5 -departmentNumber: 8682 -employeeType: Contract -homePhone: +1 213 369-1091 -initials: R. B. -mobile: +1 213 936-1085 -pager: +1 213 470-1107 -roomNumber: 8332 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Krier Cruey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krier Cruey -sn: Cruey -description: This is Krier Cruey's description -facsimileTelephoneNumber: +1 804 186-4091 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 767-9631 -title: Junior Management Consultant -userPassword: Password1 -uid: CrueyK -givenName: Krier -mail: CrueyK@75ca8d39c50647a3bea983d4fa29d680.bitwarden.com -carLicense: IFOMK3 -departmentNumber: 7949 -employeeType: Contract -homePhone: +1 804 837-9250 -initials: K. C. -mobile: +1 804 775-8978 -pager: +1 804 694-5811 -roomNumber: 8637 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Barbette Christie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbette Christie -sn: Christie -description: This is Barbette Christie's description -facsimileTelephoneNumber: +1 213 193-9736 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 233-2103 -title: Chief Peons Fellow -userPassword: Password1 -uid: ChristiB -givenName: Barbette -mail: ChristiB@b9f44a907d41480f95c6eb062092de29.bitwarden.com -carLicense: 25DXV6 -departmentNumber: 2232 -employeeType: Employee -homePhone: +1 213 774-3843 -initials: B. C. -mobile: +1 213 864-2878 -pager: +1 213 374-8492 -roomNumber: 9129 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Feodora Koller,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Feodora Koller -sn: Koller -description: This is Feodora Koller's description -facsimileTelephoneNumber: +1 206 249-9627 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 693-9035 -title: Associate Management Warrior -userPassword: Password1 -uid: KollerF -givenName: Feodora -mail: KollerF@acaa4c14b76249a29cca4a0b1f0dd114.bitwarden.com -carLicense: GQ4S3I -departmentNumber: 9044 -employeeType: Employee -homePhone: +1 206 135-8268 -initials: F. K. -mobile: +1 206 439-7136 -pager: +1 206 465-8798 -roomNumber: 9872 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryJo Dugal -sn: Dugal -description: This is MaryJo Dugal's description -facsimileTelephoneNumber: +1 804 549-3860 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 149-8428 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: DugalM -givenName: MaryJo -mail: DugalM@fa04a0c4f0124714bcc971e2896a4551.bitwarden.com -carLicense: 2S02IL -departmentNumber: 8210 -employeeType: Contract -homePhone: +1 804 682-9689 -initials: M. D. -mobile: +1 804 345-7701 -pager: +1 804 599-4037 -roomNumber: 9979 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Saudra Ghaemian,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saudra Ghaemian -sn: Ghaemian -description: This is Saudra Ghaemian's description -facsimileTelephoneNumber: +1 510 773-7537 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 150-3714 -title: Associate Peons Architect -userPassword: Password1 -uid: GhaemiaS -givenName: Saudra -mail: GhaemiaS@054353f98ec44eceb8087bd103f37290.bitwarden.com -carLicense: 4FIRDO -departmentNumber: 4014 -employeeType: Normal -homePhone: +1 510 916-5135 -initials: S. G. -mobile: +1 510 658-1698 -pager: +1 510 909-6734 -roomNumber: 8769 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Son BeattieHillier -sn: BeattieHillier -description: This is Son BeattieHillier's description -facsimileTelephoneNumber: +1 415 717-3349 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 211-3195 -title: Chief Janitorial Janitor -userPassword: Password1 -uid: BeattieS -givenName: Son -mail: BeattieS@a8d818d625d941f8940e746ecca3cf6a.bitwarden.com -carLicense: 9WWXFA -departmentNumber: 9954 -employeeType: Contract -homePhone: +1 415 878-3702 -initials: S. B. -mobile: +1 415 908-6186 -pager: +1 415 164-5009 -roomNumber: 8923 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Valentine Newell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valentine Newell -sn: Newell -description: This is Valentine Newell's description -facsimileTelephoneNumber: +1 206 839-7200 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 825-2586 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: NewellV -givenName: Valentine -mail: NewellV@9db8fd67fa174b34ab0bd6d5a98f82c2.bitwarden.com -carLicense: 7RO2D2 -departmentNumber: 2308 -employeeType: Employee -homePhone: +1 206 431-4594 -initials: V. N. -mobile: +1 206 508-2353 -pager: +1 206 566-5800 -roomNumber: 9889 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Oriana McRae,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oriana McRae -sn: McRae -description: This is Oriana McRae's description -facsimileTelephoneNumber: +1 818 828-6617 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 818 759-3852 -title: Associate Product Testing Writer -userPassword: Password1 -uid: McRaeO -givenName: Oriana -mail: McRaeO@d5cf7f888ae34eefb2e00a540fba0b35.bitwarden.com -carLicense: VO6I8K -departmentNumber: 8991 -employeeType: Normal -homePhone: +1 818 259-1684 -initials: O. M. -mobile: +1 818 437-1021 -pager: +1 818 776-6988 -roomNumber: 9858 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndy Ledoux -sn: Ledoux -description: This is Lyndy Ledoux's description -facsimileTelephoneNumber: +1 408 965-1004 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 667-2195 -title: Junior Payroll Grunt -userPassword: Password1 -uid: LedouxL -givenName: Lyndy -mail: LedouxL@61d80a725e834417bf24b9714b15ac48.bitwarden.com -carLicense: Q377FG -departmentNumber: 1876 -employeeType: Employee -homePhone: +1 408 429-6747 -initials: L. L. -mobile: +1 408 700-9004 -pager: +1 408 507-4853 -roomNumber: 9415 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kizzee Halley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kizzee Halley -sn: Halley -description: This is Kizzee Halley's description -facsimileTelephoneNumber: +1 415 508-6417 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 666-6314 -title: Chief Product Development Architect -userPassword: Password1 -uid: HalleyK -givenName: Kizzee -mail: HalleyK@999c25847f9849ce9a6f746d005bddef.bitwarden.com -carLicense: 67ICLX -departmentNumber: 8197 -employeeType: Contract -homePhone: +1 415 346-1867 -initials: K. H. -mobile: +1 415 879-2871 -pager: +1 415 235-7195 -roomNumber: 9639 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bette Stellwag,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bette Stellwag -sn: Stellwag -description: This is Bette Stellwag's description -facsimileTelephoneNumber: +1 206 947-8440 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 206 509-9655 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: StellwaB -givenName: Bette -mail: StellwaB@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com -carLicense: I17WPA -departmentNumber: 7784 -employeeType: Normal -homePhone: +1 206 159-3175 -initials: B. S. -mobile: +1 206 163-6335 -pager: +1 206 648-6204 -roomNumber: 8952 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Henriette Peixoto,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henriette Peixoto -sn: Peixoto -description: This is Henriette Peixoto's description -facsimileTelephoneNumber: +1 415 431-3078 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 142-4828 -title: Master Administrative Punk -userPassword: Password1 -uid: PeixotoH -givenName: Henriette -mail: PeixotoH@8aed4579481d435c98b14fd5983c7417.bitwarden.com -carLicense: KBVWTR -departmentNumber: 4459 -employeeType: Contract -homePhone: +1 415 315-2846 -initials: H. P. -mobile: +1 415 313-4042 -pager: +1 415 722-4899 -roomNumber: 9339 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Matt Denmark,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matt Denmark -sn: Denmark -description: This is Matt Denmark's description -facsimileTelephoneNumber: +1 213 377-8395 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 706-5082 -title: Supreme Management Manager -userPassword: Password1 -uid: DenmarkM -givenName: Matt -mail: DenmarkM@dfaff98f73b34c5995272b067ac045a0.bitwarden.com -carLicense: LK14QE -departmentNumber: 8883 -employeeType: Contract -homePhone: +1 213 974-4360 -initials: M. D. -mobile: +1 213 177-4913 -pager: +1 213 248-1061 -roomNumber: 9828 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardath Verrenneau -sn: Verrenneau -description: This is Ardath Verrenneau's description -facsimileTelephoneNumber: +1 206 957-4975 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 409-9988 -title: Master Payroll Writer -userPassword: Password1 -uid: VerrennA -givenName: Ardath -mail: VerrennA@6d6628d9da624cadbb049fbfa6bdf2da.bitwarden.com -carLicense: O1PYI8 -departmentNumber: 9081 -employeeType: Contract -homePhone: +1 206 253-4053 -initials: A. V. -mobile: +1 206 991-3117 -pager: +1 206 698-9250 -roomNumber: 8165 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Feng Rowland,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Feng Rowland -sn: Rowland -description: This is Feng Rowland's description -facsimileTelephoneNumber: +1 510 199-5144 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 514-7295 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: RowlandF -givenName: Feng -mail: RowlandF@520f892e74614b6eaf9cfa5ff5ab84c6.bitwarden.com -carLicense: SCOPII -departmentNumber: 8876 -employeeType: Contract -homePhone: +1 510 371-3617 -initials: F. R. -mobile: +1 510 340-8409 -pager: +1 510 164-7933 -roomNumber: 8326 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Theresa Naguib,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theresa Naguib -sn: Naguib -description: This is Theresa Naguib's description -facsimileTelephoneNumber: +1 206 693-7425 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 541-1645 -title: Master Administrative Admin -userPassword: Password1 -uid: NaguibT -givenName: Theresa -mail: NaguibT@047f5532df204d5fa9cb51221c4d098a.bitwarden.com -carLicense: UP14CJ -departmentNumber: 1583 -employeeType: Employee -homePhone: +1 206 218-1572 -initials: T. N. -mobile: +1 206 619-4029 -pager: +1 206 192-8119 -roomNumber: 9598 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Eden Annibale,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eden Annibale -sn: Annibale -description: This is Eden Annibale's description -facsimileTelephoneNumber: +1 415 633-2888 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 945-6765 -title: Chief Peons President -userPassword: Password1 -uid: AnnibalE -givenName: Eden -mail: AnnibalE@b2685c20be7244a2b29f08c6434ac903.bitwarden.com -carLicense: 2TENF7 -departmentNumber: 9762 -employeeType: Employee -homePhone: +1 415 641-2814 -initials: E. A. -mobile: +1 415 436-2602 -pager: +1 415 911-6107 -roomNumber: 9157 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Buck PueGilchrist -sn: PueGilchrist -description: This is Buck PueGilchrist's description -facsimileTelephoneNumber: +1 415 767-2774 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 685-7167 -title: Associate Administrative Pinhead -userPassword: Password1 -uid: PueGilcB -givenName: Buck -mail: PueGilcB@f23aa8a9cb8a42ba9799719ef81fbcb7.bitwarden.com -carLicense: D5DWXP -departmentNumber: 2651 -employeeType: Contract -homePhone: +1 415 482-2418 -initials: B. P. -mobile: +1 415 140-3107 -pager: +1 415 181-1841 -roomNumber: 8510 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cele Toshach,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cele Toshach -sn: Toshach -description: This is Cele Toshach's description -facsimileTelephoneNumber: +1 818 861-5354 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 342-7216 -title: Chief Payroll Visionary -userPassword: Password1 -uid: ToshachC -givenName: Cele -mail: ToshachC@a44012f01e89409bb9b3f2e9702266f9.bitwarden.com -carLicense: 48DQVH -departmentNumber: 7799 -employeeType: Employee -homePhone: +1 818 879-8840 -initials: C. T. -mobile: +1 818 930-8503 -pager: +1 818 138-8758 -roomNumber: 9347 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Car Naro,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Car Naro -sn: Naro -description: This is Car Naro's description -facsimileTelephoneNumber: +1 206 702-6082 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 519-6861 -title: Associate Janitorial Czar -userPassword: Password1 -uid: NaroC -givenName: Car -mail: NaroC@a23e4ef8816f40919cd3b230902d58ca.bitwarden.com -carLicense: H7AFNL -departmentNumber: 9481 -employeeType: Normal -homePhone: +1 206 478-8488 -initials: C. N. -mobile: +1 206 330-7324 -pager: +1 206 922-2963 -roomNumber: 9226 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jocelyn Napert,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jocelyn Napert -sn: Napert -description: This is Jocelyn Napert's description -facsimileTelephoneNumber: +1 415 247-8844 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 328-7563 -title: Master Payroll Engineer -userPassword: Password1 -uid: NapertJ -givenName: Jocelyn -mail: NapertJ@dce637b43f194588ba44f478eabb0b1d.bitwarden.com -carLicense: RSQAHP -departmentNumber: 4672 -employeeType: Employee -homePhone: +1 415 588-1592 -initials: J. N. -mobile: +1 415 156-4665 -pager: +1 415 227-8566 -roomNumber: 9575 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cooney Dalrymple -sn: Dalrymple -description: This is Cooney Dalrymple's description -facsimileTelephoneNumber: +1 213 222-6271 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 738-2489 -title: Junior Product Testing President -userPassword: Password1 -uid: DalrympC -givenName: Cooney -mail: DalrympC@3f891cf88f8f4b9cb80e52276f5b9b1c.bitwarden.com -carLicense: DKHY3Y -departmentNumber: 6639 -employeeType: Normal -homePhone: +1 213 855-1883 -initials: C. D. -mobile: +1 213 760-6951 -pager: +1 213 815-7733 -roomNumber: 9141 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arlette Irani,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlette Irani -sn: Irani -description: This is Arlette Irani's description -facsimileTelephoneNumber: +1 510 381-2157 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 842-3943 -title: Chief Management Figurehead -userPassword: Password1 -uid: IraniA -givenName: Arlette -mail: IraniA@fa6f1422a9064a168045966e8899109e.bitwarden.com -carLicense: RLLHAR -departmentNumber: 1119 -employeeType: Employee -homePhone: +1 510 639-8760 -initials: A. I. -mobile: +1 510 446-1888 -pager: +1 510 858-4265 -roomNumber: 8099 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nath DeCristofaro -sn: DeCristofaro -description: This is Nath DeCristofaro's description -facsimileTelephoneNumber: +1 510 605-6572 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 187-5202 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: DeCristN -givenName: Nath -mail: DeCristN@ce05c4f2c87a4de7a2796014b61208f5.bitwarden.com -carLicense: MTYGH2 -departmentNumber: 4014 -employeeType: Contract -homePhone: +1 510 376-3272 -initials: N. D. -mobile: +1 510 707-8766 -pager: +1 510 959-8712 -roomNumber: 8337 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cynthya Jeffries -sn: Jeffries -description: This is Cynthya Jeffries's description -facsimileTelephoneNumber: +1 818 476-9292 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 870-7936 -title: Junior Product Testing Czar -userPassword: Password1 -uid: JeffrieC -givenName: Cynthya -mail: JeffrieC@d92ad7c360d346679da2cf1b78e9ba49.bitwarden.com -carLicense: 9UXD71 -departmentNumber: 9131 -employeeType: Normal -homePhone: +1 818 634-1693 -initials: C. J. -mobile: +1 818 774-4937 -pager: +1 818 488-1114 -roomNumber: 8736 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Basheer Berhane,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Basheer Berhane -sn: Berhane -description: This is Basheer Berhane's description -facsimileTelephoneNumber: +1 804 147-5266 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 545-3958 -title: Associate Payroll Figurehead -userPassword: Password1 -uid: BerhaneB -givenName: Basheer -mail: BerhaneB@cff83e5325124f689808e755392aa586.bitwarden.com -carLicense: 9W1W98 -departmentNumber: 4683 -employeeType: Employee -homePhone: +1 804 382-2837 -initials: B. B. -mobile: +1 804 345-3492 -pager: +1 804 461-4002 -roomNumber: 8792 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monah Sulatycki -sn: Sulatycki -description: This is Monah Sulatycki's description -facsimileTelephoneNumber: +1 213 225-2504 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 455-2154 -title: Supreme Janitorial Visionary -userPassword: Password1 -uid: SulatycM -givenName: Monah -mail: SulatycM@11006cb63c014ed78431f32c1edc2e50.bitwarden.com -carLicense: NGWT3P -departmentNumber: 2377 -employeeType: Normal -homePhone: +1 213 397-9117 -initials: M. S. -mobile: +1 213 610-6274 -pager: +1 213 180-2167 -roomNumber: 8134 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernadene Moraetes -sn: Moraetes -description: This is Bernadene Moraetes's description -facsimileTelephoneNumber: +1 408 958-9666 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 807-6158 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: MoraeteB -givenName: Bernadene -mail: MoraeteB@03c9972260df454c80f48cf3fc865b2e.bitwarden.com -carLicense: UJTLWX -departmentNumber: 8759 -employeeType: Contract -homePhone: +1 408 543-9373 -initials: B. M. -mobile: +1 408 666-2388 -pager: +1 408 887-9435 -roomNumber: 8823 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Betti Tilley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betti Tilley -sn: Tilley -description: This is Betti Tilley's description -facsimileTelephoneNumber: +1 510 250-8653 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 923-6746 -title: Master Janitorial Mascot -userPassword: Password1 -uid: TilleyB -givenName: Betti -mail: TilleyB@52e45fbd04374d8187c124fd4ea8990e.bitwarden.com -carLicense: EBLRUX -departmentNumber: 5341 -employeeType: Contract -homePhone: +1 510 180-7782 -initials: B. T. -mobile: +1 510 156-7330 -pager: +1 510 401-7685 -roomNumber: 8026 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ashu Drakage,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashu Drakage -sn: Drakage -description: This is Ashu Drakage's description -facsimileTelephoneNumber: +1 206 612-6040 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 367-8190 -title: Junior Peons Consultant -userPassword: Password1 -uid: DrakageA -givenName: Ashu -mail: DrakageA@29ddc254020a4d509a3e447f6b0e374a.bitwarden.com -carLicense: Q7RULC -departmentNumber: 5057 -employeeType: Normal -homePhone: +1 206 925-3519 -initials: A. D. -mobile: +1 206 954-6323 -pager: +1 206 156-9135 -roomNumber: 8474 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yetty Likert,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yetty Likert -sn: Likert -description: This is Yetty Likert's description -facsimileTelephoneNumber: +1 206 901-6468 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 206 973-3448 -title: Supreme Administrative Architect -userPassword: Password1 -uid: LikertY -givenName: Yetty -mail: LikertY@f576fe3e1f814a9ea745cbacb8aae078.bitwarden.com -carLicense: TCGUF0 -departmentNumber: 5954 -employeeType: Normal -homePhone: +1 206 948-2241 -initials: Y. L. -mobile: +1 206 897-3426 -pager: +1 206 758-4162 -roomNumber: 8488 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nady Bushnell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nady Bushnell -sn: Bushnell -description: This is Nady Bushnell's description -facsimileTelephoneNumber: +1 818 193-3737 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 358-9072 -title: Chief Product Testing Admin -userPassword: Password1 -uid: BushnelN -givenName: Nady -mail: BushnelN@4f0015ca79e24121bcec866af73ee713.bitwarden.com -carLicense: BQ2N5L -departmentNumber: 1326 -employeeType: Contract -homePhone: +1 818 557-3472 -initials: N. B. -mobile: +1 818 496-8258 -pager: +1 818 927-5787 -roomNumber: 9379 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Selle Verch,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selle Verch -sn: Verch -description: This is Selle Verch's description -facsimileTelephoneNumber: +1 213 461-6488 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 766-5472 -title: Junior Administrative Consultant -userPassword: Password1 -uid: VerchS -givenName: Selle -mail: VerchS@6b2e3d121ebe4eb0bcbc734c374a1042.bitwarden.com -carLicense: 6QOSR1 -departmentNumber: 3963 -employeeType: Employee -homePhone: +1 213 237-4837 -initials: S. V. -mobile: +1 213 789-7289 -pager: +1 213 628-4825 -roomNumber: 9552 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benedetta Toletzka -sn: Toletzka -description: This is Benedetta Toletzka's description -facsimileTelephoneNumber: +1 510 269-6054 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 147-8542 -title: Master Human Resources Director -userPassword: Password1 -uid: ToletzkB -givenName: Benedetta -mail: ToletzkB@a0e52fac0f494b0982a62c82b5201e22.bitwarden.com -carLicense: E5JHOC -departmentNumber: 6051 -employeeType: Employee -homePhone: +1 510 736-9596 -initials: B. T. -mobile: +1 510 575-3450 -pager: +1 510 955-1033 -roomNumber: 9693 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yukinaga Pascale -sn: Pascale -description: This is Yukinaga Pascale's description -facsimileTelephoneNumber: +1 213 182-4131 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 273-8137 -title: Junior Human Resources Writer -userPassword: Password1 -uid: PascaleY -givenName: Yukinaga -mail: PascaleY@f72cf2b3454841e499da566c9feae899.bitwarden.com -carLicense: C1DWDI -departmentNumber: 5338 -employeeType: Normal -homePhone: +1 213 479-1796 -initials: Y. P. -mobile: +1 213 317-4302 -pager: +1 213 413-1612 -roomNumber: 8471 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=YeeNing Sikes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YeeNing Sikes -sn: Sikes -description: This is YeeNing Sikes's description -facsimileTelephoneNumber: +1 408 797-9284 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 923-7673 -title: Associate Management Admin -userPassword: Password1 -uid: SikesY -givenName: YeeNing -mail: SikesY@3b9a242739aa4b0aa6818d262f7df54b.bitwarden.com -carLicense: OHA9W6 -departmentNumber: 1581 -employeeType: Normal -homePhone: +1 408 591-2365 -initials: Y. S. -mobile: +1 408 340-5245 -pager: +1 408 839-5139 -roomNumber: 9031 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bachittar Seamster,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bachittar Seamster -sn: Seamster -description: This is Bachittar Seamster's description -facsimileTelephoneNumber: +1 804 181-9437 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 804 798-7004 -title: Master Product Development Punk -userPassword: Password1 -uid: SeamsteB -givenName: Bachittar -mail: SeamsteB@dab392e4f9aa43b99ad711498543123e.bitwarden.com -carLicense: DS74FM -departmentNumber: 7973 -employeeType: Normal -homePhone: +1 804 314-5638 -initials: B. S. -mobile: +1 804 393-4230 -pager: +1 804 331-1084 -roomNumber: 9444 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elmer Gribbon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elmer Gribbon -sn: Gribbon -description: This is Elmer Gribbon's description -facsimileTelephoneNumber: +1 213 625-1673 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 504-8396 -title: Chief Management Consultant -userPassword: Password1 -uid: GribbonE -givenName: Elmer -mail: GribbonE@7101039e23634506b2da2b1c92ecb4cf.bitwarden.com -carLicense: A9K5L9 -departmentNumber: 1413 -employeeType: Employee -homePhone: +1 213 830-5140 -initials: E. G. -mobile: +1 213 659-4397 -pager: +1 213 501-6095 -roomNumber: 9779 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corliss Thuswaldner -sn: Thuswaldner -description: This is Corliss Thuswaldner's description -facsimileTelephoneNumber: +1 415 231-4744 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 415 607-4532 -title: Supreme Administrative Stooge -userPassword: Password1 -uid: ThuswalC -givenName: Corliss -mail: ThuswalC@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com -carLicense: 6QUPNQ -departmentNumber: 7831 -employeeType: Normal -homePhone: +1 415 940-1349 -initials: C. T. -mobile: +1 415 722-5309 -pager: +1 415 298-6587 -roomNumber: 8545 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nijen Beaulieu -sn: Beaulieu -description: This is Nijen Beaulieu's description -facsimileTelephoneNumber: +1 510 723-8308 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 868-5202 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: BeaulieN -givenName: Nijen -mail: BeaulieN@1749fb9f385d47ab94fc08c03ceb3689.bitwarden.com -carLicense: PQ0IVD -departmentNumber: 9799 -employeeType: Contract -homePhone: +1 510 506-2612 -initials: N. B. -mobile: +1 510 693-9570 -pager: +1 510 923-8981 -roomNumber: 9428 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwenora Andruzzi -sn: Andruzzi -description: This is Gwenora Andruzzi's description -facsimileTelephoneNumber: +1 206 364-4742 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 265-8697 -title: Supreme Administrative Writer -userPassword: Password1 -uid: AndruzzG -givenName: Gwenora -mail: AndruzzG@40544cfce21b453a8a348a622d569594.bitwarden.com -carLicense: H7I36D -departmentNumber: 1249 -employeeType: Employee -homePhone: +1 206 147-1554 -initials: G. A. -mobile: +1 206 427-5294 -pager: +1 206 526-8990 -roomNumber: 8722 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marlin Schrier,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlin Schrier -sn: Schrier -description: This is Marlin Schrier's description -facsimileTelephoneNumber: +1 206 344-5569 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 206 234-1613 -title: Master Payroll Stooge -userPassword: Password1 -uid: SchrierM -givenName: Marlin -mail: SchrierM@27b3ace1dd6948c9b5b4ab8ce5109020.bitwarden.com -carLicense: EPFASP -departmentNumber: 5926 -employeeType: Employee -homePhone: +1 206 114-7494 -initials: M. S. -mobile: +1 206 952-6187 -pager: +1 206 691-6078 -roomNumber: 8575 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bobb Bowcock,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobb Bowcock -sn: Bowcock -description: This is Bobb Bowcock's description -facsimileTelephoneNumber: +1 804 959-6349 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 380-9552 -title: Chief Management Figurehead -userPassword: Password1 -uid: BowcockB -givenName: Bobb -mail: BowcockB@640099050d1b4ffe96ecc4fd391c252e.bitwarden.com -carLicense: CYVPFL -departmentNumber: 6133 -employeeType: Contract -homePhone: +1 804 929-9648 -initials: B. B. -mobile: +1 804 899-4686 -pager: +1 804 862-3088 -roomNumber: 8439 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hermia Mendez,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermia Mendez -sn: Mendez -description: This is Hermia Mendez's description -facsimileTelephoneNumber: +1 804 521-4513 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 426-8762 -title: Junior Management Dictator -userPassword: Password1 -uid: MendezH -givenName: Hermia -mail: MendezH@275eb97478fb4994bc1f48d698b5aa05.bitwarden.com -carLicense: 1IJ0MT -departmentNumber: 6390 -employeeType: Normal -homePhone: +1 804 201-8760 -initials: H. M. -mobile: +1 804 451-5282 -pager: +1 804 573-6586 -roomNumber: 9548 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jackqueline Hoyt -sn: Hoyt -description: This is Jackqueline Hoyt's description -facsimileTelephoneNumber: +1 818 476-5667 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 818 147-6023 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: HoytJ -givenName: Jackqueline -mail: HoytJ@e13bfc0b89e445668bff1bfb45347a50.bitwarden.com -carLicense: W4CDLQ -departmentNumber: 5307 -employeeType: Contract -homePhone: +1 818 824-5935 -initials: J. H. -mobile: +1 818 103-9804 -pager: +1 818 237-9367 -roomNumber: 8651 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Thaddeus Hoehn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thaddeus Hoehn -sn: Hoehn -description: This is Thaddeus Hoehn's description -facsimileTelephoneNumber: +1 206 644-1662 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 895-5675 -title: Chief Management Sales Rep -userPassword: Password1 -uid: HoehnT -givenName: Thaddeus -mail: HoehnT@36fbb38d5bbe4aa29ae95e79bf727529.bitwarden.com -carLicense: UER0IK -departmentNumber: 8905 -employeeType: Normal -homePhone: +1 206 969-1192 -initials: T. H. -mobile: +1 206 112-2355 -pager: +1 206 908-4776 -roomNumber: 8558 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bawn Asfazadour,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bawn Asfazadour -sn: Asfazadour -description: This is Bawn Asfazadour's description -facsimileTelephoneNumber: +1 206 120-8044 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 307-5107 -title: Associate Management Manager -userPassword: Password1 -uid: AsfazadB -givenName: Bawn -mail: AsfazadB@6d93f84a8aef4b70975e9d9fd01027a1.bitwarden.com -carLicense: OEGGUF -departmentNumber: 6144 -employeeType: Contract -homePhone: +1 206 938-4317 -initials: B. A. -mobile: +1 206 499-3020 -pager: +1 206 423-2153 -roomNumber: 8913 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaquenette Ingersoll -sn: Ingersoll -description: This is Jaquenette Ingersoll's description -facsimileTelephoneNumber: +1 804 240-3415 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 152-8322 -title: Junior Janitorial Admin -userPassword: Password1 -uid: IngersoJ -givenName: Jaquenette -mail: IngersoJ@15ff23f989894575aad93f5e7d401d8c.bitwarden.com -carLicense: 123BXO -departmentNumber: 6031 -employeeType: Contract -homePhone: +1 804 314-3407 -initials: J. I. -mobile: +1 804 609-5415 -pager: +1 804 310-8699 -roomNumber: 8825 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Franky Foest,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franky Foest -sn: Foest -description: This is Franky Foest's description -facsimileTelephoneNumber: +1 510 636-6856 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 145-6180 -title: Master Administrative Visionary -userPassword: Password1 -uid: FoestF -givenName: Franky -mail: FoestF@57a6ba7501424a8abade55339f684e3b.bitwarden.com -carLicense: 2DFFRB -departmentNumber: 6516 -employeeType: Normal -homePhone: +1 510 763-5405 -initials: F. F. -mobile: +1 510 503-5422 -pager: +1 510 147-3134 -roomNumber: 9634 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Daphene Scheck,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphene Scheck -sn: Scheck -description: This is Daphene Scheck's description -facsimileTelephoneNumber: +1 206 870-7463 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 162-9900 -title: Master Janitorial Assistant -userPassword: Password1 -uid: ScheckD -givenName: Daphene -mail: ScheckD@973527d3929842be874997364fd01259.bitwarden.com -carLicense: H0R6TD -departmentNumber: 1304 -employeeType: Employee -homePhone: +1 206 634-6036 -initials: D. S. -mobile: +1 206 721-4641 -pager: +1 206 912-3329 -roomNumber: 9505 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Milicent Hoeler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milicent Hoeler -sn: Hoeler -description: This is Milicent Hoeler's description -facsimileTelephoneNumber: +1 510 888-8641 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 834-2824 -title: Associate Management Manager -userPassword: Password1 -uid: HoelerM -givenName: Milicent -mail: HoelerM@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com -carLicense: A7LHGI -departmentNumber: 9757 -employeeType: Normal -homePhone: +1 510 297-3023 -initials: M. H. -mobile: +1 510 271-5488 -pager: +1 510 224-8168 -roomNumber: 9216 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Luis Louis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luis Louis -sn: Louis -description: This is Luis Louis's description -facsimileTelephoneNumber: +1 415 168-3207 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 554-1293 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: LouisL -givenName: Luis -mail: LouisL@f23b5ffe63104ae0be308f3a9ff9e9f8.bitwarden.com -carLicense: 9NF7V0 -departmentNumber: 8953 -employeeType: Employee -homePhone: +1 415 684-1769 -initials: L. L. -mobile: +1 415 764-1600 -pager: +1 415 957-6951 -roomNumber: 8181 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Daveta SiuKwok,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daveta SiuKwok -sn: SiuKwok -description: This is Daveta SiuKwok's description -facsimileTelephoneNumber: +1 213 847-2988 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 432-5114 -title: Supreme Peons Grunt -userPassword: Password1 -uid: SiuKwokD -givenName: Daveta -mail: SiuKwokD@2f60f554d60143df8c782af78b69eca5.bitwarden.com -carLicense: DVMNTD -departmentNumber: 6191 -employeeType: Contract -homePhone: +1 213 171-6628 -initials: D. S. -mobile: +1 213 990-2295 -pager: +1 213 759-9294 -roomNumber: 8611 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Minni Daymond,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minni Daymond -sn: Daymond -description: This is Minni Daymond's description -facsimileTelephoneNumber: +1 804 307-9394 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 763-4898 -title: Junior Administrative Fellow -userPassword: Password1 -uid: DaymondM -givenName: Minni -mail: DaymondM@56b1727a87724d8d92953fb81fb48bde.bitwarden.com -carLicense: 8U9AAU -departmentNumber: 9520 -employeeType: Contract -homePhone: +1 804 185-5132 -initials: M. D. -mobile: +1 804 655-8132 -pager: +1 804 683-7044 -roomNumber: 8197 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Muriel Barakat,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Muriel Barakat -sn: Barakat -description: This is Muriel Barakat's description -facsimileTelephoneNumber: +1 206 217-3237 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 580-4608 -title: Junior Product Testing Mascot -userPassword: Password1 -uid: BarakatM -givenName: Muriel -mail: BarakatM@602d8f6d1a6449018081ad850b50b27b.bitwarden.com -carLicense: N903Q9 -departmentNumber: 1529 -employeeType: Employee -homePhone: +1 206 765-8760 -initials: M. B. -mobile: +1 206 529-2615 -pager: +1 206 559-2071 -roomNumber: 9841 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Thuan Szaran,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thuan Szaran -sn: Szaran -description: This is Thuan Szaran's description -facsimileTelephoneNumber: +1 818 958-3359 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 818 525-6798 -title: Chief Product Development Developer -userPassword: Password1 -uid: SzaranT -givenName: Thuan -mail: SzaranT@7ce4f6cd43f8492dae2090d4de3aa803.bitwarden.com -carLicense: U9DUAX -departmentNumber: 1010 -employeeType: Contract -homePhone: +1 818 311-7508 -initials: T. S. -mobile: +1 818 604-5825 -pager: +1 818 132-7387 -roomNumber: 8499 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mitchell Willette,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mitchell Willette -sn: Willette -description: This is Mitchell Willette's description -facsimileTelephoneNumber: +1 510 778-6738 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 239-4649 -title: Chief Janitorial Grunt -userPassword: Password1 -uid: WillettM -givenName: Mitchell -mail: WillettM@9f3819b9115a462187208879243957c9.bitwarden.com -carLicense: 3UEHLQ -departmentNumber: 6943 -employeeType: Contract -homePhone: +1 510 957-4498 -initials: M. W. -mobile: +1 510 571-9723 -pager: +1 510 817-6341 -roomNumber: 8544 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndia Sherrer -sn: Sherrer -description: This is Lyndia Sherrer's description -facsimileTelephoneNumber: +1 818 134-3961 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 304-7961 -title: Junior Janitorial Vice President -userPassword: Password1 -uid: SherrerL -givenName: Lyndia -mail: SherrerL@d8b58b77cc0a4df1b559d499a84b4151.bitwarden.com -carLicense: KTKW9V -departmentNumber: 4527 -employeeType: Contract -homePhone: +1 818 846-1383 -initials: L. S. -mobile: +1 818 907-8004 -pager: +1 818 475-4300 -roomNumber: 9683 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mohan Piper,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mohan Piper -sn: Piper -description: This is Mohan Piper's description -facsimileTelephoneNumber: +1 213 669-9866 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 866-8106 -title: Chief Product Testing Madonna -userPassword: Password1 -uid: PiperM -givenName: Mohan -mail: PiperM@c7fccfd1c09b42959a9d0aa1b9f02b2b.bitwarden.com -carLicense: MTUVTV -departmentNumber: 3382 -employeeType: Employee -homePhone: +1 213 184-2129 -initials: M. P. -mobile: +1 213 609-2963 -pager: +1 213 185-6718 -roomNumber: 9534 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carmelle Froud,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmelle Froud -sn: Froud -description: This is Carmelle Froud's description -facsimileTelephoneNumber: +1 804 735-3768 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 937-5986 -title: Master Administrative Admin -userPassword: Password1 -uid: FroudC -givenName: Carmelle -mail: FroudC@be4e574e5026401884f8759627863563.bitwarden.com -carLicense: 51VH6P -departmentNumber: 5901 -employeeType: Contract -homePhone: +1 804 562-4268 -initials: C. F. -mobile: +1 804 460-8910 -pager: +1 804 788-9580 -roomNumber: 9425 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Modesta Farr,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Modesta Farr -sn: Farr -description: This is Modesta Farr's description -facsimileTelephoneNumber: +1 206 294-3189 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 167-3467 -title: Master Product Testing Grunt -userPassword: Password1 -uid: FarrM -givenName: Modesta -mail: FarrM@0a6ccfe4eb2e49debe0647e11b1f99cc.bitwarden.com -carLicense: WA5SYP -departmentNumber: 8771 -employeeType: Employee -homePhone: +1 206 818-2625 -initials: M. F. -mobile: +1 206 530-5737 -pager: +1 206 293-6837 -roomNumber: 8187 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Liese Griffiths,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liese Griffiths -sn: Griffiths -description: This is Liese Griffiths's description -facsimileTelephoneNumber: +1 213 535-9200 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 566-2384 -title: Chief Management Artist -userPassword: Password1 -uid: GriffitL -givenName: Liese -mail: GriffitL@37ed0472c8f94c52a139aaa374db7e5f.bitwarden.com -carLicense: 12MO60 -departmentNumber: 6612 -employeeType: Contract -homePhone: +1 213 427-2551 -initials: L. G. -mobile: +1 213 870-2207 -pager: +1 213 866-2885 -roomNumber: 8862 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Meghan Carboni,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meghan Carboni -sn: Carboni -description: This is Meghan Carboni's description -facsimileTelephoneNumber: +1 408 208-2195 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 179-6105 -title: Master Product Development Technician -userPassword: Password1 -uid: CarboniM -givenName: Meghan -mail: CarboniM@a973beae67824ff38510168917193e58.bitwarden.com -carLicense: MBPJOP -departmentNumber: 7444 -employeeType: Normal -homePhone: +1 408 156-6838 -initials: M. C. -mobile: +1 408 951-1853 -pager: +1 408 239-9308 -roomNumber: 8453 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bryon Kluger,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryon Kluger -sn: Kluger -description: This is Bryon Kluger's description -facsimileTelephoneNumber: +1 510 363-7529 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 510 317-3318 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: KlugerB -givenName: Bryon -mail: KlugerB@085bf0384c944c1888b51dc3d32dbe90.bitwarden.com -carLicense: A7QMCT -departmentNumber: 1148 -employeeType: Employee -homePhone: +1 510 766-7658 -initials: B. K. -mobile: +1 510 354-8424 -pager: +1 510 126-5787 -roomNumber: 9618 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Petar Khatri,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petar Khatri -sn: Khatri -description: This is Petar Khatri's description -facsimileTelephoneNumber: +1 818 700-9034 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 486-4333 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: KhatriP -givenName: Petar -mail: KhatriP@8805d6cd448b4a24b0d06f88effec17a.bitwarden.com -carLicense: VEIAP1 -departmentNumber: 2648 -employeeType: Normal -homePhone: +1 818 615-5633 -initials: P. K. -mobile: +1 818 904-4130 -pager: +1 818 643-4693 -roomNumber: 9580 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Paige Poustchi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paige Poustchi -sn: Poustchi -description: This is Paige Poustchi's description -facsimileTelephoneNumber: +1 510 802-8793 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 500-9384 -title: Master Peons Artist -userPassword: Password1 -uid: PoustchP -givenName: Paige -mail: PoustchP@108d9f732ac3490887754db53858df8a.bitwarden.com -carLicense: OC5DFT -departmentNumber: 1860 -employeeType: Contract -homePhone: +1 510 438-2705 -initials: P. P. -mobile: +1 510 602-6690 -pager: +1 510 360-9222 -roomNumber: 9735 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jessa Dias,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessa Dias -sn: Dias -description: This is Jessa Dias's description -facsimileTelephoneNumber: +1 408 812-2698 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 128-1698 -title: Junior Payroll Developer -userPassword: Password1 -uid: DiasJ -givenName: Jessa -mail: DiasJ@8c8779840fce4d49b2efa3b601dc72f3.bitwarden.com -carLicense: MWVS6T -departmentNumber: 3167 -employeeType: Normal -homePhone: +1 408 921-3960 -initials: J. D. -mobile: +1 408 521-6909 -pager: +1 408 590-2060 -roomNumber: 9591 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zorah Purohit,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zorah Purohit -sn: Purohit -description: This is Zorah Purohit's description -facsimileTelephoneNumber: +1 213 793-2598 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 505-3250 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: PurohitZ -givenName: Zorah -mail: PurohitZ@5abf2b8f947a433ea32c981885ccae42.bitwarden.com -carLicense: 1IC618 -departmentNumber: 8832 -employeeType: Employee -homePhone: +1 213 492-1719 -initials: Z. P. -mobile: +1 213 921-3210 -pager: +1 213 222-7888 -roomNumber: 8218 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shoshanna Talevi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shoshanna Talevi -sn: Talevi -description: This is Shoshanna Talevi's description -facsimileTelephoneNumber: +1 415 498-6889 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 415 543-6184 -title: Associate Peons Engineer -userPassword: Password1 -uid: TaleviS -givenName: Shoshanna -mail: TaleviS@c81ed34bb34947a5895b38d18b584ea9.bitwarden.com -carLicense: CKG5EW -departmentNumber: 5387 -employeeType: Employee -homePhone: +1 415 961-2651 -initials: S. T. -mobile: +1 415 702-4018 -pager: +1 415 597-6438 -roomNumber: 8452 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Priore Hastings,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Priore Hastings -sn: Hastings -description: This is Priore Hastings's description -facsimileTelephoneNumber: +1 818 497-9353 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 255-3870 -title: Chief Administrative Stooge -userPassword: Password1 -uid: HastingP -givenName: Priore -mail: HastingP@a189ef9bea1d4aa0817496c23ee8a14a.bitwarden.com -carLicense: MIHFWB -departmentNumber: 3023 -employeeType: Normal -homePhone: +1 818 229-7164 -initials: P. H. -mobile: +1 818 553-1202 -pager: +1 818 591-7112 -roomNumber: 9552 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tulip Waytowich,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tulip Waytowich -sn: Waytowich -description: This is Tulip Waytowich's description -facsimileTelephoneNumber: +1 804 474-4660 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 937-9637 -title: Chief Administrative Punk -userPassword: Password1 -uid: WaytowiT -givenName: Tulip -mail: WaytowiT@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com -carLicense: 7TLBGV -departmentNumber: 5416 -employeeType: Normal -homePhone: +1 804 687-7165 -initials: T. W. -mobile: +1 804 818-4960 -pager: +1 804 974-1726 -roomNumber: 9792 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hirooki Skwarok,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hirooki Skwarok -sn: Skwarok -description: This is Hirooki Skwarok's description -facsimileTelephoneNumber: +1 415 244-8276 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 843-6347 -title: Master Peons Director -userPassword: Password1 -uid: SkwarokH -givenName: Hirooki -mail: SkwarokH@9d0c1ab997a64b1aa5f189a424192827.bitwarden.com -carLicense: OT9S4G -departmentNumber: 2870 -employeeType: Contract -homePhone: +1 415 440-6913 -initials: H. S. -mobile: +1 415 417-1209 -pager: +1 415 661-2513 -roomNumber: 9182 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Balaji Brogden,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Balaji Brogden -sn: Brogden -description: This is Balaji Brogden's description -facsimileTelephoneNumber: +1 804 658-1748 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 927-3689 -title: Chief Product Testing Czar -userPassword: Password1 -uid: BrogdenB -givenName: Balaji -mail: BrogdenB@eea80c8a097c479ea0dd92bdda8bd86a.bitwarden.com -carLicense: WIFFB6 -departmentNumber: 3283 -employeeType: Contract -homePhone: +1 804 268-3732 -initials: B. B. -mobile: +1 804 567-9739 -pager: +1 804 289-6492 -roomNumber: 8974 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Zola Cuddihey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zola Cuddihey -sn: Cuddihey -description: This is Zola Cuddihey's description -facsimileTelephoneNumber: +1 206 985-6431 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 945-1762 -title: Associate Payroll President -userPassword: Password1 -uid: CuddiheZ -givenName: Zola -mail: CuddiheZ@ed7e2f8d7425488d82f7ded229b79bb7.bitwarden.com -carLicense: EI51HT -departmentNumber: 9298 -employeeType: Normal -homePhone: +1 206 600-8908 -initials: Z. C. -mobile: +1 206 326-6538 -pager: +1 206 698-3047 -roomNumber: 8257 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=JeanDenis Intihar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanDenis Intihar -sn: Intihar -description: This is JeanDenis Intihar's description -facsimileTelephoneNumber: +1 804 679-9345 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 804 325-1254 -title: Supreme Management Developer -userPassword: Password1 -uid: IntiharJ -givenName: JeanDenis -mail: IntiharJ@e5815cb148a4476da087f6d68289008e.bitwarden.com -carLicense: 6ND15J -departmentNumber: 3679 -employeeType: Normal -homePhone: +1 804 844-2314 -initials: J. I. -mobile: +1 804 494-9734 -pager: +1 804 236-3620 -roomNumber: 8284 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rejean Marc,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rejean Marc -sn: Marc -description: This is Rejean Marc's description -facsimileTelephoneNumber: +1 408 805-2884 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 821-4259 -title: Associate Management Architect -userPassword: Password1 -uid: MarcR -givenName: Rejean -mail: MarcR@497dbd8e2321422c853f4b9c5d8bb34f.bitwarden.com -carLicense: 64LQ1V -departmentNumber: 6556 -employeeType: Normal -homePhone: +1 408 631-3010 -initials: R. M. -mobile: +1 408 160-8804 -pager: +1 408 836-4520 -roomNumber: 8599 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aly Mooney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aly Mooney -sn: Mooney -description: This is Aly Mooney's description -facsimileTelephoneNumber: +1 408 720-8697 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 400-6783 -title: Supreme Product Development President -userPassword: Password1 -uid: MooneyA -givenName: Aly -mail: MooneyA@d0494e96e3ad464e9c20a3d7c613cc77.bitwarden.com -carLicense: SHAXYD -departmentNumber: 8874 -employeeType: Employee -homePhone: +1 408 647-9269 -initials: A. M. -mobile: +1 408 882-2772 -pager: +1 408 515-8485 -roomNumber: 9537 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Daniele Mondor,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daniele Mondor -sn: Mondor -description: This is Daniele Mondor's description -facsimileTelephoneNumber: +1 408 674-7293 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 483-1964 -title: Associate Payroll Grunt -userPassword: Password1 -uid: MondorD -givenName: Daniele -mail: MondorD@49c91dea2e0244bc9e7e6873f695d864.bitwarden.com -carLicense: VOE5UJ -departmentNumber: 8027 -employeeType: Employee -homePhone: +1 408 506-5725 -initials: D. M. -mobile: +1 408 360-1647 -pager: +1 408 451-7010 -roomNumber: 8997 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bethanne Pietromonaco -sn: Pietromonaco -description: This is Bethanne Pietromonaco's description -facsimileTelephoneNumber: +1 510 940-9612 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 686-4450 -title: Master Peons Technician -userPassword: Password1 -uid: PietromB -givenName: Bethanne -mail: PietromB@305e27c7ee6b4670a05bbda0ab5d7f89.bitwarden.com -carLicense: AR9HKY -departmentNumber: 8447 -employeeType: Normal -homePhone: +1 510 484-8722 -initials: B. P. -mobile: +1 510 158-7756 -pager: +1 510 778-1312 -roomNumber: 8085 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Charman Feeley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charman Feeley -sn: Feeley -description: This is Charman Feeley's description -facsimileTelephoneNumber: +1 415 320-5359 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 223-1823 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: FeeleyC -givenName: Charman -mail: FeeleyC@f2fad2df78014e219f0dfac94c80d8ea.bitwarden.com -carLicense: 35EKRJ -departmentNumber: 3546 -employeeType: Normal -homePhone: +1 415 654-3589 -initials: C. F. -mobile: +1 415 745-2577 -pager: +1 415 988-3658 -roomNumber: 9536 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Auto Arwakhi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Auto Arwakhi -sn: Arwakhi -description: This is Auto Arwakhi's description -facsimileTelephoneNumber: +1 510 534-8856 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 844-4390 -title: Junior Peons Assistant -userPassword: Password1 -uid: ArwakhiA -givenName: Auto -mail: ArwakhiA@9a52b4299dba4fcc9447b288652d9c6c.bitwarden.com -carLicense: 9V42NK -departmentNumber: 1971 -employeeType: Contract -homePhone: +1 510 191-8794 -initials: A. A. -mobile: +1 510 114-6165 -pager: +1 510 827-4095 -roomNumber: 9623 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Paulette Lunn,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulette Lunn -sn: Lunn -description: This is Paulette Lunn's description -facsimileTelephoneNumber: +1 206 500-8539 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 995-2987 -title: Master Payroll Punk -userPassword: Password1 -uid: LunnP -givenName: Paulette -mail: LunnP@09621247c2534422b65027556ba23ec6.bitwarden.com -carLicense: XE5OWN -departmentNumber: 8985 -employeeType: Normal -homePhone: +1 206 102-6974 -initials: P. L. -mobile: +1 206 292-9186 -pager: +1 206 808-9508 -roomNumber: 8149 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saraann Lowrie -sn: Lowrie -description: This is Saraann Lowrie's description -facsimileTelephoneNumber: +1 408 311-3463 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 388-3367 -title: Chief Human Resources Stooge -userPassword: Password1 -uid: LowrieS -givenName: Saraann -mail: LowrieS@318df10c24464190a253b688eda7b7e6.bitwarden.com -carLicense: A4CYWD -departmentNumber: 1159 -employeeType: Contract -homePhone: +1 408 655-6012 -initials: S. L. -mobile: +1 408 467-4280 -pager: +1 408 366-8138 -roomNumber: 8726 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kellia Froud,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kellia Froud -sn: Froud -description: This is Kellia Froud's description -facsimileTelephoneNumber: +1 804 127-4487 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 766-3421 -title: Associate Management Figurehead -userPassword: Password1 -uid: FroudK -givenName: Kellia -mail: FroudK@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com -carLicense: N9IFXA -departmentNumber: 3585 -employeeType: Normal -homePhone: +1 804 763-1328 -initials: K. F. -mobile: +1 804 658-6754 -pager: +1 804 960-4707 -roomNumber: 9088 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vittorio Calis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vittorio Calis -sn: Calis -description: This is Vittorio Calis's description -facsimileTelephoneNumber: +1 818 564-2523 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 818 307-1935 -title: Junior Payroll Stooge -userPassword: Password1 -uid: CalisV -givenName: Vittorio -mail: CalisV@35c60780308849d18668cfb9d96a5c3c.bitwarden.com -carLicense: MAAGKN -departmentNumber: 8206 -employeeType: Employee -homePhone: +1 818 559-2201 -initials: V. C. -mobile: +1 818 324-5406 -pager: +1 818 872-2628 -roomNumber: 8139 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maryam Doan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryam Doan -sn: Doan -description: This is Maryam Doan's description -facsimileTelephoneNumber: +1 415 263-9856 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 332-5331 -title: Supreme Product Development Admin -userPassword: Password1 -uid: DoanM -givenName: Maryam -mail: DoanM@715d11b1e91d44f4af22ec63f72507bd.bitwarden.com -carLicense: KLE55V -departmentNumber: 5129 -employeeType: Normal -homePhone: +1 415 185-8348 -initials: M. D. -mobile: +1 415 670-5570 -pager: +1 415 970-1348 -roomNumber: 8598 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WaiChau Blaiklock -sn: Blaiklock -description: This is WaiChau Blaiklock's description -facsimileTelephoneNumber: +1 510 656-3966 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 510 225-7490 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: BlaikloW -givenName: WaiChau -mail: BlaikloW@6529706823d04eeaa37acaabefd44ca6.bitwarden.com -carLicense: LUCL91 -departmentNumber: 1161 -employeeType: Employee -homePhone: +1 510 612-5751 -initials: W. B. -mobile: +1 510 747-7731 -pager: +1 510 367-1560 -roomNumber: 9053 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nathalia Haerle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nathalia Haerle -sn: Haerle -description: This is Nathalia Haerle's description -facsimileTelephoneNumber: +1 206 308-9177 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 625-6506 -title: Master Management Stooge -userPassword: Password1 -uid: HaerleN -givenName: Nathalia -mail: HaerleN@96032122dc744c8fbec592d140680fed.bitwarden.com -carLicense: THASMH -departmentNumber: 7477 -employeeType: Contract -homePhone: +1 206 800-9134 -initials: N. H. -mobile: +1 206 920-9569 -pager: +1 206 296-7441 -roomNumber: 9398 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Krystn OHeocha,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krystn OHeocha -sn: OHeocha -description: This is Krystn OHeocha's description -facsimileTelephoneNumber: +1 804 748-6327 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 881-5706 -title: Chief Payroll Architect -userPassword: Password1 -uid: OHeochaK -givenName: Krystn -mail: OHeochaK@a3cde3b2f5de4fe5ac11c48bb6df28f3.bitwarden.com -carLicense: DKDDP2 -departmentNumber: 2309 -employeeType: Contract -homePhone: +1 804 463-2670 -initials: K. O. -mobile: +1 804 931-7963 -pager: +1 804 174-8769 -roomNumber: 8758 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandea Gaylor -sn: Gaylor -description: This is Brandea Gaylor's description -facsimileTelephoneNumber: +1 206 678-6357 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 814-8956 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: GaylorB -givenName: Brandea -mail: GaylorB@69527a1c41b04ddda793d00fb5a21087.bitwarden.com -carLicense: ROVLDN -departmentNumber: 4945 -employeeType: Employee -homePhone: +1 206 401-9721 -initials: B. G. -mobile: +1 206 520-6544 -pager: +1 206 738-8111 -roomNumber: 8685 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carena Chaplin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carena Chaplin -sn: Chaplin -description: This is Carena Chaplin's description -facsimileTelephoneNumber: +1 415 547-5931 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 313-4838 -title: Junior Product Development Vice President -userPassword: Password1 -uid: ChaplinC -givenName: Carena -mail: ChaplinC@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com -carLicense: HNXRR4 -departmentNumber: 4467 -employeeType: Contract -homePhone: +1 415 285-1691 -initials: C. C. -mobile: +1 415 339-6441 -pager: +1 415 843-4507 -roomNumber: 8022 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eden MacDonald,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eden MacDonald -sn: MacDonald -description: This is Eden MacDonald's description -facsimileTelephoneNumber: +1 206 799-7422 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 206 143-5477 -title: Junior Janitorial Architect -userPassword: Password1 -uid: MacDonaE -givenName: Eden -mail: MacDonaE@30c53c45b6f04d6394b59a72c6e53b2d.bitwarden.com -carLicense: CNLVBD -departmentNumber: 5366 -employeeType: Contract -homePhone: +1 206 774-4941 -initials: E. M. -mobile: +1 206 665-2600 -pager: +1 206 497-3772 -roomNumber: 9759 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jo Snuggs,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jo Snuggs -sn: Snuggs -description: This is Jo Snuggs's description -facsimileTelephoneNumber: +1 804 610-2012 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 381-6725 -title: Chief Janitorial Czar -userPassword: Password1 -uid: SnuggsJ -givenName: Jo -mail: SnuggsJ@811c1b0947ab4a6b8d3a5a6b67955a48.bitwarden.com -carLicense: H5QSCB -departmentNumber: 7980 -employeeType: Employee -homePhone: +1 804 419-9343 -initials: J. S. -mobile: +1 804 539-9476 -pager: +1 804 711-4052 -roomNumber: 8144 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hsinshi Sheth,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hsinshi Sheth -sn: Sheth -description: This is Hsinshi Sheth's description -facsimileTelephoneNumber: +1 510 178-7853 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 642-2840 -title: Master Peons Dictator -userPassword: Password1 -uid: ShethH -givenName: Hsinshi -mail: ShethH@8d06f5c0b94f46838a9f2ef1a0adee08.bitwarden.com -carLicense: 2WB3OG -departmentNumber: 7119 -employeeType: Employee -homePhone: +1 510 619-5015 -initials: H. S. -mobile: +1 510 767-5431 -pager: +1 510 582-7670 -roomNumber: 8244 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tata Whisler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tata Whisler -sn: Whisler -description: This is Tata Whisler's description -facsimileTelephoneNumber: +1 408 813-3863 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 751-2456 -title: Master Product Development Stooge -userPassword: Password1 -uid: WhislerT -givenName: Tata -mail: WhislerT@3905d18a9f18484ba7305c447e951282.bitwarden.com -carLicense: 14O29F -departmentNumber: 8392 -employeeType: Contract -homePhone: +1 408 767-5443 -initials: T. W. -mobile: +1 408 343-1246 -pager: +1 408 717-3498 -roomNumber: 8128 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Troy Hilton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Troy Hilton -sn: Hilton -description: This is Troy Hilton's description -facsimileTelephoneNumber: +1 206 703-6449 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 909-5821 -title: Supreme Payroll Assistant -userPassword: Password1 -uid: HiltonT -givenName: Troy -mail: HiltonT@4f6eaa02d34342bb804768db4a955608.bitwarden.com -carLicense: TOBR18 -departmentNumber: 7085 -employeeType: Employee -homePhone: +1 206 659-1029 -initials: T. H. -mobile: +1 206 231-5508 -pager: +1 206 274-3445 -roomNumber: 8052 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Binni Siewert,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binni Siewert -sn: Siewert -description: This is Binni Siewert's description -facsimileTelephoneNumber: +1 415 136-8385 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 156-3021 -title: Supreme Product Development Director -userPassword: Password1 -uid: SiewertB -givenName: Binni -mail: SiewertB@30477bd611094e598c75e08386158998.bitwarden.com -carLicense: 05EWUE -departmentNumber: 8746 -employeeType: Normal -homePhone: +1 415 976-5879 -initials: B. S. -mobile: +1 415 343-5239 -pager: +1 415 122-9305 -roomNumber: 8689 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alyse Wingo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alyse Wingo -sn: Wingo -description: This is Alyse Wingo's description -facsimileTelephoneNumber: +1 206 212-5665 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 545-5651 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: WingoA -givenName: Alyse -mail: WingoA@348abbda65d940ed90bea2bd06d4b311.bitwarden.com -carLicense: FND5XH -departmentNumber: 1646 -employeeType: Contract -homePhone: +1 206 287-3458 -initials: A. W. -mobile: +1 206 818-2159 -pager: +1 206 307-9346 -roomNumber: 9814 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ladan Chilausky,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ladan Chilausky -sn: Chilausky -description: This is Ladan Chilausky's description -facsimileTelephoneNumber: +1 804 133-6854 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 159-8600 -title: Master Product Development Vice President -userPassword: Password1 -uid: ChilausL -givenName: Ladan -mail: ChilausL@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com -carLicense: 4TMT6W -departmentNumber: 9387 -employeeType: Contract -homePhone: +1 804 674-1042 -initials: L. C. -mobile: +1 804 495-8302 -pager: +1 804 618-5428 -roomNumber: 8354 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gwenette Farago,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwenette Farago -sn: Farago -description: This is Gwenette Farago's description -facsimileTelephoneNumber: +1 415 978-5332 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 613-1495 -title: Master Management Czar -userPassword: Password1 -uid: FaragoG -givenName: Gwenette -mail: FaragoG@1d41a9185db448b89563a6b96b582da2.bitwarden.com -carLicense: PXWTGC -departmentNumber: 7108 -employeeType: Normal -homePhone: +1 415 646-6330 -initials: G. F. -mobile: +1 415 468-2184 -pager: +1 415 746-2226 -roomNumber: 9196 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Narinder Staffeld,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Narinder Staffeld -sn: Staffeld -description: This is Narinder Staffeld's description -facsimileTelephoneNumber: +1 510 759-6940 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 610-8054 -title: Junior Payroll Technician -userPassword: Password1 -uid: StaffelN -givenName: Narinder -mail: StaffelN@18b94ac27b2d4865a7f8d4b03ab48dbb.bitwarden.com -carLicense: XVAVWV -departmentNumber: 2787 -employeeType: Contract -homePhone: +1 510 984-4878 -initials: N. S. -mobile: +1 510 816-2684 -pager: +1 510 596-9948 -roomNumber: 8176 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nir Dionne,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nir Dionne -sn: Dionne -description: This is Nir Dionne's description -facsimileTelephoneNumber: +1 408 201-6580 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 825-1455 -title: Master Management Admin -userPassword: Password1 -uid: DionneN -givenName: Nir -mail: DionneN@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com -carLicense: QECKTG -departmentNumber: 5210 -employeeType: Employee -homePhone: +1 408 580-6361 -initials: N. D. -mobile: +1 408 390-7379 -pager: +1 408 789-9450 -roomNumber: 8460 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natalina Kapuscinski -sn: Kapuscinski -description: This is Natalina Kapuscinski's description -facsimileTelephoneNumber: +1 415 152-2366 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 123-6353 -title: Associate Payroll Dictator -userPassword: Password1 -uid: KapusciN -givenName: Natalina -mail: KapusciN@feab464eed244fca93a5368f188977a1.bitwarden.com -carLicense: J6STGG -departmentNumber: 6697 -employeeType: Employee -homePhone: +1 415 262-5054 -initials: N. K. -mobile: +1 415 118-5214 -pager: +1 415 116-3503 -roomNumber: 9401 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=LouisRene Ellens,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LouisRene Ellens -sn: Ellens -description: This is LouisRene Ellens's description -facsimileTelephoneNumber: +1 415 853-6021 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 596-5234 -title: Master Administrative Pinhead -userPassword: Password1 -uid: EllensL -givenName: LouisRene -mail: EllensL@9b030c1d6ce3438f956ad1da5fffc998.bitwarden.com -carLicense: N2UU6X -departmentNumber: 2796 -employeeType: Contract -homePhone: +1 415 392-5311 -initials: L. E. -mobile: +1 415 561-8172 -pager: +1 415 481-3642 -roomNumber: 9113 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cesya Delbrouck -sn: Delbrouck -description: This is Cesya Delbrouck's description -facsimileTelephoneNumber: +1 804 209-5296 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 181-2764 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: DelbrouC -givenName: Cesya -mail: DelbrouC@1aa75fefc8034a8cbf83e5fc6e04d8e3.bitwarden.com -carLicense: SLR1PE -departmentNumber: 9124 -employeeType: Employee -homePhone: +1 804 334-3832 -initials: C. D. -mobile: +1 804 171-8855 -pager: +1 804 405-8918 -roomNumber: 9287 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Oneida Sallee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oneida Sallee -sn: Sallee -description: This is Oneida Sallee's description -facsimileTelephoneNumber: +1 408 176-3298 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 142-8601 -title: Chief Product Development Manager -userPassword: Password1 -uid: SalleeO -givenName: Oneida -mail: SalleeO@252628d3a8a547b4b8173e8a6395d7c3.bitwarden.com -carLicense: BEF0JN -departmentNumber: 2027 -employeeType: Employee -homePhone: +1 408 174-4799 -initials: O. S. -mobile: +1 408 994-6222 -pager: +1 408 313-2889 -roomNumber: 8746 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Humphrey Redish,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Humphrey Redish -sn: Redish -description: This is Humphrey Redish's description -facsimileTelephoneNumber: +1 213 996-9211 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 220-6391 -title: Master Peons Sales Rep -userPassword: Password1 -uid: RedishH -givenName: Humphrey -mail: RedishH@a744dde5438d400a9f30fb0b1e05aeb2.bitwarden.com -carLicense: AR1OY5 -departmentNumber: 9805 -employeeType: Normal -homePhone: +1 213 871-1285 -initials: H. R. -mobile: +1 213 563-7847 -pager: +1 213 874-4892 -roomNumber: 9638 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kerry Labarge,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kerry Labarge -sn: Labarge -description: This is Kerry Labarge's description -facsimileTelephoneNumber: +1 415 221-4702 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 184-4573 -title: Chief Administrative Grunt -userPassword: Password1 -uid: LabargeK -givenName: Kerry -mail: LabargeK@96b5430a2ccc4177bd773424088b496b.bitwarden.com -carLicense: 9B4TD1 -departmentNumber: 6233 -employeeType: Contract -homePhone: +1 415 868-9828 -initials: K. L. -mobile: +1 415 774-7586 -pager: +1 415 697-3497 -roomNumber: 8145 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquenetta Dyna -sn: Dyna -description: This is Jacquenetta Dyna's description -facsimileTelephoneNumber: +1 804 555-9340 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 500-1888 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: DynaJ -givenName: Jacquenetta -mail: DynaJ@ee1ca998ef0c4e3c87539ff6e0c1d116.bitwarden.com -carLicense: V0CJO6 -departmentNumber: 4636 -employeeType: Normal -homePhone: +1 804 369-2953 -initials: J. D. -mobile: +1 804 876-8278 -pager: +1 804 199-8786 -roomNumber: 9838 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Quyen Aronstam,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quyen Aronstam -sn: Aronstam -description: This is Quyen Aronstam's description -facsimileTelephoneNumber: +1 213 653-6390 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 935-7469 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: AronstaQ -givenName: Quyen -mail: AronstaQ@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com -carLicense: DBKBH4 -departmentNumber: 6945 -employeeType: Normal -homePhone: +1 213 374-2706 -initials: Q. A. -mobile: +1 213 176-1916 -pager: +1 213 477-1215 -roomNumber: 9099 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=KaiMing Parker,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KaiMing Parker -sn: Parker -description: This is KaiMing Parker's description -facsimileTelephoneNumber: +1 804 329-8514 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 683-3691 -title: Master Administrative Consultant -userPassword: Password1 -uid: ParkerK -givenName: KaiMing -mail: ParkerK@c0e366bec54b485a8d61f1970ea7c375.bitwarden.com -carLicense: UMI2TQ -departmentNumber: 2987 -employeeType: Contract -homePhone: +1 804 919-4654 -initials: K. P. -mobile: +1 804 673-1987 -pager: +1 804 100-9341 -roomNumber: 8926 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shlomo Trottier -sn: Trottier -description: This is Shlomo Trottier's description -facsimileTelephoneNumber: +1 213 557-7728 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 831-1337 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: TrottieS -givenName: Shlomo -mail: TrottieS@0998558a764541358e8e70ab479cfe9c.bitwarden.com -carLicense: XVUH0Q -departmentNumber: 3730 -employeeType: Normal -homePhone: +1 213 764-8300 -initials: S. T. -mobile: +1 213 443-4299 -pager: +1 213 657-9572 -roomNumber: 8028 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Laure Norman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laure Norman -sn: Norman -description: This is Laure Norman's description -facsimileTelephoneNumber: +1 804 296-9331 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 929-5066 -title: Master Product Testing Grunt -userPassword: Password1 -uid: NormanL -givenName: Laure -mail: NormanL@018225420a5943d2a91cb3848fc99ee2.bitwarden.com -carLicense: UEEK4W -departmentNumber: 2958 -employeeType: Employee -homePhone: +1 804 991-2106 -initials: L. N. -mobile: +1 804 641-4503 -pager: +1 804 916-4088 -roomNumber: 8291 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fabienne Koprulu,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fabienne Koprulu -sn: Koprulu -description: This is Fabienne Koprulu's description -facsimileTelephoneNumber: +1 213 740-4551 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 213 777-1514 -title: Junior Peons Admin -userPassword: Password1 -uid: KopruluF -givenName: Fabienne -mail: KopruluF@9a3c3b333ac543bcbc3719d5e5f7e60a.bitwarden.com -carLicense: LVLNQC -departmentNumber: 3277 -employeeType: Normal -homePhone: +1 213 900-3951 -initials: F. K. -mobile: +1 213 641-4488 -pager: +1 213 283-9585 -roomNumber: 9441 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Prue Dipace,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prue Dipace -sn: Dipace -description: This is Prue Dipace's description -facsimileTelephoneNumber: +1 804 592-4487 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 406-5109 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: DipaceP -givenName: Prue -mail: DipaceP@b7704ef8877240b4aae9e468e0491f7f.bitwarden.com -carLicense: Y0SI4K -departmentNumber: 4080 -employeeType: Normal -homePhone: +1 804 562-5711 -initials: P. D. -mobile: +1 804 952-2111 -pager: +1 804 614-4567 -roomNumber: 9440 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Randolph Holtze,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randolph Holtze -sn: Holtze -description: This is Randolph Holtze's description -facsimileTelephoneNumber: +1 415 960-4406 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 599-9906 -title: Supreme Payroll Writer -userPassword: Password1 -uid: HoltzeR -givenName: Randolph -mail: HoltzeR@b2c5462eaeaa4640a2c56a8da0727115.bitwarden.com -carLicense: X2TQ9Y -departmentNumber: 1408 -employeeType: Employee -homePhone: +1 415 215-2674 -initials: R. H. -mobile: +1 415 569-3499 -pager: +1 415 691-1956 -roomNumber: 8475 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Julianna Amin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julianna Amin -sn: Amin -description: This is Julianna Amin's description -facsimileTelephoneNumber: +1 213 144-5156 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 847-9323 -title: Junior Payroll Technician -userPassword: Password1 -uid: AminJ -givenName: Julianna -mail: AminJ@e6477a83acf9482988792cb439447756.bitwarden.com -carLicense: KEWWTM -departmentNumber: 5260 -employeeType: Normal -homePhone: +1 213 187-4315 -initials: J. A. -mobile: +1 213 879-4912 -pager: +1 213 563-9402 -roomNumber: 8633 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Iris Berryhill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Iris Berryhill -sn: Berryhill -description: This is Iris Berryhill's description -facsimileTelephoneNumber: +1 510 234-6849 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 299-1793 -title: Junior Product Testing Admin -userPassword: Password1 -uid: BerryhiI -givenName: Iris -mail: BerryhiI@2e9a9ce249974ccc8921959c5ef73583.bitwarden.com -carLicense: 2DEUIG -departmentNumber: 5223 -employeeType: Contract -homePhone: +1 510 797-5018 -initials: I. B. -mobile: +1 510 394-2508 -pager: +1 510 577-3277 -roomNumber: 9596 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mahendra Michelussi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mahendra Michelussi -sn: Michelussi -description: This is Mahendra Michelussi's description -facsimileTelephoneNumber: +1 818 937-9000 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 812-1931 -title: Junior Management Admin -userPassword: Password1 -uid: MicheluM -givenName: Mahendra -mail: MicheluM@a09d9f82d6b74098a2eff99c6eae04fe.bitwarden.com -carLicense: GYPRXN -departmentNumber: 7070 -employeeType: Contract -homePhone: +1 818 246-8850 -initials: M. M. -mobile: +1 818 444-2686 -pager: +1 818 856-3398 -roomNumber: 8961 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Melesa Beagley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melesa Beagley -sn: Beagley -description: This is Melesa Beagley's description -facsimileTelephoneNumber: +1 206 765-7493 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 146-2854 -title: Supreme Human Resources Artist -userPassword: Password1 -uid: BeagleyM -givenName: Melesa -mail: BeagleyM@522cf8a1d4424cc392ce0a8035040445.bitwarden.com -carLicense: 2MXWMN -departmentNumber: 5980 -employeeType: Employee -homePhone: +1 206 191-2984 -initials: M. B. -mobile: +1 206 897-4702 -pager: +1 206 963-9121 -roomNumber: 8002 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shayna Godcharles -sn: Godcharles -description: This is Shayna Godcharles's description -facsimileTelephoneNumber: +1 818 589-7198 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 899-7915 -title: Master Human Resources Vice President -userPassword: Password1 -uid: GodcharS -givenName: Shayna -mail: GodcharS@325563a273824a869e09481a2b6a16f3.bitwarden.com -carLicense: 4JUDNV -departmentNumber: 9345 -employeeType: Employee -homePhone: +1 818 663-2680 -initials: S. G. -mobile: +1 818 746-8213 -pager: +1 818 495-9624 -roomNumber: 9902 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Khue Medeiros,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khue Medeiros -sn: Medeiros -description: This is Khue Medeiros's description -facsimileTelephoneNumber: +1 415 550-4855 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 415 575-2811 -title: Master Payroll Dictator -userPassword: Password1 -uid: MedeiroK -givenName: Khue -mail: MedeiroK@7dfa0e40dad7443abc6740798a2e0865.bitwarden.com -carLicense: BAK6J7 -departmentNumber: 1278 -employeeType: Employee -homePhone: +1 415 506-9792 -initials: K. M. -mobile: +1 415 394-8625 -pager: +1 415 312-6569 -roomNumber: 8999 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Evangeline Vance,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evangeline Vance -sn: Vance -description: This is Evangeline Vance's description -facsimileTelephoneNumber: +1 213 408-2594 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 760-4490 -title: Junior Product Development Developer -userPassword: Password1 -uid: VanceE -givenName: Evangeline -mail: VanceE@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com -carLicense: L0WYB4 -departmentNumber: 8568 -employeeType: Contract -homePhone: +1 213 407-1698 -initials: E. V. -mobile: +1 213 900-8226 -pager: +1 213 288-1672 -roomNumber: 9870 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chrystel Auerbach -sn: Auerbach -description: This is Chrystel Auerbach's description -facsimileTelephoneNumber: +1 818 727-1390 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 386-1589 -title: Junior Human Resources Evangelist -userPassword: Password1 -uid: AuerbacC -givenName: Chrystel -mail: AuerbacC@89e33259b1f341dda582db87064be4b8.bitwarden.com -carLicense: HSOUUD -departmentNumber: 9774 -employeeType: Employee -homePhone: +1 818 392-1762 -initials: C. A. -mobile: +1 818 471-3090 -pager: +1 818 216-3799 -roomNumber: 9422 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Czes Corkey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Czes Corkey -sn: Corkey -description: This is Czes Corkey's description -facsimileTelephoneNumber: +1 408 344-6360 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 136-8894 -title: Master Human Resources Technician -userPassword: Password1 -uid: CorkeyC -givenName: Czes -mail: CorkeyC@fca42d05acbe47a69668ab85d76a4968.bitwarden.com -carLicense: MYJ8Y5 -departmentNumber: 8389 -employeeType: Employee -homePhone: +1 408 445-5576 -initials: C. C. -mobile: +1 408 781-8358 -pager: +1 408 775-7319 -roomNumber: 8751 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Malena Cronan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malena Cronan -sn: Cronan -description: This is Malena Cronan's description -facsimileTelephoneNumber: +1 408 357-4859 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 408 674-1489 -title: Associate Administrative Grunt -userPassword: Password1 -uid: CronanM -givenName: Malena -mail: CronanM@1c6f0f2a2fa54440bc63852786ac9fdb.bitwarden.com -carLicense: DX4KK9 -departmentNumber: 3042 -employeeType: Employee -homePhone: +1 408 499-7914 -initials: M. C. -mobile: +1 408 686-7058 -pager: +1 408 125-5707 -roomNumber: 8191 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maia Lamy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maia Lamy -sn: Lamy -description: This is Maia Lamy's description -facsimileTelephoneNumber: +1 415 685-3228 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 786-4097 -title: Master Payroll Stooge -userPassword: Password1 -uid: LamyM -givenName: Maia -mail: LamyM@e1b27383fbe2441a83c6100b48427182.bitwarden.com -carLicense: 6OB80Q -departmentNumber: 6119 -employeeType: Contract -homePhone: +1 415 254-9579 -initials: M. L. -mobile: +1 415 183-7007 -pager: +1 415 716-2701 -roomNumber: 8705 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gates Frape,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gates Frape -sn: Frape -description: This is Gates Frape's description -facsimileTelephoneNumber: +1 206 666-3370 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 405-3979 -title: Supreme Product Development Artist -userPassword: Password1 -uid: FrapeG -givenName: Gates -mail: FrapeG@c927612f4cbe4fcf841a3d7e140a391c.bitwarden.com -carLicense: YVVJNO -departmentNumber: 3539 -employeeType: Employee -homePhone: +1 206 393-9683 -initials: G. F. -mobile: +1 206 589-1037 -pager: +1 206 739-1686 -roomNumber: 8016 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Berangere Budihardjo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berangere Budihardjo -sn: Budihardjo -description: This is Berangere Budihardjo's description -facsimileTelephoneNumber: +1 415 303-4938 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 840-6539 -title: Master Management Visionary -userPassword: Password1 -uid: BudiharB -givenName: Berangere -mail: BudiharB@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com -carLicense: A6O8TS -departmentNumber: 4457 -employeeType: Employee -homePhone: +1 415 513-2503 -initials: B. B. -mobile: +1 415 883-8131 -pager: +1 415 528-5916 -roomNumber: 8295 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sheryl Hekel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheryl Hekel -sn: Hekel -description: This is Sheryl Hekel's description -facsimileTelephoneNumber: +1 415 351-3923 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 765-1505 -title: Master Peons Dictator -userPassword: Password1 -uid: HekelS -givenName: Sheryl -mail: HekelS@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com -carLicense: POG3LT -departmentNumber: 7563 -employeeType: Contract -homePhone: +1 415 980-6167 -initials: S. H. -mobile: +1 415 440-4389 -pager: +1 415 852-7214 -roomNumber: 8509 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wargnier Melnyk -sn: Melnyk -description: This is Wargnier Melnyk's description -facsimileTelephoneNumber: +1 415 271-4107 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 566-6436 -title: Supreme Product Development Visionary -userPassword: Password1 -uid: MelnykW -givenName: Wargnier -mail: MelnykW@35074399d1224376ace4f7f6b3944707.bitwarden.com -carLicense: VQPOYA -departmentNumber: 3205 -employeeType: Employee -homePhone: +1 415 934-4596 -initials: W. M. -mobile: +1 415 512-2384 -pager: +1 415 319-9600 -roomNumber: 9103 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Masamichi Lanoue -sn: Lanoue -description: This is Masamichi Lanoue's description -facsimileTelephoneNumber: +1 818 268-8325 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 800-1431 -title: Associate Product Development Mascot -userPassword: Password1 -uid: LanoueM -givenName: Masamichi -mail: LanoueM@4dcaaea580ca474bb2f3cd6f13c671c4.bitwarden.com -carLicense: LWVROL -departmentNumber: 4826 -employeeType: Contract -homePhone: +1 818 130-3216 -initials: M. L. -mobile: +1 818 550-3412 -pager: +1 818 426-8868 -roomNumber: 9154 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kaycee Wu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaycee Wu -sn: Wu -description: This is Kaycee Wu's description -facsimileTelephoneNumber: +1 408 289-9082 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 408 855-5067 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: WuK -givenName: Kaycee -mail: WuK@c36b5ab628a4492284d8bcf464596410.bitwarden.com -carLicense: DQNWQJ -departmentNumber: 8282 -employeeType: Normal -homePhone: +1 408 953-3715 -initials: K. W. -mobile: +1 408 678-3354 -pager: +1 408 954-6174 -roomNumber: 8857 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Herbie Njo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herbie Njo -sn: Njo -description: This is Herbie Njo's description -facsimileTelephoneNumber: +1 510 967-4021 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 634-9241 -title: Master Payroll President -userPassword: Password1 -uid: NjoH -givenName: Herbie -mail: NjoH@0534f193dc3e49e39af35f74a2ae824e.bitwarden.com -carLicense: 8MVF5A -departmentNumber: 8766 -employeeType: Employee -homePhone: +1 510 409-2653 -initials: H. N. -mobile: +1 510 148-3371 -pager: +1 510 305-7530 -roomNumber: 9270 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Devan McCorkell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devan McCorkell -sn: McCorkell -description: This is Devan McCorkell's description -facsimileTelephoneNumber: +1 206 485-8546 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 353-9015 -title: Supreme Management Admin -userPassword: Password1 -uid: McCorkeD -givenName: Devan -mail: McCorkeD@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com -carLicense: DOMKBU -departmentNumber: 8487 -employeeType: Normal -homePhone: +1 206 974-1108 -initials: D. M. -mobile: +1 206 445-3565 -pager: +1 206 712-3503 -roomNumber: 8979 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Crin Landon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crin Landon -sn: Landon -description: This is Crin Landon's description -facsimileTelephoneNumber: +1 213 968-4723 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 213 264-9580 -title: Junior Payroll Manager -userPassword: Password1 -uid: LandonC -givenName: Crin -mail: LandonC@3a57e18936584b66bbd6dab5016a2418.bitwarden.com -carLicense: GCGR7G -departmentNumber: 3835 -employeeType: Contract -homePhone: +1 213 480-2292 -initials: C. L. -mobile: +1 213 232-7086 -pager: +1 213 786-4158 -roomNumber: 9818 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wrennie Dinkel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wrennie Dinkel -sn: Dinkel -description: This is Wrennie Dinkel's description -facsimileTelephoneNumber: +1 408 531-2214 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 223-7556 -title: Master Peons Consultant -userPassword: Password1 -uid: DinkelW -givenName: Wrennie -mail: DinkelW@a1c56eec6729476b83e51d12766bbfe0.bitwarden.com -carLicense: PH60SJ -departmentNumber: 1245 -employeeType: Contract -homePhone: +1 408 443-8759 -initials: W. D. -mobile: +1 408 835-2937 -pager: +1 408 838-4653 -roomNumber: 8216 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Siana Duffney,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siana Duffney -sn: Duffney -description: This is Siana Duffney's description -facsimileTelephoneNumber: +1 510 815-2779 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 241-8054 -title: Master Management Manager -userPassword: Password1 -uid: DuffneyS -givenName: Siana -mail: DuffneyS@831a31deb2a74949a5486f724fd8cfc2.bitwarden.com -carLicense: LE4KAS -departmentNumber: 6783 -employeeType: Contract -homePhone: +1 510 785-7606 -initials: S. D. -mobile: +1 510 294-8539 -pager: +1 510 192-7763 -roomNumber: 9956 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Holst IC,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Holst IC -sn: IC -description: This is Holst IC's description -facsimileTelephoneNumber: +1 804 686-3954 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 577-8876 -title: Junior Product Testing Evangelist -userPassword: Password1 -uid: ICH -givenName: Holst -mail: ICH@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com -carLicense: MQTE1Q -departmentNumber: 5953 -employeeType: Normal -homePhone: +1 804 178-8670 -initials: H. I. -mobile: +1 804 711-1348 -pager: +1 804 127-9645 -roomNumber: 8705 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=SikYin Matney,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SikYin Matney -sn: Matney -description: This is SikYin Matney's description -facsimileTelephoneNumber: +1 804 163-2344 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 559-1555 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: MatneyS -givenName: SikYin -mail: MatneyS@b9e4a0690cd34f8480fc7a1a23da2269.bitwarden.com -carLicense: 9DHDSL -departmentNumber: 5102 -employeeType: Employee -homePhone: +1 804 904-2960 -initials: S. M. -mobile: +1 804 340-5093 -pager: +1 804 279-7855 -roomNumber: 8976 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Masahiro Lauten,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Masahiro Lauten -sn: Lauten -description: This is Masahiro Lauten's description -facsimileTelephoneNumber: +1 206 570-1484 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 189-4439 -title: Associate Peons Mascot -userPassword: Password1 -uid: LautenM -givenName: Masahiro -mail: LautenM@79543dffda8c496eb838ccbc46809c40.bitwarden.com -carLicense: 9J3CP6 -departmentNumber: 3070 -employeeType: Normal -homePhone: +1 206 232-7182 -initials: M. L. -mobile: +1 206 154-6847 -pager: +1 206 472-2351 -roomNumber: 8956 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nash Hesk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nash Hesk -sn: Hesk -description: This is Nash Hesk's description -facsimileTelephoneNumber: +1 408 178-5119 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 780-6079 -title: Master Janitorial Writer -userPassword: Password1 -uid: HeskN -givenName: Nash -mail: HeskN@d350f564497d40f297b86fde9fbf3e8e.bitwarden.com -carLicense: 7KJMC6 -departmentNumber: 1313 -employeeType: Employee -homePhone: +1 408 119-3168 -initials: N. H. -mobile: +1 408 822-1889 -pager: +1 408 940-2540 -roomNumber: 8956 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pier Kimma,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pier Kimma -sn: Kimma -description: This is Pier Kimma's description -facsimileTelephoneNumber: +1 510 929-8908 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 510 693-3652 -title: Master Product Testing Evangelist -userPassword: Password1 -uid: KimmaP -givenName: Pier -mail: KimmaP@df43705c6bc34c44a92745bc3d700137.bitwarden.com -carLicense: V60W6N -departmentNumber: 2761 -employeeType: Employee -homePhone: +1 510 333-1439 -initials: P. K. -mobile: +1 510 381-5204 -pager: +1 510 546-3196 -roomNumber: 9220 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lenee Gryder,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenee Gryder -sn: Gryder -description: This is Lenee Gryder's description -facsimileTelephoneNumber: +1 408 928-5019 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 407-2407 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: GryderL -givenName: Lenee -mail: GryderL@b6dc43d5b48948bcabf31d42dd4a3286.bitwarden.com -carLicense: W5U2HG -departmentNumber: 6351 -employeeType: Employee -homePhone: +1 408 510-6311 -initials: L. G. -mobile: +1 408 755-8038 -pager: +1 408 943-1921 -roomNumber: 8049 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Loesje Javor,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loesje Javor -sn: Javor -description: This is Loesje Javor's description -facsimileTelephoneNumber: +1 206 430-7484 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 763-8534 -title: Associate Product Testing Czar -userPassword: Password1 -uid: JavorL -givenName: Loesje -mail: JavorL@506df50552454f5fafc356a1c35c2a63.bitwarden.com -carLicense: 2U0HGE -departmentNumber: 4743 -employeeType: Normal -homePhone: +1 206 305-7603 -initials: L. J. -mobile: +1 206 649-2859 -pager: +1 206 113-4921 -roomNumber: 8529 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sallie Lehman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sallie Lehman -sn: Lehman -description: This is Sallie Lehman's description -facsimileTelephoneNumber: +1 415 198-4032 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 685-5687 -title: Master Management Fellow -userPassword: Password1 -uid: LehmanS -givenName: Sallie -mail: LehmanS@b7c75c00628342f998e34089fb1fbe29.bitwarden.com -carLicense: NBLRML -departmentNumber: 5785 -employeeType: Contract -homePhone: +1 415 700-7743 -initials: S. L. -mobile: +1 415 846-5870 -pager: +1 415 327-4567 -roomNumber: 9544 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yvette Yun,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yvette Yun -sn: Yun -description: This is Yvette Yun's description -facsimileTelephoneNumber: +1 804 732-4212 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 804 776-7230 -title: Master Human Resources Punk -userPassword: Password1 -uid: YunY -givenName: Yvette -mail: YunY@bea3df99128348b58312efa7b662b9b3.bitwarden.com -carLicense: 4PUIPH -departmentNumber: 4656 -employeeType: Normal -homePhone: +1 804 269-1967 -initials: Y. Y. -mobile: +1 804 608-6089 -pager: +1 804 884-9160 -roomNumber: 8819 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rui Hawi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rui Hawi -sn: Hawi -description: This is Rui Hawi's description -facsimileTelephoneNumber: +1 213 969-8732 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 700-7206 -title: Chief Janitorial Visionary -userPassword: Password1 -uid: HawiR -givenName: Rui -mail: HawiR@3cd7d03398eb49148242d22a819d71a2.bitwarden.com -carLicense: VGSKMQ -departmentNumber: 1585 -employeeType: Contract -homePhone: +1 213 862-4224 -initials: R. H. -mobile: +1 213 275-4199 -pager: +1 213 398-6150 -roomNumber: 9720 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertruda Bredfeldt -sn: Bredfeldt -description: This is Gertruda Bredfeldt's description -facsimileTelephoneNumber: +1 804 740-1032 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 216-2715 -title: Master Product Testing Technician -userPassword: Password1 -uid: BredfelG -givenName: Gertruda -mail: BredfelG@3bd7ee942f7249be99148fd37660d7db.bitwarden.com -carLicense: D9SJAU -departmentNumber: 9720 -employeeType: Normal -homePhone: +1 804 617-7736 -initials: G. B. -mobile: +1 804 138-8031 -pager: +1 804 129-7584 -roomNumber: 9672 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eyde Hiscott -sn: Hiscott -description: This is Eyde Hiscott's description -facsimileTelephoneNumber: +1 408 715-9733 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 868-5317 -title: Master Human Resources Vice President -userPassword: Password1 -uid: HiscottE -givenName: Eyde -mail: HiscottE@5fa2601aad7947d29e66e0d319cf4fe6.bitwarden.com -carLicense: JEN9VV -departmentNumber: 6926 -employeeType: Normal -homePhone: +1 408 380-1385 -initials: E. H. -mobile: +1 408 737-4098 -pager: +1 408 925-8718 -roomNumber: 8991 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Costas Pracht,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Costas Pracht -sn: Pracht -description: This is Costas Pracht's description -facsimileTelephoneNumber: +1 510 394-9293 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 125-5006 -title: Chief Management Admin -userPassword: Password1 -uid: PrachtC -givenName: Costas -mail: PrachtC@a568169c30834110907d40bc84b45600.bitwarden.com -carLicense: Q8X005 -departmentNumber: 5238 -employeeType: Normal -homePhone: +1 510 353-7943 -initials: C. P. -mobile: +1 510 196-2850 -pager: +1 510 534-6257 -roomNumber: 8538 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rec Mazarick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rec Mazarick -sn: Mazarick -description: This is Rec Mazarick's description -facsimileTelephoneNumber: +1 206 739-2547 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 187-7408 -title: Master Product Testing Admin -userPassword: Password1 -uid: MazaricR -givenName: Rec -mail: MazaricR@729666359ed04f0995bf97703c170436.bitwarden.com -carLicense: HD7C2D -departmentNumber: 3737 -employeeType: Employee -homePhone: +1 206 970-1132 -initials: R. M. -mobile: +1 206 566-3180 -pager: +1 206 793-1437 -roomNumber: 9565 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Del Ambler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Del Ambler -sn: Ambler -description: This is Del Ambler's description -facsimileTelephoneNumber: +1 206 973-2536 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 247-7800 -title: Master Product Development Figurehead -userPassword: Password1 -uid: AmblerD -givenName: Del -mail: AmblerD@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com -carLicense: Q4RMHG -departmentNumber: 7129 -employeeType: Contract -homePhone: +1 206 902-2505 -initials: D. A. -mobile: +1 206 372-3974 -pager: +1 206 855-3588 -roomNumber: 8230 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chandal Lischynsky -sn: Lischynsky -description: This is Chandal Lischynsky's description -facsimileTelephoneNumber: +1 818 196-3663 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 602-7548 -title: Chief Janitorial Developer -userPassword: Password1 -uid: LischynC -givenName: Chandal -mail: LischynC@d7d5276b76fc44cfaa24d383211b91ce.bitwarden.com -carLicense: XB7WQY -departmentNumber: 6192 -employeeType: Employee -homePhone: +1 818 773-7842 -initials: C. L. -mobile: +1 818 188-9775 -pager: +1 818 372-3937 -roomNumber: 9080 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tessi Denebeim,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tessi Denebeim -sn: Denebeim -description: This is Tessi Denebeim's description -facsimileTelephoneNumber: +1 804 946-3324 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 389-5836 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: DenebeiT -givenName: Tessi -mail: DenebeiT@f04d099937f74fc993f7a60158339d87.bitwarden.com -carLicense: TICKPW -departmentNumber: 3745 -employeeType: Normal -homePhone: +1 804 983-8009 -initials: T. D. -mobile: +1 804 514-3349 -pager: +1 804 220-2800 -roomNumber: 9509 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pru Digiacomo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pru Digiacomo -sn: Digiacomo -description: This is Pru Digiacomo's description -facsimileTelephoneNumber: +1 510 916-4226 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 755-3506 -title: Associate Peons Evangelist -userPassword: Password1 -uid: DigiacoP -givenName: Pru -mail: DigiacoP@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com -carLicense: PY11XG -departmentNumber: 1080 -employeeType: Employee -homePhone: +1 510 725-7400 -initials: P. D. -mobile: +1 510 625-7779 -pager: +1 510 836-5282 -roomNumber: 8626 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Annabell Fung,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annabell Fung -sn: Fung -description: This is Annabell Fung's description -facsimileTelephoneNumber: +1 415 694-5023 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 825-6821 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: FungA -givenName: Annabell -mail: FungA@7cfb89381cc04fdd8150ed096a9b1503.bitwarden.com -carLicense: XPBHKT -departmentNumber: 8889 -employeeType: Normal -homePhone: +1 415 661-7268 -initials: A. F. -mobile: +1 415 230-3194 -pager: +1 415 381-2563 -roomNumber: 8803 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alberta Widener,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alberta Widener -sn: Widener -description: This is Alberta Widener's description -facsimileTelephoneNumber: +1 818 807-7051 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 983-4809 -title: Supreme Peons Punk -userPassword: Password1 -uid: WidenerA -givenName: Alberta -mail: WidenerA@47e5e279eb034f06bf0151f655d29134.bitwarden.com -carLicense: 80VFBP -departmentNumber: 1685 -employeeType: Normal -homePhone: +1 818 786-8685 -initials: A. W. -mobile: +1 818 264-4011 -pager: +1 818 283-7611 -roomNumber: 9212 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=PakJong Klebsch,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PakJong Klebsch -sn: Klebsch -description: This is PakJong Klebsch's description -facsimileTelephoneNumber: +1 213 733-2270 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 213 617-1243 -title: Master Administrative Consultant -userPassword: Password1 -uid: KlebschP -givenName: PakJong -mail: KlebschP@d823092534664221878b6c81b822deac.bitwarden.com -carLicense: QKQNE3 -departmentNumber: 2385 -employeeType: Normal -homePhone: +1 213 403-1205 -initials: P. K. -mobile: +1 213 547-7224 -pager: +1 213 541-8560 -roomNumber: 9585 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Detlev Croxford,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Detlev Croxford -sn: Croxford -description: This is Detlev Croxford's description -facsimileTelephoneNumber: +1 206 451-2061 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 232-9499 -title: Master Payroll Assistant -userPassword: Password1 -uid: CroxforD -givenName: Detlev -mail: CroxforD@e7d87afea27e4692a1bc5a19d69abd1c.bitwarden.com -carLicense: BLTG12 -departmentNumber: 4923 -employeeType: Normal -homePhone: +1 206 282-3488 -initials: D. C. -mobile: +1 206 673-5327 -pager: +1 206 986-2002 -roomNumber: 9544 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Graeme Khatri,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Graeme Khatri -sn: Khatri -description: This is Graeme Khatri's description -facsimileTelephoneNumber: +1 818 196-2685 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 738-5415 -title: Junior Product Testing President -userPassword: Password1 -uid: KhatriG -givenName: Graeme -mail: KhatriG@248fbbdd5e2b4efdbf1ff86927aed801.bitwarden.com -carLicense: HRD8HS -departmentNumber: 7703 -employeeType: Normal -homePhone: +1 818 330-1093 -initials: G. K. -mobile: +1 818 719-3760 -pager: +1 818 723-6099 -roomNumber: 9701 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Franky Dattalo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franky Dattalo -sn: Dattalo -description: This is Franky Dattalo's description -facsimileTelephoneNumber: +1 213 438-2911 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 286-5573 -title: Associate Payroll Vice President -userPassword: Password1 -uid: DattaloF -givenName: Franky -mail: DattaloF@dc096225ff66467cb73d02445cb8563d.bitwarden.com -carLicense: 6GQHEC -departmentNumber: 7509 -employeeType: Employee -homePhone: +1 213 212-9753 -initials: F. D. -mobile: +1 213 673-4865 -pager: +1 213 673-3755 -roomNumber: 8122 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Careers Howes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Careers Howes -sn: Howes -description: This is Careers Howes's description -facsimileTelephoneNumber: +1 415 563-4305 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 123-8261 -title: Supreme Peons Warrior -userPassword: Password1 -uid: HowesC -givenName: Careers -mail: HowesC@8970f66e3c7349128b71099e5c1cee90.bitwarden.com -carLicense: O6WF1U -departmentNumber: 5011 -employeeType: Employee -homePhone: +1 415 172-7716 -initials: C. H. -mobile: +1 415 651-2603 -pager: +1 415 149-5082 -roomNumber: 8940 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Susie Gawdan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susie Gawdan -sn: Gawdan -description: This is Susie Gawdan's description -facsimileTelephoneNumber: +1 804 851-4060 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 804 494-9408 -title: Master Janitorial Mascot -userPassword: Password1 -uid: GawdanS -givenName: Susie -mail: GawdanS@70f44c830c534fd69815f0a242b800aa.bitwarden.com -carLicense: PBQGPM -departmentNumber: 2083 -employeeType: Normal -homePhone: +1 804 278-6411 -initials: S. G. -mobile: +1 804 570-8580 -pager: +1 804 730-7851 -roomNumber: 9757 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Milou Lepine,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milou Lepine -sn: Lepine -description: This is Milou Lepine's description -facsimileTelephoneNumber: +1 415 883-8997 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 562-3550 -title: Master Administrative Visionary -userPassword: Password1 -uid: LepineM -givenName: Milou -mail: LepineM@2c973510a0ad49a29c0e5f61ce1778be.bitwarden.com -carLicense: KRKEQC -departmentNumber: 9309 -employeeType: Normal -homePhone: +1 415 201-6992 -initials: M. L. -mobile: +1 415 101-3005 -pager: +1 415 713-7780 -roomNumber: 9976 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ransom Steski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ransom Steski -sn: Steski -description: This is Ransom Steski's description -facsimileTelephoneNumber: +1 213 696-8421 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 642-1081 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: SteskiR -givenName: Ransom -mail: SteskiR@fe6a97f91a3b481692abba6662452ee9.bitwarden.com -carLicense: 6XKR0D -departmentNumber: 5990 -employeeType: Contract -homePhone: +1 213 703-8766 -initials: R. S. -mobile: +1 213 654-8661 -pager: +1 213 463-3081 -roomNumber: 9755 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=ItsEng Lander,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ItsEng Lander -sn: Lander -description: This is ItsEng Lander's description -facsimileTelephoneNumber: +1 213 681-3893 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 213 903-6962 -title: Associate Administrative Fellow -userPassword: Password1 -uid: LanderI -givenName: ItsEng -mail: LanderI@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com -carLicense: 9OCKYH -departmentNumber: 2990 -employeeType: Contract -homePhone: +1 213 140-4735 -initials: I. L. -mobile: +1 213 498-3054 -pager: +1 213 637-8976 -roomNumber: 8120 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kevyn Dore,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kevyn Dore -sn: Dore -description: This is Kevyn Dore's description -facsimileTelephoneNumber: +1 415 737-3926 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 707-6838 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: DoreK -givenName: Kevyn -mail: DoreK@094b6a4c917e4f98917e91b5a1b28522.bitwarden.com -carLicense: RLR3SN -departmentNumber: 1787 -employeeType: Normal -homePhone: +1 415 170-4815 -initials: K. D. -mobile: +1 415 249-1373 -pager: +1 415 262-1127 -roomNumber: 8358 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adriane Michelussi -sn: Michelussi -description: This is Adriane Michelussi's description -facsimileTelephoneNumber: +1 206 215-3007 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 742-9525 -title: Master Product Testing Dictator -userPassword: Password1 -uid: MicheluA -givenName: Adriane -mail: MicheluA@b18337be90444413a3513ff8460e86cb.bitwarden.com -carLicense: BQBPKE -departmentNumber: 3865 -employeeType: Contract -homePhone: +1 206 986-6311 -initials: A. M. -mobile: +1 206 416-6558 -pager: +1 206 897-2118 -roomNumber: 8088 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Merna MacNeill,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merna MacNeill -sn: MacNeill -description: This is Merna MacNeill's description -facsimileTelephoneNumber: +1 510 834-8800 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 763-4045 -title: Junior Janitorial Mascot -userPassword: Password1 -uid: MacNeilM -givenName: Merna -mail: MacNeilM@e7982141a478415494932da6ee7a398d.bitwarden.com -carLicense: IH5QA3 -departmentNumber: 3120 -employeeType: Employee -homePhone: +1 510 703-3013 -initials: M. M. -mobile: +1 510 671-4446 -pager: +1 510 365-3271 -roomNumber: 8585 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ioan Goridkov,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ioan Goridkov -sn: Goridkov -description: This is Ioan Goridkov's description -facsimileTelephoneNumber: +1 408 971-7710 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 738-9385 -title: Chief Payroll Assistant -userPassword: Password1 -uid: GoridkoI -givenName: Ioan -mail: GoridkoI@2b27acc969e94cf2aa1e0ddf34189475.bitwarden.com -carLicense: MELOYJ -departmentNumber: 1457 -employeeType: Contract -homePhone: +1 408 545-4798 -initials: I. G. -mobile: +1 408 443-7512 -pager: +1 408 939-6443 -roomNumber: 8944 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Michelle Miner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michelle Miner -sn: Miner -description: This is Michelle Miner's description -facsimileTelephoneNumber: +1 818 884-1364 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 227-6036 -title: Master Human Resources Admin -userPassword: Password1 -uid: MinerM -givenName: Michelle -mail: MinerM@d692d5cfe1f94d9b9ba0601cc719f91a.bitwarden.com -carLicense: LPY7DR -departmentNumber: 7427 -employeeType: Contract -homePhone: +1 818 463-3528 -initials: M. M. -mobile: +1 818 632-5018 -pager: +1 818 377-9995 -roomNumber: 9285 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mair Harada,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mair Harada -sn: Harada -description: This is Mair Harada's description -facsimileTelephoneNumber: +1 415 352-7287 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 113-5192 -title: Chief Janitorial Director -userPassword: Password1 -uid: HaradaM -givenName: Mair -mail: HaradaM@1b636b69f1444511aab6fb21d5a45120.bitwarden.com -carLicense: CSMKG2 -departmentNumber: 1620 -employeeType: Normal -homePhone: +1 415 192-9740 -initials: M. H. -mobile: +1 415 818-2798 -pager: +1 415 977-5500 -roomNumber: 8212 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lynnet Lewandowski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynnet Lewandowski -sn: Lewandowski -description: This is Lynnet Lewandowski's description -facsimileTelephoneNumber: +1 510 873-7984 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 449-6154 -title: Chief Management Fellow -userPassword: Password1 -uid: LewandoL -givenName: Lynnet -mail: LewandoL@c2594ac246a645e3be48149271f5e260.bitwarden.com -carLicense: D7XAEJ -departmentNumber: 6573 -employeeType: Normal -homePhone: +1 510 312-2751 -initials: L. L. -mobile: +1 510 885-7838 -pager: +1 510 439-8070 -roomNumber: 8318 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paolina Hotlist -sn: Hotlist -description: This is Paolina Hotlist's description -facsimileTelephoneNumber: +1 510 737-2872 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 421-5881 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: HotlistP -givenName: Paolina -mail: HotlistP@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com -carLicense: 01FQ7J -departmentNumber: 6448 -employeeType: Normal -homePhone: +1 510 195-7870 -initials: P. H. -mobile: +1 510 132-5440 -pager: +1 510 137-4417 -roomNumber: 9191 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Henk Ramanathan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henk Ramanathan -sn: Ramanathan -description: This is Henk Ramanathan's description -facsimileTelephoneNumber: +1 213 742-6232 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 337-7441 -title: Master Management Grunt -userPassword: Password1 -uid: RamanatH -givenName: Henk -mail: RamanatH@7b9bbc8a8db749adaa5d570b3f3c2a12.bitwarden.com -carLicense: W5SQFV -departmentNumber: 8314 -employeeType: Normal -homePhone: +1 213 509-2123 -initials: H. R. -mobile: +1 213 166-8717 -pager: +1 213 597-1515 -roomNumber: 9300 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashlan Hiltz -sn: Hiltz -description: This is Ashlan Hiltz's description -facsimileTelephoneNumber: +1 415 290-5019 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 870-6750 -title: Junior Product Development Czar -userPassword: Password1 -uid: HiltzA -givenName: Ashlan -mail: HiltzA@5ce200ed1ad64bcaad8122a35e26d155.bitwarden.com -carLicense: 603YP8 -departmentNumber: 7633 -employeeType: Contract -homePhone: +1 415 112-4920 -initials: A. H. -mobile: +1 415 475-1597 -pager: +1 415 742-8127 -roomNumber: 8897 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Selinda Settels,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selinda Settels -sn: Settels -description: This is Selinda Settels's description -facsimileTelephoneNumber: +1 415 475-4768 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 835-7107 -title: Master Product Development Evangelist -userPassword: Password1 -uid: SettelsS -givenName: Selinda -mail: SettelsS@4d6e294f43da4e31ad0f159e88e5f4be.bitwarden.com -carLicense: KVV6TB -departmentNumber: 8681 -employeeType: Normal -homePhone: +1 415 859-4182 -initials: S. S. -mobile: +1 415 984-1602 -pager: +1 415 384-2744 -roomNumber: 9346 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susanetta Herlihy -sn: Herlihy -description: This is Susanetta Herlihy's description -facsimileTelephoneNumber: +1 408 263-7217 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 206-5264 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: HerlihyS -givenName: Susanetta -mail: HerlihyS@6f9ae78114a84c0589079525f6533789.bitwarden.com -carLicense: 0C912X -departmentNumber: 2314 -employeeType: Normal -homePhone: +1 408 950-1015 -initials: S. H. -mobile: +1 408 475-5600 -pager: +1 408 715-6369 -roomNumber: 8399 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=ItsEng Kozak,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ItsEng Kozak -sn: Kozak -description: This is ItsEng Kozak's description -facsimileTelephoneNumber: +1 510 188-6664 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 581-3254 -title: Chief Management Artist -userPassword: Password1 -uid: KozakI -givenName: ItsEng -mail: KozakI@f6644bbdf7854f02affd71b3a7133d91.bitwarden.com -carLicense: 9OECRT -departmentNumber: 2017 -employeeType: Normal -homePhone: +1 510 705-6975 -initials: I. K. -mobile: +1 510 316-4363 -pager: +1 510 944-2923 -roomNumber: 9393 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brianne Deitiker -sn: Deitiker -description: This is Brianne Deitiker's description -facsimileTelephoneNumber: +1 408 829-3371 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 696-3293 -title: Associate Product Testing Figurehead -userPassword: Password1 -uid: DeitikeB -givenName: Brianne -mail: DeitikeB@f615417804714e2b90444d84fdf4c3ba.bitwarden.com -carLicense: 911K9F -departmentNumber: 3186 -employeeType: Contract -homePhone: +1 408 553-1991 -initials: B. D. -mobile: +1 408 895-5135 -pager: +1 408 677-4458 -roomNumber: 8271 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marybelle Ervi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marybelle Ervi -sn: Ervi -description: This is Marybelle Ervi's description -facsimileTelephoneNumber: +1 415 344-9277 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 728-8403 -title: Associate Payroll President -userPassword: Password1 -uid: ErviM -givenName: Marybelle -mail: ErviM@3f4b9aad0e4547d9998409b9c2b65792.bitwarden.com -carLicense: F5BESQ -departmentNumber: 9914 -employeeType: Employee -homePhone: +1 415 656-3781 -initials: M. E. -mobile: +1 415 224-7074 -pager: +1 415 116-4099 -roomNumber: 8654 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Yuji Menna,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yuji Menna -sn: Menna -description: This is Yuji Menna's description -facsimileTelephoneNumber: +1 804 329-1139 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 719-9097 -title: Junior Peons Artist -userPassword: Password1 -uid: MennaY -givenName: Yuji -mail: MennaY@5278466bedb347c588c1bbec6486c3cf.bitwarden.com -carLicense: GQSP34 -departmentNumber: 2141 -employeeType: Contract -homePhone: +1 804 822-4402 -initials: Y. M. -mobile: +1 804 388-4376 -pager: +1 804 663-4729 -roomNumber: 8636 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Harlene Koa,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harlene Koa -sn: Koa -description: This is Harlene Koa's description -facsimileTelephoneNumber: +1 415 682-5158 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 621-4696 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: KoaH -givenName: Harlene -mail: KoaH@f920b917085d494384c9f6cf31731d98.bitwarden.com -carLicense: 4USHLR -departmentNumber: 8680 -employeeType: Normal -homePhone: +1 415 544-5963 -initials: H. K. -mobile: +1 415 301-5479 -pager: +1 415 745-7397 -roomNumber: 8092 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Prashant Feltman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prashant Feltman -sn: Feltman -description: This is Prashant Feltman's description -facsimileTelephoneNumber: +1 818 426-8895 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 671-7634 -title: Supreme Product Development Director -userPassword: Password1 -uid: FeltmanP -givenName: Prashant -mail: FeltmanP@0fd4dc879e87454189121973304c8184.bitwarden.com -carLicense: KULKR9 -departmentNumber: 2295 -employeeType: Employee -homePhone: +1 818 192-1338 -initials: P. F. -mobile: +1 818 562-6557 -pager: +1 818 535-3151 -roomNumber: 9658 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Margit Waghray,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margit Waghray -sn: Waghray -description: This is Margit Waghray's description -facsimileTelephoneNumber: +1 408 721-8601 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 410-9659 -title: Junior Management Architect -userPassword: Password1 -uid: WaghrayM -givenName: Margit -mail: WaghrayM@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com -carLicense: KAPWSW -departmentNumber: 4303 -employeeType: Normal -homePhone: +1 408 783-4342 -initials: M. W. -mobile: +1 408 358-7075 -pager: +1 408 426-2356 -roomNumber: 9614 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Naim Paar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naim Paar -sn: Paar -description: This is Naim Paar's description -facsimileTelephoneNumber: +1 206 177-4952 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 459-2802 -title: Supreme Peons Punk -userPassword: Password1 -uid: PaarN -givenName: Naim -mail: PaarN@f7d02b716b224e868c9d7b6fe1dd0e0b.bitwarden.com -carLicense: XDDP9R -departmentNumber: 6268 -employeeType: Contract -homePhone: +1 206 572-3438 -initials: N. P. -mobile: +1 206 781-1909 -pager: +1 206 244-1019 -roomNumber: 9960 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Flying Labossiere,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flying Labossiere -sn: Labossiere -description: This is Flying Labossiere's description -facsimileTelephoneNumber: +1 213 117-7096 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 935-5859 -title: Master Human Resources Punk -userPassword: Password1 -uid: LabossiF -givenName: Flying -mail: LabossiF@9135ac12963a4f24b390086599e22c6a.bitwarden.com -carLicense: 1QPIOU -departmentNumber: 6802 -employeeType: Normal -homePhone: +1 213 703-5428 -initials: F. L. -mobile: +1 213 401-6425 -pager: +1 213 168-5456 -roomNumber: 8163 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Barbette Kolski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbette Kolski -sn: Kolski -description: This is Barbette Kolski's description -facsimileTelephoneNumber: +1 818 928-7913 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 438-6003 -title: Chief Product Development Warrior -userPassword: Password1 -uid: KolskiB -givenName: Barbette -mail: KolskiB@1c75dd756d3646528231e24a92716bd4.bitwarden.com -carLicense: OVHOAH -departmentNumber: 7904 -employeeType: Normal -homePhone: +1 818 301-5530 -initials: B. K. -mobile: +1 818 297-8239 -pager: +1 818 758-2943 -roomNumber: 9749 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nishith Parmaksezian -sn: Parmaksezian -description: This is Nishith Parmaksezian's description -facsimileTelephoneNumber: +1 415 153-1717 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 911-9811 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: ParmaksN -givenName: Nishith -mail: ParmaksN@40663fdde0124ce29770203c85e196b5.bitwarden.com -carLicense: 8XA8X9 -departmentNumber: 5879 -employeeType: Employee -homePhone: +1 415 571-3668 -initials: N. P. -mobile: +1 415 292-7634 -pager: +1 415 429-8663 -roomNumber: 8290 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Joby Paulovics,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joby Paulovics -sn: Paulovics -description: This is Joby Paulovics's description -facsimileTelephoneNumber: +1 213 934-3419 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 286-9327 -title: Associate Human Resources Visionary -userPassword: Password1 -uid: PauloviJ -givenName: Joby -mail: PauloviJ@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com -carLicense: VARA14 -departmentNumber: 7748 -employeeType: Employee -homePhone: +1 213 615-7190 -initials: J. P. -mobile: +1 213 975-1973 -pager: +1 213 830-2911 -roomNumber: 9486 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoshiaki Elkins -sn: Elkins -description: This is Yoshiaki Elkins's description -facsimileTelephoneNumber: +1 510 238-1387 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 390-3254 -title: Junior Janitorial Stooge -userPassword: Password1 -uid: ElkinsY -givenName: Yoshiaki -mail: ElkinsY@ed96afcd8b954b4d85dba951a21a6324.bitwarden.com -carLicense: P17OBO -departmentNumber: 4874 -employeeType: Contract -homePhone: +1 510 207-1593 -initials: Y. E. -mobile: +1 510 884-5205 -pager: +1 510 583-9829 -roomNumber: 8735 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zuzana Prakash -sn: Prakash -description: This is Zuzana Prakash's description -facsimileTelephoneNumber: +1 408 132-5344 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 871-9720 -title: Associate Product Testing Admin -userPassword: Password1 -uid: PrakashZ -givenName: Zuzana -mail: PrakashZ@801739f6e42441ccb9598e407460b5bb.bitwarden.com -carLicense: AIULXJ -departmentNumber: 2927 -employeeType: Employee -homePhone: +1 408 489-9172 -initials: Z. P. -mobile: +1 408 446-8333 -pager: +1 408 822-1642 -roomNumber: 8282 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjorie OKelly -sn: OKelly -description: This is Marjorie OKelly's description -facsimileTelephoneNumber: +1 818 815-2155 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 747-3958 -title: Junior Janitorial Czar -userPassword: Password1 -uid: OKellyM -givenName: Marjorie -mail: OKellyM@dd6d4c6b1dd34999828d0c453a81ce8e.bitwarden.com -carLicense: V8RU29 -departmentNumber: 3306 -employeeType: Normal -homePhone: +1 818 251-7416 -initials: M. O. -mobile: +1 818 705-1118 -pager: +1 818 758-1812 -roomNumber: 9773 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aubrette Stadler -sn: Stadler -description: This is Aubrette Stadler's description -facsimileTelephoneNumber: +1 804 317-8269 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 141-3870 -title: Junior Product Testing Grunt -userPassword: Password1 -uid: StadlerA -givenName: Aubrette -mail: StadlerA@a3bd8e44117346b9ae0cabd5005504fc.bitwarden.com -carLicense: N7NSPD -departmentNumber: 9666 -employeeType: Employee -homePhone: +1 804 969-4699 -initials: A. S. -mobile: +1 804 725-6305 -pager: +1 804 375-2785 -roomNumber: 8550 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Feliza Grabner,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Feliza Grabner -sn: Grabner -description: This is Feliza Grabner's description -facsimileTelephoneNumber: +1 408 362-8252 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 294-5239 -title: Associate Payroll Architect -userPassword: Password1 -uid: GrabnerF -givenName: Feliza -mail: GrabnerF@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com -carLicense: RM56FD -departmentNumber: 7091 -employeeType: Normal -homePhone: +1 408 982-3149 -initials: F. G. -mobile: +1 408 861-7069 -pager: +1 408 261-2275 -roomNumber: 8374 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kacey Tischhauser -sn: Tischhauser -description: This is Kacey Tischhauser's description -facsimileTelephoneNumber: +1 804 666-8396 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 244-2230 -title: Junior Administrative Developer -userPassword: Password1 -uid: TischhaK -givenName: Kacey -mail: TischhaK@03d46b0722db4aefabede2394ef70138.bitwarden.com -carLicense: SQVH07 -departmentNumber: 9387 -employeeType: Contract -homePhone: +1 804 787-7405 -initials: K. T. -mobile: +1 804 109-1584 -pager: +1 804 376-2117 -roomNumber: 9564 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dona VanLoon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dona VanLoon -sn: VanLoon -description: This is Dona VanLoon's description -facsimileTelephoneNumber: +1 213 720-3716 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 692-2885 -title: Associate Payroll Architect -userPassword: Password1 -uid: VanLoonD -givenName: Dona -mail: VanLoonD@8867d48f5a1a4686bc365aa8db240829.bitwarden.com -carLicense: V65783 -departmentNumber: 7014 -employeeType: Contract -homePhone: +1 213 285-7053 -initials: D. V. -mobile: +1 213 229-6153 -pager: +1 213 998-3932 -roomNumber: 8993 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacquie Thorson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquie Thorson -sn: Thorson -description: This is Jacquie Thorson's description -facsimileTelephoneNumber: +1 206 567-3162 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 566-1715 -title: Chief Administrative Janitor -userPassword: Password1 -uid: ThorsonJ -givenName: Jacquie -mail: ThorsonJ@e915bf6c406f46f5ac163116df6fd9b3.bitwarden.com -carLicense: 2NVADD -departmentNumber: 3453 -employeeType: Normal -homePhone: +1 206 220-2903 -initials: J. T. -mobile: +1 206 380-1342 -pager: +1 206 105-5401 -roomNumber: 9880 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veriee Tandberg -sn: Tandberg -description: This is Veriee Tandberg's description -facsimileTelephoneNumber: +1 804 705-1398 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 328-7552 -title: Junior Janitorial Stooge -userPassword: Password1 -uid: TandberV -givenName: Veriee -mail: TandberV@af244d93e89148e099720c8250f904c6.bitwarden.com -carLicense: YRYDG1 -departmentNumber: 5813 -employeeType: Employee -homePhone: +1 804 635-2979 -initials: V. T. -mobile: +1 804 812-4346 -pager: +1 804 364-5987 -roomNumber: 8914 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Appolonia Roberge,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Appolonia Roberge -sn: Roberge -description: This is Appolonia Roberge's description -facsimileTelephoneNumber: +1 415 232-2076 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 208-5107 -title: Supreme Payroll Stooge -userPassword: Password1 -uid: RobergeA -givenName: Appolonia -mail: RobergeA@a1229ea2ddce4147b437f4d3ad26de38.bitwarden.com -carLicense: 9QKGSU -departmentNumber: 1306 -employeeType: Employee -homePhone: +1 415 345-5087 -initials: A. R. -mobile: +1 415 707-4610 -pager: +1 415 141-1930 -roomNumber: 8773 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Blaise Huynh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blaise Huynh -sn: Huynh -description: This is Blaise Huynh's description -facsimileTelephoneNumber: +1 818 979-6779 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 181-7281 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: HuynhB -givenName: Blaise -mail: HuynhB@80d7a9e833dc41e18b9463841847c534.bitwarden.com -carLicense: 9L5LYW -departmentNumber: 3291 -employeeType: Employee -homePhone: +1 818 580-5943 -initials: B. H. -mobile: +1 818 425-5201 -pager: +1 818 608-2891 -roomNumber: 9142 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lashonda Ogburn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lashonda Ogburn -sn: Ogburn -description: This is Lashonda Ogburn's description -facsimileTelephoneNumber: +1 510 726-7553 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 922-3842 -title: Master Management Technician -userPassword: Password1 -uid: OgburnL -givenName: Lashonda -mail: OgburnL@d4c72bac49924f79b7ada92d433b947c.bitwarden.com -carLicense: N7CY94 -departmentNumber: 4167 -employeeType: Contract -homePhone: +1 510 576-8601 -initials: L. O. -mobile: +1 510 716-7545 -pager: +1 510 977-4582 -roomNumber: 8011 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Juline Flindall,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juline Flindall -sn: Flindall -description: This is Juline Flindall's description -facsimileTelephoneNumber: +1 213 323-6605 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 977-8326 -title: Chief Product Testing Architect -userPassword: Password1 -uid: FlindalJ -givenName: Juline -mail: FlindalJ@9dcbe58177c3454c992be9f2bcd770bc.bitwarden.com -carLicense: 5NEL7P -departmentNumber: 1142 -employeeType: Employee -homePhone: +1 213 658-8365 -initials: J. F. -mobile: +1 213 103-9382 -pager: +1 213 586-1307 -roomNumber: 9859 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lujanka Paylor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lujanka Paylor -sn: Paylor -description: This is Lujanka Paylor's description -facsimileTelephoneNumber: +1 213 477-8650 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 956-3272 -title: Supreme Peons Engineer -userPassword: Password1 -uid: PaylorL -givenName: Lujanka -mail: PaylorL@a90573a98b164929a489e62b8b0a18ec.bitwarden.com -carLicense: 5TW43Y -departmentNumber: 8769 -employeeType: Contract -homePhone: +1 213 496-6182 -initials: L. P. -mobile: +1 213 185-4710 -pager: +1 213 105-8197 -roomNumber: 8503 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Barbee Brox,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbee Brox -sn: Brox -description: This is Barbee Brox's description -facsimileTelephoneNumber: +1 818 144-7380 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 818 521-3669 -title: Associate Human Resources Czar -userPassword: Password1 -uid: BroxB -givenName: Barbee -mail: BroxB@2126a4a93d82446eaaae85cb511bb3eb.bitwarden.com -carLicense: YPQ5XA -departmentNumber: 6043 -employeeType: Contract -homePhone: +1 818 186-5671 -initials: B. B. -mobile: +1 818 675-7865 -pager: +1 818 853-7276 -roomNumber: 8514 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Julia Zanetti,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julia Zanetti -sn: Zanetti -description: This is Julia Zanetti's description -facsimileTelephoneNumber: +1 818 957-7296 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 465-6545 -title: Associate Janitorial Manager -userPassword: Password1 -uid: ZanettiJ -givenName: Julia -mail: ZanettiJ@ede35e44c10a4bf48fb611de6dfbedd8.bitwarden.com -carLicense: YFA8BR -departmentNumber: 8737 -employeeType: Normal -homePhone: +1 818 212-5449 -initials: J. Z. -mobile: +1 818 994-1464 -pager: +1 818 327-7601 -roomNumber: 9809 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Othilia Rch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othilia Rch -sn: Rch -description: This is Othilia Rch's description -facsimileTelephoneNumber: +1 818 465-6065 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 421-8029 -title: Master Janitorial Janitor -userPassword: Password1 -uid: RchO -givenName: Othilia -mail: RchO@7f678caa888b47ceb5d57deda96772c9.bitwarden.com -carLicense: UU0TSS -departmentNumber: 4900 -employeeType: Normal -homePhone: +1 818 609-4217 -initials: O. R. -mobile: +1 818 534-1257 -pager: +1 818 417-3674 -roomNumber: 9893 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gaal Despault,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaal Despault -sn: Despault -description: This is Gaal Despault's description -facsimileTelephoneNumber: +1 415 153-2870 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 441-6127 -title: Supreme Human Resources Figurehead -userPassword: Password1 -uid: DespaulG -givenName: Gaal -mail: DespaulG@7092afcac0d743dda822cd8d0349a08e.bitwarden.com -carLicense: TR9RIO -departmentNumber: 7717 -employeeType: Contract -homePhone: +1 415 957-1280 -initials: G. D. -mobile: +1 415 177-2588 -pager: +1 415 706-1026 -roomNumber: 8722 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mary Zalzale,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mary Zalzale -sn: Zalzale -description: This is Mary Zalzale's description -facsimileTelephoneNumber: +1 206 733-4128 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 547-8163 -title: Chief Human Resources Figurehead -userPassword: Password1 -uid: ZalzaleM -givenName: Mary -mail: ZalzaleM@4142573bf2cb42fca0124350cec5645b.bitwarden.com -carLicense: 4KNA7P -departmentNumber: 7019 -employeeType: Employee -homePhone: +1 206 419-1765 -initials: M. Z. -mobile: +1 206 361-8822 -pager: +1 206 447-9294 -roomNumber: 8549 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hilmi Guilbault,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilmi Guilbault -sn: Guilbault -description: This is Hilmi Guilbault's description -facsimileTelephoneNumber: +1 206 759-3766 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 206 543-2291 -title: Junior Management Technician -userPassword: Password1 -uid: GuilbauH -givenName: Hilmi -mail: GuilbauH@e51ab927442b42fd83641345150b54a3.bitwarden.com -carLicense: PQQWB5 -departmentNumber: 5744 -employeeType: Normal -homePhone: +1 206 762-9515 -initials: H. G. -mobile: +1 206 879-3847 -pager: +1 206 706-6312 -roomNumber: 8097 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=YuenPui Matney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YuenPui Matney -sn: Matney -description: This is YuenPui Matney's description -facsimileTelephoneNumber: +1 213 435-3225 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 568-1324 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: MatneyY -givenName: YuenPui -mail: MatneyY@7b527a6c34584da5add653a316e64744.bitwarden.com -carLicense: KNOH01 -departmentNumber: 8108 -employeeType: Contract -homePhone: +1 213 255-2639 -initials: Y. M. -mobile: +1 213 414-7573 -pager: +1 213 201-8353 -roomNumber: 8603 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Heidie Schieber,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heidie Schieber -sn: Schieber -description: This is Heidie Schieber's description -facsimileTelephoneNumber: +1 415 420-5470 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 521-3313 -title: Supreme Administrative President -userPassword: Password1 -uid: SchiebeH -givenName: Heidie -mail: SchiebeH@f30af69fd37e4f8a883a02cf91c85b15.bitwarden.com -carLicense: ESPPXF -departmentNumber: 7909 -employeeType: Normal -homePhone: +1 415 627-7724 -initials: H. S. -mobile: +1 415 806-3570 -pager: +1 415 163-9649 -roomNumber: 9992 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Denise Tranter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denise Tranter -sn: Tranter -description: This is Denise Tranter's description -facsimileTelephoneNumber: +1 415 323-9973 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 804-6578 -title: Supreme Human Resources Figurehead -userPassword: Password1 -uid: TranterD -givenName: Denise -mail: TranterD@01fa9120f2a14ce7afdb05e2fa84950c.bitwarden.com -carLicense: 115FHF -departmentNumber: 4417 -employeeType: Employee -homePhone: +1 415 970-2332 -initials: D. T. -mobile: +1 415 150-5916 -pager: +1 415 779-4520 -roomNumber: 8966 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cassy Burge,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassy Burge -sn: Burge -description: This is Cassy Burge's description -facsimileTelephoneNumber: +1 510 323-6275 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 823-1341 -title: Chief Peons Warrior -userPassword: Password1 -uid: BurgeC -givenName: Cassy -mail: BurgeC@0c4de0f537ac4059b43bc376b1423585.bitwarden.com -carLicense: 0V8N07 -departmentNumber: 3772 -employeeType: Employee -homePhone: +1 510 853-4322 -initials: C. B. -mobile: +1 510 204-6002 -pager: +1 510 272-5415 -roomNumber: 9718 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angelia Wacheski -sn: Wacheski -description: This is Angelia Wacheski's description -facsimileTelephoneNumber: +1 415 388-8613 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 814-6200 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: WacheskA -givenName: Angelia -mail: WacheskA@ffedbb5dcd2e43d89a2fe0f7ea7157e8.bitwarden.com -carLicense: JY3BNA -departmentNumber: 2531 -employeeType: Employee -homePhone: +1 415 347-7267 -initials: A. W. -mobile: +1 415 213-4984 -pager: +1 415 699-6331 -roomNumber: 9475 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rafaelita Colton -sn: Colton -description: This is Rafaelita Colton's description -facsimileTelephoneNumber: +1 408 553-2008 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 820-9943 -title: Master Human Resources Visionary -userPassword: Password1 -uid: ColtonR -givenName: Rafaelita -mail: ColtonR@bc86e63e2935428fbf0579fffe710ad0.bitwarden.com -carLicense: FOYUQH -departmentNumber: 8902 -employeeType: Contract -homePhone: +1 408 510-4781 -initials: R. C. -mobile: +1 408 463-6326 -pager: +1 408 155-5245 -roomNumber: 9475 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorette McCulloch -sn: McCulloch -description: This is Lorette McCulloch's description -facsimileTelephoneNumber: +1 510 321-1819 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 199-5039 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: McCulloL -givenName: Lorette -mail: McCulloL@f0d259bb55714f71bf010360d9c0c675.bitwarden.com -carLicense: MPDE9O -departmentNumber: 5542 -employeeType: Employee -homePhone: +1 510 173-7894 -initials: L. M. -mobile: +1 510 329-1058 -pager: +1 510 407-3882 -roomNumber: 9843 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rowena Kam,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rowena Kam -sn: Kam -description: This is Rowena Kam's description -facsimileTelephoneNumber: +1 206 323-7812 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 193-9252 -title: Supreme Administrative Pinhead -userPassword: Password1 -uid: KamR -givenName: Rowena -mail: KamR@a15bed22c46f4004bbe3a24f37013ebd.bitwarden.com -carLicense: GT50MR -departmentNumber: 3650 -employeeType: Contract -homePhone: +1 206 109-8526 -initials: R. K. -mobile: +1 206 878-6172 -pager: +1 206 194-2416 -roomNumber: 9401 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Theodore Murris,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theodore Murris -sn: Murris -description: This is Theodore Murris's description -facsimileTelephoneNumber: +1 206 144-6741 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 977-5374 -title: Chief Administrative Janitor -userPassword: Password1 -uid: MurrisT -givenName: Theodore -mail: MurrisT@b956ceb4b4ac4e2e8c019866386df8f2.bitwarden.com -carLicense: KSNEWM -departmentNumber: 8602 -employeeType: Employee -homePhone: +1 206 505-7831 -initials: T. M. -mobile: +1 206 797-5925 -pager: +1 206 147-5979 -roomNumber: 8409 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosamond Sugarbroad -sn: Sugarbroad -description: This is Rosamond Sugarbroad's description -facsimileTelephoneNumber: +1 415 871-7850 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 545-1278 -title: Associate Janitorial Admin -userPassword: Password1 -uid: SugarbrR -givenName: Rosamond -mail: SugarbrR@ead811946c1c45dc9e9e74c993c44021.bitwarden.com -carLicense: SEP669 -departmentNumber: 6012 -employeeType: Employee -homePhone: +1 415 498-6228 -initials: R. S. -mobile: +1 415 696-5285 -pager: +1 415 870-4302 -roomNumber: 8539 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bang Lischynsky,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bang Lischynsky -sn: Lischynsky -description: This is Bang Lischynsky's description -facsimileTelephoneNumber: +1 818 189-8303 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 781-4422 -title: Associate Management Developer -userPassword: Password1 -uid: LischynB -givenName: Bang -mail: LischynB@93250e1458e9462fb7830f342f899a75.bitwarden.com -carLicense: WKN9HR -departmentNumber: 5937 -employeeType: Contract -homePhone: +1 818 134-1240 -initials: B. L. -mobile: +1 818 287-2491 -pager: +1 818 809-6304 -roomNumber: 8114 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Derek Fleuchaus -sn: Fleuchaus -description: This is Derek Fleuchaus's description -facsimileTelephoneNumber: +1 510 884-3932 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 903-6188 -title: Master Product Testing President -userPassword: Password1 -uid: FleuchaD -givenName: Derek -mail: FleuchaD@df8b9402b189403dbb23818be84e6eeb.bitwarden.com -carLicense: OFH2EV -departmentNumber: 6471 -employeeType: Contract -homePhone: +1 510 323-4086 -initials: D. F. -mobile: +1 510 977-2812 -pager: +1 510 703-9324 -roomNumber: 8926 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Delphine Yuan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delphine Yuan -sn: Yuan -description: This is Delphine Yuan's description -facsimileTelephoneNumber: +1 408 267-2255 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 799-7885 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: YuanD -givenName: Delphine -mail: YuanD@9aed867d53c546c79f7cb774a38dec77.bitwarden.com -carLicense: CPKUUU -departmentNumber: 1269 -employeeType: Normal -homePhone: +1 408 919-2583 -initials: D. Y. -mobile: +1 408 287-1389 -pager: +1 408 277-2435 -roomNumber: 8883 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kambhampati Corkum -sn: Corkum -description: This is Kambhampati Corkum's description -facsimileTelephoneNumber: +1 818 397-7004 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 818 706-1272 -title: Master Human Resources Mascot -userPassword: Password1 -uid: CorkumK -givenName: Kambhampati -mail: CorkumK@c32875a7d5c84e0cbf7df721e038b80b.bitwarden.com -carLicense: M0T110 -departmentNumber: 2300 -employeeType: Employee -homePhone: +1 818 159-7796 -initials: K. C. -mobile: +1 818 672-6255 -pager: +1 818 220-3394 -roomNumber: 8323 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Heloise Woodall,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heloise Woodall -sn: Woodall -description: This is Heloise Woodall's description -facsimileTelephoneNumber: +1 415 321-9886 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 552-2899 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: WoodallH -givenName: Heloise -mail: WoodallH@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com -carLicense: HT670A -departmentNumber: 4104 -employeeType: Contract -homePhone: +1 415 773-6377 -initials: H. W. -mobile: +1 415 669-3575 -pager: +1 415 150-4725 -roomNumber: 9446 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ram Minter,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ram Minter -sn: Minter -description: This is Ram Minter's description -facsimileTelephoneNumber: +1 415 808-4896 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 360-4652 -title: Associate Janitorial Stooge -userPassword: Password1 -uid: MinterR -givenName: Ram -mail: MinterR@e60de99cf3fe4ed19d668de1778949e0.bitwarden.com -carLicense: VX4O7X -departmentNumber: 5804 -employeeType: Contract -homePhone: +1 415 947-3142 -initials: R. M. -mobile: +1 415 305-9509 -pager: +1 415 814-4885 -roomNumber: 8517 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosa ElAm,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosa ElAm -sn: ElAm -description: This is Rosa ElAm's description -facsimileTelephoneNumber: +1 213 432-5025 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 826-9472 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: ElAmR -givenName: Rosa -mail: ElAmR@db74de76c5374bf883b5c0e4951495b9.bitwarden.com -carLicense: R0ALP4 -departmentNumber: 3302 -employeeType: Contract -homePhone: +1 213 919-1453 -initials: R. E. -mobile: +1 213 345-8230 -pager: +1 213 935-6357 -roomNumber: 9891 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shirene Id,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirene Id -sn: Id -description: This is Shirene Id's description -facsimileTelephoneNumber: +1 804 400-2225 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 119-8883 -title: Supreme Payroll Sales Rep -userPassword: Password1 -uid: IdS -givenName: Shirene -mail: IdS@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com -carLicense: 2XWRSR -departmentNumber: 4693 -employeeType: Normal -homePhone: +1 804 268-9306 -initials: S. I. -mobile: +1 804 523-5887 -pager: +1 804 539-9963 -roomNumber: 9609 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pauline Noffke,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pauline Noffke -sn: Noffke -description: This is Pauline Noffke's description -facsimileTelephoneNumber: +1 818 645-3171 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 609-1015 -title: Chief Human Resources Pinhead -userPassword: Password1 -uid: NoffkeP -givenName: Pauline -mail: NoffkeP@8ad57fa5a0014d7d86bb326fd3c22de8.bitwarden.com -carLicense: JBHUJK -departmentNumber: 8783 -employeeType: Contract -homePhone: +1 818 388-5926 -initials: P. N. -mobile: +1 818 894-8775 -pager: +1 818 483-5029 -roomNumber: 8075 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Seungchul Irwin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seungchul Irwin -sn: Irwin -description: This is Seungchul Irwin's description -facsimileTelephoneNumber: +1 408 519-1343 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 318-8766 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: IrwinS -givenName: Seungchul -mail: IrwinS@8b295e8cd635489485394b6d99d818e7.bitwarden.com -carLicense: WTQSRT -departmentNumber: 7468 -employeeType: Normal -homePhone: +1 408 517-6430 -initials: S. I. -mobile: +1 408 130-3615 -pager: +1 408 234-7947 -roomNumber: 8540 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Myrlene Santi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrlene Santi -sn: Santi -description: This is Myrlene Santi's description -facsimileTelephoneNumber: +1 510 306-7540 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 510 116-7802 -title: Junior Product Development Engineer -userPassword: Password1 -uid: SantiM -givenName: Myrlene -mail: SantiM@11b234eea2bc47719297586301a47914.bitwarden.com -carLicense: 8XTLXF -departmentNumber: 3973 -employeeType: Normal -homePhone: +1 510 986-2747 -initials: M. S. -mobile: +1 510 157-2186 -pager: +1 510 259-7071 -roomNumber: 8381 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Perry Lovejoy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perry Lovejoy -sn: Lovejoy -description: This is Perry Lovejoy's description -facsimileTelephoneNumber: +1 206 893-1238 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 422-5369 -title: Junior Administrative Janitor -userPassword: Password1 -uid: LovejoyP -givenName: Perry -mail: LovejoyP@181e7c5d669f48eca80875ae007e40bd.bitwarden.com -carLicense: BJNEIK -departmentNumber: 2566 -employeeType: Contract -homePhone: +1 206 308-5004 -initials: P. L. -mobile: +1 206 820-3543 -pager: +1 206 420-6976 -roomNumber: 9636 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Viola Gundry,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viola Gundry -sn: Gundry -description: This is Viola Gundry's description -facsimileTelephoneNumber: +1 818 960-8263 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 333-2986 -title: Master Janitorial President -userPassword: Password1 -uid: GundryV -givenName: Viola -mail: GundryV@af5f99a04b4d4049bab4751bf65043cb.bitwarden.com -carLicense: D73RRB -departmentNumber: 8768 -employeeType: Normal -homePhone: +1 818 553-8012 -initials: V. G. -mobile: +1 818 470-1335 -pager: +1 818 971-9041 -roomNumber: 9112 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vlado Dordari,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vlado Dordari -sn: Dordari -description: This is Vlado Dordari's description -facsimileTelephoneNumber: +1 408 519-9963 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 408 139-2970 -title: Associate Janitorial President -userPassword: Password1 -uid: DordariV -givenName: Vlado -mail: DordariV@3d08abe32a7a4ad6ad8c863880ea4bcf.bitwarden.com -carLicense: M897K3 -departmentNumber: 1124 -employeeType: Contract -homePhone: +1 408 646-5056 -initials: V. D. -mobile: +1 408 550-9040 -pager: +1 408 970-2062 -roomNumber: 9885 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cindra DeMarco,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cindra DeMarco -sn: DeMarco -description: This is Cindra DeMarco's description -facsimileTelephoneNumber: +1 213 740-4433 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 396-4016 -title: Supreme Management Figurehead -userPassword: Password1 -uid: DeMarcoC -givenName: Cindra -mail: DeMarcoC@9b0aeac2cdb5436687a362cde882372c.bitwarden.com -carLicense: S37M2J -departmentNumber: 6953 -employeeType: Contract -homePhone: +1 213 759-2790 -initials: C. D. -mobile: +1 213 542-8647 -pager: +1 213 336-9021 -roomNumber: 8284 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Delcine Wyss,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delcine Wyss -sn: Wyss -description: This is Delcine Wyss's description -facsimileTelephoneNumber: +1 206 989-7183 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 629-6040 -title: Junior Product Testing Pinhead -userPassword: Password1 -uid: WyssD -givenName: Delcine -mail: WyssD@42acff70d0bf48f9a8fb0c9bb9ccac94.bitwarden.com -carLicense: MEK908 -departmentNumber: 1125 -employeeType: Contract -homePhone: +1 206 921-2105 -initials: D. W. -mobile: +1 206 592-5017 -pager: +1 206 807-1633 -roomNumber: 9630 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edythe Kleynenberg -sn: Kleynenberg -description: This is Edythe Kleynenberg's description -facsimileTelephoneNumber: +1 206 949-4226 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 186-1021 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: KleynenE -givenName: Edythe -mail: KleynenE@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com -carLicense: D9H5XG -departmentNumber: 9209 -employeeType: Normal -homePhone: +1 206 155-8469 -initials: E. K. -mobile: +1 206 419-4495 -pager: +1 206 552-4243 -roomNumber: 8670 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aurora Gibb,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurora Gibb -sn: Gibb -description: This is Aurora Gibb's description -facsimileTelephoneNumber: +1 408 321-2293 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 770-2054 -title: Master Human Resources Admin -userPassword: Password1 -uid: GibbA -givenName: Aurora -mail: GibbA@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com -carLicense: PDSKQ1 -departmentNumber: 8130 -employeeType: Contract -homePhone: +1 408 669-6935 -initials: A. G. -mobile: +1 408 326-1856 -pager: +1 408 452-1324 -roomNumber: 9863 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rona Maciel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rona Maciel -sn: Maciel -description: This is Rona Maciel's description -facsimileTelephoneNumber: +1 818 682-3323 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 908-2044 -title: Junior Payroll Mascot -userPassword: Password1 -uid: MacielR -givenName: Rona -mail: MacielR@06b78485a19a4427830768a006ea8516.bitwarden.com -carLicense: 6VTBST -departmentNumber: 8661 -employeeType: Normal -homePhone: +1 818 801-9093 -initials: R. M. -mobile: +1 818 849-2234 -pager: +1 818 410-9860 -roomNumber: 9003 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Moel Goswick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moel Goswick -sn: Goswick -description: This is Moel Goswick's description -facsimileTelephoneNumber: +1 415 209-9764 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 908-7154 -title: Chief Management Figurehead -userPassword: Password1 -uid: GoswickM -givenName: Moel -mail: GoswickM@726a27d8fd0d444e9b0592ed813a614a.bitwarden.com -carLicense: VC576T -departmentNumber: 1949 -employeeType: Normal -homePhone: +1 415 670-3262 -initials: M. G. -mobile: +1 415 731-2696 -pager: +1 415 437-3210 -roomNumber: 8121 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Coord Herrington,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coord Herrington -sn: Herrington -description: This is Coord Herrington's description -facsimileTelephoneNumber: +1 206 493-8987 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 325-3398 -title: Junior Peons President -userPassword: Password1 -uid: HerringC -givenName: Coord -mail: HerringC@8bced59a99724d5eb08954ec3497f98c.bitwarden.com -carLicense: 98T8KQ -departmentNumber: 4840 -employeeType: Normal -homePhone: +1 206 609-3708 -initials: C. H. -mobile: +1 206 105-1580 -pager: +1 206 206-1565 -roomNumber: 8554 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vic Cullen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vic Cullen -sn: Cullen -description: This is Vic Cullen's description -facsimileTelephoneNumber: +1 804 711-1733 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 636-7098 -title: Master Janitorial Evangelist -userPassword: Password1 -uid: CullenV -givenName: Vic -mail: CullenV@2f1ccd0f317a4e42955b19a4c97fc5c6.bitwarden.com -carLicense: D9W79R -departmentNumber: 1519 -employeeType: Contract -homePhone: +1 804 438-7463 -initials: V. C. -mobile: +1 804 256-3483 -pager: +1 804 112-5723 -roomNumber: 9460 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sabine Misko,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabine Misko -sn: Misko -description: This is Sabine Misko's description -facsimileTelephoneNumber: +1 213 664-1935 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 535-2082 -title: Master Janitorial Consultant -userPassword: Password1 -uid: MiskoS -givenName: Sabine -mail: MiskoS@04065a5c7f734c5a9f2f4f6ee5fbcb1d.bitwarden.com -carLicense: Q0DBUM -departmentNumber: 1239 -employeeType: Employee -homePhone: +1 213 919-2797 -initials: S. M. -mobile: +1 213 906-6533 -pager: +1 213 979-1772 -roomNumber: 8144 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherry Malynowsky -sn: Malynowsky -description: This is Cherry Malynowsky's description -facsimileTelephoneNumber: +1 206 670-1262 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 206 373-3666 -title: Associate Janitorial Admin -userPassword: Password1 -uid: MalynowC -givenName: Cherry -mail: MalynowC@18892b15c58d47f6840bb6c23b52349b.bitwarden.com -carLicense: KJU2UM -departmentNumber: 3164 -employeeType: Employee -homePhone: +1 206 118-9199 -initials: C. M. -mobile: +1 206 423-8282 -pager: +1 206 452-1189 -roomNumber: 8338 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Annmarie Brunet,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annmarie Brunet -sn: Brunet -description: This is Annmarie Brunet's description -facsimileTelephoneNumber: +1 510 780-3203 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 393-1289 -title: Associate Payroll Architect -userPassword: Password1 -uid: BrunetA -givenName: Annmarie -mail: BrunetA@a371212c7c2b4312bdb15d1cffb21938.bitwarden.com -carLicense: 9X41E6 -departmentNumber: 2044 -employeeType: Contract -homePhone: +1 510 190-9894 -initials: A. B. -mobile: +1 510 919-9971 -pager: +1 510 852-9191 -roomNumber: 9601 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cecilia Xmssupport -sn: Xmssupport -description: This is Cecilia Xmssupport's description -facsimileTelephoneNumber: +1 408 475-8821 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 408 986-4608 -title: Master Payroll Admin -userPassword: Password1 -uid: XmssuppC -givenName: Cecilia -mail: XmssuppC@3b0207fba5944fd0a6dca16921952a03.bitwarden.com -carLicense: V9U6MT -departmentNumber: 7034 -employeeType: Contract -homePhone: +1 408 735-5676 -initials: C. X. -mobile: +1 408 675-8441 -pager: +1 408 320-2410 -roomNumber: 9406 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Icy Meleski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Icy Meleski -sn: Meleski -description: This is Icy Meleski's description -facsimileTelephoneNumber: +1 206 302-6801 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 206 923-2111 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: MeleskiI -givenName: Icy -mail: MeleskiI@d1aff07ca59844dcbbf406f0fc775f82.bitwarden.com -carLicense: VL9H2H -departmentNumber: 8407 -employeeType: Normal -homePhone: +1 206 837-3486 -initials: I. M. -mobile: +1 206 652-1978 -pager: +1 206 448-7864 -roomNumber: 9654 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Apollo Mitalas,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Apollo Mitalas -sn: Mitalas -description: This is Apollo Mitalas's description -facsimileTelephoneNumber: +1 408 813-2186 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 175-3640 -title: Junior Management Consultant -userPassword: Password1 -uid: MitalasA -givenName: Apollo -mail: MitalasA@f34e8d49f28f402594055fe0901d1b44.bitwarden.com -carLicense: FL631E -departmentNumber: 3891 -employeeType: Contract -homePhone: +1 408 359-7562 -initials: A. M. -mobile: +1 408 748-4928 -pager: +1 408 374-6863 -roomNumber: 8060 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shirleen Costache,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirleen Costache -sn: Costache -description: This is Shirleen Costache's description -facsimileTelephoneNumber: +1 415 332-9256 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 347-3435 -title: Master Payroll Evangelist -userPassword: Password1 -uid: CostachS -givenName: Shirleen -mail: CostachS@8386f2764ec04b659a8fc2d330c9443a.bitwarden.com -carLicense: 3VQAS2 -departmentNumber: 6244 -employeeType: Contract -homePhone: +1 415 345-9036 -initials: S. C. -mobile: +1 415 552-7326 -pager: +1 415 358-5595 -roomNumber: 8422 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tulip Bannan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tulip Bannan -sn: Bannan -description: This is Tulip Bannan's description -facsimileTelephoneNumber: +1 818 244-4019 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 534-4329 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: BannanT -givenName: Tulip -mail: BannanT@c6a8d6d12ae045f8ba075455c769a929.bitwarden.com -carLicense: DA3FN3 -departmentNumber: 1799 -employeeType: Normal -homePhone: +1 818 406-3206 -initials: T. B. -mobile: +1 818 868-1711 -pager: +1 818 188-7221 -roomNumber: 8869 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mareah Mior,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mareah Mior -sn: Mior -description: This is Mareah Mior's description -facsimileTelephoneNumber: +1 213 105-1455 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 609-1619 -title: Junior Product Development Architect -userPassword: Password1 -uid: MiorM -givenName: Mareah -mail: MiorM@ba2be91aa4064d8bbc344c883875d66e.bitwarden.com -carLicense: 5MUJ38 -departmentNumber: 7924 -employeeType: Normal -homePhone: +1 213 207-8451 -initials: M. M. -mobile: +1 213 434-7421 -pager: +1 213 272-5162 -roomNumber: 8932 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terrijo Spaugh -sn: Spaugh -description: This is Terrijo Spaugh's description -facsimileTelephoneNumber: +1 510 340-7179 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 816-5781 -title: Associate Administrative Punk -userPassword: Password1 -uid: SpaughT -givenName: Terrijo -mail: SpaughT@34766460128a4ee582041f543b9bd242.bitwarden.com -carLicense: WN88AH -departmentNumber: 4992 -employeeType: Normal -homePhone: +1 510 376-8358 -initials: T. S. -mobile: +1 510 814-5095 -pager: +1 510 692-6375 -roomNumber: 9238 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lorraine Sikri,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorraine Sikri -sn: Sikri -description: This is Lorraine Sikri's description -facsimileTelephoneNumber: +1 415 734-5846 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 739-1090 -title: Master Product Development Vice President -userPassword: Password1 -uid: SikriL -givenName: Lorraine -mail: SikriL@5de6e5b11af645c19702df156533c6ff.bitwarden.com -carLicense: VKSQ3K -departmentNumber: 7382 -employeeType: Normal -homePhone: +1 415 360-1667 -initials: L. S. -mobile: +1 415 680-8828 -pager: +1 415 144-9861 -roomNumber: 9752 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenora DeBernardo -sn: DeBernardo -description: This is Lenora DeBernardo's description -facsimileTelephoneNumber: +1 804 860-3309 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 248-7411 -title: Chief Product Development Fellow -userPassword: Password1 -uid: DeBernaL -givenName: Lenora -mail: DeBernaL@f9e807ad6c8448a7b4463b10b5cc7416.bitwarden.com -carLicense: ONC0D6 -departmentNumber: 7836 -employeeType: Normal -homePhone: +1 804 100-3977 -initials: L. D. -mobile: +1 804 207-3809 -pager: +1 804 216-3560 -roomNumber: 8606 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karyn Laroche,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karyn Laroche -sn: Laroche -description: This is Karyn Laroche's description -facsimileTelephoneNumber: +1 818 184-5549 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 239-7253 -title: Chief Payroll Engineer -userPassword: Password1 -uid: LarocheK -givenName: Karyn -mail: LarocheK@a5bee62da8ef4e9d8313518642926292.bitwarden.com -carLicense: 8GDTUV -departmentNumber: 8935 -employeeType: Employee -homePhone: +1 818 153-3897 -initials: K. L. -mobile: +1 818 184-7282 -pager: +1 818 144-1648 -roomNumber: 9261 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Koral Carkner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koral Carkner -sn: Carkner -description: This is Koral Carkner's description -facsimileTelephoneNumber: +1 408 348-7550 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 371-8856 -title: Master Peons Technician -userPassword: Password1 -uid: CarknerK -givenName: Koral -mail: CarknerK@8d84473559264c6592d3bbcbad962447.bitwarden.com -carLicense: C4R14C -departmentNumber: 7437 -employeeType: Contract -homePhone: +1 408 199-8159 -initials: K. C. -mobile: +1 408 542-8518 -pager: +1 408 342-4840 -roomNumber: 8224 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hyung Harada,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hyung Harada -sn: Harada -description: This is Hyung Harada's description -facsimileTelephoneNumber: +1 818 506-2653 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 695-8192 -title: Master Peons Technician -userPassword: Password1 -uid: HaradaH -givenName: Hyung -mail: HaradaH@bd28f191e92142cf98b8765cb13928aa.bitwarden.com -carLicense: TLXMBG -departmentNumber: 5049 -employeeType: Normal -homePhone: +1 818 463-5146 -initials: H. H. -mobile: +1 818 583-1220 -pager: +1 818 222-1933 -roomNumber: 9221 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lottie Fernald,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lottie Fernald -sn: Fernald -description: This is Lottie Fernald's description -facsimileTelephoneNumber: +1 206 115-5564 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 856-9573 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: FernaldL -givenName: Lottie -mail: FernaldL@d749086910384a37b3e64dd02ab05f90.bitwarden.com -carLicense: 3TC71L -departmentNumber: 7414 -employeeType: Employee -homePhone: +1 206 320-2656 -initials: L. F. -mobile: +1 206 628-9943 -pager: +1 206 802-2187 -roomNumber: 9429 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Edyta Samalot,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edyta Samalot -sn: Samalot -description: This is Edyta Samalot's description -facsimileTelephoneNumber: +1 818 603-3262 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 540-4106 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: SamalotE -givenName: Edyta -mail: SamalotE@7848d01e47bb47dd88ac5b785d126995.bitwarden.com -carLicense: XRHTYP -departmentNumber: 2551 -employeeType: Normal -homePhone: +1 818 196-5449 -initials: E. S. -mobile: +1 818 739-4656 -pager: +1 818 261-6460 -roomNumber: 9290 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eoin Morrin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eoin Morrin -sn: Morrin -description: This is Eoin Morrin's description -facsimileTelephoneNumber: +1 415 692-2146 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 538-1735 -title: Master Product Development Warrior -userPassword: Password1 -uid: MorrinE -givenName: Eoin -mail: MorrinE@28a93f8db65e4c7896a7639f8d2d6945.bitwarden.com -carLicense: IN72L2 -departmentNumber: 4115 -employeeType: Employee -homePhone: +1 415 996-4088 -initials: E. M. -mobile: +1 415 571-8200 -pager: +1 415 753-8900 -roomNumber: 9889 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Froukje Viney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Froukje Viney -sn: Viney -description: This is Froukje Viney's description -facsimileTelephoneNumber: +1 818 793-4735 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 837-5482 -title: Junior Administrative Developer -userPassword: Password1 -uid: VineyF -givenName: Froukje -mail: VineyF@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com -carLicense: N3IG24 -departmentNumber: 3598 -employeeType: Contract -homePhone: +1 818 259-7363 -initials: F. V. -mobile: +1 818 838-7788 -pager: +1 818 164-7102 -roomNumber: 9738 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sir Rivera,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sir Rivera -sn: Rivera -description: This is Sir Rivera's description -facsimileTelephoneNumber: +1 213 443-4091 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 213 964-9480 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: RiveraS -givenName: Sir -mail: RiveraS@2f8feafb11c746348907c348d024b2dd.bitwarden.com -carLicense: YKWFJP -departmentNumber: 8318 -employeeType: Employee -homePhone: +1 213 730-9979 -initials: S. R. -mobile: +1 213 137-4828 -pager: +1 213 473-6664 -roomNumber: 8421 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thompson Cauthen -sn: Cauthen -description: This is Thompson Cauthen's description -facsimileTelephoneNumber: +1 213 870-6024 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 609-1605 -title: Master Product Testing Czar -userPassword: Password1 -uid: CauthenT -givenName: Thompson -mail: CauthenT@074a9a8e88a74ca2b469a141eb213f61.bitwarden.com -carLicense: DC03OQ -departmentNumber: 1798 -employeeType: Normal -homePhone: +1 213 401-8991 -initials: T. C. -mobile: +1 213 948-7495 -pager: +1 213 928-6217 -roomNumber: 9156 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ky LEcuyer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ky LEcuyer -sn: LEcuyer -description: This is Ky LEcuyer's description -facsimileTelephoneNumber: +1 415 678-7300 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 766-6230 -title: Master Peons Stooge -userPassword: Password1 -uid: LEcuyerK -givenName: Ky -mail: LEcuyerK@5acaf493974e4933b27d5e78e25585d3.bitwarden.com -carLicense: XNNO14 -departmentNumber: 9670 -employeeType: Employee -homePhone: +1 415 429-3912 -initials: K. L. -mobile: +1 415 978-4361 -pager: +1 415 171-8596 -roomNumber: 9075 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merralee Flueckinger -sn: Flueckinger -description: This is Merralee Flueckinger's description -facsimileTelephoneNumber: +1 206 623-5763 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 206 253-3928 -title: Chief Payroll Mascot -userPassword: Password1 -uid: FlueckiM -givenName: Merralee -mail: FlueckiM@9a46632bfd114a35bc91d48e26ae1de0.bitwarden.com -carLicense: 59JNUH -departmentNumber: 7223 -employeeType: Employee -homePhone: +1 206 100-6459 -initials: M. F. -mobile: +1 206 437-2969 -pager: +1 206 253-6059 -roomNumber: 9906 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Buda Lumley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Buda Lumley -sn: Lumley -description: This is Buda Lumley's description -facsimileTelephoneNumber: +1 408 772-7176 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 867-8452 -title: Master Administrative Director -userPassword: Password1 -uid: LumleyB -givenName: Buda -mail: LumleyB@058dcb3aa7ef439b89d92834e14a6f82.bitwarden.com -carLicense: YJRAII -departmentNumber: 6795 -employeeType: Normal -homePhone: +1 408 762-1883 -initials: B. L. -mobile: +1 408 494-1386 -pager: +1 408 547-7978 -roomNumber: 9127 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Humberto Bittenbender -sn: Bittenbender -description: This is Humberto Bittenbender's description -facsimileTelephoneNumber: +1 415 990-5834 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 489-4546 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: BittenbH -givenName: Humberto -mail: BittenbH@8086b9fea7b2437cb09806e8e5c40f1a.bitwarden.com -carLicense: YK7LD0 -departmentNumber: 8035 -employeeType: Normal -homePhone: +1 415 871-9268 -initials: H. B. -mobile: +1 415 872-8534 -pager: +1 415 518-3842 -roomNumber: 8277 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marley Haley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marley Haley -sn: Haley -description: This is Marley Haley's description -facsimileTelephoneNumber: +1 213 511-3922 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 213 991-4708 -title: Junior Human Resources Admin -userPassword: Password1 -uid: HaleyM -givenName: Marley -mail: HaleyM@108017314a624d21908ec502dfe2ba35.bitwarden.com -carLicense: V093X0 -departmentNumber: 3538 -employeeType: Employee -homePhone: +1 213 976-7527 -initials: M. H. -mobile: +1 213 581-5552 -pager: +1 213 738-7682 -roomNumber: 8205 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ernestine Newport,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ernestine Newport -sn: Newport -description: This is Ernestine Newport's description -facsimileTelephoneNumber: +1 408 161-7545 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 532-5775 -title: Chief Management Assistant -userPassword: Password1 -uid: NewportE -givenName: Ernestine -mail: NewportE@5b18d26e867d4e609682950868db4cbf.bitwarden.com -carLicense: V3WRPN -departmentNumber: 8050 -employeeType: Contract -homePhone: +1 408 587-1238 -initials: E. N. -mobile: +1 408 812-7897 -pager: +1 408 944-4477 -roomNumber: 8372 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Myrtle Bernier,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrtle Bernier -sn: Bernier -description: This is Myrtle Bernier's description -facsimileTelephoneNumber: +1 415 601-8274 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 259-2983 -title: Associate Management Consultant -userPassword: Password1 -uid: BernierM -givenName: Myrtle -mail: BernierM@882aa483754845e7b3e2e0ad8b5f2465.bitwarden.com -carLicense: CLINVB -departmentNumber: 7198 -employeeType: Contract -homePhone: +1 415 257-3981 -initials: M. B. -mobile: +1 415 858-4521 -pager: +1 415 586-6868 -roomNumber: 8423 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LeiSee Mikhail -sn: Mikhail -description: This is LeiSee Mikhail's description -facsimileTelephoneNumber: +1 818 276-7769 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 818 123-7261 -title: Chief Janitorial Admin -userPassword: Password1 -uid: MikhailL -givenName: LeiSee -mail: MikhailL@07ab31b82e2e4a9b8fae125fc95e3c8f.bitwarden.com -carLicense: RNPTXM -departmentNumber: 4318 -employeeType: Normal -homePhone: +1 818 620-5646 -initials: L. M. -mobile: +1 818 446-5553 -pager: +1 818 113-7781 -roomNumber: 9347 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Karil Chennette,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karil Chennette -sn: Chennette -description: This is Karil Chennette's description -facsimileTelephoneNumber: +1 213 668-1547 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 270-8530 -title: Master Management Madonna -userPassword: Password1 -uid: ChennetK -givenName: Karil -mail: ChennetK@dbab907c037c4b6c9575abe77a070057.bitwarden.com -carLicense: FSIJ46 -departmentNumber: 8037 -employeeType: Contract -homePhone: +1 213 186-3512 -initials: K. C. -mobile: +1 213 490-8456 -pager: +1 213 998-2736 -roomNumber: 8150 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Liz Burrowes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liz Burrowes -sn: Burrowes -description: This is Liz Burrowes's description -facsimileTelephoneNumber: +1 415 306-5684 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 415 324-2357 -title: Supreme Product Testing Dictator -userPassword: Password1 -uid: BurroweL -givenName: Liz -mail: BurroweL@bce34cfdf7754b3b8c5551673f06b428.bitwarden.com -carLicense: QF1YVJ -departmentNumber: 1273 -employeeType: Normal -homePhone: +1 415 413-3434 -initials: L. B. -mobile: +1 415 947-3500 -pager: +1 415 537-4472 -roomNumber: 9115 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ivona Koch,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivona Koch -sn: Koch -description: This is Ivona Koch's description -facsimileTelephoneNumber: +1 415 646-1492 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 921-6340 -title: Chief Administrative Consultant -userPassword: Password1 -uid: KochI -givenName: Ivona -mail: KochI@77df1d4a30ab443892398806ba3c7576.bitwarden.com -carLicense: W12QQR -departmentNumber: 8352 -employeeType: Employee -homePhone: +1 415 635-4572 -initials: I. K. -mobile: +1 415 384-9629 -pager: +1 415 372-8447 -roomNumber: 9605 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Berta Mou,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berta Mou -sn: Mou -description: This is Berta Mou's description -facsimileTelephoneNumber: +1 408 193-4006 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 765-3619 -title: Junior Management Warrior -userPassword: Password1 -uid: MouB -givenName: Berta -mail: MouB@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com -carLicense: EI8YYE -departmentNumber: 5012 -employeeType: Contract -homePhone: +1 408 280-5334 -initials: B. M. -mobile: +1 408 751-2633 -pager: +1 408 395-6570 -roomNumber: 9401 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pris Freire,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pris Freire -sn: Freire -description: This is Pris Freire's description -facsimileTelephoneNumber: +1 206 640-6157 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 270-7310 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: FreireP -givenName: Pris -mail: FreireP@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com -carLicense: VVS4JQ -departmentNumber: 1139 -employeeType: Employee -homePhone: +1 206 629-8548 -initials: P. F. -mobile: +1 206 513-6581 -pager: +1 206 278-3685 -roomNumber: 9424 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Toyanne Ragde,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toyanne Ragde -sn: Ragde -description: This is Toyanne Ragde's description -facsimileTelephoneNumber: +1 818 160-7925 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 553-3261 -title: Supreme Administrative Developer -userPassword: Password1 -uid: RagdeT -givenName: Toyanne -mail: RagdeT@7056e30d771245dcacf5054aa8552268.bitwarden.com -carLicense: 1KU6JW -departmentNumber: 8114 -employeeType: Employee -homePhone: +1 818 559-9247 -initials: T. R. -mobile: +1 818 894-3288 -pager: +1 818 779-8927 -roomNumber: 8384 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Domenick Zingeler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Domenick Zingeler -sn: Zingeler -description: This is Domenick Zingeler's description -facsimileTelephoneNumber: +1 206 447-2373 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 271-1676 -title: Junior Management Stooge -userPassword: Password1 -uid: ZingeleD -givenName: Domenick -mail: ZingeleD@8289a29e96624f61a290ca3e806f9dd8.bitwarden.com -carLicense: EH8TVJ -departmentNumber: 1492 -employeeType: Contract -homePhone: +1 206 733-3812 -initials: D. Z. -mobile: +1 206 558-7908 -pager: +1 206 511-3319 -roomNumber: 8730 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Stergios Incze,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stergios Incze -sn: Incze -description: This is Stergios Incze's description -facsimileTelephoneNumber: +1 206 843-3714 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 343-6122 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: InczeS -givenName: Stergios -mail: InczeS@733a0ed9ca244d1a87001be1b9e9514d.bitwarden.com -carLicense: 8OHFP8 -departmentNumber: 5165 -employeeType: Contract -homePhone: +1 206 556-7693 -initials: S. I. -mobile: +1 206 190-2267 -pager: +1 206 586-2485 -roomNumber: 8088 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dagmar Zegray -sn: Zegray -description: This is Dagmar Zegray's description -facsimileTelephoneNumber: +1 804 368-5195 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 881-4492 -title: Chief Human Resources President -userPassword: Password1 -uid: ZegrayD -givenName: Dagmar -mail: ZegrayD@cc36ba74c0ba485aa780b52eb8bbc932.bitwarden.com -carLicense: LQJQ8K -departmentNumber: 4023 -employeeType: Normal -homePhone: +1 804 228-1487 -initials: D. Z. -mobile: +1 804 764-9138 -pager: +1 804 636-3850 -roomNumber: 8134 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Habeeb Ziebarth -sn: Ziebarth -description: This is Habeeb Ziebarth's description -facsimileTelephoneNumber: +1 510 793-6270 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 942-5552 -title: Associate Janitorial Manager -userPassword: Password1 -uid: ZiebartH -givenName: Habeeb -mail: ZiebartH@678eafe7ca0c42cbb92380789ecb5326.bitwarden.com -carLicense: JYXTKR -departmentNumber: 3480 -employeeType: Contract -homePhone: +1 510 614-9011 -initials: H. Z. -mobile: +1 510 761-6315 -pager: +1 510 606-9586 -roomNumber: 9750 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milou Ozyetis -sn: Ozyetis -description: This is Milou Ozyetis's description -facsimileTelephoneNumber: +1 213 741-4523 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 922-7877 -title: Associate Janitorial Evangelist -userPassword: Password1 -uid: OzyetisM -givenName: Milou -mail: OzyetisM@2760ce3bd4ad488f9656332aa7dc01c4.bitwarden.com -carLicense: 16OWV2 -departmentNumber: 9721 -employeeType: Employee -homePhone: +1 213 457-1317 -initials: M. O. -mobile: +1 213 679-2600 -pager: +1 213 411-8472 -roomNumber: 9719 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hera Haupt,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hera Haupt -sn: Haupt -description: This is Hera Haupt's description -facsimileTelephoneNumber: +1 213 760-5681 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 726-1780 -title: Associate Administrative Pinhead -userPassword: Password1 -uid: HauptH -givenName: Hera -mail: HauptH@887a5031be2f4823b51a61ce6f7368d9.bitwarden.com -carLicense: NXC9UR -departmentNumber: 5048 -employeeType: Normal -homePhone: +1 213 358-9757 -initials: H. H. -mobile: +1 213 386-7330 -pager: +1 213 679-9022 -roomNumber: 9893 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shahram Lahteenmaa -sn: Lahteenmaa -description: This is Shahram Lahteenmaa's description -facsimileTelephoneNumber: +1 804 413-5516 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 194-4172 -title: Supreme Management Dictator -userPassword: Password1 -uid: LahteenS -givenName: Shahram -mail: LahteenS@0a64fcd3d4a341f2b777b42a710cb464.bitwarden.com -carLicense: WOAX5C -departmentNumber: 7016 -employeeType: Employee -homePhone: +1 804 402-6203 -initials: S. L. -mobile: +1 804 685-8581 -pager: +1 804 446-3939 -roomNumber: 9284 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Robena Scodras,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robena Scodras -sn: Scodras -description: This is Robena Scodras's description -facsimileTelephoneNumber: +1 510 697-8143 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 510 973-6850 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: ScodrasR -givenName: Robena -mail: ScodrasR@732895781258430aa850734a965ff9eb.bitwarden.com -carLicense: J6EBE1 -departmentNumber: 1499 -employeeType: Contract -homePhone: +1 510 234-5936 -initials: R. S. -mobile: +1 510 499-8971 -pager: +1 510 374-3607 -roomNumber: 8696 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ibby Feist,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ibby Feist -sn: Feist -description: This is Ibby Feist's description -facsimileTelephoneNumber: +1 415 565-6822 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 220-6129 -title: Junior Payroll Stooge -userPassword: Password1 -uid: FeistI -givenName: Ibby -mail: FeistI@2ccf92b2367047e48fb3d1d7db3fa4ba.bitwarden.com -carLicense: SVPO25 -departmentNumber: 6283 -employeeType: Employee -homePhone: +1 415 737-9345 -initials: I. F. -mobile: +1 415 827-1883 -pager: +1 415 366-2730 -roomNumber: 8903 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lachu Namiki,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lachu Namiki -sn: Namiki -description: This is Lachu Namiki's description -facsimileTelephoneNumber: +1 206 558-7044 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 543-6937 -title: Master Administrative Admin -userPassword: Password1 -uid: NamikiL -givenName: Lachu -mail: NamikiL@8416e448334443f3a2b36370271f352b.bitwarden.com -carLicense: NASPM7 -departmentNumber: 7377 -employeeType: Normal -homePhone: +1 206 847-3220 -initials: L. N. -mobile: +1 206 174-5571 -pager: +1 206 347-9846 -roomNumber: 8159 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saleem Rozumna -sn: Rozumna -description: This is Saleem Rozumna's description -facsimileTelephoneNumber: +1 804 634-9135 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 964-6875 -title: Master Human Resources Engineer -userPassword: Password1 -uid: RozumnaS -givenName: Saleem -mail: RozumnaS@c7cfbecdcc9244d89ede1a6fe93b790c.bitwarden.com -carLicense: VEVE1F -departmentNumber: 7694 -employeeType: Contract -homePhone: +1 804 434-2767 -initials: S. R. -mobile: +1 804 122-8916 -pager: +1 804 427-1226 -roomNumber: 8882 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regine McQuarrie -sn: McQuarrie -description: This is Regine McQuarrie's description -facsimileTelephoneNumber: +1 415 800-2907 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 485-3411 -title: Supreme Janitorial Sales Rep -userPassword: Password1 -uid: McQuarrR -givenName: Regine -mail: McQuarrR@5415c52be549497a9568e3a1cfa7947d.bitwarden.com -carLicense: WQB8N9 -departmentNumber: 1652 -employeeType: Contract -homePhone: +1 415 696-9633 -initials: R. M. -mobile: +1 415 403-3361 -pager: +1 415 109-9782 -roomNumber: 9118 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Norry Wolfs,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norry Wolfs -sn: Wolfs -description: This is Norry Wolfs's description -facsimileTelephoneNumber: +1 206 996-9931 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 717-4610 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: WolfsN -givenName: Norry -mail: WolfsN@30b2d6e7a1b342d0a3a8e7a402acef7a.bitwarden.com -carLicense: DU8L41 -departmentNumber: 7338 -employeeType: Employee -homePhone: +1 206 177-8274 -initials: N. W. -mobile: +1 206 809-8468 -pager: +1 206 741-8024 -roomNumber: 9867 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tahir Frederick,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tahir Frederick -sn: Frederick -description: This is Tahir Frederick's description -facsimileTelephoneNumber: +1 415 197-3807 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 640-8974 -title: Chief Product Development Warrior -userPassword: Password1 -uid: FrederiT -givenName: Tahir -mail: FrederiT@3f23376c66604a36ab332ecde75543de.bitwarden.com -carLicense: MOM337 -departmentNumber: 5657 -employeeType: Normal -homePhone: +1 415 836-6502 -initials: T. F. -mobile: +1 415 871-5998 -pager: +1 415 639-3406 -roomNumber: 9450 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marlies Mraz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlies Mraz -sn: Mraz -description: This is Marlies Mraz's description -facsimileTelephoneNumber: +1 415 492-8779 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 531-2372 -title: Supreme Product Testing Sales Rep -userPassword: Password1 -uid: MrazM -givenName: Marlies -mail: MrazM@ddd14554e5954403b2fd4a0b5c5617c7.bitwarden.com -carLicense: 92TPB7 -departmentNumber: 4882 -employeeType: Employee -homePhone: +1 415 933-7266 -initials: M. M. -mobile: +1 415 387-8605 -pager: +1 415 536-3692 -roomNumber: 9663 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Farooq Gaebel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farooq Gaebel -sn: Gaebel -description: This is Farooq Gaebel's description -facsimileTelephoneNumber: +1 510 769-1914 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 510 354-3885 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: GaebelF -givenName: Farooq -mail: GaebelF@cf8b4b591c2f4387aae0bb010f18f55b.bitwarden.com -carLicense: 13YSO6 -departmentNumber: 9835 -employeeType: Contract -homePhone: +1 510 763-4948 -initials: F. G. -mobile: +1 510 874-4485 -pager: +1 510 332-6045 -roomNumber: 8863 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnathan Kuzemka -sn: Kuzemka -description: This is Johnathan Kuzemka's description -facsimileTelephoneNumber: +1 415 565-8784 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 138-1105 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: KuzemkaJ -givenName: Johnathan -mail: KuzemkaJ@6de317d5c17343b4a932206ca859cf5d.bitwarden.com -carLicense: CVDC9O -departmentNumber: 6254 -employeeType: Contract -homePhone: +1 415 461-4672 -initials: J. K. -mobile: +1 415 297-5219 -pager: +1 415 296-2683 -roomNumber: 8356 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Janell Rolston,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janell Rolston -sn: Rolston -description: This is Janell Rolston's description -facsimileTelephoneNumber: +1 213 210-5989 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 213 158-5920 -title: Master Product Development Visionary -userPassword: Password1 -uid: RolstonJ -givenName: Janell -mail: RolstonJ@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com -carLicense: NB4QU1 -departmentNumber: 3617 -employeeType: Normal -homePhone: +1 213 453-9875 -initials: J. R. -mobile: +1 213 111-3937 -pager: +1 213 596-7332 -roomNumber: 9070 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jere Jubenville,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jere Jubenville -sn: Jubenville -description: This is Jere Jubenville's description -facsimileTelephoneNumber: +1 408 945-7313 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 635-3804 -title: Supreme Payroll Director -userPassword: Password1 -uid: JubenviJ -givenName: Jere -mail: JubenviJ@3d384c725592473eb1a1b68befde2a5a.bitwarden.com -carLicense: 1LIF6E -departmentNumber: 1941 -employeeType: Employee -homePhone: +1 408 456-3233 -initials: J. J. -mobile: +1 408 520-5518 -pager: +1 408 250-2300 -roomNumber: 9756 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Noelyn Benham,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noelyn Benham -sn: Benham -description: This is Noelyn Benham's description -facsimileTelephoneNumber: +1 408 437-3777 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 122-4250 -title: Associate Administrative Admin -userPassword: Password1 -uid: BenhamN -givenName: Noelyn -mail: BenhamN@a681f6dfeb8340649e58be794854640d.bitwarden.com -carLicense: TF35T7 -departmentNumber: 9646 -employeeType: Employee -homePhone: +1 408 929-3123 -initials: N. B. -mobile: +1 408 898-4554 -pager: +1 408 577-3298 -roomNumber: 8783 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maury Ismail,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maury Ismail -sn: Ismail -description: This is Maury Ismail's description -facsimileTelephoneNumber: +1 818 369-6497 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 489-4127 -title: Associate Management Fellow -userPassword: Password1 -uid: IsmailM -givenName: Maury -mail: IsmailM@368b49862ec74ac1974a058d04889202.bitwarden.com -carLicense: N3JB4D -departmentNumber: 7384 -employeeType: Contract -homePhone: +1 818 892-4718 -initials: M. I. -mobile: +1 818 176-5800 -pager: +1 818 161-2193 -roomNumber: 9094 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherie Scrbacic -sn: Scrbacic -description: This is Sherie Scrbacic's description -facsimileTelephoneNumber: +1 206 709-9018 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 206 260-4441 -title: Chief Product Testing Artist -userPassword: Password1 -uid: ScrbaciS -givenName: Sherie -mail: ScrbaciS@f2e9e9593d6a4cd0a817bf5143921c87.bitwarden.com -carLicense: VPVKAY -departmentNumber: 6539 -employeeType: Contract -homePhone: +1 206 279-1979 -initials: S. S. -mobile: +1 206 530-1330 -pager: +1 206 168-3628 -roomNumber: 9249 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nixie Cusato,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nixie Cusato -sn: Cusato -description: This is Nixie Cusato's description -facsimileTelephoneNumber: +1 415 718-5151 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 754-6028 -title: Junior Administrative Manager -userPassword: Password1 -uid: CusatoN -givenName: Nixie -mail: CusatoN@108c2ffc1189457d80b27e9b862163f4.bitwarden.com -carLicense: 0PF77M -departmentNumber: 8390 -employeeType: Employee -homePhone: +1 415 490-1388 -initials: N. C. -mobile: +1 415 470-6136 -pager: +1 415 506-4826 -roomNumber: 8103 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alastair Slozil,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alastair Slozil -sn: Slozil -description: This is Alastair Slozil's description -facsimileTelephoneNumber: +1 408 974-1392 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 845-3906 -title: Chief Administrative Vice President -userPassword: Password1 -uid: SlozilA -givenName: Alastair -mail: SlozilA@97e0ce17a4af42e594025cdd4659fe64.bitwarden.com -carLicense: B91735 -departmentNumber: 4850 -employeeType: Normal -homePhone: +1 408 314-5558 -initials: A. S. -mobile: +1 408 725-7795 -pager: +1 408 864-3538 -roomNumber: 9466 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Georgena Behrens,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgena Behrens -sn: Behrens -description: This is Georgena Behrens's description -facsimileTelephoneNumber: +1 408 240-8392 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 996-6669 -title: Chief Management Punk -userPassword: Password1 -uid: BehrensG -givenName: Georgena -mail: BehrensG@f10e733ab73f49deaef5dee5420e792f.bitwarden.com -carLicense: AI4YG6 -departmentNumber: 3991 -employeeType: Normal -homePhone: +1 408 534-1650 -initials: G. B. -mobile: +1 408 677-7486 -pager: +1 408 864-3912 -roomNumber: 8837 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolene Saravanos -sn: Saravanos -description: This is Jolene Saravanos's description -facsimileTelephoneNumber: +1 206 819-8641 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 415-8127 -title: Master Human Resources Punk -userPassword: Password1 -uid: SaravanJ -givenName: Jolene -mail: SaravanJ@7b122176285947e2aaa662ba71171180.bitwarden.com -carLicense: MEX5SC -departmentNumber: 1976 -employeeType: Employee -homePhone: +1 206 731-3051 -initials: J. S. -mobile: +1 206 386-1996 -pager: +1 206 709-7941 -roomNumber: 9046 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Prayson McCormack,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prayson McCormack -sn: McCormack -description: This is Prayson McCormack's description -facsimileTelephoneNumber: +1 408 788-9314 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 283-3247 -title: Junior Management Assistant -userPassword: Password1 -uid: McCormaP -givenName: Prayson -mail: McCormaP@16ace8d5d6084f5abeb34113797f56c5.bitwarden.com -carLicense: 7GOQ7V -departmentNumber: 2321 -employeeType: Normal -homePhone: +1 408 625-5019 -initials: P. M. -mobile: +1 408 811-1403 -pager: +1 408 155-6265 -roomNumber: 9811 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sharyl Meerveld,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharyl Meerveld -sn: Meerveld -description: This is Sharyl Meerveld's description -facsimileTelephoneNumber: +1 510 166-8585 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 820-5984 -title: Supreme Management Artist -userPassword: Password1 -uid: MeervelS -givenName: Sharyl -mail: MeervelS@bbbcbff60b6546acba48c66c3d01c6a8.bitwarden.com -carLicense: D95ISA -departmentNumber: 5443 -employeeType: Contract -homePhone: +1 510 291-5098 -initials: S. M. -mobile: +1 510 292-2986 -pager: +1 510 323-6896 -roomNumber: 9790 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khurshid Kovarik -sn: Kovarik -description: This is Khurshid Kovarik's description -facsimileTelephoneNumber: +1 408 854-5769 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 679-5985 -title: Associate Administrative Admin -userPassword: Password1 -uid: KovarikK -givenName: Khurshid -mail: KovarikK@9d4064a8e48f4ac180e71fdbabc60ffb.bitwarden.com -carLicense: 8AIS3Q -departmentNumber: 6961 -employeeType: Contract -homePhone: +1 408 735-6205 -initials: K. K. -mobile: +1 408 565-3451 -pager: +1 408 557-1709 -roomNumber: 9826 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tech McAllister,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tech McAllister -sn: McAllister -description: This is Tech McAllister's description -facsimileTelephoneNumber: +1 206 328-4793 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 743-3340 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: McAllisT -givenName: Tech -mail: McAllisT@79a240440e8849ae9bc16c0dd8ed8e58.bitwarden.com -carLicense: HF6783 -departmentNumber: 6287 -employeeType: Employee -homePhone: +1 206 843-4590 -initials: T. M. -mobile: +1 206 944-3385 -pager: +1 206 172-9416 -roomNumber: 9273 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Budi Anglin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Budi Anglin -sn: Anglin -description: This is Budi Anglin's description -facsimileTelephoneNumber: +1 415 487-8936 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 245-2372 -title: Master Payroll Developer -userPassword: Password1 -uid: AnglinB -givenName: Budi -mail: AnglinB@67ca48342c3741e5ba95513725c86734.bitwarden.com -carLicense: IXYWGE -departmentNumber: 4233 -employeeType: Employee -homePhone: +1 415 102-6781 -initials: B. A. -mobile: +1 415 385-9530 -pager: +1 415 836-7487 -roomNumber: 8548 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Business Marcelissen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Business Marcelissen -sn: Marcelissen -description: This is Business Marcelissen's description -facsimileTelephoneNumber: +1 804 935-5454 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 336-5262 -title: Junior Janitorial President -userPassword: Password1 -uid: MarceliB -givenName: Business -mail: MarceliB@43eeea353b144740b2e11c7fee2c8031.bitwarden.com -carLicense: QHJV8U -departmentNumber: 5439 -employeeType: Contract -homePhone: +1 804 320-6497 -initials: B. M. -mobile: +1 804 684-2291 -pager: +1 804 234-9575 -roomNumber: 8682 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=MaryKay Wilcox,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryKay Wilcox -sn: Wilcox -description: This is MaryKay Wilcox's description -facsimileTelephoneNumber: +1 213 376-9237 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 340-4498 -title: Chief Management Technician -userPassword: Password1 -uid: WilcoxM -givenName: MaryKay -mail: WilcoxM@3ae6b803292e4da4b28cd13a1bfe807a.bitwarden.com -carLicense: PQH7P5 -departmentNumber: 2445 -employeeType: Employee -homePhone: +1 213 790-2599 -initials: M. W. -mobile: +1 213 696-1143 -pager: +1 213 540-1431 -roomNumber: 9409 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ingeborg Ferraro,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ingeborg Ferraro -sn: Ferraro -description: This is Ingeborg Ferraro's description -facsimileTelephoneNumber: +1 408 911-4038 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 519-8779 -title: Associate Management President -userPassword: Password1 -uid: FerraroI -givenName: Ingeborg -mail: FerraroI@54b7c6b9ae32434d95317388edf7be04.bitwarden.com -carLicense: NXAJXK -departmentNumber: 5886 -employeeType: Normal -homePhone: +1 408 807-5946 -initials: I. F. -mobile: +1 408 888-2211 -pager: +1 408 961-7583 -roomNumber: 8991 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dulcinea Merrils,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulcinea Merrils -sn: Merrils -description: This is Dulcinea Merrils's description -facsimileTelephoneNumber: +1 408 623-2164 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 131-8478 -title: Master Peons Writer -userPassword: Password1 -uid: MerrilsD -givenName: Dulcinea -mail: MerrilsD@b7ede65f1eb44e418de85b304b190714.bitwarden.com -carLicense: VBJ1YI -departmentNumber: 4771 -employeeType: Contract -homePhone: +1 408 328-5505 -initials: D. M. -mobile: +1 408 552-9621 -pager: +1 408 960-9568 -roomNumber: 9061 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chiquia Tanner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chiquia Tanner -sn: Tanner -description: This is Chiquia Tanner's description -facsimileTelephoneNumber: +1 408 342-4941 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 527-5957 -title: Chief Peons Visionary -userPassword: Password1 -uid: TannerC -givenName: Chiquia -mail: TannerC@0c7266e301f84221bfdf197ea43adb91.bitwarden.com -carLicense: C1TOXQ -departmentNumber: 1750 -employeeType: Contract -homePhone: +1 408 723-6094 -initials: C. T. -mobile: +1 408 722-2820 -pager: +1 408 437-2394 -roomNumber: 8549 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dorreen Zrobok,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorreen Zrobok -sn: Zrobok -description: This is Dorreen Zrobok's description -facsimileTelephoneNumber: +1 206 169-4680 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 140-2291 -title: Associate Management Stooge -userPassword: Password1 -uid: ZrobokD -givenName: Dorreen -mail: ZrobokD@7a24e66dbfc94daf862a7e6a6968c7c6.bitwarden.com -carLicense: E1XOPC -departmentNumber: 4767 -employeeType: Contract -homePhone: +1 206 791-4478 -initials: D. Z. -mobile: +1 206 149-4813 -pager: +1 206 358-3645 -roomNumber: 8771 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Floris Bui,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Floris Bui -sn: Bui -description: This is Floris Bui's description -facsimileTelephoneNumber: +1 408 713-5427 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 407-2890 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: BuiF -givenName: Floris -mail: BuiF@674b214928e2430ab12d2c738240bab6.bitwarden.com -carLicense: UT8MXO -departmentNumber: 7065 -employeeType: Employee -homePhone: +1 408 102-6121 -initials: F. B. -mobile: +1 408 725-3046 -pager: +1 408 588-8998 -roomNumber: 9277 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maarten Braum,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maarten Braum -sn: Braum -description: This is Maarten Braum's description -facsimileTelephoneNumber: +1 408 658-4837 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 130-1916 -title: Junior Human Resources Mascot -userPassword: Password1 -uid: BraumM -givenName: Maarten -mail: BraumM@a92e8ef5bd3649d081a744b7f12ac2d9.bitwarden.com -carLicense: 5SM0N6 -departmentNumber: 7362 -employeeType: Normal -homePhone: +1 408 920-8904 -initials: M. B. -mobile: +1 408 473-6728 -pager: +1 408 363-2093 -roomNumber: 8514 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibelle Hoelscher -sn: Hoelscher -description: This is Sibelle Hoelscher's description -facsimileTelephoneNumber: +1 408 986-1141 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 285-7762 -title: Associate Administrative Manager -userPassword: Password1 -uid: HoelschS -givenName: Sibelle -mail: HoelschS@25af2fd0acb14921ba7d57172ced27e7.bitwarden.com -carLicense: MF0GGF -departmentNumber: 8395 -employeeType: Employee -homePhone: +1 408 806-2609 -initials: S. H. -mobile: +1 408 173-9377 -pager: +1 408 632-6232 -roomNumber: 9860 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shane Levert,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shane Levert -sn: Levert -description: This is Shane Levert's description -facsimileTelephoneNumber: +1 408 969-1988 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 489-7264 -title: Supreme Administrative Director -userPassword: Password1 -uid: LevertS -givenName: Shane -mail: LevertS@6ae361d0671f4e45b2dca3f489ab2ec1.bitwarden.com -carLicense: RKJOXI -departmentNumber: 5083 -employeeType: Employee -homePhone: +1 408 703-3659 -initials: S. L. -mobile: +1 408 438-3133 -pager: +1 408 543-3404 -roomNumber: 9173 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hesther Gunderson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hesther Gunderson -sn: Gunderson -description: This is Hesther Gunderson's description -facsimileTelephoneNumber: +1 510 411-7526 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 844-3422 -title: Junior Management Consultant -userPassword: Password1 -uid: GundersH -givenName: Hesther -mail: GundersH@981b6315c22b4f71987c74b5e187713d.bitwarden.com -carLicense: FYN9TP -departmentNumber: 8847 -employeeType: Normal -homePhone: +1 510 168-4430 -initials: H. G. -mobile: +1 510 424-8188 -pager: +1 510 691-3828 -roomNumber: 8314 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Korney Walkley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Korney Walkley -sn: Walkley -description: This is Korney Walkley's description -facsimileTelephoneNumber: +1 510 521-1720 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 519-5556 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: WalkleyK -givenName: Korney -mail: WalkleyK@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com -carLicense: V2UMMF -departmentNumber: 3023 -employeeType: Normal -homePhone: +1 510 102-2871 -initials: K. W. -mobile: +1 510 804-2178 -pager: +1 510 307-1640 -roomNumber: 9113 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamillah Ramroop -sn: Ramroop -description: This is Kamillah Ramroop's description -facsimileTelephoneNumber: +1 510 644-2944 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 607-7089 -title: Supreme Human Resources Consultant -userPassword: Password1 -uid: RamroopK -givenName: Kamillah -mail: RamroopK@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com -carLicense: WKPE60 -departmentNumber: 1104 -employeeType: Employee -homePhone: +1 510 679-2942 -initials: K. R. -mobile: +1 510 312-1384 -pager: +1 510 441-6733 -roomNumber: 9350 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Enrica Keates,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Enrica Keates -sn: Keates -description: This is Enrica Keates's description -facsimileTelephoneNumber: +1 804 696-8826 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 804 452-2374 -title: Supreme Human Resources President -userPassword: Password1 -uid: KeatesE -givenName: Enrica -mail: KeatesE@cc8182e6de0c4840a0e434e3f5bc6e84.bitwarden.com -carLicense: WOT8T8 -departmentNumber: 4407 -employeeType: Employee -homePhone: +1 804 959-9202 -initials: E. K. -mobile: +1 804 100-7652 -pager: +1 804 710-4209 -roomNumber: 9028 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sir Benda,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sir Benda -sn: Benda -description: This is Sir Benda's description -facsimileTelephoneNumber: +1 213 511-8183 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 693-6314 -title: Junior Management Developer -userPassword: Password1 -uid: BendaS -givenName: Sir -mail: BendaS@583357fdc26f4393af80e3436e701033.bitwarden.com -carLicense: MRWRXJ -departmentNumber: 1259 -employeeType: Employee -homePhone: +1 213 617-7905 -initials: S. B. -mobile: +1 213 174-8766 -pager: +1 213 904-1204 -roomNumber: 9195 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Samara Edmunds,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Samara Edmunds -sn: Edmunds -description: This is Samara Edmunds's description -facsimileTelephoneNumber: +1 510 171-7897 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 510 428-4093 -title: Associate Peons Warrior -userPassword: Password1 -uid: EdmundsS -givenName: Samara -mail: EdmundsS@dfd74a54e46140bbbd208154864b4090.bitwarden.com -carLicense: VIJ6YI -departmentNumber: 9237 -employeeType: Normal -homePhone: +1 510 955-4070 -initials: S. E. -mobile: +1 510 284-4696 -pager: +1 510 131-1485 -roomNumber: 9110 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Eoin Moomey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eoin Moomey -sn: Moomey -description: This is Eoin Moomey's description -facsimileTelephoneNumber: +1 213 284-2892 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 213 755-7449 -title: Junior Payroll President -userPassword: Password1 -uid: MoomeyE -givenName: Eoin -mail: MoomeyE@9915e6a9d4174e1a84331ee3926d409a.bitwarden.com -carLicense: Q5OTNX -departmentNumber: 2355 -employeeType: Normal -homePhone: +1 213 320-9539 -initials: E. M. -mobile: +1 213 981-8507 -pager: +1 213 163-2965 -roomNumber: 8045 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shandy Sambi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shandy Sambi -sn: Sambi -description: This is Shandy Sambi's description -facsimileTelephoneNumber: +1 804 506-3103 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 688-2794 -title: Chief Payroll Visionary -userPassword: Password1 -uid: SambiS -givenName: Shandy -mail: SambiS@5e8f47bf29ef420c9f1d1267ba3841e3.bitwarden.com -carLicense: KF6K0M -departmentNumber: 1662 -employeeType: Employee -homePhone: +1 804 499-3074 -initials: S. S. -mobile: +1 804 187-2724 -pager: +1 804 464-6319 -roomNumber: 8558 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bili Giuntini,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bili Giuntini -sn: Giuntini -description: This is Bili Giuntini's description -facsimileTelephoneNumber: +1 818 610-1437 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 958-6060 -title: Chief Administrative Engineer -userPassword: Password1 -uid: GiuntinB -givenName: Bili -mail: GiuntinB@b0acec0f1a0d41658fee0415dd506a9c.bitwarden.com -carLicense: OEXBMK -departmentNumber: 8978 -employeeType: Normal -homePhone: +1 818 526-6684 -initials: B. G. -mobile: +1 818 865-7041 -pager: +1 818 190-7916 -roomNumber: 9724 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marisca Aguinsky -sn: Aguinsky -description: This is Marisca Aguinsky's description -facsimileTelephoneNumber: +1 510 673-9891 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 540-5203 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: AguinskM -givenName: Marisca -mail: AguinskM@4e6f18df9f6440b4a4cb2cbef71a4b62.bitwarden.com -carLicense: A4F2GQ -departmentNumber: 6652 -employeeType: Employee -homePhone: +1 510 137-9482 -initials: M. A. -mobile: +1 510 545-7777 -pager: +1 510 400-9527 -roomNumber: 9254 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stephenie Steiert,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephenie Steiert -sn: Steiert -description: This is Stephenie Steiert's description -facsimileTelephoneNumber: +1 510 759-8388 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 471-1957 -title: Associate Peons Mascot -userPassword: Password1 -uid: SteiertS -givenName: Stephenie -mail: SteiertS@86fa9bbc30944a4fa4b7882b86fd11b7.bitwarden.com -carLicense: 54NYEC -departmentNumber: 3263 -employeeType: Normal -homePhone: +1 510 458-6587 -initials: S. S. -mobile: +1 510 165-2664 -pager: +1 510 666-5942 -roomNumber: 9552 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Esmaria Seddigh,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esmaria Seddigh -sn: Seddigh -description: This is Esmaria Seddigh's description -facsimileTelephoneNumber: +1 818 588-5532 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 185-5845 -title: Associate Peons President -userPassword: Password1 -uid: SeddighE -givenName: Esmaria -mail: SeddighE@bc1e9c4893b549519fdc2cec6b403596.bitwarden.com -carLicense: U53VTG -departmentNumber: 3235 -employeeType: Employee -homePhone: +1 818 618-3908 -initials: E. S. -mobile: +1 818 700-8486 -pager: +1 818 831-8615 -roomNumber: 9318 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Su Keef,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Su Keef -sn: Keef -description: This is Su Keef's description -facsimileTelephoneNumber: +1 818 589-7466 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 304-1929 -title: Associate Administrative Czar -userPassword: Password1 -uid: KeefS -givenName: Su -mail: KeefS@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com -carLicense: MXREPF -departmentNumber: 2480 -employeeType: Normal -homePhone: +1 818 929-9658 -initials: S. K. -mobile: +1 818 179-6287 -pager: +1 818 171-9011 -roomNumber: 8879 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ignatius Baines,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ignatius Baines -sn: Baines -description: This is Ignatius Baines's description -facsimileTelephoneNumber: +1 415 131-6204 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 280-4035 -title: Associate Product Development Visionary -userPassword: Password1 -uid: BainesI -givenName: Ignatius -mail: BainesI@48da65776d804c88bd44538c39d70bac.bitwarden.com -carLicense: 6U1ETE -departmentNumber: 7933 -employeeType: Contract -homePhone: +1 415 547-1313 -initials: I. B. -mobile: +1 415 505-1720 -pager: +1 415 419-1063 -roomNumber: 9555 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jenson Arbuckle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenson Arbuckle -sn: Arbuckle -description: This is Jenson Arbuckle's description -facsimileTelephoneNumber: +1 804 709-5853 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 318-3208 -title: Master Management Janitor -userPassword: Password1 -uid: ArbucklJ -givenName: Jenson -mail: ArbucklJ@3641d12680c94b38a9a8f5320636d2b3.bitwarden.com -carLicense: BPUMQ9 -departmentNumber: 1056 -employeeType: Normal -homePhone: +1 804 452-4348 -initials: J. A. -mobile: +1 804 875-7152 -pager: +1 804 908-5434 -roomNumber: 8709 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jaclin Schreiber,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaclin Schreiber -sn: Schreiber -description: This is Jaclin Schreiber's description -facsimileTelephoneNumber: +1 818 439-3109 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 989-7852 -title: Chief Management Technician -userPassword: Password1 -uid: SchreibJ -givenName: Jaclin -mail: SchreibJ@27d8375532a543b0aa95f943636664d5.bitwarden.com -carLicense: CHAB3J -departmentNumber: 3824 -employeeType: Contract -homePhone: +1 818 142-7881 -initials: J. S. -mobile: +1 818 393-7749 -pager: +1 818 508-5754 -roomNumber: 9289 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Steen Realtime,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steen Realtime -sn: Realtime -description: This is Steen Realtime's description -facsimileTelephoneNumber: +1 804 879-6822 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 149-5960 -title: Chief Administrative Director -userPassword: Password1 -uid: RealtimS -givenName: Steen -mail: RealtimS@c70dbe261a1148e99aeacce847bbdb51.bitwarden.com -carLicense: 3RHAY9 -departmentNumber: 9302 -employeeType: Employee -homePhone: +1 804 614-2651 -initials: S. R. -mobile: +1 804 266-9169 -pager: +1 804 217-6165 -roomNumber: 8986 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Edmx Walston,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edmx Walston -sn: Walston -description: This is Edmx Walston's description -facsimileTelephoneNumber: +1 206 670-3951 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 740-1760 -title: Junior Janitorial Vice President -userPassword: Password1 -uid: WalstonE -givenName: Edmx -mail: WalstonE@5088b8e166bd41bcaf6a2c598ba48813.bitwarden.com -carLicense: O19X3F -departmentNumber: 3863 -employeeType: Normal -homePhone: +1 206 857-1317 -initials: E. W. -mobile: +1 206 941-3042 -pager: +1 206 100-1652 -roomNumber: 8524 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Abu Corbeil,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abu Corbeil -sn: Corbeil -description: This is Abu Corbeil's description -facsimileTelephoneNumber: +1 206 610-5429 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 923-5514 -title: Master Peons Writer -userPassword: Password1 -uid: CorbeilA -givenName: Abu -mail: CorbeilA@68ec027fc3e8470bb6532dfe2902167e.bitwarden.com -carLicense: 30A8XV -departmentNumber: 3629 -employeeType: Employee -homePhone: +1 206 729-9098 -initials: A. C. -mobile: +1 206 452-6046 -pager: +1 206 195-8772 -roomNumber: 8214 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Annamaria Woll,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annamaria Woll -sn: Woll -description: This is Annamaria Woll's description -facsimileTelephoneNumber: +1 415 868-9682 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 808-3348 -title: Chief Administrative Warrior -userPassword: Password1 -uid: WollA -givenName: Annamaria -mail: WollA@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com -carLicense: SN6W0T -departmentNumber: 9990 -employeeType: Employee -homePhone: +1 415 836-6779 -initials: A. W. -mobile: +1 415 781-8961 -pager: +1 415 334-2238 -roomNumber: 8965 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Merdia Baer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merdia Baer -sn: Baer -description: This is Merdia Baer's description -facsimileTelephoneNumber: +1 213 303-3395 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 601-5650 -title: Supreme Human Resources Evangelist -userPassword: Password1 -uid: BaerM -givenName: Merdia -mail: BaerM@5a18e19bdaa8418c835d1d34e33216b7.bitwarden.com -carLicense: 1L7HCI -departmentNumber: 9300 -employeeType: Employee -homePhone: +1 213 360-1717 -initials: M. B. -mobile: +1 213 372-1105 -pager: +1 213 663-3483 -roomNumber: 9236 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Henrietta Horwood,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henrietta Horwood -sn: Horwood -description: This is Henrietta Horwood's description -facsimileTelephoneNumber: +1 510 194-3407 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 422-8332 -title: Chief Peons Punk -userPassword: Password1 -uid: HorwoodH -givenName: Henrietta -mail: HorwoodH@25d7b9cccaa243aa9f0b4f4799edda0c.bitwarden.com -carLicense: Y8XI5H -departmentNumber: 1223 -employeeType: Contract -homePhone: +1 510 358-7792 -initials: H. H. -mobile: +1 510 387-3836 -pager: +1 510 114-1669 -roomNumber: 8216 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherryl Alsaleh -sn: Alsaleh -description: This is Sherryl Alsaleh's description -facsimileTelephoneNumber: +1 206 131-2003 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 159-1053 -title: Supreme Peons Writer -userPassword: Password1 -uid: AlsalehS -givenName: Sherryl -mail: AlsalehS@48d89f6366ec4bc9a3dc2bca58802c17.bitwarden.com -carLicense: DOSBXN -departmentNumber: 5810 -employeeType: Contract -homePhone: +1 206 550-3693 -initials: S. A. -mobile: +1 206 134-4696 -pager: +1 206 875-8080 -roomNumber: 9325 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hannis Sooley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hannis Sooley -sn: Sooley -description: This is Hannis Sooley's description -facsimileTelephoneNumber: +1 213 789-9043 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 213 634-3973 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: SooleyH -givenName: Hannis -mail: SooleyH@e65b170ac1bc46edb99b4efe67ea9912.bitwarden.com -carLicense: Q42U33 -departmentNumber: 8796 -employeeType: Normal -homePhone: +1 213 651-2246 -initials: H. S. -mobile: +1 213 246-3669 -pager: +1 213 106-7919 -roomNumber: 9379 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Teruko Zork,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teruko Zork -sn: Zork -description: This is Teruko Zork's description -facsimileTelephoneNumber: +1 213 396-3631 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 497-9980 -title: Junior Payroll Janitor -userPassword: Password1 -uid: ZorkT -givenName: Teruko -mail: ZorkT@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com -carLicense: PU0LL7 -departmentNumber: 2045 -employeeType: Contract -homePhone: +1 213 161-6524 -initials: T. Z. -mobile: +1 213 398-2980 -pager: +1 213 193-8061 -roomNumber: 8813 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gerrit Erwin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerrit Erwin -sn: Erwin -description: This is Gerrit Erwin's description -facsimileTelephoneNumber: +1 510 165-9724 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 665-3548 -title: Supreme Payroll Architect -userPassword: Password1 -uid: ErwinG -givenName: Gerrit -mail: ErwinG@7a9c912852004a79888207561bb1435a.bitwarden.com -carLicense: BY66Q3 -departmentNumber: 1148 -employeeType: Contract -homePhone: +1 510 186-3033 -initials: G. E. -mobile: +1 510 831-7609 -pager: +1 510 726-4566 -roomNumber: 9297 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kylila Valliani,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kylila Valliani -sn: Valliani -description: This is Kylila Valliani's description -facsimileTelephoneNumber: +1 206 289-2636 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 989-1751 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: VallianK -givenName: Kylila -mail: VallianK@fd1544a938044a8db9c9f3fe2943b130.bitwarden.com -carLicense: R7RI6G -departmentNumber: 8079 -employeeType: Employee -homePhone: +1 206 726-5699 -initials: K. V. -mobile: +1 206 892-6646 -pager: +1 206 978-7816 -roomNumber: 9198 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Courtenay Meres,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Courtenay Meres -sn: Meres -description: This is Courtenay Meres's description -facsimileTelephoneNumber: +1 804 854-1741 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 618-1885 -title: Master Product Development Fellow -userPassword: Password1 -uid: MeresC -givenName: Courtenay -mail: MeresC@77aa906181cb42438460f5dd055a37d3.bitwarden.com -carLicense: 7SC5CD -departmentNumber: 6939 -employeeType: Contract -homePhone: +1 804 885-7675 -initials: C. M. -mobile: +1 804 622-7550 -pager: +1 804 588-5757 -roomNumber: 8179 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Theodora Henshaw,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theodora Henshaw -sn: Henshaw -description: This is Theodora Henshaw's description -facsimileTelephoneNumber: +1 510 827-4198 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 723-7042 -title: Chief Peons Dictator -userPassword: Password1 -uid: HenshawT -givenName: Theodora -mail: HenshawT@13acf9d4e3a0437699a9a1215c20b7b8.bitwarden.com -carLicense: SE8YW7 -departmentNumber: 2236 -employeeType: Employee -homePhone: +1 510 201-2625 -initials: T. H. -mobile: +1 510 391-2413 -pager: +1 510 488-1538 -roomNumber: 9635 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Feodora Chohan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Feodora Chohan -sn: Chohan -description: This is Feodora Chohan's description -facsimileTelephoneNumber: +1 206 332-3030 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 764-7359 -title: Supreme Payroll Janitor -userPassword: Password1 -uid: ChohanF -givenName: Feodora -mail: ChohanF@3d4675220c3446eb8911d147fd0b6a3d.bitwarden.com -carLicense: YO4HNC -departmentNumber: 5232 -employeeType: Contract -homePhone: +1 206 109-5819 -initials: F. C. -mobile: +1 206 703-8516 -pager: +1 206 402-9400 -roomNumber: 9870 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Corri Gower,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corri Gower -sn: Gower -description: This is Corri Gower's description -facsimileTelephoneNumber: +1 818 849-2371 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 267-5889 -title: Supreme Payroll President -userPassword: Password1 -uid: GowerC -givenName: Corri -mail: GowerC@7bf1692be49847d0882b5c9df56a1692.bitwarden.com -carLicense: TA5SR0 -departmentNumber: 4824 -employeeType: Normal -homePhone: +1 818 264-8515 -initials: C. G. -mobile: +1 818 965-2169 -pager: +1 818 208-8976 -roomNumber: 9165 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anthiathia Asselin -sn: Asselin -description: This is Anthiathia Asselin's description -facsimileTelephoneNumber: +1 804 825-8164 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 112-2080 -title: Master Janitorial Engineer -userPassword: Password1 -uid: AsselinA -givenName: Anthiathia -mail: AsselinA@68e7ebe37536433083e87ad5627627be.bitwarden.com -carLicense: DVB828 -departmentNumber: 1986 -employeeType: Normal -homePhone: +1 804 236-2110 -initials: A. A. -mobile: +1 804 174-7157 -pager: +1 804 911-3782 -roomNumber: 9359 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Starsdps Friedrich -sn: Friedrich -description: This is Starsdps Friedrich's description -facsimileTelephoneNumber: +1 206 724-4990 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 377-2797 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: FriedriS -givenName: Starsdps -mail: FriedriS@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com -carLicense: BVF36G -departmentNumber: 7289 -employeeType: Employee -homePhone: +1 206 962-1938 -initials: S. F. -mobile: +1 206 447-6171 -pager: +1 206 666-7392 -roomNumber: 9208 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mimi Malisic,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mimi Malisic -sn: Malisic -description: This is Mimi Malisic's description -facsimileTelephoneNumber: +1 818 350-8437 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 185-7109 -title: Supreme Payroll Artist -userPassword: Password1 -uid: MalisicM -givenName: Mimi -mail: MalisicM@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com -carLicense: 7APJON -departmentNumber: 3789 -employeeType: Normal -homePhone: +1 818 780-9411 -initials: M. M. -mobile: +1 818 213-9007 -pager: +1 818 253-1603 -roomNumber: 8911 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Farra Threader,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farra Threader -sn: Threader -description: This is Farra Threader's description -facsimileTelephoneNumber: +1 804 906-2165 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 804 516-1073 -title: Supreme Payroll Figurehead -userPassword: Password1 -uid: ThreadeF -givenName: Farra -mail: ThreadeF@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com -carLicense: F161LH -departmentNumber: 5983 -employeeType: Contract -homePhone: +1 804 668-5826 -initials: F. T. -mobile: +1 804 648-6040 -pager: +1 804 860-4435 -roomNumber: 8637 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Myrna Felske,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrna Felske -sn: Felske -description: This is Myrna Felske's description -facsimileTelephoneNumber: +1 408 678-5266 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 358-6946 -title: Junior Payroll Stooge -userPassword: Password1 -uid: FelskeM -givenName: Myrna -mail: FelskeM@71d0bccd79604a9eac86805946a4350a.bitwarden.com -carLicense: KPMGIW -departmentNumber: 1706 -employeeType: Employee -homePhone: +1 408 955-8438 -initials: M. F. -mobile: +1 408 178-2664 -pager: +1 408 618-5270 -roomNumber: 9558 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adiana Claveau,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adiana Claveau -sn: Claveau -description: This is Adiana Claveau's description -facsimileTelephoneNumber: +1 408 535-7347 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 408 196-8523 -title: Junior Human Resources Mascot -userPassword: Password1 -uid: ClaveauA -givenName: Adiana -mail: ClaveauA@396383f50c134f9f99ae930271bd4239.bitwarden.com -carLicense: FOT0CL -departmentNumber: 3606 -employeeType: Contract -homePhone: +1 408 146-8568 -initials: A. C. -mobile: +1 408 500-4131 -pager: +1 408 483-4224 -roomNumber: 9095 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ciriaco Benchimol -sn: Benchimol -description: This is Ciriaco Benchimol's description -facsimileTelephoneNumber: +1 818 982-4993 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 184-4819 -title: Master Product Testing Mascot -userPassword: Password1 -uid: BenchimC -givenName: Ciriaco -mail: BenchimC@aa28558339af40ffa3a5f1495db43172.bitwarden.com -carLicense: KJ2BKI -departmentNumber: 1578 -employeeType: Employee -homePhone: +1 818 631-1057 -initials: C. B. -mobile: +1 818 665-4587 -pager: +1 818 894-9151 -roomNumber: 8928 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brigitte Tiseo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigitte Tiseo -sn: Tiseo -description: This is Brigitte Tiseo's description -facsimileTelephoneNumber: +1 804 800-5268 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 205-9253 -title: Master Peons Vice President -userPassword: Password1 -uid: TiseoB -givenName: Brigitte -mail: TiseoB@35cbe55d624d41aaa7e77e5513292711.bitwarden.com -carLicense: G56CQQ -departmentNumber: 2273 -employeeType: Normal -homePhone: +1 804 635-4140 -initials: B. T. -mobile: +1 804 368-6988 -pager: +1 804 855-9309 -roomNumber: 8475 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Keith Jahromi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keith Jahromi -sn: Jahromi -description: This is Keith Jahromi's description -facsimileTelephoneNumber: +1 818 744-2597 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 818 687-9194 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: JahromiK -givenName: Keith -mail: JahromiK@d22efb4b0b454465bf3c4729bd0e73ad.bitwarden.com -carLicense: JSD8OM -departmentNumber: 9714 -employeeType: Contract -homePhone: +1 818 815-2829 -initials: K. J. -mobile: +1 818 344-5164 -pager: +1 818 202-8225 -roomNumber: 9364 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elfreda Erkel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elfreda Erkel -sn: Erkel -description: This is Elfreda Erkel's description -facsimileTelephoneNumber: +1 510 867-9324 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 211-7894 -title: Junior Payroll Janitor -userPassword: Password1 -uid: ErkelE -givenName: Elfreda -mail: ErkelE@8b9f4bbc7081476287d00344dce43370.bitwarden.com -carLicense: TOXYPP -departmentNumber: 7785 -employeeType: Normal -homePhone: +1 510 572-6679 -initials: E. E. -mobile: +1 510 915-9045 -pager: +1 510 367-9992 -roomNumber: 9199 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacinta Boult,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacinta Boult -sn: Boult -description: This is Jacinta Boult's description -facsimileTelephoneNumber: +1 213 135-3281 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 857-4949 -title: Chief Administrative Madonna -userPassword: Password1 -uid: BoultJ -givenName: Jacinta -mail: BoultJ@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com -carLicense: 54J1BQ -departmentNumber: 3137 -employeeType: Normal -homePhone: +1 213 610-5493 -initials: J. B. -mobile: +1 213 341-3628 -pager: +1 213 816-9569 -roomNumber: 9100 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mab Sizto,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mab Sizto -sn: Sizto -description: This is Mab Sizto's description -facsimileTelephoneNumber: +1 213 153-4782 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 375-7749 -title: Master Payroll Punk -userPassword: Password1 -uid: SiztoM -givenName: Mab -mail: SiztoM@dcb09de8e7a54dbfbb3606c66044aa08.bitwarden.com -carLicense: 8MDP5V -departmentNumber: 4594 -employeeType: Normal -homePhone: +1 213 465-4122 -initials: M. S. -mobile: +1 213 178-9713 -pager: +1 213 872-6755 -roomNumber: 9877 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ralina Moshinsky -sn: Moshinsky -description: This is Ralina Moshinsky's description -facsimileTelephoneNumber: +1 510 756-3973 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 780-3272 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: MoshinsR -givenName: Ralina -mail: MoshinsR@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com -carLicense: 8DRSRM -departmentNumber: 1824 -employeeType: Employee -homePhone: +1 510 693-5888 -initials: R. M. -mobile: +1 510 242-2170 -pager: +1 510 606-4722 -roomNumber: 8661 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haleigh Tarlamis -sn: Tarlamis -description: This is Haleigh Tarlamis's description -facsimileTelephoneNumber: +1 213 548-3099 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 958-4464 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: TarlamiH -givenName: Haleigh -mail: TarlamiH@aed7b3397fd44fc8824d75ec5a571273.bitwarden.com -carLicense: 3687JL -departmentNumber: 1226 -employeeType: Employee -homePhone: +1 213 467-9760 -initials: H. T. -mobile: +1 213 838-4245 -pager: +1 213 930-5378 -roomNumber: 8798 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Howard Scarlett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Howard Scarlett -sn: Scarlett -description: This is Howard Scarlett's description -facsimileTelephoneNumber: +1 408 173-1422 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 408 187-1153 -title: Master Peons Developer -userPassword: Password1 -uid: ScarletH -givenName: Howard -mail: ScarletH@1a20ad7a171d4781bdcb10c53186c8d9.bitwarden.com -carLicense: 0C855P -departmentNumber: 9821 -employeeType: Normal -homePhone: +1 408 795-7503 -initials: H. S. -mobile: +1 408 941-9244 -pager: +1 408 247-7243 -roomNumber: 8028 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=CoOp Grondin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: CoOp Grondin -sn: Grondin -description: This is CoOp Grondin's description -facsimileTelephoneNumber: +1 213 575-7651 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 221-5326 -title: Junior Administrative Writer -userPassword: Password1 -uid: GrondinC -givenName: CoOp -mail: GrondinC@d52f84a4faf148e392088a55b1d91d85.bitwarden.com -carLicense: RS7C3N -departmentNumber: 4878 -employeeType: Employee -homePhone: +1 213 526-6158 -initials: C. G. -mobile: +1 213 998-8396 -pager: +1 213 356-2456 -roomNumber: 9868 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Felton Bartz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felton Bartz -sn: Bartz -description: This is Felton Bartz's description -facsimileTelephoneNumber: +1 213 109-7775 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 571-3128 -title: Chief Peons Grunt -userPassword: Password1 -uid: BartzF -givenName: Felton -mail: BartzF@6535949de3ea47249141a9acfc0e7a20.bitwarden.com -carLicense: DPIF5F -departmentNumber: 8993 -employeeType: Employee -homePhone: +1 213 187-5645 -initials: F. B. -mobile: +1 213 207-9725 -pager: +1 213 958-3705 -roomNumber: 8740 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Norene Molnar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norene Molnar -sn: Molnar -description: This is Norene Molnar's description -facsimileTelephoneNumber: +1 206 185-5348 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 206 938-6305 -title: Chief Management Stooge -userPassword: Password1 -uid: MolnarN -givenName: Norene -mail: MolnarN@303ac29ae28a4feca207111066bb217f.bitwarden.com -carLicense: PIQ8JF -departmentNumber: 8854 -employeeType: Normal -homePhone: +1 206 411-5867 -initials: N. M. -mobile: +1 206 975-9000 -pager: +1 206 857-9402 -roomNumber: 9888 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gabey Solomon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabey Solomon -sn: Solomon -description: This is Gabey Solomon's description -facsimileTelephoneNumber: +1 213 438-6930 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 213 162-7733 -title: Supreme Product Development Consultant -userPassword: Password1 -uid: SolomonG -givenName: Gabey -mail: SolomonG@6a57f27be787416186e20874ca3a3f16.bitwarden.com -carLicense: UUFJWJ -departmentNumber: 5029 -employeeType: Normal -homePhone: +1 213 655-9527 -initials: G. S. -mobile: +1 213 147-2210 -pager: +1 213 865-5674 -roomNumber: 9570 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Joanne Trefry,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joanne Trefry -sn: Trefry -description: This is Joanne Trefry's description -facsimileTelephoneNumber: +1 818 247-5305 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 816-7209 -title: Master Peons Technician -userPassword: Password1 -uid: TrefryJ -givenName: Joanne -mail: TrefryJ@2379df05bd9f48589e7c5672593d18d7.bitwarden.com -carLicense: LQ9FYF -departmentNumber: 5429 -employeeType: Employee -homePhone: +1 818 417-4873 -initials: J. T. -mobile: +1 818 936-2664 -pager: +1 818 374-6511 -roomNumber: 8254 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sukey Grimm,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sukey Grimm -sn: Grimm -description: This is Sukey Grimm's description -facsimileTelephoneNumber: +1 415 748-4124 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 426-9990 -title: Chief Payroll Punk -userPassword: Password1 -uid: GrimmS -givenName: Sukey -mail: GrimmS@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com -carLicense: MAN81D -departmentNumber: 2502 -employeeType: Contract -homePhone: +1 415 382-5492 -initials: S. G. -mobile: +1 415 329-1635 -pager: +1 415 307-7432 -roomNumber: 9985 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sari Realtime,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sari Realtime -sn: Realtime -description: This is Sari Realtime's description -facsimileTelephoneNumber: +1 510 616-6531 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 135-2351 -title: Chief Management Stooge -userPassword: Password1 -uid: RealtimS -givenName: Sari -mail: RealtimS@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com -carLicense: 3VCSFX -departmentNumber: 9503 -employeeType: Contract -homePhone: +1 510 323-1804 -initials: S. R. -mobile: +1 510 141-7162 -pager: +1 510 928-3678 -roomNumber: 9912 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YikHon DiFalco -sn: DiFalco -description: This is YikHon DiFalco's description -facsimileTelephoneNumber: +1 213 556-8947 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 884-5115 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: DiFalcoY -givenName: YikHon -mail: DiFalcoY@4f4529779c39486286005f0294a1558e.bitwarden.com -carLicense: 7V2FR9 -departmentNumber: 6602 -employeeType: Employee -homePhone: +1 213 951-8464 -initials: Y. D. -mobile: +1 213 441-3449 -pager: +1 213 241-8594 -roomNumber: 8630 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fanni Hite,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fanni Hite -sn: Hite -description: This is Fanni Hite's description -facsimileTelephoneNumber: +1 408 359-2102 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 177-2310 -title: Junior Human Resources Admin -userPassword: Password1 -uid: HiteF -givenName: Fanni -mail: HiteF@2c4021d313d14b3da0ff25c9be8215f4.bitwarden.com -carLicense: MIG9BK -departmentNumber: 3311 -employeeType: Contract -homePhone: +1 408 417-7737 -initials: F. H. -mobile: +1 408 262-4178 -pager: +1 408 633-4315 -roomNumber: 8196 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Faiz Brodersen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faiz Brodersen -sn: Brodersen -description: This is Faiz Brodersen's description -facsimileTelephoneNumber: +1 510 567-2061 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 164-9041 -title: Associate Product Development Sales Rep -userPassword: Password1 -uid: BrodersF -givenName: Faiz -mail: BrodersF@3313782fad5f448f843eeeeabc4b6528.bitwarden.com -carLicense: Q6D3R3 -departmentNumber: 9038 -employeeType: Employee -homePhone: +1 510 959-8111 -initials: F. B. -mobile: +1 510 418-2858 -pager: +1 510 243-5316 -roomNumber: 8310 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denyse Goricanec -sn: Goricanec -description: This is Denyse Goricanec's description -facsimileTelephoneNumber: +1 510 801-8476 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 433-4097 -title: Master Product Testing Artist -userPassword: Password1 -uid: GoricanD -givenName: Denyse -mail: GoricanD@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com -carLicense: HX9JQI -departmentNumber: 9278 -employeeType: Normal -homePhone: +1 510 704-4360 -initials: D. G. -mobile: +1 510 525-3736 -pager: +1 510 860-7394 -roomNumber: 9492 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kazem Snead,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazem Snead -sn: Snead -description: This is Kazem Snead's description -facsimileTelephoneNumber: +1 510 113-6305 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 279-2723 -title: Master Payroll President -userPassword: Password1 -uid: SneadK -givenName: Kazem -mail: SneadK@0a1433e150374c7dabedf34e4d8de46b.bitwarden.com -carLicense: 5CCRHW -departmentNumber: 5132 -employeeType: Contract -homePhone: +1 510 409-8694 -initials: K. S. -mobile: +1 510 197-4861 -pager: +1 510 446-8201 -roomNumber: 8038 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Birgitta Ritter -sn: Ritter -description: This is Birgitta Ritter's description -facsimileTelephoneNumber: +1 510 964-3594 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 312-2276 -title: Master Human Resources Technician -userPassword: Password1 -uid: RitterB -givenName: Birgitta -mail: RitterB@960b796114d841ca97e435a64e92baa2.bitwarden.com -carLicense: UDB7W2 -departmentNumber: 8156 -employeeType: Normal -homePhone: +1 510 995-7062 -initials: B. R. -mobile: +1 510 754-5967 -pager: +1 510 330-2636 -roomNumber: 9245 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Donia McCormick,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donia McCormick -sn: McCormick -description: This is Donia McCormick's description -facsimileTelephoneNumber: +1 408 147-6752 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 949-5216 -title: Chief Product Development Madonna -userPassword: Password1 -uid: McCormiD -givenName: Donia -mail: McCormiD@2377c0b716574201b1f20f0a302f3543.bitwarden.com -carLicense: CTH6X3 -departmentNumber: 9042 -employeeType: Normal -homePhone: +1 408 974-5301 -initials: D. M. -mobile: +1 408 347-6562 -pager: +1 408 150-1474 -roomNumber: 8079 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Akin Gillies,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akin Gillies -sn: Gillies -description: This is Akin Gillies's description -facsimileTelephoneNumber: +1 213 376-2923 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 621-7864 -title: Associate Peons Technician -userPassword: Password1 -uid: GilliesA -givenName: Akin -mail: GilliesA@755e2f2f01064fb58f5836b47a9f6953.bitwarden.com -carLicense: JHSUQK -departmentNumber: 5073 -employeeType: Employee -homePhone: +1 213 881-4068 -initials: A. G. -mobile: +1 213 747-4036 -pager: +1 213 813-9473 -roomNumber: 8190 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Baldev Chugha,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baldev Chugha -sn: Chugha -description: This is Baldev Chugha's description -facsimileTelephoneNumber: +1 408 927-4393 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 373-1916 -title: Associate Administrative Figurehead -userPassword: Password1 -uid: ChughaB -givenName: Baldev -mail: ChughaB@8bca585b47ed462fb7229680f3ab2eb8.bitwarden.com -carLicense: PVFQFF -departmentNumber: 9339 -employeeType: Contract -homePhone: +1 408 326-3026 -initials: B. C. -mobile: +1 408 799-9322 -pager: +1 408 883-2308 -roomNumber: 9433 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carla Wichman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carla Wichman -sn: Wichman -description: This is Carla Wichman's description -facsimileTelephoneNumber: +1 408 276-2611 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 138-6537 -title: Supreme Administrative Manager -userPassword: Password1 -uid: WichmanC -givenName: Carla -mail: WichmanC@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com -carLicense: PGEYYF -departmentNumber: 6945 -employeeType: Normal -homePhone: +1 408 460-2301 -initials: C. W. -mobile: +1 408 712-1321 -pager: +1 408 262-1890 -roomNumber: 9170 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sarine Croxford,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarine Croxford -sn: Croxford -description: This is Sarine Croxford's description -facsimileTelephoneNumber: +1 804 188-4578 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 861-8066 -title: Associate Payroll Writer -userPassword: Password1 -uid: CroxforS -givenName: Sarine -mail: CroxforS@57edeceb332942988b2e62feed2c524a.bitwarden.com -carLicense: HU4N11 -departmentNumber: 4995 -employeeType: Contract -homePhone: +1 804 349-8364 -initials: S. C. -mobile: +1 804 665-9360 -pager: +1 804 768-6385 -roomNumber: 8888 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Truda LaFargue,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Truda LaFargue -sn: LaFargue -description: This is Truda LaFargue's description -facsimileTelephoneNumber: +1 213 928-1475 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 213 765-9824 -title: Junior Human Resources President -userPassword: Password1 -uid: LaFarguT -givenName: Truda -mail: LaFarguT@da55d35b2fa24638b2a13fe298cfe306.bitwarden.com -carLicense: XCN90G -departmentNumber: 7311 -employeeType: Normal -homePhone: +1 213 968-5381 -initials: T. L. -mobile: +1 213 859-9914 -pager: +1 213 782-5820 -roomNumber: 8044 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veronica Medefesser -sn: Medefesser -description: This is Veronica Medefesser's description -facsimileTelephoneNumber: +1 510 451-2640 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 508-6034 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: MedefesV -givenName: Veronica -mail: MedefesV@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com -carLicense: UABU53 -departmentNumber: 6835 -employeeType: Contract -homePhone: +1 510 368-7781 -initials: V. M. -mobile: +1 510 579-2941 -pager: +1 510 141-4010 -roomNumber: 8874 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marco Secrest,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marco Secrest -sn: Secrest -description: This is Marco Secrest's description -facsimileTelephoneNumber: +1 818 690-8189 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 886-8179 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: SecrestM -givenName: Marco -mail: SecrestM@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com -carLicense: 0UNFRQ -departmentNumber: 8870 -employeeType: Contract -homePhone: +1 818 911-5632 -initials: M. S. -mobile: +1 818 752-4445 -pager: +1 818 295-7996 -roomNumber: 9164 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bellina Onder,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bellina Onder -sn: Onder -description: This is Bellina Onder's description -facsimileTelephoneNumber: +1 510 886-7015 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 468-2703 -title: Junior Janitorial Stooge -userPassword: Password1 -uid: OnderB -givenName: Bellina -mail: OnderB@c70533cbf13f4eda83e80aa7a3960847.bitwarden.com -carLicense: E7LIQT -departmentNumber: 7425 -employeeType: Normal -homePhone: +1 510 789-8818 -initials: B. O. -mobile: +1 510 806-9404 -pager: +1 510 766-8524 -roomNumber: 8138 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MarieAndree Thoms -sn: Thoms -description: This is MarieAndree Thoms's description -facsimileTelephoneNumber: +1 408 913-4140 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 849-8163 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: ThomsM -givenName: MarieAndree -mail: ThomsM@9144995fa4c649da9d774d2a93d230da.bitwarden.com -carLicense: D1EIO2 -departmentNumber: 2700 -employeeType: Contract -homePhone: +1 408 378-5737 -initials: M. T. -mobile: +1 408 931-8744 -pager: +1 408 418-7738 -roomNumber: 9210 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiem Zaharychuk -sn: Zaharychuk -description: This is Kiem Zaharychuk's description -facsimileTelephoneNumber: +1 206 115-9153 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 871-7676 -title: Associate Peons Visionary -userPassword: Password1 -uid: ZaharycK -givenName: Kiem -mail: ZaharycK@2ccc6f9a9fb7406dac8df77daed9aa92.bitwarden.com -carLicense: AHHDTA -departmentNumber: 5022 -employeeType: Contract -homePhone: +1 206 794-1561 -initials: K. Z. -mobile: +1 206 254-1171 -pager: +1 206 245-1283 -roomNumber: 9988 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MichaelMorgan Zingale -sn: Zingale -description: This is MichaelMorgan Zingale's description -facsimileTelephoneNumber: +1 206 832-2059 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 494-9480 -title: Chief Product Development President -userPassword: Password1 -uid: ZingaleM -givenName: MichaelMorgan -mail: ZingaleM@4d021ab5235d4c7a8bf5c3ef91818e2f.bitwarden.com -carLicense: QDNJ2F -departmentNumber: 4078 -employeeType: Contract -homePhone: +1 206 873-3236 -initials: M. Z. -mobile: +1 206 390-5052 -pager: +1 206 641-4056 -roomNumber: 8801 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yumi Britton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yumi Britton -sn: Britton -description: This is Yumi Britton's description -facsimileTelephoneNumber: +1 818 742-5063 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 219-8123 -title: Supreme Administrative Architect -userPassword: Password1 -uid: BrittonY -givenName: Yumi -mail: BrittonY@a882281c1b844c5997ce4401b36f83a4.bitwarden.com -carLicense: OTE6B9 -departmentNumber: 4733 -employeeType: Contract -homePhone: +1 818 172-9564 -initials: Y. B. -mobile: +1 818 656-2048 -pager: +1 818 541-1947 -roomNumber: 8605 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Subhashini Tadge,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subhashini Tadge -sn: Tadge -description: This is Subhashini Tadge's description -facsimileTelephoneNumber: +1 415 263-4404 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 802-8835 -title: Junior Product Development Punk -userPassword: Password1 -uid: TadgeS -givenName: Subhashini -mail: TadgeS@ff53b48d0a6a4f5b801944bd329c88a5.bitwarden.com -carLicense: 3D7UDE -departmentNumber: 6511 -employeeType: Employee -homePhone: +1 415 869-4287 -initials: S. T. -mobile: +1 415 658-7874 -pager: +1 415 927-9216 -roomNumber: 9368 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanneke McNerney -sn: McNerney -description: This is Hanneke McNerney's description -facsimileTelephoneNumber: +1 206 458-7097 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 396-6338 -title: Chief Product Testing Developer -userPassword: Password1 -uid: McNerneH -givenName: Hanneke -mail: McNerneH@5fae264559df41c5819756869bf97f69.bitwarden.com -carLicense: IMT9FI -departmentNumber: 7767 -employeeType: Contract -homePhone: +1 206 100-5485 -initials: H. M. -mobile: +1 206 105-8288 -pager: +1 206 902-1258 -roomNumber: 8455 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacky Cavasin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacky Cavasin -sn: Cavasin -description: This is Jacky Cavasin's description -facsimileTelephoneNumber: +1 213 925-4238 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 745-5827 -title: Junior Management Vice President -userPassword: Password1 -uid: CavasinJ -givenName: Jacky -mail: CavasinJ@57dc19fb72ed48a88f045569d12c771f.bitwarden.com -carLicense: ULTDCD -departmentNumber: 2464 -employeeType: Normal -homePhone: +1 213 769-2090 -initials: J. C. -mobile: +1 213 348-8322 -pager: +1 213 372-3022 -roomNumber: 9869 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Katalin Qadri,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katalin Qadri -sn: Qadri -description: This is Katalin Qadri's description -facsimileTelephoneNumber: +1 213 768-5269 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 213 444-6727 -title: Supreme Payroll Manager -userPassword: Password1 -uid: QadriK -givenName: Katalin -mail: QadriK@425e3df8b9654b8fb5fafe68899d23b1.bitwarden.com -carLicense: E9TSOJ -departmentNumber: 4490 -employeeType: Normal -homePhone: +1 213 160-6982 -initials: K. Q. -mobile: +1 213 547-5829 -pager: +1 213 387-2991 -roomNumber: 9451 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabriellia Norby -sn: Norby -description: This is Gabriellia Norby's description -facsimileTelephoneNumber: +1 510 864-7654 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 511-8417 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: NorbyG -givenName: Gabriellia -mail: NorbyG@96b954821ec4456a90674f1af5f31f23.bitwarden.com -carLicense: 3K634D -departmentNumber: 4342 -employeeType: Employee -homePhone: +1 510 654-6367 -initials: G. N. -mobile: +1 510 527-1717 -pager: +1 510 359-8178 -roomNumber: 9497 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Evanne Holesinger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evanne Holesinger -sn: Holesinger -description: This is Evanne Holesinger's description -facsimileTelephoneNumber: +1 818 823-9347 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 511-6256 -title: Master Payroll Mascot -userPassword: Password1 -uid: HolesinE -givenName: Evanne -mail: HolesinE@1060465da9c64631a2455d428f565a2e.bitwarden.com -carLicense: J8QPGV -departmentNumber: 7461 -employeeType: Normal -homePhone: +1 818 923-2840 -initials: E. H. -mobile: +1 818 185-7044 -pager: +1 818 145-7842 -roomNumber: 8313 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Malethia Elliot,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malethia Elliot -sn: Elliot -description: This is Malethia Elliot's description -facsimileTelephoneNumber: +1 510 267-5424 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 376-7486 -title: Chief Payroll Assistant -userPassword: Password1 -uid: ElliotM -givenName: Malethia -mail: ElliotM@ad4b259f1800408a898dff512e0a094e.bitwarden.com -carLicense: N54HWR -departmentNumber: 8501 -employeeType: Contract -homePhone: +1 510 452-5307 -initials: M. E. -mobile: +1 510 530-9766 -pager: +1 510 718-7056 -roomNumber: 8000 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dhawal Howard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhawal Howard -sn: Howard -description: This is Dhawal Howard's description -facsimileTelephoneNumber: +1 804 335-1671 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 947-2562 -title: Chief Management Engineer -userPassword: Password1 -uid: HowardD -givenName: Dhawal -mail: HowardD@1cf4ed44c9f34d57aaaa8e332c0af04a.bitwarden.com -carLicense: 3BQOQV -departmentNumber: 8700 -employeeType: Employee -homePhone: +1 804 815-2467 -initials: D. H. -mobile: +1 804 478-6216 -pager: +1 804 254-5580 -roomNumber: 8123 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Stacee Syed,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacee Syed -sn: Syed -description: This is Stacee Syed's description -facsimileTelephoneNumber: +1 408 514-2599 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 696-2977 -title: Master Administrative Admin -userPassword: Password1 -uid: SyedS -givenName: Stacee -mail: SyedS@7dd6cc5778d64f7ea47fc9b85bb01ae7.bitwarden.com -carLicense: S7V2QU -departmentNumber: 4586 -employeeType: Employee -homePhone: +1 408 101-9393 -initials: S. S. -mobile: +1 408 160-1619 -pager: +1 408 133-3598 -roomNumber: 9860 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mamie Warrellow -sn: Warrellow -description: This is Mamie Warrellow's description -facsimileTelephoneNumber: +1 408 151-7836 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 260-4735 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: WarrellM -givenName: Mamie -mail: WarrellM@316f28dee96a4927ae60609771465dfa.bitwarden.com -carLicense: XR4QO7 -departmentNumber: 2443 -employeeType: Contract -homePhone: +1 408 328-8466 -initials: M. W. -mobile: +1 408 806-2437 -pager: +1 408 820-5234 -roomNumber: 8961 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kem Birkwood,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kem Birkwood -sn: Birkwood -description: This is Kem Birkwood's description -facsimileTelephoneNumber: +1 408 958-6506 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 330-8612 -title: Master Product Development Evangelist -userPassword: Password1 -uid: BirkwooK -givenName: Kem -mail: BirkwooK@bcbc05a61af34797a5c081f266c4277f.bitwarden.com -carLicense: E1W4QF -departmentNumber: 5378 -employeeType: Normal -homePhone: +1 408 859-2553 -initials: K. B. -mobile: +1 408 692-5822 -pager: +1 408 821-2650 -roomNumber: 8930 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Steffen Godo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steffen Godo -sn: Godo -description: This is Steffen Godo's description -facsimileTelephoneNumber: +1 510 653-9191 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 954-5594 -title: Master Human Resources Fellow -userPassword: Password1 -uid: GodoS -givenName: Steffen -mail: GodoS@dd6aa42254414b099b5f31cdae049e72.bitwarden.com -carLicense: EKVDX2 -departmentNumber: 3052 -employeeType: Normal -homePhone: +1 510 382-9120 -initials: S. G. -mobile: +1 510 136-6041 -pager: +1 510 398-9349 -roomNumber: 8684 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Merlin McCormack,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merlin McCormack -sn: McCormack -description: This is Merlin McCormack's description -facsimileTelephoneNumber: +1 804 516-6280 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 689-7190 -title: Master Administrative Vice President -userPassword: Password1 -uid: McCormaM -givenName: Merlin -mail: McCormaM@8f537ae4b6b344bbba62604a48f151f5.bitwarden.com -carLicense: EK4IKN -departmentNumber: 2375 -employeeType: Employee -homePhone: +1 804 130-1824 -initials: M. M. -mobile: +1 804 693-1544 -pager: +1 804 231-3744 -roomNumber: 9203 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Darell Sumi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darell Sumi -sn: Sumi -description: This is Darell Sumi's description -facsimileTelephoneNumber: +1 206 829-8682 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 535-4957 -title: Associate Product Development Grunt -userPassword: Password1 -uid: SumiD -givenName: Darell -mail: SumiD@797c12ee868e41e5be4bb46785d3d6aa.bitwarden.com -carLicense: 3TBIMR -departmentNumber: 6600 -employeeType: Contract -homePhone: +1 206 555-2110 -initials: D. S. -mobile: +1 206 912-2333 -pager: +1 206 375-1932 -roomNumber: 8491 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tybie Hulen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tybie Hulen -sn: Hulen -description: This is Tybie Hulen's description -facsimileTelephoneNumber: +1 213 984-7987 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 497-3182 -title: Supreme Administrative President -userPassword: Password1 -uid: HulenT -givenName: Tybie -mail: HulenT@67373a2d3605487eb6202dbbf71e2058.bitwarden.com -carLicense: K478QU -departmentNumber: 5070 -employeeType: Contract -homePhone: +1 213 773-4448 -initials: T. H. -mobile: +1 213 259-6405 -pager: +1 213 972-2342 -roomNumber: 9856 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fitzroy Nilson -sn: Nilson -description: This is Fitzroy Nilson's description -facsimileTelephoneNumber: +1 415 295-8691 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 769-7567 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: NilsonF -givenName: Fitzroy -mail: NilsonF@0be01d83222f46f7842093c364d584c6.bitwarden.com -carLicense: 2KEHEH -departmentNumber: 6057 -employeeType: Employee -homePhone: +1 415 106-3674 -initials: F. N. -mobile: +1 415 113-6365 -pager: +1 415 206-7060 -roomNumber: 8441 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Crysta Aderhold,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crysta Aderhold -sn: Aderhold -description: This is Crysta Aderhold's description -facsimileTelephoneNumber: +1 804 861-4519 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 251-9409 -title: Chief Management Sales Rep -userPassword: Password1 -uid: AderholC -givenName: Crysta -mail: AderholC@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com -carLicense: QQCCMI -departmentNumber: 4907 -employeeType: Employee -homePhone: +1 804 230-1786 -initials: C. A. -mobile: +1 804 695-9727 -pager: +1 804 817-3934 -roomNumber: 8740 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ranna Barriere,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranna Barriere -sn: Barriere -description: This is Ranna Barriere's description -facsimileTelephoneNumber: +1 818 389-2915 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 818 232-4201 -title: Associate Product Testing President -userPassword: Password1 -uid: BarrierR -givenName: Ranna -mail: BarrierR@1a851fc2814040d38d9f2abd59e828ec.bitwarden.com -carLicense: JDUP58 -departmentNumber: 9634 -employeeType: Contract -homePhone: +1 818 765-7755 -initials: R. B. -mobile: +1 818 945-5750 -pager: +1 818 702-3541 -roomNumber: 8063 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ignatius Bankhead,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ignatius Bankhead -sn: Bankhead -description: This is Ignatius Bankhead's description -facsimileTelephoneNumber: +1 206 333-7417 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 484-1919 -title: Junior Management Technician -userPassword: Password1 -uid: BankheaI -givenName: Ignatius -mail: BankheaI@fac57f1f10364a88aa5ab37aeecbc8a1.bitwarden.com -carLicense: OJA2ML -departmentNumber: 6389 -employeeType: Contract -homePhone: +1 206 834-5100 -initials: I. B. -mobile: +1 206 922-6340 -pager: +1 206 686-5249 -roomNumber: 8740 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carlis McCafferty,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlis McCafferty -sn: McCafferty -description: This is Carlis McCafferty's description -facsimileTelephoneNumber: +1 206 419-8338 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 383-8112 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: McCaffeC -givenName: Carlis -mail: McCaffeC@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com -carLicense: 71UUTB -departmentNumber: 2010 -employeeType: Contract -homePhone: +1 206 286-8386 -initials: C. M. -mobile: +1 206 215-7086 -pager: +1 206 301-8861 -roomNumber: 9362 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sashenka Inamullah -sn: Inamullah -description: This is Sashenka Inamullah's description -facsimileTelephoneNumber: +1 818 567-9116 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 257-2287 -title: Associate Payroll Architect -userPassword: Password1 -uid: InamullS -givenName: Sashenka -mail: InamullS@c3cd4c3c22f34a2dbd82ab9ceb4d6bba.bitwarden.com -carLicense: NLYTSN -departmentNumber: 2687 -employeeType: Contract -homePhone: +1 818 262-6991 -initials: S. I. -mobile: +1 818 794-2084 -pager: +1 818 561-5006 -roomNumber: 8620 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dewey Cozyn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dewey Cozyn -sn: Cozyn -description: This is Dewey Cozyn's description -facsimileTelephoneNumber: +1 818 742-5621 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 100-7723 -title: Chief Administrative Writer -userPassword: Password1 -uid: CozynD -givenName: Dewey -mail: CozynD@7d02421d78824b528c03a8f50fd2c791.bitwarden.com -carLicense: 44V1JE -departmentNumber: 1717 -employeeType: Employee -homePhone: +1 818 373-5943 -initials: D. C. -mobile: +1 818 967-4004 -pager: +1 818 201-6048 -roomNumber: 9342 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Raphaela Bainton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raphaela Bainton -sn: Bainton -description: This is Raphaela Bainton's description -facsimileTelephoneNumber: +1 415 974-1216 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 926-2199 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: BaintonR -givenName: Raphaela -mail: BaintonR@2ccc6f9a9fb7406dac8df77daed9aa92.bitwarden.com -carLicense: FD40O2 -departmentNumber: 9441 -employeeType: Contract -homePhone: +1 415 348-5655 -initials: R. B. -mobile: +1 415 486-5970 -pager: +1 415 146-6189 -roomNumber: 8757 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Paulette Gateau,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulette Gateau -sn: Gateau -description: This is Paulette Gateau's description -facsimileTelephoneNumber: +1 510 902-1181 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 851-9101 -title: Chief Human Resources Director -userPassword: Password1 -uid: GateauP -givenName: Paulette -mail: GateauP@2ea5cd05f7bb4e668e89ea0ce9ab618b.bitwarden.com -carLicense: 6D2K2C -departmentNumber: 6777 -employeeType: Employee -homePhone: +1 510 839-8329 -initials: P. G. -mobile: +1 510 403-5408 -pager: +1 510 720-9295 -roomNumber: 8604 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Molly IRCMTL,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Molly IRCMTL -sn: IRCMTL -description: This is Molly IRCMTL's description -facsimileTelephoneNumber: +1 804 888-3096 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 804 650-3546 -title: Master Peons Technician -userPassword: Password1 -uid: IRCMTLM -givenName: Molly -mail: IRCMTLM@5406f1a2a8b3462dade05957b7fb225f.bitwarden.com -carLicense: 49MMXX -departmentNumber: 2758 -employeeType: Normal -homePhone: +1 804 243-3346 -initials: M. I. -mobile: +1 804 751-4483 -pager: +1 804 656-4032 -roomNumber: 8030 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Danial Simhan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danial Simhan -sn: Simhan -description: This is Danial Simhan's description -facsimileTelephoneNumber: +1 818 681-7526 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 558-4126 -title: Master Janitorial Admin -userPassword: Password1 -uid: SimhanD -givenName: Danial -mail: SimhanD@576758681ec2477ebb412f65a7055774.bitwarden.com -carLicense: MT8R1C -departmentNumber: 1459 -employeeType: Contract -homePhone: +1 818 765-7475 -initials: D. S. -mobile: +1 818 301-6771 -pager: +1 818 770-6675 -roomNumber: 9898 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aditya Nordstrom,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aditya Nordstrom -sn: Nordstrom -description: This is Aditya Nordstrom's description -facsimileTelephoneNumber: +1 408 751-4645 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 589-5032 -title: Junior Management Architect -userPassword: Password1 -uid: NordstrA -givenName: Aditya -mail: NordstrA@439323a8d95149fea66efa1b90531fea.bitwarden.com -carLicense: T4E5BD -departmentNumber: 8812 -employeeType: Employee -homePhone: +1 408 476-3166 -initials: A. N. -mobile: +1 408 458-8478 -pager: +1 408 740-4687 -roomNumber: 9628 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jacquenetta Altherr,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquenetta Altherr -sn: Altherr -description: This is Jacquenetta Altherr's description -facsimileTelephoneNumber: +1 408 502-5279 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 466-2672 -title: Supreme Management Writer -userPassword: Password1 -uid: AltherrJ -givenName: Jacquenetta -mail: AltherrJ@185815afbde44b82a694cd5922f519f9.bitwarden.com -carLicense: M0SV2I -departmentNumber: 2605 -employeeType: Contract -homePhone: +1 408 762-3244 -initials: J. A. -mobile: +1 408 271-5940 -pager: +1 408 956-9369 -roomNumber: 8806 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Joeann DeAnda,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joeann DeAnda -sn: DeAnda -description: This is Joeann DeAnda's description -facsimileTelephoneNumber: +1 213 413-7326 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 458-7952 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: DeAndaJ -givenName: Joeann -mail: DeAndaJ@2adc28241a1f46749fea06db3960400f.bitwarden.com -carLicense: XBLIVO -departmentNumber: 2524 -employeeType: Employee -homePhone: +1 213 681-7785 -initials: J. D. -mobile: +1 213 760-1787 -pager: +1 213 715-4729 -roomNumber: 8653 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Valentina Andrew,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valentina Andrew -sn: Andrew -description: This is Valentina Andrew's description -facsimileTelephoneNumber: +1 510 535-9762 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 510 272-6389 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: AndrewV -givenName: Valentina -mail: AndrewV@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com -carLicense: 0LANSK -departmentNumber: 8901 -employeeType: Normal -homePhone: +1 510 879-7639 -initials: V. A. -mobile: +1 510 453-2244 -pager: +1 510 124-5091 -roomNumber: 8547 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kemal Kaoud,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kemal Kaoud -sn: Kaoud -description: This is Kemal Kaoud's description -facsimileTelephoneNumber: +1 415 765-3927 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 657-1738 -title: Chief Payroll Manager -userPassword: Password1 -uid: KaoudK -givenName: Kemal -mail: KaoudK@93e4f4c832eb40f5b256fbdf877ac624.bitwarden.com -carLicense: 7PAR8C -departmentNumber: 4446 -employeeType: Normal -homePhone: +1 415 938-2337 -initials: K. K. -mobile: +1 415 365-9073 -pager: +1 415 306-4753 -roomNumber: 9373 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roseanna Koiste,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roseanna Koiste -sn: Koiste -description: This is Roseanna Koiste's description -facsimileTelephoneNumber: +1 510 321-2487 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 510 269-5060 -title: Master Administrative Stooge -userPassword: Password1 -uid: KoisteR -givenName: Roseanna -mail: KoisteR@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com -carLicense: 33Q81Y -departmentNumber: 2720 -employeeType: Employee -homePhone: +1 510 796-2456 -initials: R. K. -mobile: +1 510 922-3498 -pager: +1 510 152-3925 -roomNumber: 8090 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Camino Medlin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camino Medlin -sn: Medlin -description: This is Camino Medlin's description -facsimileTelephoneNumber: +1 415 553-4370 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 943-9129 -title: Chief Management Pinhead -userPassword: Password1 -uid: MedlinC -givenName: Camino -mail: MedlinC@2aaa9be738c34b3b97229c09ad694399.bitwarden.com -carLicense: U1TW9V -departmentNumber: 2729 -employeeType: Normal -homePhone: +1 415 609-8166 -initials: C. M. -mobile: +1 415 706-5350 -pager: +1 415 671-4198 -roomNumber: 9161 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akio Gerlinsky -sn: Gerlinsky -description: This is Akio Gerlinsky's description -facsimileTelephoneNumber: +1 213 431-1132 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 423-1423 -title: Master Administrative Evangelist -userPassword: Password1 -uid: GerlinsA -givenName: Akio -mail: GerlinsA@950212f9d4c64a14966148f9248060e1.bitwarden.com -carLicense: BXSGIO -departmentNumber: 8086 -employeeType: Employee -homePhone: +1 213 557-5441 -initials: A. G. -mobile: +1 213 430-8878 -pager: +1 213 322-7404 -roomNumber: 9351 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lilian Racette,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilian Racette -sn: Racette -description: This is Lilian Racette's description -facsimileTelephoneNumber: +1 206 654-3502 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 355-1161 -title: Master Product Testing Punk -userPassword: Password1 -uid: RacetteL -givenName: Lilian -mail: RacetteL@f6414ae4de9c48918d1c08fe0828695b.bitwarden.com -carLicense: E52BBQ -departmentNumber: 9803 -employeeType: Normal -homePhone: +1 206 549-5528 -initials: L. R. -mobile: +1 206 812-8336 -pager: +1 206 117-6402 -roomNumber: 9616 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Clara Partello,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clara Partello -sn: Partello -description: This is Clara Partello's description -facsimileTelephoneNumber: +1 213 725-8358 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 887-1757 -title: Chief Administrative Technician -userPassword: Password1 -uid: PartellC -givenName: Clara -mail: PartellC@68e96d35b7bb4addbceb19d0fa830ff5.bitwarden.com -carLicense: AA73L0 -departmentNumber: 5318 -employeeType: Employee -homePhone: +1 213 701-7936 -initials: C. P. -mobile: +1 213 885-3700 -pager: +1 213 744-3900 -roomNumber: 9111 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Birdie Pifko,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Birdie Pifko -sn: Pifko -description: This is Birdie Pifko's description -facsimileTelephoneNumber: +1 804 220-3042 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 545-9543 -title: Associate Human Resources Warrior -userPassword: Password1 -uid: PifkoB -givenName: Birdie -mail: PifkoB@f9ccaba996b948fd826c0c115f90045a.bitwarden.com -carLicense: CGU9OU -departmentNumber: 2559 -employeeType: Normal -homePhone: +1 804 723-9981 -initials: B. P. -mobile: +1 804 402-8197 -pager: +1 804 257-7830 -roomNumber: 9509 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Salomi Erickson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salomi Erickson -sn: Erickson -description: This is Salomi Erickson's description -facsimileTelephoneNumber: +1 415 604-1408 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 552-3100 -title: Master Payroll Technician -userPassword: Password1 -uid: EricksoS -givenName: Salomi -mail: EricksoS@a55f359fe55a4a3a9208cf8975a694de.bitwarden.com -carLicense: 4XORLU -departmentNumber: 6584 -employeeType: Normal -homePhone: +1 415 875-4994 -initials: S. E. -mobile: +1 415 306-3722 -pager: +1 415 642-9015 -roomNumber: 9304 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hephzibah Wortman -sn: Wortman -description: This is Hephzibah Wortman's description -facsimileTelephoneNumber: +1 818 113-2311 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 818 213-8458 -title: Associate Payroll Technician -userPassword: Password1 -uid: WortmanH -givenName: Hephzibah -mail: WortmanH@5d35d83c207d418fad061afb7ba230bf.bitwarden.com -carLicense: EP0E8X -departmentNumber: 9147 -employeeType: Normal -homePhone: +1 818 890-2625 -initials: H. W. -mobile: +1 818 525-9866 -pager: +1 818 372-6738 -roomNumber: 8159 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Opal Lovas,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opal Lovas -sn: Lovas -description: This is Opal Lovas's description -facsimileTelephoneNumber: +1 804 764-4567 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 149-4480 -title: Junior Product Development Fellow -userPassword: Password1 -uid: LovasO -givenName: Opal -mail: LovasO@b6586e5c798a4f03943784564d79007b.bitwarden.com -carLicense: 5451JW -departmentNumber: 9363 -employeeType: Employee -homePhone: +1 804 873-9582 -initials: O. L. -mobile: +1 804 324-2165 -pager: +1 804 202-8943 -roomNumber: 8179 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosamond Raaflaub -sn: Raaflaub -description: This is Rosamond Raaflaub's description -facsimileTelephoneNumber: +1 804 768-3058 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 496-7794 -title: Associate Peons Stooge -userPassword: Password1 -uid: RaaflauR -givenName: Rosamond -mail: RaaflauR@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com -carLicense: IYDF5K -departmentNumber: 5621 -employeeType: Employee -homePhone: +1 804 535-7743 -initials: R. R. -mobile: +1 804 774-3118 -pager: +1 804 832-2734 -roomNumber: 8449 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tabbi Ferrao -sn: Ferrao -description: This is Tabbi Ferrao's description -facsimileTelephoneNumber: +1 213 110-7432 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 778-1804 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: FerraoT -givenName: Tabbi -mail: FerraoT@d36e7daa663c4d1bb3597eaa04d6f0fb.bitwarden.com -carLicense: WFGXKG -departmentNumber: 3580 -employeeType: Contract -homePhone: +1 213 450-1156 -initials: T. F. -mobile: +1 213 719-4952 -pager: +1 213 757-3233 -roomNumber: 9043 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gurvinder Kinnaird -sn: Kinnaird -description: This is Gurvinder Kinnaird's description -facsimileTelephoneNumber: +1 206 656-1322 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 407-2068 -title: Master Peons Stooge -userPassword: Password1 -uid: KinnairG -givenName: Gurvinder -mail: KinnairG@6a01aba5dc8f451b8404750bb95136ca.bitwarden.com -carLicense: DG8839 -departmentNumber: 8283 -employeeType: Normal -homePhone: +1 206 139-2585 -initials: G. K. -mobile: +1 206 539-5779 -pager: +1 206 798-5992 -roomNumber: 9414 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jai Malizia,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jai Malizia -sn: Malizia -description: This is Jai Malizia's description -facsimileTelephoneNumber: +1 510 480-8253 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 822-8723 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: MaliziaJ -givenName: Jai -mail: MaliziaJ@a06bbbc55c33432c98c9104924935152.bitwarden.com -carLicense: 4VILC4 -departmentNumber: 6511 -employeeType: Employee -homePhone: +1 510 886-1327 -initials: J. M. -mobile: +1 510 925-8742 -pager: +1 510 575-1512 -roomNumber: 9227 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alice Krogh,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alice Krogh -sn: Krogh -description: This is Alice Krogh's description -facsimileTelephoneNumber: +1 510 494-9393 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 510 159-7007 -title: Chief Management Writer -userPassword: Password1 -uid: KroghA -givenName: Alice -mail: KroghA@6d14a4ca13c844f4a7d4c4bf95fd8d6d.bitwarden.com -carLicense: 0MXXL0 -departmentNumber: 8241 -employeeType: Employee -homePhone: +1 510 740-5289 -initials: A. K. -mobile: +1 510 830-1137 -pager: +1 510 577-5239 -roomNumber: 9751 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ronan Gillard,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronan Gillard -sn: Gillard -description: This is Ronan Gillard's description -facsimileTelephoneNumber: +1 818 779-2583 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 843-9171 -title: Chief Payroll Fellow -userPassword: Password1 -uid: GillardR -givenName: Ronan -mail: GillardR@5081de5367fd49c089deda39143eb679.bitwarden.com -carLicense: Y1XWN5 -departmentNumber: 9546 -employeeType: Employee -homePhone: +1 818 365-1939 -initials: R. G. -mobile: +1 818 289-5494 -pager: +1 818 915-7997 -roomNumber: 9375 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=BettyAnn Sakauye,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: BettyAnn Sakauye -sn: Sakauye -description: This is BettyAnn Sakauye's description -facsimileTelephoneNumber: +1 818 909-3097 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 285-2296 -title: Junior Management Artist -userPassword: Password1 -uid: SakauyeB -givenName: BettyAnn -mail: SakauyeB@804b9151f1ba415a894983275163dae1.bitwarden.com -carLicense: FT7N8B -departmentNumber: 8685 -employeeType: Normal -homePhone: +1 818 893-3722 -initials: B. S. -mobile: +1 818 886-7421 -pager: +1 818 653-5049 -roomNumber: 9409 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermione Reijerkerk -sn: Reijerkerk -description: This is Hermione Reijerkerk's description -facsimileTelephoneNumber: +1 408 708-3716 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 128-3562 -title: Chief Payroll Grunt -userPassword: Password1 -uid: ReijerkH -givenName: Hermione -mail: ReijerkH@d8b1c84590d04a1e945916297425fac6.bitwarden.com -carLicense: CVAAAY -departmentNumber: 3414 -employeeType: Employee -homePhone: +1 408 168-2557 -initials: H. R. -mobile: +1 408 574-3355 -pager: +1 408 620-7132 -roomNumber: 8010 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adan Fralick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adan Fralick -sn: Fralick -description: This is Adan Fralick's description -facsimileTelephoneNumber: +1 415 263-8175 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 415 826-2586 -title: Junior Product Testing Sales Rep -userPassword: Password1 -uid: FralickA -givenName: Adan -mail: FralickA@fd53ca3e2a714cfd8efeb8476d6535f3.bitwarden.com -carLicense: AILX5B -departmentNumber: 7037 -employeeType: Normal -homePhone: +1 415 873-1060 -initials: A. F. -mobile: +1 415 620-6175 -pager: +1 415 218-6154 -roomNumber: 9815 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Koren Jalali,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koren Jalali -sn: Jalali -description: This is Koren Jalali's description -facsimileTelephoneNumber: +1 510 974-9990 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 510 376-7761 -title: Associate Product Testing Stooge -userPassword: Password1 -uid: JalaliK -givenName: Koren -mail: JalaliK@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com -carLicense: 8I7J82 -departmentNumber: 5574 -employeeType: Employee -homePhone: +1 510 316-8444 -initials: K. J. -mobile: +1 510 559-8868 -pager: +1 510 564-2657 -roomNumber: 8270 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Reza StAmour,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reza StAmour -sn: StAmour -description: This is Reza StAmour's description -facsimileTelephoneNumber: +1 408 978-7016 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 939-2292 -title: Junior Payroll Madonna -userPassword: Password1 -uid: StAmourR -givenName: Reza -mail: StAmourR@5e804d1ca9ae4836a819c9a675bca682.bitwarden.com -carLicense: FH28TO -departmentNumber: 6243 -employeeType: Contract -homePhone: +1 408 994-7290 -initials: R. S. -mobile: +1 408 176-4360 -pager: +1 408 888-1584 -roomNumber: 9464 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Binh DALE,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binh DALE -sn: DALE -description: This is Binh DALE's description -facsimileTelephoneNumber: +1 415 314-3174 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 265-5362 -title: Chief Human Resources Writer -userPassword: Password1 -uid: DALEB -givenName: Binh -mail: DALEB@7c9912a898274068a97bbe2d535d84de.bitwarden.com -carLicense: PJV2I8 -departmentNumber: 7779 -employeeType: Contract -homePhone: +1 415 406-8801 -initials: B. D. -mobile: +1 415 584-3623 -pager: +1 415 170-9255 -roomNumber: 9387 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kanata Panch,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanata Panch -sn: Panch -description: This is Kanata Panch's description -facsimileTelephoneNumber: +1 206 223-7795 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 311-7899 -title: Junior Administrative President -userPassword: Password1 -uid: PanchK -givenName: Kanata -mail: PanchK@501150f5ddc648879b7e60650df203a7.bitwarden.com -carLicense: UTQJGQ -departmentNumber: 5920 -employeeType: Contract -homePhone: +1 206 511-8866 -initials: K. P. -mobile: +1 206 442-7098 -pager: +1 206 396-8197 -roomNumber: 9593 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kanata Runciman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanata Runciman -sn: Runciman -description: This is Kanata Runciman's description -facsimileTelephoneNumber: +1 415 568-9628 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 566-4370 -title: Associate Janitorial Czar -userPassword: Password1 -uid: RuncimaK -givenName: Kanata -mail: RuncimaK@a6c2af5a8f94494bae6122c60dacfc6e.bitwarden.com -carLicense: TOAWD9 -departmentNumber: 2925 -employeeType: Normal -homePhone: +1 415 257-9613 -initials: K. R. -mobile: +1 415 671-5020 -pager: +1 415 531-1973 -roomNumber: 8746 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaylene Szymanski -sn: Szymanski -description: This is Gaylene Szymanski's description -facsimileTelephoneNumber: +1 415 209-5429 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 383-9984 -title: Junior Human Resources Madonna -userPassword: Password1 -uid: SzymansG -givenName: Gaylene -mail: SzymansG@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com -carLicense: A4R25H -departmentNumber: 3778 -employeeType: Contract -homePhone: +1 415 340-4280 -initials: G. S. -mobile: +1 415 972-8345 -pager: +1 415 713-8999 -roomNumber: 9826 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lester Brookhart,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lester Brookhart -sn: Brookhart -description: This is Lester Brookhart's description -facsimileTelephoneNumber: +1 415 298-3040 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 255-1437 -title: Supreme Management Evangelist -userPassword: Password1 -uid: BrookhaL -givenName: Lester -mail: BrookhaL@207f92af6bc444a9a508764b35dab916.bitwarden.com -carLicense: HCG0W1 -departmentNumber: 7187 -employeeType: Normal -homePhone: +1 415 504-3573 -initials: L. B. -mobile: +1 415 605-2930 -pager: +1 415 524-3246 -roomNumber: 8334 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Adelheid Godin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adelheid Godin -sn: Godin -description: This is Adelheid Godin's description -facsimileTelephoneNumber: +1 206 320-2683 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 322-5911 -title: Chief Management Janitor -userPassword: Password1 -uid: GodinA -givenName: Adelheid -mail: GodinA@4fc4e61aa4364561b3dbed18d06aa13c.bitwarden.com -carLicense: UBDA3W -departmentNumber: 4411 -employeeType: Normal -homePhone: +1 206 567-7212 -initials: A. G. -mobile: +1 206 745-3760 -pager: +1 206 483-3339 -roomNumber: 8028 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Calypso Hagar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calypso Hagar -sn: Hagar -description: This is Calypso Hagar's description -facsimileTelephoneNumber: +1 206 667-4530 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 807-8043 -title: Junior Management Consultant -userPassword: Password1 -uid: HagarC -givenName: Calypso -mail: HagarC@234ee37c120948d4b641c99209d1bdde.bitwarden.com -carLicense: 85RU0C -departmentNumber: 1872 -employeeType: Contract -homePhone: +1 206 845-2921 -initials: C. H. -mobile: +1 206 315-4378 -pager: +1 206 370-3995 -roomNumber: 8850 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leann Bawek,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leann Bawek -sn: Bawek -description: This is Leann Bawek's description -facsimileTelephoneNumber: +1 408 630-9433 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 469-4644 -title: Master Administrative Assistant -userPassword: Password1 -uid: BawekL -givenName: Leann -mail: BawekL@ce56c75a600546b9ade2ff9aaa1b992b.bitwarden.com -carLicense: 949AWS -departmentNumber: 7443 -employeeType: Normal -homePhone: +1 408 787-2963 -initials: L. B. -mobile: +1 408 571-4292 -pager: +1 408 853-5365 -roomNumber: 9362 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stormy Bayraktar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stormy Bayraktar -sn: Bayraktar -description: This is Stormy Bayraktar's description -facsimileTelephoneNumber: +1 818 554-4989 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 352-1003 -title: Chief Management Stooge -userPassword: Password1 -uid: BayraktS -givenName: Stormy -mail: BayraktS@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com -carLicense: B2C2SR -departmentNumber: 3272 -employeeType: Normal -homePhone: +1 818 766-6269 -initials: S. B. -mobile: +1 818 652-8122 -pager: +1 818 998-2499 -roomNumber: 8356 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Margarita Delisle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margarita Delisle -sn: Delisle -description: This is Margarita Delisle's description -facsimileTelephoneNumber: +1 510 300-1541 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 936-8430 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: DelisleM -givenName: Margarita -mail: DelisleM@de05663cc1c445b9849ee8fab2914551.bitwarden.com -carLicense: O7RLML -departmentNumber: 1061 -employeeType: Normal -homePhone: +1 510 659-7817 -initials: M. D. -mobile: +1 510 919-1645 -pager: +1 510 704-6703 -roomNumber: 8157 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rao Fontana,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rao Fontana -sn: Fontana -description: This is Rao Fontana's description -facsimileTelephoneNumber: +1 415 805-6475 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 587-9292 -title: Associate Management Vice President -userPassword: Password1 -uid: FontanaR -givenName: Rao -mail: FontanaR@3714ef07d9f24410a85dd847beb54eef.bitwarden.com -carLicense: V60PA5 -departmentNumber: 3012 -employeeType: Normal -homePhone: +1 415 192-7081 -initials: R. F. -mobile: +1 415 190-4177 -pager: +1 415 200-8579 -roomNumber: 9655 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Richard Bachelu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Richard Bachelu -sn: Bachelu -description: This is Richard Bachelu's description -facsimileTelephoneNumber: +1 415 196-6254 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 458-3340 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: BacheluR -givenName: Richard -mail: BacheluR@3184696e559c4eb9b1f55dd5eb5e3418.bitwarden.com -carLicense: CUEFQ8 -departmentNumber: 4669 -employeeType: Contract -homePhone: +1 415 264-9353 -initials: R. B. -mobile: +1 415 499-5403 -pager: +1 415 929-6933 -roomNumber: 8332 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tatsman Musa,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatsman Musa -sn: Musa -description: This is Tatsman Musa's description -facsimileTelephoneNumber: +1 408 556-7865 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 226-1853 -title: Supreme Management Punk -userPassword: Password1 -uid: MusaT -givenName: Tatsman -mail: MusaT@7c3aa81c6a4d478383075852375fc21f.bitwarden.com -carLicense: YMBPNT -departmentNumber: 1260 -employeeType: Employee -homePhone: +1 408 455-8867 -initials: T. M. -mobile: +1 408 773-8752 -pager: +1 408 962-6136 -roomNumber: 9685 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pia Maksoud,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pia Maksoud -sn: Maksoud -description: This is Pia Maksoud's description -facsimileTelephoneNumber: +1 213 449-4801 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 176-2121 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: MaksoudP -givenName: Pia -mail: MaksoudP@9688197f14c24b1ba3397822373736ec.bitwarden.com -carLicense: FE8HMO -departmentNumber: 3960 -employeeType: Normal -homePhone: +1 213 907-4323 -initials: P. M. -mobile: +1 213 956-1582 -pager: +1 213 470-1839 -roomNumber: 9572 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Scovill Sayar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Scovill Sayar -sn: Sayar -description: This is Scovill Sayar's description -facsimileTelephoneNumber: +1 818 513-5008 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 391-8840 -title: Master Product Testing Writer -userPassword: Password1 -uid: SayarS -givenName: Scovill -mail: SayarS@6514a77f75fd435b8801b83088c2b38a.bitwarden.com -carLicense: OYJKOH -departmentNumber: 9132 -employeeType: Contract -homePhone: +1 818 255-1949 -initials: S. S. -mobile: +1 818 688-5254 -pager: +1 818 323-4737 -roomNumber: 8528 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Norry Shen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norry Shen -sn: Shen -description: This is Norry Shen's description -facsimileTelephoneNumber: +1 213 159-4421 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 828-7838 -title: Junior Human Resources Director -userPassword: Password1 -uid: ShenN -givenName: Norry -mail: ShenN@539cce6ead8749dbb15039351f6600f2.bitwarden.com -carLicense: IJ7KD9 -departmentNumber: 1207 -employeeType: Normal -homePhone: +1 213 474-4328 -initials: N. S. -mobile: +1 213 279-8113 -pager: +1 213 111-5243 -roomNumber: 8225 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kayle Ahmad,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kayle Ahmad -sn: Ahmad -description: This is Kayle Ahmad's description -facsimileTelephoneNumber: +1 415 258-7313 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 549-4204 -title: Master Payroll Visionary -userPassword: Password1 -uid: AhmadK -givenName: Kayle -mail: AhmadK@d31e92a87311451da615d0866d1a1f0b.bitwarden.com -carLicense: G1MQGT -departmentNumber: 8109 -employeeType: Normal -homePhone: +1 415 837-9120 -initials: K. A. -mobile: +1 415 118-3884 -pager: +1 415 748-7512 -roomNumber: 8349 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Debor Schiltz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debor Schiltz -sn: Schiltz -description: This is Debor Schiltz's description -facsimileTelephoneNumber: +1 804 596-4246 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 804 842-2071 -title: Junior Peons Architect -userPassword: Password1 -uid: SchiltzD -givenName: Debor -mail: SchiltzD@34fb6983abae4929b62080bbb5ec3e07.bitwarden.com -carLicense: 18U2KJ -departmentNumber: 2640 -employeeType: Contract -homePhone: +1 804 306-1469 -initials: D. S. -mobile: +1 804 697-1940 -pager: +1 804 669-3957 -roomNumber: 8558 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sandi Kochanski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandi Kochanski -sn: Kochanski -description: This is Sandi Kochanski's description -facsimileTelephoneNumber: +1 804 184-2591 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 641-8865 -title: Supreme Management Developer -userPassword: Password1 -uid: KochansS -givenName: Sandi -mail: KochansS@3313782fad5f448f843eeeeabc4b6528.bitwarden.com -carLicense: FDED2Y -departmentNumber: 8492 -employeeType: Normal -homePhone: +1 804 193-4729 -initials: S. K. -mobile: +1 804 480-6716 -pager: +1 804 696-9776 -roomNumber: 8154 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hadria Rowley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hadria Rowley -sn: Rowley -description: This is Hadria Rowley's description -facsimileTelephoneNumber: +1 804 853-4005 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 376-8348 -title: Supreme Peons Director -userPassword: Password1 -uid: RowleyH -givenName: Hadria -mail: RowleyH@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com -carLicense: IM49E8 -departmentNumber: 2787 -employeeType: Normal -homePhone: +1 804 135-5920 -initials: H. R. -mobile: +1 804 956-4098 -pager: +1 804 954-4532 -roomNumber: 9908 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rosetta Toscano,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosetta Toscano -sn: Toscano -description: This is Rosetta Toscano's description -facsimileTelephoneNumber: +1 804 421-4877 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 804 776-5975 -title: Junior Peons Punk -userPassword: Password1 -uid: ToscanoR -givenName: Rosetta -mail: ToscanoR@6edb45774ca84613bad15cd0d733e197.bitwarden.com -carLicense: N0N4J2 -departmentNumber: 2548 -employeeType: Normal -homePhone: +1 804 596-8953 -initials: R. T. -mobile: +1 804 973-3452 -pager: +1 804 625-2196 -roomNumber: 9462 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Chi Winsborrow,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chi Winsborrow -sn: Winsborrow -description: This is Chi Winsborrow's description -facsimileTelephoneNumber: +1 206 844-7075 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 886-2123 -title: Chief Payroll Writer -userPassword: Password1 -uid: WinsborC -givenName: Chi -mail: WinsborC@7a29f9439ed8484883467552bcb6396e.bitwarden.com -carLicense: DAVVV1 -departmentNumber: 9571 -employeeType: Normal -homePhone: +1 206 252-1123 -initials: C. W. -mobile: +1 206 790-1271 -pager: +1 206 806-5357 -roomNumber: 8546 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blanch Karunaratne -sn: Karunaratne -description: This is Blanch Karunaratne's description -facsimileTelephoneNumber: +1 510 496-5777 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 119-9996 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: KarunarB -givenName: Blanch -mail: KarunarB@1d1f899f1d144566b6f0636dabdfb0f1.bitwarden.com -carLicense: CCHE8C -departmentNumber: 5755 -employeeType: Employee -homePhone: +1 510 617-2427 -initials: B. K. -mobile: +1 510 872-3878 -pager: +1 510 739-2280 -roomNumber: 8407 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zarah Vanderhoeven -sn: Vanderhoeven -description: This is Zarah Vanderhoeven's description -facsimileTelephoneNumber: +1 213 337-3570 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 405-2306 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: VanderhZ -givenName: Zarah -mail: VanderhZ@fef3179c9c4841a591a83e801687f728.bitwarden.com -carLicense: M1365I -departmentNumber: 1751 -employeeType: Normal -homePhone: +1 213 179-3042 -initials: Z. V. -mobile: +1 213 934-8023 -pager: +1 213 759-2942 -roomNumber: 8332 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ammar Foldes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ammar Foldes -sn: Foldes -description: This is Ammar Foldes's description -facsimileTelephoneNumber: +1 510 633-1802 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 637-3462 -title: Associate Management Madonna -userPassword: Password1 -uid: FoldesA -givenName: Ammar -mail: FoldesA@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com -carLicense: RNRMB6 -departmentNumber: 1171 -employeeType: Contract -homePhone: +1 510 730-7295 -initials: A. F. -mobile: +1 510 511-6781 -pager: +1 510 930-8407 -roomNumber: 8893 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Andria Nagy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andria Nagy -sn: Nagy -description: This is Andria Nagy's description -facsimileTelephoneNumber: +1 818 230-9596 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 682-3454 -title: Master Janitorial Czar -userPassword: Password1 -uid: NagyA -givenName: Andria -mail: NagyA@f356b9ffcffb4ac98d745b6fe117b574.bitwarden.com -carLicense: RVVGBD -departmentNumber: 9836 -employeeType: Employee -homePhone: +1 818 318-3452 -initials: A. N. -mobile: +1 818 198-5575 -pager: +1 818 710-2856 -roomNumber: 8015 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Earle Calkins,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Earle Calkins -sn: Calkins -description: This is Earle Calkins's description -facsimileTelephoneNumber: +1 408 215-8786 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 408 148-5021 -title: Master Janitorial Madonna -userPassword: Password1 -uid: CalkinsE -givenName: Earle -mail: CalkinsE@d31e92a87311451da615d0866d1a1f0b.bitwarden.com -carLicense: 2TDVQ2 -departmentNumber: 9286 -employeeType: Employee -homePhone: +1 408 671-9235 -initials: E. C. -mobile: +1 408 603-8046 -pager: +1 408 726-4758 -roomNumber: 8372 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Irc Loper,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Irc Loper -sn: Loper -description: This is Irc Loper's description -facsimileTelephoneNumber: +1 818 272-9036 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 818 511-1456 -title: Associate Payroll Dictator -userPassword: Password1 -uid: LoperI -givenName: Irc -mail: LoperI@db0d46fdeb854c2eb066d9894606ad6e.bitwarden.com -carLicense: JI2R16 -departmentNumber: 2621 -employeeType: Employee -homePhone: +1 818 173-3119 -initials: I. L. -mobile: +1 818 403-1113 -pager: +1 818 301-4574 -roomNumber: 9426 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dari Landriault,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dari Landriault -sn: Landriault -description: This is Dari Landriault's description -facsimileTelephoneNumber: +1 818 618-7997 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 981-2603 -title: Chief Management Writer -userPassword: Password1 -uid: LandriaD -givenName: Dari -mail: LandriaD@e0fbcbf86ba64fa69e571f107b3ec1d7.bitwarden.com -carLicense: AL7GGF -departmentNumber: 3477 -employeeType: Normal -homePhone: +1 818 228-2698 -initials: D. L. -mobile: +1 818 578-3580 -pager: +1 818 768-3746 -roomNumber: 9751 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Logntp Wilemon -sn: Wilemon -description: This is Logntp Wilemon's description -facsimileTelephoneNumber: +1 408 927-6569 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 408 158-9308 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: WilemonL -givenName: Logntp -mail: WilemonL@3bfc3de402e042a394d461b86f93128b.bitwarden.com -carLicense: K6BJU9 -departmentNumber: 6283 -employeeType: Normal -homePhone: +1 408 682-1492 -initials: L. W. -mobile: +1 408 379-2922 -pager: +1 408 247-1001 -roomNumber: 9002 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lonna Varano,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lonna Varano -sn: Varano -description: This is Lonna Varano's description -facsimileTelephoneNumber: +1 206 574-5132 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 221-5093 -title: Chief Product Development Consultant -userPassword: Password1 -uid: VaranoL -givenName: Lonna -mail: VaranoL@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com -carLicense: DRCV3C -departmentNumber: 3399 -employeeType: Employee -homePhone: +1 206 634-9715 -initials: L. V. -mobile: +1 206 872-2431 -pager: +1 206 280-3147 -roomNumber: 8877 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shan Heynen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shan Heynen -sn: Heynen -description: This is Shan Heynen's description -facsimileTelephoneNumber: +1 408 979-6988 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 420-7949 -title: Associate Product Development Vice President -userPassword: Password1 -uid: HeynenS -givenName: Shan -mail: HeynenS@bb0489742bf04771919e77ac610dacd0.bitwarden.com -carLicense: QYTPKC -departmentNumber: 5123 -employeeType: Normal -homePhone: +1 408 658-4251 -initials: S. H. -mobile: +1 408 180-1731 -pager: +1 408 422-3600 -roomNumber: 8029 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carena Pennington,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carena Pennington -sn: Pennington -description: This is Carena Pennington's description -facsimileTelephoneNumber: +1 804 875-5535 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 334-6426 -title: Junior Human Resources Architect -userPassword: Password1 -uid: PenningC -givenName: Carena -mail: PenningC@7a31b9bd3b244190a4667b858c47bbc9.bitwarden.com -carLicense: R9K8H4 -departmentNumber: 8841 -employeeType: Normal -homePhone: +1 804 581-9991 -initials: C. P. -mobile: +1 804 949-9883 -pager: +1 804 595-7081 -roomNumber: 9515 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Luci Sebastien,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luci Sebastien -sn: Sebastien -description: This is Luci Sebastien's description -facsimileTelephoneNumber: +1 206 615-2294 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 353-1220 -title: Chief Product Development Manager -userPassword: Password1 -uid: SebastiL -givenName: Luci -mail: SebastiL@6776642cb6824166a999264ad8dc48c5.bitwarden.com -carLicense: XVB3JQ -departmentNumber: 1275 -employeeType: Normal -homePhone: +1 206 645-8317 -initials: L. S. -mobile: +1 206 392-3623 -pager: +1 206 196-7265 -roomNumber: 9564 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mansukha Lehtovaara -sn: Lehtovaara -description: This is Mansukha Lehtovaara's description -facsimileTelephoneNumber: +1 804 170-2273 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 472-2597 -title: Supreme Management Figurehead -userPassword: Password1 -uid: LehtovaM -givenName: Mansukha -mail: LehtovaM@5a401695e3b247eaaefdf24718c62818.bitwarden.com -carLicense: 2QKJ0Q -departmentNumber: 8986 -employeeType: Normal -homePhone: +1 804 387-1333 -initials: M. L. -mobile: +1 804 502-5803 -pager: +1 804 413-5151 -roomNumber: 8617 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Feynman OShaughnessey -sn: OShaughnessey -description: This is Feynman OShaughnessey's description -facsimileTelephoneNumber: +1 213 425-8309 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 231-7230 -title: Associate Peons Assistant -userPassword: Password1 -uid: OShaughF -givenName: Feynman -mail: OShaughF@4839522ad0264d68aafb73c3cd081f79.bitwarden.com -carLicense: LQM6SB -departmentNumber: 8807 -employeeType: Normal -homePhone: +1 213 375-2751 -initials: F. O. -mobile: +1 213 876-4585 -pager: +1 213 974-6010 -roomNumber: 8381 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gayleen Hagglund,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gayleen Hagglund -sn: Hagglund -description: This is Gayleen Hagglund's description -facsimileTelephoneNumber: +1 206 102-6962 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 212-2644 -title: Associate Management Sales Rep -userPassword: Password1 -uid: HagglunG -givenName: Gayleen -mail: HagglunG@129df14932ae4f0186cdae7a694343a9.bitwarden.com -carLicense: XK77FA -departmentNumber: 4299 -employeeType: Contract -homePhone: +1 206 900-2476 -initials: G. H. -mobile: +1 206 635-8193 -pager: +1 206 447-6837 -roomNumber: 9520 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorey Wokoma -sn: Wokoma -description: This is Dorey Wokoma's description -facsimileTelephoneNumber: +1 206 379-8189 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 384-5954 -title: Master Human Resources Czar -userPassword: Password1 -uid: WokomaD -givenName: Dorey -mail: WokomaD@4d5fb31e7f90432388e6d7a93e8fe33b.bitwarden.com -carLicense: 51XABH -departmentNumber: 8795 -employeeType: Normal -homePhone: +1 206 602-3379 -initials: D. W. -mobile: +1 206 420-2438 -pager: +1 206 801-4393 -roomNumber: 9676 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sybyl Gubbins,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sybyl Gubbins -sn: Gubbins -description: This is Sybyl Gubbins's description -facsimileTelephoneNumber: +1 206 281-8856 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 206 328-3009 -title: Supreme Management Madonna -userPassword: Password1 -uid: GubbinsS -givenName: Sybyl -mail: GubbinsS@f787d124c5334abea177416c989fec04.bitwarden.com -carLicense: A82XD4 -departmentNumber: 1239 -employeeType: Normal -homePhone: +1 206 928-4502 -initials: S. G. -mobile: +1 206 715-7109 -pager: +1 206 409-3065 -roomNumber: 9795 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Coursdev Racette,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coursdev Racette -sn: Racette -description: This is Coursdev Racette's description -facsimileTelephoneNumber: +1 510 513-6854 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 893-9435 -title: Chief Product Testing Figurehead -userPassword: Password1 -uid: RacetteC -givenName: Coursdev -mail: RacetteC@e4bac3ad693c4157b1be0e5e7444cbf8.bitwarden.com -carLicense: 6UQ2JC -departmentNumber: 2205 -employeeType: Employee -homePhone: +1 510 192-5183 -initials: C. R. -mobile: +1 510 884-5244 -pager: +1 510 321-7032 -roomNumber: 9199 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fayth Biggs,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fayth Biggs -sn: Biggs -description: This is Fayth Biggs's description -facsimileTelephoneNumber: +1 510 305-4168 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 564-4741 -title: Junior Payroll Mascot -userPassword: Password1 -uid: BiggsF -givenName: Fayth -mail: BiggsF@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com -carLicense: KPX3SE -departmentNumber: 3215 -employeeType: Employee -homePhone: +1 510 456-4607 -initials: F. B. -mobile: +1 510 411-9711 -pager: +1 510 268-9638 -roomNumber: 9536 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Neely Elbeze,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neely Elbeze -sn: Elbeze -description: This is Neely Elbeze's description -facsimileTelephoneNumber: +1 415 966-6146 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 922-8860 -title: Chief Payroll Director -userPassword: Password1 -uid: ElbezeN -givenName: Neely -mail: ElbezeN@21b4ff7eaee4433da6e498e7c5416e46.bitwarden.com -carLicense: WD49VF -departmentNumber: 4860 -employeeType: Normal -homePhone: +1 415 553-1601 -initials: N. E. -mobile: +1 415 466-4953 -pager: +1 415 920-2034 -roomNumber: 9219 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jamin Shute,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jamin Shute -sn: Shute -description: This is Jamin Shute's description -facsimileTelephoneNumber: +1 408 444-6419 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 408 945-9186 -title: Master Human Resources Evangelist -userPassword: Password1 -uid: ShuteJ -givenName: Jamin -mail: ShuteJ@d6177e62683049c2b0fc2f004265e4ff.bitwarden.com -carLicense: GVHPLK -departmentNumber: 5880 -employeeType: Normal -homePhone: +1 408 714-8702 -initials: J. S. -mobile: +1 408 700-5485 -pager: +1 408 592-1127 -roomNumber: 8781 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sabuson Flach,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabuson Flach -sn: Flach -description: This is Sabuson Flach's description -facsimileTelephoneNumber: +1 213 342-3338 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 816-5517 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: FlachS -givenName: Sabuson -mail: FlachS@15e5c78fa75f4006a7a718476b38350f.bitwarden.com -carLicense: VXWT7V -departmentNumber: 6874 -employeeType: Contract -homePhone: +1 213 124-6437 -initials: S. F. -mobile: +1 213 233-1829 -pager: +1 213 377-5734 -roomNumber: 8563 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Laurence Wootton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laurence Wootton -sn: Wootton -description: This is Laurence Wootton's description -facsimileTelephoneNumber: +1 804 652-4190 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 992-1640 -title: Chief Human Resources Punk -userPassword: Password1 -uid: WoottonL -givenName: Laurence -mail: WoottonL@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com -carLicense: W4KTDF -departmentNumber: 5237 -employeeType: Contract -homePhone: +1 804 169-4631 -initials: L. W. -mobile: +1 804 827-7572 -pager: +1 804 779-2357 -roomNumber: 8454 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atsuo DeVries -sn: DeVries -description: This is Atsuo DeVries's description -facsimileTelephoneNumber: +1 408 841-5672 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 701-4079 -title: Chief Janitorial Developer -userPassword: Password1 -uid: DeVriesA -givenName: Atsuo -mail: DeVriesA@90b5b0065a4e4dc3b484c9e88ebc320e.bitwarden.com -carLicense: OWV7IY -departmentNumber: 3305 -employeeType: Contract -homePhone: +1 408 992-9924 -initials: A. D. -mobile: +1 408 657-3282 -pager: +1 408 835-3152 -roomNumber: 8361 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Eric Skrobecki,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eric Skrobecki -sn: Skrobecki -description: This is Eric Skrobecki's description -facsimileTelephoneNumber: +1 408 459-8402 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 873-4469 -title: Junior Management Vice President -userPassword: Password1 -uid: SkrobecE -givenName: Eric -mail: SkrobecE@35246f7c7d854ddcb889890419b35d0c.bitwarden.com -carLicense: EUDRK6 -departmentNumber: 6087 -employeeType: Normal -homePhone: +1 408 890-6568 -initials: E. S. -mobile: +1 408 547-4133 -pager: +1 408 101-4611 -roomNumber: 9106 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tatum Meffe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatum Meffe -sn: Meffe -description: This is Tatum Meffe's description -facsimileTelephoneNumber: +1 510 648-9786 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 172-6300 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: MeffeT -givenName: Tatum -mail: MeffeT@afde3113416043d98395556c73711549.bitwarden.com -carLicense: 6JSPGV -departmentNumber: 1775 -employeeType: Contract -homePhone: +1 510 169-8155 -initials: T. M. -mobile: +1 510 456-6009 -pager: +1 510 777-2590 -roomNumber: 8816 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Reinhard Homonick,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reinhard Homonick -sn: Homonick -description: This is Reinhard Homonick's description -facsimileTelephoneNumber: +1 510 389-6314 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 393-4723 -title: Associate Peons Warrior -userPassword: Password1 -uid: HomonicR -givenName: Reinhard -mail: HomonicR@9a209519348642769473b09231da3137.bitwarden.com -carLicense: KP81AJ -departmentNumber: 4300 -employeeType: Normal -homePhone: +1 510 562-5815 -initials: R. H. -mobile: +1 510 928-2475 -pager: +1 510 929-2595 -roomNumber: 9525 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rafaelia Digiacomo -sn: Digiacomo -description: This is Rafaelia Digiacomo's description -facsimileTelephoneNumber: +1 510 490-4427 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 515-6483 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: DigiacoR -givenName: Rafaelia -mail: DigiacoR@7342ee713ddb492bb8f187e76f68e083.bitwarden.com -carLicense: EXNDRS -departmentNumber: 4540 -employeeType: Normal -homePhone: +1 510 974-2079 -initials: R. D. -mobile: +1 510 308-9541 -pager: +1 510 417-4923 -roomNumber: 8010 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Imojean Sinnott,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imojean Sinnott -sn: Sinnott -description: This is Imojean Sinnott's description -facsimileTelephoneNumber: +1 408 229-3502 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 540-3246 -title: Junior Payroll Consultant -userPassword: Password1 -uid: SinnottI -givenName: Imojean -mail: SinnottI@9b5531beccfb48e780d0aa7ac3b90e83.bitwarden.com -carLicense: IHFF0Y -departmentNumber: 1683 -employeeType: Contract -homePhone: +1 408 696-9844 -initials: I. S. -mobile: +1 408 505-6375 -pager: +1 408 482-3127 -roomNumber: 8823 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Matt Buttrey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matt Buttrey -sn: Buttrey -description: This is Matt Buttrey's description -facsimileTelephoneNumber: +1 804 497-3689 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 804 434-9641 -title: Junior Product Testing Dictator -userPassword: Password1 -uid: ButtreyM -givenName: Matt -mail: ButtreyM@958185118457477783d16f2fa9e93aa2.bitwarden.com -carLicense: 9HITQT -departmentNumber: 2027 -employeeType: Employee -homePhone: +1 804 234-9282 -initials: M. B. -mobile: +1 804 884-8144 -pager: +1 804 341-9227 -roomNumber: 9276 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tadayuki Seguin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tadayuki Seguin -sn: Seguin -description: This is Tadayuki Seguin's description -facsimileTelephoneNumber: +1 415 132-4203 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 352-9596 -title: Supreme Management Dictator -userPassword: Password1 -uid: SeguinT -givenName: Tadayuki -mail: SeguinT@738b42a56ab44af39fa9da7b9eaffcee.bitwarden.com -carLicense: K9VC89 -departmentNumber: 6871 -employeeType: Normal -homePhone: +1 415 483-9118 -initials: T. S. -mobile: +1 415 644-1782 -pager: +1 415 172-8848 -roomNumber: 9212 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cang Smyth,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cang Smyth -sn: Smyth -description: This is Cang Smyth's description -facsimileTelephoneNumber: +1 510 954-8852 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 956-3194 -title: Master Management Grunt -userPassword: Password1 -uid: SmythC -givenName: Cang -mail: SmythC@6ff512afd6074ffb8be89092e99d3615.bitwarden.com -carLicense: T10DFF -departmentNumber: 4950 -employeeType: Employee -homePhone: +1 510 542-9133 -initials: C. S. -mobile: +1 510 761-5385 -pager: +1 510 238-3467 -roomNumber: 8316 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Suzie Guillet,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzie Guillet -sn: Guillet -description: This is Suzie Guillet's description -facsimileTelephoneNumber: +1 213 736-9168 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 612-2392 -title: Supreme Administrative Czar -userPassword: Password1 -uid: GuilletS -givenName: Suzie -mail: GuilletS@39810c97a1b24f6582a082401b4c2e13.bitwarden.com -carLicense: MTIWBT -departmentNumber: 7155 -employeeType: Normal -homePhone: +1 213 801-4562 -initials: S. G. -mobile: +1 213 419-1019 -pager: +1 213 633-7616 -roomNumber: 8826 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leilah Traulich,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leilah Traulich -sn: Traulich -description: This is Leilah Traulich's description -facsimileTelephoneNumber: +1 415 337-2345 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 585-8139 -title: Junior Management Admin -userPassword: Password1 -uid: TraulicL -givenName: Leilah -mail: TraulicL@10dd7c8b6c9343a9afbb8ab70a5f8b0a.bitwarden.com -carLicense: HNMCNU -departmentNumber: 1518 -employeeType: Normal -homePhone: +1 415 558-3162 -initials: L. T. -mobile: +1 415 869-9901 -pager: +1 415 601-4442 -roomNumber: 8844 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Horst Kaye,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Horst Kaye -sn: Kaye -description: This is Horst Kaye's description -facsimileTelephoneNumber: +1 510 896-1678 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 261-3726 -title: Junior Management Assistant -userPassword: Password1 -uid: KayeH -givenName: Horst -mail: KayeH@6ef4ed9ae6c24731b126e620358a2de4.bitwarden.com -carLicense: SGBKYF -departmentNumber: 9607 -employeeType: Normal -homePhone: +1 510 708-8333 -initials: H. K. -mobile: +1 510 390-7543 -pager: +1 510 720-6162 -roomNumber: 8384 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nuri Licerio,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nuri Licerio -sn: Licerio -description: This is Nuri Licerio's description -facsimileTelephoneNumber: +1 408 734-2339 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 678-5238 -title: Junior Product Testing Artist -userPassword: Password1 -uid: LicerioN -givenName: Nuri -mail: LicerioN@dc0f9a471328411da837f1c30f57d52b.bitwarden.com -carLicense: O7CCM5 -departmentNumber: 6827 -employeeType: Contract -homePhone: +1 408 747-9390 -initials: N. L. -mobile: +1 408 598-3954 -pager: +1 408 524-8627 -roomNumber: 8393 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tommi Preville,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tommi Preville -sn: Preville -description: This is Tommi Preville's description -facsimileTelephoneNumber: +1 206 466-3689 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 745-9227 -title: Supreme Janitorial Stooge -userPassword: Password1 -uid: PrevillT -givenName: Tommi -mail: PrevillT@ebac77f62ce1443b8d4bda5d4c334c86.bitwarden.com -carLicense: 8S7MO5 -departmentNumber: 2244 -employeeType: Employee -homePhone: +1 206 475-8735 -initials: T. P. -mobile: +1 206 726-6756 -pager: +1 206 270-7316 -roomNumber: 9074 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fredericka Christopher,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fredericka Christopher -sn: Christopher -description: This is Fredericka Christopher's description -facsimileTelephoneNumber: +1 415 283-5932 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 605-2354 -title: Associate Peons Technician -userPassword: Password1 -uid: ChristoF -givenName: Fredericka -mail: ChristoF@c98eaad0f92a41b49339315f79d6648a.bitwarden.com -carLicense: UI69TE -departmentNumber: 9761 -employeeType: Employee -homePhone: +1 415 845-4891 -initials: F. C. -mobile: +1 415 354-9847 -pager: +1 415 475-7768 -roomNumber: 9984 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Avivah Shostak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avivah Shostak -sn: Shostak -description: This is Avivah Shostak's description -facsimileTelephoneNumber: +1 818 541-5333 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 645-2077 -title: Master Human Resources Grunt -userPassword: Password1 -uid: ShostakA -givenName: Avivah -mail: ShostakA@fa1b72a27fc34f4eb3c5c550f81af8b3.bitwarden.com -carLicense: 44ULG0 -departmentNumber: 3822 -employeeType: Employee -homePhone: +1 818 218-1250 -initials: A. S. -mobile: +1 818 161-4831 -pager: +1 818 296-9098 -roomNumber: 9491 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tyne Briard,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tyne Briard -sn: Briard -description: This is Tyne Briard's description -facsimileTelephoneNumber: +1 818 412-2961 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 246-6352 -title: Supreme Janitorial President -userPassword: Password1 -uid: BriardT -givenName: Tyne -mail: BriardT@fb9aa8f3b49848c792549daf315b1674.bitwarden.com -carLicense: U59Q35 -departmentNumber: 6224 -employeeType: Employee -homePhone: +1 818 174-8796 -initials: T. B. -mobile: +1 818 422-4438 -pager: +1 818 266-5636 -roomNumber: 9912 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Drucy Levere,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drucy Levere -sn: Levere -description: This is Drucy Levere's description -facsimileTelephoneNumber: +1 408 216-8573 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 636-7626 -title: Master Product Testing Writer -userPassword: Password1 -uid: LevereD -givenName: Drucy -mail: LevereD@8044dacf63ac423fb3f7e245d1b46862.bitwarden.com -carLicense: PYGIC3 -departmentNumber: 4360 -employeeType: Contract -homePhone: +1 408 199-1256 -initials: D. L. -mobile: +1 408 226-4078 -pager: +1 408 687-8442 -roomNumber: 9164 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjorie Wrigley -sn: Wrigley -description: This is Marjorie Wrigley's description -facsimileTelephoneNumber: +1 415 454-3347 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 682-1394 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: WrigleyM -givenName: Marjorie -mail: WrigleyM@b9fd32c3a76b47599b2f4bf846bb48b6.bitwarden.com -carLicense: OPVH83 -departmentNumber: 2107 -employeeType: Normal -homePhone: +1 415 245-4847 -initials: M. W. -mobile: +1 415 998-2996 -pager: +1 415 532-2011 -roomNumber: 8008 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryce Dreisbach -sn: Dreisbach -description: This is Bryce Dreisbach's description -facsimileTelephoneNumber: +1 415 106-6501 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 599-1511 -title: Chief Payroll Janitor -userPassword: Password1 -uid: DreisbaB -givenName: Bryce -mail: DreisbaB@40c7ef179c0c4bb996024cd1b1971dad.bitwarden.com -carLicense: SPH8OX -departmentNumber: 3151 -employeeType: Normal -homePhone: +1 415 319-3967 -initials: B. D. -mobile: +1 415 361-6383 -pager: +1 415 610-1524 -roomNumber: 8447 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gianna Rivera,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gianna Rivera -sn: Rivera -description: This is Gianna Rivera's description -facsimileTelephoneNumber: +1 213 614-3123 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 630-2460 -title: Chief Administrative Writer -userPassword: Password1 -uid: RiveraG -givenName: Gianna -mail: RiveraG@841cbd92bca942e386baa349c14cda77.bitwarden.com -carLicense: J3NLV9 -departmentNumber: 1815 -employeeType: Normal -homePhone: +1 213 792-6215 -initials: G. R. -mobile: +1 213 339-7625 -pager: +1 213 274-5646 -roomNumber: 9138 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnnaMarie Kanies -sn: Kanies -description: This is AnnaMarie Kanies's description -facsimileTelephoneNumber: +1 415 719-4036 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 906-7505 -title: Junior Janitorial Vice President -userPassword: Password1 -uid: KaniesA -givenName: AnnaMarie -mail: KaniesA@9135ac12963a4f24b390086599e22c6a.bitwarden.com -carLicense: TEBE1G -departmentNumber: 2977 -employeeType: Employee -homePhone: +1 415 667-4044 -initials: A. K. -mobile: +1 415 290-9679 -pager: +1 415 741-2801 -roomNumber: 8320 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Natalya Heller,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natalya Heller -sn: Heller -description: This is Natalya Heller's description -facsimileTelephoneNumber: +1 408 244-9181 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 362-2084 -title: Chief Peons Pinhead -userPassword: Password1 -uid: HellerN -givenName: Natalya -mail: HellerN@aceb7777c6cc4e94927cd8d9ab7f9d71.bitwarden.com -carLicense: PM8RGH -departmentNumber: 9781 -employeeType: Employee -homePhone: +1 408 170-1966 -initials: N. H. -mobile: +1 408 281-5046 -pager: +1 408 676-2567 -roomNumber: 8891 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirstie Outhwaite -sn: Outhwaite -description: This is Kirstie Outhwaite's description -facsimileTelephoneNumber: +1 818 960-8356 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 818 131-3269 -title: Supreme Janitorial Artist -userPassword: Password1 -uid: OuthwaiK -givenName: Kirstie -mail: OuthwaiK@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com -carLicense: 1NV8QG -departmentNumber: 8222 -employeeType: Normal -homePhone: +1 818 645-5349 -initials: K. O. -mobile: +1 818 647-1633 -pager: +1 818 616-4641 -roomNumber: 9327 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atsushi Moriyama -sn: Moriyama -description: This is Atsushi Moriyama's description -facsimileTelephoneNumber: +1 408 633-2958 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 408 224-1196 -title: Master Administrative Janitor -userPassword: Password1 -uid: MoriyamA -givenName: Atsushi -mail: MoriyamA@a5ff234c382a4fef9f6d4e72344adb22.bitwarden.com -carLicense: NS4OBS -departmentNumber: 9187 -employeeType: Contract -homePhone: +1 408 305-2965 -initials: A. M. -mobile: +1 408 975-4991 -pager: +1 408 212-7485 -roomNumber: 8761 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernadina Ledu -sn: Ledu -description: This is Bernadina Ledu's description -facsimileTelephoneNumber: +1 510 921-1468 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 276-6332 -title: Master Janitorial Assistant -userPassword: Password1 -uid: LeduB -givenName: Bernadina -mail: LeduB@7969b0806fba4e3d88a5a3efd04eb548.bitwarden.com -carLicense: M2WGSS -departmentNumber: 5685 -employeeType: Contract -homePhone: +1 510 513-1430 -initials: B. L. -mobile: +1 510 612-5113 -pager: +1 510 887-1351 -roomNumber: 8029 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dyana Harsch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyana Harsch -sn: Harsch -description: This is Dyana Harsch's description -facsimileTelephoneNumber: +1 510 772-7167 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 191-9497 -title: Chief Management Mascot -userPassword: Password1 -uid: HarschD -givenName: Dyana -mail: HarschD@42343c98437b42798d5730c9e2f3e139.bitwarden.com -carLicense: WM8DK7 -departmentNumber: 3457 -employeeType: Contract -homePhone: +1 510 583-5683 -initials: D. H. -mobile: +1 510 387-2723 -pager: +1 510 475-5832 -roomNumber: 9863 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kazem Guenette,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazem Guenette -sn: Guenette -description: This is Kazem Guenette's description -facsimileTelephoneNumber: +1 510 871-7152 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 336-5672 -title: Junior Product Testing Czar -userPassword: Password1 -uid: GuenettK -givenName: Kazem -mail: GuenettK@c925a785cc914f7896a342038a540076.bitwarden.com -carLicense: BFWXWJ -departmentNumber: 8835 -employeeType: Normal -homePhone: +1 510 409-7648 -initials: K. G. -mobile: +1 510 731-8876 -pager: +1 510 678-2441 -roomNumber: 8935 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Allis McCartney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allis McCartney -sn: McCartney -description: This is Allis McCartney's description -facsimileTelephoneNumber: +1 510 827-6205 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 827-7061 -title: Junior Product Development Engineer -userPassword: Password1 -uid: McCartnA -givenName: Allis -mail: McCartnA@459e2f62db0c40d5b3c7b2d6945ef874.bitwarden.com -carLicense: 0R78JL -departmentNumber: 6488 -employeeType: Normal -homePhone: +1 510 103-9551 -initials: A. M. -mobile: +1 510 773-4972 -pager: +1 510 423-5819 -roomNumber: 9434 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Arlana Shemwell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlana Shemwell -sn: Shemwell -description: This is Arlana Shemwell's description -facsimileTelephoneNumber: +1 213 732-8151 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 542-8243 -title: Supreme Peons Janitor -userPassword: Password1 -uid: ShemwelA -givenName: Arlana -mail: ShemwelA@361f4dedfe9a4aada39bf693c8c1bc40.bitwarden.com -carLicense: 6JAXX9 -departmentNumber: 3474 -employeeType: Contract -homePhone: +1 213 656-6911 -initials: A. S. -mobile: +1 213 877-1727 -pager: +1 213 503-8691 -roomNumber: 9038 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Francisca Pollinzi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francisca Pollinzi -sn: Pollinzi -description: This is Francisca Pollinzi's description -facsimileTelephoneNumber: +1 206 947-2853 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 794-3846 -title: Master Peons Czar -userPassword: Password1 -uid: PollinzF -givenName: Francisca -mail: PollinzF@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com -carLicense: 9TVYH1 -departmentNumber: 5473 -employeeType: Contract -homePhone: +1 206 503-6811 -initials: F. P. -mobile: +1 206 897-5905 -pager: +1 206 518-4735 -roomNumber: 8974 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Radomir Neate,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Radomir Neate -sn: Neate -description: This is Radomir Neate's description -facsimileTelephoneNumber: +1 408 514-8264 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 408 691-7976 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: NeateR -givenName: Radomir -mail: NeateR@80d6647c06ea43a2a2ec98fb5ba9edb6.bitwarden.com -carLicense: B30O3C -departmentNumber: 9602 -employeeType: Normal -homePhone: +1 408 556-6133 -initials: R. N. -mobile: +1 408 787-8017 -pager: +1 408 566-5704 -roomNumber: 8507 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Earnest Wracher,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Earnest Wracher -sn: Wracher -description: This is Earnest Wracher's description -facsimileTelephoneNumber: +1 804 385-9812 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 470-9583 -title: Supreme Peons Architect -userPassword: Password1 -uid: WracherE -givenName: Earnest -mail: WracherE@1b2f79ecf49b44fe9c6b7bb74dd2d54b.bitwarden.com -carLicense: W6FBIN -departmentNumber: 6782 -employeeType: Employee -homePhone: +1 804 428-1076 -initials: E. W. -mobile: +1 804 796-4902 -pager: +1 804 679-7139 -roomNumber: 9311 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Aurie Hinkle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurie Hinkle -sn: Hinkle -description: This is Aurie Hinkle's description -facsimileTelephoneNumber: +1 510 973-4778 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 647-4731 -title: Junior Management Admin -userPassword: Password1 -uid: HinkleA -givenName: Aurie -mail: HinkleA@1f52489263294bdcb74bf08e15dc639b.bitwarden.com -carLicense: IIDQDL -departmentNumber: 4933 -employeeType: Employee -homePhone: +1 510 983-5310 -initials: A. H. -mobile: +1 510 303-3006 -pager: +1 510 609-8874 -roomNumber: 8774 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Durali Raynor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Durali Raynor -sn: Raynor -description: This is Durali Raynor's description -facsimileTelephoneNumber: +1 510 118-5145 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 941-1824 -title: Master Management Figurehead -userPassword: Password1 -uid: RaynorD -givenName: Durali -mail: RaynorD@f09e11e5beca4779a4a93445ceda8470.bitwarden.com -carLicense: JKHN3W -departmentNumber: 4872 -employeeType: Normal -homePhone: +1 510 719-1190 -initials: D. R. -mobile: +1 510 804-6662 -pager: +1 510 896-1648 -roomNumber: 8148 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Waverly Eisenhart -sn: Eisenhart -description: This is Waverly Eisenhart's description -facsimileTelephoneNumber: +1 415 399-4105 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 315-9172 -title: Associate Human Resources Warrior -userPassword: Password1 -uid: EisenhaW -givenName: Waverly -mail: EisenhaW@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com -carLicense: QFOK7O -departmentNumber: 6949 -employeeType: Contract -homePhone: +1 415 896-9026 -initials: W. E. -mobile: +1 415 525-7996 -pager: +1 415 544-5446 -roomNumber: 8251 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Isoft Parkash,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isoft Parkash -sn: Parkash -description: This is Isoft Parkash's description -facsimileTelephoneNumber: +1 408 634-8888 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 408 162-7192 -title: Master Peons Evangelist -userPassword: Password1 -uid: ParkashI -givenName: Isoft -mail: ParkashI@42be868e79934b2781b6098b8536a633.bitwarden.com -carLicense: 4E1968 -departmentNumber: 9634 -employeeType: Contract -homePhone: +1 408 759-8596 -initials: I. P. -mobile: +1 408 572-7874 -pager: +1 408 502-6668 -roomNumber: 9933 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Phillie Kneese,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phillie Kneese -sn: Kneese -description: This is Phillie Kneese's description -facsimileTelephoneNumber: +1 510 893-2619 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 185-8195 -title: Associate Peons Consultant -userPassword: Password1 -uid: KneeseP -givenName: Phillie -mail: KneeseP@80c352552a9f4c3e8fd783fb4b49aece.bitwarden.com -carLicense: 138EM8 -departmentNumber: 4064 -employeeType: Contract -homePhone: +1 510 188-6986 -initials: P. K. -mobile: +1 510 435-5535 -pager: +1 510 258-4056 -roomNumber: 9582 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vilhelmina Sapena -sn: Sapena -description: This is Vilhelmina Sapena's description -facsimileTelephoneNumber: +1 510 370-2892 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 586-7653 -title: Junior Payroll Writer -userPassword: Password1 -uid: SapenaV -givenName: Vilhelmina -mail: SapenaV@548e0585ebf342b985467eca55f4e5f8.bitwarden.com -carLicense: 7TCQ5P -departmentNumber: 8802 -employeeType: Normal -homePhone: +1 510 150-6563 -initials: V. S. -mobile: +1 510 273-5505 -pager: +1 510 632-8322 -roomNumber: 8721 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonida Letourneau -sn: Letourneau -description: This is Leonida Letourneau's description -facsimileTelephoneNumber: +1 206 297-4247 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 790-6263 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: LetournL -givenName: Leonida -mail: LetournL@c623094db4da4e6aad9474168db929fb.bitwarden.com -carLicense: 08JRI9 -departmentNumber: 2138 -employeeType: Contract -homePhone: +1 206 797-8417 -initials: L. L. -mobile: +1 206 629-6670 -pager: +1 206 312-4741 -roomNumber: 9637 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lucinda Cuellar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucinda Cuellar -sn: Cuellar -description: This is Lucinda Cuellar's description -facsimileTelephoneNumber: +1 213 704-9717 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 749-7067 -title: Master Peons Consultant -userPassword: Password1 -uid: CuellarL -givenName: Lucinda -mail: CuellarL@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com -carLicense: HSG0BA -departmentNumber: 2130 -employeeType: Normal -homePhone: +1 213 254-5708 -initials: L. C. -mobile: +1 213 211-6451 -pager: +1 213 747-1375 -roomNumber: 9084 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rozele Chahal,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozele Chahal -sn: Chahal -description: This is Rozele Chahal's description -facsimileTelephoneNumber: +1 415 377-3985 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 415 285-3343 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: ChahalR -givenName: Rozele -mail: ChahalR@af154d0412124681a7f0c1fe1b00a8ec.bitwarden.com -carLicense: 6O04KN -departmentNumber: 8624 -employeeType: Employee -homePhone: +1 415 981-1013 -initials: R. C. -mobile: +1 415 573-9015 -pager: +1 415 647-6097 -roomNumber: 9349 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marko Mgmt,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marko Mgmt -sn: Mgmt -description: This is Marko Mgmt's description -facsimileTelephoneNumber: +1 213 682-7034 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 356-2959 -title: Junior Product Development Admin -userPassword: Password1 -uid: MgmtM -givenName: Marko -mail: MgmtM@12d826ce1ce0413184a7ed1f22160fef.bitwarden.com -carLicense: E7NQBE -departmentNumber: 8445 -employeeType: Employee -homePhone: +1 213 457-8674 -initials: M. M. -mobile: +1 213 569-9059 -pager: +1 213 510-2661 -roomNumber: 8026 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Anissa Adcox,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anissa Adcox -sn: Adcox -description: This is Anissa Adcox's description -facsimileTelephoneNumber: +1 415 597-7048 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 185-6239 -title: Master Payroll Mascot -userPassword: Password1 -uid: AdcoxA -givenName: Anissa -mail: AdcoxA@b5f108bd2af841fc9950983c51799ea8.bitwarden.com -carLicense: VKXS9A -departmentNumber: 5922 -employeeType: Employee -homePhone: +1 415 992-2471 -initials: A. A. -mobile: +1 415 913-6902 -pager: +1 415 351-6124 -roomNumber: 9683 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cinnamon Szpilfogel -sn: Szpilfogel -description: This is Cinnamon Szpilfogel's description -facsimileTelephoneNumber: +1 510 434-1616 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 550-9782 -title: Supreme Janitorial Visionary -userPassword: Password1 -uid: SzpilfoC -givenName: Cinnamon -mail: SzpilfoC@6d4a907d1f0e46609843939862dfb577.bitwarden.com -carLicense: 3H4NCT -departmentNumber: 9577 -employeeType: Employee -homePhone: +1 510 628-5789 -initials: C. S. -mobile: +1 510 930-5954 -pager: +1 510 665-5363 -roomNumber: 9901 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selestina Bovenizer -sn: Bovenizer -description: This is Selestina Bovenizer's description -facsimileTelephoneNumber: +1 510 268-3316 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 196-2789 -title: Supreme Payroll Stooge -userPassword: Password1 -uid: BovenizS -givenName: Selestina -mail: BovenizS@2a059eb898534a808ef7c84caa852d0c.bitwarden.com -carLicense: 974KVJ -departmentNumber: 3637 -employeeType: Employee -homePhone: +1 510 992-8003 -initials: S. B. -mobile: +1 510 107-4349 -pager: +1 510 298-5552 -roomNumber: 9498 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hanh Glanfield,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanh Glanfield -sn: Glanfield -description: This is Hanh Glanfield's description -facsimileTelephoneNumber: +1 818 967-6374 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 200-9676 -title: Chief Management Assistant -userPassword: Password1 -uid: GlanfieH -givenName: Hanh -mail: GlanfieH@c70f5c4b622948cbb170ceb432dc60b9.bitwarden.com -carLicense: IGN6Q1 -departmentNumber: 4084 -employeeType: Contract -homePhone: +1 818 240-6174 -initials: H. G. -mobile: +1 818 401-1541 -pager: +1 818 565-8436 -roomNumber: 9308 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shailesh Bienek,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shailesh Bienek -sn: Bienek -description: This is Shailesh Bienek's description -facsimileTelephoneNumber: +1 206 385-4460 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 837-7227 -title: Master Management Pinhead -userPassword: Password1 -uid: BienekS -givenName: Shailesh -mail: BienekS@c763d0c8840c43c8b86db366006c5bab.bitwarden.com -carLicense: SY7SPD -departmentNumber: 6899 -employeeType: Normal -homePhone: +1 206 662-5813 -initials: S. B. -mobile: +1 206 274-2278 -pager: +1 206 905-3556 -roomNumber: 9276 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gerardo Bedlington,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerardo Bedlington -sn: Bedlington -description: This is Gerardo Bedlington's description -facsimileTelephoneNumber: +1 415 828-4772 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 508-1000 -title: Master Peons Developer -userPassword: Password1 -uid: BedlingG -givenName: Gerardo -mail: BedlingG@1f795536a65f4b09ab4f9926820522a8.bitwarden.com -carLicense: YEU0LI -departmentNumber: 3062 -employeeType: Contract -homePhone: +1 415 628-2631 -initials: G. B. -mobile: +1 415 213-4259 -pager: +1 415 434-9479 -roomNumber: 8270 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belicia MooreVigeant -sn: MooreVigeant -description: This is Belicia MooreVigeant's description -facsimileTelephoneNumber: +1 510 709-1406 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 805-4850 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: MooreViB -givenName: Belicia -mail: MooreViB@ceb6137ac4aa473792db4b7b088606ac.bitwarden.com -carLicense: V9OBMV -departmentNumber: 5966 -employeeType: Normal -homePhone: +1 510 822-7965 -initials: B. M. -mobile: +1 510 267-5726 -pager: +1 510 583-2737 -roomNumber: 8791 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Erle Kasprzak,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erle Kasprzak -sn: Kasprzak -description: This is Erle Kasprzak's description -facsimileTelephoneNumber: +1 804 998-8544 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 895-9433 -title: Chief Management Pinhead -userPassword: Password1 -uid: KasprzaE -givenName: Erle -mail: KasprzaE@e05752054bdf4aeabb75f365622f6480.bitwarden.com -carLicense: GBLR7E -departmentNumber: 5684 -employeeType: Contract -homePhone: +1 804 866-4087 -initials: E. K. -mobile: +1 804 716-5501 -pager: +1 804 676-7678 -roomNumber: 9548 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norikazu Mathieu -sn: Mathieu -description: This is Norikazu Mathieu's description -facsimileTelephoneNumber: +1 213 687-3091 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 157-3077 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: MathieuN -givenName: Norikazu -mail: MathieuN@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com -carLicense: Y23QHQ -departmentNumber: 2112 -employeeType: Employee -homePhone: +1 213 661-6366 -initials: N. M. -mobile: +1 213 971-5204 -pager: +1 213 507-6585 -roomNumber: 8600 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Knut Nilson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Knut Nilson -sn: Nilson -description: This is Knut Nilson's description -facsimileTelephoneNumber: +1 206 105-7185 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 879-8791 -title: Chief Administrative Stooge -userPassword: Password1 -uid: NilsonK -givenName: Knut -mail: NilsonK@bdc6007cc6e34b34a9dcf44589f8b6cd.bitwarden.com -carLicense: WUCCUB -departmentNumber: 4198 -employeeType: Normal -homePhone: +1 206 301-3550 -initials: K. N. -mobile: +1 206 337-5080 -pager: +1 206 653-8921 -roomNumber: 9243 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Laser Sandiford,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laser Sandiford -sn: Sandiford -description: This is Laser Sandiford's description -facsimileTelephoneNumber: +1 213 170-3892 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 131-6691 -title: Associate Payroll Visionary -userPassword: Password1 -uid: SandifoL -givenName: Laser -mail: SandifoL@25c2c1e49343484290a351a7909ac3a8.bitwarden.com -carLicense: YX6TIE -departmentNumber: 2546 -employeeType: Employee -homePhone: +1 213 330-8595 -initials: L. S. -mobile: +1 213 628-8006 -pager: +1 213 390-5556 -roomNumber: 8611 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deedee Gaiotti -sn: Gaiotti -description: This is Deedee Gaiotti's description -facsimileTelephoneNumber: +1 818 488-2486 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 306-4296 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: GaiottiD -givenName: Deedee -mail: GaiottiD@445a60ac98804054899e1164059fd95e.bitwarden.com -carLicense: DI4WJI -departmentNumber: 9411 -employeeType: Employee -homePhone: +1 818 696-9671 -initials: D. G. -mobile: +1 818 988-3525 -pager: +1 818 612-1660 -roomNumber: 8869 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulcea Rabipour -sn: Rabipour -description: This is Dulcea Rabipour's description -facsimileTelephoneNumber: +1 206 212-5695 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 725-8379 -title: Associate Administrative Grunt -userPassword: Password1 -uid: RabipouD -givenName: Dulcea -mail: RabipouD@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com -carLicense: O84Y2L -departmentNumber: 4182 -employeeType: Normal -homePhone: +1 206 237-4429 -initials: D. R. -mobile: +1 206 259-7158 -pager: +1 206 194-4468 -roomNumber: 8202 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Moon Bulanda,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moon Bulanda -sn: Bulanda -description: This is Moon Bulanda's description -facsimileTelephoneNumber: +1 804 218-8793 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 161-1925 -title: Supreme Product Development Sales Rep -userPassword: Password1 -uid: BulandaM -givenName: Moon -mail: BulandaM@1765994e2a5c4efcb4f3aabfae2cc880.bitwarden.com -carLicense: 5DT89P -departmentNumber: 7639 -employeeType: Normal -homePhone: +1 804 958-7049 -initials: M. B. -mobile: +1 804 511-8541 -pager: +1 804 328-3960 -roomNumber: 9573 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranea Brandsen -sn: Brandsen -description: This is Ranea Brandsen's description -facsimileTelephoneNumber: +1 213 277-4408 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 846-6043 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: BrandseR -givenName: Ranea -mail: BrandseR@003e771d29284236b967f25e9416ed07.bitwarden.com -carLicense: 019FKC -departmentNumber: 5730 -employeeType: Contract -homePhone: +1 213 115-7609 -initials: R. B. -mobile: +1 213 207-6065 -pager: +1 213 297-8690 -roomNumber: 9754 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Weiping Zeller,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weiping Zeller -sn: Zeller -description: This is Weiping Zeller's description -facsimileTelephoneNumber: +1 206 145-9658 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 707-5860 -title: Junior Payroll Stooge -userPassword: Password1 -uid: ZellerW -givenName: Weiping -mail: ZellerW@bc7abecae5134db19820cef4bc298003.bitwarden.com -carLicense: PEFHRG -departmentNumber: 8158 -employeeType: Normal -homePhone: +1 206 671-6678 -initials: W. Z. -mobile: +1 206 289-8834 -pager: +1 206 913-7294 -roomNumber: 8087 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lora Luetchford,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lora Luetchford -sn: Luetchford -description: This is Lora Luetchford's description -facsimileTelephoneNumber: +1 804 994-4891 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 909-4467 -title: Associate Management Writer -userPassword: Password1 -uid: LuetchfL -givenName: Lora -mail: LuetchfL@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com -carLicense: 6XS702 -departmentNumber: 6855 -employeeType: Normal -homePhone: +1 804 981-4392 -initials: L. L. -mobile: +1 804 405-1556 -pager: +1 804 889-3012 -roomNumber: 8353 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrle BenyaminSeeyar -sn: BenyaminSeeyar -description: This is Myrle BenyaminSeeyar's description -facsimileTelephoneNumber: +1 510 731-2980 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 875-7895 -title: Associate Product Development Artist -userPassword: Password1 -uid: BenyamiM -givenName: Myrle -mail: BenyamiM@5ed95073f0094f04af17c1ff4f2772c3.bitwarden.com -carLicense: PAG55W -departmentNumber: 2374 -employeeType: Employee -homePhone: +1 510 148-1949 -initials: M. B. -mobile: +1 510 308-7784 -pager: +1 510 814-7715 -roomNumber: 9044 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mareah Horning,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mareah Horning -sn: Horning -description: This is Mareah Horning's description -facsimileTelephoneNumber: +1 213 451-7140 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 213 838-5737 -title: Supreme Product Testing Engineer -userPassword: Password1 -uid: HorningM -givenName: Mareah -mail: HorningM@890d1310fd334cdc8c698f8a47f59b9b.bitwarden.com -carLicense: THXBCE -departmentNumber: 9949 -employeeType: Contract -homePhone: +1 213 379-3000 -initials: M. H. -mobile: +1 213 730-5009 -pager: +1 213 290-9874 -roomNumber: 9383 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kapsch Graver,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kapsch Graver -sn: Graver -description: This is Kapsch Graver's description -facsimileTelephoneNumber: +1 213 224-2182 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 788-2414 -title: Associate Administrative Fellow -userPassword: Password1 -uid: GraverK -givenName: Kapsch -mail: GraverK@acf713e9aadb4752bc5f37c908d5ddf7.bitwarden.com -carLicense: CWH75C -departmentNumber: 4817 -employeeType: Contract -homePhone: +1 213 331-5897 -initials: K. G. -mobile: +1 213 789-5788 -pager: +1 213 225-8258 -roomNumber: 8607 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=HoiKin Denley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HoiKin Denley -sn: Denley -description: This is HoiKin Denley's description -facsimileTelephoneNumber: +1 408 882-6349 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 205-2558 -title: Master Management Czar -userPassword: Password1 -uid: DenleyH -givenName: HoiKin -mail: DenleyH@8f4e601fed874b8fa44bcb8ac4c7bc3d.bitwarden.com -carLicense: 2HXTT9 -departmentNumber: 7098 -employeeType: Employee -homePhone: +1 408 633-4418 -initials: H. D. -mobile: +1 408 146-4407 -pager: +1 408 644-6039 -roomNumber: 9929 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Huong Quinlan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huong Quinlan -sn: Quinlan -description: This is Huong Quinlan's description -facsimileTelephoneNumber: +1 415 961-7235 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 156-7933 -title: Supreme Management Director -userPassword: Password1 -uid: QuinlanH -givenName: Huong -mail: QuinlanH@dcbbbc8020794d6691fdae775364846a.bitwarden.com -carLicense: 78NPUP -departmentNumber: 1594 -employeeType: Normal -homePhone: +1 415 843-3459 -initials: H. Q. -mobile: +1 415 747-4723 -pager: +1 415 319-6809 -roomNumber: 9326 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vahe Ruffolo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vahe Ruffolo -sn: Ruffolo -description: This is Vahe Ruffolo's description -facsimileTelephoneNumber: +1 213 638-2719 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 972-6296 -title: Supreme Peons Director -userPassword: Password1 -uid: RuffoloV -givenName: Vahe -mail: RuffoloV@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com -carLicense: CP8IW3 -departmentNumber: 3613 -employeeType: Contract -homePhone: +1 213 248-4242 -initials: V. R. -mobile: +1 213 891-8826 -pager: +1 213 385-4242 -roomNumber: 9339 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Darina Duguay,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darina Duguay -sn: Duguay -description: This is Darina Duguay's description -facsimileTelephoneNumber: +1 818 536-1739 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 491-8092 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: DuguayD -givenName: Darina -mail: DuguayD@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com -carLicense: Q5RIG1 -departmentNumber: 5110 -employeeType: Contract -homePhone: +1 818 311-1195 -initials: D. D. -mobile: +1 818 869-2905 -pager: +1 818 339-8488 -roomNumber: 8248 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shayna Hollander,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shayna Hollander -sn: Hollander -description: This is Shayna Hollander's description -facsimileTelephoneNumber: +1 408 354-5366 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 617-6473 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: HollandS -givenName: Shayna -mail: HollandS@144f4bf7b2a54773b3cf6bc1af396542.bitwarden.com -carLicense: SCN4M9 -departmentNumber: 1544 -employeeType: Normal -homePhone: +1 408 253-2173 -initials: S. H. -mobile: +1 408 936-4744 -pager: +1 408 307-9139 -roomNumber: 8942 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=SikYin Gosset,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SikYin Gosset -sn: Gosset -description: This is SikYin Gosset's description -facsimileTelephoneNumber: +1 804 141-8720 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 662-3260 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: GossetS -givenName: SikYin -mail: GossetS@2cc035c985c24adeb49999458b6eeb66.bitwarden.com -carLicense: 20P48O -departmentNumber: 7034 -employeeType: Normal -homePhone: +1 804 609-5590 -initials: S. G. -mobile: +1 804 173-8201 -pager: +1 804 179-1428 -roomNumber: 8604 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sapphire Dassie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sapphire Dassie -sn: Dassie -description: This is Sapphire Dassie's description -facsimileTelephoneNumber: +1 415 669-3032 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 814-7723 -title: Chief Payroll Dictator -userPassword: Password1 -uid: DassieS -givenName: Sapphire -mail: DassieS@bc4791aff5914d0e95bbd2106b1c2de5.bitwarden.com -carLicense: 2G9CVV -departmentNumber: 9368 -employeeType: Normal -homePhone: +1 415 986-4678 -initials: S. D. -mobile: +1 415 875-2541 -pager: +1 415 378-3066 -roomNumber: 8910 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Baha Brouillette,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baha Brouillette -sn: Brouillette -description: This is Baha Brouillette's description -facsimileTelephoneNumber: +1 206 156-9313 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 246-9761 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: BrouillB -givenName: Baha -mail: BrouillB@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com -carLicense: RSN31W -departmentNumber: 7371 -employeeType: Employee -homePhone: +1 206 470-8931 -initials: B. B. -mobile: +1 206 631-4419 -pager: +1 206 685-4095 -roomNumber: 9954 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Isabella Horning,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isabella Horning -sn: Horning -description: This is Isabella Horning's description -facsimileTelephoneNumber: +1 415 244-6378 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 163-3666 -title: Supreme Management Vice President -userPassword: Password1 -uid: HorningI -givenName: Isabella -mail: HorningI@aae225b6543e4edebfd4e8a70cd66e37.bitwarden.com -carLicense: TB9XRB -departmentNumber: 4950 -employeeType: Contract -homePhone: +1 415 458-3075 -initials: I. H. -mobile: +1 415 940-9687 -pager: +1 415 615-3371 -roomNumber: 9621 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Avtar Nyce,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avtar Nyce -sn: Nyce -description: This is Avtar Nyce's description -facsimileTelephoneNumber: +1 408 903-5212 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 418-8756 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: NyceA -givenName: Avtar -mail: NyceA@8f698818b35041d38a84f1c71ca57e14.bitwarden.com -carLicense: 10GBMY -departmentNumber: 3560 -employeeType: Normal -homePhone: +1 408 110-7662 -initials: A. N. -mobile: +1 408 432-2228 -pager: +1 408 233-3849 -roomNumber: 9058 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Horacio McGuire,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Horacio McGuire -sn: McGuire -description: This is Horacio McGuire's description -facsimileTelephoneNumber: +1 408 576-2756 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 536-9292 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: McGuireH -givenName: Horacio -mail: McGuireH@cbf5d5b18dbd41e6bb03156240fa65b9.bitwarden.com -carLicense: 63A244 -departmentNumber: 9927 -employeeType: Normal -homePhone: +1 408 364-9855 -initials: H. M. -mobile: +1 408 510-7572 -pager: +1 408 785-3345 -roomNumber: 8812 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Huyen Guatto,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huyen Guatto -sn: Guatto -description: This is Huyen Guatto's description -facsimileTelephoneNumber: +1 213 607-8346 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 567-4712 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: GuattoH -givenName: Huyen -mail: GuattoH@43965c00f0db4ca198510569e172ade1.bitwarden.com -carLicense: FELEB0 -departmentNumber: 7176 -employeeType: Contract -homePhone: +1 213 590-9408 -initials: H. G. -mobile: +1 213 972-3454 -pager: +1 213 113-3061 -roomNumber: 9167 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacqueline Wyndham -sn: Wyndham -description: This is Jacqueline Wyndham's description -facsimileTelephoneNumber: +1 213 958-4229 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 698-3790 -title: Associate Product Testing Manager -userPassword: Password1 -uid: WyndhamJ -givenName: Jacqueline -mail: WyndhamJ@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com -carLicense: YXNYRY -departmentNumber: 3632 -employeeType: Contract -homePhone: +1 213 592-9571 -initials: J. W. -mobile: +1 213 395-8464 -pager: +1 213 603-3120 -roomNumber: 9593 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rustu Thill,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rustu Thill -sn: Thill -description: This is Rustu Thill's description -facsimileTelephoneNumber: +1 206 984-5882 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 622-7136 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: ThillR -givenName: Rustu -mail: ThillR@961bbb60e3cd4dc49f27245b4c499ab8.bitwarden.com -carLicense: YI4KPU -departmentNumber: 6841 -employeeType: Employee -homePhone: +1 206 546-5711 -initials: R. T. -mobile: +1 206 832-2830 -pager: +1 206 163-2909 -roomNumber: 9788 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fayre Childers,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fayre Childers -sn: Childers -description: This is Fayre Childers's description -facsimileTelephoneNumber: +1 415 945-9720 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 596-7564 -title: Associate Administrative Engineer -userPassword: Password1 -uid: ChilderF -givenName: Fayre -mail: ChilderF@5e4d473173474c608ac03e0447167cc7.bitwarden.com -carLicense: 8ELYA8 -departmentNumber: 1747 -employeeType: Contract -homePhone: +1 415 500-3240 -initials: F. C. -mobile: +1 415 147-1737 -pager: +1 415 136-2597 -roomNumber: 8476 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kambhampati Nunez -sn: Nunez -description: This is Kambhampati Nunez's description -facsimileTelephoneNumber: +1 206 159-2624 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 690-2920 -title: Associate Payroll Manager -userPassword: Password1 -uid: NunezK -givenName: Kambhampati -mail: NunezK@c708b12087394a00aad69467e8d0da12.bitwarden.com -carLicense: F8KN2W -departmentNumber: 7584 -employeeType: Normal -homePhone: +1 206 447-7097 -initials: K. N. -mobile: +1 206 100-2419 -pager: +1 206 266-7394 -roomNumber: 9746 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sabrina Lenir,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabrina Lenir -sn: Lenir -description: This is Sabrina Lenir's description -facsimileTelephoneNumber: +1 415 701-5838 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 225-4356 -title: Master Administrative Stooge -userPassword: Password1 -uid: LenirS -givenName: Sabrina -mail: LenirS@1ce821f8b66c496fa362507452a26491.bitwarden.com -carLicense: IINUL9 -departmentNumber: 8608 -employeeType: Contract -homePhone: +1 415 808-7883 -initials: S. L. -mobile: +1 415 209-4665 -pager: +1 415 211-2066 -roomNumber: 8400 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gale Goggin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gale Goggin -sn: Goggin -description: This is Gale Goggin's description -facsimileTelephoneNumber: +1 408 127-9763 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 635-2218 -title: Associate Management Pinhead -userPassword: Password1 -uid: GogginG -givenName: Gale -mail: GogginG@b1def85879ca4d1390e9e6b1d5b583ee.bitwarden.com -carLicense: B8M5X0 -departmentNumber: 1937 -employeeType: Employee -homePhone: +1 408 260-1135 -initials: G. G. -mobile: +1 408 445-5772 -pager: +1 408 969-6320 -roomNumber: 8711 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Louis Volker,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Louis Volker -sn: Volker -description: This is Louis Volker's description -facsimileTelephoneNumber: +1 206 813-9113 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 206 799-6736 -title: Supreme Payroll Admin -userPassword: Password1 -uid: VolkerL -givenName: Louis -mail: VolkerL@0a49f322d17b42a58985fe2e05d0dafb.bitwarden.com -carLicense: RI6SLW -departmentNumber: 5491 -employeeType: Employee -homePhone: +1 206 911-1281 -initials: L. V. -mobile: +1 206 247-9002 -pager: +1 206 326-9329 -roomNumber: 8052 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Myrah Roussier,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrah Roussier -sn: Roussier -description: This is Myrah Roussier's description -facsimileTelephoneNumber: +1 804 708-3933 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 578-1573 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: RoussieM -givenName: Myrah -mail: RoussieM@7df05765abd04b25b8a7ef7280ad3437.bitwarden.com -carLicense: AY53I2 -departmentNumber: 2555 -employeeType: Contract -homePhone: +1 804 947-9591 -initials: M. R. -mobile: +1 804 501-5082 -pager: +1 804 611-8446 -roomNumber: 9653 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=LLoyd McKeegan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LLoyd McKeegan -sn: McKeegan -description: This is LLoyd McKeegan's description -facsimileTelephoneNumber: +1 213 337-1568 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 564-5753 -title: Master Peons Grunt -userPassword: Password1 -uid: McKeegaL -givenName: LLoyd -mail: McKeegaL@bc2aa1694dbf4e7aa2d27b8cb8f061a2.bitwarden.com -carLicense: DTJF8R -departmentNumber: 7788 -employeeType: Normal -homePhone: +1 213 819-7329 -initials: L. M. -mobile: +1 213 465-6824 -pager: +1 213 156-8938 -roomNumber: 8290 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Metrics Mitrani -sn: Mitrani -description: This is Metrics Mitrani's description -facsimileTelephoneNumber: +1 415 784-6007 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 415 722-5562 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: MitraniM -givenName: Metrics -mail: MitraniM@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com -carLicense: MNY7K0 -departmentNumber: 9778 -employeeType: Contract -homePhone: +1 415 569-9210 -initials: M. M. -mobile: +1 415 780-6984 -pager: +1 415 990-1671 -roomNumber: 9830 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Annadiane Ctas,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annadiane Ctas -sn: Ctas -description: This is Annadiane Ctas's description -facsimileTelephoneNumber: +1 510 486-2637 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 950-3369 -title: Associate Administrative Assistant -userPassword: Password1 -uid: CtasA -givenName: Annadiane -mail: CtasA@ca6b003973ef4e36908da7bb8259e3c2.bitwarden.com -carLicense: PRBHK7 -departmentNumber: 7846 -employeeType: Contract -homePhone: +1 510 678-1837 -initials: A. C. -mobile: +1 510 368-7238 -pager: +1 510 670-7161 -roomNumber: 8493 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Leyton Rolls,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leyton Rolls -sn: Rolls -description: This is Leyton Rolls's description -facsimileTelephoneNumber: +1 415 307-9255 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 243-4682 -title: Supreme Human Resources Czar -userPassword: Password1 -uid: RollsL -givenName: Leyton -mail: RollsL@dffefc880028465f8135d61fcd84d153.bitwarden.com -carLicense: IRN5LS -departmentNumber: 5714 -employeeType: Normal -homePhone: +1 415 277-8731 -initials: L. R. -mobile: +1 415 267-3960 -pager: +1 415 607-9167 -roomNumber: 9686 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gaal Ragan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaal Ragan -sn: Ragan -description: This is Gaal Ragan's description -facsimileTelephoneNumber: +1 213 204-7281 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 198-1838 -title: Junior Janitorial Mascot -userPassword: Password1 -uid: RaganG -givenName: Gaal -mail: RaganG@afde3113416043d98395556c73711549.bitwarden.com -carLicense: KLB9PB -departmentNumber: 3950 -employeeType: Normal -homePhone: +1 213 260-3389 -initials: G. R. -mobile: +1 213 258-7751 -pager: +1 213 470-1133 -roomNumber: 8806 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hermine Stults,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermine Stults -sn: Stults -description: This is Hermine Stults's description -facsimileTelephoneNumber: +1 408 683-3720 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 845-1766 -title: Chief Janitorial Stooge -userPassword: Password1 -uid: StultsH -givenName: Hermine -mail: StultsH@30572bdd074a4e5a8e950b88bc610381.bitwarden.com -carLicense: 8PKSL2 -departmentNumber: 9568 -employeeType: Normal -homePhone: +1 408 871-7298 -initials: H. S. -mobile: +1 408 517-1328 -pager: +1 408 871-3451 -roomNumber: 9602 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Klarika MacLean,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klarika MacLean -sn: MacLean -description: This is Klarika MacLean's description -facsimileTelephoneNumber: +1 804 332-9034 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 860-6510 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: MacLeanK -givenName: Klarika -mail: MacLeanK@1dd141ee94514c5aa52c318bb9c43eb0.bitwarden.com -carLicense: GTVDMF -departmentNumber: 5667 -employeeType: Employee -homePhone: +1 804 753-1135 -initials: K. M. -mobile: +1 804 216-8451 -pager: +1 804 479-2562 -roomNumber: 8491 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Reginald Smit,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reginald Smit -sn: Smit -description: This is Reginald Smit's description -facsimileTelephoneNumber: +1 804 278-7156 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 929-6991 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: SmitR -givenName: Reginald -mail: SmitR@e17de5e4d835410b9b0709774bb28bb0.bitwarden.com -carLicense: FVITGR -departmentNumber: 3827 -employeeType: Contract -homePhone: +1 804 226-9481 -initials: R. S. -mobile: +1 804 251-7951 -pager: +1 804 661-8268 -roomNumber: 8689 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cassi McMahon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassi McMahon -sn: McMahon -description: This is Cassi McMahon's description -facsimileTelephoneNumber: +1 415 823-8541 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 100-8321 -title: Master Product Development Developer -userPassword: Password1 -uid: McMahonC -givenName: Cassi -mail: McMahonC@d849f4848257434e882a48856ef2b70f.bitwarden.com -carLicense: NDFPAJ -departmentNumber: 9976 -employeeType: Employee -homePhone: +1 415 272-2142 -initials: C. M. -mobile: +1 415 805-9339 -pager: +1 415 932-6206 -roomNumber: 8963 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Myranda Javed,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myranda Javed -sn: Javed -description: This is Myranda Javed's description -facsimileTelephoneNumber: +1 415 392-3351 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 253-5031 -title: Associate Management Manager -userPassword: Password1 -uid: JavedM -givenName: Myranda -mail: JavedM@b1c5384b9a3b4f19b03e31db659c5d3c.bitwarden.com -carLicense: 3VUS66 -departmentNumber: 8027 -employeeType: Employee -homePhone: +1 415 802-3807 -initials: M. J. -mobile: +1 415 934-9261 -pager: +1 415 554-7442 -roomNumber: 9427 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cherye Bukta,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherye Bukta -sn: Bukta -description: This is Cherye Bukta's description -facsimileTelephoneNumber: +1 804 828-4891 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 558-7885 -title: Junior Product Development Madonna -userPassword: Password1 -uid: BuktaC -givenName: Cherye -mail: BuktaC@becb244da0554983b71d06f587be1dbc.bitwarden.com -carLicense: WVSDHO -departmentNumber: 6865 -employeeType: Normal -homePhone: +1 804 934-6874 -initials: C. B. -mobile: +1 804 664-1635 -pager: +1 804 549-7828 -roomNumber: 9420 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carlynne Roob,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlynne Roob -sn: Roob -description: This is Carlynne Roob's description -facsimileTelephoneNumber: +1 818 823-8367 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 885-6730 -title: Chief Administrative Engineer -userPassword: Password1 -uid: RoobC -givenName: Carlynne -mail: RoobC@e13deb12f887416c8e5609d11ba2b292.bitwarden.com -carLicense: GABE13 -departmentNumber: 5377 -employeeType: Contract -homePhone: +1 818 643-4607 -initials: C. R. -mobile: +1 818 499-8981 -pager: +1 818 274-6337 -roomNumber: 8812 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wai Winters,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wai Winters -sn: Winters -description: This is Wai Winters's description -facsimileTelephoneNumber: +1 415 897-8921 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 579-1389 -title: Junior Product Testing Writer -userPassword: Password1 -uid: WintersW -givenName: Wai -mail: WintersW@b591b4d3b7bb4cf6a835d6d13daa1857.bitwarden.com -carLicense: JT2LQ6 -departmentNumber: 5195 -employeeType: Employee -homePhone: +1 415 413-2207 -initials: W. W. -mobile: +1 415 206-1013 -pager: +1 415 214-2459 -roomNumber: 9454 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lester Koster,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lester Koster -sn: Koster -description: This is Lester Koster's description -facsimileTelephoneNumber: +1 510 554-3260 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 716-3499 -title: Master Janitorial Architect -userPassword: Password1 -uid: KosterL -givenName: Lester -mail: KosterL@0aee22428274445fb9c2a16b33d788f7.bitwarden.com -carLicense: PNP9IM -departmentNumber: 5396 -employeeType: Employee -homePhone: +1 510 883-4233 -initials: L. K. -mobile: +1 510 680-5337 -pager: +1 510 344-6278 -roomNumber: 8349 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belen Frangoulis -sn: Frangoulis -description: This is Belen Frangoulis's description -facsimileTelephoneNumber: +1 213 847-5866 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 278-6603 -title: Master Human Resources Czar -userPassword: Password1 -uid: FrangouB -givenName: Belen -mail: FrangouB@6972a8e94cbc49738fdac450297132bb.bitwarden.com -carLicense: 4WNUVJ -departmentNumber: 8168 -employeeType: Normal -homePhone: +1 213 419-3144 -initials: B. F. -mobile: +1 213 783-8329 -pager: +1 213 127-7672 -roomNumber: 9133 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alev Llaguno,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alev Llaguno -sn: Llaguno -description: This is Alev Llaguno's description -facsimileTelephoneNumber: +1 408 358-5319 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 190-5481 -title: Supreme Administrative Stooge -userPassword: Password1 -uid: LlagunoA -givenName: Alev -mail: LlagunoA@04bb376282154efc832b529dc3f80793.bitwarden.com -carLicense: YS14ML -departmentNumber: 1432 -employeeType: Contract -homePhone: +1 408 896-7735 -initials: A. L. -mobile: +1 408 748-9200 -pager: +1 408 422-8140 -roomNumber: 8400 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jud Fairman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jud Fairman -sn: Fairman -description: This is Jud Fairman's description -facsimileTelephoneNumber: +1 206 789-9551 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 113-4267 -title: Junior Administrative President -userPassword: Password1 -uid: FairmanJ -givenName: Jud -mail: FairmanJ@f7248b71ac0e455091682e51df845f5b.bitwarden.com -carLicense: CCNI7X -departmentNumber: 7595 -employeeType: Contract -homePhone: +1 206 834-5856 -initials: J. F. -mobile: +1 206 432-3108 -pager: +1 206 630-8259 -roomNumber: 8554 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Toyanne Fishencord,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toyanne Fishencord -sn: Fishencord -description: This is Toyanne Fishencord's description -facsimileTelephoneNumber: +1 415 272-1217 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 567-8524 -title: Chief Management President -userPassword: Password1 -uid: FishencT -givenName: Toyanne -mail: FishencT@3e451f2ddbdc401ba9f442a5e6dfbe64.bitwarden.com -carLicense: HBWVAX -departmentNumber: 2352 -employeeType: Contract -homePhone: +1 415 624-2349 -initials: T. F. -mobile: +1 415 965-4939 -pager: +1 415 799-4195 -roomNumber: 8965 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Clarinda Vele,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarinda Vele -sn: Vele -description: This is Clarinda Vele's description -facsimileTelephoneNumber: +1 510 727-6266 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 911-3674 -title: Master Human Resources Evangelist -userPassword: Password1 -uid: VeleC -givenName: Clarinda -mail: VeleC@41360e293f904ea28fdec059900338d4.bitwarden.com -carLicense: 6L8LAQ -departmentNumber: 6900 -employeeType: Employee -homePhone: +1 510 941-1003 -initials: C. V. -mobile: +1 510 825-1773 -pager: +1 510 855-9414 -roomNumber: 9667 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Blondie Moghis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blondie Moghis -sn: Moghis -description: This is Blondie Moghis's description -facsimileTelephoneNumber: +1 804 614-1253 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 527-2599 -title: Junior Janitorial Admin -userPassword: Password1 -uid: MoghisB -givenName: Blondie -mail: MoghisB@b3c93053c0224253988d5c3b976abcae.bitwarden.com -carLicense: H8WAKM -departmentNumber: 3927 -employeeType: Employee -homePhone: +1 804 715-5223 -initials: B. M. -mobile: +1 804 714-8494 -pager: +1 804 146-6333 -roomNumber: 8333 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwenny Bradd -sn: Bradd -description: This is Gwenny Bradd's description -facsimileTelephoneNumber: +1 415 495-5918 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 104-5292 -title: Associate Product Testing Admin -userPassword: Password1 -uid: BraddG -givenName: Gwenny -mail: BraddG@4fcafc5d237d4e89ae70144b97fd81b9.bitwarden.com -carLicense: JCF642 -departmentNumber: 4681 -employeeType: Contract -homePhone: +1 415 143-8358 -initials: G. B. -mobile: +1 415 575-6452 -pager: +1 415 912-8497 -roomNumber: 9459 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazuhiko Desorbay -sn: Desorbay -description: This is Kazuhiko Desorbay's description -facsimileTelephoneNumber: +1 510 669-1248 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 955-1108 -title: Supreme Administrative Consultant -userPassword: Password1 -uid: DesorbaK -givenName: Kazuhiko -mail: DesorbaK@b0b96975e46b40a097a0034294bf5528.bitwarden.com -carLicense: 2F1F9E -departmentNumber: 5344 -employeeType: Contract -homePhone: +1 510 390-5374 -initials: K. D. -mobile: +1 510 248-6069 -pager: +1 510 396-5888 -roomNumber: 8541 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Noraly Mackzum,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noraly Mackzum -sn: Mackzum -description: This is Noraly Mackzum's description -facsimileTelephoneNumber: +1 804 225-3837 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 416-6768 -title: Master Peons Assistant -userPassword: Password1 -uid: MackzumN -givenName: Noraly -mail: MackzumN@9528dc6cbe3247b1b273b1646f94d087.bitwarden.com -carLicense: Q9J3RG -departmentNumber: 8409 -employeeType: Normal -homePhone: +1 804 460-9122 -initials: N. M. -mobile: +1 804 469-9296 -pager: +1 804 699-4552 -roomNumber: 9151 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Len Grzegorek,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Len Grzegorek -sn: Grzegorek -description: This is Len Grzegorek's description -facsimileTelephoneNumber: +1 206 840-9137 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 584-4640 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: GrzegorL -givenName: Len -mail: GrzegorL@6816926065fd449b998aed904ad7f381.bitwarden.com -carLicense: 7SNRAH -departmentNumber: 4018 -employeeType: Normal -homePhone: +1 206 634-7108 -initials: L. G. -mobile: +1 206 704-4298 -pager: +1 206 326-8809 -roomNumber: 8664 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ria NetworkOps,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ria NetworkOps -sn: NetworkOps -description: This is Ria NetworkOps's description -facsimileTelephoneNumber: +1 206 778-5250 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 206 140-9414 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: NetworkR -givenName: Ria -mail: NetworkR@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com -carLicense: AHF27G -departmentNumber: 7798 -employeeType: Employee -homePhone: +1 206 471-6982 -initials: R. N. -mobile: +1 206 823-4933 -pager: +1 206 551-4335 -roomNumber: 9683 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sunny Forslund,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sunny Forslund -sn: Forslund -description: This is Sunny Forslund's description -facsimileTelephoneNumber: +1 415 908-4072 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 355-5814 -title: Supreme Management Madonna -userPassword: Password1 -uid: ForslunS -givenName: Sunny -mail: ForslunS@917b843118c147a1b774df99881edab2.bitwarden.com -carLicense: 3WUP09 -departmentNumber: 4721 -employeeType: Normal -homePhone: +1 415 810-6725 -initials: S. F. -mobile: +1 415 231-1576 -pager: +1 415 483-6890 -roomNumber: 9300 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fanchette Veals,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fanchette Veals -sn: Veals -description: This is Fanchette Veals's description -facsimileTelephoneNumber: +1 213 447-8588 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 741-8375 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: VealsF -givenName: Fanchette -mail: VealsF@99883d06333b411b8735be1bd03ccb98.bitwarden.com -carLicense: G5AFTQ -departmentNumber: 4214 -employeeType: Employee -homePhone: +1 213 995-9668 -initials: F. V. -mobile: +1 213 402-3150 -pager: +1 213 198-7051 -roomNumber: 8713 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bobbee Combee,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobbee Combee -sn: Combee -description: This is Bobbee Combee's description -facsimileTelephoneNumber: +1 818 530-4778 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 823-2969 -title: Master Human Resources Mascot -userPassword: Password1 -uid: CombeeB -givenName: Bobbee -mail: CombeeB@53b43fb5d4e34daa86eaa9d6dd2bd917.bitwarden.com -carLicense: JOTQIA -departmentNumber: 1459 -employeeType: Employee -homePhone: +1 818 291-9410 -initials: B. C. -mobile: +1 818 686-1823 -pager: +1 818 394-4861 -roomNumber: 9479 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bennett Attanasio,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bennett Attanasio -sn: Attanasio -description: This is Bennett Attanasio's description -facsimileTelephoneNumber: +1 510 334-3631 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 333-9969 -title: Associate Management Czar -userPassword: Password1 -uid: AttanasB -givenName: Bennett -mail: AttanasB@50a799bc8ca7431293d7f35051a4405f.bitwarden.com -carLicense: 0QDJJS -departmentNumber: 5686 -employeeType: Contract -homePhone: +1 510 616-6285 -initials: B. A. -mobile: +1 510 495-9245 -pager: +1 510 841-1036 -roomNumber: 8198 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zongyi Stults,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zongyi Stults -sn: Stults -description: This is Zongyi Stults's description -facsimileTelephoneNumber: +1 408 218-2950 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 150-5716 -title: Master Payroll Figurehead -userPassword: Password1 -uid: StultsZ -givenName: Zongyi -mail: StultsZ@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com -carLicense: 9H6POE -departmentNumber: 1887 -employeeType: Normal -homePhone: +1 408 217-1267 -initials: Z. S. -mobile: +1 408 432-7902 -pager: +1 408 685-9580 -roomNumber: 9584 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winifred Lowrie -sn: Lowrie -description: This is Winifred Lowrie's description -facsimileTelephoneNumber: +1 206 626-1572 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 492-7550 -title: Chief Product Testing Developer -userPassword: Password1 -uid: LowrieW -givenName: Winifred -mail: LowrieW@39082c800eef41148693892808865789.bitwarden.com -carLicense: G07WGB -departmentNumber: 8168 -employeeType: Normal -homePhone: +1 206 647-4866 -initials: W. L. -mobile: +1 206 525-7767 -pager: +1 206 700-7138 -roomNumber: 8831 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rob Goupil,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rob Goupil -sn: Goupil -description: This is Rob Goupil's description -facsimileTelephoneNumber: +1 818 971-6005 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 255-4836 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: GoupilR -givenName: Rob -mail: GoupilR@ae52dcada2674f68a76a2c619d85f261.bitwarden.com -carLicense: V5IUR9 -departmentNumber: 7862 -employeeType: Normal -homePhone: +1 818 912-9596 -initials: R. G. -mobile: +1 818 124-6751 -pager: +1 818 493-3182 -roomNumber: 9115 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gwyneth Neander,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwyneth Neander -sn: Neander -description: This is Gwyneth Neander's description -facsimileTelephoneNumber: +1 408 456-7229 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 505-6164 -title: Supreme Peons Assistant -userPassword: Password1 -uid: NeanderG -givenName: Gwyneth -mail: NeanderG@bc6e166bef51424bb6b645cc04c90be7.bitwarden.com -carLicense: 5MVBCH -departmentNumber: 4452 -employeeType: Employee -homePhone: +1 408 854-2003 -initials: G. N. -mobile: +1 408 162-2685 -pager: +1 408 624-5797 -roomNumber: 8774 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lillien Grohovsky,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lillien Grohovsky -sn: Grohovsky -description: This is Lillien Grohovsky's description -facsimileTelephoneNumber: +1 206 536-4440 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 305-8138 -title: Master Management Engineer -userPassword: Password1 -uid: GrohovsL -givenName: Lillien -mail: GrohovsL@b9106f7d57f74a7b92af146111acb57d.bitwarden.com -carLicense: 6DL4O9 -departmentNumber: 5187 -employeeType: Contract -homePhone: +1 206 648-9539 -initials: L. G. -mobile: +1 206 724-4905 -pager: +1 206 547-5236 -roomNumber: 8105 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sianna Machika,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sianna Machika -sn: Machika -description: This is Sianna Machika's description -facsimileTelephoneNumber: +1 206 547-4952 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 661-6670 -title: Junior Administrative Architect -userPassword: Password1 -uid: MachikaS -givenName: Sianna -mail: MachikaS@157d1c5a87ae4332b42f31961dd71e5c.bitwarden.com -carLicense: AKI4J8 -departmentNumber: 8939 -employeeType: Contract -homePhone: +1 206 533-3762 -initials: S. M. -mobile: +1 206 254-8193 -pager: +1 206 934-8988 -roomNumber: 8404 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pippa Ponthieux -sn: Ponthieux -description: This is Pippa Ponthieux's description -facsimileTelephoneNumber: +1 206 516-2556 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 206 670-8080 -title: Chief Human Resources Fellow -userPassword: Password1 -uid: PonthieP -givenName: Pippa -mail: PonthieP@0834bcacddfd4229b6702a62e2551569.bitwarden.com -carLicense: N3AY2G -departmentNumber: 8289 -employeeType: Employee -homePhone: +1 206 623-4734 -initials: P. P. -mobile: +1 206 468-9672 -pager: +1 206 315-5728 -roomNumber: 9799 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Blakeley Lagace,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blakeley Lagace -sn: Lagace -description: This is Blakeley Lagace's description -facsimileTelephoneNumber: +1 408 204-9101 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 608-6105 -title: Junior Payroll Mascot -userPassword: Password1 -uid: LagaceB -givenName: Blakeley -mail: LagaceB@f47429db42894240a22768a277a6aedc.bitwarden.com -carLicense: 7CLPYW -departmentNumber: 1944 -employeeType: Employee -homePhone: +1 408 776-1398 -initials: B. L. -mobile: +1 408 341-6386 -pager: +1 408 948-1430 -roomNumber: 8025 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Thuong Rains,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thuong Rains -sn: Rains -description: This is Thuong Rains's description -facsimileTelephoneNumber: +1 213 385-6144 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 200-4223 -title: Junior Human Resources Stooge -userPassword: Password1 -uid: RainsT -givenName: Thuong -mail: RainsT@9db5b1e1eb1c40cba168aadfe8f96acc.bitwarden.com -carLicense: WRYMIU -departmentNumber: 4769 -employeeType: Employee -homePhone: +1 213 480-9654 -initials: T. R. -mobile: +1 213 991-8024 -pager: +1 213 606-7330 -roomNumber: 8898 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Peg Lahaie,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peg Lahaie -sn: Lahaie -description: This is Peg Lahaie's description -facsimileTelephoneNumber: +1 510 170-2670 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 426-8638 -title: Associate Administrative Engineer -userPassword: Password1 -uid: LahaieP -givenName: Peg -mail: LahaieP@7c92d6dfba144f9587593ce6eeb4024f.bitwarden.com -carLicense: 2WFDA0 -departmentNumber: 8022 -employeeType: Contract -homePhone: +1 510 514-2288 -initials: P. L. -mobile: +1 510 664-9010 -pager: +1 510 133-9193 -roomNumber: 8802 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Annissa Bears,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annissa Bears -sn: Bears -description: This is Annissa Bears's description -facsimileTelephoneNumber: +1 804 495-3740 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 804 355-1945 -title: Chief Human Resources Mascot -userPassword: Password1 -uid: BearsA -givenName: Annissa -mail: BearsA@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com -carLicense: 5CCWWS -departmentNumber: 6277 -employeeType: Employee -homePhone: +1 804 951-4908 -initials: A. B. -mobile: +1 804 581-1450 -pager: +1 804 334-9478 -roomNumber: 8053 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jaffer Grosjean,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaffer Grosjean -sn: Grosjean -description: This is Jaffer Grosjean's description -facsimileTelephoneNumber: +1 206 130-1330 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 206 222-2935 -title: Junior Management Fellow -userPassword: Password1 -uid: GrosjeaJ -givenName: Jaffer -mail: GrosjeaJ@18c6c57f689a4dd297aa9ab9f89b0d22.bitwarden.com -carLicense: DTPA5K -departmentNumber: 8502 -employeeType: Normal -homePhone: +1 206 520-3251 -initials: J. G. -mobile: +1 206 218-5193 -pager: +1 206 188-6266 -roomNumber: 9388 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sinh IOCNTRL -sn: IOCNTRL -description: This is Sinh IOCNTRL's description -facsimileTelephoneNumber: +1 818 729-6734 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 853-4869 -title: Supreme Product Testing President -userPassword: Password1 -uid: IOCNTRLS -givenName: Sinh -mail: IOCNTRLS@eccb9225926a47e49169337a56197f55.bitwarden.com -carLicense: ANGON6 -departmentNumber: 6066 -employeeType: Employee -homePhone: +1 818 692-4360 -initials: S. I. -mobile: +1 818 464-9028 -pager: +1 818 261-6730 -roomNumber: 8208 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Quoc Ennis,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quoc Ennis -sn: Ennis -description: This is Quoc Ennis's description -facsimileTelephoneNumber: +1 213 678-7071 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 937-4591 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: EnnisQ -givenName: Quoc -mail: EnnisQ@2c5fff2e17c34e4f8027c15937e2554a.bitwarden.com -carLicense: B6JJMI -departmentNumber: 4451 -employeeType: Contract -homePhone: +1 213 742-5458 -initials: Q. E. -mobile: +1 213 293-6891 -pager: +1 213 892-3544 -roomNumber: 8338 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pascale Sorensen -sn: Sorensen -description: This is Pascale Sorensen's description -facsimileTelephoneNumber: +1 213 262-7850 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 600-6430 -title: Junior Human Resources Janitor -userPassword: Password1 -uid: SorenseP -givenName: Pascale -mail: SorenseP@296a8499fb454ab5ab80945b9f63d6db.bitwarden.com -carLicense: 2NS96Q -departmentNumber: 2292 -employeeType: Normal -homePhone: +1 213 487-9379 -initials: P. S. -mobile: +1 213 893-8239 -pager: +1 213 362-3311 -roomNumber: 8989 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Katalin Alteen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katalin Alteen -sn: Alteen -description: This is Katalin Alteen's description -facsimileTelephoneNumber: +1 408 857-7640 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 835-1989 -title: Junior Product Development Architect -userPassword: Password1 -uid: AlteenK -givenName: Katalin -mail: AlteenK@d8f225bca4fb4424ae5dc46bef133d26.bitwarden.com -carLicense: 323JA0 -departmentNumber: 5087 -employeeType: Employee -homePhone: +1 408 199-4444 -initials: K. A. -mobile: +1 408 511-4009 -pager: +1 408 900-7003 -roomNumber: 8731 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Suzie Caruso,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzie Caruso -sn: Caruso -description: This is Suzie Caruso's description -facsimileTelephoneNumber: +1 510 709-4784 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 723-4971 -title: Associate Product Development Director -userPassword: Password1 -uid: CarusoS -givenName: Suzie -mail: CarusoS@a5a8edfdd5c4429e9cf280f8b1f9e995.bitwarden.com -carLicense: HKHU37 -departmentNumber: 2246 -employeeType: Employee -homePhone: +1 510 938-8854 -initials: S. C. -mobile: +1 510 264-5503 -pager: +1 510 964-7739 -roomNumber: 8374 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bianka Rodriguez -sn: Rodriguez -description: This is Bianka Rodriguez's description -facsimileTelephoneNumber: +1 415 772-7086 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 399-9538 -title: Associate Product Testing Czar -userPassword: Password1 -uid: RodriguB -givenName: Bianka -mail: RodriguB@c5d504d10cfd4d11856502fc976f73f5.bitwarden.com -carLicense: 4K72D1 -departmentNumber: 2938 -employeeType: Contract -homePhone: +1 415 571-2839 -initials: B. R. -mobile: +1 415 931-2085 -pager: +1 415 587-7892 -roomNumber: 9527 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hanh Marui,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanh Marui -sn: Marui -description: This is Hanh Marui's description -facsimileTelephoneNumber: +1 804 613-7539 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 709-9925 -title: Supreme Peons Vice President -userPassword: Password1 -uid: MaruiH -givenName: Hanh -mail: MaruiH@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com -carLicense: NS6IGK -departmentNumber: 3718 -employeeType: Contract -homePhone: +1 804 968-1021 -initials: H. M. -mobile: +1 804 362-3731 -pager: +1 804 964-3192 -roomNumber: 8222 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Margette Bolly,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margette Bolly -sn: Bolly -description: This is Margette Bolly's description -facsimileTelephoneNumber: +1 415 637-1602 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 914-5991 -title: Junior Human Resources Warrior -userPassword: Password1 -uid: BollyM -givenName: Margette -mail: BollyM@2d98655afc6c4413a4e20fb38a176913.bitwarden.com -carLicense: 5NQQM2 -departmentNumber: 6540 -employeeType: Normal -homePhone: +1 415 636-4834 -initials: M. B. -mobile: +1 415 540-4151 -pager: +1 415 650-9990 -roomNumber: 9990 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Arvin Mauldin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arvin Mauldin -sn: Mauldin -description: This is Arvin Mauldin's description -facsimileTelephoneNumber: +1 206 574-4397 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 398-2366 -title: Master Peons Warrior -userPassword: Password1 -uid: MauldinA -givenName: Arvin -mail: MauldinA@6530618955494a54b6812262e97ea962.bitwarden.com -carLicense: BF0N8F -departmentNumber: 1799 -employeeType: Employee -homePhone: +1 206 718-7441 -initials: A. M. -mobile: +1 206 944-4488 -pager: +1 206 988-5005 -roomNumber: 8114 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stephi Sloan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephi Sloan -sn: Sloan -description: This is Stephi Sloan's description -facsimileTelephoneNumber: +1 213 857-2985 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 426-6164 -title: Associate Management Figurehead -userPassword: Password1 -uid: SloanS -givenName: Stephi -mail: SloanS@d494db8e881541faa9bd79d54aee6c6c.bitwarden.com -carLicense: O1IFIU -departmentNumber: 6501 -employeeType: Contract -homePhone: +1 213 782-6437 -initials: S. S. -mobile: +1 213 332-2782 -pager: +1 213 164-5709 -roomNumber: 9414 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ariella Kindel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ariella Kindel -sn: Kindel -description: This is Ariella Kindel's description -facsimileTelephoneNumber: +1 408 806-9608 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 474-7911 -title: Supreme Management Czar -userPassword: Password1 -uid: KindelA -givenName: Ariella -mail: KindelA@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com -carLicense: 8WRNNR -departmentNumber: 5812 -employeeType: Contract -homePhone: +1 408 677-8598 -initials: A. K. -mobile: +1 408 365-6958 -pager: +1 408 408-1160 -roomNumber: 9118 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sluis Rasmus,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sluis Rasmus -sn: Rasmus -description: This is Sluis Rasmus's description -facsimileTelephoneNumber: +1 408 868-6565 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 576-3436 -title: Supreme Peons Evangelist -userPassword: Password1 -uid: RasmusS -givenName: Sluis -mail: RasmusS@53c3e76f124f49beb679b871a3ea5611.bitwarden.com -carLicense: MFGGPP -departmentNumber: 5015 -employeeType: Contract -homePhone: +1 408 143-4814 -initials: S. R. -mobile: +1 408 393-4119 -pager: +1 408 131-1770 -roomNumber: 8111 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kunitaka Tsalikis -sn: Tsalikis -description: This is Kunitaka Tsalikis's description -facsimileTelephoneNumber: +1 818 642-8964 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 818 723-6359 -title: Master Administrative Engineer -userPassword: Password1 -uid: TsalikiK -givenName: Kunitaka -mail: TsalikiK@0d7e83c0e7e042119673bb3ec0e8332f.bitwarden.com -carLicense: 3VP35B -departmentNumber: 3632 -employeeType: Employee -homePhone: +1 818 220-6329 -initials: K. T. -mobile: +1 818 723-9166 -pager: +1 818 226-5537 -roomNumber: 9770 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mendel Taghizadeh -sn: Taghizadeh -description: This is Mendel Taghizadeh's description -facsimileTelephoneNumber: +1 206 646-7338 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 929-7974 -title: Junior Administrative Punk -userPassword: Password1 -uid: TaghizaM -givenName: Mendel -mail: TaghizaM@5357a85de543401d9e8fe2cdbf0be041.bitwarden.com -carLicense: O9EQ1D -departmentNumber: 9003 -employeeType: Employee -homePhone: +1 206 263-4092 -initials: M. T. -mobile: +1 206 624-7439 -pager: +1 206 337-2898 -roomNumber: 8183 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Onida Kessing,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Onida Kessing -sn: Kessing -description: This is Onida Kessing's description -facsimileTelephoneNumber: +1 818 323-1868 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 484-1955 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: KessingO -givenName: Onida -mail: KessingO@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com -carLicense: V85L39 -departmentNumber: 5839 -employeeType: Employee -homePhone: +1 818 904-1424 -initials: O. K. -mobile: +1 818 526-3884 -pager: +1 818 623-1290 -roomNumber: 9491 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tasha Good,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tasha Good -sn: Good -description: This is Tasha Good's description -facsimileTelephoneNumber: +1 818 203-9930 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 818 796-5000 -title: Associate Payroll Pinhead -userPassword: Password1 -uid: GoodT -givenName: Tasha -mail: GoodT@7c2121c8588b42078879768992a11293.bitwarden.com -carLicense: 6MQOML -departmentNumber: 8247 -employeeType: Normal -homePhone: +1 818 729-5115 -initials: T. G. -mobile: +1 818 357-2862 -pager: +1 818 124-7836 -roomNumber: 9651 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Audrie Hadaway,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Audrie Hadaway -sn: Hadaway -description: This is Audrie Hadaway's description -facsimileTelephoneNumber: +1 804 221-4148 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 804 385-6760 -title: Supreme Payroll Czar -userPassword: Password1 -uid: HadawayA -givenName: Audrie -mail: HadawayA@ea0f69137ff74518bf5deef349f108a0.bitwarden.com -carLicense: MLO16A -departmentNumber: 7809 -employeeType: Employee -homePhone: +1 804 686-8454 -initials: A. H. -mobile: +1 804 785-6482 -pager: +1 804 118-5688 -roomNumber: 8474 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Natka Herzig,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natka Herzig -sn: Herzig -description: This is Natka Herzig's description -facsimileTelephoneNumber: +1 415 861-6967 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 166-9577 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: HerzigN -givenName: Natka -mail: HerzigN@597d9762b8604e37948eff99d3393453.bitwarden.com -carLicense: 1XPETF -departmentNumber: 6627 -employeeType: Normal -homePhone: +1 415 731-2496 -initials: N. H. -mobile: +1 415 798-4370 -pager: +1 415 502-1244 -roomNumber: 8449 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Naima Simzer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naima Simzer -sn: Simzer -description: This is Naima Simzer's description -facsimileTelephoneNumber: +1 415 531-9819 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 873-6283 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: SimzerN -givenName: Naima -mail: SimzerN@949d540dd7bd45ac952a8779090548fc.bitwarden.com -carLicense: VN3ND8 -departmentNumber: 3313 -employeeType: Employee -homePhone: +1 415 447-4485 -initials: N. S. -mobile: +1 415 985-9557 -pager: +1 415 781-6530 -roomNumber: 8999 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lotte Ichizen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lotte Ichizen -sn: Ichizen -description: This is Lotte Ichizen's description -facsimileTelephoneNumber: +1 408 457-5242 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 594-8744 -title: Supreme Product Development Technician -userPassword: Password1 -uid: IchizenL -givenName: Lotte -mail: IchizenL@9ded9a56079f4cc9aa539795eb2ef76e.bitwarden.com -carLicense: A4H7YM -departmentNumber: 4664 -employeeType: Normal -homePhone: +1 408 596-9244 -initials: L. I. -mobile: +1 408 675-4038 -pager: +1 408 584-2853 -roomNumber: 8778 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marco Seto,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marco Seto -sn: Seto -description: This is Marco Seto's description -facsimileTelephoneNumber: +1 408 648-5623 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 847-1802 -title: Associate Product Development Vice President -userPassword: Password1 -uid: SetoM -givenName: Marco -mail: SetoM@47a7a80ec8774325ad24930467e7f72e.bitwarden.com -carLicense: FRB370 -departmentNumber: 8883 -employeeType: Normal -homePhone: +1 408 869-7041 -initials: M. S. -mobile: +1 408 366-7746 -pager: +1 408 630-4233 -roomNumber: 8359 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mollee Ensing,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mollee Ensing -sn: Ensing -description: This is Mollee Ensing's description -facsimileTelephoneNumber: +1 206 671-5221 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 389-1239 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: EnsingM -givenName: Mollee -mail: EnsingM@927751b0a567415d9f3e597c148985e7.bitwarden.com -carLicense: PSQYO4 -departmentNumber: 4480 -employeeType: Normal -homePhone: +1 206 867-6651 -initials: M. E. -mobile: +1 206 572-9890 -pager: +1 206 968-8760 -roomNumber: 9771 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roe Schenk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roe Schenk -sn: Schenk -description: This is Roe Schenk's description -facsimileTelephoneNumber: +1 206 257-3104 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 206 249-9677 -title: Junior Payroll Punk -userPassword: Password1 -uid: SchenkR -givenName: Roe -mail: SchenkR@e0325d1b480a46fd813ea04ca5c966cc.bitwarden.com -carLicense: CIC0HK -departmentNumber: 8403 -employeeType: Normal -homePhone: +1 206 161-6718 -initials: R. S. -mobile: +1 206 298-6153 -pager: +1 206 828-5266 -roomNumber: 9248 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Christian Wales,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christian Wales -sn: Wales -description: This is Christian Wales's description -facsimileTelephoneNumber: +1 415 303-8654 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 256-7018 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: WalesC -givenName: Christian -mail: WalesC@d7bbd93ba2614bff8062ee68b5bbccb7.bitwarden.com -carLicense: 1ULOOK -departmentNumber: 1054 -employeeType: Employee -homePhone: +1 415 635-4555 -initials: C. W. -mobile: +1 415 710-7746 -pager: +1 415 425-6576 -roomNumber: 9146 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Loes Rioux,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loes Rioux -sn: Rioux -description: This is Loes Rioux's description -facsimileTelephoneNumber: +1 510 229-6827 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 153-9459 -title: Junior Product Development Fellow -userPassword: Password1 -uid: RiouxL -givenName: Loes -mail: RiouxL@fc6d9a3bc3ac4e95a6de75ff02dab16b.bitwarden.com -carLicense: YL3447 -departmentNumber: 9593 -employeeType: Employee -homePhone: +1 510 863-1840 -initials: L. R. -mobile: +1 510 108-8619 -pager: +1 510 114-8077 -roomNumber: 9184 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rubetta Lui,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rubetta Lui -sn: Lui -description: This is Rubetta Lui's description -facsimileTelephoneNumber: +1 206 353-1584 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 485-7158 -title: Master Payroll Consultant -userPassword: Password1 -uid: LuiR -givenName: Rubetta -mail: LuiR@522cf8a1d4424cc392ce0a8035040445.bitwarden.com -carLicense: 47S0F1 -departmentNumber: 2200 -employeeType: Normal -homePhone: +1 206 538-7324 -initials: R. L. -mobile: +1 206 307-6112 -pager: +1 206 338-3420 -roomNumber: 9654 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lonni Sabadash,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lonni Sabadash -sn: Sabadash -description: This is Lonni Sabadash's description -facsimileTelephoneNumber: +1 415 487-3971 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 831-2058 -title: Associate Peons Manager -userPassword: Password1 -uid: SabadasL -givenName: Lonni -mail: SabadasL@3c2a9299917e436494b9ad3aeb458417.bitwarden.com -carLicense: 4VKDVK -departmentNumber: 6832 -employeeType: Contract -homePhone: +1 415 695-7945 -initials: L. S. -mobile: +1 415 271-6914 -pager: +1 415 210-4943 -roomNumber: 9290 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Monica Duensing,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monica Duensing -sn: Duensing -description: This is Monica Duensing's description -facsimileTelephoneNumber: +1 206 871-6119 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 234-6493 -title: Master Peons Consultant -userPassword: Password1 -uid: DuensinM -givenName: Monica -mail: DuensinM@494f2548825245788f70b0629ca28b58.bitwarden.com -carLicense: RU2O2C -departmentNumber: 9765 -employeeType: Contract -homePhone: +1 206 480-1017 -initials: M. D. -mobile: +1 206 714-6739 -pager: +1 206 993-6461 -roomNumber: 9068 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Colm Gratton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colm Gratton -sn: Gratton -description: This is Colm Gratton's description -facsimileTelephoneNumber: +1 408 976-1069 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 408 648-9780 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: GrattonC -givenName: Colm -mail: GrattonC@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com -carLicense: WX9XQ4 -departmentNumber: 7273 -employeeType: Normal -homePhone: +1 408 793-3839 -initials: C. G. -mobile: +1 408 524-8622 -pager: +1 408 189-9786 -roomNumber: 9507 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tootsie McNeilly -sn: McNeilly -description: This is Tootsie McNeilly's description -facsimileTelephoneNumber: +1 206 192-3779 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 663-9227 -title: Associate Administrative Stooge -userPassword: Password1 -uid: McNeillT -givenName: Tootsie -mail: McNeillT@2a2785e41bed4e93a780b4af1e24c457.bitwarden.com -carLicense: 3MFOHE -departmentNumber: 2443 -employeeType: Employee -homePhone: +1 206 453-4487 -initials: T. M. -mobile: +1 206 923-7631 -pager: +1 206 801-7491 -roomNumber: 9849 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Denise Randall,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denise Randall -sn: Randall -description: This is Denise Randall's description -facsimileTelephoneNumber: +1 213 365-8367 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 202-3543 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: RandallD -givenName: Denise -mail: RandallD@fd1c064ea4f34f1bb83154589888d370.bitwarden.com -carLicense: 9249UG -departmentNumber: 6995 -employeeType: Employee -homePhone: +1 213 927-5256 -initials: D. R. -mobile: +1 213 686-2519 -pager: +1 213 534-8200 -roomNumber: 9792 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamqrah Mikelonis -sn: Mikelonis -description: This is Tamqrah Mikelonis's description -facsimileTelephoneNumber: +1 510 298-3720 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 510 216-2238 -title: Chief Administrative Writer -userPassword: Password1 -uid: MikelonT -givenName: Tamqrah -mail: MikelonT@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com -carLicense: 4QTWRW -departmentNumber: 9165 -employeeType: Contract -homePhone: +1 510 151-8991 -initials: T. M. -mobile: +1 510 265-5462 -pager: +1 510 458-7460 -roomNumber: 8286 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Haggar Labfive,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haggar Labfive -sn: Labfive -description: This is Haggar Labfive's description -facsimileTelephoneNumber: +1 206 857-5795 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 526-8510 -title: Junior Human Resources Fellow -userPassword: Password1 -uid: LabfiveH -givenName: Haggar -mail: LabfiveH@1f068d8a62cd4045acf6df01987aee06.bitwarden.com -carLicense: 1L4PGD -departmentNumber: 9240 -employeeType: Normal -homePhone: +1 206 401-1602 -initials: H. L. -mobile: +1 206 203-7347 -pager: +1 206 181-6289 -roomNumber: 9803 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Willow Marko,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willow Marko -sn: Marko -description: This is Willow Marko's description -facsimileTelephoneNumber: +1 818 148-2553 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 107-6790 -title: Chief Management Writer -userPassword: Password1 -uid: MarkoW -givenName: Willow -mail: MarkoW@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com -carLicense: YDMDI0 -departmentNumber: 6705 -employeeType: Normal -homePhone: +1 818 838-3034 -initials: W. M. -mobile: +1 818 590-8041 -pager: +1 818 805-1370 -roomNumber: 8927 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Paulinus McNabb,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulinus McNabb -sn: McNabb -description: This is Paulinus McNabb's description -facsimileTelephoneNumber: +1 510 293-2562 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 275-6283 -title: Junior Payroll Mascot -userPassword: Password1 -uid: McNabbP -givenName: Paulinus -mail: McNabbP@4aaf48b94c754d999a64bf75ae3d3b60.bitwarden.com -carLicense: LJ3DTQ -departmentNumber: 2064 -employeeType: Normal -homePhone: +1 510 985-9742 -initials: P. M. -mobile: +1 510 542-8804 -pager: +1 510 922-6920 -roomNumber: 9205 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merunix Kaczynski -sn: Kaczynski -description: This is Merunix Kaczynski's description -facsimileTelephoneNumber: +1 213 843-1524 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 161-9613 -title: Associate Product Testing Artist -userPassword: Password1 -uid: KaczynsM -givenName: Merunix -mail: KaczynsM@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com -carLicense: 96FP7K -departmentNumber: 2607 -employeeType: Employee -homePhone: +1 213 461-1079 -initials: M. K. -mobile: +1 213 328-1411 -pager: +1 213 126-8533 -roomNumber: 9785 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sula Piersol,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sula Piersol -sn: Piersol -description: This is Sula Piersol's description -facsimileTelephoneNumber: +1 408 895-9157 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 865-5916 -title: Supreme Product Development President -userPassword: Password1 -uid: PiersolS -givenName: Sula -mail: PiersolS@7dc5b62cf93648d48eddbda676ec7c2b.bitwarden.com -carLicense: D9LPFI -departmentNumber: 5031 -employeeType: Employee -homePhone: +1 408 798-4222 -initials: S. P. -mobile: +1 408 920-7051 -pager: +1 408 108-2352 -roomNumber: 9451 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Phillip Shearin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phillip Shearin -sn: Shearin -description: This is Phillip Shearin's description -facsimileTelephoneNumber: +1 510 649-3525 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 979-6918 -title: Master Peons Grunt -userPassword: Password1 -uid: ShearinP -givenName: Phillip -mail: ShearinP@b81f861cfff7425eaadf73f079aa2666.bitwarden.com -carLicense: N97MMN -departmentNumber: 5459 -employeeType: Contract -homePhone: +1 510 205-6277 -initials: P. S. -mobile: +1 510 286-5479 -pager: +1 510 797-8876 -roomNumber: 8255 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marg Villeneuve,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marg Villeneuve -sn: Villeneuve -description: This is Marg Villeneuve's description -facsimileTelephoneNumber: +1 804 102-3458 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 668-9831 -title: Master Management Visionary -userPassword: Password1 -uid: VilleneM -givenName: Marg -mail: VilleneM@d71da34df9024aaf8ef124f781734513.bitwarden.com -carLicense: OBIVC0 -departmentNumber: 2272 -employeeType: Contract -homePhone: +1 804 846-3681 -initials: M. V. -mobile: +1 804 405-7872 -pager: +1 804 824-1899 -roomNumber: 9059 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Halette Kirfman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Halette Kirfman -sn: Kirfman -description: This is Halette Kirfman's description -facsimileTelephoneNumber: +1 415 514-3131 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 807-2398 -title: Chief Payroll Visionary -userPassword: Password1 -uid: KirfmanH -givenName: Halette -mail: KirfmanH@e2a54602eb2d428d863b4e68e7098e41.bitwarden.com -carLicense: IHFHNN -departmentNumber: 4279 -employeeType: Normal -homePhone: +1 415 220-9294 -initials: H. K. -mobile: +1 415 553-2584 -pager: +1 415 100-2961 -roomNumber: 8256 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vijya Wrigley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vijya Wrigley -sn: Wrigley -description: This is Vijya Wrigley's description -facsimileTelephoneNumber: +1 206 875-5400 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 714-9304 -title: Junior Product Development Punk -userPassword: Password1 -uid: WrigleyV -givenName: Vijya -mail: WrigleyV@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com -carLicense: XUFMHM -departmentNumber: 8522 -employeeType: Normal -homePhone: +1 206 362-1074 -initials: V. W. -mobile: +1 206 420-9515 -pager: +1 206 610-8165 -roomNumber: 8233 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzanna Piwkowski -sn: Piwkowski -description: This is Suzanna Piwkowski's description -facsimileTelephoneNumber: +1 415 625-9840 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 949-9928 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: PiwkowsS -givenName: Suzanna -mail: PiwkowsS@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com -carLicense: 561PBG -departmentNumber: 1092 -employeeType: Contract -homePhone: +1 415 467-5298 -initials: S. P. -mobile: +1 415 509-8789 -pager: +1 415 559-2010 -roomNumber: 9895 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Leung Veit,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leung Veit -sn: Veit -description: This is Leung Veit's description -facsimileTelephoneNumber: +1 206 297-3473 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 613-4255 -title: Master Product Testing Visionary -userPassword: Password1 -uid: VeitL -givenName: Leung -mail: VeitL@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com -carLicense: ANJDMU -departmentNumber: 7364 -employeeType: Normal -homePhone: +1 206 102-5895 -initials: L. V. -mobile: +1 206 669-2238 -pager: +1 206 844-4664 -roomNumber: 9114 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Celka Sylvain,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celka Sylvain -sn: Sylvain -description: This is Celka Sylvain's description -facsimileTelephoneNumber: +1 415 957-9391 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 477-5801 -title: Chief Janitorial Madonna -userPassword: Password1 -uid: SylvainC -givenName: Celka -mail: SylvainC@3be6f0b907a24b2494bafbb2bc326635.bitwarden.com -carLicense: WF6H81 -departmentNumber: 3217 -employeeType: Contract -homePhone: +1 415 621-7618 -initials: C. S. -mobile: +1 415 780-1946 -pager: +1 415 574-9484 -roomNumber: 9399 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Michiko Zanetti,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michiko Zanetti -sn: Zanetti -description: This is Michiko Zanetti's description -facsimileTelephoneNumber: +1 510 702-1956 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 486-4568 -title: Chief Payroll Artist -userPassword: Password1 -uid: ZanettiM -givenName: Michiko -mail: ZanettiM@ecce68065a2a469d85a092399ef0abdb.bitwarden.com -carLicense: 8VQJEN -departmentNumber: 7071 -employeeType: Contract -homePhone: +1 510 299-8318 -initials: M. Z. -mobile: +1 510 101-2129 -pager: +1 510 612-4100 -roomNumber: 8192 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Derick Sheremeto,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Derick Sheremeto -sn: Sheremeto -description: This is Derick Sheremeto's description -facsimileTelephoneNumber: +1 408 771-4747 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 355-6740 -title: Chief Payroll Admin -userPassword: Password1 -uid: SheremeD -givenName: Derick -mail: SheremeD@5922bcea32dc44eb88de2834c151441c.bitwarden.com -carLicense: PXC9Q7 -departmentNumber: 1925 -employeeType: Normal -homePhone: +1 408 260-4434 -initials: D. S. -mobile: +1 408 302-1170 -pager: +1 408 968-2566 -roomNumber: 9809 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shuji Blander,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shuji Blander -sn: Blander -description: This is Shuji Blander's description -facsimileTelephoneNumber: +1 818 930-5046 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 426-8697 -title: Supreme Payroll Architect -userPassword: Password1 -uid: BlanderS -givenName: Shuji -mail: BlanderS@012a5cfab6324107b0814d36b8f41041.bitwarden.com -carLicense: E9TXKV -departmentNumber: 5126 -employeeType: Employee -homePhone: +1 818 643-3539 -initials: S. B. -mobile: +1 818 506-5961 -pager: +1 818 689-5188 -roomNumber: 9514 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Conni Dubee,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Conni Dubee -sn: Dubee -description: This is Conni Dubee's description -facsimileTelephoneNumber: +1 206 423-8420 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 409-6876 -title: Chief Payroll Madonna -userPassword: Password1 -uid: DubeeC -givenName: Conni -mail: DubeeC@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com -carLicense: G491LK -departmentNumber: 2369 -employeeType: Normal -homePhone: +1 206 840-1774 -initials: C. D. -mobile: +1 206 533-6022 -pager: +1 206 561-3563 -roomNumber: 8196 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Charlot Kling,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charlot Kling -sn: Kling -description: This is Charlot Kling's description -facsimileTelephoneNumber: +1 415 611-7990 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 257-6199 -title: Supreme Peons Grunt -userPassword: Password1 -uid: KlingC -givenName: Charlot -mail: KlingC@4da7d564972d46f2924a6a8ae018f420.bitwarden.com -carLicense: Q13N2R -departmentNumber: 9849 -employeeType: Employee -homePhone: +1 415 462-6351 -initials: C. K. -mobile: +1 415 133-8569 -pager: +1 415 302-2996 -roomNumber: 9270 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ved Missailidis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ved Missailidis -sn: Missailidis -description: This is Ved Missailidis's description -facsimileTelephoneNumber: +1 510 639-7728 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 510 311-8632 -title: Master Administrative Architect -userPassword: Password1 -uid: MissailV -givenName: Ved -mail: MissailV@34a16f57e9db4215b5cb050ec73091c3.bitwarden.com -carLicense: 91X66C -departmentNumber: 2189 -employeeType: Employee -homePhone: +1 510 179-9622 -initials: V. M. -mobile: +1 510 972-1916 -pager: +1 510 568-3075 -roomNumber: 9899 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wladyslaw Buckley -sn: Buckley -description: This is Wladyslaw Buckley's description -facsimileTelephoneNumber: +1 818 789-1792 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 382-3873 -title: Junior Janitorial Technician -userPassword: Password1 -uid: BuckleyW -givenName: Wladyslaw -mail: BuckleyW@86099fc02a734c888a7ae3c972099ceb.bitwarden.com -carLicense: THINBD -departmentNumber: 4195 -employeeType: Contract -homePhone: +1 818 714-2323 -initials: W. B. -mobile: +1 818 330-6005 -pager: +1 818 133-5333 -roomNumber: 8216 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rianon AuYeung -sn: AuYeung -description: This is Rianon AuYeung's description -facsimileTelephoneNumber: +1 510 896-9473 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 128-9546 -title: Master Product Testing Vice President -userPassword: Password1 -uid: AuYeungR -givenName: Rianon -mail: AuYeungR@a4891e9178c647fd97d577b339b0f2ec.bitwarden.com -carLicense: DQRQ39 -departmentNumber: 7686 -employeeType: Normal -homePhone: +1 510 705-7513 -initials: R. A. -mobile: +1 510 732-9132 -pager: +1 510 565-1733 -roomNumber: 9650 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Louisa Dowdy -sn: Dowdy -description: This is Louisa Dowdy's description -facsimileTelephoneNumber: +1 415 753-2184 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 842-2421 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: DowdyL -givenName: Louisa -mail: DowdyL@0f5c9983e32c410788faa72a9c3d7c88.bitwarden.com -carLicense: PATP82 -departmentNumber: 6965 -employeeType: Normal -homePhone: +1 415 603-1027 -initials: L. D. -mobile: +1 415 564-2734 -pager: +1 415 591-7241 -roomNumber: 9962 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Valera Rummans,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valera Rummans -sn: Rummans -description: This is Valera Rummans's description -facsimileTelephoneNumber: +1 510 560-7416 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 776-4060 -title: Master Payroll Warrior -userPassword: Password1 -uid: RummansV -givenName: Valera -mail: RummansV@46b9fed368dc4ef39eafba055f3b72d2.bitwarden.com -carLicense: XP32T9 -departmentNumber: 1927 -employeeType: Contract -homePhone: +1 510 962-1161 -initials: V. R. -mobile: +1 510 558-4933 -pager: +1 510 402-6853 -roomNumber: 9751 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Neely Bresnan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neely Bresnan -sn: Bresnan -description: This is Neely Bresnan's description -facsimileTelephoneNumber: +1 818 876-1519 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 339-7385 -title: Chief Peons Fellow -userPassword: Password1 -uid: BresnanN -givenName: Neely -mail: BresnanN@da06922aef174c0e80555c5332c5d50d.bitwarden.com -carLicense: 5MLPTL -departmentNumber: 9493 -employeeType: Contract -homePhone: +1 818 717-5850 -initials: N. B. -mobile: +1 818 108-9422 -pager: +1 818 494-3067 -roomNumber: 9465 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Trey Zagrodney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trey Zagrodney -sn: Zagrodney -description: This is Trey Zagrodney's description -facsimileTelephoneNumber: +1 415 803-3352 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 442-3564 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: ZagrodnT -givenName: Trey -mail: ZagrodnT@58b17cbf3c8c49a497e5fef5616324ae.bitwarden.com -carLicense: IDFWKW -departmentNumber: 4922 -employeeType: Employee -homePhone: +1 415 658-4247 -initials: T. Z. -mobile: +1 415 206-3683 -pager: +1 415 950-5817 -roomNumber: 8572 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cordie Hippert,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cordie Hippert -sn: Hippert -description: This is Cordie Hippert's description -facsimileTelephoneNumber: +1 510 747-8603 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 211-3188 -title: Chief Management Director -userPassword: Password1 -uid: HippertC -givenName: Cordie -mail: HippertC@2af5a5b28ee142c29a88149a85e2cfc6.bitwarden.com -carLicense: VK67NS -departmentNumber: 2790 -employeeType: Contract -homePhone: +1 510 604-7567 -initials: C. H. -mobile: +1 510 827-1655 -pager: +1 510 857-8356 -roomNumber: 9239 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zanni Godwin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zanni Godwin -sn: Godwin -description: This is Zanni Godwin's description -facsimileTelephoneNumber: +1 408 799-6231 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 215-5581 -title: Supreme Peons Vice President -userPassword: Password1 -uid: GodwinZ -givenName: Zanni -mail: GodwinZ@b356031edae7438e91e9510b0eef0f11.bitwarden.com -carLicense: BERMIB -departmentNumber: 8792 -employeeType: Employee -homePhone: +1 408 155-8721 -initials: Z. G. -mobile: +1 408 790-9271 -pager: +1 408 839-2520 -roomNumber: 8846 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yannick Cricker,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yannick Cricker -sn: Cricker -description: This is Yannick Cricker's description -facsimileTelephoneNumber: +1 206 434-4333 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 206 829-2033 -title: Supreme Product Development Dictator -userPassword: Password1 -uid: CrickerY -givenName: Yannick -mail: CrickerY@8c867e4cf415450c9970643cdd97be2b.bitwarden.com -carLicense: U9Y5XY -departmentNumber: 9257 -employeeType: Normal -homePhone: +1 206 184-7680 -initials: Y. C. -mobile: +1 206 293-4093 -pager: +1 206 654-2791 -roomNumber: 8159 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tayeb Leahy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tayeb Leahy -sn: Leahy -description: This is Tayeb Leahy's description -facsimileTelephoneNumber: +1 415 707-9439 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 625-4943 -title: Junior Administrative Manager -userPassword: Password1 -uid: LeahyT -givenName: Tayeb -mail: LeahyT@94dae55d586a40178d344aa65db63286.bitwarden.com -carLicense: OEII7S -departmentNumber: 6896 -employeeType: Contract -homePhone: +1 415 206-2477 -initials: T. L. -mobile: +1 415 931-8308 -pager: +1 415 713-8992 -roomNumber: 9608 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Paulo Goldner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulo Goldner -sn: Goldner -description: This is Paulo Goldner's description -facsimileTelephoneNumber: +1 510 349-9577 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 108-1715 -title: Junior Product Development Czar -userPassword: Password1 -uid: GoldnerP -givenName: Paulo -mail: GoldnerP@9824b48fa2d849d4b03986cd07954ce2.bitwarden.com -carLicense: TOX4JU -departmentNumber: 8431 -employeeType: Normal -homePhone: +1 510 278-7262 -initials: P. G. -mobile: +1 510 349-5603 -pager: +1 510 832-4516 -roomNumber: 9860 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirit Bolgos -sn: Bolgos -description: This is Kirit Bolgos's description -facsimileTelephoneNumber: +1 408 213-5010 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 533-9713 -title: Chief Product Testing Writer -userPassword: Password1 -uid: BolgosK -givenName: Kirit -mail: BolgosK@1e0d2010b563467286453b342eb2e967.bitwarden.com -carLicense: FBR8D4 -departmentNumber: 4090 -employeeType: Employee -homePhone: +1 408 825-9014 -initials: K. B. -mobile: +1 408 721-2530 -pager: +1 408 875-2166 -roomNumber: 9268 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Casi CHOCS,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Casi CHOCS -sn: CHOCS -description: This is Casi CHOCS's description -facsimileTelephoneNumber: +1 408 737-2044 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 760-9589 -title: Associate Administrative Fellow -userPassword: Password1 -uid: CHOCSC -givenName: Casi -mail: CHOCSC@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com -carLicense: 2AMJOC -departmentNumber: 6528 -employeeType: Normal -homePhone: +1 408 328-2376 -initials: C. C. -mobile: +1 408 110-3136 -pager: +1 408 706-2330 -roomNumber: 8769 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nata Booking,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nata Booking -sn: Booking -description: This is Nata Booking's description -facsimileTelephoneNumber: +1 415 150-6546 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 431-7807 -title: Supreme Peons Artist -userPassword: Password1 -uid: BookingN -givenName: Nata -mail: BookingN@e891dcc74adc426fbd3ad63fb5fff359.bitwarden.com -carLicense: 9H12OF -departmentNumber: 6038 -employeeType: Contract -homePhone: +1 415 765-2067 -initials: N. B. -mobile: +1 415 354-2834 -pager: +1 415 248-5410 -roomNumber: 9951 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Doretta Turkki,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doretta Turkki -sn: Turkki -description: This is Doretta Turkki's description -facsimileTelephoneNumber: +1 415 364-8263 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 498-3045 -title: Supreme Human Resources Director -userPassword: Password1 -uid: TurkkiD -givenName: Doretta -mail: TurkkiD@19ae50f703c34edda0d4ff96561aa4ce.bitwarden.com -carLicense: H4N52H -departmentNumber: 2052 -employeeType: Employee -homePhone: +1 415 476-4978 -initials: D. T. -mobile: +1 415 696-4798 -pager: +1 415 663-2958 -roomNumber: 9795 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Armelle Verhoeven -sn: Verhoeven -description: This is Armelle Verhoeven's description -facsimileTelephoneNumber: +1 510 466-7151 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 726-9147 -title: Master Payroll Madonna -userPassword: Password1 -uid: VerhoevA -givenName: Armelle -mail: VerhoevA@f3ba3b64f9604f3595f8d4c1f4702c4b.bitwarden.com -carLicense: RSU3NT -departmentNumber: 3971 -employeeType: Contract -homePhone: +1 510 797-6262 -initials: A. V. -mobile: +1 510 271-2595 -pager: +1 510 300-6933 -roomNumber: 8409 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hq Buske,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hq Buske -sn: Buske -description: This is Hq Buske's description -facsimileTelephoneNumber: +1 213 173-2984 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 213 112-7815 -title: Junior Janitorial Warrior -userPassword: Password1 -uid: BuskeH -givenName: Hq -mail: BuskeH@06087a741466454b9e2a6b6754ee0c92.bitwarden.com -carLicense: F0VC0R -departmentNumber: 3565 -employeeType: Employee -homePhone: +1 213 400-4826 -initials: H. B. -mobile: +1 213 366-8281 -pager: +1 213 106-5561 -roomNumber: 9462 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chun Pinizzotto -sn: Pinizzotto -description: This is Chun Pinizzotto's description -facsimileTelephoneNumber: +1 510 131-3402 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 720-8356 -title: Supreme Product Development Stooge -userPassword: Password1 -uid: PinizzoC -givenName: Chun -mail: PinizzoC@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com -carLicense: 8DXRWJ -departmentNumber: 7802 -employeeType: Normal -homePhone: +1 510 261-5910 -initials: C. P. -mobile: +1 510 394-5745 -pager: +1 510 900-1349 -roomNumber: 8832 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mamoru Alfaro -sn: Alfaro -description: This is Mamoru Alfaro's description -facsimileTelephoneNumber: +1 510 699-8825 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 565-9025 -title: Chief Human Resources Consultant -userPassword: Password1 -uid: AlfaroM -givenName: Mamoru -mail: AlfaroM@0115872801044ba284591166aa6c228d.bitwarden.com -carLicense: MK2SSW -departmentNumber: 7308 -employeeType: Normal -homePhone: +1 510 475-3219 -initials: M. A. -mobile: +1 510 676-6929 -pager: +1 510 942-2194 -roomNumber: 9823 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roe Levey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roe Levey -sn: Levey -description: This is Roe Levey's description -facsimileTelephoneNumber: +1 206 273-9869 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 157-1155 -title: Supreme Product Testing Assistant -userPassword: Password1 -uid: LeveyR -givenName: Roe -mail: LeveyR@bbdbdd2d73ba4cc08f1e302887d88e7f.bitwarden.com -carLicense: GTUA1L -departmentNumber: 8224 -employeeType: Contract -homePhone: +1 206 238-5469 -initials: R. L. -mobile: +1 206 290-6557 -pager: +1 206 528-4921 -roomNumber: 9632 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Orelia Salinas,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orelia Salinas -sn: Salinas -description: This is Orelia Salinas's description -facsimileTelephoneNumber: +1 213 448-2500 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 583-1697 -title: Junior Payroll Mascot -userPassword: Password1 -uid: SalinasO -givenName: Orelia -mail: SalinasO@67225f2d83cb4254a52f74f5972d275c.bitwarden.com -carLicense: WS4S81 -departmentNumber: 6753 -employeeType: Contract -homePhone: +1 213 676-4224 -initials: O. S. -mobile: +1 213 530-8069 -pager: +1 213 194-7003 -roomNumber: 8041 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Atlante Standel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atlante Standel -sn: Standel -description: This is Atlante Standel's description -facsimileTelephoneNumber: +1 408 263-2798 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 822-4948 -title: Junior Peons Director -userPassword: Password1 -uid: StandelA -givenName: Atlante -mail: StandelA@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com -carLicense: F8PO9L -departmentNumber: 3598 -employeeType: Employee -homePhone: +1 408 650-8456 -initials: A. S. -mobile: +1 408 540-4810 -pager: +1 408 242-7759 -roomNumber: 8292 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leela Rylott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leela Rylott -sn: Rylott -description: This is Leela Rylott's description -facsimileTelephoneNumber: +1 818 253-7764 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 204-3932 -title: Chief Human Resources Manager -userPassword: Password1 -uid: RylottL -givenName: Leela -mail: RylottL@20c2d999fe734387b26090f6d88bafe4.bitwarden.com -carLicense: RJF7KG -departmentNumber: 3582 -employeeType: Normal -homePhone: +1 818 339-7122 -initials: L. R. -mobile: +1 818 148-5433 -pager: +1 818 753-2904 -roomNumber: 9157 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Priscella Oskorep -sn: Oskorep -description: This is Priscella Oskorep's description -facsimileTelephoneNumber: +1 206 846-8600 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 650-3406 -title: Master Human Resources Madonna -userPassword: Password1 -uid: OskorepP -givenName: Priscella -mail: OskorepP@9eb0a140ee7144e0b023cba81df3cc51.bitwarden.com -carLicense: IPFQ0W -departmentNumber: 8970 -employeeType: Employee -homePhone: +1 206 553-5836 -initials: P. O. -mobile: +1 206 747-7334 -pager: +1 206 285-2866 -roomNumber: 9544 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cavin Cobo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cavin Cobo -sn: Cobo -description: This is Cavin Cobo's description -facsimileTelephoneNumber: +1 408 437-2287 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 408 411-7821 -title: Junior Administrative Artist -userPassword: Password1 -uid: CoboC -givenName: Cavin -mail: CoboC@702f120c80c546e3a3d4380e71a79fa6.bitwarden.com -carLicense: J48G6T -departmentNumber: 4529 -employeeType: Normal -homePhone: +1 408 794-9339 -initials: C. C. -mobile: +1 408 226-7468 -pager: +1 408 679-1465 -roomNumber: 8825 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Moe Oastler,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moe Oastler -sn: Oastler -description: This is Moe Oastler's description -facsimileTelephoneNumber: +1 415 945-1120 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 616-5990 -title: Master Human Resources Czar -userPassword: Password1 -uid: OastlerM -givenName: Moe -mail: OastlerM@5497d8e7bbe94acaa8307ac716892d02.bitwarden.com -carLicense: G3DTYU -departmentNumber: 1611 -employeeType: Employee -homePhone: +1 415 401-7075 -initials: M. O. -mobile: +1 415 208-2902 -pager: +1 415 559-2940 -roomNumber: 9109 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lesley ElTorky,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lesley ElTorky -sn: ElTorky -description: This is Lesley ElTorky's description -facsimileTelephoneNumber: +1 213 496-4318 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 818-8749 -title: Junior Payroll President -userPassword: Password1 -uid: ElTorkyL -givenName: Lesley -mail: ElTorkyL@aa8e22a5a37c45459a1aae28136c8279.bitwarden.com -carLicense: EOAINW -departmentNumber: 2696 -employeeType: Normal -homePhone: +1 213 258-7302 -initials: L. E. -mobile: +1 213 913-1224 -pager: +1 213 706-2252 -roomNumber: 8468 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Brina Guttman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brina Guttman -sn: Guttman -description: This is Brina Guttman's description -facsimileTelephoneNumber: +1 213 189-6259 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 621-4760 -title: Associate Management Assistant -userPassword: Password1 -uid: GuttmanB -givenName: Brina -mail: GuttmanB@a33f574fa0a24162b343e74178659859.bitwarden.com -carLicense: 5AS6DU -departmentNumber: 1547 -employeeType: Normal -homePhone: +1 213 938-8223 -initials: B. G. -mobile: +1 213 708-1539 -pager: +1 213 785-3231 -roomNumber: 8620 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hiroko Fait,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hiroko Fait -sn: Fait -description: This is Hiroko Fait's description -facsimileTelephoneNumber: +1 415 169-2774 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 415 212-8080 -title: Junior Human Resources Visionary -userPassword: Password1 -uid: FaitH -givenName: Hiroko -mail: FaitH@5a8cc902fcc5423d892dfdcc048c73b2.bitwarden.com -carLicense: A5YKFC -departmentNumber: 3191 -employeeType: Contract -homePhone: +1 415 470-8893 -initials: H. F. -mobile: +1 415 591-1902 -pager: +1 415 341-4046 -roomNumber: 9674 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Annie Eaton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annie Eaton -sn: Eaton -description: This is Annie Eaton's description -facsimileTelephoneNumber: +1 213 280-7327 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 198-3214 -title: Supreme Product Testing Manager -userPassword: Password1 -uid: EatonA -givenName: Annie -mail: EatonA@fd60ce8a79b644ba9d190b4bf769b6de.bitwarden.com -carLicense: VGAHM0 -departmentNumber: 7013 -employeeType: Employee -homePhone: +1 213 458-6127 -initials: A. E. -mobile: +1 213 400-1685 -pager: +1 213 751-8141 -roomNumber: 8958 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maskell Fung,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maskell Fung -sn: Fung -description: This is Maskell Fung's description -facsimileTelephoneNumber: +1 804 269-6666 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 804 323-8013 -title: Supreme Human Resources Figurehead -userPassword: Password1 -uid: FungM -givenName: Maskell -mail: FungM@841cbd92bca942e386baa349c14cda77.bitwarden.com -carLicense: SBA3BL -departmentNumber: 9312 -employeeType: Normal -homePhone: +1 804 636-2035 -initials: M. F. -mobile: +1 804 341-7488 -pager: +1 804 317-5730 -roomNumber: 9277 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theressa MyersPillsworth -sn: MyersPillsworth -description: This is Theressa MyersPillsworth's description -facsimileTelephoneNumber: +1 818 171-7103 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 291-2970 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: MyersPiT -givenName: Theressa -mail: MyersPiT@d18e37fd0424474ab347b36ca45a4af6.bitwarden.com -carLicense: AL1DY1 -departmentNumber: 2603 -employeeType: Contract -homePhone: +1 818 238-7700 -initials: T. M. -mobile: +1 818 274-8189 -pager: +1 818 366-3140 -roomNumber: 8637 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Franky Ramachandran,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franky Ramachandran -sn: Ramachandran -description: This is Franky Ramachandran's description -facsimileTelephoneNumber: +1 818 308-5758 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 127-3234 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: RamachaF -givenName: Franky -mail: RamachaF@1d233bc1764446c09e064881135ef88f.bitwarden.com -carLicense: RVAL7Q -departmentNumber: 1224 -employeeType: Employee -homePhone: +1 818 157-5726 -initials: F. R. -mobile: +1 818 447-1395 -pager: +1 818 807-9207 -roomNumber: 9467 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emlynn Diaconu -sn: Diaconu -description: This is Emlynn Diaconu's description -facsimileTelephoneNumber: +1 818 737-6426 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 818 551-6704 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: DiaconuE -givenName: Emlynn -mail: DiaconuE@3847a8977cfb45d4b03770a60a27477f.bitwarden.com -carLicense: DK5PPG -departmentNumber: 8510 -employeeType: Contract -homePhone: +1 818 824-9803 -initials: E. D. -mobile: +1 818 853-4818 -pager: +1 818 718-4488 -roomNumber: 9089 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sherri StJohn,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherri StJohn -sn: StJohn -description: This is Sherri StJohn's description -facsimileTelephoneNumber: +1 804 171-3181 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 314-6317 -title: Junior Payroll Mascot -userPassword: Password1 -uid: StJohnS -givenName: Sherri -mail: StJohnS@0d2070a7704249ccae81fc4b91659074.bitwarden.com -carLicense: SVHCBX -departmentNumber: 1316 -employeeType: Contract -homePhone: +1 804 575-4894 -initials: S. S. -mobile: +1 804 834-5640 -pager: +1 804 361-1961 -roomNumber: 8981 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Laser Kokkat,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laser Kokkat -sn: Kokkat -description: This is Laser Kokkat's description -facsimileTelephoneNumber: +1 804 610-4790 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 804 780-1712 -title: Chief Administrative Admin -userPassword: Password1 -uid: KokkatL -givenName: Laser -mail: KokkatL@e83223057d6e4f9fa1110e3c4b1d1907.bitwarden.com -carLicense: DXTPVP -departmentNumber: 3864 -employeeType: Employee -homePhone: +1 804 552-6239 -initials: L. K. -mobile: +1 804 310-3660 -pager: +1 804 333-9153 -roomNumber: 9371 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kjell Boatwright,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kjell Boatwright -sn: Boatwright -description: This is Kjell Boatwright's description -facsimileTelephoneNumber: +1 415 827-9525 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 354-7822 -title: Junior Management Artist -userPassword: Password1 -uid: BoatwriK -givenName: Kjell -mail: BoatwriK@556b8709dd59455493d3a037cd03b5fa.bitwarden.com -carLicense: VJT5GH -departmentNumber: 7151 -employeeType: Normal -homePhone: +1 415 648-9671 -initials: K. B. -mobile: +1 415 471-4041 -pager: +1 415 221-4218 -roomNumber: 8248 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lilly Keane,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilly Keane -sn: Keane -description: This is Lilly Keane's description -facsimileTelephoneNumber: +1 818 612-8841 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 442-6255 -title: Junior Product Development Visionary -userPassword: Password1 -uid: KeaneL -givenName: Lilly -mail: KeaneL@8d8652ab29984781b99266ecccddeda6.bitwarden.com -carLicense: U16N9U -departmentNumber: 1453 -employeeType: Normal -homePhone: +1 818 124-5247 -initials: L. K. -mobile: +1 818 602-6666 -pager: +1 818 462-6898 -roomNumber: 8855 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Guenther Feith,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guenther Feith -sn: Feith -description: This is Guenther Feith's description -facsimileTelephoneNumber: +1 415 622-1117 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 401-7456 -title: Associate Product Development Assistant -userPassword: Password1 -uid: FeithG -givenName: Guenther -mail: FeithG@fdb934baa6cc448ab7c3fa9c2435f30a.bitwarden.com -carLicense: MAMD4L -departmentNumber: 4560 -employeeType: Contract -homePhone: +1 415 703-1348 -initials: G. F. -mobile: +1 415 781-4326 -pager: +1 415 617-2991 -roomNumber: 9965 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lulu Myrillas -sn: Myrillas -description: This is Lulu Myrillas's description -facsimileTelephoneNumber: +1 206 348-9926 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 996-8912 -title: Junior Product Testing Figurehead -userPassword: Password1 -uid: MyrillaL -givenName: Lulu -mail: MyrillaL@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com -carLicense: ME15B7 -departmentNumber: 5242 -employeeType: Employee -homePhone: +1 206 805-1576 -initials: L. M. -mobile: +1 206 858-5239 -pager: +1 206 929-3284 -roomNumber: 8521 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marissa Pizzimenti -sn: Pizzimenti -description: This is Marissa Pizzimenti's description -facsimileTelephoneNumber: +1 510 253-1509 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 345-1574 -title: Chief Product Testing Engineer -userPassword: Password1 -uid: PizzimeM -givenName: Marissa -mail: PizzimeM@ff3f483373584f4f897f71c3fe6f9fc4.bitwarden.com -carLicense: IDET7D -departmentNumber: 9481 -employeeType: Normal -homePhone: +1 510 833-2853 -initials: M. P. -mobile: +1 510 543-6888 -pager: +1 510 535-5178 -roomNumber: 8874 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gus Brodfuehrer -sn: Brodfuehrer -description: This is Gus Brodfuehrer's description -facsimileTelephoneNumber: +1 415 368-2317 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 980-8049 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: BrodfueG -givenName: Gus -mail: BrodfueG@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com -carLicense: DPFP2D -departmentNumber: 2518 -employeeType: Employee -homePhone: +1 415 744-8967 -initials: G. B. -mobile: +1 415 228-8380 -pager: +1 415 814-7049 -roomNumber: 9504 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ross Whitaker,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ross Whitaker -sn: Whitaker -description: This is Ross Whitaker's description -facsimileTelephoneNumber: +1 206 541-6360 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 978-2560 -title: Supreme Payroll Fellow -userPassword: Password1 -uid: WhitakeR -givenName: Ross -mail: WhitakeR@37e3de35a8c340a7b99329132ff492e1.bitwarden.com -carLicense: L76RFD -departmentNumber: 3311 -employeeType: Normal -homePhone: +1 206 342-2754 -initials: R. W. -mobile: +1 206 905-8522 -pager: +1 206 637-7649 -roomNumber: 9985 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tessi Franze,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tessi Franze -sn: Franze -description: This is Tessi Franze's description -facsimileTelephoneNumber: +1 804 993-9379 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 943-2794 -title: Associate Management Czar -userPassword: Password1 -uid: FranzeT -givenName: Tessi -mail: FranzeT@0846b8b864144146a31ad2391920589e.bitwarden.com -carLicense: IUCY1C -departmentNumber: 2771 -employeeType: Employee -homePhone: +1 804 605-5660 -initials: T. F. -mobile: +1 804 821-2124 -pager: +1 804 301-2659 -roomNumber: 8668 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Norel Aly,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norel Aly -sn: Aly -description: This is Norel Aly's description -facsimileTelephoneNumber: +1 818 310-2863 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 151-2766 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: AlyN -givenName: Norel -mail: AlyN@75d70d8bb4aa49b095b06f96258b5907.bitwarden.com -carLicense: I3I48N -departmentNumber: 1767 -employeeType: Normal -homePhone: +1 818 507-9302 -initials: N. A. -mobile: +1 818 624-8721 -pager: +1 818 921-9847 -roomNumber: 8175 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YeeNing Lamy -sn: Lamy -description: This is YeeNing Lamy's description -facsimileTelephoneNumber: +1 804 113-5216 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 433-7512 -title: Associate Janitorial Czar -userPassword: Password1 -uid: LamyY -givenName: YeeNing -mail: LamyY@1a99800019bc40cc83877edaa3c037bd.bitwarden.com -carLicense: NLPPA8 -departmentNumber: 6678 -employeeType: Employee -homePhone: +1 804 620-7085 -initials: Y. L. -mobile: +1 804 232-3865 -pager: +1 804 276-9514 -roomNumber: 9971 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Minetta Mackzum,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minetta Mackzum -sn: Mackzum -description: This is Minetta Mackzum's description -facsimileTelephoneNumber: +1 415 814-6019 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 989-4316 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: MackzumM -givenName: Minetta -mail: MackzumM@1919bfc426ed49ff8f4f00e3c1b79887.bitwarden.com -carLicense: 6SMUAT -departmentNumber: 7374 -employeeType: Contract -homePhone: +1 415 705-1062 -initials: M. M. -mobile: +1 415 524-8286 -pager: +1 415 324-4157 -roomNumber: 8725 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Javier Kinsey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Javier Kinsey -sn: Kinsey -description: This is Javier Kinsey's description -facsimileTelephoneNumber: +1 408 788-9692 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 830-8813 -title: Chief Administrative Fellow -userPassword: Password1 -uid: KinseyJ -givenName: Javier -mail: KinseyJ@c2d4d5c90abe4da59c140390730b8767.bitwarden.com -carLicense: F1SSC5 -departmentNumber: 2606 -employeeType: Contract -homePhone: +1 408 882-4729 -initials: J. K. -mobile: +1 408 649-7457 -pager: +1 408 387-5964 -roomNumber: 8271 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Donelle Stites,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donelle Stites -sn: Stites -description: This is Donelle Stites's description -facsimileTelephoneNumber: +1 415 566-7229 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 536-4889 -title: Junior Human Resources Engineer -userPassword: Password1 -uid: StitesD -givenName: Donelle -mail: StitesD@fdf5161eeea14f4092d0d9d3593c3092.bitwarden.com -carLicense: U4RA74 -departmentNumber: 5787 -employeeType: Employee -homePhone: +1 415 310-6841 -initials: D. S. -mobile: +1 415 555-9229 -pager: +1 415 796-8639 -roomNumber: 8392 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelyn Cruzado -sn: Cruzado -description: This is Madelyn Cruzado's description -facsimileTelephoneNumber: +1 408 192-3507 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 408 671-4584 -title: Master Janitorial Director -userPassword: Password1 -uid: CruzadoM -givenName: Madelyn -mail: CruzadoM@39eecbf6644e41e6a54aa634c1d5a5be.bitwarden.com -carLicense: F3H6LE -departmentNumber: 7696 -employeeType: Normal -homePhone: +1 408 833-6465 -initials: M. C. -mobile: +1 408 270-8786 -pager: +1 408 975-8669 -roomNumber: 9684 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sophia Gazo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sophia Gazo -sn: Gazo -description: This is Sophia Gazo's description -facsimileTelephoneNumber: +1 415 732-4382 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 415 900-2882 -title: Master Human Resources Engineer -userPassword: Password1 -uid: GazoS -givenName: Sophia -mail: GazoS@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com -carLicense: Q4QU2A -departmentNumber: 4799 -employeeType: Contract -homePhone: +1 415 239-4695 -initials: S. G. -mobile: +1 415 138-3784 -pager: +1 415 885-6550 -roomNumber: 9271 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tosca Julian,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tosca Julian -sn: Julian -description: This is Tosca Julian's description -facsimileTelephoneNumber: +1 206 699-7511 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 826-1181 -title: Associate Peons Fellow -userPassword: Password1 -uid: JulianT -givenName: Tosca -mail: JulianT@6f41089f10e04d909c665abe82ffe115.bitwarden.com -carLicense: Y9AEXG -departmentNumber: 3685 -employeeType: Contract -homePhone: +1 206 335-3759 -initials: T. J. -mobile: +1 206 109-7362 -pager: +1 206 980-5159 -roomNumber: 9266 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kellyann Stotz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kellyann Stotz -sn: Stotz -description: This is Kellyann Stotz's description -facsimileTelephoneNumber: +1 213 579-9889 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 213 455-2694 -title: Chief Administrative Warrior -userPassword: Password1 -uid: StotzK -givenName: Kellyann -mail: StotzK@40079c706f0f41f9961a4ed47bc17c65.bitwarden.com -carLicense: 5FP1GW -departmentNumber: 1818 -employeeType: Normal -homePhone: +1 213 432-4896 -initials: K. S. -mobile: +1 213 679-5447 -pager: +1 213 775-5615 -roomNumber: 9041 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ende Broome,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ende Broome -sn: Broome -description: This is Ende Broome's description -facsimileTelephoneNumber: +1 510 511-8702 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 829-2102 -title: Master Administrative Janitor -userPassword: Password1 -uid: BroomeE -givenName: Ende -mail: BroomeE@49df2859910a4e4f8317d17a3be2945d.bitwarden.com -carLicense: T1QSP7 -departmentNumber: 9522 -employeeType: Normal -homePhone: +1 510 495-1488 -initials: E. B. -mobile: +1 510 220-8844 -pager: +1 510 749-6195 -roomNumber: 8081 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Utilla PKDCD -sn: PKDCD -description: This is Utilla PKDCD's description -facsimileTelephoneNumber: +1 206 688-4119 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 408-3379 -title: Junior Janitorial Stooge -userPassword: Password1 -uid: PKDCDU -givenName: Utilla -mail: PKDCDU@7aacbd71f8ff494eb7b5df5ac830a7a6.bitwarden.com -carLicense: O68HP2 -departmentNumber: 6281 -employeeType: Contract -homePhone: +1 206 550-4394 -initials: U. P. -mobile: +1 206 614-7231 -pager: +1 206 646-8764 -roomNumber: 9910 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Krystalle Barnes,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krystalle Barnes -sn: Barnes -description: This is Krystalle Barnes's description -facsimileTelephoneNumber: +1 408 731-8367 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 491-4152 -title: Junior Payroll Stooge -userPassword: Password1 -uid: BarnesK -givenName: Krystalle -mail: BarnesK@893034d40ae747fcb94aa3c93f26d5c8.bitwarden.com -carLicense: Y1EJPT -departmentNumber: 7068 -employeeType: Normal -homePhone: +1 408 669-9503 -initials: K. B. -mobile: +1 408 336-7612 -pager: +1 408 887-2706 -roomNumber: 8560 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jordana Pinsonneault -sn: Pinsonneault -description: This is Jordana Pinsonneault's description -facsimileTelephoneNumber: +1 804 442-8901 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 795-4723 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: PinsonnJ -givenName: Jordana -mail: PinsonnJ@3307e42f1d8c4293bd7a59fddc05e774.bitwarden.com -carLicense: 204GTO -departmentNumber: 7744 -employeeType: Contract -homePhone: +1 804 406-2565 -initials: J. P. -mobile: +1 804 968-2368 -pager: +1 804 742-3122 -roomNumber: 8718 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Janaye Woodward,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janaye Woodward -sn: Woodward -description: This is Janaye Woodward's description -facsimileTelephoneNumber: +1 415 227-3460 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 936-9729 -title: Supreme Management Grunt -userPassword: Password1 -uid: WoodwarJ -givenName: Janaye -mail: WoodwarJ@cff29f28824b49c2bb3b80efc41d7e67.bitwarden.com -carLicense: FNJD93 -departmentNumber: 4505 -employeeType: Normal -homePhone: +1 415 331-7415 -initials: J. W. -mobile: +1 415 564-8983 -pager: +1 415 368-3898 -roomNumber: 8289 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Margot Morin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margot Morin -sn: Morin -description: This is Margot Morin's description -facsimileTelephoneNumber: +1 804 806-4975 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 383-5690 -title: Supreme Peons Admin -userPassword: Password1 -uid: MorinM -givenName: Margot -mail: MorinM@0998558a764541358e8e70ab479cfe9c.bitwarden.com -carLicense: CJ36C0 -departmentNumber: 6567 -employeeType: Employee -homePhone: +1 804 757-4696 -initials: M. M. -mobile: +1 804 841-8360 -pager: +1 804 394-8786 -roomNumber: 8201 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Izumi LeGuen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Izumi LeGuen -sn: LeGuen -description: This is Izumi LeGuen's description -facsimileTelephoneNumber: +1 818 197-5387 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 161-2954 -title: Junior Peons Janitor -userPassword: Password1 -uid: LeGuenI -givenName: Izumi -mail: LeGuenI@c618b1ff4b584c0d8f7ff45342beefcd.bitwarden.com -carLicense: Y161JU -departmentNumber: 7624 -employeeType: Contract -homePhone: +1 818 503-4366 -initials: I. L. -mobile: +1 818 917-4770 -pager: +1 818 605-7944 -roomNumber: 8779 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ZehirCharlie Donak -sn: Donak -description: This is ZehirCharlie Donak's description -facsimileTelephoneNumber: +1 206 402-3057 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 698-4465 -title: Supreme Peons Madonna -userPassword: Password1 -uid: DonakZ -givenName: ZehirCharlie -mail: DonakZ@2fd47af450d743418108699823631680.bitwarden.com -carLicense: QNKD6W -departmentNumber: 1479 -employeeType: Normal -homePhone: +1 206 508-6457 -initials: Z. D. -mobile: +1 206 623-5586 -pager: +1 206 916-3590 -roomNumber: 8649 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Constance Boynton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constance Boynton -sn: Boynton -description: This is Constance Boynton's description -facsimileTelephoneNumber: +1 510 709-5562 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 920-9490 -title: Associate Management Vice President -userPassword: Password1 -uid: BoyntonC -givenName: Constance -mail: BoyntonC@fdb2f5b287e8463ca2c07913962256d3.bitwarden.com -carLicense: Q2IPV8 -departmentNumber: 6797 -employeeType: Employee -homePhone: +1 510 791-5981 -initials: C. B. -mobile: +1 510 569-2558 -pager: +1 510 956-7545 -roomNumber: 8070 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Georgia Blazer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgia Blazer -sn: Blazer -description: This is Georgia Blazer's description -facsimileTelephoneNumber: +1 415 103-5769 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 339-2846 -title: Junior Payroll Consultant -userPassword: Password1 -uid: BlazerG -givenName: Georgia -mail: BlazerG@5410deb36536455cba5926244af94c93.bitwarden.com -carLicense: D07SXR -departmentNumber: 8984 -employeeType: Normal -homePhone: +1 415 478-9802 -initials: G. B. -mobile: +1 415 245-4301 -pager: +1 415 195-7555 -roomNumber: 9687 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherin Cruzado -sn: Cruzado -description: This is Cherin Cruzado's description -facsimileTelephoneNumber: +1 213 322-2090 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 213 797-6522 -title: Associate Human Resources Visionary -userPassword: Password1 -uid: CruzadoC -givenName: Cherin -mail: CruzadoC@60dd1cbe4aa24d86beb286bcf0b69548.bitwarden.com -carLicense: UF9O28 -departmentNumber: 6106 -employeeType: Normal -homePhone: +1 213 867-4901 -initials: C. C. -mobile: +1 213 412-1229 -pager: +1 213 479-8956 -roomNumber: 9012 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Millard Lightfield,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Millard Lightfield -sn: Lightfield -description: This is Millard Lightfield's description -facsimileTelephoneNumber: +1 408 790-4441 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 164-6201 -title: Junior Payroll Czar -userPassword: Password1 -uid: LightfiM -givenName: Millard -mail: LightfiM@f09e11e5beca4779a4a93445ceda8470.bitwarden.com -carLicense: 5WAV2P -departmentNumber: 8596 -employeeType: Contract -homePhone: +1 408 621-9296 -initials: M. L. -mobile: +1 408 337-9808 -pager: +1 408 280-5061 -roomNumber: 9244 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clio Bugajska,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clio Bugajska -sn: Bugajska -description: This is Clio Bugajska's description -facsimileTelephoneNumber: +1 206 409-8267 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 623-8662 -title: Chief Management Dictator -userPassword: Password1 -uid: BugajskC -givenName: Clio -mail: BugajskC@7eaed4562d46473686db6a642d66ce05.bitwarden.com -carLicense: ER0E7G -departmentNumber: 1828 -employeeType: Employee -homePhone: +1 206 685-5339 -initials: C. B. -mobile: +1 206 554-4157 -pager: +1 206 398-7822 -roomNumber: 8757 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dania Nesbitt -sn: Nesbitt -description: This is Dania Nesbitt's description -facsimileTelephoneNumber: +1 206 308-9916 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 368-4297 -title: Supreme Human Resources Czar -userPassword: Password1 -uid: NesbittD -givenName: Dania -mail: NesbittD@f9ae3791c7af4048ba041c1bc79adda2.bitwarden.com -carLicense: DXQ3PL -departmentNumber: 4661 -employeeType: Normal -homePhone: +1 206 112-7288 -initials: D. N. -mobile: +1 206 379-4057 -pager: +1 206 160-5953 -roomNumber: 8760 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sundaram Urquhart -sn: Urquhart -description: This is Sundaram Urquhart's description -facsimileTelephoneNumber: +1 408 165-6933 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 286-5020 -title: Chief Product Development Developer -userPassword: Password1 -uid: UrquharS -givenName: Sundaram -mail: UrquharS@81b16d15c9e143e79666e62f2a341c67.bitwarden.com -carLicense: P8TV68 -departmentNumber: 1249 -employeeType: Normal -homePhone: +1 408 576-5704 -initials: S. U. -mobile: +1 408 750-9512 -pager: +1 408 501-9917 -roomNumber: 8858 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anitra Metrics,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anitra Metrics -sn: Metrics -description: This is Anitra Metrics's description -facsimileTelephoneNumber: +1 818 594-4011 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 372-5325 -title: Master Administrative Pinhead -userPassword: Password1 -uid: MetricsA -givenName: Anitra -mail: MetricsA@979af2384f8d4cccbd0dba8e3c326005.bitwarden.com -carLicense: DOX8RM -departmentNumber: 3392 -employeeType: Employee -homePhone: +1 818 140-7203 -initials: A. M. -mobile: +1 818 947-3596 -pager: +1 818 371-5109 -roomNumber: 8301 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Manish Strachan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manish Strachan -sn: Strachan -description: This is Manish Strachan's description -facsimileTelephoneNumber: +1 510 297-9601 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 515-8145 -title: Supreme Janitorial Technician -userPassword: Password1 -uid: StrachaM -givenName: Manish -mail: StrachaM@438192a801ea415ab5a1cb73b87d8559.bitwarden.com -carLicense: 7N42LV -departmentNumber: 4930 -employeeType: Normal -homePhone: +1 510 443-5691 -initials: M. S. -mobile: +1 510 846-8785 -pager: +1 510 751-5590 -roomNumber: 9646 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nessy Langton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nessy Langton -sn: Langton -description: This is Nessy Langton's description -facsimileTelephoneNumber: +1 206 195-4492 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 406-3079 -title: Associate Payroll Consultant -userPassword: Password1 -uid: LangtonN -givenName: Nessy -mail: LangtonN@685a3d9fd790422d8fb825f7a90cab65.bitwarden.com -carLicense: 9JLAP4 -departmentNumber: 8866 -employeeType: Contract -homePhone: +1 206 709-8958 -initials: N. L. -mobile: +1 206 287-2091 -pager: +1 206 777-5456 -roomNumber: 8832 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leonida Moncur,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonida Moncur -sn: Moncur -description: This is Leonida Moncur's description -facsimileTelephoneNumber: +1 510 417-1257 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 667-4639 -title: Master Human Resources Warrior -userPassword: Password1 -uid: MoncurL -givenName: Leonida -mail: MoncurL@7bb8f37e955d4f04a6cccdb2666d9559.bitwarden.com -carLicense: BUHBPA -departmentNumber: 7757 -employeeType: Normal -homePhone: +1 510 753-9307 -initials: L. M. -mobile: +1 510 505-6018 -pager: +1 510 993-8977 -roomNumber: 9053 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Uday Australia,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Uday Australia -sn: Australia -description: This is Uday Australia's description -facsimileTelephoneNumber: +1 408 465-6318 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 913-9335 -title: Master Human Resources Grunt -userPassword: Password1 -uid: AustralU -givenName: Uday -mail: AustralU@af9b2025e2d4428a825c1c465719ccc7.bitwarden.com -carLicense: V69A9V -departmentNumber: 4666 -employeeType: Employee -homePhone: +1 408 817-2795 -initials: U. A. -mobile: +1 408 751-6398 -pager: +1 408 896-4886 -roomNumber: 9872 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bren Marzella,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bren Marzella -sn: Marzella -description: This is Bren Marzella's description -facsimileTelephoneNumber: +1 415 512-4753 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 415 669-1668 -title: Associate Management Grunt -userPassword: Password1 -uid: MarzellB -givenName: Bren -mail: MarzellB@155d8ce7e5114a6694664bdd20a1e763.bitwarden.com -carLicense: DGDW7M -departmentNumber: 3956 -employeeType: Contract -homePhone: +1 415 767-5834 -initials: B. M. -mobile: +1 415 701-9587 -pager: +1 415 396-6807 -roomNumber: 9765 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vries Bathrick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vries Bathrick -sn: Bathrick -description: This is Vries Bathrick's description -facsimileTelephoneNumber: +1 804 593-3804 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 372-3846 -title: Junior Management Director -userPassword: Password1 -uid: BathricV -givenName: Vries -mail: BathricV@0838c5a7fb7841708f56102b10a6cd6b.bitwarden.com -carLicense: KL7I2R -departmentNumber: 5898 -employeeType: Normal -homePhone: +1 804 499-5666 -initials: V. B. -mobile: +1 804 270-5736 -pager: +1 804 865-8659 -roomNumber: 9749 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maryann Felix,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryann Felix -sn: Felix -description: This is Maryann Felix's description -facsimileTelephoneNumber: +1 804 287-4961 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 804 329-8954 -title: Junior Payroll Figurehead -userPassword: Password1 -uid: FelixM -givenName: Maryann -mail: FelixM@a391c3a07b8943028fe45f62f25be101.bitwarden.com -carLicense: VY6K75 -departmentNumber: 2903 -employeeType: Normal -homePhone: +1 804 444-4901 -initials: M. F. -mobile: +1 804 471-8437 -pager: +1 804 320-1088 -roomNumber: 8355 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carly Bugajski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carly Bugajski -sn: Bugajski -description: This is Carly Bugajski's description -facsimileTelephoneNumber: +1 213 889-4469 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 705-8562 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: BugajskC -givenName: Carly -mail: BugajskC@582578f4c0a34d7283b52c37fe385620.bitwarden.com -carLicense: Q2A138 -departmentNumber: 6227 -employeeType: Contract -homePhone: +1 213 720-2427 -initials: C. B. -mobile: +1 213 108-6303 -pager: +1 213 910-6930 -roomNumber: 8080 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Baruk Zinn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baruk Zinn -sn: Zinn -description: This is Baruk Zinn's description -facsimileTelephoneNumber: +1 415 454-8057 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 607-1829 -title: Junior Janitorial Admin -userPassword: Password1 -uid: ZinnB -givenName: Baruk -mail: ZinnB@efc74300757e4917afeffd6512cd005c.bitwarden.com -carLicense: DP7CAF -departmentNumber: 4980 -employeeType: Employee -homePhone: +1 415 876-5613 -initials: B. Z. -mobile: +1 415 272-5009 -pager: +1 415 758-8589 -roomNumber: 8302 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorianne Ketley -sn: Ketley -description: This is Lorianne Ketley's description -facsimileTelephoneNumber: +1 213 958-9295 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 571-9452 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: KetleyL -givenName: Lorianne -mail: KetleyL@9176a4c133264d3d804cb9216deeac80.bitwarden.com -carLicense: A3NYV7 -departmentNumber: 5769 -employeeType: Employee -homePhone: +1 213 174-5769 -initials: L. K. -mobile: +1 213 650-1018 -pager: +1 213 893-6894 -roomNumber: 9678 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Robinett Etten,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinett Etten -sn: Etten -description: This is Robinett Etten's description -facsimileTelephoneNumber: +1 206 463-3375 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 741-4193 -title: Supreme Janitorial Technician -userPassword: Password1 -uid: EttenR -givenName: Robinett -mail: EttenR@51b0dfaaac8e469582446b31c5cb1bfd.bitwarden.com -carLicense: RARKGH -departmentNumber: 1208 -employeeType: Normal -homePhone: +1 206 803-9105 -initials: R. E. -mobile: +1 206 176-9697 -pager: +1 206 292-2808 -roomNumber: 8078 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tobye Scandrett -sn: Scandrett -description: This is Tobye Scandrett's description -facsimileTelephoneNumber: +1 213 105-2551 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 838-5187 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: ScandreT -givenName: Tobye -mail: ScandreT@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com -carLicense: BVUBB8 -departmentNumber: 2342 -employeeType: Employee -homePhone: +1 213 539-5534 -initials: T. S. -mobile: +1 213 973-4004 -pager: +1 213 465-3642 -roomNumber: 8440 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Monteene Fraties,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monteene Fraties -sn: Fraties -description: This is Monteene Fraties's description -facsimileTelephoneNumber: +1 213 570-6053 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 308-7527 -title: Master Peons Evangelist -userPassword: Password1 -uid: FratiesM -givenName: Monteene -mail: FratiesM@49237b860d1f43eba86c8a5d68311c7b.bitwarden.com -carLicense: JBNR9C -departmentNumber: 4247 -employeeType: Contract -homePhone: +1 213 351-7494 -initials: M. F. -mobile: +1 213 659-7732 -pager: +1 213 222-5613 -roomNumber: 8236 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jo Ritter,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jo Ritter -sn: Ritter -description: This is Jo Ritter's description -facsimileTelephoneNumber: +1 415 349-3831 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 366-8049 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: RitterJ -givenName: Jo -mail: RitterJ@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com -carLicense: 5PEKK4 -departmentNumber: 3617 -employeeType: Contract -homePhone: +1 415 769-6255 -initials: J. R. -mobile: +1 415 465-6913 -pager: +1 415 936-3647 -roomNumber: 9869 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Laurent Viehweg,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laurent Viehweg -sn: Viehweg -description: This is Laurent Viehweg's description -facsimileTelephoneNumber: +1 206 204-2645 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 588-1670 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: ViehwegL -givenName: Laurent -mail: ViehwegL@ef13a1a456c847c69f1a9c739972d1e5.bitwarden.com -carLicense: UYK4B5 -departmentNumber: 7053 -employeeType: Contract -homePhone: +1 206 772-7631 -initials: L. V. -mobile: +1 206 367-3402 -pager: +1 206 191-7510 -roomNumber: 8551 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Devonne Erickson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devonne Erickson -sn: Erickson -description: This is Devonne Erickson's description -facsimileTelephoneNumber: +1 415 912-7820 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 205-4018 -title: Junior Administrative Consultant -userPassword: Password1 -uid: EricksoD -givenName: Devonne -mail: EricksoD@8227646c55034cf9b21757fce681b53f.bitwarden.com -carLicense: 3JW70N -departmentNumber: 2453 -employeeType: Contract -homePhone: +1 415 358-1507 -initials: D. E. -mobile: +1 415 170-3942 -pager: +1 415 108-2268 -roomNumber: 8089 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chantal Di,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chantal Di -sn: Di -description: This is Chantal Di's description -facsimileTelephoneNumber: +1 510 558-1173 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 572-8369 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: DiC -givenName: Chantal -mail: DiC@bd8c56963a9f48dfb73b8a3322b6fe38.bitwarden.com -carLicense: D9QCDY -departmentNumber: 2171 -employeeType: Contract -homePhone: +1 510 288-4720 -initials: C. D. -mobile: +1 510 344-8002 -pager: +1 510 547-1131 -roomNumber: 8053 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sluis Quek,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sluis Quek -sn: Quek -description: This is Sluis Quek's description -facsimileTelephoneNumber: +1 415 367-2250 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 942-8029 -title: Chief Product Development Assistant -userPassword: Password1 -uid: QuekS -givenName: Sluis -mail: QuekS@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com -carLicense: 695KF9 -departmentNumber: 5496 -employeeType: Employee -homePhone: +1 415 307-4551 -initials: S. Q. -mobile: +1 415 352-6365 -pager: +1 415 822-6139 -roomNumber: 9496 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Maxey Cavasso,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maxey Cavasso -sn: Cavasso -description: This is Maxey Cavasso's description -facsimileTelephoneNumber: +1 510 102-2211 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 161-6514 -title: Chief Management Consultant -userPassword: Password1 -uid: CavassoM -givenName: Maxey -mail: CavassoM@bbc2ed84411d4a40af49ae614b080b8d.bitwarden.com -carLicense: N5FJE9 -departmentNumber: 2219 -employeeType: Normal -homePhone: +1 510 373-5383 -initials: M. C. -mobile: +1 510 585-9622 -pager: +1 510 476-9201 -roomNumber: 9284 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Claire Greveling,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claire Greveling -sn: Greveling -description: This is Claire Greveling's description -facsimileTelephoneNumber: +1 206 980-8010 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 208-5938 -title: Chief Product Development Grunt -userPassword: Password1 -uid: GreveliC -givenName: Claire -mail: GreveliC@cc71e71454d64842b764308435f8b9ce.bitwarden.com -carLicense: JTI2O8 -departmentNumber: 8959 -employeeType: Normal -homePhone: +1 206 726-8459 -initials: C. G. -mobile: +1 206 796-6710 -pager: +1 206 384-5724 -roomNumber: 8519 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Keven Krishnan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keven Krishnan -sn: Krishnan -description: This is Keven Krishnan's description -facsimileTelephoneNumber: +1 510 884-5414 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 510 667-6743 -title: Supreme Administrative Evangelist -userPassword: Password1 -uid: KrishnaK -givenName: Keven -mail: KrishnaK@4f2c10e7af1a452181b6cc4729edcbe0.bitwarden.com -carLicense: B00BHQ -departmentNumber: 6170 -employeeType: Normal -homePhone: +1 510 302-4338 -initials: K. K. -mobile: +1 510 870-2965 -pager: +1 510 335-9959 -roomNumber: 9976 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dau Banigan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dau Banigan -sn: Banigan -description: This is Dau Banigan's description -facsimileTelephoneNumber: +1 206 607-4157 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 184-7341 -title: Junior Payroll Assistant -userPassword: Password1 -uid: BaniganD -givenName: Dau -mail: BaniganD@2e5f5aa98def49769eb37d64a6e3527e.bitwarden.com -carLicense: AS9DJY -departmentNumber: 9804 -employeeType: Contract -homePhone: +1 206 148-9152 -initials: D. B. -mobile: +1 206 309-7924 -pager: +1 206 938-2562 -roomNumber: 9370 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kayla Carlisle,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kayla Carlisle -sn: Carlisle -description: This is Kayla Carlisle's description -facsimileTelephoneNumber: +1 415 497-7610 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 775-2945 -title: Associate Administrative Mascot -userPassword: Password1 -uid: CarlislK -givenName: Kayla -mail: CarlislK@9384af23e6ba4db19b7b6c7e7b40705d.bitwarden.com -carLicense: ET87EK -departmentNumber: 3400 -employeeType: Contract -homePhone: +1 415 250-4398 -initials: K. C. -mobile: +1 415 835-9440 -pager: +1 415 277-9109 -roomNumber: 8643 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Juozas Hengl,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juozas Hengl -sn: Hengl -description: This is Juozas Hengl's description -facsimileTelephoneNumber: +1 510 375-6228 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 650-6174 -title: Junior Management Dictator -userPassword: Password1 -uid: HenglJ -givenName: Juozas -mail: HenglJ@ff24c4fb1fee4c4da9eb652af0cd5b6b.bitwarden.com -carLicense: SHD8NT -departmentNumber: 2836 -employeeType: Employee -homePhone: +1 510 876-2159 -initials: J. H. -mobile: +1 510 686-8854 -pager: +1 510 318-4933 -roomNumber: 8898 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ramniklal Traulich,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramniklal Traulich -sn: Traulich -description: This is Ramniklal Traulich's description -facsimileTelephoneNumber: +1 804 462-2144 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 978-8742 -title: Chief Management Vice President -userPassword: Password1 -uid: TraulicR -givenName: Ramniklal -mail: TraulicR@4467185dad394a2ab964d923a668f7a8.bitwarden.com -carLicense: 2DABRW -departmentNumber: 5725 -employeeType: Employee -homePhone: +1 804 853-9881 -initials: R. T. -mobile: +1 804 169-3363 -pager: +1 804 325-4197 -roomNumber: 9752 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=David Vennos,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: David Vennos -sn: Vennos -description: This is David Vennos's description -facsimileTelephoneNumber: +1 408 996-5270 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 186-7235 -title: Chief Product Testing Manager -userPassword: Password1 -uid: VennosD -givenName: David -mail: VennosD@096101f2d07e4904be121b35278935c1.bitwarden.com -carLicense: 8XJFVG -departmentNumber: 6677 -employeeType: Employee -homePhone: +1 408 712-7215 -initials: D. V. -mobile: +1 408 324-8177 -pager: +1 408 934-8823 -roomNumber: 8747 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shiela Nixon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shiela Nixon -sn: Nixon -description: This is Shiela Nixon's description -facsimileTelephoneNumber: +1 510 717-6965 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 154-5236 -title: Junior Administrative Grunt -userPassword: Password1 -uid: NixonS -givenName: Shiela -mail: NixonS@2ccf92b2367047e48fb3d1d7db3fa4ba.bitwarden.com -carLicense: LO2XRX -departmentNumber: 1441 -employeeType: Normal -homePhone: +1 510 117-9490 -initials: S. N. -mobile: +1 510 657-4105 -pager: +1 510 467-6937 -roomNumber: 8199 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mona Kohler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mona Kohler -sn: Kohler -description: This is Mona Kohler's description -facsimileTelephoneNumber: +1 804 964-6173 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 816-5811 -title: Junior Management Developer -userPassword: Password1 -uid: KohlerM -givenName: Mona -mail: KohlerM@8884ff0a9d924931a5d0a79e7e71fbe7.bitwarden.com -carLicense: 1G7G6D -departmentNumber: 1575 -employeeType: Contract -homePhone: +1 804 856-4901 -initials: M. K. -mobile: +1 804 777-6158 -pager: +1 804 440-2503 -roomNumber: 9151 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Elene DOrazio,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elene DOrazio -sn: DOrazio -description: This is Elene DOrazio's description -facsimileTelephoneNumber: +1 804 731-3212 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 642-1512 -title: Master Administrative Director -userPassword: Password1 -uid: DOrazioE -givenName: Elene -mail: DOrazioE@b8e727bc14df4a0daced5f490054e337.bitwarden.com -carLicense: SJQWYF -departmentNumber: 6902 -employeeType: Contract -homePhone: +1 804 708-1255 -initials: E. D. -mobile: +1 804 725-5979 -pager: +1 804 405-7711 -roomNumber: 9504 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elspeth Bussey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elspeth Bussey -sn: Bussey -description: This is Elspeth Bussey's description -facsimileTelephoneNumber: +1 415 196-4167 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 579-2905 -title: Associate Peons Janitor -userPassword: Password1 -uid: BusseyE -givenName: Elspeth -mail: BusseyE@aa5b41edbda84e7ca1fc888042ddc8a3.bitwarden.com -carLicense: EQ99SC -departmentNumber: 8427 -employeeType: Employee -homePhone: +1 415 663-5905 -initials: E. B. -mobile: +1 415 379-8123 -pager: +1 415 222-6230 -roomNumber: 9013 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mari Abbott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mari Abbott -sn: Abbott -description: This is Mari Abbott's description -facsimileTelephoneNumber: +1 415 784-1755 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 144-6412 -title: Junior Human Resources Janitor -userPassword: Password1 -uid: AbbottM -givenName: Mari -mail: AbbottM@d12cf402dbab4ca98b370d7e2c59928b.bitwarden.com -carLicense: XK3XG1 -departmentNumber: 3374 -employeeType: Normal -homePhone: +1 415 922-6505 -initials: M. A. -mobile: +1 415 238-1846 -pager: +1 415 742-2014 -roomNumber: 8412 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nanon Lavarnway -sn: Lavarnway -description: This is Nanon Lavarnway's description -facsimileTelephoneNumber: +1 804 436-1344 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 859-8372 -title: Chief Administrative Figurehead -userPassword: Password1 -uid: LavarnwN -givenName: Nanon -mail: LavarnwN@83f78532c82a4f77a10f2d7460348b85.bitwarden.com -carLicense: 97LC1J -departmentNumber: 4913 -employeeType: Employee -homePhone: +1 804 923-8676 -initials: N. L. -mobile: +1 804 527-3141 -pager: +1 804 216-1828 -roomNumber: 9426 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Josine Hwang,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Josine Hwang -sn: Hwang -description: This is Josine Hwang's description -facsimileTelephoneNumber: +1 206 704-5920 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 411-8783 -title: Chief Product Testing Dictator -userPassword: Password1 -uid: HwangJ -givenName: Josine -mail: HwangJ@535949b117544e80b4ad9c1fa166edb9.bitwarden.com -carLicense: JSV2S6 -departmentNumber: 1004 -employeeType: Employee -homePhone: +1 206 858-2573 -initials: J. H. -mobile: +1 206 397-9796 -pager: +1 206 895-9856 -roomNumber: 8163 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jawaid Humenik -sn: Humenik -description: This is Jawaid Humenik's description -facsimileTelephoneNumber: +1 206 797-5028 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 665-9539 -title: Chief Human Resources Figurehead -userPassword: Password1 -uid: HumenikJ -givenName: Jawaid -mail: HumenikJ@17c722e6b16149e08a18c9a05c1e5e9e.bitwarden.com -carLicense: RWYWPN -departmentNumber: 9527 -employeeType: Employee -homePhone: +1 206 399-3912 -initials: J. H. -mobile: +1 206 849-1151 -pager: +1 206 447-6022 -roomNumber: 8433 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hafeezah Nezon -sn: Nezon -description: This is Hafeezah Nezon's description -facsimileTelephoneNumber: +1 804 612-5069 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 905-7551 -title: Supreme Product Testing Evangelist -userPassword: Password1 -uid: NezonH -givenName: Hafeezah -mail: NezonH@5eb82c53226242fd8c7b8521feffe50f.bitwarden.com -carLicense: K1IKBK -departmentNumber: 3746 -employeeType: Normal -homePhone: +1 804 150-2042 -initials: H. N. -mobile: +1 804 153-5972 -pager: +1 804 764-4753 -roomNumber: 8544 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gypsy Weiser,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gypsy Weiser -sn: Weiser -description: This is Gypsy Weiser's description -facsimileTelephoneNumber: +1 206 499-9297 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 372-4435 -title: Supreme Payroll Director -userPassword: Password1 -uid: WeiserG -givenName: Gypsy -mail: WeiserG@352885b42f264ade8eacdfa709cc8cc4.bitwarden.com -carLicense: D05W6B -departmentNumber: 6088 -employeeType: Normal -homePhone: +1 206 293-2947 -initials: G. W. -mobile: +1 206 500-9709 -pager: +1 206 480-7762 -roomNumber: 8624 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nir Cornaro,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nir Cornaro -sn: Cornaro -description: This is Nir Cornaro's description -facsimileTelephoneNumber: +1 415 990-5533 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 415 443-4739 -title: Supreme Payroll Manager -userPassword: Password1 -uid: CornaroN -givenName: Nir -mail: CornaroN@7ac8324ed047496d93c460651ba38b86.bitwarden.com -carLicense: 10PLPR -departmentNumber: 3355 -employeeType: Contract -homePhone: +1 415 677-9357 -initials: N. C. -mobile: +1 415 123-6644 -pager: +1 415 256-4412 -roomNumber: 9075 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bettine Centis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettine Centis -sn: Centis -description: This is Bettine Centis's description -facsimileTelephoneNumber: +1 510 134-7634 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 375-9860 -title: Master Peons Madonna -userPassword: Password1 -uid: CentisB -givenName: Bettine -mail: CentisB@85000db2e5e34d6d81e53b19e5b46684.bitwarden.com -carLicense: 9DU4NT -departmentNumber: 4897 -employeeType: Normal -homePhone: +1 510 993-6819 -initials: B. C. -mobile: +1 510 489-9160 -pager: +1 510 360-2097 -roomNumber: 8915 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sami Phipps,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sami Phipps -sn: Phipps -description: This is Sami Phipps's description -facsimileTelephoneNumber: +1 415 663-4837 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 420-1578 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: PhippsS -givenName: Sami -mail: PhippsS@f20eb0847ca14a90a67aa09264897cd2.bitwarden.com -carLicense: IE507H -departmentNumber: 1764 -employeeType: Normal -homePhone: +1 415 515-1005 -initials: S. P. -mobile: +1 415 674-8822 -pager: +1 415 887-2299 -roomNumber: 8182 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Valaria Jamshidi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valaria Jamshidi -sn: Jamshidi -description: This is Valaria Jamshidi's description -facsimileTelephoneNumber: +1 804 276-8565 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 804 603-3929 -title: Associate Peons Director -userPassword: Password1 -uid: JamshidV -givenName: Valaria -mail: JamshidV@6f4eb4f6c7594572a68d6ca9999a39eb.bitwarden.com -carLicense: JYN9KA -departmentNumber: 5547 -employeeType: Normal -homePhone: +1 804 309-4055 -initials: V. J. -mobile: +1 804 188-4244 -pager: +1 804 740-1924 -roomNumber: 9322 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaquenetta Besharah -sn: Besharah -description: This is Jaquenetta Besharah's description -facsimileTelephoneNumber: +1 818 320-4827 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 775-4773 -title: Supreme Human Resources Figurehead -userPassword: Password1 -uid: BesharaJ -givenName: Jaquenetta -mail: BesharaJ@c7a27fd01c1647d28de4dfcfed9b1184.bitwarden.com -carLicense: 9Y5A3Y -departmentNumber: 4515 -employeeType: Contract -homePhone: +1 818 863-3426 -initials: J. B. -mobile: +1 818 249-9941 -pager: +1 818 787-5732 -roomNumber: 8172 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Loleta DuBois,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loleta DuBois -sn: DuBois -description: This is Loleta DuBois's description -facsimileTelephoneNumber: +1 510 340-3581 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 188-5968 -title: Master Janitorial Dictator -userPassword: Password1 -uid: DuBoisL -givenName: Loleta -mail: DuBoisL@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com -carLicense: 14WY4X -departmentNumber: 1852 -employeeType: Employee -homePhone: +1 510 827-5180 -initials: L. D. -mobile: +1 510 982-8288 -pager: +1 510 886-6751 -roomNumber: 8771 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Suzi Penfield,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzi Penfield -sn: Penfield -description: This is Suzi Penfield's description -facsimileTelephoneNumber: +1 818 239-4739 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 355-9514 -title: Supreme Janitorial Writer -userPassword: Password1 -uid: PenfielS -givenName: Suzi -mail: PenfielS@b3322abd91d442cd8a0ab00357938e16.bitwarden.com -carLicense: 00NGDT -departmentNumber: 3354 -employeeType: Contract -homePhone: +1 818 323-6118 -initials: S. P. -mobile: +1 818 295-6057 -pager: +1 818 985-5590 -roomNumber: 9814 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mot Harper,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mot Harper -sn: Harper -description: This is Mot Harper's description -facsimileTelephoneNumber: +1 804 332-3432 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 821-7048 -title: Chief Product Testing Director -userPassword: Password1 -uid: HarperM -givenName: Mot -mail: HarperM@356cd6c1b7e3439e9ef5f5b352dedbb9.bitwarden.com -carLicense: 5M3X64 -departmentNumber: 8979 -employeeType: Normal -homePhone: +1 804 719-5041 -initials: M. H. -mobile: +1 804 448-4030 -pager: +1 804 816-5369 -roomNumber: 8447 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constantine Beaucaire -sn: Beaucaire -description: This is Constantine Beaucaire's description -facsimileTelephoneNumber: +1 213 646-2810 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 878-2629 -title: Junior Janitorial Evangelist -userPassword: Password1 -uid: BeaucaiC -givenName: Constantine -mail: BeaucaiC@b827ba5736ae48268de38db3e9e259c3.bitwarden.com -carLicense: G1IJ5J -departmentNumber: 5354 -employeeType: Contract -homePhone: +1 213 584-6116 -initials: C. B. -mobile: +1 213 732-3413 -pager: +1 213 356-4098 -roomNumber: 8130 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Beata Shyu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beata Shyu -sn: Shyu -description: This is Beata Shyu's description -facsimileTelephoneNumber: +1 804 113-6587 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 804 272-5926 -title: Junior Administrative Vice President -userPassword: Password1 -uid: ShyuB -givenName: Beata -mail: ShyuB@6bd1865fbe47463dbcb960e39a8c54d7.bitwarden.com -carLicense: K4LA7A -departmentNumber: 5727 -employeeType: Employee -homePhone: +1 804 322-4183 -initials: B. S. -mobile: +1 804 835-4823 -pager: +1 804 374-2906 -roomNumber: 8520 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carter Munroe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carter Munroe -sn: Munroe -description: This is Carter Munroe's description -facsimileTelephoneNumber: +1 510 988-6710 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 510 828-5263 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: MunroeC -givenName: Carter -mail: MunroeC@d0d2d3fedb3f4a3c8932e1f5796c08e0.bitwarden.com -carLicense: RU67Q8 -departmentNumber: 3711 -employeeType: Contract -homePhone: +1 510 415-1187 -initials: C. M. -mobile: +1 510 557-7014 -pager: +1 510 177-7185 -roomNumber: 8959 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Johnnie Holmes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnnie Holmes -sn: Holmes -description: This is Johnnie Holmes's description -facsimileTelephoneNumber: +1 213 705-5658 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 886-3880 -title: Junior Peons Sales Rep -userPassword: Password1 -uid: HolmesJ -givenName: Johnnie -mail: HolmesJ@f40bf043953c406aba47649d98484a4f.bitwarden.com -carLicense: DSBVP0 -departmentNumber: 9391 -employeeType: Normal -homePhone: +1 213 744-8255 -initials: J. H. -mobile: +1 213 750-7127 -pager: +1 213 149-1117 -roomNumber: 8304 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rollo Rolfes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rollo Rolfes -sn: Rolfes -description: This is Rollo Rolfes's description -facsimileTelephoneNumber: +1 804 475-8966 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 225-9728 -title: Chief Management President -userPassword: Password1 -uid: RolfesR -givenName: Rollo -mail: RolfesR@3ec5b2de0d2345779e5987d3e4fbbb28.bitwarden.com -carLicense: MRH2NA -departmentNumber: 4255 -employeeType: Employee -homePhone: +1 804 656-1956 -initials: R. R. -mobile: +1 804 655-6468 -pager: +1 804 398-4771 -roomNumber: 8809 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wendye Queries,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wendye Queries -sn: Queries -description: This is Wendye Queries's description -facsimileTelephoneNumber: +1 415 893-1505 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 371-7105 -title: Junior Product Development President -userPassword: Password1 -uid: QueriesW -givenName: Wendye -mail: QueriesW@3e85ba8a9fd94b8ea8a79fbaf36e29c9.bitwarden.com -carLicense: K5UO9S -departmentNumber: 1153 -employeeType: Employee -homePhone: +1 415 978-3975 -initials: W. Q. -mobile: +1 415 739-5886 -pager: +1 415 444-6378 -roomNumber: 8909 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tonie Ausley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonie Ausley -sn: Ausley -description: This is Tonie Ausley's description -facsimileTelephoneNumber: +1 818 848-5734 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 894-5801 -title: Master Product Development Writer -userPassword: Password1 -uid: AusleyT -givenName: Tonie -mail: AusleyT@8e58a0274e2f4a9eace3b506ad190406.bitwarden.com -carLicense: OJA6CR -departmentNumber: 8147 -employeeType: Employee -homePhone: +1 818 536-5081 -initials: T. A. -mobile: +1 818 179-6579 -pager: +1 818 683-4218 -roomNumber: 9460 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bertina Winchester,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bertina Winchester -sn: Winchester -description: This is Bertina Winchester's description -facsimileTelephoneNumber: +1 415 524-3646 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 426-8070 -title: Chief Janitorial Artist -userPassword: Password1 -uid: WinchesB -givenName: Bertina -mail: WinchesB@a78343bebdf4455eb6914faf7a6b5592.bitwarden.com -carLicense: CCXNU8 -departmentNumber: 5909 -employeeType: Employee -homePhone: +1 415 698-5900 -initials: B. W. -mobile: +1 415 965-7023 -pager: +1 415 327-3170 -roomNumber: 8975 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Knut Louisseize,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Knut Louisseize -sn: Louisseize -description: This is Knut Louisseize's description -facsimileTelephoneNumber: +1 415 231-7742 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 138-1768 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: LouisseK -givenName: Knut -mail: LouisseK@edb6faa6b9ef42e78cb76cff9b446a1d.bitwarden.com -carLicense: HO5XVV -departmentNumber: 6906 -employeeType: Normal -homePhone: +1 415 391-7780 -initials: K. L. -mobile: +1 415 549-2425 -pager: +1 415 285-9052 -roomNumber: 9770 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Miguelita Merworth,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miguelita Merworth -sn: Merworth -description: This is Miguelita Merworth's description -facsimileTelephoneNumber: +1 408 537-1078 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 780-3796 -title: Associate Peons Artist -userPassword: Password1 -uid: MerwortM -givenName: Miguelita -mail: MerwortM@9c564d094e5e497a8fd4aac4f36731f1.bitwarden.com -carLicense: XGPO87 -departmentNumber: 9489 -employeeType: Employee -homePhone: +1 408 801-9786 -initials: M. M. -mobile: +1 408 384-1202 -pager: +1 408 588-2638 -roomNumber: 9799 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vlad Hilder,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vlad Hilder -sn: Hilder -description: This is Vlad Hilder's description -facsimileTelephoneNumber: +1 213 420-6893 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 466-9371 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: HilderV -givenName: Vlad -mail: HilderV@8bced59a99724d5eb08954ec3497f98c.bitwarden.com -carLicense: YJJWHT -departmentNumber: 1188 -employeeType: Employee -homePhone: +1 213 742-1589 -initials: V. H. -mobile: +1 213 662-1229 -pager: +1 213 638-2622 -roomNumber: 9062 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Norry Hord,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norry Hord -sn: Hord -description: This is Norry Hord's description -facsimileTelephoneNumber: +1 804 517-4661 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 947-9878 -title: Chief Human Resources Dictator -userPassword: Password1 -uid: HordN -givenName: Norry -mail: HordN@4dd21bf6830a4c908b6586742f2895eb.bitwarden.com -carLicense: 06V7TN -departmentNumber: 7953 -employeeType: Employee -homePhone: +1 804 272-2333 -initials: N. H. -mobile: +1 804 742-3284 -pager: +1 804 497-5938 -roomNumber: 9169 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kurt Bozicevich,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kurt Bozicevich -sn: Bozicevich -description: This is Kurt Bozicevich's description -facsimileTelephoneNumber: +1 206 552-4592 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 419-8882 -title: Chief Peons Figurehead -userPassword: Password1 -uid: BozicevK -givenName: Kurt -mail: BozicevK@e8e7ee5b6e064589b4c7f97fde4b37f5.bitwarden.com -carLicense: XYURHJ -departmentNumber: 9106 -employeeType: Employee -homePhone: +1 206 930-8974 -initials: K. B. -mobile: +1 206 791-5487 -pager: +1 206 739-5700 -roomNumber: 9928 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Charles Orsini,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charles Orsini -sn: Orsini -description: This is Charles Orsini's description -facsimileTelephoneNumber: +1 213 342-1671 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 946-2321 -title: Associate Management Assistant -userPassword: Password1 -uid: OrsiniC -givenName: Charles -mail: OrsiniC@764681a95a5b406ca9af128317a23e8b.bitwarden.com -carLicense: QLP0YM -departmentNumber: 8308 -employeeType: Contract -homePhone: +1 213 245-4251 -initials: C. O. -mobile: +1 213 397-8681 -pager: +1 213 110-7167 -roomNumber: 9748 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Meriline Tom,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meriline Tom -sn: Tom -description: This is Meriline Tom's description -facsimileTelephoneNumber: +1 510 535-4957 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 994-9896 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: TomM -givenName: Meriline -mail: TomM@d0f838c93ef94627924b8203a7bc4ac9.bitwarden.com -carLicense: UNWUTL -departmentNumber: 4554 -employeeType: Contract -homePhone: +1 510 564-4733 -initials: M. T. -mobile: +1 510 939-9904 -pager: +1 510 199-3863 -roomNumber: 9570 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Genga Kahn,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genga Kahn -sn: Kahn -description: This is Genga Kahn's description -facsimileTelephoneNumber: +1 213 698-6618 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 447-6083 -title: Chief Product Testing Dictator -userPassword: Password1 -uid: KahnG -givenName: Genga -mail: KahnG@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com -carLicense: 737D3K -departmentNumber: 9628 -employeeType: Contract -homePhone: +1 213 559-3572 -initials: G. K. -mobile: +1 213 946-6619 -pager: +1 213 334-3955 -roomNumber: 9509 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gates Scharf,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gates Scharf -sn: Scharf -description: This is Gates Scharf's description -facsimileTelephoneNumber: +1 206 360-8432 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 603-7568 -title: Associate Peons Artist -userPassword: Password1 -uid: ScharfG -givenName: Gates -mail: ScharfG@14d1b49506834e5c9ccc77fc2529566f.bitwarden.com -carLicense: GJST9N -departmentNumber: 2562 -employeeType: Employee -homePhone: +1 206 531-1667 -initials: G. S. -mobile: +1 206 839-9954 -pager: +1 206 672-2230 -roomNumber: 8682 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Isabelita Weger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isabelita Weger -sn: Weger -description: This is Isabelita Weger's description -facsimileTelephoneNumber: +1 408 317-4732 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 107-4427 -title: Junior Management Punk -userPassword: Password1 -uid: WegerI -givenName: Isabelita -mail: WegerI@4971636bbc214b9bab855e271936dd02.bitwarden.com -carLicense: M31723 -departmentNumber: 1293 -employeeType: Employee -homePhone: +1 408 430-7640 -initials: I. W. -mobile: +1 408 259-3001 -pager: +1 408 300-7802 -roomNumber: 8786 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dulci Arsenault,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulci Arsenault -sn: Arsenault -description: This is Dulci Arsenault's description -facsimileTelephoneNumber: +1 213 214-5200 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 178-2841 -title: Master Peons Sales Rep -userPassword: Password1 -uid: ArsenauD -givenName: Dulci -mail: ArsenauD@23a5946865f94d569cc565c34574f456.bitwarden.com -carLicense: I0DYKK -departmentNumber: 1400 -employeeType: Employee -homePhone: +1 213 362-1470 -initials: D. A. -mobile: +1 213 981-8417 -pager: +1 213 995-1096 -roomNumber: 9954 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lurleen Mowbray,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lurleen Mowbray -sn: Mowbray -description: This is Lurleen Mowbray's description -facsimileTelephoneNumber: +1 206 299-4191 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 572-9036 -title: Chief Management Sales Rep -userPassword: Password1 -uid: MowbrayL -givenName: Lurleen -mail: MowbrayL@e13d4fdb33d04c2f849993b5c00d31fe.bitwarden.com -carLicense: NUHIOY -departmentNumber: 4857 -employeeType: Employee -homePhone: +1 206 630-7919 -initials: L. M. -mobile: +1 206 748-7077 -pager: +1 206 778-1103 -roomNumber: 9365 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kary Bickford,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kary Bickford -sn: Bickford -description: This is Kary Bickford's description -facsimileTelephoneNumber: +1 804 371-4368 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 890-9498 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: BickforK -givenName: Kary -mail: BickforK@e8962b3f077e4e4380b3b3b1aed7dd43.bitwarden.com -carLicense: 2BNVTQ -departmentNumber: 3113 -employeeType: Normal -homePhone: +1 804 933-5248 -initials: K. B. -mobile: +1 804 646-5687 -pager: +1 804 433-7404 -roomNumber: 8931 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tsugio Knorp,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tsugio Knorp -sn: Knorp -description: This is Tsugio Knorp's description -facsimileTelephoneNumber: +1 415 900-6751 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 576-6538 -title: Chief Product Development Madonna -userPassword: Password1 -uid: KnorpT -givenName: Tsugio -mail: KnorpT@3cbb67a8cfac46019eac8aa7343efe15.bitwarden.com -carLicense: 7K6QI7 -departmentNumber: 3743 -employeeType: Normal -homePhone: +1 415 418-3275 -initials: T. K. -mobile: +1 415 506-9334 -pager: +1 415 747-3812 -roomNumber: 9409 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morissa Asfazadour -sn: Asfazadour -description: This is Morissa Asfazadour's description -facsimileTelephoneNumber: +1 818 459-2088 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 797-5783 -title: Chief Product Development Assistant -userPassword: Password1 -uid: AsfazadM -givenName: Morissa -mail: AsfazadM@5091d98f25454366ae5b83b36d2073f1.bitwarden.com -carLicense: L6UQ4P -departmentNumber: 7110 -employeeType: Employee -homePhone: +1 818 964-2552 -initials: M. A. -mobile: +1 818 397-1019 -pager: +1 818 186-7910 -roomNumber: 8226 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sindee Haertel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sindee Haertel -sn: Haertel -description: This is Sindee Haertel's description -facsimileTelephoneNumber: +1 804 928-7596 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 160-2465 -title: Chief Human Resources Architect -userPassword: Password1 -uid: HaertelS -givenName: Sindee -mail: HaertelS@bd3dedcd93c84c0aa4af62b582b04e9d.bitwarden.com -carLicense: ICW7NB -departmentNumber: 9661 -employeeType: Employee -homePhone: +1 804 337-6117 -initials: S. H. -mobile: +1 804 101-8471 -pager: +1 804 414-9362 -roomNumber: 9894 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Reiko Lemay,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reiko Lemay -sn: Lemay -description: This is Reiko Lemay's description -facsimileTelephoneNumber: +1 213 327-2122 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 443-2951 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: LemayR -givenName: Reiko -mail: LemayR@b23fe60aaafa49a2908f5eec32556f6f.bitwarden.com -carLicense: 1XH73B -departmentNumber: 1893 -employeeType: Normal -homePhone: +1 213 199-6173 -initials: R. L. -mobile: +1 213 646-6886 -pager: +1 213 489-7365 -roomNumber: 8342 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Karoline Korey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karoline Korey -sn: Korey -description: This is Karoline Korey's description -facsimileTelephoneNumber: +1 818 305-9375 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 224-9331 -title: Supreme Peons Assistant -userPassword: Password1 -uid: KoreyK -givenName: Karoline -mail: KoreyK@7b3b886d681f4f3ca28fa81a09f7644a.bitwarden.com -carLicense: 62UBUG -departmentNumber: 4068 -employeeType: Employee -homePhone: +1 818 980-8347 -initials: K. K. -mobile: +1 818 315-3766 -pager: +1 818 835-3891 -roomNumber: 8100 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MarieJosee Uyar -sn: Uyar -description: This is MarieJosee Uyar's description -facsimileTelephoneNumber: +1 804 653-4183 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 230-5605 -title: Junior Administrative Madonna -userPassword: Password1 -uid: UyarM -givenName: MarieJosee -mail: UyarM@7eb3446796544055a8625bc9cff5db0c.bitwarden.com -carLicense: PI4YDK -departmentNumber: 6621 -employeeType: Normal -homePhone: +1 804 185-3118 -initials: M. U. -mobile: +1 804 390-4831 -pager: +1 804 310-4329 -roomNumber: 8365 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elwyn Siddiqui -sn: Siddiqui -description: This is Elwyn Siddiqui's description -facsimileTelephoneNumber: +1 415 484-8670 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 116-6635 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: SiddiquE -givenName: Elwyn -mail: SiddiquE@c90fcc6a2adf434b982935936ff5f7b6.bitwarden.com -carLicense: TOTMDN -departmentNumber: 8675 -employeeType: Contract -homePhone: +1 415 343-7608 -initials: E. S. -mobile: +1 415 628-5037 -pager: +1 415 648-8697 -roomNumber: 8190 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Zonnya Penn,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zonnya Penn -sn: Penn -description: This is Zonnya Penn's description -facsimileTelephoneNumber: +1 213 320-4574 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 526-2754 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: PennZ -givenName: Zonnya -mail: PennZ@3b2c73ac68c44ffd9b6fee68f40f7a34.bitwarden.com -carLicense: 2LQFW7 -departmentNumber: 4241 -employeeType: Employee -homePhone: +1 213 578-8846 -initials: Z. P. -mobile: +1 213 507-3429 -pager: +1 213 966-2081 -roomNumber: 9800 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Christoph Lorance,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christoph Lorance -sn: Lorance -description: This is Christoph Lorance's description -facsimileTelephoneNumber: +1 408 755-3294 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 696-6735 -title: Master Human Resources President -userPassword: Password1 -uid: LoranceC -givenName: Christoph -mail: LoranceC@68682c9b2559463bb9da0d98b541595f.bitwarden.com -carLicense: 3FMLLJ -departmentNumber: 6372 -employeeType: Contract -homePhone: +1 408 233-6370 -initials: C. L. -mobile: +1 408 139-5218 -pager: +1 408 872-1201 -roomNumber: 9801 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vanity Tropea,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanity Tropea -sn: Tropea -description: This is Vanity Tropea's description -facsimileTelephoneNumber: +1 415 425-6121 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 558-1316 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: TropeaV -givenName: Vanity -mail: TropeaV@461d63d1b6a041a69495f095e74332a3.bitwarden.com -carLicense: 08IHH2 -departmentNumber: 8272 -employeeType: Employee -homePhone: +1 415 995-1588 -initials: V. T. -mobile: +1 415 546-8387 -pager: +1 415 137-5033 -roomNumber: 8670 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cyb Centers,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyb Centers -sn: Centers -description: This is Cyb Centers's description -facsimileTelephoneNumber: +1 804 783-1134 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 344-1873 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: CentersC -givenName: Cyb -mail: CentersC@7a7e84cee07a4519aac362b25f2d7d3c.bitwarden.com -carLicense: 2NX7VF -departmentNumber: 7625 -employeeType: Normal -homePhone: +1 804 508-3479 -initials: C. C. -mobile: +1 804 385-4058 -pager: +1 804 244-5217 -roomNumber: 9763 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Muire Bakhach,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Muire Bakhach -sn: Bakhach -description: This is Muire Bakhach's description -facsimileTelephoneNumber: +1 206 458-1867 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 156-4957 -title: Associate Administrative Janitor -userPassword: Password1 -uid: BakhachM -givenName: Muire -mail: BakhachM@e3c084d5a2b44c959d053319884f8497.bitwarden.com -carLicense: VO6MJS -departmentNumber: 6868 -employeeType: Employee -homePhone: +1 206 960-5679 -initials: M. B. -mobile: +1 206 780-8783 -pager: +1 206 512-5048 -roomNumber: 8626 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Eliza Gros,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eliza Gros -sn: Gros -description: This is Eliza Gros's description -facsimileTelephoneNumber: +1 818 474-2895 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 818 104-1061 -title: Associate Peons Czar -userPassword: Password1 -uid: GrosE -givenName: Eliza -mail: GrosE@49c28823fa6d4e18b2bd79c94f037cd5.bitwarden.com -carLicense: IJOD07 -departmentNumber: 6849 -employeeType: Employee -homePhone: +1 818 323-5981 -initials: E. G. -mobile: +1 818 791-8634 -pager: +1 818 680-7000 -roomNumber: 9786 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranjit Surazski -sn: Surazski -description: This is Ranjit Surazski's description -facsimileTelephoneNumber: +1 408 399-6366 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 435-7088 -title: Junior Product Testing Developer -userPassword: Password1 -uid: SurazskR -givenName: Ranjit -mail: SurazskR@5c31d24a74fe48bd9d295b9aefc9bdd6.bitwarden.com -carLicense: KO34NC -departmentNumber: 2473 -employeeType: Normal -homePhone: +1 408 229-3279 -initials: R. S. -mobile: +1 408 409-1810 -pager: +1 408 288-1494 -roomNumber: 9826 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cthrine Tarsky -sn: Tarsky -description: This is Cthrine Tarsky's description -facsimileTelephoneNumber: +1 415 290-6426 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 870-1049 -title: Associate Janitorial Artist -userPassword: Password1 -uid: TarskyC -givenName: Cthrine -mail: TarskyC@7358f14ebc1d437faa31666574716056.bitwarden.com -carLicense: F6D4I4 -departmentNumber: 3601 -employeeType: Normal -homePhone: +1 415 605-6315 -initials: C. T. -mobile: +1 415 790-5392 -pager: +1 415 155-7158 -roomNumber: 9212 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lex SimardNormandin -sn: SimardNormandin -description: This is Lex SimardNormandin's description -facsimileTelephoneNumber: +1 206 555-8169 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 297-3293 -title: Master Janitorial Architect -userPassword: Password1 -uid: SimardNL -givenName: Lex -mail: SimardNL@e33d3ed1cbf54d6c887c9e826f3363fc.bitwarden.com -carLicense: 3UCEBK -departmentNumber: 1689 -employeeType: Contract -homePhone: +1 206 105-7235 -initials: L. S. -mobile: +1 206 747-9008 -pager: +1 206 333-6835 -roomNumber: 9653 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Brita Jodoin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brita Jodoin -sn: Jodoin -description: This is Brita Jodoin's description -facsimileTelephoneNumber: +1 213 118-9957 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 753-4174 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: JodoinB -givenName: Brita -mail: JodoinB@92f076e32839486d848c7a04ce85bb65.bitwarden.com -carLicense: JLO8PX -departmentNumber: 7637 -employeeType: Employee -homePhone: +1 213 559-9942 -initials: B. J. -mobile: +1 213 665-4286 -pager: +1 213 871-2716 -roomNumber: 9475 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Renu Paynter,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renu Paynter -sn: Paynter -description: This is Renu Paynter's description -facsimileTelephoneNumber: +1 408 161-1152 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 891-1027 -title: Junior Administrative Figurehead -userPassword: Password1 -uid: PaynterR -givenName: Renu -mail: PaynterR@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com -carLicense: UVCH7S -departmentNumber: 2978 -employeeType: Normal -homePhone: +1 408 691-7493 -initials: R. P. -mobile: +1 408 291-2672 -pager: +1 408 513-1577 -roomNumber: 8432 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Honey Karole,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Honey Karole -sn: Karole -description: This is Honey Karole's description -facsimileTelephoneNumber: +1 213 270-2188 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 776-3522 -title: Associate Payroll Warrior -userPassword: Password1 -uid: KaroleH -givenName: Honey -mail: KaroleH@bf39febc19c343cc9aaa907ea0d77554.bitwarden.com -carLicense: IWINQT -departmentNumber: 5243 -employeeType: Normal -homePhone: +1 213 933-8787 -initials: H. K. -mobile: +1 213 603-1492 -pager: +1 213 318-4861 -roomNumber: 8821 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=MaryJane Cusick,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryJane Cusick -sn: Cusick -description: This is MaryJane Cusick's description -facsimileTelephoneNumber: +1 415 667-3638 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 415 536-5491 -title: Master Peons Writer -userPassword: Password1 -uid: CusickM -givenName: MaryJane -mail: CusickM@e9f1b0a2647f4ec0a7559f497a7b6a0a.bitwarden.com -carLicense: Y3Y76O -departmentNumber: 6220 -employeeType: Normal -homePhone: +1 415 476-6442 -initials: M. C. -mobile: +1 415 549-5864 -pager: +1 415 207-1447 -roomNumber: 8747 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Romina McClain,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Romina McClain -sn: McClain -description: This is Romina McClain's description -facsimileTelephoneNumber: +1 415 729-7056 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 300-6750 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: McClainR -givenName: Romina -mail: McClainR@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com -carLicense: 95IJDE -departmentNumber: 3570 -employeeType: Contract -homePhone: +1 415 810-4927 -initials: R. M. -mobile: +1 415 954-2156 -pager: +1 415 709-5180 -roomNumber: 8146 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Robinett Zeisler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinett Zeisler -sn: Zeisler -description: This is Robinett Zeisler's description -facsimileTelephoneNumber: +1 804 679-4598 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 879-4805 -title: Master Management Artist -userPassword: Password1 -uid: ZeislerR -givenName: Robinett -mail: ZeislerR@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com -carLicense: 6MAOJU -departmentNumber: 2287 -employeeType: Employee -homePhone: +1 804 305-1512 -initials: R. Z. -mobile: +1 804 921-5435 -pager: +1 804 272-5318 -roomNumber: 8583 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ervin Guindi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ervin Guindi -sn: Guindi -description: This is Ervin Guindi's description -facsimileTelephoneNumber: +1 510 706-6113 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 207-2233 -title: Chief Management Artist -userPassword: Password1 -uid: GuindiE -givenName: Ervin -mail: GuindiE@cad2c84c3f094259b5729a471688ee83.bitwarden.com -carLicense: 2RV742 -departmentNumber: 3393 -employeeType: Normal -homePhone: +1 510 716-7401 -initials: E. G. -mobile: +1 510 316-4139 -pager: +1 510 871-9849 -roomNumber: 9500 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vernice Brandon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vernice Brandon -sn: Brandon -description: This is Vernice Brandon's description -facsimileTelephoneNumber: +1 408 669-6488 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 868-2897 -title: Associate Payroll Mascot -userPassword: Password1 -uid: BrandonV -givenName: Vernice -mail: BrandonV@b1ec0cbcb2944a58bb6bfcd6bb77a546.bitwarden.com -carLicense: 3TBWK3 -departmentNumber: 2127 -employeeType: Employee -homePhone: +1 408 718-2064 -initials: V. B. -mobile: +1 408 577-1887 -pager: +1 408 413-3694 -roomNumber: 8550 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wil Vasil,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wil Vasil -sn: Vasil -description: This is Wil Vasil's description -facsimileTelephoneNumber: +1 408 192-4958 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 767-8936 -title: Associate Peons Consultant -userPassword: Password1 -uid: VasilW -givenName: Wil -mail: VasilW@d8a92cba997b45b7b73921e0114fc8ca.bitwarden.com -carLicense: TTGN6E -departmentNumber: 6293 -employeeType: Employee -homePhone: +1 408 873-1278 -initials: W. V. -mobile: +1 408 362-3518 -pager: +1 408 974-7483 -roomNumber: 8361 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anader Atp,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anader Atp -sn: Atp -description: This is Anader Atp's description -facsimileTelephoneNumber: +1 818 555-7529 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 994-6552 -title: Junior Payroll Mascot -userPassword: Password1 -uid: AtpA -givenName: Anader -mail: AtpA@bd014ad451a846c4a4114333cdf5c066.bitwarden.com -carLicense: FJ7HYL -departmentNumber: 7875 -employeeType: Normal -homePhone: +1 818 134-5180 -initials: A. A. -mobile: +1 818 177-5540 -pager: +1 818 523-3422 -roomNumber: 8548 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cecil Martincich,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cecil Martincich -sn: Martincich -description: This is Cecil Martincich's description -facsimileTelephoneNumber: +1 213 758-1092 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 440-2140 -title: Associate Janitorial President -userPassword: Password1 -uid: MartincC -givenName: Cecil -mail: MartincC@8819cc07e7b545c38dcf521aa22a7f85.bitwarden.com -carLicense: 7JC3QC -departmentNumber: 3348 -employeeType: Normal -homePhone: +1 213 288-5879 -initials: C. M. -mobile: +1 213 594-5233 -pager: +1 213 968-7494 -roomNumber: 9297 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Madelin Hysler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelin Hysler -sn: Hysler -description: This is Madelin Hysler's description -facsimileTelephoneNumber: +1 804 648-7826 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 962-6459 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: HyslerM -givenName: Madelin -mail: HyslerM@e4cb1f57405243129844c08d2e77b681.bitwarden.com -carLicense: JOYOXV -departmentNumber: 4594 -employeeType: Contract -homePhone: +1 804 723-2955 -initials: M. H. -mobile: +1 804 513-6372 -pager: +1 804 835-9877 -roomNumber: 8963 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Colleen Hotlist,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colleen Hotlist -sn: Hotlist -description: This is Colleen Hotlist's description -facsimileTelephoneNumber: +1 408 540-7912 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 121-2210 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: HotlistC -givenName: Colleen -mail: HotlistC@2e11b315f15c492399248250b0acc021.bitwarden.com -carLicense: QNF01E -departmentNumber: 9308 -employeeType: Employee -homePhone: +1 408 933-4256 -initials: C. H. -mobile: +1 408 498-6738 -pager: +1 408 422-7723 -roomNumber: 8500 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Clarence Baragar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarence Baragar -sn: Baragar -description: This is Clarence Baragar's description -facsimileTelephoneNumber: +1 415 294-6425 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 434-3076 -title: Chief Peons Grunt -userPassword: Password1 -uid: BaragarC -givenName: Clarence -mail: BaragarC@32e3fa5da06a4fd3803417733702b064.bitwarden.com -carLicense: GJV7LV -departmentNumber: 1164 -employeeType: Employee -homePhone: +1 415 696-2987 -initials: C. B. -mobile: +1 415 248-4859 -pager: +1 415 187-2177 -roomNumber: 8741 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marvette Mony,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marvette Mony -sn: Mony -description: This is Marvette Mony's description -facsimileTelephoneNumber: +1 408 549-1039 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 538-2593 -title: Junior Product Testing Consultant -userPassword: Password1 -uid: MonyM -givenName: Marvette -mail: MonyM@027050a72ac34c81a8cdacfc4d562d92.bitwarden.com -carLicense: KFMGF3 -departmentNumber: 1859 -employeeType: Contract -homePhone: +1 408 331-6884 -initials: M. M. -mobile: +1 408 491-1594 -pager: +1 408 510-6092 -roomNumber: 8122 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurijn Wesolowski -sn: Wesolowski -description: This is Maurijn Wesolowski's description -facsimileTelephoneNumber: +1 415 642-8938 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 897-7856 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: WesolowM -givenName: Maurijn -mail: WesolowM@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com -carLicense: E0LJ3U -departmentNumber: 3444 -employeeType: Contract -homePhone: +1 415 758-8167 -initials: M. W. -mobile: +1 415 588-8476 -pager: +1 415 396-2449 -roomNumber: 9311 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Janette Stasyszyn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janette Stasyszyn -sn: Stasyszyn -description: This is Janette Stasyszyn's description -facsimileTelephoneNumber: +1 408 200-8845 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 903-8961 -title: Junior Management Evangelist -userPassword: Password1 -uid: StasyszJ -givenName: Janette -mail: StasyszJ@b772115a1aa1477ba5883638406f7f1f.bitwarden.com -carLicense: 9NPFQ6 -departmentNumber: 1118 -employeeType: Contract -homePhone: +1 408 894-1689 -initials: J. S. -mobile: +1 408 267-9801 -pager: +1 408 713-5780 -roomNumber: 8308 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Colette Iu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colette Iu -sn: Iu -description: This is Colette Iu's description -facsimileTelephoneNumber: +1 510 348-2559 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 116-5677 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: IuC -givenName: Colette -mail: IuC@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com -carLicense: TC1KEQ -departmentNumber: 7213 -employeeType: Employee -homePhone: +1 510 860-7483 -initials: C. I. -mobile: +1 510 704-8393 -pager: +1 510 329-8557 -roomNumber: 9889 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Morissa Weiss,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morissa Weiss -sn: Weiss -description: This is Morissa Weiss's description -facsimileTelephoneNumber: +1 510 745-6339 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 459-6134 -title: Associate Payroll Technician -userPassword: Password1 -uid: WeissM -givenName: Morissa -mail: WeissM@7bb8de925914422da9d61b06d1067ef2.bitwarden.com -carLicense: 4998XT -departmentNumber: 8804 -employeeType: Normal -homePhone: +1 510 344-1208 -initials: M. W. -mobile: +1 510 624-5038 -pager: +1 510 956-5152 -roomNumber: 9881 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herbert Nishimura -sn: Nishimura -description: This is Herbert Nishimura's description -facsimileTelephoneNumber: +1 206 599-6939 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 617-7249 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: NishimuH -givenName: Herbert -mail: NishimuH@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com -carLicense: CFXPN5 -departmentNumber: 4205 -employeeType: Contract -homePhone: +1 206 588-5279 -initials: H. N. -mobile: +1 206 752-8917 -pager: +1 206 262-9920 -roomNumber: 8067 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Olva Smid,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olva Smid -sn: Smid -description: This is Olva Smid's description -facsimileTelephoneNumber: +1 206 989-2828 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 625-1715 -title: Junior Human Resources Architect -userPassword: Password1 -uid: SmidO -givenName: Olva -mail: SmidO@a07853d0708843cfba89e8d47f4ba85a.bitwarden.com -carLicense: KCQE81 -departmentNumber: 1386 -employeeType: Normal -homePhone: +1 206 124-7874 -initials: O. S. -mobile: +1 206 850-7769 -pager: +1 206 113-7631 -roomNumber: 9283 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Beulah Kacor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beulah Kacor -sn: Kacor -description: This is Beulah Kacor's description -facsimileTelephoneNumber: +1 804 478-1665 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 251-6479 -title: Junior Management Technician -userPassword: Password1 -uid: KacorB -givenName: Beulah -mail: KacorB@0b7ec0c2364e4e4f8de90b2b167baf77.bitwarden.com -carLicense: O4XUSV -departmentNumber: 1088 -employeeType: Employee -homePhone: +1 804 814-2472 -initials: B. K. -mobile: +1 804 421-3765 -pager: +1 804 915-3798 -roomNumber: 9701 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Stefa Aksel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stefa Aksel -sn: Aksel -description: This is Stefa Aksel's description -facsimileTelephoneNumber: +1 804 393-9354 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 899-2233 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: AkselS -givenName: Stefa -mail: AkselS@f2b5edd91a174de185a3ef948629a325.bitwarden.com -carLicense: 5BQJ3B -departmentNumber: 3984 -employeeType: Normal -homePhone: +1 804 465-5549 -initials: S. A. -mobile: +1 804 983-6466 -pager: +1 804 287-1746 -roomNumber: 8130 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sadru Quintana,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadru Quintana -sn: Quintana -description: This is Sadru Quintana's description -facsimileTelephoneNumber: +1 408 535-8916 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 408 513-6464 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: QuintanS -givenName: Sadru -mail: QuintanS@39726a1b008d411d8a28b85a63102ac3.bitwarden.com -carLicense: 1NQW7E -departmentNumber: 2987 -employeeType: Contract -homePhone: +1 408 978-5999 -initials: S. Q. -mobile: +1 408 794-8447 -pager: +1 408 679-2592 -roomNumber: 8018 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Suzan Dourley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzan Dourley -sn: Dourley -description: This is Suzan Dourley's description -facsimileTelephoneNumber: +1 408 805-8261 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 309-2042 -title: Associate Peons Developer -userPassword: Password1 -uid: DourleyS -givenName: Suzan -mail: DourleyS@6d33f2897fd04c38bb8fe83ad0412af9.bitwarden.com -carLicense: RMEMUG -departmentNumber: 8097 -employeeType: Contract -homePhone: +1 408 778-8253 -initials: S. D. -mobile: +1 408 259-7257 -pager: +1 408 307-4582 -roomNumber: 9731 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wil Hirose,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wil Hirose -sn: Hirose -description: This is Wil Hirose's description -facsimileTelephoneNumber: +1 415 279-1085 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 921-6624 -title: Associate Management Engineer -userPassword: Password1 -uid: HiroseW -givenName: Wil -mail: HiroseW@6ff46dc4b1cd4999b4c5670fef62271f.bitwarden.com -carLicense: 7IQOPX -departmentNumber: 6648 -employeeType: Normal -homePhone: +1 415 771-1793 -initials: W. H. -mobile: +1 415 758-2084 -pager: +1 415 930-2338 -roomNumber: 9513 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Auria Remson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Auria Remson -sn: Remson -description: This is Auria Remson's description -facsimileTelephoneNumber: +1 804 843-5051 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 241-7294 -title: Supreme Management Figurehead -userPassword: Password1 -uid: RemsonA -givenName: Auria -mail: RemsonA@7092afcac0d743dda822cd8d0349a08e.bitwarden.com -carLicense: 54CC4A -departmentNumber: 4483 -employeeType: Contract -homePhone: +1 804 970-1850 -initials: A. R. -mobile: +1 804 149-4875 -pager: +1 804 186-1774 -roomNumber: 9349 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eddie KnesMaxwell -sn: KnesMaxwell -description: This is Eddie KnesMaxwell's description -facsimileTelephoneNumber: +1 206 910-2594 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 656-7994 -title: Master Payroll Pinhead -userPassword: Password1 -uid: KnesMaxE -givenName: Eddie -mail: KnesMaxE@d90dcd068de74a77904c15642c024df9.bitwarden.com -carLicense: F7L4LR -departmentNumber: 5660 -employeeType: Employee -homePhone: +1 206 882-1439 -initials: E. K. -mobile: +1 206 943-3008 -pager: +1 206 226-4046 -roomNumber: 8495 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pennie Akai,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pennie Akai -sn: Akai -description: This is Pennie Akai's description -facsimileTelephoneNumber: +1 408 666-7036 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 916-3914 -title: Master Peons Figurehead -userPassword: Password1 -uid: AkaiP -givenName: Pennie -mail: AkaiP@f00d58ce2e144a1d8084394bfeb550b6.bitwarden.com -carLicense: N70XNV -departmentNumber: 3463 -employeeType: Normal -homePhone: +1 408 105-8796 -initials: P. A. -mobile: +1 408 486-2147 -pager: +1 408 378-3242 -roomNumber: 8855 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Allyce Versteeg,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allyce Versteeg -sn: Versteeg -description: This is Allyce Versteeg's description -facsimileTelephoneNumber: +1 206 161-9083 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 107-2142 -title: Junior Peons Architect -userPassword: Password1 -uid: VersteeA -givenName: Allyce -mail: VersteeA@74f49865edf34a06971e54ca40c018cb.bitwarden.com -carLicense: C67AVA -departmentNumber: 1268 -employeeType: Contract -homePhone: +1 206 344-3074 -initials: A. V. -mobile: +1 206 151-3729 -pager: +1 206 843-6484 -roomNumber: 9427 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Norah Saunderson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norah Saunderson -sn: Saunderson -description: This is Norah Saunderson's description -facsimileTelephoneNumber: +1 213 321-8305 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 462-3425 -title: Associate Administrative Architect -userPassword: Password1 -uid: SaunderN -givenName: Norah -mail: SaunderN@326d8403ad204a388a69bbd4329fe5a2.bitwarden.com -carLicense: QR1W44 -departmentNumber: 8845 -employeeType: Normal -homePhone: +1 213 780-5005 -initials: N. S. -mobile: +1 213 727-5205 -pager: +1 213 918-7566 -roomNumber: 9146 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guinna Gravelle -sn: Gravelle -description: This is Guinna Gravelle's description -facsimileTelephoneNumber: +1 510 213-3974 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 594-9556 -title: Master Janitorial Punk -userPassword: Password1 -uid: GravellG -givenName: Guinna -mail: GravellG@9aea4844b36044d48b6ce9023f128642.bitwarden.com -carLicense: AWD1CH -departmentNumber: 8288 -employeeType: Normal -homePhone: +1 510 996-5741 -initials: G. G. -mobile: +1 510 456-7279 -pager: +1 510 340-4262 -roomNumber: 8107 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cinderella Chafin -sn: Chafin -description: This is Cinderella Chafin's description -facsimileTelephoneNumber: +1 206 235-2413 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 443-6375 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: ChafinC -givenName: Cinderella -mail: ChafinC@8b4e180a03f04f079b534af88c685eca.bitwarden.com -carLicense: W068YV -departmentNumber: 8314 -employeeType: Employee -homePhone: +1 206 820-4127 -initials: C. C. -mobile: +1 206 492-8064 -pager: +1 206 381-5701 -roomNumber: 9957 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chery Vieira,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chery Vieira -sn: Vieira -description: This is Chery Vieira's description -facsimileTelephoneNumber: +1 415 436-3013 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 933-9755 -title: Master Product Testing Dictator -userPassword: Password1 -uid: VieiraC -givenName: Chery -mail: VieiraC@5449de7063aa4ed2b6578dde4c294893.bitwarden.com -carLicense: DMB434 -departmentNumber: 2217 -employeeType: Employee -homePhone: +1 415 891-5972 -initials: C. V. -mobile: +1 415 645-6300 -pager: +1 415 701-7938 -roomNumber: 9387 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwennie Sandberg -sn: Sandberg -description: This is Gwennie Sandberg's description -facsimileTelephoneNumber: +1 818 840-5115 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 158-7133 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: SandberG -givenName: Gwennie -mail: SandberG@f36f45f8205e4b108d066ef8eb28e68b.bitwarden.com -carLicense: QQ51IT -departmentNumber: 5587 -employeeType: Contract -homePhone: +1 818 623-7094 -initials: G. S. -mobile: +1 818 108-7143 -pager: +1 818 924-2301 -roomNumber: 9766 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karita Hoekstra,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karita Hoekstra -sn: Hoekstra -description: This is Karita Hoekstra's description -facsimileTelephoneNumber: +1 818 347-7304 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 511-9925 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: HoekstrK -givenName: Karita -mail: HoekstrK@d4b58fe2bfde4032862e5386c0e20902.bitwarden.com -carLicense: JV717E -departmentNumber: 2397 -employeeType: Employee -homePhone: +1 818 901-5557 -initials: K. H. -mobile: +1 818 489-1905 -pager: +1 818 667-9835 -roomNumber: 8723 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Milt Pilipchuk,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milt Pilipchuk -sn: Pilipchuk -description: This is Milt Pilipchuk's description -facsimileTelephoneNumber: +1 415 426-8537 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 244-4671 -title: Supreme Peons Vice President -userPassword: Password1 -uid: PilipchM -givenName: Milt -mail: PilipchM@da1b5788f067415eb6baf89891f2b951.bitwarden.com -carLicense: WD0NIQ -departmentNumber: 8955 -employeeType: Normal -homePhone: +1 415 658-8234 -initials: M. P. -mobile: +1 415 584-3285 -pager: +1 415 274-5685 -roomNumber: 9435 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pal Hnidek,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pal Hnidek -sn: Hnidek -description: This is Pal Hnidek's description -facsimileTelephoneNumber: +1 510 320-5696 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 248-1733 -title: Chief Human Resources Dictator -userPassword: Password1 -uid: HnidekP -givenName: Pal -mail: HnidekP@e41d23ea26fe487bacc315514ad13746.bitwarden.com -carLicense: MXIBEG -departmentNumber: 5324 -employeeType: Employee -homePhone: +1 510 407-1718 -initials: P. H. -mobile: +1 510 257-5842 -pager: +1 510 389-7958 -roomNumber: 9442 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Teodora Weidinger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teodora Weidinger -sn: Weidinger -description: This is Teodora Weidinger's description -facsimileTelephoneNumber: +1 213 884-3607 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 840-5560 -title: Supreme Administrative Pinhead -userPassword: Password1 -uid: WeidingT -givenName: Teodora -mail: WeidingT@478214d5722f41a1a65048e4b5c2e3f7.bitwarden.com -carLicense: IDMCD0 -departmentNumber: 3968 -employeeType: Normal -homePhone: +1 213 559-9593 -initials: T. W. -mobile: +1 213 353-3133 -pager: +1 213 482-4994 -roomNumber: 9296 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Stephen Shearer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephen Shearer -sn: Shearer -description: This is Stephen Shearer's description -facsimileTelephoneNumber: +1 206 693-2383 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 901-8155 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: ShearerS -givenName: Stephen -mail: ShearerS@c92365298bdc408a8d5a96e4deae0869.bitwarden.com -carLicense: 67FKFX -departmentNumber: 4683 -employeeType: Employee -homePhone: +1 206 514-6457 -initials: S. S. -mobile: +1 206 105-6329 -pager: +1 206 196-3863 -roomNumber: 9439 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Celka Antle,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celka Antle -sn: Antle -description: This is Celka Antle's description -facsimileTelephoneNumber: +1 510 428-6777 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 510 743-5884 -title: Junior Peons Consultant -userPassword: Password1 -uid: AntleC -givenName: Celka -mail: AntleC@f34d92cdab5f41e598142a994af089cf.bitwarden.com -carLicense: DUKN74 -departmentNumber: 5137 -employeeType: Normal -homePhone: +1 510 935-8331 -initials: C. A. -mobile: +1 510 273-1213 -pager: +1 510 602-3308 -roomNumber: 9346 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsey Mortimer -sn: Mortimer -description: This is Chelsey Mortimer's description -facsimileTelephoneNumber: +1 206 772-7792 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 931-7571 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: MortimeC -givenName: Chelsey -mail: MortimeC@ec8dc3c6877747ab888f5b203f49583b.bitwarden.com -carLicense: TDA9QJ -departmentNumber: 8729 -employeeType: Normal -homePhone: +1 206 868-1577 -initials: C. M. -mobile: +1 206 306-5317 -pager: +1 206 637-5095 -roomNumber: 8555 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Binnie Newham,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binnie Newham -sn: Newham -description: This is Binnie Newham's description -facsimileTelephoneNumber: +1 804 448-7672 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 239-4224 -title: Chief Human Resources Grunt -userPassword: Password1 -uid: NewhamB -givenName: Binnie -mail: NewhamB@befab122c7044aa3b20b92009a4d0191.bitwarden.com -carLicense: 9385LJ -departmentNumber: 1475 -employeeType: Contract -homePhone: +1 804 152-9221 -initials: B. N. -mobile: +1 804 961-2445 -pager: +1 804 971-2540 -roomNumber: 9135 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ursula Duvarci,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ursula Duvarci -sn: Duvarci -description: This is Ursula Duvarci's description -facsimileTelephoneNumber: +1 415 493-4447 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 295-8415 -title: Associate Payroll Czar -userPassword: Password1 -uid: DuvarciU -givenName: Ursula -mail: DuvarciU@bc7c0ff60d4641f2b01474bcc8b086c8.bitwarden.com -carLicense: SRCQYK -departmentNumber: 1314 -employeeType: Normal -homePhone: +1 415 852-9560 -initials: U. D. -mobile: +1 415 919-6697 -pager: +1 415 296-6270 -roomNumber: 9484 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ted Clinton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ted Clinton -sn: Clinton -description: This is Ted Clinton's description -facsimileTelephoneNumber: +1 213 303-2991 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 192-1759 -title: Supreme Peons Consultant -userPassword: Password1 -uid: ClintonT -givenName: Ted -mail: ClintonT@445a60ac98804054899e1164059fd95e.bitwarden.com -carLicense: G54B0X -departmentNumber: 6385 -employeeType: Contract -homePhone: +1 213 903-4939 -initials: T. C. -mobile: +1 213 214-7630 -pager: +1 213 616-2137 -roomNumber: 8873 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prissie Kostyniuk -sn: Kostyniuk -description: This is Prissie Kostyniuk's description -facsimileTelephoneNumber: +1 818 604-1355 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 528-3039 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: KostyniP -givenName: Prissie -mail: KostyniP@2c11f6a276034996a4ddc6513434ce9b.bitwarden.com -carLicense: 83H5CQ -departmentNumber: 9105 -employeeType: Contract -homePhone: +1 818 684-9320 -initials: P. K. -mobile: +1 818 480-9539 -pager: +1 818 469-5143 -roomNumber: 9168 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ivie Petrie,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivie Petrie -sn: Petrie -description: This is Ivie Petrie's description -facsimileTelephoneNumber: +1 213 847-2978 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 572-8725 -title: Master Administrative Vice President -userPassword: Password1 -uid: PetrieI -givenName: Ivie -mail: PetrieI@2fdc38b3b56b4c61813cbb26a59352be.bitwarden.com -carLicense: KNMJ6S -departmentNumber: 1546 -employeeType: Normal -homePhone: +1 213 816-3127 -initials: I. P. -mobile: +1 213 892-5777 -pager: +1 213 420-6560 -roomNumber: 9442 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kuswara Heighton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kuswara Heighton -sn: Heighton -description: This is Kuswara Heighton's description -facsimileTelephoneNumber: +1 818 729-2066 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 895-2959 -title: Master Management Technician -userPassword: Password1 -uid: HeightoK -givenName: Kuswara -mail: HeightoK@6278758e52d64d2fa2b3ae646f7b1c8c.bitwarden.com -carLicense: MVJ9TJ -departmentNumber: 4682 -employeeType: Normal -homePhone: +1 818 163-3148 -initials: K. H. -mobile: +1 818 376-7230 -pager: +1 818 474-8823 -roomNumber: 9683 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Johanna Virani,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johanna Virani -sn: Virani -description: This is Johanna Virani's description -facsimileTelephoneNumber: +1 213 563-6307 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 224-3842 -title: Junior Product Development Stooge -userPassword: Password1 -uid: ViraniJ -givenName: Johanna -mail: ViraniJ@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com -carLicense: 2JAPD9 -departmentNumber: 9508 -employeeType: Normal -homePhone: +1 213 686-8385 -initials: J. V. -mobile: +1 213 364-4385 -pager: +1 213 716-2844 -roomNumber: 8235 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leandra Rubinov -sn: Rubinov -description: This is Leandra Rubinov's description -facsimileTelephoneNumber: +1 804 914-8115 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 510-8343 -title: Master Product Testing Stooge -userPassword: Password1 -uid: RubinovL -givenName: Leandra -mail: RubinovL@41daa3e0419742f58440d28fd291693d.bitwarden.com -carLicense: V6VSFX -departmentNumber: 5434 -employeeType: Contract -homePhone: +1 804 330-8855 -initials: L. R. -mobile: +1 804 725-4508 -pager: +1 804 533-5945 -roomNumber: 8527 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marit Simons,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marit Simons -sn: Simons -description: This is Marit Simons's description -facsimileTelephoneNumber: +1 510 440-8406 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 340-3543 -title: Chief Human Resources Manager -userPassword: Password1 -uid: SimonsM -givenName: Marit -mail: SimonsM@dc81d1ec5dc44ff2aadb325ca2efedb1.bitwarden.com -carLicense: 9WP4RH -departmentNumber: 9610 -employeeType: Employee -homePhone: +1 510 706-4769 -initials: M. S. -mobile: +1 510 682-6184 -pager: +1 510 131-5050 -roomNumber: 9820 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joel Hinton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joel Hinton -sn: Hinton -description: This is Joel Hinton's description -facsimileTelephoneNumber: +1 818 914-8611 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 808-4705 -title: Master Product Testing Artist -userPassword: Password1 -uid: HintonJ -givenName: Joel -mail: HintonJ@0d31b4804a864bcaadb4a2443708a6a5.bitwarden.com -carLicense: B4OPAJ -departmentNumber: 7086 -employeeType: Contract -homePhone: +1 818 825-8544 -initials: J. H. -mobile: +1 818 826-6178 -pager: +1 818 872-4611 -roomNumber: 8057 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mentor Kimler,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mentor Kimler -sn: Kimler -description: This is Mentor Kimler's description -facsimileTelephoneNumber: +1 415 469-5595 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 745-3966 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: KimlerM -givenName: Mentor -mail: KimlerM@b5e3188bf80e462eac4ebbb9d1096eff.bitwarden.com -carLicense: 9FKR76 -departmentNumber: 6956 -employeeType: Normal -homePhone: +1 415 753-6011 -initials: M. K. -mobile: +1 415 591-4038 -pager: +1 415 856-3975 -roomNumber: 8581 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Thuy Kolos,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thuy Kolos -sn: Kolos -description: This is Thuy Kolos's description -facsimileTelephoneNumber: +1 206 998-6042 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 764-7223 -title: Master Peons Consultant -userPassword: Password1 -uid: KolosT -givenName: Thuy -mail: KolosT@af7219707df54fa3a07b2c4c1c18c6db.bitwarden.com -carLicense: GT1EBC -departmentNumber: 6636 -employeeType: Employee -homePhone: +1 206 906-7542 -initials: T. K. -mobile: +1 206 640-8963 -pager: +1 206 772-9895 -roomNumber: 9053 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sergiu Chai,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sergiu Chai -sn: Chai -description: This is Sergiu Chai's description -facsimileTelephoneNumber: +1 206 887-6803 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 422-1231 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: ChaiS -givenName: Sergiu -mail: ChaiS@5bf44110ed3743de8af47997ebc8b9fe.bitwarden.com -carLicense: IRPBLD -departmentNumber: 5999 -employeeType: Contract -homePhone: +1 206 214-2819 -initials: S. C. -mobile: +1 206 459-6139 -pager: +1 206 993-6058 -roomNumber: 9168 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sande Desjarlais,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sande Desjarlais -sn: Desjarlais -description: This is Sande Desjarlais's description -facsimileTelephoneNumber: +1 510 291-4423 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 846-4397 -title: Master Product Development Architect -userPassword: Password1 -uid: DesjarlS -givenName: Sande -mail: DesjarlS@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com -carLicense: YKGKHL -departmentNumber: 8918 -employeeType: Contract -homePhone: +1 510 708-6646 -initials: S. D. -mobile: +1 510 981-6779 -pager: +1 510 851-7498 -roomNumber: 9796 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Asia Falkenstrom -sn: Falkenstrom -description: This is Asia Falkenstrom's description -facsimileTelephoneNumber: +1 818 346-8942 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 910-4007 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: FalkensA -givenName: Asia -mail: FalkensA@a59346ad14cf48868393d6c59fa9cec4.bitwarden.com -carLicense: DX09KX -departmentNumber: 9902 -employeeType: Employee -homePhone: +1 818 732-9890 -initials: A. F. -mobile: +1 818 360-4910 -pager: +1 818 924-1768 -roomNumber: 8822 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Allis Sherard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allis Sherard -sn: Sherard -description: This is Allis Sherard's description -facsimileTelephoneNumber: +1 206 667-4829 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 122-2342 -title: Chief Human Resources Technician -userPassword: Password1 -uid: SherardA -givenName: Allis -mail: SherardA@0573bd112aca464284b0d9eac2753606.bitwarden.com -carLicense: BWW3VJ -departmentNumber: 1790 -employeeType: Contract -homePhone: +1 206 533-1949 -initials: A. S. -mobile: +1 206 643-1174 -pager: +1 206 205-8628 -roomNumber: 9935 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Miriya Planthara,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miriya Planthara -sn: Planthara -description: This is Miriya Planthara's description -facsimileTelephoneNumber: +1 804 355-8663 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 456-1417 -title: Master Management Janitor -userPassword: Password1 -uid: PlanthaM -givenName: Miriya -mail: PlanthaM@ced3a1835a4b43df86059cd2aa6426c7.bitwarden.com -carLicense: OFQRIT -departmentNumber: 9345 -employeeType: Employee -homePhone: +1 804 766-1573 -initials: M. P. -mobile: +1 804 436-2945 -pager: +1 804 896-6380 -roomNumber: 9383 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maribel Nevrela -sn: Nevrela -description: This is Maribel Nevrela's description -facsimileTelephoneNumber: +1 213 891-6657 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 690-5179 -title: Junior Human Resources Sales Rep -userPassword: Password1 -uid: NevrelaM -givenName: Maribel -mail: NevrelaM@69cfa5de8d574e7e93ee6f134eee78e1.bitwarden.com -carLicense: FEPRO3 -departmentNumber: 4163 -employeeType: Employee -homePhone: +1 213 605-1067 -initials: M. N. -mobile: +1 213 279-1737 -pager: +1 213 125-3453 -roomNumber: 9398 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joellen Tornqvist -sn: Tornqvist -description: This is Joellen Tornqvist's description -facsimileTelephoneNumber: +1 415 930-1966 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 248-9383 -title: Junior Product Development Visionary -userPassword: Password1 -uid: TornqviJ -givenName: Joellen -mail: TornqviJ@be2317e07ddc4fd1bc1dad5673b21da8.bitwarden.com -carLicense: 183T0U -departmentNumber: 8180 -employeeType: Normal -homePhone: +1 415 106-3489 -initials: J. T. -mobile: +1 415 342-7437 -pager: +1 415 376-3348 -roomNumber: 9967 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=HackHoo Jatar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HackHoo Jatar -sn: Jatar -description: This is HackHoo Jatar's description -facsimileTelephoneNumber: +1 415 682-9502 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 363-5935 -title: Associate Management Fellow -userPassword: Password1 -uid: JatarH -givenName: HackHoo -mail: JatarH@c356619b4769401bb929afda889d39f9.bitwarden.com -carLicense: B7NRHH -departmentNumber: 8424 -employeeType: Normal -homePhone: +1 415 431-2365 -initials: H. J. -mobile: +1 415 691-5531 -pager: +1 415 403-1392 -roomNumber: 8880 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vonni Mansi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vonni Mansi -sn: Mansi -description: This is Vonni Mansi's description -facsimileTelephoneNumber: +1 206 428-5078 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 206 325-8009 -title: Associate Payroll Fellow -userPassword: Password1 -uid: MansiV -givenName: Vonni -mail: MansiV@7f18e62561544141b6ccfe39f532339f.bitwarden.com -carLicense: X6U14R -departmentNumber: 2053 -employeeType: Employee -homePhone: +1 206 523-4297 -initials: V. M. -mobile: +1 206 682-2595 -pager: +1 206 597-1888 -roomNumber: 9030 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harvey Moshtagh -sn: Moshtagh -description: This is Harvey Moshtagh's description -facsimileTelephoneNumber: +1 804 552-2051 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 286-7285 -title: Supreme Administrative Admin -userPassword: Password1 -uid: MoshtagH -givenName: Harvey -mail: MoshtagH@04a22a65e7964a5bae139e498c20efac.bitwarden.com -carLicense: 01GWKH -departmentNumber: 4491 -employeeType: Employee -homePhone: +1 804 360-4890 -initials: H. M. -mobile: +1 804 208-6481 -pager: +1 804 766-8120 -roomNumber: 8278 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mair Tsui,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mair Tsui -sn: Tsui -description: This is Mair Tsui's description -facsimileTelephoneNumber: +1 415 601-4202 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 467-3160 -title: Junior Payroll Janitor -userPassword: Password1 -uid: TsuiM -givenName: Mair -mail: TsuiM@c520f3ebde724b50bd2a6770256ea1b8.bitwarden.com -carLicense: IA4GTS -departmentNumber: 1343 -employeeType: Normal -homePhone: +1 415 716-5560 -initials: M. T. -mobile: +1 415 868-1726 -pager: +1 415 232-7074 -roomNumber: 9605 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Darya Marttinen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darya Marttinen -sn: Marttinen -description: This is Darya Marttinen's description -facsimileTelephoneNumber: +1 408 577-2755 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 315-7486 -title: Supreme Payroll Writer -userPassword: Password1 -uid: MarttinD -givenName: Darya -mail: MarttinD@fa0cc2286f88469eb9aea12a2ef5aea3.bitwarden.com -carLicense: BM0XG7 -departmentNumber: 3078 -employeeType: Employee -homePhone: +1 408 494-9498 -initials: D. M. -mobile: +1 408 459-3191 -pager: +1 408 383-7167 -roomNumber: 8594 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kees Arsena,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kees Arsena -sn: Arsena -description: This is Kees Arsena's description -facsimileTelephoneNumber: +1 408 447-8080 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 910-8708 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: ArsenaK -givenName: Kees -mail: ArsenaK@b3ae6dae564847d7ba4d0a12a6361531.bitwarden.com -carLicense: YMPF3P -departmentNumber: 7750 -employeeType: Employee -homePhone: +1 408 423-3062 -initials: K. A. -mobile: +1 408 542-2058 -pager: +1 408 356-3732 -roomNumber: 8185 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Darleen Flowers,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darleen Flowers -sn: Flowers -description: This is Darleen Flowers's description -facsimileTelephoneNumber: +1 415 139-2235 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 324-8263 -title: Supreme Product Development Czar -userPassword: Password1 -uid: FlowersD -givenName: Darleen -mail: FlowersD@17dcf13b7e684c4a9ba2dcc27a684a76.bitwarden.com -carLicense: 09DD5K -departmentNumber: 5441 -employeeType: Normal -homePhone: +1 415 201-1217 -initials: D. F. -mobile: +1 415 784-4773 -pager: +1 415 593-8911 -roomNumber: 8494 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Noyes Huenemann,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noyes Huenemann -sn: Huenemann -description: This is Noyes Huenemann's description -facsimileTelephoneNumber: +1 804 945-6934 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 191-5082 -title: Chief Management Architect -userPassword: Password1 -uid: HuenemaN -givenName: Noyes -mail: HuenemaN@7d4c2ab04b8a46e18a0c092fdac02490.bitwarden.com -carLicense: L90SBW -departmentNumber: 2047 -employeeType: Normal -homePhone: +1 804 792-4114 -initials: N. H. -mobile: +1 804 122-5785 -pager: +1 804 837-2152 -roomNumber: 8262 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Buster Myre,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Buster Myre -sn: Myre -description: This is Buster Myre's description -facsimileTelephoneNumber: +1 415 655-4974 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 679-9707 -title: Chief Product Development Technician -userPassword: Password1 -uid: MyreB -givenName: Buster -mail: MyreB@bc47d55f014c4c2d8cd9b2f73d7704a8.bitwarden.com -carLicense: TXXNNS -departmentNumber: 3204 -employeeType: Normal -homePhone: +1 415 815-8404 -initials: B. M. -mobile: +1 415 814-7430 -pager: +1 415 255-7980 -roomNumber: 9437 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tristano Angus,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tristano Angus -sn: Angus -description: This is Tristano Angus's description -facsimileTelephoneNumber: +1 213 859-7251 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 624-7463 -title: Junior Human Resources Writer -userPassword: Password1 -uid: AngusT -givenName: Tristano -mail: AngusT@19be86f3b1d34c7ab6993505e8f0ad33.bitwarden.com -carLicense: ERRCID -departmentNumber: 7117 -employeeType: Normal -homePhone: +1 213 341-6556 -initials: T. A. -mobile: +1 213 875-5992 -pager: +1 213 699-9772 -roomNumber: 9827 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anita Roesler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anita Roesler -sn: Roesler -description: This is Anita Roesler's description -facsimileTelephoneNumber: +1 408 212-6408 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 389-1500 -title: Junior Product Testing Director -userPassword: Password1 -uid: RoeslerA -givenName: Anita -mail: RoeslerA@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com -carLicense: 004P68 -departmentNumber: 4217 -employeeType: Normal -homePhone: +1 408 173-7448 -initials: A. R. -mobile: +1 408 813-6780 -pager: +1 408 407-3974 -roomNumber: 8648 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Monling Goin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monling Goin -sn: Goin -description: This is Monling Goin's description -facsimileTelephoneNumber: +1 415 896-1604 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 516-8966 -title: Junior Product Development Admin -userPassword: Password1 -uid: GoinM -givenName: Monling -mail: GoinM@34b9dab44b4c429bac836e963718507e.bitwarden.com -carLicense: M06PCM -departmentNumber: 6549 -employeeType: Contract -homePhone: +1 415 613-5967 -initials: M. G. -mobile: +1 415 855-1124 -pager: +1 415 147-6862 -roomNumber: 8094 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dannye Munsey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dannye Munsey -sn: Munsey -description: This is Dannye Munsey's description -facsimileTelephoneNumber: +1 804 205-5972 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 827-5348 -title: Associate Peons Engineer -userPassword: Password1 -uid: MunseyD -givenName: Dannye -mail: MunseyD@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com -carLicense: 16XY80 -departmentNumber: 4085 -employeeType: Contract -homePhone: +1 804 940-4901 -initials: D. M. -mobile: +1 804 824-6540 -pager: +1 804 390-4489 -roomNumber: 9879 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Agnella Pinalez,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnella Pinalez -sn: Pinalez -description: This is Agnella Pinalez's description -facsimileTelephoneNumber: +1 510 539-3605 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 510 484-3957 -title: Chief Peons Vice President -userPassword: Password1 -uid: PinalezA -givenName: Agnella -mail: PinalezA@fa7f3d0bae554869a9cb0e95fe35707f.bitwarden.com -carLicense: ERSKTA -departmentNumber: 3611 -employeeType: Normal -homePhone: +1 510 411-4594 -initials: A. P. -mobile: +1 510 409-4928 -pager: +1 510 590-7107 -roomNumber: 9061 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shashank Romberg,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shashank Romberg -sn: Romberg -description: This is Shashank Romberg's description -facsimileTelephoneNumber: +1 206 191-7765 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 357-7470 -title: Associate Product Testing Admin -userPassword: Password1 -uid: RombergS -givenName: Shashank -mail: RombergS@faec862307e2490ab9310236bae87643.bitwarden.com -carLicense: YU5FP1 -departmentNumber: 7138 -employeeType: Contract -homePhone: +1 206 995-8738 -initials: S. R. -mobile: +1 206 773-5445 -pager: +1 206 646-6261 -roomNumber: 8824 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zsazsa Yoe -sn: Yoe -description: This is Zsazsa Yoe's description -facsimileTelephoneNumber: +1 415 878-4391 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 911-8953 -title: Associate Product Development Fellow -userPassword: Password1 -uid: YoeZ -givenName: Zsazsa -mail: YoeZ@6ef4ed9ae6c24731b126e620358a2de4.bitwarden.com -carLicense: OA8AQB -departmentNumber: 2359 -employeeType: Employee -homePhone: +1 415 954-1142 -initials: Z. Y. -mobile: +1 415 832-9062 -pager: +1 415 404-4896 -roomNumber: 9241 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Narinder Vilhan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Narinder Vilhan -sn: Vilhan -description: This is Narinder Vilhan's description -facsimileTelephoneNumber: +1 408 435-4453 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 642-2405 -title: Supreme Product Development Madonna -userPassword: Password1 -uid: VilhanN -givenName: Narinder -mail: VilhanN@f41772a4d1c540f3ab2ca562625ea847.bitwarden.com -carLicense: ADBOK7 -departmentNumber: 7675 -employeeType: Employee -homePhone: +1 408 654-4563 -initials: N. V. -mobile: +1 408 932-9179 -pager: +1 408 381-9663 -roomNumber: 9781 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ulrika Simanskis -sn: Simanskis -description: This is Ulrika Simanskis's description -facsimileTelephoneNumber: +1 415 426-4142 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 114-6766 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: SimanskU -givenName: Ulrika -mail: SimanskU@ec9ffb19a2144630ae8bece4e80922f0.bitwarden.com -carLicense: 4GY3W1 -departmentNumber: 3563 -employeeType: Contract -homePhone: +1 415 159-7903 -initials: U. S. -mobile: +1 415 329-9294 -pager: +1 415 358-2808 -roomNumber: 9072 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jeremy Schuster,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeremy Schuster -sn: Schuster -description: This is Jeremy Schuster's description -facsimileTelephoneNumber: +1 415 543-1069 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 667-2155 -title: Associate Management Czar -userPassword: Password1 -uid: SchusteJ -givenName: Jeremy -mail: SchusteJ@60e903b99c4f452b858f19d9843dcc15.bitwarden.com -carLicense: RI5W4P -departmentNumber: 2070 -employeeType: Normal -homePhone: +1 415 804-6481 -initials: J. S. -mobile: +1 415 790-9082 -pager: +1 415 330-4067 -roomNumber: 8171 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Saraann Blakkolb,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saraann Blakkolb -sn: Blakkolb -description: This is Saraann Blakkolb's description -facsimileTelephoneNumber: +1 818 807-2254 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 941-8825 -title: Supreme Management Warrior -userPassword: Password1 -uid: BlakkolS -givenName: Saraann -mail: BlakkolS@0f3924780f2742839088cadeea1581cf.bitwarden.com -carLicense: 37XE25 -departmentNumber: 3737 -employeeType: Contract -homePhone: +1 818 982-3361 -initials: S. B. -mobile: +1 818 780-8865 -pager: +1 818 372-7937 -roomNumber: 8523 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Aida Brunelle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aida Brunelle -sn: Brunelle -description: This is Aida Brunelle's description -facsimileTelephoneNumber: +1 804 891-8687 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 367-9024 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: BrunellA -givenName: Aida -mail: BrunellA@456334f0b48d4ad68b2832c807dab058.bitwarden.com -carLicense: X7JWYE -departmentNumber: 2395 -employeeType: Normal -homePhone: +1 804 517-6852 -initials: A. B. -mobile: +1 804 559-1268 -pager: +1 804 392-6109 -roomNumber: 9846 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Merrielle Hine,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrielle Hine -sn: Hine -description: This is Merrielle Hine's description -facsimileTelephoneNumber: +1 415 225-7140 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 468-4512 -title: Master Product Testing Technician -userPassword: Password1 -uid: HineM -givenName: Merrielle -mail: HineM@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com -carLicense: R10UF2 -departmentNumber: 6737 -employeeType: Contract -homePhone: +1 415 988-3813 -initials: M. H. -mobile: +1 415 200-5569 -pager: +1 415 211-2054 -roomNumber: 9142 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeanie Clarkson -sn: Clarkson -description: This is Jeanie Clarkson's description -facsimileTelephoneNumber: +1 213 908-4760 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 304-9766 -title: Associate Payroll Vice President -userPassword: Password1 -uid: ClarksoJ -givenName: Jeanie -mail: ClarksoJ@d89a6add90a54661825d72b17fd5b437.bitwarden.com -carLicense: 819CWP -departmentNumber: 3872 -employeeType: Normal -homePhone: +1 213 993-8390 -initials: J. C. -mobile: +1 213 636-6554 -pager: +1 213 898-2096 -roomNumber: 9937 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristy Rhattigan -sn: Rhattigan -description: This is Kristy Rhattigan's description -facsimileTelephoneNumber: +1 818 713-3662 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 656-9204 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: RhattigK -givenName: Kristy -mail: RhattigK@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com -carLicense: BOK62E -departmentNumber: 5090 -employeeType: Contract -homePhone: +1 818 101-5492 -initials: K. R. -mobile: +1 818 201-3446 -pager: +1 818 378-5289 -roomNumber: 9750 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ali GarciaLamarca -sn: GarciaLamarca -description: This is Ali GarciaLamarca's description -facsimileTelephoneNumber: +1 804 275-1175 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 600-8943 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: GarciaLA -givenName: Ali -mail: GarciaLA@1ee43d5295b54a68904e38d5e6ea6d47.bitwarden.com -carLicense: 5X5HHX -departmentNumber: 2051 -employeeType: Employee -homePhone: +1 804 850-3725 -initials: A. G. -mobile: +1 804 478-7895 -pager: +1 804 713-2962 -roomNumber: 9937 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnneMarie Atkinson -sn: Atkinson -description: This is AnneMarie Atkinson's description -facsimileTelephoneNumber: +1 818 895-9974 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 253-3073 -title: Master Peons Admin -userPassword: Password1 -uid: AtkinsoA -givenName: AnneMarie -mail: AtkinsoA@17061e8235904e0b93980e91f7a69e37.bitwarden.com -carLicense: WU2KJR -departmentNumber: 7325 -employeeType: Normal -homePhone: +1 818 745-8443 -initials: A. A. -mobile: +1 818 962-6991 -pager: +1 818 871-9302 -roomNumber: 9515 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beckie Cowell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beckie Cowell -sn: Cowell -description: This is Beckie Cowell's description -facsimileTelephoneNumber: +1 206 148-3739 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 865-1545 -title: Chief Payroll Consultant -userPassword: Password1 -uid: CowellB -givenName: Beckie -mail: CowellB@43d56f86246844bbb069d46885224475.bitwarden.com -carLicense: ARUB0C -departmentNumber: 2287 -employeeType: Contract -homePhone: +1 206 275-6289 -initials: B. C. -mobile: +1 206 108-9606 -pager: +1 206 108-2853 -roomNumber: 9367 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maso Mathewson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maso Mathewson -sn: Mathewson -description: This is Maso Mathewson's description -facsimileTelephoneNumber: +1 415 730-1739 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 415 622-6630 -title: Master Administrative Technician -userPassword: Password1 -uid: MathewsM -givenName: Maso -mail: MathewsM@4b85844a8d8b4d8c8c64c4c289791834.bitwarden.com -carLicense: WBVVHR -departmentNumber: 7173 -employeeType: Normal -homePhone: +1 415 400-4942 -initials: M. M. -mobile: +1 415 767-3331 -pager: +1 415 264-3719 -roomNumber: 8262 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Arnis Fredette,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arnis Fredette -sn: Fredette -description: This is Arnis Fredette's description -facsimileTelephoneNumber: +1 206 978-2614 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 753-1080 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: FredettA -givenName: Arnis -mail: FredettA@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com -carLicense: S5LAB0 -departmentNumber: 1600 -employeeType: Contract -homePhone: +1 206 285-4388 -initials: A. F. -mobile: +1 206 726-2044 -pager: +1 206 333-4685 -roomNumber: 9850 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maddie Bowick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maddie Bowick -sn: Bowick -description: This is Maddie Bowick's description -facsimileTelephoneNumber: +1 206 349-2102 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 948-9805 -title: Junior Product Testing Manager -userPassword: Password1 -uid: BowickM -givenName: Maddie -mail: BowickM@d534d4e018bc4513999f8eae2be01976.bitwarden.com -carLicense: 20HT96 -departmentNumber: 1070 -employeeType: Contract -homePhone: +1 206 866-3133 -initials: M. B. -mobile: +1 206 355-6628 -pager: +1 206 228-8211 -roomNumber: 8719 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jolene Datema,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolene Datema -sn: Datema -description: This is Jolene Datema's description -facsimileTelephoneNumber: +1 818 319-3034 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 818 447-8652 -title: Associate Product Testing Manager -userPassword: Password1 -uid: DatemaJ -givenName: Jolene -mail: DatemaJ@4f99a2d4c8e343d39b81a3ab47785f76.bitwarden.com -carLicense: G2N5YA -departmentNumber: 3017 -employeeType: Contract -homePhone: +1 818 969-6612 -initials: J. D. -mobile: +1 818 186-4017 -pager: +1 818 962-8065 -roomNumber: 9212 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kuswara Musick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kuswara Musick -sn: Musick -description: This is Kuswara Musick's description -facsimileTelephoneNumber: +1 408 742-9945 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 685-3004 -title: Junior Management Artist -userPassword: Password1 -uid: MusickK -givenName: Kuswara -mail: MusickK@975f42c981f64264a2c4cf3ee5b53c68.bitwarden.com -carLicense: K3PP91 -departmentNumber: 7370 -employeeType: Employee -homePhone: +1 408 724-9772 -initials: K. M. -mobile: +1 408 276-2509 -pager: +1 408 799-9970 -roomNumber: 9157 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Belia Mustafa,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belia Mustafa -sn: Mustafa -description: This is Belia Mustafa's description -facsimileTelephoneNumber: +1 510 378-8609 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 519-9053 -title: Supreme Product Development Fellow -userPassword: Password1 -uid: MustafaB -givenName: Belia -mail: MustafaB@1f70c3bade4e4575a0687e469e22b825.bitwarden.com -carLicense: Q3N5NG -departmentNumber: 6749 -employeeType: Employee -homePhone: +1 510 680-3307 -initials: B. M. -mobile: +1 510 526-3971 -pager: +1 510 283-5445 -roomNumber: 9515 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kelcie Rowe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelcie Rowe -sn: Rowe -description: This is Kelcie Rowe's description -facsimileTelephoneNumber: +1 818 681-2546 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 818 845-2808 -title: Master Payroll Consultant -userPassword: Password1 -uid: RoweK -givenName: Kelcie -mail: RoweK@d6c388cda1d54d59a23516cc122a5ef1.bitwarden.com -carLicense: QUBEKL -departmentNumber: 5051 -employeeType: Normal -homePhone: +1 818 750-8513 -initials: K. R. -mobile: +1 818 579-2408 -pager: +1 818 354-1148 -roomNumber: 8662 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailee Gingrich -sn: Gingrich -description: This is Ailee Gingrich's description -facsimileTelephoneNumber: +1 408 165-3694 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 967-1061 -title: Associate Product Testing Writer -userPassword: Password1 -uid: GingricA -givenName: Ailee -mail: GingricA@9b2c23de49384f84ae5a2204e6781b81.bitwarden.com -carLicense: DFAHM2 -departmentNumber: 1291 -employeeType: Employee -homePhone: +1 408 948-5939 -initials: A. G. -mobile: +1 408 456-1385 -pager: +1 408 664-1763 -roomNumber: 8397 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Oguz Crafton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oguz Crafton -sn: Crafton -description: This is Oguz Crafton's description -facsimileTelephoneNumber: +1 206 504-9812 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 304-5761 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: CraftonO -givenName: Oguz -mail: CraftonO@e87ee38d93414ee3a0d592bc127097ad.bitwarden.com -carLicense: M1RQLS -departmentNumber: 9153 -employeeType: Contract -homePhone: +1 206 143-8687 -initials: O. C. -mobile: +1 206 124-7018 -pager: +1 206 514-9458 -roomNumber: 9921 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heidie Lenzi -sn: Lenzi -description: This is Heidie Lenzi's description -facsimileTelephoneNumber: +1 206 928-9728 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 587-7804 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: LenziH -givenName: Heidie -mail: LenziH@c7c0612e18954668878d3bc1afa0d5de.bitwarden.com -carLicense: EVVL3S -departmentNumber: 5204 -employeeType: Contract -homePhone: +1 206 564-4166 -initials: H. L. -mobile: +1 206 566-1585 -pager: +1 206 981-6985 -roomNumber: 8976 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilmer Kowaleski -sn: Kowaleski -description: This is Wilmer Kowaleski's description -facsimileTelephoneNumber: +1 206 485-7309 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 206 418-8033 -title: Supreme Product Development Fellow -userPassword: Password1 -uid: KowalesW -givenName: Wilmer -mail: KowalesW@7f9caaee8d0a4000bdc6e432d2ef6c1b.bitwarden.com -carLicense: XTA341 -departmentNumber: 5503 -employeeType: Employee -homePhone: +1 206 741-2550 -initials: W. K. -mobile: +1 206 526-4267 -pager: +1 206 149-2601 -roomNumber: 9549 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anallese Luszczek,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anallese Luszczek -sn: Luszczek -description: This is Anallese Luszczek's description -facsimileTelephoneNumber: +1 213 275-5861 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 213 586-8862 -title: Chief Product Development Dictator -userPassword: Password1 -uid: LuszczeA -givenName: Anallese -mail: LuszczeA@2a7e39a5b875406f9085c17bedc931dd.bitwarden.com -carLicense: J7XH3H -departmentNumber: 4926 -employeeType: Normal -homePhone: +1 213 425-4537 -initials: A. L. -mobile: +1 213 338-3403 -pager: +1 213 110-5437 -roomNumber: 8466 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Raeann Fu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raeann Fu -sn: Fu -description: This is Raeann Fu's description -facsimileTelephoneNumber: +1 213 932-7350 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 590-5460 -title: Junior Janitorial Developer -userPassword: Password1 -uid: FuR -givenName: Raeann -mail: FuR@a7e7b13342d14512ab65c0fc1d87a2ae.bitwarden.com -carLicense: 84ACUE -departmentNumber: 3854 -employeeType: Normal -homePhone: +1 213 214-2139 -initials: R. F. -mobile: +1 213 555-7190 -pager: +1 213 732-1019 -roomNumber: 8438 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dyanna Hartling,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyanna Hartling -sn: Hartling -description: This is Dyanna Hartling's description -facsimileTelephoneNumber: +1 510 275-5703 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 318-9423 -title: Supreme Payroll Czar -userPassword: Password1 -uid: HartlinD -givenName: Dyanna -mail: HartlinD@42585481abdb4363ac24feac32c0a14e.bitwarden.com -carLicense: CRLCQX -departmentNumber: 8120 -employeeType: Employee -homePhone: +1 510 931-9983 -initials: D. H. -mobile: +1 510 983-2784 -pager: +1 510 437-2668 -roomNumber: 9729 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomson Bloedon -sn: Bloedon -description: This is Thomson Bloedon's description -facsimileTelephoneNumber: +1 415 530-7322 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 834-9627 -title: Junior Janitorial Admin -userPassword: Password1 -uid: BloedonT -givenName: Thomson -mail: BloedonT@9c4f9eaf4eea42848e2ed65a10014c07.bitwarden.com -carLicense: FQYAJY -departmentNumber: 9892 -employeeType: Normal -homePhone: +1 415 474-1401 -initials: T. B. -mobile: +1 415 472-1415 -pager: +1 415 627-7613 -roomNumber: 9573 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hamid Peng,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hamid Peng -sn: Peng -description: This is Hamid Peng's description -facsimileTelephoneNumber: +1 415 620-7789 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 675-7151 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: PengH -givenName: Hamid -mail: PengH@87501b64e5644d78a747c4f01175b74a.bitwarden.com -carLicense: OYSHBR -departmentNumber: 7189 -employeeType: Normal -homePhone: +1 415 793-7131 -initials: H. P. -mobile: +1 415 700-2926 -pager: +1 415 172-5359 -roomNumber: 9458 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Michaela Minichillo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michaela Minichillo -sn: Minichillo -description: This is Michaela Minichillo's description -facsimileTelephoneNumber: +1 818 730-2691 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 818 868-2907 -title: Chief Peons Consultant -userPassword: Password1 -uid: MinichiM -givenName: Michaela -mail: MinichiM@addacb3184714ace97e25c0e017ebbb0.bitwarden.com -carLicense: 07HG18 -departmentNumber: 7667 -employeeType: Employee -homePhone: +1 818 793-8641 -initials: M. M. -mobile: +1 818 166-4013 -pager: +1 818 139-5134 -roomNumber: 9965 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chesteen Guzman -sn: Guzman -description: This is Chesteen Guzman's description -facsimileTelephoneNumber: +1 510 283-8380 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 295-1918 -title: Chief Human Resources Dictator -userPassword: Password1 -uid: GuzmanC -givenName: Chesteen -mail: GuzmanC@ea74020b5db84a1f9fcb412873464117.bitwarden.com -carLicense: 7RPNIE -departmentNumber: 9052 -employeeType: Contract -homePhone: +1 510 134-8081 -initials: C. G. -mobile: +1 510 119-5291 -pager: +1 510 382-1226 -roomNumber: 8944 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Romano Moosavi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Romano Moosavi -sn: Moosavi -description: This is Romano Moosavi's description -facsimileTelephoneNumber: +1 818 281-9430 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 274-9910 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: MoosaviR -givenName: Romano -mail: MoosaviR@34856ffc4b2a4685be33512cea557265.bitwarden.com -carLicense: OVK2E2 -departmentNumber: 3485 -employeeType: Normal -homePhone: +1 818 698-4107 -initials: R. M. -mobile: +1 818 356-1410 -pager: +1 818 612-2124 -roomNumber: 9629 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weber Kosnaskie -sn: Kosnaskie -description: This is Weber Kosnaskie's description -facsimileTelephoneNumber: +1 206 674-6463 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 957-1339 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: KosnaskW -givenName: Weber -mail: KosnaskW@da8e740f807d423dbc2e15de67bce38e.bitwarden.com -carLicense: WWPV22 -departmentNumber: 1325 -employeeType: Contract -homePhone: +1 206 588-4607 -initials: W. K. -mobile: +1 206 528-7209 -pager: +1 206 119-7441 -roomNumber: 8904 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nannette Pantages,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nannette Pantages -sn: Pantages -description: This is Nannette Pantages's description -facsimileTelephoneNumber: +1 804 757-7208 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 727-1538 -title: Chief Janitorial Czar -userPassword: Password1 -uid: PantageN -givenName: Nannette -mail: PantageN@f88ed4d88d0c4b619b4b2076642c1070.bitwarden.com -carLicense: HGC2SS -departmentNumber: 1190 -employeeType: Employee -homePhone: +1 804 703-3850 -initials: N. P. -mobile: +1 804 320-8398 -pager: +1 804 410-6461 -roomNumber: 9590 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zaihua Dhuga,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zaihua Dhuga -sn: Dhuga -description: This is Zaihua Dhuga's description -facsimileTelephoneNumber: +1 510 514-9177 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 469-4325 -title: Master Peons Vice President -userPassword: Password1 -uid: DhugaZ -givenName: Zaihua -mail: DhugaZ@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com -carLicense: ADTUXG -departmentNumber: 8414 -employeeType: Normal -homePhone: +1 510 529-6974 -initials: Z. D. -mobile: +1 510 792-7437 -pager: +1 510 952-8228 -roomNumber: 9268 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Niki Brock,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niki Brock -sn: Brock -description: This is Niki Brock's description -facsimileTelephoneNumber: +1 804 159-5457 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 463-6213 -title: Associate Management Czar -userPassword: Password1 -uid: BrockN -givenName: Niki -mail: BrockN@1c75dd756d3646528231e24a92716bd4.bitwarden.com -carLicense: RNQODB -departmentNumber: 3688 -employeeType: Employee -homePhone: +1 804 795-9017 -initials: N. B. -mobile: +1 804 777-8565 -pager: +1 804 929-1411 -roomNumber: 8093 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lucila Jatar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucila Jatar -sn: Jatar -description: This is Lucila Jatar's description -facsimileTelephoneNumber: +1 804 853-7710 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 784-6483 -title: Associate Management Warrior -userPassword: Password1 -uid: JatarL -givenName: Lucila -mail: JatarL@befc232b3f4240ada061cd42724f306e.bitwarden.com -carLicense: IDR334 -departmentNumber: 6047 -employeeType: Employee -homePhone: +1 804 913-1148 -initials: L. J. -mobile: +1 804 828-5662 -pager: +1 804 468-1262 -roomNumber: 9248 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Reiko StJames,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reiko StJames -sn: StJames -description: This is Reiko StJames's description -facsimileTelephoneNumber: +1 415 204-9799 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 952-9827 -title: Associate Payroll Fellow -userPassword: Password1 -uid: StJamesR -givenName: Reiko -mail: StJamesR@6a93cf1aebfe489dacbfbd53e393bea0.bitwarden.com -carLicense: XTFU17 -departmentNumber: 7775 -employeeType: Employee -homePhone: +1 415 619-2995 -initials: R. S. -mobile: +1 415 489-7973 -pager: +1 415 638-3677 -roomNumber: 8311 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carmen Poulin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmen Poulin -sn: Poulin -description: This is Carmen Poulin's description -facsimileTelephoneNumber: +1 804 802-4008 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 849-4240 -title: Master Janitorial Grunt -userPassword: Password1 -uid: PoulinC -givenName: Carmen -mail: PoulinC@eff4b5c8cdd74572a1896b15aff841f1.bitwarden.com -carLicense: 2S04C0 -departmentNumber: 3461 -employeeType: Contract -homePhone: +1 804 959-7779 -initials: C. P. -mobile: +1 804 820-9037 -pager: +1 804 421-5184 -roomNumber: 9117 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Loree Dorval,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loree Dorval -sn: Dorval -description: This is Loree Dorval's description -facsimileTelephoneNumber: +1 415 379-2641 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 542-7903 -title: Master Human Resources Pinhead -userPassword: Password1 -uid: DorvalL -givenName: Loree -mail: DorvalL@62ec731e1ab8465b82b77be42758d517.bitwarden.com -carLicense: MRB9JW -departmentNumber: 5968 -employeeType: Employee -homePhone: +1 415 780-8746 -initials: L. D. -mobile: +1 415 788-1415 -pager: +1 415 580-2979 -roomNumber: 8748 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tricord Heinrichs -sn: Heinrichs -description: This is Tricord Heinrichs's description -facsimileTelephoneNumber: +1 510 320-8995 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 552-6295 -title: Chief Janitorial Director -userPassword: Password1 -uid: HeinricT -givenName: Tricord -mail: HeinricT@b7db7b74741043f1bc70179c65d8c474.bitwarden.com -carLicense: LSIEXX -departmentNumber: 5446 -employeeType: Employee -homePhone: +1 510 131-8404 -initials: T. H. -mobile: +1 510 957-3264 -pager: +1 510 468-5374 -roomNumber: 8277 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Reinhold Ballinger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reinhold Ballinger -sn: Ballinger -description: This is Reinhold Ballinger's description -facsimileTelephoneNumber: +1 408 682-1206 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 135-1099 -title: Junior Management Sales Rep -userPassword: Password1 -uid: BallingR -givenName: Reinhold -mail: BallingR@d38a3979c2de40a29545a48afbed0d22.bitwarden.com -carLicense: 22A8BV -departmentNumber: 9971 -employeeType: Contract -homePhone: +1 408 748-9725 -initials: R. B. -mobile: +1 408 738-3875 -pager: +1 408 148-4232 -roomNumber: 9683 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mat Smyth,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mat Smyth -sn: Smyth -description: This is Mat Smyth's description -facsimileTelephoneNumber: +1 804 789-3530 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 776-7892 -title: Associate Product Development Evangelist -userPassword: Password1 -uid: SmythM -givenName: Mat -mail: SmythM@dc6a05982d874ebebc06c9a0d16ba5c2.bitwarden.com -carLicense: HO75RU -departmentNumber: 7758 -employeeType: Employee -homePhone: +1 804 858-5383 -initials: M. S. -mobile: +1 804 420-6747 -pager: +1 804 508-9662 -roomNumber: 8571 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lesya Maye,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lesya Maye -sn: Maye -description: This is Lesya Maye's description -facsimileTelephoneNumber: +1 818 546-4133 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 303-7026 -title: Associate Human Resources Architect -userPassword: Password1 -uid: MayeL -givenName: Lesya -mail: MayeL@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com -carLicense: BJ5OKK -departmentNumber: 8130 -employeeType: Contract -homePhone: +1 818 986-8581 -initials: L. M. -mobile: +1 818 533-7453 -pager: +1 818 591-6610 -roomNumber: 8295 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dixie Oshinski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dixie Oshinski -sn: Oshinski -description: This is Dixie Oshinski's description -facsimileTelephoneNumber: +1 818 565-5833 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 409-6717 -title: Chief Management Engineer -userPassword: Password1 -uid: OshinskD -givenName: Dixie -mail: OshinskD@61003bbcc2b54b358efccfc69a8f8df8.bitwarden.com -carLicense: S25PS0 -departmentNumber: 8038 -employeeType: Contract -homePhone: +1 818 134-4661 -initials: D. O. -mobile: +1 818 683-2177 -pager: +1 818 611-7012 -roomNumber: 9349 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Stephanie Crerar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephanie Crerar -sn: Crerar -description: This is Stephanie Crerar's description -facsimileTelephoneNumber: +1 408 938-7182 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 165-8408 -title: Chief Peons Mascot -userPassword: Password1 -uid: CrerarS -givenName: Stephanie -mail: CrerarS@ffc6032d945b438b9865cf8c7a84e7fe.bitwarden.com -carLicense: 19TWVO -departmentNumber: 4452 -employeeType: Normal -homePhone: +1 408 246-4938 -initials: S. C. -mobile: +1 408 179-2725 -pager: +1 408 809-5831 -roomNumber: 9580 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Miguelita Wyss,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miguelita Wyss -sn: Wyss -description: This is Miguelita Wyss's description -facsimileTelephoneNumber: +1 415 410-6791 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 626-3185 -title: Master Product Development Grunt -userPassword: Password1 -uid: WyssM -givenName: Miguelita -mail: WyssM@3b50811f02664433a227210515cf2d84.bitwarden.com -carLicense: EO0EOK -departmentNumber: 9602 -employeeType: Employee -homePhone: +1 415 264-4969 -initials: M. W. -mobile: +1 415 561-4899 -pager: +1 415 487-9505 -roomNumber: 8149 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lee Kreimer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lee Kreimer -sn: Kreimer -description: This is Lee Kreimer's description -facsimileTelephoneNumber: +1 818 472-9789 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 177-3294 -title: Chief Administrative Stooge -userPassword: Password1 -uid: KreimerL -givenName: Lee -mail: KreimerL@f80be3a38b1d4889b09c7deda5322720.bitwarden.com -carLicense: AEKMK5 -departmentNumber: 8877 -employeeType: Contract -homePhone: +1 818 376-8995 -initials: L. K. -mobile: +1 818 980-9196 -pager: +1 818 371-3941 -roomNumber: 8566 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lavonda Kerwin -sn: Kerwin -description: This is Lavonda Kerwin's description -facsimileTelephoneNumber: +1 415 459-2791 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 776-2761 -title: Master Human Resources Madonna -userPassword: Password1 -uid: KerwinL -givenName: Lavonda -mail: KerwinL@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com -carLicense: FLHC1R -departmentNumber: 3166 -employeeType: Employee -homePhone: +1 415 544-5206 -initials: L. K. -mobile: +1 415 508-6440 -pager: +1 415 901-6663 -roomNumber: 9168 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Violetta Nttest,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Violetta Nttest -sn: Nttest -description: This is Violetta Nttest's description -facsimileTelephoneNumber: +1 818 850-8965 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 733-2020 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: NttestV -givenName: Violetta -mail: NttestV@c60d22407c0d47c0b12a1be490e44c72.bitwarden.com -carLicense: 26AIW0 -departmentNumber: 8577 -employeeType: Employee -homePhone: +1 818 525-3724 -initials: V. N. -mobile: +1 818 926-6628 -pager: +1 818 649-3170 -roomNumber: 8058 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chau Gyenes,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chau Gyenes -sn: Gyenes -description: This is Chau Gyenes's description -facsimileTelephoneNumber: +1 213 354-1388 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 213 955-4233 -title: Junior Administrative Writer -userPassword: Password1 -uid: GyenesC -givenName: Chau -mail: GyenesC@79ff22f8d12b4572811ad95061bf5388.bitwarden.com -carLicense: OC49UC -departmentNumber: 8046 -employeeType: Normal -homePhone: +1 213 347-7735 -initials: C. G. -mobile: +1 213 381-7339 -pager: +1 213 195-5049 -roomNumber: 9942 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Melva Kaefer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melva Kaefer -sn: Kaefer -description: This is Melva Kaefer's description -facsimileTelephoneNumber: +1 804 531-3360 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 887-5574 -title: Associate Management Grunt -userPassword: Password1 -uid: KaeferM -givenName: Melva -mail: KaeferM@d27485ac0882409f8001fecce0300eb4.bitwarden.com -carLicense: LJPKTV -departmentNumber: 3237 -employeeType: Employee -homePhone: +1 804 254-2199 -initials: M. K. -mobile: +1 804 186-4562 -pager: +1 804 677-9958 -roomNumber: 8553 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Celinka Laprade,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celinka Laprade -sn: Laprade -description: This is Celinka Laprade's description -facsimileTelephoneNumber: +1 510 542-9418 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 801-8637 -title: Supreme Peons Dictator -userPassword: Password1 -uid: LapradeC -givenName: Celinka -mail: LapradeC@a2fc6a711cba4ec98d716bb4c3e20f83.bitwarden.com -carLicense: LNYYV1 -departmentNumber: 4064 -employeeType: Employee -homePhone: +1 510 588-3178 -initials: C. L. -mobile: +1 510 601-4572 -pager: +1 510 148-6412 -roomNumber: 8221 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Abbey Firat,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abbey Firat -sn: Firat -description: This is Abbey Firat's description -facsimileTelephoneNumber: +1 510 507-3944 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 217-1826 -title: Junior Janitorial Warrior -userPassword: Password1 -uid: FiratA -givenName: Abbey -mail: FiratA@c9027f607987451aa869ec32b2ad0708.bitwarden.com -carLicense: TGOLYD -departmentNumber: 8437 -employeeType: Contract -homePhone: +1 510 535-8240 -initials: A. F. -mobile: +1 510 780-8747 -pager: +1 510 460-5982 -roomNumber: 8748 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Coleen Kovats,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coleen Kovats -sn: Kovats -description: This is Coleen Kovats's description -facsimileTelephoneNumber: +1 818 948-3083 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 495-4804 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: KovatsC -givenName: Coleen -mail: KovatsC@bdfcb82199ec4806bb1989f89de74296.bitwarden.com -carLicense: HO43NR -departmentNumber: 7108 -employeeType: Normal -homePhone: +1 818 439-4804 -initials: C. K. -mobile: +1 818 936-1400 -pager: +1 818 600-2840 -roomNumber: 9304 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Merla Tsitsior,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merla Tsitsior -sn: Tsitsior -description: This is Merla Tsitsior's description -facsimileTelephoneNumber: +1 804 481-1654 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 788-1057 -title: Master Payroll Fellow -userPassword: Password1 -uid: TsitsioM -givenName: Merla -mail: TsitsioM@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com -carLicense: XJEJDR -departmentNumber: 1064 -employeeType: Contract -homePhone: +1 804 535-9488 -initials: M. T. -mobile: +1 804 108-8160 -pager: +1 804 761-2203 -roomNumber: 8282 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marek Harwerth,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marek Harwerth -sn: Harwerth -description: This is Marek Harwerth's description -facsimileTelephoneNumber: +1 206 190-9846 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 556-7569 -title: Chief Payroll Grunt -userPassword: Password1 -uid: HarwertM -givenName: Marek -mail: HarwertM@07add4ded06549a3b31963a376ba1c96.bitwarden.com -carLicense: 11FLIT -departmentNumber: 3404 -employeeType: Employee -homePhone: +1 206 852-3820 -initials: M. H. -mobile: +1 206 678-1652 -pager: +1 206 258-6506 -roomNumber: 8092 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bertie Whatley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bertie Whatley -sn: Whatley -description: This is Bertie Whatley's description -facsimileTelephoneNumber: +1 415 893-5509 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 704-9306 -title: Junior Product Development Consultant -userPassword: Password1 -uid: WhatleyB -givenName: Bertie -mail: WhatleyB@4c3a20eeff014e34829e7e04f58210d0.bitwarden.com -carLicense: M4RLC2 -departmentNumber: 8444 -employeeType: Normal -homePhone: +1 415 450-6624 -initials: B. W. -mobile: +1 415 832-3168 -pager: +1 415 635-1345 -roomNumber: 9998 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Message Cohen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Message Cohen -sn: Cohen -description: This is Message Cohen's description -facsimileTelephoneNumber: +1 804 557-6633 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 284-1152 -title: Supreme Janitorial Director -userPassword: Password1 -uid: CohenM -givenName: Message -mail: CohenM@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com -carLicense: 7U3W8S -departmentNumber: 7396 -employeeType: Normal -homePhone: +1 804 651-7007 -initials: M. C. -mobile: +1 804 684-5040 -pager: +1 804 116-7112 -roomNumber: 9176 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chai NTINASH,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chai NTINASH -sn: NTINASH -description: This is Chai NTINASH's description -facsimileTelephoneNumber: +1 415 995-5924 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 975-6788 -title: Master Product Development Janitor -userPassword: Password1 -uid: NTINASHC -givenName: Chai -mail: NTINASHC@91023564560e4387b5bc8c338afb8d2d.bitwarden.com -carLicense: 68RWI3 -departmentNumber: 3327 -employeeType: Employee -homePhone: +1 415 110-8850 -initials: C. N. -mobile: +1 415 632-7200 -pager: +1 415 755-2458 -roomNumber: 8010 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karin Schaller,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karin Schaller -sn: Schaller -description: This is Karin Schaller's description -facsimileTelephoneNumber: +1 206 367-9657 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 139-4611 -title: Junior Management Janitor -userPassword: Password1 -uid: SchalleK -givenName: Karin -mail: SchalleK@f9d178e246d64d2e972c6a88cbdc9616.bitwarden.com -carLicense: JIUIYT -departmentNumber: 6093 -employeeType: Contract -homePhone: +1 206 414-9315 -initials: K. S. -mobile: +1 206 708-4800 -pager: +1 206 526-3274 -roomNumber: 8921 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nicolea StMartin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolea StMartin -sn: StMartin -description: This is Nicolea StMartin's description -facsimileTelephoneNumber: +1 804 861-7177 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 401-5508 -title: Junior Payroll Grunt -userPassword: Password1 -uid: StMartiN -givenName: Nicolea -mail: StMartiN@a5b16f07cc5f4d548df233a10f2abd0b.bitwarden.com -carLicense: H89VYM -departmentNumber: 9343 -employeeType: Normal -homePhone: +1 804 359-7772 -initials: N. S. -mobile: +1 804 154-3637 -pager: +1 804 883-2880 -roomNumber: 8953 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Heda Bowens,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heda Bowens -sn: Bowens -description: This is Heda Bowens's description -facsimileTelephoneNumber: +1 510 105-1693 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 249-9350 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: BowensH -givenName: Heda -mail: BowensH@85000db2e5e34d6d81e53b19e5b46684.bitwarden.com -carLicense: OPCSGJ -departmentNumber: 6997 -employeeType: Contract -homePhone: +1 510 671-4193 -initials: H. B. -mobile: +1 510 918-4388 -pager: +1 510 487-6848 -roomNumber: 9137 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Conni Westgarth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Conni Westgarth -sn: Westgarth -description: This is Conni Westgarth's description -facsimileTelephoneNumber: +1 206 630-4221 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 987-9284 -title: Associate Product Testing Technician -userPassword: Password1 -uid: WestgarC -givenName: Conni -mail: WestgarC@37f78211f5f44e43b7f84a7d34417dc7.bitwarden.com -carLicense: MJGPJR -departmentNumber: 9212 -employeeType: Contract -homePhone: +1 206 242-8908 -initials: C. W. -mobile: +1 206 685-4687 -pager: +1 206 375-3968 -roomNumber: 9377 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Joell Bolzon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joell Bolzon -sn: Bolzon -description: This is Joell Bolzon's description -facsimileTelephoneNumber: +1 213 418-5033 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 804-8161 -title: Supreme Payroll Architect -userPassword: Password1 -uid: BolzonJ -givenName: Joell -mail: BolzonJ@06521bdd507441e9a09de35a0e462c1a.bitwarden.com -carLicense: IYA55H -departmentNumber: 4732 -employeeType: Normal -homePhone: +1 213 643-6093 -initials: J. B. -mobile: +1 213 363-5936 -pager: +1 213 351-3632 -roomNumber: 9682 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Christianne Carling,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christianne Carling -sn: Carling -description: This is Christianne Carling's description -facsimileTelephoneNumber: +1 206 646-6348 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 590-4107 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: CarlingC -givenName: Christianne -mail: CarlingC@06731df963584f3ca191849b64eabf87.bitwarden.com -carLicense: 1HLPVS -departmentNumber: 5387 -employeeType: Employee -homePhone: +1 206 202-2334 -initials: C. C. -mobile: +1 206 850-5735 -pager: +1 206 676-7781 -roomNumber: 9898 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nessy Grewal,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nessy Grewal -sn: Grewal -description: This is Nessy Grewal's description -facsimileTelephoneNumber: +1 408 303-5223 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 521-7446 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: GrewalN -givenName: Nessy -mail: GrewalN@8c8bf3789a35468ea6c95834e941f083.bitwarden.com -carLicense: LWLUN1 -departmentNumber: 3809 -employeeType: Contract -homePhone: +1 408 223-7104 -initials: N. G. -mobile: +1 408 865-3548 -pager: +1 408 398-7727 -roomNumber: 8615 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lex Woodyer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lex Woodyer -sn: Woodyer -description: This is Lex Woodyer's description -facsimileTelephoneNumber: +1 818 187-7456 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 263-4679 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: WoodyerL -givenName: Lex -mail: WoodyerL@e059f798bf444774a99e078fccd4a4f3.bitwarden.com -carLicense: FWJ7S6 -departmentNumber: 6322 -employeeType: Normal -homePhone: +1 818 385-4014 -initials: L. W. -mobile: +1 818 523-8932 -pager: +1 818 211-5111 -roomNumber: 9541 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pamela Fon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pamela Fon -sn: Fon -description: This is Pamela Fon's description -facsimileTelephoneNumber: +1 213 656-2714 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 155-5219 -title: Associate Peons Dictator -userPassword: Password1 -uid: FonP -givenName: Pamela -mail: FonP@cc117505f3744c0d8553f4b07f63ca99.bitwarden.com -carLicense: J58BJ3 -departmentNumber: 8407 -employeeType: Normal -homePhone: +1 213 114-7709 -initials: P. F. -mobile: +1 213 418-6321 -pager: +1 213 327-1589 -roomNumber: 9617 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sukhwant Wobbrock -sn: Wobbrock -description: This is Sukhwant Wobbrock's description -facsimileTelephoneNumber: +1 213 950-5209 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 173-5657 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: WobbrocS -givenName: Sukhwant -mail: WobbrocS@fc3f6240126d440389a99ebbf528efcb.bitwarden.com -carLicense: PQEFEX -departmentNumber: 3792 -employeeType: Employee -homePhone: +1 213 467-1752 -initials: S. W. -mobile: +1 213 808-5231 -pager: +1 213 226-6367 -roomNumber: 8311 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Loris Winterberg,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loris Winterberg -sn: Winterberg -description: This is Loris Winterberg's description -facsimileTelephoneNumber: +1 206 328-9548 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 303-9769 -title: Master Administrative Engineer -userPassword: Password1 -uid: WinterbL -givenName: Loris -mail: WinterbL@ff8c4aaacc274f3781ccca8d193be581.bitwarden.com -carLicense: P20WYD -departmentNumber: 6857 -employeeType: Contract -homePhone: +1 206 651-1835 -initials: L. W. -mobile: +1 206 503-3638 -pager: +1 206 443-9526 -roomNumber: 8240 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Business Huether,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Business Huether -sn: Huether -description: This is Business Huether's description -facsimileTelephoneNumber: +1 213 286-4968 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 707-7321 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: HuetherB -givenName: Business -mail: HuetherB@e0451e7239ff4357aaa9acaa2724cd82.bitwarden.com -carLicense: 3XV2RD -departmentNumber: 1082 -employeeType: Contract -homePhone: +1 213 992-3680 -initials: B. H. -mobile: +1 213 190-5030 -pager: +1 213 906-4042 -roomNumber: 9189 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Susanne Repeta,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susanne Repeta -sn: Repeta -description: This is Susanne Repeta's description -facsimileTelephoneNumber: +1 206 895-2557 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 454-1167 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: RepetaS -givenName: Susanne -mail: RepetaS@2d9b448800384d01a7fa8a4fa28f7c7a.bitwarden.com -carLicense: 9VQ3RL -departmentNumber: 6025 -employeeType: Contract -homePhone: +1 206 985-4248 -initials: S. R. -mobile: +1 206 201-5608 -pager: +1 206 637-6415 -roomNumber: 8538 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Willie Murphy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willie Murphy -sn: Murphy -description: This is Willie Murphy's description -facsimileTelephoneNumber: +1 804 384-6524 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 433-2395 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: MurphyW -givenName: Willie -mail: MurphyW@6f609804b5454243a8f49419cf4fa238.bitwarden.com -carLicense: UT6N92 -departmentNumber: 3218 -employeeType: Normal -homePhone: +1 804 783-8306 -initials: W. M. -mobile: +1 804 932-4557 -pager: +1 804 725-5142 -roomNumber: 9931 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Donella Duncan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donella Duncan -sn: Duncan -description: This is Donella Duncan's description -facsimileTelephoneNumber: +1 510 278-3730 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 232-6931 -title: Junior Product Testing Pinhead -userPassword: Password1 -uid: DuncanD -givenName: Donella -mail: DuncanD@738f967b243c46139646bd958f28d963.bitwarden.com -carLicense: 96QAVY -departmentNumber: 5773 -employeeType: Employee -homePhone: +1 510 570-5997 -initials: D. D. -mobile: +1 510 940-6879 -pager: +1 510 224-9834 -roomNumber: 9722 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquelin Coutu -sn: Coutu -description: This is Jacquelin Coutu's description -facsimileTelephoneNumber: +1 804 129-1487 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 870-5117 -title: Supreme Product Development Consultant -userPassword: Password1 -uid: CoutuJ -givenName: Jacquelin -mail: CoutuJ@37f6e89a491b4e36b50bf46647ad8a4f.bitwarden.com -carLicense: MW0SWO -departmentNumber: 8352 -employeeType: Contract -homePhone: +1 804 535-1857 -initials: J. C. -mobile: +1 804 215-9211 -pager: +1 804 758-4286 -roomNumber: 8522 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=JeanBernard Coord,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanBernard Coord -sn: Coord -description: This is JeanBernard Coord's description -facsimileTelephoneNumber: +1 818 552-1092 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 714-2632 -title: Chief Administrative Punk -userPassword: Password1 -uid: CoordJ -givenName: JeanBernard -mail: CoordJ@bb6c98b6a4dc470ea57c17d165eabc5d.bitwarden.com -carLicense: 4JVT0C -departmentNumber: 9807 -employeeType: Contract -homePhone: +1 818 184-5383 -initials: J. C. -mobile: +1 818 585-2883 -pager: +1 818 749-3989 -roomNumber: 8864 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tove Mettrey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tove Mettrey -sn: Mettrey -description: This is Tove Mettrey's description -facsimileTelephoneNumber: +1 804 927-1851 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 378-2130 -title: Associate Product Development Dictator -userPassword: Password1 -uid: MettreyT -givenName: Tove -mail: MettreyT@c08c80f3c69d4d04b025dc038c8f6045.bitwarden.com -carLicense: MG9DC5 -departmentNumber: 4482 -employeeType: Contract -homePhone: +1 804 309-8174 -initials: T. M. -mobile: +1 804 136-2268 -pager: +1 804 334-8716 -roomNumber: 8979 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kathye Terwilligar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathye Terwilligar -sn: Terwilligar -description: This is Kathye Terwilligar's description -facsimileTelephoneNumber: +1 206 112-3224 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 472-9515 -title: Associate Peons Visionary -userPassword: Password1 -uid: TerwillK -givenName: Kathye -mail: TerwillK@cff83e5325124f689808e755392aa586.bitwarden.com -carLicense: IC5ICB -departmentNumber: 9065 -employeeType: Contract -homePhone: +1 206 826-4655 -initials: K. T. -mobile: +1 206 278-5491 -pager: +1 206 940-7681 -roomNumber: 9983 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Emilda Wylie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emilda Wylie -sn: Wylie -description: This is Emilda Wylie's description -facsimileTelephoneNumber: +1 408 978-2937 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 975-6426 -title: Master Product Development Visionary -userPassword: Password1 -uid: WylieE -givenName: Emilda -mail: WylieE@d93b82016f974a879c0bb4f0879ad59a.bitwarden.com -carLicense: 3UP7V8 -departmentNumber: 6759 -employeeType: Normal -homePhone: +1 408 614-6496 -initials: E. W. -mobile: +1 408 182-6284 -pager: +1 408 990-5105 -roomNumber: 9036 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anette McBryan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anette McBryan -sn: McBryan -description: This is Anette McBryan's description -facsimileTelephoneNumber: +1 510 279-3936 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 162-8454 -title: Master Janitorial Czar -userPassword: Password1 -uid: McBryanA -givenName: Anette -mail: McBryanA@e031c0ad66574b2aa76e4d7b19f2099d.bitwarden.com -carLicense: MFKDRL -departmentNumber: 1668 -employeeType: Contract -homePhone: +1 510 736-3970 -initials: A. M. -mobile: +1 510 169-3844 -pager: +1 510 226-4141 -roomNumber: 9889 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jannelle Burnside,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jannelle Burnside -sn: Burnside -description: This is Jannelle Burnside's description -facsimileTelephoneNumber: +1 510 313-7963 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 910-9513 -title: Chief Management Warrior -userPassword: Password1 -uid: BurnsidJ -givenName: Jannelle -mail: BurnsidJ@512b1443d1ed45ccb0713f3efd2670c6.bitwarden.com -carLicense: T8KR67 -departmentNumber: 9162 -employeeType: Normal -homePhone: +1 510 426-7580 -initials: J. B. -mobile: +1 510 536-5001 -pager: +1 510 549-5868 -roomNumber: 8578 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Swact Evans,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Swact Evans -sn: Evans -description: This is Swact Evans's description -facsimileTelephoneNumber: +1 510 561-4032 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 702-2908 -title: Junior Management Czar -userPassword: Password1 -uid: EvansS -givenName: Swact -mail: EvansS@5ebaa8af105c497682481efce65265ab.bitwarden.com -carLicense: CUDESC -departmentNumber: 9924 -employeeType: Employee -homePhone: +1 510 970-1587 -initials: S. E. -mobile: +1 510 417-9745 -pager: +1 510 540-9476 -roomNumber: 9291 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Almeda Bloemker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Almeda Bloemker -sn: Bloemker -description: This is Almeda Bloemker's description -facsimileTelephoneNumber: +1 415 660-9384 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 415 842-9386 -title: Chief Peons Fellow -userPassword: Password1 -uid: BloemkeA -givenName: Almeda -mail: BloemkeA@dbed6d43a21541a596721c7d187872fe.bitwarden.com -carLicense: E8G56Q -departmentNumber: 1905 -employeeType: Normal -homePhone: +1 415 771-1107 -initials: A. B. -mobile: +1 415 323-4955 -pager: +1 415 283-8944 -roomNumber: 9837 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ronn Peschke,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronn Peschke -sn: Peschke -description: This is Ronn Peschke's description -facsimileTelephoneNumber: +1 408 675-7842 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 764-3447 -title: Associate Human Resources Czar -userPassword: Password1 -uid: PeschkeR -givenName: Ronn -mail: PeschkeR@49c1a115ac8b439f9ab99f302ba59751.bitwarden.com -carLicense: E02P9S -departmentNumber: 6110 -employeeType: Employee -homePhone: +1 408 174-8306 -initials: R. P. -mobile: +1 408 466-2829 -pager: +1 408 370-4669 -roomNumber: 8309 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ainslee Scp,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ainslee Scp -sn: Scp -description: This is Ainslee Scp's description -facsimileTelephoneNumber: +1 818 137-6360 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 818 265-3067 -title: Associate Management Dictator -userPassword: Password1 -uid: ScpA -givenName: Ainslee -mail: ScpA@59a53864c7aa4d7ea9936880199e460a.bitwarden.com -carLicense: VVT483 -departmentNumber: 1781 -employeeType: Employee -homePhone: +1 818 192-1178 -initials: A. S. -mobile: +1 818 416-3399 -pager: +1 818 404-6006 -roomNumber: 8957 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Claudina Jablonski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claudina Jablonski -sn: Jablonski -description: This is Claudina Jablonski's description -facsimileTelephoneNumber: +1 818 127-4670 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 626-4271 -title: Master Product Development Punk -userPassword: Password1 -uid: JablonsC -givenName: Claudina -mail: JablonsC@4c3bb131ea5148028bf43ce4a8c06b23.bitwarden.com -carLicense: TETX4B -departmentNumber: 4699 -employeeType: Normal -homePhone: +1 818 725-7154 -initials: C. J. -mobile: +1 818 278-8316 -pager: +1 818 649-5470 -roomNumber: 8730 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ciriaco Chatterton -sn: Chatterton -description: This is Ciriaco Chatterton's description -facsimileTelephoneNumber: +1 510 846-1588 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 910-2790 -title: Associate Human Resources Manager -userPassword: Password1 -uid: ChatterC -givenName: Ciriaco -mail: ChatterC@b981e29e060744a4970aa15bb19296ee.bitwarden.com -carLicense: 0M8A14 -departmentNumber: 1769 -employeeType: Contract -homePhone: +1 510 112-6116 -initials: C. C. -mobile: +1 510 859-1207 -pager: +1 510 115-8242 -roomNumber: 8841 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Olwen Garey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olwen Garey -sn: Garey -description: This is Olwen Garey's description -facsimileTelephoneNumber: +1 213 596-1656 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 213 146-9889 -title: Master Administrative Artist -userPassword: Password1 -uid: GareyO -givenName: Olwen -mail: GareyO@298f1a44ea7f452799d70af39fda7e0d.bitwarden.com -carLicense: 35HS0R -departmentNumber: 6069 -employeeType: Employee -homePhone: +1 213 965-8282 -initials: O. G. -mobile: +1 213 235-4260 -pager: +1 213 933-7940 -roomNumber: 9655 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ethyl Tebinka -sn: Tebinka -description: This is Ethyl Tebinka's description -facsimileTelephoneNumber: +1 510 740-9386 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 528-2083 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: TebinkaE -givenName: Ethyl -mail: TebinkaE@d215d486a3844409ae8cd732ddd91a4a.bitwarden.com -carLicense: 80EPLL -departmentNumber: 7663 -employeeType: Employee -homePhone: +1 510 101-2160 -initials: E. T. -mobile: +1 510 189-3977 -pager: +1 510 913-9010 -roomNumber: 8292 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Empdb Jahromi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Empdb Jahromi -sn: Jahromi -description: This is Empdb Jahromi's description -facsimileTelephoneNumber: +1 510 873-6163 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 744-5158 -title: Supreme Peons Dictator -userPassword: Password1 -uid: JahromiE -givenName: Empdb -mail: JahromiE@d5f1e05d95aa48aa94789d8e594894db.bitwarden.com -carLicense: J4DSKY -departmentNumber: 3160 -employeeType: Employee -homePhone: +1 510 595-7522 -initials: E. J. -mobile: +1 510 929-4823 -pager: +1 510 751-3592 -roomNumber: 8207 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ri Stouder,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ri Stouder -sn: Stouder -description: This is Ri Stouder's description -facsimileTelephoneNumber: +1 510 438-3746 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 286-6888 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: StouderR -givenName: Ri -mail: StouderR@73c831b940d9493093c37d5b1eecfad5.bitwarden.com -carLicense: DH7VOJ -departmentNumber: 9846 -employeeType: Normal -homePhone: +1 510 903-1509 -initials: R. S. -mobile: +1 510 450-9074 -pager: +1 510 450-6801 -roomNumber: 8184 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Darlene Mahonen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darlene Mahonen -sn: Mahonen -description: This is Darlene Mahonen's description -facsimileTelephoneNumber: +1 213 733-7954 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 213 810-5855 -title: Supreme Product Development Stooge -userPassword: Password1 -uid: MahonenD -givenName: Darlene -mail: MahonenD@6944056d5ed54dc5bc898067e09586b2.bitwarden.com -carLicense: 3CNJK4 -departmentNumber: 7328 -employeeType: Employee -homePhone: +1 213 823-8931 -initials: D. M. -mobile: +1 213 291-8869 -pager: +1 213 644-5025 -roomNumber: 8638 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mayumi Piitz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mayumi Piitz -sn: Piitz -description: This is Mayumi Piitz's description -facsimileTelephoneNumber: +1 213 898-1226 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 211-1282 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: PiitzM -givenName: Mayumi -mail: PiitzM@10c8d574e1b3465daa57d640cae3b608.bitwarden.com -carLicense: 50VSOQ -departmentNumber: 2213 -employeeType: Normal -homePhone: +1 213 242-5330 -initials: M. P. -mobile: +1 213 120-9275 -pager: +1 213 914-4945 -roomNumber: 9874 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazuyuki Romberg -sn: Romberg -description: This is Kazuyuki Romberg's description -facsimileTelephoneNumber: +1 510 931-1517 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 510 345-7054 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: RombergK -givenName: Kazuyuki -mail: RombergK@236ae3c93f204197811a00f3cff75d1a.bitwarden.com -carLicense: W9HEGN -departmentNumber: 8572 -employeeType: Contract -homePhone: +1 510 210-9614 -initials: K. R. -mobile: +1 510 545-8035 -pager: +1 510 306-3603 -roomNumber: 8192 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jeri Nadeau,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeri Nadeau -sn: Nadeau -description: This is Jeri Nadeau's description -facsimileTelephoneNumber: +1 213 456-7151 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 277-8956 -title: Master Product Development Architect -userPassword: Password1 -uid: NadeauJ -givenName: Jeri -mail: NadeauJ@dd2faa5cf2194cacb3f5af2bda857324.bitwarden.com -carLicense: FW13J1 -departmentNumber: 8261 -employeeType: Normal -homePhone: +1 213 728-5197 -initials: J. N. -mobile: +1 213 800-5415 -pager: +1 213 834-5780 -roomNumber: 8930 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Valentina Diogo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valentina Diogo -sn: Diogo -description: This is Valentina Diogo's description -facsimileTelephoneNumber: +1 206 729-1335 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 206 868-3281 -title: Chief Product Development Manager -userPassword: Password1 -uid: DiogoV -givenName: Valentina -mail: DiogoV@44eb2c38c4fe4b248a18869662999fa3.bitwarden.com -carLicense: EV2B28 -departmentNumber: 1812 -employeeType: Contract -homePhone: +1 206 426-5723 -initials: V. D. -mobile: +1 206 268-2262 -pager: +1 206 681-7792 -roomNumber: 8843 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Errol Pieron,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Errol Pieron -sn: Pieron -description: This is Errol Pieron's description -facsimileTelephoneNumber: +1 206 122-5376 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 587-5090 -title: Master Administrative Madonna -userPassword: Password1 -uid: PieronE -givenName: Errol -mail: PieronE@f1169fdd057e4624ac9e443f5372e7d0.bitwarden.com -carLicense: 5JQVTV -departmentNumber: 7707 -employeeType: Contract -homePhone: +1 206 309-3698 -initials: E. P. -mobile: +1 206 718-2149 -pager: +1 206 191-3240 -roomNumber: 8907 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Blanca Murock,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blanca Murock -sn: Murock -description: This is Blanca Murock's description -facsimileTelephoneNumber: +1 415 767-9575 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 277-1930 -title: Associate Janitorial Mascot -userPassword: Password1 -uid: MurockB -givenName: Blanca -mail: MurockB@a88f08b66dd64c6298517b19d5989bb1.bitwarden.com -carLicense: KWIAHI -departmentNumber: 2652 -employeeType: Contract -homePhone: +1 415 719-5261 -initials: B. M. -mobile: +1 415 290-2910 -pager: +1 415 989-9526 -roomNumber: 9174 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rebeka McKinley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebeka McKinley -sn: McKinley -description: This is Rebeka McKinley's description -facsimileTelephoneNumber: +1 510 538-5521 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 510 576-2031 -title: Master Product Development Warrior -userPassword: Password1 -uid: McKinleR -givenName: Rebeka -mail: McKinleR@1025092185dc4f3abfbf07259ddd26cd.bitwarden.com -carLicense: W79J51 -departmentNumber: 9317 -employeeType: Contract -homePhone: +1 510 483-6340 -initials: R. M. -mobile: +1 510 951-4482 -pager: +1 510 695-9868 -roomNumber: 8211 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sean Stayton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sean Stayton -sn: Stayton -description: This is Sean Stayton's description -facsimileTelephoneNumber: +1 804 716-6115 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 287-4098 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: StaytonS -givenName: Sean -mail: StaytonS@81141da0af1e4fc99220eaa81b9bfc02.bitwarden.com -carLicense: LVHX82 -departmentNumber: 6637 -employeeType: Contract -homePhone: +1 804 673-7108 -initials: S. S. -mobile: +1 804 102-6299 -pager: +1 804 389-6633 -roomNumber: 8031 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elex Zaharychuk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elex Zaharychuk -sn: Zaharychuk -description: This is Elex Zaharychuk's description -facsimileTelephoneNumber: +1 408 640-3094 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 973-5885 -title: Master Management Artist -userPassword: Password1 -uid: ZaharycE -givenName: Elex -mail: ZaharycE@ac22893bf0684aefaebb0a0decbe182b.bitwarden.com -carLicense: 6DS5EJ -departmentNumber: 3172 -employeeType: Employee -homePhone: +1 408 709-9668 -initials: E. Z. -mobile: +1 408 939-3123 -pager: +1 408 936-8211 -roomNumber: 9838 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Francesca Alguire,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francesca Alguire -sn: Alguire -description: This is Francesca Alguire's description -facsimileTelephoneNumber: +1 415 120-5879 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 367-4168 -title: Associate Management Consultant -userPassword: Password1 -uid: AlguireF -givenName: Francesca -mail: AlguireF@43a2075086314e66b15465a3ec778b06.bitwarden.com -carLicense: LGOIBC -departmentNumber: 6486 -employeeType: Employee -homePhone: +1 415 639-9261 -initials: F. A. -mobile: +1 415 926-1092 -pager: +1 415 293-6227 -roomNumber: 9006 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Georgie Bosy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgie Bosy -sn: Bosy -description: This is Georgie Bosy's description -facsimileTelephoneNumber: +1 213 199-9743 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 400-4599 -title: Junior Peons Fellow -userPassword: Password1 -uid: BosyG -givenName: Georgie -mail: BosyG@b347e7ca23ac4a809e51a769a6ab8366.bitwarden.com -carLicense: 0VW4TD -departmentNumber: 6744 -employeeType: Contract -homePhone: +1 213 186-2386 -initials: G. B. -mobile: +1 213 677-7501 -pager: +1 213 152-2782 -roomNumber: 8908 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madeline Zingeler -sn: Zingeler -description: This is Madeline Zingeler's description -facsimileTelephoneNumber: +1 804 331-9564 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 503-2112 -title: Associate Janitorial Punk -userPassword: Password1 -uid: ZingeleM -givenName: Madeline -mail: ZingeleM@9976848d05f44dc7b3c15447d59df348.bitwarden.com -carLicense: CGMNF3 -departmentNumber: 2979 -employeeType: Contract -homePhone: +1 804 601-3689 -initials: M. Z. -mobile: +1 804 942-9487 -pager: +1 804 959-5210 -roomNumber: 9767 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fenelia Costache,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fenelia Costache -sn: Costache -description: This is Fenelia Costache's description -facsimileTelephoneNumber: +1 415 190-4468 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 756-4979 -title: Junior Payroll Figurehead -userPassword: Password1 -uid: CostachF -givenName: Fenelia -mail: CostachF@6e76f9c1c78c4006a9e635f43ae1e33a.bitwarden.com -carLicense: Y33DE1 -departmentNumber: 7541 -employeeType: Normal -homePhone: +1 415 468-8695 -initials: F. C. -mobile: +1 415 129-9409 -pager: +1 415 186-9825 -roomNumber: 8715 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mab Lao,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mab Lao -sn: Lao -description: This is Mab Lao's description -facsimileTelephoneNumber: +1 206 210-7355 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 827-2979 -title: Master Payroll Fellow -userPassword: Password1 -uid: LaoM -givenName: Mab -mail: LaoM@db227e3e8661495294f2d94a22c03e09.bitwarden.com -carLicense: P3EEGN -departmentNumber: 7769 -employeeType: Contract -homePhone: +1 206 268-1446 -initials: M. L. -mobile: +1 206 807-2373 -pager: +1 206 518-5697 -roomNumber: 9717 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sayla Varia,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sayla Varia -sn: Varia -description: This is Sayla Varia's description -facsimileTelephoneNumber: +1 213 150-4464 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 744-6331 -title: Chief Payroll Mascot -userPassword: Password1 -uid: VariaS -givenName: Sayla -mail: VariaS@13b504a8a169451f93c28e40583299e2.bitwarden.com -carLicense: PNC63H -departmentNumber: 5256 -employeeType: Normal -homePhone: +1 213 571-1123 -initials: S. V. -mobile: +1 213 721-5229 -pager: +1 213 486-4665 -roomNumber: 9088 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Helyn Roberts,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helyn Roberts -sn: Roberts -description: This is Helyn Roberts's description -facsimileTelephoneNumber: +1 415 683-4873 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 807-8140 -title: Junior Peons Engineer -userPassword: Password1 -uid: RobertsH -givenName: Helyn -mail: RobertsH@87dcc1359cb14e3b85fed9765ee13d91.bitwarden.com -carLicense: TCDRCO -departmentNumber: 1392 -employeeType: Contract -homePhone: +1 415 433-3850 -initials: H. R. -mobile: +1 415 671-5943 -pager: +1 415 650-6206 -roomNumber: 9700 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Emr Zisu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emr Zisu -sn: Zisu -description: This is Emr Zisu's description -facsimileTelephoneNumber: +1 415 907-5740 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 415 800-2121 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: ZisuE -givenName: Emr -mail: ZisuE@bb2a12d176e44d12ab407b086abfe896.bitwarden.com -carLicense: 2UF29V -departmentNumber: 2733 -employeeType: Contract -homePhone: +1 415 441-9494 -initials: E. Z. -mobile: +1 415 468-2771 -pager: +1 415 866-9389 -roomNumber: 8898 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ame Frie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ame Frie -sn: Frie -description: This is Ame Frie's description -facsimileTelephoneNumber: +1 510 320-2692 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 412-6345 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: FrieA -givenName: Ame -mail: FrieA@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com -carLicense: FQ8FAQ -departmentNumber: 2596 -employeeType: Employee -homePhone: +1 510 992-4439 -initials: A. F. -mobile: +1 510 782-6658 -pager: +1 510 894-1926 -roomNumber: 9692 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Wonda Chao,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wonda Chao -sn: Chao -description: This is Wonda Chao's description -facsimileTelephoneNumber: +1 804 497-2039 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 804 930-8818 -title: Junior Administrative Punk -userPassword: Password1 -uid: ChaoW -givenName: Wonda -mail: ChaoW@0f4d2fc737564208afea78f691b2f46f.bitwarden.com -carLicense: SBW8XF -departmentNumber: 7223 -employeeType: Normal -homePhone: +1 804 691-1799 -initials: W. C. -mobile: +1 804 105-7745 -pager: +1 804 955-2361 -roomNumber: 8012 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Oralle Checinski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oralle Checinski -sn: Checinski -description: This is Oralle Checinski's description -facsimileTelephoneNumber: +1 510 503-2322 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 396-4800 -title: Chief Peons Evangelist -userPassword: Password1 -uid: ChecinsO -givenName: Oralle -mail: ChecinsO@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com -carLicense: 03KS5A -departmentNumber: 2899 -employeeType: Employee -homePhone: +1 510 992-9885 -initials: O. C. -mobile: +1 510 950-8961 -pager: +1 510 856-5836 -roomNumber: 9267 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgetta Bostelmann -sn: Bostelmann -description: This is Georgetta Bostelmann's description -facsimileTelephoneNumber: +1 510 530-1503 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 510 956-1154 -title: Supreme Payroll Vice President -userPassword: Password1 -uid: BostelmG -givenName: Georgetta -mail: BostelmG@446165da8ada4f7e9d1338149aadb957.bitwarden.com -carLicense: FETYJG -departmentNumber: 7777 -employeeType: Employee -homePhone: +1 510 367-2480 -initials: G. B. -mobile: +1 510 692-7358 -pager: +1 510 151-7360 -roomNumber: 9247 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Birendra Britton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Birendra Britton -sn: Britton -description: This is Birendra Britton's description -facsimileTelephoneNumber: +1 206 339-7357 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 134-5309 -title: Associate Janitorial Czar -userPassword: Password1 -uid: BrittonB -givenName: Birendra -mail: BrittonB@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com -carLicense: M6VY3J -departmentNumber: 3386 -employeeType: Employee -homePhone: +1 206 860-6628 -initials: B. B. -mobile: +1 206 586-7434 -pager: +1 206 958-6576 -roomNumber: 8148 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rebeka McCall,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebeka McCall -sn: McCall -description: This is Rebeka McCall's description -facsimileTelephoneNumber: +1 415 963-3587 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 353-6880 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: McCallR -givenName: Rebeka -mail: McCallR@62f112825f5642bf9962b499addb2c73.bitwarden.com -carLicense: 8NB8IS -departmentNumber: 8754 -employeeType: Employee -homePhone: +1 415 255-9647 -initials: R. M. -mobile: +1 415 450-2462 -pager: +1 415 942-6933 -roomNumber: 9145 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Constantine Bulanda,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constantine Bulanda -sn: Bulanda -description: This is Constantine Bulanda's description -facsimileTelephoneNumber: +1 510 782-8153 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 318-5634 -title: Associate Management Visionary -userPassword: Password1 -uid: BulandaC -givenName: Constantine -mail: BulandaC@4a7f898eb8954829907d34eeb46064e6.bitwarden.com -carLicense: YY0BI6 -departmentNumber: 1459 -employeeType: Employee -homePhone: +1 510 918-8960 -initials: C. B. -mobile: +1 510 592-5909 -pager: +1 510 201-3979 -roomNumber: 9318 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sibel Kurdas,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibel Kurdas -sn: Kurdas -description: This is Sibel Kurdas's description -facsimileTelephoneNumber: +1 213 499-1906 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 423-5822 -title: Master Product Development Vice President -userPassword: Password1 -uid: KurdasS -givenName: Sibel -mail: KurdasS@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com -carLicense: 88XNSI -departmentNumber: 2295 -employeeType: Employee -homePhone: +1 213 506-1792 -initials: S. K. -mobile: +1 213 447-7570 -pager: +1 213 556-5203 -roomNumber: 9906 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pcta Littlewood,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pcta Littlewood -sn: Littlewood -description: This is Pcta Littlewood's description -facsimileTelephoneNumber: +1 213 281-3334 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 181-5897 -title: Associate Management Punk -userPassword: Password1 -uid: LittlewP -givenName: Pcta -mail: LittlewP@35de9aeb91bf4aec9b81f69be90f9534.bitwarden.com -carLicense: LHO3XD -departmentNumber: 3508 -employeeType: Normal -homePhone: +1 213 122-3519 -initials: P. L. -mobile: +1 213 710-2740 -pager: +1 213 801-1054 -roomNumber: 8714 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rodi Zabokrzycki -sn: Zabokrzycki -description: This is Rodi Zabokrzycki's description -facsimileTelephoneNumber: +1 804 453-6176 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 804 847-5518 -title: Associate Human Resources Manager -userPassword: Password1 -uid: ZabokrzR -givenName: Rodi -mail: ZabokrzR@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com -carLicense: NMVXHI -departmentNumber: 7628 -employeeType: Contract -homePhone: +1 804 722-4963 -initials: R. Z. -mobile: +1 804 239-8498 -pager: +1 804 736-4936 -roomNumber: 9672 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Normand Simpkin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Normand Simpkin -sn: Simpkin -description: This is Normand Simpkin's description -facsimileTelephoneNumber: +1 213 752-2316 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 919-9671 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: SimpkinN -givenName: Normand -mail: SimpkinN@1984c2d98d8741afa663b062afe4a653.bitwarden.com -carLicense: XO3AML -departmentNumber: 2058 -employeeType: Employee -homePhone: +1 213 236-4019 -initials: N. S. -mobile: +1 213 618-4162 -pager: +1 213 738-4248 -roomNumber: 8177 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninnetta Trochu -sn: Trochu -description: This is Ninnetta Trochu's description -facsimileTelephoneNumber: +1 206 244-3314 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 577-2114 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: TrochuN -givenName: Ninnetta -mail: TrochuN@7e667bf109b34912922cf458a184f322.bitwarden.com -carLicense: XI5S9Q -departmentNumber: 8955 -employeeType: Employee -homePhone: +1 206 690-5951 -initials: N. T. -mobile: +1 206 706-8603 -pager: +1 206 785-3789 -roomNumber: 9536 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Viole Scates,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viole Scates -sn: Scates -description: This is Viole Scates's description -facsimileTelephoneNumber: +1 818 811-1198 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 384-1193 -title: Master Human Resources Mascot -userPassword: Password1 -uid: ScatesV -givenName: Viole -mail: ScatesV@185b51f28c7f46da96dbfb585fb3e90d.bitwarden.com -carLicense: SSBXKL -departmentNumber: 1476 -employeeType: Employee -homePhone: +1 818 466-2242 -initials: V. S. -mobile: +1 818 479-4753 -pager: +1 818 387-8080 -roomNumber: 8878 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Melisent McAfee,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisent McAfee -sn: McAfee -description: This is Melisent McAfee's description -facsimileTelephoneNumber: +1 510 283-5049 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 245-7905 -title: Associate Administrative Consultant -userPassword: Password1 -uid: McAfeeM -givenName: Melisent -mail: McAfeeM@12e070c46c9248eda6657574192aedf1.bitwarden.com -carLicense: I7WLLD -departmentNumber: 7203 -employeeType: Normal -homePhone: +1 510 556-2094 -initials: M. M. -mobile: +1 510 293-3559 -pager: +1 510 161-2233 -roomNumber: 9711 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jemima Hennelly,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jemima Hennelly -sn: Hennelly -description: This is Jemima Hennelly's description -facsimileTelephoneNumber: +1 206 670-5537 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 127-9388 -title: Associate Peons Consultant -userPassword: Password1 -uid: HennellJ -givenName: Jemima -mail: HennellJ@cf607f514ea94d249d7d25105dbb0762.bitwarden.com -carLicense: GPGBI7 -departmentNumber: 4522 -employeeType: Employee -homePhone: +1 206 564-9673 -initials: J. H. -mobile: +1 206 611-9052 -pager: +1 206 266-4875 -roomNumber: 9779 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Halette Hoag,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Halette Hoag -sn: Hoag -description: This is Halette Hoag's description -facsimileTelephoneNumber: +1 415 521-2530 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 461-7583 -title: Junior Product Development Punk -userPassword: Password1 -uid: HoagH -givenName: Halette -mail: HoagH@eb0f9e33334540be9e105b51f1313877.bitwarden.com -carLicense: 4YD7D8 -departmentNumber: 6572 -employeeType: Employee -homePhone: +1 415 234-3517 -initials: H. H. -mobile: +1 415 640-5870 -pager: +1 415 912-7042 -roomNumber: 8461 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fayre Patenaude,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fayre Patenaude -sn: Patenaude -description: This is Fayre Patenaude's description -facsimileTelephoneNumber: +1 818 361-1248 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 760-7359 -title: Associate Product Development Engineer -userPassword: Password1 -uid: PatenauF -givenName: Fayre -mail: PatenauF@e7f11fb46eb7400b8880ea7eb0c6a19d.bitwarden.com -carLicense: 7WM8Y4 -departmentNumber: 8606 -employeeType: Employee -homePhone: +1 818 178-6056 -initials: F. P. -mobile: +1 818 690-8311 -pager: +1 818 676-2398 -roomNumber: 8841 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rob Allan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rob Allan -sn: Allan -description: This is Rob Allan's description -facsimileTelephoneNumber: +1 818 832-7454 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 818 251-9322 -title: Associate Human Resources Writer -userPassword: Password1 -uid: AllanR -givenName: Rob -mail: AllanR@4d33a49d94084ccf8decdf53642f78ae.bitwarden.com -carLicense: LY7HH8 -departmentNumber: 2243 -employeeType: Normal -homePhone: +1 818 572-4326 -initials: R. A. -mobile: +1 818 579-2531 -pager: +1 818 164-6901 -roomNumber: 8427 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Noyes Bergman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noyes Bergman -sn: Bergman -description: This is Noyes Bergman's description -facsimileTelephoneNumber: +1 804 201-8363 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 383-9753 -title: Chief Product Testing Architect -userPassword: Password1 -uid: BergmanN -givenName: Noyes -mail: BergmanN@4154a37503e24114bfe5421ecb627bb9.bitwarden.com -carLicense: 1HYIEU -departmentNumber: 7006 -employeeType: Normal -homePhone: +1 804 320-3868 -initials: N. B. -mobile: +1 804 379-8858 -pager: +1 804 705-2960 -roomNumber: 9118 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Else McCollam,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Else McCollam -sn: McCollam -description: This is Else McCollam's description -facsimileTelephoneNumber: +1 206 744-9010 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 121-5266 -title: Master Product Testing Engineer -userPassword: Password1 -uid: McCollaE -givenName: Else -mail: McCollaE@5b2a207a5b574a8faa45790df76c253d.bitwarden.com -carLicense: 6DC3EV -departmentNumber: 6502 -employeeType: Normal -homePhone: +1 206 204-6200 -initials: E. M. -mobile: +1 206 427-2191 -pager: +1 206 341-5295 -roomNumber: 8315 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bellina Koens,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bellina Koens -sn: Koens -description: This is Bellina Koens's description -facsimileTelephoneNumber: +1 818 942-9516 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 818 635-4398 -title: Associate Management Punk -userPassword: Password1 -uid: KoensB -givenName: Bellina -mail: KoensB@c6e9ac083cc043b8883c6054dd35e8a8.bitwarden.com -carLicense: VUWADY -departmentNumber: 8877 -employeeType: Employee -homePhone: +1 818 366-3863 -initials: B. K. -mobile: +1 818 949-7395 -pager: +1 818 525-5547 -roomNumber: 8258 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lian Shapcott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lian Shapcott -sn: Shapcott -description: This is Lian Shapcott's description -facsimileTelephoneNumber: +1 415 178-5259 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 400-8871 -title: Supreme Human Resources Engineer -userPassword: Password1 -uid: ShapcotL -givenName: Lian -mail: ShapcotL@ac56a9f40fef46b4bb71769c6757745e.bitwarden.com -carLicense: R3KSB1 -departmentNumber: 2514 -employeeType: Contract -homePhone: +1 415 848-4922 -initials: L. S. -mobile: +1 415 889-4494 -pager: +1 415 816-3571 -roomNumber: 9014 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Florella Pichocki,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florella Pichocki -sn: Pichocki -description: This is Florella Pichocki's description -facsimileTelephoneNumber: +1 408 574-2091 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 965-4948 -title: Chief Management Fellow -userPassword: Password1 -uid: PichockF -givenName: Florella -mail: PichockF@f10e733ab73f49deaef5dee5420e792f.bitwarden.com -carLicense: 3VSU4X -departmentNumber: 6166 -employeeType: Employee -homePhone: +1 408 109-8616 -initials: F. P. -mobile: +1 408 953-3207 -pager: +1 408 525-9645 -roomNumber: 8919 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maribel Zafarano,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maribel Zafarano -sn: Zafarano -description: This is Maribel Zafarano's description -facsimileTelephoneNumber: +1 213 556-1770 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 295-2461 -title: Junior Management Stooge -userPassword: Password1 -uid: ZafaranM -givenName: Maribel -mail: ZafaranM@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com -carLicense: OTWQ7I -departmentNumber: 6269 -employeeType: Employee -homePhone: +1 213 111-9091 -initials: M. Z. -mobile: +1 213 460-5949 -pager: +1 213 466-2685 -roomNumber: 9110 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ren Dickerson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ren Dickerson -sn: Dickerson -description: This is Ren Dickerson's description -facsimileTelephoneNumber: +1 206 894-9064 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 865-7377 -title: Junior Administrative Director -userPassword: Password1 -uid: DickersR -givenName: Ren -mail: DickersR@16c9187062174be89c2c9f0c8fb48cf0.bitwarden.com -carLicense: W6TYMH -departmentNumber: 4609 -employeeType: Employee -homePhone: +1 206 421-7473 -initials: R. D. -mobile: +1 206 736-9400 -pager: +1 206 288-3110 -roomNumber: 8254 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Darla Puglia,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darla Puglia -sn: Puglia -description: This is Darla Puglia's description -facsimileTelephoneNumber: +1 818 491-1108 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 783-7599 -title: Chief Human Resources Janitor -userPassword: Password1 -uid: PugliaD -givenName: Darla -mail: PugliaD@881099fe370d45e6aa7b0854814780fd.bitwarden.com -carLicense: WG1JUV -departmentNumber: 2262 -employeeType: Employee -homePhone: +1 818 513-9386 -initials: D. P. -mobile: +1 818 837-7464 -pager: +1 818 298-9743 -roomNumber: 9579 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stacee Mamoulides,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacee Mamoulides -sn: Mamoulides -description: This is Stacee Mamoulides's description -facsimileTelephoneNumber: +1 206 632-3785 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 771-9766 -title: Chief Peons Janitor -userPassword: Password1 -uid: MamouliS -givenName: Stacee -mail: MamouliS@9350b9be3864496bacd0e267723dff37.bitwarden.com -carLicense: FUVG7S -departmentNumber: 9914 -employeeType: Normal -homePhone: +1 206 598-8560 -initials: S. M. -mobile: +1 206 979-5567 -pager: +1 206 285-4284 -roomNumber: 9167 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Adrien Bennatt,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrien Bennatt -sn: Bennatt -description: This is Adrien Bennatt's description -facsimileTelephoneNumber: +1 408 128-5165 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 211-3448 -title: Chief Management Dictator -userPassword: Password1 -uid: BennattA -givenName: Adrien -mail: BennattA@1df73cc203344a569c1b4737122f78a2.bitwarden.com -carLicense: MXPHEF -departmentNumber: 7852 -employeeType: Normal -homePhone: +1 408 637-5034 -initials: A. B. -mobile: +1 408 297-1326 -pager: +1 408 377-2664 -roomNumber: 8665 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Stesha Cotten,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stesha Cotten -sn: Cotten -description: This is Stesha Cotten's description -facsimileTelephoneNumber: +1 804 381-6061 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 804 475-2755 -title: Chief Payroll Engineer -userPassword: Password1 -uid: CottenS -givenName: Stesha -mail: CottenS@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com -carLicense: 53D0XM -departmentNumber: 5385 -employeeType: Contract -homePhone: +1 804 123-8560 -initials: S. C. -mobile: +1 804 891-5281 -pager: +1 804 271-3280 -roomNumber: 9450 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bregitte Kawauchi -sn: Kawauchi -description: This is Bregitte Kawauchi's description -facsimileTelephoneNumber: +1 510 858-6143 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 180-2288 -title: Junior Payroll Admin -userPassword: Password1 -uid: KawauchB -givenName: Bregitte -mail: KawauchB@43194b35694143d5b8419715c0e79567.bitwarden.com -carLicense: QEJ62O -departmentNumber: 1665 -employeeType: Employee -homePhone: +1 510 404-7492 -initials: B. K. -mobile: +1 510 185-9670 -pager: +1 510 281-4231 -roomNumber: 9009 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ryann McRonald,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ryann McRonald -sn: McRonald -description: This is Ryann McRonald's description -facsimileTelephoneNumber: +1 804 812-4544 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 516-3502 -title: Master Management Assistant -userPassword: Password1 -uid: McRonalR -givenName: Ryann -mail: McRonalR@4eab057e70644dff8f3d5ac041be0877.bitwarden.com -carLicense: P8K0CG -departmentNumber: 3174 -employeeType: Employee -homePhone: +1 804 380-7692 -initials: R. M. -mobile: +1 804 888-5261 -pager: +1 804 985-1333 -roomNumber: 9510 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Joete Pham,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joete Pham -sn: Pham -description: This is Joete Pham's description -facsimileTelephoneNumber: +1 818 708-4767 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 818 550-5194 -title: Chief Product Development Sales Rep -userPassword: Password1 -uid: PhamJ -givenName: Joete -mail: PhamJ@e57a80c33f4143ecb7f38726907bcc9d.bitwarden.com -carLicense: D5T474 -departmentNumber: 1600 -employeeType: Employee -homePhone: +1 818 257-3239 -initials: J. P. -mobile: +1 818 281-2879 -pager: +1 818 204-5628 -roomNumber: 9868 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kimmie Dyess,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kimmie Dyess -sn: Dyess -description: This is Kimmie Dyess's description -facsimileTelephoneNumber: +1 206 879-9008 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 666-7292 -title: Junior Management Warrior -userPassword: Password1 -uid: DyessK -givenName: Kimmie -mail: DyessK@8a7d5133f2fc4397a30a337937403b76.bitwarden.com -carLicense: V96N5I -departmentNumber: 4375 -employeeType: Employee -homePhone: +1 206 540-5750 -initials: K. D. -mobile: +1 206 131-6220 -pager: +1 206 565-3112 -roomNumber: 9005 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Crin Seeley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crin Seeley -sn: Seeley -description: This is Crin Seeley's description -facsimileTelephoneNumber: +1 818 512-5317 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 313-8581 -title: Chief Administrative Warrior -userPassword: Password1 -uid: SeeleyC -givenName: Crin -mail: SeeleyC@7b437b94250d4fbb8fc2d7ab00cc547b.bitwarden.com -carLicense: 4JLQ9C -departmentNumber: 1927 -employeeType: Employee -homePhone: +1 818 447-3523 -initials: C. S. -mobile: +1 818 480-9540 -pager: +1 818 825-2018 -roomNumber: 8723 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eleni Mozeleski -sn: Mozeleski -description: This is Eleni Mozeleski's description -facsimileTelephoneNumber: +1 408 751-3933 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 610-1666 -title: Junior Product Development Technician -userPassword: Password1 -uid: MozelesE -givenName: Eleni -mail: MozelesE@918d2d4077734b5f89b3311e0d63e21b.bitwarden.com -carLicense: ASCXEA -departmentNumber: 6477 -employeeType: Employee -homePhone: +1 408 437-1527 -initials: E. M. -mobile: +1 408 526-7975 -pager: +1 408 342-2931 -roomNumber: 8641 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mercie Polson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mercie Polson -sn: Polson -description: This is Mercie Polson's description -facsimileTelephoneNumber: +1 415 519-7955 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 621-1561 -title: Master Product Testing Writer -userPassword: Password1 -uid: PolsonM -givenName: Mercie -mail: PolsonM@19fdb24d6d9d48abb4a5fe5ad5b743d2.bitwarden.com -carLicense: X15DC3 -departmentNumber: 5147 -employeeType: Employee -homePhone: +1 415 521-8659 -initials: M. P. -mobile: +1 415 344-1155 -pager: +1 415 510-9275 -roomNumber: 9260 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elvert Tripp,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elvert Tripp -sn: Tripp -description: This is Elvert Tripp's description -facsimileTelephoneNumber: +1 510 889-8304 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 885-6651 -title: Chief Payroll Stooge -userPassword: Password1 -uid: TrippE -givenName: Elvert -mail: TrippE@4fd308eba088404ab84d4a632c943b2d.bitwarden.com -carLicense: CA204C -departmentNumber: 7336 -employeeType: Normal -homePhone: +1 510 484-3011 -initials: E. T. -mobile: +1 510 149-5478 -pager: +1 510 625-6597 -roomNumber: 9155 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mead Urquhart,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mead Urquhart -sn: Urquhart -description: This is Mead Urquhart's description -facsimileTelephoneNumber: +1 804 923-1551 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 175-8859 -title: Associate Payroll Dictator -userPassword: Password1 -uid: UrquharM -givenName: Mead -mail: UrquharM@2370f86ee68f4e849137b28f2aad76d4.bitwarden.com -carLicense: YHV2QI -departmentNumber: 6981 -employeeType: Normal -homePhone: +1 804 374-1905 -initials: M. U. -mobile: +1 804 178-6776 -pager: +1 804 283-3258 -roomNumber: 8962 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jan Delorenzi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jan Delorenzi -sn: Delorenzi -description: This is Jan Delorenzi's description -facsimileTelephoneNumber: +1 408 972-7600 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 272-6433 -title: Chief Payroll Dictator -userPassword: Password1 -uid: DelorenJ -givenName: Jan -mail: DelorenJ@97baadb605a44ba996abfdd024e13b4a.bitwarden.com -carLicense: WUW92Y -departmentNumber: 1886 -employeeType: Normal -homePhone: +1 408 720-4134 -initials: J. D. -mobile: +1 408 271-2321 -pager: +1 408 204-1784 -roomNumber: 9494 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Johnny Stetter,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnny Stetter -sn: Stetter -description: This is Johnny Stetter's description -facsimileTelephoneNumber: +1 818 519-7632 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 662-3501 -title: Supreme Management Stooge -userPassword: Password1 -uid: StetterJ -givenName: Johnny -mail: StetterJ@1c4889d6f6ca4189816eb95971dafca2.bitwarden.com -carLicense: Q47L30 -departmentNumber: 7298 -employeeType: Contract -homePhone: +1 818 168-7384 -initials: J. S. -mobile: +1 818 801-3601 -pager: +1 818 884-4927 -roomNumber: 9614 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marjan Bourk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjan Bourk -sn: Bourk -description: This is Marjan Bourk's description -facsimileTelephoneNumber: +1 804 813-7734 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 839-7201 -title: Associate Management Punk -userPassword: Password1 -uid: BourkM -givenName: Marjan -mail: BourkM@8738fd425c2c456fa523b311dbe475c2.bitwarden.com -carLicense: 6BTDWX -departmentNumber: 2114 -employeeType: Contract -homePhone: +1 804 481-8078 -initials: M. B. -mobile: +1 804 942-9038 -pager: +1 804 719-3643 -roomNumber: 9842 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaclyn Maccallum -sn: Maccallum -description: This is Jaclyn Maccallum's description -facsimileTelephoneNumber: +1 408 445-1833 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 232-2643 -title: Associate Administrative Consultant -userPassword: Password1 -uid: MaccallJ -givenName: Jaclyn -mail: MaccallJ@20be35b03567473c9452a335266426a2.bitwarden.com -carLicense: EYECRH -departmentNumber: 2084 -employeeType: Employee -homePhone: +1 408 512-5655 -initials: J. M. -mobile: +1 408 723-9402 -pager: +1 408 466-5168 -roomNumber: 8916 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marjan Angell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjan Angell -sn: Angell -description: This is Marjan Angell's description -facsimileTelephoneNumber: +1 408 940-8109 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 359-5309 -title: Chief Human Resources Developer -userPassword: Password1 -uid: AngellM -givenName: Marjan -mail: AngellM@207f860f10124c3fa866addc10eb4455.bitwarden.com -carLicense: 7C7SXI -departmentNumber: 1887 -employeeType: Employee -homePhone: +1 408 454-7203 -initials: M. A. -mobile: +1 408 800-2706 -pager: +1 408 874-4627 -roomNumber: 9233 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Darrol Calder,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrol Calder -sn: Calder -description: This is Darrol Calder's description -facsimileTelephoneNumber: +1 804 493-1414 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 804 415-4314 -title: Associate Administrative Artist -userPassword: Password1 -uid: CalderD -givenName: Darrol -mail: CalderD@3876999ec69c4543970a2db25c726421.bitwarden.com -carLicense: Q26BI1 -departmentNumber: 3181 -employeeType: Normal -homePhone: +1 804 545-6743 -initials: D. C. -mobile: +1 804 133-1672 -pager: +1 804 859-1173 -roomNumber: 8764 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Meridian Buder,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meridian Buder -sn: Buder -description: This is Meridian Buder's description -facsimileTelephoneNumber: +1 804 308-1841 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 791-8366 -title: Master Payroll Mascot -userPassword: Password1 -uid: BuderM -givenName: Meridian -mail: BuderM@6319c042006048f592b024b86a54bed8.bitwarden.com -carLicense: TP7UH6 -departmentNumber: 5095 -employeeType: Employee -homePhone: +1 804 149-2859 -initials: M. B. -mobile: +1 804 161-9798 -pager: +1 804 674-9499 -roomNumber: 9590 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ericka Contardo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ericka Contardo -sn: Contardo -description: This is Ericka Contardo's description -facsimileTelephoneNumber: +1 415 741-3558 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 705-1465 -title: Junior Human Resources Assistant -userPassword: Password1 -uid: ContardE -givenName: Ericka -mail: ContardE@4ad5ae565d1a473a81525b1882b9931b.bitwarden.com -carLicense: 6BFJYN -departmentNumber: 5460 -employeeType: Normal -homePhone: +1 415 288-3829 -initials: E. C. -mobile: +1 415 907-8199 -pager: +1 415 851-5761 -roomNumber: 8934 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Saeed Liston,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saeed Liston -sn: Liston -description: This is Saeed Liston's description -facsimileTelephoneNumber: +1 213 146-7558 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 113-3053 -title: Supreme Peons Grunt -userPassword: Password1 -uid: ListonS -givenName: Saeed -mail: ListonS@7db6edd7156649fcb7ae93732caff60d.bitwarden.com -carLicense: TJ5AK8 -departmentNumber: 8012 -employeeType: Normal -homePhone: +1 213 709-3973 -initials: S. L. -mobile: +1 213 636-3520 -pager: +1 213 377-7665 -roomNumber: 9920 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherise Shackelford -sn: Shackelford -description: This is Cherise Shackelford's description -facsimileTelephoneNumber: +1 408 232-7228 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 273-8736 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: ShackelC -givenName: Cherise -mail: ShackelC@58351331fe224df1be3d4a98ae5bb106.bitwarden.com -carLicense: BHRX4O -departmentNumber: 3845 -employeeType: Normal -homePhone: +1 408 686-3891 -initials: C. S. -mobile: +1 408 127-4249 -pager: +1 408 483-8097 -roomNumber: 8087 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nettle Kuzemka -sn: Kuzemka -description: This is Nettle Kuzemka's description -facsimileTelephoneNumber: +1 408 482-7661 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 210-3591 -title: Master Human Resources Visionary -userPassword: Password1 -uid: KuzemkaN -givenName: Nettle -mail: KuzemkaN@5e7bd652b57e4d33a836a31c8d23e4f9.bitwarden.com -carLicense: MH7DS5 -departmentNumber: 9763 -employeeType: Contract -homePhone: +1 408 425-6837 -initials: N. K. -mobile: +1 408 502-3317 -pager: +1 408 100-8059 -roomNumber: 9680 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosamond Burkepile -sn: Burkepile -description: This is Rosamond Burkepile's description -facsimileTelephoneNumber: +1 206 371-7907 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 547-2506 -title: Supreme Janitorial President -userPassword: Password1 -uid: BurkepiR -givenName: Rosamond -mail: BurkepiR@fa3e145865f0441f8b1263a859d170e6.bitwarden.com -carLicense: PWCIB0 -departmentNumber: 2809 -employeeType: Employee -homePhone: +1 206 460-5340 -initials: R. B. -mobile: +1 206 682-1966 -pager: +1 206 446-7890 -roomNumber: 8405 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cinnamon Jurman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cinnamon Jurman -sn: Jurman -description: This is Cinnamon Jurman's description -facsimileTelephoneNumber: +1 206 772-8450 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 206 922-7481 -title: Associate Peons Czar -userPassword: Password1 -uid: JurmanC -givenName: Cinnamon -mail: JurmanC@bb172de44ec2458f9c918f47583b4d80.bitwarden.com -carLicense: 3OG120 -departmentNumber: 5348 -employeeType: Employee -homePhone: +1 206 239-6417 -initials: C. J. -mobile: +1 206 191-5997 -pager: +1 206 944-5603 -roomNumber: 9271 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Karlie Hord,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlie Hord -sn: Hord -description: This is Karlie Hord's description -facsimileTelephoneNumber: +1 206 864-3716 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 635-7284 -title: Junior Peons Technician -userPassword: Password1 -uid: HordK -givenName: Karlie -mail: HordK@d147229253264c2b9b78c661dfda7cde.bitwarden.com -carLicense: MUFHV9 -departmentNumber: 7950 -employeeType: Normal -homePhone: +1 206 585-8468 -initials: K. H. -mobile: +1 206 608-1569 -pager: +1 206 743-8101 -roomNumber: 8953 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ozlem Switching,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ozlem Switching -sn: Switching -description: This is Ozlem Switching's description -facsimileTelephoneNumber: +1 206 502-6852 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 719-4343 -title: Junior Peons Madonna -userPassword: Password1 -uid: SwitchiO -givenName: Ozlem -mail: SwitchiO@526b2e31e79b488fb63ef0570005204a.bitwarden.com -carLicense: YSXCJ3 -departmentNumber: 4346 -employeeType: Normal -homePhone: +1 206 882-3890 -initials: O. S. -mobile: +1 206 563-7768 -pager: +1 206 317-9071 -roomNumber: 8027 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Seven Figura,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seven Figura -sn: Figura -description: This is Seven Figura's description -facsimileTelephoneNumber: +1 510 219-7525 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 510 537-4057 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: FiguraS -givenName: Seven -mail: FiguraS@f81c7db8a94146de916a4b35349336d8.bitwarden.com -carLicense: 205CUS -departmentNumber: 1693 -employeeType: Normal -homePhone: +1 510 574-4680 -initials: S. F. -mobile: +1 510 377-6769 -pager: +1 510 207-8935 -roomNumber: 8606 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Birendra Helton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Birendra Helton -sn: Helton -description: This is Birendra Helton's description -facsimileTelephoneNumber: +1 415 439-4447 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 148-5492 -title: Associate Product Development Evangelist -userPassword: Password1 -uid: HeltonB -givenName: Birendra -mail: HeltonB@f7d02b716b224e868c9d7b6fe1dd0e0b.bitwarden.com -carLicense: 1ISX0F -departmentNumber: 4548 -employeeType: Employee -homePhone: +1 415 684-3146 -initials: B. H. -mobile: +1 415 617-2642 -pager: +1 415 991-8618 -roomNumber: 8566 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Madan Babcock,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madan Babcock -sn: Babcock -description: This is Madan Babcock's description -facsimileTelephoneNumber: +1 510 911-9637 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 165-3562 -title: Chief Management Engineer -userPassword: Password1 -uid: BabcockM -givenName: Madan -mail: BabcockM@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com -carLicense: UJKOAL -departmentNumber: 2465 -employeeType: Employee -homePhone: +1 510 789-6374 -initials: M. B. -mobile: +1 510 588-1193 -pager: +1 510 612-1777 -roomNumber: 8253 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mandi Whitford,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mandi Whitford -sn: Whitford -description: This is Mandi Whitford's description -facsimileTelephoneNumber: +1 415 423-9140 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 421-9271 -title: Chief Janitorial Grunt -userPassword: Password1 -uid: WhitforM -givenName: Mandi -mail: WhitforM@3f891cf88f8f4b9cb80e52276f5b9b1c.bitwarden.com -carLicense: I1EMQ9 -departmentNumber: 1120 -employeeType: Contract -homePhone: +1 415 924-5455 -initials: M. W. -mobile: +1 415 235-7259 -pager: +1 415 122-4346 -roomNumber: 9184 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ilse Silwer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilse Silwer -sn: Silwer -description: This is Ilse Silwer's description -facsimileTelephoneNumber: +1 213 777-3938 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 563-1167 -title: Supreme Product Testing Writer -userPassword: Password1 -uid: SilwerI -givenName: Ilse -mail: SilwerI@daa517e67d894816b4a47e43cd62e356.bitwarden.com -carLicense: EBIPM3 -departmentNumber: 6995 -employeeType: Normal -homePhone: +1 213 629-9582 -initials: I. S. -mobile: +1 213 766-1274 -pager: +1 213 785-1096 -roomNumber: 9637 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tommy Fabry,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tommy Fabry -sn: Fabry -description: This is Tommy Fabry's description -facsimileTelephoneNumber: +1 818 834-7804 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 315-6642 -title: Master Administrative Warrior -userPassword: Password1 -uid: FabryT -givenName: Tommy -mail: FabryT@3f5b9048c8924fec87576c273249cede.bitwarden.com -carLicense: PJ20FB -departmentNumber: 5401 -employeeType: Employee -homePhone: +1 818 395-9359 -initials: T. F. -mobile: +1 818 402-8512 -pager: +1 818 234-9935 -roomNumber: 9854 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Doloritas Renton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doloritas Renton -sn: Renton -description: This is Doloritas Renton's description -facsimileTelephoneNumber: +1 213 456-3785 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 213 363-6057 -title: Junior Peons Visionary -userPassword: Password1 -uid: RentonD -givenName: Doloritas -mail: RentonD@75230f61780f4e0e9cf624359c2b6622.bitwarden.com -carLicense: BJEHY1 -departmentNumber: 2813 -employeeType: Employee -homePhone: +1 213 783-6163 -initials: D. R. -mobile: +1 213 736-4760 -pager: +1 213 781-8028 -roomNumber: 8295 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Beb Carlson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beb Carlson -sn: Carlson -description: This is Beb Carlson's description -facsimileTelephoneNumber: +1 415 788-5489 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 459-3920 -title: Junior Payroll Artist -userPassword: Password1 -uid: CarlsonB -givenName: Beb -mail: CarlsonB@bc1068ff7c5a442e884cab9ab7c4508b.bitwarden.com -carLicense: PQJUUP -departmentNumber: 4647 -employeeType: Employee -homePhone: +1 415 671-5530 -initials: B. C. -mobile: +1 415 284-6877 -pager: +1 415 308-1756 -roomNumber: 9293 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hedy Hobbs -sn: Hobbs -description: This is Hedy Hobbs's description -facsimileTelephoneNumber: +1 206 759-4058 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 839-4669 -title: Chief Product Testing Janitor -userPassword: Password1 -uid: HobbsH -givenName: Hedy -mail: HobbsH@fca42d05acbe47a69668ab85d76a4968.bitwarden.com -carLicense: AWWS1S -departmentNumber: 1188 -employeeType: Normal -homePhone: +1 206 517-5819 -initials: H. H. -mobile: +1 206 159-7373 -pager: +1 206 451-7913 -roomNumber: 8889 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faustina Bombardier -sn: Bombardier -description: This is Faustina Bombardier's description -facsimileTelephoneNumber: +1 510 668-4032 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 338-6758 -title: Master Product Testing Admin -userPassword: Password1 -uid: BombardF -givenName: Faustina -mail: BombardF@a4ddeff635f14fe6b72b17daaba90627.bitwarden.com -carLicense: R3L242 -departmentNumber: 3648 -employeeType: Normal -homePhone: +1 510 730-5848 -initials: F. B. -mobile: +1 510 881-4410 -pager: +1 510 149-7811 -roomNumber: 8350 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Audrey Charchanko,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Audrey Charchanko -sn: Charchanko -description: This is Audrey Charchanko's description -facsimileTelephoneNumber: +1 206 670-3823 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 275-8990 -title: Supreme Peons Fellow -userPassword: Password1 -uid: CharchaA -givenName: Audrey -mail: CharchaA@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com -carLicense: 06A9M4 -departmentNumber: 8452 -employeeType: Contract -homePhone: +1 206 404-5184 -initials: A. C. -mobile: +1 206 825-4252 -pager: +1 206 863-5692 -roomNumber: 8205 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Grantley Walles,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grantley Walles -sn: Walles -description: This is Grantley Walles's description -facsimileTelephoneNumber: +1 206 973-3140 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 206 348-6072 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: WallesG -givenName: Grantley -mail: WallesG@da5a908240674035b4f089697eec14f2.bitwarden.com -carLicense: LHGU6U -departmentNumber: 3404 -employeeType: Normal -homePhone: +1 206 839-6692 -initials: G. W. -mobile: +1 206 129-3962 -pager: +1 206 230-2186 -roomNumber: 9843 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vale Yost,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vale Yost -sn: Yost -description: This is Vale Yost's description -facsimileTelephoneNumber: +1 213 317-2104 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 261-1073 -title: Associate Payroll Sales Rep -userPassword: Password1 -uid: YostV -givenName: Vale -mail: YostV@f491657ce6cf49f2abe50f84c8f0d067.bitwarden.com -carLicense: H6R6TD -departmentNumber: 9044 -employeeType: Normal -homePhone: +1 213 580-9187 -initials: V. Y. -mobile: +1 213 533-7011 -pager: +1 213 476-6898 -roomNumber: 8504 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kalie Krausbar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalie Krausbar -sn: Krausbar -description: This is Kalie Krausbar's description -facsimileTelephoneNumber: +1 818 433-6295 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 178-6933 -title: Junior Management Punk -userPassword: Password1 -uid: KrausbaK -givenName: Kalie -mail: KrausbaK@742e6acfb3ee43e195f05147276956cf.bitwarden.com -carLicense: 7F8CO2 -departmentNumber: 6159 -employeeType: Contract -homePhone: +1 818 810-2703 -initials: K. K. -mobile: +1 818 355-5041 -pager: +1 818 800-6407 -roomNumber: 9284 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Martino Busby,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martino Busby -sn: Busby -description: This is Martino Busby's description -facsimileTelephoneNumber: +1 818 190-6357 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 398-4647 -title: Associate Product Testing Director -userPassword: Password1 -uid: BusbyM -givenName: Martino -mail: BusbyM@bb1a549f208840af8ec52ae7c5ebc4f5.bitwarden.com -carLicense: 48FXUC -departmentNumber: 7067 -employeeType: Contract -homePhone: +1 818 222-6941 -initials: M. B. -mobile: +1 818 615-7091 -pager: +1 818 282-5535 -roomNumber: 9175 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Selma Kletchko,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selma Kletchko -sn: Kletchko -description: This is Selma Kletchko's description -facsimileTelephoneNumber: +1 415 305-5670 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 387-1352 -title: Associate Administrative Consultant -userPassword: Password1 -uid: KletchkS -givenName: Selma -mail: KletchkS@e59e7dc5561842d286fd6dfedfe8fb9a.bitwarden.com -carLicense: TS6IOD -departmentNumber: 2106 -employeeType: Normal -homePhone: +1 415 258-6836 -initials: S. K. -mobile: +1 415 596-3719 -pager: +1 415 368-2362 -roomNumber: 8237 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lineth Montoute,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lineth Montoute -sn: Montoute -description: This is Lineth Montoute's description -facsimileTelephoneNumber: +1 213 514-4489 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 338-4524 -title: Master Administrative Mascot -userPassword: Password1 -uid: MontoutL -givenName: Lineth -mail: MontoutL@89d4d4d86ff240e7ab94041e1f247e61.bitwarden.com -carLicense: INO8CB -departmentNumber: 2763 -employeeType: Contract -homePhone: +1 213 112-6061 -initials: L. M. -mobile: +1 213 170-4390 -pager: +1 213 955-6353 -roomNumber: 8240 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jolie Langenberg,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolie Langenberg -sn: Langenberg -description: This is Jolie Langenberg's description -facsimileTelephoneNumber: +1 213 494-3726 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 677-1780 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: LangenbJ -givenName: Jolie -mail: LangenbJ@f07caf5199104113b8565ebc43aef936.bitwarden.com -carLicense: MERV4F -departmentNumber: 1936 -employeeType: Contract -homePhone: +1 213 538-9531 -initials: J. L. -mobile: +1 213 324-1460 -pager: +1 213 701-6547 -roomNumber: 9435 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carm Mach,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carm Mach -sn: Mach -description: This is Carm Mach's description -facsimileTelephoneNumber: +1 213 916-7247 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 396-5799 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: MachC -givenName: Carm -mail: MachC@acd42583d3044f41816fc62eb7992816.bitwarden.com -carLicense: 183LRR -departmentNumber: 5033 -employeeType: Contract -homePhone: +1 213 246-1252 -initials: C. M. -mobile: +1 213 725-4084 -pager: +1 213 952-9933 -roomNumber: 8196 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HackHoo Paoletti -sn: Paoletti -description: This is HackHoo Paoletti's description -facsimileTelephoneNumber: +1 213 310-5072 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 708-3835 -title: Supreme Product Development Stooge -userPassword: Password1 -uid: PaolettH -givenName: HackHoo -mail: PaolettH@d5cc15f6bb6b4357bd0ce84100b284f9.bitwarden.com -carLicense: MYRLOD -departmentNumber: 7802 -employeeType: Employee -homePhone: +1 213 501-4076 -initials: H. P. -mobile: +1 213 698-1217 -pager: +1 213 595-1211 -roomNumber: 9913 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Radio Balog,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Radio Balog -sn: Balog -description: This is Radio Balog's description -facsimileTelephoneNumber: +1 206 349-5092 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 662-9712 -title: Associate Janitorial Admin -userPassword: Password1 -uid: BalogR -givenName: Radio -mail: BalogR@72030161dcd24217be14766e527d14fa.bitwarden.com -carLicense: NGIVAX -departmentNumber: 2919 -employeeType: Employee -homePhone: +1 206 183-3538 -initials: R. B. -mobile: +1 206 435-8622 -pager: +1 206 592-5105 -roomNumber: 9330 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Zere Zafarullah,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zere Zafarullah -sn: Zafarullah -description: This is Zere Zafarullah's description -facsimileTelephoneNumber: +1 213 469-7258 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 509-4991 -title: Junior Management Madonna -userPassword: Password1 -uid: ZafarulZ -givenName: Zere -mail: ZafarulZ@478c327328034508a65f2bbc1dd25518.bitwarden.com -carLicense: PM6EY2 -departmentNumber: 4160 -employeeType: Contract -homePhone: +1 213 418-2402 -initials: Z. Z. -mobile: +1 213 289-2848 -pager: +1 213 549-1499 -roomNumber: 8561 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Waly Grabowski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Waly Grabowski -sn: Grabowski -description: This is Waly Grabowski's description -facsimileTelephoneNumber: +1 206 201-2546 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 933-1053 -title: Supreme Management Madonna -userPassword: Password1 -uid: GrabowsW -givenName: Waly -mail: GrabowsW@f01b8c6e19b14b049532cb6664f8caaa.bitwarden.com -carLicense: 1FPM3G -departmentNumber: 8725 -employeeType: Contract -homePhone: +1 206 353-2459 -initials: W. G. -mobile: +1 206 416-2737 -pager: +1 206 918-2584 -roomNumber: 9877 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dallas Smelters,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dallas Smelters -sn: Smelters -description: This is Dallas Smelters's description -facsimileTelephoneNumber: +1 818 975-3508 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 723-5766 -title: Supreme Product Testing Technician -userPassword: Password1 -uid: SmelterD -givenName: Dallas -mail: SmelterD@dd6aa42254414b099b5f31cdae049e72.bitwarden.com -carLicense: 1BH59W -departmentNumber: 8091 -employeeType: Contract -homePhone: +1 818 285-1426 -initials: D. S. -mobile: +1 818 659-4398 -pager: +1 818 134-2557 -roomNumber: 9486 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Izzy Culbreth -sn: Culbreth -description: This is Izzy Culbreth's description -facsimileTelephoneNumber: +1 510 224-8187 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 934-9820 -title: Master Product Testing Consultant -userPassword: Password1 -uid: CulbretI -givenName: Izzy -mail: CulbretI@8f698818b35041d38a84f1c71ca57e14.bitwarden.com -carLicense: TLTG5M -departmentNumber: 7972 -employeeType: Normal -homePhone: +1 510 758-2512 -initials: I. C. -mobile: +1 510 319-9267 -pager: +1 510 248-3504 -roomNumber: 9525 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Zalee Caron,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zalee Caron -sn: Caron -description: This is Zalee Caron's description -facsimileTelephoneNumber: +1 510 194-4567 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 212-8085 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: CaronZ -givenName: Zalee -mail: CaronZ@5acaf493974e4933b27d5e78e25585d3.bitwarden.com -carLicense: W4AJE3 -departmentNumber: 6149 -employeeType: Employee -homePhone: +1 510 447-8346 -initials: Z. C. -mobile: +1 510 787-2543 -pager: +1 510 684-4788 -roomNumber: 9552 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Latashia Boutnikoff -sn: Boutnikoff -description: This is Latashia Boutnikoff's description -facsimileTelephoneNumber: +1 415 546-3580 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 734-6504 -title: Junior Peons Technician -userPassword: Password1 -uid: BoutnikL -givenName: Latashia -mail: BoutnikL@1919ee78614547cbb38642c8afc73045.bitwarden.com -carLicense: FFNE7D -departmentNumber: 9429 -employeeType: Contract -homePhone: +1 415 174-6101 -initials: L. B. -mobile: +1 415 947-4727 -pager: +1 415 921-6248 -roomNumber: 9370 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Konstanze Cordell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Konstanze Cordell -sn: Cordell -description: This is Konstanze Cordell's description -facsimileTelephoneNumber: +1 818 225-7252 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 115-3440 -title: Supreme Administrative Punk -userPassword: Password1 -uid: CordellK -givenName: Konstanze -mail: CordellK@685a3d9fd790422d8fb825f7a90cab65.bitwarden.com -carLicense: AWU1HX -departmentNumber: 5636 -employeeType: Contract -homePhone: +1 818 907-2034 -initials: K. C. -mobile: +1 818 539-5863 -pager: +1 818 455-4316 -roomNumber: 8058 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Froukje Ecker,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Froukje Ecker -sn: Ecker -description: This is Froukje Ecker's description -facsimileTelephoneNumber: +1 213 599-2811 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 552-3760 -title: Junior Management Architect -userPassword: Password1 -uid: EckerF -givenName: Froukje -mail: EckerF@b778c029c2264b3089247adae57812bf.bitwarden.com -carLicense: A6T3YS -departmentNumber: 7783 -employeeType: Normal -homePhone: +1 213 444-8250 -initials: F. E. -mobile: +1 213 373-1950 -pager: +1 213 609-2520 -roomNumber: 9213 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Petri Uhlig,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petri Uhlig -sn: Uhlig -description: This is Petri Uhlig's description -facsimileTelephoneNumber: +1 415 229-5321 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 381-9206 -title: Master Payroll Fellow -userPassword: Password1 -uid: UhligP -givenName: Petri -mail: UhligP@6cba9523afcf470890bdfdaf46de0ca4.bitwarden.com -carLicense: E9RDG4 -departmentNumber: 5595 -employeeType: Employee -homePhone: +1 415 873-2088 -initials: P. U. -mobile: +1 415 834-1698 -pager: +1 415 753-7789 -roomNumber: 8748 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tessa Pino,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tessa Pino -sn: Pino -description: This is Tessa Pino's description -facsimileTelephoneNumber: +1 510 288-9324 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 510 448-5143 -title: Master Product Testing Visionary -userPassword: Password1 -uid: PinoT -givenName: Tessa -mail: PinoT@a131fffbdaa44e2aab56ba41e197cf57.bitwarden.com -carLicense: WWWS29 -departmentNumber: 5048 -employeeType: Normal -homePhone: +1 510 534-8318 -initials: T. P. -mobile: +1 510 104-5487 -pager: +1 510 891-3645 -roomNumber: 8990 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christiana Bielejeski -sn: Bielejeski -description: This is Christiana Bielejeski's description -facsimileTelephoneNumber: +1 818 663-2997 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 910-5385 -title: Master Human Resources Evangelist -userPassword: Password1 -uid: BielejeC -givenName: Christiana -mail: BielejeC@a8e48278603d4ab3aacfb1fa680fc937.bitwarden.com -carLicense: MTFNLU -departmentNumber: 3587 -employeeType: Employee -homePhone: +1 818 548-4045 -initials: C. B. -mobile: +1 818 244-1478 -pager: +1 818 940-6387 -roomNumber: 9263 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Britni Routing,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Britni Routing -sn: Routing -description: This is Britni Routing's description -facsimileTelephoneNumber: +1 408 427-7860 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 344-6048 -title: Associate Administrative Director -userPassword: Password1 -uid: RoutingB -givenName: Britni -mail: RoutingB@22b38e3187c1496caaed86c5083e47f0.bitwarden.com -carLicense: 74CB5K -departmentNumber: 2075 -employeeType: Normal -homePhone: +1 408 992-6197 -initials: B. R. -mobile: +1 408 455-2929 -pager: +1 408 183-7381 -roomNumber: 8993 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Michelle Mirza,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michelle Mirza -sn: Mirza -description: This is Michelle Mirza's description -facsimileTelephoneNumber: +1 804 237-5245 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 517-9336 -title: Master Human Resources Madonna -userPassword: Password1 -uid: MirzaM -givenName: Michelle -mail: MirzaM@2c4465aec0574a929626eaed8fd03343.bitwarden.com -carLicense: 1XLX20 -departmentNumber: 7699 -employeeType: Contract -homePhone: +1 804 877-6212 -initials: M. M. -mobile: +1 804 690-7054 -pager: +1 804 645-5742 -roomNumber: 8321 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Starlin Schilling,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Starlin Schilling -sn: Schilling -description: This is Starlin Schilling's description -facsimileTelephoneNumber: +1 206 341-7674 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 243-6617 -title: Associate Human Resources Technician -userPassword: Password1 -uid: SchilliS -givenName: Starlin -mail: SchilliS@98037b50a4ca4f29b8fad60c1bb6a197.bitwarden.com -carLicense: W2336J -departmentNumber: 8435 -employeeType: Contract -homePhone: +1 206 612-2247 -initials: S. S. -mobile: +1 206 639-8458 -pager: +1 206 728-5835 -roomNumber: 8105 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Manya Cripps,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manya Cripps -sn: Cripps -description: This is Manya Cripps's description -facsimileTelephoneNumber: +1 206 714-5279 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 923-2552 -title: Junior Administrative Mascot -userPassword: Password1 -uid: CrippsM -givenName: Manya -mail: CrippsM@92f1d5dfabbf4e5bb19678383b93b294.bitwarden.com -carLicense: NGEA5P -departmentNumber: 6680 -employeeType: Normal -homePhone: +1 206 752-8921 -initials: M. C. -mobile: +1 206 581-4891 -pager: +1 206 824-3393 -roomNumber: 9644 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Esther Buttrey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esther Buttrey -sn: Buttrey -description: This is Esther Buttrey's description -facsimileTelephoneNumber: +1 408 225-8537 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 741-6245 -title: Associate Product Development Manager -userPassword: Password1 -uid: ButtreyE -givenName: Esther -mail: ButtreyE@0ea39720ccd849b98e8f01497c06b283.bitwarden.com -carLicense: YXEBXK -departmentNumber: 5708 -employeeType: Employee -homePhone: +1 408 448-6936 -initials: E. B. -mobile: +1 408 902-6314 -pager: +1 408 475-8915 -roomNumber: 9580 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tamma Sellwood,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamma Sellwood -sn: Sellwood -description: This is Tamma Sellwood's description -facsimileTelephoneNumber: +1 804 709-9812 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 646-4615 -title: Junior Administrative Janitor -userPassword: Password1 -uid: SellwooT -givenName: Tamma -mail: SellwooT@549f8ec8bbb34adfa377866293c57a0c.bitwarden.com -carLicense: RFP313 -departmentNumber: 2701 -employeeType: Employee -homePhone: +1 804 906-7645 -initials: T. S. -mobile: +1 804 142-1520 -pager: +1 804 783-8964 -roomNumber: 8967 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=RongChin Fisher,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: RongChin Fisher -sn: Fisher -description: This is RongChin Fisher's description -facsimileTelephoneNumber: +1 510 103-4377 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 542-1795 -title: Associate Management Writer -userPassword: Password1 -uid: FisherR -givenName: RongChin -mail: FisherR@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com -carLicense: 1I4WOQ -departmentNumber: 9450 -employeeType: Normal -homePhone: +1 510 582-2121 -initials: R. F. -mobile: +1 510 875-3828 -pager: +1 510 234-4683 -roomNumber: 8218 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karena Bissegger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karena Bissegger -sn: Bissegger -description: This is Karena Bissegger's description -facsimileTelephoneNumber: +1 206 207-6646 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 546-4747 -title: Junior Human Resources Writer -userPassword: Password1 -uid: BisseggK -givenName: Karena -mail: BisseggK@8111da611c964d98a3dc51af12640e1f.bitwarden.com -carLicense: FH7S1Y -departmentNumber: 5817 -employeeType: Normal -homePhone: +1 206 678-3940 -initials: K. B. -mobile: +1 206 165-5723 -pager: +1 206 992-3228 -roomNumber: 9094 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbra Skerlak -sn: Skerlak -description: This is Barbra Skerlak's description -facsimileTelephoneNumber: +1 408 663-6825 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 539-9774 -title: Associate Janitorial Developer -userPassword: Password1 -uid: SkerlakB -givenName: Barbra -mail: SkerlakB@c41f8f7aea354718b6ea3277359c3684.bitwarden.com -carLicense: BIBGML -departmentNumber: 9055 -employeeType: Normal -homePhone: +1 408 897-1882 -initials: B. S. -mobile: +1 408 728-3785 -pager: +1 408 810-1295 -roomNumber: 8221 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cliff DOrazio -sn: DOrazio -description: This is Cliff DOrazio's description -facsimileTelephoneNumber: +1 818 699-3541 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 135-4323 -title: Master Human Resources Manager -userPassword: Password1 -uid: DOrazioC -givenName: Cliff -mail: DOrazioC@5670176255f949f78b023f460fb780c7.bitwarden.com -carLicense: BTRRDO -departmentNumber: 3261 -employeeType: Normal -homePhone: +1 818 612-2275 -initials: C. D. -mobile: +1 818 556-4817 -pager: +1 818 664-3655 -roomNumber: 8200 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynnelle Honkakangas -sn: Honkakangas -description: This is Lynnelle Honkakangas's description -facsimileTelephoneNumber: +1 510 970-3850 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 314-3936 -title: Junior Human Resources Manager -userPassword: Password1 -uid: HonkakaL -givenName: Lynnelle -mail: HonkakaL@baeeb32a45ba4c0a81a7005455fc2881.bitwarden.com -carLicense: 6GRD4P -departmentNumber: 3057 -employeeType: Normal -homePhone: +1 510 193-8217 -initials: L. H. -mobile: +1 510 582-8793 -pager: +1 510 280-8743 -roomNumber: 8347 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leena DeCristofaro -sn: DeCristofaro -description: This is Leena DeCristofaro's description -facsimileTelephoneNumber: +1 408 586-6109 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 383-9926 -title: Associate Product Development Assistant -userPassword: Password1 -uid: DeCristL -givenName: Leena -mail: DeCristL@57ee1e7c1faa4ce2b72c1469382238e6.bitwarden.com -carLicense: CH6K3C -departmentNumber: 7744 -employeeType: Employee -homePhone: +1 408 420-4975 -initials: L. D. -mobile: +1 408 147-1798 -pager: +1 408 163-9137 -roomNumber: 8260 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Zainab Musgrove,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zainab Musgrove -sn: Musgrove -description: This is Zainab Musgrove's description -facsimileTelephoneNumber: +1 408 651-1306 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 408 197-7791 -title: Supreme Peons Mascot -userPassword: Password1 -uid: MusgrovZ -givenName: Zainab -mail: MusgrovZ@47050585f7ac473188eb3868ce1763ef.bitwarden.com -carLicense: FKUS7H -departmentNumber: 1139 -employeeType: Normal -homePhone: +1 408 703-2865 -initials: Z. M. -mobile: +1 408 939-5838 -pager: +1 408 896-7067 -roomNumber: 8118 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rebekah Fenner,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebekah Fenner -sn: Fenner -description: This is Rebekah Fenner's description -facsimileTelephoneNumber: +1 213 216-1599 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 147-3379 -title: Chief Payroll Dictator -userPassword: Password1 -uid: FennerR -givenName: Rebekah -mail: FennerR@7710749ecc7b449a842362f5e9e1b148.bitwarden.com -carLicense: L65VTU -departmentNumber: 1540 -employeeType: Employee -homePhone: +1 213 492-1044 -initials: R. F. -mobile: +1 213 432-2446 -pager: +1 213 622-7786 -roomNumber: 9749 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gabey Florescu,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabey Florescu -sn: Florescu -description: This is Gabey Florescu's description -facsimileTelephoneNumber: +1 510 212-1194 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 286-3819 -title: Junior Peons Evangelist -userPassword: Password1 -uid: FlorescG -givenName: Gabey -mail: FlorescG@6d7476aff2da449e96bbd0ec87bf4d49.bitwarden.com -carLicense: EL95UP -departmentNumber: 2245 -employeeType: Normal -homePhone: +1 510 214-3482 -initials: G. F. -mobile: +1 510 827-3862 -pager: +1 510 596-4211 -roomNumber: 9785 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Padraig Scorziello,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Padraig Scorziello -sn: Scorziello -description: This is Padraig Scorziello's description -facsimileTelephoneNumber: +1 804 155-8507 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 227-8719 -title: Supreme Product Development Dictator -userPassword: Password1 -uid: ScorzieP -givenName: Padraig -mail: ScorzieP@01034db83e3b44ec835b5255948e4e0f.bitwarden.com -carLicense: R5W2P5 -departmentNumber: 8588 -employeeType: Normal -homePhone: +1 804 387-3095 -initials: P. S. -mobile: +1 804 929-8599 -pager: +1 804 347-6890 -roomNumber: 8201 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Clarisse Venne,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarisse Venne -sn: Venne -description: This is Clarisse Venne's description -facsimileTelephoneNumber: +1 213 100-8875 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 141-3613 -title: Master Administrative Pinhead -userPassword: Password1 -uid: VenneC -givenName: Clarisse -mail: VenneC@822da1d370d045aaadf5490626c311f7.bitwarden.com -carLicense: XSNOCA -departmentNumber: 9441 -employeeType: Normal -homePhone: +1 213 705-2733 -initials: C. V. -mobile: +1 213 450-3977 -pager: +1 213 728-5537 -roomNumber: 9408 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sally Gimon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sally Gimon -sn: Gimon -description: This is Sally Gimon's description -facsimileTelephoneNumber: +1 510 549-9610 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 510 876-7691 -title: Junior Product Testing Artist -userPassword: Password1 -uid: GimonS -givenName: Sally -mail: GimonS@5b47dd9dbc1945a4a16e83a582215989.bitwarden.com -carLicense: FGA2NF -departmentNumber: 4315 -employeeType: Employee -homePhone: +1 510 983-9814 -initials: S. G. -mobile: +1 510 207-4309 -pager: +1 510 922-5308 -roomNumber: 9153 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Siusan Surridge,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siusan Surridge -sn: Surridge -description: This is Siusan Surridge's description -facsimileTelephoneNumber: +1 408 855-3179 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 714-3705 -title: Associate Management Punk -userPassword: Password1 -uid: SurridgS -givenName: Siusan -mail: SurridgS@33045c677af94d5d866f53c47ff9ab36.bitwarden.com -carLicense: 7X4PHE -departmentNumber: 9317 -employeeType: Normal -homePhone: +1 408 197-3865 -initials: S. S. -mobile: +1 408 228-3188 -pager: +1 408 661-6702 -roomNumber: 9081 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dorris MacDonald,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorris MacDonald -sn: MacDonald -description: This is Dorris MacDonald's description -facsimileTelephoneNumber: +1 415 747-7914 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 457-6420 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: MacDonaD -givenName: Dorris -mail: MacDonaD@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com -carLicense: 2WB8YE -departmentNumber: 7301 -employeeType: Contract -homePhone: +1 415 640-8706 -initials: D. M. -mobile: +1 415 786-7122 -pager: +1 415 527-3304 -roomNumber: 9346 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zoltan Copes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zoltan Copes -sn: Copes -description: This is Zoltan Copes's description -facsimileTelephoneNumber: +1 206 833-5418 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 749-7879 -title: Junior Peons Figurehead -userPassword: Password1 -uid: CopesZ -givenName: Zoltan -mail: CopesZ@eaf35a1f9c5a47789295b9630982561d.bitwarden.com -carLicense: KSKKCV -departmentNumber: 5425 -employeeType: Employee -homePhone: +1 206 242-2381 -initials: Z. C. -mobile: +1 206 813-9804 -pager: +1 206 472-4918 -roomNumber: 9373 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Annadiane Moulton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annadiane Moulton -sn: Moulton -description: This is Annadiane Moulton's description -facsimileTelephoneNumber: +1 804 320-9048 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 292-2067 -title: Junior Administrative Visionary -userPassword: Password1 -uid: MoultonA -givenName: Annadiane -mail: MoultonA@4af403b72bd84466abf0512529d528e4.bitwarden.com -carLicense: EB9XDW -departmentNumber: 2007 -employeeType: Contract -homePhone: +1 804 514-4012 -initials: A. M. -mobile: +1 804 484-2427 -pager: +1 804 253-3701 -roomNumber: 9050 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chrystal Salkok,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chrystal Salkok -sn: Salkok -description: This is Chrystal Salkok's description -facsimileTelephoneNumber: +1 206 491-4456 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 879-2570 -title: Associate Payroll President -userPassword: Password1 -uid: SalkokC -givenName: Chrystal -mail: SalkokC@6dc0e5d935a04bb897ee53893751111f.bitwarden.com -carLicense: 1H9V9R -departmentNumber: 5041 -employeeType: Normal -homePhone: +1 206 994-8485 -initials: C. S. -mobile: +1 206 394-6529 -pager: +1 206 602-7330 -roomNumber: 9422 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ayaz McFeely,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ayaz McFeely -sn: McFeely -description: This is Ayaz McFeely's description -facsimileTelephoneNumber: +1 213 212-2119 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 100-2782 -title: Chief Payroll Janitor -userPassword: Password1 -uid: McFeelyA -givenName: Ayaz -mail: McFeelyA@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com -carLicense: GWPFCV -departmentNumber: 6309 -employeeType: Normal -homePhone: +1 213 355-2766 -initials: A. M. -mobile: +1 213 687-9573 -pager: +1 213 172-8545 -roomNumber: 8403 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Missie Dinnin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Missie Dinnin -sn: Dinnin -description: This is Missie Dinnin's description -facsimileTelephoneNumber: +1 510 565-8118 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 807-9115 -title: Supreme Peons Janitor -userPassword: Password1 -uid: DinninM -givenName: Missie -mail: DinninM@ba4f810ac4254d8dbe9cfd7199a37cf3.bitwarden.com -carLicense: DRY3C1 -departmentNumber: 3728 -employeeType: Employee -homePhone: +1 510 114-1097 -initials: M. D. -mobile: +1 510 522-4710 -pager: +1 510 120-9556 -roomNumber: 8368 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhQuoc Sobkow -sn: Sobkow -description: This is ThanhQuoc Sobkow's description -facsimileTelephoneNumber: +1 408 803-9166 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 375-3824 -title: Chief Product Development Architect -userPassword: Password1 -uid: SobkowT -givenName: ThanhQuoc -mail: SobkowT@6e1688424ec244adb10f2e8d17d9a231.bitwarden.com -carLicense: 4NXLMR -departmentNumber: 8681 -employeeType: Employee -homePhone: +1 408 646-9873 -initials: T. S. -mobile: +1 408 370-4600 -pager: +1 408 998-4774 -roomNumber: 8359 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Karlee Cheval,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlee Cheval -sn: Cheval -description: This is Karlee Cheval's description -facsimileTelephoneNumber: +1 213 272-8156 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 962-3709 -title: Master Janitorial Visionary -userPassword: Password1 -uid: ChevalK -givenName: Karlee -mail: ChevalK@3ef182c2d8294a598732f2ba6e610c67.bitwarden.com -carLicense: 7HJ5K9 -departmentNumber: 9256 -employeeType: Employee -homePhone: +1 213 805-1259 -initials: K. C. -mobile: +1 213 459-2391 -pager: +1 213 335-2192 -roomNumber: 8766 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Constantia Hampshire,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constantia Hampshire -sn: Hampshire -description: This is Constantia Hampshire's description -facsimileTelephoneNumber: +1 818 487-2712 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 889-6966 -title: Supreme Peons Writer -userPassword: Password1 -uid: HampshiC -givenName: Constantia -mail: HampshiC@777f0963de27462aa91642388ce1bcfa.bitwarden.com -carLicense: DHP3S8 -departmentNumber: 2330 -employeeType: Employee -homePhone: +1 818 995-4130 -initials: C. H. -mobile: +1 818 960-6685 -pager: +1 818 730-2599 -roomNumber: 9286 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Delle Stansfield,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delle Stansfield -sn: Stansfield -description: This is Delle Stansfield's description -facsimileTelephoneNumber: +1 206 622-5949 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 887-8225 -title: Junior Administrative Mascot -userPassword: Password1 -uid: StansfiD -givenName: Delle -mail: StansfiD@bf284e27ed8d49cf9a440a443619bccc.bitwarden.com -carLicense: 124JNA -departmentNumber: 8943 -employeeType: Contract -homePhone: +1 206 319-5667 -initials: D. S. -mobile: +1 206 656-3876 -pager: +1 206 461-4423 -roomNumber: 8147 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Percy Fiset,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Percy Fiset -sn: Fiset -description: This is Percy Fiset's description -facsimileTelephoneNumber: +1 415 993-3863 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 604-1011 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: FisetP -givenName: Percy -mail: FisetP@f6d5040b88954db19f785e7761b5d419.bitwarden.com -carLicense: 8GKFCO -departmentNumber: 4432 -employeeType: Contract -homePhone: +1 415 612-3885 -initials: P. F. -mobile: +1 415 801-9916 -pager: +1 415 941-4191 -roomNumber: 8900 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Thea Goh,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thea Goh -sn: Goh -description: This is Thea Goh's description -facsimileTelephoneNumber: +1 818 319-2589 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 833-4146 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: GohT -givenName: Thea -mail: GohT@34ad93f9a66546aaaf62d8eecc06145c.bitwarden.com -carLicense: BXLTQW -departmentNumber: 1222 -employeeType: Contract -homePhone: +1 818 460-9055 -initials: T. G. -mobile: +1 818 634-5639 -pager: +1 818 595-3281 -roomNumber: 8618 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Evanne Twiss,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evanne Twiss -sn: Twiss -description: This is Evanne Twiss's description -facsimileTelephoneNumber: +1 510 924-8374 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 356-5652 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: TwissE -givenName: Evanne -mail: TwissE@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com -carLicense: EWQCQV -departmentNumber: 8662 -employeeType: Normal -homePhone: +1 510 512-7331 -initials: E. T. -mobile: +1 510 946-3472 -pager: +1 510 626-2044 -roomNumber: 8766 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evaleen Ulrich -sn: Ulrich -description: This is Evaleen Ulrich's description -facsimileTelephoneNumber: +1 408 824-6643 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 167-2802 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: UlrichE -givenName: Evaleen -mail: UlrichE@49b6f96ca444413a876834c561f501a9.bitwarden.com -carLicense: 0B44W8 -departmentNumber: 1112 -employeeType: Normal -homePhone: +1 408 851-3888 -initials: E. U. -mobile: +1 408 632-9903 -pager: +1 408 179-6074 -roomNumber: 8203 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Opaline Bayno,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opaline Bayno -sn: Bayno -description: This is Opaline Bayno's description -facsimileTelephoneNumber: +1 408 214-8837 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 671-4268 -title: Supreme Management Warrior -userPassword: Password1 -uid: BaynoO -givenName: Opaline -mail: BaynoO@1f78d8536b924f6f89f5b50f4dff308b.bitwarden.com -carLicense: TAOBBY -departmentNumber: 5373 -employeeType: Contract -homePhone: +1 408 529-4263 -initials: O. B. -mobile: +1 408 698-1368 -pager: +1 408 739-2259 -roomNumber: 8884 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Delbert Hodgens,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delbert Hodgens -sn: Hodgens -description: This is Delbert Hodgens's description -facsimileTelephoneNumber: +1 206 927-5333 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 703-2000 -title: Associate Payroll Vice President -userPassword: Password1 -uid: HodgensD -givenName: Delbert -mail: HodgensD@583cd3a2f23946078680619fff6a08b3.bitwarden.com -carLicense: HDIC2A -departmentNumber: 4804 -employeeType: Contract -homePhone: +1 206 821-2877 -initials: D. H. -mobile: +1 206 335-2576 -pager: +1 206 505-7421 -roomNumber: 8039 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stefania Gnaedinger -sn: Gnaedinger -description: This is Stefania Gnaedinger's description -facsimileTelephoneNumber: +1 206 328-2434 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 206 555-6809 -title: Master Product Development Dictator -userPassword: Password1 -uid: GnaedinS -givenName: Stefania -mail: GnaedinS@74ad719f3ca94101b51f4a4b5749fe0a.bitwarden.com -carLicense: MEMABY -departmentNumber: 5807 -employeeType: Employee -homePhone: +1 206 986-9080 -initials: S. G. -mobile: +1 206 420-6740 -pager: +1 206 630-3143 -roomNumber: 9477 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Antonio Ide,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antonio Ide -sn: Ide -description: This is Antonio Ide's description -facsimileTelephoneNumber: +1 408 404-3116 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 803-5451 -title: Master Product Testing Visionary -userPassword: Password1 -uid: IdeA -givenName: Antonio -mail: IdeA@85bdf0f9c9734501b6e6cb120b7e80db.bitwarden.com -carLicense: TLLTRU -departmentNumber: 1769 -employeeType: Contract -homePhone: +1 408 620-5941 -initials: A. I. -mobile: +1 408 646-3381 -pager: +1 408 100-7285 -roomNumber: 8429 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margarethe Shigemura -sn: Shigemura -description: This is Margarethe Shigemura's description -facsimileTelephoneNumber: +1 415 605-3898 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 967-7465 -title: Chief Payroll Dictator -userPassword: Password1 -uid: ShigemuM -givenName: Margarethe -mail: ShigemuM@4281cc0a8ccb4f14858483f470a527dc.bitwarden.com -carLicense: ODRKF1 -departmentNumber: 9794 -employeeType: Normal -homePhone: +1 415 946-6121 -initials: M. S. -mobile: +1 415 309-9975 -pager: +1 415 503-4734 -roomNumber: 8881 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Berget Feil,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berget Feil -sn: Feil -description: This is Berget Feil's description -facsimileTelephoneNumber: +1 415 490-7873 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 902-3955 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: FeilB -givenName: Berget -mail: FeilB@402d7992fc8d4f0abdb7612e07362a4b.bitwarden.com -carLicense: CGR8WE -departmentNumber: 1400 -employeeType: Employee -homePhone: +1 415 322-6886 -initials: B. F. -mobile: +1 415 732-7310 -pager: +1 415 359-7612 -roomNumber: 9139 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Matty Danielak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matty Danielak -sn: Danielak -description: This is Matty Danielak's description -facsimileTelephoneNumber: +1 510 238-2129 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 510 897-9747 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: DanielaM -givenName: Matty -mail: DanielaM@59d0d0528b8d43efbf3f6b95ae91b41d.bitwarden.com -carLicense: 740ATF -departmentNumber: 9278 -employeeType: Normal -homePhone: +1 510 142-7985 -initials: M. D. -mobile: +1 510 409-8996 -pager: +1 510 182-4137 -roomNumber: 8529 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Prafula Stasney,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prafula Stasney -sn: Stasney -description: This is Prafula Stasney's description -facsimileTelephoneNumber: +1 510 849-1329 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 139-8348 -title: Supreme Management Madonna -userPassword: Password1 -uid: StasneyP -givenName: Prafula -mail: StasneyP@ac204890645b433e960754931ad42c93.bitwarden.com -carLicense: 5DNUO1 -departmentNumber: 6285 -employeeType: Employee -homePhone: +1 510 845-6044 -initials: P. S. -mobile: +1 510 413-2317 -pager: +1 510 194-5761 -roomNumber: 9401 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Eyk Bradford,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eyk Bradford -sn: Bradford -description: This is Eyk Bradford's description -facsimileTelephoneNumber: +1 804 927-6854 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 969-7881 -title: Supreme Peons Grunt -userPassword: Password1 -uid: BradforE -givenName: Eyk -mail: BradforE@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com -carLicense: ABNA8Y -departmentNumber: 7429 -employeeType: Employee -homePhone: +1 804 930-3711 -initials: E. B. -mobile: +1 804 882-7801 -pager: +1 804 181-3450 -roomNumber: 9112 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Della Barbe,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Della Barbe -sn: Barbe -description: This is Della Barbe's description -facsimileTelephoneNumber: +1 510 794-3353 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 697-2529 -title: Associate Management Architect -userPassword: Password1 -uid: BarbeD -givenName: Della -mail: BarbeD@78bde8bce82c4d1dbca4b21bf7784813.bitwarden.com -carLicense: KTDML7 -departmentNumber: 8591 -employeeType: Contract -homePhone: +1 510 277-6510 -initials: D. B. -mobile: +1 510 951-4231 -pager: +1 510 975-5421 -roomNumber: 9123 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Darelle Waid,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darelle Waid -sn: Waid -description: This is Darelle Waid's description -facsimileTelephoneNumber: +1 206 409-5017 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 206 116-7166 -title: Junior Product Development Technician -userPassword: Password1 -uid: WaidD -givenName: Darelle -mail: WaidD@70e5048368bb463a909414f19d29543c.bitwarden.com -carLicense: T9AR09 -departmentNumber: 4998 -employeeType: Contract -homePhone: +1 206 393-3985 -initials: D. W. -mobile: +1 206 578-2413 -pager: +1 206 552-7309 -roomNumber: 8084 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dino Farren,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dino Farren -sn: Farren -description: This is Dino Farren's description -facsimileTelephoneNumber: +1 510 176-7063 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 510 706-1866 -title: Chief Human Resources Technician -userPassword: Password1 -uid: FarrenD -givenName: Dino -mail: FarrenD@aee41a45245c488583a4e60c217e30cb.bitwarden.com -carLicense: Y1MKMJ -departmentNumber: 4615 -employeeType: Normal -homePhone: +1 510 429-5149 -initials: D. F. -mobile: +1 510 167-5415 -pager: +1 510 551-4245 -roomNumber: 9805 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elwyn MyersPillsworth -sn: MyersPillsworth -description: This is Elwyn MyersPillsworth's description -facsimileTelephoneNumber: +1 818 698-1260 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 505-3831 -title: Associate Janitorial Technician -userPassword: Password1 -uid: MyersPiE -givenName: Elwyn -mail: MyersPiE@d4d56842eb064bd38446a254d77ceab5.bitwarden.com -carLicense: W3DFOH -departmentNumber: 3842 -employeeType: Contract -homePhone: +1 818 203-2512 -initials: E. M. -mobile: +1 818 149-8639 -pager: +1 818 757-2828 -roomNumber: 9800 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ruth Chouinard,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruth Chouinard -sn: Chouinard -description: This is Ruth Chouinard's description -facsimileTelephoneNumber: +1 510 702-1140 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 421-5718 -title: Associate Peons Pinhead -userPassword: Password1 -uid: ChouinaR -givenName: Ruth -mail: ChouinaR@468946285b4b4bacab978eabc38e3750.bitwarden.com -carLicense: 0GB522 -departmentNumber: 6399 -employeeType: Normal -homePhone: +1 510 391-6709 -initials: R. C. -mobile: +1 510 532-6032 -pager: +1 510 529-2758 -roomNumber: 8854 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tiina Averette,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiina Averette -sn: Averette -description: This is Tiina Averette's description -facsimileTelephoneNumber: +1 818 494-7856 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 594-9771 -title: Chief Product Development Manager -userPassword: Password1 -uid: AverettT -givenName: Tiina -mail: AverettT@42f6c709ced54560a282482057eafc53.bitwarden.com -carLicense: 0T6KSX -departmentNumber: 6167 -employeeType: Normal -homePhone: +1 818 629-1470 -initials: T. A. -mobile: +1 818 823-5462 -pager: +1 818 156-9909 -roomNumber: 9486 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Meghann Marasco,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meghann Marasco -sn: Marasco -description: This is Meghann Marasco's description -facsimileTelephoneNumber: +1 510 629-1170 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 696-1995 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: MarascoM -givenName: Meghann -mail: MarascoM@b4a96c186a084a79b91245984247afc4.bitwarden.com -carLicense: N7ND6V -departmentNumber: 8974 -employeeType: Employee -homePhone: +1 510 492-9379 -initials: M. M. -mobile: +1 510 828-5089 -pager: +1 510 107-4255 -roomNumber: 8250 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertrudis Husarewych -sn: Husarewych -description: This is Gertrudis Husarewych's description -facsimileTelephoneNumber: +1 213 288-2046 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 213 672-1178 -title: Master Product Testing Madonna -userPassword: Password1 -uid: HusarewG -givenName: Gertrudis -mail: HusarewG@396f50164cb54f9b8cdc5d4d56de2e49.bitwarden.com -carLicense: TBD99R -departmentNumber: 3344 -employeeType: Contract -homePhone: +1 213 325-2820 -initials: G. H. -mobile: +1 213 969-2732 -pager: +1 213 256-4980 -roomNumber: 8497 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Agnella Chona,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnella Chona -sn: Chona -description: This is Agnella Chona's description -facsimileTelephoneNumber: +1 213 293-1217 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 821-9156 -title: Chief Management Director -userPassword: Password1 -uid: ChonaA -givenName: Agnella -mail: ChonaA@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com -carLicense: UEND10 -departmentNumber: 4324 -employeeType: Contract -homePhone: +1 213 351-6765 -initials: A. C. -mobile: +1 213 553-7532 -pager: +1 213 500-8254 -roomNumber: 9602 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Olimpia Stetter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olimpia Stetter -sn: Stetter -description: This is Olimpia Stetter's description -facsimileTelephoneNumber: +1 206 867-6364 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 322-9042 -title: Chief Product Development Sales Rep -userPassword: Password1 -uid: StetterO -givenName: Olimpia -mail: StetterO@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com -carLicense: D4PFNJ -departmentNumber: 1315 -employeeType: Contract -homePhone: +1 206 117-4897 -initials: O. S. -mobile: +1 206 176-6035 -pager: +1 206 933-2611 -roomNumber: 9851 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zea Hoadley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zea Hoadley -sn: Hoadley -description: This is Zea Hoadley's description -facsimileTelephoneNumber: +1 818 307-6435 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 233-1886 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: HoadleyZ -givenName: Zea -mail: HoadleyZ@b22ff28e3c9d44f9a2be9fd304adde71.bitwarden.com -carLicense: 1TY2MB -departmentNumber: 4033 -employeeType: Normal -homePhone: +1 818 917-2679 -initials: Z. H. -mobile: +1 818 685-6241 -pager: +1 818 328-4518 -roomNumber: 9748 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kanu Constantinides,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanu Constantinides -sn: Constantinides -description: This is Kanu Constantinides's description -facsimileTelephoneNumber: +1 408 822-1586 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 434-8799 -title: Supreme Management Technician -userPassword: Password1 -uid: ConstanK -givenName: Kanu -mail: ConstanK@38dcec66f26c4456ab9d677c65296ef1.bitwarden.com -carLicense: ADT01D -departmentNumber: 2989 -employeeType: Normal -homePhone: +1 408 712-9184 -initials: K. C. -mobile: +1 408 724-4402 -pager: +1 408 560-9671 -roomNumber: 8160 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Priti Hummerston,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Priti Hummerston -sn: Hummerston -description: This is Priti Hummerston's description -facsimileTelephoneNumber: +1 510 737-5980 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 302-8702 -title: Associate Product Development President -userPassword: Password1 -uid: HummersP -givenName: Priti -mail: HummersP@f4470991699244448d6b8bb8de6893c0.bitwarden.com -carLicense: F66AVN -departmentNumber: 2105 -employeeType: Normal -homePhone: +1 510 121-5635 -initials: P. H. -mobile: +1 510 575-1953 -pager: +1 510 616-5559 -roomNumber: 8433 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacalyn Brasset -sn: Brasset -description: This is Jacalyn Brasset's description -facsimileTelephoneNumber: +1 804 701-6138 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 341-9268 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: BrassetJ -givenName: Jacalyn -mail: BrassetJ@50b38e0ffb6e4939890621a0511935ae.bitwarden.com -carLicense: 1IX6TY -departmentNumber: 1258 -employeeType: Contract -homePhone: +1 804 281-4842 -initials: J. B. -mobile: +1 804 525-6341 -pager: +1 804 624-6444 -roomNumber: 8846 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Siobhan Duffney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siobhan Duffney -sn: Duffney -description: This is Siobhan Duffney's description -facsimileTelephoneNumber: +1 510 865-5639 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 756-1579 -title: Master Product Development Punk -userPassword: Password1 -uid: DuffneyS -givenName: Siobhan -mail: DuffneyS@d143e10394af44668765922189bff89a.bitwarden.com -carLicense: SH2BK5 -departmentNumber: 7507 -employeeType: Employee -homePhone: +1 510 791-3854 -initials: S. D. -mobile: +1 510 147-8541 -pager: +1 510 477-5284 -roomNumber: 9226 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=KaiWai Greenberg,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KaiWai Greenberg -sn: Greenberg -description: This is KaiWai Greenberg's description -facsimileTelephoneNumber: +1 804 639-5946 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 955-4979 -title: Supreme Management Janitor -userPassword: Password1 -uid: GreenbeK -givenName: KaiWai -mail: GreenbeK@2fe559ef1909460788a7965dfb6d63bf.bitwarden.com -carLicense: OO279S -departmentNumber: 2565 -employeeType: Normal -homePhone: +1 804 802-4213 -initials: K. G. -mobile: +1 804 157-5547 -pager: +1 804 249-6957 -roomNumber: 9534 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Phyllys Relations,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phyllys Relations -sn: Relations -description: This is Phyllys Relations's description -facsimileTelephoneNumber: +1 206 639-5047 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 481-2794 -title: Chief Product Development Engineer -userPassword: Password1 -uid: RelatioP -givenName: Phyllys -mail: RelatioP@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com -carLicense: U8JL0G -departmentNumber: 6251 -employeeType: Contract -homePhone: +1 206 875-3375 -initials: P. R. -mobile: +1 206 106-2033 -pager: +1 206 323-3859 -roomNumber: 8707 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sigrid Griffith -sn: Griffith -description: This is Sigrid Griffith's description -facsimileTelephoneNumber: +1 206 912-1014 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 668-3321 -title: Master Janitorial Madonna -userPassword: Password1 -uid: GriffitS -givenName: Sigrid -mail: GriffitS@12c627d4150246c09e4556d8871e3971.bitwarden.com -carLicense: MHSGUY -departmentNumber: 4394 -employeeType: Normal -homePhone: +1 206 601-8774 -initials: S. G. -mobile: +1 206 897-9354 -pager: +1 206 330-2054 -roomNumber: 8963 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Onette Erwin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Onette Erwin -sn: Erwin -description: This is Onette Erwin's description -facsimileTelephoneNumber: +1 818 704-4379 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 173-9662 -title: Associate Administrative Writer -userPassword: Password1 -uid: ErwinO -givenName: Onette -mail: ErwinO@901564204f174d52bee3bff189fa1964.bitwarden.com -carLicense: U3KQES -departmentNumber: 6588 -employeeType: Contract -homePhone: +1 818 654-5171 -initials: O. E. -mobile: +1 818 803-5800 -pager: +1 818 234-6274 -roomNumber: 8143 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Micheal Threader,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micheal Threader -sn: Threader -description: This is Micheal Threader's description -facsimileTelephoneNumber: +1 213 608-4925 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 508-3610 -title: Chief Peons Engineer -userPassword: Password1 -uid: ThreadeM -givenName: Micheal -mail: ThreadeM@81539b6d10a24d8ca67f1fd08a3e12b8.bitwarden.com -carLicense: 98IS7W -departmentNumber: 7511 -employeeType: Normal -homePhone: +1 213 797-3128 -initials: M. T. -mobile: +1 213 652-3653 -pager: +1 213 154-7063 -roomNumber: 8107 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ihor Barnwell -sn: Barnwell -description: This is Ihor Barnwell's description -facsimileTelephoneNumber: +1 213 490-9569 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 814-4024 -title: Junior Human Resources Visionary -userPassword: Password1 -uid: BarnwelI -givenName: Ihor -mail: BarnwelI@01ea25f91f69450da0e6e08e522d6866.bitwarden.com -carLicense: MORK9B -departmentNumber: 7982 -employeeType: Normal -homePhone: +1 213 213-1807 -initials: I. B. -mobile: +1 213 400-5339 -pager: +1 213 884-1760 -roomNumber: 9194 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Melitta Teacher,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melitta Teacher -sn: Teacher -description: This is Melitta Teacher's description -facsimileTelephoneNumber: +1 213 310-2130 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 454-9355 -title: Master Management Fellow -userPassword: Password1 -uid: TeacherM -givenName: Melitta -mail: TeacherM@2c23fea190c640299f3fdc976ce4b7f6.bitwarden.com -carLicense: L2RG8D -departmentNumber: 1591 -employeeType: Normal -homePhone: +1 213 725-5582 -initials: M. T. -mobile: +1 213 521-1098 -pager: +1 213 637-7977 -roomNumber: 9679 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Francesca Spinks,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francesca Spinks -sn: Spinks -description: This is Francesca Spinks's description -facsimileTelephoneNumber: +1 206 407-8492 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 654-5439 -title: Master Product Testing Grunt -userPassword: Password1 -uid: SpinksF -givenName: Francesca -mail: SpinksF@ae35c1a0907348c0bfc6c98f95d0d043.bitwarden.com -carLicense: BWE76J -departmentNumber: 7626 -employeeType: Contract -homePhone: +1 206 223-1535 -initials: F. S. -mobile: +1 206 155-9088 -pager: +1 206 427-5351 -roomNumber: 8775 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kippie Genova,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kippie Genova -sn: Genova -description: This is Kippie Genova's description -facsimileTelephoneNumber: +1 818 794-8170 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 981-2409 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: GenovaK -givenName: Kippie -mail: GenovaK@02024d9597e14220ab6fb23c71480154.bitwarden.com -carLicense: UP00I4 -departmentNumber: 8876 -employeeType: Normal -homePhone: +1 818 906-6240 -initials: K. G. -mobile: +1 818 522-4690 -pager: +1 818 844-9129 -roomNumber: 8523 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=My Geuder,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: My Geuder -sn: Geuder -description: This is My Geuder's description -facsimileTelephoneNumber: +1 408 551-7118 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 408 649-7311 -title: Chief Payroll Admin -userPassword: Password1 -uid: GeuderM -givenName: My -mail: GeuderM@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com -carLicense: 4C674W -departmentNumber: 9841 -employeeType: Contract -homePhone: +1 408 234-4465 -initials: M. G. -mobile: +1 408 863-6056 -pager: +1 408 113-8811 -roomNumber: 8569 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Corene Goldman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corene Goldman -sn: Goldman -description: This is Corene Goldman's description -facsimileTelephoneNumber: +1 804 789-7617 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 898-7592 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: GoldmanC -givenName: Corene -mail: GoldmanC@41979f975e5b4df39d8af2a5899b3c86.bitwarden.com -carLicense: JBOCV1 -departmentNumber: 5943 -employeeType: Employee -homePhone: +1 804 760-2247 -initials: C. G. -mobile: +1 804 651-1422 -pager: +1 804 365-4294 -roomNumber: 8190 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bea Shanahan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bea Shanahan -sn: Shanahan -description: This is Bea Shanahan's description -facsimileTelephoneNumber: +1 213 951-5547 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 213 260-7999 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: ShanahaB -givenName: Bea -mail: ShanahaB@785fa08a549c473b918f799d10771836.bitwarden.com -carLicense: X9YBMT -departmentNumber: 2933 -employeeType: Employee -homePhone: +1 213 524-9856 -initials: B. S. -mobile: +1 213 504-8469 -pager: +1 213 992-6985 -roomNumber: 8455 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Adah Simzer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adah Simzer -sn: Simzer -description: This is Adah Simzer's description -facsimileTelephoneNumber: +1 408 936-7497 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 408 494-1439 -title: Supreme Payroll Assistant -userPassword: Password1 -uid: SimzerA -givenName: Adah -mail: SimzerA@fac421ca650e46139878bbd5f7498e19.bitwarden.com -carLicense: I3YW6G -departmentNumber: 7856 -employeeType: Normal -homePhone: +1 408 344-1274 -initials: A. S. -mobile: +1 408 871-3227 -pager: +1 408 290-1008 -roomNumber: 9578 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Minnesota Safah,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minnesota Safah -sn: Safah -description: This is Minnesota Safah's description -facsimileTelephoneNumber: +1 804 737-9645 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 804 682-4923 -title: Chief Administrative Writer -userPassword: Password1 -uid: SafahM -givenName: Minnesota -mail: SafahM@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com -carLicense: LCK7P4 -departmentNumber: 3607 -employeeType: Employee -homePhone: +1 804 643-9250 -initials: M. S. -mobile: +1 804 251-6811 -pager: +1 804 368-2449 -roomNumber: 9669 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Perrine Ketkar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perrine Ketkar -sn: Ketkar -description: This is Perrine Ketkar's description -facsimileTelephoneNumber: +1 213 153-2937 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 901-4742 -title: Junior Peons Warrior -userPassword: Password1 -uid: KetkarP -givenName: Perrine -mail: KetkarP@4f7f458ba85b4c42a1412d24897cf2b8.bitwarden.com -carLicense: C8Q2ES -departmentNumber: 9843 -employeeType: Normal -homePhone: +1 213 170-2278 -initials: P. K. -mobile: +1 213 616-9550 -pager: +1 213 218-9156 -roomNumber: 9850 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jilly Kwok,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jilly Kwok -sn: Kwok -description: This is Jilly Kwok's description -facsimileTelephoneNumber: +1 804 267-5341 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 650-6486 -title: Chief Product Development Dictator -userPassword: Password1 -uid: KwokJ -givenName: Jilly -mail: KwokJ@877dbf1e095f477dbff1ca10ebea40c7.bitwarden.com -carLicense: LDAKOX -departmentNumber: 9921 -employeeType: Contract -homePhone: +1 804 773-4617 -initials: J. K. -mobile: +1 804 262-8480 -pager: +1 804 382-8823 -roomNumber: 9895 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwynith Cemensky -sn: Cemensky -description: This is Gwynith Cemensky's description -facsimileTelephoneNumber: +1 818 322-9157 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 818 934-4209 -title: Associate Product Testing Dictator -userPassword: Password1 -uid: CemenskG -givenName: Gwynith -mail: CemenskG@ca5f8fc3a5274b669733a8f1eb35b88b.bitwarden.com -carLicense: EE5I42 -departmentNumber: 3027 -employeeType: Employee -homePhone: +1 818 400-5232 -initials: G. C. -mobile: +1 818 951-2401 -pager: +1 818 990-5867 -roomNumber: 8265 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucinda Elliott -sn: Elliott -description: This is Lucinda Elliott's description -facsimileTelephoneNumber: +1 510 909-6235 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 567-6002 -title: Junior Human Resources Director -userPassword: Password1 -uid: ElliottL -givenName: Lucinda -mail: ElliottL@321b01a1b92242e68a892ee12821e529.bitwarden.com -carLicense: QWF0KC -departmentNumber: 8255 -employeeType: Normal -homePhone: +1 510 439-5712 -initials: L. E. -mobile: +1 510 562-3603 -pager: +1 510 238-5955 -roomNumber: 8503 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sharona Lunde,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharona Lunde -sn: Lunde -description: This is Sharona Lunde's description -facsimileTelephoneNumber: +1 213 153-8392 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 680-2535 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: LundeS -givenName: Sharona -mail: LundeS@d6b3231dbb434132911ed9c9e37e3901.bitwarden.com -carLicense: KB5X8I -departmentNumber: 1589 -employeeType: Contract -homePhone: +1 213 726-3030 -initials: S. L. -mobile: +1 213 791-6109 -pager: +1 213 570-8808 -roomNumber: 8077 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lynnette Juskevicius,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynnette Juskevicius -sn: Juskevicius -description: This is Lynnette Juskevicius's description -facsimileTelephoneNumber: +1 408 287-4639 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 408 975-6024 -title: Supreme Management Pinhead -userPassword: Password1 -uid: JuskeviL -givenName: Lynnette -mail: JuskeviL@87501b64e5644d78a747c4f01175b74a.bitwarden.com -carLicense: FVNLV5 -departmentNumber: 6558 -employeeType: Employee -homePhone: +1 408 343-7005 -initials: L. J. -mobile: +1 408 897-7959 -pager: +1 408 690-5425 -roomNumber: 8713 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=PeyKee Gunther,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PeyKee Gunther -sn: Gunther -description: This is PeyKee Gunther's description -facsimileTelephoneNumber: +1 415 602-5450 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 700-5817 -title: Junior Administrative Janitor -userPassword: Password1 -uid: GuntherP -givenName: PeyKee -mail: GuntherP@5627b6b1b02646ec88c596099b169466.bitwarden.com -carLicense: FTDFAI -departmentNumber: 5596 -employeeType: Employee -homePhone: +1 415 700-6577 -initials: P. G. -mobile: +1 415 899-9120 -pager: +1 415 288-5711 -roomNumber: 8667 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Howden LaBauve,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Howden LaBauve -sn: LaBauve -description: This is Howden LaBauve's description -facsimileTelephoneNumber: +1 818 705-5413 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 818 869-4917 -title: Junior Payroll Vice President -userPassword: Password1 -uid: LaBauveH -givenName: Howden -mail: LaBauveH@dcc9b9b7a7cb4f758bc0f2bd3592b966.bitwarden.com -carLicense: CSP3BE -departmentNumber: 1068 -employeeType: Contract -homePhone: +1 818 542-1003 -initials: H. L. -mobile: +1 818 580-7128 -pager: +1 818 668-8536 -roomNumber: 8018 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dana Linaugh,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dana Linaugh -sn: Linaugh -description: This is Dana Linaugh's description -facsimileTelephoneNumber: +1 415 476-9638 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 970-5539 -title: Junior Human Resources Director -userPassword: Password1 -uid: LinaughD -givenName: Dana -mail: LinaughD@073d9b40128d435294a7cce9001bca7b.bitwarden.com -carLicense: C9AU1L -departmentNumber: 7600 -employeeType: Employee -homePhone: +1 415 560-2572 -initials: D. L. -mobile: +1 415 368-6566 -pager: +1 415 884-9969 -roomNumber: 8034 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gnni Schafer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gnni Schafer -sn: Schafer -description: This is Gnni Schafer's description -facsimileTelephoneNumber: +1 818 564-9619 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 324-2680 -title: Master Product Development Warrior -userPassword: Password1 -uid: SchaferG -givenName: Gnni -mail: SchaferG@eea3ea553d4b4f9dacda1e1f188882a9.bitwarden.com -carLicense: KXBO9O -departmentNumber: 2669 -employeeType: Normal -homePhone: +1 818 294-4488 -initials: G. S. -mobile: +1 818 610-8013 -pager: +1 818 124-6087 -roomNumber: 8641 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Callida Tropea,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Callida Tropea -sn: Tropea -description: This is Callida Tropea's description -facsimileTelephoneNumber: +1 818 760-3666 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 977-4629 -title: Chief Management Vice President -userPassword: Password1 -uid: TropeaC -givenName: Callida -mail: TropeaC@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com -carLicense: 1CD10A -departmentNumber: 6837 -employeeType: Contract -homePhone: +1 818 820-1108 -initials: C. T. -mobile: +1 818 402-9448 -pager: +1 818 357-4510 -roomNumber: 9392 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgeta Cholewinski -sn: Cholewinski -description: This is Georgeta Cholewinski's description -facsimileTelephoneNumber: +1 804 742-5031 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 463-2830 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: CholewiG -givenName: Georgeta -mail: CholewiG@30477bd611094e598c75e08386158998.bitwarden.com -carLicense: JXVDAB -departmentNumber: 6635 -employeeType: Contract -homePhone: +1 804 777-1012 -initials: G. C. -mobile: +1 804 207-8928 -pager: +1 804 847-8398 -roomNumber: 9683 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Amara Zisu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amara Zisu -sn: Zisu -description: This is Amara Zisu's description -facsimileTelephoneNumber: +1 804 956-3049 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 223-8279 -title: Associate Product Development Developer -userPassword: Password1 -uid: ZisuA -givenName: Amara -mail: ZisuA@20be5fad1efc427e98e47e76a75c40bd.bitwarden.com -carLicense: YXRDYL -departmentNumber: 8969 -employeeType: Employee -homePhone: +1 804 963-5128 -initials: A. Z. -mobile: +1 804 626-8126 -pager: +1 804 514-7166 -roomNumber: 9436 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Delly Macklem,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delly Macklem -sn: Macklem -description: This is Delly Macklem's description -facsimileTelephoneNumber: +1 206 672-4973 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 252-3774 -title: Master Product Development Warrior -userPassword: Password1 -uid: MacklemD -givenName: Delly -mail: MacklemD@e18d08f509ac4ed1bf7a2094201ce8f7.bitwarden.com -carLicense: 9QGP0D -departmentNumber: 4452 -employeeType: Contract -homePhone: +1 206 332-7174 -initials: D. M. -mobile: +1 206 717-3926 -pager: +1 206 670-9961 -roomNumber: 8334 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Faustina Yedema,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faustina Yedema -sn: Yedema -description: This is Faustina Yedema's description -facsimileTelephoneNumber: +1 804 408-9074 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 248-2566 -title: Junior Payroll Technician -userPassword: Password1 -uid: YedemaF -givenName: Faustina -mail: YedemaF@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com -carLicense: TYCUEY -departmentNumber: 7735 -employeeType: Normal -homePhone: +1 804 615-2542 -initials: F. Y. -mobile: +1 804 258-4786 -pager: +1 804 564-9718 -roomNumber: 9974 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Annamaria Handforth,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annamaria Handforth -sn: Handforth -description: This is Annamaria Handforth's description -facsimileTelephoneNumber: +1 408 647-8700 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 603-7451 -title: Junior Administrative Engineer -userPassword: Password1 -uid: HandforA -givenName: Annamaria -mail: HandforA@ab4d4d42eb2d484cb7a730409517902e.bitwarden.com -carLicense: IGO436 -departmentNumber: 5334 -employeeType: Normal -homePhone: +1 408 937-5900 -initials: A. H. -mobile: +1 408 213-1101 -pager: +1 408 391-6024 -roomNumber: 8679 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Korney Gehm,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Korney Gehm -sn: Gehm -description: This is Korney Gehm's description -facsimileTelephoneNumber: +1 804 559-1773 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 237-7200 -title: Chief Product Testing Technician -userPassword: Password1 -uid: GehmK -givenName: Korney -mail: GehmK@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com -carLicense: MLFGSS -departmentNumber: 4807 -employeeType: Normal -homePhone: +1 804 456-2091 -initials: K. G. -mobile: +1 804 404-6199 -pager: +1 804 300-4909 -roomNumber: 8017 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Archie Klimon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Archie Klimon -sn: Klimon -description: This is Archie Klimon's description -facsimileTelephoneNumber: +1 408 207-6509 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 773-8495 -title: Associate Payroll Figurehead -userPassword: Password1 -uid: KlimonA -givenName: Archie -mail: KlimonA@4afa8343c8fe499bbf69af9cea3fa9e0.bitwarden.com -carLicense: 2IQFUO -departmentNumber: 1932 -employeeType: Normal -homePhone: +1 408 697-2223 -initials: A. K. -mobile: +1 408 410-6762 -pager: +1 408 978-8604 -roomNumber: 9558 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Angela Holland,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angela Holland -sn: Holland -description: This is Angela Holland's description -facsimileTelephoneNumber: +1 408 264-2106 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 782-8538 -title: Master Product Development Stooge -userPassword: Password1 -uid: HollandA -givenName: Angela -mail: HollandA@f22f9789190b4636a01e59d38d771067.bitwarden.com -carLicense: LMM15X -departmentNumber: 8493 -employeeType: Contract -homePhone: +1 408 361-6937 -initials: A. H. -mobile: +1 408 243-3869 -pager: +1 408 612-9307 -roomNumber: 8144 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marcellina Clairmont,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcellina Clairmont -sn: Clairmont -description: This is Marcellina Clairmont's description -facsimileTelephoneNumber: +1 408 889-1967 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 501-3537 -title: Master Peons Artist -userPassword: Password1 -uid: ClairmoM -givenName: Marcellina -mail: ClairmoM@12b0a668d23742f7b436e1fcd1a16efa.bitwarden.com -carLicense: NOX5AW -departmentNumber: 3054 -employeeType: Normal -homePhone: +1 408 158-4486 -initials: M. C. -mobile: +1 408 526-5929 -pager: +1 408 937-6850 -roomNumber: 8285 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kristien Yamamoto,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristien Yamamoto -sn: Yamamoto -description: This is Kristien Yamamoto's description -facsimileTelephoneNumber: +1 408 156-6082 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 103-9560 -title: Supreme Peons Technician -userPassword: Password1 -uid: YamamotK -givenName: Kristien -mail: YamamotK@41b0e973148e4596b195108aeda208de.bitwarden.com -carLicense: I3T7JJ -departmentNumber: 2819 -employeeType: Normal -homePhone: +1 408 554-8136 -initials: K. Y. -mobile: +1 408 967-6739 -pager: +1 408 387-2837 -roomNumber: 8323 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nayan Simcox,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nayan Simcox -sn: Simcox -description: This is Nayan Simcox's description -facsimileTelephoneNumber: +1 510 496-5965 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 831-7120 -title: Associate Payroll Visionary -userPassword: Password1 -uid: SimcoxN -givenName: Nayan -mail: SimcoxN@5d8927d9a18847879f1969c651cc8b72.bitwarden.com -carLicense: HJO6PJ -departmentNumber: 2161 -employeeType: Contract -homePhone: +1 510 995-5220 -initials: N. S. -mobile: +1 510 148-9053 -pager: +1 510 236-9725 -roomNumber: 8252 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Celisse Draier,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celisse Draier -sn: Draier -description: This is Celisse Draier's description -facsimileTelephoneNumber: +1 206 114-3040 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 187-6692 -title: Junior Product Development Admin -userPassword: Password1 -uid: DraierC -givenName: Celisse -mail: DraierC@f30a055d94234aafa3b01325963e42c8.bitwarden.com -carLicense: B5EE8G -departmentNumber: 9656 -employeeType: Contract -homePhone: +1 206 615-3877 -initials: C. D. -mobile: +1 206 124-9359 -pager: +1 206 191-8205 -roomNumber: 8899 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Matty Vasile,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matty Vasile -sn: Vasile -description: This is Matty Vasile's description -facsimileTelephoneNumber: +1 804 188-6748 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 985-7677 -title: Junior Payroll Director -userPassword: Password1 -uid: VasileM -givenName: Matty -mail: VasileM@f9e13296819e4d139b7b490c05eac7c4.bitwarden.com -carLicense: CLR36T -departmentNumber: 8359 -employeeType: Employee -homePhone: +1 804 316-6936 -initials: M. V. -mobile: +1 804 804-3187 -pager: +1 804 852-5225 -roomNumber: 8155 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=WingKi McClain,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WingKi McClain -sn: McClain -description: This is WingKi McClain's description -facsimileTelephoneNumber: +1 408 601-4685 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 944-7045 -title: Associate Peons Vice President -userPassword: Password1 -uid: McClainW -givenName: WingKi -mail: McClainW@3519a5fee4394ec4a1319941ad8ff05d.bitwarden.com -carLicense: 78DR8Q -departmentNumber: 2534 -employeeType: Normal -homePhone: +1 408 223-6597 -initials: W. M. -mobile: +1 408 129-5134 -pager: +1 408 336-4375 -roomNumber: 9606 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shantee Hounsell -sn: Hounsell -description: This is Shantee Hounsell's description -facsimileTelephoneNumber: +1 206 541-2732 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 852-5796 -title: Master Human Resources Developer -userPassword: Password1 -uid: HounselS -givenName: Shantee -mail: HounselS@59faf706c5aa46e79492393874607cdf.bitwarden.com -carLicense: LGDELP -departmentNumber: 5833 -employeeType: Normal -homePhone: +1 206 894-8949 -initials: S. H. -mobile: +1 206 355-4327 -pager: +1 206 190-6021 -roomNumber: 9813 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Konrad Tsalikis -sn: Tsalikis -description: This is Konrad Tsalikis's description -facsimileTelephoneNumber: +1 206 595-2585 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 441-7599 -title: Junior Administrative Dictator -userPassword: Password1 -uid: TsalikiK -givenName: Konrad -mail: TsalikiK@0babc297aa7744eb886478ba408ffef6.bitwarden.com -carLicense: DEEVBU -departmentNumber: 4148 -employeeType: Contract -homePhone: +1 206 155-5981 -initials: K. T. -mobile: +1 206 868-4488 -pager: +1 206 375-4365 -roomNumber: 8169 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shutterbug Ta,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shutterbug Ta -sn: Ta -description: This is Shutterbug Ta's description -facsimileTelephoneNumber: +1 206 743-4700 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 833-1225 -title: Supreme Product Development Director -userPassword: Password1 -uid: TaS -givenName: Shutterbug -mail: TaS@d099b87b6d4c4f55806f0c8cf8dbfe18.bitwarden.com -carLicense: 06SS01 -departmentNumber: 4044 -employeeType: Contract -homePhone: +1 206 212-4842 -initials: S. T. -mobile: +1 206 979-2041 -pager: +1 206 633-1893 -roomNumber: 8813 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Les Oreilly,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Les Oreilly -sn: Oreilly -description: This is Les Oreilly's description -facsimileTelephoneNumber: +1 510 618-9284 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 590-1447 -title: Associate Administrative Dictator -userPassword: Password1 -uid: OreillyL -givenName: Les -mail: OreillyL@bf82bd280911404494f15486e63577cc.bitwarden.com -carLicense: NJRJRI -departmentNumber: 9928 -employeeType: Employee -homePhone: +1 510 480-2135 -initials: L. O. -mobile: +1 510 512-1962 -pager: +1 510 648-4614 -roomNumber: 9047 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Veen Cawley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veen Cawley -sn: Cawley -description: This is Veen Cawley's description -facsimileTelephoneNumber: +1 510 567-7496 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 695-9740 -title: Associate Management Czar -userPassword: Password1 -uid: CawleyV -givenName: Veen -mail: CawleyV@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com -carLicense: SX5QDL -departmentNumber: 6886 -employeeType: Employee -homePhone: +1 510 397-6477 -initials: V. C. -mobile: +1 510 333-2222 -pager: +1 510 165-5578 -roomNumber: 9325 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Stergios Romanowski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stergios Romanowski -sn: Romanowski -description: This is Stergios Romanowski's description -facsimileTelephoneNumber: +1 804 907-9466 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 754-1480 -title: Chief Peons Dictator -userPassword: Password1 -uid: RomanowS -givenName: Stergios -mail: RomanowS@59db13ba21bf46b29057d72100d263ca.bitwarden.com -carLicense: E5YURY -departmentNumber: 1859 -employeeType: Normal -homePhone: +1 804 146-7137 -initials: S. R. -mobile: +1 804 748-9484 -pager: +1 804 914-3498 -roomNumber: 9932 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shyam Hipson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shyam Hipson -sn: Hipson -description: This is Shyam Hipson's description -facsimileTelephoneNumber: +1 408 672-9136 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 824-9686 -title: Associate Product Development Artist -userPassword: Password1 -uid: HipsonS -givenName: Shyam -mail: HipsonS@a21f8badf17c4b4dbce73be0734b9d87.bitwarden.com -carLicense: RVVV9A -departmentNumber: 7870 -employeeType: Contract -homePhone: +1 408 761-7518 -initials: S. H. -mobile: +1 408 182-9695 -pager: +1 408 181-7231 -roomNumber: 8978 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carley Dal,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carley Dal -sn: Dal -description: This is Carley Dal's description -facsimileTelephoneNumber: +1 818 757-6989 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 692-6709 -title: Junior Human Resources Architect -userPassword: Password1 -uid: DalC -givenName: Carley -mail: DalC@ad4942d8c3c341119939c679c4dae154.bitwarden.com -carLicense: X5OD12 -departmentNumber: 2009 -employeeType: Employee -homePhone: +1 818 787-5027 -initials: C. D. -mobile: +1 818 524-6766 -pager: +1 818 371-9137 -roomNumber: 8128 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chickie Dyna,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chickie Dyna -sn: Dyna -description: This is Chickie Dyna's description -facsimileTelephoneNumber: +1 408 959-4116 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 578-3814 -title: Junior Management Mascot -userPassword: Password1 -uid: DynaC -givenName: Chickie -mail: DynaC@822da1d370d045aaadf5490626c311f7.bitwarden.com -carLicense: L6Y1X9 -departmentNumber: 6654 -employeeType: Normal -homePhone: +1 408 439-6911 -initials: C. D. -mobile: +1 408 808-7082 -pager: +1 408 561-8033 -roomNumber: 8025 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxanne Wesselow -sn: Wesselow -description: This is Roxanne Wesselow's description -facsimileTelephoneNumber: +1 206 251-3939 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 740-7502 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: WesseloR -givenName: Roxanne -mail: WesseloR@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com -carLicense: LVUR9C -departmentNumber: 6961 -employeeType: Contract -homePhone: +1 206 604-1541 -initials: R. W. -mobile: +1 206 286-6094 -pager: +1 206 471-9020 -roomNumber: 8953 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Norstar Bouick,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norstar Bouick -sn: Bouick -description: This is Norstar Bouick's description -facsimileTelephoneNumber: +1 206 965-6864 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 878-1510 -title: Junior Product Development Evangelist -userPassword: Password1 -uid: BouickN -givenName: Norstar -mail: BouickN@7eb3446796544055a8625bc9cff5db0c.bitwarden.com -carLicense: MHF2NY -departmentNumber: 6421 -employeeType: Normal -homePhone: +1 206 657-2899 -initials: N. B. -mobile: +1 206 399-8912 -pager: +1 206 480-3131 -roomNumber: 9819 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kapsch Bitton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kapsch Bitton -sn: Bitton -description: This is Kapsch Bitton's description -facsimileTelephoneNumber: +1 213 478-4203 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 690-5025 -title: Master Product Development Punk -userPassword: Password1 -uid: BittonK -givenName: Kapsch -mail: BittonK@bd7ed784957343358f080e4bf8b3e472.bitwarden.com -carLicense: 1HB5JR -departmentNumber: 3255 -employeeType: Normal -homePhone: +1 213 982-4095 -initials: K. B. -mobile: +1 213 220-3706 -pager: +1 213 688-3067 -roomNumber: 9792 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yoko Feder,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoko Feder -sn: Feder -description: This is Yoko Feder's description -facsimileTelephoneNumber: +1 818 282-7661 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 991-5015 -title: Associate Administrative Admin -userPassword: Password1 -uid: FederY -givenName: Yoko -mail: FederY@edf99b25a1c649749aeb3745c7ce07a0.bitwarden.com -carLicense: 7YKPU2 -departmentNumber: 9062 -employeeType: Normal -homePhone: +1 818 392-2218 -initials: Y. F. -mobile: +1 818 559-3583 -pager: +1 818 513-1523 -roomNumber: 9689 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebekkah Pelot -sn: Pelot -description: This is Rebekkah Pelot's description -facsimileTelephoneNumber: +1 213 601-9117 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 327-8963 -title: Chief Payroll President -userPassword: Password1 -uid: PelotR -givenName: Rebekkah -mail: PelotR@402d43c51a4446beb3be4fb34fdb725c.bitwarden.com -carLicense: KDJV38 -departmentNumber: 7775 -employeeType: Normal -homePhone: +1 213 572-9714 -initials: R. P. -mobile: +1 213 978-9164 -pager: +1 213 936-8300 -roomNumber: 9197 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eugine Werick,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eugine Werick -sn: Werick -description: This is Eugine Werick's description -facsimileTelephoneNumber: +1 804 376-3926 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 804 495-7309 -title: Supreme Human Resources Manager -userPassword: Password1 -uid: WerickE -givenName: Eugine -mail: WerickE@5466e2cfe74b454ca4ce7f08783c2376.bitwarden.com -carLicense: WU6O0W -departmentNumber: 8193 -employeeType: Normal -homePhone: +1 804 643-4841 -initials: E. W. -mobile: +1 804 538-5158 -pager: +1 804 146-7083 -roomNumber: 8554 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marley Newcomb,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marley Newcomb -sn: Newcomb -description: This is Marley Newcomb's description -facsimileTelephoneNumber: +1 213 373-1139 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 138-3993 -title: Chief Product Testing Figurehead -userPassword: Password1 -uid: NewcombM -givenName: Marley -mail: NewcombM@39afc87e8d7642cab0986ce57dd64310.bitwarden.com -carLicense: D9JIKO -departmentNumber: 2530 -employeeType: Employee -homePhone: +1 213 762-3655 -initials: M. N. -mobile: +1 213 433-9755 -pager: +1 213 102-1543 -roomNumber: 9327 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zhanna Lyons,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zhanna Lyons -sn: Lyons -description: This is Zhanna Lyons's description -facsimileTelephoneNumber: +1 408 304-5971 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 129-8567 -title: Junior Management Stooge -userPassword: Password1 -uid: LyonsZ -givenName: Zhanna -mail: LyonsZ@9eb282188d9c470a820f560ba43cb34c.bitwarden.com -carLicense: 28Y2TU -departmentNumber: 3478 -employeeType: Contract -homePhone: +1 408 715-5195 -initials: Z. L. -mobile: +1 408 229-1056 -pager: +1 408 866-4208 -roomNumber: 9320 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Desire Adam,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desire Adam -sn: Adam -description: This is Desire Adam's description -facsimileTelephoneNumber: +1 213 529-6291 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 213 373-1099 -title: Master Administrative Consultant -userPassword: Password1 -uid: AdamD -givenName: Desire -mail: AdamD@2fc71ac565f5494c88d9a22e99c366a9.bitwarden.com -carLicense: PVPGTN -departmentNumber: 1158 -employeeType: Normal -homePhone: +1 213 300-3941 -initials: D. A. -mobile: +1 213 182-1004 -pager: +1 213 949-6790 -roomNumber: 8301 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joni Dhir,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joni Dhir -sn: Dhir -description: This is Joni Dhir's description -facsimileTelephoneNumber: +1 206 806-1716 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 708-3739 -title: Junior Payroll Janitor -userPassword: Password1 -uid: DhirJ -givenName: Joni -mail: DhirJ@4e3272dfa10d49cf921e5550808b516c.bitwarden.com -carLicense: Y5V43W -departmentNumber: 1313 -employeeType: Employee -homePhone: +1 206 979-8725 -initials: J. D. -mobile: +1 206 257-5785 -pager: +1 206 936-8203 -roomNumber: 9668 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Quyen Boyle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quyen Boyle -sn: Boyle -description: This is Quyen Boyle's description -facsimileTelephoneNumber: +1 213 294-8947 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 580-8823 -title: Junior Product Development Janitor -userPassword: Password1 -uid: BoyleQ -givenName: Quyen -mail: BoyleQ@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com -carLicense: V0RE88 -departmentNumber: 6804 -employeeType: Normal -homePhone: +1 213 472-4253 -initials: Q. B. -mobile: +1 213 386-6107 -pager: +1 213 391-6871 -roomNumber: 9235 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailee ODwyer -sn: ODwyer -description: This is Ailee ODwyer's description -facsimileTelephoneNumber: +1 415 741-7592 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 558-9430 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: ODwyerA -givenName: Ailee -mail: ODwyerA@ed09d6145c6443eda98f0394646537ec.bitwarden.com -carLicense: Y7774A -departmentNumber: 3655 -employeeType: Contract -homePhone: +1 415 633-6654 -initials: A. O. -mobile: +1 415 946-3299 -pager: +1 415 324-5213 -roomNumber: 8742 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fallon Lavigne,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fallon Lavigne -sn: Lavigne -description: This is Fallon Lavigne's description -facsimileTelephoneNumber: +1 213 752-9788 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 591-4451 -title: Chief Administrative Dictator -userPassword: Password1 -uid: LavigneF -givenName: Fallon -mail: LavigneF@0798984bbb0c4179a1769a476df089f2.bitwarden.com -carLicense: L1IC0E -departmentNumber: 4912 -employeeType: Contract -homePhone: +1 213 800-9439 -initials: F. L. -mobile: +1 213 241-6875 -pager: +1 213 795-7845 -roomNumber: 9978 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aleda Kato,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aleda Kato -sn: Kato -description: This is Aleda Kato's description -facsimileTelephoneNumber: +1 206 571-1297 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 795-7298 -title: Associate Peons Mascot -userPassword: Password1 -uid: KatoA -givenName: Aleda -mail: KatoA@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com -carLicense: AE3GFL -departmentNumber: 4838 -employeeType: Contract -homePhone: +1 206 315-8448 -initials: A. K. -mobile: +1 206 326-4578 -pager: +1 206 652-4054 -roomNumber: 8571 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cristine Musser,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristine Musser -sn: Musser -description: This is Cristine Musser's description -facsimileTelephoneNumber: +1 415 679-2039 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 983-6931 -title: Master Peons Engineer -userPassword: Password1 -uid: MusserC -givenName: Cristine -mail: MusserC@021f182578104bf484110ac6631b5efa.bitwarden.com -carLicense: H1X51Q -departmentNumber: 9727 -employeeType: Employee -homePhone: +1 415 742-3454 -initials: C. M. -mobile: +1 415 286-7581 -pager: +1 415 161-1048 -roomNumber: 9392 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcelia OHeocha -sn: OHeocha -description: This is Marcelia OHeocha's description -facsimileTelephoneNumber: +1 213 111-6155 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 803-1861 -title: Master Product Development Technician -userPassword: Password1 -uid: OHeochaM -givenName: Marcelia -mail: OHeochaM@2508acc0090a42e782d940d4d8f7e99a.bitwarden.com -carLicense: SVUCLA -departmentNumber: 7933 -employeeType: Contract -homePhone: +1 213 459-6499 -initials: M. O. -mobile: +1 213 692-9938 -pager: +1 213 152-4857 -roomNumber: 9627 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shantee Tsao,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shantee Tsao -sn: Tsao -description: This is Shantee Tsao's description -facsimileTelephoneNumber: +1 213 689-9340 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 213 890-5366 -title: Associate Administrative Stooge -userPassword: Password1 -uid: TsaoS -givenName: Shantee -mail: TsaoS@7134af8f58034ab1b6da056722567020.bitwarden.com -carLicense: 87ML9L -departmentNumber: 4830 -employeeType: Contract -homePhone: +1 213 603-6359 -initials: S. T. -mobile: +1 213 525-8447 -pager: +1 213 942-2111 -roomNumber: 9242 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Phu Krowlek,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phu Krowlek -sn: Krowlek -description: This is Phu Krowlek's description -facsimileTelephoneNumber: +1 408 355-1102 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 396-7801 -title: Junior Human Resources Artist -userPassword: Password1 -uid: KrowlekP -givenName: Phu -mail: KrowlekP@9738e422f0a74193a7888d326771c9bc.bitwarden.com -carLicense: 90ITE4 -departmentNumber: 8660 -employeeType: Contract -homePhone: +1 408 553-4879 -initials: P. K. -mobile: +1 408 966-1090 -pager: +1 408 672-3341 -roomNumber: 8337 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Estrella Infocenter,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estrella Infocenter -sn: Infocenter -description: This is Estrella Infocenter's description -facsimileTelephoneNumber: +1 408 304-6050 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 881-8913 -title: Junior Payroll Punk -userPassword: Password1 -uid: InfocenE -givenName: Estrella -mail: InfocenE@3e88ff34a4594358ba2c438e74d99277.bitwarden.com -carLicense: F1U5BM -departmentNumber: 4422 -employeeType: Normal -homePhone: +1 408 575-4271 -initials: E. I. -mobile: +1 408 934-8804 -pager: +1 408 896-9350 -roomNumber: 9616 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeana Groetsema -sn: Groetsema -description: This is Jeana Groetsema's description -facsimileTelephoneNumber: +1 804 498-8891 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 571-6694 -title: Chief Product Testing Czar -userPassword: Password1 -uid: GroetseJ -givenName: Jeana -mail: GroetseJ@49e173c530254128b2fa7a55a9ce39c1.bitwarden.com -carLicense: 332D2L -departmentNumber: 7217 -employeeType: Normal -homePhone: +1 804 868-4314 -initials: J. G. -mobile: +1 804 914-4570 -pager: +1 804 129-2213 -roomNumber: 9270 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Steinar Mathur,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steinar Mathur -sn: Mathur -description: This is Steinar Mathur's description -facsimileTelephoneNumber: +1 408 421-9635 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 402-3310 -title: Chief Product Development Fellow -userPassword: Password1 -uid: MathurS -givenName: Steinar -mail: MathurS@4c46c0ccb3eb4998b4cbc47cae874ac9.bitwarden.com -carLicense: 3FKFEF -departmentNumber: 1085 -employeeType: Normal -homePhone: +1 408 205-2447 -initials: S. M. -mobile: +1 408 371-1839 -pager: +1 408 800-9581 -roomNumber: 8751 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rchisn Reiser -sn: Reiser -description: This is Rchisn Reiser's description -facsimileTelephoneNumber: +1 510 183-1021 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 510 368-5337 -title: Junior Product Testing Director -userPassword: Password1 -uid: ReiserR -givenName: Rchisn -mail: ReiserR@82cd13218ce14af8a30de1517f768932.bitwarden.com -carLicense: M1SRSM -departmentNumber: 2807 -employeeType: Contract -homePhone: +1 510 502-7645 -initials: R. R. -mobile: +1 510 626-7346 -pager: +1 510 403-7744 -roomNumber: 9636 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jayme Shemwell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jayme Shemwell -sn: Shemwell -description: This is Jayme Shemwell's description -facsimileTelephoneNumber: +1 804 477-4438 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 458-9457 -title: Junior Payroll Warrior -userPassword: Password1 -uid: ShemwelJ -givenName: Jayme -mail: ShemwelJ@d1f70e2814da436e8e729474e3ae0ca1.bitwarden.com -carLicense: FPDPKY -departmentNumber: 6385 -employeeType: Normal -homePhone: +1 804 528-6833 -initials: J. S. -mobile: +1 804 452-8493 -pager: +1 804 920-1421 -roomNumber: 9787 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Masha McGinn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Masha McGinn -sn: McGinn -description: This is Masha McGinn's description -facsimileTelephoneNumber: +1 818 577-1188 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 807-8845 -title: Associate Administrative Director -userPassword: Password1 -uid: McGinnM -givenName: Masha -mail: McGinnM@7caae22d0df6421e81f8b88b910cd3d3.bitwarden.com -carLicense: Y0W4PM -departmentNumber: 4207 -employeeType: Normal -homePhone: +1 818 291-9317 -initials: M. M. -mobile: +1 818 320-4878 -pager: +1 818 318-4586 -roomNumber: 9205 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PeyKee McMonagle -sn: McMonagle -description: This is PeyKee McMonagle's description -facsimileTelephoneNumber: +1 408 971-6383 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 408 857-1869 -title: Master Janitorial Dictator -userPassword: Password1 -uid: McMonagP -givenName: PeyKee -mail: McMonagP@8d9767327a3c45ac99e8c87493980bd0.bitwarden.com -carLicense: 6VCGTW -departmentNumber: 1978 -employeeType: Employee -homePhone: +1 408 823-1537 -initials: P. M. -mobile: +1 408 742-8142 -pager: +1 408 344-7191 -roomNumber: 9210 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Astrix Tiller,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Astrix Tiller -sn: Tiller -description: This is Astrix Tiller's description -facsimileTelephoneNumber: +1 206 832-6873 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 342-6871 -title: Supreme Peons Warrior -userPassword: Password1 -uid: TillerA -givenName: Astrix -mail: TillerA@fc7406e3c8e34fce9e4288bfe13798e9.bitwarden.com -carLicense: RJSH7M -departmentNumber: 3479 -employeeType: Employee -homePhone: +1 206 176-9934 -initials: A. T. -mobile: +1 206 197-7083 -pager: +1 206 658-8701 -roomNumber: 8516 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arlan Fadel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlan Fadel -sn: Fadel -description: This is Arlan Fadel's description -facsimileTelephoneNumber: +1 818 489-2259 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 818 561-8401 -title: Junior Management Grunt -userPassword: Password1 -uid: FadelA -givenName: Arlan -mail: FadelA@f3bc4de2ab8548c1a2d64ce3115e2db5.bitwarden.com -carLicense: S6E0TH -departmentNumber: 2653 -employeeType: Contract -homePhone: +1 818 465-4192 -initials: A. F. -mobile: +1 818 229-2226 -pager: +1 818 378-4922 -roomNumber: 9735 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JulieAnne Wardrop -sn: Wardrop -description: This is JulieAnne Wardrop's description -facsimileTelephoneNumber: +1 510 227-7399 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 843-1629 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: WardropJ -givenName: JulieAnne -mail: WardropJ@7731926b8eba477c82aacfea38c5fc13.bitwarden.com -carLicense: MXRQFG -departmentNumber: 4569 -employeeType: Employee -homePhone: +1 510 963-2365 -initials: J. W. -mobile: +1 510 509-6865 -pager: +1 510 956-6642 -roomNumber: 8667 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Siouxie Norgaard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siouxie Norgaard -sn: Norgaard -description: This is Siouxie Norgaard's description -facsimileTelephoneNumber: +1 415 148-8307 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 251-9518 -title: Associate Management Grunt -userPassword: Password1 -uid: NorgaarS -givenName: Siouxie -mail: NorgaarS@ec668ee22c6346d2882aef8dfcb8696b.bitwarden.com -carLicense: HPPNOD -departmentNumber: 7150 -employeeType: Employee -homePhone: +1 415 685-4168 -initials: S. N. -mobile: +1 415 930-4063 -pager: +1 415 641-5378 -roomNumber: 9062 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffanie DeFrancesco -sn: DeFrancesco -description: This is Tiffanie DeFrancesco's description -facsimileTelephoneNumber: +1 408 667-4976 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 935-7977 -title: Junior Administrative Technician -userPassword: Password1 -uid: DeFrancT -givenName: Tiffanie -mail: DeFrancT@cf0ec0264ca64fe98e19bc5f405333ac.bitwarden.com -carLicense: FS1P9L -departmentNumber: 4961 -employeeType: Normal -homePhone: +1 408 370-9485 -initials: T. D. -mobile: +1 408 649-7468 -pager: +1 408 768-2311 -roomNumber: 9312 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Phaedra Mavrou,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phaedra Mavrou -sn: Mavrou -description: This is Phaedra Mavrou's description -facsimileTelephoneNumber: +1 206 824-1800 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 298-9009 -title: Junior Peons Madonna -userPassword: Password1 -uid: MavrouP -givenName: Phaedra -mail: MavrouP@c88c546a41dd403183cf489cf47f2715.bitwarden.com -carLicense: 0LNLJA -departmentNumber: 3025 -employeeType: Normal -homePhone: +1 206 329-8927 -initials: P. M. -mobile: +1 206 765-2643 -pager: +1 206 869-1825 -roomNumber: 8611 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Thang Kerr,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thang Kerr -sn: Kerr -description: This is Thang Kerr's description -facsimileTelephoneNumber: +1 804 240-4944 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 601-6559 -title: Master Peons Fellow -userPassword: Password1 -uid: KerrT -givenName: Thang -mail: KerrT@999c25847f9849ce9a6f746d005bddef.bitwarden.com -carLicense: MO4EN7 -departmentNumber: 3743 -employeeType: Contract -homePhone: +1 804 262-9554 -initials: T. K. -mobile: +1 804 252-3205 -pager: +1 804 195-4356 -roomNumber: 9305 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Helsa Cau,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helsa Cau -sn: Cau -description: This is Helsa Cau's description -facsimileTelephoneNumber: +1 510 266-9092 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 622-1788 -title: Associate Management Warrior -userPassword: Password1 -uid: CauH -givenName: Helsa -mail: CauH@cc71e71454d64842b764308435f8b9ce.bitwarden.com -carLicense: JWHS2Y -departmentNumber: 6671 -employeeType: Employee -homePhone: +1 510 270-4932 -initials: H. C. -mobile: +1 510 300-5134 -pager: +1 510 870-3831 -roomNumber: 9709 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dyana Tchir,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyana Tchir -sn: Tchir -description: This is Dyana Tchir's description -facsimileTelephoneNumber: +1 408 895-1055 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 417-4002 -title: Chief Management Vice President -userPassword: Password1 -uid: TchirD -givenName: Dyana -mail: TchirD@7b42a22455f94b9392fcbdbd3455eba3.bitwarden.com -carLicense: 5KGB51 -departmentNumber: 4479 -employeeType: Employee -homePhone: +1 408 598-3572 -initials: D. T. -mobile: +1 408 730-7644 -pager: +1 408 903-2691 -roomNumber: 8243 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elga Hrenyk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elga Hrenyk -sn: Hrenyk -description: This is Elga Hrenyk's description -facsimileTelephoneNumber: +1 206 188-3326 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 213-6251 -title: Junior Payroll Warrior -userPassword: Password1 -uid: HrenykE -givenName: Elga -mail: HrenykE@348e203028124b55ac20e45b299ae842.bitwarden.com -carLicense: DWH58U -departmentNumber: 1835 -employeeType: Normal -homePhone: +1 206 265-7664 -initials: E. H. -mobile: +1 206 913-3136 -pager: +1 206 331-7908 -roomNumber: 9024 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Brooks Helgeland,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brooks Helgeland -sn: Helgeland -description: This is Brooks Helgeland's description -facsimileTelephoneNumber: +1 510 256-9039 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 517-8535 -title: Associate Management Grunt -userPassword: Password1 -uid: HelgelaB -givenName: Brooks -mail: HelgelaB@59d0d0528b8d43efbf3f6b95ae91b41d.bitwarden.com -carLicense: DKYCPE -departmentNumber: 9239 -employeeType: Contract -homePhone: +1 510 292-9030 -initials: B. H. -mobile: +1 510 600-4930 -pager: +1 510 142-1262 -roomNumber: 9029 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Toshi Ircmer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toshi Ircmer -sn: Ircmer -description: This is Toshi Ircmer's description -facsimileTelephoneNumber: +1 408 798-1433 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 183-4395 -title: Master Administrative Technician -userPassword: Password1 -uid: IrcmerT -givenName: Toshi -mail: IrcmerT@0ae37e3d8fa14ddaa3b8f54015598091.bitwarden.com -carLicense: 2A6VGY -departmentNumber: 6053 -employeeType: Employee -homePhone: +1 408 240-8409 -initials: T. I. -mobile: +1 408 996-9755 -pager: +1 408 403-9451 -roomNumber: 9648 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rizzo Ohmaru -sn: Ohmaru -description: This is Rizzo Ohmaru's description -facsimileTelephoneNumber: +1 213 991-5118 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 750-5619 -title: Supreme Peons Mascot -userPassword: Password1 -uid: OhmaruR -givenName: Rizzo -mail: OhmaruR@1726f5bfacd044bf871463e64c567d5e.bitwarden.com -carLicense: PBPMK5 -departmentNumber: 3616 -employeeType: Contract -homePhone: +1 213 137-2365 -initials: R. O. -mobile: +1 213 273-3204 -pager: +1 213 696-1853 -roomNumber: 9169 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yosuf Diaconu,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yosuf Diaconu -sn: Diaconu -description: This is Yosuf Diaconu's description -facsimileTelephoneNumber: +1 510 836-4036 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 845-3147 -title: Master Peons Visionary -userPassword: Password1 -uid: DiaconuY -givenName: Yosuf -mail: DiaconuY@2f0e638056364f0ebcf3676022d443c8.bitwarden.com -carLicense: 292FQT -departmentNumber: 7861 -employeeType: Normal -homePhone: +1 510 533-3126 -initials: Y. D. -mobile: +1 510 244-6784 -pager: +1 510 331-7425 -roomNumber: 9018 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nomi Kielstra,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nomi Kielstra -sn: Kielstra -description: This is Nomi Kielstra's description -facsimileTelephoneNumber: +1 206 987-2670 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 778-9590 -title: Associate Administrative Assistant -userPassword: Password1 -uid: KielstrN -givenName: Nomi -mail: KielstrN@e5a014d6d0a246bab1688f8742395120.bitwarden.com -carLicense: L8D4YR -departmentNumber: 6624 -employeeType: Contract -homePhone: +1 206 760-2832 -initials: N. K. -mobile: +1 206 689-3222 -pager: +1 206 744-8209 -roomNumber: 8710 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Carolyn Sanche,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolyn Sanche -sn: Sanche -description: This is Carolyn Sanche's description -facsimileTelephoneNumber: +1 213 421-5255 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 802-1444 -title: Master Peons Writer -userPassword: Password1 -uid: SancheC -givenName: Carolyn -mail: SancheC@7670182abb394f41a5633ad118cf9427.bitwarden.com -carLicense: 39OU15 -departmentNumber: 6285 -employeeType: Contract -homePhone: +1 213 116-8417 -initials: C. S. -mobile: +1 213 862-6100 -pager: +1 213 609-8387 -roomNumber: 8023 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marj Anker,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marj Anker -sn: Anker -description: This is Marj Anker's description -facsimileTelephoneNumber: +1 213 659-1800 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 762-8036 -title: Master Janitorial Director -userPassword: Password1 -uid: AnkerM -givenName: Marj -mail: AnkerM@10c7f32d495b44929e9653824155ab35.bitwarden.com -carLicense: 3A6GMP -departmentNumber: 9605 -employeeType: Normal -homePhone: +1 213 724-5244 -initials: M. A. -mobile: +1 213 136-6852 -pager: +1 213 242-4501 -roomNumber: 8568 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Agneta Gundlach,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agneta Gundlach -sn: Gundlach -description: This is Agneta Gundlach's description -facsimileTelephoneNumber: +1 213 340-7830 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 673-9601 -title: Chief Peons Developer -userPassword: Password1 -uid: GundlacA -givenName: Agneta -mail: GundlacA@51229efcbb5c42119b299e0a2768aeae.bitwarden.com -carLicense: 3OLRDC -departmentNumber: 3454 -employeeType: Employee -homePhone: +1 213 531-6500 -initials: A. G. -mobile: +1 213 601-2515 -pager: +1 213 605-6531 -roomNumber: 9702 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jeffery Pafilis,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeffery Pafilis -sn: Pafilis -description: This is Jeffery Pafilis's description -facsimileTelephoneNumber: +1 415 368-4337 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 308-1136 -title: Junior Management Grunt -userPassword: Password1 -uid: PafilisJ -givenName: Jeffery -mail: PafilisJ@c4e315e8ab0343648ac206c0fcb55300.bitwarden.com -carLicense: I0FDV9 -departmentNumber: 4238 -employeeType: Normal -homePhone: +1 415 411-5334 -initials: J. P. -mobile: +1 415 324-5860 -pager: +1 415 556-9305 -roomNumber: 9915 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Isoft Buchanan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isoft Buchanan -sn: Buchanan -description: This is Isoft Buchanan's description -facsimileTelephoneNumber: +1 213 494-1637 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 574-9285 -title: Master Administrative Grunt -userPassword: Password1 -uid: BuchanaI -givenName: Isoft -mail: BuchanaI@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com -carLicense: Y572CB -departmentNumber: 2624 -employeeType: Contract -homePhone: +1 213 464-9496 -initials: I. B. -mobile: +1 213 192-6378 -pager: +1 213 629-1779 -roomNumber: 9949 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cassaundra Gerenser,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassaundra Gerenser -sn: Gerenser -description: This is Cassaundra Gerenser's description -facsimileTelephoneNumber: +1 206 955-8885 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 613-2356 -title: Associate Management Punk -userPassword: Password1 -uid: GerenseC -givenName: Cassaundra -mail: GerenseC@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com -carLicense: GWJP08 -departmentNumber: 1205 -employeeType: Employee -homePhone: +1 206 934-4246 -initials: C. G. -mobile: +1 206 245-9787 -pager: +1 206 547-5913 -roomNumber: 9956 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlyn Rourk -sn: Rourk -description: This is Arlyn Rourk's description -facsimileTelephoneNumber: +1 510 183-9628 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 565-4025 -title: Master Human Resources Technician -userPassword: Password1 -uid: RourkA -givenName: Arlyn -mail: RourkA@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com -carLicense: RAEG57 -departmentNumber: 8285 -employeeType: Normal -homePhone: +1 510 144-5756 -initials: A. R. -mobile: +1 510 877-3524 -pager: +1 510 889-2760 -roomNumber: 9785 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Roberta Rorie,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roberta Rorie -sn: Rorie -description: This is Roberta Rorie's description -facsimileTelephoneNumber: +1 804 502-3419 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 760-8598 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: RorieR -givenName: Roberta -mail: RorieR@42dc5c7bd0a9441fa8defd9c17a20190.bitwarden.com -carLicense: 015WO0 -departmentNumber: 1436 -employeeType: Employee -homePhone: +1 804 170-5158 -initials: R. R. -mobile: +1 804 573-3935 -pager: +1 804 274-5907 -roomNumber: 9821 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bliss Fahey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bliss Fahey -sn: Fahey -description: This is Bliss Fahey's description -facsimileTelephoneNumber: +1 804 574-1508 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 172-5131 -title: Master Product Development Manager -userPassword: Password1 -uid: FaheyB -givenName: Bliss -mail: FaheyB@60bda5017d9d4f298f75b11882690433.bitwarden.com -carLicense: FCSNL5 -departmentNumber: 7134 -employeeType: Employee -homePhone: +1 804 680-7060 -initials: B. F. -mobile: +1 804 428-6681 -pager: +1 804 170-5389 -roomNumber: 8426 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pivert JodoinStJean -sn: JodoinStJean -description: This is Pivert JodoinStJean's description -facsimileTelephoneNumber: +1 408 700-5471 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 726-8285 -title: Chief Peons Artist -userPassword: Password1 -uid: JodoinSP -givenName: Pivert -mail: JodoinSP@98bc3f5d71914c17aba390cbd1fb2317.bitwarden.com -carLicense: 24BWJR -departmentNumber: 6733 -employeeType: Employee -homePhone: +1 408 419-1614 -initials: P. J. -mobile: +1 408 303-9057 -pager: +1 408 670-9687 -roomNumber: 8075 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hafeezah Bombardier -sn: Bombardier -description: This is Hafeezah Bombardier's description -facsimileTelephoneNumber: +1 804 408-9126 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 895-8809 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: BombardH -givenName: Hafeezah -mail: BombardH@de898a326d21476c9afc54d7a723d91b.bitwarden.com -carLicense: 4NML3O -departmentNumber: 7403 -employeeType: Contract -homePhone: +1 804 546-3469 -initials: H. B. -mobile: +1 804 979-8103 -pager: +1 804 759-9556 -roomNumber: 9714 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Wargnier Deployment,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wargnier Deployment -sn: Deployment -description: This is Wargnier Deployment's description -facsimileTelephoneNumber: +1 804 698-2962 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 568-5955 -title: Supreme Management Punk -userPassword: Password1 -uid: DeploymW -givenName: Wargnier -mail: DeploymW@22acfb768c09448b9b9c3d7bd8e3a389.bitwarden.com -carLicense: 579PD0 -departmentNumber: 6961 -employeeType: Employee -homePhone: +1 804 363-5482 -initials: W. D. -mobile: +1 804 345-4197 -pager: +1 804 189-9578 -roomNumber: 9262 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Orsa Brunsting,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orsa Brunsting -sn: Brunsting -description: This is Orsa Brunsting's description -facsimileTelephoneNumber: +1 213 690-5773 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 615-7783 -title: Supreme Peons President -userPassword: Password1 -uid: BrunstiO -givenName: Orsa -mail: BrunstiO@484147050d834a1da350db4c28e9f45b.bitwarden.com -carLicense: 222VJB -departmentNumber: 5800 -employeeType: Employee -homePhone: +1 213 741-2322 -initials: O. B. -mobile: +1 213 421-3943 -pager: +1 213 485-8738 -roomNumber: 8673 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gudrun Yassa,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gudrun Yassa -sn: Yassa -description: This is Gudrun Yassa's description -facsimileTelephoneNumber: +1 415 449-9091 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 202-1681 -title: Chief Administrative Czar -userPassword: Password1 -uid: YassaG -givenName: Gudrun -mail: YassaG@217ec5edfeed4e93a10ae2e601d2972a.bitwarden.com -carLicense: 3TKLN8 -departmentNumber: 1360 -employeeType: Employee -homePhone: +1 415 734-1072 -initials: G. Y. -mobile: +1 415 281-7763 -pager: +1 415 450-1524 -roomNumber: 9036 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaquenette Nielson -sn: Nielson -description: This is Jaquenette Nielson's description -facsimileTelephoneNumber: +1 804 646-1251 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 777-6268 -title: Chief Janitorial Architect -userPassword: Password1 -uid: NielsonJ -givenName: Jaquenette -mail: NielsonJ@6eea686c67fb4ec88a09f208c487f7be.bitwarden.com -carLicense: GWUL25 -departmentNumber: 4969 -employeeType: Employee -homePhone: +1 804 618-4903 -initials: J. N. -mobile: +1 804 883-6323 -pager: +1 804 626-7179 -roomNumber: 8655 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AntonPhuoc Tyndall -sn: Tyndall -description: This is AntonPhuoc Tyndall's description -facsimileTelephoneNumber: +1 818 814-4819 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 241-8950 -title: Chief Management Engineer -userPassword: Password1 -uid: TyndallA -givenName: AntonPhuoc -mail: TyndallA@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com -carLicense: IN58PD -departmentNumber: 9665 -employeeType: Contract -homePhone: +1 818 714-9954 -initials: A. T. -mobile: +1 818 768-4586 -pager: +1 818 536-5877 -roomNumber: 8080 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Damon Bradbury,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Damon Bradbury -sn: Bradbury -description: This is Damon Bradbury's description -facsimileTelephoneNumber: +1 213 947-4028 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 575-5825 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: BradburD -givenName: Damon -mail: BradburD@c5677bf046324d648a7018e163260369.bitwarden.com -carLicense: LBI6IB -departmentNumber: 7694 -employeeType: Contract -homePhone: +1 213 176-5485 -initials: D. B. -mobile: +1 213 851-7892 -pager: +1 213 616-3851 -roomNumber: 9334 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheree ProgramOffice -sn: ProgramOffice -description: This is Sheree ProgramOffice's description -facsimileTelephoneNumber: +1 818 643-6247 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 383-9014 -title: Chief Peons Vice President -userPassword: Password1 -uid: ProgramS -givenName: Sheree -mail: ProgramS@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com -carLicense: OBTN7N -departmentNumber: 9377 -employeeType: Normal -homePhone: +1 818 774-9508 -initials: S. P. -mobile: +1 818 463-4753 -pager: +1 818 555-5948 -roomNumber: 8201 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Onette Garguilo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Onette Garguilo -sn: Garguilo -description: This is Onette Garguilo's description -facsimileTelephoneNumber: +1 206 417-2876 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 163-9034 -title: Supreme Peons Technician -userPassword: Password1 -uid: GarguilO -givenName: Onette -mail: GarguilO@f721dbef06364385bb5bd030d8447566.bitwarden.com -carLicense: R95RE9 -departmentNumber: 7208 -employeeType: Contract -homePhone: +1 206 674-3146 -initials: O. G. -mobile: +1 206 305-7631 -pager: +1 206 362-7940 -roomNumber: 8643 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Meridel Dahl,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meridel Dahl -sn: Dahl -description: This is Meridel Dahl's description -facsimileTelephoneNumber: +1 408 753-6096 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 958-4546 -title: Chief Management Janitor -userPassword: Password1 -uid: DahlM -givenName: Meridel -mail: DahlM@3eadf1668d9548a8a0a9a2df5d767d49.bitwarden.com -carLicense: 4K9GGY -departmentNumber: 5078 -employeeType: Normal -homePhone: +1 408 979-6969 -initials: M. D. -mobile: +1 408 890-6500 -pager: +1 408 437-9763 -roomNumber: 8150 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clem Gallagher,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clem Gallagher -sn: Gallagher -description: This is Clem Gallagher's description -facsimileTelephoneNumber: +1 213 434-9569 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 722-4370 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: GallaghC -givenName: Clem -mail: GallaghC@283ec365fe654c3fba136ca1c0a944d2.bitwarden.com -carLicense: 5F4H2B -departmentNumber: 8351 -employeeType: Normal -homePhone: +1 213 620-9312 -initials: C. G. -mobile: +1 213 190-6148 -pager: +1 213 632-1107 -roomNumber: 9124 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lanni Totti,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lanni Totti -sn: Totti -description: This is Lanni Totti's description -facsimileTelephoneNumber: +1 213 263-1564 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 154-9656 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: TottiL -givenName: Lanni -mail: TottiL@42ad681604354ebd8ba7299c92bab329.bitwarden.com -carLicense: O86LUG -departmentNumber: 1977 -employeeType: Contract -homePhone: +1 213 513-9220 -initials: L. T. -mobile: +1 213 112-1464 -pager: +1 213 983-9041 -roomNumber: 8405 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Robertson Soh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robertson Soh -sn: Soh -description: This is Robertson Soh's description -facsimileTelephoneNumber: +1 510 271-3411 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 510 566-6359 -title: Master Product Development Writer -userPassword: Password1 -uid: SohR -givenName: Robertson -mail: SohR@790b795bf7b24cf6af4ced64b738e341.bitwarden.com -carLicense: 65W8P3 -departmentNumber: 1309 -employeeType: Normal -homePhone: +1 510 746-6435 -initials: R. S. -mobile: +1 510 837-1498 -pager: +1 510 911-3508 -roomNumber: 9878 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maegan Nakamura -sn: Nakamura -description: This is Maegan Nakamura's description -facsimileTelephoneNumber: +1 804 247-2108 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 185-1085 -title: Junior Human Resources Evangelist -userPassword: Password1 -uid: NakamurM -givenName: Maegan -mail: NakamurM@753b48fb7ffe43dd87736153647baa4b.bitwarden.com -carLicense: W418PY -departmentNumber: 8301 -employeeType: Normal -homePhone: +1 804 154-8792 -initials: M. N. -mobile: +1 804 147-2858 -pager: +1 804 246-4482 -roomNumber: 9763 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pavia Costen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pavia Costen -sn: Costen -description: This is Pavia Costen's description -facsimileTelephoneNumber: +1 206 681-5655 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 211-7662 -title: Chief Administrative Czar -userPassword: Password1 -uid: CostenP -givenName: Pavia -mail: CostenP@8187109cbba7441ab35098b49dbd1de9.bitwarden.com -carLicense: FKLXBP -departmentNumber: 5148 -employeeType: Employee -homePhone: +1 206 677-8951 -initials: P. C. -mobile: +1 206 173-2801 -pager: +1 206 235-7423 -roomNumber: 8955 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karyn Holz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karyn Holz -sn: Holz -description: This is Karyn Holz's description -facsimileTelephoneNumber: +1 206 340-4865 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 253-2482 -title: Associate Administrative Technician -userPassword: Password1 -uid: HolzK -givenName: Karyn -mail: HolzK@bb08aadb4193484cae12aab63b02863d.bitwarden.com -carLicense: 5IEBEE -departmentNumber: 3679 -employeeType: Contract -homePhone: +1 206 817-2329 -initials: K. H. -mobile: +1 206 173-6787 -pager: +1 206 917-8341 -roomNumber: 8559 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ikram Thiel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ikram Thiel -sn: Thiel -description: This is Ikram Thiel's description -facsimileTelephoneNumber: +1 213 452-3200 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 656-2685 -title: Junior Payroll Stooge -userPassword: Password1 -uid: ThielI -givenName: Ikram -mail: ThielI@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com -carLicense: POEHB8 -departmentNumber: 4034 -employeeType: Normal -homePhone: +1 213 763-9898 -initials: I. T. -mobile: +1 213 701-4496 -pager: +1 213 698-4539 -roomNumber: 9936 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alkarim Hiraki -sn: Hiraki -description: This is Alkarim Hiraki's description -facsimileTelephoneNumber: +1 415 717-6592 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 679-7482 -title: Associate Administrative President -userPassword: Password1 -uid: HirakiA -givenName: Alkarim -mail: HirakiA@6b01ea5296ae43ddbca168736ac18b91.bitwarden.com -carLicense: J4PYMQ -departmentNumber: 4105 -employeeType: Normal -homePhone: +1 415 101-4231 -initials: A. H. -mobile: +1 415 543-5938 -pager: +1 415 565-6264 -roomNumber: 8358 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrzej Sylvie -sn: Sylvie -description: This is Andrzej Sylvie's description -facsimileTelephoneNumber: +1 408 117-9983 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 408 827-5189 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: SylvieA -givenName: Andrzej -mail: SylvieA@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com -carLicense: CUVYNS -departmentNumber: 5297 -employeeType: Employee -homePhone: +1 408 472-9362 -initials: A. S. -mobile: +1 408 345-9411 -pager: +1 408 660-4843 -roomNumber: 8652 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ladan Fabrizio,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ladan Fabrizio -sn: Fabrizio -description: This is Ladan Fabrizio's description -facsimileTelephoneNumber: +1 804 851-5644 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 728-7007 -title: Supreme Peons Czar -userPassword: Password1 -uid: FabriziL -givenName: Ladan -mail: FabriziL@a2ce9e15b99944e89da6ac3d6191a31a.bitwarden.com -carLicense: MVT0PJ -departmentNumber: 2027 -employeeType: Contract -homePhone: +1 804 283-5489 -initials: L. F. -mobile: +1 804 142-5620 -pager: +1 804 836-8071 -roomNumber: 9711 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Leeanne Credille,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leeanne Credille -sn: Credille -description: This is Leeanne Credille's description -facsimileTelephoneNumber: +1 510 284-6504 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 510 550-9337 -title: Associate Product Testing Director -userPassword: Password1 -uid: CredillL -givenName: Leeanne -mail: CredillL@e8711dcc34d6494b9af82b382ecdea7d.bitwarden.com -carLicense: T1H3W2 -departmentNumber: 6863 -employeeType: Employee -homePhone: +1 510 382-2975 -initials: L. C. -mobile: +1 510 357-3196 -pager: +1 510 234-4412 -roomNumber: 9533 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Augusto Aguiar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Augusto Aguiar -sn: Aguiar -description: This is Augusto Aguiar's description -facsimileTelephoneNumber: +1 510 164-7955 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 220-6155 -title: Associate Management Dictator -userPassword: Password1 -uid: AguiarA -givenName: Augusto -mail: AguiarA@4b32479366c74b46b2b68466f59bae46.bitwarden.com -carLicense: UJ1N5I -departmentNumber: 4896 -employeeType: Contract -homePhone: +1 510 850-3413 -initials: A. A. -mobile: +1 510 717-1534 -pager: +1 510 669-6712 -roomNumber: 8072 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gayl IBNTAS,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gayl IBNTAS -sn: IBNTAS -description: This is Gayl IBNTAS's description -facsimileTelephoneNumber: +1 206 789-7877 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 766-8830 -title: Supreme Peons Admin -userPassword: Password1 -uid: IBNTASG -givenName: Gayl -mail: IBNTASG@f7752e330a264f1884c22f0f347f41b4.bitwarden.com -carLicense: 1LAITG -departmentNumber: 8996 -employeeType: Normal -homePhone: +1 206 166-5570 -initials: G. I. -mobile: +1 206 234-8663 -pager: +1 206 601-4969 -roomNumber: 8453 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Painterson Watkinson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Painterson Watkinson -sn: Watkinson -description: This is Painterson Watkinson's description -facsimileTelephoneNumber: +1 206 551-2502 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 920-2456 -title: Master Administrative Czar -userPassword: Password1 -uid: WatkinsP -givenName: Painterson -mail: WatkinsP@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com -carLicense: ICVTUF -departmentNumber: 4575 -employeeType: Employee -homePhone: +1 206 380-1311 -initials: P. W. -mobile: +1 206 820-2600 -pager: +1 206 119-2602 -roomNumber: 9669 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jagjit Radovnikovic -sn: Radovnikovic -description: This is Jagjit Radovnikovic's description -facsimileTelephoneNumber: +1 818 121-5216 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 629-7255 -title: Supreme Payroll Sales Rep -userPassword: Password1 -uid: RadovniJ -givenName: Jagjit -mail: RadovniJ@c7ac29b8c7544beabc5b51db5b6a9b3a.bitwarden.com -carLicense: 5QW58Q -departmentNumber: 3017 -employeeType: Employee -homePhone: +1 818 335-5540 -initials: J. R. -mobile: +1 818 684-6122 -pager: +1 818 746-4732 -roomNumber: 9981 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kieran Copley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kieran Copley -sn: Copley -description: This is Kieran Copley's description -facsimileTelephoneNumber: +1 213 489-2801 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 693-6620 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: CopleyK -givenName: Kieran -mail: CopleyK@6ba6fd011294489da26fcecac46b96da.bitwarden.com -carLicense: Q3J5DG -departmentNumber: 4796 -employeeType: Contract -homePhone: +1 213 493-6334 -initials: K. C. -mobile: +1 213 742-2235 -pager: +1 213 522-2171 -roomNumber: 9120 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Othilie Sconzo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othilie Sconzo -sn: Sconzo -description: This is Othilie Sconzo's description -facsimileTelephoneNumber: +1 415 204-6412 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 272-3087 -title: Junior Peons Manager -userPassword: Password1 -uid: SconzoO -givenName: Othilie -mail: SconzoO@726a27d8fd0d444e9b0592ed813a614a.bitwarden.com -carLicense: PEIDE9 -departmentNumber: 6502 -employeeType: Normal -homePhone: +1 415 439-7244 -initials: O. S. -mobile: +1 415 581-8044 -pager: +1 415 113-5844 -roomNumber: 8471 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ottawa Schieber -sn: Schieber -description: This is Ottawa Schieber's description -facsimileTelephoneNumber: +1 206 488-9483 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 570-7685 -title: Chief Human Resources Manager -userPassword: Password1 -uid: SchiebeO -givenName: Ottawa -mail: SchiebeO@d8522133168344ce827a4130e7d16436.bitwarden.com -carLicense: K7JCM1 -departmentNumber: 1116 -employeeType: Contract -homePhone: +1 206 838-4773 -initials: O. S. -mobile: +1 206 440-5626 -pager: +1 206 879-2953 -roomNumber: 8977 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Raju Sellars,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raju Sellars -sn: Sellars -description: This is Raju Sellars's description -facsimileTelephoneNumber: +1 213 383-2768 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 783-4900 -title: Chief Payroll Fellow -userPassword: Password1 -uid: SellarsR -givenName: Raju -mail: SellarsR@a3f707626d6147889e378c357f0c4921.bitwarden.com -carLicense: B3FMNW -departmentNumber: 8237 -employeeType: Contract -homePhone: +1 213 427-7385 -initials: R. S. -mobile: +1 213 974-9934 -pager: +1 213 383-4200 -roomNumber: 8177 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carly Kammerer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carly Kammerer -sn: Kammerer -description: This is Carly Kammerer's description -facsimileTelephoneNumber: +1 213 578-4574 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 970-5794 -title: Master Janitorial Sales Rep -userPassword: Password1 -uid: KammereC -givenName: Carly -mail: KammereC@bd86eafb5d8348f2aca6e7dd76b8a0a1.bitwarden.com -carLicense: RT1NMA -departmentNumber: 4540 -employeeType: Normal -homePhone: +1 213 475-3190 -initials: C. K. -mobile: +1 213 263-7490 -pager: +1 213 198-6877 -roomNumber: 9953 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dian Rhoads,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dian Rhoads -sn: Rhoads -description: This is Dian Rhoads's description -facsimileTelephoneNumber: +1 804 986-8096 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 904-8595 -title: Chief Administrative Dictator -userPassword: Password1 -uid: RhoadsD -givenName: Dian -mail: RhoadsD@4288404d8e88496eb1da71471cd4a940.bitwarden.com -carLicense: 5EB9OL -departmentNumber: 6880 -employeeType: Contract -homePhone: +1 804 872-1138 -initials: D. R. -mobile: +1 804 376-3143 -pager: +1 804 797-7085 -roomNumber: 8675 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Utpala Weldon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Utpala Weldon -sn: Weldon -description: This is Utpala Weldon's description -facsimileTelephoneNumber: +1 213 518-3179 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 140-3458 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: WeldonU -givenName: Utpala -mail: WeldonU@c99bb7173b5043c2a474937e225abb28.bitwarden.com -carLicense: 4FNIFC -departmentNumber: 9243 -employeeType: Contract -homePhone: +1 213 422-3737 -initials: U. W. -mobile: +1 213 944-7429 -pager: +1 213 515-4588 -roomNumber: 8708 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elva JodoinStJean -sn: JodoinStJean -description: This is Elva JodoinStJean's description -facsimileTelephoneNumber: +1 510 548-7290 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 211-1212 -title: Supreme Product Development Artist -userPassword: Password1 -uid: JodoinSE -givenName: Elva -mail: JodoinSE@37b876b4a91540b4b71770c7a49beee8.bitwarden.com -carLicense: YLDHRN -departmentNumber: 7426 -employeeType: Normal -homePhone: +1 510 608-1287 -initials: E. J. -mobile: +1 510 594-3653 -pager: +1 510 982-8873 -roomNumber: 8381 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Thornton McDermott,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thornton McDermott -sn: McDermott -description: This is Thornton McDermott's description -facsimileTelephoneNumber: +1 804 424-6594 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 949-4051 -title: Junior Product Development Vice President -userPassword: Password1 -uid: McDermoT -givenName: Thornton -mail: McDermoT@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com -carLicense: IHGJ7G -departmentNumber: 6623 -employeeType: Normal -homePhone: +1 804 273-2874 -initials: T. M. -mobile: +1 804 369-3381 -pager: +1 804 482-1093 -roomNumber: 8912 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Juditha Shirai,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juditha Shirai -sn: Shirai -description: This is Juditha Shirai's description -facsimileTelephoneNumber: +1 804 673-2287 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 186-7727 -title: Master Janitorial Director -userPassword: Password1 -uid: ShiraiJ -givenName: Juditha -mail: ShiraiJ@95965185925a4793bf90f83b6e0b2310.bitwarden.com -carLicense: BVY8NB -departmentNumber: 5252 -employeeType: Contract -homePhone: +1 804 756-6348 -initials: J. S. -mobile: +1 804 566-1649 -pager: +1 804 720-2453 -roomNumber: 9275 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nijen Nevardauskis -sn: Nevardauskis -description: This is Nijen Nevardauskis's description -facsimileTelephoneNumber: +1 818 712-5636 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 653-9474 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: NevardaN -givenName: Nijen -mail: NevardaN@341c2a7aa79d4aa1aa97b332acebc155.bitwarden.com -carLicense: 57NFFK -departmentNumber: 8914 -employeeType: Employee -homePhone: +1 818 810-9064 -initials: N. N. -mobile: +1 818 540-7639 -pager: +1 818 863-8491 -roomNumber: 8863 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lauri Ramakesavan -sn: Ramakesavan -description: This is Lauri Ramakesavan's description -facsimileTelephoneNumber: +1 213 371-1197 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 222-6764 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: RamakesL -givenName: Lauri -mail: RamakesL@c9e737b9c70b4882afff21061f6d5241.bitwarden.com -carLicense: 1JBBH7 -departmentNumber: 9951 -employeeType: Normal -homePhone: +1 213 936-9234 -initials: L. R. -mobile: +1 213 274-1426 -pager: +1 213 162-8440 -roomNumber: 9218 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Wini Flynn,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wini Flynn -sn: Flynn -description: This is Wini Flynn's description -facsimileTelephoneNumber: +1 213 431-1990 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 360-9574 -title: Master Human Resources Technician -userPassword: Password1 -uid: FlynnW -givenName: Wini -mail: FlynnW@97e455d14de64fb1ac625485af466bd2.bitwarden.com -carLicense: WHXYT2 -departmentNumber: 9125 -employeeType: Employee -homePhone: +1 213 176-3856 -initials: W. F. -mobile: +1 213 964-3847 -pager: +1 213 633-7398 -roomNumber: 9803 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Open Simhan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Open Simhan -sn: Simhan -description: This is Open Simhan's description -facsimileTelephoneNumber: +1 415 722-6366 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 952-1049 -title: Master Product Testing Czar -userPassword: Password1 -uid: SimhanO -givenName: Open -mail: SimhanO@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com -carLicense: 4D9MII -departmentNumber: 6954 -employeeType: Normal -homePhone: +1 415 671-2971 -initials: O. S. -mobile: +1 415 398-5877 -pager: +1 415 411-6108 -roomNumber: 9621 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maala Ufomadu -sn: Ufomadu -description: This is Maala Ufomadu's description -facsimileTelephoneNumber: +1 510 538-6496 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 885-7632 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: UfomaduM -givenName: Maala -mail: UfomaduM@3dedccc8ea03468b9d15ac11ca05c230.bitwarden.com -carLicense: GX8P41 -departmentNumber: 2641 -employeeType: Employee -homePhone: +1 510 800-6448 -initials: M. U. -mobile: +1 510 904-6649 -pager: +1 510 661-5087 -roomNumber: 8985 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Adelina Grigsby,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adelina Grigsby -sn: Grigsby -description: This is Adelina Grigsby's description -facsimileTelephoneNumber: +1 213 944-8825 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 323-1075 -title: Junior Management Artist -userPassword: Password1 -uid: GrigsbyA -givenName: Adelina -mail: GrigsbyA@2a76555db2804fcd904317c1fab7d4f7.bitwarden.com -carLicense: XA1HM7 -departmentNumber: 7081 -employeeType: Employee -homePhone: +1 213 610-1722 -initials: A. G. -mobile: +1 213 883-7556 -pager: +1 213 886-3901 -roomNumber: 9879 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imtaz Sanderson -sn: Sanderson -description: This is Imtaz Sanderson's description -facsimileTelephoneNumber: +1 510 721-5016 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 508-2867 -title: Associate Product Testing Technician -userPassword: Password1 -uid: SandersI -givenName: Imtaz -mail: SandersI@01d981966ccd4e18a1de23880ee9b91c.bitwarden.com -carLicense: 9A0AWT -departmentNumber: 7387 -employeeType: Normal -homePhone: +1 510 427-2346 -initials: I. S. -mobile: +1 510 445-6822 -pager: +1 510 125-1838 -roomNumber: 8047 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yolanda Pendergrass -sn: Pendergrass -description: This is Yolanda Pendergrass's description -facsimileTelephoneNumber: +1 206 982-7204 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 206 496-5239 -title: Junior Payroll Stooge -userPassword: Password1 -uid: PendergY -givenName: Yolanda -mail: PendergY@b992faaca776477fbca286ae42f6aa1f.bitwarden.com -carLicense: NUXXO7 -departmentNumber: 9549 -employeeType: Normal -homePhone: +1 206 782-3643 -initials: Y. P. -mobile: +1 206 119-8230 -pager: +1 206 566-6945 -roomNumber: 9887 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Woon Gillis,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Woon Gillis -sn: Gillis -description: This is Woon Gillis's description -facsimileTelephoneNumber: +1 206 571-4707 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 206 573-2685 -title: Master Product Development Manager -userPassword: Password1 -uid: GillisW -givenName: Woon -mail: GillisW@00fb40554c314de29c0898550e0a0fe9.bitwarden.com -carLicense: ASKXPP -departmentNumber: 4001 -employeeType: Contract -homePhone: +1 206 687-2472 -initials: W. G. -mobile: +1 206 681-9208 -pager: +1 206 885-9560 -roomNumber: 8096 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Remi Lillis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Remi Lillis -sn: Lillis -description: This is Remi Lillis's description -facsimileTelephoneNumber: +1 206 402-4979 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 734-9113 -title: Supreme Payroll Dictator -userPassword: Password1 -uid: LillisR -givenName: Remi -mail: LillisR@ca687c982977464ab0f83bbb31a64113.bitwarden.com -carLicense: 54HPL3 -departmentNumber: 8688 -employeeType: Normal -homePhone: +1 206 115-4212 -initials: R. L. -mobile: +1 206 769-3541 -pager: +1 206 647-5650 -roomNumber: 9557 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dagmar Niles,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dagmar Niles -sn: Niles -description: This is Dagmar Niles's description -facsimileTelephoneNumber: +1 415 479-6662 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 415 556-8375 -title: Associate Product Development Writer -userPassword: Password1 -uid: NilesD -givenName: Dagmar -mail: NilesD@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com -carLicense: ASKADC -departmentNumber: 4399 -employeeType: Employee -homePhone: +1 415 835-2833 -initials: D. N. -mobile: +1 415 455-2058 -pager: +1 415 966-1404 -roomNumber: 8012 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramakant Majmudar -sn: Majmudar -description: This is Ramakant Majmudar's description -facsimileTelephoneNumber: +1 415 842-2775 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 473-8688 -title: Associate Human Resources Pinhead -userPassword: Password1 -uid: MajmudaR -givenName: Ramakant -mail: MajmudaR@a90573a98b164929a489e62b8b0a18ec.bitwarden.com -carLicense: F7KM9K -departmentNumber: 2480 -employeeType: Employee -homePhone: +1 415 815-7510 -initials: R. M. -mobile: +1 415 411-2163 -pager: +1 415 829-7928 -roomNumber: 9190 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Geralene Groleau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geralene Groleau -sn: Groleau -description: This is Geralene Groleau's description -facsimileTelephoneNumber: +1 206 428-2085 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 821-5275 -title: Junior Peons Admin -userPassword: Password1 -uid: GroleauG -givenName: Geralene -mail: GroleauG@1390fe347bf84da5b12ed2e7e03c14a9.bitwarden.com -carLicense: FDMWOY -departmentNumber: 6561 -employeeType: Employee -homePhone: +1 206 613-3034 -initials: G. G. -mobile: +1 206 697-7637 -pager: +1 206 516-1477 -roomNumber: 8830 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhansukh Gavidia -sn: Gavidia -description: This is Dhansukh Gavidia's description -facsimileTelephoneNumber: +1 206 796-5677 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 388-4031 -title: Master Product Development Warrior -userPassword: Password1 -uid: GavidiaD -givenName: Dhansukh -mail: GavidiaD@4c99bc2b2d23465586f952873471fdbc.bitwarden.com -carLicense: 6CWAAH -departmentNumber: 7577 -employeeType: Normal -homePhone: +1 206 416-5965 -initials: D. G. -mobile: +1 206 358-7396 -pager: +1 206 258-1792 -roomNumber: 8388 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Colm Katsouras,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colm Katsouras -sn: Katsouras -description: This is Colm Katsouras's description -facsimileTelephoneNumber: +1 415 158-1111 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 587-9555 -title: Chief Peons Admin -userPassword: Password1 -uid: KatsourC -givenName: Colm -mail: KatsourC@376885ebe2864fefa119c1511a764692.bitwarden.com -carLicense: UJG7D6 -departmentNumber: 7916 -employeeType: Normal -homePhone: +1 415 455-6876 -initials: C. K. -mobile: +1 415 595-9370 -pager: +1 415 506-9792 -roomNumber: 8646 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ermengarde Thedford -sn: Thedford -description: This is Ermengarde Thedford's description -facsimileTelephoneNumber: +1 206 165-9651 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 206 910-3813 -title: Junior Payroll Stooge -userPassword: Password1 -uid: ThedforE -givenName: Ermengarde -mail: ThedforE@8f64f66384734fcda6f7276e237047aa.bitwarden.com -carLicense: W7KV2C -departmentNumber: 9786 -employeeType: Employee -homePhone: +1 206 869-2664 -initials: E. T. -mobile: +1 206 320-8615 -pager: +1 206 587-3927 -roomNumber: 8887 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Caroline Darou,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caroline Darou -sn: Darou -description: This is Caroline Darou's description -facsimileTelephoneNumber: +1 408 647-8228 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 708-4150 -title: Associate Management Technician -userPassword: Password1 -uid: DarouC -givenName: Caroline -mail: DarouC@5d0b867d32fb46e6b508ea727cf0a4d7.bitwarden.com -carLicense: OIYAC9 -departmentNumber: 3166 -employeeType: Contract -homePhone: +1 408 364-8174 -initials: C. D. -mobile: +1 408 120-9704 -pager: +1 408 542-7038 -roomNumber: 9241 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaylyn Jubainville -sn: Jubainville -description: This is Shaylyn Jubainville's description -facsimileTelephoneNumber: +1 804 216-3221 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 774-6343 -title: Supreme Product Development Czar -userPassword: Password1 -uid: JubainvS -givenName: Shaylyn -mail: JubainvS@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com -carLicense: Y4XK5Q -departmentNumber: 6879 -employeeType: Contract -homePhone: +1 804 808-6476 -initials: S. J. -mobile: +1 804 758-1882 -pager: +1 804 584-8695 -roomNumber: 9916 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wai Aldhizer -sn: Aldhizer -description: This is Wai Aldhizer's description -facsimileTelephoneNumber: +1 818 426-5473 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 645-3034 -title: Master Janitorial Artist -userPassword: Password1 -uid: AldhizeW -givenName: Wai -mail: AldhizeW@237fc261a1ea4cd0aba9b13fec2d1761.bitwarden.com -carLicense: 722CU1 -departmentNumber: 9849 -employeeType: Contract -homePhone: +1 818 766-4039 -initials: W. A. -mobile: +1 818 445-6798 -pager: +1 818 464-1506 -roomNumber: 8405 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephen Fedoruk -sn: Fedoruk -description: This is Stephen Fedoruk's description -facsimileTelephoneNumber: +1 818 143-8228 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 400-6562 -title: Master Payroll Dictator -userPassword: Password1 -uid: FedorukS -givenName: Stephen -mail: FedorukS@08cd8d018d96499180ed835a506acb7e.bitwarden.com -carLicense: OIRQEE -departmentNumber: 9323 -employeeType: Normal -homePhone: +1 818 242-5240 -initials: S. F. -mobile: +1 818 953-7750 -pager: +1 818 344-7953 -roomNumber: 9826 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Maegan Rafter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maegan Rafter -sn: Rafter -description: This is Maegan Rafter's description -facsimileTelephoneNumber: +1 818 594-9250 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 295-2078 -title: Associate Product Development Vice President -userPassword: Password1 -uid: RafterM -givenName: Maegan -mail: RafterM@fc7648c9712348689a0bc53cb789244a.bitwarden.com -carLicense: FUYIDD -departmentNumber: 7348 -employeeType: Employee -homePhone: +1 818 194-7441 -initials: M. R. -mobile: +1 818 316-2557 -pager: +1 818 264-5463 -roomNumber: 9732 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Margery Buckalew,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margery Buckalew -sn: Buckalew -description: This is Margery Buckalew's description -facsimileTelephoneNumber: +1 408 247-8215 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 408 262-1156 -title: Chief Janitorial Manager -userPassword: Password1 -uid: BuckaleM -givenName: Margery -mail: BuckaleM@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com -carLicense: NQYMIB -departmentNumber: 8659 -employeeType: Normal -homePhone: +1 408 314-8825 -initials: M. B. -mobile: +1 408 242-3427 -pager: +1 408 117-6812 -roomNumber: 9043 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oliy Rigdon -sn: Rigdon -description: This is Oliy Rigdon's description -facsimileTelephoneNumber: +1 213 640-5522 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 187-1314 -title: Associate Janitorial Figurehead -userPassword: Password1 -uid: RigdonO -givenName: Oliy -mail: RigdonO@54b7c6b9ae32434d95317388edf7be04.bitwarden.com -carLicense: PBSWTX -departmentNumber: 4054 -employeeType: Employee -homePhone: +1 213 603-9708 -initials: O. R. -mobile: +1 213 179-4173 -pager: +1 213 205-2857 -roomNumber: 8446 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronan PCBOARDS -sn: PCBOARDS -description: This is Ronan PCBOARDS's description -facsimileTelephoneNumber: +1 206 152-3608 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 206 181-8430 -title: Master Product Development Consultant -userPassword: Password1 -uid: PCBOARDR -givenName: Ronan -mail: PCBOARDR@4325337fb43b4d3eaab4c085e23330be.bitwarden.com -carLicense: OWM0B6 -departmentNumber: 8983 -employeeType: Contract -homePhone: +1 206 543-8319 -initials: R. P. -mobile: +1 206 284-3435 -pager: +1 206 757-1089 -roomNumber: 8635 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marillin Rigsbee -sn: Rigsbee -description: This is Marillin Rigsbee's description -facsimileTelephoneNumber: +1 804 464-7914 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 136-7480 -title: Junior Product Testing Mascot -userPassword: Password1 -uid: RigsbeeM -givenName: Marillin -mail: RigsbeeM@fe393581310b47dd94b5b76f5b2a4efb.bitwarden.com -carLicense: 8OJKGS -departmentNumber: 3512 -employeeType: Contract -homePhone: +1 804 800-4287 -initials: M. R. -mobile: +1 804 419-4901 -pager: +1 804 511-2383 -roomNumber: 9119 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ariel Dillingham -sn: Dillingham -description: This is Ariel Dillingham's description -facsimileTelephoneNumber: +1 213 391-9515 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 213 765-2069 -title: Associate Product Testing Czar -userPassword: Password1 -uid: DillingA -givenName: Ariel -mail: DillingA@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com -carLicense: DSN6H4 -departmentNumber: 1075 -employeeType: Employee -homePhone: +1 213 229-6596 -initials: A. D. -mobile: +1 213 672-3459 -pager: +1 213 562-5956 -roomNumber: 9313 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Charleen Willison,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charleen Willison -sn: Willison -description: This is Charleen Willison's description -facsimileTelephoneNumber: +1 818 759-6607 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 219-3034 -title: Chief Human Resources Manager -userPassword: Password1 -uid: WillisoC -givenName: Charleen -mail: WillisoC@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com -carLicense: QSRRC0 -departmentNumber: 5076 -employeeType: Contract -homePhone: +1 818 993-8907 -initials: C. W. -mobile: +1 818 412-2050 -pager: +1 818 530-6533 -roomNumber: 8056 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatsuya Aguilar -sn: Aguilar -description: This is Tatsuya Aguilar's description -facsimileTelephoneNumber: +1 804 373-2794 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 140-7437 -title: Master Product Development Punk -userPassword: Password1 -uid: AguilarT -givenName: Tatsuya -mail: AguilarT@a083ce3425664c2eb55b289d24dc07f7.bitwarden.com -carLicense: 373UJ0 -departmentNumber: 6926 -employeeType: Normal -homePhone: +1 804 563-8544 -initials: T. A. -mobile: +1 804 619-9542 -pager: +1 804 972-5764 -roomNumber: 9787 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Basia Ouellette,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Basia Ouellette -sn: Ouellette -description: This is Basia Ouellette's description -facsimileTelephoneNumber: +1 206 295-9916 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 310-4754 -title: Associate Management Visionary -userPassword: Password1 -uid: OuelletB -givenName: Basia -mail: OuelletB@ef406855f5f845aab9324d8e46753d6b.bitwarden.com -carLicense: RUU9NI -departmentNumber: 5737 -employeeType: Normal -homePhone: +1 206 329-5128 -initials: B. O. -mobile: +1 206 580-1237 -pager: +1 206 348-7917 -roomNumber: 9725 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Latashia Ridgeway,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Latashia Ridgeway -sn: Ridgeway -description: This is Latashia Ridgeway's description -facsimileTelephoneNumber: +1 804 210-2895 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 364-8705 -title: Supreme Peons Developer -userPassword: Password1 -uid: RidgewaL -givenName: Latashia -mail: RidgewaL@c6f2558da4e64d1a92ecfa7046888845.bitwarden.com -carLicense: PB9UXG -departmentNumber: 9335 -employeeType: Normal -homePhone: +1 804 359-1441 -initials: L. R. -mobile: +1 804 304-1377 -pager: +1 804 180-8862 -roomNumber: 9497 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rhodia SOS,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhodia SOS -sn: SOS -description: This is Rhodia SOS's description -facsimileTelephoneNumber: +1 415 522-1838 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 415 140-5286 -title: Supreme Administrative Visionary -userPassword: Password1 -uid: SOSR -givenName: Rhodia -mail: SOSR@8148a52d859b468a9dde3ee8b81e013b.bitwarden.com -carLicense: XRBVAY -departmentNumber: 4488 -employeeType: Contract -homePhone: +1 415 385-2613 -initials: R. S. -mobile: +1 415 162-6021 -pager: +1 415 147-6609 -roomNumber: 8533 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=WaiHung Kan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WaiHung Kan -sn: Kan -description: This is WaiHung Kan's description -facsimileTelephoneNumber: +1 804 175-2238 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 976-1488 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: KanW -givenName: WaiHung -mail: KanW@37ef93fb374e4550b60ee55424a070b4.bitwarden.com -carLicense: GKGRY0 -departmentNumber: 5818 -employeeType: Contract -homePhone: +1 804 246-1673 -initials: W. K. -mobile: +1 804 888-7754 -pager: +1 804 424-9878 -roomNumber: 9737 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ehab Gidaro,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ehab Gidaro -sn: Gidaro -description: This is Ehab Gidaro's description -facsimileTelephoneNumber: +1 510 523-3087 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 665-6571 -title: Associate Administrative Grunt -userPassword: Password1 -uid: GidaroE -givenName: Ehab -mail: GidaroE@73187767f4034534bac7d61018b5ad2e.bitwarden.com -carLicense: 899HX3 -departmentNumber: 6048 -employeeType: Employee -homePhone: +1 510 862-5457 -initials: E. G. -mobile: +1 510 841-2815 -pager: +1 510 293-1456 -roomNumber: 9321 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Almeda Barstow,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Almeda Barstow -sn: Barstow -description: This is Almeda Barstow's description -facsimileTelephoneNumber: +1 818 163-8641 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 818 272-2388 -title: Chief Peons Vice President -userPassword: Password1 -uid: BarstowA -givenName: Almeda -mail: BarstowA@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com -carLicense: M87NJA -departmentNumber: 3826 -employeeType: Contract -homePhone: +1 818 619-2476 -initials: A. B. -mobile: +1 818 389-8305 -pager: +1 818 914-8453 -roomNumber: 9312 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hernan Newbold,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hernan Newbold -sn: Newbold -description: This is Hernan Newbold's description -facsimileTelephoneNumber: +1 408 719-1250 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 957-9492 -title: Associate Payroll Pinhead -userPassword: Password1 -uid: NewboldH -givenName: Hernan -mail: NewboldH@7d0d760c8b9f490e8a67dd2b61410f6b.bitwarden.com -carLicense: ETCV8G -departmentNumber: 5779 -employeeType: Contract -homePhone: +1 408 859-4788 -initials: H. N. -mobile: +1 408 750-4655 -pager: +1 408 846-3875 -roomNumber: 9219 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Elonore Lorenc,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elonore Lorenc -sn: Lorenc -description: This is Elonore Lorenc's description -facsimileTelephoneNumber: +1 415 501-8120 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 206-3987 -title: Master Product Development Artist -userPassword: Password1 -uid: LorencE -givenName: Elonore -mail: LorencE@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com -carLicense: C6J3FX -departmentNumber: 6795 -employeeType: Employee -homePhone: +1 415 833-6703 -initials: E. L. -mobile: +1 415 246-8075 -pager: +1 415 736-8238 -roomNumber: 8779 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melva Dingle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melva Dingle -sn: Dingle -description: This is Melva Dingle's description -facsimileTelephoneNumber: +1 818 565-5556 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 896-1115 -title: Associate Product Development Pinhead -userPassword: Password1 -uid: DingleM -givenName: Melva -mail: DingleM@155d92c95e034751a1d33e414cb11391.bitwarden.com -carLicense: 22SPBD -departmentNumber: 7764 -employeeType: Normal -homePhone: +1 818 413-2767 -initials: M. D. -mobile: +1 818 436-1279 -pager: +1 818 460-3430 -roomNumber: 8012 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Janka Gorfine,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janka Gorfine -sn: Gorfine -description: This is Janka Gorfine's description -facsimileTelephoneNumber: +1 415 593-5401 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 688-2973 -title: Master Peons Sales Rep -userPassword: Password1 -uid: GorfineJ -givenName: Janka -mail: GorfineJ@daeb41514d9e4eb79c108728fb0c78a2.bitwarden.com -carLicense: NBDB2E -departmentNumber: 4218 -employeeType: Normal -homePhone: +1 415 274-4174 -initials: J. G. -mobile: +1 415 345-2199 -pager: +1 415 585-2561 -roomNumber: 9093 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carleen Natiuk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carleen Natiuk -sn: Natiuk -description: This is Carleen Natiuk's description -facsimileTelephoneNumber: +1 510 115-2569 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 990-3839 -title: Supreme Management Artist -userPassword: Password1 -uid: NatiukC -givenName: Carleen -mail: NatiukC@8d16b23b37bd48708a820fa3c8c7f569.bitwarden.com -carLicense: 9LW0FC -departmentNumber: 3300 -employeeType: Contract -homePhone: +1 510 569-5980 -initials: C. N. -mobile: +1 510 821-9904 -pager: +1 510 357-9100 -roomNumber: 8261 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dimitra Prokes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dimitra Prokes -sn: Prokes -description: This is Dimitra Prokes's description -facsimileTelephoneNumber: +1 510 707-9125 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 559-5728 -title: Associate Management Developer -userPassword: Password1 -uid: ProkesD -givenName: Dimitra -mail: ProkesD@f32d0f90ff4e4d909353481cc0066b39.bitwarden.com -carLicense: WLSVVA -departmentNumber: 4315 -employeeType: Employee -homePhone: +1 510 833-2410 -initials: D. P. -mobile: +1 510 343-4593 -pager: +1 510 356-1112 -roomNumber: 8794 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camilla Furdoonji -sn: Furdoonji -description: This is Camilla Furdoonji's description -facsimileTelephoneNumber: +1 804 366-7736 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 328-7950 -title: Junior Human Resources Director -userPassword: Password1 -uid: FurdoonC -givenName: Camilla -mail: FurdoonC@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com -carLicense: B6KWQT -departmentNumber: 1538 -employeeType: Employee -homePhone: +1 804 769-1867 -initials: C. F. -mobile: +1 804 252-5660 -pager: +1 804 282-7099 -roomNumber: 9757 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=WaiMan Sinha,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WaiMan Sinha -sn: Sinha -description: This is WaiMan Sinha's description -facsimileTelephoneNumber: +1 510 423-2487 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 530-1673 -title: Junior Peons Director -userPassword: Password1 -uid: SinhaW -givenName: WaiMan -mail: SinhaW@83e997d320394a809a91b79c1caaf132.bitwarden.com -carLicense: KFQBSP -departmentNumber: 3870 -employeeType: Employee -homePhone: +1 510 801-1284 -initials: W. S. -mobile: +1 510 888-8631 -pager: +1 510 237-4222 -roomNumber: 8334 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Therese Nikfarjam,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Therese Nikfarjam -sn: Nikfarjam -description: This is Therese Nikfarjam's description -facsimileTelephoneNumber: +1 408 442-3948 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 148-6220 -title: Chief Peons Czar -userPassword: Password1 -uid: NikfarjT -givenName: Therese -mail: NikfarjT@1bc1409c08584b65b922db79a968ffbf.bitwarden.com -carLicense: BE0S9C -departmentNumber: 5209 -employeeType: Employee -homePhone: +1 408 410-3016 -initials: T. N. -mobile: +1 408 657-6122 -pager: +1 408 617-8289 -roomNumber: 8183 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Geer Lamonde,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geer Lamonde -sn: Lamonde -description: This is Geer Lamonde's description -facsimileTelephoneNumber: +1 415 285-6620 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 552-1240 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: LamondeG -givenName: Geer -mail: LamondeG@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com -carLicense: DB0S23 -departmentNumber: 4753 -employeeType: Contract -homePhone: +1 415 479-3211 -initials: G. L. -mobile: +1 415 363-6484 -pager: +1 415 726-2977 -roomNumber: 9461 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chelsae Polder,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsae Polder -sn: Polder -description: This is Chelsae Polder's description -facsimileTelephoneNumber: +1 408 137-9094 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 594-4122 -title: Master Janitorial Punk -userPassword: Password1 -uid: PolderC -givenName: Chelsae -mail: PolderC@646d6f014bf44c5484623c7f1ed699a0.bitwarden.com -carLicense: 2EK1WC -departmentNumber: 9859 -employeeType: Employee -homePhone: +1 408 740-5209 -initials: C. P. -mobile: +1 408 488-5944 -pager: +1 408 985-3138 -roomNumber: 8883 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shuji Pien,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shuji Pien -sn: Pien -description: This is Shuji Pien's description -facsimileTelephoneNumber: +1 213 688-3823 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 597-3910 -title: Chief Peons Dictator -userPassword: Password1 -uid: PienS -givenName: Shuji -mail: PienS@ea00f070c7ac4d9f845a3fd60ca8fef9.bitwarden.com -carLicense: 4Y48ED -departmentNumber: 1905 -employeeType: Employee -homePhone: +1 213 621-8283 -initials: S. P. -mobile: +1 213 742-1770 -pager: +1 213 609-5065 -roomNumber: 9409 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Annet Rege,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annet Rege -sn: Rege -description: This is Annet Rege's description -facsimileTelephoneNumber: +1 213 965-1316 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 816-2496 -title: Junior Administrative Architect -userPassword: Password1 -uid: RegeA -givenName: Annet -mail: RegeA@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com -carLicense: 3CX33J -departmentNumber: 1107 -employeeType: Normal -homePhone: +1 213 239-7753 -initials: A. R. -mobile: +1 213 714-4197 -pager: +1 213 197-1206 -roomNumber: 9967 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ellen Vertolli,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellen Vertolli -sn: Vertolli -description: This is Ellen Vertolli's description -facsimileTelephoneNumber: +1 415 687-4114 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 566-3916 -title: Junior Management President -userPassword: Password1 -uid: VertollE -givenName: Ellen -mail: VertollE@7b2671f4e02946de91c9978d935e087b.bitwarden.com -carLicense: R01GB8 -departmentNumber: 6910 -employeeType: Employee -homePhone: +1 415 395-8989 -initials: E. V. -mobile: +1 415 350-9122 -pager: +1 415 962-8427 -roomNumber: 9520 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Zandra Belk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zandra Belk -sn: Belk -description: This is Zandra Belk's description -facsimileTelephoneNumber: +1 510 394-7993 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 790-1891 -title: Associate Management Sales Rep -userPassword: Password1 -uid: BelkZ -givenName: Zandra -mail: BelkZ@3e63d8e6be204b07ac7dd7943bdd9def.bitwarden.com -carLicense: 1TXC7B -departmentNumber: 3697 -employeeType: Normal -homePhone: +1 510 808-9955 -initials: Z. B. -mobile: +1 510 543-7476 -pager: +1 510 866-3423 -roomNumber: 9069 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Milan Shu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milan Shu -sn: Shu -description: This is Milan Shu's description -facsimileTelephoneNumber: +1 415 248-9457 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 613-1221 -title: Associate Administrative Visionary -userPassword: Password1 -uid: ShuM -givenName: Milan -mail: ShuM@afe3f29824c043148d9eb0e4285bb233.bitwarden.com -carLicense: 76W0NK -departmentNumber: 6647 -employeeType: Normal -homePhone: +1 415 633-2025 -initials: M. S. -mobile: +1 415 508-5974 -pager: +1 415 182-7263 -roomNumber: 8963 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lubomir Carver,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lubomir Carver -sn: Carver -description: This is Lubomir Carver's description -facsimileTelephoneNumber: +1 510 127-9711 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 510 956-5004 -title: Junior Peons Architect -userPassword: Password1 -uid: CarverL -givenName: Lubomir -mail: CarverL@36afbe0488ac4cbf861f3b2611d891cd.bitwarden.com -carLicense: VY1JOH -departmentNumber: 9115 -employeeType: Employee -homePhone: +1 510 903-3200 -initials: L. C. -mobile: +1 510 824-5091 -pager: +1 510 364-6221 -roomNumber: 8489 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kieron Remrey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kieron Remrey -sn: Remrey -description: This is Kieron Remrey's description -facsimileTelephoneNumber: +1 818 557-1550 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 770-6504 -title: Supreme Payroll Stooge -userPassword: Password1 -uid: RemreyK -givenName: Kieron -mail: RemreyK@fd7e4056685f4c789c5948839975ec7d.bitwarden.com -carLicense: 89X2SH -departmentNumber: 3665 -employeeType: Employee -homePhone: +1 818 428-3039 -initials: K. R. -mobile: +1 818 971-1811 -pager: +1 818 496-1337 -roomNumber: 9365 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Frayda Urquhart,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frayda Urquhart -sn: Urquhart -description: This is Frayda Urquhart's description -facsimileTelephoneNumber: +1 510 788-4737 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 846-3673 -title: Associate Administrative Vice President -userPassword: Password1 -uid: UrquharF -givenName: Frayda -mail: UrquharF@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com -carLicense: JF1DRU -departmentNumber: 7186 -employeeType: Normal -homePhone: +1 510 712-3864 -initials: F. U. -mobile: +1 510 665-2706 -pager: +1 510 855-5850 -roomNumber: 9311 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kat Torok,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kat Torok -sn: Torok -description: This is Kat Torok's description -facsimileTelephoneNumber: +1 510 680-3857 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 336-7687 -title: Junior Human Resources Czar -userPassword: Password1 -uid: TorokK -givenName: Kat -mail: TorokK@c90beda51728416da468419570974ee9.bitwarden.com -carLicense: 91IFU8 -departmentNumber: 1929 -employeeType: Contract -homePhone: +1 510 902-5987 -initials: K. T. -mobile: +1 510 541-4302 -pager: +1 510 717-6664 -roomNumber: 8670 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Consuelo Dowell -sn: Dowell -description: This is Consuelo Dowell's description -facsimileTelephoneNumber: +1 510 962-9154 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 116-7451 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: DowellC -givenName: Consuelo -mail: DowellC@0e32fee851df4554931f75bb97b68b96.bitwarden.com -carLicense: 74174T -departmentNumber: 5584 -employeeType: Normal -homePhone: +1 510 143-8151 -initials: C. D. -mobile: +1 510 455-6578 -pager: +1 510 423-3392 -roomNumber: 8993 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Selina Sauder,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selina Sauder -sn: Sauder -description: This is Selina Sauder's description -facsimileTelephoneNumber: +1 818 260-5615 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 866-8022 -title: Associate Administrative Janitor -userPassword: Password1 -uid: SauderS -givenName: Selina -mail: SauderS@75dfcd3692074ff18248aebdf998f81c.bitwarden.com -carLicense: AT0U8M -departmentNumber: 8686 -employeeType: Employee -homePhone: +1 818 995-5351 -initials: S. S. -mobile: +1 818 469-2043 -pager: +1 818 589-6179 -roomNumber: 8159 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joshi Wery,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joshi Wery -sn: Wery -description: This is Joshi Wery's description -facsimileTelephoneNumber: +1 804 346-3937 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 804 665-7004 -title: Associate Administrative Director -userPassword: Password1 -uid: WeryJ -givenName: Joshi -mail: WeryJ@d4ec4569fe8f4ce58eb7942aa58953d0.bitwarden.com -carLicense: AP248J -departmentNumber: 7367 -employeeType: Normal -homePhone: +1 804 531-2383 -initials: J. W. -mobile: +1 804 181-9298 -pager: +1 804 797-4545 -roomNumber: 8327 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Corilla Carey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corilla Carey -sn: Carey -description: This is Corilla Carey's description -facsimileTelephoneNumber: +1 408 708-3738 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 489-7392 -title: Supreme Administrative Czar -userPassword: Password1 -uid: CareyC -givenName: Corilla -mail: CareyC@eff1fc06cb994f6c9978051d61306d1b.bitwarden.com -carLicense: XVBE14 -departmentNumber: 9698 -employeeType: Employee -homePhone: +1 408 306-3905 -initials: C. C. -mobile: +1 408 883-1644 -pager: +1 408 903-3253 -roomNumber: 9979 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Devon Patchcor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devon Patchcor -sn: Patchcor -description: This is Devon Patchcor's description -facsimileTelephoneNumber: +1 415 825-2885 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 757-1907 -title: Chief Peons Warrior -userPassword: Password1 -uid: PatchcoD -givenName: Devon -mail: PatchcoD@b89ab013f5694b158e7600fe86a66e9d.bitwarden.com -carLicense: FETT6E -departmentNumber: 5678 -employeeType: Employee -homePhone: +1 415 683-6317 -initials: D. P. -mobile: +1 415 715-7501 -pager: +1 415 832-7937 -roomNumber: 8171 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Thor Crompton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thor Crompton -sn: Crompton -description: This is Thor Crompton's description -facsimileTelephoneNumber: +1 804 312-5599 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 876-5220 -title: Associate Janitorial Director -userPassword: Password1 -uid: CromptoT -givenName: Thor -mail: CromptoT@c73dbaa0e70c411fa0d04bf8fe86f3a6.bitwarden.com -carLicense: PP9GKG -departmentNumber: 1196 -employeeType: Employee -homePhone: +1 804 309-2717 -initials: T. C. -mobile: +1 804 983-9738 -pager: +1 804 242-9634 -roomNumber: 8081 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saleem Postavsky -sn: Postavsky -description: This is Saleem Postavsky's description -facsimileTelephoneNumber: +1 804 694-7727 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 779-6693 -title: Chief Janitorial Developer -userPassword: Password1 -uid: PostavsS -givenName: Saleem -mail: PostavsS@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com -carLicense: 9IALSO -departmentNumber: 5855 -employeeType: Normal -homePhone: +1 804 473-7438 -initials: S. P. -mobile: +1 804 893-7288 -pager: +1 804 190-8128 -roomNumber: 8145 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sallee Demone,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sallee Demone -sn: Demone -description: This is Sallee Demone's description -facsimileTelephoneNumber: +1 804 711-7130 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 804 640-9577 -title: Master Janitorial Architect -userPassword: Password1 -uid: DemoneS -givenName: Sallee -mail: DemoneS@8c7907603b764cf9aa63ab1260b542bf.bitwarden.com -carLicense: 8M7X88 -departmentNumber: 8501 -employeeType: Contract -homePhone: +1 804 204-1676 -initials: S. D. -mobile: +1 804 615-7052 -pager: +1 804 327-1728 -roomNumber: 8414 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Patsy Hanley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patsy Hanley -sn: Hanley -description: This is Patsy Hanley's description -facsimileTelephoneNumber: +1 408 458-1584 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 680-9218 -title: Supreme Peons Mascot -userPassword: Password1 -uid: HanleyP -givenName: Patsy -mail: HanleyP@09c5f5e221b74d1bbb06bb0da6fd1e35.bitwarden.com -carLicense: KF29G8 -departmentNumber: 6924 -employeeType: Contract -homePhone: +1 408 391-4201 -initials: P. H. -mobile: +1 408 569-3387 -pager: +1 408 257-8382 -roomNumber: 9287 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lily Sturdivant,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lily Sturdivant -sn: Sturdivant -description: This is Lily Sturdivant's description -facsimileTelephoneNumber: +1 510 274-4414 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 545-5056 -title: Chief Management Punk -userPassword: Password1 -uid: SturdivL -givenName: Lily -mail: SturdivL@19227d32d4ac4d3c8783acb96838362f.bitwarden.com -carLicense: GHOPBR -departmentNumber: 2568 -employeeType: Normal -homePhone: +1 510 442-8935 -initials: L. S. -mobile: +1 510 734-5988 -pager: +1 510 354-3257 -roomNumber: 8129 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Howie Howarth,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Howie Howarth -sn: Howarth -description: This is Howie Howarth's description -facsimileTelephoneNumber: +1 818 470-3555 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 148-7478 -title: Master Product Development Artist -userPassword: Password1 -uid: HowarthH -givenName: Howie -mail: HowarthH@6c6664d2385d43519ebb52ff761aba92.bitwarden.com -carLicense: 1HKQJ6 -departmentNumber: 5051 -employeeType: Employee -homePhone: +1 818 775-1418 -initials: H. H. -mobile: +1 818 865-5354 -pager: +1 818 444-4240 -roomNumber: 8227 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jo Tropeano,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jo Tropeano -sn: Tropeano -description: This is Jo Tropeano's description -facsimileTelephoneNumber: +1 408 256-4070 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 725-4486 -title: Associate Administrative Director -userPassword: Password1 -uid: TropeanJ -givenName: Jo -mail: TropeanJ@9144995fa4c649da9d774d2a93d230da.bitwarden.com -carLicense: 9V98I6 -departmentNumber: 3269 -employeeType: Contract -homePhone: +1 408 447-8956 -initials: J. T. -mobile: +1 408 256-3200 -pager: +1 408 270-5597 -roomNumber: 9039 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Howard Acs,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Howard Acs -sn: Acs -description: This is Howard Acs's description -facsimileTelephoneNumber: +1 804 459-4757 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 804 378-7696 -title: Master Payroll Writer -userPassword: Password1 -uid: AcsH -givenName: Howard -mail: AcsH@c39b1ed7de78452e9d100510b4188a2b.bitwarden.com -carLicense: 1I9S9W -departmentNumber: 6970 -employeeType: Contract -homePhone: +1 804 942-3485 -initials: H. A. -mobile: +1 804 397-1794 -pager: +1 804 717-5230 -roomNumber: 9667 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liping Kulikowsky -sn: Kulikowsky -description: This is Liping Kulikowsky's description -facsimileTelephoneNumber: +1 213 443-4772 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 769-6380 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: KulikowL -givenName: Liping -mail: KulikowL@63e408cfc15a40c4ba49c3905036c334.bitwarden.com -carLicense: W2IS9V -departmentNumber: 9958 -employeeType: Contract -homePhone: +1 213 977-1381 -initials: L. K. -mobile: +1 213 738-1151 -pager: +1 213 790-5994 -roomNumber: 8194 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Otakar Carella,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Otakar Carella -sn: Carella -description: This is Otakar Carella's description -facsimileTelephoneNumber: +1 415 465-1479 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 767-7389 -title: Associate Janitorial Punk -userPassword: Password1 -uid: CarellaO -givenName: Otakar -mail: CarellaO@d375d17b83f44fc4be3924ad0f54b388.bitwarden.com -carLicense: 0U5I4S -departmentNumber: 9746 -employeeType: Contract -homePhone: +1 415 420-8034 -initials: O. C. -mobile: +1 415 650-8803 -pager: +1 415 904-9042 -roomNumber: 9375 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Digby Papajanis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Digby Papajanis -sn: Papajanis -description: This is Digby Papajanis's description -facsimileTelephoneNumber: +1 206 399-3382 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 332-8290 -title: Chief Peons Technician -userPassword: Password1 -uid: PapajanD -givenName: Digby -mail: PapajanD@0fefcde04743447b85983e188aaec0ea.bitwarden.com -carLicense: 6E51MX -departmentNumber: 5436 -employeeType: Employee -homePhone: +1 206 872-7666 -initials: D. P. -mobile: +1 206 478-3573 -pager: +1 206 443-8354 -roomNumber: 9512 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronnica Darcy -sn: Darcy -description: This is Ronnica Darcy's description -facsimileTelephoneNumber: +1 206 207-3657 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 587-5035 -title: Junior Product Testing Artist -userPassword: Password1 -uid: DarcyR -givenName: Ronnica -mail: DarcyR@caadb1299c604b6bb5f063bd78fb2a7a.bitwarden.com -carLicense: BXQFLE -departmentNumber: 5111 -employeeType: Contract -homePhone: +1 206 776-4056 -initials: R. D. -mobile: +1 206 807-9181 -pager: +1 206 491-3231 -roomNumber: 9530 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Courtenay Savanh -sn: Savanh -description: This is Courtenay Savanh's description -facsimileTelephoneNumber: +1 818 615-2613 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 487-1150 -title: Associate Human Resources Warrior -userPassword: Password1 -uid: SavanhC -givenName: Courtenay -mail: SavanhC@377af438e28144f198471c633c478745.bitwarden.com -carLicense: C0SQB7 -departmentNumber: 2916 -employeeType: Employee -homePhone: +1 818 823-6754 -initials: C. S. -mobile: +1 818 156-1443 -pager: +1 818 416-4197 -roomNumber: 9316 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deeyn Jonkheer -sn: Jonkheer -description: This is Deeyn Jonkheer's description -facsimileTelephoneNumber: +1 510 802-8361 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 665-3077 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: JonkheeD -givenName: Deeyn -mail: JonkheeD@5075a8f50d3242c58f81fcf47cd402b6.bitwarden.com -carLicense: KGPJJD -departmentNumber: 1727 -employeeType: Normal -homePhone: +1 510 724-4430 -initials: D. J. -mobile: +1 510 950-6128 -pager: +1 510 579-2271 -roomNumber: 9617 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pansy VanBenthem -sn: VanBenthem -description: This is Pansy VanBenthem's description -facsimileTelephoneNumber: +1 510 827-2501 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 787-3302 -title: Chief Product Testing Artist -userPassword: Password1 -uid: VanBentP -givenName: Pansy -mail: VanBentP@87de5470340f4f1ebdb1d5b65c157439.bitwarden.com -carLicense: 1EG04I -departmentNumber: 8339 -employeeType: Contract -homePhone: +1 510 775-9332 -initials: P. V. -mobile: +1 510 220-3262 -pager: +1 510 803-8846 -roomNumber: 9505 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Trixy Grewal,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trixy Grewal -sn: Grewal -description: This is Trixy Grewal's description -facsimileTelephoneNumber: +1 213 154-2676 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 752-9069 -title: Associate Janitorial Admin -userPassword: Password1 -uid: GrewalT -givenName: Trixy -mail: GrewalT@4c863b247c76467d94256795e24354de.bitwarden.com -carLicense: GY7A13 -departmentNumber: 5097 -employeeType: Employee -homePhone: +1 213 794-5453 -initials: T. G. -mobile: +1 213 466-8929 -pager: +1 213 769-6864 -roomNumber: 9653 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sami Huguin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sami Huguin -sn: Huguin -description: This is Sami Huguin's description -facsimileTelephoneNumber: +1 818 814-8374 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 953-3042 -title: Master Product Development Technician -userPassword: Password1 -uid: HuguinS -givenName: Sami -mail: HuguinS@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com -carLicense: WOW9RP -departmentNumber: 6466 -employeeType: Contract -homePhone: +1 818 741-8371 -initials: S. H. -mobile: +1 818 888-9980 -pager: +1 818 948-8305 -roomNumber: 8134 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kui Mulero,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kui Mulero -sn: Mulero -description: This is Kui Mulero's description -facsimileTelephoneNumber: +1 818 274-5070 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 818 570-9591 -title: Supreme Administrative Manager -userPassword: Password1 -uid: MuleroK -givenName: Kui -mail: MuleroK@4026de828f5c4d2faaf1a5de089b9c0e.bitwarden.com -carLicense: 0WL6Q3 -departmentNumber: 6919 -employeeType: Contract -homePhone: +1 818 790-9072 -initials: K. M. -mobile: +1 818 133-7243 -pager: +1 818 954-2150 -roomNumber: 8900 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tyne McHarg,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tyne McHarg -sn: McHarg -description: This is Tyne McHarg's description -facsimileTelephoneNumber: +1 206 505-3095 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 507-6941 -title: Master Product Development Dictator -userPassword: Password1 -uid: McHargT -givenName: Tyne -mail: McHargT@fd2e8792325547b4a50dd52cda4bc63f.bitwarden.com -carLicense: 568PKC -departmentNumber: 1162 -employeeType: Contract -homePhone: +1 206 686-1412 -initials: T. M. -mobile: +1 206 772-3221 -pager: +1 206 692-9234 -roomNumber: 8017 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Constantin Harkness,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constantin Harkness -sn: Harkness -description: This is Constantin Harkness's description -facsimileTelephoneNumber: +1 415 169-3753 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 342-4374 -title: Chief Product Development Artist -userPassword: Password1 -uid: HarknesC -givenName: Constantin -mail: HarknesC@57025360fa6449ed9005168a07164ed8.bitwarden.com -carLicense: L3OA8K -departmentNumber: 7032 -employeeType: Employee -homePhone: +1 415 987-4103 -initials: C. H. -mobile: +1 415 799-4786 -pager: +1 415 731-4317 -roomNumber: 9974 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Galen Mariani,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Galen Mariani -sn: Mariani -description: This is Galen Mariani's description -facsimileTelephoneNumber: +1 510 326-3704 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 806-2819 -title: Master Human Resources Czar -userPassword: Password1 -uid: MarianiG -givenName: Galen -mail: MarianiG@e772b0160cc74084b5086dc4bf71c633.bitwarden.com -carLicense: 46LBO2 -departmentNumber: 9047 -employeeType: Normal -homePhone: +1 510 315-5258 -initials: G. M. -mobile: +1 510 352-7247 -pager: +1 510 531-6606 -roomNumber: 9398 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dolores Lacosse,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dolores Lacosse -sn: Lacosse -description: This is Dolores Lacosse's description -facsimileTelephoneNumber: +1 408 767-2092 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 797-4252 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: LacosseD -givenName: Dolores -mail: LacosseD@790e9575d19b49f797a1e46c053b138e.bitwarden.com -carLicense: 7I02AX -departmentNumber: 4294 -employeeType: Normal -homePhone: +1 408 712-8418 -initials: D. L. -mobile: +1 408 945-1998 -pager: +1 408 523-3858 -roomNumber: 9728 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vradmin Aasen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vradmin Aasen -sn: Aasen -description: This is Vradmin Aasen's description -facsimileTelephoneNumber: +1 415 746-2451 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 474-1108 -title: Supreme Peons Czar -userPassword: Password1 -uid: AasenV -givenName: Vradmin -mail: AasenV@27d8375532a543b0aa95f943636664d5.bitwarden.com -carLicense: 2HEWX8 -departmentNumber: 9080 -employeeType: Normal -homePhone: +1 415 240-4022 -initials: V. A. -mobile: +1 415 961-4059 -pager: +1 415 194-1703 -roomNumber: 9422 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Roseline Revis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roseline Revis -sn: Revis -description: This is Roseline Revis's description -facsimileTelephoneNumber: +1 206 122-5582 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 177-5096 -title: Associate Janitorial Architect -userPassword: Password1 -uid: RevisR -givenName: Roseline -mail: RevisR@d470ef4083a54c788156afbe1d7bed68.bitwarden.com -carLicense: 7WXQBD -departmentNumber: 4069 -employeeType: Normal -homePhone: +1 206 565-6619 -initials: R. R. -mobile: +1 206 620-9887 -pager: +1 206 568-3094 -roomNumber: 8109 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eiji Tel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eiji Tel -sn: Tel -description: This is Eiji Tel's description -facsimileTelephoneNumber: +1 510 220-7491 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 510 303-4908 -title: Chief Administrative Visionary -userPassword: Password1 -uid: TelE -givenName: Eiji -mail: TelE@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com -carLicense: MOL0R9 -departmentNumber: 7007 -employeeType: Normal -homePhone: +1 510 958-6120 -initials: E. T. -mobile: +1 510 111-2713 -pager: +1 510 925-9695 -roomNumber: 8164 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mariesara Reichman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariesara Reichman -sn: Reichman -description: This is Mariesara Reichman's description -facsimileTelephoneNumber: +1 510 177-8157 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 750-5749 -title: Chief Product Development Developer -userPassword: Password1 -uid: ReichmaM -givenName: Mariesara -mail: ReichmaM@1a74feecd8df4dc187b3d1f94925b995.bitwarden.com -carLicense: 19NCKK -departmentNumber: 9636 -employeeType: Normal -homePhone: +1 510 824-8188 -initials: M. R. -mobile: +1 510 223-7749 -pager: +1 510 161-2800 -roomNumber: 8690 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brunhilda Lonnman -sn: Lonnman -description: This is Brunhilda Lonnman's description -facsimileTelephoneNumber: +1 818 535-7164 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 231-5160 -title: Master Janitorial Czar -userPassword: Password1 -uid: LonnmanB -givenName: Brunhilda -mail: LonnmanB@aea3f0a7f67b4eaaaa82cbd9284643da.bitwarden.com -carLicense: MEUE4P -departmentNumber: 8922 -employeeType: Normal -homePhone: +1 818 661-9272 -initials: B. L. -mobile: +1 818 924-9103 -pager: +1 818 580-3617 -roomNumber: 9275 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sandi Bush,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandi Bush -sn: Bush -description: This is Sandi Bush's description -facsimileTelephoneNumber: +1 804 581-3239 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 990-2801 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: BushS -givenName: Sandi -mail: BushS@eae6e0d3f5454385bf03afdceb5bde7a.bitwarden.com -carLicense: 7MYJDV -departmentNumber: 8857 -employeeType: Employee -homePhone: +1 804 624-1359 -initials: S. B. -mobile: +1 804 110-4284 -pager: +1 804 651-8034 -roomNumber: 8054 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emmalynn Dai,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emmalynn Dai -sn: Dai -description: This is Emmalynn Dai's description -facsimileTelephoneNumber: +1 415 277-5449 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 681-1938 -title: Junior Payroll Director -userPassword: Password1 -uid: DaiE -givenName: Emmalynn -mail: DaiE@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com -carLicense: M91WQW -departmentNumber: 8501 -employeeType: Employee -homePhone: +1 415 439-8687 -initials: E. D. -mobile: +1 415 304-5683 -pager: +1 415 276-5996 -roomNumber: 8572 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Josef Godcharles,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Josef Godcharles -sn: Godcharles -description: This is Josef Godcharles's description -facsimileTelephoneNumber: +1 804 426-7080 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 207-8797 -title: Junior Human Resources Director -userPassword: Password1 -uid: GodcharJ -givenName: Josef -mail: GodcharJ@60323e558c4a4bd4a555e49dd613a509.bitwarden.com -carLicense: D1YY6L -departmentNumber: 5014 -employeeType: Employee -homePhone: +1 804 179-2126 -initials: J. G. -mobile: +1 804 323-7352 -pager: +1 804 736-7835 -roomNumber: 9402 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tash Hurwitz -sn: Hurwitz -description: This is Tash Hurwitz's description -facsimileTelephoneNumber: +1 213 968-1277 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 804-9307 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: HurwitzT -givenName: Tash -mail: HurwitzT@faecae55819d4155ab4f3e2d05dac422.bitwarden.com -carLicense: JUOPQR -departmentNumber: 9174 -employeeType: Normal -homePhone: +1 213 392-5926 -initials: T. H. -mobile: +1 213 547-7465 -pager: +1 213 243-2320 -roomNumber: 8390 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gay Ondovcik,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gay Ondovcik -sn: Ondovcik -description: This is Gay Ondovcik's description -facsimileTelephoneNumber: +1 206 190-9854 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 458-8392 -title: Master Administrative Architect -userPassword: Password1 -uid: OndovciG -givenName: Gay -mail: OndovciG@6b2bbca4f311426b9d24c29f21d8799f.bitwarden.com -carLicense: HMWJ0J -departmentNumber: 1431 -employeeType: Normal -homePhone: +1 206 518-7979 -initials: G. O. -mobile: +1 206 207-8813 -pager: +1 206 572-8495 -roomNumber: 9728 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beverly Sidhu -sn: Sidhu -description: This is Beverly Sidhu's description -facsimileTelephoneNumber: +1 206 797-2187 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 595-9356 -title: Chief Product Testing Admin -userPassword: Password1 -uid: SidhuB -givenName: Beverly -mail: SidhuB@6e76f9c1c78c4006a9e635f43ae1e33a.bitwarden.com -carLicense: POLXEK -departmentNumber: 2013 -employeeType: Contract -homePhone: +1 206 683-9680 -initials: B. S. -mobile: +1 206 143-2012 -pager: +1 206 557-9479 -roomNumber: 8431 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cad fpsched,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cad fpsched -sn: fpsched -description: This is Cad fpsched's description -facsimileTelephoneNumber: +1 408 846-9376 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 520-8878 -title: Chief Administrative Architect -userPassword: Password1 -uid: fpschedC -givenName: Cad -mail: fpschedC@5e72004cd5c54ab885896ad64d562293.bitwarden.com -carLicense: 80WLCT -departmentNumber: 4678 -employeeType: Normal -homePhone: +1 408 985-1321 -initials: C. f. -mobile: +1 408 283-1927 -pager: +1 408 988-5892 -roomNumber: 9033 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Oscar Paris,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oscar Paris -sn: Paris -description: This is Oscar Paris's description -facsimileTelephoneNumber: +1 415 541-9298 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 467-7187 -title: Master Janitorial Mascot -userPassword: Password1 -uid: ParisO -givenName: Oscar -mail: ParisO@58b1feb535e94d39a943e5e96951c27d.bitwarden.com -carLicense: 50DGW5 -departmentNumber: 1705 -employeeType: Employee -homePhone: +1 415 333-7204 -initials: O. P. -mobile: +1 415 116-3884 -pager: +1 415 801-1598 -roomNumber: 9860 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Chan Blumer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chan Blumer -sn: Blumer -description: This is Chan Blumer's description -facsimileTelephoneNumber: +1 213 427-7590 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 632-3751 -title: Junior Janitorial Mascot -userPassword: Password1 -uid: BlumerC -givenName: Chan -mail: BlumerC@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com -carLicense: KWG84Y -departmentNumber: 8323 -employeeType: Normal -homePhone: +1 213 775-4822 -initials: C. B. -mobile: +1 213 448-6894 -pager: +1 213 898-4254 -roomNumber: 9941 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katharine Weitzel -sn: Weitzel -description: This is Katharine Weitzel's description -facsimileTelephoneNumber: +1 510 245-3181 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 498-4096 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: WeitzelK -givenName: Katharine -mail: WeitzelK@99fd889b48504677bce0dc492f7e0cf3.bitwarden.com -carLicense: 5W8RBA -departmentNumber: 5950 -employeeType: Employee -homePhone: +1 510 636-1737 -initials: K. W. -mobile: +1 510 540-5946 -pager: +1 510 304-7472 -roomNumber: 8635 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chabert Hawkins,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chabert Hawkins -sn: Hawkins -description: This is Chabert Hawkins's description -facsimileTelephoneNumber: +1 510 339-4532 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 974-8232 -title: Associate Payroll Grunt -userPassword: Password1 -uid: HawkinsC -givenName: Chabert -mail: HawkinsC@d356ac5b553f4400b101f5783a9cd0d4.bitwarden.com -carLicense: 7TCJ8N -departmentNumber: 1724 -employeeType: Contract -homePhone: +1 510 344-3698 -initials: C. H. -mobile: +1 510 557-7279 -pager: +1 510 719-3067 -roomNumber: 9290 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=VanKing Iskandar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: VanKing Iskandar -sn: Iskandar -description: This is VanKing Iskandar's description -facsimileTelephoneNumber: +1 206 665-2592 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 658-4226 -title: Chief Administrative Developer -userPassword: Password1 -uid: IskandaV -givenName: VanKing -mail: IskandaV@bbc2ed84411d4a40af49ae614b080b8d.bitwarden.com -carLicense: V94AMX -departmentNumber: 1940 -employeeType: Employee -homePhone: +1 206 664-5305 -initials: V. I. -mobile: +1 206 940-8268 -pager: +1 206 105-8062 -roomNumber: 8517 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carena Toplis,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carena Toplis -sn: Toplis -description: This is Carena Toplis's description -facsimileTelephoneNumber: +1 804 841-6620 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 145-1121 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: ToplisC -givenName: Carena -mail: ToplisC@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com -carLicense: EDNYT3 -departmentNumber: 2338 -employeeType: Normal -homePhone: +1 804 657-7421 -initials: C. T. -mobile: +1 804 672-9378 -pager: +1 804 354-9023 -roomNumber: 8789 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nelleke Fredette,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nelleke Fredette -sn: Fredette -description: This is Nelleke Fredette's description -facsimileTelephoneNumber: +1 213 134-3076 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 373-7717 -title: Master Payroll Grunt -userPassword: Password1 -uid: FredettN -givenName: Nelleke -mail: FredettN@26874cbc58cb45a4a2a676c29fc0a053.bitwarden.com -carLicense: 0RQ8I4 -departmentNumber: 6452 -employeeType: Normal -homePhone: +1 213 929-7604 -initials: N. F. -mobile: +1 213 489-7588 -pager: +1 213 468-6639 -roomNumber: 9135 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HweiLing Paparella -sn: Paparella -description: This is HweiLing Paparella's description -facsimileTelephoneNumber: +1 415 708-2998 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 750-4009 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: PaparelH -givenName: HweiLing -mail: PaparelH@c463cfcdffaa4d1cb3c37acf0334ead8.bitwarden.com -carLicense: M4WPAU -departmentNumber: 4627 -employeeType: Employee -homePhone: +1 415 383-2846 -initials: H. P. -mobile: +1 415 183-3131 -pager: +1 415 609-5768 -roomNumber: 8355 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shila Salyniuk -sn: Salyniuk -description: This is Shila Salyniuk's description -facsimileTelephoneNumber: +1 510 521-8490 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 643-6275 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: SalyniuS -givenName: Shila -mail: SalyniuS@4d5a130ce03f416380d14b9ae188b2a0.bitwarden.com -carLicense: SLEJLC -departmentNumber: 9150 -employeeType: Normal -homePhone: +1 510 753-9219 -initials: S. S. -mobile: +1 510 183-8201 -pager: +1 510 167-6131 -roomNumber: 9058 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jock Ahdieh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jock Ahdieh -sn: Ahdieh -description: This is Jock Ahdieh's description -facsimileTelephoneNumber: +1 510 305-4258 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 132-7221 -title: Chief Administrative Technician -userPassword: Password1 -uid: AhdiehJ -givenName: Jock -mail: AhdiehJ@2e50781374894ea497591fcdadb28725.bitwarden.com -carLicense: TCBNQK -departmentNumber: 1034 -employeeType: Contract -homePhone: +1 510 515-7275 -initials: J. A. -mobile: +1 510 655-6146 -pager: +1 510 383-8090 -roomNumber: 8491 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ru Lindt,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ru Lindt -sn: Lindt -description: This is Ru Lindt's description -facsimileTelephoneNumber: +1 510 609-5793 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 931-8014 -title: Associate Peons Punk -userPassword: Password1 -uid: LindtR -givenName: Ru -mail: LindtR@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com -carLicense: 0YUIWT -departmentNumber: 4367 -employeeType: Normal -homePhone: +1 510 858-4801 -initials: R. L. -mobile: +1 510 215-5809 -pager: +1 510 220-2700 -roomNumber: 8796 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klaas Boyajian -sn: Boyajian -description: This is Klaas Boyajian's description -facsimileTelephoneNumber: +1 206 711-4170 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 650-1881 -title: Master Product Testing Evangelist -userPassword: Password1 -uid: BoyajiaK -givenName: Klaas -mail: BoyajiaK@8386f2764ec04b659a8fc2d330c9443a.bitwarden.com -carLicense: DHMJ9J -departmentNumber: 8708 -employeeType: Normal -homePhone: +1 206 577-4650 -initials: K. B. -mobile: +1 206 532-5794 -pager: +1 206 887-4697 -roomNumber: 9293 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeffrey Stellitano -sn: Stellitano -description: This is Jeffrey Stellitano's description -facsimileTelephoneNumber: +1 818 852-2828 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 818 440-5924 -title: Master Payroll President -userPassword: Password1 -uid: StellitJ -givenName: Jeffrey -mail: StellitJ@f8ab716c26494879b2465829da010f5f.bitwarden.com -carLicense: V03SGB -departmentNumber: 6361 -employeeType: Normal -homePhone: +1 818 377-9046 -initials: J. S. -mobile: +1 818 670-7250 -pager: +1 818 325-1101 -roomNumber: 8801 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Desiri Picard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desiri Picard -sn: Picard -description: This is Desiri Picard's description -facsimileTelephoneNumber: +1 415 256-3511 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 349-6425 -title: Associate Management Figurehead -userPassword: Password1 -uid: PicardD -givenName: Desiri -mail: PicardD@8396829dbd6f4494811aec04c011380c.bitwarden.com -carLicense: 0U9LS2 -departmentNumber: 5270 -employeeType: Normal -homePhone: +1 415 263-1263 -initials: D. P. -mobile: +1 415 155-3497 -pager: +1 415 918-6705 -roomNumber: 8320 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mewa Melfi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mewa Melfi -sn: Melfi -description: This is Mewa Melfi's description -facsimileTelephoneNumber: +1 510 560-3782 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 400-8120 -title: Associate Payroll Admin -userPassword: Password1 -uid: MelfiM -givenName: Mewa -mail: MelfiM@7cfe2ffb0199421b9c038434ce9a5120.bitwarden.com -carLicense: 4BD82Y -departmentNumber: 3126 -employeeType: Employee -homePhone: +1 510 693-7277 -initials: M. M. -mobile: +1 510 515-2593 -pager: +1 510 436-4895 -roomNumber: 9836 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elio Naylor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elio Naylor -sn: Naylor -description: This is Elio Naylor's description -facsimileTelephoneNumber: +1 213 685-5437 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 981-6630 -title: Associate Peons Vice President -userPassword: Password1 -uid: NaylorE -givenName: Elio -mail: NaylorE@7fc160edec22498a9b7f16af82b6aca4.bitwarden.com -carLicense: 0A8KDT -departmentNumber: 4763 -employeeType: Normal -homePhone: +1 213 271-9991 -initials: E. N. -mobile: +1 213 576-7505 -pager: +1 213 214-4869 -roomNumber: 8146 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vince Adamowicz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vince Adamowicz -sn: Adamowicz -description: This is Vince Adamowicz's description -facsimileTelephoneNumber: +1 415 856-5656 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 954-2165 -title: Associate Peons Punk -userPassword: Password1 -uid: AdamowiV -givenName: Vince -mail: AdamowiV@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com -carLicense: 0L52DY -departmentNumber: 1871 -employeeType: Contract -homePhone: +1 415 354-2259 -initials: V. A. -mobile: +1 415 542-6663 -pager: +1 415 309-7063 -roomNumber: 9925 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Annis Emery,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annis Emery -sn: Emery -description: This is Annis Emery's description -facsimileTelephoneNumber: +1 206 836-5702 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 944-4166 -title: Chief Human Resources Vice President -userPassword: Password1 -uid: EmeryA -givenName: Annis -mail: EmeryA@a632ca3ec8844bd59c6fe3da28658b8e.bitwarden.com -carLicense: JP70KJ -departmentNumber: 9758 -employeeType: Normal -homePhone: +1 206 278-2382 -initials: A. E. -mobile: +1 206 463-2434 -pager: +1 206 910-2254 -roomNumber: 8978 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Valma Standen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valma Standen -sn: Standen -description: This is Valma Standen's description -facsimileTelephoneNumber: +1 415 266-9233 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 277-5392 -title: Chief Product Development Developer -userPassword: Password1 -uid: StandenV -givenName: Valma -mail: StandenV@71c4255308d847e6b55d8184e9b3d537.bitwarden.com -carLicense: 56M1B6 -departmentNumber: 2705 -employeeType: Employee -homePhone: +1 415 330-9268 -initials: V. S. -mobile: +1 415 171-4833 -pager: +1 415 450-8448 -roomNumber: 9463 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mauro Meres,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mauro Meres -sn: Meres -description: This is Mauro Meres's description -facsimileTelephoneNumber: +1 510 658-1679 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 259-8518 -title: Chief Product Development Artist -userPassword: Password1 -uid: MeresM -givenName: Mauro -mail: MeresM@f74860195dfd437aa0f4072ae1ebfe76.bitwarden.com -carLicense: ASCBLF -departmentNumber: 6602 -employeeType: Contract -homePhone: +1 510 909-2174 -initials: M. M. -mobile: +1 510 669-5381 -pager: +1 510 573-8079 -roomNumber: 8390 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Brianne Takagi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brianne Takagi -sn: Takagi -description: This is Brianne Takagi's description -facsimileTelephoneNumber: +1 804 466-5025 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 306-5696 -title: Junior Peons Technician -userPassword: Password1 -uid: TakagiB -givenName: Brianne -mail: TakagiB@7e77b31039db4b1f99292c84f6f816dd.bitwarden.com -carLicense: NVUNT4 -departmentNumber: 3912 -employeeType: Employee -homePhone: +1 804 136-7607 -initials: B. T. -mobile: +1 804 908-8319 -pager: +1 804 209-4401 -roomNumber: 9972 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Azra Gravely,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Azra Gravely -sn: Gravely -description: This is Azra Gravely's description -facsimileTelephoneNumber: +1 804 791-6538 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 686-6179 -title: Chief Management Writer -userPassword: Password1 -uid: GravelyA -givenName: Azra -mail: GravelyA@9d243e3e32d54bc397a12d4839b23572.bitwarden.com -carLicense: GW6GQS -departmentNumber: 2088 -employeeType: Contract -homePhone: +1 804 712-4839 -initials: A. G. -mobile: +1 804 429-4182 -pager: +1 804 372-8296 -roomNumber: 8138 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Liza Centeno,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liza Centeno -sn: Centeno -description: This is Liza Centeno's description -facsimileTelephoneNumber: +1 510 345-2727 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 677-4552 -title: Chief Payroll Admin -userPassword: Password1 -uid: CentenoL -givenName: Liza -mail: CentenoL@1ea928fc24024e4dbf51eb3081589728.bitwarden.com -carLicense: GQ7SJG -departmentNumber: 4172 -employeeType: Normal -homePhone: +1 510 688-7587 -initials: L. C. -mobile: +1 510 903-1961 -pager: +1 510 953-2156 -roomNumber: 9674 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lendon Pinney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lendon Pinney -sn: Pinney -description: This is Lendon Pinney's description -facsimileTelephoneNumber: +1 415 262-5734 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 713-2471 -title: Master Administrative Fellow -userPassword: Password1 -uid: PinneyL -givenName: Lendon -mail: PinneyL@a5f5618aa6144295ac3ab97f28aa1603.bitwarden.com -carLicense: I94WB9 -departmentNumber: 7315 -employeeType: Contract -homePhone: +1 415 368-1367 -initials: L. P. -mobile: +1 415 965-9374 -pager: +1 415 328-9969 -roomNumber: 8226 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Madelina Naolu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelina Naolu -sn: Naolu -description: This is Madelina Naolu's description -facsimileTelephoneNumber: +1 510 734-9511 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 211-3008 -title: Supreme Management Vice President -userPassword: Password1 -uid: NaoluM -givenName: Madelina -mail: NaoluM@199586ae1c4d4a59ab291484dbf1f208.bitwarden.com -carLicense: WJBUR6 -departmentNumber: 6172 -employeeType: Contract -homePhone: +1 510 977-9452 -initials: M. N. -mobile: +1 510 562-6326 -pager: +1 510 438-7450 -roomNumber: 9336 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brittan Vela,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brittan Vela -sn: Vela -description: This is Brittan Vela's description -facsimileTelephoneNumber: +1 804 493-6385 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 122-1634 -title: Master Peons Admin -userPassword: Password1 -uid: VelaB -givenName: Brittan -mail: VelaB@156df7528958433faec56aa3b7184ead.bitwarden.com -carLicense: NJ4HP4 -departmentNumber: 5478 -employeeType: Contract -homePhone: +1 804 623-6710 -initials: B. V. -mobile: +1 804 538-9120 -pager: +1 804 884-4828 -roomNumber: 8082 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cinnamon Kadlecik -sn: Kadlecik -description: This is Cinnamon Kadlecik's description -facsimileTelephoneNumber: +1 415 736-8325 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 227-4707 -title: Master Product Development Warrior -userPassword: Password1 -uid: KadleciC -givenName: Cinnamon -mail: KadleciC@70df15a19e614b9f9f00a61890d75319.bitwarden.com -carLicense: 6JGTYH -departmentNumber: 5027 -employeeType: Employee -homePhone: +1 415 231-3921 -initials: C. K. -mobile: +1 415 364-2549 -pager: +1 415 725-7476 -roomNumber: 9688 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marcos Spicer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcos Spicer -sn: Spicer -description: This is Marcos Spicer's description -facsimileTelephoneNumber: +1 213 837-1431 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 542-5889 -title: Junior Product Development Artist -userPassword: Password1 -uid: SpicerM -givenName: Marcos -mail: SpicerM@261fb819d58341d6876f6a82736b49d4.bitwarden.com -carLicense: HLVK9K -departmentNumber: 6920 -employeeType: Normal -homePhone: +1 213 103-4605 -initials: M. S. -mobile: +1 213 705-5752 -pager: +1 213 912-7621 -roomNumber: 9671 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pierrette Deleon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pierrette Deleon -sn: Deleon -description: This is Pierrette Deleon's description -facsimileTelephoneNumber: +1 213 422-8301 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 840-4497 -title: Supreme Management Czar -userPassword: Password1 -uid: DeleonP -givenName: Pierrette -mail: DeleonP@2f494a0423d24f8a8e3580abe2a5af0b.bitwarden.com -carLicense: OY5XQY -departmentNumber: 6104 -employeeType: Employee -homePhone: +1 213 225-8321 -initials: P. D. -mobile: +1 213 612-3167 -pager: +1 213 299-9981 -roomNumber: 8235 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Darell Groth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darell Groth -sn: Groth -description: This is Darell Groth's description -facsimileTelephoneNumber: +1 415 453-3353 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 616-7737 -title: Junior Janitorial Architect -userPassword: Password1 -uid: GrothD -givenName: Darell -mail: GrothD@aea4d2f23326488f8ebab4665e7ef975.bitwarden.com -carLicense: S3853G -departmentNumber: 5936 -employeeType: Contract -homePhone: +1 415 338-5561 -initials: D. G. -mobile: +1 415 513-7359 -pager: +1 415 551-4194 -roomNumber: 8421 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Goutam Kosiorska -sn: Kosiorska -description: This is Goutam Kosiorska's description -facsimileTelephoneNumber: +1 804 417-1711 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 994-3463 -title: Chief Product Development Punk -userPassword: Password1 -uid: KosiorsG -givenName: Goutam -mail: KosiorsG@5d8558331520489684cb760b329247ae.bitwarden.com -carLicense: LP1RSR -departmentNumber: 8582 -employeeType: Contract -homePhone: +1 804 524-1035 -initials: G. K. -mobile: +1 804 447-3197 -pager: +1 804 518-9815 -roomNumber: 9163 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kathi Altman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathi Altman -sn: Altman -description: This is Kathi Altman's description -facsimileTelephoneNumber: +1 818 380-8519 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 711-7852 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: AltmanK -givenName: Kathi -mail: AltmanK@a99e1da0f5f2400991be09c17f6454e6.bitwarden.com -carLicense: C0IAV1 -departmentNumber: 1005 -employeeType: Employee -homePhone: +1 818 207-9995 -initials: K. A. -mobile: +1 818 521-9041 -pager: +1 818 671-3529 -roomNumber: 9340 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Moel Pieroway,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moel Pieroway -sn: Pieroway -description: This is Moel Pieroway's description -facsimileTelephoneNumber: +1 818 173-4504 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 818 533-2944 -title: Associate Janitorial Architect -userPassword: Password1 -uid: PierowaM -givenName: Moel -mail: PierowaM@cda870670aa345148330b4790dab0c4f.bitwarden.com -carLicense: RXX3SX -departmentNumber: 6410 -employeeType: Contract -homePhone: +1 818 234-8445 -initials: M. P. -mobile: +1 818 247-8998 -pager: +1 818 886-7057 -roomNumber: 9884 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mildred Fansher,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mildred Fansher -sn: Fansher -description: This is Mildred Fansher's description -facsimileTelephoneNumber: +1 804 652-7961 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 909-8149 -title: Supreme Product Testing Sales Rep -userPassword: Password1 -uid: FansherM -givenName: Mildred -mail: FansherM@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com -carLicense: 586GCO -departmentNumber: 4934 -employeeType: Contract -homePhone: +1 804 980-2345 -initials: M. F. -mobile: +1 804 147-4785 -pager: +1 804 712-9890 -roomNumber: 9822 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Georgina Hardersen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgina Hardersen -sn: Hardersen -description: This is Georgina Hardersen's description -facsimileTelephoneNumber: +1 415 560-1252 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 852-4700 -title: Chief Product Development Developer -userPassword: Password1 -uid: HardersG -givenName: Georgina -mail: HardersG@44875ebf52f643b9a40efca5b647bdaa.bitwarden.com -carLicense: ILAC43 -departmentNumber: 4347 -employeeType: Contract -homePhone: +1 415 760-6805 -initials: G. H. -mobile: +1 415 843-8649 -pager: +1 415 938-3445 -roomNumber: 9806 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rasia Jakim,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rasia Jakim -sn: Jakim -description: This is Rasia Jakim's description -facsimileTelephoneNumber: +1 510 901-7170 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 197-3700 -title: Associate Product Testing Writer -userPassword: Password1 -uid: JakimR -givenName: Rasia -mail: JakimR@3ee502270a97467c9f16bb82f0538bb5.bitwarden.com -carLicense: MIPNF7 -departmentNumber: 5279 -employeeType: Contract -homePhone: +1 510 741-5537 -initials: R. J. -mobile: +1 510 306-2447 -pager: +1 510 647-4841 -roomNumber: 9172 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rycca Satterfield,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rycca Satterfield -sn: Satterfield -description: This is Rycca Satterfield's description -facsimileTelephoneNumber: +1 408 273-3953 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 307-4090 -title: Supreme Peons Manager -userPassword: Password1 -uid: SatterfR -givenName: Rycca -mail: SatterfR@c385ba2c8b694dba82e626dc336023e5.bitwarden.com -carLicense: KCLCL7 -departmentNumber: 8297 -employeeType: Normal -homePhone: +1 408 219-4724 -initials: R. S. -mobile: +1 408 788-1067 -pager: +1 408 781-2588 -roomNumber: 8615 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ShingCheong Repeta -sn: Repeta -description: This is ShingCheong Repeta's description -facsimileTelephoneNumber: +1 415 901-9152 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 859-7658 -title: Master Janitorial Stooge -userPassword: Password1 -uid: RepetaS -givenName: ShingCheong -mail: RepetaS@1bf120076f9247a7ab75ce12810b0f67.bitwarden.com -carLicense: 2I8OGM -departmentNumber: 2059 -employeeType: Employee -homePhone: +1 415 755-1485 -initials: S. R. -mobile: +1 415 931-7697 -pager: +1 415 839-8603 -roomNumber: 9479 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mellisent Snuggs -sn: Snuggs -description: This is Mellisent Snuggs's description -facsimileTelephoneNumber: +1 818 955-3093 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 818 156-2415 -title: Chief Administrative Punk -userPassword: Password1 -uid: SnuggsM -givenName: Mellisent -mail: SnuggsM@a630ce95d42f4236ab637742fd96135d.bitwarden.com -carLicense: RCOJGQ -departmentNumber: 7690 -employeeType: Contract -homePhone: +1 818 206-8776 -initials: M. S. -mobile: +1 818 727-9620 -pager: +1 818 260-2916 -roomNumber: 8479 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonelle Schlichting -sn: Schlichting -description: This is Leonelle Schlichting's description -facsimileTelephoneNumber: +1 206 528-2019 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 230-1631 -title: Master Product Development Vice President -userPassword: Password1 -uid: SchlichL -givenName: Leonelle -mail: SchlichL@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com -carLicense: M83IH1 -departmentNumber: 3432 -employeeType: Contract -homePhone: +1 206 705-1853 -initials: L. S. -mobile: +1 206 470-9539 -pager: +1 206 180-3180 -roomNumber: 8357 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Merissa Jessup,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merissa Jessup -sn: Jessup -description: This is Merissa Jessup's description -facsimileTelephoneNumber: +1 213 832-2765 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 858-6936 -title: Supreme Management Admin -userPassword: Password1 -uid: JessupM -givenName: Merissa -mail: JessupM@369d31e12885450e8a3e646342f4bbde.bitwarden.com -carLicense: 81J6S2 -departmentNumber: 9394 -employeeType: Employee -homePhone: +1 213 815-8920 -initials: M. J. -mobile: +1 213 535-5903 -pager: +1 213 975-8239 -roomNumber: 8180 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Divine Zarate,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Divine Zarate -sn: Zarate -description: This is Divine Zarate's description -facsimileTelephoneNumber: +1 510 200-3016 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 510 818-3561 -title: Associate Administrative Punk -userPassword: Password1 -uid: ZarateD -givenName: Divine -mail: ZarateD@7e667bf109b34912922cf458a184f322.bitwarden.com -carLicense: TDTAES -departmentNumber: 7120 -employeeType: Employee -homePhone: +1 510 292-3354 -initials: D. Z. -mobile: +1 510 684-6786 -pager: +1 510 571-9781 -roomNumber: 8525 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nitin Wolfe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nitin Wolfe -sn: Wolfe -description: This is Nitin Wolfe's description -facsimileTelephoneNumber: +1 408 611-2360 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 628-1716 -title: Supreme Payroll Czar -userPassword: Password1 -uid: WolfeN -givenName: Nitin -mail: WolfeN@039ec15b8547455eb4745e09f294d624.bitwarden.com -carLicense: D9GR5N -departmentNumber: 6793 -employeeType: Contract -homePhone: +1 408 335-9835 -initials: N. W. -mobile: +1 408 215-9223 -pager: +1 408 255-6298 -roomNumber: 8290 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hattie Nakonecznyj -sn: Nakonecznyj -description: This is Hattie Nakonecznyj's description -facsimileTelephoneNumber: +1 415 535-6784 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 260-6775 -title: Master Peons Engineer -userPassword: Password1 -uid: NakonecH -givenName: Hattie -mail: NakonecH@49cff37188af4618a262c09381a363cd.bitwarden.com -carLicense: HTP1EE -departmentNumber: 4236 -employeeType: Employee -homePhone: +1 415 649-4347 -initials: H. N. -mobile: +1 415 173-4813 -pager: +1 415 860-2309 -roomNumber: 8469 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonnnie Giamberardino -sn: Giamberardino -description: This is Sonnnie Giamberardino's description -facsimileTelephoneNumber: +1 206 854-1511 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 422-3848 -title: Master Janitorial Assistant -userPassword: Password1 -uid: GiamberS -givenName: Sonnnie -mail: GiamberS@9f05691ac53d429c8fd30f6c6f952561.bitwarden.com -carLicense: 7IHRVT -departmentNumber: 9432 -employeeType: Contract -homePhone: +1 206 710-1502 -initials: S. G. -mobile: +1 206 726-8300 -pager: +1 206 229-3179 -roomNumber: 9356 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bijan Badjari,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bijan Badjari -sn: Badjari -description: This is Bijan Badjari's description -facsimileTelephoneNumber: +1 408 517-1538 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 408 254-1000 -title: Associate Human Resources Writer -userPassword: Password1 -uid: BadjariB -givenName: Bijan -mail: BadjariB@e541b0cd05024e9aa895d5ed50a51779.bitwarden.com -carLicense: IIIIC2 -departmentNumber: 3332 -employeeType: Normal -homePhone: +1 408 535-6602 -initials: B. B. -mobile: +1 408 971-8326 -pager: +1 408 335-5074 -roomNumber: 8420 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Margy Chartrand,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margy Chartrand -sn: Chartrand -description: This is Margy Chartrand's description -facsimileTelephoneNumber: +1 510 320-8936 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 510 364-8545 -title: Master Human Resources Madonna -userPassword: Password1 -uid: ChartraM -givenName: Margy -mail: ChartraM@b360982dfbca4b8284c115441a6deb86.bitwarden.com -carLicense: NISHEC -departmentNumber: 5758 -employeeType: Employee -homePhone: +1 510 367-8947 -initials: M. C. -mobile: +1 510 146-8694 -pager: +1 510 451-7095 -roomNumber: 9178 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jennica Pakulski -sn: Pakulski -description: This is Jennica Pakulski's description -facsimileTelephoneNumber: +1 804 121-7698 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 804 988-5318 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: PakulskJ -givenName: Jennica -mail: PakulskJ@60df7d7038c54074b580441075f8c5a1.bitwarden.com -carLicense: JJKNMC -departmentNumber: 1727 -employeeType: Normal -homePhone: +1 804 449-9864 -initials: J. P. -mobile: +1 804 206-4950 -pager: +1 804 567-1693 -roomNumber: 9230 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Velma Portz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Velma Portz -sn: Portz -description: This is Velma Portz's description -facsimileTelephoneNumber: +1 415 369-8305 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 450-5940 -title: Junior Product Development Architect -userPassword: Password1 -uid: PortzV -givenName: Velma -mail: PortzV@5c62b86b5031426bb36534810b45c481.bitwarden.com -carLicense: RG31PT -departmentNumber: 3469 -employeeType: Employee -homePhone: +1 415 765-9077 -initials: V. P. -mobile: +1 415 456-9027 -pager: +1 415 323-4038 -roomNumber: 9068 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dodie Bandel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dodie Bandel -sn: Bandel -description: This is Dodie Bandel's description -facsimileTelephoneNumber: +1 804 329-2840 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 296-8170 -title: Associate Payroll Admin -userPassword: Password1 -uid: BandelD -givenName: Dodie -mail: BandelD@ec5b72978f304decbd01b86ff428bb78.bitwarden.com -carLicense: TSMU9P -departmentNumber: 2324 -employeeType: Employee -homePhone: +1 804 461-8330 -initials: D. B. -mobile: +1 804 454-2072 -pager: +1 804 742-2189 -roomNumber: 8802 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norma Ramakrishna -sn: Ramakrishna -description: This is Norma Ramakrishna's description -facsimileTelephoneNumber: +1 415 971-1893 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 175-3937 -title: Supreme Payroll Janitor -userPassword: Password1 -uid: RamakriN -givenName: Norma -mail: RamakriN@9c001781a73c4c5f974258a47b94b6cb.bitwarden.com -carLicense: TXIUME -departmentNumber: 8616 -employeeType: Contract -homePhone: +1 415 992-7981 -initials: N. R. -mobile: +1 415 247-6483 -pager: +1 415 697-9138 -roomNumber: 9561 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynwood Tullius -sn: Tullius -description: This is Lynwood Tullius's description -facsimileTelephoneNumber: +1 804 928-7628 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 804 725-9522 -title: Associate Human Resources Writer -userPassword: Password1 -uid: TulliusL -givenName: Lynwood -mail: TulliusL@339dae1666c141369c4355c1dbcfe99d.bitwarden.com -carLicense: UILH3B -departmentNumber: 6332 -employeeType: Employee -homePhone: +1 804 980-2303 -initials: L. T. -mobile: +1 804 299-4198 -pager: +1 804 405-3473 -roomNumber: 8804 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Georgianne Bydeley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgianne Bydeley -sn: Bydeley -description: This is Georgianne Bydeley's description -facsimileTelephoneNumber: +1 206 966-4097 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 496-5995 -title: Supreme Management Stooge -userPassword: Password1 -uid: BydeleyG -givenName: Georgianne -mail: BydeleyG@44d6da32cc49457fb610dc6e02cea7ae.bitwarden.com -carLicense: EBFYSW -departmentNumber: 8804 -employeeType: Employee -homePhone: +1 206 458-1982 -initials: G. B. -mobile: +1 206 574-6134 -pager: +1 206 236-6734 -roomNumber: 8227 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvina Gadzinowski -sn: Gadzinowski -description: This is Alvina Gadzinowski's description -facsimileTelephoneNumber: +1 206 282-8469 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 206 838-2858 -title: Associate Administrative Punk -userPassword: Password1 -uid: GadzinoA -givenName: Alvina -mail: GadzinoA@f04933e85545445793e3a5773ee7f65d.bitwarden.com -carLicense: 6AM5VH -departmentNumber: 8118 -employeeType: Normal -homePhone: +1 206 274-9152 -initials: A. G. -mobile: +1 206 517-1006 -pager: +1 206 334-6770 -roomNumber: 8256 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Barbe Bolduc,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbe Bolduc -sn: Bolduc -description: This is Barbe Bolduc's description -facsimileTelephoneNumber: +1 213 580-8110 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 285-2106 -title: Associate Administrative Technician -userPassword: Password1 -uid: BolducB -givenName: Barbe -mail: BolducB@fa0238e4957946f6b30d70f1a6cdea6e.bitwarden.com -carLicense: 72NY5V -departmentNumber: 2341 -employeeType: Employee -homePhone: +1 213 974-5466 -initials: B. B. -mobile: +1 213 575-5348 -pager: +1 213 437-8000 -roomNumber: 8624 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shaylah Demren,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaylah Demren -sn: Demren -description: This is Shaylah Demren's description -facsimileTelephoneNumber: +1 818 269-7077 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 265-9087 -title: Master Product Testing Visionary -userPassword: Password1 -uid: DemrenS -givenName: Shaylah -mail: DemrenS@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com -carLicense: TFYDL1 -departmentNumber: 8907 -employeeType: Employee -homePhone: +1 818 823-1745 -initials: S. D. -mobile: +1 818 122-5062 -pager: +1 818 458-2973 -roomNumber: 8742 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Judith Delgrosse -sn: Delgrosse -description: This is Judith Delgrosse's description -facsimileTelephoneNumber: +1 408 497-8882 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 764-3698 -title: Master Product Testing Engineer -userPassword: Password1 -uid: DelgrosJ -givenName: Judith -mail: DelgrosJ@a5390b0a929f4049987256511e1011a2.bitwarden.com -carLicense: WAXSWV -departmentNumber: 9622 -employeeType: Employee -homePhone: +1 408 107-1029 -initials: J. D. -mobile: +1 408 728-6050 -pager: +1 408 719-2414 -roomNumber: 9292 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ngai Konarski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ngai Konarski -sn: Konarski -description: This is Ngai Konarski's description -facsimileTelephoneNumber: +1 818 213-9241 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 286-3393 -title: Chief Human Resources Architect -userPassword: Password1 -uid: KonarskN -givenName: Ngai -mail: KonarskN@626bd1f6b43c43b3acf4ec37c2237915.bitwarden.com -carLicense: JTV151 -departmentNumber: 7353 -employeeType: Contract -homePhone: +1 818 337-9294 -initials: N. K. -mobile: +1 818 985-4568 -pager: +1 818 357-4494 -roomNumber: 8139 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Candi Ashley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candi Ashley -sn: Ashley -description: This is Candi Ashley's description -facsimileTelephoneNumber: +1 408 354-7986 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 452-3981 -title: Associate Peons Janitor -userPassword: Password1 -uid: AshleyC -givenName: Candi -mail: AshleyC@66f011cdb9ae4854a875f5226891a8d2.bitwarden.com -carLicense: K26VNI -departmentNumber: 5123 -employeeType: Normal -homePhone: +1 408 764-8356 -initials: C. A. -mobile: +1 408 943-6980 -pager: +1 408 968-5798 -roomNumber: 8385 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Darko Ledoux,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darko Ledoux -sn: Ledoux -description: This is Darko Ledoux's description -facsimileTelephoneNumber: +1 206 406-9650 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 915-6377 -title: Supreme Product Testing Dictator -userPassword: Password1 -uid: LedouxD -givenName: Darko -mail: LedouxD@66ff0edd83674a479ab5a1db42900b12.bitwarden.com -carLicense: V33PCM -departmentNumber: 1014 -employeeType: Contract -homePhone: +1 206 861-1605 -initials: D. L. -mobile: +1 206 764-2836 -pager: +1 206 992-2552 -roomNumber: 9028 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Trish Laberge,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trish Laberge -sn: Laberge -description: This is Trish Laberge's description -facsimileTelephoneNumber: +1 213 594-3125 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 213 131-3756 -title: Supreme Payroll Developer -userPassword: Password1 -uid: LabergeT -givenName: Trish -mail: LabergeT@b22727f208b94d678a41e54f04994fdf.bitwarden.com -carLicense: 51NW7B -departmentNumber: 6991 -employeeType: Contract -homePhone: +1 213 866-2913 -initials: T. L. -mobile: +1 213 853-7200 -pager: +1 213 184-1581 -roomNumber: 8271 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reyna Iwanyk -sn: Iwanyk -description: This is Reyna Iwanyk's description -facsimileTelephoneNumber: +1 510 816-7473 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 298-4000 -title: Junior Administrative Madonna -userPassword: Password1 -uid: IwanykR -givenName: Reyna -mail: IwanykR@18e5c35995c74b678bc1c6a71ea65f36.bitwarden.com -carLicense: XKQH41 -departmentNumber: 4717 -employeeType: Employee -homePhone: +1 510 695-3658 -initials: R. I. -mobile: +1 510 628-8726 -pager: +1 510 221-3570 -roomNumber: 9642 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Charee Fiegel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charee Fiegel -sn: Fiegel -description: This is Charee Fiegel's description -facsimileTelephoneNumber: +1 213 991-2894 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 596-7338 -title: Junior Human Resources Engineer -userPassword: Password1 -uid: FiegelC -givenName: Charee -mail: FiegelC@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com -carLicense: U16HPP -departmentNumber: 3939 -employeeType: Employee -homePhone: +1 213 924-2046 -initials: C. F. -mobile: +1 213 311-9253 -pager: +1 213 511-9414 -roomNumber: 8418 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kunitaka Shields -sn: Shields -description: This is Kunitaka Shields's description -facsimileTelephoneNumber: +1 213 204-5108 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 246-6183 -title: Associate Janitorial Assistant -userPassword: Password1 -uid: ShieldsK -givenName: Kunitaka -mail: ShieldsK@2ce2f5b513b046bfb06414d7f59708f5.bitwarden.com -carLicense: S4MCDJ -departmentNumber: 5335 -employeeType: Normal -homePhone: +1 213 728-5527 -initials: K. S. -mobile: +1 213 371-1957 -pager: +1 213 793-2471 -roomNumber: 9077 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eirena McNeese,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eirena McNeese -sn: McNeese -description: This is Eirena McNeese's description -facsimileTelephoneNumber: +1 408 186-2609 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 293-7374 -title: Junior Payroll Assistant -userPassword: Password1 -uid: McNeeseE -givenName: Eirena -mail: McNeeseE@f62b6f62dd4e412b8c6adfcff16239c3.bitwarden.com -carLicense: U8A5H7 -departmentNumber: 8814 -employeeType: Contract -homePhone: +1 408 788-1797 -initials: E. M. -mobile: +1 408 992-3366 -pager: +1 408 239-6030 -roomNumber: 8001 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosemaria Bagnato -sn: Bagnato -description: This is Rosemaria Bagnato's description -facsimileTelephoneNumber: +1 415 712-8289 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 202-4610 -title: Master Payroll Vice President -userPassword: Password1 -uid: BagnatoR -givenName: Rosemaria -mail: BagnatoR@96705dd7d66249d08ee808bb87068456.bitwarden.com -carLicense: J5NLJ2 -departmentNumber: 9525 -employeeType: Employee -homePhone: +1 415 760-4158 -initials: R. B. -mobile: +1 415 972-8235 -pager: +1 415 104-3577 -roomNumber: 9397 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Meade Epting,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meade Epting -sn: Epting -description: This is Meade Epting's description -facsimileTelephoneNumber: +1 206 469-5801 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 911-1454 -title: Master Janitorial Dictator -userPassword: Password1 -uid: EptingM -givenName: Meade -mail: EptingM@1bd38dfda0ec498fac15746919a63a0e.bitwarden.com -carLicense: L2SOCO -departmentNumber: 5303 -employeeType: Normal -homePhone: +1 206 461-2128 -initials: M. E. -mobile: +1 206 639-7952 -pager: +1 206 769-6900 -roomNumber: 9680 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eliza Marko,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eliza Marko -sn: Marko -description: This is Eliza Marko's description -facsimileTelephoneNumber: +1 804 677-3157 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 587-9782 -title: Junior Product Development Czar -userPassword: Password1 -uid: MarkoE -givenName: Eliza -mail: MarkoE@133a4b05f8ad44cc8eb15c516c740da5.bitwarden.com -carLicense: S1R2JI -departmentNumber: 8902 -employeeType: Employee -homePhone: +1 804 334-8612 -initials: E. M. -mobile: +1 804 545-2380 -pager: +1 804 336-8136 -roomNumber: 8943 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Doll Crutchfield,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doll Crutchfield -sn: Crutchfield -description: This is Doll Crutchfield's description -facsimileTelephoneNumber: +1 408 669-6686 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 156-6659 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: CrutchfD -givenName: Doll -mail: CrutchfD@9daf174545b8499b9318f63ffd3e7799.bitwarden.com -carLicense: G7VOU5 -departmentNumber: 6907 -employeeType: Normal -homePhone: +1 408 346-6809 -initials: D. C. -mobile: +1 408 484-2006 -pager: +1 408 312-8649 -roomNumber: 9345 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sergei Edwards,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sergei Edwards -sn: Edwards -description: This is Sergei Edwards's description -facsimileTelephoneNumber: +1 206 102-8732 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 905-4104 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: EdwardsS -givenName: Sergei -mail: EdwardsS@c8261f605fed4bb494dcc3af9b18f70f.bitwarden.com -carLicense: OY1BQR -departmentNumber: 2416 -employeeType: Normal -homePhone: +1 206 274-1815 -initials: S. E. -mobile: +1 206 876-8256 -pager: +1 206 700-1175 -roomNumber: 8093 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Alfons Besson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alfons Besson -sn: Besson -description: This is Alfons Besson's description -facsimileTelephoneNumber: +1 818 753-5546 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 368-7288 -title: Chief Product Testing Janitor -userPassword: Password1 -uid: BessonA -givenName: Alfons -mail: BessonA@0bd56636704d4f8e85795d32a0415211.bitwarden.com -carLicense: G1IDGP -departmentNumber: 4973 -employeeType: Normal -homePhone: +1 818 917-4939 -initials: A. B. -mobile: +1 818 889-2697 -pager: +1 818 334-6200 -roomNumber: 9575 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Delmar Modl,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delmar Modl -sn: Modl -description: This is Delmar Modl's description -facsimileTelephoneNumber: +1 408 946-3349 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 292-3787 -title: Associate Human Resources Admin -userPassword: Password1 -uid: ModlD -givenName: Delmar -mail: ModlD@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com -carLicense: DKPMAL -departmentNumber: 4672 -employeeType: Contract -homePhone: +1 408 366-2463 -initials: D. M. -mobile: +1 408 282-2978 -pager: +1 408 802-7848 -roomNumber: 8492 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Peggie Jung,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peggie Jung -sn: Jung -description: This is Peggie Jung's description -facsimileTelephoneNumber: +1 415 374-8304 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 466-7315 -title: Chief Human Resources Admin -userPassword: Password1 -uid: JungP -givenName: Peggie -mail: JungP@8232aa6ebca6495b9948a8e1eab554ef.bitwarden.com -carLicense: XB767R -departmentNumber: 3295 -employeeType: Employee -homePhone: +1 415 729-2511 -initials: P. J. -mobile: +1 415 755-6322 -pager: +1 415 198-1579 -roomNumber: 9216 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mot Goodner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mot Goodner -sn: Goodner -description: This is Mot Goodner's description -facsimileTelephoneNumber: +1 408 628-8852 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 275-6401 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: GoodnerM -givenName: Mot -mail: GoodnerM@063f8384c6d241e7ae0483f33483eb45.bitwarden.com -carLicense: HNF68G -departmentNumber: 8280 -employeeType: Normal -homePhone: +1 408 704-4411 -initials: M. G. -mobile: +1 408 759-2206 -pager: +1 408 875-1668 -roomNumber: 9766 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatsuya Dyba -sn: Dyba -description: This is Tatsuya Dyba's description -facsimileTelephoneNumber: +1 206 199-2538 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 847-3171 -title: Associate Payroll Pinhead -userPassword: Password1 -uid: DybaT -givenName: Tatsuya -mail: DybaT@83c0abbf294449be8e1bdffedc43f527.bitwarden.com -carLicense: 5QV4YP -departmentNumber: 8655 -employeeType: Employee -homePhone: +1 206 888-2779 -initials: T. D. -mobile: +1 206 453-5177 -pager: +1 206 226-9419 -roomNumber: 8715 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shaine Davalo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaine Davalo -sn: Davalo -description: This is Shaine Davalo's description -facsimileTelephoneNumber: +1 804 509-4238 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 524-6236 -title: Supreme Payroll Stooge -userPassword: Password1 -uid: DavaloS -givenName: Shaine -mail: DavaloS@a4f85fecd69348a29728c8e242a790a2.bitwarden.com -carLicense: DE567H -departmentNumber: 4894 -employeeType: Normal -homePhone: +1 804 244-3087 -initials: S. D. -mobile: +1 804 149-2207 -pager: +1 804 248-6583 -roomNumber: 8379 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rod Hingtgen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rod Hingtgen -sn: Hingtgen -description: This is Rod Hingtgen's description -facsimileTelephoneNumber: +1 213 331-9264 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 935-4092 -title: Master Peons Grunt -userPassword: Password1 -uid: HingtgeR -givenName: Rod -mail: HingtgeR@3faad65411ee4934ba03cc2bc3936056.bitwarden.com -carLicense: QN4HWK -departmentNumber: 4108 -employeeType: Normal -homePhone: +1 213 857-8555 -initials: R. H. -mobile: +1 213 889-2286 -pager: +1 213 724-4011 -roomNumber: 9742 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maddalena Melton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maddalena Melton -sn: Melton -description: This is Maddalena Melton's description -facsimileTelephoneNumber: +1 510 477-5913 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 247-6090 -title: Chief Peons Vice President -userPassword: Password1 -uid: MeltonM -givenName: Maddalena -mail: MeltonM@a651bab618794291bf5129fe307f0c99.bitwarden.com -carLicense: 2GYVRG -departmentNumber: 7627 -employeeType: Normal -homePhone: +1 510 670-5149 -initials: M. M. -mobile: +1 510 441-8000 -pager: +1 510 877-5889 -roomNumber: 8993 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jilleen Odegaard -sn: Odegaard -description: This is Jilleen Odegaard's description -facsimileTelephoneNumber: +1 415 608-8230 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 810-9847 -title: Junior Product Development Visionary -userPassword: Password1 -uid: OdegaarJ -givenName: Jilleen -mail: OdegaarJ@06929a8dcdce40d387113e867b6564b6.bitwarden.com -carLicense: 1PW3SQ -departmentNumber: 5126 -employeeType: Contract -homePhone: +1 415 680-3033 -initials: J. O. -mobile: +1 415 833-2526 -pager: +1 415 685-9798 -roomNumber: 8015 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gusta Reavis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gusta Reavis -sn: Reavis -description: This is Gusta Reavis's description -facsimileTelephoneNumber: +1 206 793-5521 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 206 894-7508 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: ReavisG -givenName: Gusta -mail: ReavisG@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com -carLicense: VXAPRU -departmentNumber: 1829 -employeeType: Employee -homePhone: +1 206 990-7163 -initials: G. R. -mobile: +1 206 754-8926 -pager: +1 206 473-9934 -roomNumber: 9536 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ramanand Noy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramanand Noy -sn: Noy -description: This is Ramanand Noy's description -facsimileTelephoneNumber: +1 510 858-9345 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 510 868-5062 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: NoyR -givenName: Ramanand -mail: NoyR@ba4a8572e0bf488184d4e003cd863d22.bitwarden.com -carLicense: 453UQV -departmentNumber: 9335 -employeeType: Employee -homePhone: +1 510 712-8560 -initials: R. N. -mobile: +1 510 726-4766 -pager: +1 510 871-8935 -roomNumber: 9655 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tom Gowens,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tom Gowens -sn: Gowens -description: This is Tom Gowens's description -facsimileTelephoneNumber: +1 510 689-1597 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 580-2348 -title: Chief Peons Fellow -userPassword: Password1 -uid: GowensT -givenName: Tom -mail: GowensT@96ee5954dbf645b89509b54bd70ed6ad.bitwarden.com -carLicense: E4MH6X -departmentNumber: 9932 -employeeType: Normal -homePhone: +1 510 699-5762 -initials: T. G. -mobile: +1 510 655-7006 -pager: +1 510 969-4459 -roomNumber: 8407 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sayed Wilke,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sayed Wilke -sn: Wilke -description: This is Sayed Wilke's description -facsimileTelephoneNumber: +1 804 846-9855 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 731-2140 -title: Associate Product Development Madonna -userPassword: Password1 -uid: WilkeS -givenName: Sayed -mail: WilkeS@fb5b6de9664f4611ab52db8eaf7e1865.bitwarden.com -carLicense: 81J0HM -departmentNumber: 6498 -employeeType: Normal -homePhone: +1 804 673-2410 -initials: S. W. -mobile: +1 804 472-7132 -pager: +1 804 776-4253 -roomNumber: 9601 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeralee Kiefer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeralee Kiefer -sn: Kiefer -description: This is Jeralee Kiefer's description -facsimileTelephoneNumber: +1 206 333-9078 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 752-6292 -title: Master Peons Technician -userPassword: Password1 -uid: KieferJ -givenName: Jeralee -mail: KieferJ@59f15b077c4a4aa5be8ad6d7b944d5f8.bitwarden.com -carLicense: 40G3CN -departmentNumber: 5086 -employeeType: Normal -homePhone: +1 206 840-7327 -initials: J. K. -mobile: +1 206 961-5609 -pager: +1 206 115-5559 -roomNumber: 8353 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tatsuya Kayle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatsuya Kayle -sn: Kayle -description: This is Tatsuya Kayle's description -facsimileTelephoneNumber: +1 804 980-9110 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 738-3176 -title: Supreme Management President -userPassword: Password1 -uid: KayleT -givenName: Tatsuya -mail: KayleT@f8b43c88d3f64387bc14adfa5600c275.bitwarden.com -carLicense: 13G0KI -departmentNumber: 1704 -employeeType: Contract -homePhone: +1 804 773-1180 -initials: T. K. -mobile: +1 804 649-9286 -pager: +1 804 664-3069 -roomNumber: 8324 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgetta Mayea -sn: Mayea -description: This is Georgetta Mayea's description -facsimileTelephoneNumber: +1 818 270-1008 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 830-2179 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: MayeaG -givenName: Georgetta -mail: MayeaG@191c836466354fe5b2fec288c1d53713.bitwarden.com -carLicense: I6TIIN -departmentNumber: 3500 -employeeType: Employee -homePhone: +1 818 721-2417 -initials: G. M. -mobile: +1 818 531-3967 -pager: +1 818 586-1262 -roomNumber: 9524 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Roselin Zahn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roselin Zahn -sn: Zahn -description: This is Roselin Zahn's description -facsimileTelephoneNumber: +1 213 275-5938 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 625-1292 -title: Master Administrative Writer -userPassword: Password1 -uid: ZahnR -givenName: Roselin -mail: ZahnR@dccd68e9261a427bb9a86d2b2c52f7a3.bitwarden.com -carLicense: 4AN7O3 -departmentNumber: 5782 -employeeType: Contract -homePhone: +1 213 852-9902 -initials: R. Z. -mobile: +1 213 130-1093 -pager: +1 213 241-1232 -roomNumber: 9928 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shanda deRosenroll,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shanda deRosenroll -sn: deRosenroll -description: This is Shanda deRosenroll's description -facsimileTelephoneNumber: +1 510 344-8945 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 516-3871 -title: Supreme Management Dictator -userPassword: Password1 -uid: deRosenS -givenName: Shanda -mail: deRosenS@0c943e2aeb85477e9598d33254e476f5.bitwarden.com -carLicense: B7KPP9 -departmentNumber: 7358 -employeeType: Contract -homePhone: +1 510 526-8931 -initials: S. d. -mobile: +1 510 433-8181 -pager: +1 510 640-3275 -roomNumber: 9346 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Meriline Parkin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meriline Parkin -sn: Parkin -description: This is Meriline Parkin's description -facsimileTelephoneNumber: +1 206 165-4424 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 652-8775 -title: Junior Management Director -userPassword: Password1 -uid: ParkinM -givenName: Meriline -mail: ParkinM@e16d9a3a0fb84d70b44156f5d07a222e.bitwarden.com -carLicense: 3SENX7 -departmentNumber: 2805 -employeeType: Contract -homePhone: +1 206 387-9541 -initials: M. P. -mobile: +1 206 691-7175 -pager: +1 206 385-9344 -roomNumber: 8370 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Minnesota Milway,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minnesota Milway -sn: Milway -description: This is Minnesota Milway's description -facsimileTelephoneNumber: +1 206 559-9927 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 159-6748 -title: Master Product Development President -userPassword: Password1 -uid: MilwayM -givenName: Minnesota -mail: MilwayM@5ee7d2eaa5b3419f93a42aabfc799bb4.bitwarden.com -carLicense: LNGYNO -departmentNumber: 1004 -employeeType: Employee -homePhone: +1 206 582-6306 -initials: M. M. -mobile: +1 206 690-6523 -pager: +1 206 279-4163 -roomNumber: 9556 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Oren Keffer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oren Keffer -sn: Keffer -description: This is Oren Keffer's description -facsimileTelephoneNumber: +1 213 586-4464 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 167-1000 -title: Chief Product Testing Director -userPassword: Password1 -uid: KefferO -givenName: Oren -mail: KefferO@b6f50213a01240498d68877ca5ffab54.bitwarden.com -carLicense: 6YQV4Q -departmentNumber: 3474 -employeeType: Normal -homePhone: +1 213 709-2246 -initials: O. K. -mobile: +1 213 654-8258 -pager: +1 213 414-5085 -roomNumber: 9881 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emyle Nagendra -sn: Nagendra -description: This is Emyle Nagendra's description -facsimileTelephoneNumber: +1 213 324-3888 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 176-5854 -title: Associate Janitorial Developer -userPassword: Password1 -uid: NagendrE -givenName: Emyle -mail: NagendrE@4590d260de3b4f249929a3f2b344a0fd.bitwarden.com -carLicense: II8R06 -departmentNumber: 5505 -employeeType: Contract -homePhone: +1 213 901-2118 -initials: E. N. -mobile: +1 213 525-2111 -pager: +1 213 783-4351 -roomNumber: 8583 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Blanche Lantto,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blanche Lantto -sn: Lantto -description: This is Blanche Lantto's description -facsimileTelephoneNumber: +1 206 909-9105 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 192-3407 -title: Supreme Peons Technician -userPassword: Password1 -uid: LanttoB -givenName: Blanche -mail: LanttoB@349cbf4e75d847c1a3a3932212036d74.bitwarden.com -carLicense: HO0KAQ -departmentNumber: 3778 -employeeType: Normal -homePhone: +1 206 648-7831 -initials: B. L. -mobile: +1 206 555-1366 -pager: +1 206 855-3610 -roomNumber: 8441 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Penny Polakowski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Penny Polakowski -sn: Polakowski -description: This is Penny Polakowski's description -facsimileTelephoneNumber: +1 408 776-6391 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 398-8165 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: PolakowP -givenName: Penny -mail: PolakowP@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com -carLicense: 60XMHW -departmentNumber: 1433 -employeeType: Contract -homePhone: +1 408 513-4054 -initials: P. P. -mobile: +1 408 764-7308 -pager: +1 408 419-6179 -roomNumber: 8659 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cariotta Cripps -sn: Cripps -description: This is Cariotta Cripps's description -facsimileTelephoneNumber: +1 818 508-2566 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 878-2041 -title: Associate Janitorial Director -userPassword: Password1 -uid: CrippsC -givenName: Cariotta -mail: CrippsC@f90310b3f5d94fb4800c4388cf6d1cc2.bitwarden.com -carLicense: IUKNWU -departmentNumber: 1368 -employeeType: Contract -homePhone: +1 818 633-9973 -initials: C. C. -mobile: +1 818 333-9680 -pager: +1 818 370-1248 -roomNumber: 8950 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martguerita DeBernardo -sn: DeBernardo -description: This is Martguerita DeBernardo's description -facsimileTelephoneNumber: +1 804 692-3379 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 307-8322 -title: Junior Janitorial President -userPassword: Password1 -uid: DeBernaM -givenName: Martguerita -mail: DeBernaM@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com -carLicense: B26JIF -departmentNumber: 2468 -employeeType: Contract -homePhone: +1 804 399-8761 -initials: M. D. -mobile: +1 804 152-9645 -pager: +1 804 419-8897 -roomNumber: 9709 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Helene Halford,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helene Halford -sn: Halford -description: This is Helene Halford's description -facsimileTelephoneNumber: +1 206 315-8918 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 870-4552 -title: Master Product Testing Admin -userPassword: Password1 -uid: HalfordH -givenName: Helene -mail: HalfordH@f2c3f0652e32488088bedf6cc0ca618f.bitwarden.com -carLicense: 3GJC7H -departmentNumber: 6899 -employeeType: Employee -homePhone: +1 206 587-9978 -initials: H. H. -mobile: +1 206 735-8204 -pager: +1 206 789-4569 -roomNumber: 9261 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ladonna Kester,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ladonna Kester -sn: Kester -description: This is Ladonna Kester's description -facsimileTelephoneNumber: +1 206 268-7942 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 746-8409 -title: Associate Payroll Dictator -userPassword: Password1 -uid: KesterL -givenName: Ladonna -mail: KesterL@6bff82c20ec04cdbbb19d4912ec16456.bitwarden.com -carLicense: KGSR2B -departmentNumber: 1032 -employeeType: Contract -homePhone: +1 206 961-7138 -initials: L. K. -mobile: +1 206 246-3492 -pager: +1 206 688-5101 -roomNumber: 9319 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carling Castillo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carling Castillo -sn: Castillo -description: This is Carling Castillo's description -facsimileTelephoneNumber: +1 510 685-6595 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 510 911-5837 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: CastillC -givenName: Carling -mail: CastillC@433de9bdc40a4b9bbae4e765d431d11d.bitwarden.com -carLicense: 8AAOWI -departmentNumber: 1479 -employeeType: Normal -homePhone: +1 510 144-9636 -initials: C. C. -mobile: +1 510 899-9939 -pager: +1 510 119-1396 -roomNumber: 8905 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cark Redish,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cark Redish -sn: Redish -description: This is Cark Redish's description -facsimileTelephoneNumber: +1 818 255-8001 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 985-6042 -title: Chief Management Sales Rep -userPassword: Password1 -uid: RedishC -givenName: Cark -mail: RedishC@1ef32944592240fbbf9c689cd4db1d9c.bitwarden.com -carLicense: AB22RB -departmentNumber: 5714 -employeeType: Contract -homePhone: +1 818 513-3063 -initials: C. R. -mobile: +1 818 854-6936 -pager: +1 818 306-2136 -roomNumber: 9090 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Caresse Appenzeller,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caresse Appenzeller -sn: Appenzeller -description: This is Caresse Appenzeller's description -facsimileTelephoneNumber: +1 415 732-8080 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 964-4427 -title: Chief Peons Evangelist -userPassword: Password1 -uid: AppenzeC -givenName: Caresse -mail: AppenzeC@3986b5b118ef4d79a84f9f227789123a.bitwarden.com -carLicense: XEGN8B -departmentNumber: 2897 -employeeType: Normal -homePhone: +1 415 751-5524 -initials: C. A. -mobile: +1 415 168-8303 -pager: +1 415 935-6837 -roomNumber: 9818 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sheree Berman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheree Berman -sn: Berman -description: This is Sheree Berman's description -facsimileTelephoneNumber: +1 206 392-1926 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 206 884-4863 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: BermanS -givenName: Sheree -mail: BermanS@47d8b5e2575042d4a80d6e271d2326c7.bitwarden.com -carLicense: 83OJW2 -departmentNumber: 5739 -employeeType: Normal -homePhone: +1 206 212-1573 -initials: S. B. -mobile: +1 206 298-8626 -pager: +1 206 405-1654 -roomNumber: 8696 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Domenic Kawauchi -sn: Kawauchi -description: This is Domenic Kawauchi's description -facsimileTelephoneNumber: +1 818 896-3073 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 818 938-1763 -title: Master Administrative Mascot -userPassword: Password1 -uid: KawauchD -givenName: Domenic -mail: KawauchD@29d0d437b2c147b0847b9dd994ec881e.bitwarden.com -carLicense: U0G404 -departmentNumber: 9835 -employeeType: Contract -homePhone: +1 818 570-5922 -initials: D. K. -mobile: +1 818 758-7058 -pager: +1 818 322-1993 -roomNumber: 9909 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anabal Hathaway,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anabal Hathaway -sn: Hathaway -description: This is Anabal Hathaway's description -facsimileTelephoneNumber: +1 415 209-4388 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 789-4130 -title: Associate Payroll Admin -userPassword: Password1 -uid: HathawaA -givenName: Anabal -mail: HathawaA@e1f0d918bf004e4781bc8a3f9e7beec7.bitwarden.com -carLicense: YI5TPN -departmentNumber: 8570 -employeeType: Employee -homePhone: +1 415 472-6940 -initials: A. H. -mobile: +1 415 877-1231 -pager: +1 415 570-7968 -roomNumber: 9878 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Valma Keffer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valma Keffer -sn: Keffer -description: This is Valma Keffer's description -facsimileTelephoneNumber: +1 818 196-8071 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 228-2168 -title: Chief Product Testing Admin -userPassword: Password1 -uid: KefferV -givenName: Valma -mail: KefferV@986a560d23c841b7ad18f2717af5b696.bitwarden.com -carLicense: A3IMN7 -departmentNumber: 7052 -employeeType: Contract -homePhone: +1 818 385-4930 -initials: V. K. -mobile: +1 818 803-1131 -pager: +1 818 268-6955 -roomNumber: 8262 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Johnny Harron,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnny Harron -sn: Harron -description: This is Johnny Harron's description -facsimileTelephoneNumber: +1 510 752-5694 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 587-1761 -title: Master Payroll Developer -userPassword: Password1 -uid: HarronJ -givenName: Johnny -mail: HarronJ@47bdbe19b290413cb5defd6e606815e0.bitwarden.com -carLicense: R3X396 -departmentNumber: 2055 -employeeType: Employee -homePhone: +1 510 190-4905 -initials: J. H. -mobile: +1 510 950-9479 -pager: +1 510 762-4061 -roomNumber: 8021 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Channa Brokaw,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Channa Brokaw -sn: Brokaw -description: This is Channa Brokaw's description -facsimileTelephoneNumber: +1 804 887-7776 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 613-4693 -title: Junior Product Development Technician -userPassword: Password1 -uid: BrokawC -givenName: Channa -mail: BrokawC@38e93300da7643e5ac4629316f76753a.bitwarden.com -carLicense: 26WKRT -departmentNumber: 2286 -employeeType: Employee -homePhone: +1 804 832-8367 -initials: C. B. -mobile: +1 804 659-7286 -pager: +1 804 790-2470 -roomNumber: 8169 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Annabella Spaugh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annabella Spaugh -sn: Spaugh -description: This is Annabella Spaugh's description -facsimileTelephoneNumber: +1 804 571-8146 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 188-3625 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: SpaughA -givenName: Annabella -mail: SpaughA@5d66866885fa4ba8b5860161fb0bcacc.bitwarden.com -carLicense: 0FD5D2 -departmentNumber: 9791 -employeeType: Normal -homePhone: +1 804 905-3519 -initials: A. S. -mobile: +1 804 576-1878 -pager: +1 804 445-1929 -roomNumber: 8741 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Klink Sprott,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klink Sprott -sn: Sprott -description: This is Klink Sprott's description -facsimileTelephoneNumber: +1 415 782-4599 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 842-6375 -title: Associate Administrative Consultant -userPassword: Password1 -uid: SprottK -givenName: Klink -mail: SprottK@9f3b5a22f2e64763918674c31a32bd5a.bitwarden.com -carLicense: 1LOD1K -departmentNumber: 9156 -employeeType: Employee -homePhone: +1 415 697-4120 -initials: K. S. -mobile: +1 415 879-9315 -pager: +1 415 437-5341 -roomNumber: 9974 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Roe Reinboth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roe Reinboth -sn: Reinboth -description: This is Roe Reinboth's description -facsimileTelephoneNumber: +1 408 903-3757 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 368-6863 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: ReinbotR -givenName: Roe -mail: ReinbotR@b2fd618943ca4dea935bf3787a6a78e4.bitwarden.com -carLicense: Q732G9 -departmentNumber: 2668 -employeeType: Contract -homePhone: +1 408 185-7904 -initials: R. R. -mobile: +1 408 459-1916 -pager: +1 408 465-7652 -roomNumber: 9272 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cathrine Mashura,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathrine Mashura -sn: Mashura -description: This is Cathrine Mashura's description -facsimileTelephoneNumber: +1 408 627-4454 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 293-9415 -title: Chief Administrative Manager -userPassword: Password1 -uid: MashuraC -givenName: Cathrine -mail: MashuraC@b79da789d7414b6e8a980b044433c3d3.bitwarden.com -carLicense: IKJ4CX -departmentNumber: 4212 -employeeType: Contract -homePhone: +1 408 821-7816 -initials: C. M. -mobile: +1 408 878-8924 -pager: +1 408 985-9421 -roomNumber: 9575 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shigeru Rausch,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shigeru Rausch -sn: Rausch -description: This is Shigeru Rausch's description -facsimileTelephoneNumber: +1 510 804-1178 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 745-3958 -title: Associate Payroll Dictator -userPassword: Password1 -uid: RauschS -givenName: Shigeru -mail: RauschS@a811d1067f2b449da56503c72e375ae8.bitwarden.com -carLicense: RLEFU3 -departmentNumber: 3898 -employeeType: Contract -homePhone: +1 510 641-5603 -initials: S. R. -mobile: +1 510 486-4649 -pager: +1 510 786-3126 -roomNumber: 8422 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felicdad Mordecai -sn: Mordecai -description: This is Felicdad Mordecai's description -facsimileTelephoneNumber: +1 415 570-3633 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 565-5657 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: MordecaF -givenName: Felicdad -mail: MordecaF@b6b4b20435244397b513458a7683e69c.bitwarden.com -carLicense: GHO7GY -departmentNumber: 5413 -employeeType: Contract -homePhone: +1 415 461-8016 -initials: F. M. -mobile: +1 415 566-7296 -pager: +1 415 798-5803 -roomNumber: 9028 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ingeberg Eagles,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ingeberg Eagles -sn: Eagles -description: This is Ingeberg Eagles's description -facsimileTelephoneNumber: +1 206 473-7733 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 557-7998 -title: Junior Management President -userPassword: Password1 -uid: EaglesI -givenName: Ingeberg -mail: EaglesI@97f7053b3d7f4f79b48d3e12171a5966.bitwarden.com -carLicense: YTMSOB -departmentNumber: 1724 -employeeType: Contract -homePhone: +1 206 887-6940 -initials: I. E. -mobile: +1 206 723-2009 -pager: +1 206 755-9389 -roomNumber: 8266 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Arjun Auker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arjun Auker -sn: Auker -description: This is Arjun Auker's description -facsimileTelephoneNumber: +1 818 151-1537 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 818 651-5949 -title: Chief Peons Artist -userPassword: Password1 -uid: AukerA -givenName: Arjun -mail: AukerA@2128bddbba18456fa2818ae450ffa7ac.bitwarden.com -carLicense: 0NRLKC -departmentNumber: 5028 -employeeType: Contract -homePhone: +1 818 838-9773 -initials: A. A. -mobile: +1 818 585-8609 -pager: +1 818 595-6803 -roomNumber: 9810 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cary Gillot,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cary Gillot -sn: Gillot -description: This is Cary Gillot's description -facsimileTelephoneNumber: +1 510 829-6274 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 330-8732 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: GillotC -givenName: Cary -mail: GillotC@b51d43f798c74d31975bc185013ed233.bitwarden.com -carLicense: 0GJFL4 -departmentNumber: 6676 -employeeType: Normal -homePhone: +1 510 741-1716 -initials: C. G. -mobile: +1 510 727-5252 -pager: +1 510 576-8008 -roomNumber: 9312 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kishor Aurelius,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kishor Aurelius -sn: Aurelius -description: This is Kishor Aurelius's description -facsimileTelephoneNumber: +1 408 448-9344 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 483-3944 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: AureliuK -givenName: Kishor -mail: AureliuK@728cea3206cf4fc9b4edca0209470b11.bitwarden.com -carLicense: 0DJ7H8 -departmentNumber: 6598 -employeeType: Employee -homePhone: +1 408 405-4121 -initials: K. A. -mobile: +1 408 544-6242 -pager: +1 408 983-2748 -roomNumber: 9720 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mair Dragert,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mair Dragert -sn: Dragert -description: This is Mair Dragert's description -facsimileTelephoneNumber: +1 206 705-1652 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 340-7904 -title: Supreme Payroll Admin -userPassword: Password1 -uid: DragertM -givenName: Mair -mail: DragertM@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com -carLicense: SEHRGG -departmentNumber: 6009 -employeeType: Contract -homePhone: +1 206 584-5588 -initials: M. D. -mobile: +1 206 848-5146 -pager: +1 206 387-4967 -roomNumber: 9281 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebekah Renwick -sn: Renwick -description: This is Rebekah Renwick's description -facsimileTelephoneNumber: +1 415 944-4429 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 875-4528 -title: Master Janitorial Technician -userPassword: Password1 -uid: RenwickR -givenName: Rebekah -mail: RenwickR@38381f1b65fe45f69608a5bb47db5a8f.bitwarden.com -carLicense: 8I15QC -departmentNumber: 5396 -employeeType: Normal -homePhone: +1 415 270-7026 -initials: R. R. -mobile: +1 415 339-8687 -pager: +1 415 641-9894 -roomNumber: 8505 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nata Manson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nata Manson -sn: Manson -description: This is Nata Manson's description -facsimileTelephoneNumber: +1 415 592-9579 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 943-3842 -title: Junior Management Manager -userPassword: Password1 -uid: MansonN -givenName: Nata -mail: MansonN@845b538f36d146aba352dadcef98bffb.bitwarden.com -carLicense: WC4IAX -departmentNumber: 8548 -employeeType: Employee -homePhone: +1 415 343-8493 -initials: N. M. -mobile: +1 415 699-7105 -pager: +1 415 499-9318 -roomNumber: 9709 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carmody Stough,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmody Stough -sn: Stough -description: This is Carmody Stough's description -facsimileTelephoneNumber: +1 408 300-4625 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 478-7973 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: StoughC -givenName: Carmody -mail: StoughC@a7918ff0fc7e4212984f8187650b768f.bitwarden.com -carLicense: SC3AJ1 -departmentNumber: 6431 -employeeType: Employee -homePhone: +1 408 646-6323 -initials: C. S. -mobile: +1 408 345-6303 -pager: +1 408 149-7545 -roomNumber: 8980 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vilok Difrancesco -sn: Difrancesco -description: This is Vilok Difrancesco's description -facsimileTelephoneNumber: +1 408 381-5787 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 459-4381 -title: Supreme Payroll Vice President -userPassword: Password1 -uid: DifrancV -givenName: Vilok -mail: DifrancV@ebddca96ab0c40e5a0ba8c1fb15aae94.bitwarden.com -carLicense: VBBXB9 -departmentNumber: 8448 -employeeType: Normal -homePhone: +1 408 254-9275 -initials: V. D. -mobile: +1 408 958-6954 -pager: +1 408 840-2945 -roomNumber: 8871 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vicky Kenol,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vicky Kenol -sn: Kenol -description: This is Vicky Kenol's description -facsimileTelephoneNumber: +1 206 738-5694 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 795-6169 -title: Chief Human Resources Artist -userPassword: Password1 -uid: KenolV -givenName: Vicky -mail: KenolV@45ff518891da43879283e296db76d389.bitwarden.com -carLicense: O8RI0Q -departmentNumber: 3206 -employeeType: Employee -homePhone: +1 206 100-2185 -initials: V. K. -mobile: +1 206 858-7334 -pager: +1 206 867-1869 -roomNumber: 8405 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pulak Heidepriem -sn: Heidepriem -description: This is Pulak Heidepriem's description -facsimileTelephoneNumber: +1 408 507-2127 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 208-1343 -title: Master Product Development Punk -userPassword: Password1 -uid: HeideprP -givenName: Pulak -mail: HeideprP@a31a40edc37d48cd9f5a5a655ca23fe5.bitwarden.com -carLicense: GNPWME -departmentNumber: 2454 -employeeType: Contract -homePhone: +1 408 730-4583 -initials: P. H. -mobile: +1 408 852-7449 -pager: +1 408 794-9426 -roomNumber: 9132 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorelle Korf,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorelle Korf -sn: Korf -description: This is Lorelle Korf's description -facsimileTelephoneNumber: +1 510 931-6126 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 717-9949 -title: Master Peons Engineer -userPassword: Password1 -uid: KorfL -givenName: Lorelle -mail: KorfL@7446f3de45684b1e99747992ecfe40c7.bitwarden.com -carLicense: T5C5L2 -departmentNumber: 1693 -employeeType: Normal -homePhone: +1 510 787-9196 -initials: L. K. -mobile: +1 510 587-1356 -pager: +1 510 477-7045 -roomNumber: 8467 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Angele Dangubic,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angele Dangubic -sn: Dangubic -description: This is Angele Dangubic's description -facsimileTelephoneNumber: +1 804 482-8198 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 168-5427 -title: Junior Peons Janitor -userPassword: Password1 -uid: DangubiA -givenName: Angele -mail: DangubiA@ca2c9c0aaeee459a81fa3d98c982e91a.bitwarden.com -carLicense: QDD6MX -departmentNumber: 4522 -employeeType: Normal -homePhone: +1 804 947-4803 -initials: A. D. -mobile: +1 804 235-1206 -pager: +1 804 977-8775 -roomNumber: 8861 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ilene Knio,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilene Knio -sn: Knio -description: This is Ilene Knio's description -facsimileTelephoneNumber: +1 415 266-5968 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 995-3085 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: KnioI -givenName: Ilene -mail: KnioI@5ff6438f1a694a8f92d3363ddbe1a8ce.bitwarden.com -carLicense: LSEHCR -departmentNumber: 3442 -employeeType: Contract -homePhone: +1 415 919-4623 -initials: I. K. -mobile: +1 415 687-2586 -pager: +1 415 365-1315 -roomNumber: 8395 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olympia Wessenberg -sn: Wessenberg -description: This is Olympia Wessenberg's description -facsimileTelephoneNumber: +1 206 888-5403 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 830-4470 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: WessenbO -givenName: Olympia -mail: WessenbO@837254eeede24c15906b803e5cce94f7.bitwarden.com -carLicense: A5HBB6 -departmentNumber: 2460 -employeeType: Contract -homePhone: +1 206 142-6877 -initials: O. W. -mobile: +1 206 859-1553 -pager: +1 206 383-8382 -roomNumber: 9530 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Harrison Klodt,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harrison Klodt -sn: Klodt -description: This is Harrison Klodt's description -facsimileTelephoneNumber: +1 818 635-4868 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 278-8703 -title: Associate Administrative Madonna -userPassword: Password1 -uid: KlodtH -givenName: Harrison -mail: KlodtH@b76954384b1448b9a3c0a3ababf6bbf1.bitwarden.com -carLicense: MI38EW -departmentNumber: 2159 -employeeType: Employee -homePhone: +1 818 386-5887 -initials: H. K. -mobile: +1 818 679-1598 -pager: +1 818 214-3852 -roomNumber: 8694 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evangelo Coldwell -sn: Coldwell -description: This is Evangelo Coldwell's description -facsimileTelephoneNumber: +1 415 339-5154 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 829-4885 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: ColdwelE -givenName: Evangelo -mail: ColdwelE@87bc15d42d8444788089ff676f599c5a.bitwarden.com -carLicense: VNULMF -departmentNumber: 1398 -employeeType: Normal -homePhone: +1 415 568-7638 -initials: E. C. -mobile: +1 415 952-6762 -pager: +1 415 451-1533 -roomNumber: 9646 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Orel Hassenklover,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orel Hassenklover -sn: Hassenklover -description: This is Orel Hassenklover's description -facsimileTelephoneNumber: +1 804 919-4288 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 690-8672 -title: Supreme Product Development Manager -userPassword: Password1 -uid: HassenkO -givenName: Orel -mail: HassenkO@f7a64cd3ec3949d4af95967a5d1451ef.bitwarden.com -carLicense: HOMM19 -departmentNumber: 8358 -employeeType: Employee -homePhone: +1 804 517-1826 -initials: O. H. -mobile: +1 804 658-2923 -pager: +1 804 447-9015 -roomNumber: 9314 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sonya Hixson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonya Hixson -sn: Hixson -description: This is Sonya Hixson's description -facsimileTelephoneNumber: +1 510 861-4284 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 387-9969 -title: Master Janitorial Manager -userPassword: Password1 -uid: HixsonS -givenName: Sonya -mail: HixsonS@3778b1152af945109595a1f1ddb3f5dc.bitwarden.com -carLicense: A5QI7R -departmentNumber: 9355 -employeeType: Employee -homePhone: +1 510 816-5395 -initials: S. H. -mobile: +1 510 387-5943 -pager: +1 510 236-6800 -roomNumber: 9599 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glynn Fedoruk -sn: Fedoruk -description: This is Glynn Fedoruk's description -facsimileTelephoneNumber: +1 213 326-9852 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 138-3584 -title: Chief Product Testing Dictator -userPassword: Password1 -uid: FedorukG -givenName: Glynn -mail: FedorukG@7a4184a5b77e4684af64e06b6add415a.bitwarden.com -carLicense: A0DKLW -departmentNumber: 8169 -employeeType: Normal -homePhone: +1 213 412-9651 -initials: G. F. -mobile: +1 213 607-3026 -pager: +1 213 459-6262 -roomNumber: 9802 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Simen Pankhurst,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Simen Pankhurst -sn: Pankhurst -description: This is Simen Pankhurst's description -facsimileTelephoneNumber: +1 510 846-5841 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 105-5117 -title: Associate Product Development Engineer -userPassword: Password1 -uid: PankhurS -givenName: Simen -mail: PankhurS@dbbc0930b0d2479ca97fea1080c3afcd.bitwarden.com -carLicense: WN4KJR -departmentNumber: 1354 -employeeType: Employee -homePhone: +1 510 981-6822 -initials: S. P. -mobile: +1 510 873-9535 -pager: +1 510 288-7190 -roomNumber: 8592 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alberta Roddy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alberta Roddy -sn: Roddy -description: This is Alberta Roddy's description -facsimileTelephoneNumber: +1 213 890-9613 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 581-3679 -title: Chief Human Resources President -userPassword: Password1 -uid: RoddyA -givenName: Alberta -mail: RoddyA@2d701440ade24b4a93552262ff2dfc96.bitwarden.com -carLicense: 7CE2HD -departmentNumber: 7935 -employeeType: Contract -homePhone: +1 213 636-1409 -initials: A. R. -mobile: +1 213 322-8784 -pager: +1 213 906-7051 -roomNumber: 9803 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shelley Guitard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelley Guitard -sn: Guitard -description: This is Shelley Guitard's description -facsimileTelephoneNumber: +1 804 252-9359 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 775-5389 -title: Master Product Testing Czar -userPassword: Password1 -uid: GuitardS -givenName: Shelley -mail: GuitardS@8e847e0d62ad4699bde39672507969bb.bitwarden.com -carLicense: Q45NWP -departmentNumber: 6556 -employeeType: Employee -homePhone: +1 804 771-1758 -initials: S. G. -mobile: +1 804 524-8807 -pager: +1 804 934-3289 -roomNumber: 9760 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Benthem Aghili,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benthem Aghili -sn: Aghili -description: This is Benthem Aghili's description -facsimileTelephoneNumber: +1 818 453-6988 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 818 473-7130 -title: Master Administrative Visionary -userPassword: Password1 -uid: AghiliB -givenName: Benthem -mail: AghiliB@696db7ebc26e4f86a6552c4f6f755d76.bitwarden.com -carLicense: AM0GG3 -departmentNumber: 6289 -employeeType: Employee -homePhone: +1 818 816-7013 -initials: B. A. -mobile: +1 818 171-3595 -pager: +1 818 580-5904 -roomNumber: 9783 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlyn Wertz -sn: Wertz -description: This is Marlyn Wertz's description -facsimileTelephoneNumber: +1 804 358-3127 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 822-4716 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: WertzM -givenName: Marlyn -mail: WertzM@489cf71c67f540958c438bff00511d0c.bitwarden.com -carLicense: RBM7G8 -departmentNumber: 1604 -employeeType: Contract -homePhone: +1 804 153-9049 -initials: M. W. -mobile: +1 804 257-6081 -pager: +1 804 605-5744 -roomNumber: 9497 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anastasie Kabolizadeh -sn: Kabolizadeh -description: This is Anastasie Kabolizadeh's description -facsimileTelephoneNumber: +1 206 489-7199 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 135-7920 -title: Chief Administrative Engineer -userPassword: Password1 -uid: KabolizA -givenName: Anastasie -mail: KabolizA@238a8169b7ac4fc183a387c242aca7b9.bitwarden.com -carLicense: 4USMVC -departmentNumber: 1081 -employeeType: Employee -homePhone: +1 206 750-9957 -initials: A. K. -mobile: +1 206 867-9137 -pager: +1 206 527-2372 -roomNumber: 8619 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fifi Pitcher -sn: Pitcher -description: This is Fifi Pitcher's description -facsimileTelephoneNumber: +1 804 812-3171 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 620-8125 -title: Chief Janitorial Madonna -userPassword: Password1 -uid: PitcherF -givenName: Fifi -mail: PitcherF@dd8de5abce6e4941a35b4e391450cd5c.bitwarden.com -carLicense: 3RW0Y7 -departmentNumber: 3657 -employeeType: Employee -homePhone: +1 804 253-4329 -initials: F. P. -mobile: +1 804 860-3716 -pager: +1 804 265-5382 -roomNumber: 9102 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ganesh Ghantous -sn: Ghantous -description: This is Ganesh Ghantous's description -facsimileTelephoneNumber: +1 213 855-6035 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 302-8901 -title: Associate Administrative Writer -userPassword: Password1 -uid: GhantouG -givenName: Ganesh -mail: GhantouG@e17a5226a90e492eaba210445362135c.bitwarden.com -carLicense: PO4356 -departmentNumber: 1029 -employeeType: Contract -homePhone: +1 213 768-2262 -initials: G. G. -mobile: +1 213 528-6079 -pager: +1 213 556-5112 -roomNumber: 9232 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nad Sheth,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nad Sheth -sn: Sheth -description: This is Nad Sheth's description -facsimileTelephoneNumber: +1 206 681-4990 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 758-8801 -title: Master Peons Fellow -userPassword: Password1 -uid: ShethN -givenName: Nad -mail: ShethN@35cbe55d624d41aaa7e77e5513292711.bitwarden.com -carLicense: Y0ATHA -departmentNumber: 5227 -employeeType: Contract -homePhone: +1 206 855-1050 -initials: N. S. -mobile: +1 206 705-1687 -pager: +1 206 594-4915 -roomNumber: 8979 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Katherine AuYeung,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katherine AuYeung -sn: AuYeung -description: This is Katherine AuYeung's description -facsimileTelephoneNumber: +1 408 458-4246 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 162-1246 -title: Supreme Payroll Consultant -userPassword: Password1 -uid: AuYeungK -givenName: Katherine -mail: AuYeungK@eae289de16194f21b28831dbf07663de.bitwarden.com -carLicense: FI05J6 -departmentNumber: 6012 -employeeType: Normal -homePhone: +1 408 525-6000 -initials: K. A. -mobile: +1 408 874-8683 -pager: +1 408 652-8994 -roomNumber: 8503 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rollie Lohoar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rollie Lohoar -sn: Lohoar -description: This is Rollie Lohoar's description -facsimileTelephoneNumber: +1 510 641-8563 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 375-4042 -title: Master Payroll Grunt -userPassword: Password1 -uid: LohoarR -givenName: Rollie -mail: LohoarR@cd59c483d6b34aad846a7430fcfb5a39.bitwarden.com -carLicense: O68WCF -departmentNumber: 8594 -employeeType: Employee -homePhone: +1 510 752-4953 -initials: R. L. -mobile: +1 510 867-4835 -pager: +1 510 104-9619 -roomNumber: 8748 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Siamak Tullo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siamak Tullo -sn: Tullo -description: This is Siamak Tullo's description -facsimileTelephoneNumber: +1 804 565-9848 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 860-5881 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: TulloS -givenName: Siamak -mail: TulloS@2a24d3bec1324ab39148d09712ff8aba.bitwarden.com -carLicense: 23OEND -departmentNumber: 7327 -employeeType: Contract -homePhone: +1 804 713-5439 -initials: S. T. -mobile: +1 804 254-1510 -pager: +1 804 197-2004 -roomNumber: 8080 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marco Trautman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marco Trautman -sn: Trautman -description: This is Marco Trautman's description -facsimileTelephoneNumber: +1 408 594-4070 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 292-6671 -title: Associate Management Sales Rep -userPassword: Password1 -uid: TrautmaM -givenName: Marco -mail: TrautmaM@a94a4e703f55451099134b3aaeedccbb.bitwarden.com -carLicense: CI3HC4 -departmentNumber: 9962 -employeeType: Employee -homePhone: +1 408 211-3663 -initials: M. T. -mobile: +1 408 424-6929 -pager: +1 408 234-7964 -roomNumber: 8839 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=James Silgardo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: James Silgardo -sn: Silgardo -description: This is James Silgardo's description -facsimileTelephoneNumber: +1 206 691-2243 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 410-6818 -title: Master Payroll Technician -userPassword: Password1 -uid: SilgardJ -givenName: James -mail: SilgardJ@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com -carLicense: C3LG0A -departmentNumber: 4078 -employeeType: Employee -homePhone: +1 206 524-9091 -initials: J. S. -mobile: +1 206 887-8005 -pager: +1 206 912-7103 -roomNumber: 9029 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gipsy Letulle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gipsy Letulle -sn: Letulle -description: This is Gipsy Letulle's description -facsimileTelephoneNumber: +1 804 109-2413 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 268-9073 -title: Associate Product Development Punk -userPassword: Password1 -uid: LetulleG -givenName: Gipsy -mail: LetulleG@b0752d34718948e7a2486d5209bda8f9.bitwarden.com -carLicense: XROESL -departmentNumber: 4793 -employeeType: Contract -homePhone: +1 804 820-3077 -initials: G. L. -mobile: +1 804 513-3302 -pager: +1 804 838-3112 -roomNumber: 9168 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Missagh Breglec,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Missagh Breglec -sn: Breglec -description: This is Missagh Breglec's description -facsimileTelephoneNumber: +1 206 620-9376 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 376-8553 -title: Supreme Payroll Technician -userPassword: Password1 -uid: BreglecM -givenName: Missagh -mail: BreglecM@1808029426c342b7ba28a7e8e39e2911.bitwarden.com -carLicense: NF67U0 -departmentNumber: 5267 -employeeType: Employee -homePhone: +1 206 184-1479 -initials: M. B. -mobile: +1 206 584-8928 -pager: +1 206 409-2067 -roomNumber: 8780 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Debadeep Karass,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debadeep Karass -sn: Karass -description: This is Debadeep Karass's description -facsimileTelephoneNumber: +1 818 106-8278 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 728-3054 -title: Associate Product Development Czar -userPassword: Password1 -uid: KarassD -givenName: Debadeep -mail: KarassD@af9a07b0bce44bbab1d5d8279d6d460c.bitwarden.com -carLicense: ARETYF -departmentNumber: 8769 -employeeType: Contract -homePhone: +1 818 820-5819 -initials: D. K. -mobile: +1 818 758-6034 -pager: +1 818 820-6049 -roomNumber: 8868 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Madeline Bir,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madeline Bir -sn: Bir -description: This is Madeline Bir's description -facsimileTelephoneNumber: +1 804 400-1654 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 701-1594 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: BirM -givenName: Madeline -mail: BirM@f545ecd56a5b4fe0a9748924d28342ea.bitwarden.com -carLicense: 9MCJSY -departmentNumber: 2865 -employeeType: Employee -homePhone: +1 804 718-2078 -initials: M. B. -mobile: +1 804 596-3814 -pager: +1 804 380-7549 -roomNumber: 8790 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Betsey Doi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betsey Doi -sn: Doi -description: This is Betsey Doi's description -facsimileTelephoneNumber: +1 213 920-5446 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 367-2511 -title: Associate Administrative Czar -userPassword: Password1 -uid: DoiB -givenName: Betsey -mail: DoiB@d06dcad3fe8b46a4aa1b3d7dd28ff6b8.bitwarden.com -carLicense: B5DRP7 -departmentNumber: 8512 -employeeType: Normal -homePhone: +1 213 727-1989 -initials: B. D. -mobile: +1 213 510-1293 -pager: +1 213 157-4936 -roomNumber: 8055 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicoli Cuccioletta -sn: Cuccioletta -description: This is Nicoli Cuccioletta's description -facsimileTelephoneNumber: +1 408 719-9371 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 671-7059 -title: Junior Management Consultant -userPassword: Password1 -uid: CucciolN -givenName: Nicoli -mail: CucciolN@960fde1bd9064545ac557eb042ebf65f.bitwarden.com -carLicense: LT7FPI -departmentNumber: 5781 -employeeType: Normal -homePhone: +1 408 717-4207 -initials: N. C. -mobile: +1 408 381-9104 -pager: +1 408 220-7374 -roomNumber: 9576 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Indiana Schejbal,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Indiana Schejbal -sn: Schejbal -description: This is Indiana Schejbal's description -facsimileTelephoneNumber: +1 408 354-1722 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 615-2523 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: SchejbaI -givenName: Indiana -mail: SchejbaI@518638c8b3ee480098591bd6806de72a.bitwarden.com -carLicense: 8PX61W -departmentNumber: 5986 -employeeType: Employee -homePhone: +1 408 766-3985 -initials: I. S. -mobile: +1 408 324-6292 -pager: +1 408 574-5040 -roomNumber: 8654 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mickie Farhan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mickie Farhan -sn: Farhan -description: This is Mickie Farhan's description -facsimileTelephoneNumber: +1 206 966-8312 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 568-5737 -title: Associate Payroll Dictator -userPassword: Password1 -uid: FarhanM -givenName: Mickie -mail: FarhanM@0f5b6ac1af33425fb656b97b6e7eab9a.bitwarden.com -carLicense: N1O6LA -departmentNumber: 7394 -employeeType: Employee -homePhone: +1 206 957-6534 -initials: M. F. -mobile: +1 206 823-3425 -pager: +1 206 495-3388 -roomNumber: 9162 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cubicle McMann,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cubicle McMann -sn: McMann -description: This is Cubicle McMann's description -facsimileTelephoneNumber: +1 213 335-5774 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 953-7439 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: McMannC -givenName: Cubicle -mail: McMannC@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com -carLicense: L18JH0 -departmentNumber: 2497 -employeeType: Contract -homePhone: +1 213 762-7945 -initials: C. M. -mobile: +1 213 188-6957 -pager: +1 213 571-9454 -roomNumber: 9251 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Olva Mathewson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olva Mathewson -sn: Mathewson -description: This is Olva Mathewson's description -facsimileTelephoneNumber: +1 415 745-9234 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 986-5702 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: MathewsO -givenName: Olva -mail: MathewsO@ac12834971014a349fe6bc34d09caa36.bitwarden.com -carLicense: IX8D61 -departmentNumber: 3806 -employeeType: Normal -homePhone: +1 415 593-6427 -initials: O. M. -mobile: +1 415 239-9076 -pager: +1 415 185-2034 -roomNumber: 8984 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zero Mendelsohn -sn: Mendelsohn -description: This is Zero Mendelsohn's description -facsimileTelephoneNumber: +1 818 943-7473 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 818 517-9798 -title: Supreme Payroll Punk -userPassword: Password1 -uid: MendelsZ -givenName: Zero -mail: MendelsZ@89a8ded54db64032804dc4a0a9dd8e92.bitwarden.com -carLicense: 941KC7 -departmentNumber: 2754 -employeeType: Employee -homePhone: +1 818 680-1492 -initials: Z. M. -mobile: +1 818 315-6196 -pager: +1 818 677-7116 -roomNumber: 8381 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kieran Ogrodnik -sn: Ogrodnik -description: This is Kieran Ogrodnik's description -facsimileTelephoneNumber: +1 818 697-8196 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 945-6551 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: OgrodniK -givenName: Kieran -mail: OgrodniK@e9937b9d7b6b4088972a1d9b7e93eab7.bitwarden.com -carLicense: M156A7 -departmentNumber: 1133 -employeeType: Contract -homePhone: +1 818 689-9237 -initials: K. O. -mobile: +1 818 175-5490 -pager: +1 818 696-8075 -roomNumber: 9875 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kiet Strober,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiet Strober -sn: Strober -description: This is Kiet Strober's description -facsimileTelephoneNumber: +1 510 204-8870 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 788-2072 -title: Master Human Resources Writer -userPassword: Password1 -uid: StroberK -givenName: Kiet -mail: StroberK@e75e76fca3054696a0a6baace9df29b1.bitwarden.com -carLicense: C81SP6 -departmentNumber: 3622 -employeeType: Employee -homePhone: +1 510 206-4154 -initials: K. S. -mobile: +1 510 816-8726 -pager: +1 510 348-1764 -roomNumber: 8936 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Meggy Vardy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meggy Vardy -sn: Vardy -description: This is Meggy Vardy's description -facsimileTelephoneNumber: +1 818 195-4586 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 620-8407 -title: Master Product Testing Director -userPassword: Password1 -uid: VardyM -givenName: Meggy -mail: VardyM@e4b8fec602c641a384899f1d585d679d.bitwarden.com -carLicense: NK777L -departmentNumber: 1730 -employeeType: Contract -homePhone: +1 818 287-4471 -initials: M. V. -mobile: +1 818 130-7291 -pager: +1 818 219-8596 -roomNumber: 8552 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cyrine Marceau,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyrine Marceau -sn: Marceau -description: This is Cyrine Marceau's description -facsimileTelephoneNumber: +1 415 373-1965 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 552-7938 -title: Chief Management Consultant -userPassword: Password1 -uid: MarceauC -givenName: Cyrine -mail: MarceauC@7dbb126638b0419eb87d5c967cdeef20.bitwarden.com -carLicense: JXKOMQ -departmentNumber: 7267 -employeeType: Normal -homePhone: +1 415 236-5517 -initials: C. M. -mobile: +1 415 911-9185 -pager: +1 415 615-4530 -roomNumber: 8864 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willetta DeMartino -sn: DeMartino -description: This is Willetta DeMartino's description -facsimileTelephoneNumber: +1 510 690-5217 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 248-9533 -title: Chief Human Resources Czar -userPassword: Password1 -uid: DeMartiW -givenName: Willetta -mail: DeMartiW@a6a05053959845178f0fed6cc2cd11a0.bitwarden.com -carLicense: 9091L1 -departmentNumber: 4132 -employeeType: Contract -homePhone: +1 510 709-2706 -initials: W. D. -mobile: +1 510 730-8208 -pager: +1 510 263-1297 -roomNumber: 8760 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shigeki Merryweather -sn: Merryweather -description: This is Shigeki Merryweather's description -facsimileTelephoneNumber: +1 408 452-1830 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 539-1488 -title: Associate Payroll Artist -userPassword: Password1 -uid: MerryweS -givenName: Shigeki -mail: MerryweS@dac0acbfef7c4da38b10a60b872b2190.bitwarden.com -carLicense: 2XGKPG -departmentNumber: 3086 -employeeType: Normal -homePhone: +1 408 177-8980 -initials: S. M. -mobile: +1 408 664-8084 -pager: +1 408 680-8951 -roomNumber: 8569 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marilyn Wiklund -sn: Wiklund -description: This is Marilyn Wiklund's description -facsimileTelephoneNumber: +1 510 729-2999 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 510 563-7031 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: WiklundM -givenName: Marilyn -mail: WiklundM@092396cbb25f48afadfced942905695a.bitwarden.com -carLicense: BYUNA1 -departmentNumber: 4964 -employeeType: Employee -homePhone: +1 510 330-8594 -initials: M. W. -mobile: +1 510 555-5728 -pager: +1 510 641-9266 -roomNumber: 9099 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Junk Kopala,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Junk Kopala -sn: Kopala -description: This is Junk Kopala's description -facsimileTelephoneNumber: +1 213 963-7296 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 826-3746 -title: Associate Payroll Pinhead -userPassword: Password1 -uid: KopalaJ -givenName: Junk -mail: KopalaJ@1544abc377ba4785bbb0b6f87c091972.bitwarden.com -carLicense: HHJVDO -departmentNumber: 7555 -employeeType: Normal -homePhone: +1 213 436-4956 -initials: J. K. -mobile: +1 213 314-9581 -pager: +1 213 961-3671 -roomNumber: 9865 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Skipper Patenaude -sn: Patenaude -description: This is Skipper Patenaude's description -facsimileTelephoneNumber: +1 818 835-5899 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 818 626-2639 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: PatenauS -givenName: Skipper -mail: PatenauS@06d31112a23c438e8cd439e22e02ac63.bitwarden.com -carLicense: Q4K0KX -departmentNumber: 7095 -employeeType: Normal -homePhone: +1 818 785-2497 -initials: S. P. -mobile: +1 818 522-7594 -pager: +1 818 224-1174 -roomNumber: 9699 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sayed Novisedlak -sn: Novisedlak -description: This is Sayed Novisedlak's description -facsimileTelephoneNumber: +1 408 552-1403 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 406-1729 -title: Junior Janitorial Manager -userPassword: Password1 -uid: NovisedS -givenName: Sayed -mail: NovisedS@336eedf545cc414b822f9458db1323a8.bitwarden.com -carLicense: KAQL6K -departmentNumber: 1134 -employeeType: Employee -homePhone: +1 408 132-5181 -initials: S. N. -mobile: +1 408 589-8320 -pager: +1 408 671-2265 -roomNumber: 8246 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shandra Connell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shandra Connell -sn: Connell -description: This is Shandra Connell's description -facsimileTelephoneNumber: +1 213 480-4455 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 761-8256 -title: Associate Management Dictator -userPassword: Password1 -uid: ConnellS -givenName: Shandra -mail: ConnellS@4a1e113d03e64aa594660480aad5198e.bitwarden.com -carLicense: HIXWSU -departmentNumber: 3916 -employeeType: Contract -homePhone: +1 213 689-4096 -initials: S. C. -mobile: +1 213 858-9997 -pager: +1 213 806-7893 -roomNumber: 9568 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgeta Elhage -sn: Elhage -description: This is Georgeta Elhage's description -facsimileTelephoneNumber: +1 213 219-1717 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 351-4991 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: ElhageG -givenName: Georgeta -mail: ElhageG@293d6ba342f34ea39d2f2770c6975255.bitwarden.com -carLicense: RJYAQH -departmentNumber: 6789 -employeeType: Contract -homePhone: +1 213 851-2011 -initials: G. E. -mobile: +1 213 801-8481 -pager: +1 213 278-1586 -roomNumber: 9006 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Munaz Reynolds,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Munaz Reynolds -sn: Reynolds -description: This is Munaz Reynolds's description -facsimileTelephoneNumber: +1 510 305-4130 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 605-6360 -title: Associate Payroll Fellow -userPassword: Password1 -uid: ReynoldM -givenName: Munaz -mail: ReynoldM@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com -carLicense: L1FFCG -departmentNumber: 3939 -employeeType: Normal -homePhone: +1 510 396-1140 -initials: M. R. -mobile: +1 510 575-3686 -pager: +1 510 566-8868 -roomNumber: 8049 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lavinia LaBauve,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lavinia LaBauve -sn: LaBauve -description: This is Lavinia LaBauve's description -facsimileTelephoneNumber: +1 510 193-9241 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 773-4547 -title: Junior Peons Fellow -userPassword: Password1 -uid: LaBauveL -givenName: Lavinia -mail: LaBauveL@f327ac80229d48289e3f8a60345fbfd5.bitwarden.com -carLicense: I1MXOU -departmentNumber: 3860 -employeeType: Employee -homePhone: +1 510 740-7048 -initials: L. L. -mobile: +1 510 109-8256 -pager: +1 510 756-2305 -roomNumber: 9071 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lilllie Ruthart,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilllie Ruthart -sn: Ruthart -description: This is Lilllie Ruthart's description -facsimileTelephoneNumber: +1 510 162-2521 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 510 184-5496 -title: Chief Peons Grunt -userPassword: Password1 -uid: RuthartL -givenName: Lilllie -mail: RuthartL@6acb8cb6e83344b2baf0ea01b349a09b.bitwarden.com -carLicense: HSW9W7 -departmentNumber: 2841 -employeeType: Employee -homePhone: +1 510 168-2465 -initials: L. R. -mobile: +1 510 817-1471 -pager: +1 510 465-6807 -roomNumber: 9309 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mani Keseris,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mani Keseris -sn: Keseris -description: This is Mani Keseris's description -facsimileTelephoneNumber: +1 213 721-4544 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 362-2902 -title: Associate Payroll Developer -userPassword: Password1 -uid: KeserisM -givenName: Mani -mail: KeserisM@57025360fa6449ed9005168a07164ed8.bitwarden.com -carLicense: EN4D1G -departmentNumber: 4304 -employeeType: Contract -homePhone: +1 213 653-7975 -initials: M. K. -mobile: +1 213 177-5509 -pager: +1 213 234-3027 -roomNumber: 8205 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Graciela Waytowich -sn: Waytowich -description: This is Graciela Waytowich's description -facsimileTelephoneNumber: +1 415 635-7819 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 611-7165 -title: Chief Human Resources Warrior -userPassword: Password1 -uid: WaytowiG -givenName: Graciela -mail: WaytowiG@e70e64793c734e619d9d8bf0e6d8cc1c.bitwarden.com -carLicense: EIJ12S -departmentNumber: 7019 -employeeType: Contract -homePhone: +1 415 871-1485 -initials: G. W. -mobile: +1 415 405-8644 -pager: +1 415 515-8774 -roomNumber: 9086 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lilith LLoyd,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilith LLoyd -sn: LLoyd -description: This is Lilith LLoyd's description -facsimileTelephoneNumber: +1 510 632-9937 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 158-9302 -title: Chief Management Architect -userPassword: Password1 -uid: LLoydL -givenName: Lilith -mail: LLoydL@a459e619246a4d3d9371a8063ff33b21.bitwarden.com -carLicense: NGLV4E -departmentNumber: 5909 -employeeType: Contract -homePhone: +1 510 367-5793 -initials: L. L. -mobile: +1 510 555-2518 -pager: +1 510 667-7912 -roomNumber: 8531 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delmar Amavisca -sn: Amavisca -description: This is Delmar Amavisca's description -facsimileTelephoneNumber: +1 213 840-2080 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 213 331-8471 -title: Master Janitorial Stooge -userPassword: Password1 -uid: AmaviscD -givenName: Delmar -mail: AmaviscD@30695216554045458b82454ddcf12f1b.bitwarden.com -carLicense: EPGMVY -departmentNumber: 7448 -employeeType: Normal -homePhone: +1 213 746-9431 -initials: D. A. -mobile: +1 213 975-9175 -pager: +1 213 263-7489 -roomNumber: 8370 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Luann Rodger,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luann Rodger -sn: Rodger -description: This is Luann Rodger's description -facsimileTelephoneNumber: +1 804 180-6492 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 309-3966 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: RodgerL -givenName: Luann -mail: RodgerL@261ef8139c1b42bbacfd98b8697feff4.bitwarden.com -carLicense: G5FRCB -departmentNumber: 8570 -employeeType: Employee -homePhone: +1 804 805-1203 -initials: L. R. -mobile: +1 804 956-8900 -pager: +1 804 697-3170 -roomNumber: 9177 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Evania Keehan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evania Keehan -sn: Keehan -description: This is Evania Keehan's description -facsimileTelephoneNumber: +1 818 966-6995 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 817-8102 -title: Junior Administrative Engineer -userPassword: Password1 -uid: KeehanE -givenName: Evania -mail: KeehanE@a0c3665d3c4148ef8e46512bcb5851c5.bitwarden.com -carLicense: KGO9F9 -departmentNumber: 6873 -employeeType: Normal -homePhone: +1 818 437-5543 -initials: E. K. -mobile: +1 818 267-1440 -pager: +1 818 937-2842 -roomNumber: 9606 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vivianna Rassell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivianna Rassell -sn: Rassell -description: This is Vivianna Rassell's description -facsimileTelephoneNumber: +1 804 978-7292 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 884-7413 -title: Supreme Administrative Admin -userPassword: Password1 -uid: RassellV -givenName: Vivianna -mail: RassellV@0981876efcf54647a835b91b97400e9a.bitwarden.com -carLicense: NXFSPR -departmentNumber: 7070 -employeeType: Employee -homePhone: +1 804 493-2605 -initials: V. R. -mobile: +1 804 681-2647 -pager: +1 804 306-9123 -roomNumber: 9771 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rudie Dunlay,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rudie Dunlay -sn: Dunlay -description: This is Rudie Dunlay's description -facsimileTelephoneNumber: +1 818 562-1121 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 818 547-6309 -title: Associate Payroll Manager -userPassword: Password1 -uid: DunlayR -givenName: Rudie -mail: DunlayR@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com -carLicense: 2KNPBI -departmentNumber: 4179 -employeeType: Employee -homePhone: +1 818 692-8585 -initials: R. D. -mobile: +1 818 967-2773 -pager: +1 818 295-1766 -roomNumber: 8479 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Berti JantzLee,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berti JantzLee -sn: JantzLee -description: This is Berti JantzLee's description -facsimileTelephoneNumber: +1 804 667-3134 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 159-4360 -title: Master Human Resources Assistant -userPassword: Password1 -uid: JantzLeB -givenName: Berti -mail: JantzLeB@f36f9c3d244c4345b6d2788fe9994b43.bitwarden.com -carLicense: 8ONKAJ -departmentNumber: 5300 -employeeType: Employee -homePhone: +1 804 250-2087 -initials: B. J. -mobile: +1 804 882-4173 -pager: +1 804 659-1265 -roomNumber: 8359 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Aigneis Marghetis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aigneis Marghetis -sn: Marghetis -description: This is Aigneis Marghetis's description -facsimileTelephoneNumber: +1 804 670-3905 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 468-3036 -title: Master Peons Pinhead -userPassword: Password1 -uid: MarghetA -givenName: Aigneis -mail: MarghetA@bac50bb727ca4a11b9ee1a82a995bcf0.bitwarden.com -carLicense: 0EKQSO -departmentNumber: 9883 -employeeType: Normal -homePhone: +1 804 120-8399 -initials: A. M. -mobile: +1 804 682-9720 -pager: +1 804 447-7961 -roomNumber: 8907 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gordon Buhler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gordon Buhler -sn: Buhler -description: This is Gordon Buhler's description -facsimileTelephoneNumber: +1 510 939-5286 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 710-4251 -title: Associate Management Dictator -userPassword: Password1 -uid: BuhlerG -givenName: Gordon -mail: BuhlerG@3e44eebfdc184e219c5f14c3aca38333.bitwarden.com -carLicense: 7OJQ96 -departmentNumber: 8998 -employeeType: Employee -homePhone: +1 510 700-1765 -initials: G. B. -mobile: +1 510 567-8574 -pager: +1 510 206-9302 -roomNumber: 9942 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berton Shayanpour -sn: Shayanpour -description: This is Berton Shayanpour's description -facsimileTelephoneNumber: +1 804 675-3525 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 804 228-8297 -title: Chief Product Testing Admin -userPassword: Password1 -uid: ShayanpB -givenName: Berton -mail: ShayanpB@4c5d84de03674c49a48c822bd1b74d2d.bitwarden.com -carLicense: M47HGS -departmentNumber: 8156 -employeeType: Contract -homePhone: +1 804 319-7197 -initials: B. S. -mobile: +1 804 871-9839 -pager: +1 804 110-7539 -roomNumber: 8120 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Austine ODale,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Austine ODale -sn: ODale -description: This is Austine ODale's description -facsimileTelephoneNumber: +1 415 463-3723 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 415 919-3274 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: ODaleA -givenName: Austine -mail: ODaleA@343f0f593aa240c5b8dbc9d9fe3ab95e.bitwarden.com -carLicense: 9ER0EB -departmentNumber: 5489 -employeeType: Contract -homePhone: +1 415 340-9545 -initials: A. O. -mobile: +1 415 544-6271 -pager: +1 415 335-4822 -roomNumber: 9141 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lab Carstensen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lab Carstensen -sn: Carstensen -description: This is Lab Carstensen's description -facsimileTelephoneNumber: +1 818 311-7542 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 664-2864 -title: Chief Product Testing Figurehead -userPassword: Password1 -uid: CarstenL -givenName: Lab -mail: CarstenL@fc0c286626334794ab4a83e723107bf2.bitwarden.com -carLicense: J1E0MJ -departmentNumber: 9431 -employeeType: Contract -homePhone: +1 818 600-2659 -initials: L. C. -mobile: +1 818 327-1360 -pager: +1 818 490-1890 -roomNumber: 9130 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Amalita Smith,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amalita Smith -sn: Smith -description: This is Amalita Smith's description -facsimileTelephoneNumber: +1 818 344-4553 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 818 987-6004 -title: Supreme Peons Developer -userPassword: Password1 -uid: SmithA -givenName: Amalita -mail: SmithA@21813dd069254b74bf250b7db15a806f.bitwarden.com -carLicense: 0OYDK8 -departmentNumber: 4890 -employeeType: Contract -homePhone: +1 818 145-4215 -initials: A. S. -mobile: +1 818 705-2729 -pager: +1 818 311-4413 -roomNumber: 8521 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Barbe Degen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbe Degen -sn: Degen -description: This is Barbe Degen's description -facsimileTelephoneNumber: +1 408 381-2566 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 728-1179 -title: Chief Management Visionary -userPassword: Password1 -uid: DegenB -givenName: Barbe -mail: DegenB@438e70287f6d4d35a04d438ca352f234.bitwarden.com -carLicense: WLQADV -departmentNumber: 6774 -employeeType: Normal -homePhone: +1 408 794-5663 -initials: B. D. -mobile: +1 408 833-1842 -pager: +1 408 201-4852 -roomNumber: 8141 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ros Varkel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ros Varkel -sn: Varkel -description: This is Ros Varkel's description -facsimileTelephoneNumber: +1 818 222-9633 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 584-8438 -title: Junior Human Resources Artist -userPassword: Password1 -uid: VarkelR -givenName: Ros -mail: VarkelR@c67a6c3f272e49d89894436b34e568ce.bitwarden.com -carLicense: VWNV0G -departmentNumber: 8832 -employeeType: Employee -homePhone: +1 818 666-3415 -initials: R. V. -mobile: +1 818 186-1835 -pager: +1 818 648-5230 -roomNumber: 9080 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anissa Belley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anissa Belley -sn: Belley -description: This is Anissa Belley's description -facsimileTelephoneNumber: +1 206 138-9533 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 161-8533 -title: Master Janitorial Writer -userPassword: Password1 -uid: BelleyA -givenName: Anissa -mail: BelleyA@7e7373daa08d4a3b834f2e415978d199.bitwarden.com -carLicense: UIWL08 -departmentNumber: 1177 -employeeType: Normal -homePhone: +1 206 689-4908 -initials: A. B. -mobile: +1 206 180-3289 -pager: +1 206 432-1424 -roomNumber: 8312 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Khurshid Balsas,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khurshid Balsas -sn: Balsas -description: This is Khurshid Balsas's description -facsimileTelephoneNumber: +1 206 789-2804 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 290-8602 -title: Junior Peons Madonna -userPassword: Password1 -uid: BalsasK -givenName: Khurshid -mail: BalsasK@83f450f8e8ed4c6282bc25450b6af548.bitwarden.com -carLicense: B6FGYC -departmentNumber: 1758 -employeeType: Contract -homePhone: +1 206 820-3738 -initials: K. B. -mobile: +1 206 809-9032 -pager: +1 206 448-2492 -roomNumber: 8080 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Amata Byers,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amata Byers -sn: Byers -description: This is Amata Byers's description -facsimileTelephoneNumber: +1 206 936-9740 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 894-8262 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: ByersA -givenName: Amata -mail: ByersA@ec1ddd180ec346c9ac4e8ff1fbae4cee.bitwarden.com -carLicense: CKEQO2 -departmentNumber: 1401 -employeeType: Contract -homePhone: +1 206 550-3663 -initials: A. B. -mobile: +1 206 293-7277 -pager: +1 206 418-9343 -roomNumber: 8578 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tonya Brough,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonya Brough -sn: Brough -description: This is Tonya Brough's description -facsimileTelephoneNumber: +1 415 810-7857 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 415 243-2286 -title: Associate Administrative Sales Rep -userPassword: Password1 -uid: BroughT -givenName: Tonya -mail: BroughT@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com -carLicense: 39A2UC -departmentNumber: 3094 -employeeType: Normal -homePhone: +1 415 390-8509 -initials: T. B. -mobile: +1 415 713-1210 -pager: +1 415 878-7336 -roomNumber: 8926 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nancy Stocker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nancy Stocker -sn: Stocker -description: This is Nancy Stocker's description -facsimileTelephoneNumber: +1 804 745-9004 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 309-8977 -title: Chief Peons Fellow -userPassword: Password1 -uid: StockerN -givenName: Nancy -mail: StockerN@bc24a263fb344aa0a892bcbfdbc90a0d.bitwarden.com -carLicense: F0Y3VA -departmentNumber: 2277 -employeeType: Contract -homePhone: +1 804 741-8797 -initials: N. S. -mobile: +1 804 528-4595 -pager: +1 804 852-9975 -roomNumber: 8146 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Analiese Hooper,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Analiese Hooper -sn: Hooper -description: This is Analiese Hooper's description -facsimileTelephoneNumber: +1 818 245-7189 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 332-3995 -title: Chief Human Resources Janitor -userPassword: Password1 -uid: HooperA -givenName: Analiese -mail: HooperA@d28a39336adb48ccb95a57463d617dbb.bitwarden.com -carLicense: 75X04W -departmentNumber: 1216 -employeeType: Normal -homePhone: +1 818 259-5721 -initials: A. H. -mobile: +1 818 660-7861 -pager: +1 818 991-4033 -roomNumber: 8006 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mikelis Chaves,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mikelis Chaves -sn: Chaves -description: This is Mikelis Chaves's description -facsimileTelephoneNumber: +1 213 972-8208 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 994-4220 -title: Supreme Administrative Admin -userPassword: Password1 -uid: ChavesM -givenName: Mikelis -mail: ChavesM@cff151d12e624a459ab90891be7ad6d7.bitwarden.com -carLicense: E1IAWY -departmentNumber: 9589 -employeeType: Contract -homePhone: +1 213 472-3452 -initials: M. C. -mobile: +1 213 424-4503 -pager: +1 213 667-3891 -roomNumber: 9590 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Liv Ayukawa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liv Ayukawa -sn: Ayukawa -description: This is Liv Ayukawa's description -facsimileTelephoneNumber: +1 818 137-1074 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 328-7978 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: AyukawaL -givenName: Liv -mail: AyukawaL@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com -carLicense: TWA64R -departmentNumber: 5597 -employeeType: Employee -homePhone: +1 818 159-7868 -initials: L. A. -mobile: +1 818 752-1120 -pager: +1 818 318-4455 -roomNumber: 8459 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Amir Andre,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amir Andre -sn: Andre -description: This is Amir Andre's description -facsimileTelephoneNumber: +1 818 325-3694 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 937-8128 -title: Chief Peons Stooge -userPassword: Password1 -uid: AndreA -givenName: Amir -mail: AndreA@6689aec4c2e947e78e303762aa98dbd3.bitwarden.com -carLicense: H3JIRI -departmentNumber: 6376 -employeeType: Contract -homePhone: +1 818 530-7719 -initials: A. A. -mobile: +1 818 257-6169 -pager: +1 818 591-5766 -roomNumber: 8424 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KaiMing Hetzel -sn: Hetzel -description: This is KaiMing Hetzel's description -facsimileTelephoneNumber: +1 213 156-9924 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 213 106-2291 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: HetzelK -givenName: KaiMing -mail: HetzelK@ad005e1f3e2c4d6ba75c2d9c48687591.bitwarden.com -carLicense: 12DO9B -departmentNumber: 7823 -employeeType: Employee -homePhone: +1 213 105-1823 -initials: K. H. -mobile: +1 213 775-2530 -pager: +1 213 305-5364 -roomNumber: 8622 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jacob Mahin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacob Mahin -sn: Mahin -description: This is Jacob Mahin's description -facsimileTelephoneNumber: +1 510 602-7294 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 946-5214 -title: Associate Management Mascot -userPassword: Password1 -uid: MahinJ -givenName: Jacob -mail: MahinJ@2f1e5586c9f34c7a81a461c2017b9960.bitwarden.com -carLicense: PMAQYR -departmentNumber: 3157 -employeeType: Normal -homePhone: +1 510 781-6155 -initials: J. M. -mobile: +1 510 374-3022 -pager: +1 510 900-6625 -roomNumber: 8141 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Genvieve Albers,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genvieve Albers -sn: Albers -description: This is Genvieve Albers's description -facsimileTelephoneNumber: +1 818 642-2534 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 956-2742 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: AlbersG -givenName: Genvieve -mail: AlbersG@d236a57ac59c480697085ae127e79e8f.bitwarden.com -carLicense: Y9C3GU -departmentNumber: 9738 -employeeType: Contract -homePhone: +1 818 266-7475 -initials: G. A. -mobile: +1 818 987-8595 -pager: +1 818 147-9431 -roomNumber: 8355 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mallory Xenos,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mallory Xenos -sn: Xenos -description: This is Mallory Xenos's description -facsimileTelephoneNumber: +1 818 325-4613 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 108-9920 -title: Junior Administrative Fellow -userPassword: Password1 -uid: XenosM -givenName: Mallory -mail: XenosM@280cee7caed9430b8fa7be7309b39563.bitwarden.com -carLicense: 2U08QH -departmentNumber: 8049 -employeeType: Contract -homePhone: +1 818 351-8805 -initials: M. X. -mobile: +1 818 393-2613 -pager: +1 818 404-5750 -roomNumber: 9698 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosalyn Pulcher -sn: Pulcher -description: This is Rosalyn Pulcher's description -facsimileTelephoneNumber: +1 206 861-9575 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 929-5753 -title: Chief Peons Manager -userPassword: Password1 -uid: PulcherR -givenName: Rosalyn -mail: PulcherR@98ee1decab4b4712b60ec9828a0d8c3a.bitwarden.com -carLicense: GPFI98 -departmentNumber: 9534 -employeeType: Normal -homePhone: +1 206 159-9721 -initials: R. P. -mobile: +1 206 756-8840 -pager: +1 206 439-3119 -roomNumber: 8584 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Christie Shapiro,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christie Shapiro -sn: Shapiro -description: This is Christie Shapiro's description -facsimileTelephoneNumber: +1 415 691-4249 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 358-7380 -title: Junior Janitorial Writer -userPassword: Password1 -uid: ShapiroC -givenName: Christie -mail: ShapiroC@0460dcc544ed4a46a87c85b64c5ff202.bitwarden.com -carLicense: RUITTL -departmentNumber: 6663 -employeeType: Employee -homePhone: +1 415 759-5817 -initials: C. S. -mobile: +1 415 590-4813 -pager: +1 415 512-9663 -roomNumber: 9559 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jackie Au,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jackie Au -sn: Au -description: This is Jackie Au's description -facsimileTelephoneNumber: +1 408 895-5263 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 415-3833 -title: Associate Payroll Manager -userPassword: Password1 -uid: AuJ -givenName: Jackie -mail: AuJ@5093424433404df7a9b5d20a18b7ae60.bitwarden.com -carLicense: AV2M08 -departmentNumber: 8570 -employeeType: Employee -homePhone: +1 408 176-9260 -initials: J. A. -mobile: +1 408 906-6116 -pager: +1 408 886-8722 -roomNumber: 8795 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ray Muttaqi -sn: Muttaqi -description: This is Ray Muttaqi's description -facsimileTelephoneNumber: +1 408 309-8785 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 304-9728 -title: Junior Human Resources Manager -userPassword: Password1 -uid: MuttaqiR -givenName: Ray -mail: MuttaqiR@8aca496809cf4238a39dc0c2b2a9c742.bitwarden.com -carLicense: J4GKAM -departmentNumber: 6212 -employeeType: Contract -homePhone: +1 408 643-4409 -initials: R. M. -mobile: +1 408 367-9584 -pager: +1 408 505-9169 -roomNumber: 9348 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marshall Paine,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marshall Paine -sn: Paine -description: This is Marshall Paine's description -facsimileTelephoneNumber: +1 818 741-6419 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 658-6711 -title: Junior Human Resources Fellow -userPassword: Password1 -uid: PaineM -givenName: Marshall -mail: PaineM@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com -carLicense: 2MFUYT -departmentNumber: 6506 -employeeType: Normal -homePhone: +1 818 167-5166 -initials: M. P. -mobile: +1 818 517-7361 -pager: +1 818 369-2745 -roomNumber: 9960 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doreen DeBoer -sn: DeBoer -description: This is Doreen DeBoer's description -facsimileTelephoneNumber: +1 213 313-4638 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 458-7478 -title: Junior Human Resources Developer -userPassword: Password1 -uid: DeBoerD -givenName: Doreen -mail: DeBoerD@f7e815f56fc1472f8f953f85688ba7a4.bitwarden.com -carLicense: QNL664 -departmentNumber: 9217 -employeeType: Contract -homePhone: +1 213 490-8224 -initials: D. D. -mobile: +1 213 122-1521 -pager: +1 213 222-2255 -roomNumber: 8755 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roman Materna,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roman Materna -sn: Materna -description: This is Roman Materna's description -facsimileTelephoneNumber: +1 408 749-6855 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 381-4961 -title: Chief Product Development Janitor -userPassword: Password1 -uid: MaternaR -givenName: Roman -mail: MaternaR@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com -carLicense: LN2WFJ -departmentNumber: 1231 -employeeType: Normal -homePhone: +1 408 710-1579 -initials: R. M. -mobile: +1 408 272-9480 -pager: +1 408 647-1101 -roomNumber: 8558 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jerald Gutcher,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jerald Gutcher -sn: Gutcher -description: This is Jerald Gutcher's description -facsimileTelephoneNumber: +1 213 493-5479 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 633-1427 -title: Associate Management Grunt -userPassword: Password1 -uid: GutcherJ -givenName: Jerald -mail: GutcherJ@422dc77807144e50a50666d3791c65d7.bitwarden.com -carLicense: Y9U2P0 -departmentNumber: 2934 -employeeType: Employee -homePhone: +1 213 832-3130 -initials: J. G. -mobile: +1 213 843-5678 -pager: +1 213 149-8968 -roomNumber: 9549 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Berty Bittman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berty Bittman -sn: Bittman -description: This is Berty Bittman's description -facsimileTelephoneNumber: +1 213 662-6185 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 213 200-8020 -title: Supreme Product Development Manager -userPassword: Password1 -uid: BittmanB -givenName: Berty -mail: BittmanB@68682c9b2559463bb9da0d98b541595f.bitwarden.com -carLicense: RUN2XQ -departmentNumber: 4759 -employeeType: Employee -homePhone: +1 213 226-4888 -initials: B. B. -mobile: +1 213 254-4929 -pager: +1 213 180-8361 -roomNumber: 8605 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zabrina Liddle -sn: Liddle -description: This is Zabrina Liddle's description -facsimileTelephoneNumber: +1 206 167-4275 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 206-7248 -title: Associate Janitorial Developer -userPassword: Password1 -uid: LiddleZ -givenName: Zabrina -mail: LiddleZ@2883c809f60044a59cf20989f8889d61.bitwarden.com -carLicense: TG5ROY -departmentNumber: 1509 -employeeType: Contract -homePhone: +1 206 898-7540 -initials: Z. L. -mobile: +1 206 169-9680 -pager: +1 206 259-3877 -roomNumber: 8535 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Happy Vreugdenhil -sn: Vreugdenhil -description: This is Happy Vreugdenhil's description -facsimileTelephoneNumber: +1 818 870-4107 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 818 566-4330 -title: Master Administrative Admin -userPassword: Password1 -uid: VreugdeH -givenName: Happy -mail: VreugdeH@bdf120f20bde4a2eb788dc5571823dc7.bitwarden.com -carLicense: 7X62BH -departmentNumber: 1450 -employeeType: Normal -homePhone: +1 818 843-6397 -initials: H. V. -mobile: +1 818 768-8123 -pager: +1 818 421-9588 -roomNumber: 9045 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Priore Hofstetter -sn: Hofstetter -description: This is Priore Hofstetter's description -facsimileTelephoneNumber: +1 818 470-5347 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 149-6582 -title: Master Janitorial Grunt -userPassword: Password1 -uid: HofstetP -givenName: Priore -mail: HofstetP@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com -carLicense: RAKFNR -departmentNumber: 8713 -employeeType: Contract -homePhone: +1 818 906-7147 -initials: P. H. -mobile: +1 818 662-4302 -pager: +1 818 787-2388 -roomNumber: 9414 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Adara Smyth,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adara Smyth -sn: Smyth -description: This is Adara Smyth's description -facsimileTelephoneNumber: +1 213 390-8800 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 313-3759 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: SmythA -givenName: Adara -mail: SmythA@893034d40ae747fcb94aa3c93f26d5c8.bitwarden.com -carLicense: AGQS8C -departmentNumber: 4261 -employeeType: Employee -homePhone: +1 213 967-7364 -initials: A. S. -mobile: +1 213 962-5451 -pager: +1 213 400-5259 -roomNumber: 8633 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Robenia Prescott,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robenia Prescott -sn: Prescott -description: This is Robenia Prescott's description -facsimileTelephoneNumber: +1 818 225-6807 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 131-4568 -title: Master Product Testing Stooge -userPassword: Password1 -uid: PrescotR -givenName: Robenia -mail: PrescotR@1782f7f16d8544ffa1ab9536782bcf24.bitwarden.com -carLicense: ECEAI2 -departmentNumber: 3108 -employeeType: Contract -homePhone: +1 818 611-6436 -initials: R. P. -mobile: +1 818 799-4883 -pager: +1 818 902-8322 -roomNumber: 8787 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wonda Zoerb -sn: Zoerb -description: This is Wonda Zoerb's description -facsimileTelephoneNumber: +1 206 505-7193 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 770-3454 -title: Associate Human Resources Director -userPassword: Password1 -uid: ZoerbW -givenName: Wonda -mail: ZoerbW@3ebdc674ebed47c4a4f33a4fcf39c448.bitwarden.com -carLicense: 4YELMC -departmentNumber: 3214 -employeeType: Employee -homePhone: +1 206 174-4091 -initials: W. Z. -mobile: +1 206 849-9971 -pager: +1 206 305-7550 -roomNumber: 9184 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Berna Mahaffee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berna Mahaffee -sn: Mahaffee -description: This is Berna Mahaffee's description -facsimileTelephoneNumber: +1 415 538-6833 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 605-9916 -title: Chief Product Development Mascot -userPassword: Password1 -uid: MahaffeB -givenName: Berna -mail: MahaffeB@15d351e2d51e4089aa0399e21432998b.bitwarden.com -carLicense: LTLK21 -departmentNumber: 4036 -employeeType: Employee -homePhone: +1 415 973-4424 -initials: B. M. -mobile: +1 415 307-5459 -pager: +1 415 979-2295 -roomNumber: 9599 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Drusilla Riou,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drusilla Riou -sn: Riou -description: This is Drusilla Riou's description -facsimileTelephoneNumber: +1 415 924-7840 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 474-2598 -title: Supreme Human Resources Consultant -userPassword: Password1 -uid: RiouD -givenName: Drusilla -mail: RiouD@6f161c0885be4a50be1e5e174b0c967a.bitwarden.com -carLicense: KAUMN0 -departmentNumber: 1928 -employeeType: Normal -homePhone: +1 415 595-8815 -initials: D. R. -mobile: +1 415 637-2906 -pager: +1 415 132-7310 -roomNumber: 9418 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elsie Ryals,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elsie Ryals -sn: Ryals -description: This is Elsie Ryals's description -facsimileTelephoneNumber: +1 804 715-1314 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 508-8671 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: RyalsE -givenName: Elsie -mail: RyalsE@5d0b867d32fb46e6b508ea727cf0a4d7.bitwarden.com -carLicense: Y67AJD -departmentNumber: 8632 -employeeType: Normal -homePhone: +1 804 350-5918 -initials: E. R. -mobile: +1 804 252-3690 -pager: +1 804 289-3822 -roomNumber: 9200 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sanae Glaser,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanae Glaser -sn: Glaser -description: This is Sanae Glaser's description -facsimileTelephoneNumber: +1 804 131-8453 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 521-2916 -title: Junior Human Resources Madonna -userPassword: Password1 -uid: GlaserS -givenName: Sanae -mail: GlaserS@83ad79c28f46486b8edfbe2ab2f124ce.bitwarden.com -carLicense: 1EJHO6 -departmentNumber: 9927 -employeeType: Employee -homePhone: +1 804 584-8422 -initials: S. G. -mobile: +1 804 974-7247 -pager: +1 804 902-5347 -roomNumber: 8377 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melisenda Shuster,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisenda Shuster -sn: Shuster -description: This is Melisenda Shuster's description -facsimileTelephoneNumber: +1 206 167-1533 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 226-4562 -title: Junior Peons Manager -userPassword: Password1 -uid: ShusterM -givenName: Melisenda -mail: ShusterM@6f1fa218146b4384aa588054962e9428.bitwarden.com -carLicense: KXVF72 -departmentNumber: 9059 -employeeType: Contract -homePhone: +1 206 102-8107 -initials: M. S. -mobile: +1 206 826-5056 -pager: +1 206 163-5489 -roomNumber: 9368 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jasver Loza,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jasver Loza -sn: Loza -description: This is Jasver Loza's description -facsimileTelephoneNumber: +1 415 572-7024 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 383-3038 -title: Supreme Management Janitor -userPassword: Password1 -uid: LozaJ -givenName: Jasver -mail: LozaJ@948fee4ac0644e21a6b3abc34aeaa20f.bitwarden.com -carLicense: 3T3YEX -departmentNumber: 2584 -employeeType: Normal -homePhone: +1 415 666-3080 -initials: J. L. -mobile: +1 415 548-2012 -pager: +1 415 345-1841 -roomNumber: 9870 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Joseph Beshai,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joseph Beshai -sn: Beshai -description: This is Joseph Beshai's description -facsimileTelephoneNumber: +1 206 799-5431 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 555-2579 -title: Junior Management Warrior -userPassword: Password1 -uid: BeshaiJ -givenName: Joseph -mail: BeshaiJ@f7fb17758cf24933ad847773d4770955.bitwarden.com -carLicense: 0SO4Q1 -departmentNumber: 5252 -employeeType: Contract -homePhone: +1 206 799-4096 -initials: J. B. -mobile: +1 206 678-6269 -pager: +1 206 510-1047 -roomNumber: 8170 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rebecca Landriault,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebecca Landriault -sn: Landriault -description: This is Rebecca Landriault's description -facsimileTelephoneNumber: +1 804 595-2891 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 323-8567 -title: Supreme Product Development Fellow -userPassword: Password1 -uid: LandriaR -givenName: Rebecca -mail: LandriaR@7ddc36790a7641e3ae418cec51fdf351.bitwarden.com -carLicense: YH2WE3 -departmentNumber: 6338 -employeeType: Employee -homePhone: +1 804 157-8353 -initials: R. L. -mobile: +1 804 455-9089 -pager: +1 804 485-6302 -roomNumber: 9776 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kokkhiang Holness,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kokkhiang Holness -sn: Holness -description: This is Kokkhiang Holness's description -facsimileTelephoneNumber: +1 213 784-1342 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 309-1819 -title: Chief Management Assistant -userPassword: Password1 -uid: HolnessK -givenName: Kokkhiang -mail: HolnessK@237d4965b17942d997e72bedf6b5b1ed.bitwarden.com -carLicense: 8TJWF6 -departmentNumber: 3031 -employeeType: Employee -homePhone: +1 213 156-9224 -initials: K. H. -mobile: +1 213 609-4339 -pager: +1 213 853-9078 -roomNumber: 9363 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stormy Berger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stormy Berger -sn: Berger -description: This is Stormy Berger's description -facsimileTelephoneNumber: +1 206 461-8026 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 980-6282 -title: Associate Management Czar -userPassword: Password1 -uid: BergerS -givenName: Stormy -mail: BergerS@5e8f47bf29ef420c9f1d1267ba3841e3.bitwarden.com -carLicense: UEXRUJ -departmentNumber: 1534 -employeeType: Employee -homePhone: +1 206 116-3374 -initials: S. B. -mobile: +1 206 785-8446 -pager: +1 206 132-4396 -roomNumber: 8881 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Olva Mooder,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olva Mooder -sn: Mooder -description: This is Olva Mooder's description -facsimileTelephoneNumber: +1 206 925-9155 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 206 539-2535 -title: Associate Peons Artist -userPassword: Password1 -uid: MooderO -givenName: Olva -mail: MooderO@00b74fb6ef364737950ddfdf6aa8c176.bitwarden.com -carLicense: VQIF62 -departmentNumber: 1927 -employeeType: Employee -homePhone: +1 206 410-9705 -initials: O. M. -mobile: +1 206 907-4817 -pager: +1 206 337-1480 -roomNumber: 8115 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tash Ficco,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tash Ficco -sn: Ficco -description: This is Tash Ficco's description -facsimileTelephoneNumber: +1 818 285-7428 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 818 347-6632 -title: Supreme Payroll Writer -userPassword: Password1 -uid: FiccoT -givenName: Tash -mail: FiccoT@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com -carLicense: R7PIPB -departmentNumber: 6294 -employeeType: Normal -homePhone: +1 818 180-7139 -initials: T. F. -mobile: +1 818 471-4862 -pager: +1 818 893-3161 -roomNumber: 9993 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Paulita Jobs,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulita Jobs -sn: Jobs -description: This is Paulita Jobs's description -facsimileTelephoneNumber: +1 206 557-3975 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 859-3962 -title: Associate Product Development Technician -userPassword: Password1 -uid: JobsP -givenName: Paulita -mail: JobsP@8b141724f39349e190b0bc072ac89f77.bitwarden.com -carLicense: 2XBCQA -departmentNumber: 9386 -employeeType: Contract -homePhone: +1 206 976-5641 -initials: P. J. -mobile: +1 206 759-6526 -pager: +1 206 803-4973 -roomNumber: 9115 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kanata Ning,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanata Ning -sn: Ning -description: This is Kanata Ning's description -facsimileTelephoneNumber: +1 804 889-7692 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 365-9700 -title: Junior Payroll Writer -userPassword: Password1 -uid: NingK -givenName: Kanata -mail: NingK@12339915e7824967ac90a6f27aeb00c7.bitwarden.com -carLicense: 6912MF -departmentNumber: 9267 -employeeType: Normal -homePhone: +1 804 583-7646 -initials: K. N. -mobile: +1 804 759-1340 -pager: +1 804 775-6839 -roomNumber: 8386 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dalila Shull,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dalila Shull -sn: Shull -description: This is Dalila Shull's description -facsimileTelephoneNumber: +1 804 756-6143 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 804 526-2994 -title: Associate Payroll Director -userPassword: Password1 -uid: ShullD -givenName: Dalila -mail: ShullD@32fe0278ad444a168aa2715b611540e7.bitwarden.com -carLicense: TJY259 -departmentNumber: 5034 -employeeType: Employee -homePhone: +1 804 771-1539 -initials: D. S. -mobile: +1 804 309-5586 -pager: +1 804 132-7319 -roomNumber: 9296 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Georgianne Bour,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgianne Bour -sn: Bour -description: This is Georgianne Bour's description -facsimileTelephoneNumber: +1 408 404-3577 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 963-2535 -title: Master Administrative Writer -userPassword: Password1 -uid: BourG -givenName: Georgianne -mail: BourG@0c871b0ecc1a46debc66287e828580e3.bitwarden.com -carLicense: 2NYD0D -departmentNumber: 5463 -employeeType: Normal -homePhone: +1 408 158-1760 -initials: G. B. -mobile: +1 408 935-7673 -pager: +1 408 788-7901 -roomNumber: 8627 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Venita Brandon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Venita Brandon -sn: Brandon -description: This is Venita Brandon's description -facsimileTelephoneNumber: +1 415 516-3539 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 602-5091 -title: Supreme Product Testing Visionary -userPassword: Password1 -uid: BrandonV -givenName: Venita -mail: BrandonV@f3d35636fac14230bdd8e3b7a9740351.bitwarden.com -carLicense: 3P0IKK -departmentNumber: 9026 -employeeType: Normal -homePhone: +1 415 404-7556 -initials: V. B. -mobile: +1 415 934-3995 -pager: +1 415 189-6229 -roomNumber: 9751 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Krishna Kiens,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krishna Kiens -sn: Kiens -description: This is Krishna Kiens's description -facsimileTelephoneNumber: +1 206 605-1902 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 206 282-1236 -title: Junior Product Development Punk -userPassword: Password1 -uid: KiensK -givenName: Krishna -mail: KiensK@579206d6574545e7827d4fefcb691059.bitwarden.com -carLicense: F3S303 -departmentNumber: 7538 -employeeType: Employee -homePhone: +1 206 333-9714 -initials: K. K. -mobile: +1 206 138-4469 -pager: +1 206 629-8087 -roomNumber: 9862 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ashlen Plssup,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashlen Plssup -sn: Plssup -description: This is Ashlen Plssup's description -facsimileTelephoneNumber: +1 408 259-9429 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 408 270-2058 -title: Associate Administrative Mascot -userPassword: Password1 -uid: PlssupA -givenName: Ashlen -mail: PlssupA@b17d54cce1be4bbcaff405b30e34b1e9.bitwarden.com -carLicense: HJINVD -departmentNumber: 3267 -employeeType: Contract -homePhone: +1 408 110-4907 -initials: A. P. -mobile: +1 408 579-9680 -pager: +1 408 781-9958 -roomNumber: 8200 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilyssa Woodley -sn: Woodley -description: This is Ilyssa Woodley's description -facsimileTelephoneNumber: +1 213 240-3327 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 218-7778 -title: Master Product Testing Madonna -userPassword: Password1 -uid: WoodleyI -givenName: Ilyssa -mail: WoodleyI@6994ff306ef64425a30543b5e9a42d04.bitwarden.com -carLicense: PY45G6 -departmentNumber: 5718 -employeeType: Employee -homePhone: +1 213 661-3596 -initials: I. W. -mobile: +1 213 459-4763 -pager: +1 213 923-8754 -roomNumber: 9996 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hojjat Burchat,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hojjat Burchat -sn: Burchat -description: This is Hojjat Burchat's description -facsimileTelephoneNumber: +1 408 989-9848 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 874-4323 -title: Associate Product Development Architect -userPassword: Password1 -uid: BurchatH -givenName: Hojjat -mail: BurchatH@15447e827d294576b427fe60b8e58e62.bitwarden.com -carLicense: BCH6YH -departmentNumber: 3455 -employeeType: Contract -homePhone: +1 408 425-3963 -initials: H. B. -mobile: +1 408 774-5228 -pager: +1 408 955-3901 -roomNumber: 9655 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mani Gravitte,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mani Gravitte -sn: Gravitte -description: This is Mani Gravitte's description -facsimileTelephoneNumber: +1 213 984-1989 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 503-5378 -title: Chief Janitorial Writer -userPassword: Password1 -uid: GravittM -givenName: Mani -mail: GravittM@3587dae0157a463b8f8e3e2bb5286ba6.bitwarden.com -carLicense: 3N93PT -departmentNumber: 2155 -employeeType: Contract -homePhone: +1 213 381-3158 -initials: M. G. -mobile: +1 213 773-9350 -pager: +1 213 850-5440 -roomNumber: 8019 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Chiu Pilipchuk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chiu Pilipchuk -sn: Pilipchuk -description: This is Chiu Pilipchuk's description -facsimileTelephoneNumber: +1 408 951-6078 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 270-3905 -title: Chief Management Janitor -userPassword: Password1 -uid: PilipchC -givenName: Chiu -mail: PilipchC@571742054064463fb2b552524cde124b.bitwarden.com -carLicense: GCKAKL -departmentNumber: 6060 -employeeType: Normal -homePhone: +1 408 979-3373 -initials: C. P. -mobile: +1 408 472-6637 -pager: +1 408 978-7294 -roomNumber: 9585 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shamim Uffner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shamim Uffner -sn: Uffner -description: This is Shamim Uffner's description -facsimileTelephoneNumber: +1 804 359-8970 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 672-1465 -title: Chief Human Resources Architect -userPassword: Password1 -uid: UffnerS -givenName: Shamim -mail: UffnerS@a83a79eb4e0e4d1da5d7fca900f14adf.bitwarden.com -carLicense: UU7U6H -departmentNumber: 6164 -employeeType: Employee -homePhone: +1 804 160-8975 -initials: S. U. -mobile: +1 804 139-7016 -pager: +1 804 633-6276 -roomNumber: 8268 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hyacintha Thurman -sn: Thurman -description: This is Hyacintha Thurman's description -facsimileTelephoneNumber: +1 804 451-1163 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 110-7195 -title: Junior Administrative Fellow -userPassword: Password1 -uid: ThurmanH -givenName: Hyacintha -mail: ThurmanH@4eb55ca292bb4599a29d162b3cac9e90.bitwarden.com -carLicense: SVIJTP -departmentNumber: 9099 -employeeType: Contract -homePhone: +1 804 463-8531 -initials: H. T. -mobile: +1 804 381-5777 -pager: +1 804 119-5036 -roomNumber: 8957 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jozsef Alspaugh -sn: Alspaugh -description: This is Jozsef Alspaugh's description -facsimileTelephoneNumber: +1 206 291-8099 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 461-7277 -title: Chief Product Development Manager -userPassword: Password1 -uid: AlspaugJ -givenName: Jozsef -mail: AlspaugJ@bc377f0c1b2b4d28a2ccf5abc5f2f5ed.bitwarden.com -carLicense: WYU6X3 -departmentNumber: 9073 -employeeType: Employee -homePhone: +1 206 830-7161 -initials: J. A. -mobile: +1 206 287-3972 -pager: +1 206 882-5589 -roomNumber: 8153 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Trude Graves,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trude Graves -sn: Graves -description: This is Trude Graves's description -facsimileTelephoneNumber: +1 415 591-4987 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 914-6752 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: GravesT -givenName: Trude -mail: GravesT@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com -carLicense: RKEOXB -departmentNumber: 4324 -employeeType: Normal -homePhone: +1 415 662-7230 -initials: T. G. -mobile: +1 415 929-6210 -pager: +1 415 499-4176 -roomNumber: 8862 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Caressa Balogh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caressa Balogh -sn: Balogh -description: This is Caressa Balogh's description -facsimileTelephoneNumber: +1 818 871-7921 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 852-7848 -title: Junior Product Development Dictator -userPassword: Password1 -uid: BaloghC -givenName: Caressa -mail: BaloghC@b5088b9f02d2438a84c66dee28f005b7.bitwarden.com -carLicense: 9RJ2X6 -departmentNumber: 6240 -employeeType: Contract -homePhone: +1 818 804-3679 -initials: C. B. -mobile: +1 818 878-8262 -pager: +1 818 607-1994 -roomNumber: 8799 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lyn Serre,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyn Serre -sn: Serre -description: This is Lyn Serre's description -facsimileTelephoneNumber: +1 408 702-6008 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 906-5210 -title: Junior Product Development Madonna -userPassword: Password1 -uid: SerreL -givenName: Lyn -mail: SerreL@edf7b6e6765c4b9395ab808390477139.bitwarden.com -carLicense: H10A9F -departmentNumber: 8913 -employeeType: Employee -homePhone: +1 408 405-2148 -initials: L. S. -mobile: +1 408 699-6757 -pager: +1 408 356-1983 -roomNumber: 8342 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Clemmy Doda,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clemmy Doda -sn: Doda -description: This is Clemmy Doda's description -facsimileTelephoneNumber: +1 206 516-1515 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 157-1048 -title: Junior Payroll Fellow -userPassword: Password1 -uid: DodaC -givenName: Clemmy -mail: DodaC@0942a8d54b72463a911186a66f7c67f1.bitwarden.com -carLicense: XGSJH4 -departmentNumber: 1742 -employeeType: Employee -homePhone: +1 206 292-8030 -initials: C. D. -mobile: +1 206 119-8190 -pager: +1 206 419-6113 -roomNumber: 8953 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kesley Nallengara,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kesley Nallengara -sn: Nallengara -description: This is Kesley Nallengara's description -facsimileTelephoneNumber: +1 206 279-3883 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 320-9548 -title: Associate Management Figurehead -userPassword: Password1 -uid: NallengK -givenName: Kesley -mail: NallengK@52e746b148db486a82aefd7394487227.bitwarden.com -carLicense: 0SAXUV -departmentNumber: 3925 -employeeType: Employee -homePhone: +1 206 571-7858 -initials: K. N. -mobile: +1 206 483-6524 -pager: +1 206 852-8512 -roomNumber: 8453 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joji Skeoch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joji Skeoch -sn: Skeoch -description: This is Joji Skeoch's description -facsimileTelephoneNumber: +1 206 566-4357 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 140-2288 -title: Associate Management Dictator -userPassword: Password1 -uid: SkeochJ -givenName: Joji -mail: SkeochJ@35f4596c2f6f4d62a06cffe0bc4a52f3.bitwarden.com -carLicense: J135J2 -departmentNumber: 5270 -employeeType: Employee -homePhone: +1 206 390-1616 -initials: J. S. -mobile: +1 206 634-4326 -pager: +1 206 820-6101 -roomNumber: 9711 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gwyn Peerman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwyn Peerman -sn: Peerman -description: This is Gwyn Peerman's description -facsimileTelephoneNumber: +1 818 679-2744 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 818 140-9894 -title: Supreme Management Mascot -userPassword: Password1 -uid: PeermanG -givenName: Gwyn -mail: PeermanG@2ad21f67126841ddab38e6a0de0bbf55.bitwarden.com -carLicense: N9MO5Y -departmentNumber: 3369 -employeeType: Employee -homePhone: +1 818 817-2699 -initials: G. P. -mobile: +1 818 852-4199 -pager: +1 818 904-2179 -roomNumber: 9338 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mila Lodeserto,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mila Lodeserto -sn: Lodeserto -description: This is Mila Lodeserto's description -facsimileTelephoneNumber: +1 510 840-6990 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 148-4213 -title: Associate Administrative Admin -userPassword: Password1 -uid: LodeserM -givenName: Mila -mail: LodeserM@ce606f959aaf4b37a3890f8fbd9f2472.bitwarden.com -carLicense: 5AF9TE -departmentNumber: 2214 -employeeType: Contract -homePhone: +1 510 725-1497 -initials: M. L. -mobile: +1 510 711-5271 -pager: +1 510 555-1533 -roomNumber: 8597 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corinne Honbarrier -sn: Honbarrier -description: This is Corinne Honbarrier's description -facsimileTelephoneNumber: +1 206 469-3241 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 943-3902 -title: Master Human Resources Grunt -userPassword: Password1 -uid: HonbarrC -givenName: Corinne -mail: HonbarrC@1ae32a15eca247e1b1d69b0caaf56b8d.bitwarden.com -carLicense: 9B051K -departmentNumber: 5358 -employeeType: Normal -homePhone: +1 206 834-3209 -initials: C. H. -mobile: +1 206 546-2777 -pager: +1 206 702-1594 -roomNumber: 8688 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bess Ottowa,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bess Ottowa -sn: Ottowa -description: This is Bess Ottowa's description -facsimileTelephoneNumber: +1 408 354-1542 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 853-9249 -title: Chief Administrative Janitor -userPassword: Password1 -uid: OttowaB -givenName: Bess -mail: OttowaB@0036c3527a724e3c9f25f047b6319884.bitwarden.com -carLicense: 7OAL8S -departmentNumber: 9517 -employeeType: Employee -homePhone: +1 408 864-9244 -initials: B. O. -mobile: +1 408 102-5892 -pager: +1 408 642-4324 -roomNumber: 8894 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sieber Churchill,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sieber Churchill -sn: Churchill -description: This is Sieber Churchill's description -facsimileTelephoneNumber: +1 510 513-3455 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 607-6409 -title: Associate Peons Fellow -userPassword: Password1 -uid: ChurchiS -givenName: Sieber -mail: ChurchiS@237c9936996c46d6817a8e3d08c30341.bitwarden.com -carLicense: YQ9A89 -departmentNumber: 6460 -employeeType: Employee -homePhone: +1 510 804-4113 -initials: S. C. -mobile: +1 510 374-4050 -pager: +1 510 916-2434 -roomNumber: 9008 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lyndy Sides,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndy Sides -sn: Sides -description: This is Lyndy Sides's description -facsimileTelephoneNumber: +1 510 967-5301 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 216-5396 -title: Junior Janitorial Artist -userPassword: Password1 -uid: SidesL -givenName: Lyndy -mail: SidesL@7d9cd1f5b4d645a6bff13b745f4db29e.bitwarden.com -carLicense: T7OGOL -departmentNumber: 6066 -employeeType: Normal -homePhone: +1 510 267-2915 -initials: L. S. -mobile: +1 510 219-9391 -pager: +1 510 431-7737 -roomNumber: 9249 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lino Rix,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lino Rix -sn: Rix -description: This is Lino Rix's description -facsimileTelephoneNumber: +1 818 225-9073 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 693-7594 -title: Chief Administrative Vice President -userPassword: Password1 -uid: RixL -givenName: Lino -mail: RixL@700d5dcd52ae4dffafb68bba2826fdd6.bitwarden.com -carLicense: OPDW9C -departmentNumber: 5575 -employeeType: Contract -homePhone: +1 818 417-6195 -initials: L. R. -mobile: +1 818 653-1266 -pager: +1 818 607-2179 -roomNumber: 8914 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Charangit Desplanque,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charangit Desplanque -sn: Desplanque -description: This is Charangit Desplanque's description -facsimileTelephoneNumber: +1 415 836-9222 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 717-7073 -title: Associate Product Development Writer -userPassword: Password1 -uid: DesplanC -givenName: Charangit -mail: DesplanC@777873609ce9463eb7000e930f9c88d2.bitwarden.com -carLicense: 7CI3OR -departmentNumber: 2795 -employeeType: Contract -homePhone: +1 415 570-8587 -initials: C. D. -mobile: +1 415 976-1081 -pager: +1 415 847-8922 -roomNumber: 9086 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KangYuan Recktenwald -sn: Recktenwald -description: This is KangYuan Recktenwald's description -facsimileTelephoneNumber: +1 415 629-6632 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 415 468-1412 -title: Chief Peons Manager -userPassword: Password1 -uid: RecktenK -givenName: KangYuan -mail: RecktenK@4d61ba95f33d443b8b11c381ee1d7607.bitwarden.com -carLicense: 6ABTXI -departmentNumber: 8852 -employeeType: Contract -homePhone: +1 415 560-9376 -initials: K. R. -mobile: +1 415 894-7702 -pager: +1 415 100-9940 -roomNumber: 8540 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Barry Vajentic,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barry Vajentic -sn: Vajentic -description: This is Barry Vajentic's description -facsimileTelephoneNumber: +1 213 318-2707 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 452-9106 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: VajentiB -givenName: Barry -mail: VajentiB@a53843fec33f4a5c95cde2f5b04f1643.bitwarden.com -carLicense: 6IGBSO -departmentNumber: 5658 -employeeType: Contract -homePhone: +1 213 506-4093 -initials: B. V. -mobile: +1 213 534-6596 -pager: +1 213 767-5980 -roomNumber: 9261 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Waiching Morrin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Waiching Morrin -sn: Morrin -description: This is Waiching Morrin's description -facsimileTelephoneNumber: +1 408 729-6046 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 370-7098 -title: Master Management Writer -userPassword: Password1 -uid: MorrinW -givenName: Waiching -mail: MorrinW@6ab835c0621d479dbd805d5189aa2b92.bitwarden.com -carLicense: FXXO4T -departmentNumber: 9289 -employeeType: Contract -homePhone: +1 408 106-7001 -initials: W. M. -mobile: +1 408 409-5172 -pager: +1 408 257-5234 -roomNumber: 9625 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sattar Kane,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sattar Kane -sn: Kane -description: This is Sattar Kane's description -facsimileTelephoneNumber: +1 408 108-4336 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 273-4162 -title: Master Payroll Stooge -userPassword: Password1 -uid: KaneS -givenName: Sattar -mail: KaneS@06573ce095c8443aa9769fdb7129baed.bitwarden.com -carLicense: 6A1LAT -departmentNumber: 3589 -employeeType: Contract -homePhone: +1 408 346-6953 -initials: S. K. -mobile: +1 408 848-3771 -pager: +1 408 230-8485 -roomNumber: 8488 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=YukWha Kielstra,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YukWha Kielstra -sn: Kielstra -description: This is YukWha Kielstra's description -facsimileTelephoneNumber: +1 213 498-8631 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 708-4152 -title: Master Management Dictator -userPassword: Password1 -uid: KielstrY -givenName: YukWha -mail: KielstrY@e8193f804bab49a9ab24a3360e9fb251.bitwarden.com -carLicense: 3WQOKQ -departmentNumber: 9185 -employeeType: Employee -homePhone: +1 213 367-3753 -initials: Y. K. -mobile: +1 213 757-8927 -pager: +1 213 893-2804 -roomNumber: 9985 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sharon Meletios,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharon Meletios -sn: Meletios -description: This is Sharon Meletios's description -facsimileTelephoneNumber: +1 415 879-9793 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 984-2861 -title: Supreme Management Director -userPassword: Password1 -uid: MeletioS -givenName: Sharon -mail: MeletioS@ec1065d4122045119a382b34586180cb.bitwarden.com -carLicense: HE7VGA -departmentNumber: 4595 -employeeType: Employee -homePhone: +1 415 651-1502 -initials: S. M. -mobile: +1 415 479-6858 -pager: +1 415 364-5303 -roomNumber: 8396 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Binni Gaines,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binni Gaines -sn: Gaines -description: This is Binni Gaines's description -facsimileTelephoneNumber: +1 206 425-6074 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 206 731-7472 -title: Chief Janitorial Czar -userPassword: Password1 -uid: GainesB -givenName: Binni -mail: GainesB@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com -carLicense: 63V2DY -departmentNumber: 9255 -employeeType: Employee -homePhone: +1 206 355-4253 -initials: B. G. -mobile: +1 206 203-1142 -pager: +1 206 977-6396 -roomNumber: 8933 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rasla Pagliarulo -sn: Pagliarulo -description: This is Rasla Pagliarulo's description -facsimileTelephoneNumber: +1 804 807-4738 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 539-6590 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: PagliarR -givenName: Rasla -mail: PagliarR@d69ecc02f7cc498a8c0f20edc1735b63.bitwarden.com -carLicense: I2SW6P -departmentNumber: 3876 -employeeType: Contract -homePhone: +1 804 943-2657 -initials: R. P. -mobile: +1 804 122-3164 -pager: +1 804 661-6977 -roomNumber: 9446 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ying Spejewski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ying Spejewski -sn: Spejewski -description: This is Ying Spejewski's description -facsimileTelephoneNumber: +1 510 712-9397 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 386-7411 -title: Chief Payroll Writer -userPassword: Password1 -uid: SpejewsY -givenName: Ying -mail: SpejewsY@15a73f4bf1a344b28ac5394e2a720618.bitwarden.com -carLicense: 2TSUN4 -departmentNumber: 1581 -employeeType: Contract -homePhone: +1 510 933-1605 -initials: Y. S. -mobile: +1 510 660-4300 -pager: +1 510 258-9076 -roomNumber: 8060 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Agnesse Nessman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnesse Nessman -sn: Nessman -description: This is Agnesse Nessman's description -facsimileTelephoneNumber: +1 818 899-9316 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 154-5019 -title: Associate Payroll Vice President -userPassword: Password1 -uid: NessmanA -givenName: Agnesse -mail: NessmanA@20c2d999fe734387b26090f6d88bafe4.bitwarden.com -carLicense: J4BKY0 -departmentNumber: 7038 -employeeType: Contract -homePhone: +1 818 661-5218 -initials: A. N. -mobile: +1 818 712-9431 -pager: +1 818 714-3218 -roomNumber: 9777 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yoda Milne,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoda Milne -sn: Milne -description: This is Yoda Milne's description -facsimileTelephoneNumber: +1 804 827-2786 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 671-7795 -title: Junior Peons Artist -userPassword: Password1 -uid: MilneY -givenName: Yoda -mail: MilneY@29cf82166a6a4ea0989e7e7b62bf4159.bitwarden.com -carLicense: LRWFQ7 -departmentNumber: 4171 -employeeType: Employee -homePhone: +1 804 721-3643 -initials: Y. M. -mobile: +1 804 186-4757 -pager: +1 804 465-3590 -roomNumber: 8423 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marsh McGurn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marsh McGurn -sn: McGurn -description: This is Marsh McGurn's description -facsimileTelephoneNumber: +1 213 735-9987 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 307-8624 -title: Supreme Janitorial Punk -userPassword: Password1 -uid: McGurnM -givenName: Marsh -mail: McGurnM@972828f1932145e2913d23d36d264e73.bitwarden.com -carLicense: OC45B2 -departmentNumber: 1381 -employeeType: Employee -homePhone: +1 213 612-6377 -initials: M. M. -mobile: +1 213 687-2158 -pager: +1 213 105-3772 -roomNumber: 9093 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hilda Baldridge,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilda Baldridge -sn: Baldridge -description: This is Hilda Baldridge's description -facsimileTelephoneNumber: +1 804 686-2162 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 345-7585 -title: Chief Management Warrior -userPassword: Password1 -uid: BaldridH -givenName: Hilda -mail: BaldridH@7e076071c1c04607a96e17ebf129b6b3.bitwarden.com -carLicense: BLIH02 -departmentNumber: 5977 -employeeType: Normal -homePhone: +1 804 359-8760 -initials: H. B. -mobile: +1 804 821-8569 -pager: +1 804 376-5751 -roomNumber: 8687 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Caro Vopalensky,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caro Vopalensky -sn: Vopalensky -description: This is Caro Vopalensky's description -facsimileTelephoneNumber: +1 510 395-7437 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 326-8480 -title: Master Product Development Consultant -userPassword: Password1 -uid: VopalenC -givenName: Caro -mail: VopalenC@a7918ff0fc7e4212984f8187650b768f.bitwarden.com -carLicense: G23X22 -departmentNumber: 8175 -employeeType: Normal -homePhone: +1 510 144-7335 -initials: C. V. -mobile: +1 510 902-7208 -pager: +1 510 852-3278 -roomNumber: 9578 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Buffy Naolu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Buffy Naolu -sn: Naolu -description: This is Buffy Naolu's description -facsimileTelephoneNumber: +1 213 895-7150 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 565-4369 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: NaoluB -givenName: Buffy -mail: NaoluB@0a7d4b9e2dcb482a9d690b9c06f7b141.bitwarden.com -carLicense: YD3UU7 -departmentNumber: 1375 -employeeType: Contract -homePhone: +1 213 298-1727 -initials: B. N. -mobile: +1 213 856-6319 -pager: +1 213 147-9063 -roomNumber: 8696 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Royal Parniani,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Royal Parniani -sn: Parniani -description: This is Royal Parniani's description -facsimileTelephoneNumber: +1 510 733-4516 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 293-5572 -title: Chief Human Resources Visionary -userPassword: Password1 -uid: ParnianR -givenName: Royal -mail: ParnianR@ba55eb721cbf4a0787e4fcebb6c309fa.bitwarden.com -carLicense: IO5SMM -departmentNumber: 8226 -employeeType: Contract -homePhone: +1 510 608-1000 -initials: R. P. -mobile: +1 510 350-8942 -pager: +1 510 462-4402 -roomNumber: 9009 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Materkowski Watkinson -sn: Watkinson -description: This is Materkowski Watkinson's description -facsimileTelephoneNumber: +1 206 226-3045 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 129-1632 -title: Junior Administrative Figurehead -userPassword: Password1 -uid: WatkinsM -givenName: Materkowski -mail: WatkinsM@38d6239d446040c7892f72bde901e5dc.bitwarden.com -carLicense: YKE9G7 -departmentNumber: 6108 -employeeType: Employee -homePhone: +1 206 516-8975 -initials: M. W. -mobile: +1 206 416-5246 -pager: +1 206 567-3735 -roomNumber: 9450 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anthea Eros,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anthea Eros -sn: Eros -description: This is Anthea Eros's description -facsimileTelephoneNumber: +1 206 625-9513 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 714-7244 -title: Chief Administrative Assistant -userPassword: Password1 -uid: ErosA -givenName: Anthea -mail: ErosA@1174f1cfd4db4d4e8122f3cc77544aa8.bitwarden.com -carLicense: APTG80 -departmentNumber: 7481 -employeeType: Employee -homePhone: +1 206 270-1349 -initials: A. E. -mobile: +1 206 875-4186 -pager: +1 206 288-7534 -roomNumber: 8786 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kiele Commazzi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiele Commazzi -sn: Commazzi -description: This is Kiele Commazzi's description -facsimileTelephoneNumber: +1 804 869-4225 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 990-8995 -title: Master Management Architect -userPassword: Password1 -uid: CommazzK -givenName: Kiele -mail: CommazzK@c7c8c5e66a3141e48cf8db523d4db0d0.bitwarden.com -carLicense: 6YW3F5 -departmentNumber: 1924 -employeeType: Normal -homePhone: +1 804 920-7001 -initials: K. C. -mobile: +1 804 886-2303 -pager: +1 804 471-3169 -roomNumber: 8286 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yvan Diaconu,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yvan Diaconu -sn: Diaconu -description: This is Yvan Diaconu's description -facsimileTelephoneNumber: +1 213 891-7959 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 927-2155 -title: Supreme Payroll Figurehead -userPassword: Password1 -uid: DiaconuY -givenName: Yvan -mail: DiaconuY@e9424fab29f84505b243cf3bcaec7fc6.bitwarden.com -carLicense: T9OHV7 -departmentNumber: 3682 -employeeType: Employee -homePhone: +1 213 955-9392 -initials: Y. D. -mobile: +1 213 481-6860 -pager: +1 213 384-2225 -roomNumber: 8489 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kitti Seshadri,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kitti Seshadri -sn: Seshadri -description: This is Kitti Seshadri's description -facsimileTelephoneNumber: +1 510 717-8133 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 748-8935 -title: Chief Payroll Technician -userPassword: Password1 -uid: SeshadrK -givenName: Kitti -mail: SeshadrK@316f28dee96a4927ae60609771465dfa.bitwarden.com -carLicense: 325KJM -departmentNumber: 2200 -employeeType: Contract -homePhone: +1 510 478-8670 -initials: K. S. -mobile: +1 510 728-2711 -pager: +1 510 887-6788 -roomNumber: 8212 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Camala McMillan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camala McMillan -sn: McMillan -description: This is Camala McMillan's description -facsimileTelephoneNumber: +1 804 775-9279 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 343-8672 -title: Junior Administrative Figurehead -userPassword: Password1 -uid: McMillaC -givenName: Camala -mail: McMillaC@fe875cd0e6c64e7b9c0162ab42b3016c.bitwarden.com -carLicense: SRRMS5 -departmentNumber: 6293 -employeeType: Normal -homePhone: +1 804 970-5888 -initials: C. M. -mobile: +1 804 371-8408 -pager: +1 804 149-8178 -roomNumber: 8830 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Asan Postlethwaite -sn: Postlethwaite -description: This is Asan Postlethwaite's description -facsimileTelephoneNumber: +1 804 126-5245 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 620-1634 -title: Junior Product Development Grunt -userPassword: Password1 -uid: PostletA -givenName: Asan -mail: PostletA@03ce2f739a2d423a9acbc734a72262d8.bitwarden.com -carLicense: N3VQ13 -departmentNumber: 4684 -employeeType: Contract -homePhone: +1 804 246-8255 -initials: A. P. -mobile: +1 804 242-4391 -pager: +1 804 846-7545 -roomNumber: 8739 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eamon Salvin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eamon Salvin -sn: Salvin -description: This is Eamon Salvin's description -facsimileTelephoneNumber: +1 804 893-6109 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 316-4030 -title: Associate Management Assistant -userPassword: Password1 -uid: SalvinE -givenName: Eamon -mail: SalvinE@1be6a576815d4ff2aa416eab6c9dd713.bitwarden.com -carLicense: QU34YF -departmentNumber: 3163 -employeeType: Employee -homePhone: +1 804 636-8813 -initials: E. S. -mobile: +1 804 722-6901 -pager: +1 804 775-6197 -roomNumber: 9728 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlyne Recycling -sn: Recycling -description: This is Marlyne Recycling's description -facsimileTelephoneNumber: +1 206 914-9617 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 966-6484 -title: Associate Human Resources Technician -userPassword: Password1 -uid: RecycliM -givenName: Marlyne -mail: RecycliM@fe3592b806204a8188677a7eeb59563a.bitwarden.com -carLicense: 5T4BN8 -departmentNumber: 4381 -employeeType: Contract -homePhone: +1 206 740-7598 -initials: M. R. -mobile: +1 206 306-7301 -pager: +1 206 300-6100 -roomNumber: 9169 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vito Calcote,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vito Calcote -sn: Calcote -description: This is Vito Calcote's description -facsimileTelephoneNumber: +1 408 590-2819 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 945-8330 -title: Master Janitorial Stooge -userPassword: Password1 -uid: CalcoteV -givenName: Vito -mail: CalcoteV@29ddc254020a4d509a3e447f6b0e374a.bitwarden.com -carLicense: OO0GFS -departmentNumber: 7348 -employeeType: Employee -homePhone: +1 408 650-3834 -initials: V. C. -mobile: +1 408 297-6644 -pager: +1 408 886-2100 -roomNumber: 9238 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jannel Demetrick -sn: Demetrick -description: This is Jannel Demetrick's description -facsimileTelephoneNumber: +1 818 447-7802 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 991-1859 -title: Associate Janitorial Technician -userPassword: Password1 -uid: DemetriJ -givenName: Jannel -mail: DemetriJ@d00112b411284f8aa1ae0e17d03d57d0.bitwarden.com -carLicense: T14SC4 -departmentNumber: 3413 -employeeType: Normal -homePhone: +1 818 184-7746 -initials: J. D. -mobile: +1 818 774-3173 -pager: +1 818 406-8509 -roomNumber: 9457 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mandie Kneeshaw,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mandie Kneeshaw -sn: Kneeshaw -description: This is Mandie Kneeshaw's description -facsimileTelephoneNumber: +1 415 834-9851 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 516-6954 -title: Junior Management Technician -userPassword: Password1 -uid: KneeshaM -givenName: Mandie -mail: KneeshaM@d12cf402dbab4ca98b370d7e2c59928b.bitwarden.com -carLicense: BF1EPR -departmentNumber: 6791 -employeeType: Contract -homePhone: +1 415 220-4315 -initials: M. K. -mobile: +1 415 953-1835 -pager: +1 415 212-8932 -roomNumber: 8666 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fiann Fouts,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fiann Fouts -sn: Fouts -description: This is Fiann Fouts's description -facsimileTelephoneNumber: +1 206 234-4236 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 684-7426 -title: Junior Administrative Artist -userPassword: Password1 -uid: FoutsF -givenName: Fiann -mail: FoutsF@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com -carLicense: 6IHKNW -departmentNumber: 5389 -employeeType: Employee -homePhone: +1 206 165-5225 -initials: F. F. -mobile: +1 206 668-9113 -pager: +1 206 318-6491 -roomNumber: 8545 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Patt Ferner,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patt Ferner -sn: Ferner -description: This is Patt Ferner's description -facsimileTelephoneNumber: +1 415 455-7579 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 157-2526 -title: Junior Management Technician -userPassword: Password1 -uid: FernerP -givenName: Patt -mail: FernerP@19620eb428924236b27e614bd4d00de7.bitwarden.com -carLicense: 548HJ9 -departmentNumber: 6467 -employeeType: Employee -homePhone: +1 415 641-8076 -initials: P. F. -mobile: +1 415 998-5722 -pager: +1 415 694-7062 -roomNumber: 9850 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhQuoc Lahey -sn: Lahey -description: This is ThanhQuoc Lahey's description -facsimileTelephoneNumber: +1 206 979-2083 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 798-5602 -title: Master Human Resources Assistant -userPassword: Password1 -uid: LaheyT -givenName: ThanhQuoc -mail: LaheyT@65bf8c21e22d4649a877cbced68034c8.bitwarden.com -carLicense: AL1RFQ -departmentNumber: 9968 -employeeType: Normal -homePhone: +1 206 118-3466 -initials: T. L. -mobile: +1 206 372-7982 -pager: +1 206 459-6509 -roomNumber: 8368 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryellen Wilhelmson -sn: Wilhelmson -description: This is Maryellen Wilhelmson's description -facsimileTelephoneNumber: +1 415 928-2623 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 294-1401 -title: Chief Product Development Dictator -userPassword: Password1 -uid: WilhelmM -givenName: Maryellen -mail: WilhelmM@f29a02eb60f740478f80d3c6d60d0269.bitwarden.com -carLicense: TCH2YC -departmentNumber: 9718 -employeeType: Contract -homePhone: +1 415 850-1963 -initials: M. W. -mobile: +1 415 587-9693 -pager: +1 415 269-8991 -roomNumber: 9754 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Grier Kovarik,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grier Kovarik -sn: Kovarik -description: This is Grier Kovarik's description -facsimileTelephoneNumber: +1 818 483-5690 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 818 176-6362 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: KovarikG -givenName: Grier -mail: KovarikG@50d7c806edce40aba32e1f9a44a2e284.bitwarden.com -carLicense: 8S0032 -departmentNumber: 9745 -employeeType: Contract -homePhone: +1 818 368-2868 -initials: G. K. -mobile: +1 818 824-3295 -pager: +1 818 268-6922 -roomNumber: 9088 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mela MacNeill,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mela MacNeill -sn: MacNeill -description: This is Mela MacNeill's description -facsimileTelephoneNumber: +1 818 239-8225 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 100-1052 -title: Chief Payroll Figurehead -userPassword: Password1 -uid: MacNeilM -givenName: Mela -mail: MacNeilM@5bcf0d060e574c65aeb6507d9efeab58.bitwarden.com -carLicense: 579CTV -departmentNumber: 3495 -employeeType: Employee -homePhone: +1 818 609-9434 -initials: M. M. -mobile: +1 818 382-6298 -pager: +1 818 384-3812 -roomNumber: 8339 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nikkie Sayed -sn: Sayed -description: This is Nikkie Sayed's description -facsimileTelephoneNumber: +1 408 888-5386 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 609-4557 -title: Chief Janitorial Sales Rep -userPassword: Password1 -uid: SayedN -givenName: Nikkie -mail: SayedN@d29cf4b9df4246ba980a85b6744ad20d.bitwarden.com -carLicense: QSV9GY -departmentNumber: 5651 -employeeType: Normal -homePhone: +1 408 949-9612 -initials: N. S. -mobile: +1 408 854-1178 -pager: +1 408 334-8931 -roomNumber: 8047 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Akram Rajwani,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akram Rajwani -sn: Rajwani -description: This is Akram Rajwani's description -facsimileTelephoneNumber: +1 408 712-3400 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 908-5755 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: RajwaniA -givenName: Akram -mail: RajwaniA@6114ed5b2ab14d15895d683682929e6e.bitwarden.com -carLicense: L6NCAX -departmentNumber: 9450 -employeeType: Normal -homePhone: +1 408 835-2059 -initials: A. R. -mobile: +1 408 433-9609 -pager: +1 408 189-2670 -roomNumber: 8330 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lendon Valin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lendon Valin -sn: Valin -description: This is Lendon Valin's description -facsimileTelephoneNumber: +1 415 671-6111 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 675-4273 -title: Junior Administrative Dictator -userPassword: Password1 -uid: ValinL -givenName: Lendon -mail: ValinL@923baf1ba66c43ddab40764da6c9cc33.bitwarden.com -carLicense: EI18K6 -departmentNumber: 8727 -employeeType: Contract -homePhone: +1 415 320-1418 -initials: L. V. -mobile: +1 415 875-1153 -pager: +1 415 607-6621 -roomNumber: 8799 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ikram Taylor,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ikram Taylor -sn: Taylor -description: This is Ikram Taylor's description -facsimileTelephoneNumber: +1 804 720-3087 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 984-6827 -title: Junior Payroll President -userPassword: Password1 -uid: TaylorI -givenName: Ikram -mail: TaylorI@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com -carLicense: JQ0DAV -departmentNumber: 4086 -employeeType: Employee -homePhone: +1 804 406-1197 -initials: I. T. -mobile: +1 804 649-8935 -pager: +1 804 979-2738 -roomNumber: 9331 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gert Grassmann,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gert Grassmann -sn: Grassmann -description: This is Gert Grassmann's description -facsimileTelephoneNumber: +1 206 573-5240 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 901-1684 -title: Junior Payroll Stooge -userPassword: Password1 -uid: GrassmaG -givenName: Gert -mail: GrassmaG@7388d6407a304050b7d1b21890b91ab6.bitwarden.com -carLicense: 6N1H4I -departmentNumber: 8380 -employeeType: Employee -homePhone: +1 206 422-8483 -initials: G. G. -mobile: +1 206 400-8798 -pager: +1 206 499-8790 -roomNumber: 8392 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Oksana Dorn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oksana Dorn -sn: Dorn -description: This is Oksana Dorn's description -facsimileTelephoneNumber: +1 415 535-5770 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 892-5041 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: DornO -givenName: Oksana -mail: DornO@bea0ce9c6190426d94993a855ef6515e.bitwarden.com -carLicense: PL0E86 -departmentNumber: 7679 -employeeType: Contract -homePhone: +1 415 139-1187 -initials: O. D. -mobile: +1 415 396-3567 -pager: +1 415 437-2723 -roomNumber: 9223 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karleen McKinley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karleen McKinley -sn: McKinley -description: This is Karleen McKinley's description -facsimileTelephoneNumber: +1 408 892-1194 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 415-1050 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: McKinleK -givenName: Karleen -mail: McKinleK@58351331fe224df1be3d4a98ae5bb106.bitwarden.com -carLicense: UXQGH5 -departmentNumber: 3969 -employeeType: Employee -homePhone: +1 408 601-2124 -initials: K. M. -mobile: +1 408 916-3417 -pager: +1 408 193-5772 -roomNumber: 8173 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Helmut Sigda,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helmut Sigda -sn: Sigda -description: This is Helmut Sigda's description -facsimileTelephoneNumber: +1 818 235-3464 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 540-7302 -title: Master Payroll Pinhead -userPassword: Password1 -uid: SigdaH -givenName: Helmut -mail: SigdaH@c53d26d2599d4e87839d1fcfc46deed3.bitwarden.com -carLicense: Q9EYQB -departmentNumber: 8878 -employeeType: Employee -homePhone: +1 818 257-6522 -initials: H. S. -mobile: +1 818 668-5884 -pager: +1 818 466-2969 -roomNumber: 8409 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Grover Au,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grover Au -sn: Au -description: This is Grover Au's description -facsimileTelephoneNumber: +1 206 614-4812 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 658-4493 -title: Supreme Product Testing Sales Rep -userPassword: Password1 -uid: AuG -givenName: Grover -mail: AuG@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com -carLicense: 3XSB8E -departmentNumber: 4994 -employeeType: Employee -homePhone: +1 206 955-1948 -initials: G. A. -mobile: +1 206 190-5302 -pager: +1 206 199-3185 -roomNumber: 8566 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Barb Ricketts,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barb Ricketts -sn: Ricketts -description: This is Barb Ricketts's description -facsimileTelephoneNumber: +1 408 425-7884 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 777-7567 -title: Associate Product Development Grunt -userPassword: Password1 -uid: RickettB -givenName: Barb -mail: RickettB@09d4226229cf4675bcb5278420d93bf0.bitwarden.com -carLicense: 5U23EE -departmentNumber: 6956 -employeeType: Normal -homePhone: +1 408 531-3329 -initials: B. R. -mobile: +1 408 383-4293 -pager: +1 408 753-1779 -roomNumber: 9635 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carina Akens,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carina Akens -sn: Akens -description: This is Carina Akens's description -facsimileTelephoneNumber: +1 510 467-4578 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 317-9131 -title: Junior Product Development Assistant -userPassword: Password1 -uid: AkensC -givenName: Carina -mail: AkensC@83d9635a552e4683a0d35cd1ae21b9aa.bitwarden.com -carLicense: MO1GVO -departmentNumber: 2402 -employeeType: Normal -homePhone: +1 510 577-4473 -initials: C. A. -mobile: +1 510 508-9130 -pager: +1 510 410-6669 -roomNumber: 8596 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Beilul Scheduling,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beilul Scheduling -sn: Scheduling -description: This is Beilul Scheduling's description -facsimileTelephoneNumber: +1 213 825-9031 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 772-3082 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: SchedulB -givenName: Beilul -mail: SchedulB@7560ab97b391438ca52c6e67c62ba90e.bitwarden.com -carLicense: BKN3NY -departmentNumber: 6400 -employeeType: Employee -homePhone: +1 213 265-1542 -initials: B. S. -mobile: +1 213 478-6762 -pager: +1 213 568-7074 -roomNumber: 9840 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kitson Nelon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kitson Nelon -sn: Nelon -description: This is Kitson Nelon's description -facsimileTelephoneNumber: +1 206 933-2619 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 502-6518 -title: Master Janitorial Stooge -userPassword: Password1 -uid: NelonK -givenName: Kitson -mail: NelonK@e96c9cff7aa94cde9b663e22d2426c28.bitwarden.com -carLicense: MCW3KI -departmentNumber: 6153 -employeeType: Employee -homePhone: +1 206 296-5450 -initials: K. N. -mobile: +1 206 557-8028 -pager: +1 206 100-6361 -roomNumber: 8691 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Daphna Ragde,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphna Ragde -sn: Ragde -description: This is Daphna Ragde's description -facsimileTelephoneNumber: +1 415 908-1775 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 858-2176 -title: Master Product Testing Grunt -userPassword: Password1 -uid: RagdeD -givenName: Daphna -mail: RagdeD@86b49aff19c241bd88b57af5d6c58aeb.bitwarden.com -carLicense: SGWFIU -departmentNumber: 3056 -employeeType: Employee -homePhone: +1 415 169-8290 -initials: D. R. -mobile: +1 415 186-9844 -pager: +1 415 103-2316 -roomNumber: 8073 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Paulina Early,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulina Early -sn: Early -description: This is Paulina Early's description -facsimileTelephoneNumber: +1 804 706-1436 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 658-6713 -title: Associate Administrative Pinhead -userPassword: Password1 -uid: EarlyP -givenName: Paulina -mail: EarlyP@ee2b03b1182d458c89ed3ab0221f6486.bitwarden.com -carLicense: 6MRGPT -departmentNumber: 8836 -employeeType: Normal -homePhone: +1 804 366-2687 -initials: P. E. -mobile: +1 804 383-3471 -pager: +1 804 585-2741 -roomNumber: 9228 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Abbie Jamshidi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abbie Jamshidi -sn: Jamshidi -description: This is Abbie Jamshidi's description -facsimileTelephoneNumber: +1 408 455-3412 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 541-1892 -title: Master Management Technician -userPassword: Password1 -uid: JamshidA -givenName: Abbie -mail: JamshidA@197532fdf2a14d7985433ec8c05668f9.bitwarden.com -carLicense: SDRWFJ -departmentNumber: 5643 -employeeType: Normal -homePhone: +1 408 109-5203 -initials: A. J. -mobile: +1 408 888-5368 -pager: +1 408 467-8838 -roomNumber: 9141 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Quynh Lorenc,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quynh Lorenc -sn: Lorenc -description: This is Quynh Lorenc's description -facsimileTelephoneNumber: +1 213 642-4931 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 761-2883 -title: Supreme Administrative Pinhead -userPassword: Password1 -uid: LorencQ -givenName: Quynh -mail: LorencQ@318df10c24464190a253b688eda7b7e6.bitwarden.com -carLicense: E4X7FB -departmentNumber: 1913 -employeeType: Employee -homePhone: +1 213 490-4741 -initials: Q. L. -mobile: +1 213 560-7704 -pager: +1 213 821-9543 -roomNumber: 9257 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kelwin Popadick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelwin Popadick -sn: Popadick -description: This is Kelwin Popadick's description -facsimileTelephoneNumber: +1 510 213-8219 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 428-5490 -title: Master Payroll Evangelist -userPassword: Password1 -uid: PopadicK -givenName: Kelwin -mail: PopadicK@bee273104901438cb51bc052b7b27c15.bitwarden.com -carLicense: 9VO7IK -departmentNumber: 3891 -employeeType: Employee -homePhone: +1 510 139-6735 -initials: K. P. -mobile: +1 510 123-1091 -pager: +1 510 189-3954 -roomNumber: 8662 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fitness Pape,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fitness Pape -sn: Pape -description: This is Fitness Pape's description -facsimileTelephoneNumber: +1 408 995-8299 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 352-5182 -title: Chief Management Technician -userPassword: Password1 -uid: PapeF -givenName: Fitness -mail: PapeF@2f2d085d4c3a4ad69f1b90ad6c4efe7a.bitwarden.com -carLicense: X1W7A3 -departmentNumber: 9082 -employeeType: Normal -homePhone: +1 408 204-2588 -initials: F. P. -mobile: +1 408 720-5515 -pager: +1 408 975-4020 -roomNumber: 9602 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dion Chiou,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dion Chiou -sn: Chiou -description: This is Dion Chiou's description -facsimileTelephoneNumber: +1 415 461-5825 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 415 211-3047 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: ChiouD -givenName: Dion -mail: ChiouD@0cd77054f0d24017b2619d6dacb27d84.bitwarden.com -carLicense: J9LML7 -departmentNumber: 2282 -employeeType: Normal -homePhone: +1 415 837-3111 -initials: D. C. -mobile: +1 415 940-4337 -pager: +1 415 666-2229 -roomNumber: 8039 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mayasandra Naor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mayasandra Naor -sn: Naor -description: This is Mayasandra Naor's description -facsimileTelephoneNumber: +1 206 359-8955 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 106-8581 -title: Supreme Management Technician -userPassword: Password1 -uid: NaorM -givenName: Mayasandra -mail: NaorM@4615d434564642a8bf9c9dbf63a45e29.bitwarden.com -carLicense: MB21K1 -departmentNumber: 7592 -employeeType: Employee -homePhone: +1 206 420-6642 -initials: M. N. -mobile: +1 206 284-3899 -pager: +1 206 487-8111 -roomNumber: 9577 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leddy Hitchcock -sn: Hitchcock -description: This is Leddy Hitchcock's description -facsimileTelephoneNumber: +1 804 712-9983 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 565-9711 -title: Associate Payroll Assistant -userPassword: Password1 -uid: HitchcoL -givenName: Leddy -mail: HitchcoL@56c31fbd3abf4ba89644df8f50b7055a.bitwarden.com -carLicense: A93LCO -departmentNumber: 2911 -employeeType: Normal -homePhone: +1 804 473-8704 -initials: L. H. -mobile: +1 804 860-6128 -pager: +1 804 625-1825 -roomNumber: 8916 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lauri Deligdisch -sn: Deligdisch -description: This is Lauri Deligdisch's description -facsimileTelephoneNumber: +1 804 469-8366 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 987-1961 -title: Master Human Resources Manager -userPassword: Password1 -uid: DeligdiL -givenName: Lauri -mail: DeligdiL@cf1207413cd7406ea5d1023535e380a4.bitwarden.com -carLicense: U1VE7K -departmentNumber: 9352 -employeeType: Normal -homePhone: +1 804 421-9470 -initials: L. D. -mobile: +1 804 946-7544 -pager: +1 804 985-2373 -roomNumber: 9226 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vince Soulliere,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vince Soulliere -sn: Soulliere -description: This is Vince Soulliere's description -facsimileTelephoneNumber: +1 415 978-9165 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 673-4315 -title: Master Janitorial Admin -userPassword: Password1 -uid: SoullieV -givenName: Vince -mail: SoullieV@da92b528ad714b68bb8622f4f41299c4.bitwarden.com -carLicense: IPFYGP -departmentNumber: 3000 -employeeType: Contract -homePhone: +1 415 889-1338 -initials: V. S. -mobile: +1 415 644-7063 -pager: +1 415 256-2655 -roomNumber: 8916 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kasey Turney,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kasey Turney -sn: Turney -description: This is Kasey Turney's description -facsimileTelephoneNumber: +1 510 206-1782 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 506-2393 -title: Chief Management Assistant -userPassword: Password1 -uid: TurneyK -givenName: Kasey -mail: TurneyK@3247d9930d174deba0cf4cead8361088.bitwarden.com -carLicense: LAERWO -departmentNumber: 8199 -employeeType: Contract -homePhone: +1 510 554-5079 -initials: K. T. -mobile: +1 510 863-4066 -pager: +1 510 736-2697 -roomNumber: 9035 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zonda Amato,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zonda Amato -sn: Amato -description: This is Zonda Amato's description -facsimileTelephoneNumber: +1 408 108-1719 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 352-6642 -title: Junior Human Resources Artist -userPassword: Password1 -uid: AmatoZ -givenName: Zonda -mail: AmatoZ@3b9a242739aa4b0aa6818d262f7df54b.bitwarden.com -carLicense: CM7TVX -departmentNumber: 2367 -employeeType: Contract -homePhone: +1 408 131-9154 -initials: Z. A. -mobile: +1 408 977-7734 -pager: +1 408 872-2322 -roomNumber: 9865 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eleanore Bertini,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eleanore Bertini -sn: Bertini -description: This is Eleanore Bertini's description -facsimileTelephoneNumber: +1 804 588-5300 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 982-6921 -title: Supreme Payroll Grunt -userPassword: Password1 -uid: BertiniE -givenName: Eleanore -mail: BertiniE@a6096cd0d9c54e7cb57ad3b57e445595.bitwarden.com -carLicense: 3VXX7V -departmentNumber: 7924 -employeeType: Employee -homePhone: +1 804 689-4239 -initials: E. B. -mobile: +1 804 582-1107 -pager: +1 804 643-6622 -roomNumber: 8806 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Georgetta Schreiber,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgetta Schreiber -sn: Schreiber -description: This is Georgetta Schreiber's description -facsimileTelephoneNumber: +1 415 784-5545 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 174-9503 -title: Junior Peons Sales Rep -userPassword: Password1 -uid: SchreibG -givenName: Georgetta -mail: SchreibG@0b30f746872444eb8267bbdcdf9f26b0.bitwarden.com -carLicense: JYC6I4 -departmentNumber: 4080 -employeeType: Contract -homePhone: +1 415 696-8632 -initials: G. S. -mobile: +1 415 696-9094 -pager: +1 415 628-7200 -roomNumber: 8483 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kalai Seatter,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalai Seatter -sn: Seatter -description: This is Kalai Seatter's description -facsimileTelephoneNumber: +1 206 283-4870 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 442-2301 -title: Master Peons Fellow -userPassword: Password1 -uid: SeatterK -givenName: Kalai -mail: SeatterK@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com -carLicense: NR939M -departmentNumber: 2450 -employeeType: Employee -homePhone: +1 206 768-2798 -initials: K. S. -mobile: +1 206 971-8300 -pager: +1 206 949-3101 -roomNumber: 8354 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Susie Moffett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susie Moffett -sn: Moffett -description: This is Susie Moffett's description -facsimileTelephoneNumber: +1 510 758-5079 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 146-2946 -title: Chief Product Development President -userPassword: Password1 -uid: MoffettS -givenName: Susie -mail: MoffettS@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com -carLicense: I42S04 -departmentNumber: 6071 -employeeType: Normal -homePhone: +1 510 325-3227 -initials: S. M. -mobile: +1 510 525-9079 -pager: +1 510 373-5911 -roomNumber: 9613 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariejeanne Mielke -sn: Mielke -description: This is Mariejeanne Mielke's description -facsimileTelephoneNumber: +1 213 663-6489 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 158-9436 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: MielkeM -givenName: Mariejeanne -mail: MielkeM@cf607f514ea94d249d7d25105dbb0762.bitwarden.com -carLicense: EXRHNH -departmentNumber: 4059 -employeeType: Contract -homePhone: +1 213 240-7860 -initials: M. M. -mobile: +1 213 732-2274 -pager: +1 213 774-7232 -roomNumber: 8311 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Garnet Vieregge,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Garnet Vieregge -sn: Vieregge -description: This is Garnet Vieregge's description -facsimileTelephoneNumber: +1 415 358-7237 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 339-7739 -title: Associate Peons Grunt -userPassword: Password1 -uid: ViereggG -givenName: Garnet -mail: ViereggG@93dd838ca8d949aca268d37f8c816502.bitwarden.com -carLicense: 5HQ3YH -departmentNumber: 5270 -employeeType: Normal -homePhone: +1 415 395-9781 -initials: G. V. -mobile: +1 415 585-8226 -pager: +1 415 547-1351 -roomNumber: 9900 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agneta Ninetyone -sn: Ninetyone -description: This is Agneta Ninetyone's description -facsimileTelephoneNumber: +1 415 765-2147 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 415 226-2677 -title: Chief Product Development President -userPassword: Password1 -uid: NinetyoA -givenName: Agneta -mail: NinetyoA@de6663da581c4c5286224c9b59be979f.bitwarden.com -carLicense: DWPBF9 -departmentNumber: 5264 -employeeType: Employee -homePhone: +1 415 690-8561 -initials: A. N. -mobile: +1 415 625-7027 -pager: +1 415 704-8482 -roomNumber: 8291 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Majid Liao,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Majid Liao -sn: Liao -description: This is Majid Liao's description -facsimileTelephoneNumber: +1 213 357-9088 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 298-1045 -title: Supreme Payroll Mascot -userPassword: Password1 -uid: LiaoM -givenName: Majid -mail: LiaoM@ab64d8db9da04b27bba1bfcb5bef47a6.bitwarden.com -carLicense: AF558C -departmentNumber: 3689 -employeeType: Employee -homePhone: +1 213 133-7602 -initials: M. L. -mobile: +1 213 298-8992 -pager: +1 213 365-3997 -roomNumber: 8047 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Abdallah Lobello,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abdallah Lobello -sn: Lobello -description: This is Abdallah Lobello's description -facsimileTelephoneNumber: +1 510 859-3272 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 148-4459 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: LobelloA -givenName: Abdallah -mail: LobelloA@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com -carLicense: AVEKBW -departmentNumber: 9692 -employeeType: Contract -homePhone: +1 510 346-4616 -initials: A. L. -mobile: +1 510 153-5052 -pager: +1 510 130-1472 -roomNumber: 8825 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Felecia Bnrecad,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felecia Bnrecad -sn: Bnrecad -description: This is Felecia Bnrecad's description -facsimileTelephoneNumber: +1 510 162-7609 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 802-7885 -title: Junior Peons Architect -userPassword: Password1 -uid: BnrecadF -givenName: Felecia -mail: BnrecadF@1cd5de40e5ac4cd695f9ff5aee94931d.bitwarden.com -carLicense: 7A4UCR -departmentNumber: 2575 -employeeType: Employee -homePhone: +1 510 289-3161 -initials: F. B. -mobile: +1 510 817-1248 -pager: +1 510 187-9064 -roomNumber: 9937 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Waja Eteminan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Waja Eteminan -sn: Eteminan -description: This is Waja Eteminan's description -facsimileTelephoneNumber: +1 213 966-5592 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 726-4591 -title: Master Human Resources Visionary -userPassword: Password1 -uid: EteminaW -givenName: Waja -mail: EteminaW@3b02e13d586c4243a74a50de88d81685.bitwarden.com -carLicense: 47HXGF -departmentNumber: 6206 -employeeType: Contract -homePhone: +1 213 668-9445 -initials: W. E. -mobile: +1 213 455-6021 -pager: +1 213 104-7732 -roomNumber: 8715 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lorrel Piercy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorrel Piercy -sn: Piercy -description: This is Lorrel Piercy's description -facsimileTelephoneNumber: +1 206 804-9291 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 201-4641 -title: Chief Product Development Janitor -userPassword: Password1 -uid: PiercyL -givenName: Lorrel -mail: PiercyL@5d9c2ba556874386a8e9edd75b2b2e09.bitwarden.com -carLicense: 5MAPIO -departmentNumber: 9484 -employeeType: Contract -homePhone: +1 206 420-4132 -initials: L. P. -mobile: +1 206 840-9668 -pager: +1 206 505-3825 -roomNumber: 8966 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pris Bobar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pris Bobar -sn: Bobar -description: This is Pris Bobar's description -facsimileTelephoneNumber: +1 415 681-2417 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 104-6994 -title: Master Janitorial Developer -userPassword: Password1 -uid: BobarP -givenName: Pris -mail: BobarP@a003e42ed50b459eb9c3a71f6a23c973.bitwarden.com -carLicense: LWNXRF -departmentNumber: 2186 -employeeType: Contract -homePhone: +1 415 746-8751 -initials: P. B. -mobile: +1 415 268-2911 -pager: +1 415 699-3719 -roomNumber: 8908 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Albertine Karass,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Albertine Karass -sn: Karass -description: This is Albertine Karass's description -facsimileTelephoneNumber: +1 818 437-1720 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 818 304-1063 -title: Master Payroll Developer -userPassword: Password1 -uid: KarassA -givenName: Albertine -mail: KarassA@7c2121c8588b42078879768992a11293.bitwarden.com -carLicense: IRYN31 -departmentNumber: 3961 -employeeType: Employee -homePhone: +1 818 194-2246 -initials: A. K. -mobile: +1 818 412-6560 -pager: +1 818 903-3146 -roomNumber: 9864 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Saskia Koskie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saskia Koskie -sn: Koskie -description: This is Saskia Koskie's description -facsimileTelephoneNumber: +1 804 411-2881 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 742-1134 -title: Junior Peons Fellow -userPassword: Password1 -uid: KoskieS -givenName: Saskia -mail: KoskieS@7920c9493dd44267bf71116a85f298e1.bitwarden.com -carLicense: UW315W -departmentNumber: 7561 -employeeType: Contract -homePhone: +1 804 992-7505 -initials: S. K. -mobile: +1 804 122-8117 -pager: +1 804 680-1488 -roomNumber: 8441 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Adda Paddon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adda Paddon -sn: Paddon -description: This is Adda Paddon's description -facsimileTelephoneNumber: +1 206 929-5828 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 364-5477 -title: Supreme Management Pinhead -userPassword: Password1 -uid: PaddonA -givenName: Adda -mail: PaddonA@abbddb7343124812b34ca376c77e32cf.bitwarden.com -carLicense: 449SKH -departmentNumber: 8486 -employeeType: Normal -homePhone: +1 206 381-2514 -initials: A. P. -mobile: +1 206 241-5036 -pager: +1 206 851-6665 -roomNumber: 8061 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Normand Tay,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Normand Tay -sn: Tay -description: This is Normand Tay's description -facsimileTelephoneNumber: +1 804 199-3060 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 990-1301 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: TayN -givenName: Normand -mail: TayN@238696ade728438aa3391299a0dc9901.bitwarden.com -carLicense: 1WEDLB -departmentNumber: 3899 -employeeType: Normal -homePhone: +1 804 940-6355 -initials: N. T. -mobile: +1 804 710-9472 -pager: +1 804 937-3961 -roomNumber: 9080 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzann Wolowidnyk -sn: Wolowidnyk -description: This is Suzann Wolowidnyk's description -facsimileTelephoneNumber: +1 804 278-7784 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 972-3780 -title: Chief Payroll Engineer -userPassword: Password1 -uid: WolowidS -givenName: Suzann -mail: WolowidS@42f6c709ced54560a282482057eafc53.bitwarden.com -carLicense: UGOBL2 -departmentNumber: 4562 -employeeType: Employee -homePhone: +1 804 918-2443 -initials: S. W. -mobile: +1 804 344-1655 -pager: +1 804 425-8607 -roomNumber: 8682 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dixie Yuhanna -sn: Yuhanna -description: This is Dixie Yuhanna's description -facsimileTelephoneNumber: +1 213 689-5155 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 213 674-1252 -title: Junior Product Development Dictator -userPassword: Password1 -uid: YuhannaD -givenName: Dixie -mail: YuhannaD@fb80550ae6b245dcb9c2cdf7ac12567e.bitwarden.com -carLicense: D6NQXU -departmentNumber: 8408 -employeeType: Employee -homePhone: +1 213 489-7028 -initials: D. Y. -mobile: +1 213 317-3425 -pager: +1 213 743-1582 -roomNumber: 9709 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ardene Hofstede,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardene Hofstede -sn: Hofstede -description: This is Ardene Hofstede's description -facsimileTelephoneNumber: +1 408 422-9070 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 500-9474 -title: Chief Product Development Artist -userPassword: Password1 -uid: HofstedA -givenName: Ardene -mail: HofstedA@52e746b148db486a82aefd7394487227.bitwarden.com -carLicense: E6KK6F -departmentNumber: 2818 -employeeType: Employee -homePhone: +1 408 514-3538 -initials: A. H. -mobile: +1 408 128-9937 -pager: +1 408 797-2197 -roomNumber: 8340 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Panos Wessell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Panos Wessell -sn: Wessell -description: This is Panos Wessell's description -facsimileTelephoneNumber: +1 408 903-8469 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 344-9927 -title: Master Payroll Mascot -userPassword: Password1 -uid: WessellP -givenName: Panos -mail: WessellP@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com -carLicense: D7L01X -departmentNumber: 5314 -employeeType: Employee -homePhone: +1 408 306-8077 -initials: P. W. -mobile: +1 408 265-4338 -pager: +1 408 338-9869 -roomNumber: 8530 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alanah Ananmalay -sn: Ananmalay -description: This is Alanah Ananmalay's description -facsimileTelephoneNumber: +1 213 850-6657 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 213 573-2252 -title: Junior Product Testing Figurehead -userPassword: Password1 -uid: AnanmalA -givenName: Alanah -mail: AnanmalA@83071766c35b4f64b633c2228d274ed7.bitwarden.com -carLicense: N8LW45 -departmentNumber: 2570 -employeeType: Employee -homePhone: +1 213 759-2685 -initials: A. A. -mobile: +1 213 275-5285 -pager: +1 213 368-8480 -roomNumber: 9367 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carolan Kamerson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolan Kamerson -sn: Kamerson -description: This is Carolan Kamerson's description -facsimileTelephoneNumber: +1 510 262-3342 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 583-3116 -title: Chief Management Mascot -userPassword: Password1 -uid: KamersoC -givenName: Carolan -mail: KamersoC@cc743470ff7d424999d3c3aceed5aa98.bitwarden.com -carLicense: MIK5VQ -departmentNumber: 2187 -employeeType: Normal -homePhone: +1 510 343-3813 -initials: C. K. -mobile: +1 510 782-8516 -pager: +1 510 690-8201 -roomNumber: 8295 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Stew Doan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stew Doan -sn: Doan -description: This is Stew Doan's description -facsimileTelephoneNumber: +1 408 663-6124 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 176-6067 -title: Master Peons Janitor -userPassword: Password1 -uid: DoanS -givenName: Stew -mail: DoanS@0ea39720ccd849b98e8f01497c06b283.bitwarden.com -carLicense: 1L6ER5 -departmentNumber: 5393 -employeeType: Normal -homePhone: +1 408 160-6836 -initials: S. D. -mobile: +1 408 288-5663 -pager: +1 408 882-9497 -roomNumber: 9723 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tap Moreau,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tap Moreau -sn: Moreau -description: This is Tap Moreau's description -facsimileTelephoneNumber: +1 818 316-9021 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 282-5702 -title: Junior Product Development Figurehead -userPassword: Password1 -uid: MoreauT -givenName: Tap -mail: MoreauT@518d5688f4c94956a0b481cd83e3e460.bitwarden.com -carLicense: 0GW3DJ -departmentNumber: 5297 -employeeType: Normal -homePhone: +1 818 636-7802 -initials: T. M. -mobile: +1 818 541-8187 -pager: +1 818 464-4711 -roomNumber: 8423 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Irena Pimiskern -sn: Pimiskern -description: This is Irena Pimiskern's description -facsimileTelephoneNumber: +1 415 189-5629 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 201-2061 -title: Junior Product Testing Madonna -userPassword: Password1 -uid: PimiskeI -givenName: Irena -mail: PimiskeI@51a4413e49e7448782016bff6d71f8fb.bitwarden.com -carLicense: 6JXK26 -departmentNumber: 2929 -employeeType: Normal -homePhone: +1 415 128-6827 -initials: I. P. -mobile: +1 415 311-8506 -pager: +1 415 978-1841 -roomNumber: 8898 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheilah Tiberghien -sn: Tiberghien -description: This is Sheilah Tiberghien's description -facsimileTelephoneNumber: +1 206 780-2802 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 872-6451 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: TiberghS -givenName: Sheilah -mail: TiberghS@d34dd7c3a21b4320a472b183ccccd155.bitwarden.com -carLicense: DXRSX6 -departmentNumber: 9516 -employeeType: Employee -homePhone: +1 206 948-3788 -initials: S. T. -mobile: +1 206 542-9589 -pager: +1 206 151-1535 -roomNumber: 8430 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Peg Alcott,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peg Alcott -sn: Alcott -description: This is Peg Alcott's description -facsimileTelephoneNumber: +1 415 179-5668 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 457-6770 -title: Associate Product Development Sales Rep -userPassword: Password1 -uid: AlcottP -givenName: Peg -mail: AlcottP@911bea6fd5eb467e8bf6c3f29ab2f42b.bitwarden.com -carLicense: 3H6SN0 -departmentNumber: 2244 -employeeType: Employee -homePhone: +1 415 903-4851 -initials: P. A. -mobile: +1 415 110-2801 -pager: +1 415 370-4503 -roomNumber: 9477 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Henrika Mihm,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henrika Mihm -sn: Mihm -description: This is Henrika Mihm's description -facsimileTelephoneNumber: +1 213 531-6040 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 213 118-3802 -title: Associate Product Testing Evangelist -userPassword: Password1 -uid: MihmH -givenName: Henrika -mail: MihmH@93c66893cda74239a9a56d1199a44457.bitwarden.com -carLicense: U1OV7H -departmentNumber: 2146 -employeeType: Employee -homePhone: +1 213 802-7436 -initials: H. M. -mobile: +1 213 844-3158 -pager: +1 213 591-9594 -roomNumber: 9070 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Count Watts,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Count Watts -sn: Watts -description: This is Count Watts's description -facsimileTelephoneNumber: +1 415 863-6412 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 499-4121 -title: Master Product Development Dictator -userPassword: Password1 -uid: WattsC -givenName: Count -mail: WattsC@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com -carLicense: M9YTXF -departmentNumber: 1785 -employeeType: Normal -homePhone: +1 415 710-4699 -initials: C. W. -mobile: +1 415 397-4641 -pager: +1 415 102-9116 -roomNumber: 9387 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lesly Engman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lesly Engman -sn: Engman -description: This is Lesly Engman's description -facsimileTelephoneNumber: +1 206 401-8098 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 228-1435 -title: Master Administrative Grunt -userPassword: Password1 -uid: EngmanL -givenName: Lesly -mail: EngmanL@aa1e8f7905ad4306b9351c481bfc8797.bitwarden.com -carLicense: DSVLIB -departmentNumber: 6277 -employeeType: Employee -homePhone: +1 206 571-6264 -initials: L. E. -mobile: +1 206 200-5094 -pager: +1 206 783-4148 -roomNumber: 9601 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalina Patwardhan -sn: Patwardhan -description: This is Kalina Patwardhan's description -facsimileTelephoneNumber: +1 206 279-5732 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 233-8939 -title: Associate Administrative Assistant -userPassword: Password1 -uid: PatwardK -givenName: Kalina -mail: PatwardK@06731df963584f3ca191849b64eabf87.bitwarden.com -carLicense: F46NIT -departmentNumber: 9226 -employeeType: Employee -homePhone: +1 206 855-3574 -initials: K. P. -mobile: +1 206 482-9499 -pager: +1 206 290-1995 -roomNumber: 8964 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Txp Calmejane,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Txp Calmejane -sn: Calmejane -description: This is Txp Calmejane's description -facsimileTelephoneNumber: +1 804 728-1725 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 368-6941 -title: Master Human Resources Director -userPassword: Password1 -uid: CalmejaT -givenName: Txp -mail: CalmejaT@721925c092ab4630a360f318924bd972.bitwarden.com -carLicense: T9YHTL -departmentNumber: 8135 -employeeType: Employee -homePhone: +1 804 813-6720 -initials: T. C. -mobile: +1 804 783-5486 -pager: +1 804 152-9772 -roomNumber: 8911 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorry Constantinides -sn: Constantinides -description: This is Lorry Constantinides's description -facsimileTelephoneNumber: +1 804 981-4883 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 394-9986 -title: Master Human Resources Mascot -userPassword: Password1 -uid: ConstanL -givenName: Lorry -mail: ConstanL@46fc9003cc604a8a9449c2533498fb92.bitwarden.com -carLicense: ALB4TQ -departmentNumber: 7595 -employeeType: Contract -homePhone: +1 804 554-7270 -initials: L. C. -mobile: +1 804 901-5285 -pager: +1 804 125-6961 -roomNumber: 9160 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aurore Hubers,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurore Hubers -sn: Hubers -description: This is Aurore Hubers's description -facsimileTelephoneNumber: +1 510 967-6387 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 532-3334 -title: Supreme Human Resources Pinhead -userPassword: Password1 -uid: HubersA -givenName: Aurore -mail: HubersA@f16cc86c487d4fe7b6b007e41eade44a.bitwarden.com -carLicense: EO6HO7 -departmentNumber: 9123 -employeeType: Employee -homePhone: +1 510 210-7473 -initials: A. H. -mobile: +1 510 379-8541 -pager: +1 510 744-3744 -roomNumber: 8865 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sharad Shearin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharad Shearin -sn: Shearin -description: This is Sharad Shearin's description -facsimileTelephoneNumber: +1 415 156-5640 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 512-3285 -title: Chief Payroll Director -userPassword: Password1 -uid: ShearinS -givenName: Sharad -mail: ShearinS@bf5f757433234192bb075cccda7f6941.bitwarden.com -carLicense: 8QVSNH -departmentNumber: 9102 -employeeType: Employee -homePhone: +1 415 752-3780 -initials: S. S. -mobile: +1 415 499-4601 -pager: +1 415 191-4325 -roomNumber: 8303 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jennica Vonck,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jennica Vonck -sn: Vonck -description: This is Jennica Vonck's description -facsimileTelephoneNumber: +1 818 390-9424 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 695-4753 -title: Associate Management Grunt -userPassword: Password1 -uid: VonckJ -givenName: Jennica -mail: VonckJ@fa6f1422a9064a168045966e8899109e.bitwarden.com -carLicense: B7WK7R -departmentNumber: 6514 -employeeType: Contract -homePhone: +1 818 459-2719 -initials: J. V. -mobile: +1 818 925-9580 -pager: +1 818 828-3455 -roomNumber: 8901 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charissa Hazenboom -sn: Hazenboom -description: This is Charissa Hazenboom's description -facsimileTelephoneNumber: +1 510 223-9984 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 206-8808 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: HazenboC -givenName: Charissa -mail: HazenboC@ecca4a8cb1474812a6ec4a57737ddfaf.bitwarden.com -carLicense: G9TUWK -departmentNumber: 4654 -employeeType: Employee -homePhone: +1 510 475-6058 -initials: C. H. -mobile: +1 510 942-3056 -pager: +1 510 254-7106 -roomNumber: 9969 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chesteen Wyant,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chesteen Wyant -sn: Wyant -description: This is Chesteen Wyant's description -facsimileTelephoneNumber: +1 213 758-1300 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 944-5784 -title: Junior Management Punk -userPassword: Password1 -uid: WyantC -givenName: Chesteen -mail: WyantC@40591993a80c4f498ba90d5c4df5bf9c.bitwarden.com -carLicense: VULAL5 -departmentNumber: 4249 -employeeType: Employee -homePhone: +1 213 673-2003 -initials: C. W. -mobile: +1 213 212-1202 -pager: +1 213 699-9632 -roomNumber: 9173 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Coraline Kolton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coraline Kolton -sn: Kolton -description: This is Coraline Kolton's description -facsimileTelephoneNumber: +1 804 363-7346 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 804 503-2463 -title: Junior Payroll Engineer -userPassword: Password1 -uid: KoltonC -givenName: Coraline -mail: KoltonC@cdfacd88fafe4ba8970bb7d5170496d3.bitwarden.com -carLicense: 93LBCR -departmentNumber: 1353 -employeeType: Employee -homePhone: +1 804 152-3996 -initials: C. K. -mobile: +1 804 373-8026 -pager: +1 804 435-8692 -roomNumber: 9930 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhianna Donaldson -sn: Donaldson -description: This is Rhianna Donaldson's description -facsimileTelephoneNumber: +1 213 416-6933 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 358-6780 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: DonaldsR -givenName: Rhianna -mail: DonaldsR@95581eb6a8bb49808363d11bfe34de80.bitwarden.com -carLicense: JIDMKU -departmentNumber: 6005 -employeeType: Contract -homePhone: +1 213 827-4958 -initials: R. D. -mobile: +1 213 192-4102 -pager: +1 213 489-9222 -roomNumber: 9889 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Horacio Oberpriller,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Horacio Oberpriller -sn: Oberpriller -description: This is Horacio Oberpriller's description -facsimileTelephoneNumber: +1 206 516-6520 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 732-3436 -title: Supreme Management Dictator -userPassword: Password1 -uid: OberpriH -givenName: Horacio -mail: OberpriH@841df0a2276144ffade10ec334e0a08c.bitwarden.com -carLicense: 983D8R -departmentNumber: 8654 -employeeType: Contract -homePhone: +1 206 640-4855 -initials: H. O. -mobile: +1 206 817-2132 -pager: +1 206 887-5119 -roomNumber: 8021 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Padriac Kortekaas -sn: Kortekaas -description: This is Padriac Kortekaas's description -facsimileTelephoneNumber: +1 818 617-3951 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 692-3838 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: KortekaP -givenName: Padriac -mail: KortekaP@0fd135b263b342ad9db4b39831f787af.bitwarden.com -carLicense: 41M0RA -departmentNumber: 9438 -employeeType: Contract -homePhone: +1 818 880-7880 -initials: P. K. -mobile: +1 818 655-5216 -pager: +1 818 976-9719 -roomNumber: 9116 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nathalia Hawker -sn: Hawker -description: This is Nathalia Hawker's description -facsimileTelephoneNumber: +1 206 892-6329 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 759-5185 -title: Master Human Resources Pinhead -userPassword: Password1 -uid: HawkerN -givenName: Nathalia -mail: HawkerN@5c0f96a3078844a4801dba9a3ab9ce0b.bitwarden.com -carLicense: L1ELM4 -departmentNumber: 1049 -employeeType: Normal -homePhone: +1 206 972-8938 -initials: N. H. -mobile: +1 206 752-4874 -pager: +1 206 448-1738 -roomNumber: 9625 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lsi Assistance,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lsi Assistance -sn: Assistance -description: This is Lsi Assistance's description -facsimileTelephoneNumber: +1 206 903-2521 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 540-7478 -title: Master Janitorial Director -userPassword: Password1 -uid: AssistaL -givenName: Lsi -mail: AssistaL@5d8927d9a18847879f1969c651cc8b72.bitwarden.com -carLicense: 6EO8D6 -departmentNumber: 8356 -employeeType: Contract -homePhone: +1 206 490-3989 -initials: L. A. -mobile: +1 206 592-8140 -pager: +1 206 775-4440 -roomNumber: 9465 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LouAnn Bamfo -sn: Bamfo -description: This is LouAnn Bamfo's description -facsimileTelephoneNumber: +1 818 275-3211 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 685-3831 -title: Chief Product Testing Artist -userPassword: Password1 -uid: BamfoL -givenName: LouAnn -mail: BamfoL@e06afc97bcee4a81b6e79620a6f216aa.bitwarden.com -carLicense: LQVKXW -departmentNumber: 2593 -employeeType: Contract -homePhone: +1 818 318-3577 -initials: L. B. -mobile: +1 818 703-2715 -pager: +1 818 103-7437 -roomNumber: 8584 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esmaria Jewell -sn: Jewell -description: This is Esmaria Jewell's description -facsimileTelephoneNumber: +1 818 116-5217 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 972-6434 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: JewellE -givenName: Esmaria -mail: JewellE@17530faabce9458899e793820a3f2801.bitwarden.com -carLicense: 6V9AID -departmentNumber: 8269 -employeeType: Normal -homePhone: +1 818 519-9035 -initials: E. J. -mobile: +1 818 632-9509 -pager: +1 818 354-8673 -roomNumber: 9611 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gusta Dadkhah,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gusta Dadkhah -sn: Dadkhah -description: This is Gusta Dadkhah's description -facsimileTelephoneNumber: +1 213 695-3069 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 970-3963 -title: Master Management Assistant -userPassword: Password1 -uid: DadkhahG -givenName: Gusta -mail: DadkhahG@f5fb4e9fecc04c5fb5218048682802f8.bitwarden.com -carLicense: D9C1GC -departmentNumber: 5749 -employeeType: Employee -homePhone: +1 213 759-8132 -initials: G. D. -mobile: +1 213 159-8133 -pager: +1 213 121-7144 -roomNumber: 9109 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Daphene Cho,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphene Cho -sn: Cho -description: This is Daphene Cho's description -facsimileTelephoneNumber: +1 510 106-2524 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 534-9635 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: ChoD -givenName: Daphene -mail: ChoD@c2620996c28c4914aa069de50088574a.bitwarden.com -carLicense: 4MIPO3 -departmentNumber: 6858 -employeeType: Normal -homePhone: +1 510 735-5391 -initials: D. C. -mobile: +1 510 433-3992 -pager: +1 510 939-6612 -roomNumber: 8322 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Minerva Arvin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minerva Arvin -sn: Arvin -description: This is Minerva Arvin's description -facsimileTelephoneNumber: +1 804 718-6926 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 744-9271 -title: Junior Human Resources Evangelist -userPassword: Password1 -uid: ArvinM -givenName: Minerva -mail: ArvinM@bd7ed784957343358f080e4bf8b3e472.bitwarden.com -carLicense: UKQUF8 -departmentNumber: 6855 -employeeType: Normal -homePhone: +1 804 991-4965 -initials: M. A. -mobile: +1 804 388-2282 -pager: +1 804 482-8493 -roomNumber: 8945 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lynna Gumb,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynna Gumb -sn: Gumb -description: This is Lynna Gumb's description -facsimileTelephoneNumber: +1 510 593-5081 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 106-3262 -title: Junior Management Artist -userPassword: Password1 -uid: GumbL -givenName: Lynna -mail: GumbL@6ef1e4ea7e0c4fbca97db771430b3181.bitwarden.com -carLicense: 0RYFW9 -departmentNumber: 8258 -employeeType: Contract -homePhone: +1 510 681-1193 -initials: L. G. -mobile: +1 510 820-5002 -pager: +1 510 168-4698 -roomNumber: 8823 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arleen Owen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arleen Owen -sn: Owen -description: This is Arleen Owen's description -facsimileTelephoneNumber: +1 213 163-3689 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 299-1534 -title: Junior Administrative Janitor -userPassword: Password1 -uid: OwenA -givenName: Arleen -mail: OwenA@d93d3e36ec7e4efdaa17aa90aca2f3e5.bitwarden.com -carLicense: XAR76B -departmentNumber: 5971 -employeeType: Employee -homePhone: +1 213 590-9638 -initials: A. O. -mobile: +1 213 324-5973 -pager: +1 213 615-1976 -roomNumber: 9765 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carsten Ewanchyna -sn: Ewanchyna -description: This is Carsten Ewanchyna's description -facsimileTelephoneNumber: +1 510 304-1514 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 851-7168 -title: Junior Product Development Stooge -userPassword: Password1 -uid: EwanchyC -givenName: Carsten -mail: EwanchyC@9f05691ac53d429c8fd30f6c6f952561.bitwarden.com -carLicense: DGAQD3 -departmentNumber: 3126 -employeeType: Normal -homePhone: +1 510 894-8224 -initials: C. E. -mobile: +1 510 946-5483 -pager: +1 510 839-6193 -roomNumber: 8820 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chelsae Geer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsae Geer -sn: Geer -description: This is Chelsae Geer's description -facsimileTelephoneNumber: +1 415 896-3519 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 415 450-9648 -title: Junior Janitorial Evangelist -userPassword: Password1 -uid: GeerC -givenName: Chelsae -mail: GeerC@ea33a214953b4a6b925d5d0efa8ea38e.bitwarden.com -carLicense: HEVCCK -departmentNumber: 2614 -employeeType: Employee -homePhone: +1 415 483-5624 -initials: C. G. -mobile: +1 415 301-2049 -pager: +1 415 243-6527 -roomNumber: 9317 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Abraham McDougald,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abraham McDougald -sn: McDougald -description: This is Abraham McDougald's description -facsimileTelephoneNumber: +1 213 258-7993 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 605-8787 -title: Master Management Writer -userPassword: Password1 -uid: McDougaA -givenName: Abraham -mail: McDougaA@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com -carLicense: W8DCO4 -departmentNumber: 1574 -employeeType: Employee -homePhone: +1 213 989-5329 -initials: A. M. -mobile: +1 213 708-1661 -pager: +1 213 969-5910 -roomNumber: 9194 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jessa Piasecki,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessa Piasecki -sn: Piasecki -description: This is Jessa Piasecki's description -facsimileTelephoneNumber: +1 213 545-5247 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 553-7368 -title: Chief Management Consultant -userPassword: Password1 -uid: PiaseckJ -givenName: Jessa -mail: PiaseckJ@af9d1266b1684989ab41423cdd351f7f.bitwarden.com -carLicense: 156SIE -departmentNumber: 2915 -employeeType: Employee -homePhone: +1 213 635-4637 -initials: J. P. -mobile: +1 213 537-3690 -pager: +1 213 756-3793 -roomNumber: 8873 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fabienne Deguire -sn: Deguire -description: This is Fabienne Deguire's description -facsimileTelephoneNumber: +1 415 485-7957 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 868-8678 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: DeguireF -givenName: Fabienne -mail: DeguireF@0651cd49040341648ef076fb9d224e36.bitwarden.com -carLicense: LONW4G -departmentNumber: 2219 -employeeType: Employee -homePhone: +1 415 929-1154 -initials: F. D. -mobile: +1 415 505-4286 -pager: +1 415 740-5699 -roomNumber: 9974 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hertha Wayler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hertha Wayler -sn: Wayler -description: This is Hertha Wayler's description -facsimileTelephoneNumber: +1 510 623-9725 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 352-2327 -title: Junior Janitorial Mascot -userPassword: Password1 -uid: WaylerH -givenName: Hertha -mail: WaylerH@2e3ea6fd47a04112b8fcd5e103e3ae77.bitwarden.com -carLicense: DWQJ2A -departmentNumber: 1395 -employeeType: Normal -homePhone: +1 510 305-7634 -initials: H. W. -mobile: +1 510 299-4780 -pager: +1 510 129-2709 -roomNumber: 9404 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gregg Lanzkron -sn: Lanzkron -description: This is Gregg Lanzkron's description -facsimileTelephoneNumber: +1 213 628-4388 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 213 134-2349 -title: Chief Human Resources Mascot -userPassword: Password1 -uid: LanzkroG -givenName: Gregg -mail: LanzkroG@eb5d81d98e0b481098d9b451ee211c82.bitwarden.com -carLicense: 74X0LO -departmentNumber: 8170 -employeeType: Normal -homePhone: +1 213 417-2673 -initials: G. L. -mobile: +1 213 572-5272 -pager: +1 213 988-8630 -roomNumber: 9846 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Richardson Hansquine -sn: Hansquine -description: This is Richardson Hansquine's description -facsimileTelephoneNumber: +1 804 116-3428 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 568-5924 -title: Associate Product Testing Writer -userPassword: Password1 -uid: HansquiR -givenName: Richardson -mail: HansquiR@3ffb284a6509471fa1b109716579396c.bitwarden.com -carLicense: T13CNN -departmentNumber: 4467 -employeeType: Employee -homePhone: +1 804 291-5399 -initials: R. H. -mobile: +1 804 612-2124 -pager: +1 804 174-2397 -roomNumber: 8915 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Haste Isherwood,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haste Isherwood -sn: Isherwood -description: This is Haste Isherwood's description -facsimileTelephoneNumber: +1 213 352-6831 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 960-4124 -title: Master Product Testing Visionary -userPassword: Password1 -uid: IsherwoH -givenName: Haste -mail: IsherwoH@ec8dc3c6877747ab888f5b203f49583b.bitwarden.com -carLicense: NA7E75 -departmentNumber: 9603 -employeeType: Employee -homePhone: +1 213 239-5504 -initials: H. I. -mobile: +1 213 323-9376 -pager: +1 213 892-7242 -roomNumber: 9235 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tonye Frumerie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonye Frumerie -sn: Frumerie -description: This is Tonye Frumerie's description -facsimileTelephoneNumber: +1 510 546-7438 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 612-7492 -title: Junior Management Grunt -userPassword: Password1 -uid: FrumeriT -givenName: Tonye -mail: FrumeriT@bc4791aff5914d0e95bbd2106b1c2de5.bitwarden.com -carLicense: IIMN4X -departmentNumber: 8660 -employeeType: Employee -homePhone: +1 510 632-5298 -initials: T. F. -mobile: +1 510 952-9012 -pager: +1 510 514-3877 -roomNumber: 8047 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nathalia Kinoshita -sn: Kinoshita -description: This is Nathalia Kinoshita's description -facsimileTelephoneNumber: +1 206 952-3807 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 922-2186 -title: Associate Janitorial Admin -userPassword: Password1 -uid: KinoshiN -givenName: Nathalia -mail: KinoshiN@29fc4f33a13046d58a2533f092f80d91.bitwarden.com -carLicense: J66LEE -departmentNumber: 3307 -employeeType: Employee -homePhone: +1 206 535-6396 -initials: N. K. -mobile: +1 206 432-8384 -pager: +1 206 426-6345 -roomNumber: 9608 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lilly Serapin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilly Serapin -sn: Serapin -description: This is Lilly Serapin's description -facsimileTelephoneNumber: +1 510 341-9574 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 510 672-1484 -title: Master Product Testing Janitor -userPassword: Password1 -uid: SerapinL -givenName: Lilly -mail: SerapinL@b9e3cd16f2b646b993b7e643861e809b.bitwarden.com -carLicense: QAYTUC -departmentNumber: 8693 -employeeType: Normal -homePhone: +1 510 346-9703 -initials: L. S. -mobile: +1 510 945-7389 -pager: +1 510 583-2564 -roomNumber: 9858 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Phebe Gordon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phebe Gordon -sn: Gordon -description: This is Phebe Gordon's description -facsimileTelephoneNumber: +1 818 100-5377 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 335-8050 -title: Junior Product Development Artist -userPassword: Password1 -uid: GordonP -givenName: Phebe -mail: GordonP@80ac534602434d3b9eab0832653d2f56.bitwarden.com -carLicense: GDHDDW -departmentNumber: 2024 -employeeType: Employee -homePhone: +1 818 309-2555 -initials: P. G. -mobile: +1 818 797-2259 -pager: +1 818 674-3603 -roomNumber: 9199 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvin Ermarkaryan -sn: Ermarkaryan -description: This is Alvin Ermarkaryan's description -facsimileTelephoneNumber: +1 206 100-9155 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 892-4830 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: ErmarkaA -givenName: Alvin -mail: ErmarkaA@8937c44c9bf6487fb42e97e582a0968a.bitwarden.com -carLicense: SMC05R -departmentNumber: 6531 -employeeType: Normal -homePhone: +1 206 488-7017 -initials: A. E. -mobile: +1 206 356-8830 -pager: +1 206 416-8137 -roomNumber: 9935 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cary Gronwall,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cary Gronwall -sn: Gronwall -description: This is Cary Gronwall's description -facsimileTelephoneNumber: +1 206 923-8140 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 259-6498 -title: Master Peons Engineer -userPassword: Password1 -uid: GronwalC -givenName: Cary -mail: GronwalC@da1dd7866db74262b18c0f383045bcff.bitwarden.com -carLicense: QTDMKV -departmentNumber: 2342 -employeeType: Normal -homePhone: +1 206 561-3963 -initials: C. G. -mobile: +1 206 287-9895 -pager: +1 206 369-3754 -roomNumber: 9284 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mer Kearney,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mer Kearney -sn: Kearney -description: This is Mer Kearney's description -facsimileTelephoneNumber: +1 213 482-5650 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 530-8558 -title: Master Management Figurehead -userPassword: Password1 -uid: KearneyM -givenName: Mer -mail: KearneyM@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com -carLicense: 4IUTTP -departmentNumber: 2264 -employeeType: Normal -homePhone: +1 213 640-3094 -initials: M. K. -mobile: +1 213 848-8805 -pager: +1 213 284-4009 -roomNumber: 9937 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Viqar Campeau,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viqar Campeau -sn: Campeau -description: This is Viqar Campeau's description -facsimileTelephoneNumber: +1 408 778-7705 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 212-4207 -title: Chief Administrative President -userPassword: Password1 -uid: CampeauV -givenName: Viqar -mail: CampeauV@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com -carLicense: 918U85 -departmentNumber: 8573 -employeeType: Contract -homePhone: +1 408 331-9464 -initials: V. C. -mobile: +1 408 378-2480 -pager: +1 408 566-3228 -roomNumber: 8943 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Annet Chatfield,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annet Chatfield -sn: Chatfield -description: This is Annet Chatfield's description -facsimileTelephoneNumber: +1 213 544-9353 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 360-4913 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: ChatfieA -givenName: Annet -mail: ChatfieA@02d556d8128c42b5aa2cd5d4238f40aa.bitwarden.com -carLicense: 4PQLYB -departmentNumber: 2750 -employeeType: Employee -homePhone: +1 213 213-5679 -initials: A. C. -mobile: +1 213 931-6230 -pager: +1 213 978-4738 -roomNumber: 9661 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lizzie Zaid,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lizzie Zaid -sn: Zaid -description: This is Lizzie Zaid's description -facsimileTelephoneNumber: +1 206 720-2557 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 246-2016 -title: Master Management Evangelist -userPassword: Password1 -uid: ZaidL -givenName: Lizzie -mail: ZaidL@4cf5733fc93742b8881de63253f58457.bitwarden.com -carLicense: 8C8HDX -departmentNumber: 9950 -employeeType: Normal -homePhone: +1 206 277-2831 -initials: L. Z. -mobile: +1 206 121-6830 -pager: +1 206 694-2106 -roomNumber: 9017 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Norcal Schrier,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norcal Schrier -sn: Schrier -description: This is Norcal Schrier's description -facsimileTelephoneNumber: +1 408 795-2209 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 588-1661 -title: Master Payroll Grunt -userPassword: Password1 -uid: SchrierN -givenName: Norcal -mail: SchrierN@6440b02815824326a0c464b5e91deecc.bitwarden.com -carLicense: N3T13P -departmentNumber: 9908 -employeeType: Employee -homePhone: +1 408 468-9809 -initials: N. S. -mobile: +1 408 872-2473 -pager: +1 408 833-9104 -roomNumber: 9272 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hesther Fujiwara -sn: Fujiwara -description: This is Hesther Fujiwara's description -facsimileTelephoneNumber: +1 213 828-5466 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 952-9862 -title: Master Janitorial Consultant -userPassword: Password1 -uid: FujiwarH -givenName: Hesther -mail: FujiwarH@98aff7abdd994400acf7af6980180281.bitwarden.com -carLicense: DM5OFV -departmentNumber: 3969 -employeeType: Employee -homePhone: +1 213 989-1636 -initials: H. F. -mobile: +1 213 566-5363 -pager: +1 213 206-2801 -roomNumber: 8680 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marlyne Tardiff,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlyne Tardiff -sn: Tardiff -description: This is Marlyne Tardiff's description -facsimileTelephoneNumber: +1 408 869-2681 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 445-4299 -title: Chief Management Developer -userPassword: Password1 -uid: TardiffM -givenName: Marlyne -mail: TardiffM@0ed116231128466cad659b85d73b9c7b.bitwarden.com -carLicense: KMN0KY -departmentNumber: 6715 -employeeType: Normal -homePhone: +1 408 576-1856 -initials: M. T. -mobile: +1 408 415-6419 -pager: +1 408 633-1861 -roomNumber: 8332 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Annabella Vogel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annabella Vogel -sn: Vogel -description: This is Annabella Vogel's description -facsimileTelephoneNumber: +1 415 718-9079 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 172-7337 -title: Supreme Peons Pinhead -userPassword: Password1 -uid: VogelA -givenName: Annabella -mail: VogelA@240320ec20894b66932f0d930796bec9.bitwarden.com -carLicense: KV5QOH -departmentNumber: 7249 -employeeType: Employee -homePhone: +1 415 966-2202 -initials: A. V. -mobile: +1 415 473-5041 -pager: +1 415 649-8821 -roomNumber: 9702 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Santiago Lorenzo -sn: Lorenzo -description: This is Santiago Lorenzo's description -facsimileTelephoneNumber: +1 804 834-2648 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 535-9560 -title: Associate Product Development Consultant -userPassword: Password1 -uid: LorenzoS -givenName: Santiago -mail: LorenzoS@783cff68e50c48949cc0f27986272654.bitwarden.com -carLicense: 4FMXAE -departmentNumber: 1230 -employeeType: Normal -homePhone: +1 804 279-4934 -initials: S. L. -mobile: +1 804 289-3625 -pager: +1 804 358-1387 -roomNumber: 9962 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bibbie Zeng -sn: Zeng -description: This is Bibbie Zeng's description -facsimileTelephoneNumber: +1 206 297-3438 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 366-4207 -title: Master Product Testing Warrior -userPassword: Password1 -uid: ZengB -givenName: Bibbie -mail: ZengB@135bb9fa72e24dc8b937d7f87525e62d.bitwarden.com -carLicense: NWD8SE -departmentNumber: 1431 -employeeType: Employee -homePhone: +1 206 505-6040 -initials: B. Z. -mobile: +1 206 938-1125 -pager: +1 206 841-3543 -roomNumber: 9777 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ferdinand Czarnecki -sn: Czarnecki -description: This is Ferdinand Czarnecki's description -facsimileTelephoneNumber: +1 510 256-3131 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 510 816-2488 -title: Supreme Janitorial President -userPassword: Password1 -uid: CzarnecF -givenName: Ferdinand -mail: CzarnecF@6c799d8435134ca299840a473c03c953.bitwarden.com -carLicense: NC4NPH -departmentNumber: 5283 -employeeType: Employee -homePhone: +1 510 553-1177 -initials: F. C. -mobile: +1 510 993-2471 -pager: +1 510 205-1108 -roomNumber: 8390 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Farzin Depooter,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farzin Depooter -sn: Depooter -description: This is Farzin Depooter's description -facsimileTelephoneNumber: +1 213 155-8820 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 310-2192 -title: Junior Product Testing Pinhead -userPassword: Password1 -uid: DepooteF -givenName: Farzin -mail: DepooteF@7ea8c6e071cb415baa4ccfac0bf339ef.bitwarden.com -carLicense: EIOQSK -departmentNumber: 9189 -employeeType: Contract -homePhone: +1 213 180-4083 -initials: F. D. -mobile: +1 213 824-4602 -pager: +1 213 162-8571 -roomNumber: 8006 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Denys Paone,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denys Paone -sn: Paone -description: This is Denys Paone's description -facsimileTelephoneNumber: +1 408 197-2825 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 625-9531 -title: Master Management Writer -userPassword: Password1 -uid: PaoneD -givenName: Denys -mail: PaoneD@a8abb07edeb74ec1ae70796a921d4f89.bitwarden.com -carLicense: UN8QW4 -departmentNumber: 1509 -employeeType: Contract -homePhone: +1 408 118-9344 -initials: D. P. -mobile: +1 408 195-8217 -pager: +1 408 267-2683 -roomNumber: 8261 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ghassan Payne,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ghassan Payne -sn: Payne -description: This is Ghassan Payne's description -facsimileTelephoneNumber: +1 415 681-5540 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 919-5206 -title: Associate Administrative Czar -userPassword: Password1 -uid: PayneG -givenName: Ghassan -mail: PayneG@abbaec0735d04a0996e4b288ba069955.bitwarden.com -carLicense: YXQLBS -departmentNumber: 4262 -employeeType: Normal -homePhone: +1 415 697-4463 -initials: G. P. -mobile: +1 415 874-3760 -pager: +1 415 448-5832 -roomNumber: 8750 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Heida Cripps,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heida Cripps -sn: Cripps -description: This is Heida Cripps's description -facsimileTelephoneNumber: +1 804 680-6029 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 246-1777 -title: Associate Management Madonna -userPassword: Password1 -uid: CrippsH -givenName: Heida -mail: CrippsH@5857bd6862ae44e0abdb84cc22875a30.bitwarden.com -carLicense: SRHJN5 -departmentNumber: 6104 -employeeType: Contract -homePhone: +1 804 670-4813 -initials: H. C. -mobile: +1 804 725-8786 -pager: +1 804 663-2395 -roomNumber: 8277 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sayed Belaire,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sayed Belaire -sn: Belaire -description: This is Sayed Belaire's description -facsimileTelephoneNumber: +1 213 661-6018 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 435-7517 -title: Junior Human Resources Punk -userPassword: Password1 -uid: BelaireS -givenName: Sayed -mail: BelaireS@40cd70dd1d24483692f5533e0ae7157a.bitwarden.com -carLicense: 0PP1ES -departmentNumber: 6331 -employeeType: Normal -homePhone: +1 213 439-6093 -initials: S. B. -mobile: +1 213 910-1233 -pager: +1 213 135-7234 -roomNumber: 9793 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelton Zumhagen -sn: Zumhagen -description: This is Shelton Zumhagen's description -facsimileTelephoneNumber: +1 818 890-5872 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 427-4264 -title: Chief Payroll Madonna -userPassword: Password1 -uid: ZumhageS -givenName: Shelton -mail: ZumhageS@1567184d0d9f4bd798c9d76aae00fe9e.bitwarden.com -carLicense: TGM14K -departmentNumber: 3060 -employeeType: Normal -homePhone: +1 818 342-1339 -initials: S. Z. -mobile: +1 818 350-4700 -pager: +1 818 411-6649 -roomNumber: 9510 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sileas Brungardt,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sileas Brungardt -sn: Brungardt -description: This is Sileas Brungardt's description -facsimileTelephoneNumber: +1 510 621-3443 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 510 250-2868 -title: Junior Management Visionary -userPassword: Password1 -uid: BrungarS -givenName: Sileas -mail: BrungarS@99efb52676a5438d8f4dfeb830e52009.bitwarden.com -carLicense: YMC6PP -departmentNumber: 5251 -employeeType: Normal -homePhone: +1 510 736-6864 -initials: S. B. -mobile: +1 510 952-8431 -pager: +1 510 807-8623 -roomNumber: 9843 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cantrell Seregelyi -sn: Seregelyi -description: This is Cantrell Seregelyi's description -facsimileTelephoneNumber: +1 510 973-7208 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 510 431-9753 -title: Associate Administrative Stooge -userPassword: Password1 -uid: SeregelC -givenName: Cantrell -mail: SeregelC@ba472466323f4495990396411f318b4e.bitwarden.com -carLicense: K1WOAM -departmentNumber: 9734 -employeeType: Normal -homePhone: +1 510 251-5952 -initials: C. S. -mobile: +1 510 829-2195 -pager: +1 510 631-3778 -roomNumber: 8577 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nicholas Shupe,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicholas Shupe -sn: Shupe -description: This is Nicholas Shupe's description -facsimileTelephoneNumber: +1 818 562-2919 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 961-6023 -title: Master Peons Dictator -userPassword: Password1 -uid: ShupeN -givenName: Nicholas -mail: ShupeN@ac9bf0e4278e4b36812b33be5aa4f608.bitwarden.com -carLicense: EC764R -departmentNumber: 6705 -employeeType: Normal -homePhone: +1 818 551-8325 -initials: N. S. -mobile: +1 818 578-1963 -pager: +1 818 770-8268 -roomNumber: 8147 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shayna Guinnane -sn: Guinnane -description: This is Shayna Guinnane's description -facsimileTelephoneNumber: +1 804 784-4357 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 534-5189 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: GuinnanS -givenName: Shayna -mail: GuinnanS@f88dd8b6188242cc853f83412105868d.bitwarden.com -carLicense: LQGH3Q -departmentNumber: 5856 -employeeType: Contract -homePhone: +1 804 484-7068 -initials: S. G. -mobile: +1 804 341-1769 -pager: +1 804 463-3908 -roomNumber: 8448 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Margaret Binda,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margaret Binda -sn: Binda -description: This is Margaret Binda's description -facsimileTelephoneNumber: +1 818 376-3120 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 232-4279 -title: Master Peons Technician -userPassword: Password1 -uid: BindaM -givenName: Margaret -mail: BindaM@0ec5cd8f3a4c4de5a7f274f9d3332893.bitwarden.com -carLicense: STLKHC -departmentNumber: 2802 -employeeType: Employee -homePhone: +1 818 612-3735 -initials: M. B. -mobile: +1 818 855-8357 -pager: +1 818 835-2108 -roomNumber: 8233 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=MaryAnn Windom,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryAnn Windom -sn: Windom -description: This is MaryAnn Windom's description -facsimileTelephoneNumber: +1 213 390-2535 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 279-7363 -title: Associate Peons Technician -userPassword: Password1 -uid: WindomM -givenName: MaryAnn -mail: WindomM@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com -carLicense: 2HAPYX -departmentNumber: 2815 -employeeType: Contract -homePhone: +1 213 141-2456 -initials: M. W. -mobile: +1 213 895-3653 -pager: +1 213 635-6565 -roomNumber: 9619 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cammie Lobello,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cammie Lobello -sn: Lobello -description: This is Cammie Lobello's description -facsimileTelephoneNumber: +1 804 111-1276 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 170-9574 -title: Master Payroll Warrior -userPassword: Password1 -uid: LobelloC -givenName: Cammie -mail: LobelloC@d4ad583ecaae406097e581a7aec5a780.bitwarden.com -carLicense: 7LVW6O -departmentNumber: 4685 -employeeType: Contract -homePhone: +1 804 669-6418 -initials: C. L. -mobile: +1 804 911-8386 -pager: +1 804 104-3924 -roomNumber: 9530 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=HangTong Shek,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HangTong Shek -sn: Shek -description: This is HangTong Shek's description -facsimileTelephoneNumber: +1 818 431-4754 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 198-3161 -title: Master Product Development Director -userPassword: Password1 -uid: ShekH -givenName: HangTong -mail: ShekH@edda584dd7a3409daa4b2eabe9e2cdb4.bitwarden.com -carLicense: UYAGON -departmentNumber: 5585 -employeeType: Contract -homePhone: +1 818 949-6312 -initials: H. S. -mobile: +1 818 302-1928 -pager: +1 818 402-1015 -roomNumber: 8418 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyrine Yoshioka -sn: Yoshioka -description: This is Cyrine Yoshioka's description -facsimileTelephoneNumber: +1 213 848-2084 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 985-1098 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: YoshiokC -givenName: Cyrine -mail: YoshiokC@abae44a8c9154a558b8ee514a89fd6ef.bitwarden.com -carLicense: 8JR8OM -departmentNumber: 9474 -employeeType: Normal -homePhone: +1 213 961-4237 -initials: C. Y. -mobile: +1 213 565-8457 -pager: +1 213 789-8305 -roomNumber: 9867 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Engin Mersinger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Engin Mersinger -sn: Mersinger -description: This is Engin Mersinger's description -facsimileTelephoneNumber: +1 206 587-7851 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 206 649-8333 -title: Chief Human Resources Manager -userPassword: Password1 -uid: MersingE -givenName: Engin -mail: MersingE@a424c942226a48928880fd6debd4c0c3.bitwarden.com -carLicense: N6CAYG -departmentNumber: 5881 -employeeType: Normal -homePhone: +1 206 430-4744 -initials: E. M. -mobile: +1 206 910-5713 -pager: +1 206 703-7695 -roomNumber: 9849 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rebbecca Perina,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebbecca Perina -sn: Perina -description: This is Rebbecca Perina's description -facsimileTelephoneNumber: +1 510 426-6909 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 197-9123 -title: Junior Management Developer -userPassword: Password1 -uid: PerinaR -givenName: Rebbecca -mail: PerinaR@89a8ded54db64032804dc4a0a9dd8e92.bitwarden.com -carLicense: Y7T5VT -departmentNumber: 9288 -employeeType: Normal -homePhone: +1 510 195-6392 -initials: R. P. -mobile: +1 510 932-5000 -pager: +1 510 737-7713 -roomNumber: 8140 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Piero Preece,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Piero Preece -sn: Preece -description: This is Piero Preece's description -facsimileTelephoneNumber: +1 510 550-9941 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 397-7276 -title: Supreme Peons Mascot -userPassword: Password1 -uid: PreeceP -givenName: Piero -mail: PreeceP@fc3a6a2ed2a041edaaee095273406b72.bitwarden.com -carLicense: 1YHSJL -departmentNumber: 5256 -employeeType: Employee -homePhone: +1 510 590-2276 -initials: P. P. -mobile: +1 510 775-8758 -pager: +1 510 263-9574 -roomNumber: 9799 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pradip Draffin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pradip Draffin -sn: Draffin -description: This is Pradip Draffin's description -facsimileTelephoneNumber: +1 408 479-8252 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 611-9729 -title: Junior Human Resources Admin -userPassword: Password1 -uid: DraffinP -givenName: Pradip -mail: DraffinP@315eb199a17945298e19ac4cd2657bca.bitwarden.com -carLicense: 2UM6EN -departmentNumber: 4375 -employeeType: Contract -homePhone: +1 408 723-9399 -initials: P. D. -mobile: +1 408 539-2558 -pager: +1 408 292-4765 -roomNumber: 9826 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaffney Bowler -sn: Bowler -description: This is Gaffney Bowler's description -facsimileTelephoneNumber: +1 213 592-9733 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 622-4390 -title: Master Human Resources Engineer -userPassword: Password1 -uid: BowlerG -givenName: Gaffney -mail: BowlerG@98febd962501443b89a9e8bfacf12a9e.bitwarden.com -carLicense: HLPH1Y -departmentNumber: 7151 -employeeType: Contract -homePhone: +1 213 424-3062 -initials: G. B. -mobile: +1 213 459-5462 -pager: +1 213 630-9607 -roomNumber: 8489 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jacynth Etemad,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacynth Etemad -sn: Etemad -description: This is Jacynth Etemad's description -facsimileTelephoneNumber: +1 415 234-3870 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 204-6229 -title: Chief Administrative Artist -userPassword: Password1 -uid: EtemadJ -givenName: Jacynth -mail: EtemadJ@8942e77394054acf85b23cffda0e66d1.bitwarden.com -carLicense: G53HMC -departmentNumber: 3738 -employeeType: Employee -homePhone: +1 415 841-1380 -initials: J. E. -mobile: +1 415 261-9152 -pager: +1 415 326-8701 -roomNumber: 9091 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Brittany Pokinko,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brittany Pokinko -sn: Pokinko -description: This is Brittany Pokinko's description -facsimileTelephoneNumber: +1 213 126-9518 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 795-9584 -title: Junior Management Mascot -userPassword: Password1 -uid: PokinkoB -givenName: Brittany -mail: PokinkoB@beb04887c3a74fa0ae74089e879db636.bitwarden.com -carLicense: M0F49C -departmentNumber: 9796 -employeeType: Contract -homePhone: +1 213 238-7530 -initials: B. P. -mobile: +1 213 343-9738 -pager: +1 213 723-6885 -roomNumber: 9594 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeannot Rch,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeannot Rch -sn: Rch -description: This is Jeannot Rch's description -facsimileTelephoneNumber: +1 415 205-5265 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 913-6631 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: RchJ -givenName: Jeannot -mail: RchJ@71f49fd634ac4515894d5fd3319ef9a6.bitwarden.com -carLicense: FGCSF4 -departmentNumber: 5631 -employeeType: Normal -homePhone: +1 415 831-6896 -initials: J. R. -mobile: +1 415 822-9078 -pager: +1 415 329-2756 -roomNumber: 9097 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Wiebren Zaia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wiebren Zaia -sn: Zaia -description: This is Wiebren Zaia's description -facsimileTelephoneNumber: +1 818 383-5474 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 787-9577 -title: Master Product Development Stooge -userPassword: Password1 -uid: ZaiaW -givenName: Wiebren -mail: ZaiaW@565c1161bdcb416b9e8012a23ab58823.bitwarden.com -carLicense: 5SGY1T -departmentNumber: 3988 -employeeType: Employee -homePhone: +1 818 646-3332 -initials: W. Z. -mobile: +1 818 310-7061 -pager: +1 818 542-5102 -roomNumber: 9839 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karlyn Kell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlyn Kell -sn: Kell -description: This is Karlyn Kell's description -facsimileTelephoneNumber: +1 206 749-6740 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 799-6330 -title: Supreme Product Testing Visionary -userPassword: Password1 -uid: KellK -givenName: Karlyn -mail: KellK@0be01d83222f46f7842093c364d584c6.bitwarden.com -carLicense: R75BXY -departmentNumber: 1345 -employeeType: Normal -homePhone: +1 206 667-3401 -initials: K. K. -mobile: +1 206 406-5268 -pager: +1 206 327-1021 -roomNumber: 8535 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Noriko Devenny,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noriko Devenny -sn: Devenny -description: This is Noriko Devenny's description -facsimileTelephoneNumber: +1 213 564-7100 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 710-6428 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: DevennyN -givenName: Noriko -mail: DevennyN@43188b75c2e34348ad81287ed476a6be.bitwarden.com -carLicense: QB4UXH -departmentNumber: 4107 -employeeType: Normal -homePhone: +1 213 748-5349 -initials: N. D. -mobile: +1 213 955-7333 -pager: +1 213 450-6562 -roomNumber: 9179 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharleen Sutherland -sn: Sutherland -description: This is Sharleen Sutherland's description -facsimileTelephoneNumber: +1 206 373-6034 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 149-4698 -title: Junior Janitorial President -userPassword: Password1 -uid: SutherlS -givenName: Sharleen -mail: SutherlS@29cf82166a6a4ea0989e7e7b62bf4159.bitwarden.com -carLicense: 673XLS -departmentNumber: 8562 -employeeType: Employee -homePhone: +1 206 276-5587 -initials: S. S. -mobile: +1 206 969-8063 -pager: +1 206 797-4289 -roomNumber: 8189 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MinhPhuc Racioppi -sn: Racioppi -description: This is MinhPhuc Racioppi's description -facsimileTelephoneNumber: +1 818 965-9795 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 244-6529 -title: Master Administrative Manager -userPassword: Password1 -uid: RacioppM -givenName: MinhPhuc -mail: RacioppM@9daad43b51a94c0ca7959dc6c27a0690.bitwarden.com -carLicense: KL18WV -departmentNumber: 6954 -employeeType: Normal -homePhone: +1 818 284-3573 -initials: M. R. -mobile: +1 818 475-3679 -pager: +1 818 300-1877 -roomNumber: 9169 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozelle Chisolm -sn: Chisolm -description: This is Rozelle Chisolm's description -facsimileTelephoneNumber: +1 804 479-1142 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 352-6700 -title: Master Human Resources Visionary -userPassword: Password1 -uid: ChisolmR -givenName: Rozelle -mail: ChisolmR@c10a1f2c3750409ea6ba15a45a2d3288.bitwarden.com -carLicense: FXNV84 -departmentNumber: 6517 -employeeType: Contract -homePhone: +1 804 983-2408 -initials: R. C. -mobile: +1 804 590-7025 -pager: +1 804 856-3664 -roomNumber: 9907 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Porfirio Epperson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Porfirio Epperson -sn: Epperson -description: This is Porfirio Epperson's description -facsimileTelephoneNumber: +1 818 315-1831 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 969-1940 -title: Chief Product Development Warrior -userPassword: Password1 -uid: EppersoP -givenName: Porfirio -mail: EppersoP@5411fa97ed104161bed6dae71e8cb050.bitwarden.com -carLicense: LP0Q2A -departmentNumber: 2693 -employeeType: Normal -homePhone: +1 818 117-3951 -initials: P. E. -mobile: +1 818 286-5727 -pager: +1 818 768-2027 -roomNumber: 9319 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Linnet Streight,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linnet Streight -sn: Streight -description: This is Linnet Streight's description -facsimileTelephoneNumber: +1 415 596-4807 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 816-5981 -title: Junior Management Assistant -userPassword: Password1 -uid: StreighL -givenName: Linnet -mail: StreighL@149bc1b766d74419a516a7f2cbdf7f66.bitwarden.com -carLicense: SQLICQ -departmentNumber: 9184 -employeeType: Normal -homePhone: +1 415 359-5739 -initials: L. S. -mobile: +1 415 925-7349 -pager: +1 415 554-3892 -roomNumber: 8098 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rici Hartkopf -sn: Hartkopf -description: This is Rici Hartkopf's description -facsimileTelephoneNumber: +1 818 165-8705 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 715-3466 -title: Associate Janitorial Stooge -userPassword: Password1 -uid: HartkopR -givenName: Rici -mail: HartkopR@2376664dd9b549139927cefdacae1cbe.bitwarden.com -carLicense: 1AKUYA -departmentNumber: 3500 -employeeType: Contract -homePhone: +1 818 151-3268 -initials: R. H. -mobile: +1 818 407-4036 -pager: +1 818 752-7471 -roomNumber: 9864 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tomi Bridges,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tomi Bridges -sn: Bridges -description: This is Tomi Bridges's description -facsimileTelephoneNumber: +1 804 507-2239 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 238-5417 -title: Associate Management Mascot -userPassword: Password1 -uid: BridgesT -givenName: Tomi -mail: BridgesT@df6375b797c34567a9e4770a61e55877.bitwarden.com -carLicense: WYSNYQ -departmentNumber: 3231 -employeeType: Employee -homePhone: +1 804 983-4997 -initials: T. B. -mobile: +1 804 673-6363 -pager: +1 804 828-2916 -roomNumber: 8028 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gerardo Walia,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerardo Walia -sn: Walia -description: This is Gerardo Walia's description -facsimileTelephoneNumber: +1 804 416-3015 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 230-6667 -title: Associate Management Developer -userPassword: Password1 -uid: WaliaG -givenName: Gerardo -mail: WaliaG@b2d1290fcbcc4431adfadb5c58eee36e.bitwarden.com -carLicense: WYIII1 -departmentNumber: 8543 -employeeType: Employee -homePhone: +1 804 713-1410 -initials: G. W. -mobile: +1 804 299-8156 -pager: +1 804 223-4463 -roomNumber: 8487 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hailee Corace,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hailee Corace -sn: Corace -description: This is Hailee Corace's description -facsimileTelephoneNumber: +1 213 733-9613 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 333-9138 -title: Master Administrative Stooge -userPassword: Password1 -uid: CoraceH -givenName: Hailee -mail: CoraceH@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com -carLicense: Y596U2 -departmentNumber: 5326 -employeeType: Normal -homePhone: +1 213 297-7494 -initials: H. C. -mobile: +1 213 444-9391 -pager: +1 213 118-5791 -roomNumber: 9827 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: VuHoan Kehler -sn: Kehler -description: This is VuHoan Kehler's description -facsimileTelephoneNumber: +1 510 948-3964 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 667-7035 -title: Supreme Product Testing Assistant -userPassword: Password1 -uid: KehlerV -givenName: VuHoan -mail: KehlerV@c6c3f852cc6d4b32801ebdde9e3265ae.bitwarden.com -carLicense: MLYFKM -departmentNumber: 4903 -employeeType: Normal -homePhone: +1 510 958-6590 -initials: V. K. -mobile: +1 510 670-8751 -pager: +1 510 588-9524 -roomNumber: 8686 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Munir Copes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Munir Copes -sn: Copes -description: This is Munir Copes's description -facsimileTelephoneNumber: +1 206 187-1900 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 351-2633 -title: Master Human Resources Warrior -userPassword: Password1 -uid: CopesM -givenName: Munir -mail: CopesM@16434353c1084964814de6cc676be364.bitwarden.com -carLicense: UIYMTJ -departmentNumber: 3084 -employeeType: Employee -homePhone: +1 206 224-8108 -initials: M. C. -mobile: +1 206 411-2438 -pager: +1 206 639-1760 -roomNumber: 9840 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Susan Fowler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susan Fowler -sn: Fowler -description: This is Susan Fowler's description -facsimileTelephoneNumber: +1 804 430-5659 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 341-6099 -title: Master Product Testing Madonna -userPassword: Password1 -uid: FowlerS -givenName: Susan -mail: FowlerS@d5a1c908aa0542dcbca729ee2090c302.bitwarden.com -carLicense: HP5PKR -departmentNumber: 6437 -employeeType: Contract -homePhone: +1 804 610-1091 -initials: S. F. -mobile: +1 804 425-6684 -pager: +1 804 814-1537 -roomNumber: 9987 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randhir Bushnik -sn: Bushnik -description: This is Randhir Bushnik's description -facsimileTelephoneNumber: +1 804 749-9531 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 256-2851 -title: Associate Human Resources Technician -userPassword: Password1 -uid: BushnikR -givenName: Randhir -mail: BushnikR@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com -carLicense: SEXHAG -departmentNumber: 1758 -employeeType: Normal -homePhone: +1 804 345-3470 -initials: R. B. -mobile: +1 804 158-8694 -pager: +1 804 285-5302 -roomNumber: 9940 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ethelyn Budimirovic -sn: Budimirovic -description: This is Ethelyn Budimirovic's description -facsimileTelephoneNumber: +1 206 936-2702 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 942-4419 -title: Chief Product Development Fellow -userPassword: Password1 -uid: BudimirE -givenName: Ethelyn -mail: BudimirE@a9b974f8337643ea8609cd0bff25a863.bitwarden.com -carLicense: QSW4EK -departmentNumber: 1129 -employeeType: Contract -homePhone: +1 206 114-9163 -initials: E. B. -mobile: +1 206 173-7869 -pager: +1 206 657-5862 -roomNumber: 9432 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozanne Fouillard -sn: Fouillard -description: This is Rozanne Fouillard's description -facsimileTelephoneNumber: +1 206 525-4352 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 893-1061 -title: Associate Human Resources Writer -userPassword: Password1 -uid: FouillaR -givenName: Rozanne -mail: FouillaR@7f44259fadc8467aa5ed92152f0f037e.bitwarden.com -carLicense: 3RXV5U -departmentNumber: 7174 -employeeType: Employee -homePhone: +1 206 912-9658 -initials: R. F. -mobile: +1 206 342-4333 -pager: +1 206 125-7295 -roomNumber: 9100 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Caye Setiawan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caye Setiawan -sn: Setiawan -description: This is Caye Setiawan's description -facsimileTelephoneNumber: +1 510 434-4155 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 443-3593 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: SetiawaC -givenName: Caye -mail: SetiawaC@899a157c5fcb4f20a59c759f3c7d4d65.bitwarden.com -carLicense: RA98O9 -departmentNumber: 1321 -employeeType: Employee -homePhone: +1 510 814-8051 -initials: C. S. -mobile: +1 510 225-5411 -pager: +1 510 645-1778 -roomNumber: 9403 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Daffy Hering,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daffy Hering -sn: Hering -description: This is Daffy Hering's description -facsimileTelephoneNumber: +1 213 188-6091 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 214-1645 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: HeringD -givenName: Daffy -mail: HeringD@0ffd7dc252424626a20bcce6a53d823f.bitwarden.com -carLicense: JNG93F -departmentNumber: 9556 -employeeType: Normal -homePhone: +1 213 525-8942 -initials: D. H. -mobile: +1 213 594-3695 -pager: +1 213 390-1010 -roomNumber: 9659 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=YoungJune Radford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YoungJune Radford -sn: Radford -description: This is YoungJune Radford's description -facsimileTelephoneNumber: +1 510 741-9992 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 510 139-3498 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: RadfordY -givenName: YoungJune -mail: RadfordY@e8e76146b3cf4785898d03ad6423f9d9.bitwarden.com -carLicense: TYBJSN -departmentNumber: 1107 -employeeType: Employee -homePhone: +1 510 842-2634 -initials: Y. R. -mobile: +1 510 796-6228 -pager: +1 510 422-3034 -roomNumber: 9864 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brana Susanto,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brana Susanto -sn: Susanto -description: This is Brana Susanto's description -facsimileTelephoneNumber: +1 213 510-5000 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 868-7690 -title: Junior Administrative Visionary -userPassword: Password1 -uid: SusantoB -givenName: Brana -mail: SusantoB@bc040a54299440bb80e6ade2d1ef97a9.bitwarden.com -carLicense: DUJXT1 -departmentNumber: 1806 -employeeType: Contract -homePhone: +1 213 849-9384 -initials: B. S. -mobile: +1 213 242-3619 -pager: +1 213 918-3132 -roomNumber: 9008 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Neile Niles,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neile Niles -sn: Niles -description: This is Neile Niles's description -facsimileTelephoneNumber: +1 206 122-7841 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 206 618-6954 -title: Chief Janitorial Sales Rep -userPassword: Password1 -uid: NilesN -givenName: Neile -mail: NilesN@0e50776aafcb4d6c9860210852e9591e.bitwarden.com -carLicense: LRXX6U -departmentNumber: 5906 -employeeType: Contract -homePhone: +1 206 141-3902 -initials: N. N. -mobile: +1 206 196-1861 -pager: +1 206 347-7325 -roomNumber: 9574 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Joydeep Loos,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joydeep Loos -sn: Loos -description: This is Joydeep Loos's description -facsimileTelephoneNumber: +1 206 536-9205 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 982-5147 -title: Chief Product Development Developer -userPassword: Password1 -uid: LoosJ -givenName: Joydeep -mail: LoosJ@3a57e18936584b66bbd6dab5016a2418.bitwarden.com -carLicense: 4CQ081 -departmentNumber: 2426 -employeeType: Normal -homePhone: +1 206 420-2969 -initials: J. L. -mobile: +1 206 879-1223 -pager: +1 206 840-2443 -roomNumber: 8079 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sohail Pilon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sohail Pilon -sn: Pilon -description: This is Sohail Pilon's description -facsimileTelephoneNumber: +1 415 891-5897 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 931-7823 -title: Master Product Development Grunt -userPassword: Password1 -uid: PilonS -givenName: Sohail -mail: PilonS@ba461e5be7394399aa72f7b05ba2fea3.bitwarden.com -carLicense: I4YQ86 -departmentNumber: 2192 -employeeType: Normal -homePhone: +1 415 422-1294 -initials: S. P. -mobile: +1 415 799-8067 -pager: +1 415 737-6681 -roomNumber: 9226 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Melisse Odum,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisse Odum -sn: Odum -description: This is Melisse Odum's description -facsimileTelephoneNumber: +1 804 203-6554 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 566-8022 -title: Associate Management President -userPassword: Password1 -uid: OdumM -givenName: Melisse -mail: OdumM@52253f5384a34a7d887f92c29a569c37.bitwarden.com -carLicense: S9DJDP -departmentNumber: 7151 -employeeType: Employee -homePhone: +1 804 467-2276 -initials: M. O. -mobile: +1 804 663-1597 -pager: +1 804 147-7181 -roomNumber: 8758 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Venkatakrishna Beardmore -sn: Beardmore -description: This is Venkatakrishna Beardmore's description -facsimileTelephoneNumber: +1 213 403-5116 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 971-3682 -title: Junior Management Writer -userPassword: Password1 -uid: BeardmoV -givenName: Venkatakrishna -mail: BeardmoV@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com -carLicense: MW8NIJ -departmentNumber: 4933 -employeeType: Contract -homePhone: +1 213 175-6997 -initials: V. B. -mobile: +1 213 815-4102 -pager: +1 213 802-2892 -roomNumber: 9205 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mellisa Lisenchuk -sn: Lisenchuk -description: This is Mellisa Lisenchuk's description -facsimileTelephoneNumber: +1 213 532-7032 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 822-5831 -title: Supreme Peons Visionary -userPassword: Password1 -uid: LisenchM -givenName: Mellisa -mail: LisenchM@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com -carLicense: HGTEV0 -departmentNumber: 2729 -employeeType: Contract -homePhone: +1 213 943-7550 -initials: M. L. -mobile: +1 213 146-3242 -pager: +1 213 309-7923 -roomNumber: 8577 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shay Fouchard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shay Fouchard -sn: Fouchard -description: This is Shay Fouchard's description -facsimileTelephoneNumber: +1 510 695-2219 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 698-7201 -title: Master Management Technician -userPassword: Password1 -uid: FoucharS -givenName: Shay -mail: FoucharS@5acaf493974e4933b27d5e78e25585d3.bitwarden.com -carLicense: W6SE80 -departmentNumber: 9486 -employeeType: Employee -homePhone: +1 510 131-8187 -initials: S. F. -mobile: +1 510 247-6322 -pager: +1 510 735-5836 -roomNumber: 8653 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lesly Checkland,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lesly Checkland -sn: Checkland -description: This is Lesly Checkland's description -facsimileTelephoneNumber: +1 415 477-7177 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 994-7742 -title: Master Peons Assistant -userPassword: Password1 -uid: ChecklaL -givenName: Lesly -mail: ChecklaL@9969b0f8851149aaa64ff3c67e9b6c53.bitwarden.com -carLicense: 5MLA3M -departmentNumber: 6706 -employeeType: Normal -homePhone: +1 415 602-4758 -initials: L. C. -mobile: +1 415 708-6754 -pager: +1 415 771-2995 -roomNumber: 8535 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Roelof Balascak,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roelof Balascak -sn: Balascak -description: This is Roelof Balascak's description -facsimileTelephoneNumber: +1 804 435-7134 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 580-7484 -title: Master Product Development Writer -userPassword: Password1 -uid: BalascaR -givenName: Roelof -mail: BalascaR@7f18e62561544141b6ccfe39f532339f.bitwarden.com -carLicense: OH6EM8 -departmentNumber: 5484 -employeeType: Employee -homePhone: +1 804 983-6481 -initials: R. B. -mobile: +1 804 374-8954 -pager: +1 804 715-5802 -roomNumber: 8340 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdalena Corpening -sn: Corpening -description: This is Magdalena Corpening's description -facsimileTelephoneNumber: +1 818 827-9295 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 521-7041 -title: Supreme Product Testing Technician -userPassword: Password1 -uid: CorpeniM -givenName: Magdalena -mail: CorpeniM@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com -carLicense: L1IJ0R -departmentNumber: 3361 -employeeType: Normal -homePhone: +1 818 957-7894 -initials: M. C. -mobile: +1 818 750-3806 -pager: +1 818 183-6987 -roomNumber: 9606 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Miguel Skof,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miguel Skof -sn: Skof -description: This is Miguel Skof's description -facsimileTelephoneNumber: +1 213 873-7692 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 213 823-5445 -title: Associate Product Development President -userPassword: Password1 -uid: SkofM -givenName: Miguel -mail: SkofM@3bd0291e8cff49548689d7d941f27f3f.bitwarden.com -carLicense: BMQK7S -departmentNumber: 6827 -employeeType: Contract -homePhone: +1 213 583-2827 -initials: M. S. -mobile: +1 213 796-4005 -pager: +1 213 873-6800 -roomNumber: 9098 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabriellia Todaro -sn: Todaro -description: This is Gabriellia Todaro's description -facsimileTelephoneNumber: +1 804 444-1255 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 601-8215 -title: Chief Administrative Manager -userPassword: Password1 -uid: TodaroG -givenName: Gabriellia -mail: TodaroG@bdf4207a20c5486ca943568e769c8344.bitwarden.com -carLicense: QYLWTU -departmentNumber: 3338 -employeeType: Normal -homePhone: +1 804 575-1755 -initials: G. T. -mobile: +1 804 691-6742 -pager: +1 804 257-6560 -roomNumber: 9332 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Larisa Hinkel -sn: Hinkel -description: This is Larisa Hinkel's description -facsimileTelephoneNumber: +1 818 289-8565 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 530-9082 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: HinkelL -givenName: Larisa -mail: HinkelL@1ea1e70e2ff14b90b31a900ccfe17f79.bitwarden.com -carLicense: 51W5CY -departmentNumber: 7483 -employeeType: Contract -homePhone: +1 818 921-3306 -initials: L. H. -mobile: +1 818 728-4237 -pager: +1 818 794-8790 -roomNumber: 9668 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zdenek Gahan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zdenek Gahan -sn: Gahan -description: This is Zdenek Gahan's description -facsimileTelephoneNumber: +1 206 299-7066 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 800-8139 -title: Chief Peons Developer -userPassword: Password1 -uid: GahanZ -givenName: Zdenek -mail: GahanZ@0b154eee289f4cc1b4a09755e63f9b87.bitwarden.com -carLicense: 18J6WD -departmentNumber: 1179 -employeeType: Normal -homePhone: +1 206 797-4705 -initials: Z. G. -mobile: +1 206 979-2952 -pager: +1 206 452-3383 -roomNumber: 9988 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lashonda Ramkissoon -sn: Ramkissoon -description: This is Lashonda Ramkissoon's description -facsimileTelephoneNumber: +1 804 892-2033 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 489-6987 -title: Chief Management Stooge -userPassword: Password1 -uid: RamkissL -givenName: Lashonda -mail: RamkissL@c25e2fe1ca694d8a8fe5c23754b47571.bitwarden.com -carLicense: 2E7KXY -departmentNumber: 7894 -employeeType: Normal -homePhone: +1 804 335-4223 -initials: L. R. -mobile: +1 804 785-2782 -pager: +1 804 155-3286 -roomNumber: 9853 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Romona TestNTMVAA -sn: TestNTMVAA -description: This is Romona TestNTMVAA's description -facsimileTelephoneNumber: +1 206 216-8266 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 206 674-8012 -title: Master Product Development Assistant -userPassword: Password1 -uid: TestNTMR -givenName: Romona -mail: TestNTMR@38fb869ba3244313992623d5e5856ca5.bitwarden.com -carLicense: KRPXK9 -departmentNumber: 8192 -employeeType: Employee -homePhone: +1 206 894-2505 -initials: R. T. -mobile: +1 206 218-6530 -pager: +1 206 954-5122 -roomNumber: 9481 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Merrile Lian,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrile Lian -sn: Lian -description: This is Merrile Lian's description -facsimileTelephoneNumber: +1 510 448-9332 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 145-9910 -title: Associate Payroll Assistant -userPassword: Password1 -uid: LianM -givenName: Merrile -mail: LianM@55c5ce522f7b4db190d4d14360a9a4fb.bitwarden.com -carLicense: O28M7Y -departmentNumber: 5560 -employeeType: Employee -homePhone: +1 510 664-6937 -initials: M. L. -mobile: +1 510 393-6911 -pager: +1 510 708-5719 -roomNumber: 8972 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Engracia Messick,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Engracia Messick -sn: Messick -description: This is Engracia Messick's description -facsimileTelephoneNumber: +1 510 668-3726 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 539-9265 -title: Associate Administrative Vice President -userPassword: Password1 -uid: MessickE -givenName: Engracia -mail: MessickE@9befe039acaf4d578a86c80d677d5d49.bitwarden.com -carLicense: Q232UJ -departmentNumber: 9511 -employeeType: Contract -homePhone: +1 510 666-2764 -initials: E. M. -mobile: +1 510 745-6640 -pager: +1 510 884-3697 -roomNumber: 8887 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamillah Wasylyk -sn: Wasylyk -description: This is Kamillah Wasylyk's description -facsimileTelephoneNumber: +1 510 994-8326 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 803-1872 -title: Associate Janitorial Director -userPassword: Password1 -uid: WasylykK -givenName: Kamillah -mail: WasylykK@1f8fe58d7a114a4583fc58f63a22a5b6.bitwarden.com -carLicense: LPR1VF -departmentNumber: 4034 -employeeType: Contract -homePhone: +1 510 753-2179 -initials: K. W. -mobile: +1 510 915-5308 -pager: +1 510 943-4738 -roomNumber: 9725 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Caron Sammon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caron Sammon -sn: Sammon -description: This is Caron Sammon's description -facsimileTelephoneNumber: +1 510 165-1286 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 772-4447 -title: Chief Janitorial Architect -userPassword: Password1 -uid: SammonC -givenName: Caron -mail: SammonC@db884c1075024ecfa29e3ec139ce7504.bitwarden.com -carLicense: NU98HC -departmentNumber: 2873 -employeeType: Contract -homePhone: +1 510 658-3367 -initials: C. S. -mobile: +1 510 439-3941 -pager: +1 510 653-4220 -roomNumber: 9384 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Charlotta McLennan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charlotta McLennan -sn: McLennan -description: This is Charlotta McLennan's description -facsimileTelephoneNumber: +1 510 349-5851 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 198-8445 -title: Supreme Management Janitor -userPassword: Password1 -uid: McLennaC -givenName: Charlotta -mail: McLennaC@9d8d4067dbc148d3a4106bfdfacf427c.bitwarden.com -carLicense: VP8QJC -departmentNumber: 6424 -employeeType: Normal -homePhone: +1 510 607-9626 -initials: C. M. -mobile: +1 510 570-2981 -pager: +1 510 617-1637 -roomNumber: 8422 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyssa Kuryliak -sn: Kuryliak -description: This is Lyssa Kuryliak's description -facsimileTelephoneNumber: +1 818 178-5295 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 819-1114 -title: Associate Human Resources Visionary -userPassword: Password1 -uid: KuryliaL -givenName: Lyssa -mail: KuryliaL@548e0585ebf342b985467eca55f4e5f8.bitwarden.com -carLicense: HTRN8X -departmentNumber: 9672 -employeeType: Employee -homePhone: +1 818 632-6371 -initials: L. K. -mobile: +1 818 330-9775 -pager: +1 818 357-5220 -roomNumber: 8186 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dexter Follett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dexter Follett -sn: Follett -description: This is Dexter Follett's description -facsimileTelephoneNumber: +1 206 133-6137 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 370-8638 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: FollettD -givenName: Dexter -mail: FollettD@22f8ba9a65234f13bdf03b22a8df34d6.bitwarden.com -carLicense: F5A3PY -departmentNumber: 6663 -employeeType: Normal -homePhone: +1 206 438-5717 -initials: D. F. -mobile: +1 206 256-2632 -pager: +1 206 922-1414 -roomNumber: 8756 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Una Ausley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Una Ausley -sn: Ausley -description: This is Una Ausley's description -facsimileTelephoneNumber: +1 213 567-4930 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 773-2507 -title: Supreme Management Mascot -userPassword: Password1 -uid: AusleyU -givenName: Una -mail: AusleyU@e5bf2a74f7d948bb97855f44d83972fe.bitwarden.com -carLicense: 38P8EP -departmentNumber: 2581 -employeeType: Employee -homePhone: +1 213 792-9893 -initials: U. A. -mobile: +1 213 201-9321 -pager: +1 213 750-3506 -roomNumber: 9872 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Adria Calow,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adria Calow -sn: Calow -description: This is Adria Calow's description -facsimileTelephoneNumber: +1 206 801-7701 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 206 930-5990 -title: Supreme Product Development Technician -userPassword: Password1 -uid: CalowA -givenName: Adria -mail: CalowA@95930feb4c9b47f8b0d685739e06e5ea.bitwarden.com -carLicense: 7YM6MQ -departmentNumber: 5052 -employeeType: Employee -homePhone: +1 206 939-6567 -initials: A. C. -mobile: +1 206 481-9864 -pager: +1 206 687-5786 -roomNumber: 9692 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Alora Bamfo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alora Bamfo -sn: Bamfo -description: This is Alora Bamfo's description -facsimileTelephoneNumber: +1 206 332-8575 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 120-7500 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: BamfoA -givenName: Alora -mail: BamfoA@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com -carLicense: GU4GGI -departmentNumber: 9451 -employeeType: Normal -homePhone: +1 206 502-1215 -initials: A. B. -mobile: +1 206 714-3807 -pager: +1 206 829-9931 -roomNumber: 8156 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bharat Wiederhold -sn: Wiederhold -description: This is Bharat Wiederhold's description -facsimileTelephoneNumber: +1 408 553-1512 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 562-6412 -title: Associate Administrative Warrior -userPassword: Password1 -uid: WiederhB -givenName: Bharat -mail: WiederhB@c533c4ce9d2d4ce095673ea3b06d665b.bitwarden.com -carLicense: GF4R0C -departmentNumber: 2808 -employeeType: Normal -homePhone: +1 408 448-1894 -initials: B. W. -mobile: +1 408 742-4971 -pager: +1 408 934-9185 -roomNumber: 8534 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gunnar Molani,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gunnar Molani -sn: Molani -description: This is Gunnar Molani's description -facsimileTelephoneNumber: +1 206 200-1120 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 343-3740 -title: Supreme Peons Assistant -userPassword: Password1 -uid: MolaniG -givenName: Gunnar -mail: MolaniG@21d4927a612549a1b797c77aee423501.bitwarden.com -carLicense: UVL54B -departmentNumber: 4038 -employeeType: Normal -homePhone: +1 206 574-5116 -initials: G. M. -mobile: +1 206 859-5979 -pager: +1 206 917-4680 -roomNumber: 8684 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabina Jayamanne -sn: Jayamanne -description: This is Sabina Jayamanne's description -facsimileTelephoneNumber: +1 818 430-1157 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 655-9222 -title: Associate Product Testing Architect -userPassword: Password1 -uid: JayamanS -givenName: Sabina -mail: JayamanS@c41f8f7aea354718b6ea3277359c3684.bitwarden.com -carLicense: KBOR74 -departmentNumber: 2564 -employeeType: Employee -homePhone: +1 818 227-2345 -initials: S. J. -mobile: +1 818 340-9858 -pager: +1 818 612-9572 -roomNumber: 8511 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lenee Marasco,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenee Marasco -sn: Marasco -description: This is Lenee Marasco's description -facsimileTelephoneNumber: +1 206 601-9431 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 141-3725 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: MarascoL -givenName: Lenee -mail: MarascoL@a63636764be2417c8862dba36d524669.bitwarden.com -carLicense: 5NMO0W -departmentNumber: 7048 -employeeType: Normal -homePhone: +1 206 514-3243 -initials: L. M. -mobile: +1 206 653-3542 -pager: +1 206 916-5799 -roomNumber: 8998 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Byron Shelegey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Byron Shelegey -sn: Shelegey -description: This is Byron Shelegey's description -facsimileTelephoneNumber: +1 510 339-6254 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 824-7565 -title: Associate Management Sales Rep -userPassword: Password1 -uid: ShelegeB -givenName: Byron -mail: ShelegeB@bf0924ca7ffa40efa64182b434d3b054.bitwarden.com -carLicense: SOCW01 -departmentNumber: 4681 -employeeType: Contract -homePhone: +1 510 470-9173 -initials: B. S. -mobile: +1 510 699-5229 -pager: +1 510 835-6143 -roomNumber: 9983 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Charline Jago,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charline Jago -sn: Jago -description: This is Charline Jago's description -facsimileTelephoneNumber: +1 804 777-8804 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 199-5635 -title: Supreme Payroll Writer -userPassword: Password1 -uid: JagoC -givenName: Charline -mail: JagoC@dede4ef26e0047b5ae95d810fbe16f29.bitwarden.com -carLicense: A9NT9A -departmentNumber: 4021 -employeeType: Normal -homePhone: +1 804 789-4180 -initials: C. J. -mobile: +1 804 433-7181 -pager: +1 804 647-6794 -roomNumber: 9400 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anette Holloway,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anette Holloway -sn: Holloway -description: This is Anette Holloway's description -facsimileTelephoneNumber: +1 213 317-4277 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 362-3111 -title: Master Janitorial Writer -userPassword: Password1 -uid: HollowaA -givenName: Anette -mail: HollowaA@3835da84e4cb44b5a38c776421814f8a.bitwarden.com -carLicense: R4FR0Q -departmentNumber: 1937 -employeeType: Employee -homePhone: +1 213 406-8773 -initials: A. H. -mobile: +1 213 190-5616 -pager: +1 213 876-9977 -roomNumber: 8898 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Florida Polashock,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florida Polashock -sn: Polashock -description: This is Florida Polashock's description -facsimileTelephoneNumber: +1 213 176-5568 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 892-4444 -title: Chief Human Resources Pinhead -userPassword: Password1 -uid: PolashoF -givenName: Florida -mail: PolashoF@9bca7e1fa66343078f8d2f441ac03fca.bitwarden.com -carLicense: KAG9WW -departmentNumber: 5140 -employeeType: Contract -homePhone: +1 213 470-8110 -initials: F. P. -mobile: +1 213 321-9331 -pager: +1 213 136-4491 -roomNumber: 8769 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Snair Mcshane,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Snair Mcshane -sn: Mcshane -description: This is Snair Mcshane's description -facsimileTelephoneNumber: +1 804 394-5623 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 805-6211 -title: Master Janitorial Madonna -userPassword: Password1 -uid: McshaneS -givenName: Snair -mail: McshaneS@4b02224ed79d49068514723b7495859b.bitwarden.com -carLicense: M9RKYA -departmentNumber: 4841 -employeeType: Contract -homePhone: +1 804 683-5164 -initials: S. M. -mobile: +1 804 553-8436 -pager: +1 804 927-8527 -roomNumber: 8026 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selcuk Fogelson -sn: Fogelson -description: This is Selcuk Fogelson's description -facsimileTelephoneNumber: +1 510 168-9195 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 372-5820 -title: Junior Product Development Artist -userPassword: Password1 -uid: FogelsoS -givenName: Selcuk -mail: FogelsoS@54ce292eb157498aac7b1683764ec867.bitwarden.com -carLicense: YKTCDW -departmentNumber: 4528 -employeeType: Contract -homePhone: +1 510 489-4629 -initials: S. F. -mobile: +1 510 989-5290 -pager: +1 510 635-3721 -roomNumber: 9737 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jackson Schraner,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jackson Schraner -sn: Schraner -description: This is Jackson Schraner's description -facsimileTelephoneNumber: +1 213 945-7906 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 123-2365 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: SchraneJ -givenName: Jackson -mail: SchraneJ@ab8c896427cc47d7a32f95081ee3cada.bitwarden.com -carLicense: G6FOKN -departmentNumber: 9682 -employeeType: Contract -homePhone: +1 213 490-6829 -initials: J. S. -mobile: +1 213 226-8560 -pager: +1 213 677-6584 -roomNumber: 8104 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhHoa Fisprod -sn: Fisprod -description: This is ThanhHoa Fisprod's description -facsimileTelephoneNumber: +1 818 527-6369 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 629-6278 -title: Master Management Admin -userPassword: Password1 -uid: FisprodT -givenName: ThanhHoa -mail: FisprodT@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com -carLicense: 8WWRCH -departmentNumber: 2028 -employeeType: Employee -homePhone: +1 818 229-1042 -initials: T. F. -mobile: +1 818 257-7344 -pager: +1 818 607-8497 -roomNumber: 9125 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cherianne Tidd,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherianne Tidd -sn: Tidd -description: This is Cherianne Tidd's description -facsimileTelephoneNumber: +1 213 467-3546 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 866-5143 -title: Chief Payroll Manager -userPassword: Password1 -uid: TiddC -givenName: Cherianne -mail: TiddC@848b025264d14e669cec02146f987418.bitwarden.com -carLicense: OWQL37 -departmentNumber: 7866 -employeeType: Employee -homePhone: +1 213 521-1857 -initials: C. T. -mobile: +1 213 864-2020 -pager: +1 213 114-9890 -roomNumber: 9249 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Melisent Sampat,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisent Sampat -sn: Sampat -description: This is Melisent Sampat's description -facsimileTelephoneNumber: +1 206 277-3859 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 206 219-2643 -title: Chief Human Resources Punk -userPassword: Password1 -uid: SampatM -givenName: Melisent -mail: SampatM@5297f06d12e84c7793e176a6624333e0.bitwarden.com -carLicense: VW2FC2 -departmentNumber: 9723 -employeeType: Normal -homePhone: +1 206 718-2383 -initials: M. S. -mobile: +1 206 732-8485 -pager: +1 206 744-4496 -roomNumber: 8570 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tiffy Udall,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffy Udall -sn: Udall -description: This is Tiffy Udall's description -facsimileTelephoneNumber: +1 206 963-8398 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 823-6633 -title: Chief Payroll Engineer -userPassword: Password1 -uid: UdallT -givenName: Tiffy -mail: UdallT@a80405df7aef4b3db059a6cc73288f61.bitwarden.com -carLicense: 5IE9TQ -departmentNumber: 5127 -employeeType: Contract -homePhone: +1 206 216-4816 -initials: T. U. -mobile: +1 206 445-7787 -pager: +1 206 884-8794 -roomNumber: 8106 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Adeline Cruz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adeline Cruz -sn: Cruz -description: This is Adeline Cruz's description -facsimileTelephoneNumber: +1 206 366-8217 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 918-2544 -title: Junior Product Testing Madonna -userPassword: Password1 -uid: CruzA -givenName: Adeline -mail: CruzA@068a0b6470f0444b9815d3ef36001ebd.bitwarden.com -carLicense: 241K7X -departmentNumber: 6664 -employeeType: Employee -homePhone: +1 206 490-5127 -initials: A. C. -mobile: +1 206 517-7791 -pager: +1 206 514-5265 -roomNumber: 9698 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tuan Fenati,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tuan Fenati -sn: Fenati -description: This is Tuan Fenati's description -facsimileTelephoneNumber: +1 804 838-4594 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 345-6146 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: FenatiT -givenName: Tuan -mail: FenatiT@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com -carLicense: RK6LLJ -departmentNumber: 8111 -employeeType: Contract -homePhone: +1 804 505-9469 -initials: T. F. -mobile: +1 804 762-4093 -pager: +1 804 921-6552 -roomNumber: 9850 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ljilyana Kanungo -sn: Kanungo -description: This is Ljilyana Kanungo's description -facsimileTelephoneNumber: +1 408 129-4371 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 515-7395 -title: Supreme Human Resources Consultant -userPassword: Password1 -uid: KanungoL -givenName: Ljilyana -mail: KanungoL@2a906f1560284502a1b19f87829f93ea.bitwarden.com -carLicense: FCH2PH -departmentNumber: 4756 -employeeType: Normal -homePhone: +1 408 660-6652 -initials: L. K. -mobile: +1 408 335-6272 -pager: +1 408 576-8652 -roomNumber: 9293 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: TiongHoe Cuthill -sn: Cuthill -description: This is TiongHoe Cuthill's description -facsimileTelephoneNumber: +1 415 563-9035 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 980-9940 -title: Master Product Testing Punk -userPassword: Password1 -uid: CuthillT -givenName: TiongHoe -mail: CuthillT@e059f798bf444774a99e078fccd4a4f3.bitwarden.com -carLicense: S90L16 -departmentNumber: 9345 -employeeType: Normal -homePhone: +1 415 706-4099 -initials: T. C. -mobile: +1 415 250-3186 -pager: +1 415 664-6394 -roomNumber: 9063 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jaclyn Hook,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaclyn Hook -sn: Hook -description: This is Jaclyn Hook's description -facsimileTelephoneNumber: +1 415 608-5645 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 960-7076 -title: Master Payroll Pinhead -userPassword: Password1 -uid: HookJ -givenName: Jaclyn -mail: HookJ@5c9986617ae9407ea5a172b5f4cff660.bitwarden.com -carLicense: L7QLHU -departmentNumber: 8108 -employeeType: Contract -homePhone: +1 415 373-4548 -initials: J. H. -mobile: +1 415 671-2833 -pager: +1 415 345-6919 -roomNumber: 9539 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lucky DeBaets,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucky DeBaets -sn: DeBaets -description: This is Lucky DeBaets's description -facsimileTelephoneNumber: +1 206 504-4598 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 748-3624 -title: Master Payroll Architect -userPassword: Password1 -uid: DeBaetsL -givenName: Lucky -mail: DeBaetsL@8b6f5b0e3bf1445e87a0ee0539e4853f.bitwarden.com -carLicense: BCW8FM -departmentNumber: 1976 -employeeType: Normal -homePhone: +1 206 655-6952 -initials: L. D. -mobile: +1 206 453-7774 -pager: +1 206 539-6948 -roomNumber: 9603 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Toma Belcher,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toma Belcher -sn: Belcher -description: This is Toma Belcher's description -facsimileTelephoneNumber: +1 818 306-1607 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 749-7405 -title: Chief Janitorial Grunt -userPassword: Password1 -uid: BelcherT -givenName: Toma -mail: BelcherT@e2cd61401de9414191cd26ece93eb8bb.bitwarden.com -carLicense: FOA1F1 -departmentNumber: 9378 -employeeType: Normal -homePhone: +1 818 216-8787 -initials: T. B. -mobile: +1 818 803-5166 -pager: +1 818 301-3718 -roomNumber: 9172 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ayda Ricketson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ayda Ricketson -sn: Ricketson -description: This is Ayda Ricketson's description -facsimileTelephoneNumber: +1 804 318-8689 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 423-8609 -title: Associate Administrative Visionary -userPassword: Password1 -uid: RicketsA -givenName: Ayda -mail: RicketsA@102d4dd16d9e43f0b636c4011b41a3bb.bitwarden.com -carLicense: P74QHK -departmentNumber: 1374 -employeeType: Normal -homePhone: +1 804 619-3521 -initials: A. R. -mobile: +1 804 752-2703 -pager: +1 804 977-4263 -roomNumber: 9212 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Edie Fuller,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edie Fuller -sn: Fuller -description: This is Edie Fuller's description -facsimileTelephoneNumber: +1 206 315-9216 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 986-3403 -title: Associate Product Development Engineer -userPassword: Password1 -uid: FullerE -givenName: Edie -mail: FullerE@6ce18e31fee44ca6a1d60162c1ff34ee.bitwarden.com -carLicense: 15M6QY -departmentNumber: 9018 -employeeType: Employee -homePhone: +1 206 810-9639 -initials: E. F. -mobile: +1 206 508-8455 -pager: +1 206 991-4822 -roomNumber: 9547 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Adrienne Teacher,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrienne Teacher -sn: Teacher -description: This is Adrienne Teacher's description -facsimileTelephoneNumber: +1 804 292-1738 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 325-7184 -title: Master Product Development Manager -userPassword: Password1 -uid: TeacherA -givenName: Adrienne -mail: TeacherA@a8f35a5fbab443c4bb234c040b553494.bitwarden.com -carLicense: Y1QYMU -departmentNumber: 8530 -employeeType: Contract -homePhone: +1 804 136-3532 -initials: A. T. -mobile: +1 804 212-5059 -pager: +1 804 296-9421 -roomNumber: 9652 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Karilynn Sokolowski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karilynn Sokolowski -sn: Sokolowski -description: This is Karilynn Sokolowski's description -facsimileTelephoneNumber: +1 818 965-4400 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 807-2311 -title: Master Management Janitor -userPassword: Password1 -uid: SokolowK -givenName: Karilynn -mail: SokolowK@59b79c4bb1de445bb80956c31a33b163.bitwarden.com -carLicense: V90BBQ -departmentNumber: 5725 -employeeType: Employee -homePhone: +1 818 987-7048 -initials: K. S. -mobile: +1 818 399-3538 -pager: +1 818 634-5638 -roomNumber: 9083 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Edna Etemad,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edna Etemad -sn: Etemad -description: This is Edna Etemad's description -facsimileTelephoneNumber: +1 415 978-3265 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 127-4939 -title: Master Management Developer -userPassword: Password1 -uid: EtemadE -givenName: Edna -mail: EtemadE@268e542432d8452492860decdd327bf6.bitwarden.com -carLicense: GSNILF -departmentNumber: 6349 -employeeType: Normal -homePhone: +1 415 134-3659 -initials: E. E. -mobile: +1 415 471-4265 -pager: +1 415 934-6256 -roomNumber: 8840 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Heike Hoxie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heike Hoxie -sn: Hoxie -description: This is Heike Hoxie's description -facsimileTelephoneNumber: +1 408 259-1383 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 408 648-4095 -title: Chief Payroll Warrior -userPassword: Password1 -uid: HoxieH -givenName: Heike -mail: HoxieH@8237422e949f4acf92d97f787e6bf098.bitwarden.com -carLicense: X50ETI -departmentNumber: 4732 -employeeType: Contract -homePhone: +1 408 659-9394 -initials: H. H. -mobile: +1 408 491-1041 -pager: +1 408 605-2965 -roomNumber: 9839 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Noelyn Snair,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noelyn Snair -sn: Snair -description: This is Noelyn Snair's description -facsimileTelephoneNumber: +1 206 419-2404 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 427-5773 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: SnairN -givenName: Noelyn -mail: SnairN@76bdb182929147bbb5f99a407f7da581.bitwarden.com -carLicense: 81C1YG -departmentNumber: 5559 -employeeType: Normal -homePhone: +1 206 236-1757 -initials: N. S. -mobile: +1 206 467-1655 -pager: +1 206 811-5234 -roomNumber: 9943 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Annis Yung,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annis Yung -sn: Yung -description: This is Annis Yung's description -facsimileTelephoneNumber: +1 510 235-5617 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 220-8299 -title: Junior Product Testing Pinhead -userPassword: Password1 -uid: YungA -givenName: Annis -mail: YungA@3dedccc8ea03468b9d15ac11ca05c230.bitwarden.com -carLicense: BVS7SJ -departmentNumber: 4646 -employeeType: Employee -homePhone: +1 510 660-7141 -initials: A. Y. -mobile: +1 510 737-6738 -pager: +1 510 648-9644 -roomNumber: 8318 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Olenka Gulis,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olenka Gulis -sn: Gulis -description: This is Olenka Gulis's description -facsimileTelephoneNumber: +1 818 994-4537 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 930-5130 -title: Chief Human Resources Artist -userPassword: Password1 -uid: GulisO -givenName: Olenka -mail: GulisO@4b5741ffe1ab4f72819c8cda7b7df64c.bitwarden.com -carLicense: LQULRB -departmentNumber: 1782 -employeeType: Contract -homePhone: +1 818 633-6964 -initials: O. G. -mobile: +1 818 674-1626 -pager: +1 818 830-4358 -roomNumber: 8513 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jeanna Brousseau,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeanna Brousseau -sn: Brousseau -description: This is Jeanna Brousseau's description -facsimileTelephoneNumber: +1 206 156-1463 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 123-6750 -title: Associate Management Assistant -userPassword: Password1 -uid: BrousseJ -givenName: Jeanna -mail: BrousseJ@d9a304fc4b9f41c9950557d3404312a3.bitwarden.com -carLicense: O020DI -departmentNumber: 8026 -employeeType: Normal -homePhone: +1 206 629-4841 -initials: J. B. -mobile: +1 206 633-9296 -pager: +1 206 924-6142 -roomNumber: 8148 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nikolaos Farley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nikolaos Farley -sn: Farley -description: This is Nikolaos Farley's description -facsimileTelephoneNumber: +1 804 577-5312 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 766-5708 -title: Supreme Management President -userPassword: Password1 -uid: FarleyN -givenName: Nikolaos -mail: FarleyN@3bf5412f9df744cdbfb41ee6ad860514.bitwarden.com -carLicense: KWG11X -departmentNumber: 1285 -employeeType: Employee -homePhone: +1 804 876-5060 -initials: N. F. -mobile: +1 804 599-8265 -pager: +1 804 206-6456 -roomNumber: 8957 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sydney Olivares,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sydney Olivares -sn: Olivares -description: This is Sydney Olivares's description -facsimileTelephoneNumber: +1 818 835-7999 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 652-2167 -title: Associate Management Figurehead -userPassword: Password1 -uid: OlivareS -givenName: Sydney -mail: OlivareS@ff087739d92a453c8986a21bbdeb6b99.bitwarden.com -carLicense: 77WY44 -departmentNumber: 8816 -employeeType: Contract -homePhone: +1 818 146-2943 -initials: S. O. -mobile: +1 818 807-1158 -pager: +1 818 209-8886 -roomNumber: 9841 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lary MacMillanBrown,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lary MacMillanBrown -sn: MacMillanBrown -description: This is Lary MacMillanBrown's description -facsimileTelephoneNumber: +1 804 543-3203 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 518-9220 -title: Master Management Stooge -userPassword: Password1 -uid: MacMillL -givenName: Lary -mail: MacMillL@4d9f7b6850444a8d801b43c9573addba.bitwarden.com -carLicense: 826UPP -departmentNumber: 7236 -employeeType: Employee -homePhone: +1 804 444-6670 -initials: L. M. -mobile: +1 804 357-3984 -pager: +1 804 501-6173 -roomNumber: 9316 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Makam Junaid,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Makam Junaid -sn: Junaid -description: This is Makam Junaid's description -facsimileTelephoneNumber: +1 415 417-3292 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 820-3081 -title: Chief Payroll Developer -userPassword: Password1 -uid: JunaidM -givenName: Makam -mail: JunaidM@bac802e94a68427ebf6e1f43dd3c8d74.bitwarden.com -carLicense: 9PFKFE -departmentNumber: 5039 -employeeType: Normal -homePhone: +1 415 671-3819 -initials: M. J. -mobile: +1 415 583-5581 -pager: +1 415 240-4431 -roomNumber: 8741 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Janson Breon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janson Breon -sn: Breon -description: This is Janson Breon's description -facsimileTelephoneNumber: +1 804 326-6041 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 171-4834 -title: Junior Human Resources President -userPassword: Password1 -uid: BreonJ -givenName: Janson -mail: BreonJ@efeb1d35d7fb4a6698c2e450cd5716f4.bitwarden.com -carLicense: V0PT44 -departmentNumber: 1361 -employeeType: Employee -homePhone: +1 804 881-5481 -initials: J. B. -mobile: +1 804 546-8161 -pager: +1 804 667-8061 -roomNumber: 9242 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Persis Bourret,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Persis Bourret -sn: Bourret -description: This is Persis Bourret's description -facsimileTelephoneNumber: +1 804 343-3199 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 350-2458 -title: Supreme Product Testing Fellow -userPassword: Password1 -uid: BourretP -givenName: Persis -mail: BourretP@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com -carLicense: 6JQBUT -departmentNumber: 1587 -employeeType: Contract -homePhone: +1 804 838-2039 -initials: P. B. -mobile: +1 804 565-1251 -pager: +1 804 198-4292 -roomNumber: 9737 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nonah Naylor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nonah Naylor -sn: Naylor -description: This is Nonah Naylor's description -facsimileTelephoneNumber: +1 408 792-9130 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 271-2350 -title: Associate Peons Architect -userPassword: Password1 -uid: NaylorN -givenName: Nonah -mail: NaylorN@0f8c40ba5d0843abbe9b0c196da09ca0.bitwarden.com -carLicense: MRRBLP -departmentNumber: 7644 -employeeType: Contract -homePhone: +1 408 980-2529 -initials: N. N. -mobile: +1 408 442-7456 -pager: +1 408 576-4128 -roomNumber: 8838 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Delmar Goold,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delmar Goold -sn: Goold -description: This is Delmar Goold's description -facsimileTelephoneNumber: +1 818 288-9881 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 167-2080 -title: Junior Management Admin -userPassword: Password1 -uid: GooldD -givenName: Delmar -mail: GooldD@6762e9a5ac5b4baaa52aa304581ce2d6.bitwarden.com -carLicense: I90DLG -departmentNumber: 2396 -employeeType: Employee -homePhone: +1 818 507-2703 -initials: D. G. -mobile: +1 818 526-1231 -pager: +1 818 482-6158 -roomNumber: 9751 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Noslab Despres,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noslab Despres -sn: Despres -description: This is Noslab Despres's description -facsimileTelephoneNumber: +1 213 349-3107 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 213 666-6502 -title: Master Product Development Dictator -userPassword: Password1 -uid: DespresN -givenName: Noslab -mail: DespresN@89a663a1a18c4ca7afe3412fbf2c4e97.bitwarden.com -carLicense: MK6WE1 -departmentNumber: 6417 -employeeType: Normal -homePhone: +1 213 947-2855 -initials: N. D. -mobile: +1 213 507-4764 -pager: +1 213 857-8746 -roomNumber: 8913 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Leonida Maloney,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonida Maloney -sn: Maloney -description: This is Leonida Maloney's description -facsimileTelephoneNumber: +1 213 266-8415 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 913-5023 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: MaloneyL -givenName: Leonida -mail: MaloneyL@bc9d8b4b30864998bd20fc77d040bd74.bitwarden.com -carLicense: JNPB72 -departmentNumber: 6747 -employeeType: Employee -homePhone: +1 213 500-9053 -initials: L. M. -mobile: +1 213 917-1250 -pager: +1 213 523-1052 -roomNumber: 8873 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Heida Witzmann,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heida Witzmann -sn: Witzmann -description: This is Heida Witzmann's description -facsimileTelephoneNumber: +1 804 561-6927 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 757-5763 -title: Supreme Product Development Technician -userPassword: Password1 -uid: WitzmanH -givenName: Heida -mail: WitzmanH@98503141bef84f26be5517cb6d1c3fb5.bitwarden.com -carLicense: RCR9S9 -departmentNumber: 6243 -employeeType: Employee -homePhone: +1 804 156-8036 -initials: H. W. -mobile: +1 804 782-3391 -pager: +1 804 636-6558 -roomNumber: 8486 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Azhar Klug,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Azhar Klug -sn: Klug -description: This is Azhar Klug's description -facsimileTelephoneNumber: +1 206 398-2992 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 529-1890 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: KlugA -givenName: Azhar -mail: KlugA@6efed6dc63bd46768f25dd1a717dc7fc.bitwarden.com -carLicense: IGWEKX -departmentNumber: 3753 -employeeType: Employee -homePhone: +1 206 631-7942 -initials: A. K. -mobile: +1 206 873-1656 -pager: +1 206 337-2940 -roomNumber: 8452 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lynnette Mirande,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynnette Mirande -sn: Mirande -description: This is Lynnette Mirande's description -facsimileTelephoneNumber: +1 206 365-7754 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 480-9392 -title: Master Product Development Architect -userPassword: Password1 -uid: MirandeL -givenName: Lynnette -mail: MirandeL@1112fe1439844e3ca725d40b9996ff1f.bitwarden.com -carLicense: 3IUCJI -departmentNumber: 1537 -employeeType: Normal -homePhone: +1 206 207-2400 -initials: L. M. -mobile: +1 206 248-2064 -pager: +1 206 287-8718 -roomNumber: 9948 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Esmond Ronald,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esmond Ronald -sn: Ronald -description: This is Esmond Ronald's description -facsimileTelephoneNumber: +1 804 717-9715 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 477-1984 -title: Chief Management Consultant -userPassword: Password1 -uid: RonaldE -givenName: Esmond -mail: RonaldE@364738d989114590842291a79ecffd92.bitwarden.com -carLicense: QBOJ0K -departmentNumber: 4457 -employeeType: Normal -homePhone: +1 804 699-8572 -initials: E. R. -mobile: +1 804 774-9718 -pager: +1 804 615-9102 -roomNumber: 9892 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ruthie Weyand,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruthie Weyand -sn: Weyand -description: This is Ruthie Weyand's description -facsimileTelephoneNumber: +1 213 877-6710 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 695-3567 -title: Chief Administrative President -userPassword: Password1 -uid: WeyandR -givenName: Ruthie -mail: WeyandR@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com -carLicense: SEX88R -departmentNumber: 7944 -employeeType: Normal -homePhone: +1 213 190-5418 -initials: R. W. -mobile: +1 213 942-2242 -pager: +1 213 483-1398 -roomNumber: 9306 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ileane DeWitte,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ileane DeWitte -sn: DeWitte -description: This is Ileane DeWitte's description -facsimileTelephoneNumber: +1 213 235-1837 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 425-6477 -title: Junior Peons Director -userPassword: Password1 -uid: DeWitteI -givenName: Ileane -mail: DeWitteI@6e1688424ec244adb10f2e8d17d9a231.bitwarden.com -carLicense: IVOEFL -departmentNumber: 2231 -employeeType: Employee -homePhone: +1 213 330-7780 -initials: I. D. -mobile: +1 213 195-5916 -pager: +1 213 429-6575 -roomNumber: 8433 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chocs Lanava,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chocs Lanava -sn: Lanava -description: This is Chocs Lanava's description -facsimileTelephoneNumber: +1 804 314-5045 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 540-7542 -title: Master Product Development Visionary -userPassword: Password1 -uid: LanavaC -givenName: Chocs -mail: LanavaC@e96c6aa872a44f27a69d8b17ae3ca387.bitwarden.com -carLicense: 50KMYX -departmentNumber: 4172 -employeeType: Employee -homePhone: +1 804 535-5236 -initials: C. L. -mobile: +1 804 275-9175 -pager: +1 804 331-7833 -roomNumber: 9489 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Abu Hubbard,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abu Hubbard -sn: Hubbard -description: This is Abu Hubbard's description -facsimileTelephoneNumber: +1 818 452-6451 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 314-6561 -title: Associate Peons Engineer -userPassword: Password1 -uid: HubbardA -givenName: Abu -mail: HubbardA@7b4016aa058a4e80b807fb4d0e4a0b36.bitwarden.com -carLicense: URT6A3 -departmentNumber: 5539 -employeeType: Contract -homePhone: +1 818 467-8553 -initials: A. H. -mobile: +1 818 267-3152 -pager: +1 818 943-9563 -roomNumber: 9721 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Felita Kaps,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felita Kaps -sn: Kaps -description: This is Felita Kaps's description -facsimileTelephoneNumber: +1 408 787-7300 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 399-2363 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: KapsF -givenName: Felita -mail: KapsF@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com -carLicense: BFH4SK -departmentNumber: 2327 -employeeType: Contract -homePhone: +1 408 940-4467 -initials: F. K. -mobile: +1 408 468-8104 -pager: +1 408 217-3464 -roomNumber: 9991 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Christin Shea,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christin Shea -sn: Shea -description: This is Christin Shea's description -facsimileTelephoneNumber: +1 206 973-9161 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 832-5894 -title: Supreme Administrative Admin -userPassword: Password1 -uid: SheaC -givenName: Christin -mail: SheaC@cda870670aa345148330b4790dab0c4f.bitwarden.com -carLicense: YBABMG -departmentNumber: 3492 -employeeType: Employee -homePhone: +1 206 115-3247 -initials: C. S. -mobile: +1 206 531-6658 -pager: +1 206 573-1484 -roomNumber: 8353 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Haroon Trese,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haroon Trese -sn: Trese -description: This is Haroon Trese's description -facsimileTelephoneNumber: +1 510 799-1026 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 742-9765 -title: Associate Payroll Technician -userPassword: Password1 -uid: TreseH -givenName: Haroon -mail: TreseH@37a456ace6484592af9ec4787e1dcc5f.bitwarden.com -carLicense: CWTQOB -departmentNumber: 6598 -employeeType: Normal -homePhone: +1 510 963-5872 -initials: H. T. -mobile: +1 510 610-4863 -pager: +1 510 589-7506 -roomNumber: 9655 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Norbert Ruest,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norbert Ruest -sn: Ruest -description: This is Norbert Ruest's description -facsimileTelephoneNumber: +1 510 248-3952 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 982-3204 -title: Master Human Resources Engineer -userPassword: Password1 -uid: RuestN -givenName: Norbert -mail: RuestN@8504384638364f5d9fea2c2c4a28b90e.bitwarden.com -carLicense: 7F5H10 -departmentNumber: 9132 -employeeType: Normal -homePhone: +1 510 732-6444 -initials: N. R. -mobile: +1 510 213-9647 -pager: +1 510 568-8503 -roomNumber: 9965 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farzin Gleditsch -sn: Gleditsch -description: This is Farzin Gleditsch's description -facsimileTelephoneNumber: +1 510 517-5261 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 903-6229 -title: Associate Janitorial Punk -userPassword: Password1 -uid: GleditsF -givenName: Farzin -mail: GleditsF@9ce658881e8c455194b88b370a33621e.bitwarden.com -carLicense: MDRQ8B -departmentNumber: 1827 -employeeType: Employee -homePhone: +1 510 184-4007 -initials: F. G. -mobile: +1 510 905-8511 -pager: +1 510 748-4692 -roomNumber: 8097 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Woody Bourlet,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Woody Bourlet -sn: Bourlet -description: This is Woody Bourlet's description -facsimileTelephoneNumber: +1 206 869-7496 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 206 715-9293 -title: Chief Administrative Grunt -userPassword: Password1 -uid: BourletW -givenName: Woody -mail: BourletW@b5a0b2f2ff6247cdb5697d2b9d25240d.bitwarden.com -carLicense: R06F3F -departmentNumber: 2810 -employeeType: Employee -homePhone: +1 206 154-6901 -initials: W. B. -mobile: +1 206 560-9454 -pager: +1 206 496-7085 -roomNumber: 8926 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Saied DeCristofaro,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saied DeCristofaro -sn: DeCristofaro -description: This is Saied DeCristofaro's description -facsimileTelephoneNumber: +1 206 952-8133 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 600-2082 -title: Chief Peons Architect -userPassword: Password1 -uid: DeCristS -givenName: Saied -mail: DeCristS@7011cb45501a4d689c26e15dc899ef15.bitwarden.com -carLicense: D0JXUJ -departmentNumber: 4379 -employeeType: Employee -homePhone: +1 206 838-3310 -initials: S. D. -mobile: +1 206 943-2377 -pager: +1 206 821-6390 -roomNumber: 8258 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dael Lariviere,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dael Lariviere -sn: Lariviere -description: This is Dael Lariviere's description -facsimileTelephoneNumber: +1 408 809-9021 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 206-7020 -title: Chief Administrative Stooge -userPassword: Password1 -uid: LarivieD -givenName: Dael -mail: LarivieD@864d7fffc05349a6937099b5cb95ba17.bitwarden.com -carLicense: PSYPF0 -departmentNumber: 9438 -employeeType: Contract -homePhone: +1 408 707-4599 -initials: D. L. -mobile: +1 408 277-3328 -pager: +1 408 901-5372 -roomNumber: 9691 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: XiaoMing Coddington -sn: Coddington -description: This is XiaoMing Coddington's description -facsimileTelephoneNumber: +1 818 403-5946 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 818 881-1432 -title: Master Product Testing Grunt -userPassword: Password1 -uid: CoddingX -givenName: XiaoMing -mail: CoddingX@b37b0ee1c3d74b79bd0b37182c5a200f.bitwarden.com -carLicense: 3AOUPC -departmentNumber: 6652 -employeeType: Normal -homePhone: +1 818 575-8078 -initials: X. C. -mobile: +1 818 773-6452 -pager: +1 818 279-1158 -roomNumber: 8438 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Miro Tabor,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miro Tabor -sn: Tabor -description: This is Miro Tabor's description -facsimileTelephoneNumber: +1 408 597-7730 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 400-1874 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: TaborM -givenName: Miro -mail: TaborM@be2fe06854024f6cb36c05d73bae2406.bitwarden.com -carLicense: 2F24YV -departmentNumber: 6324 -employeeType: Employee -homePhone: +1 408 269-7277 -initials: M. T. -mobile: +1 408 277-5305 -pager: +1 408 860-1896 -roomNumber: 8544 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liduine Witchlow -sn: Witchlow -description: This is Liduine Witchlow's description -facsimileTelephoneNumber: +1 206 460-7158 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 274-9428 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: WitchloL -givenName: Liduine -mail: WitchloL@118b35796ca44494b05a6b698be1d2a5.bitwarden.com -carLicense: D9YD33 -departmentNumber: 8826 -employeeType: Employee -homePhone: +1 206 788-3559 -initials: L. W. -mobile: +1 206 164-9490 -pager: +1 206 559-6816 -roomNumber: 8538 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Der Fernando,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Der Fernando -sn: Fernando -description: This is Der Fernando's description -facsimileTelephoneNumber: +1 408 347-7876 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 103-9793 -title: Associate Product Testing Artist -userPassword: Password1 -uid: FernandD -givenName: Der -mail: FernandD@a4f85fecd69348a29728c8e242a790a2.bitwarden.com -carLicense: S0R6HO -departmentNumber: 8092 -employeeType: Contract -homePhone: +1 408 692-4872 -initials: D. F. -mobile: +1 408 311-7601 -pager: +1 408 312-8728 -roomNumber: 9992 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bunny Ruzycki -sn: Ruzycki -description: This is Bunny Ruzycki's description -facsimileTelephoneNumber: +1 818 751-9358 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 818 673-1362 -title: Junior Human Resources Sales Rep -userPassword: Password1 -uid: RuzyckiB -givenName: Bunny -mail: RuzyckiB@1a851fc2814040d38d9f2abd59e828ec.bitwarden.com -carLicense: 5WUVVJ -departmentNumber: 8758 -employeeType: Contract -homePhone: +1 818 311-2841 -initials: B. R. -mobile: +1 818 669-4253 -pager: +1 818 506-4598 -roomNumber: 8039 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vivianne McCrain,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivianne McCrain -sn: McCrain -description: This is Vivianne McCrain's description -facsimileTelephoneNumber: +1 206 559-7997 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 861-4561 -title: Chief Peons Writer -userPassword: Password1 -uid: McCrainV -givenName: Vivianne -mail: McCrainV@b70f11362a424a69841534d3b1179197.bitwarden.com -carLicense: HOWG1U -departmentNumber: 5190 -employeeType: Normal -homePhone: +1 206 218-1508 -initials: V. M. -mobile: +1 206 693-5203 -pager: +1 206 596-9393 -roomNumber: 8077 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheri Sobolewski -sn: Sobolewski -description: This is Sheri Sobolewski's description -facsimileTelephoneNumber: +1 408 482-9648 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 216-6194 -title: Supreme Janitorial Sales Rep -userPassword: Password1 -uid: SobolewS -givenName: Sheri -mail: SobolewS@0d449385b7a34ab0b858a2ab5b17455a.bitwarden.com -carLicense: PCNVJL -departmentNumber: 8486 -employeeType: Contract -homePhone: +1 408 361-9354 -initials: S. S. -mobile: +1 408 753-8660 -pager: +1 408 466-3128 -roomNumber: 8737 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlane Lingafelter -sn: Lingafelter -description: This is Marlane Lingafelter's description -facsimileTelephoneNumber: +1 804 762-2981 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 746-2654 -title: Master Administrative President -userPassword: Password1 -uid: LingafeM -givenName: Marlane -mail: LingafeM@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com -carLicense: WWRR5E -departmentNumber: 5389 -employeeType: Contract -homePhone: +1 804 810-5361 -initials: M. L. -mobile: +1 804 506-8144 -pager: +1 804 711-8185 -roomNumber: 9014 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tetsuo VanBenthem -sn: VanBenthem -description: This is Tetsuo VanBenthem's description -facsimileTelephoneNumber: +1 415 909-5872 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 587-7615 -title: Master Management Warrior -userPassword: Password1 -uid: VanBentT -givenName: Tetsuo -mail: VanBentT@2e08496305794efd85d6a479c697a5c1.bitwarden.com -carLicense: HUG6CV -departmentNumber: 2133 -employeeType: Employee -homePhone: +1 415 645-9684 -initials: T. V. -mobile: +1 415 213-3715 -pager: +1 415 530-7764 -roomNumber: 8875 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarina Lacasse -sn: Lacasse -description: This is Sarina Lacasse's description -facsimileTelephoneNumber: +1 804 840-8585 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 535-3036 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: LacasseS -givenName: Sarina -mail: LacasseS@0c478e577f6c43f08e0c7154f215c7af.bitwarden.com -carLicense: 6QX7YB -departmentNumber: 8805 -employeeType: Normal -homePhone: +1 804 404-7676 -initials: S. L. -mobile: +1 804 491-8389 -pager: +1 804 552-1778 -roomNumber: 9625 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Madelina Todloski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelina Todloski -sn: Todloski -description: This is Madelina Todloski's description -facsimileTelephoneNumber: +1 206 784-1502 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 755-9592 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: TodloskM -givenName: Madelina -mail: TodloskM@ae68135eee9d4a26a1a58584ca226451.bitwarden.com -carLicense: UBAXS3 -departmentNumber: 1348 -employeeType: Contract -homePhone: +1 206 222-5164 -initials: M. T. -mobile: +1 206 273-9550 -pager: +1 206 939-8093 -roomNumber: 9517 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vijai Combaz,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vijai Combaz -sn: Combaz -description: This is Vijai Combaz's description -facsimileTelephoneNumber: +1 415 644-2633 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 415 270-4628 -title: Associate Management President -userPassword: Password1 -uid: CombazV -givenName: Vijai -mail: CombazV@6b94ae7a6d6747c8ba4de4161bb85768.bitwarden.com -carLicense: 6LXHOT -departmentNumber: 2182 -employeeType: Contract -homePhone: +1 415 577-8932 -initials: V. C. -mobile: +1 415 624-4069 -pager: +1 415 306-1060 -roomNumber: 8691 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sohayla Neate,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sohayla Neate -sn: Neate -description: This is Sohayla Neate's description -facsimileTelephoneNumber: +1 206 575-9658 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 206 581-4067 -title: Chief Product Development Artist -userPassword: Password1 -uid: NeateS -givenName: Sohayla -mail: NeateS@291647d2cd1d44a99560699f40c48fb8.bitwarden.com -carLicense: EKPES0 -departmentNumber: 8947 -employeeType: Employee -homePhone: +1 206 524-5960 -initials: S. N. -mobile: +1 206 655-7283 -pager: +1 206 948-2166 -roomNumber: 9846 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karrie Gagnon -sn: Gagnon -description: This is Karrie Gagnon's description -facsimileTelephoneNumber: +1 510 554-4700 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 896-8039 -title: Junior Product Testing Pinhead -userPassword: Password1 -uid: GagnonK -givenName: Karrie -mail: GagnonK@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com -carLicense: LJLO7I -departmentNumber: 9668 -employeeType: Normal -homePhone: +1 510 407-1549 -initials: K. G. -mobile: +1 510 747-8912 -pager: +1 510 644-9706 -roomNumber: 9198 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Weldon Robustness,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weldon Robustness -sn: Robustness -description: This is Weldon Robustness's description -facsimileTelephoneNumber: +1 206 193-7068 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 780-8361 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: RobustnW -givenName: Weldon -mail: RobustnW@4154a37503e24114bfe5421ecb627bb9.bitwarden.com -carLicense: 86P51H -departmentNumber: 6779 -employeeType: Employee -homePhone: +1 206 820-3146 -initials: W. R. -mobile: +1 206 343-3218 -pager: +1 206 264-6143 -roomNumber: 8621 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Freddy Jachym,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Freddy Jachym -sn: Jachym -description: This is Freddy Jachym's description -facsimileTelephoneNumber: +1 804 567-1435 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 671-2234 -title: Supreme Management Czar -userPassword: Password1 -uid: JachymF -givenName: Freddy -mail: JachymF@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com -carLicense: E04E9X -departmentNumber: 2804 -employeeType: Employee -homePhone: +1 804 807-1523 -initials: F. J. -mobile: +1 804 690-7755 -pager: +1 804 377-1178 -roomNumber: 8418 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eliezer Assistance,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eliezer Assistance -sn: Assistance -description: This is Eliezer Assistance's description -facsimileTelephoneNumber: +1 213 442-9464 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 619-3778 -title: Associate Management Visionary -userPassword: Password1 -uid: AssistaE -givenName: Eliezer -mail: AssistaE@2848b689935d4648b6061c4adab9255b.bitwarden.com -carLicense: CIQ9EI -departmentNumber: 9769 -employeeType: Normal -homePhone: +1 213 681-5975 -initials: E. A. -mobile: +1 213 347-1432 -pager: +1 213 719-5030 -roomNumber: 8460 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stevana Acelvari -sn: Acelvari -description: This is Stevana Acelvari's description -facsimileTelephoneNumber: +1 510 118-3171 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 985-7994 -title: Junior Human Resources Czar -userPassword: Password1 -uid: AcelvarS -givenName: Stevana -mail: AcelvarS@5b4286bc4af74709a0f65475a29d7c53.bitwarden.com -carLicense: KSY22N -departmentNumber: 7721 -employeeType: Normal -homePhone: +1 510 137-6369 -initials: S. A. -mobile: +1 510 710-8196 -pager: +1 510 276-3727 -roomNumber: 8625 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Orelia Pisani,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orelia Pisani -sn: Pisani -description: This is Orelia Pisani's description -facsimileTelephoneNumber: +1 510 466-4856 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 710-9224 -title: Master Peons Mascot -userPassword: Password1 -uid: PisaniO -givenName: Orelia -mail: PisaniO@572f2e7cd4c540ba82bdf3291fc77e32.bitwarden.com -carLicense: KM7848 -departmentNumber: 1892 -employeeType: Employee -homePhone: +1 510 359-1436 -initials: O. P. -mobile: +1 510 310-8560 -pager: +1 510 396-3908 -roomNumber: 8574 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shelton Spencer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelton Spencer -sn: Spencer -description: This is Shelton Spencer's description -facsimileTelephoneNumber: +1 415 638-3213 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 486-1419 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: SpencerS -givenName: Shelton -mail: SpencerS@6032a8b4894b42dc8d3f57130a5d8ef5.bitwarden.com -carLicense: 0FXPTP -departmentNumber: 9339 -employeeType: Normal -homePhone: +1 415 603-1831 -initials: S. S. -mobile: +1 415 244-6495 -pager: +1 415 135-4180 -roomNumber: 8252 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jonthan Khoury,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jonthan Khoury -sn: Khoury -description: This is Jonthan Khoury's description -facsimileTelephoneNumber: +1 213 755-1308 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 116-1213 -title: Supreme Product Development Stooge -userPassword: Password1 -uid: KhouryJ -givenName: Jonthan -mail: KhouryJ@95a0714026f54037aaa182b092f39903.bitwarden.com -carLicense: RCJUEM -departmentNumber: 8529 -employeeType: Contract -homePhone: +1 213 280-2312 -initials: J. K. -mobile: +1 213 410-1872 -pager: +1 213 288-6358 -roomNumber: 8021 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tricord Bresee,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tricord Bresee -sn: Bresee -description: This is Tricord Bresee's description -facsimileTelephoneNumber: +1 510 658-1905 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 519-6997 -title: Associate Product Testing Director -userPassword: Password1 -uid: BreseeT -givenName: Tricord -mail: BreseeT@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com -carLicense: CJ5OP2 -departmentNumber: 3369 -employeeType: Employee -homePhone: +1 510 976-8278 -initials: T. B. -mobile: +1 510 981-1030 -pager: +1 510 734-1781 -roomNumber: 8090 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Julietta Tillman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julietta Tillman -sn: Tillman -description: This is Julietta Tillman's description -facsimileTelephoneNumber: +1 408 212-5632 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 408 794-4968 -title: Supreme Peons Consultant -userPassword: Password1 -uid: TillmanJ -givenName: Julietta -mail: TillmanJ@44b2450bcee645ea9f41c30f5aa03fe5.bitwarden.com -carLicense: BYVT0C -departmentNumber: 9486 -employeeType: Employee -homePhone: +1 408 866-3841 -initials: J. T. -mobile: +1 408 113-9504 -pager: +1 408 920-4992 -roomNumber: 8361 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Almeria Falke,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Almeria Falke -sn: Falke -description: This is Almeria Falke's description -facsimileTelephoneNumber: +1 804 219-5804 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 804 189-3468 -title: Supreme Peons Visionary -userPassword: Password1 -uid: FalkeA -givenName: Almeria -mail: FalkeA@ce68beaef1d3485083c2f31b35928b95.bitwarden.com -carLicense: N2GBXD -departmentNumber: 6492 -employeeType: Normal -homePhone: +1 804 537-8244 -initials: A. F. -mobile: +1 804 858-5761 -pager: +1 804 469-2945 -roomNumber: 9154 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aaron Deakin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aaron Deakin -sn: Deakin -description: This is Aaron Deakin's description -facsimileTelephoneNumber: +1 818 576-2010 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 818 699-7525 -title: Master Product Development Architect -userPassword: Password1 -uid: DeakinA -givenName: Aaron -mail: DeakinA@1d4290d63a1444df823292a25ec59d0c.bitwarden.com -carLicense: HV7RTP -departmentNumber: 7371 -employeeType: Contract -homePhone: +1 818 179-9105 -initials: A. D. -mobile: +1 818 496-6666 -pager: +1 818 598-6735 -roomNumber: 9005 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Soyeh Noy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Soyeh Noy -sn: Noy -description: This is Soyeh Noy's description -facsimileTelephoneNumber: +1 206 173-3008 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 121-3494 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: NoyS -givenName: Soyeh -mail: NoyS@1174f1cfd4db4d4e8122f3cc77544aa8.bitwarden.com -carLicense: 0MLSRQ -departmentNumber: 6332 -employeeType: Contract -homePhone: +1 206 723-5904 -initials: S. N. -mobile: +1 206 563-5505 -pager: +1 206 635-7304 -roomNumber: 9118 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sylvia Fawcett -sn: Fawcett -description: This is Sylvia Fawcett's description -facsimileTelephoneNumber: +1 213 452-4117 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 478-5017 -title: Chief Janitorial Visionary -userPassword: Password1 -uid: FawcettS -givenName: Sylvia -mail: FawcettS@b39d8f666f1848e6abb69d85d224a354.bitwarden.com -carLicense: 5UF2JH -departmentNumber: 9677 -employeeType: Contract -homePhone: +1 213 249-3735 -initials: S. F. -mobile: +1 213 243-7634 -pager: +1 213 376-2053 -roomNumber: 9838 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jerrilee Purnell -sn: Purnell -description: This is Jerrilee Purnell's description -facsimileTelephoneNumber: +1 408 642-9246 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 831-7015 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: PurnellJ -givenName: Jerrilee -mail: PurnellJ@a035bec181ea4cd9abd3953e80704bef.bitwarden.com -carLicense: 98NERR -departmentNumber: 9617 -employeeType: Normal -homePhone: +1 408 299-9570 -initials: J. P. -mobile: +1 408 414-5724 -pager: +1 408 551-2224 -roomNumber: 8307 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Genia Mooken,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genia Mooken -sn: Mooken -description: This is Genia Mooken's description -facsimileTelephoneNumber: +1 510 750-2929 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 510 539-3628 -title: Junior Product Development Janitor -userPassword: Password1 -uid: MookenG -givenName: Genia -mail: MookenG@6874478c22ee4fbf87473317dba0c7aa.bitwarden.com -carLicense: NM81A5 -departmentNumber: 7462 -employeeType: Contract -homePhone: +1 510 740-3901 -initials: G. M. -mobile: +1 510 446-4911 -pager: +1 510 331-3025 -roomNumber: 8472 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Norton Chronowic,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norton Chronowic -sn: Chronowic -description: This is Norton Chronowic's description -facsimileTelephoneNumber: +1 510 252-4484 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 192-2434 -title: Chief Management Warrior -userPassword: Password1 -uid: ChronowN -givenName: Norton -mail: ChronowN@3628e26a28c645d7955cf8b078dbe56c.bitwarden.com -carLicense: 5OUCNE -departmentNumber: 3684 -employeeType: Contract -homePhone: +1 510 300-9116 -initials: N. C. -mobile: +1 510 251-6262 -pager: +1 510 916-8479 -roomNumber: 8782 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Thom Hink,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thom Hink -sn: Hink -description: This is Thom Hink's description -facsimileTelephoneNumber: +1 408 657-7967 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 328-7251 -title: Supreme Product Testing Dictator -userPassword: Password1 -uid: HinkT -givenName: Thom -mail: HinkT@c337fda07bbe40e2a0aa0860ad7ba681.bitwarden.com -carLicense: KI0K83 -departmentNumber: 5853 -employeeType: Employee -homePhone: +1 408 741-5564 -initials: T. H. -mobile: +1 408 860-3023 -pager: +1 408 935-3706 -roomNumber: 8545 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vanny Swepston,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanny Swepston -sn: Swepston -description: This is Vanny Swepston's description -facsimileTelephoneNumber: +1 408 196-4703 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 111-3152 -title: Master Peons Grunt -userPassword: Password1 -uid: SwepstoV -givenName: Vanny -mail: SwepstoV@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com -carLicense: AOI3TY -departmentNumber: 5944 -employeeType: Contract -homePhone: +1 408 584-1588 -initials: V. S. -mobile: +1 408 334-3657 -pager: +1 408 606-6733 -roomNumber: 9110 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mabel Bycenko,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mabel Bycenko -sn: Bycenko -description: This is Mabel Bycenko's description -facsimileTelephoneNumber: +1 415 114-8966 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 144-7605 -title: Chief Peons Punk -userPassword: Password1 -uid: BycenkoM -givenName: Mabel -mail: BycenkoM@3c89e3a711ca4ba7bd9dc3429c71b28e.bitwarden.com -carLicense: 4KB13O -departmentNumber: 8009 -employeeType: Employee -homePhone: +1 415 306-3042 -initials: M. B. -mobile: +1 415 533-6893 -pager: +1 415 898-6485 -roomNumber: 9140 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kiyoon Chau,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiyoon Chau -sn: Chau -description: This is Kiyoon Chau's description -facsimileTelephoneNumber: +1 206 325-3942 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 106-3127 -title: Supreme Administrative Punk -userPassword: Password1 -uid: ChauK -givenName: Kiyoon -mail: ChauK@c7cfbecdcc9244d89ede1a6fe93b790c.bitwarden.com -carLicense: 20LWFN -departmentNumber: 2800 -employeeType: Employee -homePhone: +1 206 352-9406 -initials: K. C. -mobile: +1 206 465-4249 -pager: +1 206 185-1884 -roomNumber: 8138 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nel Addetia,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nel Addetia -sn: Addetia -description: This is Nel Addetia's description -facsimileTelephoneNumber: +1 206 937-6516 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 994-7658 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: AddetiaN -givenName: Nel -mail: AddetiaN@4fe9499fc7c8456094066466aa426118.bitwarden.com -carLicense: MIJBAM -departmentNumber: 7581 -employeeType: Employee -homePhone: +1 206 336-4964 -initials: N. A. -mobile: +1 206 166-5000 -pager: +1 206 148-3013 -roomNumber: 9741 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Emeline Willmore,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emeline Willmore -sn: Willmore -description: This is Emeline Willmore's description -facsimileTelephoneNumber: +1 510 127-4870 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 507-9132 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: WillmorE -givenName: Emeline -mail: WillmorE@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com -carLicense: 3I2HQQ -departmentNumber: 6777 -employeeType: Normal -homePhone: +1 510 592-6365 -initials: E. W. -mobile: +1 510 928-2894 -pager: +1 510 374-9435 -roomNumber: 9606 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maged Bernardo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maged Bernardo -sn: Bernardo -description: This is Maged Bernardo's description -facsimileTelephoneNumber: +1 213 547-3530 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 213 723-9237 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: BernardM -givenName: Maged -mail: BernardM@bc873160594f405e8694c4dc707b88ee.bitwarden.com -carLicense: VYVGTV -departmentNumber: 4356 -employeeType: Employee -homePhone: +1 213 851-8663 -initials: M. B. -mobile: +1 213 948-6297 -pager: +1 213 536-7515 -roomNumber: 8044 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Murry Okafo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Murry Okafo -sn: Okafo -description: This is Murry Okafo's description -facsimileTelephoneNumber: +1 415 769-5338 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 415 322-7322 -title: Supreme Management Developer -userPassword: Password1 -uid: OkafoM -givenName: Murry -mail: OkafoM@7857a73234d945c08313b465094df60f.bitwarden.com -carLicense: 2QYD0I -departmentNumber: 3489 -employeeType: Employee -homePhone: +1 415 622-4251 -initials: M. O. -mobile: +1 415 969-7988 -pager: +1 415 582-3432 -roomNumber: 9087 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vita Coursol,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vita Coursol -sn: Coursol -description: This is Vita Coursol's description -facsimileTelephoneNumber: +1 415 431-9599 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 122-5197 -title: Junior Peons Developer -userPassword: Password1 -uid: CoursolV -givenName: Vita -mail: CoursolV@a69557e189c747b59333670f3ebf3a1e.bitwarden.com -carLicense: EO6QG8 -departmentNumber: 7093 -employeeType: Employee -homePhone: +1 415 872-5379 -initials: V. C. -mobile: +1 415 976-2315 -pager: +1 415 981-2544 -roomNumber: 9793 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kellina Hoffmann -sn: Hoffmann -description: This is Kellina Hoffmann's description -facsimileTelephoneNumber: +1 408 233-7052 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 713-2124 -title: Junior Janitorial Architect -userPassword: Password1 -uid: HoffmanK -givenName: Kellina -mail: HoffmanK@9bec1f480eec4baea66a1e4c2e434262.bitwarden.com -carLicense: L98NM1 -departmentNumber: 8331 -employeeType: Contract -homePhone: +1 408 910-2279 -initials: K. H. -mobile: +1 408 508-2512 -pager: +1 408 167-4744 -roomNumber: 8678 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Makiko Radojicic -sn: Radojicic -description: This is Makiko Radojicic's description -facsimileTelephoneNumber: +1 510 625-5812 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 341-5079 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: RadojicM -givenName: Makiko -mail: RadojicM@7e09e43498f24a77bbdff5fc55db68c6.bitwarden.com -carLicense: 5VMPAT -departmentNumber: 9717 -employeeType: Contract -homePhone: +1 510 564-8148 -initials: M. R. -mobile: +1 510 562-2851 -pager: +1 510 390-2507 -roomNumber: 9383 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jelene Rivest,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jelene Rivest -sn: Rivest -description: This is Jelene Rivest's description -facsimileTelephoneNumber: +1 804 677-3551 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 513-2879 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: RivestJ -givenName: Jelene -mail: RivestJ@53f0c5d55dd14a429126d3d8cfc0b6d1.bitwarden.com -carLicense: IVJ0IK -departmentNumber: 6767 -employeeType: Normal -homePhone: +1 804 742-9578 -initials: J. R. -mobile: +1 804 463-5427 -pager: +1 804 349-7523 -roomNumber: 8068 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Magda Sims,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magda Sims -sn: Sims -description: This is Magda Sims's description -facsimileTelephoneNumber: +1 804 891-1953 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 804 341-5017 -title: Supreme Human Resources Architect -userPassword: Password1 -uid: SimsM -givenName: Magda -mail: SimsM@a2e6c1d1859c490496277e66f6d6fefe.bitwarden.com -carLicense: YAXKA2 -departmentNumber: 8575 -employeeType: Contract -homePhone: +1 804 212-9964 -initials: M. S. -mobile: +1 804 674-2093 -pager: +1 804 717-3992 -roomNumber: 9125 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fanni Kelly,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fanni Kelly -sn: Kelly -description: This is Fanni Kelly's description -facsimileTelephoneNumber: +1 408 838-7582 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 321-2742 -title: Master Janitorial Evangelist -userPassword: Password1 -uid: KellyF -givenName: Fanni -mail: KellyF@30ee8b21e1bc41c1a7110da46046174f.bitwarden.com -carLicense: 8QCSOR -departmentNumber: 8066 -employeeType: Contract -homePhone: +1 408 651-3673 -initials: F. K. -mobile: +1 408 674-3170 -pager: +1 408 876-4198 -roomNumber: 8073 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Phyl Komatsu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phyl Komatsu -sn: Komatsu -description: This is Phyl Komatsu's description -facsimileTelephoneNumber: +1 818 616-1604 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 805-6912 -title: Junior Product Development Architect -userPassword: Password1 -uid: KomatsuP -givenName: Phyl -mail: KomatsuP@7f95f5d6a463478d81afd013c82a23e3.bitwarden.com -carLicense: 177N62 -departmentNumber: 5459 -employeeType: Contract -homePhone: +1 818 565-2129 -initials: P. K. -mobile: +1 818 593-9115 -pager: +1 818 739-7356 -roomNumber: 8737 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Blondie Bessette,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blondie Bessette -sn: Bessette -description: This is Blondie Bessette's description -facsimileTelephoneNumber: +1 415 685-7537 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 291-6148 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: BessettB -givenName: Blondie -mail: BessettB@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com -carLicense: G4XSM0 -departmentNumber: 5421 -employeeType: Normal -homePhone: +1 415 619-1092 -initials: B. B. -mobile: +1 415 581-7938 -pager: +1 415 241-5706 -roomNumber: 9145 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zonda Marette,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zonda Marette -sn: Marette -description: This is Zonda Marette's description -facsimileTelephoneNumber: +1 408 663-9017 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 348-1290 -title: Junior Janitorial Janitor -userPassword: Password1 -uid: MaretteZ -givenName: Zonda -mail: MaretteZ@d8b58b77cc0a4df1b559d499a84b4151.bitwarden.com -carLicense: 4NPP8V -departmentNumber: 2238 -employeeType: Employee -homePhone: +1 408 246-1398 -initials: Z. M. -mobile: +1 408 939-7982 -pager: +1 408 403-2537 -roomNumber: 9257 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gunfer Szaplonczay -sn: Szaplonczay -description: This is Gunfer Szaplonczay's description -facsimileTelephoneNumber: +1 415 602-2703 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 747-7204 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: SzaplonG -givenName: Gunfer -mail: SzaplonG@451ef49e42ac453eb09b3d6157d37259.bitwarden.com -carLicense: 72HNKP -departmentNumber: 4952 -employeeType: Employee -homePhone: +1 415 652-4236 -initials: G. S. -mobile: +1 415 692-3267 -pager: +1 415 365-3535 -roomNumber: 8390 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tavis Bovee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tavis Bovee -sn: Bovee -description: This is Tavis Bovee's description -facsimileTelephoneNumber: +1 804 392-5228 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 926-3109 -title: Junior Product Development Vice President -userPassword: Password1 -uid: BoveeT -givenName: Tavis -mail: BoveeT@15c43eefe4c649db9c3b5dfcf2c7ab4a.bitwarden.com -carLicense: 269INJ -departmentNumber: 7905 -employeeType: Normal -homePhone: +1 804 359-8304 -initials: T. B. -mobile: +1 804 670-5613 -pager: +1 804 984-1495 -roomNumber: 8371 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vittorio Depooter -sn: Depooter -description: This is Vittorio Depooter's description -facsimileTelephoneNumber: +1 408 731-1282 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 864-5503 -title: Supreme Product Testing Director -userPassword: Password1 -uid: DepooteV -givenName: Vittorio -mail: DepooteV@b6dc43d5b48948bcabf31d42dd4a3286.bitwarden.com -carLicense: 4SP2M0 -departmentNumber: 8929 -employeeType: Contract -homePhone: +1 408 138-3897 -initials: V. D. -mobile: +1 408 429-2377 -pager: +1 408 315-8667 -roomNumber: 9483 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rafaelia Salgado -sn: Salgado -description: This is Rafaelia Salgado's description -facsimileTelephoneNumber: +1 206 901-5018 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 501-1744 -title: Master Human Resources Technician -userPassword: Password1 -uid: SalgadoR -givenName: Rafaelia -mail: SalgadoR@87d497e060994207b70ef7bd8c3d6175.bitwarden.com -carLicense: XFSA2I -departmentNumber: 2146 -employeeType: Contract -homePhone: +1 206 947-6062 -initials: R. S. -mobile: +1 206 263-2118 -pager: +1 206 955-1276 -roomNumber: 8857 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aurore Danker,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurore Danker -sn: Danker -description: This is Aurore Danker's description -facsimileTelephoneNumber: +1 510 429-7922 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 964-9866 -title: Chief Human Resources Developer -userPassword: Password1 -uid: DankerA -givenName: Aurore -mail: DankerA@308bfff65d134099bb462e88bbd36698.bitwarden.com -carLicense: 9B66D3 -departmentNumber: 5682 -employeeType: Employee -homePhone: +1 510 847-3530 -initials: A. D. -mobile: +1 510 956-3169 -pager: +1 510 904-2879 -roomNumber: 8018 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yawar Benjes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yawar Benjes -sn: Benjes -description: This is Yawar Benjes's description -facsimileTelephoneNumber: +1 415 260-9925 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 415 116-3723 -title: Junior Human Resources Assistant -userPassword: Password1 -uid: BenjesY -givenName: Yawar -mail: BenjesY@a409de982bd04e36819d909bb7350629.bitwarden.com -carLicense: HS80JR -departmentNumber: 7513 -employeeType: Contract -homePhone: +1 415 961-7247 -initials: Y. B. -mobile: +1 415 126-5158 -pager: +1 415 628-2517 -roomNumber: 8552 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jayme Casey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jayme Casey -sn: Casey -description: This is Jayme Casey's description -facsimileTelephoneNumber: +1 510 714-5767 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 924-8312 -title: Chief Product Development Warrior -userPassword: Password1 -uid: CaseyJ -givenName: Jayme -mail: CaseyJ@786bf687e1984b2da694b96e1738976f.bitwarden.com -carLicense: XRS940 -departmentNumber: 1547 -employeeType: Employee -homePhone: +1 510 532-2045 -initials: J. C. -mobile: +1 510 583-3922 -pager: +1 510 657-7986 -roomNumber: 9751 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leanne Yurchuk -sn: Yurchuk -description: This is Leanne Yurchuk's description -facsimileTelephoneNumber: +1 415 996-4737 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 196-3711 -title: Chief Product Development Punk -userPassword: Password1 -uid: YurchukL -givenName: Leanne -mail: YurchukL@340ab58f2875411f8670d5765360d070.bitwarden.com -carLicense: PKEYJX -departmentNumber: 2040 -employeeType: Normal -homePhone: +1 415 388-5967 -initials: L. Y. -mobile: +1 415 526-8962 -pager: +1 415 328-2525 -roomNumber: 9953 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Daisi Encomenderos,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daisi Encomenderos -sn: Encomenderos -description: This is Daisi Encomenderos's description -facsimileTelephoneNumber: +1 804 435-8983 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 307-6998 -title: Master Management Vice President -userPassword: Password1 -uid: EncomenD -givenName: Daisi -mail: EncomenD@65740d0bd6fb4b44a86d2ab249218002.bitwarden.com -carLicense: 1P177T -departmentNumber: 1472 -employeeType: Normal -homePhone: +1 804 423-7246 -initials: D. E. -mobile: +1 804 116-5908 -pager: +1 804 168-6877 -roomNumber: 9466 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Biplab Caton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Biplab Caton -sn: Caton -description: This is Biplab Caton's description -facsimileTelephoneNumber: +1 415 332-8735 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 781-1511 -title: Associate Peons Janitor -userPassword: Password1 -uid: CatonB -givenName: Biplab -mail: CatonB@3466b47e8afc4d9d8ef0f5f1dbd0e25b.bitwarden.com -carLicense: SEWGB0 -departmentNumber: 8125 -employeeType: Contract -homePhone: +1 415 469-5844 -initials: B. C. -mobile: +1 415 693-6963 -pager: +1 415 336-3545 -roomNumber: 9286 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stu WyzgaTaplin -sn: WyzgaTaplin -description: This is Stu WyzgaTaplin's description -facsimileTelephoneNumber: +1 213 368-3218 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 824-4995 -title: Associate Payroll Admin -userPassword: Password1 -uid: WyzgaTaS -givenName: Stu -mail: WyzgaTaS@3ad303e52239495a9a4593b90983590a.bitwarden.com -carLicense: IGT89Y -departmentNumber: 7191 -employeeType: Contract -homePhone: +1 213 775-8031 -initials: S. W. -mobile: +1 213 151-4725 -pager: +1 213 786-1703 -roomNumber: 8498 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Izak Roussin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Izak Roussin -sn: Roussin -description: This is Izak Roussin's description -facsimileTelephoneNumber: +1 408 221-5952 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 295-1926 -title: Supreme Payroll Vice President -userPassword: Password1 -uid: RoussinI -givenName: Izak -mail: RoussinI@1ae1933dac97453a926e3efbe8067be8.bitwarden.com -carLicense: 4S7S6B -departmentNumber: 8801 -employeeType: Normal -homePhone: +1 408 346-1859 -initials: I. R. -mobile: +1 408 835-4336 -pager: +1 408 986-1411 -roomNumber: 9931 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Montreal Mersch,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Montreal Mersch -sn: Mersch -description: This is Montreal Mersch's description -facsimileTelephoneNumber: +1 818 193-7101 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 818 395-8959 -title: Chief Product Testing Technician -userPassword: Password1 -uid: MerschM -givenName: Montreal -mail: MerschM@0a5d24e43a114c95ae7921fe70fcb8e0.bitwarden.com -carLicense: C1NNHP -departmentNumber: 7431 -employeeType: Employee -homePhone: +1 818 316-4535 -initials: M. M. -mobile: +1 818 368-4121 -pager: +1 818 248-2302 -roomNumber: 8598 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sybille Shwed,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sybille Shwed -sn: Shwed -description: This is Sybille Shwed's description -facsimileTelephoneNumber: +1 206 598-9004 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 165-2652 -title: Master Management Artist -userPassword: Password1 -uid: ShwedS -givenName: Sybille -mail: ShwedS@1c2b637d619c43c18e3692a1390e6b11.bitwarden.com -carLicense: KIDN6F -departmentNumber: 7081 -employeeType: Employee -homePhone: +1 206 755-1097 -initials: S. S. -mobile: +1 206 385-1195 -pager: +1 206 113-1397 -roomNumber: 8245 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gordie Oey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gordie Oey -sn: Oey -description: This is Gordie Oey's description -facsimileTelephoneNumber: +1 408 918-7442 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 408 967-5836 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: OeyG -givenName: Gordie -mail: OeyG@a7e63ce77d0c4ec099d6b11874b8367f.bitwarden.com -carLicense: XQWVVT -departmentNumber: 5995 -employeeType: Contract -homePhone: +1 408 723-4087 -initials: G. O. -mobile: +1 408 619-1590 -pager: +1 408 231-4044 -roomNumber: 8393 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosmunda Artzer -sn: Artzer -description: This is Rosmunda Artzer's description -facsimileTelephoneNumber: +1 408 452-6217 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 604-7953 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: ArtzerR -givenName: Rosmunda -mail: ArtzerR@d3fe6fead68f4275b09ee98e35e3f745.bitwarden.com -carLicense: I0FLTI -departmentNumber: 4989 -employeeType: Normal -homePhone: +1 408 980-8509 -initials: R. A. -mobile: +1 408 699-3358 -pager: +1 408 825-1642 -roomNumber: 8180 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Radha Hazeldine -sn: Hazeldine -description: This is Radha Hazeldine's description -facsimileTelephoneNumber: +1 818 671-2627 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 269-6906 -title: Master Product Testing Warrior -userPassword: Password1 -uid: HazeldiR -givenName: Radha -mail: HazeldiR@6036cb6dd84a4edb923448591ed00b7c.bitwarden.com -carLicense: UO1A5S -departmentNumber: 2115 -employeeType: Contract -homePhone: +1 818 855-7476 -initials: R. H. -mobile: +1 818 796-6060 -pager: +1 818 907-7165 -roomNumber: 8848 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jester Lystiuk -sn: Lystiuk -description: This is Jester Lystiuk's description -facsimileTelephoneNumber: +1 213 876-8739 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 213 302-9476 -title: Master Product Testing Grunt -userPassword: Password1 -uid: LystiukJ -givenName: Jester -mail: LystiukJ@861f2fb047d7400fa0a3213fd039399d.bitwarden.com -carLicense: VBEFN0 -departmentNumber: 8146 -employeeType: Normal -homePhone: +1 213 622-5918 -initials: J. L. -mobile: +1 213 595-3792 -pager: +1 213 792-3567 -roomNumber: 9378 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nerte Diederichs,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nerte Diederichs -sn: Diederichs -description: This is Nerte Diederichs's description -facsimileTelephoneNumber: +1 415 672-9317 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 327-3522 -title: Associate Administrative Mascot -userPassword: Password1 -uid: DiederiN -givenName: Nerte -mail: DiederiN@fbefb364d68b4da5a9c97a7882a4fc8b.bitwarden.com -carLicense: 6P5SH9 -departmentNumber: 9102 -employeeType: Contract -homePhone: +1 415 359-3574 -initials: N. D. -mobile: +1 415 162-5551 -pager: +1 415 270-2914 -roomNumber: 8858 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Annemarie Harrell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annemarie Harrell -sn: Harrell -description: This is Annemarie Harrell's description -facsimileTelephoneNumber: +1 415 327-4636 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 374-6653 -title: Associate Product Development Czar -userPassword: Password1 -uid: HarrellA -givenName: Annemarie -mail: HarrellA@cd7ca9bf5f46417f8ba8aba6c8f7dba0.bitwarden.com -carLicense: 0MLYMN -departmentNumber: 6503 -employeeType: Contract -homePhone: +1 415 500-4794 -initials: A. H. -mobile: +1 415 850-8094 -pager: +1 415 768-2404 -roomNumber: 8581 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cynthea Guirguis -sn: Guirguis -description: This is Cynthea Guirguis's description -facsimileTelephoneNumber: +1 408 145-7739 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 430-3666 -title: Chief Product Development Stooge -userPassword: Password1 -uid: GuirguiC -givenName: Cynthea -mail: GuirguiC@f397541d0e814623b745c4fbd77b1a79.bitwarden.com -carLicense: 14S8EM -departmentNumber: 6911 -employeeType: Contract -homePhone: +1 408 260-8759 -initials: C. G. -mobile: +1 408 249-8066 -pager: +1 408 874-7654 -roomNumber: 9524 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ara Darcel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ara Darcel -sn: Darcel -description: This is Ara Darcel's description -facsimileTelephoneNumber: +1 510 167-8346 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 228-4880 -title: Chief Product Testing Punk -userPassword: Password1 -uid: DarcelA -givenName: Ara -mail: DarcelA@9373e277d74d47d1862d60d665ff05cf.bitwarden.com -carLicense: 78QXC2 -departmentNumber: 6501 -employeeType: Normal -homePhone: +1 510 313-3495 -initials: A. D. -mobile: +1 510 920-5772 -pager: +1 510 711-4336 -roomNumber: 9763 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lincoln TestNTMVAA -sn: TestNTMVAA -description: This is Lincoln TestNTMVAA's description -facsimileTelephoneNumber: +1 408 960-4360 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 515-5323 -title: Chief Product Testing Artist -userPassword: Password1 -uid: TestNTML -givenName: Lincoln -mail: TestNTML@425e3df8b9654b8fb5fafe68899d23b1.bitwarden.com -carLicense: 0WF28Y -departmentNumber: 3309 -employeeType: Employee -homePhone: +1 408 132-9739 -initials: L. T. -mobile: +1 408 655-2435 -pager: +1 408 693-7465 -roomNumber: 8547 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huelsman Quizmaster -sn: Quizmaster -description: This is Huelsman Quizmaster's description -facsimileTelephoneNumber: +1 804 428-5600 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 736-3611 -title: Supreme Administrative Visionary -userPassword: Password1 -uid: QuizmasH -givenName: Huelsman -mail: QuizmasH@677b24267b6440e9ad6bebb082604f25.bitwarden.com -carLicense: WBYLCN -departmentNumber: 4868 -employeeType: Employee -homePhone: +1 804 471-3481 -initials: H. Q. -mobile: +1 804 983-4368 -pager: +1 804 631-8919 -roomNumber: 9667 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eng Mangum,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eng Mangum -sn: Mangum -description: This is Eng Mangum's description -facsimileTelephoneNumber: +1 408 758-3549 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 444-5550 -title: Chief Administrative Admin -userPassword: Password1 -uid: MangumE -givenName: Eng -mail: MangumE@2351067d51a3467b820158a0674b058a.bitwarden.com -carLicense: 8Y6S92 -departmentNumber: 4771 -employeeType: Employee -homePhone: +1 408 519-2983 -initials: E. M. -mobile: +1 408 681-5552 -pager: +1 408 360-4053 -roomNumber: 8733 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kaye Dulude,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaye Dulude -sn: Dulude -description: This is Kaye Dulude's description -facsimileTelephoneNumber: +1 804 945-7063 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 428-8110 -title: Chief Management Vice President -userPassword: Password1 -uid: DuludeK -givenName: Kaye -mail: DuludeK@46b414ac9141409e8e0356bfba101dbd.bitwarden.com -carLicense: 0W017R -departmentNumber: 7746 -employeeType: Normal -homePhone: +1 804 326-1553 -initials: K. D. -mobile: +1 804 112-9188 -pager: +1 804 361-3492 -roomNumber: 9480 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dinny Farrell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dinny Farrell -sn: Farrell -description: This is Dinny Farrell's description -facsimileTelephoneNumber: +1 408 597-8248 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 111-8048 -title: Supreme Administrative Admin -userPassword: Password1 -uid: FarrellD -givenName: Dinny -mail: FarrellD@638ddd5f5c874c1fbe017c3aa0d978c8.bitwarden.com -carLicense: VXLSKW -departmentNumber: 4626 -employeeType: Employee -homePhone: +1 408 210-3673 -initials: D. F. -mobile: +1 408 756-8936 -pager: +1 408 639-5258 -roomNumber: 8777 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pru McIntomny,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pru McIntomny -sn: McIntomny -description: This is Pru McIntomny's description -facsimileTelephoneNumber: +1 818 141-1463 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 181-2028 -title: Supreme Management Fellow -userPassword: Password1 -uid: McIntomP -givenName: Pru -mail: McIntomP@fac421ca650e46139878bbd5f7498e19.bitwarden.com -carLicense: WXG4SR -departmentNumber: 7087 -employeeType: Normal -homePhone: +1 818 740-4210 -initials: P. M. -mobile: +1 818 211-9759 -pager: +1 818 381-6061 -roomNumber: 8764 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faizal Lesperance -sn: Lesperance -description: This is Faizal Lesperance's description -facsimileTelephoneNumber: +1 408 788-1926 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 818-7613 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: LesperaF -givenName: Faizal -mail: LesperaF@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com -carLicense: EVPDVF -departmentNumber: 7332 -employeeType: Employee -homePhone: +1 408 376-3361 -initials: F. L. -mobile: +1 408 120-4556 -pager: +1 408 376-9483 -roomNumber: 9444 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rosemary Liao,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosemary Liao -sn: Liao -description: This is Rosemary Liao's description -facsimileTelephoneNumber: +1 510 561-8170 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 979-5507 -title: Associate Product Development Engineer -userPassword: Password1 -uid: LiaoR -givenName: Rosemary -mail: LiaoR@14f0a617fa68422cb151ec721a7c3c6d.bitwarden.com -carLicense: L5WJ94 -departmentNumber: 9554 -employeeType: Contract -homePhone: +1 510 897-9108 -initials: R. L. -mobile: +1 510 402-1770 -pager: +1 510 458-9278 -roomNumber: 8898 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ketty Torrens,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ketty Torrens -sn: Torrens -description: This is Ketty Torrens's description -facsimileTelephoneNumber: +1 804 735-4157 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 488-9301 -title: Chief Peons Assistant -userPassword: Password1 -uid: TorrensK -givenName: Ketty -mail: TorrensK@ebe018472f8e47ffa07ca073c7579b78.bitwarden.com -carLicense: 3VGRGX -departmentNumber: 4496 -employeeType: Contract -homePhone: +1 804 558-5625 -initials: K. T. -mobile: +1 804 189-2892 -pager: +1 804 261-2172 -roomNumber: 9002 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dinny Meggitt,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dinny Meggitt -sn: Meggitt -description: This is Dinny Meggitt's description -facsimileTelephoneNumber: +1 206 447-6924 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 430-2292 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: MeggittD -givenName: Dinny -mail: MeggittD@8670b7b167164a8b9ce71d78ae9cb652.bitwarden.com -carLicense: 8YPDYS -departmentNumber: 4515 -employeeType: Contract -homePhone: +1 206 227-1988 -initials: D. M. -mobile: +1 206 533-6507 -pager: +1 206 903-2540 -roomNumber: 8174 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ashien Moran,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashien Moran -sn: Moran -description: This is Ashien Moran's description -facsimileTelephoneNumber: +1 818 878-4571 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 818 396-5293 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: MoranA -givenName: Ashien -mail: MoranA@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com -carLicense: 6D7BXP -departmentNumber: 9885 -employeeType: Contract -homePhone: +1 818 783-9831 -initials: A. M. -mobile: +1 818 118-5160 -pager: +1 818 413-6189 -roomNumber: 8229 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dacy Rolnick -sn: Rolnick -description: This is Dacy Rolnick's description -facsimileTelephoneNumber: +1 818 338-7620 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 818-5778 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: RolnickD -givenName: Dacy -mail: RolnickD@380e18f37efc4c72a3aed9a58017ec05.bitwarden.com -carLicense: R5JCDS -departmentNumber: 6372 -employeeType: Contract -homePhone: +1 818 740-1577 -initials: D. R. -mobile: +1 818 155-5117 -pager: +1 818 220-2744 -roomNumber: 9071 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nerissa Brkich,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nerissa Brkich -sn: Brkich -description: This is Nerissa Brkich's description -facsimileTelephoneNumber: +1 818 141-1469 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 519-7857 -title: Junior Management Vice President -userPassword: Password1 -uid: BrkichN -givenName: Nerissa -mail: BrkichN@5a9a5364a178494b8230100acff2f7c1.bitwarden.com -carLicense: 5LRBNS -departmentNumber: 6093 -employeeType: Contract -homePhone: +1 818 523-1510 -initials: N. B. -mobile: +1 818 828-1988 -pager: +1 818 905-6110 -roomNumber: 8715 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ioan Usrouter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ioan Usrouter -sn: Usrouter -description: This is Ioan Usrouter's description -facsimileTelephoneNumber: +1 818 834-4100 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 363-2940 -title: Junior Product Development President -userPassword: Password1 -uid: UsrouteI -givenName: Ioan -mail: UsrouteI@ce1152a8e6c84ca8a342fb4f07adbf4b.bitwarden.com -carLicense: VB5HFH -departmentNumber: 9808 -employeeType: Employee -homePhone: +1 818 367-4192 -initials: I. U. -mobile: +1 818 816-3447 -pager: +1 818 967-1163 -roomNumber: 8554 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bekki Blimkie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bekki Blimkie -sn: Blimkie -description: This is Bekki Blimkie's description -facsimileTelephoneNumber: +1 415 336-3793 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 216-6441 -title: Chief Payroll Warrior -userPassword: Password1 -uid: BlimkieB -givenName: Bekki -mail: BlimkieB@e4ba3a04463843c4bb028511bc17c6ff.bitwarden.com -carLicense: U9CRCO -departmentNumber: 9334 -employeeType: Contract -homePhone: +1 415 573-6798 -initials: B. B. -mobile: +1 415 200-3909 -pager: +1 415 745-3326 -roomNumber: 8364 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imtaz Pastuszok -sn: Pastuszok -description: This is Imtaz Pastuszok's description -facsimileTelephoneNumber: +1 213 130-8556 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 310-5705 -title: Associate Payroll Madonna -userPassword: Password1 -uid: PastuszI -givenName: Imtaz -mail: PastuszI@990be6633e6a426c826b4ed97cd246bb.bitwarden.com -carLicense: DDBUXD -departmentNumber: 9233 -employeeType: Employee -homePhone: +1 213 278-5881 -initials: I. P. -mobile: +1 213 396-5117 -pager: +1 213 647-7082 -roomNumber: 8816 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bryn Spieker,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryn Spieker -sn: Spieker -description: This is Bryn Spieker's description -facsimileTelephoneNumber: +1 213 915-7510 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 591-6829 -title: Supreme Payroll Developer -userPassword: Password1 -uid: SpiekerB -givenName: Bryn -mail: SpiekerB@71f6d4707a2444dbb86b027f8a679d91.bitwarden.com -carLicense: DK1BYU -departmentNumber: 8983 -employeeType: Normal -homePhone: +1 213 479-4060 -initials: B. S. -mobile: +1 213 433-4321 -pager: +1 213 349-8041 -roomNumber: 8859 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vijya Torian,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vijya Torian -sn: Torian -description: This is Vijya Torian's description -facsimileTelephoneNumber: +1 510 623-6990 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 510 619-9764 -title: Chief Payroll Janitor -userPassword: Password1 -uid: TorianV -givenName: Vijya -mail: TorianV@342a4bb5e4f14c8ea1f64e893deb961c.bitwarden.com -carLicense: 0NQEHN -departmentNumber: 9529 -employeeType: Contract -homePhone: +1 510 179-5021 -initials: V. T. -mobile: +1 510 367-6557 -pager: +1 510 944-6433 -roomNumber: 8553 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Teiichi Marconi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teiichi Marconi -sn: Marconi -description: This is Teiichi Marconi's description -facsimileTelephoneNumber: +1 415 817-8077 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 106-1662 -title: Associate Product Development Czar -userPassword: Password1 -uid: MarconiT -givenName: Teiichi -mail: MarconiT@623538f66c6d44c9949856d7b9d692ad.bitwarden.com -carLicense: RFPJS0 -departmentNumber: 4368 -employeeType: Normal -homePhone: +1 415 109-6562 -initials: T. M. -mobile: +1 415 171-2582 -pager: +1 415 649-2079 -roomNumber: 9583 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Allegra Chaaban,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allegra Chaaban -sn: Chaaban -description: This is Allegra Chaaban's description -facsimileTelephoneNumber: +1 510 186-2444 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 185-4855 -title: Supreme Peons Engineer -userPassword: Password1 -uid: ChaabanA -givenName: Allegra -mail: ChaabanA@46a1aedcb791477985797ad9b9abe5c0.bitwarden.com -carLicense: BJ98T9 -departmentNumber: 7844 -employeeType: Contract -homePhone: +1 510 669-5575 -initials: A. C. -mobile: +1 510 130-4644 -pager: +1 510 759-1500 -roomNumber: 8799 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mair Wefers,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mair Wefers -sn: Wefers -description: This is Mair Wefers's description -facsimileTelephoneNumber: +1 206 249-7742 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 785-4354 -title: Junior Administrative Punk -userPassword: Password1 -uid: WefersM -givenName: Mair -mail: WefersM@49672ac4642e4eb39566d542af0eef8f.bitwarden.com -carLicense: 4GV8KQ -departmentNumber: 8873 -employeeType: Contract -homePhone: +1 206 488-2289 -initials: M. W. -mobile: +1 206 332-5982 -pager: +1 206 701-6295 -roomNumber: 9973 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kerri Turbes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kerri Turbes -sn: Turbes -description: This is Kerri Turbes's description -facsimileTelephoneNumber: +1 804 997-5517 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 646-3495 -title: Associate Peons Pinhead -userPassword: Password1 -uid: TurbesK -givenName: Kerri -mail: TurbesK@34766460128a4ee582041f543b9bd242.bitwarden.com -carLicense: DWX7PA -departmentNumber: 8272 -employeeType: Normal -homePhone: +1 804 668-9992 -initials: K. T. -mobile: +1 804 812-5529 -pager: +1 804 986-8725 -roomNumber: 8852 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Debora Dion,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debora Dion -sn: Dion -description: This is Debora Dion's description -facsimileTelephoneNumber: +1 206 916-4871 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 549-9106 -title: Supreme Administrative Architect -userPassword: Password1 -uid: DionD -givenName: Debora -mail: DionD@1a2601d237fb4358a83d77ca67ea5fc3.bitwarden.com -carLicense: N562QY -departmentNumber: 7041 -employeeType: Contract -homePhone: +1 206 357-2354 -initials: D. D. -mobile: +1 206 892-9939 -pager: +1 206 315-9599 -roomNumber: 8305 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertrude Aldhizer -sn: Aldhizer -description: This is Gertrude Aldhizer's description -facsimileTelephoneNumber: +1 818 639-3402 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 368-4919 -title: Master Payroll Artist -userPassword: Password1 -uid: AldhizeG -givenName: Gertrude -mail: AldhizeG@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com -carLicense: 5NNWC9 -departmentNumber: 9009 -employeeType: Employee -homePhone: +1 818 424-1591 -initials: G. A. -mobile: +1 818 332-9362 -pager: +1 818 462-8290 -roomNumber: 9065 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Erdem Cowen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erdem Cowen -sn: Cowen -description: This is Erdem Cowen's description -facsimileTelephoneNumber: +1 408 881-5608 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 691-7448 -title: Chief Peons Vice President -userPassword: Password1 -uid: CowenE -givenName: Erdem -mail: CowenE@202ab1834ba741fea5a2334a7dedf7d0.bitwarden.com -carLicense: 6AH3GW -departmentNumber: 6895 -employeeType: Normal -homePhone: +1 408 473-9054 -initials: E. C. -mobile: +1 408 562-9248 -pager: +1 408 544-3600 -roomNumber: 9309 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Thierry Crockett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thierry Crockett -sn: Crockett -description: This is Thierry Crockett's description -facsimileTelephoneNumber: +1 818 676-9789 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 588-1407 -title: Junior Human Resources Assistant -userPassword: Password1 -uid: CrocketT -givenName: Thierry -mail: CrocketT@3979193f52104b6298b8b064a2ea1e8e.bitwarden.com -carLicense: 1AGB0N -departmentNumber: 5307 -employeeType: Normal -homePhone: +1 818 378-6126 -initials: T. C. -mobile: +1 818 820-2011 -pager: +1 818 850-6680 -roomNumber: 8929 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Karrah Kassam,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karrah Kassam -sn: Kassam -description: This is Karrah Kassam's description -facsimileTelephoneNumber: +1 415 191-1502 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 677-2132 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: KassamK -givenName: Karrah -mail: KassamK@44cbc1ffc61f4407b46df0ad2810f7c4.bitwarden.com -carLicense: KEHJJA -departmentNumber: 8913 -employeeType: Employee -homePhone: +1 415 313-3442 -initials: K. K. -mobile: +1 415 953-9224 -pager: +1 415 323-1743 -roomNumber: 9214 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Odile Dbs,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odile Dbs -sn: Dbs -description: This is Odile Dbs's description -facsimileTelephoneNumber: +1 206 116-1167 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 570-7732 -title: Master Management Grunt -userPassword: Password1 -uid: DbsO -givenName: Odile -mail: DbsO@16315dd92dc84985a220069911440155.bitwarden.com -carLicense: 0RYPN1 -departmentNumber: 9690 -employeeType: Employee -homePhone: +1 206 747-9004 -initials: O. D. -mobile: +1 206 702-1367 -pager: +1 206 624-2436 -roomNumber: 9032 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loleta Mulqueen -sn: Mulqueen -description: This is Loleta Mulqueen's description -facsimileTelephoneNumber: +1 510 130-5902 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 415-2644 -title: Junior Administrative Architect -userPassword: Password1 -uid: MulqueeL -givenName: Loleta -mail: MulqueeL@e859d60c0ffe4559a718b23dca588771.bitwarden.com -carLicense: JEA4K2 -departmentNumber: 1456 -employeeType: Contract -homePhone: +1 510 220-6485 -initials: L. M. -mobile: +1 510 193-7356 -pager: +1 510 429-1997 -roomNumber: 9700 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lacy Haughwout,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lacy Haughwout -sn: Haughwout -description: This is Lacy Haughwout's description -facsimileTelephoneNumber: +1 415 990-6561 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 303-8356 -title: Supreme Management Architect -userPassword: Password1 -uid: HaughwoL -givenName: Lacy -mail: HaughwoL@b42b6a99e6224e4c89291ebf380e3cbd.bitwarden.com -carLicense: U0JVP5 -departmentNumber: 2020 -employeeType: Employee -homePhone: +1 415 987-1588 -initials: L. H. -mobile: +1 415 840-1078 -pager: +1 415 551-8745 -roomNumber: 9380 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jimson Volfe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jimson Volfe -sn: Volfe -description: This is Jimson Volfe's description -facsimileTelephoneNumber: +1 415 625-2696 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 759-5320 -title: Junior Product Development Mascot -userPassword: Password1 -uid: VolfeJ -givenName: Jimson -mail: VolfeJ@1a4bc9dc35304b5f9c2dd94a61108938.bitwarden.com -carLicense: 8V23X5 -departmentNumber: 2788 -employeeType: Normal -homePhone: +1 415 446-5448 -initials: J. V. -mobile: +1 415 758-7417 -pager: +1 415 453-4399 -roomNumber: 9956 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dede Billingham,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dede Billingham -sn: Billingham -description: This is Dede Billingham's description -facsimileTelephoneNumber: +1 206 337-3208 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 581-6286 -title: Supreme Janitorial President -userPassword: Password1 -uid: BillingD -givenName: Dede -mail: BillingD@280e1fcf17ca42c7b9f1237963a3ba22.bitwarden.com -carLicense: D2YSLW -departmentNumber: 6118 -employeeType: Contract -homePhone: +1 206 345-6567 -initials: D. B. -mobile: +1 206 506-6084 -pager: +1 206 795-2406 -roomNumber: 9530 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Domenic Rykwalder -sn: Rykwalder -description: This is Domenic Rykwalder's description -facsimileTelephoneNumber: +1 408 624-1344 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 348-8277 -title: Master Payroll Assistant -userPassword: Password1 -uid: RykwaldD -givenName: Domenic -mail: RykwaldD@b8b0660e812e407ca6dcb94fde784926.bitwarden.com -carLicense: UHKWJ9 -departmentNumber: 9225 -employeeType: Normal -homePhone: +1 408 495-2338 -initials: D. R. -mobile: +1 408 847-8044 -pager: +1 408 741-4313 -roomNumber: 8622 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estrellita Ramroop -sn: Ramroop -description: This is Estrellita Ramroop's description -facsimileTelephoneNumber: +1 213 244-7138 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 163-6369 -title: Supreme Product Testing Vice President -userPassword: Password1 -uid: RamroopE -givenName: Estrellita -mail: RamroopE@c73aa3a091e049f6a7996bb3eca7f8f0.bitwarden.com -carLicense: IN2WNA -departmentNumber: 9418 -employeeType: Employee -homePhone: +1 213 890-2138 -initials: E. R. -mobile: +1 213 484-1542 -pager: +1 213 524-8486 -roomNumber: 9016 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kissee Gowan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kissee Gowan -sn: Gowan -description: This is Kissee Gowan's description -facsimileTelephoneNumber: +1 206 323-4396 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 322-6017 -title: Master Product Testing Admin -userPassword: Password1 -uid: GowanK -givenName: Kissee -mail: GowanK@9eeaca65c53d4c879749fbda1cbf479e.bitwarden.com -carLicense: S3EV5G -departmentNumber: 7949 -employeeType: Employee -homePhone: +1 206 668-1860 -initials: K. G. -mobile: +1 206 968-2084 -pager: +1 206 854-3354 -roomNumber: 9703 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Eulalie Webber,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eulalie Webber -sn: Webber -description: This is Eulalie Webber's description -facsimileTelephoneNumber: +1 818 583-2088 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 519-3215 -title: Junior Product Development Manager -userPassword: Password1 -uid: WebberE -givenName: Eulalie -mail: WebberE@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com -carLicense: OGGM4J -departmentNumber: 2646 -employeeType: Employee -homePhone: +1 818 834-1295 -initials: E. W. -mobile: +1 818 352-4942 -pager: +1 818 750-5233 -roomNumber: 8882 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Court Trefry,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Court Trefry -sn: Trefry -description: This is Court Trefry's description -facsimileTelephoneNumber: +1 510 353-8482 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 719-4826 -title: Associate Management Punk -userPassword: Password1 -uid: TrefryC -givenName: Court -mail: TrefryC@6f63c7f0bdc04832878e82c0e7196131.bitwarden.com -carLicense: JCI1AX -departmentNumber: 6949 -employeeType: Contract -homePhone: +1 510 413-7005 -initials: C. T. -mobile: +1 510 427-8463 -pager: +1 510 454-5242 -roomNumber: 9766 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Claretta Kilcoin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claretta Kilcoin -sn: Kilcoin -description: This is Claretta Kilcoin's description -facsimileTelephoneNumber: +1 408 462-5301 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 140-9609 -title: Junior Peons Visionary -userPassword: Password1 -uid: KilcoinC -givenName: Claretta -mail: KilcoinC@0714ade30c294e8fa73207b90b001e06.bitwarden.com -carLicense: KA6IAV -departmentNumber: 2295 -employeeType: Contract -homePhone: +1 408 451-3620 -initials: C. K. -mobile: +1 408 832-5025 -pager: +1 408 116-7461 -roomNumber: 8998 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kassia Daaboul,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kassia Daaboul -sn: Daaboul -description: This is Kassia Daaboul's description -facsimileTelephoneNumber: +1 206 126-9619 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 206 341-4332 -title: Supreme Product Development Dictator -userPassword: Password1 -uid: DaaboulK -givenName: Kassia -mail: DaaboulK@23ac82069da24dec85c6bfe8b5f2d4d4.bitwarden.com -carLicense: HKRQG6 -departmentNumber: 2115 -employeeType: Normal -homePhone: +1 206 450-1862 -initials: K. D. -mobile: +1 206 489-9307 -pager: +1 206 378-2130 -roomNumber: 8040 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bekki Zagorsek -sn: Zagorsek -description: This is Bekki Zagorsek's description -facsimileTelephoneNumber: +1 804 176-9461 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 733-5547 -title: Junior Product Development Evangelist -userPassword: Password1 -uid: ZagorseB -givenName: Bekki -mail: ZagorseB@225e1be6fb454e5cab9ce645e748d35d.bitwarden.com -carLicense: AVQBPI -departmentNumber: 9022 -employeeType: Normal -homePhone: +1 804 360-6858 -initials: B. Z. -mobile: +1 804 394-6371 -pager: +1 804 376-5686 -roomNumber: 8594 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Weber Gu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weber Gu -sn: Gu -description: This is Weber Gu's description -facsimileTelephoneNumber: +1 408 411-2692 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 610-7123 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: GuW -givenName: Weber -mail: GuW@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com -carLicense: 5H4NML -departmentNumber: 8218 -employeeType: Employee -homePhone: +1 408 497-5218 -initials: W. G. -mobile: +1 408 196-7742 -pager: +1 408 882-8549 -roomNumber: 9957 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rank Courtney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rank Courtney -sn: Courtney -description: This is Rank Courtney's description -facsimileTelephoneNumber: +1 510 696-9304 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 864-9088 -title: Junior Administrative Grunt -userPassword: Password1 -uid: CourtneR -givenName: Rank -mail: CourtneR@3087ee4d2688435e9ed4c4c6f3e8ba87.bitwarden.com -carLicense: VROREN -departmentNumber: 1647 -employeeType: Employee -homePhone: +1 510 935-6606 -initials: R. C. -mobile: +1 510 497-3615 -pager: +1 510 577-8419 -roomNumber: 8106 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aaren Neustifter,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aaren Neustifter -sn: Neustifter -description: This is Aaren Neustifter's description -facsimileTelephoneNumber: +1 510 644-3248 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 727-3417 -title: Supreme Management Figurehead -userPassword: Password1 -uid: NeustifA -givenName: Aaren -mail: NeustifA@f9c0f71d487646dca3eac1c7c5deeeaf.bitwarden.com -carLicense: SGE747 -departmentNumber: 4735 -employeeType: Contract -homePhone: +1 510 219-2939 -initials: A. N. -mobile: +1 510 206-7607 -pager: +1 510 684-3889 -roomNumber: 8400 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chiarra Moroz -sn: Moroz -description: This is Chiarra Moroz's description -facsimileTelephoneNumber: +1 206 514-5545 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 682-9980 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: MorozC -givenName: Chiarra -mail: MorozC@c3dcba6fd4804a9ab67d7734e84114c2.bitwarden.com -carLicense: UVOV21 -departmentNumber: 1033 -employeeType: Employee -homePhone: +1 206 948-5867 -initials: C. M. -mobile: +1 206 642-4902 -pager: +1 206 933-5258 -roomNumber: 8636 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clifford Forgues,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clifford Forgues -sn: Forgues -description: This is Clifford Forgues's description -facsimileTelephoneNumber: +1 213 133-3718 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 314-8123 -title: Master Peons Visionary -userPassword: Password1 -uid: ForguesC -givenName: Clifford -mail: ForguesC@b0e0a2bb3e4d4480b71edfd089eedd18.bitwarden.com -carLicense: CXTNEN -departmentNumber: 5319 -employeeType: Contract -homePhone: +1 213 312-7095 -initials: C. F. -mobile: +1 213 591-5681 -pager: +1 213 642-3143 -roomNumber: 9229 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Donnie Laverty,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donnie Laverty -sn: Laverty -description: This is Donnie Laverty's description -facsimileTelephoneNumber: +1 206 289-7894 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 471-4013 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: LavertyD -givenName: Donnie -mail: LavertyD@7448491b00a74a3e95be2c2010be9a72.bitwarden.com -carLicense: SMXOCG -departmentNumber: 1010 -employeeType: Employee -homePhone: +1 206 227-4246 -initials: D. L. -mobile: +1 206 681-6530 -pager: +1 206 190-9011 -roomNumber: 9046 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=How Sebastien,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: How Sebastien -sn: Sebastien -description: This is How Sebastien's description -facsimileTelephoneNumber: +1 408 669-7388 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 491-8218 -title: Associate Peons Developer -userPassword: Password1 -uid: SebastiH -givenName: How -mail: SebastiH@f759e44a1c504c63b3eae17c75b66fa2.bitwarden.com -carLicense: 4Q1774 -departmentNumber: 5806 -employeeType: Normal -homePhone: +1 408 112-4846 -initials: H. S. -mobile: +1 408 740-9565 -pager: +1 408 258-1025 -roomNumber: 8591 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hung Tabl,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hung Tabl -sn: Tabl -description: This is Hung Tabl's description -facsimileTelephoneNumber: +1 804 295-8327 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 496-4249 -title: Master Administrative Manager -userPassword: Password1 -uid: TablH -givenName: Hung -mail: TablH@89d768777d16464796c6d90c8e8f013b.bitwarden.com -carLicense: R2S7ID -departmentNumber: 2864 -employeeType: Normal -homePhone: +1 804 894-3342 -initials: H. T. -mobile: +1 804 270-4554 -pager: +1 804 521-7436 -roomNumber: 9241 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Maye Atoui,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maye Atoui -sn: Atoui -description: This is Maye Atoui's description -facsimileTelephoneNumber: +1 206 385-5399 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 572-1671 -title: Master Payroll Warrior -userPassword: Password1 -uid: AtouiM -givenName: Maye -mail: AtouiM@92820cdfa8c3401089a4d22b2ae2009e.bitwarden.com -carLicense: RYQPVB -departmentNumber: 1062 -employeeType: Contract -homePhone: +1 206 402-8375 -initials: M. A. -mobile: +1 206 478-4816 -pager: +1 206 407-7851 -roomNumber: 8867 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Deva Currie,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deva Currie -sn: Currie -description: This is Deva Currie's description -facsimileTelephoneNumber: +1 213 781-1109 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 169-4357 -title: Master Administrative Dictator -userPassword: Password1 -uid: CurrieD -givenName: Deva -mail: CurrieD@fae6085323bb4b59a529fb3b72784e6a.bitwarden.com -carLicense: EWGG8D -departmentNumber: 7843 -employeeType: Employee -homePhone: +1 213 327-3608 -initials: D. C. -mobile: +1 213 142-8046 -pager: +1 213 695-9175 -roomNumber: 9079 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vivienne Bourk,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivienne Bourk -sn: Bourk -description: This is Vivienne Bourk's description -facsimileTelephoneNumber: +1 510 222-2138 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 459-2261 -title: Junior Payroll Developer -userPassword: Password1 -uid: BourkV -givenName: Vivienne -mail: BourkV@a84df3e5c9b34623ae9b4e8378e01b53.bitwarden.com -carLicense: 8PXI16 -departmentNumber: 8765 -employeeType: Contract -homePhone: +1 510 110-3788 -initials: V. B. -mobile: +1 510 381-2666 -pager: +1 510 747-7119 -roomNumber: 9866 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gerber Kiernan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerber Kiernan -sn: Kiernan -description: This is Gerber Kiernan's description -facsimileTelephoneNumber: +1 510 278-7108 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 110-5224 -title: Junior Peons Punk -userPassword: Password1 -uid: KiernanG -givenName: Gerber -mail: KiernanG@caa46152d3004d829aedead9d70579b0.bitwarden.com -carLicense: B1HQ3O -departmentNumber: 9428 -employeeType: Normal -homePhone: +1 510 135-5645 -initials: G. K. -mobile: +1 510 901-8986 -pager: +1 510 735-3394 -roomNumber: 8846 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Me Muhammed,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Me Muhammed -sn: Muhammed -description: This is Me Muhammed's description -facsimileTelephoneNumber: +1 804 400-6915 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 478-3385 -title: Master Product Testing Artist -userPassword: Password1 -uid: MuhammeM -givenName: Me -mail: MuhammeM@280b34febbb74067854d58b8a20b3eb2.bitwarden.com -carLicense: 5M6DAX -departmentNumber: 9522 -employeeType: Contract -homePhone: +1 804 760-5848 -initials: M. M. -mobile: +1 804 818-4241 -pager: +1 804 924-2797 -roomNumber: 9562 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ragui Lorenc,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ragui Lorenc -sn: Lorenc -description: This is Ragui Lorenc's description -facsimileTelephoneNumber: +1 818 951-8872 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 635-9372 -title: Associate Peons Warrior -userPassword: Password1 -uid: LorencR -givenName: Ragui -mail: LorencR@7d5f96a7021f46fdb7df38ea2101330d.bitwarden.com -carLicense: APGCHJ -departmentNumber: 2766 -employeeType: Contract -homePhone: +1 818 830-1297 -initials: R. L. -mobile: +1 818 214-7379 -pager: +1 818 928-1879 -roomNumber: 8003 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorenza McCormick,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorenza McCormick -sn: McCormick -description: This is Lorenza McCormick's description -facsimileTelephoneNumber: +1 415 159-2950 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 415 911-4612 -title: Associate Peons Evangelist -userPassword: Password1 -uid: McCormiL -givenName: Lorenza -mail: McCormiL@b3a0ac978ba64a56a57f321d452537e5.bitwarden.com -carLicense: 6VCJXV -departmentNumber: 4118 -employeeType: Employee -homePhone: +1 415 730-4504 -initials: L. M. -mobile: +1 415 828-2668 -pager: +1 415 479-8723 -roomNumber: 8339 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beatrisa Malaher,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatrisa Malaher -sn: Malaher -description: This is Beatrisa Malaher's description -facsimileTelephoneNumber: +1 818 603-7876 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 818 184-1965 -title: Associate Peons Dictator -userPassword: Password1 -uid: MalaherB -givenName: Beatrisa -mail: MalaherB@8522aa5b68484728b6db62d65a666456.bitwarden.com -carLicense: L44G2B -departmentNumber: 9093 -employeeType: Normal -homePhone: +1 818 495-2641 -initials: B. M. -mobile: +1 818 209-6066 -pager: +1 818 207-8461 -roomNumber: 9485 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tiffi Beverly,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffi Beverly -sn: Beverly -description: This is Tiffi Beverly's description -facsimileTelephoneNumber: +1 510 471-5662 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 939-7285 -title: Chief Payroll Stooge -userPassword: Password1 -uid: BeverlyT -givenName: Tiffi -mail: BeverlyT@01c5fecdf9e14e82bff74d9b9c368891.bitwarden.com -carLicense: 0USTOB -departmentNumber: 3193 -employeeType: Employee -homePhone: +1 510 434-9442 -initials: T. B. -mobile: +1 510 760-9109 -pager: +1 510 166-4250 -roomNumber: 8810 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estrellita Bijons -sn: Bijons -description: This is Estrellita Bijons's description -facsimileTelephoneNumber: +1 408 956-5032 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 408 585-2638 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: BijonsE -givenName: Estrellita -mail: BijonsE@99adc70861e74db5b3e496e79ef1d82c.bitwarden.com -carLicense: NPNOB1 -departmentNumber: 8529 -employeeType: Contract -homePhone: +1 408 441-7969 -initials: E. B. -mobile: +1 408 774-3498 -pager: +1 408 546-8817 -roomNumber: 9872 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Analise Shiley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Analise Shiley -sn: Shiley -description: This is Analise Shiley's description -facsimileTelephoneNumber: +1 415 494-2662 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 791-9910 -title: Junior Janitorial Manager -userPassword: Password1 -uid: ShileyA -givenName: Analise -mail: ShileyA@e51aa6debfeb4cc88c68dfc76ad89784.bitwarden.com -carLicense: 29G9L4 -departmentNumber: 4898 -employeeType: Employee -homePhone: +1 415 235-9837 -initials: A. S. -mobile: +1 415 373-2496 -pager: +1 415 854-2785 -roomNumber: 8014 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Fan Neander,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fan Neander -sn: Neander -description: This is Fan Neander's description -facsimileTelephoneNumber: +1 206 917-9866 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 269-2663 -title: Master Janitorial Janitor -userPassword: Password1 -uid: NeanderF -givenName: Fan -mail: NeanderF@8fd38b10138d41afbb37c8037aaf6377.bitwarden.com -carLicense: SXSSVU -departmentNumber: 7700 -employeeType: Employee -homePhone: +1 206 504-8275 -initials: F. N. -mobile: +1 206 626-8639 -pager: +1 206 216-2700 -roomNumber: 8026 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Diamond Azer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diamond Azer -sn: Azer -description: This is Diamond Azer's description -facsimileTelephoneNumber: +1 415 412-4632 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 403-2520 -title: Chief Payroll Vice President -userPassword: Password1 -uid: AzerD -givenName: Diamond -mail: AzerD@5d8901804e424468b0bef6e0378317d6.bitwarden.com -carLicense: AENJM1 -departmentNumber: 5945 -employeeType: Contract -homePhone: +1 415 388-4423 -initials: D. A. -mobile: +1 415 283-4490 -pager: +1 415 868-4313 -roomNumber: 8088 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dorothee Azmak,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorothee Azmak -sn: Azmak -description: This is Dorothee Azmak's description -facsimileTelephoneNumber: +1 408 353-5831 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 351-8315 -title: Supreme Payroll Warrior -userPassword: Password1 -uid: AzmakD -givenName: Dorothee -mail: AzmakD@6882bb306b30484eac03893eca277bd3.bitwarden.com -carLicense: 2EBUB0 -departmentNumber: 9219 -employeeType: Employee -homePhone: +1 408 332-7999 -initials: D. A. -mobile: +1 408 803-8877 -pager: +1 408 565-6198 -roomNumber: 8280 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aloisia Svalesen -sn: Svalesen -description: This is Aloisia Svalesen's description -facsimileTelephoneNumber: +1 213 555-7527 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 272-4537 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: SvaleseA -givenName: Aloisia -mail: SvaleseA@8e7d48bf3a0c469095e8b24ecc1dd148.bitwarden.com -carLicense: RUWO6Q -departmentNumber: 4954 -employeeType: Employee -homePhone: +1 213 106-3287 -initials: A. S. -mobile: +1 213 741-5693 -pager: +1 213 997-8423 -roomNumber: 9607 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sydel MacGillivray,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sydel MacGillivray -sn: MacGillivray -description: This is Sydel MacGillivray's description -facsimileTelephoneNumber: +1 213 482-5325 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 125-3187 -title: Supreme Peons Evangelist -userPassword: Password1 -uid: MacGillS -givenName: Sydel -mail: MacGillS@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com -carLicense: LFFX7W -departmentNumber: 1224 -employeeType: Contract -homePhone: +1 213 398-6870 -initials: S. M. -mobile: +1 213 458-1344 -pager: +1 213 667-5344 -roomNumber: 8880 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Martelle Filpus,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martelle Filpus -sn: Filpus -description: This is Martelle Filpus's description -facsimileTelephoneNumber: +1 206 826-4708 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 133-3544 -title: Supreme Product Testing President -userPassword: Password1 -uid: FilpusM -givenName: Martelle -mail: FilpusM@0f18718d8483421a96ceacb15a634c41.bitwarden.com -carLicense: GV94L0 -departmentNumber: 4088 -employeeType: Employee -homePhone: +1 206 636-9062 -initials: M. F. -mobile: +1 206 404-4709 -pager: +1 206 700-5963 -roomNumber: 8634 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Merunix Fadlallah,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merunix Fadlallah -sn: Fadlallah -description: This is Merunix Fadlallah's description -facsimileTelephoneNumber: +1 818 565-7028 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 818 618-7364 -title: Junior Management Figurehead -userPassword: Password1 -uid: FadlallM -givenName: Merunix -mail: FadlallM@6dfbae5841184eee86f16ac4a1176697.bitwarden.com -carLicense: 5DQSML -departmentNumber: 5591 -employeeType: Normal -homePhone: +1 818 442-6156 -initials: M. F. -mobile: +1 818 460-5903 -pager: +1 818 961-8070 -roomNumber: 9373 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Faz Seegobin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faz Seegobin -sn: Seegobin -description: This is Faz Seegobin's description -facsimileTelephoneNumber: +1 206 361-2417 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 860-3516 -title: Master Janitorial President -userPassword: Password1 -uid: SeegobiF -givenName: Faz -mail: SeegobiF@71a24c1b73ef45498dfd1fbb9961fd57.bitwarden.com -carLicense: WVQ153 -departmentNumber: 1217 -employeeType: Contract -homePhone: +1 206 173-6036 -initials: F. S. -mobile: +1 206 384-1340 -pager: +1 206 322-6074 -roomNumber: 8545 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellie Hrvatin -sn: Hrvatin -description: This is Ellie Hrvatin's description -facsimileTelephoneNumber: +1 415 345-1698 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 800-2278 -title: Master Product Development Visionary -userPassword: Password1 -uid: HrvatinE -givenName: Ellie -mail: HrvatinE@7fedbd7312884d269b87f028bb6e0f4a.bitwarden.com -carLicense: J8CBEQ -departmentNumber: 9353 -employeeType: Contract -homePhone: +1 415 512-2134 -initials: E. H. -mobile: +1 415 573-3948 -pager: +1 415 941-9715 -roomNumber: 8924 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jeffery Panek,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeffery Panek -sn: Panek -description: This is Jeffery Panek's description -facsimileTelephoneNumber: +1 213 779-1404 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 213 875-1677 -title: Master Administrative Architect -userPassword: Password1 -uid: PanekJ -givenName: Jeffery -mail: PanekJ@0c478e577f6c43f08e0c7154f215c7af.bitwarden.com -carLicense: 9TLW1D -departmentNumber: 5714 -employeeType: Employee -homePhone: +1 213 369-8926 -initials: J. P. -mobile: +1 213 956-9645 -pager: +1 213 121-9470 -roomNumber: 8890 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chip Billard,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chip Billard -sn: Billard -description: This is Chip Billard's description -facsimileTelephoneNumber: +1 804 639-8541 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 989-4916 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: BillardC -givenName: Chip -mail: BillardC@f56fa15d6b7d4398bc29adc06e1de112.bitwarden.com -carLicense: LM57WH -departmentNumber: 2146 -employeeType: Employee -homePhone: +1 804 872-9663 -initials: C. B. -mobile: +1 804 584-5112 -pager: +1 804 963-1280 -roomNumber: 8428 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tran Selbrede,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tran Selbrede -sn: Selbrede -description: This is Tran Selbrede's description -facsimileTelephoneNumber: +1 415 757-8404 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 624-4686 -title: Supreme Peons Visionary -userPassword: Password1 -uid: SelbredT -givenName: Tran -mail: SelbredT@af40db009e314d829eef59ff73dce913.bitwarden.com -carLicense: 7RJP84 -departmentNumber: 5809 -employeeType: Contract -homePhone: +1 415 302-1896 -initials: T. S. -mobile: +1 415 174-9326 -pager: +1 415 573-7582 -roomNumber: 9759 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wade Boersma,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wade Boersma -sn: Boersma -description: This is Wade Boersma's description -facsimileTelephoneNumber: +1 818 521-6770 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 630-6323 -title: Associate Peons Director -userPassword: Password1 -uid: BoersmaW -givenName: Wade -mail: BoersmaW@24bb0910ae8142189acd6bd1e9a01a9a.bitwarden.com -carLicense: MPBT97 -departmentNumber: 3964 -employeeType: Employee -homePhone: +1 818 102-8095 -initials: W. B. -mobile: +1 818 123-9515 -pager: +1 818 192-2422 -roomNumber: 9047 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Quintana Huneault,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quintana Huneault -sn: Huneault -description: This is Quintana Huneault's description -facsimileTelephoneNumber: +1 206 906-7289 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 198-5299 -title: Master Administrative Developer -userPassword: Password1 -uid: HuneaulQ -givenName: Quintana -mail: HuneaulQ@0ffd7dc252424626a20bcce6a53d823f.bitwarden.com -carLicense: CT3KSB -departmentNumber: 5624 -employeeType: Normal -homePhone: +1 206 610-7586 -initials: Q. H. -mobile: +1 206 690-9992 -pager: +1 206 377-7860 -roomNumber: 9790 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Coors Beerkens,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coors Beerkens -sn: Beerkens -description: This is Coors Beerkens's description -facsimileTelephoneNumber: +1 408 708-8756 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 127-4797 -title: Junior Administrative Dictator -userPassword: Password1 -uid: BeerkenC -givenName: Coors -mail: BeerkenC@79a240440e8849ae9bc16c0dd8ed8e58.bitwarden.com -carLicense: YIJ9V2 -departmentNumber: 8403 -employeeType: Contract -homePhone: +1 408 726-2143 -initials: C. B. -mobile: +1 408 598-1857 -pager: +1 408 338-5368 -roomNumber: 8898 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Prudence Schacham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prudence Schacham -sn: Schacham -description: This is Prudence Schacham's description -facsimileTelephoneNumber: +1 818 686-1263 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 818 859-8869 -title: Master Product Testing President -userPassword: Password1 -uid: SchachaP -givenName: Prudence -mail: SchachaP@5dc8fd12cec3417ebac3e0369b557c5a.bitwarden.com -carLicense: L36QS4 -departmentNumber: 7907 -employeeType: Normal -homePhone: +1 818 748-2418 -initials: P. S. -mobile: +1 818 214-1875 -pager: +1 818 937-4687 -roomNumber: 8917 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verlyn Dunajski -sn: Dunajski -description: This is Verlyn Dunajski's description -facsimileTelephoneNumber: +1 408 780-2786 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 214-6927 -title: Supreme Payroll Czar -userPassword: Password1 -uid: DunajskV -givenName: Verlyn -mail: DunajskV@8cf79d720e6f4840b60a280dc34d992f.bitwarden.com -carLicense: VXRF5F -departmentNumber: 6627 -employeeType: Normal -homePhone: +1 408 745-3160 -initials: V. D. -mobile: +1 408 739-9888 -pager: +1 408 489-8595 -roomNumber: 8973 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Evita Cropper,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evita Cropper -sn: Cropper -description: This is Evita Cropper's description -facsimileTelephoneNumber: +1 415 309-7022 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 671-8822 -title: Associate Janitorial Artist -userPassword: Password1 -uid: CropperE -givenName: Evita -mail: CropperE@93856f312059479cb0ac63a8c6d54de8.bitwarden.com -carLicense: NMLAS5 -departmentNumber: 2841 -employeeType: Normal -homePhone: +1 415 221-2281 -initials: E. C. -mobile: +1 415 107-5275 -pager: +1 415 461-2527 -roomNumber: 8734 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joletta Senten,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joletta Senten -sn: Senten -description: This is Joletta Senten's description -facsimileTelephoneNumber: +1 818 253-1158 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 461-4311 -title: Supreme Peons Czar -userPassword: Password1 -uid: SentenJ -givenName: Joletta -mail: SentenJ@d267cba29e124e168b77cc7855c4f981.bitwarden.com -carLicense: H4HLNM -departmentNumber: 2366 -employeeType: Normal -homePhone: +1 818 118-3044 -initials: J. S. -mobile: +1 818 456-1685 -pager: +1 818 451-1044 -roomNumber: 8928 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kylie Wueppelmann -sn: Wueppelmann -description: This is Kylie Wueppelmann's description -facsimileTelephoneNumber: +1 804 309-8225 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 294-3299 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: WueppelK -givenName: Kylie -mail: WueppelK@9e342fa3efb14712a894fba19d56a8d2.bitwarden.com -carLicense: XDTT2V -departmentNumber: 9278 -employeeType: Contract -homePhone: +1 804 626-8125 -initials: K. W. -mobile: +1 804 291-8415 -pager: +1 804 110-4706 -roomNumber: 8332 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fotini Suyama,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fotini Suyama -sn: Suyama -description: This is Fotini Suyama's description -facsimileTelephoneNumber: +1 408 902-3009 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 997-9361 -title: Junior Management Director -userPassword: Password1 -uid: SuyamaF -givenName: Fotini -mail: SuyamaF@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com -carLicense: QA34NT -departmentNumber: 7633 -employeeType: Employee -homePhone: +1 408 537-2037 -initials: F. S. -mobile: +1 408 151-8470 -pager: +1 408 373-3722 -roomNumber: 9427 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hazel Gesino,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hazel Gesino -sn: Gesino -description: This is Hazel Gesino's description -facsimileTelephoneNumber: +1 510 633-5271 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 127-5825 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: GesinoH -givenName: Hazel -mail: GesinoH@9cd1df92f17b493a882aebc6152a1e6e.bitwarden.com -carLicense: E73SC2 -departmentNumber: 7704 -employeeType: Contract -homePhone: +1 510 626-4560 -initials: H. G. -mobile: +1 510 823-6628 -pager: +1 510 631-2463 -roomNumber: 8983 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ivie Murison,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivie Murison -sn: Murison -description: This is Ivie Murison's description -facsimileTelephoneNumber: +1 818 328-8466 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 215-5501 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: MurisonI -givenName: Ivie -mail: MurisonI@4c46c0ccb3eb4998b4cbc47cae874ac9.bitwarden.com -carLicense: ISVKCA -departmentNumber: 4612 -employeeType: Employee -homePhone: +1 818 236-3726 -initials: I. M. -mobile: +1 818 997-2877 -pager: +1 818 438-7528 -roomNumber: 9337 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mahesh Flach,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mahesh Flach -sn: Flach -description: This is Mahesh Flach's description -facsimileTelephoneNumber: +1 804 234-6867 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 474-8119 -title: Junior Payroll Madonna -userPassword: Password1 -uid: FlachM -givenName: Mahesh -mail: FlachM@09bb099d23204c85bbfd94efdb157b79.bitwarden.com -carLicense: BPGBLK -departmentNumber: 3340 -employeeType: Employee -homePhone: +1 804 402-8394 -initials: M. F. -mobile: +1 804 932-2699 -pager: +1 804 478-6743 -roomNumber: 8646 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Annalee Prikkel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annalee Prikkel -sn: Prikkel -description: This is Annalee Prikkel's description -facsimileTelephoneNumber: +1 818 399-1808 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 578-6541 -title: Master Management Figurehead -userPassword: Password1 -uid: PrikkelA -givenName: Annalee -mail: PrikkelA@578d34c128584bdeb42b389207ab706c.bitwarden.com -carLicense: D50D8F -departmentNumber: 6704 -employeeType: Contract -homePhone: +1 818 689-2862 -initials: A. P. -mobile: +1 818 959-6961 -pager: +1 818 860-3225 -roomNumber: 9058 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Catja Scholman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catja Scholman -sn: Scholman -description: This is Catja Scholman's description -facsimileTelephoneNumber: +1 213 822-8500 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 213 147-8386 -title: Master Human Resources Czar -userPassword: Password1 -uid: ScholmaC -givenName: Catja -mail: ScholmaC@fa78ddbf4a824e749170662a86f94ae1.bitwarden.com -carLicense: 30U25U -departmentNumber: 9089 -employeeType: Normal -homePhone: +1 213 762-9467 -initials: C. S. -mobile: +1 213 640-4450 -pager: +1 213 956-6780 -roomNumber: 8760 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: RoseAnne Dodson -sn: Dodson -description: This is RoseAnne Dodson's description -facsimileTelephoneNumber: +1 415 240-8784 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 413-2307 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: DodsonR -givenName: RoseAnne -mail: DodsonR@97f7053b3d7f4f79b48d3e12171a5966.bitwarden.com -carLicense: OTU31E -departmentNumber: 8365 -employeeType: Employee -homePhone: +1 415 127-9478 -initials: R. D. -mobile: +1 415 965-2139 -pager: +1 415 772-2731 -roomNumber: 8487 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anda Fastpack,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anda Fastpack -sn: Fastpack -description: This is Anda Fastpack's description -facsimileTelephoneNumber: +1 213 119-7006 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 306-7987 -title: Junior Product Testing Architect -userPassword: Password1 -uid: FastpacA -givenName: Anda -mail: FastpacA@a035bec181ea4cd9abd3953e80704bef.bitwarden.com -carLicense: 2K25Y2 -departmentNumber: 9119 -employeeType: Contract -homePhone: +1 213 723-6959 -initials: A. F. -mobile: +1 213 235-9213 -pager: +1 213 162-6643 -roomNumber: 8936 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Salis Nehring,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salis Nehring -sn: Nehring -description: This is Salis Nehring's description -facsimileTelephoneNumber: +1 213 749-3490 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 163-8074 -title: Associate Management Pinhead -userPassword: Password1 -uid: NehringS -givenName: Salis -mail: NehringS@0769d99dace1402cab1152a81fe3788b.bitwarden.com -carLicense: UHOD8Q -departmentNumber: 4187 -employeeType: Contract -homePhone: +1 213 248-6700 -initials: S. N. -mobile: +1 213 145-9115 -pager: +1 213 380-9206 -roomNumber: 9574 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Francis LeBlanc,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francis LeBlanc -sn: LeBlanc -description: This is Francis LeBlanc's description -facsimileTelephoneNumber: +1 415 601-4851 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 624-3039 -title: Junior Payroll Director -userPassword: Password1 -uid: LeBlancF -givenName: Francis -mail: LeBlancF@d8f95844461442f7932326cd41b836f9.bitwarden.com -carLicense: LKILFX -departmentNumber: 2122 -employeeType: Employee -homePhone: +1 415 378-9434 -initials: F. L. -mobile: +1 415 994-2538 -pager: +1 415 342-9924 -roomNumber: 9777 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Humberto Stensrud,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Humberto Stensrud -sn: Stensrud -description: This is Humberto Stensrud's description -facsimileTelephoneNumber: +1 206 183-2532 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 252-1546 -title: Supreme Management Developer -userPassword: Password1 -uid: StensruH -givenName: Humberto -mail: StensruH@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com -carLicense: EBG1K5 -departmentNumber: 7475 -employeeType: Employee -homePhone: +1 206 575-3468 -initials: H. S. -mobile: +1 206 979-9339 -pager: +1 206 327-1661 -roomNumber: 9124 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Manfred Wesolowski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manfred Wesolowski -sn: Wesolowski -description: This is Manfred Wesolowski's description -facsimileTelephoneNumber: +1 415 800-5360 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 867-6559 -title: Associate Peons Artist -userPassword: Password1 -uid: WesolowM -givenName: Manfred -mail: WesolowM@e3eea603d1ae4f4dbff063acf8c6da65.bitwarden.com -carLicense: F09KVU -departmentNumber: 9636 -employeeType: Employee -homePhone: +1 415 118-3840 -initials: M. W. -mobile: +1 415 767-2804 -pager: +1 415 231-1176 -roomNumber: 8210 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherwood Dziemian -sn: Dziemian -description: This is Sherwood Dziemian's description -facsimileTelephoneNumber: +1 415 248-2380 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 689-3511 -title: Chief Janitorial Manager -userPassword: Password1 -uid: DziemiaS -givenName: Sherwood -mail: DziemiaS@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com -carLicense: WPH92N -departmentNumber: 9304 -employeeType: Employee -homePhone: +1 415 238-6285 -initials: S. D. -mobile: +1 415 720-9335 -pager: +1 415 348-7156 -roomNumber: 8173 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Estele Fiest,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estele Fiest -sn: Fiest -description: This is Estele Fiest's description -facsimileTelephoneNumber: +1 408 161-2535 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 815-6919 -title: Master Peons Figurehead -userPassword: Password1 -uid: FiestE -givenName: Estele -mail: FiestE@9bf2c205467a41708e3322ff14ec009d.bitwarden.com -carLicense: 5GKT6D -departmentNumber: 3808 -employeeType: Normal -homePhone: +1 408 190-4683 -initials: E. F. -mobile: +1 408 588-8315 -pager: +1 408 493-5846 -roomNumber: 8639 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maciej Fucito,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maciej Fucito -sn: Fucito -description: This is Maciej Fucito's description -facsimileTelephoneNumber: +1 415 629-9326 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 932-8579 -title: Supreme Administrative Evangelist -userPassword: Password1 -uid: FucitoM -givenName: Maciej -mail: FucitoM@5e943e5d6d7b48d9af98d3041b109570.bitwarden.com -carLicense: NIM1XY -departmentNumber: 6914 -employeeType: Contract -homePhone: +1 415 162-5122 -initials: M. F. -mobile: +1 415 564-2735 -pager: +1 415 936-2460 -roomNumber: 8686 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnnLorrain Keer -sn: Keer -description: This is AnnLorrain Keer's description -facsimileTelephoneNumber: +1 818 407-3303 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 104-5891 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: KeerA -givenName: AnnLorrain -mail: KeerA@177cfb37cf074f4eb62daca714a1f711.bitwarden.com -carLicense: 6VSLT8 -departmentNumber: 8513 -employeeType: Employee -homePhone: +1 818 845-5049 -initials: A. K. -mobile: +1 818 716-8460 -pager: +1 818 937-7520 -roomNumber: 9635 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Frinel Veals,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frinel Veals -sn: Veals -description: This is Frinel Veals's description -facsimileTelephoneNumber: +1 213 140-2044 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 351-1333 -title: Chief Payroll Assistant -userPassword: Password1 -uid: VealsF -givenName: Frinel -mail: VealsF@7022b955bef74762989f3e8241ec17a6.bitwarden.com -carLicense: IXJ4BI -departmentNumber: 6118 -employeeType: Employee -homePhone: +1 213 137-5032 -initials: F. V. -mobile: +1 213 545-2180 -pager: +1 213 253-4763 -roomNumber: 8484 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Catha Ghossein,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catha Ghossein -sn: Ghossein -description: This is Catha Ghossein's description -facsimileTelephoneNumber: +1 206 919-1967 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 176-7983 -title: Master Human Resources Pinhead -userPassword: Password1 -uid: GhosseiC -givenName: Catha -mail: GhosseiC@afcd326ae5b94cedba790b89df39e139.bitwarden.com -carLicense: VDHG8L -departmentNumber: 9911 -employeeType: Normal -homePhone: +1 206 636-2603 -initials: C. G. -mobile: +1 206 978-5819 -pager: +1 206 318-2190 -roomNumber: 8513 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Basia Trinidad,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Basia Trinidad -sn: Trinidad -description: This is Basia Trinidad's description -facsimileTelephoneNumber: +1 213 816-1277 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 608-5787 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: TrinidaB -givenName: Basia -mail: TrinidaB@14e134bbcef94cbd9594aadae408ce91.bitwarden.com -carLicense: 40E5VW -departmentNumber: 3448 -employeeType: Contract -homePhone: +1 213 781-1404 -initials: B. T. -mobile: +1 213 394-4536 -pager: +1 213 776-7077 -roomNumber: 9146 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vita Leveille,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vita Leveille -sn: Leveille -description: This is Vita Leveille's description -facsimileTelephoneNumber: +1 818 719-5265 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 531-3746 -title: Chief Human Resources Mascot -userPassword: Password1 -uid: LeveillV -givenName: Vita -mail: LeveillV@156df7528958433faec56aa3b7184ead.bitwarden.com -carLicense: SPN04K -departmentNumber: 1433 -employeeType: Contract -homePhone: +1 818 730-6503 -initials: V. L. -mobile: +1 818 252-5444 -pager: +1 818 431-6529 -roomNumber: 8589 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lidio Toomer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lidio Toomer -sn: Toomer -description: This is Lidio Toomer's description -facsimileTelephoneNumber: +1 510 652-6787 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 616-8950 -title: Chief Human Resources Technician -userPassword: Password1 -uid: ToomerL -givenName: Lidio -mail: ToomerL@4ec011c6fc024dda9c255391b6f4f92f.bitwarden.com -carLicense: 9LFLH7 -departmentNumber: 7147 -employeeType: Employee -homePhone: +1 510 280-7443 -initials: L. T. -mobile: +1 510 534-1782 -pager: +1 510 660-3848 -roomNumber: 9311 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kessel Keveny,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kessel Keveny -sn: Keveny -description: This is Kessel Keveny's description -facsimileTelephoneNumber: +1 206 267-6786 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 257-6498 -title: Junior Product Development President -userPassword: Password1 -uid: KevenyK -givenName: Kessel -mail: KevenyK@60e7c26ff89e4b72b87e6f8a7af31f27.bitwarden.com -carLicense: 56M65Y -departmentNumber: 7089 -employeeType: Contract -homePhone: +1 206 320-2795 -initials: K. K. -mobile: +1 206 135-9339 -pager: +1 206 374-3478 -roomNumber: 9638 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alf Noorani,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alf Noorani -sn: Noorani -description: This is Alf Noorani's description -facsimileTelephoneNumber: +1 818 923-7718 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 818 361-2886 -title: Master Janitorial Director -userPassword: Password1 -uid: NooraniA -givenName: Alf -mail: NooraniA@9d5da66e74ac4d48878a287a4792d9ad.bitwarden.com -carLicense: 2XXQ87 -departmentNumber: 9439 -employeeType: Normal -homePhone: +1 818 300-5221 -initials: A. N. -mobile: +1 818 959-3697 -pager: +1 818 562-2578 -roomNumber: 9486 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmella Mivehchi -sn: Mivehchi -description: This is Carmella Mivehchi's description -facsimileTelephoneNumber: +1 818 591-1763 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 658-3562 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: MivehchC -givenName: Carmella -mail: MivehchC@f5afe6422dca491da65fa6a254990cc8.bitwarden.com -carLicense: CKMAXO -departmentNumber: 3717 -employeeType: Employee -homePhone: +1 818 994-5454 -initials: C. M. -mobile: +1 818 345-1987 -pager: +1 818 870-8514 -roomNumber: 8811 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kirstyn Hutt,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirstyn Hutt -sn: Hutt -description: This is Kirstyn Hutt's description -facsimileTelephoneNumber: +1 415 260-3390 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 801-2219 -title: Chief Management Visionary -userPassword: Password1 -uid: HuttK -givenName: Kirstyn -mail: HuttK@7d6035a424ee45dca06332e1186be7f6.bitwarden.com -carLicense: 3ITHID -departmentNumber: 6127 -employeeType: Employee -homePhone: +1 415 352-4285 -initials: K. H. -mobile: +1 415 240-2250 -pager: +1 415 217-9532 -roomNumber: 9543 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Blisse Lein,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blisse Lein -sn: Lein -description: This is Blisse Lein's description -facsimileTelephoneNumber: +1 206 842-4455 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 737-2081 -title: Associate Product Testing Developer -userPassword: Password1 -uid: LeinB -givenName: Blisse -mail: LeinB@94b95f6e458646f98e09b046007fece8.bitwarden.com -carLicense: LTXALO -departmentNumber: 5675 -employeeType: Contract -homePhone: +1 206 615-3916 -initials: B. L. -mobile: +1 206 468-4594 -pager: +1 206 212-3552 -roomNumber: 8380 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Edithe Dougall,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edithe Dougall -sn: Dougall -description: This is Edithe Dougall's description -facsimileTelephoneNumber: +1 206 262-6166 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 275-5490 -title: Chief Administrative Assistant -userPassword: Password1 -uid: DougallE -givenName: Edithe -mail: DougallE@e5b69381ba2b442b903a1a29bf25534d.bitwarden.com -carLicense: GV6X5B -departmentNumber: 1813 -employeeType: Normal -homePhone: +1 206 369-4092 -initials: E. D. -mobile: +1 206 266-1168 -pager: +1 206 660-4801 -roomNumber: 8391 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sage Randell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sage Randell -sn: Randell -description: This is Sage Randell's description -facsimileTelephoneNumber: +1 510 496-7067 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 762-6522 -title: Supreme Peons Manager -userPassword: Password1 -uid: RandellS -givenName: Sage -mail: RandellS@7f502c8cd29345a394629247bc437c0f.bitwarden.com -carLicense: MSS9J1 -departmentNumber: 6685 -employeeType: Contract -homePhone: +1 510 240-3274 -initials: S. R. -mobile: +1 510 231-5950 -pager: +1 510 875-6353 -roomNumber: 8876 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carina Hume,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carina Hume -sn: Hume -description: This is Carina Hume's description -facsimileTelephoneNumber: +1 510 389-7232 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 510 605-8532 -title: Chief Peons Engineer -userPassword: Password1 -uid: HumeC -givenName: Carina -mail: HumeC@8053af09c938471f9ad09445e16f631c.bitwarden.com -carLicense: KDYXN6 -departmentNumber: 2674 -employeeType: Contract -homePhone: +1 510 132-8592 -initials: C. H. -mobile: +1 510 531-8843 -pager: +1 510 200-8019 -roomNumber: 9023 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mickie Prystie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mickie Prystie -sn: Prystie -description: This is Mickie Prystie's description -facsimileTelephoneNumber: +1 206 573-8815 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 140-1404 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: PrystieM -givenName: Mickie -mail: PrystieM@ab27f4e751074bd087dace4a33698f66.bitwarden.com -carLicense: 77DJG8 -departmentNumber: 2075 -employeeType: Contract -homePhone: +1 206 901-4386 -initials: M. P. -mobile: +1 206 777-2105 -pager: +1 206 780-2992 -roomNumber: 9209 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nalin Levere,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nalin Levere -sn: Levere -description: This is Nalin Levere's description -facsimileTelephoneNumber: +1 415 662-5058 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 316-6195 -title: Master Human Resources Director -userPassword: Password1 -uid: LevereN -givenName: Nalin -mail: LevereN@14c49ff73612459cbe530fd5ad7a9b9f.bitwarden.com -carLicense: JBPYRC -departmentNumber: 6844 -employeeType: Normal -homePhone: +1 415 158-3072 -initials: N. L. -mobile: +1 415 440-9768 -pager: +1 415 517-1843 -roomNumber: 9559 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Allen Iannotti,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allen Iannotti -sn: Iannotti -description: This is Allen Iannotti's description -facsimileTelephoneNumber: +1 415 559-9107 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 332-4495 -title: Associate Administrative Writer -userPassword: Password1 -uid: IannottA -givenName: Allen -mail: IannottA@e37f5b0cfb234751951af2ec77381913.bitwarden.com -carLicense: HQKN1P -departmentNumber: 3134 -employeeType: Contract -homePhone: +1 415 399-9835 -initials: A. I. -mobile: +1 415 254-6185 -pager: +1 415 530-2637 -roomNumber: 8396 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Maressa Poulin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maressa Poulin -sn: Poulin -description: This is Maressa Poulin's description -facsimileTelephoneNumber: +1 206 411-1659 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 795-3798 -title: Chief Peons Figurehead -userPassword: Password1 -uid: PoulinM -givenName: Maressa -mail: PoulinM@97142716e28b4ec6bcc36b32805d9552.bitwarden.com -carLicense: XX9RKO -departmentNumber: 3753 -employeeType: Normal -homePhone: +1 206 984-7543 -initials: M. P. -mobile: +1 206 415-2777 -pager: +1 206 499-5687 -roomNumber: 9089 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Danni Hummerston,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danni Hummerston -sn: Hummerston -description: This is Danni Hummerston's description -facsimileTelephoneNumber: +1 818 836-7697 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 818 263-5972 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: HummersD -givenName: Danni -mail: HummersD@2111304740f548cf848d6dc98f3520ec.bitwarden.com -carLicense: BX3K9A -departmentNumber: 1900 -employeeType: Employee -homePhone: +1 818 581-1434 -initials: D. H. -mobile: +1 818 525-6295 -pager: +1 818 604-1392 -roomNumber: 8725 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rosabel Buley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosabel Buley -sn: Buley -description: This is Rosabel Buley's description -facsimileTelephoneNumber: +1 415 855-5056 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 431-4089 -title: Chief Management Mascot -userPassword: Password1 -uid: BuleyR -givenName: Rosabel -mail: BuleyR@2f1ccd0f317a4e42955b19a4c97fc5c6.bitwarden.com -carLicense: WBDI33 -departmentNumber: 5620 -employeeType: Normal -homePhone: +1 415 754-6209 -initials: R. B. -mobile: +1 415 869-9698 -pager: +1 415 291-4531 -roomNumber: 8574 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cindelyn Lethebinh -sn: Lethebinh -description: This is Cindelyn Lethebinh's description -facsimileTelephoneNumber: +1 415 183-6129 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 997-2920 -title: Master Janitorial Janitor -userPassword: Password1 -uid: LethebiC -givenName: Cindelyn -mail: LethebiC@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com -carLicense: 85P5HI -departmentNumber: 3164 -employeeType: Normal -homePhone: +1 415 480-5464 -initials: C. L. -mobile: +1 415 175-4494 -pager: +1 415 133-5310 -roomNumber: 9432 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sayed Virant,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sayed Virant -sn: Virant -description: This is Sayed Virant's description -facsimileTelephoneNumber: +1 510 355-8452 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 510 636-1005 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: VirantS -givenName: Sayed -mail: VirantS@8042d13a5bda4cd1ba81e78d19a6faff.bitwarden.com -carLicense: DGPMDV -departmentNumber: 7029 -employeeType: Contract -homePhone: +1 510 742-7919 -initials: S. V. -mobile: +1 510 163-1154 -pager: +1 510 957-7246 -roomNumber: 8196 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sundaram Lojewski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sundaram Lojewski -sn: Lojewski -description: This is Sundaram Lojewski's description -facsimileTelephoneNumber: +1 408 977-3184 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 698-9551 -title: Master Management Punk -userPassword: Password1 -uid: LojewskS -givenName: Sundaram -mail: LojewskS@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com -carLicense: ND7O9V -departmentNumber: 1334 -employeeType: Employee -homePhone: +1 408 180-6961 -initials: S. L. -mobile: +1 408 113-1519 -pager: +1 408 910-3775 -roomNumber: 9106 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Laina Ertl,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laina Ertl -sn: Ertl -description: This is Laina Ertl's description -facsimileTelephoneNumber: +1 510 757-8147 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 442-1403 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: ErtlL -givenName: Laina -mail: ErtlL@056a218e00ae4a2383ce03d97161e27d.bitwarden.com -carLicense: HD2KE7 -departmentNumber: 6231 -employeeType: Normal -homePhone: +1 510 223-7928 -initials: L. E. -mobile: +1 510 543-4959 -pager: +1 510 606-4996 -roomNumber: 8667 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeniece Bcs,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeniece Bcs -sn: Bcs -description: This is Jeniece Bcs's description -facsimileTelephoneNumber: +1 213 840-5418 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 128-8336 -title: Master Administrative Manager -userPassword: Password1 -uid: BcsJ -givenName: Jeniece -mail: BcsJ@724caed46aaf481fb3e0817c5c10cdb6.bitwarden.com -carLicense: Y01MXE -departmentNumber: 2265 -employeeType: Employee -homePhone: +1 213 419-9483 -initials: J. B. -mobile: +1 213 480-3339 -pager: +1 213 167-2265 -roomNumber: 8107 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sukhwant Eldreth -sn: Eldreth -description: This is Sukhwant Eldreth's description -facsimileTelephoneNumber: +1 206 435-8091 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 878-6220 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: EldrethS -givenName: Sukhwant -mail: EldrethS@b62493e12ad744b2b5583be842519934.bitwarden.com -carLicense: GJT2YU -departmentNumber: 8370 -employeeType: Contract -homePhone: +1 206 463-5816 -initials: S. E. -mobile: +1 206 551-6034 -pager: +1 206 312-5104 -roomNumber: 9253 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tammy Heikkila,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tammy Heikkila -sn: Heikkila -description: This is Tammy Heikkila's description -facsimileTelephoneNumber: +1 206 173-7403 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 851-7277 -title: Associate Payroll Director -userPassword: Password1 -uid: HeikkilT -givenName: Tammy -mail: HeikkilT@4781f85f1c214dff92b5f07239287faa.bitwarden.com -carLicense: C1SLIL -departmentNumber: 4823 -employeeType: Employee -homePhone: +1 206 139-8177 -initials: T. H. -mobile: +1 206 562-7031 -pager: +1 206 279-9584 -roomNumber: 8747 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pearle Bruketa,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pearle Bruketa -sn: Bruketa -description: This is Pearle Bruketa's description -facsimileTelephoneNumber: +1 510 465-5351 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 827-3779 -title: Chief Management Czar -userPassword: Password1 -uid: BruketaP -givenName: Pearle -mail: BruketaP@d01918c117a846518e67dbe5b2fd6ee8.bitwarden.com -carLicense: FJ6MCH -departmentNumber: 5600 -employeeType: Employee -homePhone: +1 510 544-3269 -initials: P. B. -mobile: +1 510 739-5219 -pager: +1 510 325-4550 -roomNumber: 8212 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cherie Brett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherie Brett -sn: Brett -description: This is Cherie Brett's description -facsimileTelephoneNumber: +1 415 184-9860 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 415 230-8910 -title: Master Peons Assistant -userPassword: Password1 -uid: BrettC -givenName: Cherie -mail: BrettC@878435e5887c47ef90f06778893d179e.bitwarden.com -carLicense: 0S1FGA -departmentNumber: 1368 -employeeType: Employee -homePhone: +1 415 690-8059 -initials: C. B. -mobile: +1 415 483-9700 -pager: +1 415 340-9094 -roomNumber: 8448 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hector Gingrich,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hector Gingrich -sn: Gingrich -description: This is Hector Gingrich's description -facsimileTelephoneNumber: +1 408 482-2137 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 793-9956 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: GingricH -givenName: Hector -mail: GingricH@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com -carLicense: RX01FE -departmentNumber: 3495 -employeeType: Contract -homePhone: +1 408 710-9866 -initials: H. G. -mobile: +1 408 192-6471 -pager: +1 408 790-7327 -roomNumber: 8267 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Biplab VanHaste,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Biplab VanHaste -sn: VanHaste -description: This is Biplab VanHaste's description -facsimileTelephoneNumber: +1 818 692-1665 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 393-3213 -title: Junior Administrative Figurehead -userPassword: Password1 -uid: VanHastB -givenName: Biplab -mail: VanHastB@a605402a36f347eeb8dcbbe3d61c2032.bitwarden.com -carLicense: 68N18C -departmentNumber: 4622 -employeeType: Employee -homePhone: +1 818 609-1128 -initials: B. V. -mobile: +1 818 810-1684 -pager: +1 818 228-9578 -roomNumber: 8288 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jermaine Sheffield -sn: Sheffield -description: This is Jermaine Sheffield's description -facsimileTelephoneNumber: +1 206 608-3232 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 391-2197 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: SheffieJ -givenName: Jermaine -mail: SheffieJ@c65f075234ae4ca0ba28441c293a5096.bitwarden.com -carLicense: A61RE0 -departmentNumber: 3354 -employeeType: Normal -homePhone: +1 206 874-1361 -initials: J. S. -mobile: +1 206 841-4231 -pager: +1 206 803-1096 -roomNumber: 9113 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roby Larin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roby Larin -sn: Larin -description: This is Roby Larin's description -facsimileTelephoneNumber: +1 408 631-3157 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 342-1452 -title: Master Management Evangelist -userPassword: Password1 -uid: LarinR -givenName: Roby -mail: LarinR@fc61927435a64fa9bae5f49cccd879ca.bitwarden.com -carLicense: G30PTO -departmentNumber: 8771 -employeeType: Normal -homePhone: +1 408 321-3249 -initials: R. L. -mobile: +1 408 677-2956 -pager: +1 408 455-3216 -roomNumber: 8687 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shirley Holvey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirley Holvey -sn: Holvey -description: This is Shirley Holvey's description -facsimileTelephoneNumber: +1 408 457-7804 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 583-3589 -title: Master Janitorial Engineer -userPassword: Password1 -uid: HolveyS -givenName: Shirley -mail: HolveyS@a32cc86a2bd244a1a69078536f474c4c.bitwarden.com -carLicense: 3X683L -departmentNumber: 5523 -employeeType: Normal -homePhone: +1 408 937-1357 -initials: S. H. -mobile: +1 408 786-6702 -pager: +1 408 276-3027 -roomNumber: 9750 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yettie Croisetiere -sn: Croisetiere -description: This is Yettie Croisetiere's description -facsimileTelephoneNumber: +1 818 660-3806 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 785-8964 -title: Associate Payroll Fellow -userPassword: Password1 -uid: CroisetY -givenName: Yettie -mail: CroisetY@01d981966ccd4e18a1de23880ee9b91c.bitwarden.com -carLicense: FI0LX0 -departmentNumber: 7634 -employeeType: Normal -homePhone: +1 818 486-2654 -initials: Y. C. -mobile: +1 818 969-4697 -pager: +1 818 274-1317 -roomNumber: 8946 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dolli Brownridge -sn: Brownridge -description: This is Dolli Brownridge's description -facsimileTelephoneNumber: +1 510 123-9318 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 671-7652 -title: Master Product Testing Fellow -userPassword: Password1 -uid: BrownriD -givenName: Dolli -mail: BrownriD@e9efa6e493c94e819a8af125d338efb9.bitwarden.com -carLicense: PAHLN7 -departmentNumber: 8494 -employeeType: Employee -homePhone: +1 510 640-2535 -initials: D. B. -mobile: +1 510 189-5025 -pager: +1 510 617-7779 -roomNumber: 9483 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shari Skaff,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shari Skaff -sn: Skaff -description: This is Shari Skaff's description -facsimileTelephoneNumber: +1 804 470-8144 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 349-7775 -title: Supreme Peons Technician -userPassword: Password1 -uid: SkaffS -givenName: Shari -mail: SkaffS@42f7f72ca79e451abe4a35d3706fd511.bitwarden.com -carLicense: NFHGIE -departmentNumber: 3708 -employeeType: Employee -homePhone: +1 804 330-5707 -initials: S. S. -mobile: +1 804 854-6844 -pager: +1 804 290-3274 -roomNumber: 9044 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hoa SanfordWright -sn: SanfordWright -description: This is Hoa SanfordWright's description -facsimileTelephoneNumber: +1 804 567-4593 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 452-7971 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: SanfordH -givenName: Hoa -mail: SanfordH@58eea1d96e4142748280c825c6b718b2.bitwarden.com -carLicense: RXJHCA -departmentNumber: 6948 -employeeType: Contract -homePhone: +1 804 463-3877 -initials: H. S. -mobile: +1 804 346-2820 -pager: +1 804 723-8752 -roomNumber: 9148 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Valida Fleischer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valida Fleischer -sn: Fleischer -description: This is Valida Fleischer's description -facsimileTelephoneNumber: +1 804 408-1612 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 240-6808 -title: Master Administrative Writer -userPassword: Password1 -uid: FleischV -givenName: Valida -mail: FleischV@2c5b6f0e18984fb3a1bf5177eef8b508.bitwarden.com -carLicense: DR74P4 -departmentNumber: 7056 -employeeType: Employee -homePhone: +1 804 538-7517 -initials: V. F. -mobile: +1 804 779-7557 -pager: +1 804 870-2597 -roomNumber: 8869 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=March Hess,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: March Hess -sn: Hess -description: This is March Hess's description -facsimileTelephoneNumber: +1 804 744-8895 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 719-8629 -title: Master Product Testing Vice President -userPassword: Password1 -uid: HessM -givenName: March -mail: HessM@90f7f0ce436d4b8ead2a23f5d4765511.bitwarden.com -carLicense: O35II9 -departmentNumber: 2572 -employeeType: Normal -homePhone: +1 804 645-2806 -initials: M. H. -mobile: +1 804 925-3096 -pager: +1 804 228-9291 -roomNumber: 9013 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kamran Shabatura,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamran Shabatura -sn: Shabatura -description: This is Kamran Shabatura's description -facsimileTelephoneNumber: +1 213 829-8630 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 241-8338 -title: Supreme Peons Artist -userPassword: Password1 -uid: ShabatuK -givenName: Kamran -mail: ShabatuK@e3c084d5a2b44c959d053319884f8497.bitwarden.com -carLicense: 89T32T -departmentNumber: 4281 -employeeType: Employee -homePhone: +1 213 766-4406 -initials: K. S. -mobile: +1 213 622-3221 -pager: +1 213 927-9318 -roomNumber: 8644 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Arturo Ensign,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arturo Ensign -sn: Ensign -description: This is Arturo Ensign's description -facsimileTelephoneNumber: +1 510 413-1926 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 625-4645 -title: Master Administrative President -userPassword: Password1 -uid: EnsignA -givenName: Arturo -mail: EnsignA@74472620f9a5441ba641f245e46fb09d.bitwarden.com -carLicense: JCM2MC -departmentNumber: 5958 -employeeType: Contract -homePhone: +1 510 849-4066 -initials: A. E. -mobile: +1 510 327-5309 -pager: +1 510 682-1787 -roomNumber: 8474 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oorschot Saifullah -sn: Saifullah -description: This is Oorschot Saifullah's description -facsimileTelephoneNumber: +1 804 605-2654 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 825-1734 -title: Associate Payroll Grunt -userPassword: Password1 -uid: SaifullO -givenName: Oorschot -mail: SaifullO@7be2adbfd042422e9bcc88e78cabf3cb.bitwarden.com -carLicense: DCIJDT -departmentNumber: 7407 -employeeType: Employee -homePhone: +1 804 339-3885 -initials: O. S. -mobile: +1 804 327-5906 -pager: +1 804 626-8513 -roomNumber: 8637 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gheorghe Feyen -sn: Feyen -description: This is Gheorghe Feyen's description -facsimileTelephoneNumber: +1 213 227-5604 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 199-3750 -title: Master Product Testing Director -userPassword: Password1 -uid: FeyenG -givenName: Gheorghe -mail: FeyenG@c881c186a173446ea0e986dc58eda7dc.bitwarden.com -carLicense: 6VWYQK -departmentNumber: 5130 -employeeType: Normal -homePhone: +1 213 988-7612 -initials: G. F. -mobile: +1 213 423-3966 -pager: +1 213 758-8924 -roomNumber: 8626 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lauryn Wever,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lauryn Wever -sn: Wever -description: This is Lauryn Wever's description -facsimileTelephoneNumber: +1 818 716-9804 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 196-5482 -title: Chief Administrative Stooge -userPassword: Password1 -uid: WeverL -givenName: Lauryn -mail: WeverL@a2a7439199d14d4790e860a2aa0ae08e.bitwarden.com -carLicense: NGK7TH -departmentNumber: 9270 -employeeType: Normal -homePhone: +1 818 986-6688 -initials: L. W. -mobile: +1 818 153-4119 -pager: +1 818 122-6060 -roomNumber: 9739 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Anda Wilhoit,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anda Wilhoit -sn: Wilhoit -description: This is Anda Wilhoit's description -facsimileTelephoneNumber: +1 510 253-3167 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 365-5367 -title: Junior Administrative Sales Rep -userPassword: Password1 -uid: WilhoitA -givenName: Anda -mail: WilhoitA@9834775790d142218cd7b62ee57a176b.bitwarden.com -carLicense: IINMD7 -departmentNumber: 1445 -employeeType: Employee -homePhone: +1 510 411-6764 -initials: A. W. -mobile: +1 510 406-3541 -pager: +1 510 748-5065 -roomNumber: 8180 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Samia Cochran,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Samia Cochran -sn: Cochran -description: This is Samia Cochran's description -facsimileTelephoneNumber: +1 804 248-6610 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 804 932-1984 -title: Supreme Janitorial President -userPassword: Password1 -uid: CochranS -givenName: Samia -mail: CochranS@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com -carLicense: T9PINR -departmentNumber: 9814 -employeeType: Normal -homePhone: +1 804 127-5523 -initials: S. C. -mobile: +1 804 636-8846 -pager: +1 804 865-3475 -roomNumber: 8974 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Michie ToDo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michie ToDo -sn: ToDo -description: This is Michie ToDo's description -facsimileTelephoneNumber: +1 818 875-7312 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 130-5118 -title: Associate Administrative Fellow -userPassword: Password1 -uid: ToDoM -givenName: Michie -mail: ToDoM@b3031d6ddd9541b6b0f40d995516638d.bitwarden.com -carLicense: O068WC -departmentNumber: 1234 -employeeType: Employee -homePhone: +1 818 894-7190 -initials: M. T. -mobile: +1 818 198-8369 -pager: +1 818 804-1025 -roomNumber: 9688 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Arvind Gundecha,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arvind Gundecha -sn: Gundecha -description: This is Arvind Gundecha's description -facsimileTelephoneNumber: +1 206 541-7726 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 668-2900 -title: Supreme Peons Writer -userPassword: Password1 -uid: GundechA -givenName: Arvind -mail: GundechA@44fa0b06635a4a55b59882def7b69891.bitwarden.com -carLicense: 95T0J0 -departmentNumber: 8258 -employeeType: Employee -homePhone: +1 206 973-5695 -initials: A. G. -mobile: +1 206 201-3482 -pager: +1 206 702-8094 -roomNumber: 9439 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Costas Watson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Costas Watson -sn: Watson -description: This is Costas Watson's description -facsimileTelephoneNumber: +1 213 616-1079 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 903-8113 -title: Master Product Testing Architect -userPassword: Password1 -uid: WatsonC -givenName: Costas -mail: WatsonC@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com -carLicense: 4SX5RT -departmentNumber: 2477 -employeeType: Contract -homePhone: +1 213 248-5326 -initials: C. W. -mobile: +1 213 670-3614 -pager: +1 213 745-8643 -roomNumber: 8036 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ebba Gutcher,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ebba Gutcher -sn: Gutcher -description: This is Ebba Gutcher's description -facsimileTelephoneNumber: +1 408 275-8960 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 256-5020 -title: Chief Peons Evangelist -userPassword: Password1 -uid: GutcherE -givenName: Ebba -mail: GutcherE@dd4f59cb9a1245048a34aa45906e0378.bitwarden.com -carLicense: UAT0FT -departmentNumber: 1443 -employeeType: Contract -homePhone: +1 408 875-3701 -initials: E. G. -mobile: +1 408 924-7634 -pager: +1 408 849-9550 -roomNumber: 9912 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gretal Kendrick -sn: Kendrick -description: This is Gretal Kendrick's description -facsimileTelephoneNumber: +1 804 827-2582 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 164-3899 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: KendricG -givenName: Gretal -mail: KendricG@5e8502c960c24fb593bf7dca3d40e2f2.bitwarden.com -carLicense: IB9SWB -departmentNumber: 9317 -employeeType: Normal -homePhone: +1 804 158-4444 -initials: G. K. -mobile: +1 804 702-4950 -pager: +1 804 496-9090 -roomNumber: 8569 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Peggie Madl,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peggie Madl -sn: Madl -description: This is Peggie Madl's description -facsimileTelephoneNumber: +1 510 746-6629 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 721-5289 -title: Chief Product Testing Madonna -userPassword: Password1 -uid: MadlP -givenName: Peggie -mail: MadlP@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com -carLicense: 4QNIU6 -departmentNumber: 5852 -employeeType: Contract -homePhone: +1 510 967-3851 -initials: P. M. -mobile: +1 510 840-2215 -pager: +1 510 275-4701 -roomNumber: 8123 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Norry Benjamin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norry Benjamin -sn: Benjamin -description: This is Norry Benjamin's description -facsimileTelephoneNumber: +1 206 449-4290 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 763-1534 -title: Junior Payroll Punk -userPassword: Password1 -uid: BenjamiN -givenName: Norry -mail: BenjamiN@65ea3b4fba9d486a8e6a9886164c5515.bitwarden.com -carLicense: 8ST64K -departmentNumber: 3827 -employeeType: Employee -homePhone: +1 206 174-3927 -initials: N. B. -mobile: +1 206 963-9260 -pager: +1 206 224-4834 -roomNumber: 9122 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Loreen Chapen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loreen Chapen -sn: Chapen -description: This is Loreen Chapen's description -facsimileTelephoneNumber: +1 213 835-9802 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 175-9112 -title: Associate Product Development Developer -userPassword: Password1 -uid: ChapenL -givenName: Loreen -mail: ChapenL@7bfc11514c5e4224a1e499acf9880451.bitwarden.com -carLicense: LYGIFK -departmentNumber: 7013 -employeeType: Contract -homePhone: +1 213 162-2469 -initials: L. C. -mobile: +1 213 358-6755 -pager: +1 213 615-4819 -roomNumber: 8284 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Loay Clairmont,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loay Clairmont -sn: Clairmont -description: This is Loay Clairmont's description -facsimileTelephoneNumber: +1 206 235-8608 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 206 568-1609 -title: Master Janitorial Pinhead -userPassword: Password1 -uid: ClairmoL -givenName: Loay -mail: ClairmoL@343f3e94452d4417ab72f456ef20099a.bitwarden.com -carLicense: DJOPM2 -departmentNumber: 5043 -employeeType: Normal -homePhone: +1 206 677-1553 -initials: L. C. -mobile: +1 206 463-8589 -pager: +1 206 941-1019 -roomNumber: 9958 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jagdev Eaton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jagdev Eaton -sn: Eaton -description: This is Jagdev Eaton's description -facsimileTelephoneNumber: +1 510 136-4709 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 892-8924 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: EatonJ -givenName: Jagdev -mail: EatonJ@56dc85c859e5439293a626149de045e1.bitwarden.com -carLicense: GAXHV8 -departmentNumber: 4796 -employeeType: Normal -homePhone: +1 510 983-9849 -initials: J. E. -mobile: +1 510 546-3717 -pager: +1 510 869-5122 -roomNumber: 9913 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vina Smothers,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vina Smothers -sn: Smothers -description: This is Vina Smothers's description -facsimileTelephoneNumber: +1 818 978-7526 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 601-7825 -title: Junior Product Development Stooge -userPassword: Password1 -uid: SmotherV -givenName: Vina -mail: SmotherV@22cb224a80984684b19d5e903a9e8f92.bitwarden.com -carLicense: JUX2I9 -departmentNumber: 7890 -employeeType: Contract -homePhone: +1 818 582-1075 -initials: V. S. -mobile: +1 818 360-5137 -pager: +1 818 487-5764 -roomNumber: 9915 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sultan Kalitzkus -sn: Kalitzkus -description: This is Sultan Kalitzkus's description -facsimileTelephoneNumber: +1 510 781-2979 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 429-8157 -title: Master Product Development Pinhead -userPassword: Password1 -uid: KalitzkS -givenName: Sultan -mail: KalitzkS@700cffdeffc944e3b104dbec36c347ba.bitwarden.com -carLicense: RHJML1 -departmentNumber: 7220 -employeeType: Normal -homePhone: +1 510 519-3406 -initials: S. K. -mobile: +1 510 419-7791 -pager: +1 510 223-1057 -roomNumber: 8326 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ravi Fontanini -sn: Fontanini -description: This is Ravi Fontanini's description -facsimileTelephoneNumber: +1 818 531-8489 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 858-6095 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: FontaniR -givenName: Ravi -mail: FontaniR@68267e214c7a487aa5678c0838a58e53.bitwarden.com -carLicense: Q3JATU -departmentNumber: 3869 -employeeType: Normal -homePhone: +1 818 190-5122 -initials: R. F. -mobile: +1 818 880-5840 -pager: +1 818 839-8617 -roomNumber: 8744 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Minerva Cuper,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minerva Cuper -sn: Cuper -description: This is Minerva Cuper's description -facsimileTelephoneNumber: +1 510 533-6235 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 213-3985 -title: Junior Payroll Visionary -userPassword: Password1 -uid: CuperM -givenName: Minerva -mail: CuperM@11006cb63c014ed78431f32c1edc2e50.bitwarden.com -carLicense: JD1CT6 -departmentNumber: 6482 -employeeType: Employee -homePhone: +1 510 231-5033 -initials: M. C. -mobile: +1 510 819-6329 -pager: +1 510 555-5266 -roomNumber: 9530 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lynette Cascarini,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynette Cascarini -sn: Cascarini -description: This is Lynette Cascarini's description -facsimileTelephoneNumber: +1 415 677-5106 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 585-9739 -title: Junior Product Development Mascot -userPassword: Password1 -uid: CascariL -givenName: Lynette -mail: CascariL@ac076ba79d124761ac4ec297033b1240.bitwarden.com -carLicense: 726Y1M -departmentNumber: 2869 -employeeType: Employee -homePhone: +1 415 921-1385 -initials: L. C. -mobile: +1 415 267-5403 -pager: +1 415 472-1668 -roomNumber: 8157 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lsi Loughran,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lsi Loughran -sn: Loughran -description: This is Lsi Loughran's description -facsimileTelephoneNumber: +1 804 545-5510 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 674-7398 -title: Junior Product Testing Punk -userPassword: Password1 -uid: LoughraL -givenName: Lsi -mail: LoughraL@8d3b1ae4e0a848b5802b107cdfc10b06.bitwarden.com -carLicense: VR6JQD -departmentNumber: 4582 -employeeType: Normal -homePhone: +1 804 982-7395 -initials: L. L. -mobile: +1 804 320-5826 -pager: +1 804 565-6265 -roomNumber: 8754 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cassandry Emmert,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassandry Emmert -sn: Emmert -description: This is Cassandry Emmert's description -facsimileTelephoneNumber: +1 206 835-6500 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 232-9580 -title: Chief Management Assistant -userPassword: Password1 -uid: EmmertC -givenName: Cassandry -mail: EmmertC@eaf942e23a8c4f86b819fb393327fb04.bitwarden.com -carLicense: Q678XO -departmentNumber: 8999 -employeeType: Employee -homePhone: +1 206 983-5029 -initials: C. E. -mobile: +1 206 783-9375 -pager: +1 206 461-7900 -roomNumber: 8181 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirstin Stephenson -sn: Stephenson -description: This is Kirstin Stephenson's description -facsimileTelephoneNumber: +1 818 847-9931 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 818 178-3157 -title: Associate Payroll Technician -userPassword: Password1 -uid: StephenK -givenName: Kirstin -mail: StephenK@98febd962501443b89a9e8bfacf12a9e.bitwarden.com -carLicense: 6JHIKX -departmentNumber: 5472 -employeeType: Employee -homePhone: +1 818 782-6669 -initials: K. S. -mobile: +1 818 459-1534 -pager: +1 818 598-1354 -roomNumber: 8343 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Minnesota Herzig,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minnesota Herzig -sn: Herzig -description: This is Minnesota Herzig's description -facsimileTelephoneNumber: +1 510 323-4007 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 510 493-9506 -title: Supreme Payroll Writer -userPassword: Password1 -uid: HerzigM -givenName: Minnesota -mail: HerzigM@84e0b1d8b0c84412a89683731e9fda1b.bitwarden.com -carLicense: XMU890 -departmentNumber: 2766 -employeeType: Employee -homePhone: +1 510 520-3502 -initials: M. H. -mobile: +1 510 570-3739 -pager: +1 510 446-1957 -roomNumber: 8165 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lauren Syrett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lauren Syrett -sn: Syrett -description: This is Lauren Syrett's description -facsimileTelephoneNumber: +1 818 671-2170 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 818 568-5692 -title: Junior Peons Mascot -userPassword: Password1 -uid: SyrettL -givenName: Lauren -mail: SyrettL@42ad681604354ebd8ba7299c92bab329.bitwarden.com -carLicense: 76OPG9 -departmentNumber: 8905 -employeeType: Contract -homePhone: +1 818 496-5172 -initials: L. S. -mobile: +1 818 738-9132 -pager: +1 818 381-9060 -roomNumber: 8900 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dyana Pennell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyana Pennell -sn: Pennell -description: This is Dyana Pennell's description -facsimileTelephoneNumber: +1 213 121-6565 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 167-8585 -title: Chief Janitorial Grunt -userPassword: Password1 -uid: PennellD -givenName: Dyana -mail: PennellD@0afc47bad19c46b99058f74e9901e6b0.bitwarden.com -carLicense: VGI0Y7 -departmentNumber: 7442 -employeeType: Contract -homePhone: +1 213 465-3563 -initials: D. P. -mobile: +1 213 506-9164 -pager: +1 213 452-4907 -roomNumber: 8309 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Camella IRCMARKET,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camella IRCMARKET -sn: IRCMARKET -description: This is Camella IRCMARKET's description -facsimileTelephoneNumber: +1 206 729-7221 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 520-7773 -title: Junior Peons Architect -userPassword: Password1 -uid: IRCMARKC -givenName: Camella -mail: IRCMARKC@8f8b16f7eeb64121b5894e2d12941301.bitwarden.com -carLicense: WV0A2O -departmentNumber: 5398 -employeeType: Contract -homePhone: +1 206 629-6276 -initials: C. I. -mobile: +1 206 785-1919 -pager: +1 206 430-2086 -roomNumber: 9239 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yvonne Goertzen -sn: Goertzen -description: This is Yvonne Goertzen's description -facsimileTelephoneNumber: +1 408 803-7019 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 504-3658 -title: Master Human Resources Janitor -userPassword: Password1 -uid: GoertzeY -givenName: Yvonne -mail: GoertzeY@f356862401984def8bd045192d245ee9.bitwarden.com -carLicense: PHAE4B -departmentNumber: 3017 -employeeType: Normal -homePhone: +1 408 480-3201 -initials: Y. G. -mobile: +1 408 523-2895 -pager: +1 408 269-4072 -roomNumber: 8949 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Doro Cottengim,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doro Cottengim -sn: Cottengim -description: This is Doro Cottengim's description -facsimileTelephoneNumber: +1 213 627-4728 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 590-3060 -title: Chief Peons Punk -userPassword: Password1 -uid: CottengD -givenName: Doro -mail: CottengD@c7cd8ed01ff4421e89b8fce69f567e72.bitwarden.com -carLicense: IT0TTA -departmentNumber: 6744 -employeeType: Employee -homePhone: +1 213 911-2675 -initials: D. C. -mobile: +1 213 132-7307 -pager: +1 213 133-9335 -roomNumber: 9727 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zorana Rodrigue -sn: Rodrigue -description: This is Zorana Rodrigue's description -facsimileTelephoneNumber: +1 206 572-7514 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 206 245-4724 -title: Supreme Janitorial Writer -userPassword: Password1 -uid: RodriguZ -givenName: Zorana -mail: RodriguZ@ea67abb740f54118a1219fbd4f51bc7f.bitwarden.com -carLicense: XY9HBJ -departmentNumber: 9596 -employeeType: Contract -homePhone: +1 206 831-4853 -initials: Z. R. -mobile: +1 206 366-1256 -pager: +1 206 345-7861 -roomNumber: 9406 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JinYun Gerlich -sn: Gerlich -description: This is JinYun Gerlich's description -facsimileTelephoneNumber: +1 510 863-6478 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 187-4873 -title: Associate Janitorial Evangelist -userPassword: Password1 -uid: GerlichJ -givenName: JinYun -mail: GerlichJ@c3692aa8bfcc4a689d45388238055ec4.bitwarden.com -carLicense: CJ40CQ -departmentNumber: 1944 -employeeType: Normal -homePhone: +1 510 558-6956 -initials: J. G. -mobile: +1 510 483-1333 -pager: +1 510 342-3912 -roomNumber: 9749 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nesta Bydeley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nesta Bydeley -sn: Bydeley -description: This is Nesta Bydeley's description -facsimileTelephoneNumber: +1 510 912-2123 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 760-6673 -title: Master Payroll Assistant -userPassword: Password1 -uid: BydeleyN -givenName: Nesta -mail: BydeleyN@592208e028cd436396db371d93b549f3.bitwarden.com -carLicense: PQ0RJ1 -departmentNumber: 4877 -employeeType: Employee -homePhone: +1 510 532-1964 -initials: N. B. -mobile: +1 510 982-6392 -pager: +1 510 219-4190 -roomNumber: 8857 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yogesh Meckley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yogesh Meckley -sn: Meckley -description: This is Yogesh Meckley's description -facsimileTelephoneNumber: +1 510 735-7268 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 159-8145 -title: Supreme Peons Assistant -userPassword: Password1 -uid: MeckleyY -givenName: Yogesh -mail: MeckleyY@ceb12762ef0641af91eccdee76fe34c8.bitwarden.com -carLicense: L9P8XM -departmentNumber: 4612 -employeeType: Normal -homePhone: +1 510 543-4078 -initials: Y. M. -mobile: +1 510 109-2473 -pager: +1 510 816-7182 -roomNumber: 9869 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheileagh Llaguno -sn: Llaguno -description: This is Sheileagh Llaguno's description -facsimileTelephoneNumber: +1 804 100-5550 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 804 564-7383 -title: Master Administrative Writer -userPassword: Password1 -uid: LlagunoS -givenName: Sheileagh -mail: LlagunoS@7391a6d3d59e40cd941b74d4ab20cfad.bitwarden.com -carLicense: KXE34J -departmentNumber: 5645 -employeeType: Contract -homePhone: +1 804 404-2559 -initials: S. L. -mobile: +1 804 427-5253 -pager: +1 804 213-2119 -roomNumber: 8853 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ailene Challice,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailene Challice -sn: Challice -description: This is Ailene Challice's description -facsimileTelephoneNumber: +1 818 191-1282 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 459-6242 -title: Junior Payroll Technician -userPassword: Password1 -uid: ChallicA -givenName: Ailene -mail: ChallicA@67d3a8519ac14347aeb58946a31a1f50.bitwarden.com -carLicense: 5U2FSE -departmentNumber: 3591 -employeeType: Contract -homePhone: +1 818 183-9960 -initials: A. C. -mobile: +1 818 872-1969 -pager: +1 818 974-6912 -roomNumber: 9465 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Viola Hately,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viola Hately -sn: Hately -description: This is Viola Hately's description -facsimileTelephoneNumber: +1 510 910-2634 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 817-4192 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: HatelyV -givenName: Viola -mail: HatelyV@fad4df468b1843c3916d4ae2eb3ff3a0.bitwarden.com -carLicense: 3QGA43 -departmentNumber: 2885 -employeeType: Contract -homePhone: +1 510 575-6505 -initials: V. H. -mobile: +1 510 453-1984 -pager: +1 510 242-1635 -roomNumber: 8031 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shunro Singer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shunro Singer -sn: Singer -description: This is Shunro Singer's description -facsimileTelephoneNumber: +1 408 264-6573 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 205-8031 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: SingerS -givenName: Shunro -mail: SingerS@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com -carLicense: 8F0CX6 -departmentNumber: 9064 -employeeType: Contract -homePhone: +1 408 261-2792 -initials: S. S. -mobile: +1 408 407-3512 -pager: +1 408 259-5414 -roomNumber: 9180 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chitra McAleer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chitra McAleer -sn: McAleer -description: This is Chitra McAleer's description -facsimileTelephoneNumber: +1 415 315-1814 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 423-6722 -title: Master Product Testing Dictator -userPassword: Password1 -uid: McAleerC -givenName: Chitra -mail: McAleerC@613949922305449dab3107a6d150066b.bitwarden.com -carLicense: 8MYEEA -departmentNumber: 9065 -employeeType: Normal -homePhone: +1 415 798-3729 -initials: C. M. -mobile: +1 415 716-2515 -pager: +1 415 618-8659 -roomNumber: 9135 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jay Biage,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jay Biage -sn: Biage -description: This is Jay Biage's description -facsimileTelephoneNumber: +1 408 189-4235 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 180-7097 -title: Associate Payroll Artist -userPassword: Password1 -uid: BiageJ -givenName: Jay -mail: BiageJ@908e2f7daa5c4f539482241df20bc43f.bitwarden.com -carLicense: F3S8EM -departmentNumber: 7781 -employeeType: Normal -homePhone: +1 408 966-1582 -initials: J. B. -mobile: +1 408 173-5411 -pager: +1 408 931-6770 -roomNumber: 9039 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Faydra Kandra,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faydra Kandra -sn: Kandra -description: This is Faydra Kandra's description -facsimileTelephoneNumber: +1 206 910-9606 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 254-9368 -title: Master Administrative Czar -userPassword: Password1 -uid: KandraF -givenName: Faydra -mail: KandraF@2fd47af450d743418108699823631680.bitwarden.com -carLicense: MA2ED0 -departmentNumber: 6400 -employeeType: Normal -homePhone: +1 206 836-3818 -initials: F. K. -mobile: +1 206 212-7622 -pager: +1 206 343-1851 -roomNumber: 8927 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shandee Safah,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shandee Safah -sn: Safah -description: This is Shandee Safah's description -facsimileTelephoneNumber: +1 408 769-9140 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 825-1986 -title: Master Product Testing Director -userPassword: Password1 -uid: SafahS -givenName: Shandee -mail: SafahS@375d13357cc946b587c8f99d2269c9f7.bitwarden.com -carLicense: K94ER9 -departmentNumber: 1381 -employeeType: Employee -homePhone: +1 408 716-4331 -initials: S. S. -mobile: +1 408 190-5613 -pager: +1 408 614-9210 -roomNumber: 8094 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gen Marano,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gen Marano -sn: Marano -description: This is Gen Marano's description -facsimileTelephoneNumber: +1 408 227-6513 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 431-8804 -title: Associate Payroll Vice President -userPassword: Password1 -uid: MaranoG -givenName: Gen -mail: MaranoG@89e33259b1f341dda582db87064be4b8.bitwarden.com -carLicense: 2YK8TX -departmentNumber: 2653 -employeeType: Employee -homePhone: +1 408 473-5691 -initials: G. M. -mobile: +1 408 651-4379 -pager: +1 408 413-2587 -roomNumber: 9314 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bettina Spinelli,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettina Spinelli -sn: Spinelli -description: This is Bettina Spinelli's description -facsimileTelephoneNumber: +1 408 375-7970 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 353-8773 -title: Chief Management Fellow -userPassword: Password1 -uid: SpinellB -givenName: Bettina -mail: SpinellB@e77a72af01c44ce88f609078a4d8d2a3.bitwarden.com -carLicense: QB8DHK -departmentNumber: 9362 -employeeType: Normal -homePhone: +1 408 406-2488 -initials: B. S. -mobile: +1 408 370-7167 -pager: +1 408 804-9331 -roomNumber: 8060 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mureil Vish,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mureil Vish -sn: Vish -description: This is Mureil Vish's description -facsimileTelephoneNumber: +1 818 548-7658 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 559-2781 -title: Junior Administrative Stooge -userPassword: Password1 -uid: VishM -givenName: Mureil -mail: VishM@47b62883b41b47caaa90c87545926566.bitwarden.com -carLicense: HEN2GM -departmentNumber: 9395 -employeeType: Employee -homePhone: +1 818 922-8086 -initials: M. V. -mobile: +1 818 634-4497 -pager: +1 818 420-3665 -roomNumber: 8566 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alane Carlisle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alane Carlisle -sn: Carlisle -description: This is Alane Carlisle's description -facsimileTelephoneNumber: +1 804 665-2051 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 378-8177 -title: Associate Management Assistant -userPassword: Password1 -uid: CarlislA -givenName: Alane -mail: CarlislA@c5dc40d5940e458ab33ccb9687a6e9df.bitwarden.com -carLicense: PNM526 -departmentNumber: 5349 -employeeType: Employee -homePhone: +1 804 123-6132 -initials: A. C. -mobile: +1 804 313-9644 -pager: +1 804 482-7695 -roomNumber: 8607 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sayre Paulett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sayre Paulett -sn: Paulett -description: This is Sayre Paulett's description -facsimileTelephoneNumber: +1 408 281-8470 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 692-7929 -title: Junior Management Pinhead -userPassword: Password1 -uid: PaulettS -givenName: Sayre -mail: PaulettS@f2946785e86743e2aa3ad5ba0ef200dd.bitwarden.com -carLicense: NNVOSU -departmentNumber: 6459 -employeeType: Contract -homePhone: +1 408 652-3922 -initials: S. P. -mobile: +1 408 867-8463 -pager: +1 408 661-2751 -roomNumber: 9746 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassandra Sasson -sn: Sasson -description: This is Cassandra Sasson's description -facsimileTelephoneNumber: +1 818 900-4459 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 429-7108 -title: Chief Human Resources Punk -userPassword: Password1 -uid: SassonC -givenName: Cassandra -mail: SassonC@76601b52ef094fb1a584255928f2a86b.bitwarden.com -carLicense: 2A73AA -departmentNumber: 4021 -employeeType: Contract -homePhone: +1 818 157-6823 -initials: C. S. -mobile: +1 818 176-1893 -pager: +1 818 914-7537 -roomNumber: 9897 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ambur Fernandez,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ambur Fernandez -sn: Fernandez -description: This is Ambur Fernandez's description -facsimileTelephoneNumber: +1 415 614-8668 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 260-1058 -title: Master Peons Punk -userPassword: Password1 -uid: FernandA -givenName: Ambur -mail: FernandA@d05ffeea80b94ea6b929bf19bf3cb1d7.bitwarden.com -carLicense: U6LBO9 -departmentNumber: 5604 -employeeType: Normal -homePhone: +1 415 888-2880 -initials: A. F. -mobile: +1 415 374-9208 -pager: +1 415 120-3388 -roomNumber: 9280 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carlye Puelma,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlye Puelma -sn: Puelma -description: This is Carlye Puelma's description -facsimileTelephoneNumber: +1 213 997-5122 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 499-6170 -title: Junior Management Mascot -userPassword: Password1 -uid: PuelmaC -givenName: Carlye -mail: PuelmaC@3918530762a64e8db535b65dcc80cbce.bitwarden.com -carLicense: YSV83S -departmentNumber: 9454 -employeeType: Employee -homePhone: +1 213 676-2373 -initials: C. P. -mobile: +1 213 732-4899 -pager: +1 213 490-8656 -roomNumber: 9521 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eleonore Edwige,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eleonore Edwige -sn: Edwige -description: This is Eleonore Edwige's description -facsimileTelephoneNumber: +1 408 923-4370 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 513-4791 -title: Chief Administrative Czar -userPassword: Password1 -uid: EdwigeE -givenName: Eleonore -mail: EdwigeE@3358f35c8d4144d59100e666ebc7914f.bitwarden.com -carLicense: C7F5RM -departmentNumber: 7399 -employeeType: Normal -homePhone: +1 408 861-3232 -initials: E. E. -mobile: +1 408 718-7374 -pager: +1 408 466-3780 -roomNumber: 9836 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yoshi Neustifter,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoshi Neustifter -sn: Neustifter -description: This is Yoshi Neustifter's description -facsimileTelephoneNumber: +1 408 544-7917 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 511-9894 -title: Junior Management Admin -userPassword: Password1 -uid: NeustifY -givenName: Yoshi -mail: NeustifY@21bcebc879234832b21c9a4bda0b84ca.bitwarden.com -carLicense: KVQ1S4 -departmentNumber: 2013 -employeeType: Contract -homePhone: +1 408 792-3534 -initials: Y. N. -mobile: +1 408 461-8534 -pager: +1 408 905-3442 -roomNumber: 8515 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Varennes Kapuscinski -sn: Kapuscinski -description: This is Varennes Kapuscinski's description -facsimileTelephoneNumber: +1 818 654-4509 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 645-3992 -title: Master Product Development Writer -userPassword: Password1 -uid: KapusciV -givenName: Varennes -mail: KapusciV@148b0748cafd4655898b3cdac38d15c1.bitwarden.com -carLicense: 1PQKR8 -departmentNumber: 8019 -employeeType: Contract -homePhone: +1 818 100-7892 -initials: V. K. -mobile: +1 818 988-4059 -pager: +1 818 692-4738 -roomNumber: 9726 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bernd Ribakovs,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernd Ribakovs -sn: Ribakovs -description: This is Bernd Ribakovs's description -facsimileTelephoneNumber: +1 206 638-4803 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 643-7257 -title: Junior Peons Engineer -userPassword: Password1 -uid: RibakovB -givenName: Bernd -mail: RibakovB@5c3854c0e45246a0b3fb22153a7146d3.bitwarden.com -carLicense: RSBQTQ -departmentNumber: 7017 -employeeType: Employee -homePhone: +1 206 336-3224 -initials: B. R. -mobile: +1 206 664-1408 -pager: +1 206 391-7391 -roomNumber: 9778 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ralph Taylor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ralph Taylor -sn: Taylor -description: This is Ralph Taylor's description -facsimileTelephoneNumber: +1 415 661-3269 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 441-6019 -title: Master Management Czar -userPassword: Password1 -uid: TaylorR -givenName: Ralph -mail: TaylorR@df91f02938d046d8adb3f260f0e722ef.bitwarden.com -carLicense: KM63HH -departmentNumber: 1982 -employeeType: Employee -homePhone: +1 415 888-4524 -initials: R. T. -mobile: +1 415 230-7562 -pager: +1 415 665-1442 -roomNumber: 9113 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Baldev Annab,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baldev Annab -sn: Annab -description: This is Baldev Annab's description -facsimileTelephoneNumber: +1 206 471-7271 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 206 140-4489 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: AnnabB -givenName: Baldev -mail: AnnabB@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com -carLicense: IBWXFR -departmentNumber: 9841 -employeeType: Contract -homePhone: +1 206 744-1454 -initials: B. A. -mobile: +1 206 307-7714 -pager: +1 206 180-8662 -roomNumber: 9668 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Me Cuany,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Me Cuany -sn: Cuany -description: This is Me Cuany's description -facsimileTelephoneNumber: +1 213 702-4209 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 213 574-6882 -title: Junior Janitorial Punk -userPassword: Password1 -uid: CuanyM -givenName: Me -mail: CuanyM@77f895f70886481eae5a63f9a86f7856.bitwarden.com -carLicense: 76UOOY -departmentNumber: 1917 -employeeType: Contract -homePhone: +1 213 574-5973 -initials: M. C. -mobile: +1 213 517-2376 -pager: +1 213 316-5344 -roomNumber: 9817 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Neville Doble,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neville Doble -sn: Doble -description: This is Neville Doble's description -facsimileTelephoneNumber: +1 415 833-4796 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 572-4438 -title: Master Product Testing Visionary -userPassword: Password1 -uid: DobleN -givenName: Neville -mail: DobleN@79d5277aef56406eb7a48c1a74d35976.bitwarden.com -carLicense: 9RM458 -departmentNumber: 8779 -employeeType: Normal -homePhone: +1 415 621-3510 -initials: N. D. -mobile: +1 415 452-3590 -pager: +1 415 568-5060 -roomNumber: 8473 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alidia Banens,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alidia Banens -sn: Banens -description: This is Alidia Banens's description -facsimileTelephoneNumber: +1 408 908-2540 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 408 923-3158 -title: Chief Administrative President -userPassword: Password1 -uid: BanensA -givenName: Alidia -mail: BanensA@ff6113da300b4b2aa7ff3a66734b4954.bitwarden.com -carLicense: WAU6Q1 -departmentNumber: 3199 -employeeType: Contract -homePhone: +1 408 968-4905 -initials: A. B. -mobile: +1 408 213-6292 -pager: +1 408 533-3145 -roomNumber: 9370 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hans Fahey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hans Fahey -sn: Fahey -description: This is Hans Fahey's description -facsimileTelephoneNumber: +1 213 415-6091 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 197-8432 -title: Chief Peons Grunt -userPassword: Password1 -uid: FaheyH -givenName: Hans -mail: FaheyH@9e0bdc0fb08d44118d9ae7567498b80c.bitwarden.com -carLicense: 9FNG2Y -departmentNumber: 5047 -employeeType: Normal -homePhone: +1 213 524-9359 -initials: H. F. -mobile: +1 213 727-4794 -pager: +1 213 215-7954 -roomNumber: 8976 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Luce Piper,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luce Piper -sn: Piper -description: This is Luce Piper's description -facsimileTelephoneNumber: +1 206 761-4773 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 140-7286 -title: Supreme Product Testing Director -userPassword: Password1 -uid: PiperL -givenName: Luce -mail: PiperL@1ef06389f2a545358cb76b8f3247552d.bitwarden.com -carLicense: 98NE7C -departmentNumber: 6633 -employeeType: Employee -homePhone: +1 206 749-3650 -initials: L. P. -mobile: +1 206 908-8950 -pager: +1 206 424-6211 -roomNumber: 8103 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maible Adamo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maible Adamo -sn: Adamo -description: This is Maible Adamo's description -facsimileTelephoneNumber: +1 213 903-1702 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 605-5418 -title: Junior Administrative Assistant -userPassword: Password1 -uid: AdamoM -givenName: Maible -mail: AdamoM@2514efb598094878a84945e42222f037.bitwarden.com -carLicense: 6GA65Q -departmentNumber: 1819 -employeeType: Employee -homePhone: +1 213 209-2874 -initials: M. A. -mobile: +1 213 588-8449 -pager: +1 213 593-7122 -roomNumber: 9222 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aartjan Brodersen -sn: Brodersen -description: This is Aartjan Brodersen's description -facsimileTelephoneNumber: +1 408 305-4136 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 309-1407 -title: Junior Product Testing Dictator -userPassword: Password1 -uid: BrodersA -givenName: Aartjan -mail: BrodersA@59ed31e1416a44f38102361f5e901aec.bitwarden.com -carLicense: BRXVUF -departmentNumber: 6569 -employeeType: Normal -homePhone: +1 408 617-8809 -initials: A. B. -mobile: +1 408 912-8909 -pager: +1 408 491-9725 -roomNumber: 8162 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fastmer Montreal -sn: Montreal -description: This is Fastmer Montreal's description -facsimileTelephoneNumber: +1 213 330-1247 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 768-2567 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: MontreaF -givenName: Fastmer -mail: MontreaF@9e2b20abc536451c80331d81dc08fb80.bitwarden.com -carLicense: DGVL6I -departmentNumber: 6255 -employeeType: Normal -homePhone: +1 213 651-7943 -initials: F. M. -mobile: +1 213 940-2994 -pager: +1 213 829-8646 -roomNumber: 9052 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leny Husarewych,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leny Husarewych -sn: Husarewych -description: This is Leny Husarewych's description -facsimileTelephoneNumber: +1 408 773-4042 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 691-1940 -title: Associate Management Architect -userPassword: Password1 -uid: HusarewL -givenName: Leny -mail: HusarewL@fd7f1413c0914fd9966db7121e375108.bitwarden.com -carLicense: S7H3WF -departmentNumber: 6880 -employeeType: Contract -homePhone: +1 408 445-2853 -initials: L. H. -mobile: +1 408 120-3235 -pager: +1 408 676-2732 -roomNumber: 9151 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gerald Bijjani,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerald Bijjani -sn: Bijjani -description: This is Gerald Bijjani's description -facsimileTelephoneNumber: +1 804 298-4374 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 899-8766 -title: Junior Peons Warrior -userPassword: Password1 -uid: BijjaniG -givenName: Gerald -mail: BijjaniG@648da49b32e0468cbaab8b6990a6bcd7.bitwarden.com -carLicense: UY83DR -departmentNumber: 6424 -employeeType: Contract -homePhone: +1 804 437-5743 -initials: G. B. -mobile: +1 804 421-6394 -pager: +1 804 588-9334 -roomNumber: 8009 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maint Olivares,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maint Olivares -sn: Olivares -description: This is Maint Olivares's description -facsimileTelephoneNumber: +1 818 873-9885 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 818 619-3888 -title: Master Administrative Assistant -userPassword: Password1 -uid: OlivareM -givenName: Maint -mail: OlivareM@3a6431b2f04c4152b1a57322f60c8410.bitwarden.com -carLicense: L1O5T3 -departmentNumber: 7751 -employeeType: Normal -homePhone: +1 818 434-1011 -initials: M. O. -mobile: +1 818 955-4722 -pager: +1 818 807-9220 -roomNumber: 8724 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bnrecad Higuchi -sn: Higuchi -description: This is Bnrecad Higuchi's description -facsimileTelephoneNumber: +1 408 308-8488 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 814-6238 -title: Supreme Janitorial Artist -userPassword: Password1 -uid: HiguchiB -givenName: Bnrecad -mail: HiguchiB@420d170835a74668b7399e0614ecc1a6.bitwarden.com -carLicense: 2TRWJI -departmentNumber: 9845 -employeeType: Contract -homePhone: +1 408 942-8031 -initials: B. H. -mobile: +1 408 967-7349 -pager: +1 408 984-6054 -roomNumber: 9362 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Arturo Groves,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arturo Groves -sn: Groves -description: This is Arturo Groves's description -facsimileTelephoneNumber: +1 213 852-7286 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 560-2634 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: GrovesA -givenName: Arturo -mail: GrovesA@61d7f2e9441545fa8ba2dcce7dd5448a.bitwarden.com -carLicense: 4JHJAU -departmentNumber: 1521 -employeeType: Contract -homePhone: +1 213 482-5196 -initials: A. G. -mobile: +1 213 516-5748 -pager: +1 213 592-5536 -roomNumber: 9614 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ho Rolnick,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ho Rolnick -sn: Rolnick -description: This is Ho Rolnick's description -facsimileTelephoneNumber: +1 206 981-5966 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 155-6700 -title: Junior Administrative Punk -userPassword: Password1 -uid: RolnickH -givenName: Ho -mail: RolnickH@8819cc07e7b545c38dcf521aa22a7f85.bitwarden.com -carLicense: G4WK8U -departmentNumber: 2250 -employeeType: Normal -homePhone: +1 206 169-9795 -initials: H. R. -mobile: +1 206 787-6107 -pager: +1 206 682-3566 -roomNumber: 8932 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Erning Lingafelter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erning Lingafelter -sn: Lingafelter -description: This is Erning Lingafelter's description -facsimileTelephoneNumber: +1 415 818-7972 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 324-2690 -title: Chief Product Development Architect -userPassword: Password1 -uid: LingafeE -givenName: Erning -mail: LingafeE@19f0b3104cc549c5972e2013b118e2bf.bitwarden.com -carLicense: VEL621 -departmentNumber: 5435 -employeeType: Employee -homePhone: +1 415 804-2286 -initials: E. L. -mobile: +1 415 479-6527 -pager: +1 415 133-4173 -roomNumber: 9795 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alanah Wolff,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alanah Wolff -sn: Wolff -description: This is Alanah Wolff's description -facsimileTelephoneNumber: +1 510 610-8451 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 219-8149 -title: Master Janitorial Czar -userPassword: Password1 -uid: WolffA -givenName: Alanah -mail: WolffA@8068d857ca8d45118464c596ca9f4192.bitwarden.com -carLicense: K75Y5T -departmentNumber: 9269 -employeeType: Contract -homePhone: +1 510 332-3660 -initials: A. W. -mobile: +1 510 322-8244 -pager: +1 510 500-4646 -roomNumber: 9670 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Corrianne Hughson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corrianne Hughson -sn: Hughson -description: This is Corrianne Hughson's description -facsimileTelephoneNumber: +1 408 476-6209 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 696-9151 -title: Junior Payroll Writer -userPassword: Password1 -uid: HughsonC -givenName: Corrianne -mail: HughsonC@ec27ad8054ec49e6b80dae8c88335049.bitwarden.com -carLicense: 9M7WPB -departmentNumber: 7274 -employeeType: Employee -homePhone: +1 408 430-8193 -initials: C. H. -mobile: +1 408 725-3725 -pager: +1 408 290-3457 -roomNumber: 9708 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Wallis Grubbs,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wallis Grubbs -sn: Grubbs -description: This is Wallis Grubbs's description -facsimileTelephoneNumber: +1 408 800-8471 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 230-5536 -title: Chief Management Evangelist -userPassword: Password1 -uid: GrubbsW -givenName: Wallis -mail: GrubbsW@c322a60d3bf04197a05d614b3aca2643.bitwarden.com -carLicense: 942PXL -departmentNumber: 8961 -employeeType: Normal -homePhone: +1 408 143-7439 -initials: W. G. -mobile: +1 408 243-9622 -pager: +1 408 583-3640 -roomNumber: 9827 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eran Sziladi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eran Sziladi -sn: Sziladi -description: This is Eran Sziladi's description -facsimileTelephoneNumber: +1 206 879-3810 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 582-7813 -title: Chief Payroll Developer -userPassword: Password1 -uid: SziladiE -givenName: Eran -mail: SziladiE@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com -carLicense: 8YQLMV -departmentNumber: 2617 -employeeType: Normal -homePhone: +1 206 479-2218 -initials: E. S. -mobile: +1 206 131-2647 -pager: +1 206 429-7913 -roomNumber: 8462 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Joji Cassar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joji Cassar -sn: Cassar -description: This is Joji Cassar's description -facsimileTelephoneNumber: +1 213 509-7153 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 632-7648 -title: Associate Product Development Admin -userPassword: Password1 -uid: CassarJ -givenName: Joji -mail: CassarJ@d06dcad3fe8b46a4aa1b3d7dd28ff6b8.bitwarden.com -carLicense: TJWGXJ -departmentNumber: 6893 -employeeType: Contract -homePhone: +1 213 921-1751 -initials: J. C. -mobile: +1 213 796-1967 -pager: +1 213 893-5037 -roomNumber: 8762 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sunil Brisebois,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sunil Brisebois -sn: Brisebois -description: This is Sunil Brisebois's description -facsimileTelephoneNumber: +1 213 128-1546 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 709-8718 -title: Chief Payroll Visionary -userPassword: Password1 -uid: BriseboS -givenName: Sunil -mail: BriseboS@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com -carLicense: 01PN60 -departmentNumber: 4567 -employeeType: Contract -homePhone: +1 213 839-3180 -initials: S. B. -mobile: +1 213 366-9095 -pager: +1 213 193-3704 -roomNumber: 8481 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Otha Dee,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Otha Dee -sn: Dee -description: This is Otha Dee's description -facsimileTelephoneNumber: +1 206 550-7482 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 412-3059 -title: Junior Peons Fellow -userPassword: Password1 -uid: DeeO -givenName: Otha -mail: DeeO@a34bb7d1546c462cb51396798bb22845.bitwarden.com -carLicense: Q9WC2O -departmentNumber: 7179 -employeeType: Contract -homePhone: +1 206 610-8931 -initials: O. D. -mobile: +1 206 341-8929 -pager: +1 206 491-3937 -roomNumber: 8869 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dyane Hungle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyane Hungle -sn: Hungle -description: This is Dyane Hungle's description -facsimileTelephoneNumber: +1 415 735-8832 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 881-3140 -title: Master Janitorial President -userPassword: Password1 -uid: HungleD -givenName: Dyane -mail: HungleD@4893d9d0765d4728aa63d94ce3265f28.bitwarden.com -carLicense: VFE81Q -departmentNumber: 4241 -employeeType: Employee -homePhone: +1 415 861-7927 -initials: D. H. -mobile: +1 415 360-9129 -pager: +1 415 943-3473 -roomNumber: 8874 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marlane Mitchell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlane Mitchell -sn: Mitchell -description: This is Marlane Mitchell's description -facsimileTelephoneNumber: +1 408 114-2227 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 664-5995 -title: Junior Product Development Writer -userPassword: Password1 -uid: MitchelM -givenName: Marlane -mail: MitchelM@77df1d4a30ab443892398806ba3c7576.bitwarden.com -carLicense: WQP8FR -departmentNumber: 8461 -employeeType: Contract -homePhone: +1 408 172-8689 -initials: M. M. -mobile: +1 408 221-4147 -pager: +1 408 722-3759 -roomNumber: 8949 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linnea Bulkovshteyn -sn: Bulkovshteyn -description: This is Linnea Bulkovshteyn's description -facsimileTelephoneNumber: +1 510 821-7603 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 936-6976 -title: Associate Human Resources Technician -userPassword: Password1 -uid: BulkovsL -givenName: Linnea -mail: BulkovsL@94747c09a3194eba8b7d52262cebca45.bitwarden.com -carLicense: TK5HVT -departmentNumber: 4134 -employeeType: Normal -homePhone: +1 510 998-1270 -initials: L. B. -mobile: +1 510 548-6382 -pager: +1 510 771-4480 -roomNumber: 8070 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Belva Knighten,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belva Knighten -sn: Knighten -description: This is Belva Knighten's description -facsimileTelephoneNumber: +1 408 270-8175 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 547-7261 -title: Junior Administrative Engineer -userPassword: Password1 -uid: KnighteB -givenName: Belva -mail: KnighteB@285b0b0b23104ddebe5d6348304a4148.bitwarden.com -carLicense: VS6MK2 -departmentNumber: 7926 -employeeType: Employee -homePhone: +1 408 513-7743 -initials: B. K. -mobile: +1 408 586-1563 -pager: +1 408 357-6959 -roomNumber: 9108 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claudie Oesterreicher -sn: Oesterreicher -description: This is Claudie Oesterreicher's description -facsimileTelephoneNumber: +1 804 911-2003 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 833-4023 -title: Supreme Payroll Architect -userPassword: Password1 -uid: OesterrC -givenName: Claudie -mail: OesterrC@8a9079e17fc440a78f208b233e58c2df.bitwarden.com -carLicense: UG46W7 -departmentNumber: 2592 -employeeType: Contract -homePhone: +1 804 870-6054 -initials: C. O. -mobile: +1 804 508-9684 -pager: +1 804 389-4647 -roomNumber: 9246 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xylina Iacovo -sn: Iacovo -description: This is Xylina Iacovo's description -facsimileTelephoneNumber: +1 510 399-2109 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 616-4618 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: IacovoX -givenName: Xylina -mail: IacovoX@98315d8e8bc34b77b08ac74a18e3be73.bitwarden.com -carLicense: 69MRUJ -departmentNumber: 4943 -employeeType: Normal -homePhone: +1 510 918-7583 -initials: X. I. -mobile: +1 510 725-7458 -pager: +1 510 559-9280 -roomNumber: 9261 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shahriar Upchurch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shahriar Upchurch -sn: Upchurch -description: This is Shahriar Upchurch's description -facsimileTelephoneNumber: +1 408 316-4406 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 434-7109 -title: Master Management Admin -userPassword: Password1 -uid: UpchurcS -givenName: Shahriar -mail: UpchurcS@35c01be12949443b81c64e5b90fceee5.bitwarden.com -carLicense: U70O57 -departmentNumber: 3211 -employeeType: Contract -homePhone: +1 408 110-6622 -initials: S. U. -mobile: +1 408 117-9377 -pager: +1 408 645-7612 -roomNumber: 8249 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Blaire Hr,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blaire Hr -sn: Hr -description: This is Blaire Hr's description -facsimileTelephoneNumber: +1 213 227-4931 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 100-7193 -title: Associate Product Development Grunt -userPassword: Password1 -uid: HrB -givenName: Blaire -mail: HrB@e52685d2fb89476596028e80c714ec4f.bitwarden.com -carLicense: WEYVU2 -departmentNumber: 3190 -employeeType: Normal -homePhone: +1 213 828-1127 -initials: B. H. -mobile: +1 213 408-5530 -pager: +1 213 498-9702 -roomNumber: 8968 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosaleen Hudecek -sn: Hudecek -description: This is Rosaleen Hudecek's description -facsimileTelephoneNumber: +1 206 454-9316 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 728-2810 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: HudecekR -givenName: Rosaleen -mail: HudecekR@783a0de8a8e24bc7b467cd3312aa159b.bitwarden.com -carLicense: OT9LLY -departmentNumber: 7830 -employeeType: Normal -homePhone: +1 206 263-2042 -initials: R. H. -mobile: +1 206 778-6934 -pager: +1 206 153-4879 -roomNumber: 9134 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Idalia Batura,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idalia Batura -sn: Batura -description: This is Idalia Batura's description -facsimileTelephoneNumber: +1 804 208-2803 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 432-4269 -title: Associate Human Resources Artist -userPassword: Password1 -uid: BaturaI -givenName: Idalia -mail: BaturaI@29c7ef7aeb474d4781eb49a7f52e61db.bitwarden.com -carLicense: Y0A7P7 -departmentNumber: 8871 -employeeType: Employee -homePhone: +1 804 119-4327 -initials: I. B. -mobile: +1 804 417-8053 -pager: +1 804 132-2778 -roomNumber: 8929 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bachittar Reneau,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bachittar Reneau -sn: Reneau -description: This is Bachittar Reneau's description -facsimileTelephoneNumber: +1 415 658-1728 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 773-3238 -title: Associate Management Sales Rep -userPassword: Password1 -uid: ReneauB -givenName: Bachittar -mail: ReneauB@94a04369a1f7454aa0b8a26e89e03c22.bitwarden.com -carLicense: XSSS60 -departmentNumber: 3906 -employeeType: Normal -homePhone: +1 415 581-7458 -initials: B. R. -mobile: +1 415 527-1834 -pager: +1 415 763-8211 -roomNumber: 8586 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Inger Oshiro,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inger Oshiro -sn: Oshiro -description: This is Inger Oshiro's description -facsimileTelephoneNumber: +1 804 801-4559 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 400-2839 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: OshiroI -givenName: Inger -mail: OshiroI@a8e37e10b84947b0991df30bd3cb9d8c.bitwarden.com -carLicense: FAGA4F -departmentNumber: 6375 -employeeType: Normal -homePhone: +1 804 489-6917 -initials: I. O. -mobile: +1 804 240-7913 -pager: +1 804 143-8994 -roomNumber: 9057 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sharline Chester,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharline Chester -sn: Chester -description: This is Sharline Chester's description -facsimileTelephoneNumber: +1 206 444-2403 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 704-3630 -title: Associate Payroll Pinhead -userPassword: Password1 -uid: ChesterS -givenName: Sharline -mail: ChesterS@733a0ed9ca244d1a87001be1b9e9514d.bitwarden.com -carLicense: 3DKRUL -departmentNumber: 9487 -employeeType: Contract -homePhone: +1 206 958-7098 -initials: S. C. -mobile: +1 206 404-4421 -pager: +1 206 785-1108 -roomNumber: 8792 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Glynn Surreau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glynn Surreau -sn: Surreau -description: This is Glynn Surreau's description -facsimileTelephoneNumber: +1 408 739-4323 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 170-9516 -title: Associate Peons Director -userPassword: Password1 -uid: SurreauG -givenName: Glynn -mail: SurreauG@9ba1788c88514e3e9788f75280ccf6c3.bitwarden.com -carLicense: LSG0PG -departmentNumber: 2754 -employeeType: Employee -homePhone: +1 408 255-7210 -initials: G. S. -mobile: +1 408 266-1260 -pager: +1 408 468-9319 -roomNumber: 8638 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hatti Griffiths,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hatti Griffiths -sn: Griffiths -description: This is Hatti Griffiths's description -facsimileTelephoneNumber: +1 510 576-6220 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 292-9639 -title: Junior Payroll Consultant -userPassword: Password1 -uid: GriffitH -givenName: Hatti -mail: GriffitH@ae52dcada2674f68a76a2c619d85f261.bitwarden.com -carLicense: Q9RXB4 -departmentNumber: 1771 -employeeType: Employee -homePhone: +1 510 237-3079 -initials: H. G. -mobile: +1 510 655-2938 -pager: +1 510 370-1602 -roomNumber: 9962 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gudrun Robson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gudrun Robson -sn: Robson -description: This is Gudrun Robson's description -facsimileTelephoneNumber: +1 415 769-3838 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 302-5827 -title: Junior Human Resources Sales Rep -userPassword: Password1 -uid: RobsonG -givenName: Gudrun -mail: RobsonG@dba7b5909e924eeda080d597d190e631.bitwarden.com -carLicense: UARKIF -departmentNumber: 7692 -employeeType: Contract -homePhone: +1 415 107-7042 -initials: G. R. -mobile: +1 415 359-2464 -pager: +1 415 960-8374 -roomNumber: 8510 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sati Hallett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sati Hallett -sn: Hallett -description: This is Sati Hallett's description -facsimileTelephoneNumber: +1 206 370-4254 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 831-4033 -title: Master Management President -userPassword: Password1 -uid: HallettS -givenName: Sati -mail: HallettS@58d046473fe24d0d8bf6f510239a1102.bitwarden.com -carLicense: 1VA1AH -departmentNumber: 4462 -employeeType: Contract -homePhone: +1 206 701-6272 -initials: S. H. -mobile: +1 206 129-9074 -pager: +1 206 484-4777 -roomNumber: 9770 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lotty Flansburg,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lotty Flansburg -sn: Flansburg -description: This is Lotty Flansburg's description -facsimileTelephoneNumber: +1 206 408-1619 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 632-3247 -title: Associate Payroll Czar -userPassword: Password1 -uid: FlansbuL -givenName: Lotty -mail: FlansbuL@995d47539bff49b8a85a5ecb474bd257.bitwarden.com -carLicense: E37N1G -departmentNumber: 8776 -employeeType: Employee -homePhone: +1 206 197-3031 -initials: L. F. -mobile: +1 206 346-1508 -pager: +1 206 127-9337 -roomNumber: 9140 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Larina Scanlon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Larina Scanlon -sn: Scanlon -description: This is Larina Scanlon's description -facsimileTelephoneNumber: +1 213 255-9590 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 541-1344 -title: Associate Peons Architect -userPassword: Password1 -uid: ScanlonL -givenName: Larina -mail: ScanlonL@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com -carLicense: CE1JRO -departmentNumber: 5665 -employeeType: Employee -homePhone: +1 213 450-6109 -initials: L. S. -mobile: +1 213 618-1209 -pager: +1 213 112-2272 -roomNumber: 8409 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Barney Surridge,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barney Surridge -sn: Surridge -description: This is Barney Surridge's description -facsimileTelephoneNumber: +1 415 528-2069 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 424-4935 -title: Chief Peons Czar -userPassword: Password1 -uid: SurridgB -givenName: Barney -mail: SurridgB@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com -carLicense: XNRH1H -departmentNumber: 3524 -employeeType: Normal -homePhone: +1 415 455-6940 -initials: B. S. -mobile: +1 415 461-5315 -pager: +1 415 708-5706 -roomNumber: 8409 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yolanda Wanda,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yolanda Wanda -sn: Wanda -description: This is Yolanda Wanda's description -facsimileTelephoneNumber: +1 408 822-7330 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 156-5289 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: WandaY -givenName: Yolanda -mail: WandaY@63e0235d1e58418d9082de40babcb995.bitwarden.com -carLicense: FFTXS4 -departmentNumber: 2644 -employeeType: Normal -homePhone: +1 408 881-2980 -initials: Y. W. -mobile: +1 408 653-3783 -pager: +1 408 765-7748 -roomNumber: 9027 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dasie Tougas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dasie Tougas -sn: Tougas -description: This is Dasie Tougas's description -facsimileTelephoneNumber: +1 415 365-8254 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 151-2117 -title: Junior Human Resources Consultant -userPassword: Password1 -uid: TougasD -givenName: Dasie -mail: TougasD@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com -carLicense: AH97EO -departmentNumber: 8039 -employeeType: Employee -homePhone: +1 415 695-6180 -initials: D. T. -mobile: +1 415 466-5045 -pager: +1 415 949-7029 -roomNumber: 8141 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Julee Milton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julee Milton -sn: Milton -description: This is Julee Milton's description -facsimileTelephoneNumber: +1 213 587-1320 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 580-9616 -title: Master Administrative Vice President -userPassword: Password1 -uid: MiltonJ -givenName: Julee -mail: MiltonJ@08af06c825e94cb392bd12261cb97963.bitwarden.com -carLicense: WY42WL -departmentNumber: 4134 -employeeType: Contract -homePhone: +1 213 326-3821 -initials: J. M. -mobile: +1 213 769-9295 -pager: +1 213 224-3590 -roomNumber: 8591 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Selle Oslund,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selle Oslund -sn: Oslund -description: This is Selle Oslund's description -facsimileTelephoneNumber: +1 510 663-2150 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 167-1631 -title: Chief Janitorial Writer -userPassword: Password1 -uid: OslundS -givenName: Selle -mail: OslundS@102d4dd16d9e43f0b636c4011b41a3bb.bitwarden.com -carLicense: H6H2BC -departmentNumber: 3340 -employeeType: Employee -homePhone: +1 510 612-4448 -initials: S. O. -mobile: +1 510 310-4062 -pager: +1 510 287-4218 -roomNumber: 9279 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benjamin Togasaki -sn: Togasaki -description: This is Benjamin Togasaki's description -facsimileTelephoneNumber: +1 804 655-5162 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 699-6001 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: TogasakB -givenName: Benjamin -mail: TogasakB@207f06c431db4f90babc987173636b40.bitwarden.com -carLicense: 7DUO4U -departmentNumber: 3517 -employeeType: Normal -homePhone: +1 804 860-9017 -initials: B. T. -mobile: +1 804 739-6194 -pager: +1 804 886-8250 -roomNumber: 8935 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Leelah Docherty,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leelah Docherty -sn: Docherty -description: This is Leelah Docherty's description -facsimileTelephoneNumber: +1 213 392-7333 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 182-9379 -title: Associate Product Testing Developer -userPassword: Password1 -uid: DochertL -givenName: Leelah -mail: DochertL@e47f64bef69f4dd48dddefa04608b96f.bitwarden.com -carLicense: 7N2CHA -departmentNumber: 8764 -employeeType: Normal -homePhone: +1 213 805-4851 -initials: L. D. -mobile: +1 213 890-4969 -pager: +1 213 336-9148 -roomNumber: 9987 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Clement Srivastava,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clement Srivastava -sn: Srivastava -description: This is Clement Srivastava's description -facsimileTelephoneNumber: +1 206 892-4135 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 206 923-6551 -title: Junior Management Writer -userPassword: Password1 -uid: SrivastC -givenName: Clement -mail: SrivastC@0e85bbb2cec745a29072d883820197db.bitwarden.com -carLicense: KEEGOD -departmentNumber: 3020 -employeeType: Normal -homePhone: +1 206 202-3550 -initials: C. S. -mobile: +1 206 763-8601 -pager: +1 206 143-6765 -roomNumber: 9871 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marsie Schreiber,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marsie Schreiber -sn: Schreiber -description: This is Marsie Schreiber's description -facsimileTelephoneNumber: +1 804 822-6669 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 469-1521 -title: Junior Payroll Punk -userPassword: Password1 -uid: SchreibM -givenName: Marsie -mail: SchreibM@60ce52bd5b3a49f19dc20ccd0b72445c.bitwarden.com -carLicense: N0VWWE -departmentNumber: 1982 -employeeType: Contract -homePhone: +1 804 830-8914 -initials: M. S. -mobile: +1 804 947-5760 -pager: +1 804 690-3873 -roomNumber: 8241 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cathryn Bokij,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathryn Bokij -sn: Bokij -description: This is Cathryn Bokij's description -facsimileTelephoneNumber: +1 206 418-9133 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 180-1481 -title: Master Payroll Consultant -userPassword: Password1 -uid: BokijC -givenName: Cathryn -mail: BokijC@9e84c2e1d4034838ad90a53f25c2fdbf.bitwarden.com -carLicense: AYV00D -departmentNumber: 1443 -employeeType: Contract -homePhone: +1 206 368-4285 -initials: C. B. -mobile: +1 206 654-6468 -pager: +1 206 695-4086 -roomNumber: 8918 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharone Bryttan -sn: Bryttan -description: This is Sharone Bryttan's description -facsimileTelephoneNumber: +1 213 732-9963 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 677-1189 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: BryttanS -givenName: Sharone -mail: BryttanS@f48d7d3b63134ad1b2fb9b6ebafa3028.bitwarden.com -carLicense: OWEBJC -departmentNumber: 3614 -employeeType: Employee -homePhone: +1 213 683-4111 -initials: S. B. -mobile: +1 213 602-3970 -pager: +1 213 803-4253 -roomNumber: 8340 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Schaffer Chronowic -sn: Chronowic -description: This is Schaffer Chronowic's description -facsimileTelephoneNumber: +1 213 479-1010 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 154-4531 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: ChronowS -givenName: Schaffer -mail: ChronowS@465c6a27d41345cf88d762adf10ae61e.bitwarden.com -carLicense: 3NV2GL -departmentNumber: 8531 -employeeType: Employee -homePhone: +1 213 186-7456 -initials: S. C. -mobile: +1 213 340-5142 -pager: +1 213 862-8192 -roomNumber: 8192 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Virginia Salyniuk -sn: Salyniuk -description: This is Virginia Salyniuk's description -facsimileTelephoneNumber: +1 206 895-2808 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 206 445-7098 -title: Associate Janitorial Admin -userPassword: Password1 -uid: SalyniuV -givenName: Virginia -mail: SalyniuV@a286103db60e4488ab30515042c203a5.bitwarden.com -carLicense: 5BKEKW -departmentNumber: 9190 -employeeType: Employee -homePhone: +1 206 562-1324 -initials: V. S. -mobile: +1 206 815-1765 -pager: +1 206 287-2081 -roomNumber: 8905 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SiewKiat Cassady -sn: Cassady -description: This is SiewKiat Cassady's description -facsimileTelephoneNumber: +1 804 721-9903 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 620-5169 -title: Master Payroll Figurehead -userPassword: Password1 -uid: CassadyS -givenName: SiewKiat -mail: CassadyS@4466c387ca38420ebdc497ef8de08842.bitwarden.com -carLicense: 2ITB0R -departmentNumber: 2873 -employeeType: Normal -homePhone: +1 804 389-6743 -initials: S. C. -mobile: +1 804 551-6748 -pager: +1 804 696-1860 -roomNumber: 9327 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Melody Fontana,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melody Fontana -sn: Fontana -description: This is Melody Fontana's description -facsimileTelephoneNumber: +1 818 957-5839 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 836-9941 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: FontanaM -givenName: Melody -mail: FontanaM@b183806c89d6447c809013ec636d07ae.bitwarden.com -carLicense: EXPBV0 -departmentNumber: 1756 -employeeType: Employee -homePhone: +1 818 787-6060 -initials: M. F. -mobile: +1 818 186-7980 -pager: +1 818 141-2210 -roomNumber: 8834 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Saul Fussell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saul Fussell -sn: Fussell -description: This is Saul Fussell's description -facsimileTelephoneNumber: +1 510 389-8939 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 188-6608 -title: Master Management Czar -userPassword: Password1 -uid: FussellS -givenName: Saul -mail: FussellS@4c905761dfd345f0bec1fb45af8eef64.bitwarden.com -carLicense: E4I7NX -departmentNumber: 4899 -employeeType: Employee -homePhone: +1 510 623-4721 -initials: S. F. -mobile: +1 510 994-9307 -pager: +1 510 479-5049 -roomNumber: 8648 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Livvie Kayalioglu -sn: Kayalioglu -description: This is Livvie Kayalioglu's description -facsimileTelephoneNumber: +1 804 509-1240 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 608-8259 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: KayalioL -givenName: Livvie -mail: KayalioL@758a671442c6456f8563c5ae42048214.bitwarden.com -carLicense: 4538BS -departmentNumber: 8199 -employeeType: Employee -homePhone: +1 804 250-5446 -initials: L. K. -mobile: +1 804 517-2586 -pager: +1 804 426-5090 -roomNumber: 8423 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Thomas Gourley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomas Gourley -sn: Gourley -description: This is Thomas Gourley's description -facsimileTelephoneNumber: +1 415 172-8626 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 586-9257 -title: Chief Peons Director -userPassword: Password1 -uid: GourleyT -givenName: Thomas -mail: GourleyT@e82a7163f0b1403c8ef83f8850e77a61.bitwarden.com -carLicense: J86VOT -departmentNumber: 7862 -employeeType: Contract -homePhone: +1 415 984-2670 -initials: T. G. -mobile: +1 415 917-6257 -pager: +1 415 845-9479 -roomNumber: 9302 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Norstar Trefts,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norstar Trefts -sn: Trefts -description: This is Norstar Trefts's description -facsimileTelephoneNumber: +1 510 162-6969 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 510 868-3055 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: TreftsN -givenName: Norstar -mail: TreftsN@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com -carLicense: IT2N6W -departmentNumber: 3857 -employeeType: Employee -homePhone: +1 510 784-9064 -initials: N. T. -mobile: +1 510 280-6806 -pager: +1 510 627-7110 -roomNumber: 8857 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cheuk Weatherly -sn: Weatherly -description: This is Cheuk Weatherly's description -facsimileTelephoneNumber: +1 510 560-3580 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 750-8807 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: WeatherC -givenName: Cheuk -mail: WeatherC@6994ff306ef64425a30543b5e9a42d04.bitwarden.com -carLicense: C2OU8Q -departmentNumber: 4027 -employeeType: Contract -homePhone: +1 510 986-6176 -initials: C. W. -mobile: +1 510 926-5729 -pager: +1 510 989-5693 -roomNumber: 9635 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ignatius Ocampo -sn: Ocampo -description: This is Ignatius Ocampo's description -facsimileTelephoneNumber: +1 213 185-2163 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 634-9632 -title: Master Human Resources Grunt -userPassword: Password1 -uid: OcampoI -givenName: Ignatius -mail: OcampoI@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com -carLicense: BF1SVC -departmentNumber: 6736 -employeeType: Normal -homePhone: +1 213 634-5806 -initials: I. O. -mobile: +1 213 945-5165 -pager: +1 213 209-5368 -roomNumber: 8314 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cathi Keiser,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathi Keiser -sn: Keiser -description: This is Cathi Keiser's description -facsimileTelephoneNumber: +1 804 483-4121 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 532-1634 -title: Associate Janitorial Assistant -userPassword: Password1 -uid: KeiserC -givenName: Cathi -mail: KeiserC@df6375b797c34567a9e4770a61e55877.bitwarden.com -carLicense: O5UMDG -departmentNumber: 2006 -employeeType: Contract -homePhone: +1 804 455-3892 -initials: C. K. -mobile: +1 804 249-9567 -pager: +1 804 798-4179 -roomNumber: 9198 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Apryle Haurie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Apryle Haurie -sn: Haurie -description: This is Apryle Haurie's description -facsimileTelephoneNumber: +1 804 974-5991 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 804 160-7595 -title: Associate Peons Madonna -userPassword: Password1 -uid: HaurieA -givenName: Apryle -mail: HaurieA@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com -carLicense: IFT808 -departmentNumber: 6017 -employeeType: Employee -homePhone: +1 804 661-5028 -initials: A. H. -mobile: +1 804 551-3062 -pager: +1 804 633-3479 -roomNumber: 8899 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rozanne Trouborst,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozanne Trouborst -sn: Trouborst -description: This is Rozanne Trouborst's description -facsimileTelephoneNumber: +1 804 400-7616 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 804 346-5842 -title: Supreme Peons Architect -userPassword: Password1 -uid: TrouborR -givenName: Rozanne -mail: TrouborR@c2eec700570a4e37a9895be568c7b846.bitwarden.com -carLicense: 3B59B9 -departmentNumber: 6244 -employeeType: Employee -homePhone: +1 804 632-7776 -initials: R. T. -mobile: +1 804 621-4300 -pager: +1 804 493-3204 -roomNumber: 8950 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Catlaina Intemann,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catlaina Intemann -sn: Intemann -description: This is Catlaina Intemann's description -facsimileTelephoneNumber: +1 415 767-1843 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 403-5574 -title: Associate Product Development Assistant -userPassword: Password1 -uid: IntemanC -givenName: Catlaina -mail: IntemanC@e91f9f908328437c89ad28a2affe5705.bitwarden.com -carLicense: UT9U74 -departmentNumber: 2292 -employeeType: Contract -homePhone: +1 415 192-8734 -initials: C. I. -mobile: +1 415 484-6188 -pager: +1 415 354-7636 -roomNumber: 9966 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anabel Intune,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anabel Intune -sn: Intune -description: This is Anabel Intune's description -facsimileTelephoneNumber: +1 804 283-8519 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 471-7911 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: IntuneA -givenName: Anabel -mail: IntuneA@e9f78b5202b6404b9ee727f9d75a47b9.bitwarden.com -carLicense: FH8CBN -departmentNumber: 3780 -employeeType: Contract -homePhone: +1 804 725-3456 -initials: A. I. -mobile: +1 804 506-8109 -pager: +1 804 513-7147 -roomNumber: 9644 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elnore Rigdon -sn: Rigdon -description: This is Elnore Rigdon's description -facsimileTelephoneNumber: +1 206 570-9803 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 287-1659 -title: Chief Product Testing Artist -userPassword: Password1 -uid: RigdonE -givenName: Elnore -mail: RigdonE@25954b1ed5924842b4df7800b058aeea.bitwarden.com -carLicense: 84H546 -departmentNumber: 8264 -employeeType: Employee -homePhone: +1 206 158-6497 -initials: E. R. -mobile: +1 206 215-7236 -pager: +1 206 800-7609 -roomNumber: 8095 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ninnetta Matney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninnetta Matney -sn: Matney -description: This is Ninnetta Matney's description -facsimileTelephoneNumber: +1 408 961-7478 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 744-9889 -title: Supreme Administrative Admin -userPassword: Password1 -uid: MatneyN -givenName: Ninnetta -mail: MatneyN@debbccc9cd9041e58d59a87945bc2243.bitwarden.com -carLicense: S98RSQ -departmentNumber: 6531 -employeeType: Normal -homePhone: +1 408 178-7996 -initials: N. M. -mobile: +1 408 332-3684 -pager: +1 408 409-3725 -roomNumber: 8499 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Regina Lemay,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regina Lemay -sn: Lemay -description: This is Regina Lemay's description -facsimileTelephoneNumber: +1 818 785-5769 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 518-7898 -title: Junior Janitorial Admin -userPassword: Password1 -uid: LemayR -givenName: Regina -mail: LemayR@8227646c55034cf9b21757fce681b53f.bitwarden.com -carLicense: EGGU5C -departmentNumber: 3048 -employeeType: Employee -homePhone: +1 818 426-7576 -initials: R. L. -mobile: +1 818 581-8195 -pager: +1 818 554-2895 -roomNumber: 9328 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Janos Davis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janos Davis -sn: Davis -description: This is Janos Davis's description -facsimileTelephoneNumber: +1 206 283-2195 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 131-2981 -title: Associate Payroll Director -userPassword: Password1 -uid: DavisJ -givenName: Janos -mail: DavisJ@0a9ba1c4790d4f00ae7cb9df0847c587.bitwarden.com -carLicense: C7QSKU -departmentNumber: 6854 -employeeType: Contract -homePhone: +1 206 100-5036 -initials: J. D. -mobile: +1 206 416-8734 -pager: +1 206 183-1924 -roomNumber: 8311 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dniren Serack,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dniren Serack -sn: Serack -description: This is Dniren Serack's description -facsimileTelephoneNumber: +1 804 817-5590 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 882-1170 -title: Chief Payroll Pinhead -userPassword: Password1 -uid: SerackD -givenName: Dniren -mail: SerackD@0d144b95e68f4087974ae09daf892d06.bitwarden.com -carLicense: S1JNVE -departmentNumber: 8799 -employeeType: Normal -homePhone: +1 804 316-4922 -initials: D. S. -mobile: +1 804 956-3343 -pager: +1 804 659-4245 -roomNumber: 8328 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jaffer Guty,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaffer Guty -sn: Guty -description: This is Jaffer Guty's description -facsimileTelephoneNumber: +1 804 903-7563 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 617-2773 -title: Master Payroll Czar -userPassword: Password1 -uid: GutyJ -givenName: Jaffer -mail: GutyJ@a2e835bbc90a4bb8aa8eed7abb9fcd6b.bitwarden.com -carLicense: 1YCFVY -departmentNumber: 3398 -employeeType: Normal -homePhone: +1 804 844-8515 -initials: J. G. -mobile: +1 804 333-6187 -pager: +1 804 448-6000 -roomNumber: 9319 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kalpit Devine,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalpit Devine -sn: Devine -description: This is Kalpit Devine's description -facsimileTelephoneNumber: +1 408 667-4874 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 408 258-4562 -title: Supreme Administrative Developer -userPassword: Password1 -uid: DevineK -givenName: Kalpit -mail: DevineK@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com -carLicense: DB287A -departmentNumber: 8331 -employeeType: Normal -homePhone: +1 408 733-2474 -initials: K. D. -mobile: +1 408 819-1333 -pager: +1 408 220-5793 -roomNumber: 8326 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zitella Sammon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zitella Sammon -sn: Sammon -description: This is Zitella Sammon's description -facsimileTelephoneNumber: +1 206 518-2446 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 331-8528 -title: Master Management Manager -userPassword: Password1 -uid: SammonZ -givenName: Zitella -mail: SammonZ@af539deff3b941ca83e2c33de648681b.bitwarden.com -carLicense: H133LG -departmentNumber: 4714 -employeeType: Normal -homePhone: +1 206 482-9097 -initials: Z. S. -mobile: +1 206 281-8749 -pager: +1 206 705-3422 -roomNumber: 8269 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Renate Worrall,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renate Worrall -sn: Worrall -description: This is Renate Worrall's description -facsimileTelephoneNumber: +1 510 502-3779 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 510 885-9913 -title: Associate Human Resources Developer -userPassword: Password1 -uid: WorrallR -givenName: Renate -mail: WorrallR@1f071e8813ad43c0a975571fab76b110.bitwarden.com -carLicense: 4C6PBN -departmentNumber: 2334 -employeeType: Contract -homePhone: +1 510 726-5244 -initials: R. W. -mobile: +1 510 199-5973 -pager: +1 510 815-2221 -roomNumber: 8678 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elka Masciarelli -sn: Masciarelli -description: This is Elka Masciarelli's description -facsimileTelephoneNumber: +1 415 782-1839 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 404-9410 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: MasciarE -givenName: Elka -mail: MasciarE@cbf6583826fd423d8f040079f215152c.bitwarden.com -carLicense: QQBNNG -departmentNumber: 8515 -employeeType: Employee -homePhone: +1 415 430-6353 -initials: E. M. -mobile: +1 415 843-9267 -pager: +1 415 865-2541 -roomNumber: 8611 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatrice Isherwood -sn: Isherwood -description: This is Beatrice Isherwood's description -facsimileTelephoneNumber: +1 804 875-6634 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 377-6245 -title: Associate Human Resources Admin -userPassword: Password1 -uid: IsherwoB -givenName: Beatrice -mail: IsherwoB@f82a375ba7e5476fb33407411380cda7.bitwarden.com -carLicense: BB4QLX -departmentNumber: 8841 -employeeType: Contract -homePhone: +1 804 736-5734 -initials: B. I. -mobile: +1 804 766-5456 -pager: +1 804 892-5437 -roomNumber: 8033 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maidsir Traynor -sn: Traynor -description: This is Maidsir Traynor's description -facsimileTelephoneNumber: +1 408 376-2292 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 413-8878 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: TraynorM -givenName: Maidsir -mail: TraynorM@a6d00429faa5499880c45615fd9223a3.bitwarden.com -carLicense: RBJO4D -departmentNumber: 2347 -employeeType: Normal -homePhone: +1 408 699-5849 -initials: M. T. -mobile: +1 408 302-4520 -pager: +1 408 736-7800 -roomNumber: 9509 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Medria Aribindi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Medria Aribindi -sn: Aribindi -description: This is Medria Aribindi's description -facsimileTelephoneNumber: +1 206 703-9624 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 972-7626 -title: Associate Administrative Architect -userPassword: Password1 -uid: AribindM -givenName: Medria -mail: AribindM@be56d01786b846e3aa64454147150e23.bitwarden.com -carLicense: X41B15 -departmentNumber: 6766 -employeeType: Employee -homePhone: +1 206 566-8383 -initials: M. A. -mobile: +1 206 385-7270 -pager: +1 206 589-5389 -roomNumber: 8231 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eba Bockaj,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eba Bockaj -sn: Bockaj -description: This is Eba Bockaj's description -facsimileTelephoneNumber: +1 510 825-7849 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 361-4625 -title: Master Payroll Dictator -userPassword: Password1 -uid: BockajE -givenName: Eba -mail: BockajE@3f93f60a8e804d55a6647c56c6c05eab.bitwarden.com -carLicense: 7X2KKM -departmentNumber: 2542 -employeeType: Employee -homePhone: +1 510 831-6615 -initials: E. B. -mobile: +1 510 295-8282 -pager: +1 510 542-2160 -roomNumber: 8131 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Calley Thaxton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calley Thaxton -sn: Thaxton -description: This is Calley Thaxton's description -facsimileTelephoneNumber: +1 510 914-4393 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 510 685-5652 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: ThaxtonC -givenName: Calley -mail: ThaxtonC@202ab1834ba741fea5a2334a7dedf7d0.bitwarden.com -carLicense: PMTTV8 -departmentNumber: 7128 -employeeType: Employee -homePhone: +1 510 466-3648 -initials: C. T. -mobile: +1 510 694-7209 -pager: +1 510 600-6975 -roomNumber: 8738 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rheal Dadgar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rheal Dadgar -sn: Dadgar -description: This is Rheal Dadgar's description -facsimileTelephoneNumber: +1 408 425-1015 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 101-8995 -title: Junior Payroll Visionary -userPassword: Password1 -uid: DadgarR -givenName: Rheal -mail: DadgarR@b3a78fcc94924efeb3886f806e14989c.bitwarden.com -carLicense: 2IXAP0 -departmentNumber: 4785 -employeeType: Contract -homePhone: +1 408 165-6138 -initials: R. D. -mobile: +1 408 103-7589 -pager: +1 408 542-9753 -roomNumber: 8426 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Daphene Bayno,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphene Bayno -sn: Bayno -description: This is Daphene Bayno's description -facsimileTelephoneNumber: +1 206 244-2623 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 586-4401 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: BaynoD -givenName: Daphene -mail: BaynoD@b1e31f863da04aa8b9a57d43a6e09dae.bitwarden.com -carLicense: 58EF5W -departmentNumber: 3470 -employeeType: Normal -homePhone: +1 206 208-3877 -initials: D. B. -mobile: +1 206 876-9269 -pager: +1 206 913-5761 -roomNumber: 8857 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dilpreet Javor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dilpreet Javor -sn: Javor -description: This is Dilpreet Javor's description -facsimileTelephoneNumber: +1 408 686-3026 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 729-6026 -title: Supreme Management Fellow -userPassword: Password1 -uid: JavorD -givenName: Dilpreet -mail: JavorD@3bc4d87aca5d46469b49fb22078e5414.bitwarden.com -carLicense: 7UQLF8 -departmentNumber: 5246 -employeeType: Employee -homePhone: +1 408 446-3821 -initials: D. J. -mobile: +1 408 810-9083 -pager: +1 408 399-9621 -roomNumber: 8978 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kambiz Nyce,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kambiz Nyce -sn: Nyce -description: This is Kambiz Nyce's description -facsimileTelephoneNumber: +1 510 937-7831 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 851-7073 -title: Associate Peons Fellow -userPassword: Password1 -uid: NyceK -givenName: Kambiz -mail: NyceK@ff8375ca1c294ee698da8ebb063821cf.bitwarden.com -carLicense: 9025QM -departmentNumber: 2210 -employeeType: Contract -homePhone: +1 510 380-2279 -initials: K. N. -mobile: +1 510 104-3720 -pager: +1 510 327-7966 -roomNumber: 9214 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karan Molochko,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karan Molochko -sn: Molochko -description: This is Karan Molochko's description -facsimileTelephoneNumber: +1 213 591-8293 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 500-4661 -title: Supreme Administrative Engineer -userPassword: Password1 -uid: MolochkK -givenName: Karan -mail: MolochkK@22bf652e14524f83bfef4f8562abff95.bitwarden.com -carLicense: HEP49K -departmentNumber: 8958 -employeeType: Employee -homePhone: +1 213 417-3610 -initials: K. M. -mobile: +1 213 544-3744 -pager: +1 213 550-4583 -roomNumber: 8917 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Olav Straub,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olav Straub -sn: Straub -description: This is Olav Straub's description -facsimileTelephoneNumber: +1 415 472-2880 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 818-5430 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: StraubO -givenName: Olav -mail: StraubO@0af04fcd60da40099a5a068c388bafe2.bitwarden.com -carLicense: MNMHQD -departmentNumber: 5322 -employeeType: Normal -homePhone: +1 415 282-8988 -initials: O. S. -mobile: +1 415 631-4470 -pager: +1 415 194-3585 -roomNumber: 9524 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgia Ashurkoff -sn: Ashurkoff -description: This is Georgia Ashurkoff's description -facsimileTelephoneNumber: +1 415 203-8435 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 318-8434 -title: Associate Product Testing Manager -userPassword: Password1 -uid: AshurkoG -givenName: Georgia -mail: AshurkoG@2885a23eb18143c0ac146276f9ab0afb.bitwarden.com -carLicense: O5N1DE -departmentNumber: 5110 -employeeType: Normal -homePhone: +1 415 434-8280 -initials: G. A. -mobile: +1 415 766-9353 -pager: +1 415 185-1108 -roomNumber: 8138 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyndy Ghatta -sn: Ghatta -description: This is Cyndy Ghatta's description -facsimileTelephoneNumber: +1 510 948-5333 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 522-2541 -title: Junior Human Resources Warrior -userPassword: Password1 -uid: GhattaC -givenName: Cyndy -mail: GhattaC@a18c15299e7f44c494cd2e3c44db021d.bitwarden.com -carLicense: P2F4D9 -departmentNumber: 2909 -employeeType: Normal -homePhone: +1 510 346-3647 -initials: C. G. -mobile: +1 510 991-7148 -pager: +1 510 559-7235 -roomNumber: 9513 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Berget Hnidek,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berget Hnidek -sn: Hnidek -description: This is Berget Hnidek's description -facsimileTelephoneNumber: +1 206 723-6306 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 509-4378 -title: Associate Peons Developer -userPassword: Password1 -uid: HnidekB -givenName: Berget -mail: HnidekB@54be91a814bf4836912c52cbba66eeef.bitwarden.com -carLicense: LA6UTY -departmentNumber: 3984 -employeeType: Employee -homePhone: +1 206 360-7149 -initials: B. H. -mobile: +1 206 843-6997 -pager: +1 206 140-3418 -roomNumber: 8532 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shahriar Benschop,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shahriar Benschop -sn: Benschop -description: This is Shahriar Benschop's description -facsimileTelephoneNumber: +1 408 872-2234 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 131-4236 -title: Supreme Peons Warrior -userPassword: Password1 -uid: BenschoS -givenName: Shahriar -mail: BenschoS@66ebe9b8d29246329e6e17db480edb7b.bitwarden.com -carLicense: JPMMY2 -departmentNumber: 4555 -employeeType: Normal -homePhone: +1 408 464-3406 -initials: S. B. -mobile: +1 408 497-1410 -pager: +1 408 267-1635 -roomNumber: 9858 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamyar Savarimuthu -sn: Savarimuthu -description: This is Kamyar Savarimuthu's description -facsimileTelephoneNumber: +1 818 974-5136 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 818 486-4813 -title: Associate Human Resources Developer -userPassword: Password1 -uid: SavarimK -givenName: Kamyar -mail: SavarimK@4be9f9f4318e4587b7d485613eb27d49.bitwarden.com -carLicense: JV5NJ7 -departmentNumber: 1898 -employeeType: Normal -homePhone: +1 818 239-2194 -initials: K. S. -mobile: +1 818 544-6797 -pager: +1 818 111-6666 -roomNumber: 9369 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wilkin Boinnard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilkin Boinnard -sn: Boinnard -description: This is Wilkin Boinnard's description -facsimileTelephoneNumber: +1 206 560-8557 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 123-2253 -title: Junior Management Czar -userPassword: Password1 -uid: BoinnarW -givenName: Wilkin -mail: BoinnarW@af9d1266b1684989ab41423cdd351f7f.bitwarden.com -carLicense: 7H6YEI -departmentNumber: 7969 -employeeType: Employee -homePhone: +1 206 757-8811 -initials: W. B. -mobile: +1 206 445-7750 -pager: +1 206 617-7943 -roomNumber: 9925 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vital Simcoe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vital Simcoe -sn: Simcoe -description: This is Vital Simcoe's description -facsimileTelephoneNumber: +1 206 847-7469 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 197-7665 -title: Junior Product Development Mascot -userPassword: Password1 -uid: SimcoeV -givenName: Vital -mail: SimcoeV@04f0b8f68f7043abbd5b8505c5bed917.bitwarden.com -carLicense: ESNXFB -departmentNumber: 4311 -employeeType: Employee -homePhone: +1 206 949-1174 -initials: V. S. -mobile: +1 206 162-8651 -pager: +1 206 450-8578 -roomNumber: 8030 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lydie Hooker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lydie Hooker -sn: Hooker -description: This is Lydie Hooker's description -facsimileTelephoneNumber: +1 213 299-1689 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 213 557-3720 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: HookerL -givenName: Lydie -mail: HookerL@4eab057e70644dff8f3d5ac041be0877.bitwarden.com -carLicense: UQUIWK -departmentNumber: 7190 -employeeType: Normal -homePhone: +1 213 781-5030 -initials: L. H. -mobile: +1 213 963-3930 -pager: +1 213 438-8254 -roomNumber: 9972 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Greta Minyard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greta Minyard -sn: Minyard -description: This is Greta Minyard's description -facsimileTelephoneNumber: +1 206 982-1902 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 206 784-3370 -title: Associate Management Mascot -userPassword: Password1 -uid: MinyardG -givenName: Greta -mail: MinyardG@43da9c69baa14266b4c8812eff59c738.bitwarden.com -carLicense: L1J7IF -departmentNumber: 7910 -employeeType: Employee -homePhone: +1 206 985-1568 -initials: G. M. -mobile: +1 206 480-2449 -pager: +1 206 390-9229 -roomNumber: 8073 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamiko Timleck -sn: Timleck -description: This is Tamiko Timleck's description -facsimileTelephoneNumber: +1 408 385-8844 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 872-9458 -title: Master Human Resources Architect -userPassword: Password1 -uid: TimleckT -givenName: Tamiko -mail: TimleckT@26786d0f68384beeae2a7df6b6635e8e.bitwarden.com -carLicense: D0LVQR -departmentNumber: 7133 -employeeType: Employee -homePhone: +1 408 532-6228 -initials: T. T. -mobile: +1 408 526-3262 -pager: +1 408 982-7189 -roomNumber: 8757 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Adelice Fishman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adelice Fishman -sn: Fishman -description: This is Adelice Fishman's description -facsimileTelephoneNumber: +1 415 645-1081 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 464-2451 -title: Chief Product Development Punk -userPassword: Password1 -uid: FishmanA -givenName: Adelice -mail: FishmanA@0b715661798e487f9f545ca818a81f7a.bitwarden.com -carLicense: DPL7E9 -departmentNumber: 4801 -employeeType: Normal -homePhone: +1 415 556-9790 -initials: A. F. -mobile: +1 415 169-8263 -pager: +1 415 964-1201 -roomNumber: 9330 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thaddeus Ciochon -sn: Ciochon -description: This is Thaddeus Ciochon's description -facsimileTelephoneNumber: +1 415 262-5262 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 888-8524 -title: Chief Administrative Vice President -userPassword: Password1 -uid: CiochonT -givenName: Thaddeus -mail: CiochonT@6fe854deca574173bc8de7c35ad137c6.bitwarden.com -carLicense: BQMNU0 -departmentNumber: 9197 -employeeType: Employee -homePhone: +1 415 213-6124 -initials: T. C. -mobile: +1 415 582-9184 -pager: +1 415 603-8767 -roomNumber: 9196 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibylle Cusato -sn: Cusato -description: This is Sibylle Cusato's description -facsimileTelephoneNumber: +1 408 721-9006 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 408 870-7253 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: CusatoS -givenName: Sibylle -mail: CusatoS@06ca177f7c6b4c2ab8f07911dfc0cb3f.bitwarden.com -carLicense: OME6BF -departmentNumber: 6470 -employeeType: Employee -homePhone: +1 408 233-6826 -initials: S. C. -mobile: +1 408 926-8190 -pager: +1 408 175-4955 -roomNumber: 8420 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Motaz Gobeli -sn: Gobeli -description: This is Motaz Gobeli's description -facsimileTelephoneNumber: +1 510 549-4605 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 692-2866 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: GobeliM -givenName: Motaz -mail: GobeliM@392a4a6a368341beb07fcc7da7744c10.bitwarden.com -carLicense: QNDSRN -departmentNumber: 8033 -employeeType: Employee -homePhone: +1 510 128-4413 -initials: M. G. -mobile: +1 510 535-5293 -pager: +1 510 800-8469 -roomNumber: 9447 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Devinne Kellum,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devinne Kellum -sn: Kellum -description: This is Devinne Kellum's description -facsimileTelephoneNumber: +1 510 103-3487 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 257-5784 -title: Associate Administrative Engineer -userPassword: Password1 -uid: KellumD -givenName: Devinne -mail: KellumD@5214956f0ee84ad493b8defdd90a23da.bitwarden.com -carLicense: 8HOIL8 -departmentNumber: 5261 -employeeType: Contract -homePhone: +1 510 402-1936 -initials: D. K. -mobile: +1 510 761-9363 -pager: +1 510 811-6665 -roomNumber: 9798 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Breena Telco,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Breena Telco -sn: Telco -description: This is Breena Telco's description -facsimileTelephoneNumber: +1 213 701-7158 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 347-1129 -title: Supreme Product Development Admin -userPassword: Password1 -uid: TelcoB -givenName: Breena -mail: TelcoB@ecf3a96f00b043e2b4c8c3e398a40978.bitwarden.com -carLicense: LJKPRG -departmentNumber: 7756 -employeeType: Employee -homePhone: +1 213 567-1653 -initials: B. T. -mobile: +1 213 726-7421 -pager: +1 213 469-8316 -roomNumber: 8332 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tianbao Gerlich,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tianbao Gerlich -sn: Gerlich -description: This is Tianbao Gerlich's description -facsimileTelephoneNumber: +1 408 565-9771 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 230-8661 -title: Chief Management Janitor -userPassword: Password1 -uid: GerlichT -givenName: Tianbao -mail: GerlichT@b156fd7640954c1b9e8fe3eb48376a55.bitwarden.com -carLicense: DKYUNQ -departmentNumber: 5471 -employeeType: Normal -homePhone: +1 408 313-2044 -initials: T. G. -mobile: +1 408 936-7655 -pager: +1 408 519-7136 -roomNumber: 8496 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gahn Lightfoot -sn: Lightfoot -description: This is Gahn Lightfoot's description -facsimileTelephoneNumber: +1 415 564-6499 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 873-4297 -title: Chief Administrative Consultant -userPassword: Password1 -uid: LightfoG -givenName: Gahn -mail: LightfoG@e6ab02c53a3c4216ba5b75ac65120e12.bitwarden.com -carLicense: D6ELW1 -departmentNumber: 3439 -employeeType: Normal -homePhone: +1 415 776-8405 -initials: G. L. -mobile: +1 415 733-5342 -pager: +1 415 779-9262 -roomNumber: 8998 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LyddaJune Thornber -sn: Thornber -description: This is LyddaJune Thornber's description -facsimileTelephoneNumber: +1 818 464-3907 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 598-8391 -title: Supreme Product Development Admin -userPassword: Password1 -uid: ThornbeL -givenName: LyddaJune -mail: ThornbeL@3badeafafe3b4639b92d03c5b1235944.bitwarden.com -carLicense: 4HJWIM -departmentNumber: 5114 -employeeType: Normal -homePhone: +1 818 237-5934 -initials: L. T. -mobile: +1 818 762-4748 -pager: +1 818 397-3028 -roomNumber: 9263 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lana Keates,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lana Keates -sn: Keates -description: This is Lana Keates's description -facsimileTelephoneNumber: +1 510 557-7407 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 670-2687 -title: Chief Administrative Mascot -userPassword: Password1 -uid: KeatesL -givenName: Lana -mail: KeatesL@bce67af47de54c1abf524bc004ae2e2b.bitwarden.com -carLicense: N065J7 -departmentNumber: 2681 -employeeType: Normal -homePhone: +1 510 568-8096 -initials: L. K. -mobile: +1 510 491-6379 -pager: +1 510 234-3142 -roomNumber: 9152 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Veena Richards,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veena Richards -sn: Richards -description: This is Veena Richards's description -facsimileTelephoneNumber: +1 213 663-3587 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 432-3521 -title: Supreme Human Resources Czar -userPassword: Password1 -uid: RichardV -givenName: Veena -mail: RichardV@7719bdff14bf4e9fa26a2dfe09ac0f3a.bitwarden.com -carLicense: RQT9IF -departmentNumber: 6064 -employeeType: Normal -homePhone: +1 213 305-2507 -initials: V. R. -mobile: +1 213 777-1050 -pager: +1 213 711-1668 -roomNumber: 8251 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Charin Clocklab,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charin Clocklab -sn: Clocklab -description: This is Charin Clocklab's description -facsimileTelephoneNumber: +1 415 533-9027 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 826-7957 -title: Master Human Resources Fellow -userPassword: Password1 -uid: ClocklaC -givenName: Charin -mail: ClocklaC@3905d18a9f18484ba7305c447e951282.bitwarden.com -carLicense: YSK9KD -departmentNumber: 2188 -employeeType: Normal -homePhone: +1 415 727-8972 -initials: C. C. -mobile: +1 415 751-2050 -pager: +1 415 576-7769 -roomNumber: 9903 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kollen Fenwick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kollen Fenwick -sn: Fenwick -description: This is Kollen Fenwick's description -facsimileTelephoneNumber: +1 510 343-3622 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 777-2364 -title: Master Management Dictator -userPassword: Password1 -uid: FenwickK -givenName: Kollen -mail: FenwickK@f4611bb6000b48cf9a5a0c6ff63070e9.bitwarden.com -carLicense: SWQ9DR -departmentNumber: 9932 -employeeType: Employee -homePhone: +1 510 798-7739 -initials: K. F. -mobile: +1 510 407-4966 -pager: +1 510 776-4995 -roomNumber: 8588 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lucille Orol,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucille Orol -sn: Orol -description: This is Lucille Orol's description -facsimileTelephoneNumber: +1 213 476-6089 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 671-6539 -title: Master Management President -userPassword: Password1 -uid: OrolL -givenName: Lucille -mail: OrolL@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com -carLicense: E3LG9E -departmentNumber: 3345 -employeeType: Normal -homePhone: +1 213 230-1356 -initials: L. O. -mobile: +1 213 171-1779 -pager: +1 213 665-4754 -roomNumber: 8149 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maier Bobar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maier Bobar -sn: Bobar -description: This is Maier Bobar's description -facsimileTelephoneNumber: +1 818 317-1178 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 928-7580 -title: Master Product Testing Artist -userPassword: Password1 -uid: BobarM -givenName: Maier -mail: BobarM@b39d8f666f1848e6abb69d85d224a354.bitwarden.com -carLicense: E5CAFF -departmentNumber: 2154 -employeeType: Normal -homePhone: +1 818 942-6682 -initials: M. B. -mobile: +1 818 664-7754 -pager: +1 818 594-3956 -roomNumber: 9346 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dori Garwood,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dori Garwood -sn: Garwood -description: This is Dori Garwood's description -facsimileTelephoneNumber: +1 818 930-8043 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 818 390-1803 -title: Supreme Administrative Punk -userPassword: Password1 -uid: GarwoodD -givenName: Dori -mail: GarwoodD@81e1c04932074375850663ac7b5d1387.bitwarden.com -carLicense: 0GSJ3J -departmentNumber: 2075 -employeeType: Employee -homePhone: +1 818 726-1435 -initials: D. G. -mobile: +1 818 101-2660 -pager: +1 818 943-1443 -roomNumber: 9880 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gussi Horak,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gussi Horak -sn: Horak -description: This is Gussi Horak's description -facsimileTelephoneNumber: +1 818 162-1725 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 873-1759 -title: Supreme Management Madonna -userPassword: Password1 -uid: HorakG -givenName: Gussi -mail: HorakG@d65cebe6024b47459c5e0ad8f6a8a5c2.bitwarden.com -carLicense: LE1N5I -departmentNumber: 3016 -employeeType: Employee -homePhone: +1 818 716-2486 -initials: G. H. -mobile: +1 818 670-9926 -pager: +1 818 989-6631 -roomNumber: 8758 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marillin Boroski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marillin Boroski -sn: Boroski -description: This is Marillin Boroski's description -facsimileTelephoneNumber: +1 818 605-3869 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 898-9610 -title: Chief Administrative Consultant -userPassword: Password1 -uid: BoroskiM -givenName: Marillin -mail: BoroskiM@8664d2779faf46baad47e305d363adc6.bitwarden.com -carLicense: A0IPL9 -departmentNumber: 5873 -employeeType: Normal -homePhone: +1 818 194-7113 -initials: M. B. -mobile: +1 818 306-2824 -pager: +1 818 635-9535 -roomNumber: 9760 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kitson Lundhild -sn: Lundhild -description: This is Kitson Lundhild's description -facsimileTelephoneNumber: +1 408 717-6071 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 408 373-8552 -title: Junior Janitorial Warrior -userPassword: Password1 -uid: LundhilK -givenName: Kitson -mail: LundhilK@e7504ea4712040488444ef96484ed4da.bitwarden.com -carLicense: BUT6GD -departmentNumber: 1632 -employeeType: Normal -homePhone: +1 408 437-4693 -initials: K. L. -mobile: +1 408 246-8480 -pager: +1 408 105-1686 -roomNumber: 8336 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Noelyn Hinkle,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noelyn Hinkle -sn: Hinkle -description: This is Noelyn Hinkle's description -facsimileTelephoneNumber: +1 206 707-6207 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 622-2404 -title: Chief Peons Admin -userPassword: Password1 -uid: HinkleN -givenName: Noelyn -mail: HinkleN@3efbea2d01d34d828998e7b903e8331e.bitwarden.com -carLicense: HHOK3O -departmentNumber: 6640 -employeeType: Normal -homePhone: +1 206 677-4216 -initials: N. H. -mobile: +1 206 638-8856 -pager: +1 206 749-9018 -roomNumber: 8309 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denise Wegrowicz -sn: Wegrowicz -description: This is Denise Wegrowicz's description -facsimileTelephoneNumber: +1 818 760-6045 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 666-1038 -title: Master Janitorial Punk -userPassword: Password1 -uid: WegrowiD -givenName: Denise -mail: WegrowiD@3ec760605c684f74be32825b3ebfaaaf.bitwarden.com -carLicense: 9DIEC0 -departmentNumber: 8233 -employeeType: Contract -homePhone: +1 818 918-2700 -initials: D. W. -mobile: +1 818 630-7804 -pager: +1 818 894-7400 -roomNumber: 8782 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Erlene Schirmer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erlene Schirmer -sn: Schirmer -description: This is Erlene Schirmer's description -facsimileTelephoneNumber: +1 408 441-3811 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 358-4027 -title: Junior Management Vice President -userPassword: Password1 -uid: SchirmeE -givenName: Erlene -mail: SchirmeE@e0c1b544468b4b8ea7c122f613b28724.bitwarden.com -carLicense: IU02WP -departmentNumber: 4654 -employeeType: Normal -homePhone: +1 408 875-2134 -initials: E. S. -mobile: +1 408 458-8164 -pager: +1 408 801-6056 -roomNumber: 8895 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fabienne McGonigal -sn: McGonigal -description: This is Fabienne McGonigal's description -facsimileTelephoneNumber: +1 415 935-4979 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 415 565-8417 -title: Associate Human Resources Technician -userPassword: Password1 -uid: McGonigF -givenName: Fabienne -mail: McGonigF@25d2cd968a404f8ab3144ef7402e2e12.bitwarden.com -carLicense: L4H6I5 -departmentNumber: 6588 -employeeType: Employee -homePhone: +1 415 869-5376 -initials: F. M. -mobile: +1 415 756-8927 -pager: +1 415 563-8690 -roomNumber: 8550 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Binh Hoagland,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Binh Hoagland -sn: Hoagland -description: This is Binh Hoagland's description -facsimileTelephoneNumber: +1 206 843-7258 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 590-7312 -title: Junior Peons Czar -userPassword: Password1 -uid: HoaglanB -givenName: Binh -mail: HoaglanB@6c33f97ba18845049fcf33d5c689185e.bitwarden.com -carLicense: BVR04L -departmentNumber: 5843 -employeeType: Normal -homePhone: +1 206 674-9416 -initials: B. H. -mobile: +1 206 176-1987 -pager: +1 206 164-4089 -roomNumber: 9098 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aviva McIsaac,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aviva McIsaac -sn: McIsaac -description: This is Aviva McIsaac's description -facsimileTelephoneNumber: +1 213 442-3593 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 521-2473 -title: Master Administrative Figurehead -userPassword: Password1 -uid: McIsaacA -givenName: Aviva -mail: McIsaacA@b2d36917909a45fd9de4c6c83faf6196.bitwarden.com -carLicense: KEYNQS -departmentNumber: 3002 -employeeType: Normal -homePhone: +1 213 487-6667 -initials: A. M. -mobile: +1 213 275-8376 -pager: +1 213 701-9697 -roomNumber: 9545 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Noami Cinicolo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noami Cinicolo -sn: Cinicolo -description: This is Noami Cinicolo's description -facsimileTelephoneNumber: +1 408 235-5773 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 776-9965 -title: Chief Peons Manager -userPassword: Password1 -uid: CinicolN -givenName: Noami -mail: CinicolN@cd70627629114669966294343a84f460.bitwarden.com -carLicense: U94S2Y -departmentNumber: 1645 -employeeType: Employee -homePhone: +1 408 389-9480 -initials: N. C. -mobile: +1 408 279-9048 -pager: +1 408 913-8869 -roomNumber: 9836 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yukuo Wolford,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yukuo Wolford -sn: Wolford -description: This is Yukuo Wolford's description -facsimileTelephoneNumber: +1 415 929-4249 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 228-3839 -title: Master Administrative Madonna -userPassword: Password1 -uid: WolfordY -givenName: Yukuo -mail: WolfordY@cbda3412be124725a29716dcee2b4b0d.bitwarden.com -carLicense: 5HH7NK -departmentNumber: 2668 -employeeType: Employee -homePhone: +1 415 307-9430 -initials: Y. W. -mobile: +1 415 147-1441 -pager: +1 415 985-4763 -roomNumber: 8677 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Amalea Kesler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amalea Kesler -sn: Kesler -description: This is Amalea Kesler's description -facsimileTelephoneNumber: +1 818 199-2626 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 559-6743 -title: Supreme Janitorial Visionary -userPassword: Password1 -uid: KeslerA -givenName: Amalea -mail: KeslerA@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com -carLicense: NP7TJH -departmentNumber: 8233 -employeeType: Normal -homePhone: +1 818 682-9650 -initials: A. K. -mobile: +1 818 104-9519 -pager: +1 818 373-8780 -roomNumber: 8372 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cyril Inglis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyril Inglis -sn: Inglis -description: This is Cyril Inglis's description -facsimileTelephoneNumber: +1 510 469-2427 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 665-2844 -title: Chief Payroll Sales Rep -userPassword: Password1 -uid: InglisC -givenName: Cyril -mail: InglisC@2e3c1feccfe647baaed9b76e554413c0.bitwarden.com -carLicense: U168HA -departmentNumber: 6630 -employeeType: Employee -homePhone: +1 510 444-2966 -initials: C. I. -mobile: +1 510 356-3426 -pager: +1 510 492-3100 -roomNumber: 8400 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ladan Schutz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ladan Schutz -sn: Schutz -description: This is Ladan Schutz's description -facsimileTelephoneNumber: +1 213 781-2730 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 269-3010 -title: Junior Administrative Artist -userPassword: Password1 -uid: SchutzL -givenName: Ladan -mail: SchutzL@3ee35d919ef5410b9a742e5fe9487a11.bitwarden.com -carLicense: FFTG4B -departmentNumber: 4744 -employeeType: Contract -homePhone: +1 213 223-7533 -initials: L. S. -mobile: +1 213 629-2768 -pager: +1 213 117-9037 -roomNumber: 8631 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bob Erbach,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bob Erbach -sn: Erbach -description: This is Bob Erbach's description -facsimileTelephoneNumber: +1 510 657-1482 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 584-8345 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: ErbachB -givenName: Bob -mail: ErbachB@2257b27ac7544235a333809d99a81f31.bitwarden.com -carLicense: H2QI4K -departmentNumber: 6459 -employeeType: Employee -homePhone: +1 510 588-4384 -initials: B. E. -mobile: +1 510 149-7627 -pager: +1 510 372-8985 -roomNumber: 9398 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hideki Fobert,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hideki Fobert -sn: Fobert -description: This is Hideki Fobert's description -facsimileTelephoneNumber: +1 415 455-4609 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 763-1112 -title: Supreme Management Dictator -userPassword: Password1 -uid: FobertH -givenName: Hideki -mail: FobertH@dabb673b74534388bb1466a7f0fed6b0.bitwarden.com -carLicense: AD33R8 -departmentNumber: 8236 -employeeType: Normal -homePhone: +1 415 635-9009 -initials: H. F. -mobile: +1 415 458-1222 -pager: +1 415 517-9154 -roomNumber: 9449 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Koral Bilton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koral Bilton -sn: Bilton -description: This is Koral Bilton's description -facsimileTelephoneNumber: +1 415 771-7523 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 184-7661 -title: Junior Peons President -userPassword: Password1 -uid: BiltonK -givenName: Koral -mail: BiltonK@6a1a5eea63134321b540021379837737.bitwarden.com -carLicense: J6MWOK -departmentNumber: 8952 -employeeType: Employee -homePhone: +1 415 258-1651 -initials: K. B. -mobile: +1 415 335-1518 -pager: +1 415 910-6445 -roomNumber: 9081 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Adriane Denike,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adriane Denike -sn: Denike -description: This is Adriane Denike's description -facsimileTelephoneNumber: +1 408 565-3501 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 516-8199 -title: Master Human Resources Assistant -userPassword: Password1 -uid: DenikeA -givenName: Adriane -mail: DenikeA@7a434719bc114db3972a25b2d060ed01.bitwarden.com -carLicense: 40HLSV -departmentNumber: 9092 -employeeType: Employee -homePhone: +1 408 814-8084 -initials: A. D. -mobile: +1 408 855-6743 -pager: +1 408 856-8577 -roomNumber: 9048 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ayako McCormick,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ayako McCormick -sn: McCormick -description: This is Ayako McCormick's description -facsimileTelephoneNumber: +1 818 653-3874 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 818 617-4087 -title: Master Human Resources Madonna -userPassword: Password1 -uid: McCormiA -givenName: Ayako -mail: McCormiA@1c56caf50dea44adacb785f044d171d8.bitwarden.com -carLicense: VFLW5G -departmentNumber: 6858 -employeeType: Normal -homePhone: +1 818 113-6765 -initials: A. M. -mobile: +1 818 779-3304 -pager: +1 818 820-1978 -roomNumber: 8958 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Renell Kales,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renell Kales -sn: Kales -description: This is Renell Kales's description -facsimileTelephoneNumber: +1 818 754-3557 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 497-6142 -title: Associate Human Resources Pinhead -userPassword: Password1 -uid: KalesR -givenName: Renell -mail: KalesR@9d6eea632d564a3387d6cca7f5f27cee.bitwarden.com -carLicense: AUJ6NO -departmentNumber: 7012 -employeeType: Normal -homePhone: +1 818 204-5920 -initials: R. K. -mobile: +1 818 281-1063 -pager: +1 818 989-7544 -roomNumber: 9540 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aggi Syssupport -sn: Syssupport -description: This is Aggi Syssupport's description -facsimileTelephoneNumber: +1 510 994-9981 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 132-7944 -title: Junior Product Testing Consultant -userPassword: Password1 -uid: SyssuppA -givenName: Aggi -mail: SyssuppA@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com -carLicense: 64JTCA -departmentNumber: 9789 -employeeType: Employee -homePhone: +1 510 170-2599 -initials: A. S. -mobile: +1 510 837-1290 -pager: +1 510 950-2480 -roomNumber: 8498 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brennan Wolter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brennan Wolter -sn: Wolter -description: This is Brennan Wolter's description -facsimileTelephoneNumber: +1 804 697-9499 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 349-7598 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: WolterB -givenName: Brennan -mail: WolterB@0c8d3d5d36af4ce7b5e4cfaf2e7114b4.bitwarden.com -carLicense: PTNICE -departmentNumber: 2485 -employeeType: Contract -homePhone: +1 804 327-8628 -initials: B. W. -mobile: +1 804 520-7196 -pager: +1 804 621-8318 -roomNumber: 8649 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mariya Wesselow,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariya Wesselow -sn: Wesselow -description: This is Mariya Wesselow's description -facsimileTelephoneNumber: +1 415 993-3863 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 802-6348 -title: Master Payroll Stooge -userPassword: Password1 -uid: WesseloM -givenName: Mariya -mail: WesseloM@38084e0586a041acbbdb2c1dfb35d2bb.bitwarden.com -carLicense: P5GNEA -departmentNumber: 1467 -employeeType: Contract -homePhone: +1 415 685-9470 -initials: M. W. -mobile: +1 415 753-1304 -pager: +1 415 187-3990 -roomNumber: 8117 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Roe Kathie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roe Kathie -sn: Kathie -description: This is Roe Kathie's description -facsimileTelephoneNumber: +1 510 973-3539 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 509-9315 -title: Master Product Development Grunt -userPassword: Password1 -uid: KathieR -givenName: Roe -mail: KathieR@b6b1bf8d77e842a3bc1d1dfc536f2c93.bitwarden.com -carLicense: M2440B -departmentNumber: 3796 -employeeType: Normal -homePhone: +1 510 938-7153 -initials: R. K. -mobile: +1 510 719-2065 -pager: +1 510 453-5802 -roomNumber: 8868 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rici Sobel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rici Sobel -sn: Sobel -description: This is Rici Sobel's description -facsimileTelephoneNumber: +1 510 160-6130 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 838-5575 -title: Associate Peons Stooge -userPassword: Password1 -uid: SobelR -givenName: Rici -mail: SobelR@8f9774ff98184bb9b97541409e8279a1.bitwarden.com -carLicense: CVOYLL -departmentNumber: 4165 -employeeType: Employee -homePhone: +1 510 426-2437 -initials: R. S. -mobile: +1 510 804-6977 -pager: +1 510 910-4857 -roomNumber: 9431 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eladio Malek,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eladio Malek -sn: Malek -description: This is Eladio Malek's description -facsimileTelephoneNumber: +1 206 814-4253 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 998-6145 -title: Master Product Testing Mascot -userPassword: Password1 -uid: MalekE -givenName: Eladio -mail: MalekE@a327e7a9db0a40bba24a9943db49f75e.bitwarden.com -carLicense: 6Y9B7H -departmentNumber: 7665 -employeeType: Normal -homePhone: +1 206 184-4394 -initials: E. M. -mobile: +1 206 115-3628 -pager: +1 206 309-3426 -roomNumber: 9970 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Siew Dunajski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siew Dunajski -sn: Dunajski -description: This is Siew Dunajski's description -facsimileTelephoneNumber: +1 804 177-4364 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 309-1422 -title: Associate Peons Madonna -userPassword: Password1 -uid: DunajskS -givenName: Siew -mail: DunajskS@5c0f96a3078844a4801dba9a3ab9ce0b.bitwarden.com -carLicense: SWOXC8 -departmentNumber: 2585 -employeeType: Contract -homePhone: +1 804 295-3907 -initials: S. D. -mobile: +1 804 857-8411 -pager: +1 804 473-3363 -roomNumber: 8425 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosalie Feild,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosalie Feild -sn: Feild -description: This is Rosalie Feild's description -facsimileTelephoneNumber: +1 408 351-4182 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 744-1076 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: FeildR -givenName: Rosalie -mail: FeildR@c2ddaecf94964357886149e7833e3267.bitwarden.com -carLicense: 2CV3AR -departmentNumber: 5368 -employeeType: Contract -homePhone: +1 408 260-3660 -initials: R. F. -mobile: +1 408 854-7847 -pager: +1 408 296-8301 -roomNumber: 9886 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Karyl Scarrow,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karyl Scarrow -sn: Scarrow -description: This is Karyl Scarrow's description -facsimileTelephoneNumber: +1 818 689-1410 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 342-2363 -title: Chief Management Janitor -userPassword: Password1 -uid: ScarrowK -givenName: Karyl -mail: ScarrowK@9c2e6c9cd4a84de798c45d0f7e513159.bitwarden.com -carLicense: 4RW67U -departmentNumber: 6427 -employeeType: Normal -homePhone: +1 818 346-1666 -initials: K. S. -mobile: +1 818 931-4632 -pager: +1 818 938-3591 -roomNumber: 9823 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imtaz Rafflin -sn: Rafflin -description: This is Imtaz Rafflin's description -facsimileTelephoneNumber: +1 408 295-3631 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 408 988-6532 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: RafflinI -givenName: Imtaz -mail: RafflinI@289c2891b86d472eb2e530ea709a709c.bitwarden.com -carLicense: 8FP6OX -departmentNumber: 8019 -employeeType: Normal -homePhone: +1 408 141-3541 -initials: I. R. -mobile: +1 408 296-8095 -pager: +1 408 104-5250 -roomNumber: 8063 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hoog Fielden,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hoog Fielden -sn: Fielden -description: This is Hoog Fielden's description -facsimileTelephoneNumber: +1 510 811-3203 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 835-2910 -title: Junior Administrative Admin -userPassword: Password1 -uid: FieldenH -givenName: Hoog -mail: FieldenH@132c49195697451c98a0a564a1ead019.bitwarden.com -carLicense: RY1MFV -departmentNumber: 2971 -employeeType: Contract -homePhone: +1 510 162-5196 -initials: H. F. -mobile: +1 510 787-1179 -pager: +1 510 584-8538 -roomNumber: 8162 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fredericka Corbett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fredericka Corbett -sn: Corbett -description: This is Fredericka Corbett's description -facsimileTelephoneNumber: +1 510 423-6836 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 510 699-6586 -title: Associate Payroll Assistant -userPassword: Password1 -uid: CorbettF -givenName: Fredericka -mail: CorbettF@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com -carLicense: C5CIX0 -departmentNumber: 8748 -employeeType: Normal -homePhone: +1 510 202-6174 -initials: F. C. -mobile: +1 510 727-9108 -pager: +1 510 189-5151 -roomNumber: 9654 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mabelle Bondurant,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mabelle Bondurant -sn: Bondurant -description: This is Mabelle Bondurant's description -facsimileTelephoneNumber: +1 415 958-3168 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 384-7641 -title: Junior Management Developer -userPassword: Password1 -uid: BonduraM -givenName: Mabelle -mail: BonduraM@81e6fd93e0bf4f1694c27f343181e2cc.bitwarden.com -carLicense: 25WFDK -departmentNumber: 2258 -employeeType: Normal -homePhone: +1 415 100-5146 -initials: M. B. -mobile: +1 415 709-2556 -pager: +1 415 730-1269 -roomNumber: 9312 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Zafar McCarron,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zafar McCarron -sn: McCarron -description: This is Zafar McCarron's description -facsimileTelephoneNumber: +1 206 532-8471 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 908-1544 -title: Junior Management Fellow -userPassword: Password1 -uid: McCarroZ -givenName: Zafar -mail: McCarroZ@bc040a54299440bb80e6ade2d1ef97a9.bitwarden.com -carLicense: OW3X28 -departmentNumber: 8104 -employeeType: Employee -homePhone: +1 206 723-2461 -initials: Z. M. -mobile: +1 206 393-5607 -pager: +1 206 295-7373 -roomNumber: 8006 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winne Pitcairn -sn: Pitcairn -description: This is Winne Pitcairn's description -facsimileTelephoneNumber: +1 804 758-7145 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 416-1408 -title: Junior Product Testing Sales Rep -userPassword: Password1 -uid: PitcairW -givenName: Winne -mail: PitcairW@dc3b17872e63439bbb080a2a2f978fc9.bitwarden.com -carLicense: XOAXR1 -departmentNumber: 6417 -employeeType: Contract -homePhone: +1 804 986-9744 -initials: W. P. -mobile: +1 804 215-4656 -pager: +1 804 425-9936 -roomNumber: 8026 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Malia Faletti,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malia Faletti -sn: Faletti -description: This is Malia Faletti's description -facsimileTelephoneNumber: +1 818 171-7183 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 818 586-6464 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: FalettiM -givenName: Malia -mail: FalettiM@6ab6d840c20844eead1fabc30b82fca2.bitwarden.com -carLicense: DEUBPW -departmentNumber: 8881 -employeeType: Contract -homePhone: +1 818 966-3312 -initials: M. F. -mobile: +1 818 997-4004 -pager: +1 818 673-8479 -roomNumber: 8498 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nesta Mawji,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nesta Mawji -sn: Mawji -description: This is Nesta Mawji's description -facsimileTelephoneNumber: +1 206 665-8957 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 319-5312 -title: Chief Management Figurehead -userPassword: Password1 -uid: MawjiN -givenName: Nesta -mail: MawjiN@939e12c12d5d4580810a1d6603b95234.bitwarden.com -carLicense: TS3TJD -departmentNumber: 7833 -employeeType: Employee -homePhone: +1 206 152-5103 -initials: N. M. -mobile: +1 206 907-5652 -pager: +1 206 876-3082 -roomNumber: 8194 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlette Fieldsup -sn: Fieldsup -description: This is Arlette Fieldsup's description -facsimileTelephoneNumber: +1 804 546-3018 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 922-3923 -title: Associate Human Resources Artist -userPassword: Password1 -uid: FieldsuA -givenName: Arlette -mail: FieldsuA@ac51bd925c934bb88fa663b44a5d364d.bitwarden.com -carLicense: PFQX8Q -departmentNumber: 9455 -employeeType: Normal -homePhone: +1 804 314-9189 -initials: A. F. -mobile: +1 804 508-4981 -pager: +1 804 744-7338 -roomNumber: 9624 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandrine Cotugno -sn: Cotugno -description: This is Sandrine Cotugno's description -facsimileTelephoneNumber: +1 213 276-9344 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 261-6517 -title: Junior Administrative Fellow -userPassword: Password1 -uid: CotugnoS -givenName: Sandrine -mail: CotugnoS@01fa9120f2a14ce7afdb05e2fa84950c.bitwarden.com -carLicense: TQCAKS -departmentNumber: 7250 -employeeType: Contract -homePhone: +1 213 455-6133 -initials: S. C. -mobile: +1 213 966-5868 -pager: +1 213 814-7367 -roomNumber: 9231 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Liliana Vaillant,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liliana Vaillant -sn: Vaillant -description: This is Liliana Vaillant's description -facsimileTelephoneNumber: +1 818 145-9032 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 591-9872 -title: Junior Payroll Architect -userPassword: Password1 -uid: VaillanL -givenName: Liliana -mail: VaillanL@fd092081b1e04b7d8cd5c22f860fda23.bitwarden.com -carLicense: QVKEPI -departmentNumber: 2826 -employeeType: Contract -homePhone: +1 818 840-4844 -initials: L. V. -mobile: +1 818 682-1609 -pager: +1 818 440-8718 -roomNumber: 8000 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Den Arora,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Den Arora -sn: Arora -description: This is Den Arora's description -facsimileTelephoneNumber: +1 206 819-6466 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 699-1816 -title: Associate Administrative Manager -userPassword: Password1 -uid: AroraD -givenName: Den -mail: AroraD@dbc4eab54b5f4d779246b56a41ba3d42.bitwarden.com -carLicense: 87GEY1 -departmentNumber: 8851 -employeeType: Contract -homePhone: +1 206 871-9590 -initials: D. A. -mobile: +1 206 375-2306 -pager: +1 206 591-8563 -roomNumber: 8691 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rosabel Parkins,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosabel Parkins -sn: Parkins -description: This is Rosabel Parkins's description -facsimileTelephoneNumber: +1 510 572-5184 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 510 808-8811 -title: Associate Product Development Punk -userPassword: Password1 -uid: ParkinsR -givenName: Rosabel -mail: ParkinsR@e0bce7062963483283b8f7e6ab9a5e11.bitwarden.com -carLicense: 20TQXK -departmentNumber: 1240 -employeeType: Employee -homePhone: +1 510 341-5405 -initials: R. P. -mobile: +1 510 975-1956 -pager: +1 510 996-1991 -roomNumber: 8931 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Edyta Moroz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edyta Moroz -sn: Moroz -description: This is Edyta Moroz's description -facsimileTelephoneNumber: +1 510 348-9536 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 994-2435 -title: Master Human Resources Admin -userPassword: Password1 -uid: MorozE -givenName: Edyta -mail: MorozE@a82ac5cd9b7b4528b6af3599600d610a.bitwarden.com -carLicense: 2XXM9X -departmentNumber: 6060 -employeeType: Employee -homePhone: +1 510 510-2772 -initials: E. M. -mobile: +1 510 753-9810 -pager: +1 510 638-3770 -roomNumber: 8151 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=James Brunato,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: James Brunato -sn: Brunato -description: This is James Brunato's description -facsimileTelephoneNumber: +1 213 491-1305 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 213 239-5491 -title: Chief Product Development President -userPassword: Password1 -uid: BrunatoJ -givenName: James -mail: BrunatoJ@a30b452edd62411b874edf6881fc9b52.bitwarden.com -carLicense: SR5TWE -departmentNumber: 3350 -employeeType: Contract -homePhone: +1 213 409-3150 -initials: J. B. -mobile: +1 213 549-7610 -pager: +1 213 172-7782 -roomNumber: 8377 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Retha Miceli,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Retha Miceli -sn: Miceli -description: This is Retha Miceli's description -facsimileTelephoneNumber: +1 818 228-2447 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 323-1337 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: MiceliR -givenName: Retha -mail: MiceliR@4275578a22d3494fb8ea30d676dc9c77.bitwarden.com -carLicense: LHQ2YE -departmentNumber: 6104 -employeeType: Employee -homePhone: +1 818 459-9479 -initials: R. M. -mobile: +1 818 615-9120 -pager: +1 818 739-6833 -roomNumber: 9118 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bregitte DiFalco -sn: DiFalco -description: This is Bregitte DiFalco's description -facsimileTelephoneNumber: +1 818 768-9974 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 818 979-2704 -title: Chief Administrative Vice President -userPassword: Password1 -uid: DiFalcoB -givenName: Bregitte -mail: DiFalcoB@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com -carLicense: NLG1CP -departmentNumber: 4976 -employeeType: Contract -homePhone: +1 818 477-6929 -initials: B. D. -mobile: +1 818 961-8248 -pager: +1 818 464-4892 -roomNumber: 9568 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Emmie Hage,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emmie Hage -sn: Hage -description: This is Emmie Hage's description -facsimileTelephoneNumber: +1 510 423-9860 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 593-4118 -title: Chief Product Development Dictator -userPassword: Password1 -uid: HageE -givenName: Emmie -mail: HageE@c109e0def6a3408dba244e442ff2c165.bitwarden.com -carLicense: SVRIS8 -departmentNumber: 6204 -employeeType: Contract -homePhone: +1 510 925-7627 -initials: E. H. -mobile: +1 510 341-1228 -pager: +1 510 598-2009 -roomNumber: 9312 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Open Kozsukan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Open Kozsukan -sn: Kozsukan -description: This is Open Kozsukan's description -facsimileTelephoneNumber: +1 408 355-1405 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 408 287-6046 -title: Master Human Resources Engineer -userPassword: Password1 -uid: KozsukaO -givenName: Open -mail: KozsukaO@d1b17deb97cd4cec88efa6e9b4d6e774.bitwarden.com -carLicense: YXMU6I -departmentNumber: 3169 -employeeType: Contract -homePhone: +1 408 398-9051 -initials: O. K. -mobile: +1 408 284-8477 -pager: +1 408 303-6987 -roomNumber: 8171 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Crystal Dommety,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crystal Dommety -sn: Dommety -description: This is Crystal Dommety's description -facsimileTelephoneNumber: +1 818 800-5073 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 683-4078 -title: Chief Product Testing Technician -userPassword: Password1 -uid: DommetyC -givenName: Crystal -mail: DommetyC@b2f3aa04c0ef4b03a42b0509b9df028c.bitwarden.com -carLicense: XOXTGE -departmentNumber: 9666 -employeeType: Contract -homePhone: +1 818 800-9778 -initials: C. D. -mobile: +1 818 164-3793 -pager: +1 818 864-5123 -roomNumber: 8760 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alfreda VanLaten -sn: VanLaten -description: This is Alfreda VanLaten's description -facsimileTelephoneNumber: +1 206 447-6734 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 560-5161 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: VanLateA -givenName: Alfreda -mail: VanLateA@795d165ac426423b9759f469242c1c41.bitwarden.com -carLicense: EY041S -departmentNumber: 8952 -employeeType: Employee -homePhone: +1 206 199-3573 -initials: A. V. -mobile: +1 206 445-7692 -pager: +1 206 403-1525 -roomNumber: 9561 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lindsey Coxall,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lindsey Coxall -sn: Coxall -description: This is Lindsey Coxall's description -facsimileTelephoneNumber: +1 213 853-2356 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 957-3869 -title: Master Product Development Sales Rep -userPassword: Password1 -uid: CoxallL -givenName: Lindsey -mail: CoxallL@7ed78fa65633416c973b406fcda1b087.bitwarden.com -carLicense: JBUR8M -departmentNumber: 6663 -employeeType: Normal -homePhone: +1 213 615-1556 -initials: L. C. -mobile: +1 213 488-7154 -pager: +1 213 997-6082 -roomNumber: 8285 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Morgen Theoret,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morgen Theoret -sn: Theoret -description: This is Morgen Theoret's description -facsimileTelephoneNumber: +1 213 335-3717 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 427-3726 -title: Chief Management Madonna -userPassword: Password1 -uid: TheoretM -givenName: Morgen -mail: TheoretM@dcdbaaadaaee46828eda807cdf13cfd2.bitwarden.com -carLicense: IDDMPP -departmentNumber: 4965 -employeeType: Employee -homePhone: +1 213 542-1811 -initials: M. T. -mobile: +1 213 746-4515 -pager: +1 213 723-2465 -roomNumber: 8013 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coralyn Hinchey -sn: Hinchey -description: This is Coralyn Hinchey's description -facsimileTelephoneNumber: +1 206 671-5246 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 205-9033 -title: Supreme Administrative Director -userPassword: Password1 -uid: HincheyC -givenName: Coralyn -mail: HincheyC@06ae8344cdf64f67b4eccb16dbf6b4a7.bitwarden.com -carLicense: 77W2I1 -departmentNumber: 9146 -employeeType: Employee -homePhone: +1 206 395-3738 -initials: C. H. -mobile: +1 206 144-3068 -pager: +1 206 894-1950 -roomNumber: 8347 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anallise Golas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anallise Golas -sn: Golas -description: This is Anallise Golas's description -facsimileTelephoneNumber: +1 206 643-3278 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 477-7543 -title: Associate Human Resources Figurehead -userPassword: Password1 -uid: GolasA -givenName: Anallise -mail: GolasA@cb658de379fe4207855897a811933c01.bitwarden.com -carLicense: BGEO95 -departmentNumber: 2485 -employeeType: Normal -homePhone: +1 206 550-1632 -initials: A. G. -mobile: +1 206 515-9469 -pager: +1 206 851-7239 -roomNumber: 9717 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emad Sztein,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emad Sztein -sn: Sztein -description: This is Emad Sztein's description -facsimileTelephoneNumber: +1 804 446-5395 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 951-7352 -title: Master Janitorial Fellow -userPassword: Password1 -uid: SzteinE -givenName: Emad -mail: SzteinE@708a672c33064628b91c3dd2fa37a575.bitwarden.com -carLicense: XJ3HQU -departmentNumber: 7469 -employeeType: Employee -homePhone: +1 804 395-4729 -initials: E. S. -mobile: +1 804 274-1856 -pager: +1 804 254-8863 -roomNumber: 9581 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tam Schlagenhauf -sn: Schlagenhauf -description: This is Tam Schlagenhauf's description -facsimileTelephoneNumber: +1 213 431-9007 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 552-6662 -title: Master Human Resources Visionary -userPassword: Password1 -uid: SchlageT -givenName: Tam -mail: SchlageT@784a879fa47d45e28a6db940d17f13d2.bitwarden.com -carLicense: T6CSII -departmentNumber: 2966 -employeeType: Normal -homePhone: +1 213 190-6405 -initials: T. S. -mobile: +1 213 673-3558 -pager: +1 213 492-3734 -roomNumber: 8185 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marianne Makarenko,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marianne Makarenko -sn: Makarenko -description: This is Marianne Makarenko's description -facsimileTelephoneNumber: +1 804 967-4342 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 310-3400 -title: Supreme Payroll President -userPassword: Password1 -uid: MakarenM -givenName: Marianne -mail: MakarenM@296a8499fb454ab5ab80945b9f63d6db.bitwarden.com -carLicense: OXMPYO -departmentNumber: 1433 -employeeType: Employee -homePhone: +1 804 291-4331 -initials: M. M. -mobile: +1 804 560-3097 -pager: +1 804 166-4306 -roomNumber: 9288 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anda Lytle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anda Lytle -sn: Lytle -description: This is Anda Lytle's description -facsimileTelephoneNumber: +1 510 571-8490 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 574-6337 -title: Supreme Management Architect -userPassword: Password1 -uid: LytleA -givenName: Anda -mail: LytleA@b2ea217e485947069435a94bbac69038.bitwarden.com -carLicense: GOIG78 -departmentNumber: 4043 -employeeType: Employee -homePhone: +1 510 884-1753 -initials: A. L. -mobile: +1 510 241-1020 -pager: +1 510 703-1684 -roomNumber: 8499 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anneliese Hanser,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anneliese Hanser -sn: Hanser -description: This is Anneliese Hanser's description -facsimileTelephoneNumber: +1 804 252-1747 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 804 466-1296 -title: Supreme Product Development Admin -userPassword: Password1 -uid: HanserA -givenName: Anneliese -mail: HanserA@e6469211170045b582fc8ba959023885.bitwarden.com -carLicense: BNV2CY -departmentNumber: 5169 -employeeType: Normal -homePhone: +1 804 714-8056 -initials: A. H. -mobile: +1 804 148-3834 -pager: +1 804 689-8113 -roomNumber: 9050 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Herb Gagnon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herb Gagnon -sn: Gagnon -description: This is Herb Gagnon's description -facsimileTelephoneNumber: +1 206 133-8644 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 103-7815 -title: Junior Peons Stooge -userPassword: Password1 -uid: GagnonH -givenName: Herb -mail: GagnonH@dbfb37190cec481f85ffb172616576b1.bitwarden.com -carLicense: GYY5MY -departmentNumber: 8490 -employeeType: Employee -homePhone: +1 206 792-7885 -initials: H. G. -mobile: +1 206 486-2122 -pager: +1 206 106-4674 -roomNumber: 9244 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Isabella Conroy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isabella Conroy -sn: Conroy -description: This is Isabella Conroy's description -facsimileTelephoneNumber: +1 415 567-6443 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 814-9435 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: ConroyI -givenName: Isabella -mail: ConroyI@bedabc2584d54b45a84df472911e0618.bitwarden.com -carLicense: PBCOI3 -departmentNumber: 1067 -employeeType: Normal -homePhone: +1 415 798-5925 -initials: I. C. -mobile: +1 415 872-2115 -pager: +1 415 717-9868 -roomNumber: 8328 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brandon Menaker,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandon Menaker -sn: Menaker -description: This is Brandon Menaker's description -facsimileTelephoneNumber: +1 206 949-4786 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 275-2500 -title: Associate Janitorial Technician -userPassword: Password1 -uid: MenakerB -givenName: Brandon -mail: MenakerB@f22b1e0b52f04f96b88d6fd9a1b75a51.bitwarden.com -carLicense: PD3U9T -departmentNumber: 1609 -employeeType: Employee -homePhone: +1 206 889-5048 -initials: B. M. -mobile: +1 206 180-5305 -pager: +1 206 576-8813 -roomNumber: 8405 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mame Sanford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mame Sanford -sn: Sanford -description: This is Mame Sanford's description -facsimileTelephoneNumber: +1 408 307-1100 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 835-9391 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: SanfordM -givenName: Mame -mail: SanfordM@1bd9378f4faa43eeb60412b52d7ba309.bitwarden.com -carLicense: 0YIWW5 -departmentNumber: 5769 -employeeType: Employee -homePhone: +1 408 284-9247 -initials: M. S. -mobile: +1 408 953-8618 -pager: +1 408 940-1929 -roomNumber: 8509 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bea Aloi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bea Aloi -sn: Aloi -description: This is Bea Aloi's description -facsimileTelephoneNumber: +1 818 922-5446 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 297-4674 -title: Master Peons Vice President -userPassword: Password1 -uid: AloiB -givenName: Bea -mail: AloiB@634978d04fca41d6af5289220bc42474.bitwarden.com -carLicense: XSK8ND -departmentNumber: 4803 -employeeType: Normal -homePhone: +1 818 874-5397 -initials: B. A. -mobile: +1 818 885-1732 -pager: +1 818 731-9504 -roomNumber: 8720 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sylvia Alink,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sylvia Alink -sn: Alink -description: This is Sylvia Alink's description -facsimileTelephoneNumber: +1 408 121-8978 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 542-2122 -title: Associate Management Architect -userPassword: Password1 -uid: AlinkS -givenName: Sylvia -mail: AlinkS@a788cde9cf67461c89ae1bce3d05e3df.bitwarden.com -carLicense: K1KA6W -departmentNumber: 8197 -employeeType: Normal -homePhone: +1 408 513-7225 -initials: S. A. -mobile: +1 408 191-8154 -pager: +1 408 750-3208 -roomNumber: 8556 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mora McGovern,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mora McGovern -sn: McGovern -description: This is Mora McGovern's description -facsimileTelephoneNumber: +1 510 571-7124 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 414-7011 -title: Junior Human Resources Punk -userPassword: Password1 -uid: McGoverM -givenName: Mora -mail: McGoverM@cf949ad46d1d4454911d4e2468d96da8.bitwarden.com -carLicense: XU2DDD -departmentNumber: 8148 -employeeType: Employee -homePhone: +1 510 840-9557 -initials: M. M. -mobile: +1 510 784-9886 -pager: +1 510 118-4179 -roomNumber: 9287 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tiphani Lieure,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiphani Lieure -sn: Lieure -description: This is Tiphani Lieure's description -facsimileTelephoneNumber: +1 818 618-7213 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 818 295-9297 -title: Associate Administrative Czar -userPassword: Password1 -uid: LieureT -givenName: Tiphani -mail: LieureT@dae020ec31d14d5190cd1eb64ded6424.bitwarden.com -carLicense: M1UXNQ -departmentNumber: 4143 -employeeType: Normal -homePhone: +1 818 106-4741 -initials: T. L. -mobile: +1 818 646-2598 -pager: +1 818 566-7311 -roomNumber: 9447 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Consolata Bejar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Consolata Bejar -sn: Bejar -description: This is Consolata Bejar's description -facsimileTelephoneNumber: +1 213 347-2877 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 237-1984 -title: Chief Peons Warrior -userPassword: Password1 -uid: BejarC -givenName: Consolata -mail: BejarC@b8b19224acee46229ad2985e549b9721.bitwarden.com -carLicense: 0F0QJD -departmentNumber: 9500 -employeeType: Contract -homePhone: +1 213 954-6217 -initials: C. B. -mobile: +1 213 640-7414 -pager: +1 213 300-2229 -roomNumber: 8107 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Winnie Jensenworth,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winnie Jensenworth -sn: Jensenworth -description: This is Winnie Jensenworth's description -facsimileTelephoneNumber: +1 415 517-9142 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 545-2433 -title: Junior Management Technician -userPassword: Password1 -uid: JensenwW -givenName: Winnie -mail: JensenwW@3e500286762446ec8a3697b2944efa12.bitwarden.com -carLicense: B9GSI7 -departmentNumber: 1305 -employeeType: Employee -homePhone: +1 415 931-7838 -initials: W. J. -mobile: +1 415 810-6459 -pager: +1 415 189-4761 -roomNumber: 8947 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcy Zelenka -sn: Zelenka -description: This is Marcy Zelenka's description -facsimileTelephoneNumber: +1 804 243-5046 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 804 238-8148 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: ZelenkaM -givenName: Marcy -mail: ZelenkaM@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com -carLicense: SI7I67 -departmentNumber: 9218 -employeeType: Employee -homePhone: +1 804 207-8249 -initials: M. Z. -mobile: +1 804 800-8124 -pager: +1 804 494-5287 -roomNumber: 9173 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Takashi Lamirande,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Takashi Lamirande -sn: Lamirande -description: This is Takashi Lamirande's description -facsimileTelephoneNumber: +1 408 692-6531 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 372-1431 -title: Associate Product Development Czar -userPassword: Password1 -uid: LamiranT -givenName: Takashi -mail: LamiranT@1ae520db2b4049958bea389114d0192d.bitwarden.com -carLicense: TWY3HK -departmentNumber: 3514 -employeeType: Normal -homePhone: +1 408 643-6046 -initials: T. L. -mobile: +1 408 594-4215 -pager: +1 408 165-9251 -roomNumber: 9603 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiyoon Pape -sn: Pape -description: This is Kiyoon Pape's description -facsimileTelephoneNumber: +1 408 159-2729 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 408 925-8396 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: PapeK -givenName: Kiyoon -mail: PapeK@01c459dd18154d91bb999b9b97f18487.bitwarden.com -carLicense: W571AC -departmentNumber: 7140 -employeeType: Employee -homePhone: +1 408 572-7031 -initials: K. P. -mobile: +1 408 773-1442 -pager: +1 408 938-2409 -roomNumber: 8610 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosamund Serack,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosamund Serack -sn: Serack -description: This is Rosamund Serack's description -facsimileTelephoneNumber: +1 415 108-6717 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 350-6471 -title: Junior Payroll Consultant -userPassword: Password1 -uid: SerackR -givenName: Rosamund -mail: SerackR@bf2f61fe09a540bebb83fd50294209be.bitwarden.com -carLicense: 4PVW9K -departmentNumber: 6295 -employeeType: Employee -homePhone: +1 415 724-3244 -initials: R. S. -mobile: +1 415 290-1438 -pager: +1 415 363-7578 -roomNumber: 9194 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdalena Nagenthiram -sn: Nagenthiram -description: This is Magdalena Nagenthiram's description -facsimileTelephoneNumber: +1 415 584-9052 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 570-5366 -title: Associate Janitorial President -userPassword: Password1 -uid: NagenthM -givenName: Magdalena -mail: NagenthM@43e074754773490d9b66c094be93c694.bitwarden.com -carLicense: XK0MTQ -departmentNumber: 5053 -employeeType: Normal -homePhone: +1 415 552-6346 -initials: M. N. -mobile: +1 415 149-6228 -pager: +1 415 709-4385 -roomNumber: 8025 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Natalee Keitel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natalee Keitel -sn: Keitel -description: This is Natalee Keitel's description -facsimileTelephoneNumber: +1 510 235-9472 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 636-1969 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: KeitelN -givenName: Natalee -mail: KeitelN@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com -carLicense: 5QABYB -departmentNumber: 9713 -employeeType: Normal -homePhone: +1 510 842-8515 -initials: N. K. -mobile: +1 510 609-4037 -pager: +1 510 993-9563 -roomNumber: 8995 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Desiree Conde,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desiree Conde -sn: Conde -description: This is Desiree Conde's description -facsimileTelephoneNumber: +1 818 397-8323 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 866-1530 -title: Chief Peons Consultant -userPassword: Password1 -uid: CondeD -givenName: Desiree -mail: CondeD@76f6104d33de482eb35b100eb7033678.bitwarden.com -carLicense: Q1W7ST -departmentNumber: 7228 -employeeType: Employee -homePhone: +1 818 324-2748 -initials: D. C. -mobile: +1 818 631-6205 -pager: +1 818 386-8966 -roomNumber: 8440 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clyde Kamal,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clyde Kamal -sn: Kamal -description: This is Clyde Kamal's description -facsimileTelephoneNumber: +1 408 572-8562 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 207-4374 -title: Associate Human Resources Figurehead -userPassword: Password1 -uid: KamalC -givenName: Clyde -mail: KamalC@ae9e40f26a5947a6a794749db94a6421.bitwarden.com -carLicense: 86ESHU -departmentNumber: 2214 -employeeType: Normal -homePhone: +1 408 753-1828 -initials: C. K. -mobile: +1 408 284-9675 -pager: +1 408 850-9525 -roomNumber: 9913 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shana Mulvie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shana Mulvie -sn: Mulvie -description: This is Shana Mulvie's description -facsimileTelephoneNumber: +1 415 446-4885 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 698-7215 -title: Master Management Evangelist -userPassword: Password1 -uid: MulvieS -givenName: Shana -mail: MulvieS@a2c9df9a4cd24389b4a0116cc38b3328.bitwarden.com -carLicense: C6KOUS -departmentNumber: 6408 -employeeType: Contract -homePhone: +1 415 855-5751 -initials: S. M. -mobile: +1 415 373-3953 -pager: +1 415 261-9593 -roomNumber: 8838 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=PeyKee Rios,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PeyKee Rios -sn: Rios -description: This is PeyKee Rios's description -facsimileTelephoneNumber: +1 804 189-7688 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 131-5748 -title: Junior Management Visionary -userPassword: Password1 -uid: RiosP -givenName: PeyKee -mail: RiosP@8fd45f1616e84409af12cbcbd209c8d9.bitwarden.com -carLicense: LPRAG7 -departmentNumber: 7986 -employeeType: Employee -homePhone: +1 804 713-8404 -initials: P. R. -mobile: +1 804 459-3762 -pager: +1 804 945-1600 -roomNumber: 8986 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Costas Szabo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Costas Szabo -sn: Szabo -description: This is Costas Szabo's description -facsimileTelephoneNumber: +1 408 310-2051 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 523-2590 -title: Junior Product Development Architect -userPassword: Password1 -uid: SzaboC -givenName: Costas -mail: SzaboC@a6010d4cf59f403c9d7f9d2a99b954e8.bitwarden.com -carLicense: VD9BDI -departmentNumber: 7391 -employeeType: Contract -homePhone: +1 408 416-4524 -initials: C. S. -mobile: +1 408 763-8379 -pager: +1 408 629-8020 -roomNumber: 8991 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilf GaudetMontsion -sn: GaudetMontsion -description: This is Wilf GaudetMontsion's description -facsimileTelephoneNumber: +1 804 497-8779 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 138-5546 -title: Master Human Resources Admin -userPassword: Password1 -uid: GaudetMW -givenName: Wilf -mail: GaudetMW@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com -carLicense: HJR9H5 -departmentNumber: 1591 -employeeType: Employee -homePhone: +1 804 676-7491 -initials: W. G. -mobile: +1 804 711-3758 -pager: +1 804 111-9287 -roomNumber: 8927 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Su Organization,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Su Organization -sn: Organization -description: This is Su Organization's description -facsimileTelephoneNumber: +1 510 364-7646 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 695-2447 -title: Master Management Pinhead -userPassword: Password1 -uid: OrganizS -givenName: Su -mail: OrganizS@85b8d92598e444df802ef3bb350fde3d.bitwarden.com -carLicense: ADT8CR -departmentNumber: 7642 -employeeType: Employee -homePhone: +1 510 966-1049 -initials: S. O. -mobile: +1 510 579-3475 -pager: +1 510 139-9938 -roomNumber: 8545 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bonni Lonnman -sn: Lonnman -description: This is Bonni Lonnman's description -facsimileTelephoneNumber: +1 206 194-8731 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 206 154-2278 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: LonnmanB -givenName: Bonni -mail: LonnmanB@0c57744da3fe41ddac31ce862540bae7.bitwarden.com -carLicense: CJBMFC -departmentNumber: 3837 -employeeType: Employee -homePhone: +1 206 324-8349 -initials: B. L. -mobile: +1 206 871-5536 -pager: +1 206 895-4971 -roomNumber: 8510 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Norean Brien,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norean Brien -sn: Brien -description: This is Norean Brien's description -facsimileTelephoneNumber: +1 818 900-7253 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 176-2098 -title: Associate Administrative Mascot -userPassword: Password1 -uid: BrienN -givenName: Norean -mail: BrienN@6350670014bc4ca5b2d98b891ee95b9e.bitwarden.com -carLicense: O2L80U -departmentNumber: 4432 -employeeType: Employee -homePhone: +1 818 933-8120 -initials: N. B. -mobile: +1 818 695-3009 -pager: +1 818 734-5305 -roomNumber: 8062 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tiena Clapham,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiena Clapham -sn: Clapham -description: This is Tiena Clapham's description -facsimileTelephoneNumber: +1 818 907-1667 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 941-2061 -title: Chief Management Figurehead -userPassword: Password1 -uid: ClaphamT -givenName: Tiena -mail: ClaphamT@519077386b7144648a1af65801ba340e.bitwarden.com -carLicense: 5PGXMG -departmentNumber: 4800 -employeeType: Employee -homePhone: +1 818 299-8561 -initials: T. C. -mobile: +1 818 501-5123 -pager: +1 818 595-8147 -roomNumber: 9815 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oralia Laviolette -sn: Laviolette -description: This is Oralia Laviolette's description -facsimileTelephoneNumber: +1 415 724-7561 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 762-4107 -title: Supreme Janitorial Director -userPassword: Password1 -uid: LavioleO -givenName: Oralia -mail: LavioleO@0bf16d212dca48d58b5ba2e7e2475978.bitwarden.com -carLicense: DIK6FU -departmentNumber: 3058 -employeeType: Contract -homePhone: +1 415 303-8972 -initials: O. L. -mobile: +1 415 622-5890 -pager: +1 415 404-7052 -roomNumber: 8672 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krishnamurthy Melton -sn: Melton -description: This is Krishnamurthy Melton's description -facsimileTelephoneNumber: +1 510 521-2408 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 401-3752 -title: Master Payroll Stooge -userPassword: Password1 -uid: MeltonK -givenName: Krishnamurthy -mail: MeltonK@7bb52bb06b244b41a3cd78dfcc311e5f.bitwarden.com -carLicense: FP0EBP -departmentNumber: 5367 -employeeType: Normal -homePhone: +1 510 243-5247 -initials: K. M. -mobile: +1 510 196-4172 -pager: +1 510 859-3339 -roomNumber: 8950 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gursharan Athwal -sn: Athwal -description: This is Gursharan Athwal's description -facsimileTelephoneNumber: +1 818 179-8611 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 589-7470 -title: Associate Human Resources Visionary -userPassword: Password1 -uid: AthwalG -givenName: Gursharan -mail: AthwalG@5fcb2729c2db4bbc94757b6ad2c7a275.bitwarden.com -carLicense: F07TR8 -departmentNumber: 2927 -employeeType: Normal -homePhone: +1 818 893-8022 -initials: G. A. -mobile: +1 818 147-4181 -pager: +1 818 301-8777 -roomNumber: 9934 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jade Jims,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jade Jims -sn: Jims -description: This is Jade Jims's description -facsimileTelephoneNumber: +1 213 104-3922 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 704-1417 -title: Junior Management Architect -userPassword: Password1 -uid: JimsJ -givenName: Jade -mail: JimsJ@0a6ccfe4eb2e49debe0647e11b1f99cc.bitwarden.com -carLicense: 0PA2W8 -departmentNumber: 8847 -employeeType: Normal -homePhone: +1 213 573-5873 -initials: J. J. -mobile: +1 213 993-1445 -pager: +1 213 184-8000 -roomNumber: 9403 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ramin McKeen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramin McKeen -sn: McKeen -description: This is Ramin McKeen's description -facsimileTelephoneNumber: +1 818 274-1645 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 292-7438 -title: Associate Human Resources Punk -userPassword: Password1 -uid: McKeenR -givenName: Ramin -mail: McKeenR@866f4a15cdb24c75a67bad9f00bdce9e.bitwarden.com -carLicense: 1J82G6 -departmentNumber: 5287 -employeeType: Employee -homePhone: +1 818 775-1010 -initials: R. M. -mobile: +1 818 358-2283 -pager: +1 818 258-2833 -roomNumber: 9927 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Satyajit Bryenton -sn: Bryenton -description: This is Satyajit Bryenton's description -facsimileTelephoneNumber: +1 408 117-5039 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 537-3971 -title: Supreme Human Resources Architect -userPassword: Password1 -uid: BryentoS -givenName: Satyajit -mail: BryentoS@25cd954a684b4b73a5dc6672df8e79ee.bitwarden.com -carLicense: 9VRBUN -departmentNumber: 3350 -employeeType: Normal -homePhone: +1 408 962-8416 -initials: S. B. -mobile: +1 408 785-3376 -pager: +1 408 553-1191 -roomNumber: 8809 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quintilla Schirtzinger -sn: Schirtzinger -description: This is Quintilla Schirtzinger's description -facsimileTelephoneNumber: +1 804 108-6995 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 351-6738 -title: Supreme Management Admin -userPassword: Password1 -uid: SchirtzQ -givenName: Quintilla -mail: SchirtzQ@3703481ba2f54b52ba43477946921782.bitwarden.com -carLicense: T6X117 -departmentNumber: 4587 -employeeType: Contract -homePhone: +1 804 976-5293 -initials: Q. S. -mobile: +1 804 126-1125 -pager: +1 804 139-1272 -roomNumber: 8048 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Steffie Bohn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steffie Bohn -sn: Bohn -description: This is Steffie Bohn's description -facsimileTelephoneNumber: +1 206 487-7797 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 751-3251 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: BohnS -givenName: Steffie -mail: BohnS@50c897b07621433593f9bdfb9cb664c4.bitwarden.com -carLicense: DPI0YJ -departmentNumber: 8128 -employeeType: Normal -homePhone: +1 206 321-1757 -initials: S. B. -mobile: +1 206 925-5138 -pager: +1 206 178-4622 -roomNumber: 8174 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rachael DuBois,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rachael DuBois -sn: DuBois -description: This is Rachael DuBois's description -facsimileTelephoneNumber: +1 408 917-7354 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 130-1489 -title: Associate Payroll Writer -userPassword: Password1 -uid: DuBoisR -givenName: Rachael -mail: DuBoisR@d5e1ce2fb74a43bfad3a9a3884b1f907.bitwarden.com -carLicense: 0V3FDP -departmentNumber: 3177 -employeeType: Employee -homePhone: +1 408 381-4207 -initials: R. D. -mobile: +1 408 810-7346 -pager: +1 408 617-7438 -roomNumber: 8643 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kore Mayhugh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kore Mayhugh -sn: Mayhugh -description: This is Kore Mayhugh's description -facsimileTelephoneNumber: +1 415 640-2418 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 702-9860 -title: Master Product Development Engineer -userPassword: Password1 -uid: MayhughK -givenName: Kore -mail: MayhughK@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com -carLicense: YG3E2Q -departmentNumber: 1681 -employeeType: Contract -homePhone: +1 415 507-6956 -initials: K. M. -mobile: +1 415 421-5223 -pager: +1 415 475-9439 -roomNumber: 9346 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eleen Moledina,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eleen Moledina -sn: Moledina -description: This is Eleen Moledina's description -facsimileTelephoneNumber: +1 818 387-7728 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 641-3066 -title: Chief Administrative Stooge -userPassword: Password1 -uid: MoledinE -givenName: Eleen -mail: MoledinE@4bba23a995da4ee98c2c53bd5fa682de.bitwarden.com -carLicense: JBXFCG -departmentNumber: 3762 -employeeType: Contract -homePhone: +1 818 496-2287 -initials: E. M. -mobile: +1 818 368-3856 -pager: +1 818 161-7262 -roomNumber: 8837 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kaminsky Meany,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaminsky Meany -sn: Meany -description: This is Kaminsky Meany's description -facsimileTelephoneNumber: +1 408 177-5412 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 935-2430 -title: Supreme Product Development Visionary -userPassword: Password1 -uid: MeanyK -givenName: Kaminsky -mail: MeanyK@7aef78da99704981a62a4bf14dcfd6be.bitwarden.com -carLicense: S8O3I9 -departmentNumber: 3114 -employeeType: Employee -homePhone: +1 408 260-4915 -initials: K. M. -mobile: +1 408 179-4546 -pager: +1 408 852-6050 -roomNumber: 8948 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermione Adminmtv -sn: Adminmtv -description: This is Hermione Adminmtv's description -facsimileTelephoneNumber: +1 213 616-2661 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 213 467-7380 -title: Associate Product Development Dictator -userPassword: Password1 -uid: AdminmtH -givenName: Hermione -mail: AdminmtH@087a871812bc441ea91b6630e3a79d9d.bitwarden.com -carLicense: 4JEPUK -departmentNumber: 9636 -employeeType: Normal -homePhone: +1 213 921-8257 -initials: H. A. -mobile: +1 213 530-3168 -pager: +1 213 230-9831 -roomNumber: 9271 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pammi Overton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pammi Overton -sn: Overton -description: This is Pammi Overton's description -facsimileTelephoneNumber: +1 408 290-4288 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 756-7863 -title: Junior Human Resources Artist -userPassword: Password1 -uid: OvertonP -givenName: Pammi -mail: OvertonP@7f63e51441fc4e1aab1257e0bb185e66.bitwarden.com -carLicense: XIO3TE -departmentNumber: 2536 -employeeType: Contract -homePhone: +1 408 550-3736 -initials: P. O. -mobile: +1 408 108-5457 -pager: +1 408 957-1692 -roomNumber: 9388 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sinh Abbott,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sinh Abbott -sn: Abbott -description: This is Sinh Abbott's description -facsimileTelephoneNumber: +1 818 739-8655 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 240-5514 -title: Junior Peons Sales Rep -userPassword: Password1 -uid: AbbottS -givenName: Sinh -mail: AbbottS@27847b451a7948ddad5e776a210cd769.bitwarden.com -carLicense: J3NX5L -departmentNumber: 6044 -employeeType: Employee -homePhone: +1 818 539-8928 -initials: S. A. -mobile: +1 818 950-3884 -pager: +1 818 100-8683 -roomNumber: 8100 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=LouAnn Gaines,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LouAnn Gaines -sn: Gaines -description: This is LouAnn Gaines's description -facsimileTelephoneNumber: +1 415 506-5108 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 802-8531 -title: Master Product Development Manager -userPassword: Password1 -uid: GainesL -givenName: LouAnn -mail: GainesL@10343387398a4a139abd0771818be0c8.bitwarden.com -carLicense: E2QLTB -departmentNumber: 9396 -employeeType: Contract -homePhone: +1 415 947-2937 -initials: L. G. -mobile: +1 415 617-8851 -pager: +1 415 799-9067 -roomNumber: 8825 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Arabella Shamblin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arabella Shamblin -sn: Shamblin -description: This is Arabella Shamblin's description -facsimileTelephoneNumber: +1 415 231-2024 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 240-8278 -title: Associate Administrative Warrior -userPassword: Password1 -uid: ShambliA -givenName: Arabella -mail: ShambliA@6fd2244f1eb4433c9c4032eadff24678.bitwarden.com -carLicense: IC2X5P -departmentNumber: 8514 -employeeType: Employee -homePhone: +1 415 837-8106 -initials: A. S. -mobile: +1 415 375-3043 -pager: +1 415 328-5127 -roomNumber: 9754 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonard McFarlane -sn: McFarlane -description: This is Leonard McFarlane's description -facsimileTelephoneNumber: +1 510 740-7208 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 290-4993 -title: Supreme Product Testing Dictator -userPassword: Password1 -uid: McFarlaL -givenName: Leonard -mail: McFarlaL@b5110eee63164b03a1156fbe465ff053.bitwarden.com -carLicense: 8VMYCA -departmentNumber: 1489 -employeeType: Contract -homePhone: +1 510 815-1173 -initials: L. M. -mobile: +1 510 966-3141 -pager: +1 510 471-8893 -roomNumber: 9416 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cammie Erbach,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cammie Erbach -sn: Erbach -description: This is Cammie Erbach's description -facsimileTelephoneNumber: +1 804 501-3676 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 856-9064 -title: Master Management Czar -userPassword: Password1 -uid: ErbachC -givenName: Cammie -mail: ErbachC@703805ed33844be785223bfd3a5cb030.bitwarden.com -carLicense: H0YDAD -departmentNumber: 8052 -employeeType: Contract -homePhone: +1 804 598-9599 -initials: C. E. -mobile: +1 804 627-4197 -pager: +1 804 189-8931 -roomNumber: 9922 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eugenia LeCouteur -sn: LeCouteur -description: This is Eugenia LeCouteur's description -facsimileTelephoneNumber: +1 818 637-5328 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 172-6557 -title: Chief Peons Vice President -userPassword: Password1 -uid: LeCouteE -givenName: Eugenia -mail: LeCouteE@86d24a798dce4653a3b75c56ae675864.bitwarden.com -carLicense: J1WK3B -departmentNumber: 5127 -employeeType: Employee -homePhone: +1 818 795-9610 -initials: E. L. -mobile: +1 818 577-1636 -pager: +1 818 241-3360 -roomNumber: 9336 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dayton Baughan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dayton Baughan -sn: Baughan -description: This is Dayton Baughan's description -facsimileTelephoneNumber: +1 510 537-4508 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 560-1408 -title: Master Peons Consultant -userPassword: Password1 -uid: BaughanD -givenName: Dayton -mail: BaughanD@518638c8b3ee480098591bd6806de72a.bitwarden.com -carLicense: IJUUAH -departmentNumber: 3727 -employeeType: Contract -homePhone: +1 510 678-3389 -initials: D. B. -mobile: +1 510 221-3607 -pager: +1 510 467-2069 -roomNumber: 8944 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Meggi Rozier,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meggi Rozier -sn: Rozier -description: This is Meggi Rozier's description -facsimileTelephoneNumber: +1 408 796-3243 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 408 186-3962 -title: Associate Product Testing Stooge -userPassword: Password1 -uid: RozierM -givenName: Meggi -mail: RozierM@dfaff98f73b34c5995272b067ac045a0.bitwarden.com -carLicense: 0E32K6 -departmentNumber: 5120 -employeeType: Normal -homePhone: +1 408 643-3703 -initials: M. R. -mobile: +1 408 446-8175 -pager: +1 408 551-3178 -roomNumber: 8552 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Romulus Zuk,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Romulus Zuk -sn: Zuk -description: This is Romulus Zuk's description -facsimileTelephoneNumber: +1 213 312-1641 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 726-1010 -title: Master Human Resources Consultant -userPassword: Password1 -uid: ZukR -givenName: Romulus -mail: ZukR@e3f89583f77e4884a1d8183b4faa15a7.bitwarden.com -carLicense: JGS8GH -departmentNumber: 1643 -employeeType: Contract -homePhone: +1 213 435-8486 -initials: R. Z. -mobile: +1 213 697-9459 -pager: +1 213 944-6140 -roomNumber: 8442 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marce Tiller,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marce Tiller -sn: Tiller -description: This is Marce Tiller's description -facsimileTelephoneNumber: +1 408 448-4330 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 364-1325 -title: Associate Payroll President -userPassword: Password1 -uid: TillerM -givenName: Marce -mail: TillerM@92160f75073741b5a487392a12009a3d.bitwarden.com -carLicense: RD9JQ7 -departmentNumber: 6855 -employeeType: Normal -homePhone: +1 408 206-1878 -initials: M. T. -mobile: +1 408 905-4166 -pager: +1 408 724-1598 -roomNumber: 9888 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oryal Eveleigh -sn: Eveleigh -description: This is Oryal Eveleigh's description -facsimileTelephoneNumber: +1 818 351-8294 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 208-5609 -title: Supreme Payroll Stooge -userPassword: Password1 -uid: EveleigO -givenName: Oryal -mail: EveleigO@fa687144921b436e82405266f480b00e.bitwarden.com -carLicense: EA3G44 -departmentNumber: 8695 -employeeType: Normal -homePhone: +1 818 952-3755 -initials: O. E. -mobile: +1 818 240-5739 -pager: +1 818 198-5212 -roomNumber: 9744 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Patt Brennand,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patt Brennand -sn: Brennand -description: This is Patt Brennand's description -facsimileTelephoneNumber: +1 415 310-3615 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 922-6264 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: BrennanP -givenName: Patt -mail: BrennanP@c41f8f7aea354718b6ea3277359c3684.bitwarden.com -carLicense: 52HYN9 -departmentNumber: 5487 -employeeType: Employee -homePhone: +1 415 638-2025 -initials: P. B. -mobile: +1 415 233-7509 -pager: +1 415 544-1435 -roomNumber: 9712 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fanchon Noujeim -sn: Noujeim -description: This is Fanchon Noujeim's description -facsimileTelephoneNumber: +1 415 823-9766 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 592-1017 -title: Supreme Product Testing Visionary -userPassword: Password1 -uid: NoujeimF -givenName: Fanchon -mail: NoujeimF@f1c1878671bd497c916d8d6aa3e192fd.bitwarden.com -carLicense: 7NFP2D -departmentNumber: 5735 -employeeType: Normal -homePhone: +1 415 777-4102 -initials: F. N. -mobile: +1 415 704-9584 -pager: +1 415 894-9036 -roomNumber: 8823 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Claus Depew,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claus Depew -sn: Depew -description: This is Claus Depew's description -facsimileTelephoneNumber: +1 408 561-8473 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 408 535-5939 -title: Master Janitorial Assistant -userPassword: Password1 -uid: DepewC -givenName: Claus -mail: DepewC@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com -carLicense: 9E9V1S -departmentNumber: 5956 -employeeType: Contract -homePhone: +1 408 161-3024 -initials: C. D. -mobile: +1 408 399-9444 -pager: +1 408 308-8946 -roomNumber: 9932 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vahe Kerwin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vahe Kerwin -sn: Kerwin -description: This is Vahe Kerwin's description -facsimileTelephoneNumber: +1 510 878-4238 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 376-8305 -title: Junior Peons Technician -userPassword: Password1 -uid: KerwinV -givenName: Vahe -mail: KerwinV@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com -carLicense: XEANRO -departmentNumber: 1510 -employeeType: Normal -homePhone: +1 510 217-4152 -initials: V. K. -mobile: +1 510 374-7142 -pager: +1 510 710-7720 -roomNumber: 8942 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pauletta Crocker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pauletta Crocker -sn: Crocker -description: This is Pauletta Crocker's description -facsimileTelephoneNumber: +1 206 730-2148 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 738-3732 -title: Supreme Peons Fellow -userPassword: Password1 -uid: CrockerP -givenName: Pauletta -mail: CrockerP@cd73f05f4ce24da39ba208c39afe4699.bitwarden.com -carLicense: QCGMKX -departmentNumber: 6940 -employeeType: Normal -homePhone: +1 206 433-6820 -initials: P. C. -mobile: +1 206 266-6538 -pager: +1 206 927-8403 -roomNumber: 8168 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rusty Zaretsky -sn: Zaretsky -description: This is Rusty Zaretsky's description -facsimileTelephoneNumber: +1 206 474-6158 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 372-1450 -title: Supreme Administrative Admin -userPassword: Password1 -uid: ZaretskR -givenName: Rusty -mail: ZaretskR@29091675735e43659fad673363e0d6e8.bitwarden.com -carLicense: Q4IH66 -departmentNumber: 8803 -employeeType: Contract -homePhone: +1 206 810-4684 -initials: R. Z. -mobile: +1 206 203-5095 -pager: +1 206 982-9568 -roomNumber: 9789 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sterling Shostak,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sterling Shostak -sn: Shostak -description: This is Sterling Shostak's description -facsimileTelephoneNumber: +1 804 957-3057 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 803-2466 -title: Master Payroll Visionary -userPassword: Password1 -uid: ShostakS -givenName: Sterling -mail: ShostakS@5e804d1ca9ae4836a819c9a675bca682.bitwarden.com -carLicense: LKFPPL -departmentNumber: 3937 -employeeType: Normal -homePhone: +1 804 670-4481 -initials: S. S. -mobile: +1 804 203-8826 -pager: +1 804 540-2259 -roomNumber: 8608 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kartik Rogge,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kartik Rogge -sn: Rogge -description: This is Kartik Rogge's description -facsimileTelephoneNumber: +1 206 899-8270 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 206 663-9402 -title: Associate Product Development Pinhead -userPassword: Password1 -uid: RoggeK -givenName: Kartik -mail: RoggeK@ed2fd27c6a094387b519147346c69de2.bitwarden.com -carLicense: GC2R3Q -departmentNumber: 6996 -employeeType: Contract -homePhone: +1 206 649-8271 -initials: K. R. -mobile: +1 206 801-5602 -pager: +1 206 617-4947 -roomNumber: 9447 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shutterbug Decleir -sn: Decleir -description: This is Shutterbug Decleir's description -facsimileTelephoneNumber: +1 408 673-6094 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 260-7891 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: DecleirS -givenName: Shutterbug -mail: DecleirS@e960715ae7d94ea9beaf0d6200cce087.bitwarden.com -carLicense: 20QM1O -departmentNumber: 3372 -employeeType: Contract -homePhone: +1 408 512-6493 -initials: S. D. -mobile: +1 408 985-1774 -pager: +1 408 732-1255 -roomNumber: 9843 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fei Reich,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fei Reich -sn: Reich -description: This is Fei Reich's description -facsimileTelephoneNumber: +1 510 227-5502 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 326-5560 -title: Supreme Payroll Architect -userPassword: Password1 -uid: ReichF -givenName: Fei -mail: ReichF@1df73cc203344a569c1b4737122f78a2.bitwarden.com -carLicense: CP1356 -departmentNumber: 1405 -employeeType: Normal -homePhone: +1 510 433-9991 -initials: F. R. -mobile: +1 510 958-3917 -pager: +1 510 873-7906 -roomNumber: 9990 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leyla Etten,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leyla Etten -sn: Etten -description: This is Leyla Etten's description -facsimileTelephoneNumber: +1 408 713-7757 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 408 305-8350 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: EttenL -givenName: Leyla -mail: EttenL@c57373b0d5374d00a3d6688cc686509b.bitwarden.com -carLicense: 52K2V4 -departmentNumber: 4138 -employeeType: Contract -homePhone: +1 408 522-1661 -initials: L. E. -mobile: +1 408 555-3001 -pager: +1 408 404-7229 -roomNumber: 9810 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sattar Sergent,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sattar Sergent -sn: Sergent -description: This is Sattar Sergent's description -facsimileTelephoneNumber: +1 804 769-8979 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 972-2539 -title: Junior Product Development Dictator -userPassword: Password1 -uid: SergentS -givenName: Sattar -mail: SergentS@d44f5cb4445645618f46dbaf398e001b.bitwarden.com -carLicense: MBJDPT -departmentNumber: 2330 -employeeType: Contract -homePhone: +1 804 467-7995 -initials: S. S. -mobile: +1 804 179-9454 -pager: +1 804 825-3042 -roomNumber: 8160 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kare Hochberger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kare Hochberger -sn: Hochberger -description: This is Kare Hochberger's description -facsimileTelephoneNumber: +1 408 665-4927 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 584-2717 -title: Junior Human Resources Stooge -userPassword: Password1 -uid: HochberK -givenName: Kare -mail: HochberK@9bffc8dac39c4d7a8d074f9c52e78d4e.bitwarden.com -carLicense: 5FF9FD -departmentNumber: 8458 -employeeType: Contract -homePhone: +1 408 677-4580 -initials: K. H. -mobile: +1 408 392-8736 -pager: +1 408 547-8346 -roomNumber: 9253 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lilly Kuykendall,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilly Kuykendall -sn: Kuykendall -description: This is Lilly Kuykendall's description -facsimileTelephoneNumber: +1 804 106-8290 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 903-1992 -title: Master Management Fellow -userPassword: Password1 -uid: KuykendL -givenName: Lilly -mail: KuykendL@ed036fc76d5d414c9c14953da4ed7bc3.bitwarden.com -carLicense: X67VG4 -departmentNumber: 6914 -employeeType: Contract -homePhone: +1 804 304-1463 -initials: L. K. -mobile: +1 804 885-2062 -pager: +1 804 256-1680 -roomNumber: 8376 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rachele Fullum,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rachele Fullum -sn: Fullum -description: This is Rachele Fullum's description -facsimileTelephoneNumber: +1 213 459-4232 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 901-2958 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: FullumR -givenName: Rachele -mail: FullumR@5d439b9e1cae4e6b90829e7c5b63fe41.bitwarden.com -carLicense: 3YVRB0 -departmentNumber: 5339 -employeeType: Employee -homePhone: +1 213 112-8895 -initials: R. F. -mobile: +1 213 693-2075 -pager: +1 213 588-3970 -roomNumber: 8672 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Madella Forslund,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madella Forslund -sn: Forslund -description: This is Madella Forslund's description -facsimileTelephoneNumber: +1 408 905-9574 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 626-4140 -title: Master Product Development Admin -userPassword: Password1 -uid: ForslunM -givenName: Madella -mail: ForslunM@fc156685829a4314bfd89bdd05aebbdf.bitwarden.com -carLicense: 4709TF -departmentNumber: 4454 -employeeType: Employee -homePhone: +1 408 348-2750 -initials: M. F. -mobile: +1 408 358-5368 -pager: +1 408 538-8917 -roomNumber: 8478 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sissela Nahabedian -sn: Nahabedian -description: This is Sissela Nahabedian's description -facsimileTelephoneNumber: +1 213 225-8866 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 796-4641 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: NahabedS -givenName: Sissela -mail: NahabedS@a8f7a07ce7504ae4bfde0cfae682a40b.bitwarden.com -carLicense: 4VVVNF -departmentNumber: 9492 -employeeType: Normal -homePhone: +1 213 994-3402 -initials: S. N. -mobile: +1 213 106-3613 -pager: +1 213 191-4447 -roomNumber: 9488 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Janio Fussell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janio Fussell -sn: Fussell -description: This is Janio Fussell's description -facsimileTelephoneNumber: +1 415 183-2520 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 325-9330 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: FussellJ -givenName: Janio -mail: FussellJ@203f595734f14fd4a19d2bdd33a37227.bitwarden.com -carLicense: 6CKCKW -departmentNumber: 7207 -employeeType: Normal -homePhone: +1 415 888-8034 -initials: J. F. -mobile: +1 415 185-6785 -pager: +1 415 313-5897 -roomNumber: 8805 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lacy Carr,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lacy Carr -sn: Carr -description: This is Lacy Carr's description -facsimileTelephoneNumber: +1 510 763-7605 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 237-3432 -title: Master Payroll Czar -userPassword: Password1 -uid: CarrL -givenName: Lacy -mail: CarrL@a4017bf573f740adae75dd44a602bed4.bitwarden.com -carLicense: 2WNFR1 -departmentNumber: 2824 -employeeType: Normal -homePhone: +1 510 595-3152 -initials: L. C. -mobile: +1 510 891-7881 -pager: +1 510 433-3626 -roomNumber: 9585 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Erinna Odden,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erinna Odden -sn: Odden -description: This is Erinna Odden's description -facsimileTelephoneNumber: +1 415 375-8179 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 676-3072 -title: Junior Peons Assistant -userPassword: Password1 -uid: OddenE -givenName: Erinna -mail: OddenE@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com -carLicense: RH03UF -departmentNumber: 5483 -employeeType: Employee -homePhone: +1 415 457-4831 -initials: E. O. -mobile: +1 415 739-6218 -pager: +1 415 164-2271 -roomNumber: 9678 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bertrand Devgon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bertrand Devgon -sn: Devgon -description: This is Bertrand Devgon's description -facsimileTelephoneNumber: +1 213 385-3559 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 284-2149 -title: Associate Administrative Artist -userPassword: Password1 -uid: DevgonB -givenName: Bertrand -mail: DevgonB@802b05236c97484db9a6d34278cbb7c2.bitwarden.com -carLicense: ET32E8 -departmentNumber: 1093 -employeeType: Normal -homePhone: +1 213 798-4276 -initials: B. D. -mobile: +1 213 800-9910 -pager: +1 213 932-7141 -roomNumber: 9153 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ahmet Achille,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ahmet Achille -sn: Achille -description: This is Ahmet Achille's description -facsimileTelephoneNumber: +1 213 568-2047 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 213 203-4295 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: AchilleA -givenName: Ahmet -mail: AchilleA@ad4fa0aaba714bddbb75e4f5cdfd0a13.bitwarden.com -carLicense: RF7D3K -departmentNumber: 3888 -employeeType: Contract -homePhone: +1 213 356-6555 -initials: A. A. -mobile: +1 213 974-1683 -pager: +1 213 728-5421 -roomNumber: 8227 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Heike Jenner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heike Jenner -sn: Jenner -description: This is Heike Jenner's description -facsimileTelephoneNumber: +1 213 555-8977 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 213 643-8508 -title: Supreme Human Resources Architect -userPassword: Password1 -uid: JennerH -givenName: Heike -mail: JennerH@a58e2e7328b140e6b9088aee54dad46e.bitwarden.com -carLicense: 0HILXG -departmentNumber: 5237 -employeeType: Employee -homePhone: +1 213 224-4757 -initials: H. J. -mobile: +1 213 355-2579 -pager: +1 213 453-1330 -roomNumber: 9127 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lynde Staats,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynde Staats -sn: Staats -description: This is Lynde Staats's description -facsimileTelephoneNumber: +1 510 755-3177 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 120-1124 -title: Supreme Janitorial Technician -userPassword: Password1 -uid: StaatsL -givenName: Lynde -mail: StaatsL@5ed725aaaff54f8794312c34ad60e5f2.bitwarden.com -carLicense: FV75MU -departmentNumber: 4989 -employeeType: Normal -homePhone: +1 510 230-1317 -initials: L. S. -mobile: +1 510 210-5187 -pager: +1 510 314-1711 -roomNumber: 8756 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Estele Kolappa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estele Kolappa -sn: Kolappa -description: This is Estele Kolappa's description -facsimileTelephoneNumber: +1 213 902-1312 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 600-9253 -title: Master Payroll Dictator -userPassword: Password1 -uid: KolappaE -givenName: Estele -mail: KolappaE@0565c5e96dfc4577b9a5d67dbae6882a.bitwarden.com -carLicense: CV44QE -departmentNumber: 8561 -employeeType: Normal -homePhone: +1 213 642-8345 -initials: E. K. -mobile: +1 213 495-5086 -pager: +1 213 412-8887 -roomNumber: 8973 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Oriana Hughes,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oriana Hughes -sn: Hughes -description: This is Oriana Hughes's description -facsimileTelephoneNumber: +1 206 153-6874 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 728-9708 -title: Associate Janitorial Warrior -userPassword: Password1 -uid: HughesO -givenName: Oriana -mail: HughesO@e2397feadabe41139e01dea5a3231c3b.bitwarden.com -carLicense: C3K8QM -departmentNumber: 3679 -employeeType: Contract -homePhone: +1 206 146-1954 -initials: O. H. -mobile: +1 206 183-5601 -pager: +1 206 238-1219 -roomNumber: 8964 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lucila Rand,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucila Rand -sn: Rand -description: This is Lucila Rand's description -facsimileTelephoneNumber: +1 408 335-8103 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 177-7503 -title: Chief Payroll Engineer -userPassword: Password1 -uid: RandL -givenName: Lucila -mail: RandL@dccd68e9261a427bb9a86d2b2c52f7a3.bitwarden.com -carLicense: 59IEHI -departmentNumber: 3218 -employeeType: Contract -homePhone: +1 408 588-2845 -initials: L. R. -mobile: +1 408 110-7324 -pager: +1 408 533-8637 -roomNumber: 8792 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emile Bellis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emile Bellis -sn: Bellis -description: This is Emile Bellis's description -facsimileTelephoneNumber: +1 206 359-9930 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 544-4586 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: BellisE -givenName: Emile -mail: BellisE@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com -carLicense: CWLD5O -departmentNumber: 8755 -employeeType: Contract -homePhone: +1 206 214-5571 -initials: E. B. -mobile: +1 206 692-3317 -pager: +1 206 475-8721 -roomNumber: 9546 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=LouisPhilippe Hann,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LouisPhilippe Hann -sn: Hann -description: This is LouisPhilippe Hann's description -facsimileTelephoneNumber: +1 510 691-3604 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 855-2837 -title: Associate Management Czar -userPassword: Password1 -uid: HannL -givenName: LouisPhilippe -mail: HannL@9b8cc74fde31459a93e65b46f65c8533.bitwarden.com -carLicense: AA3OW4 -departmentNumber: 3784 -employeeType: Contract -homePhone: +1 510 497-3950 -initials: L. H. -mobile: +1 510 376-3915 -pager: +1 510 827-1440 -roomNumber: 9769 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Franka Frey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franka Frey -sn: Frey -description: This is Franka Frey's description -facsimileTelephoneNumber: +1 415 431-7629 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 885-3743 -title: Associate Administrative Architect -userPassword: Password1 -uid: FreyF -givenName: Franka -mail: FreyF@5319f4b5e8194323b5cce9067279026f.bitwarden.com -carLicense: EO9CFB -departmentNumber: 7558 -employeeType: Employee -homePhone: +1 415 646-7633 -initials: F. F. -mobile: +1 415 438-8520 -pager: +1 415 222-7831 -roomNumber: 9031 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jillian Unger,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jillian Unger -sn: Unger -description: This is Jillian Unger's description -facsimileTelephoneNumber: +1 415 896-8714 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 414-3254 -title: Master Product Testing Writer -userPassword: Password1 -uid: UngerJ -givenName: Jillian -mail: UngerJ@8f055851cf2e446194b128d0faf47339.bitwarden.com -carLicense: PC90PK -departmentNumber: 6537 -employeeType: Employee -homePhone: +1 415 199-7259 -initials: J. U. -mobile: +1 415 981-8564 -pager: +1 415 501-7591 -roomNumber: 9925 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mathilda Diederichs,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mathilda Diederichs -sn: Diederichs -description: This is Mathilda Diederichs's description -facsimileTelephoneNumber: +1 206 852-5406 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 511-2217 -title: Supreme Management President -userPassword: Password1 -uid: DiederiM -givenName: Mathilda -mail: DiederiM@ceea5b3f3fff489eb3469f368fd35271.bitwarden.com -carLicense: J85TXV -departmentNumber: 9653 -employeeType: Normal -homePhone: +1 206 944-1040 -initials: M. D. -mobile: +1 206 920-5229 -pager: +1 206 141-3334 -roomNumber: 9375 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Susanna Vlahos,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susanna Vlahos -sn: Vlahos -description: This is Susanna Vlahos's description -facsimileTelephoneNumber: +1 206 333-7933 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 206 634-5374 -title: Associate Product Development Assistant -userPassword: Password1 -uid: VlahosS -givenName: Susanna -mail: VlahosS@8a8d1631964049f182939e971c150026.bitwarden.com -carLicense: LIV0N0 -departmentNumber: 6650 -employeeType: Employee -homePhone: +1 206 183-5485 -initials: S. V. -mobile: +1 206 655-7936 -pager: +1 206 128-6945 -roomNumber: 8209 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermina Abbatantuono -sn: Abbatantuono -description: This is Hermina Abbatantuono's description -facsimileTelephoneNumber: +1 408 673-2448 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 723-3847 -title: Associate Administrative Writer -userPassword: Password1 -uid: AbbatanH -givenName: Hermina -mail: AbbatanH@5ecc6915b8f34c488bb751101ec4f57f.bitwarden.com -carLicense: C4NHFX -departmentNumber: 4669 -employeeType: Employee -homePhone: +1 408 400-9708 -initials: H. A. -mobile: +1 408 885-8066 -pager: +1 408 789-6880 -roomNumber: 9671 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aila Henninger,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aila Henninger -sn: Henninger -description: This is Aila Henninger's description -facsimileTelephoneNumber: +1 804 600-9175 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 804 267-2322 -title: Associate Product Testing Madonna -userPassword: Password1 -uid: HenningA -givenName: Aila -mail: HenningA@9f0054716a414ce084f33e268195dbbd.bitwarden.com -carLicense: VCAMR9 -departmentNumber: 3751 -employeeType: Contract -homePhone: +1 804 537-8365 -initials: A. H. -mobile: +1 804 367-5950 -pager: +1 804 697-9480 -roomNumber: 8404 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bettye Guth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettye Guth -sn: Guth -description: This is Bettye Guth's description -facsimileTelephoneNumber: +1 415 653-1836 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 877-1684 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: GuthB -givenName: Bettye -mail: GuthB@36d678241c3f4fb4beaa7d9336f3b523.bitwarden.com -carLicense: C9335H -departmentNumber: 9549 -employeeType: Employee -homePhone: +1 415 370-6478 -initials: B. G. -mobile: +1 415 726-5916 -pager: +1 415 144-9952 -roomNumber: 9373 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Livvie Benwell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Livvie Benwell -sn: Benwell -description: This is Livvie Benwell's description -facsimileTelephoneNumber: +1 206 642-5147 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 161-6244 -title: Supreme Peons Technician -userPassword: Password1 -uid: BenwellL -givenName: Livvie -mail: BenwellL@c65f075234ae4ca0ba28441c293a5096.bitwarden.com -carLicense: BU8NQW -departmentNumber: 6168 -employeeType: Normal -homePhone: +1 206 226-7122 -initials: L. B. -mobile: +1 206 249-3013 -pager: +1 206 468-6553 -roomNumber: 8253 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pierette Gonsalves -sn: Gonsalves -description: This is Pierette Gonsalves's description -facsimileTelephoneNumber: +1 804 697-2441 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 982-4564 -title: Chief Administrative Warrior -userPassword: Password1 -uid: GonsalvP -givenName: Pierette -mail: GonsalvP@6c6664d2385d43519ebb52ff761aba92.bitwarden.com -carLicense: 149446 -departmentNumber: 7630 -employeeType: Contract -homePhone: +1 804 303-8210 -initials: P. G. -mobile: +1 804 877-9959 -pager: +1 804 380-3908 -roomNumber: 8917 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Melek Nagendra,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melek Nagendra -sn: Nagendra -description: This is Melek Nagendra's description -facsimileTelephoneNumber: +1 213 698-7156 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 484-8094 -title: Junior Janitorial Mascot -userPassword: Password1 -uid: NagendrM -givenName: Melek -mail: NagendrM@7a1816127b6749e79a6ce3a8a34ebdb5.bitwarden.com -carLicense: JTVEHO -departmentNumber: 6240 -employeeType: Employee -homePhone: +1 213 941-2996 -initials: M. N. -mobile: +1 213 424-4653 -pager: +1 213 916-7357 -roomNumber: 8940 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gretel McCorquodale -sn: McCorquodale -description: This is Gretel McCorquodale's description -facsimileTelephoneNumber: +1 415 898-3371 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 954-2695 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: McCorquG -givenName: Gretel -mail: McCorquG@9c4f9eaf4eea42848e2ed65a10014c07.bitwarden.com -carLicense: JJ2DNB -departmentNumber: 6636 -employeeType: Contract -homePhone: +1 415 493-3752 -initials: G. M. -mobile: +1 415 155-7819 -pager: +1 415 669-4978 -roomNumber: 8254 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lesli Tobias,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lesli Tobias -sn: Tobias -description: This is Lesli Tobias's description -facsimileTelephoneNumber: +1 510 117-3310 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 794-8831 -title: Junior Human Resources Architect -userPassword: Password1 -uid: TobiasL -givenName: Lesli -mail: TobiasL@d90d5ffcbe644d5f8785140dc4df2905.bitwarden.com -carLicense: 7S89KQ -departmentNumber: 6227 -employeeType: Employee -homePhone: +1 510 199-7737 -initials: L. T. -mobile: +1 510 384-4099 -pager: +1 510 524-7236 -roomNumber: 9838 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Greta Schecter,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greta Schecter -sn: Schecter -description: This is Greta Schecter's description -facsimileTelephoneNumber: +1 213 816-3025 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 273-1239 -title: Supreme Management Engineer -userPassword: Password1 -uid: SchecteG -givenName: Greta -mail: SchecteG@75a7fc9d939e4f5bbf93de65e9cc63e4.bitwarden.com -carLicense: GRQPQF -departmentNumber: 8004 -employeeType: Contract -homePhone: +1 213 366-6879 -initials: G. S. -mobile: +1 213 458-9138 -pager: +1 213 714-8827 -roomNumber: 8129 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphne Brodfuehrer -sn: Brodfuehrer -description: This is Daphne Brodfuehrer's description -facsimileTelephoneNumber: +1 415 979-1010 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 726-2457 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: BrodfueD -givenName: Daphne -mail: BrodfueD@f920b917085d494384c9f6cf31731d98.bitwarden.com -carLicense: 24G76P -departmentNumber: 9226 -employeeType: Contract -homePhone: +1 415 980-2284 -initials: D. B. -mobile: +1 415 593-8457 -pager: +1 415 435-2814 -roomNumber: 9833 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwyn Khadbai -sn: Khadbai -description: This is Gwyn Khadbai's description -facsimileTelephoneNumber: +1 408 486-2937 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 408 841-1971 -title: Master Product Testing Madonna -userPassword: Password1 -uid: KhadbaiG -givenName: Gwyn -mail: KhadbaiG@b26dd8079ae74537bc6512a712066520.bitwarden.com -carLicense: JOWD2S -departmentNumber: 7357 -employeeType: Employee -homePhone: +1 408 935-2822 -initials: G. K. -mobile: +1 408 835-1791 -pager: +1 408 362-3121 -roomNumber: 9261 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nevil Padgett,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nevil Padgett -sn: Padgett -description: This is Nevil Padgett's description -facsimileTelephoneNumber: +1 213 893-5326 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 782-9236 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: PadgettN -givenName: Nevil -mail: PadgettN@8ac9cfdbb2124b0e9c0547e5d43a4e68.bitwarden.com -carLicense: PICEXK -departmentNumber: 8122 -employeeType: Employee -homePhone: +1 213 976-7555 -initials: N. P. -mobile: +1 213 986-5319 -pager: +1 213 235-5236 -roomNumber: 9595 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bianka Cooke,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bianka Cooke -sn: Cooke -description: This is Bianka Cooke's description -facsimileTelephoneNumber: +1 408 687-1095 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 408 702-3554 -title: Junior Management Mascot -userPassword: Password1 -uid: CookeB -givenName: Bianka -mail: CookeB@df66a35b0d0f4b4c94777a0a93eec996.bitwarden.com -carLicense: TG27H3 -departmentNumber: 1596 -employeeType: Employee -homePhone: +1 408 310-8250 -initials: B. C. -mobile: +1 408 539-6152 -pager: +1 408 493-6248 -roomNumber: 8445 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivonne Rybczynski -sn: Rybczynski -description: This is Ivonne Rybczynski's description -facsimileTelephoneNumber: +1 818 322-4005 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 305-6759 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: RybczynI -givenName: Ivonne -mail: RybczynI@36bf168f83f54de6b68d81c3236caec7.bitwarden.com -carLicense: J6LW2U -departmentNumber: 3320 -employeeType: Employee -homePhone: +1 818 224-9193 -initials: I. R. -mobile: +1 818 674-6946 -pager: +1 818 713-1316 -roomNumber: 8106 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marjan Lyman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjan Lyman -sn: Lyman -description: This is Marjan Lyman's description -facsimileTelephoneNumber: +1 804 171-5186 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 697-7160 -title: Chief Administrative Figurehead -userPassword: Password1 -uid: LymanM -givenName: Marjan -mail: LymanM@3bd0291e8cff49548689d7d941f27f3f.bitwarden.com -carLicense: Y5MQGE -departmentNumber: 6057 -employeeType: Contract -homePhone: +1 804 294-7259 -initials: M. L. -mobile: +1 804 589-1376 -pager: +1 804 194-9777 -roomNumber: 8583 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aurora Bayno,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurora Bayno -sn: Bayno -description: This is Aurora Bayno's description -facsimileTelephoneNumber: +1 415 200-6783 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 918-4970 -title: Junior Peons Figurehead -userPassword: Password1 -uid: BaynoA -givenName: Aurora -mail: BaynoA@0ad766b055ac4f6f8498d26e88dc0654.bitwarden.com -carLicense: 8QD8JH -departmentNumber: 9760 -employeeType: Normal -homePhone: +1 415 919-3179 -initials: A. B. -mobile: +1 415 723-7003 -pager: +1 415 822-1381 -roomNumber: 9891 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Housseini Dominguez,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Housseini Dominguez -sn: Dominguez -description: This is Housseini Dominguez's description -facsimileTelephoneNumber: +1 510 841-9109 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 820-7316 -title: Associate Administrative Assistant -userPassword: Password1 -uid: DominguH -givenName: Housseini -mail: DominguH@1702c7050ede4a30a493b614c6f96d2a.bitwarden.com -carLicense: 6TYU5Y -departmentNumber: 2880 -employeeType: Normal -homePhone: +1 510 986-5306 -initials: H. D. -mobile: +1 510 837-5089 -pager: +1 510 953-4241 -roomNumber: 9472 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Arnie Ulrich,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arnie Ulrich -sn: Ulrich -description: This is Arnie Ulrich's description -facsimileTelephoneNumber: +1 408 405-5829 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 611-6303 -title: Associate Administrative Janitor -userPassword: Password1 -uid: UlrichA -givenName: Arnie -mail: UlrichA@abe51797f5124683a93236751a4e6fc3.bitwarden.com -carLicense: LK8FVT -departmentNumber: 8091 -employeeType: Contract -homePhone: +1 408 845-1280 -initials: A. U. -mobile: +1 408 626-5084 -pager: +1 408 467-8004 -roomNumber: 9625 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Amrik Carlock,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amrik Carlock -sn: Carlock -description: This is Amrik Carlock's description -facsimileTelephoneNumber: +1 415 435-2984 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 213-5305 -title: Supreme Administrative Developer -userPassword: Password1 -uid: CarlockA -givenName: Amrik -mail: CarlockA@431bd1e3a1554ddda35b23b44d614abd.bitwarden.com -carLicense: S2QGWK -departmentNumber: 8684 -employeeType: Employee -homePhone: +1 415 948-6363 -initials: A. C. -mobile: +1 415 576-7996 -pager: +1 415 723-9093 -roomNumber: 9833 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Saundra Crapco,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saundra Crapco -sn: Crapco -description: This is Saundra Crapco's description -facsimileTelephoneNumber: +1 804 873-4470 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 804 371-3286 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: CrapcoS -givenName: Saundra -mail: CrapcoS@a38a54d93a9a4ec1a621a87e5a204d4b.bitwarden.com -carLicense: LUNOM0 -departmentNumber: 8013 -employeeType: Normal -homePhone: +1 804 363-2329 -initials: S. C. -mobile: +1 804 254-6488 -pager: +1 804 248-1471 -roomNumber: 8833 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shashi Ketcheson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shashi Ketcheson -sn: Ketcheson -description: This is Shashi Ketcheson's description -facsimileTelephoneNumber: +1 213 241-7291 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 761-3708 -title: Master Management Stooge -userPassword: Password1 -uid: KetchesS -givenName: Shashi -mail: KetchesS@79e870d6aec04b1188d3b93e080d363c.bitwarden.com -carLicense: CC5DQW -departmentNumber: 7182 -employeeType: Contract -homePhone: +1 213 291-1657 -initials: S. K. -mobile: +1 213 446-7610 -pager: +1 213 818-9394 -roomNumber: 8169 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maidlab McMillion,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maidlab McMillion -sn: McMillion -description: This is Maidlab McMillion's description -facsimileTelephoneNumber: +1 510 163-1403 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 133-6595 -title: Master Peons Vice President -userPassword: Password1 -uid: McMilliM -givenName: Maidlab -mail: McMilliM@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com -carLicense: RNGYE0 -departmentNumber: 5719 -employeeType: Normal -homePhone: +1 510 916-3492 -initials: M. M. -mobile: +1 510 573-7977 -pager: +1 510 768-3158 -roomNumber: 8081 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cloe Marquart,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cloe Marquart -sn: Marquart -description: This is Cloe Marquart's description -facsimileTelephoneNumber: +1 213 833-8355 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 153-5586 -title: Chief Payroll Engineer -userPassword: Password1 -uid: MarquarC -givenName: Cloe -mail: MarquarC@27d8549892a84dfab24d317e0ea5c6f9.bitwarden.com -carLicense: 4571B9 -departmentNumber: 4905 -employeeType: Contract -homePhone: +1 213 583-1711 -initials: C. M. -mobile: +1 213 509-9490 -pager: +1 213 147-1651 -roomNumber: 9953 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Roselle Donald,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roselle Donald -sn: Donald -description: This is Roselle Donald's description -facsimileTelephoneNumber: +1 408 343-1627 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 297-6408 -title: Chief Human Resources Artist -userPassword: Password1 -uid: DonaldR -givenName: Roselle -mail: DonaldR@98ae5dd6e4ab44b5ae67cbaf5772c205.bitwarden.com -carLicense: IQ0FQ9 -departmentNumber: 5428 -employeeType: Employee -homePhone: +1 408 798-1404 -initials: R. D. -mobile: +1 408 223-7007 -pager: +1 408 692-8675 -roomNumber: 9252 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chander Roussy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chander Roussy -sn: Roussy -description: This is Chander Roussy's description -facsimileTelephoneNumber: +1 213 228-2078 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 280-6877 -title: Junior Product Testing Dictator -userPassword: Password1 -uid: RoussyC -givenName: Chander -mail: RoussyC@eb78b63b75ba4f27a8837a49801a5d87.bitwarden.com -carLicense: V59E6T -departmentNumber: 8715 -employeeType: Contract -homePhone: +1 213 399-3955 -initials: C. R. -mobile: +1 213 436-4471 -pager: +1 213 287-7361 -roomNumber: 9510 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sunny Rollin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sunny Rollin -sn: Rollin -description: This is Sunny Rollin's description -facsimileTelephoneNumber: +1 206 610-7067 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 206 592-1573 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: RollinS -givenName: Sunny -mail: RollinS@1bb0accf179c40f18fe1bf2f50f413b1.bitwarden.com -carLicense: GABKKJ -departmentNumber: 7165 -employeeType: Contract -homePhone: +1 206 326-9400 -initials: S. R. -mobile: +1 206 430-4349 -pager: +1 206 636-5301 -roomNumber: 9135 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gray Wroblewski -sn: Wroblewski -description: This is Gray Wroblewski's description -facsimileTelephoneNumber: +1 804 108-1773 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 804 173-1016 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: WroblewG -givenName: Gray -mail: WroblewG@823588f41bb949d9803b8c0afb801dd3.bitwarden.com -carLicense: OV9UO1 -departmentNumber: 1774 -employeeType: Normal -homePhone: +1 804 483-3926 -initials: G. W. -mobile: +1 804 721-8692 -pager: +1 804 659-8302 -roomNumber: 9589 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sam Meldrum,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sam Meldrum -sn: Meldrum -description: This is Sam Meldrum's description -facsimileTelephoneNumber: +1 818 856-5855 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 939-6394 -title: Chief Human Resources Manager -userPassword: Password1 -uid: MeldrumS -givenName: Sam -mail: MeldrumS@003f2218b9fd4a96bb2b10368a1c04ce.bitwarden.com -carLicense: 89QYG1 -departmentNumber: 2685 -employeeType: Normal -homePhone: +1 818 166-8080 -initials: S. M. -mobile: +1 818 197-1381 -pager: +1 818 874-6129 -roomNumber: 8563 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kitson Sture,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kitson Sture -sn: Sture -description: This is Kitson Sture's description -facsimileTelephoneNumber: +1 804 682-3692 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 228-9366 -title: Chief Management Director -userPassword: Password1 -uid: StureK -givenName: Kitson -mail: StureK@374ee8e2d55948f4b3d3959e5c870fde.bitwarden.com -carLicense: VTJ9HA -departmentNumber: 7093 -employeeType: Employee -homePhone: +1 804 186-7906 -initials: K. S. -mobile: +1 804 668-7963 -pager: +1 804 413-7966 -roomNumber: 8974 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Janot Breglec,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janot Breglec -sn: Breglec -description: This is Janot Breglec's description -facsimileTelephoneNumber: +1 408 520-9045 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 408 627-3296 -title: Junior Human Resources Developer -userPassword: Password1 -uid: BreglecJ -givenName: Janot -mail: BreglecJ@e915bf6c406f46f5ac163116df6fd9b3.bitwarden.com -carLicense: O9C6FF -departmentNumber: 9677 -employeeType: Normal -homePhone: +1 408 252-2874 -initials: J. B. -mobile: +1 408 281-4465 -pager: +1 408 920-4437 -roomNumber: 8515 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gaye Rothwell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaye Rothwell -sn: Rothwell -description: This is Gaye Rothwell's description -facsimileTelephoneNumber: +1 415 408-7998 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 266-2044 -title: Master Administrative Technician -userPassword: Password1 -uid: RothwelG -givenName: Gaye -mail: RothwelG@83a3c9a6bd4547dd81cf1dad18f71e7f.bitwarden.com -carLicense: F8XMWI -departmentNumber: 3769 -employeeType: Normal -homePhone: +1 415 938-2181 -initials: G. R. -mobile: +1 415 646-4716 -pager: +1 415 599-2990 -roomNumber: 9355 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Moe Schumann,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moe Schumann -sn: Schumann -description: This is Moe Schumann's description -facsimileTelephoneNumber: +1 206 436-5533 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 734-7431 -title: Supreme Janitorial Mascot -userPassword: Password1 -uid: SchumanM -givenName: Moe -mail: SchumanM@fc8a319bf73b4066b064fbad43614c48.bitwarden.com -carLicense: 3678M4 -departmentNumber: 5975 -employeeType: Employee -homePhone: +1 206 806-1779 -initials: M. S. -mobile: +1 206 384-8308 -pager: +1 206 103-8220 -roomNumber: 9260 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sarene Keifer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarene Keifer -sn: Keifer -description: This is Sarene Keifer's description -facsimileTelephoneNumber: +1 804 872-3866 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 536-6055 -title: Supreme Product Development Fellow -userPassword: Password1 -uid: KeiferS -givenName: Sarene -mail: KeiferS@28da466dba2a49fabba592c4c805fca1.bitwarden.com -carLicense: 5ROPOS -departmentNumber: 6630 -employeeType: Contract -homePhone: +1 804 331-9212 -initials: S. K. -mobile: +1 804 317-7942 -pager: +1 804 528-7813 -roomNumber: 9183 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adelice Limbaugh -sn: Limbaugh -description: This is Adelice Limbaugh's description -facsimileTelephoneNumber: +1 415 769-9272 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 966-7340 -title: Junior Product Development Czar -userPassword: Password1 -uid: LimbaugA -givenName: Adelice -mail: LimbaugA@d843134b5a6249eda76a289f48094398.bitwarden.com -carLicense: KSOPIN -departmentNumber: 5379 -employeeType: Normal -homePhone: +1 415 649-8426 -initials: A. L. -mobile: +1 415 264-1778 -pager: +1 415 619-7442 -roomNumber: 8545 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Janette Npi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janette Npi -sn: Npi -description: This is Janette Npi's description -facsimileTelephoneNumber: +1 415 472-6146 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 382-3909 -title: Chief Payroll Fellow -userPassword: Password1 -uid: NpiJ -givenName: Janette -mail: NpiJ@7e68fcf7d1c0481096800d5b87b7212d.bitwarden.com -carLicense: FE5A73 -departmentNumber: 4979 -employeeType: Contract -homePhone: +1 415 752-6441 -initials: J. N. -mobile: +1 415 852-3898 -pager: +1 415 687-1811 -roomNumber: 9263 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Danette Galloway,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danette Galloway -sn: Galloway -description: This is Danette Galloway's description -facsimileTelephoneNumber: +1 408 271-2538 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 481-1316 -title: Master Peons Assistant -userPassword: Password1 -uid: GallowaD -givenName: Danette -mail: GallowaD@9dd46e72015c4014b5f15189a14009e2.bitwarden.com -carLicense: 140Q3J -departmentNumber: 5465 -employeeType: Employee -homePhone: +1 408 694-7794 -initials: D. G. -mobile: +1 408 199-7287 -pager: +1 408 691-4310 -roomNumber: 9756 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lorianne Mullett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorianne Mullett -sn: Mullett -description: This is Lorianne Mullett's description -facsimileTelephoneNumber: +1 510 239-8989 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 642-5544 -title: Chief Product Development Fellow -userPassword: Password1 -uid: MullettL -givenName: Lorianne -mail: MullettL@8970f66e3c7349128b71099e5c1cee90.bitwarden.com -carLicense: RO2CWV -departmentNumber: 9716 -employeeType: Employee -homePhone: +1 510 866-2329 -initials: L. M. -mobile: +1 510 477-7923 -pager: +1 510 675-3805 -roomNumber: 8049 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Isabeau Wippel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isabeau Wippel -sn: Wippel -description: This is Isabeau Wippel's description -facsimileTelephoneNumber: +1 213 859-4236 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 231-9276 -title: Chief Administrative Developer -userPassword: Password1 -uid: WippelI -givenName: Isabeau -mail: WippelI@948682def8064e8b984ddc8e87e5fdee.bitwarden.com -carLicense: YXCQBX -departmentNumber: 7255 -employeeType: Employee -homePhone: +1 213 282-5873 -initials: I. W. -mobile: +1 213 250-3139 -pager: +1 213 221-5355 -roomNumber: 9609 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cassi McRae,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassi McRae -sn: McRae -description: This is Cassi McRae's description -facsimileTelephoneNumber: +1 415 510-8542 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 506-8414 -title: Associate Human Resources Czar -userPassword: Password1 -uid: McRaeC -givenName: Cassi -mail: McRaeC@0241a0d3cbf64f09a3380b82cf315d15.bitwarden.com -carLicense: JUWXU1 -departmentNumber: 4147 -employeeType: Normal -homePhone: +1 415 218-4969 -initials: C. M. -mobile: +1 415 383-7579 -pager: +1 415 520-8226 -roomNumber: 8390 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=WaiLeung Marples,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WaiLeung Marples -sn: Marples -description: This is WaiLeung Marples's description -facsimileTelephoneNumber: +1 510 220-8422 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 697-4198 -title: Chief Product Development Madonna -userPassword: Password1 -uid: MarplesW -givenName: WaiLeung -mail: MarplesW@53b43fb5d4e34daa86eaa9d6dd2bd917.bitwarden.com -carLicense: G7DPBX -departmentNumber: 5211 -employeeType: Normal -homePhone: +1 510 198-8084 -initials: W. M. -mobile: +1 510 374-4843 -pager: +1 510 121-7822 -roomNumber: 9218 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Joceline Seifried,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joceline Seifried -sn: Seifried -description: This is Joceline Seifried's description -facsimileTelephoneNumber: +1 804 126-6317 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 363-2666 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: SeifrieJ -givenName: Joceline -mail: SeifrieJ@911b346497874da4b48522c31ad5633c.bitwarden.com -carLicense: NWU5OD -departmentNumber: 6326 -employeeType: Employee -homePhone: +1 804 407-5683 -initials: J. S. -mobile: +1 804 802-5767 -pager: +1 804 658-7066 -roomNumber: 8167 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bill Coldwell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bill Coldwell -sn: Coldwell -description: This is Bill Coldwell's description -facsimileTelephoneNumber: +1 213 968-6275 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 213 629-4658 -title: Junior Payroll Architect -userPassword: Password1 -uid: ColdwelB -givenName: Bill -mail: ColdwelB@79e870d6aec04b1188d3b93e080d363c.bitwarden.com -carLicense: 34CUKO -departmentNumber: 4892 -employeeType: Contract -homePhone: +1 213 567-8723 -initials: B. C. -mobile: +1 213 657-2235 -pager: +1 213 957-1138 -roomNumber: 8032 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjorie deMontluzin -sn: deMontluzin -description: This is Marjorie deMontluzin's description -facsimileTelephoneNumber: +1 408 918-8965 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 917-2422 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: deMontlM -givenName: Marjorie -mail: deMontlM@f115ded519524610ab74393c6ce8cdfc.bitwarden.com -carLicense: 94CIQS -departmentNumber: 3530 -employeeType: Employee -homePhone: +1 408 440-3000 -initials: M. d. -mobile: +1 408 595-3996 -pager: +1 408 790-3545 -roomNumber: 9182 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marlo Belich,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlo Belich -sn: Belich -description: This is Marlo Belich's description -facsimileTelephoneNumber: +1 408 170-3902 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 706-9655 -title: Master Product Development Grunt -userPassword: Password1 -uid: BelichM -givenName: Marlo -mail: BelichM@e8760cb58ba74207a1122bd21950ad46.bitwarden.com -carLicense: BA0SFN -departmentNumber: 7394 -employeeType: Normal -homePhone: +1 408 358-1004 -initials: M. B. -mobile: +1 408 431-3439 -pager: +1 408 356-3443 -roomNumber: 9912 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicholle Markmeyer -sn: Markmeyer -description: This is Nicholle Markmeyer's description -facsimileTelephoneNumber: +1 804 363-1079 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 639-7576 -title: Chief Human Resources Director -userPassword: Password1 -uid: MarkmeyN -givenName: Nicholle -mail: MarkmeyN@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com -carLicense: 66CF09 -departmentNumber: 3546 -employeeType: Normal -homePhone: +1 804 454-6223 -initials: N. M. -mobile: +1 804 398-6884 -pager: +1 804 303-1637 -roomNumber: 8507 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Prams StOnge,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prams StOnge -sn: StOnge -description: This is Prams StOnge's description -facsimileTelephoneNumber: +1 206 191-4830 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 123-5029 -title: Associate Peons Assistant -userPassword: Password1 -uid: StOngeP -givenName: Prams -mail: StOngeP@004a67613be24dd1bb7727566082246b.bitwarden.com -carLicense: 15OJSG -departmentNumber: 3887 -employeeType: Employee -homePhone: +1 206 830-1212 -initials: P. S. -mobile: +1 206 712-4447 -pager: +1 206 396-6831 -roomNumber: 8600 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Eudora Dunstan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eudora Dunstan -sn: Dunstan -description: This is Eudora Dunstan's description -facsimileTelephoneNumber: +1 510 650-1266 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 510 963-2469 -title: Junior Management Admin -userPassword: Password1 -uid: DunstanE -givenName: Eudora -mail: DunstanE@700aa0e6ff224df9962657c1adbdf0d8.bitwarden.com -carLicense: KVK537 -departmentNumber: 7282 -employeeType: Employee -homePhone: +1 510 104-3362 -initials: E. D. -mobile: +1 510 538-2101 -pager: +1 510 637-2572 -roomNumber: 9092 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Thor Ritz,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thor Ritz -sn: Ritz -description: This is Thor Ritz's description -facsimileTelephoneNumber: +1 206 870-2150 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 817-3586 -title: Associate Management Assistant -userPassword: Password1 -uid: RitzT -givenName: Thor -mail: RitzT@7ecd6e3be3c34590b3634684f3566a34.bitwarden.com -carLicense: E0KUYM -departmentNumber: 9191 -employeeType: Employee -homePhone: +1 206 134-5785 -initials: T. R. -mobile: +1 206 986-9026 -pager: +1 206 114-2980 -roomNumber: 8009 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Manhatten Isert,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manhatten Isert -sn: Isert -description: This is Manhatten Isert's description -facsimileTelephoneNumber: +1 510 822-1558 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 494-7522 -title: Associate Product Development Warrior -userPassword: Password1 -uid: IsertM -givenName: Manhatten -mail: IsertM@1b075a91584f496088ea7442a5922cef.bitwarden.com -carLicense: KOVBG4 -departmentNumber: 4104 -employeeType: Normal -homePhone: +1 510 756-8227 -initials: M. I. -mobile: +1 510 785-3504 -pager: +1 510 522-3621 -roomNumber: 9031 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Farra Garee,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farra Garee -sn: Garee -description: This is Farra Garee's description -facsimileTelephoneNumber: +1 206 215-7418 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 256-7792 -title: Associate Payroll Dictator -userPassword: Password1 -uid: GareeF -givenName: Farra -mail: GareeF@78e66db4daf244269be3e0f7fc49db85.bitwarden.com -carLicense: DYFQ6B -departmentNumber: 6101 -employeeType: Contract -homePhone: +1 206 409-5293 -initials: F. G. -mobile: +1 206 923-3315 -pager: +1 206 201-8506 -roomNumber: 9537 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Arun Xpm,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arun Xpm -sn: Xpm -description: This is Arun Xpm's description -facsimileTelephoneNumber: +1 818 430-3008 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 653-5281 -title: Junior Human Resources Sales Rep -userPassword: Password1 -uid: XpmA -givenName: Arun -mail: XpmA@412a31e8728a4c5a8ecbcd1736c486e9.bitwarden.com -carLicense: MBQ029 -departmentNumber: 6453 -employeeType: Contract -homePhone: +1 818 582-6585 -initials: A. X. -mobile: +1 818 659-6320 -pager: +1 818 674-5390 -roomNumber: 9393 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shigeru Albritton -sn: Albritton -description: This is Shigeru Albritton's description -facsimileTelephoneNumber: +1 213 825-1377 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 114-3609 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: AlbrittS -givenName: Shigeru -mail: AlbrittS@2ec15169d3824bb991e5ec642147de0b.bitwarden.com -carLicense: 8OH2CQ -departmentNumber: 9680 -employeeType: Contract -homePhone: +1 213 209-6095 -initials: S. A. -mobile: +1 213 669-5889 -pager: +1 213 107-6024 -roomNumber: 8903 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alida Ausley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alida Ausley -sn: Ausley -description: This is Alida Ausley's description -facsimileTelephoneNumber: +1 818 881-6065 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 747-6692 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: AusleyA -givenName: Alida -mail: AusleyA@f8ab716c26494879b2465829da010f5f.bitwarden.com -carLicense: 3O346U -departmentNumber: 1387 -employeeType: Contract -homePhone: +1 818 779-1367 -initials: A. A. -mobile: +1 818 214-5145 -pager: +1 818 299-1726 -roomNumber: 9070 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jasmina Kraehenbuehl -sn: Kraehenbuehl -description: This is Jasmina Kraehenbuehl's description -facsimileTelephoneNumber: +1 510 685-8598 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 602-1137 -title: Chief Administrative Developer -userPassword: Password1 -uid: KraehenJ -givenName: Jasmina -mail: KraehenJ@6131da53a3b54b04a03670080f19a44f.bitwarden.com -carLicense: 9K6KOO -departmentNumber: 3971 -employeeType: Employee -homePhone: +1 510 133-3885 -initials: J. K. -mobile: +1 510 560-6313 -pager: +1 510 681-4293 -roomNumber: 9555 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Trina Okon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trina Okon -sn: Okon -description: This is Trina Okon's description -facsimileTelephoneNumber: +1 206 258-9304 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 206 210-4984 -title: Associate Payroll Grunt -userPassword: Password1 -uid: OkonT -givenName: Trina -mail: OkonT@f253a86f6ff647d3aa19776207af5865.bitwarden.com -carLicense: Y3DPRT -departmentNumber: 1318 -employeeType: Employee -homePhone: +1 206 786-1269 -initials: T. O. -mobile: +1 206 314-4439 -pager: +1 206 788-2882 -roomNumber: 9918 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kania Harter,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kania Harter -sn: Harter -description: This is Kania Harter's description -facsimileTelephoneNumber: +1 206 264-1182 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 735-4481 -title: Associate Payroll Architect -userPassword: Password1 -uid: HarterK -givenName: Kania -mail: HarterK@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com -carLicense: 72QRQJ -departmentNumber: 9878 -employeeType: Normal -homePhone: +1 206 512-5332 -initials: K. H. -mobile: +1 206 564-8307 -pager: +1 206 537-1035 -roomNumber: 9912 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Samantha Gantt,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Samantha Gantt -sn: Gantt -description: This is Samantha Gantt's description -facsimileTelephoneNumber: +1 510 109-3752 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 919-8353 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: GanttS -givenName: Samantha -mail: GanttS@57aded8fb98d4e528d1fb70b95b777c6.bitwarden.com -carLicense: 8EBY91 -departmentNumber: 8390 -employeeType: Contract -homePhone: +1 510 291-7759 -initials: S. G. -mobile: +1 510 731-9178 -pager: +1 510 800-2876 -roomNumber: 9709 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Akin Houde,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akin Houde -sn: Houde -description: This is Akin Houde's description -facsimileTelephoneNumber: +1 213 364-9538 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 154-2145 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: HoudeA -givenName: Akin -mail: HoudeA@8df41f7f77284af88f6f74347b022fef.bitwarden.com -carLicense: IWMOC0 -departmentNumber: 6550 -employeeType: Normal -homePhone: +1 213 890-6558 -initials: A. H. -mobile: +1 213 640-3895 -pager: +1 213 866-7023 -roomNumber: 9755 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vince Herscovici,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vince Herscovici -sn: Herscovici -description: This is Vince Herscovici's description -facsimileTelephoneNumber: +1 213 722-3680 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 978-8313 -title: Junior Peons Grunt -userPassword: Password1 -uid: HerscovV -givenName: Vince -mail: HerscovV@2cb925e97f384833b8feb793c0daf990.bitwarden.com -carLicense: S5DQMD -departmentNumber: 4145 -employeeType: Normal -homePhone: +1 213 722-8422 -initials: V. H. -mobile: +1 213 476-6354 -pager: +1 213 425-4076 -roomNumber: 9940 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Issy Bachecongi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Issy Bachecongi -sn: Bachecongi -description: This is Issy Bachecongi's description -facsimileTelephoneNumber: +1 206 162-4117 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 158-9224 -title: Associate Administrative Artist -userPassword: Password1 -uid: BachecoI -givenName: Issy -mail: BachecoI@ebb963e9a1d74047879876a5672477e4.bitwarden.com -carLicense: D44YPV -departmentNumber: 4354 -employeeType: Employee -homePhone: +1 206 213-6379 -initials: I. B. -mobile: +1 206 922-9245 -pager: +1 206 505-8786 -roomNumber: 8575 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daffie Nethersole -sn: Nethersole -description: This is Daffie Nethersole's description -facsimileTelephoneNumber: +1 415 622-6093 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 217-8050 -title: Junior Human Resources Evangelist -userPassword: Password1 -uid: NethersD -givenName: Daffie -mail: NethersD@5e4d473173474c608ac03e0447167cc7.bitwarden.com -carLicense: 3D4QDR -departmentNumber: 3595 -employeeType: Normal -homePhone: +1 415 401-8498 -initials: D. N. -mobile: +1 415 423-4897 -pager: +1 415 858-1119 -roomNumber: 8407 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ric Pietrzak -sn: Pietrzak -description: This is Ric Pietrzak's description -facsimileTelephoneNumber: +1 804 474-1118 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 804 143-2921 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: PietrzaR -givenName: Ric -mail: PietrzaR@2169be3657ca457db7de27d69c3db365.bitwarden.com -carLicense: KDYKTO -departmentNumber: 4761 -employeeType: Employee -homePhone: +1 804 489-2877 -initials: R. P. -mobile: +1 804 805-6746 -pager: +1 804 574-1153 -roomNumber: 8788 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fuzal NTPADMIN -sn: NTPADMIN -description: This is Fuzal NTPADMIN's description -facsimileTelephoneNumber: +1 818 191-5900 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 818 663-6776 -title: Chief Product Development Stooge -userPassword: Password1 -uid: NTPADMIF -givenName: Fuzal -mail: NTPADMIF@ca5cfe9e2bd34d4daa1788a54ae9670d.bitwarden.com -carLicense: ASHVFQ -departmentNumber: 6158 -employeeType: Employee -homePhone: +1 818 754-8790 -initials: F. N. -mobile: +1 818 821-8572 -pager: +1 818 484-6085 -roomNumber: 8275 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Seelan Licandro,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seelan Licandro -sn: Licandro -description: This is Seelan Licandro's description -facsimileTelephoneNumber: +1 415 693-4195 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 422-9250 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: LicandrS -givenName: Seelan -mail: LicandrS@3ba4a4ede18c4c8db3f772d09fc2a81c.bitwarden.com -carLicense: OV54SR -departmentNumber: 8160 -employeeType: Employee -homePhone: +1 415 906-6766 -initials: S. L. -mobile: +1 415 683-3998 -pager: +1 415 789-3422 -roomNumber: 9031 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashraf Owsiak -sn: Owsiak -description: This is Ashraf Owsiak's description -facsimileTelephoneNumber: +1 408 910-1246 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 251-7868 -title: Junior Administrative Vice President -userPassword: Password1 -uid: OwsiakA -givenName: Ashraf -mail: OwsiakA@94a04369a1f7454aa0b8a26e89e03c22.bitwarden.com -carLicense: 9E9K1Y -departmentNumber: 5224 -employeeType: Contract -homePhone: +1 408 946-1230 -initials: A. O. -mobile: +1 408 145-7878 -pager: +1 408 103-8311 -roomNumber: 9109 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hqs Dipper,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hqs Dipper -sn: Dipper -description: This is Hqs Dipper's description -facsimileTelephoneNumber: +1 510 885-6806 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 484-1491 -title: Master Janitorial Engineer -userPassword: Password1 -uid: DipperH -givenName: Hqs -mail: DipperH@6d4cfa9f4f814c42be18efd66cfafd41.bitwarden.com -carLicense: CGW47T -departmentNumber: 7579 -employeeType: Normal -homePhone: +1 510 614-9100 -initials: H. D. -mobile: +1 510 975-6735 -pager: +1 510 961-9207 -roomNumber: 8207 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sidone Ricks,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sidone Ricks -sn: Ricks -description: This is Sidone Ricks's description -facsimileTelephoneNumber: +1 804 407-8347 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 487-3777 -title: Chief Janitorial Figurehead -userPassword: Password1 -uid: RicksS -givenName: Sidone -mail: RicksS@d9b9bb6f2d1e411b9f5df67c724690de.bitwarden.com -carLicense: UQWX25 -departmentNumber: 7617 -employeeType: Normal -homePhone: +1 804 346-7303 -initials: S. R. -mobile: +1 804 296-9093 -pager: +1 804 450-4441 -roomNumber: 8513 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Meghan Wai,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meghan Wai -sn: Wai -description: This is Meghan Wai's description -facsimileTelephoneNumber: +1 408 429-9795 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 408 210-5490 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: WaiM -givenName: Meghan -mail: WaiM@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com -carLicense: ROSFWC -departmentNumber: 1031 -employeeType: Employee -homePhone: +1 408 635-5001 -initials: M. W. -mobile: +1 408 973-4722 -pager: +1 408 467-6649 -roomNumber: 8964 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Koen MacInnes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koen MacInnes -sn: MacInnes -description: This is Koen MacInnes's description -facsimileTelephoneNumber: +1 415 910-1584 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 845-2714 -title: Junior Human Resources Technician -userPassword: Password1 -uid: MacInneK -givenName: Koen -mail: MacInneK@7ac19f1f7e20467f8c026cc1031d7f95.bitwarden.com -carLicense: VRCJCM -departmentNumber: 8881 -employeeType: Employee -homePhone: +1 415 757-3091 -initials: K. M. -mobile: +1 415 704-3281 -pager: +1 415 729-7322 -roomNumber: 9762 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ertan Boddeveld -sn: Boddeveld -description: This is Ertan Boddeveld's description -facsimileTelephoneNumber: +1 510 458-3626 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 893-5296 -title: Master Product Development Writer -userPassword: Password1 -uid: BoddeveE -givenName: Ertan -mail: BoddeveE@deb24c82a57b4b4ba4fd2ff9dfbbb9d6.bitwarden.com -carLicense: GDROPS -departmentNumber: 4289 -employeeType: Employee -homePhone: +1 510 298-3538 -initials: E. B. -mobile: +1 510 298-1873 -pager: +1 510 480-2349 -roomNumber: 9050 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Doralin Worthington,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doralin Worthington -sn: Worthington -description: This is Doralin Worthington's description -facsimileTelephoneNumber: +1 415 647-3089 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 415 764-9184 -title: Master Management Artist -userPassword: Password1 -uid: WorthinD -givenName: Doralin -mail: WorthinD@3603f9fb94e045a59b767f557fde78c8.bitwarden.com -carLicense: F8Q9GL -departmentNumber: 8615 -employeeType: Contract -homePhone: +1 415 812-1866 -initials: D. W. -mobile: +1 415 211-5369 -pager: +1 415 528-5344 -roomNumber: 9344 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilith Dalsiel -sn: Dalsiel -description: This is Lilith Dalsiel's description -facsimileTelephoneNumber: +1 415 271-5058 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 415 574-8817 -title: Master Janitorial Artist -userPassword: Password1 -uid: DalsielL -givenName: Lilith -mail: DalsielL@f6d7bbdd5dca40ffa7d958eea386a355.bitwarden.com -carLicense: C6DETX -departmentNumber: 7461 -employeeType: Employee -homePhone: +1 415 230-9424 -initials: L. D. -mobile: +1 415 745-4028 -pager: +1 415 332-7250 -roomNumber: 8894 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Loris Godfrey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loris Godfrey -sn: Godfrey -description: This is Loris Godfrey's description -facsimileTelephoneNumber: +1 804 988-8964 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 974-9037 -title: Associate Product Testing Grunt -userPassword: Password1 -uid: GodfreyL -givenName: Loris -mail: GodfreyL@612e506d26154bfda9f499632b50c09f.bitwarden.com -carLicense: RGK5TF -departmentNumber: 4331 -employeeType: Employee -homePhone: +1 804 510-4718 -initials: L. G. -mobile: +1 804 178-8587 -pager: +1 804 503-8801 -roomNumber: 8379 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Monroe Halpin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monroe Halpin -sn: Halpin -description: This is Monroe Halpin's description -facsimileTelephoneNumber: +1 213 493-1474 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 867-1731 -title: Chief Management Madonna -userPassword: Password1 -uid: HalpinM -givenName: Monroe -mail: HalpinM@9a472823c68140e2a8970835c083aba5.bitwarden.com -carLicense: MANP8K -departmentNumber: 1614 -employeeType: Normal -homePhone: +1 213 855-7017 -initials: M. H. -mobile: +1 213 251-5579 -pager: +1 213 557-9815 -roomNumber: 8990 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gerianna Arnon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerianna Arnon -sn: Arnon -description: This is Gerianna Arnon's description -facsimileTelephoneNumber: +1 408 197-7588 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 560-5354 -title: Chief Administrative Consultant -userPassword: Password1 -uid: ArnonG -givenName: Gerianna -mail: ArnonG@b2ae4069e86943268e686f6fe06ee4a9.bitwarden.com -carLicense: T58H19 -departmentNumber: 8926 -employeeType: Employee -homePhone: +1 408 964-5224 -initials: G. A. -mobile: +1 408 936-3213 -pager: +1 408 982-1335 -roomNumber: 9276 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eustacia DIngianni -sn: DIngianni -description: This is Eustacia DIngianni's description -facsimileTelephoneNumber: +1 804 417-5312 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 260-8201 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: DIngianE -givenName: Eustacia -mail: DIngianE@5c5bca41c1084c1a8e475f6b76094495.bitwarden.com -carLicense: 0BVBT1 -departmentNumber: 3932 -employeeType: Employee -homePhone: +1 804 206-8898 -initials: E. D. -mobile: +1 804 523-7210 -pager: +1 804 390-6417 -roomNumber: 9551 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hazem Pien,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hazem Pien -sn: Pien -description: This is Hazem Pien's description -facsimileTelephoneNumber: +1 818 725-6260 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 963-1442 -title: Master Product Testing Engineer -userPassword: Password1 -uid: PienH -givenName: Hazem -mail: PienH@553ab4a4d0034a748d4563ad14308038.bitwarden.com -carLicense: FE4A8M -departmentNumber: 6105 -employeeType: Normal -homePhone: +1 818 252-1093 -initials: H. P. -mobile: +1 818 936-7549 -pager: +1 818 681-2601 -roomNumber: 9806 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cristofaro Dysart,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristofaro Dysart -sn: Dysart -description: This is Cristofaro Dysart's description -facsimileTelephoneNumber: +1 818 893-4847 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 818 693-9427 -title: Associate Peons Admin -userPassword: Password1 -uid: DysartC -givenName: Cristofaro -mail: DysartC@74f64cadc50c45bab4d4e7ff4e9f7687.bitwarden.com -carLicense: FJG7P7 -departmentNumber: 3881 -employeeType: Employee -homePhone: +1 818 964-1912 -initials: C. D. -mobile: +1 818 251-8000 -pager: +1 818 656-3948 -roomNumber: 9316 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Margot Muzio,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margot Muzio -sn: Muzio -description: This is Margot Muzio's description -facsimileTelephoneNumber: +1 206 765-3617 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 727-8853 -title: Master Peons Consultant -userPassword: Password1 -uid: MuzioM -givenName: Margot -mail: MuzioM@65efa32362a041c6bf7a11231598ac71.bitwarden.com -carLicense: LDEKMP -departmentNumber: 3665 -employeeType: Contract -homePhone: +1 206 620-6900 -initials: M. M. -mobile: +1 206 556-3746 -pager: +1 206 869-5722 -roomNumber: 8432 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Makary Wagers,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Makary Wagers -sn: Wagers -description: This is Makary Wagers's description -facsimileTelephoneNumber: +1 804 844-2349 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 964-8776 -title: Supreme Peons Director -userPassword: Password1 -uid: WagersM -givenName: Makary -mail: WagersM@ab6b4dd3e6a9481bb932dc2b39ad4c1b.bitwarden.com -carLicense: B1FJE4 -departmentNumber: 5355 -employeeType: Contract -homePhone: +1 804 913-5593 -initials: M. W. -mobile: +1 804 705-6583 -pager: +1 804 373-2411 -roomNumber: 9321 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Yudy Sandford,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yudy Sandford -sn: Sandford -description: This is Yudy Sandford's description -facsimileTelephoneNumber: +1 510 650-4829 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 882-3738 -title: Master Payroll Warrior -userPassword: Password1 -uid: SandforY -givenName: Yudy -mail: SandforY@d5cc15f6bb6b4357bd0ce84100b284f9.bitwarden.com -carLicense: RCWGAX -departmentNumber: 1011 -employeeType: Contract -homePhone: +1 510 633-4463 -initials: Y. S. -mobile: +1 510 200-7649 -pager: +1 510 603-4166 -roomNumber: 8366 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Baruk Junaid,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baruk Junaid -sn: Junaid -description: This is Baruk Junaid's description -facsimileTelephoneNumber: +1 804 988-2557 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 587-3349 -title: Supreme Peons Manager -userPassword: Password1 -uid: JunaidB -givenName: Baruk -mail: JunaidB@9f557b7cfb384a169129c691f7b5eeed.bitwarden.com -carLicense: 8TWAEW -departmentNumber: 2071 -employeeType: Normal -homePhone: +1 804 483-2345 -initials: B. J. -mobile: +1 804 303-3404 -pager: +1 804 841-4002 -roomNumber: 8200 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Morganne Grimmell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morganne Grimmell -sn: Grimmell -description: This is Morganne Grimmell's description -facsimileTelephoneNumber: +1 213 661-7046 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 241-4267 -title: Master Management Fellow -userPassword: Password1 -uid: GrimmelM -givenName: Morganne -mail: GrimmelM@477794cc09b1403eae274b941a7cdeff.bitwarden.com -carLicense: F45P7D -departmentNumber: 7473 -employeeType: Normal -homePhone: +1 213 220-5869 -initials: M. G. -mobile: +1 213 671-3574 -pager: +1 213 411-2595 -roomNumber: 8476 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Evaleen Beine,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evaleen Beine -sn: Beine -description: This is Evaleen Beine's description -facsimileTelephoneNumber: +1 804 380-7858 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 964-7956 -title: Master Product Testing Dictator -userPassword: Password1 -uid: BeineE -givenName: Evaleen -mail: BeineE@58d52c34bc5a4b32a84addaebe6b1c8a.bitwarden.com -carLicense: XNACIL -departmentNumber: 8796 -employeeType: Employee -homePhone: +1 804 169-1417 -initials: E. B. -mobile: +1 804 643-4638 -pager: +1 804 908-8870 -roomNumber: 8155 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yumi Mudry,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yumi Mudry -sn: Mudry -description: This is Yumi Mudry's description -facsimileTelephoneNumber: +1 206 448-3715 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 206 894-9379 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: MudryY -givenName: Yumi -mail: MudryY@30ca0b4b2c6d4aff9d3ac9b5f46982e5.bitwarden.com -carLicense: U8GQWH -departmentNumber: 8855 -employeeType: Normal -homePhone: +1 206 676-3306 -initials: Y. M. -mobile: +1 206 102-2809 -pager: +1 206 585-9105 -roomNumber: 8968 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Salomi Heisler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salomi Heisler -sn: Heisler -description: This is Salomi Heisler's description -facsimileTelephoneNumber: +1 818 719-2614 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 835-8382 -title: Supreme Management Mascot -userPassword: Password1 -uid: HeislerS -givenName: Salomi -mail: HeislerS@de69795c4c4c4284812c4db5353fa4eb.bitwarden.com -carLicense: Y92G7G -departmentNumber: 4068 -employeeType: Contract -homePhone: +1 818 940-9103 -initials: S. H. -mobile: +1 818 246-6905 -pager: +1 818 894-1128 -roomNumber: 8435 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Trey ETAS,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trey ETAS -sn: ETAS -description: This is Trey ETAS's description -facsimileTelephoneNumber: +1 510 403-3621 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 987-2792 -title: Chief Product Testing Punk -userPassword: Password1 -uid: ETAST -givenName: Trey -mail: ETAST@d79e418348c94168b4dd89d46432d83f.bitwarden.com -carLicense: V0AQW1 -departmentNumber: 1113 -employeeType: Contract -homePhone: +1 510 607-2057 -initials: T. E. -mobile: +1 510 366-3125 -pager: +1 510 115-3944 -roomNumber: 9139 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delisle Wishewan -sn: Wishewan -description: This is Delisle Wishewan's description -facsimileTelephoneNumber: +1 213 425-6258 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 691-5581 -title: Junior Janitorial Director -userPassword: Password1 -uid: WishewaD -givenName: Delisle -mail: WishewaD@35193777bef64194b24098fc1b98f7ef.bitwarden.com -carLicense: WBKXAD -departmentNumber: 6671 -employeeType: Normal -homePhone: +1 213 477-6447 -initials: D. W. -mobile: +1 213 745-9231 -pager: +1 213 819-5120 -roomNumber: 9383 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Co Knighten,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Co Knighten -sn: Knighten -description: This is Co Knighten's description -facsimileTelephoneNumber: +1 818 282-9038 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 383-7685 -title: Master Product Development Madonna -userPassword: Password1 -uid: KnighteC -givenName: Co -mail: KnighteC@87dcc1359cb14e3b85fed9765ee13d91.bitwarden.com -carLicense: DGBV0B -departmentNumber: 4707 -employeeType: Contract -homePhone: +1 818 697-3075 -initials: C. K. -mobile: +1 818 175-2183 -pager: +1 818 847-5630 -roomNumber: 9250 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gillie Rheaume,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gillie Rheaume -sn: Rheaume -description: This is Gillie Rheaume's description -facsimileTelephoneNumber: +1 206 265-9922 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 185-3529 -title: Master Product Development Warrior -userPassword: Password1 -uid: RheaumeG -givenName: Gillie -mail: RheaumeG@7741374717804087bc8fc55c986de74b.bitwarden.com -carLicense: S9GKML -departmentNumber: 3710 -employeeType: Employee -homePhone: +1 206 253-2465 -initials: G. R. -mobile: +1 206 294-2984 -pager: +1 206 327-7882 -roomNumber: 8355 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yvonne Benavidez -sn: Benavidez -description: This is Yvonne Benavidez's description -facsimileTelephoneNumber: +1 804 829-7981 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 745-5159 -title: Chief Product Development Technician -userPassword: Password1 -uid: BenavidY -givenName: Yvonne -mail: BenavidY@32037f3bd743420296270ff80da78e1b.bitwarden.com -carLicense: RFK2GF -departmentNumber: 6438 -employeeType: Employee -homePhone: +1 804 145-1011 -initials: Y. B. -mobile: +1 804 227-7193 -pager: +1 804 952-5578 -roomNumber: 8158 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jamal Scotti,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jamal Scotti -sn: Scotti -description: This is Jamal Scotti's description -facsimileTelephoneNumber: +1 510 799-6793 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 585-7303 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: ScottiJ -givenName: Jamal -mail: ScottiJ@13b504a8a169451f93c28e40583299e2.bitwarden.com -carLicense: P68Q27 -departmentNumber: 7767 -employeeType: Normal -homePhone: +1 510 632-3315 -initials: J. S. -mobile: +1 510 887-5981 -pager: +1 510 200-9636 -roomNumber: 9277 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sharri Lotz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharri Lotz -sn: Lotz -description: This is Sharri Lotz's description -facsimileTelephoneNumber: +1 804 182-7326 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 318-5508 -title: Supreme Product Development Director -userPassword: Password1 -uid: LotzS -givenName: Sharri -mail: LotzS@496d582fba1f48fead6391e894698c13.bitwarden.com -carLicense: R31FGO -departmentNumber: 7072 -employeeType: Employee -homePhone: +1 804 934-2794 -initials: S. L. -mobile: +1 804 717-7395 -pager: +1 804 348-5490 -roomNumber: 9223 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Agnella Loi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnella Loi -sn: Loi -description: This is Agnella Loi's description -facsimileTelephoneNumber: +1 213 691-4524 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 128-5088 -title: Chief Janitorial Technician -userPassword: Password1 -uid: LoiA -givenName: Agnella -mail: LoiA@e1f896403d134dc18441efaefd89f914.bitwarden.com -carLicense: J8V9ST -departmentNumber: 1820 -employeeType: Contract -homePhone: +1 213 921-3845 -initials: A. L. -mobile: +1 213 411-7720 -pager: +1 213 293-8147 -roomNumber: 9326 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Leno Henley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leno Henley -sn: Henley -description: This is Leno Henley's description -facsimileTelephoneNumber: +1 415 226-4955 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 564-2672 -title: Associate Management Technician -userPassword: Password1 -uid: HenleyL -givenName: Leno -mail: HenleyL@e29946cbb54948f9aec00f7a05eb0737.bitwarden.com -carLicense: 5CYCOK -departmentNumber: 6219 -employeeType: Normal -homePhone: +1 415 417-6026 -initials: L. H. -mobile: +1 415 356-2403 -pager: +1 415 234-3033 -roomNumber: 8896 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelbi Szeto -sn: Szeto -description: This is Shelbi Szeto's description -facsimileTelephoneNumber: +1 510 210-3792 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 161-7160 -title: Supreme Human Resources President -userPassword: Password1 -uid: SzetoS -givenName: Shelbi -mail: SzetoS@ef52200320a34601b7e10e8ff147afd3.bitwarden.com -carLicense: I9C6A1 -departmentNumber: 7482 -employeeType: Contract -homePhone: +1 510 622-5393 -initials: S. S. -mobile: +1 510 214-6585 -pager: +1 510 364-6113 -roomNumber: 8615 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rajinderpal Dace -sn: Dace -description: This is Rajinderpal Dace's description -facsimileTelephoneNumber: +1 415 409-6145 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 992-4286 -title: Junior Janitorial Architect -userPassword: Password1 -uid: DaceR -givenName: Rajinderpal -mail: DaceR@6caa5a9ac52c4d64b49fd033d3499ddc.bitwarden.com -carLicense: QHX2LV -departmentNumber: 2269 -employeeType: Normal -homePhone: +1 415 778-5806 -initials: R. D. -mobile: +1 415 271-1864 -pager: +1 415 749-7319 -roomNumber: 8470 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelcey Gregorio -sn: Gregorio -description: This is Kelcey Gregorio's description -facsimileTelephoneNumber: +1 818 825-5601 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 818 139-2118 -title: Chief Product Development Writer -userPassword: Password1 -uid: GregoriK -givenName: Kelcey -mail: GregoriK@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com -carLicense: TNCTST -departmentNumber: 3204 -employeeType: Contract -homePhone: +1 818 627-2437 -initials: K. G. -mobile: +1 818 270-3824 -pager: +1 818 124-7567 -roomNumber: 8807 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Elex Langer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elex Langer -sn: Langer -description: This is Elex Langer's description -facsimileTelephoneNumber: +1 415 248-5242 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 146-6831 -title: Associate Peons Mascot -userPassword: Password1 -uid: LangerE -givenName: Elex -mail: LangerE@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com -carLicense: E2694F -departmentNumber: 7964 -employeeType: Employee -homePhone: +1 415 514-8486 -initials: E. L. -mobile: +1 415 135-5887 -pager: +1 415 438-8087 -roomNumber: 8793 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dwain Bielby,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dwain Bielby -sn: Bielby -description: This is Dwain Bielby's description -facsimileTelephoneNumber: +1 213 676-4474 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 405-5894 -title: Chief Product Development Fellow -userPassword: Password1 -uid: BielbyD -givenName: Dwain -mail: BielbyD@0d89387630504e3d959bb5ff8f1b89ae.bitwarden.com -carLicense: 30O2GY -departmentNumber: 2388 -employeeType: Contract -homePhone: +1 213 560-9864 -initials: D. B. -mobile: +1 213 862-2544 -pager: +1 213 776-6182 -roomNumber: 8370 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhSon Mannion -sn: Mannion -description: This is ThanhSon Mannion's description -facsimileTelephoneNumber: +1 818 674-4805 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 928-2501 -title: Chief Human Resources Manager -userPassword: Password1 -uid: MannionT -givenName: ThanhSon -mail: MannionT@995756bc696444e0925a45b2d907b2e0.bitwarden.com -carLicense: AIRD81 -departmentNumber: 1833 -employeeType: Normal -homePhone: +1 818 317-9927 -initials: T. M. -mobile: +1 818 590-7578 -pager: +1 818 991-5317 -roomNumber: 8246 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Roy Terranova,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roy Terranova -sn: Terranova -description: This is Roy Terranova's description -facsimileTelephoneNumber: +1 206 809-9382 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 808-1261 -title: Junior Peons Fellow -userPassword: Password1 -uid: TerranoR -givenName: Roy -mail: TerranoR@57a6ba7501424a8abade55339f684e3b.bitwarden.com -carLicense: R0ON7T -departmentNumber: 1622 -employeeType: Employee -homePhone: +1 206 266-8848 -initials: R. T. -mobile: +1 206 986-7775 -pager: +1 206 272-5320 -roomNumber: 9560 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicol Fowlkes -sn: Fowlkes -description: This is Nicol Fowlkes's description -facsimileTelephoneNumber: +1 415 711-5409 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 239-3111 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: FowlkesN -givenName: Nicol -mail: FowlkesN@d40125293395457eaed2134155d04681.bitwarden.com -carLicense: 7NUGU5 -departmentNumber: 4263 -employeeType: Contract -homePhone: +1 415 642-4979 -initials: N. F. -mobile: +1 415 119-6789 -pager: +1 415 137-6223 -roomNumber: 8343 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vaughn Corlett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vaughn Corlett -sn: Corlett -description: This is Vaughn Corlett's description -facsimileTelephoneNumber: +1 213 786-3560 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 738-2025 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: CorlettV -givenName: Vaughn -mail: CorlettV@bb783944cdf1498cb4614b490b25cc0a.bitwarden.com -carLicense: OBNAMM -departmentNumber: 4720 -employeeType: Normal -homePhone: +1 213 281-3274 -initials: V. C. -mobile: +1 213 957-2146 -pager: +1 213 191-9372 -roomNumber: 9449 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gladys Helmy,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gladys Helmy -sn: Helmy -description: This is Gladys Helmy's description -facsimileTelephoneNumber: +1 206 796-3040 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 410-2927 -title: Supreme Management Pinhead -userPassword: Password1 -uid: HelmyG -givenName: Gladys -mail: HelmyG@df40332a741445b7a8fa73b2a928c4b0.bitwarden.com -carLicense: OBQBX2 -departmentNumber: 9007 -employeeType: Normal -homePhone: +1 206 136-1309 -initials: G. H. -mobile: +1 206 898-4192 -pager: +1 206 583-5044 -roomNumber: 8234 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bihari Mirek,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bihari Mirek -sn: Mirek -description: This is Bihari Mirek's description -facsimileTelephoneNumber: +1 510 329-4800 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 969-3044 -title: Master Product Development Technician -userPassword: Password1 -uid: MirekB -givenName: Bihari -mail: MirekB@3e044de8fdd14b83b9b0d85310545f1e.bitwarden.com -carLicense: H3IPIE -departmentNumber: 3311 -employeeType: Contract -homePhone: +1 510 362-3733 -initials: B. M. -mobile: +1 510 234-6522 -pager: +1 510 817-8524 -roomNumber: 8796 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bunni Dewitt -sn: Dewitt -description: This is Bunni Dewitt's description -facsimileTelephoneNumber: +1 818 794-6292 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 460-8654 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: DewittB -givenName: Bunni -mail: DewittB@fe07d129e5344ba9b03e2ffcc8db4597.bitwarden.com -carLicense: T9DAIF -departmentNumber: 4801 -employeeType: Employee -homePhone: +1 818 746-3765 -initials: B. D. -mobile: +1 818 951-4590 -pager: +1 818 633-2518 -roomNumber: 8671 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lissa Hernandez,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lissa Hernandez -sn: Hernandez -description: This is Lissa Hernandez's description -facsimileTelephoneNumber: +1 804 398-2204 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 239-9106 -title: Master Administrative Pinhead -userPassword: Password1 -uid: HernandL -givenName: Lissa -mail: HernandL@89e4e0e6aba5481cb5a471d8c425e9ac.bitwarden.com -carLicense: HUMJHV -departmentNumber: 7707 -employeeType: Normal -homePhone: +1 804 706-4911 -initials: L. H. -mobile: +1 804 781-1987 -pager: +1 804 125-7636 -roomNumber: 9763 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tabatha Shillingford -sn: Shillingford -description: This is Tabatha Shillingford's description -facsimileTelephoneNumber: +1 804 986-3208 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 449-5081 -title: Junior Product Development Artist -userPassword: Password1 -uid: ShillinT -givenName: Tabatha -mail: ShillinT@a33324bfbeba45c9aed68650670aad46.bitwarden.com -carLicense: M4KGSR -departmentNumber: 9599 -employeeType: Normal -homePhone: +1 804 453-9368 -initials: T. S. -mobile: +1 804 726-9680 -pager: +1 804 516-1513 -roomNumber: 9693 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deeanne Alfred -sn: Alfred -description: This is Deeanne Alfred's description -facsimileTelephoneNumber: +1 206 893-6369 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 206 606-6941 -title: Chief Human Resources Punk -userPassword: Password1 -uid: AlfredD -givenName: Deeanne -mail: AlfredD@6f609804b5454243a8f49419cf4fa238.bitwarden.com -carLicense: S4AIMI -departmentNumber: 6344 -employeeType: Contract -homePhone: +1 206 672-3874 -initials: D. A. -mobile: +1 206 130-2336 -pager: +1 206 174-8945 -roomNumber: 8412 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Torre Monahan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Torre Monahan -sn: Monahan -description: This is Torre Monahan's description -facsimileTelephoneNumber: +1 408 573-5856 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 423-5256 -title: Master Product Development Janitor -userPassword: Password1 -uid: MonahanT -givenName: Torre -mail: MonahanT@70748fe689e2445ebbe07527f7179bb2.bitwarden.com -carLicense: CBDA94 -departmentNumber: 9074 -employeeType: Normal -homePhone: +1 408 428-5262 -initials: T. M. -mobile: +1 408 653-2071 -pager: +1 408 736-6348 -roomNumber: 9331 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maia Arellano,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maia Arellano -sn: Arellano -description: This is Maia Arellano's description -facsimileTelephoneNumber: +1 206 635-6180 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 731-9306 -title: Master Janitorial Developer -userPassword: Password1 -uid: ArellanM -givenName: Maia -mail: ArellanM@f397e344461e4f9a88c49c97eb320637.bitwarden.com -carLicense: RYWLPL -departmentNumber: 3398 -employeeType: Normal -homePhone: +1 206 512-9839 -initials: M. A. -mobile: +1 206 669-5721 -pager: +1 206 505-1175 -roomNumber: 8954 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gina Hattar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gina Hattar -sn: Hattar -description: This is Gina Hattar's description -facsimileTelephoneNumber: +1 818 615-7822 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 721-4812 -title: Chief Management Figurehead -userPassword: Password1 -uid: HattarG -givenName: Gina -mail: HattarG@6d6628d9da624cadbb049fbfa6bdf2da.bitwarden.com -carLicense: AJDVBD -departmentNumber: 8513 -employeeType: Contract -homePhone: +1 818 197-7066 -initials: G. H. -mobile: +1 818 988-8188 -pager: +1 818 154-6497 -roomNumber: 9449 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dena Trottier,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dena Trottier -sn: Trottier -description: This is Dena Trottier's description -facsimileTelephoneNumber: +1 510 648-9781 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 394-7719 -title: Supreme Peons Czar -userPassword: Password1 -uid: TrottieD -givenName: Dena -mail: TrottieD@f4b8173477b44cefa65ae7313aaf8ebf.bitwarden.com -carLicense: 0DP0SS -departmentNumber: 6216 -employeeType: Employee -homePhone: +1 510 231-6818 -initials: D. T. -mobile: +1 510 657-9409 -pager: +1 510 317-7544 -roomNumber: 8825 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vmchange Cavan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vmchange Cavan -sn: Cavan -description: This is Vmchange Cavan's description -facsimileTelephoneNumber: +1 510 481-1671 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 510 967-9753 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: CavanV -givenName: Vmchange -mail: CavanV@1eb2456e111c4bd988f50cdf3b94db14.bitwarden.com -carLicense: 8R67FJ -departmentNumber: 8985 -employeeType: Contract -homePhone: +1 510 218-8948 -initials: V. C. -mobile: +1 510 966-1280 -pager: +1 510 343-2542 -roomNumber: 8229 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lorie Brickey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorie Brickey -sn: Brickey -description: This is Lorie Brickey's description -facsimileTelephoneNumber: +1 804 277-2908 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 684-9578 -title: Associate Product Development Janitor -userPassword: Password1 -uid: BrickeyL -givenName: Lorie -mail: BrickeyL@34a1d693e4fb4c4b93e2ff11c22319d7.bitwarden.com -carLicense: 6J5XYC -departmentNumber: 9044 -employeeType: Employee -homePhone: +1 804 825-8379 -initials: L. B. -mobile: +1 804 555-8688 -pager: +1 804 267-1569 -roomNumber: 9335 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ardie Dix,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardie Dix -sn: Dix -description: This is Ardie Dix's description -facsimileTelephoneNumber: +1 415 952-7653 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 327-7914 -title: Supreme Peons Consultant -userPassword: Password1 -uid: DixA -givenName: Ardie -mail: DixA@9572e6f979bb4b11856883fbf4267c29.bitwarden.com -carLicense: 1AWWLL -departmentNumber: 7140 -employeeType: Normal -homePhone: +1 415 956-7351 -initials: A. D. -mobile: +1 415 525-4900 -pager: +1 415 231-7326 -roomNumber: 8455 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maybelle Augustus,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maybelle Augustus -sn: Augustus -description: This is Maybelle Augustus's description -facsimileTelephoneNumber: +1 415 265-4889 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 207-4773 -title: Chief Product Development Czar -userPassword: Password1 -uid: AugustuM -givenName: Maybelle -mail: AugustuM@e822f80dc4b84873b9cd6725909b316b.bitwarden.com -carLicense: XFTCQM -departmentNumber: 3974 -employeeType: Contract -homePhone: +1 415 650-1324 -initials: M. A. -mobile: +1 415 293-3469 -pager: +1 415 775-4267 -roomNumber: 8050 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Engracia Materkowski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Engracia Materkowski -sn: Materkowski -description: This is Engracia Materkowski's description -facsimileTelephoneNumber: +1 804 250-3503 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 515-1406 -title: Supreme Payroll Developer -userPassword: Password1 -uid: MaterkoE -givenName: Engracia -mail: MaterkoE@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com -carLicense: AHCH2L -departmentNumber: 5124 -employeeType: Normal -homePhone: +1 804 518-3380 -initials: E. M. -mobile: +1 804 461-9116 -pager: +1 804 545-5798 -roomNumber: 9331 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jacqueline Durant,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacqueline Durant -sn: Durant -description: This is Jacqueline Durant's description -facsimileTelephoneNumber: +1 804 489-6456 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 804 362-4351 -title: Associate Payroll Consultant -userPassword: Password1 -uid: DurantJ -givenName: Jacqueline -mail: DurantJ@fd4b1798fa4b4adcbc4df665d1546e59.bitwarden.com -carLicense: A9NT2U -departmentNumber: 4905 -employeeType: Contract -homePhone: +1 804 625-2309 -initials: J. D. -mobile: +1 804 968-3835 -pager: +1 804 499-5052 -roomNumber: 9637 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Charly Klapper,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charly Klapper -sn: Klapper -description: This is Charly Klapper's description -facsimileTelephoneNumber: +1 408 235-2362 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 408 382-1679 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: KlapperC -givenName: Charly -mail: KlapperC@6c41c4f512984d04a91eed45d8e765ab.bitwarden.com -carLicense: S38VXG -departmentNumber: 2082 -employeeType: Normal -homePhone: +1 408 120-7558 -initials: C. K. -mobile: +1 408 615-2788 -pager: +1 408 120-2791 -roomNumber: 8309 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elpida Doerr,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elpida Doerr -sn: Doerr -description: This is Elpida Doerr's description -facsimileTelephoneNumber: +1 206 411-1866 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 490-9998 -title: Junior Payroll Janitor -userPassword: Password1 -uid: DoerrE -givenName: Elpida -mail: DoerrE@4310e2be3a3a4f5d87f9af032cb0053b.bitwarden.com -carLicense: 94IOXF -departmentNumber: 1541 -employeeType: Contract -homePhone: +1 206 481-2456 -initials: E. D. -mobile: +1 206 700-7304 -pager: +1 206 128-2987 -roomNumber: 9285 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bethena Parniani,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bethena Parniani -sn: Parniani -description: This is Bethena Parniani's description -facsimileTelephoneNumber: +1 818 400-6884 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 621-5989 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: ParnianB -givenName: Bethena -mail: ParnianB@6deaeb16d80f44ffa2ca06dfc1f89c97.bitwarden.com -carLicense: AB026B -departmentNumber: 9935 -employeeType: Contract -homePhone: +1 818 585-2219 -initials: B. P. -mobile: +1 818 215-1687 -pager: +1 818 160-8046 -roomNumber: 8835 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashlen Vaillant -sn: Vaillant -description: This is Ashlen Vaillant's description -facsimileTelephoneNumber: +1 818 917-6996 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 348-7099 -title: Junior Human Resources Writer -userPassword: Password1 -uid: VaillanA -givenName: Ashlen -mail: VaillanA@544f7671c8074caba5e197489f1c082c.bitwarden.com -carLicense: O5EFE2 -departmentNumber: 4329 -employeeType: Employee -homePhone: +1 818 230-1534 -initials: A. V. -mobile: +1 818 309-7645 -pager: +1 818 777-9230 -roomNumber: 9437 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Janka Macklem,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janka Macklem -sn: Macklem -description: This is Janka Macklem's description -facsimileTelephoneNumber: +1 206 559-5809 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 122-4159 -title: Master Management Evangelist -userPassword: Password1 -uid: MacklemJ -givenName: Janka -mail: MacklemJ@194b01da4c0947188a08ceb5675d4f64.bitwarden.com -carLicense: JLHH9K -departmentNumber: 3983 -employeeType: Contract -homePhone: +1 206 190-9624 -initials: J. M. -mobile: +1 206 127-8435 -pager: +1 206 926-8965 -roomNumber: 9162 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Myrtie Mc,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrtie Mc -sn: Mc -description: This is Myrtie Mc's description -facsimileTelephoneNumber: +1 206 339-2990 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 510-1966 -title: Master Administrative Czar -userPassword: Password1 -uid: McM -givenName: Myrtie -mail: McM@c91f0550b80f407f9309a7740af038d8.bitwarden.com -carLicense: 5JF241 -departmentNumber: 4974 -employeeType: Contract -homePhone: +1 206 898-9407 -initials: M. M. -mobile: +1 206 626-2218 -pager: +1 206 505-8400 -roomNumber: 9680 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edyta Gonzalez -sn: Gonzalez -description: This is Edyta Gonzalez's description -facsimileTelephoneNumber: +1 206 288-3863 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 290-9130 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: GonzaleE -givenName: Edyta -mail: GonzaleE@6b1195b29ef347f9ab299fd5409ce2bd.bitwarden.com -carLicense: 7AQD0W -departmentNumber: 8844 -employeeType: Normal -homePhone: +1 206 909-9786 -initials: E. G. -mobile: +1 206 383-9621 -pager: +1 206 558-4852 -roomNumber: 8360 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ludovika McKnight,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ludovika McKnight -sn: McKnight -description: This is Ludovika McKnight's description -facsimileTelephoneNumber: +1 408 737-4846 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 780-6370 -title: Chief Product Development Vice President -userPassword: Password1 -uid: McKnighL -givenName: Ludovika -mail: McKnighL@b1a6b6a5513044a8a462e54235172118.bitwarden.com -carLicense: NJJEU8 -departmentNumber: 9296 -employeeType: Normal -homePhone: +1 408 380-9509 -initials: L. M. -mobile: +1 408 582-3808 -pager: +1 408 837-1824 -roomNumber: 8151 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anil Cotuna,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anil Cotuna -sn: Cotuna -description: This is Anil Cotuna's description -facsimileTelephoneNumber: +1 818 886-4935 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 778-8916 -title: Associate Management Janitor -userPassword: Password1 -uid: CotunaA -givenName: Anil -mail: CotunaA@d0ee722bb1a5461aa78c6da256abd9e1.bitwarden.com -carLicense: 970UPB -departmentNumber: 9878 -employeeType: Employee -homePhone: +1 818 260-5064 -initials: A. C. -mobile: +1 818 432-3072 -pager: +1 818 783-4012 -roomNumber: 8388 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Merrile Wilson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrile Wilson -sn: Wilson -description: This is Merrile Wilson's description -facsimileTelephoneNumber: +1 206 280-5538 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 688-7852 -title: Junior Management Engineer -userPassword: Password1 -uid: WilsonM -givenName: Merrile -mail: WilsonM@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com -carLicense: 3ONDQP -departmentNumber: 6844 -employeeType: Contract -homePhone: +1 206 368-9675 -initials: M. W. -mobile: +1 206 958-4405 -pager: +1 206 382-3641 -roomNumber: 8400 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Zahara Ferree,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zahara Ferree -sn: Ferree -description: This is Zahara Ferree's description -facsimileTelephoneNumber: +1 206 761-9354 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 204-6079 -title: Chief Administrative Assistant -userPassword: Password1 -uid: FerreeZ -givenName: Zahara -mail: FerreeZ@fc85f8e4436a4774ae1c7ec792457997.bitwarden.com -carLicense: YKNU1W -departmentNumber: 5588 -employeeType: Employee -homePhone: +1 206 821-1336 -initials: Z. F. -mobile: +1 206 194-7508 -pager: +1 206 434-5837 -roomNumber: 9766 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maryrose Sagan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryrose Sagan -sn: Sagan -description: This is Maryrose Sagan's description -facsimileTelephoneNumber: +1 213 767-2007 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 815-7368 -title: Master Peons Sales Rep -userPassword: Password1 -uid: SaganM -givenName: Maryrose -mail: SaganM@78e9cef1d0e74415b642613eadf820dc.bitwarden.com -carLicense: 5SSQ5V -departmentNumber: 1615 -employeeType: Normal -homePhone: +1 213 741-5628 -initials: M. S. -mobile: +1 213 151-5643 -pager: +1 213 205-2019 -roomNumber: 9440 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Legra Binder,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Legra Binder -sn: Binder -description: This is Legra Binder's description -facsimileTelephoneNumber: +1 206 430-6271 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 368-5799 -title: Chief Administrative Director -userPassword: Password1 -uid: BinderL -givenName: Legra -mail: BinderL@16c9187062174be89c2c9f0c8fb48cf0.bitwarden.com -carLicense: 30RC1D -departmentNumber: 6918 -employeeType: Employee -homePhone: +1 206 933-5084 -initials: L. B. -mobile: +1 206 173-5180 -pager: +1 206 631-1053 -roomNumber: 8815 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ernaline Tierney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ernaline Tierney -sn: Tierney -description: This is Ernaline Tierney's description -facsimileTelephoneNumber: +1 213 210-7308 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 589-6603 -title: Chief Product Development Director -userPassword: Password1 -uid: TierneyE -givenName: Ernaline -mail: TierneyE@7e23b8de808e4c8687b7d328cf2c1f4d.bitwarden.com -carLicense: S89GTT -departmentNumber: 1770 -employeeType: Employee -homePhone: +1 213 626-2298 -initials: E. T. -mobile: +1 213 246-2959 -pager: +1 213 130-4285 -roomNumber: 9889 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Seven Nicol,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seven Nicol -sn: Nicol -description: This is Seven Nicol's description -facsimileTelephoneNumber: +1 804 131-9362 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 323-7184 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: NicolS -givenName: Seven -mail: NicolS@3f7557160f794dbf9536e20aa95467b3.bitwarden.com -carLicense: HTLQCO -departmentNumber: 1643 -employeeType: Employee -homePhone: +1 804 986-6395 -initials: S. N. -mobile: +1 804 788-1642 -pager: +1 804 959-4406 -roomNumber: 9431 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jeannine Forsythe,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeannine Forsythe -sn: Forsythe -description: This is Jeannine Forsythe's description -facsimileTelephoneNumber: +1 804 645-1581 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 180-7461 -title: Chief Peons Developer -userPassword: Password1 -uid: ForsythJ -givenName: Jeannine -mail: ForsythJ@a58f1d89c8df4bb585be88ea46688614.bitwarden.com -carLicense: AQ9OCU -departmentNumber: 3863 -employeeType: Contract -homePhone: +1 804 652-3441 -initials: J. F. -mobile: +1 804 980-1816 -pager: +1 804 959-7735 -roomNumber: 9040 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tilmon Taheri,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilmon Taheri -sn: Taheri -description: This is Tilmon Taheri's description -facsimileTelephoneNumber: +1 206 652-9779 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 206 849-8749 -title: Associate Administrative Admin -userPassword: Password1 -uid: TaheriT -givenName: Tilmon -mail: TaheriT@8c0b7ef96d07487ba2923e77c73234f0.bitwarden.com -carLicense: U2M4PN -departmentNumber: 8482 -employeeType: Employee -homePhone: +1 206 625-9592 -initials: T. T. -mobile: +1 206 106-4854 -pager: +1 206 601-9212 -roomNumber: 9270 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Svr Krishnan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Svr Krishnan -sn: Krishnan -description: This is Svr Krishnan's description -facsimileTelephoneNumber: +1 408 973-3817 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 298-5817 -title: Supreme Janitorial Punk -userPassword: Password1 -uid: KrishnaS -givenName: Svr -mail: KrishnaS@36d678241c3f4fb4beaa7d9336f3b523.bitwarden.com -carLicense: 1Y5EH8 -departmentNumber: 1895 -employeeType: Contract -homePhone: +1 408 932-9668 -initials: S. K. -mobile: +1 408 957-6552 -pager: +1 408 567-7524 -roomNumber: 8958 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Niki Khurana,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niki Khurana -sn: Khurana -description: This is Niki Khurana's description -facsimileTelephoneNumber: +1 510 545-8200 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 313-4718 -title: Master Product Development Fellow -userPassword: Password1 -uid: KhuranaN -givenName: Niki -mail: KhuranaN@b034a4332db1440db9d21ffa224b40ad.bitwarden.com -carLicense: 468JSO -departmentNumber: 8804 -employeeType: Normal -homePhone: +1 510 473-3011 -initials: N. K. -mobile: +1 510 992-3055 -pager: +1 510 473-5220 -roomNumber: 9507 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vmcord Saikaley -sn: Saikaley -description: This is Vmcord Saikaley's description -facsimileTelephoneNumber: +1 213 646-9780 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 523-8542 -title: Junior Product Development Writer -userPassword: Password1 -uid: SaikaleV -givenName: Vmcord -mail: SaikaleV@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com -carLicense: J1IACA -departmentNumber: 3891 -employeeType: Contract -homePhone: +1 213 432-3803 -initials: V. S. -mobile: +1 213 886-7489 -pager: +1 213 128-3914 -roomNumber: 9625 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Duong Laux,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duong Laux -sn: Laux -description: This is Duong Laux's description -facsimileTelephoneNumber: +1 804 959-4191 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 103-5198 -title: Junior Human Resources Director -userPassword: Password1 -uid: LauxD -givenName: Duong -mail: LauxD@6ad50b5570274446ac57cf22bb8d002a.bitwarden.com -carLicense: TRWB6B -departmentNumber: 2978 -employeeType: Employee -homePhone: +1 804 979-1123 -initials: D. L. -mobile: +1 804 826-8891 -pager: +1 804 602-2313 -roomNumber: 8106 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vevay Isert,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vevay Isert -sn: Isert -description: This is Vevay Isert's description -facsimileTelephoneNumber: +1 510 327-3634 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 942-5379 -title: Associate Management Technician -userPassword: Password1 -uid: IsertV -givenName: Vevay -mail: IsertV@761b142c7930458e927f8f3e0fb5672f.bitwarden.com -carLicense: 90C6EN -departmentNumber: 8034 -employeeType: Contract -homePhone: +1 510 735-6468 -initials: V. I. -mobile: +1 510 394-6538 -pager: +1 510 963-5632 -roomNumber: 8804 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lonnie Visser,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lonnie Visser -sn: Visser -description: This is Lonnie Visser's description -facsimileTelephoneNumber: +1 415 206-9597 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 183-8217 -title: Master Management Punk -userPassword: Password1 -uid: VisserL -givenName: Lonnie -mail: VisserL@a67ff5b1ad97429ba599b05adf0b8c32.bitwarden.com -carLicense: I052GD -departmentNumber: 7706 -employeeType: Contract -homePhone: +1 415 453-6327 -initials: L. V. -mobile: +1 415 835-9367 -pager: +1 415 315-7281 -roomNumber: 8970 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chungsik Choquette,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chungsik Choquette -sn: Choquette -description: This is Chungsik Choquette's description -facsimileTelephoneNumber: +1 213 918-4128 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 213 679-8018 -title: Chief Product Development Consultant -userPassword: Password1 -uid: ChoquetC -givenName: Chungsik -mail: ChoquetC@683e25fc9db544c199938de64838b325.bitwarden.com -carLicense: MB5L3D -departmentNumber: 9755 -employeeType: Employee -homePhone: +1 213 580-1140 -initials: C. C. -mobile: +1 213 568-8456 -pager: +1 213 873-6107 -roomNumber: 9590 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kalli Meilleur,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalli Meilleur -sn: Meilleur -description: This is Kalli Meilleur's description -facsimileTelephoneNumber: +1 206 960-5995 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 571-5765 -title: Associate Administrative Writer -userPassword: Password1 -uid: MeilleuK -givenName: Kalli -mail: MeilleuK@f48d7d3b63134ad1b2fb9b6ebafa3028.bitwarden.com -carLicense: 8TL1K9 -departmentNumber: 3068 -employeeType: Employee -homePhone: +1 206 616-7623 -initials: K. M. -mobile: +1 206 303-7825 -pager: +1 206 895-2652 -roomNumber: 8356 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Merline Riggs,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merline Riggs -sn: Riggs -description: This is Merline Riggs's description -facsimileTelephoneNumber: +1 804 955-6962 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 767-4850 -title: Junior Product Development Admin -userPassword: Password1 -uid: RiggsM -givenName: Merline -mail: RiggsM@baace83050b144e78a7deeac3e4a1a83.bitwarden.com -carLicense: YDRSX9 -departmentNumber: 4936 -employeeType: Employee -homePhone: +1 804 366-7038 -initials: M. R. -mobile: +1 804 333-7437 -pager: +1 804 940-8768 -roomNumber: 9347 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Milka Parkes,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milka Parkes -sn: Parkes -description: This is Milka Parkes's description -facsimileTelephoneNumber: +1 804 740-4796 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 456-8736 -title: Associate Administrative Evangelist -userPassword: Password1 -uid: ParkesM -givenName: Milka -mail: ParkesM@b0926f5fa5f345dab897ee36737c0cbd.bitwarden.com -carLicense: 5VWA47 -departmentNumber: 4082 -employeeType: Employee -homePhone: +1 804 230-5243 -initials: M. P. -mobile: +1 804 256-9320 -pager: +1 804 444-8997 -roomNumber: 8353 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bakel Fisette,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bakel Fisette -sn: Fisette -description: This is Bakel Fisette's description -facsimileTelephoneNumber: +1 415 563-4902 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 817-6835 -title: Associate Management Grunt -userPassword: Password1 -uid: FisetteB -givenName: Bakel -mail: FisetteB@78e39349ef7749648d2cb3e7b1e56508.bitwarden.com -carLicense: F8R4M4 -departmentNumber: 8661 -employeeType: Employee -homePhone: +1 415 859-8505 -initials: B. F. -mobile: +1 415 530-8957 -pager: +1 415 850-6358 -roomNumber: 9017 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anjanette Sookdeo -sn: Sookdeo -description: This is Anjanette Sookdeo's description -facsimileTelephoneNumber: +1 510 209-7048 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 515-5711 -title: Junior Payroll Fellow -userPassword: Password1 -uid: SookdeoA -givenName: Anjanette -mail: SookdeoA@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com -carLicense: 8G5DDV -departmentNumber: 1779 -employeeType: Normal -homePhone: +1 510 748-1141 -initials: A. S. -mobile: +1 510 425-9297 -pager: +1 510 426-2808 -roomNumber: 9822 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kiley Hester,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiley Hester -sn: Hester -description: This is Kiley Hester's description -facsimileTelephoneNumber: +1 213 302-5020 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 602-3272 -title: Junior Product Testing Figurehead -userPassword: Password1 -uid: HesterK -givenName: Kiley -mail: HesterK@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com -carLicense: CV580V -departmentNumber: 8970 -employeeType: Normal -homePhone: +1 213 221-7785 -initials: K. H. -mobile: +1 213 274-4745 -pager: +1 213 191-5189 -roomNumber: 8878 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eydie Edgar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eydie Edgar -sn: Edgar -description: This is Eydie Edgar's description -facsimileTelephoneNumber: +1 206 605-2720 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 352-8117 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: EdgarE -givenName: Eydie -mail: EdgarE@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com -carLicense: 8TB8JL -departmentNumber: 8471 -employeeType: Employee -homePhone: +1 206 404-8658 -initials: E. E. -mobile: +1 206 218-8212 -pager: +1 206 668-1283 -roomNumber: 9222 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sherwyn Monn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherwyn Monn -sn: Monn -description: This is Sherwyn Monn's description -facsimileTelephoneNumber: +1 818 126-5275 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 187-7888 -title: Supreme Administrative Manager -userPassword: Password1 -uid: MonnS -givenName: Sherwyn -mail: MonnS@173d5ea897d34c6da6358f054024f707.bitwarden.com -carLicense: 81Y7R3 -departmentNumber: 4760 -employeeType: Employee -homePhone: +1 818 513-7736 -initials: S. M. -mobile: +1 818 219-8353 -pager: +1 818 727-9161 -roomNumber: 8278 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Danna Hagenbuch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danna Hagenbuch -sn: Hagenbuch -description: This is Danna Hagenbuch's description -facsimileTelephoneNumber: +1 408 207-4671 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 666-2052 -title: Supreme Management Figurehead -userPassword: Password1 -uid: HagenbuD -givenName: Danna -mail: HagenbuD@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com -carLicense: 04G25A -departmentNumber: 1954 -employeeType: Employee -homePhone: +1 408 521-6037 -initials: D. H. -mobile: +1 408 853-9080 -pager: +1 408 813-7500 -roomNumber: 9644 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Flossi Davidson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flossi Davidson -sn: Davidson -description: This is Flossi Davidson's description -facsimileTelephoneNumber: +1 213 630-2597 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 800-8071 -title: Associate Management Grunt -userPassword: Password1 -uid: DavidsoF -givenName: Flossi -mail: DavidsoF@7f720158632c42a398491b4d094f5558.bitwarden.com -carLicense: 5JNCPL -departmentNumber: 9196 -employeeType: Normal -homePhone: +1 213 799-4783 -initials: F. D. -mobile: +1 213 907-3834 -pager: +1 213 654-2288 -roomNumber: 8392 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rosy Bergmann,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosy Bergmann -sn: Bergmann -description: This is Rosy Bergmann's description -facsimileTelephoneNumber: +1 206 218-3410 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 479-2533 -title: Junior Administrative Manager -userPassword: Password1 -uid: BergmanR -givenName: Rosy -mail: BergmanR@57edeceb332942988b2e62feed2c524a.bitwarden.com -carLicense: IK3M2P -departmentNumber: 8548 -employeeType: Employee -homePhone: +1 206 119-1467 -initials: R. B. -mobile: +1 206 197-7705 -pager: +1 206 131-9206 -roomNumber: 8184 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosabel VanDyke -sn: VanDyke -description: This is Rosabel VanDyke's description -facsimileTelephoneNumber: +1 213 491-4907 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 254-6873 -title: Master Human Resources Punk -userPassword: Password1 -uid: VanDykeR -givenName: Rosabel -mail: VanDykeR@07a219dc36ae49e5a7c3fca4d77987a8.bitwarden.com -carLicense: IW73SW -departmentNumber: 3420 -employeeType: Employee -homePhone: +1 213 897-8097 -initials: R. V. -mobile: +1 213 593-4830 -pager: +1 213 623-9648 -roomNumber: 8451 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huanyu Longfield -sn: Longfield -description: This is Huanyu Longfield's description -facsimileTelephoneNumber: +1 415 326-9200 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 819-4213 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: LongfieH -givenName: Huanyu -mail: LongfieH@40a22fdf1b874c29a422cf0d00644473.bitwarden.com -carLicense: WBEV5G -departmentNumber: 2518 -employeeType: Employee -homePhone: +1 415 772-1327 -initials: H. L. -mobile: +1 415 647-5331 -pager: +1 415 591-4686 -roomNumber: 9789 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chrystel Thorslund -sn: Thorslund -description: This is Chrystel Thorslund's description -facsimileTelephoneNumber: +1 510 605-5501 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 542-6689 -title: Chief Payroll Manager -userPassword: Password1 -uid: ThorsluC -givenName: Chrystel -mail: ThorsluC@3eb77d9e6bdc439197d45c120ada5eb9.bitwarden.com -carLicense: TQQD0M -departmentNumber: 9066 -employeeType: Contract -homePhone: +1 510 784-6154 -initials: C. T. -mobile: +1 510 423-4075 -pager: +1 510 724-7877 -roomNumber: 8428 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Larine Broca,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Larine Broca -sn: Broca -description: This is Larine Broca's description -facsimileTelephoneNumber: +1 213 628-4486 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 866-3875 -title: Master Peons Developer -userPassword: Password1 -uid: BrocaL -givenName: Larine -mail: BrocaL@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com -carLicense: XEGL20 -departmentNumber: 9899 -employeeType: Employee -homePhone: +1 213 743-8253 -initials: L. B. -mobile: +1 213 823-1017 -pager: +1 213 927-3866 -roomNumber: 8074 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherish Sandhu -sn: Sandhu -description: This is Cherish Sandhu's description -facsimileTelephoneNumber: +1 510 737-6106 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 883-9808 -title: Master Product Testing Evangelist -userPassword: Password1 -uid: SandhuC -givenName: Cherish -mail: SandhuC@b521092c73d244d8bb078d1c52e80bae.bitwarden.com -carLicense: 3Y6JFO -departmentNumber: 9217 -employeeType: Normal -homePhone: +1 510 271-2032 -initials: C. S. -mobile: +1 510 502-8401 -pager: +1 510 752-6585 -roomNumber: 8773 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Therine McCurdy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Therine McCurdy -sn: McCurdy -description: This is Therine McCurdy's description -facsimileTelephoneNumber: +1 206 161-6343 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 818-1738 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: McCurdyT -givenName: Therine -mail: McCurdyT@6f2328709fbe4233b85bba3d4ce3d844.bitwarden.com -carLicense: BTPNC2 -departmentNumber: 6971 -employeeType: Employee -homePhone: +1 206 395-6196 -initials: T. M. -mobile: +1 206 485-1771 -pager: +1 206 129-5505 -roomNumber: 8132 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Clarice Travers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarice Travers -sn: Travers -description: This is Clarice Travers's description -facsimileTelephoneNumber: +1 206 701-6937 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 225-2046 -title: Supreme Payroll Czar -userPassword: Password1 -uid: TraversC -givenName: Clarice -mail: TraversC@06521bdd507441e9a09de35a0e462c1a.bitwarden.com -carLicense: 3M6K9S -departmentNumber: 5856 -employeeType: Contract -homePhone: +1 206 794-5531 -initials: C. T. -mobile: +1 206 125-8378 -pager: +1 206 500-9513 -roomNumber: 9617 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dacey Bedard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dacey Bedard -sn: Bedard -description: This is Dacey Bedard's description -facsimileTelephoneNumber: +1 213 998-4798 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 837-3841 -title: Supreme Product Testing Architect -userPassword: Password1 -uid: BedardD -givenName: Dacey -mail: BedardD@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com -carLicense: AJOC75 -departmentNumber: 4814 -employeeType: Contract -homePhone: +1 213 181-9546 -initials: D. B. -mobile: +1 213 172-9180 -pager: +1 213 340-6914 -roomNumber: 9194 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lissa Barsky,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lissa Barsky -sn: Barsky -description: This is Lissa Barsky's description -facsimileTelephoneNumber: +1 415 333-6435 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 415 214-5955 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: BarskyL -givenName: Lissa -mail: BarskyL@72d3ee658b6a43d28d374f5d8eed91ab.bitwarden.com -carLicense: UE0SYH -departmentNumber: 6110 -employeeType: Contract -homePhone: +1 415 922-1314 -initials: L. B. -mobile: +1 415 120-2240 -pager: +1 415 690-3892 -roomNumber: 9992 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lino Endrys,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lino Endrys -sn: Endrys -description: This is Lino Endrys's description -facsimileTelephoneNumber: +1 213 185-1397 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 828-1574 -title: Supreme Peons Artist -userPassword: Password1 -uid: EndrysL -givenName: Lino -mail: EndrysL@fc250c767129499c871d245494e9d9b6.bitwarden.com -carLicense: BT6161 -departmentNumber: 5485 -employeeType: Contract -homePhone: +1 213 899-1162 -initials: L. E. -mobile: +1 213 657-8633 -pager: +1 213 880-8515 -roomNumber: 9138 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fina WGA,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fina WGA -sn: WGA -description: This is Fina WGA's description -facsimileTelephoneNumber: +1 510 665-2611 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 510 992-9559 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: WGAF -givenName: Fina -mail: WGAF@a4017bf573f740adae75dd44a602bed4.bitwarden.com -carLicense: 5SD51S -departmentNumber: 1253 -employeeType: Contract -homePhone: +1 510 136-1621 -initials: F. W. -mobile: +1 510 891-6904 -pager: +1 510 532-3366 -roomNumber: 8642 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Munir Colton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Munir Colton -sn: Colton -description: This is Munir Colton's description -facsimileTelephoneNumber: +1 804 474-9068 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 558-7660 -title: Junior Human Resources Architect -userPassword: Password1 -uid: ColtonM -givenName: Munir -mail: ColtonM@0e3cc15d16b54ddeae75d206f48f1204.bitwarden.com -carLicense: N2YW90 -departmentNumber: 6020 -employeeType: Normal -homePhone: +1 804 778-2183 -initials: M. C. -mobile: +1 804 577-2907 -pager: +1 804 755-9021 -roomNumber: 8524 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marje Dallaire,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marje Dallaire -sn: Dallaire -description: This is Marje Dallaire's description -facsimileTelephoneNumber: +1 510 846-1263 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 510 200-9312 -title: Associate Payroll Dictator -userPassword: Password1 -uid: DallairM -givenName: Marje -mail: DallairM@b6643004ae7246a0a5c8bc0fc567f1b8.bitwarden.com -carLicense: X5MSE7 -departmentNumber: 9627 -employeeType: Normal -homePhone: +1 510 138-1390 -initials: M. D. -mobile: +1 510 301-6461 -pager: +1 510 158-7626 -roomNumber: 8881 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Farrah Meehan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farrah Meehan -sn: Meehan -description: This is Farrah Meehan's description -facsimileTelephoneNumber: +1 415 670-5708 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 932-8671 -title: Junior Administrative Dictator -userPassword: Password1 -uid: MeehanF -givenName: Farrah -mail: MeehanF@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com -carLicense: WB9BU7 -departmentNumber: 9525 -employeeType: Contract -homePhone: +1 415 254-3151 -initials: F. M. -mobile: +1 415 623-1835 -pager: +1 415 356-9899 -roomNumber: 9702 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tilda Alsop,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilda Alsop -sn: Alsop -description: This is Tilda Alsop's description -facsimileTelephoneNumber: +1 415 735-8642 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 372-6132 -title: Supreme Peons Janitor -userPassword: Password1 -uid: AlsopT -givenName: Tilda -mail: AlsopT@4ae1d64c9a5a4ca1a7356298a39877d9.bitwarden.com -carLicense: R03HHD -departmentNumber: 7355 -employeeType: Employee -homePhone: +1 415 557-6244 -initials: T. A. -mobile: +1 415 909-6484 -pager: +1 415 381-1027 -roomNumber: 9535 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leni Janovich,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leni Janovich -sn: Janovich -description: This is Leni Janovich's description -facsimileTelephoneNumber: +1 510 650-5699 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 872-4145 -title: Junior Peons Assistant -userPassword: Password1 -uid: JanovicL -givenName: Leni -mail: JanovicL@7e56f35864a04d13abbef377d8dec333.bitwarden.com -carLicense: 8GB7B8 -departmentNumber: 2899 -employeeType: Contract -homePhone: +1 510 523-7325 -initials: L. J. -mobile: +1 510 960-6617 -pager: +1 510 856-5092 -roomNumber: 8416 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Katrina Morreale,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katrina Morreale -sn: Morreale -description: This is Katrina Morreale's description -facsimileTelephoneNumber: +1 213 307-2688 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 877-4534 -title: Associate Payroll Admin -userPassword: Password1 -uid: MorrealK -givenName: Katrina -mail: MorrealK@dde38d4cf79a43e6be6fc2e886efaf99.bitwarden.com -carLicense: JD6IX0 -departmentNumber: 8154 -employeeType: Normal -homePhone: +1 213 746-9160 -initials: K. M. -mobile: +1 213 236-4153 -pager: +1 213 155-7185 -roomNumber: 8430 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hinda Briante,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hinda Briante -sn: Briante -description: This is Hinda Briante's description -facsimileTelephoneNumber: +1 408 550-2883 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 295-2016 -title: Chief Payroll Admin -userPassword: Password1 -uid: BrianteH -givenName: Hinda -mail: BrianteH@4d239de3030746348f24ce6068a42829.bitwarden.com -carLicense: CM24H3 -departmentNumber: 4675 -employeeType: Employee -homePhone: +1 408 678-3186 -initials: H. B. -mobile: +1 408 148-3394 -pager: +1 408 128-2023 -roomNumber: 9339 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Helli Frie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helli Frie -sn: Frie -description: This is Helli Frie's description -facsimileTelephoneNumber: +1 206 822-9485 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 499-9965 -title: Junior Human Resources Writer -userPassword: Password1 -uid: FrieH -givenName: Helli -mail: FrieH@ce4d0d0fb96d4c2eaa1d4595e57562a4.bitwarden.com -carLicense: V6NTLT -departmentNumber: 1629 -employeeType: Normal -homePhone: +1 206 832-2279 -initials: H. F. -mobile: +1 206 422-5293 -pager: +1 206 289-2988 -roomNumber: 9755 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Renell Ulrich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renell Ulrich -sn: Ulrich -description: This is Renell Ulrich's description -facsimileTelephoneNumber: +1 510 955-2084 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 510 341-8405 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: UlrichR -givenName: Renell -mail: UlrichR@d753a61915314cb8b467492897701efa.bitwarden.com -carLicense: 5G6Y9J -departmentNumber: 8708 -employeeType: Contract -homePhone: +1 510 259-8310 -initials: R. U. -mobile: +1 510 339-8179 -pager: +1 510 290-5097 -roomNumber: 9515 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raven EmdinSproule -sn: EmdinSproule -description: This is Raven EmdinSproule's description -facsimileTelephoneNumber: +1 818 680-5490 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 102-7469 -title: Associate Payroll Assistant -userPassword: Password1 -uid: EmdinSpR -givenName: Raven -mail: EmdinSpR@f57569f7524f4479b4d43ec8c220c303.bitwarden.com -carLicense: BEPKI6 -departmentNumber: 6199 -employeeType: Employee -homePhone: +1 818 554-6451 -initials: R. E. -mobile: +1 818 374-8185 -pager: +1 818 399-2603 -roomNumber: 9757 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Moel Taralp,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moel Taralp -sn: Taralp -description: This is Moel Taralp's description -facsimileTelephoneNumber: +1 510 825-3294 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 582-6402 -title: Supreme Human Resources Artist -userPassword: Password1 -uid: TaralpM -givenName: Moel -mail: TaralpM@541a9a67add74942af05ec9661f08230.bitwarden.com -carLicense: DPBA7P -departmentNumber: 4512 -employeeType: Normal -homePhone: +1 510 897-3845 -initials: M. T. -mobile: +1 510 737-4581 -pager: +1 510 124-8627 -roomNumber: 9989 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estel Hawryluk -sn: Hawryluk -description: This is Estel Hawryluk's description -facsimileTelephoneNumber: +1 804 499-1180 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 930-2632 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: HawryluE -givenName: Estel -mail: HawryluE@7a76f51f9f0b406b9e567bf7dd0f00c8.bitwarden.com -carLicense: QRK3P3 -departmentNumber: 1223 -employeeType: Normal -homePhone: +1 804 440-8771 -initials: E. H. -mobile: +1 804 760-6456 -pager: +1 804 194-2006 -roomNumber: 9376 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Keeley Rok,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keeley Rok -sn: Rok -description: This is Keeley Rok's description -facsimileTelephoneNumber: +1 408 743-8568 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 826-1634 -title: Chief Peons Evangelist -userPassword: Password1 -uid: RokK -givenName: Keeley -mail: RokK@1808029426c342b7ba28a7e8e39e2911.bitwarden.com -carLicense: KMALDV -departmentNumber: 7477 -employeeType: Employee -homePhone: +1 408 723-2791 -initials: K. R. -mobile: +1 408 805-8296 -pager: +1 408 529-9369 -roomNumber: 8489 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Britta Melucci,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Britta Melucci -sn: Melucci -description: This is Britta Melucci's description -facsimileTelephoneNumber: +1 213 998-2042 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 220-7685 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: MelucciB -givenName: Britta -mail: MelucciB@fa0b8cf1d3c34137bfd563ac76c1d5af.bitwarden.com -carLicense: 6TJEWG -departmentNumber: 1688 -employeeType: Employee -homePhone: +1 213 864-8346 -initials: B. M. -mobile: +1 213 769-9454 -pager: +1 213 222-3144 -roomNumber: 8631 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=StClair Farren,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: StClair Farren -sn: Farren -description: This is StClair Farren's description -facsimileTelephoneNumber: +1 415 990-7324 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 362-9934 -title: Master Product Development Engineer -userPassword: Password1 -uid: FarrenS -givenName: StClair -mail: FarrenS@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com -carLicense: UK3WE9 -departmentNumber: 7031 -employeeType: Contract -homePhone: +1 415 184-4648 -initials: S. F. -mobile: +1 415 230-5483 -pager: +1 415 479-1633 -roomNumber: 9530 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vino Papantonis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vino Papantonis -sn: Papantonis -description: This is Vino Papantonis's description -facsimileTelephoneNumber: +1 818 180-8167 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 959-4957 -title: Supreme Peons Grunt -userPassword: Password1 -uid: PapantoV -givenName: Vino -mail: PapantoV@ac22893bf0684aefaebb0a0decbe182b.bitwarden.com -carLicense: 6VAMTF -departmentNumber: 9659 -employeeType: Normal -homePhone: +1 818 495-5440 -initials: V. P. -mobile: +1 818 286-6703 -pager: +1 818 129-3129 -roomNumber: 8358 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sandi ENG,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandi ENG -sn: ENG -description: This is Sandi ENG's description -facsimileTelephoneNumber: +1 408 856-2673 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 879-2925 -title: Junior Administrative Engineer -userPassword: Password1 -uid: ENGS -givenName: Sandi -mail: ENGS@e0e7355126af4d6f962ec720851e512c.bitwarden.com -carLicense: WMATXW -departmentNumber: 2696 -employeeType: Contract -homePhone: +1 408 335-6050 -initials: S. E. -mobile: +1 408 161-3115 -pager: +1 408 614-2649 -roomNumber: 9134 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Michaela Blimkie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michaela Blimkie -sn: Blimkie -description: This is Michaela Blimkie's description -facsimileTelephoneNumber: +1 415 717-8385 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 679-3934 -title: Associate Payroll Architect -userPassword: Password1 -uid: BlimkieM -givenName: Michaela -mail: BlimkieM@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com -carLicense: 0BY5HP -departmentNumber: 5439 -employeeType: Contract -homePhone: +1 415 379-8473 -initials: M. B. -mobile: +1 415 408-9078 -pager: +1 415 926-7483 -roomNumber: 9256 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mort Kestelman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mort Kestelman -sn: Kestelman -description: This is Mort Kestelman's description -facsimileTelephoneNumber: +1 804 987-1167 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 810-1228 -title: Supreme Payroll Vice President -userPassword: Password1 -uid: KestelmM -givenName: Mort -mail: KestelmM@e1893d7ef9564395a0b1b816030adce2.bitwarden.com -carLicense: 6OQF3J -departmentNumber: 8981 -employeeType: Contract -homePhone: +1 804 721-7318 -initials: M. K. -mobile: +1 804 123-5211 -pager: +1 804 486-8089 -roomNumber: 9820 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ealasaid Kiang -sn: Kiang -description: This is Ealasaid Kiang's description -facsimileTelephoneNumber: +1 213 141-1301 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 410-8737 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: KiangE -givenName: Ealasaid -mail: KiangE@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com -carLicense: OY32XO -departmentNumber: 1919 -employeeType: Employee -homePhone: +1 213 816-6689 -initials: E. K. -mobile: +1 213 541-1468 -pager: +1 213 233-1199 -roomNumber: 9221 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Reinhold Briggs,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reinhold Briggs -sn: Briggs -description: This is Reinhold Briggs's description -facsimileTelephoneNumber: +1 206 179-2389 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 156-3443 -title: Associate Peons Fellow -userPassword: Password1 -uid: BriggsR -givenName: Reinhold -mail: BriggsR@7408ed731222450eb6a92df81540fc99.bitwarden.com -carLicense: FKYN38 -departmentNumber: 4621 -employeeType: Employee -homePhone: +1 206 686-2957 -initials: R. B. -mobile: +1 206 952-6269 -pager: +1 206 512-3448 -roomNumber: 9082 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Norbert Rider,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norbert Rider -sn: Rider -description: This is Norbert Rider's description -facsimileTelephoneNumber: +1 408 888-8767 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 596-8284 -title: Chief Payroll Writer -userPassword: Password1 -uid: RiderN -givenName: Norbert -mail: RiderN@1f0f559b444d45e3b1fe4488d0fe440e.bitwarden.com -carLicense: CPC38G -departmentNumber: 6406 -employeeType: Contract -homePhone: +1 408 735-1203 -initials: N. R. -mobile: +1 408 833-8153 -pager: +1 408 428-5452 -roomNumber: 8527 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eveline Smelters,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eveline Smelters -sn: Smelters -description: This is Eveline Smelters's description -facsimileTelephoneNumber: +1 206 988-5533 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 271-2058 -title: Master Administrative Stooge -userPassword: Password1 -uid: SmelterE -givenName: Eveline -mail: SmelterE@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com -carLicense: 95G06N -departmentNumber: 5745 -employeeType: Normal -homePhone: +1 206 323-7672 -initials: E. S. -mobile: +1 206 576-3911 -pager: +1 206 817-3299 -roomNumber: 8606 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elinor Stambouli,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elinor Stambouli -sn: Stambouli -description: This is Elinor Stambouli's description -facsimileTelephoneNumber: +1 818 113-6651 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 362-3157 -title: Chief Management Evangelist -userPassword: Password1 -uid: StambouE -givenName: Elinor -mail: StambouE@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com -carLicense: BUM884 -departmentNumber: 2778 -employeeType: Normal -homePhone: +1 818 726-6099 -initials: E. S. -mobile: +1 818 310-4576 -pager: +1 818 460-2086 -roomNumber: 8746 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maribel Whiteford -sn: Whiteford -description: This is Maribel Whiteford's description -facsimileTelephoneNumber: +1 818 556-4977 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 244-1395 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: WhitefoM -givenName: Maribel -mail: WhitefoM@b0c48599d24847958412615828406699.bitwarden.com -carLicense: GHN2IK -departmentNumber: 2077 -employeeType: Employee -homePhone: +1 818 124-7012 -initials: M. W. -mobile: +1 818 150-2493 -pager: +1 818 295-2365 -roomNumber: 8447 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Donnette Kenol,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donnette Kenol -sn: Kenol -description: This is Donnette Kenol's description -facsimileTelephoneNumber: +1 213 661-8815 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 797-6731 -title: Supreme Administrative Evangelist -userPassword: Password1 -uid: KenolD -givenName: Donnette -mail: KenolD@f9cc3d472225428da9ff7fce4cb3bfb3.bitwarden.com -carLicense: HMG667 -departmentNumber: 1992 -employeeType: Normal -homePhone: +1 213 444-6332 -initials: D. K. -mobile: +1 213 398-9898 -pager: +1 213 714-7255 -roomNumber: 9504 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Margette Keogh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margette Keogh -sn: Keogh -description: This is Margette Keogh's description -facsimileTelephoneNumber: +1 206 765-2237 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 782-1346 -title: Junior Product Development Technician -userPassword: Password1 -uid: KeoghM -givenName: Margette -mail: KeoghM@3f1cc5153abb4e0f860ad9c6b08e10e5.bitwarden.com -carLicense: EMD5AC -departmentNumber: 4233 -employeeType: Contract -homePhone: +1 206 534-2782 -initials: M. K. -mobile: +1 206 950-1686 -pager: +1 206 659-5346 -roomNumber: 9888 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Qainfo Goodbar -sn: Goodbar -description: This is Qainfo Goodbar's description -facsimileTelephoneNumber: +1 213 248-3247 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 166-9295 -title: Supreme Human Resources Director -userPassword: Password1 -uid: GoodbarQ -givenName: Qainfo -mail: GoodbarQ@e3e39ba9c49a4a66982393d6f26bc8b1.bitwarden.com -carLicense: V9M8CL -departmentNumber: 3315 -employeeType: Normal -homePhone: +1 213 377-2105 -initials: Q. G. -mobile: +1 213 174-6964 -pager: +1 213 678-6737 -roomNumber: 9631 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Makam Kumagai,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Makam Kumagai -sn: Kumagai -description: This is Makam Kumagai's description -facsimileTelephoneNumber: +1 415 835-6422 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 495-2463 -title: Associate Product Development Warrior -userPassword: Password1 -uid: KumagaiM -givenName: Makam -mail: KumagaiM@f41afebdf3e64dc8bbc4c83491a13722.bitwarden.com -carLicense: J3HB6Q -departmentNumber: 2123 -employeeType: Contract -homePhone: +1 415 242-3034 -initials: M. K. -mobile: +1 415 684-4876 -pager: +1 415 233-1022 -roomNumber: 9932 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tallou Vairavan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tallou Vairavan -sn: Vairavan -description: This is Tallou Vairavan's description -facsimileTelephoneNumber: +1 408 727-6878 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 408 495-3327 -title: Master Management Consultant -userPassword: Password1 -uid: VairavaT -givenName: Tallou -mail: VairavaT@f36f45f8205e4b108d066ef8eb28e68b.bitwarden.com -carLicense: FJJ6JO -departmentNumber: 4592 -employeeType: Employee -homePhone: +1 408 123-9214 -initials: T. V. -mobile: +1 408 235-8483 -pager: +1 408 183-9535 -roomNumber: 8153 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Elana Derrett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elana Derrett -sn: Derrett -description: This is Elana Derrett's description -facsimileTelephoneNumber: +1 408 572-9624 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 356-3255 -title: Master Management Figurehead -userPassword: Password1 -uid: DerrettE -givenName: Elana -mail: DerrettE@d7e8af68284e4062b608faac310d89ae.bitwarden.com -carLicense: TOU6YX -departmentNumber: 4300 -employeeType: Employee -homePhone: +1 408 273-3823 -initials: E. D. -mobile: +1 408 261-7771 -pager: +1 408 438-9326 -roomNumber: 9501 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hanny Farranto,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanny Farranto -sn: Farranto -description: This is Hanny Farranto's description -facsimileTelephoneNumber: +1 206 895-1230 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 248-5090 -title: Junior Human Resources Writer -userPassword: Password1 -uid: FarrantH -givenName: Hanny -mail: FarrantH@ea15a193a8df46519e51db6c6a047dbd.bitwarden.com -carLicense: 94MQJ0 -departmentNumber: 9951 -employeeType: Employee -homePhone: +1 206 514-6232 -initials: H. F. -mobile: +1 206 130-9737 -pager: +1 206 139-3913 -roomNumber: 8872 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lucina Hobesh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucina Hobesh -sn: Hobesh -description: This is Lucina Hobesh's description -facsimileTelephoneNumber: +1 818 775-5842 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 818 492-9669 -title: Chief Payroll Assistant -userPassword: Password1 -uid: HobeshL -givenName: Lucina -mail: HobeshL@93250e1458e9462fb7830f342f899a75.bitwarden.com -carLicense: 83B63M -departmentNumber: 5729 -employeeType: Contract -homePhone: +1 818 672-9547 -initials: L. H. -mobile: +1 818 235-6750 -pager: +1 818 832-6713 -roomNumber: 9464 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jashvant Mellor,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jashvant Mellor -sn: Mellor -description: This is Jashvant Mellor's description -facsimileTelephoneNumber: +1 213 984-7103 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 633-3734 -title: Chief Administrative Czar -userPassword: Password1 -uid: MellorJ -givenName: Jashvant -mail: MellorJ@55336785d1804c1187eaae0c065b51fd.bitwarden.com -carLicense: 4OBG8M -departmentNumber: 2393 -employeeType: Contract -homePhone: +1 213 189-5312 -initials: J. M. -mobile: +1 213 836-6062 -pager: +1 213 677-1887 -roomNumber: 8370 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dupuy McNeese,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dupuy McNeese -sn: McNeese -description: This is Dupuy McNeese's description -facsimileTelephoneNumber: +1 408 694-2377 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 662-8092 -title: Supreme Administrative Consultant -userPassword: Password1 -uid: McNeeseD -givenName: Dupuy -mail: McNeeseD@86125263637c4474aade3dd7790bda7e.bitwarden.com -carLicense: WRMG28 -departmentNumber: 5912 -employeeType: Normal -homePhone: +1 408 882-3537 -initials: D. M. -mobile: +1 408 664-4020 -pager: +1 408 132-9081 -roomNumber: 9929 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ying Forbs,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ying Forbs -sn: Forbs -description: This is Ying Forbs's description -facsimileTelephoneNumber: +1 415 956-9902 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 896-7997 -title: Master Janitorial Madonna -userPassword: Password1 -uid: ForbsY -givenName: Ying -mail: ForbsY@56ff7c3ad2a74f428698e9d39e33820f.bitwarden.com -carLicense: C0QPKX -departmentNumber: 2294 -employeeType: Normal -homePhone: +1 415 570-2932 -initials: Y. F. -mobile: +1 415 650-5374 -pager: +1 415 140-3941 -roomNumber: 9315 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Paper Cowell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paper Cowell -sn: Cowell -description: This is Paper Cowell's description -facsimileTelephoneNumber: +1 213 482-1760 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 935-7015 -title: Associate Payroll Czar -userPassword: Password1 -uid: CowellP -givenName: Paper -mail: CowellP@625cb40efd254ff9b90ed168d6dd3db9.bitwarden.com -carLicense: L3MH4P -departmentNumber: 4606 -employeeType: Normal -homePhone: +1 213 691-3946 -initials: P. C. -mobile: +1 213 335-1191 -pager: +1 213 769-5004 -roomNumber: 9332 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vispy Snair,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vispy Snair -sn: Snair -description: This is Vispy Snair's description -facsimileTelephoneNumber: +1 804 773-9228 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 913-4181 -title: Associate Product Development Fellow -userPassword: Password1 -uid: SnairV -givenName: Vispy -mail: SnairV@9d84faf7708a4fd5a3f8345e3cbc0463.bitwarden.com -carLicense: 3V68IY -departmentNumber: 3755 -employeeType: Employee -homePhone: +1 804 106-1656 -initials: V. S. -mobile: +1 804 848-4588 -pager: +1 804 124-6377 -roomNumber: 9907 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mona DeCecco,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mona DeCecco -sn: DeCecco -description: This is Mona DeCecco's description -facsimileTelephoneNumber: +1 213 882-3716 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 428-6480 -title: Master Product Development Stooge -userPassword: Password1 -uid: DeCeccoM -givenName: Mona -mail: DeCeccoM@3b5097c7d33f4dd5b850d3928945e3fb.bitwarden.com -carLicense: 51EVGS -departmentNumber: 1100 -employeeType: Contract -homePhone: +1 213 425-1001 -initials: M. D. -mobile: +1 213 502-6296 -pager: +1 213 448-2216 -roomNumber: 9835 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karolien Beznowski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karolien Beznowski -sn: Beznowski -description: This is Karolien Beznowski's description -facsimileTelephoneNumber: +1 415 286-5391 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 509-2248 -title: Junior Payroll Director -userPassword: Password1 -uid: BeznowsK -givenName: Karolien -mail: BeznowsK@3e2956746c7c41b7b4dc5e63792f43cc.bitwarden.com -carLicense: CJ40CJ -departmentNumber: 1825 -employeeType: Contract -homePhone: +1 415 867-2982 -initials: K. B. -mobile: +1 415 973-1275 -pager: +1 415 303-1466 -roomNumber: 8300 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arabela Lobaugh -sn: Lobaugh -description: This is Arabela Lobaugh's description -facsimileTelephoneNumber: +1 510 243-8722 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 592-9601 -title: Junior Product Testing Architect -userPassword: Password1 -uid: LobaughA -givenName: Arabela -mail: LobaughA@5bd598c0d9694b5a98586530464323e1.bitwarden.com -carLicense: 6E57JC -departmentNumber: 6250 -employeeType: Normal -homePhone: +1 510 247-1207 -initials: A. L. -mobile: +1 510 323-2838 -pager: +1 510 825-2075 -roomNumber: 8985 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Frinel Godcharles,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frinel Godcharles -sn: Godcharles -description: This is Frinel Godcharles's description -facsimileTelephoneNumber: +1 408 935-7314 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 950-9979 -title: Chief Product Development Manager -userPassword: Password1 -uid: GodcharF -givenName: Frinel -mail: GodcharF@56069289c8d64d7e83fba8ed9cea781f.bitwarden.com -carLicense: DFFX2I -departmentNumber: 9780 -employeeType: Employee -homePhone: +1 408 351-7660 -initials: F. G. -mobile: +1 408 687-8846 -pager: +1 408 437-6164 -roomNumber: 8943 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dung Goldstein,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dung Goldstein -sn: Goldstein -description: This is Dung Goldstein's description -facsimileTelephoneNumber: +1 818 548-7051 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 493-1750 -title: Junior Product Development Madonna -userPassword: Password1 -uid: GoldsteD -givenName: Dung -mail: GoldsteD@a0e76cfa1c434c8b8797cc038ac77ad3.bitwarden.com -carLicense: LNYHIC -departmentNumber: 9658 -employeeType: Contract -homePhone: +1 818 228-4673 -initials: D. G. -mobile: +1 818 334-5396 -pager: +1 818 611-6052 -roomNumber: 8109 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Scarlet Coody,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Scarlet Coody -sn: Coody -description: This is Scarlet Coody's description -facsimileTelephoneNumber: +1 804 480-1167 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 967-8353 -title: Chief Product Development Janitor -userPassword: Password1 -uid: CoodyS -givenName: Scarlet -mail: CoodyS@ae5f65ffb5c9447faad9235fe08e30d3.bitwarden.com -carLicense: N1UMWG -departmentNumber: 3127 -employeeType: Employee -homePhone: +1 804 265-2421 -initials: S. C. -mobile: +1 804 841-6212 -pager: +1 804 133-6911 -roomNumber: 9453 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Julina Stahly,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julina Stahly -sn: Stahly -description: This is Julina Stahly's description -facsimileTelephoneNumber: +1 213 628-6371 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 986-1201 -title: Chief Product Testing Technician -userPassword: Password1 -uid: StahlyJ -givenName: Julina -mail: StahlyJ@9d473530c714418981d7e4ad1f672212.bitwarden.com -carLicense: U7N03A -departmentNumber: 5305 -employeeType: Employee -homePhone: +1 213 596-2773 -initials: J. S. -mobile: +1 213 950-2121 -pager: +1 213 552-5050 -roomNumber: 8800 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kippy Roman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kippy Roman -sn: Roman -description: This is Kippy Roman's description -facsimileTelephoneNumber: +1 213 348-9426 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 411-8616 -title: Supreme Payroll Admin -userPassword: Password1 -uid: RomanK -givenName: Kippy -mail: RomanK@3986b5b118ef4d79a84f9f227789123a.bitwarden.com -carLicense: KCQQ2G -departmentNumber: 6426 -employeeType: Normal -homePhone: +1 213 291-8687 -initials: K. R. -mobile: +1 213 503-8541 -pager: +1 213 448-8494 -roomNumber: 8624 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Helsa Stahly,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helsa Stahly -sn: Stahly -description: This is Helsa Stahly's description -facsimileTelephoneNumber: +1 213 838-4877 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 529-3683 -title: Junior Management Architect -userPassword: Password1 -uid: StahlyH -givenName: Helsa -mail: StahlyH@e28d4d2595974c10b2f19b4fce54fe69.bitwarden.com -carLicense: 2FBQH0 -departmentNumber: 7774 -employeeType: Employee -homePhone: +1 213 812-1363 -initials: H. S. -mobile: +1 213 884-8466 -pager: +1 213 421-4298 -roomNumber: 9621 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hiroko Whetston,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hiroko Whetston -sn: Whetston -description: This is Hiroko Whetston's description -facsimileTelephoneNumber: +1 408 663-7539 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 316-7491 -title: Chief Product Development Consultant -userPassword: Password1 -uid: WhetstoH -givenName: Hiroko -mail: WhetstoH@44b6ea0e30a2464c8f90bd5c6aec9902.bitwarden.com -carLicense: PJ7XPC -departmentNumber: 8704 -employeeType: Employee -homePhone: +1 408 997-3204 -initials: H. W. -mobile: +1 408 739-5374 -pager: +1 408 470-7777 -roomNumber: 8787 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aviva Harwerth,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aviva Harwerth -sn: Harwerth -description: This is Aviva Harwerth's description -facsimileTelephoneNumber: +1 415 662-7824 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 380-8984 -title: Master Peons Vice President -userPassword: Password1 -uid: HarwertA -givenName: Aviva -mail: HarwertA@6ee94998653244b3b64234a9ee1b8607.bitwarden.com -carLicense: 5F7KNO -departmentNumber: 9727 -employeeType: Normal -homePhone: +1 415 562-7034 -initials: A. H. -mobile: +1 415 644-3632 -pager: +1 415 445-1694 -roomNumber: 8192 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ambur McNerlan -sn: McNerlan -description: This is Ambur McNerlan's description -facsimileTelephoneNumber: +1 510 343-1654 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 450-4450 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: McNerlaA -givenName: Ambur -mail: McNerlaA@668a7be7467f426eaa481fcc0af0008d.bitwarden.com -carLicense: DRUXYU -departmentNumber: 5810 -employeeType: Contract -homePhone: +1 510 994-2106 -initials: A. M. -mobile: +1 510 809-1567 -pager: +1 510 193-9412 -roomNumber: 9235 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alida Ferriera,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alida Ferriera -sn: Ferriera -description: This is Alida Ferriera's description -facsimileTelephoneNumber: +1 408 658-7202 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 133-9302 -title: Associate Peons Consultant -userPassword: Password1 -uid: FerrierA -givenName: Alida -mail: FerrierA@35f280bc0ed641759cb3d7609114d8c5.bitwarden.com -carLicense: VH0M3M -departmentNumber: 4149 -employeeType: Normal -homePhone: +1 408 581-8985 -initials: A. F. -mobile: +1 408 722-2785 -pager: +1 408 761-6106 -roomNumber: 9209 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vyky ONeal,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vyky ONeal -sn: ONeal -description: This is Vyky ONeal's description -facsimileTelephoneNumber: +1 804 814-2474 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 804 665-1504 -title: Junior Payroll Stooge -userPassword: Password1 -uid: ONealV -givenName: Vyky -mail: ONealV@b847cd495a564fd88ad378e323d86f9e.bitwarden.com -carLicense: 8K816W -departmentNumber: 6950 -employeeType: Employee -homePhone: +1 804 183-6362 -initials: V. O. -mobile: +1 804 396-7673 -pager: +1 804 877-7904 -roomNumber: 9364 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Daya Loader,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daya Loader -sn: Loader -description: This is Daya Loader's description -facsimileTelephoneNumber: +1 415 982-5922 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 314-7060 -title: Supreme Peons Stooge -userPassword: Password1 -uid: LoaderD -givenName: Daya -mail: LoaderD@32037f3bd743420296270ff80da78e1b.bitwarden.com -carLicense: AW6LJR -departmentNumber: 1410 -employeeType: Contract -homePhone: +1 415 507-8798 -initials: D. L. -mobile: +1 415 143-7968 -pager: +1 415 932-6127 -roomNumber: 8604 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Katsunori Bouret,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katsunori Bouret -sn: Bouret -description: This is Katsunori Bouret's description -facsimileTelephoneNumber: +1 415 553-7926 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 880-7122 -title: Chief Management Dictator -userPassword: Password1 -uid: BouretK -givenName: Katsunori -mail: BouretK@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com -carLicense: 9S5UQD -departmentNumber: 7140 -employeeType: Employee -homePhone: +1 415 292-4965 -initials: K. B. -mobile: +1 415 607-2381 -pager: +1 415 384-3284 -roomNumber: 9022 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phyllys Eisler -sn: Eisler -description: This is Phyllys Eisler's description -facsimileTelephoneNumber: +1 818 873-6957 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 495-4824 -title: Junior Janitorial Warrior -userPassword: Password1 -uid: EislerP -givenName: Phyllys -mail: EislerP@9a848a7f732f427f954ab2017da007b8.bitwarden.com -carLicense: L2HEW6 -departmentNumber: 3674 -employeeType: Employee -homePhone: +1 818 552-3953 -initials: P. E. -mobile: +1 818 248-9608 -pager: +1 818 726-6335 -roomNumber: 8652 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorthy VanKessel -sn: VanKessel -description: This is Dorthy VanKessel's description -facsimileTelephoneNumber: +1 804 616-9621 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 122-3294 -title: Associate Payroll Stooge -userPassword: Password1 -uid: VanKessD -givenName: Dorthy -mail: VanKessD@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com -carLicense: O7P3VU -departmentNumber: 3061 -employeeType: Contract -homePhone: +1 804 428-6622 -initials: D. V. -mobile: +1 804 555-5867 -pager: +1 804 996-3485 -roomNumber: 9401 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rex Combellack,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rex Combellack -sn: Combellack -description: This is Rex Combellack's description -facsimileTelephoneNumber: +1 408 761-5099 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 273-2661 -title: Supreme Payroll Artist -userPassword: Password1 -uid: CombellR -givenName: Rex -mail: CombellR@6befdabbbc374615aeeed6f7a15c3c4b.bitwarden.com -carLicense: G2JRCJ -departmentNumber: 7455 -employeeType: Contract -homePhone: +1 408 615-9352 -initials: R. C. -mobile: +1 408 414-2400 -pager: +1 408 306-4326 -roomNumber: 9494 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tallia Videa,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tallia Videa -sn: Videa -description: This is Tallia Videa's description -facsimileTelephoneNumber: +1 213 488-2319 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 507-4173 -title: Master Management Madonna -userPassword: Password1 -uid: VideaT -givenName: Tallia -mail: VideaT@2c2f26204fa44156bad4b2a1a9213033.bitwarden.com -carLicense: 9OV504 -departmentNumber: 7584 -employeeType: Employee -homePhone: +1 213 816-1953 -initials: T. V. -mobile: +1 213 428-6648 -pager: +1 213 107-3807 -roomNumber: 8873 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Remy Lalonde,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Remy Lalonde -sn: Lalonde -description: This is Remy Lalonde's description -facsimileTelephoneNumber: +1 213 343-8610 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 778-7835 -title: Master Administrative Punk -userPassword: Password1 -uid: LalondeR -givenName: Remy -mail: LalondeR@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com -carLicense: CH4KTV -departmentNumber: 9165 -employeeType: Normal -homePhone: +1 213 717-2194 -initials: R. L. -mobile: +1 213 986-9708 -pager: +1 213 299-2910 -roomNumber: 8560 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tobi Houde,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tobi Houde -sn: Houde -description: This is Tobi Houde's description -facsimileTelephoneNumber: +1 206 165-6408 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 773-8642 -title: Chief Management Technician -userPassword: Password1 -uid: HoudeT -givenName: Tobi -mail: HoudeT@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com -carLicense: 0XUFQM -departmentNumber: 1472 -employeeType: Contract -homePhone: +1 206 478-6343 -initials: T. H. -mobile: +1 206 981-2290 -pager: +1 206 990-2745 -roomNumber: 8518 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tommi Luna,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tommi Luna -sn: Luna -description: This is Tommi Luna's description -facsimileTelephoneNumber: +1 213 230-7445 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 746-9606 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: LunaT -givenName: Tommi -mail: LunaT@e33560f5a7ee4aa48f9e5af574f51dac.bitwarden.com -carLicense: E3QQWM -departmentNumber: 7102 -employeeType: Normal -homePhone: +1 213 673-2098 -initials: T. L. -mobile: +1 213 825-8658 -pager: +1 213 960-6792 -roomNumber: 9379 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alkarim Kosnaskie -sn: Kosnaskie -description: This is Alkarim Kosnaskie's description -facsimileTelephoneNumber: +1 510 295-4944 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 485-7356 -title: Associate Peons Grunt -userPassword: Password1 -uid: KosnaskA -givenName: Alkarim -mail: KosnaskA@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com -carLicense: DRLSQD -departmentNumber: 5490 -employeeType: Employee -homePhone: +1 510 531-9426 -initials: A. K. -mobile: +1 510 114-9995 -pager: +1 510 746-2990 -roomNumber: 8301 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alana Gelo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alana Gelo -sn: Gelo -description: This is Alana Gelo's description -facsimileTelephoneNumber: +1 408 943-5919 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 558-4254 -title: Junior Human Resources Madonna -userPassword: Password1 -uid: GeloA -givenName: Alana -mail: GeloA@218d5b5316c646fa8e9db29549e3afff.bitwarden.com -carLicense: 9PFGU7 -departmentNumber: 8084 -employeeType: Normal -homePhone: +1 408 644-3258 -initials: A. G. -mobile: +1 408 784-9897 -pager: +1 408 563-6782 -roomNumber: 8338 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdaia Barnhart -sn: Barnhart -description: This is Magdaia Barnhart's description -facsimileTelephoneNumber: +1 213 367-5381 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 703-9894 -title: Junior Product Development Mascot -userPassword: Password1 -uid: BarnharM -givenName: Magdaia -mail: BarnharM@ad4942d8c3c341119939c679c4dae154.bitwarden.com -carLicense: H4UMCS -departmentNumber: 8829 -employeeType: Contract -homePhone: +1 213 519-5216 -initials: M. B. -mobile: +1 213 957-7341 -pager: +1 213 476-6993 -roomNumber: 8924 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Seven Salazar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seven Salazar -sn: Salazar -description: This is Seven Salazar's description -facsimileTelephoneNumber: +1 818 855-2504 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 117-5940 -title: Associate Management President -userPassword: Password1 -uid: SalazarS -givenName: Seven -mail: SalazarS@31218813d50546c8962cb2d31042f36f.bitwarden.com -carLicense: CF1RNT -departmentNumber: 4309 -employeeType: Contract -homePhone: +1 818 387-8984 -initials: S. S. -mobile: +1 818 334-9441 -pager: +1 818 774-8389 -roomNumber: 8449 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeffrey Zukas -sn: Zukas -description: This is Jeffrey Zukas's description -facsimileTelephoneNumber: +1 206 145-4849 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 271-4243 -title: Junior Human Resources President -userPassword: Password1 -uid: ZukasJ -givenName: Jeffrey -mail: ZukasJ@b9106f7d57f74a7b92af146111acb57d.bitwarden.com -carLicense: 3NC45L -departmentNumber: 8568 -employeeType: Employee -homePhone: +1 206 324-9868 -initials: J. Z. -mobile: +1 206 937-2079 -pager: +1 206 618-7115 -roomNumber: 9865 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bethanne DeSouza -sn: DeSouza -description: This is Bethanne DeSouza's description -facsimileTelephoneNumber: +1 415 140-2619 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 882-8439 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: DeSouzaB -givenName: Bethanne -mail: DeSouzaB@f78034ad70854ccbacb0124129d464fa.bitwarden.com -carLicense: 2CVW9F -departmentNumber: 3184 -employeeType: Employee -homePhone: +1 415 252-5772 -initials: B. D. -mobile: +1 415 813-7823 -pager: +1 415 352-9322 -roomNumber: 9948 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Conway Jenness,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Conway Jenness -sn: Jenness -description: This is Conway Jenness's description -facsimileTelephoneNumber: +1 206 260-1666 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 259-5103 -title: Chief Administrative Figurehead -userPassword: Password1 -uid: JennessC -givenName: Conway -mail: JennessC@752014cef4c74a4ea8012d4193349e8f.bitwarden.com -carLicense: EEQ2PE -departmentNumber: 5828 -employeeType: Normal -homePhone: +1 206 762-3278 -initials: C. J. -mobile: +1 206 842-2192 -pager: +1 206 219-4468 -roomNumber: 8087 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=VanKing Padgett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: VanKing Padgett -sn: Padgett -description: This is VanKing Padgett's description -facsimileTelephoneNumber: +1 408 367-3454 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 772-7538 -title: Associate Human Resources Writer -userPassword: Password1 -uid: PadgettV -givenName: VanKing -mail: PadgettV@7770d32208f64a63bf44fae15e8c6935.bitwarden.com -carLicense: 954R93 -departmentNumber: 5374 -employeeType: Normal -homePhone: +1 408 861-7749 -initials: V. P. -mobile: +1 408 264-4292 -pager: +1 408 255-5709 -roomNumber: 8111 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tansy Aronovich,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tansy Aronovich -sn: Aronovich -description: This is Tansy Aronovich's description -facsimileTelephoneNumber: +1 213 133-9450 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 397-2070 -title: Associate Product Development Evangelist -userPassword: Password1 -uid: AronoviT -givenName: Tansy -mail: AronoviT@281ce2096ed0496b9bf2ff2a6d46ed5b.bitwarden.com -carLicense: 7WT68N -departmentNumber: 9631 -employeeType: Contract -homePhone: +1 213 196-2010 -initials: T. A. -mobile: +1 213 677-1003 -pager: +1 213 620-6787 -roomNumber: 8317 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fidelity Shelley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fidelity Shelley -sn: Shelley -description: This is Fidelity Shelley's description -facsimileTelephoneNumber: +1 206 533-7386 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 206 315-5389 -title: Master Payroll Assistant -userPassword: Password1 -uid: ShelleyF -givenName: Fidelity -mail: ShelleyF@72be16396166453d9bb6d2ec3f220789.bitwarden.com -carLicense: 3O0DM3 -departmentNumber: 6037 -employeeType: Employee -homePhone: +1 206 860-5226 -initials: F. S. -mobile: +1 206 872-3934 -pager: +1 206 823-6949 -roomNumber: 9025 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eirena Hrushowy -sn: Hrushowy -description: This is Eirena Hrushowy's description -facsimileTelephoneNumber: +1 510 697-6792 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 508-5098 -title: Junior Payroll Mascot -userPassword: Password1 -uid: HrushowE -givenName: Eirena -mail: HrushowE@1a8c60a83e6243159e036bc3f0b25375.bitwarden.com -carLicense: T1XTI5 -departmentNumber: 1001 -employeeType: Contract -homePhone: +1 510 718-6028 -initials: E. H. -mobile: +1 510 371-5938 -pager: +1 510 902-3551 -roomNumber: 9675 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tres Parr,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tres Parr -sn: Parr -description: This is Tres Parr's description -facsimileTelephoneNumber: +1 415 336-1161 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 857-4933 -title: Supreme Management Writer -userPassword: Password1 -uid: ParrT -givenName: Tres -mail: ParrT@6b3d33b809ec4793b446277435a68094.bitwarden.com -carLicense: PBBR1L -departmentNumber: 8998 -employeeType: Contract -homePhone: +1 415 378-5758 -initials: T. P. -mobile: +1 415 842-3344 -pager: +1 415 662-5788 -roomNumber: 8931 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Myrtice Graver,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrtice Graver -sn: Graver -description: This is Myrtice Graver's description -facsimileTelephoneNumber: +1 415 988-2243 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 674-9240 -title: Master Janitorial Grunt -userPassword: Password1 -uid: GraverM -givenName: Myrtice -mail: GraverM@710eac99d23b4aba917dbd3cddce9e4d.bitwarden.com -carLicense: LAJPBB -departmentNumber: 9504 -employeeType: Normal -homePhone: +1 415 366-3075 -initials: M. G. -mobile: +1 415 502-1178 -pager: +1 415 166-4859 -roomNumber: 8431 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Junette Weyand,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Junette Weyand -sn: Weyand -description: This is Junette Weyand's description -facsimileTelephoneNumber: +1 510 982-1040 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 545-5587 -title: Master Product Development Figurehead -userPassword: Password1 -uid: WeyandJ -givenName: Junette -mail: WeyandJ@46fec3df47bd4fac9e1c336da359be09.bitwarden.com -carLicense: LRG1QP -departmentNumber: 7359 -employeeType: Employee -homePhone: +1 510 985-6123 -initials: J. W. -mobile: +1 510 712-9169 -pager: +1 510 608-6442 -roomNumber: 8438 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Daune Gosset,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daune Gosset -sn: Gosset -description: This is Daune Gosset's description -facsimileTelephoneNumber: +1 206 803-6016 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 542-7764 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: GossetD -givenName: Daune -mail: GossetD@65b1e6b48cf94926a986434aa0ba38db.bitwarden.com -carLicense: M2303V -departmentNumber: 6901 -employeeType: Contract -homePhone: +1 206 712-8825 -initials: D. G. -mobile: +1 206 171-9436 -pager: +1 206 566-2504 -roomNumber: 9616 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ingrid Ghaemi -sn: Ghaemi -description: This is Ingrid Ghaemi's description -facsimileTelephoneNumber: +1 213 274-3602 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 285-1526 -title: Supreme Peons Dictator -userPassword: Password1 -uid: GhaemiI -givenName: Ingrid -mail: GhaemiI@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com -carLicense: 0GAGWN -departmentNumber: 1385 -employeeType: Contract -homePhone: +1 213 391-7501 -initials: I. G. -mobile: +1 213 937-4039 -pager: +1 213 119-1364 -roomNumber: 9032 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rolando McNally,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rolando McNally -sn: McNally -description: This is Rolando McNally's description -facsimileTelephoneNumber: +1 415 674-8910 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 334-4805 -title: Master Administrative Fellow -userPassword: Password1 -uid: McNallyR -givenName: Rolando -mail: McNallyR@e60dd9bce03a413a915d470a19570918.bitwarden.com -carLicense: WRNN7P -departmentNumber: 1949 -employeeType: Normal -homePhone: +1 415 951-3129 -initials: R. M. -mobile: +1 415 580-4879 -pager: +1 415 685-4522 -roomNumber: 9804 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ulf Sharpe -sn: Sharpe -description: This is Ulf Sharpe's description -facsimileTelephoneNumber: +1 408 652-6520 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 856-1648 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: SharpeU -givenName: Ulf -mail: SharpeU@ff8375ca1c294ee698da8ebb063821cf.bitwarden.com -carLicense: MUPLO5 -departmentNumber: 7661 -employeeType: Employee -homePhone: +1 408 876-5095 -initials: U. S. -mobile: +1 408 735-5262 -pager: +1 408 433-7554 -roomNumber: 8054 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kirstie Trochu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirstie Trochu -sn: Trochu -description: This is Kirstie Trochu's description -facsimileTelephoneNumber: +1 818 160-1809 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 621-5904 -title: Master Product Development Assistant -userPassword: Password1 -uid: TrochuK -givenName: Kirstie -mail: TrochuK@b7e8ffd7abe14e2bbc8f66f6d437394f.bitwarden.com -carLicense: H9E9Y9 -departmentNumber: 2878 -employeeType: Contract -homePhone: +1 818 876-9939 -initials: K. T. -mobile: +1 818 411-1483 -pager: +1 818 375-1214 -roomNumber: 8380 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=MaryLou Brock,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryLou Brock -sn: Brock -description: This is MaryLou Brock's description -facsimileTelephoneNumber: +1 510 125-9404 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 942-3057 -title: Junior Peons Janitor -userPassword: Password1 -uid: BrockM -givenName: MaryLou -mail: BrockM@c6c77a4e90174b75a23b2f90eeee4364.bitwarden.com -carLicense: 15OG2Y -departmentNumber: 5398 -employeeType: Contract -homePhone: +1 510 834-6278 -initials: M. B. -mobile: +1 510 774-9464 -pager: +1 510 617-5551 -roomNumber: 9266 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farrah Kobreek -sn: Kobreek -description: This is Farrah Kobreek's description -facsimileTelephoneNumber: +1 415 454-2133 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 286-7150 -title: Supreme Janitorial President -userPassword: Password1 -uid: KobreekF -givenName: Farrah -mail: KobreekF@80b32d7e2c334eb6876146c942d4c564.bitwarden.com -carLicense: 6AK4DI -departmentNumber: 5893 -employeeType: Contract -homePhone: +1 415 226-2210 -initials: F. K. -mobile: +1 415 830-9979 -pager: +1 415 575-4565 -roomNumber: 8714 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Edy Singbeil,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edy Singbeil -sn: Singbeil -description: This is Edy Singbeil's description -facsimileTelephoneNumber: +1 415 894-3844 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 798-7357 -title: Supreme Product Development Czar -userPassword: Password1 -uid: SingbeiE -givenName: Edy -mail: SingbeiE@693e5301c4924e0195024b48e34f4838.bitwarden.com -carLicense: IHR3TN -departmentNumber: 9544 -employeeType: Employee -homePhone: +1 415 709-9004 -initials: E. S. -mobile: +1 415 436-2374 -pager: +1 415 427-3815 -roomNumber: 8014 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carsten Macklin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carsten Macklin -sn: Macklin -description: This is Carsten Macklin's description -facsimileTelephoneNumber: +1 206 164-9395 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 681-9978 -title: Junior Management Stooge -userPassword: Password1 -uid: MacklinC -givenName: Carsten -mail: MacklinC@b32e7088c3e746f58c4546405599fbf1.bitwarden.com -carLicense: 185GSR -departmentNumber: 4777 -employeeType: Employee -homePhone: +1 206 755-3495 -initials: C. M. -mobile: +1 206 777-5588 -pager: +1 206 886-7369 -roomNumber: 9849 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Weiping Arnone,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weiping Arnone -sn: Arnone -description: This is Weiping Arnone's description -facsimileTelephoneNumber: +1 206 319-5989 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 786-7158 -title: Master Peons President -userPassword: Password1 -uid: ArnoneW -givenName: Weiping -mail: ArnoneW@6f7b8496d2cc4db2b31e0a14360cc11d.bitwarden.com -carLicense: Q8RF3R -departmentNumber: 4253 -employeeType: Normal -homePhone: +1 206 157-6321 -initials: W. A. -mobile: +1 206 437-3114 -pager: +1 206 483-2140 -roomNumber: 9100 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joceline Muir,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joceline Muir -sn: Muir -description: This is Joceline Muir's description -facsimileTelephoneNumber: +1 510 500-7018 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 529-6035 -title: Chief Administrative Manager -userPassword: Password1 -uid: MuirJ -givenName: Joceline -mail: MuirJ@ac4d7f7fd78147f7b89e17731422f227.bitwarden.com -carLicense: 0QQ1G2 -departmentNumber: 8767 -employeeType: Normal -homePhone: +1 510 807-1619 -initials: J. M. -mobile: +1 510 333-4983 -pager: +1 510 233-6495 -roomNumber: 8498 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Opal Isaac,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opal Isaac -sn: Isaac -description: This is Opal Isaac's description -facsimileTelephoneNumber: +1 510 113-1858 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 327-4001 -title: Supreme Management Pinhead -userPassword: Password1 -uid: IsaacO -givenName: Opal -mail: IsaacO@f1199a5aeaa742f5bdd847407289b4a5.bitwarden.com -carLicense: 7URWAS -departmentNumber: 5848 -employeeType: Employee -homePhone: +1 510 672-5149 -initials: O. I. -mobile: +1 510 510-8158 -pager: +1 510 389-5444 -roomNumber: 9175 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eloise Tardioli -sn: Tardioli -description: This is Eloise Tardioli's description -facsimileTelephoneNumber: +1 213 226-2063 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 230-9160 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: TardiolE -givenName: Eloise -mail: TardiolE@fa561c4932fd49ab95806925cc7bd285.bitwarden.com -carLicense: F1FUW1 -departmentNumber: 2028 -employeeType: Normal -homePhone: +1 213 108-7213 -initials: E. T. -mobile: +1 213 552-1747 -pager: +1 213 503-7438 -roomNumber: 9421 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dedra Bastien,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dedra Bastien -sn: Bastien -description: This is Dedra Bastien's description -facsimileTelephoneNumber: +1 206 804-9411 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 206 204-3840 -title: Supreme Human Resources Czar -userPassword: Password1 -uid: BastienD -givenName: Dedra -mail: BastienD@976adcda025f45689f8ecd72de9c606c.bitwarden.com -carLicense: 2AR7VA -departmentNumber: 8484 -employeeType: Employee -homePhone: +1 206 739-6350 -initials: D. B. -mobile: +1 206 731-6470 -pager: +1 206 965-5317 -roomNumber: 9974 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kiri Gillon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiri Gillon -sn: Gillon -description: This is Kiri Gillon's description -facsimileTelephoneNumber: +1 804 966-1995 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 648-8955 -title: Supreme Management Visionary -userPassword: Password1 -uid: GillonK -givenName: Kiri -mail: GillonK@3835973847234e04a569100bfecc8dae.bitwarden.com -carLicense: XIFN3W -departmentNumber: 7625 -employeeType: Contract -homePhone: +1 804 104-3808 -initials: K. G. -mobile: +1 804 416-7845 -pager: +1 804 377-5173 -roomNumber: 9235 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Geoff Bergstrom,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geoff Bergstrom -sn: Bergstrom -description: This is Geoff Bergstrom's description -facsimileTelephoneNumber: +1 510 916-3934 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 422-4501 -title: Junior Peons Stooge -userPassword: Password1 -uid: BergstrG -givenName: Geoff -mail: BergstrG@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com -carLicense: Q8E81I -departmentNumber: 2502 -employeeType: Contract -homePhone: +1 510 103-1956 -initials: G. B. -mobile: +1 510 806-2370 -pager: +1 510 368-5600 -roomNumber: 9294 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ngai Dorion,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ngai Dorion -sn: Dorion -description: This is Ngai Dorion's description -facsimileTelephoneNumber: +1 415 451-1904 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 490-8133 -title: Supreme Human Resources Czar -userPassword: Password1 -uid: DorionN -givenName: Ngai -mail: DorionN@20dec23f741b4bdbb6cfe2ede2355e8a.bitwarden.com -carLicense: TA5V6T -departmentNumber: 3712 -employeeType: Contract -homePhone: +1 415 666-1433 -initials: N. D. -mobile: +1 415 123-4601 -pager: +1 415 173-9121 -roomNumber: 8445 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dayna Bragg,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dayna Bragg -sn: Bragg -description: This is Dayna Bragg's description -facsimileTelephoneNumber: +1 818 406-3629 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 377-5865 -title: Supreme Management Consultant -userPassword: Password1 -uid: BraggD -givenName: Dayna -mail: BraggD@ef52200320a34601b7e10e8ff147afd3.bitwarden.com -carLicense: YVFNS5 -departmentNumber: 7058 -employeeType: Contract -homePhone: +1 818 324-1155 -initials: D. B. -mobile: +1 818 973-3149 -pager: +1 818 407-3252 -roomNumber: 9766 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Madonna Parihar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madonna Parihar -sn: Parihar -description: This is Madonna Parihar's description -facsimileTelephoneNumber: +1 213 264-5570 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 213 989-3222 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: PariharM -givenName: Madonna -mail: PariharM@8fe8053cf30a4c47b93e0a3f02958712.bitwarden.com -carLicense: 3GK8ET -departmentNumber: 6875 -employeeType: Normal -homePhone: +1 213 668-4067 -initials: M. P. -mobile: +1 213 636-2953 -pager: +1 213 735-9881 -roomNumber: 8857 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ari Fergusson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ari Fergusson -sn: Fergusson -description: This is Ari Fergusson's description -facsimileTelephoneNumber: +1 206 372-1969 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 529-7200 -title: Associate Product Development Punk -userPassword: Password1 -uid: FergussA -givenName: Ari -mail: FergussA@0f1f84ce6579498d8497bfb021e0f4e9.bitwarden.com -carLicense: J24TRX -departmentNumber: 3922 -employeeType: Employee -homePhone: +1 206 634-7342 -initials: A. F. -mobile: +1 206 482-4485 -pager: +1 206 478-6881 -roomNumber: 8877 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ramonda Tromm,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramonda Tromm -sn: Tromm -description: This is Ramonda Tromm's description -facsimileTelephoneNumber: +1 804 566-1498 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 463-2112 -title: Chief Product Development Vice President -userPassword: Password1 -uid: TrommR -givenName: Ramonda -mail: TrommR@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com -carLicense: Y7HGDT -departmentNumber: 9335 -employeeType: Contract -homePhone: +1 804 678-5681 -initials: R. T. -mobile: +1 804 959-3023 -pager: +1 804 841-9301 -roomNumber: 9536 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Foster Cre,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Foster Cre -sn: Cre -description: This is Foster Cre's description -facsimileTelephoneNumber: +1 415 596-8584 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 275-9030 -title: Master Administrative Dictator -userPassword: Password1 -uid: CreF -givenName: Foster -mail: CreF@b2211048e736402188d0e7245e86301c.bitwarden.com -carLicense: 7NGW0W -departmentNumber: 3931 -employeeType: Employee -homePhone: +1 415 998-3567 -initials: F. C. -mobile: +1 415 555-1071 -pager: +1 415 522-5368 -roomNumber: 9982 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pennie Wolfenbarger -sn: Wolfenbarger -description: This is Pennie Wolfenbarger's description -facsimileTelephoneNumber: +1 510 682-2693 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 205-5931 -title: Chief Administrative Developer -userPassword: Password1 -uid: WolfenbP -givenName: Pennie -mail: WolfenbP@efeb1d35d7fb4a6698c2e450cd5716f4.bitwarden.com -carLicense: UAFAP1 -departmentNumber: 9363 -employeeType: Contract -homePhone: +1 510 668-5648 -initials: P. W. -mobile: +1 510 982-7801 -pager: +1 510 273-6895 -roomNumber: 9926 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Willette Juhan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willette Juhan -sn: Juhan -description: This is Willette Juhan's description -facsimileTelephoneNumber: +1 213 874-2702 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 712-4031 -title: Chief Human Resources Director -userPassword: Password1 -uid: JuhanW -givenName: Willette -mail: JuhanW@f74860195dfd437aa0f4072ae1ebfe76.bitwarden.com -carLicense: R7R449 -departmentNumber: 9210 -employeeType: Contract -homePhone: +1 213 803-5836 -initials: W. J. -mobile: +1 213 371-2959 -pager: +1 213 196-1866 -roomNumber: 8645 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Melamie Darcel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melamie Darcel -sn: Darcel -description: This is Melamie Darcel's description -facsimileTelephoneNumber: +1 213 135-8685 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 289-5103 -title: Master Product Development Writer -userPassword: Password1 -uid: DarcelM -givenName: Melamie -mail: DarcelM@fa1c0131e1b849f6a92c26986c36bbfc.bitwarden.com -carLicense: DX26YY -departmentNumber: 6744 -employeeType: Contract -homePhone: +1 213 298-9380 -initials: M. D. -mobile: +1 213 244-1882 -pager: +1 213 277-8643 -roomNumber: 9452 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Arlena Joe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlena Joe -sn: Joe -description: This is Arlena Joe's description -facsimileTelephoneNumber: +1 408 801-1786 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 466-6795 -title: Supreme Product Development Czar -userPassword: Password1 -uid: JoeA -givenName: Arlena -mail: JoeA@ab9c48ef1f7c4b329b69e3276189b579.bitwarden.com -carLicense: EG5G6G -departmentNumber: 2092 -employeeType: Contract -homePhone: +1 408 588-4177 -initials: A. J. -mobile: +1 408 130-8083 -pager: +1 408 995-4178 -roomNumber: 8357 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mufi Higgins,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mufi Higgins -sn: Higgins -description: This is Mufi Higgins's description -facsimileTelephoneNumber: +1 804 639-5415 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 862-4633 -title: Chief Management Grunt -userPassword: Password1 -uid: HigginsM -givenName: Mufi -mail: HigginsM@9aa4f24ee25742128efa49d5c6b540fd.bitwarden.com -carLicense: G1XJ84 -departmentNumber: 1970 -employeeType: Employee -homePhone: +1 804 382-7983 -initials: M. H. -mobile: +1 804 193-8040 -pager: +1 804 717-3682 -roomNumber: 8405 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Viera Paetsch,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viera Paetsch -sn: Paetsch -description: This is Viera Paetsch's description -facsimileTelephoneNumber: +1 804 432-1400 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 631-4772 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: PaetschV -givenName: Viera -mail: PaetschV@47581aa1612b49fdb2540d1094155bc6.bitwarden.com -carLicense: 5A7SVE -departmentNumber: 4523 -employeeType: Normal -homePhone: +1 804 217-7478 -initials: V. P. -mobile: +1 804 598-3588 -pager: +1 804 563-8201 -roomNumber: 8786 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Roy Wai,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roy Wai -sn: Wai -description: This is Roy Wai's description -facsimileTelephoneNumber: +1 510 161-8793 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 612-2429 -title: Chief Product Development Grunt -userPassword: Password1 -uid: WaiR -givenName: Roy -mail: WaiR@18a7c545624d4840b8b6f5a185043430.bitwarden.com -carLicense: PVN1DG -departmentNumber: 5056 -employeeType: Normal -homePhone: +1 510 402-1650 -initials: R. W. -mobile: +1 510 327-8749 -pager: +1 510 316-5511 -roomNumber: 8207 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cheslie Lamont,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cheslie Lamont -sn: Lamont -description: This is Cheslie Lamont's description -facsimileTelephoneNumber: +1 804 851-8578 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 715-1758 -title: Associate Administrative Fellow -userPassword: Password1 -uid: LamontC -givenName: Cheslie -mail: LamontC@34766460128a4ee582041f543b9bd242.bitwarden.com -carLicense: C8NTOS -departmentNumber: 2215 -employeeType: Contract -homePhone: +1 804 521-8548 -initials: C. L. -mobile: +1 804 807-8344 -pager: +1 804 372-2569 -roomNumber: 9211 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ash Moomey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ash Moomey -sn: Moomey -description: This is Ash Moomey's description -facsimileTelephoneNumber: +1 510 624-9530 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 510 745-8092 -title: Associate Payroll Punk -userPassword: Password1 -uid: MoomeyA -givenName: Ash -mail: MoomeyA@7f942390e1bf40f296074b513660c50e.bitwarden.com -carLicense: R6NWJH -departmentNumber: 4650 -employeeType: Contract -homePhone: +1 510 890-2126 -initials: A. M. -mobile: +1 510 261-5262 -pager: +1 510 580-3840 -roomNumber: 8999 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prashant Lawbaugh -sn: Lawbaugh -description: This is Prashant Lawbaugh's description -facsimileTelephoneNumber: +1 818 257-4817 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 471-2617 -title: Master Janitorial Mascot -userPassword: Password1 -uid: LawbaugP -givenName: Prashant -mail: LawbaugP@feae037fe44941bbb430bf940494ca20.bitwarden.com -carLicense: AYVTQR -departmentNumber: 5494 -employeeType: Normal -homePhone: +1 818 711-7228 -initials: P. L. -mobile: +1 818 641-3346 -pager: +1 818 165-4396 -roomNumber: 8636 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Humphrey Culver,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Humphrey Culver -sn: Culver -description: This is Humphrey Culver's description -facsimileTelephoneNumber: +1 408 685-7520 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 550-4707 -title: Junior Product Development Architect -userPassword: Password1 -uid: CulverH -givenName: Humphrey -mail: CulverH@64455353115942ebbac2f03b722980cb.bitwarden.com -carLicense: GLN7UH -departmentNumber: 3321 -employeeType: Employee -homePhone: +1 408 226-8469 -initials: H. C. -mobile: +1 408 123-5570 -pager: +1 408 991-9336 -roomNumber: 8846 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Consolata Daniells,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Consolata Daniells -sn: Daniells -description: This is Consolata Daniells's description -facsimileTelephoneNumber: +1 408 337-1950 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 408 300-4130 -title: Master Janitorial Janitor -userPassword: Password1 -uid: DaniellC -givenName: Consolata -mail: DaniellC@f8ab716c26494879b2465829da010f5f.bitwarden.com -carLicense: 6UCQG6 -departmentNumber: 6454 -employeeType: Employee -homePhone: +1 408 402-9142 -initials: C. D. -mobile: +1 408 110-9060 -pager: +1 408 520-2831 -roomNumber: 8937 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oleesa Tariq -sn: Tariq -description: This is Oleesa Tariq's description -facsimileTelephoneNumber: +1 804 554-7779 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 519-8826 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: TariqO -givenName: Oleesa -mail: TariqO@367f3fe3a2324b2a8f4bae7b4fa61161.bitwarden.com -carLicense: 1K7KXG -departmentNumber: 4695 -employeeType: Contract -homePhone: +1 804 997-3334 -initials: O. T. -mobile: +1 804 942-4680 -pager: +1 804 892-1672 -roomNumber: 9265 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cark Lowman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cark Lowman -sn: Lowman -description: This is Cark Lowman's description -facsimileTelephoneNumber: +1 206 906-6432 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 598-3378 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: LowmanC -givenName: Cark -mail: LowmanC@46fcd2052d404a708ecce9dd268b7838.bitwarden.com -carLicense: UA7NL6 -departmentNumber: 9667 -employeeType: Contract -homePhone: +1 206 318-8282 -initials: C. L. -mobile: +1 206 789-5032 -pager: +1 206 471-3277 -roomNumber: 8161 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carolien Tabl,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolien Tabl -sn: Tabl -description: This is Carolien Tabl's description -facsimileTelephoneNumber: +1 415 363-5478 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 827-8734 -title: Associate Peons Figurehead -userPassword: Password1 -uid: TablC -givenName: Carolien -mail: TablC@2c933403160143d19a899179ef24cca2.bitwarden.com -carLicense: XCLYFE -departmentNumber: 2725 -employeeType: Normal -homePhone: +1 415 668-1958 -initials: C. T. -mobile: +1 415 339-8853 -pager: +1 415 581-6498 -roomNumber: 8600 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jere Nadon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jere Nadon -sn: Nadon -description: This is Jere Nadon's description -facsimileTelephoneNumber: +1 510 660-6289 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 312-2126 -title: Associate Administrative Developer -userPassword: Password1 -uid: NadonJ -givenName: Jere -mail: NadonJ@b2dba5d211e74e1e8b9beacd1ae0b042.bitwarden.com -carLicense: EC3QU2 -departmentNumber: 5994 -employeeType: Contract -homePhone: +1 510 153-9631 -initials: J. N. -mobile: +1 510 939-5912 -pager: +1 510 889-7549 -roomNumber: 9617 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Weber Chouinard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weber Chouinard -sn: Chouinard -description: This is Weber Chouinard's description -facsimileTelephoneNumber: +1 510 220-8732 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 392-4067 -title: Chief Management Figurehead -userPassword: Password1 -uid: ChouinaW -givenName: Weber -mail: ChouinaW@3a320a2664cd48219711b2ffaa2e5892.bitwarden.com -carLicense: R00CCS -departmentNumber: 4574 -employeeType: Contract -homePhone: +1 510 420-7228 -initials: W. C. -mobile: +1 510 512-3160 -pager: +1 510 498-9557 -roomNumber: 8241 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Othilia Redfoot,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othilia Redfoot -sn: Redfoot -description: This is Othilia Redfoot's description -facsimileTelephoneNumber: +1 408 690-7813 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 236-3909 -title: Junior Product Development Grunt -userPassword: Password1 -uid: RedfootO -givenName: Othilia -mail: RedfootO@89e33259b1f341dda582db87064be4b8.bitwarden.com -carLicense: 1GS50L -departmentNumber: 2805 -employeeType: Contract -homePhone: +1 408 228-4269 -initials: O. R. -mobile: +1 408 617-5020 -pager: +1 408 860-5112 -roomNumber: 8874 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Drudy Joffe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drudy Joffe -sn: Joffe -description: This is Drudy Joffe's description -facsimileTelephoneNumber: +1 804 720-4461 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 545-8897 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: JoffeD -givenName: Drudy -mail: JoffeD@f928f43ad9cc43d983b210ccab6e69b0.bitwarden.com -carLicense: 6D043K -departmentNumber: 3216 -employeeType: Contract -homePhone: +1 804 916-3314 -initials: D. J. -mobile: +1 804 593-2302 -pager: +1 804 326-3966 -roomNumber: 8968 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Moris Abdullah,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moris Abdullah -sn: Abdullah -description: This is Moris Abdullah's description -facsimileTelephoneNumber: +1 415 630-5863 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 338-2284 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: AbdullaM -givenName: Moris -mail: AbdullaM@ee1df761a37f416c8ab1cdfe97a867af.bitwarden.com -carLicense: J8P2GC -departmentNumber: 9297 -employeeType: Contract -homePhone: +1 415 521-3244 -initials: M. A. -mobile: +1 415 444-6704 -pager: +1 415 210-1512 -roomNumber: 9693 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Misbah Mach,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Misbah Mach -sn: Mach -description: This is Misbah Mach's description -facsimileTelephoneNumber: +1 408 894-2143 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 320-9632 -title: Master Human Resources Assistant -userPassword: Password1 -uid: MachM -givenName: Misbah -mail: MachM@234b370628574e5ea51ed780065f5c50.bitwarden.com -carLicense: D8MVJ2 -departmentNumber: 8519 -employeeType: Employee -homePhone: +1 408 406-7581 -initials: M. M. -mobile: +1 408 197-5331 -pager: +1 408 984-1014 -roomNumber: 8092 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charlena Angermeyr -sn: Angermeyr -description: This is Charlena Angermeyr's description -facsimileTelephoneNumber: +1 206 120-8844 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 938-4578 -title: Master Product Development Architect -userPassword: Password1 -uid: AngermeC -givenName: Charlena -mail: AngermeC@cbaa630e3a194faaa797a1d7d5ab2466.bitwarden.com -carLicense: AFBGWD -departmentNumber: 1126 -employeeType: Contract -homePhone: +1 206 184-1838 -initials: C. A. -mobile: +1 206 722-3264 -pager: +1 206 492-2305 -roomNumber: 8631 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maribel Searles,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maribel Searles -sn: Searles -description: This is Maribel Searles's description -facsimileTelephoneNumber: +1 206 671-7081 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 821-9182 -title: Junior Administrative Consultant -userPassword: Password1 -uid: SearlesM -givenName: Maribel -mail: SearlesM@3d84a4bfc0dd4c1f9fe55a53bcc58c24.bitwarden.com -carLicense: E7P453 -departmentNumber: 5531 -employeeType: Normal -homePhone: +1 206 371-5339 -initials: M. S. -mobile: +1 206 329-3532 -pager: +1 206 443-9267 -roomNumber: 9832 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lilah Haverkamp,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilah Haverkamp -sn: Haverkamp -description: This is Lilah Haverkamp's description -facsimileTelephoneNumber: +1 510 988-4556 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 481-7594 -title: Junior Management Pinhead -userPassword: Password1 -uid: HaverkaL -givenName: Lilah -mail: HaverkaL@e8e76146b3cf4785898d03ad6423f9d9.bitwarden.com -carLicense: KECE5P -departmentNumber: 3174 -employeeType: Normal -homePhone: +1 510 559-9076 -initials: L. H. -mobile: +1 510 558-4323 -pager: +1 510 879-8341 -roomNumber: 8558 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fanny Baril,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fanny Baril -sn: Baril -description: This is Fanny Baril's description -facsimileTelephoneNumber: +1 510 180-4072 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 175-7453 -title: Associate Payroll Consultant -userPassword: Password1 -uid: BarilF -givenName: Fanny -mail: BarilF@48e1fa01ec994d088dcb4d2bf8fc5515.bitwarden.com -carLicense: 4SQ5PN -departmentNumber: 6565 -employeeType: Employee -homePhone: +1 510 790-2214 -initials: F. B. -mobile: +1 510 493-3508 -pager: +1 510 639-5249 -roomNumber: 8898 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Milou Dada,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milou Dada -sn: Dada -description: This is Milou Dada's description -facsimileTelephoneNumber: +1 818 662-8510 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 450-2159 -title: Associate Janitorial Manager -userPassword: Password1 -uid: DadaM -givenName: Milou -mail: DadaM@95aba425683d4bd1840a81fc67427bb1.bitwarden.com -carLicense: EW7DIT -departmentNumber: 2610 -employeeType: Employee -homePhone: +1 818 823-3531 -initials: M. D. -mobile: +1 818 465-8456 -pager: +1 818 877-7188 -roomNumber: 9014 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherye Jarvie -sn: Jarvie -description: This is Sherye Jarvie's description -facsimileTelephoneNumber: +1 804 390-6435 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 957-5671 -title: Master Janitorial Artist -userPassword: Password1 -uid: JarvieS -givenName: Sherye -mail: JarvieS@c3ea2e07159b4059b3afc3ddc88034c1.bitwarden.com -carLicense: 7XUH63 -departmentNumber: 6005 -employeeType: Contract -homePhone: +1 804 112-4006 -initials: S. J. -mobile: +1 804 798-8398 -pager: +1 804 159-5246 -roomNumber: 9141 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Earnest Walters,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Earnest Walters -sn: Walters -description: This is Earnest Walters's description -facsimileTelephoneNumber: +1 206 747-3535 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 771-7232 -title: Associate Administrative Grunt -userPassword: Password1 -uid: WaltersE -givenName: Earnest -mail: WaltersE@7e60750ac4784fc193bbbefd09b6a791.bitwarden.com -carLicense: KXQ89X -departmentNumber: 4488 -employeeType: Normal -homePhone: +1 206 147-6465 -initials: E. W. -mobile: +1 206 870-2318 -pager: +1 206 902-5897 -roomNumber: 9930 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alphonso Ramakrishna -sn: Ramakrishna -description: This is Alphonso Ramakrishna's description -facsimileTelephoneNumber: +1 408 961-9792 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 433-1872 -title: Chief Product Testing Technician -userPassword: Password1 -uid: RamakriA -givenName: Alphonso -mail: RamakriA@4f2c26d60a654639aab7c46dc90f555c.bitwarden.com -carLicense: KEVDR3 -departmentNumber: 2636 -employeeType: Employee -homePhone: +1 408 349-8782 -initials: A. R. -mobile: +1 408 774-3373 -pager: +1 408 131-3958 -roomNumber: 8411 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rochelle Buford,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rochelle Buford -sn: Buford -description: This is Rochelle Buford's description -facsimileTelephoneNumber: +1 510 489-9892 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 968-4381 -title: Associate Management Admin -userPassword: Password1 -uid: BufordR -givenName: Rochelle -mail: BufordR@cad34ac8884647e3aa084b319084cb10.bitwarden.com -carLicense: MN6BO4 -departmentNumber: 1347 -employeeType: Employee -homePhone: +1 510 354-1884 -initials: R. B. -mobile: +1 510 225-6399 -pager: +1 510 253-7119 -roomNumber: 9535 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rajani Enns,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rajani Enns -sn: Enns -description: This is Rajani Enns's description -facsimileTelephoneNumber: +1 408 942-5200 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 833-8660 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: EnnsR -givenName: Rajani -mail: EnnsR@36c858bc990c4f6890c6cb5179e5811d.bitwarden.com -carLicense: 62P9XC -departmentNumber: 8072 -employeeType: Contract -homePhone: +1 408 264-8351 -initials: R. E. -mobile: +1 408 297-4083 -pager: +1 408 346-4717 -roomNumber: 8624 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ofella Nessman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ofella Nessman -sn: Nessman -description: This is Ofella Nessman's description -facsimileTelephoneNumber: +1 818 748-9446 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 784-4462 -title: Master Product Testing Vice President -userPassword: Password1 -uid: NessmanO -givenName: Ofella -mail: NessmanO@eff4b5c8cdd74572a1896b15aff841f1.bitwarden.com -carLicense: RO5W0X -departmentNumber: 7207 -employeeType: Contract -homePhone: +1 818 929-1483 -initials: O. N. -mobile: +1 818 913-6866 -pager: +1 818 372-9180 -roomNumber: 8584 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Donella Lethebinh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donella Lethebinh -sn: Lethebinh -description: This is Donella Lethebinh's description -facsimileTelephoneNumber: +1 206 681-6967 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 863-8617 -title: Supreme Administrative Evangelist -userPassword: Password1 -uid: LethebiD -givenName: Donella -mail: LethebiD@5b4286bc4af74709a0f65475a29d7c53.bitwarden.com -carLicense: 62T3YS -departmentNumber: 7379 -employeeType: Normal -homePhone: +1 206 712-3232 -initials: D. L. -mobile: +1 206 328-5749 -pager: +1 206 867-7736 -roomNumber: 8439 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tzung Camillucci,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tzung Camillucci -sn: Camillucci -description: This is Tzung Camillucci's description -facsimileTelephoneNumber: +1 510 749-4301 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 521-6710 -title: Junior Management Architect -userPassword: Password1 -uid: CamilluT -givenName: Tzung -mail: CamilluT@b37b8170c2a14be99b8672023148d924.bitwarden.com -carLicense: QU0NNG -departmentNumber: 5411 -employeeType: Employee -homePhone: +1 510 312-7835 -initials: T. C. -mobile: +1 510 610-3021 -pager: +1 510 442-1944 -roomNumber: 8622 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atsuo Mayne -sn: Mayne -description: This is Atsuo Mayne's description -facsimileTelephoneNumber: +1 510 555-9469 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 796-6128 -title: Supreme Product Testing Fellow -userPassword: Password1 -uid: MayneA -givenName: Atsuo -mail: MayneA@903617d1ed564473826d5f2c9b25fe7c.bitwarden.com -carLicense: 1VAQA6 -departmentNumber: 1594 -employeeType: Normal -homePhone: +1 510 865-3759 -initials: A. M. -mobile: +1 510 807-3506 -pager: +1 510 207-5022 -roomNumber: 9797 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rowena Vasudeva -sn: Vasudeva -description: This is Rowena Vasudeva's description -facsimileTelephoneNumber: +1 818 129-7305 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 687-3573 -title: Junior Administrative Assistant -userPassword: Password1 -uid: VasudevR -givenName: Rowena -mail: VasudevR@f06dcb9a7c274d2c8b61f4765bcce046.bitwarden.com -carLicense: GO4V68 -departmentNumber: 4512 -employeeType: Normal -homePhone: +1 818 148-4079 -initials: R. V. -mobile: +1 818 364-1787 -pager: +1 818 487-2556 -roomNumber: 9382 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laverna Gorlick -sn: Gorlick -description: This is Laverna Gorlick's description -facsimileTelephoneNumber: +1 408 590-2423 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 703-6086 -title: Chief Janitorial Stooge -userPassword: Password1 -uid: GorlickL -givenName: Laverna -mail: GorlickL@685edfe843f3410a96aa97440113374e.bitwarden.com -carLicense: 6NJK7R -departmentNumber: 4411 -employeeType: Contract -homePhone: +1 408 655-9429 -initials: L. G. -mobile: +1 408 100-6503 -pager: +1 408 939-5844 -roomNumber: 8608 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Suzanna Furst,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzanna Furst -sn: Furst -description: This is Suzanna Furst's description -facsimileTelephoneNumber: +1 510 620-4121 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 211-1987 -title: Associate Payroll Admin -userPassword: Password1 -uid: FurstS -givenName: Suzanna -mail: FurstS@70e46e55dad94d7bba82bf79618dd363.bitwarden.com -carLicense: B7AVG6 -departmentNumber: 4172 -employeeType: Employee -homePhone: +1 510 472-9286 -initials: S. F. -mobile: +1 510 956-5543 -pager: +1 510 887-2421 -roomNumber: 9217 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Masha Bridenstine -sn: Bridenstine -description: This is Masha Bridenstine's description -facsimileTelephoneNumber: +1 213 995-1153 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 968-8387 -title: Supreme Janitorial President -userPassword: Password1 -uid: BridensM -givenName: Masha -mail: BridensM@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com -carLicense: UME958 -departmentNumber: 7436 -employeeType: Employee -homePhone: +1 213 551-4495 -initials: M. B. -mobile: +1 213 828-9441 -pager: +1 213 973-7887 -roomNumber: 8388 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Berri Pracht,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berri Pracht -sn: Pracht -description: This is Berri Pracht's description -facsimileTelephoneNumber: +1 804 369-6890 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 406-4629 -title: Master Payroll Warrior -userPassword: Password1 -uid: PrachtB -givenName: Berri -mail: PrachtB@ac2881cfd212410799e38769b052602b.bitwarden.com -carLicense: 2I3I0M -departmentNumber: 6464 -employeeType: Employee -homePhone: +1 804 277-3936 -initials: B. P. -mobile: +1 804 166-6057 -pager: +1 804 519-9543 -roomNumber: 8558 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Esko Feist,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esko Feist -sn: Feist -description: This is Esko Feist's description -facsimileTelephoneNumber: +1 818 163-8961 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 818 850-5707 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: FeistE -givenName: Esko -mail: FeistE@f131b0c80bf2427c8f1448cabfd51b89.bitwarden.com -carLicense: 6S16R2 -departmentNumber: 1863 -employeeType: Normal -homePhone: +1 818 913-3835 -initials: E. F. -mobile: +1 818 392-4244 -pager: +1 818 629-7053 -roomNumber: 8770 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dorin McNerney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorin McNerney -sn: McNerney -description: This is Dorin McNerney's description -facsimileTelephoneNumber: +1 408 364-6082 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 435-3857 -title: Master Product Development Warrior -userPassword: Password1 -uid: McNerneD -givenName: Dorin -mail: McNerneD@c27a22599aa849ec8d6e0057e5fc89b1.bitwarden.com -carLicense: 81TKDB -departmentNumber: 6232 -employeeType: Contract -homePhone: +1 408 882-3902 -initials: D. M. -mobile: +1 408 498-1297 -pager: +1 408 518-4271 -roomNumber: 8268 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kataryna Vaters,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kataryna Vaters -sn: Vaters -description: This is Kataryna Vaters's description -facsimileTelephoneNumber: +1 415 404-3879 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 545-6272 -title: Junior Peons Admin -userPassword: Password1 -uid: VatersK -givenName: Kataryna -mail: VatersK@9aed867d53c546c79f7cb774a38dec77.bitwarden.com -carLicense: UNTE4U -departmentNumber: 9592 -employeeType: Contract -homePhone: +1 415 304-7625 -initials: K. V. -mobile: +1 415 904-9164 -pager: +1 415 149-9304 -roomNumber: 8021 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nikki Captives,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nikki Captives -sn: Captives -description: This is Nikki Captives's description -facsimileTelephoneNumber: +1 213 635-1159 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 513-9009 -title: Associate Product Development Engineer -userPassword: Password1 -uid: CaptiveN -givenName: Nikki -mail: CaptiveN@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com -carLicense: EQQ15W -departmentNumber: 8445 -employeeType: Normal -homePhone: +1 213 619-5889 -initials: N. C. -mobile: +1 213 195-8524 -pager: +1 213 620-1248 -roomNumber: 8275 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mureil Fowlkes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mureil Fowlkes -sn: Fowlkes -description: This is Mureil Fowlkes's description -facsimileTelephoneNumber: +1 415 655-7991 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 154-2522 -title: Associate Peons Dictator -userPassword: Password1 -uid: FowlkesM -givenName: Mureil -mail: FowlkesM@bf899684934849bcb7f3a0d86a890838.bitwarden.com -carLicense: CP5FFD -departmentNumber: 3180 -employeeType: Normal -homePhone: +1 415 326-5507 -initials: M. F. -mobile: +1 415 912-9119 -pager: +1 415 387-8278 -roomNumber: 9889 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Charla Silieff,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charla Silieff -sn: Silieff -description: This is Charla Silieff's description -facsimileTelephoneNumber: +1 408 190-4989 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 408 993-2477 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: SilieffC -givenName: Charla -mail: SilieffC@fdc7d191201f48f4ad7e078c4bc3a04a.bitwarden.com -carLicense: LL381W -departmentNumber: 1648 -employeeType: Normal -homePhone: +1 408 418-9619 -initials: C. S. -mobile: +1 408 901-3108 -pager: +1 408 792-8632 -roomNumber: 8727 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gladys Jarvah,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gladys Jarvah -sn: Jarvah -description: This is Gladys Jarvah's description -facsimileTelephoneNumber: +1 510 130-4341 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 462-4535 -title: Junior Management Developer -userPassword: Password1 -uid: JarvahG -givenName: Gladys -mail: JarvahG@1365456b38df40e8b356de5ec434637e.bitwarden.com -carLicense: VA9KPX -departmentNumber: 7955 -employeeType: Normal -homePhone: +1 510 727-5107 -initials: G. J. -mobile: +1 510 627-5667 -pager: +1 510 442-4397 -roomNumber: 9426 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Juan Hummel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juan Hummel -sn: Hummel -description: This is Juan Hummel's description -facsimileTelephoneNumber: +1 213 300-8353 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 539-8037 -title: Associate Peons Technician -userPassword: Password1 -uid: HummelJ -givenName: Juan -mail: HummelJ@25f3da6efbac4e1a943679d0eb7798c3.bitwarden.com -carLicense: LNFFY1 -departmentNumber: 1860 -employeeType: Employee -homePhone: +1 213 344-1832 -initials: J. H. -mobile: +1 213 586-5327 -pager: +1 213 544-2740 -roomNumber: 9988 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cathryn Scheible,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathryn Scheible -sn: Scheible -description: This is Cathryn Scheible's description -facsimileTelephoneNumber: +1 804 635-2968 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 804 644-8387 -title: Supreme Peons Consultant -userPassword: Password1 -uid: ScheiblC -givenName: Cathryn -mail: ScheiblC@64a69cddd7bb4b56b7df20af602c35fb.bitwarden.com -carLicense: XCK78C -departmentNumber: 2128 -employeeType: Employee -homePhone: +1 804 335-7126 -initials: C. S. -mobile: +1 804 567-6259 -pager: +1 804 498-5428 -roomNumber: 9826 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Harri Senese,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harri Senese -sn: Senese -description: This is Harri Senese's description -facsimileTelephoneNumber: +1 415 609-2155 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 350-2853 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: SeneseH -givenName: Harri -mail: SeneseH@6c746d4a7e6b46028821b547cb3cb61f.bitwarden.com -carLicense: BJRSEE -departmentNumber: 9835 -employeeType: Employee -homePhone: +1 415 257-2025 -initials: H. S. -mobile: +1 415 319-9306 -pager: +1 415 487-3871 -roomNumber: 8507 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Moreen Lemay,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moreen Lemay -sn: Lemay -description: This is Moreen Lemay's description -facsimileTelephoneNumber: +1 804 909-4790 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 474-6102 -title: Junior Management Mascot -userPassword: Password1 -uid: LemayM -givenName: Moreen -mail: LemayM@2534553c6cb5454888e3c62e4dc7cbc2.bitwarden.com -carLicense: 2GG2ON -departmentNumber: 5694 -employeeType: Employee -homePhone: +1 804 992-5064 -initials: M. L. -mobile: +1 804 652-4129 -pager: +1 804 621-2385 -roomNumber: 9265 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlena Frodsham -sn: Frodsham -description: This is Marlena Frodsham's description -facsimileTelephoneNumber: +1 804 347-2094 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 193-6688 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: FrodshaM -givenName: Marlena -mail: FrodshaM@494f2548825245788f70b0629ca28b58.bitwarden.com -carLicense: 1IXURJ -departmentNumber: 5076 -employeeType: Normal -homePhone: +1 804 945-2648 -initials: M. F. -mobile: +1 804 937-8550 -pager: +1 804 636-5482 -roomNumber: 9698 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeannette Jedrysiak -sn: Jedrysiak -description: This is Jeannette Jedrysiak's description -facsimileTelephoneNumber: +1 408 942-1952 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 524-1601 -title: Associate Product Testing Director -userPassword: Password1 -uid: JedrysiJ -givenName: Jeannette -mail: JedrysiJ@4023635f5fb04eb5b921a5e9cca7220e.bitwarden.com -carLicense: GV2K0K -departmentNumber: 2022 -employeeType: Normal -homePhone: +1 408 132-7037 -initials: J. J. -mobile: +1 408 892-1844 -pager: +1 408 759-1454 -roomNumber: 9245 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jabir Gunn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jabir Gunn -sn: Gunn -description: This is Jabir Gunn's description -facsimileTelephoneNumber: +1 408 353-4869 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 260-1262 -title: Master Administrative Warrior -userPassword: Password1 -uid: GunnJ -givenName: Jabir -mail: GunnJ@612e8eb188de48388f43236fca542654.bitwarden.com -carLicense: 9H6NBQ -departmentNumber: 3117 -employeeType: Employee -homePhone: +1 408 534-2111 -initials: J. G. -mobile: +1 408 489-3242 -pager: +1 408 450-8327 -roomNumber: 8358 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dotty Oman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dotty Oman -sn: Oman -description: This is Dotty Oman's description -facsimileTelephoneNumber: +1 206 226-6103 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 383-9332 -title: Junior Product Development Grunt -userPassword: Password1 -uid: OmanD -givenName: Dotty -mail: OmanD@1c75dd756d3646528231e24a92716bd4.bitwarden.com -carLicense: 463M6L -departmentNumber: 9027 -employeeType: Contract -homePhone: +1 206 556-4059 -initials: D. O. -mobile: +1 206 422-7664 -pager: +1 206 518-5034 -roomNumber: 8607 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Quintina Mallett,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quintina Mallett -sn: Mallett -description: This is Quintina Mallett's description -facsimileTelephoneNumber: +1 818 585-5858 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 864-9931 -title: Master Janitorial Writer -userPassword: Password1 -uid: MallettQ -givenName: Quintina -mail: MallettQ@231cbd7e6f7348cfac07641066e2fec0.bitwarden.com -carLicense: EBL58L -departmentNumber: 2507 -employeeType: Employee -homePhone: +1 818 668-3206 -initials: Q. M. -mobile: +1 818 364-6204 -pager: +1 818 376-3869 -roomNumber: 9484 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natascha Stansbury -sn: Stansbury -description: This is Natascha Stansbury's description -facsimileTelephoneNumber: +1 408 668-1393 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 354-5934 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: StansbuN -givenName: Natascha -mail: StansbuN@5c0a8df1a6ec4beaa217c5f72f1c4620.bitwarden.com -carLicense: 4EMLLV -departmentNumber: 3064 -employeeType: Normal -homePhone: +1 408 118-9175 -initials: N. S. -mobile: +1 408 326-3347 -pager: +1 408 817-4256 -roomNumber: 9106 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabra McCuaig -sn: McCuaig -description: This is Sabra McCuaig's description -facsimileTelephoneNumber: +1 415 328-2724 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 451-5176 -title: Master Product Testing Czar -userPassword: Password1 -uid: McCuaigS -givenName: Sabra -mail: McCuaigS@275ceeebf2b5444f8cf460d56ec9ab83.bitwarden.com -carLicense: IMXCPX -departmentNumber: 8459 -employeeType: Contract -homePhone: +1 415 758-4969 -initials: S. M. -mobile: +1 415 540-5871 -pager: +1 415 392-9412 -roomNumber: 8951 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adie Itah,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adie Itah -sn: Itah -description: This is Adie Itah's description -facsimileTelephoneNumber: +1 818 674-2579 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 818 427-8908 -title: Master Payroll President -userPassword: Password1 -uid: ItahA -givenName: Adie -mail: ItahA@34f90a14c10941158575c36d0a318149.bitwarden.com -carLicense: FGU0A3 -departmentNumber: 5305 -employeeType: Employee -homePhone: +1 818 255-6428 -initials: A. I. -mobile: +1 818 363-3486 -pager: +1 818 879-6512 -roomNumber: 8175 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Philippine Corcoran,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Philippine Corcoran -sn: Corcoran -description: This is Philippine Corcoran's description -facsimileTelephoneNumber: +1 213 216-8942 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 857-5075 -title: Chief Peons Stooge -userPassword: Password1 -uid: CorcoraP -givenName: Philippine -mail: CorcoraP@a0ec5611c8b0407f85380c4a00447de2.bitwarden.com -carLicense: ACA5DO -departmentNumber: 4748 -employeeType: Normal -homePhone: +1 213 810-4883 -initials: P. C. -mobile: +1 213 757-3545 -pager: +1 213 374-4960 -roomNumber: 9946 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ollie Panter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ollie Panter -sn: Panter -description: This is Ollie Panter's description -facsimileTelephoneNumber: +1 206 836-4839 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 349-3320 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: PanterO -givenName: Ollie -mail: PanterO@8230b7d1e75c49b4b334d59396eca240.bitwarden.com -carLicense: TTSJG1 -departmentNumber: 6280 -employeeType: Employee -homePhone: +1 206 862-4425 -initials: O. P. -mobile: +1 206 105-6079 -pager: +1 206 458-6723 -roomNumber: 9169 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elaina Karkotsky -sn: Karkotsky -description: This is Elaina Karkotsky's description -facsimileTelephoneNumber: +1 510 137-8166 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 510 980-8592 -title: Junior Administrative Artist -userPassword: Password1 -uid: KarkotsE -givenName: Elaina -mail: KarkotsE@4691b2eac8ba4d1390582076e407a460.bitwarden.com -carLicense: EWWOG3 -departmentNumber: 4702 -employeeType: Employee -homePhone: +1 510 907-3349 -initials: E. K. -mobile: +1 510 616-5980 -pager: +1 510 666-7259 -roomNumber: 8238 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Clint Jesty,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clint Jesty -sn: Jesty -description: This is Clint Jesty's description -facsimileTelephoneNumber: +1 818 734-9070 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 185-9923 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: JestyC -givenName: Clint -mail: JestyC@742a0235bc3841709c6d6197d9db9a18.bitwarden.com -carLicense: G4OALC -departmentNumber: 3367 -employeeType: Normal -homePhone: +1 818 375-2458 -initials: C. J. -mobile: +1 818 948-1328 -pager: +1 818 719-9225 -roomNumber: 8465 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edythe Khodosh -sn: Khodosh -description: This is Edythe Khodosh's description -facsimileTelephoneNumber: +1 510 236-8124 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 255-8855 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: KhodoshE -givenName: Edythe -mail: KhodoshE@574eddc7483948a59c9d38d5c8f6a354.bitwarden.com -carLicense: G2VK68 -departmentNumber: 9882 -employeeType: Employee -homePhone: +1 510 905-7441 -initials: E. K. -mobile: +1 510 228-3840 -pager: +1 510 869-6914 -roomNumber: 9220 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tomasina Gofron,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tomasina Gofron -sn: Gofron -description: This is Tomasina Gofron's description -facsimileTelephoneNumber: +1 206 101-8901 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 684-3358 -title: Chief Product Development Architect -userPassword: Password1 -uid: GofronT -givenName: Tomasina -mail: GofronT@9c0732c5de1c4903a2c7114c9e303d9e.bitwarden.com -carLicense: C8IC47 -departmentNumber: 2593 -employeeType: Contract -homePhone: +1 206 928-5902 -initials: T. G. -mobile: +1 206 258-9067 -pager: +1 206 563-3779 -roomNumber: 8215 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nong Bnrecad,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nong Bnrecad -sn: Bnrecad -description: This is Nong Bnrecad's description -facsimileTelephoneNumber: +1 206 993-1390 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 639-8487 -title: Junior Peons Sales Rep -userPassword: Password1 -uid: BnrecadN -givenName: Nong -mail: BnrecadN@248d38bb7c664c8f9d2a64525819610e.bitwarden.com -carLicense: T09GQJ -departmentNumber: 9537 -employeeType: Contract -homePhone: +1 206 555-2023 -initials: N. B. -mobile: +1 206 696-9851 -pager: +1 206 862-2112 -roomNumber: 8948 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Margy Lucas,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margy Lucas -sn: Lucas -description: This is Margy Lucas's description -facsimileTelephoneNumber: +1 415 758-7136 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 572-1455 -title: Supreme Management Pinhead -userPassword: Password1 -uid: LucasM -givenName: Margy -mail: LucasM@3fbf482bd66842dfadf615e0e20dc12e.bitwarden.com -carLicense: 52EQ0B -departmentNumber: 1653 -employeeType: Employee -homePhone: +1 415 714-3825 -initials: M. L. -mobile: +1 415 476-5906 -pager: +1 415 637-2808 -roomNumber: 9167 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Melvin Cohen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melvin Cohen -sn: Cohen -description: This is Melvin Cohen's description -facsimileTelephoneNumber: +1 408 889-4537 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 597-9174 -title: Junior Peons Madonna -userPassword: Password1 -uid: CohenM -givenName: Melvin -mail: CohenM@ccd3c7eb497f45ed91b85ebe03c21037.bitwarden.com -carLicense: IKTYHQ -departmentNumber: 9941 -employeeType: Contract -homePhone: +1 408 866-9241 -initials: M. C. -mobile: +1 408 335-7629 -pager: +1 408 299-1602 -roomNumber: 8883 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Milissent Rolls,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milissent Rolls -sn: Rolls -description: This is Milissent Rolls's description -facsimileTelephoneNumber: +1 213 221-2567 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 497-1427 -title: Junior Peons Fellow -userPassword: Password1 -uid: RollsM -givenName: Milissent -mail: RollsM@ddf56813dd4c431986e007d26b82799f.bitwarden.com -carLicense: P759UW -departmentNumber: 9844 -employeeType: Employee -homePhone: +1 213 657-2304 -initials: M. R. -mobile: +1 213 605-3892 -pager: +1 213 529-8008 -roomNumber: 8573 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquie Freeley -sn: Freeley -description: This is Jacquie Freeley's description -facsimileTelephoneNumber: +1 818 819-4428 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 818 166-4705 -title: Junior Janitorial Admin -userPassword: Password1 -uid: FreeleyJ -givenName: Jacquie -mail: FreeleyJ@899743aa481a45efb507e6d61189c383.bitwarden.com -carLicense: X50JS3 -departmentNumber: 8183 -employeeType: Normal -homePhone: +1 818 243-3940 -initials: J. F. -mobile: +1 818 867-3185 -pager: +1 818 135-3488 -roomNumber: 9587 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Theodore Egdorf,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theodore Egdorf -sn: Egdorf -description: This is Theodore Egdorf's description -facsimileTelephoneNumber: +1 415 819-9106 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 966-3807 -title: Chief Peons Technician -userPassword: Password1 -uid: EgdorfT -givenName: Theodore -mail: EgdorfT@107125a246e24f24a9cf40da49e16737.bitwarden.com -carLicense: 7KUURY -departmentNumber: 2708 -employeeType: Contract -homePhone: +1 415 535-4378 -initials: T. E. -mobile: +1 415 223-4765 -pager: +1 415 845-3806 -roomNumber: 8621 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vernice Drynan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vernice Drynan -sn: Drynan -description: This is Vernice Drynan's description -facsimileTelephoneNumber: +1 206 221-3200 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 513-2634 -title: Associate Management Evangelist -userPassword: Password1 -uid: DrynanV -givenName: Vernice -mail: DrynanV@22c1616450914b67aaa0021953493b44.bitwarden.com -carLicense: VOHT0F -departmentNumber: 1262 -employeeType: Normal -homePhone: +1 206 511-5632 -initials: V. D. -mobile: +1 206 828-9277 -pager: +1 206 898-6423 -roomNumber: 9227 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hensley Parrish,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hensley Parrish -sn: Parrish -description: This is Hensley Parrish's description -facsimileTelephoneNumber: +1 415 137-6302 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 535-3391 -title: Master Janitorial Warrior -userPassword: Password1 -uid: ParrishH -givenName: Hensley -mail: ParrishH@cbb46474a4d64b6d94b0841f08da9a09.bitwarden.com -carLicense: GW9LB4 -departmentNumber: 3309 -employeeType: Employee -homePhone: +1 415 690-7114 -initials: H. P. -mobile: +1 415 321-7363 -pager: +1 415 584-2672 -roomNumber: 9935 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrzej SalimYasuda -sn: SalimYasuda -description: This is Andrzej SalimYasuda's description -facsimileTelephoneNumber: +1 415 520-4585 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 371-9473 -title: Junior Peons Artist -userPassword: Password1 -uid: SalimYaA -givenName: Andrzej -mail: SalimYaA@21cc8cee33394af98a10a365eddcb55c.bitwarden.com -carLicense: PJX6ES -departmentNumber: 1655 -employeeType: Normal -homePhone: +1 415 564-9781 -initials: A. S. -mobile: +1 415 441-5791 -pager: +1 415 438-2967 -roomNumber: 8806 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christyna Manwaring -sn: Manwaring -description: This is Christyna Manwaring's description -facsimileTelephoneNumber: +1 408 638-9032 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 965-3183 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: ManwariC -givenName: Christyna -mail: ManwariC@6a03900e00f041c8bad5cf924164b20c.bitwarden.com -carLicense: 3QGGA1 -departmentNumber: 9144 -employeeType: Normal -homePhone: +1 408 940-6274 -initials: C. M. -mobile: +1 408 592-5572 -pager: +1 408 146-2393 -roomNumber: 8250 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elbert Culley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elbert Culley -sn: Culley -description: This is Elbert Culley's description -facsimileTelephoneNumber: +1 408 627-3281 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 103-8716 -title: Associate Payroll Director -userPassword: Password1 -uid: CulleyE -givenName: Elbert -mail: CulleyE@38bb69a498e64b7781901ef7c50df3ad.bitwarden.com -carLicense: JDO9WY -departmentNumber: 9018 -employeeType: Normal -homePhone: +1 408 690-6306 -initials: E. C. -mobile: +1 408 610-1001 -pager: +1 408 403-6181 -roomNumber: 9528 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fady Benavides,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fady Benavides -sn: Benavides -description: This is Fady Benavides's description -facsimileTelephoneNumber: +1 206 324-8015 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 206 281-9979 -title: Junior Human Resources President -userPassword: Password1 -uid: BenavidF -givenName: Fady -mail: BenavidF@ae1d3c73ac3541698f9376eee53602f8.bitwarden.com -carLicense: R6B6FR -departmentNumber: 2320 -employeeType: Employee -homePhone: +1 206 181-3305 -initials: F. B. -mobile: +1 206 498-7060 -pager: +1 206 857-9279 -roomNumber: 8499 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Djenana LeGuen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Djenana LeGuen -sn: LeGuen -description: This is Djenana LeGuen's description -facsimileTelephoneNumber: +1 408 785-3520 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 946-2691 -title: Junior Payroll Figurehead -userPassword: Password1 -uid: LeGuenD -givenName: Djenana -mail: LeGuenD@e80ca250f89b403b9611f3035a6f2a93.bitwarden.com -carLicense: F1L1VK -departmentNumber: 4369 -employeeType: Normal -homePhone: +1 408 991-7020 -initials: D. L. -mobile: +1 408 468-3253 -pager: +1 408 997-7526 -roomNumber: 8449 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pratibha Danbrook -sn: Danbrook -description: This is Pratibha Danbrook's description -facsimileTelephoneNumber: +1 804 580-3374 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 212-5237 -title: Chief Administrative Punk -userPassword: Password1 -uid: DanbrooP -givenName: Pratibha -mail: DanbrooP@cfe29e1726394f4a9a5f2244fdfdbc63.bitwarden.com -carLicense: RS2ONU -departmentNumber: 7920 -employeeType: Contract -homePhone: +1 804 235-1384 -initials: P. D. -mobile: +1 804 120-2610 -pager: +1 804 660-8063 -roomNumber: 9734 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tele Travers,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tele Travers -sn: Travers -description: This is Tele Travers's description -facsimileTelephoneNumber: +1 804 417-6366 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 117-6111 -title: Master Product Testing Manager -userPassword: Password1 -uid: TraversT -givenName: Tele -mail: TraversT@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com -carLicense: 2ST6P1 -departmentNumber: 6586 -employeeType: Normal -homePhone: +1 804 373-9515 -initials: T. T. -mobile: +1 804 563-1714 -pager: +1 804 766-8833 -roomNumber: 8642 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susy Tatangsurja -sn: Tatangsurja -description: This is Susy Tatangsurja's description -facsimileTelephoneNumber: +1 408 700-1796 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 618-3146 -title: Chief Product Development Architect -userPassword: Password1 -uid: TatangsS -givenName: Susy -mail: TatangsS@ee6afb048cfd44e18bba35da7b089f24.bitwarden.com -carLicense: 4YTOSB -departmentNumber: 4702 -employeeType: Employee -homePhone: +1 408 388-4009 -initials: S. T. -mobile: +1 408 311-9691 -pager: +1 408 700-7098 -roomNumber: 9189 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cherilyn Stults,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherilyn Stults -sn: Stults -description: This is Cherilyn Stults's description -facsimileTelephoneNumber: +1 818 642-4701 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 847-8175 -title: Chief Administrative Janitor -userPassword: Password1 -uid: StultsC -givenName: Cherilyn -mail: StultsC@ae1bd8aa112143fa87c88a44e69aa310.bitwarden.com -carLicense: QEV2S6 -departmentNumber: 5369 -employeeType: Contract -homePhone: +1 818 845-1640 -initials: C. S. -mobile: +1 818 273-2983 -pager: +1 818 937-1049 -roomNumber: 8462 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Harri Kuntova,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harri Kuntova -sn: Kuntova -description: This is Harri Kuntova's description -facsimileTelephoneNumber: +1 510 649-4914 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 998-5115 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: KuntovaH -givenName: Harri -mail: KuntovaH@5a8cc902fcc5423d892dfdcc048c73b2.bitwarden.com -carLicense: T7XJRV -departmentNumber: 9641 -employeeType: Employee -homePhone: +1 510 556-8732 -initials: H. K. -mobile: +1 510 927-4190 -pager: +1 510 353-3910 -roomNumber: 9791 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dulcine Litherland,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulcine Litherland -sn: Litherland -description: This is Dulcine Litherland's description -facsimileTelephoneNumber: +1 206 141-8482 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 667-1376 -title: Chief Peons Figurehead -userPassword: Password1 -uid: LitherlD -givenName: Dulcine -mail: LitherlD@bbf9c04e50a241698a5503a647ae8281.bitwarden.com -carLicense: 6WUTXL -departmentNumber: 2262 -employeeType: Employee -homePhone: +1 206 792-7050 -initials: D. L. -mobile: +1 206 719-6941 -pager: +1 206 398-4416 -roomNumber: 9056 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kelwin Diee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelwin Diee -sn: Diee -description: This is Kelwin Diee's description -facsimileTelephoneNumber: +1 415 408-5418 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 148-4125 -title: Associate Product Development Visionary -userPassword: Password1 -uid: DieeK -givenName: Kelwin -mail: DieeK@575b96dd8e82439988861ea4db931c38.bitwarden.com -carLicense: 71DSSW -departmentNumber: 5326 -employeeType: Normal -homePhone: +1 415 736-6766 -initials: K. D. -mobile: +1 415 341-4820 -pager: +1 415 756-3395 -roomNumber: 8726 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wylo Dirbm -sn: Dirbm -description: This is Wylo Dirbm's description -facsimileTelephoneNumber: +1 818 742-9817 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 414-2280 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: DirbmW -givenName: Wylo -mail: DirbmW@5da44ffb6b534c2a8e8e949cd515b1cd.bitwarden.com -carLicense: UDX2FQ -departmentNumber: 2369 -employeeType: Contract -homePhone: +1 818 842-8824 -initials: W. D. -mobile: +1 818 683-3073 -pager: +1 818 883-2360 -roomNumber: 9159 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurelea Brunoni -sn: Brunoni -description: This is Aurelea Brunoni's description -facsimileTelephoneNumber: +1 804 403-5813 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 781-9747 -title: Chief Administrative Fellow -userPassword: Password1 -uid: BrunoniA -givenName: Aurelea -mail: BrunoniA@d89a4c96e85d46e9b90aee84eca8553c.bitwarden.com -carLicense: IYQTKB -departmentNumber: 6486 -employeeType: Contract -homePhone: +1 804 560-3110 -initials: A. B. -mobile: +1 804 940-2641 -pager: +1 804 423-9276 -roomNumber: 9082 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Veen Tarver,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veen Tarver -sn: Tarver -description: This is Veen Tarver's description -facsimileTelephoneNumber: +1 510 591-6003 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 413-2585 -title: Supreme Human Resources Manager -userPassword: Password1 -uid: TarverV -givenName: Veen -mail: TarverV@89cc2a9b2ec949b1a8070c39d600dc45.bitwarden.com -carLicense: QI2H2V -departmentNumber: 5903 -employeeType: Normal -homePhone: +1 510 332-3789 -initials: V. T. -mobile: +1 510 721-6922 -pager: +1 510 171-3343 -roomNumber: 8775 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kimberlee Malee,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kimberlee Malee -sn: Malee -description: This is Kimberlee Malee's description -facsimileTelephoneNumber: +1 206 684-2305 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 400-3575 -title: Junior Payroll Engineer -userPassword: Password1 -uid: MaleeK -givenName: Kimberlee -mail: MaleeK@b808f16625dc4c2a96aed338660eeca1.bitwarden.com -carLicense: 1E4YPS -departmentNumber: 2982 -employeeType: Contract -homePhone: +1 206 140-2851 -initials: K. M. -mobile: +1 206 718-2587 -pager: +1 206 686-7714 -roomNumber: 8154 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chiho Larmour,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chiho Larmour -sn: Larmour -description: This is Chiho Larmour's description -facsimileTelephoneNumber: +1 415 237-8283 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 475-6746 -title: Associate Management Fellow -userPassword: Password1 -uid: LarmourC -givenName: Chiho -mail: LarmourC@25466f5c2b4e4320afbe3eeabe295830.bitwarden.com -carLicense: PGLE2B -departmentNumber: 3867 -employeeType: Contract -homePhone: +1 415 990-1528 -initials: C. L. -mobile: +1 415 884-5951 -pager: +1 415 109-1914 -roomNumber: 8609 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Merrily Provencal,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrily Provencal -sn: Provencal -description: This is Merrily Provencal's description -facsimileTelephoneNumber: +1 804 146-8700 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 289-4673 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: ProvencM -givenName: Merrily -mail: ProvencM@5ed2a85f8436420b8aa9acd30085ca22.bitwarden.com -carLicense: BAI749 -departmentNumber: 2039 -employeeType: Contract -homePhone: +1 804 282-5070 -initials: M. P. -mobile: +1 804 546-6022 -pager: +1 804 510-3010 -roomNumber: 9278 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jorey Roehrig -sn: Roehrig -description: This is Jorey Roehrig's description -facsimileTelephoneNumber: +1 818 746-5565 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 488-9226 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: RoehrigJ -givenName: Jorey -mail: RoehrigJ@39ca6877ef574ca3bc5bd5f5e2e96e7c.bitwarden.com -carLicense: 8A7OC7 -departmentNumber: 5148 -employeeType: Contract -homePhone: +1 818 262-7180 -initials: J. R. -mobile: +1 818 138-9885 -pager: +1 818 678-2920 -roomNumber: 8360 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Divina Brevard,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Divina Brevard -sn: Brevard -description: This is Divina Brevard's description -facsimileTelephoneNumber: +1 415 718-9311 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 128-7115 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: BrevardD -givenName: Divina -mail: BrevardD@e707a4307e404826b821947945a42b00.bitwarden.com -carLicense: W6M7WF -departmentNumber: 2943 -employeeType: Normal -homePhone: +1 415 797-2251 -initials: D. B. -mobile: +1 415 888-8838 -pager: +1 415 842-2938 -roomNumber: 9806 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Celine Lotan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celine Lotan -sn: Lotan -description: This is Celine Lotan's description -facsimileTelephoneNumber: +1 408 461-9624 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 842-9023 -title: Master Payroll Mascot -userPassword: Password1 -uid: LotanC -givenName: Celine -mail: LotanC@e8e7ee5b6e064589b4c7f97fde4b37f5.bitwarden.com -carLicense: CBCFY1 -departmentNumber: 4993 -employeeType: Employee -homePhone: +1 408 281-9973 -initials: C. L. -mobile: +1 408 108-2465 -pager: +1 408 848-4148 -roomNumber: 8623 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Noriko Corner,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noriko Corner -sn: Corner -description: This is Noriko Corner's description -facsimileTelephoneNumber: +1 804 872-8332 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 643-7077 -title: Supreme Management Architect -userPassword: Password1 -uid: CornerN -givenName: Noriko -mail: CornerN@5cadcfe79eb54c65992596d7e8e0c690.bitwarden.com -carLicense: T5WNPW -departmentNumber: 4810 -employeeType: Contract -homePhone: +1 804 113-5019 -initials: N. C. -mobile: +1 804 484-7828 -pager: +1 804 543-8884 -roomNumber: 9115 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Janean Hoshi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janean Hoshi -sn: Hoshi -description: This is Janean Hoshi's description -facsimileTelephoneNumber: +1 213 279-8344 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 177-4902 -title: Junior Administrative Consultant -userPassword: Password1 -uid: HoshiJ -givenName: Janean -mail: HoshiJ@1435fdc2b771411ca35fcc6cc2698b9c.bitwarden.com -carLicense: 4P32HU -departmentNumber: 1699 -employeeType: Normal -homePhone: +1 213 818-9267 -initials: J. H. -mobile: +1 213 517-4831 -pager: +1 213 440-8092 -roomNumber: 8758 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shorwan Womack,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shorwan Womack -sn: Womack -description: This is Shorwan Womack's description -facsimileTelephoneNumber: +1 804 176-6305 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 940-7775 -title: Master Product Testing Dictator -userPassword: Password1 -uid: WomackS -givenName: Shorwan -mail: WomackS@54ae4b8946dd40ba8c99c8bc8b14cd1b.bitwarden.com -carLicense: J9W4IJ -departmentNumber: 9829 -employeeType: Contract -homePhone: +1 804 510-2291 -initials: S. W. -mobile: +1 804 656-8331 -pager: +1 804 274-3455 -roomNumber: 9194 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deloria Kelsay -sn: Kelsay -description: This is Deloria Kelsay's description -facsimileTelephoneNumber: +1 408 383-1792 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 408 486-9496 -title: Junior Product Testing Developer -userPassword: Password1 -uid: KelsayD -givenName: Deloria -mail: KelsayD@36fbb38d5bbe4aa29ae95e79bf727529.bitwarden.com -carLicense: IS7WFJ -departmentNumber: 4617 -employeeType: Contract -homePhone: +1 408 185-8142 -initials: D. K. -mobile: +1 408 324-1553 -pager: +1 408 392-7210 -roomNumber: 9841 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leeanne Keyes -sn: Keyes -description: This is Leeanne Keyes's description -facsimileTelephoneNumber: +1 408 304-5050 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 408 315-7576 -title: Supreme Human Resources Janitor -userPassword: Password1 -uid: KeyesL -givenName: Leeanne -mail: KeyesL@ed9ac14d0dc747adb394c56c700ac22a.bitwarden.com -carLicense: LTBH0G -departmentNumber: 3614 -employeeType: Contract -homePhone: +1 408 529-8708 -initials: L. K. -mobile: +1 408 603-7982 -pager: +1 408 288-1745 -roomNumber: 9251 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fiorenze Chrisman -sn: Chrisman -description: This is Fiorenze Chrisman's description -facsimileTelephoneNumber: +1 804 105-4255 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 437-8948 -title: Chief Administrative Vice President -userPassword: Password1 -uid: ChrismaF -givenName: Fiorenze -mail: ChrismaF@c0e08a4a1d724001a5c641abeefefcdf.bitwarden.com -carLicense: P8GVHN -departmentNumber: 8173 -employeeType: Normal -homePhone: +1 804 354-4232 -initials: F. C. -mobile: +1 804 972-1738 -pager: +1 804 361-4082 -roomNumber: 9965 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hattie Beilin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hattie Beilin -sn: Beilin -description: This is Hattie Beilin's description -facsimileTelephoneNumber: +1 510 476-6459 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 553-2058 -title: Master Product Testing Madonna -userPassword: Password1 -uid: BeilinH -givenName: Hattie -mail: BeilinH@3bfc3de402e042a394d461b86f93128b.bitwarden.com -carLicense: A8AW8Y -departmentNumber: 9469 -employeeType: Employee -homePhone: +1 510 686-9623 -initials: H. B. -mobile: +1 510 899-1950 -pager: +1 510 357-8753 -roomNumber: 9479 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Loralie Cumming,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loralie Cumming -sn: Cumming -description: This is Loralie Cumming's description -facsimileTelephoneNumber: +1 408 899-9160 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 800-7039 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: CummingL -givenName: Loralie -mail: CummingL@0eb174a38cfc4a95b6e9e718029db463.bitwarden.com -carLicense: MH6Q7D -departmentNumber: 3099 -employeeType: Normal -homePhone: +1 408 861-8727 -initials: L. C. -mobile: +1 408 100-5699 -pager: +1 408 442-1109 -roomNumber: 8370 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sanae Zalameda,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanae Zalameda -sn: Zalameda -description: This is Sanae Zalameda's description -facsimileTelephoneNumber: +1 206 821-4772 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 504-6026 -title: Master Peons Artist -userPassword: Password1 -uid: ZalamedS -givenName: Sanae -mail: ZalamedS@848b025264d14e669cec02146f987418.bitwarden.com -carLicense: WHMJM1 -departmentNumber: 2905 -employeeType: Normal -homePhone: +1 206 270-8339 -initials: S. Z. -mobile: +1 206 571-7085 -pager: +1 206 116-7930 -roomNumber: 9866 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rivalee Bragado -sn: Bragado -description: This is Rivalee Bragado's description -facsimileTelephoneNumber: +1 818 436-4489 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 296-2126 -title: Chief Product Testing Janitor -userPassword: Password1 -uid: BragadoR -givenName: Rivalee -mail: BragadoR@57ec55e059164473a2641a0802a3d2ba.bitwarden.com -carLicense: N6MDN7 -departmentNumber: 2384 -employeeType: Contract -homePhone: +1 818 309-9287 -initials: R. B. -mobile: +1 818 876-5866 -pager: +1 818 448-5262 -roomNumber: 9059 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Krystalle Logue,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krystalle Logue -sn: Logue -description: This is Krystalle Logue's description -facsimileTelephoneNumber: +1 408 126-8097 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 580-6140 -title: Master Peons Warrior -userPassword: Password1 -uid: LogueK -givenName: Krystalle -mail: LogueK@8dacb3afea62411d83ceb1bc304c1028.bitwarden.com -carLicense: ULNFCN -departmentNumber: 2210 -employeeType: Normal -homePhone: +1 408 797-9006 -initials: K. L. -mobile: +1 408 568-4240 -pager: +1 408 613-3699 -roomNumber: 8558 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fara Dillow,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fara Dillow -sn: Dillow -description: This is Fara Dillow's description -facsimileTelephoneNumber: +1 213 940-5486 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 604-6554 -title: Junior Human Resources Admin -userPassword: Password1 -uid: DillowF -givenName: Fara -mail: DillowF@ec9572b6571741cba193e664e197377a.bitwarden.com -carLicense: 40UKLU -departmentNumber: 8515 -employeeType: Employee -homePhone: +1 213 132-2386 -initials: F. D. -mobile: +1 213 232-5564 -pager: +1 213 711-3764 -roomNumber: 9331 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lonna Willcock,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lonna Willcock -sn: Willcock -description: This is Lonna Willcock's description -facsimileTelephoneNumber: +1 415 233-4268 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 415 987-5738 -title: Junior Product Testing Consultant -userPassword: Password1 -uid: WillcocL -givenName: Lonna -mail: WillcocL@cdf65b883c4c457a86f2eba62ef732a4.bitwarden.com -carLicense: J4GJKE -departmentNumber: 1571 -employeeType: Normal -homePhone: +1 415 647-2405 -initials: L. W. -mobile: +1 415 231-2614 -pager: +1 415 366-5285 -roomNumber: 8900 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hukam Ozersky -sn: Ozersky -description: This is Hukam Ozersky's description -facsimileTelephoneNumber: +1 818 142-4295 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 412-8258 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: OzerskyH -givenName: Hukam -mail: OzerskyH@621ecc47be084539a10e5521c8efa92f.bitwarden.com -carLicense: 2VVKPC -departmentNumber: 2303 -employeeType: Employee -homePhone: +1 818 130-8184 -initials: H. O. -mobile: +1 818 800-5894 -pager: +1 818 916-6464 -roomNumber: 9007 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Thrift McClelland,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thrift McClelland -sn: McClelland -description: This is Thrift McClelland's description -facsimileTelephoneNumber: +1 415 182-6664 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 415 257-1763 -title: Chief Administrative Writer -userPassword: Password1 -uid: McClellT -givenName: Thrift -mail: McClellT@d6ce39ad034b466eab6163a0fd6a84a6.bitwarden.com -carLicense: UF1X56 -departmentNumber: 9560 -employeeType: Normal -homePhone: +1 415 679-2347 -initials: T. M. -mobile: +1 415 583-7246 -pager: +1 415 157-8628 -roomNumber: 9355 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tres Bashton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tres Bashton -sn: Bashton -description: This is Tres Bashton's description -facsimileTelephoneNumber: +1 804 610-4110 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 877-2608 -title: Associate Peons Visionary -userPassword: Password1 -uid: BashtonT -givenName: Tres -mail: BashtonT@63cf6afc822f42ed95e0208899f901bf.bitwarden.com -carLicense: V5IOEL -departmentNumber: 1196 -employeeType: Contract -homePhone: +1 804 703-4783 -initials: T. B. -mobile: +1 804 708-4313 -pager: +1 804 171-3032 -roomNumber: 8940 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lara Terneus,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lara Terneus -sn: Terneus -description: This is Lara Terneus's description -facsimileTelephoneNumber: +1 213 645-2777 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 884-5671 -title: Associate Product Development Mascot -userPassword: Password1 -uid: TerneusL -givenName: Lara -mail: TerneusL@2d82e4fbfc604880a9f0d07a8531daa9.bitwarden.com -carLicense: VKQL73 -departmentNumber: 2024 -employeeType: Normal -homePhone: +1 213 527-4189 -initials: L. T. -mobile: +1 213 676-4706 -pager: +1 213 942-7443 -roomNumber: 8972 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Taryna Ganguly,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Taryna Ganguly -sn: Ganguly -description: This is Taryna Ganguly's description -facsimileTelephoneNumber: +1 804 841-6422 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 804 634-9041 -title: Junior Administrative Dictator -userPassword: Password1 -uid: GangulyT -givenName: Taryna -mail: GangulyT@41c0d9c6f1d54ffeb7ac5aa235429b41.bitwarden.com -carLicense: 2GFRSW -departmentNumber: 7065 -employeeType: Normal -homePhone: +1 804 712-5819 -initials: T. G. -mobile: +1 804 139-1658 -pager: +1 804 881-4800 -roomNumber: 8398 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giulietta Dropin -sn: Dropin -description: This is Giulietta Dropin's description -facsimileTelephoneNumber: +1 206 357-1883 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 206 243-4365 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: DropinG -givenName: Giulietta -mail: DropinG@130ee20fbdf449ab8c20d59d7bb0a698.bitwarden.com -carLicense: 5N17DX -departmentNumber: 5344 -employeeType: Normal -homePhone: +1 206 582-1846 -initials: G. D. -mobile: +1 206 739-5530 -pager: +1 206 852-5132 -roomNumber: 9898 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Serge Systems,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Serge Systems -sn: Systems -description: This is Serge Systems's description -facsimileTelephoneNumber: +1 206 840-6081 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 636-6602 -title: Associate Product Testing Dictator -userPassword: Password1 -uid: SystemsS -givenName: Serge -mail: SystemsS@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com -carLicense: LWI8LK -departmentNumber: 3205 -employeeType: Contract -homePhone: +1 206 732-5210 -initials: S. S. -mobile: +1 206 911-7348 -pager: +1 206 117-1432 -roomNumber: 8585 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marisca Parise,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marisca Parise -sn: Parise -description: This is Marisca Parise's description -facsimileTelephoneNumber: +1 818 546-6389 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 818 152-3649 -title: Master Payroll Punk -userPassword: Password1 -uid: PariseM -givenName: Marisca -mail: PariseM@c8037935d7cf4de6af85f4cdef77691d.bitwarden.com -carLicense: NVS6HU -departmentNumber: 3973 -employeeType: Normal -homePhone: +1 818 712-1702 -initials: M. P. -mobile: +1 818 525-7315 -pager: +1 818 946-9914 -roomNumber: 9312 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brook Ta,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brook Ta -sn: Ta -description: This is Brook Ta's description -facsimileTelephoneNumber: +1 213 436-5944 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 918-7603 -title: Supreme Product Testing Dictator -userPassword: Password1 -uid: TaB -givenName: Brook -mail: TaB@bb9e5ffb29744b338b8694a9d1283b9e.bitwarden.com -carLicense: 0YX5T1 -departmentNumber: 6754 -employeeType: Normal -homePhone: +1 213 795-8869 -initials: B. T. -mobile: +1 213 792-3941 -pager: +1 213 964-6282 -roomNumber: 9994 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Evanne Servance,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evanne Servance -sn: Servance -description: This is Evanne Servance's description -facsimileTelephoneNumber: +1 510 601-9561 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 676-3375 -title: Junior Janitorial Stooge -userPassword: Password1 -uid: ServancE -givenName: Evanne -mail: ServancE@86e8412a02bb46a19030741add17aeda.bitwarden.com -carLicense: T26CYB -departmentNumber: 1387 -employeeType: Employee -homePhone: +1 510 749-1463 -initials: E. S. -mobile: +1 510 300-6697 -pager: +1 510 573-5855 -roomNumber: 8430 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hamzeh Lyall,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hamzeh Lyall -sn: Lyall -description: This is Hamzeh Lyall's description -facsimileTelephoneNumber: +1 818 452-6457 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 525-6186 -title: Junior Peons Assistant -userPassword: Password1 -uid: LyallH -givenName: Hamzeh -mail: LyallH@cefcb38cb33a403e8d9697238eb1c561.bitwarden.com -carLicense: D4QRSA -departmentNumber: 6153 -employeeType: Normal -homePhone: +1 818 967-8777 -initials: H. L. -mobile: +1 818 633-9116 -pager: +1 818 555-1733 -roomNumber: 9676 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Collette Yao,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Collette Yao -sn: Yao -description: This is Collette Yao's description -facsimileTelephoneNumber: +1 510 478-3013 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 537-4935 -title: Junior Payroll Punk -userPassword: Password1 -uid: YaoC -givenName: Collette -mail: YaoC@415554f5adbe4c70a27d90a1a4deab5a.bitwarden.com -carLicense: C1OECC -departmentNumber: 5294 -employeeType: Employee -homePhone: +1 510 455-7720 -initials: C. Y. -mobile: +1 510 350-1543 -pager: +1 510 501-5193 -roomNumber: 8055 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mandy Heiliger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mandy Heiliger -sn: Heiliger -description: This is Mandy Heiliger's description -facsimileTelephoneNumber: +1 213 730-1223 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 151-7695 -title: Master Peons Grunt -userPassword: Password1 -uid: HeiligeM -givenName: Mandy -mail: HeiligeM@b22e59b4024b4e11ba0f1478fca2893a.bitwarden.com -carLicense: FNQ0DS -departmentNumber: 4787 -employeeType: Normal -homePhone: +1 213 176-1024 -initials: M. H. -mobile: +1 213 268-1656 -pager: +1 213 192-5767 -roomNumber: 9990 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Liduine Farah,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liduine Farah -sn: Farah -description: This is Liduine Farah's description -facsimileTelephoneNumber: +1 804 480-1888 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 804 678-5032 -title: Supreme Product Testing Evangelist -userPassword: Password1 -uid: FarahL -givenName: Liduine -mail: FarahL@eea2d462871e4840a27187b37bea3ed3.bitwarden.com -carLicense: XDUA3R -departmentNumber: 9636 -employeeType: Contract -homePhone: +1 804 540-5366 -initials: L. F. -mobile: +1 804 751-6760 -pager: +1 804 799-1224 -roomNumber: 8371 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arlee Hawley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlee Hawley -sn: Hawley -description: This is Arlee Hawley's description -facsimileTelephoneNumber: +1 804 773-3671 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 434-5014 -title: Junior Human Resources Artist -userPassword: Password1 -uid: HawleyA -givenName: Arlee -mail: HawleyA@b5dacfa66cfb4bc194ded29a6978a103.bitwarden.com -carLicense: T9A6PJ -departmentNumber: 8902 -employeeType: Contract -homePhone: +1 804 914-1614 -initials: A. H. -mobile: +1 804 526-8405 -pager: +1 804 237-3340 -roomNumber: 9830 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Theresina Reinink,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theresina Reinink -sn: Reinink -description: This is Theresina Reinink's description -facsimileTelephoneNumber: +1 408 332-7453 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 408 174-4738 -title: Associate Administrative Assistant -userPassword: Password1 -uid: ReininkT -givenName: Theresina -mail: ReininkT@c3dcba6fd4804a9ab67d7734e84114c2.bitwarden.com -carLicense: ICG2SQ -departmentNumber: 7162 -employeeType: Normal -homePhone: +1 408 544-6102 -initials: T. R. -mobile: +1 408 843-7025 -pager: +1 408 495-9012 -roomNumber: 9463 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hanny Hassey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanny Hassey -sn: Hassey -description: This is Hanny Hassey's description -facsimileTelephoneNumber: +1 213 472-8885 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 619-1511 -title: Junior Janitorial Artist -userPassword: Password1 -uid: HasseyH -givenName: Hanny -mail: HasseyH@f908b5237c0945e690da76df38180ee9.bitwarden.com -carLicense: CO0HPF -departmentNumber: 8030 -employeeType: Normal -homePhone: +1 213 609-6397 -initials: H. H. -mobile: +1 213 801-9017 -pager: +1 213 954-9332 -roomNumber: 9656 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gil Zhou,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gil Zhou -sn: Zhou -description: This is Gil Zhou's description -facsimileTelephoneNumber: +1 415 322-6018 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 544-2097 -title: Supreme Human Resources President -userPassword: Password1 -uid: ZhouG -givenName: Gil -mail: ZhouG@6867271f9fab4191b63db7db8f13930c.bitwarden.com -carLicense: H5RX1G -departmentNumber: 4137 -employeeType: Normal -homePhone: +1 415 680-7681 -initials: G. Z. -mobile: +1 415 196-4883 -pager: +1 415 559-3214 -roomNumber: 8698 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jurgen Strauss,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jurgen Strauss -sn: Strauss -description: This is Jurgen Strauss's description -facsimileTelephoneNumber: +1 510 382-4514 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 510 956-4978 -title: Supreme Product Development Admin -userPassword: Password1 -uid: StraussJ -givenName: Jurgen -mail: StraussJ@8983b5ec67954736aa1e1d407ad9bb05.bitwarden.com -carLicense: GAL894 -departmentNumber: 1766 -employeeType: Employee -homePhone: +1 510 852-8561 -initials: J. S. -mobile: +1 510 726-1106 -pager: +1 510 997-4847 -roomNumber: 8949 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anestassia Phair,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anestassia Phair -sn: Phair -description: This is Anestassia Phair's description -facsimileTelephoneNumber: +1 818 958-3234 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 134-4578 -title: Junior Product Testing Artist -userPassword: Password1 -uid: PhairA -givenName: Anestassia -mail: PhairA@c87d7949ca254b4faaba46ba985802e7.bitwarden.com -carLicense: AK1QFQ -departmentNumber: 5929 -employeeType: Employee -homePhone: +1 818 148-6803 -initials: A. P. -mobile: +1 818 597-5687 -pager: +1 818 383-7328 -roomNumber: 8544 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Koko Fetzko,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koko Fetzko -sn: Fetzko -description: This is Koko Fetzko's description -facsimileTelephoneNumber: +1 510 254-5106 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 339-4652 -title: Supreme Management Grunt -userPassword: Password1 -uid: FetzkoK -givenName: Koko -mail: FetzkoK@cfebb9c9e4244917aa4f9253ae236cdf.bitwarden.com -carLicense: Q5V7AV -departmentNumber: 6388 -employeeType: Normal -homePhone: +1 510 687-8866 -initials: K. F. -mobile: +1 510 564-9735 -pager: +1 510 720-8148 -roomNumber: 8982 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Irc McRae,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Irc McRae -sn: McRae -description: This is Irc McRae's description -facsimileTelephoneNumber: +1 510 414-6521 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 691-8837 -title: Master Management Director -userPassword: Password1 -uid: McRaeI -givenName: Irc -mail: McRaeI@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com -carLicense: C0W37X -departmentNumber: 7652 -employeeType: Employee -homePhone: +1 510 100-7966 -initials: I. M. -mobile: +1 510 975-1153 -pager: +1 510 729-4648 -roomNumber: 9746 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Aime Reno,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aime Reno -sn: Reno -description: This is Aime Reno's description -facsimileTelephoneNumber: +1 804 651-7670 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 225-4020 -title: Master Human Resources Fellow -userPassword: Password1 -uid: RenoA -givenName: Aime -mail: RenoA@d7af2d36201f488d997c6f7eea13f491.bitwarden.com -carLicense: 858O84 -departmentNumber: 5453 -employeeType: Normal -homePhone: +1 804 116-5504 -initials: A. R. -mobile: +1 804 969-4233 -pager: +1 804 256-3276 -roomNumber: 9339 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maddalena Duncan -sn: Duncan -description: This is Maddalena Duncan's description -facsimileTelephoneNumber: +1 206 793-5413 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 473-2621 -title: Master Human Resources Janitor -userPassword: Password1 -uid: DuncanM -givenName: Maddalena -mail: DuncanM@0a93c6c7853c48a3ac4722063dc9067d.bitwarden.com -carLicense: 2LVKJ2 -departmentNumber: 3042 -employeeType: Contract -homePhone: +1 206 605-6582 -initials: M. D. -mobile: +1 206 853-3198 -pager: +1 206 120-3451 -roomNumber: 8644 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Olympe Aston,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olympe Aston -sn: Aston -description: This is Olympe Aston's description -facsimileTelephoneNumber: +1 510 649-5575 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 962-7328 -title: Junior Administrative Engineer -userPassword: Password1 -uid: AstonO -givenName: Olympe -mail: AstonO@fa78004a0e4e45e5ac5f338a764f9f48.bitwarden.com -carLicense: XOHK3E -departmentNumber: 8425 -employeeType: Contract -homePhone: +1 510 277-9380 -initials: O. A. -mobile: +1 510 224-4434 -pager: +1 510 995-9878 -roomNumber: 9397 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Janenna Durnford,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janenna Durnford -sn: Durnford -description: This is Janenna Durnford's description -facsimileTelephoneNumber: +1 213 759-9933 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 545-8201 -title: Master Janitorial Artist -userPassword: Password1 -uid: DurnforJ -givenName: Janenna -mail: DurnforJ@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com -carLicense: VWC5D3 -departmentNumber: 2729 -employeeType: Normal -homePhone: +1 213 569-3031 -initials: J. D. -mobile: +1 213 614-9299 -pager: +1 213 790-4884 -roomNumber: 8875 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Selcuk Sochovka,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selcuk Sochovka -sn: Sochovka -description: This is Selcuk Sochovka's description -facsimileTelephoneNumber: +1 213 812-1585 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 997-2320 -title: Junior Peons Evangelist -userPassword: Password1 -uid: SochovkS -givenName: Selcuk -mail: SochovkS@442794dffd624b3d835092b89be2e152.bitwarden.com -carLicense: 6GXPR8 -departmentNumber: 5446 -employeeType: Contract -homePhone: +1 213 227-8513 -initials: S. S. -mobile: +1 213 539-4668 -pager: +1 213 542-1304 -roomNumber: 8767 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lauretta Abell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lauretta Abell -sn: Abell -description: This is Lauretta Abell's description -facsimileTelephoneNumber: +1 206 235-2983 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 206 198-5297 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: AbellL -givenName: Lauretta -mail: AbellL@4654bae9a87c447a9b895fec0c062c67.bitwarden.com -carLicense: IQFF9E -departmentNumber: 7925 -employeeType: Employee -homePhone: +1 206 795-2500 -initials: L. A. -mobile: +1 206 208-6637 -pager: +1 206 324-1241 -roomNumber: 8988 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Akin Algood,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akin Algood -sn: Algood -description: This is Akin Algood's description -facsimileTelephoneNumber: +1 804 849-7625 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 923-4413 -title: Master Administrative President -userPassword: Password1 -uid: AlgoodA -givenName: Akin -mail: AlgoodA@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com -carLicense: MIPBIC -departmentNumber: 2858 -employeeType: Contract -homePhone: +1 804 581-4670 -initials: A. A. -mobile: +1 804 831-8187 -pager: +1 804 790-6638 -roomNumber: 8315 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lenette Rance,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenette Rance -sn: Rance -description: This is Lenette Rance's description -facsimileTelephoneNumber: +1 510 943-5502 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 447-9608 -title: Associate Human Resources Developer -userPassword: Password1 -uid: RanceL -givenName: Lenette -mail: RanceL@efa9f7679ea94344a42e6df58b28f7ca.bitwarden.com -carLicense: V2TECN -departmentNumber: 2404 -employeeType: Contract -homePhone: +1 510 517-9981 -initials: L. R. -mobile: +1 510 103-2741 -pager: +1 510 286-4087 -roomNumber: 9199 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamilah Findlay -sn: Findlay -description: This is Kamilah Findlay's description -facsimileTelephoneNumber: +1 415 366-7537 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 477-1656 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: FindlayK -givenName: Kamilah -mail: FindlayK@eeef0f1cc6484967a0425927e4f0c510.bitwarden.com -carLicense: 00O6FD -departmentNumber: 7822 -employeeType: Employee -homePhone: +1 415 236-5824 -initials: K. F. -mobile: +1 415 324-6387 -pager: +1 415 674-4874 -roomNumber: 8457 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lauretta Cleroux -sn: Cleroux -description: This is Lauretta Cleroux's description -facsimileTelephoneNumber: +1 818 864-6375 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 895-4813 -title: Supreme Product Development Architect -userPassword: Password1 -uid: ClerouxL -givenName: Lauretta -mail: ClerouxL@a9d112e2c8734cf88b105800c98f72cf.bitwarden.com -carLicense: 42NKYU -departmentNumber: 3756 -employeeType: Employee -homePhone: +1 818 279-3326 -initials: L. C. -mobile: +1 818 994-4442 -pager: +1 818 132-1471 -roomNumber: 9973 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Louisa Thorne,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Louisa Thorne -sn: Thorne -description: This is Louisa Thorne's description -facsimileTelephoneNumber: +1 804 740-8741 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 804 720-1111 -title: Associate Janitorial Developer -userPassword: Password1 -uid: ThorneL -givenName: Louisa -mail: ThorneL@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com -carLicense: WNBXQ7 -departmentNumber: 8376 -employeeType: Contract -homePhone: +1 804 982-2010 -initials: L. T. -mobile: +1 804 846-8505 -pager: +1 804 536-9702 -roomNumber: 8865 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AntonPhuoc Marrett -sn: Marrett -description: This is AntonPhuoc Marrett's description -facsimileTelephoneNumber: +1 408 100-8388 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 408 437-1122 -title: Chief Product Testing Grunt -userPassword: Password1 -uid: MarrettA -givenName: AntonPhuoc -mail: MarrettA@b6debf4c211f43749c69c905c5857018.bitwarden.com -carLicense: 5OMEH9 -departmentNumber: 7801 -employeeType: Employee -homePhone: +1 408 871-4776 -initials: A. M. -mobile: +1 408 636-2985 -pager: +1 408 415-3291 -roomNumber: 9752 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ShingChi Beardmore -sn: Beardmore -description: This is ShingChi Beardmore's description -facsimileTelephoneNumber: +1 415 901-7719 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 901-4758 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: BeardmoS -givenName: ShingChi -mail: BeardmoS@daecf76d8c3940f1a79ca6f29fd09de1.bitwarden.com -carLicense: 5DVU8Y -departmentNumber: 5971 -employeeType: Contract -homePhone: +1 415 137-2925 -initials: S. B. -mobile: +1 415 885-7823 -pager: +1 415 778-6990 -roomNumber: 9193 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malcolm Shyu -sn: Shyu -description: This is Malcolm Shyu's description -facsimileTelephoneNumber: +1 206 933-5920 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 206 510-1852 -title: Associate Janitorial Evangelist -userPassword: Password1 -uid: ShyuM -givenName: Malcolm -mail: ShyuM@89819b213b4e4eb69e461ea54d755f38.bitwarden.com -carLicense: IQB3PW -departmentNumber: 7823 -employeeType: Contract -homePhone: +1 206 646-7955 -initials: M. S. -mobile: +1 206 848-2761 -pager: +1 206 687-3871 -roomNumber: 8633 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ichiro Schill,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ichiro Schill -sn: Schill -description: This is Ichiro Schill's description -facsimileTelephoneNumber: +1 206 579-5817 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 168-5877 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: SchillI -givenName: Ichiro -mail: SchillI@bf9ca547b016429e8b1013b51e16d909.bitwarden.com -carLicense: I2P1V1 -departmentNumber: 8060 -employeeType: Normal -homePhone: +1 206 910-5964 -initials: I. S. -mobile: +1 206 430-1116 -pager: +1 206 590-9226 -roomNumber: 8789 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Delila Swinson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delila Swinson -sn: Swinson -description: This is Delila Swinson's description -facsimileTelephoneNumber: +1 510 801-6782 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 356-1796 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: SwinsonD -givenName: Delila -mail: SwinsonD@1622721c590542e0bda86ad6de9cffcc.bitwarden.com -carLicense: NF3KVR -departmentNumber: 3588 -employeeType: Contract -homePhone: +1 510 366-7348 -initials: D. S. -mobile: +1 510 959-6150 -pager: +1 510 919-9177 -roomNumber: 9941 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sriv Paul,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sriv Paul -sn: Paul -description: This is Sriv Paul's description -facsimileTelephoneNumber: +1 818 862-3068 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 126-6961 -title: Supreme Peons President -userPassword: Password1 -uid: PaulS -givenName: Sriv -mail: PaulS@8ac0b632f576407ba66f1733b0c4738e.bitwarden.com -carLicense: WQ0M43 -departmentNumber: 1213 -employeeType: Contract -homePhone: +1 818 682-2111 -initials: S. P. -mobile: +1 818 966-3687 -pager: +1 818 853-3049 -roomNumber: 9061 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Trish Rombeek,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trish Rombeek -sn: Rombeek -description: This is Trish Rombeek's description -facsimileTelephoneNumber: +1 206 427-2879 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 401-2890 -title: Junior Human Resources Admin -userPassword: Password1 -uid: RombeekT -givenName: Trish -mail: RombeekT@11e98c2ee48b45178d13435be794eede.bitwarden.com -carLicense: 9L3GA3 -departmentNumber: 5256 -employeeType: Normal -homePhone: +1 206 265-2638 -initials: T. R. -mobile: +1 206 157-5036 -pager: +1 206 751-7360 -roomNumber: 8237 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tien Aghi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tien Aghi -sn: Aghi -description: This is Tien Aghi's description -facsimileTelephoneNumber: +1 510 185-2028 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 707-2890 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: AghiT -givenName: Tien -mail: AghiT@66f011cdb9ae4854a875f5226891a8d2.bitwarden.com -carLicense: 8O2WLW -departmentNumber: 6495 -employeeType: Contract -homePhone: +1 510 194-8561 -initials: T. A. -mobile: +1 510 374-5472 -pager: +1 510 425-9798 -roomNumber: 8530 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlyn Hewer -sn: Hewer -description: This is Carlyn Hewer's description -facsimileTelephoneNumber: +1 818 870-8684 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 188-5574 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: HewerC -givenName: Carlyn -mail: HewerC@b5658d38a0434cce9ace31ecf66a3835.bitwarden.com -carLicense: MLEYJ9 -departmentNumber: 7005 -employeeType: Employee -homePhone: +1 818 816-2632 -initials: C. H. -mobile: +1 818 731-9439 -pager: +1 818 299-2174 -roomNumber: 9653 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Barlas Discover,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barlas Discover -sn: Discover -description: This is Barlas Discover's description -facsimileTelephoneNumber: +1 206 271-1489 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 592-6047 -title: Junior Peons Pinhead -userPassword: Password1 -uid: DiscoveB -givenName: Barlas -mail: DiscoveB@7342ee713ddb492bb8f187e76f68e083.bitwarden.com -carLicense: WCXFM3 -departmentNumber: 9870 -employeeType: Employee -homePhone: +1 206 875-2992 -initials: B. D. -mobile: +1 206 477-3504 -pager: +1 206 818-3068 -roomNumber: 9661 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sarita Cescon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarita Cescon -sn: Cescon -description: This is Sarita Cescon's description -facsimileTelephoneNumber: +1 415 736-5136 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 415 383-2430 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: CesconS -givenName: Sarita -mail: CesconS@c44c933bac8b4cc8954bde72968abe20.bitwarden.com -carLicense: G9W4AI -departmentNumber: 8599 -employeeType: Normal -homePhone: +1 415 550-2214 -initials: S. C. -mobile: +1 415 450-7367 -pager: +1 415 764-1803 -roomNumber: 8183 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Errol MAINT,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Errol MAINT -sn: MAINT -description: This is Errol MAINT's description -facsimileTelephoneNumber: +1 818 966-8279 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 818 558-1712 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: MAINTE -givenName: Errol -mail: MAINTE@4a381f5d86cf400c9010a8a96d5cde80.bitwarden.com -carLicense: NNBKFK -departmentNumber: 9574 -employeeType: Employee -homePhone: +1 818 777-7257 -initials: E. M. -mobile: +1 818 123-5989 -pager: +1 818 838-3225 -roomNumber: 8263 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vonny Sheu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vonny Sheu -sn: Sheu -description: This is Vonny Sheu's description -facsimileTelephoneNumber: +1 408 560-9567 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 369-3870 -title: Supreme Management Pinhead -userPassword: Password1 -uid: SheuV -givenName: Vonny -mail: SheuV@c711a2b311664a188cabd37fda0821b6.bitwarden.com -carLicense: M03QJ7 -departmentNumber: 2838 -employeeType: Contract -homePhone: +1 408 292-8005 -initials: V. S. -mobile: +1 408 418-1263 -pager: +1 408 446-4239 -roomNumber: 8989 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Guilford Kung,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guilford Kung -sn: Kung -description: This is Guilford Kung's description -facsimileTelephoneNumber: +1 408 416-2828 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 152-8354 -title: Chief Administrative Mascot -userPassword: Password1 -uid: KungG -givenName: Guilford -mail: KungG@a989bc4f0b1a4c80b486110777685af8.bitwarden.com -carLicense: 9EHGGW -departmentNumber: 4261 -employeeType: Contract -homePhone: +1 408 777-5401 -initials: G. K. -mobile: +1 408 724-3856 -pager: +1 408 419-9149 -roomNumber: 9956 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marguerite Markland,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marguerite Markland -sn: Markland -description: This is Marguerite Markland's description -facsimileTelephoneNumber: +1 804 794-3998 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 221-4533 -title: Junior Peons Admin -userPassword: Password1 -uid: MarklanM -givenName: Marguerite -mail: MarklanM@87bd41c90d2e4626aa1a8435072906ff.bitwarden.com -carLicense: PS8GOP -departmentNumber: 2387 -employeeType: Normal -homePhone: +1 804 250-3960 -initials: M. M. -mobile: +1 804 164-1826 -pager: +1 804 106-6919 -roomNumber: 9802 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HoiKin Gebhardt -sn: Gebhardt -description: This is HoiKin Gebhardt's description -facsimileTelephoneNumber: +1 206 633-6547 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 780-5063 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: GebhardH -givenName: HoiKin -mail: GebhardH@92468910821a458ca936a273ecde380f.bitwarden.com -carLicense: QXM32O -departmentNumber: 4598 -employeeType: Employee -homePhone: +1 206 919-8400 -initials: H. G. -mobile: +1 206 492-2229 -pager: +1 206 163-9642 -roomNumber: 9032 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Viviane Lenox,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viviane Lenox -sn: Lenox -description: This is Viviane Lenox's description -facsimileTelephoneNumber: +1 804 826-1933 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 649-4249 -title: Junior Payroll Director -userPassword: Password1 -uid: LenoxV -givenName: Viviane -mail: LenoxV@e6ab02c53a3c4216ba5b75ac65120e12.bitwarden.com -carLicense: IJTEOF -departmentNumber: 1674 -employeeType: Normal -homePhone: +1 804 753-4736 -initials: V. L. -mobile: +1 804 418-5742 -pager: +1 804 385-9180 -roomNumber: 9776 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Walliw Borrelli,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walliw Borrelli -sn: Borrelli -description: This is Walliw Borrelli's description -facsimileTelephoneNumber: +1 415 632-8334 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 452-6709 -title: Supreme Management Czar -userPassword: Password1 -uid: BorrellW -givenName: Walliw -mail: BorrellW@9da8707f84d94fc6a64c7ccfeaa1b78b.bitwarden.com -carLicense: RTISS9 -departmentNumber: 9541 -employeeType: Normal -homePhone: +1 415 920-6093 -initials: W. B. -mobile: +1 415 250-3505 -pager: +1 415 783-9893 -roomNumber: 9900 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhiren Vasil -sn: Vasil -description: This is Dhiren Vasil's description -facsimileTelephoneNumber: +1 804 522-6179 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 615-4856 -title: Junior Product Testing Writer -userPassword: Password1 -uid: VasilD -givenName: Dhiren -mail: VasilD@d31bfc50f85342329bba0a1a96f5ad95.bitwarden.com -carLicense: 85GP7N -departmentNumber: 2216 -employeeType: Employee -homePhone: +1 804 555-4138 -initials: D. V. -mobile: +1 804 637-6117 -pager: +1 804 210-2308 -roomNumber: 8630 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clayton Kingsbury -sn: Kingsbury -description: This is Clayton Kingsbury's description -facsimileTelephoneNumber: +1 804 890-3095 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 952-7774 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: KingsbuC -givenName: Clayton -mail: KingsbuC@5ecfe4c8aaf4487fb624902f7b975e7f.bitwarden.com -carLicense: WPMWFL -departmentNumber: 6049 -employeeType: Contract -homePhone: +1 804 987-3084 -initials: C. K. -mobile: +1 804 372-8510 -pager: +1 804 486-8931 -roomNumber: 8070 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Amalea Laskin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amalea Laskin -sn: Laskin -description: This is Amalea Laskin's description -facsimileTelephoneNumber: +1 213 993-9218 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 180-4316 -title: Junior Janitorial Evangelist -userPassword: Password1 -uid: LaskinA -givenName: Amalea -mail: LaskinA@520ff39da95249c7ade86c3a64b17f3f.bitwarden.com -carLicense: N4TTL7 -departmentNumber: 2548 -employeeType: Contract -homePhone: +1 213 101-7386 -initials: A. L. -mobile: +1 213 986-9344 -pager: +1 213 113-4709 -roomNumber: 8547 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Florida Gebrael,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florida Gebrael -sn: Gebrael -description: This is Florida Gebrael's description -facsimileTelephoneNumber: +1 818 946-8773 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 818 499-6102 -title: Chief Janitorial Technician -userPassword: Password1 -uid: GebraelF -givenName: Florida -mail: GebraelF@5d869bea03ed495786efc921360e43b4.bitwarden.com -carLicense: CRL5HH -departmentNumber: 8644 -employeeType: Employee -homePhone: +1 818 974-1043 -initials: F. G. -mobile: +1 818 617-3461 -pager: +1 818 256-1716 -roomNumber: 8053 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kieron Walkins,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kieron Walkins -sn: Walkins -description: This is Kieron Walkins's description -facsimileTelephoneNumber: +1 206 147-7887 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 395-8400 -title: Chief Product Development Manager -userPassword: Password1 -uid: WalkinsK -givenName: Kieron -mail: WalkinsK@9f9dd66ef9e34a42ab7a2c5eaff108f5.bitwarden.com -carLicense: 690B05 -departmentNumber: 7715 -employeeType: Normal -homePhone: +1 206 969-4285 -initials: K. W. -mobile: +1 206 225-4308 -pager: +1 206 522-7810 -roomNumber: 8533 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Andree Junkin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andree Junkin -sn: Junkin -description: This is Andree Junkin's description -facsimileTelephoneNumber: +1 510 720-1123 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 290-7012 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: JunkinA -givenName: Andree -mail: JunkinA@01b74c7732624f42a6fbbc33b3652f66.bitwarden.com -carLicense: TN5W1D -departmentNumber: 3347 -employeeType: Contract -homePhone: +1 510 450-1987 -initials: A. J. -mobile: +1 510 901-6524 -pager: +1 510 278-9333 -roomNumber: 9448 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Louise Joudrey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Louise Joudrey -sn: Joudrey -description: This is Louise Joudrey's description -facsimileTelephoneNumber: +1 213 837-5418 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 283-5767 -title: Chief Peons Janitor -userPassword: Password1 -uid: JoudreyL -givenName: Louise -mail: JoudreyL@cfc8b9e4a2f14b128363b00bdc84ff74.bitwarden.com -carLicense: UUMQ8E -departmentNumber: 9336 -employeeType: Normal -homePhone: +1 213 812-8085 -initials: L. J. -mobile: +1 213 199-3866 -pager: +1 213 532-9319 -roomNumber: 8848 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gillie Achcar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gillie Achcar -sn: Achcar -description: This is Gillie Achcar's description -facsimileTelephoneNumber: +1 415 863-5229 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 731-5169 -title: Supreme Product Development Punk -userPassword: Password1 -uid: AchcarG -givenName: Gillie -mail: AchcarG@f545ecd56a5b4fe0a9748924d28342ea.bitwarden.com -carLicense: DWP408 -departmentNumber: 5136 -employeeType: Contract -homePhone: +1 415 149-2528 -initials: G. A. -mobile: +1 415 679-2506 -pager: +1 415 111-6899 -roomNumber: 9542 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Divine Ferriss,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Divine Ferriss -sn: Ferriss -description: This is Divine Ferriss's description -facsimileTelephoneNumber: +1 415 744-3324 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 104-8599 -title: Master Administrative Warrior -userPassword: Password1 -uid: FerrissD -givenName: Divine -mail: FerrissD@20649d21fd1148cb824fc7af995ba516.bitwarden.com -carLicense: EI94KR -departmentNumber: 8905 -employeeType: Contract -homePhone: +1 415 463-9671 -initials: D. F. -mobile: +1 415 886-1825 -pager: +1 415 855-9329 -roomNumber: 9199 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Noella Charlebois,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noella Charlebois -sn: Charlebois -description: This is Noella Charlebois's description -facsimileTelephoneNumber: +1 804 536-2756 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 700-2671 -title: Junior Product Testing Grunt -userPassword: Password1 -uid: CharlebN -givenName: Noella -mail: CharlebN@5bff87b1f64343a6ba2b4c6f245cd371.bitwarden.com -carLicense: MQPIKM -departmentNumber: 1385 -employeeType: Contract -homePhone: +1 804 427-4925 -initials: N. C. -mobile: +1 804 102-5400 -pager: +1 804 391-5867 -roomNumber: 8249 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Brenn Screener,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brenn Screener -sn: Screener -description: This is Brenn Screener's description -facsimileTelephoneNumber: +1 415 215-1817 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 103-3305 -title: Supreme Human Resources Pinhead -userPassword: Password1 -uid: ScreeneB -givenName: Brenn -mail: ScreeneB@19a8f5526a554f0cb06e7cba3da0c581.bitwarden.com -carLicense: T7JCQ8 -departmentNumber: 9695 -employeeType: Contract -homePhone: +1 415 279-8016 -initials: B. S. -mobile: +1 415 599-9608 -pager: +1 415 664-2467 -roomNumber: 8780 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agretha Decourcy -sn: Decourcy -description: This is Agretha Decourcy's description -facsimileTelephoneNumber: +1 206 754-6846 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 952-6976 -title: Associate Product Testing President -userPassword: Password1 -uid: DecourcA -givenName: Agretha -mail: DecourcA@726a4125a7d94ad38a1dc92c2882e4bd.bitwarden.com -carLicense: DQR0F5 -departmentNumber: 3242 -employeeType: Contract -homePhone: +1 206 983-7099 -initials: A. D. -mobile: +1 206 569-9808 -pager: +1 206 131-7375 -roomNumber: 9149 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Olivie Bruneau,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olivie Bruneau -sn: Bruneau -description: This is Olivie Bruneau's description -facsimileTelephoneNumber: +1 804 373-3203 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 395-2575 -title: Chief Management Artist -userPassword: Password1 -uid: BruneauO -givenName: Olivie -mail: BruneauO@7feea2d1b4e04d13bf5dd19cb643d02d.bitwarden.com -carLicense: WAE616 -departmentNumber: 9391 -employeeType: Normal -homePhone: +1 804 733-5612 -initials: O. B. -mobile: +1 804 849-7804 -pager: +1 804 306-5168 -roomNumber: 8731 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Annemarie VanMeter,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annemarie VanMeter -sn: VanMeter -description: This is Annemarie VanMeter's description -facsimileTelephoneNumber: +1 818 454-1361 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 818 207-8221 -title: Junior Peons Architect -userPassword: Password1 -uid: VanMeteA -givenName: Annemarie -mail: VanMeteA@c6917cdcf88c4b1cb24fafd7c4f07601.bitwarden.com -carLicense: SVW95F -departmentNumber: 2695 -employeeType: Normal -homePhone: +1 818 937-9337 -initials: A. V. -mobile: +1 818 883-5821 -pager: +1 818 240-2299 -roomNumber: 8735 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seiko Stachowiak -sn: Stachowiak -description: This is Seiko Stachowiak's description -facsimileTelephoneNumber: +1 408 705-5864 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 158-4209 -title: Associate Human Resources Assistant -userPassword: Password1 -uid: StachowS -givenName: Seiko -mail: StachowS@7d7a686ce6534dc2b82bd3604eea7f8b.bitwarden.com -carLicense: 2L742G -departmentNumber: 7753 -employeeType: Contract -homePhone: +1 408 371-9101 -initials: S. S. -mobile: +1 408 440-8692 -pager: +1 408 621-5921 -roomNumber: 8825 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rudy Piper,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rudy Piper -sn: Piper -description: This is Rudy Piper's description -facsimileTelephoneNumber: +1 415 628-9230 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 542-7219 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: PiperR -givenName: Rudy -mail: PiperR@2f5fd5dddfb54bca86a1d0320ba60e06.bitwarden.com -carLicense: FPHBDB -departmentNumber: 9384 -employeeType: Normal -homePhone: +1 415 418-5153 -initials: R. P. -mobile: +1 415 771-2019 -pager: +1 415 949-9204 -roomNumber: 9682 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janessa Dunnion -sn: Dunnion -description: This is Janessa Dunnion's description -facsimileTelephoneNumber: +1 213 882-8889 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 270-7753 -title: Master Product Testing Evangelist -userPassword: Password1 -uid: DunnionJ -givenName: Janessa -mail: DunnionJ@bf22abb443f242d591554d5b4dde5bdb.bitwarden.com -carLicense: VS263A -departmentNumber: 4955 -employeeType: Employee -homePhone: +1 213 197-5371 -initials: J. D. -mobile: +1 213 162-4153 -pager: +1 213 480-5282 -roomNumber: 8495 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Berny Burger,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berny Burger -sn: Burger -description: This is Berny Burger's description -facsimileTelephoneNumber: +1 510 636-3569 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 510 721-3233 -title: Chief Product Development Technician -userPassword: Password1 -uid: BurgerB -givenName: Berny -mail: BurgerB@634978d04fca41d6af5289220bc42474.bitwarden.com -carLicense: 973KC0 -departmentNumber: 1481 -employeeType: Normal -homePhone: +1 510 379-4598 -initials: B. B. -mobile: +1 510 970-3173 -pager: +1 510 988-2291 -roomNumber: 9233 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shirene Moyers,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirene Moyers -sn: Moyers -description: This is Shirene Moyers's description -facsimileTelephoneNumber: +1 206 689-5819 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 380-8822 -title: Junior Product Development Czar -userPassword: Password1 -uid: MoyersS -givenName: Shirene -mail: MoyersS@ed6a92d94db74753ac56089472178365.bitwarden.com -carLicense: SNHPXL -departmentNumber: 3906 -employeeType: Contract -homePhone: +1 206 154-3811 -initials: S. M. -mobile: +1 206 663-5897 -pager: +1 206 425-3653 -roomNumber: 9312 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hideki Willis,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hideki Willis -sn: Willis -description: This is Hideki Willis's description -facsimileTelephoneNumber: +1 510 427-6424 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 815-6246 -title: Supreme Human Resources Pinhead -userPassword: Password1 -uid: WillisH -givenName: Hideki -mail: WillisH@3badeafafe3b4639b92d03c5b1235944.bitwarden.com -carLicense: R474V0 -departmentNumber: 3462 -employeeType: Normal -homePhone: +1 510 168-9529 -initials: H. W. -mobile: +1 510 431-7030 -pager: +1 510 711-8492 -roomNumber: 9294 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Manas Leveille,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manas Leveille -sn: Leveille -description: This is Manas Leveille's description -facsimileTelephoneNumber: +1 213 512-1123 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 761-8280 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: LeveillM -givenName: Manas -mail: LeveillM@4e4132396a384237a0a15d5888e86f73.bitwarden.com -carLicense: GXQYSB -departmentNumber: 4474 -employeeType: Employee -homePhone: +1 213 797-1979 -initials: M. L. -mobile: +1 213 928-7351 -pager: +1 213 325-7080 -roomNumber: 8543 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Collette Quane,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Collette Quane -sn: Quane -description: This is Collette Quane's description -facsimileTelephoneNumber: +1 510 247-4710 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 440-2378 -title: Chief Product Development Technician -userPassword: Password1 -uid: QuaneC -givenName: Collette -mail: QuaneC@7c0df7bf9a9345799ef1f7a5139ff67d.bitwarden.com -carLicense: 940LNY -departmentNumber: 6394 -employeeType: Contract -homePhone: +1 510 804-7062 -initials: C. Q. -mobile: +1 510 252-1104 -pager: +1 510 160-5413 -roomNumber: 9820 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Renu Schallenberg,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renu Schallenberg -sn: Schallenberg -description: This is Renu Schallenberg's description -facsimileTelephoneNumber: +1 510 388-3278 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 806-9121 -title: Associate Administrative Technician -userPassword: Password1 -uid: SchalleR -givenName: Renu -mail: SchalleR@8bced59a99724d5eb08954ec3497f98c.bitwarden.com -carLicense: 7CW91R -departmentNumber: 7554 -employeeType: Contract -homePhone: +1 510 850-2938 -initials: R. S. -mobile: +1 510 378-4798 -pager: +1 510 459-1999 -roomNumber: 9750 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Craig Fleischer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Craig Fleischer -sn: Fleischer -description: This is Craig Fleischer's description -facsimileTelephoneNumber: +1 818 409-8382 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 795-5137 -title: Chief Janitorial Janitor -userPassword: Password1 -uid: FleischC -givenName: Craig -mail: FleischC@b54cd58bbda74ccca6cdaefde6caedc2.bitwarden.com -carLicense: 977GOS -departmentNumber: 2594 -employeeType: Normal -homePhone: +1 818 544-1342 -initials: C. F. -mobile: +1 818 781-3401 -pager: +1 818 312-1787 -roomNumber: 8057 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marla Visentin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marla Visentin -sn: Visentin -description: This is Marla Visentin's description -facsimileTelephoneNumber: +1 818 591-8596 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 818 575-7556 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: VisentiM -givenName: Marla -mail: VisentiM@0d089601fe8d4842aca2c104051c6a49.bitwarden.com -carLicense: I5N2MN -departmentNumber: 7096 -employeeType: Contract -homePhone: +1 818 533-9974 -initials: M. V. -mobile: +1 818 122-5985 -pager: +1 818 240-6378 -roomNumber: 8265 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathryn Maidenhead -sn: Maidenhead -description: This is Kathryn Maidenhead's description -facsimileTelephoneNumber: +1 408 890-3242 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 245-5533 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: MaidenhK -givenName: Kathryn -mail: MaidenhK@541a80b7aa9b481bbf28921cf43e3f5e.bitwarden.com -carLicense: T3KN06 -departmentNumber: 5101 -employeeType: Normal -homePhone: +1 408 929-8915 -initials: K. M. -mobile: +1 408 968-5741 -pager: +1 408 570-1059 -roomNumber: 9998 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlynne Coppedge -sn: Coppedge -description: This is Carlynne Coppedge's description -facsimileTelephoneNumber: +1 206 145-9357 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 952-4883 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: CoppedgC -givenName: Carlynne -mail: CoppedgC@623d62a2d1154923b1c9152d9f2876da.bitwarden.com -carLicense: PRKLVU -departmentNumber: 3091 -employeeType: Normal -homePhone: +1 206 916-7321 -initials: C. C. -mobile: +1 206 736-7571 -pager: +1 206 500-7920 -roomNumber: 9437 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Baris Ralph,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baris Ralph -sn: Ralph -description: This is Baris Ralph's description -facsimileTelephoneNumber: +1 408 649-7096 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 251-8102 -title: Chief Janitorial Consultant -userPassword: Password1 -uid: RalphB -givenName: Baris -mail: RalphB@e0c514219e7e4e7cba9db3753f3ca628.bitwarden.com -carLicense: S7VC31 -departmentNumber: 7953 -employeeType: Contract -homePhone: +1 408 635-6315 -initials: B. R. -mobile: +1 408 568-8653 -pager: +1 408 681-8356 -roomNumber: 8054 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gusta Nugent,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gusta Nugent -sn: Nugent -description: This is Gusta Nugent's description -facsimileTelephoneNumber: +1 415 842-7070 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 500-2448 -title: Master Management Mascot -userPassword: Password1 -uid: NugentG -givenName: Gusta -mail: NugentG@e3adbf44503541a8a477fd522db5f455.bitwarden.com -carLicense: HH6FJK -departmentNumber: 1191 -employeeType: Contract -homePhone: +1 415 952-3127 -initials: G. N. -mobile: +1 415 701-9246 -pager: +1 415 188-3830 -roomNumber: 9075 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Boer Jago,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Boer Jago -sn: Jago -description: This is Boer Jago's description -facsimileTelephoneNumber: +1 206 471-8972 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 764-6578 -title: Junior Product Development Technician -userPassword: Password1 -uid: JagoB -givenName: Boer -mail: JagoB@dac0539de4424fe28175329373de09c0.bitwarden.com -carLicense: 2SJ9F2 -departmentNumber: 3654 -employeeType: Normal -homePhone: +1 206 369-8405 -initials: B. J. -mobile: +1 206 183-1256 -pager: +1 206 192-7128 -roomNumber: 8092 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kieran Wattier,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kieran Wattier -sn: Wattier -description: This is Kieran Wattier's description -facsimileTelephoneNumber: +1 818 968-1481 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 129-4848 -title: Master Administrative President -userPassword: Password1 -uid: WattierK -givenName: Kieran -mail: WattierK@577dbf91ec444b2fa84d20b944b95da9.bitwarden.com -carLicense: CMBAY1 -departmentNumber: 7782 -employeeType: Normal -homePhone: +1 818 902-1473 -initials: K. W. -mobile: +1 818 143-2996 -pager: +1 818 833-1839 -roomNumber: 8486 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mala Shillingford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mala Shillingford -sn: Shillingford -description: This is Mala Shillingford's description -facsimileTelephoneNumber: +1 213 636-4902 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 785-3011 -title: Junior Human Resources Fellow -userPassword: Password1 -uid: ShillinM -givenName: Mala -mail: ShillinM@7080ace676f14d789edd6d153887110b.bitwarden.com -carLicense: 44C3T9 -departmentNumber: 5968 -employeeType: Contract -homePhone: +1 213 646-3315 -initials: M. S. -mobile: +1 213 439-8742 -pager: +1 213 266-2321 -roomNumber: 8598 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Charyl Whitty,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charyl Whitty -sn: Whitty -description: This is Charyl Whitty's description -facsimileTelephoneNumber: +1 408 690-7038 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 639-3056 -title: Junior Management Developer -userPassword: Password1 -uid: WhittyC -givenName: Charyl -mail: WhittyC@e8e08beeff9a4cdcaf143e74a433e1d5.bitwarden.com -carLicense: I8XYR2 -departmentNumber: 7883 -employeeType: Contract -homePhone: +1 408 248-6083 -initials: C. W. -mobile: +1 408 407-7346 -pager: +1 408 720-9239 -roomNumber: 8327 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jawad Waller,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jawad Waller -sn: Waller -description: This is Jawad Waller's description -facsimileTelephoneNumber: +1 804 539-2768 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 804 962-6800 -title: Associate Management Assistant -userPassword: Password1 -uid: WallerJ -givenName: Jawad -mail: WallerJ@2ef868dd48b240d78fd77732e9fe3cda.bitwarden.com -carLicense: YQULXH -departmentNumber: 5204 -employeeType: Contract -homePhone: +1 804 490-9262 -initials: J. W. -mobile: +1 804 725-3334 -pager: +1 804 105-8835 -roomNumber: 8692 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berta DorionMagnan -sn: DorionMagnan -description: This is Berta DorionMagnan's description -facsimileTelephoneNumber: +1 415 385-5588 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 696-6910 -title: Associate Product Development Madonna -userPassword: Password1 -uid: DorionMB -givenName: Berta -mail: DorionMB@796636c316134f4ea242b8ffac574e0e.bitwarden.com -carLicense: B4N9HM -departmentNumber: 8259 -employeeType: Normal -homePhone: +1 415 771-7861 -initials: B. D. -mobile: +1 415 429-4148 -pager: +1 415 730-9931 -roomNumber: 9562 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Glynda Tisdall,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glynda Tisdall -sn: Tisdall -description: This is Glynda Tisdall's description -facsimileTelephoneNumber: +1 415 758-5824 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 694-1455 -title: Chief Payroll Visionary -userPassword: Password1 -uid: TisdallG -givenName: Glynda -mail: TisdallG@5e62af5b40314ecea84813300a46dd77.bitwarden.com -carLicense: 2K6UO4 -departmentNumber: 9705 -employeeType: Contract -homePhone: +1 415 657-8249 -initials: G. T. -mobile: +1 415 478-5858 -pager: +1 415 580-7910 -roomNumber: 8357 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Aditya Runnels,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aditya Runnels -sn: Runnels -description: This is Aditya Runnels's description -facsimileTelephoneNumber: +1 510 642-8999 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 501-2383 -title: Junior Product Testing Writer -userPassword: Password1 -uid: RunnelsA -givenName: Aditya -mail: RunnelsA@ccab46deb94e4a1ab4ac6683d09bb4f7.bitwarden.com -carLicense: OUVDWF -departmentNumber: 2261 -employeeType: Normal -homePhone: +1 510 102-8350 -initials: A. R. -mobile: +1 510 876-8266 -pager: +1 510 216-9879 -roomNumber: 8057 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nannette Wasylenko -sn: Wasylenko -description: This is Nannette Wasylenko's description -facsimileTelephoneNumber: +1 804 234-3715 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 804 301-5959 -title: Master Product Testing Architect -userPassword: Password1 -uid: WasylenN -givenName: Nannette -mail: WasylenN@bbdf84c7202d4fed8ebf04b035151774.bitwarden.com -carLicense: 1YB87U -departmentNumber: 2577 -employeeType: Employee -homePhone: +1 804 334-8439 -initials: N. W. -mobile: +1 804 742-3793 -pager: +1 804 961-5181 -roomNumber: 8389 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shuji Lisch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shuji Lisch -sn: Lisch -description: This is Shuji Lisch's description -facsimileTelephoneNumber: +1 415 299-6030 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 990-3581 -title: Master Management Madonna -userPassword: Password1 -uid: LischS -givenName: Shuji -mail: LischS@6acb8cb6e83344b2baf0ea01b349a09b.bitwarden.com -carLicense: T4PMMV -departmentNumber: 2647 -employeeType: Normal -homePhone: +1 415 100-8848 -initials: S. L. -mobile: +1 415 356-7961 -pager: +1 415 688-4628 -roomNumber: 9255 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Corette Biggers,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corette Biggers -sn: Biggers -description: This is Corette Biggers's description -facsimileTelephoneNumber: +1 510 278-7747 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 239-2292 -title: Chief Product Development Punk -userPassword: Password1 -uid: BiggersC -givenName: Corette -mail: BiggersC@536233742e094d32a93b46e75cbb8e9e.bitwarden.com -carLicense: B6F7GL -departmentNumber: 2635 -employeeType: Normal -homePhone: +1 510 734-6166 -initials: C. B. -mobile: +1 510 125-8848 -pager: +1 510 650-8233 -roomNumber: 9288 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sarah Marceau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarah Marceau -sn: Marceau -description: This is Sarah Marceau's description -facsimileTelephoneNumber: +1 206 329-6966 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 948-8039 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: MarceauS -givenName: Sarah -mail: MarceauS@69b4d60a542046658c2cab83a8afa560.bitwarden.com -carLicense: 6IY2B9 -departmentNumber: 2106 -employeeType: Contract -homePhone: +1 206 637-7293 -initials: S. M. -mobile: +1 206 415-6777 -pager: +1 206 389-2648 -roomNumber: 8454 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Huy Reporting,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huy Reporting -sn: Reporting -description: This is Huy Reporting's description -facsimileTelephoneNumber: +1 510 585-6628 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 261-5382 -title: Junior Payroll Dictator -userPassword: Password1 -uid: ReportiH -givenName: Huy -mail: ReportiH@1076925fed8248679e5db581a4d397c4.bitwarden.com -carLicense: ROFEKS -departmentNumber: 6389 -employeeType: Employee -homePhone: +1 510 179-2716 -initials: H. R. -mobile: +1 510 215-2148 -pager: +1 510 556-1069 -roomNumber: 9575 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Charissa Douglas,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charissa Douglas -sn: Douglas -description: This is Charissa Douglas's description -facsimileTelephoneNumber: +1 408 506-8204 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 921-9330 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: DouglasC -givenName: Charissa -mail: DouglasC@c5507fb1b7424c01bac1a4fbf30f64fa.bitwarden.com -carLicense: OJDNG5 -departmentNumber: 2826 -employeeType: Normal -homePhone: +1 408 226-1675 -initials: C. D. -mobile: +1 408 685-8453 -pager: +1 408 301-1092 -roomNumber: 9293 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephenie Maynes -sn: Maynes -description: This is Stephenie Maynes's description -facsimileTelephoneNumber: +1 206 536-6030 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 503-8865 -title: Master Janitorial Consultant -userPassword: Password1 -uid: MaynesS -givenName: Stephenie -mail: MaynesS@dc25e6259a754e12b71b6ceb921f6e43.bitwarden.com -carLicense: CKI352 -departmentNumber: 1064 -employeeType: Employee -homePhone: +1 206 892-6312 -initials: S. M. -mobile: +1 206 630-5689 -pager: +1 206 805-8967 -roomNumber: 9125 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cortney Okamoto,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cortney Okamoto -sn: Okamoto -description: This is Cortney Okamoto's description -facsimileTelephoneNumber: +1 408 740-2499 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 520-1517 -title: Master Product Development Fellow -userPassword: Password1 -uid: OkamotoC -givenName: Cortney -mail: OkamotoC@649a503dbd264f3ba9e14eb9795c58eb.bitwarden.com -carLicense: IJ6HLK -departmentNumber: 2293 -employeeType: Employee -homePhone: +1 408 964-6271 -initials: C. O. -mobile: +1 408 122-4138 -pager: +1 408 676-4044 -roomNumber: 8281 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rene Fletcher,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rene Fletcher -sn: Fletcher -description: This is Rene Fletcher's description -facsimileTelephoneNumber: +1 213 600-2009 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 584-5486 -title: Supreme Payroll Czar -userPassword: Password1 -uid: FletcheR -givenName: Rene -mail: FletcheR@eae289de16194f21b28831dbf07663de.bitwarden.com -carLicense: FCVA19 -departmentNumber: 6870 -employeeType: Employee -homePhone: +1 213 648-8922 -initials: R. F. -mobile: +1 213 767-4812 -pager: +1 213 863-9205 -roomNumber: 9389 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Deryck Nassr,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deryck Nassr -sn: Nassr -description: This is Deryck Nassr's description -facsimileTelephoneNumber: +1 510 398-9821 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 745-9821 -title: Associate Janitorial Assistant -userPassword: Password1 -uid: NassrD -givenName: Deryck -mail: NassrD@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com -carLicense: 8JBTB9 -departmentNumber: 5003 -employeeType: Employee -homePhone: +1 510 207-3738 -initials: D. N. -mobile: +1 510 660-1127 -pager: +1 510 833-5287 -roomNumber: 9518 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merline Dmsrtime -sn: Dmsrtime -description: This is Merline Dmsrtime's description -facsimileTelephoneNumber: +1 213 132-9576 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 615-6676 -title: Junior Payroll President -userPassword: Password1 -uid: DmsrtimM -givenName: Merline -mail: DmsrtimM@7f1848e959b9431aae2d7ba89294b649.bitwarden.com -carLicense: QS1ACD -departmentNumber: 4938 -employeeType: Contract -homePhone: +1 213 418-6911 -initials: M. D. -mobile: +1 213 768-5021 -pager: +1 213 358-7489 -roomNumber: 9794 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruthie Kingshott -sn: Kingshott -description: This is Ruthie Kingshott's description -facsimileTelephoneNumber: +1 415 615-4085 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 830-6018 -title: Master Human Resources Mascot -userPassword: Password1 -uid: KingshoR -givenName: Ruthie -mail: KingshoR@e084ec394e994677a50d409a6357c42a.bitwarden.com -carLicense: E790QK -departmentNumber: 7896 -employeeType: Contract -homePhone: +1 415 187-2647 -initials: R. K. -mobile: +1 415 405-8955 -pager: +1 415 963-1712 -roomNumber: 9873 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Coraline Kato,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coraline Kato -sn: Kato -description: This is Coraline Kato's description -facsimileTelephoneNumber: +1 408 638-1440 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 162-6084 -title: Chief Peons Fellow -userPassword: Password1 -uid: KatoC -givenName: Coraline -mail: KatoC@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com -carLicense: HWEFQF -departmentNumber: 2959 -employeeType: Normal -homePhone: +1 408 451-2707 -initials: C. K. -mobile: +1 408 768-8662 -pager: +1 408 356-5857 -roomNumber: 9555 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Becca Hallenbeck,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Becca Hallenbeck -sn: Hallenbeck -description: This is Becca Hallenbeck's description -facsimileTelephoneNumber: +1 415 823-1984 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 191-9987 -title: Junior Peons Visionary -userPassword: Password1 -uid: HallenbB -givenName: Becca -mail: HallenbB@0a414dfa34d6439f8f6befcf71900bba.bitwarden.com -carLicense: L3XWRY -departmentNumber: 7000 -employeeType: Employee -homePhone: +1 415 965-1336 -initials: B. H. -mobile: +1 415 809-6335 -pager: +1 415 736-3831 -roomNumber: 9581 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadye Urbanowich -sn: Urbanowich -description: This is Sadye Urbanowich's description -facsimileTelephoneNumber: +1 804 806-5332 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 605-4635 -title: Master Product Development Mascot -userPassword: Password1 -uid: UrbanowS -givenName: Sadye -mail: UrbanowS@0864b9b0dd32492b822981ac2a2f6875.bitwarden.com -carLicense: 8A11LU -departmentNumber: 6431 -employeeType: Employee -homePhone: +1 804 608-9418 -initials: S. U. -mobile: +1 804 646-1529 -pager: +1 804 974-8256 -roomNumber: 8692 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carin Briggs,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carin Briggs -sn: Briggs -description: This is Carin Briggs's description -facsimileTelephoneNumber: +1 510 800-4206 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 307-4901 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: BriggsC -givenName: Carin -mail: BriggsC@60ffb350fa6740079313430abf25721b.bitwarden.com -carLicense: 2GF0HW -departmentNumber: 1157 -employeeType: Normal -homePhone: +1 510 436-7668 -initials: C. B. -mobile: +1 510 686-9069 -pager: +1 510 529-4901 -roomNumber: 9571 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Wai Pellizzeri,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wai Pellizzeri -sn: Pellizzeri -description: This is Wai Pellizzeri's description -facsimileTelephoneNumber: +1 510 523-5933 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 325-6931 -title: Supreme Peons Architect -userPassword: Password1 -uid: PellizzW -givenName: Wai -mail: PellizzW@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com -carLicense: OKFJVU -departmentNumber: 3448 -employeeType: Contract -homePhone: +1 510 549-4909 -initials: W. P. -mobile: +1 510 898-9294 -pager: +1 510 458-6754 -roomNumber: 8035 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Joachim Nesrallah,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joachim Nesrallah -sn: Nesrallah -description: This is Joachim Nesrallah's description -facsimileTelephoneNumber: +1 804 792-8476 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 565-7301 -title: Junior Peons Dictator -userPassword: Password1 -uid: NesrallJ -givenName: Joachim -mail: NesrallJ@6211d58c45444a489ca2a34f354f2ae9.bitwarden.com -carLicense: BGU3T0 -departmentNumber: 4807 -employeeType: Employee -homePhone: +1 804 347-1512 -initials: J. N. -mobile: +1 804 907-4154 -pager: +1 804 675-2909 -roomNumber: 9022 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glenn Nordstrom -sn: Nordstrom -description: This is Glenn Nordstrom's description -facsimileTelephoneNumber: +1 213 766-8540 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 251-2432 -title: Junior Janitorial Technician -userPassword: Password1 -uid: NordstrG -givenName: Glenn -mail: NordstrG@3ee35d919ef5410b9a742e5fe9487a11.bitwarden.com -carLicense: OEVH29 -departmentNumber: 2789 -employeeType: Employee -homePhone: +1 213 253-5735 -initials: G. N. -mobile: +1 213 751-3709 -pager: +1 213 606-3753 -roomNumber: 9936 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Loesje Smothers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loesje Smothers -sn: Smothers -description: This is Loesje Smothers's description -facsimileTelephoneNumber: +1 510 439-2667 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 698-9478 -title: Junior Management Engineer -userPassword: Password1 -uid: SmotherL -givenName: Loesje -mail: SmotherL@e2ac30b0774145abbea79773529c940e.bitwarden.com -carLicense: A51XXF -departmentNumber: 8058 -employeeType: Normal -homePhone: +1 510 973-9243 -initials: L. S. -mobile: +1 510 715-1776 -pager: +1 510 165-8528 -roomNumber: 8652 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chester Crawshaw -sn: Crawshaw -description: This is Chester Crawshaw's description -facsimileTelephoneNumber: +1 206 765-2159 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 636-9877 -title: Junior Human Resources Consultant -userPassword: Password1 -uid: CrawshaC -givenName: Chester -mail: CrawshaC@638ddd5f5c874c1fbe017c3aa0d978c8.bitwarden.com -carLicense: 4B9UWC -departmentNumber: 8941 -employeeType: Normal -homePhone: +1 206 892-2903 -initials: C. C. -mobile: +1 206 163-2868 -pager: +1 206 316-2667 -roomNumber: 9801 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dani Maksoud,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dani Maksoud -sn: Maksoud -description: This is Dani Maksoud's description -facsimileTelephoneNumber: +1 804 607-6361 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 407-5214 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: MaksoudD -givenName: Dani -mail: MaksoudD@a549bdf5420c411a867c314ba75b6975.bitwarden.com -carLicense: DPYOPP -departmentNumber: 5323 -employeeType: Contract -homePhone: +1 804 541-4464 -initials: D. M. -mobile: +1 804 939-9068 -pager: +1 804 524-8960 -roomNumber: 9725 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kieran Forghani,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kieran Forghani -sn: Forghani -description: This is Kieran Forghani's description -facsimileTelephoneNumber: +1 804 657-8160 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 519-2924 -title: Supreme Management Developer -userPassword: Password1 -uid: ForghanK -givenName: Kieran -mail: ForghanK@ea750648663b4e85ae486d2e32c216dd.bitwarden.com -carLicense: 941I01 -departmentNumber: 6699 -employeeType: Normal -homePhone: +1 804 338-5501 -initials: K. F. -mobile: +1 804 557-7223 -pager: +1 804 706-3620 -roomNumber: 8930 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lusa Korpela,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lusa Korpela -sn: Korpela -description: This is Lusa Korpela's description -facsimileTelephoneNumber: +1 206 124-5832 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 206 639-6147 -title: Junior Payroll Artist -userPassword: Password1 -uid: KorpelaL -givenName: Lusa -mail: KorpelaL@3105b5dc96c343758f704f474866d911.bitwarden.com -carLicense: A8O368 -departmentNumber: 2306 -employeeType: Employee -homePhone: +1 206 729-2115 -initials: L. K. -mobile: +1 206 593-3294 -pager: +1 206 743-3624 -roomNumber: 8732 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherianne Armstrong -sn: Armstrong -description: This is Cherianne Armstrong's description -facsimileTelephoneNumber: +1 510 495-6215 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 285-5602 -title: Master Janitorial Admin -userPassword: Password1 -uid: ArmstroC -givenName: Cherianne -mail: ArmstroC@0932a94d4e324368929167f71e7881a8.bitwarden.com -carLicense: H37MPJ -departmentNumber: 4395 -employeeType: Contract -homePhone: +1 510 541-9060 -initials: C. A. -mobile: +1 510 286-4699 -pager: +1 510 245-1758 -roomNumber: 9471 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Data Roussin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Data Roussin -sn: Roussin -description: This is Data Roussin's description -facsimileTelephoneNumber: +1 415 526-4405 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 140-8328 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: RoussinD -givenName: Data -mail: RoussinD@57c8e316985b48038aad56a3f94817a1.bitwarden.com -carLicense: DPQIKF -departmentNumber: 5636 -employeeType: Normal -homePhone: +1 415 459-2085 -initials: D. R. -mobile: +1 415 229-3019 -pager: +1 415 933-5894 -roomNumber: 9776 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Stone Scholes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stone Scholes -sn: Scholes -description: This is Stone Scholes's description -facsimileTelephoneNumber: +1 213 977-7124 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 397-8655 -title: Associate Peons Engineer -userPassword: Password1 -uid: ScholesS -givenName: Stone -mail: ScholesS@58bd5c0a9abd418c929331ed9ab0ec61.bitwarden.com -carLicense: KY31XT -departmentNumber: 7685 -employeeType: Contract -homePhone: +1 213 653-1746 -initials: S. S. -mobile: +1 213 800-9126 -pager: +1 213 824-2787 -roomNumber: 8247 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Painterson Popowicz -sn: Popowicz -description: This is Painterson Popowicz's description -facsimileTelephoneNumber: +1 408 923-6757 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 304-7482 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: PopowicP -givenName: Painterson -mail: PopowicP@1325c87839d04240ac1a16f9b96e2aee.bitwarden.com -carLicense: 06BIXR -departmentNumber: 6059 -employeeType: Contract -homePhone: +1 408 276-3609 -initials: P. P. -mobile: +1 408 281-9157 -pager: +1 408 800-4688 -roomNumber: 9910 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subra Mezzoiuso -sn: Mezzoiuso -description: This is Subra Mezzoiuso's description -facsimileTelephoneNumber: +1 804 311-2455 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 496-7435 -title: Chief Human Resources President -userPassword: Password1 -uid: MezzoiuS -givenName: Subra -mail: MezzoiuS@6993d016013446bf8c45519f739f4a8a.bitwarden.com -carLicense: 84S7KH -departmentNumber: 8228 -employeeType: Contract -homePhone: +1 804 420-1539 -initials: S. M. -mobile: +1 804 120-1586 -pager: +1 804 218-4850 -roomNumber: 9107 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Agathe Huddleston,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agathe Huddleston -sn: Huddleston -description: This is Agathe Huddleston's description -facsimileTelephoneNumber: +1 804 572-1364 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 615-9897 -title: Supreme Administrative Figurehead -userPassword: Password1 -uid: HuddlesA -givenName: Agathe -mail: HuddlesA@9c640b9ada7e43fd815986e9b791454d.bitwarden.com -carLicense: 061JRN -departmentNumber: 8439 -employeeType: Normal -homePhone: +1 804 469-7871 -initials: A. H. -mobile: +1 804 655-5070 -pager: +1 804 803-8859 -roomNumber: 8681 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vmchange Vacher,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vmchange Vacher -sn: Vacher -description: This is Vmchange Vacher's description -facsimileTelephoneNumber: +1 818 554-5886 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 904-9397 -title: Master Payroll Grunt -userPassword: Password1 -uid: VacherV -givenName: Vmchange -mail: VacherV@dbb8e15fda2d4a1582516a0de74d9827.bitwarden.com -carLicense: 3KAMYK -departmentNumber: 1663 -employeeType: Contract -homePhone: +1 818 649-3752 -initials: V. V. -mobile: +1 818 165-2908 -pager: +1 818 865-8738 -roomNumber: 8438 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aleta Buntrock,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aleta Buntrock -sn: Buntrock -description: This is Aleta Buntrock's description -facsimileTelephoneNumber: +1 408 197-2044 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 444-3238 -title: Master Product Development Vice President -userPassword: Password1 -uid: BuntrocA -givenName: Aleta -mail: BuntrocA@1e8d211c25e74db48892bf1ab2e65581.bitwarden.com -carLicense: P6E70V -departmentNumber: 4595 -employeeType: Normal -homePhone: +1 408 713-2487 -initials: A. B. -mobile: +1 408 693-9161 -pager: +1 408 523-2117 -roomNumber: 8982 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Darlleen Murris,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darlleen Murris -sn: Murris -description: This is Darlleen Murris's description -facsimileTelephoneNumber: +1 408 740-7115 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 641-1710 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: MurrisD -givenName: Darlleen -mail: MurrisD@40d320f39b3b4ec6b2aa4be872b12e34.bitwarden.com -carLicense: WDJR77 -departmentNumber: 8194 -employeeType: Employee -homePhone: +1 408 478-3739 -initials: D. M. -mobile: +1 408 377-8625 -pager: +1 408 738-9887 -roomNumber: 8196 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carrissa Smulders -sn: Smulders -description: This is Carrissa Smulders's description -facsimileTelephoneNumber: +1 415 663-7394 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 328-6664 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: SmulderC -givenName: Carrissa -mail: SmulderC@eb7a1c92edb446a9823944e09f0b6b2e.bitwarden.com -carLicense: 0HIY9L -departmentNumber: 2565 -employeeType: Contract -homePhone: +1 415 592-8463 -initials: C. S. -mobile: +1 415 868-5514 -pager: +1 415 922-4472 -roomNumber: 9745 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mysore Kenlan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mysore Kenlan -sn: Kenlan -description: This is Mysore Kenlan's description -facsimileTelephoneNumber: +1 408 689-4087 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 790-7737 -title: Master Product Development Architect -userPassword: Password1 -uid: KenlanM -givenName: Mysore -mail: KenlanM@62762c759020411b89296a80fdd53afd.bitwarden.com -carLicense: 4RE2XL -departmentNumber: 3254 -employeeType: Employee -homePhone: +1 408 696-3659 -initials: M. K. -mobile: +1 408 104-5342 -pager: +1 408 285-9295 -roomNumber: 8772 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roscoe Dhuga -sn: Dhuga -description: This is Roscoe Dhuga's description -facsimileTelephoneNumber: +1 415 436-1406 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 787-6518 -title: Associate Administrative Artist -userPassword: Password1 -uid: DhugaR -givenName: Roscoe -mail: DhugaR@59778d9e834c452586d9e26b970164f5.bitwarden.com -carLicense: 8N3QVY -departmentNumber: 1778 -employeeType: Contract -homePhone: +1 415 323-3657 -initials: R. D. -mobile: +1 415 486-3442 -pager: +1 415 860-3481 -roomNumber: 9904 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roxanne Janning,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxanne Janning -sn: Janning -description: This is Roxanne Janning's description -facsimileTelephoneNumber: +1 818 481-8702 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 818 823-2456 -title: Associate Janitorial Artist -userPassword: Password1 -uid: JanningR -givenName: Roxanne -mail: JanningR@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com -carLicense: IGAV3O -departmentNumber: 1673 -employeeType: Contract -homePhone: +1 818 281-9046 -initials: R. J. -mobile: +1 818 969-3877 -pager: +1 818 785-5657 -roomNumber: 9600 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alexander Enns,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alexander Enns -sn: Enns -description: This is Alexander Enns's description -facsimileTelephoneNumber: +1 415 678-6543 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 325-5383 -title: Master Peons Evangelist -userPassword: Password1 -uid: EnnsA -givenName: Alexander -mail: EnnsA@3d692d684ca742119b69b3914fc21732.bitwarden.com -carLicense: 85X01T -departmentNumber: 2873 -employeeType: Normal -homePhone: +1 415 944-7127 -initials: A. E. -mobile: +1 415 158-2877 -pager: +1 415 455-2993 -roomNumber: 8019 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Koen Keith,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koen Keith -sn: Keith -description: This is Koen Keith's description -facsimileTelephoneNumber: +1 510 433-2310 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 563-4989 -title: Chief Janitorial Czar -userPassword: Password1 -uid: KeithK -givenName: Koen -mail: KeithK@db7691c9dca24eb7875f7a9259652b96.bitwarden.com -carLicense: QSMISD -departmentNumber: 5571 -employeeType: Normal -homePhone: +1 510 655-5284 -initials: K. K. -mobile: +1 510 493-5856 -pager: +1 510 390-1925 -roomNumber: 8845 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mohan Parulekar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mohan Parulekar -sn: Parulekar -description: This is Mohan Parulekar's description -facsimileTelephoneNumber: +1 804 246-2566 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 894-8803 -title: Supreme Peons Madonna -userPassword: Password1 -uid: ParulekM -givenName: Mohan -mail: ParulekM@de898a326d21476c9afc54d7a723d91b.bitwarden.com -carLicense: 6NIINP -departmentNumber: 9196 -employeeType: Contract -homePhone: +1 804 405-8816 -initials: M. P. -mobile: +1 804 397-1785 -pager: +1 804 686-1275 -roomNumber: 9535 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ronna Esparza,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronna Esparza -sn: Esparza -description: This is Ronna Esparza's description -facsimileTelephoneNumber: +1 213 859-9577 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 856-2990 -title: Chief Administrative Punk -userPassword: Password1 -uid: EsparzaR -givenName: Ronna -mail: EsparzaR@6f40fd1f57664424aae86977d815ec60.bitwarden.com -carLicense: EXNKBG -departmentNumber: 1181 -employeeType: Employee -homePhone: +1 213 932-7545 -initials: R. E. -mobile: +1 213 915-2649 -pager: +1 213 538-3267 -roomNumber: 9950 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hot Terrel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hot Terrel -sn: Terrel -description: This is Hot Terrel's description -facsimileTelephoneNumber: +1 415 270-7780 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 369-9144 -title: Master Product Development Sales Rep -userPassword: Password1 -uid: TerrelH -givenName: Hot -mail: TerrelH@d32e39b1240444d599938e20b2b9a2af.bitwarden.com -carLicense: TX7Y0O -departmentNumber: 4811 -employeeType: Normal -homePhone: +1 415 734-2645 -initials: H. T. -mobile: +1 415 655-5547 -pager: +1 415 654-1928 -roomNumber: 8271 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Aparna Loiseau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aparna Loiseau -sn: Loiseau -description: This is Aparna Loiseau's description -facsimileTelephoneNumber: +1 818 210-2020 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 471-3488 -title: Associate Peons Mascot -userPassword: Password1 -uid: LoiseauA -givenName: Aparna -mail: LoiseauA@3f22733d317d4f91854fb0b865164d32.bitwarden.com -carLicense: TJWEBD -departmentNumber: 5397 -employeeType: Normal -homePhone: +1 818 452-9469 -initials: A. L. -mobile: +1 818 270-5466 -pager: +1 818 798-5608 -roomNumber: 9912 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lana Fasken,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lana Fasken -sn: Fasken -description: This is Lana Fasken's description -facsimileTelephoneNumber: +1 206 613-8789 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 738-3801 -title: Master Janitorial Fellow -userPassword: Password1 -uid: FaskenL -givenName: Lana -mail: FaskenL@3177f113b2494bf084a4349d34933284.bitwarden.com -carLicense: P57GAJ -departmentNumber: 8766 -employeeType: Normal -homePhone: +1 206 110-7160 -initials: L. F. -mobile: +1 206 249-1466 -pager: +1 206 976-9173 -roomNumber: 9440 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fariborz Neefs,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fariborz Neefs -sn: Neefs -description: This is Fariborz Neefs's description -facsimileTelephoneNumber: +1 408 689-4012 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 783-7518 -title: Master Peons Visionary -userPassword: Password1 -uid: NeefsF -givenName: Fariborz -mail: NeefsF@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com -carLicense: QXNMIP -departmentNumber: 8401 -employeeType: Employee -homePhone: +1 408 305-6009 -initials: F. N. -mobile: +1 408 632-3636 -pager: +1 408 437-6399 -roomNumber: 8502 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Netty Eustace,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Netty Eustace -sn: Eustace -description: This is Netty Eustace's description -facsimileTelephoneNumber: +1 804 138-2785 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 128-9029 -title: Supreme Peons Admin -userPassword: Password1 -uid: EustaceN -givenName: Netty -mail: EustaceN@af1c936dc969478a898b38c058f5ed5e.bitwarden.com -carLicense: XDKATL -departmentNumber: 6054 -employeeType: Employee -homePhone: +1 804 585-4955 -initials: N. E. -mobile: +1 804 255-5283 -pager: +1 804 927-4038 -roomNumber: 8247 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rio Philion,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rio Philion -sn: Philion -description: This is Rio Philion's description -facsimileTelephoneNumber: +1 206 373-9806 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 773-3595 -title: Supreme Product Development Writer -userPassword: Password1 -uid: PhilionR -givenName: Rio -mail: PhilionR@60d49768d4644227a17f0fda0b9acae9.bitwarden.com -carLicense: HW9FM8 -departmentNumber: 8360 -employeeType: Contract -homePhone: +1 206 908-5030 -initials: R. P. -mobile: +1 206 704-1978 -pager: +1 206 505-3749 -roomNumber: 9008 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beverlie Kutten,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beverlie Kutten -sn: Kutten -description: This is Beverlie Kutten's description -facsimileTelephoneNumber: +1 415 190-1967 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 975-8750 -title: Junior Administrative Madonna -userPassword: Password1 -uid: KuttenB -givenName: Beverlie -mail: KuttenB@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com -carLicense: ARVG8R -departmentNumber: 6288 -employeeType: Contract -homePhone: +1 415 106-5183 -initials: B. K. -mobile: +1 415 723-8936 -pager: +1 415 762-5959 -roomNumber: 9659 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tammi Hodgkin -sn: Hodgkin -description: This is Tammi Hodgkin's description -facsimileTelephoneNumber: +1 818 621-5490 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 240-6794 -title: Chief Human Resources Developer -userPassword: Password1 -uid: HodgkinT -givenName: Tammi -mail: HodgkinT@c58d896de82b440ca30e70c88676b48e.bitwarden.com -carLicense: 0FS5SP -departmentNumber: 2308 -employeeType: Contract -homePhone: +1 818 935-3793 -initials: T. H. -mobile: +1 818 620-7765 -pager: +1 818 171-9202 -roomNumber: 8169 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=William Ridgewell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: William Ridgewell -sn: Ridgewell -description: This is William Ridgewell's description -facsimileTelephoneNumber: +1 510 276-1486 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 510 361-9190 -title: Chief Product Testing Admin -userPassword: Password1 -uid: RidgeweW -givenName: William -mail: RidgeweW@6440b02815824326a0c464b5e91deecc.bitwarden.com -carLicense: U40S2Y -departmentNumber: 6231 -employeeType: Contract -homePhone: +1 510 520-9000 -initials: W. R. -mobile: +1 510 361-7224 -pager: +1 510 599-2696 -roomNumber: 8683 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nonah McGlynn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nonah McGlynn -sn: McGlynn -description: This is Nonah McGlynn's description -facsimileTelephoneNumber: +1 804 328-6029 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 331-6886 -title: Associate Administrative President -userPassword: Password1 -uid: McGlynnN -givenName: Nonah -mail: McGlynnN@c320d110c7a241ddbb5147ef5aebd508.bitwarden.com -carLicense: JXX21B -departmentNumber: 3100 -employeeType: Normal -homePhone: +1 804 708-6631 -initials: N. M. -mobile: +1 804 432-4644 -pager: +1 804 385-3004 -roomNumber: 9261 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Grace Hickerson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grace Hickerson -sn: Hickerson -description: This is Grace Hickerson's description -facsimileTelephoneNumber: +1 510 960-3379 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 559-4979 -title: Master Product Development Writer -userPassword: Password1 -uid: HickersG -givenName: Grace -mail: HickersG@396057d601294ebc9d5c0c43a2c7528b.bitwarden.com -carLicense: TYEI17 -departmentNumber: 3128 -employeeType: Contract -homePhone: +1 510 649-7676 -initials: G. H. -mobile: +1 510 147-5696 -pager: +1 510 277-2161 -roomNumber: 9332 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donn Thirugnanam -sn: Thirugnanam -description: This is Donn Thirugnanam's description -facsimileTelephoneNumber: +1 510 374-4855 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 510 336-7782 -title: Associate Product Development Sales Rep -userPassword: Password1 -uid: ThirugnD -givenName: Donn -mail: ThirugnD@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com -carLicense: E0UWSL -departmentNumber: 3133 -employeeType: Contract -homePhone: +1 510 358-3427 -initials: D. T. -mobile: +1 510 456-1582 -pager: +1 510 333-2267 -roomNumber: 9648 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Liping Levi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liping Levi -sn: Levi -description: This is Liping Levi's description -facsimileTelephoneNumber: +1 206 795-4819 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 813-3820 -title: Master Administrative Visionary -userPassword: Password1 -uid: LeviL -givenName: Liping -mail: LeviL@64d7ecf288c04c558094c63f6b45f377.bitwarden.com -carLicense: A7P6UP -departmentNumber: 5006 -employeeType: Employee -homePhone: +1 206 444-9458 -initials: L. L. -mobile: +1 206 571-8917 -pager: +1 206 314-3075 -roomNumber: 8530 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mauro Meubus,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mauro Meubus -sn: Meubus -description: This is Mauro Meubus's description -facsimileTelephoneNumber: +1 415 635-8479 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 237-2452 -title: Master Administrative Warrior -userPassword: Password1 -uid: MeubusM -givenName: Mauro -mail: MeubusM@04ab0dd813964f258093cf5c76d47099.bitwarden.com -carLicense: 6PN7QH -departmentNumber: 4840 -employeeType: Contract -homePhone: +1 415 123-6054 -initials: M. M. -mobile: +1 415 904-1222 -pager: +1 415 469-7165 -roomNumber: 9093 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Iteke Abbatantuono -sn: Abbatantuono -description: This is Iteke Abbatantuono's description -facsimileTelephoneNumber: +1 510 135-5507 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 553-4210 -title: Associate Administrative Technician -userPassword: Password1 -uid: AbbatanI -givenName: Iteke -mail: AbbatanI@d1dc373d110a4e68987e8e8fc1e917b4.bitwarden.com -carLicense: 3QLPEL -departmentNumber: 8628 -employeeType: Contract -homePhone: +1 510 344-6397 -initials: I. A. -mobile: +1 510 278-5554 -pager: +1 510 743-7138 -roomNumber: 8157 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Minny Southon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minny Southon -sn: Southon -description: This is Minny Southon's description -facsimileTelephoneNumber: +1 818 458-4613 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 818 152-1861 -title: Master Product Testing Madonna -userPassword: Password1 -uid: SouthonM -givenName: Minny -mail: SouthonM@a209c275d5e54dc2a7f8bab915f03396.bitwarden.com -carLicense: L5ALM6 -departmentNumber: 2340 -employeeType: Employee -homePhone: +1 818 831-3439 -initials: M. S. -mobile: +1 818 281-8400 -pager: +1 818 416-2240 -roomNumber: 9092 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Halina Zenar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Halina Zenar -sn: Zenar -description: This is Halina Zenar's description -facsimileTelephoneNumber: +1 213 404-9446 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 182-7910 -title: Chief Management Manager -userPassword: Password1 -uid: ZenarH -givenName: Halina -mail: ZenarH@3d26bfa9cedd4f12a12c0adbf8a4e691.bitwarden.com -carLicense: 5DHTF6 -departmentNumber: 3005 -employeeType: Employee -homePhone: +1 213 263-7742 -initials: H. Z. -mobile: +1 213 866-8234 -pager: +1 213 887-8224 -roomNumber: 9137 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gwenny Bertram,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwenny Bertram -sn: Bertram -description: This is Gwenny Bertram's description -facsimileTelephoneNumber: +1 510 833-3317 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 510 149-4547 -title: Master Payroll Architect -userPassword: Password1 -uid: BertramG -givenName: Gwenny -mail: BertramG@67a50420f0564b4b9d502195a9eb7324.bitwarden.com -carLicense: BLG9FB -departmentNumber: 7838 -employeeType: Contract -homePhone: +1 510 462-6823 -initials: G. B. -mobile: +1 510 825-9350 -pager: +1 510 173-5055 -roomNumber: 9901 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Andreana Gaube,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andreana Gaube -sn: Gaube -description: This is Andreana Gaube's description -facsimileTelephoneNumber: +1 415 851-3041 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 702-6520 -title: Chief Peons Writer -userPassword: Password1 -uid: GaubeA -givenName: Andreana -mail: GaubeA@c026df84b73b4f16beec47c31ac06303.bitwarden.com -carLicense: TW689P -departmentNumber: 3220 -employeeType: Contract -homePhone: +1 415 513-4665 -initials: A. G. -mobile: +1 415 938-6767 -pager: +1 415 598-2438 -roomNumber: 8191 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Michelina Zbib,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michelina Zbib -sn: Zbib -description: This is Michelina Zbib's description -facsimileTelephoneNumber: +1 206 124-5067 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 206 804-4006 -title: Junior Payroll Architect -userPassword: Password1 -uid: ZbibM -givenName: Michelina -mail: ZbibM@2f60971fa268439caffee9f84b2be8cb.bitwarden.com -carLicense: VVEQ30 -departmentNumber: 1411 -employeeType: Contract -homePhone: +1 206 413-2065 -initials: M. Z. -mobile: +1 206 749-4990 -pager: +1 206 119-5399 -roomNumber: 8331 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Davis Mutcher,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davis Mutcher -sn: Mutcher -description: This is Davis Mutcher's description -facsimileTelephoneNumber: +1 213 806-8086 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 751-7399 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: MutcherD -givenName: Davis -mail: MutcherD@b3865bcd46934100886192af9061706f.bitwarden.com -carLicense: XONTWF -departmentNumber: 7711 -employeeType: Employee -homePhone: +1 213 108-6001 -initials: D. M. -mobile: +1 213 132-7948 -pager: +1 213 266-9646 -roomNumber: 9755 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dannye Vopalensky -sn: Vopalensky -description: This is Dannye Vopalensky's description -facsimileTelephoneNumber: +1 804 213-2032 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 265-9970 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: VopalenD -givenName: Dannye -mail: VopalenD@b48cddaf61864244b80c9ba3e8279301.bitwarden.com -carLicense: WD37M4 -departmentNumber: 3900 -employeeType: Employee -homePhone: +1 804 805-4044 -initials: D. V. -mobile: +1 804 207-6719 -pager: +1 804 110-4617 -roomNumber: 8713 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kelcey Yedema,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelcey Yedema -sn: Yedema -description: This is Kelcey Yedema's description -facsimileTelephoneNumber: +1 206 457-8050 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 206 878-6499 -title: Master Payroll Consultant -userPassword: Password1 -uid: YedemaK -givenName: Kelcey -mail: YedemaK@03e01270dec047a5b17f2fbfe7ee61b3.bitwarden.com -carLicense: TG09XI -departmentNumber: 9183 -employeeType: Employee -homePhone: +1 206 680-3636 -initials: K. Y. -mobile: +1 206 212-9115 -pager: +1 206 265-7291 -roomNumber: 9434 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kaila Squizzato,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaila Squizzato -sn: Squizzato -description: This is Kaila Squizzato's description -facsimileTelephoneNumber: +1 213 691-3205 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 534-4732 -title: Junior Peons Stooge -userPassword: Password1 -uid: SquizzaK -givenName: Kaila -mail: SquizzaK@c9a4b60fa1eb470eb513b6d959a476c0.bitwarden.com -carLicense: WNAO2D -departmentNumber: 4987 -employeeType: Employee -homePhone: +1 213 618-3211 -initials: K. S. -mobile: +1 213 285-5829 -pager: +1 213 785-2241 -roomNumber: 9961 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ddene Ciocca,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ddene Ciocca -sn: Ciocca -description: This is Ddene Ciocca's description -facsimileTelephoneNumber: +1 206 838-7182 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 711-4650 -title: Associate Product Development Evangelist -userPassword: Password1 -uid: CioccaD -givenName: Ddene -mail: CioccaD@defab017f9734cfab5b3fea4ed24112c.bitwarden.com -carLicense: 0A7W3F -departmentNumber: 3089 -employeeType: Normal -homePhone: +1 206 321-8291 -initials: D. C. -mobile: +1 206 849-4182 -pager: +1 206 203-7273 -roomNumber: 9208 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Harmony Peschke,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harmony Peschke -sn: Peschke -description: This is Harmony Peschke's description -facsimileTelephoneNumber: +1 818 672-4562 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 283-8377 -title: Chief Human Resources Consultant -userPassword: Password1 -uid: PeschkeH -givenName: Harmony -mail: PeschkeH@2721cfc08f0240658ce3169305abe945.bitwarden.com -carLicense: WBL35B -departmentNumber: 1773 -employeeType: Contract -homePhone: +1 818 407-2483 -initials: H. P. -mobile: +1 818 557-5374 -pager: +1 818 248-8872 -roomNumber: 9304 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelena Ciaschi -sn: Ciaschi -description: This is Madelena Ciaschi's description -facsimileTelephoneNumber: +1 206 174-2397 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 455-9684 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: CiaschiM -givenName: Madelena -mail: CiaschiM@cc252680b96a4999bccdcb3df4f9a7ab.bitwarden.com -carLicense: FP9PK2 -departmentNumber: 2206 -employeeType: Normal -homePhone: +1 206 492-9520 -initials: M. C. -mobile: +1 206 369-8837 -pager: +1 206 357-1274 -roomNumber: 9178 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cheslie NTINASH,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cheslie NTINASH -sn: NTINASH -description: This is Cheslie NTINASH's description -facsimileTelephoneNumber: +1 408 390-8849 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 792-6151 -title: Supreme Management Artist -userPassword: Password1 -uid: NTINASHC -givenName: Cheslie -mail: NTINASHC@4e240d85327f4f81b9a139f4d41efb41.bitwarden.com -carLicense: QQTI43 -departmentNumber: 1386 -employeeType: Contract -homePhone: +1 408 927-7076 -initials: C. N. -mobile: +1 408 985-6672 -pager: +1 408 957-2061 -roomNumber: 9966 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Celisse Malizia,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celisse Malizia -sn: Malizia -description: This is Celisse Malizia's description -facsimileTelephoneNumber: +1 818 524-2560 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 817-3744 -title: Junior Management Engineer -userPassword: Password1 -uid: MaliziaC -givenName: Celisse -mail: MaliziaC@37c4f9ee232544a4846bc4a3466039ef.bitwarden.com -carLicense: C3Y404 -departmentNumber: 4882 -employeeType: Employee -homePhone: +1 818 938-4288 -initials: C. M. -mobile: +1 818 916-6716 -pager: +1 818 434-7542 -roomNumber: 9749 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jolyn Amarsi -sn: Amarsi -description: This is Jolyn Amarsi's description -facsimileTelephoneNumber: +1 408 127-5020 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 397-8703 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: AmarsiJ -givenName: Jolyn -mail: AmarsiJ@afcd326ae5b94cedba790b89df39e139.bitwarden.com -carLicense: HHT2VI -departmentNumber: 8342 -employeeType: Normal -homePhone: +1 408 628-9254 -initials: J. A. -mobile: +1 408 921-8558 -pager: +1 408 554-4882 -roomNumber: 8009 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rachelle Siew,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rachelle Siew -sn: Siew -description: This is Rachelle Siew's description -facsimileTelephoneNumber: +1 818 386-3510 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 142-3573 -title: Junior Product Development Dictator -userPassword: Password1 -uid: SiewR -givenName: Rachelle -mail: SiewR@70d73737dc5e4bc597c3edd093f95a4a.bitwarden.com -carLicense: 39X42D -departmentNumber: 6162 -employeeType: Contract -homePhone: +1 818 734-3861 -initials: R. S. -mobile: +1 818 150-6912 -pager: +1 818 696-7229 -roomNumber: 8564 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Charlean Robson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charlean Robson -sn: Robson -description: This is Charlean Robson's description -facsimileTelephoneNumber: +1 818 565-9604 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 818 573-8183 -title: Junior Peons President -userPassword: Password1 -uid: RobsonC -givenName: Charlean -mail: RobsonC@9f88732cfcc040c9ac7a9586e3020a63.bitwarden.com -carLicense: 44C44P -departmentNumber: 3917 -employeeType: Normal -homePhone: +1 818 312-9877 -initials: C. R. -mobile: +1 818 518-2787 -pager: +1 818 266-3274 -roomNumber: 8463 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gabriela Mustillo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabriela Mustillo -sn: Mustillo -description: This is Gabriela Mustillo's description -facsimileTelephoneNumber: +1 206 497-3745 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 805-3781 -title: Junior Management Developer -userPassword: Password1 -uid: MustillG -givenName: Gabriela -mail: MustillG@3105b5dc96c343758f704f474866d911.bitwarden.com -carLicense: SIY153 -departmentNumber: 5551 -employeeType: Contract -homePhone: +1 206 813-9665 -initials: G. M. -mobile: +1 206 397-9435 -pager: +1 206 400-5845 -roomNumber: 9029 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Latia Viau,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Latia Viau -sn: Viau -description: This is Latia Viau's description -facsimileTelephoneNumber: +1 818 101-4836 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 959-2379 -title: Supreme Product Testing Assistant -userPassword: Password1 -uid: ViauL -givenName: Latia -mail: ViauL@49b304035fc44bb4a3e211286fc4d652.bitwarden.com -carLicense: 423VS4 -departmentNumber: 4829 -employeeType: Normal -homePhone: +1 818 860-7886 -initials: L. V. -mobile: +1 818 185-1396 -pager: +1 818 917-5590 -roomNumber: 8110 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Madlen Venning,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madlen Venning -sn: Venning -description: This is Madlen Venning's description -facsimileTelephoneNumber: +1 804 328-6890 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 445-7911 -title: Chief Management Warrior -userPassword: Password1 -uid: VenningM -givenName: Madlen -mail: VenningM@b1e0fad1a7db4b25889e8df2c424913a.bitwarden.com -carLicense: CAGTV6 -departmentNumber: 7198 -employeeType: Contract -homePhone: +1 804 809-6455 -initials: M. V. -mobile: +1 804 350-4271 -pager: +1 804 836-6662 -roomNumber: 9319 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claretta Sehgal -sn: Sehgal -description: This is Claretta Sehgal's description -facsimileTelephoneNumber: +1 804 559-5569 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 804 477-7887 -title: Chief Product Testing Architect -userPassword: Password1 -uid: SehgalC -givenName: Claretta -mail: SehgalC@62ebc0cac09c4b59836fa31868a1365d.bitwarden.com -carLicense: US28UN -departmentNumber: 3399 -employeeType: Employee -homePhone: +1 804 224-5190 -initials: C. S. -mobile: +1 804 341-4252 -pager: +1 804 386-3640 -roomNumber: 9159 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gunilla Skene,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gunilla Skene -sn: Skene -description: This is Gunilla Skene's description -facsimileTelephoneNumber: +1 408 309-4142 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 173-5023 -title: Associate Management Technician -userPassword: Password1 -uid: SkeneG -givenName: Gunilla -mail: SkeneG@542303b775fa43b8b70b70cdc2197657.bitwarden.com -carLicense: 91BKGL -departmentNumber: 7327 -employeeType: Contract -homePhone: +1 408 512-8458 -initials: G. S. -mobile: +1 408 541-7730 -pager: +1 408 777-7603 -roomNumber: 9997 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anestassia Ting,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anestassia Ting -sn: Ting -description: This is Anestassia Ting's description -facsimileTelephoneNumber: +1 408 702-6857 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 102-1950 -title: Master Management Artist -userPassword: Password1 -uid: TingA -givenName: Anestassia -mail: TingA@b3c8c2a69311430c95d255cf755caf65.bitwarden.com -carLicense: 3QWLI0 -departmentNumber: 1877 -employeeType: Normal -homePhone: +1 408 106-4286 -initials: A. T. -mobile: +1 408 740-8074 -pager: +1 408 155-6985 -roomNumber: 8907 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=MaryJane Telco,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryJane Telco -sn: Telco -description: This is MaryJane Telco's description -facsimileTelephoneNumber: +1 408 291-1692 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 408 880-3203 -title: Chief Janitorial Admin -userPassword: Password1 -uid: TelcoM -givenName: MaryJane -mail: TelcoM@9f9fe6d238ce4f8cb29cecfb73bf648a.bitwarden.com -carLicense: 2WDNN7 -departmentNumber: 7214 -employeeType: Contract -homePhone: +1 408 190-2633 -initials: M. T. -mobile: +1 408 376-1108 -pager: +1 408 634-1593 -roomNumber: 8368 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genowefa Etzell -sn: Etzell -description: This is Genowefa Etzell's description -facsimileTelephoneNumber: +1 415 978-9675 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 222-7180 -title: Master Product Testing Stooge -userPassword: Password1 -uid: EtzellG -givenName: Genowefa -mail: EtzellG@9322f20face84b0a8db4dbabb4f4c507.bitwarden.com -carLicense: 91YDOW -departmentNumber: 5016 -employeeType: Contract -homePhone: +1 415 628-7979 -initials: G. E. -mobile: +1 415 759-8746 -pager: +1 415 124-1280 -roomNumber: 8989 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mansukha Tchir,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mansukha Tchir -sn: Tchir -description: This is Mansukha Tchir's description -facsimileTelephoneNumber: +1 818 141-8422 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 126-4362 -title: Associate Product Development Architect -userPassword: Password1 -uid: TchirM -givenName: Mansukha -mail: TchirM@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com -carLicense: DTJC67 -departmentNumber: 8973 -employeeType: Employee -homePhone: +1 818 328-6225 -initials: M. T. -mobile: +1 818 187-5971 -pager: +1 818 471-6943 -roomNumber: 9998 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caralie AbdulNour -sn: AbdulNour -description: This is Caralie AbdulNour's description -facsimileTelephoneNumber: +1 804 146-3904 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 112-1492 -title: Master Product Development Sales Rep -userPassword: Password1 -uid: AbdulNoC -givenName: Caralie -mail: AbdulNoC@9b79b6cacc7d4ea9a3519bd3f9441c87.bitwarden.com -carLicense: BF92QB -departmentNumber: 7920 -employeeType: Employee -homePhone: +1 804 832-9740 -initials: C. A. -mobile: +1 804 633-3996 -pager: +1 804 891-2181 -roomNumber: 8053 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sherline Gillard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherline Gillard -sn: Gillard -description: This is Sherline Gillard's description -facsimileTelephoneNumber: +1 510 591-1010 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 904-5638 -title: Junior Administrative Manager -userPassword: Password1 -uid: GillardS -givenName: Sherline -mail: GillardS@05749581377d47ba8047ee7237ce7f83.bitwarden.com -carLicense: 1WTDD4 -departmentNumber: 9042 -employeeType: Employee -homePhone: +1 510 632-3184 -initials: S. G. -mobile: +1 510 775-4008 -pager: +1 510 399-9493 -roomNumber: 8712 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Inm Stefanac,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inm Stefanac -sn: Stefanac -description: This is Inm Stefanac's description -facsimileTelephoneNumber: +1 408 208-6964 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 739-4691 -title: Master Product Testing Grunt -userPassword: Password1 -uid: StefanaI -givenName: Inm -mail: StefanaI@36a375859cdd487ea0bae44e1c40b92f.bitwarden.com -carLicense: 7P94K1 -departmentNumber: 7173 -employeeType: Employee -homePhone: +1 408 545-3784 -initials: I. S. -mobile: +1 408 790-1241 -pager: +1 408 887-3891 -roomNumber: 8795 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cosimo Haugrud -sn: Haugrud -description: This is Cosimo Haugrud's description -facsimileTelephoneNumber: +1 408 844-9832 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 408 548-8653 -title: Associate Product Testing Architect -userPassword: Password1 -uid: HaugrudC -givenName: Cosimo -mail: HaugrudC@be3459b8963e4676a7255dc7efa74560.bitwarden.com -carLicense: 4V9UA7 -departmentNumber: 4244 -employeeType: Employee -homePhone: +1 408 101-5675 -initials: C. H. -mobile: +1 408 510-4201 -pager: +1 408 335-4723 -roomNumber: 8925 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=PengDavid Pryor,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PengDavid Pryor -sn: Pryor -description: This is PengDavid Pryor's description -facsimileTelephoneNumber: +1 206 566-4709 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 206 627-8911 -title: Junior Payroll Manager -userPassword: Password1 -uid: PryorP -givenName: PengDavid -mail: PryorP@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com -carLicense: N29MK3 -departmentNumber: 7748 -employeeType: Employee -homePhone: +1 206 539-6940 -initials: P. P. -mobile: +1 206 716-3701 -pager: +1 206 293-6954 -roomNumber: 9882 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Agathe Hr,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agathe Hr -sn: Hr -description: This is Agathe Hr's description -facsimileTelephoneNumber: +1 510 673-1971 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 700-3261 -title: Associate Human Resources Punk -userPassword: Password1 -uid: HrA -givenName: Agathe -mail: HrA@aba92373b9e6445487406838438e9c43.bitwarden.com -carLicense: 8V6FI6 -departmentNumber: 2893 -employeeType: Employee -homePhone: +1 510 139-3342 -initials: A. H. -mobile: +1 510 338-1395 -pager: +1 510 156-6628 -roomNumber: 8491 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sastry Michelussi -sn: Michelussi -description: This is Sastry Michelussi's description -facsimileTelephoneNumber: +1 206 348-1696 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 340-3626 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: MicheluS -givenName: Sastry -mail: MicheluS@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com -carLicense: E62BOD -departmentNumber: 9474 -employeeType: Contract -homePhone: +1 206 184-5726 -initials: S. M. -mobile: +1 206 697-1349 -pager: +1 206 206-1583 -roomNumber: 9273 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ervin Biage,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ervin Biage -sn: Biage -description: This is Ervin Biage's description -facsimileTelephoneNumber: +1 510 667-3441 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 510 251-8827 -title: Junior Human Resources Warrior -userPassword: Password1 -uid: BiageE -givenName: Ervin -mail: BiageE@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com -carLicense: SXA7Q6 -departmentNumber: 3825 -employeeType: Employee -homePhone: +1 510 758-6189 -initials: E. B. -mobile: +1 510 801-8969 -pager: +1 510 513-1124 -roomNumber: 8106 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Brandie Vargo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandie Vargo -sn: Vargo -description: This is Brandie Vargo's description -facsimileTelephoneNumber: +1 818 528-1402 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 833-9251 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: VargoB -givenName: Brandie -mail: VargoB@6032a8b4894b42dc8d3f57130a5d8ef5.bitwarden.com -carLicense: MJG04W -departmentNumber: 4972 -employeeType: Employee -homePhone: +1 818 942-4329 -initials: B. V. -mobile: +1 818 766-7341 -pager: +1 818 841-9757 -roomNumber: 8740 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WoeiPeng Heinen -sn: Heinen -description: This is WoeiPeng Heinen's description -facsimileTelephoneNumber: +1 510 723-4760 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 510 475-6380 -title: Associate Administrative President -userPassword: Password1 -uid: HeinenW -givenName: WoeiPeng -mail: HeinenW@f928f43ad9cc43d983b210ccab6e69b0.bitwarden.com -carLicense: BGYF9X -departmentNumber: 8788 -employeeType: Normal -homePhone: +1 510 592-6391 -initials: W. H. -mobile: +1 510 184-8612 -pager: +1 510 267-9027 -roomNumber: 8599 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Augusto Audette,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Augusto Audette -sn: Audette -description: This is Augusto Audette's description -facsimileTelephoneNumber: +1 818 169-3320 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 818 393-8820 -title: Master Janitorial Admin -userPassword: Password1 -uid: AudetteA -givenName: Augusto -mail: AudetteA@77209db2428f411d91371f32d860ae4c.bitwarden.com -carLicense: 1Y50C5 -departmentNumber: 2521 -employeeType: Contract -homePhone: +1 818 472-9476 -initials: A. A. -mobile: +1 818 849-5985 -pager: +1 818 151-7201 -roomNumber: 9506 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Loella Haydock,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loella Haydock -sn: Haydock -description: This is Loella Haydock's description -facsimileTelephoneNumber: +1 818 283-6712 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 752-6344 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: HaydockL -givenName: Loella -mail: HaydockL@40b96b5eb0af49388ddf599aff4277e7.bitwarden.com -carLicense: SYEWB7 -departmentNumber: 4360 -employeeType: Employee -homePhone: +1 818 855-3193 -initials: L. H. -mobile: +1 818 541-6133 -pager: +1 818 143-6447 -roomNumber: 8403 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farrukh Dalsiel -sn: Dalsiel -description: This is Farrukh Dalsiel's description -facsimileTelephoneNumber: +1 408 753-8311 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 511-4191 -title: Supreme Payroll Sales Rep -userPassword: Password1 -uid: DalsielF -givenName: Farrukh -mail: DalsielF@deb5b33726e1467b8ad98f9d4d53798a.bitwarden.com -carLicense: 7R6ECE -departmentNumber: 6144 -employeeType: Employee -homePhone: +1 408 419-1519 -initials: F. D. -mobile: +1 408 742-8409 -pager: +1 408 362-3742 -roomNumber: 8154 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liesbeth Grimble -sn: Grimble -description: This is Liesbeth Grimble's description -facsimileTelephoneNumber: +1 510 601-1414 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 510 355-3678 -title: Associate Human Resources President -userPassword: Password1 -uid: GrimbleL -givenName: Liesbeth -mail: GrimbleL@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com -carLicense: X3OGXO -departmentNumber: 3064 -employeeType: Employee -homePhone: +1 510 337-7549 -initials: L. G. -mobile: +1 510 488-5909 -pager: +1 510 711-3532 -roomNumber: 9133 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tami Scarlett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tami Scarlett -sn: Scarlett -description: This is Tami Scarlett's description -facsimileTelephoneNumber: +1 408 284-4097 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 127-8397 -title: Master Peons Writer -userPassword: Password1 -uid: ScarletT -givenName: Tami -mail: ScarletT@de7b9b88f1af455bb9296186f4010a0e.bitwarden.com -carLicense: 7GT0CA -departmentNumber: 7624 -employeeType: Employee -homePhone: +1 408 664-6044 -initials: T. S. -mobile: +1 408 693-5553 -pager: +1 408 650-4228 -roomNumber: 9322 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Betteanne Badza,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betteanne Badza -sn: Badza -description: This is Betteanne Badza's description -facsimileTelephoneNumber: +1 206 304-9780 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 515-9102 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: BadzaB -givenName: Betteanne -mail: BadzaB@641b39435c6a4345a08d44348f2bfdaa.bitwarden.com -carLicense: WT42EX -departmentNumber: 4186 -employeeType: Contract -homePhone: +1 206 873-4609 -initials: B. B. -mobile: +1 206 941-5955 -pager: +1 206 848-7667 -roomNumber: 8966 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roman Barsony,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roman Barsony -sn: Barsony -description: This is Roman Barsony's description -facsimileTelephoneNumber: +1 510 690-4119 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 900-9219 -title: Junior Payroll Mascot -userPassword: Password1 -uid: BarsonyR -givenName: Roman -mail: BarsonyR@130d7984e3224d79a3593bfbc13ee192.bitwarden.com -carLicense: UP5DSB -departmentNumber: 3147 -employeeType: Normal -homePhone: +1 510 308-4755 -initials: R. B. -mobile: +1 510 988-6079 -pager: +1 510 634-3947 -roomNumber: 8677 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernardine Bergman -sn: Bergman -description: This is Bernardine Bergman's description -facsimileTelephoneNumber: +1 415 814-8586 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 410-6059 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: BergmanB -givenName: Bernardine -mail: BergmanB@a8a3f1161ef54158b589de8fea58b91e.bitwarden.com -carLicense: HXXSS8 -departmentNumber: 8478 -employeeType: Contract -homePhone: +1 415 872-7299 -initials: B. B. -mobile: +1 415 807-7691 -pager: +1 415 628-9851 -roomNumber: 9931 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gloriana Wessel -sn: Wessel -description: This is Gloriana Wessel's description -facsimileTelephoneNumber: +1 415 781-4200 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 422-1163 -title: Chief Human Resources Janitor -userPassword: Password1 -uid: WesselG -givenName: Gloriana -mail: WesselG@07350d30e5bc4da4ac617cefe2dea284.bitwarden.com -carLicense: 1D6C0S -departmentNumber: 2703 -employeeType: Employee -homePhone: +1 415 242-5238 -initials: G. W. -mobile: +1 415 337-2951 -pager: +1 415 289-5503 -roomNumber: 9946 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katrinka Debortoli,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katrinka Debortoli -sn: Debortoli -description: This is Katrinka Debortoli's description -facsimileTelephoneNumber: +1 510 877-5894 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 562-1846 -title: Junior Peons Evangelist -userPassword: Password1 -uid: DebortoK -givenName: Katrinka -mail: DebortoK@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com -carLicense: NH8EP8 -departmentNumber: 5850 -employeeType: Normal -homePhone: +1 510 453-1120 -initials: K. D. -mobile: +1 510 391-6253 -pager: +1 510 839-1990 -roomNumber: 8761 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jillana Alary,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jillana Alary -sn: Alary -description: This is Jillana Alary's description -facsimileTelephoneNumber: +1 510 213-1283 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 758-3433 -title: Supreme Janitorial President -userPassword: Password1 -uid: AlaryJ -givenName: Jillana -mail: AlaryJ@9b1cd0d4cbb340edaa08f757750c510b.bitwarden.com -carLicense: KF4DTS -departmentNumber: 9198 -employeeType: Normal -homePhone: +1 510 469-1583 -initials: J. A. -mobile: +1 510 150-8106 -pager: +1 510 394-5780 -roomNumber: 8792 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Margeaux Raines,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margeaux Raines -sn: Raines -description: This is Margeaux Raines's description -facsimileTelephoneNumber: +1 818 100-9388 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 437-9313 -title: Junior Administrative Assistant -userPassword: Password1 -uid: RainesM -givenName: Margeaux -mail: RainesM@8a34c70e0b134b1abc06ed65698294f3.bitwarden.com -carLicense: 2DN4QR -departmentNumber: 5697 -employeeType: Normal -homePhone: +1 818 461-8693 -initials: M. R. -mobile: +1 818 110-9625 -pager: +1 818 160-3597 -roomNumber: 9454 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Augustin Hollandsworth -sn: Hollandsworth -description: This is Augustin Hollandsworth's description -facsimileTelephoneNumber: +1 206 961-9599 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 394-1836 -title: Supreme Product Testing Architect -userPassword: Password1 -uid: HollandA -givenName: Augustin -mail: HollandA@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com -carLicense: TC4KWN -departmentNumber: 8123 -employeeType: Contract -homePhone: +1 206 325-7418 -initials: A. H. -mobile: +1 206 515-7876 -pager: +1 206 589-4000 -roomNumber: 8770 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cassi Moritz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassi Moritz -sn: Moritz -description: This is Cassi Moritz's description -facsimileTelephoneNumber: +1 213 979-3630 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 973-4632 -title: Junior Product Testing Punk -userPassword: Password1 -uid: MoritzC -givenName: Cassi -mail: MoritzC@85684be84b6e4d138199715b368d851b.bitwarden.com -carLicense: 6QFCSC -departmentNumber: 7961 -employeeType: Normal -homePhone: +1 213 111-7880 -initials: C. M. -mobile: +1 213 737-8212 -pager: +1 213 811-1444 -roomNumber: 8253 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othilia VanMansum -sn: VanMansum -description: This is Othilia VanMansum's description -facsimileTelephoneNumber: +1 818 561-9186 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 720-4676 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: VanMansO -givenName: Othilia -mail: VanMansO@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com -carLicense: 9WHGIH -departmentNumber: 2867 -employeeType: Contract -homePhone: +1 818 457-2931 -initials: O. V. -mobile: +1 818 704-4906 -pager: +1 818 518-3617 -roomNumber: 9581 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sales Rasmus,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sales Rasmus -sn: Rasmus -description: This is Sales Rasmus's description -facsimileTelephoneNumber: +1 415 191-9616 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 484-9016 -title: Master Administrative Figurehead -userPassword: Password1 -uid: RasmusS -givenName: Sales -mail: RasmusS@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com -carLicense: FKVM24 -departmentNumber: 9201 -employeeType: Contract -homePhone: +1 415 222-5862 -initials: S. R. -mobile: +1 415 618-2881 -pager: +1 415 510-6414 -roomNumber: 8953 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Katrine Thomason,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katrine Thomason -sn: Thomason -description: This is Katrine Thomason's description -facsimileTelephoneNumber: +1 408 444-3608 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 440-3227 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: ThomasoK -givenName: Katrine -mail: ThomasoK@08761145d0ee492388590ebc755ffc11.bitwarden.com -carLicense: U8H62E -departmentNumber: 1374 -employeeType: Employee -homePhone: +1 408 817-2987 -initials: K. T. -mobile: +1 408 867-6080 -pager: +1 408 277-4281 -roomNumber: 8494 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Celka Kester,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celka Kester -sn: Kester -description: This is Celka Kester's description -facsimileTelephoneNumber: +1 213 217-9540 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 813-4786 -title: Chief Management Artist -userPassword: Password1 -uid: KesterC -givenName: Celka -mail: KesterC@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com -carLicense: JUSMM3 -departmentNumber: 2682 -employeeType: Contract -homePhone: +1 213 320-7305 -initials: C. K. -mobile: +1 213 343-7797 -pager: +1 213 980-7641 -roomNumber: 9396 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pansie Mayea,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pansie Mayea -sn: Mayea -description: This is Pansie Mayea's description -facsimileTelephoneNumber: +1 408 374-1953 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 103-4005 -title: Associate Payroll Vice President -userPassword: Password1 -uid: MayeaP -givenName: Pansie -mail: MayeaP@97332f0466d142b5a0521dc2f85817c3.bitwarden.com -carLicense: YBJJOQ -departmentNumber: 5871 -employeeType: Employee -homePhone: +1 408 654-6988 -initials: P. M. -mobile: +1 408 918-5101 -pager: +1 408 955-4642 -roomNumber: 8897 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Burton Shearer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Burton Shearer -sn: Shearer -description: This is Burton Shearer's description -facsimileTelephoneNumber: +1 408 297-6892 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 408 136-7199 -title: Chief Administrative Consultant -userPassword: Password1 -uid: ShearerB -givenName: Burton -mail: ShearerB@9168c74ef41149569e1e454986f240f5.bitwarden.com -carLicense: SPSYU7 -departmentNumber: 5197 -employeeType: Normal -homePhone: +1 408 183-8989 -initials: B. S. -mobile: +1 408 863-3664 -pager: +1 408 797-3064 -roomNumber: 9854 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgiana Lacosse -sn: Lacosse -description: This is Georgiana Lacosse's description -facsimileTelephoneNumber: +1 510 323-7253 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 510 619-5332 -title: Associate Payroll President -userPassword: Password1 -uid: LacosseG -givenName: Georgiana -mail: LacosseG@39906d66250a450299ac97c0daaa1661.bitwarden.com -carLicense: RBU1QC -departmentNumber: 7643 -employeeType: Employee -homePhone: +1 510 450-2405 -initials: G. L. -mobile: +1 510 298-3323 -pager: +1 510 144-2200 -roomNumber: 8130 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Augusto Montero,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Augusto Montero -sn: Montero -description: This is Augusto Montero's description -facsimileTelephoneNumber: +1 804 313-3969 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 791-2258 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: MonteroA -givenName: Augusto -mail: MonteroA@ead1ebc11a6a43c4a4973f8778d92cf0.bitwarden.com -carLicense: X7OY4F -departmentNumber: 9786 -employeeType: Normal -homePhone: +1 804 643-5614 -initials: A. M. -mobile: +1 804 555-3592 -pager: +1 804 890-9115 -roomNumber: 8452 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenson Kpodzo -sn: Kpodzo -description: This is Jenson Kpodzo's description -facsimileTelephoneNumber: +1 408 461-3370 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 734-4101 -title: Chief Administrative Fellow -userPassword: Password1 -uid: KpodzoJ -givenName: Jenson -mail: KpodzoJ@4a68315fca8a4b9cbfc30c913a972220.bitwarden.com -carLicense: 4C068G -departmentNumber: 6913 -employeeType: Employee -homePhone: +1 408 641-6918 -initials: J. K. -mobile: +1 408 438-6916 -pager: +1 408 894-5234 -roomNumber: 8302 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saloma Tiegs -sn: Tiegs -description: This is Saloma Tiegs's description -facsimileTelephoneNumber: +1 818 708-4645 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 704-1182 -title: Master Product Testing Czar -userPassword: Password1 -uid: TiegsS -givenName: Saloma -mail: TiegsS@bb1a549f208840af8ec52ae7c5ebc4f5.bitwarden.com -carLicense: E7TNIR -departmentNumber: 9170 -employeeType: Normal -homePhone: +1 818 618-7536 -initials: S. T. -mobile: +1 818 102-2605 -pager: +1 818 649-8204 -roomNumber: 8170 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eyde Gallion,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eyde Gallion -sn: Gallion -description: This is Eyde Gallion's description -facsimileTelephoneNumber: +1 206 920-8285 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 334-5374 -title: Chief Management Janitor -userPassword: Password1 -uid: GallionE -givenName: Eyde -mail: GallionE@e91e9d47322f42e0863a6aa1fe777b71.bitwarden.com -carLicense: 61FC0H -departmentNumber: 8407 -employeeType: Normal -homePhone: +1 206 496-6741 -initials: E. G. -mobile: +1 206 458-8327 -pager: +1 206 969-5392 -roomNumber: 9260 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blancha Kauffman -sn: Kauffman -description: This is Blancha Kauffman's description -facsimileTelephoneNumber: +1 206 575-3758 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 900-9300 -title: Supreme Human Resources President -userPassword: Password1 -uid: KauffmaB -givenName: Blancha -mail: KauffmaB@a767b0f434554c6788caabae2da7ee65.bitwarden.com -carLicense: 0PURMY -departmentNumber: 6719 -employeeType: Contract -homePhone: +1 206 232-2110 -initials: B. K. -mobile: +1 206 373-8913 -pager: +1 206 496-1911 -roomNumber: 8080 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sule Valenziano,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sule Valenziano -sn: Valenziano -description: This is Sule Valenziano's description -facsimileTelephoneNumber: +1 415 151-2330 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 107-2988 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: ValenziS -givenName: Sule -mail: ValenziS@dc21b90d233e4262bb0c379c7e3b2a15.bitwarden.com -carLicense: CBXLTI -departmentNumber: 7345 -employeeType: Employee -homePhone: +1 415 634-2758 -initials: S. V. -mobile: +1 415 260-1290 -pager: +1 415 625-4643 -roomNumber: 9188 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ott Kristjanson -sn: Kristjanson -description: This is Ott Kristjanson's description -facsimileTelephoneNumber: +1 408 397-4725 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 408 887-3540 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: KristjaO -givenName: Ott -mail: KristjaO@170b1e3aafb44ce5931865d83bab2b73.bitwarden.com -carLicense: 1IGM07 -departmentNumber: 1502 -employeeType: Normal -homePhone: +1 408 514-1438 -initials: O. K. -mobile: +1 408 736-7882 -pager: +1 408 562-4183 -roomNumber: 8691 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Therese Totti,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Therese Totti -sn: Totti -description: This is Therese Totti's description -facsimileTelephoneNumber: +1 415 487-3679 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 500-4967 -title: Chief Administrative Madonna -userPassword: Password1 -uid: TottiT -givenName: Therese -mail: TottiT@f84feca728aa4b08a80aa164ca1230d9.bitwarden.com -carLicense: LRLFVD -departmentNumber: 3671 -employeeType: Contract -homePhone: +1 415 476-4627 -initials: T. T. -mobile: +1 415 365-2018 -pager: +1 415 621-9766 -roomNumber: 9239 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dyana ChampionDemers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyana ChampionDemers -sn: ChampionDemers -description: This is Dyana ChampionDemers's description -facsimileTelephoneNumber: +1 213 235-7407 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 177-8272 -title: Associate Management Grunt -userPassword: Password1 -uid: ChampioD -givenName: Dyana -mail: ChampioD@a4e9de5e0b9246278e213e7f89e8ab95.bitwarden.com -carLicense: O6O9TV -departmentNumber: 5212 -employeeType: Employee -homePhone: +1 213 727-1304 -initials: D. C. -mobile: +1 213 441-4904 -pager: +1 213 442-4128 -roomNumber: 9721 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joannie Paprocki -sn: Paprocki -description: This is Joannie Paprocki's description -facsimileTelephoneNumber: +1 213 508-3938 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 526-5479 -title: Chief Human Resources Director -userPassword: Password1 -uid: PaprockJ -givenName: Joannie -mail: PaprockJ@7a24f959bf7143f0a384d6a356f5332c.bitwarden.com -carLicense: P5NOMQ -departmentNumber: 2969 -employeeType: Normal -homePhone: +1 213 632-6473 -initials: J. P. -mobile: +1 213 399-5086 -pager: +1 213 533-8829 -roomNumber: 8666 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ranea Zitko,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranea Zitko -sn: Zitko -description: This is Ranea Zitko's description -facsimileTelephoneNumber: +1 804 649-4054 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 681-2601 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: ZitkoR -givenName: Ranea -mail: ZitkoR@145a2cc169a84041837ab176f4869676.bitwarden.com -carLicense: 78051Y -departmentNumber: 2698 -employeeType: Contract -homePhone: +1 804 437-6556 -initials: R. Z. -mobile: +1 804 741-1478 -pager: +1 804 565-8039 -roomNumber: 8889 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Thayne Langer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thayne Langer -sn: Langer -description: This is Thayne Langer's description -facsimileTelephoneNumber: +1 213 216-3076 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 156-4950 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: LangerT -givenName: Thayne -mail: LangerT@49f5a591a2774e04b74eeb9adebf4303.bitwarden.com -carLicense: L6A95L -departmentNumber: 5510 -employeeType: Normal -homePhone: +1 213 825-3563 -initials: T. L. -mobile: +1 213 171-2215 -pager: +1 213 560-1452 -roomNumber: 9244 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Chie Hilton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chie Hilton -sn: Hilton -description: This is Chie Hilton's description -facsimileTelephoneNumber: +1 408 315-5129 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 745-6971 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: HiltonC -givenName: Chie -mail: HiltonC@a007e0bbe2b74c31b4d55b35ce3884b6.bitwarden.com -carLicense: U2FN6W -departmentNumber: 4889 -employeeType: Contract -homePhone: +1 408 575-3681 -initials: C. H. -mobile: +1 408 884-6641 -pager: +1 408 831-7006 -roomNumber: 9595 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gisela Enet,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gisela Enet -sn: Enet -description: This is Gisela Enet's description -facsimileTelephoneNumber: +1 213 770-7081 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 341-7955 -title: Junior Administrative Writer -userPassword: Password1 -uid: EnetG -givenName: Gisela -mail: EnetG@f87927b66c3847ba8ab3947482034e19.bitwarden.com -carLicense: E4852D -departmentNumber: 7692 -employeeType: Contract -homePhone: +1 213 357-6155 -initials: G. E. -mobile: +1 213 945-3632 -pager: +1 213 925-6349 -roomNumber: 8089 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Erlene Krajesky,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erlene Krajesky -sn: Krajesky -description: This is Erlene Krajesky's description -facsimileTelephoneNumber: +1 408 437-6689 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 556-7353 -title: Chief Peons Director -userPassword: Password1 -uid: KrajeskE -givenName: Erlene -mail: KrajeskE@1a2826f06614436585f4faa14772cf1b.bitwarden.com -carLicense: 86TYII -departmentNumber: 5501 -employeeType: Contract -homePhone: +1 408 904-4214 -initials: E. K. -mobile: +1 408 678-1766 -pager: +1 408 654-8757 -roomNumber: 8964 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ileane Steinbacher -sn: Steinbacher -description: This is Ileane Steinbacher's description -facsimileTelephoneNumber: +1 510 728-7125 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 490-3649 -title: Supreme Product Development Madonna -userPassword: Password1 -uid: SteinbaI -givenName: Ileane -mail: SteinbaI@6553f6f625ef4decb458591c6b034f5c.bitwarden.com -carLicense: BUWALJ -departmentNumber: 3990 -employeeType: Contract -homePhone: +1 510 555-1622 -initials: I. S. -mobile: +1 510 105-5509 -pager: +1 510 608-2543 -roomNumber: 8959 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cezary Stephens,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cezary Stephens -sn: Stephens -description: This is Cezary Stephens's description -facsimileTelephoneNumber: +1 510 176-8384 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 546-6308 -title: Junior Payroll Stooge -userPassword: Password1 -uid: StephenC -givenName: Cezary -mail: StephenC@03381a6be0334d469597ceb0055fc710.bitwarden.com -carLicense: B6LLPF -departmentNumber: 8313 -employeeType: Normal -homePhone: +1 510 931-3398 -initials: C. S. -mobile: +1 510 706-5757 -pager: +1 510 474-5382 -roomNumber: 9575 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cyndie Therrien,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyndie Therrien -sn: Therrien -description: This is Cyndie Therrien's description -facsimileTelephoneNumber: +1 415 182-2329 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 362-9586 -title: Chief Payroll Grunt -userPassword: Password1 -uid: TherrieC -givenName: Cyndie -mail: TherrieC@c2c56cba4b164b91a9cad88cb6fbbaa7.bitwarden.com -carLicense: 0SG3EN -departmentNumber: 2264 -employeeType: Employee -homePhone: +1 415 242-7269 -initials: C. T. -mobile: +1 415 530-2084 -pager: +1 415 685-5889 -roomNumber: 9448 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shandie Ghelarducci -sn: Ghelarducci -description: This is Shandie Ghelarducci's description -facsimileTelephoneNumber: +1 206 479-9312 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 139-4023 -title: Master Product Testing Technician -userPassword: Password1 -uid: GhelardS -givenName: Shandie -mail: GhelardS@25209ef0bef9422ba827a4158c5d2eb7.bitwarden.com -carLicense: Y04CQC -departmentNumber: 1164 -employeeType: Employee -homePhone: +1 206 807-3446 -initials: S. G. -mobile: +1 206 707-8510 -pager: +1 206 469-6499 -roomNumber: 9507 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rolf Philip,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rolf Philip -sn: Philip -description: This is Rolf Philip's description -facsimileTelephoneNumber: +1 206 959-8034 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 794-7591 -title: Master Administrative Madonna -userPassword: Password1 -uid: PhilipR -givenName: Rolf -mail: PhilipR@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com -carLicense: 0EXATO -departmentNumber: 6549 -employeeType: Employee -homePhone: +1 206 719-9083 -initials: R. P. -mobile: +1 206 304-2768 -pager: +1 206 738-1183 -roomNumber: 8607 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karla Biss,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karla Biss -sn: Biss -description: This is Karla Biss's description -facsimileTelephoneNumber: +1 415 934-2687 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 683-7090 -title: Master Peons Sales Rep -userPassword: Password1 -uid: BissK -givenName: Karla -mail: BissK@49c32b5d70594069be5f4296d6c76171.bitwarden.com -carLicense: 557KO8 -departmentNumber: 5396 -employeeType: Normal -homePhone: +1 415 862-9628 -initials: K. B. -mobile: +1 415 372-6160 -pager: +1 415 894-4110 -roomNumber: 8537 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Danica Margittai,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danica Margittai -sn: Margittai -description: This is Danica Margittai's description -facsimileTelephoneNumber: +1 804 986-3984 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 984-1713 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: MargittD -givenName: Danica -mail: MargittD@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com -carLicense: KFFQ6W -departmentNumber: 6406 -employeeType: Normal -homePhone: +1 804 728-6190 -initials: D. M. -mobile: +1 804 392-5101 -pager: +1 804 173-9885 -roomNumber: 8665 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shelly Fabris,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelly Fabris -sn: Fabris -description: This is Shelly Fabris's description -facsimileTelephoneNumber: +1 415 117-7801 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 674-4661 -title: Supreme Management Fellow -userPassword: Password1 -uid: FabrisS -givenName: Shelly -mail: FabrisS@871acffc5fd64b9296d59bdd7ff870b0.bitwarden.com -carLicense: VOYEMU -departmentNumber: 8669 -employeeType: Contract -homePhone: +1 415 669-3620 -initials: S. F. -mobile: +1 415 128-3666 -pager: +1 415 115-1309 -roomNumber: 8948 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Netta Gregorio,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Netta Gregorio -sn: Gregorio -description: This is Netta Gregorio's description -facsimileTelephoneNumber: +1 415 195-3536 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 705-3871 -title: Supreme Product Development Artist -userPassword: Password1 -uid: GregoriN -givenName: Netta -mail: GregoriN@ab80825fb9f64e0fa2550d84decf8401.bitwarden.com -carLicense: 2V9H42 -departmentNumber: 5697 -employeeType: Employee -homePhone: +1 415 101-9065 -initials: N. G. -mobile: +1 415 633-4474 -pager: +1 415 614-3907 -roomNumber: 8317 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flossi PenaFernandez -sn: PenaFernandez -description: This is Flossi PenaFernandez's description -facsimileTelephoneNumber: +1 408 242-7144 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 851-1533 -title: Master Administrative Figurehead -userPassword: Password1 -uid: PenaFerF -givenName: Flossi -mail: PenaFerF@b25f9197eb164e0e80b05e75586a2055.bitwarden.com -carLicense: QJNIF9 -departmentNumber: 8462 -employeeType: Employee -homePhone: +1 408 317-8441 -initials: F. P. -mobile: +1 408 295-9935 -pager: +1 408 771-2561 -roomNumber: 8606 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lu Tsai,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lu Tsai -sn: Tsai -description: This is Lu Tsai's description -facsimileTelephoneNumber: +1 818 111-3276 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 709-5071 -title: Supreme Product Testing Vice President -userPassword: Password1 -uid: TsaiL -givenName: Lu -mail: TsaiL@268e542432d8452492860decdd327bf6.bitwarden.com -carLicense: 9C98DM -departmentNumber: 2922 -employeeType: Contract -homePhone: +1 818 842-8588 -initials: L. T. -mobile: +1 818 105-3224 -pager: +1 818 495-8523 -roomNumber: 8293 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aruna Loeffler -sn: Loeffler -description: This is Aruna Loeffler's description -facsimileTelephoneNumber: +1 408 407-5842 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 255-5592 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: LoeffleA -givenName: Aruna -mail: LoeffleA@932da8f75fc34afb858807b155e78d58.bitwarden.com -carLicense: JVOEAN -departmentNumber: 6237 -employeeType: Contract -homePhone: +1 408 377-6387 -initials: A. L. -mobile: +1 408 158-3119 -pager: +1 408 302-7467 -roomNumber: 8699 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shalna Terwilligar -sn: Terwilligar -description: This is Shalna Terwilligar's description -facsimileTelephoneNumber: +1 804 539-2805 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 108-3034 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: TerwillS -givenName: Shalna -mail: TerwillS@037b2dcc29f840fa8751d096972382fe.bitwarden.com -carLicense: SPJ2OP -departmentNumber: 4017 -employeeType: Normal -homePhone: +1 804 562-7552 -initials: S. T. -mobile: +1 804 294-5476 -pager: +1 804 321-2398 -roomNumber: 9375 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anabella McManus,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anabella McManus -sn: McManus -description: This is Anabella McManus's description -facsimileTelephoneNumber: +1 415 607-3766 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 864-1589 -title: Associate Payroll Czar -userPassword: Password1 -uid: McManusA -givenName: Anabella -mail: McManusA@4b2618e65445493fb6bf16ca350497be.bitwarden.com -carLicense: CVLBYX -departmentNumber: 5983 -employeeType: Normal -homePhone: +1 415 472-9295 -initials: A. M. -mobile: +1 415 196-9860 -pager: +1 415 116-1787 -roomNumber: 9938 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sandeep Deneen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandeep Deneen -sn: Deneen -description: This is Sandeep Deneen's description -facsimileTelephoneNumber: +1 510 356-4318 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 229-2218 -title: Associate Product Development Assistant -userPassword: Password1 -uid: DeneenS -givenName: Sandeep -mail: DeneenS@69229a215bfd45fb93b4b714a125f8c1.bitwarden.com -carLicense: 2BNA0G -departmentNumber: 2848 -employeeType: Normal -homePhone: +1 510 766-8193 -initials: S. D. -mobile: +1 510 985-5496 -pager: +1 510 139-6880 -roomNumber: 9043 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fiore Brogdon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fiore Brogdon -sn: Brogdon -description: This is Fiore Brogdon's description -facsimileTelephoneNumber: +1 510 864-4374 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 624-8398 -title: Junior Management Punk -userPassword: Password1 -uid: BrogdonF -givenName: Fiore -mail: BrogdonF@c7f3f4b5404343009726750451b5ec5f.bitwarden.com -carLicense: DSEFTS -departmentNumber: 5120 -employeeType: Employee -homePhone: +1 510 810-6999 -initials: F. B. -mobile: +1 510 676-8401 -pager: +1 510 222-4315 -roomNumber: 8695 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquenetta Busko -sn: Busko -description: This is Jacquenetta Busko's description -facsimileTelephoneNumber: +1 206 626-1312 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 516-9661 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: BuskoJ -givenName: Jacquenetta -mail: BuskoJ@1783baab8b3341f48bad6f9721f7eb73.bitwarden.com -carLicense: E605BY -departmentNumber: 7114 -employeeType: Employee -homePhone: +1 206 879-8857 -initials: J. B. -mobile: +1 206 912-2231 -pager: +1 206 159-2915 -roomNumber: 9194 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mariellen Tilley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariellen Tilley -sn: Tilley -description: This is Mariellen Tilley's description -facsimileTelephoneNumber: +1 818 572-1139 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 308-9784 -title: Junior Management Technician -userPassword: Password1 -uid: TilleyM -givenName: Mariellen -mail: TilleyM@54d404ee0ed9466bae5e36b6d97997f9.bitwarden.com -carLicense: B51WAB -departmentNumber: 6047 -employeeType: Contract -homePhone: +1 818 871-1581 -initials: M. T. -mobile: +1 818 908-4743 -pager: +1 818 721-5206 -roomNumber: 8861 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndsey Crothers -sn: Crothers -description: This is Lyndsey Crothers's description -facsimileTelephoneNumber: +1 206 477-3207 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 318-7223 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: CrotherL -givenName: Lyndsey -mail: CrotherL@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com -carLicense: M5GSLL -departmentNumber: 2895 -employeeType: Contract -homePhone: +1 206 404-8681 -initials: L. C. -mobile: +1 206 274-4763 -pager: +1 206 425-1605 -roomNumber: 9829 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ina Joudrey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ina Joudrey -sn: Joudrey -description: This is Ina Joudrey's description -facsimileTelephoneNumber: +1 213 626-8944 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 688-3046 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: JoudreyI -givenName: Ina -mail: JoudreyI@24838fbbf5b94e89a9506c6185ca825f.bitwarden.com -carLicense: JI9EWR -departmentNumber: 6888 -employeeType: Normal -homePhone: +1 213 254-6124 -initials: I. J. -mobile: +1 213 815-3306 -pager: +1 213 548-9689 -roomNumber: 8077 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Baines Buettgen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baines Buettgen -sn: Buettgen -description: This is Baines Buettgen's description -facsimileTelephoneNumber: +1 213 466-4494 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 560-9191 -title: Junior Administrative Mascot -userPassword: Password1 -uid: BuettgeB -givenName: Baines -mail: BuettgeB@2669130b306244a5bdb654170929e2da.bitwarden.com -carLicense: 2PEFYF -departmentNumber: 9587 -employeeType: Normal -homePhone: +1 213 338-6289 -initials: B. B. -mobile: +1 213 904-4356 -pager: +1 213 160-6899 -roomNumber: 9184 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carie Pitcher,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carie Pitcher -sn: Pitcher -description: This is Carie Pitcher's description -facsimileTelephoneNumber: +1 213 884-6476 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 512-7702 -title: Junior Administrative Architect -userPassword: Password1 -uid: PitcherC -givenName: Carie -mail: PitcherC@a2d6d422fc8c477489979808c2bf1f24.bitwarden.com -carLicense: 1DR0Q7 -departmentNumber: 6412 -employeeType: Contract -homePhone: +1 213 327-9997 -initials: C. P. -mobile: +1 213 354-1757 -pager: +1 213 924-9791 -roomNumber: 8156 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Candie Gurer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candie Gurer -sn: Gurer -description: This is Candie Gurer's description -facsimileTelephoneNumber: +1 818 981-8376 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 464-4759 -title: Master Human Resources Assistant -userPassword: Password1 -uid: GurerC -givenName: Candie -mail: GurerC@83f78532c82a4f77a10f2d7460348b85.bitwarden.com -carLicense: 8LG059 -departmentNumber: 8377 -employeeType: Normal -homePhone: +1 818 994-1224 -initials: C. G. -mobile: +1 818 644-6631 -pager: +1 818 147-4151 -roomNumber: 8617 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zino Swinson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zino Swinson -sn: Swinson -description: This is Zino Swinson's description -facsimileTelephoneNumber: +1 415 465-6044 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 383-7167 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: SwinsonZ -givenName: Zino -mail: SwinsonZ@364480d740db4258a296b16c78eb71b1.bitwarden.com -carLicense: 68ACJI -departmentNumber: 8617 -employeeType: Employee -homePhone: +1 415 386-4568 -initials: Z. S. -mobile: +1 415 431-6820 -pager: +1 415 577-1236 -roomNumber: 9830 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Layla Rabiasz -sn: Rabiasz -description: This is Layla Rabiasz's description -facsimileTelephoneNumber: +1 206 775-7254 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 947-6259 -title: Chief Janitorial Punk -userPassword: Password1 -uid: RabiaszL -givenName: Layla -mail: RabiaszL@834378ce6fad4960b9d95b1599b2d8c0.bitwarden.com -carLicense: HHWQ9G -departmentNumber: 4846 -employeeType: Contract -homePhone: +1 206 679-4653 -initials: L. R. -mobile: +1 206 718-3780 -pager: +1 206 104-4120 -roomNumber: 9308 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Terese Beton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terese Beton -sn: Beton -description: This is Terese Beton's description -facsimileTelephoneNumber: +1 804 702-7286 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 804 780-6099 -title: Associate Peons Fellow -userPassword: Password1 -uid: BetonT -givenName: Terese -mail: BetonT@536c0f4fa5054c52a7d0385b00e9be00.bitwarden.com -carLicense: KM2V4V -departmentNumber: 9391 -employeeType: Normal -homePhone: +1 804 451-6726 -initials: T. B. -mobile: +1 804 620-6507 -pager: +1 804 255-8358 -roomNumber: 9733 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Reena Gullekson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reena Gullekson -sn: Gullekson -description: This is Reena Gullekson's description -facsimileTelephoneNumber: +1 213 488-6454 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 371-2555 -title: Supreme Peons Mascot -userPassword: Password1 -uid: GulleksR -givenName: Reena -mail: GulleksR@5742495432584883ba0607d82fbbf002.bitwarden.com -carLicense: D8RBLH -departmentNumber: 7932 -employeeType: Normal -homePhone: +1 213 392-3422 -initials: R. G. -mobile: +1 213 249-6814 -pager: +1 213 802-1636 -roomNumber: 8793 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yoda Prado,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoda Prado -sn: Prado -description: This is Yoda Prado's description -facsimileTelephoneNumber: +1 510 558-9031 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 200-4854 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: PradoY -givenName: Yoda -mail: PradoY@e2e4684a59f0411fb17c22a8c54500dc.bitwarden.com -carLicense: VO28PD -departmentNumber: 1376 -employeeType: Employee -homePhone: +1 510 529-4201 -initials: Y. P. -mobile: +1 510 901-4235 -pager: +1 510 214-4473 -roomNumber: 9910 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Waneta Irwin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Waneta Irwin -sn: Irwin -description: This is Waneta Irwin's description -facsimileTelephoneNumber: +1 408 285-2529 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 408 359-6370 -title: Supreme Peons Stooge -userPassword: Password1 -uid: IrwinW -givenName: Waneta -mail: IrwinW@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com -carLicense: SO293Y -departmentNumber: 1626 -employeeType: Normal -homePhone: +1 408 591-3155 -initials: W. I. -mobile: +1 408 618-3775 -pager: +1 408 858-1062 -roomNumber: 8292 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Prity Wyllie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prity Wyllie -sn: Wyllie -description: This is Prity Wyllie's description -facsimileTelephoneNumber: +1 206 590-8728 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 297-1993 -title: Associate Janitorial Developer -userPassword: Password1 -uid: WyllieP -givenName: Prity -mail: WyllieP@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com -carLicense: NGWXTJ -departmentNumber: 1747 -employeeType: Employee -homePhone: +1 206 837-9569 -initials: P. W. -mobile: +1 206 896-7162 -pager: +1 206 559-9153 -roomNumber: 9654 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brennan Kapuscinski -sn: Kapuscinski -description: This is Brennan Kapuscinski's description -facsimileTelephoneNumber: +1 510 784-7498 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 494-9497 -title: Master Payroll Czar -userPassword: Password1 -uid: KapusciB -givenName: Brennan -mail: KapusciB@ba60a08b258046f98633fd3c737e4f83.bitwarden.com -carLicense: AELIUU -departmentNumber: 9332 -employeeType: Normal -homePhone: +1 510 844-6324 -initials: B. K. -mobile: +1 510 314-1468 -pager: +1 510 961-2180 -roomNumber: 8480 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jillian Borzic,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jillian Borzic -sn: Borzic -description: This is Jillian Borzic's description -facsimileTelephoneNumber: +1 206 914-9117 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 962-3691 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: BorzicJ -givenName: Jillian -mail: BorzicJ@484147050d834a1da350db4c28e9f45b.bitwarden.com -carLicense: 0GHT46 -departmentNumber: 3665 -employeeType: Contract -homePhone: +1 206 778-4683 -initials: J. B. -mobile: +1 206 759-5616 -pager: +1 206 296-8405 -roomNumber: 9418 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Akio Broussard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akio Broussard -sn: Broussard -description: This is Akio Broussard's description -facsimileTelephoneNumber: +1 415 542-3629 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 415 407-2830 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: BroussaA -givenName: Akio -mail: BroussaA@14718a04ba8345b68b85209d455c92d5.bitwarden.com -carLicense: 2PFUTL -departmentNumber: 4523 -employeeType: Contract -homePhone: +1 415 181-8163 -initials: A. B. -mobile: +1 415 387-3796 -pager: +1 415 502-9893 -roomNumber: 9043 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanchez Gunasekera -sn: Gunasekera -description: This is Sanchez Gunasekera's description -facsimileTelephoneNumber: +1 510 751-9513 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 962-7858 -title: Associate Product Development Vice President -userPassword: Password1 -uid: GunasekS -givenName: Sanchez -mail: GunasekS@823b0e5ae5554412ad321149e939b14a.bitwarden.com -carLicense: IGO6WQ -departmentNumber: 1146 -employeeType: Employee -homePhone: +1 510 398-9772 -initials: S. G. -mobile: +1 510 240-3767 -pager: +1 510 970-2286 -roomNumber: 9602 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ind Suitt,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ind Suitt -sn: Suitt -description: This is Ind Suitt's description -facsimileTelephoneNumber: +1 415 262-9785 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 705-1049 -title: Supreme Peons Mascot -userPassword: Password1 -uid: SuittI -givenName: Ind -mail: SuittI@ba26067a6b444f7cbcc6de889b198ade.bitwarden.com -carLicense: 3SNLM7 -departmentNumber: 1959 -employeeType: Contract -homePhone: +1 415 500-7158 -initials: I. S. -mobile: +1 415 470-9298 -pager: +1 415 656-6806 -roomNumber: 8897 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alyse Walkley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alyse Walkley -sn: Walkley -description: This is Alyse Walkley's description -facsimileTelephoneNumber: +1 818 473-1944 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 549-1502 -title: Chief Janitorial Sales Rep -userPassword: Password1 -uid: WalkleyA -givenName: Alyse -mail: WalkleyA@aadb572867dc4b7098efde5813eb2d27.bitwarden.com -carLicense: A6GC17 -departmentNumber: 2825 -employeeType: Employee -homePhone: +1 818 998-3999 -initials: A. W. -mobile: +1 818 862-7616 -pager: +1 818 161-2556 -roomNumber: 8429 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Julienne Milne,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julienne Milne -sn: Milne -description: This is Julienne Milne's description -facsimileTelephoneNumber: +1 213 664-6446 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 142-3135 -title: Junior Administrative Developer -userPassword: Password1 -uid: MilneJ -givenName: Julienne -mail: MilneJ@738b42a56ab44af39fa9da7b9eaffcee.bitwarden.com -carLicense: 24WBEA -departmentNumber: 6761 -employeeType: Employee -homePhone: +1 213 509-1105 -initials: J. M. -mobile: +1 213 704-5803 -pager: +1 213 754-2707 -roomNumber: 8711 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kit Lesperance,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kit Lesperance -sn: Lesperance -description: This is Kit Lesperance's description -facsimileTelephoneNumber: +1 818 115-1530 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 197-8322 -title: Junior Peons Figurehead -userPassword: Password1 -uid: LesperaK -givenName: Kit -mail: LesperaK@c3ac4e6d63bf42469f2e271613915683.bitwarden.com -carLicense: PFPCWJ -departmentNumber: 7791 -employeeType: Contract -homePhone: +1 818 657-2103 -initials: K. L. -mobile: +1 818 574-1434 -pager: +1 818 156-2494 -roomNumber: 8010 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ladell Jefferson -sn: Jefferson -description: This is Ladell Jefferson's description -facsimileTelephoneNumber: +1 408 865-4258 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 744-8998 -title: Associate Janitorial Czar -userPassword: Password1 -uid: JeffersL -givenName: Ladell -mail: JeffersL@4c2706f148d24c978855dfe00601ca6a.bitwarden.com -carLicense: 2TW4VP -departmentNumber: 8203 -employeeType: Contract -homePhone: +1 408 908-5505 -initials: L. J. -mobile: +1 408 236-8379 -pager: +1 408 538-7678 -roomNumber: 8898 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Libbi Niccolls,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Libbi Niccolls -sn: Niccolls -description: This is Libbi Niccolls's description -facsimileTelephoneNumber: +1 415 874-8582 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 631-9137 -title: Supreme Management Czar -userPassword: Password1 -uid: NiccollL -givenName: Libbi -mail: NiccollL@1db0a368d0764b8fbfe7762b10114efc.bitwarden.com -carLicense: D7K58S -departmentNumber: 6502 -employeeType: Contract -homePhone: +1 415 618-8966 -initials: L. N. -mobile: +1 415 630-6710 -pager: +1 415 206-9551 -roomNumber: 8674 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kas Ashraf,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kas Ashraf -sn: Ashraf -description: This is Kas Ashraf's description -facsimileTelephoneNumber: +1 213 492-9318 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 213 351-7215 -title: Junior Payroll Director -userPassword: Password1 -uid: AshrafK -givenName: Kas -mail: AshrafK@1cb0893ea33843b2b6fb5ad305e95a15.bitwarden.com -carLicense: 83XII3 -departmentNumber: 4512 -employeeType: Contract -homePhone: +1 213 362-3920 -initials: K. A. -mobile: +1 213 422-5945 -pager: +1 213 931-4468 -roomNumber: 8739 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Georgia Henderson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgia Henderson -sn: Henderson -description: This is Georgia Henderson's description -facsimileTelephoneNumber: +1 213 846-5306 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 793-1032 -title: Supreme Peons Developer -userPassword: Password1 -uid: HendersG -givenName: Georgia -mail: HendersG@47451620be86447cb3f001d648f21e9d.bitwarden.com -carLicense: 30YQ7G -departmentNumber: 2452 -employeeType: Employee -homePhone: +1 213 996-5718 -initials: G. H. -mobile: +1 213 138-7941 -pager: +1 213 819-7908 -roomNumber: 9277 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nuri Mand,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nuri Mand -sn: Mand -description: This is Nuri Mand's description -facsimileTelephoneNumber: +1 510 759-4101 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 402-3623 -title: Associate Human Resources Warrior -userPassword: Password1 -uid: MandN -givenName: Nuri -mail: MandN@af4484e6bd354321bc237bc7b6d97e88.bitwarden.com -carLicense: 83QLCG -departmentNumber: 8619 -employeeType: Employee -homePhone: +1 510 812-7574 -initials: N. M. -mobile: +1 510 227-6461 -pager: +1 510 768-5589 -roomNumber: 8644 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shafiq Doi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shafiq Doi -sn: Doi -description: This is Shafiq Doi's description -facsimileTelephoneNumber: +1 415 124-5176 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 802-2582 -title: Master Management Mascot -userPassword: Password1 -uid: DoiS -givenName: Shafiq -mail: DoiS@165536f4f8824483a0990647a9cb54c6.bitwarden.com -carLicense: PS56US -departmentNumber: 7775 -employeeType: Contract -homePhone: +1 415 623-8238 -initials: S. D. -mobile: +1 415 997-7200 -pager: +1 415 424-9698 -roomNumber: 9059 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mamie Angerer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mamie Angerer -sn: Angerer -description: This is Mamie Angerer's description -facsimileTelephoneNumber: +1 510 326-8086 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 333-4582 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: AngererM -givenName: Mamie -mail: AngererM@aa3946ad28f244b28a9df39dee97d247.bitwarden.com -carLicense: A4GFYB -departmentNumber: 5579 -employeeType: Employee -homePhone: +1 510 532-4631 -initials: M. A. -mobile: +1 510 782-2232 -pager: +1 510 844-6542 -roomNumber: 9299 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Trula Ledou,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trula Ledou -sn: Ledou -description: This is Trula Ledou's description -facsimileTelephoneNumber: +1 804 400-6267 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 930-4229 -title: Master Product Development Developer -userPassword: Password1 -uid: LedouT -givenName: Trula -mail: LedouT@cd9e9d5ccd3a4afa9af65d048dc3405e.bitwarden.com -carLicense: YYWWY4 -departmentNumber: 2160 -employeeType: Employee -homePhone: +1 804 644-1081 -initials: T. L. -mobile: +1 804 396-6843 -pager: +1 804 364-6863 -roomNumber: 9417 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hoy Rushton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hoy Rushton -sn: Rushton -description: This is Hoy Rushton's description -facsimileTelephoneNumber: +1 206 749-7871 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 391-2013 -title: Chief Management Consultant -userPassword: Password1 -uid: RushtonH -givenName: Hoy -mail: RushtonH@ec3e2a8f77f04a04b0562ffb64100067.bitwarden.com -carLicense: UNEYB0 -departmentNumber: 3942 -employeeType: Contract -homePhone: +1 206 753-1450 -initials: H. R. -mobile: +1 206 379-1605 -pager: +1 206 719-5598 -roomNumber: 8064 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klarrisa Maciejewski -sn: Maciejewski -description: This is Klarrisa Maciejewski's description -facsimileTelephoneNumber: +1 415 240-2729 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 195-2566 -title: Junior Management Madonna -userPassword: Password1 -uid: MaciejeK -givenName: Klarrisa -mail: MaciejeK@503bf02919104cafa1d31446cc7f0505.bitwarden.com -carLicense: O2NMWG -departmentNumber: 8029 -employeeType: Employee -homePhone: +1 415 569-6205 -initials: K. M. -mobile: +1 415 344-7217 -pager: +1 415 587-5783 -roomNumber: 8714 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bobette Tohama,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobette Tohama -sn: Tohama -description: This is Bobette Tohama's description -facsimileTelephoneNumber: +1 804 221-4799 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 903-3373 -title: Chief Product Development President -userPassword: Password1 -uid: TohamaB -givenName: Bobette -mail: TohamaB@f8d4033617914caebdc40bc652a17f49.bitwarden.com -carLicense: 4Q2XG1 -departmentNumber: 3327 -employeeType: Contract -homePhone: +1 804 597-9587 -initials: B. T. -mobile: +1 804 986-9022 -pager: +1 804 273-7296 -roomNumber: 9580 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Four Elks,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Four Elks -sn: Elks -description: This is Four Elks's description -facsimileTelephoneNumber: +1 804 997-2762 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 488-8234 -title: Chief Human Resources Grunt -userPassword: Password1 -uid: ElksF -givenName: Four -mail: ElksF@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com -carLicense: PF9DFX -departmentNumber: 2355 -employeeType: Normal -homePhone: +1 804 924-8635 -initials: F. E. -mobile: +1 804 916-5582 -pager: +1 804 624-9183 -roomNumber: 8456 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazuo Hempinstall -sn: Hempinstall -description: This is Kazuo Hempinstall's description -facsimileTelephoneNumber: +1 213 945-7514 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 397-9997 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: HempinsK -givenName: Kazuo -mail: HempinsK@f9ccaba996b948fd826c0c115f90045a.bitwarden.com -carLicense: XEU4TV -departmentNumber: 1744 -employeeType: Contract -homePhone: +1 213 311-4697 -initials: K. H. -mobile: +1 213 866-8676 -pager: +1 213 521-2839 -roomNumber: 9759 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alli Kaura,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alli Kaura -sn: Kaura -description: This is Alli Kaura's description -facsimileTelephoneNumber: +1 408 394-4477 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 623-1249 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: KauraA -givenName: Alli -mail: KauraA@86262c8a96f6428ca6c85ec378671d82.bitwarden.com -carLicense: DWEG0O -departmentNumber: 5519 -employeeType: Contract -homePhone: +1 408 408-3446 -initials: A. K. -mobile: +1 408 560-3246 -pager: +1 408 451-3942 -roomNumber: 8525 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gil Walston,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gil Walston -sn: Walston -description: This is Gil Walston's description -facsimileTelephoneNumber: +1 804 975-7561 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 227-9568 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: WalstonG -givenName: Gil -mail: WalstonG@0b7ec0c2364e4e4f8de90b2b167baf77.bitwarden.com -carLicense: 9GE9A8 -departmentNumber: 6673 -employeeType: Contract -homePhone: +1 804 796-2382 -initials: G. W. -mobile: +1 804 588-3886 -pager: +1 804 394-2359 -roomNumber: 9668 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Viole Lopinski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viole Lopinski -sn: Lopinski -description: This is Viole Lopinski's description -facsimileTelephoneNumber: +1 415 335-4028 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 990-2939 -title: Chief Peons President -userPassword: Password1 -uid: LopinskV -givenName: Viole -mail: LopinskV@72255f0203e94d058b1c15913072ab66.bitwarden.com -carLicense: 4KOSNV -departmentNumber: 8989 -employeeType: Normal -homePhone: +1 415 178-1654 -initials: V. L. -mobile: +1 415 258-1353 -pager: +1 415 193-4557 -roomNumber: 9869 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amy StOnge,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amy StOnge -sn: StOnge -description: This is Amy StOnge's description -facsimileTelephoneNumber: +1 213 410-1730 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 331-4588 -title: Chief Payroll Manager -userPassword: Password1 -uid: StOngeA -givenName: Amy -mail: StOngeA@0942a8d54b72463a911186a66f7c67f1.bitwarden.com -carLicense: XQQUBC -departmentNumber: 7390 -employeeType: Normal -homePhone: +1 213 141-1528 -initials: A. S. -mobile: +1 213 388-9518 -pager: +1 213 296-1552 -roomNumber: 8220 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Emogene Cocke,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emogene Cocke -sn: Cocke -description: This is Emogene Cocke's description -facsimileTelephoneNumber: +1 818 695-6440 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 818 964-8921 -title: Junior Peons Fellow -userPassword: Password1 -uid: CockeE -givenName: Emogene -mail: CockeE@837254eeede24c15906b803e5cce94f7.bitwarden.com -carLicense: H102WR -departmentNumber: 5474 -employeeType: Normal -homePhone: +1 818 159-8640 -initials: E. C. -mobile: +1 818 992-9355 -pager: +1 818 679-1850 -roomNumber: 9626 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tash Sails,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tash Sails -sn: Sails -description: This is Tash Sails's description -facsimileTelephoneNumber: +1 804 873-3120 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 626-1361 -title: Associate Product Development Artist -userPassword: Password1 -uid: SailsT -givenName: Tash -mail: SailsT@cb28429eacc145eba144e472491c78c9.bitwarden.com -carLicense: XJRAIJ -departmentNumber: 3778 -employeeType: Contract -homePhone: +1 804 351-9819 -initials: T. S. -mobile: +1 804 909-1117 -pager: +1 804 990-5755 -roomNumber: 8478 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Coral Viriato,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coral Viriato -sn: Viriato -description: This is Coral Viriato's description -facsimileTelephoneNumber: +1 415 537-9867 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 965-5259 -title: Master Human Resources President -userPassword: Password1 -uid: ViriatoC -givenName: Coral -mail: ViriatoC@a3a401e9d5694d8c8d647950b6db5b18.bitwarden.com -carLicense: O3A0Y3 -departmentNumber: 5238 -employeeType: Employee -homePhone: +1 415 264-4365 -initials: C. V. -mobile: +1 415 552-8546 -pager: +1 415 942-6030 -roomNumber: 8242 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Des Zacharias,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Des Zacharias -sn: Zacharias -description: This is Des Zacharias's description -facsimileTelephoneNumber: +1 213 500-3146 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 815-2148 -title: Junior Payroll Stooge -userPassword: Password1 -uid: ZachariD -givenName: Des -mail: ZachariD@4227d8ce5e1a40d984414347da920f58.bitwarden.com -carLicense: C6ABQE -departmentNumber: 2105 -employeeType: Normal -homePhone: +1 213 777-1838 -initials: D. Z. -mobile: +1 213 187-3264 -pager: +1 213 292-7003 -roomNumber: 8424 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Durantaye Skelly,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Durantaye Skelly -sn: Skelly -description: This is Durantaye Skelly's description -facsimileTelephoneNumber: +1 213 860-2211 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 691-4369 -title: Master Product Development Fellow -userPassword: Password1 -uid: SkellyD -givenName: Durantaye -mail: SkellyD@4115c8a730274bce89da518202dd0d0d.bitwarden.com -carLicense: 0QFM5J -departmentNumber: 6596 -employeeType: Contract -homePhone: +1 213 432-9710 -initials: D. S. -mobile: +1 213 564-9120 -pager: +1 213 765-1401 -roomNumber: 8099 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ingaborg Frisk -sn: Frisk -description: This is Ingaborg Frisk's description -facsimileTelephoneNumber: +1 206 966-4939 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 527-7836 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: FriskI -givenName: Ingaborg -mail: FriskI@742e6acfb3ee43e195f05147276956cf.bitwarden.com -carLicense: LODEU9 -departmentNumber: 5307 -employeeType: Contract -homePhone: +1 206 615-8435 -initials: I. F. -mobile: +1 206 478-7804 -pager: +1 206 164-9205 -roomNumber: 8902 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Candie Mitsui,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candie Mitsui -sn: Mitsui -description: This is Candie Mitsui's description -facsimileTelephoneNumber: +1 206 303-4314 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 788-3898 -title: Junior Management Dictator -userPassword: Password1 -uid: MitsuiC -givenName: Candie -mail: MitsuiC@0230c484eaf84d819fed9b62063a4729.bitwarden.com -carLicense: DKKMYF -departmentNumber: 7864 -employeeType: Employee -homePhone: +1 206 128-8891 -initials: C. M. -mobile: +1 206 312-3140 -pager: +1 206 121-2879 -roomNumber: 9821 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinet Brisebois -sn: Brisebois -description: This is Robinet Brisebois's description -facsimileTelephoneNumber: +1 804 684-9085 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 195-7270 -title: Supreme Human Resources Figurehead -userPassword: Password1 -uid: BriseboR -givenName: Robinet -mail: BriseboR@3fc826f5777843e2bdb2f367b35e8c35.bitwarden.com -carLicense: G114L2 -departmentNumber: 2084 -employeeType: Normal -homePhone: +1 804 515-1661 -initials: R. B. -mobile: +1 804 755-1477 -pager: +1 804 156-2037 -roomNumber: 9969 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eline Vanderheyden -sn: Vanderheyden -description: This is Eline Vanderheyden's description -facsimileTelephoneNumber: +1 818 424-7816 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 142-4365 -title: Junior Administrative Mascot -userPassword: Password1 -uid: VanderhE -givenName: Eline -mail: VanderhE@214f04c971b04f9d856cc90c519f21fc.bitwarden.com -carLicense: QAV6P9 -departmentNumber: 9030 -employeeType: Employee -homePhone: +1 818 351-6779 -initials: E. V. -mobile: +1 818 385-6294 -pager: +1 818 234-8561 -roomNumber: 9427 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mathilda Kibler -sn: Kibler -description: This is Mathilda Kibler's description -facsimileTelephoneNumber: +1 415 988-3696 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 415 612-8512 -title: Chief Product Testing Admin -userPassword: Password1 -uid: KiblerM -givenName: Mathilda -mail: KiblerM@0c3e5c070ad6421e82c1342b233868ed.bitwarden.com -carLicense: N963BC -departmentNumber: 3380 -employeeType: Contract -homePhone: +1 415 815-5974 -initials: M. K. -mobile: +1 415 394-7949 -pager: +1 415 266-2944 -roomNumber: 9159 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rocke Baughan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rocke Baughan -sn: Baughan -description: This is Rocke Baughan's description -facsimileTelephoneNumber: +1 408 175-8131 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 750-8700 -title: Supreme Peons Writer -userPassword: Password1 -uid: BaughanR -givenName: Rocke -mail: BaughanR@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com -carLicense: V248W8 -departmentNumber: 3173 -employeeType: Contract -homePhone: +1 408 931-4920 -initials: R. B. -mobile: +1 408 465-9434 -pager: +1 408 403-6634 -roomNumber: 8304 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vyza Tsuk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vyza Tsuk -sn: Tsuk -description: This is Vyza Tsuk's description -facsimileTelephoneNumber: +1 213 542-7363 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 169-9088 -title: Associate Product Development Architect -userPassword: Password1 -uid: TsukV -givenName: Vyza -mail: TsukV@2f60f554d60143df8c782af78b69eca5.bitwarden.com -carLicense: 2ON0A9 -departmentNumber: 5336 -employeeType: Employee -homePhone: +1 213 814-3655 -initials: V. T. -mobile: +1 213 283-7977 -pager: +1 213 629-4452 -roomNumber: 8495 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilf Timmerman -sn: Timmerman -description: This is Wilf Timmerman's description -facsimileTelephoneNumber: +1 408 394-5287 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 408 127-8834 -title: Master Janitorial Warrior -userPassword: Password1 -uid: TimmermW -givenName: Wilf -mail: TimmermW@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com -carLicense: XQ3PP9 -departmentNumber: 8077 -employeeType: Contract -homePhone: +1 408 602-4081 -initials: W. T. -mobile: +1 408 709-5223 -pager: +1 408 425-4066 -roomNumber: 8085 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tiffany Fisprod,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffany Fisprod -sn: Fisprod -description: This is Tiffany Fisprod's description -facsimileTelephoneNumber: +1 213 595-2820 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 569-6179 -title: Master Management Technician -userPassword: Password1 -uid: FisprodT -givenName: Tiffany -mail: FisprodT@47b619accc2242b98a908129e561089a.bitwarden.com -carLicense: T2N2G2 -departmentNumber: 5099 -employeeType: Employee -homePhone: +1 213 897-5656 -initials: T. F. -mobile: +1 213 212-9655 -pager: +1 213 666-7764 -roomNumber: 8273 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rafael Tucker,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rafael Tucker -sn: Tucker -description: This is Rafael Tucker's description -facsimileTelephoneNumber: +1 510 670-3859 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 527-4237 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: TuckerR -givenName: Rafael -mail: TuckerR@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com -carLicense: JE3ULW -departmentNumber: 3372 -employeeType: Employee -homePhone: +1 510 601-8845 -initials: R. T. -mobile: +1 510 446-4497 -pager: +1 510 167-7766 -roomNumber: 9818 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kayle Gedman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kayle Gedman -sn: Gedman -description: This is Kayle Gedman's description -facsimileTelephoneNumber: +1 510 986-4844 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 547-7019 -title: Junior Product Testing Consultant -userPassword: Password1 -uid: GedmanK -givenName: Kayle -mail: GedmanK@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com -carLicense: KJCITQ -departmentNumber: 7962 -employeeType: Employee -homePhone: +1 510 845-2338 -initials: K. G. -mobile: +1 510 582-4904 -pager: +1 510 101-3811 -roomNumber: 8039 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Arthur Axberg,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arthur Axberg -sn: Axberg -description: This is Arthur Axberg's description -facsimileTelephoneNumber: +1 818 128-3744 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 937-7461 -title: Junior Administrative Sales Rep -userPassword: Password1 -uid: AxbergA -givenName: Arthur -mail: AxbergA@8dd73cf85da34f708a5ea6c9b1ceb858.bitwarden.com -carLicense: 5JI616 -departmentNumber: 8910 -employeeType: Employee -homePhone: +1 818 340-1230 -initials: A. A. -mobile: +1 818 253-8394 -pager: +1 818 709-5129 -roomNumber: 8632 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Deeanne Armstead,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deeanne Armstead -sn: Armstead -description: This is Deeanne Armstead's description -facsimileTelephoneNumber: +1 213 798-8237 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 274-9821 -title: Supreme Management Punk -userPassword: Password1 -uid: ArmsteaD -givenName: Deeanne -mail: ArmsteaD@d1d8d0f2434243eabd270c2b3bcc4c7a.bitwarden.com -carLicense: F6XVWG -departmentNumber: 2599 -employeeType: Contract -homePhone: +1 213 871-9166 -initials: D. A. -mobile: +1 213 647-9305 -pager: +1 213 240-3693 -roomNumber: 9675 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gaye Sils,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaye Sils -sn: Sils -description: This is Gaye Sils's description -facsimileTelephoneNumber: +1 206 887-5403 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 599-6442 -title: Chief Product Testing Admin -userPassword: Password1 -uid: SilsG -givenName: Gaye -mail: SilsG@64ae800c21ed412e8086ba9f98972fde.bitwarden.com -carLicense: J3NCSM -departmentNumber: 3912 -employeeType: Normal -homePhone: +1 206 937-5984 -initials: G. S. -mobile: +1 206 839-7839 -pager: +1 206 174-3660 -roomNumber: 8765 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sadan Trottier,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadan Trottier -sn: Trottier -description: This is Sadan Trottier's description -facsimileTelephoneNumber: +1 206 128-9180 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 605-6556 -title: Supreme Peons Stooge -userPassword: Password1 -uid: TrottieS -givenName: Sadan -mail: TrottieS@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com -carLicense: YICAJA -departmentNumber: 3460 -employeeType: Contract -homePhone: +1 206 180-1120 -initials: S. T. -mobile: +1 206 374-8105 -pager: +1 206 885-2027 -roomNumber: 8968 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Reina Woods,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reina Woods -sn: Woods -description: This is Reina Woods's description -facsimileTelephoneNumber: +1 804 883-7900 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 222-9440 -title: Chief Peons Admin -userPassword: Password1 -uid: WoodsR -givenName: Reina -mail: WoodsR@93c66893cda74239a9a56d1199a44457.bitwarden.com -carLicense: SX1EY4 -departmentNumber: 6788 -employeeType: Employee -homePhone: +1 804 828-7836 -initials: R. W. -mobile: +1 804 127-6458 -pager: +1 804 651-2692 -roomNumber: 8510 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Krystalle Evers,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krystalle Evers -sn: Evers -description: This is Krystalle Evers's description -facsimileTelephoneNumber: +1 415 249-1488 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 655-6908 -title: Master Human Resources Dictator -userPassword: Password1 -uid: EversK -givenName: Krystalle -mail: EversK@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com -carLicense: LU92CH -departmentNumber: 2996 -employeeType: Contract -homePhone: +1 415 403-1840 -initials: K. E. -mobile: +1 415 686-2303 -pager: +1 415 868-8756 -roomNumber: 9938 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mair Bascombe,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mair Bascombe -sn: Bascombe -description: This is Mair Bascombe's description -facsimileTelephoneNumber: +1 510 583-3254 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 510 627-7949 -title: Master Management Madonna -userPassword: Password1 -uid: BascombM -givenName: Mair -mail: BascombM@8c75d8449fe241b583cdc3782aba550b.bitwarden.com -carLicense: B6QF24 -departmentNumber: 3769 -employeeType: Employee -homePhone: +1 510 752-2438 -initials: M. B. -mobile: +1 510 865-7821 -pager: +1 510 947-1777 -roomNumber: 9535 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dinker Meehan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dinker Meehan -sn: Meehan -description: This is Dinker Meehan's description -facsimileTelephoneNumber: +1 510 500-4254 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 200-9449 -title: Supreme Product Testing Vice President -userPassword: Password1 -uid: MeehanD -givenName: Dinker -mail: MeehanD@1149878f7b4f4987a9a8b6d8df86a532.bitwarden.com -carLicense: S6SI0T -departmentNumber: 6046 -employeeType: Normal -homePhone: +1 510 163-9156 -initials: D. M. -mobile: +1 510 165-4606 -pager: +1 510 645-7126 -roomNumber: 8056 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Elena Chabrat,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elena Chabrat -sn: Chabrat -description: This is Elena Chabrat's description -facsimileTelephoneNumber: +1 415 466-5158 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 415 506-5303 -title: Chief Payroll Figurehead -userPassword: Password1 -uid: ChabratE -givenName: Elena -mail: ChabratE@3a3f7974ffc147bc8e5ab8732ee37359.bitwarden.com -carLicense: UW30G7 -departmentNumber: 5627 -employeeType: Contract -homePhone: +1 415 653-5566 -initials: E. C. -mobile: +1 415 118-1305 -pager: +1 415 934-8213 -roomNumber: 8667 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rozelle Kunkel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozelle Kunkel -sn: Kunkel -description: This is Rozelle Kunkel's description -facsimileTelephoneNumber: +1 818 481-8399 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 624-3786 -title: Junior Management Manager -userPassword: Password1 -uid: KunkelR -givenName: Rozelle -mail: KunkelR@dd128ede6e3a4a6bba3ffbcc6309e61f.bitwarden.com -carLicense: ISR734 -departmentNumber: 9357 -employeeType: Normal -homePhone: +1 818 235-3235 -initials: R. K. -mobile: +1 818 509-9633 -pager: +1 818 552-1800 -roomNumber: 8977 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hengameh Hebbar -sn: Hebbar -description: This is Hengameh Hebbar's description -facsimileTelephoneNumber: +1 804 469-5551 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 707-8897 -title: Associate Product Development Mascot -userPassword: Password1 -uid: HebbarH -givenName: Hengameh -mail: HebbarH@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com -carLicense: 7O7YJN -departmentNumber: 9609 -employeeType: Normal -homePhone: +1 804 658-1188 -initials: H. H. -mobile: +1 804 302-9804 -pager: +1 804 387-4236 -roomNumber: 9454 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Christine Moree,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christine Moree -sn: Moree -description: This is Christine Moree's description -facsimileTelephoneNumber: +1 818 213-3644 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 592-9002 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: MoreeC -givenName: Christine -mail: MoreeC@81e30a9ac6dd4fba89da9846767cb24b.bitwarden.com -carLicense: ROCI5L -departmentNumber: 6585 -employeeType: Contract -homePhone: +1 818 124-2585 -initials: C. M. -mobile: +1 818 110-1401 -pager: +1 818 251-6672 -roomNumber: 8922 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlyn McGillicuddy -sn: McGillicuddy -description: This is Karlyn McGillicuddy's description -facsimileTelephoneNumber: +1 818 605-5077 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 720-5330 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: McGilliK -givenName: Karlyn -mail: McGilliK@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com -carLicense: YD68SI -departmentNumber: 1210 -employeeType: Normal -homePhone: +1 818 102-7114 -initials: K. M. -mobile: +1 818 124-9202 -pager: +1 818 109-9841 -roomNumber: 9909 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hildegaard Ornburn -sn: Ornburn -description: This is Hildegaard Ornburn's description -facsimileTelephoneNumber: +1 213 991-2180 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 786-5171 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: OrnburnH -givenName: Hildegaard -mail: OrnburnH@9db63434a78e416392ae93e3976c1bfc.bitwarden.com -carLicense: 4DMTES -departmentNumber: 8252 -employeeType: Normal -homePhone: +1 213 832-3899 -initials: H. O. -mobile: +1 213 806-4379 -pager: +1 213 765-5370 -roomNumber: 8516 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elisa Trevethan -sn: Trevethan -description: This is Elisa Trevethan's description -facsimileTelephoneNumber: +1 206 937-6696 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 206 955-6248 -title: Junior Product Testing Technician -userPassword: Password1 -uid: TrevethE -givenName: Elisa -mail: TrevethE@cafef01f34b44ba5b82ee993bce42d43.bitwarden.com -carLicense: LOBUQ0 -departmentNumber: 1735 -employeeType: Employee -homePhone: +1 206 741-4448 -initials: E. T. -mobile: +1 206 329-6292 -pager: +1 206 900-7457 -roomNumber: 9236 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daune Sauvageau -sn: Sauvageau -description: This is Daune Sauvageau's description -facsimileTelephoneNumber: +1 408 121-5580 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 366-8566 -title: Chief Product Testing Dictator -userPassword: Password1 -uid: SauvageD -givenName: Daune -mail: SauvageD@68388d901e1d4ae598f24f58170951da.bitwarden.com -carLicense: 6ERXQ2 -departmentNumber: 1566 -employeeType: Employee -homePhone: +1 408 718-6614 -initials: D. S. -mobile: +1 408 102-2205 -pager: +1 408 959-8563 -roomNumber: 8547 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anje Saward,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anje Saward -sn: Saward -description: This is Anje Saward's description -facsimileTelephoneNumber: +1 510 678-9745 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 538-2574 -title: Chief Janitorial Developer -userPassword: Password1 -uid: SawardA -givenName: Anje -mail: SawardA@742e0d6a67274517a5c3f77f64edc637.bitwarden.com -carLicense: 62TMP3 -departmentNumber: 3920 -employeeType: Normal -homePhone: +1 510 689-4089 -initials: A. S. -mobile: +1 510 965-4158 -pager: +1 510 970-9532 -roomNumber: 9595 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kwok Pringle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kwok Pringle -sn: Pringle -description: This is Kwok Pringle's description -facsimileTelephoneNumber: +1 408 130-3363 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 440-6262 -title: Master Human Resources Pinhead -userPassword: Password1 -uid: PringleK -givenName: Kwok -mail: PringleK@613c9a81ad7c44b9855320367cfca10a.bitwarden.com -carLicense: YS82J3 -departmentNumber: 6604 -employeeType: Employee -homePhone: +1 408 796-5124 -initials: K. P. -mobile: +1 408 329-3611 -pager: +1 408 470-3048 -roomNumber: 8184 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chiho Zilaie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chiho Zilaie -sn: Zilaie -description: This is Chiho Zilaie's description -facsimileTelephoneNumber: +1 818 254-2476 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 818 162-3601 -title: Chief Peons Manager -userPassword: Password1 -uid: ZilaieC -givenName: Chiho -mail: ZilaieC@fd92acc2e6b64b87b315aebd5398fa83.bitwarden.com -carLicense: W8E0QW -departmentNumber: 4680 -employeeType: Contract -homePhone: +1 818 588-7890 -initials: C. Z. -mobile: +1 818 459-1536 -pager: +1 818 111-5706 -roomNumber: 9071 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shaw Leigh,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaw Leigh -sn: Leigh -description: This is Shaw Leigh's description -facsimileTelephoneNumber: +1 818 323-4904 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 845-8736 -title: Junior Janitorial Writer -userPassword: Password1 -uid: LeighS -givenName: Shaw -mail: LeighS@b8d71981403d4ad3936eae858f7c09c1.bitwarden.com -carLicense: 750SOP -departmentNumber: 1757 -employeeType: Normal -homePhone: +1 818 992-1728 -initials: S. L. -mobile: +1 818 707-7530 -pager: +1 818 988-5677 -roomNumber: 8434 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saundra Cizmar -sn: Cizmar -description: This is Saundra Cizmar's description -facsimileTelephoneNumber: +1 415 662-1020 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 569-3992 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: CizmarS -givenName: Saundra -mail: CizmarS@6e9d465e02444df3bab419ab8506be32.bitwarden.com -carLicense: LJTF0G -departmentNumber: 5075 -employeeType: Employee -homePhone: +1 415 196-2152 -initials: S. C. -mobile: +1 415 186-6168 -pager: +1 415 293-6662 -roomNumber: 8285 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosita Updt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosita Updt -sn: Updt -description: This is Rosita Updt's description -facsimileTelephoneNumber: +1 818 892-1777 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 107-5245 -title: Chief Payroll Punk -userPassword: Password1 -uid: UpdtR -givenName: Rosita -mail: UpdtR@cf19b52e52064a0db712a3ef1a76cd1a.bitwarden.com -carLicense: 9G1P7I -departmentNumber: 1290 -employeeType: Contract -homePhone: +1 818 612-8970 -initials: R. U. -mobile: +1 818 526-9892 -pager: +1 818 911-7321 -roomNumber: 8381 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryPat Wentworth -sn: Wentworth -description: This is MaryPat Wentworth's description -facsimileTelephoneNumber: +1 510 378-9192 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 443-3477 -title: Junior Product Testing Punk -userPassword: Password1 -uid: WentworM -givenName: MaryPat -mail: WentworM@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com -carLicense: LU6D42 -departmentNumber: 3614 -employeeType: Employee -homePhone: +1 510 332-6614 -initials: M. W. -mobile: +1 510 900-2074 -pager: +1 510 254-2497 -roomNumber: 8096 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baljinder Weisenberg -sn: Weisenberg -description: This is Baljinder Weisenberg's description -facsimileTelephoneNumber: +1 408 660-8667 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 408 255-5277 -title: Master Janitorial Stooge -userPassword: Password1 -uid: WeisenbB -givenName: Baljinder -mail: WeisenbB@f4d67a28b94c425786eaa6b689514463.bitwarden.com -carLicense: HKQ5SF -departmentNumber: 1571 -employeeType: Employee -homePhone: +1 408 962-6022 -initials: B. W. -mobile: +1 408 680-3722 -pager: +1 408 409-9609 -roomNumber: 8290 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanda DeStefani -sn: DeStefani -description: This is Vanda DeStefani's description -facsimileTelephoneNumber: +1 206 842-5491 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 206 971-9562 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: DeStefaV -givenName: Vanda -mail: DeStefaV@9dcbc984add8456599771980772d506e.bitwarden.com -carLicense: 4BQB6R -departmentNumber: 6121 -employeeType: Employee -homePhone: +1 206 147-4827 -initials: V. D. -mobile: +1 206 891-4689 -pager: +1 206 168-8896 -roomNumber: 8204 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Selim Kriegler,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selim Kriegler -sn: Kriegler -description: This is Selim Kriegler's description -facsimileTelephoneNumber: +1 213 115-1291 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 865-5625 -title: Associate Peons Mascot -userPassword: Password1 -uid: KriegleS -givenName: Selim -mail: KriegleS@b037ffa0817e41fb9bd6ea3947c6a216.bitwarden.com -carLicense: EX8X42 -departmentNumber: 9900 -employeeType: Contract -homePhone: +1 213 247-9873 -initials: S. K. -mobile: +1 213 212-9305 -pager: +1 213 747-7047 -roomNumber: 9873 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tae Jeng,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tae Jeng -sn: Jeng -description: This is Tae Jeng's description -facsimileTelephoneNumber: +1 818 457-2027 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 473-7664 -title: Junior Administrative Fellow -userPassword: Password1 -uid: JengT -givenName: Tae -mail: JengT@96b2a23653bd4867b5a7bf172ebf238c.bitwarden.com -carLicense: V1LL10 -departmentNumber: 6920 -employeeType: Contract -homePhone: +1 818 943-4312 -initials: T. J. -mobile: +1 818 262-1142 -pager: +1 818 631-8064 -roomNumber: 8896 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bahadir Grassmann -sn: Grassmann -description: This is Bahadir Grassmann's description -facsimileTelephoneNumber: +1 415 707-2277 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 438-5866 -title: Associate Payroll Developer -userPassword: Password1 -uid: GrassmaB -givenName: Bahadir -mail: GrassmaB@6776642cb6824166a999264ad8dc48c5.bitwarden.com -carLicense: XYQO73 -departmentNumber: 7144 -employeeType: Employee -homePhone: +1 415 586-3350 -initials: B. G. -mobile: +1 415 632-3978 -pager: +1 415 883-8244 -roomNumber: 8752 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Faz Chan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faz Chan -sn: Chan -description: This is Faz Chan's description -facsimileTelephoneNumber: +1 415 713-5386 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 415 765-2739 -title: Junior Payroll Dictator -userPassword: Password1 -uid: ChanF -givenName: Faz -mail: ChanF@fadd1eac8fe2451fa3ba21f515baaf1e.bitwarden.com -carLicense: V94R0C -departmentNumber: 9743 -employeeType: Employee -homePhone: +1 415 779-6966 -initials: F. C. -mobile: +1 415 714-8053 -pager: +1 415 845-5279 -roomNumber: 9453 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ericka Hayes,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ericka Hayes -sn: Hayes -description: This is Ericka Hayes's description -facsimileTelephoneNumber: +1 818 782-4515 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 447-2961 -title: Chief Administrative Developer -userPassword: Password1 -uid: HayesE -givenName: Ericka -mail: HayesE@a90573a98b164929a489e62b8b0a18ec.bitwarden.com -carLicense: UL1RIH -departmentNumber: 1076 -employeeType: Employee -homePhone: +1 818 580-9428 -initials: E. H. -mobile: +1 818 377-6647 -pager: +1 818 950-3458 -roomNumber: 8708 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Calli Pharr,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calli Pharr -sn: Pharr -description: This is Calli Pharr's description -facsimileTelephoneNumber: +1 206 332-3247 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 765-8866 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: PharrC -givenName: Calli -mail: PharrC@b4ffcfe46a614ae194b415ba89e17560.bitwarden.com -carLicense: DE4O2K -departmentNumber: 8439 -employeeType: Contract -homePhone: +1 206 737-5092 -initials: C. P. -mobile: +1 206 328-9213 -pager: +1 206 137-9843 -roomNumber: 8975 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pamela Hufana,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pamela Hufana -sn: Hufana -description: This is Pamela Hufana's description -facsimileTelephoneNumber: +1 213 274-4662 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 628-7071 -title: Chief Janitorial Consultant -userPassword: Password1 -uid: HufanaP -givenName: Pamela -mail: HufanaP@b524d22ec70741b18bc6152d2cf11515.bitwarden.com -carLicense: G2W2L4 -departmentNumber: 9129 -employeeType: Normal -homePhone: +1 213 283-8005 -initials: P. H. -mobile: +1 213 151-4215 -pager: +1 213 550-4038 -roomNumber: 9922 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jazmin Wobbrock -sn: Wobbrock -description: This is Jazmin Wobbrock's description -facsimileTelephoneNumber: +1 804 846-9422 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 452-4151 -title: Associate Product Testing Consultant -userPassword: Password1 -uid: WobbrocJ -givenName: Jazmin -mail: WobbrocJ@3b0170f109034332b61e67bb6799825e.bitwarden.com -carLicense: PQ1TVF -departmentNumber: 1326 -employeeType: Employee -homePhone: +1 804 480-2061 -initials: J. W. -mobile: +1 804 935-2705 -pager: +1 804 754-9429 -roomNumber: 9286 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carley Fogleman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carley Fogleman -sn: Fogleman -description: This is Carley Fogleman's description -facsimileTelephoneNumber: +1 818 252-5407 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 818 502-6725 -title: Associate Payroll Stooge -userPassword: Password1 -uid: FoglemaC -givenName: Carley -mail: FoglemaC@aef5e63df5f745ab8b099bc2096e5d54.bitwarden.com -carLicense: 6ML7IO -departmentNumber: 4752 -employeeType: Employee -homePhone: +1 818 136-3115 -initials: C. F. -mobile: +1 818 270-6922 -pager: +1 818 153-3243 -roomNumber: 9920 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marsh Gribbons,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marsh Gribbons -sn: Gribbons -description: This is Marsh Gribbons's description -facsimileTelephoneNumber: +1 213 697-4479 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 846-7783 -title: Master Peons Artist -userPassword: Password1 -uid: GribbonM -givenName: Marsh -mail: GribbonM@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com -carLicense: 2E5U7O -departmentNumber: 9777 -employeeType: Contract -homePhone: +1 213 225-3664 -initials: M. G. -mobile: +1 213 248-4430 -pager: +1 213 148-6373 -roomNumber: 8850 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Herminia Corvo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herminia Corvo -sn: Corvo -description: This is Herminia Corvo's description -facsimileTelephoneNumber: +1 415 914-8673 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 987-8977 -title: Supreme Peons Czar -userPassword: Password1 -uid: CorvoH -givenName: Herminia -mail: CorvoH@755e2f2f01064fb58f5836b47a9f6953.bitwarden.com -carLicense: UMLIPY -departmentNumber: 3318 -employeeType: Contract -homePhone: +1 415 718-3303 -initials: H. C. -mobile: +1 415 998-1237 -pager: +1 415 358-9473 -roomNumber: 9752 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Loutitia Bruce,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loutitia Bruce -sn: Bruce -description: This is Loutitia Bruce's description -facsimileTelephoneNumber: +1 510 482-2687 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 743-4828 -title: Master Product Development Grunt -userPassword: Password1 -uid: BruceL -givenName: Loutitia -mail: BruceL@c5db51a01b18429da119a54ca0483290.bitwarden.com -carLicense: BPGFU7 -departmentNumber: 4422 -employeeType: Contract -homePhone: +1 510 118-1915 -initials: L. B. -mobile: +1 510 449-8409 -pager: +1 510 922-2419 -roomNumber: 9185 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirlene Twyman -sn: Twyman -description: This is Shirlene Twyman's description -facsimileTelephoneNumber: +1 415 160-7451 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 930-1794 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: TwymanS -givenName: Shirlene -mail: TwymanS@f0819837e05a4186824c71a4f41886b6.bitwarden.com -carLicense: 77JCDD -departmentNumber: 7273 -employeeType: Normal -homePhone: +1 415 908-4340 -initials: S. T. -mobile: +1 415 382-7137 -pager: +1 415 857-6002 -roomNumber: 8478 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Genga Poley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genga Poley -sn: Poley -description: This is Genga Poley's description -facsimileTelephoneNumber: +1 510 695-1558 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 364-4299 -title: Supreme Peons Vice President -userPassword: Password1 -uid: PoleyG -givenName: Genga -mail: PoleyG@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com -carLicense: LTY84T -departmentNumber: 3842 -employeeType: Employee -homePhone: +1 510 880-2079 -initials: G. P. -mobile: +1 510 682-6477 -pager: +1 510 229-9659 -roomNumber: 8464 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JamesMichael Creamer -sn: Creamer -description: This is JamesMichael Creamer's description -facsimileTelephoneNumber: +1 206 867-5890 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 523-3146 -title: Master Product Development Consultant -userPassword: Password1 -uid: CreamerJ -givenName: JamesMichael -mail: CreamerJ@592065f7f9cc4bfea26a7ca4df44dee5.bitwarden.com -carLicense: LIW6BT -departmentNumber: 6200 -employeeType: Employee -homePhone: +1 206 641-5832 -initials: J. C. -mobile: +1 206 738-8149 -pager: +1 206 956-5301 -roomNumber: 8307 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Petunia Gunther,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petunia Gunther -sn: Gunther -description: This is Petunia Gunther's description -facsimileTelephoneNumber: +1 415 635-8648 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 396-4515 -title: Chief Administrative Fellow -userPassword: Password1 -uid: GuntherP -givenName: Petunia -mail: GuntherP@c1fb4f6fb6854ac09da830fa08bf174b.bitwarden.com -carLicense: 6FUTYE -departmentNumber: 6981 -employeeType: Employee -homePhone: +1 415 281-5811 -initials: P. G. -mobile: +1 415 573-2195 -pager: +1 415 367-5405 -roomNumber: 8731 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zahirul Dinkel -sn: Dinkel -description: This is Zahirul Dinkel's description -facsimileTelephoneNumber: +1 408 979-2853 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 408 304-5748 -title: Chief Janitorial Technician -userPassword: Password1 -uid: DinkelZ -givenName: Zahirul -mail: DinkelZ@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com -carLicense: 1PDR96 -departmentNumber: 6487 -employeeType: Employee -homePhone: +1 408 443-6033 -initials: Z. D. -mobile: +1 408 630-6822 -pager: +1 408 559-1339 -roomNumber: 9396 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shabbir Throgmorton -sn: Throgmorton -description: This is Shabbir Throgmorton's description -facsimileTelephoneNumber: +1 510 974-7274 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 709-5728 -title: Chief Product Development Consultant -userPassword: Password1 -uid: ThrogmoS -givenName: Shabbir -mail: ThrogmoS@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com -carLicense: AIX6HV -departmentNumber: 3650 -employeeType: Normal -homePhone: +1 510 893-3323 -initials: S. T. -mobile: +1 510 168-1616 -pager: +1 510 178-5479 -roomNumber: 9530 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bernice Yuan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernice Yuan -sn: Yuan -description: This is Bernice Yuan's description -facsimileTelephoneNumber: +1 213 279-4000 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 216-1566 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: YuanB -givenName: Bernice -mail: YuanB@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com -carLicense: 1R3YO1 -departmentNumber: 3837 -employeeType: Normal -homePhone: +1 213 359-2175 -initials: B. Y. -mobile: +1 213 736-4611 -pager: +1 213 834-6169 -roomNumber: 9873 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Brigitte Zahn,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigitte Zahn -sn: Zahn -description: This is Brigitte Zahn's description -facsimileTelephoneNumber: +1 415 529-6300 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 814-1492 -title: Chief Payroll Technician -userPassword: Password1 -uid: ZahnB -givenName: Brigitte -mail: ZahnB@b2efef5ed30b40fb860407b9142be3e0.bitwarden.com -carLicense: FLY8R8 -departmentNumber: 6779 -employeeType: Contract -homePhone: +1 415 262-1387 -initials: B. Z. -mobile: +1 415 580-3140 -pager: +1 415 893-2854 -roomNumber: 8775 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lexis Otsuka,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lexis Otsuka -sn: Otsuka -description: This is Lexis Otsuka's description -facsimileTelephoneNumber: +1 510 714-5286 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 465-7264 -title: Associate Management Engineer -userPassword: Password1 -uid: OtsukaL -givenName: Lexis -mail: OtsukaL@e0abe3f47abe4097a988502110393014.bitwarden.com -carLicense: X8KUAH -departmentNumber: 1565 -employeeType: Normal -homePhone: +1 510 825-1823 -initials: L. O. -mobile: +1 510 284-2032 -pager: +1 510 837-3897 -roomNumber: 9683 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Avril Hoffelt,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avril Hoffelt -sn: Hoffelt -description: This is Avril Hoffelt's description -facsimileTelephoneNumber: +1 206 317-9008 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 187-5345 -title: Master Management Dictator -userPassword: Password1 -uid: HoffeltA -givenName: Avril -mail: HoffeltA@41667abeeb534d61bc80cd7b46b3bcf0.bitwarden.com -carLicense: RWUHGH -departmentNumber: 5159 -employeeType: Normal -homePhone: +1 206 193-4071 -initials: A. H. -mobile: +1 206 986-2562 -pager: +1 206 729-7201 -roomNumber: 9852 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caye Kazimierski -sn: Kazimierski -description: This is Caye Kazimierski's description -facsimileTelephoneNumber: +1 510 527-2331 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 502-3694 -title: Junior Human Resources Punk -userPassword: Password1 -uid: KazimieC -givenName: Caye -mail: KazimieC@62f64ab8f08042e48744a09da3d99a8f.bitwarden.com -carLicense: 1X895J -departmentNumber: 6620 -employeeType: Employee -homePhone: +1 510 706-5180 -initials: C. K. -mobile: +1 510 504-3128 -pager: +1 510 833-5240 -roomNumber: 9422 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgeta Gidaro -sn: Gidaro -description: This is Georgeta Gidaro's description -facsimileTelephoneNumber: +1 510 244-9397 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 224-8468 -title: Master Administrative Janitor -userPassword: Password1 -uid: GidaroG -givenName: Georgeta -mail: GidaroG@ba870021396f4a5691ef47f553098ab0.bitwarden.com -carLicense: WCJNGR -departmentNumber: 4362 -employeeType: Contract -homePhone: +1 510 719-8198 -initials: G. G. -mobile: +1 510 933-5553 -pager: +1 510 923-7499 -roomNumber: 8809 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vax Regier,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vax Regier -sn: Regier -description: This is Vax Regier's description -facsimileTelephoneNumber: +1 510 472-7089 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 925-5073 -title: Master Peons Madonna -userPassword: Password1 -uid: RegierV -givenName: Vax -mail: RegierV@871acffc5fd64b9296d59bdd7ff870b0.bitwarden.com -carLicense: TL54MN -departmentNumber: 1119 -employeeType: Employee -homePhone: +1 510 480-4062 -initials: V. R. -mobile: +1 510 879-8152 -pager: +1 510 428-8656 -roomNumber: 9809 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Meara Lindsey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meara Lindsey -sn: Lindsey -description: This is Meara Lindsey's description -facsimileTelephoneNumber: +1 408 196-3111 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 682-4336 -title: Master Peons Figurehead -userPassword: Password1 -uid: LindseyM -givenName: Meara -mail: LindseyM@f48b3f3250734c97804fc50043b90fe4.bitwarden.com -carLicense: AY7U2M -departmentNumber: 7825 -employeeType: Normal -homePhone: +1 408 930-4948 -initials: M. L. -mobile: +1 408 321-8852 -pager: +1 408 823-7481 -roomNumber: 8199 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Aeriel Juan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aeriel Juan -sn: Juan -description: This is Aeriel Juan's description -facsimileTelephoneNumber: +1 804 576-5699 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 555-5652 -title: Master Product Development Developer -userPassword: Password1 -uid: JuanA -givenName: Aeriel -mail: JuanA@6cf8a50be5a34e5ca28a7f3503d636ef.bitwarden.com -carLicense: EVUCG0 -departmentNumber: 7732 -employeeType: Contract -homePhone: +1 804 161-7588 -initials: A. J. -mobile: +1 804 512-2040 -pager: +1 804 700-2646 -roomNumber: 9508 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dear Valerien,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dear Valerien -sn: Valerien -description: This is Dear Valerien's description -facsimileTelephoneNumber: +1 510 358-1714 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 938-5491 -title: Associate Human Resources Czar -userPassword: Password1 -uid: ValerieD -givenName: Dear -mail: ValerieD@8e1298be63e547e0a393778bd9158d77.bitwarden.com -carLicense: 89GERV -departmentNumber: 9422 -employeeType: Contract -homePhone: +1 510 660-8998 -initials: D. V. -mobile: +1 510 749-4150 -pager: +1 510 263-8951 -roomNumber: 8701 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madlin Dagoulis -sn: Dagoulis -description: This is Madlin Dagoulis's description -facsimileTelephoneNumber: +1 408 949-1247 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 498-8380 -title: Supreme Product Development Consultant -userPassword: Password1 -uid: DagouliM -givenName: Madlin -mail: DagouliM@c9027f607987451aa869ec32b2ad0708.bitwarden.com -carLicense: S28WV3 -departmentNumber: 3165 -employeeType: Normal -homePhone: +1 408 797-9507 -initials: M. D. -mobile: +1 408 397-1997 -pager: +1 408 577-6276 -roomNumber: 8978 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jennica Wasylyk -sn: Wasylyk -description: This is Jennica Wasylyk's description -facsimileTelephoneNumber: +1 510 812-9308 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 296-2018 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: WasylykJ -givenName: Jennica -mail: WasylykJ@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com -carLicense: H7I32G -departmentNumber: 6860 -employeeType: Contract -homePhone: +1 510 492-7138 -initials: J. W. -mobile: +1 510 889-1861 -pager: +1 510 407-6826 -roomNumber: 8754 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shobana Bardsley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shobana Bardsley -sn: Bardsley -description: This is Shobana Bardsley's description -facsimileTelephoneNumber: +1 415 340-6690 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 861-1232 -title: Chief Payroll Czar -userPassword: Password1 -uid: BardsleS -givenName: Shobana -mail: BardsleS@190762f539394f3d8d0e37edbd48fa26.bitwarden.com -carLicense: PIM19O -departmentNumber: 8065 -employeeType: Contract -homePhone: +1 415 557-9069 -initials: S. B. -mobile: +1 415 658-7887 -pager: +1 415 800-9689 -roomNumber: 8000 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Taffy Jemczyk -sn: Jemczyk -description: This is Taffy Jemczyk's description -facsimileTelephoneNumber: +1 510 955-5634 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 335-6561 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: JemczykT -givenName: Taffy -mail: JemczykT@d9a2b19f9cc14fe692b39c04dad264af.bitwarden.com -carLicense: JUPQK8 -departmentNumber: 1954 -employeeType: Employee -homePhone: +1 510 197-1248 -initials: T. J. -mobile: +1 510 158-5407 -pager: +1 510 407-3622 -roomNumber: 9941 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Iona Kohl,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Iona Kohl -sn: Kohl -description: This is Iona Kohl's description -facsimileTelephoneNumber: +1 408 843-6914 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 856-7914 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: KohlI -givenName: Iona -mail: KohlI@6de130a8139a479abd748cccf12fccd5.bitwarden.com -carLicense: RC02KG -departmentNumber: 3975 -employeeType: Employee -homePhone: +1 408 612-1684 -initials: I. K. -mobile: +1 408 881-8220 -pager: +1 408 838-5690 -roomNumber: 9326 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Idette Ramage,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idette Ramage -sn: Ramage -description: This is Idette Ramage's description -facsimileTelephoneNumber: +1 206 587-9075 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 998-7826 -title: Master Product Testing Artist -userPassword: Password1 -uid: RamageI -givenName: Idette -mail: RamageI@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com -carLicense: 1B9YWQ -departmentNumber: 1970 -employeeType: Employee -homePhone: +1 206 911-7141 -initials: I. R. -mobile: +1 206 330-8525 -pager: +1 206 799-8446 -roomNumber: 9729 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mick Jakab,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mick Jakab -sn: Jakab -description: This is Mick Jakab's description -facsimileTelephoneNumber: +1 213 697-5784 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 115-8602 -title: Junior Product Development Visionary -userPassword: Password1 -uid: JakabM -givenName: Mick -mail: JakabM@8ae2116c03884751957c5ca2ff18a644.bitwarden.com -carLicense: BJ8V90 -departmentNumber: 7491 -employeeType: Employee -homePhone: +1 213 688-9564 -initials: M. J. -mobile: +1 213 661-1361 -pager: +1 213 357-4450 -roomNumber: 9476 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LeRoy Wissinger -sn: Wissinger -description: This is LeRoy Wissinger's description -facsimileTelephoneNumber: +1 415 492-4787 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 911-3261 -title: Junior Payroll Engineer -userPassword: Password1 -uid: WissingL -givenName: LeRoy -mail: WissingL@d0cf6383cc594af9bf44d435b5ef79a1.bitwarden.com -carLicense: 1QO17F -departmentNumber: 8672 -employeeType: Normal -homePhone: +1 415 292-5209 -initials: L. W. -mobile: +1 415 520-7635 -pager: +1 415 743-5492 -roomNumber: 9892 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Clay Staats,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clay Staats -sn: Staats -description: This is Clay Staats's description -facsimileTelephoneNumber: +1 804 537-9170 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 957-8693 -title: Chief Janitorial Writer -userPassword: Password1 -uid: StaatsC -givenName: Clay -mail: StaatsC@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com -carLicense: UOT7LB -departmentNumber: 7920 -employeeType: Employee -homePhone: +1 804 441-5431 -initials: C. S. -mobile: +1 804 608-3643 -pager: +1 804 778-8174 -roomNumber: 8037 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zulema Leavitt -sn: Leavitt -description: This is Zulema Leavitt's description -facsimileTelephoneNumber: +1 818 568-5860 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 818 122-6308 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: LeavittZ -givenName: Zulema -mail: LeavittZ@3f14bb0cade24248b56a7e113187211c.bitwarden.com -carLicense: 3UWB93 -departmentNumber: 6012 -employeeType: Contract -homePhone: +1 818 880-8058 -initials: Z. L. -mobile: +1 818 568-7255 -pager: +1 818 241-6498 -roomNumber: 9499 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elsbeth Schadan -sn: Schadan -description: This is Elsbeth Schadan's description -facsimileTelephoneNumber: +1 206 458-2215 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 206 137-5347 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: SchadanE -givenName: Elsbeth -mail: SchadanE@82a02eb22e9446a98ae50c8b159eeb8e.bitwarden.com -carLicense: QT97O6 -departmentNumber: 3774 -employeeType: Normal -homePhone: +1 206 415-7393 -initials: E. S. -mobile: +1 206 972-9087 -pager: +1 206 812-6994 -roomNumber: 9519 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ronica Dummer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronica Dummer -sn: Dummer -description: This is Ronica Dummer's description -facsimileTelephoneNumber: +1 408 695-2140 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 562-8958 -title: Associate Product Testing President -userPassword: Password1 -uid: DummerR -givenName: Ronica -mail: DummerR@c643a761475a4a67b1e62fab24451a4d.bitwarden.com -carLicense: C4O324 -departmentNumber: 4469 -employeeType: Normal -homePhone: +1 408 448-8321 -initials: R. D. -mobile: +1 408 796-5361 -pager: +1 408 629-8056 -roomNumber: 8198 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanBernard Vandergeest -sn: Vandergeest -description: This is JeanBernard Vandergeest's description -facsimileTelephoneNumber: +1 415 933-7301 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 989-1199 -title: Master Product Testing Fellow -userPassword: Password1 -uid: VandergJ -givenName: JeanBernard -mail: VandergJ@61697331f90443959b7bd23e7a2ee775.bitwarden.com -carLicense: W77YQ6 -departmentNumber: 3503 -employeeType: Normal -homePhone: +1 415 488-5274 -initials: J. V. -mobile: +1 415 235-4826 -pager: +1 415 130-2373 -roomNumber: 8051 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rolf Maudrie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rolf Maudrie -sn: Maudrie -description: This is Rolf Maudrie's description -facsimileTelephoneNumber: +1 213 805-2149 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 166-7833 -title: Chief Peons Technician -userPassword: Password1 -uid: MaudrieR -givenName: Rolf -mail: MaudrieR@8717d7d6686445eba152afa0241a3ea0.bitwarden.com -carLicense: ISWXC0 -departmentNumber: 2606 -employeeType: Employee -homePhone: +1 213 152-9255 -initials: R. M. -mobile: +1 213 354-2827 -pager: +1 213 263-2172 -roomNumber: 9041 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sidonnie Comp,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sidonnie Comp -sn: Comp -description: This is Sidonnie Comp's description -facsimileTelephoneNumber: +1 510 370-6879 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 510 244-6798 -title: Chief Peons Engineer -userPassword: Password1 -uid: CompS -givenName: Sidonnie -mail: CompS@ec75342deb7d449a90956cf996c042fb.bitwarden.com -carLicense: OFOND1 -departmentNumber: 1965 -employeeType: Contract -homePhone: +1 510 301-6358 -initials: S. C. -mobile: +1 510 987-3878 -pager: +1 510 844-9227 -roomNumber: 9548 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jimmie Mand,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jimmie Mand -sn: Mand -description: This is Jimmie Mand's description -facsimileTelephoneNumber: +1 510 876-8939 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 688-1435 -title: Supreme Management Technician -userPassword: Password1 -uid: MandJ -givenName: Jimmie -mail: MandJ@02331ebbeac0451ea60775fb2cc7fdc9.bitwarden.com -carLicense: 1FQ0VP -departmentNumber: 4268 -employeeType: Contract -homePhone: +1 510 313-5612 -initials: J. M. -mobile: +1 510 955-5647 -pager: +1 510 179-7522 -roomNumber: 8266 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Esmaria Walston,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esmaria Walston -sn: Walston -description: This is Esmaria Walston's description -facsimileTelephoneNumber: +1 206 669-3400 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 625-9788 -title: Associate Peons Technician -userPassword: Password1 -uid: WalstonE -givenName: Esmaria -mail: WalstonE@c66615aa805449f0a34309614a139187.bitwarden.com -carLicense: DX2Y4H -departmentNumber: 7663 -employeeType: Contract -homePhone: +1 206 558-5169 -initials: E. W. -mobile: +1 206 474-3112 -pager: +1 206 913-6095 -roomNumber: 9225 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Claude LaVecchia,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claude LaVecchia -sn: LaVecchia -description: This is Claude LaVecchia's description -facsimileTelephoneNumber: +1 213 651-5188 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 677-1746 -title: Master Management Artist -userPassword: Password1 -uid: LaVecchC -givenName: Claude -mail: LaVecchC@537a7fb8e8084a50ad524dcf8366437e.bitwarden.com -carLicense: 73R6NR -departmentNumber: 6758 -employeeType: Employee -homePhone: +1 213 705-2074 -initials: C. L. -mobile: +1 213 902-8519 -pager: +1 213 775-2263 -roomNumber: 9793 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rusty Montgomery,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rusty Montgomery -sn: Montgomery -description: This is Rusty Montgomery's description -facsimileTelephoneNumber: +1 510 285-2755 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 411-7308 -title: Master Product Development Technician -userPassword: Password1 -uid: MontgomR -givenName: Rusty -mail: MontgomR@d89a4c96e85d46e9b90aee84eca8553c.bitwarden.com -carLicense: W5F3VF -departmentNumber: 4779 -employeeType: Contract -homePhone: +1 510 959-2152 -initials: R. M. -mobile: +1 510 485-1344 -pager: +1 510 264-4438 -roomNumber: 8428 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Chelsey Favreau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsey Favreau -sn: Favreau -description: This is Chelsey Favreau's description -facsimileTelephoneNumber: +1 213 352-1672 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 450-7317 -title: Supreme Peons Admin -userPassword: Password1 -uid: FavreauC -givenName: Chelsey -mail: FavreauC@a80e7f60ec3848439689791d9f11c058.bitwarden.com -carLicense: OPDT5R -departmentNumber: 2104 -employeeType: Normal -homePhone: +1 213 282-4731 -initials: C. F. -mobile: +1 213 774-3703 -pager: +1 213 212-2234 -roomNumber: 9382 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=JulieAnne Drubld,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JulieAnne Drubld -sn: Drubld -description: This is JulieAnne Drubld's description -facsimileTelephoneNumber: +1 213 484-3433 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 106-9700 -title: Associate Management Dictator -userPassword: Password1 -uid: DrubldJ -givenName: JulieAnne -mail: DrubldJ@377af438e28144f198471c633c478745.bitwarden.com -carLicense: 68BOKG -departmentNumber: 1983 -employeeType: Contract -homePhone: +1 213 775-3431 -initials: J. D. -mobile: +1 213 946-5212 -pager: +1 213 929-1717 -roomNumber: 8729 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rafiq Mihara -sn: Mihara -description: This is Rafiq Mihara's description -facsimileTelephoneNumber: +1 510 172-4475 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 170-3878 -title: Chief Human Resources Warrior -userPassword: Password1 -uid: MiharaR -givenName: Rafiq -mail: MiharaR@5961547593ce4d3d831c972ef1cd392b.bitwarden.com -carLicense: KHA6RW -departmentNumber: 9149 -employeeType: Normal -homePhone: +1 510 940-2359 -initials: R. M. -mobile: +1 510 888-9762 -pager: +1 510 196-5722 -roomNumber: 9294 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninetta Kadlecik -sn: Kadlecik -description: This is Ninetta Kadlecik's description -facsimileTelephoneNumber: +1 818 853-3478 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 104-5359 -title: Junior Payroll Director -userPassword: Password1 -uid: KadleciN -givenName: Ninetta -mail: KadleciN@f84feca728aa4b08a80aa164ca1230d9.bitwarden.com -carLicense: 5MA1DI -departmentNumber: 3621 -employeeType: Normal -homePhone: +1 818 987-8186 -initials: N. K. -mobile: +1 818 362-5880 -pager: +1 818 190-1042 -roomNumber: 9425 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shantee Moulton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shantee Moulton -sn: Moulton -description: This is Shantee Moulton's description -facsimileTelephoneNumber: +1 213 893-1535 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 102-3914 -title: Master Payroll Fellow -userPassword: Password1 -uid: MoultonS -givenName: Shantee -mail: MoultonS@5c0caf6aaf894e2787d090d3ee4667c0.bitwarden.com -carLicense: DPR6VE -departmentNumber: 6043 -employeeType: Contract -homePhone: +1 213 446-9634 -initials: S. M. -mobile: +1 213 389-4120 -pager: +1 213 442-1961 -roomNumber: 8281 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Camilla Sayegh,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camilla Sayegh -sn: Sayegh -description: This is Camilla Sayegh's description -facsimileTelephoneNumber: +1 408 338-1200 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 785-2282 -title: Chief Management Architect -userPassword: Password1 -uid: SayeghC -givenName: Camilla -mail: SayeghC@4ecb285ebb064bbf967c6e0c912612d7.bitwarden.com -carLicense: 1PO89Q -departmentNumber: 3593 -employeeType: Normal -homePhone: +1 408 580-6456 -initials: C. S. -mobile: +1 408 806-4963 -pager: +1 408 871-5047 -roomNumber: 9332 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Txp Wojdylo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Txp Wojdylo -sn: Wojdylo -description: This is Txp Wojdylo's description -facsimileTelephoneNumber: +1 818 427-8819 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 957-4535 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: WojdyloT -givenName: Txp -mail: WojdyloT@5f41ae90bad64d5e97b0ef849f0cfd8f.bitwarden.com -carLicense: OPVKQN -departmentNumber: 1832 -employeeType: Normal -homePhone: +1 818 744-6514 -initials: T. W. -mobile: +1 818 431-8827 -pager: +1 818 624-4209 -roomNumber: 8018 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Belen Miernik,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belen Miernik -sn: Miernik -description: This is Belen Miernik's description -facsimileTelephoneNumber: +1 415 958-8919 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 115-1389 -title: Supreme Payroll Grunt -userPassword: Password1 -uid: MiernikB -givenName: Belen -mail: MiernikB@daf3844d93884659a4691cd15a58290b.bitwarden.com -carLicense: 79910W -departmentNumber: 4136 -employeeType: Employee -homePhone: +1 415 259-9783 -initials: B. M. -mobile: +1 415 696-5127 -pager: +1 415 927-4987 -roomNumber: 9146 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mani Skillen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mani Skillen -sn: Skillen -description: This is Mani Skillen's description -facsimileTelephoneNumber: +1 213 839-6154 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 870-2867 -title: Chief Payroll Grunt -userPassword: Password1 -uid: SkillenM -givenName: Mani -mail: SkillenM@e843ca68e55442fdb294c3e4c51a76f2.bitwarden.com -carLicense: E2JF2F -departmentNumber: 3225 -employeeType: Normal -homePhone: +1 213 767-9515 -initials: M. S. -mobile: +1 213 574-1973 -pager: +1 213 317-5264 -roomNumber: 8103 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Diahann Roeten,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diahann Roeten -sn: Roeten -description: This is Diahann Roeten's description -facsimileTelephoneNumber: +1 415 303-3775 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 446-4900 -title: Supreme Janitorial Figurehead -userPassword: Password1 -uid: RoetenD -givenName: Diahann -mail: RoetenD@cff29f28824b49c2bb3b80efc41d7e67.bitwarden.com -carLicense: JEO37U -departmentNumber: 6502 -employeeType: Employee -homePhone: +1 415 634-9111 -initials: D. R. -mobile: +1 415 746-9323 -pager: +1 415 759-8738 -roomNumber: 8942 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=KaiWai COKOL,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KaiWai COKOL -sn: COKOL -description: This is KaiWai COKOL's description -facsimileTelephoneNumber: +1 804 149-9741 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 737-7639 -title: Chief Payroll Consultant -userPassword: Password1 -uid: COKOLK -givenName: KaiWai -mail: COKOLK@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com -carLicense: QM3S28 -departmentNumber: 2407 -employeeType: Normal -homePhone: +1 804 410-3009 -initials: K. C. -mobile: +1 804 107-3090 -pager: +1 804 961-4645 -roomNumber: 8089 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maible Adorno,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maible Adorno -sn: Adorno -description: This is Maible Adorno's description -facsimileTelephoneNumber: +1 206 460-1500 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 509-4571 -title: Master Product Development Artist -userPassword: Password1 -uid: AdornoM -givenName: Maible -mail: AdornoM@76c55b991b154687a6c440a29ba279b1.bitwarden.com -carLicense: E603BR -departmentNumber: 2566 -employeeType: Contract -homePhone: +1 206 465-3010 -initials: M. A. -mobile: +1 206 406-3221 -pager: +1 206 284-7543 -roomNumber: 8155 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zero Fletcher,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zero Fletcher -sn: Fletcher -description: This is Zero Fletcher's description -facsimileTelephoneNumber: +1 804 293-1768 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 590-2691 -title: Junior Management Assistant -userPassword: Password1 -uid: FletcheZ -givenName: Zero -mail: FletcheZ@9b70e886a18d422fa3404374b5a9613c.bitwarden.com -carLicense: KSXY4M -departmentNumber: 9776 -employeeType: Employee -homePhone: +1 804 803-2931 -initials: Z. F. -mobile: +1 804 411-8431 -pager: +1 804 824-8693 -roomNumber: 8530 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Daveen Burnage,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daveen Burnage -sn: Burnage -description: This is Daveen Burnage's description -facsimileTelephoneNumber: +1 408 966-5320 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 840-1592 -title: Associate Management Consultant -userPassword: Password1 -uid: BurnageD -givenName: Daveen -mail: BurnageD@d5a1c908aa0542dcbca729ee2090c302.bitwarden.com -carLicense: X3I6AC -departmentNumber: 5063 -employeeType: Contract -homePhone: +1 408 584-8457 -initials: D. B. -mobile: +1 408 556-9707 -pager: +1 408 944-3681 -roomNumber: 9452 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ebony Duquette,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ebony Duquette -sn: Duquette -description: This is Ebony Duquette's description -facsimileTelephoneNumber: +1 818 479-2228 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 980-3895 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: DuquettE -givenName: Ebony -mail: DuquettE@fc77f4d906ff4b3cb588df36a2010c58.bitwarden.com -carLicense: 4SLMPE -departmentNumber: 7934 -employeeType: Normal -homePhone: +1 818 564-4382 -initials: E. D. -mobile: +1 818 936-2685 -pager: +1 818 829-7420 -roomNumber: 8658 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tracie Holinski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tracie Holinski -sn: Holinski -description: This is Tracie Holinski's description -facsimileTelephoneNumber: +1 206 788-4411 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 826-1596 -title: Supreme Peons Madonna -userPassword: Password1 -uid: HolinskT -givenName: Tracie -mail: HolinskT@6da551849f104f33a2eea46618b3ca98.bitwarden.com -carLicense: NJAEK9 -departmentNumber: 4921 -employeeType: Contract -homePhone: +1 206 285-6372 -initials: T. H. -mobile: +1 206 446-4204 -pager: +1 206 968-5166 -roomNumber: 8263 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rio Naem,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rio Naem -sn: Naem -description: This is Rio Naem's description -facsimileTelephoneNumber: +1 415 490-2668 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 221-7067 -title: Supreme Payroll Director -userPassword: Password1 -uid: NaemR -givenName: Rio -mail: NaemR@ed87fa3a81eb418da1bb630466cba42d.bitwarden.com -carLicense: POYITD -departmentNumber: 1262 -employeeType: Contract -homePhone: +1 415 349-8495 -initials: R. N. -mobile: +1 415 506-8167 -pager: +1 415 131-4758 -roomNumber: 9834 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Reeta Abel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reeta Abel -sn: Abel -description: This is Reeta Abel's description -facsimileTelephoneNumber: +1 510 303-9245 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 371-2535 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: AbelR -givenName: Reeta -mail: AbelR@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com -carLicense: 6FCPQF -departmentNumber: 1839 -employeeType: Employee -homePhone: +1 510 724-7195 -initials: R. A. -mobile: +1 510 145-5145 -pager: +1 510 891-6270 -roomNumber: 9624 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Felicle McCartin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felicle McCartin -sn: McCartin -description: This is Felicle McCartin's description -facsimileTelephoneNumber: +1 510 928-3727 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 929-6148 -title: Supreme Administrative Figurehead -userPassword: Password1 -uid: McCartiF -givenName: Felicle -mail: McCartiF@78c782ee988042558677d060e6dcc145.bitwarden.com -carLicense: CRGED6 -departmentNumber: 7069 -employeeType: Contract -homePhone: +1 510 509-4286 -initials: F. M. -mobile: +1 510 961-3434 -pager: +1 510 105-4314 -roomNumber: 9209 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Darrell Presgrove,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrell Presgrove -sn: Presgrove -description: This is Darrell Presgrove's description -facsimileTelephoneNumber: +1 510 295-5374 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 151-9531 -title: Associate Payroll Madonna -userPassword: Password1 -uid: PresgroD -givenName: Darrell -mail: PresgroD@08314372b4e24a1c8e4f541db86c96af.bitwarden.com -carLicense: GVC75R -departmentNumber: 1541 -employeeType: Contract -homePhone: +1 510 543-7379 -initials: D. P. -mobile: +1 510 229-3443 -pager: +1 510 299-3775 -roomNumber: 9867 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Faizal Awadalla,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faizal Awadalla -sn: Awadalla -description: This is Faizal Awadalla's description -facsimileTelephoneNumber: +1 213 964-5098 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 892-2662 -title: Junior Management Evangelist -userPassword: Password1 -uid: AwadallF -givenName: Faizal -mail: AwadallF@85be5888418240a8880dd2671e654a34.bitwarden.com -carLicense: UUAJBQ -departmentNumber: 3833 -employeeType: Contract -homePhone: +1 213 418-1876 -initials: F. A. -mobile: +1 213 203-7213 -pager: +1 213 790-1236 -roomNumber: 9470 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=SikYin Borha,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SikYin Borha -sn: Borha -description: This is SikYin Borha's description -facsimileTelephoneNumber: +1 206 861-6705 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 900-1691 -title: Associate Administrative Evangelist -userPassword: Password1 -uid: BorhaS -givenName: SikYin -mail: BorhaS@8cf60560d9f94210b078d7fde7752144.bitwarden.com -carLicense: B2KM2V -departmentNumber: 2924 -employeeType: Normal -homePhone: +1 206 812-9058 -initials: S. B. -mobile: +1 206 788-9165 -pager: +1 206 141-2627 -roomNumber: 8275 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Steve Marette,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steve Marette -sn: Marette -description: This is Steve Marette's description -facsimileTelephoneNumber: +1 818 682-6869 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 965-2104 -title: Junior Human Resources Writer -userPassword: Password1 -uid: MaretteS -givenName: Steve -mail: MaretteS@83fe03b0ea334785886a9e6e12b6449f.bitwarden.com -carLicense: SBO4LN -departmentNumber: 7904 -employeeType: Contract -homePhone: +1 818 805-1027 -initials: S. M. -mobile: +1 818 712-3880 -pager: +1 818 532-8746 -roomNumber: 9946 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jelene Kuykendall -sn: Kuykendall -description: This is Jelene Kuykendall's description -facsimileTelephoneNumber: +1 510 326-5621 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 477-2752 -title: Associate Product Testing Artist -userPassword: Password1 -uid: KuykendJ -givenName: Jelene -mail: KuykendJ@60ec121ba9714e3489eb920608ad92c6.bitwarden.com -carLicense: 3T5WDY -departmentNumber: 1449 -employeeType: Normal -homePhone: +1 510 272-3101 -initials: J. K. -mobile: +1 510 243-4361 -pager: +1 510 775-9904 -roomNumber: 8125 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Janeva Diener,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janeva Diener -sn: Diener -description: This is Janeva Diener's description -facsimileTelephoneNumber: +1 408 994-4790 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 790-7152 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: DienerJ -givenName: Janeva -mail: DienerJ@5b2a3a94c4fc4b63a1c4a61fe0867664.bitwarden.com -carLicense: OBIUJP -departmentNumber: 7309 -employeeType: Contract -homePhone: +1 408 869-3450 -initials: J. D. -mobile: +1 408 513-5851 -pager: +1 408 757-2627 -roomNumber: 8023 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Amelie Brashear,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amelie Brashear -sn: Brashear -description: This is Amelie Brashear's description -facsimileTelephoneNumber: +1 213 111-6951 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 524-3180 -title: Associate Administrative Fellow -userPassword: Password1 -uid: BrasheaA -givenName: Amelie -mail: BrasheaA@2a4ac17a2dac443185eb76e92ebd37d9.bitwarden.com -carLicense: VY4DAE -departmentNumber: 3120 -employeeType: Employee -homePhone: +1 213 245-8105 -initials: A. B. -mobile: +1 213 868-6801 -pager: +1 213 547-3463 -roomNumber: 9568 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kenneth Tahamont,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kenneth Tahamont -sn: Tahamont -description: This is Kenneth Tahamont's description -facsimileTelephoneNumber: +1 408 186-6318 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 802-8020 -title: Associate Peons Director -userPassword: Password1 -uid: TahamonK -givenName: Kenneth -mail: TahamonK@06f45b5a620c43d78c14ccaab146b491.bitwarden.com -carLicense: HMO1E7 -departmentNumber: 2664 -employeeType: Contract -homePhone: +1 408 467-1281 -initials: K. T. -mobile: +1 408 962-6075 -pager: +1 408 464-9024 -roomNumber: 8021 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mario Pappu,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mario Pappu -sn: Pappu -description: This is Mario Pappu's description -facsimileTelephoneNumber: +1 415 298-1773 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 278-9597 -title: Supreme Peons Evangelist -userPassword: Password1 -uid: PappuM -givenName: Mario -mail: PappuM@adc1aa4054664ff28e6c264f378bb34d.bitwarden.com -carLicense: Y8QIXJ -departmentNumber: 3848 -employeeType: Employee -homePhone: +1 415 273-8259 -initials: M. P. -mobile: +1 415 255-9575 -pager: +1 415 967-3474 -roomNumber: 8067 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bethena Arnauld,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bethena Arnauld -sn: Arnauld -description: This is Bethena Arnauld's description -facsimileTelephoneNumber: +1 408 867-9837 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 193-4098 -title: Supreme Peons Director -userPassword: Password1 -uid: ArnauldB -givenName: Bethena -mail: ArnauldB@8e5803ba8a994346b2021a6c4699f1e0.bitwarden.com -carLicense: RIDJ80 -departmentNumber: 7863 -employeeType: Contract -homePhone: +1 408 294-1337 -initials: B. A. -mobile: +1 408 429-2596 -pager: +1 408 198-8826 -roomNumber: 8051 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nhut Hollis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nhut Hollis -sn: Hollis -description: This is Nhut Hollis's description -facsimileTelephoneNumber: +1 510 984-3971 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 148-2748 -title: Associate Product Testing Technician -userPassword: Password1 -uid: HollisN -givenName: Nhut -mail: HollisN@eb263435394f4d6ab9827469c04cb342.bitwarden.com -carLicense: 51I1O6 -departmentNumber: 1565 -employeeType: Employee -homePhone: +1 510 396-1233 -initials: N. H. -mobile: +1 510 896-2388 -pager: +1 510 768-3876 -roomNumber: 9041 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Claudette Murton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claudette Murton -sn: Murton -description: This is Claudette Murton's description -facsimileTelephoneNumber: +1 213 521-8300 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 693-6034 -title: Associate Management Assistant -userPassword: Password1 -uid: MurtonC -givenName: Claudette -mail: MurtonC@e0f19e47c9c84b21b125848518ec6067.bitwarden.com -carLicense: EVGDAW -departmentNumber: 2743 -employeeType: Employee -homePhone: +1 213 234-8660 -initials: C. M. -mobile: +1 213 690-4987 -pager: +1 213 557-5056 -roomNumber: 9115 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heidie Rasmussen -sn: Rasmussen -description: This is Heidie Rasmussen's description -facsimileTelephoneNumber: +1 818 724-7519 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 299-8914 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: RasmussH -givenName: Heidie -mail: RasmussH@f185c5336698451d9003f4fee19cdce1.bitwarden.com -carLicense: NS2AFV -departmentNumber: 3962 -employeeType: Employee -homePhone: +1 818 297-1916 -initials: H. R. -mobile: +1 818 263-6162 -pager: +1 818 734-3476 -roomNumber: 8590 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liem Fahrenthold -sn: Fahrenthold -description: This is Liem Fahrenthold's description -facsimileTelephoneNumber: +1 206 106-8354 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 319-5809 -title: Associate Human Resources Stooge -userPassword: Password1 -uid: FahrentL -givenName: Liem -mail: FahrentL@11006cb63c014ed78431f32c1edc2e50.bitwarden.com -carLicense: BJPO6M -departmentNumber: 6987 -employeeType: Contract -homePhone: +1 206 297-9918 -initials: L. F. -mobile: +1 206 436-6143 -pager: +1 206 718-9197 -roomNumber: 9248 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dalila Solomon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dalila Solomon -sn: Solomon -description: This is Dalila Solomon's description -facsimileTelephoneNumber: +1 818 456-4543 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 972-4675 -title: Junior Janitorial Technician -userPassword: Password1 -uid: SolomonD -givenName: Dalila -mail: SolomonD@1992283e02a14cd2a3449a7bd08c0ed9.bitwarden.com -carLicense: MNKOUQ -departmentNumber: 5530 -employeeType: Contract -homePhone: +1 818 176-4787 -initials: D. S. -mobile: +1 818 478-5770 -pager: +1 818 161-2685 -roomNumber: 8210 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Veriee Aksel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veriee Aksel -sn: Aksel -description: This is Veriee Aksel's description -facsimileTelephoneNumber: +1 818 794-4167 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 346-1087 -title: Supreme Peons Vice President -userPassword: Password1 -uid: AkselV -givenName: Veriee -mail: AkselV@44ecb368c6be4359b7f35b951bbf9473.bitwarden.com -carLicense: 5JWDYU -departmentNumber: 6741 -employeeType: Contract -homePhone: +1 818 924-8950 -initials: V. A. -mobile: +1 818 351-5995 -pager: +1 818 165-4248 -roomNumber: 9645 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mirella Lambregts,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirella Lambregts -sn: Lambregts -description: This is Mirella Lambregts's description -facsimileTelephoneNumber: +1 408 258-5740 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 101-8872 -title: Chief Payroll Engineer -userPassword: Password1 -uid: LambregM -givenName: Mirella -mail: LambregM@9aa7896234604e35853331a58b365781.bitwarden.com -carLicense: E50NNJ -departmentNumber: 4605 -employeeType: Employee -homePhone: +1 408 388-4661 -initials: M. L. -mobile: +1 408 894-9209 -pager: +1 408 271-1556 -roomNumber: 9912 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Paulinus Bagi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulinus Bagi -sn: Bagi -description: This is Paulinus Bagi's description -facsimileTelephoneNumber: +1 804 852-4891 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 977-5364 -title: Chief Administrative Grunt -userPassword: Password1 -uid: BagiP -givenName: Paulinus -mail: BagiP@5ad3d7530e0c4ae2a02dadf40f602049.bitwarden.com -carLicense: WKL5GP -departmentNumber: 9225 -employeeType: Contract -homePhone: +1 804 262-2221 -initials: P. B. -mobile: +1 804 511-4726 -pager: +1 804 848-2284 -roomNumber: 8776 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rodrigo Healy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rodrigo Healy -sn: Healy -description: This is Rodrigo Healy's description -facsimileTelephoneNumber: +1 804 356-5971 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 482-8888 -title: Chief Peons Engineer -userPassword: Password1 -uid: HealyR -givenName: Rodrigo -mail: HealyR@dc401fe14a3e4403a51a351982eb441b.bitwarden.com -carLicense: TUDJWN -departmentNumber: 2084 -employeeType: Contract -homePhone: +1 804 364-7211 -initials: R. H. -mobile: +1 804 800-9914 -pager: +1 804 320-1960 -roomNumber: 8494 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vicheara Reimann,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vicheara Reimann -sn: Reimann -description: This is Vicheara Reimann's description -facsimileTelephoneNumber: +1 408 956-3140 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 375-4461 -title: Master Payroll Consultant -userPassword: Password1 -uid: ReimannV -givenName: Vicheara -mail: ReimannV@16061e068871412f8042ab726cfbe1cf.bitwarden.com -carLicense: SYI0UY -departmentNumber: 8627 -employeeType: Normal -homePhone: +1 408 420-7160 -initials: V. R. -mobile: +1 408 705-8116 -pager: +1 408 561-7153 -roomNumber: 9843 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JoAnne Selchow -sn: Selchow -description: This is JoAnne Selchow's description -facsimileTelephoneNumber: +1 818 312-2768 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 961-8326 -title: Associate Human Resources President -userPassword: Password1 -uid: SelchowJ -givenName: JoAnne -mail: SelchowJ@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com -carLicense: BCCGAS -departmentNumber: 5924 -employeeType: Employee -homePhone: +1 818 262-5324 -initials: J. S. -mobile: +1 818 562-5227 -pager: +1 818 208-9664 -roomNumber: 8705 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sylvie Tesfamariam -sn: Tesfamariam -description: This is Sylvie Tesfamariam's description -facsimileTelephoneNumber: +1 510 250-4709 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 141-9273 -title: Chief Janitorial Czar -userPassword: Password1 -uid: TesfamaS -givenName: Sylvie -mail: TesfamaS@9969b0f8851149aaa64ff3c67e9b6c53.bitwarden.com -carLicense: WPLV5D -departmentNumber: 1849 -employeeType: Contract -homePhone: +1 510 940-6714 -initials: S. T. -mobile: +1 510 312-4496 -pager: +1 510 413-6566 -roomNumber: 9082 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marissa Galluzzi -sn: Galluzzi -description: This is Marissa Galluzzi's description -facsimileTelephoneNumber: +1 804 470-5921 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 771-5276 -title: Associate Administrative Czar -userPassword: Password1 -uid: GalluzzM -givenName: Marissa -mail: GalluzzM@dd011395008c45a78a4a604d3e2ee63f.bitwarden.com -carLicense: 2WUR61 -departmentNumber: 8986 -employeeType: Contract -homePhone: +1 804 765-3449 -initials: M. G. -mobile: +1 804 105-7268 -pager: +1 804 996-6350 -roomNumber: 8482 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Johan Srivastava,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johan Srivastava -sn: Srivastava -description: This is Johan Srivastava's description -facsimileTelephoneNumber: +1 415 203-7305 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 196-5405 -title: Junior Peons Visionary -userPassword: Password1 -uid: SrivastJ -givenName: Johan -mail: SrivastJ@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com -carLicense: YK94V2 -departmentNumber: 5833 -employeeType: Contract -homePhone: +1 415 253-7504 -initials: J. S. -mobile: +1 415 177-2480 -pager: +1 415 141-1977 -roomNumber: 9243 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Isl Luciani,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isl Luciani -sn: Luciani -description: This is Isl Luciani's description -facsimileTelephoneNumber: +1 510 279-4546 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 193-2419 -title: Supreme Human Resources Assistant -userPassword: Password1 -uid: LucianiI -givenName: Isl -mail: LucianiI@93274af28e624bc39a43d4c6197969b8.bitwarden.com -carLicense: DNOV0P -departmentNumber: 5082 -employeeType: Normal -homePhone: +1 510 146-9522 -initials: I. L. -mobile: +1 510 719-3758 -pager: +1 510 598-9360 -roomNumber: 8287 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rafaela Paglia -sn: Paglia -description: This is Rafaela Paglia's description -facsimileTelephoneNumber: +1 206 690-6100 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 935-2923 -title: Chief Human Resources Fellow -userPassword: Password1 -uid: PagliaR -givenName: Rafaela -mail: PagliaR@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com -carLicense: LBFS1C -departmentNumber: 8756 -employeeType: Employee -homePhone: +1 206 706-7558 -initials: R. P. -mobile: +1 206 333-2862 -pager: +1 206 545-9056 -roomNumber: 8229 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Monah Nipper,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monah Nipper -sn: Nipper -description: This is Monah Nipper's description -facsimileTelephoneNumber: +1 408 929-9913 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 368-5076 -title: Chief Administrative Madonna -userPassword: Password1 -uid: NipperM -givenName: Monah -mail: NipperM@45b2aea3ceaf4960a311478dd3996fb9.bitwarden.com -carLicense: 5L0JQV -departmentNumber: 7952 -employeeType: Contract -homePhone: +1 408 933-5114 -initials: M. N. -mobile: +1 408 142-1567 -pager: +1 408 644-9983 -roomNumber: 9536 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sibyl Luettchau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibyl Luettchau -sn: Luettchau -description: This is Sibyl Luettchau's description -facsimileTelephoneNumber: +1 510 545-4940 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 783-5232 -title: Associate Peons Admin -userPassword: Password1 -uid: LuettchS -givenName: Sibyl -mail: LuettchS@4c76717060934e34ac6c2ce08f3c0eb2.bitwarden.com -carLicense: KI5KMN -departmentNumber: 5257 -employeeType: Employee -homePhone: +1 510 332-5042 -initials: S. L. -mobile: +1 510 734-9671 -pager: +1 510 966-8041 -roomNumber: 9598 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maryl Feeley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryl Feeley -sn: Feeley -description: This is Maryl Feeley's description -facsimileTelephoneNumber: +1 213 182-4452 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 831-8824 -title: Associate Peons Director -userPassword: Password1 -uid: FeeleyM -givenName: Maryl -mail: FeeleyM@3ee0cf8e98f2453e9621b886fd38e19c.bitwarden.com -carLicense: 0YWBLG -departmentNumber: 2048 -employeeType: Employee -homePhone: +1 213 329-6776 -initials: M. F. -mobile: +1 213 717-2573 -pager: +1 213 175-1394 -roomNumber: 8704 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Moyna Syres,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moyna Syres -sn: Syres -description: This is Moyna Syres's description -facsimileTelephoneNumber: +1 415 702-4194 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 812-9779 -title: Junior Management Technician -userPassword: Password1 -uid: SyresM -givenName: Moyna -mail: SyresM@f04f08ea3a55432db354ee9760194fa6.bitwarden.com -carLicense: EUECL9 -departmentNumber: 9124 -employeeType: Normal -homePhone: +1 415 608-9077 -initials: M. S. -mobile: +1 415 487-6228 -pager: +1 415 876-9484 -roomNumber: 9520 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Demi Postlethwaite -sn: Postlethwaite -description: This is Demi Postlethwaite's description -facsimileTelephoneNumber: +1 804 542-8058 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 690-2803 -title: Junior Product Testing President -userPassword: Password1 -uid: PostletD -givenName: Demi -mail: PostletD@6e135dde94f540bebc4c8457eb8935d7.bitwarden.com -carLicense: QQKCU3 -departmentNumber: 7049 -employeeType: Normal -homePhone: +1 804 809-3218 -initials: D. P. -mobile: +1 804 584-9365 -pager: +1 804 778-8519 -roomNumber: 9797 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Petri Jimenez,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petri Jimenez -sn: Jimenez -description: This is Petri Jimenez's description -facsimileTelephoneNumber: +1 415 971-4732 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 311-2327 -title: Master Janitorial Warrior -userPassword: Password1 -uid: JimenezP -givenName: Petri -mail: JimenezP@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com -carLicense: UNTUAD -departmentNumber: 9456 -employeeType: Contract -homePhone: +1 415 839-7792 -initials: P. J. -mobile: +1 415 182-4105 -pager: +1 415 228-2365 -roomNumber: 9262 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mike Inoue,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mike Inoue -sn: Inoue -description: This is Mike Inoue's description -facsimileTelephoneNumber: +1 415 862-6843 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 969-7545 -title: Junior Administrative Fellow -userPassword: Password1 -uid: InoueM -givenName: Mike -mail: InoueM@398ea17d6f974da4b9c05b23fe6460f8.bitwarden.com -carLicense: F58D66 -departmentNumber: 3657 -employeeType: Normal -homePhone: +1 415 585-7133 -initials: M. I. -mobile: +1 415 434-7686 -pager: +1 415 567-4419 -roomNumber: 8650 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anita Gonsalves,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anita Gonsalves -sn: Gonsalves -description: This is Anita Gonsalves's description -facsimileTelephoneNumber: +1 415 180-7070 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 181-8468 -title: Master Payroll Assistant -userPassword: Password1 -uid: GonsalvA -givenName: Anita -mail: GonsalvA@1bc81f639d7b4a75a6776b919ea7ed35.bitwarden.com -carLicense: 30GP62 -departmentNumber: 5746 -employeeType: Employee -homePhone: +1 415 723-1090 -initials: A. G. -mobile: +1 415 880-8974 -pager: +1 415 741-9574 -roomNumber: 9267 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dennis Saad,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dennis Saad -sn: Saad -description: This is Dennis Saad's description -facsimileTelephoneNumber: +1 206 957-5583 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 159-8553 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: SaadD -givenName: Dennis -mail: SaadD@194b01da4c0947188a08ceb5675d4f64.bitwarden.com -carLicense: 0JP52M -departmentNumber: 7348 -employeeType: Normal -homePhone: +1 206 814-4360 -initials: D. S. -mobile: +1 206 599-4548 -pager: +1 206 462-6361 -roomNumber: 9177 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Taryna Anchia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Taryna Anchia -sn: Anchia -description: This is Taryna Anchia's description -facsimileTelephoneNumber: +1 408 372-6562 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 362-8646 -title: Supreme Product Development Janitor -userPassword: Password1 -uid: AnchiaT -givenName: Taryna -mail: AnchiaT@87bc15d42d8444788089ff676f599c5a.bitwarden.com -carLicense: 5RKB4B -departmentNumber: 4755 -employeeType: Contract -homePhone: +1 408 672-1200 -initials: T. A. -mobile: +1 408 372-1274 -pager: +1 408 857-9330 -roomNumber: 8122 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roseann Dattalo -sn: Dattalo -description: This is Roseann Dattalo's description -facsimileTelephoneNumber: +1 510 774-3286 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 601-3068 -title: Chief Product Testing Developer -userPassword: Password1 -uid: DattaloR -givenName: Roseann -mail: DattaloR@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com -carLicense: 7L918J -departmentNumber: 7905 -employeeType: Employee -homePhone: +1 510 831-4276 -initials: R. D. -mobile: +1 510 843-6190 -pager: +1 510 139-7428 -roomNumber: 9455 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Abigale Dacal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abigale Dacal -sn: Dacal -description: This is Abigale Dacal's description -facsimileTelephoneNumber: +1 213 775-2522 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 728-9168 -title: Junior Peons Writer -userPassword: Password1 -uid: DacalA -givenName: Abigale -mail: DacalA@a2e6c1d1859c490496277e66f6d6fefe.bitwarden.com -carLicense: VFRN16 -departmentNumber: 6193 -employeeType: Normal -homePhone: +1 213 633-2437 -initials: A. D. -mobile: +1 213 621-5421 -pager: +1 213 797-1537 -roomNumber: 9373 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kana Gantt,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kana Gantt -sn: Gantt -description: This is Kana Gantt's description -facsimileTelephoneNumber: +1 804 574-1488 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 975-8290 -title: Supreme Peons Grunt -userPassword: Password1 -uid: GanttK -givenName: Kana -mail: GanttK@c641e89a05dc4a0b90f1fb133a4ef5f0.bitwarden.com -carLicense: 27FUDN -departmentNumber: 1996 -employeeType: Employee -homePhone: +1 804 782-8906 -initials: K. G. -mobile: +1 804 992-7291 -pager: +1 804 304-6611 -roomNumber: 8217 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hans Raing,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hans Raing -sn: Raing -description: This is Hans Raing's description -facsimileTelephoneNumber: +1 408 761-5705 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 392-1559 -title: Supreme Payroll Janitor -userPassword: Password1 -uid: RaingH -givenName: Hans -mail: RaingH@5527d18878ce414192acda3c6755e170.bitwarden.com -carLicense: IKCPHT -departmentNumber: 8335 -employeeType: Contract -homePhone: +1 408 985-8541 -initials: H. R. -mobile: +1 408 442-8312 -pager: +1 408 675-9197 -roomNumber: 9758 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Melford Lopes,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melford Lopes -sn: Lopes -description: This is Melford Lopes's description -facsimileTelephoneNumber: +1 206 628-7012 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 976-4879 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: LopesM -givenName: Melford -mail: LopesM@dabe1d11b71042a7a449964bb8bad569.bitwarden.com -carLicense: HE6TRE -departmentNumber: 4748 -employeeType: Employee -homePhone: +1 206 977-2676 -initials: M. L. -mobile: +1 206 804-2091 -pager: +1 206 721-1138 -roomNumber: 9230 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Taryna Krumwiede -sn: Krumwiede -description: This is Taryna Krumwiede's description -facsimileTelephoneNumber: +1 818 313-8622 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 965-5871 -title: Associate Human Resources Writer -userPassword: Password1 -uid: KrumwieT -givenName: Taryna -mail: KrumwieT@d041e9b74a124206a91f318978266966.bitwarden.com -carLicense: YOSW2V -departmentNumber: 9577 -employeeType: Contract -homePhone: +1 818 277-2401 -initials: T. K. -mobile: +1 818 465-7800 -pager: +1 818 812-1319 -roomNumber: 8039 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hermina Ng,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermina Ng -sn: Ng -description: This is Hermina Ng's description -facsimileTelephoneNumber: +1 510 462-6731 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 454-6236 -title: Associate Administrative Dictator -userPassword: Password1 -uid: NgH -givenName: Hermina -mail: NgH@bc08bb83b4a9449f96909ee779df6288.bitwarden.com -carLicense: 59VADV -departmentNumber: 5924 -employeeType: Employee -homePhone: +1 510 844-4565 -initials: H. N. -mobile: +1 510 677-8709 -pager: +1 510 166-6665 -roomNumber: 8331 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ren Schwenk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ren Schwenk -sn: Schwenk -description: This is Ren Schwenk's description -facsimileTelephoneNumber: +1 804 304-3123 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 389-4963 -title: Chief Administrative Evangelist -userPassword: Password1 -uid: SchwenkR -givenName: Ren -mail: SchwenkR@01a39cd47fba422abe5be28943be33a3.bitwarden.com -carLicense: I09S5N -departmentNumber: 9737 -employeeType: Normal -homePhone: +1 804 142-1146 -initials: R. S. -mobile: +1 804 662-1905 -pager: +1 804 657-2099 -roomNumber: 9352 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Subramaniam Cranston,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subramaniam Cranston -sn: Cranston -description: This is Subramaniam Cranston's description -facsimileTelephoneNumber: +1 408 819-1682 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 696-2726 -title: Master Peons Janitor -userPassword: Password1 -uid: CranstoS -givenName: Subramaniam -mail: CranstoS@7dae041718544c45a452ecb7fa3d7247.bitwarden.com -carLicense: MGPX1Q -departmentNumber: 9475 -employeeType: Employee -homePhone: +1 408 597-9371 -initials: S. C. -mobile: +1 408 719-5768 -pager: +1 408 653-8115 -roomNumber: 9335 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Coors Livas,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coors Livas -sn: Livas -description: This is Coors Livas's description -facsimileTelephoneNumber: +1 213 128-1062 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 469-3045 -title: Chief Management Artist -userPassword: Password1 -uid: LivasC -givenName: Coors -mail: LivasC@289444924c894df68dc76e9d8add4066.bitwarden.com -carLicense: IL1FUW -departmentNumber: 6712 -employeeType: Contract -homePhone: +1 213 889-1801 -initials: C. L. -mobile: +1 213 454-6302 -pager: +1 213 435-3724 -roomNumber: 8197 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Arleyne Schreier,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arleyne Schreier -sn: Schreier -description: This is Arleyne Schreier's description -facsimileTelephoneNumber: +1 804 402-2129 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 969-9552 -title: Master Product Development Janitor -userPassword: Password1 -uid: SchreieA -givenName: Arleyne -mail: SchreieA@eab743ec7e88405c97ab071366098384.bitwarden.com -carLicense: 7YOTW8 -departmentNumber: 2698 -employeeType: Normal -homePhone: +1 804 725-1547 -initials: A. S. -mobile: +1 804 225-3305 -pager: +1 804 634-1984 -roomNumber: 9552 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ko Yuen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ko Yuen -sn: Yuen -description: This is Ko Yuen's description -facsimileTelephoneNumber: +1 408 508-8787 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 361-1873 -title: Associate Human Resources President -userPassword: Password1 -uid: YuenK -givenName: Ko -mail: YuenK@8fe8053cf30a4c47b93e0a3f02958712.bitwarden.com -carLicense: V57DCK -departmentNumber: 3420 -employeeType: Contract -homePhone: +1 408 209-7273 -initials: K. Y. -mobile: +1 408 352-1252 -pager: +1 408 564-8119 -roomNumber: 8176 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kentaro Vetrano -sn: Vetrano -description: This is Kentaro Vetrano's description -facsimileTelephoneNumber: +1 510 302-5609 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 510 795-9204 -title: Junior Product Development Janitor -userPassword: Password1 -uid: VetranoK -givenName: Kentaro -mail: VetranoK@974ece3e63104cd593ac8a6d9de7a620.bitwarden.com -carLicense: 0UF275 -departmentNumber: 4693 -employeeType: Contract -homePhone: +1 510 196-2372 -initials: K. V. -mobile: +1 510 894-6764 -pager: +1 510 912-5061 -roomNumber: 8886 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fayth Kamboh -sn: Kamboh -description: This is Fayth Kamboh's description -facsimileTelephoneNumber: +1 206 782-9275 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 523-8738 -title: Supreme Human Resources Stooge -userPassword: Password1 -uid: KambohF -givenName: Fayth -mail: KambohF@e1f0d918bf004e4781bc8a3f9e7beec7.bitwarden.com -carLicense: GVY2IS -departmentNumber: 9946 -employeeType: Normal -homePhone: +1 206 682-6153 -initials: F. K. -mobile: +1 206 469-4622 -pager: +1 206 403-4202 -roomNumber: 8255 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joelly Dorrell -sn: Dorrell -description: This is Joelly Dorrell's description -facsimileTelephoneNumber: +1 408 246-9601 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 997-7557 -title: Master Product Testing Manager -userPassword: Password1 -uid: DorrellJ -givenName: Joelly -mail: DorrellJ@8c9d5524ef4a437cbd972be9daff51a3.bitwarden.com -carLicense: 2PRAT1 -departmentNumber: 1928 -employeeType: Contract -homePhone: +1 408 836-9087 -initials: J. D. -mobile: +1 408 280-6358 -pager: +1 408 713-7559 -roomNumber: 9295 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=HsingJu Kellogg,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HsingJu Kellogg -sn: Kellogg -description: This is HsingJu Kellogg's description -facsimileTelephoneNumber: +1 408 773-4725 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 461-7101 -title: Associate Peons Mascot -userPassword: Password1 -uid: KelloggH -givenName: HsingJu -mail: KelloggH@4b73d5c781bf4b6e9f4e5ee08640ddde.bitwarden.com -carLicense: YOEW4X -departmentNumber: 5645 -employeeType: Employee -homePhone: +1 408 919-7199 -initials: H. K. -mobile: +1 408 361-9006 -pager: +1 408 655-7083 -roomNumber: 9961 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Juanita Beisel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juanita Beisel -sn: Beisel -description: This is Juanita Beisel's description -facsimileTelephoneNumber: +1 213 321-3255 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 213 665-1667 -title: Master Product Development Manager -userPassword: Password1 -uid: BeiselJ -givenName: Juanita -mail: BeiselJ@1f7da6ad1bec427086c129ba155297d7.bitwarden.com -carLicense: XLO42H -departmentNumber: 5279 -employeeType: Normal -homePhone: +1 213 872-1568 -initials: J. B. -mobile: +1 213 790-1145 -pager: +1 213 546-5944 -roomNumber: 8508 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jackson Forbes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jackson Forbes -sn: Forbes -description: This is Jackson Forbes's description -facsimileTelephoneNumber: +1 213 427-9510 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 682-1464 -title: Junior Product Testing Manager -userPassword: Password1 -uid: ForbesJ -givenName: Jackson -mail: ForbesJ@ce56c75a600546b9ade2ff9aaa1b992b.bitwarden.com -carLicense: YARI2V -departmentNumber: 4541 -employeeType: Contract -homePhone: +1 213 385-4789 -initials: J. F. -mobile: +1 213 131-2576 -pager: +1 213 598-5604 -roomNumber: 9635 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bethina Rosvick,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bethina Rosvick -sn: Rosvick -description: This is Bethina Rosvick's description -facsimileTelephoneNumber: +1 415 251-5007 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 415 636-5956 -title: Chief Peons Fellow -userPassword: Password1 -uid: RosvickB -givenName: Bethina -mail: RosvickB@ade29194809c470d9cdfd87fd5b67232.bitwarden.com -carLicense: 718V9D -departmentNumber: 5753 -employeeType: Contract -homePhone: +1 415 253-9522 -initials: B. R. -mobile: +1 415 321-3426 -pager: +1 415 510-5800 -roomNumber: 9154 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Osama Bitton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Osama Bitton -sn: Bitton -description: This is Osama Bitton's description -facsimileTelephoneNumber: +1 804 675-8556 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 520-1457 -title: Junior Peons Manager -userPassword: Password1 -uid: BittonO -givenName: Osama -mail: BittonO@39518f40f570412d8781523094828b83.bitwarden.com -carLicense: WVB2WB -departmentNumber: 5830 -employeeType: Normal -homePhone: +1 804 359-7142 -initials: O. B. -mobile: +1 804 605-8764 -pager: +1 804 392-7582 -roomNumber: 9023 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Douglass Eales,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Douglass Eales -sn: Eales -description: This is Douglass Eales's description -facsimileTelephoneNumber: +1 206 349-1070 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 350-4520 -title: Junior Janitorial Admin -userPassword: Password1 -uid: EalesD -givenName: Douglass -mail: EalesD@fda558d35380465a89fa3c01f8acc3f5.bitwarden.com -carLicense: ENKQ0A -departmentNumber: 7901 -employeeType: Employee -homePhone: +1 206 376-4418 -initials: D. E. -mobile: +1 206 354-4253 -pager: +1 206 166-4004 -roomNumber: 9570 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Linh Ostifichuk,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linh Ostifichuk -sn: Ostifichuk -description: This is Linh Ostifichuk's description -facsimileTelephoneNumber: +1 408 685-5564 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 366-8260 -title: Junior Peons Visionary -userPassword: Password1 -uid: OstificL -givenName: Linh -mail: OstificL@d324387fa53747b48c6c4daf8c273d2a.bitwarden.com -carLicense: FVTOU6 -departmentNumber: 3120 -employeeType: Employee -homePhone: +1 408 467-6204 -initials: L. O. -mobile: +1 408 821-5994 -pager: +1 408 772-3925 -roomNumber: 9585 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Leonor Hepburn,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonor Hepburn -sn: Hepburn -description: This is Leonor Hepburn's description -facsimileTelephoneNumber: +1 510 326-2119 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 602-5076 -title: Master Peons Director -userPassword: Password1 -uid: HepburnL -givenName: Leonor -mail: HepburnL@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com -carLicense: 0PRJR4 -departmentNumber: 9418 -employeeType: Employee -homePhone: +1 510 765-9783 -initials: L. H. -mobile: +1 510 644-8635 -pager: +1 510 846-2185 -roomNumber: 8793 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Umesh Mayhugh,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Umesh Mayhugh -sn: Mayhugh -description: This is Umesh Mayhugh's description -facsimileTelephoneNumber: +1 818 605-1829 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 121-1875 -title: Junior Management Dictator -userPassword: Password1 -uid: MayhughU -givenName: Umesh -mail: MayhughU@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com -carLicense: 5CROAT -departmentNumber: 5306 -employeeType: Employee -homePhone: +1 818 972-1661 -initials: U. M. -mobile: +1 818 622-2406 -pager: +1 818 136-6782 -roomNumber: 9215 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cecile Chorley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cecile Chorley -sn: Chorley -description: This is Cecile Chorley's description -facsimileTelephoneNumber: +1 415 568-7251 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 213-8364 -title: Junior Administrative Visionary -userPassword: Password1 -uid: ChorleyC -givenName: Cecile -mail: ChorleyC@92468910821a458ca936a273ecde380f.bitwarden.com -carLicense: 4JSACV -departmentNumber: 1388 -employeeType: Contract -homePhone: +1 415 662-7928 -initials: C. C. -mobile: +1 415 727-2939 -pager: +1 415 761-8305 -roomNumber: 8445 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alia Kuehne,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alia Kuehne -sn: Kuehne -description: This is Alia Kuehne's description -facsimileTelephoneNumber: +1 818 760-4985 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 316-7445 -title: Master Peons Madonna -userPassword: Password1 -uid: KuehneA -givenName: Alia -mail: KuehneA@4440d5a8c29244aaa65d7ce99130f973.bitwarden.com -carLicense: C3PXDT -departmentNumber: 4038 -employeeType: Employee -homePhone: +1 818 661-3772 -initials: A. K. -mobile: +1 818 872-7770 -pager: +1 818 162-2293 -roomNumber: 8693 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prudence Pelkie -sn: Pelkie -description: This is Prudence Pelkie's description -facsimileTelephoneNumber: +1 206 925-1415 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 500-9049 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: PelkieP -givenName: Prudence -mail: PelkieP@4db0de6fc0354c61b2c3ca3477ce6f09.bitwarden.com -carLicense: 5PXUXW -departmentNumber: 5405 -employeeType: Employee -homePhone: +1 206 134-8158 -initials: P. P. -mobile: +1 206 572-1701 -pager: +1 206 857-3099 -roomNumber: 8721 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fernando Pacey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fernando Pacey -sn: Pacey -description: This is Fernando Pacey's description -facsimileTelephoneNumber: +1 213 836-2286 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 145-6124 -title: Master Product Development Dictator -userPassword: Password1 -uid: PaceyF -givenName: Fernando -mail: PaceyF@7a081f2b6b9244909f5b879d315b7d98.bitwarden.com -carLicense: FT85UX -departmentNumber: 9175 -employeeType: Employee -homePhone: +1 213 796-8321 -initials: F. P. -mobile: +1 213 993-9210 -pager: +1 213 517-2409 -roomNumber: 8373 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sela Sandlford,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sela Sandlford -sn: Sandlford -description: This is Sela Sandlford's description -facsimileTelephoneNumber: +1 408 567-5444 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 344-2652 -title: Master Management Technician -userPassword: Password1 -uid: SandlfoS -givenName: Sela -mail: SandlfoS@5590d64af7534c85b57333acc4273b5d.bitwarden.com -carLicense: JBNSKH -departmentNumber: 5099 -employeeType: Employee -homePhone: +1 408 844-7229 -initials: S. S. -mobile: +1 408 515-3581 -pager: +1 408 696-5273 -roomNumber: 9601 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Latashia McCuaig,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Latashia McCuaig -sn: McCuaig -description: This is Latashia McCuaig's description -facsimileTelephoneNumber: +1 804 180-3564 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 170-3298 -title: Associate Peons Mascot -userPassword: Password1 -uid: McCuaigL -givenName: Latashia -mail: McCuaigL@89d246bbdd9b435a85f71ab6a1baf316.bitwarden.com -carLicense: MBVEK7 -departmentNumber: 4460 -employeeType: Contract -homePhone: +1 804 262-6484 -initials: L. M. -mobile: +1 804 943-4036 -pager: +1 804 725-3758 -roomNumber: 9584 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dara Goodwin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dara Goodwin -sn: Goodwin -description: This is Dara Goodwin's description -facsimileTelephoneNumber: +1 213 177-2951 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 458-2870 -title: Associate Human Resources Artist -userPassword: Password1 -uid: GoodwinD -givenName: Dara -mail: GoodwinD@96301228f26045a98bca1aa7a6828ccb.bitwarden.com -carLicense: F8JRUO -departmentNumber: 8640 -employeeType: Contract -homePhone: +1 213 807-3560 -initials: D. G. -mobile: +1 213 224-4647 -pager: +1 213 513-6675 -roomNumber: 9917 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Helli Charlino,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helli Charlino -sn: Charlino -description: This is Helli Charlino's description -facsimileTelephoneNumber: +1 206 534-8994 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 816-7508 -title: Junior Peons Writer -userPassword: Password1 -uid: CharlinH -givenName: Helli -mail: CharlinH@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com -carLicense: MY4J23 -departmentNumber: 7288 -employeeType: Employee -homePhone: +1 206 799-1981 -initials: H. C. -mobile: +1 206 863-7599 -pager: +1 206 270-3081 -roomNumber: 8050 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duquette MacCarthy -sn: MacCarthy -description: This is Duquette MacCarthy's description -facsimileTelephoneNumber: +1 408 219-9807 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 921-5323 -title: Chief Product Development Artist -userPassword: Password1 -uid: MacCartD -givenName: Duquette -mail: MacCartD@599d357394854e689476d822b0b57fa1.bitwarden.com -carLicense: LN1Y3A -departmentNumber: 5389 -employeeType: Normal -homePhone: +1 408 952-2175 -initials: D. M. -mobile: +1 408 391-5773 -pager: +1 408 242-8221 -roomNumber: 8674 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Erhard Ikeda,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erhard Ikeda -sn: Ikeda -description: This is Erhard Ikeda's description -facsimileTelephoneNumber: +1 818 452-1523 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 818 486-9362 -title: Master Administrative Janitor -userPassword: Password1 -uid: IkedaE -givenName: Erhard -mail: IkedaE@91023564560e4387b5bc8c338afb8d2d.bitwarden.com -carLicense: PTCJBA -departmentNumber: 8075 -employeeType: Employee -homePhone: +1 818 762-4692 -initials: E. I. -mobile: +1 818 593-8536 -pager: +1 818 133-1302 -roomNumber: 8743 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Perrin Lai,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perrin Lai -sn: Lai -description: This is Perrin Lai's description -facsimileTelephoneNumber: +1 408 359-9086 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 339-1821 -title: Master Peons Warrior -userPassword: Password1 -uid: LaiP -givenName: Perrin -mail: LaiP@191560c093d04e6eb83773b23b4a75c7.bitwarden.com -carLicense: 8S84SB -departmentNumber: 9342 -employeeType: Employee -homePhone: +1 408 383-3809 -initials: P. L. -mobile: +1 408 695-9535 -pager: +1 408 781-7734 -roomNumber: 8440 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vickie Bardsley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vickie Bardsley -sn: Bardsley -description: This is Vickie Bardsley's description -facsimileTelephoneNumber: +1 206 560-7657 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 206 942-1958 -title: Supreme Peons Admin -userPassword: Password1 -uid: BardsleV -givenName: Vickie -mail: BardsleV@34b9dab44b4c429bac836e963718507e.bitwarden.com -carLicense: 04OFTT -departmentNumber: 1182 -employeeType: Contract -homePhone: +1 206 114-7630 -initials: V. B. -mobile: +1 206 738-5300 -pager: +1 206 337-9113 -roomNumber: 9978 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yasmeen Uhl -sn: Uhl -description: This is Yasmeen Uhl's description -facsimileTelephoneNumber: +1 415 733-9650 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 836-6947 -title: Chief Payroll Madonna -userPassword: Password1 -uid: UhlY -givenName: Yasmeen -mail: UhlY@2e914230190e4b26af40b18447e81c89.bitwarden.com -carLicense: MQA8A9 -departmentNumber: 6439 -employeeType: Contract -homePhone: +1 415 756-1839 -initials: Y. U. -mobile: +1 415 945-3455 -pager: +1 415 925-1461 -roomNumber: 9128 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jackquelin Gavens -sn: Gavens -description: This is Jackquelin Gavens's description -facsimileTelephoneNumber: +1 804 594-8291 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 499-5388 -title: Associate Administrative Czar -userPassword: Password1 -uid: GavensJ -givenName: Jackquelin -mail: GavensJ@48d89f6366ec4bc9a3dc2bca58802c17.bitwarden.com -carLicense: XDXFCR -departmentNumber: 8344 -employeeType: Normal -homePhone: +1 804 746-2703 -initials: J. G. -mobile: +1 804 260-3026 -pager: +1 804 427-6609 -roomNumber: 8911 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katherin Habert,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katherin Habert -sn: Habert -description: This is Katherin Habert's description -facsimileTelephoneNumber: +1 804 529-6776 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 572-1476 -title: Associate Administrative Dictator -userPassword: Password1 -uid: HabertK -givenName: Katherin -mail: HabertK@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com -carLicense: EHP80P -departmentNumber: 8951 -employeeType: Contract -homePhone: +1 804 947-1985 -initials: K. H. -mobile: +1 804 641-3968 -pager: +1 804 706-4141 -roomNumber: 8871 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mehrzad Stults -sn: Stults -description: This is Mehrzad Stults's description -facsimileTelephoneNumber: +1 818 737-8430 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 258-6808 -title: Junior Human Resources Visionary -userPassword: Password1 -uid: StultsM -givenName: Mehrzad -mail: StultsM@a94f02e2207d4ffea5ed4b894690e8bb.bitwarden.com -carLicense: IW66XH -departmentNumber: 7094 -employeeType: Normal -homePhone: +1 818 616-9722 -initials: M. S. -mobile: +1 818 856-9741 -pager: +1 818 790-6800 -roomNumber: 8955 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nobuko Prickett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nobuko Prickett -sn: Prickett -description: This is Nobuko Prickett's description -facsimileTelephoneNumber: +1 206 816-5114 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 751-9623 -title: Supreme Peons Sales Rep -userPassword: Password1 -uid: PricketN -givenName: Nobuko -mail: PricketN@7a0a42a221e54534bde4f77162bffa38.bitwarden.com -carLicense: QKAA90 -departmentNumber: 1685 -employeeType: Contract -homePhone: +1 206 522-1648 -initials: N. P. -mobile: +1 206 955-7740 -pager: +1 206 500-8866 -roomNumber: 9366 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amye Seery,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amye Seery -sn: Seery -description: This is Amye Seery's description -facsimileTelephoneNumber: +1 510 392-5116 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 510 616-7681 -title: Supreme Human Resources Consultant -userPassword: Password1 -uid: SeeryA -givenName: Amye -mail: SeeryA@5a862ee432d84b02b5e7449c7e7e57de.bitwarden.com -carLicense: J177EP -departmentNumber: 6520 -employeeType: Normal -homePhone: +1 510 481-1891 -initials: A. S. -mobile: +1 510 384-8118 -pager: +1 510 496-6442 -roomNumber: 8090 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Illinois Bolgos,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Illinois Bolgos -sn: Bolgos -description: This is Illinois Bolgos's description -facsimileTelephoneNumber: +1 213 103-5863 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 495-9414 -title: Associate Peons Pinhead -userPassword: Password1 -uid: BolgosI -givenName: Illinois -mail: BolgosI@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com -carLicense: 81P2PO -departmentNumber: 4402 -employeeType: Employee -homePhone: +1 213 129-6288 -initials: I. B. -mobile: +1 213 995-2661 -pager: +1 213 314-1770 -roomNumber: 8954 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sandro Ploof,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandro Ploof -sn: Ploof -description: This is Sandro Ploof's description -facsimileTelephoneNumber: +1 818 851-1954 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 675-6683 -title: Supreme Product Testing Figurehead -userPassword: Password1 -uid: PloofS -givenName: Sandro -mail: PloofS@5b74ae7e4b63404ca474f585b4fa1a15.bitwarden.com -carLicense: 793OHB -departmentNumber: 9705 -employeeType: Normal -homePhone: +1 818 871-4787 -initials: S. P. -mobile: +1 818 786-9987 -pager: +1 818 785-7376 -roomNumber: 9776 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Turgay Potesta,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Turgay Potesta -sn: Potesta -description: This is Turgay Potesta's description -facsimileTelephoneNumber: +1 408 254-2394 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 408 426-6221 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: PotestaT -givenName: Turgay -mail: PotestaT@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com -carLicense: E00EOU -departmentNumber: 7353 -employeeType: Normal -homePhone: +1 408 900-7605 -initials: T. P. -mobile: +1 408 266-5086 -pager: +1 408 380-5021 -roomNumber: 8688 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Debi Hore,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debi Hore -sn: Hore -description: This is Debi Hore's description -facsimileTelephoneNumber: +1 408 345-4235 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 111-2987 -title: Chief Payroll Figurehead -userPassword: Password1 -uid: HoreD -givenName: Debi -mail: HoreD@399088e535dc444183a128d7fd1a5d16.bitwarden.com -carLicense: JY5H2G -departmentNumber: 6485 -employeeType: Normal -homePhone: +1 408 537-2798 -initials: D. H. -mobile: +1 408 698-8964 -pager: +1 408 932-4828 -roomNumber: 8566 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Leyla Toulson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leyla Toulson -sn: Toulson -description: This is Leyla Toulson's description -facsimileTelephoneNumber: +1 213 216-5898 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 838-1691 -title: Chief Janitorial Technician -userPassword: Password1 -uid: ToulsonL -givenName: Leyla -mail: ToulsonL@4fdb4b1142dd43e2b745e38a2e8dcfc4.bitwarden.com -carLicense: 2QYAJ4 -departmentNumber: 8817 -employeeType: Employee -homePhone: +1 213 601-3566 -initials: L. T. -mobile: +1 213 576-2820 -pager: +1 213 338-4897 -roomNumber: 9072 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Morris Asghar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morris Asghar -sn: Asghar -description: This is Morris Asghar's description -facsimileTelephoneNumber: +1 206 665-1846 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 555-3535 -title: Junior Janitorial Evangelist -userPassword: Password1 -uid: AsgharM -givenName: Morris -mail: AsgharM@dd44ac1957c74a4cb7889302d7ebe0e9.bitwarden.com -carLicense: 4CYV26 -departmentNumber: 9068 -employeeType: Normal -homePhone: +1 206 979-2022 -initials: M. A. -mobile: +1 206 329-7365 -pager: +1 206 666-8723 -roomNumber: 9440 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Eirik Satkamp,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eirik Satkamp -sn: Satkamp -description: This is Eirik Satkamp's description -facsimileTelephoneNumber: +1 213 537-2297 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 606-5520 -title: Master Payroll Artist -userPassword: Password1 -uid: SatkampE -givenName: Eirik -mail: SatkampE@a58e2e7328b140e6b9088aee54dad46e.bitwarden.com -carLicense: LEMYU9 -departmentNumber: 7766 -employeeType: Employee -homePhone: +1 213 777-4697 -initials: E. S. -mobile: +1 213 313-9239 -pager: +1 213 178-9078 -roomNumber: 8523 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Asghar Graziano,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Asghar Graziano -sn: Graziano -description: This is Asghar Graziano's description -facsimileTelephoneNumber: +1 408 170-3320 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 789-7286 -title: Master Product Testing Developer -userPassword: Password1 -uid: GrazianA -givenName: Asghar -mail: GrazianA@ed467736f9c84503b862ff0dede491f5.bitwarden.com -carLicense: PLWPCG -departmentNumber: 5636 -employeeType: Employee -homePhone: +1 408 939-3980 -initials: A. G. -mobile: +1 408 337-2895 -pager: +1 408 545-3696 -roomNumber: 9456 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Randee McIntee,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randee McIntee -sn: McIntee -description: This is Randee McIntee's description -facsimileTelephoneNumber: +1 818 341-2080 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 656-1114 -title: Supreme Management Warrior -userPassword: Password1 -uid: McInteeR -givenName: Randee -mail: McInteeR@51d2d36aebb34355849c7e53ff1c0f7f.bitwarden.com -carLicense: PV2KFQ -departmentNumber: 8355 -employeeType: Contract -homePhone: +1 818 288-5600 -initials: R. M. -mobile: +1 818 656-9125 -pager: +1 818 151-7295 -roomNumber: 8148 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Magnolia Aderhold,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magnolia Aderhold -sn: Aderhold -description: This is Magnolia Aderhold's description -facsimileTelephoneNumber: +1 206 765-6235 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 955-2574 -title: Master Peons Sales Rep -userPassword: Password1 -uid: AderholM -givenName: Magnolia -mail: AderholM@af1c936dc969478a898b38c058f5ed5e.bitwarden.com -carLicense: W6P4VC -departmentNumber: 8477 -employeeType: Employee -homePhone: +1 206 624-8169 -initials: M. A. -mobile: +1 206 765-8915 -pager: +1 206 446-9781 -roomNumber: 8899 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gert Thibert,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gert Thibert -sn: Thibert -description: This is Gert Thibert's description -facsimileTelephoneNumber: +1 408 108-6741 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 619-5016 -title: Chief Administrative Consultant -userPassword: Password1 -uid: ThibertG -givenName: Gert -mail: ThibertG@df1e12962002409b9a20ed25bb4fc517.bitwarden.com -carLicense: FHF58K -departmentNumber: 3499 -employeeType: Contract -homePhone: +1 408 616-1967 -initials: G. T. -mobile: +1 408 489-5235 -pager: +1 408 240-5085 -roomNumber: 9332 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hunter Durant,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hunter Durant -sn: Durant -description: This is Hunter Durant's description -facsimileTelephoneNumber: +1 408 689-6392 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 318-1854 -title: Associate Payroll Manager -userPassword: Password1 -uid: DurantH -givenName: Hunter -mail: DurantH@4a47eda5b0994d6aac96fd9eb9bf327f.bitwarden.com -carLicense: 02XI8X -departmentNumber: 9479 -employeeType: Contract -homePhone: +1 408 344-5514 -initials: H. D. -mobile: +1 408 561-8712 -pager: +1 408 139-8229 -roomNumber: 8415 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Luci Gergen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luci Gergen -sn: Gergen -description: This is Luci Gergen's description -facsimileTelephoneNumber: +1 804 326-4613 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 804 848-9750 -title: Master Administrative Assistant -userPassword: Password1 -uid: GergenL -givenName: Luci -mail: GergenL@7ac0e2ad61544d40bfea2cd31be985e5.bitwarden.com -carLicense: X6LH4N -departmentNumber: 2907 -employeeType: Contract -homePhone: +1 804 964-7866 -initials: L. G. -mobile: +1 804 623-5011 -pager: +1 804 105-6325 -roomNumber: 8847 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilak Samsonenko -sn: Samsonenko -description: This is Tilak Samsonenko's description -facsimileTelephoneNumber: +1 408 915-2343 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 105-1850 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: SamsoneT -givenName: Tilak -mail: SamsoneT@a36ae0077844436e8862dc02ec43b8a5.bitwarden.com -carLicense: URFASO -departmentNumber: 4919 -employeeType: Contract -homePhone: +1 408 291-3110 -initials: T. S. -mobile: +1 408 165-5607 -pager: +1 408 870-1662 -roomNumber: 8698 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yousef Musick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yousef Musick -sn: Musick -description: This is Yousef Musick's description -facsimileTelephoneNumber: +1 415 525-9665 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 885-7879 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: MusickY -givenName: Yousef -mail: MusickY@2a9b1bb4219c473fa5e7f0b996562330.bitwarden.com -carLicense: 1RTQWR -departmentNumber: 8132 -employeeType: Normal -homePhone: +1 415 506-1690 -initials: Y. M. -mobile: +1 415 895-3545 -pager: +1 415 902-4168 -roomNumber: 8829 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shabbir Derganc,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shabbir Derganc -sn: Derganc -description: This is Shabbir Derganc's description -facsimileTelephoneNumber: +1 213 978-4400 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 297-1808 -title: Supreme Peons Evangelist -userPassword: Password1 -uid: DergancS -givenName: Shabbir -mail: DergancS@fcae2d9ced4b428b9a9d2a090c1d7f7e.bitwarden.com -carLicense: JFAMC8 -departmentNumber: 7936 -employeeType: Normal -homePhone: +1 213 450-3934 -initials: S. D. -mobile: +1 213 449-4942 -pager: +1 213 360-4820 -roomNumber: 8594 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Amalita Korey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amalita Korey -sn: Korey -description: This is Amalita Korey's description -facsimileTelephoneNumber: +1 415 287-2188 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 109-7066 -title: Junior Janitorial Architect -userPassword: Password1 -uid: KoreyA -givenName: Amalita -mail: KoreyA@7f43ce627c55498db87bd6bc96b3db06.bitwarden.com -carLicense: UHGPB3 -departmentNumber: 5255 -employeeType: Employee -homePhone: +1 415 988-7567 -initials: A. K. -mobile: +1 415 332-6389 -pager: +1 415 336-7470 -roomNumber: 8018 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Herbie Merrils,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herbie Merrils -sn: Merrils -description: This is Herbie Merrils's description -facsimileTelephoneNumber: +1 804 343-3543 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 772-1229 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: MerrilsH -givenName: Herbie -mail: MerrilsH@ea8c137275494c24a45d33c847e472b4.bitwarden.com -carLicense: VNW7GW -departmentNumber: 4979 -employeeType: Normal -homePhone: +1 804 918-4906 -initials: H. M. -mobile: +1 804 298-6138 -pager: +1 804 146-6097 -roomNumber: 8472 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=YuenPui Woodford,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YuenPui Woodford -sn: Woodford -description: This is YuenPui Woodford's description -facsimileTelephoneNumber: +1 213 455-7452 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 455-8572 -title: Chief Product Development Punk -userPassword: Password1 -uid: WoodforY -givenName: YuenPui -mail: WoodforY@352885b42f264ade8eacdfa709cc8cc4.bitwarden.com -carLicense: MEIVKK -departmentNumber: 3654 -employeeType: Employee -homePhone: +1 213 626-3398 -initials: Y. W. -mobile: +1 213 149-3913 -pager: +1 213 372-7502 -roomNumber: 8172 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mair Dobransky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mair Dobransky -sn: Dobransky -description: This is Mair Dobransky's description -facsimileTelephoneNumber: +1 408 277-3589 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 860-7764 -title: Associate Administrative Pinhead -userPassword: Password1 -uid: DobransM -givenName: Mair -mail: DobransM@fb42541289ea4a75a098aa5071cf2a78.bitwarden.com -carLicense: EO9TF6 -departmentNumber: 3196 -employeeType: Contract -homePhone: +1 408 945-7210 -initials: M. D. -mobile: +1 408 697-9992 -pager: +1 408 306-5296 -roomNumber: 8988 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fae Molson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fae Molson -sn: Molson -description: This is Fae Molson's description -facsimileTelephoneNumber: +1 415 770-7225 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 995-6404 -title: Master Management Artist -userPassword: Password1 -uid: MolsonF -givenName: Fae -mail: MolsonF@88e71895091a44a391aaaea86b3a2139.bitwarden.com -carLicense: AJ7YWU -departmentNumber: 8652 -employeeType: Contract -homePhone: +1 415 936-6724 -initials: F. M. -mobile: +1 415 150-3091 -pager: +1 415 203-3544 -roomNumber: 8602 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Subhash Moizer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subhash Moizer -sn: Moizer -description: This is Subhash Moizer's description -facsimileTelephoneNumber: +1 206 429-3335 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 677-1399 -title: Junior Product Testing Evangelist -userPassword: Password1 -uid: MoizerS -givenName: Subhash -mail: MoizerS@1a8c60a83e6243159e036bc3f0b25375.bitwarden.com -carLicense: M7IN32 -departmentNumber: 7217 -employeeType: Normal -homePhone: +1 206 481-5056 -initials: S. M. -mobile: +1 206 223-1384 -pager: +1 206 788-4051 -roomNumber: 8899 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rosella Spillane,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosella Spillane -sn: Spillane -description: This is Rosella Spillane's description -facsimileTelephoneNumber: +1 415 210-5167 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 210-7599 -title: Associate Peons Developer -userPassword: Password1 -uid: SpillanR -givenName: Rosella -mail: SpillanR@7d0b6de1366f4854a2055e12fa1d2f25.bitwarden.com -carLicense: IL3AIU -departmentNumber: 9366 -employeeType: Contract -homePhone: +1 415 549-4404 -initials: R. S. -mobile: +1 415 503-8281 -pager: +1 415 697-9785 -roomNumber: 9389 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Persis Modi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Persis Modi -sn: Modi -description: This is Persis Modi's description -facsimileTelephoneNumber: +1 510 960-7140 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 121-1069 -title: Associate Payroll Engineer -userPassword: Password1 -uid: ModiP -givenName: Persis -mail: ModiP@e01f22d28f98422baeb51e5c86b12ea4.bitwarden.com -carLicense: JULFSC -departmentNumber: 7432 -employeeType: Employee -homePhone: +1 510 211-7502 -initials: P. M. -mobile: +1 510 528-1527 -pager: +1 510 343-5936 -roomNumber: 9538 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tamar Haggart,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamar Haggart -sn: Haggart -description: This is Tamar Haggart's description -facsimileTelephoneNumber: +1 818 215-7277 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 818 765-9300 -title: Master Payroll Warrior -userPassword: Password1 -uid: HaggartT -givenName: Tamar -mail: HaggartT@0bbb8d3aae5445bdac2a449666fb01f5.bitwarden.com -carLicense: GXJYVY -departmentNumber: 4009 -employeeType: Normal -homePhone: +1 818 663-6288 -initials: T. H. -mobile: +1 818 419-4606 -pager: +1 818 910-1467 -roomNumber: 9005 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Orelie Cheval,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orelie Cheval -sn: Cheval -description: This is Orelie Cheval's description -facsimileTelephoneNumber: +1 818 182-4464 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 818 887-1695 -title: Chief Payroll Grunt -userPassword: Password1 -uid: ChevalO -givenName: Orelie -mail: ChevalO@ad4f2c28add24fbaa47ce2429cc8c126.bitwarden.com -carLicense: TAF5RD -departmentNumber: 3410 -employeeType: Employee -homePhone: +1 818 909-6125 -initials: O. C. -mobile: +1 818 800-2503 -pager: +1 818 651-4773 -roomNumber: 8191 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ronna Morton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronna Morton -sn: Morton -description: This is Ronna Morton's description -facsimileTelephoneNumber: +1 206 373-8354 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 541-7768 -title: Supreme Product Development President -userPassword: Password1 -uid: MortonR -givenName: Ronna -mail: MortonR@bf06b384703e4fb1b93b31fc9bbac8e5.bitwarden.com -carLicense: NREFIR -departmentNumber: 1084 -employeeType: Normal -homePhone: +1 206 208-5592 -initials: R. M. -mobile: +1 206 322-7328 -pager: +1 206 762-6113 -roomNumber: 9028 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Eryn Avirett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eryn Avirett -sn: Avirett -description: This is Eryn Avirett's description -facsimileTelephoneNumber: +1 804 460-9771 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 737-4806 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: AvirettE -givenName: Eryn -mail: AvirettE@764613c40e224c12ab1c1cb80b18e644.bitwarden.com -carLicense: LP23GH -departmentNumber: 6470 -employeeType: Employee -homePhone: +1 804 266-5620 -initials: E. A. -mobile: +1 804 607-5167 -pager: +1 804 233-8084 -roomNumber: 8568 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YeeNing Minegishi -sn: Minegishi -description: This is YeeNing Minegishi's description -facsimileTelephoneNumber: +1 206 515-6256 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 998-4545 -title: Chief Administrative Visionary -userPassword: Password1 -uid: MinegisY -givenName: YeeNing -mail: MinegisY@76c064fc8a52468faf02f6f037383b43.bitwarden.com -carLicense: DX2FBY -departmentNumber: 5695 -employeeType: Employee -homePhone: +1 206 126-3363 -initials: Y. M. -mobile: +1 206 102-7328 -pager: +1 206 612-4748 -roomNumber: 8233 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amaleta Chuah -sn: Chuah -description: This is Amaleta Chuah's description -facsimileTelephoneNumber: +1 408 846-3050 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 408 494-2302 -title: Junior Product Testing Developer -userPassword: Password1 -uid: ChuahA -givenName: Amaleta -mail: ChuahA@7fd0c28d96684690bb3ec812bcbe54dc.bitwarden.com -carLicense: PD54DP -departmentNumber: 7777 -employeeType: Normal -homePhone: +1 408 178-9231 -initials: A. C. -mobile: +1 408 463-6016 -pager: +1 408 300-6296 -roomNumber: 9671 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rowe Firment,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rowe Firment -sn: Firment -description: This is Rowe Firment's description -facsimileTelephoneNumber: +1 818 819-9520 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 945-3583 -title: Chief Payroll President -userPassword: Password1 -uid: FirmentR -givenName: Rowe -mail: FirmentR@341209807c3b449193b094017d62cb24.bitwarden.com -carLicense: PURHPD -departmentNumber: 2087 -employeeType: Normal -homePhone: +1 818 685-6192 -initials: R. F. -mobile: +1 818 517-7016 -pager: +1 818 503-6771 -roomNumber: 9831 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fidela Irving,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fidela Irving -sn: Irving -description: This is Fidela Irving's description -facsimileTelephoneNumber: +1 510 657-2504 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 510 319-2328 -title: Junior Product Development Writer -userPassword: Password1 -uid: IrvingF -givenName: Fidela -mail: IrvingF@edc642e0d4114142a514590d284702bf.bitwarden.com -carLicense: UB06F5 -departmentNumber: 3607 -employeeType: Contract -homePhone: +1 510 663-8179 -initials: F. I. -mobile: +1 510 136-7374 -pager: +1 510 131-4983 -roomNumber: 8923 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giambattista Hawryluk -sn: Hawryluk -description: This is Giambattista Hawryluk's description -facsimileTelephoneNumber: +1 510 350-4182 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 806-2076 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: HawryluG -givenName: Giambattista -mail: HawryluG@b1b7656e019d440a9a3ca7d6d074faa1.bitwarden.com -carLicense: HNOVP4 -departmentNumber: 1019 -employeeType: Contract -homePhone: +1 510 344-5628 -initials: G. H. -mobile: +1 510 742-1059 -pager: +1 510 913-4845 -roomNumber: 9123 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Desire Rutter,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desire Rutter -sn: Rutter -description: This is Desire Rutter's description -facsimileTelephoneNumber: +1 818 846-9397 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 567-4869 -title: Junior Administrative Architect -userPassword: Password1 -uid: RutterD -givenName: Desire -mail: RutterD@17dcf13b7e684c4a9ba2dcc27a684a76.bitwarden.com -carLicense: KGXFC0 -departmentNumber: 6924 -employeeType: Employee -homePhone: +1 818 428-5498 -initials: D. R. -mobile: +1 818 706-6426 -pager: +1 818 791-1359 -roomNumber: 8184 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Xaviera Anstead,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xaviera Anstead -sn: Anstead -description: This is Xaviera Anstead's description -facsimileTelephoneNumber: +1 818 220-4275 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 948-7285 -title: Supreme Management Evangelist -userPassword: Password1 -uid: AnsteadX -givenName: Xaviera -mail: AnsteadX@c7ac29b8c7544beabc5b51db5b6a9b3a.bitwarden.com -carLicense: QS30JX -departmentNumber: 6426 -employeeType: Employee -homePhone: +1 818 364-1272 -initials: X. A. -mobile: +1 818 706-4657 -pager: +1 818 925-5457 -roomNumber: 9299 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kelsi McAlister,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelsi McAlister -sn: McAlister -description: This is Kelsi McAlister's description -facsimileTelephoneNumber: +1 818 901-3669 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 328-6094 -title: Supreme Management Technician -userPassword: Password1 -uid: McAlistK -givenName: Kelsi -mail: McAlistK@78b14e83ea6c430b9dbf5891d9c7ea13.bitwarden.com -carLicense: D3GOXN -departmentNumber: 5160 -employeeType: Contract -homePhone: +1 818 392-6784 -initials: K. M. -mobile: +1 818 275-2790 -pager: +1 818 403-4317 -roomNumber: 9624 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marce Onyshko,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marce Onyshko -sn: Onyshko -description: This is Marce Onyshko's description -facsimileTelephoneNumber: +1 408 742-1114 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 436-7057 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: OnyshkoM -givenName: Marce -mail: OnyshkoM@cd70627629114669966294343a84f460.bitwarden.com -carLicense: 22MVAT -departmentNumber: 8905 -employeeType: Contract -homePhone: +1 408 944-9215 -initials: M. O. -mobile: +1 408 858-7712 -pager: +1 408 859-9050 -roomNumber: 8213 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Son AlBasi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Son AlBasi -sn: AlBasi -description: This is Son AlBasi's description -facsimileTelephoneNumber: +1 818 370-4186 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 214-9323 -title: Junior Peons Developer -userPassword: Password1 -uid: AlBasiS -givenName: Son -mail: AlBasiS@380d2cfedb114628852f31e5ec3504d8.bitwarden.com -carLicense: U2NDJ0 -departmentNumber: 4880 -employeeType: Employee -homePhone: +1 818 946-1892 -initials: S. A. -mobile: +1 818 428-2583 -pager: +1 818 696-8084 -roomNumber: 9023 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zdenko Burrowes -sn: Burrowes -description: This is Zdenko Burrowes's description -facsimileTelephoneNumber: +1 206 473-8165 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 206 859-7395 -title: Junior Product Development Dictator -userPassword: Password1 -uid: BurroweZ -givenName: Zdenko -mail: BurroweZ@42ed2713079345ee9a1fa2e4e2a26d0d.bitwarden.com -carLicense: E7ORUC -departmentNumber: 5987 -employeeType: Contract -homePhone: +1 206 421-9981 -initials: Z. B. -mobile: +1 206 746-7992 -pager: +1 206 434-5767 -roomNumber: 8498 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Julianne Temp,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julianne Temp -sn: Temp -description: This is Julianne Temp's description -facsimileTelephoneNumber: +1 804 604-9011 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 804 772-2219 -title: Junior Administrative Czar -userPassword: Password1 -uid: TempJ -givenName: Julianne -mail: TempJ@d90060a8a6214d68a708f85a619deb45.bitwarden.com -carLicense: 0L5WR7 -departmentNumber: 1194 -employeeType: Contract -homePhone: +1 804 699-5237 -initials: J. T. -mobile: +1 804 736-2942 -pager: +1 804 915-9630 -roomNumber: 9258 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Seamus Sathe,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seamus Sathe -sn: Sathe -description: This is Seamus Sathe's description -facsimileTelephoneNumber: +1 408 257-4849 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 408 559-5981 -title: Master Human Resources Architect -userPassword: Password1 -uid: SatheS -givenName: Seamus -mail: SatheS@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com -carLicense: R60336 -departmentNumber: 3092 -employeeType: Employee -homePhone: +1 408 276-6075 -initials: S. S. -mobile: +1 408 331-2268 -pager: +1 408 632-2681 -roomNumber: 8500 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Terra Tanatichat,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terra Tanatichat -sn: Tanatichat -description: This is Terra Tanatichat's description -facsimileTelephoneNumber: +1 818 719-9668 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 818 167-3252 -title: Master Product Development Punk -userPassword: Password1 -uid: TanaticT -givenName: Terra -mail: TanaticT@228cb153fdc24b46957a116ec2859b16.bitwarden.com -carLicense: 7HYQIS -departmentNumber: 9732 -employeeType: Employee -homePhone: +1 818 690-1313 -initials: T. T. -mobile: +1 818 339-2352 -pager: +1 818 846-7551 -roomNumber: 9312 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlisle Hazelton -sn: Hazelton -description: This is Carlisle Hazelton's description -facsimileTelephoneNumber: +1 213 711-4357 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 613-1627 -title: Master Payroll President -userPassword: Password1 -uid: HazeltoC -givenName: Carlisle -mail: HazeltoC@51972c3fcd684339942be0fdc3e53b2a.bitwarden.com -carLicense: H42FL5 -departmentNumber: 4605 -employeeType: Normal -homePhone: +1 213 896-5873 -initials: C. H. -mobile: +1 213 335-3542 -pager: +1 213 455-2048 -roomNumber: 9430 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Emil Hogeboom,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emil Hogeboom -sn: Hogeboom -description: This is Emil Hogeboom's description -facsimileTelephoneNumber: +1 510 192-1983 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 464-2372 -title: Master Administrative Artist -userPassword: Password1 -uid: HogebooE -givenName: Emil -mail: HogebooE@e6ed933c0a1d45ec83769226267acd7a.bitwarden.com -carLicense: I86VTP -departmentNumber: 8290 -employeeType: Normal -homePhone: +1 510 771-6653 -initials: E. H. -mobile: +1 510 341-2644 -pager: +1 510 820-3790 -roomNumber: 9997 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anup Volkmer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anup Volkmer -sn: Volkmer -description: This is Anup Volkmer's description -facsimileTelephoneNumber: +1 213 835-2819 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 133-6190 -title: Supreme Human Resources Assistant -userPassword: Password1 -uid: VolkmerA -givenName: Anup -mail: VolkmerA@6e287118b6904f0fb9c650aef9285536.bitwarden.com -carLicense: 9F9XYV -departmentNumber: 9361 -employeeType: Normal -homePhone: +1 213 780-8504 -initials: A. V. -mobile: +1 213 246-5432 -pager: +1 213 586-7383 -roomNumber: 9278 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kevin Tangren,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kevin Tangren -sn: Tangren -description: This is Kevin Tangren's description -facsimileTelephoneNumber: +1 213 622-4206 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 425-9081 -title: Chief Human Resources Punk -userPassword: Password1 -uid: TangrenK -givenName: Kevin -mail: TangrenK@1f071e8813ad43c0a975571fab76b110.bitwarden.com -carLicense: 9MVHYU -departmentNumber: 7487 -employeeType: Employee -homePhone: +1 213 735-8288 -initials: K. T. -mobile: +1 213 921-4727 -pager: +1 213 955-4363 -roomNumber: 8309 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miguel Lamoureux -sn: Lamoureux -description: This is Miguel Lamoureux's description -facsimileTelephoneNumber: +1 510 919-9457 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 207-1033 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: LamoureM -givenName: Miguel -mail: LamoureM@a71c06be904c4f5a89c92e6a220b8c20.bitwarden.com -carLicense: GR8G5N -departmentNumber: 4578 -employeeType: Employee -homePhone: +1 510 176-1640 -initials: M. L. -mobile: +1 510 944-2628 -pager: +1 510 524-6676 -roomNumber: 9165 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Germaine Lisak,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Germaine Lisak -sn: Lisak -description: This is Germaine Lisak's description -facsimileTelephoneNumber: +1 408 850-9650 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 815-7873 -title: Supreme Product Testing Figurehead -userPassword: Password1 -uid: LisakG -givenName: Germaine -mail: LisakG@83ae92312ed14d6f8e9439baa2583cab.bitwarden.com -carLicense: XJO2DP -departmentNumber: 1958 -employeeType: Normal -homePhone: +1 408 759-1857 -initials: G. L. -mobile: +1 408 523-1017 -pager: +1 408 103-5503 -roomNumber: 8459 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Deni Chea,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deni Chea -sn: Chea -description: This is Deni Chea's description -facsimileTelephoneNumber: +1 818 666-3090 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 486-2464 -title: Chief Management Assistant -userPassword: Password1 -uid: CheaD -givenName: Deni -mail: CheaD@8743427566014d61952feea02c990670.bitwarden.com -carLicense: V1VCIM -departmentNumber: 3845 -employeeType: Employee -homePhone: +1 818 304-4119 -initials: D. C. -mobile: +1 818 174-2083 -pager: +1 818 536-5616 -roomNumber: 9085 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: GuoQiang Ortiz -sn: Ortiz -description: This is GuoQiang Ortiz's description -facsimileTelephoneNumber: +1 408 416-4091 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 694-7337 -title: Chief Product Testing Admin -userPassword: Password1 -uid: OrtizG -givenName: GuoQiang -mail: OrtizG@e0abe3f47abe4097a988502110393014.bitwarden.com -carLicense: W97NP8 -departmentNumber: 7230 -employeeType: Contract -homePhone: +1 408 555-3150 -initials: G. O. -mobile: +1 408 998-7222 -pager: +1 408 161-7323 -roomNumber: 8451 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardavan Dittburner -sn: Dittburner -description: This is Ardavan Dittburner's description -facsimileTelephoneNumber: +1 213 547-2802 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 900-8010 -title: Associate Administrative Visionary -userPassword: Password1 -uid: DittburA -givenName: Ardavan -mail: DittburA@8ae5753568884557b826bbbe6815b824.bitwarden.com -carLicense: QM5QIA -departmentNumber: 3949 -employeeType: Normal -homePhone: +1 213 818-9577 -initials: A. D. -mobile: +1 213 203-1899 -pager: +1 213 207-5423 -roomNumber: 9565 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jooran Hilton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jooran Hilton -sn: Hilton -description: This is Jooran Hilton's description -facsimileTelephoneNumber: +1 213 961-4584 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 541-4208 -title: Master Peons Janitor -userPassword: Password1 -uid: HiltonJ -givenName: Jooran -mail: HiltonJ@22805ca86db349db82f4caa9262213d7.bitwarden.com -carLicense: E1TQ0B -departmentNumber: 7990 -employeeType: Contract -homePhone: +1 213 136-5943 -initials: J. H. -mobile: +1 213 258-2476 -pager: +1 213 897-9012 -roomNumber: 8516 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pramod Piltz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pramod Piltz -sn: Piltz -description: This is Pramod Piltz's description -facsimileTelephoneNumber: +1 408 993-4783 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 944-6608 -title: Associate Administrative Visionary -userPassword: Password1 -uid: PiltzP -givenName: Pramod -mail: PiltzP@ffa8cd3aeeee4cfeb19b5276a68d00ba.bitwarden.com -carLicense: WOG6GS -departmentNumber: 1025 -employeeType: Normal -homePhone: +1 408 216-7447 -initials: P. P. -mobile: +1 408 616-5503 -pager: +1 408 135-8385 -roomNumber: 9075 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Reyaud Kurio,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reyaud Kurio -sn: Kurio -description: This is Reyaud Kurio's description -facsimileTelephoneNumber: +1 818 442-1375 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 210-8263 -title: Supreme Management Vice President -userPassword: Password1 -uid: KurioR -givenName: Reyaud -mail: KurioR@c7060db9738740d2956d55565559b7e1.bitwarden.com -carLicense: JKFUEG -departmentNumber: 9318 -employeeType: Normal -homePhone: +1 818 995-2581 -initials: R. K. -mobile: +1 818 380-6100 -pager: +1 818 724-7230 -roomNumber: 9954 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wiebren Bessey -sn: Bessey -description: This is Wiebren Bessey's description -facsimileTelephoneNumber: +1 818 998-5100 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 447-6075 -title: Master Product Testing Warrior -userPassword: Password1 -uid: BesseyW -givenName: Wiebren -mail: BesseyW@a97141a360d8445daa6a6439dfbbd290.bitwarden.com -carLicense: P8BIR8 -departmentNumber: 3953 -employeeType: Normal -homePhone: +1 818 455-1815 -initials: W. B. -mobile: +1 818 607-7158 -pager: +1 818 293-6772 -roomNumber: 9449 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shivdarsan DiLoreto -sn: DiLoreto -description: This is Shivdarsan DiLoreto's description -facsimileTelephoneNumber: +1 804 313-7658 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 288-4340 -title: Junior Management Architect -userPassword: Password1 -uid: DiLoretS -givenName: Shivdarsan -mail: DiLoretS@553a74428bb643038d327a6c4003715b.bitwarden.com -carLicense: D2EDAM -departmentNumber: 1039 -employeeType: Employee -homePhone: +1 804 560-1499 -initials: S. D. -mobile: +1 804 110-2711 -pager: +1 804 465-1859 -roomNumber: 9297 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Radio DiNinno,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Radio DiNinno -sn: DiNinno -description: This is Radio DiNinno's description -facsimileTelephoneNumber: +1 818 326-4819 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 818 723-5526 -title: Master Janitorial Warrior -userPassword: Password1 -uid: DiNinnoR -givenName: Radio -mail: DiNinnoR@954e6390e22749f58bb26b8cbf617fd4.bitwarden.com -carLicense: VHQK3I -departmentNumber: 2594 -employeeType: Normal -homePhone: +1 818 234-7484 -initials: R. D. -mobile: +1 818 749-1344 -pager: +1 818 993-1609 -roomNumber: 9590 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChyeLian Gaspard -sn: Gaspard -description: This is ChyeLian Gaspard's description -facsimileTelephoneNumber: +1 818 760-3324 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 372-4251 -title: Chief Product Development Mascot -userPassword: Password1 -uid: GaspardC -givenName: ChyeLian -mail: GaspardC@6b282dc55aa94d768c03263feaea873d.bitwarden.com -carLicense: H1HIWY -departmentNumber: 5065 -employeeType: Normal -homePhone: +1 818 486-7207 -initials: C. G. -mobile: +1 818 130-2025 -pager: +1 818 741-6420 -roomNumber: 8851 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cynde Tudo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cynde Tudo -sn: Tudo -description: This is Cynde Tudo's description -facsimileTelephoneNumber: +1 415 568-2698 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 332-9530 -title: Supreme Peons Pinhead -userPassword: Password1 -uid: TudoC -givenName: Cynde -mail: TudoC@34b8819121134165801d80019693f357.bitwarden.com -carLicense: 5MFO6F -departmentNumber: 3290 -employeeType: Employee -homePhone: +1 415 518-6375 -initials: C. T. -mobile: +1 415 751-5522 -pager: +1 415 752-4121 -roomNumber: 9830 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Genga Huor,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genga Huor -sn: Huor -description: This is Genga Huor's description -facsimileTelephoneNumber: +1 206 907-4843 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 206 425-1281 -title: Junior Administrative Admin -userPassword: Password1 -uid: HuorG -givenName: Genga -mail: HuorG@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com -carLicense: JV5JKC -departmentNumber: 8147 -employeeType: Employee -homePhone: +1 206 845-5018 -initials: G. H. -mobile: +1 206 935-6691 -pager: +1 206 738-2902 -roomNumber: 9160 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stepha Prodmfg -sn: Prodmfg -description: This is Stepha Prodmfg's description -facsimileTelephoneNumber: +1 510 845-2173 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 724-4384 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: ProdmfgS -givenName: Stepha -mail: ProdmfgS@8342e98dcb144504925e856ae40dc976.bitwarden.com -carLicense: OPH3LO -departmentNumber: 6640 -employeeType: Contract -homePhone: +1 510 360-8932 -initials: S. P. -mobile: +1 510 564-8814 -pager: +1 510 993-2996 -roomNumber: 9964 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Leandra Steffy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leandra Steffy -sn: Steffy -description: This is Leandra Steffy's description -facsimileTelephoneNumber: +1 415 631-9289 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 592-6527 -title: Associate Administrative Technician -userPassword: Password1 -uid: SteffyL -givenName: Leandra -mail: SteffyL@fde818a61bf74c84a96e4a6b3a93254c.bitwarden.com -carLicense: O8HQGD -departmentNumber: 2662 -employeeType: Normal -homePhone: +1 415 692-7398 -initials: L. S. -mobile: +1 415 732-6401 -pager: +1 415 160-9354 -roomNumber: 9917 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nikoletta Milakovic -sn: Milakovic -description: This is Nikoletta Milakovic's description -facsimileTelephoneNumber: +1 804 366-1706 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 581-9279 -title: Chief Product Development Technician -userPassword: Password1 -uid: MilakovN -givenName: Nikoletta -mail: MilakovN@173a9f8ca9674f02b63ed62bf1ee045c.bitwarden.com -carLicense: L08GFH -departmentNumber: 8612 -employeeType: Contract -homePhone: +1 804 203-3074 -initials: N. M. -mobile: +1 804 627-7921 -pager: +1 804 169-3856 -roomNumber: 9123 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opaline Nonkes -sn: Nonkes -description: This is Opaline Nonkes's description -facsimileTelephoneNumber: +1 804 234-5853 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 591-1906 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: NonkesO -givenName: Opaline -mail: NonkesO@3ae9bbbfe6944aab8c1da1dd2e25c83e.bitwarden.com -carLicense: ED1RNC -departmentNumber: 2298 -employeeType: Contract -homePhone: +1 804 963-6919 -initials: O. N. -mobile: +1 804 107-2703 -pager: +1 804 624-4583 -roomNumber: 8833 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Trisha Walpole,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trisha Walpole -sn: Walpole -description: This is Trisha Walpole's description -facsimileTelephoneNumber: +1 213 755-3188 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 441-2038 -title: Junior Peons Figurehead -userPassword: Password1 -uid: WalpoleT -givenName: Trisha -mail: WalpoleT@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com -carLicense: TFE9MK -departmentNumber: 8490 -employeeType: Contract -homePhone: +1 213 889-7560 -initials: T. W. -mobile: +1 213 691-5020 -pager: +1 213 234-8763 -roomNumber: 9161 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Valli Buzzell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valli Buzzell -sn: Buzzell -description: This is Valli Buzzell's description -facsimileTelephoneNumber: +1 408 972-8231 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 765-1175 -title: Associate Administrative Engineer -userPassword: Password1 -uid: BuzzellV -givenName: Valli -mail: BuzzellV@b847cd495a564fd88ad378e323d86f9e.bitwarden.com -carLicense: DR4FE7 -departmentNumber: 2424 -employeeType: Employee -homePhone: +1 408 745-7276 -initials: V. B. -mobile: +1 408 475-3710 -pager: +1 408 580-5066 -roomNumber: 9718 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gita Manuszak,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gita Manuszak -sn: Manuszak -description: This is Gita Manuszak's description -facsimileTelephoneNumber: +1 213 472-6670 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 679-2377 -title: Master Management Evangelist -userPassword: Password1 -uid: ManuszaG -givenName: Gita -mail: ManuszaG@f9d71b3d7756421faee1ebdbe5841d08.bitwarden.com -carLicense: C87AYE -departmentNumber: 5707 -employeeType: Contract -homePhone: +1 213 127-4057 -initials: G. M. -mobile: +1 213 796-9516 -pager: +1 213 238-3265 -roomNumber: 8995 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sadru Suda,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadru Suda -sn: Suda -description: This is Sadru Suda's description -facsimileTelephoneNumber: +1 510 400-5159 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 252-2926 -title: Associate Human Resources Warrior -userPassword: Password1 -uid: SudaS -givenName: Sadru -mail: SudaS@cc31cd53eb2f42d5bed8552ceaa8d352.bitwarden.com -carLicense: CIU75D -departmentNumber: 7774 -employeeType: Contract -homePhone: +1 510 189-1923 -initials: S. S. -mobile: +1 510 847-3640 -pager: +1 510 243-9509 -roomNumber: 8768 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Susana Mattes,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susana Mattes -sn: Mattes -description: This is Susana Mattes's description -facsimileTelephoneNumber: +1 804 493-3313 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 466-2027 -title: Chief Administrative Stooge -userPassword: Password1 -uid: MattesS -givenName: Susana -mail: MattesS@143f4decc1ea4d51bb83bcbd0e097784.bitwarden.com -carLicense: CPPNVA -departmentNumber: 4194 -employeeType: Normal -homePhone: +1 804 748-9745 -initials: S. M. -mobile: +1 804 563-2781 -pager: +1 804 602-9570 -roomNumber: 8270 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Diannne Geuder,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diannne Geuder -sn: Geuder -description: This is Diannne Geuder's description -facsimileTelephoneNumber: +1 206 419-7797 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 204-6002 -title: Supreme Peons Technician -userPassword: Password1 -uid: GeuderD -givenName: Diannne -mail: GeuderD@b22ff28e3c9d44f9a2be9fd304adde71.bitwarden.com -carLicense: TTU7U2 -departmentNumber: 5383 -employeeType: Contract -homePhone: +1 206 593-7894 -initials: D. G. -mobile: +1 206 120-8958 -pager: +1 206 435-5458 -roomNumber: 9436 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorilyn Palermo -sn: Palermo -description: This is Lorilyn Palermo's description -facsimileTelephoneNumber: +1 408 736-1411 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 212-7358 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: PalermoL -givenName: Lorilyn -mail: PalermoL@79732267294c4ff69a75a9c93c8c2c5a.bitwarden.com -carLicense: SEOX58 -departmentNumber: 2601 -employeeType: Contract -homePhone: +1 408 859-7092 -initials: L. P. -mobile: +1 408 519-5843 -pager: +1 408 639-8787 -roomNumber: 9064 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ned Faletti,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ned Faletti -sn: Faletti -description: This is Ned Faletti's description -facsimileTelephoneNumber: +1 213 563-9477 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 346-9144 -title: Supreme Management Writer -userPassword: Password1 -uid: FalettiN -givenName: Ned -mail: FalettiN@4f1a95a3a24b45ab865ea73c936d9882.bitwarden.com -carLicense: KYUIPE -departmentNumber: 7654 -employeeType: Normal -homePhone: +1 213 536-6449 -initials: N. F. -mobile: +1 213 455-6711 -pager: +1 213 270-1851 -roomNumber: 8000 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gwenni Felske,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwenni Felske -sn: Felske -description: This is Gwenni Felske's description -facsimileTelephoneNumber: +1 818 420-3471 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 104-8141 -title: Chief Peons Grunt -userPassword: Password1 -uid: FelskeG -givenName: Gwenni -mail: FelskeG@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com -carLicense: SOGE6J -departmentNumber: 4689 -employeeType: Contract -homePhone: +1 818 459-9828 -initials: G. F. -mobile: +1 818 703-4782 -pager: +1 818 114-9493 -roomNumber: 9279 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Coretta Mayne,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coretta Mayne -sn: Mayne -description: This is Coretta Mayne's description -facsimileTelephoneNumber: +1 415 998-7324 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 538-7890 -title: Junior Management Admin -userPassword: Password1 -uid: MayneC -givenName: Coretta -mail: MayneC@d53702797f754da285804836fd6dc130.bitwarden.com -carLicense: MWW4NO -departmentNumber: 4556 -employeeType: Contract -homePhone: +1 415 146-8168 -initials: C. M. -mobile: +1 415 581-6876 -pager: +1 415 811-5833 -roomNumber: 8581 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurice INFOMANAGEMENT -sn: INFOMANAGEMENT -description: This is Maurice INFOMANAGEMENT's description -facsimileTelephoneNumber: +1 818 998-3937 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 826-6693 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: INFOMANM -givenName: Maurice -mail: INFOMANM@0755ab53fc1e4e03afc45f28e9749da3.bitwarden.com -carLicense: 8H5OEO -departmentNumber: 5410 -employeeType: Normal -homePhone: +1 818 485-8793 -initials: M. I. -mobile: +1 818 327-5001 -pager: +1 818 220-2090 -roomNumber: 9459 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cissiee Hampton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cissiee Hampton -sn: Hampton -description: This is Cissiee Hampton's description -facsimileTelephoneNumber: +1 408 875-6076 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 772-1912 -title: Chief Administrative Dictator -userPassword: Password1 -uid: HamptonC -givenName: Cissiee -mail: HamptonC@974ece3e63104cd593ac8a6d9de7a620.bitwarden.com -carLicense: QD5OFF -departmentNumber: 3856 -employeeType: Normal -homePhone: +1 408 479-1078 -initials: C. H. -mobile: +1 408 140-4214 -pager: +1 408 123-9848 -roomNumber: 9804 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kalina Fangio,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalina Fangio -sn: Fangio -description: This is Kalina Fangio's description -facsimileTelephoneNumber: +1 818 197-3138 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 679-8062 -title: Associate Management Dictator -userPassword: Password1 -uid: FangioK -givenName: Kalina -mail: FangioK@937ccb2001694e2680b8217ebfc1227e.bitwarden.com -carLicense: QOHPMO -departmentNumber: 7983 -employeeType: Normal -homePhone: +1 818 776-1184 -initials: K. F. -mobile: +1 818 958-8186 -pager: +1 818 823-4577 -roomNumber: 9854 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Petter Sarna,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petter Sarna -sn: Sarna -description: This is Petter Sarna's description -facsimileTelephoneNumber: +1 510 646-4668 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 478-5769 -title: Chief Management Vice President -userPassword: Password1 -uid: SarnaP -givenName: Petter -mail: SarnaP@a08a36a3e7a643d9a21fd4a80adf64e7.bitwarden.com -carLicense: QGX0RR -departmentNumber: 3730 -employeeType: Normal -homePhone: +1 510 370-4226 -initials: P. S. -mobile: +1 510 307-9540 -pager: +1 510 557-1325 -roomNumber: 8240 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nando Shurtleff,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nando Shurtleff -sn: Shurtleff -description: This is Nando Shurtleff's description -facsimileTelephoneNumber: +1 510 222-1979 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 788-8458 -title: Junior Management Artist -userPassword: Password1 -uid: ShurtleN -givenName: Nando -mail: ShurtleN@e2ee1ddb67844a4eb1bfd125d596f6dc.bitwarden.com -carLicense: 4MN7E5 -departmentNumber: 4445 -employeeType: Contract -homePhone: +1 510 505-7477 -initials: N. S. -mobile: +1 510 820-3298 -pager: +1 510 755-4134 -roomNumber: 9820 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Valene St,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valene St -sn: St -description: This is Valene St's description -facsimileTelephoneNumber: +1 818 741-9801 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 818 376-8215 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: StV -givenName: Valene -mail: StV@e62b6bada3794f6abc6e683f712748b4.bitwarden.com -carLicense: K75DPM -departmentNumber: 2633 -employeeType: Contract -homePhone: +1 818 989-2143 -initials: V. S. -mobile: +1 818 229-7485 -pager: +1 818 656-4254 -roomNumber: 8014 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elysia Swiat,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elysia Swiat -sn: Swiat -description: This is Elysia Swiat's description -facsimileTelephoneNumber: +1 804 387-8267 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 907-6903 -title: Junior Administrative Grunt -userPassword: Password1 -uid: SwiatE -givenName: Elysia -mail: SwiatE@3a43957f1ee74e77816af0da1f628f5f.bitwarden.com -carLicense: 9T8L6B -departmentNumber: 1148 -employeeType: Contract -homePhone: +1 804 769-4932 -initials: E. S. -mobile: +1 804 178-2242 -pager: +1 804 944-8432 -roomNumber: 8651 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yonik Valerien,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yonik Valerien -sn: Valerien -description: This is Yonik Valerien's description -facsimileTelephoneNumber: +1 818 187-2974 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 818 168-3832 -title: Master Administrative Pinhead -userPassword: Password1 -uid: ValerieY -givenName: Yonik -mail: ValerieY@1def8313ad68443a9c5bea174f8d550c.bitwarden.com -carLicense: 36X6ED -departmentNumber: 9479 -employeeType: Contract -homePhone: +1 818 272-5459 -initials: Y. V. -mobile: +1 818 210-2482 -pager: +1 818 509-6358 -roomNumber: 8481 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jania Clouthier,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jania Clouthier -sn: Clouthier -description: This is Jania Clouthier's description -facsimileTelephoneNumber: +1 818 830-3795 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 643-2561 -title: Supreme Management Technician -userPassword: Password1 -uid: ClouthiJ -givenName: Jania -mail: ClouthiJ@570987c9633d4a6fa09773cb5695f8f5.bitwarden.com -carLicense: U66CA5 -departmentNumber: 2054 -employeeType: Contract -homePhone: +1 818 641-1485 -initials: J. C. -mobile: +1 818 594-8710 -pager: +1 818 475-7213 -roomNumber: 9022 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lennart Whang,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lennart Whang -sn: Whang -description: This is Lennart Whang's description -facsimileTelephoneNumber: +1 206 925-1493 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 550-6833 -title: Chief Management Pinhead -userPassword: Password1 -uid: WhangL -givenName: Lennart -mail: WhangL@27b3ace1dd6948c9b5b4ab8ce5109020.bitwarden.com -carLicense: QA0SSF -departmentNumber: 6440 -employeeType: Normal -homePhone: +1 206 942-4737 -initials: L. W. -mobile: +1 206 852-3098 -pager: +1 206 872-5001 -roomNumber: 9044 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toshinari Shiley -sn: Shiley -description: This is Toshinari Shiley's description -facsimileTelephoneNumber: +1 510 184-9734 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 907-8883 -title: Master Product Testing Evangelist -userPassword: Password1 -uid: ShileyT -givenName: Toshinari -mail: ShileyT@df4c81c501de459185b071b55cec7800.bitwarden.com -carLicense: KTRR1C -departmentNumber: 4767 -employeeType: Employee -homePhone: +1 510 153-5594 -initials: T. S. -mobile: +1 510 667-7590 -pager: +1 510 544-6240 -roomNumber: 9728 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hala Wallis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hala Wallis -sn: Wallis -description: This is Hala Wallis's description -facsimileTelephoneNumber: +1 510 357-5721 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 510 135-5432 -title: Associate Payroll Engineer -userPassword: Password1 -uid: WallisH -givenName: Hala -mail: WallisH@d1b4a8f4bfcd4e2c9e8835bd8152821a.bitwarden.com -carLicense: S3A2G9 -departmentNumber: 9073 -employeeType: Contract -homePhone: +1 510 140-3693 -initials: H. W. -mobile: +1 510 830-1546 -pager: +1 510 679-1674 -roomNumber: 9127 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Levy Younger,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Levy Younger -sn: Younger -description: This is Levy Younger's description -facsimileTelephoneNumber: +1 510 123-9833 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 245-5684 -title: Junior Product Testing Evangelist -userPassword: Password1 -uid: YoungerL -givenName: Levy -mail: YoungerL@bd95fb0b94e54dbeaa76998f864c682b.bitwarden.com -carLicense: ARPCY7 -departmentNumber: 7030 -employeeType: Employee -homePhone: +1 510 967-5322 -initials: L. Y. -mobile: +1 510 144-9763 -pager: +1 510 271-3653 -roomNumber: 8495 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rahel Strober,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rahel Strober -sn: Strober -description: This is Rahel Strober's description -facsimileTelephoneNumber: +1 213 652-7353 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 998-3286 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: StroberR -givenName: Rahel -mail: StroberR@b10541570bad45a48e9ecd8a1385a852.bitwarden.com -carLicense: 8UYN7J -departmentNumber: 8401 -employeeType: Normal -homePhone: +1 213 436-2651 -initials: R. S. -mobile: +1 213 831-9837 -pager: +1 213 212-2898 -roomNumber: 9867 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Casi Swick,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Casi Swick -sn: Swick -description: This is Casi Swick's description -facsimileTelephoneNumber: +1 415 367-8775 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 292-5623 -title: Master Peons Admin -userPassword: Password1 -uid: SwickC -givenName: Casi -mail: SwickC@96ba8081521e4fe79c79c0f0b9ef5643.bitwarden.com -carLicense: SKG0QS -departmentNumber: 4615 -employeeType: Contract -homePhone: +1 415 563-4416 -initials: C. S. -mobile: +1 415 958-9412 -pager: +1 415 990-4381 -roomNumber: 9639 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dimitrios Coop,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dimitrios Coop -sn: Coop -description: This is Dimitrios Coop's description -facsimileTelephoneNumber: +1 206 505-6172 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 753-6997 -title: Master Payroll Punk -userPassword: Password1 -uid: CoopD -givenName: Dimitrios -mail: CoopD@66a31a3d20a943048dbdda8f5b8317cc.bitwarden.com -carLicense: QQ2C1Y -departmentNumber: 8709 -employeeType: Contract -homePhone: +1 206 852-8006 -initials: D. C. -mobile: +1 206 799-7415 -pager: +1 206 268-9902 -roomNumber: 8449 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elga Ashton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elga Ashton -sn: Ashton -description: This is Elga Ashton's description -facsimileTelephoneNumber: +1 415 191-8419 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 532-3199 -title: Chief Payroll Stooge -userPassword: Password1 -uid: AshtonE -givenName: Elga -mail: AshtonE@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com -carLicense: AABD14 -departmentNumber: 3650 -employeeType: Normal -homePhone: +1 415 194-8233 -initials: E. A. -mobile: +1 415 268-1428 -pager: +1 415 331-9399 -roomNumber: 8990 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Harley Streatfield,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harley Streatfield -sn: Streatfield -description: This is Harley Streatfield's description -facsimileTelephoneNumber: +1 415 777-1096 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 891-4565 -title: Associate Human Resources Assistant -userPassword: Password1 -uid: StreatfH -givenName: Harley -mail: StreatfH@c04c96e3607342d4a6bf3509ce60159a.bitwarden.com -carLicense: G2URVE -departmentNumber: 2823 -employeeType: Contract -homePhone: +1 415 760-8055 -initials: H. S. -mobile: +1 415 423-2320 -pager: +1 415 410-3742 -roomNumber: 8086 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Khamdy Quinn,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khamdy Quinn -sn: Quinn -description: This is Khamdy Quinn's description -facsimileTelephoneNumber: +1 415 281-3186 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 545-8602 -title: Master Payroll Developer -userPassword: Password1 -uid: QuinnK -givenName: Khamdy -mail: QuinnK@2c1574455ead4b0fb0046ceddcdf6a0b.bitwarden.com -carLicense: VF9W5D -departmentNumber: 3549 -employeeType: Normal -homePhone: +1 415 830-8263 -initials: K. Q. -mobile: +1 415 253-2741 -pager: +1 415 814-9326 -roomNumber: 8833 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Devan Kashima,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devan Kashima -sn: Kashima -description: This is Devan Kashima's description -facsimileTelephoneNumber: +1 415 186-7926 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 287-3253 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: KashimaD -givenName: Devan -mail: KashimaD@94871f5c5c9f4476ab9f2c6fcd362b35.bitwarden.com -carLicense: BUYWP9 -departmentNumber: 8237 -employeeType: Contract -homePhone: +1 415 208-8098 -initials: D. K. -mobile: +1 415 574-7261 -pager: +1 415 950-1570 -roomNumber: 8041 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Regine Frizado,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regine Frizado -sn: Frizado -description: This is Regine Frizado's description -facsimileTelephoneNumber: +1 206 761-1905 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 617-1369 -title: Associate Payroll Czar -userPassword: Password1 -uid: FrizadoR -givenName: Regine -mail: FrizadoR@60ec121ba9714e3489eb920608ad92c6.bitwarden.com -carLicense: U4UHVC -departmentNumber: 5458 -employeeType: Contract -homePhone: +1 206 692-7392 -initials: R. F. -mobile: +1 206 509-2765 -pager: +1 206 660-7990 -roomNumber: 8403 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roger Bondurant,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roger Bondurant -sn: Bondurant -description: This is Roger Bondurant's description -facsimileTelephoneNumber: +1 510 714-2697 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 901-7462 -title: Junior Peons President -userPassword: Password1 -uid: BonduraR -givenName: Roger -mail: BonduraR@91bb90ade3ed45329bdbe468ae424f00.bitwarden.com -carLicense: 6IRJB4 -departmentNumber: 3549 -employeeType: Normal -homePhone: +1 510 147-6330 -initials: R. B. -mobile: +1 510 940-6365 -pager: +1 510 156-2239 -roomNumber: 9884 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Taffy Solkoff,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Taffy Solkoff -sn: Solkoff -description: This is Taffy Solkoff's description -facsimileTelephoneNumber: +1 818 742-6809 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 818 914-2975 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: SolkoffT -givenName: Taffy -mail: SolkoffT@5059d6584df44d409840773250e30d06.bitwarden.com -carLicense: 8MEG6D -departmentNumber: 1751 -employeeType: Contract -homePhone: +1 818 543-6467 -initials: T. S. -mobile: +1 818 612-1535 -pager: +1 818 142-5995 -roomNumber: 9564 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melford Leonhardt -sn: Leonhardt -description: This is Melford Leonhardt's description -facsimileTelephoneNumber: +1 213 902-6032 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 848-2545 -title: Master Product Testing Architect -userPassword: Password1 -uid: LeonharM -givenName: Melford -mail: LeonharM@7012522876084229bee482efdda1e27f.bitwarden.com -carLicense: 86WDDQ -departmentNumber: 3261 -employeeType: Employee -homePhone: +1 213 615-3293 -initials: M. L. -mobile: +1 213 602-1319 -pager: +1 213 659-4562 -roomNumber: 9231 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marscha Cunningham -sn: Cunningham -description: This is Marscha Cunningham's description -facsimileTelephoneNumber: +1 408 479-6296 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 997-8308 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: CunningM -givenName: Marscha -mail: CunningM@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com -carLicense: T5S0M4 -departmentNumber: 3875 -employeeType: Employee -homePhone: +1 408 695-9251 -initials: M. C. -mobile: +1 408 675-6690 -pager: +1 408 900-2739 -roomNumber: 9003 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mame Muradia,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mame Muradia -sn: Muradia -description: This is Mame Muradia's description -facsimileTelephoneNumber: +1 206 564-8176 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 346-8168 -title: Master Human Resources Visionary -userPassword: Password1 -uid: MuradiaM -givenName: Mame -mail: MuradiaM@462635d48ea740ba9a66cf325662e6a5.bitwarden.com -carLicense: 6Y8IA2 -departmentNumber: 5459 -employeeType: Employee -homePhone: +1 206 135-5749 -initials: M. M. -mobile: +1 206 157-9304 -pager: +1 206 786-5820 -roomNumber: 9790 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hoang Krawchuk -sn: Krawchuk -description: This is Hoang Krawchuk's description -facsimileTelephoneNumber: +1 408 882-5159 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 623-2589 -title: Master Product Testing Admin -userPassword: Password1 -uid: KrawchuH -givenName: Hoang -mail: KrawchuH@91d86ca600e34a88b5fa8a48c064942b.bitwarden.com -carLicense: 5N4BDF -departmentNumber: 8626 -employeeType: Contract -homePhone: +1 408 877-8297 -initials: H. K. -mobile: +1 408 603-8649 -pager: +1 408 152-3705 -roomNumber: 8556 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shirlee Mackey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirlee Mackey -sn: Mackey -description: This is Shirlee Mackey's description -facsimileTelephoneNumber: +1 818 132-4944 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 256-3536 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: MackeyS -givenName: Shirlee -mail: MackeyS@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com -carLicense: 409HC0 -departmentNumber: 8409 -employeeType: Normal -homePhone: +1 818 842-7370 -initials: S. M. -mobile: +1 818 219-8860 -pager: +1 818 574-7135 -roomNumber: 9441 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Terrye Redish,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terrye Redish -sn: Redish -description: This is Terrye Redish's description -facsimileTelephoneNumber: +1 818 269-9028 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 761-5738 -title: Associate Product Development Fellow -userPassword: Password1 -uid: RedishT -givenName: Terrye -mail: RedishT@8f2591e5f396463da221dbcfdfd8f21f.bitwarden.com -carLicense: MQF322 -departmentNumber: 8764 -employeeType: Normal -homePhone: +1 818 153-2067 -initials: T. R. -mobile: +1 818 531-1333 -pager: +1 818 188-3281 -roomNumber: 9511 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Penelope Rey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Penelope Rey -sn: Rey -description: This is Penelope Rey's description -facsimileTelephoneNumber: +1 206 669-2360 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 972-1957 -title: Master Human Resources Writer -userPassword: Password1 -uid: ReyP -givenName: Penelope -mail: ReyP@6ba20748a72b4cee894c912c97374a56.bitwarden.com -carLicense: EB1IMD -departmentNumber: 8541 -employeeType: Employee -homePhone: +1 206 905-3766 -initials: P. R. -mobile: +1 206 603-6782 -pager: +1 206 158-9396 -roomNumber: 8837 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anthony Meyer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anthony Meyer -sn: Meyer -description: This is Anthony Meyer's description -facsimileTelephoneNumber: +1 818 166-2410 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 818 267-3085 -title: Associate Human Resources Manager -userPassword: Password1 -uid: MeyerA -givenName: Anthony -mail: MeyerA@0709c1c68975470c9ca0f7b0b26d3479.bitwarden.com -carLicense: 9J8YY8 -departmentNumber: 7124 -employeeType: Contract -homePhone: +1 818 584-9921 -initials: A. M. -mobile: +1 818 642-5261 -pager: +1 818 596-6732 -roomNumber: 9176 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dre McNerney,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dre McNerney -sn: McNerney -description: This is Dre McNerney's description -facsimileTelephoneNumber: +1 206 972-2977 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 206 252-1604 -title: Master Payroll Technician -userPassword: Password1 -uid: McNerneD -givenName: Dre -mail: McNerneD@5f494e5d5c2b48bd9e0d3f42e62d76ee.bitwarden.com -carLicense: YFXNTN -departmentNumber: 1254 -employeeType: Normal -homePhone: +1 206 220-2497 -initials: D. M. -mobile: +1 206 320-6201 -pager: +1 206 848-7780 -roomNumber: 8333 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cantrell Freeburn -sn: Freeburn -description: This is Cantrell Freeburn's description -facsimileTelephoneNumber: +1 415 455-6389 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 469-2851 -title: Chief Product Development Director -userPassword: Password1 -uid: FreeburC -givenName: Cantrell -mail: FreeburC@713ec84902e3407ea7c47d43e09273a9.bitwarden.com -carLicense: 5YTJTQ -departmentNumber: 1561 -employeeType: Contract -homePhone: +1 415 890-5453 -initials: C. F. -mobile: +1 415 829-7267 -pager: +1 415 805-7147 -roomNumber: 9588 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brooks Drescher,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brooks Drescher -sn: Drescher -description: This is Brooks Drescher's description -facsimileTelephoneNumber: +1 804 318-1053 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 870-8660 -title: Junior Payroll Consultant -userPassword: Password1 -uid: DrescheB -givenName: Brooks -mail: DrescheB@3bd17db97361499690e9a4a1c0655d19.bitwarden.com -carLicense: FHDI9R -departmentNumber: 2284 -employeeType: Contract -homePhone: +1 804 499-2706 -initials: B. D. -mobile: +1 804 626-7014 -pager: +1 804 990-8941 -roomNumber: 8110 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Brandea Dziemian,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandea Dziemian -sn: Dziemian -description: This is Brandea Dziemian's description -facsimileTelephoneNumber: +1 804 588-8041 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 804 635-4045 -title: Junior Administrative Stooge -userPassword: Password1 -uid: DziemiaB -givenName: Brandea -mail: DziemiaB@f615417804714e2b90444d84fdf4c3ba.bitwarden.com -carLicense: D26MLR -departmentNumber: 5037 -employeeType: Normal -homePhone: +1 804 775-6699 -initials: B. D. -mobile: +1 804 117-8771 -pager: +1 804 874-6432 -roomNumber: 9302 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Candis Richer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candis Richer -sn: Richer -description: This is Candis Richer's description -facsimileTelephoneNumber: +1 415 195-4966 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 169-9573 -title: Associate Peons Madonna -userPassword: Password1 -uid: RicherC -givenName: Candis -mail: RicherC@d5f78709240a4b7ea8f13e25bed4f996.bitwarden.com -carLicense: A9J3SN -departmentNumber: 8975 -employeeType: Normal -homePhone: +1 415 663-3252 -initials: C. R. -mobile: +1 415 622-7709 -pager: +1 415 863-1868 -roomNumber: 9396 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kandace Fitzgerald -sn: Fitzgerald -description: This is Kandace Fitzgerald's description -facsimileTelephoneNumber: +1 804 418-8279 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 377-5927 -title: Junior Peons Warrior -userPassword: Password1 -uid: FitzgerK -givenName: Kandace -mail: FitzgerK@679765b52d394d7ba89a59f3e71121ce.bitwarden.com -carLicense: FJI4TW -departmentNumber: 6509 -employeeType: Employee -homePhone: +1 804 439-8298 -initials: K. F. -mobile: +1 804 881-1098 -pager: +1 804 102-5127 -roomNumber: 8389 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huppert Hollenbeck -sn: Hollenbeck -description: This is Huppert Hollenbeck's description -facsimileTelephoneNumber: +1 510 268-5342 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 339-5155 -title: Junior Peons Admin -userPassword: Password1 -uid: HollenbH -givenName: Huppert -mail: HollenbH@27675f086a934218bc91689ddec78148.bitwarden.com -carLicense: 30WVVR -departmentNumber: 3102 -employeeType: Normal -homePhone: +1 510 929-2989 -initials: H. H. -mobile: +1 510 881-4387 -pager: +1 510 418-3318 -roomNumber: 8846 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ludovico Gleason,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ludovico Gleason -sn: Gleason -description: This is Ludovico Gleason's description -facsimileTelephoneNumber: +1 213 926-2493 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 213-4828 -title: Junior Management Pinhead -userPassword: Password1 -uid: GleasonL -givenName: Ludovico -mail: GleasonL@5b7e72dec03d45d4a2b2f3c9c9cd9206.bitwarden.com -carLicense: AMV1YA -departmentNumber: 2072 -employeeType: Contract -homePhone: +1 213 736-3055 -initials: L. G. -mobile: +1 213 394-7581 -pager: +1 213 699-6306 -roomNumber: 9009 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ninette McTiernan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninette McTiernan -sn: McTiernan -description: This is Ninette McTiernan's description -facsimileTelephoneNumber: +1 213 703-4073 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 543-7951 -title: Master Management Visionary -userPassword: Password1 -uid: McTiernN -givenName: Ninette -mail: McTiernN@7bdb7e04a26d459886f8fcaa0d3da8fb.bitwarden.com -carLicense: 9P1O5Y -departmentNumber: 4608 -employeeType: Contract -homePhone: +1 213 102-3271 -initials: N. M. -mobile: +1 213 653-8816 -pager: +1 213 771-6408 -roomNumber: 9429 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=TunLin Pinney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: TunLin Pinney -sn: Pinney -description: This is TunLin Pinney's description -facsimileTelephoneNumber: +1 206 635-6256 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 384-7441 -title: Associate Administrative Sales Rep -userPassword: Password1 -uid: PinneyT -givenName: TunLin -mail: PinneyT@75d6e7c6ef474c5e97f655497c047d1f.bitwarden.com -carLicense: P9QGEA -departmentNumber: 7500 -employeeType: Normal -homePhone: +1 206 483-8828 -initials: T. P. -mobile: +1 206 782-1132 -pager: +1 206 423-6018 -roomNumber: 9358 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joshi Cassese,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joshi Cassese -sn: Cassese -description: This is Joshi Cassese's description -facsimileTelephoneNumber: +1 818 733-7057 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 855-8280 -title: Supreme Janitorial Figurehead -userPassword: Password1 -uid: CasseseJ -givenName: Joshi -mail: CasseseJ@b2f73c176c104e9dad8630c2f13ec103.bitwarden.com -carLicense: U638C5 -departmentNumber: 2740 -employeeType: Normal -homePhone: +1 818 631-9693 -initials: J. C. -mobile: +1 818 316-2928 -pager: +1 818 194-4978 -roomNumber: 9237 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Miroslav StPierre,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miroslav StPierre -sn: StPierre -description: This is Miroslav StPierre's description -facsimileTelephoneNumber: +1 415 519-6733 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 688-8870 -title: Master Management Artist -userPassword: Password1 -uid: StPierrM -givenName: Miroslav -mail: StPierrM@ba8402a4d315465dbb751a651c142686.bitwarden.com -carLicense: NJMABY -departmentNumber: 5884 -employeeType: Normal -homePhone: +1 415 807-1886 -initials: M. S. -mobile: +1 415 886-7159 -pager: +1 415 847-7155 -roomNumber: 8637 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sammy Krater,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sammy Krater -sn: Krater -description: This is Sammy Krater's description -facsimileTelephoneNumber: +1 510 666-5124 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 321-2754 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: KraterS -givenName: Sammy -mail: KraterS@5b0366ebbad440278f42b372885b0850.bitwarden.com -carLicense: B2NJ72 -departmentNumber: 8239 -employeeType: Employee -homePhone: +1 510 826-8646 -initials: S. K. -mobile: +1 510 227-9930 -pager: +1 510 982-2328 -roomNumber: 9187 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sapphira McCain,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sapphira McCain -sn: McCain -description: This is Sapphira McCain's description -facsimileTelephoneNumber: +1 415 869-6493 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 200-4192 -title: Associate Peons Stooge -userPassword: Password1 -uid: McCainS -givenName: Sapphira -mail: McCainS@daad5c4834094fe8a7fb1d49865ce62a.bitwarden.com -carLicense: RDOMC3 -departmentNumber: 4082 -employeeType: Normal -homePhone: +1 415 211-5130 -initials: S. M. -mobile: +1 415 352-6714 -pager: +1 415 195-5017 -roomNumber: 9078 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pierrette Discover,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pierrette Discover -sn: Discover -description: This is Pierrette Discover's description -facsimileTelephoneNumber: +1 213 483-9357 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 976-8750 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: DiscoveP -givenName: Pierrette -mail: DiscoveP@57489e8bbf1e49e181fb589ad5609ed3.bitwarden.com -carLicense: EDLAYI -departmentNumber: 3960 -employeeType: Employee -homePhone: +1 213 606-1252 -initials: P. D. -mobile: +1 213 605-1105 -pager: +1 213 395-2734 -roomNumber: 8436 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ulf Willcox,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ulf Willcox -sn: Willcox -description: This is Ulf Willcox's description -facsimileTelephoneNumber: +1 213 129-8033 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 449-3116 -title: Junior Management Writer -userPassword: Password1 -uid: WillcoxU -givenName: Ulf -mail: WillcoxU@fe15495430cf4a14818cfd7560baaf99.bitwarden.com -carLicense: NEFG4W -departmentNumber: 1348 -employeeType: Contract -homePhone: +1 213 169-7452 -initials: U. W. -mobile: +1 213 896-2907 -pager: +1 213 988-1920 -roomNumber: 9843 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carmen Trame,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmen Trame -sn: Trame -description: This is Carmen Trame's description -facsimileTelephoneNumber: +1 415 709-5521 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 966-8129 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: TrameC -givenName: Carmen -mail: TrameC@fd22571d8af640feaa4dd26e71d415f8.bitwarden.com -carLicense: FENHAP -departmentNumber: 9450 -employeeType: Normal -homePhone: +1 415 327-8648 -initials: C. T. -mobile: +1 415 933-5921 -pager: +1 415 138-3327 -roomNumber: 8802 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cornelia Karim,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cornelia Karim -sn: Karim -description: This is Cornelia Karim's description -facsimileTelephoneNumber: +1 510 392-1950 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 285-2810 -title: Junior Peons Architect -userPassword: Password1 -uid: KarimC -givenName: Cornelia -mail: KarimC@d0d4dffbb82e4dbdbf12aa7aeb40f542.bitwarden.com -carLicense: 39MQQK -departmentNumber: 6534 -employeeType: Contract -homePhone: +1 510 485-1932 -initials: C. K. -mobile: +1 510 479-4945 -pager: +1 510 892-9160 -roomNumber: 9270 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronnie Krikorian -sn: Krikorian -description: This is Ronnie Krikorian's description -facsimileTelephoneNumber: +1 818 586-5997 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 809-3301 -title: Associate Product Development Madonna -userPassword: Password1 -uid: KrikoriR -givenName: Ronnie -mail: KrikoriR@bf9abf080c8e473981cdddb36932f679.bitwarden.com -carLicense: F3GLWK -departmentNumber: 7033 -employeeType: Employee -homePhone: +1 818 961-8907 -initials: R. K. -mobile: +1 818 265-8679 -pager: +1 818 133-5946 -roomNumber: 9913 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isabeau Jagodzinski -sn: Jagodzinski -description: This is Isabeau Jagodzinski's description -facsimileTelephoneNumber: +1 818 875-7668 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 169-9606 -title: Associate Human Resources Figurehead -userPassword: Password1 -uid: JagodziI -givenName: Isabeau -mail: JagodziI@406a5f63a2784737a47e7de7eb972559.bitwarden.com -carLicense: 4AKUNY -departmentNumber: 5320 -employeeType: Employee -homePhone: +1 818 673-3350 -initials: I. J. -mobile: +1 818 968-1350 -pager: +1 818 312-6905 -roomNumber: 9209 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Roobbie Stars,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roobbie Stars -sn: Stars -description: This is Roobbie Stars's description -facsimileTelephoneNumber: +1 213 639-5182 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 168-1585 -title: Junior Payroll Warrior -userPassword: Password1 -uid: StarsR -givenName: Roobbie -mail: StarsR@c754a8f7d7fa49ebaf2160183ff968df.bitwarden.com -carLicense: 676K14 -departmentNumber: 7237 -employeeType: Contract -homePhone: +1 213 945-3215 -initials: R. S. -mobile: +1 213 877-9325 -pager: +1 213 513-2200 -roomNumber: 8256 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sharee Wynes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharee Wynes -sn: Wynes -description: This is Sharee Wynes's description -facsimileTelephoneNumber: +1 818 738-2607 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 253-4218 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: WynesS -givenName: Sharee -mail: WynesS@1ca19b62d3954b7bb5f9d3604d3a6b84.bitwarden.com -carLicense: AFRVD8 -departmentNumber: 6557 -employeeType: Contract -homePhone: +1 818 126-9864 -initials: S. W. -mobile: +1 818 795-8384 -pager: +1 818 152-9773 -roomNumber: 8306 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaine Zauhar -sn: Zauhar -description: This is Shaine Zauhar's description -facsimileTelephoneNumber: +1 415 677-6213 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 415 968-1803 -title: Master Product Testing Czar -userPassword: Password1 -uid: ZauharS -givenName: Shaine -mail: ZauharS@e859fe816a744187a2626d82cb0ba406.bitwarden.com -carLicense: DSIMCJ -departmentNumber: 7876 -employeeType: Employee -homePhone: +1 415 791-9694 -initials: S. Z. -mobile: +1 415 478-4461 -pager: +1 415 529-8360 -roomNumber: 8986 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fred Hollenbeck -sn: Hollenbeck -description: This is Fred Hollenbeck's description -facsimileTelephoneNumber: +1 415 890-2476 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 710-1546 -title: Supreme Human Resources Director -userPassword: Password1 -uid: HollenbF -givenName: Fred -mail: HollenbF@584a3cc4e33b4aba88136456bbc15fd2.bitwarden.com -carLicense: 0IU0JY -departmentNumber: 5561 -employeeType: Employee -homePhone: +1 415 735-4038 -initials: F. H. -mobile: +1 415 968-4576 -pager: +1 415 952-9853 -roomNumber: 8312 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sil Marano,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sil Marano -sn: Marano -description: This is Sil Marano's description -facsimileTelephoneNumber: +1 213 295-6705 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 608-6722 -title: Master Peons Pinhead -userPassword: Password1 -uid: MaranoS -givenName: Sil -mail: MaranoS@6312a8bfcfc64f4fa1700b6ca4b67dc3.bitwarden.com -carLicense: 0VHRDT -departmentNumber: 8606 -employeeType: Normal -homePhone: +1 213 183-1965 -initials: S. M. -mobile: +1 213 422-8207 -pager: +1 213 448-4826 -roomNumber: 8200 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leonor Maginley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonor Maginley -sn: Maginley -description: This is Leonor Maginley's description -facsimileTelephoneNumber: +1 206 886-5574 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 206 698-3356 -title: Supreme Human Resources Director -userPassword: Password1 -uid: MaginleL -givenName: Leonor -mail: MaginleL@06bce776ad5946a6be606d0392cec3ca.bitwarden.com -carLicense: 8DI63X -departmentNumber: 5233 -employeeType: Normal -homePhone: +1 206 902-2114 -initials: L. M. -mobile: +1 206 790-7804 -pager: +1 206 358-5723 -roomNumber: 9774 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nicoline Magee,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicoline Magee -sn: Magee -description: This is Nicoline Magee's description -facsimileTelephoneNumber: +1 206 171-1411 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 318-3856 -title: Master Human Resources Director -userPassword: Password1 -uid: MageeN -givenName: Nicoline -mail: MageeN@98c506bf5a294f7a9f046f2404687224.bitwarden.com -carLicense: 4VR7J6 -departmentNumber: 4703 -employeeType: Employee -homePhone: +1 206 572-6599 -initials: N. M. -mobile: +1 206 876-1098 -pager: +1 206 764-8258 -roomNumber: 9152 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Penang Musca,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Penang Musca -sn: Musca -description: This is Penang Musca's description -facsimileTelephoneNumber: +1 408 802-3034 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 848-5222 -title: Junior Janitorial President -userPassword: Password1 -uid: MuscaP -givenName: Penang -mail: MuscaP@0834bcacddfd4229b6702a62e2551569.bitwarden.com -carLicense: H72PJF -departmentNumber: 7068 -employeeType: Normal -homePhone: +1 408 567-4209 -initials: P. M. -mobile: +1 408 145-8131 -pager: +1 408 950-9511 -roomNumber: 8040 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherilynn Campagna -sn: Campagna -description: This is Cherilynn Campagna's description -facsimileTelephoneNumber: +1 408 755-8639 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 812-5080 -title: Junior Human Resources Assistant -userPassword: Password1 -uid: CampagnC -givenName: Cherilynn -mail: CampagnC@9fbf462dffb84d01b4efd7ea06cb46c2.bitwarden.com -carLicense: PMVT8M -departmentNumber: 4182 -employeeType: Employee -homePhone: +1 408 276-5407 -initials: C. C. -mobile: +1 408 688-6086 -pager: +1 408 227-3836 -roomNumber: 9046 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carlos Smyth,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlos Smyth -sn: Smyth -description: This is Carlos Smyth's description -facsimileTelephoneNumber: +1 415 909-6036 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 932-1434 -title: Chief Payroll Madonna -userPassword: Password1 -uid: SmythC -givenName: Carlos -mail: SmythC@964166b8cdd041c68aaae270afb90271.bitwarden.com -carLicense: VKC04H -departmentNumber: 6274 -employeeType: Employee -homePhone: +1 415 836-6534 -initials: C. S. -mobile: +1 415 864-9960 -pager: +1 415 119-5146 -roomNumber: 8655 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosalinde Harapiak -sn: Harapiak -description: This is Rosalinde Harapiak's description -facsimileTelephoneNumber: +1 510 474-8849 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 510 721-9637 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: HarapiaR -givenName: Rosalinde -mail: HarapiaR@83e659b7a46148c68a7895067104477c.bitwarden.com -carLicense: RMLQ2E -departmentNumber: 8040 -employeeType: Contract -homePhone: +1 510 314-2786 -initials: R. H. -mobile: +1 510 105-2087 -pager: +1 510 686-8998 -roomNumber: 9228 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Evania Copello,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evania Copello -sn: Copello -description: This is Evania Copello's description -facsimileTelephoneNumber: +1 206 207-9499 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 206 101-7253 -title: Master Management Director -userPassword: Password1 -uid: CopelloE -givenName: Evania -mail: CopelloE@b4622719a7ee45c98d3b8a7b78001ff6.bitwarden.com -carLicense: PNFCQV -departmentNumber: 5163 -employeeType: Contract -homePhone: +1 206 948-8841 -initials: E. C. -mobile: +1 206 216-1976 -pager: +1 206 224-8596 -roomNumber: 9187 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jamie Tschaja,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jamie Tschaja -sn: Tschaja -description: This is Jamie Tschaja's description -facsimileTelephoneNumber: +1 804 776-8750 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 133-3108 -title: Chief Peons Evangelist -userPassword: Password1 -uid: TschajaJ -givenName: Jamie -mail: TschajaJ@fa528be784314ab7a2c058d1610cf1bb.bitwarden.com -carLicense: 7FP2XF -departmentNumber: 7208 -employeeType: Employee -homePhone: +1 804 463-7128 -initials: J. T. -mobile: +1 804 844-3930 -pager: +1 804 190-8809 -roomNumber: 9343 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Thang Dallaire,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thang Dallaire -sn: Dallaire -description: This is Thang Dallaire's description -facsimileTelephoneNumber: +1 206 895-2647 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 191-5983 -title: Junior Human Resources Fellow -userPassword: Password1 -uid: DallairT -givenName: Thang -mail: DallairT@dd8de5abce6e4941a35b4e391450cd5c.bitwarden.com -carLicense: DPJPRR -departmentNumber: 2692 -employeeType: Employee -homePhone: +1 206 985-5232 -initials: T. D. -mobile: +1 206 911-3713 -pager: +1 206 580-1832 -roomNumber: 9720 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Daphine Chandra,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphine Chandra -sn: Chandra -description: This is Daphine Chandra's description -facsimileTelephoneNumber: +1 804 708-7522 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 112-5342 -title: Junior Administrative Punk -userPassword: Password1 -uid: ChandraD -givenName: Daphine -mail: ChandraD@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com -carLicense: 0SSMIU -departmentNumber: 6116 -employeeType: Employee -homePhone: +1 804 416-3462 -initials: D. C. -mobile: +1 804 180-7773 -pager: +1 804 822-1049 -roomNumber: 9462 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ohio Baerg,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ohio Baerg -sn: Baerg -description: This is Ohio Baerg's description -facsimileTelephoneNumber: +1 510 790-8693 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 668-6256 -title: Associate Payroll Engineer -userPassword: Password1 -uid: BaergO -givenName: Ohio -mail: BaergO@20652fd58932448b926b6d40287545d2.bitwarden.com -carLicense: CIF0H3 -departmentNumber: 8014 -employeeType: Employee -homePhone: +1 510 389-7117 -initials: O. B. -mobile: +1 510 971-3835 -pager: +1 510 674-7386 -roomNumber: 9969 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wiebe Kirouac -sn: Kirouac -description: This is Wiebe Kirouac's description -facsimileTelephoneNumber: +1 818 904-1780 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 500-5643 -title: Associate Product Development Technician -userPassword: Password1 -uid: KirouacW -givenName: Wiebe -mail: KirouacW@40d320f39b3b4ec6b2aa4be872b12e34.bitwarden.com -carLicense: CHDS4X -departmentNumber: 7034 -employeeType: Employee -homePhone: +1 818 157-7938 -initials: W. K. -mobile: +1 818 372-5017 -pager: +1 818 468-9810 -roomNumber: 9708 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othelia Torrealba -sn: Torrealba -description: This is Othelia Torrealba's description -facsimileTelephoneNumber: +1 206 377-4985 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 206 859-9849 -title: Chief Janitorial Figurehead -userPassword: Password1 -uid: TorrealO -givenName: Othelia -mail: TorrealO@a662180554134ff2859bfab952c71e82.bitwarden.com -carLicense: TXYPG4 -departmentNumber: 2395 -employeeType: Contract -homePhone: +1 206 235-3408 -initials: O. T. -mobile: +1 206 707-7986 -pager: +1 206 755-9608 -roomNumber: 9022 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Else Brien,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Else Brien -sn: Brien -description: This is Else Brien's description -facsimileTelephoneNumber: +1 415 507-7515 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 346-8975 -title: Associate Administrative Fellow -userPassword: Password1 -uid: BrienE -givenName: Else -mail: BrienE@1f52489263294bdcb74bf08e15dc639b.bitwarden.com -carLicense: VYXO6P -departmentNumber: 4536 -employeeType: Contract -homePhone: +1 415 670-5788 -initials: E. B. -mobile: +1 415 805-4130 -pager: +1 415 299-3473 -roomNumber: 9024 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Giampaolo Gu,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giampaolo Gu -sn: Gu -description: This is Giampaolo Gu's description -facsimileTelephoneNumber: +1 804 269-4226 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 629-6212 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: GuG -givenName: Giampaolo -mail: GuG@8274c561263849f296aeed4664c2eecc.bitwarden.com -carLicense: 06W2J0 -departmentNumber: 2209 -employeeType: Normal -homePhone: +1 804 719-5022 -initials: G. G. -mobile: +1 804 147-8323 -pager: +1 804 249-3421 -roomNumber: 8700 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Seven Tregenza,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seven Tregenza -sn: Tregenza -description: This is Seven Tregenza's description -facsimileTelephoneNumber: +1 213 734-9079 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 621-5809 -title: Chief Peons Pinhead -userPassword: Password1 -uid: TregenzS -givenName: Seven -mail: TregenzS@b7db7b74741043f1bc70179c65d8c474.bitwarden.com -carLicense: EAKU5M -departmentNumber: 1135 -employeeType: Employee -homePhone: +1 213 637-6892 -initials: S. T. -mobile: +1 213 582-4717 -pager: +1 213 196-9754 -roomNumber: 9616 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rakel Ressner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rakel Ressner -sn: Ressner -description: This is Rakel Ressner's description -facsimileTelephoneNumber: +1 804 941-8047 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 804 821-8505 -title: Supreme Peons Manager -userPassword: Password1 -uid: RessnerR -givenName: Rakel -mail: RessnerR@2a906f1560284502a1b19f87829f93ea.bitwarden.com -carLicense: B49QFO -departmentNumber: 8486 -employeeType: Employee -homePhone: +1 804 340-7919 -initials: R. R. -mobile: +1 804 305-9070 -pager: +1 804 122-9750 -roomNumber: 8456 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eloisa Meseberg -sn: Meseberg -description: This is Eloisa Meseberg's description -facsimileTelephoneNumber: +1 213 192-1852 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 633-8997 -title: Supreme Product Development Director -userPassword: Password1 -uid: MeseberE -givenName: Eloisa -mail: MeseberE@572f2e7cd4c540ba82bdf3291fc77e32.bitwarden.com -carLicense: V6WBUV -departmentNumber: 6185 -employeeType: Contract -homePhone: +1 213 615-1569 -initials: E. M. -mobile: +1 213 464-1247 -pager: +1 213 336-3548 -roomNumber: 8426 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marvell Chapdelaine -sn: Chapdelaine -description: This is Marvell Chapdelaine's description -facsimileTelephoneNumber: +1 818 769-7486 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 680-5151 -title: Chief Janitorial Technician -userPassword: Password1 -uid: ChapdelM -givenName: Marvell -mail: ChapdelM@bfbe96af9d94476ba3dcfc88f7bdf41b.bitwarden.com -carLicense: XBM42Y -departmentNumber: 8250 -employeeType: Contract -homePhone: +1 818 270-3828 -initials: M. C. -mobile: +1 818 412-6046 -pager: +1 818 114-3724 -roomNumber: 8257 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Britney Prestia,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Britney Prestia -sn: Prestia -description: This is Britney Prestia's description -facsimileTelephoneNumber: +1 510 501-8899 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 801-2642 -title: Junior Peons Stooge -userPassword: Password1 -uid: PrestiaB -givenName: Britney -mail: PrestiaB@e6c11ea0a5f743ce85492782888f6da6.bitwarden.com -carLicense: 7H0RE4 -departmentNumber: 5246 -employeeType: Normal -homePhone: +1 510 193-1833 -initials: B. P. -mobile: +1 510 843-3216 -pager: +1 510 833-2905 -roomNumber: 9516 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jonathan Guty,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jonathan Guty -sn: Guty -description: This is Jonathan Guty's description -facsimileTelephoneNumber: +1 206 354-3597 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 159-1155 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: GutyJ -givenName: Jonathan -mail: GutyJ@7bf8a8dbfcea42b08cac76925d0219d8.bitwarden.com -carLicense: EFVUPJ -departmentNumber: 6887 -employeeType: Employee -homePhone: +1 206 862-6805 -initials: J. G. -mobile: +1 206 777-8259 -pager: +1 206 953-9861 -roomNumber: 9887 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Livvy Hoag,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Livvy Hoag -sn: Hoag -description: This is Livvy Hoag's description -facsimileTelephoneNumber: +1 804 369-4009 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 668-2313 -title: Supreme Human Resources Director -userPassword: Password1 -uid: HoagL -givenName: Livvy -mail: HoagL@9be993140021475092d7ba3a41ede5b4.bitwarden.com -carLicense: 378TGX -departmentNumber: 1362 -employeeType: Contract -homePhone: +1 804 329-3689 -initials: L. H. -mobile: +1 804 580-5553 -pager: +1 804 519-5655 -roomNumber: 9859 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rennie Postolek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rennie Postolek -sn: Postolek -description: This is Rennie Postolek's description -facsimileTelephoneNumber: +1 415 725-8853 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 217-7053 -title: Master Janitorial Manager -userPassword: Password1 -uid: PostoleR -givenName: Rennie -mail: PostoleR@1866a7eb1fab4dc78251b68a046aa8f6.bitwarden.com -carLicense: GDL4GG -departmentNumber: 8586 -employeeType: Employee -homePhone: +1 415 790-6308 -initials: R. P. -mobile: +1 415 569-6342 -pager: +1 415 565-2733 -roomNumber: 9872 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jayesh Liao,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jayesh Liao -sn: Liao -description: This is Jayesh Liao's description -facsimileTelephoneNumber: +1 206 226-4573 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 187-6673 -title: Junior Peons Pinhead -userPassword: Password1 -uid: LiaoJ -givenName: Jayesh -mail: LiaoJ@c8b8d0d540194a31b14e399b8e0ac7ff.bitwarden.com -carLicense: GPHFHS -departmentNumber: 7103 -employeeType: Employee -homePhone: +1 206 568-9191 -initials: J. L. -mobile: +1 206 279-1190 -pager: +1 206 610-1718 -roomNumber: 8199 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tiffany Fougere,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffany Fougere -sn: Fougere -description: This is Tiffany Fougere's description -facsimileTelephoneNumber: +1 415 527-7729 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 244-3970 -title: Supreme Management Janitor -userPassword: Password1 -uid: FougereT -givenName: Tiffany -mail: FougereT@6f03f1adf7c149889e4e46274861a90d.bitwarden.com -carLicense: 5NJS3J -departmentNumber: 3177 -employeeType: Contract -homePhone: +1 415 445-4293 -initials: T. F. -mobile: +1 415 505-6954 -pager: +1 415 454-3134 -roomNumber: 8579 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Darline Swinson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darline Swinson -sn: Swinson -description: This is Darline Swinson's description -facsimileTelephoneNumber: +1 510 245-5210 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 811-2842 -title: Associate Payroll Technician -userPassword: Password1 -uid: SwinsonD -givenName: Darline -mail: SwinsonD@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com -carLicense: 278B56 -departmentNumber: 5708 -employeeType: Employee -homePhone: +1 510 781-7564 -initials: D. S. -mobile: +1 510 450-1874 -pager: +1 510 869-4715 -roomNumber: 9512 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Biddie Scp,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Biddie Scp -sn: Scp -description: This is Biddie Scp's description -facsimileTelephoneNumber: +1 408 373-4386 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 253-5355 -title: Junior Management Dictator -userPassword: Password1 -uid: ScpB -givenName: Biddie -mail: ScpB@c536300f550c4bf4aefa167ad65dc37b.bitwarden.com -carLicense: N1W897 -departmentNumber: 2444 -employeeType: Normal -homePhone: +1 408 365-5006 -initials: B. S. -mobile: +1 408 506-2195 -pager: +1 408 856-2552 -roomNumber: 9961 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Colin Irick,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colin Irick -sn: Irick -description: This is Colin Irick's description -facsimileTelephoneNumber: +1 818 989-3558 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 580-2860 -title: Supreme Product Development Dictator -userPassword: Password1 -uid: IrickC -givenName: Colin -mail: IrickC@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com -carLicense: XD8RND -departmentNumber: 2549 -employeeType: Employee -homePhone: +1 818 284-4513 -initials: C. I. -mobile: +1 818 628-8206 -pager: +1 818 457-9204 -roomNumber: 9872 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Yueli Clinger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yueli Clinger -sn: Clinger -description: This is Yueli Clinger's description -facsimileTelephoneNumber: +1 510 350-7253 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 183-8198 -title: Junior Peons Writer -userPassword: Password1 -uid: ClingerY -givenName: Yueli -mail: ClingerY@40544cfce21b453a8a348a622d569594.bitwarden.com -carLicense: YK9W7X -departmentNumber: 9067 -employeeType: Normal -homePhone: +1 510 623-3731 -initials: Y. C. -mobile: +1 510 499-7165 -pager: +1 510 373-1448 -roomNumber: 9681 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WingMan Simonsen -sn: Simonsen -description: This is WingMan Simonsen's description -facsimileTelephoneNumber: +1 510 783-9296 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 320-7651 -title: Master Janitorial Vice President -userPassword: Password1 -uid: SimonseW -givenName: WingMan -mail: SimonseW@9342f9a1c6b2408b96d8cb0c883aae65.bitwarden.com -carLicense: K97VTT -departmentNumber: 4696 -employeeType: Contract -homePhone: +1 510 315-2789 -initials: W. S. -mobile: +1 510 894-9941 -pager: +1 510 219-7350 -roomNumber: 9120 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Randa Wery,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randa Wery -sn: Wery -description: This is Randa Wery's description -facsimileTelephoneNumber: +1 415 656-5802 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 849-9664 -title: Supreme Payroll Assistant -userPassword: Password1 -uid: WeryR -givenName: Randa -mail: WeryR@a5373e4d5e704daba1d3dbf799f28ac8.bitwarden.com -carLicense: 9IXUWN -departmentNumber: 1657 -employeeType: Employee -homePhone: +1 415 840-4202 -initials: R. W. -mobile: +1 415 742-5747 -pager: +1 415 352-7218 -roomNumber: 9171 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Theodor Schute,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theodor Schute -sn: Schute -description: This is Theodor Schute's description -facsimileTelephoneNumber: +1 415 178-9957 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 481-8571 -title: Master Human Resources Visionary -userPassword: Password1 -uid: SchuteT -givenName: Theodor -mail: SchuteT@37c3227000a74816851448e0169c372e.bitwarden.com -carLicense: A1PQO8 -departmentNumber: 5960 -employeeType: Normal -homePhone: +1 415 650-3408 -initials: T. S. -mobile: +1 415 122-7597 -pager: +1 415 189-4992 -roomNumber: 9815 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhiren Simonovich -sn: Simonovich -description: This is Dhiren Simonovich's description -facsimileTelephoneNumber: +1 415 383-8050 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 415 467-4428 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: SimonovD -givenName: Dhiren -mail: SimonovD@f4e75eb09db6479c9f66375f6d4f78a9.bitwarden.com -carLicense: MB1PGW -departmentNumber: 3318 -employeeType: Employee -homePhone: +1 415 219-3200 -initials: D. S. -mobile: +1 415 677-2658 -pager: +1 415 379-1987 -roomNumber: 9422 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Keeley Basa,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keeley Basa -sn: Basa -description: This is Keeley Basa's description -facsimileTelephoneNumber: +1 213 410-4802 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 478-7891 -title: Master Management Warrior -userPassword: Password1 -uid: BasaK -givenName: Keeley -mail: BasaK@527588b4f1b4422fb6b034c9d08f2576.bitwarden.com -carLicense: X84NW1 -departmentNumber: 3187 -employeeType: Employee -homePhone: +1 213 113-2149 -initials: K. B. -mobile: +1 213 105-7718 -pager: +1 213 705-8774 -roomNumber: 8180 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mimi Clements,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mimi Clements -sn: Clements -description: This is Mimi Clements's description -facsimileTelephoneNumber: +1 213 824-8953 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 512-9180 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: ClementM -givenName: Mimi -mail: ClementM@16269c126bd14ac9a93025afee70dceb.bitwarden.com -carLicense: XVD5IT -departmentNumber: 9094 -employeeType: Contract -homePhone: +1 213 888-3470 -initials: M. C. -mobile: +1 213 870-8809 -pager: +1 213 748-3315 -roomNumber: 8082 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Igor Venguswamy -sn: Venguswamy -description: This is Igor Venguswamy's description -facsimileTelephoneNumber: +1 206 381-5954 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 322-2802 -title: Junior Product Testing Evangelist -userPassword: Password1 -uid: VenguswI -givenName: Igor -mail: VenguswI@736366bf947d4889a5087519dbc9eaff.bitwarden.com -carLicense: A9QCAF -departmentNumber: 7504 -employeeType: Contract -homePhone: +1 206 935-8132 -initials: I. V. -mobile: +1 206 458-3083 -pager: +1 206 252-7590 -roomNumber: 9376 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dasi Baader,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dasi Baader -sn: Baader -description: This is Dasi Baader's description -facsimileTelephoneNumber: +1 818 791-1599 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 679-5320 -title: Associate Human Resources Architect -userPassword: Password1 -uid: BaaderD -givenName: Dasi -mail: BaaderD@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com -carLicense: RPLLIF -departmentNumber: 7514 -employeeType: Employee -homePhone: +1 818 734-4797 -initials: D. B. -mobile: +1 818 705-1180 -pager: +1 818 154-3161 -roomNumber: 8829 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kerrin Miner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kerrin Miner -sn: Miner -description: This is Kerrin Miner's description -facsimileTelephoneNumber: +1 804 151-1807 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 520-5441 -title: Junior Human Resources President -userPassword: Password1 -uid: MinerK -givenName: Kerrin -mail: MinerK@59a0bbafd91247c6851ee2f7bf13b081.bitwarden.com -carLicense: 0HSLPR -departmentNumber: 7325 -employeeType: Contract -homePhone: +1 804 346-7409 -initials: K. M. -mobile: +1 804 398-3378 -pager: +1 804 492-6125 -roomNumber: 9392 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tania Guimond,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tania Guimond -sn: Guimond -description: This is Tania Guimond's description -facsimileTelephoneNumber: +1 818 385-3147 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 818 952-6669 -title: Supreme Peons Engineer -userPassword: Password1 -uid: GuimondT -givenName: Tania -mail: GuimondT@177be20238ac48a3b552f8e87a11e1b1.bitwarden.com -carLicense: HP8H08 -departmentNumber: 8305 -employeeType: Contract -homePhone: +1 818 756-3814 -initials: T. G. -mobile: +1 818 104-1141 -pager: +1 818 221-8158 -roomNumber: 9824 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninetta Hendriks -sn: Hendriks -description: This is Ninetta Hendriks's description -facsimileTelephoneNumber: +1 213 556-9763 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 213 630-9443 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: HendrikN -givenName: Ninetta -mail: HendrikN@8fd38b10138d41afbb37c8037aaf6377.bitwarden.com -carLicense: P3XV54 -departmentNumber: 1363 -employeeType: Employee -homePhone: +1 213 885-4497 -initials: N. H. -mobile: +1 213 527-9892 -pager: +1 213 382-6040 -roomNumber: 8840 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hedvige Doran,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hedvige Doran -sn: Doran -description: This is Hedvige Doran's description -facsimileTelephoneNumber: +1 408 855-1431 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 846-3193 -title: Junior Management President -userPassword: Password1 -uid: DoranH -givenName: Hedvige -mail: DoranH@27bcaa4785014c5c91369f5095a41ea2.bitwarden.com -carLicense: B8NBVF -departmentNumber: 2145 -employeeType: Contract -homePhone: +1 408 548-9683 -initials: H. D. -mobile: +1 408 250-2583 -pager: +1 408 325-1663 -roomNumber: 9718 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aviva Andruzzi -sn: Andruzzi -description: This is Aviva Andruzzi's description -facsimileTelephoneNumber: +1 415 922-5954 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 872-6033 -title: Chief Administrative Admin -userPassword: Password1 -uid: AndruzzA -givenName: Aviva -mail: AndruzzA@a5d6a2bda97a44e782e3c73dfaefdb63.bitwarden.com -carLicense: 3WE8D5 -departmentNumber: 6323 -employeeType: Contract -homePhone: +1 415 496-7553 -initials: A. A. -mobile: +1 415 917-5729 -pager: +1 415 881-9437 -roomNumber: 9001 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Diahann Nason,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diahann Nason -sn: Nason -description: This is Diahann Nason's description -facsimileTelephoneNumber: +1 510 652-2673 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 110-4403 -title: Junior Peons Pinhead -userPassword: Password1 -uid: NasonD -givenName: Diahann -mail: NasonD@8a594838d3824283aa7aa83d94d57d44.bitwarden.com -carLicense: F97RJK -departmentNumber: 3281 -employeeType: Contract -homePhone: +1 510 331-7792 -initials: D. N. -mobile: +1 510 564-8300 -pager: +1 510 503-3087 -roomNumber: 9533 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Leecia Guarino,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leecia Guarino -sn: Guarino -description: This is Leecia Guarino's description -facsimileTelephoneNumber: +1 415 275-7964 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 985-4003 -title: Associate Administrative Figurehead -userPassword: Password1 -uid: GuarinoL -givenName: Leecia -mail: GuarinoL@0c6cf7ff0570476c863c26cda41eed02.bitwarden.com -carLicense: WXQ9SQ -departmentNumber: 1796 -employeeType: Contract -homePhone: +1 415 304-4542 -initials: L. G. -mobile: +1 415 294-8568 -pager: +1 415 736-5374 -roomNumber: 9784 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kacie Moyano,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kacie Moyano -sn: Moyano -description: This is Kacie Moyano's description -facsimileTelephoneNumber: +1 510 421-2441 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 937-9752 -title: Supreme Management Artist -userPassword: Password1 -uid: MoyanoK -givenName: Kacie -mail: MoyanoK@053c075cfea943a49184d56a51ed4603.bitwarden.com -carLicense: MX4JX1 -departmentNumber: 5642 -employeeType: Contract -homePhone: +1 510 234-3717 -initials: K. M. -mobile: +1 510 752-1328 -pager: +1 510 298-8522 -roomNumber: 9254 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dicky Guignon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dicky Guignon -sn: Guignon -description: This is Dicky Guignon's description -facsimileTelephoneNumber: +1 818 294-7800 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 280-6761 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: GuignonD -givenName: Dicky -mail: GuignonD@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com -carLicense: 51Q8VQ -departmentNumber: 5183 -employeeType: Normal -homePhone: +1 818 792-1471 -initials: D. G. -mobile: +1 818 522-7940 -pager: +1 818 835-3321 -roomNumber: 8766 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bobbie Suwala,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobbie Suwala -sn: Suwala -description: This is Bobbie Suwala's description -facsimileTelephoneNumber: +1 818 626-7409 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 915-3709 -title: Chief Peons Dictator -userPassword: Password1 -uid: SuwalaB -givenName: Bobbie -mail: SuwalaB@ff314e0aa2d4448bb24e44e3596bf8bd.bitwarden.com -carLicense: UXSXGQ -departmentNumber: 1055 -employeeType: Employee -homePhone: +1 818 499-4522 -initials: B. S. -mobile: +1 818 548-4232 -pager: +1 818 103-5507 -roomNumber: 9706 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Melissa Adkinson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melissa Adkinson -sn: Adkinson -description: This is Melissa Adkinson's description -facsimileTelephoneNumber: +1 804 546-7382 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 636-9986 -title: Associate Peons Fellow -userPassword: Password1 -uid: AdkinsoM -givenName: Melissa -mail: AdkinsoM@770389a9db90496190b610f069530ad6.bitwarden.com -carLicense: PXKTBO -departmentNumber: 1686 -employeeType: Normal -homePhone: +1 804 882-3649 -initials: M. A. -mobile: +1 804 699-8404 -pager: +1 804 489-6389 -roomNumber: 8095 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Georgine Lantto,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgine Lantto -sn: Lantto -description: This is Georgine Lantto's description -facsimileTelephoneNumber: +1 804 305-6693 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 804 355-4873 -title: Supreme Peons Stooge -userPassword: Password1 -uid: LanttoG -givenName: Georgine -mail: LanttoG@5320b952794a47b19c6e19d7dbdf3f99.bitwarden.com -carLicense: 5GRJM4 -departmentNumber: 4451 -employeeType: Normal -homePhone: +1 804 572-6780 -initials: G. L. -mobile: +1 804 808-1704 -pager: +1 804 193-3048 -roomNumber: 8137 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonnie Gilles -sn: Gilles -description: This is Sonnie Gilles's description -facsimileTelephoneNumber: +1 804 213-4157 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 407-3086 -title: Associate Janitorial Visionary -userPassword: Password1 -uid: GillesS -givenName: Sonnie -mail: GillesS@3b8e28899e6c47f3b2c13e23a394c405.bitwarden.com -carLicense: N3XJVK -departmentNumber: 6400 -employeeType: Employee -homePhone: +1 804 779-6271 -initials: S. G. -mobile: +1 804 390-3879 -pager: +1 804 917-9874 -roomNumber: 8008 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Johnnie Mayes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnnie Mayes -sn: Mayes -description: This is Johnnie Mayes's description -facsimileTelephoneNumber: +1 213 950-7780 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 325-5386 -title: Supreme Management Artist -userPassword: Password1 -uid: MayesJ -givenName: Johnnie -mail: MayesJ@c3e5be71fdd14cfab6350245e2c34701.bitwarden.com -carLicense: 38LQ94 -departmentNumber: 6359 -employeeType: Normal -homePhone: +1 213 150-6854 -initials: J. M. -mobile: +1 213 655-5254 -pager: +1 213 720-8994 -roomNumber: 8587 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selestina Kozlowski -sn: Kozlowski -description: This is Selestina Kozlowski's description -facsimileTelephoneNumber: +1 213 667-9647 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 213 518-5828 -title: Associate Payroll Madonna -userPassword: Password1 -uid: KozlowsS -givenName: Selestina -mail: KozlowsS@0854599c24014bdf969745fad472960b.bitwarden.com -carLicense: LJW9KF -departmentNumber: 3445 -employeeType: Employee -homePhone: +1 213 633-9010 -initials: S. K. -mobile: +1 213 151-7904 -pager: +1 213 961-8015 -roomNumber: 9207 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anker Serapin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anker Serapin -sn: Serapin -description: This is Anker Serapin's description -facsimileTelephoneNumber: +1 510 376-8054 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 554-1084 -title: Associate Management Developer -userPassword: Password1 -uid: SerapinA -givenName: Anker -mail: SerapinA@13e3dc6812b646519614bfe380e524a9.bitwarden.com -carLicense: WKJKYH -departmentNumber: 5401 -employeeType: Normal -homePhone: +1 510 425-9686 -initials: A. S. -mobile: +1 510 442-4123 -pager: +1 510 803-3718 -roomNumber: 9690 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mable Thirugnanam,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mable Thirugnanam -sn: Thirugnanam -description: This is Mable Thirugnanam's description -facsimileTelephoneNumber: +1 510 349-9026 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 396-7347 -title: Chief Management Madonna -userPassword: Password1 -uid: ThirugnM -givenName: Mable -mail: ThirugnM@0f6317f19e074d3eacd8b09d7fafccf0.bitwarden.com -carLicense: 8KY61B -departmentNumber: 1382 -employeeType: Normal -homePhone: +1 510 345-4210 -initials: M. T. -mobile: +1 510 648-5347 -pager: +1 510 319-2579 -roomNumber: 9175 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Allan Rizewiski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allan Rizewiski -sn: Rizewiski -description: This is Allan Rizewiski's description -facsimileTelephoneNumber: +1 818 920-6125 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 582-7694 -title: Chief Management Visionary -userPassword: Password1 -uid: RizewisA -givenName: Allan -mail: RizewisA@36bc6957b14948c298f68fedb3e83da0.bitwarden.com -carLicense: 1G11BL -departmentNumber: 9035 -employeeType: Normal -homePhone: +1 818 994-3252 -initials: A. R. -mobile: +1 818 377-5194 -pager: +1 818 980-3806 -roomNumber: 9905 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Peng Quantrill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peng Quantrill -sn: Quantrill -description: This is Peng Quantrill's description -facsimileTelephoneNumber: +1 206 806-7825 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 307-3044 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: QuantriP -givenName: Peng -mail: QuantriP@5b8fdd487f414248bc005f588420c84d.bitwarden.com -carLicense: E4WXQ5 -departmentNumber: 9038 -employeeType: Contract -homePhone: +1 206 104-4521 -initials: P. Q. -mobile: +1 206 753-5580 -pager: +1 206 862-2299 -roomNumber: 9849 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Addy Paunins,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Addy Paunins -sn: Paunins -description: This is Addy Paunins's description -facsimileTelephoneNumber: +1 213 417-8698 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 213 377-6209 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: PauninsA -givenName: Addy -mail: PauninsA@65678c07e8734c7890d5cf5e76fde9cc.bitwarden.com -carLicense: N4TACK -departmentNumber: 5692 -employeeType: Contract -homePhone: +1 213 112-8269 -initials: A. P. -mobile: +1 213 321-2122 -pager: +1 213 348-8477 -roomNumber: 8972 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Friederike Constable,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Friederike Constable -sn: Constable -description: This is Friederike Constable's description -facsimileTelephoneNumber: +1 408 132-6226 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 387-9964 -title: Junior Human Resources Czar -userPassword: Password1 -uid: ConstabF -givenName: Friederike -mail: ConstabF@2a2c0e37e6624d4cbca590425919a502.bitwarden.com -carLicense: NM9E2V -departmentNumber: 1446 -employeeType: Normal -homePhone: +1 408 541-2072 -initials: F. C. -mobile: +1 408 897-9352 -pager: +1 408 958-6950 -roomNumber: 8877 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Starlene Solodko,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Starlene Solodko -sn: Solodko -description: This is Starlene Solodko's description -facsimileTelephoneNumber: +1 206 204-7889 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 555-2824 -title: Junior Payroll Vice President -userPassword: Password1 -uid: SolodkoS -givenName: Starlene -mail: SolodkoS@1f2d8d4c2ab74a83be61634a4213379d.bitwarden.com -carLicense: 8QTRQ6 -departmentNumber: 8606 -employeeType: Employee -homePhone: +1 206 990-5439 -initials: S. S. -mobile: +1 206 460-4286 -pager: +1 206 548-4784 -roomNumber: 8721 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Verene Ludchen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verene Ludchen -sn: Ludchen -description: This is Verene Ludchen's description -facsimileTelephoneNumber: +1 415 758-1639 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 991-8959 -title: Chief Janitorial Consultant -userPassword: Password1 -uid: LudchenV -givenName: Verene -mail: LudchenV@6fe2230bebbe45c4b4897cbd6f689c6c.bitwarden.com -carLicense: 7FF7CS -departmentNumber: 3559 -employeeType: Contract -homePhone: +1 415 690-6675 -initials: V. L. -mobile: +1 415 854-6890 -pager: +1 415 419-1684 -roomNumber: 8640 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Curtis Mersch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Curtis Mersch -sn: Mersch -description: This is Curtis Mersch's description -facsimileTelephoneNumber: +1 408 517-5525 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 514-9484 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: MerschC -givenName: Curtis -mail: MerschC@d73ef9502e9045388e89e90d1beb22e0.bitwarden.com -carLicense: RS388D -departmentNumber: 1468 -employeeType: Normal -homePhone: +1 408 705-4113 -initials: C. M. -mobile: +1 408 355-5177 -pager: +1 408 218-4830 -roomNumber: 9704 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Piper Brander,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Piper Brander -sn: Brander -description: This is Piper Brander's description -facsimileTelephoneNumber: +1 408 528-6023 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 839-2248 -title: Chief Administrative Developer -userPassword: Password1 -uid: BranderP -givenName: Piper -mail: BranderP@1365456b38df40e8b356de5ec434637e.bitwarden.com -carLicense: U789CR -departmentNumber: 6408 -employeeType: Contract -homePhone: +1 408 940-4027 -initials: P. B. -mobile: +1 408 751-3938 -pager: +1 408 289-4976 -roomNumber: 8121 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bedford Berenbach -sn: Berenbach -description: This is Bedford Berenbach's description -facsimileTelephoneNumber: +1 818 898-6858 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 574-9379 -title: Chief Human Resources Artist -userPassword: Password1 -uid: BerenbaB -givenName: Bedford -mail: BerenbaB@2a0cae73d63c458d9d5daaf71efd50df.bitwarden.com -carLicense: I6WUIR -departmentNumber: 6370 -employeeType: Contract -homePhone: +1 818 635-9498 -initials: B. B. -mobile: +1 818 460-4591 -pager: +1 818 147-1212 -roomNumber: 8847 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rozalin Heppes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozalin Heppes -sn: Heppes -description: This is Rozalin Heppes's description -facsimileTelephoneNumber: +1 818 180-5937 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 786-2635 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: HeppesR -givenName: Rozalin -mail: HeppesR@7016343b9c7c41d58eb428f022d1c9f0.bitwarden.com -carLicense: D40VPY -departmentNumber: 4722 -employeeType: Normal -homePhone: +1 818 333-8500 -initials: R. H. -mobile: +1 818 324-7582 -pager: +1 818 728-3600 -roomNumber: 9962 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirabelle DropBox -sn: DropBox -description: This is Mirabelle DropBox's description -facsimileTelephoneNumber: +1 408 212-1489 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 420-2830 -title: Supreme Product Testing Manager -userPassword: Password1 -uid: DropBoxM -givenName: Mirabelle -mail: DropBoxM@812ac6eec5fc41f6927bb014fa31a1aa.bitwarden.com -carLicense: 44I4EO -departmentNumber: 3398 -employeeType: Normal -homePhone: +1 408 404-8863 -initials: M. D. -mobile: +1 408 355-1653 -pager: +1 408 771-4033 -roomNumber: 8651 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cad Ajersch,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cad Ajersch -sn: Ajersch -description: This is Cad Ajersch's description -facsimileTelephoneNumber: +1 415 583-6052 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 415 163-9235 -title: Master Human Resources Manager -userPassword: Password1 -uid: AjerschC -givenName: Cad -mail: AjerschC@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com -carLicense: 7YQ5HT -departmentNumber: 1824 -employeeType: Normal -homePhone: +1 415 489-7864 -initials: C. A. -mobile: +1 415 842-8820 -pager: +1 415 215-5096 -roomNumber: 9086 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=TakWai Wagoner,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: TakWai Wagoner -sn: Wagoner -description: This is TakWai Wagoner's description -facsimileTelephoneNumber: +1 206 590-8277 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 742-4613 -title: Associate Administrative Manager -userPassword: Password1 -uid: WagonerT -givenName: TakWai -mail: WagonerT@f190d7cfec0941b2829b0757aff4e20f.bitwarden.com -carLicense: UNF8P2 -departmentNumber: 9094 -employeeType: Employee -homePhone: +1 206 620-1800 -initials: T. W. -mobile: +1 206 471-4184 -pager: +1 206 200-7295 -roomNumber: 9214 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlena Ramachandran -sn: Ramachandran -description: This is Marlena Ramachandran's description -facsimileTelephoneNumber: +1 213 335-7471 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 428-4740 -title: Associate Administrative Fellow -userPassword: Password1 -uid: RamachaM -givenName: Marlena -mail: RamachaM@1d184a251b65443396a8cb4416166285.bitwarden.com -carLicense: L05T9N -departmentNumber: 4483 -employeeType: Normal -homePhone: +1 213 674-1289 -initials: M. R. -mobile: +1 213 916-4182 -pager: +1 213 936-4340 -roomNumber: 9867 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carran Rokas,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carran Rokas -sn: Rokas -description: This is Carran Rokas's description -facsimileTelephoneNumber: +1 415 755-4817 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 855-7232 -title: Supreme Administrative Vice President -userPassword: Password1 -uid: RokasC -givenName: Carran -mail: RokasC@5a771b0086d24bceafcaac2a637338d8.bitwarden.com -carLicense: 8RPF6I -departmentNumber: 4378 -employeeType: Contract -homePhone: +1 415 728-5431 -initials: C. R. -mobile: +1 415 680-5306 -pager: +1 415 988-5660 -roomNumber: 8668 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Idus Wayling,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idus Wayling -sn: Wayling -description: This is Idus Wayling's description -facsimileTelephoneNumber: +1 510 914-6015 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 683-9916 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: WaylingI -givenName: Idus -mail: WaylingI@4a7f898eb8954829907d34eeb46064e6.bitwarden.com -carLicense: A6RG04 -departmentNumber: 1694 -employeeType: Contract -homePhone: +1 510 637-6151 -initials: I. W. -mobile: +1 510 954-4870 -pager: +1 510 139-7593 -roomNumber: 9172 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maryann Somerville,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryann Somerville -sn: Somerville -description: This is Maryann Somerville's description -facsimileTelephoneNumber: +1 804 936-2066 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 789-7849 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: SomerviM -givenName: Maryann -mail: SomerviM@f0291ad4694a4c4989e17e0aede36a7b.bitwarden.com -carLicense: 5PV0HJ -departmentNumber: 7386 -employeeType: Employee -homePhone: +1 804 671-3344 -initials: M. S. -mobile: +1 804 835-8590 -pager: +1 804 257-6081 -roomNumber: 9912 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mildred Dumas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mildred Dumas -sn: Dumas -description: This is Mildred Dumas's description -facsimileTelephoneNumber: +1 206 824-7978 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 696-2810 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: DumasM -givenName: Mildred -mail: DumasM@993e28bbac384cdfa91177630e4e7ee6.bitwarden.com -carLicense: 0CUT83 -departmentNumber: 4033 -employeeType: Employee -homePhone: +1 206 661-2934 -initials: M. D. -mobile: +1 206 424-5382 -pager: +1 206 307-5465 -roomNumber: 8743 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ilda Bisson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilda Bisson -sn: Bisson -description: This is Ilda Bisson's description -facsimileTelephoneNumber: +1 415 706-6207 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 870-9541 -title: Junior Payroll Artist -userPassword: Password1 -uid: BissonI -givenName: Ilda -mail: BissonI@1a3958d626a64b60bde6bf0034916d09.bitwarden.com -carLicense: A9XRPM -departmentNumber: 4440 -employeeType: Normal -homePhone: +1 415 738-3482 -initials: I. B. -mobile: +1 415 553-2082 -pager: +1 415 276-1835 -roomNumber: 9319 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashien Afkhamebrahimi -sn: Afkhamebrahimi -description: This is Ashien Afkhamebrahimi's description -facsimileTelephoneNumber: +1 818 735-1953 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 540-1784 -title: Supreme Administrative Visionary -userPassword: Password1 -uid: AfkhameA -givenName: Ashien -mail: AfkhameA@8be485b278d14bd09bb99f460e4b8889.bitwarden.com -carLicense: E2C3VD -departmentNumber: 7800 -employeeType: Contract -homePhone: +1 818 582-9845 -initials: A. A. -mobile: +1 818 443-6179 -pager: +1 818 429-3189 -roomNumber: 8379 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheilakathryn Seay -sn: Seay -description: This is Sheilakathryn Seay's description -facsimileTelephoneNumber: +1 804 806-6791 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 301-2835 -title: Associate Human Resources Czar -userPassword: Password1 -uid: SeayS -givenName: Sheilakathryn -mail: SeayS@982a9dc04ec64d818da9977446a91014.bitwarden.com -carLicense: QCTISE -departmentNumber: 9345 -employeeType: Normal -homePhone: +1 804 777-5760 -initials: S. S. -mobile: +1 804 418-7461 -pager: +1 804 162-6783 -roomNumber: 9794 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Babb Nicolle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Babb Nicolle -sn: Nicolle -description: This is Babb Nicolle's description -facsimileTelephoneNumber: +1 213 857-3930 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 966-1348 -title: Supreme Management Engineer -userPassword: Password1 -uid: NicolleB -givenName: Babb -mail: NicolleB@d9c6a4248c7f4569bc85ec9d29b8d415.bitwarden.com -carLicense: GPJ4TI -departmentNumber: 1898 -employeeType: Contract -homePhone: +1 213 998-9071 -initials: B. N. -mobile: +1 213 507-9377 -pager: +1 213 417-1565 -roomNumber: 8061 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karyn Pagani,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karyn Pagani -sn: Pagani -description: This is Karyn Pagani's description -facsimileTelephoneNumber: +1 510 953-2467 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 822-4994 -title: Junior Product Testing Czar -userPassword: Password1 -uid: PaganiK -givenName: Karyn -mail: PaganiK@4e7c646d43994aefbe621ec9a0481c2c.bitwarden.com -carLicense: P9S3IC -departmentNumber: 1931 -employeeType: Normal -homePhone: +1 510 264-1937 -initials: K. P. -mobile: +1 510 752-1383 -pager: +1 510 793-9689 -roomNumber: 9497 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tricia Rahrer -sn: Rahrer -description: This is Tricia Rahrer's description -facsimileTelephoneNumber: +1 213 536-1660 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 407-6994 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: RahrerT -givenName: Tricia -mail: RahrerT@54ce292eb157498aac7b1683764ec867.bitwarden.com -carLicense: H8HS2Q -departmentNumber: 4655 -employeeType: Contract -homePhone: +1 213 525-4870 -initials: T. R. -mobile: +1 213 881-6492 -pager: +1 213 261-6777 -roomNumber: 8091 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Agnola MacRae,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnola MacRae -sn: MacRae -description: This is Agnola MacRae's description -facsimileTelephoneNumber: +1 408 816-8334 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 450-7320 -title: Associate Administrative Warrior -userPassword: Password1 -uid: MacRaeA -givenName: Agnola -mail: MacRaeA@0d089601fe8d4842aca2c104051c6a49.bitwarden.com -carLicense: 646TEW -departmentNumber: 5872 -employeeType: Employee -homePhone: +1 408 608-4403 -initials: A. M. -mobile: +1 408 940-2152 -pager: +1 408 853-9867 -roomNumber: 8268 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tessi Borha,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tessi Borha -sn: Borha -description: This is Tessi Borha's description -facsimileTelephoneNumber: +1 804 966-4797 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 860-6931 -title: Master Peons Stooge -userPassword: Password1 -uid: BorhaT -givenName: Tessi -mail: BorhaT@ebda9764758246a4bb15c2161573a88b.bitwarden.com -carLicense: XSGF0E -departmentNumber: 7888 -employeeType: Normal -homePhone: +1 804 836-3711 -initials: T. B. -mobile: +1 804 527-2792 -pager: +1 804 308-2478 -roomNumber: 8240 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tonia OToole,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonia OToole -sn: OToole -description: This is Tonia OToole's description -facsimileTelephoneNumber: +1 408 594-6490 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 334-7041 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: OTooleT -givenName: Tonia -mail: OTooleT@fd421e6c5b5a481fb2a85be843f33d5e.bitwarden.com -carLicense: 3RQ52D -departmentNumber: 7434 -employeeType: Normal -homePhone: +1 408 832-2163 -initials: T. O. -mobile: +1 408 970-7969 -pager: +1 408 709-9539 -roomNumber: 9540 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xiaojing Thomaier -sn: Thomaier -description: This is Xiaojing Thomaier's description -facsimileTelephoneNumber: +1 408 122-3662 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 103-3609 -title: Junior Product Testing Manager -userPassword: Password1 -uid: ThomaieX -givenName: Xiaojing -mail: ThomaieX@fc97577a08a94700a5a94546b6e00dae.bitwarden.com -carLicense: C2UT4R -departmentNumber: 8217 -employeeType: Employee -homePhone: +1 408 179-6708 -initials: X. T. -mobile: +1 408 679-9872 -pager: +1 408 966-4952 -roomNumber: 9869 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gheorghe Eros,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gheorghe Eros -sn: Eros -description: This is Gheorghe Eros's description -facsimileTelephoneNumber: +1 408 237-6267 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 490-8782 -title: Supreme Management Manager -userPassword: Password1 -uid: ErosG -givenName: Gheorghe -mail: ErosG@9f934672a4d04b0083671f6289891300.bitwarden.com -carLicense: DY11LA -departmentNumber: 8755 -employeeType: Normal -homePhone: +1 408 177-5795 -initials: G. E. -mobile: +1 408 664-1124 -pager: +1 408 329-7717 -roomNumber: 8177 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Halie Dautenhahn -sn: Dautenhahn -description: This is Halie Dautenhahn's description -facsimileTelephoneNumber: +1 415 222-4849 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 868-7963 -title: Master Human Resources Punk -userPassword: Password1 -uid: DautenhH -givenName: Halie -mail: DautenhH@ae44e6b70ddd49aaaf586776542680b1.bitwarden.com -carLicense: WBFVYU -departmentNumber: 8456 -employeeType: Contract -homePhone: +1 415 625-3495 -initials: H. D. -mobile: +1 415 198-3908 -pager: +1 415 118-3928 -roomNumber: 9668 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wladyslaw Emesh -sn: Emesh -description: This is Wladyslaw Emesh's description -facsimileTelephoneNumber: +1 408 165-6717 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 568-9633 -title: Chief Payroll Dictator -userPassword: Password1 -uid: EmeshW -givenName: Wladyslaw -mail: EmeshW@0d0f9cb8c311472e8db0a980c10d0d76.bitwarden.com -carLicense: IPSSBY -departmentNumber: 8968 -employeeType: Contract -homePhone: +1 408 695-3406 -initials: W. E. -mobile: +1 408 411-3651 -pager: +1 408 217-1857 -roomNumber: 9534 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Robina Chaikowsky,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robina Chaikowsky -sn: Chaikowsky -description: This is Robina Chaikowsky's description -facsimileTelephoneNumber: +1 415 709-3963 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 314-3721 -title: Junior Peons Figurehead -userPassword: Password1 -uid: ChaikowR -givenName: Robina -mail: ChaikowR@b0cf0a9a60924176bbfa4764c3650166.bitwarden.com -carLicense: TKJPHK -departmentNumber: 6031 -employeeType: Employee -homePhone: +1 415 663-5271 -initials: R. C. -mobile: +1 415 439-7239 -pager: +1 415 582-4001 -roomNumber: 9872 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veen Wasylyk -sn: Wasylyk -description: This is Veen Wasylyk's description -facsimileTelephoneNumber: +1 818 346-5470 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 690-7824 -title: Master Janitorial Sales Rep -userPassword: Password1 -uid: WasylykV -givenName: Veen -mail: WasylykV@c5f103343b7e4b25bc1a4d2fdd71d622.bitwarden.com -carLicense: HE06JO -departmentNumber: 2170 -employeeType: Employee -homePhone: +1 818 660-2570 -initials: V. W. -mobile: +1 818 595-8807 -pager: +1 818 746-1506 -roomNumber: 8229 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ursala Wadden,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ursala Wadden -sn: Wadden -description: This is Ursala Wadden's description -facsimileTelephoneNumber: +1 206 652-8037 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 566-1424 -title: Junior Management Madonna -userPassword: Password1 -uid: WaddenU -givenName: Ursala -mail: WaddenU@2c712498ce76440fbd827369876f0a82.bitwarden.com -carLicense: 0W2PCU -departmentNumber: 7955 -employeeType: Employee -homePhone: +1 206 375-2038 -initials: U. W. -mobile: +1 206 517-1129 -pager: +1 206 751-8807 -roomNumber: 9981 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elysha Bonnefoy -sn: Bonnefoy -description: This is Elysha Bonnefoy's description -facsimileTelephoneNumber: +1 206 247-1499 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 800-5064 -title: Master Product Testing Stooge -userPassword: Password1 -uid: BonnefoE -givenName: Elysha -mail: BonnefoE@ad623334663c4947b77eb81b44ea11ea.bitwarden.com -carLicense: GKKV2F -departmentNumber: 6179 -employeeType: Normal -homePhone: +1 206 481-5993 -initials: E. B. -mobile: +1 206 973-5915 -pager: +1 206 511-5838 -roomNumber: 8851 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ysabel Verkroost -sn: Verkroost -description: This is Ysabel Verkroost's description -facsimileTelephoneNumber: +1 804 589-5494 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 804 123-1577 -title: Master Janitorial Czar -userPassword: Password1 -uid: VerkrooY -givenName: Ysabel -mail: VerkrooY@11c71c9968bd42f7992b3fededa67ace.bitwarden.com -carLicense: QL58W5 -departmentNumber: 6046 -employeeType: Normal -homePhone: +1 804 142-6872 -initials: Y. V. -mobile: +1 804 656-7537 -pager: +1 804 757-2403 -roomNumber: 8482 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sephira Munsey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sephira Munsey -sn: Munsey -description: This is Sephira Munsey's description -facsimileTelephoneNumber: +1 818 103-8670 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 677-6487 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: MunseyS -givenName: Sephira -mail: MunseyS@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com -carLicense: Y5BB6R -departmentNumber: 9904 -employeeType: Employee -homePhone: +1 818 827-2122 -initials: S. M. -mobile: +1 818 757-6022 -pager: +1 818 545-9411 -roomNumber: 9578 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Neal Astle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neal Astle -sn: Astle -description: This is Neal Astle's description -facsimileTelephoneNumber: +1 415 726-2188 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 368-9219 -title: Supreme Management Mascot -userPassword: Password1 -uid: AstleN -givenName: Neal -mail: AstleN@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com -carLicense: MQQ39B -departmentNumber: 2399 -employeeType: Contract -homePhone: +1 415 217-7581 -initials: N. A. -mobile: +1 415 567-4774 -pager: +1 415 528-4765 -roomNumber: 8026 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcie Dermardiros -sn: Dermardiros -description: This is Marcie Dermardiros's description -facsimileTelephoneNumber: +1 213 343-3138 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 213 291-4810 -title: Chief Product Development Warrior -userPassword: Password1 -uid: DermardM -givenName: Marcie -mail: DermardM@0cf6d44baded4f949aa6f553554f8d65.bitwarden.com -carLicense: 71CLES -departmentNumber: 1107 -employeeType: Normal -homePhone: +1 213 925-9991 -initials: M. D. -mobile: +1 213 658-3438 -pager: +1 213 414-2870 -roomNumber: 9378 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vacman Lapostolle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vacman Lapostolle -sn: Lapostolle -description: This is Vacman Lapostolle's description -facsimileTelephoneNumber: +1 415 377-8853 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 689-7270 -title: Associate Management Assistant -userPassword: Password1 -uid: LapostoV -givenName: Vacman -mail: LapostoV@8dfa40622d12496d8e4833fcf53dcbd6.bitwarden.com -carLicense: 0LIO28 -departmentNumber: 4656 -employeeType: Employee -homePhone: +1 415 539-7750 -initials: V. L. -mobile: +1 415 471-8260 -pager: +1 415 518-5897 -roomNumber: 8516 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Genna Rappoport,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genna Rappoport -sn: Rappoport -description: This is Genna Rappoport's description -facsimileTelephoneNumber: +1 206 487-7906 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 223-4381 -title: Chief Management Evangelist -userPassword: Password1 -uid: RappopoG -givenName: Genna -mail: RappopoG@88d79029cf4a42f2bfb0339dce25f1ba.bitwarden.com -carLicense: DA89DM -departmentNumber: 6176 -employeeType: Contract -homePhone: +1 206 531-6372 -initials: G. R. -mobile: +1 206 862-3253 -pager: +1 206 860-2622 -roomNumber: 8490 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lenny Mundi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenny Mundi -sn: Mundi -description: This is Lenny Mundi's description -facsimileTelephoneNumber: +1 213 581-6296 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 336-4692 -title: Associate Administrative Admin -userPassword: Password1 -uid: MundiL -givenName: Lenny -mail: MundiL@ee8fbaff37fe43098ee69cb9ce7da138.bitwarden.com -carLicense: XENGDH -departmentNumber: 7316 -employeeType: Normal -homePhone: +1 213 735-4863 -initials: L. M. -mobile: +1 213 614-8711 -pager: +1 213 427-2440 -roomNumber: 8834 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenilee Murdaugh -sn: Murdaugh -description: This is Jenilee Murdaugh's description -facsimileTelephoneNumber: +1 408 823-5337 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 850-6288 -title: Junior Product Testing Assistant -userPassword: Password1 -uid: MurdaugJ -givenName: Jenilee -mail: MurdaugJ@dd6d4c6b1dd34999828d0c453a81ce8e.bitwarden.com -carLicense: PTDHBT -departmentNumber: 9925 -employeeType: Employee -homePhone: +1 408 701-2691 -initials: J. M. -mobile: +1 408 300-8800 -pager: +1 408 302-8960 -roomNumber: 9635 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koji GaudetMontsion -sn: GaudetMontsion -description: This is Koji GaudetMontsion's description -facsimileTelephoneNumber: +1 206 610-2945 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 696-3606 -title: Chief Product Development Dictator -userPassword: Password1 -uid: GaudetMK -givenName: Koji -mail: GaudetMK@36a375859cdd487ea0bae44e1c40b92f.bitwarden.com -carLicense: GGFKNU -departmentNumber: 6776 -employeeType: Employee -homePhone: +1 206 480-5011 -initials: K. G. -mobile: +1 206 489-4342 -pager: +1 206 741-7484 -roomNumber: 8285 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Iva Pilote,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Iva Pilote -sn: Pilote -description: This is Iva Pilote's description -facsimileTelephoneNumber: +1 206 961-8570 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 280-6012 -title: Associate Human Resources Architect -userPassword: Password1 -uid: PiloteI -givenName: Iva -mail: PiloteI@c1ba14a57c91416b9263e6ed2bcbb54e.bitwarden.com -carLicense: RQ6H6F -departmentNumber: 3227 -employeeType: Contract -homePhone: +1 206 622-5252 -initials: I. P. -mobile: +1 206 590-6337 -pager: +1 206 378-5496 -roomNumber: 8453 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Caridad Spolar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caridad Spolar -sn: Spolar -description: This is Caridad Spolar's description -facsimileTelephoneNumber: +1 804 745-5502 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 779-5396 -title: Chief Product Testing Grunt -userPassword: Password1 -uid: SpolarC -givenName: Caridad -mail: SpolarC@67e1d92e08fe4a64be64c20e9ec9029c.bitwarden.com -carLicense: XJQ4KQ -departmentNumber: 7134 -employeeType: Normal -homePhone: +1 804 623-8363 -initials: C. S. -mobile: +1 804 998-4803 -pager: +1 804 850-3109 -roomNumber: 9800 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elenore Jatar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elenore Jatar -sn: Jatar -description: This is Elenore Jatar's description -facsimileTelephoneNumber: +1 804 858-5810 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 380-2398 -title: Master Payroll Figurehead -userPassword: Password1 -uid: JatarE -givenName: Elenore -mail: JatarE@f159a3a05dc14db0911c353e03a8ce19.bitwarden.com -carLicense: RUJVD0 -departmentNumber: 7009 -employeeType: Employee -homePhone: +1 804 327-4691 -initials: E. J. -mobile: +1 804 632-7516 -pager: +1 804 949-7789 -roomNumber: 9349 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Otha Scheffler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Otha Scheffler -sn: Scheffler -description: This is Otha Scheffler's description -facsimileTelephoneNumber: +1 408 929-5430 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 931-3315 -title: Master Product Development Pinhead -userPassword: Password1 -uid: SchefflO -givenName: Otha -mail: SchefflO@80fa9db759cf45d8a9f0fb7fa92c1396.bitwarden.com -carLicense: YAXCNY -departmentNumber: 7730 -employeeType: Employee -homePhone: +1 408 922-2949 -initials: O. S. -mobile: +1 408 141-2137 -pager: +1 408 526-7410 -roomNumber: 9322 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Janot Greenway,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janot Greenway -sn: Greenway -description: This is Janot Greenway's description -facsimileTelephoneNumber: +1 804 627-1848 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 272-7771 -title: Chief Human Resources Czar -userPassword: Password1 -uid: GreenwaJ -givenName: Janot -mail: GreenwaJ@44fa0b06635a4a55b59882def7b69891.bitwarden.com -carLicense: 6UL5G3 -departmentNumber: 6704 -employeeType: Normal -homePhone: +1 804 923-6927 -initials: J. G. -mobile: +1 804 222-1609 -pager: +1 804 237-2728 -roomNumber: 9085 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rowan Hicks,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rowan Hicks -sn: Hicks -description: This is Rowan Hicks's description -facsimileTelephoneNumber: +1 415 278-6960 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 986-7650 -title: Master Product Testing Czar -userPassword: Password1 -uid: HicksR -givenName: Rowan -mail: HicksR@a3e17557b4384961a999c1890d509b79.bitwarden.com -carLicense: 7B0YWN -departmentNumber: 3098 -employeeType: Employee -homePhone: +1 415 216-8862 -initials: R. H. -mobile: +1 415 290-2230 -pager: +1 415 342-2207 -roomNumber: 8061 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bertina Harkness,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bertina Harkness -sn: Harkness -description: This is Bertina Harkness's description -facsimileTelephoneNumber: +1 213 535-9595 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 107-3574 -title: Chief Management President -userPassword: Password1 -uid: HarknesB -givenName: Bertina -mail: HarknesB@850cbba5cfd34abd81656df859ecb75f.bitwarden.com -carLicense: T7500L -departmentNumber: 6060 -employeeType: Normal -homePhone: +1 213 365-5400 -initials: B. H. -mobile: +1 213 395-7948 -pager: +1 213 908-6323 -roomNumber: 9715 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmelita Grimble -sn: Grimble -description: This is Carmelita Grimble's description -facsimileTelephoneNumber: +1 408 716-9935 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 638-2397 -title: Master Human Resources Mascot -userPassword: Password1 -uid: GrimbleC -givenName: Carmelita -mail: GrimbleC@a6e3e90234e3445ebd3b85eaa541b715.bitwarden.com -carLicense: TB1OHR -departmentNumber: 1835 -employeeType: Employee -homePhone: +1 408 623-2628 -initials: C. G. -mobile: +1 408 751-5859 -pager: +1 408 180-6799 -roomNumber: 8851 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Misbah Desautels,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Misbah Desautels -sn: Desautels -description: This is Misbah Desautels's description -facsimileTelephoneNumber: +1 213 708-7020 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 213 737-1732 -title: Junior Payroll Writer -userPassword: Password1 -uid: DesauteM -givenName: Misbah -mail: DesauteM@17893613ce1c4281965c9aa5767bbf90.bitwarden.com -carLicense: O4CG39 -departmentNumber: 4427 -employeeType: Employee -homePhone: +1 213 298-1701 -initials: M. D. -mobile: +1 213 965-5966 -pager: +1 213 150-8965 -roomNumber: 9799 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=TakWai Miranda,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: TakWai Miranda -sn: Miranda -description: This is TakWai Miranda's description -facsimileTelephoneNumber: +1 206 730-2385 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 496-8495 -title: Junior Peons Fellow -userPassword: Password1 -uid: MirandaT -givenName: TakWai -mail: MirandaT@4a0e814607ef4adf977758aa230a12dd.bitwarden.com -carLicense: LUV247 -departmentNumber: 5236 -employeeType: Employee -homePhone: +1 206 698-8739 -initials: T. M. -mobile: +1 206 227-6850 -pager: +1 206 483-8076 -roomNumber: 9112 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Blisse Silverman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blisse Silverman -sn: Silverman -description: This is Blisse Silverman's description -facsimileTelephoneNumber: +1 510 147-2960 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 606-3378 -title: Associate Product Testing Admin -userPassword: Password1 -uid: SilvermB -givenName: Blisse -mail: SilvermB@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com -carLicense: GYK9FR -departmentNumber: 7132 -employeeType: Contract -homePhone: +1 510 251-9998 -initials: B. S. -mobile: +1 510 337-2761 -pager: +1 510 252-3577 -roomNumber: 9394 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nong Saidzadeh -sn: Saidzadeh -description: This is Nong Saidzadeh's description -facsimileTelephoneNumber: +1 804 109-8565 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 804 835-5462 -title: Associate Product Development Mascot -userPassword: Password1 -uid: SaidzadN -givenName: Nong -mail: SaidzadN@3fc70e948ed143488b3a65dc900da1f7.bitwarden.com -carLicense: A65U5J -departmentNumber: 8866 -employeeType: Employee -homePhone: +1 804 951-3487 -initials: N. S. -mobile: +1 804 507-4610 -pager: +1 804 719-4524 -roomNumber: 9287 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glyn Vasudeva -sn: Vasudeva -description: This is Glyn Vasudeva's description -facsimileTelephoneNumber: +1 804 190-7717 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 691-8336 -title: Supreme Payroll Technician -userPassword: Password1 -uid: VasudevG -givenName: Glyn -mail: VasudevG@514c4dabf5514f759283b3fa82dba706.bitwarden.com -carLicense: 8UMI4Q -departmentNumber: 7617 -employeeType: Contract -homePhone: +1 804 638-8229 -initials: G. V. -mobile: +1 804 310-4550 -pager: +1 804 278-7438 -roomNumber: 8611 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nerty Longchamps,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nerty Longchamps -sn: Longchamps -description: This is Nerty Longchamps's description -facsimileTelephoneNumber: +1 804 391-5766 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 464-2912 -title: Associate Management Developer -userPassword: Password1 -uid: LongchaN -givenName: Nerty -mail: LongchaN@43f8c4083e544056b3c9e572e90b60ab.bitwarden.com -carLicense: MX2A03 -departmentNumber: 8583 -employeeType: Normal -homePhone: +1 804 773-7006 -initials: N. L. -mobile: +1 804 777-5358 -pager: +1 804 879-2227 -roomNumber: 9573 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aniko Jaakkola -sn: Jaakkola -description: This is Aniko Jaakkola's description -facsimileTelephoneNumber: +1 408 106-3193 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 280-1014 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: JaakkolA -givenName: Aniko -mail: JaakkolA@4da7d564972d46f2924a6a8ae018f420.bitwarden.com -carLicense: W13V7H -departmentNumber: 9597 -employeeType: Contract -homePhone: +1 408 489-5851 -initials: A. J. -mobile: +1 408 518-3883 -pager: +1 408 778-7184 -roomNumber: 9990 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hilary Mendonca,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilary Mendonca -sn: Mendonca -description: This is Hilary Mendonca's description -facsimileTelephoneNumber: +1 818 616-2942 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 818 176-4320 -title: Chief Peons Warrior -userPassword: Password1 -uid: MendoncH -givenName: Hilary -mail: MendoncH@1b0566a255d64dd68603a81a67ba1612.bitwarden.com -carLicense: X50JNK -departmentNumber: 2187 -employeeType: Contract -homePhone: +1 818 667-8408 -initials: H. M. -mobile: +1 818 154-5223 -pager: +1 818 597-8766 -roomNumber: 9341 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vivien Seager,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivien Seager -sn: Seager -description: This is Vivien Seager's description -facsimileTelephoneNumber: +1 804 443-3578 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 179-6813 -title: Supreme Payroll Dictator -userPassword: Password1 -uid: SeagerV -givenName: Vivien -mail: SeagerV@f2fa8ee45795461bbc9031c0c39e2316.bitwarden.com -carLicense: T0XBIM -departmentNumber: 3993 -employeeType: Employee -homePhone: +1 804 539-8272 -initials: V. S. -mobile: +1 804 918-7122 -pager: +1 804 513-8699 -roomNumber: 9098 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Estele Dasch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estele Dasch -sn: Dasch -description: This is Estele Dasch's description -facsimileTelephoneNumber: +1 206 527-5923 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 206 397-5968 -title: Supreme Janitorial Sales Rep -userPassword: Password1 -uid: DaschE -givenName: Estele -mail: DaschE@f7b0e9e87641416f8b0c6d87c885e484.bitwarden.com -carLicense: F232DM -departmentNumber: 1714 -employeeType: Contract -homePhone: +1 206 967-5978 -initials: E. D. -mobile: +1 206 943-9147 -pager: +1 206 490-8555 -roomNumber: 8224 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Joyous Belson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joyous Belson -sn: Belson -description: This is Joyous Belson's description -facsimileTelephoneNumber: +1 804 854-8930 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 215-1734 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: BelsonJ -givenName: Joyous -mail: BelsonJ@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com -carLicense: K4RNR9 -departmentNumber: 3505 -employeeType: Employee -homePhone: +1 804 805-8975 -initials: J. B. -mobile: +1 804 787-8796 -pager: +1 804 610-1345 -roomNumber: 9856 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zorine OLeary,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zorine OLeary -sn: OLeary -description: This is Zorine OLeary's description -facsimileTelephoneNumber: +1 213 575-9102 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 879-1199 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: OLearyZ -givenName: Zorine -mail: OLearyZ@a19b5183a0f945f9a17fc014e4433008.bitwarden.com -carLicense: 0XFW4N -departmentNumber: 8304 -employeeType: Employee -homePhone: +1 213 633-9282 -initials: Z. O. -mobile: +1 213 986-6954 -pager: +1 213 741-6216 -roomNumber: 8122 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kanata Kilby,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanata Kilby -sn: Kilby -description: This is Kanata Kilby's description -facsimileTelephoneNumber: +1 206 857-1912 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 356-2490 -title: Junior Peons Engineer -userPassword: Password1 -uid: KilbyK -givenName: Kanata -mail: KilbyK@340ca4c3449a4788b8cf0565433518e3.bitwarden.com -carLicense: HNEDB4 -departmentNumber: 6647 -employeeType: Contract -homePhone: +1 206 442-2174 -initials: K. K. -mobile: +1 206 886-5388 -pager: +1 206 565-3863 -roomNumber: 8962 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Peder Gaylor,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peder Gaylor -sn: Gaylor -description: This is Peder Gaylor's description -facsimileTelephoneNumber: +1 510 413-1966 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 743-7178 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: GaylorP -givenName: Peder -mail: GaylorP@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com -carLicense: OIG09R -departmentNumber: 8746 -employeeType: Normal -homePhone: +1 510 983-4424 -initials: P. G. -mobile: +1 510 891-9412 -pager: +1 510 623-7868 -roomNumber: 8008 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carter MacMaid,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carter MacMaid -sn: MacMaid -description: This is Carter MacMaid's description -facsimileTelephoneNumber: +1 510 290-7608 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 968-2072 -title: Chief Payroll Architect -userPassword: Password1 -uid: MacMaidC -givenName: Carter -mail: MacMaidC@f29a02eb60f740478f80d3c6d60d0269.bitwarden.com -carLicense: G61E7M -departmentNumber: 1724 -employeeType: Employee -homePhone: +1 510 545-7071 -initials: C. M. -mobile: +1 510 570-5378 -pager: +1 510 267-2524 -roomNumber: 8317 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Man Dacre,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Man Dacre -sn: Dacre -description: This is Man Dacre's description -facsimileTelephoneNumber: +1 408 637-2467 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 605-9727 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: DacreM -givenName: Man -mail: DacreM@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com -carLicense: 6MB74Q -departmentNumber: 9847 -employeeType: Employee -homePhone: +1 408 681-8773 -initials: M. D. -mobile: +1 408 483-6351 -pager: +1 408 131-9463 -roomNumber: 9897 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Theresina Torrell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theresina Torrell -sn: Torrell -description: This is Theresina Torrell's description -facsimileTelephoneNumber: +1 408 546-4361 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 408 515-7906 -title: Associate Administrative Visionary -userPassword: Password1 -uid: TorrellT -givenName: Theresina -mail: TorrellT@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com -carLicense: 7XML18 -departmentNumber: 8842 -employeeType: Normal -homePhone: +1 408 669-5987 -initials: T. T. -mobile: +1 408 795-8323 -pager: +1 408 477-8703 -roomNumber: 9801 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Emelda Neely,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emelda Neely -sn: Neely -description: This is Emelda Neely's description -facsimileTelephoneNumber: +1 510 237-4568 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 271-3753 -title: Associate Human Resources Director -userPassword: Password1 -uid: NeelyE -givenName: Emelda -mail: NeelyE@c66e42835f2044cdbf51d67978ad100e.bitwarden.com -carLicense: POQ1N9 -departmentNumber: 5526 -employeeType: Contract -homePhone: +1 510 349-2736 -initials: E. N. -mobile: +1 510 346-8580 -pager: +1 510 407-1843 -roomNumber: 8468 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Avinash Kingaby,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avinash Kingaby -sn: Kingaby -description: This is Avinash Kingaby's description -facsimileTelephoneNumber: +1 206 673-7916 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 949-5633 -title: Junior Product Development Assistant -userPassword: Password1 -uid: KingabyA -givenName: Avinash -mail: KingabyA@7f21c59f99c4477b9018498e8a1c114e.bitwarden.com -carLicense: 4QQG0T -departmentNumber: 8659 -employeeType: Normal -homePhone: +1 206 528-2053 -initials: A. K. -mobile: +1 206 668-9151 -pager: +1 206 211-1183 -roomNumber: 8922 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Crysta Sloan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crysta Sloan -sn: Sloan -description: This is Crysta Sloan's description -facsimileTelephoneNumber: +1 818 362-3405 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 818 194-9805 -title: Associate Peons Stooge -userPassword: Password1 -uid: SloanC -givenName: Crysta -mail: SloanC@97b3948d7aca41509a9b5d6b2dac6af7.bitwarden.com -carLicense: 7QYW8H -departmentNumber: 8874 -employeeType: Contract -homePhone: +1 818 309-4825 -initials: C. S. -mobile: +1 818 714-8032 -pager: +1 818 337-6391 -roomNumber: 9886 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Buck Auerbach,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Buck Auerbach -sn: Auerbach -description: This is Buck Auerbach's description -facsimileTelephoneNumber: +1 510 755-8505 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 532-3968 -title: Supreme Product Development Developer -userPassword: Password1 -uid: AuerbacB -givenName: Buck -mail: AuerbacB@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com -carLicense: SJK5E6 -departmentNumber: 6186 -employeeType: Contract -homePhone: +1 510 287-1777 -initials: B. A. -mobile: +1 510 568-6003 -pager: +1 510 407-3396 -roomNumber: 8917 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fallon Windom,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fallon Windom -sn: Windom -description: This is Fallon Windom's description -facsimileTelephoneNumber: +1 415 951-1903 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 415 196-5802 -title: Supreme Payroll Grunt -userPassword: Password1 -uid: WindomF -givenName: Fallon -mail: WindomF@fa8dd30a7166419e97723182660d3ed8.bitwarden.com -carLicense: JSOFU7 -departmentNumber: 2010 -employeeType: Normal -homePhone: +1 415 806-7461 -initials: F. W. -mobile: +1 415 121-9241 -pager: +1 415 449-2584 -roomNumber: 8916 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernadine Galluzzi -sn: Galluzzi -description: This is Bernadine Galluzzi's description -facsimileTelephoneNumber: +1 408 899-4774 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 508-5330 -title: Associate Administrative Czar -userPassword: Password1 -uid: GalluzzB -givenName: Bernadine -mail: GalluzzB@29091675735e43659fad673363e0d6e8.bitwarden.com -carLicense: VI9ESY -departmentNumber: 7310 -employeeType: Contract -homePhone: +1 408 337-3192 -initials: B. G. -mobile: +1 408 168-3816 -pager: +1 408 105-8031 -roomNumber: 9500 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sapphira Lacroix -sn: Lacroix -description: This is Sapphira Lacroix's description -facsimileTelephoneNumber: +1 408 160-2212 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 408 481-9050 -title: Chief Administrative Technician -userPassword: Password1 -uid: LacroixS -givenName: Sapphira -mail: LacroixS@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com -carLicense: 5K35I2 -departmentNumber: 4009 -employeeType: Normal -homePhone: +1 408 609-7732 -initials: S. L. -mobile: +1 408 724-1711 -pager: +1 408 516-1939 -roomNumber: 9378 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Samir Wesenberg,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Samir Wesenberg -sn: Wesenberg -description: This is Samir Wesenberg's description -facsimileTelephoneNumber: +1 415 683-2056 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 765-5998 -title: Chief Administrative Evangelist -userPassword: Password1 -uid: WesenbeS -givenName: Samir -mail: WesenbeS@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com -carLicense: Q66RKT -departmentNumber: 3307 -employeeType: Normal -homePhone: +1 415 900-2213 -initials: S. W. -mobile: +1 415 779-5959 -pager: +1 415 101-4957 -roomNumber: 8951 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hildegaard Valko,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hildegaard Valko -sn: Valko -description: This is Hildegaard Valko's description -facsimileTelephoneNumber: +1 804 945-5282 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 187-2578 -title: Junior Management Sales Rep -userPassword: Password1 -uid: ValkoH -givenName: Hildegaard -mail: ValkoH@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com -carLicense: BGVH5V -departmentNumber: 6210 -employeeType: Employee -homePhone: +1 804 706-3314 -initials: H. V. -mobile: +1 804 237-3515 -pager: +1 804 767-8006 -roomNumber: 8618 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Azmina Irvine,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Azmina Irvine -sn: Irvine -description: This is Azmina Irvine's description -facsimileTelephoneNumber: +1 213 800-8707 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 803-9595 -title: Associate Peons Manager -userPassword: Password1 -uid: IrvineA -givenName: Azmina -mail: IrvineA@68fc69596c6045e19e9dcc172277d770.bitwarden.com -carLicense: OYU3JB -departmentNumber: 3915 -employeeType: Contract -homePhone: +1 213 522-5251 -initials: A. I. -mobile: +1 213 300-6621 -pager: +1 213 348-3808 -roomNumber: 9174 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cortland Kwa,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cortland Kwa -sn: Kwa -description: This is Cortland Kwa's description -facsimileTelephoneNumber: +1 510 294-5584 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 115-3084 -title: Supreme Administrative Punk -userPassword: Password1 -uid: KwaC -givenName: Cortland -mail: KwaC@08761145d0ee492388590ebc755ffc11.bitwarden.com -carLicense: YPYQF3 -departmentNumber: 6815 -employeeType: Normal -homePhone: +1 510 871-8885 -initials: C. K. -mobile: +1 510 611-7857 -pager: +1 510 714-4341 -roomNumber: 8232 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Franz Artspssa,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franz Artspssa -sn: Artspssa -description: This is Franz Artspssa's description -facsimileTelephoneNumber: +1 818 274-7974 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 866-2843 -title: Chief Administrative Warrior -userPassword: Password1 -uid: ArtspssF -givenName: Franz -mail: ArtspssF@c47a29535a2d448ab99d5532c1ef090b.bitwarden.com -carLicense: OKO7LD -departmentNumber: 2656 -employeeType: Employee -homePhone: +1 818 451-9971 -initials: F. A. -mobile: +1 818 426-8366 -pager: +1 818 621-1996 -roomNumber: 9611 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annelise KingsleyEvans -sn: KingsleyEvans -description: This is Annelise KingsleyEvans's description -facsimileTelephoneNumber: +1 510 881-6428 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 920-5384 -title: Master Janitorial Dictator -userPassword: Password1 -uid: KingsleA -givenName: Annelise -mail: KingsleA@e510453d1c104238a1217f13ba1acf7e.bitwarden.com -carLicense: CY0IEK -departmentNumber: 6686 -employeeType: Employee -homePhone: +1 510 993-6171 -initials: A. K. -mobile: +1 510 231-2650 -pager: +1 510 879-5206 -roomNumber: 9903 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marrissa Ronan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marrissa Ronan -sn: Ronan -description: This is Marrissa Ronan's description -facsimileTelephoneNumber: +1 408 798-8559 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 213-7305 -title: Master Peons Consultant -userPassword: Password1 -uid: RonanM -givenName: Marrissa -mail: RonanM@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com -carLicense: 39A1IW -departmentNumber: 8945 -employeeType: Employee -homePhone: +1 408 336-1106 -initials: M. R. -mobile: +1 408 907-9515 -pager: +1 408 938-5501 -roomNumber: 9637 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Stanislas Sehgal,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stanislas Sehgal -sn: Sehgal -description: This is Stanislas Sehgal's description -facsimileTelephoneNumber: +1 415 470-8337 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 924-8346 -title: Supreme Management Warrior -userPassword: Password1 -uid: SehgalS -givenName: Stanislas -mail: SehgalS@b165e0007c404dd983e15ae72daa2756.bitwarden.com -carLicense: Y2G6XO -departmentNumber: 7576 -employeeType: Contract -homePhone: +1 415 222-9853 -initials: S. S. -mobile: +1 415 317-4043 -pager: +1 415 431-3289 -roomNumber: 8110 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Woody Morocz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Woody Morocz -sn: Morocz -description: This is Woody Morocz's description -facsimileTelephoneNumber: +1 415 318-3505 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 779-1764 -title: Associate Payroll Architect -userPassword: Password1 -uid: MoroczW -givenName: Woody -mail: MoroczW@753c6429447d4f10a50d93378fa5dbb6.bitwarden.com -carLicense: R69LU6 -departmentNumber: 5854 -employeeType: Normal -homePhone: +1 415 821-1539 -initials: W. M. -mobile: +1 415 765-7978 -pager: +1 415 893-7323 -roomNumber: 8462 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karla Proffit,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karla Proffit -sn: Proffit -description: This is Karla Proffit's description -facsimileTelephoneNumber: +1 415 101-4264 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 659-9779 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: ProffitK -givenName: Karla -mail: ProffitK@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com -carLicense: AAYGQB -departmentNumber: 9899 -employeeType: Normal -homePhone: +1 415 609-4872 -initials: K. P. -mobile: +1 415 296-8997 -pager: +1 415 146-4937 -roomNumber: 8961 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynwood Nigam -sn: Nigam -description: This is Lynwood Nigam's description -facsimileTelephoneNumber: +1 408 654-7577 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 536-3277 -title: Associate Human Resources Assistant -userPassword: Password1 -uid: NigamL -givenName: Lynwood -mail: NigamL@714f1bf2d24848f0ad123708496baebc.bitwarden.com -carLicense: UMC8KG -departmentNumber: 1368 -employeeType: Employee -homePhone: +1 408 470-8749 -initials: L. N. -mobile: +1 408 536-6741 -pager: +1 408 522-7938 -roomNumber: 9273 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Julianna Varughese,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julianna Varughese -sn: Varughese -description: This is Julianna Varughese's description -facsimileTelephoneNumber: +1 804 424-4592 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 562-2379 -title: Master Management Fellow -userPassword: Password1 -uid: VarugheJ -givenName: Julianna -mail: VarugheJ@2ad53b2716404c5fb1c859b311309552.bitwarden.com -carLicense: LKY54W -departmentNumber: 3593 -employeeType: Normal -homePhone: +1 804 736-7904 -initials: J. V. -mobile: +1 804 359-3427 -pager: +1 804 907-6133 -roomNumber: 9245 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elset Neustifter,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elset Neustifter -sn: Neustifter -description: This is Elset Neustifter's description -facsimileTelephoneNumber: +1 510 884-6357 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 433-5231 -title: Chief Peons Mascot -userPassword: Password1 -uid: NeustifE -givenName: Elset -mail: NeustifE@c3ac4e6d63bf42469f2e271613915683.bitwarden.com -carLicense: VVVUWU -departmentNumber: 8700 -employeeType: Normal -homePhone: +1 510 234-8474 -initials: E. N. -mobile: +1 510 654-5412 -pager: +1 510 952-5097 -roomNumber: 8985 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Grete Daymond,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grete Daymond -sn: Daymond -description: This is Grete Daymond's description -facsimileTelephoneNumber: +1 415 351-9466 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 679-7004 -title: Master Peons Evangelist -userPassword: Password1 -uid: DaymondG -givenName: Grete -mail: DaymondG@e1917d4b55f54cdabe70551a3f731376.bitwarden.com -carLicense: ODVBCQ -departmentNumber: 6619 -employeeType: Normal -homePhone: +1 415 793-3159 -initials: G. D. -mobile: +1 415 117-5773 -pager: +1 415 848-5524 -roomNumber: 8073 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Thekla Wokoma,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thekla Wokoma -sn: Wokoma -description: This is Thekla Wokoma's description -facsimileTelephoneNumber: +1 206 789-2529 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 206 839-1785 -title: Supreme Management Director -userPassword: Password1 -uid: WokomaT -givenName: Thekla -mail: WokomaT@9e5927de12b74c838a654764d2be5fec.bitwarden.com -carLicense: WGYN8A -departmentNumber: 5668 -employeeType: Contract -homePhone: +1 206 525-6049 -initials: T. W. -mobile: +1 206 551-4053 -pager: +1 206 128-9026 -roomNumber: 9314 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sika Koller,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sika Koller -sn: Koller -description: This is Sika Koller's description -facsimileTelephoneNumber: +1 408 260-3880 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 561-4274 -title: Master Payroll Czar -userPassword: Password1 -uid: KollerS -givenName: Sika -mail: KollerS@ae0c95aead594ff9b592cce5fd7bcc50.bitwarden.com -carLicense: CXBAPH -departmentNumber: 9227 -employeeType: Contract -homePhone: +1 408 705-9260 -initials: S. K. -mobile: +1 408 564-3541 -pager: +1 408 874-9023 -roomNumber: 9770 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sukey Strauss,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sukey Strauss -sn: Strauss -description: This is Sukey Strauss's description -facsimileTelephoneNumber: +1 818 922-5084 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 914-1844 -title: Chief Administrative Developer -userPassword: Password1 -uid: StraussS -givenName: Sukey -mail: StraussS@5bc61e2f4a114bf3bbb2a4d0973b7fa5.bitwarden.com -carLicense: ORY29U -departmentNumber: 9030 -employeeType: Normal -homePhone: +1 818 342-8816 -initials: S. S. -mobile: +1 818 196-5290 -pager: +1 818 726-2053 -roomNumber: 8808 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Icy Foeppel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Icy Foeppel -sn: Foeppel -description: This is Icy Foeppel's description -facsimileTelephoneNumber: +1 213 618-9093 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 363-4924 -title: Chief Product Development Vice President -userPassword: Password1 -uid: FoeppelI -givenName: Icy -mail: FoeppelI@cbaf8ba54a4e4d25a6793e6fa4afc667.bitwarden.com -carLicense: O6NSRD -departmentNumber: 5889 -employeeType: Normal -homePhone: +1 213 128-1496 -initials: I. F. -mobile: +1 213 794-6155 -pager: +1 213 921-8190 -roomNumber: 8753 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yongli Barrows,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yongli Barrows -sn: Barrows -description: This is Yongli Barrows's description -facsimileTelephoneNumber: +1 408 310-7046 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 219-3200 -title: Junior Peons Engineer -userPassword: Password1 -uid: BarrowsY -givenName: Yongli -mail: BarrowsY@4790190082cb4f5abacc6cccbd58144a.bitwarden.com -carLicense: 40UNY5 -departmentNumber: 9059 -employeeType: Normal -homePhone: +1 408 514-1300 -initials: Y. B. -mobile: +1 408 288-6925 -pager: +1 408 901-9917 -roomNumber: 8724 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Xaviera Broca,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xaviera Broca -sn: Broca -description: This is Xaviera Broca's description -facsimileTelephoneNumber: +1 510 672-3176 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 135-9342 -title: Master Product Development Sales Rep -userPassword: Password1 -uid: BrocaX -givenName: Xaviera -mail: BrocaX@a0c1a8d85b65449b85c62e8e6a7af57f.bitwarden.com -carLicense: EKI896 -departmentNumber: 5155 -employeeType: Contract -homePhone: +1 510 592-6915 -initials: X. B. -mobile: +1 510 888-3588 -pager: +1 510 367-3834 -roomNumber: 9442 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Scptest Aucoin -sn: Aucoin -description: This is Scptest Aucoin's description -facsimileTelephoneNumber: +1 818 216-9810 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 702-5813 -title: Master Product Testing President -userPassword: Password1 -uid: AucoinS -givenName: Scptest -mail: AucoinS@0370bf4c8f0643cdbb05f71db44e6eda.bitwarden.com -carLicense: UQKSO6 -departmentNumber: 7442 -employeeType: Contract -homePhone: +1 818 802-2720 -initials: S. A. -mobile: +1 818 737-5697 -pager: +1 818 106-3410 -roomNumber: 8263 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lanie Lowrie -sn: Lowrie -description: This is Lanie Lowrie's description -facsimileTelephoneNumber: +1 408 100-1066 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 397-3716 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: LowrieL -givenName: Lanie -mail: LowrieL@c754a8f7d7fa49ebaf2160183ff968df.bitwarden.com -carLicense: JV2Y1U -departmentNumber: 7297 -employeeType: Employee -homePhone: +1 408 707-6914 -initials: L. L. -mobile: +1 408 848-6166 -pager: +1 408 491-1300 -roomNumber: 8266 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Junette Foos,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Junette Foos -sn: Foos -description: This is Junette Foos's description -facsimileTelephoneNumber: +1 415 472-5665 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 402-1886 -title: Junior Product Development Grunt -userPassword: Password1 -uid: FoosJ -givenName: Junette -mail: FoosJ@541638be8f3848afaf3f77f1a6d8871f.bitwarden.com -carLicense: BJ6H9P -departmentNumber: 9072 -employeeType: Normal -homePhone: +1 415 719-5353 -initials: J. F. -mobile: +1 415 414-5588 -pager: +1 415 663-4231 -roomNumber: 9620 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ashraf Denter,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashraf Denter -sn: Denter -description: This is Ashraf Denter's description -facsimileTelephoneNumber: +1 804 531-8186 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 193-9878 -title: Supreme Product Testing Punk -userPassword: Password1 -uid: DenterA -givenName: Ashraf -mail: DenterA@1f6908f83168487381e06e15278e01a3.bitwarden.com -carLicense: IJNMAE -departmentNumber: 3291 -employeeType: Contract -homePhone: +1 804 997-4267 -initials: A. D. -mobile: +1 804 283-4299 -pager: +1 804 795-2631 -roomNumber: 8559 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Amelina Marceau,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amelina Marceau -sn: Marceau -description: This is Amelina Marceau's description -facsimileTelephoneNumber: +1 206 410-3940 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 462-9038 -title: Supreme Management Madonna -userPassword: Password1 -uid: MarceauA -givenName: Amelina -mail: MarceauA@cfc30ea4a75d4490969ab077dd8e92a6.bitwarden.com -carLicense: BQ4HR5 -departmentNumber: 3233 -employeeType: Contract -homePhone: +1 206 448-5292 -initials: A. M. -mobile: +1 206 631-2796 -pager: +1 206 959-2069 -roomNumber: 8745 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dnsproj Hargreaves -sn: Hargreaves -description: This is Dnsproj Hargreaves's description -facsimileTelephoneNumber: +1 804 337-4840 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 644-5052 -title: Supreme Product Development Manager -userPassword: Password1 -uid: HargreaD -givenName: Dnsproj -mail: HargreaD@96d9bfed88fc4c2fb6c7e654ef7ed3a4.bitwarden.com -carLicense: 6NAPIW -departmentNumber: 5818 -employeeType: Normal -homePhone: +1 804 672-4430 -initials: D. H. -mobile: +1 804 326-6755 -pager: +1 804 210-9802 -roomNumber: 9666 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yuen Huppert,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yuen Huppert -sn: Huppert -description: This is Yuen Huppert's description -facsimileTelephoneNumber: +1 213 268-5500 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 876-9186 -title: Associate Product Development Janitor -userPassword: Password1 -uid: HuppertY -givenName: Yuen -mail: HuppertY@4cf289446e164bf8828133d117ff1a2f.bitwarden.com -carLicense: PN5FKS -departmentNumber: 7265 -employeeType: Employee -homePhone: +1 213 304-7696 -initials: Y. H. -mobile: +1 213 695-9176 -pager: +1 213 929-6181 -roomNumber: 9428 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vijai Bergeron,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vijai Bergeron -sn: Bergeron -description: This is Vijai Bergeron's description -facsimileTelephoneNumber: +1 213 370-4947 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 175-8506 -title: Supreme Administrative Director -userPassword: Password1 -uid: BergeroV -givenName: Vijai -mail: BergeroV@5781c2590a3143098713fe135c23c693.bitwarden.com -carLicense: OU45R3 -departmentNumber: 1825 -employeeType: Normal -homePhone: +1 213 248-7331 -initials: V. B. -mobile: +1 213 174-8506 -pager: +1 213 786-4565 -roomNumber: 8677 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imtaz Saltamartini -sn: Saltamartini -description: This is Imtaz Saltamartini's description -facsimileTelephoneNumber: +1 213 300-8229 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 745-8150 -title: Junior Human Resources Technician -userPassword: Password1 -uid: SaltamaI -givenName: Imtaz -mail: SaltamaI@a47f14ec57a442c6be46361f07eafc1b.bitwarden.com -carLicense: 42U6VY -departmentNumber: 8403 -employeeType: Employee -homePhone: +1 213 986-9418 -initials: I. S. -mobile: +1 213 239-8446 -pager: +1 213 982-5319 -roomNumber: 9239 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaukat Simzer -sn: Simzer -description: This is Shaukat Simzer's description -facsimileTelephoneNumber: +1 408 356-7244 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 361-4507 -title: Master Product Testing Manager -userPassword: Password1 -uid: SimzerS -givenName: Shaukat -mail: SimzerS@0d49ff7674854a67967e989b8902a24c.bitwarden.com -carLicense: WNS0SH -departmentNumber: 4747 -employeeType: Employee -homePhone: +1 408 128-4626 -initials: S. S. -mobile: +1 408 366-5937 -pager: +1 408 621-1957 -roomNumber: 8889 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Diane Andersen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diane Andersen -sn: Andersen -description: This is Diane Andersen's description -facsimileTelephoneNumber: +1 415 662-7858 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 201-2828 -title: Associate Management Punk -userPassword: Password1 -uid: AnderseD -givenName: Diane -mail: AnderseD@fde818a61bf74c84a96e4a6b3a93254c.bitwarden.com -carLicense: 1KW9AV -departmentNumber: 9376 -employeeType: Normal -homePhone: +1 415 773-7294 -initials: D. A. -mobile: +1 415 488-6858 -pager: +1 415 115-4071 -roomNumber: 9014 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jester Mannion,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jester Mannion -sn: Mannion -description: This is Jester Mannion's description -facsimileTelephoneNumber: +1 408 635-7930 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 408 298-6431 -title: Junior Product Testing Pinhead -userPassword: Password1 -uid: MannionJ -givenName: Jester -mail: MannionJ@b6e18f81bdff48d2be264df85bc74095.bitwarden.com -carLicense: AWK9DU -departmentNumber: 9932 -employeeType: Employee -homePhone: +1 408 148-1788 -initials: J. M. -mobile: +1 408 818-1210 -pager: +1 408 687-5161 -roomNumber: 9012 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Christy Townsel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christy Townsel -sn: Townsel -description: This is Christy Townsel's description -facsimileTelephoneNumber: +1 213 225-6967 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 251-1694 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: TownselC -givenName: Christy -mail: TownselC@8227646c55034cf9b21757fce681b53f.bitwarden.com -carLicense: LXE80L -departmentNumber: 7840 -employeeType: Employee -homePhone: +1 213 822-5673 -initials: C. T. -mobile: +1 213 571-2950 -pager: +1 213 178-4571 -roomNumber: 9626 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernardine Sandell -sn: Sandell -description: This is Bernardine Sandell's description -facsimileTelephoneNumber: +1 510 262-1041 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 532-7473 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: SandellB -givenName: Bernardine -mail: SandellB@3e500286762446ec8a3697b2944efa12.bitwarden.com -carLicense: S3INB8 -departmentNumber: 5762 -employeeType: Employee -homePhone: +1 510 847-9249 -initials: B. S. -mobile: +1 510 136-7439 -pager: +1 510 986-6545 -roomNumber: 9731 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Raine Assistance,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raine Assistance -sn: Assistance -description: This is Raine Assistance's description -facsimileTelephoneNumber: +1 804 969-9671 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 154-5840 -title: Junior Payroll Czar -userPassword: Password1 -uid: AssistaR -givenName: Raine -mail: AssistaR@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com -carLicense: 4FVKL2 -departmentNumber: 4093 -employeeType: Contract -homePhone: +1 804 501-2696 -initials: R. A. -mobile: +1 804 867-4543 -pager: +1 804 661-1308 -roomNumber: 8197 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giampaolo Hoang -sn: Hoang -description: This is Giampaolo Hoang's description -facsimileTelephoneNumber: +1 408 637-9015 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 210-2970 -title: Junior Product Testing Consultant -userPassword: Password1 -uid: HoangG -givenName: Giampaolo -mail: HoangG@e02ff45a3d1d4535aaac64a1cea6a68b.bitwarden.com -carLicense: 88DHSS -departmentNumber: 9870 -employeeType: Contract -homePhone: +1 408 782-3979 -initials: G. H. -mobile: +1 408 276-8242 -pager: +1 408 428-8557 -roomNumber: 9838 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ireland Ciochon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ireland Ciochon -sn: Ciochon -description: This is Ireland Ciochon's description -facsimileTelephoneNumber: +1 408 532-9079 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 482-3682 -title: Junior Administrative Mascot -userPassword: Password1 -uid: CiochonI -givenName: Ireland -mail: CiochonI@e6477a83acf9482988792cb439447756.bitwarden.com -carLicense: 4P8Q75 -departmentNumber: 9729 -employeeType: Normal -homePhone: +1 408 204-8712 -initials: I. C. -mobile: +1 408 458-5827 -pager: +1 408 732-9549 -roomNumber: 9060 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=WaiMan Binner,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WaiMan Binner -sn: Binner -description: This is WaiMan Binner's description -facsimileTelephoneNumber: +1 510 757-3264 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 747-5138 -title: Junior Payroll Technician -userPassword: Password1 -uid: BinnerW -givenName: WaiMan -mail: BinnerW@8cc6e0388936480cbe8d5339b6e6f58a.bitwarden.com -carLicense: 6FHS2I -departmentNumber: 7543 -employeeType: Contract -homePhone: +1 510 258-6719 -initials: W. B. -mobile: +1 510 942-7045 -pager: +1 510 896-3986 -roomNumber: 8251 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ruperta Jodoin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruperta Jodoin -sn: Jodoin -description: This is Ruperta Jodoin's description -facsimileTelephoneNumber: +1 415 865-1622 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 336-4143 -title: Associate Peons Visionary -userPassword: Password1 -uid: JodoinR -givenName: Ruperta -mail: JodoinR@d3284c9107174588867290b3601e936f.bitwarden.com -carLicense: OIGYN6 -departmentNumber: 8487 -employeeType: Employee -homePhone: +1 415 436-8210 -initials: R. J. -mobile: +1 415 643-7402 -pager: +1 415 886-9382 -roomNumber: 9600 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Narrima Tu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Narrima Tu -sn: Tu -description: This is Narrima Tu's description -facsimileTelephoneNumber: +1 213 262-6978 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 344-8253 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: TuN -givenName: Narrima -mail: TuN@42514b410f5644f5ba762f40cca2f3cc.bitwarden.com -carLicense: 06KMVA -departmentNumber: 5281 -employeeType: Contract -homePhone: +1 213 588-4846 -initials: N. T. -mobile: +1 213 577-1782 -pager: +1 213 416-6098 -roomNumber: 9381 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eolanda Archibald -sn: Archibald -description: This is Eolanda Archibald's description -facsimileTelephoneNumber: +1 818 622-4842 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 391-9209 -title: Chief Human Resources Grunt -userPassword: Password1 -uid: ArchibaE -givenName: Eolanda -mail: ArchibaE@753deba7c8fd4a2dae8fd98ba21902e7.bitwarden.com -carLicense: PUFACO -departmentNumber: 8597 -employeeType: Contract -homePhone: +1 818 967-9167 -initials: E. A. -mobile: +1 818 309-6455 -pager: +1 818 151-6502 -roomNumber: 8657 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wallie Pietropaolo -sn: Pietropaolo -description: This is Wallie Pietropaolo's description -facsimileTelephoneNumber: +1 408 691-6031 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 408 578-4310 -title: Supreme Product Testing Manager -userPassword: Password1 -uid: PietropW -givenName: Wallie -mail: PietropW@9a406ba2121745648c9bbba5e667d06f.bitwarden.com -carLicense: 7PK4OI -departmentNumber: 2331 -employeeType: Normal -homePhone: +1 408 189-7636 -initials: W. P. -mobile: +1 408 574-1889 -pager: +1 408 858-4695 -roomNumber: 8330 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorianna DeVries -sn: DeVries -description: This is Lorianna DeVries's description -facsimileTelephoneNumber: +1 818 728-2304 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 522-1573 -title: Chief Human Resources Pinhead -userPassword: Password1 -uid: DeVriesL -givenName: Lorianna -mail: DeVriesL@621ecc47be084539a10e5521c8efa92f.bitwarden.com -carLicense: FCPRLT -departmentNumber: 6757 -employeeType: Normal -homePhone: +1 818 964-7966 -initials: L. D. -mobile: +1 818 744-7938 -pager: +1 818 893-2498 -roomNumber: 9357 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elonore Spieker,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elonore Spieker -sn: Spieker -description: This is Elonore Spieker's description -facsimileTelephoneNumber: +1 415 483-4866 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 284-8900 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: SpiekerE -givenName: Elonore -mail: SpiekerE@4eb1edea9f7c46b6afcdd3596ca826d8.bitwarden.com -carLicense: QWCXWS -departmentNumber: 7915 -employeeType: Employee -homePhone: +1 415 376-3483 -initials: E. S. -mobile: +1 415 888-8323 -pager: +1 415 733-9320 -roomNumber: 9572 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pick Santella,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pick Santella -sn: Santella -description: This is Pick Santella's description -facsimileTelephoneNumber: +1 415 323-7177 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 385-4207 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: SantellP -givenName: Pick -mail: SantellP@769e30d0f6604e35b8172b0e1fcd3695.bitwarden.com -carLicense: W0GGCI -departmentNumber: 3800 -employeeType: Normal -homePhone: +1 415 598-1656 -initials: P. S. -mobile: +1 415 700-1033 -pager: +1 415 347-7569 -roomNumber: 9301 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lynea Newcomb,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynea Newcomb -sn: Newcomb -description: This is Lynea Newcomb's description -facsimileTelephoneNumber: +1 804 760-8481 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 463-6577 -title: Supreme Product Development Sales Rep -userPassword: Password1 -uid: NewcombL -givenName: Lynea -mail: NewcombL@ca8ef169aecd439b84062b84d007e951.bitwarden.com -carLicense: AVTSQI -departmentNumber: 8765 -employeeType: Contract -homePhone: +1 804 204-6467 -initials: L. N. -mobile: +1 804 824-6461 -pager: +1 804 431-2098 -roomNumber: 8517 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yukinaga Brander,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yukinaga Brander -sn: Brander -description: This is Yukinaga Brander's description -facsimileTelephoneNumber: +1 510 981-9211 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 434-4905 -title: Master Peons Sales Rep -userPassword: Password1 -uid: BranderY -givenName: Yukinaga -mail: BranderY@b400fcdf725047b698292665de84946c.bitwarden.com -carLicense: AU5CPS -departmentNumber: 8289 -employeeType: Contract -homePhone: +1 510 310-8038 -initials: Y. B. -mobile: +1 510 249-7377 -pager: +1 510 437-5345 -roomNumber: 9527 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jerrylee Galloway,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jerrylee Galloway -sn: Galloway -description: This is Jerrylee Galloway's description -facsimileTelephoneNumber: +1 818 817-9199 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 563-5856 -title: Associate Peons Technician -userPassword: Password1 -uid: GallowaJ -givenName: Jerrylee -mail: GallowaJ@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com -carLicense: YFRSK9 -departmentNumber: 1081 -employeeType: Contract -homePhone: +1 818 697-6798 -initials: J. G. -mobile: +1 818 362-9753 -pager: +1 818 169-2463 -roomNumber: 9700 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mia Amarsi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mia Amarsi -sn: Amarsi -description: This is Mia Amarsi's description -facsimileTelephoneNumber: +1 213 327-3401 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 754-3677 -title: Supreme Peons Admin -userPassword: Password1 -uid: AmarsiM -givenName: Mia -mail: AmarsiM@b1b5d1efd1034316a83f5b2451301ba7.bitwarden.com -carLicense: DWTAM7 -departmentNumber: 6301 -employeeType: Employee -homePhone: +1 213 276-1739 -initials: M. A. -mobile: +1 213 270-4542 -pager: +1 213 514-1034 -roomNumber: 9281 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Joyous Smecca,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joyous Smecca -sn: Smecca -description: This is Joyous Smecca's description -facsimileTelephoneNumber: +1 213 965-5462 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 620-6010 -title: Master Management Madonna -userPassword: Password1 -uid: SmeccaJ -givenName: Joyous -mail: SmeccaJ@0a781c09ef6744b2865e8b65aa244d80.bitwarden.com -carLicense: UMQ650 -departmentNumber: 4841 -employeeType: Contract -homePhone: +1 213 941-2129 -initials: J. S. -mobile: +1 213 959-9579 -pager: +1 213 600-7298 -roomNumber: 8231 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Larkin Baughan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Larkin Baughan -sn: Baughan -description: This is Larkin Baughan's description -facsimileTelephoneNumber: +1 206 992-4213 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 976-1992 -title: Master Human Resources Fellow -userPassword: Password1 -uid: BaughanL -givenName: Larkin -mail: BaughanL@cfc4bf2e36b5400ca6e0b6d8bcad286e.bitwarden.com -carLicense: EUDO78 -departmentNumber: 4203 -employeeType: Employee -homePhone: +1 206 274-1592 -initials: L. B. -mobile: +1 206 914-4235 -pager: +1 206 475-9492 -roomNumber: 9077 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquelyn Casten -sn: Casten -description: This is Jacquelyn Casten's description -facsimileTelephoneNumber: +1 408 713-7968 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 408 532-9142 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: CastenJ -givenName: Jacquelyn -mail: CastenJ@39b12e29c92b4f519f2ec6d311b9ff35.bitwarden.com -carLicense: YGDMW4 -departmentNumber: 2028 -employeeType: Normal -homePhone: +1 408 872-1282 -initials: J. C. -mobile: +1 408 681-2123 -pager: +1 408 568-7183 -roomNumber: 9684 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lillis Tyler,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lillis Tyler -sn: Tyler -description: This is Lillis Tyler's description -facsimileTelephoneNumber: +1 818 605-9909 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 386-7466 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: TylerL -givenName: Lillis -mail: TylerL@70d36f0b334a42e2bb084b23945923e0.bitwarden.com -carLicense: CJUM9S -departmentNumber: 7307 -employeeType: Employee -homePhone: +1 818 439-8198 -initials: L. T. -mobile: +1 818 437-5910 -pager: +1 818 614-5880 -roomNumber: 9271 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rosy Stctest,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosy Stctest -sn: Stctest -description: This is Rosy Stctest's description -facsimileTelephoneNumber: +1 206 881-3447 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 906-3099 -title: Master Human Resources Warrior -userPassword: Password1 -uid: StctestR -givenName: Rosy -mail: StctestR@fcbf2ef1cdb340fcb4c052a580a37b96.bitwarden.com -carLicense: SBE8NK -departmentNumber: 7814 -employeeType: Normal -homePhone: +1 206 307-8856 -initials: R. S. -mobile: +1 206 447-8785 -pager: +1 206 916-3377 -roomNumber: 9932 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Costas Zanetti,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Costas Zanetti -sn: Zanetti -description: This is Costas Zanetti's description -facsimileTelephoneNumber: +1 510 821-9091 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 510 953-7208 -title: Chief Administrative Dictator -userPassword: Password1 -uid: ZanettiC -givenName: Costas -mail: ZanettiC@b1f81108ccde47b8a2df0aba6ea7b365.bitwarden.com -carLicense: Y599W1 -departmentNumber: 4560 -employeeType: Employee -homePhone: +1 510 183-7205 -initials: C. Z. -mobile: +1 510 823-3938 -pager: +1 510 717-5922 -roomNumber: 9527 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Technical Carpentier,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Technical Carpentier -sn: Carpentier -description: This is Technical Carpentier's description -facsimileTelephoneNumber: +1 408 221-7176 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 623-5375 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: CarpentT -givenName: Technical -mail: CarpentT@b7e1a16b9cde4b3eaeea7ec65d5e0355.bitwarden.com -carLicense: 4LVJ4J -departmentNumber: 3048 -employeeType: Contract -homePhone: +1 408 153-3597 -initials: T. C. -mobile: +1 408 681-1356 -pager: +1 408 260-5207 -roomNumber: 8808 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lanie Geesman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lanie Geesman -sn: Geesman -description: This is Lanie Geesman's description -facsimileTelephoneNumber: +1 206 663-5219 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 809-6205 -title: Associate Human Resources Grunt -userPassword: Password1 -uid: GeesmanL -givenName: Lanie -mail: GeesmanL@4b02224ed79d49068514723b7495859b.bitwarden.com -carLicense: WUXITC -departmentNumber: 7699 -employeeType: Employee -homePhone: +1 206 206-8556 -initials: L. G. -mobile: +1 206 234-3906 -pager: +1 206 103-3737 -roomNumber: 9628 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eydie Sliter,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eydie Sliter -sn: Sliter -description: This is Eydie Sliter's description -facsimileTelephoneNumber: +1 818 594-2730 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 406-9327 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: SliterE -givenName: Eydie -mail: SliterE@c14faf1ad0834d6d9e4b1880a48b9d9e.bitwarden.com -carLicense: QUORLQ -departmentNumber: 4514 -employeeType: Normal -homePhone: +1 818 982-4911 -initials: E. S. -mobile: +1 818 547-6912 -pager: +1 818 363-2371 -roomNumber: 9265 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Trista Farag,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trista Farag -sn: Farag -description: This is Trista Farag's description -facsimileTelephoneNumber: +1 804 795-2624 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 642-9241 -title: Associate Product Development Stooge -userPassword: Password1 -uid: FaragT -givenName: Trista -mail: FaragT@6553f6f625ef4decb458591c6b034f5c.bitwarden.com -carLicense: OKJ960 -departmentNumber: 1089 -employeeType: Normal -homePhone: +1 804 779-7488 -initials: T. F. -mobile: +1 804 461-8470 -pager: +1 804 923-1330 -roomNumber: 8167 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Chery Greaver,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chery Greaver -sn: Greaver -description: This is Chery Greaver's description -facsimileTelephoneNumber: +1 206 186-7325 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 397-9011 -title: Associate Product Testing Evangelist -userPassword: Password1 -uid: GreaverC -givenName: Chery -mail: GreaverC@76c73cbc758e46b8951ff1931d80f8ca.bitwarden.com -carLicense: VMLNHH -departmentNumber: 1496 -employeeType: Contract -homePhone: +1 206 445-3267 -initials: C. G. -mobile: +1 206 979-8826 -pager: +1 206 158-1825 -roomNumber: 8232 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maidisn Dovydaitis -sn: Dovydaitis -description: This is Maidisn Dovydaitis's description -facsimileTelephoneNumber: +1 804 691-8048 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 826-5029 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: DovydaiM -givenName: Maidisn -mail: DovydaiM@7146b0dabf794daa8f39018535047aad.bitwarden.com -carLicense: E9OIB1 -departmentNumber: 8461 -employeeType: Employee -homePhone: +1 804 240-2757 -initials: M. D. -mobile: +1 804 633-6765 -pager: +1 804 228-8668 -roomNumber: 9130 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernardine Tanniere -sn: Tanniere -description: This is Bernardine Tanniere's description -facsimileTelephoneNumber: +1 213 505-3970 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 846-3962 -title: Supreme Janitorial Dictator -userPassword: Password1 -uid: TannierB -givenName: Bernardine -mail: TannierB@d54865a52eaf482a9e519ad4811b26bc.bitwarden.com -carLicense: 5KEV62 -departmentNumber: 6010 -employeeType: Normal -homePhone: +1 213 647-2221 -initials: B. T. -mobile: +1 213 553-6670 -pager: +1 213 710-6379 -roomNumber: 9424 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Griselda Breedlove -sn: Breedlove -description: This is Griselda Breedlove's description -facsimileTelephoneNumber: +1 415 670-2413 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 518-5352 -title: Master Human Resources Architect -userPassword: Password1 -uid: BreedloG -givenName: Griselda -mail: BreedloG@5c9b9d5c8575423f84d184975eedd13e.bitwarden.com -carLicense: 7TE4BP -departmentNumber: 7588 -employeeType: Contract -homePhone: +1 415 283-7385 -initials: G. B. -mobile: +1 415 724-9649 -pager: +1 415 165-7836 -roomNumber: 9723 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Katuscha Huor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katuscha Huor -sn: Huor -description: This is Katuscha Huor's description -facsimileTelephoneNumber: +1 408 370-9198 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 493-9191 -title: Junior Management Sales Rep -userPassword: Password1 -uid: HuorK -givenName: Katuscha -mail: HuorK@c47a29535a2d448ab99d5532c1ef090b.bitwarden.com -carLicense: 1PWRNL -departmentNumber: 9450 -employeeType: Employee -homePhone: +1 408 265-2233 -initials: K. H. -mobile: +1 408 222-9503 -pager: +1 408 351-8173 -roomNumber: 8123 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bue Satta,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bue Satta -sn: Satta -description: This is Bue Satta's description -facsimileTelephoneNumber: +1 818 331-2943 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 562-2431 -title: Supreme Administrative Technician -userPassword: Password1 -uid: SattaB -givenName: Bue -mail: SattaB@52c0af83c3aa40458e4bfbccce98b0cc.bitwarden.com -carLicense: XFMYC8 -departmentNumber: 8122 -employeeType: Normal -homePhone: +1 818 315-2778 -initials: B. S. -mobile: +1 818 313-7462 -pager: +1 818 319-5848 -roomNumber: 9472 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SvennErik Gaudet -sn: Gaudet -description: This is SvennErik Gaudet's description -facsimileTelephoneNumber: +1 510 574-8543 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 695-7055 -title: Supreme Product Development Visionary -userPassword: Password1 -uid: GaudetS -givenName: SvennErik -mail: GaudetS@503bf02919104cafa1d31446cc7f0505.bitwarden.com -carLicense: CUGYWO -departmentNumber: 1608 -employeeType: Normal -homePhone: +1 510 793-7699 -initials: S. G. -mobile: +1 510 792-5187 -pager: +1 510 638-2415 -roomNumber: 8046 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Justine Manolios,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Justine Manolios -sn: Manolios -description: This is Justine Manolios's description -facsimileTelephoneNumber: +1 818 211-2381 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 818 812-6448 -title: Associate Administrative Consultant -userPassword: Password1 -uid: ManolioJ -givenName: Justine -mail: ManolioJ@78f3e2c9e6614873ad31be2d1ce53b23.bitwarden.com -carLicense: S10FCI -departmentNumber: 9757 -employeeType: Contract -homePhone: +1 818 485-4772 -initials: J. M. -mobile: +1 818 982-3777 -pager: +1 818 668-5173 -roomNumber: 9717 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Guenna Sullivan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guenna Sullivan -sn: Sullivan -description: This is Guenna Sullivan's description -facsimileTelephoneNumber: +1 408 642-9886 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 339-8289 -title: Junior Peons Writer -userPassword: Password1 -uid: SullivaG -givenName: Guenna -mail: SullivaG@298f1a44ea7f452799d70af39fda7e0d.bitwarden.com -carLicense: MV31NY -departmentNumber: 1276 -employeeType: Employee -homePhone: +1 408 189-3046 -initials: G. S. -mobile: +1 408 394-5374 -pager: +1 408 952-4594 -roomNumber: 9011 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Behnam Cellucci -sn: Cellucci -description: This is Behnam Cellucci's description -facsimileTelephoneNumber: +1 804 994-9174 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 804 938-3156 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: CelluccB -givenName: Behnam -mail: CelluccB@b3f72c79ff9a44a8bc1416079d9b6469.bitwarden.com -carLicense: OW5QNB -departmentNumber: 5742 -employeeType: Contract -homePhone: +1 804 344-4658 -initials: B. C. -mobile: +1 804 917-9586 -pager: +1 804 247-2646 -roomNumber: 9845 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raven Vitaglian -sn: Vitaglian -description: This is Raven Vitaglian's description -facsimileTelephoneNumber: +1 213 941-7474 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 213 740-1227 -title: Chief Product Testing Figurehead -userPassword: Password1 -uid: VitagliR -givenName: Raven -mail: VitagliR@0371c25b461f4ad19b855c4d34af7211.bitwarden.com -carLicense: 3QXRRP -departmentNumber: 7066 -employeeType: Employee -homePhone: +1 213 353-6144 -initials: R. V. -mobile: +1 213 601-3377 -pager: +1 213 242-6062 -roomNumber: 9036 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Deb Sehmbey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deb Sehmbey -sn: Sehmbey -description: This is Deb Sehmbey's description -facsimileTelephoneNumber: +1 213 125-9630 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 698-5864 -title: Junior Management Sales Rep -userPassword: Password1 -uid: SehmbeyD -givenName: Deb -mail: SehmbeyD@ae1c8a23e1dd413a9249a93f83a32cff.bitwarden.com -carLicense: U0CNUI -departmentNumber: 5423 -employeeType: Normal -homePhone: +1 213 905-2155 -initials: D. S. -mobile: +1 213 826-9977 -pager: +1 213 726-3986 -roomNumber: 8112 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gavra Skrobanski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gavra Skrobanski -sn: Skrobanski -description: This is Gavra Skrobanski's description -facsimileTelephoneNumber: +1 408 757-7838 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 937-6079 -title: Chief Peons Artist -userPassword: Password1 -uid: SkrobanG -givenName: Gavra -mail: SkrobanG@708f514c40d3498b80918d7964115131.bitwarden.com -carLicense: JF199B -departmentNumber: 1072 -employeeType: Normal -homePhone: +1 408 245-3260 -initials: G. S. -mobile: +1 408 464-9754 -pager: +1 408 133-7612 -roomNumber: 8686 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gajendra Deibert,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gajendra Deibert -sn: Deibert -description: This is Gajendra Deibert's description -facsimileTelephoneNumber: +1 213 904-9177 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 775-4907 -title: Associate Management Developer -userPassword: Password1 -uid: DeibertG -givenName: Gajendra -mail: DeibertG@103bd05858c64a81aa3e2443bd1b0b6b.bitwarden.com -carLicense: J0LRCX -departmentNumber: 3278 -employeeType: Contract -homePhone: +1 213 451-8323 -initials: G. D. -mobile: +1 213 550-7809 -pager: +1 213 866-7889 -roomNumber: 8732 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yong Nuttall,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yong Nuttall -sn: Nuttall -description: This is Yong Nuttall's description -facsimileTelephoneNumber: +1 206 123-7303 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 306-2966 -title: Supreme Product Development Admin -userPassword: Password1 -uid: NuttallY -givenName: Yong -mail: NuttallY@ca2c9c0aaeee459a81fa3d98c982e91a.bitwarden.com -carLicense: 66JIP7 -departmentNumber: 7429 -employeeType: Contract -homePhone: +1 206 541-5552 -initials: Y. N. -mobile: +1 206 551-4562 -pager: +1 206 244-8704 -roomNumber: 8714 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Siew Saiyed,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siew Saiyed -sn: Saiyed -description: This is Siew Saiyed's description -facsimileTelephoneNumber: +1 804 822-6146 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 991-1335 -title: Chief Product Testing Dictator -userPassword: Password1 -uid: SaiyedS -givenName: Siew -mail: SaiyedS@3c4dbb6665a7445fa14802eb54e6a9d0.bitwarden.com -carLicense: 75TAFU -departmentNumber: 7653 -employeeType: Normal -homePhone: +1 804 112-3373 -initials: S. S. -mobile: +1 804 382-7426 -pager: +1 804 149-5687 -roomNumber: 8236 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Access McCullough,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Access McCullough -sn: McCullough -description: This is Access McCullough's description -facsimileTelephoneNumber: +1 415 736-5199 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 888-9076 -title: Chief Peons Manager -userPassword: Password1 -uid: McCulloA -givenName: Access -mail: McCulloA@33105c2098dd4c88945d3f8eafc36dc3.bitwarden.com -carLicense: 7H61LS -departmentNumber: 5927 -employeeType: Normal -homePhone: +1 415 584-5426 -initials: A. M. -mobile: +1 415 303-4362 -pager: +1 415 935-1799 -roomNumber: 9324 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Charmion Sathe,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charmion Sathe -sn: Sathe -description: This is Charmion Sathe's description -facsimileTelephoneNumber: +1 213 539-2968 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 786-4272 -title: Junior Management Engineer -userPassword: Password1 -uid: SatheC -givenName: Charmion -mail: SatheC@7152bab40da14de79b0ae747b744928c.bitwarden.com -carLicense: S2MG4I -departmentNumber: 3524 -employeeType: Employee -homePhone: +1 213 235-1827 -initials: C. S. -mobile: +1 213 745-8029 -pager: +1 213 287-5291 -roomNumber: 8468 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wilow Tools,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilow Tools -sn: Tools -description: This is Wilow Tools's description -facsimileTelephoneNumber: +1 213 184-9783 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 424-7448 -title: Master Human Resources Admin -userPassword: Password1 -uid: ToolsW -givenName: Wilow -mail: ToolsW@051b892e4657474a87006ab9ebfe221e.bitwarden.com -carLicense: XO8B55 -departmentNumber: 6832 -employeeType: Normal -homePhone: +1 213 818-9502 -initials: W. T. -mobile: +1 213 233-2776 -pager: +1 213 825-8304 -roomNumber: 9522 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PingKong Beaudin -sn: Beaudin -description: This is PingKong Beaudin's description -facsimileTelephoneNumber: +1 510 975-4444 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 419-9458 -title: Supreme Product Testing Manager -userPassword: Password1 -uid: BeaudinP -givenName: PingKong -mail: BeaudinP@0f8613dd82654e89b45a34cb62ca4eb2.bitwarden.com -carLicense: E2QHEN -departmentNumber: 4299 -employeeType: Contract -homePhone: +1 510 162-3618 -initials: P. B. -mobile: +1 510 517-3583 -pager: +1 510 452-1464 -roomNumber: 9652 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florine Matsuzawa -sn: Matsuzawa -description: This is Florine Matsuzawa's description -facsimileTelephoneNumber: +1 818 498-3999 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 818 183-2365 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: MatsuzaF -givenName: Florine -mail: MatsuzaF@053cdccb3446469397047f2320d54d6c.bitwarden.com -carLicense: J75U0X -departmentNumber: 4434 -employeeType: Contract -homePhone: +1 818 449-3000 -initials: F. M. -mobile: +1 818 672-3386 -pager: +1 818 588-8411 -roomNumber: 9173 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marylin Fradette,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marylin Fradette -sn: Fradette -description: This is Marylin Fradette's description -facsimileTelephoneNumber: +1 408 289-9015 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 729-7557 -title: Junior Product Development Technician -userPassword: Password1 -uid: FradettM -givenName: Marylin -mail: FradettM@5208267913f745bcb26fb5107268d9fb.bitwarden.com -carLicense: DCTUNV -departmentNumber: 2021 -employeeType: Normal -homePhone: +1 408 502-8641 -initials: M. F. -mobile: +1 408 478-6230 -pager: +1 408 845-9964 -roomNumber: 8881 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bellina Capobianco,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bellina Capobianco -sn: Capobianco -description: This is Bellina Capobianco's description -facsimileTelephoneNumber: +1 510 816-6726 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 664-3044 -title: Associate Payroll Manager -userPassword: Password1 -uid: CapobiaB -givenName: Bellina -mail: CapobiaB@7a8ab7eb659841c5a733e8ce0e681fba.bitwarden.com -carLicense: U08T67 -departmentNumber: 4313 -employeeType: Normal -homePhone: +1 510 820-2562 -initials: B. C. -mobile: +1 510 350-3011 -pager: +1 510 993-4321 -roomNumber: 8628 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Darcee Stegall,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darcee Stegall -sn: Stegall -description: This is Darcee Stegall's description -facsimileTelephoneNumber: +1 818 595-9842 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 818 422-8955 -title: Junior Peons Warrior -userPassword: Password1 -uid: StegallD -givenName: Darcee -mail: StegallD@108d9f732ac3490887754db53858df8a.bitwarden.com -carLicense: ONLQ1L -departmentNumber: 1400 -employeeType: Employee -homePhone: +1 818 562-8759 -initials: D. S. -mobile: +1 818 656-2233 -pager: +1 818 213-4403 -roomNumber: 9000 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manimozhi Coggins -sn: Coggins -description: This is Manimozhi Coggins's description -facsimileTelephoneNumber: +1 408 157-8535 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 972-4206 -title: Supreme Human Resources Consultant -userPassword: Password1 -uid: CogginsM -givenName: Manimozhi -mail: CogginsM@44cd0ae3ed0a4c44a7cec68159d433e6.bitwarden.com -carLicense: D3T80A -departmentNumber: 7034 -employeeType: Contract -homePhone: +1 408 384-5567 -initials: M. C. -mobile: +1 408 983-9318 -pager: +1 408 148-3356 -roomNumber: 8649 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tonie Georgiou,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonie Georgiou -sn: Georgiou -description: This is Tonie Georgiou's description -facsimileTelephoneNumber: +1 818 724-3210 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 818 902-6041 -title: Junior Administrative Figurehead -userPassword: Password1 -uid: GeorgioT -givenName: Tonie -mail: GeorgioT@edf9173cd755418183d71bfbac4d7308.bitwarden.com -carLicense: LQMDAS -departmentNumber: 7185 -employeeType: Employee -homePhone: +1 818 153-9339 -initials: T. G. -mobile: +1 818 850-3005 -pager: +1 818 641-3431 -roomNumber: 8813 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vahe Jasen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vahe Jasen -sn: Jasen -description: This is Vahe Jasen's description -facsimileTelephoneNumber: +1 408 494-5838 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 501-7398 -title: Master Peons Developer -userPassword: Password1 -uid: JasenV -givenName: Vahe -mail: JasenV@5d8558331520489684cb760b329247ae.bitwarden.com -carLicense: W2THA1 -departmentNumber: 6653 -employeeType: Employee -homePhone: +1 408 113-9426 -initials: V. J. -mobile: +1 408 895-2263 -pager: +1 408 232-3520 -roomNumber: 8358 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanh Kalnitsky -sn: Kalnitsky -description: This is Hanh Kalnitsky's description -facsimileTelephoneNumber: +1 510 885-5672 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 212-2420 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: KalnitsH -givenName: Hanh -mail: KalnitsH@ffa895bc8daa4c0f81a78140a99f5460.bitwarden.com -carLicense: JDAX0J -departmentNumber: 3848 -employeeType: Contract -homePhone: +1 510 406-4398 -initials: H. K. -mobile: +1 510 515-4630 -pager: +1 510 116-4255 -roomNumber: 8605 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamqrah Rolls -sn: Rolls -description: This is Tamqrah Rolls's description -facsimileTelephoneNumber: +1 510 803-6433 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 953-8394 -title: Associate Human Resources Writer -userPassword: Password1 -uid: RollsT -givenName: Tamqrah -mail: RollsT@20f6772e8c3743a5846a7cce62bda2f7.bitwarden.com -carLicense: OATHFN -departmentNumber: 7358 -employeeType: Contract -homePhone: +1 510 122-3264 -initials: T. R. -mobile: +1 510 327-6881 -pager: +1 510 179-5842 -roomNumber: 9948 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dien Plambeck,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dien Plambeck -sn: Plambeck -description: This is Dien Plambeck's description -facsimileTelephoneNumber: +1 213 215-1521 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 112-1645 -title: Associate Product Development Admin -userPassword: Password1 -uid: PlambecD -givenName: Dien -mail: PlambecD@8f2a1e9d087d433f9b3d1ae45af01378.bitwarden.com -carLicense: Q81UOE -departmentNumber: 4560 -employeeType: Normal -homePhone: +1 213 925-2817 -initials: D. P. -mobile: +1 213 910-3320 -pager: +1 213 977-1738 -roomNumber: 9214 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pamella Royle,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pamella Royle -sn: Royle -description: This is Pamella Royle's description -facsimileTelephoneNumber: +1 206 289-7799 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 966-5457 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: RoyleP -givenName: Pamella -mail: RoyleP@1f8860f288da4464a786f1e18a6c5fa9.bitwarden.com -carLicense: HX82O0 -departmentNumber: 1491 -employeeType: Normal -homePhone: +1 206 458-3407 -initials: P. R. -mobile: +1 206 994-2030 -pager: +1 206 415-9383 -roomNumber: 8373 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Miro Doolittle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miro Doolittle -sn: Doolittle -description: This is Miro Doolittle's description -facsimileTelephoneNumber: +1 408 492-8299 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 408 368-4930 -title: Chief Janitorial Architect -userPassword: Password1 -uid: DoolittM -givenName: Miro -mail: DoolittM@fe184af833734409842cae4ea614a7b7.bitwarden.com -carLicense: TPEHBF -departmentNumber: 2180 -employeeType: Normal -homePhone: +1 408 709-2494 -initials: M. D. -mobile: +1 408 777-1301 -pager: +1 408 934-5879 -roomNumber: 8143 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cody Gopisetty -sn: Gopisetty -description: This is Cody Gopisetty's description -facsimileTelephoneNumber: +1 818 838-6807 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 360-1107 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: GopisetC -givenName: Cody -mail: GopisetC@78da39afd8f041eaad04623e643dcf1d.bitwarden.com -carLicense: CHPF9B -departmentNumber: 3746 -employeeType: Normal -homePhone: +1 818 614-7480 -initials: C. G. -mobile: +1 818 442-5771 -pager: +1 818 569-9358 -roomNumber: 8615 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cornelle Rahmany -sn: Rahmany -description: This is Cornelle Rahmany's description -facsimileTelephoneNumber: +1 206 316-3791 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 831-1445 -title: Associate Payroll President -userPassword: Password1 -uid: RahmanyC -givenName: Cornelle -mail: RahmanyC@9d21b507c1954275a6eb8b1bf7521c8d.bitwarden.com -carLicense: XAO38S -departmentNumber: 7398 -employeeType: Normal -homePhone: +1 206 649-7206 -initials: C. R. -mobile: +1 206 786-9917 -pager: +1 206 626-1427 -roomNumber: 9509 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Esmaria Ligurs,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esmaria Ligurs -sn: Ligurs -description: This is Esmaria Ligurs's description -facsimileTelephoneNumber: +1 213 834-1221 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 997-3230 -title: Junior Management Assistant -userPassword: Password1 -uid: LigursE -givenName: Esmaria -mail: LigursE@5214956f0ee84ad493b8defdd90a23da.bitwarden.com -carLicense: 5SJTG2 -departmentNumber: 2305 -employeeType: Normal -homePhone: +1 213 549-6023 -initials: E. L. -mobile: +1 213 410-7152 -pager: +1 213 472-7189 -roomNumber: 8848 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jim Gillespie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jim Gillespie -sn: Gillespie -description: This is Jim Gillespie's description -facsimileTelephoneNumber: +1 415 630-5667 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 352-8577 -title: Master Janitorial Consultant -userPassword: Password1 -uid: GillespJ -givenName: Jim -mail: GillespJ@60ffb350fa6740079313430abf25721b.bitwarden.com -carLicense: 6D5DI8 -departmentNumber: 9835 -employeeType: Employee -homePhone: +1 415 540-8063 -initials: J. G. -mobile: +1 415 128-6081 -pager: +1 415 995-4628 -roomNumber: 9109 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lottie Patoka,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lottie Patoka -sn: Patoka -description: This is Lottie Patoka's description -facsimileTelephoneNumber: +1 206 850-4725 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 196-7072 -title: Master Peons Warrior -userPassword: Password1 -uid: PatokaL -givenName: Lottie -mail: PatokaL@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com -carLicense: VNE786 -departmentNumber: 5472 -employeeType: Normal -homePhone: +1 206 380-5461 -initials: L. P. -mobile: +1 206 403-6476 -pager: +1 206 554-9033 -roomNumber: 8961 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Keven Camillucci,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keven Camillucci -sn: Camillucci -description: This is Keven Camillucci's description -facsimileTelephoneNumber: +1 818 493-3447 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 818 191-7618 -title: Associate Product Testing Developer -userPassword: Password1 -uid: CamilluK -givenName: Keven -mail: CamilluK@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com -carLicense: B5ODS0 -departmentNumber: 3404 -employeeType: Contract -homePhone: +1 818 808-7997 -initials: K. C. -mobile: +1 818 223-4184 -pager: +1 818 495-6489 -roomNumber: 9317 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ning Schiegl,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ning Schiegl -sn: Schiegl -description: This is Ning Schiegl's description -facsimileTelephoneNumber: +1 818 828-9217 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 690-2952 -title: Master Product Development Admin -userPassword: Password1 -uid: SchieglN -givenName: Ning -mail: SchieglN@9c276cf6fc574cef93bc0a3a6cf33a5f.bitwarden.com -carLicense: 958VSP -departmentNumber: 4172 -employeeType: Contract -homePhone: +1 818 103-6363 -initials: N. S. -mobile: +1 818 871-8559 -pager: +1 818 441-3682 -roomNumber: 8415 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandrine Chaar -sn: Chaar -description: This is Sandrine Chaar's description -facsimileTelephoneNumber: +1 818 952-9642 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 631-9503 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: ChaarS -givenName: Sandrine -mail: ChaarS@bca72db9505940d88abc6d6738cc2f4f.bitwarden.com -carLicense: NOJEX7 -departmentNumber: 9540 -employeeType: Contract -homePhone: +1 818 802-7646 -initials: S. C. -mobile: +1 818 478-9615 -pager: +1 818 876-4139 -roomNumber: 9770 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Torie Sridaran,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Torie Sridaran -sn: Sridaran -description: This is Torie Sridaran's description -facsimileTelephoneNumber: +1 804 118-3343 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 379-4970 -title: Chief Management President -userPassword: Password1 -uid: SridaraT -givenName: Torie -mail: SridaraT@96b8e349b3fa4d379cf18c56e159fe83.bitwarden.com -carLicense: 13H2K8 -departmentNumber: 6745 -employeeType: Contract -homePhone: +1 804 778-5654 -initials: T. S. -mobile: +1 804 264-9297 -pager: +1 804 894-5655 -roomNumber: 8621 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jilly Ziai,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jilly Ziai -sn: Ziai -description: This is Jilly Ziai's description -facsimileTelephoneNumber: +1 213 107-8920 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 924-5336 -title: Master Janitorial Visionary -userPassword: Password1 -uid: ZiaiJ -givenName: Jilly -mail: ZiaiJ@2d4d35e5bd0f4e7dbb9261b02c16e31d.bitwarden.com -carLicense: XVHGPQ -departmentNumber: 4349 -employeeType: Contract -homePhone: +1 213 559-9460 -initials: J. Z. -mobile: +1 213 728-5100 -pager: +1 213 298-3345 -roomNumber: 8123 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Katharyn Herak,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katharyn Herak -sn: Herak -description: This is Katharyn Herak's description -facsimileTelephoneNumber: +1 408 583-7693 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 408 561-1499 -title: Supreme Payroll Sales Rep -userPassword: Password1 -uid: HerakK -givenName: Katharyn -mail: HerakK@7bb8f37e955d4f04a6cccdb2666d9559.bitwarden.com -carLicense: 9AFFRU -departmentNumber: 3367 -employeeType: Normal -homePhone: +1 408 653-8400 -initials: K. H. -mobile: +1 408 414-7895 -pager: +1 408 203-2318 -roomNumber: 9452 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carmina Slade,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmina Slade -sn: Slade -description: This is Carmina Slade's description -facsimileTelephoneNumber: +1 408 306-4560 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 283-3253 -title: Supreme Peons Pinhead -userPassword: Password1 -uid: SladeC -givenName: Carmina -mail: SladeC@94efd997fd9d41de91869cc1beb2c9ae.bitwarden.com -carLicense: 1OEKHW -departmentNumber: 8734 -employeeType: Contract -homePhone: +1 408 995-5785 -initials: C. S. -mobile: +1 408 495-5115 -pager: +1 408 626-5122 -roomNumber: 9812 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nayneshkumar Marui -sn: Marui -description: This is Nayneshkumar Marui's description -facsimileTelephoneNumber: +1 213 182-1623 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 651-4182 -title: Associate Product Testing Czar -userPassword: Password1 -uid: MaruiN -givenName: Nayneshkumar -mail: MaruiN@17e6e9bce9be4a43964f6f155661a373.bitwarden.com -carLicense: 7PRG9T -departmentNumber: 9702 -employeeType: Employee -homePhone: +1 213 375-4698 -initials: N. M. -mobile: +1 213 145-9886 -pager: +1 213 214-6519 -roomNumber: 9831 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ghislaine Forester -sn: Forester -description: This is Ghislaine Forester's description -facsimileTelephoneNumber: +1 408 320-5642 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 259-5243 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: ForesteG -givenName: Ghislaine -mail: ForesteG@6ba8baad97224f009bad99f9ff3a1b6b.bitwarden.com -carLicense: FE4NMY -departmentNumber: 9449 -employeeType: Employee -homePhone: +1 408 744-3271 -initials: G. F. -mobile: +1 408 344-5138 -pager: +1 408 773-7665 -roomNumber: 9406 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=NamKiet Dada,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: NamKiet Dada -sn: Dada -description: This is NamKiet Dada's description -facsimileTelephoneNumber: +1 415 185-8345 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 415 780-8223 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: DadaN -givenName: NamKiet -mail: DadaN@0834a0a1dc434fff9ff2dcff91cb1428.bitwarden.com -carLicense: I5GT6S -departmentNumber: 6005 -employeeType: Normal -homePhone: +1 415 610-2949 -initials: N. D. -mobile: +1 415 711-1066 -pager: +1 415 844-7151 -roomNumber: 9108 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nashir SUPPORT,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nashir SUPPORT -sn: SUPPORT -description: This is Nashir SUPPORT's description -facsimileTelephoneNumber: +1 213 571-6873 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 720-6982 -title: Junior Management Punk -userPassword: Password1 -uid: SUPPORTN -givenName: Nashir -mail: SUPPORTN@a882281c1b844c5997ce4401b36f83a4.bitwarden.com -carLicense: TQSGXI -departmentNumber: 6405 -employeeType: Contract -homePhone: +1 213 540-1713 -initials: N. S. -mobile: +1 213 854-7282 -pager: +1 213 899-9495 -roomNumber: 9276 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bonni Gehring,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bonni Gehring -sn: Gehring -description: This is Bonni Gehring's description -facsimileTelephoneNumber: +1 804 206-9018 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 662-7516 -title: Master Product Development Technician -userPassword: Password1 -uid: GehringB -givenName: Bonni -mail: GehringB@39cad30acf654cd592e26cbcce758e66.bitwarden.com -carLicense: 6JMPUI -departmentNumber: 3026 -employeeType: Employee -homePhone: +1 804 571-3507 -initials: B. G. -mobile: +1 804 785-6552 -pager: +1 804 888-3179 -roomNumber: 8513 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Agenia Deboer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agenia Deboer -sn: Deboer -description: This is Agenia Deboer's description -facsimileTelephoneNumber: +1 804 929-4895 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 379-2173 -title: Master Payroll Director -userPassword: Password1 -uid: DeboerA -givenName: Agenia -mail: DeboerA@909269ac94be4e5b9ff6809f52b1dda3.bitwarden.com -carLicense: 5FK0LW -departmentNumber: 5535 -employeeType: Normal -homePhone: +1 804 446-8419 -initials: A. D. -mobile: +1 804 888-3289 -pager: +1 804 113-7307 -roomNumber: 8026 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tatiana Keene,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatiana Keene -sn: Keene -description: This is Tatiana Keene's description -facsimileTelephoneNumber: +1 408 738-4540 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 458-3177 -title: Associate Peons Figurehead -userPassword: Password1 -uid: KeeneT -givenName: Tatiana -mail: KeeneT@1567184d0d9f4bd798c9d76aae00fe9e.bitwarden.com -carLicense: MC9JU8 -departmentNumber: 8938 -employeeType: Normal -homePhone: +1 408 203-2244 -initials: T. K. -mobile: +1 408 627-8542 -pager: +1 408 270-4181 -roomNumber: 9576 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madonna Rabipour -sn: Rabipour -description: This is Madonna Rabipour's description -facsimileTelephoneNumber: +1 408 884-3546 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 408 479-9473 -title: Master Product Testing Grunt -userPassword: Password1 -uid: RabipouM -givenName: Madonna -mail: RabipouM@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com -carLicense: XV556W -departmentNumber: 8233 -employeeType: Normal -homePhone: +1 408 127-4307 -initials: M. R. -mobile: +1 408 840-7292 -pager: +1 408 863-8991 -roomNumber: 9993 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ora Trayer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ora Trayer -sn: Trayer -description: This is Ora Trayer's description -facsimileTelephoneNumber: +1 408 450-8008 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 469-7396 -title: Chief Human Resources Mascot -userPassword: Password1 -uid: TrayerO -givenName: Ora -mail: TrayerO@f96326cbae60420087d9ffc7eb8e7b96.bitwarden.com -carLicense: 1XW7GF -departmentNumber: 9834 -employeeType: Normal -homePhone: +1 408 884-5412 -initials: O. T. -mobile: +1 408 211-6050 -pager: +1 408 936-7293 -roomNumber: 8390 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Malissa Walta,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malissa Walta -sn: Walta -description: This is Malissa Walta's description -facsimileTelephoneNumber: +1 510 936-9589 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 895-5671 -title: Junior Human Resources Technician -userPassword: Password1 -uid: WaltaM -givenName: Malissa -mail: WaltaM@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com -carLicense: AJLLSN -departmentNumber: 9196 -employeeType: Contract -homePhone: +1 510 618-6568 -initials: M. W. -mobile: +1 510 955-9414 -pager: +1 510 845-5460 -roomNumber: 9546 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sage Jones,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sage Jones -sn: Jones -description: This is Sage Jones's description -facsimileTelephoneNumber: +1 818 898-3187 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 936-7981 -title: Chief Administrative Assistant -userPassword: Password1 -uid: JonesS -givenName: Sage -mail: JonesS@a524fcb1eac4447e976069bb86ce0e2a.bitwarden.com -carLicense: UVWJMH -departmentNumber: 7875 -employeeType: Normal -homePhone: +1 818 972-5242 -initials: S. J. -mobile: +1 818 729-2374 -pager: +1 818 117-5777 -roomNumber: 8532 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Homer Boothroyd,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Homer Boothroyd -sn: Boothroyd -description: This is Homer Boothroyd's description -facsimileTelephoneNumber: +1 818 365-5421 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 885-4714 -title: Master Administrative Punk -userPassword: Password1 -uid: BoothroH -givenName: Homer -mail: BoothroH@cb353017148241c88e44cd0d35f2614b.bitwarden.com -carLicense: 534BIQ -departmentNumber: 7420 -employeeType: Employee -homePhone: +1 818 956-4000 -initials: H. B. -mobile: +1 818 843-1994 -pager: +1 818 824-6754 -roomNumber: 8939 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Oksana Baran,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oksana Baran -sn: Baran -description: This is Oksana Baran's description -facsimileTelephoneNumber: +1 818 511-8577 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 994-5184 -title: Master Administrative Architect -userPassword: Password1 -uid: BaranO -givenName: Oksana -mail: BaranO@ae52dcada2674f68a76a2c619d85f261.bitwarden.com -carLicense: CVH53A -departmentNumber: 2200 -employeeType: Normal -homePhone: +1 818 933-4769 -initials: O. B. -mobile: +1 818 552-5392 -pager: +1 818 419-9031 -roomNumber: 8536 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gill Stalter,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gill Stalter -sn: Stalter -description: This is Gill Stalter's description -facsimileTelephoneNumber: +1 415 493-4271 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 415 896-2782 -title: Chief Peons Madonna -userPassword: Password1 -uid: StalterG -givenName: Gill -mail: StalterG@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com -carLicense: 7MS7CQ -departmentNumber: 2504 -employeeType: Normal -homePhone: +1 415 989-7898 -initials: G. S. -mobile: +1 415 837-3742 -pager: +1 415 744-8454 -roomNumber: 8140 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Starlene Andrusiak -sn: Andrusiak -description: This is Starlene Andrusiak's description -facsimileTelephoneNumber: +1 408 851-7672 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 598-7699 -title: Master Product Development Architect -userPassword: Password1 -uid: AndrusiS -givenName: Starlene -mail: AndrusiS@005903ef4e084b96990707819b3e2e17.bitwarden.com -carLicense: 9ULQN0 -departmentNumber: 8081 -employeeType: Contract -homePhone: +1 408 792-2783 -initials: S. A. -mobile: +1 408 390-6110 -pager: +1 408 494-7774 -roomNumber: 8347 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=PohSoon Carter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PohSoon Carter -sn: Carter -description: This is PohSoon Carter's description -facsimileTelephoneNumber: +1 510 244-4519 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 830-5548 -title: Master Human Resources Punk -userPassword: Password1 -uid: CarterP -givenName: PohSoon -mail: CarterP@e2851fa9dbce4fe68e4f43ec7a7e00f0.bitwarden.com -carLicense: IMFBE4 -departmentNumber: 9219 -employeeType: Contract -homePhone: +1 510 982-3396 -initials: P. C. -mobile: +1 510 368-2044 -pager: +1 510 230-9523 -roomNumber: 9342 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arvin Hrushowy -sn: Hrushowy -description: This is Arvin Hrushowy's description -facsimileTelephoneNumber: +1 415 197-2417 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 535-1699 -title: Chief Payroll Engineer -userPassword: Password1 -uid: HrushowA -givenName: Arvin -mail: HrushowA@bd88542b35754611b56bc9f67e5f51df.bitwarden.com -carLicense: AOGQEL -departmentNumber: 8155 -employeeType: Normal -homePhone: +1 415 685-3769 -initials: A. H. -mobile: +1 415 997-9586 -pager: +1 415 557-1769 -roomNumber: 8055 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cherilynn Munden,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherilynn Munden -sn: Munden -description: This is Cherilynn Munden's description -facsimileTelephoneNumber: +1 510 864-2837 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 510 506-4626 -title: Master Product Development Engineer -userPassword: Password1 -uid: MundenC -givenName: Cherilynn -mail: MundenC@94dbeedce77e435482fe6d405df83d4c.bitwarden.com -carLicense: PP6G9K -departmentNumber: 9815 -employeeType: Contract -homePhone: +1 510 262-6812 -initials: C. M. -mobile: +1 510 162-4906 -pager: +1 510 311-6034 -roomNumber: 8467 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Stephie Wong,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephie Wong -sn: Wong -description: This is Stephie Wong's description -facsimileTelephoneNumber: +1 415 539-8781 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 415 557-7259 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: WongS -givenName: Stephie -mail: WongS@1d53b6921bf64610aacf1176185cce32.bitwarden.com -carLicense: AHOGDX -departmentNumber: 5804 -employeeType: Normal -homePhone: +1 415 785-6162 -initials: S. W. -mobile: +1 415 492-2517 -pager: +1 415 991-2480 -roomNumber: 8227 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leah Makoid,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leah Makoid -sn: Makoid -description: This is Leah Makoid's description -facsimileTelephoneNumber: +1 818 578-9308 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 623-9040 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: MakoidL -givenName: Leah -mail: MakoidL@5191509f48d94538ad03dc3532ab7b16.bitwarden.com -carLicense: X7FSEM -departmentNumber: 2171 -employeeType: Employee -homePhone: +1 818 945-7519 -initials: L. M. -mobile: +1 818 794-7804 -pager: +1 818 374-6186 -roomNumber: 8061 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sisely Cameron,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sisely Cameron -sn: Cameron -description: This is Sisely Cameron's description -facsimileTelephoneNumber: +1 206 916-4394 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 968-5903 -title: Chief Administrative Stooge -userPassword: Password1 -uid: CameronS -givenName: Sisely -mail: CameronS@a70ffb71353245b59b898173a6c12cbc.bitwarden.com -carLicense: NEAOP7 -departmentNumber: 1101 -employeeType: Normal -homePhone: +1 206 360-5704 -initials: S. C. -mobile: +1 206 318-1563 -pager: +1 206 501-5696 -roomNumber: 9801 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lacie Seddigh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lacie Seddigh -sn: Seddigh -description: This is Lacie Seddigh's description -facsimileTelephoneNumber: +1 213 200-1039 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 304-3526 -title: Chief Product Development Consultant -userPassword: Password1 -uid: SeddighL -givenName: Lacie -mail: SeddighL@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com -carLicense: SQJGY4 -departmentNumber: 7543 -employeeType: Contract -homePhone: +1 213 856-9824 -initials: L. S. -mobile: +1 213 465-9326 -pager: +1 213 575-2711 -roomNumber: 9204 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Golda Decasper,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Golda Decasper -sn: Decasper -description: This is Golda Decasper's description -facsimileTelephoneNumber: +1 510 989-8805 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 791-8476 -title: Master Peons Evangelist -userPassword: Password1 -uid: DecaspeG -givenName: Golda -mail: DecaspeG@5a068c1bd8fb448da04352f8a1f4d9ad.bitwarden.com -carLicense: B64TS3 -departmentNumber: 2904 -employeeType: Contract -homePhone: +1 510 479-9038 -initials: G. D. -mobile: +1 510 451-6782 -pager: +1 510 699-7789 -roomNumber: 9658 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Chander Kernahan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chander Kernahan -sn: Kernahan -description: This is Chander Kernahan's description -facsimileTelephoneNumber: +1 818 775-5605 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 317-4366 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: KernahaC -givenName: Chander -mail: KernahaC@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com -carLicense: UAY32P -departmentNumber: 4813 -employeeType: Normal -homePhone: +1 818 542-5199 -initials: C. K. -mobile: +1 818 356-8824 -pager: +1 818 536-9823 -roomNumber: 8547 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HsingJu Delahay -sn: Delahay -description: This is HsingJu Delahay's description -facsimileTelephoneNumber: +1 206 970-9313 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 206 886-8058 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: DelahayH -givenName: HsingJu -mail: DelahayH@025b753c71134f47b62832fe77834232.bitwarden.com -carLicense: Q0MHX1 -departmentNumber: 3388 -employeeType: Contract -homePhone: +1 206 128-1211 -initials: H. D. -mobile: +1 206 729-4855 -pager: +1 206 635-4521 -roomNumber: 8200 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nicola Haupt,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicola Haupt -sn: Haupt -description: This is Nicola Haupt's description -facsimileTelephoneNumber: +1 213 371-6518 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 769-9427 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: HauptN -givenName: Nicola -mail: HauptN@0482a6f8c34647958dbfe3e2649faae2.bitwarden.com -carLicense: 43FR79 -departmentNumber: 7455 -employeeType: Employee -homePhone: +1 213 878-6305 -initials: N. H. -mobile: +1 213 189-2691 -pager: +1 213 473-1207 -roomNumber: 8751 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Orelle Ifact,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orelle Ifact -sn: Ifact -description: This is Orelle Ifact's description -facsimileTelephoneNumber: +1 510 338-3690 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 555-3447 -title: Associate Administrative Fellow -userPassword: Password1 -uid: IfactO -givenName: Orelle -mail: IfactO@0f5c9983e32c410788faa72a9c3d7c88.bitwarden.com -carLicense: 823HQF -departmentNumber: 1239 -employeeType: Contract -homePhone: +1 510 614-6796 -initials: O. I. -mobile: +1 510 105-5528 -pager: +1 510 808-7049 -roomNumber: 9638 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jak Locken,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jak Locken -sn: Locken -description: This is Jak Locken's description -facsimileTelephoneNumber: +1 804 745-6294 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 777-2295 -title: Master Product Development Dictator -userPassword: Password1 -uid: LockenJ -givenName: Jak -mail: LockenJ@2f5b8316f26f4fc481de13effbbd4ea6.bitwarden.com -carLicense: KC1CND -departmentNumber: 6576 -employeeType: Employee -homePhone: +1 804 196-8184 -initials: J. L. -mobile: +1 804 526-6488 -pager: +1 804 589-4849 -roomNumber: 8831 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Phillis Hermack,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phillis Hermack -sn: Hermack -description: This is Phillis Hermack's description -facsimileTelephoneNumber: +1 415 970-8438 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 556-5709 -title: Chief Product Testing Director -userPassword: Password1 -uid: HermackP -givenName: Phillis -mail: HermackP@bd6dedb04a504f54bb83fff2aa24490b.bitwarden.com -carLicense: DJUDHX -departmentNumber: 1030 -employeeType: Normal -homePhone: +1 415 429-8618 -initials: P. H. -mobile: +1 415 926-7616 -pager: +1 415 697-1094 -roomNumber: 8038 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorrel Greenfield -sn: Greenfield -description: This is Lorrel Greenfield's description -facsimileTelephoneNumber: +1 213 815-6379 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 916-8542 -title: Junior Administrative Mascot -userPassword: Password1 -uid: GreenfiL -givenName: Lorrel -mail: GreenfiL@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com -carLicense: JKH3UU -departmentNumber: 2366 -employeeType: Contract -homePhone: +1 213 534-3898 -initials: L. G. -mobile: +1 213 154-8824 -pager: +1 213 377-7164 -roomNumber: 9845 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marcellina Knighton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcellina Knighton -sn: Knighton -description: This is Marcellina Knighton's description -facsimileTelephoneNumber: +1 213 692-1964 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 213 287-7330 -title: Chief Product Development Consultant -userPassword: Password1 -uid: KnightoM -givenName: Marcellina -mail: KnightoM@48f6e6bce8ac404d917503a6c43988fa.bitwarden.com -carLicense: XRXDGE -departmentNumber: 9836 -employeeType: Normal -homePhone: +1 213 290-8221 -initials: M. K. -mobile: +1 213 211-1445 -pager: +1 213 317-1565 -roomNumber: 8463 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Krystal Runnels,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krystal Runnels -sn: Runnels -description: This is Krystal Runnels's description -facsimileTelephoneNumber: +1 213 205-9476 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 668-7005 -title: Chief Janitorial Admin -userPassword: Password1 -uid: RunnelsK -givenName: Krystal -mail: RunnelsK@7e96834d9f214835923bce90da137a59.bitwarden.com -carLicense: GB9MY7 -departmentNumber: 8631 -employeeType: Contract -homePhone: +1 213 776-8356 -initials: K. R. -mobile: +1 213 283-5013 -pager: +1 213 455-3951 -roomNumber: 9923 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sonnnie Steven,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonnnie Steven -sn: Steven -description: This is Sonnnie Steven's description -facsimileTelephoneNumber: +1 206 720-1229 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 757-4891 -title: Master Administrative Writer -userPassword: Password1 -uid: StevenS -givenName: Sonnnie -mail: StevenS@6942f38ba5484ef1a5acaa3b04cfa3d9.bitwarden.com -carLicense: BL8SNR -departmentNumber: 1652 -employeeType: Contract -homePhone: +1 206 861-6188 -initials: S. S. -mobile: +1 206 374-3469 -pager: +1 206 849-1993 -roomNumber: 9266 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Catherin Whaley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catherin Whaley -sn: Whaley -description: This is Catherin Whaley's description -facsimileTelephoneNumber: +1 213 953-8815 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 404-6737 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: WhaleyC -givenName: Catherin -mail: WhaleyC@912b93525781475c9b76c550ff34b491.bitwarden.com -carLicense: FGECKL -departmentNumber: 3184 -employeeType: Employee -homePhone: +1 213 292-4215 -initials: C. W. -mobile: +1 213 982-1744 -pager: +1 213 542-8554 -roomNumber: 9837 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fernanda Michalos,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fernanda Michalos -sn: Michalos -description: This is Fernanda Michalos's description -facsimileTelephoneNumber: +1 415 737-8058 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 890-8657 -title: Supreme Payroll Consultant -userPassword: Password1 -uid: MichaloF -givenName: Fernanda -mail: MichaloF@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com -carLicense: RC3K4N -departmentNumber: 4909 -employeeType: Employee -homePhone: +1 415 364-6267 -initials: F. M. -mobile: +1 415 261-7847 -pager: +1 415 218-5576 -roomNumber: 9705 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Darline Worpell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darline Worpell -sn: Worpell -description: This is Darline Worpell's description -facsimileTelephoneNumber: +1 510 903-4854 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 242-9446 -title: Supreme Management Stooge -userPassword: Password1 -uid: WorpellD -givenName: Darline -mail: WorpellD@b0543cf71f3c4487af9098421c49968e.bitwarden.com -carLicense: CDIN3F -departmentNumber: 7783 -employeeType: Normal -homePhone: +1 510 839-8347 -initials: D. W. -mobile: +1 510 678-3842 -pager: +1 510 333-5381 -roomNumber: 9650 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jose Brading,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jose Brading -sn: Brading -description: This is Jose Brading's description -facsimileTelephoneNumber: +1 213 649-1220 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 608-1361 -title: Associate Administrative Manager -userPassword: Password1 -uid: BradingJ -givenName: Jose -mail: BradingJ@a2fc6a711cba4ec98d716bb4c3e20f83.bitwarden.com -carLicense: 76G5CP -departmentNumber: 3011 -employeeType: Contract -homePhone: +1 213 246-2924 -initials: J. B. -mobile: +1 213 660-3530 -pager: +1 213 741-5742 -roomNumber: 9387 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Garney Wilkinson -sn: Wilkinson -description: This is Garney Wilkinson's description -facsimileTelephoneNumber: +1 213 312-1364 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 560-1078 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: WilkinsG -givenName: Garney -mail: WilkinsG@6a7ccf71870148fe8f9ac4d527b4d501.bitwarden.com -carLicense: 9J4MDW -departmentNumber: 5660 -employeeType: Contract -homePhone: +1 213 273-1475 -initials: G. W. -mobile: +1 213 963-1010 -pager: +1 213 116-7840 -roomNumber: 9874 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adrie Coverdale,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrie Coverdale -sn: Coverdale -description: This is Adrie Coverdale's description -facsimileTelephoneNumber: +1 408 459-4328 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 880-5605 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: CoverdaA -givenName: Adrie -mail: CoverdaA@649a503dbd264f3ba9e14eb9795c58eb.bitwarden.com -carLicense: DOYBDP -departmentNumber: 9108 -employeeType: Normal -homePhone: +1 408 873-3148 -initials: A. C. -mobile: +1 408 316-9175 -pager: +1 408 622-7488 -roomNumber: 9439 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Coral Larrigan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coral Larrigan -sn: Larrigan -description: This is Coral Larrigan's description -facsimileTelephoneNumber: +1 804 835-7917 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 967-9595 -title: Associate Human Resources President -userPassword: Password1 -uid: LarrigaC -givenName: Coral -mail: LarrigaC@697f4570719c4b51867f3d1f0d4cdafe.bitwarden.com -carLicense: EEHQPU -departmentNumber: 6350 -employeeType: Employee -homePhone: +1 804 495-6710 -initials: C. L. -mobile: +1 804 252-1124 -pager: +1 804 123-1318 -roomNumber: 8887 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharlene Boleda -sn: Boleda -description: This is Sharlene Boleda's description -facsimileTelephoneNumber: +1 206 590-2503 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 324-7131 -title: Chief Janitorial Writer -userPassword: Password1 -uid: BoledaS -givenName: Sharlene -mail: BoledaS@c2a7b578a92f4e2b90afb4532b24efa1.bitwarden.com -carLicense: AHMAGB -departmentNumber: 3037 -employeeType: Normal -homePhone: +1 206 276-4505 -initials: S. B. -mobile: +1 206 517-1326 -pager: +1 206 673-4682 -roomNumber: 9868 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lorrin Derrett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorrin Derrett -sn: Derrett -description: This is Lorrin Derrett's description -facsimileTelephoneNumber: +1 804 290-8888 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 410-3915 -title: Master Product Development Fellow -userPassword: Password1 -uid: DerrettL -givenName: Lorrin -mail: DerrettL@defab017f9734cfab5b3fea4ed24112c.bitwarden.com -carLicense: 6FM72A -departmentNumber: 8814 -employeeType: Normal -homePhone: +1 804 520-6509 -initials: L. D. -mobile: +1 804 995-8995 -pager: +1 804 216-1353 -roomNumber: 9560 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Xu Gertridge,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xu Gertridge -sn: Gertridge -description: This is Xu Gertridge's description -facsimileTelephoneNumber: +1 804 632-9827 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 850-4327 -title: Master Product Development Czar -userPassword: Password1 -uid: GertridX -givenName: Xu -mail: GertridX@1d23264dcd2241baa77e90f901c50315.bitwarden.com -carLicense: 2NFIWR -departmentNumber: 6867 -employeeType: Normal -homePhone: +1 804 353-8847 -initials: X. G. -mobile: +1 804 880-7937 -pager: +1 804 450-1883 -roomNumber: 8380 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhiren Arwakhi -sn: Arwakhi -description: This is Dhiren Arwakhi's description -facsimileTelephoneNumber: +1 804 853-9736 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 201-2006 -title: Master Product Development Pinhead -userPassword: Password1 -uid: ArwakhiD -givenName: Dhiren -mail: ArwakhiD@a72a30514dd84739adf3beae6a3c71bb.bitwarden.com -carLicense: LV2J2L -departmentNumber: 5594 -employeeType: Normal -homePhone: +1 804 659-7490 -initials: D. A. -mobile: +1 804 832-6140 -pager: +1 804 916-8721 -roomNumber: 8397 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carlisle Wokoma,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlisle Wokoma -sn: Wokoma -description: This is Carlisle Wokoma's description -facsimileTelephoneNumber: +1 408 896-5162 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 114-1087 -title: Associate Management Czar -userPassword: Password1 -uid: WokomaC -givenName: Carlisle -mail: WokomaC@098e681e17464ddaaa4b5aa6ff614551.bitwarden.com -carLicense: AUWWXF -departmentNumber: 9432 -employeeType: Employee -homePhone: +1 408 968-4095 -initials: C. W. -mobile: +1 408 234-8361 -pager: +1 408 887-7445 -roomNumber: 8282 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parnell Scanlan -sn: Scanlan -description: This is Parnell Scanlan's description -facsimileTelephoneNumber: +1 510 201-2310 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 366-5627 -title: Chief Human Resources Vice President -userPassword: Password1 -uid: ScanlanP -givenName: Parnell -mail: ScanlanP@31c61f2c8f9340ee8037a78602dae0c7.bitwarden.com -carLicense: RV77F0 -departmentNumber: 4751 -employeeType: Normal -homePhone: +1 510 835-4550 -initials: P. S. -mobile: +1 510 360-8611 -pager: +1 510 555-5353 -roomNumber: 9174 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tatsuya Standel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatsuya Standel -sn: Standel -description: This is Tatsuya Standel's description -facsimileTelephoneNumber: +1 408 566-8177 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 335-6413 -title: Supreme Management Architect -userPassword: Password1 -uid: StandelT -givenName: Tatsuya -mail: StandelT@0f34709435f94e12b6b00a3cb3cfaead.bitwarden.com -carLicense: Y40DPH -departmentNumber: 2758 -employeeType: Employee -homePhone: +1 408 866-4779 -initials: T. S. -mobile: +1 408 349-6041 -pager: +1 408 690-5462 -roomNumber: 9476 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shirline Dahl,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirline Dahl -sn: Dahl -description: This is Shirline Dahl's description -facsimileTelephoneNumber: +1 510 726-1384 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 824-2079 -title: Supreme Peons Pinhead -userPassword: Password1 -uid: DahlS -givenName: Shirline -mail: DahlS@98febd962501443b89a9e8bfacf12a9e.bitwarden.com -carLicense: F12YH4 -departmentNumber: 9152 -employeeType: Normal -homePhone: +1 510 329-2576 -initials: S. D. -mobile: +1 510 813-9252 -pager: +1 510 267-6884 -roomNumber: 8731 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mandie Tota,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mandie Tota -sn: Tota -description: This is Mandie Tota's description -facsimileTelephoneNumber: +1 510 165-7288 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 510 204-3709 -title: Associate Administrative Architect -userPassword: Password1 -uid: TotaM -givenName: Mandie -mail: TotaM@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com -carLicense: 0USURD -departmentNumber: 9000 -employeeType: Contract -homePhone: +1 510 489-6186 -initials: M. T. -mobile: +1 510 439-6571 -pager: +1 510 790-5438 -roomNumber: 9869 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nicolea Garee,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolea Garee -sn: Garee -description: This is Nicolea Garee's description -facsimileTelephoneNumber: +1 804 714-5176 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 536-9116 -title: Chief Management Warrior -userPassword: Password1 -uid: GareeN -givenName: Nicolea -mail: GareeN@b01b1bd56e3f464896b7135dd1b7da99.bitwarden.com -carLicense: B9DOB8 -departmentNumber: 8790 -employeeType: Employee -homePhone: +1 804 971-9394 -initials: N. G. -mobile: +1 804 946-4325 -pager: +1 804 462-7925 -roomNumber: 9110 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Geraldine Meehan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geraldine Meehan -sn: Meehan -description: This is Geraldine Meehan's description -facsimileTelephoneNumber: +1 510 361-2208 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 157-3736 -title: Junior Administrative Writer -userPassword: Password1 -uid: MeehanG -givenName: Geraldine -mail: MeehanG@926986a7a9224c51b55271804ad9a9d9.bitwarden.com -carLicense: VCT3QM -departmentNumber: 4741 -employeeType: Normal -homePhone: +1 510 894-1191 -initials: G. M. -mobile: +1 510 175-6311 -pager: +1 510 454-4159 -roomNumber: 9853 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ShingChi Ciolfi -sn: Ciolfi -description: This is ShingChi Ciolfi's description -facsimileTelephoneNumber: +1 818 990-6487 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 862-3056 -title: Master Product Development Developer -userPassword: Password1 -uid: CiolfiS -givenName: ShingChi -mail: CiolfiS@49c1a115ac8b439f9ab99f302ba59751.bitwarden.com -carLicense: J902UR -departmentNumber: 5286 -employeeType: Employee -homePhone: +1 818 225-7408 -initials: S. C. -mobile: +1 818 223-4248 -pager: +1 818 955-7535 -roomNumber: 9340 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mickie Budhram,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mickie Budhram -sn: Budhram -description: This is Mickie Budhram's description -facsimileTelephoneNumber: +1 213 345-8055 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 319-4988 -title: Master Janitorial Director -userPassword: Password1 -uid: BudhramM -givenName: Mickie -mail: BudhramM@08eacc9f081b46aa9b5cc2682b8df342.bitwarden.com -carLicense: NTCIP5 -departmentNumber: 3562 -employeeType: Normal -homePhone: +1 213 826-3298 -initials: M. B. -mobile: +1 213 734-9756 -pager: +1 213 544-1970 -roomNumber: 8994 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Faustina Severinac,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faustina Severinac -sn: Severinac -description: This is Faustina Severinac's description -facsimileTelephoneNumber: +1 510 219-9931 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 156-3659 -title: Chief Management Admin -userPassword: Password1 -uid: SeverinF -givenName: Faustina -mail: SeverinF@679765b52d394d7ba89a59f3e71121ce.bitwarden.com -carLicense: Y5V3G2 -departmentNumber: 9341 -employeeType: Contract -homePhone: +1 510 677-6303 -initials: F. S. -mobile: +1 510 478-9767 -pager: +1 510 302-3463 -roomNumber: 9245 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Roy Zaloker,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roy Zaloker -sn: Zaloker -description: This is Roy Zaloker's description -facsimileTelephoneNumber: +1 804 949-3485 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 804 805-9046 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: ZalokerR -givenName: Roy -mail: ZalokerR@cfa9cc9c255049a290ed0760c3f25871.bitwarden.com -carLicense: BHL5PA -departmentNumber: 4005 -employeeType: Normal -homePhone: +1 804 139-6968 -initials: R. Z. -mobile: +1 804 173-4820 -pager: +1 804 135-8625 -roomNumber: 9095 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karel Padiou,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karel Padiou -sn: Padiou -description: This is Karel Padiou's description -facsimileTelephoneNumber: +1 818 413-3214 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 326-1547 -title: Chief Peons Artist -userPassword: Password1 -uid: PadiouK -givenName: Karel -mail: PadiouK@28fe718e73d141bb8aec4e57b4f0fed7.bitwarden.com -carLicense: 71K9HI -departmentNumber: 9791 -employeeType: Normal -homePhone: +1 818 965-6536 -initials: K. P. -mobile: +1 818 883-4316 -pager: +1 818 528-1832 -roomNumber: 8285 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: BettyAnne Grondin -sn: Grondin -description: This is BettyAnne Grondin's description -facsimileTelephoneNumber: +1 408 112-6174 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 550-7121 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: GrondinB -givenName: BettyAnne -mail: GrondinB@03a260d7792e49df9dcbf44341e41013.bitwarden.com -carLicense: X1CGYG -departmentNumber: 6491 -employeeType: Normal -homePhone: +1 408 606-9359 -initials: B. G. -mobile: +1 408 689-9840 -pager: +1 408 338-6349 -roomNumber: 8955 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Taiwana Rhodes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Taiwana Rhodes -sn: Rhodes -description: This is Taiwana Rhodes's description -facsimileTelephoneNumber: +1 206 415-9843 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 772-5257 -title: Junior Management Director -userPassword: Password1 -uid: RhodesT -givenName: Taiwana -mail: RhodesT@9fd53b74c90b49729f78c608ecaf52b4.bitwarden.com -carLicense: 0YPXNV -departmentNumber: 2064 -employeeType: Employee -homePhone: +1 206 477-4622 -initials: T. R. -mobile: +1 206 535-4723 -pager: +1 206 594-4189 -roomNumber: 9628 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hedi Cicci,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hedi Cicci -sn: Cicci -description: This is Hedi Cicci's description -facsimileTelephoneNumber: +1 804 922-8897 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 448-8505 -title: Associate Human Resources Czar -userPassword: Password1 -uid: CicciH -givenName: Hedi -mail: CicciH@043d56c5a9b5484da04c37031ff21f8c.bitwarden.com -carLicense: Y9MBNJ -departmentNumber: 5837 -employeeType: Contract -homePhone: +1 804 348-9406 -initials: H. C. -mobile: +1 804 883-8916 -pager: +1 804 249-9773 -roomNumber: 8360 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabriellia Falbee -sn: Falbee -description: This is Gabriellia Falbee's description -facsimileTelephoneNumber: +1 408 293-5429 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 408 729-4005 -title: Associate Janitorial President -userPassword: Password1 -uid: FalbeeG -givenName: Gabriellia -mail: FalbeeG@8f6cef22f95545eb970358eaab952ea6.bitwarden.com -carLicense: X0N6KJ -departmentNumber: 2411 -employeeType: Normal -homePhone: +1 408 337-1005 -initials: G. F. -mobile: +1 408 636-5821 -pager: +1 408 305-2724 -roomNumber: 8608 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Valaria Limerick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valaria Limerick -sn: Limerick -description: This is Valaria Limerick's description -facsimileTelephoneNumber: +1 408 227-3536 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 895-7004 -title: Master Product Testing Mascot -userPassword: Password1 -uid: LimericV -givenName: Valaria -mail: LimericV@47da44f4e5614af2b9a07b9460a560de.bitwarden.com -carLicense: EFT107 -departmentNumber: 3544 -employeeType: Contract -homePhone: +1 408 608-6373 -initials: V. L. -mobile: +1 408 623-8605 -pager: +1 408 309-2175 -roomNumber: 9125 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Oralia Hoggan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oralia Hoggan -sn: Hoggan -description: This is Oralia Hoggan's description -facsimileTelephoneNumber: +1 818 483-3740 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 990-2125 -title: Junior Management Architect -userPassword: Password1 -uid: HogganO -givenName: Oralia -mail: HogganO@95c37524ee9249b9a3a0c719599d89eb.bitwarden.com -carLicense: KOR8BP -departmentNumber: 8894 -employeeType: Employee -homePhone: +1 818 723-7862 -initials: O. H. -mobile: +1 818 402-1069 -pager: +1 818 938-1037 -roomNumber: 8884 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Leyla Parham,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leyla Parham -sn: Parham -description: This is Leyla Parham's description -facsimileTelephoneNumber: +1 818 257-4744 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 874-9188 -title: Chief Management Artist -userPassword: Password1 -uid: ParhamL -givenName: Leyla -mail: ParhamL@cb7ed07b9f1d4c06aa0fee9e92377dab.bitwarden.com -carLicense: T9MNSV -departmentNumber: 2307 -employeeType: Employee -homePhone: +1 818 431-5318 -initials: L. P. -mobile: +1 818 651-7629 -pager: +1 818 792-1035 -roomNumber: 9456 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Derick Paar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Derick Paar -sn: Paar -description: This is Derick Paar's description -facsimileTelephoneNumber: +1 510 838-3924 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 359-2791 -title: Supreme Peons Evangelist -userPassword: Password1 -uid: PaarD -givenName: Derick -mail: PaarD@f26f4cdf87cd4a378442f5716c6bc0c3.bitwarden.com -carLicense: S895O7 -departmentNumber: 2942 -employeeType: Contract -homePhone: +1 510 445-5592 -initials: D. P. -mobile: +1 510 989-4689 -pager: +1 510 256-6387 -roomNumber: 9306 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dau Peart,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dau Peart -sn: Peart -description: This is Dau Peart's description -facsimileTelephoneNumber: +1 818 372-1499 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 818 264-9572 -title: Chief Peons Artist -userPassword: Password1 -uid: PeartD -givenName: Dau -mail: PeartD@5a071e6ada864fbfb27301166664af38.bitwarden.com -carLicense: LJVQ3W -departmentNumber: 9772 -employeeType: Employee -homePhone: +1 818 472-3234 -initials: D. P. -mobile: +1 818 779-4862 -pager: +1 818 150-5159 -roomNumber: 8128 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Danell Kapp,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danell Kapp -sn: Kapp -description: This is Danell Kapp's description -facsimileTelephoneNumber: +1 213 241-3683 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 756-4887 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: KappD -givenName: Danell -mail: KappD@6f354943caba4900b471133a6c94292f.bitwarden.com -carLicense: X5A259 -departmentNumber: 4170 -employeeType: Normal -homePhone: +1 213 508-6421 -initials: D. K. -mobile: +1 213 464-3135 -pager: +1 213 298-3489 -roomNumber: 9163 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pen Marshall,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pen Marshall -sn: Marshall -description: This is Pen Marshall's description -facsimileTelephoneNumber: +1 415 845-7507 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 693-4311 -title: Supreme Product Development Manager -userPassword: Password1 -uid: MarshalP -givenName: Pen -mail: MarshalP@f916ce27ce81484dbb62ae97089dfb33.bitwarden.com -carLicense: 888W0Q -departmentNumber: 4355 -employeeType: Contract -homePhone: +1 415 420-2462 -initials: P. M. -mobile: +1 415 527-9470 -pager: +1 415 345-1203 -roomNumber: 9890 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacalyn Dodgson -sn: Dodgson -description: This is Jacalyn Dodgson's description -facsimileTelephoneNumber: +1 213 591-6735 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 878-9413 -title: Junior Human Resources Warrior -userPassword: Password1 -uid: DodgsonJ -givenName: Jacalyn -mail: DodgsonJ@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com -carLicense: OWEY47 -departmentNumber: 3432 -employeeType: Normal -homePhone: +1 213 516-4399 -initials: J. D. -mobile: +1 213 588-1743 -pager: +1 213 120-2111 -roomNumber: 8004 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kary Soo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kary Soo -sn: Soo -description: This is Kary Soo's description -facsimileTelephoneNumber: +1 206 295-3554 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 206 534-3311 -title: Junior Management Evangelist -userPassword: Password1 -uid: SooK -givenName: Kary -mail: SooK@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com -carLicense: WUD90S -departmentNumber: 5211 -employeeType: Normal -homePhone: +1 206 952-2866 -initials: K. S. -mobile: +1 206 859-9368 -pager: +1 206 435-5300 -roomNumber: 8453 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dhanvinder Clipperton -sn: Clipperton -description: This is Dhanvinder Clipperton's description -facsimileTelephoneNumber: +1 818 646-8600 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 830-4953 -title: Master Human Resources Madonna -userPassword: Password1 -uid: ClipperD -givenName: Dhanvinder -mail: ClipperD@b9a2e7612aef443ebd9966e99249a73c.bitwarden.com -carLicense: RBD0EQ -departmentNumber: 3793 -employeeType: Employee -homePhone: +1 818 910-5809 -initials: D. C. -mobile: +1 818 379-3734 -pager: +1 818 266-5764 -roomNumber: 8431 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kiem Pracht,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiem Pracht -sn: Pracht -description: This is Kiem Pracht's description -facsimileTelephoneNumber: +1 408 333-3245 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 364-7043 -title: Supreme Payroll Technician -userPassword: Password1 -uid: PrachtK -givenName: Kiem -mail: PrachtK@e677741303634ac2804273adce139081.bitwarden.com -carLicense: 8VQ0LB -departmentNumber: 8598 -employeeType: Normal -homePhone: +1 408 397-2286 -initials: K. P. -mobile: +1 408 124-3745 -pager: +1 408 117-2828 -roomNumber: 9480 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dominga Senyildiz -sn: Senyildiz -description: This is Dominga Senyildiz's description -facsimileTelephoneNumber: +1 206 309-2725 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 728-8593 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: SenyildD -givenName: Dominga -mail: SenyildD@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com -carLicense: EL28F6 -departmentNumber: 7261 -employeeType: Contract -homePhone: +1 206 745-2572 -initials: D. S. -mobile: +1 206 476-5564 -pager: +1 206 759-6038 -roomNumber: 9038 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vick Marleau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vick Marleau -sn: Marleau -description: This is Vick Marleau's description -facsimileTelephoneNumber: +1 213 814-3028 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 803-6012 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: MarleauV -givenName: Vick -mail: MarleauV@9833226d7baa41fe919293bebd42f796.bitwarden.com -carLicense: LQ0012 -departmentNumber: 5500 -employeeType: Employee -homePhone: +1 213 521-7313 -initials: V. M. -mobile: +1 213 181-7975 -pager: +1 213 644-6354 -roomNumber: 8346 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Adrianna Bruder,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrianna Bruder -sn: Bruder -description: This is Adrianna Bruder's description -facsimileTelephoneNumber: +1 818 615-2138 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 530-9423 -title: Junior Management Technician -userPassword: Password1 -uid: BruderA -givenName: Adrianna -mail: BruderA@ba870021396f4a5691ef47f553098ab0.bitwarden.com -carLicense: 2I4U5K -departmentNumber: 9051 -employeeType: Normal -homePhone: +1 818 886-1063 -initials: A. B. -mobile: +1 818 113-6509 -pager: +1 818 273-1747 -roomNumber: 9261 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Isabelita Swinney,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isabelita Swinney -sn: Swinney -description: This is Isabelita Swinney's description -facsimileTelephoneNumber: +1 510 461-5923 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 510 900-6430 -title: Junior Peons Janitor -userPassword: Password1 -uid: SwinneyI -givenName: Isabelita -mail: SwinneyI@a67fe9a0cfe2484f900b487d2bc8fbf2.bitwarden.com -carLicense: 4VE3YJ -departmentNumber: 1046 -employeeType: Contract -homePhone: +1 510 976-8439 -initials: I. S. -mobile: +1 510 458-2896 -pager: +1 510 533-4394 -roomNumber: 8825 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fereidoon Shypski -sn: Shypski -description: This is Fereidoon Shypski's description -facsimileTelephoneNumber: +1 510 465-6333 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 323-7571 -title: Junior Human Resources Madonna -userPassword: Password1 -uid: ShypskiF -givenName: Fereidoon -mail: ShypskiF@5e72004cd5c54ab885896ad64d562293.bitwarden.com -carLicense: DIT9VB -departmentNumber: 6015 -employeeType: Normal -homePhone: +1 510 991-3584 -initials: F. S. -mobile: +1 510 430-8512 -pager: +1 510 921-4436 -roomNumber: 9856 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kelcey Lee,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelcey Lee -sn: Lee -description: This is Kelcey Lee's description -facsimileTelephoneNumber: +1 213 675-8465 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 704-9318 -title: Master Administrative Fellow -userPassword: Password1 -uid: LeeK -givenName: Kelcey -mail: LeeK@8349ed265bc74cb3b9674a8fb6ff8c4a.bitwarden.com -carLicense: 7PFJXC -departmentNumber: 8805 -employeeType: Employee -homePhone: +1 213 641-5515 -initials: K. L. -mobile: +1 213 225-3247 -pager: +1 213 326-8652 -roomNumber: 8774 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Brandy Koellner,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandy Koellner -sn: Koellner -description: This is Brandy Koellner's description -facsimileTelephoneNumber: +1 213 761-4118 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 234-5710 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: KoellneB -givenName: Brandy -mail: KoellneB@81a5522a2a9d4dc49f8fbc517ee60b13.bitwarden.com -carLicense: 40FWCY -departmentNumber: 9630 -employeeType: Employee -homePhone: +1 213 662-2124 -initials: B. K. -mobile: +1 213 831-6346 -pager: +1 213 933-4835 -roomNumber: 9248 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Selie Schedulers,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selie Schedulers -sn: Schedulers -description: This is Selie Schedulers's description -facsimileTelephoneNumber: +1 804 461-5892 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 615-8895 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: SchedulS -givenName: Selie -mail: SchedulS@59fd7fd5c9b94eff897d05888fea4340.bitwarden.com -carLicense: DNB85E -departmentNumber: 9337 -employeeType: Employee -homePhone: +1 804 956-7350 -initials: S. S. -mobile: +1 804 250-5995 -pager: +1 804 113-7453 -roomNumber: 9901 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Addons Dieter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Addons Dieter -sn: Dieter -description: This is Addons Dieter's description -facsimileTelephoneNumber: +1 415 641-9472 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 136-1123 -title: Chief Product Development Visionary -userPassword: Password1 -uid: DieterA -givenName: Addons -mail: DieterA@c17ef8e190ef47c58a216f111cfa28dc.bitwarden.com -carLicense: BKMWF4 -departmentNumber: 5582 -employeeType: Normal -homePhone: +1 415 567-4195 -initials: A. D. -mobile: +1 415 513-2691 -pager: +1 415 859-3130 -roomNumber: 9435 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lesly Willett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lesly Willett -sn: Willett -description: This is Lesly Willett's description -facsimileTelephoneNumber: +1 510 885-2177 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 329-9977 -title: Chief Peons Visionary -userPassword: Password1 -uid: WillettL -givenName: Lesly -mail: WillettL@1a46c6e7f89a43fabb02c5bfef5febd5.bitwarden.com -carLicense: Y823JA -departmentNumber: 4477 -employeeType: Employee -homePhone: +1 510 478-8817 -initials: L. W. -mobile: +1 510 362-7908 -pager: +1 510 485-2860 -roomNumber: 9397 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Coleman Wolski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coleman Wolski -sn: Wolski -description: This is Coleman Wolski's description -facsimileTelephoneNumber: +1 206 442-6711 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 206 688-2733 -title: Master Product Development Figurehead -userPassword: Password1 -uid: WolskiC -givenName: Coleman -mail: WolskiC@dff7261f6b3e4cf09c06f21dd7c7d26c.bitwarden.com -carLicense: 7NLKJH -departmentNumber: 6873 -employeeType: Employee -homePhone: +1 206 772-9456 -initials: C. W. -mobile: +1 206 993-1829 -pager: +1 206 863-5917 -roomNumber: 9755 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shutterbug Lauson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shutterbug Lauson -sn: Lauson -description: This is Shutterbug Lauson's description -facsimileTelephoneNumber: +1 510 432-1431 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 262-1748 -title: Master Management Vice President -userPassword: Password1 -uid: LausonS -givenName: Shutterbug -mail: LausonS@ea44c2476f934218bf3d758975e567c8.bitwarden.com -carLicense: BVC253 -departmentNumber: 9954 -employeeType: Employee -homePhone: +1 510 763-6975 -initials: S. L. -mobile: +1 510 145-1072 -pager: +1 510 965-8577 -roomNumber: 8773 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aveline Seetharaman -sn: Seetharaman -description: This is Aveline Seetharaman's description -facsimileTelephoneNumber: +1 213 988-6385 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 673-1773 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: SeetharA -givenName: Aveline -mail: SeetharA@58d046473fe24d0d8bf6f510239a1102.bitwarden.com -carLicense: PE16B7 -departmentNumber: 8984 -employeeType: Contract -homePhone: +1 213 277-7443 -initials: A. S. -mobile: +1 213 956-3498 -pager: +1 213 602-1281 -roomNumber: 8248 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nancy Oziskender,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nancy Oziskender -sn: Oziskender -description: This is Nancy Oziskender's description -facsimileTelephoneNumber: +1 213 485-2972 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 153-1917 -title: Supreme Payroll Writer -userPassword: Password1 -uid: OziskenN -givenName: Nancy -mail: OziskenN@d6177daa79a64f8eb62f8d79f0c41ce3.bitwarden.com -carLicense: 1MMN4K -departmentNumber: 2641 -employeeType: Contract -homePhone: +1 213 955-9613 -initials: N. O. -mobile: +1 213 798-7178 -pager: +1 213 648-8007 -roomNumber: 9416 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Doloritas Flowers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doloritas Flowers -sn: Flowers -description: This is Doloritas Flowers's description -facsimileTelephoneNumber: +1 206 443-5041 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 206 181-7849 -title: Master Management Consultant -userPassword: Password1 -uid: FlowersD -givenName: Doloritas -mail: FlowersD@6a1a5eea63134321b540021379837737.bitwarden.com -carLicense: VXTI32 -departmentNumber: 4880 -employeeType: Employee -homePhone: +1 206 322-2151 -initials: D. F. -mobile: +1 206 685-9007 -pager: +1 206 517-3289 -roomNumber: 9780 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Veleta Lun,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veleta Lun -sn: Lun -description: This is Veleta Lun's description -facsimileTelephoneNumber: +1 206 757-5319 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 756-1894 -title: Chief Payroll Mascot -userPassword: Password1 -uid: LunV -givenName: Veleta -mail: LunV@79eafeb75c844d3eaf6f5efd1b8c0977.bitwarden.com -carLicense: CQ80NM -departmentNumber: 1724 -employeeType: Employee -homePhone: +1 206 360-9309 -initials: V. L. -mobile: +1 206 780-5013 -pager: +1 206 727-8247 -roomNumber: 8830 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aila Speaker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aila Speaker -sn: Speaker -description: This is Aila Speaker's description -facsimileTelephoneNumber: +1 510 654-6685 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 510 451-8013 -title: Master Product Testing Manager -userPassword: Password1 -uid: SpeakerA -givenName: Aila -mail: SpeakerA@22b676e4c7dd4fe79235ea7758399705.bitwarden.com -carLicense: MBCIV4 -departmentNumber: 4794 -employeeType: Contract -homePhone: +1 510 359-7456 -initials: A. S. -mobile: +1 510 388-4934 -pager: +1 510 787-1447 -roomNumber: 8566 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Scptest Menna,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Scptest Menna -sn: Menna -description: This is Scptest Menna's description -facsimileTelephoneNumber: +1 213 735-5136 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 584-9161 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: MennaS -givenName: Scptest -mail: MennaS@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com -carLicense: HP5MBG -departmentNumber: 8634 -employeeType: Contract -homePhone: +1 213 207-4660 -initials: S. M. -mobile: +1 213 720-3123 -pager: +1 213 469-7193 -roomNumber: 8458 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Madeleine Goss,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madeleine Goss -sn: Goss -description: This is Madeleine Goss's description -facsimileTelephoneNumber: +1 804 705-1805 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 596-5433 -title: Chief Administrative Warrior -userPassword: Password1 -uid: GossM -givenName: Madeleine -mail: GossM@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com -carLicense: BC0IO8 -departmentNumber: 6320 -employeeType: Employee -homePhone: +1 804 920-7667 -initials: M. G. -mobile: +1 804 816-5773 -pager: +1 804 549-3064 -roomNumber: 8396 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Thuy Sullivan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thuy Sullivan -sn: Sullivan -description: This is Thuy Sullivan's description -facsimileTelephoneNumber: +1 206 129-7688 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 627-7831 -title: Supreme Product Development Architect -userPassword: Password1 -uid: SullivaT -givenName: Thuy -mail: SullivaT@f260a92a20974e44926d8337feae7384.bitwarden.com -carLicense: 6G6MLD -departmentNumber: 5416 -employeeType: Normal -homePhone: +1 206 629-9214 -initials: T. S. -mobile: +1 206 966-9205 -pager: +1 206 565-6050 -roomNumber: 9108 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sheridan Sandner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheridan Sandner -sn: Sandner -description: This is Sheridan Sandner's description -facsimileTelephoneNumber: +1 408 969-6700 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 236-5641 -title: Junior Product Development Writer -userPassword: Password1 -uid: SandnerS -givenName: Sheridan -mail: SandnerS@7022b955bef74762989f3e8241ec17a6.bitwarden.com -carLicense: 6URVNY -departmentNumber: 8610 -employeeType: Normal -homePhone: +1 408 578-8534 -initials: S. S. -mobile: +1 408 644-6831 -pager: +1 408 295-6047 -roomNumber: 9649 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Malory Groff,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malory Groff -sn: Groff -description: This is Malory Groff's description -facsimileTelephoneNumber: +1 213 769-1229 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 620-6590 -title: Supreme Payroll Madonna -userPassword: Password1 -uid: GroffM -givenName: Malory -mail: GroffM@83a8c1265a2948b59ee00a06831fe99b.bitwarden.com -carLicense: 6PAAVY -departmentNumber: 9500 -employeeType: Normal -homePhone: +1 213 516-5165 -initials: M. G. -mobile: +1 213 400-1915 -pager: +1 213 545-6137 -roomNumber: 9106 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Armine livinston,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Armine livinston -sn: livinston -description: This is Armine livinston's description -facsimileTelephoneNumber: +1 818 850-3485 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 818 621-3101 -title: Junior Administrative Stooge -userPassword: Password1 -uid: livinstA -givenName: Armine -mail: livinstA@eb2999c8fa284a3f8c9f7cd764a9ece1.bitwarden.com -carLicense: J0UMOK -departmentNumber: 5701 -employeeType: Normal -homePhone: +1 818 616-3454 -initials: A. l. -mobile: +1 818 249-3224 -pager: +1 818 676-5612 -roomNumber: 8771 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaukat Hankins -sn: Hankins -description: This is Shaukat Hankins's description -facsimileTelephoneNumber: +1 415 799-5873 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 248-5596 -title: Master Human Resources Artist -userPassword: Password1 -uid: HankinsS -givenName: Shaukat -mail: HankinsS@72d3ee658b6a43d28d374f5d8eed91ab.bitwarden.com -carLicense: 1SS1O9 -departmentNumber: 4051 -employeeType: Employee -homePhone: +1 415 143-6682 -initials: S. H. -mobile: +1 415 713-3740 -pager: +1 415 632-5642 -roomNumber: 9931 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Anibal Ribakovs,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anibal Ribakovs -sn: Ribakovs -description: This is Anibal Ribakovs's description -facsimileTelephoneNumber: +1 213 801-2177 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 748-9237 -title: Associate Management Engineer -userPassword: Password1 -uid: RibakovA -givenName: Anibal -mail: RibakovA@cd4acec6c2bb4065b089eb7a74e04db1.bitwarden.com -carLicense: L9Y6YC -departmentNumber: 4205 -employeeType: Normal -homePhone: +1 213 220-4615 -initials: A. R. -mobile: +1 213 528-7360 -pager: +1 213 681-3278 -roomNumber: 9968 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tao Kardomateas,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tao Kardomateas -sn: Kardomateas -description: This is Tao Kardomateas's description -facsimileTelephoneNumber: +1 510 851-4391 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 510 262-7863 -title: Junior Administrative Czar -userPassword: Password1 -uid: KardomaT -givenName: Tao -mail: KardomaT@f8af09b819014024bd18d58f41da44cd.bitwarden.com -carLicense: FNYNH9 -departmentNumber: 5552 -employeeType: Normal -homePhone: +1 510 571-4746 -initials: T. K. -mobile: +1 510 970-2189 -pager: +1 510 783-4483 -roomNumber: 9090 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisenda Gultekin -sn: Gultekin -description: This is Melisenda Gultekin's description -facsimileTelephoneNumber: +1 213 295-2257 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 213 246-2237 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: GultekiM -givenName: Melisenda -mail: GultekiM@8053af09c938471f9ad09445e16f631c.bitwarden.com -carLicense: JMVV38 -departmentNumber: 4975 -employeeType: Normal -homePhone: +1 213 585-6628 -initials: M. G. -mobile: +1 213 635-7647 -pager: +1 213 153-7144 -roomNumber: 8073 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mommy Neto,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mommy Neto -sn: Neto -description: This is Mommy Neto's description -facsimileTelephoneNumber: +1 804 159-7713 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 901-4230 -title: Chief Human Resources Artist -userPassword: Password1 -uid: NetoM -givenName: Mommy -mail: NetoM@9f63e83dc7124376aa907e1f46aa8250.bitwarden.com -carLicense: X8OHR8 -departmentNumber: 6942 -employeeType: Contract -homePhone: +1 804 636-4643 -initials: M. N. -mobile: +1 804 641-8348 -pager: +1 804 320-4392 -roomNumber: 9360 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Goldwyn Lister,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Goldwyn Lister -sn: Lister -description: This is Goldwyn Lister's description -facsimileTelephoneNumber: +1 408 385-3002 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 429-8048 -title: Junior Administrative Warrior -userPassword: Password1 -uid: ListerG -givenName: Goldwyn -mail: ListerG@beba94b4890142a087b66411df53d92a.bitwarden.com -carLicense: PH1EAH -departmentNumber: 1536 -employeeType: Employee -homePhone: +1 408 427-4254 -initials: G. L. -mobile: +1 408 197-4142 -pager: +1 408 992-5472 -roomNumber: 9158 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jesus Fraser,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jesus Fraser -sn: Fraser -description: This is Jesus Fraser's description -facsimileTelephoneNumber: +1 415 346-9519 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 693-9751 -title: Supreme Payroll Vice President -userPassword: Password1 -uid: FraserJ -givenName: Jesus -mail: FraserJ@8b756558381d4f26bb25a8056450ac9f.bitwarden.com -carLicense: CAET64 -departmentNumber: 3762 -employeeType: Contract -homePhone: +1 415 260-1197 -initials: J. F. -mobile: +1 415 222-1286 -pager: +1 415 838-9083 -roomNumber: 9434 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sabina Davison,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabina Davison -sn: Davison -description: This is Sabina Davison's description -facsimileTelephoneNumber: +1 213 956-6796 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 131-9723 -title: Master Peons Fellow -userPassword: Password1 -uid: DavisonS -givenName: Sabina -mail: DavisonS@daa1e24c0eb048798f1d4ee756ce865c.bitwarden.com -carLicense: QAMFNR -departmentNumber: 8711 -employeeType: Employee -homePhone: +1 213 574-1944 -initials: S. D. -mobile: +1 213 549-6904 -pager: +1 213 217-5908 -roomNumber: 9089 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aniko Scarborough -sn: Scarborough -description: This is Aniko Scarborough's description -facsimileTelephoneNumber: +1 408 623-9497 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 414-9854 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: ScarborA -givenName: Aniko -mail: ScarborA@7662f3c56c8f438dafc48f46ab18bd48.bitwarden.com -carLicense: YF725L -departmentNumber: 9873 -employeeType: Employee -homePhone: +1 408 440-7954 -initials: A. S. -mobile: +1 408 738-3882 -pager: +1 408 535-4196 -roomNumber: 8271 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tawnya Thiel -sn: Thiel -description: This is Tawnya Thiel's description -facsimileTelephoneNumber: +1 415 974-1779 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 381-5916 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: ThielT -givenName: Tawnya -mail: ThielT@a41e77135c5346be96b465a7d5d633c0.bitwarden.com -carLicense: Q0QJJ3 -departmentNumber: 8038 -employeeType: Contract -homePhone: +1 415 112-3861 -initials: T. T. -mobile: +1 415 991-8317 -pager: +1 415 423-1775 -roomNumber: 9347 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ohio Leong,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ohio Leong -sn: Leong -description: This is Ohio Leong's description -facsimileTelephoneNumber: +1 510 556-9500 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 864-3058 -title: Master Peons Engineer -userPassword: Password1 -uid: LeongO -givenName: Ohio -mail: LeongO@4664a2b63b254ce9b3d95a8c77ae6508.bitwarden.com -carLicense: S21WX8 -departmentNumber: 1408 -employeeType: Employee -homePhone: +1 510 165-3157 -initials: O. L. -mobile: +1 510 674-2130 -pager: +1 510 198-3838 -roomNumber: 9609 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Helma Fulford,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helma Fulford -sn: Fulford -description: This is Helma Fulford's description -facsimileTelephoneNumber: +1 510 752-7080 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 116-6250 -title: Master Janitorial Dictator -userPassword: Password1 -uid: FulfordH -givenName: Helma -mail: FulfordH@53f2a179085949f9929a0abb8a150cb6.bitwarden.com -carLicense: AIIA3A -departmentNumber: 4110 -employeeType: Employee -homePhone: +1 510 740-7949 -initials: H. F. -mobile: +1 510 910-3496 -pager: +1 510 197-7094 -roomNumber: 9057 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Wendy Ashford,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wendy Ashford -sn: Ashford -description: This is Wendy Ashford's description -facsimileTelephoneNumber: +1 804 380-6278 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 783-1607 -title: Junior Product Development Technician -userPassword: Password1 -uid: AshfordW -givenName: Wendy -mail: AshfordW@f409013fa2954a03ae4501e12af3b06b.bitwarden.com -carLicense: CMS4YS -departmentNumber: 4203 -employeeType: Normal -homePhone: +1 804 431-7667 -initials: W. A. -mobile: +1 804 854-8513 -pager: +1 804 922-1372 -roomNumber: 8196 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ricki Schadan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ricki Schadan -sn: Schadan -description: This is Ricki Schadan's description -facsimileTelephoneNumber: +1 818 626-7255 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 203-5966 -title: Associate Administrative Czar -userPassword: Password1 -uid: SchadanR -givenName: Ricki -mail: SchadanR@b8ae2136bfb44521a9e99c5d81fc17f7.bitwarden.com -carLicense: BEWH00 -departmentNumber: 9838 -employeeType: Contract -homePhone: +1 818 211-6352 -initials: R. S. -mobile: +1 818 950-2221 -pager: +1 818 888-5298 -roomNumber: 9159 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Carolee McClintock,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolee McClintock -sn: McClintock -description: This is Carolee McClintock's description -facsimileTelephoneNumber: +1 818 776-2950 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 818 433-1732 -title: Master Product Development Engineer -userPassword: Password1 -uid: McClintC -givenName: Carolee -mail: McClintC@27eb42f1314e46fc8bcbc24a42e4598e.bitwarden.com -carLicense: IQG3QH -departmentNumber: 9881 -employeeType: Contract -homePhone: +1 818 894-3372 -initials: C. M. -mobile: +1 818 287-7680 -pager: +1 818 358-4091 -roomNumber: 8696 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fara Phifer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fara Phifer -sn: Phifer -description: This is Fara Phifer's description -facsimileTelephoneNumber: +1 213 803-2044 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 288-9095 -title: Master Payroll Consultant -userPassword: Password1 -uid: PhiferF -givenName: Fara -mail: PhiferF@772d4127578e47699e9b196a161e8a46.bitwarden.com -carLicense: 0UYWPT -departmentNumber: 1738 -employeeType: Contract -homePhone: +1 213 795-5989 -initials: F. P. -mobile: +1 213 881-4379 -pager: +1 213 360-7424 -roomNumber: 9654 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jennee Jasmin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jennee Jasmin -sn: Jasmin -description: This is Jennee Jasmin's description -facsimileTelephoneNumber: +1 510 885-9004 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 857-4165 -title: Associate Administrative Madonna -userPassword: Password1 -uid: JasminJ -givenName: Jennee -mail: JasminJ@5b146323be6643e092b53ceb21e379e8.bitwarden.com -carLicense: TSEVC5 -departmentNumber: 7045 -employeeType: Contract -homePhone: +1 510 287-8941 -initials: J. J. -mobile: +1 510 766-2015 -pager: +1 510 358-1282 -roomNumber: 8381 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yatish Streng,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yatish Streng -sn: Streng -description: This is Yatish Streng's description -facsimileTelephoneNumber: +1 804 888-3591 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 110-4668 -title: Associate Janitorial Writer -userPassword: Password1 -uid: StrengY -givenName: Yatish -mail: StrengY@7d2914d75d254468950490f34fff79f9.bitwarden.com -carLicense: 32FWLP -departmentNumber: 1603 -employeeType: Employee -homePhone: +1 804 193-8655 -initials: Y. S. -mobile: +1 804 286-6666 -pager: +1 804 417-5045 -roomNumber: 9342 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mair Basladynski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mair Basladynski -sn: Basladynski -description: This is Mair Basladynski's description -facsimileTelephoneNumber: +1 804 619-9695 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 959-7795 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: BasladyM -givenName: Mair -mail: BasladyM@d4b58fe2bfde4032862e5386c0e20902.bitwarden.com -carLicense: AWTEI4 -departmentNumber: 5219 -employeeType: Employee -homePhone: +1 804 170-1072 -initials: M. B. -mobile: +1 804 776-6951 -pager: +1 804 703-6046 -roomNumber: 8158 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Karyn Bender,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karyn Bender -sn: Bender -description: This is Karyn Bender's description -facsimileTelephoneNumber: +1 510 449-3748 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 171-8712 -title: Master Administrative Vice President -userPassword: Password1 -uid: BenderK -givenName: Karyn -mail: BenderK@c26e885b4f4a47e7befaa9bedce07d04.bitwarden.com -carLicense: JV754G -departmentNumber: 2189 -employeeType: Contract -homePhone: +1 510 842-7288 -initials: K. B. -mobile: +1 510 490-4425 -pager: +1 510 984-3354 -roomNumber: 8689 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beate Ahlberg,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beate Ahlberg -sn: Ahlberg -description: This is Beate Ahlberg's description -facsimileTelephoneNumber: +1 213 939-9425 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 571-6021 -title: Associate Payroll Writer -userPassword: Password1 -uid: AhlbergB -givenName: Beate -mail: AhlbergB@b064b72d68464a06b3938f3f2abab372.bitwarden.com -carLicense: QBTB30 -departmentNumber: 7817 -employeeType: Contract -homePhone: +1 213 244-4441 -initials: B. A. -mobile: +1 213 620-6478 -pager: +1 213 204-7413 -roomNumber: 8984 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Roberto Binder,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roberto Binder -sn: Binder -description: This is Roberto Binder's description -facsimileTelephoneNumber: +1 408 887-9269 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 400-3529 -title: Chief Human Resources Artist -userPassword: Password1 -uid: BinderR -givenName: Roberto -mail: BinderR@b821fa0513d7408ebbfe73c94767102c.bitwarden.com -carLicense: 4DYT5C -departmentNumber: 1199 -employeeType: Employee -homePhone: +1 408 360-4449 -initials: R. B. -mobile: +1 408 391-3012 -pager: +1 408 859-8530 -roomNumber: 8845 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Miro Sparksman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miro Sparksman -sn: Sparksman -description: This is Miro Sparksman's description -facsimileTelephoneNumber: +1 510 595-4240 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 179-5998 -title: Master Janitorial Writer -userPassword: Password1 -uid: SparksmM -givenName: Miro -mail: SparksmM@4c2706f148d24c978855dfe00601ca6a.bitwarden.com -carLicense: SWRHA2 -departmentNumber: 6834 -employeeType: Normal -homePhone: +1 510 250-8054 -initials: M. S. -mobile: +1 510 864-9204 -pager: +1 510 536-4376 -roomNumber: 8970 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ethan Salazar,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ethan Salazar -sn: Salazar -description: This is Ethan Salazar's description -facsimileTelephoneNumber: +1 804 116-4333 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 994-5624 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: SalazarE -givenName: Ethan -mail: SalazarE@652b9ea2520d46da8b923406e54cf707.bitwarden.com -carLicense: NHH9XT -departmentNumber: 3364 -employeeType: Contract -homePhone: +1 804 909-8455 -initials: E. S. -mobile: +1 804 665-5596 -pager: +1 804 188-4622 -roomNumber: 8332 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elza Meubus,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elza Meubus -sn: Meubus -description: This is Elza Meubus's description -facsimileTelephoneNumber: +1 818 366-4330 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 246-3384 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: MeubusE -givenName: Elza -mail: MeubusE@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com -carLicense: 5S0WL0 -departmentNumber: 4702 -employeeType: Contract -homePhone: +1 818 197-3906 -initials: E. M. -mobile: +1 818 329-8873 -pager: +1 818 821-3083 -roomNumber: 9422 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: GokulChandra Vandagriff -sn: Vandagriff -description: This is GokulChandra Vandagriff's description -facsimileTelephoneNumber: +1 415 177-9246 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 353-6747 -title: Associate Product Development Developer -userPassword: Password1 -uid: VandagrG -givenName: GokulChandra -mail: VandagrG@9401b30c07d641ad85c9d343e51620fa.bitwarden.com -carLicense: O21PI7 -departmentNumber: 2475 -employeeType: Contract -homePhone: +1 415 935-9712 -initials: G. V. -mobile: +1 415 520-1788 -pager: +1 415 545-2491 -roomNumber: 9497 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Phyllida Peng,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phyllida Peng -sn: Peng -description: This is Phyllida Peng's description -facsimileTelephoneNumber: +1 415 148-5058 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 511-9899 -title: Supreme Product Development Architect -userPassword: Password1 -uid: PengP -givenName: Phyllida -mail: PengP@3b5097c7d33f4dd5b850d3928945e3fb.bitwarden.com -carLicense: X5OLYA -departmentNumber: 7414 -employeeType: Employee -homePhone: +1 415 316-7894 -initials: P. P. -mobile: +1 415 830-6892 -pager: +1 415 103-5055 -roomNumber: 8255 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Leslie Wagoner,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leslie Wagoner -sn: Wagoner -description: This is Leslie Wagoner's description -facsimileTelephoneNumber: +1 408 695-5343 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 540-5296 -title: Associate Administrative Mascot -userPassword: Password1 -uid: WagonerL -givenName: Leslie -mail: WagonerL@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com -carLicense: ORILIH -departmentNumber: 9872 -employeeType: Employee -homePhone: +1 408 423-7604 -initials: L. W. -mobile: +1 408 277-5283 -pager: +1 408 636-2071 -roomNumber: 8974 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Erning Dmsrtime,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erning Dmsrtime -sn: Dmsrtime -description: This is Erning Dmsrtime's description -facsimileTelephoneNumber: +1 415 584-6158 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 172-5870 -title: Master Peons Assistant -userPassword: Password1 -uid: DmsrtimE -givenName: Erning -mail: DmsrtimE@984a33b6fcea4c229307cb5a753888dd.bitwarden.com -carLicense: AY6EFU -departmentNumber: 3669 -employeeType: Contract -homePhone: +1 415 791-1445 -initials: E. D. -mobile: +1 415 558-3996 -pager: +1 415 114-9095 -roomNumber: 9238 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Frederica Barel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frederica Barel -sn: Barel -description: This is Frederica Barel's description -facsimileTelephoneNumber: +1 804 525-3318 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 535-9002 -title: Associate Janitorial Manager -userPassword: Password1 -uid: BarelF -givenName: Frederica -mail: BarelF@46b9c76000e34e4685e646b4677138bc.bitwarden.com -carLicense: YGG4BV -departmentNumber: 6576 -employeeType: Employee -homePhone: +1 804 420-9269 -initials: F. B. -mobile: +1 804 882-2775 -pager: +1 804 695-8028 -roomNumber: 9935 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wilkin Coupal,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilkin Coupal -sn: Coupal -description: This is Wilkin Coupal's description -facsimileTelephoneNumber: +1 213 626-2769 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 870-9787 -title: Master Management Writer -userPassword: Password1 -uid: CoupalW -givenName: Wilkin -mail: CoupalW@4e301d4682ea4f23b3797582ef8f2c42.bitwarden.com -carLicense: QV302N -departmentNumber: 3018 -employeeType: Contract -homePhone: +1 213 677-7442 -initials: W. C. -mobile: +1 213 826-5568 -pager: +1 213 685-7470 -roomNumber: 8737 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nancie BlakeKnox -sn: BlakeKnox -description: This is Nancie BlakeKnox's description -facsimileTelephoneNumber: +1 206 465-6852 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 613-3923 -title: Associate Peons Stooge -userPassword: Password1 -uid: BlakeKnN -givenName: Nancie -mail: BlakeKnN@e1893d7ef9564395a0b1b816030adce2.bitwarden.com -carLicense: 5NNVBG -departmentNumber: 6205 -employeeType: Normal -homePhone: +1 206 654-5842 -initials: N. B. -mobile: +1 206 118-4448 -pager: +1 206 504-4543 -roomNumber: 9723 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Millie Kenol,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Millie Kenol -sn: Kenol -description: This is Millie Kenol's description -facsimileTelephoneNumber: +1 408 484-5914 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 408-4887 -title: Chief Payroll Writer -userPassword: Password1 -uid: KenolM -givenName: Millie -mail: KenolM@d37901086196495ab5d77980959c7f35.bitwarden.com -carLicense: LATO72 -departmentNumber: 1546 -employeeType: Contract -homePhone: +1 408 748-3626 -initials: M. K. -mobile: +1 408 923-9721 -pager: +1 408 832-5674 -roomNumber: 9077 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Miklos Menzies,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miklos Menzies -sn: Menzies -description: This is Miklos Menzies's description -facsimileTelephoneNumber: +1 213 531-3896 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 213 849-5677 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: MenziesM -givenName: Miklos -mail: MenziesM@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com -carLicense: RSSXOC -departmentNumber: 7908 -employeeType: Contract -homePhone: +1 213 815-7781 -initials: M. M. -mobile: +1 213 304-6122 -pager: +1 213 619-1040 -roomNumber: 9618 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xantippe Ohmayer -sn: Ohmayer -description: This is Xantippe Ohmayer's description -facsimileTelephoneNumber: +1 408 174-4127 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 981-2175 -title: Master Janitorial Grunt -userPassword: Password1 -uid: OhmayerX -givenName: Xantippe -mail: OhmayerX@39abbceda00e41858d81e19cc3b490e4.bitwarden.com -carLicense: 9GTUAL -departmentNumber: 9974 -employeeType: Contract -homePhone: +1 408 823-3465 -initials: X. O. -mobile: +1 408 349-5794 -pager: +1 408 661-6299 -roomNumber: 9816 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=WenKai Peleato,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WenKai Peleato -sn: Peleato -description: This is WenKai Peleato's description -facsimileTelephoneNumber: +1 804 318-2698 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 510-7810 -title: Master Payroll Admin -userPassword: Password1 -uid: PeleatoW -givenName: WenKai -mail: PeleatoW@c2ddaecf94964357886149e7833e3267.bitwarden.com -carLicense: 8H8M38 -departmentNumber: 9239 -employeeType: Contract -homePhone: +1 804 770-7612 -initials: W. P. -mobile: +1 804 292-2249 -pager: +1 804 922-3407 -roomNumber: 8041 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=ChoLun Simser,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChoLun Simser -sn: Simser -description: This is ChoLun Simser's description -facsimileTelephoneNumber: +1 510 342-1438 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 547-6514 -title: Associate Janitorial Visionary -userPassword: Password1 -uid: SimserC -givenName: ChoLun -mail: SimserC@52375a276d8e4116b12e682b77fe0b05.bitwarden.com -carLicense: FBVN6P -departmentNumber: 2328 -employeeType: Contract -homePhone: +1 510 139-8603 -initials: C. S. -mobile: +1 510 141-6228 -pager: +1 510 573-7910 -roomNumber: 9440 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Minerva Paulett,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minerva Paulett -sn: Paulett -description: This is Minerva Paulett's description -facsimileTelephoneNumber: +1 804 527-1966 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 695-4234 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: PaulettM -givenName: Minerva -mail: PaulettM@0b6df1c2b33a45858d2011f826942879.bitwarden.com -carLicense: MEJLGA -departmentNumber: 4387 -employeeType: Employee -homePhone: +1 804 483-8997 -initials: M. P. -mobile: +1 804 292-3932 -pager: +1 804 542-4980 -roomNumber: 8242 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Asia Aleong,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Asia Aleong -sn: Aleong -description: This is Asia Aleong's description -facsimileTelephoneNumber: +1 213 206-6898 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 213 774-6408 -title: Associate Product Development Visionary -userPassword: Password1 -uid: AleongA -givenName: Asia -mail: AleongA@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com -carLicense: EH8DPR -departmentNumber: 1332 -employeeType: Normal -homePhone: +1 213 902-4526 -initials: A. A. -mobile: +1 213 196-4489 -pager: +1 213 238-7044 -roomNumber: 9783 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Xantippe Sydor,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xantippe Sydor -sn: Sydor -description: This is Xantippe Sydor's description -facsimileTelephoneNumber: +1 510 269-8949 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 300-4618 -title: Junior Product Development Director -userPassword: Password1 -uid: SydorX -givenName: Xantippe -mail: SydorX@c228283c030a4839b23b0d238ebb64f6.bitwarden.com -carLicense: 4QNNHL -departmentNumber: 1146 -employeeType: Normal -homePhone: +1 510 973-4318 -initials: X. S. -mobile: +1 510 908-6579 -pager: +1 510 693-7789 -roomNumber: 9664 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Devora Bunker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devora Bunker -sn: Bunker -description: This is Devora Bunker's description -facsimileTelephoneNumber: +1 408 836-7929 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 977-4615 -title: Associate Peons Visionary -userPassword: Password1 -uid: BunkerD -givenName: Devora -mail: BunkerD@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com -carLicense: 0U40GB -departmentNumber: 8868 -employeeType: Employee -homePhone: +1 408 666-5545 -initials: D. B. -mobile: +1 408 488-7363 -pager: +1 408 769-7813 -roomNumber: 9757 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hudai Dallago,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hudai Dallago -sn: Dallago -description: This is Hudai Dallago's description -facsimileTelephoneNumber: +1 206 566-3150 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 311-3889 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: DallagoH -givenName: Hudai -mail: DallagoH@a85c3929256747e4a90337c3ba0f9538.bitwarden.com -carLicense: 4N5IIO -departmentNumber: 8080 -employeeType: Contract -homePhone: +1 206 512-9288 -initials: H. D. -mobile: +1 206 364-8088 -pager: +1 206 544-8023 -roomNumber: 9675 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pamella Herman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pamella Herman -sn: Herman -description: This is Pamella Herman's description -facsimileTelephoneNumber: +1 408 803-6277 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 258-8444 -title: Associate Janitorial President -userPassword: Password1 -uid: HermanP -givenName: Pamella -mail: HermanP@bbf9c04e50a241698a5503a647ae8281.bitwarden.com -carLicense: DSRTHP -departmentNumber: 1829 -employeeType: Employee -homePhone: +1 408 366-8390 -initials: P. H. -mobile: +1 408 445-9768 -pager: +1 408 841-1862 -roomNumber: 8702 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Preston Marco,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Preston Marco -sn: Marco -description: This is Preston Marco's description -facsimileTelephoneNumber: +1 213 897-1338 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 235-4999 -title: Associate Administrative Engineer -userPassword: Password1 -uid: MarcoP -givenName: Preston -mail: MarcoP@232ca6cb0ac84bf8be33192693a35ba0.bitwarden.com -carLicense: JIR4M9 -departmentNumber: 1538 -employeeType: Normal -homePhone: +1 213 107-5124 -initials: P. M. -mobile: +1 213 409-6941 -pager: +1 213 326-1790 -roomNumber: 9232 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sybyl McIver,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sybyl McIver -sn: McIver -description: This is Sybyl McIver's description -facsimileTelephoneNumber: +1 213 785-9767 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 805-8325 -title: Chief Human Resources Janitor -userPassword: Password1 -uid: McIverS -givenName: Sybyl -mail: McIverS@a91ef43faba348c6bf66e409d4fd354b.bitwarden.com -carLicense: 7GNGJE -departmentNumber: 3526 -employeeType: Normal -homePhone: +1 213 246-8545 -initials: S. M. -mobile: +1 213 715-6923 -pager: +1 213 641-7698 -roomNumber: 8907 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fidelia Mehta,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fidelia Mehta -sn: Mehta -description: This is Fidelia Mehta's description -facsimileTelephoneNumber: +1 818 877-6899 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 260-8069 -title: Junior Peons Visionary -userPassword: Password1 -uid: MehtaF -givenName: Fidelia -mail: MehtaF@4f5cf3c68fb84cb583c3e869db2086bb.bitwarden.com -carLicense: VXOO8Y -departmentNumber: 4700 -employeeType: Normal -homePhone: +1 818 917-8116 -initials: F. M. -mobile: +1 818 460-2172 -pager: +1 818 177-2182 -roomNumber: 8811 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tom Boose,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tom Boose -sn: Boose -description: This is Tom Boose's description -facsimileTelephoneNumber: +1 415 564-1372 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 880-7764 -title: Chief Human Resources Director -userPassword: Password1 -uid: BooseT -givenName: Tom -mail: BooseT@5412480f8c82450aa52600d4e3893c99.bitwarden.com -carLicense: KLV0LE -departmentNumber: 8777 -employeeType: Normal -homePhone: +1 415 995-8254 -initials: T. B. -mobile: +1 415 833-2189 -pager: +1 415 935-5616 -roomNumber: 9077 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valentine Allahyari -sn: Allahyari -description: This is Valentine Allahyari's description -facsimileTelephoneNumber: +1 818 228-1724 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 235-1229 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: AllahyaV -givenName: Valentine -mail: AllahyaV@2941b888378b4b868ece831a080444c0.bitwarden.com -carLicense: JHXHP0 -departmentNumber: 9377 -employeeType: Employee -homePhone: +1 818 221-9284 -initials: V. A. -mobile: +1 818 928-5407 -pager: +1 818 423-9585 -roomNumber: 8164 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lorrel Manno,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorrel Manno -sn: Manno -description: This is Lorrel Manno's description -facsimileTelephoneNumber: +1 804 863-7619 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 801-7469 -title: Supreme Product Testing Technician -userPassword: Password1 -uid: MannoL -givenName: Lorrel -mail: MannoL@78bde8bce82c4d1dbca4b21bf7784813.bitwarden.com -carLicense: QMIY9U -departmentNumber: 5764 -employeeType: Employee -homePhone: +1 804 794-4793 -initials: L. M. -mobile: +1 804 429-8147 -pager: +1 804 227-7173 -roomNumber: 9926 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Stacee Finnie,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacee Finnie -sn: Finnie -description: This is Stacee Finnie's description -facsimileTelephoneNumber: +1 804 465-1368 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 375-9896 -title: Chief Administrative Architect -userPassword: Password1 -uid: FinnieS -givenName: Stacee -mail: FinnieS@01d98aa12a484f229c38604f374f5102.bitwarden.com -carLicense: VDW1NQ -departmentNumber: 8552 -employeeType: Normal -homePhone: +1 804 941-6797 -initials: S. F. -mobile: +1 804 365-3194 -pager: +1 804 634-9163 -roomNumber: 8645 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Clari Beshai,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clari Beshai -sn: Beshai -description: This is Clari Beshai's description -facsimileTelephoneNumber: +1 804 178-8573 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 804 229-4301 -title: Supreme Management President -userPassword: Password1 -uid: BeshaiC -givenName: Clari -mail: BeshaiC@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com -carLicense: RP5OYU -departmentNumber: 9159 -employeeType: Employee -homePhone: +1 804 871-4031 -initials: C. B. -mobile: +1 804 895-1960 -pager: +1 804 716-1894 -roomNumber: 9127 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lincoln Sasaki -sn: Sasaki -description: This is Lincoln Sasaki's description -facsimileTelephoneNumber: +1 408 107-4601 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 408 835-2695 -title: Associate Product Development Sales Rep -userPassword: Password1 -uid: SasakiL -givenName: Lincoln -mail: SasakiL@222d66226d1243a5a6fdebd55db86add.bitwarden.com -carLicense: O91AUS -departmentNumber: 6575 -employeeType: Normal -homePhone: +1 408 177-9659 -initials: L. S. -mobile: +1 408 228-3729 -pager: +1 408 546-6018 -roomNumber: 9327 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnnLorrain Sompong -sn: Sompong -description: This is AnnLorrain Sompong's description -facsimileTelephoneNumber: +1 408 627-6757 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 914-9538 -title: Junior Product Development Vice President -userPassword: Password1 -uid: SompongA -givenName: AnnLorrain -mail: SompongA@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com -carLicense: NNDALH -departmentNumber: 1191 -employeeType: Normal -homePhone: +1 408 627-8306 -initials: A. S. -mobile: +1 408 745-9957 -pager: +1 408 723-9283 -roomNumber: 9587 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Clovis Banigan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clovis Banigan -sn: Banigan -description: This is Clovis Banigan's description -facsimileTelephoneNumber: +1 818 640-7791 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 575-5003 -title: Chief Janitorial President -userPassword: Password1 -uid: BaniganC -givenName: Clovis -mail: BaniganC@b481e78cdf2a4d77b00e3eea0c5aaf43.bitwarden.com -carLicense: NITGS7 -departmentNumber: 8328 -employeeType: Contract -homePhone: +1 818 798-6050 -initials: C. B. -mobile: +1 818 336-5226 -pager: +1 818 989-1991 -roomNumber: 9286 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: VanKing Jarzemsky -sn: Jarzemsky -description: This is VanKing Jarzemsky's description -facsimileTelephoneNumber: +1 206 703-3908 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 870-7324 -title: Chief Administrative Artist -userPassword: Password1 -uid: JarzemsV -givenName: VanKing -mail: JarzemsV@7a9336a35e1e452eaecd685206f3ad31.bitwarden.com -carLicense: U6C5T5 -departmentNumber: 7132 -employeeType: Employee -homePhone: +1 206 365-4624 -initials: V. J. -mobile: +1 206 712-1532 -pager: +1 206 404-3805 -roomNumber: 8496 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cherin Shedd,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherin Shedd -sn: Shedd -description: This is Cherin Shedd's description -facsimileTelephoneNumber: +1 818 433-6865 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 939-9608 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: SheddC -givenName: Cherin -mail: SheddC@8687f426e30946c59d63176bb5ab09a5.bitwarden.com -carLicense: RQCEPB -departmentNumber: 4972 -employeeType: Contract -homePhone: +1 818 743-1270 -initials: C. S. -mobile: +1 818 414-4957 -pager: +1 818 277-2556 -roomNumber: 9237 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ivonne Whiting,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivonne Whiting -sn: Whiting -description: This is Ivonne Whiting's description -facsimileTelephoneNumber: +1 818 638-4592 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 663-2167 -title: Junior Product Development Manager -userPassword: Password1 -uid: WhitingI -givenName: Ivonne -mail: WhitingI@a3cf3eb4e8384906b167f943f1276871.bitwarden.com -carLicense: 018M9W -departmentNumber: 9773 -employeeType: Contract -homePhone: +1 818 872-4907 -initials: I. W. -mobile: +1 818 594-6501 -pager: +1 818 603-7564 -roomNumber: 9160 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ardra Gemmill,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardra Gemmill -sn: Gemmill -description: This is Ardra Gemmill's description -facsimileTelephoneNumber: +1 213 853-1060 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 683-1949 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: GemmillA -givenName: Ardra -mail: GemmillA@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com -carLicense: OQ7TK1 -departmentNumber: 1933 -employeeType: Normal -homePhone: +1 213 195-9121 -initials: A. G. -mobile: +1 213 284-9251 -pager: +1 213 513-9487 -roomNumber: 9300 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donielle OrgrenStreb -sn: OrgrenStreb -description: This is Donielle OrgrenStreb's description -facsimileTelephoneNumber: +1 804 890-4873 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 191-1168 -title: Supreme Product Development Janitor -userPassword: Password1 -uid: OrgrenSD -givenName: Donielle -mail: OrgrenSD@be56d01786b846e3aa64454147150e23.bitwarden.com -carLicense: SID4LD -departmentNumber: 5559 -employeeType: Normal -homePhone: +1 804 104-5297 -initials: D. O. -mobile: +1 804 340-8912 -pager: +1 804 749-4868 -roomNumber: 9030 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhHung Avery -sn: Avery -description: This is ThanhHung Avery's description -facsimileTelephoneNumber: +1 213 292-9871 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 302-5004 -title: Chief Janitorial Manager -userPassword: Password1 -uid: AveryT -givenName: ThanhHung -mail: AveryT@9dae1c3f52e14b249ec881c64e974c27.bitwarden.com -carLicense: GWWAED -departmentNumber: 1055 -employeeType: Employee -homePhone: +1 213 891-5999 -initials: T. A. -mobile: +1 213 543-9691 -pager: +1 213 356-8573 -roomNumber: 8800 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arthur Koch,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arthur Koch -sn: Koch -description: This is Arthur Koch's description -facsimileTelephoneNumber: +1 415 543-6024 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 236-9853 -title: Junior Product Testing Admin -userPassword: Password1 -uid: KochA -givenName: Arthur -mail: KochA@f3364372be9a4d4583e3d68752e6c188.bitwarden.com -carLicense: FI0IUA -departmentNumber: 9001 -employeeType: Employee -homePhone: +1 415 310-2270 -initials: A. K. -mobile: +1 415 295-9069 -pager: +1 415 805-7570 -roomNumber: 9035 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ursuline Wasmeier -sn: Wasmeier -description: This is Ursuline Wasmeier's description -facsimileTelephoneNumber: +1 818 305-7529 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 818 282-1199 -title: Master Payroll Consultant -userPassword: Password1 -uid: WasmeieU -givenName: Ursuline -mail: WasmeieU@566acb80e4d1481e9b6326f02804831d.bitwarden.com -carLicense: J6VCPX -departmentNumber: 7563 -employeeType: Contract -homePhone: +1 818 435-8630 -initials: U. W. -mobile: +1 818 622-6058 -pager: +1 818 676-7385 -roomNumber: 9356 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Leonie Begley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonie Begley -sn: Begley -description: This is Leonie Begley's description -facsimileTelephoneNumber: +1 818 865-8914 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 745-2822 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: BegleyL -givenName: Leonie -mail: BegleyL@08b747ef36c043dc831ace544361b178.bitwarden.com -carLicense: WFJVJ8 -departmentNumber: 9920 -employeeType: Contract -homePhone: +1 818 550-1373 -initials: L. B. -mobile: +1 818 419-2296 -pager: +1 818 537-6408 -roomNumber: 8180 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vanessa Thum,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanessa Thum -sn: Thum -description: This is Vanessa Thum's description -facsimileTelephoneNumber: +1 818 679-3715 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 652-7957 -title: Chief Human Resources Developer -userPassword: Password1 -uid: ThumV -givenName: Vanessa -mail: ThumV@c41cc1e3b0d842d3bbad24db018def06.bitwarden.com -carLicense: 443RH8 -departmentNumber: 2082 -employeeType: Normal -homePhone: +1 818 559-2687 -initials: V. T. -mobile: +1 818 430-3873 -pager: +1 818 267-7486 -roomNumber: 9838 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ursula ODwyer -sn: ODwyer -description: This is Ursula ODwyer's description -facsimileTelephoneNumber: +1 415 233-2514 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 222-3339 -title: Chief Product Testing Grunt -userPassword: Password1 -uid: ODwyerU -givenName: Ursula -mail: ODwyerU@2bc9bfa10bf3492f87ecd4ba4a4d9a54.bitwarden.com -carLicense: OV3LGV -departmentNumber: 6196 -employeeType: Contract -homePhone: +1 415 641-2743 -initials: U. O. -mobile: +1 415 940-5317 -pager: +1 415 972-3249 -roomNumber: 9835 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hugh Iannozzi -sn: Iannozzi -description: This is Hugh Iannozzi's description -facsimileTelephoneNumber: +1 213 541-7251 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 204-8239 -title: Chief Product Testing Technician -userPassword: Password1 -uid: IannozzH -givenName: Hugh -mail: IannozzH@93bb2a719868497094d1e687804f1eb7.bitwarden.com -carLicense: R6LPGS -departmentNumber: 2011 -employeeType: Normal -homePhone: +1 213 505-5123 -initials: H. I. -mobile: +1 213 660-7356 -pager: +1 213 383-5558 -roomNumber: 9754 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rey Boyer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rey Boyer -sn: Boyer -description: This is Rey Boyer's description -facsimileTelephoneNumber: +1 804 194-8707 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 804 956-5887 -title: Associate Management President -userPassword: Password1 -uid: BoyerR -givenName: Rey -mail: BoyerR@2b46da502e6546eaa33fd138fef00ac3.bitwarden.com -carLicense: 0ILN7E -departmentNumber: 5027 -employeeType: Normal -homePhone: +1 804 139-7151 -initials: R. B. -mobile: +1 804 967-4131 -pager: +1 804 622-3946 -roomNumber: 8447 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nanete Tomlinson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nanete Tomlinson -sn: Tomlinson -description: This is Nanete Tomlinson's description -facsimileTelephoneNumber: +1 213 579-1221 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 957-4029 -title: Master Peons Pinhead -userPassword: Password1 -uid: TomlinsN -givenName: Nanete -mail: TomlinsN@34766460128a4ee582041f543b9bd242.bitwarden.com -carLicense: 203OXS -departmentNumber: 9539 -employeeType: Normal -homePhone: +1 213 525-2744 -initials: N. T. -mobile: +1 213 909-7825 -pager: +1 213 328-6896 -roomNumber: 8168 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lorrie Lamy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorrie Lamy -sn: Lamy -description: This is Lorrie Lamy's description -facsimileTelephoneNumber: +1 804 542-2759 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 101-8125 -title: Master Administrative Artist -userPassword: Password1 -uid: LamyL -givenName: Lorrie -mail: LamyL@6882bb306b30484eac03893eca277bd3.bitwarden.com -carLicense: 5ISV6G -departmentNumber: 1965 -employeeType: Normal -homePhone: +1 804 612-1093 -initials: L. L. -mobile: +1 804 603-2974 -pager: +1 804 913-8809 -roomNumber: 8167 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Donal DorisHampton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donal DorisHampton -sn: DorisHampton -description: This is Donal DorisHampton's description -facsimileTelephoneNumber: +1 818 590-4402 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 364-8048 -title: Supreme Administrative Admin -userPassword: Password1 -uid: DorisHaD -givenName: Donal -mail: DorisHaD@b4ec3c43774d4a4baac80f55d5751b78.bitwarden.com -carLicense: MXXF67 -departmentNumber: 7781 -employeeType: Normal -homePhone: +1 818 404-5382 -initials: D. D. -mobile: +1 818 901-6595 -pager: +1 818 108-1545 -roomNumber: 8784 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leonardo Palasek,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonardo Palasek -sn: Palasek -description: This is Leonardo Palasek's description -facsimileTelephoneNumber: +1 206 485-2425 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 311-3163 -title: Chief Product Development Consultant -userPassword: Password1 -uid: PalasekL -givenName: Leonardo -mail: PalasekL@5406f1a2a8b3462dade05957b7fb225f.bitwarden.com -carLicense: 7NTB4S -departmentNumber: 6829 -employeeType: Employee -homePhone: +1 206 274-8197 -initials: L. P. -mobile: +1 206 413-5427 -pager: +1 206 107-4889 -roomNumber: 9368 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rhodie Seery,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhodie Seery -sn: Seery -description: This is Rhodie Seery's description -facsimileTelephoneNumber: +1 213 387-2286 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 407-4887 -title: Master Payroll Pinhead -userPassword: Password1 -uid: SeeryR -givenName: Rhodie -mail: SeeryR@069bff2c38b341aca5c431f6580b51ea.bitwarden.com -carLicense: EEEPX0 -departmentNumber: 6336 -employeeType: Normal -homePhone: +1 213 181-3797 -initials: R. S. -mobile: +1 213 448-2548 -pager: +1 213 430-6739 -roomNumber: 9835 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leonas Salomon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leonas Salomon -sn: Salomon -description: This is Leonas Salomon's description -facsimileTelephoneNumber: +1 415 255-8050 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 558-7483 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: SalomonL -givenName: Leonas -mail: SalomonL@2469cbc5a5404c8d818a74f1684adb09.bitwarden.com -carLicense: SSD1EW -departmentNumber: 5469 -employeeType: Employee -homePhone: +1 415 406-5635 -initials: L. S. -mobile: +1 415 529-3308 -pager: +1 415 825-5409 -roomNumber: 9631 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sibel McKnight,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibel McKnight -sn: McKnight -description: This is Sibel McKnight's description -facsimileTelephoneNumber: +1 804 214-3962 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 772-7636 -title: Master Administrative Engineer -userPassword: Password1 -uid: McKnighS -givenName: Sibel -mail: McKnighS@700c5d89fc4943989681c73525ca7752.bitwarden.com -carLicense: M53BMI -departmentNumber: 7285 -employeeType: Contract -homePhone: +1 804 307-8119 -initials: S. M. -mobile: +1 804 778-5913 -pager: +1 804 116-9340 -roomNumber: 8521 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anabel Borel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anabel Borel -sn: Borel -description: This is Anabel Borel's description -facsimileTelephoneNumber: +1 510 786-8605 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 510 259-5454 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: BorelA -givenName: Anabel -mail: BorelA@a8b705848c504748848b8aba539736f1.bitwarden.com -carLicense: RF3G5R -departmentNumber: 7245 -employeeType: Normal -homePhone: +1 510 887-8900 -initials: A. B. -mobile: +1 510 669-3549 -pager: +1 510 930-7799 -roomNumber: 8576 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Milo Gravitte,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milo Gravitte -sn: Gravitte -description: This is Milo Gravitte's description -facsimileTelephoneNumber: +1 510 929-7899 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 510 363-2497 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: GravittM -givenName: Milo -mail: GravittM@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com -carLicense: KJG0QW -departmentNumber: 1114 -employeeType: Contract -homePhone: +1 510 215-2455 -initials: M. G. -mobile: +1 510 788-1986 -pager: +1 510 673-7479 -roomNumber: 9479 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Katha Noddin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katha Noddin -sn: Noddin -description: This is Katha Noddin's description -facsimileTelephoneNumber: +1 408 771-9285 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 467-6433 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: NoddinK -givenName: Katha -mail: NoddinK@c7211550a0e54b11899929b0d44158ff.bitwarden.com -carLicense: QQ2PNT -departmentNumber: 4526 -employeeType: Normal -homePhone: +1 408 251-6377 -initials: K. N. -mobile: +1 408 146-1055 -pager: +1 408 208-8984 -roomNumber: 9569 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jami Baab,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jami Baab -sn: Baab -description: This is Jami Baab's description -facsimileTelephoneNumber: +1 213 122-4220 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 565-7629 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: BaabJ -givenName: Jami -mail: BaabJ@b8d27f90baae497697af4ac7133d782a.bitwarden.com -carLicense: BTU5NB -departmentNumber: 6326 -employeeType: Employee -homePhone: +1 213 591-2651 -initials: J. B. -mobile: +1 213 180-5079 -pager: +1 213 553-7407 -roomNumber: 9401 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Verna Petree,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verna Petree -sn: Petree -description: This is Verna Petree's description -facsimileTelephoneNumber: +1 804 286-6018 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 785-7237 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: PetreeV -givenName: Verna -mail: PetreeV@726a4125a7d94ad38a1dc92c2882e4bd.bitwarden.com -carLicense: 7UN8Q6 -departmentNumber: 6408 -employeeType: Normal -homePhone: +1 804 694-4993 -initials: V. P. -mobile: +1 804 981-4361 -pager: +1 804 121-9195 -roomNumber: 9147 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Adelia Leibich,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adelia Leibich -sn: Leibich -description: This is Adelia Leibich's description -facsimileTelephoneNumber: +1 804 525-2646 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 673-8489 -title: Chief Administrative Stooge -userPassword: Password1 -uid: LeibichA -givenName: Adelia -mail: LeibichA@1d233bc1764446c09e064881135ef88f.bitwarden.com -carLicense: KYU4C8 -departmentNumber: 4476 -employeeType: Employee -homePhone: +1 804 540-3626 -initials: A. L. -mobile: +1 804 710-1486 -pager: +1 804 979-3847 -roomNumber: 8468 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jann Marquart,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jann Marquart -sn: Marquart -description: This is Jann Marquart's description -facsimileTelephoneNumber: +1 213 815-6009 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 213 371-9433 -title: Junior Payroll Engineer -userPassword: Password1 -uid: MarquarJ -givenName: Jann -mail: MarquarJ@38e93300da7643e5ac4629316f76753a.bitwarden.com -carLicense: E5VX0N -departmentNumber: 1821 -employeeType: Normal -homePhone: +1 213 244-7785 -initials: J. M. -mobile: +1 213 360-1154 -pager: +1 213 371-4020 -roomNumber: 8579 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mirjam Cleary,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirjam Cleary -sn: Cleary -description: This is Mirjam Cleary's description -facsimileTelephoneNumber: +1 510 722-7999 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 196-1100 -title: Associate Peons Writer -userPassword: Password1 -uid: ClearyM -givenName: Mirjam -mail: ClearyM@3498d55f6fdc4726b3007b6eece0bd27.bitwarden.com -carLicense: HLNDS2 -departmentNumber: 2462 -employeeType: Contract -homePhone: +1 510 565-9680 -initials: M. C. -mobile: +1 510 211-5654 -pager: +1 510 396-2421 -roomNumber: 9561 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cissiee Osborne -sn: Osborne -description: This is Cissiee Osborne's description -facsimileTelephoneNumber: +1 415 749-4110 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 706-6971 -title: Master Product Testing Assistant -userPassword: Password1 -uid: OsborneC -givenName: Cissiee -mail: OsborneC@d5bcdf8a8a07400f8fa8236d15a8595d.bitwarden.com -carLicense: IWL73D -departmentNumber: 6145 -employeeType: Contract -homePhone: +1 415 416-7078 -initials: C. O. -mobile: +1 415 524-6419 -pager: +1 415 303-1984 -roomNumber: 9741 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anselma Sabat,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anselma Sabat -sn: Sabat -description: This is Anselma Sabat's description -facsimileTelephoneNumber: +1 415 581-1853 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 415 795-4232 -title: Supreme Human Resources Evangelist -userPassword: Password1 -uid: SabatA -givenName: Anselma -mail: SabatA@3b5bce68a3bf4abeb7101b36a2d13246.bitwarden.com -carLicense: HV2EV6 -departmentNumber: 3017 -employeeType: Contract -homePhone: +1 415 292-9596 -initials: A. S. -mobile: +1 415 618-9299 -pager: +1 415 755-8226 -roomNumber: 8229 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ursola Zagorski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ursola Zagorski -sn: Zagorski -description: This is Ursola Zagorski's description -facsimileTelephoneNumber: +1 415 852-9856 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 939-1152 -title: Junior Payroll Czar -userPassword: Password1 -uid: ZagorskU -givenName: Ursola -mail: ZagorskU@dff7cc6e7ee04fe98e5fdfa8cb0e3b40.bitwarden.com -carLicense: MFGIFY -departmentNumber: 6796 -employeeType: Employee -homePhone: +1 415 557-8860 -initials: U. Z. -mobile: +1 415 418-4964 -pager: +1 415 520-3555 -roomNumber: 9473 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gael Cho,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gael Cho -sn: Cho -description: This is Gael Cho's description -facsimileTelephoneNumber: +1 510 264-8001 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 510 749-8067 -title: Chief Peons Mascot -userPassword: Password1 -uid: ChoG -givenName: Gael -mail: ChoG@f1a2b4c9009a4b058da6b6f5ee233883.bitwarden.com -carLicense: B3FRCI -departmentNumber: 2240 -employeeType: Contract -homePhone: +1 510 668-5365 -initials: G. C. -mobile: +1 510 421-9704 -pager: +1 510 275-9319 -roomNumber: 9199 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacqueline Gallo -sn: Gallo -description: This is Jacqueline Gallo's description -facsimileTelephoneNumber: +1 818 322-4079 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 922-1462 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: GalloJ -givenName: Jacqueline -mail: GalloJ@a767b0f434554c6788caabae2da7ee65.bitwarden.com -carLicense: 0LF232 -departmentNumber: 4761 -employeeType: Contract -homePhone: +1 818 957-8334 -initials: J. G. -mobile: +1 818 339-9419 -pager: +1 818 906-4681 -roomNumber: 8291 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kris Rotzjean,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kris Rotzjean -sn: Rotzjean -description: This is Kris Rotzjean's description -facsimileTelephoneNumber: +1 213 998-8763 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 208-3904 -title: Associate Administrative Engineer -userPassword: Password1 -uid: RotzjeaK -givenName: Kris -mail: RotzjeaK@2f4e34ec099849fb8849d25db17f5d45.bitwarden.com -carLicense: BDNG15 -departmentNumber: 9952 -employeeType: Contract -homePhone: +1 213 326-4716 -initials: K. R. -mobile: +1 213 908-9527 -pager: +1 213 592-2017 -roomNumber: 8630 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zaneta Wun,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zaneta Wun -sn: Wun -description: This is Zaneta Wun's description -facsimileTelephoneNumber: +1 408 854-3711 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 621-7485 -title: Chief Product Development Artist -userPassword: Password1 -uid: WunZ -givenName: Zaneta -mail: WunZ@e17fea6e1c564882ab9a476cab0dc5ce.bitwarden.com -carLicense: 5LKMYR -departmentNumber: 8043 -employeeType: Contract -homePhone: +1 408 277-8383 -initials: Z. W. -mobile: +1 408 571-2093 -pager: +1 408 942-7978 -roomNumber: 8984 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guanyun McAdorey -sn: McAdorey -description: This is Guanyun McAdorey's description -facsimileTelephoneNumber: +1 818 968-5064 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 190-7996 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: McAdoreG -givenName: Guanyun -mail: McAdoreG@85bf85b5b4ba4460993e464e81ad3a57.bitwarden.com -carLicense: O91LDF -departmentNumber: 1843 -employeeType: Contract -homePhone: +1 818 411-4084 -initials: G. M. -mobile: +1 818 707-4795 -pager: +1 818 961-1393 -roomNumber: 9570 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ania Scalabrini,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ania Scalabrini -sn: Scalabrini -description: This is Ania Scalabrini's description -facsimileTelephoneNumber: +1 415 645-9438 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 437-3123 -title: Supreme Administrative Writer -userPassword: Password1 -uid: ScalabrA -givenName: Ania -mail: ScalabrA@6fd7a8381bd04762a7cac00d6e4b256a.bitwarden.com -carLicense: E46Q2J -departmentNumber: 9301 -employeeType: Employee -homePhone: +1 415 113-4539 -initials: A. S. -mobile: +1 415 714-4152 -pager: +1 415 948-1501 -roomNumber: 8168 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Andras Maruszak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andras Maruszak -sn: Maruszak -description: This is Andras Maruszak's description -facsimileTelephoneNumber: +1 510 785-2720 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 194-8002 -title: Supreme Human Resources Director -userPassword: Password1 -uid: MaruszaA -givenName: Andras -mail: MaruszaA@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com -carLicense: VP863E -departmentNumber: 6144 -employeeType: Employee -homePhone: +1 510 739-7707 -initials: A. M. -mobile: +1 510 772-8845 -pager: +1 510 504-5263 -roomNumber: 9282 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tab Kalair,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tab Kalair -sn: Kalair -description: This is Tab Kalair's description -facsimileTelephoneNumber: +1 804 275-8443 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 884-2099 -title: Chief Peons Writer -userPassword: Password1 -uid: KalairT -givenName: Tab -mail: KalairT@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com -carLicense: C8VEPW -departmentNumber: 8076 -employeeType: Normal -homePhone: +1 804 899-8765 -initials: T. K. -mobile: +1 804 985-5197 -pager: +1 804 764-7177 -roomNumber: 9914 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nadya Speer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nadya Speer -sn: Speer -description: This is Nadya Speer's description -facsimileTelephoneNumber: +1 818 818-8370 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 296-5621 -title: Supreme Administrative Architect -userPassword: Password1 -uid: SpeerN -givenName: Nadya -mail: SpeerN@cb407f95d05e476fad36365e35d9b1be.bitwarden.com -carLicense: 7FFUWV -departmentNumber: 4401 -employeeType: Employee -homePhone: +1 818 160-7715 -initials: N. S. -mobile: +1 818 925-3001 -pager: +1 818 718-5894 -roomNumber: 8007 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Turus Bisson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Turus Bisson -sn: Bisson -description: This is Turus Bisson's description -facsimileTelephoneNumber: +1 510 805-4602 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 789-5165 -title: Master Payroll Director -userPassword: Password1 -uid: BissonT -givenName: Turus -mail: BissonT@d3a0338aa0d94b49aa2150a5e12f9d53.bitwarden.com -carLicense: F2SXSC -departmentNumber: 2799 -employeeType: Contract -homePhone: +1 510 685-4893 -initials: T. B. -mobile: +1 510 128-7829 -pager: +1 510 144-8658 -roomNumber: 8550 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ioan Naylor,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ioan Naylor -sn: Naylor -description: This is Ioan Naylor's description -facsimileTelephoneNumber: +1 408 136-2008 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 962-9311 -title: Associate Payroll Architect -userPassword: Password1 -uid: NaylorI -givenName: Ioan -mail: NaylorI@6de603ec7e3b4b039bef3c781848cf1f.bitwarden.com -carLicense: JBQOON -departmentNumber: 5698 -employeeType: Normal -homePhone: +1 408 958-4170 -initials: I. N. -mobile: +1 408 586-3909 -pager: +1 408 929-6721 -roomNumber: 8391 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeroen Fleurima,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeroen Fleurima -sn: Fleurima -description: This is Jeroen Fleurima's description -facsimileTelephoneNumber: +1 408 885-5518 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 645-3185 -title: Junior Peons Grunt -userPassword: Password1 -uid: FleurimJ -givenName: Jeroen -mail: FleurimJ@b4c1c06974d240f190a6b3bfe9fdd375.bitwarden.com -carLicense: XHT4EB -departmentNumber: 4828 -employeeType: Contract -homePhone: +1 408 544-3278 -initials: J. F. -mobile: +1 408 293-1461 -pager: +1 408 685-9231 -roomNumber: 8442 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lacy Arai,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lacy Arai -sn: Arai -description: This is Lacy Arai's description -facsimileTelephoneNumber: +1 206 225-9379 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 206 573-8823 -title: Master Janitorial Writer -userPassword: Password1 -uid: AraiL -givenName: Lacy -mail: AraiL@341957991cd048f28879d34846561132.bitwarden.com -carLicense: SQC472 -departmentNumber: 2701 -employeeType: Employee -homePhone: +1 206 355-2156 -initials: L. A. -mobile: +1 206 310-5148 -pager: +1 206 535-3765 -roomNumber: 9240 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sylvain Hickin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sylvain Hickin -sn: Hickin -description: This is Sylvain Hickin's description -facsimileTelephoneNumber: +1 510 245-1512 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 789-9631 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: HickinS -givenName: Sylvain -mail: HickinS@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com -carLicense: FKWLNV -departmentNumber: 1230 -employeeType: Contract -homePhone: +1 510 249-5442 -initials: S. H. -mobile: +1 510 958-2606 -pager: +1 510 409-3346 -roomNumber: 9415 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Margaret Begley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margaret Begley -sn: Begley -description: This is Margaret Begley's description -facsimileTelephoneNumber: +1 206 343-8043 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 705-5555 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: BegleyM -givenName: Margaret -mail: BegleyM@b4ae1434dbd74e3f9fda915972e536aa.bitwarden.com -carLicense: P68KCB -departmentNumber: 8036 -employeeType: Contract -homePhone: +1 206 952-3031 -initials: M. B. -mobile: +1 206 185-2547 -pager: +1 206 976-4955 -roomNumber: 8529 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vick Lovegrove,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vick Lovegrove -sn: Lovegrove -description: This is Vick Lovegrove's description -facsimileTelephoneNumber: +1 804 626-9146 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 553-3811 -title: Chief Administrative Madonna -userPassword: Password1 -uid: LovegroV -givenName: Vick -mail: LovegroV@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com -carLicense: JFPU8N -departmentNumber: 6725 -employeeType: Employee -homePhone: +1 804 297-4227 -initials: V. L. -mobile: +1 804 714-7769 -pager: +1 804 544-6291 -roomNumber: 8068 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bob Acres,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bob Acres -sn: Acres -description: This is Bob Acres's description -facsimileTelephoneNumber: +1 804 818-9398 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 551-8326 -title: Junior Product Development Technician -userPassword: Password1 -uid: AcresB -givenName: Bob -mail: AcresB@392576165dfe4cafb8fa1d35ef39e725.bitwarden.com -carLicense: BF37AX -departmentNumber: 8006 -employeeType: Employee -homePhone: +1 804 767-2586 -initials: B. A. -mobile: +1 804 624-5737 -pager: +1 804 697-3045 -roomNumber: 8308 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dahlia Oost,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dahlia Oost -sn: Oost -description: This is Dahlia Oost's description -facsimileTelephoneNumber: +1 510 105-9393 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 440-2834 -title: Junior Management Admin -userPassword: Password1 -uid: OostD -givenName: Dahlia -mail: OostD@b4277bbde59048f39a27a7d14145a06f.bitwarden.com -carLicense: CLY94A -departmentNumber: 4669 -employeeType: Contract -homePhone: +1 510 752-4631 -initials: D. O. -mobile: +1 510 102-7320 -pager: +1 510 517-3466 -roomNumber: 9193 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claudie Hafiz -sn: Hafiz -description: This is Claudie Hafiz's description -facsimileTelephoneNumber: +1 818 428-9325 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 951-8484 -title: Chief Product Testing President -userPassword: Password1 -uid: HafizC -givenName: Claudie -mail: HafizC@6e374f55c08a4f9ea474b0f388c5e697.bitwarden.com -carLicense: T5V9DO -departmentNumber: 7514 -employeeType: Normal -homePhone: +1 818 877-8176 -initials: C. H. -mobile: +1 818 857-2942 -pager: +1 818 313-8233 -roomNumber: 8548 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reginald Cucuzzella -sn: Cucuzzella -description: This is Reginald Cucuzzella's description -facsimileTelephoneNumber: +1 408 218-6562 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 824-5257 -title: Supreme Administrative Czar -userPassword: Password1 -uid: CucuzzeR -givenName: Reginald -mail: CucuzzeR@7408ed731222450eb6a92df81540fc99.bitwarden.com -carLicense: 5FMO4N -departmentNumber: 8961 -employeeType: Normal -homePhone: +1 408 584-3764 -initials: R. C. -mobile: +1 408 436-7505 -pager: +1 408 455-6951 -roomNumber: 9840 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ianthe Yum,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ianthe Yum -sn: Yum -description: This is Ianthe Yum's description -facsimileTelephoneNumber: +1 818 614-7983 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 818 723-1286 -title: Junior Management Admin -userPassword: Password1 -uid: YumI -givenName: Ianthe -mail: YumI@8ded8bbd82ce42aeaa0782da2c17da44.bitwarden.com -carLicense: NNKPN4 -departmentNumber: 4422 -employeeType: Normal -homePhone: +1 818 373-5549 -initials: I. Y. -mobile: +1 818 795-8951 -pager: +1 818 122-9740 -roomNumber: 9307 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Judi Adamo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Judi Adamo -sn: Adamo -description: This is Judi Adamo's description -facsimileTelephoneNumber: +1 213 154-4589 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 497-9459 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: AdamoJ -givenName: Judi -mail: AdamoJ@f3ac3ffab8324597a10f7fe805a2cec5.bitwarden.com -carLicense: ADP319 -departmentNumber: 6338 -employeeType: Normal -homePhone: +1 213 675-9745 -initials: J. A. -mobile: +1 213 547-1268 -pager: +1 213 566-1729 -roomNumber: 8450 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinett Grzegorek -sn: Grzegorek -description: This is Robinett Grzegorek's description -facsimileTelephoneNumber: +1 408 138-4609 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 181-4277 -title: Master Human Resources Mascot -userPassword: Password1 -uid: GrzegorR -givenName: Robinett -mail: GrzegorR@e0413af3109149e7b81465a2065b0fa5.bitwarden.com -carLicense: TGOP5E -departmentNumber: 6230 -employeeType: Contract -homePhone: +1 408 466-4096 -initials: R. G. -mobile: +1 408 748-2395 -pager: +1 408 981-9515 -roomNumber: 8044 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Filibert Pachulski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Filibert Pachulski -sn: Pachulski -description: This is Filibert Pachulski's description -facsimileTelephoneNumber: +1 408 796-1964 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 407-1463 -title: Chief Peons Manager -userPassword: Password1 -uid: PachulsF -givenName: Filibert -mail: PachulsF@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com -carLicense: 0X4POE -departmentNumber: 1020 -employeeType: Employee -homePhone: +1 408 251-5070 -initials: F. P. -mobile: +1 408 534-9887 -pager: +1 408 197-4434 -roomNumber: 8257 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carmon Kroeger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmon Kroeger -sn: Kroeger -description: This is Carmon Kroeger's description -facsimileTelephoneNumber: +1 408 430-9617 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 552-2920 -title: Master Management Admin -userPassword: Password1 -uid: KroegerC -givenName: Carmon -mail: KroegerC@db74de76c5374bf883b5c0e4951495b9.bitwarden.com -carLicense: 2VE90I -departmentNumber: 8696 -employeeType: Employee -homePhone: +1 408 399-6581 -initials: C. K. -mobile: +1 408 701-4798 -pager: +1 408 486-9038 -roomNumber: 8399 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ZehirCharlie Rashidi -sn: Rashidi -description: This is ZehirCharlie Rashidi's description -facsimileTelephoneNumber: +1 818 649-4006 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 615-4902 -title: Supreme Administrative Czar -userPassword: Password1 -uid: RashidiZ -givenName: ZehirCharlie -mail: RashidiZ@8f2a1e9d087d433f9b3d1ae45af01378.bitwarden.com -carLicense: 01XSFG -departmentNumber: 7859 -employeeType: Employee -homePhone: +1 818 238-7844 -initials: Z. R. -mobile: +1 818 780-2888 -pager: +1 818 557-5121 -roomNumber: 9418 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Camellia Gavidia,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camellia Gavidia -sn: Gavidia -description: This is Camellia Gavidia's description -facsimileTelephoneNumber: +1 804 983-7540 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 804 579-5279 -title: Junior Administrative Madonna -userPassword: Password1 -uid: GavidiaC -givenName: Camellia -mail: GavidiaC@79642b513783409691dc1a7cf728c883.bitwarden.com -carLicense: MOJ6PQ -departmentNumber: 7972 -employeeType: Contract -homePhone: +1 804 917-1225 -initials: C. G. -mobile: +1 804 311-7847 -pager: +1 804 471-5026 -roomNumber: 9551 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fqa Abrams,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fqa Abrams -sn: Abrams -description: This is Fqa Abrams's description -facsimileTelephoneNumber: +1 510 636-8923 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 700-4730 -title: Chief Product Development Artist -userPassword: Password1 -uid: AbramsF -givenName: Fqa -mail: AbramsF@d8f66ef1670a411fb693fa464f75d8f1.bitwarden.com -carLicense: B6JOHY -departmentNumber: 8981 -employeeType: Employee -homePhone: +1 510 332-2247 -initials: F. A. -mobile: +1 510 136-4269 -pager: +1 510 645-6566 -roomNumber: 8096 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pepita Houston,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pepita Houston -sn: Houston -description: This is Pepita Houston's description -facsimileTelephoneNumber: +1 804 420-3510 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 596-4200 -title: Master Janitorial Janitor -userPassword: Password1 -uid: HoustonP -givenName: Pepita -mail: HoustonP@73f0541d56094177a29a390ca43c2beb.bitwarden.com -carLicense: EXCEJR -departmentNumber: 7624 -employeeType: Contract -homePhone: +1 804 195-5497 -initials: P. H. -mobile: +1 804 957-9628 -pager: +1 804 673-8525 -roomNumber: 8377 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harmi Yahyapour -sn: Yahyapour -description: This is Harmi Yahyapour's description -facsimileTelephoneNumber: +1 408 805-1872 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 351-6319 -title: Supreme Product Development Technician -userPassword: Password1 -uid: YahyapoH -givenName: Harmi -mail: YahyapoH@fff697695b6a47fc8837138d253e90f2.bitwarden.com -carLicense: NS27RO -departmentNumber: 4507 -employeeType: Normal -homePhone: +1 408 153-5940 -initials: H. Y. -mobile: +1 408 501-5751 -pager: +1 408 237-7945 -roomNumber: 9478 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Horst Becan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Horst Becan -sn: Becan -description: This is Horst Becan's description -facsimileTelephoneNumber: +1 510 625-8217 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 218-4987 -title: Associate Janitorial Visionary -userPassword: Password1 -uid: BecanH -givenName: Horst -mail: BecanH@3a9565077b2a44b684e188fe7f0cd0a1.bitwarden.com -carLicense: INIQN3 -departmentNumber: 7363 -employeeType: Employee -homePhone: +1 510 883-8037 -initials: H. B. -mobile: +1 510 639-2238 -pager: +1 510 495-4914 -roomNumber: 9657 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ericha Akai,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ericha Akai -sn: Akai -description: This is Ericha Akai's description -facsimileTelephoneNumber: +1 415 707-5990 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 780-9421 -title: Master Product Development Warrior -userPassword: Password1 -uid: AkaiE -givenName: Ericha -mail: AkaiE@ead1ebc11a6a43c4a4973f8778d92cf0.bitwarden.com -carLicense: WCDMMR -departmentNumber: 7195 -employeeType: Employee -homePhone: +1 415 813-1030 -initials: E. A. -mobile: +1 415 854-7194 -pager: +1 415 295-8346 -roomNumber: 8498 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mina Amato,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mina Amato -sn: Amato -description: This is Mina Amato's description -facsimileTelephoneNumber: +1 206 904-3485 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 352-7828 -title: Chief Payroll Vice President -userPassword: Password1 -uid: AmatoM -givenName: Mina -mail: AmatoM@9ce658881e8c455194b88b370a33621e.bitwarden.com -carLicense: AI11MC -departmentNumber: 8842 -employeeType: Employee -homePhone: +1 206 777-9390 -initials: M. A. -mobile: +1 206 596-1923 -pager: +1 206 778-4027 -roomNumber: 8001 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Katherine Ostarello,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katherine Ostarello -sn: Ostarello -description: This is Katherine Ostarello's description -facsimileTelephoneNumber: +1 213 617-5826 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 520-9440 -title: Supreme Management Developer -userPassword: Password1 -uid: OstarelK -givenName: Katherine -mail: OstarelK@f374f272c7c44ad9bdc88a75e3e22f88.bitwarden.com -carLicense: NP41P8 -departmentNumber: 1146 -employeeType: Normal -homePhone: +1 213 970-5491 -initials: K. O. -mobile: +1 213 324-2405 -pager: +1 213 175-6248 -roomNumber: 9173 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mario Bice,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mario Bice -sn: Bice -description: This is Mario Bice's description -facsimileTelephoneNumber: +1 213 359-1087 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 924-7960 -title: Junior Product Testing Assistant -userPassword: Password1 -uid: BiceM -givenName: Mario -mail: BiceM@01d519b2c3cc4b749d2c74cc03a56716.bitwarden.com -carLicense: FDSBFN -departmentNumber: 1424 -employeeType: Normal -homePhone: +1 213 472-7695 -initials: M. B. -mobile: +1 213 446-3670 -pager: +1 213 779-4406 -roomNumber: 9048 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Srinivas Rolls -sn: Rolls -description: This is Srinivas Rolls's description -facsimileTelephoneNumber: +1 415 860-3983 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 187-7297 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: RollsS -givenName: Srinivas -mail: RollsS@4781f85f1c214dff92b5f07239287faa.bitwarden.com -carLicense: SVTTVT -departmentNumber: 8485 -employeeType: Normal -homePhone: +1 415 973-1515 -initials: S. R. -mobile: +1 415 376-9762 -pager: +1 415 307-8557 -roomNumber: 8926 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Othelia Radford,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Othelia Radford -sn: Radford -description: This is Othelia Radford's description -facsimileTelephoneNumber: +1 213 786-7441 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 122-4302 -title: Master Payroll Vice President -userPassword: Password1 -uid: RadfordO -givenName: Othelia -mail: RadfordO@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com -carLicense: ETOMKH -departmentNumber: 7632 -employeeType: Contract -homePhone: +1 213 688-1414 -initials: O. R. -mobile: +1 213 456-7009 -pager: +1 213 829-5067 -roomNumber: 9794 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Meta Todloski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meta Todloski -sn: Todloski -description: This is Meta Todloski's description -facsimileTelephoneNumber: +1 510 518-1570 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 510 656-1272 -title: Supreme Payroll Developer -userPassword: Password1 -uid: TodloskM -givenName: Meta -mail: TodloskM@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com -carLicense: DR5BJ9 -departmentNumber: 3168 -employeeType: Employee -homePhone: +1 510 966-2137 -initials: M. T. -mobile: +1 510 686-1743 -pager: +1 510 610-2157 -roomNumber: 8654 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tabbitha Hershberger -sn: Hershberger -description: This is Tabbitha Hershberger's description -facsimileTelephoneNumber: +1 415 434-9123 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 338-2257 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: HershbeT -givenName: Tabbitha -mail: HershbeT@014bccc9396c433988180fbafa28a36d.bitwarden.com -carLicense: 9GTPQP -departmentNumber: 5865 -employeeType: Employee -homePhone: +1 415 382-2974 -initials: T. H. -mobile: +1 415 889-5784 -pager: +1 415 749-7007 -roomNumber: 9840 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacinda Gadzinowski -sn: Gadzinowski -description: This is Jacinda Gadzinowski's description -facsimileTelephoneNumber: +1 213 468-7929 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 574-8068 -title: Chief Janitorial Punk -userPassword: Password1 -uid: GadzinoJ -givenName: Jacinda -mail: GadzinoJ@3beca394b1bb4c3c97c7025a5ba48c80.bitwarden.com -carLicense: 8ECHON -departmentNumber: 7134 -employeeType: Employee -homePhone: +1 213 789-6648 -initials: J. G. -mobile: +1 213 398-9353 -pager: +1 213 182-6934 -roomNumber: 9763 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Riyaz Georges,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Riyaz Georges -sn: Georges -description: This is Riyaz Georges's description -facsimileTelephoneNumber: +1 408 779-7054 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 649-7842 -title: Chief Administrative Architect -userPassword: Password1 -uid: GeorgesR -givenName: Riyaz -mail: GeorgesR@5c4a37a22c51408494bd04d688d4cd1a.bitwarden.com -carLicense: HGNAQF -departmentNumber: 8156 -employeeType: Employee -homePhone: +1 408 452-2864 -initials: R. G. -mobile: +1 408 978-6168 -pager: +1 408 837-3074 -roomNumber: 9887 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Teddi Connell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teddi Connell -sn: Connell -description: This is Teddi Connell's description -facsimileTelephoneNumber: +1 213 138-3957 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 643-6588 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: ConnellT -givenName: Teddi -mail: ConnellT@cb0fd14a62264345a0844bec81676fd8.bitwarden.com -carLicense: L0CN7T -departmentNumber: 1958 -employeeType: Contract -homePhone: +1 213 887-8606 -initials: T. C. -mobile: +1 213 135-2931 -pager: +1 213 938-2131 -roomNumber: 8252 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Huong OKelly,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huong OKelly -sn: OKelly -description: This is Huong OKelly's description -facsimileTelephoneNumber: +1 804 991-1925 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 378-5115 -title: Master Human Resources Fellow -userPassword: Password1 -uid: OKellyH -givenName: Huong -mail: OKellyH@1babd519a8034b2d99c4603db1b7c5f2.bitwarden.com -carLicense: COFXL1 -departmentNumber: 9585 -employeeType: Employee -homePhone: +1 804 499-8984 -initials: H. O. -mobile: +1 804 710-1601 -pager: +1 804 419-9860 -roomNumber: 9048 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kokkhiang Instal -sn: Instal -description: This is Kokkhiang Instal's description -facsimileTelephoneNumber: +1 206 301-9359 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 832-8156 -title: Supreme Payroll Grunt -userPassword: Password1 -uid: InstalK -givenName: Kokkhiang -mail: InstalK@e460ad35028e4180bb22b6ed74c22cc7.bitwarden.com -carLicense: R7JHLA -departmentNumber: 6704 -employeeType: Employee -homePhone: +1 206 366-9883 -initials: K. I. -mobile: +1 206 332-5499 -pager: +1 206 357-2988 -roomNumber: 8879 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maddalena Dillard,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maddalena Dillard -sn: Dillard -description: This is Maddalena Dillard's description -facsimileTelephoneNumber: +1 408 950-1981 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 262-9578 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: DillardM -givenName: Maddalena -mail: DillardM@bc7abecae5134db19820cef4bc298003.bitwarden.com -carLicense: MYFMX0 -departmentNumber: 7514 -employeeType: Normal -homePhone: +1 408 737-6795 -initials: M. D. -mobile: +1 408 459-1417 -pager: +1 408 611-6358 -roomNumber: 8403 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Amandip Lescot,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amandip Lescot -sn: Lescot -description: This is Amandip Lescot's description -facsimileTelephoneNumber: +1 415 823-2734 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 848-9574 -title: Chief Product Testing President -userPassword: Password1 -uid: LescotA -givenName: Amandip -mail: LescotA@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com -carLicense: NVTVO5 -departmentNumber: 1336 -employeeType: Contract -homePhone: +1 415 957-5992 -initials: A. L. -mobile: +1 415 961-9141 -pager: +1 415 757-5873 -roomNumber: 9217 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fletcher Buckalew -sn: Buckalew -description: This is Fletcher Buckalew's description -facsimileTelephoneNumber: +1 408 291-3466 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 408 362-4371 -title: Chief Janitorial Technician -userPassword: Password1 -uid: BuckaleF -givenName: Fletcher -mail: BuckaleF@a6b1af155ea940a7a1d1c1985151458a.bitwarden.com -carLicense: JTBSSC -departmentNumber: 4929 -employeeType: Contract -homePhone: +1 408 247-6569 -initials: F. B. -mobile: +1 408 335-9890 -pager: +1 408 789-1358 -roomNumber: 9325 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Verinder Chiou,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verinder Chiou -sn: Chiou -description: This is Verinder Chiou's description -facsimileTelephoneNumber: +1 415 738-2773 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 856-3756 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: ChiouV -givenName: Verinder -mail: ChiouV@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com -carLicense: M7JB4M -departmentNumber: 7658 -employeeType: Employee -homePhone: +1 415 543-3709 -initials: V. C. -mobile: +1 415 457-1213 -pager: +1 415 963-4655 -roomNumber: 9403 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Helmut Asdel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helmut Asdel -sn: Asdel -description: This is Helmut Asdel's description -facsimileTelephoneNumber: +1 818 898-7535 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 818 150-6916 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: AsdelH -givenName: Helmut -mail: AsdelH@fdc4e6b69a144dc99f4eca6e90ea8737.bitwarden.com -carLicense: GS4SDA -departmentNumber: 8169 -employeeType: Contract -homePhone: +1 818 624-4774 -initials: H. A. -mobile: +1 818 307-5490 -pager: +1 818 727-9910 -roomNumber: 8823 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vital Therrien,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vital Therrien -sn: Therrien -description: This is Vital Therrien's description -facsimileTelephoneNumber: +1 818 853-7249 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 818 237-9320 -title: Master Human Resources Visionary -userPassword: Password1 -uid: TherrieV -givenName: Vital -mail: TherrieV@6f8fc3d9f81d4922bdbfea87952e7cbd.bitwarden.com -carLicense: O99L9R -departmentNumber: 2881 -employeeType: Contract -homePhone: +1 818 301-9402 -initials: V. T. -mobile: +1 818 519-3686 -pager: +1 818 929-1471 -roomNumber: 9977 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ileana Bottomley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ileana Bottomley -sn: Bottomley -description: This is Ileana Bottomley's description -facsimileTelephoneNumber: +1 818 750-7892 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 474-5610 -title: Junior Payroll Warrior -userPassword: Password1 -uid: BottomlI -givenName: Ileana -mail: BottomlI@7a5d1ad8eb2448ff80683da3323f6f84.bitwarden.com -carLicense: CPPID2 -departmentNumber: 6209 -employeeType: Employee -homePhone: +1 818 443-4751 -initials: I. B. -mobile: +1 818 966-2968 -pager: +1 818 700-8865 -roomNumber: 8338 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Julian Condurelis,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julian Condurelis -sn: Condurelis -description: This is Julian Condurelis's description -facsimileTelephoneNumber: +1 818 382-6170 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 818 704-4110 -title: Associate Management Assistant -userPassword: Password1 -uid: CondureJ -givenName: Julian -mail: CondureJ@f648ab5b740d44ca8b0dc821ba7c94a0.bitwarden.com -carLicense: FWFPTW -departmentNumber: 7117 -employeeType: Employee -homePhone: +1 818 702-6147 -initials: J. C. -mobile: +1 818 224-2094 -pager: +1 818 355-2966 -roomNumber: 8273 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilhelmus Lupher -sn: Lupher -description: This is Wilhelmus Lupher's description -facsimileTelephoneNumber: +1 213 990-1789 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 397-6218 -title: Associate Payroll Consultant -userPassword: Password1 -uid: LupherW -givenName: Wilhelmus -mail: LupherW@a3d3bf444e8449f58c24d388c9e4253b.bitwarden.com -carLicense: KGFX4T -departmentNumber: 5086 -employeeType: Normal -homePhone: +1 213 269-5476 -initials: W. L. -mobile: +1 213 985-5587 -pager: +1 213 263-6711 -roomNumber: 8917 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nashib Mikulka,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nashib Mikulka -sn: Mikulka -description: This is Nashib Mikulka's description -facsimileTelephoneNumber: +1 804 355-5486 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 297-3066 -title: Associate Payroll Vice President -userPassword: Password1 -uid: MikulkaN -givenName: Nashib -mail: MikulkaN@a21f8badf17c4b4dbce73be0734b9d87.bitwarden.com -carLicense: O2CF6K -departmentNumber: 4597 -employeeType: Employee -homePhone: +1 804 372-4408 -initials: N. M. -mobile: +1 804 701-1538 -pager: +1 804 101-3527 -roomNumber: 9262 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Payroll Dantzler -sn: Dantzler -description: This is Payroll Dantzler's description -facsimileTelephoneNumber: +1 408 609-3165 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 555-8377 -title: Supreme Janitorial President -userPassword: Password1 -uid: DantzleP -givenName: Payroll -mail: DantzleP@44c07bc2a46540df9dcdebec16008404.bitwarden.com -carLicense: OVFCCC -departmentNumber: 3084 -employeeType: Normal -homePhone: +1 408 724-1176 -initials: P. D. -mobile: +1 408 465-8723 -pager: +1 408 318-7691 -roomNumber: 9204 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brena Foxworthy -sn: Foxworthy -description: This is Brena Foxworthy's description -facsimileTelephoneNumber: +1 818 777-1158 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 297-1039 -title: Associate Human Resources Developer -userPassword: Password1 -uid: FoxwortB -givenName: Brena -mail: FoxwortB@e358162fa0384d918adc01a68c3773f5.bitwarden.com -carLicense: EXDC2R -departmentNumber: 1889 -employeeType: Normal -homePhone: +1 818 496-9921 -initials: B. F. -mobile: +1 818 431-9727 -pager: +1 818 353-9504 -roomNumber: 8790 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cristie Nill,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristie Nill -sn: Nill -description: This is Cristie Nill's description -facsimileTelephoneNumber: +1 818 412-4095 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 810-9839 -title: Junior Product Development Evangelist -userPassword: Password1 -uid: NillC -givenName: Cristie -mail: NillC@0573bd112aca464284b0d9eac2753606.bitwarden.com -carLicense: WRWX3N -departmentNumber: 7625 -employeeType: Contract -homePhone: +1 818 464-6855 -initials: C. N. -mobile: +1 818 517-6742 -pager: +1 818 616-4647 -roomNumber: 8472 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ibrahim Maheu -sn: Maheu -description: This is Ibrahim Maheu's description -facsimileTelephoneNumber: +1 206 575-8661 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 796-9615 -title: Supreme Janitorial Stooge -userPassword: Password1 -uid: MaheuI -givenName: Ibrahim -mail: MaheuI@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com -carLicense: 13YYY1 -departmentNumber: 5769 -employeeType: Contract -homePhone: +1 206 847-1226 -initials: I. M. -mobile: +1 206 523-9758 -pager: +1 206 756-1004 -roomNumber: 9675 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Oliy Maloney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oliy Maloney -sn: Maloney -description: This is Oliy Maloney's description -facsimileTelephoneNumber: +1 804 902-4926 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 379-8955 -title: Associate Administrative Madonna -userPassword: Password1 -uid: MaloneyO -givenName: Oliy -mail: MaloneyO@9394232bb6834307ab4f6670c80c01e8.bitwarden.com -carLicense: CEOY1R -departmentNumber: 2138 -employeeType: Contract -homePhone: +1 804 676-3609 -initials: O. M. -mobile: +1 804 164-8762 -pager: +1 804 607-4029 -roomNumber: 8801 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Davita Berger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davita Berger -sn: Berger -description: This is Davita Berger's description -facsimileTelephoneNumber: +1 415 853-2472 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 774-2195 -title: Supreme Peons Architect -userPassword: Password1 -uid: BergerD -givenName: Davita -mail: BergerD@623538f66c6d44c9949856d7b9d692ad.bitwarden.com -carLicense: KXLEFT -departmentNumber: 2706 -employeeType: Contract -homePhone: +1 415 124-2289 -initials: D. B. -mobile: +1 415 316-9915 -pager: +1 415 373-6142 -roomNumber: 9729 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Metyn Mullaly,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Metyn Mullaly -sn: Mullaly -description: This is Metyn Mullaly's description -facsimileTelephoneNumber: +1 206 939-8337 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 206 489-5546 -title: Supreme Product Development Developer -userPassword: Password1 -uid: MullalyM -givenName: Metyn -mail: MullalyM@beb04887c3a74fa0ae74089e879db636.bitwarden.com -carLicense: A2O0HN -departmentNumber: 8733 -employeeType: Contract -homePhone: +1 206 994-7314 -initials: M. M. -mobile: +1 206 223-5698 -pager: +1 206 727-1681 -roomNumber: 9600 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ning Suitt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ning Suitt -sn: Suitt -description: This is Ning Suitt's description -facsimileTelephoneNumber: +1 408 305-2146 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 631-2934 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: SuittN -givenName: Ning -mail: SuittN@8964e184da0347bdb7b4df11050a3a32.bitwarden.com -carLicense: EIL0W5 -departmentNumber: 7998 -employeeType: Employee -homePhone: +1 408 789-6495 -initials: N. S. -mobile: +1 408 653-1972 -pager: +1 408 707-9658 -roomNumber: 9694 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rafa Vilozny,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rafa Vilozny -sn: Vilozny -description: This is Rafa Vilozny's description -facsimileTelephoneNumber: +1 206 120-6390 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 238-8494 -title: Junior Administrative Manager -userPassword: Password1 -uid: ViloznyR -givenName: Rafa -mail: ViloznyR@bac50bb727ca4a11b9ee1a82a995bcf0.bitwarden.com -carLicense: 2JJQD9 -departmentNumber: 4282 -employeeType: Employee -homePhone: +1 206 862-8494 -initials: R. V. -mobile: +1 206 841-5161 -pager: +1 206 680-6372 -roomNumber: 9607 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kessel Ferenz -sn: Ferenz -description: This is Kessel Ferenz's description -facsimileTelephoneNumber: +1 213 378-7937 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 544-8137 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: FerenzK -givenName: Kessel -mail: FerenzK@123877216cf647dc9c161017fd0bf922.bitwarden.com -carLicense: A7PQNP -departmentNumber: 6219 -employeeType: Normal -homePhone: +1 213 415-3592 -initials: K. F. -mobile: +1 213 450-9671 -pager: +1 213 834-7922 -roomNumber: 9524 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donnamarie Proudfoot -sn: Proudfoot -description: This is Donnamarie Proudfoot's description -facsimileTelephoneNumber: +1 804 912-4371 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 804 200-6744 -title: Associate Management Admin -userPassword: Password1 -uid: ProudfoD -givenName: Donnamarie -mail: ProudfoD@aa592c2222884248a08151cbea9b9464.bitwarden.com -carLicense: 6937ED -departmentNumber: 5445 -employeeType: Contract -homePhone: +1 804 718-8641 -initials: D. P. -mobile: +1 804 535-7061 -pager: +1 804 259-8096 -roomNumber: 8948 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Anita Bui,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anita Bui -sn: Bui -description: This is Anita Bui's description -facsimileTelephoneNumber: +1 415 784-4565 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 568-9727 -title: Supreme Product Development Pinhead -userPassword: Password1 -uid: BuiA -givenName: Anita -mail: BuiA@fc6cfedbbb404c7db9497f0971d6cf66.bitwarden.com -carLicense: U4PVBT -departmentNumber: 7207 -employeeType: Employee -homePhone: +1 415 923-7237 -initials: A. B. -mobile: +1 415 432-8533 -pager: +1 415 881-7793 -roomNumber: 9817 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laverne CunhaGomes -sn: CunhaGomes -description: This is Laverne CunhaGomes's description -facsimileTelephoneNumber: +1 213 123-9955 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 871-3455 -title: Master Human Resources Warrior -userPassword: Password1 -uid: CunhaGoL -givenName: Laverne -mail: CunhaGoL@5e4575ba15004635a07ebaa5c8dd9475.bitwarden.com -carLicense: YRFKYS -departmentNumber: 7927 -employeeType: Contract -homePhone: +1 213 255-5647 -initials: L. C. -mobile: +1 213 877-9003 -pager: +1 213 500-9381 -roomNumber: 8253 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Verina Lamirande,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verina Lamirande -sn: Lamirande -description: This is Verina Lamirande's description -facsimileTelephoneNumber: +1 818 656-2320 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 749-6222 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: LamiranV -givenName: Verina -mail: LamiranV@f86eaf6fda40440ead0c03f269cfec3a.bitwarden.com -carLicense: KKYB5W -departmentNumber: 6198 -employeeType: Contract -homePhone: +1 818 172-5160 -initials: V. L. -mobile: +1 818 157-7357 -pager: +1 818 919-2800 -roomNumber: 8641 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gusella Loggins,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gusella Loggins -sn: Loggins -description: This is Gusella Loggins's description -facsimileTelephoneNumber: +1 510 996-6377 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 561-9208 -title: Chief Payroll Manager -userPassword: Password1 -uid: LogginsG -givenName: Gusella -mail: LogginsG@bdde3595ac2c4a339c7f74eb56b2523f.bitwarden.com -carLicense: AOD95W -departmentNumber: 7747 -employeeType: Employee -homePhone: +1 510 817-6138 -initials: G. L. -mobile: +1 510 363-8693 -pager: +1 510 277-2094 -roomNumber: 8388 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hatty Murash,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hatty Murash -sn: Murash -description: This is Hatty Murash's description -facsimileTelephoneNumber: +1 804 593-8204 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 352-6250 -title: Associate Product Testing Artist -userPassword: Password1 -uid: MurashH -givenName: Hatty -mail: MurashH@3e7b5d0f173b44b5bb6ae270e2b8fdcb.bitwarden.com -carLicense: 6EUK50 -departmentNumber: 4431 -employeeType: Normal -homePhone: +1 804 613-4691 -initials: H. M. -mobile: +1 804 759-5417 -pager: +1 804 413-7015 -roomNumber: 9433 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Clyde Labenek,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clyde Labenek -sn: Labenek -description: This is Clyde Labenek's description -facsimileTelephoneNumber: +1 213 360-6928 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 539-2993 -title: Junior Product Development Manager -userPassword: Password1 -uid: LabenekC -givenName: Clyde -mail: LabenekC@28fab2a5e4034ede9d4f584a0fd75e72.bitwarden.com -carLicense: 3NT0DB -departmentNumber: 3448 -employeeType: Employee -homePhone: +1 213 333-2943 -initials: C. L. -mobile: +1 213 521-2839 -pager: +1 213 760-2390 -roomNumber: 8976 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=New Koay,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: New Koay -sn: Koay -description: This is New Koay's description -facsimileTelephoneNumber: +1 510 905-6080 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 866-3782 -title: Associate Payroll Admin -userPassword: Password1 -uid: KoayN -givenName: New -mail: KoayN@eb362d3928c448a4b72d63b85283da63.bitwarden.com -carLicense: B2T70O -departmentNumber: 9343 -employeeType: Normal -homePhone: +1 510 126-8157 -initials: N. K. -mobile: +1 510 154-6027 -pager: +1 510 791-8589 -roomNumber: 8225 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petronilla Greytock -sn: Greytock -description: This is Petronilla Greytock's description -facsimileTelephoneNumber: +1 804 258-4215 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 717-1444 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: GreytocP -givenName: Petronilla -mail: GreytocP@ad623334663c4947b77eb81b44ea11ea.bitwarden.com -carLicense: K0234S -departmentNumber: 6349 -employeeType: Employee -homePhone: +1 804 125-2715 -initials: P. G. -mobile: +1 804 944-3801 -pager: +1 804 601-9572 -roomNumber: 8611 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Doria Smothers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doria Smothers -sn: Smothers -description: This is Doria Smothers's description -facsimileTelephoneNumber: +1 415 991-9984 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 562-5324 -title: Supreme Management Artist -userPassword: Password1 -uid: SmotherD -givenName: Doria -mail: SmotherD@4e240d85327f4f81b9a139f4d41efb41.bitwarden.com -carLicense: BLHG61 -departmentNumber: 3591 -employeeType: Contract -homePhone: +1 415 145-1877 -initials: D. S. -mobile: +1 415 311-9967 -pager: +1 415 223-1767 -roomNumber: 9050 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tonia Gahan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonia Gahan -sn: Gahan -description: This is Tonia Gahan's description -facsimileTelephoneNumber: +1 206 790-4197 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 852-3549 -title: Chief Human Resources Pinhead -userPassword: Password1 -uid: GahanT -givenName: Tonia -mail: GahanT@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com -carLicense: W4TNGN -departmentNumber: 3012 -employeeType: Contract -homePhone: +1 206 560-2901 -initials: T. G. -mobile: +1 206 237-3815 -pager: +1 206 661-4223 -roomNumber: 9062 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Reina Gracey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reina Gracey -sn: Gracey -description: This is Reina Gracey's description -facsimileTelephoneNumber: +1 213 980-1003 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 560-4204 -title: Master Management Stooge -userPassword: Password1 -uid: GraceyR -givenName: Reina -mail: GraceyR@c07b5bb2f94643578becb647cd136c33.bitwarden.com -carLicense: HP92V9 -departmentNumber: 9741 -employeeType: Contract -homePhone: +1 213 448-9711 -initials: R. G. -mobile: +1 213 290-1439 -pager: +1 213 867-8861 -roomNumber: 9477 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vale Harwerth,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vale Harwerth -sn: Harwerth -description: This is Vale Harwerth's description -facsimileTelephoneNumber: +1 408 254-1656 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 331-7478 -title: Junior Product Development Visionary -userPassword: Password1 -uid: HarwertV -givenName: Vale -mail: HarwertV@e83fceefe07e4de6ba8b4f0b48751aec.bitwarden.com -carLicense: 5HDI63 -departmentNumber: 3136 -employeeType: Normal -homePhone: +1 408 225-2258 -initials: V. H. -mobile: +1 408 158-5352 -pager: +1 408 765-8227 -roomNumber: 8796 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anjela Dyrdahl -sn: Dyrdahl -description: This is Anjela Dyrdahl's description -facsimileTelephoneNumber: +1 510 213-1800 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 980-9639 -title: Associate Administrative Warrior -userPassword: Password1 -uid: DyrdahlA -givenName: Anjela -mail: DyrdahlA@5b44f69cb0e74cb5b8b37bde0d083579.bitwarden.com -carLicense: BI255W -departmentNumber: 3863 -employeeType: Employee -homePhone: +1 510 420-9656 -initials: A. D. -mobile: +1 510 574-7528 -pager: +1 510 115-9997 -roomNumber: 9369 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gavra Brule,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gavra Brule -sn: Brule -description: This is Gavra Brule's description -facsimileTelephoneNumber: +1 804 819-6050 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 527-6936 -title: Associate Peons Visionary -userPassword: Password1 -uid: BruleG -givenName: Gavra -mail: BruleG@9b5bbecfd65b422e95fd8bc7721876ac.bitwarden.com -carLicense: 2CYMYG -departmentNumber: 5704 -employeeType: Contract -homePhone: +1 804 325-1697 -initials: G. B. -mobile: +1 804 911-3221 -pager: +1 804 755-7019 -roomNumber: 8098 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Corilla Angustia,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corilla Angustia -sn: Angustia -description: This is Corilla Angustia's description -facsimileTelephoneNumber: +1 804 901-6251 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 467-6146 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: AngustiC -givenName: Corilla -mail: AngustiC@492b9c186a41410b8362945cf33f6ac7.bitwarden.com -carLicense: CCIKP3 -departmentNumber: 5971 -employeeType: Employee -homePhone: +1 804 993-7634 -initials: C. A. -mobile: +1 804 910-1388 -pager: +1 804 377-3987 -roomNumber: 9653 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rochelle Wokoma -sn: Wokoma -description: This is Rochelle Wokoma's description -facsimileTelephoneNumber: +1 415 241-4084 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 547-3874 -title: Supreme Human Resources Director -userPassword: Password1 -uid: WokomaR -givenName: Rochelle -mail: WokomaR@aa40bc3bf6d0491ea79629a0660ec362.bitwarden.com -carLicense: OVMKGQ -departmentNumber: 1809 -employeeType: Normal -homePhone: +1 415 862-3739 -initials: R. W. -mobile: +1 415 301-3249 -pager: +1 415 634-9532 -roomNumber: 9817 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Simona Lemyre,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Simona Lemyre -sn: Lemyre -description: This is Simona Lemyre's description -facsimileTelephoneNumber: +1 510 441-5014 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 596-1197 -title: Junior Management Grunt -userPassword: Password1 -uid: LemyreS -givenName: Simona -mail: LemyreS@4f8304c7c82a40568829a62a3d95ae6e.bitwarden.com -carLicense: CDR90K -departmentNumber: 8039 -employeeType: Normal -homePhone: +1 510 921-2494 -initials: S. L. -mobile: +1 510 908-1920 -pager: +1 510 292-9784 -roomNumber: 8881 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Loris Knappe,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loris Knappe -sn: Knappe -description: This is Loris Knappe's description -facsimileTelephoneNumber: +1 206 509-7158 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 808-1307 -title: Chief Administrative President -userPassword: Password1 -uid: KnappeL -givenName: Loris -mail: KnappeL@466f24c0ae9947d2a9b6e4673a116085.bitwarden.com -carLicense: NT258Q -departmentNumber: 3967 -employeeType: Contract -homePhone: +1 206 611-5390 -initials: L. K. -mobile: +1 206 185-2235 -pager: +1 206 838-2098 -roomNumber: 8039 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mariya Frumerie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariya Frumerie -sn: Frumerie -description: This is Mariya Frumerie's description -facsimileTelephoneNumber: +1 408 150-7952 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 840-8848 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: FrumeriM -givenName: Mariya -mail: FrumeriM@74b04bb2dca3456d9dd381e9b32a85a5.bitwarden.com -carLicense: O6WUWQ -departmentNumber: 3756 -employeeType: Normal -homePhone: +1 408 958-1101 -initials: M. F. -mobile: +1 408 466-5889 -pager: +1 408 980-6547 -roomNumber: 9170 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pradip Wesenberg,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pradip Wesenberg -sn: Wesenberg -description: This is Pradip Wesenberg's description -facsimileTelephoneNumber: +1 408 315-8416 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 699-1887 -title: Associate Peons Director -userPassword: Password1 -uid: WesenbeP -givenName: Pradip -mail: WesenbeP@35335990ab014019917e13dee53dd406.bitwarden.com -carLicense: UTP8PY -departmentNumber: 5013 -employeeType: Normal -homePhone: +1 408 414-7666 -initials: P. W. -mobile: +1 408 724-5743 -pager: +1 408 287-9118 -roomNumber: 8067 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Teena Szuminski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teena Szuminski -sn: Szuminski -description: This is Teena Szuminski's description -facsimileTelephoneNumber: +1 206 799-5258 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 288-6239 -title: Chief Product Testing Writer -userPassword: Password1 -uid: SzuminsT -givenName: Teena -mail: SzuminsT@a4f85fecd69348a29728c8e242a790a2.bitwarden.com -carLicense: D759IH -departmentNumber: 1333 -employeeType: Employee -homePhone: +1 206 821-2077 -initials: T. S. -mobile: +1 206 325-2772 -pager: +1 206 587-4487 -roomNumber: 9317 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carline Urbanowich -sn: Urbanowich -description: This is Carline Urbanowich's description -facsimileTelephoneNumber: +1 213 737-4985 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 679-8980 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: UrbanowC -givenName: Carline -mail: UrbanowC@f6866989cc784904871bcaa73d189a85.bitwarden.com -carLicense: N3PBQ4 -departmentNumber: 4094 -employeeType: Normal -homePhone: +1 213 464-7304 -initials: C. U. -mobile: +1 213 817-9454 -pager: +1 213 182-5354 -roomNumber: 9637 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jeanie Shumate,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeanie Shumate -sn: Shumate -description: This is Jeanie Shumate's description -facsimileTelephoneNumber: +1 415 947-8241 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 617-8358 -title: Junior Management Punk -userPassword: Password1 -uid: ShumateJ -givenName: Jeanie -mail: ShumateJ@fd0854655b5f4982bc6e7a95b12dd3fe.bitwarden.com -carLicense: 6SFR1A -departmentNumber: 1579 -employeeType: Normal -homePhone: +1 415 240-3584 -initials: J. S. -mobile: +1 415 522-4736 -pager: +1 415 200-7479 -roomNumber: 8285 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mindy Agnew,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mindy Agnew -sn: Agnew -description: This is Mindy Agnew's description -facsimileTelephoneNumber: +1 510 725-4216 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 284-6637 -title: Associate Peons Engineer -userPassword: Password1 -uid: AgnewM -givenName: Mindy -mail: AgnewM@dad8b7b440374db79e9b58cd390854c3.bitwarden.com -carLicense: 8RN8HX -departmentNumber: 7871 -employeeType: Contract -homePhone: +1 510 957-7119 -initials: M. A. -mobile: +1 510 492-2426 -pager: +1 510 191-9090 -roomNumber: 9189 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cosette Hagley,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cosette Hagley -sn: Hagley -description: This is Cosette Hagley's description -facsimileTelephoneNumber: +1 213 557-3365 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 201-2032 -title: Associate Peons Evangelist -userPassword: Password1 -uid: HagleyC -givenName: Cosette -mail: HagleyC@bbf5361396904a4082fadb57709a5d90.bitwarden.com -carLicense: IOOAFG -departmentNumber: 5423 -employeeType: Normal -homePhone: +1 213 619-8017 -initials: C. H. -mobile: +1 213 101-2184 -pager: +1 213 794-4095 -roomNumber: 9649 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChristieAnne Nyce -sn: Nyce -description: This is ChristieAnne Nyce's description -facsimileTelephoneNumber: +1 804 281-2045 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 432-1018 -title: Chief Human Resources Punk -userPassword: Password1 -uid: NyceC -givenName: ChristieAnne -mail: NyceC@ebdda7804b294714949d48657bdd3830.bitwarden.com -carLicense: C3G68L -departmentNumber: 7431 -employeeType: Contract -homePhone: +1 804 552-1676 -initials: C. N. -mobile: +1 804 241-5413 -pager: +1 804 869-4649 -roomNumber: 9094 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Darnell Gombos,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darnell Gombos -sn: Gombos -description: This is Darnell Gombos's description -facsimileTelephoneNumber: +1 510 874-4072 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 953-2852 -title: Associate Product Development Artist -userPassword: Password1 -uid: GombosD -givenName: Darnell -mail: GombosD@a5f5618aa6144295ac3ab97f28aa1603.bitwarden.com -carLicense: UA4QNE -departmentNumber: 9180 -employeeType: Normal -homePhone: +1 510 137-6730 -initials: D. G. -mobile: +1 510 230-2957 -pager: +1 510 598-1924 -roomNumber: 8996 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Odille Belisle,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odille Belisle -sn: Belisle -description: This is Odille Belisle's description -facsimileTelephoneNumber: +1 804 181-3142 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 804 522-6984 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: BelisleO -givenName: Odille -mail: BelisleO@770858a0ba27427fa80380c180b40ddb.bitwarden.com -carLicense: 6GJJG3 -departmentNumber: 2633 -employeeType: Contract -homePhone: +1 804 437-9530 -initials: O. B. -mobile: +1 804 798-3581 -pager: +1 804 514-3858 -roomNumber: 8007 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mirilla Malik,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirilla Malik -sn: Malik -description: This is Mirilla Malik's description -facsimileTelephoneNumber: +1 213 809-7069 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 634-2595 -title: Master Janitorial Manager -userPassword: Password1 -uid: MalikM -givenName: Mirilla -mail: MalikM@f2e037d77334498ab9322f95dd7d350d.bitwarden.com -carLicense: X7H2NN -departmentNumber: 1605 -employeeType: Contract -homePhone: +1 213 568-5549 -initials: M. M. -mobile: +1 213 439-7880 -pager: +1 213 952-5674 -roomNumber: 8573 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alena Winklemaier -sn: Winklemaier -description: This is Alena Winklemaier's description -facsimileTelephoneNumber: +1 213 294-7554 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 567-2569 -title: Chief Janitorial Director -userPassword: Password1 -uid: WinklemA -givenName: Alena -mail: WinklemA@863337bc153343e09522d2f9b00e1379.bitwarden.com -carLicense: 4C1OY0 -departmentNumber: 1533 -employeeType: Normal -homePhone: +1 213 495-8656 -initials: A. W. -mobile: +1 213 130-6758 -pager: +1 213 343-2080 -roomNumber: 9381 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lise Disalvo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lise Disalvo -sn: Disalvo -description: This is Lise Disalvo's description -facsimileTelephoneNumber: +1 804 721-7016 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 804 771-2859 -title: Master Human Resources Czar -userPassword: Password1 -uid: DisalvoL -givenName: Lise -mail: DisalvoL@4a8d22894cf24b2dbddb3ccac895cba0.bitwarden.com -carLicense: Y39VFT -departmentNumber: 8639 -employeeType: Contract -homePhone: +1 804 492-2162 -initials: L. D. -mobile: +1 804 162-3202 -pager: +1 804 481-1634 -roomNumber: 9969 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lou Burchat,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lou Burchat -sn: Burchat -description: This is Lou Burchat's description -facsimileTelephoneNumber: +1 818 769-6700 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 818 595-9114 -title: Associate Peons Vice President -userPassword: Password1 -uid: BurchatL -givenName: Lou -mail: BurchatL@f58a1be9c5d84ac9b0da725b5fef956c.bitwarden.com -carLicense: EAL2PC -departmentNumber: 8269 -employeeType: Employee -homePhone: +1 818 163-7106 -initials: L. B. -mobile: +1 818 971-8470 -pager: +1 818 816-8684 -roomNumber: 8258 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celinka Macaulay -sn: Macaulay -description: This is Celinka Macaulay's description -facsimileTelephoneNumber: +1 415 279-9898 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 107-8207 -title: Master Product Testing Mascot -userPassword: Password1 -uid: MacaulaC -givenName: Celinka -mail: MacaulaC@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com -carLicense: IB55FF -departmentNumber: 2892 -employeeType: Employee -homePhone: +1 415 482-8616 -initials: C. M. -mobile: +1 415 823-3667 -pager: +1 415 952-7119 -roomNumber: 9741 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Donita Teichman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donita Teichman -sn: Teichman -description: This is Donita Teichman's description -facsimileTelephoneNumber: +1 213 330-3675 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 825-7992 -title: Supreme Peons Madonna -userPassword: Password1 -uid: TeichmaD -givenName: Donita -mail: TeichmaD@d7baf4e3c12a4ed9850be956d310a59c.bitwarden.com -carLicense: C47FC7 -departmentNumber: 2328 -employeeType: Contract -homePhone: +1 213 227-9003 -initials: D. T. -mobile: +1 213 788-2293 -pager: +1 213 853-8283 -roomNumber: 9078 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hermione Monet,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermione Monet -sn: Monet -description: This is Hermione Monet's description -facsimileTelephoneNumber: +1 415 672-7043 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 618-4617 -title: Master Peons Stooge -userPassword: Password1 -uid: MonetH -givenName: Hermione -mail: MonetH@9fc16f31309a4e5489f1a046e558b353.bitwarden.com -carLicense: 9JNAYK -departmentNumber: 4881 -employeeType: Employee -homePhone: +1 415 335-7085 -initials: H. M. -mobile: +1 415 740-6591 -pager: +1 415 962-7122 -roomNumber: 8686 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joann Vermeesch -sn: Vermeesch -description: This is Joann Vermeesch's description -facsimileTelephoneNumber: +1 206 584-9537 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 206 805-6579 -title: Associate Product Testing Developer -userPassword: Password1 -uid: VermeesJ -givenName: Joann -mail: VermeesJ@c912ac8eb3d148c49f0011f93774eeca.bitwarden.com -carLicense: VX9QN3 -departmentNumber: 9790 -employeeType: Normal -homePhone: +1 206 564-6868 -initials: J. V. -mobile: +1 206 796-6261 -pager: +1 206 774-4556 -roomNumber: 8941 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nopi Bulifant -sn: Bulifant -description: This is Nopi Bulifant's description -facsimileTelephoneNumber: +1 206 464-4268 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 596-4604 -title: Supreme Product Testing Director -userPassword: Password1 -uid: BulifanN -givenName: Nopi -mail: BulifanN@737a8e314bb541f2971ef676e8e10c83.bitwarden.com -carLicense: 0BEXLN -departmentNumber: 6290 -employeeType: Normal -homePhone: +1 206 709-6939 -initials: N. B. -mobile: +1 206 840-1339 -pager: +1 206 925-2352 -roomNumber: 9989 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Belicia Kupitz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belicia Kupitz -sn: Kupitz -description: This is Belicia Kupitz's description -facsimileTelephoneNumber: +1 206 221-5988 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 825-2750 -title: Master Peons Dictator -userPassword: Password1 -uid: KupitzB -givenName: Belicia -mail: KupitzB@8d562bd365da4cdca86c1d397fe1741a.bitwarden.com -carLicense: YTMTX2 -departmentNumber: 3582 -employeeType: Employee -homePhone: +1 206 613-2646 -initials: B. K. -mobile: +1 206 281-1975 -pager: +1 206 495-4980 -roomNumber: 9994 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tani Rausch,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tani Rausch -sn: Rausch -description: This is Tani Rausch's description -facsimileTelephoneNumber: +1 408 818-5214 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 408 277-5158 -title: Chief Administrative Fellow -userPassword: Password1 -uid: RauschT -givenName: Tani -mail: RauschT@0b42d23f708a491ab7e35398744c7140.bitwarden.com -carLicense: 2ODHFG -departmentNumber: 4835 -employeeType: Contract -homePhone: +1 408 175-6424 -initials: T. R. -mobile: +1 408 344-6912 -pager: +1 408 360-6049 -roomNumber: 8173 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Berget Baerg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berget Baerg -sn: Baerg -description: This is Berget Baerg's description -facsimileTelephoneNumber: +1 408 354-5431 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 918-4430 -title: Associate Janitorial Czar -userPassword: Password1 -uid: BaergB -givenName: Berget -mail: BaergB@77627e1e8f8e4cdc88cd6606136ffbcf.bitwarden.com -carLicense: V0GPAA -departmentNumber: 7569 -employeeType: Normal -homePhone: +1 408 800-3065 -initials: B. B. -mobile: +1 408 455-9787 -pager: +1 408 177-2298 -roomNumber: 9960 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Skyler Hariman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Skyler Hariman -sn: Hariman -description: This is Skyler Hariman's description -facsimileTelephoneNumber: +1 415 644-9163 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 415 988-2755 -title: Master Payroll Warrior -userPassword: Password1 -uid: HarimanS -givenName: Skyler -mail: HarimanS@162057a27e094561a78012351f7383c7.bitwarden.com -carLicense: LIVCIS -departmentNumber: 1500 -employeeType: Contract -homePhone: +1 415 385-5134 -initials: S. H. -mobile: +1 415 212-4683 -pager: +1 415 745-2057 -roomNumber: 9792 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Toni Shaddock,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toni Shaddock -sn: Shaddock -description: This is Toni Shaddock's description -facsimileTelephoneNumber: +1 818 374-2742 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 595-1051 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: ShaddocT -givenName: Toni -mail: ShaddocT@6a01aba5dc8f451b8404750bb95136ca.bitwarden.com -carLicense: FLPDPT -departmentNumber: 3765 -employeeType: Employee -homePhone: +1 818 899-9937 -initials: T. S. -mobile: +1 818 835-9287 -pager: +1 818 751-1956 -roomNumber: 9647 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Foad Roberts,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Foad Roberts -sn: Roberts -description: This is Foad Roberts's description -facsimileTelephoneNumber: +1 408 780-6958 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 760-2834 -title: Associate Peons Assistant -userPassword: Password1 -uid: RobertsF -givenName: Foad -mail: RobertsF@f76cbd44b02547b883b5a9a34e1c9fd0.bitwarden.com -carLicense: TPODSH -departmentNumber: 1857 -employeeType: Normal -homePhone: +1 408 322-8054 -initials: F. R. -mobile: +1 408 145-9308 -pager: +1 408 884-7861 -roomNumber: 9169 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parks Shtivelman -sn: Shtivelman -description: This is Parks Shtivelman's description -facsimileTelephoneNumber: +1 804 609-7497 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 737-4889 -title: Master Product Testing Director -userPassword: Password1 -uid: ShtivelP -givenName: Parks -mail: ShtivelP@05da0d5cd1904deaaf3f5d8c791005d2.bitwarden.com -carLicense: XX9V70 -departmentNumber: 9666 -employeeType: Employee -homePhone: +1 804 349-5606 -initials: P. S. -mobile: +1 804 268-2907 -pager: +1 804 562-9231 -roomNumber: 9680 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Keely Dee,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keely Dee -sn: Dee -description: This is Keely Dee's description -facsimileTelephoneNumber: +1 206 553-9696 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 759-5837 -title: Master Peons Developer -userPassword: Password1 -uid: DeeK -givenName: Keely -mail: DeeK@2974cf90fe1d4835b1ba05177dd29243.bitwarden.com -carLicense: J0K8R7 -departmentNumber: 8254 -employeeType: Employee -homePhone: +1 206 635-8100 -initials: K. D. -mobile: +1 206 716-2231 -pager: +1 206 202-1712 -roomNumber: 9454 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shiu Trimble,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shiu Trimble -sn: Trimble -description: This is Shiu Trimble's description -facsimileTelephoneNumber: +1 415 256-5396 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 893-8328 -title: Master Management Technician -userPassword: Password1 -uid: TrimbleS -givenName: Shiu -mail: TrimbleS@75dfcd3692074ff18248aebdf998f81c.bitwarden.com -carLicense: 59SG4U -departmentNumber: 8481 -employeeType: Contract -homePhone: +1 415 619-2805 -initials: S. T. -mobile: +1 415 166-6641 -pager: +1 415 566-5160 -roomNumber: 9464 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gwenore Taren,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwenore Taren -sn: Taren -description: This is Gwenore Taren's description -facsimileTelephoneNumber: +1 415 543-9088 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 380-2580 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: TarenG -givenName: Gwenore -mail: TarenG@ed1174f9049747fb9c8ea909f860d6ca.bitwarden.com -carLicense: NLVQ4V -departmentNumber: 5524 -employeeType: Employee -homePhone: +1 415 927-2620 -initials: G. T. -mobile: +1 415 917-8695 -pager: +1 415 339-1158 -roomNumber: 9962 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Saraann Millen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saraann Millen -sn: Millen -description: This is Saraann Millen's description -facsimileTelephoneNumber: +1 415 872-6733 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 140-7148 -title: Junior Peons Writer -userPassword: Password1 -uid: MillenS -givenName: Saraann -mail: MillenS@20d733e4c13941c7bc31419a4b4229c6.bitwarden.com -carLicense: GUIP16 -departmentNumber: 2481 -employeeType: Normal -homePhone: +1 415 532-9489 -initials: S. M. -mobile: +1 415 224-1409 -pager: +1 415 850-4725 -roomNumber: 8258 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sandra Mosley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandra Mosley -sn: Mosley -description: This is Sandra Mosley's description -facsimileTelephoneNumber: +1 510 210-1926 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 773-6718 -title: Supreme Administrative Vice President -userPassword: Password1 -uid: MosleyS -givenName: Sandra -mail: MosleyS@e800254840ec4cdd98916b4e083fcf9a.bitwarden.com -carLicense: 5PGG2P -departmentNumber: 9702 -employeeType: Normal -homePhone: +1 510 780-9792 -initials: S. M. -mobile: +1 510 817-8947 -pager: +1 510 150-4744 -roomNumber: 8783 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SheriLynn Hemphill -sn: Hemphill -description: This is SheriLynn Hemphill's description -facsimileTelephoneNumber: +1 213 512-7005 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 261-9282 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: HemphilS -givenName: SheriLynn -mail: HemphilS@819341cb2af84d6c855b3feecf7b45b9.bitwarden.com -carLicense: RKSSQ4 -departmentNumber: 8408 -employeeType: Contract -homePhone: +1 213 569-4342 -initials: S. H. -mobile: +1 213 302-9134 -pager: +1 213 510-3027 -roomNumber: 9646 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bernhard Niro,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernhard Niro -sn: Niro -description: This is Bernhard Niro's description -facsimileTelephoneNumber: +1 415 665-1209 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 415 789-6031 -title: Master Product Development Artist -userPassword: Password1 -uid: NiroB -givenName: Bernhard -mail: NiroB@2c3e110ee6f849dd9d12214b3161a037.bitwarden.com -carLicense: 5DADJ6 -departmentNumber: 2005 -employeeType: Normal -homePhone: +1 415 870-7242 -initials: B. N. -mobile: +1 415 471-1709 -pager: +1 415 760-2657 -roomNumber: 9572 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ema Kelkar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ema Kelkar -sn: Kelkar -description: This is Ema Kelkar's description -facsimileTelephoneNumber: +1 804 300-2085 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 571-5197 -title: Supreme Peons Artist -userPassword: Password1 -uid: KelkarE -givenName: Ema -mail: KelkarE@4dd9b19c6f6848e2a0768f206ad89104.bitwarden.com -carLicense: 3HTJ7V -departmentNumber: 5432 -employeeType: Employee -homePhone: +1 804 860-9102 -initials: E. K. -mobile: +1 804 377-5246 -pager: +1 804 719-2249 -roomNumber: 9209 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lawrence Riedel -sn: Riedel -description: This is Lawrence Riedel's description -facsimileTelephoneNumber: +1 818 164-8787 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 483-5344 -title: Associate Janitorial Architect -userPassword: Password1 -uid: RiedelL -givenName: Lawrence -mail: RiedelL@80d7e63066f84141a410585d6b524a04.bitwarden.com -carLicense: OCX3OL -departmentNumber: 8164 -employeeType: Normal -homePhone: +1 818 427-2786 -initials: L. R. -mobile: +1 818 712-7053 -pager: +1 818 464-9504 -roomNumber: 8942 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selvaraj Bazemore -sn: Bazemore -description: This is Selvaraj Bazemore's description -facsimileTelephoneNumber: +1 415 336-1030 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 187-7654 -title: Master Product Testing Visionary -userPassword: Password1 -uid: BazemorS -givenName: Selvaraj -mail: BazemorS@2ba610dbd4ca4724a5aac54e36ab5ab0.bitwarden.com -carLicense: VE778E -departmentNumber: 7649 -employeeType: Contract -homePhone: +1 415 774-9541 -initials: S. B. -mobile: +1 415 144-1448 -pager: +1 415 566-9074 -roomNumber: 9753 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Erich Pandey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erich Pandey -sn: Pandey -description: This is Erich Pandey's description -facsimileTelephoneNumber: +1 818 127-3095 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 540-4905 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: PandeyE -givenName: Erich -mail: PandeyE@71c4255308d847e6b55d8184e9b3d537.bitwarden.com -carLicense: BT681J -departmentNumber: 5148 -employeeType: Contract -homePhone: +1 818 583-9027 -initials: E. P. -mobile: +1 818 104-7773 -pager: +1 818 902-1855 -roomNumber: 8100 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Farshid Sattler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farshid Sattler -sn: Sattler -description: This is Farshid Sattler's description -facsimileTelephoneNumber: +1 804 234-7828 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 841-3690 -title: Supreme Product Testing Vice President -userPassword: Password1 -uid: SattlerF -givenName: Farshid -mail: SattlerF@7e9f6d17b8fc4a199e49adcccc9ca5e1.bitwarden.com -carLicense: AYJM08 -departmentNumber: 4209 -employeeType: Employee -homePhone: +1 804 945-4394 -initials: F. S. -mobile: +1 804 721-7191 -pager: +1 804 200-4058 -roomNumber: 8718 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flying Pimiskern -sn: Pimiskern -description: This is Flying Pimiskern's description -facsimileTelephoneNumber: +1 206 556-2166 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 438-6480 -title: Supreme Janitorial Visionary -userPassword: Password1 -uid: PimiskeF -givenName: Flying -mail: PimiskeF@8e939e1720cd4eec84cf0ef4b954cc46.bitwarden.com -carLicense: A1V7NL -departmentNumber: 3318 -employeeType: Contract -homePhone: +1 206 786-8936 -initials: F. P. -mobile: +1 206 928-4321 -pager: +1 206 135-4428 -roomNumber: 8532 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anissa Nasato,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anissa Nasato -sn: Nasato -description: This is Anissa Nasato's description -facsimileTelephoneNumber: +1 408 512-2295 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 439-5238 -title: Junior Payroll President -userPassword: Password1 -uid: NasatoA -givenName: Anissa -mail: NasatoA@f189d642e6af44169fd7101889f8b06f.bitwarden.com -carLicense: 4BMDQX -departmentNumber: 6272 -employeeType: Employee -homePhone: +1 408 745-8791 -initials: A. N. -mobile: +1 408 654-6023 -pager: +1 408 671-7524 -roomNumber: 9773 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monroe Deardurff -sn: Deardurff -description: This is Monroe Deardurff's description -facsimileTelephoneNumber: +1 415 523-1000 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 414-1259 -title: Associate Product Testing Admin -userPassword: Password1 -uid: DeardurM -givenName: Monroe -mail: DeardurM@646791cae30048e78e840ca24e142dc7.bitwarden.com -carLicense: UF1AEQ -departmentNumber: 4275 -employeeType: Normal -homePhone: +1 415 301-7795 -initials: M. D. -mobile: +1 415 506-4448 -pager: +1 415 971-6871 -roomNumber: 8497 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Grietje Dionne,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grietje Dionne -sn: Dionne -description: This is Grietje Dionne's description -facsimileTelephoneNumber: +1 510 143-6293 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 114-3193 -title: Junior Management Director -userPassword: Password1 -uid: DionneG -givenName: Grietje -mail: DionneG@ebda9764758246a4bb15c2161573a88b.bitwarden.com -carLicense: VEJPJG -departmentNumber: 7798 -employeeType: Normal -homePhone: +1 510 498-4437 -initials: G. D. -mobile: +1 510 691-8549 -pager: +1 510 679-2788 -roomNumber: 8519 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vinny Grandbois -sn: Grandbois -description: This is Vinny Grandbois's description -facsimileTelephoneNumber: +1 804 182-5242 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 987-6376 -title: Junior Product Testing Mascot -userPassword: Password1 -uid: GrandboV -givenName: Vinny -mail: GrandboV@51a0ff7129454952917fdd91842316b9.bitwarden.com -carLicense: X32OCX -departmentNumber: 7829 -employeeType: Contract -homePhone: +1 804 263-8593 -initials: V. G. -mobile: +1 804 212-7166 -pager: +1 804 214-9149 -roomNumber: 9521 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Asia Dobbs,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Asia Dobbs -sn: Dobbs -description: This is Asia Dobbs's description -facsimileTelephoneNumber: +1 818 455-4205 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 997-7584 -title: Chief Administrative Technician -userPassword: Password1 -uid: DobbsA -givenName: Asia -mail: DobbsA@64ddc1375a2449c3b91480ef133e087e.bitwarden.com -carLicense: BV1EUS -departmentNumber: 5472 -employeeType: Employee -homePhone: +1 818 425-3267 -initials: A. D. -mobile: +1 818 225-2571 -pager: +1 818 552-4460 -roomNumber: 8302 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Flor Powney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Flor Powney -sn: Powney -description: This is Flor Powney's description -facsimileTelephoneNumber: +1 804 603-4834 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 567-6296 -title: Master Administrative Figurehead -userPassword: Password1 -uid: PowneyF -givenName: Flor -mail: PowneyF@9c1d18cc96a9431ba0c70f9056ae3646.bitwarden.com -carLicense: 1CHBQ0 -departmentNumber: 8010 -employeeType: Employee -homePhone: +1 804 168-3509 -initials: F. P. -mobile: +1 804 122-9945 -pager: +1 804 969-4466 -roomNumber: 8255 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeniffer Babasaki -sn: Babasaki -description: This is Jeniffer Babasaki's description -facsimileTelephoneNumber: +1 804 915-9781 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 804 754-5578 -title: Associate Human Resources Grunt -userPassword: Password1 -uid: BabasakJ -givenName: Jeniffer -mail: BabasakJ@65445bf488744fbfb52fae9b404c1cd5.bitwarden.com -carLicense: 5X2XS3 -departmentNumber: 6654 -employeeType: Normal -homePhone: +1 804 457-3236 -initials: J. B. -mobile: +1 804 935-4693 -pager: +1 804 125-3765 -roomNumber: 9462 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Valera Fogelson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valera Fogelson -sn: Fogelson -description: This is Valera Fogelson's description -facsimileTelephoneNumber: +1 804 627-9807 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 869-6130 -title: Master Product Development Manager -userPassword: Password1 -uid: FogelsoV -givenName: Valera -mail: FogelsoV@7279f15d1e764fb3b1076fe52d173852.bitwarden.com -carLicense: SVYFUW -departmentNumber: 6962 -employeeType: Contract -homePhone: +1 804 221-2790 -initials: V. F. -mobile: +1 804 803-3639 -pager: +1 804 331-1990 -roomNumber: 9010 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aideen Vanaman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aideen Vanaman -sn: Vanaman -description: This is Aideen Vanaman's description -facsimileTelephoneNumber: +1 415 415-6531 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 880-1467 -title: Junior Peons Architect -userPassword: Password1 -uid: VanamanA -givenName: Aideen -mail: VanamanA@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com -carLicense: 0I59BE -departmentNumber: 3152 -employeeType: Normal -homePhone: +1 415 680-6860 -initials: A. V. -mobile: +1 415 417-8081 -pager: +1 415 395-8143 -roomNumber: 9798 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pattie McLemore,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pattie McLemore -sn: McLemore -description: This is Pattie McLemore's description -facsimileTelephoneNumber: +1 510 495-7351 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 564-5092 -title: Junior Payroll Grunt -userPassword: Password1 -uid: McLemorP -givenName: Pattie -mail: McLemorP@e616c55f2d0a4bbca2cb265dfd9eacbd.bitwarden.com -carLicense: 944Y67 -departmentNumber: 6753 -employeeType: Normal -homePhone: +1 510 905-1598 -initials: P. M. -mobile: +1 510 613-7795 -pager: +1 510 988-4657 -roomNumber: 8361 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Levy Wolfson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Levy Wolfson -sn: Wolfson -description: This is Levy Wolfson's description -facsimileTelephoneNumber: +1 206 148-2996 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 206 654-8282 -title: Master Administrative Architect -userPassword: Password1 -uid: WolfsonL -givenName: Levy -mail: WolfsonL@786e681f87b049719b525ef674ebcc90.bitwarden.com -carLicense: XOX1I1 -departmentNumber: 7438 -employeeType: Contract -homePhone: +1 206 808-4508 -initials: L. W. -mobile: +1 206 412-6973 -pager: +1 206 211-2603 -roomNumber: 9967 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhea VanTerrie -sn: VanTerrie -description: This is Rhea VanTerrie's description -facsimileTelephoneNumber: +1 206 498-8834 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 784-5732 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: VanTerrR -givenName: Rhea -mail: VanTerrR@5beefb1d47ee4fae97ea786f427a3d27.bitwarden.com -carLicense: 9TV3NP -departmentNumber: 2862 -employeeType: Employee -homePhone: +1 206 523-3732 -initials: R. V. -mobile: +1 206 930-4780 -pager: +1 206 507-2659 -roomNumber: 8837 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doloritas Matheson -sn: Matheson -description: This is Doloritas Matheson's description -facsimileTelephoneNumber: +1 213 196-3230 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 551-3326 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: MathesoD -givenName: Doloritas -mail: MathesoD@79eafeb75c844d3eaf6f5efd1b8c0977.bitwarden.com -carLicense: 7M91JE -departmentNumber: 5510 -employeeType: Contract -homePhone: +1 213 350-6060 -initials: D. M. -mobile: +1 213 497-4766 -pager: +1 213 803-4397 -roomNumber: 8681 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Patricia Pappas,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patricia Pappas -sn: Pappas -description: This is Patricia Pappas's description -facsimileTelephoneNumber: +1 206 645-8767 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 877-2375 -title: Associate Administrative Janitor -userPassword: Password1 -uid: PappasP -givenName: Patricia -mail: PappasP@7fe664076c0040b6a8babd9da4c475ee.bitwarden.com -carLicense: S66EOO -departmentNumber: 5804 -employeeType: Contract -homePhone: +1 206 223-2184 -initials: P. P. -mobile: +1 206 317-5905 -pager: +1 206 326-8834 -roomNumber: 8829 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Miguel Kozak,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miguel Kozak -sn: Kozak -description: This is Miguel Kozak's description -facsimileTelephoneNumber: +1 213 834-9358 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 734-3035 -title: Master Payroll Figurehead -userPassword: Password1 -uid: KozakM -givenName: Miguel -mail: KozakM@a2d069dbe5bd40cca53d8a120576f5a6.bitwarden.com -carLicense: QNO1E9 -departmentNumber: 4326 -employeeType: Contract -homePhone: +1 213 320-7476 -initials: M. K. -mobile: +1 213 268-9682 -pager: +1 213 299-5714 -roomNumber: 8434 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gina Toolroom,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gina Toolroom -sn: Toolroom -description: This is Gina Toolroom's description -facsimileTelephoneNumber: +1 213 996-8962 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 116-3518 -title: Chief Payroll Architect -userPassword: Password1 -uid: ToolrooG -givenName: Gina -mail: ToolrooG@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com -carLicense: SO7RSV -departmentNumber: 5619 -employeeType: Normal -homePhone: +1 213 791-5100 -initials: G. T. -mobile: +1 213 566-6443 -pager: +1 213 243-5338 -roomNumber: 9852 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fairy Tables,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fairy Tables -sn: Tables -description: This is Fairy Tables's description -facsimileTelephoneNumber: +1 818 552-1848 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 894-9733 -title: Junior Management Engineer -userPassword: Password1 -uid: TablesF -givenName: Fairy -mail: TablesF@e85fdc3041fd4381ad23f20fda20358e.bitwarden.com -carLicense: RMRDQX -departmentNumber: 3214 -employeeType: Employee -homePhone: +1 818 673-1359 -initials: F. T. -mobile: +1 818 341-3020 -pager: +1 818 115-5816 -roomNumber: 8790 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Selia Larocque,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selia Larocque -sn: Larocque -description: This is Selia Larocque's description -facsimileTelephoneNumber: +1 408 590-1988 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 570-3321 -title: Junior Management President -userPassword: Password1 -uid: LarocquS -givenName: Selia -mail: LarocquS@d6fe37840529443585725bc6aa7732d9.bitwarden.com -carLicense: A77YBK -departmentNumber: 9145 -employeeType: Normal -homePhone: +1 408 528-4683 -initials: S. L. -mobile: +1 408 320-6707 -pager: +1 408 761-7446 -roomNumber: 8304 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pankaj Moroz -sn: Moroz -description: This is Pankaj Moroz's description -facsimileTelephoneNumber: +1 818 930-1393 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 802-9613 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: MorozP -givenName: Pankaj -mail: MorozP@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com -carLicense: BGYBA6 -departmentNumber: 5527 -employeeType: Employee -homePhone: +1 818 759-6048 -initials: P. M. -mobile: +1 818 331-9328 -pager: +1 818 689-8676 -roomNumber: 9091 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jozef Altmann,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jozef Altmann -sn: Altmann -description: This is Jozef Altmann's description -facsimileTelephoneNumber: +1 213 263-9778 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 162-7855 -title: Junior Janitorial Czar -userPassword: Password1 -uid: AltmannJ -givenName: Jozef -mail: AltmannJ@5f64fd34bdee4ec1abef179411f4dce1.bitwarden.com -carLicense: UCJ13H -departmentNumber: 1804 -employeeType: Normal -homePhone: +1 213 216-6780 -initials: J. A. -mobile: +1 213 592-1127 -pager: +1 213 840-2244 -roomNumber: 8811 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Octavio Doud,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Octavio Doud -sn: Doud -description: This is Octavio Doud's description -facsimileTelephoneNumber: +1 415 835-3517 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 250-6353 -title: Junior Peons Pinhead -userPassword: Password1 -uid: DoudO -givenName: Octavio -mail: DoudO@8d16e0fff20443f99b6f78b0996f117b.bitwarden.com -carLicense: DUIRQL -departmentNumber: 6200 -employeeType: Employee -homePhone: +1 415 256-6997 -initials: O. D. -mobile: +1 415 565-3831 -pager: +1 415 105-8891 -roomNumber: 9436 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Atl Baugnon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atl Baugnon -sn: Baugnon -description: This is Atl Baugnon's description -facsimileTelephoneNumber: +1 213 295-9901 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 406-5749 -title: Chief Administrative Writer -userPassword: Password1 -uid: BaugnonA -givenName: Atl -mail: BaugnonA@fded6a4ffab747d786306ddc62c3c811.bitwarden.com -carLicense: H16M4Q -departmentNumber: 7288 -employeeType: Contract -homePhone: +1 213 384-3682 -initials: A. B. -mobile: +1 213 108-3558 -pager: +1 213 861-4079 -roomNumber: 9036 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Stacie Tabler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacie Tabler -sn: Tabler -description: This is Stacie Tabler's description -facsimileTelephoneNumber: +1 510 264-2772 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 446-9330 -title: Supreme Product Development Architect -userPassword: Password1 -uid: TablerS -givenName: Stacie -mail: TablerS@530608b4f9df417187aa615866b37d82.bitwarden.com -carLicense: JN45C9 -departmentNumber: 4424 -employeeType: Normal -homePhone: +1 510 572-1126 -initials: S. T. -mobile: +1 510 414-2258 -pager: +1 510 637-5908 -roomNumber: 9217 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chantal Feil,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chantal Feil -sn: Feil -description: This is Chantal Feil's description -facsimileTelephoneNumber: +1 818 847-5617 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 818 988-6752 -title: Supreme Payroll Mascot -userPassword: Password1 -uid: FeilC -givenName: Chantal -mail: FeilC@1949e3794fc14232b5b71dc9b3dfa654.bitwarden.com -carLicense: H9Y753 -departmentNumber: 5487 -employeeType: Employee -homePhone: +1 818 385-7611 -initials: C. F. -mobile: +1 818 213-7171 -pager: +1 818 304-2393 -roomNumber: 8634 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Waverly Caron,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Waverly Caron -sn: Caron -description: This is Waverly Caron's description -facsimileTelephoneNumber: +1 804 501-3881 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 508-6321 -title: Master Product Testing Visionary -userPassword: Password1 -uid: CaronW -givenName: Waverly -mail: CaronW@816dd137672046b4800988231b34434d.bitwarden.com -carLicense: T6I9M5 -departmentNumber: 2818 -employeeType: Contract -homePhone: +1 804 968-2835 -initials: W. C. -mobile: +1 804 529-2979 -pager: +1 804 139-1308 -roomNumber: 8591 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cindy McTurner,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cindy McTurner -sn: McTurner -description: This is Cindy McTurner's description -facsimileTelephoneNumber: +1 510 450-6834 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 556-2036 -title: Master Administrative Engineer -userPassword: Password1 -uid: McTurneC -givenName: Cindy -mail: McTurneC@0219ab31249e4e48be0f58ce8b0b2611.bitwarden.com -carLicense: YB84U5 -departmentNumber: 5242 -employeeType: Normal -homePhone: +1 510 645-4728 -initials: C. M. -mobile: +1 510 176-8777 -pager: +1 510 874-8325 -roomNumber: 9364 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ermentrude Rosson -sn: Rosson -description: This is Ermentrude Rosson's description -facsimileTelephoneNumber: +1 213 139-6009 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 771-3420 -title: Junior Administrative Consultant -userPassword: Password1 -uid: RossonE -givenName: Ermentrude -mail: RossonE@78331c826d114da29aeafea87c090905.bitwarden.com -carLicense: E3EJGU -departmentNumber: 6971 -employeeType: Employee -homePhone: +1 213 852-8950 -initials: E. R. -mobile: +1 213 975-5760 -pager: +1 213 323-1905 -roomNumber: 8744 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cherri Loper,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherri Loper -sn: Loper -description: This is Cherri Loper's description -facsimileTelephoneNumber: +1 804 393-1441 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 928-3788 -title: Master Management Developer -userPassword: Password1 -uid: LoperC -givenName: Cherri -mail: LoperC@9e9dcbe516e7453a9ec2c4f34261ca62.bitwarden.com -carLicense: WAT25V -departmentNumber: 7032 -employeeType: Normal -homePhone: +1 804 482-8424 -initials: C. L. -mobile: +1 804 715-1285 -pager: +1 804 310-1643 -roomNumber: 8421 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Joleen Fobert,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joleen Fobert -sn: Fobert -description: This is Joleen Fobert's description -facsimileTelephoneNumber: +1 206 729-6364 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 406-7561 -title: Chief Human Resources Stooge -userPassword: Password1 -uid: FobertJ -givenName: Joleen -mail: FobertJ@ce472d3fc80444b983f47fbd786a2ed7.bitwarden.com -carLicense: 3EHK7P -departmentNumber: 6452 -employeeType: Employee -homePhone: +1 206 647-5998 -initials: J. F. -mobile: +1 206 613-8542 -pager: +1 206 249-4890 -roomNumber: 9869 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crystal Ehlers -sn: Ehlers -description: This is Crystal Ehlers's description -facsimileTelephoneNumber: +1 213 696-4821 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 610-2020 -title: Supreme Janitorial Visionary -userPassword: Password1 -uid: EhlersC -givenName: Crystal -mail: EhlersC@38b2663172424c999e78408a67cf7851.bitwarden.com -carLicense: E79T25 -departmentNumber: 1990 -employeeType: Contract -homePhone: +1 213 153-3274 -initials: C. E. -mobile: +1 213 977-8960 -pager: +1 213 813-2342 -roomNumber: 8748 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marley Dadalt,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marley Dadalt -sn: Dadalt -description: This is Marley Dadalt's description -facsimileTelephoneNumber: +1 408 893-5834 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 256-5286 -title: Chief Product Development Technician -userPassword: Password1 -uid: DadaltM -givenName: Marley -mail: DadaltM@c37d437270714fb682259a0e5006b543.bitwarden.com -carLicense: MNLN4K -departmentNumber: 8885 -employeeType: Normal -homePhone: +1 408 799-7371 -initials: M. D. -mobile: +1 408 599-4562 -pager: +1 408 330-9279 -roomNumber: 9804 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jocelin Mensinkai -sn: Mensinkai -description: This is Jocelin Mensinkai's description -facsimileTelephoneNumber: +1 213 722-1669 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 567-8269 -title: Supreme Human Resources President -userPassword: Password1 -uid: MensinkJ -givenName: Jocelin -mail: MensinkJ@0148ea24c11b461eaf1bfa51c7f254fe.bitwarden.com -carLicense: B484XB -departmentNumber: 2304 -employeeType: Normal -homePhone: +1 213 418-7745 -initials: J. M. -mobile: +1 213 496-8882 -pager: +1 213 432-9417 -roomNumber: 8422 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jennee Reznick,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jennee Reznick -sn: Reznick -description: This is Jennee Reznick's description -facsimileTelephoneNumber: +1 415 491-7387 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 619-3462 -title: Junior Peons Grunt -userPassword: Password1 -uid: ReznickJ -givenName: Jennee -mail: ReznickJ@d69d50a7aa3e4ebf9808282c9a27c7b8.bitwarden.com -carLicense: ISVCJH -departmentNumber: 7371 -employeeType: Contract -homePhone: +1 415 844-8638 -initials: J. R. -mobile: +1 415 521-2321 -pager: +1 415 980-2596 -roomNumber: 9040 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gerrit Pullan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerrit Pullan -sn: Pullan -description: This is Gerrit Pullan's description -facsimileTelephoneNumber: +1 818 393-3481 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 835-7374 -title: Associate Peons Punk -userPassword: Password1 -uid: PullanG -givenName: Gerrit -mail: PullanG@f07a2704744543c99ec010f0a9ec3d24.bitwarden.com -carLicense: 325NC4 -departmentNumber: 2244 -employeeType: Employee -homePhone: +1 818 528-5543 -initials: G. P. -mobile: +1 818 690-9466 -pager: +1 818 264-3923 -roomNumber: 8176 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Duke Ness,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duke Ness -sn: Ness -description: This is Duke Ness's description -facsimileTelephoneNumber: +1 804 901-4947 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 335-9923 -title: Supreme Administrative Figurehead -userPassword: Password1 -uid: NessD -givenName: Duke -mail: NessD@4520c387caf14590a3143afb1ef72ec6.bitwarden.com -carLicense: LEJJ07 -departmentNumber: 8989 -employeeType: Contract -homePhone: +1 804 759-6671 -initials: D. N. -mobile: +1 804 440-6649 -pager: +1 804 297-7657 -roomNumber: 8062 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emilie Grigsby,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emilie Grigsby -sn: Grigsby -description: This is Emilie Grigsby's description -facsimileTelephoneNumber: +1 213 893-6815 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 882-4417 -title: Master Product Development Writer -userPassword: Password1 -uid: GrigsbyE -givenName: Emilie -mail: GrigsbyE@aec32be154e9468aaf07e631090cf3e2.bitwarden.com -carLicense: 0SK3PU -departmentNumber: 5544 -employeeType: Employee -homePhone: +1 213 633-9766 -initials: E. G. -mobile: +1 213 517-9524 -pager: +1 213 948-9587 -roomNumber: 8811 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shiroshi Thorsen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shiroshi Thorsen -sn: Thorsen -description: This is Shiroshi Thorsen's description -facsimileTelephoneNumber: +1 804 483-4621 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 605-1509 -title: Master Management Janitor -userPassword: Password1 -uid: ThorsenS -givenName: Shiroshi -mail: ThorsenS@03a382a7724f452d85abab30e3c678e3.bitwarden.com -carLicense: 8QEG3X -departmentNumber: 1387 -employeeType: Normal -homePhone: +1 804 619-6011 -initials: S. T. -mobile: +1 804 542-2158 -pager: +1 804 952-9159 -roomNumber: 9330 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Katey Dorr,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katey Dorr -sn: Dorr -description: This is Katey Dorr's description -facsimileTelephoneNumber: +1 818 503-8722 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 818 578-5292 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: DorrK -givenName: Katey -mail: DorrK@7e22fa8dfa8e4caa8ba807b20db9639f.bitwarden.com -carLicense: OB02OX -departmentNumber: 4487 -employeeType: Contract -homePhone: +1 818 265-5555 -initials: K. D. -mobile: +1 818 655-2499 -pager: +1 818 956-6511 -roomNumber: 9687 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Manuela Whitsell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manuela Whitsell -sn: Whitsell -description: This is Manuela Whitsell's description -facsimileTelephoneNumber: +1 804 451-9871 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 791-2778 -title: Chief Payroll Architect -userPassword: Password1 -uid: WhitselM -givenName: Manuela -mail: WhitselM@d402d45df6ee44758d534e95cb5617f0.bitwarden.com -carLicense: E2TV0L -departmentNumber: 6022 -employeeType: Normal -homePhone: +1 804 181-7771 -initials: M. W. -mobile: +1 804 228-6123 -pager: +1 804 447-7354 -roomNumber: 9538 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kedah Kupferschmidt -sn: Kupferschmidt -description: This is Kedah Kupferschmidt's description -facsimileTelephoneNumber: +1 415 556-7239 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 415 656-5154 -title: Associate Payroll Madonna -userPassword: Password1 -uid: KupfersK -givenName: Kedah -mail: KupfersK@0b91b187654d42f6ab62dc14d39a1abd.bitwarden.com -carLicense: 5MPDM0 -departmentNumber: 3136 -employeeType: Contract -homePhone: +1 415 801-5213 -initials: K. K. -mobile: +1 415 685-4246 -pager: +1 415 427-4834 -roomNumber: 8594 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alvina Stokoe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvina Stokoe -sn: Stokoe -description: This is Alvina Stokoe's description -facsimileTelephoneNumber: +1 818 755-6987 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 818 959-3007 -title: Supreme Product Development Fellow -userPassword: Password1 -uid: StokoeA -givenName: Alvina -mail: StokoeA@ad964ba902a44170917694925f5549f0.bitwarden.com -carLicense: LYY60K -departmentNumber: 8585 -employeeType: Normal -homePhone: +1 818 538-7482 -initials: A. S. -mobile: +1 818 352-1343 -pager: +1 818 398-3205 -roomNumber: 9096 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Theo TestNTMVAA,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theo TestNTMVAA -sn: TestNTMVAA -description: This is Theo TestNTMVAA's description -facsimileTelephoneNumber: +1 206 862-4139 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 697-9794 -title: Junior Management Dictator -userPassword: Password1 -uid: TestNTMT -givenName: Theo -mail: TestNTMT@35bee35564684f309794106202d3e01a.bitwarden.com -carLicense: 22OG2Q -departmentNumber: 1826 -employeeType: Normal -homePhone: +1 206 704-2769 -initials: T. T. -mobile: +1 206 904-8921 -pager: +1 206 680-3466 -roomNumber: 9645 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maidsir Spaugh,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maidsir Spaugh -sn: Spaugh -description: This is Maidsir Spaugh's description -facsimileTelephoneNumber: +1 415 630-8999 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 228-9530 -title: Master Management Figurehead -userPassword: Password1 -uid: SpaughM -givenName: Maidsir -mail: SpaughM@95c484b7ceeb496da14312d962454e22.bitwarden.com -carLicense: NVAA6G -departmentNumber: 8838 -employeeType: Employee -homePhone: +1 415 516-9249 -initials: M. S. -mobile: +1 415 247-6626 -pager: +1 415 831-1219 -roomNumber: 8101 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoshimitsu Whetzel -sn: Whetzel -description: This is Yoshimitsu Whetzel's description -facsimileTelephoneNumber: +1 415 422-4434 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 474-1685 -title: Master Human Resources Czar -userPassword: Password1 -uid: WhetzelY -givenName: Yoshimitsu -mail: WhetzelY@7ac3538c32ef4218882c130acb03a83a.bitwarden.com -carLicense: 6OFD8X -departmentNumber: 7946 -employeeType: Normal -homePhone: +1 415 398-5303 -initials: Y. W. -mobile: +1 415 358-4686 -pager: +1 415 292-5923 -roomNumber: 9594 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yuksel Zaretsky -sn: Zaretsky -description: This is Yuksel Zaretsky's description -facsimileTelephoneNumber: +1 206 574-5723 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 206 611-7440 -title: Master Administrative Stooge -userPassword: Password1 -uid: ZaretskY -givenName: Yuksel -mail: ZaretskY@35ae2ba8abf646adb2f5a5352a90490c.bitwarden.com -carLicense: LIW33H -departmentNumber: 8365 -employeeType: Contract -homePhone: +1 206 856-4713 -initials: Y. Z. -mobile: +1 206 885-7788 -pager: +1 206 413-2928 -roomNumber: 9057 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vilas Jarvah,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vilas Jarvah -sn: Jarvah -description: This is Vilas Jarvah's description -facsimileTelephoneNumber: +1 804 308-4191 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 636-8970 -title: Junior Administrative Janitor -userPassword: Password1 -uid: JarvahV -givenName: Vilas -mail: JarvahV@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com -carLicense: C5K6LS -departmentNumber: 1598 -employeeType: Contract -homePhone: +1 804 896-4768 -initials: V. J. -mobile: +1 804 700-2167 -pager: +1 804 961-3008 -roomNumber: 8083 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cilka Chadha,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cilka Chadha -sn: Chadha -description: This is Cilka Chadha's description -facsimileTelephoneNumber: +1 213 820-6379 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 213 761-7220 -title: Chief Product Development President -userPassword: Password1 -uid: ChadhaC -givenName: Cilka -mail: ChadhaC@f4030ab817ff48ca98e8cd4e669c479e.bitwarden.com -carLicense: F3ND6C -departmentNumber: 4995 -employeeType: Normal -homePhone: +1 213 220-6266 -initials: C. C. -mobile: +1 213 293-5937 -pager: +1 213 869-8094 -roomNumber: 9050 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ludovico Kurth -sn: Kurth -description: This is Ludovico Kurth's description -facsimileTelephoneNumber: +1 213 337-8143 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 754-7837 -title: Associate Product Testing Evangelist -userPassword: Password1 -uid: KurthL -givenName: Ludovico -mail: KurthL@5df9c27aac564967ba9cd99480636500.bitwarden.com -carLicense: SWTO0N -departmentNumber: 6129 -employeeType: Normal -homePhone: +1 213 560-7976 -initials: L. K. -mobile: +1 213 581-9194 -pager: +1 213 532-1285 -roomNumber: 9758 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Merl Heffner,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merl Heffner -sn: Heffner -description: This is Merl Heffner's description -facsimileTelephoneNumber: +1 213 599-1752 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 213 884-3752 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: HeffnerM -givenName: Merl -mail: HeffnerM@8717d7d6686445eba152afa0241a3ea0.bitwarden.com -carLicense: DR6QAC -departmentNumber: 1488 -employeeType: Contract -homePhone: +1 213 107-9042 -initials: M. H. -mobile: +1 213 541-3612 -pager: +1 213 803-3205 -roomNumber: 9540 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shelly Adler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelly Adler -sn: Adler -description: This is Shelly Adler's description -facsimileTelephoneNumber: +1 818 333-4386 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 420-1594 -title: Associate Management Fellow -userPassword: Password1 -uid: AdlerS -givenName: Shelly -mail: AdlerS@55c6c435877940599b41e6e5d6f01b1d.bitwarden.com -carLicense: WUXAM7 -departmentNumber: 6423 -employeeType: Employee -homePhone: +1 818 564-7676 -initials: S. A. -mobile: +1 818 443-2987 -pager: +1 818 326-2809 -roomNumber: 8506 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marchelle Howie,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marchelle Howie -sn: Howie -description: This is Marchelle Howie's description -facsimileTelephoneNumber: +1 213 181-9357 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 291-4664 -title: Associate Administrative Stooge -userPassword: Password1 -uid: HowieM -givenName: Marchelle -mail: HowieM@8d06f5c0b94f46838a9f2ef1a0adee08.bitwarden.com -carLicense: SVLRMD -departmentNumber: 6291 -employeeType: Normal -homePhone: +1 213 549-4898 -initials: M. H. -mobile: +1 213 216-4944 -pager: +1 213 568-4209 -roomNumber: 8280 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chick Doucet,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chick Doucet -sn: Doucet -description: This is Chick Doucet's description -facsimileTelephoneNumber: +1 510 937-4737 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 698-3732 -title: Supreme Management Manager -userPassword: Password1 -uid: DoucetC -givenName: Chick -mail: DoucetC@7475aa279ff64b9683e6188f03eefc3d.bitwarden.com -carLicense: IPLV7V -departmentNumber: 7127 -employeeType: Contract -homePhone: +1 510 559-2671 -initials: C. D. -mobile: +1 510 737-2215 -pager: +1 510 801-7963 -roomNumber: 8593 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vittoria Astley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vittoria Astley -sn: Astley -description: This is Vittoria Astley's description -facsimileTelephoneNumber: +1 818 702-9402 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 851-5421 -title: Junior Human Resources Czar -userPassword: Password1 -uid: AstleyV -givenName: Vittoria -mail: AstleyV@f318f75c01ee43e0921a0e961414763d.bitwarden.com -carLicense: 6ULI00 -departmentNumber: 4838 -employeeType: Employee -homePhone: +1 818 813-2778 -initials: V. A. -mobile: +1 818 995-1815 -pager: +1 818 339-6151 -roomNumber: 8978 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hector Easaw,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hector Easaw -sn: Easaw -description: This is Hector Easaw's description -facsimileTelephoneNumber: +1 510 269-5958 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 414-6758 -title: Junior Payroll Engineer -userPassword: Password1 -uid: EasawH -givenName: Hector -mail: EasawH@d3e5ff3d0e59404589f0f6d57f8f6108.bitwarden.com -carLicense: IYCXOD -departmentNumber: 1182 -employeeType: Employee -homePhone: +1 510 297-5823 -initials: H. E. -mobile: +1 510 197-7366 -pager: +1 510 735-4087 -roomNumber: 9893 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Matilda Gomez,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matilda Gomez -sn: Gomez -description: This is Matilda Gomez's description -facsimileTelephoneNumber: +1 415 691-7351 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 415 389-5770 -title: Master Human Resources Stooge -userPassword: Password1 -uid: GomezM -givenName: Matilda -mail: GomezM@ccf238ac72764498a2a4e871140940fd.bitwarden.com -carLicense: 4SXYAI -departmentNumber: 8094 -employeeType: Contract -homePhone: +1 415 930-1157 -initials: M. G. -mobile: +1 415 600-9353 -pager: +1 415 219-4814 -roomNumber: 9843 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Crista McMasters,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crista McMasters -sn: McMasters -description: This is Crista McMasters's description -facsimileTelephoneNumber: +1 206 940-5348 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 224-6771 -title: Chief Management Punk -userPassword: Password1 -uid: McMasteC -givenName: Crista -mail: McMasteC@444794b5113d44779ace93e2616392cf.bitwarden.com -carLicense: RYCNM0 -departmentNumber: 9235 -employeeType: Employee -homePhone: +1 206 981-1389 -initials: C. M. -mobile: +1 206 570-6901 -pager: +1 206 866-8437 -roomNumber: 9903 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laury Abbatantuono -sn: Abbatantuono -description: This is Laury Abbatantuono's description -facsimileTelephoneNumber: +1 415 465-6957 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 837-5389 -title: Master Payroll Evangelist -userPassword: Password1 -uid: AbbatanL -givenName: Laury -mail: AbbatanL@eb362d3928c448a4b72d63b85283da63.bitwarden.com -carLicense: DJSEQ7 -departmentNumber: 8576 -employeeType: Normal -homePhone: +1 415 944-8232 -initials: L. A. -mobile: +1 415 985-8524 -pager: +1 415 231-6512 -roomNumber: 8350 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amnish Haydock,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amnish Haydock -sn: Haydock -description: This is Amnish Haydock's description -facsimileTelephoneNumber: +1 804 134-3655 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 998-6792 -title: Junior Management Fellow -userPassword: Password1 -uid: HaydockA -givenName: Amnish -mail: HaydockA@e326aad292d2417588aee72e8914fb32.bitwarden.com -carLicense: E8ED8Y -departmentNumber: 7673 -employeeType: Contract -homePhone: +1 804 519-5803 -initials: A. H. -mobile: +1 804 230-4345 -pager: +1 804 499-1771 -roomNumber: 8513 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mignonne Shull,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mignonne Shull -sn: Shull -description: This is Mignonne Shull's description -facsimileTelephoneNumber: +1 510 689-9177 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 799-1577 -title: Master Product Development President -userPassword: Password1 -uid: ShullM -givenName: Mignonne -mail: ShullM@5eddd4d764454fa48632e5c1f8824445.bitwarden.com -carLicense: C1Q32N -departmentNumber: 5044 -employeeType: Normal -homePhone: +1 510 849-3259 -initials: M. S. -mobile: +1 510 376-5844 -pager: +1 510 705-7503 -roomNumber: 8002 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lizzy Monson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lizzy Monson -sn: Monson -description: This is Lizzy Monson's description -facsimileTelephoneNumber: +1 415 256-7771 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 437-7516 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: MonsonL -givenName: Lizzy -mail: MonsonL@5dfbfc6402474d4a84deb330c0f4315f.bitwarden.com -carLicense: V9NYD6 -departmentNumber: 2679 -employeeType: Employee -homePhone: +1 415 532-1802 -initials: L. M. -mobile: +1 415 337-1677 -pager: +1 415 363-1349 -roomNumber: 8260 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Riyad Stropp,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Riyad Stropp -sn: Stropp -description: This is Riyad Stropp's description -facsimileTelephoneNumber: +1 415 279-6171 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 485-3020 -title: Chief Peons Assistant -userPassword: Password1 -uid: StroppR -givenName: Riyad -mail: StroppR@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com -carLicense: Y5DBU7 -departmentNumber: 7315 -employeeType: Contract -homePhone: +1 415 540-7921 -initials: R. S. -mobile: +1 415 608-4736 -pager: +1 415 663-5535 -roomNumber: 9561 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jennee Tipping,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jennee Tipping -sn: Tipping -description: This is Jennee Tipping's description -facsimileTelephoneNumber: +1 415 499-1555 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 207-3596 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: TippingJ -givenName: Jennee -mail: TippingJ@7a8159a4b38d481598c0559b90aec74d.bitwarden.com -carLicense: L6GDR5 -departmentNumber: 6028 -employeeType: Contract -homePhone: +1 415 831-6690 -initials: J. T. -mobile: +1 415 279-3234 -pager: +1 415 172-3558 -roomNumber: 9495 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lorianne Devera,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorianne Devera -sn: Devera -description: This is Lorianne Devera's description -facsimileTelephoneNumber: +1 804 258-2280 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 749-7013 -title: Chief Peons Artist -userPassword: Password1 -uid: DeveraL -givenName: Lorianne -mail: DeveraL@086cd0723f0c4d19b12b0a6c52b08ed8.bitwarden.com -carLicense: YUMNNU -departmentNumber: 1164 -employeeType: Contract -homePhone: +1 804 761-7656 -initials: L. D. -mobile: +1 804 187-4733 -pager: +1 804 619-2784 -roomNumber: 9378 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kana VanSickle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kana VanSickle -sn: VanSickle -description: This is Kana VanSickle's description -facsimileTelephoneNumber: +1 415 754-5450 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 826-2745 -title: Master Human Resources Artist -userPassword: Password1 -uid: VanSickK -givenName: Kana -mail: VanSickK@fc1572b2278f4aeabefffc267baf4272.bitwarden.com -carLicense: 2XQX77 -departmentNumber: 9369 -employeeType: Employee -homePhone: +1 415 785-2404 -initials: K. V. -mobile: +1 415 546-3001 -pager: +1 415 214-2630 -roomNumber: 8264 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bina Scales,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bina Scales -sn: Scales -description: This is Bina Scales's description -facsimileTelephoneNumber: +1 213 135-8025 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 213 239-3773 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: ScalesB -givenName: Bina -mail: ScalesB@166fd602ceb04a58b9e0bfc4c39bf95b.bitwarden.com -carLicense: HITU81 -departmentNumber: 8217 -employeeType: Normal -homePhone: +1 213 533-5779 -initials: B. S. -mobile: +1 213 815-1610 -pager: +1 213 348-8180 -roomNumber: 9937 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ariela Stachowiak,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ariela Stachowiak -sn: Stachowiak -description: This is Ariela Stachowiak's description -facsimileTelephoneNumber: +1 818 154-8551 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 988-7060 -title: Junior Peons Admin -userPassword: Password1 -uid: StachowA -givenName: Ariela -mail: StachowA@90463e36c9634ed7af09a58415debfe0.bitwarden.com -carLicense: K0XL5D -departmentNumber: 6588 -employeeType: Normal -homePhone: +1 818 206-5406 -initials: A. S. -mobile: +1 818 621-3665 -pager: +1 818 801-9144 -roomNumber: 8360 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Leontine Kresl,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leontine Kresl -sn: Kresl -description: This is Leontine Kresl's description -facsimileTelephoneNumber: +1 206 847-5741 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 860-5504 -title: Supreme Human Resources Assistant -userPassword: Password1 -uid: KreslL -givenName: Leontine -mail: KreslL@123877216cf647dc9c161017fd0bf922.bitwarden.com -carLicense: OGBJ48 -departmentNumber: 7457 -employeeType: Employee -homePhone: +1 206 603-6322 -initials: L. K. -mobile: +1 206 738-9799 -pager: +1 206 362-2331 -roomNumber: 8359 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tomasine Borza,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tomasine Borza -sn: Borza -description: This is Tomasine Borza's description -facsimileTelephoneNumber: +1 415 108-2930 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 679-5229 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: BorzaT -givenName: Tomasine -mail: BorzaT@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com -carLicense: 8ROOLS -departmentNumber: 3103 -employeeType: Normal -homePhone: +1 415 450-5210 -initials: T. B. -mobile: +1 415 915-1388 -pager: +1 415 674-3693 -roomNumber: 8127 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Emory Ramnarine,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emory Ramnarine -sn: Ramnarine -description: This is Emory Ramnarine's description -facsimileTelephoneNumber: +1 213 240-7906 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 506-7784 -title: Supreme Product Development Writer -userPassword: Password1 -uid: RamnariE -givenName: Emory -mail: RamnariE@391d8dba5fa94d8e974df50be3a6709e.bitwarden.com -carLicense: 82B0BN -departmentNumber: 2909 -employeeType: Employee -homePhone: +1 213 904-8202 -initials: E. R. -mobile: +1 213 487-4482 -pager: +1 213 693-7831 -roomNumber: 8806 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Corella Loperena,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corella Loperena -sn: Loperena -description: This is Corella Loperena's description -facsimileTelephoneNumber: +1 510 162-9166 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 330-5809 -title: Master Management Visionary -userPassword: Password1 -uid: LoperenC -givenName: Corella -mail: LoperenC@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com -carLicense: CJ3CSD -departmentNumber: 3975 -employeeType: Normal -homePhone: +1 510 808-8974 -initials: C. L. -mobile: +1 510 134-4598 -pager: +1 510 159-3247 -roomNumber: 9266 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mirna Kashef,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirna Kashef -sn: Kashef -description: This is Mirna Kashef's description -facsimileTelephoneNumber: +1 206 452-3758 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 241-7438 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: KashefM -givenName: Mirna -mail: KashefM@072112936d7540f191ae5e1941e3f66c.bitwarden.com -carLicense: F5LCV3 -departmentNumber: 6900 -employeeType: Normal -homePhone: +1 206 496-2415 -initials: M. K. -mobile: +1 206 386-9955 -pager: +1 206 231-4699 -roomNumber: 9630 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Roseann Coyne,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roseann Coyne -sn: Coyne -description: This is Roseann Coyne's description -facsimileTelephoneNumber: +1 213 837-8164 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 997-8805 -title: Supreme Product Development Visionary -userPassword: Password1 -uid: CoyneR -givenName: Roseann -mail: CoyneR@3dd9413931df4d5d906784831a201dd2.bitwarden.com -carLicense: MV8XTO -departmentNumber: 6378 -employeeType: Employee -homePhone: +1 213 269-1584 -initials: R. C. -mobile: +1 213 774-8768 -pager: +1 213 881-1756 -roomNumber: 9842 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaela Amarsi -sn: Amarsi -description: This is Kaela Amarsi's description -facsimileTelephoneNumber: +1 213 154-4117 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 116-1539 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: AmarsiK -givenName: Kaela -mail: AmarsiK@4b0a9ffaaeec4cc3ae5daf192d65fc6b.bitwarden.com -carLicense: D2Q9VT -departmentNumber: 8096 -employeeType: Normal -homePhone: +1 213 315-6574 -initials: K. A. -mobile: +1 213 717-9933 -pager: +1 213 894-2798 -roomNumber: 8673 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Agenia Zampino,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agenia Zampino -sn: Zampino -description: This is Agenia Zampino's description -facsimileTelephoneNumber: +1 213 881-1712 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 581-6636 -title: Junior Administrative Fellow -userPassword: Password1 -uid: ZampinoA -givenName: Agenia -mail: ZampinoA@52895e87978c4f7a853b254ac3b4e18f.bitwarden.com -carLicense: PJE7B4 -departmentNumber: 3154 -employeeType: Employee -homePhone: +1 213 373-1976 -initials: A. Z. -mobile: +1 213 780-3758 -pager: +1 213 312-3665 -roomNumber: 9374 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vic Lenox,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vic Lenox -sn: Lenox -description: This is Vic Lenox's description -facsimileTelephoneNumber: +1 206 773-9911 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 685-2288 -title: Master Product Testing Technician -userPassword: Password1 -uid: LenoxV -givenName: Vic -mail: LenoxV@9c640b9ada7e43fd815986e9b791454d.bitwarden.com -carLicense: 7V8K67 -departmentNumber: 6033 -employeeType: Contract -homePhone: +1 206 488-3914 -initials: V. L. -mobile: +1 206 709-6450 -pager: +1 206 793-1410 -roomNumber: 9406 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sissie Rao,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sissie Rao -sn: Rao -description: This is Sissie Rao's description -facsimileTelephoneNumber: +1 206 686-7156 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 153-2713 -title: Associate Administrative Mascot -userPassword: Password1 -uid: RaoS -givenName: Sissie -mail: RaoS@ad2f81222ff04e688459bdc291415016.bitwarden.com -carLicense: IB0SKX -departmentNumber: 8821 -employeeType: Contract -homePhone: +1 206 106-2710 -initials: S. R. -mobile: +1 206 510-6564 -pager: +1 206 828-7901 -roomNumber: 8625 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chi Shreve,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chi Shreve -sn: Shreve -description: This is Chi Shreve's description -facsimileTelephoneNumber: +1 510 808-2607 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 361-5011 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: ShreveC -givenName: Chi -mail: ShreveC@b2b61d7107f642f5a98b64baa9303c9a.bitwarden.com -carLicense: IJFOXL -departmentNumber: 7219 -employeeType: Normal -homePhone: +1 510 140-3617 -initials: C. S. -mobile: +1 510 818-3978 -pager: +1 510 470-5664 -roomNumber: 9955 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gloria DeGrandis,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gloria DeGrandis -sn: DeGrandis -description: This is Gloria DeGrandis's description -facsimileTelephoneNumber: +1 818 198-1706 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 360-7186 -title: Supreme Management Pinhead -userPassword: Password1 -uid: DeGrandG -givenName: Gloria -mail: DeGrandG@8a604e644ae34afd98bb9ace2d3d942b.bitwarden.com -carLicense: SK9DBR -departmentNumber: 4931 -employeeType: Employee -homePhone: +1 818 463-8968 -initials: G. D. -mobile: +1 818 224-8833 -pager: +1 818 260-2099 -roomNumber: 8119 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ryann Teacher,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ryann Teacher -sn: Teacher -description: This is Ryann Teacher's description -facsimileTelephoneNumber: +1 408 704-2878 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 754-4002 -title: Junior Management Technician -userPassword: Password1 -uid: TeacherR -givenName: Ryann -mail: TeacherR@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com -carLicense: YUFS46 -departmentNumber: 3293 -employeeType: Normal -homePhone: +1 408 171-4725 -initials: R. T. -mobile: +1 408 380-4541 -pager: +1 408 360-2744 -roomNumber: 8146 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanjeev Chirachanchai -sn: Chirachanchai -description: This is Sanjeev Chirachanchai's description -facsimileTelephoneNumber: +1 415 948-2050 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 815-7719 -title: Supreme Product Development Pinhead -userPassword: Password1 -uid: ChirachS -givenName: Sanjeev -mail: ChirachS@c50e1d17976a4acebd18f01bbfd46623.bitwarden.com -carLicense: IEJW1N -departmentNumber: 4566 -employeeType: Employee -homePhone: +1 415 922-6058 -initials: S. C. -mobile: +1 415 562-3885 -pager: +1 415 801-4475 -roomNumber: 8848 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Naveen Kollman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naveen Kollman -sn: Kollman -description: This is Naveen Kollman's description -facsimileTelephoneNumber: +1 408 497-7411 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 821-2016 -title: Associate Peons President -userPassword: Password1 -uid: KollmanN -givenName: Naveen -mail: KollmanN@dc25e6259a754e12b71b6ceb921f6e43.bitwarden.com -carLicense: MNTC1G -departmentNumber: 4143 -employeeType: Normal -homePhone: +1 408 901-4559 -initials: N. K. -mobile: +1 408 809-5210 -pager: +1 408 844-3016 -roomNumber: 8332 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rozina Schipper,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozina Schipper -sn: Schipper -description: This is Rozina Schipper's description -facsimileTelephoneNumber: +1 818 384-9445 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 600-9898 -title: Master Management Writer -userPassword: Password1 -uid: SchippeR -givenName: Rozina -mail: SchippeR@388f37e043f44f87a961652591a7a940.bitwarden.com -carLicense: SR91NS -departmentNumber: 5326 -employeeType: Contract -homePhone: +1 818 383-4472 -initials: R. S. -mobile: +1 818 296-9938 -pager: +1 818 362-8899 -roomNumber: 9760 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Partha Kelsay,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Partha Kelsay -sn: Kelsay -description: This is Partha Kelsay's description -facsimileTelephoneNumber: +1 510 956-1803 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 503-7829 -title: Chief Peons Evangelist -userPassword: Password1 -uid: KelsayP -givenName: Partha -mail: KelsayP@fac421ca650e46139878bbd5f7498e19.bitwarden.com -carLicense: PT2BU3 -departmentNumber: 4161 -employeeType: Normal -homePhone: +1 510 983-4878 -initials: P. K. -mobile: +1 510 752-9471 -pager: +1 510 518-9996 -roomNumber: 9995 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mccauley HowePatterson -sn: HowePatterson -description: This is Mccauley HowePatterson's description -facsimileTelephoneNumber: +1 206 523-3136 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 625-2657 -title: Junior Administrative Visionary -userPassword: Password1 -uid: HowePatM -givenName: Mccauley -mail: HowePatM@cce34a85aeda4eaa8425019b868727c6.bitwarden.com -carLicense: 0BJ604 -departmentNumber: 9692 -employeeType: Normal -homePhone: +1 206 621-2054 -initials: M. H. -mobile: +1 206 804-6574 -pager: +1 206 104-5317 -roomNumber: 8882 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vinh Dhar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vinh Dhar -sn: Dhar -description: This is Vinh Dhar's description -facsimileTelephoneNumber: +1 804 576-5290 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 321-8104 -title: Junior Administrative Manager -userPassword: Password1 -uid: DharV -givenName: Vinh -mail: DharV@6f03f1adf7c149889e4e46274861a90d.bitwarden.com -carLicense: 564876 -departmentNumber: 7196 -employeeType: Employee -homePhone: +1 804 647-3361 -initials: V. D. -mobile: +1 804 375-4496 -pager: +1 804 111-9334 -roomNumber: 9283 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilde PlaterZyberk -sn: PlaterZyberk -description: This is Hilde PlaterZyberk's description -facsimileTelephoneNumber: +1 206 635-2648 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 364-7388 -title: Supreme Peons Consultant -userPassword: Password1 -uid: PlaterZH -givenName: Hilde -mail: PlaterZH@05c9124444ac41d598fb0334940751db.bitwarden.com -carLicense: 11H3Y3 -departmentNumber: 3572 -employeeType: Normal -homePhone: +1 206 490-8670 -initials: H. P. -mobile: +1 206 730-1222 -pager: +1 206 238-8253 -roomNumber: 9848 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cart Cardozo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cart Cardozo -sn: Cardozo -description: This is Cart Cardozo's description -facsimileTelephoneNumber: +1 415 928-6261 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 440-2020 -title: Master Management Consultant -userPassword: Password1 -uid: CardozoC -givenName: Cart -mail: CardozoC@e5c90ecebea1435c996209dde46c0296.bitwarden.com -carLicense: 335JNN -departmentNumber: 3349 -employeeType: Employee -homePhone: +1 415 495-5406 -initials: C. C. -mobile: +1 415 568-1725 -pager: +1 415 280-3307 -roomNumber: 9447 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Briana Ambler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Briana Ambler -sn: Ambler -description: This is Briana Ambler's description -facsimileTelephoneNumber: +1 408 809-2606 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 803-3732 -title: Supreme Product Development Janitor -userPassword: Password1 -uid: AmblerB -givenName: Briana -mail: AmblerB@a94a4e703f55451099134b3aaeedccbb.bitwarden.com -carLicense: WGL12P -departmentNumber: 3481 -employeeType: Contract -homePhone: +1 408 319-3538 -initials: B. A. -mobile: +1 408 100-9327 -pager: +1 408 180-8937 -roomNumber: 8544 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kemp Akai,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kemp Akai -sn: Akai -description: This is Kemp Akai's description -facsimileTelephoneNumber: +1 818 645-6915 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 993-8370 -title: Associate Management Technician -userPassword: Password1 -uid: AkaiK -givenName: Kemp -mail: AkaiK@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com -carLicense: V5IM3R -departmentNumber: 9154 -employeeType: Employee -homePhone: +1 818 324-9451 -initials: K. A. -mobile: +1 818 295-4816 -pager: +1 818 664-3094 -roomNumber: 9549 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anjela Gribbons,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anjela Gribbons -sn: Gribbons -description: This is Anjela Gribbons's description -facsimileTelephoneNumber: +1 415 380-3052 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 186-5518 -title: Chief Product Development Director -userPassword: Password1 -uid: GribbonA -givenName: Anjela -mail: GribbonA@039e3a194ecb4b229b6171f883dbe2ca.bitwarden.com -carLicense: I4UW4H -departmentNumber: 2677 -employeeType: Contract -homePhone: +1 415 966-3029 -initials: A. G. -mobile: +1 415 859-3881 -pager: +1 415 454-5646 -roomNumber: 9563 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florri Pankhurst -sn: Pankhurst -description: This is Florri Pankhurst's description -facsimileTelephoneNumber: +1 804 327-9250 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 237-6325 -title: Junior Product Testing President -userPassword: Password1 -uid: PankhurF -givenName: Florri -mail: PankhurF@f97d3d1fbfb54eb9846b54af1e96be37.bitwarden.com -carLicense: 98OD8H -departmentNumber: 4652 -employeeType: Normal -homePhone: +1 804 853-3608 -initials: F. P. -mobile: +1 804 277-4041 -pager: +1 804 237-7001 -roomNumber: 8515 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hudai Baulch,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hudai Baulch -sn: Baulch -description: This is Hudai Baulch's description -facsimileTelephoneNumber: +1 213 394-8921 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 426-2456 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: BaulchH -givenName: Hudai -mail: BaulchH@ebbd3bd6f4c84c3b86ade3725f39d1ef.bitwarden.com -carLicense: 3CPJTK -departmentNumber: 9054 -employeeType: Employee -homePhone: +1 213 628-4254 -initials: H. B. -mobile: +1 213 204-3888 -pager: +1 213 524-7468 -roomNumber: 9340 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryKay Reichinger -sn: Reichinger -description: This is MaryKay Reichinger's description -facsimileTelephoneNumber: +1 510 130-2235 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 963-8281 -title: Master Human Resources Engineer -userPassword: Password1 -uid: ReichinM -givenName: MaryKay -mail: ReichinM@ae95a9e30a2b4495b405c300be234d38.bitwarden.com -carLicense: WC3UJ9 -departmentNumber: 8428 -employeeType: Contract -homePhone: +1 510 976-8290 -initials: M. R. -mobile: +1 510 744-1835 -pager: +1 510 209-3120 -roomNumber: 9825 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kee Gilchrist,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kee Gilchrist -sn: Gilchrist -description: This is Kee Gilchrist's description -facsimileTelephoneNumber: +1 510 137-9785 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 179-8128 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: GilchriK -givenName: Kee -mail: GilchriK@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com -carLicense: K37BGI -departmentNumber: 3988 -employeeType: Normal -homePhone: +1 510 114-3689 -initials: K. G. -mobile: +1 510 293-7716 -pager: +1 510 562-4167 -roomNumber: 8437 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphna Pewitt -sn: Pewitt -description: This is Daphna Pewitt's description -facsimileTelephoneNumber: +1 213 201-9758 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 670-1980 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: PewittD -givenName: Daphna -mail: PewittD@3569446edc67492da6f3555168f86d08.bitwarden.com -carLicense: 631PHN -departmentNumber: 2177 -employeeType: Employee -homePhone: +1 213 901-8916 -initials: D. P. -mobile: +1 213 706-2226 -pager: +1 213 270-4919 -roomNumber: 9332 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ellis Brunner,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellis Brunner -sn: Brunner -description: This is Ellis Brunner's description -facsimileTelephoneNumber: +1 408 316-8469 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 124-4551 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: BrunnerE -givenName: Ellis -mail: BrunnerE@a649078d65524cbb8ff458be0026774e.bitwarden.com -carLicense: N2KMEL -departmentNumber: 9621 -employeeType: Normal -homePhone: +1 408 406-8992 -initials: E. B. -mobile: +1 408 950-2363 -pager: +1 408 906-9234 -roomNumber: 9750 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Violet Luwemba,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Violet Luwemba -sn: Luwemba -description: This is Violet Luwemba's description -facsimileTelephoneNumber: +1 206 273-9595 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 591-7159 -title: Associate Payroll Writer -userPassword: Password1 -uid: LuwembaV -givenName: Violet -mail: LuwembaV@ecbe7413d7a74dce8478d8a77a5f394f.bitwarden.com -carLicense: 2IUHLW -departmentNumber: 4504 -employeeType: Employee -homePhone: +1 206 263-6169 -initials: V. L. -mobile: +1 206 944-7447 -pager: +1 206 259-8647 -roomNumber: 8331 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kessia McVicker,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kessia McVicker -sn: McVicker -description: This is Kessia McVicker's description -facsimileTelephoneNumber: +1 510 627-2490 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 411-5024 -title: Junior Management Grunt -userPassword: Password1 -uid: McVickeK -givenName: Kessia -mail: McVickeK@9655cd36a01c4aa6b915b07f385eebda.bitwarden.com -carLicense: NBI8H1 -departmentNumber: 6948 -employeeType: Contract -homePhone: +1 510 393-6781 -initials: K. M. -mobile: +1 510 741-5642 -pager: +1 510 423-5885 -roomNumber: 9335 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Buffy Treen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Buffy Treen -sn: Treen -description: This is Buffy Treen's description -facsimileTelephoneNumber: +1 818 654-3676 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 818 818-8220 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: TreenB -givenName: Buffy -mail: TreenB@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com -carLicense: F1CCEC -departmentNumber: 2547 -employeeType: Employee -homePhone: +1 818 483-6819 -initials: B. T. -mobile: +1 818 279-8675 -pager: +1 818 337-7283 -roomNumber: 9866 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Huub Palfreyman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huub Palfreyman -sn: Palfreyman -description: This is Huub Palfreyman's description -facsimileTelephoneNumber: +1 213 549-7393 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 786-1444 -title: Junior Administrative Vice President -userPassword: Password1 -uid: PalfreyH -givenName: Huub -mail: PalfreyH@39279f1fe7e44c90a8b6ba9604608e10.bitwarden.com -carLicense: U47R55 -departmentNumber: 7637 -employeeType: Normal -homePhone: +1 213 901-3952 -initials: H. P. -mobile: +1 213 965-3534 -pager: +1 213 386-5845 -roomNumber: 8647 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Walt Pringle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walt Pringle -sn: Pringle -description: This is Walt Pringle's description -facsimileTelephoneNumber: +1 818 976-4394 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 760-6694 -title: Junior Human Resources Janitor -userPassword: Password1 -uid: PringleW -givenName: Walt -mail: PringleW@1165c0fd18ed4ab3a49c1b798696e277.bitwarden.com -carLicense: PXPC4R -departmentNumber: 2472 -employeeType: Contract -homePhone: +1 818 603-4508 -initials: W. P. -mobile: +1 818 639-8097 -pager: +1 818 933-2411 -roomNumber: 9076 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wladyslaw Angerer -sn: Angerer -description: This is Wladyslaw Angerer's description -facsimileTelephoneNumber: +1 415 265-7824 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 415 250-7249 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: AngererW -givenName: Wladyslaw -mail: AngererW@6de130a8139a479abd748cccf12fccd5.bitwarden.com -carLicense: 1IO3D4 -departmentNumber: 5681 -employeeType: Contract -homePhone: +1 415 349-6277 -initials: W. A. -mobile: +1 415 947-3608 -pager: +1 415 847-5753 -roomNumber: 9225 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betteanne Ferguson -sn: Ferguson -description: This is Betteanne Ferguson's description -facsimileTelephoneNumber: +1 804 472-4964 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 185-5337 -title: Chief Payroll Sales Rep -userPassword: Password1 -uid: FergusoB -givenName: Betteanne -mail: FergusoB@d404d6f67aee4480aef4deb01202b0ce.bitwarden.com -carLicense: IO0ES9 -departmentNumber: 2573 -employeeType: Contract -homePhone: +1 804 234-8306 -initials: B. F. -mobile: +1 804 611-7518 -pager: +1 804 582-2535 -roomNumber: 8691 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rima OBrien,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rima OBrien -sn: OBrien -description: This is Rima OBrien's description -facsimileTelephoneNumber: +1 408 936-5893 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 764-6348 -title: Junior Peons Evangelist -userPassword: Password1 -uid: OBrienR -givenName: Rima -mail: OBrienR@fecfcf752c6e4027af9fd19570ebc44a.bitwarden.com -carLicense: JP8B28 -departmentNumber: 8978 -employeeType: Employee -homePhone: +1 408 975-2111 -initials: R. O. -mobile: +1 408 215-9457 -pager: +1 408 239-7318 -roomNumber: 8730 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tesfagaber Stites -sn: Stites -description: This is Tesfagaber Stites's description -facsimileTelephoneNumber: +1 510 333-7438 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 806-9799 -title: Associate Payroll Dictator -userPassword: Password1 -uid: StitesT -givenName: Tesfagaber -mail: StitesT@fdcc23b3e21f4f0fa3bffbc78ce6d7d0.bitwarden.com -carLicense: F9MDC0 -departmentNumber: 1852 -employeeType: Employee -homePhone: +1 510 142-4564 -initials: T. S. -mobile: +1 510 764-5061 -pager: +1 510 624-6466 -roomNumber: 9171 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Robinett Borg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinett Borg -sn: Borg -description: This is Robinett Borg's description -facsimileTelephoneNumber: +1 804 398-4208 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 411-1750 -title: Master Janitorial Janitor -userPassword: Password1 -uid: BorgR -givenName: Robinett -mail: BorgR@20f59cdd83ae48b3816d0ba42aaa0a71.bitwarden.com -carLicense: EJEB3Q -departmentNumber: 3555 -employeeType: Normal -homePhone: +1 804 939-2040 -initials: R. B. -mobile: +1 804 170-1152 -pager: +1 804 249-2560 -roomNumber: 9770 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marielle Kruziak -sn: Kruziak -description: This is Marielle Kruziak's description -facsimileTelephoneNumber: +1 206 922-5654 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 206 177-6402 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: KruziakM -givenName: Marielle -mail: KruziakM@256ea15783c347f9b9c84e579468618d.bitwarden.com -carLicense: YMXNAK -departmentNumber: 2001 -employeeType: Employee -homePhone: +1 206 213-5723 -initials: M. K. -mobile: +1 206 222-2439 -pager: +1 206 769-5476 -roomNumber: 8290 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaughan Thornley -sn: Thornley -description: This is Shaughan Thornley's description -facsimileTelephoneNumber: +1 415 621-1556 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 278-9199 -title: Chief Janitorial Punk -userPassword: Password1 -uid: ThornleS -givenName: Shaughan -mail: ThornleS@1e2b67f93f814f68b5e4aa746670a4e8.bitwarden.com -carLicense: 7L081S -departmentNumber: 5474 -employeeType: Normal -homePhone: +1 415 180-6008 -initials: S. T. -mobile: +1 415 580-6383 -pager: +1 415 513-2007 -roomNumber: 8052 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wai Elms,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wai Elms -sn: Elms -description: This is Wai Elms's description -facsimileTelephoneNumber: +1 415 755-1145 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 753-9844 -title: Junior Product Testing Punk -userPassword: Password1 -uid: ElmsW -givenName: Wai -mail: ElmsW@d28530c9df644cffbc9c3ddd841cc9a4.bitwarden.com -carLicense: 1VQB6X -departmentNumber: 6963 -employeeType: Contract -homePhone: +1 415 514-7692 -initials: W. E. -mobile: +1 415 805-7297 -pager: +1 415 861-6596 -roomNumber: 9607 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shoshanna Epplett -sn: Epplett -description: This is Shoshanna Epplett's description -facsimileTelephoneNumber: +1 408 383-5108 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 989-1465 -title: Junior Product Development Manager -userPassword: Password1 -uid: EpplettS -givenName: Shoshanna -mail: EpplettS@09c55424f60f401a820af7f109784bda.bitwarden.com -carLicense: S3SQA8 -departmentNumber: 6524 -employeeType: Normal -homePhone: +1 408 299-8146 -initials: S. E. -mobile: +1 408 108-8871 -pager: +1 408 568-3009 -roomNumber: 8856 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alikee Seay,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alikee Seay -sn: Seay -description: This is Alikee Seay's description -facsimileTelephoneNumber: +1 213 512-7899 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 645-1068 -title: Chief Janitorial Artist -userPassword: Password1 -uid: SeayA -givenName: Alikee -mail: SeayA@99a51e3de4824b82894f80e7490fdc98.bitwarden.com -carLicense: 14K6KB -departmentNumber: 2937 -employeeType: Employee -homePhone: +1 213 729-7748 -initials: A. S. -mobile: +1 213 446-6570 -pager: +1 213 110-2846 -roomNumber: 8341 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: DiaEdin Simonsen -sn: Simonsen -description: This is DiaEdin Simonsen's description -facsimileTelephoneNumber: +1 206 743-1860 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 206 479-9431 -title: Associate Human Resources Vice President -userPassword: Password1 -uid: SimonseD -givenName: DiaEdin -mail: SimonseD@b67254eafc794e8aadd067850b852e05.bitwarden.com -carLicense: VOK4PO -departmentNumber: 6528 -employeeType: Contract -homePhone: +1 206 350-4089 -initials: D. S. -mobile: +1 206 648-2795 -pager: +1 206 460-1209 -roomNumber: 8580 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pammi Abrams,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pammi Abrams -sn: Abrams -description: This is Pammi Abrams's description -facsimileTelephoneNumber: +1 818 607-3481 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 516-1341 -title: Supreme Peons Mascot -userPassword: Password1 -uid: AbramsP -givenName: Pammi -mail: AbramsP@860c7d85ea254a79a064b6a2375bb2e5.bitwarden.com -carLicense: B8627G -departmentNumber: 7437 -employeeType: Contract -homePhone: +1 818 647-7211 -initials: P. A. -mobile: +1 818 636-3108 -pager: +1 818 330-5851 -roomNumber: 8653 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gateway Benzick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gateway Benzick -sn: Benzick -description: This is Gateway Benzick's description -facsimileTelephoneNumber: +1 818 778-9495 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 818 991-5638 -title: Supreme Product Testing President -userPassword: Password1 -uid: BenzickG -givenName: Gateway -mail: BenzickG@ef52200320a34601b7e10e8ff147afd3.bitwarden.com -carLicense: 3YQOCA -departmentNumber: 4914 -employeeType: Contract -homePhone: +1 818 537-8740 -initials: G. B. -mobile: +1 818 536-5283 -pager: +1 818 544-4678 -roomNumber: 8379 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rhody Birk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhody Birk -sn: Birk -description: This is Rhody Birk's description -facsimileTelephoneNumber: +1 804 811-6966 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 297-9899 -title: Master Administrative Warrior -userPassword: Password1 -uid: BirkR -givenName: Rhody -mail: BirkR@0700db396e394f2aa0ec4417fdd37e22.bitwarden.com -carLicense: JSNSEE -departmentNumber: 4524 -employeeType: Contract -homePhone: +1 804 433-6265 -initials: R. B. -mobile: +1 804 726-5791 -pager: +1 804 783-1975 -roomNumber: 8398 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pinecrest Ramakrishna -sn: Ramakrishna -description: This is Pinecrest Ramakrishna's description -facsimileTelephoneNumber: +1 415 565-5273 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 113-8667 -title: Master Human Resources Vice President -userPassword: Password1 -uid: RamakriP -givenName: Pinecrest -mail: RamakriP@7bd1348caadc49fd912c79c585334210.bitwarden.com -carLicense: N2USXE -departmentNumber: 4446 -employeeType: Employee -homePhone: +1 415 955-9825 -initials: P. R. -mobile: +1 415 614-3206 -pager: +1 415 701-6492 -roomNumber: 8098 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Atlanta Brannon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atlanta Brannon -sn: Brannon -description: This is Atlanta Brannon's description -facsimileTelephoneNumber: +1 213 148-6992 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 633-2566 -title: Supreme Management Technician -userPassword: Password1 -uid: BrannonA -givenName: Atlanta -mail: BrannonA@8148a52d859b468a9dde3ee8b81e013b.bitwarden.com -carLicense: 93STE4 -departmentNumber: 2326 -employeeType: Employee -homePhone: +1 213 736-3733 -initials: A. B. -mobile: +1 213 449-6390 -pager: +1 213 597-8166 -roomNumber: 9106 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mentor MACKenzie -sn: MACKenzie -description: This is Mentor MACKenzie's description -facsimileTelephoneNumber: +1 408 597-7346 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 610-5954 -title: Supreme Product Development Admin -userPassword: Password1 -uid: MACKenzM -givenName: Mentor -mail: MACKenzM@a4ebc705137a4ddb9ebce3e4b095eec3.bitwarden.com -carLicense: 09AWK8 -departmentNumber: 1733 -employeeType: Employee -homePhone: +1 408 399-9345 -initials: M. M. -mobile: +1 408 359-1354 -pager: +1 408 760-8934 -roomNumber: 8069 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JFrancois Nickerson -sn: Nickerson -description: This is JFrancois Nickerson's description -facsimileTelephoneNumber: +1 408 435-3900 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 173-6137 -title: Master Janitorial Developer -userPassword: Password1 -uid: NickersJ -givenName: JFrancois -mail: NickersJ@dc196a8022ff465cb8dbe2eba3225125.bitwarden.com -carLicense: RUE9GJ -departmentNumber: 2397 -employeeType: Employee -homePhone: +1 408 741-4648 -initials: J. N. -mobile: +1 408 536-7547 -pager: +1 408 567-4895 -roomNumber: 9701 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khosro ODonnell -sn: ODonnell -description: This is Khosro ODonnell's description -facsimileTelephoneNumber: +1 818 209-9580 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 196-1985 -title: Associate Human Resources Architect -userPassword: Password1 -uid: ODonnelK -givenName: Khosro -mail: ODonnelK@c7537618f37d4b7db41aeb4dbd21158d.bitwarden.com -carLicense: 1PLHDN -departmentNumber: 9365 -employeeType: Employee -homePhone: +1 818 363-4566 -initials: K. O. -mobile: +1 818 463-3427 -pager: +1 818 925-8157 -roomNumber: 9591 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lisabeth Gedman -sn: Gedman -description: This is Lisabeth Gedman's description -facsimileTelephoneNumber: +1 213 156-9872 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 166-4220 -title: Associate Administrative Janitor -userPassword: Password1 -uid: GedmanL -givenName: Lisabeth -mail: GedmanL@521dc01836174c9fbceba2f0cdb64374.bitwarden.com -carLicense: CJXHWC -departmentNumber: 5312 -employeeType: Employee -homePhone: +1 213 355-8002 -initials: L. G. -mobile: +1 213 156-4915 -pager: +1 213 125-6897 -roomNumber: 8569 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Moshe Bowick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moshe Bowick -sn: Bowick -description: This is Moshe Bowick's description -facsimileTelephoneNumber: +1 804 129-5656 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 556-1860 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: BowickM -givenName: Moshe -mail: BowickM@0d2070a7704249ccae81fc4b91659074.bitwarden.com -carLicense: K8BMKP -departmentNumber: 4798 -employeeType: Employee -homePhone: +1 804 320-6721 -initials: M. B. -mobile: +1 804 143-9407 -pager: +1 804 314-6257 -roomNumber: 8996 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shirene Lommen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirene Lommen -sn: Lommen -description: This is Shirene Lommen's description -facsimileTelephoneNumber: +1 206 139-8341 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 924-8102 -title: Chief Management Grunt -userPassword: Password1 -uid: LommenS -givenName: Shirene -mail: LommenS@68783c5d6bc743ddb0d94e6abd382e0a.bitwarden.com -carLicense: TSN5IF -departmentNumber: 7242 -employeeType: Normal -homePhone: +1 206 284-4879 -initials: S. L. -mobile: +1 206 918-8909 -pager: +1 206 214-8230 -roomNumber: 8349 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chand Fusca,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chand Fusca -sn: Fusca -description: This is Chand Fusca's description -facsimileTelephoneNumber: +1 804 669-9414 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 762-6037 -title: Associate Peons Consultant -userPassword: Password1 -uid: FuscaC -givenName: Chand -mail: FuscaC@805e256767ba408cbe90aeb2944a8e9b.bitwarden.com -carLicense: TAQYR5 -departmentNumber: 5026 -employeeType: Normal -homePhone: +1 804 126-2158 -initials: C. F. -mobile: +1 804 473-8550 -pager: +1 804 399-6229 -roomNumber: 9915 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bethina Kigyos,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bethina Kigyos -sn: Kigyos -description: This is Bethina Kigyos's description -facsimileTelephoneNumber: +1 510 220-1353 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 942-2586 -title: Associate Peons Admin -userPassword: Password1 -uid: KigyosB -givenName: Bethina -mail: KigyosB@64b7c8578355450790f3fb63c15436b2.bitwarden.com -carLicense: 5TJDVA -departmentNumber: 6398 -employeeType: Normal -homePhone: +1 510 369-4396 -initials: B. K. -mobile: +1 510 339-6450 -pager: +1 510 892-4267 -roomNumber: 8793 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theodore Sutherland -sn: Sutherland -description: This is Theodore Sutherland's description -facsimileTelephoneNumber: +1 804 861-5020 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 201-5013 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: SutherlT -givenName: Theodore -mail: SutherlT@398ea17d6f974da4b9c05b23fe6460f8.bitwarden.com -carLicense: P5XNTK -departmentNumber: 8382 -employeeType: Employee -homePhone: +1 804 728-1299 -initials: T. S. -mobile: +1 804 224-1405 -pager: +1 804 911-8753 -roomNumber: 8477 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Paolina Ricketson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paolina Ricketson -sn: Ricketson -description: This is Paolina Ricketson's description -facsimileTelephoneNumber: +1 213 784-8541 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 599-3698 -title: Chief Administrative Madonna -userPassword: Password1 -uid: RicketsP -givenName: Paolina -mail: RicketsP@fa8dd30a7166419e97723182660d3ed8.bitwarden.com -carLicense: YGOFE2 -departmentNumber: 7556 -employeeType: Employee -homePhone: +1 213 851-6250 -initials: P. R. -mobile: +1 213 240-5662 -pager: +1 213 793-7427 -roomNumber: 8765 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teresita Artspssa -sn: Artspssa -description: This is Teresita Artspssa's description -facsimileTelephoneNumber: +1 213 132-5133 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 221-9705 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: ArtspssT -givenName: Teresita -mail: ArtspssT@f6fe529f06ac433fab898dee2f04e9dc.bitwarden.com -carLicense: R7E82L -departmentNumber: 2687 -employeeType: Normal -homePhone: +1 213 631-8291 -initials: T. A. -mobile: +1 213 360-5080 -pager: +1 213 507-8790 -roomNumber: 9370 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Isaac McNeil,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isaac McNeil -sn: McNeil -description: This is Isaac McNeil's description -facsimileTelephoneNumber: +1 213 674-5243 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 554-8160 -title: Chief Payroll Mascot -userPassword: Password1 -uid: McNeilI -givenName: Isaac -mail: McNeilI@af019db996df414484b0d304e9b3637a.bitwarden.com -carLicense: PL3EK4 -departmentNumber: 4653 -employeeType: Contract -homePhone: +1 213 487-1617 -initials: I. M. -mobile: +1 213 625-9507 -pager: +1 213 909-9081 -roomNumber: 8355 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jaman Churchill,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaman Churchill -sn: Churchill -description: This is Jaman Churchill's description -facsimileTelephoneNumber: +1 408 694-4101 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 118-5296 -title: Junior Human Resources Stooge -userPassword: Password1 -uid: ChurchiJ -givenName: Jaman -mail: ChurchiJ@b9f540485b314fbf8d07b00822dff971.bitwarden.com -carLicense: SINT5V -departmentNumber: 2782 -employeeType: Normal -homePhone: +1 408 642-4018 -initials: J. C. -mobile: +1 408 765-1679 -pager: +1 408 163-1244 -roomNumber: 9283 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Erick Heynen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erick Heynen -sn: Heynen -description: This is Erick Heynen's description -facsimileTelephoneNumber: +1 415 784-2680 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 415 943-3304 -title: Junior Product Development Architect -userPassword: Password1 -uid: HeynenE -givenName: Erick -mail: HeynenE@71334519f85d4ff38bd6a6b8f4192c09.bitwarden.com -carLicense: 5SOQCC -departmentNumber: 4492 -employeeType: Normal -homePhone: +1 415 648-3225 -initials: E. H. -mobile: +1 415 144-8011 -pager: +1 415 660-6409 -roomNumber: 9950 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sondra Frie,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sondra Frie -sn: Frie -description: This is Sondra Frie's description -facsimileTelephoneNumber: +1 415 888-9589 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 128-8608 -title: Associate Administrative Sales Rep -userPassword: Password1 -uid: FrieS -givenName: Sondra -mail: FrieS@1c3f38c01ffe4fd78e55d74bc900ca15.bitwarden.com -carLicense: 9V21LL -departmentNumber: 5106 -employeeType: Normal -homePhone: +1 415 298-2843 -initials: S. F. -mobile: +1 415 520-7397 -pager: +1 415 921-5794 -roomNumber: 8927 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mack Hermanns,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mack Hermanns -sn: Hermanns -description: This is Mack Hermanns's description -facsimileTelephoneNumber: +1 510 564-4651 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 111-6316 -title: Associate Product Testing Artist -userPassword: Password1 -uid: HermannM -givenName: Mack -mail: HermannM@30919d15fb3f4281a17499420dcfbd91.bitwarden.com -carLicense: 2OKY2L -departmentNumber: 6175 -employeeType: Employee -homePhone: +1 510 681-3454 -initials: M. H. -mobile: +1 510 955-7908 -pager: +1 510 283-2176 -roomNumber: 8553 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Patchit Panesar,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patchit Panesar -sn: Panesar -description: This is Patchit Panesar's description -facsimileTelephoneNumber: +1 206 746-9353 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 347-1761 -title: Chief Human Resources Admin -userPassword: Password1 -uid: PanesarP -givenName: Patchit -mail: PanesarP@99efb52676a5438d8f4dfeb830e52009.bitwarden.com -carLicense: RG4AJL -departmentNumber: 1848 -employeeType: Contract -homePhone: +1 206 428-7879 -initials: P. P. -mobile: +1 206 337-6867 -pager: +1 206 289-6173 -roomNumber: 8301 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mohamad Ng,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mohamad Ng -sn: Ng -description: This is Mohamad Ng's description -facsimileTelephoneNumber: +1 818 204-3656 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 632-8415 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: NgM -givenName: Mohamad -mail: NgM@799bf34e24074827963968e6e62fb541.bitwarden.com -carLicense: W1VIJ3 -departmentNumber: 3087 -employeeType: Employee -homePhone: +1 818 141-3009 -initials: M. N. -mobile: +1 818 939-9624 -pager: +1 818 586-1377 -roomNumber: 8839 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacynthe Mtcbase -sn: Mtcbase -description: This is Jacynthe Mtcbase's description -facsimileTelephoneNumber: +1 818 926-6739 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 818 101-9263 -title: Chief Administrative Assistant -userPassword: Password1 -uid: MtcbaseJ -givenName: Jacynthe -mail: MtcbaseJ@ca73de7d8fb447f899df1cc98c2c34a2.bitwarden.com -carLicense: CFKM0F -departmentNumber: 6665 -employeeType: Employee -homePhone: +1 818 746-7718 -initials: J. M. -mobile: +1 818 821-6229 -pager: +1 818 551-7884 -roomNumber: 9267 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jayme McMillen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jayme McMillen -sn: McMillen -description: This is Jayme McMillen's description -facsimileTelephoneNumber: +1 408 634-2347 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 772-9550 -title: Junior Payroll Dictator -userPassword: Password1 -uid: McMilleJ -givenName: Jayme -mail: McMilleJ@7a5ece6d9adf44888506b316b6709917.bitwarden.com -carLicense: 54PQ9U -departmentNumber: 9309 -employeeType: Employee -homePhone: +1 408 406-5585 -initials: J. M. -mobile: +1 408 922-6746 -pager: +1 408 916-8090 -roomNumber: 8191 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Perrin McMasters,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perrin McMasters -sn: McMasters -description: This is Perrin McMasters's description -facsimileTelephoneNumber: +1 213 385-7693 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 723-7850 -title: Associate Administrative Consultant -userPassword: Password1 -uid: McMasteP -givenName: Perrin -mail: McMasteP@22431f0d07b34bd39089fef51c341d61.bitwarden.com -carLicense: 0W4XHQ -departmentNumber: 6324 -employeeType: Normal -homePhone: +1 213 121-8324 -initials: P. M. -mobile: +1 213 996-8502 -pager: +1 213 663-2568 -roomNumber: 9681 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwynne Kotamarti -sn: Kotamarti -description: This is Gwynne Kotamarti's description -facsimileTelephoneNumber: +1 818 919-6347 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 969-8483 -title: Chief Payroll Dictator -userPassword: Password1 -uid: KotamarG -givenName: Gwynne -mail: KotamarG@764613c40e224c12ab1c1cb80b18e644.bitwarden.com -carLicense: IRKSDV -departmentNumber: 4420 -employeeType: Contract -homePhone: +1 818 424-9648 -initials: G. K. -mobile: +1 818 479-6096 -pager: +1 818 729-1017 -roomNumber: 8426 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlee HowePatterson -sn: HowePatterson -description: This is Marlee HowePatterson's description -facsimileTelephoneNumber: +1 804 454-8741 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 804 638-9298 -title: Junior Janitorial Warrior -userPassword: Password1 -uid: HowePatM -givenName: Marlee -mail: HowePatM@1f747432623a4f53b844c44224754693.bitwarden.com -carLicense: BW7MG6 -departmentNumber: 7704 -employeeType: Contract -homePhone: +1 804 357-9441 -initials: M. H. -mobile: +1 804 726-9487 -pager: +1 804 973-8498 -roomNumber: 9073 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joell Veloz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joell Veloz -sn: Veloz -description: This is Joell Veloz's description -facsimileTelephoneNumber: +1 510 561-5103 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 962-7966 -title: Supreme Human Resources Director -userPassword: Password1 -uid: VelozJ -givenName: Joell -mail: VelozJ@76f6104d33de482eb35b100eb7033678.bitwarden.com -carLicense: G9CJD0 -departmentNumber: 6929 -employeeType: Normal -homePhone: +1 510 245-2439 -initials: J. V. -mobile: +1 510 391-2955 -pager: +1 510 721-4906 -roomNumber: 9989 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tootsie DeAlmeida -sn: DeAlmeida -description: This is Tootsie DeAlmeida's description -facsimileTelephoneNumber: +1 510 820-8415 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 928-7741 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: DeAlmeiT -givenName: Tootsie -mail: DeAlmeiT@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com -carLicense: B8FXS3 -departmentNumber: 7722 -employeeType: Employee -homePhone: +1 510 218-6729 -initials: T. D. -mobile: +1 510 987-1321 -pager: +1 510 606-5815 -roomNumber: 8509 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Naima Swinks,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naima Swinks -sn: Swinks -description: This is Naima Swinks's description -facsimileTelephoneNumber: +1 213 276-8641 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 369-7458 -title: Supreme Management Grunt -userPassword: Password1 -uid: SwinksN -givenName: Naima -mail: SwinksN@08a7e5e74be04f44a364a958dd103e80.bitwarden.com -carLicense: X4OIFM -departmentNumber: 6880 -employeeType: Employee -homePhone: +1 213 538-5964 -initials: N. S. -mobile: +1 213 216-4100 -pager: +1 213 250-5836 -roomNumber: 8101 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mab Amato,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mab Amato -sn: Amato -description: This is Mab Amato's description -facsimileTelephoneNumber: +1 206 242-5248 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 923-2728 -title: Supreme Payroll Artist -userPassword: Password1 -uid: AmatoM -givenName: Mab -mail: AmatoM@481a6dfc2726429788928adbad28f42a.bitwarden.com -carLicense: J1J7LJ -departmentNumber: 3951 -employeeType: Contract -homePhone: +1 206 404-5123 -initials: M. A. -mobile: +1 206 277-7689 -pager: +1 206 808-6904 -roomNumber: 8617 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jeanna Lawther,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeanna Lawther -sn: Lawther -description: This is Jeanna Lawther's description -facsimileTelephoneNumber: +1 206 268-1669 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 893-7281 -title: Chief Product Development Fellow -userPassword: Password1 -uid: LawtherJ -givenName: Jeanna -mail: LawtherJ@ce09eff4e27d456d8a017939b41c80b4.bitwarden.com -carLicense: O1AVVL -departmentNumber: 8893 -employeeType: Contract -homePhone: +1 206 277-6573 -initials: J. L. -mobile: +1 206 196-3370 -pager: +1 206 984-7287 -roomNumber: 9556 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariel DeBrusk -sn: DeBrusk -description: This is Mariel DeBrusk's description -facsimileTelephoneNumber: +1 804 369-9601 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 219-9930 -title: Junior Product Development Technician -userPassword: Password1 -uid: DeBruskM -givenName: Mariel -mail: DeBruskM@56ee0442f1a84dbfb882b36d77def9ff.bitwarden.com -carLicense: CD2DSN -departmentNumber: 1785 -employeeType: Employee -homePhone: +1 804 478-3015 -initials: M. D. -mobile: +1 804 606-9991 -pager: +1 804 186-4907 -roomNumber: 8192 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Luther Kordik,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luther Kordik -sn: Kordik -description: This is Luther Kordik's description -facsimileTelephoneNumber: +1 213 887-2188 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 731-2303 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: KordikL -givenName: Luther -mail: KordikL@c84c1685109349e381c9c3b76d3c081d.bitwarden.com -carLicense: WQ85DI -departmentNumber: 3083 -employeeType: Normal -homePhone: +1 213 741-2361 -initials: L. K. -mobile: +1 213 538-1936 -pager: +1 213 687-8208 -roomNumber: 9870 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hellmut Tebinka -sn: Tebinka -description: This is Hellmut Tebinka's description -facsimileTelephoneNumber: +1 804 750-5260 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 213-4504 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: TebinkaH -givenName: Hellmut -mail: TebinkaH@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com -carLicense: T1SI9G -departmentNumber: 1005 -employeeType: Employee -homePhone: +1 804 186-3154 -initials: H. T. -mobile: +1 804 466-9910 -pager: +1 804 569-4901 -roomNumber: 8962 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jenine Sutton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenine Sutton -sn: Sutton -description: This is Jenine Sutton's description -facsimileTelephoneNumber: +1 510 126-7551 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 849-3353 -title: Associate Peons Madonna -userPassword: Password1 -uid: SuttonJ -givenName: Jenine -mail: SuttonJ@3546d29dd7834be9b84722d152b319e0.bitwarden.com -carLicense: 9SQH30 -departmentNumber: 5428 -employeeType: Contract -homePhone: +1 510 236-9971 -initials: J. S. -mobile: +1 510 846-4238 -pager: +1 510 575-5022 -roomNumber: 9512 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanMarie Gordon -sn: Gordon -description: This is JeanMarie Gordon's description -facsimileTelephoneNumber: +1 804 938-1318 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 892-5355 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: GordonJ -givenName: JeanMarie -mail: GordonJ@c914251ab9404c90af6d46fa9bf97baa.bitwarden.com -carLicense: XKU0UV -departmentNumber: 7089 -employeeType: Normal -homePhone: +1 804 312-3598 -initials: J. G. -mobile: +1 804 785-9570 -pager: +1 804 358-2114 -roomNumber: 8087 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ronny Blomquist,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronny Blomquist -sn: Blomquist -description: This is Ronny Blomquist's description -facsimileTelephoneNumber: +1 818 753-9839 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 383-8945 -title: Chief Management Stooge -userPassword: Password1 -uid: BlomquiR -givenName: Ronny -mail: BlomquiR@a651bab618794291bf5129fe307f0c99.bitwarden.com -carLicense: QWMJPJ -departmentNumber: 5790 -employeeType: Employee -homePhone: +1 818 341-9286 -initials: R. B. -mobile: +1 818 336-9672 -pager: +1 818 980-2040 -roomNumber: 8103 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Krystal Noel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krystal Noel -sn: Noel -description: This is Krystal Noel's description -facsimileTelephoneNumber: +1 804 240-3073 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 415-8818 -title: Associate Product Development Dictator -userPassword: Password1 -uid: NoelK -givenName: Krystal -mail: NoelK@80695950877a41d48624da7d4574c893.bitwarden.com -carLicense: YJJHX6 -departmentNumber: 5137 -employeeType: Contract -homePhone: +1 804 172-7015 -initials: K. N. -mobile: +1 804 683-3102 -pager: +1 804 713-6811 -roomNumber: 8742 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Clark Bruneau,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clark Bruneau -sn: Bruneau -description: This is Clark Bruneau's description -facsimileTelephoneNumber: +1 213 301-7985 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 679-6031 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: BruneauC -givenName: Clark -mail: BruneauC@1f047af09330424c80ddd51cf37e0010.bitwarden.com -carLicense: W0N5JD -departmentNumber: 4325 -employeeType: Normal -homePhone: +1 213 602-6550 -initials: C. B. -mobile: +1 213 457-2292 -pager: +1 213 123-8802 -roomNumber: 8913 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anallese Bloemker,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anallese Bloemker -sn: Bloemker -description: This is Anallese Bloemker's description -facsimileTelephoneNumber: +1 818 969-8094 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 491-5314 -title: Chief Administrative Manager -userPassword: Password1 -uid: BloemkeA -givenName: Anallese -mail: BloemkeA@984a33b6fcea4c229307cb5a753888dd.bitwarden.com -carLicense: KQFCGW -departmentNumber: 2892 -employeeType: Contract -homePhone: +1 818 228-3507 -initials: A. B. -mobile: +1 818 465-2299 -pager: +1 818 150-2169 -roomNumber: 8213 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=WenKai Schemena,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WenKai Schemena -sn: Schemena -description: This is WenKai Schemena's description -facsimileTelephoneNumber: +1 213 559-1965 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 213 639-5306 -title: Supreme Peons Czar -userPassword: Password1 -uid: SchemenW -givenName: WenKai -mail: SchemenW@776174eadbeb4db89457f08eae37cc43.bitwarden.com -carLicense: 30LIM9 -departmentNumber: 6483 -employeeType: Employee -homePhone: +1 213 265-4869 -initials: W. S. -mobile: +1 213 279-9754 -pager: +1 213 681-5923 -roomNumber: 9423 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Luan Goupil,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luan Goupil -sn: Goupil -description: This is Luan Goupil's description -facsimileTelephoneNumber: +1 206 159-5148 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 807-7911 -title: Associate Human Resources Writer -userPassword: Password1 -uid: GoupilL -givenName: Luan -mail: GoupilL@729666359ed04f0995bf97703c170436.bitwarden.com -carLicense: AN4AAU -departmentNumber: 2941 -employeeType: Normal -homePhone: +1 206 893-6154 -initials: L. G. -mobile: +1 206 275-1204 -pager: +1 206 328-2359 -roomNumber: 9495 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dimitra Loponen -sn: Loponen -description: This is Dimitra Loponen's description -facsimileTelephoneNumber: +1 408 539-8776 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 764-6974 -title: Chief Product Testing Madonna -userPassword: Password1 -uid: LoponenD -givenName: Dimitra -mail: LoponenD@b2ad1fc1ea554b8f973d1f9ef9821f73.bitwarden.com -carLicense: ED5GXB -departmentNumber: 2192 -employeeType: Employee -homePhone: +1 408 356-6346 -initials: D. L. -mobile: +1 408 598-6063 -pager: +1 408 240-3707 -roomNumber: 8288 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Verna Britt,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verna Britt -sn: Britt -description: This is Verna Britt's description -facsimileTelephoneNumber: +1 510 147-7429 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 235-4833 -title: Chief Management Warrior -userPassword: Password1 -uid: BrittV -givenName: Verna -mail: BrittV@2589cc141c4e4b5c8c4573c04cd3f678.bitwarden.com -carLicense: IFXR05 -departmentNumber: 9029 -employeeType: Normal -homePhone: +1 510 855-4746 -initials: V. B. -mobile: +1 510 149-1610 -pager: +1 510 181-3145 -roomNumber: 9397 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hoog Gareis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hoog Gareis -sn: Gareis -description: This is Hoog Gareis's description -facsimileTelephoneNumber: +1 415 794-9348 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 401-8373 -title: Chief Janitorial Janitor -userPassword: Password1 -uid: GareisH -givenName: Hoog -mail: GareisH@5f79b20f5b7f4ae1afe25eb5f16c5923.bitwarden.com -carLicense: VCXHCY -departmentNumber: 4067 -employeeType: Employee -homePhone: +1 415 291-7799 -initials: H. G. -mobile: +1 415 269-7802 -pager: +1 415 623-2494 -roomNumber: 8207 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SiewKiat Tsui -sn: Tsui -description: This is SiewKiat Tsui's description -facsimileTelephoneNumber: +1 510 276-3591 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 242-4238 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: TsuiS -givenName: SiewKiat -mail: TsuiS@289444924c894df68dc76e9d8add4066.bitwarden.com -carLicense: N19JWS -departmentNumber: 5044 -employeeType: Normal -homePhone: +1 510 988-4926 -initials: S. T. -mobile: +1 510 241-6327 -pager: +1 510 606-1622 -roomNumber: 8790 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Skyler Lamy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Skyler Lamy -sn: Lamy -description: This is Skyler Lamy's description -facsimileTelephoneNumber: +1 213 681-9464 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 155-8839 -title: Associate Product Development President -userPassword: Password1 -uid: LamyS -givenName: Skyler -mail: LamyS@df91f02938d046d8adb3f260f0e722ef.bitwarden.com -carLicense: R3UHVO -departmentNumber: 8529 -employeeType: Normal -homePhone: +1 213 885-2148 -initials: S. L. -mobile: +1 213 372-2393 -pager: +1 213 389-8236 -roomNumber: 8135 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bcs Hoyer -sn: Hoyer -description: This is Bcs Hoyer's description -facsimileTelephoneNumber: +1 818 585-1126 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 770-2644 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: HoyerB -givenName: Bcs -mail: HoyerB@553a74428bb643038d327a6c4003715b.bitwarden.com -carLicense: UK6AUH -departmentNumber: 4147 -employeeType: Normal -homePhone: +1 818 135-9944 -initials: B. H. -mobile: +1 818 377-1729 -pager: +1 818 793-2795 -roomNumber: 8142 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Layne Esry,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Layne Esry -sn: Esry -description: This is Layne Esry's description -facsimileTelephoneNumber: +1 408 167-1118 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 408 632-5158 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: EsryL -givenName: Layne -mail: EsryL@c3c0f7a355cb4430990b12849cd4234b.bitwarden.com -carLicense: 7YHHNM -departmentNumber: 3927 -employeeType: Contract -homePhone: +1 408 871-1420 -initials: L. E. -mobile: +1 408 763-6024 -pager: +1 408 128-3761 -roomNumber: 8366 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Amrik Thornber,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amrik Thornber -sn: Thornber -description: This is Amrik Thornber's description -facsimileTelephoneNumber: +1 408 328-4913 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 404-1879 -title: Junior Payroll Punk -userPassword: Password1 -uid: ThornbeA -givenName: Amrik -mail: ThornbeA@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com -carLicense: 7WARFR -departmentNumber: 3338 -employeeType: Contract -homePhone: +1 408 981-4891 -initials: A. T. -mobile: +1 408 970-3163 -pager: +1 408 946-2735 -roomNumber: 8085 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Michaela Lobianco,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michaela Lobianco -sn: Lobianco -description: This is Michaela Lobianco's description -facsimileTelephoneNumber: +1 408 975-7493 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 497-8786 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: LobiancM -givenName: Michaela -mail: LobiancM@5957c85f3b4a4b49903492c9f27c830b.bitwarden.com -carLicense: U30MUD -departmentNumber: 6158 -employeeType: Normal -homePhone: +1 408 940-8343 -initials: M. L. -mobile: +1 408 877-8869 -pager: +1 408 727-3788 -roomNumber: 9976 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hyacinthie Closson -sn: Closson -description: This is Hyacinthie Closson's description -facsimileTelephoneNumber: +1 206 760-2843 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 874-2639 -title: Junior Human Resources Artist -userPassword: Password1 -uid: ClossonH -givenName: Hyacinthie -mail: ClossonH@776174eadbeb4db89457f08eae37cc43.bitwarden.com -carLicense: 5HXQCY -departmentNumber: 8512 -employeeType: Contract -homePhone: +1 206 759-9391 -initials: H. C. -mobile: +1 206 583-7711 -pager: +1 206 819-4818 -roomNumber: 8910 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mounir Gubbins -sn: Gubbins -description: This is Mounir Gubbins's description -facsimileTelephoneNumber: +1 804 753-5580 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 105-5946 -title: Associate Product Testing Mascot -userPassword: Password1 -uid: GubbinsM -givenName: Mounir -mail: GubbinsM@853be251133d4fadac48c2adaa97ca8b.bitwarden.com -carLicense: REIAEG -departmentNumber: 3745 -employeeType: Contract -homePhone: +1 804 336-4314 -initials: M. G. -mobile: +1 804 450-6358 -pager: +1 804 191-4123 -roomNumber: 9334 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ebrahim Hoes -sn: Hoes -description: This is Ebrahim Hoes's description -facsimileTelephoneNumber: +1 213 192-3179 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 509-9695 -title: Junior Product Development Consultant -userPassword: Password1 -uid: HoesE -givenName: Ebrahim -mail: HoesE@b78fed9ef6a94b4d9e8bb1b5d1719aef.bitwarden.com -carLicense: SV8MGX -departmentNumber: 2097 -employeeType: Employee -homePhone: +1 213 272-3975 -initials: E. H. -mobile: +1 213 881-4568 -pager: +1 213 913-1629 -roomNumber: 9399 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roxy Banerjee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxy Banerjee -sn: Banerjee -description: This is Roxy Banerjee's description -facsimileTelephoneNumber: +1 818 413-7564 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 153-1597 -title: Chief Product Development Grunt -userPassword: Password1 -uid: BanerjeR -givenName: Roxy -mail: BanerjeR@26baa80c82b44c14a3680a99c80f4149.bitwarden.com -carLicense: D4HGJW -departmentNumber: 1976 -employeeType: Contract -homePhone: +1 818 663-8445 -initials: R. B. -mobile: +1 818 658-9939 -pager: +1 818 924-7442 -roomNumber: 9684 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Derek Ukena,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Derek Ukena -sn: Ukena -description: This is Derek Ukena's description -facsimileTelephoneNumber: +1 818 614-9694 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 762-2187 -title: Associate Payroll Fellow -userPassword: Password1 -uid: UkenaD -givenName: Derek -mail: UkenaD@2d0e71959712498892398e30a50d5bec.bitwarden.com -carLicense: T5KDI7 -departmentNumber: 7167 -employeeType: Normal -homePhone: +1 818 772-9660 -initials: D. U. -mobile: +1 818 151-5581 -pager: +1 818 841-7937 -roomNumber: 8267 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jenelle Crothers,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenelle Crothers -sn: Crothers -description: This is Jenelle Crothers's description -facsimileTelephoneNumber: +1 206 490-2160 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 206 190-5079 -title: Master Administrative President -userPassword: Password1 -uid: CrotherJ -givenName: Jenelle -mail: CrotherJ@fc7406e3c8e34fce9e4288bfe13798e9.bitwarden.com -carLicense: VNWED2 -departmentNumber: 5894 -employeeType: Normal -homePhone: +1 206 395-9653 -initials: J. C. -mobile: +1 206 424-7978 -pager: +1 206 134-1281 -roomNumber: 8345 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Devonna Caron,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devonna Caron -sn: Caron -description: This is Devonna Caron's description -facsimileTelephoneNumber: +1 415 511-1858 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 216-6885 -title: Supreme Product Testing Manager -userPassword: Password1 -uid: CaronD -givenName: Devonna -mail: CaronD@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com -carLicense: HSC8WW -departmentNumber: 3010 -employeeType: Employee -homePhone: +1 415 356-7861 -initials: D. C. -mobile: +1 415 290-3882 -pager: +1 415 410-5754 -roomNumber: 8577 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Neill Droste,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neill Droste -sn: Droste -description: This is Neill Droste's description -facsimileTelephoneNumber: +1 804 248-5207 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 837-1376 -title: Associate Peons Pinhead -userPassword: Password1 -uid: DrosteN -givenName: Neill -mail: DrosteN@aac869a9d66f41deb273e8c857d2f2a2.bitwarden.com -carLicense: XHNPGR -departmentNumber: 2810 -employeeType: Normal -homePhone: +1 804 131-3652 -initials: N. D. -mobile: +1 804 906-5900 -pager: +1 804 800-9405 -roomNumber: 9795 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lissy MooYoung,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lissy MooYoung -sn: MooYoung -description: This is Lissy MooYoung's description -facsimileTelephoneNumber: +1 804 100-5187 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 832-9178 -title: Junior Payroll Manager -userPassword: Password1 -uid: MooYounL -givenName: Lissy -mail: MooYounL@4a32da5e6b0c44ddb6046a41d38421fc.bitwarden.com -carLicense: WL7DNI -departmentNumber: 4579 -employeeType: Employee -homePhone: +1 804 594-6389 -initials: L. M. -mobile: +1 804 514-2352 -pager: +1 804 150-6803 -roomNumber: 9647 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Frederica Herbers,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frederica Herbers -sn: Herbers -description: This is Frederica Herbers's description -facsimileTelephoneNumber: +1 415 469-6121 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 950-6280 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: HerbersF -givenName: Frederica -mail: HerbersF@940a7593b88c4fb0afde713027fc2a16.bitwarden.com -carLicense: BMOBFL -departmentNumber: 5456 -employeeType: Employee -homePhone: +1 415 531-4874 -initials: F. H. -mobile: +1 415 319-8659 -pager: +1 415 646-1191 -roomNumber: 8299 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Geir Madigan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geir Madigan -sn: Madigan -description: This is Geir Madigan's description -facsimileTelephoneNumber: +1 408 422-6906 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 426-1884 -title: Master Peons Consultant -userPassword: Password1 -uid: MadiganG -givenName: Geir -mail: MadiganG@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com -carLicense: CI1H2O -departmentNumber: 4762 -employeeType: Contract -homePhone: +1 408 953-7176 -initials: G. M. -mobile: +1 408 867-7064 -pager: +1 408 484-4285 -roomNumber: 9062 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cal Vosburg,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cal Vosburg -sn: Vosburg -description: This is Cal Vosburg's description -facsimileTelephoneNumber: +1 408 170-5417 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 971-1459 -title: Associate Product Development President -userPassword: Password1 -uid: VosburgC -givenName: Cal -mail: VosburgC@88f0e01d6ade41fe9e8249c17671d036.bitwarden.com -carLicense: 7F4IPT -departmentNumber: 4144 -employeeType: Normal -homePhone: +1 408 837-3183 -initials: C. V. -mobile: +1 408 740-1954 -pager: +1 408 571-7885 -roomNumber: 9331 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Darrol Schluter,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrol Schluter -sn: Schluter -description: This is Darrol Schluter's description -facsimileTelephoneNumber: +1 415 860-1781 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 831-2459 -title: Junior Janitorial Technician -userPassword: Password1 -uid: SchluteD -givenName: Darrol -mail: SchluteD@5b2cdd0210f9439bba35839f38589b93.bitwarden.com -carLicense: VSD3X3 -departmentNumber: 3607 -employeeType: Normal -homePhone: +1 415 697-8726 -initials: D. S. -mobile: +1 415 291-3407 -pager: +1 415 442-1719 -roomNumber: 9346 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Augustin Polashock,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Augustin Polashock -sn: Polashock -description: This is Augustin Polashock's description -facsimileTelephoneNumber: +1 206 812-6114 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 393-8735 -title: Master Administrative Figurehead -userPassword: Password1 -uid: PolashoA -givenName: Augustin -mail: PolashoA@71a3a2f552a3442caaba57d329355ad2.bitwarden.com -carLicense: 4AU91Y -departmentNumber: 3319 -employeeType: Contract -homePhone: +1 206 808-9265 -initials: A. P. -mobile: +1 206 203-5972 -pager: +1 206 898-8944 -roomNumber: 8554 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Karrah Federico,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karrah Federico -sn: Federico -description: This is Karrah Federico's description -facsimileTelephoneNumber: +1 415 842-1479 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 824-6880 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: FedericK -givenName: Karrah -mail: FedericK@1f90981d05564d038a0c312379adcdd2.bitwarden.com -carLicense: QF5XRP -departmentNumber: 2264 -employeeType: Normal -homePhone: +1 415 124-1086 -initials: K. F. -mobile: +1 415 978-4754 -pager: +1 415 321-2615 -roomNumber: 9519 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Arlina Douet,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlina Douet -sn: Douet -description: This is Arlina Douet's description -facsimileTelephoneNumber: +1 818 398-9666 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 558-8739 -title: Master Product Testing Dictator -userPassword: Password1 -uid: DouetA -givenName: Arlina -mail: DouetA@0370bf4c8f0643cdbb05f71db44e6eda.bitwarden.com -carLicense: AP72VI -departmentNumber: 4843 -employeeType: Employee -homePhone: +1 818 370-9597 -initials: A. D. -mobile: +1 818 110-2919 -pager: +1 818 978-6937 -roomNumber: 8845 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Herb Cantrell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herb Cantrell -sn: Cantrell -description: This is Herb Cantrell's description -facsimileTelephoneNumber: +1 510 281-3015 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 855-4589 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: CantrelH -givenName: Herb -mail: CantrelH@33bf50a72a3544c9bdfe2238d2123ad0.bitwarden.com -carLicense: KF1555 -departmentNumber: 9675 -employeeType: Contract -homePhone: +1 510 288-5123 -initials: H. C. -mobile: +1 510 274-8185 -pager: +1 510 630-1256 -roomNumber: 9561 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ott Beresnikow,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ott Beresnikow -sn: Beresnikow -description: This is Ott Beresnikow's description -facsimileTelephoneNumber: +1 804 491-3610 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 443-4538 -title: Junior Management Director -userPassword: Password1 -uid: BeresniO -givenName: Ott -mail: BeresniO@ccd602a706b2492c8998dcf7c17bd36f.bitwarden.com -carLicense: 460A7T -departmentNumber: 7517 -employeeType: Normal -homePhone: +1 804 470-8190 -initials: O. B. -mobile: +1 804 554-6593 -pager: +1 804 761-9629 -roomNumber: 9610 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tracey Tates,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tracey Tates -sn: Tates -description: This is Tracey Tates's description -facsimileTelephoneNumber: +1 213 883-2818 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 213 753-7731 -title: Associate Payroll Technician -userPassword: Password1 -uid: TatesT -givenName: Tracey -mail: TatesT@cbda675e7e2a4c7e8469f0d5f6b406ad.bitwarden.com -carLicense: FKXVNQ -departmentNumber: 9274 -employeeType: Contract -homePhone: +1 213 635-8539 -initials: T. T. -mobile: +1 213 945-1136 -pager: +1 213 774-4196 -roomNumber: 9468 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeniece Belmont,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeniece Belmont -sn: Belmont -description: This is Jeniece Belmont's description -facsimileTelephoneNumber: +1 804 558-5806 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 856-4396 -title: Associate Peons Dictator -userPassword: Password1 -uid: BelmontJ -givenName: Jeniece -mail: BelmontJ@5128133359594cd18d137c259ecf1184.bitwarden.com -carLicense: R1DI6Q -departmentNumber: 4499 -employeeType: Employee -homePhone: +1 804 669-8629 -initials: J. B. -mobile: +1 804 321-2469 -pager: +1 804 113-9584 -roomNumber: 9655 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vern Vosup,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vern Vosup -sn: Vosup -description: This is Vern Vosup's description -facsimileTelephoneNumber: +1 206 970-7991 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 484-2480 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: VosupV -givenName: Vern -mail: VosupV@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com -carLicense: VYJ74L -departmentNumber: 7577 -employeeType: Contract -homePhone: +1 206 139-5556 -initials: V. V. -mobile: +1 206 108-8489 -pager: +1 206 452-2031 -roomNumber: 9442 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zoltan Zumhagen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zoltan Zumhagen -sn: Zumhagen -description: This is Zoltan Zumhagen's description -facsimileTelephoneNumber: +1 213 502-8138 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 820-8912 -title: Chief Management Vice President -userPassword: Password1 -uid: ZumhageZ -givenName: Zoltan -mail: ZumhageZ@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com -carLicense: 1A0O03 -departmentNumber: 3507 -employeeType: Employee -homePhone: +1 213 149-2210 -initials: Z. Z. -mobile: +1 213 163-3334 -pager: +1 213 246-8111 -roomNumber: 8822 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginnie Wignall -sn: Wignall -description: This is Ginnie Wignall's description -facsimileTelephoneNumber: +1 408 707-8425 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 408 262-6774 -title: Chief Janitorial Admin -userPassword: Password1 -uid: WignallG -givenName: Ginnie -mail: WignallG@e52982c108d74f959048f88b7dd46e6f.bitwarden.com -carLicense: FEKPW6 -departmentNumber: 7995 -employeeType: Contract -homePhone: +1 408 567-4870 -initials: G. W. -mobile: +1 408 905-6523 -pager: +1 408 933-2110 -roomNumber: 8700 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Makiko Walta,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Makiko Walta -sn: Walta -description: This is Makiko Walta's description -facsimileTelephoneNumber: +1 510 283-4939 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 836-7956 -title: Master Management Manager -userPassword: Password1 -uid: WaltaM -givenName: Makiko -mail: WaltaM@4c9ea5cb0c6d47f0bff8da92c6c9d0eb.bitwarden.com -carLicense: 883Y98 -departmentNumber: 3573 -employeeType: Employee -homePhone: +1 510 528-6861 -initials: M. W. -mobile: +1 510 392-4473 -pager: +1 510 589-7582 -roomNumber: 8607 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ermentrude Boult,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ermentrude Boult -sn: Boult -description: This is Ermentrude Boult's description -facsimileTelephoneNumber: +1 804 529-2071 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 662-8230 -title: Associate Management Mascot -userPassword: Password1 -uid: BoultE -givenName: Ermentrude -mail: BoultE@6114ed5b2ab14d15895d683682929e6e.bitwarden.com -carLicense: G028GL -departmentNumber: 6879 -employeeType: Employee -homePhone: +1 804 620-4241 -initials: E. B. -mobile: +1 804 102-9792 -pager: +1 804 922-7712 -roomNumber: 9795 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinetta Paetsch -sn: Paetsch -description: This is Robinetta Paetsch's description -facsimileTelephoneNumber: +1 818 528-5170 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 836-2128 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: PaetschR -givenName: Robinetta -mail: PaetschR@111d7547650243e9b05c0ec5c87bdfcd.bitwarden.com -carLicense: HIUEEU -departmentNumber: 2309 -employeeType: Normal -homePhone: +1 818 597-1539 -initials: R. P. -mobile: +1 818 636-5099 -pager: +1 818 515-2126 -roomNumber: 8345 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Larisa Szura,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Larisa Szura -sn: Szura -description: This is Larisa Szura's description -facsimileTelephoneNumber: +1 818 765-3753 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 699-5044 -title: Master Product Testing Writer -userPassword: Password1 -uid: SzuraL -givenName: Larisa -mail: SzuraL@c4198b8f2847457c97c168c8fc0c7617.bitwarden.com -carLicense: F31QGR -departmentNumber: 1954 -employeeType: Normal -homePhone: +1 818 843-2604 -initials: L. S. -mobile: +1 818 646-4801 -pager: +1 818 414-3977 -roomNumber: 9436 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wiebe Ku,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wiebe Ku -sn: Ku -description: This is Wiebe Ku's description -facsimileTelephoneNumber: +1 408 780-9895 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 433-2197 -title: Supreme Peons Consultant -userPassword: Password1 -uid: KuW -givenName: Wiebe -mail: KuW@b4cc71653cab4b938d868f66a601e950.bitwarden.com -carLicense: NT6C05 -departmentNumber: 6649 -employeeType: Employee -homePhone: +1 408 237-6798 -initials: W. K. -mobile: +1 408 657-4846 -pager: +1 408 328-9489 -roomNumber: 8736 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zeljko Subick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zeljko Subick -sn: Subick -description: This is Zeljko Subick's description -facsimileTelephoneNumber: +1 415 209-1273 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 993-7748 -title: Supreme Management Sales Rep -userPassword: Password1 -uid: SubickZ -givenName: Zeljko -mail: SubickZ@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com -carLicense: F6EGFM -departmentNumber: 8811 -employeeType: Employee -homePhone: +1 415 970-7029 -initials: Z. S. -mobile: +1 415 179-7089 -pager: +1 415 612-6410 -roomNumber: 8049 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Liese Neill,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liese Neill -sn: Neill -description: This is Liese Neill's description -facsimileTelephoneNumber: +1 804 348-8698 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 330-5255 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: NeillL -givenName: Liese -mail: NeillL@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com -carLicense: AP6290 -departmentNumber: 2368 -employeeType: Contract -homePhone: +1 804 290-6400 -initials: L. N. -mobile: +1 804 670-2103 -pager: +1 804 403-1074 -roomNumber: 9443 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faz Chotkowski -sn: Chotkowski -description: This is Faz Chotkowski's description -facsimileTelephoneNumber: +1 415 169-9986 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 562-8810 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: ChotkowF -givenName: Faz -mail: ChotkowF@8971a4377828437190f1287041d02525.bitwarden.com -carLicense: O6CXTS -departmentNumber: 1784 -employeeType: Employee -homePhone: +1 415 195-9394 -initials: F. C. -mobile: +1 415 389-1136 -pager: +1 415 499-8934 -roomNumber: 8980 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Doralin PATCOR,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doralin PATCOR -sn: PATCOR -description: This is Doralin PATCOR's description -facsimileTelephoneNumber: +1 415 860-6773 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 140-3534 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: PATCORD -givenName: Doralin -mail: PATCORD@003e771d29284236b967f25e9416ed07.bitwarden.com -carLicense: DFLLTX -departmentNumber: 8710 -employeeType: Normal -homePhone: +1 415 143-8228 -initials: D. P. -mobile: +1 415 840-1450 -pager: +1 415 605-5282 -roomNumber: 9615 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tillie Erskine,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tillie Erskine -sn: Erskine -description: This is Tillie Erskine's description -facsimileTelephoneNumber: +1 408 850-7820 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 248-8792 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: ErskineT -givenName: Tillie -mail: ErskineT@57dc19fb72ed48a88f045569d12c771f.bitwarden.com -carLicense: N9W74W -departmentNumber: 6512 -employeeType: Normal -homePhone: +1 408 421-6202 -initials: T. E. -mobile: +1 408 161-1226 -pager: +1 408 575-2802 -roomNumber: 8229 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davinder Jacobsen -sn: Jacobsen -description: This is Davinder Jacobsen's description -facsimileTelephoneNumber: +1 213 933-5673 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 664-6213 -title: Junior Human Resources Director -userPassword: Password1 -uid: JacobseD -givenName: Davinder -mail: JacobseD@1e6e292197c54bb68d0f062bfc704a5f.bitwarden.com -carLicense: JX33BA -departmentNumber: 1287 -employeeType: Contract -homePhone: +1 213 348-6592 -initials: D. J. -mobile: +1 213 493-2218 -pager: +1 213 662-7761 -roomNumber: 9283 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sheeree Petrunka,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheeree Petrunka -sn: Petrunka -description: This is Sheeree Petrunka's description -facsimileTelephoneNumber: +1 213 198-7521 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 210-3828 -title: Chief Management Dictator -userPassword: Password1 -uid: PetrunkS -givenName: Sheeree -mail: PetrunkS@3eadf1668d9548a8a0a9a2df5d767d49.bitwarden.com -carLicense: AKJAPB -departmentNumber: 6788 -employeeType: Employee -homePhone: +1 213 306-4207 -initials: S. P. -mobile: +1 213 455-3640 -pager: +1 213 169-9147 -roomNumber: 9505 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Winifred Grelck,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winifred Grelck -sn: Grelck -description: This is Winifred Grelck's description -facsimileTelephoneNumber: +1 804 180-4450 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 839-5009 -title: Junior Management Architect -userPassword: Password1 -uid: GrelckW -givenName: Winifred -mail: GrelckW@33b35540a4bc4f6baa81886f1273a7c9.bitwarden.com -carLicense: LQSO5C -departmentNumber: 6158 -employeeType: Employee -homePhone: +1 804 577-8205 -initials: W. G. -mobile: +1 804 959-5196 -pager: +1 804 423-8410 -roomNumber: 8219 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Douglas Wilemon -sn: Wilemon -description: This is Douglas Wilemon's description -facsimileTelephoneNumber: +1 818 628-1615 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 818 508-6433 -title: Junior Janitorial Admin -userPassword: Password1 -uid: WilemonD -givenName: Douglas -mail: WilemonD@7be2adbfd042422e9bcc88e78cabf3cb.bitwarden.com -carLicense: M8WT95 -departmentNumber: 3661 -employeeType: Employee -homePhone: +1 818 160-8225 -initials: D. W. -mobile: +1 818 950-9373 -pager: +1 818 384-5419 -roomNumber: 8255 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jastinder Polakowski -sn: Polakowski -description: This is Jastinder Polakowski's description -facsimileTelephoneNumber: +1 415 124-7967 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 516-8538 -title: Master Administrative Janitor -userPassword: Password1 -uid: PolakowJ -givenName: Jastinder -mail: PolakowJ@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com -carLicense: KL7JP8 -departmentNumber: 2009 -employeeType: Normal -homePhone: +1 415 824-2850 -initials: J. P. -mobile: +1 415 683-2050 -pager: +1 415 652-7302 -roomNumber: 8464 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Toni Volkmer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toni Volkmer -sn: Volkmer -description: This is Toni Volkmer's description -facsimileTelephoneNumber: +1 804 706-1876 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 462-6037 -title: Junior Payroll Consultant -userPassword: Password1 -uid: VolkmerT -givenName: Toni -mail: VolkmerT@3f22733d317d4f91854fb0b865164d32.bitwarden.com -carLicense: N62Y5I -departmentNumber: 4028 -employeeType: Normal -homePhone: +1 804 760-2718 -initials: T. V. -mobile: +1 804 169-1765 -pager: +1 804 932-3925 -roomNumber: 9985 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alexandra Bassett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alexandra Bassett -sn: Bassett -description: This is Alexandra Bassett's description -facsimileTelephoneNumber: +1 818 729-7179 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 419-1588 -title: Junior Payroll Architect -userPassword: Password1 -uid: BassettA -givenName: Alexandra -mail: BassettA@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com -carLicense: JGKMRD -departmentNumber: 9778 -employeeType: Employee -homePhone: +1 818 679-5158 -initials: A. B. -mobile: +1 818 689-1911 -pager: +1 818 372-3640 -roomNumber: 8231 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ineke Aloi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ineke Aloi -sn: Aloi -description: This is Ineke Aloi's description -facsimileTelephoneNumber: +1 804 927-1368 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 237-3240 -title: Junior Management Architect -userPassword: Password1 -uid: AloiI -givenName: Ineke -mail: AloiI@2b13da408414484c934b524c33272c48.bitwarden.com -carLicense: R58MOS -departmentNumber: 5172 -employeeType: Contract -homePhone: +1 804 650-3137 -initials: I. A. -mobile: +1 804 755-7723 -pager: +1 804 182-8674 -roomNumber: 8018 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meredithe Comtois -sn: Comtois -description: This is Meredithe Comtois's description -facsimileTelephoneNumber: +1 206 456-4604 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 930-9312 -title: Junior Human Resources Artist -userPassword: Password1 -uid: ComtoisM -givenName: Meredithe -mail: ComtoisM@1fa19cc59b0a4b048ab223f06dc01275.bitwarden.com -carLicense: JDDUC4 -departmentNumber: 7821 -employeeType: Employee -homePhone: +1 206 944-3844 -initials: M. C. -mobile: +1 206 647-8317 -pager: +1 206 569-8527 -roomNumber: 9762 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shafiq Hearn,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shafiq Hearn -sn: Hearn -description: This is Shafiq Hearn's description -facsimileTelephoneNumber: +1 213 338-1111 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 230-2820 -title: Master Payroll Vice President -userPassword: Password1 -uid: HearnS -givenName: Shafiq -mail: HearnS@3118b07730ef4ee1ba02df2d8acb61a4.bitwarden.com -carLicense: 0LF895 -departmentNumber: 9701 -employeeType: Contract -homePhone: +1 213 781-3951 -initials: S. H. -mobile: +1 213 280-8918 -pager: +1 213 456-3574 -roomNumber: 8043 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bucklin Venne,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bucklin Venne -sn: Venne -description: This is Bucklin Venne's description -facsimileTelephoneNumber: +1 818 365-9830 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 852-4838 -title: Supreme Management Janitor -userPassword: Password1 -uid: VenneB -givenName: Bucklin -mail: VenneB@0dc9183f5edd4f868911cb0b9c90c604.bitwarden.com -carLicense: 7HEHQY -departmentNumber: 4705 -employeeType: Normal -homePhone: +1 818 390-8511 -initials: B. V. -mobile: +1 818 468-7151 -pager: +1 818 622-7695 -roomNumber: 9043 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Modesta Moetteli -sn: Moetteli -description: This is Modesta Moetteli's description -facsimileTelephoneNumber: +1 415 893-7335 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 866-4905 -title: Chief Human Resources Czar -userPassword: Password1 -uid: MoettelM -givenName: Modesta -mail: MoettelM@c51f0fa4b3c84c5e87c57318cac19216.bitwarden.com -carLicense: 6S0VIV -departmentNumber: 1430 -employeeType: Contract -homePhone: +1 415 170-2506 -initials: M. M. -mobile: +1 415 915-5503 -pager: +1 415 515-2492 -roomNumber: 9953 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gisele Gaudet -sn: Gaudet -description: This is Gisele Gaudet's description -facsimileTelephoneNumber: +1 818 349-5371 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 184-2376 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: GaudetG -givenName: Gisele -mail: GaudetG@ba5fbd8ccee64957820f429bea9cbd2b.bitwarden.com -carLicense: 1K6E1L -departmentNumber: 2546 -employeeType: Normal -homePhone: +1 818 708-9625 -initials: G. G. -mobile: +1 818 160-1457 -pager: +1 818 483-6398 -roomNumber: 8320 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Theodora Kendall,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theodora Kendall -sn: Kendall -description: This is Theodora Kendall's description -facsimileTelephoneNumber: +1 818 933-5393 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 200-6027 -title: Associate Management Evangelist -userPassword: Password1 -uid: KendallT -givenName: Theodora -mail: KendallT@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com -carLicense: NHLHCK -departmentNumber: 4759 -employeeType: Employee -homePhone: +1 818 390-3760 -initials: T. K. -mobile: +1 818 952-2011 -pager: +1 818 665-2300 -roomNumber: 8183 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kee Simanskis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kee Simanskis -sn: Simanskis -description: This is Kee Simanskis's description -facsimileTelephoneNumber: +1 213 785-8981 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 968-4165 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: SimanskK -givenName: Kee -mail: SimanskK@084a0f09394c4019a2e37bab0c6dfc4d.bitwarden.com -carLicense: N4IDAH -departmentNumber: 2547 -employeeType: Contract -homePhone: +1 213 930-9652 -initials: K. S. -mobile: +1 213 763-6360 -pager: +1 213 560-2887 -roomNumber: 8658 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Micky Moorefield,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micky Moorefield -sn: Moorefield -description: This is Micky Moorefield's description -facsimileTelephoneNumber: +1 213 641-1358 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 258-8505 -title: Supreme Management Technician -userPassword: Password1 -uid: MoorefiM -givenName: Micky -mail: MoorefiM@e57ea92ee58c48afbafa0ac14075f3d3.bitwarden.com -carLicense: F2YJL4 -departmentNumber: 3970 -employeeType: Employee -homePhone: +1 213 459-1041 -initials: M. M. -mobile: +1 213 132-9810 -pager: +1 213 996-8101 -roomNumber: 9399 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Saraann Helpline,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saraann Helpline -sn: Helpline -description: This is Saraann Helpline's description -facsimileTelephoneNumber: +1 818 809-1370 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 330-2823 -title: Master Product Testing Architect -userPassword: Password1 -uid: HelplinS -givenName: Saraann -mail: HelplinS@d4be1d4cbeff459bb380038ad268b7ac.bitwarden.com -carLicense: F0TCIG -departmentNumber: 4544 -employeeType: Employee -homePhone: +1 818 272-6093 -initials: S. H. -mobile: +1 818 410-7529 -pager: +1 818 485-6203 -roomNumber: 9474 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Blondy Kluke,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blondy Kluke -sn: Kluke -description: This is Blondy Kluke's description -facsimileTelephoneNumber: +1 213 462-4999 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 392-8791 -title: Supreme Management Figurehead -userPassword: Password1 -uid: KlukeB -givenName: Blondy -mail: KlukeB@de96a17ce06e4487ba5f98c80195f121.bitwarden.com -carLicense: 4171QU -departmentNumber: 3471 -employeeType: Normal -homePhone: +1 213 356-6591 -initials: B. K. -mobile: +1 213 973-8720 -pager: +1 213 813-3075 -roomNumber: 8942 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marys Edgette,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marys Edgette -sn: Edgette -description: This is Marys Edgette's description -facsimileTelephoneNumber: +1 213 839-1193 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 156-4641 -title: Associate Administrative Sales Rep -userPassword: Password1 -uid: EdgetteM -givenName: Marys -mail: EdgetteM@e8e2b56db83b4ff19e981322f6e68e27.bitwarden.com -carLicense: 4VJIP0 -departmentNumber: 2608 -employeeType: Normal -homePhone: +1 213 176-4029 -initials: M. E. -mobile: +1 213 340-4701 -pager: +1 213 177-2057 -roomNumber: 8471 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilyssa Norczen -sn: Norczen -description: This is Ilyssa Norczen's description -facsimileTelephoneNumber: +1 408 933-2415 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 408 793-9665 -title: Master Product Testing Visionary -userPassword: Password1 -uid: NorczenI -givenName: Ilyssa -mail: NorczenI@37ef93fb374e4550b60ee55424a070b4.bitwarden.com -carLicense: 8LKGKO -departmentNumber: 3842 -employeeType: Contract -homePhone: +1 408 207-8875 -initials: I. N. -mobile: +1 408 504-5929 -pager: +1 408 517-6589 -roomNumber: 9073 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Verina McGuigan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verina McGuigan -sn: McGuigan -description: This is Verina McGuigan's description -facsimileTelephoneNumber: +1 415 700-4606 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 368-8260 -title: Associate Payroll Consultant -userPassword: Password1 -uid: McGuigaV -givenName: Verina -mail: McGuigaV@5f494e5d5c2b48bd9e0d3f42e62d76ee.bitwarden.com -carLicense: FHVKPP -departmentNumber: 7699 -employeeType: Normal -homePhone: +1 415 801-8092 -initials: V. M. -mobile: +1 415 385-9072 -pager: +1 415 361-9295 -roomNumber: 8511 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Beryl Desmond,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beryl Desmond -sn: Desmond -description: This is Beryl Desmond's description -facsimileTelephoneNumber: +1 408 851-8723 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 759-7000 -title: Associate Management Admin -userPassword: Password1 -uid: DesmondB -givenName: Beryl -mail: DesmondB@7f8aff875b274954baafb6b3b56714e2.bitwarden.com -carLicense: UPPL20 -departmentNumber: 5439 -employeeType: Contract -homePhone: +1 408 207-4281 -initials: B. D. -mobile: +1 408 931-4547 -pager: +1 408 988-8607 -roomNumber: 9815 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sydel Staples,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sydel Staples -sn: Staples -description: This is Sydel Staples's description -facsimileTelephoneNumber: +1 415 364-7326 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 415 111-4604 -title: Master Janitorial Technician -userPassword: Password1 -uid: StaplesS -givenName: Sydel -mail: StaplesS@f8d4f8ae5e28413fb1f47c0eed0d375d.bitwarden.com -carLicense: SCLBDV -departmentNumber: 1884 -employeeType: Contract -homePhone: +1 415 829-1100 -initials: S. S. -mobile: +1 415 343-9578 -pager: +1 415 367-9113 -roomNumber: 8067 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Letta Kalyani,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Letta Kalyani -sn: Kalyani -description: This is Letta Kalyani's description -facsimileTelephoneNumber: +1 510 100-5668 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 510 170-1130 -title: Supreme Peons Engineer -userPassword: Password1 -uid: KalyaniL -givenName: Letta -mail: KalyaniL@06b92eab0752450c93185ff5957a8ffb.bitwarden.com -carLicense: 4G3F7I -departmentNumber: 1915 -employeeType: Normal -homePhone: +1 510 115-4784 -initials: L. K. -mobile: +1 510 626-7229 -pager: +1 510 140-2560 -roomNumber: 8409 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shuo Anstett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shuo Anstett -sn: Anstett -description: This is Shuo Anstett's description -facsimileTelephoneNumber: +1 213 647-5264 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 240-6582 -title: Supreme Product Development Sales Rep -userPassword: Password1 -uid: AnstettS -givenName: Shuo -mail: AnstettS@06fecf470a2d4fa2a3e3213e29056ac5.bitwarden.com -carLicense: DKBRCR -departmentNumber: 9301 -employeeType: Contract -homePhone: +1 213 592-6217 -initials: S. A. -mobile: +1 213 866-1192 -pager: +1 213 542-6046 -roomNumber: 8558 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Winifred Billing,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winifred Billing -sn: Billing -description: This is Winifred Billing's description -facsimileTelephoneNumber: +1 818 164-1139 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 699-4679 -title: Junior Payroll Assistant -userPassword: Password1 -uid: BillingW -givenName: Winifred -mail: BillingW@504b7fa15e81498b91140ca23e9bafd1.bitwarden.com -carLicense: SXJGRE -departmentNumber: 7651 -employeeType: Contract -homePhone: +1 818 958-2578 -initials: W. B. -mobile: +1 818 811-4394 -pager: +1 818 658-6633 -roomNumber: 9530 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Colene Colwell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colene Colwell -sn: Colwell -description: This is Colene Colwell's description -facsimileTelephoneNumber: +1 408 268-6850 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 679-3008 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: ColwellC -givenName: Colene -mail: ColwellC@c6c308b188d84d848e3ff3cf9a7dd81c.bitwarden.com -carLicense: FVUFNU -departmentNumber: 2834 -employeeType: Normal -homePhone: +1 408 623-5103 -initials: C. C. -mobile: +1 408 106-4665 -pager: +1 408 538-7845 -roomNumber: 9934 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Isabelita Irving,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isabelita Irving -sn: Irving -description: This is Isabelita Irving's description -facsimileTelephoneNumber: +1 804 903-3306 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 752-8608 -title: Junior Management Punk -userPassword: Password1 -uid: IrvingI -givenName: Isabelita -mail: IrvingI@93ab0817a8144a1a8bd2837bd0ee0f5c.bitwarden.com -carLicense: DSB09H -departmentNumber: 8609 -employeeType: Normal -homePhone: +1 804 357-7099 -initials: I. I. -mobile: +1 804 307-5521 -pager: +1 804 827-3298 -roomNumber: 8608 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Raudres Fleischer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raudres Fleischer -sn: Fleischer -description: This is Raudres Fleischer's description -facsimileTelephoneNumber: +1 415 493-5132 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 163-2381 -title: Junior Administrative Director -userPassword: Password1 -uid: FleischR -givenName: Raudres -mail: FleischR@feab464eed244fca93a5368f188977a1.bitwarden.com -carLicense: AY2XTD -departmentNumber: 3249 -employeeType: Contract -homePhone: +1 415 960-9760 -initials: R. F. -mobile: +1 415 676-6306 -pager: +1 415 564-4777 -roomNumber: 9313 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomson Barkwill -sn: Barkwill -description: This is Thomson Barkwill's description -facsimileTelephoneNumber: +1 804 525-7209 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 792-4833 -title: Master Product Testing Punk -userPassword: Password1 -uid: BarkwilT -givenName: Thomson -mail: BarkwilT@8f055851cf2e446194b128d0faf47339.bitwarden.com -carLicense: PA5HC2 -departmentNumber: 9463 -employeeType: Contract -homePhone: +1 804 965-5971 -initials: T. B. -mobile: +1 804 731-5253 -pager: +1 804 795-7998 -roomNumber: 8995 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Laslo Anstett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laslo Anstett -sn: Anstett -description: This is Laslo Anstett's description -facsimileTelephoneNumber: +1 818 998-5046 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 711-2009 -title: Master Human Resources Visionary -userPassword: Password1 -uid: AnstettL -givenName: Laslo -mail: AnstettL@427178a8618c4a42931dd481e9a5bd65.bitwarden.com -carLicense: X31V8O -departmentNumber: 4692 -employeeType: Normal -homePhone: +1 818 596-1805 -initials: L. A. -mobile: +1 818 646-2787 -pager: +1 818 363-3837 -roomNumber: 9124 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ovila Liverman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ovila Liverman -sn: Liverman -description: This is Ovila Liverman's description -facsimileTelephoneNumber: +1 415 367-4087 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 475-1484 -title: Junior Management Admin -userPassword: Password1 -uid: LivermaO -givenName: Ovila -mail: LivermaO@4a562374ace845b8b062489d81f91f68.bitwarden.com -carLicense: 12FNEG -departmentNumber: 9836 -employeeType: Contract -homePhone: +1 415 836-9632 -initials: O. L. -mobile: +1 415 249-4481 -pager: +1 415 546-6292 -roomNumber: 8949 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Angy Walkins,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angy Walkins -sn: Walkins -description: This is Angy Walkins's description -facsimileTelephoneNumber: +1 415 575-4791 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 109-6204 -title: Associate Payroll Technician -userPassword: Password1 -uid: WalkinsA -givenName: Angy -mail: WalkinsA@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com -carLicense: OMPTJE -departmentNumber: 5843 -employeeType: Normal -homePhone: +1 415 134-9347 -initials: A. W. -mobile: +1 415 579-1660 -pager: +1 415 331-6867 -roomNumber: 9883 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hesham Ellison,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hesham Ellison -sn: Ellison -description: This is Hesham Ellison's description -facsimileTelephoneNumber: +1 206 179-5273 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 794-6859 -title: Chief Management Fellow -userPassword: Password1 -uid: EllisonH -givenName: Hesham -mail: EllisonH@dcfeb1e34dfd4d498a4c69e47113773f.bitwarden.com -carLicense: GQXI8H -departmentNumber: 5054 -employeeType: Employee -homePhone: +1 206 497-6502 -initials: H. E. -mobile: +1 206 904-3258 -pager: +1 206 587-4895 -roomNumber: 8777 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Arnett Boone,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arnett Boone -sn: Boone -description: This is Arnett Boone's description -facsimileTelephoneNumber: +1 408 833-4301 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 408 594-8441 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: BooneA -givenName: Arnett -mail: BooneA@3ab4b0bbf0e7419c9f849fbf29c78286.bitwarden.com -carLicense: YUPBQU -departmentNumber: 2475 -employeeType: Employee -homePhone: +1 408 359-8788 -initials: A. B. -mobile: +1 408 689-5519 -pager: +1 408 506-3357 -roomNumber: 8218 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tawauna Culver,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tawauna Culver -sn: Culver -description: This is Tawauna Culver's description -facsimileTelephoneNumber: +1 408 506-7403 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 505-2920 -title: Master Human Resources Assistant -userPassword: Password1 -uid: CulverT -givenName: Tawauna -mail: CulverT@826f44c090e247dea6dde88876c0151e.bitwarden.com -carLicense: LI9YBJ -departmentNumber: 7879 -employeeType: Employee -homePhone: +1 408 313-9378 -initials: T. C. -mobile: +1 408 895-2578 -pager: +1 408 316-6648 -roomNumber: 9438 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Annelise Traulich,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annelise Traulich -sn: Traulich -description: This is Annelise Traulich's description -facsimileTelephoneNumber: +1 510 125-8557 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 732-3240 -title: Associate Human Resources President -userPassword: Password1 -uid: TraulicA -givenName: Annelise -mail: TraulicA@04afc29a247d444f9a8e905bda30c780.bitwarden.com -carLicense: OWKO8B -departmentNumber: 9018 -employeeType: Contract -homePhone: +1 510 103-3745 -initials: A. T. -mobile: +1 510 246-2582 -pager: +1 510 123-6257 -roomNumber: 8541 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Farouk Goridkov,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farouk Goridkov -sn: Goridkov -description: This is Farouk Goridkov's description -facsimileTelephoneNumber: +1 510 623-1268 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 595-4008 -title: Master Peons Evangelist -userPassword: Password1 -uid: GoridkoF -givenName: Farouk -mail: GoridkoF@685481fe6bd14be085fc26453aa34d71.bitwarden.com -carLicense: S5SMK5 -departmentNumber: 7571 -employeeType: Normal -homePhone: +1 510 155-6101 -initials: F. G. -mobile: +1 510 602-1698 -pager: +1 510 633-6254 -roomNumber: 8597 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Loris Huestis,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loris Huestis -sn: Huestis -description: This is Loris Huestis's description -facsimileTelephoneNumber: +1 206 675-9210 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 253-3871 -title: Associate Management Vice President -userPassword: Password1 -uid: HuestisL -givenName: Loris -mail: HuestisL@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com -carLicense: JO1T4T -departmentNumber: 1742 -employeeType: Normal -homePhone: +1 206 601-3954 -initials: L. H. -mobile: +1 206 129-7534 -pager: +1 206 898-1140 -roomNumber: 9516 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabrina Gascho -sn: Gascho -description: This is Sabrina Gascho's description -facsimileTelephoneNumber: +1 206 649-1926 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 307-1408 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: GaschoS -givenName: Sabrina -mail: GaschoS@c3a00c67940342bebf6eb781d8fd6a4c.bitwarden.com -carLicense: EHRYOI -departmentNumber: 9679 -employeeType: Normal -homePhone: +1 206 607-6042 -initials: S. G. -mobile: +1 206 565-3176 -pager: +1 206 728-4131 -roomNumber: 9914 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sile Creighton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sile Creighton -sn: Creighton -description: This is Sile Creighton's description -facsimileTelephoneNumber: +1 510 829-4593 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 291-7375 -title: Associate Human Resources Artist -userPassword: Password1 -uid: CreightS -givenName: Sile -mail: CreightS@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com -carLicense: 7JGVWC -departmentNumber: 1918 -employeeType: Employee -homePhone: +1 510 158-4758 -initials: S. C. -mobile: +1 510 521-9158 -pager: +1 510 748-4513 -roomNumber: 9311 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Deborah Marui,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deborah Marui -sn: Marui -description: This is Deborah Marui's description -facsimileTelephoneNumber: +1 818 531-4239 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 145-6132 -title: Chief Payroll Technician -userPassword: Password1 -uid: MaruiD -givenName: Deborah -mail: MaruiD@b5bcc4ce776e4805ab4216703177730e.bitwarden.com -carLicense: 7Q3DTB -departmentNumber: 1827 -employeeType: Contract -homePhone: +1 818 240-2124 -initials: D. M. -mobile: +1 818 667-5704 -pager: +1 818 354-4004 -roomNumber: 8413 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Drona Hahn,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drona Hahn -sn: Hahn -description: This is Drona Hahn's description -facsimileTelephoneNumber: +1 408 676-5962 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 850-4399 -title: Associate Peons Figurehead -userPassword: Password1 -uid: HahnD -givenName: Drona -mail: HahnD@59110a8eb1b44c7887a8222252c623b1.bitwarden.com -carLicense: P4WGK5 -departmentNumber: 4597 -employeeType: Contract -homePhone: +1 408 899-3324 -initials: D. H. -mobile: +1 408 739-9181 -pager: +1 408 724-9716 -roomNumber: 9771 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florenza Nyberg -sn: Nyberg -description: This is Florenza Nyberg's description -facsimileTelephoneNumber: +1 804 317-6007 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 137-2138 -title: Master Product Testing Vice President -userPassword: Password1 -uid: NybergF -givenName: Florenza -mail: NybergF@1ee541f8be124dfb9bee70e5bd91693b.bitwarden.com -carLicense: V6TRX0 -departmentNumber: 4968 -employeeType: Normal -homePhone: +1 804 206-7430 -initials: F. N. -mobile: +1 804 150-8006 -pager: +1 804 393-9740 -roomNumber: 8393 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Genia Pewitt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genia Pewitt -sn: Pewitt -description: This is Genia Pewitt's description -facsimileTelephoneNumber: +1 408 450-8492 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 702-5177 -title: Master Product Testing Stooge -userPassword: Password1 -uid: PewittG -givenName: Genia -mail: PewittG@0c75759c6a414aae8103d4c8529d60da.bitwarden.com -carLicense: QAAKPS -departmentNumber: 6568 -employeeType: Employee -homePhone: +1 408 628-4546 -initials: G. P. -mobile: +1 408 385-4908 -pager: +1 408 420-4131 -roomNumber: 8041 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Annet Bagshaw,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annet Bagshaw -sn: Bagshaw -description: This is Annet Bagshaw's description -facsimileTelephoneNumber: +1 415 479-7754 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 415 365-4944 -title: Master Peons President -userPassword: Password1 -uid: BagshawA -givenName: Annet -mail: BagshawA@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com -carLicense: F0NHAY -departmentNumber: 3626 -employeeType: Normal -homePhone: +1 415 346-4739 -initials: A. B. -mobile: +1 415 579-8538 -pager: +1 415 911-6110 -roomNumber: 9761 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Martha Hilaire,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martha Hilaire -sn: Hilaire -description: This is Martha Hilaire's description -facsimileTelephoneNumber: +1 818 953-3816 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 941-2317 -title: Supreme Product Development Janitor -userPassword: Password1 -uid: HilaireM -givenName: Martha -mail: HilaireM@60825058a7f74da9878a9c767bd93e3a.bitwarden.com -carLicense: MAA0MN -departmentNumber: 7038 -employeeType: Employee -homePhone: +1 818 317-5226 -initials: M. H. -mobile: +1 818 541-8199 -pager: +1 818 379-6759 -roomNumber: 8895 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Consuelo Welch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Consuelo Welch -sn: Welch -description: This is Consuelo Welch's description -facsimileTelephoneNumber: +1 213 787-1645 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 818-3520 -title: Associate Management Figurehead -userPassword: Password1 -uid: WelchC -givenName: Consuelo -mail: WelchC@303ac29ae28a4feca207111066bb217f.bitwarden.com -carLicense: 4KD181 -departmentNumber: 2041 -employeeType: Normal -homePhone: +1 213 744-7152 -initials: C. W. -mobile: +1 213 361-9944 -pager: +1 213 967-9565 -roomNumber: 9107 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marti Petrea,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marti Petrea -sn: Petrea -description: This is Marti Petrea's description -facsimileTelephoneNumber: +1 818 894-1794 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 673-1044 -title: Junior Product Development Grunt -userPassword: Password1 -uid: PetreaM -givenName: Marti -mail: PetreaM@92d64cb2a6f949499e2d502731b02c99.bitwarden.com -carLicense: A46YIS -departmentNumber: 7950 -employeeType: Contract -homePhone: +1 818 122-5817 -initials: M. P. -mobile: +1 818 101-1309 -pager: +1 818 528-1373 -roomNumber: 9903 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pratibha Gater,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pratibha Gater -sn: Gater -description: This is Pratibha Gater's description -facsimileTelephoneNumber: +1 213 559-8066 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 617-9147 -title: Associate Product Testing Punk -userPassword: Password1 -uid: GaterP -givenName: Pratibha -mail: GaterP@b1466a7610494a6ebb6083b758d41799.bitwarden.com -carLicense: ATYVTE -departmentNumber: 5291 -employeeType: Normal -homePhone: +1 213 638-5986 -initials: P. G. -mobile: +1 213 173-4109 -pager: +1 213 870-7156 -roomNumber: 9147 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lottie Cochrane -sn: Cochrane -description: This is Lottie Cochrane's description -facsimileTelephoneNumber: +1 213 236-6583 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 580-1982 -title: Junior Janitorial Czar -userPassword: Password1 -uid: CochranL -givenName: Lottie -mail: CochranL@18060edcc6234a8b8fe795c650ecf126.bitwarden.com -carLicense: N28A7T -departmentNumber: 2281 -employeeType: Contract -homePhone: +1 213 214-1136 -initials: L. C. -mobile: +1 213 800-7137 -pager: +1 213 953-6852 -roomNumber: 8966 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pojanart Edey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pojanart Edey -sn: Edey -description: This is Pojanart Edey's description -facsimileTelephoneNumber: +1 818 990-8212 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 818 659-7439 -title: Supreme Peons Technician -userPassword: Password1 -uid: EdeyP -givenName: Pojanart -mail: EdeyP@e116936732ce45789365cbd54acef482.bitwarden.com -carLicense: JFY00A -departmentNumber: 1661 -employeeType: Contract -homePhone: +1 818 714-4073 -initials: P. E. -mobile: +1 818 884-3376 -pager: +1 818 564-7325 -roomNumber: 9384 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maynard Shennan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maynard Shennan -sn: Shennan -description: This is Maynard Shennan's description -facsimileTelephoneNumber: +1 408 176-3907 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 832-5675 -title: Master Product Development Dictator -userPassword: Password1 -uid: ShennanM -givenName: Maynard -mail: ShennanM@221f532d70be4be481e9ed7c17f0c9ef.bitwarden.com -carLicense: NXYYUU -departmentNumber: 1486 -employeeType: Normal -homePhone: +1 408 250-9702 -initials: M. S. -mobile: +1 408 580-2303 -pager: +1 408 876-8817 -roomNumber: 8341 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Theressa Schultze,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theressa Schultze -sn: Schultze -description: This is Theressa Schultze's description -facsimileTelephoneNumber: +1 804 734-8708 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 804 621-1765 -title: Supreme Peons Czar -userPassword: Password1 -uid: SchultzT -givenName: Theressa -mail: SchultzT@96ba8bbe2ea64681a15c64fdfef143e6.bitwarden.com -carLicense: YI2WA0 -departmentNumber: 9736 -employeeType: Contract -homePhone: +1 804 103-9709 -initials: T. S. -mobile: +1 804 644-9324 -pager: +1 804 428-3416 -roomNumber: 9056 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nanon McIntyre,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nanon McIntyre -sn: McIntyre -description: This is Nanon McIntyre's description -facsimileTelephoneNumber: +1 415 372-6441 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 439-9424 -title: Associate Product Development Architect -userPassword: Password1 -uid: McIntyrN -givenName: Nanon -mail: McIntyrN@3013258ee5854ddca90a2234ad0323a5.bitwarden.com -carLicense: U7FNL8 -departmentNumber: 3899 -employeeType: Employee -homePhone: +1 415 274-6553 -initials: N. M. -mobile: +1 415 543-9930 -pager: +1 415 172-1785 -roomNumber: 9873 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Silvia Peiser,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silvia Peiser -sn: Peiser -description: This is Silvia Peiser's description -facsimileTelephoneNumber: +1 415 729-2550 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 188-1921 -title: Chief Peons Madonna -userPassword: Password1 -uid: PeiserS -givenName: Silvia -mail: PeiserS@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com -carLicense: IKPAU1 -departmentNumber: 9593 -employeeType: Employee -homePhone: +1 415 218-9170 -initials: S. P. -mobile: +1 415 431-6002 -pager: +1 415 965-8483 -roomNumber: 9204 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Meryl LeClair,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meryl LeClair -sn: LeClair -description: This is Meryl LeClair's description -facsimileTelephoneNumber: +1 415 349-7772 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 906-3369 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: LeClairM -givenName: Meryl -mail: LeClairM@7d4c2ab04b8a46e18a0c092fdac02490.bitwarden.com -carLicense: FAVHDL -departmentNumber: 7741 -employeeType: Employee -homePhone: +1 415 106-6387 -initials: M. L. -mobile: +1 415 495-6377 -pager: +1 415 202-9802 -roomNumber: 9369 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tariq Standel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tariq Standel -sn: Standel -description: This is Tariq Standel's description -facsimileTelephoneNumber: +1 804 768-6244 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 237-8414 -title: Supreme Janitorial Sales Rep -userPassword: Password1 -uid: StandelT -givenName: Tariq -mail: StandelT@831a31deb2a74949a5486f724fd8cfc2.bitwarden.com -carLicense: P57KQL -departmentNumber: 5014 -employeeType: Employee -homePhone: +1 804 161-1152 -initials: T. S. -mobile: +1 804 171-8349 -pager: +1 804 294-8614 -roomNumber: 9655 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jsandye Fouillard -sn: Fouillard -description: This is Jsandye Fouillard's description -facsimileTelephoneNumber: +1 415 292-9746 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 531-1386 -title: Chief Administrative Punk -userPassword: Password1 -uid: FouillaJ -givenName: Jsandye -mail: FouillaJ@94c56b5673e64272b822168ca80bb244.bitwarden.com -carLicense: WXRL5Y -departmentNumber: 6254 -employeeType: Normal -homePhone: +1 415 716-9210 -initials: J. F. -mobile: +1 415 440-8700 -pager: +1 415 909-6746 -roomNumber: 9426 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yeung Walpole,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yeung Walpole -sn: Walpole -description: This is Yeung Walpole's description -facsimileTelephoneNumber: +1 818 109-5494 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 582-5131 -title: Chief Human Resources Engineer -userPassword: Password1 -uid: WalpoleY -givenName: Yeung -mail: WalpoleY@ca56dc5bc8e34932af430390e3ed31ad.bitwarden.com -carLicense: A7JUBI -departmentNumber: 9642 -employeeType: Normal -homePhone: +1 818 309-4392 -initials: Y. W. -mobile: +1 818 277-6003 -pager: +1 818 639-7711 -roomNumber: 9754 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carita Timmerman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carita Timmerman -sn: Timmerman -description: This is Carita Timmerman's description -facsimileTelephoneNumber: +1 804 595-6560 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 890-2024 -title: Junior Janitorial Technician -userPassword: Password1 -uid: TimmermC -givenName: Carita -mail: TimmermC@f5b75ffb6f5e450e9b2f76ee0ad4b23f.bitwarden.com -carLicense: RYUFUQ -departmentNumber: 9614 -employeeType: Contract -homePhone: +1 804 350-4659 -initials: C. T. -mobile: +1 804 382-3147 -pager: +1 804 791-2118 -roomNumber: 8121 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ansley Kuczynski -sn: Kuczynski -description: This is Ansley Kuczynski's description -facsimileTelephoneNumber: +1 510 295-5171 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 265-6654 -title: Master Product Testing Stooge -userPassword: Password1 -uid: KuczynsA -givenName: Ansley -mail: KuczynsA@b1a6b6a5513044a8a462e54235172118.bitwarden.com -carLicense: GQDY8A -departmentNumber: 4702 -employeeType: Employee -homePhone: +1 510 668-7424 -initials: A. K. -mobile: +1 510 829-3211 -pager: +1 510 164-2819 -roomNumber: 9279 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Haley Herren,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haley Herren -sn: Herren -description: This is Haley Herren's description -facsimileTelephoneNumber: +1 415 490-8596 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 415 135-4313 -title: Chief Administrative Architect -userPassword: Password1 -uid: HerrenH -givenName: Haley -mail: HerrenH@faf6dcfa970440eb9717745c6f18eb4c.bitwarden.com -carLicense: 00D04I -departmentNumber: 7086 -employeeType: Contract -homePhone: +1 415 277-1971 -initials: H. H. -mobile: +1 415 302-6374 -pager: +1 415 271-2682 -roomNumber: 9422 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elbert Allard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elbert Allard -sn: Allard -description: This is Elbert Allard's description -facsimileTelephoneNumber: +1 213 790-1231 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 296-1892 -title: Supreme Human Resources Architect -userPassword: Password1 -uid: AllardE -givenName: Elbert -mail: AllardE@5410deb36536455cba5926244af94c93.bitwarden.com -carLicense: PRK2NI -departmentNumber: 1581 -employeeType: Contract -homePhone: +1 213 966-8165 -initials: E. A. -mobile: +1 213 532-9613 -pager: +1 213 129-7801 -roomNumber: 8523 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caterina Sguigna -sn: Sguigna -description: This is Caterina Sguigna's description -facsimileTelephoneNumber: +1 804 266-2818 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 867-5049 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: SguignaC -givenName: Caterina -mail: SguignaC@c14faf1ad0834d6d9e4b1880a48b9d9e.bitwarden.com -carLicense: S1IMNE -departmentNumber: 2160 -employeeType: Employee -homePhone: +1 804 587-6695 -initials: C. S. -mobile: +1 804 444-8947 -pager: +1 804 103-9606 -roomNumber: 8662 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Trix VO,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trix VO -sn: VO -description: This is Trix VO's description -facsimileTelephoneNumber: +1 510 604-3186 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 147-2081 -title: Junior Product Development Grunt -userPassword: Password1 -uid: VOT -givenName: Trix -mail: VOT@da7bd2be911046399d0c6417c3572f36.bitwarden.com -carLicense: XYLLCE -departmentNumber: 3814 -employeeType: Employee -homePhone: +1 510 472-1817 -initials: T. V. -mobile: +1 510 111-6053 -pager: +1 510 555-8294 -roomNumber: 8937 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tommi Kapsa,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tommi Kapsa -sn: Kapsa -description: This is Tommi Kapsa's description -facsimileTelephoneNumber: +1 804 663-2820 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 830-9938 -title: Supreme Peons President -userPassword: Password1 -uid: KapsaT -givenName: Tommi -mail: KapsaT@7ff24b8ce0c74adabb9529e4076ad209.bitwarden.com -carLicense: PGV9YQ -departmentNumber: 8907 -employeeType: Employee -homePhone: +1 804 684-1610 -initials: T. K. -mobile: +1 804 236-1935 -pager: +1 804 662-5963 -roomNumber: 8417 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Teriann Stastny,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teriann Stastny -sn: Stastny -description: This is Teriann Stastny's description -facsimileTelephoneNumber: +1 408 769-1063 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 860-1305 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: StastnyT -givenName: Teriann -mail: StastnyT@232ca6cb0ac84bf8be33192693a35ba0.bitwarden.com -carLicense: W84CXE -departmentNumber: 7449 -employeeType: Normal -homePhone: +1 408 180-4401 -initials: T. S. -mobile: +1 408 691-3998 -pager: +1 408 501-9702 -roomNumber: 9058 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khamdy Hennebury -sn: Hennebury -description: This is Khamdy Hennebury's description -facsimileTelephoneNumber: +1 408 612-7190 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 719-1077 -title: Junior Human Resources Architect -userPassword: Password1 -uid: HennebuK -givenName: Khamdy -mail: HennebuK@dab11b4d8bc0443d8cd54025f08f0682.bitwarden.com -carLicense: DNCY3D -departmentNumber: 9174 -employeeType: Normal -homePhone: +1 408 925-6048 -initials: K. H. -mobile: +1 408 604-2049 -pager: +1 408 128-6881 -roomNumber: 9856 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bryant Goel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryant Goel -sn: Goel -description: This is Bryant Goel's description -facsimileTelephoneNumber: +1 213 893-7330 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 247-6474 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: GoelB -givenName: Bryant -mail: GoelB@c73f6f11deac479aa597cfaff3007ea1.bitwarden.com -carLicense: T4O7JY -departmentNumber: 3255 -employeeType: Contract -homePhone: +1 213 870-4225 -initials: B. G. -mobile: +1 213 560-5624 -pager: +1 213 728-6509 -roomNumber: 9271 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Willabella Darnell,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willabella Darnell -sn: Darnell -description: This is Willabella Darnell's description -facsimileTelephoneNumber: +1 213 967-4735 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 902-3020 -title: Chief Peons Consultant -userPassword: Password1 -uid: DarnellW -givenName: Willabella -mail: DarnellW@5415c52be549497a9568e3a1cfa7947d.bitwarden.com -carLicense: CQ53JD -departmentNumber: 7388 -employeeType: Employee -homePhone: +1 213 344-9091 -initials: W. D. -mobile: +1 213 424-2650 -pager: +1 213 519-5575 -roomNumber: 9922 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Noemi Skerlak,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noemi Skerlak -sn: Skerlak -description: This is Noemi Skerlak's description -facsimileTelephoneNumber: +1 206 795-9583 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 390-4773 -title: Master Peons Evangelist -userPassword: Password1 -uid: SkerlakN -givenName: Noemi -mail: SkerlakN@9bbd1f32714548669db47c8054fa83ca.bitwarden.com -carLicense: P0T24B -departmentNumber: 9751 -employeeType: Contract -homePhone: +1 206 460-7786 -initials: N. S. -mobile: +1 206 264-1840 -pager: +1 206 952-3191 -roomNumber: 9861 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Veena Siefert,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veena Siefert -sn: Siefert -description: This is Veena Siefert's description -facsimileTelephoneNumber: +1 818 274-8608 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 363-1797 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: SiefertV -givenName: Veena -mail: SiefertV@66522c1458fb4708a90c5e0bc4989ef8.bitwarden.com -carLicense: B34Y9O -departmentNumber: 1646 -employeeType: Normal -homePhone: +1 818 996-2857 -initials: V. S. -mobile: +1 818 173-1336 -pager: +1 818 783-3191 -roomNumber: 9478 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xylina Shiflett -sn: Shiflett -description: This is Xylina Shiflett's description -facsimileTelephoneNumber: +1 408 563-1020 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 925-3912 -title: Master Product Testing President -userPassword: Password1 -uid: ShifletX -givenName: Xylina -mail: ShifletX@509acce88e824dae901a9dc813095e54.bitwarden.com -carLicense: OKPSGF -departmentNumber: 3437 -employeeType: Contract -homePhone: +1 408 530-4083 -initials: X. S. -mobile: +1 408 646-4928 -pager: +1 408 601-4296 -roomNumber: 9998 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karyn Frankenberger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karyn Frankenberger -sn: Frankenberger -description: This is Karyn Frankenberger's description -facsimileTelephoneNumber: +1 510 469-8147 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 103-4807 -title: Junior Management Vice President -userPassword: Password1 -uid: FrankenK -givenName: Karyn -mail: FrankenK@9f4dcfc9947f4a519924493e85b35351.bitwarden.com -carLicense: XGQXXP -departmentNumber: 4013 -employeeType: Employee -homePhone: +1 510 580-6380 -initials: K. F. -mobile: +1 510 212-4092 -pager: +1 510 749-4341 -roomNumber: 9054 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Angil Simpkin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angil Simpkin -sn: Simpkin -description: This is Angil Simpkin's description -facsimileTelephoneNumber: +1 415 573-6091 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 562-3485 -title: Junior Human Resources Madonna -userPassword: Password1 -uid: SimpkinA -givenName: Angil -mail: SimpkinA@a8ee069794fb480895e756160591d5bb.bitwarden.com -carLicense: X0LBP5 -departmentNumber: 3238 -employeeType: Employee -homePhone: +1 415 639-6838 -initials: A. S. -mobile: +1 415 282-6054 -pager: +1 415 969-6492 -roomNumber: 9569 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Berta Fetzko,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berta Fetzko -sn: Fetzko -description: This is Berta Fetzko's description -facsimileTelephoneNumber: +1 818 835-4879 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 818 317-1642 -title: Chief Product Development Architect -userPassword: Password1 -uid: FetzkoB -givenName: Berta -mail: FetzkoB@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com -carLicense: M606TR -departmentNumber: 9784 -employeeType: Normal -homePhone: +1 818 479-2513 -initials: B. F. -mobile: +1 818 331-6409 -pager: +1 818 337-4068 -roomNumber: 8010 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lance Saltsider,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lance Saltsider -sn: Saltsider -description: This is Lance Saltsider's description -facsimileTelephoneNumber: +1 408 588-5914 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 503-3824 -title: Associate Peons Assistant -userPassword: Password1 -uid: SaltsidL -givenName: Lance -mail: SaltsidL@0803272b02904fab981fd623789c71d1.bitwarden.com -carLicense: 5RXNYU -departmentNumber: 7377 -employeeType: Normal -homePhone: +1 408 411-5006 -initials: L. S. -mobile: +1 408 760-8634 -pager: +1 408 810-4620 -roomNumber: 8776 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vijai Brent,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vijai Brent -sn: Brent -description: This is Vijai Brent's description -facsimileTelephoneNumber: +1 818 512-1014 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 690-5418 -title: Associate Product Testing Punk -userPassword: Password1 -uid: BrentV -givenName: Vijai -mail: BrentV@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com -carLicense: 2MTIHK -departmentNumber: 8560 -employeeType: Normal -homePhone: +1 818 797-2291 -initials: V. B. -mobile: +1 818 786-9690 -pager: +1 818 328-9674 -roomNumber: 9383 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Miss Casper,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miss Casper -sn: Casper -description: This is Miss Casper's description -facsimileTelephoneNumber: +1 408 668-1795 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 914-6593 -title: Supreme Peons President -userPassword: Password1 -uid: CasperM -givenName: Miss -mail: CasperM@d71dc23a803f40a68bc3a90e123ecace.bitwarden.com -carLicense: 9ASXTM -departmentNumber: 8350 -employeeType: Contract -homePhone: +1 408 946-2484 -initials: M. C. -mobile: +1 408 648-8582 -pager: +1 408 288-6265 -roomNumber: 8632 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robyn Rousseau -sn: Rousseau -description: This is Robyn Rousseau's description -facsimileTelephoneNumber: +1 415 690-2541 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 980-6743 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: RousseaR -givenName: Robyn -mail: RousseaR@dec23ba70c794c32b757bd3a5f9b8dc4.bitwarden.com -carLicense: 1H1NUN -departmentNumber: 2344 -employeeType: Normal -homePhone: +1 415 418-7550 -initials: R. R. -mobile: +1 415 106-1923 -pager: +1 415 758-2645 -roomNumber: 8382 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Adrienne Askins,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrienne Askins -sn: Askins -description: This is Adrienne Askins's description -facsimileTelephoneNumber: +1 510 622-1836 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 510 266-2768 -title: Master Peons Admin -userPassword: Password1 -uid: AskinsA -givenName: Adrienne -mail: AskinsA@391d8dba5fa94d8e974df50be3a6709e.bitwarden.com -carLicense: 1N9J2R -departmentNumber: 2825 -employeeType: Contract -homePhone: +1 510 495-2476 -initials: A. A. -mobile: +1 510 234-8449 -pager: +1 510 405-6896 -roomNumber: 8686 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Omayma Kinos,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Omayma Kinos -sn: Kinos -description: This is Omayma Kinos's description -facsimileTelephoneNumber: +1 804 407-8159 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 202-8129 -title: Associate Management Admin -userPassword: Password1 -uid: KinosO -givenName: Omayma -mail: KinosO@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com -carLicense: HGEP57 -departmentNumber: 3517 -employeeType: Contract -homePhone: +1 804 521-6068 -initials: O. K. -mobile: +1 804 620-5374 -pager: +1 804 455-3458 -roomNumber: 8587 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Francene Babin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francene Babin -sn: Babin -description: This is Francene Babin's description -facsimileTelephoneNumber: +1 415 187-1335 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 693-3007 -title: Associate Administrative Punk -userPassword: Password1 -uid: BabinF -givenName: Francene -mail: BabinF@085bf0384c944c1888b51dc3d32dbe90.bitwarden.com -carLicense: V6OGE7 -departmentNumber: 5056 -employeeType: Contract -homePhone: +1 415 815-1965 -initials: F. B. -mobile: +1 415 993-7460 -pager: +1 415 321-1922 -roomNumber: 9424 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maitilde Clerke,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maitilde Clerke -sn: Clerke -description: This is Maitilde Clerke's description -facsimileTelephoneNumber: +1 408 857-7667 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 408 704-9769 -title: Supreme Management Engineer -userPassword: Password1 -uid: ClerkeM -givenName: Maitilde -mail: ClerkeM@4f865f7d6d624277ad8d5380d84e9135.bitwarden.com -carLicense: WAS0A2 -departmentNumber: 3869 -employeeType: Normal -homePhone: +1 408 764-1411 -initials: M. C. -mobile: +1 408 289-7842 -pager: +1 408 362-2142 -roomNumber: 9283 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wileen Martel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wileen Martel -sn: Martel -description: This is Wileen Martel's description -facsimileTelephoneNumber: +1 213 353-2164 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 938-6271 -title: Associate Administrative Admin -userPassword: Password1 -uid: MartelW -givenName: Wileen -mail: MartelW@232786cf6be745b08d532519f75fd65e.bitwarden.com -carLicense: RVFSOG -departmentNumber: 8951 -employeeType: Employee -homePhone: +1 213 354-7413 -initials: W. M. -mobile: +1 213 581-5074 -pager: +1 213 510-2831 -roomNumber: 9033 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zarah Ibarra -sn: Ibarra -description: This is Zarah Ibarra's description -facsimileTelephoneNumber: +1 213 777-9460 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 296-6149 -title: Chief Human Resources Stooge -userPassword: Password1 -uid: IbarraZ -givenName: Zarah -mail: IbarraZ@a33f574fa0a24162b343e74178659859.bitwarden.com -carLicense: 9R5R41 -departmentNumber: 9790 -employeeType: Normal -homePhone: +1 213 731-3187 -initials: Z. I. -mobile: +1 213 116-3631 -pager: +1 213 538-7238 -roomNumber: 8748 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charangit Fujiwara -sn: Fujiwara -description: This is Charangit Fujiwara's description -facsimileTelephoneNumber: +1 510 860-6574 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 936-3454 -title: Supreme Payroll Warrior -userPassword: Password1 -uid: FujiwarC -givenName: Charangit -mail: FujiwarC@dddb0ef21490453ca7770ab3e7c98c8a.bitwarden.com -carLicense: 0DGPVP -departmentNumber: 9836 -employeeType: Employee -homePhone: +1 510 508-2056 -initials: C. F. -mobile: +1 510 764-3903 -pager: +1 510 282-1912 -roomNumber: 8206 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pooh Wargnier -sn: Wargnier -description: This is Pooh Wargnier's description -facsimileTelephoneNumber: +1 510 465-8084 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 175-5840 -title: Junior Human Resources Artist -userPassword: Password1 -uid: WargnieP -givenName: Pooh -mail: WargnieP@cb0fd14a62264345a0844bec81676fd8.bitwarden.com -carLicense: TII8HB -departmentNumber: 2385 -employeeType: Contract -homePhone: +1 510 760-5196 -initials: P. W. -mobile: +1 510 500-6376 -pager: +1 510 857-3806 -roomNumber: 9106 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Salli Boroski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salli Boroski -sn: Boroski -description: This is Salli Boroski's description -facsimileTelephoneNumber: +1 415 707-8753 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 711-2341 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: BoroskiS -givenName: Salli -mail: BoroskiS@33ab1151291f417888dc3f1306704323.bitwarden.com -carLicense: 00GAE5 -departmentNumber: 2308 -employeeType: Employee -homePhone: +1 415 428-8128 -initials: S. B. -mobile: +1 415 228-4493 -pager: +1 415 839-5355 -roomNumber: 9484 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lissi Straub,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lissi Straub -sn: Straub -description: This is Lissi Straub's description -facsimileTelephoneNumber: +1 206 948-4158 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 782-3094 -title: Junior Peons Architect -userPassword: Password1 -uid: StraubL -givenName: Lissi -mail: StraubL@cb549985165642e0959235024946d6c4.bitwarden.com -carLicense: MDYAIP -departmentNumber: 3842 -employeeType: Normal -homePhone: +1 206 969-2461 -initials: L. S. -mobile: +1 206 384-3909 -pager: +1 206 262-9535 -roomNumber: 9901 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emmalynn Rintala -sn: Rintala -description: This is Emmalynn Rintala's description -facsimileTelephoneNumber: +1 408 499-3346 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 925-4307 -title: Chief Product Testing Artist -userPassword: Password1 -uid: RintalaE -givenName: Emmalynn -mail: RintalaE@4f1519512714466da3525736d08bec31.bitwarden.com -carLicense: 573NTE -departmentNumber: 1278 -employeeType: Contract -homePhone: +1 408 207-1745 -initials: E. R. -mobile: +1 408 518-4478 -pager: +1 408 141-7767 -roomNumber: 8940 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Adrian Paialunga,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrian Paialunga -sn: Paialunga -description: This is Adrian Paialunga's description -facsimileTelephoneNumber: +1 818 652-9383 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 818 887-8765 -title: Junior Administrative Writer -userPassword: Password1 -uid: PaialunA -givenName: Adrian -mail: PaialunA@8d7191d93987404d9ebb78d6e94231f3.bitwarden.com -carLicense: 73YRTN -departmentNumber: 4500 -employeeType: Employee -homePhone: +1 818 765-9530 -initials: A. P. -mobile: +1 818 959-9880 -pager: +1 818 767-1782 -roomNumber: 8495 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dido Kohl,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dido Kohl -sn: Kohl -description: This is Dido Kohl's description -facsimileTelephoneNumber: +1 206 321-7970 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 206 125-8580 -title: Junior Human Resources Artist -userPassword: Password1 -uid: KohlD -givenName: Dido -mail: KohlD@5c05b76ad7494928a53980603065304f.bitwarden.com -carLicense: FX3C4O -departmentNumber: 1179 -employeeType: Contract -homePhone: +1 206 996-5366 -initials: D. K. -mobile: +1 206 718-7635 -pager: +1 206 699-9487 -roomNumber: 9810 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hedwig Caviness -sn: Caviness -description: This is Hedwig Caviness's description -facsimileTelephoneNumber: +1 804 947-6378 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 804 239-1553 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: CavinesH -givenName: Hedwig -mail: CavinesH@1487aec275284e49a79c5c4099f33bdb.bitwarden.com -carLicense: QF14L6 -departmentNumber: 4353 -employeeType: Normal -homePhone: +1 804 865-9921 -initials: H. C. -mobile: +1 804 713-7924 -pager: +1 804 855-9352 -roomNumber: 9088 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joan Kamyszek -sn: Kamyszek -description: This is Joan Kamyszek's description -facsimileTelephoneNumber: +1 206 894-5183 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 206 604-3916 -title: Chief Janitorial Director -userPassword: Password1 -uid: KamyszeJ -givenName: Joan -mail: KamyszeJ@47f2dfd3a9d34b3ab2e3a42042757f0d.bitwarden.com -carLicense: I9QPA1 -departmentNumber: 8126 -employeeType: Contract -homePhone: +1 206 427-3217 -initials: J. K. -mobile: +1 206 417-6749 -pager: +1 206 883-3989 -roomNumber: 8830 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chung Yarber,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chung Yarber -sn: Yarber -description: This is Chung Yarber's description -facsimileTelephoneNumber: +1 804 147-3804 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 250-1576 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: YarberC -givenName: Chung -mail: YarberC@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com -carLicense: XYPJ51 -departmentNumber: 9961 -employeeType: Contract -homePhone: +1 804 753-2908 -initials: C. Y. -mobile: +1 804 757-5173 -pager: +1 804 442-8251 -roomNumber: 8720 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=KwokLan Starowicz,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KwokLan Starowicz -sn: Starowicz -description: This is KwokLan Starowicz's description -facsimileTelephoneNumber: +1 206 276-8647 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 206 415-4794 -title: Chief Management Artist -userPassword: Password1 -uid: StarowiK -givenName: KwokLan -mail: StarowiK@a377e29ea3c74b90af1de2d7e1b3a80b.bitwarden.com -carLicense: 0Q5UQT -departmentNumber: 3030 -employeeType: Contract -homePhone: +1 206 378-7474 -initials: K. S. -mobile: +1 206 613-5943 -pager: +1 206 284-9619 -roomNumber: 8066 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Odile Finane,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odile Finane -sn: Finane -description: This is Odile Finane's description -facsimileTelephoneNumber: +1 804 443-6423 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 405-9527 -title: Junior Peons Engineer -userPassword: Password1 -uid: FinaneO -givenName: Odile -mail: FinaneO@09d26a3ec6db4402823e536bf9d9abd8.bitwarden.com -carLicense: 6O7X2Y -departmentNumber: 1544 -employeeType: Contract -homePhone: +1 804 479-3338 -initials: O. F. -mobile: +1 804 820-1679 -pager: +1 804 620-9993 -roomNumber: 8161 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shila Wykoff,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shila Wykoff -sn: Wykoff -description: This is Shila Wykoff's description -facsimileTelephoneNumber: +1 804 966-3777 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 115-9159 -title: Master Janitorial Developer -userPassword: Password1 -uid: WykoffS -givenName: Shila -mail: WykoffS@22f46c043948431eb629c2788e97867d.bitwarden.com -carLicense: BWI5C2 -departmentNumber: 6837 -employeeType: Employee -homePhone: +1 804 955-3811 -initials: S. W. -mobile: +1 804 265-3370 -pager: +1 804 149-9973 -roomNumber: 9545 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nga Seroka,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nga Seroka -sn: Seroka -description: This is Nga Seroka's description -facsimileTelephoneNumber: +1 510 785-1765 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 629-8469 -title: Junior Human Resources Stooge -userPassword: Password1 -uid: SerokaN -givenName: Nga -mail: SerokaN@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com -carLicense: JS2SL7 -departmentNumber: 9465 -employeeType: Normal -homePhone: +1 510 961-8803 -initials: N. S. -mobile: +1 510 667-2036 -pager: +1 510 496-6697 -roomNumber: 9307 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gleda Ircstandards -sn: Ircstandards -description: This is Gleda Ircstandards's description -facsimileTelephoneNumber: +1 408 673-6735 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 444-8774 -title: Master Product Development Consultant -userPassword: Password1 -uid: IrcstanG -givenName: Gleda -mail: IrcstanG@6230ce48d06c4adba4fee16dacf3aacb.bitwarden.com -carLicense: KXSRCF -departmentNumber: 3023 -employeeType: Normal -homePhone: +1 408 510-4981 -initials: G. I. -mobile: +1 408 108-4878 -pager: +1 408 657-9542 -roomNumber: 9593 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Laurel Godfrey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laurel Godfrey -sn: Godfrey -description: This is Laurel Godfrey's description -facsimileTelephoneNumber: +1 206 127-3339 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 344-5232 -title: Associate Payroll Technician -userPassword: Password1 -uid: GodfreyL -givenName: Laurel -mail: GodfreyL@a9638d8de81a4990b97d38b8ec08064b.bitwarden.com -carLicense: DDLPP6 -departmentNumber: 9510 -employeeType: Employee -homePhone: +1 206 348-2640 -initials: L. G. -mobile: +1 206 317-8154 -pager: +1 206 337-5321 -roomNumber: 8042 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marja Brivet,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marja Brivet -sn: Brivet -description: This is Marja Brivet's description -facsimileTelephoneNumber: +1 408 173-4908 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 178-8763 -title: Associate Janitorial President -userPassword: Password1 -uid: BrivetM -givenName: Marja -mail: BrivetM@457f2ac4e79241acb223143f8483a7d0.bitwarden.com -carLicense: G2I5KQ -departmentNumber: 6454 -employeeType: Normal -homePhone: +1 408 124-3709 -initials: M. B. -mobile: +1 408 934-7176 -pager: +1 408 192-4913 -roomNumber: 8244 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aryn Kellerman -sn: Kellerman -description: This is Aryn Kellerman's description -facsimileTelephoneNumber: +1 510 891-2859 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 898-8782 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: KellermA -givenName: Aryn -mail: KellermA@9b4bb145d7634b188d0d60fab9cb2fce.bitwarden.com -carLicense: KWT7AF -departmentNumber: 8787 -employeeType: Contract -homePhone: +1 510 790-6927 -initials: A. K. -mobile: +1 510 326-8732 -pager: +1 510 297-3290 -roomNumber: 8447 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Fung Holvey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fung Holvey -sn: Holvey -description: This is Fung Holvey's description -facsimileTelephoneNumber: +1 415 476-1475 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 723-6718 -title: Supreme Management Madonna -userPassword: Password1 -uid: HolveyF -givenName: Fung -mail: HolveyF@785d053c77824c6b9058fedb831b5054.bitwarden.com -carLicense: TPUP55 -departmentNumber: 7997 -employeeType: Normal -homePhone: +1 415 818-4244 -initials: F. H. -mobile: +1 415 206-8016 -pager: +1 415 490-8297 -roomNumber: 8734 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Remy Freeth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Remy Freeth -sn: Freeth -description: This is Remy Freeth's description -facsimileTelephoneNumber: +1 415 956-6136 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 168-8311 -title: Master Product Testing Visionary -userPassword: Password1 -uid: FreethR -givenName: Remy -mail: FreethR@1c65db93a4244f2389821a52627d325e.bitwarden.com -carLicense: BJ42BY -departmentNumber: 2006 -employeeType: Contract -homePhone: +1 415 213-6427 -initials: R. F. -mobile: +1 415 776-9757 -pager: +1 415 860-9110 -roomNumber: 9882 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Christina Schwartz,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christina Schwartz -sn: Schwartz -description: This is Christina Schwartz's description -facsimileTelephoneNumber: +1 818 570-3099 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 223-1118 -title: Supreme Management Admin -userPassword: Password1 -uid: SchwartC -givenName: Christina -mail: SchwartC@09c55424f60f401a820af7f109784bda.bitwarden.com -carLicense: WPJ5TW -departmentNumber: 5405 -employeeType: Normal -homePhone: +1 818 386-4493 -initials: C. S. -mobile: +1 818 542-8474 -pager: +1 818 759-2490 -roomNumber: 8872 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sissy Snelling,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sissy Snelling -sn: Snelling -description: This is Sissy Snelling's description -facsimileTelephoneNumber: +1 804 560-2656 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 562-8523 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: SnellinS -givenName: Sissy -mail: SnellinS@33bb1d9a8f7a4440aa69d0f82177e2a4.bitwarden.com -carLicense: 8GW0XU -departmentNumber: 9008 -employeeType: Employee -homePhone: +1 804 786-2232 -initials: S. S. -mobile: +1 804 689-7100 -pager: +1 804 760-5339 -roomNumber: 8339 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Randa Cumpston,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randa Cumpston -sn: Cumpston -description: This is Randa Cumpston's description -facsimileTelephoneNumber: +1 510 824-4560 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 510 841-5976 -title: Chief Administrative Warrior -userPassword: Password1 -uid: CumpstoR -givenName: Randa -mail: CumpstoR@af5f99a04b4d4049bab4751bf65043cb.bitwarden.com -carLicense: S6EPX2 -departmentNumber: 7717 -employeeType: Contract -homePhone: +1 510 397-6348 -initials: R. C. -mobile: +1 510 147-4566 -pager: +1 510 513-5111 -roomNumber: 8773 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maitreya Dpu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maitreya Dpu -sn: Dpu -description: This is Maitreya Dpu's description -facsimileTelephoneNumber: +1 510 255-6977 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 510 396-6122 -title: Junior Administrative Writer -userPassword: Password1 -uid: DpuM -givenName: Maitreya -mail: DpuM@bc7c0ff60d4641f2b01474bcc8b086c8.bitwarden.com -carLicense: 2QXQ68 -departmentNumber: 5840 -employeeType: Employee -homePhone: +1 510 952-7097 -initials: M. D. -mobile: +1 510 236-7852 -pager: +1 510 454-9634 -roomNumber: 9267 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jon Giotis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jon Giotis -sn: Giotis -description: This is Jon Giotis's description -facsimileTelephoneNumber: +1 804 642-7363 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 804 207-7674 -title: Chief Product Testing Manager -userPassword: Password1 -uid: GiotisJ -givenName: Jon -mail: GiotisJ@df6375b797c34567a9e4770a61e55877.bitwarden.com -carLicense: LCOH1Q -departmentNumber: 6940 -employeeType: Contract -homePhone: +1 804 900-4417 -initials: J. G. -mobile: +1 804 819-7512 -pager: +1 804 797-3263 -roomNumber: 8537 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mala Kilner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mala Kilner -sn: Kilner -description: This is Mala Kilner's description -facsimileTelephoneNumber: +1 415 715-2874 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 415 651-1304 -title: Associate Product Development Stooge -userPassword: Password1 -uid: KilnerM -givenName: Mala -mail: KilnerM@0f4f6868b21d4ba883c28f9afa5b52cf.bitwarden.com -carLicense: WDM8HS -departmentNumber: 1058 -employeeType: Employee -homePhone: +1 415 196-1460 -initials: M. K. -mobile: +1 415 248-3187 -pager: +1 415 111-5454 -roomNumber: 9838 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Melanie Bubel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melanie Bubel -sn: Bubel -description: This is Melanie Bubel's description -facsimileTelephoneNumber: +1 408 645-3283 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 965-6902 -title: Chief Payroll Artist -userPassword: Password1 -uid: BubelM -givenName: Melanie -mail: BubelM@f5509b991c844dc9a39d99c61a3ee567.bitwarden.com -carLicense: IW8F5Y -departmentNumber: 6333 -employeeType: Employee -homePhone: +1 408 861-9651 -initials: M. B. -mobile: +1 408 318-8215 -pager: +1 408 744-8587 -roomNumber: 8506 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Collie Nentwich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Collie Nentwich -sn: Nentwich -description: This is Collie Nentwich's description -facsimileTelephoneNumber: +1 206 157-8560 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 758-4034 -title: Supreme Product Testing Punk -userPassword: Password1 -uid: NentwicC -givenName: Collie -mail: NentwicC@f87253151346446facf2c747687a955b.bitwarden.com -carLicense: B4RNMY -departmentNumber: 5006 -employeeType: Contract -homePhone: +1 206 450-7438 -initials: C. N. -mobile: +1 206 184-9824 -pager: +1 206 423-7708 -roomNumber: 8458 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Omer Piwkowski -sn: Piwkowski -description: This is Omer Piwkowski's description -facsimileTelephoneNumber: +1 818 954-1404 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 840-1105 -title: Junior Human Resources Madonna -userPassword: Password1 -uid: PiwkowsO -givenName: Omer -mail: PiwkowsO@72dcb42620634cf59fa336b64a03ee7a.bitwarden.com -carLicense: 51IS5T -departmentNumber: 6213 -employeeType: Normal -homePhone: +1 818 184-9329 -initials: O. P. -mobile: +1 818 508-4433 -pager: +1 818 374-5291 -roomNumber: 8653 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yussuf DorisHampton -sn: DorisHampton -description: This is Yussuf DorisHampton's description -facsimileTelephoneNumber: +1 510 494-8978 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 143-8953 -title: Associate Human Resources Grunt -userPassword: Password1 -uid: DorisHaY -givenName: Yussuf -mail: DorisHaY@b8436b0997234174a1d3652199251b81.bitwarden.com -carLicense: TM3ELH -departmentNumber: 1531 -employeeType: Employee -homePhone: +1 510 621-3422 -initials: Y. D. -mobile: +1 510 610-1172 -pager: +1 510 699-7093 -roomNumber: 8533 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Madella Feder,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madella Feder -sn: Feder -description: This is Madella Feder's description -facsimileTelephoneNumber: +1 415 795-2978 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 101-9957 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: FederM -givenName: Madella -mail: FederM@ca22d526a59d4676a611c2fc1101837d.bitwarden.com -carLicense: FEWUAN -departmentNumber: 4734 -employeeType: Normal -homePhone: +1 415 826-5733 -initials: M. F. -mobile: +1 415 295-3203 -pager: +1 415 721-4459 -roomNumber: 9723 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dela Hallenbeck -sn: Hallenbeck -description: This is Dela Hallenbeck's description -facsimileTelephoneNumber: +1 206 853-7301 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 460-3658 -title: Chief Administrative Punk -userPassword: Password1 -uid: HallenbD -givenName: Dela -mail: HallenbD@6ffe5ab0f525480aa833777930f34870.bitwarden.com -carLicense: U9JVOE -departmentNumber: 9775 -employeeType: Employee -homePhone: +1 206 787-9099 -initials: D. H. -mobile: +1 206 876-6087 -pager: +1 206 438-7665 -roomNumber: 8465 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Roman Burleigh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roman Burleigh -sn: Burleigh -description: This is Roman Burleigh's description -facsimileTelephoneNumber: +1 804 599-9739 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 174-3766 -title: Chief Product Development Vice President -userPassword: Password1 -uid: BurleigR -givenName: Roman -mail: BurleigR@d22cee8cdc104128b64ec5a3dc27a2cd.bitwarden.com -carLicense: 42YSM0 -departmentNumber: 9069 -employeeType: Contract -homePhone: +1 804 137-4221 -initials: R. B. -mobile: +1 804 958-9834 -pager: +1 804 521-2293 -roomNumber: 8710 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=SangMaun Nunn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SangMaun Nunn -sn: Nunn -description: This is SangMaun Nunn's description -facsimileTelephoneNumber: +1 206 998-5552 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 586-7937 -title: Chief Administrative Dictator -userPassword: Password1 -uid: NunnS -givenName: SangMaun -mail: NunnS@a756330f88da4d03abf12059d19a1462.bitwarden.com -carLicense: H86PKN -departmentNumber: 5039 -employeeType: Normal -homePhone: +1 206 639-5196 -initials: S. N. -mobile: +1 206 949-9133 -pager: +1 206 402-6298 -roomNumber: 9592 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranee OFCPARM -sn: OFCPARM -description: This is Ranee OFCPARM's description -facsimileTelephoneNumber: +1 818 217-7641 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 300-1521 -title: Master Product Testing Visionary -userPassword: Password1 -uid: OFCPARMR -givenName: Ranee -mail: OFCPARMR@2c23fea190c640299f3fdc976ce4b7f6.bitwarden.com -carLicense: NH64R8 -departmentNumber: 6369 -employeeType: Contract -homePhone: +1 818 233-4447 -initials: R. O. -mobile: +1 818 962-7482 -pager: +1 818 733-9012 -roomNumber: 9921 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Moria Auld,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moria Auld -sn: Auld -description: This is Moria Auld's description -facsimileTelephoneNumber: +1 213 755-1536 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 408-7348 -title: Supreme Payroll Mascot -userPassword: Password1 -uid: AuldM -givenName: Moria -mail: AuldM@848de2e1032948c1b5d78b7a20263232.bitwarden.com -carLicense: 43TBPU -departmentNumber: 8809 -employeeType: Contract -homePhone: +1 213 310-7081 -initials: M. A. -mobile: +1 213 135-7281 -pager: +1 213 722-3343 -roomNumber: 8397 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ted Demeulemeester,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ted Demeulemeester -sn: Demeulemeester -description: This is Ted Demeulemeester's description -facsimileTelephoneNumber: +1 415 252-3162 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 973-1544 -title: Junior Management Architect -userPassword: Password1 -uid: DemeuleT -givenName: Ted -mail: DemeuleT@d5289993561c41498ef7b2158a5f68d7.bitwarden.com -carLicense: 70X9SA -departmentNumber: 5737 -employeeType: Employee -homePhone: +1 415 178-8444 -initials: T. D. -mobile: +1 415 163-8839 -pager: +1 415 383-9682 -roomNumber: 9523 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bertha Lamont,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bertha Lamont -sn: Lamont -description: This is Bertha Lamont's description -facsimileTelephoneNumber: +1 415 977-9776 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 251-1719 -title: Supreme Payroll Mascot -userPassword: Password1 -uid: LamontB -givenName: Bertha -mail: LamontB@df6375b797c34567a9e4770a61e55877.bitwarden.com -carLicense: IFA51Q -departmentNumber: 6282 -employeeType: Normal -homePhone: +1 415 443-4407 -initials: B. L. -mobile: +1 415 849-9249 -pager: +1 415 620-3759 -roomNumber: 9342 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shlomo Bradbury -sn: Bradbury -description: This is Shlomo Bradbury's description -facsimileTelephoneNumber: +1 408 609-6329 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 428-7376 -title: Junior Human Resources Czar -userPassword: Password1 -uid: BradburS -givenName: Shlomo -mail: BradburS@ab3d1e9b742c4214a0c8d83acbe1ad8a.bitwarden.com -carLicense: PAB96T -departmentNumber: 4413 -employeeType: Employee -homePhone: +1 408 228-2330 -initials: S. B. -mobile: +1 408 433-9616 -pager: +1 408 483-8633 -roomNumber: 9259 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hayden Francese,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hayden Francese -sn: Francese -description: This is Hayden Francese's description -facsimileTelephoneNumber: +1 213 956-3581 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 692-8307 -title: Chief Product Development Architect -userPassword: Password1 -uid: FrancesH -givenName: Hayden -mail: FrancesH@37b876b4a91540b4b71770c7a49beee8.bitwarden.com -carLicense: Q3FH25 -departmentNumber: 5121 -employeeType: Employee -homePhone: +1 213 190-7495 -initials: H. F. -mobile: +1 213 609-1012 -pager: +1 213 409-7374 -roomNumber: 8158 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeannette Quante,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeannette Quante -sn: Quante -description: This is Jeannette Quante's description -facsimileTelephoneNumber: +1 206 589-9230 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 221-4167 -title: Master Management Czar -userPassword: Password1 -uid: QuanteJ -givenName: Jeannette -mail: QuanteJ@9cba00e55266421b93bd11c17d0407ed.bitwarden.com -carLicense: FF97GI -departmentNumber: 3164 -employeeType: Contract -homePhone: +1 206 921-9628 -initials: J. Q. -mobile: +1 206 356-8831 -pager: +1 206 757-7524 -roomNumber: 9096 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Steffane Middleton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steffane Middleton -sn: Middleton -description: This is Steffane Middleton's description -facsimileTelephoneNumber: +1 415 967-9796 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 352-8317 -title: Chief Peons Stooge -userPassword: Password1 -uid: MiddletS -givenName: Steffane -mail: MiddletS@3b02e13d586c4243a74a50de88d81685.bitwarden.com -carLicense: NBMU42 -departmentNumber: 7124 -employeeType: Contract -homePhone: +1 415 682-9744 -initials: S. M. -mobile: +1 415 223-7051 -pager: +1 415 370-7172 -roomNumber: 8815 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tetsuyuki Kwee -sn: Kwee -description: This is Tetsuyuki Kwee's description -facsimileTelephoneNumber: +1 213 712-7688 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 213 713-7871 -title: Associate Payroll Warrior -userPassword: Password1 -uid: KweeT -givenName: Tetsuyuki -mail: KweeT@4641f68e88f74b89a7d91f372f89c707.bitwarden.com -carLicense: XHKHRY -departmentNumber: 5891 -employeeType: Employee -homePhone: +1 213 494-5706 -initials: T. K. -mobile: +1 213 732-6642 -pager: +1 213 680-8214 -roomNumber: 8572 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Saied Streight,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saied Streight -sn: Streight -description: This is Saied Streight's description -facsimileTelephoneNumber: +1 510 903-1036 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 718-2044 -title: Associate Product Development Manager -userPassword: Password1 -uid: StreighS -givenName: Saied -mail: StreighS@5c51ed312b7d40789d1387ca1b76506e.bitwarden.com -carLicense: KI97RC -departmentNumber: 9789 -employeeType: Normal -homePhone: +1 510 313-6679 -initials: S. S. -mobile: +1 510 103-6328 -pager: +1 510 513-3175 -roomNumber: 9795 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marco Ethier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marco Ethier -sn: Ethier -description: This is Marco Ethier's description -facsimileTelephoneNumber: +1 804 921-4782 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 130-9198 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: EthierM -givenName: Marco -mail: EthierM@0f1f84ce6579498d8497bfb021e0f4e9.bitwarden.com -carLicense: 21TMRK -departmentNumber: 3122 -employeeType: Contract -homePhone: +1 804 242-8027 -initials: M. E. -mobile: +1 804 213-5982 -pager: +1 804 585-4239 -roomNumber: 9902 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carlyn Gallion,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlyn Gallion -sn: Gallion -description: This is Carlyn Gallion's description -facsimileTelephoneNumber: +1 818 148-1161 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 128-7484 -title: Chief Management Figurehead -userPassword: Password1 -uid: GallionC -givenName: Carlyn -mail: GallionC@ed183240d2274a60918dec7c056a1b86.bitwarden.com -carLicense: IGCTJ0 -departmentNumber: 3957 -employeeType: Contract -homePhone: +1 818 278-6356 -initials: C. G. -mobile: +1 818 353-3171 -pager: +1 818 491-5812 -roomNumber: 8510 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SvennErik Arcouet -sn: Arcouet -description: This is SvennErik Arcouet's description -facsimileTelephoneNumber: +1 213 673-1354 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 955-3297 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: ArcouetS -givenName: SvennErik -mail: ArcouetS@09240d9396fc4bb88db28084b91824ba.bitwarden.com -carLicense: BJXDMS -departmentNumber: 1802 -employeeType: Employee -homePhone: +1 213 379-8323 -initials: S. A. -mobile: +1 213 713-3469 -pager: +1 213 962-4627 -roomNumber: 9081 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pacific Maxin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pacific Maxin -sn: Maxin -description: This is Pacific Maxin's description -facsimileTelephoneNumber: +1 213 373-2050 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 213 418-7187 -title: Supreme Payroll Consultant -userPassword: Password1 -uid: MaxinP -givenName: Pacific -mail: MaxinP@7dbb126638b0419eb87d5c967cdeef20.bitwarden.com -carLicense: 5E38QX -departmentNumber: 9819 -employeeType: Employee -homePhone: +1 213 764-3206 -initials: P. M. -mobile: +1 213 488-3615 -pager: +1 213 810-9087 -roomNumber: 8782 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Coursey Breiten,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coursey Breiten -sn: Breiten -description: This is Coursey Breiten's description -facsimileTelephoneNumber: +1 510 128-5996 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 146-3006 -title: Supreme Product Testing Evangelist -userPassword: Password1 -uid: BreitenC -givenName: Coursey -mail: BreitenC@1eb2456e111c4bd988f50cdf3b94db14.bitwarden.com -carLicense: TECSS1 -departmentNumber: 5359 -employeeType: Employee -homePhone: +1 510 404-3128 -initials: C. B. -mobile: +1 510 567-8818 -pager: +1 510 365-1035 -roomNumber: 9098 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guglielma Goulette -sn: Goulette -description: This is Guglielma Goulette's description -facsimileTelephoneNumber: +1 804 234-6342 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 801-1961 -title: Master Product Testing Writer -userPassword: Password1 -uid: GoulettG -givenName: Guglielma -mail: GoulettG@92c6f7a15fa34e1ba82245e64e288948.bitwarden.com -carLicense: 1IL2SW -departmentNumber: 8836 -employeeType: Normal -homePhone: +1 804 991-4418 -initials: G. G. -mobile: +1 804 105-1743 -pager: +1 804 815-5959 -roomNumber: 8878 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brandea Bagi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandea Bagi -sn: Bagi -description: This is Brandea Bagi's description -facsimileTelephoneNumber: +1 213 409-1822 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 569-6959 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: BagiB -givenName: Brandea -mail: BagiB@76e7e62397cf46a7b8c004ca6e02f899.bitwarden.com -carLicense: E7YNQ1 -departmentNumber: 3543 -employeeType: Normal -homePhone: +1 213 289-1304 -initials: B. B. -mobile: +1 213 269-5892 -pager: +1 213 814-3482 -roomNumber: 9294 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Silva Hoag,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silva Hoag -sn: Hoag -description: This is Silva Hoag's description -facsimileTelephoneNumber: +1 213 549-2226 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 726-2159 -title: Associate Administrative Evangelist -userPassword: Password1 -uid: HoagS -givenName: Silva -mail: HoagS@46fcd2052d404a708ecce9dd268b7838.bitwarden.com -carLicense: H4TRDO -departmentNumber: 1886 -employeeType: Employee -homePhone: +1 213 418-6548 -initials: S. H. -mobile: +1 213 338-5067 -pager: +1 213 886-9580 -roomNumber: 8006 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sybilla Tipping,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sybilla Tipping -sn: Tipping -description: This is Sybilla Tipping's description -facsimileTelephoneNumber: +1 206 555-5716 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 307-7247 -title: Junior Product Development Dictator -userPassword: Password1 -uid: TippingS -givenName: Sybilla -mail: TippingS@d0a24bf8a89244a2b3b170e173fce452.bitwarden.com -carLicense: NNOLGL -departmentNumber: 7116 -employeeType: Contract -homePhone: +1 206 656-6585 -initials: S. T. -mobile: +1 206 480-2500 -pager: +1 206 920-4294 -roomNumber: 9726 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mindy LePage,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mindy LePage -sn: LePage -description: This is Mindy LePage's description -facsimileTelephoneNumber: +1 408 562-5467 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 374-2853 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: LePageM -givenName: Mindy -mail: LePageM@448f3e7713fe403a82f59754c984e2f3.bitwarden.com -carLicense: QVO124 -departmentNumber: 8219 -employeeType: Employee -homePhone: +1 408 153-9257 -initials: M. L. -mobile: +1 408 674-1241 -pager: +1 408 344-3914 -roomNumber: 9736 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Beckie Bach,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beckie Bach -sn: Bach -description: This is Beckie Bach's description -facsimileTelephoneNumber: +1 804 190-2236 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 804 318-3469 -title: Junior Peons Madonna -userPassword: Password1 -uid: BachB -givenName: Beckie -mail: BachB@8815cac7b22d401da16cfed3eab968c0.bitwarden.com -carLicense: NWCSEB -departmentNumber: 3949 -employeeType: Contract -homePhone: +1 804 739-5815 -initials: B. B. -mobile: +1 804 487-4948 -pager: +1 804 264-3156 -roomNumber: 9369 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Catie Biermann,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catie Biermann -sn: Biermann -description: This is Catie Biermann's description -facsimileTelephoneNumber: +1 408 548-3564 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 642-5942 -title: Master Product Testing Developer -userPassword: Password1 -uid: BiermanC -givenName: Catie -mail: BiermanC@b6087bd6d2db4261b3c51adf501795f0.bitwarden.com -carLicense: 23JI9R -departmentNumber: 3416 -employeeType: Normal -homePhone: +1 408 596-2059 -initials: C. B. -mobile: +1 408 356-2425 -pager: +1 408 283-7054 -roomNumber: 8489 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jin Benge,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jin Benge -sn: Benge -description: This is Jin Benge's description -facsimileTelephoneNumber: +1 818 786-8195 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 148-2501 -title: Junior Janitorial Technician -userPassword: Password1 -uid: BengeJ -givenName: Jin -mail: BengeJ@a68a04065ea342e280fa5b5e07351677.bitwarden.com -carLicense: F9QC5W -departmentNumber: 8265 -employeeType: Contract -homePhone: +1 818 891-1665 -initials: J. B. -mobile: +1 818 415-7122 -pager: +1 818 122-4497 -roomNumber: 8164 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elsa Breglec,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elsa Breglec -sn: Breglec -description: This is Elsa Breglec's description -facsimileTelephoneNumber: +1 415 208-3497 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 415 663-1681 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: BreglecE -givenName: Elsa -mail: BreglecE@0938d507654b4fc09f1956ab818aa3bf.bitwarden.com -carLicense: W0KJP7 -departmentNumber: 9508 -employeeType: Contract -homePhone: +1 415 747-8705 -initials: E. B. -mobile: +1 415 298-9943 -pager: +1 415 163-6019 -roomNumber: 8396 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Clementina Lozinski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clementina Lozinski -sn: Lozinski -description: This is Clementina Lozinski's description -facsimileTelephoneNumber: +1 818 944-3925 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 974-3983 -title: Chief Management President -userPassword: Password1 -uid: LozinskC -givenName: Clementina -mail: LozinskC@bd6697e6b7dc455a8c08101ef2dd2bfa.bitwarden.com -carLicense: TWPF9J -departmentNumber: 4511 -employeeType: Normal -homePhone: +1 818 565-1366 -initials: C. L. -mobile: +1 818 606-9032 -pager: +1 818 525-4965 -roomNumber: 9095 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Danella Gullekson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danella Gullekson -sn: Gullekson -description: This is Danella Gullekson's description -facsimileTelephoneNumber: +1 510 521-2029 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 539-3014 -title: Master Administrative Janitor -userPassword: Password1 -uid: GulleksD -givenName: Danella -mail: GulleksD@02e89016127d40e485d3c85f04f6d436.bitwarden.com -carLicense: ST3G0Q -departmentNumber: 4075 -employeeType: Employee -homePhone: +1 510 312-9817 -initials: D. G. -mobile: +1 510 824-3671 -pager: +1 510 852-5681 -roomNumber: 8903 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Monte Luker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monte Luker -sn: Luker -description: This is Monte Luker's description -facsimileTelephoneNumber: +1 408 836-7835 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 565-3298 -title: Master Product Testing Writer -userPassword: Password1 -uid: LukerM -givenName: Monte -mail: LukerM@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com -carLicense: B754XE -departmentNumber: 3538 -employeeType: Normal -homePhone: +1 408 835-9660 -initials: M. L. -mobile: +1 408 265-3601 -pager: +1 408 965-5914 -roomNumber: 9404 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Valry Bratten,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valry Bratten -sn: Bratten -description: This is Valry Bratten's description -facsimileTelephoneNumber: +1 818 742-7736 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 275-3542 -title: Master Human Resources Engineer -userPassword: Password1 -uid: BrattenV -givenName: Valry -mail: BrattenV@b9106f7d57f74a7b92af146111acb57d.bitwarden.com -carLicense: E567R8 -departmentNumber: 6181 -employeeType: Contract -homePhone: +1 818 265-1744 -initials: V. B. -mobile: +1 818 723-3541 -pager: +1 818 914-6390 -roomNumber: 9150 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fawnia Wilemon -sn: Wilemon -description: This is Fawnia Wilemon's description -facsimileTelephoneNumber: +1 408 686-5997 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 546-6067 -title: Chief Administrative Stooge -userPassword: Password1 -uid: WilemonF -givenName: Fawnia -mail: WilemonF@689212cef95e4390942ddc48435316fb.bitwarden.com -carLicense: BGTMVK -departmentNumber: 6711 -employeeType: Contract -homePhone: +1 408 860-5937 -initials: F. W. -mobile: +1 408 130-5136 -pager: +1 408 883-2563 -roomNumber: 9200 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lissi Neumeister,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lissi Neumeister -sn: Neumeister -description: This is Lissi Neumeister's description -facsimileTelephoneNumber: +1 818 559-3412 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 379-8379 -title: Associate Management Engineer -userPassword: Password1 -uid: NeumeisL -givenName: Lissi -mail: NeumeisL@90c585b5539b419a977fd9fb6fa21443.bitwarden.com -carLicense: TDFPB5 -departmentNumber: 1666 -employeeType: Normal -homePhone: +1 818 532-9057 -initials: L. N. -mobile: +1 818 631-1751 -pager: +1 818 493-6330 -roomNumber: 9461 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Claribel Digenova,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claribel Digenova -sn: Digenova -description: This is Claribel Digenova's description -facsimileTelephoneNumber: +1 408 711-2320 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 611-4685 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: DigenovC -givenName: Claribel -mail: DigenovC@e65b170ac1bc46edb99b4efe67ea9912.bitwarden.com -carLicense: AKBTHI -departmentNumber: 4535 -employeeType: Normal -homePhone: +1 408 371-5987 -initials: C. D. -mobile: +1 408 865-3368 -pager: +1 408 401-5647 -roomNumber: 9307 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tatsman Verma,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatsman Verma -sn: Verma -description: This is Tatsman Verma's description -facsimileTelephoneNumber: +1 804 171-9739 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 907-4619 -title: Chief Payroll Janitor -userPassword: Password1 -uid: VermaT -givenName: Tatsman -mail: VermaT@4a204781cca64dff80b312c10c7a36ff.bitwarden.com -carLicense: B0GL3J -departmentNumber: 5032 -employeeType: Normal -homePhone: +1 804 241-8038 -initials: T. V. -mobile: +1 804 894-8055 -pager: +1 804 199-7468 -roomNumber: 9857 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ransom Nipper,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ransom Nipper -sn: Nipper -description: This is Ransom Nipper's description -facsimileTelephoneNumber: +1 415 183-6453 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 287-1430 -title: Junior Janitorial Czar -userPassword: Password1 -uid: NipperR -givenName: Ransom -mail: NipperR@d45f6836f596476594ad223437a92901.bitwarden.com -carLicense: BXM9BA -departmentNumber: 7938 -employeeType: Employee -homePhone: +1 415 247-5333 -initials: R. N. -mobile: +1 415 758-2188 -pager: +1 415 972-7766 -roomNumber: 8418 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gilemette McWherter,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilemette McWherter -sn: McWherter -description: This is Gilemette McWherter's description -facsimileTelephoneNumber: +1 804 501-2143 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 726-1970 -title: Chief Management Janitor -userPassword: Password1 -uid: McWhertG -givenName: Gilemette -mail: McWhertG@a69ec3b3f0f649c684a03150d8e09c1f.bitwarden.com -carLicense: HVF7GH -departmentNumber: 8162 -employeeType: Contract -homePhone: +1 804 376-3966 -initials: G. M. -mobile: +1 804 294-8687 -pager: +1 804 497-3540 -roomNumber: 8844 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Holst Bringhurst,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Holst Bringhurst -sn: Bringhurst -description: This is Holst Bringhurst's description -facsimileTelephoneNumber: +1 408 647-3720 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 693-9625 -title: Chief Management Warrior -userPassword: Password1 -uid: BringhuH -givenName: Holst -mail: BringhuH@3b9fa50f488d4490b199ca8153116bc9.bitwarden.com -carLicense: 8NMQ9L -departmentNumber: 1960 -employeeType: Normal -homePhone: +1 408 140-4995 -initials: H. B. -mobile: +1 408 566-7954 -pager: +1 408 134-3449 -roomNumber: 9463 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lainey Rzepczynski -sn: Rzepczynski -description: This is Lainey Rzepczynski's description -facsimileTelephoneNumber: +1 213 868-7485 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 590-8290 -title: Master Product Testing Madonna -userPassword: Password1 -uid: RzepczyL -givenName: Lainey -mail: RzepczyL@62408cd3118c4cb082c607bd64879ced.bitwarden.com -carLicense: EP70IN -departmentNumber: 4266 -employeeType: Normal -homePhone: +1 213 231-7629 -initials: L. R. -mobile: +1 213 780-6080 -pager: +1 213 930-6528 -roomNumber: 8942 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Joe Guatto,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joe Guatto -sn: Guatto -description: This is Joe Guatto's description -facsimileTelephoneNumber: +1 213 105-4286 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 905-5422 -title: Associate Peons Artist -userPassword: Password1 -uid: GuattoJ -givenName: Joe -mail: GuattoJ@728cea3206cf4fc9b4edca0209470b11.bitwarden.com -carLicense: KXMNNA -departmentNumber: 4778 -employeeType: Contract -homePhone: +1 213 962-8452 -initials: J. G. -mobile: +1 213 643-5201 -pager: +1 213 305-3301 -roomNumber: 9622 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Peder Jarmon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peder Jarmon -sn: Jarmon -description: This is Peder Jarmon's description -facsimileTelephoneNumber: +1 408 186-6831 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 665-5424 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: JarmonP -givenName: Peder -mail: JarmonP@2cee41fd284e44d0b94fd6cd9ca5baa0.bitwarden.com -carLicense: NWRQ88 -departmentNumber: 4766 -employeeType: Employee -homePhone: +1 408 384-2740 -initials: P. J. -mobile: +1 408 808-5692 -pager: +1 408 756-7285 -roomNumber: 8885 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melisa Lenior,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisa Lenior -sn: Lenior -description: This is Melisa Lenior's description -facsimileTelephoneNumber: +1 408 668-3414 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 301-8317 -title: Supreme Management Madonna -userPassword: Password1 -uid: LeniorM -givenName: Melisa -mail: LeniorM@2e79931123d1474581b7c761e1420107.bitwarden.com -carLicense: DTJULT -departmentNumber: 7671 -employeeType: Employee -homePhone: +1 408 133-1677 -initials: M. L. -mobile: +1 408 273-3681 -pager: +1 408 252-5162 -roomNumber: 9567 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terez Lingafelter -sn: Lingafelter -description: This is Terez Lingafelter's description -facsimileTelephoneNumber: +1 818 229-8371 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 751-4273 -title: Chief Human Resources Warrior -userPassword: Password1 -uid: LingafeT -givenName: Terez -mail: LingafeT@273dfd92cd9f45d0aa9350f559239559.bitwarden.com -carLicense: 2IMNN4 -departmentNumber: 7565 -employeeType: Normal -homePhone: +1 818 740-3255 -initials: T. L. -mobile: +1 818 352-9695 -pager: +1 818 271-3608 -roomNumber: 8949 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shafiq Archer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shafiq Archer -sn: Archer -description: This is Shafiq Archer's description -facsimileTelephoneNumber: +1 818 495-5914 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 802-7542 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: ArcherS -givenName: Shafiq -mail: ArcherS@5e4fad8c083a467e8d3a2aebcb1ae975.bitwarden.com -carLicense: PI4JGX -departmentNumber: 3978 -employeeType: Normal -homePhone: +1 818 526-8216 -initials: S. A. -mobile: +1 818 263-1552 -pager: +1 818 418-8396 -roomNumber: 9906 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessamyn Seiler -sn: Seiler -description: This is Jessamyn Seiler's description -facsimileTelephoneNumber: +1 818 681-3616 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 697-8277 -title: Associate Human Resources Manager -userPassword: Password1 -uid: SeilerJ -givenName: Jessamyn -mail: SeilerJ@9c687885040c4312b6d12f4acbe7233d.bitwarden.com -carLicense: BXDV6R -departmentNumber: 9306 -employeeType: Normal -homePhone: +1 818 324-9863 -initials: J. S. -mobile: +1 818 883-4272 -pager: +1 818 136-1073 -roomNumber: 8871 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nancee Smuda,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nancee Smuda -sn: Smuda -description: This is Nancee Smuda's description -facsimileTelephoneNumber: +1 415 724-8331 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 254-1729 -title: Junior Peons Director -userPassword: Password1 -uid: SmudaN -givenName: Nancee -mail: SmudaN@4bcab71446194b1c9217ba0642278f17.bitwarden.com -carLicense: ESA363 -departmentNumber: 2952 -employeeType: Contract -homePhone: +1 415 357-2509 -initials: N. S. -mobile: +1 415 405-1170 -pager: +1 415 928-1999 -roomNumber: 8994 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ferdinanda Yan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ferdinanda Yan -sn: Yan -description: This is Ferdinanda Yan's description -facsimileTelephoneNumber: +1 818 907-2126 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 874-2756 -title: Master Peons Stooge -userPassword: Password1 -uid: YanF -givenName: Ferdinanda -mail: YanF@c74535433b9348ea8f9533567762a8ed.bitwarden.com -carLicense: Q39C0S -departmentNumber: 5663 -employeeType: Contract -homePhone: +1 818 163-7942 -initials: F. Y. -mobile: +1 818 494-4821 -pager: +1 818 507-9834 -roomNumber: 9939 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaymee Fainecos -sn: Fainecos -description: This is Jaymee Fainecos's description -facsimileTelephoneNumber: +1 804 104-7361 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 183-5006 -title: Master Human Resources Technician -userPassword: Password1 -uid: FainecoJ -givenName: Jaymee -mail: FainecoJ@f4d24bc7d7f24286badff0284693bf28.bitwarden.com -carLicense: DSCNL2 -departmentNumber: 9101 -employeeType: Contract -homePhone: +1 804 892-6189 -initials: J. F. -mobile: +1 804 293-2468 -pager: +1 804 835-1886 -roomNumber: 9501 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Portia Basinger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Portia Basinger -sn: Basinger -description: This is Portia Basinger's description -facsimileTelephoneNumber: +1 213 144-3607 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 403-6191 -title: Master Payroll Stooge -userPassword: Password1 -uid: BasingeP -givenName: Portia -mail: BasingeP@ef1e32b8e6ed4ea48078aa3e29bfff81.bitwarden.com -carLicense: C32HY9 -departmentNumber: 6864 -employeeType: Employee -homePhone: +1 213 448-2778 -initials: P. B. -mobile: +1 213 602-8154 -pager: +1 213 121-6205 -roomNumber: 9214 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vanda Holmes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanda Holmes -sn: Holmes -description: This is Vanda Holmes's description -facsimileTelephoneNumber: +1 415 795-7270 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 491-7992 -title: Chief Management Dictator -userPassword: Password1 -uid: HolmesV -givenName: Vanda -mail: HolmesV@253edaa8e3f14dbfb2bdbed6f7d5d1f0.bitwarden.com -carLicense: B0FHDX -departmentNumber: 7905 -employeeType: Contract -homePhone: +1 415 140-7954 -initials: V. H. -mobile: +1 415 210-8918 -pager: +1 415 625-1601 -roomNumber: 8261 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sid Shedd,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sid Shedd -sn: Shedd -description: This is Sid Shedd's description -facsimileTelephoneNumber: +1 415 309-2977 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 369-1314 -title: Associate Payroll Janitor -userPassword: Password1 -uid: SheddS -givenName: Sid -mail: SheddS@9bcc50c57a474f08a90b0d5f5d6e220a.bitwarden.com -carLicense: 5TO07B -departmentNumber: 1167 -employeeType: Contract -homePhone: +1 415 764-8350 -initials: S. S. -mobile: +1 415 390-6645 -pager: +1 415 675-1506 -roomNumber: 8450 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Merrielle Cinar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrielle Cinar -sn: Cinar -description: This is Merrielle Cinar's description -facsimileTelephoneNumber: +1 206 383-5710 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 819-7549 -title: Junior Administrative Grunt -userPassword: Password1 -uid: CinarM -givenName: Merrielle -mail: CinarM@684cd4172ddb4c928bb2bd98b9b242d3.bitwarden.com -carLicense: B38EUT -departmentNumber: 1443 -employeeType: Employee -homePhone: +1 206 115-2161 -initials: M. C. -mobile: +1 206 490-4557 -pager: +1 206 694-3405 -roomNumber: 8367 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ginevra Varady,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginevra Varady -sn: Varady -description: This is Ginevra Varady's description -facsimileTelephoneNumber: +1 206 803-2087 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 316-2291 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: VaradyG -givenName: Ginevra -mail: VaradyG@37c3227000a74816851448e0169c372e.bitwarden.com -carLicense: H7MN9G -departmentNumber: 9563 -employeeType: Contract -homePhone: +1 206 736-8102 -initials: G. V. -mobile: +1 206 522-3549 -pager: +1 206 367-8056 -roomNumber: 8301 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Noraly Hassan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noraly Hassan -sn: Hassan -description: This is Noraly Hassan's description -facsimileTelephoneNumber: +1 415 881-2090 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 415 631-1515 -title: Chief Peons Artist -userPassword: Password1 -uid: HassanN -givenName: Noraly -mail: HassanN@ac25d049c10a4d758088ebdaf063ce02.bitwarden.com -carLicense: B9IS4R -departmentNumber: 7710 -employeeType: Normal -homePhone: +1 415 852-6585 -initials: N. H. -mobile: +1 415 507-1327 -pager: +1 415 621-1838 -roomNumber: 8014 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ron Stirling,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ron Stirling -sn: Stirling -description: This is Ron Stirling's description -facsimileTelephoneNumber: +1 213 973-5974 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 213 411-2192 -title: Supreme Peons Madonna -userPassword: Password1 -uid: StirlinR -givenName: Ron -mail: StirlinR@693e15a0c0664d58a0ac94c78535cda0.bitwarden.com -carLicense: TDKHRC -departmentNumber: 9191 -employeeType: Normal -homePhone: +1 213 665-9367 -initials: R. S. -mobile: +1 213 768-4816 -pager: +1 213 436-5881 -roomNumber: 9843 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lauree Waytowich -sn: Waytowich -description: This is Lauree Waytowich's description -facsimileTelephoneNumber: +1 213 487-9855 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 603-8124 -title: Associate Product Testing Manager -userPassword: Password1 -uid: WaytowiL -givenName: Lauree -mail: WaytowiL@9ad00ea283a44f0b8cc931a1caa6acca.bitwarden.com -carLicense: 9RQ9Q2 -departmentNumber: 1981 -employeeType: Employee -homePhone: +1 213 862-6503 -initials: L. W. -mobile: +1 213 971-2366 -pager: +1 213 751-7386 -roomNumber: 8404 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kala Huber,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kala Huber -sn: Huber -description: This is Kala Huber's description -facsimileTelephoneNumber: +1 213 398-3660 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 213 141-5601 -title: Chief Human Resources Architect -userPassword: Password1 -uid: HuberK -givenName: Kala -mail: HuberK@2ddd4900e5cd4e799049753b498a352e.bitwarden.com -carLicense: JUGVKJ -departmentNumber: 7963 -employeeType: Contract -homePhone: +1 213 153-9748 -initials: K. H. -mobile: +1 213 777-7615 -pager: +1 213 725-3731 -roomNumber: 8572 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Woon Rasmus,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Woon Rasmus -sn: Rasmus -description: This is Woon Rasmus's description -facsimileTelephoneNumber: +1 818 542-2127 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 164-4004 -title: Supreme Product Development Admin -userPassword: Password1 -uid: RasmusW -givenName: Woon -mail: RasmusW@b4277bbde59048f39a27a7d14145a06f.bitwarden.com -carLicense: L5GIVJ -departmentNumber: 9485 -employeeType: Normal -homePhone: +1 818 440-7014 -initials: W. R. -mobile: +1 818 947-5187 -pager: +1 818 128-8688 -roomNumber: 8959 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jaime Delf,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaime Delf -sn: Delf -description: This is Jaime Delf's description -facsimileTelephoneNumber: +1 415 761-9767 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 105-8240 -title: Master Peons Janitor -userPassword: Password1 -uid: DelfJ -givenName: Jaime -mail: DelfJ@335909b2c3c5485ebfab0ea1181e56d0.bitwarden.com -carLicense: P5KG3T -departmentNumber: 8524 -employeeType: Employee -homePhone: +1 415 586-5996 -initials: J. D. -mobile: +1 415 519-1756 -pager: +1 415 628-6958 -roomNumber: 9808 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dina Kaunas,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dina Kaunas -sn: Kaunas -description: This is Dina Kaunas's description -facsimileTelephoneNumber: +1 415 283-4624 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 752-9169 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: KaunasD -givenName: Dina -mail: KaunasD@f2b1db93699d459ba377efc7d34d7aa5.bitwarden.com -carLicense: KUQLQL -departmentNumber: 5106 -employeeType: Contract -homePhone: +1 415 699-8667 -initials: D. K. -mobile: +1 415 718-7902 -pager: +1 415 144-6515 -roomNumber: 8841 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Todd Gainer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Todd Gainer -sn: Gainer -description: This is Todd Gainer's description -facsimileTelephoneNumber: +1 408 792-9937 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 309-4911 -title: Master Product Testing Grunt -userPassword: Password1 -uid: GainerT -givenName: Todd -mail: GainerT@ef0a65e10eae440cab70802b37d924ab.bitwarden.com -carLicense: G3SMUK -departmentNumber: 8542 -employeeType: Employee -homePhone: +1 408 128-2307 -initials: T. G. -mobile: +1 408 482-9068 -pager: +1 408 129-4985 -roomNumber: 8754 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=HonKong Woolwine,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HonKong Woolwine -sn: Woolwine -description: This is HonKong Woolwine's description -facsimileTelephoneNumber: +1 510 838-5501 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 483-4151 -title: Master Peons Punk -userPassword: Password1 -uid: WoolwinH -givenName: HonKong -mail: WoolwinH@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com -carLicense: KUWA9A -departmentNumber: 5316 -employeeType: Normal -homePhone: +1 510 885-4239 -initials: H. W. -mobile: +1 510 516-9393 -pager: +1 510 669-4973 -roomNumber: 8707 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joelie Challice,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joelie Challice -sn: Challice -description: This is Joelie Challice's description -facsimileTelephoneNumber: +1 213 823-6517 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 213 362-7938 -title: Master Janitorial Consultant -userPassword: Password1 -uid: ChallicJ -givenName: Joelie -mail: ChallicJ@de7dfccc10c245619507096806e60950.bitwarden.com -carLicense: 9L50A2 -departmentNumber: 8365 -employeeType: Contract -homePhone: +1 213 306-7236 -initials: J. C. -mobile: +1 213 619-7041 -pager: +1 213 406-1142 -roomNumber: 9268 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Margalo Behlen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margalo Behlen -sn: Behlen -description: This is Margalo Behlen's description -facsimileTelephoneNumber: +1 213 701-4039 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 948-6300 -title: Master Product Development Developer -userPassword: Password1 -uid: BehlenM -givenName: Margalo -mail: BehlenM@30da59e65fda4079ac56eeda7237dc3b.bitwarden.com -carLicense: AM758E -departmentNumber: 9430 -employeeType: Employee -homePhone: +1 213 872-4830 -initials: M. B. -mobile: +1 213 182-6875 -pager: +1 213 856-5134 -roomNumber: 9499 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Trish Meunier,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trish Meunier -sn: Meunier -description: This is Trish Meunier's description -facsimileTelephoneNumber: +1 408 128-2355 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 421-2238 -title: Junior Payroll Punk -userPassword: Password1 -uid: MeunierT -givenName: Trish -mail: MeunierT@c28624b05f7d4c31811fad5e0d04b1e6.bitwarden.com -carLicense: E8VYDB -departmentNumber: 5521 -employeeType: Contract -homePhone: +1 408 768-4430 -initials: T. M. -mobile: +1 408 812-9005 -pager: +1 408 157-2905 -roomNumber: 8663 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Verine Lilleniit,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verine Lilleniit -sn: Lilleniit -description: This is Verine Lilleniit's description -facsimileTelephoneNumber: +1 408 220-5722 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 240-7993 -title: Junior Management Grunt -userPassword: Password1 -uid: LilleniV -givenName: Verine -mail: LilleniV@5d9a493aeb18453b882b99b919bc8aa9.bitwarden.com -carLicense: S09A56 -departmentNumber: 4994 -employeeType: Normal -homePhone: +1 408 240-6891 -initials: V. L. -mobile: +1 408 138-5242 -pager: +1 408 858-1355 -roomNumber: 8397 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Corilla Popescu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corilla Popescu -sn: Popescu -description: This is Corilla Popescu's description -facsimileTelephoneNumber: +1 510 100-9772 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 599-4289 -title: Chief Management Evangelist -userPassword: Password1 -uid: PopescuC -givenName: Corilla -mail: PopescuC@ad623334663c4947b77eb81b44ea11ea.bitwarden.com -carLicense: LJR31T -departmentNumber: 7395 -employeeType: Employee -homePhone: +1 510 228-9135 -initials: C. P. -mobile: +1 510 254-6903 -pager: +1 510 521-4489 -roomNumber: 8165 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Wynne Hudson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wynne Hudson -sn: Hudson -description: This is Wynne Hudson's description -facsimileTelephoneNumber: +1 213 691-2261 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 722-2849 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: HudsonW -givenName: Wynne -mail: HudsonW@a6e91fbe946f4f22a15eb3bbe629e3da.bitwarden.com -carLicense: W4H94S -departmentNumber: 8639 -employeeType: Contract -homePhone: +1 213 105-6471 -initials: W. H. -mobile: +1 213 683-4413 -pager: +1 213 128-2118 -roomNumber: 9941 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozalin AbouEzze -sn: AbouEzze -description: This is Rozalin AbouEzze's description -facsimileTelephoneNumber: +1 213 393-6235 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 794-7596 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: AbouEzzR -givenName: Rozalin -mail: AbouEzzR@ffdefe28596d40ee910185f1df335f05.bitwarden.com -carLicense: MSADI7 -departmentNumber: 7859 -employeeType: Employee -homePhone: +1 213 198-4907 -initials: R. A. -mobile: +1 213 280-5148 -pager: +1 213 283-3461 -roomNumber: 9224 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Laurel Leavell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laurel Leavell -sn: Leavell -description: This is Laurel Leavell's description -facsimileTelephoneNumber: +1 415 350-4539 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 205-3567 -title: Junior Management Vice President -userPassword: Password1 -uid: LeavellL -givenName: Laurel -mail: LeavellL@cfbc523ea26f4865ad5da193bd391d7f.bitwarden.com -carLicense: CJUXNG -departmentNumber: 7069 -employeeType: Contract -homePhone: +1 415 754-4946 -initials: L. L. -mobile: +1 415 364-8615 -pager: +1 415 403-2556 -roomNumber: 9227 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ulrika Moxon -sn: Moxon -description: This is Ulrika Moxon's description -facsimileTelephoneNumber: +1 408 972-8036 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 408 936-2764 -title: Master Human Resources Architect -userPassword: Password1 -uid: MoxonU -givenName: Ulrika -mail: MoxonU@1f765dec942d40c392beceda646362cf.bitwarden.com -carLicense: C55W5Q -departmentNumber: 1067 -employeeType: Normal -homePhone: +1 408 560-6677 -initials: U. M. -mobile: +1 408 983-7672 -pager: +1 408 489-9786 -roomNumber: 9608 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Madlin Irvin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madlin Irvin -sn: Irvin -description: This is Madlin Irvin's description -facsimileTelephoneNumber: +1 213 869-8426 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 838-7381 -title: Supreme Product Development Grunt -userPassword: Password1 -uid: IrvinM -givenName: Madlin -mail: IrvinM@8f698818b35041d38a84f1c71ca57e14.bitwarden.com -carLicense: K1KTER -departmentNumber: 1051 -employeeType: Employee -homePhone: +1 213 554-2719 -initials: M. I. -mobile: +1 213 162-1513 -pager: +1 213 235-8061 -roomNumber: 9696 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ashleigh Salembier,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashleigh Salembier -sn: Salembier -description: This is Ashleigh Salembier's description -facsimileTelephoneNumber: +1 415 143-7078 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 522-3194 -title: Master Peons Vice President -userPassword: Password1 -uid: SalembiA -givenName: Ashleigh -mail: SalembiA@225e1be6fb454e5cab9ce645e748d35d.bitwarden.com -carLicense: S371C7 -departmentNumber: 5168 -employeeType: Contract -homePhone: +1 415 697-2112 -initials: A. S. -mobile: +1 415 282-6321 -pager: +1 415 612-8825 -roomNumber: 8658 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sacha Dailey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sacha Dailey -sn: Dailey -description: This is Sacha Dailey's description -facsimileTelephoneNumber: +1 804 184-5580 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 241-8850 -title: Junior Administrative Czar -userPassword: Password1 -uid: DaileyS -givenName: Sacha -mail: DaileyS@abccdcf5035347f79868c63de7257f89.bitwarden.com -carLicense: LYOAP1 -departmentNumber: 5517 -employeeType: Contract -homePhone: +1 804 924-6757 -initials: S. D. -mobile: +1 804 942-6635 -pager: +1 804 852-4825 -roomNumber: 9242 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lynett Reddy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynett Reddy -sn: Reddy -description: This is Lynett Reddy's description -facsimileTelephoneNumber: +1 415 443-8493 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 516-8490 -title: Junior Product Testing Technician -userPassword: Password1 -uid: ReddyL -givenName: Lynett -mail: ReddyL@f071c89187164ee99b36301acebce3d5.bitwarden.com -carLicense: 3I0478 -departmentNumber: 8077 -employeeType: Contract -homePhone: +1 415 401-5191 -initials: L. R. -mobile: +1 415 606-7496 -pager: +1 415 560-2454 -roomNumber: 9948 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bregitte Nixon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bregitte Nixon -sn: Nixon -description: This is Bregitte Nixon's description -facsimileTelephoneNumber: +1 213 285-9135 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 199-6282 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: NixonB -givenName: Bregitte -mail: NixonB@d64cbc21c43e4ae789224277adc4ecfe.bitwarden.com -carLicense: 6CX7LR -departmentNumber: 1479 -employeeType: Contract -homePhone: +1 213 165-6408 -initials: B. N. -mobile: +1 213 299-5767 -pager: +1 213 323-9970 -roomNumber: 8918 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Peter Engineering,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peter Engineering -sn: Engineering -description: This is Peter Engineering's description -facsimileTelephoneNumber: +1 408 234-3893 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 643-5548 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: EngineeP -givenName: Peter -mail: EngineeP@c66e42835f2044cdbf51d67978ad100e.bitwarden.com -carLicense: HBWVWO -departmentNumber: 8268 -employeeType: Contract -homePhone: +1 408 523-9439 -initials: P. E. -mobile: +1 408 149-3576 -pager: +1 408 272-9367 -roomNumber: 9663 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgeanna Newcomb -sn: Newcomb -description: This is Georgeanna Newcomb's description -facsimileTelephoneNumber: +1 804 507-1933 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 804 886-6680 -title: Associate Payroll Punk -userPassword: Password1 -uid: NewcombG -givenName: Georgeanna -mail: NewcombG@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com -carLicense: HCUM9D -departmentNumber: 6570 -employeeType: Contract -homePhone: +1 804 758-2473 -initials: G. N. -mobile: +1 804 838-3191 -pager: +1 804 896-7506 -roomNumber: 9844 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlotta Siehl -sn: Siehl -description: This is Carlotta Siehl's description -facsimileTelephoneNumber: +1 408 827-2999 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 600-6707 -title: Chief Human Resources Writer -userPassword: Password1 -uid: SiehlC -givenName: Carlotta -mail: SiehlC@cc8182e6de0c4840a0e434e3f5bc6e84.bitwarden.com -carLicense: J8X2WJ -departmentNumber: 6776 -employeeType: Contract -homePhone: +1 408 672-2136 -initials: C. S. -mobile: +1 408 995-9736 -pager: +1 408 431-2495 -roomNumber: 8897 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pawel Drane,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pawel Drane -sn: Drane -description: This is Pawel Drane's description -facsimileTelephoneNumber: +1 408 480-5777 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 260-3890 -title: Master Product Development Writer -userPassword: Password1 -uid: DraneP -givenName: Pawel -mail: DraneP@04fe092cb6474d1a9ada1ac9a8cccc86.bitwarden.com -carLicense: T2FTUO -departmentNumber: 6283 -employeeType: Normal -homePhone: +1 408 281-3760 -initials: P. D. -mobile: +1 408 209-3776 -pager: +1 408 374-3000 -roomNumber: 8509 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tommy Cisco,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tommy Cisco -sn: Cisco -description: This is Tommy Cisco's description -facsimileTelephoneNumber: +1 510 260-6319 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 510 460-6202 -title: Associate Payroll Technician -userPassword: Password1 -uid: CiscoT -givenName: Tommy -mail: CiscoT@91a6462ae0a648b3be3eaa603f83c373.bitwarden.com -carLicense: 4VGLD6 -departmentNumber: 9693 -employeeType: Contract -homePhone: +1 510 534-4203 -initials: T. C. -mobile: +1 510 347-5620 -pager: +1 510 967-6357 -roomNumber: 8099 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dvm Early,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dvm Early -sn: Early -description: This is Dvm Early's description -facsimileTelephoneNumber: +1 213 819-2131 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 684-4599 -title: Chief Product Development Manager -userPassword: Password1 -uid: EarlyD -givenName: Dvm -mail: EarlyD@2b4c6e317b6b4a709a1f938d53334cdf.bitwarden.com -carLicense: 0QYETW -departmentNumber: 8382 -employeeType: Normal -homePhone: +1 213 860-5391 -initials: D. E. -mobile: +1 213 209-1265 -pager: +1 213 902-4508 -roomNumber: 9836 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Akin Forgeron,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akin Forgeron -sn: Forgeron -description: This is Akin Forgeron's description -facsimileTelephoneNumber: +1 415 490-6934 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 152-1828 -title: Supreme Product Testing Engineer -userPassword: Password1 -uid: ForgeroA -givenName: Akin -mail: ForgeroA@c866ca2e96114b72baa4b93410d8e54e.bitwarden.com -carLicense: MYHW3L -departmentNumber: 2398 -employeeType: Employee -homePhone: +1 415 657-6173 -initials: A. F. -mobile: +1 415 211-3290 -pager: +1 415 232-5746 -roomNumber: 8326 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cornelia Sharratt -sn: Sharratt -description: This is Cornelia Sharratt's description -facsimileTelephoneNumber: +1 213 468-7258 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 712-4359 -title: Associate Janitorial Punk -userPassword: Password1 -uid: SharratC -givenName: Cornelia -mail: SharratC@7fd9c7724c2d4270a0b2eac9d1493bda.bitwarden.com -carLicense: 1CDYNR -departmentNumber: 7165 -employeeType: Contract -homePhone: +1 213 528-6441 -initials: C. S. -mobile: +1 213 337-7691 -pager: +1 213 717-4259 -roomNumber: 9475 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lilllie Precoda,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilllie Precoda -sn: Precoda -description: This is Lilllie Precoda's description -facsimileTelephoneNumber: +1 408 639-6092 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 663-2958 -title: Master Product Development Engineer -userPassword: Password1 -uid: PrecodaL -givenName: Lilllie -mail: PrecodaL@c9144d6968894000b9f12fc184c03e52.bitwarden.com -carLicense: DRBCSG -departmentNumber: 8500 -employeeType: Contract -homePhone: +1 408 970-8427 -initials: L. P. -mobile: +1 408 684-8539 -pager: +1 408 577-6078 -roomNumber: 8565 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Corinna Spragg,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corinna Spragg -sn: Spragg -description: This is Corinna Spragg's description -facsimileTelephoneNumber: +1 408 543-1976 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 559-8749 -title: Master Payroll Madonna -userPassword: Password1 -uid: SpraggC -givenName: Corinna -mail: SpraggC@25466f5c2b4e4320afbe3eeabe295830.bitwarden.com -carLicense: YVCLGL -departmentNumber: 8732 -employeeType: Contract -homePhone: +1 408 163-8219 -initials: C. S. -mobile: +1 408 510-5587 -pager: +1 408 175-8901 -roomNumber: 9292 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yoke Pitre,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoke Pitre -sn: Pitre -description: This is Yoke Pitre's description -facsimileTelephoneNumber: +1 804 212-2639 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 677-4223 -title: Master Product Development Manager -userPassword: Password1 -uid: PitreY -givenName: Yoke -mail: PitreY@911b346497874da4b48522c31ad5633c.bitwarden.com -carLicense: TRCFOA -departmentNumber: 8515 -employeeType: Contract -homePhone: +1 804 489-7177 -initials: Y. P. -mobile: +1 804 235-4465 -pager: +1 804 408-3500 -roomNumber: 9508 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cooney Ahmed -sn: Ahmed -description: This is Cooney Ahmed's description -facsimileTelephoneNumber: +1 213 958-1574 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 422-4869 -title: Associate Human Resources Figurehead -userPassword: Password1 -uid: AhmedC -givenName: Cooney -mail: AhmedC@cf2b61eb91be49749a181d49670906ce.bitwarden.com -carLicense: MTS6L4 -departmentNumber: 6140 -employeeType: Employee -homePhone: +1 213 875-4420 -initials: C. A. -mobile: +1 213 663-7356 -pager: +1 213 827-8545 -roomNumber: 9724 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shayla Samsonenko -sn: Samsonenko -description: This is Shayla Samsonenko's description -facsimileTelephoneNumber: +1 415 392-3739 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 343-3271 -title: Supreme Human Resources Czar -userPassword: Password1 -uid: SamsoneS -givenName: Shayla -mail: SamsoneS@867183e0b3a947d7ba48bd51e47b6e48.bitwarden.com -carLicense: PGSPKB -departmentNumber: 5019 -employeeType: Contract -homePhone: +1 415 722-6629 -initials: S. S. -mobile: +1 415 267-9982 -pager: +1 415 560-4697 -roomNumber: 9367 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanjay Dubroy -sn: Dubroy -description: This is Sanjay Dubroy's description -facsimileTelephoneNumber: +1 206 983-8878 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 822-9462 -title: Chief Product Development Developer -userPassword: Password1 -uid: DubroyS -givenName: Sanjay -mail: DubroyS@5d0d20354c594b5780df45982564458f.bitwarden.com -carLicense: LSQR5P -departmentNumber: 2996 -employeeType: Employee -homePhone: +1 206 805-1330 -initials: S. D. -mobile: +1 206 469-4021 -pager: +1 206 463-7945 -roomNumber: 9196 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rao Grosman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rao Grosman -sn: Grosman -description: This is Rao Grosman's description -facsimileTelephoneNumber: +1 818 475-1846 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 718-1653 -title: Chief Payroll Vice President -userPassword: Password1 -uid: GrosmanR -givenName: Rao -mail: GrosmanR@c097ac51a6d248ea8109a67947a52d98.bitwarden.com -carLicense: 5HNNY7 -departmentNumber: 5600 -employeeType: Employee -homePhone: +1 818 422-6324 -initials: R. G. -mobile: +1 818 494-9780 -pager: +1 818 169-7534 -roomNumber: 8979 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Renate Belford,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renate Belford -sn: Belford -description: This is Renate Belford's description -facsimileTelephoneNumber: +1 206 285-5782 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 206 961-3864 -title: Junior Administrative Punk -userPassword: Password1 -uid: BelfordR -givenName: Renate -mail: BelfordR@9edd62f23d844f5b88856a95c3a59e6c.bitwarden.com -carLicense: UOV3S6 -departmentNumber: 8178 -employeeType: Normal -homePhone: +1 206 305-5163 -initials: R. B. -mobile: +1 206 122-3008 -pager: +1 206 945-4016 -roomNumber: 9515 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bidget Hinshaw -sn: Hinshaw -description: This is Bidget Hinshaw's description -facsimileTelephoneNumber: +1 415 423-2391 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 415 676-6710 -title: Chief Product Development Writer -userPassword: Password1 -uid: HinshawB -givenName: Bidget -mail: HinshawB@8eaa02b53fec48d0842607d198bfec39.bitwarden.com -carLicense: 1FO6X2 -departmentNumber: 7878 -employeeType: Contract -homePhone: +1 415 460-4625 -initials: B. H. -mobile: +1 415 162-7782 -pager: +1 415 813-2580 -roomNumber: 9350 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adi Venguswamy -sn: Venguswamy -description: This is Adi Venguswamy's description -facsimileTelephoneNumber: +1 510 860-3568 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 812-5704 -title: Chief Human Resources Developer -userPassword: Password1 -uid: VenguswA -givenName: Adi -mail: VenguswA@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com -carLicense: WUN6K6 -departmentNumber: 2660 -employeeType: Normal -homePhone: +1 510 213-6875 -initials: A. V. -mobile: +1 510 889-5951 -pager: +1 510 802-9316 -roomNumber: 8224 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nico Olsheski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nico Olsheski -sn: Olsheski -description: This is Nico Olsheski's description -facsimileTelephoneNumber: +1 213 384-3067 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 646-6711 -title: Chief Peons Janitor -userPassword: Password1 -uid: OlsheskN -givenName: Nico -mail: OlsheskN@8d379ab6a2fb48eeba38a8fb058f3296.bitwarden.com -carLicense: 7VYVTS -departmentNumber: 8434 -employeeType: Normal -homePhone: +1 213 858-2918 -initials: N. O. -mobile: +1 213 416-6983 -pager: +1 213 180-4431 -roomNumber: 9840 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alta Wiley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alta Wiley -sn: Wiley -description: This is Alta Wiley's description -facsimileTelephoneNumber: +1 818 785-1342 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 778-5389 -title: Supreme Product Development Architect -userPassword: Password1 -uid: WileyA -givenName: Alta -mail: WileyA@ab2a58524e6745f599026252999b1b4c.bitwarden.com -carLicense: QKFSS6 -departmentNumber: 4572 -employeeType: Contract -homePhone: +1 818 160-6127 -initials: A. W. -mobile: +1 818 539-5680 -pager: +1 818 428-7033 -roomNumber: 8623 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bennet Dunham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bennet Dunham -sn: Dunham -description: This is Bennet Dunham's description -facsimileTelephoneNumber: +1 818 853-9684 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 571-5383 -title: Master Product Testing Punk -userPassword: Password1 -uid: DunhamB -givenName: Bennet -mail: DunhamB@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com -carLicense: 01TMUS -departmentNumber: 5695 -employeeType: Employee -homePhone: +1 818 399-8327 -initials: B. D. -mobile: +1 818 739-4821 -pager: +1 818 521-7444 -roomNumber: 9361 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chandran Crutchfield,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chandran Crutchfield -sn: Crutchfield -description: This is Chandran Crutchfield's description -facsimileTelephoneNumber: +1 213 450-8193 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 858-1819 -title: Chief Peons Janitor -userPassword: Password1 -uid: CrutchfC -givenName: Chandran -mail: CrutchfC@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com -carLicense: NJRB3B -departmentNumber: 8197 -employeeType: Employee -homePhone: +1 213 277-3078 -initials: C. C. -mobile: +1 213 276-6206 -pager: +1 213 223-9412 -roomNumber: 9725 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dexter Donnelly -sn: Donnelly -description: This is Dexter Donnelly's description -facsimileTelephoneNumber: +1 415 523-8475 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 972-1973 -title: Associate Human Resources Architect -userPassword: Password1 -uid: DonnellD -givenName: Dexter -mail: DonnellD@c4d474c95eb7414aac612c0c00005f95.bitwarden.com -carLicense: H0DI8Y -departmentNumber: 2733 -employeeType: Employee -homePhone: +1 415 966-7851 -initials: D. D. -mobile: +1 415 880-7249 -pager: +1 415 247-4506 -roomNumber: 8444 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Suha Stiles,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suha Stiles -sn: Stiles -description: This is Suha Stiles's description -facsimileTelephoneNumber: +1 415 721-8116 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 649-4209 -title: Master Product Testing Manager -userPassword: Password1 -uid: StilesS -givenName: Suha -mail: StilesS@d0bb47da3574428792ab636cf81dc1b3.bitwarden.com -carLicense: TQIHF5 -departmentNumber: 6712 -employeeType: Normal -homePhone: +1 415 387-2792 -initials: S. S. -mobile: +1 415 518-8908 -pager: +1 415 174-6714 -roomNumber: 9456 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sheela Montague,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheela Montague -sn: Montague -description: This is Sheela Montague's description -facsimileTelephoneNumber: +1 213 152-6283 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 641-4789 -title: Associate Payroll Sales Rep -userPassword: Password1 -uid: MontaguS -givenName: Sheela -mail: MontaguS@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com -carLicense: 1O8J4W -departmentNumber: 8544 -employeeType: Normal -homePhone: +1 213 602-2467 -initials: S. M. -mobile: +1 213 901-5750 -pager: +1 213 415-6063 -roomNumber: 9789 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Brandais Speight,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandais Speight -sn: Speight -description: This is Brandais Speight's description -facsimileTelephoneNumber: +1 415 546-4458 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 803-3076 -title: Master Peons Figurehead -userPassword: Password1 -uid: SpeightB -givenName: Brandais -mail: SpeightB@ff20ebf729dd433fac62940be5da4725.bitwarden.com -carLicense: 5FLW0E -departmentNumber: 7129 -employeeType: Normal -homePhone: +1 415 899-6425 -initials: B. S. -mobile: +1 415 522-2674 -pager: +1 415 903-7425 -roomNumber: 8464 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ignatius USER,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ignatius USER -sn: USER -description: This is Ignatius USER's description -facsimileTelephoneNumber: +1 818 610-4994 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 558-2542 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: USERI -givenName: Ignatius -mail: USERI@d31d84badc274241b539993b6349fb7e.bitwarden.com -carLicense: S72P4P -departmentNumber: 8058 -employeeType: Employee -homePhone: +1 818 935-7585 -initials: I. U. -mobile: +1 818 505-2541 -pager: +1 818 822-1213 -roomNumber: 8783 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Merilyn Trull,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merilyn Trull -sn: Trull -description: This is Merilyn Trull's description -facsimileTelephoneNumber: +1 804 351-5744 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 283-5414 -title: Supreme Janitorial Dictator -userPassword: Password1 -uid: TrullM -givenName: Merilyn -mail: TrullM@e2ac30b0774145abbea79773529c940e.bitwarden.com -carLicense: WYHG3T -departmentNumber: 5021 -employeeType: Contract -homePhone: +1 804 550-4501 -initials: M. T. -mobile: +1 804 919-1302 -pager: +1 804 681-4713 -roomNumber: 9691 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ursulina Parise,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ursulina Parise -sn: Parise -description: This is Ursulina Parise's description -facsimileTelephoneNumber: +1 213 392-1609 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 679-8227 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: PariseU -givenName: Ursulina -mail: PariseU@ba5fe26b99534871a34503bdbcf1a116.bitwarden.com -carLicense: 5BCF69 -departmentNumber: 2294 -employeeType: Contract -homePhone: +1 213 555-1041 -initials: U. P. -mobile: +1 213 407-1846 -pager: +1 213 139-8164 -roomNumber: 9866 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ailey Bosworth,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailey Bosworth -sn: Bosworth -description: This is Ailey Bosworth's description -facsimileTelephoneNumber: +1 213 485-5740 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 689-5892 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: BoswortA -givenName: Ailey -mail: BoswortA@b827aeadf87046f484e6a5d514c5b320.bitwarden.com -carLicense: BEM59V -departmentNumber: 1347 -employeeType: Contract -homePhone: +1 213 444-4955 -initials: A. B. -mobile: +1 213 806-7491 -pager: +1 213 485-6859 -roomNumber: 9051 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mignon Sutherland -sn: Sutherland -description: This is Mignon Sutherland's description -facsimileTelephoneNumber: +1 818 873-8729 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 818 613-2323 -title: Supreme Product Testing Figurehead -userPassword: Password1 -uid: SutherlM -givenName: Mignon -mail: SutherlM@65d073567be540b69713d5ac0dbae37f.bitwarden.com -carLicense: RWBFXP -departmentNumber: 6267 -employeeType: Normal -homePhone: +1 818 376-3976 -initials: M. S. -mobile: +1 818 935-5063 -pager: +1 818 816-3842 -roomNumber: 9625 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ally Pickett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ally Pickett -sn: Pickett -description: This is Ally Pickett's description -facsimileTelephoneNumber: +1 213 822-5228 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 491-9760 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: PickettA -givenName: Ally -mail: PickettA@904711b040d44240a1ca8d5e5bf46600.bitwarden.com -carLicense: Q5HQW0 -departmentNumber: 7340 -employeeType: Normal -homePhone: +1 213 811-2673 -initials: A. P. -mobile: +1 213 262-6790 -pager: +1 213 330-3038 -roomNumber: 8235 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Viviene St,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viviene St -sn: St -description: This is Viviene St's description -facsimileTelephoneNumber: +1 213 404-6080 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 213 983-5087 -title: Master Human Resources Technician -userPassword: Password1 -uid: StV -givenName: Viviene -mail: StV@541000d4967e42578d07a307ef7b2af7.bitwarden.com -carLicense: QOIG1V -departmentNumber: 6404 -employeeType: Contract -homePhone: +1 213 580-2934 -initials: V. S. -mobile: +1 213 529-3325 -pager: +1 213 552-1273 -roomNumber: 8704 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cole Kyoung,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cole Kyoung -sn: Kyoung -description: This is Cole Kyoung's description -facsimileTelephoneNumber: +1 415 777-7426 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 885-3906 -title: Associate Management Assistant -userPassword: Password1 -uid: KyoungC -givenName: Cole -mail: KyoungC@becaa689d40f42aaa9f00a36bc98176b.bitwarden.com -carLicense: 5AQHV2 -departmentNumber: 5398 -employeeType: Employee -homePhone: +1 415 500-3102 -initials: C. K. -mobile: +1 415 445-1741 -pager: +1 415 728-5683 -roomNumber: 8026 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Brana Telesis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brana Telesis -sn: Telesis -description: This is Brana Telesis's description -facsimileTelephoneNumber: +1 213 289-9657 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 213 174-2713 -title: Junior Payroll Assistant -userPassword: Password1 -uid: TelesisB -givenName: Brana -mail: TelesisB@4cd17011411246b3aced8285a4854db8.bitwarden.com -carLicense: 27JIB4 -departmentNumber: 5086 -employeeType: Contract -homePhone: +1 213 808-3934 -initials: B. T. -mobile: +1 213 483-5001 -pager: +1 213 402-9934 -roomNumber: 9458 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Naohiko Netzke,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naohiko Netzke -sn: Netzke -description: This is Naohiko Netzke's description -facsimileTelephoneNumber: +1 415 846-1896 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 203-4562 -title: Supreme Management President -userPassword: Password1 -uid: NetzkeN -givenName: Naohiko -mail: NetzkeN@2126a4a93d82446eaaae85cb511bb3eb.bitwarden.com -carLicense: C6TFO0 -departmentNumber: 4427 -employeeType: Contract -homePhone: +1 415 698-2291 -initials: N. N. -mobile: +1 415 858-6965 -pager: +1 415 377-9588 -roomNumber: 8527 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tessty Aiken,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tessty Aiken -sn: Aiken -description: This is Tessty Aiken's description -facsimileTelephoneNumber: +1 415 529-5833 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 415 745-3975 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: AikenT -givenName: Tessty -mail: AikenT@4c228b856d024598835ac381fd7c4018.bitwarden.com -carLicense: YMAJCH -departmentNumber: 9860 -employeeType: Contract -homePhone: +1 415 958-8889 -initials: T. A. -mobile: +1 415 182-7277 -pager: +1 415 475-3504 -roomNumber: 8283 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Riannon Clifford,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Riannon Clifford -sn: Clifford -description: This is Riannon Clifford's description -facsimileTelephoneNumber: +1 415 721-9892 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 554-4680 -title: Supreme Management Director -userPassword: Password1 -uid: ClifforR -givenName: Riannon -mail: ClifforR@381edf6354fd4fd3a976c3a9bb7eb2fa.bitwarden.com -carLicense: B2PKM9 -departmentNumber: 2700 -employeeType: Contract -homePhone: +1 415 478-4764 -initials: R. C. -mobile: +1 415 509-9254 -pager: +1 415 471-8241 -roomNumber: 9578 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Roxanne Kardos,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxanne Kardos -sn: Kardos -description: This is Roxanne Kardos's description -facsimileTelephoneNumber: +1 213 907-6626 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 604-5089 -title: Associate Management Consultant -userPassword: Password1 -uid: KardosR -givenName: Roxanne -mail: KardosR@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com -carLicense: C8O2AV -departmentNumber: 1211 -employeeType: Normal -homePhone: +1 213 313-8221 -initials: R. K. -mobile: +1 213 917-6457 -pager: +1 213 120-3153 -roomNumber: 8081 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Salome Shellman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salome Shellman -sn: Shellman -description: This is Salome Shellman's description -facsimileTelephoneNumber: +1 415 832-7294 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 582-2842 -title: Chief Janitorial Developer -userPassword: Password1 -uid: ShellmaS -givenName: Salome -mail: ShellmaS@0e8d3e7c91844fc28c9cb7dae19a7c8b.bitwarden.com -carLicense: V1OP7D -departmentNumber: 8542 -employeeType: Normal -homePhone: +1 415 803-3921 -initials: S. S. -mobile: +1 415 587-6879 -pager: +1 415 155-4342 -roomNumber: 9218 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Agnella Shiley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agnella Shiley -sn: Shiley -description: This is Agnella Shiley's description -facsimileTelephoneNumber: +1 213 442-7555 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 926-6807 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: ShileyA -givenName: Agnella -mail: ShileyA@f162e574cf2641c8aecb8adf97e4bdce.bitwarden.com -carLicense: E3P6VL -departmentNumber: 5781 -employeeType: Contract -homePhone: +1 213 646-3438 -initials: A. S. -mobile: +1 213 688-5725 -pager: +1 213 730-7625 -roomNumber: 9075 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozina Mcgehee -sn: Mcgehee -description: This is Rozina Mcgehee's description -facsimileTelephoneNumber: +1 804 562-4949 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 424-5898 -title: Associate Administrative Warrior -userPassword: Password1 -uid: McgeheeR -givenName: Rozina -mail: McgeheeR@dd11611b8b2c47a382a866e9115fea27.bitwarden.com -carLicense: 844CF8 -departmentNumber: 7296 -employeeType: Contract -homePhone: +1 804 152-5921 -initials: R. M. -mobile: +1 804 891-5139 -pager: +1 804 805-8483 -roomNumber: 9614 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyanna Mayfield -sn: Mayfield -description: This is Dyanna Mayfield's description -facsimileTelephoneNumber: +1 415 212-9908 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 415 652-4666 -title: Master Product Development Technician -userPassword: Password1 -uid: MayfielD -givenName: Dyanna -mail: MayfielD@fbf9796b109949e0bf1c76d2980dbc89.bitwarden.com -carLicense: YS2H95 -departmentNumber: 7296 -employeeType: Normal -homePhone: +1 415 229-8777 -initials: D. M. -mobile: +1 415 775-8654 -pager: +1 415 275-8009 -roomNumber: 9394 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Afzal Muise,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Afzal Muise -sn: Muise -description: This is Afzal Muise's description -facsimileTelephoneNumber: +1 804 272-4451 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 364-8136 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: MuiseA -givenName: Afzal -mail: MuiseA@08ef9a8d6f01404e8be2a5108314f4b6.bitwarden.com -carLicense: GH7LTK -departmentNumber: 6465 -employeeType: Employee -homePhone: +1 804 738-7431 -initials: A. M. -mobile: +1 804 517-3399 -pager: +1 804 319-8661 -roomNumber: 9154 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dayna Ayyuce -sn: Ayyuce -description: This is Dayna Ayyuce's description -facsimileTelephoneNumber: +1 415 272-5959 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 893-6437 -title: Junior Product Development President -userPassword: Password1 -uid: AyyuceD -givenName: Dayna -mail: AyyuceD@273b97d9d3ef49d78a58814ba63e226c.bitwarden.com -carLicense: AJL8WH -departmentNumber: 3049 -employeeType: Normal -homePhone: +1 415 257-7913 -initials: D. A. -mobile: +1 415 655-4127 -pager: +1 415 504-6866 -roomNumber: 8146 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dita Yarosh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dita Yarosh -sn: Yarosh -description: This is Dita Yarosh's description -facsimileTelephoneNumber: +1 804 900-3349 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 208-6652 -title: Associate Payroll Technician -userPassword: Password1 -uid: YaroshD -givenName: Dita -mail: YaroshD@17084ac6bac544e082e8e10baef9e88a.bitwarden.com -carLicense: I14V47 -departmentNumber: 7966 -employeeType: Normal -homePhone: +1 804 792-9273 -initials: D. Y. -mobile: +1 804 457-2669 -pager: +1 804 439-1418 -roomNumber: 8339 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Aparna Gamsa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aparna Gamsa -sn: Gamsa -description: This is Aparna Gamsa's description -facsimileTelephoneNumber: +1 804 543-3293 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 878-3011 -title: Master Payroll Czar -userPassword: Password1 -uid: GamsaA -givenName: Aparna -mail: GamsaA@2776697a3f73478a98d2005898493a90.bitwarden.com -carLicense: BS06QL -departmentNumber: 8006 -employeeType: Contract -homePhone: +1 804 671-8248 -initials: A. G. -mobile: +1 804 867-9321 -pager: +1 804 173-4810 -roomNumber: 8272 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Angelita Letsome,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angelita Letsome -sn: Letsome -description: This is Angelita Letsome's description -facsimileTelephoneNumber: +1 804 162-6258 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 640-6189 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: LetsomeA -givenName: Angelita -mail: LetsomeA@399088e535dc444183a128d7fd1a5d16.bitwarden.com -carLicense: UDASLC -departmentNumber: 7996 -employeeType: Contract -homePhone: +1 804 586-9786 -initials: A. L. -mobile: +1 804 565-4185 -pager: +1 804 985-3554 -roomNumber: 9383 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Peder Lotan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peder Lotan -sn: Lotan -description: This is Peder Lotan's description -facsimileTelephoneNumber: +1 510 811-4020 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 664-1707 -title: Associate Administrative Punk -userPassword: Password1 -uid: LotanP -givenName: Peder -mail: LotanP@37616ed5e0b7446e8aebcafc0ca73cc0.bitwarden.com -carLicense: BH5VQ6 -departmentNumber: 7163 -employeeType: Contract -homePhone: +1 510 419-1956 -initials: P. L. -mobile: +1 510 505-4991 -pager: +1 510 187-4226 -roomNumber: 9633 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Etienne Courchesne,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Etienne Courchesne -sn: Courchesne -description: This is Etienne Courchesne's description -facsimileTelephoneNumber: +1 510 603-8843 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 559-3629 -title: Master Payroll Stooge -userPassword: Password1 -uid: CourcheE -givenName: Etienne -mail: CourcheE@22132cebdbcd4006980be48431d0e6f6.bitwarden.com -carLicense: CARLHQ -departmentNumber: 6714 -employeeType: Contract -homePhone: +1 510 117-8686 -initials: E. C. -mobile: +1 510 151-3445 -pager: +1 510 973-9897 -roomNumber: 8826 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ankie Alswiti -sn: Alswiti -description: This is Ankie Alswiti's description -facsimileTelephoneNumber: +1 510 697-8672 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 943-6633 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: AlswitiA -givenName: Ankie -mail: AlswitiA@397e97404f3546c5897ea44ae061b6ec.bitwarden.com -carLicense: YMI338 -departmentNumber: 8484 -employeeType: Contract -homePhone: +1 510 402-2528 -initials: A. A. -mobile: +1 510 207-1044 -pager: +1 510 711-1773 -roomNumber: 8914 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Huguette Foos,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huguette Foos -sn: Foos -description: This is Huguette Foos's description -facsimileTelephoneNumber: +1 510 243-8542 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 177-9492 -title: Chief Product Development Sales Rep -userPassword: Password1 -uid: FoosH -givenName: Huguette -mail: FoosH@c2abdbe4b359461aa1626e1fb6d88367.bitwarden.com -carLicense: U7VTQP -departmentNumber: 6326 -employeeType: Employee -homePhone: +1 510 563-2877 -initials: H. F. -mobile: +1 510 113-7416 -pager: +1 510 687-9559 -roomNumber: 8420 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rania Myhill,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rania Myhill -sn: Myhill -description: This is Rania Myhill's description -facsimileTelephoneNumber: +1 206 617-7698 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 909-6879 -title: Chief Human Resources Artist -userPassword: Password1 -uid: MyhillR -givenName: Rania -mail: MyhillR@fa687144921b436e82405266f480b00e.bitwarden.com -carLicense: NMWQF6 -departmentNumber: 8709 -employeeType: Normal -homePhone: +1 206 582-7916 -initials: R. M. -mobile: +1 206 340-7415 -pager: +1 206 755-8107 -roomNumber: 9484 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Crista Saha,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crista Saha -sn: Saha -description: This is Crista Saha's description -facsimileTelephoneNumber: +1 818 219-8306 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 365-2435 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: SahaC -givenName: Crista -mail: SahaC@bfc4a1524e6a4503b462f17821625900.bitwarden.com -carLicense: MSACOI -departmentNumber: 3766 -employeeType: Normal -homePhone: +1 818 727-6058 -initials: C. S. -mobile: +1 818 977-4724 -pager: +1 818 119-9841 -roomNumber: 9816 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dori Brissette,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dori Brissette -sn: Brissette -description: This is Dori Brissette's description -facsimileTelephoneNumber: +1 415 644-7508 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 792-7813 -title: Master Management Manager -userPassword: Password1 -uid: BrissetD -givenName: Dori -mail: BrissetD@2373108c8b97400aab01ae216d289e3e.bitwarden.com -carLicense: WD9XH7 -departmentNumber: 8575 -employeeType: Employee -homePhone: +1 415 475-4277 -initials: D. B. -mobile: +1 415 663-4671 -pager: +1 415 480-3882 -roomNumber: 8929 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Niki Bonney,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niki Bonney -sn: Bonney -description: This is Niki Bonney's description -facsimileTelephoneNumber: +1 415 589-9058 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 959-7593 -title: Master Human Resources Consultant -userPassword: Password1 -uid: BonneyN -givenName: Niki -mail: BonneyN@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com -carLicense: 781RP3 -departmentNumber: 2517 -employeeType: Employee -homePhone: +1 415 201-8301 -initials: N. B. -mobile: +1 415 248-8695 -pager: +1 415 306-7438 -roomNumber: 9045 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lyman Busuttil,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyman Busuttil -sn: Busuttil -description: This is Lyman Busuttil's description -facsimileTelephoneNumber: +1 804 441-9181 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 881-7892 -title: Supreme Payroll Manager -userPassword: Password1 -uid: BusuttiL -givenName: Lyman -mail: BusuttiL@0eb58aa3ce014174951ad2a21de0a67c.bitwarden.com -carLicense: Y1SHWH -departmentNumber: 7265 -employeeType: Normal -homePhone: +1 804 588-4382 -initials: L. B. -mobile: +1 804 181-7458 -pager: +1 804 618-5536 -roomNumber: 8859 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Loon Esselbach,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loon Esselbach -sn: Esselbach -description: This is Loon Esselbach's description -facsimileTelephoneNumber: +1 510 251-5978 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 178-4411 -title: Supreme Peons Admin -userPassword: Password1 -uid: EsselbaL -givenName: Loon -mail: EsselbaL@452b07d8b57c4e09984de2d02211dad8.bitwarden.com -carLicense: MOQLCE -departmentNumber: 7919 -employeeType: Employee -homePhone: +1 510 270-1353 -initials: L. E. -mobile: +1 510 836-6829 -pager: +1 510 436-4722 -roomNumber: 8866 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Eleni Hiers,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eleni Hiers -sn: Hiers -description: This is Eleni Hiers's description -facsimileTelephoneNumber: +1 213 774-5224 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 267-2729 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: HiersE -givenName: Eleni -mail: HiersE@75be32b1be62419e90c08307d5bdff60.bitwarden.com -carLicense: XR9XIN -departmentNumber: 6068 -employeeType: Employee -homePhone: +1 213 800-9871 -initials: E. H. -mobile: +1 213 585-2884 -pager: +1 213 431-1656 -roomNumber: 9352 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sal Soo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sal Soo -sn: Soo -description: This is Sal Soo's description -facsimileTelephoneNumber: +1 510 387-3148 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 907-9791 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: SooS -givenName: Sal -mail: SooS@d5e4a37826af47d086930b55ea76e123.bitwarden.com -carLicense: MSFXB7 -departmentNumber: 7610 -employeeType: Contract -homePhone: +1 510 163-8092 -initials: S. S. -mobile: +1 510 338-4636 -pager: +1 510 917-2291 -roomNumber: 9163 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tdr Porebski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tdr Porebski -sn: Porebski -description: This is Tdr Porebski's description -facsimileTelephoneNumber: +1 408 863-2361 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 980-2445 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: PorebskT -givenName: Tdr -mail: PorebskT@8959763ade854592b5aa640be7f6b9e1.bitwarden.com -carLicense: XOMXXY -departmentNumber: 9164 -employeeType: Contract -homePhone: +1 408 324-6091 -initials: T. P. -mobile: +1 408 138-4478 -pager: +1 408 230-2835 -roomNumber: 8572 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lilian Binda,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilian Binda -sn: Binda -description: This is Lilian Binda's description -facsimileTelephoneNumber: +1 408 742-9936 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 116-6885 -title: Associate Administrative Warrior -userPassword: Password1 -uid: BindaL -givenName: Lilian -mail: BindaL@5b2a207a5b574a8faa45790df76c253d.bitwarden.com -carLicense: 00UHRX -departmentNumber: 4222 -employeeType: Normal -homePhone: +1 408 919-9871 -initials: L. B. -mobile: +1 408 536-5675 -pager: +1 408 570-6568 -roomNumber: 8147 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fil Craggs,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fil Craggs -sn: Craggs -description: This is Fil Craggs's description -facsimileTelephoneNumber: +1 804 241-7265 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 481-3334 -title: Master Product Testing Manager -userPassword: Password1 -uid: CraggsF -givenName: Fil -mail: CraggsF@5e498601fec6496f923804926db532bf.bitwarden.com -carLicense: 2NYPKK -departmentNumber: 5300 -employeeType: Contract -homePhone: +1 804 841-7747 -initials: F. C. -mobile: +1 804 857-2297 -pager: +1 804 686-5789 -roomNumber: 8104 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fan Bednar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fan Bednar -sn: Bednar -description: This is Fan Bednar's description -facsimileTelephoneNumber: +1 415 416-8867 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 893-6740 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: BednarF -givenName: Fan -mail: BednarF@c87bc1fef8d745d786889b1fab00a75d.bitwarden.com -carLicense: 72Y935 -departmentNumber: 3486 -employeeType: Contract -homePhone: +1 415 356-2933 -initials: F. B. -mobile: +1 415 870-2895 -pager: +1 415 898-4724 -roomNumber: 8562 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kanya Koens,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanya Koens -sn: Koens -description: This is Kanya Koens's description -facsimileTelephoneNumber: +1 206 440-1944 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 439-9372 -title: Junior Peons Engineer -userPassword: Password1 -uid: KoensK -givenName: Kanya -mail: KoensK@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com -carLicense: I6TIH0 -departmentNumber: 5540 -employeeType: Employee -homePhone: +1 206 703-1977 -initials: K. K. -mobile: +1 206 795-9308 -pager: +1 206 593-6880 -roomNumber: 8910 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ankie Gonzalez -sn: Gonzalez -description: This is Ankie Gonzalez's description -facsimileTelephoneNumber: +1 415 186-8789 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 550-1239 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: GonzaleA -givenName: Ankie -mail: GonzaleA@98de157df44849a386267d7b22539a05.bitwarden.com -carLicense: DEEXW5 -departmentNumber: 4468 -employeeType: Contract -homePhone: +1 415 591-7997 -initials: A. G. -mobile: +1 415 909-5943 -pager: +1 415 964-1521 -roomNumber: 9427 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Salomi Enns,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salomi Enns -sn: Enns -description: This is Salomi Enns's description -facsimileTelephoneNumber: +1 804 306-5441 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 469-5447 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: EnnsS -givenName: Salomi -mail: EnnsS@abb4a2ffe4d34b86b74539eca6366630.bitwarden.com -carLicense: EG2FCS -departmentNumber: 7324 -employeeType: Normal -homePhone: +1 804 995-8371 -initials: S. E. -mobile: +1 804 696-3032 -pager: +1 804 623-4472 -roomNumber: 8330 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dido Lanthier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dido Lanthier -sn: Lanthier -description: This is Dido Lanthier's description -facsimileTelephoneNumber: +1 415 872-6133 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 168-5270 -title: Chief Janitorial Artist -userPassword: Password1 -uid: LanthieD -givenName: Dido -mail: LanthieD@29c4c2eff1254d0fa5ef75aff69c2367.bitwarden.com -carLicense: XGQ4RW -departmentNumber: 9556 -employeeType: Employee -homePhone: +1 415 382-1472 -initials: D. L. -mobile: +1 415 552-6690 -pager: +1 415 824-2047 -roomNumber: 9404 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jimmy Ordas -sn: Ordas -description: This is Jimmy Ordas's description -facsimileTelephoneNumber: +1 804 925-6062 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 571-7510 -title: Associate Janitorial Figurehead -userPassword: Password1 -uid: OrdasJ -givenName: Jimmy -mail: OrdasJ@05a2fd0e10bf4289846c6e93c41488ca.bitwarden.com -carLicense: FFEIH8 -departmentNumber: 6601 -employeeType: Contract -homePhone: +1 804 346-2580 -initials: J. O. -mobile: +1 804 483-4344 -pager: +1 804 469-9416 -roomNumber: 8851 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Corny Uyar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corny Uyar -sn: Uyar -description: This is Corny Uyar's description -facsimileTelephoneNumber: +1 206 798-5996 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 378-2341 -title: Chief Product Testing Figurehead -userPassword: Password1 -uid: UyarC -givenName: Corny -mail: UyarC@1c28c1703df64c479dc58745ec8ce098.bitwarden.com -carLicense: SJ9C8C -departmentNumber: 8853 -employeeType: Normal -homePhone: +1 206 870-3057 -initials: C. U. -mobile: +1 206 609-1484 -pager: +1 206 875-4737 -roomNumber: 8356 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pinder Barclay,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pinder Barclay -sn: Barclay -description: This is Pinder Barclay's description -facsimileTelephoneNumber: +1 415 640-3664 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 841-9838 -title: Master Janitorial Warrior -userPassword: Password1 -uid: BarclayP -givenName: Pinder -mail: BarclayP@1a1d47519dd04c80a33af98c584fc1ad.bitwarden.com -carLicense: 88V1SB -departmentNumber: 4123 -employeeType: Normal -homePhone: +1 415 648-6589 -initials: P. B. -mobile: +1 415 329-8866 -pager: +1 415 339-6140 -roomNumber: 8901 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Micki Munns,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micki Munns -sn: Munns -description: This is Micki Munns's description -facsimileTelephoneNumber: +1 408 381-7606 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 934-9141 -title: Chief Administrative Visionary -userPassword: Password1 -uid: MunnsM -givenName: Micki -mail: MunnsM@b42b6a99e6224e4c89291ebf380e3cbd.bitwarden.com -carLicense: O349LG -departmentNumber: 5583 -employeeType: Employee -homePhone: +1 408 819-4873 -initials: M. M. -mobile: +1 408 232-6371 -pager: +1 408 259-1118 -roomNumber: 8495 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Milly Raines,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milly Raines -sn: Raines -description: This is Milly Raines's description -facsimileTelephoneNumber: +1 818 428-4995 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 818 899-9751 -title: Junior Management Pinhead -userPassword: Password1 -uid: RainesM -givenName: Milly -mail: RainesM@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com -carLicense: DJIHJR -departmentNumber: 9045 -employeeType: Employee -homePhone: +1 818 112-5016 -initials: M. R. -mobile: +1 818 925-5298 -pager: +1 818 780-7845 -roomNumber: 9501 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pas Waines,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pas Waines -sn: Waines -description: This is Pas Waines's description -facsimileTelephoneNumber: +1 510 724-6141 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 510 141-3727 -title: Junior Administrative Architect -userPassword: Password1 -uid: WainesP -givenName: Pas -mail: WainesP@42f6c709ced54560a282482057eafc53.bitwarden.com -carLicense: I25J5K -departmentNumber: 6381 -employeeType: Normal -homePhone: +1 510 232-7364 -initials: P. W. -mobile: +1 510 107-5873 -pager: +1 510 928-4192 -roomNumber: 9971 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maureen Hagewood -sn: Hagewood -description: This is Maureen Hagewood's description -facsimileTelephoneNumber: +1 408 728-2074 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 769-9716 -title: Junior Product Testing Artist -userPassword: Password1 -uid: HagewooM -givenName: Maureen -mail: HagewooM@52253f5384a34a7d887f92c29a569c37.bitwarden.com -carLicense: VKQPIL -departmentNumber: 2768 -employeeType: Normal -homePhone: +1 408 794-1859 -initials: M. H. -mobile: +1 408 846-5277 -pager: +1 408 943-2556 -roomNumber: 9751 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vilhelmina Monet -sn: Monet -description: This is Vilhelmina Monet's description -facsimileTelephoneNumber: +1 213 797-6437 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 715-1877 -title: Chief Administrative Evangelist -userPassword: Password1 -uid: MonetV -givenName: Vilhelmina -mail: MonetV@06eebdce40db4f3caf1a195e21aa43e4.bitwarden.com -carLicense: M3ES01 -departmentNumber: 1512 -employeeType: Contract -homePhone: +1 213 915-3865 -initials: V. M. -mobile: +1 213 914-2644 -pager: +1 213 677-2481 -roomNumber: 9900 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LeeAnne Kinahan -sn: Kinahan -description: This is LeeAnne Kinahan's description -facsimileTelephoneNumber: +1 804 331-2117 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 890-3740 -title: Chief Payroll Assistant -userPassword: Password1 -uid: KinahanL -givenName: LeeAnne -mail: KinahanL@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com -carLicense: U14DH4 -departmentNumber: 3314 -employeeType: Normal -homePhone: +1 804 469-3258 -initials: L. K. -mobile: +1 804 683-7878 -pager: +1 804 179-9240 -roomNumber: 9020 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pamelina Chohan -sn: Chohan -description: This is Pamelina Chohan's description -facsimileTelephoneNumber: +1 804 402-2295 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 211-1493 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: ChohanP -givenName: Pamelina -mail: ChohanP@edfe7405a5b34e7bb39744d59a06067d.bitwarden.com -carLicense: YOXMC2 -departmentNumber: 3780 -employeeType: Contract -homePhone: +1 804 636-6779 -initials: P. C. -mobile: +1 804 364-6945 -pager: +1 804 164-9976 -roomNumber: 8471 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kala Berning,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kala Berning -sn: Berning -description: This is Kala Berning's description -facsimileTelephoneNumber: +1 818 644-2369 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 937-7793 -title: Chief Peons Stooge -userPassword: Password1 -uid: BerningK -givenName: Kala -mail: BerningK@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com -carLicense: KOD3WT -departmentNumber: 1157 -employeeType: Contract -homePhone: +1 818 454-1244 -initials: K. B. -mobile: +1 818 419-9466 -pager: +1 818 350-2931 -roomNumber: 8481 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherye INFOMANAGEMENT -sn: INFOMANAGEMENT -description: This is Sherye INFOMANAGEMENT's description -facsimileTelephoneNumber: +1 415 747-3310 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 560-2484 -title: Associate Management Visionary -userPassword: Password1 -uid: INFOMANS -givenName: Sherye -mail: INFOMANS@eb1784d5a4ea473392ddeedf92456d2b.bitwarden.com -carLicense: HOLDCB -departmentNumber: 2442 -employeeType: Contract -homePhone: +1 415 426-9801 -initials: S. I. -mobile: +1 415 625-4543 -pager: +1 415 936-6560 -roomNumber: 8028 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Greg Bach,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greg Bach -sn: Bach -description: This is Greg Bach's description -facsimileTelephoneNumber: +1 818 940-9804 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 343-8479 -title: Chief Product Development Architect -userPassword: Password1 -uid: BachG -givenName: Greg -mail: BachG@2469394f129543cb9155b397e142213f.bitwarden.com -carLicense: BI9M3T -departmentNumber: 3834 -employeeType: Employee -homePhone: +1 818 483-6358 -initials: G. B. -mobile: +1 818 199-4594 -pager: +1 818 439-9257 -roomNumber: 8313 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clay Rasmussen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clay Rasmussen -sn: Rasmussen -description: This is Clay Rasmussen's description -facsimileTelephoneNumber: +1 213 580-1214 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 312-7998 -title: Associate Management Dictator -userPassword: Password1 -uid: RasmussC -givenName: Clay -mail: RasmussC@71e3553ec3204c71bbaf2a269c9d85d6.bitwarden.com -carLicense: 0C3B64 -departmentNumber: 5794 -employeeType: Employee -homePhone: +1 213 834-9201 -initials: C. R. -mobile: +1 213 619-2499 -pager: +1 213 730-6059 -roomNumber: 8048 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kira Rummans,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kira Rummans -sn: Rummans -description: This is Kira Rummans's description -facsimileTelephoneNumber: +1 415 676-1130 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 415 115-3217 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: RummansK -givenName: Kira -mail: RummansK@8c2b7f547cbf444783e38759415bbe6b.bitwarden.com -carLicense: D9CAEN -departmentNumber: 3812 -employeeType: Normal -homePhone: +1 415 776-1153 -initials: K. R. -mobile: +1 415 573-9696 -pager: +1 415 398-5517 -roomNumber: 8153 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Graciela Birtch,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Graciela Birtch -sn: Birtch -description: This is Graciela Birtch's description -facsimileTelephoneNumber: +1 206 104-3590 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 125-7497 -title: Master Human Resources Grunt -userPassword: Password1 -uid: BirtchG -givenName: Graciela -mail: BirtchG@28fd72e4e1764c5c81212e44cd7113d3.bitwarden.com -carLicense: TC0WLD -departmentNumber: 1378 -employeeType: Normal -homePhone: +1 206 691-8768 -initials: G. B. -mobile: +1 206 953-2409 -pager: +1 206 738-7547 -roomNumber: 8740 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Audie Pintwala,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Audie Pintwala -sn: Pintwala -description: This is Audie Pintwala's description -facsimileTelephoneNumber: +1 206 679-6740 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 206 750-1968 -title: Associate Management Consultant -userPassword: Password1 -uid: PintwalA -givenName: Audie -mail: PintwalA@cad34ac8884647e3aa084b319084cb10.bitwarden.com -carLicense: EK5BAK -departmentNumber: 3136 -employeeType: Normal -homePhone: +1 206 349-2989 -initials: A. P. -mobile: +1 206 289-2343 -pager: +1 206 947-7632 -roomNumber: 8871 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardath Pokrywa -sn: Pokrywa -description: This is Ardath Pokrywa's description -facsimileTelephoneNumber: +1 510 873-5685 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 623-2582 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: PokrywaA -givenName: Ardath -mail: PokrywaA@5eb9182fed7b491098a3a7edcd1734b0.bitwarden.com -carLicense: IFKSNQ -departmentNumber: 5951 -employeeType: Normal -homePhone: +1 510 735-5932 -initials: A. P. -mobile: +1 510 176-1118 -pager: +1 510 484-5002 -roomNumber: 9436 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gabbie Chiverton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabbie Chiverton -sn: Chiverton -description: This is Gabbie Chiverton's description -facsimileTelephoneNumber: +1 818 200-7702 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 129-3504 -title: Chief Peons Grunt -userPassword: Password1 -uid: ChivertG -givenName: Gabbie -mail: ChivertG@341957991cd048f28879d34846561132.bitwarden.com -carLicense: VIYJUL -departmentNumber: 7863 -employeeType: Employee -homePhone: +1 818 437-2240 -initials: G. C. -mobile: +1 818 558-3351 -pager: +1 818 887-1907 -roomNumber: 9519 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Deann Sheridan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deann Sheridan -sn: Sheridan -description: This is Deann Sheridan's description -facsimileTelephoneNumber: +1 415 798-9545 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 851-6058 -title: Supreme Peons Czar -userPassword: Password1 -uid: SheridaD -givenName: Deann -mail: SheridaD@0fc5b098eca54d018d5f544f351b55a0.bitwarden.com -carLicense: 5TLCIG -departmentNumber: 6372 -employeeType: Normal -homePhone: +1 415 908-1942 -initials: D. S. -mobile: +1 415 613-5485 -pager: +1 415 798-9492 -roomNumber: 8281 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Orie Lahaie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orie Lahaie -sn: Lahaie -description: This is Orie Lahaie's description -facsimileTelephoneNumber: +1 415 715-4037 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 197-7239 -title: Associate Human Resources Warrior -userPassword: Password1 -uid: LahaieO -givenName: Orie -mail: LahaieO@20c2d999fe734387b26090f6d88bafe4.bitwarden.com -carLicense: EKBGGR -departmentNumber: 1578 -employeeType: Contract -homePhone: +1 415 697-9088 -initials: O. L. -mobile: +1 415 834-1758 -pager: +1 415 701-8591 -roomNumber: 9134 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hodge Schroff,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hodge Schroff -sn: Schroff -description: This is Hodge Schroff's description -facsimileTelephoneNumber: +1 510 740-8140 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 738-9934 -title: Chief Janitorial Consultant -userPassword: Password1 -uid: SchroffH -givenName: Hodge -mail: SchroffH@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com -carLicense: 13PI1A -departmentNumber: 6441 -employeeType: Employee -homePhone: +1 510 303-8843 -initials: H. S. -mobile: +1 510 902-4929 -pager: +1 510 888-5955 -roomNumber: 8811 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Purvee Tajbakhsh -sn: Tajbakhsh -description: This is Purvee Tajbakhsh's description -facsimileTelephoneNumber: +1 408 932-7487 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 557-7982 -title: Junior Product Testing Mascot -userPassword: Password1 -uid: TajbakhP -givenName: Purvee -mail: TajbakhP@f0190c6ffb8140a8888371e20ba308b1.bitwarden.com -carLicense: VNWDJL -departmentNumber: 3337 -employeeType: Normal -homePhone: +1 408 322-7115 -initials: P. T. -mobile: +1 408 181-7801 -pager: +1 408 947-9542 -roomNumber: 8918 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gertrude Rains,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertrude Rains -sn: Rains -description: This is Gertrude Rains's description -facsimileTelephoneNumber: +1 206 277-7288 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 731-3583 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: RainsG -givenName: Gertrude -mail: RainsG@dacf8be8631a4913bc41ce43ad9faa82.bitwarden.com -carLicense: N7YQVO -departmentNumber: 9809 -employeeType: Contract -homePhone: +1 206 858-2025 -initials: G. R. -mobile: +1 206 746-9052 -pager: +1 206 726-2747 -roomNumber: 8730 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=ChuChay Averett,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChuChay Averett -sn: Averett -description: This is ChuChay Averett's description -facsimileTelephoneNumber: +1 818 571-4250 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 368-8084 -title: Master Janitorial Technician -userPassword: Password1 -uid: AverettC -givenName: ChuChay -mail: AverettC@8c75d8449fe241b583cdc3782aba550b.bitwarden.com -carLicense: Y43WI0 -departmentNumber: 2920 -employeeType: Normal -homePhone: +1 818 786-3556 -initials: C. A. -mobile: +1 818 192-7382 -pager: +1 818 596-4432 -roomNumber: 9174 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Amando Fernandez,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amando Fernandez -sn: Fernandez -description: This is Amando Fernandez's description -facsimileTelephoneNumber: +1 415 790-2893 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 113-7184 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: FernandA -givenName: Amando -mail: FernandA@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com -carLicense: 7Q56KO -departmentNumber: 5561 -employeeType: Employee -homePhone: +1 415 960-6373 -initials: A. F. -mobile: +1 415 294-6992 -pager: +1 415 885-7844 -roomNumber: 9270 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carolann McCorkle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolann McCorkle -sn: McCorkle -description: This is Carolann McCorkle's description -facsimileTelephoneNumber: +1 206 288-9301 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 976-4585 -title: Supreme Product Development Writer -userPassword: Password1 -uid: McCorklC -givenName: Carolann -mail: McCorklC@0aab2eb5b2a945ccbb114c330fb9e2b8.bitwarden.com -carLicense: PLKDO3 -departmentNumber: 4511 -employeeType: Employee -homePhone: +1 206 410-9773 -initials: C. M. -mobile: +1 206 962-8183 -pager: +1 206 487-9432 -roomNumber: 9087 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kalvin Jamshidi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalvin Jamshidi -sn: Jamshidi -description: This is Kalvin Jamshidi's description -facsimileTelephoneNumber: +1 213 308-3942 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 335-5874 -title: Associate Management Pinhead -userPassword: Password1 -uid: JamshidK -givenName: Kalvin -mail: JamshidK@121a745798f148a58c20965d5aa96755.bitwarden.com -carLicense: WA6MEK -departmentNumber: 9688 -employeeType: Employee -homePhone: +1 213 958-9233 -initials: K. J. -mobile: +1 213 172-3563 -pager: +1 213 370-6539 -roomNumber: 8528 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Candis Gentzler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candis Gentzler -sn: Gentzler -description: This is Candis Gentzler's description -facsimileTelephoneNumber: +1 510 188-2248 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 693-3079 -title: Junior Management Engineer -userPassword: Password1 -uid: GentzleC -givenName: Candis -mail: GentzleC@da1b5788f067415eb6baf89891f2b951.bitwarden.com -carLicense: 5OO5QA -departmentNumber: 1936 -employeeType: Contract -homePhone: +1 510 974-4974 -initials: C. G. -mobile: +1 510 911-2417 -pager: +1 510 394-5482 -roomNumber: 8915 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bridgette Zawadka -sn: Zawadka -description: This is Bridgette Zawadka's description -facsimileTelephoneNumber: +1 510 996-1041 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 671-7669 -title: Master Product Testing Architect -userPassword: Password1 -uid: ZawadkaB -givenName: Bridgette -mail: ZawadkaB@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com -carLicense: KPRGNA -departmentNumber: 7094 -employeeType: Contract -homePhone: +1 510 518-5262 -initials: B. Z. -mobile: +1 510 137-5712 -pager: +1 510 379-2360 -roomNumber: 9074 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gil Strauss,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gil Strauss -sn: Strauss -description: This is Gil Strauss's description -facsimileTelephoneNumber: +1 804 805-9403 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 428-4185 -title: Master Management Punk -userPassword: Password1 -uid: StraussG -givenName: Gil -mail: StraussG@c6dd31aa272c4fe0ab00e6867d0f3706.bitwarden.com -carLicense: CB0DVV -departmentNumber: 4007 -employeeType: Contract -homePhone: +1 804 601-7276 -initials: G. S. -mobile: +1 804 908-9317 -pager: +1 804 699-6719 -roomNumber: 8051 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tommie Rasmussen -sn: Rasmussen -description: This is Tommie Rasmussen's description -facsimileTelephoneNumber: +1 213 884-9026 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 102-6551 -title: Supreme Administrative Czar -userPassword: Password1 -uid: RasmussT -givenName: Tommie -mail: RasmussT@a8d20277e9b84e2cbd2184d54cb3d399.bitwarden.com -carLicense: 9QEHTC -departmentNumber: 9173 -employeeType: Contract -homePhone: +1 213 285-3637 -initials: T. R. -mobile: +1 213 457-9650 -pager: +1 213 403-9961 -roomNumber: 9228 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Prab Crafton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prab Crafton -sn: Crafton -description: This is Prab Crafton's description -facsimileTelephoneNumber: +1 818 427-2850 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 818 640-5132 -title: Master Peons Dictator -userPassword: Password1 -uid: CraftonP -givenName: Prab -mail: CraftonP@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com -carLicense: WMICSJ -departmentNumber: 9067 -employeeType: Contract -homePhone: +1 818 931-3750 -initials: P. C. -mobile: +1 818 123-3098 -pager: +1 818 966-4787 -roomNumber: 9041 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Aurora Francoeur,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurora Francoeur -sn: Francoeur -description: This is Aurora Francoeur's description -facsimileTelephoneNumber: +1 206 766-1737 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 903-9173 -title: Associate Peons Madonna -userPassword: Password1 -uid: FrancoeA -givenName: Aurora -mail: FrancoeA@0d89387630504e3d959bb5ff8f1b89ae.bitwarden.com -carLicense: LD39BW -departmentNumber: 8894 -employeeType: Contract -homePhone: +1 206 181-6681 -initials: A. F. -mobile: +1 206 119-2024 -pager: +1 206 120-3014 -roomNumber: 8100 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Francois Willcox,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francois Willcox -sn: Willcox -description: This is Francois Willcox's description -facsimileTelephoneNumber: +1 415 814-9416 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 711-9016 -title: Master Administrative Developer -userPassword: Password1 -uid: WillcoxF -givenName: Francois -mail: WillcoxF@964166b8cdd041c68aaae270afb90271.bitwarden.com -carLicense: JLGMIN -departmentNumber: 8589 -employeeType: Contract -homePhone: +1 415 146-3146 -initials: F. W. -mobile: +1 415 939-9195 -pager: +1 415 855-5317 -roomNumber: 8470 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ethan Engelberg,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ethan Engelberg -sn: Engelberg -description: This is Ethan Engelberg's description -facsimileTelephoneNumber: +1 206 632-8121 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 206 854-7225 -title: Master Administrative Visionary -userPassword: Password1 -uid: EngelbeE -givenName: Ethan -mail: EngelbeE@9eb94e6e4d9a4f12b80d8878b163f5eb.bitwarden.com -carLicense: HJB0FF -departmentNumber: 2013 -employeeType: Contract -homePhone: +1 206 405-8156 -initials: E. E. -mobile: +1 206 691-4607 -pager: +1 206 799-1289 -roomNumber: 8957 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Beryl Security,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beryl Security -sn: Security -description: This is Beryl Security's description -facsimileTelephoneNumber: +1 213 627-5258 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 396-4621 -title: Master Peons Madonna -userPassword: Password1 -uid: SecuritB -givenName: Beryl -mail: SecuritB@3235591d985b4d2894779cd55ac400f1.bitwarden.com -carLicense: 8BJWUG -departmentNumber: 6243 -employeeType: Contract -homePhone: +1 213 798-5856 -initials: B. S. -mobile: +1 213 229-2220 -pager: +1 213 622-3964 -roomNumber: 9550 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jessica Lovelace,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessica Lovelace -sn: Lovelace -description: This is Jessica Lovelace's description -facsimileTelephoneNumber: +1 206 963-3546 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 469-4455 -title: Supreme Management Czar -userPassword: Password1 -uid: LovelacJ -givenName: Jessica -mail: LovelacJ@013fb02061ee471c942b593b9cccbedb.bitwarden.com -carLicense: L1LPUR -departmentNumber: 2442 -employeeType: Contract -homePhone: +1 206 883-2575 -initials: J. L. -mobile: +1 206 510-8956 -pager: +1 206 172-2919 -roomNumber: 8810 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karalynn Nakatsu -sn: Nakatsu -description: This is Karalynn Nakatsu's description -facsimileTelephoneNumber: +1 510 919-7941 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 501-5011 -title: Associate Administrative Director -userPassword: Password1 -uid: NakatsuK -givenName: Karalynn -mail: NakatsuK@61d349f36f74474aadc4b14dd96074dd.bitwarden.com -carLicense: 7B0DMD -departmentNumber: 1472 -employeeType: Contract -homePhone: +1 510 324-8603 -initials: K. N. -mobile: +1 510 634-6373 -pager: +1 510 769-2966 -roomNumber: 9309 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hollyanne Oplinger -sn: Oplinger -description: This is Hollyanne Oplinger's description -facsimileTelephoneNumber: +1 408 276-1515 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 702-9353 -title: Junior Peons Director -userPassword: Password1 -uid: OplingeH -givenName: Hollyanne -mail: OplingeH@7045dff84c244f86aba7fc41f1770a53.bitwarden.com -carLicense: OTOKDC -departmentNumber: 1249 -employeeType: Normal -homePhone: +1 408 202-1055 -initials: H. O. -mobile: +1 408 596-6549 -pager: +1 408 119-1737 -roomNumber: 8908 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fqa Desilets,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fqa Desilets -sn: Desilets -description: This is Fqa Desilets's description -facsimileTelephoneNumber: +1 213 228-6035 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 966-3469 -title: Supreme Management Admin -userPassword: Password1 -uid: DesiletF -givenName: Fqa -mail: DesiletF@8c05a39d9e7b44c5a7e0b257f5169f94.bitwarden.com -carLicense: POIITE -departmentNumber: 7831 -employeeType: Normal -homePhone: +1 213 952-4168 -initials: F. D. -mobile: +1 213 286-1675 -pager: +1 213 711-9477 -roomNumber: 8664 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanjoy Goyer -sn: Goyer -description: This is Sanjoy Goyer's description -facsimileTelephoneNumber: +1 408 931-4444 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 408 198-6681 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: GoyerS -givenName: Sanjoy -mail: GoyerS@5c5e024a9bda492c8e4259ce1ef75e57.bitwarden.com -carLicense: LBEEV9 -departmentNumber: 7231 -employeeType: Employee -homePhone: +1 408 553-2422 -initials: S. G. -mobile: +1 408 459-6098 -pager: +1 408 675-4377 -roomNumber: 8574 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emlynn Louie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emlynn Louie -sn: Louie -description: This is Emlynn Louie's description -facsimileTelephoneNumber: +1 415 526-8061 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 548-4181 -title: Associate Management Writer -userPassword: Password1 -uid: LouieE -givenName: Emlynn -mail: LouieE@cfa9cc9c255049a290ed0760c3f25871.bitwarden.com -carLicense: EI4VGI -departmentNumber: 7445 -employeeType: Employee -homePhone: +1 415 399-5415 -initials: E. L. -mobile: +1 415 771-3216 -pager: +1 415 344-5463 -roomNumber: 9743 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Russel Gillies,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Russel Gillies -sn: Gillies -description: This is Russel Gillies's description -facsimileTelephoneNumber: +1 818 792-5472 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 785-3217 -title: Junior Management Architect -userPassword: Password1 -uid: GilliesR -givenName: Russel -mail: GilliesR@0d90cad61d78488a96f7a4204f44a269.bitwarden.com -carLicense: UQU2DJ -departmentNumber: 5499 -employeeType: Normal -homePhone: +1 818 721-4593 -initials: R. G. -mobile: +1 818 628-8712 -pager: +1 818 451-4607 -roomNumber: 9623 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dionne Parniani,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dionne Parniani -sn: Parniani -description: This is Dionne Parniani's description -facsimileTelephoneNumber: +1 415 226-1771 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 415 416-2911 -title: Master Peons Pinhead -userPassword: Password1 -uid: ParnianD -givenName: Dionne -mail: ParnianD@ce6ea378c27b45efb4f43990327ef994.bitwarden.com -carLicense: 4T5ATJ -departmentNumber: 4763 -employeeType: Employee -homePhone: +1 415 859-6744 -initials: D. P. -mobile: +1 415 123-9777 -pager: +1 415 993-3377 -roomNumber: 9874 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Birmingham Shippen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Birmingham Shippen -sn: Shippen -description: This is Birmingham Shippen's description -facsimileTelephoneNumber: +1 206 831-4466 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 763-1843 -title: Junior Administrative Janitor -userPassword: Password1 -uid: ShippenB -givenName: Birmingham -mail: ShippenB@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com -carLicense: 2B0VXG -departmentNumber: 4963 -employeeType: Contract -homePhone: +1 206 297-2749 -initials: B. S. -mobile: +1 206 973-3763 -pager: +1 206 426-7650 -roomNumber: 8605 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Trudy Durling,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trudy Durling -sn: Durling -description: This is Trudy Durling's description -facsimileTelephoneNumber: +1 818 507-2318 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 818 682-9870 -title: Associate Product Testing Grunt -userPassword: Password1 -uid: DurlingT -givenName: Trudy -mail: DurlingT@a04d0222f0c24ad6848955600bad7ace.bitwarden.com -carLicense: IHW2YT -departmentNumber: 4484 -employeeType: Employee -homePhone: +1 818 269-4627 -initials: T. D. -mobile: +1 818 818-4575 -pager: +1 818 611-7591 -roomNumber: 8457 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirsteni Carsten -sn: Carsten -description: This is Kirsteni Carsten's description -facsimileTelephoneNumber: +1 408 431-3524 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 408 370-4072 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: CarstenK -givenName: Kirsteni -mail: CarstenK@f48984d7e7db42f4891e864fa2c4158a.bitwarden.com -carLicense: Q3K0DJ -departmentNumber: 8901 -employeeType: Contract -homePhone: +1 408 937-8116 -initials: K. C. -mobile: +1 408 652-2128 -pager: +1 408 951-4448 -roomNumber: 9330 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ermengarde Grafton -sn: Grafton -description: This is Ermengarde Grafton's description -facsimileTelephoneNumber: +1 510 562-4057 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 821-4031 -title: Chief Product Development Developer -userPassword: Password1 -uid: GraftonE -givenName: Ermengarde -mail: GraftonE@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com -carLicense: X7O6NQ -departmentNumber: 2507 -employeeType: Normal -homePhone: +1 510 276-8360 -initials: E. G. -mobile: +1 510 890-2806 -pager: +1 510 954-5348 -roomNumber: 9022 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Selena Mickens,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selena Mickens -sn: Mickens -description: This is Selena Mickens's description -facsimileTelephoneNumber: +1 415 126-3096 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 586-4495 -title: Junior Management Sales Rep -userPassword: Password1 -uid: MickensS -givenName: Selena -mail: MickensS@70748fe689e2445ebbe07527f7179bb2.bitwarden.com -carLicense: E92FGM -departmentNumber: 6607 -employeeType: Contract -homePhone: +1 415 322-4540 -initials: S. M. -mobile: +1 415 788-2910 -pager: +1 415 178-6063 -roomNumber: 8093 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Laureen Paczek,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laureen Paczek -sn: Paczek -description: This is Laureen Paczek's description -facsimileTelephoneNumber: +1 408 689-4231 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 833-9971 -title: Supreme Management Consultant -userPassword: Password1 -uid: PaczekL -givenName: Laureen -mail: PaczekL@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com -carLicense: NMG85M -departmentNumber: 5604 -employeeType: Employee -homePhone: +1 408 617-6037 -initials: L. P. -mobile: +1 408 636-8230 -pager: +1 408 260-9542 -roomNumber: 9522 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gurjinder Gosset,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gurjinder Gosset -sn: Gosset -description: This is Gurjinder Gosset's description -facsimileTelephoneNumber: +1 213 538-4617 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 989-9262 -title: Supreme Peons Artist -userPassword: Password1 -uid: GossetG -givenName: Gurjinder -mail: GossetG@113514e6e7e54b9abe6e86d17d96882b.bitwarden.com -carLicense: GV39D8 -departmentNumber: 8981 -employeeType: Employee -homePhone: +1 213 669-9290 -initials: G. G. -mobile: +1 213 242-9553 -pager: +1 213 454-9959 -roomNumber: 9980 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndsey Acree -sn: Acree -description: This is Lyndsey Acree's description -facsimileTelephoneNumber: +1 415 900-3180 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 344-4720 -title: Chief Product Testing Consultant -userPassword: Password1 -uid: AcreeL -givenName: Lyndsey -mail: AcreeL@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com -carLicense: DBAYCW -departmentNumber: 4539 -employeeType: Employee -homePhone: +1 415 650-8478 -initials: L. A. -mobile: +1 415 659-6426 -pager: +1 415 264-5544 -roomNumber: 9185 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dede McKeage,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dede McKeage -sn: McKeage -description: This is Dede McKeage's description -facsimileTelephoneNumber: +1 415 946-1582 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 646-3770 -title: Associate Janitorial Warrior -userPassword: Password1 -uid: McKeageD -givenName: Dede -mail: McKeageD@96d9bfed88fc4c2fb6c7e654ef7ed3a4.bitwarden.com -carLicense: JXE2AY -departmentNumber: 7122 -employeeType: Employee -homePhone: +1 415 703-6641 -initials: D. M. -mobile: +1 415 478-2388 -pager: +1 415 901-3000 -roomNumber: 9024 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shanda Scroger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shanda Scroger -sn: Scroger -description: This is Shanda Scroger's description -facsimileTelephoneNumber: +1 415 768-9385 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 591-3166 -title: Chief Payroll Technician -userPassword: Password1 -uid: ScrogerS -givenName: Shanda -mail: ScrogerS@973aea2b22d848eb9cb4bf9534e4dcdb.bitwarden.com -carLicense: N0X7D4 -departmentNumber: 9663 -employeeType: Employee -homePhone: +1 415 532-8706 -initials: S. S. -mobile: +1 415 369-3195 -pager: +1 415 799-5887 -roomNumber: 8497 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ophelia McHale,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ophelia McHale -sn: McHale -description: This is Ophelia McHale's description -facsimileTelephoneNumber: +1 818 930-2510 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 818 150-4059 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: McHaleO -givenName: Ophelia -mail: McHaleO@cdc31465418c4033ab89394a6307e530.bitwarden.com -carLicense: 47WJB6 -departmentNumber: 6795 -employeeType: Contract -homePhone: +1 818 327-9503 -initials: O. M. -mobile: +1 818 914-8065 -pager: +1 818 399-9413 -roomNumber: 9851 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ajit Kiens,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ajit Kiens -sn: Kiens -description: This is Ajit Kiens's description -facsimileTelephoneNumber: +1 510 760-1433 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 510 342-7188 -title: Master Administrative Madonna -userPassword: Password1 -uid: KiensA -givenName: Ajit -mail: KiensA@a8523f0ff874441ba48222b981c29c83.bitwarden.com -carLicense: TQDGCI -departmentNumber: 5582 -employeeType: Employee -homePhone: +1 510 701-9064 -initials: A. K. -mobile: +1 510 872-8176 -pager: +1 510 464-4636 -roomNumber: 9705 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nicole Zhao,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicole Zhao -sn: Zhao -description: This is Nicole Zhao's description -facsimileTelephoneNumber: +1 510 548-3105 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 510 595-5411 -title: Junior Human Resources Evangelist -userPassword: Password1 -uid: ZhaoN -givenName: Nicole -mail: ZhaoN@32e3fa5da06a4fd3803417733702b064.bitwarden.com -carLicense: GPBPTC -departmentNumber: 7257 -employeeType: Employee -homePhone: +1 510 819-9921 -initials: N. Z. -mobile: +1 510 365-1758 -pager: +1 510 305-6501 -roomNumber: 8531 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Saloma Alkire,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saloma Alkire -sn: Alkire -description: This is Saloma Alkire's description -facsimileTelephoneNumber: +1 818 529-3289 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 818 179-4752 -title: Associate Peons Writer -userPassword: Password1 -uid: AlkireS -givenName: Saloma -mail: AlkireS@ef9dfa73b56a46a59a0d8721e608cbdf.bitwarden.com -carLicense: XXLJSP -departmentNumber: 6886 -employeeType: Normal -homePhone: +1 818 834-3493 -initials: S. A. -mobile: +1 818 986-7024 -pager: +1 818 433-6564 -roomNumber: 8050 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Khosro Essery,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khosro Essery -sn: Essery -description: This is Khosro Essery's description -facsimileTelephoneNumber: +1 818 329-3655 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 798-9332 -title: Master Product Testing President -userPassword: Password1 -uid: EsseryK -givenName: Khosro -mail: EsseryK@bbe574aa78294bfe850c65ae7f84a624.bitwarden.com -carLicense: NTLGMO -departmentNumber: 1238 -employeeType: Employee -homePhone: +1 818 667-4079 -initials: K. E. -mobile: +1 818 100-6584 -pager: +1 818 845-3864 -roomNumber: 8294 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cubicle Subissati -sn: Subissati -description: This is Cubicle Subissati's description -facsimileTelephoneNumber: +1 804 439-6911 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 815-5402 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: SubissaC -givenName: Cubicle -mail: SubissaC@d7c42a5466a44da1a41df54a07b84c5f.bitwarden.com -carLicense: 3VAG5X -departmentNumber: 8645 -employeeType: Contract -homePhone: +1 804 573-3033 -initials: C. S. -mobile: +1 804 733-5311 -pager: +1 804 697-8186 -roomNumber: 9973 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Veronike Dyck,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veronike Dyck -sn: Dyck -description: This is Veronike Dyck's description -facsimileTelephoneNumber: +1 818 347-9726 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 740-1487 -title: Master Human Resources Consultant -userPassword: Password1 -uid: DyckV -givenName: Veronike -mail: DyckV@c29f91644d164b77b1b413826a23bf22.bitwarden.com -carLicense: LRAHG9 -departmentNumber: 8702 -employeeType: Contract -homePhone: +1 818 589-2527 -initials: V. D. -mobile: +1 818 733-7273 -pager: +1 818 993-1963 -roomNumber: 9256 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silvestro Sheaffer -sn: Sheaffer -description: This is Silvestro Sheaffer's description -facsimileTelephoneNumber: +1 818 572-5276 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 818 330-5265 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: SheaffeS -givenName: Silvestro -mail: SheaffeS@e242cd7509b945bca8984d07e1fb1255.bitwarden.com -carLicense: ABDQIS -departmentNumber: 4418 -employeeType: Employee -homePhone: +1 818 808-8053 -initials: S. S. -mobile: +1 818 709-9202 -pager: +1 818 414-6417 -roomNumber: 9600 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mehmet Kreiger -sn: Kreiger -description: This is Mehmet Kreiger's description -facsimileTelephoneNumber: +1 206 446-3684 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 380-8116 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: KreigerM -givenName: Mehmet -mail: KreigerM@bfc77f42d99045c285c6a308b0bd18e3.bitwarden.com -carLicense: 12SRI9 -departmentNumber: 8787 -employeeType: Normal -homePhone: +1 206 186-8418 -initials: M. K. -mobile: +1 206 452-4939 -pager: +1 206 602-8404 -roomNumber: 9959 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Franc Revelle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franc Revelle -sn: Revelle -description: This is Franc Revelle's description -facsimileTelephoneNumber: +1 213 558-1376 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 213 665-4467 -title: Associate Human Resources Figurehead -userPassword: Password1 -uid: RevelleF -givenName: Franc -mail: RevelleF@9969719ee85448e7af69c94963a94618.bitwarden.com -carLicense: 6KBVMD -departmentNumber: 5684 -employeeType: Normal -homePhone: +1 213 741-7251 -initials: F. R. -mobile: +1 213 360-6849 -pager: +1 213 837-2076 -roomNumber: 8602 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeremy Trutschel -sn: Trutschel -description: This is Jeremy Trutschel's description -facsimileTelephoneNumber: +1 415 566-3046 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 448-2965 -title: Master Administrative Developer -userPassword: Password1 -uid: TrutschJ -givenName: Jeremy -mail: TrutschJ@c77f15bdbae9450390cff589a04f790b.bitwarden.com -carLicense: 5W2S9S -departmentNumber: 2761 -employeeType: Employee -homePhone: +1 415 843-2286 -initials: J. T. -mobile: +1 415 325-6586 -pager: +1 415 831-4721 -roomNumber: 9652 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Freda Tschaja,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Freda Tschaja -sn: Tschaja -description: This is Freda Tschaja's description -facsimileTelephoneNumber: +1 818 887-3072 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 628-1640 -title: Associate Management Admin -userPassword: Password1 -uid: TschajaF -givenName: Freda -mail: TschajaF@04598eeb76624a4a926f3360b6a1c37d.bitwarden.com -carLicense: 9JRBIF -departmentNumber: 6294 -employeeType: Employee -homePhone: +1 818 728-3139 -initials: F. T. -mobile: +1 818 930-2728 -pager: +1 818 657-9419 -roomNumber: 8585 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Deepak Sangha,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deepak Sangha -sn: Sangha -description: This is Deepak Sangha's description -facsimileTelephoneNumber: +1 408 664-7299 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 852-4319 -title: Junior Payroll Warrior -userPassword: Password1 -uid: SanghaD -givenName: Deepak -mail: SanghaD@0d76f44b179b422cba17cc5ef36a3a2d.bitwarden.com -carLicense: CQ18O3 -departmentNumber: 7422 -employeeType: Normal -homePhone: +1 408 838-1643 -initials: D. S. -mobile: +1 408 518-8576 -pager: +1 408 705-4173 -roomNumber: 8806 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jennee Stover,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jennee Stover -sn: Stover -description: This is Jennee Stover's description -facsimileTelephoneNumber: +1 510 848-5241 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 612-4552 -title: Master Peons Vice President -userPassword: Password1 -uid: StoverJ -givenName: Jennee -mail: StoverJ@4a145fc9121947ce8b995d7a67929715.bitwarden.com -carLicense: 68PQX5 -departmentNumber: 9133 -employeeType: Contract -homePhone: +1 510 760-9193 -initials: J. S. -mobile: +1 510 662-8178 -pager: +1 510 690-3098 -roomNumber: 9986 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Diamond Brownfield,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Diamond Brownfield -sn: Brownfield -description: This is Diamond Brownfield's description -facsimileTelephoneNumber: +1 206 672-8533 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 464-4437 -title: Associate Management Dictator -userPassword: Password1 -uid: BrownfiD -givenName: Diamond -mail: BrownfiD@b1ec0cbcb2944a58bb6bfcd6bb77a546.bitwarden.com -carLicense: D0NOFX -departmentNumber: 6271 -employeeType: Contract -homePhone: +1 206 206-5173 -initials: D. B. -mobile: +1 206 890-8641 -pager: +1 206 205-5848 -roomNumber: 9240 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neste Nikolopoulos -sn: Nikolopoulos -description: This is Neste Nikolopoulos's description -facsimileTelephoneNumber: +1 213 967-1423 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 213 252-8650 -title: Associate Payroll Punk -userPassword: Password1 -uid: NikolopN -givenName: Neste -mail: NikolopN@ae34afdf0bc1444aac13f1e923e2cbef.bitwarden.com -carLicense: 44KFF4 -departmentNumber: 5097 -employeeType: Contract -homePhone: +1 213 819-1655 -initials: N. N. -mobile: +1 213 372-6873 -pager: +1 213 717-6718 -roomNumber: 9783 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sangman Estey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sangman Estey -sn: Estey -description: This is Sangman Estey's description -facsimileTelephoneNumber: +1 818 936-9730 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 818 505-1775 -title: Master Management Engineer -userPassword: Password1 -uid: EsteyS -givenName: Sangman -mail: EsteyS@b9d4bc3408874c868cfc03e30b01af48.bitwarden.com -carLicense: DP9KE8 -departmentNumber: 8956 -employeeType: Normal -homePhone: +1 818 363-5847 -initials: S. E. -mobile: +1 818 242-2759 -pager: +1 818 888-2802 -roomNumber: 8871 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abdullah Aderhold -sn: Aderhold -description: This is Abdullah Aderhold's description -facsimileTelephoneNumber: +1 408 358-5341 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 408 914-3404 -title: Junior Administrative Janitor -userPassword: Password1 -uid: AderholA -givenName: Abdullah -mail: AderholA@7d1d20094a364b09b76d9c95a25b43fa.bitwarden.com -carLicense: N9M9W8 -departmentNumber: 7836 -employeeType: Normal -homePhone: +1 408 831-4017 -initials: A. A. -mobile: +1 408 497-9033 -pager: +1 408 998-4051 -roomNumber: 9739 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ola Kupitz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ola Kupitz -sn: Kupitz -description: This is Ola Kupitz's description -facsimileTelephoneNumber: +1 510 723-5345 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 196-4771 -title: Junior Product Development Developer -userPassword: Password1 -uid: KupitzO -givenName: Ola -mail: KupitzO@7016343b9c7c41d58eb428f022d1c9f0.bitwarden.com -carLicense: BYNWTP -departmentNumber: 2050 -employeeType: Employee -homePhone: +1 510 292-9678 -initials: O. K. -mobile: +1 510 468-1431 -pager: +1 510 845-6521 -roomNumber: 9711 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Willetta Mayes,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willetta Mayes -sn: Mayes -description: This is Willetta Mayes's description -facsimileTelephoneNumber: +1 510 482-2787 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 625-3271 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: MayesW -givenName: Willetta -mail: MayesW@5fb61a5e905a4cb8b7d6000e9d19ef2d.bitwarden.com -carLicense: TLAQTK -departmentNumber: 3351 -employeeType: Normal -homePhone: +1 510 595-7021 -initials: W. M. -mobile: +1 510 846-7851 -pager: +1 510 600-9331 -roomNumber: 8879 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nahum Sprigings,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nahum Sprigings -sn: Sprigings -description: This is Nahum Sprigings's description -facsimileTelephoneNumber: +1 213 668-8168 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 416-6109 -title: Master Product Development Assistant -userPassword: Password1 -uid: SpriginN -givenName: Nahum -mail: SpriginN@4cff4a0de1f5433293445d7825473f11.bitwarden.com -carLicense: F3WJ39 -departmentNumber: 3716 -employeeType: Normal -homePhone: +1 213 276-4090 -initials: N. S. -mobile: +1 213 429-7136 -pager: +1 213 353-8998 -roomNumber: 8113 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathye Demeulemeester -sn: Demeulemeester -description: This is Kathye Demeulemeester's description -facsimileTelephoneNumber: +1 206 705-4356 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 403-3402 -title: Supreme Janitorial Visionary -userPassword: Password1 -uid: DemeuleK -givenName: Kathye -mail: DemeuleK@2fba4efbb4b44dbe8c7dc5c682d67dce.bitwarden.com -carLicense: NBVV75 -departmentNumber: 9147 -employeeType: Employee -homePhone: +1 206 752-6260 -initials: K. D. -mobile: +1 206 397-8088 -pager: +1 206 507-8220 -roomNumber: 9339 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Juile Nttest,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juile Nttest -sn: Nttest -description: This is Juile Nttest's description -facsimileTelephoneNumber: +1 415 493-9885 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 655-8547 -title: Supreme Payroll Architect -userPassword: Password1 -uid: NttestJ -givenName: Juile -mail: NttestJ@71f49fd634ac4515894d5fd3319ef9a6.bitwarden.com -carLicense: PBQRWC -departmentNumber: 8243 -employeeType: Employee -homePhone: +1 415 797-6654 -initials: J. N. -mobile: +1 415 510-8646 -pager: +1 415 188-4777 -roomNumber: 8671 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hazel Johannes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hazel Johannes -sn: Johannes -description: This is Hazel Johannes's description -facsimileTelephoneNumber: +1 415 850-6147 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 955-1438 -title: Supreme Management Warrior -userPassword: Password1 -uid: JohanneH -givenName: Hazel -mail: JohanneH@faeb50c13f3444b887437137742bff48.bitwarden.com -carLicense: U103OY -departmentNumber: 6054 -employeeType: Normal -homePhone: +1 415 907-8154 -initials: H. J. -mobile: +1 415 770-2040 -pager: +1 415 992-4080 -roomNumber: 9583 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rebeka Welker,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebeka Welker -sn: Welker -description: This is Rebeka Welker's description -facsimileTelephoneNumber: +1 804 130-9523 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 305-4176 -title: Supreme Administrative Visionary -userPassword: Password1 -uid: WelkerR -givenName: Rebeka -mail: WelkerR@a549bdf5420c411a867c314ba75b6975.bitwarden.com -carLicense: R600NO -departmentNumber: 7606 -employeeType: Employee -homePhone: +1 804 193-3396 -initials: R. W. -mobile: +1 804 752-9705 -pager: +1 804 775-5807 -roomNumber: 9609 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gordon Fares,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gordon Fares -sn: Fares -description: This is Gordon Fares's description -facsimileTelephoneNumber: +1 804 169-4437 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 926-7345 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: FaresG -givenName: Gordon -mail: FaresG@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com -carLicense: 55P4H9 -departmentNumber: 4105 -employeeType: Contract -homePhone: +1 804 231-4092 -initials: G. F. -mobile: +1 804 131-5369 -pager: +1 804 300-3618 -roomNumber: 8894 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Corella Swanston,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corella Swanston -sn: Swanston -description: This is Corella Swanston's description -facsimileTelephoneNumber: +1 510 558-2245 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 988-2962 -title: Junior Payroll Mascot -userPassword: Password1 -uid: SwanstoC -givenName: Corella -mail: SwanstoC@dcdbaaadaaee46828eda807cdf13cfd2.bitwarden.com -carLicense: S0AQVF -departmentNumber: 3323 -employeeType: Contract -homePhone: +1 510 953-3365 -initials: C. S. -mobile: +1 510 847-6997 -pager: +1 510 205-4760 -roomNumber: 8221 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Alisun Volfe,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alisun Volfe -sn: Volfe -description: This is Alisun Volfe's description -facsimileTelephoneNumber: +1 804 147-6125 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 821-6284 -title: Master Human Resources Architect -userPassword: Password1 -uid: VolfeA -givenName: Alisun -mail: VolfeA@baf74e2af041410097981fddefdb44ba.bitwarden.com -carLicense: HT4RTY -departmentNumber: 9789 -employeeType: Contract -homePhone: +1 804 662-4466 -initials: A. V. -mobile: +1 804 678-5781 -pager: +1 804 261-9939 -roomNumber: 9817 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Karine McKerrow,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karine McKerrow -sn: McKerrow -description: This is Karine McKerrow's description -facsimileTelephoneNumber: +1 804 959-5442 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 815-9782 -title: Associate Peons Director -userPassword: Password1 -uid: McKerroK -givenName: Karine -mail: McKerroK@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com -carLicense: VPXC25 -departmentNumber: 6434 -employeeType: Contract -homePhone: +1 804 164-6358 -initials: K. M. -mobile: +1 804 445-4684 -pager: +1 804 559-1013 -roomNumber: 8148 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yvan Gandhi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yvan Gandhi -sn: Gandhi -description: This is Yvan Gandhi's description -facsimileTelephoneNumber: +1 206 883-8254 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 197-8721 -title: Junior Payroll Admin -userPassword: Password1 -uid: GandhiY -givenName: Yvan -mail: GandhiY@e14fec315d724d2ea3c23dddfc2b66b0.bitwarden.com -carLicense: DAYDK3 -departmentNumber: 6231 -employeeType: Employee -homePhone: +1 206 142-7922 -initials: Y. G. -mobile: +1 206 467-6884 -pager: +1 206 760-7827 -roomNumber: 9638 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Darrol Mair,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrol Mair -sn: Mair -description: This is Darrol Mair's description -facsimileTelephoneNumber: +1 510 134-3507 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 680-3934 -title: Master Payroll Stooge -userPassword: Password1 -uid: MairD -givenName: Darrol -mail: MairD@a6f3133d61d14ab9941634fba9dc1a84.bitwarden.com -carLicense: N7KILL -departmentNumber: 2599 -employeeType: Contract -homePhone: +1 510 434-4730 -initials: D. M. -mobile: +1 510 104-7276 -pager: +1 510 326-3425 -roomNumber: 8134 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Narendra Cramer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Narendra Cramer -sn: Cramer -description: This is Narendra Cramer's description -facsimileTelephoneNumber: +1 415 260-2242 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 989-2075 -title: Master Administrative Visionary -userPassword: Password1 -uid: CramerN -givenName: Narendra -mail: CramerN@b742b209006e494cbb6f8a4e0b48b884.bitwarden.com -carLicense: WI7YI7 -departmentNumber: 4784 -employeeType: Contract -homePhone: +1 415 731-1410 -initials: N. C. -mobile: +1 415 480-5245 -pager: +1 415 837-7369 -roomNumber: 8289 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Christina Bittman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christina Bittman -sn: Bittman -description: This is Christina Bittman's description -facsimileTelephoneNumber: +1 206 434-9128 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 198-5090 -title: Junior Peons Stooge -userPassword: Password1 -uid: BittmanC -givenName: Christina -mail: BittmanC@79e870d6aec04b1188d3b93e080d363c.bitwarden.com -carLicense: 4L8KV2 -departmentNumber: 8353 -employeeType: Normal -homePhone: +1 206 136-4607 -initials: C. B. -mobile: +1 206 481-6775 -pager: +1 206 860-8210 -roomNumber: 8449 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vo Peacocke,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vo Peacocke -sn: Peacocke -description: This is Vo Peacocke's description -facsimileTelephoneNumber: +1 415 925-6472 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 415 284-9907 -title: Master Administrative Manager -userPassword: Password1 -uid: PeacockV -givenName: Vo -mail: PeacockV@1ca94e5cffb744db9996bf92fe3ed97c.bitwarden.com -carLicense: M4NUX1 -departmentNumber: 7601 -employeeType: Employee -homePhone: +1 415 706-1961 -initials: V. P. -mobile: +1 415 254-1118 -pager: +1 415 393-9393 -roomNumber: 9937 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Astra Moshtagh -sn: Moshtagh -description: This is Astra Moshtagh's description -facsimileTelephoneNumber: +1 804 209-5121 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 804 976-9253 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: MoshtagA -givenName: Astra -mail: MoshtagA@763917e53f1542c7b70dd136899ad079.bitwarden.com -carLicense: 323SDT -departmentNumber: 5084 -employeeType: Normal -homePhone: +1 804 452-7595 -initials: A. M. -mobile: +1 804 330-9750 -pager: +1 804 586-6066 -roomNumber: 9997 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Salim Brushey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salim Brushey -sn: Brushey -description: This is Salim Brushey's description -facsimileTelephoneNumber: +1 408 559-4994 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 515-9591 -title: Junior Product Testing Artist -userPassword: Password1 -uid: BrusheyS -givenName: Salim -mail: BrusheyS@8c75d8449fe241b583cdc3782aba550b.bitwarden.com -carLicense: SN7A5S -departmentNumber: 3534 -employeeType: Normal -homePhone: +1 408 639-2198 -initials: S. B. -mobile: +1 408 658-2962 -pager: +1 408 731-5623 -roomNumber: 9834 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jorey Jensen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jorey Jensen -sn: Jensen -description: This is Jorey Jensen's description -facsimileTelephoneNumber: +1 206 309-6002 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 773-2269 -title: Chief Administrative Consultant -userPassword: Password1 -uid: JensenJ -givenName: Jorey -mail: JensenJ@9e42ae77792c49b3accae8305c8837bb.bitwarden.com -carLicense: JI1XDE -departmentNumber: 1222 -employeeType: Employee -homePhone: +1 206 986-1954 -initials: J. J. -mobile: +1 206 963-9184 -pager: +1 206 246-9833 -roomNumber: 9182 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Willow Benda,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willow Benda -sn: Benda -description: This is Willow Benda's description -facsimileTelephoneNumber: +1 510 421-2609 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 545-6820 -title: Master Payroll Evangelist -userPassword: Password1 -uid: BendaW -givenName: Willow -mail: BendaW@44ecb368c6be4359b7f35b951bbf9473.bitwarden.com -carLicense: 3GSQ8E -departmentNumber: 8673 -employeeType: Contract -homePhone: +1 510 742-6663 -initials: W. B. -mobile: +1 510 641-4672 -pager: +1 510 736-6106 -roomNumber: 9766 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gurjinder Gainer -sn: Gainer -description: This is Gurjinder Gainer's description -facsimileTelephoneNumber: +1 213 990-4697 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 290-3705 -title: Chief Human Resources Stooge -userPassword: Password1 -uid: GainerG -givenName: Gurjinder -mail: GainerG@8a7d5133f2fc4397a30a337937403b76.bitwarden.com -carLicense: TG1TU4 -departmentNumber: 1001 -employeeType: Employee -homePhone: +1 213 141-2314 -initials: G. G. -mobile: +1 213 997-3579 -pager: +1 213 846-6010 -roomNumber: 9982 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marilyn Nardiello,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marilyn Nardiello -sn: Nardiello -description: This is Marilyn Nardiello's description -facsimileTelephoneNumber: +1 818 685-2085 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 954-3316 -title: Associate Management Consultant -userPassword: Password1 -uid: NardielM -givenName: Marilyn -mail: NardielM@cec3211a38a84845bf22d5434e7f7858.bitwarden.com -carLicense: N1QB6L -departmentNumber: 7938 -employeeType: Contract -homePhone: +1 818 743-7427 -initials: M. N. -mobile: +1 818 209-5404 -pager: +1 818 578-4694 -roomNumber: 8791 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Federica Keck,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Federica Keck -sn: Keck -description: This is Federica Keck's description -facsimileTelephoneNumber: +1 510 686-8483 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 259-4957 -title: Chief Human Resources Developer -userPassword: Password1 -uid: KeckF -givenName: Federica -mail: KeckF@0219ab31249e4e48be0f58ce8b0b2611.bitwarden.com -carLicense: H3G9AR -departmentNumber: 2215 -employeeType: Employee -homePhone: +1 510 252-3258 -initials: F. K. -mobile: +1 510 688-2594 -pager: +1 510 649-6382 -roomNumber: 9782 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Carling Sture,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carling Sture -sn: Sture -description: This is Carling Sture's description -facsimileTelephoneNumber: +1 213 366-3680 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 509-1781 -title: Chief Human Resources President -userPassword: Password1 -uid: StureC -givenName: Carling -mail: StureC@1ebbfd6f3021409cb1fecd2d24eae99b.bitwarden.com -carLicense: N51MOS -departmentNumber: 4909 -employeeType: Normal -homePhone: +1 213 106-4105 -initials: C. S. -mobile: +1 213 334-5497 -pager: +1 213 780-5684 -roomNumber: 9633 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Inessa McCaffity,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inessa McCaffity -sn: McCaffity -description: This is Inessa McCaffity's description -facsimileTelephoneNumber: +1 415 349-8182 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 519-8849 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: McCaffiI -givenName: Inessa -mail: McCaffiI@a5fad638ee6f446cb5871340d10b02b1.bitwarden.com -carLicense: DSIGKL -departmentNumber: 6233 -employeeType: Normal -homePhone: +1 415 646-6704 -initials: I. M. -mobile: +1 415 957-5599 -pager: +1 415 339-5616 -roomNumber: 8643 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninno Dubreuil -sn: Dubreuil -description: This is Ninno Dubreuil's description -facsimileTelephoneNumber: +1 804 739-7762 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 267-9866 -title: Chief Human Resources Warrior -userPassword: Password1 -uid: DubreuiN -givenName: Ninno -mail: DubreuiN@644ea75b3c8c4e108b8a77cd015225ed.bitwarden.com -carLicense: SG46SW -departmentNumber: 9415 -employeeType: Employee -homePhone: +1 804 571-6616 -initials: N. D. -mobile: +1 804 750-7223 -pager: +1 804 977-5908 -roomNumber: 9909 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Esko Todaro,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esko Todaro -sn: Todaro -description: This is Esko Todaro's description -facsimileTelephoneNumber: +1 213 924-6646 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 753-1255 -title: Master Payroll Stooge -userPassword: Password1 -uid: TodaroE -givenName: Esko -mail: TodaroE@69ba9f45dacb4e9ea85c0a5c352dcaad.bitwarden.com -carLicense: 8E31IM -departmentNumber: 6108 -employeeType: Contract -homePhone: +1 213 312-8941 -initials: E. T. -mobile: +1 213 528-1174 -pager: +1 213 112-2926 -roomNumber: 8568 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Charman Brownridge,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charman Brownridge -sn: Brownridge -description: This is Charman Brownridge's description -facsimileTelephoneNumber: +1 213 815-1125 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 213 370-2554 -title: Junior Payroll Fellow -userPassword: Password1 -uid: BrownriC -givenName: Charman -mail: BrownriC@db7691c9dca24eb7875f7a9259652b96.bitwarden.com -carLicense: S93ADL -departmentNumber: 7193 -employeeType: Contract -homePhone: +1 213 250-3125 -initials: C. B. -mobile: +1 213 717-7889 -pager: +1 213 647-3119 -roomNumber: 8122 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Le Reese,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Le Reese -sn: Reese -description: This is Le Reese's description -facsimileTelephoneNumber: +1 510 764-7355 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 159-5417 -title: Junior Peons Technician -userPassword: Password1 -uid: ReeseL -givenName: Le -mail: ReeseL@16389576a6824424924b1ebe0033761c.bitwarden.com -carLicense: 9QPT32 -departmentNumber: 7943 -employeeType: Normal -homePhone: +1 510 122-4211 -initials: L. R. -mobile: +1 510 646-2558 -pager: +1 510 650-4599 -roomNumber: 9008 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cavin Bijons,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cavin Bijons -sn: Bijons -description: This is Cavin Bijons's description -facsimileTelephoneNumber: +1 206 666-1292 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 380-8317 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: BijonsC -givenName: Cavin -mail: BijonsC@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com -carLicense: FFKKWA -departmentNumber: 9423 -employeeType: Contract -homePhone: +1 206 174-9949 -initials: C. B. -mobile: +1 206 741-1680 -pager: +1 206 228-4977 -roomNumber: 9361 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zehra Marcantonio -sn: Marcantonio -description: This is Zehra Marcantonio's description -facsimileTelephoneNumber: +1 206 336-1153 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 406-9323 -title: Chief Administrative Punk -userPassword: Password1 -uid: MarcantZ -givenName: Zehra -mail: MarcantZ@4e99a81ca6fc4c54a419915482486171.bitwarden.com -carLicense: OE2U20 -departmentNumber: 3658 -employeeType: Employee -homePhone: +1 206 805-2749 -initials: Z. M. -mobile: +1 206 570-6396 -pager: +1 206 467-9197 -roomNumber: 9482 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Naresh Hiltz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naresh Hiltz -sn: Hiltz -description: This is Naresh Hiltz's description -facsimileTelephoneNumber: +1 818 836-1242 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 387-9524 -title: Chief Administrative Manager -userPassword: Password1 -uid: HiltzN -givenName: Naresh -mail: HiltzN@591ca642a36345a4b6041e36ab40a5cb.bitwarden.com -carLicense: HWPHAH -departmentNumber: 7061 -employeeType: Employee -homePhone: +1 818 327-6552 -initials: N. H. -mobile: +1 818 345-7375 -pager: +1 818 418-2313 -roomNumber: 8679 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jai Tiller,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jai Tiller -sn: Tiller -description: This is Jai Tiller's description -facsimileTelephoneNumber: +1 510 916-3668 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 510 357-1408 -title: Supreme Payroll Punk -userPassword: Password1 -uid: TillerJ -givenName: Jai -mail: TillerJ@73529e16a32a4c6bb942e1dcaaaf9fe5.bitwarden.com -carLicense: H2LH6P -departmentNumber: 5884 -employeeType: Contract -homePhone: +1 510 413-1412 -initials: J. T. -mobile: +1 510 659-3667 -pager: +1 510 505-1311 -roomNumber: 8874 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jocelyn Wolczanski -sn: Wolczanski -description: This is Jocelyn Wolczanski's description -facsimileTelephoneNumber: +1 213 206-5035 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 576-6168 -title: Junior Janitorial Admin -userPassword: Password1 -uid: WolczanJ -givenName: Jocelyn -mail: WolczanJ@2153898ab7ac43e8a4cd26875e8f79f9.bitwarden.com -carLicense: QTD4UI -departmentNumber: 5248 -employeeType: Contract -homePhone: +1 213 855-2917 -initials: J. W. -mobile: +1 213 206-7227 -pager: +1 213 655-4134 -roomNumber: 8751 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Esme Daniells,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esme Daniells -sn: Daniells -description: This is Esme Daniells's description -facsimileTelephoneNumber: +1 206 567-8425 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 734-6411 -title: Chief Payroll Grunt -userPassword: Password1 -uid: DaniellE -givenName: Esme -mail: DaniellE@610fb75ffd5d46ae971c460a81383a24.bitwarden.com -carLicense: FRQWUM -departmentNumber: 8523 -employeeType: Normal -homePhone: +1 206 974-3073 -initials: E. D. -mobile: +1 206 836-3718 -pager: +1 206 662-8441 -roomNumber: 8722 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Trey McWalters,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trey McWalters -sn: McWalters -description: This is Trey McWalters's description -facsimileTelephoneNumber: +1 206 321-3294 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 957-5177 -title: Master Product Development Engineer -userPassword: Password1 -uid: McWalteT -givenName: Trey -mail: McWalteT@58dd45ceb2d64fb0b6fd6e1d9136b5e5.bitwarden.com -carLicense: WQRX15 -departmentNumber: 5878 -employeeType: Contract -homePhone: +1 206 644-7665 -initials: T. M. -mobile: +1 206 960-8492 -pager: +1 206 390-5115 -roomNumber: 8528 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Edlene Bumgarner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edlene Bumgarner -sn: Bumgarner -description: This is Edlene Bumgarner's description -facsimileTelephoneNumber: +1 206 962-8946 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 530-2449 -title: Master Peons Director -userPassword: Password1 -uid: BumgarnE -givenName: Edlene -mail: BumgarnE@fe393581310b47dd94b5b76f5b2a4efb.bitwarden.com -carLicense: 79WFF0 -departmentNumber: 2801 -employeeType: Employee -homePhone: +1 206 994-1020 -initials: E. B. -mobile: +1 206 585-4888 -pager: +1 206 453-1307 -roomNumber: 9180 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tape OHearn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tape OHearn -sn: OHearn -description: This is Tape OHearn's description -facsimileTelephoneNumber: +1 510 970-4458 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 745-7889 -title: Supreme Administrative Evangelist -userPassword: Password1 -uid: OHearnT -givenName: Tape -mail: OHearnT@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com -carLicense: LOYX0H -departmentNumber: 3131 -employeeType: Employee -homePhone: +1 510 631-6963 -initials: T. O. -mobile: +1 510 386-2304 -pager: +1 510 403-9432 -roomNumber: 8823 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Robbin Hayman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robbin Hayman -sn: Hayman -description: This is Robbin Hayman's description -facsimileTelephoneNumber: +1 804 339-5885 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 239-5797 -title: Master Administrative Fellow -userPassword: Password1 -uid: HaymanR -givenName: Robbin -mail: HaymanR@bda14f77ccfe445ba2e685aa7ba46a33.bitwarden.com -carLicense: EK5MDV -departmentNumber: 5090 -employeeType: Contract -homePhone: +1 804 304-5096 -initials: R. H. -mobile: +1 804 752-3830 -pager: +1 804 820-8955 -roomNumber: 9249 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Debadeep Andrade,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debadeep Andrade -sn: Andrade -description: This is Debadeep Andrade's description -facsimileTelephoneNumber: +1 213 171-6121 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 186-6614 -title: Associate Peons Engineer -userPassword: Password1 -uid: AndradeD -givenName: Debadeep -mail: AndradeD@4831c314a96e4dc2a8c277ec349e694c.bitwarden.com -carLicense: OV5U10 -departmentNumber: 3450 -employeeType: Contract -homePhone: +1 213 767-4254 -initials: D. A. -mobile: +1 213 252-7292 -pager: +1 213 237-4469 -roomNumber: 9262 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrtice Virgoe -sn: Virgoe -description: This is Myrtice Virgoe's description -facsimileTelephoneNumber: +1 206 916-1885 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 782-5902 -title: Supreme Payroll Developer -userPassword: Password1 -uid: VirgoeM -givenName: Myrtice -mail: VirgoeM@d373fdc15b634340bc25b6c3b5d64884.bitwarden.com -carLicense: O51J71 -departmentNumber: 9905 -employeeType: Normal -homePhone: +1 206 596-4092 -initials: M. V. -mobile: +1 206 504-6246 -pager: +1 206 161-4007 -roomNumber: 8566 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Parham Maunu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parham Maunu -sn: Maunu -description: This is Parham Maunu's description -facsimileTelephoneNumber: +1 213 105-6841 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 206-1706 -title: Associate Product Development Punk -userPassword: Password1 -uid: MaunuP -givenName: Parham -mail: MaunuP@d233ce77e34d461bb1d8e44907c3b6ba.bitwarden.com -carLicense: 00BVYL -departmentNumber: 2830 -employeeType: Normal -homePhone: +1 213 314-3850 -initials: P. M. -mobile: +1 213 558-7779 -pager: +1 213 647-8299 -roomNumber: 9653 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ruthe Calhoun,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruthe Calhoun -sn: Calhoun -description: This is Ruthe Calhoun's description -facsimileTelephoneNumber: +1 818 669-3236 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 818 878-6454 -title: Chief Peons Figurehead -userPassword: Password1 -uid: CalhounR -givenName: Ruthe -mail: CalhounR@d2d670b2fced4eef91c4ec4dcd52496b.bitwarden.com -carLicense: 6GVM6U -departmentNumber: 8191 -employeeType: Employee -homePhone: +1 818 605-3032 -initials: R. C. -mobile: +1 818 678-4840 -pager: +1 818 593-2466 -roomNumber: 8092 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Albert Waid,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Albert Waid -sn: Waid -description: This is Albert Waid's description -facsimileTelephoneNumber: +1 408 141-8042 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 408 839-9127 -title: Master Janitorial Assistant -userPassword: Password1 -uid: WaidA -givenName: Albert -mail: WaidA@cf949ad46d1d4454911d4e2468d96da8.bitwarden.com -carLicense: 7I8SI4 -departmentNumber: 7070 -employeeType: Normal -homePhone: +1 408 680-1085 -initials: A. W. -mobile: +1 408 757-5637 -pager: +1 408 382-6420 -roomNumber: 8163 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mason Azar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mason Azar -sn: Azar -description: This is Mason Azar's description -facsimileTelephoneNumber: +1 804 342-7396 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 994-8484 -title: Supreme Administrative Admin -userPassword: Password1 -uid: AzarM -givenName: Mason -mail: AzarM@7ce0aeed71954a9186228a48b133b9f4.bitwarden.com -carLicense: 49XYJJ -departmentNumber: 3097 -employeeType: Employee -homePhone: +1 804 916-1279 -initials: M. A. -mobile: +1 804 272-4731 -pager: +1 804 149-6015 -roomNumber: 8858 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tory Vairavan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tory Vairavan -sn: Vairavan -description: This is Tory Vairavan's description -facsimileTelephoneNumber: +1 804 910-6739 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 498-1046 -title: Junior Management Warrior -userPassword: Password1 -uid: VairavaT -givenName: Tory -mail: VairavaT@eb82c31be85446d794ef51293247c40a.bitwarden.com -carLicense: UCFX3T -departmentNumber: 5424 -employeeType: Contract -homePhone: +1 804 512-4991 -initials: T. V. -mobile: +1 804 124-1810 -pager: +1 804 566-5796 -roomNumber: 8010 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marisa Kuntova,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marisa Kuntova -sn: Kuntova -description: This is Marisa Kuntova's description -facsimileTelephoneNumber: +1 408 857-6565 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 172-4853 -title: Master Management Fellow -userPassword: Password1 -uid: KuntovaM -givenName: Marisa -mail: KuntovaM@04448fada1ea4fa4b445ea9be1736993.bitwarden.com -carLicense: M7FPB0 -departmentNumber: 9283 -employeeType: Contract -homePhone: +1 408 747-9519 -initials: M. K. -mobile: +1 408 794-3802 -pager: +1 408 992-8065 -roomNumber: 8959 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rungroj Rains,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rungroj Rains -sn: Rains -description: This is Rungroj Rains's description -facsimileTelephoneNumber: +1 510 416-2993 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 653-9010 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: RainsR -givenName: Rungroj -mail: RainsR@7bfc17d323e0430fbe510aae2bf5a02c.bitwarden.com -carLicense: AYAPSW -departmentNumber: 6089 -employeeType: Normal -homePhone: +1 510 376-9556 -initials: R. R. -mobile: +1 510 226-3169 -pager: +1 510 665-3472 -roomNumber: 9040 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tak Tihanyi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tak Tihanyi -sn: Tihanyi -description: This is Tak Tihanyi's description -facsimileTelephoneNumber: +1 213 379-8030 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 213 161-1916 -title: Junior Administrative Engineer -userPassword: Password1 -uid: TihanyiT -givenName: Tak -mail: TihanyiT@5e72004cd5c54ab885896ad64d562293.bitwarden.com -carLicense: WM9RV9 -departmentNumber: 6961 -employeeType: Contract -homePhone: +1 213 373-4745 -initials: T. T. -mobile: +1 213 704-1953 -pager: +1 213 616-5794 -roomNumber: 8947 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christophe Lassonde -sn: Lassonde -description: This is Christophe Lassonde's description -facsimileTelephoneNumber: +1 206 814-8635 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 206 536-7265 -title: Master Janitorial Fellow -userPassword: Password1 -uid: LassondC -givenName: Christophe -mail: LassondC@a7f2e34ed651499b802da67d1808b3de.bitwarden.com -carLicense: 3405J4 -departmentNumber: 5095 -employeeType: Contract -homePhone: +1 206 413-1141 -initials: C. L. -mobile: +1 206 559-5787 -pager: +1 206 915-5694 -roomNumber: 9371 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sharlene Litz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharlene Litz -sn: Litz -description: This is Sharlene Litz's description -facsimileTelephoneNumber: +1 408 751-5900 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 888-6971 -title: Associate Product Development Warrior -userPassword: Password1 -uid: LitzS -givenName: Sharlene -mail: LitzS@8c66b2522da94b0cbdc414c1b20aa8ca.bitwarden.com -carLicense: H4WJQ4 -departmentNumber: 1458 -employeeType: Normal -homePhone: +1 408 779-7636 -initials: S. L. -mobile: +1 408 467-3168 -pager: +1 408 899-7595 -roomNumber: 8825 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Chelsea Ruane,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsea Ruane -sn: Ruane -description: This is Chelsea Ruane's description -facsimileTelephoneNumber: +1 818 185-2533 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 771-8170 -title: Associate Payroll Stooge -userPassword: Password1 -uid: RuaneC -givenName: Chelsea -mail: RuaneC@e3a398150b8f4132954080a42a622e3d.bitwarden.com -carLicense: 8B69XT -departmentNumber: 7561 -employeeType: Employee -homePhone: +1 818 322-5461 -initials: C. R. -mobile: +1 818 405-7631 -pager: +1 818 908-3953 -roomNumber: 9171 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eddy Talbot,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eddy Talbot -sn: Talbot -description: This is Eddy Talbot's description -facsimileTelephoneNumber: +1 213 174-8010 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 404-8925 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: TalbotE -givenName: Eddy -mail: TalbotE@2dddb722caf64e778877e681c7a6c935.bitwarden.com -carLicense: 224K0G -departmentNumber: 1644 -employeeType: Normal -homePhone: +1 213 681-5426 -initials: E. T. -mobile: +1 213 227-2399 -pager: +1 213 553-2310 -roomNumber: 8656 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Manhatten Tota,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manhatten Tota -sn: Tota -description: This is Manhatten Tota's description -facsimileTelephoneNumber: +1 213 828-2941 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 149-8989 -title: Master Product Testing Assistant -userPassword: Password1 -uid: TotaM -givenName: Manhatten -mail: TotaM@97a601b7bf924aea9927e9bb24e9dce4.bitwarden.com -carLicense: LVL8PI -departmentNumber: 8235 -employeeType: Normal -homePhone: +1 213 504-1958 -initials: M. T. -mobile: +1 213 377-2096 -pager: +1 213 699-2981 -roomNumber: 9386 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Annabela Gingrich,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annabela Gingrich -sn: Gingrich -description: This is Annabela Gingrich's description -facsimileTelephoneNumber: +1 213 702-8571 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 623-5864 -title: Supreme Administrative Admin -userPassword: Password1 -uid: GingricA -givenName: Annabela -mail: GingricA@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com -carLicense: OQA4WR -departmentNumber: 4832 -employeeType: Employee -homePhone: +1 213 955-2681 -initials: A. G. -mobile: +1 213 535-9339 -pager: +1 213 445-5883 -roomNumber: 9828 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Regis Watmore,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regis Watmore -sn: Watmore -description: This is Regis Watmore's description -facsimileTelephoneNumber: +1 206 148-8758 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 316-6518 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: WatmoreR -givenName: Regis -mail: WatmoreR@90c9f3c96d1149a298fca9a67a1ea082.bitwarden.com -carLicense: BCRWTM -departmentNumber: 5739 -employeeType: Contract -homePhone: +1 206 500-7836 -initials: R. W. -mobile: +1 206 118-5056 -pager: +1 206 117-6376 -roomNumber: 9646 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shanda Bowen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shanda Bowen -sn: Bowen -description: This is Shanda Bowen's description -facsimileTelephoneNumber: +1 804 785-1590 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 106-2391 -title: Supreme Payroll Stooge -userPassword: Password1 -uid: BowenS -givenName: Shanda -mail: BowenS@8b3dde45f1e843a68494a6fd84017274.bitwarden.com -carLicense: WU02LG -departmentNumber: 4805 -employeeType: Employee -homePhone: +1 804 146-2511 -initials: S. B. -mobile: +1 804 928-5141 -pager: +1 804 317-3340 -roomNumber: 8068 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raymond Marcantonio -sn: Marcantonio -description: This is Raymond Marcantonio's description -facsimileTelephoneNumber: +1 206 572-6032 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 616-7379 -title: Master Janitorial Vice President -userPassword: Password1 -uid: MarcantR -givenName: Raymond -mail: MarcantR@2e65828583f54a1ea500b532b01f86b6.bitwarden.com -carLicense: GVOVA2 -departmentNumber: 5565 -employeeType: Employee -homePhone: +1 206 587-1602 -initials: R. M. -mobile: +1 206 500-2783 -pager: +1 206 600-5135 -roomNumber: 8511 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jyoti Wells,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jyoti Wells -sn: Wells -description: This is Jyoti Wells's description -facsimileTelephoneNumber: +1 206 174-9330 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 473-7663 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: WellsJ -givenName: Jyoti -mail: WellsJ@2c0f47a97a024956922ed080c07c7087.bitwarden.com -carLicense: 6O7DLT -departmentNumber: 2933 -employeeType: Contract -homePhone: +1 206 950-5814 -initials: J. W. -mobile: +1 206 355-1424 -pager: +1 206 556-9753 -roomNumber: 8322 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hanns Sharkey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanns Sharkey -sn: Sharkey -description: This is Hanns Sharkey's description -facsimileTelephoneNumber: +1 206 347-7328 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 206 546-4891 -title: Master Management Warrior -userPassword: Password1 -uid: SharkeyH -givenName: Hanns -mail: SharkeyH@4f63ce84f4684a4bb16b885eeda98071.bitwarden.com -carLicense: 7TTUD2 -departmentNumber: 6140 -employeeType: Normal -homePhone: +1 206 159-8059 -initials: H. S. -mobile: +1 206 645-1239 -pager: +1 206 807-8567 -roomNumber: 9941 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Reva Ostapiw,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reva Ostapiw -sn: Ostapiw -description: This is Reva Ostapiw's description -facsimileTelephoneNumber: +1 408 850-5932 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 206-6317 -title: Supreme Peons Punk -userPassword: Password1 -uid: OstapiwR -givenName: Reva -mail: OstapiwR@a586d7b2acf146c78c98936aa18b9779.bitwarden.com -carLicense: V4KRL9 -departmentNumber: 1742 -employeeType: Employee -homePhone: +1 408 665-5748 -initials: R. O. -mobile: +1 408 714-5917 -pager: +1 408 431-8243 -roomNumber: 8413 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Michele Elkaim,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michele Elkaim -sn: Elkaim -description: This is Michele Elkaim's description -facsimileTelephoneNumber: +1 818 892-5676 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 546-4305 -title: Associate Administrative Punk -userPassword: Password1 -uid: ElkaimM -givenName: Michele -mail: ElkaimM@5f9b96657de64882b0c090732caf2034.bitwarden.com -carLicense: HPRYNT -departmentNumber: 9561 -employeeType: Normal -homePhone: +1 818 292-6471 -initials: M. E. -mobile: +1 818 812-6763 -pager: +1 818 585-9398 -roomNumber: 8954 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emil Knappe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emil Knappe -sn: Knappe -description: This is Emil Knappe's description -facsimileTelephoneNumber: +1 213 695-7175 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 718-9898 -title: Supreme Product Development Director -userPassword: Password1 -uid: KnappeE -givenName: Emil -mail: KnappeE@0c23adeda02746a4adaf81e3c1305ae8.bitwarden.com -carLicense: DYSHA0 -departmentNumber: 3722 -employeeType: Contract -homePhone: +1 213 137-6591 -initials: E. K. -mobile: +1 213 756-9376 -pager: +1 213 213-9071 -roomNumber: 8944 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Beryl Windsor,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beryl Windsor -sn: Windsor -description: This is Beryl Windsor's description -facsimileTelephoneNumber: +1 408 199-6086 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 216-7247 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: WindsorB -givenName: Beryl -mail: WindsorB@a5bee62da8ef4e9d8313518642926292.bitwarden.com -carLicense: XRVR8P -departmentNumber: 2026 -employeeType: Contract -homePhone: +1 408 919-8444 -initials: B. W. -mobile: +1 408 155-9232 -pager: +1 408 302-4768 -roomNumber: 9298 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Joyan Varia,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joyan Varia -sn: Varia -description: This is Joyan Varia's description -facsimileTelephoneNumber: +1 510 379-5402 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 222-5826 -title: Supreme Human Resources Warrior -userPassword: Password1 -uid: VariaJ -givenName: Joyan -mail: VariaJ@fc1da3ccee8c40f8af1318302a847e49.bitwarden.com -carLicense: VN6KYK -departmentNumber: 5866 -employeeType: Normal -homePhone: +1 510 731-5835 -initials: J. V. -mobile: +1 510 662-4484 -pager: +1 510 884-2584 -roomNumber: 8656 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ShouMei Zhelka -sn: Zhelka -description: This is ShouMei Zhelka's description -facsimileTelephoneNumber: +1 818 675-1703 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 481-9946 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: ZhelkaS -givenName: ShouMei -mail: ZhelkaS@c58d896de82b440ca30e70c88676b48e.bitwarden.com -carLicense: H9D61E -departmentNumber: 6277 -employeeType: Employee -homePhone: +1 818 164-2314 -initials: S. Z. -mobile: +1 818 454-4178 -pager: +1 818 892-1833 -roomNumber: 9848 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mitchell Gatka,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mitchell Gatka -sn: Gatka -description: This is Mitchell Gatka's description -facsimileTelephoneNumber: +1 804 112-9071 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 804 507-2490 -title: Chief Peons Engineer -userPassword: Password1 -uid: GatkaM -givenName: Mitchell -mail: GatkaM@6ee94998653244b3b64234a9ee1b8607.bitwarden.com -carLicense: AMKVVG -departmentNumber: 5693 -employeeType: Employee -homePhone: +1 804 461-9622 -initials: M. G. -mobile: +1 804 729-2782 -pager: +1 804 491-3916 -roomNumber: 9935 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harry Afkhamebrahimi -sn: Afkhamebrahimi -description: This is Harry Afkhamebrahimi's description -facsimileTelephoneNumber: +1 510 511-8337 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 792-3325 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: AfkhameH -givenName: Harry -mail: AfkhameH@daaa044a56484e489d06cae427ab4eb5.bitwarden.com -carLicense: 6EOHU6 -departmentNumber: 5529 -employeeType: Employee -homePhone: +1 510 457-9608 -initials: H. A. -mobile: +1 510 962-5637 -pager: +1 510 453-7016 -roomNumber: 9224 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ailee Events,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailee Events -sn: Events -description: This is Ailee Events's description -facsimileTelephoneNumber: +1 206 977-6413 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 516-8615 -title: Chief Product Development Manager -userPassword: Password1 -uid: EventsA -givenName: Ailee -mail: EventsA@a75d505d85fe462c8c59962b64d6cff9.bitwarden.com -carLicense: TARHR6 -departmentNumber: 9192 -employeeType: Normal -homePhone: +1 206 401-3337 -initials: A. E. -mobile: +1 206 490-7598 -pager: +1 206 910-4796 -roomNumber: 8917 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yovonnda Hilder -sn: Hilder -description: This is Yovonnda Hilder's description -facsimileTelephoneNumber: +1 818 931-9745 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 966-7112 -title: Master Janitorial Manager -userPassword: Password1 -uid: HilderY -givenName: Yovonnda -mail: HilderY@6a3acca7ad4f4682a2006a10deabdc87.bitwarden.com -carLicense: 35E9QT -departmentNumber: 7514 -employeeType: Contract -homePhone: +1 818 144-7482 -initials: Y. H. -mobile: +1 818 336-2776 -pager: +1 818 409-4045 -roomNumber: 8161 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clestell Minegishi -sn: Minegishi -description: This is Clestell Minegishi's description -facsimileTelephoneNumber: +1 213 148-6131 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 186-2091 -title: Associate Janitorial Czar -userPassword: Password1 -uid: MinegisC -givenName: Clestell -mail: MinegisC@ac08f267452644f09d26008f47edeeda.bitwarden.com -carLicense: PO8H6B -departmentNumber: 3410 -employeeType: Employee -homePhone: +1 213 626-7278 -initials: C. M. -mobile: +1 213 505-9165 -pager: +1 213 963-5228 -roomNumber: 9000 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Herre Cadeau,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Herre Cadeau -sn: Cadeau -description: This is Herre Cadeau's description -facsimileTelephoneNumber: +1 818 862-9895 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 261-7977 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: CadeauH -givenName: Herre -mail: CadeauH@21063d63862a4b1aa0c4c81ad5ebd22a.bitwarden.com -carLicense: GKI0FE -departmentNumber: 5233 -employeeType: Contract -homePhone: +1 818 493-4720 -initials: H. C. -mobile: +1 818 211-7880 -pager: +1 818 877-2189 -roomNumber: 9762 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kaye Hafiz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaye Hafiz -sn: Hafiz -description: This is Kaye Hafiz's description -facsimileTelephoneNumber: +1 818 944-3169 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 818 356-4822 -title: Junior Peons Developer -userPassword: Password1 -uid: HafizK -givenName: Kaye -mail: HafizK@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com -carLicense: QLC1XD -departmentNumber: 4637 -employeeType: Contract -homePhone: +1 818 372-7832 -initials: K. H. -mobile: +1 818 915-9418 -pager: +1 818 644-2089 -roomNumber: 8533 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magnolia Mustafa -sn: Mustafa -description: This is Magnolia Mustafa's description -facsimileTelephoneNumber: +1 213 738-3985 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 417-7133 -title: Associate Product Development Mascot -userPassword: Password1 -uid: MustafaM -givenName: Magnolia -mail: MustafaM@1c6f0f2a2fa54440bc63852786ac9fdb.bitwarden.com -carLicense: AQQLQ5 -departmentNumber: 2143 -employeeType: Employee -homePhone: +1 213 799-9627 -initials: M. M. -mobile: +1 213 251-8245 -pager: +1 213 924-6792 -roomNumber: 8609 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shahid Follett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shahid Follett -sn: Follett -description: This is Shahid Follett's description -facsimileTelephoneNumber: +1 818 804-6502 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 297-2086 -title: Associate Product Development Director -userPassword: Password1 -uid: FollettS -givenName: Shahid -mail: FollettS@120317dff63442a2b732a7a30a2aec6c.bitwarden.com -carLicense: 6F3NCX -departmentNumber: 2014 -employeeType: Employee -homePhone: +1 818 311-5835 -initials: S. F. -mobile: +1 818 179-9583 -pager: +1 818 280-7337 -roomNumber: 8850 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Pet Bohanan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pet Bohanan -sn: Bohanan -description: This is Pet Bohanan's description -facsimileTelephoneNumber: +1 510 152-8610 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 397-5982 -title: Master Janitorial Manager -userPassword: Password1 -uid: BohananP -givenName: Pet -mail: BohananP@78fe1edd402a408aa14e400951dba12b.bitwarden.com -carLicense: KHKLVU -departmentNumber: 4813 -employeeType: Employee -homePhone: +1 510 170-1709 -initials: P. B. -mobile: +1 510 255-6582 -pager: +1 510 100-1050 -roomNumber: 8259 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Colly Daigle,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colly Daigle -sn: Daigle -description: This is Colly Daigle's description -facsimileTelephoneNumber: +1 804 898-1831 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 983-6352 -title: Master Peons Dictator -userPassword: Password1 -uid: DaigleC -givenName: Colly -mail: DaigleC@0664693a03264f2da097850e7d87ca50.bitwarden.com -carLicense: B8HEDF -departmentNumber: 5199 -employeeType: Normal -homePhone: +1 804 364-7768 -initials: C. D. -mobile: +1 804 343-4992 -pager: +1 804 883-4191 -roomNumber: 9855 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Deva StOnge,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deva StOnge -sn: StOnge -description: This is Deva StOnge's description -facsimileTelephoneNumber: +1 213 118-3642 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 872-5149 -title: Master Management Writer -userPassword: Password1 -uid: StOngeD -givenName: Deva -mail: StOngeD@193a813b90bf4054a776a2e46081339c.bitwarden.com -carLicense: 4PXLB1 -departmentNumber: 3398 -employeeType: Contract -homePhone: +1 213 245-7520 -initials: D. S. -mobile: +1 213 892-2417 -pager: +1 213 183-6502 -roomNumber: 9713 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Giri Glucksman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giri Glucksman -sn: Glucksman -description: This is Giri Glucksman's description -facsimileTelephoneNumber: +1 408 431-8273 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 408 141-7214 -title: Master Janitorial Madonna -userPassword: Password1 -uid: GlucksmG -givenName: Giri -mail: GlucksmG@2a9b1bb4219c473fa5e7f0b996562330.bitwarden.com -carLicense: AS41T2 -departmentNumber: 5168 -employeeType: Employee -homePhone: +1 408 189-7712 -initials: G. G. -mobile: +1 408 333-1247 -pager: +1 408 272-8828 -roomNumber: 8617 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sioux Siomalas -sn: Siomalas -description: This is Sioux Siomalas's description -facsimileTelephoneNumber: +1 818 497-8212 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 178-2177 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: SiomalaS -givenName: Sioux -mail: SiomalaS@e8b42fe4709142ccb9521fb60b9c2535.bitwarden.com -carLicense: 7BAL5R -departmentNumber: 6033 -employeeType: Employee -homePhone: +1 818 948-5613 -initials: S. S. -mobile: +1 818 318-5648 -pager: +1 818 610-1128 -roomNumber: 8571 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jorey Gillet,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jorey Gillet -sn: Gillet -description: This is Jorey Gillet's description -facsimileTelephoneNumber: +1 510 357-1498 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 128-8184 -title: Junior Management Dictator -userPassword: Password1 -uid: GilletJ -givenName: Jorey -mail: GilletJ@3de3a1d37d58453ab287cb68f7be24d3.bitwarden.com -carLicense: ND110M -departmentNumber: 6516 -employeeType: Employee -homePhone: +1 510 845-2642 -initials: J. G. -mobile: +1 510 589-5841 -pager: +1 510 964-4380 -roomNumber: 8241 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shelagh Balutis,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelagh Balutis -sn: Balutis -description: This is Shelagh Balutis's description -facsimileTelephoneNumber: +1 408 599-3963 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 592-8334 -title: Supreme Product Development Technician -userPassword: Password1 -uid: BalutisS -givenName: Shelagh -mail: BalutisS@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com -carLicense: 892B61 -departmentNumber: 8470 -employeeType: Normal -homePhone: +1 408 819-4086 -initials: S. B. -mobile: +1 408 124-8688 -pager: +1 408 845-4777 -roomNumber: 8250 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rachelle Prakash,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rachelle Prakash -sn: Prakash -description: This is Rachelle Prakash's description -facsimileTelephoneNumber: +1 818 666-9939 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 737-1128 -title: Chief Management Developer -userPassword: Password1 -uid: PrakashR -givenName: Rachelle -mail: PrakashR@67a50420f0564b4b9d502195a9eb7324.bitwarden.com -carLicense: TAOU9I -departmentNumber: 5811 -employeeType: Normal -homePhone: +1 818 548-1978 -initials: R. P. -mobile: +1 818 833-5632 -pager: +1 818 502-5634 -roomNumber: 9407 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Akshay OKelly,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akshay OKelly -sn: OKelly -description: This is Akshay OKelly's description -facsimileTelephoneNumber: +1 804 553-3766 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 935-6815 -title: Junior Management Writer -userPassword: Password1 -uid: OKellyA -givenName: Akshay -mail: OKellyA@a87753ac7bf1427f885f1082236b1df1.bitwarden.com -carLicense: REBLR3 -departmentNumber: 9219 -employeeType: Contract -homePhone: +1 804 866-7011 -initials: A. O. -mobile: +1 804 854-6903 -pager: +1 804 317-4988 -roomNumber: 9356 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Condell Kho,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Condell Kho -sn: Kho -description: This is Condell Kho's description -facsimileTelephoneNumber: +1 206 915-7766 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 206 462-4977 -title: Supreme Human Resources Artist -userPassword: Password1 -uid: KhoC -givenName: Condell -mail: KhoC@315d5123c90042aeb10b3a82d996a1e6.bitwarden.com -carLicense: LESC5U -departmentNumber: 8256 -employeeType: Contract -homePhone: +1 206 433-2542 -initials: C. K. -mobile: +1 206 902-2375 -pager: +1 206 123-4112 -roomNumber: 8113 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cordey Ballard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cordey Ballard -sn: Ballard -description: This is Cordey Ballard's description -facsimileTelephoneNumber: +1 206 753-2073 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 364-8091 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: BallardC -givenName: Cordey -mail: BallardC@11fab52cda204855aedbc10b4a7ffea9.bitwarden.com -carLicense: 1XJ9U5 -departmentNumber: 1721 -employeeType: Employee -homePhone: +1 206 123-8045 -initials: C. B. -mobile: +1 206 404-1694 -pager: +1 206 351-7785 -roomNumber: 8606 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amelita Okura,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amelita Okura -sn: Okura -description: This is Amelita Okura's description -facsimileTelephoneNumber: +1 510 833-8035 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 961-4130 -title: Master Management Warrior -userPassword: Password1 -uid: OkuraA -givenName: Amelita -mail: OkuraA@c99079f52c0044f39a4259a6863af5cb.bitwarden.com -carLicense: MD19YU -departmentNumber: 2731 -employeeType: Normal -homePhone: +1 510 828-1031 -initials: A. O. -mobile: +1 510 530-8127 -pager: +1 510 718-2520 -roomNumber: 8568 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chuck Ferruzzi -sn: Ferruzzi -description: This is Chuck Ferruzzi's description -facsimileTelephoneNumber: +1 804 428-7024 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 920-9044 -title: Master Janitorial Developer -userPassword: Password1 -uid: FerruzzC -givenName: Chuck -mail: FerruzzC@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com -carLicense: NFYLVI -departmentNumber: 5501 -employeeType: Normal -homePhone: +1 804 241-2349 -initials: C. F. -mobile: +1 804 804-1782 -pager: +1 804 657-5846 -roomNumber: 8927 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nadeen Longpre,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nadeen Longpre -sn: Longpre -description: This is Nadeen Longpre's description -facsimileTelephoneNumber: +1 408 236-4415 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 684-8793 -title: Junior Management Writer -userPassword: Password1 -uid: LongpreN -givenName: Nadeen -mail: LongpreN@481a6dfc2726429788928adbad28f42a.bitwarden.com -carLicense: 3LYLIE -departmentNumber: 4567 -employeeType: Contract -homePhone: +1 408 891-3467 -initials: N. L. -mobile: +1 408 127-7755 -pager: +1 408 566-7335 -roomNumber: 8078 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Imtaz Chouinard,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imtaz Chouinard -sn: Chouinard -description: This is Imtaz Chouinard's description -facsimileTelephoneNumber: +1 213 132-2657 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 922-3055 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: ChouinaI -givenName: Imtaz -mail: ChouinaI@a12e4e310fd44c829ca56b2c9309abf6.bitwarden.com -carLicense: RW2GY9 -departmentNumber: 8429 -employeeType: Contract -homePhone: +1 213 973-1956 -initials: I. C. -mobile: +1 213 315-7579 -pager: +1 213 792-7962 -roomNumber: 9492 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darbie Weckwerth -sn: Weckwerth -description: This is Darbie Weckwerth's description -facsimileTelephoneNumber: +1 213 141-2724 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 822-8345 -title: Chief Janitorial Developer -userPassword: Password1 -uid: WeckwerD -givenName: Darbie -mail: WeckwerD@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com -carLicense: X5DYB2 -departmentNumber: 9260 -employeeType: Contract -homePhone: +1 213 399-5949 -initials: D. W. -mobile: +1 213 932-6400 -pager: +1 213 686-7411 -roomNumber: 9052 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Melinda Tappert,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melinda Tappert -sn: Tappert -description: This is Melinda Tappert's description -facsimileTelephoneNumber: +1 213 337-6905 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 320-8825 -title: Supreme Administrative Pinhead -userPassword: Password1 -uid: TappertM -givenName: Melinda -mail: TappertM@1f78d8536b924f6f89f5b50f4dff308b.bitwarden.com -carLicense: GU0FME -departmentNumber: 5082 -employeeType: Employee -homePhone: +1 213 330-3040 -initials: M. T. -mobile: +1 213 226-5832 -pager: +1 213 904-1619 -roomNumber: 9664 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faydra Beconovich -sn: Beconovich -description: This is Faydra Beconovich's description -facsimileTelephoneNumber: +1 510 160-8741 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 510 341-4787 -title: Junior Product Testing Manager -userPassword: Password1 -uid: BeconovF -givenName: Faydra -mail: BeconovF@3eed5bea3e8942ed94a18b2b3f161ac5.bitwarden.com -carLicense: 91G3CR -departmentNumber: 1280 -employeeType: Normal -homePhone: +1 510 421-3032 -initials: F. B. -mobile: +1 510 466-8262 -pager: +1 510 368-9676 -roomNumber: 9885 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Misha Karaali,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Misha Karaali -sn: Karaali -description: This is Misha Karaali's description -facsimileTelephoneNumber: +1 804 277-9848 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 938-3699 -title: Chief Payroll Stooge -userPassword: Password1 -uid: KaraaliM -givenName: Misha -mail: KaraaliM@1530b9738dfc47938d89ae3ab8cdd3f3.bitwarden.com -carLicense: QOCIFK -departmentNumber: 6492 -employeeType: Contract -homePhone: +1 804 149-6874 -initials: M. K. -mobile: +1 804 193-9922 -pager: +1 804 990-2044 -roomNumber: 9970 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Evanne Donator,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evanne Donator -sn: Donator -description: This is Evanne Donator's description -facsimileTelephoneNumber: +1 510 382-1469 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 169-2536 -title: Junior Management Mascot -userPassword: Password1 -uid: DonatorE -givenName: Evanne -mail: DonatorE@20891ba894354789902e2f57e98bbb6c.bitwarden.com -carLicense: PKAEXG -departmentNumber: 8128 -employeeType: Employee -homePhone: +1 510 519-4632 -initials: E. D. -mobile: +1 510 144-5877 -pager: +1 510 551-7164 -roomNumber: 9595 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Korry Taghizadeh -sn: Taghizadeh -description: This is Korry Taghizadeh's description -facsimileTelephoneNumber: +1 510 137-3252 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 187-2818 -title: Chief Product Testing Manager -userPassword: Password1 -uid: TaghizaK -givenName: Korry -mail: TaghizaK@729666359ed04f0995bf97703c170436.bitwarden.com -carLicense: GWGJCG -departmentNumber: 1558 -employeeType: Normal -homePhone: +1 510 116-1066 -initials: K. T. -mobile: +1 510 931-9776 -pager: +1 510 665-6781 -roomNumber: 8840 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rijswijk Rushing -sn: Rushing -description: This is Rijswijk Rushing's description -facsimileTelephoneNumber: +1 510 966-8141 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 788-7608 -title: Master Product Development Warrior -userPassword: Password1 -uid: RushingR -givenName: Rijswijk -mail: RushingR@6178a3e5d1d842f5ab8c4894a1bcee8e.bitwarden.com -carLicense: B68OPU -departmentNumber: 8042 -employeeType: Normal -homePhone: +1 510 838-1370 -initials: R. R. -mobile: +1 510 453-6325 -pager: +1 510 539-2355 -roomNumber: 9253 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gussy Prikkel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gussy Prikkel -sn: Prikkel -description: This is Gussy Prikkel's description -facsimileTelephoneNumber: +1 408 706-3032 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 963-8238 -title: Chief Payroll Architect -userPassword: Password1 -uid: PrikkelG -givenName: Gussy -mail: PrikkelG@412af91bb3534a1b89a431db4cb8a7a6.bitwarden.com -carLicense: H961WC -departmentNumber: 4398 -employeeType: Employee -homePhone: +1 408 496-3412 -initials: G. P. -mobile: +1 408 670-7361 -pager: +1 408 171-4063 -roomNumber: 9410 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Liping DaSilva,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liping DaSilva -sn: DaSilva -description: This is Liping DaSilva's description -facsimileTelephoneNumber: +1 213 308-7203 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 440-9363 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: DaSilvaL -givenName: Liping -mail: DaSilvaL@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com -carLicense: GS7MY6 -departmentNumber: 2750 -employeeType: Contract -homePhone: +1 213 347-9001 -initials: L. D. -mobile: +1 213 363-2669 -pager: +1 213 994-3603 -roomNumber: 8995 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keys MummyCraft -sn: MummyCraft -description: This is Keys MummyCraft's description -facsimileTelephoneNumber: +1 213 821-5280 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 498-6280 -title: Junior Human Resources Engineer -userPassword: Password1 -uid: MummyCrK -givenName: Keys -mail: MummyCrK@e52bb91930a9487fa1adfb0b49d2e1a5.bitwarden.com -carLicense: GGO85Q -departmentNumber: 8305 -employeeType: Normal -homePhone: +1 213 187-2879 -initials: K. M. -mobile: +1 213 214-4405 -pager: +1 213 883-4551 -roomNumber: 8402 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=HackHoo Sayed,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HackHoo Sayed -sn: Sayed -description: This is HackHoo Sayed's description -facsimileTelephoneNumber: +1 206 446-6457 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 566-7016 -title: Junior Administrative Warrior -userPassword: Password1 -uid: SayedH -givenName: HackHoo -mail: SayedH@41d9d77642444cc9ab9d5b4e9a3c43fc.bitwarden.com -carLicense: 4M97TE -departmentNumber: 4708 -employeeType: Normal -homePhone: +1 206 879-9412 -initials: H. S. -mobile: +1 206 537-8506 -pager: +1 206 433-6723 -roomNumber: 9348 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigitta Gahr -sn: Gahr -description: This is Brigitta Gahr's description -facsimileTelephoneNumber: +1 415 950-5253 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 710-1718 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: GahrB -givenName: Brigitta -mail: GahrB@f45f4579040a481ab9737c262f8c178e.bitwarden.com -carLicense: 2UV2YK -departmentNumber: 6432 -employeeType: Normal -homePhone: +1 415 798-9717 -initials: B. G. -mobile: +1 415 257-5576 -pager: +1 415 466-5004 -roomNumber: 9272 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rozanne Heurich,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozanne Heurich -sn: Heurich -description: This is Rozanne Heurich's description -facsimileTelephoneNumber: +1 804 849-8816 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 219-5474 -title: Chief Peons Director -userPassword: Password1 -uid: HeurichR -givenName: Rozanne -mail: HeurichR@0b56a4c94023459d8772d8f7af50540e.bitwarden.com -carLicense: GA6VAV -departmentNumber: 1792 -employeeType: Contract -homePhone: +1 804 190-7650 -initials: R. H. -mobile: +1 804 253-3544 -pager: +1 804 258-4154 -roomNumber: 9257 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arabel Omura,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arabel Omura -sn: Omura -description: This is Arabel Omura's description -facsimileTelephoneNumber: +1 213 641-5005 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 561-3650 -title: Junior Management Dictator -userPassword: Password1 -uid: OmuraA -givenName: Arabel -mail: OmuraA@d899cd8457e040e781946aa86814b934.bitwarden.com -carLicense: 04DLKV -departmentNumber: 3102 -employeeType: Contract -homePhone: +1 213 485-9224 -initials: A. O. -mobile: +1 213 351-8630 -pager: +1 213 550-9022 -roomNumber: 8365 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marce Rivest,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marce Rivest -sn: Rivest -description: This is Marce Rivest's description -facsimileTelephoneNumber: +1 510 509-3781 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 510 343-8672 -title: Junior Management Warrior -userPassword: Password1 -uid: RivestM -givenName: Marce -mail: RivestM@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com -carLicense: AX2CF4 -departmentNumber: 8697 -employeeType: Contract -homePhone: +1 510 989-8483 -initials: M. R. -mobile: +1 510 292-2006 -pager: +1 510 737-3423 -roomNumber: 9624 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Irena Hammermeister,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Irena Hammermeister -sn: Hammermeister -description: This is Irena Hammermeister's description -facsimileTelephoneNumber: +1 206 375-2198 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 486-6396 -title: Supreme Administrative Developer -userPassword: Password1 -uid: HammermI -givenName: Irena -mail: HammermI@462635d48ea740ba9a66cf325662e6a5.bitwarden.com -carLicense: CY6L25 -departmentNumber: 8600 -employeeType: Contract -homePhone: +1 206 390-7657 -initials: I. H. -mobile: +1 206 492-7443 -pager: +1 206 106-3216 -roomNumber: 9970 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sotos Bratten,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sotos Bratten -sn: Bratten -description: This is Sotos Bratten's description -facsimileTelephoneNumber: +1 408 453-3497 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 608-8731 -title: Supreme Product Development Stooge -userPassword: Password1 -uid: BrattenS -givenName: Sotos -mail: BrattenS@edda584dd7a3409daa4b2eabe9e2cdb4.bitwarden.com -carLicense: 2CAWI3 -departmentNumber: 4716 -employeeType: Normal -homePhone: +1 408 701-7307 -initials: S. B. -mobile: +1 408 699-7556 -pager: +1 408 879-5063 -roomNumber: 8594 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Venkataraman Hartleb -sn: Hartleb -description: This is Venkataraman Hartleb's description -facsimileTelephoneNumber: +1 408 602-2660 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 408 253-5152 -title: Junior Peons Figurehead -userPassword: Password1 -uid: HartlebV -givenName: Venkataraman -mail: HartlebV@4311bb9fc69e4905a1f6f7f3dd2b8fab.bitwarden.com -carLicense: PXUXF3 -departmentNumber: 9152 -employeeType: Contract -homePhone: +1 408 782-6748 -initials: V. H. -mobile: +1 408 860-9456 -pager: +1 408 170-6092 -roomNumber: 8591 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MinhPhuc Degenova -sn: Degenova -description: This is MinhPhuc Degenova's description -facsimileTelephoneNumber: +1 818 371-6576 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 500-1479 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: DegenovM -givenName: MinhPhuc -mail: DegenovM@c87bc1fef8d745d786889b1fab00a75d.bitwarden.com -carLicense: 0CA780 -departmentNumber: 6773 -employeeType: Normal -homePhone: +1 818 540-6678 -initials: M. D. -mobile: +1 818 889-6380 -pager: +1 818 688-1535 -roomNumber: 8549 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Elpida Vuignier,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elpida Vuignier -sn: Vuignier -description: This is Elpida Vuignier's description -facsimileTelephoneNumber: +1 213 595-6850 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 823-1242 -title: Associate Administrative Admin -userPassword: Password1 -uid: VuignieE -givenName: Elpida -mail: VuignieE@fb42541289ea4a75a098aa5071cf2a78.bitwarden.com -carLicense: JAIQ7P -departmentNumber: 4937 -employeeType: Contract -homePhone: +1 213 849-1793 -initials: E. V. -mobile: +1 213 226-4353 -pager: +1 213 779-4102 -roomNumber: 9158 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Naoma Rowe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naoma Rowe -sn: Rowe -description: This is Naoma Rowe's description -facsimileTelephoneNumber: +1 804 646-8469 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 700-9911 -title: Associate Product Development President -userPassword: Password1 -uid: RoweN -givenName: Naoma -mail: RoweN@66df60c7830b4e4788e97ef6a98c581d.bitwarden.com -carLicense: VSQ0XD -departmentNumber: 8826 -employeeType: Contract -homePhone: +1 804 318-6575 -initials: N. R. -mobile: +1 804 359-6014 -pager: +1 804 609-6714 -roomNumber: 9306 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosabelle Moogk -sn: Moogk -description: This is Rosabelle Moogk's description -facsimileTelephoneNumber: +1 408 610-6477 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 434-4012 -title: Supreme Product Development Admin -userPassword: Password1 -uid: MoogkR -givenName: Rosabelle -mail: MoogkR@928ad853e1494474966df7fb64907ee2.bitwarden.com -carLicense: NSB3Y8 -departmentNumber: 4844 -employeeType: Employee -homePhone: +1 408 871-8899 -initials: R. M. -mobile: +1 408 693-1553 -pager: +1 408 310-2129 -roomNumber: 8385 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pawel Bourget,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pawel Bourget -sn: Bourget -description: This is Pawel Bourget's description -facsimileTelephoneNumber: +1 213 315-8131 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 475-6248 -title: Associate Product Testing Architect -userPassword: Password1 -uid: BourgetP -givenName: Pawel -mail: BourgetP@5f02265632114e54a556740ff6947201.bitwarden.com -carLicense: F8306I -departmentNumber: 6075 -employeeType: Contract -homePhone: +1 213 488-1527 -initials: P. B. -mobile: +1 213 704-2246 -pager: +1 213 965-5493 -roomNumber: 9109 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Deloria Couser,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deloria Couser -sn: Couser -description: This is Deloria Couser's description -facsimileTelephoneNumber: +1 408 895-4134 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 964-1173 -title: Associate Product Testing Admin -userPassword: Password1 -uid: CouserD -givenName: Deloria -mail: CouserD@a62537fc90fa495dacdbf1e945e353e1.bitwarden.com -carLicense: RS4OW6 -departmentNumber: 9583 -employeeType: Normal -homePhone: +1 408 103-1754 -initials: D. C. -mobile: +1 408 392-7196 -pager: +1 408 641-8127 -roomNumber: 9412 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Conni Stainback,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Conni Stainback -sn: Stainback -description: This is Conni Stainback's description -facsimileTelephoneNumber: +1 206 572-7186 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 528-1782 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: StainbaC -givenName: Conni -mail: StainbaC@e7a587ea64f34a73b58bcee55a44c5f9.bitwarden.com -carLicense: 8T2C1A -departmentNumber: 9684 -employeeType: Employee -homePhone: +1 206 260-8398 -initials: C. S. -mobile: +1 206 304-4218 -pager: +1 206 195-1321 -roomNumber: 9197 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Modesta Huszarik,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Modesta Huszarik -sn: Huszarik -description: This is Modesta Huszarik's description -facsimileTelephoneNumber: +1 510 807-6709 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 678-9470 -title: Chief Administrative Technician -userPassword: Password1 -uid: HuszariM -givenName: Modesta -mail: HuszariM@a965fccdc0684ea39fc7e84bc33f6974.bitwarden.com -carLicense: N66D3S -departmentNumber: 2098 -employeeType: Employee -homePhone: +1 510 120-1114 -initials: M. H. -mobile: +1 510 116-4419 -pager: +1 510 278-3474 -roomNumber: 9647 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Reinhold Ribi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reinhold Ribi -sn: Ribi -description: This is Reinhold Ribi's description -facsimileTelephoneNumber: +1 510 456-7741 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 150-3304 -title: Junior Peons Admin -userPassword: Password1 -uid: RibiR -givenName: Reinhold -mail: RibiR@561d94097aa347c8b67fc74b1c6c095c.bitwarden.com -carLicense: Y1UW23 -departmentNumber: 5217 -employeeType: Normal -homePhone: +1 510 390-5470 -initials: R. R. -mobile: +1 510 600-5664 -pager: +1 510 191-1365 -roomNumber: 8679 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Loris Grimes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loris Grimes -sn: Grimes -description: This is Loris Grimes's description -facsimileTelephoneNumber: +1 818 380-1807 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 584-5123 -title: Master Product Development Architect -userPassword: Password1 -uid: GrimesL -givenName: Loris -mail: GrimesL@bd0d542943b6439fba91f92e849851ee.bitwarden.com -carLicense: 8T92SS -departmentNumber: 4045 -employeeType: Contract -homePhone: +1 818 634-5673 -initials: L. G. -mobile: +1 818 849-2623 -pager: +1 818 232-3294 -roomNumber: 8399 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardelia Kopala -sn: Kopala -description: This is Ardelia Kopala's description -facsimileTelephoneNumber: +1 415 475-6662 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 139-6391 -title: Master Product Testing Vice President -userPassword: Password1 -uid: KopalaA -givenName: Ardelia -mail: KopalaA@710eac99d23b4aba917dbd3cddce9e4d.bitwarden.com -carLicense: Q8VBS0 -departmentNumber: 1251 -employeeType: Contract -homePhone: +1 415 483-4082 -initials: A. K. -mobile: +1 415 238-5205 -pager: +1 415 738-3482 -roomNumber: 8072 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sid Walford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sid Walford -sn: Walford -description: This is Sid Walford's description -facsimileTelephoneNumber: +1 818 641-5007 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 331-5302 -title: Supreme Human Resources Director -userPassword: Password1 -uid: WalfordS -givenName: Sid -mail: WalfordS@3b7542a95526493995dfb5d0273708af.bitwarden.com -carLicense: SN4M3L -departmentNumber: 8196 -employeeType: Contract -homePhone: +1 818 737-8423 -initials: S. W. -mobile: +1 818 956-6251 -pager: +1 818 631-7173 -roomNumber: 9139 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatrisa Nahata -sn: Nahata -description: This is Beatrisa Nahata's description -facsimileTelephoneNumber: +1 408 939-6347 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 131-8599 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: NahataB -givenName: Beatrisa -mail: NahataB@1a25c5eecf2b4862871ccde04c2d3ffb.bitwarden.com -carLicense: F7FNDP -departmentNumber: 8543 -employeeType: Contract -homePhone: +1 408 865-2090 -initials: B. N. -mobile: +1 408 244-7118 -pager: +1 408 279-2219 -roomNumber: 9687 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ingrid Kruger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ingrid Kruger -sn: Kruger -description: This is Ingrid Kruger's description -facsimileTelephoneNumber: +1 408 141-6742 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 253-8469 -title: Chief Peons Figurehead -userPassword: Password1 -uid: KrugerI -givenName: Ingrid -mail: KrugerI@febac408e92c495d910b6c8cd4150caa.bitwarden.com -carLicense: QT5V1C -departmentNumber: 7999 -employeeType: Normal -homePhone: +1 408 780-9829 -initials: I. K. -mobile: +1 408 159-2089 -pager: +1 408 357-1412 -roomNumber: 9749 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Baha Raymond,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baha Raymond -sn: Raymond -description: This is Baha Raymond's description -facsimileTelephoneNumber: +1 213 974-8359 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 882-9850 -title: Associate Administrative Sales Rep -userPassword: Password1 -uid: RaymondB -givenName: Baha -mail: RaymondB@cffdccf91145470f922e22e1947852b6.bitwarden.com -carLicense: YY86I7 -departmentNumber: 1886 -employeeType: Contract -homePhone: +1 213 961-9120 -initials: B. R. -mobile: +1 213 428-3320 -pager: +1 213 479-5059 -roomNumber: 9109 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Raffi Legrove,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raffi Legrove -sn: Legrove -description: This is Raffi Legrove's description -facsimileTelephoneNumber: +1 408 326-2716 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 238-9344 -title: Associate Management Madonna -userPassword: Password1 -uid: LegroveR -givenName: Raffi -mail: LegroveR@aebedd81d0064bf4bf3e053b89a4b6eb.bitwarden.com -carLicense: TJID6S -departmentNumber: 5641 -employeeType: Normal -homePhone: +1 408 810-5725 -initials: R. L. -mobile: +1 408 686-6892 -pager: +1 408 338-4748 -roomNumber: 9050 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Julita Shemwell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julita Shemwell -sn: Shemwell -description: This is Julita Shemwell's description -facsimileTelephoneNumber: +1 510 474-7972 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 510 686-5496 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: ShemwelJ -givenName: Julita -mail: ShemwelJ@8488bd932270494b964d988d57bbae02.bitwarden.com -carLicense: NNL6XY -departmentNumber: 5520 -employeeType: Employee -homePhone: +1 510 949-3597 -initials: J. S. -mobile: +1 510 328-3281 -pager: +1 510 609-7867 -roomNumber: 9293 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pooh Claveau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pooh Claveau -sn: Claveau -description: This is Pooh Claveau's description -facsimileTelephoneNumber: +1 804 828-9912 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 713-9326 -title: Associate Payroll Madonna -userPassword: Password1 -uid: ClaveauP -givenName: Pooh -mail: ClaveauP@ae61f912d37d41959ec8fa8339b2d969.bitwarden.com -carLicense: X69TTP -departmentNumber: 5044 -employeeType: Normal -homePhone: +1 804 827-1656 -initials: P. C. -mobile: +1 804 163-6355 -pager: +1 804 189-7468 -roomNumber: 8904 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Haig Zumhagen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haig Zumhagen -sn: Zumhagen -description: This is Haig Zumhagen's description -facsimileTelephoneNumber: +1 408 714-3399 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 952-9731 -title: Chief Payroll Manager -userPassword: Password1 -uid: ZumhageH -givenName: Haig -mail: ZumhageH@7f9e6985348c418e8ff3641fece39e66.bitwarden.com -carLicense: Q5FGYL -departmentNumber: 7787 -employeeType: Employee -homePhone: +1 408 670-9370 -initials: H. Z. -mobile: +1 408 456-9737 -pager: +1 408 761-1515 -roomNumber: 8648 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Penni Gehring,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Penni Gehring -sn: Gehring -description: This is Penni Gehring's description -facsimileTelephoneNumber: +1 206 906-9355 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 965-6309 -title: Associate Janitorial Czar -userPassword: Password1 -uid: GehringP -givenName: Penni -mail: GehringP@67757dd424a44a4183c5e607b39a53fb.bitwarden.com -carLicense: U7SJBH -departmentNumber: 1549 -employeeType: Employee -homePhone: +1 206 679-5542 -initials: P. G. -mobile: +1 206 170-7313 -pager: +1 206 729-8854 -roomNumber: 9471 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Halie BrunerUebelhoer -sn: BrunerUebelhoer -description: This is Halie BrunerUebelhoer's description -facsimileTelephoneNumber: +1 818 280-5104 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 818 985-8204 -title: Master Human Resources Consultant -userPassword: Password1 -uid: BrunerUH -givenName: Halie -mail: BrunerUH@c47fea6640d041afa6361c6048c3c046.bitwarden.com -carLicense: 2GOQTA -departmentNumber: 4739 -employeeType: Normal -homePhone: +1 818 234-5093 -initials: H. B. -mobile: +1 818 742-2860 -pager: +1 818 481-8609 -roomNumber: 8261 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Melodie Parham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melodie Parham -sn: Parham -description: This is Melodie Parham's description -facsimileTelephoneNumber: +1 408 134-3523 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 661-3090 -title: Junior Product Testing Mascot -userPassword: Password1 -uid: ParhamM -givenName: Melodie -mail: ParhamM@97fbe9f514864d40bb6dc85e4d15c1c0.bitwarden.com -carLicense: HGS3KO -departmentNumber: 7261 -employeeType: Employee -homePhone: +1 408 658-6669 -initials: M. P. -mobile: +1 408 630-7182 -pager: +1 408 860-6520 -roomNumber: 9992 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Violetta Fallah,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Violetta Fallah -sn: Fallah -description: This is Violetta Fallah's description -facsimileTelephoneNumber: +1 818 388-1811 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 818 369-4253 -title: Associate Administrative Mascot -userPassword: Password1 -uid: FallahV -givenName: Violetta -mail: FallahV@bed40ec44cae43d6ac6f5b4ad1b78f92.bitwarden.com -carLicense: CJ386B -departmentNumber: 6202 -employeeType: Contract -homePhone: +1 818 600-9652 -initials: V. F. -mobile: +1 818 872-5494 -pager: +1 818 133-7437 -roomNumber: 8701 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shay Molson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shay Molson -sn: Molson -description: This is Shay Molson's description -facsimileTelephoneNumber: +1 213 542-5395 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 461-4947 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: MolsonS -givenName: Shay -mail: MolsonS@2d496c580b4f4816a656973b9003a612.bitwarden.com -carLicense: EK26T3 -departmentNumber: 9290 -employeeType: Normal -homePhone: +1 213 778-7204 -initials: S. M. -mobile: +1 213 550-7831 -pager: +1 213 538-4462 -roomNumber: 8767 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Guillema Halicki,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guillema Halicki -sn: Halicki -description: This is Guillema Halicki's description -facsimileTelephoneNumber: +1 415 785-8474 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 789-1010 -title: Master Product Testing Technician -userPassword: Password1 -uid: HalickiG -givenName: Guillema -mail: HalickiG@48f243cdc32d45d6aad070d357ee442e.bitwarden.com -carLicense: 5Y9P5W -departmentNumber: 4220 -employeeType: Normal -homePhone: +1 415 836-7403 -initials: G. H. -mobile: +1 415 145-4247 -pager: +1 415 914-4134 -roomNumber: 9909 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hardyal Millspaugh -sn: Millspaugh -description: This is Hardyal Millspaugh's description -facsimileTelephoneNumber: +1 804 824-1277 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 804 525-3474 -title: Master Payroll Admin -userPassword: Password1 -uid: MillspaH -givenName: Hardyal -mail: MillspaH@354ea0fe89ed4f6794beb933c091a753.bitwarden.com -carLicense: 5FXOJ9 -departmentNumber: 9857 -employeeType: Employee -homePhone: +1 804 118-7950 -initials: H. M. -mobile: +1 804 920-5510 -pager: +1 804 607-2355 -roomNumber: 8854 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sacto Kao,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sacto Kao -sn: Kao -description: This is Sacto Kao's description -facsimileTelephoneNumber: +1 206 901-1858 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 119-1630 -title: Junior Peons Architect -userPassword: Password1 -uid: KaoS -givenName: Sacto -mail: KaoS@5f07a6760f8048cca79c8506ff02e587.bitwarden.com -carLicense: 2BL7M6 -departmentNumber: 8161 -employeeType: Normal -homePhone: +1 206 968-1244 -initials: S. K. -mobile: +1 206 747-9770 -pager: +1 206 814-4404 -roomNumber: 9911 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Linh Kishi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linh Kishi -sn: Kishi -description: This is Linh Kishi's description -facsimileTelephoneNumber: +1 510 218-2336 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 510 948-7505 -title: Chief Peons Punk -userPassword: Password1 -uid: KishiL -givenName: Linh -mail: KishiL@45ff518891da43879283e296db76d389.bitwarden.com -carLicense: VSAEJF -departmentNumber: 1603 -employeeType: Normal -homePhone: +1 510 135-5904 -initials: L. K. -mobile: +1 510 188-4597 -pager: +1 510 274-6642 -roomNumber: 8405 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Careers Caves,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Careers Caves -sn: Caves -description: This is Careers Caves's description -facsimileTelephoneNumber: +1 415 710-8669 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 240-6796 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: CavesC -givenName: Careers -mail: CavesC@29b1fd9375ce41f58146a7a83c10d36d.bitwarden.com -carLicense: O642XH -departmentNumber: 6309 -employeeType: Employee -homePhone: +1 415 574-8103 -initials: C. C. -mobile: +1 415 206-7820 -pager: +1 415 982-6819 -roomNumber: 9262 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lezlie Niebudek -sn: Niebudek -description: This is Lezlie Niebudek's description -facsimileTelephoneNumber: +1 206 362-4257 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 206 167-2131 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: NiebudeL -givenName: Lezlie -mail: NiebudeL@a1ff5ce57b0d4a5ab92e5a7972b3c4b0.bitwarden.com -carLicense: 9UMWCP -departmentNumber: 1506 -employeeType: Employee -homePhone: +1 206 391-5081 -initials: L. N. -mobile: +1 206 338-3634 -pager: +1 206 772-8901 -roomNumber: 9850 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nicolina Kopke,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolina Kopke -sn: Kopke -description: This is Nicolina Kopke's description -facsimileTelephoneNumber: +1 408 429-7317 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 311-4260 -title: Chief Payroll Vice President -userPassword: Password1 -uid: KopkeN -givenName: Nicolina -mail: KopkeN@79a51a140338408bbf63aba2c3dbf6b9.bitwarden.com -carLicense: UWPSVJ -departmentNumber: 4267 -employeeType: Employee -homePhone: +1 408 328-8991 -initials: N. K. -mobile: +1 408 970-7117 -pager: +1 408 835-9633 -roomNumber: 8740 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kristel Credico,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristel Credico -sn: Credico -description: This is Kristel Credico's description -facsimileTelephoneNumber: +1 206 886-6170 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 206 239-9845 -title: Supreme Human Resources Consultant -userPassword: Password1 -uid: CredicoK -givenName: Kristel -mail: CredicoK@a87753ac7bf1427f885f1082236b1df1.bitwarden.com -carLicense: TRXPEV -departmentNumber: 9252 -employeeType: Employee -homePhone: +1 206 340-4359 -initials: K. C. -mobile: +1 206 820-4265 -pager: +1 206 254-5762 -roomNumber: 8273 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pankaj Clow,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pankaj Clow -sn: Clow -description: This is Pankaj Clow's description -facsimileTelephoneNumber: +1 408 925-7820 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 408 835-4645 -title: Junior Peons Janitor -userPassword: Password1 -uid: ClowP -givenName: Pankaj -mail: ClowP@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com -carLicense: IOJNM4 -departmentNumber: 9698 -employeeType: Contract -homePhone: +1 408 877-3868 -initials: P. C. -mobile: +1 408 323-9078 -pager: +1 408 332-6392 -roomNumber: 9523 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Radomir Remson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Radomir Remson -sn: Remson -description: This is Radomir Remson's description -facsimileTelephoneNumber: +1 408 439-7311 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 156-5854 -title: Supreme Administrative Engineer -userPassword: Password1 -uid: RemsonR -givenName: Radomir -mail: RemsonR@1843ab31697149758be7883059806164.bitwarden.com -carLicense: TOC57N -departmentNumber: 3711 -employeeType: Employee -homePhone: +1 408 788-6566 -initials: R. R. -mobile: +1 408 965-6992 -pager: +1 408 985-8350 -roomNumber: 8436 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Josefina Parr,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Josefina Parr -sn: Parr -description: This is Josefina Parr's description -facsimileTelephoneNumber: +1 213 930-8531 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 210-1791 -title: Master Janitorial Architect -userPassword: Password1 -uid: ParrJ -givenName: Josefina -mail: ParrJ@3e63d8e6be204b07ac7dd7943bdd9def.bitwarden.com -carLicense: D7G7BD -departmentNumber: 1679 -employeeType: Normal -homePhone: +1 213 811-3886 -initials: J. P. -mobile: +1 213 326-9503 -pager: +1 213 659-9770 -roomNumber: 8925 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Korie Grooms,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Korie Grooms -sn: Grooms -description: This is Korie Grooms's description -facsimileTelephoneNumber: +1 415 150-1481 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 415 647-8253 -title: Associate Product Development Evangelist -userPassword: Password1 -uid: GroomsK -givenName: Korie -mail: GroomsK@48ac2947eb2846ecbb24ee61115af2ee.bitwarden.com -carLicense: D5U3D2 -departmentNumber: 6571 -employeeType: Employee -homePhone: +1 415 323-7443 -initials: K. G. -mobile: +1 415 769-4578 -pager: +1 415 765-7990 -roomNumber: 9090 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nelson Lytle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nelson Lytle -sn: Lytle -description: This is Nelson Lytle's description -facsimileTelephoneNumber: +1 818 966-1651 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 694-2492 -title: Master Product Development Figurehead -userPassword: Password1 -uid: LytleN -givenName: Nelson -mail: LytleN@7417b89a4c9b42108e005c797d9f25b5.bitwarden.com -carLicense: OQJL0X -departmentNumber: 8226 -employeeType: Contract -homePhone: +1 818 471-8536 -initials: N. L. -mobile: +1 818 200-2987 -pager: +1 818 524-4391 -roomNumber: 8667 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Greet Driver,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greet Driver -sn: Driver -description: This is Greet Driver's description -facsimileTelephoneNumber: +1 804 480-6122 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 345-1620 -title: Junior Product Development Architect -userPassword: Password1 -uid: DriverG -givenName: Greet -mail: DriverG@65ad77a0a7134c499e3c0bd4fd84a125.bitwarden.com -carLicense: A1YNC7 -departmentNumber: 7517 -employeeType: Normal -homePhone: +1 804 860-5881 -initials: G. D. -mobile: +1 804 646-2044 -pager: +1 804 224-8586 -roomNumber: 8570 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Phillis Pravato,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phillis Pravato -sn: Pravato -description: This is Phillis Pravato's description -facsimileTelephoneNumber: +1 510 707-6722 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 952-8163 -title: Associate Peons Assistant -userPassword: Password1 -uid: PravatoP -givenName: Phillis -mail: PravatoP@f07a2704744543c99ec010f0a9ec3d24.bitwarden.com -carLicense: 2P45LS -departmentNumber: 5523 -employeeType: Employee -homePhone: +1 510 804-5875 -initials: P. P. -mobile: +1 510 825-2476 -pager: +1 510 227-4326 -roomNumber: 9291 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Patch Eberlin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patch Eberlin -sn: Eberlin -description: This is Patch Eberlin's description -facsimileTelephoneNumber: +1 206 128-3464 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 603-5267 -title: Chief Product Development Technician -userPassword: Password1 -uid: EberlinP -givenName: Patch -mail: EberlinP@46a5b2004b96415ab4737f15ebd51c9d.bitwarden.com -carLicense: CCSNFL -departmentNumber: 6465 -employeeType: Employee -homePhone: +1 206 415-6744 -initials: P. E. -mobile: +1 206 603-7669 -pager: +1 206 193-4183 -roomNumber: 9283 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Malorie Goos,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malorie Goos -sn: Goos -description: This is Malorie Goos's description -facsimileTelephoneNumber: +1 415 815-5359 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 684-9166 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: GoosM -givenName: Malorie -mail: GoosM@d101e1afb4ea499090e0cf8a9001282a.bitwarden.com -carLicense: 69JR07 -departmentNumber: 4455 -employeeType: Normal -homePhone: +1 415 724-8387 -initials: M. G. -mobile: +1 415 874-3521 -pager: +1 415 304-3996 -roomNumber: 9511 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KaiWai Kakuta -sn: Kakuta -description: This is KaiWai Kakuta's description -facsimileTelephoneNumber: +1 804 922-7230 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 889-7801 -title: Associate Human Resources Architect -userPassword: Password1 -uid: KakutaK -givenName: KaiWai -mail: KakutaK@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com -carLicense: 45L9GS -departmentNumber: 4733 -employeeType: Normal -homePhone: +1 804 323-4379 -initials: K. K. -mobile: +1 804 688-4390 -pager: +1 804 380-5827 -roomNumber: 8039 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jocelyne Jewett -sn: Jewett -description: This is Jocelyne Jewett's description -facsimileTelephoneNumber: +1 213 133-1504 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 213 494-6663 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: JewettJ -givenName: Jocelyne -mail: JewettJ@7823a7fa07b54bdaae5cb7f5372a506a.bitwarden.com -carLicense: BIKSL5 -departmentNumber: 8800 -employeeType: Employee -homePhone: +1 213 900-7709 -initials: J. J. -mobile: +1 213 927-6245 -pager: +1 213 818-8716 -roomNumber: 8186 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Effie Pracht,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Effie Pracht -sn: Pracht -description: This is Effie Pracht's description -facsimileTelephoneNumber: +1 804 929-6856 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 199-7123 -title: Associate Product Development Engineer -userPassword: Password1 -uid: PrachtE -givenName: Effie -mail: PrachtE@b9847a93402b4d7e9eab2f6967e34b51.bitwarden.com -carLicense: IAWI01 -departmentNumber: 9316 -employeeType: Contract -homePhone: +1 804 160-9236 -initials: E. P. -mobile: +1 804 312-9972 -pager: +1 804 179-5590 -roomNumber: 8357 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Elza Gillon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elza Gillon -sn: Gillon -description: This is Elza Gillon's description -facsimileTelephoneNumber: +1 510 537-5635 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 754-7768 -title: Associate Janitorial Assistant -userPassword: Password1 -uid: GillonE -givenName: Elza -mail: GillonE@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com -carLicense: 0SJLW5 -departmentNumber: 2213 -employeeType: Contract -homePhone: +1 510 656-1921 -initials: E. G. -mobile: +1 510 793-6129 -pager: +1 510 387-8504 -roomNumber: 8643 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maddy Falletti,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maddy Falletti -sn: Falletti -description: This is Maddy Falletti's description -facsimileTelephoneNumber: +1 206 912-6272 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 384-8696 -title: Chief Product Development Artist -userPassword: Password1 -uid: FallettM -givenName: Maddy -mail: FallettM@a14fac4b746f43c590992c0cffe25f62.bitwarden.com -carLicense: ABG592 -departmentNumber: 2623 -employeeType: Contract -homePhone: +1 206 450-1483 -initials: M. F. -mobile: +1 206 253-5243 -pager: +1 206 271-2524 -roomNumber: 9643 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Candee DiFalco,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candee DiFalco -sn: DiFalco -description: This is Candee DiFalco's description -facsimileTelephoneNumber: +1 804 300-1620 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 966-1808 -title: Chief Management Visionary -userPassword: Password1 -uid: DiFalcoC -givenName: Candee -mail: DiFalcoC@b91b1bdb74a74584ada128918dac6578.bitwarden.com -carLicense: UE0P86 -departmentNumber: 7876 -employeeType: Contract -homePhone: +1 804 249-2246 -initials: C. D. -mobile: +1 804 393-8288 -pager: +1 804 187-8454 -roomNumber: 9528 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Martynne McCloughan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martynne McCloughan -sn: McCloughan -description: This is Martynne McCloughan's description -facsimileTelephoneNumber: +1 415 628-7099 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 279-9087 -title: Chief Administrative Technician -userPassword: Password1 -uid: McClougM -givenName: Martynne -mail: McClougM@e974b86e9f10486baa2ed0156d74e959.bitwarden.com -carLicense: H44O9W -departmentNumber: 1022 -employeeType: Employee -homePhone: +1 415 257-6151 -initials: M. M. -mobile: +1 415 467-7644 -pager: +1 415 793-4287 -roomNumber: 8896 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marris Lobello,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marris Lobello -sn: Lobello -description: This is Marris Lobello's description -facsimileTelephoneNumber: +1 213 780-5338 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 574-4731 -title: Associate Janitorial President -userPassword: Password1 -uid: LobelloM -givenName: Marris -mail: LobelloM@a12359b394964b42a1a462b3cf340545.bitwarden.com -carLicense: 5M9FC0 -departmentNumber: 1651 -employeeType: Contract -homePhone: +1 213 899-2761 -initials: M. L. -mobile: +1 213 286-3951 -pager: +1 213 201-1367 -roomNumber: 9393 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rochell Denmark,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rochell Denmark -sn: Denmark -description: This is Rochell Denmark's description -facsimileTelephoneNumber: +1 408 342-1135 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 667-4404 -title: Master Payroll Figurehead -userPassword: Password1 -uid: DenmarkR -givenName: Rochell -mail: DenmarkR@50d7c806edce40aba32e1f9a44a2e284.bitwarden.com -carLicense: 7KVVSH -departmentNumber: 1485 -employeeType: Normal -homePhone: +1 408 495-8743 -initials: R. D. -mobile: +1 408 517-9859 -pager: +1 408 274-8995 -roomNumber: 8581 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annabelle Mallozzi -sn: Mallozzi -description: This is Annabelle Mallozzi's description -facsimileTelephoneNumber: +1 415 970-2564 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 344-4282 -title: Master Product Testing Mascot -userPassword: Password1 -uid: MallozzA -givenName: Annabelle -mail: MallozzA@879fb49a3d5b4e1fa5900dee565590ff.bitwarden.com -carLicense: I9FGFS -departmentNumber: 3593 -employeeType: Employee -homePhone: +1 415 969-7128 -initials: A. M. -mobile: +1 415 326-1325 -pager: +1 415 785-1418 -roomNumber: 9066 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hoekstra Abello -sn: Abello -description: This is Hoekstra Abello's description -facsimileTelephoneNumber: +1 510 347-3215 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 711-6355 -title: Master Human Resources Consultant -userPassword: Password1 -uid: AbelloH -givenName: Hoekstra -mail: AbelloH@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com -carLicense: 8ATUY2 -departmentNumber: 8923 -employeeType: Contract -homePhone: +1 510 656-4321 -initials: H. A. -mobile: +1 510 178-8155 -pager: +1 510 595-1038 -roomNumber: 9651 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ngai Michael,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ngai Michael -sn: Michael -description: This is Ngai Michael's description -facsimileTelephoneNumber: +1 213 782-6817 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 912-6955 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: MichaelN -givenName: Ngai -mail: MichaelN@1487aec275284e49a79c5c4099f33bdb.bitwarden.com -carLicense: 6P4L1P -departmentNumber: 5358 -employeeType: Employee -homePhone: +1 213 266-1454 -initials: N. M. -mobile: +1 213 341-4585 -pager: +1 213 279-2135 -roomNumber: 8228 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=JoLee Fredette,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JoLee Fredette -sn: Fredette -description: This is JoLee Fredette's description -facsimileTelephoneNumber: +1 213 647-3623 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 213 423-9574 -title: Associate Administrative Sales Rep -userPassword: Password1 -uid: FredettJ -givenName: JoLee -mail: FredettJ@bea3a59f852447369b2ae52dc89b101a.bitwarden.com -carLicense: A3RHW3 -departmentNumber: 5349 -employeeType: Contract -homePhone: +1 213 954-9304 -initials: J. F. -mobile: +1 213 497-9359 -pager: +1 213 435-1839 -roomNumber: 8939 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Liv Veedell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liv Veedell -sn: Veedell -description: This is Liv Veedell's description -facsimileTelephoneNumber: +1 415 463-5709 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 316-4749 -title: Junior Product Testing Evangelist -userPassword: Password1 -uid: VeedellL -givenName: Liv -mail: VeedellL@4112fa5751f947c9a6ebd8e6086a4cce.bitwarden.com -carLicense: 4YIPAK -departmentNumber: 5388 -employeeType: Normal -homePhone: +1 415 421-9421 -initials: L. V. -mobile: +1 415 668-9125 -pager: +1 415 848-2112 -roomNumber: 9787 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Verina Coddington,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verina Coddington -sn: Coddington -description: This is Verina Coddington's description -facsimileTelephoneNumber: +1 206 804-8074 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 215-3036 -title: Supreme Product Development Director -userPassword: Password1 -uid: CoddingV -givenName: Verina -mail: CoddingV@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com -carLicense: IKKIQW -departmentNumber: 2096 -employeeType: Contract -homePhone: +1 206 333-4819 -initials: V. C. -mobile: +1 206 911-3348 -pager: +1 206 955-4252 -roomNumber: 8413 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=March Easton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: March Easton -sn: Easton -description: This is March Easton's description -facsimileTelephoneNumber: +1 206 222-6778 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 486-1360 -title: Supreme Management Czar -userPassword: Password1 -uid: EastonM -givenName: March -mail: EastonM@a71c06be904c4f5a89c92e6a220b8c20.bitwarden.com -carLicense: P5BE08 -departmentNumber: 2290 -employeeType: Employee -homePhone: +1 206 195-6350 -initials: M. E. -mobile: +1 206 261-2581 -pager: +1 206 670-1291 -roomNumber: 8129 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jianli Kahhale,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jianli Kahhale -sn: Kahhale -description: This is Jianli Kahhale's description -facsimileTelephoneNumber: +1 415 151-3819 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 265-5034 -title: Supreme Management Fellow -userPassword: Password1 -uid: KahhaleJ -givenName: Jianli -mail: KahhaleJ@118d571b1571425c87bcb58317919134.bitwarden.com -carLicense: 6TKLXC -departmentNumber: 7138 -employeeType: Employee -homePhone: +1 415 519-2736 -initials: J. K. -mobile: +1 415 250-6931 -pager: +1 415 477-8876 -roomNumber: 8272 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shamshad Bozicevich,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shamshad Bozicevich -sn: Bozicevich -description: This is Shamshad Bozicevich's description -facsimileTelephoneNumber: +1 510 467-8406 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 537-6123 -title: Junior Management Developer -userPassword: Password1 -uid: BozicevS -givenName: Shamshad -mail: BozicevS@99fd889b48504677bce0dc492f7e0cf3.bitwarden.com -carLicense: GICEVF -departmentNumber: 2414 -employeeType: Employee -homePhone: +1 510 329-7980 -initials: S. B. -mobile: +1 510 251-9969 -pager: +1 510 442-8040 -roomNumber: 8314 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Renate Kahkonen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renate Kahkonen -sn: Kahkonen -description: This is Renate Kahkonen's description -facsimileTelephoneNumber: +1 408 411-6186 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 910-6740 -title: Chief Management Warrior -userPassword: Password1 -uid: KahkoneR -givenName: Renate -mail: KahkoneR@01d338da3bbb4fa4b6b8cadeb6cc7fae.bitwarden.com -carLicense: GRD6LQ -departmentNumber: 2852 -employeeType: Contract -homePhone: +1 408 772-4764 -initials: R. K. -mobile: +1 408 466-3435 -pager: +1 408 862-6339 -roomNumber: 9303 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Aile Lugsdin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aile Lugsdin -sn: Lugsdin -description: This is Aile Lugsdin's description -facsimileTelephoneNumber: +1 408 748-7499 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 408 378-3173 -title: Supreme Product Development Developer -userPassword: Password1 -uid: LugsdinA -givenName: Aile -mail: LugsdinA@9a209519348642769473b09231da3137.bitwarden.com -carLicense: RBFQLR -departmentNumber: 1689 -employeeType: Contract -homePhone: +1 408 947-4648 -initials: A. L. -mobile: +1 408 556-6105 -pager: +1 408 490-7407 -roomNumber: 8585 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Warwick Gamarnik,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Warwick Gamarnik -sn: Gamarnik -description: This is Warwick Gamarnik's description -facsimileTelephoneNumber: +1 818 556-8798 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 951-3142 -title: Master Peons Developer -userPassword: Password1 -uid: GamarniW -givenName: Warwick -mail: GamarniW@b32188c77df94658a5bd155a122ff5d9.bitwarden.com -carLicense: VQLR7X -departmentNumber: 2930 -employeeType: Normal -homePhone: +1 818 368-6646 -initials: W. G. -mobile: +1 818 296-9087 -pager: +1 818 255-5871 -roomNumber: 9576 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Candee Brubaker,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candee Brubaker -sn: Brubaker -description: This is Candee Brubaker's description -facsimileTelephoneNumber: +1 804 516-6774 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 364-7858 -title: Master Administrative Mascot -userPassword: Password1 -uid: BrubakeC -givenName: Candee -mail: BrubakeC@58dd45ceb2d64fb0b6fd6e1d9136b5e5.bitwarden.com -carLicense: NXL341 -departmentNumber: 8577 -employeeType: Employee -homePhone: +1 804 644-8929 -initials: C. B. -mobile: +1 804 419-7078 -pager: +1 804 505-7755 -roomNumber: 9430 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quality Mitchelson -sn: Mitchelson -description: This is Quality Mitchelson's description -facsimileTelephoneNumber: +1 415 195-3158 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 304-5232 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: MitchelQ -givenName: Quality -mail: MitchelQ@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com -carLicense: WLSWHW -departmentNumber: 2876 -employeeType: Normal -homePhone: +1 415 112-7183 -initials: Q. M. -mobile: +1 415 411-9517 -pager: +1 415 272-9447 -roomNumber: 8349 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Iolanthe Graydon -sn: Graydon -description: This is Iolanthe Graydon's description -facsimileTelephoneNumber: +1 213 696-6712 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 333-1319 -title: Associate Payroll Architect -userPassword: Password1 -uid: GraydonI -givenName: Iolanthe -mail: GraydonI@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com -carLicense: P7R0CE -departmentNumber: 3995 -employeeType: Employee -homePhone: +1 213 535-6857 -initials: I. G. -mobile: +1 213 919-8181 -pager: +1 213 385-4416 -roomNumber: 9399 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nashir Tue,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nashir Tue -sn: Tue -description: This is Nashir Tue's description -facsimileTelephoneNumber: +1 213 111-9666 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 614-3220 -title: Chief Administrative Punk -userPassword: Password1 -uid: TueN -givenName: Nashir -mail: TueN@ec7767ad12a9472c8d17e1cdb30756bf.bitwarden.com -carLicense: QFM6XR -departmentNumber: 8298 -employeeType: Normal -homePhone: +1 213 528-4918 -initials: N. T. -mobile: +1 213 946-1320 -pager: +1 213 274-9015 -roomNumber: 8983 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lolita Hanson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lolita Hanson -sn: Hanson -description: This is Lolita Hanson's description -facsimileTelephoneNumber: +1 213 537-3708 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 213 929-7918 -title: Master Product Development Visionary -userPassword: Password1 -uid: HansonL -givenName: Lolita -mail: HansonL@7a434719bc114db3972a25b2d060ed01.bitwarden.com -carLicense: B5O34S -departmentNumber: 7145 -employeeType: Employee -homePhone: +1 213 989-7513 -initials: L. H. -mobile: +1 213 130-4832 -pager: +1 213 468-5232 -roomNumber: 9416 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Antoinette WPMS,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antoinette WPMS -sn: WPMS -description: This is Antoinette WPMS's description -facsimileTelephoneNumber: +1 510 307-8996 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 419-7705 -title: Supreme Management Consultant -userPassword: Password1 -uid: WPMSA -givenName: Antoinette -mail: WPMSA@2a72bc736ffb4d18ae10b2685172d382.bitwarden.com -carLicense: XTU3YR -departmentNumber: 5431 -employeeType: Employee -homePhone: +1 510 629-6542 -initials: A. W. -mobile: +1 510 289-5597 -pager: +1 510 557-8380 -roomNumber: 8864 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tetsuya Gratton -sn: Gratton -description: This is Tetsuya Gratton's description -facsimileTelephoneNumber: +1 206 782-8993 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 207-7518 -title: Junior Product Development Developer -userPassword: Password1 -uid: GrattonT -givenName: Tetsuya -mail: GrattonT@90c63f93b5c34551a51a09ea98b45b93.bitwarden.com -carLicense: A4IHGW -departmentNumber: 8228 -employeeType: Contract -homePhone: +1 206 754-6686 -initials: T. G. -mobile: +1 206 562-9368 -pager: +1 206 778-1890 -roomNumber: 8611 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Margaux Rollo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margaux Rollo -sn: Rollo -description: This is Margaux Rollo's description -facsimileTelephoneNumber: +1 213 425-4164 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 839-1627 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: RolloM -givenName: Margaux -mail: RolloM@516fd466f892459aa17afb2e000f114d.bitwarden.com -carLicense: XMO44A -departmentNumber: 4957 -employeeType: Contract -homePhone: +1 213 641-4762 -initials: M. R. -mobile: +1 213 218-6289 -pager: +1 213 659-8413 -roomNumber: 9626 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Idell Pung,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idell Pung -sn: Pung -description: This is Idell Pung's description -facsimileTelephoneNumber: +1 510 748-2972 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 683-6687 -title: Junior Product Testing President -userPassword: Password1 -uid: PungI -givenName: Idell -mail: PungI@1a2826f06614436585f4faa14772cf1b.bitwarden.com -carLicense: VF2LIM -departmentNumber: 7155 -employeeType: Contract -homePhone: +1 510 697-7765 -initials: I. P. -mobile: +1 510 899-3235 -pager: +1 510 750-2257 -roomNumber: 9869 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tandy Etoh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tandy Etoh -sn: Etoh -description: This is Tandy Etoh's description -facsimileTelephoneNumber: +1 804 755-4060 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 804 786-2304 -title: Junior Administrative Sales Rep -userPassword: Password1 -uid: EtohT -givenName: Tandy -mail: EtohT@d38183f1beee43c2843b4bd66bd7aeb8.bitwarden.com -carLicense: AJ69M3 -departmentNumber: 5888 -employeeType: Employee -homePhone: +1 804 541-5703 -initials: T. E. -mobile: +1 804 876-8113 -pager: +1 804 263-8644 -roomNumber: 8570 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alaine Ceponis -sn: Ceponis -description: This is Alaine Ceponis's description -facsimileTelephoneNumber: +1 510 621-4591 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 347-9216 -title: Chief Janitorial Fellow -userPassword: Password1 -uid: CeponisA -givenName: Alaine -mail: CeponisA@8580a70392584c53919bc1436276cfec.bitwarden.com -carLicense: 6YCS2X -departmentNumber: 7667 -employeeType: Normal -homePhone: +1 510 734-3214 -initials: A. C. -mobile: +1 510 186-7634 -pager: +1 510 401-8283 -roomNumber: 9351 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clemmie Popowicz -sn: Popowicz -description: This is Clemmie Popowicz's description -facsimileTelephoneNumber: +1 415 694-4280 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 326-5274 -title: Associate Product Development Assistant -userPassword: Password1 -uid: PopowicC -givenName: Clemmie -mail: PopowicC@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com -carLicense: VXL1X6 -departmentNumber: 7312 -employeeType: Employee -homePhone: +1 415 531-8693 -initials: C. P. -mobile: +1 415 846-1040 -pager: +1 415 827-2430 -roomNumber: 8310 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Twana Schneider,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Twana Schneider -sn: Schneider -description: This is Twana Schneider's description -facsimileTelephoneNumber: +1 818 831-2670 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 818 300-7159 -title: Associate Product Testing Mascot -userPassword: Password1 -uid: SchneidT -givenName: Twana -mail: SchneidT@af38a73cbf364504a84e0d960de55c89.bitwarden.com -carLicense: 7JC94A -departmentNumber: 4508 -employeeType: Normal -homePhone: +1 818 394-4830 -initials: T. S. -mobile: +1 818 237-1172 -pager: +1 818 844-3448 -roomNumber: 9732 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isabeau Neumeister -sn: Neumeister -description: This is Isabeau Neumeister's description -facsimileTelephoneNumber: +1 510 944-9689 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 444-6439 -title: Junior Human Resources Assistant -userPassword: Password1 -uid: NeumeisI -givenName: Isabeau -mail: NeumeisI@fd9ad4f975c84639a80c728d3cc48c21.bitwarden.com -carLicense: VWXBJS -departmentNumber: 2688 -employeeType: Normal -homePhone: +1 510 949-1667 -initials: I. N. -mobile: +1 510 330-8313 -pager: +1 510 790-8596 -roomNumber: 9054 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariejeanne Dispatch -sn: Dispatch -description: This is Mariejeanne Dispatch's description -facsimileTelephoneNumber: +1 206 614-4362 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 702-7524 -title: Supreme Payroll Czar -userPassword: Password1 -uid: DispatcM -givenName: Mariejeanne -mail: DispatcM@7bdb7e04a26d459886f8fcaa0d3da8fb.bitwarden.com -carLicense: RFG4NO -departmentNumber: 7250 -employeeType: Employee -homePhone: +1 206 409-1383 -initials: M. D. -mobile: +1 206 953-2430 -pager: +1 206 148-2313 -roomNumber: 8903 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lari Killeen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lari Killeen -sn: Killeen -description: This is Lari Killeen's description -facsimileTelephoneNumber: +1 415 860-6648 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 668-3188 -title: Master Management Technician -userPassword: Password1 -uid: KilleenL -givenName: Lari -mail: KilleenL@787ed9ee968044deafa9223d83fb6389.bitwarden.com -carLicense: J1CJNP -departmentNumber: 8572 -employeeType: Contract -homePhone: +1 415 112-3117 -initials: L. K. -mobile: +1 415 919-2490 -pager: +1 415 780-6250 -roomNumber: 8138 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pars Tigg,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pars Tigg -sn: Tigg -description: This is Pars Tigg's description -facsimileTelephoneNumber: +1 804 777-3365 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 414-5287 -title: Master Management Figurehead -userPassword: Password1 -uid: TiggP -givenName: Pars -mail: TiggP@fae0bbac7f79493abf73636a27934a4a.bitwarden.com -carLicense: UEA6A7 -departmentNumber: 4041 -employeeType: Employee -homePhone: +1 804 877-3763 -initials: P. T. -mobile: +1 804 136-1755 -pager: +1 804 763-2869 -roomNumber: 9013 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marjy Botyrius,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjy Botyrius -sn: Botyrius -description: This is Marjy Botyrius's description -facsimileTelephoneNumber: +1 415 996-3039 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 890-4262 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: BotyriuM -givenName: Marjy -mail: BotyriuM@11f1e40e9ec0473fb6e1f9f61a3e0fb3.bitwarden.com -carLicense: 2B9O8K -departmentNumber: 7070 -employeeType: Employee -homePhone: +1 415 376-6002 -initials: M. B. -mobile: +1 415 769-6185 -pager: +1 415 222-7552 -roomNumber: 8651 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sol Trefts,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sol Trefts -sn: Trefts -description: This is Sol Trefts's description -facsimileTelephoneNumber: +1 818 642-3631 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 821-2052 -title: Associate Payroll President -userPassword: Password1 -uid: TreftsS -givenName: Sol -mail: TreftsS@caee9adce3034f8297c376f15d554364.bitwarden.com -carLicense: 9M3REU -departmentNumber: 8196 -employeeType: Normal -homePhone: +1 818 384-3899 -initials: S. T. -mobile: +1 818 165-7501 -pager: +1 818 822-8063 -roomNumber: 8840 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhonda Hashimoto -sn: Hashimoto -description: This is Rhonda Hashimoto's description -facsimileTelephoneNumber: +1 510 231-8584 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 795-5254 -title: Associate Janitorial Punk -userPassword: Password1 -uid: HashimoR -givenName: Rhonda -mail: HashimoR@7a98f63f548e4181910f55a6615fe20b.bitwarden.com -carLicense: DPS1BP -departmentNumber: 9083 -employeeType: Employee -homePhone: +1 510 727-6232 -initials: R. H. -mobile: +1 510 793-2633 -pager: +1 510 420-3770 -roomNumber: 8074 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thaddeus Blezard -sn: Blezard -description: This is Thaddeus Blezard's description -facsimileTelephoneNumber: +1 804 349-6650 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 804 365-8195 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: BlezardT -givenName: Thaddeus -mail: BlezardT@b06576e7cc594af79143f743174735e0.bitwarden.com -carLicense: L8RMKS -departmentNumber: 3719 -employeeType: Contract -homePhone: +1 804 867-7471 -initials: T. B. -mobile: +1 804 567-7087 -pager: +1 804 853-5066 -roomNumber: 8877 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leigh Boulerice,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leigh Boulerice -sn: Boulerice -description: This is Leigh Boulerice's description -facsimileTelephoneNumber: +1 510 498-1701 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 893-9325 -title: Chief Peons Engineer -userPassword: Password1 -uid: BouleriL -givenName: Leigh -mail: BouleriL@ba60a08b258046f98633fd3c737e4f83.bitwarden.com -carLicense: BN2P1U -departmentNumber: 2867 -employeeType: Employee -homePhone: +1 510 955-3538 -initials: L. B. -mobile: +1 510 746-5087 -pager: +1 510 314-7273 -roomNumber: 9843 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Harpal Bashton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harpal Bashton -sn: Bashton -description: This is Harpal Bashton's description -facsimileTelephoneNumber: +1 415 223-1725 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 389-5147 -title: Associate Management Assistant -userPassword: Password1 -uid: BashtonH -givenName: Harpal -mail: BashtonH@cad99f43d8bb4bb385c87910c97d09f6.bitwarden.com -carLicense: WDJ578 -departmentNumber: 4963 -employeeType: Normal -homePhone: +1 415 491-2918 -initials: H. B. -mobile: +1 415 805-8559 -pager: +1 415 564-9100 -roomNumber: 9373 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Valeda Laliberte,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valeda Laliberte -sn: Laliberte -description: This is Valeda Laliberte's description -facsimileTelephoneNumber: +1 213 711-2957 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 112-9388 -title: Supreme Management Dictator -userPassword: Password1 -uid: LaliberV -givenName: Valeda -mail: LaliberV@50bab9f9cf1041a789372e5001d27214.bitwarden.com -carLicense: 1LYLMU -departmentNumber: 3619 -employeeType: Normal -homePhone: +1 213 591-2272 -initials: V. L. -mobile: +1 213 236-5275 -pager: +1 213 678-1294 -roomNumber: 8817 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Winnah Kabel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winnah Kabel -sn: Kabel -description: This is Winnah Kabel's description -facsimileTelephoneNumber: +1 510 667-5184 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 469-7590 -title: Chief Administrative Consultant -userPassword: Password1 -uid: KabelW -givenName: Winnah -mail: KabelW@ed183240d2274a60918dec7c056a1b86.bitwarden.com -carLicense: 24XX1R -departmentNumber: 9276 -employeeType: Employee -homePhone: +1 510 577-9845 -initials: W. K. -mobile: +1 510 400-2910 -pager: +1 510 828-8163 -roomNumber: 9756 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lecien Bunting,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lecien Bunting -sn: Bunting -description: This is Lecien Bunting's description -facsimileTelephoneNumber: +1 510 817-5616 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 510 444-3256 -title: Supreme Human Resources Figurehead -userPassword: Password1 -uid: BuntingL -givenName: Lecien -mail: BuntingL@fd2e8792325547b4a50dd52cda4bc63f.bitwarden.com -carLicense: B0UDFO -departmentNumber: 8267 -employeeType: Contract -homePhone: +1 510 780-3289 -initials: L. B. -mobile: +1 510 651-7478 -pager: +1 510 766-6371 -roomNumber: 8293 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Blancha TempleDowning,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blancha TempleDowning -sn: TempleDowning -description: This is Blancha TempleDowning's description -facsimileTelephoneNumber: +1 510 456-2318 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 766-6568 -title: Junior Peons Visionary -userPassword: Password1 -uid: TempleDB -givenName: Blancha -mail: TempleDB@ffcb266a0b9d4db986bd5378efac6255.bitwarden.com -carLicense: FLCL8V -departmentNumber: 9605 -employeeType: Employee -homePhone: +1 510 533-6119 -initials: B. T. -mobile: +1 510 287-5039 -pager: +1 510 898-7280 -roomNumber: 8188 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kyla Burton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kyla Burton -sn: Burton -description: This is Kyla Burton's description -facsimileTelephoneNumber: +1 804 770-5625 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 706-7814 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: BurtonK -givenName: Kyla -mail: BurtonK@9976848d05f44dc7b3c15447d59df348.bitwarden.com -carLicense: TFBMMN -departmentNumber: 8060 -employeeType: Normal -homePhone: +1 804 947-9681 -initials: K. B. -mobile: +1 804 312-5312 -pager: +1 804 164-7305 -roomNumber: 9885 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlos Maenpaa -sn: Maenpaa -description: This is Carlos Maenpaa's description -facsimileTelephoneNumber: +1 804 802-6886 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 804 970-8788 -title: Junior Payroll Developer -userPassword: Password1 -uid: MaenpaaC -givenName: Carlos -mail: MaenpaaC@903db400671047c5907d8ec3d0a66865.bitwarden.com -carLicense: QQV7DS -departmentNumber: 6755 -employeeType: Normal -homePhone: +1 804 349-9024 -initials: C. M. -mobile: +1 804 748-1936 -pager: +1 804 520-9707 -roomNumber: 9416 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ronna Faison,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronna Faison -sn: Faison -description: This is Ronna Faison's description -facsimileTelephoneNumber: +1 408 164-7128 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 405-9250 -title: Junior Payroll Artist -userPassword: Password1 -uid: FaisonR -givenName: Ronna -mail: FaisonR@4ec057135a5045f1a9989fae44b8b962.bitwarden.com -carLicense: UP9P5O -departmentNumber: 9678 -employeeType: Contract -homePhone: +1 408 787-9023 -initials: R. F. -mobile: +1 408 904-6014 -pager: +1 408 941-2015 -roomNumber: 9703 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andriette Waggoner -sn: Waggoner -description: This is Andriette Waggoner's description -facsimileTelephoneNumber: +1 510 846-7570 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 743-1749 -title: Chief Product Testing Technician -userPassword: Password1 -uid: WaggoneA -givenName: Andriette -mail: WaggoneA@033d1e3842054827934162f293371ad8.bitwarden.com -carLicense: C0AQBD -departmentNumber: 7839 -employeeType: Employee -homePhone: +1 510 785-2200 -initials: A. W. -mobile: +1 510 937-9943 -pager: +1 510 965-4407 -roomNumber: 9929 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nel Mohrmann,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nel Mohrmann -sn: Mohrmann -description: This is Nel Mohrmann's description -facsimileTelephoneNumber: +1 804 575-5099 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 937-2374 -title: Master Peons Writer -userPassword: Password1 -uid: MohrmanN -givenName: Nel -mail: MohrmanN@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com -carLicense: FVB4C3 -departmentNumber: 5565 -employeeType: Contract -homePhone: +1 804 150-4461 -initials: N. M. -mobile: +1 804 404-7816 -pager: +1 804 886-3247 -roomNumber: 8311 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Naresh Kok,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naresh Kok -sn: Kok -description: This is Naresh Kok's description -facsimileTelephoneNumber: +1 213 807-3264 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 171-9765 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: KokN -givenName: Naresh -mail: KokN@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com -carLicense: PTIBF1 -departmentNumber: 4682 -employeeType: Contract -homePhone: +1 213 643-2170 -initials: N. K. -mobile: +1 213 270-7248 -pager: +1 213 427-6218 -roomNumber: 8181 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cang Kinamon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cang Kinamon -sn: Kinamon -description: This is Cang Kinamon's description -facsimileTelephoneNumber: +1 510 145-9844 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 474-3903 -title: Chief Management Technician -userPassword: Password1 -uid: KinamonC -givenName: Cang -mail: KinamonC@0573bd112aca464284b0d9eac2753606.bitwarden.com -carLicense: HSKEBX -departmentNumber: 6785 -employeeType: Normal -homePhone: +1 510 502-2961 -initials: C. K. -mobile: +1 510 634-9275 -pager: +1 510 824-5481 -roomNumber: 9673 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amalea Snyder,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amalea Snyder -sn: Snyder -description: This is Amalea Snyder's description -facsimileTelephoneNumber: +1 206 213-7029 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 791-5240 -title: Associate Management Figurehead -userPassword: Password1 -uid: SnyderA -givenName: Amalea -mail: SnyderA@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com -carLicense: SX1KS7 -departmentNumber: 2792 -employeeType: Contract -homePhone: +1 206 265-9361 -initials: A. S. -mobile: +1 206 113-6585 -pager: +1 206 484-4508 -roomNumber: 8524 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Caryn Rizk,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caryn Rizk -sn: Rizk -description: This is Caryn Rizk's description -facsimileTelephoneNumber: +1 818 199-2385 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 580-8739 -title: Master Human Resources Punk -userPassword: Password1 -uid: RizkC -givenName: Caryn -mail: RizkC@c9a4b60fa1eb470eb513b6d959a476c0.bitwarden.com -carLicense: NKXQN2 -departmentNumber: 7080 -employeeType: Employee -homePhone: +1 818 716-9937 -initials: C. R. -mobile: +1 818 583-3481 -pager: +1 818 458-6294 -roomNumber: 8008 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Edel AbiAad,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edel AbiAad -sn: AbiAad -description: This is Edel AbiAad's description -facsimileTelephoneNumber: +1 818 366-9530 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 450-8071 -title: Chief Management Admin -userPassword: Password1 -uid: AbiAadE -givenName: Edel -mail: AbiAadE@9dc8b996c4c343d08d2e402f031d6954.bitwarden.com -carLicense: VVLH7M -departmentNumber: 4357 -employeeType: Contract -homePhone: +1 818 158-2354 -initials: E. A. -mobile: +1 818 533-3424 -pager: +1 818 294-2496 -roomNumber: 8243 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jey Dufresne,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jey Dufresne -sn: Dufresne -description: This is Jey Dufresne's description -facsimileTelephoneNumber: +1 206 984-1860 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 352-9331 -title: Master Management Czar -userPassword: Password1 -uid: DufresnJ -givenName: Jey -mail: DufresnJ@cebe5fd44d104e0c944a51b06ff453a6.bitwarden.com -carLicense: 6GLRQ5 -departmentNumber: 1854 -employeeType: Normal -homePhone: +1 206 340-3756 -initials: J. D. -mobile: +1 206 746-6332 -pager: +1 206 991-5174 -roomNumber: 9834 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kass Lyliston,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kass Lyliston -sn: Lyliston -description: This is Kass Lyliston's description -facsimileTelephoneNumber: +1 213 109-7299 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 594-9541 -title: Chief Peons Writer -userPassword: Password1 -uid: LylistoK -givenName: Kass -mail: LylistoK@db7691c9dca24eb7875f7a9259652b96.bitwarden.com -carLicense: YULLTF -departmentNumber: 5001 -employeeType: Employee -homePhone: +1 213 932-7992 -initials: K. L. -mobile: +1 213 793-8022 -pager: +1 213 880-4516 -roomNumber: 9000 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ervin Heiliger -sn: Heiliger -description: This is Ervin Heiliger's description -facsimileTelephoneNumber: +1 408 591-7442 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 408 477-8614 -title: Associate Janitorial Figurehead -userPassword: Password1 -uid: HeiligeE -givenName: Ervin -mail: HeiligeE@4ac57cc4c8df40e5be8ca01811d8b65f.bitwarden.com -carLicense: MLQ9KB -departmentNumber: 6607 -employeeType: Contract -homePhone: +1 408 365-6152 -initials: E. H. -mobile: +1 408 679-6211 -pager: +1 408 297-7377 -roomNumber: 9263 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gabie Autoquote,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabie Autoquote -sn: Autoquote -description: This is Gabie Autoquote's description -facsimileTelephoneNumber: +1 415 955-7126 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 444-9026 -title: Supreme Management Visionary -userPassword: Password1 -uid: AutoquoG -givenName: Gabie -mail: AutoquoG@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com -carLicense: 31TFJ9 -departmentNumber: 7561 -employeeType: Contract -homePhone: +1 415 172-7180 -initials: G. A. -mobile: +1 415 966-1031 -pager: +1 415 807-5904 -roomNumber: 9966 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vina Sebastian,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vina Sebastian -sn: Sebastian -description: This is Vina Sebastian's description -facsimileTelephoneNumber: +1 213 109-5720 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 524-8688 -title: Junior Peons Warrior -userPassword: Password1 -uid: SebastiV -givenName: Vina -mail: SebastiV@a233dd701c7c4e6f923dfda0c8035d34.bitwarden.com -carLicense: R5XD65 -departmentNumber: 1668 -employeeType: Contract -homePhone: +1 213 266-4763 -initials: V. S. -mobile: +1 213 564-5519 -pager: +1 213 781-5710 -roomNumber: 8256 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Annabella Blasing,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annabella Blasing -sn: Blasing -description: This is Annabella Blasing's description -facsimileTelephoneNumber: +1 213 396-3012 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 902-4241 -title: Master Janitorial Sales Rep -userPassword: Password1 -uid: BlasingA -givenName: Annabella -mail: BlasingA@aea15ef0456d4cd2988add4323d0edb7.bitwarden.com -carLicense: 172ED6 -departmentNumber: 4456 -employeeType: Employee -homePhone: +1 213 707-6165 -initials: A. B. -mobile: +1 213 739-2168 -pager: +1 213 733-3356 -roomNumber: 9694 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nicolette Spann,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolette Spann -sn: Spann -description: This is Nicolette Spann's description -facsimileTelephoneNumber: +1 415 652-7781 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 704-4101 -title: Master Human Resources Director -userPassword: Password1 -uid: SpannN -givenName: Nicolette -mail: SpannN@b705e8d79a484d328a25479946645112.bitwarden.com -carLicense: KBM228 -departmentNumber: 9787 -employeeType: Normal -homePhone: +1 415 100-5944 -initials: N. S. -mobile: +1 415 452-9036 -pager: +1 415 369-8491 -roomNumber: 9204 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Blancha Bradee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blancha Bradee -sn: Bradee -description: This is Blancha Bradee's description -facsimileTelephoneNumber: +1 415 487-6988 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 358-5739 -title: Master Product Development Technician -userPassword: Password1 -uid: BradeeB -givenName: Blancha -mail: BradeeB@32fe0278ad444a168aa2715b611540e7.bitwarden.com -carLicense: 7VCFSE -departmentNumber: 5944 -employeeType: Contract -homePhone: +1 415 257-2050 -initials: B. B. -mobile: +1 415 559-7813 -pager: +1 415 222-9912 -roomNumber: 9658 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tamarah Solheim,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamarah Solheim -sn: Solheim -description: This is Tamarah Solheim's description -facsimileTelephoneNumber: +1 213 746-9808 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 865-9880 -title: Associate Administrative Technician -userPassword: Password1 -uid: SolheimT -givenName: Tamarah -mail: SolheimT@97b4c3b829464aa0bb43fe8a8ccef3d0.bitwarden.com -carLicense: JXJ237 -departmentNumber: 7538 -employeeType: Employee -homePhone: +1 213 747-1593 -initials: T. S. -mobile: +1 213 455-9756 -pager: +1 213 805-7065 -roomNumber: 8608 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natascha Colquhoun -sn: Colquhoun -description: This is Natascha Colquhoun's description -facsimileTelephoneNumber: +1 510 319-2595 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 725-8537 -title: Associate Payroll Visionary -userPassword: Password1 -uid: ColquhoN -givenName: Natascha -mail: ColquhoN@24af3dac7e7c4580ae1949e9dbc7b5bd.bitwarden.com -carLicense: IDKQGI -departmentNumber: 9551 -employeeType: Employee -homePhone: +1 510 601-7529 -initials: N. C. -mobile: +1 510 749-7758 -pager: +1 510 424-7706 -roomNumber: 9071 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cleo Depew,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cleo Depew -sn: Depew -description: This is Cleo Depew's description -facsimileTelephoneNumber: +1 213 437-6800 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 213 942-1344 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: DepewC -givenName: Cleo -mail: DepewC@eea1742874a24c018dad0a15722dcd0b.bitwarden.com -carLicense: DGYPCQ -departmentNumber: 9753 -employeeType: Normal -homePhone: +1 213 165-6226 -initials: C. D. -mobile: +1 213 712-8406 -pager: +1 213 791-4798 -roomNumber: 8020 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gordon Galligan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gordon Galligan -sn: Galligan -description: This is Gordon Galligan's description -facsimileTelephoneNumber: +1 408 290-5994 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 496-3146 -title: Associate Peons Engineer -userPassword: Password1 -uid: GalligaG -givenName: Gordon -mail: GalligaG@07bd96f3cb0145a4932b94a7fa79769c.bitwarden.com -carLicense: B5YSSV -departmentNumber: 6774 -employeeType: Employee -homePhone: +1 408 343-1464 -initials: G. G. -mobile: +1 408 499-1846 -pager: +1 408 151-3289 -roomNumber: 9017 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blanca Tiseo -sn: Tiseo -description: This is Blanca Tiseo's description -facsimileTelephoneNumber: +1 408 249-9382 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 919-7230 -title: Master Janitorial Assistant -userPassword: Password1 -uid: TiseoB -givenName: Blanca -mail: TiseoB@4c905761dfd345f0bec1fb45af8eef64.bitwarden.com -carLicense: KKAIYQ -departmentNumber: 3671 -employeeType: Employee -homePhone: +1 408 726-4766 -initials: B. T. -mobile: +1 408 805-2334 -pager: +1 408 224-1454 -roomNumber: 9688 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Terra Brookhart,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terra Brookhart -sn: Brookhart -description: This is Terra Brookhart's description -facsimileTelephoneNumber: +1 213 589-3358 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 871-1120 -title: Chief Product Testing Madonna -userPassword: Password1 -uid: BrookhaT -givenName: Terra -mail: BrookhaT@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com -carLicense: H77VTM -departmentNumber: 1520 -employeeType: Contract -homePhone: +1 213 425-6609 -initials: T. B. -mobile: +1 213 456-1307 -pager: +1 213 325-1071 -roomNumber: 9112 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elladine Wegrowicz -sn: Wegrowicz -description: This is Elladine Wegrowicz's description -facsimileTelephoneNumber: +1 206 378-7889 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 493-2925 -title: Supreme Peons Fellow -userPassword: Password1 -uid: WegrowiE -givenName: Elladine -mail: WegrowiE@d275905ea7174c8cab687a1c10573cba.bitwarden.com -carLicense: 40NA03 -departmentNumber: 1653 -employeeType: Employee -homePhone: +1 206 952-5996 -initials: E. W. -mobile: +1 206 328-6662 -pager: +1 206 219-9890 -roomNumber: 9562 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hellen Benzick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hellen Benzick -sn: Benzick -description: This is Hellen Benzick's description -facsimileTelephoneNumber: +1 206 104-6562 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 206 453-8362 -title: Chief Payroll Assistant -userPassword: Password1 -uid: BenzickH -givenName: Hellen -mail: BenzickH@eb3f0e8c75a34fb08e8613d84752c88e.bitwarden.com -carLicense: LGT1H3 -departmentNumber: 5545 -employeeType: Normal -homePhone: +1 206 387-5427 -initials: H. B. -mobile: +1 206 792-3977 -pager: +1 206 126-7682 -roomNumber: 9563 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jenda Serrano,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenda Serrano -sn: Serrano -description: This is Jenda Serrano's description -facsimileTelephoneNumber: +1 408 579-2401 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 213-9593 -title: Junior Peons Warrior -userPassword: Password1 -uid: SerranoJ -givenName: Jenda -mail: SerranoJ@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com -carLicense: A76DWJ -departmentNumber: 6471 -employeeType: Contract -homePhone: +1 408 607-6800 -initials: J. S. -mobile: +1 408 578-8025 -pager: +1 408 178-3903 -roomNumber: 8330 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chrystal Draves,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chrystal Draves -sn: Draves -description: This is Chrystal Draves's description -facsimileTelephoneNumber: +1 213 330-5106 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 601-5816 -title: Junior Management Sales Rep -userPassword: Password1 -uid: DravesC -givenName: Chrystal -mail: DravesC@7dc4d22df72d4b7ea867e84e8a1a18c9.bitwarden.com -carLicense: EM7MML -departmentNumber: 4174 -employeeType: Normal -homePhone: +1 213 587-2231 -initials: C. D. -mobile: +1 213 673-5580 -pager: +1 213 793-3371 -roomNumber: 9263 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mounir Wadsworth -sn: Wadsworth -description: This is Mounir Wadsworth's description -facsimileTelephoneNumber: +1 415 272-7315 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 467-3591 -title: Junior Janitorial Czar -userPassword: Password1 -uid: WadsworM -givenName: Mounir -mail: WadsworM@012a5cfab6324107b0814d36b8f41041.bitwarden.com -carLicense: 9VE3LT -departmentNumber: 1014 -employeeType: Contract -homePhone: +1 415 466-6388 -initials: M. W. -mobile: +1 415 275-5949 -pager: +1 415 242-9817 -roomNumber: 9071 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphna Bedoya -sn: Bedoya -description: This is Daphna Bedoya's description -facsimileTelephoneNumber: +1 510 908-5495 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 571-9602 -title: Master Human Resources Assistant -userPassword: Password1 -uid: BedoyaD -givenName: Daphna -mail: BedoyaD@5bf44110ed3743de8af47997ebc8b9fe.bitwarden.com -carLicense: HQNHV2 -departmentNumber: 8036 -employeeType: Normal -homePhone: +1 510 433-8434 -initials: D. B. -mobile: +1 510 652-7927 -pager: +1 510 344-9063 -roomNumber: 9142 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nicola Dallago,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicola Dallago -sn: Dallago -description: This is Nicola Dallago's description -facsimileTelephoneNumber: +1 408 106-4803 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 132-9248 -title: Junior Management Developer -userPassword: Password1 -uid: DallagoN -givenName: Nicola -mail: DallagoN@32dba15e87f24180a52c2c7b3d16eedf.bitwarden.com -carLicense: 6V5E1E -departmentNumber: 1594 -employeeType: Contract -homePhone: +1 408 850-8062 -initials: N. D. -mobile: +1 408 894-2336 -pager: +1 408 801-7661 -roomNumber: 9061 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gisele Zattiero,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gisele Zattiero -sn: Zattiero -description: This is Gisele Zattiero's description -facsimileTelephoneNumber: +1 206 336-2558 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 184-3261 -title: Master Payroll Technician -userPassword: Password1 -uid: ZattierG -givenName: Gisele -mail: ZattierG@b1bef6e7419544e590275224d59e367b.bitwarden.com -carLicense: EP9ICJ -departmentNumber: 1578 -employeeType: Normal -homePhone: +1 206 576-6938 -initials: G. Z. -mobile: +1 206 877-3071 -pager: +1 206 780-3090 -roomNumber: 9069 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nora Hishchak,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nora Hishchak -sn: Hishchak -description: This is Nora Hishchak's description -facsimileTelephoneNumber: +1 213 116-2840 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 838-7526 -title: Supreme Peons Writer -userPassword: Password1 -uid: HishchaN -givenName: Nora -mail: HishchaN@b968f655b96e4ab58fcc2e120f71a7b7.bitwarden.com -carLicense: JXNACA -departmentNumber: 8195 -employeeType: Employee -homePhone: +1 213 195-2502 -initials: N. H. -mobile: +1 213 463-8440 -pager: +1 213 271-8495 -roomNumber: 8919 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jagat Luszczek -sn: Luszczek -description: This is Jagat Luszczek's description -facsimileTelephoneNumber: +1 213 509-5246 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 562-5926 -title: Associate Product Testing Czar -userPassword: Password1 -uid: LuszczeJ -givenName: Jagat -mail: LuszczeJ@742fffab1692421a8cd639c32b1e9444.bitwarden.com -carLicense: GNX981 -departmentNumber: 4687 -employeeType: Normal -homePhone: +1 213 155-5602 -initials: J. L. -mobile: +1 213 266-2489 -pager: +1 213 924-6101 -roomNumber: 9969 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Merrili Janelle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrili Janelle -sn: Janelle -description: This is Merrili Janelle's description -facsimileTelephoneNumber: +1 415 226-9606 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 374-3586 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: JanelleM -givenName: Merrili -mail: JanelleM@ef3d7ce4cf844052b389bbe166c531bc.bitwarden.com -carLicense: ROXIYP -departmentNumber: 6461 -employeeType: Employee -homePhone: +1 415 392-4548 -initials: M. J. -mobile: +1 415 657-2698 -pager: +1 415 841-8018 -roomNumber: 8554 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Claire Valia,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claire Valia -sn: Valia -description: This is Claire Valia's description -facsimileTelephoneNumber: +1 408 961-3827 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 487-2862 -title: Chief Payroll Director -userPassword: Password1 -uid: ValiaC -givenName: Claire -mail: ValiaC@bd9a2e982f524b64b04ed8892de43767.bitwarden.com -carLicense: B0BTYT -departmentNumber: 9365 -employeeType: Employee -homePhone: +1 408 897-1639 -initials: C. V. -mobile: +1 408 741-9695 -pager: +1 408 584-5037 -roomNumber: 9675 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carol Vonderhaar -sn: Vonderhaar -description: This is Carol Vonderhaar's description -facsimileTelephoneNumber: +1 408 267-2564 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 408 758-5925 -title: Master Administrative Assistant -userPassword: Password1 -uid: VonderhC -givenName: Carol -mail: VonderhC@b4636d7df71f4835817a7714801280f8.bitwarden.com -carLicense: 91X8PX -departmentNumber: 1222 -employeeType: Normal -homePhone: +1 408 746-6100 -initials: C. V. -mobile: +1 408 559-5194 -pager: +1 408 592-9937 -roomNumber: 8959 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Farica Horwitz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farica Horwitz -sn: Horwitz -description: This is Farica Horwitz's description -facsimileTelephoneNumber: +1 818 448-3241 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 327-8655 -title: Junior Payroll Grunt -userPassword: Password1 -uid: HorwitzF -givenName: Farica -mail: HorwitzF@1a03988f40a349c1abd53f73e0e2d871.bitwarden.com -carLicense: BN2X4O -departmentNumber: 2598 -employeeType: Contract -homePhone: +1 818 110-1155 -initials: F. H. -mobile: +1 818 322-2310 -pager: +1 818 373-7975 -roomNumber: 8301 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gregory Bluethner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gregory Bluethner -sn: Bluethner -description: This is Gregory Bluethner's description -facsimileTelephoneNumber: +1 415 840-2114 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 309-1544 -title: Master Peons Punk -userPassword: Password1 -uid: BluethnG -givenName: Gregory -mail: BluethnG@b23ade701c9b44bd8b1f8301f8f9850d.bitwarden.com -carLicense: LKW12O -departmentNumber: 1714 -employeeType: Employee -homePhone: +1 415 377-4494 -initials: G. B. -mobile: +1 415 798-4595 -pager: +1 415 359-1541 -roomNumber: 9737 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wanda Patchcor -sn: Patchcor -description: This is Wanda Patchcor's description -facsimileTelephoneNumber: +1 206 109-1608 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 891-6545 -title: Master Product Testing Technician -userPassword: Password1 -uid: PatchcoW -givenName: Wanda -mail: PatchcoW@1114ec94893c4de2b94b261fe2161258.bitwarden.com -carLicense: IG0KEC -departmentNumber: 6492 -employeeType: Contract -homePhone: +1 206 755-6770 -initials: W. P. -mobile: +1 206 707-3787 -pager: +1 206 778-7342 -roomNumber: 9793 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wenonah Thaxton -sn: Thaxton -description: This is Wenonah Thaxton's description -facsimileTelephoneNumber: +1 804 845-7109 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 578-4056 -title: Master Janitorial Evangelist -userPassword: Password1 -uid: ThaxtonW -givenName: Wenonah -mail: ThaxtonW@d878ac5b0d4241d7915c9954538bd502.bitwarden.com -carLicense: Q7W17T -departmentNumber: 7375 -employeeType: Employee -homePhone: +1 804 700-5790 -initials: W. T. -mobile: +1 804 987-8693 -pager: +1 804 644-4551 -roomNumber: 8859 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatrice Dikaitis -sn: Dikaitis -description: This is Beatrice Dikaitis's description -facsimileTelephoneNumber: +1 510 535-2104 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 964-2863 -title: Associate Administrative Visionary -userPassword: Password1 -uid: DikaitiB -givenName: Beatrice -mail: DikaitiB@28fd72e4e1764c5c81212e44cd7113d3.bitwarden.com -carLicense: TAJ0FF -departmentNumber: 2112 -employeeType: Employee -homePhone: +1 510 667-5282 -initials: B. D. -mobile: +1 510 815-6749 -pager: +1 510 773-4376 -roomNumber: 8488 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Liviu Hume,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liviu Hume -sn: Hume -description: This is Liviu Hume's description -facsimileTelephoneNumber: +1 804 262-3596 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 804 131-3316 -title: Associate Payroll Czar -userPassword: Password1 -uid: HumeL -givenName: Liviu -mail: HumeL@f6f62c454ca5497f934797aa1b8b4a27.bitwarden.com -carLicense: TIQO8V -departmentNumber: 9721 -employeeType: Contract -homePhone: +1 804 463-5932 -initials: L. H. -mobile: +1 804 387-4910 -pager: +1 804 373-1660 -roomNumber: 8170 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Angelie Heile,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angelie Heile -sn: Heile -description: This is Angelie Heile's description -facsimileTelephoneNumber: +1 510 141-7110 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 438-8463 -title: Master Peons Technician -userPassword: Password1 -uid: HeileA -givenName: Angelie -mail: HeileA@3dcbee9a39f24536abfacdb314d6aedd.bitwarden.com -carLicense: XLPQDY -departmentNumber: 5787 -employeeType: Normal -homePhone: +1 510 621-4038 -initials: A. H. -mobile: +1 510 846-1248 -pager: +1 510 975-3001 -roomNumber: 9254 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tatiania Delage,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatiania Delage -sn: Delage -description: This is Tatiania Delage's description -facsimileTelephoneNumber: +1 415 512-1283 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 371-4456 -title: Associate Peons Czar -userPassword: Password1 -uid: DelageT -givenName: Tatiania -mail: DelageT@5393bc67f8ee409593915ca305198b36.bitwarden.com -carLicense: NC0G5T -departmentNumber: 3890 -employeeType: Contract -homePhone: +1 415 230-7865 -initials: T. D. -mobile: +1 415 399-6834 -pager: +1 415 897-6196 -roomNumber: 8226 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Celisse Murdoch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celisse Murdoch -sn: Murdoch -description: This is Celisse Murdoch's description -facsimileTelephoneNumber: +1 818 556-4775 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 818 144-1107 -title: Associate Management Fellow -userPassword: Password1 -uid: MurdochC -givenName: Celisse -mail: MurdochC@8f1eaf49a29e432392cfb7c9cddefdee.bitwarden.com -carLicense: HQO54O -departmentNumber: 9642 -employeeType: Normal -homePhone: +1 818 568-4422 -initials: C. M. -mobile: +1 818 340-7085 -pager: +1 818 298-8587 -roomNumber: 9072 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=NamKiet Phillip,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: NamKiet Phillip -sn: Phillip -description: This is NamKiet Phillip's description -facsimileTelephoneNumber: +1 804 745-3068 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 624-8408 -title: Associate Management Developer -userPassword: Password1 -uid: PhillipN -givenName: NamKiet -mail: PhillipN@4bf0b66c2c324315954b77c93acd3366.bitwarden.com -carLicense: BESSUL -departmentNumber: 2475 -employeeType: Employee -homePhone: +1 804 480-3861 -initials: N. P. -mobile: +1 804 126-6039 -pager: +1 804 653-8021 -roomNumber: 8532 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christyna Kuruppillai -sn: Kuruppillai -description: This is Christyna Kuruppillai's description -facsimileTelephoneNumber: +1 818 239-7896 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 611-8395 -title: Associate Administrative Artist -userPassword: Password1 -uid: KuruppiC -givenName: Christyna -mail: KuruppiC@b549d25d2e83426ba75b6cd3682958b0.bitwarden.com -carLicense: 8R2G6P -departmentNumber: 6198 -employeeType: Contract -homePhone: +1 818 457-2338 -initials: C. K. -mobile: +1 818 266-9527 -pager: +1 818 150-8553 -roomNumber: 8835 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JamesMichael Pankiw -sn: Pankiw -description: This is JamesMichael Pankiw's description -facsimileTelephoneNumber: +1 206 212-3704 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 330-6924 -title: Supreme Payroll Artist -userPassword: Password1 -uid: PankiwJ -givenName: JamesMichael -mail: PankiwJ@cd18bcce2da342b59f0e8c980723ee09.bitwarden.com -carLicense: DT474A -departmentNumber: 7009 -employeeType: Contract -homePhone: +1 206 152-2719 -initials: J. P. -mobile: +1 206 439-1122 -pager: +1 206 645-7047 -roomNumber: 9614 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Merrili Wierzba,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrili Wierzba -sn: Wierzba -description: This is Merrili Wierzba's description -facsimileTelephoneNumber: +1 804 476-9952 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 671-7842 -title: Associate Product Development Janitor -userPassword: Password1 -uid: WierzbaM -givenName: Merrili -mail: WierzbaM@536c0f4fa5054c52a7d0385b00e9be00.bitwarden.com -carLicense: 0R5OAD -departmentNumber: 8587 -employeeType: Contract -homePhone: +1 804 728-7249 -initials: M. W. -mobile: +1 804 239-5677 -pager: +1 804 154-9426 -roomNumber: 9532 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kittie Gabbai,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kittie Gabbai -sn: Gabbai -description: This is Kittie Gabbai's description -facsimileTelephoneNumber: +1 408 115-5387 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 645-3494 -title: Chief Peons Evangelist -userPassword: Password1 -uid: GabbaiK -givenName: Kittie -mail: GabbaiK@3804896e582c4b3cac297cdd6774c60b.bitwarden.com -carLicense: T7O3XO -departmentNumber: 1890 -employeeType: Normal -homePhone: +1 408 420-9400 -initials: K. G. -mobile: +1 408 404-3089 -pager: +1 408 548-7707 -roomNumber: 9809 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Timi Hendriks,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Timi Hendriks -sn: Hendriks -description: This is Timi Hendriks's description -facsimileTelephoneNumber: +1 408 119-9262 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 230-6953 -title: Master Payroll Visionary -userPassword: Password1 -uid: HendrikT -givenName: Timi -mail: HendrikT@4054b4da0e93482c9b8c467cfec2cd04.bitwarden.com -carLicense: FIVA0X -departmentNumber: 7709 -employeeType: Employee -homePhone: +1 408 636-8247 -initials: T. H. -mobile: +1 408 427-9176 -pager: +1 408 744-5044 -roomNumber: 9184 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Deana Cargnelli,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deana Cargnelli -sn: Cargnelli -description: This is Deana Cargnelli's description -facsimileTelephoneNumber: +1 415 291-8209 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 639-4071 -title: Supreme Management Punk -userPassword: Password1 -uid: CargnelD -givenName: Deana -mail: CargnelD@34778f743f144f1c8feb88659969b135.bitwarden.com -carLicense: S25JBV -departmentNumber: 8625 -employeeType: Employee -homePhone: +1 415 828-7756 -initials: D. C. -mobile: +1 415 315-2276 -pager: +1 415 900-7044 -roomNumber: 9742 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lizzie Petro,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lizzie Petro -sn: Petro -description: This is Lizzie Petro's description -facsimileTelephoneNumber: +1 804 690-9485 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 804 109-2474 -title: Associate Product Development Fellow -userPassword: Password1 -uid: PetroL -givenName: Lizzie -mail: PetroL@3e85ba8a9fd94b8ea8a79fbaf36e29c9.bitwarden.com -carLicense: JEQY95 -departmentNumber: 1369 -employeeType: Normal -homePhone: +1 804 250-9852 -initials: L. P. -mobile: +1 804 714-9354 -pager: +1 804 593-9102 -roomNumber: 8540 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Costanza Kristjanson -sn: Kristjanson -description: This is Costanza Kristjanson's description -facsimileTelephoneNumber: +1 804 680-1731 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 804 380-6023 -title: Associate Janitorial Czar -userPassword: Password1 -uid: KristjaC -givenName: Costanza -mail: KristjaC@a5c8780c86ee42949bb714c84dc95d44.bitwarden.com -carLicense: E7A2UH -departmentNumber: 7524 -employeeType: Contract -homePhone: +1 804 867-5779 -initials: C. K. -mobile: +1 804 739-7494 -pager: +1 804 477-3625 -roomNumber: 9222 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardyth Dunajski -sn: Dunajski -description: This is Ardyth Dunajski's description -facsimileTelephoneNumber: +1 415 670-1344 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 601-6771 -title: Associate Product Testing Grunt -userPassword: Password1 -uid: DunajskA -givenName: Ardyth -mail: DunajskA@50ccd4f167194cf699a420ec04455c31.bitwarden.com -carLicense: 576VB2 -departmentNumber: 1114 -employeeType: Contract -homePhone: +1 415 782-3146 -initials: A. D. -mobile: +1 415 382-1803 -pager: +1 415 910-1730 -roomNumber: 8104 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lecien Trachsel -sn: Trachsel -description: This is Lecien Trachsel's description -facsimileTelephoneNumber: +1 213 885-5668 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 584-5777 -title: Chief Product Testing Engineer -userPassword: Password1 -uid: TrachseL -givenName: Lecien -mail: TrachseL@a922ba05488e401e9633fbd1813d714f.bitwarden.com -carLicense: JQDVKX -departmentNumber: 6029 -employeeType: Normal -homePhone: +1 213 285-4421 -initials: L. T. -mobile: +1 213 164-2559 -pager: +1 213 614-6731 -roomNumber: 8841 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shyam Johnsen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shyam Johnsen -sn: Johnsen -description: This is Shyam Johnsen's description -facsimileTelephoneNumber: +1 804 399-9506 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 804 828-6092 -title: Associate Product Development Technician -userPassword: Password1 -uid: JohnsenS -givenName: Shyam -mail: JohnsenS@abac2f30214948ccb965a208d10fe9a2.bitwarden.com -carLicense: 31ABE9 -departmentNumber: 8555 -employeeType: Employee -homePhone: +1 804 951-2166 -initials: S. J. -mobile: +1 804 898-1953 -pager: +1 804 905-8510 -roomNumber: 9408 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Valencia Tomlinson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valencia Tomlinson -sn: Tomlinson -description: This is Valencia Tomlinson's description -facsimileTelephoneNumber: +1 804 737-7780 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 747-5311 -title: Chief Management Admin -userPassword: Password1 -uid: TomlinsV -givenName: Valencia -mail: TomlinsV@e903049a2f314871bf6a031a14c79162.bitwarden.com -carLicense: IVHIRJ -departmentNumber: 3049 -employeeType: Contract -homePhone: +1 804 680-4513 -initials: V. T. -mobile: +1 804 681-6545 -pager: +1 804 896-5547 -roomNumber: 8595 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdalene Bonahoom -sn: Bonahoom -description: This is Magdalene Bonahoom's description -facsimileTelephoneNumber: +1 408 778-3794 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 367-2672 -title: Chief Human Resources Artist -userPassword: Password1 -uid: BonahooM -givenName: Magdalene -mail: BonahooM@e49df1f8a4c2443e88b68c678fa533db.bitwarden.com -carLicense: DSQ97S -departmentNumber: 8672 -employeeType: Employee -homePhone: +1 408 227-9816 -initials: M. B. -mobile: +1 408 940-9976 -pager: +1 408 906-8240 -roomNumber: 9787 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Frederic Scurlock,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frederic Scurlock -sn: Scurlock -description: This is Frederic Scurlock's description -facsimileTelephoneNumber: +1 818 270-2856 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 303-4370 -title: Master Administrative Assistant -userPassword: Password1 -uid: ScurlocF -givenName: Frederic -mail: ScurlocF@52d447bfc2464a51a20925b35098fffa.bitwarden.com -carLicense: TKF4JK -departmentNumber: 7577 -employeeType: Employee -homePhone: +1 818 880-2568 -initials: F. S. -mobile: +1 818 299-5558 -pager: +1 818 687-2808 -roomNumber: 9851 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Guillema McGorman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guillema McGorman -sn: McGorman -description: This is Guillema McGorman's description -facsimileTelephoneNumber: +1 213 307-4256 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 788-1316 -title: Master Product Development Artist -userPassword: Password1 -uid: McGormaG -givenName: Guillema -mail: McGormaG@47840548eaea4456bf120d7525ee74e1.bitwarden.com -carLicense: 3GN6YH -departmentNumber: 2546 -employeeType: Normal -homePhone: +1 213 789-6581 -initials: G. M. -mobile: +1 213 458-2397 -pager: +1 213 588-4789 -roomNumber: 9868 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jenda Ostarello,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenda Ostarello -sn: Ostarello -description: This is Jenda Ostarello's description -facsimileTelephoneNumber: +1 415 554-5009 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 459-1799 -title: Master Payroll Architect -userPassword: Password1 -uid: OstarelJ -givenName: Jenda -mail: OstarelJ@ec5b72978f304decbd01b86ff428bb78.bitwarden.com -carLicense: YVPRTK -departmentNumber: 3056 -employeeType: Normal -homePhone: +1 415 316-8055 -initials: J. O. -mobile: +1 415 547-7911 -pager: +1 415 797-6926 -roomNumber: 9217 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rivkah Neywick,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rivkah Neywick -sn: Neywick -description: This is Rivkah Neywick's description -facsimileTelephoneNumber: +1 818 617-2516 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 858-8369 -title: Supreme Peons Developer -userPassword: Password1 -uid: NeywickR -givenName: Rivkah -mail: NeywickR@d153ea0cdea446bcae59fcfadb7ae1da.bitwarden.com -carLicense: 3B0S80 -departmentNumber: 4036 -employeeType: Employee -homePhone: +1 818 838-3377 -initials: R. N. -mobile: +1 818 981-4241 -pager: +1 818 207-2591 -roomNumber: 8247 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nathan Moeschet -sn: Moeschet -description: This is Nathan Moeschet's description -facsimileTelephoneNumber: +1 206 564-3655 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 349-6710 -title: Associate Product Testing Figurehead -userPassword: Password1 -uid: MoescheN -givenName: Nathan -mail: MoescheN@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com -carLicense: SB8M30 -departmentNumber: 8561 -employeeType: Contract -homePhone: +1 206 261-2127 -initials: N. M. -mobile: +1 206 121-2143 -pager: +1 206 319-6696 -roomNumber: 9588 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Coursdev Angeli,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coursdev Angeli -sn: Angeli -description: This is Coursdev Angeli's description -facsimileTelephoneNumber: +1 818 469-4363 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 972-6501 -title: Chief Peons Vice President -userPassword: Password1 -uid: AngeliC -givenName: Coursdev -mail: AngeliC@034a5e94f32b417b81eaf2086bd44c48.bitwarden.com -carLicense: SDWJTQ -departmentNumber: 3842 -employeeType: Contract -homePhone: +1 818 883-6929 -initials: C. A. -mobile: +1 818 950-3389 -pager: +1 818 900-7555 -roomNumber: 9347 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dix Ewanchyna -sn: Ewanchyna -description: This is Dix Ewanchyna's description -facsimileTelephoneNumber: +1 213 762-2495 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 965-4253 -title: Master Product Testing Vice President -userPassword: Password1 -uid: EwanchyD -givenName: Dix -mail: EwanchyD@7dbdfd93e54449ecbd6ac06f80575902.bitwarden.com -carLicense: T4P21F -departmentNumber: 7272 -employeeType: Contract -homePhone: +1 213 555-5845 -initials: D. E. -mobile: +1 213 701-4908 -pager: +1 213 902-4768 -roomNumber: 9636 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dari Ersil,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dari Ersil -sn: Ersil -description: This is Dari Ersil's description -facsimileTelephoneNumber: +1 804 839-7844 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 804 359-4370 -title: Supreme Payroll Director -userPassword: Password1 -uid: ErsilD -givenName: Dari -mail: ErsilD@a7dbc414c7f248bda6ef29312aa17345.bitwarden.com -carLicense: XVXN01 -departmentNumber: 3143 -employeeType: Contract -homePhone: +1 804 363-1839 -initials: D. E. -mobile: +1 804 504-6783 -pager: +1 804 986-3746 -roomNumber: 9010 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marjolein Stephens,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjolein Stephens -sn: Stephens -description: This is Marjolein Stephens's description -facsimileTelephoneNumber: +1 408 376-1864 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 420-4295 -title: Junior Product Development Manager -userPassword: Password1 -uid: StephenM -givenName: Marjolein -mail: StephenM@569cc4df4bc94c2683e21477219c08c2.bitwarden.com -carLicense: BLEFIO -departmentNumber: 8872 -employeeType: Contract -homePhone: +1 408 201-4725 -initials: M. S. -mobile: +1 408 842-9477 -pager: +1 408 348-2883 -roomNumber: 8221 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Doro Vempati,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doro Vempati -sn: Vempati -description: This is Doro Vempati's description -facsimileTelephoneNumber: +1 206 290-7750 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 734-2748 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: VempatiD -givenName: Doro -mail: VempatiD@f167cff0138c406287e1a7234664f7ea.bitwarden.com -carLicense: 82HYI6 -departmentNumber: 5462 -employeeType: Normal -homePhone: +1 206 624-3423 -initials: D. V. -mobile: +1 206 788-5526 -pager: +1 206 989-2672 -roomNumber: 9594 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sono Pokrifcak,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sono Pokrifcak -sn: Pokrifcak -description: This is Sono Pokrifcak's description -facsimileTelephoneNumber: +1 408 384-7955 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 256-2637 -title: Associate Management Mascot -userPassword: Password1 -uid: PokrifcS -givenName: Sono -mail: PokrifcS@39597667d519425da44c2231f7169438.bitwarden.com -carLicense: ALJY33 -departmentNumber: 8743 -employeeType: Contract -homePhone: +1 408 441-4407 -initials: S. P. -mobile: +1 408 545-6864 -pager: +1 408 984-7051 -roomNumber: 9472 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Moniek Bergado,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moniek Bergado -sn: Bergado -description: This is Moniek Bergado's description -facsimileTelephoneNumber: +1 818 980-4217 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 818 578-1862 -title: Chief Administrative Architect -userPassword: Password1 -uid: BergadoM -givenName: Moniek -mail: BergadoM@866f4a15cdb24c75a67bad9f00bdce9e.bitwarden.com -carLicense: YUE22D -departmentNumber: 2920 -employeeType: Contract -homePhone: +1 818 457-2666 -initials: M. B. -mobile: +1 818 129-6450 -pager: +1 818 182-3273 -roomNumber: 9732 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=KwokWa Moriarty,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KwokWa Moriarty -sn: Moriarty -description: This is KwokWa Moriarty's description -facsimileTelephoneNumber: +1 206 757-5896 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 206 898-5886 -title: Supreme Management Fellow -userPassword: Password1 -uid: MoriartK -givenName: KwokWa -mail: MoriartK@d78ef3d7391c4330a3c44a2851048fb8.bitwarden.com -carLicense: KBKTA9 -departmentNumber: 5951 -employeeType: Normal -homePhone: +1 206 278-1840 -initials: K. M. -mobile: +1 206 691-3962 -pager: +1 206 838-6710 -roomNumber: 8919 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilhelmina Bellew -sn: Bellew -description: This is Wilhelmina Bellew's description -facsimileTelephoneNumber: +1 804 625-3502 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 930-1231 -title: Supreme Janitorial Dictator -userPassword: Password1 -uid: BellewW -givenName: Wilhelmina -mail: BellewW@1c084eedcc9c44eda88c281c7989befb.bitwarden.com -carLicense: FM4BE9 -departmentNumber: 5663 -employeeType: Contract -homePhone: +1 804 657-4383 -initials: W. B. -mobile: +1 804 392-6336 -pager: +1 804 886-2197 -roomNumber: 9574 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sluis Nizman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sluis Nizman -sn: Nizman -description: This is Sluis Nizman's description -facsimileTelephoneNumber: +1 510 703-8059 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 821-9920 -title: Associate Management Fellow -userPassword: Password1 -uid: NizmanS -givenName: Sluis -mail: NizmanS@4964f3a69590417fbd1ca049096759e6.bitwarden.com -carLicense: 17UW52 -departmentNumber: 4628 -employeeType: Normal -homePhone: +1 510 802-3464 -initials: S. N. -mobile: +1 510 605-7883 -pager: +1 510 186-3000 -roomNumber: 8105 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Michel Salkini,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michel Salkini -sn: Salkini -description: This is Michel Salkini's description -facsimileTelephoneNumber: +1 818 299-4409 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 818 190-1779 -title: Master Payroll Assistant -userPassword: Password1 -uid: SalkiniM -givenName: Michel -mail: SalkiniM@d2d7ca225f1e4483b8252f961b2d485f.bitwarden.com -carLicense: 3QX1J4 -departmentNumber: 3762 -employeeType: Normal -homePhone: +1 818 350-6823 -initials: M. S. -mobile: +1 818 782-3802 -pager: +1 818 105-1504 -roomNumber: 8492 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=JoDee Cownie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JoDee Cownie -sn: Cownie -description: This is JoDee Cownie's description -facsimileTelephoneNumber: +1 804 563-9253 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 582-2965 -title: Junior Product Development Mascot -userPassword: Password1 -uid: CownieJ -givenName: JoDee -mail: CownieJ@848b025264d14e669cec02146f987418.bitwarden.com -carLicense: 0ISJTX -departmentNumber: 7930 -employeeType: Normal -homePhone: +1 804 494-5900 -initials: J. C. -mobile: +1 804 894-3256 -pager: +1 804 715-3024 -roomNumber: 8085 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berangere Bourdin -sn: Bourdin -description: This is Berangere Bourdin's description -facsimileTelephoneNumber: +1 804 232-3619 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 804 575-5341 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: BourdinB -givenName: Berangere -mail: BourdinB@655351dde00c468b8e6a0d1ed4e66324.bitwarden.com -carLicense: IR348T -departmentNumber: 4571 -employeeType: Contract -homePhone: +1 804 438-8613 -initials: B. B. -mobile: +1 804 796-6415 -pager: +1 804 546-9393 -roomNumber: 9577 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steffane Zagrodney -sn: Zagrodney -description: This is Steffane Zagrodney's description -facsimileTelephoneNumber: +1 510 680-7221 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 770-6665 -title: Master Janitorial Director -userPassword: Password1 -uid: ZagrodnS -givenName: Steffane -mail: ZagrodnS@990be6633e6a426c826b4ed97cd246bb.bitwarden.com -carLicense: ANQDTN -departmentNumber: 4705 -employeeType: Contract -homePhone: +1 510 860-3286 -initials: S. Z. -mobile: +1 510 314-2690 -pager: +1 510 732-9303 -roomNumber: 9909 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rueben Sacchetti -sn: Sacchetti -description: This is Rueben Sacchetti's description -facsimileTelephoneNumber: +1 818 924-1864 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 818 483-3606 -title: Associate Product Testing Admin -userPassword: Password1 -uid: SacchetR -givenName: Rueben -mail: SacchetR@ee37751373fd4ef1b1238e54dbded0be.bitwarden.com -carLicense: JKHW4R -departmentNumber: 2036 -employeeType: Contract -homePhone: +1 818 258-9672 -initials: R. S. -mobile: +1 818 271-2932 -pager: +1 818 420-7758 -roomNumber: 8985 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Germaine Turney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Germaine Turney -sn: Turney -description: This is Germaine Turney's description -facsimileTelephoneNumber: +1 206 650-9435 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 206 308-1376 -title: Associate Product Development Writer -userPassword: Password1 -uid: TurneyG -givenName: Germaine -mail: TurneyG@1dd141ee94514c5aa52c318bb9c43eb0.bitwarden.com -carLicense: MDYRIE -departmentNumber: 7131 -employeeType: Contract -homePhone: +1 206 685-3493 -initials: G. T. -mobile: +1 206 544-1844 -pager: +1 206 842-6854 -roomNumber: 8544 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Berenice Yates,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berenice Yates -sn: Yates -description: This is Berenice Yates's description -facsimileTelephoneNumber: +1 818 178-6490 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 739-9978 -title: Junior Human Resources Director -userPassword: Password1 -uid: YatesB -givenName: Berenice -mail: YatesB@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com -carLicense: 9AO5S5 -departmentNumber: 9576 -employeeType: Normal -homePhone: +1 818 714-5387 -initials: B. Y. -mobile: +1 818 944-9745 -pager: +1 818 596-3671 -roomNumber: 8385 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Geoff Catlett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geoff Catlett -sn: Catlett -description: This is Geoff Catlett's description -facsimileTelephoneNumber: +1 818 710-5604 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 262-6730 -title: Supreme Payroll Writer -userPassword: Password1 -uid: CatlettG -givenName: Geoff -mail: CatlettG@301293d91bcf43b6b56f749474f921a4.bitwarden.com -carLicense: BT22C9 -departmentNumber: 5984 -employeeType: Employee -homePhone: +1 818 257-6751 -initials: G. C. -mobile: +1 818 464-4336 -pager: +1 818 885-3436 -roomNumber: 8402 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=MarieAndree Bour,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MarieAndree Bour -sn: Bour -description: This is MarieAndree Bour's description -facsimileTelephoneNumber: +1 804 189-9521 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 804 966-3169 -title: Junior Peons Admin -userPassword: Password1 -uid: BourM -givenName: MarieAndree -mail: BourM@6460b7d3426f457f945fb005b82595d3.bitwarden.com -carLicense: NM82UQ -departmentNumber: 7454 -employeeType: Contract -homePhone: +1 804 835-1967 -initials: M. B. -mobile: +1 804 506-3828 -pager: +1 804 394-1859 -roomNumber: 8018 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dixie Gionet,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dixie Gionet -sn: Gionet -description: This is Dixie Gionet's description -facsimileTelephoneNumber: +1 818 905-8640 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 558-3019 -title: Chief Payroll Director -userPassword: Password1 -uid: GionetD -givenName: Dixie -mail: GionetD@a98f671d807c43a797dff7cd33629811.bitwarden.com -carLicense: USBL43 -departmentNumber: 1337 -employeeType: Contract -homePhone: +1 818 884-6165 -initials: D. G. -mobile: +1 818 872-1376 -pager: +1 818 310-6288 -roomNumber: 8107 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lyndel Amarsi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndel Amarsi -sn: Amarsi -description: This is Lyndel Amarsi's description -facsimileTelephoneNumber: +1 804 139-7655 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 121-5751 -title: Junior Peons Madonna -userPassword: Password1 -uid: AmarsiL -givenName: Lyndel -mail: AmarsiL@f9ae3791c7af4048ba041c1bc79adda2.bitwarden.com -carLicense: Q0855M -departmentNumber: 1704 -employeeType: Employee -homePhone: +1 804 803-7145 -initials: L. A. -mobile: +1 804 846-5457 -pager: +1 804 937-4724 -roomNumber: 9283 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacynth Zanetti -sn: Zanetti -description: This is Jacynth Zanetti's description -facsimileTelephoneNumber: +1 510 352-6420 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 105-6939 -title: Master Product Testing Visionary -userPassword: Password1 -uid: ZanettiJ -givenName: Jacynth -mail: ZanettiJ@9401b30c07d641ad85c9d343e51620fa.bitwarden.com -carLicense: LQJ4NA -departmentNumber: 2944 -employeeType: Employee -homePhone: +1 510 807-9036 -initials: J. Z. -mobile: +1 510 159-3513 -pager: +1 510 302-2922 -roomNumber: 8241 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pittsburgh Pomeroy -sn: Pomeroy -description: This is Pittsburgh Pomeroy's description -facsimileTelephoneNumber: +1 408 845-8139 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 408 482-1457 -title: Associate Management Mascot -userPassword: Password1 -uid: PomeroyP -givenName: Pittsburgh -mail: PomeroyP@28cc7c8054f54d5097838bc00378ffcf.bitwarden.com -carLicense: 2I0XO5 -departmentNumber: 3699 -employeeType: Employee -homePhone: +1 408 197-7348 -initials: P. P. -mobile: +1 408 561-8669 -pager: +1 408 905-3226 -roomNumber: 9227 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hulda McDowell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hulda McDowell -sn: McDowell -description: This is Hulda McDowell's description -facsimileTelephoneNumber: +1 213 597-3945 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 476-7666 -title: Junior Payroll Figurehead -userPassword: Password1 -uid: McDowelH -givenName: Hulda -mail: McDowelH@b0ae8165029e4a39900fe482966832f1.bitwarden.com -carLicense: M436BQ -departmentNumber: 4139 -employeeType: Employee -homePhone: +1 213 524-8732 -initials: H. M. -mobile: +1 213 725-4398 -pager: +1 213 752-8511 -roomNumber: 9889 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlyn Haubert -sn: Haubert -description: This is Karlyn Haubert's description -facsimileTelephoneNumber: +1 408 155-1272 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 612-8138 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: HaubertK -givenName: Karlyn -mail: HaubertK@7e78b04dbd3c4b8d878396ef3d8060c3.bitwarden.com -carLicense: FEHEQA -departmentNumber: 5108 -employeeType: Normal -homePhone: +1 408 351-4776 -initials: K. H. -mobile: +1 408 159-6540 -pager: +1 408 850-1089 -roomNumber: 8809 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Biddie Mainwaring -sn: Mainwaring -description: This is Biddie Mainwaring's description -facsimileTelephoneNumber: +1 408 991-4037 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 322-5817 -title: Supreme Janitorial Writer -userPassword: Password1 -uid: MainwarB -givenName: Biddie -mail: MainwarB@832ca72d2f454bc98e5e071288b43609.bitwarden.com -carLicense: WIT152 -departmentNumber: 2667 -employeeType: Employee -homePhone: +1 408 549-7098 -initials: B. M. -mobile: +1 408 252-2927 -pager: +1 408 965-2530 -roomNumber: 9878 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leil Forrest,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leil Forrest -sn: Forrest -description: This is Leil Forrest's description -facsimileTelephoneNumber: +1 415 983-2373 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 450-6405 -title: Supreme Payroll Sales Rep -userPassword: Password1 -uid: ForrestL -givenName: Leil -mail: ForrestL@ce0ca58b605f4efe987f4366b87f6460.bitwarden.com -carLicense: DIXWHA -departmentNumber: 8868 -employeeType: Contract -homePhone: +1 415 503-4961 -initials: L. F. -mobile: +1 415 148-6428 -pager: +1 415 691-4646 -roomNumber: 9128 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Natassia Mallozzi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natassia Mallozzi -sn: Mallozzi -description: This is Natassia Mallozzi's description -facsimileTelephoneNumber: +1 804 329-3757 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 810-7544 -title: Chief Management Visionary -userPassword: Password1 -uid: MallozzN -givenName: Natassia -mail: MallozzN@9ca7a4dd2cea473bb01027d45fa7651f.bitwarden.com -carLicense: XW21FA -departmentNumber: 6478 -employeeType: Normal -homePhone: +1 804 914-4160 -initials: N. M. -mobile: +1 804 927-1753 -pager: +1 804 461-4392 -roomNumber: 9051 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zack Meckler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zack Meckler -sn: Meckler -description: This is Zack Meckler's description -facsimileTelephoneNumber: +1 818 480-4874 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 805-2507 -title: Master Product Development Technician -userPassword: Password1 -uid: MecklerZ -givenName: Zack -mail: MecklerZ@0709c1c68975470c9ca0f7b0b26d3479.bitwarden.com -carLicense: N3RJTF -departmentNumber: 3025 -employeeType: Employee -homePhone: +1 818 712-8968 -initials: Z. M. -mobile: +1 818 400-5159 -pager: +1 818 488-6758 -roomNumber: 9281 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cameron Bydeley -sn: Bydeley -description: This is Cameron Bydeley's description -facsimileTelephoneNumber: +1 408 785-3859 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 912-3017 -title: Supreme Product Testing Fellow -userPassword: Password1 -uid: BydeleyC -givenName: Cameron -mail: BydeleyC@f185c5336698451d9003f4fee19cdce1.bitwarden.com -carLicense: WVAX63 -departmentNumber: 2495 -employeeType: Employee -homePhone: +1 408 860-7966 -initials: C. B. -mobile: +1 408 201-9425 -pager: +1 408 170-9716 -roomNumber: 9982 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nertie Szpilfogel -sn: Szpilfogel -description: This is Nertie Szpilfogel's description -facsimileTelephoneNumber: +1 206 652-4031 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 405-3004 -title: Supreme Payroll Consultant -userPassword: Password1 -uid: SzpilfoN -givenName: Nertie -mail: SzpilfoN@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com -carLicense: GVSFEK -departmentNumber: 9661 -employeeType: Employee -homePhone: +1 206 972-4559 -initials: N. S. -mobile: +1 206 233-8430 -pager: +1 206 328-4514 -roomNumber: 8943 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Isidora Ralph,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isidora Ralph -sn: Ralph -description: This is Isidora Ralph's description -facsimileTelephoneNumber: +1 804 308-2934 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 804 896-5129 -title: Supreme Administrative Visionary -userPassword: Password1 -uid: RalphI -givenName: Isidora -mail: RalphI@6b3d33b809ec4793b446277435a68094.bitwarden.com -carLicense: D2USQV -departmentNumber: 1005 -employeeType: Normal -homePhone: +1 804 475-2697 -initials: I. R. -mobile: +1 804 710-6714 -pager: +1 804 736-8242 -roomNumber: 9687 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ailis Reis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailis Reis -sn: Reis -description: This is Ailis Reis's description -facsimileTelephoneNumber: +1 804 921-7318 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 473-9052 -title: Supreme Product Testing Fellow -userPassword: Password1 -uid: ReisA -givenName: Ailis -mail: ReisA@b7a75ac36cfb495ca213382c6edc48fa.bitwarden.com -carLicense: 625L0F -departmentNumber: 4091 -employeeType: Contract -homePhone: +1 804 201-7709 -initials: A. R. -mobile: +1 804 449-9903 -pager: +1 804 809-8319 -roomNumber: 9609 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arvin McWilton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arvin McWilton -sn: McWilton -description: This is Arvin McWilton's description -facsimileTelephoneNumber: +1 818 668-9434 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 818 934-5326 -title: Junior Peons Writer -userPassword: Password1 -uid: McWiltoA -givenName: Arvin -mail: McWiltoA@369d31e12885450e8a3e646342f4bbde.bitwarden.com -carLicense: 9C3EGW -departmentNumber: 3048 -employeeType: Normal -homePhone: +1 818 880-5227 -initials: A. M. -mobile: +1 818 367-6816 -pager: +1 818 975-9187 -roomNumber: 9114 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirna Kimbrough -sn: Kimbrough -description: This is Mirna Kimbrough's description -facsimileTelephoneNumber: +1 206 286-2273 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 479-1671 -title: Master Payroll Engineer -userPassword: Password1 -uid: KimbrouM -givenName: Mirna -mail: KimbrouM@a9b974f8337643ea8609cd0bff25a863.bitwarden.com -carLicense: OKAHBO -departmentNumber: 2318 -employeeType: Normal -homePhone: +1 206 230-4173 -initials: M. K. -mobile: +1 206 485-3046 -pager: +1 206 683-7154 -roomNumber: 9061 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulette Piecowye -sn: Piecowye -description: This is Paulette Piecowye's description -facsimileTelephoneNumber: +1 415 782-9808 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 133-1777 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: PiecowyP -givenName: Paulette -mail: PiecowyP@aa945863ba884bb0945b413cc3668682.bitwarden.com -carLicense: 6KVOQ1 -departmentNumber: 8359 -employeeType: Contract -homePhone: +1 415 604-7494 -initials: P. P. -mobile: +1 415 558-7564 -pager: +1 415 748-1610 -roomNumber: 8449 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Matti Bruce,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matti Bruce -sn: Bruce -description: This is Matti Bruce's description -facsimileTelephoneNumber: +1 818 544-4094 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 818 536-2629 -title: Junior Janitorial Developer -userPassword: Password1 -uid: BruceM -givenName: Matti -mail: BruceM@47ece09cd3f24518b5f5e95e47b71e12.bitwarden.com -carLicense: 5WHC5V -departmentNumber: 3384 -employeeType: Employee -homePhone: +1 818 604-4104 -initials: M. B. -mobile: +1 818 530-5249 -pager: +1 818 897-8118 -roomNumber: 9099 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Joel Rynders,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joel Rynders -sn: Rynders -description: This is Joel Rynders's description -facsimileTelephoneNumber: +1 804 271-2310 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 532-5727 -title: Associate Peons Assistant -userPassword: Password1 -uid: RyndersJ -givenName: Joel -mail: RyndersJ@a21f5c8e73ff448fba1e73a903377739.bitwarden.com -carLicense: 10LMW8 -departmentNumber: 7119 -employeeType: Employee -homePhone: +1 804 646-8080 -initials: J. R. -mobile: +1 804 988-8822 -pager: +1 804 728-1490 -roomNumber: 8931 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Stefanie Malle,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stefanie Malle -sn: Malle -description: This is Stefanie Malle's description -facsimileTelephoneNumber: +1 804 167-8178 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 709-5760 -title: Master Administrative Director -userPassword: Password1 -uid: MalleS -givenName: Stefanie -mail: MalleS@c6b35f0658844e75be0a856bbda0593e.bitwarden.com -carLicense: 6D0XQK -departmentNumber: 6349 -employeeType: Employee -homePhone: +1 804 996-5058 -initials: S. M. -mobile: +1 804 379-4278 -pager: +1 804 234-1361 -roomNumber: 9072 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yokan Basco,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yokan Basco -sn: Basco -description: This is Yokan Basco's description -facsimileTelephoneNumber: +1 818 267-5402 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 818 968-4230 -title: Junior Peons Developer -userPassword: Password1 -uid: BascoY -givenName: Yokan -mail: BascoY@0d3732b7ea1d4d659dee1e0435292c15.bitwarden.com -carLicense: WEKBO0 -departmentNumber: 6852 -employeeType: Employee -homePhone: +1 818 788-1795 -initials: Y. B. -mobile: +1 818 511-4602 -pager: +1 818 796-9840 -roomNumber: 8251 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Froukje Gionet,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Froukje Gionet -sn: Gionet -description: This is Froukje Gionet's description -facsimileTelephoneNumber: +1 510 515-4103 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 983-4720 -title: Master Administrative President -userPassword: Password1 -uid: GionetF -givenName: Froukje -mail: GionetF@1d8ea622691942519634199a4665788b.bitwarden.com -carLicense: BHQCA3 -departmentNumber: 1082 -employeeType: Employee -homePhone: +1 510 211-6472 -initials: F. G. -mobile: +1 510 992-2919 -pager: +1 510 143-1722 -roomNumber: 9477 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosabelle Ricciuto -sn: Ricciuto -description: This is Rosabelle Ricciuto's description -facsimileTelephoneNumber: +1 510 639-4837 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 581-5227 -title: Supreme Payroll Stooge -userPassword: Password1 -uid: RicciutR -givenName: Rosabelle -mail: RicciutR@a0cd6adce0a94b1fa4dd97607ada8ecc.bitwarden.com -carLicense: 4KN5B4 -departmentNumber: 2105 -employeeType: Normal -homePhone: +1 510 590-3155 -initials: R. R. -mobile: +1 510 441-7372 -pager: +1 510 335-5362 -roomNumber: 8412 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nenad OToole,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nenad OToole -sn: OToole -description: This is Nenad OToole's description -facsimileTelephoneNumber: +1 206 340-5220 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 126-2272 -title: Chief Payroll Pinhead -userPassword: Password1 -uid: OTooleN -givenName: Nenad -mail: OTooleN@b4e6fcb990c44b4a85e8d6b21ad2c2c5.bitwarden.com -carLicense: BGN1BB -departmentNumber: 5155 -employeeType: Employee -homePhone: +1 206 597-2455 -initials: N. O. -mobile: +1 206 882-2055 -pager: +1 206 365-9261 -roomNumber: 8151 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aileen Haney,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aileen Haney -sn: Haney -description: This is Aileen Haney's description -facsimileTelephoneNumber: +1 408 334-9072 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 897-1157 -title: Associate Human Resources Technician -userPassword: Password1 -uid: HaneyA -givenName: Aileen -mail: HaneyA@6a3acca7ad4f4682a2006a10deabdc87.bitwarden.com -carLicense: OUPH3U -departmentNumber: 4256 -employeeType: Employee -homePhone: +1 408 481-4737 -initials: A. H. -mobile: +1 408 282-9753 -pager: +1 408 435-5165 -roomNumber: 8886 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvinia Lauten -sn: Lauten -description: This is Alvinia Lauten's description -facsimileTelephoneNumber: +1 804 919-5962 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 705-4240 -title: Chief Human Resources Vice President -userPassword: Password1 -uid: LautenA -givenName: Alvinia -mail: LautenA@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com -carLicense: ET7LFS -departmentNumber: 4071 -employeeType: Normal -homePhone: +1 804 598-9797 -initials: A. L. -mobile: +1 804 283-3198 -pager: +1 804 765-6910 -roomNumber: 8465 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hannis Flindall,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hannis Flindall -sn: Flindall -description: This is Hannis Flindall's description -facsimileTelephoneNumber: +1 804 559-3853 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 804 176-1843 -title: Chief Human Resources Admin -userPassword: Password1 -uid: FlindalH -givenName: Hannis -mail: FlindalH@2e3ea6fd47a04112b8fcd5e103e3ae77.bitwarden.com -carLicense: MHS9R1 -departmentNumber: 5334 -employeeType: Contract -homePhone: +1 804 212-6113 -initials: H. F. -mobile: +1 804 639-2319 -pager: +1 804 848-3734 -roomNumber: 8485 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anderson Bulan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anderson Bulan -sn: Bulan -description: This is Anderson Bulan's description -facsimileTelephoneNumber: +1 818 221-9038 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 998-3372 -title: Master Administrative Vice President -userPassword: Password1 -uid: BulanA -givenName: Anderson -mail: BulanA@b360982dfbca4b8284c115441a6deb86.bitwarden.com -carLicense: 9YLOOI -departmentNumber: 9892 -employeeType: Contract -homePhone: +1 818 221-7253 -initials: A. B. -mobile: +1 818 747-6578 -pager: +1 818 477-1834 -roomNumber: 8572 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farrukh Podmaroff -sn: Podmaroff -description: This is Farrukh Podmaroff's description -facsimileTelephoneNumber: +1 510 179-8594 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 244-8835 -title: Chief Administrative Director -userPassword: Password1 -uid: PodmaroF -givenName: Farrukh -mail: PodmaroF@0091f742e8b849efaacb4f9b80e0f2c7.bitwarden.com -carLicense: OWEG7X -departmentNumber: 4429 -employeeType: Contract -homePhone: +1 510 940-6837 -initials: F. P. -mobile: +1 510 594-6807 -pager: +1 510 488-3340 -roomNumber: 9755 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Denny Bourguignon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denny Bourguignon -sn: Bourguignon -description: This is Denny Bourguignon's description -facsimileTelephoneNumber: +1 206 848-6156 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 206 523-4506 -title: Master Management Assistant -userPassword: Password1 -uid: BourguiD -givenName: Denny -mail: BourguiD@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com -carLicense: T9VKRG -departmentNumber: 8535 -employeeType: Normal -homePhone: +1 206 447-5028 -initials: D. B. -mobile: +1 206 942-4433 -pager: +1 206 937-1655 -roomNumber: 8689 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirleen Ferriss -sn: Ferriss -description: This is Shirleen Ferriss's description -facsimileTelephoneNumber: +1 804 331-3137 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 208-7598 -title: Associate Product Development Director -userPassword: Password1 -uid: FerrissS -givenName: Shirleen -mail: FerrissS@df9fef66ff8d4a1eb163eeab8b34d029.bitwarden.com -carLicense: DQ8Y6I -departmentNumber: 2583 -employeeType: Employee -homePhone: +1 804 466-4085 -initials: S. F. -mobile: +1 804 502-1332 -pager: +1 804 278-4260 -roomNumber: 9137 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Reeva Doherty,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reeva Doherty -sn: Doherty -description: This is Reeva Doherty's description -facsimileTelephoneNumber: +1 510 189-4560 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 527-7980 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: DohertyR -givenName: Reeva -mail: DohertyR@f72aa123d23546a4b16938b7223cb6df.bitwarden.com -carLicense: BHKFVL -departmentNumber: 2486 -employeeType: Employee -homePhone: +1 510 725-5563 -initials: R. D. -mobile: +1 510 406-9954 -pager: +1 510 843-7941 -roomNumber: 9780 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Piyush Holness,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Piyush Holness -sn: Holness -description: This is Piyush Holness's description -facsimileTelephoneNumber: +1 408 502-7823 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 311-8462 -title: Junior Management Evangelist -userPassword: Password1 -uid: HolnessP -givenName: Piyush -mail: HolnessP@b6e011a2296d47ac9cf137f608b1c223.bitwarden.com -carLicense: WUXD25 -departmentNumber: 6645 -employeeType: Employee -homePhone: +1 408 868-3605 -initials: P. H. -mobile: +1 408 874-8210 -pager: +1 408 659-2767 -roomNumber: 9348 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Minette Hazeldine,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minette Hazeldine -sn: Hazeldine -description: This is Minette Hazeldine's description -facsimileTelephoneNumber: +1 818 966-3636 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 818 404-8704 -title: Associate Payroll Admin -userPassword: Password1 -uid: HazeldiM -givenName: Minette -mail: HazeldiM@5868dcc2878d429f81b86e9aecf3d38d.bitwarden.com -carLicense: KLWVAU -departmentNumber: 6664 -employeeType: Employee -homePhone: +1 818 121-3523 -initials: M. H. -mobile: +1 818 242-8362 -pager: +1 818 746-9833 -roomNumber: 9270 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Haruko Hepburn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haruko Hepburn -sn: Hepburn -description: This is Haruko Hepburn's description -facsimileTelephoneNumber: +1 818 776-4933 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 397-6898 -title: Junior Management Stooge -userPassword: Password1 -uid: HepburnH -givenName: Haruko -mail: HepburnH@9cbf54d03b9c41c0a58b94807ed31433.bitwarden.com -carLicense: PR2BQ6 -departmentNumber: 2458 -employeeType: Employee -homePhone: +1 818 371-1225 -initials: H. H. -mobile: +1 818 161-7941 -pager: +1 818 353-3586 -roomNumber: 9193 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carlo Mong,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlo Mong -sn: Mong -description: This is Carlo Mong's description -facsimileTelephoneNumber: +1 818 976-1548 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 818 805-4087 -title: Chief Peons Visionary -userPassword: Password1 -uid: MongC -givenName: Carlo -mail: MongC@aad41c2039bd4d01a6a56cfb8fd90330.bitwarden.com -carLicense: X0AX93 -departmentNumber: 6165 -employeeType: Contract -homePhone: +1 818 290-7632 -initials: C. M. -mobile: +1 818 939-6069 -pager: +1 818 254-4652 -roomNumber: 8424 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Oksana Klein,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oksana Klein -sn: Klein -description: This is Oksana Klein's description -facsimileTelephoneNumber: +1 415 602-5272 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 595-8473 -title: Master Product Testing Grunt -userPassword: Password1 -uid: KleinO -givenName: Oksana -mail: KleinO@5750a4ef0b904e64a81925c3672ef563.bitwarden.com -carLicense: OYIW36 -departmentNumber: 7759 -employeeType: Normal -homePhone: +1 415 731-3081 -initials: O. K. -mobile: +1 415 367-2128 -pager: +1 415 691-2176 -roomNumber: 9807 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abigail Scheuermann -sn: Scheuermann -description: This is Abigail Scheuermann's description -facsimileTelephoneNumber: +1 818 782-9554 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 818 741-8541 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: ScheuerA -givenName: Abigail -mail: ScheuerA@6a7ad90af8b14ef5805ef3e5ef79c783.bitwarden.com -carLicense: IKBOIT -departmentNumber: 6693 -employeeType: Employee -homePhone: +1 818 392-5411 -initials: A. S. -mobile: +1 818 687-7781 -pager: +1 818 175-1471 -roomNumber: 9610 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dimitri Pineau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dimitri Pineau -sn: Pineau -description: This is Dimitri Pineau's description -facsimileTelephoneNumber: +1 213 982-3603 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 213 309-4321 -title: Junior Peons Artist -userPassword: Password1 -uid: PineauD -givenName: Dimitri -mail: PineauD@cc46233b48e848cf830a3d50f88b2bbe.bitwarden.com -carLicense: 57WFC2 -departmentNumber: 4903 -employeeType: Employee -homePhone: +1 213 451-7891 -initials: D. P. -mobile: +1 213 922-6418 -pager: +1 213 403-9488 -roomNumber: 9515 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Geri Shabo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geri Shabo -sn: Shabo -description: This is Geri Shabo's description -facsimileTelephoneNumber: +1 408 530-7177 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 408 460-6322 -title: Master Administrative Architect -userPassword: Password1 -uid: ShaboG -givenName: Geri -mail: ShaboG@3087ee4d2688435e9ed4c4c6f3e8ba87.bitwarden.com -carLicense: 6PIOXC -departmentNumber: 4302 -employeeType: Normal -homePhone: +1 408 855-3877 -initials: G. S. -mobile: +1 408 663-5868 -pager: +1 408 749-4691 -roomNumber: 8909 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Saied Vertolli,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saied Vertolli -sn: Vertolli -description: This is Saied Vertolli's description -facsimileTelephoneNumber: +1 818 275-6994 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 818 643-8208 -title: Chief Product Testing Dictator -userPassword: Password1 -uid: VertollS -givenName: Saied -mail: VertollS@4839522ad0264d68aafb73c3cd081f79.bitwarden.com -carLicense: GQX4IK -departmentNumber: 7766 -employeeType: Contract -homePhone: +1 818 741-5049 -initials: S. V. -mobile: +1 818 254-4142 -pager: +1 818 286-4736 -roomNumber: 8409 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Txp Cummings,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Txp Cummings -sn: Cummings -description: This is Txp Cummings's description -facsimileTelephoneNumber: +1 510 105-5985 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 933-8040 -title: Supreme Administrative Stooge -userPassword: Password1 -uid: CummingT -givenName: Txp -mail: CummingT@8ec12044b3f24cc38b71b6337247088e.bitwarden.com -carLicense: IB4RBG -departmentNumber: 1755 -employeeType: Contract -homePhone: +1 510 269-6037 -initials: T. C. -mobile: +1 510 466-3624 -pager: +1 510 522-8398 -roomNumber: 9459 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Britt Caruth,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Britt Caruth -sn: Caruth -description: This is Britt Caruth's description -facsimileTelephoneNumber: +1 206 580-8755 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 874-5788 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: CaruthB -givenName: Britt -mail: CaruthB@f1b30e88335e48b6b2f1076d935738fd.bitwarden.com -carLicense: S036P9 -departmentNumber: 5472 -employeeType: Employee -homePhone: +1 206 758-6601 -initials: B. C. -mobile: +1 206 921-9616 -pager: +1 206 696-1944 -roomNumber: 9394 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kwong Engleman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kwong Engleman -sn: Engleman -description: This is Kwong Engleman's description -facsimileTelephoneNumber: +1 804 107-8618 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 407-1947 -title: Master Management Punk -userPassword: Password1 -uid: EnglemaK -givenName: Kwong -mail: EnglemaK@afe236498cd549b2aa927720547167bf.bitwarden.com -carLicense: A7IPPD -departmentNumber: 7643 -employeeType: Contract -homePhone: +1 804 103-2453 -initials: K. E. -mobile: +1 804 153-8045 -pager: +1 804 180-7581 -roomNumber: 9702 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vikki Tzuang,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vikki Tzuang -sn: Tzuang -description: This is Vikki Tzuang's description -facsimileTelephoneNumber: +1 804 159-8512 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 804 787-9508 -title: Master Payroll Technician -userPassword: Password1 -uid: TzuangV -givenName: Vikki -mail: TzuangV@6eda6577067f465b84cdc51153ccba3d.bitwarden.com -carLicense: 4SPLGB -departmentNumber: 6392 -employeeType: Normal -homePhone: +1 804 547-6912 -initials: V. T. -mobile: +1 804 595-5496 -pager: +1 804 259-7606 -roomNumber: 9675 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sickle StJames,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sickle StJames -sn: StJames -description: This is Sickle StJames's description -facsimileTelephoneNumber: +1 510 261-3044 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 481-4004 -title: Master Administrative Engineer -userPassword: Password1 -uid: StJamesS -givenName: Sickle -mail: StJamesS@5e158cc6e3de4be9888366013451c974.bitwarden.com -carLicense: CFASGH -departmentNumber: 4544 -employeeType: Normal -homePhone: +1 510 939-3412 -initials: S. S. -mobile: +1 510 825-1536 -pager: +1 510 937-5754 -roomNumber: 8983 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cora Strohmeyer -sn: Strohmeyer -description: This is Cora Strohmeyer's description -facsimileTelephoneNumber: +1 213 144-1977 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 275-6422 -title: Supreme Janitorial Punk -userPassword: Password1 -uid: StrohmeC -givenName: Cora -mail: StrohmeC@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com -carLicense: J2OTM9 -departmentNumber: 4545 -employeeType: Employee -homePhone: +1 213 810-8201 -initials: C. S. -mobile: +1 213 542-7348 -pager: +1 213 277-7905 -roomNumber: 9568 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aundrea Yates,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aundrea Yates -sn: Yates -description: This is Aundrea Yates's description -facsimileTelephoneNumber: +1 408 903-8727 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 408 478-4569 -title: Master Management Director -userPassword: Password1 -uid: YatesA -givenName: Aundrea -mail: YatesA@d1186568844c4440bc6aec688b283aec.bitwarden.com -carLicense: D9VY6L -departmentNumber: 4381 -employeeType: Employee -homePhone: +1 408 378-8155 -initials: A. Y. -mobile: +1 408 327-2173 -pager: +1 408 858-4501 -roomNumber: 9827 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nam Cuddy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nam Cuddy -sn: Cuddy -description: This is Nam Cuddy's description -facsimileTelephoneNumber: +1 415 111-9602 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 204-4843 -title: Master Product Testing Dictator -userPassword: Password1 -uid: CuddyN -givenName: Nam -mail: CuddyN@1084d762384c42f1a6679ab8f507fae7.bitwarden.com -carLicense: M5D8U0 -departmentNumber: 5016 -employeeType: Employee -homePhone: +1 415 421-2000 -initials: N. C. -mobile: +1 415 908-4089 -pager: +1 415 264-9323 -roomNumber: 9925 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Methi Zoerb,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Methi Zoerb -sn: Zoerb -description: This is Methi Zoerb's description -facsimileTelephoneNumber: +1 510 986-2789 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 510 715-7534 -title: Supreme Management Consultant -userPassword: Password1 -uid: ZoerbM -givenName: Methi -mail: ZoerbM@2b996155cde34aada101f38aad1494ed.bitwarden.com -carLicense: D77JHM -departmentNumber: 7974 -employeeType: Normal -homePhone: +1 510 421-4148 -initials: M. Z. -mobile: +1 510 654-6153 -pager: +1 510 768-3309 -roomNumber: 9351 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Elysia Zhong,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elysia Zhong -sn: Zhong -description: This is Elysia Zhong's description -facsimileTelephoneNumber: +1 213 882-3593 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 889-2479 -title: Master Human Resources Fellow -userPassword: Password1 -uid: ZhongE -givenName: Elysia -mail: ZhongE@e45ce72662bb48a5bc1781a700f156d3.bitwarden.com -carLicense: 7XDLTF -departmentNumber: 2050 -employeeType: Normal -homePhone: +1 213 174-5616 -initials: E. Z. -mobile: +1 213 295-1552 -pager: +1 213 243-4855 -roomNumber: 8786 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kacie Herriotts,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kacie Herriotts -sn: Herriotts -description: This is Kacie Herriotts's description -facsimileTelephoneNumber: +1 804 543-7252 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 938-8271 -title: Junior Management Janitor -userPassword: Password1 -uid: HerriotK -givenName: Kacie -mail: HerriotK@93baf6000e434401b0373a2ea7daeeeb.bitwarden.com -carLicense: DQS8SR -departmentNumber: 6214 -employeeType: Contract -homePhone: +1 804 815-9395 -initials: K. H. -mobile: +1 804 189-4401 -pager: +1 804 393-1234 -roomNumber: 8980 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hermine Fung,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermine Fung -sn: Fung -description: This is Hermine Fung's description -facsimileTelephoneNumber: +1 206 396-8052 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 237-6419 -title: Chief Product Development Consultant -userPassword: Password1 -uid: FungH -givenName: Hermine -mail: FungH@4e39cf6037cc438cb5f205f487c66106.bitwarden.com -carLicense: 1SUGXK -departmentNumber: 9137 -employeeType: Contract -homePhone: +1 206 100-9993 -initials: H. F. -mobile: +1 206 467-9575 -pager: +1 206 551-3997 -roomNumber: 9375 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Manoj Caterina,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manoj Caterina -sn: Caterina -description: This is Manoj Caterina's description -facsimileTelephoneNumber: +1 415 578-5472 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 793-4883 -title: Associate Product Testing Technician -userPassword: Password1 -uid: CaterinM -givenName: Manoj -mail: CaterinM@1eb1bac0652b4a1d860f7943e8882707.bitwarden.com -carLicense: F6LFJ1 -departmentNumber: 5397 -employeeType: Normal -homePhone: +1 415 171-6736 -initials: M. C. -mobile: +1 415 871-1883 -pager: +1 415 456-8220 -roomNumber: 9904 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Penny Sim,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Penny Sim -sn: Sim -description: This is Penny Sim's description -facsimileTelephoneNumber: +1 213 336-2043 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 332-7341 -title: Junior Human Resources Assistant -userPassword: Password1 -uid: SimP -givenName: Penny -mail: SimP@21b42d834af34274a89f3786de268a20.bitwarden.com -carLicense: XN7T51 -departmentNumber: 8228 -employeeType: Contract -homePhone: +1 213 675-8884 -initials: P. S. -mobile: +1 213 636-8714 -pager: +1 213 610-5039 -roomNumber: 9294 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Grzegorz Feist,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grzegorz Feist -sn: Feist -description: This is Grzegorz Feist's description -facsimileTelephoneNumber: +1 818 213-9185 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 961-1396 -title: Supreme Administrative Writer -userPassword: Password1 -uid: FeistG -givenName: Grzegorz -mail: FeistG@c4659b280be44f2584ea6e37731ba24b.bitwarden.com -carLicense: S98C66 -departmentNumber: 5310 -employeeType: Employee -homePhone: +1 818 245-3820 -initials: G. F. -mobile: +1 818 574-9915 -pager: +1 818 368-3411 -roomNumber: 9382 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sadan Spears,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadan Spears -sn: Spears -description: This is Sadan Spears's description -facsimileTelephoneNumber: +1 510 397-1162 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 510 580-7223 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: SpearsS -givenName: Sadan -mail: SpearsS@b4636d7df71f4835817a7714801280f8.bitwarden.com -carLicense: R62653 -departmentNumber: 7823 -employeeType: Employee -homePhone: +1 510 862-4404 -initials: S. S. -mobile: +1 510 858-1840 -pager: +1 510 207-6060 -roomNumber: 9491 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Peter Grazzini,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peter Grazzini -sn: Grazzini -description: This is Peter Grazzini's description -facsimileTelephoneNumber: +1 408 514-6588 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 567-4997 -title: Supreme Management Assistant -userPassword: Password1 -uid: GrazzinP -givenName: Peter -mail: GrazzinP@87263f2ad4e44ac39562038c9af16152.bitwarden.com -carLicense: 21X887 -departmentNumber: 6401 -employeeType: Contract -homePhone: +1 408 291-2772 -initials: P. G. -mobile: +1 408 265-8459 -pager: +1 408 952-3808 -roomNumber: 8206 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kasifa Bauer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kasifa Bauer -sn: Bauer -description: This is Kasifa Bauer's description -facsimileTelephoneNumber: +1 818 426-2038 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 466-3658 -title: Chief Management Assistant -userPassword: Password1 -uid: BauerK -givenName: Kasifa -mail: BauerK@88d8b282161d4154bfd3a8dda92cc317.bitwarden.com -carLicense: EPCJJM -departmentNumber: 4174 -employeeType: Normal -homePhone: +1 818 969-5007 -initials: K. B. -mobile: +1 818 598-4871 -pager: +1 818 826-8560 -roomNumber: 8875 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Milena Hendricksen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milena Hendricksen -sn: Hendricksen -description: This is Milena Hendricksen's description -facsimileTelephoneNumber: +1 804 602-5285 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 804 424-1372 -title: Supreme Product Development Czar -userPassword: Password1 -uid: HendricM -givenName: Milena -mail: HendricM@60ffb350fa6740079313430abf25721b.bitwarden.com -carLicense: 32JPWE -departmentNumber: 1249 -employeeType: Employee -homePhone: +1 804 983-6734 -initials: M. H. -mobile: +1 804 151-6810 -pager: +1 804 118-6805 -roomNumber: 8811 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Allix Tsui,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allix Tsui -sn: Tsui -description: This is Allix Tsui's description -facsimileTelephoneNumber: +1 818 581-7526 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 818 991-1120 -title: Supreme Peons Technician -userPassword: Password1 -uid: TsuiA -givenName: Allix -mail: TsuiA@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com -carLicense: UA16TV -departmentNumber: 9842 -employeeType: Contract -homePhone: +1 818 615-5681 -initials: A. T. -mobile: +1 818 574-9417 -pager: +1 818 145-7052 -roomNumber: 9161 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jenda Cobban,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenda Cobban -sn: Cobban -description: This is Jenda Cobban's description -facsimileTelephoneNumber: +1 213 804-1303 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 213 767-6737 -title: Associate Payroll Mascot -userPassword: Password1 -uid: CobbanJ -givenName: Jenda -mail: CobbanJ@b69339dab59940869a3e5a49d58c958e.bitwarden.com -carLicense: RUBY05 -departmentNumber: 1946 -employeeType: Normal -homePhone: +1 213 682-3830 -initials: J. C. -mobile: +1 213 113-6995 -pager: +1 213 384-5059 -roomNumber: 9348 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Concettina Linberg,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Concettina Linberg -sn: Linberg -description: This is Concettina Linberg's description -facsimileTelephoneNumber: +1 818 123-4120 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 177-1706 -title: Junior Peons Warrior -userPassword: Password1 -uid: LinbergC -givenName: Concettina -mail: LinbergC@399ec0c914824f4b8aebd42d99e8c0c9.bitwarden.com -carLicense: YPVY6C -departmentNumber: 7007 -employeeType: Normal -homePhone: +1 818 112-4846 -initials: C. L. -mobile: +1 818 831-1253 -pager: +1 818 216-9302 -roomNumber: 8088 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Colin Tahir,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colin Tahir -sn: Tahir -description: This is Colin Tahir's description -facsimileTelephoneNumber: +1 206 854-7254 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 708-4869 -title: Master Peons Stooge -userPassword: Password1 -uid: TahirC -givenName: Colin -mail: TahirC@fc5b2b3042744b23b0983715563a446d.bitwarden.com -carLicense: 9GVAU3 -departmentNumber: 7319 -employeeType: Employee -homePhone: +1 206 763-2559 -initials: C. T. -mobile: +1 206 646-9820 -pager: +1 206 973-1560 -roomNumber: 9852 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gates Hesche,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gates Hesche -sn: Hesche -description: This is Gates Hesche's description -facsimileTelephoneNumber: +1 213 824-5025 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 362-5700 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: HescheG -givenName: Gates -mail: HescheG@7c6819ef96bf408e8eddc78b061a602d.bitwarden.com -carLicense: JAIW1V -departmentNumber: 2703 -employeeType: Employee -homePhone: +1 213 385-6548 -initials: G. H. -mobile: +1 213 529-9114 -pager: +1 213 682-7860 -roomNumber: 9808 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marjie Karp,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjie Karp -sn: Karp -description: This is Marjie Karp's description -facsimileTelephoneNumber: +1 408 836-1233 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 408 158-7861 -title: Junior Janitorial Czar -userPassword: Password1 -uid: KarpM -givenName: Marjie -mail: KarpM@1baee55063104657aab587314d3f4ff6.bitwarden.com -carLicense: EB3YQW -departmentNumber: 7758 -employeeType: Normal -homePhone: +1 408 315-4751 -initials: M. K. -mobile: +1 408 992-3093 -pager: +1 408 851-2622 -roomNumber: 9227 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dorella Reeder,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorella Reeder -sn: Reeder -description: This is Dorella Reeder's description -facsimileTelephoneNumber: +1 510 608-6430 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 510 102-3030 -title: Associate Payroll Admin -userPassword: Password1 -uid: ReederD -givenName: Dorella -mail: ReederD@daeb41514d9e4eb79c108728fb0c78a2.bitwarden.com -carLicense: HSAYCQ -departmentNumber: 2446 -employeeType: Employee -homePhone: +1 510 995-1909 -initials: D. R. -mobile: +1 510 454-3923 -pager: +1 510 739-3503 -roomNumber: 9665 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sacto Eddisford -sn: Eddisford -description: This is Sacto Eddisford's description -facsimileTelephoneNumber: +1 408 772-3618 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 839-4129 -title: Chief Human Resources Admin -userPassword: Password1 -uid: EddisfoS -givenName: Sacto -mail: EddisfoS@bdc6007cc6e34b34a9dcf44589f8b6cd.bitwarden.com -carLicense: LQ8NJO -departmentNumber: 6125 -employeeType: Contract -homePhone: +1 408 585-1688 -initials: S. E. -mobile: +1 408 882-2644 -pager: +1 408 838-2306 -roomNumber: 8170 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shankar Brehm,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shankar Brehm -sn: Brehm -description: This is Shankar Brehm's description -facsimileTelephoneNumber: +1 213 438-5477 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 491-9500 -title: Supreme Management Architect -userPassword: Password1 -uid: BrehmS -givenName: Shankar -mail: BrehmS@402d7992fc8d4f0abdb7612e07362a4b.bitwarden.com -carLicense: F008LM -departmentNumber: 7536 -employeeType: Contract -homePhone: +1 213 482-1427 -initials: S. B. -mobile: +1 213 627-9525 -pager: +1 213 862-7617 -roomNumber: 8055 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Natalee Broadwell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natalee Broadwell -sn: Broadwell -description: This is Natalee Broadwell's description -facsimileTelephoneNumber: +1 213 850-8523 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 911-4559 -title: Associate Administrative President -userPassword: Password1 -uid: BroadweN -givenName: Natalee -mail: BroadweN@2990e564c90444fbbb5903f5db67effd.bitwarden.com -carLicense: 31Q063 -departmentNumber: 3284 -employeeType: Contract -homePhone: +1 213 716-1328 -initials: N. B. -mobile: +1 213 107-9195 -pager: +1 213 869-4902 -roomNumber: 8124 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gay Denette,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gay Denette -sn: Denette -description: This is Gay Denette's description -facsimileTelephoneNumber: +1 415 498-5341 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 320-8805 -title: Master Payroll Consultant -userPassword: Password1 -uid: DenetteG -givenName: Gay -mail: DenetteG@953912784f294893a08a38b4ede88ef7.bitwarden.com -carLicense: SPVWXP -departmentNumber: 3908 -employeeType: Employee -homePhone: +1 415 421-5571 -initials: G. D. -mobile: +1 415 921-6650 -pager: +1 415 607-9866 -roomNumber: 8474 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wiesje Coursol -sn: Coursol -description: This is Wiesje Coursol's description -facsimileTelephoneNumber: +1 818 888-4526 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 351-2299 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: CoursolW -givenName: Wiesje -mail: CoursolW@8e3617cc8c944c82bb3ee3f96f086fbc.bitwarden.com -carLicense: UQJC5L -departmentNumber: 6492 -employeeType: Normal -homePhone: +1 818 792-8956 -initials: W. C. -mobile: +1 818 338-1950 -pager: +1 818 556-2486 -roomNumber: 8540 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leita Malloy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leita Malloy -sn: Malloy -description: This is Leita Malloy's description -facsimileTelephoneNumber: +1 415 917-3298 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 812-1812 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: MalloyL -givenName: Leita -mail: MalloyL@cfb0243cd1fe4f70a9f0422d30776059.bitwarden.com -carLicense: NHKADB -departmentNumber: 9456 -employeeType: Normal -homePhone: +1 415 177-2530 -initials: L. M. -mobile: +1 415 252-6472 -pager: +1 415 159-3139 -roomNumber: 8960 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Novelia Tigg,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Novelia Tigg -sn: Tigg -description: This is Novelia Tigg's description -facsimileTelephoneNumber: +1 408 210-9988 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 260-7849 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: TiggN -givenName: Novelia -mail: TiggN@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com -carLicense: SCDTF0 -departmentNumber: 2910 -employeeType: Normal -homePhone: +1 408 164-7563 -initials: N. T. -mobile: +1 408 395-9045 -pager: +1 408 978-1864 -roomNumber: 8940 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Aeriell Cottrell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aeriell Cottrell -sn: Cottrell -description: This is Aeriell Cottrell's description -facsimileTelephoneNumber: +1 415 243-2995 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 416-8384 -title: Master Management Figurehead -userPassword: Password1 -uid: CottrelA -givenName: Aeriell -mail: CottrelA@25788f1e9dc14cf99cc2d18e4cb5e6eb.bitwarden.com -carLicense: DHJRXU -departmentNumber: 9757 -employeeType: Normal -homePhone: +1 415 899-8838 -initials: A. C. -mobile: +1 415 761-8858 -pager: +1 415 527-3598 -roomNumber: 9780 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angelina Jacobsen -sn: Jacobsen -description: This is Angelina Jacobsen's description -facsimileTelephoneNumber: +1 408 783-1977 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 408 204-4447 -title: Junior Product Testing Czar -userPassword: Password1 -uid: JacobseA -givenName: Angelina -mail: JacobseA@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com -carLicense: V682RQ -departmentNumber: 7503 -employeeType: Employee -homePhone: +1 408 706-7505 -initials: A. J. -mobile: +1 408 536-8046 -pager: +1 408 779-4602 -roomNumber: 8131 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nickie Sicard,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nickie Sicard -sn: Sicard -description: This is Nickie Sicard's description -facsimileTelephoneNumber: +1 510 589-4076 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 280-8773 -title: Chief Product Development Assistant -userPassword: Password1 -uid: SicardN -givenName: Nickie -mail: SicardN@69a8656e77314e228a153eef610c1d7c.bitwarden.com -carLicense: 6FM2TI -departmentNumber: 1805 -employeeType: Contract -homePhone: +1 510 908-3138 -initials: N. S. -mobile: +1 510 872-6671 -pager: +1 510 819-3967 -roomNumber: 8010 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Con Lampman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Con Lampman -sn: Lampman -description: This is Con Lampman's description -facsimileTelephoneNumber: +1 408 373-4823 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 706-6248 -title: Associate Product Testing President -userPassword: Password1 -uid: LampmanC -givenName: Con -mail: LampmanC@2e02b5adbe00404a986538a6f94c5721.bitwarden.com -carLicense: U0H1GO -departmentNumber: 3014 -employeeType: Employee -homePhone: +1 408 344-4449 -initials: C. L. -mobile: +1 408 993-8331 -pager: +1 408 174-7359 -roomNumber: 9717 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tidwell Plssup,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tidwell Plssup -sn: Plssup -description: This is Tidwell Plssup's description -facsimileTelephoneNumber: +1 415 156-1727 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 791-3290 -title: Master Product Development Vice President -userPassword: Password1 -uid: PlssupT -givenName: Tidwell -mail: PlssupT@7099256f6cc64433985279df12772e6d.bitwarden.com -carLicense: CWGNBF -departmentNumber: 9985 -employeeType: Employee -homePhone: +1 415 542-3726 -initials: T. P. -mobile: +1 415 109-6086 -pager: +1 415 850-7735 -roomNumber: 9681 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felipa Romanowski -sn: Romanowski -description: This is Felipa Romanowski's description -facsimileTelephoneNumber: +1 510 175-5766 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 258-2197 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: RomanowF -givenName: Felipa -mail: RomanowF@d236a57ac59c480697085ae127e79e8f.bitwarden.com -carLicense: N1UGS2 -departmentNumber: 9648 -employeeType: Contract -homePhone: +1 510 412-9509 -initials: F. R. -mobile: +1 510 976-2282 -pager: +1 510 324-4189 -roomNumber: 9477 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dwight Goatcher,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dwight Goatcher -sn: Goatcher -description: This is Dwight Goatcher's description -facsimileTelephoneNumber: +1 415 158-2676 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 731-3969 -title: Chief Product Development Grunt -userPassword: Password1 -uid: GoatcheD -givenName: Dwight -mail: GoatcheD@9598004b7f184bb5a3e7c8cfe79e99ae.bitwarden.com -carLicense: BJLG65 -departmentNumber: 9238 -employeeType: Employee -homePhone: +1 415 733-4968 -initials: D. G. -mobile: +1 415 813-1558 -pager: +1 415 277-7520 -roomNumber: 8777 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Germana Easson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Germana Easson -sn: Easson -description: This is Germana Easson's description -facsimileTelephoneNumber: +1 213 140-8796 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 556-4333 -title: Master Product Development Artist -userPassword: Password1 -uid: EassonG -givenName: Germana -mail: EassonG@35bbac299f3146f4a62300231e440164.bitwarden.com -carLicense: 3BEDJL -departmentNumber: 5047 -employeeType: Normal -homePhone: +1 213 514-2387 -initials: G. E. -mobile: +1 213 878-3966 -pager: +1 213 483-7112 -roomNumber: 9817 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilly Recsnik -sn: Recsnik -description: This is Lilly Recsnik's description -facsimileTelephoneNumber: +1 415 241-4083 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 415 409-6795 -title: Junior Product Testing Writer -userPassword: Password1 -uid: RecsnikL -givenName: Lilly -mail: RecsnikL@46edd6cdf36f4626b2c693acecb611c2.bitwarden.com -carLicense: 9QTXKQ -departmentNumber: 4962 -employeeType: Contract -homePhone: +1 415 401-5189 -initials: L. R. -mobile: +1 415 992-5291 -pager: +1 415 598-2860 -roomNumber: 8738 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosetta Hatz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosetta Hatz -sn: Hatz -description: This is Rosetta Hatz's description -facsimileTelephoneNumber: +1 818 364-5673 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 850-3496 -title: Master Peons Artist -userPassword: Password1 -uid: HatzR -givenName: Rosetta -mail: HatzR@3177f113b2494bf084a4349d34933284.bitwarden.com -carLicense: JXIPH4 -departmentNumber: 6326 -employeeType: Normal -homePhone: +1 818 156-1025 -initials: R. H. -mobile: +1 818 937-7413 -pager: +1 818 847-7414 -roomNumber: 9582 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Chen Karsan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chen Karsan -sn: Karsan -description: This is Chen Karsan's description -facsimileTelephoneNumber: +1 804 159-9461 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 416-2263 -title: Chief Administrative Developer -userPassword: Password1 -uid: KarsanC -givenName: Chen -mail: KarsanC@4184e18cf063406b853c169572538938.bitwarden.com -carLicense: PFRFJX -departmentNumber: 3272 -employeeType: Contract -homePhone: +1 804 293-2747 -initials: C. K. -mobile: +1 804 882-9648 -pager: +1 804 644-2494 -roomNumber: 8996 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwennie Aronstam -sn: Aronstam -description: This is Gwennie Aronstam's description -facsimileTelephoneNumber: +1 818 655-1786 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 536-1962 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: AronstaG -givenName: Gwennie -mail: AronstaG@55bf87fb786d4ac6b99a663700910163.bitwarden.com -carLicense: AYCUV0 -departmentNumber: 9511 -employeeType: Contract -homePhone: +1 818 533-2459 -initials: G. A. -mobile: +1 818 809-9475 -pager: +1 818 249-2054 -roomNumber: 9752 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wendell Mujahed -sn: Mujahed -description: This is Wendell Mujahed's description -facsimileTelephoneNumber: +1 408 705-9966 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 244-8127 -title: Junior Product Testing President -userPassword: Password1 -uid: MujahedW -givenName: Wendell -mail: MujahedW@1eab24bbb3db4e83b8ad0b7859744ea5.bitwarden.com -carLicense: 82J7AQ -departmentNumber: 4635 -employeeType: Employee -homePhone: +1 408 276-1115 -initials: W. M. -mobile: +1 408 897-3167 -pager: +1 408 514-9565 -roomNumber: 8645 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jorie Maltese,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jorie Maltese -sn: Maltese -description: This is Jorie Maltese's description -facsimileTelephoneNumber: +1 510 947-8950 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 510 493-9637 -title: Supreme Product Development Dictator -userPassword: Password1 -uid: MalteseJ -givenName: Jorie -mail: MalteseJ@761b142c7930458e927f8f3e0fb5672f.bitwarden.com -carLicense: QXH8EB -departmentNumber: 6323 -employeeType: Contract -homePhone: +1 510 851-6066 -initials: J. M. -mobile: +1 510 174-6057 -pager: +1 510 221-1260 -roomNumber: 9738 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dpnlab Corker -sn: Corker -description: This is Dpnlab Corker's description -facsimileTelephoneNumber: +1 510 685-8982 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 991-7216 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: CorkerD -givenName: Dpnlab -mail: CorkerD@d0ea38ebac994dc19876844fd02c8f1a.bitwarden.com -carLicense: R5GFOH -departmentNumber: 1422 -employeeType: Employee -homePhone: +1 510 537-8012 -initials: D. C. -mobile: +1 510 773-6211 -pager: +1 510 427-7231 -roomNumber: 9849 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Corilla Filkins,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corilla Filkins -sn: Filkins -description: This is Corilla Filkins's description -facsimileTelephoneNumber: +1 510 306-9722 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 198-6664 -title: Associate Product Development Warrior -userPassword: Password1 -uid: FilkinsC -givenName: Corilla -mail: FilkinsC@f7fb17758cf24933ad847773d4770955.bitwarden.com -carLicense: A5D13L -departmentNumber: 9041 -employeeType: Normal -homePhone: +1 510 260-8746 -initials: C. F. -mobile: +1 510 163-1711 -pager: +1 510 118-9854 -roomNumber: 8242 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kassem Chaput,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kassem Chaput -sn: Chaput -description: This is Kassem Chaput's description -facsimileTelephoneNumber: +1 415 659-2575 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 464-1316 -title: Chief Payroll Madonna -userPassword: Password1 -uid: ChaputK -givenName: Kassem -mail: ChaputK@565d16d72934479d9f2d0ae2e179f3ec.bitwarden.com -carLicense: DV21R9 -departmentNumber: 4449 -employeeType: Normal -homePhone: +1 415 163-2024 -initials: K. C. -mobile: +1 415 976-5953 -pager: +1 415 258-9199 -roomNumber: 8306 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Karl Rombeek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karl Rombeek -sn: Rombeek -description: This is Karl Rombeek's description -facsimileTelephoneNumber: +1 213 687-3435 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 403-8920 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: RombeekK -givenName: Karl -mail: RombeekK@511a4fe0275b495abaca9f281c6b8eb4.bitwarden.com -carLicense: 7L6SOA -departmentNumber: 8998 -employeeType: Employee -homePhone: +1 213 227-8362 -initials: K. R. -mobile: +1 213 599-8886 -pager: +1 213 741-5199 -roomNumber: 9784 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquie Loadbuilder -sn: Loadbuilder -description: This is Jacquie Loadbuilder's description -facsimileTelephoneNumber: +1 206 465-9561 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 584-3877 -title: Supreme Human Resources Director -userPassword: Password1 -uid: LoadbuiJ -givenName: Jacquie -mail: LoadbuiJ@cc8e55108b16486f8e21052882b1416b.bitwarden.com -carLicense: WLF74M -departmentNumber: 3956 -employeeType: Contract -homePhone: +1 206 373-2685 -initials: J. L. -mobile: +1 206 455-3665 -pager: +1 206 535-5783 -roomNumber: 8494 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hiren Leinen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hiren Leinen -sn: Leinen -description: This is Hiren Leinen's description -facsimileTelephoneNumber: +1 415 771-3182 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 502-1243 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: LeinenH -givenName: Hiren -mail: LeinenH@8029b2d4dc2441e188d25c43ec86afd1.bitwarden.com -carLicense: TV6CRD -departmentNumber: 7124 -employeeType: Normal -homePhone: +1 415 723-6717 -initials: H. L. -mobile: +1 415 367-3208 -pager: +1 415 470-9625 -roomNumber: 9775 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=My Handforth,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: My Handforth -sn: Handforth -description: This is My Handforth's description -facsimileTelephoneNumber: +1 408 347-4227 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 874-8506 -title: Master Human Resources Fellow -userPassword: Password1 -uid: HandforM -givenName: My -mail: HandforM@d6177e62683049c2b0fc2f004265e4ff.bitwarden.com -carLicense: C8S3NW -departmentNumber: 2240 -employeeType: Employee -homePhone: +1 408 271-4996 -initials: M. H. -mobile: +1 408 306-5668 -pager: +1 408 276-9265 -roomNumber: 9392 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ruby Duffy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruby Duffy -sn: Duffy -description: This is Ruby Duffy's description -facsimileTelephoneNumber: +1 213 607-8775 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 422-2544 -title: Associate Janitorial Artist -userPassword: Password1 -uid: DuffyR -givenName: Ruby -mail: DuffyR@b96d23a92c60424cb67c26b9d6c07a6e.bitwarden.com -carLicense: FIQHP2 -departmentNumber: 6568 -employeeType: Employee -homePhone: +1 213 274-3506 -initials: R. D. -mobile: +1 213 693-5236 -pager: +1 213 939-5227 -roomNumber: 8537 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ranjit Chaurasia,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranjit Chaurasia -sn: Chaurasia -description: This is Ranjit Chaurasia's description -facsimileTelephoneNumber: +1 206 465-6114 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 450-3653 -title: Junior Management Pinhead -userPassword: Password1 -uid: ChaurasR -givenName: Ranjit -mail: ChaurasR@f115ded519524610ab74393c6ce8cdfc.bitwarden.com -carLicense: LS6EM9 -departmentNumber: 3775 -employeeType: Contract -homePhone: +1 206 878-8781 -initials: R. C. -mobile: +1 206 986-7167 -pager: +1 206 474-7829 -roomNumber: 8749 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Xiaofeng Dach,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xiaofeng Dach -sn: Dach -description: This is Xiaofeng Dach's description -facsimileTelephoneNumber: +1 510 479-8348 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 651-5633 -title: Supreme Management Punk -userPassword: Password1 -uid: DachX -givenName: Xiaofeng -mail: DachX@ced4b5fef1fc484594acf10d2913d12f.bitwarden.com -carLicense: 92OXEJ -departmentNumber: 5565 -employeeType: Normal -homePhone: +1 510 876-1287 -initials: X. D. -mobile: +1 510 562-2982 -pager: +1 510 829-3356 -roomNumber: 9104 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bob Chaddock,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bob Chaddock -sn: Chaddock -description: This is Bob Chaddock's description -facsimileTelephoneNumber: +1 804 149-6346 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 804 200-5861 -title: Supreme Payroll Technician -userPassword: Password1 -uid: ChaddocB -givenName: Bob -mail: ChaddocB@8b4e180a03f04f079b534af88c685eca.bitwarden.com -carLicense: 1TMQCR -departmentNumber: 1518 -employeeType: Normal -homePhone: +1 804 655-2765 -initials: B. C. -mobile: +1 804 133-8773 -pager: +1 804 994-5403 -roomNumber: 9879 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Beatrice Costas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatrice Costas -sn: Costas -description: This is Beatrice Costas's description -facsimileTelephoneNumber: +1 804 634-1852 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 254-3534 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: CostasB -givenName: Beatrice -mail: CostasB@98fcbf8cd4594526818e89f96ce2b8ac.bitwarden.com -carLicense: GFYABH -departmentNumber: 8584 -employeeType: Employee -homePhone: +1 804 314-9004 -initials: B. C. -mobile: +1 804 384-4666 -pager: +1 804 377-2235 -roomNumber: 9519 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hynda Miksik,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hynda Miksik -sn: Miksik -description: This is Hynda Miksik's description -facsimileTelephoneNumber: +1 408 521-9878 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 206-1841 -title: Master Administrative Czar -userPassword: Password1 -uid: MiksikH -givenName: Hynda -mail: MiksikH@2050a6c4c8e746ae88bec9f7634b8d59.bitwarden.com -carLicense: 8KT1TD -departmentNumber: 1710 -employeeType: Normal -homePhone: +1 408 552-2794 -initials: H. M. -mobile: +1 408 692-4362 -pager: +1 408 313-3064 -roomNumber: 9092 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jacquie Jablonski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquie Jablonski -sn: Jablonski -description: This is Jacquie Jablonski's description -facsimileTelephoneNumber: +1 804 731-7127 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 499-4345 -title: Master Peons Stooge -userPassword: Password1 -uid: JablonsJ -givenName: Jacquie -mail: JablonsJ@6c5d1cc04bcc4690b1cd5f323caabcec.bitwarden.com -carLicense: 9DLSDP -departmentNumber: 2099 -employeeType: Normal -homePhone: +1 804 798-1435 -initials: J. J. -mobile: +1 804 818-6391 -pager: +1 804 793-3794 -roomNumber: 8254 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ashok Karol,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashok Karol -sn: Karol -description: This is Ashok Karol's description -facsimileTelephoneNumber: +1 213 486-8591 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 837-8419 -title: Junior Management Figurehead -userPassword: Password1 -uid: KarolA -givenName: Ashok -mail: KarolA@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com -carLicense: N98V5B -departmentNumber: 4254 -employeeType: Contract -homePhone: +1 213 499-2471 -initials: A. K. -mobile: +1 213 621-8348 -pager: +1 213 976-6267 -roomNumber: 8373 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Zeljko Goodrow,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zeljko Goodrow -sn: Goodrow -description: This is Zeljko Goodrow's description -facsimileTelephoneNumber: +1 213 646-8054 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 550-7116 -title: Supreme Management Director -userPassword: Password1 -uid: GoodrowZ -givenName: Zeljko -mail: GoodrowZ@9e59018d045045c3992ddf9f97eba64e.bitwarden.com -carLicense: OPYAKP -departmentNumber: 6558 -employeeType: Normal -homePhone: +1 213 327-6157 -initials: Z. G. -mobile: +1 213 625-8199 -pager: +1 213 632-7078 -roomNumber: 8918 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=ManFai Yearwood,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ManFai Yearwood -sn: Yearwood -description: This is ManFai Yearwood's description -facsimileTelephoneNumber: +1 510 620-7973 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 510 878-5777 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: YearwooM -givenName: ManFai -mail: YearwooM@0ac0d65685754a5e856c139313371211.bitwarden.com -carLicense: 1642T1 -departmentNumber: 9995 -employeeType: Employee -homePhone: +1 510 952-2960 -initials: M. Y. -mobile: +1 510 898-2115 -pager: +1 510 821-4694 -roomNumber: 8288 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Grazia Ruben,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grazia Ruben -sn: Ruben -description: This is Grazia Ruben's description -facsimileTelephoneNumber: +1 818 580-5727 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 348-6122 -title: Master Product Development Dictator -userPassword: Password1 -uid: RubenG -givenName: Grazia -mail: RubenG@fd5b94e804a044a7a800a8f248c0732b.bitwarden.com -carLicense: 2W25N3 -departmentNumber: 7269 -employeeType: Contract -homePhone: +1 818 529-8728 -initials: G. R. -mobile: +1 818 905-9485 -pager: +1 818 965-7716 -roomNumber: 9510 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gee Buechner,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gee Buechner -sn: Buechner -description: This is Gee Buechner's description -facsimileTelephoneNumber: +1 804 971-8842 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 106-8001 -title: Chief Payroll Manager -userPassword: Password1 -uid: BuechneG -givenName: Gee -mail: BuechneG@c45f1df6bb5c46f48c3cc7bdf88a0bc6.bitwarden.com -carLicense: SH5WVK -departmentNumber: 9854 -employeeType: Contract -homePhone: +1 804 653-7412 -initials: G. B. -mobile: +1 804 116-8412 -pager: +1 804 601-5119 -roomNumber: 9652 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benedicta Hamlett -sn: Hamlett -description: This is Benedicta Hamlett's description -facsimileTelephoneNumber: +1 213 663-3819 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 923-4691 -title: Master Product Development Admin -userPassword: Password1 -uid: HamlettB -givenName: Benedicta -mail: HamlettB@a35a1dd24459415e944815d7f16bf11e.bitwarden.com -carLicense: W5NR29 -departmentNumber: 3624 -employeeType: Contract -homePhone: +1 213 354-4470 -initials: B. H. -mobile: +1 213 429-3061 -pager: +1 213 254-1880 -roomNumber: 9949 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kial Skillen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kial Skillen -sn: Skillen -description: This is Kial Skillen's description -facsimileTelephoneNumber: +1 206 756-8190 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 734-3550 -title: Chief Payroll Engineer -userPassword: Password1 -uid: SkillenK -givenName: Kial -mail: SkillenK@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com -carLicense: 458VRJ -departmentNumber: 4992 -employeeType: Contract -homePhone: +1 206 374-2273 -initials: K. S. -mobile: +1 206 398-2549 -pager: +1 206 480-7745 -roomNumber: 9770 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Raul Dantu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raul Dantu -sn: Dantu -description: This is Raul Dantu's description -facsimileTelephoneNumber: +1 510 119-2705 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 510 922-1609 -title: Associate Administrative Visionary -userPassword: Password1 -uid: DantuR -givenName: Raul -mail: DantuR@13acf9d4e3a0437699a9a1215c20b7b8.bitwarden.com -carLicense: 27U0GW -departmentNumber: 8056 -employeeType: Employee -homePhone: +1 510 255-4242 -initials: R. D. -mobile: +1 510 655-1858 -pager: +1 510 607-4460 -roomNumber: 8993 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Liuka Awano,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liuka Awano -sn: Awano -description: This is Liuka Awano's description -facsimileTelephoneNumber: +1 510 783-2688 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 870-9983 -title: Associate Payroll Manager -userPassword: Password1 -uid: AwanoL -givenName: Liuka -mail: AwanoL@f3a0a467837a44759c47dbd3cc82740e.bitwarden.com -carLicense: VATE52 -departmentNumber: 4119 -employeeType: Contract -homePhone: +1 510 712-6112 -initials: L. A. -mobile: +1 510 586-7085 -pager: +1 510 526-2025 -roomNumber: 8397 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Caryl Teder,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caryl Teder -sn: Teder -description: This is Caryl Teder's description -facsimileTelephoneNumber: +1 510 448-3864 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 832-1543 -title: Supreme Management Mascot -userPassword: Password1 -uid: TederC -givenName: Caryl -mail: TederC@4c3f9ac9725344988223c5450f40e73e.bitwarden.com -carLicense: 41QQ0B -departmentNumber: 1175 -employeeType: Contract -homePhone: +1 510 614-2298 -initials: C. T. -mobile: +1 510 808-8961 -pager: +1 510 757-8860 -roomNumber: 8036 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shlomo Wacker -sn: Wacker -description: This is Shlomo Wacker's description -facsimileTelephoneNumber: +1 408 586-3119 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 408 444-5027 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: WackerS -givenName: Shlomo -mail: WackerS@264d4763d0c84adba308d4c4cab556c4.bitwarden.com -carLicense: G3Q6UX -departmentNumber: 7407 -employeeType: Employee -homePhone: +1 408 991-7526 -initials: S. W. -mobile: +1 408 228-7407 -pager: +1 408 344-8592 -roomNumber: 9589 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xantippe Gutzmann -sn: Gutzmann -description: This is Xantippe Gutzmann's description -facsimileTelephoneNumber: +1 415 813-5295 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 326-2361 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: GutzmanX -givenName: Xantippe -mail: GutzmanX@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com -carLicense: 5HPGX7 -departmentNumber: 5661 -employeeType: Employee -homePhone: +1 415 236-7125 -initials: X. G. -mobile: +1 415 951-1194 -pager: +1 415 285-8820 -roomNumber: 9804 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lex Matheson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lex Matheson -sn: Matheson -description: This is Lex Matheson's description -facsimileTelephoneNumber: +1 510 651-8501 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 510 653-2405 -title: Chief Product Development Consultant -userPassword: Password1 -uid: MathesoL -givenName: Lex -mail: MathesoL@228cb153fdc24b46957a116ec2859b16.bitwarden.com -carLicense: B31IC7 -departmentNumber: 8780 -employeeType: Normal -homePhone: +1 510 815-7962 -initials: L. M. -mobile: +1 510 255-3141 -pager: +1 510 469-5492 -roomNumber: 9854 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jamie Ballard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jamie Ballard -sn: Ballard -description: This is Jamie Ballard's description -facsimileTelephoneNumber: +1 804 469-4407 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 793-7769 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: BallardJ -givenName: Jamie -mail: BallardJ@b2685c20be7244a2b29f08c6434ac903.bitwarden.com -carLicense: 5BSYJ5 -departmentNumber: 9829 -employeeType: Employee -homePhone: +1 804 781-2541 -initials: J. B. -mobile: +1 804 361-8224 -pager: +1 804 891-4202 -roomNumber: 8041 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gaye Telos,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaye Telos -sn: Telos -description: This is Gaye Telos's description -facsimileTelephoneNumber: +1 408 516-4540 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 114-7470 -title: Master Human Resources Artist -userPassword: Password1 -uid: TelosG -givenName: Gaye -mail: TelosG@5230c42fa8a044a1a7ccbc367b9402a8.bitwarden.com -carLicense: RKVHW0 -departmentNumber: 6036 -employeeType: Employee -homePhone: +1 408 451-6123 -initials: G. T. -mobile: +1 408 140-4964 -pager: +1 408 986-9445 -roomNumber: 9442 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Laz Wilemon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laz Wilemon -sn: Wilemon -description: This is Laz Wilemon's description -facsimileTelephoneNumber: +1 408 907-6740 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 678-5858 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: WilemonL -givenName: Laz -mail: WilemonL@dc196a8022ff465cb8dbe2eba3225125.bitwarden.com -carLicense: N0UJAG -departmentNumber: 5368 -employeeType: Normal -homePhone: +1 408 484-8576 -initials: L. W. -mobile: +1 408 629-6791 -pager: +1 408 833-4176 -roomNumber: 9491 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Euphemia Novak,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Euphemia Novak -sn: Novak -description: This is Euphemia Novak's description -facsimileTelephoneNumber: +1 408 158-8000 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 408 941-1746 -title: Junior Administrative Pinhead -userPassword: Password1 -uid: NovakE -givenName: Euphemia -mail: NovakE@0d3f6cc1cdcf4ec187af48e309baf95b.bitwarden.com -carLicense: JP6NY9 -departmentNumber: 9360 -employeeType: Contract -homePhone: +1 408 797-4452 -initials: E. N. -mobile: +1 408 543-3337 -pager: +1 408 350-3355 -roomNumber: 8738 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Wini Haverty,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wini Haverty -sn: Haverty -description: This is Wini Haverty's description -facsimileTelephoneNumber: +1 818 736-7585 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 897-9135 -title: Junior Product Development Pinhead -userPassword: Password1 -uid: HavertyW -givenName: Wini -mail: HavertyW@90c9f3c96d1149a298fca9a67a1ea082.bitwarden.com -carLicense: P8VX8W -departmentNumber: 2662 -employeeType: Employee -homePhone: +1 818 128-2681 -initials: W. H. -mobile: +1 818 180-9758 -pager: +1 818 502-9610 -roomNumber: 8239 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Halli Mavis,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Halli Mavis -sn: Mavis -description: This is Halli Mavis's description -facsimileTelephoneNumber: +1 206 219-6459 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 470-7885 -title: Chief Management Madonna -userPassword: Password1 -uid: MavisH -givenName: Halli -mail: MavisH@bcd670afb5d343b18feec15b095dbc25.bitwarden.com -carLicense: QEH3XI -departmentNumber: 6974 -employeeType: Employee -homePhone: +1 206 703-3352 -initials: H. M. -mobile: +1 206 745-7336 -pager: +1 206 543-2471 -roomNumber: 8349 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=WingMan Vesterdal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WingMan Vesterdal -sn: Vesterdal -description: This is WingMan Vesterdal's description -facsimileTelephoneNumber: +1 804 600-1262 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 739-1112 -title: Associate Peons Developer -userPassword: Password1 -uid: VesterdW -givenName: WingMan -mail: VesterdW@e6fadcf8493b4530b5a3c436c8c0ed93.bitwarden.com -carLicense: 8FEFIC -departmentNumber: 5273 -employeeType: Employee -homePhone: +1 804 987-5112 -initials: W. V. -mobile: +1 804 546-3638 -pager: +1 804 858-2260 -roomNumber: 8111 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Blithe Keuning,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blithe Keuning -sn: Keuning -description: This is Blithe Keuning's description -facsimileTelephoneNumber: +1 818 395-8001 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 181-3631 -title: Supreme Product Development Pinhead -userPassword: Password1 -uid: KeuningB -givenName: Blithe -mail: KeuningB@641b3c32e986403cb54e8416d6ccf047.bitwarden.com -carLicense: ENNTD6 -departmentNumber: 9808 -employeeType: Employee -homePhone: +1 818 887-9214 -initials: B. K. -mobile: +1 818 359-9602 -pager: +1 818 601-3544 -roomNumber: 9613 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Katya Tracz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katya Tracz -sn: Tracz -description: This is Katya Tracz's description -facsimileTelephoneNumber: +1 408 383-5768 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 912-6929 -title: Junior Product Testing Dictator -userPassword: Password1 -uid: TraczK -givenName: Katya -mail: TraczK@5ffbce7650f24a03b916e3651a1a21d9.bitwarden.com -carLicense: 3XHDXL -departmentNumber: 2610 -employeeType: Employee -homePhone: +1 408 671-5786 -initials: K. T. -mobile: +1 408 256-3130 -pager: +1 408 972-5823 -roomNumber: 9460 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Raymond Biggers,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raymond Biggers -sn: Biggers -description: This is Raymond Biggers's description -facsimileTelephoneNumber: +1 408 931-6630 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 408 371-5378 -title: Supreme Product Development Manager -userPassword: Password1 -uid: BiggersR -givenName: Raymond -mail: BiggersR@c4dfc71b0753437c958ea6ea07827916.bitwarden.com -carLicense: 19E6IM -departmentNumber: 7623 -employeeType: Employee -homePhone: +1 408 932-4639 -initials: R. B. -mobile: +1 408 939-6615 -pager: +1 408 208-5495 -roomNumber: 8327 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Theresita Mashura,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theresita Mashura -sn: Mashura -description: This is Theresita Mashura's description -facsimileTelephoneNumber: +1 408 878-3141 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 507-9769 -title: Chief Peons Dictator -userPassword: Password1 -uid: MashuraT -givenName: Theresita -mail: MashuraT@4281cc0a8ccb4f14858483f470a527dc.bitwarden.com -carLicense: POVXGG -departmentNumber: 7157 -employeeType: Employee -homePhone: +1 408 656-4340 -initials: T. M. -mobile: +1 408 666-6769 -pager: +1 408 452-5235 -roomNumber: 8788 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Joly Dummer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joly Dummer -sn: Dummer -description: This is Joly Dummer's description -facsimileTelephoneNumber: +1 818 224-1312 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 633-9051 -title: Junior Human Resources Evangelist -userPassword: Password1 -uid: DummerJ -givenName: Joly -mail: DummerJ@0708f7927e154039bccaf12df5697875.bitwarden.com -carLicense: 8T49I2 -departmentNumber: 5446 -employeeType: Contract -homePhone: +1 818 140-6392 -initials: J. D. -mobile: +1 818 784-9684 -pager: +1 818 322-9701 -roomNumber: 9619 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Feng Yeh,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Feng Yeh -sn: Yeh -description: This is Feng Yeh's description -facsimileTelephoneNumber: +1 804 223-6256 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 715-3048 -title: Chief Peons Janitor -userPassword: Password1 -uid: YehF -givenName: Feng -mail: YehF@7e96834d9f214835923bce90da137a59.bitwarden.com -carLicense: UUMKUU -departmentNumber: 5562 -employeeType: Employee -homePhone: +1 804 762-9899 -initials: F. Y. -mobile: +1 804 496-9338 -pager: +1 804 772-3540 -roomNumber: 8587 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Robin Martenson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robin Martenson -sn: Martenson -description: This is Robin Martenson's description -facsimileTelephoneNumber: +1 408 572-5695 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 116-4126 -title: Master Peons Admin -userPassword: Password1 -uid: MartensR -givenName: Robin -mail: MartensR@c82abe08fb0140599e247f8f838f49b0.bitwarden.com -carLicense: 88Y5AL -departmentNumber: 6434 -employeeType: Employee -homePhone: +1 408 573-4773 -initials: R. M. -mobile: +1 408 822-1051 -pager: +1 408 379-8795 -roomNumber: 8202 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yolanthe Veloria -sn: Veloria -description: This is Yolanthe Veloria's description -facsimileTelephoneNumber: +1 206 703-5416 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 250-3959 -title: Junior Product Development Dictator -userPassword: Password1 -uid: VeloriaY -givenName: Yolanthe -mail: VeloriaY@74e0243ab8e64a19864d198a422eff4d.bitwarden.com -carLicense: OBXGJ7 -departmentNumber: 3707 -employeeType: Normal -homePhone: +1 206 740-9119 -initials: Y. V. -mobile: +1 206 232-5901 -pager: +1 206 319-3911 -roomNumber: 9867 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kara Tarle,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kara Tarle -sn: Tarle -description: This is Kara Tarle's description -facsimileTelephoneNumber: +1 818 800-5385 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 945-4270 -title: Junior Administrative Vice President -userPassword: Password1 -uid: TarleK -givenName: Kara -mail: TarleK@e0ae53f8b21d44948377b9044eb8a824.bitwarden.com -carLicense: F7PCH6 -departmentNumber: 1523 -employeeType: Employee -homePhone: +1 818 531-4293 -initials: K. T. -mobile: +1 818 397-7680 -pager: +1 818 316-7780 -roomNumber: 8804 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jerzy Benoit,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jerzy Benoit -sn: Benoit -description: This is Jerzy Benoit's description -facsimileTelephoneNumber: +1 408 506-2545 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 713-3238 -title: Junior Management Warrior -userPassword: Password1 -uid: BenoitJ -givenName: Jerzy -mail: BenoitJ@e389b2400b87417ba8d4e795ac0d4324.bitwarden.com -carLicense: TM5AL0 -departmentNumber: 1501 -employeeType: Contract -homePhone: +1 408 520-2378 -initials: J. B. -mobile: +1 408 513-1690 -pager: +1 408 767-8124 -roomNumber: 9985 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Abahri Brauer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abahri Brauer -sn: Brauer -description: This is Abahri Brauer's description -facsimileTelephoneNumber: +1 818 325-7706 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 466-7576 -title: Supreme Payroll Punk -userPassword: Password1 -uid: BrauerA -givenName: Abahri -mail: BrauerA@035c0401613a40f1b8232e8a6d1fda36.bitwarden.com -carLicense: DHJDCQ -departmentNumber: 1545 -employeeType: Contract -homePhone: +1 818 237-1115 -initials: A. B. -mobile: +1 818 891-8152 -pager: +1 818 574-3993 -roomNumber: 9634 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Baljinder Kowalsky,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baljinder Kowalsky -sn: Kowalsky -description: This is Baljinder Kowalsky's description -facsimileTelephoneNumber: +1 804 396-1106 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 989-5288 -title: Junior Management Developer -userPassword: Password1 -uid: KowalskB -givenName: Baljinder -mail: KowalskB@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com -carLicense: Y3HCS1 -departmentNumber: 7759 -employeeType: Contract -homePhone: +1 804 371-4722 -initials: B. K. -mobile: +1 804 733-8768 -pager: +1 804 662-8830 -roomNumber: 8872 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kimberly Chung,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kimberly Chung -sn: Chung -description: This is Kimberly Chung's description -facsimileTelephoneNumber: +1 415 831-4999 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 390-3953 -title: Master Peons Grunt -userPassword: Password1 -uid: ChungK -givenName: Kimberly -mail: ChungK@0fde233efcb84afa94a2f35004f78f85.bitwarden.com -carLicense: 9EQ8F2 -departmentNumber: 8818 -employeeType: Normal -homePhone: +1 415 167-7649 -initials: K. C. -mobile: +1 415 846-7706 -pager: +1 415 854-6473 -roomNumber: 9622 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shaibal Andrew,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaibal Andrew -sn: Andrew -description: This is Shaibal Andrew's description -facsimileTelephoneNumber: +1 213 244-8044 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 645-3649 -title: Master Administrative Figurehead -userPassword: Password1 -uid: AndrewS -givenName: Shaibal -mail: AndrewS@16a833e1195d4b3a932748c3f7fbc836.bitwarden.com -carLicense: 4LSTXA -departmentNumber: 3810 -employeeType: Contract -homePhone: +1 213 767-9319 -initials: S. A. -mobile: +1 213 464-8758 -pager: +1 213 184-5362 -roomNumber: 9672 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anatoly Gulbrandsen -sn: Gulbrandsen -description: This is Anatoly Gulbrandsen's description -facsimileTelephoneNumber: +1 213 695-1153 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 366-3573 -title: Junior Management Czar -userPassword: Password1 -uid: GulbranA -givenName: Anatoly -mail: GulbranA@3dc397261aae4717a7ed87ae45b11795.bitwarden.com -carLicense: A4WJH7 -departmentNumber: 1490 -employeeType: Normal -homePhone: +1 213 186-6994 -initials: A. G. -mobile: +1 213 788-4104 -pager: +1 213 894-6194 -roomNumber: 8350 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Oralla ENG,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oralla ENG -sn: ENG -description: This is Oralla ENG's description -facsimileTelephoneNumber: +1 408 400-8783 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 267-6283 -title: Associate Payroll Artist -userPassword: Password1 -uid: ENGO -givenName: Oralla -mail: ENGO@8237422e949f4acf92d97f787e6bf098.bitwarden.com -carLicense: XBAGQ2 -departmentNumber: 4793 -employeeType: Normal -homePhone: +1 408 388-4691 -initials: O. E. -mobile: +1 408 937-3057 -pager: +1 408 185-9444 -roomNumber: 8637 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rubina RTP,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rubina RTP -sn: RTP -description: This is Rubina RTP's description -facsimileTelephoneNumber: +1 213 681-3020 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 379-8475 -title: Supreme Payroll Artist -userPassword: Password1 -uid: RTPR -givenName: Rubina -mail: RTPR@8eafc85110924d0ba63ca69cd0025630.bitwarden.com -carLicense: U97K0V -departmentNumber: 8305 -employeeType: Normal -homePhone: +1 213 192-5217 -initials: R. R. -mobile: +1 213 135-1717 -pager: +1 213 170-8902 -roomNumber: 8664 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Orie Larribeau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orie Larribeau -sn: Larribeau -description: This is Orie Larribeau's description -facsimileTelephoneNumber: +1 206 922-6267 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 428-9093 -title: Supreme Janitorial Sales Rep -userPassword: Password1 -uid: LarribeO -givenName: Orie -mail: LarribeO@7cc0e5cc88d04bf3b06af1f2915df358.bitwarden.com -carLicense: PMATNQ -departmentNumber: 1914 -employeeType: Contract -homePhone: +1 206 621-4164 -initials: O. L. -mobile: +1 206 493-4887 -pager: +1 206 761-6896 -roomNumber: 8188 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brear Hagwood,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brear Hagwood -sn: Hagwood -description: This is Brear Hagwood's description -facsimileTelephoneNumber: +1 206 691-6992 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 994-4105 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: HagwoodB -givenName: Brear -mail: HagwoodB@65740d0bd6fb4b44a86d2ab249218002.bitwarden.com -carLicense: 9N4ICI -departmentNumber: 9450 -employeeType: Employee -homePhone: +1 206 793-9772 -initials: B. H. -mobile: +1 206 362-4117 -pager: +1 206 450-9657 -roomNumber: 9394 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Radford Gille,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Radford Gille -sn: Gille -description: This is Radford Gille's description -facsimileTelephoneNumber: +1 415 589-3834 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 308-9620 -title: Associate Administrative Grunt -userPassword: Password1 -uid: GilleR -givenName: Radford -mail: GilleR@cbaf8ba54a4e4d25a6793e6fa4afc667.bitwarden.com -carLicense: XRXRNW -departmentNumber: 9587 -employeeType: Normal -homePhone: +1 415 391-5444 -initials: R. G. -mobile: +1 415 501-5914 -pager: +1 415 631-1539 -roomNumber: 9436 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shina Chari,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shina Chari -sn: Chari -description: This is Shina Chari's description -facsimileTelephoneNumber: +1 206 806-7187 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 803-1977 -title: Junior Peons Director -userPassword: Password1 -uid: ChariS -givenName: Shina -mail: ChariS@a4a95102a2604c2bad416eca20575783.bitwarden.com -carLicense: 0861LL -departmentNumber: 1546 -employeeType: Normal -homePhone: +1 206 960-3198 -initials: S. C. -mobile: +1 206 932-5865 -pager: +1 206 878-9162 -roomNumber: 9514 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mariel Yan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariel Yan -sn: Yan -description: This is Mariel Yan's description -facsimileTelephoneNumber: +1 818 592-3614 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 723-4313 -title: Supreme Payroll Figurehead -userPassword: Password1 -uid: YanM -givenName: Mariel -mail: YanM@aa11a3e30f7d4b8b9f6e08ae63f7a50f.bitwarden.com -carLicense: BSOC26 -departmentNumber: 2881 -employeeType: Contract -homePhone: +1 818 457-9042 -initials: M. Y. -mobile: +1 818 291-1222 -pager: +1 818 478-5968 -roomNumber: 9003 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bakoury Whitten,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bakoury Whitten -sn: Whitten -description: This is Bakoury Whitten's description -facsimileTelephoneNumber: +1 408 553-1921 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 523-8015 -title: Chief Product Development Warrior -userPassword: Password1 -uid: WhittenB -givenName: Bakoury -mail: WhittenB@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com -carLicense: OCDYW2 -departmentNumber: 3134 -employeeType: Contract -homePhone: +1 408 283-7007 -initials: B. W. -mobile: +1 408 202-5311 -pager: +1 408 235-2954 -roomNumber: 8854 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Donovan Bedard,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donovan Bedard -sn: Bedard -description: This is Donovan Bedard's description -facsimileTelephoneNumber: +1 408 809-7743 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 623-6366 -title: Supreme Product Development Director -userPassword: Password1 -uid: BedardD -givenName: Donovan -mail: BedardD@d7d5276b76fc44cfaa24d383211b91ce.bitwarden.com -carLicense: PB0RUG -departmentNumber: 6308 -employeeType: Contract -homePhone: +1 408 705-6281 -initials: D. B. -mobile: +1 408 958-8392 -pager: +1 408 658-4420 -roomNumber: 8995 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Almeria Whitman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Almeria Whitman -sn: Whitman -description: This is Almeria Whitman's description -facsimileTelephoneNumber: +1 818 870-6938 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 852-6487 -title: Master Management Manager -userPassword: Password1 -uid: WhitmanA -givenName: Almeria -mail: WhitmanA@c1f68539655f4334b2d630ad0e029235.bitwarden.com -carLicense: GC7JXL -departmentNumber: 2193 -employeeType: Normal -homePhone: +1 818 851-5675 -initials: A. W. -mobile: +1 818 924-7590 -pager: +1 818 293-3914 -roomNumber: 8668 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ardyth Ely,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardyth Ely -sn: Ely -description: This is Ardyth Ely's description -facsimileTelephoneNumber: +1 818 461-8114 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 647-9680 -title: Associate Management Writer -userPassword: Password1 -uid: ElyA -givenName: Ardyth -mail: ElyA@d187b762206a464e954dc770f1e855cd.bitwarden.com -carLicense: 8E0BHA -departmentNumber: 4152 -employeeType: Contract -homePhone: +1 818 192-7080 -initials: A. E. -mobile: +1 818 919-5469 -pager: +1 818 430-1437 -roomNumber: 8086 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helenelizabeth Aydin -sn: Aydin -description: This is Helenelizabeth Aydin's description -facsimileTelephoneNumber: +1 818 997-1705 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 639-2366 -title: Chief Product Development Consultant -userPassword: Password1 -uid: AydinH -givenName: Helenelizabeth -mail: AydinH@8872be23f88a4521a0ed86c46ec5b63b.bitwarden.com -carLicense: QW5C0J -departmentNumber: 2846 -employeeType: Employee -homePhone: +1 818 384-1313 -initials: H. A. -mobile: +1 818 244-1066 -pager: +1 818 940-7246 -roomNumber: 9167 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aleen Meckler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aleen Meckler -sn: Meckler -description: This is Aleen Meckler's description -facsimileTelephoneNumber: +1 408 360-1634 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 378-2746 -title: Supreme Product Development Pinhead -userPassword: Password1 -uid: MecklerA -givenName: Aleen -mail: MecklerA@0dff8a8b68dc4196a7a7b4d0ac4c4efd.bitwarden.com -carLicense: EKEUX9 -departmentNumber: 4454 -employeeType: Normal -homePhone: +1 408 449-7449 -initials: A. M. -mobile: +1 408 684-2035 -pager: +1 408 543-6077 -roomNumber: 8260 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Riane Pantages,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Riane Pantages -sn: Pantages -description: This is Riane Pantages's description -facsimileTelephoneNumber: +1 213 984-6890 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 158-5084 -title: Master Janitorial Pinhead -userPassword: Password1 -uid: PantageR -givenName: Riane -mail: PantageR@6c99b676cc944a0f933ecc8837dfc70b.bitwarden.com -carLicense: 03T3MS -departmentNumber: 1133 -employeeType: Employee -homePhone: +1 213 538-2166 -initials: R. P. -mobile: +1 213 493-9804 -pager: +1 213 275-4958 -roomNumber: 8095 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Coral Wickes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coral Wickes -sn: Wickes -description: This is Coral Wickes's description -facsimileTelephoneNumber: +1 206 432-6720 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 206 541-2861 -title: Master Product Development Engineer -userPassword: Password1 -uid: WickesC -givenName: Coral -mail: WickesC@59a4a020a4c74747a44b5e60109428e1.bitwarden.com -carLicense: 3SB1HG -departmentNumber: 5792 -employeeType: Employee -homePhone: +1 206 190-3115 -initials: C. W. -mobile: +1 206 896-1773 -pager: +1 206 756-2354 -roomNumber: 9355 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ishan Giridharagopal -sn: Giridharagopal -description: This is Ishan Giridharagopal's description -facsimileTelephoneNumber: +1 415 844-9400 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 610-1126 -title: Associate Peons Manager -userPassword: Password1 -uid: GiridhaI -givenName: Ishan -mail: GiridhaI@0ee31c9eef10414a913b9102559e5257.bitwarden.com -carLicense: ROQOR7 -departmentNumber: 5153 -employeeType: Contract -homePhone: +1 415 534-7482 -initials: I. G. -mobile: +1 415 466-4665 -pager: +1 415 241-4503 -roomNumber: 9048 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dalia Doda,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dalia Doda -sn: Doda -description: This is Dalia Doda's description -facsimileTelephoneNumber: +1 510 530-2384 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 741-3925 -title: Chief Product Testing Manager -userPassword: Password1 -uid: DodaD -givenName: Dalia -mail: DodaD@4287a3ff96ae495bbb365378cecf3190.bitwarden.com -carLicense: VWHBI9 -departmentNumber: 1601 -employeeType: Employee -homePhone: +1 510 351-5511 -initials: D. D. -mobile: +1 510 594-9336 -pager: +1 510 618-3904 -roomNumber: 9298 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Suki Currie,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suki Currie -sn: Currie -description: This is Suki Currie's description -facsimileTelephoneNumber: +1 510 457-1055 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 917-1905 -title: Master Product Testing Writer -userPassword: Password1 -uid: CurrieS -givenName: Suki -mail: CurrieS@65c647306216446ba8005c16399f2df3.bitwarden.com -carLicense: CKEUV4 -departmentNumber: 8458 -employeeType: Contract -homePhone: +1 510 566-9864 -initials: S. C. -mobile: +1 510 914-6486 -pager: +1 510 806-8078 -roomNumber: 9716 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gateway Bain,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gateway Bain -sn: Bain -description: This is Gateway Bain's description -facsimileTelephoneNumber: +1 415 383-5691 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 769-6268 -title: Supreme Janitorial President -userPassword: Password1 -uid: BainG -givenName: Gateway -mail: BainG@a24d9d00e9af44d1b485530b308fa6f6.bitwarden.com -carLicense: LFA88D -departmentNumber: 8398 -employeeType: Normal -homePhone: +1 415 888-6097 -initials: G. B. -mobile: +1 415 660-3633 -pager: +1 415 102-1342 -roomNumber: 8392 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Inger Tchir,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inger Tchir -sn: Tchir -description: This is Inger Tchir's description -facsimileTelephoneNumber: +1 408 274-2715 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 853-8973 -title: Chief Payroll Consultant -userPassword: Password1 -uid: TchirI -givenName: Inger -mail: TchirI@89a15950be8c4c2a83abf35a9b3ed795.bitwarden.com -carLicense: KKHCVQ -departmentNumber: 7975 -employeeType: Contract -homePhone: +1 408 417-9210 -initials: I. T. -mobile: +1 408 856-5892 -pager: +1 408 953-1151 -roomNumber: 8123 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomasina Ricciuto -sn: Ricciuto -description: This is Thomasina Ricciuto's description -facsimileTelephoneNumber: +1 206 776-5472 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 685-2076 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: RicciutT -givenName: Thomasina -mail: RicciutT@06146e7a51ca478db85b58b8699ede7d.bitwarden.com -carLicense: 0C4HR4 -departmentNumber: 9501 -employeeType: Contract -homePhone: +1 206 226-9242 -initials: T. R. -mobile: +1 206 323-5969 -pager: +1 206 759-4630 -roomNumber: 9482 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Laraine Arellano,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laraine Arellano -sn: Arellano -description: This is Laraine Arellano's description -facsimileTelephoneNumber: +1 408 773-5813 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 612-8626 -title: Junior Product Development Assistant -userPassword: Password1 -uid: ArellanL -givenName: Laraine -mail: ArellanL@32ce2ca229594ba68651edf24232f002.bitwarden.com -carLicense: ABA6B6 -departmentNumber: 2688 -employeeType: Normal -homePhone: +1 408 933-8827 -initials: L. A. -mobile: +1 408 222-6764 -pager: +1 408 491-2019 -roomNumber: 9213 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roana Fulford,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roana Fulford -sn: Fulford -description: This is Roana Fulford's description -facsimileTelephoneNumber: +1 206 535-5126 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 420-7113 -title: Master Administrative Dictator -userPassword: Password1 -uid: FulfordR -givenName: Roana -mail: FulfordR@453e1aa146534f789cee9f78a1f430f8.bitwarden.com -carLicense: YQT5IA -departmentNumber: 3754 -employeeType: Contract -homePhone: +1 206 540-9185 -initials: R. F. -mobile: +1 206 173-2784 -pager: +1 206 698-7585 -roomNumber: 8842 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Camellia Sheth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camellia Sheth -sn: Sheth -description: This is Camellia Sheth's description -facsimileTelephoneNumber: +1 408 801-3483 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 276-3748 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: ShethC -givenName: Camellia -mail: ShethC@5c05b76ad7494928a53980603065304f.bitwarden.com -carLicense: 9RBYQ0 -departmentNumber: 6450 -employeeType: Contract -homePhone: +1 408 337-7592 -initials: C. S. -mobile: +1 408 743-5171 -pager: +1 408 652-3614 -roomNumber: 9845 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fayina Passier,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fayina Passier -sn: Passier -description: This is Fayina Passier's description -facsimileTelephoneNumber: +1 408 936-7936 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 429-3946 -title: Junior Peons Artist -userPassword: Password1 -uid: PassierF -givenName: Fayina -mail: PassierF@4a9e0e3540864eaba3d1bf5f637a9e4f.bitwarden.com -carLicense: 2ALYPJ -departmentNumber: 8591 -employeeType: Normal -homePhone: +1 408 530-7996 -initials: F. P. -mobile: +1 408 846-8832 -pager: +1 408 806-9926 -roomNumber: 9181 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Constantia Bielan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constantia Bielan -sn: Bielan -description: This is Constantia Bielan's description -facsimileTelephoneNumber: +1 818 846-8040 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 113-6508 -title: Chief Product Testing Figurehead -userPassword: Password1 -uid: BielanC -givenName: Constantia -mail: BielanC@ab3c86d1ac584fffb00ba8469a8050a5.bitwarden.com -carLicense: WPY7AX -departmentNumber: 6922 -employeeType: Employee -homePhone: +1 818 499-5566 -initials: C. B. -mobile: +1 818 208-9075 -pager: +1 818 429-6199 -roomNumber: 9369 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sacha Hiller,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sacha Hiller -sn: Hiller -description: This is Sacha Hiller's description -facsimileTelephoneNumber: +1 510 489-8130 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 955-4205 -title: Master Janitorial President -userPassword: Password1 -uid: HillerS -givenName: Sacha -mail: HillerS@82c6c2c80b7a4cf98e51762d28a47c93.bitwarden.com -carLicense: AH3HR8 -departmentNumber: 6161 -employeeType: Normal -homePhone: +1 510 456-4997 -initials: S. H. -mobile: +1 510 985-5795 -pager: +1 510 262-4135 -roomNumber: 8796 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Myranda Poff,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myranda Poff -sn: Poff -description: This is Myranda Poff's description -facsimileTelephoneNumber: +1 408 148-5142 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 296-6977 -title: Junior Product Development Consultant -userPassword: Password1 -uid: PoffM -givenName: Myranda -mail: PoffM@60323e558c4a4bd4a555e49dd613a509.bitwarden.com -carLicense: 2W9LOO -departmentNumber: 2427 -employeeType: Contract -homePhone: +1 408 447-5733 -initials: M. P. -mobile: +1 408 523-3868 -pager: +1 408 569-3020 -roomNumber: 9264 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Victor McDaniel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Victor McDaniel -sn: McDaniel -description: This is Victor McDaniel's description -facsimileTelephoneNumber: +1 206 825-3119 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 219-2089 -title: Associate Management Technician -userPassword: Password1 -uid: McDanieV -givenName: Victor -mail: McDanieV@2aaa600b5e5f40588e0a715782d88ce7.bitwarden.com -carLicense: RL0GR7 -departmentNumber: 5538 -employeeType: Contract -homePhone: +1 206 779-5437 -initials: V. M. -mobile: +1 206 439-2416 -pager: +1 206 591-6806 -roomNumber: 8361 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lindi Wenyon -sn: Wenyon -description: This is Lindi Wenyon's description -facsimileTelephoneNumber: +1 206 747-6622 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 352-6013 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: WenyonL -givenName: Lindi -mail: WenyonL@6decbec2a2934c8ab6247b1bef75e683.bitwarden.com -carLicense: SW0OQE -departmentNumber: 7330 -employeeType: Normal -homePhone: +1 206 539-7295 -initials: L. W. -mobile: +1 206 737-4003 -pager: +1 206 829-1455 -roomNumber: 8334 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellette Oviedo -sn: Oviedo -description: This is Ellette Oviedo's description -facsimileTelephoneNumber: +1 804 707-3987 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 804 555-3442 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: OviedoE -givenName: Ellette -mail: OviedoE@c5403fce69dd4d1b851d054bfb3293b5.bitwarden.com -carLicense: 3Y6XQO -departmentNumber: 2949 -employeeType: Normal -homePhone: +1 804 946-1154 -initials: E. O. -mobile: +1 804 287-9208 -pager: +1 804 166-1739 -roomNumber: 8287 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=James Predon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: James Predon -sn: Predon -description: This is James Predon's description -facsimileTelephoneNumber: +1 818 875-6903 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 288-9182 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: PredonJ -givenName: James -mail: PredonJ@0ab5cac49bd64597ab7b3eb70643285e.bitwarden.com -carLicense: A6YFIF -departmentNumber: 4895 -employeeType: Contract -homePhone: +1 818 542-6497 -initials: J. P. -mobile: +1 818 552-4053 -pager: +1 818 665-7642 -roomNumber: 9182 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alta Bergwerff,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alta Bergwerff -sn: Bergwerff -description: This is Alta Bergwerff's description -facsimileTelephoneNumber: +1 804 262-6855 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 804 886-2103 -title: Junior Peons Janitor -userPassword: Password1 -uid: BergwerA -givenName: Alta -mail: BergwerA@e903049a2f314871bf6a031a14c79162.bitwarden.com -carLicense: JEVWAM -departmentNumber: 6904 -employeeType: Employee -homePhone: +1 804 241-1192 -initials: A. B. -mobile: +1 804 662-3992 -pager: +1 804 863-9313 -roomNumber: 8981 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Keven Abbie,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keven Abbie -sn: Abbie -description: This is Keven Abbie's description -facsimileTelephoneNumber: +1 213 966-2134 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 111-6463 -title: Chief Administrative Technician -userPassword: Password1 -uid: AbbieK -givenName: Keven -mail: AbbieK@af019db996df414484b0d304e9b3637a.bitwarden.com -carLicense: TE2WK8 -departmentNumber: 6883 -employeeType: Contract -homePhone: +1 213 230-9235 -initials: K. A. -mobile: +1 213 573-7041 -pager: +1 213 812-3207 -roomNumber: 9431 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karia Pintwala,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karia Pintwala -sn: Pintwala -description: This is Karia Pintwala's description -facsimileTelephoneNumber: +1 206 125-8063 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 590-3940 -title: Chief Product Development Writer -userPassword: Password1 -uid: PintwalK -givenName: Karia -mail: PintwalK@c928c350e6174849b6cbd911c4679767.bitwarden.com -carLicense: 6MMVY0 -departmentNumber: 2341 -employeeType: Contract -homePhone: +1 206 893-7491 -initials: K. P. -mobile: +1 206 328-4751 -pager: +1 206 290-5166 -roomNumber: 8451 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Philly Scharf,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Philly Scharf -sn: Scharf -description: This is Philly Scharf's description -facsimileTelephoneNumber: +1 408 626-6825 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 393-4784 -title: Supreme Administrative Janitor -userPassword: Password1 -uid: ScharfP -givenName: Philly -mail: ScharfP@9fcf94ac0f884f17b9c7deb28b0f8191.bitwarden.com -carLicense: U21A6G -departmentNumber: 3433 -employeeType: Contract -homePhone: +1 408 184-5857 -initials: P. S. -mobile: +1 408 618-6337 -pager: +1 408 801-2096 -roomNumber: 9522 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jazmin Hargrow,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jazmin Hargrow -sn: Hargrow -description: This is Jazmin Hargrow's description -facsimileTelephoneNumber: +1 206 697-6326 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 206 947-4569 -title: Supreme Management Consultant -userPassword: Password1 -uid: HargrowJ -givenName: Jazmin -mail: HargrowJ@81ac61a0646d4564aa0d3d94526b0433.bitwarden.com -carLicense: JRI968 -departmentNumber: 4941 -employeeType: Normal -homePhone: +1 206 212-9669 -initials: J. H. -mobile: +1 206 736-4523 -pager: +1 206 184-5693 -roomNumber: 9504 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: TiongHoe Kazimierski -sn: Kazimierski -description: This is TiongHoe Kazimierski's description -facsimileTelephoneNumber: +1 415 238-6044 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 415 278-8411 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: KazimieT -givenName: TiongHoe -mail: KazimieT@629e6b0253394347a14c0d18a1bb0d2d.bitwarden.com -carLicense: 4I0VRM -departmentNumber: 1340 -employeeType: Normal -homePhone: +1 415 918-8372 -initials: T. K. -mobile: +1 415 637-7171 -pager: +1 415 814-5276 -roomNumber: 8664 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Misti Ellington,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Misti Ellington -sn: Ellington -description: This is Misti Ellington's description -facsimileTelephoneNumber: +1 408 577-5284 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 538-5956 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: EllingtM -givenName: Misti -mail: EllingtM@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com -carLicense: 0J0JWS -departmentNumber: 7648 -employeeType: Contract -homePhone: +1 408 763-1052 -initials: M. E. -mobile: +1 408 510-4194 -pager: +1 408 976-7385 -roomNumber: 8380 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nevein Quinones,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nevein Quinones -sn: Quinones -description: This is Nevein Quinones's description -facsimileTelephoneNumber: +1 818 487-7187 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 818 771-9086 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: QuinoneN -givenName: Nevein -mail: QuinoneN@ebf177db39e64709a34e9e3eaf86f3b2.bitwarden.com -carLicense: RHSP4V -departmentNumber: 5113 -employeeType: Normal -homePhone: +1 818 959-1042 -initials: N. Q. -mobile: +1 818 977-2599 -pager: +1 818 792-6252 -roomNumber: 8452 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quon Rhodenizer -sn: Rhodenizer -description: This is Quon Rhodenizer's description -facsimileTelephoneNumber: +1 408 159-7105 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 223-1954 -title: Master Product Development Assistant -userPassword: Password1 -uid: RhodeniQ -givenName: Quon -mail: RhodeniQ@a8523f0ff874441ba48222b981c29c83.bitwarden.com -carLicense: K4DWOK -departmentNumber: 6493 -employeeType: Employee -homePhone: +1 408 118-1108 -initials: Q. R. -mobile: +1 408 188-2235 -pager: +1 408 125-7428 -roomNumber: 9710 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Devinne McMasters,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devinne McMasters -sn: McMasters -description: This is Devinne McMasters's description -facsimileTelephoneNumber: +1 415 674-3257 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 415 798-3768 -title: Chief Janitorial Writer -userPassword: Password1 -uid: McMasteD -givenName: Devinne -mail: McMasteD@0af2af74178d40d4b0f1a836b6891d63.bitwarden.com -carLicense: 7IU8B3 -departmentNumber: 8176 -employeeType: Normal -homePhone: +1 415 305-3647 -initials: D. M. -mobile: +1 415 612-4158 -pager: +1 415 330-4032 -roomNumber: 9625 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Datha Winnipeg -sn: Winnipeg -description: This is Datha Winnipeg's description -facsimileTelephoneNumber: +1 804 799-3751 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 804 135-1128 -title: Chief Janitorial Visionary -userPassword: Password1 -uid: WinnipeD -givenName: Datha -mail: WinnipeD@3b71f78d317548348aee8244389f06bf.bitwarden.com -carLicense: T1GUAD -departmentNumber: 4285 -employeeType: Normal -homePhone: +1 804 403-2457 -initials: D. W. -mobile: +1 804 728-8630 -pager: +1 804 308-9639 -roomNumber: 8164 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carola Eustace,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carola Eustace -sn: Eustace -description: This is Carola Eustace's description -facsimileTelephoneNumber: +1 804 859-2898 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 414-8517 -title: Junior Product Testing Consultant -userPassword: Password1 -uid: EustaceC -givenName: Carola -mail: EustaceC@b64a8a3393c1430b9818da0137b2ae83.bitwarden.com -carLicense: AWH81X -departmentNumber: 6377 -employeeType: Contract -homePhone: +1 804 399-2370 -initials: C. E. -mobile: +1 804 282-2253 -pager: +1 804 261-9557 -roomNumber: 9978 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bo Xayaraj -sn: Xayaraj -description: This is Bo Xayaraj's description -facsimileTelephoneNumber: +1 804 821-8683 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 341-7808 -title: Chief Human Resources Grunt -userPassword: Password1 -uid: XayarajB -givenName: Bo -mail: XayarajB@d240988d596c4a2aadfc9feacb7a7323.bitwarden.com -carLicense: BVKQXP -departmentNumber: 8283 -employeeType: Normal -homePhone: +1 804 795-5225 -initials: B. X. -mobile: +1 804 100-7058 -pager: +1 804 165-7272 -roomNumber: 8017 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Thelma Fazel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thelma Fazel -sn: Fazel -description: This is Thelma Fazel's description -facsimileTelephoneNumber: +1 415 282-4595 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 764-6769 -title: Master Payroll Visionary -userPassword: Password1 -uid: FazelT -givenName: Thelma -mail: FazelT@17c722e6b16149e08a18c9a05c1e5e9e.bitwarden.com -carLicense: VTCH4N -departmentNumber: 2137 -employeeType: Normal -homePhone: +1 415 306-1897 -initials: T. F. -mobile: +1 415 258-8945 -pager: +1 415 399-2259 -roomNumber: 8145 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Arlene Galasso,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlene Galasso -sn: Galasso -description: This is Arlene Galasso's description -facsimileTelephoneNumber: +1 804 309-2197 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 804 974-3883 -title: Supreme Product Development President -userPassword: Password1 -uid: GalassoA -givenName: Arlene -mail: GalassoA@6fd7a8381bd04762a7cac00d6e4b256a.bitwarden.com -carLicense: 2DT1V9 -departmentNumber: 4061 -employeeType: Contract -homePhone: +1 804 151-9787 -initials: A. G. -mobile: +1 804 651-6375 -pager: +1 804 614-4605 -roomNumber: 8407 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Andrew Shuman,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrew Shuman -sn: Shuman -description: This is Andrew Shuman's description -facsimileTelephoneNumber: +1 510 122-9175 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 568-3654 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: ShumanA -givenName: Andrew -mail: ShumanA@9d0d16d5fafb4671b8051c5b2764974d.bitwarden.com -carLicense: PJMCDA -departmentNumber: 2455 -employeeType: Employee -homePhone: +1 510 285-4572 -initials: A. S. -mobile: +1 510 760-1194 -pager: +1 510 946-4387 -roomNumber: 9545 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rahal Reitfort -sn: Reitfort -description: This is Rahal Reitfort's description -facsimileTelephoneNumber: +1 213 573-4548 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 452-2999 -title: Supreme Human Resources Pinhead -userPassword: Password1 -uid: ReitforR -givenName: Rahal -mail: ReitforR@1fd5c1cb42fa4549b7b4a650b3209bed.bitwarden.com -carLicense: YT0H0K -departmentNumber: 8904 -employeeType: Employee -homePhone: +1 213 250-5385 -initials: R. R. -mobile: +1 213 213-7384 -pager: +1 213 531-5142 -roomNumber: 9671 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alane Planting,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alane Planting -sn: Planting -description: This is Alane Planting's description -facsimileTelephoneNumber: +1 510 373-9892 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 978-9998 -title: Master Peons Madonna -userPassword: Password1 -uid: PlantinA -givenName: Alane -mail: PlantinA@ae1823164d544b79bc05faac357029b4.bitwarden.com -carLicense: UNRJBC -departmentNumber: 5582 -employeeType: Contract -homePhone: +1 510 665-1653 -initials: A. P. -mobile: +1 510 402-2282 -pager: +1 510 356-3545 -roomNumber: 8146 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elle Chaddock,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elle Chaddock -sn: Chaddock -description: This is Elle Chaddock's description -facsimileTelephoneNumber: +1 804 506-4710 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 804 835-2581 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: ChaddocE -givenName: Elle -mail: ChaddocE@f724343d8470496bb0df55542d73aa26.bitwarden.com -carLicense: QA0EM9 -departmentNumber: 3515 -employeeType: Employee -homePhone: +1 804 652-4125 -initials: E. C. -mobile: +1 804 389-9422 -pager: +1 804 803-6709 -roomNumber: 9183 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rachael Benchimol,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rachael Benchimol -sn: Benchimol -description: This is Rachael Benchimol's description -facsimileTelephoneNumber: +1 510 500-4667 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 560-1246 -title: Supreme Product Development Janitor -userPassword: Password1 -uid: BenchimR -givenName: Rachael -mail: BenchimR@37098c17a937400b986b54e1bc765718.bitwarden.com -carLicense: 6KFY1K -departmentNumber: 8300 -employeeType: Employee -homePhone: +1 510 777-9079 -initials: R. B. -mobile: +1 510 592-5847 -pager: +1 510 535-7275 -roomNumber: 9332 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Claresta Ramakrishna,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claresta Ramakrishna -sn: Ramakrishna -description: This is Claresta Ramakrishna's description -facsimileTelephoneNumber: +1 408 441-5849 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 408 462-7019 -title: Associate Management Stooge -userPassword: Password1 -uid: RamakriC -givenName: Claresta -mail: RamakriC@7f3b2e6863504983b91067d1959b5550.bitwarden.com -carLicense: OEQMYF -departmentNumber: 1507 -employeeType: Normal -homePhone: +1 408 159-1617 -initials: C. R. -mobile: +1 408 621-4933 -pager: +1 408 826-7387 -roomNumber: 9984 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ivory Bolon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivory Bolon -sn: Bolon -description: This is Ivory Bolon's description -facsimileTelephoneNumber: +1 408 264-2726 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 408 403-4519 -title: Junior Peons President -userPassword: Password1 -uid: BolonI -givenName: Ivory -mail: BolonI@cabd0c89a78947b69a999dc093307343.bitwarden.com -carLicense: UCV9W7 -departmentNumber: 8267 -employeeType: Employee -homePhone: +1 408 847-2168 -initials: I. B. -mobile: +1 408 972-2712 -pager: +1 408 597-9223 -roomNumber: 8108 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brenton Buker,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brenton Buker -sn: Buker -description: This is Brenton Buker's description -facsimileTelephoneNumber: +1 804 934-7532 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 804 499-6206 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: BukerB -givenName: Brenton -mail: BukerB@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com -carLicense: WOLVMJ -departmentNumber: 4089 -employeeType: Employee -homePhone: +1 804 756-8537 -initials: B. B. -mobile: +1 804 918-5949 -pager: +1 804 339-1741 -roomNumber: 9172 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Beau Dorion,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beau Dorion -sn: Dorion -description: This is Beau Dorion's description -facsimileTelephoneNumber: +1 213 500-6275 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 123-4950 -title: Associate Product Development Czar -userPassword: Password1 -uid: DorionB -givenName: Beau -mail: DorionB@4ad19e5c2a7149b892ada70174e983fb.bitwarden.com -carLicense: R392QJ -departmentNumber: 2872 -employeeType: Employee -homePhone: +1 213 646-4872 -initials: B. D. -mobile: +1 213 478-8782 -pager: +1 213 996-2852 -roomNumber: 9799 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yalcin Sanders -sn: Sanders -description: This is Yalcin Sanders's description -facsimileTelephoneNumber: +1 804 655-8303 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 464-3059 -title: Master Product Testing Stooge -userPassword: Password1 -uid: SandersY -givenName: Yalcin -mail: SandersY@5f5111842ce14a15a15227b296d55b2d.bitwarden.com -carLicense: 3OM70B -departmentNumber: 2031 -employeeType: Employee -homePhone: +1 804 711-1311 -initials: Y. S. -mobile: +1 804 885-8240 -pager: +1 804 735-4388 -roomNumber: 8016 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lelah Souza,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lelah Souza -sn: Souza -description: This is Lelah Souza's description -facsimileTelephoneNumber: +1 510 411-6243 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 510 665-8824 -title: Junior Peons President -userPassword: Password1 -uid: SouzaL -givenName: Lelah -mail: SouzaL@9b8e18aa6d95436696ff678adad8f690.bitwarden.com -carLicense: F4BYXY -departmentNumber: 8149 -employeeType: Employee -homePhone: +1 510 740-7114 -initials: L. S. -mobile: +1 510 414-5014 -pager: +1 510 452-3371 -roomNumber: 8708 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Helen Marshman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helen Marshman -sn: Marshman -description: This is Helen Marshman's description -facsimileTelephoneNumber: +1 206 446-9645 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 206 232-6465 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: MarshmaH -givenName: Helen -mail: MarshmaH@e903c41d0e6d47309eaa689127a4e081.bitwarden.com -carLicense: F4OV02 -departmentNumber: 1595 -employeeType: Contract -homePhone: +1 206 521-6852 -initials: H. M. -mobile: +1 206 757-6508 -pager: +1 206 640-5924 -roomNumber: 9887 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yvon Uae,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yvon Uae -sn: Uae -description: This is Yvon Uae's description -facsimileTelephoneNumber: +1 206 328-8501 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 881-8501 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: UaeY -givenName: Yvon -mail: UaeY@2974cf90fe1d4835b1ba05177dd29243.bitwarden.com -carLicense: 09DEQD -departmentNumber: 3979 -employeeType: Normal -homePhone: +1 206 117-5789 -initials: Y. U. -mobile: +1 206 228-4804 -pager: +1 206 882-9131 -roomNumber: 8723 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Laten Vartanesian,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laten Vartanesian -sn: Vartanesian -description: This is Laten Vartanesian's description -facsimileTelephoneNumber: +1 415 641-1984 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 118-6750 -title: Chief Product Development Dictator -userPassword: Password1 -uid: VartaneL -givenName: Laten -mail: VartaneL@edaeeeda9dac4d529991a1e33586bf00.bitwarden.com -carLicense: FHF5N7 -departmentNumber: 6757 -employeeType: Normal -homePhone: +1 415 885-1584 -initials: L. V. -mobile: +1 415 174-5478 -pager: +1 415 180-7795 -roomNumber: 9480 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Susy Kadamani,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susy Kadamani -sn: Kadamani -description: This is Susy Kadamani's description -facsimileTelephoneNumber: +1 213 566-5853 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 161-6810 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: KadamanS -givenName: Susy -mail: KadamanS@a4520dd200454f57be2c8b99e6f4ce8d.bitwarden.com -carLicense: AJRN4S -departmentNumber: 7503 -employeeType: Contract -homePhone: +1 213 883-5069 -initials: S. K. -mobile: +1 213 379-4663 -pager: +1 213 588-7918 -roomNumber: 8290 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Berte Hesk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berte Hesk -sn: Hesk -description: This is Berte Hesk's description -facsimileTelephoneNumber: +1 510 251-5947 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 601-6765 -title: Associate Product Development Manager -userPassword: Password1 -uid: HeskB -givenName: Berte -mail: HeskB@022bca8b2ca74ff9b8d4afa8e3f8ebf5.bitwarden.com -carLicense: CY2WXI -departmentNumber: 7327 -employeeType: Normal -homePhone: +1 510 380-1706 -initials: B. H. -mobile: +1 510 890-6323 -pager: +1 510 715-2703 -roomNumber: 9779 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Joy Willard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joy Willard -sn: Willard -description: This is Joy Willard's description -facsimileTelephoneNumber: +1 818 607-8964 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 818 287-3450 -title: Supreme Management Consultant -userPassword: Password1 -uid: WillardJ -givenName: Joy -mail: WillardJ@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com -carLicense: 0E5VMQ -departmentNumber: 5509 -employeeType: Contract -homePhone: +1 818 480-8835 -initials: J. W. -mobile: +1 818 678-6539 -pager: +1 818 379-7554 -roomNumber: 9832 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Britte Thorman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Britte Thorman -sn: Thorman -description: This is Britte Thorman's description -facsimileTelephoneNumber: +1 510 978-1316 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 510 796-7523 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: ThormanB -givenName: Britte -mail: ThormanB@ecb60d19de8e42218392139a0168ec8b.bitwarden.com -carLicense: 87LSYD -departmentNumber: 1050 -employeeType: Employee -homePhone: +1 510 813-5701 -initials: B. T. -mobile: +1 510 434-5345 -pager: +1 510 928-3256 -roomNumber: 8109 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amberly Inscoe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amberly Inscoe -sn: Inscoe -description: This is Amberly Inscoe's description -facsimileTelephoneNumber: +1 213 893-4372 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 213 323-9911 -title: Chief Payroll Czar -userPassword: Password1 -uid: InscoeA -givenName: Amberly -mail: InscoeA@52c69ee191e243ddb28fef6b7d3171f0.bitwarden.com -carLicense: 537CR8 -departmentNumber: 4628 -employeeType: Contract -homePhone: +1 213 845-8704 -initials: A. I. -mobile: +1 213 958-5177 -pager: +1 213 256-2295 -roomNumber: 8282 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karole Prints,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karole Prints -sn: Prints -description: This is Karole Prints's description -facsimileTelephoneNumber: +1 213 504-6795 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 566-9398 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: PrintsK -givenName: Karole -mail: PrintsK@d7bcc941bf9944f4a0cf58f580b041c6.bitwarden.com -carLicense: T0UPHD -departmentNumber: 8042 -employeeType: Employee -homePhone: +1 213 885-2292 -initials: K. P. -mobile: +1 213 927-7791 -pager: +1 213 478-4241 -roomNumber: 9807 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ludovico Reinink,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ludovico Reinink -sn: Reinink -description: This is Ludovico Reinink's description -facsimileTelephoneNumber: +1 804 987-2632 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 997-4149 -title: Associate Peons Technician -userPassword: Password1 -uid: ReininkL -givenName: Ludovico -mail: ReininkL@bbe574aa78294bfe850c65ae7f84a624.bitwarden.com -carLicense: QQV3IB -departmentNumber: 2028 -employeeType: Normal -homePhone: +1 804 896-2726 -initials: L. R. -mobile: +1 804 971-3045 -pager: +1 804 434-7864 -roomNumber: 9492 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elka Stubblefield -sn: Stubblefield -description: This is Elka Stubblefield's description -facsimileTelephoneNumber: +1 415 563-8981 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 415 427-1116 -title: Master Product Testing Consultant -userPassword: Password1 -uid: StubbleE -givenName: Elka -mail: StubbleE@dcb0954e4af74751966d9af34246f81f.bitwarden.com -carLicense: IKLQE9 -departmentNumber: 3268 -employeeType: Employee -homePhone: +1 415 231-4445 -initials: E. S. -mobile: +1 415 754-7382 -pager: +1 415 928-6450 -roomNumber: 8845 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nixie Hoddinott -sn: Hoddinott -description: This is Nixie Hoddinott's description -facsimileTelephoneNumber: +1 408 600-3151 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 446-2249 -title: Supreme Human Resources Sales Rep -userPassword: Password1 -uid: HoddinoN -givenName: Nixie -mail: HoddinoN@840c6c20816640f3a23c22832cd051de.bitwarden.com -carLicense: XSN5FJ -departmentNumber: 8568 -employeeType: Normal -homePhone: +1 408 935-8208 -initials: N. H. -mobile: +1 408 406-5529 -pager: +1 408 749-3665 -roomNumber: 9954 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Maritsa Mashura,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maritsa Mashura -sn: Mashura -description: This is Maritsa Mashura's description -facsimileTelephoneNumber: +1 213 903-3196 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 213 167-6905 -title: Chief Administrative Admin -userPassword: Password1 -uid: MashuraM -givenName: Maritsa -mail: MashuraM@05056fc74dc646529206862bf66ee307.bitwarden.com -carLicense: MRNQFA -departmentNumber: 1941 -employeeType: Normal -homePhone: +1 213 115-4749 -initials: M. M. -mobile: +1 213 708-8215 -pager: +1 213 532-3586 -roomNumber: 8802 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fern McGuigan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fern McGuigan -sn: McGuigan -description: This is Fern McGuigan's description -facsimileTelephoneNumber: +1 206 567-8265 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 454-5173 -title: Junior Janitorial Janitor -userPassword: Password1 -uid: McGuigaF -givenName: Fern -mail: McGuigaF@56c7b6a1cbe44355a3450da29d042416.bitwarden.com -carLicense: G4CPGF -departmentNumber: 6472 -employeeType: Contract -homePhone: +1 206 675-7227 -initials: F. M. -mobile: +1 206 995-3813 -pager: +1 206 169-4557 -roomNumber: 9392 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ddene Gunasekera -sn: Gunasekera -description: This is Ddene Gunasekera's description -facsimileTelephoneNumber: +1 415 377-8186 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 658-7208 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: GunasekD -givenName: Ddene -mail: GunasekD@6359449d115e4f1381b399393d47713b.bitwarden.com -carLicense: 3C7LGU -departmentNumber: 6800 -employeeType: Employee -homePhone: +1 415 465-1903 -initials: D. G. -mobile: +1 415 492-8106 -pager: +1 415 382-3757 -roomNumber: 8932 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gavin Parr,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gavin Parr -sn: Parr -description: This is Gavin Parr's description -facsimileTelephoneNumber: +1 415 202-5254 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 442-7637 -title: Master Peons Warrior -userPassword: Password1 -uid: ParrG -givenName: Gavin -mail: ParrG@ab80825fb9f64e0fa2550d84decf8401.bitwarden.com -carLicense: PF7V9J -departmentNumber: 8634 -employeeType: Employee -homePhone: +1 415 692-2337 -initials: G. P. -mobile: +1 415 716-7067 -pager: +1 415 228-1590 -roomNumber: 8061 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anthiathia Nie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anthiathia Nie -sn: Nie -description: This is Anthiathia Nie's description -facsimileTelephoneNumber: +1 818 238-4428 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 818 833-8097 -title: Associate Management Developer -userPassword: Password1 -uid: NieA -givenName: Anthiathia -mail: NieA@d0277d6f48c14695a4405ab88f901980.bitwarden.com -carLicense: 5JJKUT -departmentNumber: 4683 -employeeType: Employee -homePhone: +1 818 720-9965 -initials: A. N. -mobile: +1 818 186-7681 -pager: +1 818 406-9711 -roomNumber: 8658 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vita Larkin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vita Larkin -sn: Larkin -description: This is Vita Larkin's description -facsimileTelephoneNumber: +1 213 859-1040 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 140-5526 -title: Junior Payroll Figurehead -userPassword: Password1 -uid: LarkinV -givenName: Vita -mail: LarkinV@cb516e3803cd419889eae9883d74115c.bitwarden.com -carLicense: P1ASE9 -departmentNumber: 4264 -employeeType: Contract -homePhone: +1 213 381-7232 -initials: V. L. -mobile: +1 213 340-4424 -pager: +1 213 480-2067 -roomNumber: 9373 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Madan Enstone,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madan Enstone -sn: Enstone -description: This is Madan Enstone's description -facsimileTelephoneNumber: +1 408 965-1506 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 319-5222 -title: Associate Peons Director -userPassword: Password1 -uid: EnstoneM -givenName: Madan -mail: EnstoneM@f3b7d3d07c2e403b8aacf9226428b2e0.bitwarden.com -carLicense: MNH591 -departmentNumber: 7367 -employeeType: Normal -homePhone: +1 408 677-1869 -initials: M. E. -mobile: +1 408 276-9083 -pager: +1 408 358-3596 -roomNumber: 9712 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marilyn Wainwright,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marilyn Wainwright -sn: Wainwright -description: This is Marilyn Wainwright's description -facsimileTelephoneNumber: +1 213 655-6160 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 908-2190 -title: Master Peons Sales Rep -userPassword: Password1 -uid: WainwriM -givenName: Marilyn -mail: WainwriM@a21b6cdd6fed4b0baf49c2dbaa964e4a.bitwarden.com -carLicense: TDEDN4 -departmentNumber: 6920 -employeeType: Normal -homePhone: +1 213 558-4311 -initials: M. W. -mobile: +1 213 340-3036 -pager: +1 213 579-7499 -roomNumber: 8932 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Amanda Tigg,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amanda Tigg -sn: Tigg -description: This is Amanda Tigg's description -facsimileTelephoneNumber: +1 206 872-3437 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 833-2293 -title: Chief Product Development Janitor -userPassword: Password1 -uid: TiggA -givenName: Amanda -mail: TiggA@fa8aab84123a46888aa8c26b4a298c9e.bitwarden.com -carLicense: J19OGD -departmentNumber: 7010 -employeeType: Normal -homePhone: +1 206 968-2898 -initials: A. T. -mobile: +1 206 780-7615 -pager: +1 206 428-7241 -roomNumber: 9380 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jermaine Shackley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jermaine Shackley -sn: Shackley -description: This is Jermaine Shackley's description -facsimileTelephoneNumber: +1 213 494-5177 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 832-1051 -title: Master Payroll Dictator -userPassword: Password1 -uid: ShackleJ -givenName: Jermaine -mail: ShackleJ@50866cc225ba4cf3b94e887770c1c4c5.bitwarden.com -carLicense: NHVOOA -departmentNumber: 1848 -employeeType: Contract -homePhone: +1 213 472-8783 -initials: J. S. -mobile: +1 213 257-6256 -pager: +1 213 912-1076 -roomNumber: 8444 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fitzgerald Murat -sn: Murat -description: This is Fitzgerald Murat's description -facsimileTelephoneNumber: +1 818 278-2331 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 591-1864 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: MuratF -givenName: Fitzgerald -mail: MuratF@0c4de0f537ac4059b43bc376b1423585.bitwarden.com -carLicense: 0UCI16 -departmentNumber: 1896 -employeeType: Employee -homePhone: +1 818 989-6391 -initials: F. M. -mobile: +1 818 116-8976 -pager: +1 818 634-8414 -roomNumber: 9002 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alev Sunatori,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alev Sunatori -sn: Sunatori -description: This is Alev Sunatori's description -facsimileTelephoneNumber: +1 804 648-1017 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 539-6498 -title: Master Janitorial Architect -userPassword: Password1 -uid: SunatorA -givenName: Alev -mail: SunatorA@a9b753f4c531475793fa04a6da053eaf.bitwarden.com -carLicense: J1Q657 -departmentNumber: 8627 -employeeType: Normal -homePhone: +1 804 827-7334 -initials: A. S. -mobile: +1 804 312-2333 -pager: +1 804 925-1741 -roomNumber: 8472 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Juliette Finane,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juliette Finane -sn: Finane -description: This is Juliette Finane's description -facsimileTelephoneNumber: +1 818 970-6319 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 789-1879 -title: Master Product Development Artist -userPassword: Password1 -uid: FinaneJ -givenName: Juliette -mail: FinaneJ@b1fdb151f0e64e1a958a0e82820ba255.bitwarden.com -carLicense: UFSMJ7 -departmentNumber: 9242 -employeeType: Employee -homePhone: +1 818 199-4635 -initials: J. F. -mobile: +1 818 603-9426 -pager: +1 818 990-2447 -roomNumber: 8775 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jessamyn Frampton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jessamyn Frampton -sn: Frampton -description: This is Jessamyn Frampton's description -facsimileTelephoneNumber: +1 206 844-2640 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 560-5101 -title: Associate Peons Stooge -userPassword: Password1 -uid: FramptoJ -givenName: Jessamyn -mail: FramptoJ@646d6f014bf44c5484623c7f1ed699a0.bitwarden.com -carLicense: QMDE00 -departmentNumber: 1176 -employeeType: Normal -homePhone: +1 206 183-5482 -initials: J. F. -mobile: +1 206 485-5303 -pager: +1 206 977-7440 -roomNumber: 9909 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Norina Piersol,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norina Piersol -sn: Piersol -description: This is Norina Piersol's description -facsimileTelephoneNumber: +1 206 960-8079 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 339-9283 -title: Supreme Product Development Punk -userPassword: Password1 -uid: PiersolN -givenName: Norina -mail: PiersolN@a80cec7586b34ab8b14925cae24221e2.bitwarden.com -carLicense: B1W0P1 -departmentNumber: 6097 -employeeType: Normal -homePhone: +1 206 175-8415 -initials: N. P. -mobile: +1 206 477-2775 -pager: +1 206 590-7100 -roomNumber: 9991 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Freeman Dickerson -sn: Dickerson -description: This is Freeman Dickerson's description -facsimileTelephoneNumber: +1 213 315-6434 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 213 403-5218 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: DickersF -givenName: Freeman -mail: DickersF@5e4575ba15004635a07ebaa5c8dd9475.bitwarden.com -carLicense: Y7KWBJ -departmentNumber: 6181 -employeeType: Contract -homePhone: +1 213 793-1211 -initials: F. D. -mobile: +1 213 729-4512 -pager: +1 213 609-5748 -roomNumber: 8132 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Subhra Darby,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Subhra Darby -sn: Darby -description: This is Subhra Darby's description -facsimileTelephoneNumber: +1 818 753-1131 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 610-1201 -title: Chief Janitorial Punk -userPassword: Password1 -uid: DarbyS -givenName: Subhra -mail: DarbyS@9f504fcc849346579e7eeede9f9505f6.bitwarden.com -carLicense: 14TNJJ -departmentNumber: 3100 -employeeType: Contract -homePhone: +1 818 469-7639 -initials: S. D. -mobile: +1 818 216-5903 -pager: +1 818 501-2110 -roomNumber: 8947 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=AnneLise Krodel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnneLise Krodel -sn: Krodel -description: This is AnneLise Krodel's description -facsimileTelephoneNumber: +1 804 449-9117 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 370-1645 -title: Chief Management Pinhead -userPassword: Password1 -uid: KrodelA -givenName: AnneLise -mail: KrodelA@4e28ebfb16ef4a5e8f0e2bce0a228472.bitwarden.com -carLicense: WRCCGN -departmentNumber: 4090 -employeeType: Normal -homePhone: +1 804 438-5187 -initials: A. K. -mobile: +1 804 752-7866 -pager: +1 804 778-3363 -roomNumber: 8894 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bobbi Azevedo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobbi Azevedo -sn: Azevedo -description: This is Bobbi Azevedo's description -facsimileTelephoneNumber: +1 804 363-8659 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 675-9753 -title: Associate Management Figurehead -userPassword: Password1 -uid: AzevedoB -givenName: Bobbi -mail: AzevedoB@eb2999c8fa284a3f8c9f7cd764a9ece1.bitwarden.com -carLicense: I05XA5 -departmentNumber: 2861 -employeeType: Employee -homePhone: +1 804 275-1273 -initials: B. A. -mobile: +1 804 569-4314 -pager: +1 804 706-8559 -roomNumber: 8798 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vikki Tu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vikki Tu -sn: Tu -description: This is Vikki Tu's description -facsimileTelephoneNumber: +1 510 419-6776 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 781-8617 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: TuV -givenName: Vikki -mail: TuV@b75dea79bbf94bcb8c735dd8f3b3eb74.bitwarden.com -carLicense: JSXS2S -departmentNumber: 3882 -employeeType: Normal -homePhone: +1 510 227-8233 -initials: V. T. -mobile: +1 510 410-7700 -pager: +1 510 938-4885 -roomNumber: 8696 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Message Armstrong,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Message Armstrong -sn: Armstrong -description: This is Message Armstrong's description -facsimileTelephoneNumber: +1 408 351-6792 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 531-1077 -title: Master Administrative Mascot -userPassword: Password1 -uid: ArmstroM -givenName: Message -mail: ArmstroM@a5eae71d9b964f5ba8783184abc9d511.bitwarden.com -carLicense: GESPAS -departmentNumber: 8615 -employeeType: Employee -homePhone: +1 408 186-1346 -initials: M. A. -mobile: +1 408 379-6116 -pager: +1 408 472-3050 -roomNumber: 8110 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maury Este,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maury Este -sn: Este -description: This is Maury Este's description -facsimileTelephoneNumber: +1 415 238-6212 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 774-5817 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: EsteM -givenName: Maury -mail: EsteM@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com -carLicense: 8P47KD -departmentNumber: 7505 -employeeType: Employee -homePhone: +1 415 839-5699 -initials: M. E. -mobile: +1 415 486-9278 -pager: +1 415 795-2405 -roomNumber: 8577 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Noel Mitrani,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noel Mitrani -sn: Mitrani -description: This is Noel Mitrani's description -facsimileTelephoneNumber: +1 206 203-2434 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 454-3983 -title: Master Payroll Madonna -userPassword: Password1 -uid: MitraniN -givenName: Noel -mail: MitraniN@7f1848e959b9431aae2d7ba89294b649.bitwarden.com -carLicense: O9RH42 -departmentNumber: 3549 -employeeType: Employee -homePhone: +1 206 584-4613 -initials: N. M. -mobile: +1 206 882-7910 -pager: +1 206 532-5765 -roomNumber: 8245 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shaib Codata,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaib Codata -sn: Codata -description: This is Shaib Codata's description -facsimileTelephoneNumber: +1 408 479-2041 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 408 135-4628 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: CodataS -givenName: Shaib -mail: CodataS@50684c4df5634a1a858fe299e0e2466c.bitwarden.com -carLicense: 1KNB27 -departmentNumber: 4350 -employeeType: Contract -homePhone: +1 408 820-4664 -initials: S. C. -mobile: +1 408 228-4407 -pager: +1 408 483-4001 -roomNumber: 8647 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donnette Oestreich -sn: Oestreich -description: This is Donnette Oestreich's description -facsimileTelephoneNumber: +1 408 661-4037 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 408 330-8951 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: OestreiD -givenName: Donnette -mail: OestreiD@8ec12044b3f24cc38b71b6337247088e.bitwarden.com -carLicense: JYTHYQ -departmentNumber: 7586 -employeeType: Employee -homePhone: +1 408 185-6142 -initials: D. O. -mobile: +1 408 463-2407 -pager: +1 408 197-8063 -roomNumber: 8324 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tiffy Youngman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffy Youngman -sn: Youngman -description: This is Tiffy Youngman's description -facsimileTelephoneNumber: +1 818 878-8914 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 325-4782 -title: Associate Product Development Developer -userPassword: Password1 -uid: YoungmaT -givenName: Tiffy -mail: YoungmaT@4ad3d1fc09c94c579cc898d58b2c9182.bitwarden.com -carLicense: 62WYX5 -departmentNumber: 3203 -employeeType: Normal -homePhone: +1 818 588-9084 -initials: T. Y. -mobile: +1 818 336-2478 -pager: +1 818 361-2880 -roomNumber: 8754 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Terese VanHulst,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terese VanHulst -sn: VanHulst -description: This is Terese VanHulst's description -facsimileTelephoneNumber: +1 206 896-2911 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 183-1446 -title: Supreme Peons Grunt -userPassword: Password1 -uid: VanHulsT -givenName: Terese -mail: VanHulsT@d331e1c24d0b4aec9a1ad8d53034ac5c.bitwarden.com -carLicense: 1UPXOO -departmentNumber: 5035 -employeeType: Contract -homePhone: +1 206 100-8424 -initials: T. V. -mobile: +1 206 985-4305 -pager: +1 206 949-8400 -roomNumber: 8464 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brigitta Southon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigitta Southon -sn: Southon -description: This is Brigitta Southon's description -facsimileTelephoneNumber: +1 213 500-1475 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 805-2298 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: SouthonB -givenName: Brigitta -mail: SouthonB@f51717825b9c49d5a37e5f38d6f8642e.bitwarden.com -carLicense: 6MB5XR -departmentNumber: 1657 -employeeType: Employee -homePhone: +1 213 985-3996 -initials: B. S. -mobile: +1 213 748-8813 -pager: +1 213 370-9294 -roomNumber: 9688 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ashlan Nyce,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashlan Nyce -sn: Nyce -description: This is Ashlan Nyce's description -facsimileTelephoneNumber: +1 510 906-4005 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 308-2672 -title: Supreme Payroll Fellow -userPassword: Password1 -uid: NyceA -givenName: Ashlan -mail: NyceA@1992283e02a14cd2a3449a7bd08c0ed9.bitwarden.com -carLicense: MJJPFO -departmentNumber: 4761 -employeeType: Employee -homePhone: +1 510 405-7655 -initials: A. N. -mobile: +1 510 420-7095 -pager: +1 510 539-7190 -roomNumber: 9475 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alasdair Huether,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alasdair Huether -sn: Huether -description: This is Alasdair Huether's description -facsimileTelephoneNumber: +1 510 920-8772 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 409-2794 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: HuetherA -givenName: Alasdair -mail: HuetherA@38f4b173005e4744bda2f6fc3b8d52be.bitwarden.com -carLicense: FROSG3 -departmentNumber: 6697 -employeeType: Employee -homePhone: +1 510 360-9099 -initials: A. H. -mobile: +1 510 225-3352 -pager: +1 510 740-8230 -roomNumber: 9356 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rakesh Izzotti,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rakesh Izzotti -sn: Izzotti -description: This is Rakesh Izzotti's description -facsimileTelephoneNumber: +1 206 741-3101 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 133-3150 -title: Associate Management Sales Rep -userPassword: Password1 -uid: IzzottiR -givenName: Rakesh -mail: IzzottiR@ad45074948ed4c7dba5bf592df90bab5.bitwarden.com -carLicense: H0F4VG -departmentNumber: 8469 -employeeType: Normal -homePhone: +1 206 576-9903 -initials: R. I. -mobile: +1 206 345-4925 -pager: +1 206 264-7604 -roomNumber: 8166 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Irish Gaither,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Irish Gaither -sn: Gaither -description: This is Irish Gaither's description -facsimileTelephoneNumber: +1 510 128-9312 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 600-4326 -title: Junior Payroll Dictator -userPassword: Password1 -uid: GaitherI -givenName: Irish -mail: GaitherI@5222f90256d843c8a24103ca5cca030a.bitwarden.com -carLicense: 50HCCF -departmentNumber: 3823 -employeeType: Normal -homePhone: +1 510 560-5463 -initials: I. G. -mobile: +1 510 889-2019 -pager: +1 510 396-5489 -roomNumber: 9837 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanjay Ornburn -sn: Ornburn -description: This is Sanjay Ornburn's description -facsimileTelephoneNumber: +1 804 936-6279 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 570-3565 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: OrnburnS -givenName: Sanjay -mail: OrnburnS@c77046250d004539a16765d761d09cd8.bitwarden.com -carLicense: EF4E5Y -departmentNumber: 6031 -employeeType: Normal -homePhone: +1 804 734-6308 -initials: S. O. -mobile: +1 804 604-9460 -pager: +1 804 741-1255 -roomNumber: 8714 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norbert Kathnelson -sn: Kathnelson -description: This is Norbert Kathnelson's description -facsimileTelephoneNumber: +1 415 793-3818 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 708-3539 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: KathnelN -givenName: Norbert -mail: KathnelN@62021a608fd94b2d95ca05367f09faa6.bitwarden.com -carLicense: W75E79 -departmentNumber: 2871 -employeeType: Contract -homePhone: +1 415 572-3793 -initials: N. K. -mobile: +1 415 681-6743 -pager: +1 415 372-5325 -roomNumber: 8433 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Verlyn Farah,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verlyn Farah -sn: Farah -description: This is Verlyn Farah's description -facsimileTelephoneNumber: +1 510 316-7508 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 264-9938 -title: Master Peons Director -userPassword: Password1 -uid: FarahV -givenName: Verlyn -mail: FarahV@2e5d764491b046f6aa7ce6ba59a519f2.bitwarden.com -carLicense: EHPR2B -departmentNumber: 6893 -employeeType: Normal -homePhone: +1 510 228-1740 -initials: V. F. -mobile: +1 510 167-2571 -pager: +1 510 220-9166 -roomNumber: 9285 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rana Schartmann,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rana Schartmann -sn: Schartmann -description: This is Rana Schartmann's description -facsimileTelephoneNumber: +1 510 404-8831 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 256-1319 -title: Chief Peons Manager -userPassword: Password1 -uid: SchartmR -givenName: Rana -mail: SchartmR@132e9b9de0714b89851dab60393ea28b.bitwarden.com -carLicense: Q5M02S -departmentNumber: 5035 -employeeType: Normal -homePhone: +1 510 228-2455 -initials: R. S. -mobile: +1 510 159-8627 -pager: +1 510 577-9136 -roomNumber: 9261 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suki Kolodiejchuk -sn: Kolodiejchuk -description: This is Suki Kolodiejchuk's description -facsimileTelephoneNumber: +1 415 674-5996 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 450-1345 -title: Junior Peons Stooge -userPassword: Password1 -uid: KolodieS -givenName: Suki -mail: KolodieS@7bacc7c5f0114d5b9f10880dbb1a7890.bitwarden.com -carLicense: 4J0I1F -departmentNumber: 1509 -employeeType: Employee -homePhone: +1 415 674-4073 -initials: S. K. -mobile: +1 415 197-2509 -pager: +1 415 226-3216 -roomNumber: 8472 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=XuanLien Harms,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: XuanLien Harms -sn: Harms -description: This is XuanLien Harms's description -facsimileTelephoneNumber: +1 818 920-3194 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 154-5574 -title: Junior Management Mascot -userPassword: Password1 -uid: HarmsX -givenName: XuanLien -mail: HarmsX@588b4b264c9e4c9187b4cc73055957b8.bitwarden.com -carLicense: 85002B -departmentNumber: 6510 -employeeType: Contract -homePhone: +1 818 409-5306 -initials: X. H. -mobile: +1 818 218-8723 -pager: +1 818 732-6309 -roomNumber: 8251 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vimi Ermarkaryan -sn: Ermarkaryan -description: This is Vimi Ermarkaryan's description -facsimileTelephoneNumber: +1 213 253-3369 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 227-2038 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: ErmarkaV -givenName: Vimi -mail: ErmarkaV@f6758775c10f44a0888e5450785a13f6.bitwarden.com -carLicense: V3SRIV -departmentNumber: 3708 -employeeType: Contract -homePhone: +1 213 988-8302 -initials: V. E. -mobile: +1 213 735-6857 -pager: +1 213 754-3331 -roomNumber: 8899 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Regine Danforth,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regine Danforth -sn: Danforth -description: This is Regine Danforth's description -facsimileTelephoneNumber: +1 818 228-2758 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 892-3026 -title: Associate Management Grunt -userPassword: Password1 -uid: DanfortR -givenName: Regine -mail: DanfortR@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com -carLicense: QY9Q2K -departmentNumber: 8863 -employeeType: Employee -homePhone: +1 818 779-5824 -initials: R. D. -mobile: +1 818 848-3123 -pager: +1 818 959-1419 -roomNumber: 9774 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Adda Gutcher,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adda Gutcher -sn: Gutcher -description: This is Adda Gutcher's description -facsimileTelephoneNumber: +1 206 290-2329 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 206 273-9401 -title: Junior Payroll Fellow -userPassword: Password1 -uid: GutcherA -givenName: Adda -mail: GutcherA@49031457055a4efdb13b2d34b71f9815.bitwarden.com -carLicense: BYWWGD -departmentNumber: 2490 -employeeType: Employee -homePhone: +1 206 257-3771 -initials: A. G. -mobile: +1 206 281-6478 -pager: +1 206 596-3557 -roomNumber: 9386 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hpone Croxall,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hpone Croxall -sn: Croxall -description: This is Hpone Croxall's description -facsimileTelephoneNumber: +1 818 866-3789 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 800-7539 -title: Associate Product Development Madonna -userPassword: Password1 -uid: CroxallH -givenName: Hpone -mail: CroxallH@de96a17ce06e4487ba5f98c80195f121.bitwarden.com -carLicense: OKLVKO -departmentNumber: 5656 -employeeType: Normal -homePhone: +1 818 661-2922 -initials: H. C. -mobile: +1 818 883-4994 -pager: +1 818 950-6943 -roomNumber: 9133 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ailee McCauley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailee McCauley -sn: McCauley -description: This is Ailee McCauley's description -facsimileTelephoneNumber: +1 408 674-2975 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 408 359-2772 -title: Supreme Product Testing Director -userPassword: Password1 -uid: McCauleA -givenName: Ailee -mail: McCauleA@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com -carLicense: R5399M -departmentNumber: 2318 -employeeType: Employee -homePhone: +1 408 923-2198 -initials: A. M. -mobile: +1 408 834-3805 -pager: +1 408 399-5465 -roomNumber: 9522 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nadya Finucane,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nadya Finucane -sn: Finucane -description: This is Nadya Finucane's description -facsimileTelephoneNumber: +1 818 873-9751 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 800-2391 -title: Supreme Management Vice President -userPassword: Password1 -uid: FinucanN -givenName: Nadya -mail: FinucanN@93f688ea0bc04368a2a139880357d5fc.bitwarden.com -carLicense: YXUDWT -departmentNumber: 9794 -employeeType: Contract -homePhone: +1 818 786-8622 -initials: N. F. -mobile: +1 818 896-7375 -pager: +1 818 194-2465 -roomNumber: 8139 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mikelis Brennen -sn: Brennen -description: This is Mikelis Brennen's description -facsimileTelephoneNumber: +1 804 614-7395 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 882-4038 -title: Chief Product Testing Manager -userPassword: Password1 -uid: BrennenM -givenName: Mikelis -mail: BrennenM@a4b9657d81504fa48f8656723285a8fe.bitwarden.com -carLicense: HSH074 -departmentNumber: 7893 -employeeType: Normal -homePhone: +1 804 868-4667 -initials: M. B. -mobile: +1 804 399-4431 -pager: +1 804 367-3313 -roomNumber: 9719 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Brita Digenova,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brita Digenova -sn: Digenova -description: This is Brita Digenova's description -facsimileTelephoneNumber: +1 415 570-7089 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 775-6722 -title: Associate Payroll Manager -userPassword: Password1 -uid: DigenovB -givenName: Brita -mail: DigenovB@301d911e2eea414b9302e4f81984f9b2.bitwarden.com -carLicense: 6DRJPR -departmentNumber: 7703 -employeeType: Contract -homePhone: +1 415 796-9886 -initials: B. D. -mobile: +1 415 560-7967 -pager: +1 415 138-1738 -roomNumber: 9727 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jami Franze,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jami Franze -sn: Franze -description: This is Jami Franze's description -facsimileTelephoneNumber: +1 408 613-4723 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 408 507-4980 -title: Junior Peons Czar -userPassword: Password1 -uid: FranzeJ -givenName: Jami -mail: FranzeJ@ce9a5204a370483987964a25eaf0057b.bitwarden.com -carLicense: WWR4IY -departmentNumber: 9149 -employeeType: Contract -homePhone: +1 408 163-8989 -initials: J. F. -mobile: +1 408 275-6251 -pager: +1 408 429-2036 -roomNumber: 9892 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mariele Barnhart,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariele Barnhart -sn: Barnhart -description: This is Mariele Barnhart's description -facsimileTelephoneNumber: +1 818 454-9293 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 258-9135 -title: Chief Management Grunt -userPassword: Password1 -uid: BarnharM -givenName: Mariele -mail: BarnharM@5da48288aba74ccf8b206aad69790e91.bitwarden.com -carLicense: 4X6XDR -departmentNumber: 1636 -employeeType: Normal -homePhone: +1 818 246-6423 -initials: M. B. -mobile: +1 818 853-1536 -pager: +1 818 272-9298 -roomNumber: 9631 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jacalyn Jawor,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacalyn Jawor -sn: Jawor -description: This is Jacalyn Jawor's description -facsimileTelephoneNumber: +1 818 327-3748 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 535-9005 -title: Supreme Management Technician -userPassword: Password1 -uid: JaworJ -givenName: Jacalyn -mail: JaworJ@d8f95844461442f7932326cd41b836f9.bitwarden.com -carLicense: QB11PH -departmentNumber: 4085 -employeeType: Employee -homePhone: +1 818 363-8475 -initials: J. J. -mobile: +1 818 519-6143 -pager: +1 818 125-7553 -roomNumber: 9193 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=National Gahunia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: National Gahunia -sn: Gahunia -description: This is National Gahunia's description -facsimileTelephoneNumber: +1 408 550-8334 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 145-7139 -title: Junior Product Development Visionary -userPassword: Password1 -uid: GahuniaN -givenName: National -mail: GahuniaN@0a4355ee7fe94c7bb8cc9baf9905f443.bitwarden.com -carLicense: IV9YE2 -departmentNumber: 2058 -employeeType: Normal -homePhone: +1 408 538-2266 -initials: N. G. -mobile: +1 408 914-9505 -pager: +1 408 991-4198 -roomNumber: 8297 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Retha Spallin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Retha Spallin -sn: Spallin -description: This is Retha Spallin's description -facsimileTelephoneNumber: +1 408 148-4180 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 318-8482 -title: Master Product Development Engineer -userPassword: Password1 -uid: SpallinR -givenName: Retha -mail: SpallinR@e358162fa0384d918adc01a68c3773f5.bitwarden.com -carLicense: SKCCSN -departmentNumber: 5933 -employeeType: Employee -homePhone: +1 408 679-1005 -initials: R. S. -mobile: +1 408 639-1737 -pager: +1 408 308-5772 -roomNumber: 8302 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Estrella Benner,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estrella Benner -sn: Benner -description: This is Estrella Benner's description -facsimileTelephoneNumber: +1 206 962-9105 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 386-4798 -title: Master Product Testing Punk -userPassword: Password1 -uid: BennerE -givenName: Estrella -mail: BennerE@ff246c4446e74d80b9a0be3db943a949.bitwarden.com -carLicense: WRQQSH -departmentNumber: 7308 -employeeType: Contract -homePhone: +1 206 966-6309 -initials: E. B. -mobile: +1 206 971-2918 -pager: +1 206 830-9128 -roomNumber: 9076 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Thomasina Kling,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomasina Kling -sn: Kling -description: This is Thomasina Kling's description -facsimileTelephoneNumber: +1 408 539-6516 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 799-9531 -title: Supreme Product Development Manager -userPassword: Password1 -uid: KlingT -givenName: Thomasina -mail: KlingT@cbc82096b5e245c9b627cf69c35c8dc6.bitwarden.com -carLicense: K7V5SS -departmentNumber: 6926 -employeeType: Employee -homePhone: +1 408 506-8848 -initials: T. K. -mobile: +1 408 507-9208 -pager: +1 408 529-3617 -roomNumber: 9393 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jaan Lian,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaan Lian -sn: Lian -description: This is Jaan Lian's description -facsimileTelephoneNumber: +1 415 564-1892 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 935-8282 -title: Supreme Peons Developer -userPassword: Password1 -uid: LianJ -givenName: Jaan -mail: LianJ@c34ff4c9cd024e7eb996d78abb689848.bitwarden.com -carLicense: 58YTXP -departmentNumber: 1681 -employeeType: Normal -homePhone: +1 415 640-4828 -initials: J. L. -mobile: +1 415 359-5726 -pager: +1 415 132-3859 -roomNumber: 9156 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carola Osatuik,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carola Osatuik -sn: Osatuik -description: This is Carola Osatuik's description -facsimileTelephoneNumber: +1 213 323-5487 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 575-3779 -title: Junior Management Vice President -userPassword: Password1 -uid: OsatuikC -givenName: Carola -mail: OsatuikC@6e5be889b97e4253b4e9a6f0b2a0b677.bitwarden.com -carLicense: P80WXI -departmentNumber: 7649 -employeeType: Contract -homePhone: +1 213 524-8742 -initials: C. O. -mobile: +1 213 489-7755 -pager: +1 213 480-3758 -roomNumber: 9156 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fifine Roussin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fifine Roussin -sn: Roussin -description: This is Fifine Roussin's description -facsimileTelephoneNumber: +1 213 120-3167 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 290-4797 -title: Supreme Payroll Assistant -userPassword: Password1 -uid: RoussinF -givenName: Fifine -mail: RoussinF@ccf238ac72764498a2a4e871140940fd.bitwarden.com -carLicense: 09R20L -departmentNumber: 8914 -employeeType: Contract -homePhone: +1 213 266-6614 -initials: F. R. -mobile: +1 213 150-6599 -pager: +1 213 315-4936 -roomNumber: 9668 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erminie Amstutz -sn: Amstutz -description: This is Erminie Amstutz's description -facsimileTelephoneNumber: +1 415 765-3415 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 776-7568 -title: Junior Janitorial Warrior -userPassword: Password1 -uid: AmstutzE -givenName: Erminie -mail: AmstutzE@75e8bf055ea0424a878ab7ea7870e005.bitwarden.com -carLicense: 7384PX -departmentNumber: 3052 -employeeType: Employee -homePhone: +1 415 874-2234 -initials: E. A. -mobile: +1 415 750-7895 -pager: +1 415 695-3735 -roomNumber: 8752 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mariam Markmeyer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariam Markmeyer -sn: Markmeyer -description: This is Mariam Markmeyer's description -facsimileTelephoneNumber: +1 510 946-7536 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 510 663-7567 -title: Junior Management Engineer -userPassword: Password1 -uid: MarkmeyM -givenName: Mariam -mail: MarkmeyM@3e451f2ddbdc401ba9f442a5e6dfbe64.bitwarden.com -carLicense: 3E4GOP -departmentNumber: 8840 -employeeType: Contract -homePhone: +1 510 860-1840 -initials: M. M. -mobile: +1 510 796-7852 -pager: +1 510 160-9627 -roomNumber: 9861 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Randall Chalker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Randall Chalker -sn: Chalker -description: This is Randall Chalker's description -facsimileTelephoneNumber: +1 206 930-1007 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 312-9294 -title: Chief Peons Warrior -userPassword: Password1 -uid: ChalkerR -givenName: Randall -mail: ChalkerR@b44a0907ac54444880285a852c9427d8.bitwarden.com -carLicense: ANLGY8 -departmentNumber: 9182 -employeeType: Normal -homePhone: +1 206 820-6241 -initials: R. C. -mobile: +1 206 509-7452 -pager: +1 206 722-2460 -roomNumber: 8222 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anki Harriett,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anki Harriett -sn: Harriett -description: This is Anki Harriett's description -facsimileTelephoneNumber: +1 510 328-6449 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 821-4998 -title: Junior Human Resources Stooge -userPassword: Password1 -uid: HarrietA -givenName: Anki -mail: HarrietA@77b7d3ef3e7d45c8b172d9cee40bbded.bitwarden.com -carLicense: HJUEL4 -departmentNumber: 3276 -employeeType: Normal -homePhone: +1 510 663-4815 -initials: A. H. -mobile: +1 510 497-5751 -pager: +1 510 235-1537 -roomNumber: 8670 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Teena Pufpaff,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teena Pufpaff -sn: Pufpaff -description: This is Teena Pufpaff's description -facsimileTelephoneNumber: +1 213 381-4588 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 383-8170 -title: Master Management Stooge -userPassword: Password1 -uid: PufpaffT -givenName: Teena -mail: PufpaffT@8d2e6b6207eb40d79fa60fd1d88ac47e.bitwarden.com -carLicense: TXO9CC -departmentNumber: 2108 -employeeType: Employee -homePhone: +1 213 265-7576 -initials: T. P. -mobile: +1 213 731-8980 -pager: +1 213 695-3538 -roomNumber: 8591 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dalip Horak,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dalip Horak -sn: Horak -description: This is Dalip Horak's description -facsimileTelephoneNumber: +1 818 362-4535 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 818 415-6720 -title: Master Payroll Janitor -userPassword: Password1 -uid: HorakD -givenName: Dalip -mail: HorakD@f4907e1fff334cd1812952d9d0110270.bitwarden.com -carLicense: WG269M -departmentNumber: 9379 -employeeType: Contract -homePhone: +1 818 246-6667 -initials: D. H. -mobile: +1 818 530-6053 -pager: +1 818 219-2577 -roomNumber: 9086 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tamarra Grassmann,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamarra Grassmann -sn: Grassmann -description: This is Tamarra Grassmann's description -facsimileTelephoneNumber: +1 818 145-9810 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 701-1755 -title: Master Peons Consultant -userPassword: Password1 -uid: GrassmaT -givenName: Tamarra -mail: GrassmaT@7efd7c70c36c49faa77efd5d14e31317.bitwarden.com -carLicense: YNLGYG -departmentNumber: 4342 -employeeType: Contract -homePhone: +1 818 800-4873 -initials: T. G. -mobile: +1 818 295-2112 -pager: +1 818 286-9875 -roomNumber: 8345 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Arun Adolfie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arun Adolfie -sn: Adolfie -description: This is Arun Adolfie's description -facsimileTelephoneNumber: +1 206 241-3481 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 206 587-8631 -title: Associate Payroll Figurehead -userPassword: Password1 -uid: AdolfieA -givenName: Arun -mail: AdolfieA@b01b1bd56e3f464896b7135dd1b7da99.bitwarden.com -carLicense: YXY2KJ -departmentNumber: 8049 -employeeType: Employee -homePhone: +1 206 593-8409 -initials: A. A. -mobile: +1 206 606-2168 -pager: +1 206 872-4121 -roomNumber: 8850 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lettie Janelle,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lettie Janelle -sn: Janelle -description: This is Lettie Janelle's description -facsimileTelephoneNumber: +1 804 257-7945 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 222-9960 -title: Junior Product Testing Developer -userPassword: Password1 -uid: JanelleL -givenName: Lettie -mail: JanelleL@bd8c56963a9f48dfb73b8a3322b6fe38.bitwarden.com -carLicense: FBTG0V -departmentNumber: 4563 -employeeType: Employee -homePhone: +1 804 331-2089 -initials: L. J. -mobile: +1 804 880-6872 -pager: +1 804 599-6373 -roomNumber: 8303 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vilas Papadopulos -sn: Papadopulos -description: This is Vilas Papadopulos's description -facsimileTelephoneNumber: +1 213 402-5898 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 208-6946 -title: Master Product Development Technician -userPassword: Password1 -uid: PapadopV -givenName: Vilas -mail: PapadopV@e6b52be13e984c2c8799a67382d2c196.bitwarden.com -carLicense: REMM18 -departmentNumber: 7703 -employeeType: Contract -homePhone: +1 213 570-5027 -initials: V. P. -mobile: +1 213 683-3741 -pager: +1 213 619-3611 -roomNumber: 9146 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Huib Kayle,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huib Kayle -sn: Kayle -description: This is Huib Kayle's description -facsimileTelephoneNumber: +1 408 660-7826 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 599-7503 -title: Supreme Payroll Director -userPassword: Password1 -uid: KayleH -givenName: Huib -mail: KayleH@8044dacf63ac423fb3f7e245d1b46862.bitwarden.com -carLicense: DNQCO3 -departmentNumber: 9921 -employeeType: Employee -homePhone: +1 408 800-2924 -initials: H. K. -mobile: +1 408 135-3359 -pager: +1 408 830-4769 -roomNumber: 8614 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vicki Streibel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vicki Streibel -sn: Streibel -description: This is Vicki Streibel's description -facsimileTelephoneNumber: +1 510 308-6588 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 543-8529 -title: Junior Management Visionary -userPassword: Password1 -uid: StreibeV -givenName: Vicki -mail: StreibeV@fc82887f7d574e47999f4c6412d5d5a4.bitwarden.com -carLicense: SFCJ00 -departmentNumber: 4762 -employeeType: Normal -homePhone: +1 510 488-6694 -initials: V. S. -mobile: +1 510 474-4537 -pager: +1 510 878-1777 -roomNumber: 9768 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ingeberg Gomm,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ingeberg Gomm -sn: Gomm -description: This is Ingeberg Gomm's description -facsimileTelephoneNumber: +1 213 197-3884 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 838-7784 -title: Supreme Peons Assistant -userPassword: Password1 -uid: GommI -givenName: Ingeberg -mail: GommI@5f7aa1104dd847a783d3ab9f854696e3.bitwarden.com -carLicense: XAONWT -departmentNumber: 5377 -employeeType: Employee -homePhone: +1 213 917-7098 -initials: I. G. -mobile: +1 213 714-3960 -pager: +1 213 961-7055 -roomNumber: 9715 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phebe Raddalgoda -sn: Raddalgoda -description: This is Phebe Raddalgoda's description -facsimileTelephoneNumber: +1 804 132-9108 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 644-5361 -title: Chief Peons Technician -userPassword: Password1 -uid: RaddalgP -givenName: Phebe -mail: RaddalgP@8b09ab861a8547548572c341d5ae5d43.bitwarden.com -carLicense: 2NEIY9 -departmentNumber: 2437 -employeeType: Contract -homePhone: +1 804 816-6105 -initials: P. R. -mobile: +1 804 639-8744 -pager: +1 804 291-3098 -roomNumber: 8326 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorianna Windom,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorianna Windom -sn: Windom -description: This is Lorianna Windom's description -facsimileTelephoneNumber: +1 510 553-3005 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 829-1384 -title: Junior Peons Admin -userPassword: Password1 -uid: WindomL -givenName: Lorianna -mail: WindomL@b890dc6370824c28b958abdf02b9b5bf.bitwarden.com -carLicense: V7KHXJ -departmentNumber: 3565 -employeeType: Employee -homePhone: +1 510 324-6530 -initials: L. W. -mobile: +1 510 956-1413 -pager: +1 510 777-1730 -roomNumber: 8949 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tamera Meyer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tamera Meyer -sn: Meyer -description: This is Tamera Meyer's description -facsimileTelephoneNumber: +1 415 227-7305 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 885-8304 -title: Chief Peons Janitor -userPassword: Password1 -uid: MeyerT -givenName: Tamera -mail: MeyerT@ad0135726be04a5d8faeb9e97bff3b3d.bitwarden.com -carLicense: W0YC34 -departmentNumber: 9511 -employeeType: Normal -homePhone: +1 415 975-5668 -initials: T. M. -mobile: +1 415 740-1258 -pager: +1 415 271-8770 -roomNumber: 8565 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blakeley Aladangady -sn: Aladangady -description: This is Blakeley Aladangady's description -facsimileTelephoneNumber: +1 804 695-5774 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 804 779-7953 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: AladangB -givenName: Blakeley -mail: AladangB@6ab8bc12da524a3d8f16fa02dd65712d.bitwarden.com -carLicense: 4DCYP1 -departmentNumber: 4952 -employeeType: Contract -homePhone: +1 804 452-6846 -initials: B. A. -mobile: +1 804 621-1648 -pager: +1 804 385-7651 -roomNumber: 8402 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Corliss Chenard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corliss Chenard -sn: Chenard -description: This is Corliss Chenard's description -facsimileTelephoneNumber: +1 818 964-9651 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 228-8088 -title: Supreme Product Testing Dictator -userPassword: Password1 -uid: ChenardC -givenName: Corliss -mail: ChenardC@ec10cc023e454fb0bbdd9208be69f4fc.bitwarden.com -carLicense: CG9YVK -departmentNumber: 6170 -employeeType: Normal -homePhone: +1 818 629-4396 -initials: C. C. -mobile: +1 818 343-2148 -pager: +1 818 994-2306 -roomNumber: 8040 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rheba Castelloe,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rheba Castelloe -sn: Castelloe -description: This is Rheba Castelloe's description -facsimileTelephoneNumber: +1 213 920-4925 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 377-6235 -title: Associate Peons Figurehead -userPassword: Password1 -uid: CastellR -givenName: Rheba -mail: CastellR@ac25d049c10a4d758088ebdaf063ce02.bitwarden.com -carLicense: M0HRJF -departmentNumber: 5809 -employeeType: Normal -homePhone: +1 213 353-8554 -initials: R. C. -mobile: +1 213 164-7840 -pager: +1 213 634-2331 -roomNumber: 9185 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marijke Bielby,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marijke Bielby -sn: Bielby -description: This is Marijke Bielby's description -facsimileTelephoneNumber: +1 408 882-5552 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 169-8004 -title: Supreme Management Artist -userPassword: Password1 -uid: BielbyM -givenName: Marijke -mail: BielbyM@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com -carLicense: AF30L3 -departmentNumber: 8060 -employeeType: Contract -homePhone: +1 408 653-6902 -initials: M. B. -mobile: +1 408 308-1807 -pager: +1 408 865-2742 -roomNumber: 9170 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Steen Carpool,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steen Carpool -sn: Carpool -description: This is Steen Carpool's description -facsimileTelephoneNumber: +1 408 738-8674 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 333-1179 -title: Master Human Resources Visionary -userPassword: Password1 -uid: CarpoolS -givenName: Steen -mail: CarpoolS@c3d2d2c0ad16421093e58b9a80d13fae.bitwarden.com -carLicense: FSULL0 -departmentNumber: 1557 -employeeType: Employee -homePhone: +1 408 296-8248 -initials: S. C. -mobile: +1 408 333-7799 -pager: +1 408 122-2439 -roomNumber: 8702 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marigold Girgis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marigold Girgis -sn: Girgis -description: This is Marigold Girgis's description -facsimileTelephoneNumber: +1 818 909-6675 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 818 473-8176 -title: Associate Product Testing Punk -userPassword: Password1 -uid: GirgisM -givenName: Marigold -mail: GirgisM@6cc4c5dff9d04b5e89ad32c2b33d43af.bitwarden.com -carLicense: AUUU3I -departmentNumber: 3064 -employeeType: Contract -homePhone: +1 818 958-9183 -initials: M. G. -mobile: +1 818 653-8025 -pager: +1 818 855-1511 -roomNumber: 8878 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tdr Gavidia,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tdr Gavidia -sn: Gavidia -description: This is Tdr Gavidia's description -facsimileTelephoneNumber: +1 408 156-1639 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 264-4070 -title: Junior Administrative Artist -userPassword: Password1 -uid: GavidiaT -givenName: Tdr -mail: GavidiaT@5a85cb992a6942cf9192a30cc4dff439.bitwarden.com -carLicense: YN6O1O -departmentNumber: 2593 -employeeType: Normal -homePhone: +1 408 306-5612 -initials: T. G. -mobile: +1 408 867-9929 -pager: +1 408 761-5613 -roomNumber: 8149 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Judith Charbonneau,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Judith Charbonneau -sn: Charbonneau -description: This is Judith Charbonneau's description -facsimileTelephoneNumber: +1 510 385-6435 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 510 945-2839 -title: Associate Product Development Warrior -userPassword: Password1 -uid: CharbonJ -givenName: Judith -mail: CharbonJ@fdf5161eeea14f4092d0d9d3593c3092.bitwarden.com -carLicense: U8TXB0 -departmentNumber: 1812 -employeeType: Normal -homePhone: +1 510 856-1444 -initials: J. C. -mobile: +1 510 509-9952 -pager: +1 510 896-7065 -roomNumber: 9269 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Katerine Manners,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katerine Manners -sn: Manners -description: This is Katerine Manners's description -facsimileTelephoneNumber: +1 804 791-4780 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 804 397-3570 -title: Master Management Consultant -userPassword: Password1 -uid: MannersK -givenName: Katerine -mail: MannersK@67959d83c9f54eab8d5e9b41e77626e1.bitwarden.com -carLicense: 5P6W1K -departmentNumber: 5613 -employeeType: Employee -homePhone: +1 804 335-9665 -initials: K. M. -mobile: +1 804 817-3879 -pager: +1 804 480-2183 -roomNumber: 8497 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tasha Netdev,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tasha Netdev -sn: Netdev -description: This is Tasha Netdev's description -facsimileTelephoneNumber: +1 415 378-5904 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 415 878-8628 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: NetdevT -givenName: Tasha -mail: NetdevT@feb159b030e14305b9c8b50a78e33542.bitwarden.com -carLicense: KKU94W -departmentNumber: 1749 -employeeType: Employee -homePhone: +1 415 338-8879 -initials: T. N. -mobile: +1 415 707-6884 -pager: +1 415 749-3100 -roomNumber: 9333 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ken Shiue,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ken Shiue -sn: Shiue -description: This is Ken Shiue's description -facsimileTelephoneNumber: +1 415 634-9020 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 415 529-5066 -title: Supreme Administrative Artist -userPassword: Password1 -uid: ShiueK -givenName: Ken -mail: ShiueK@aa835df49d8745e4bab27a377c8d41e2.bitwarden.com -carLicense: OP7J6Y -departmentNumber: 9745 -employeeType: Employee -homePhone: +1 415 823-3423 -initials: K. S. -mobile: +1 415 416-8792 -pager: +1 415 742-7930 -roomNumber: 8714 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tc Hayman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tc Hayman -sn: Hayman -description: This is Tc Hayman's description -facsimileTelephoneNumber: +1 206 181-8647 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 794-8623 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: HaymanT -givenName: Tc -mail: HaymanT@504b7fa15e81498b91140ca23e9bafd1.bitwarden.com -carLicense: ERNHNB -departmentNumber: 3485 -employeeType: Employee -homePhone: +1 206 899-6615 -initials: T. H. -mobile: +1 206 566-5497 -pager: +1 206 995-4532 -roomNumber: 9677 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Corry Johnston,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corry Johnston -sn: Johnston -description: This is Corry Johnston's description -facsimileTelephoneNumber: +1 510 389-2854 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 510 293-9616 -title: Associate Management Director -userPassword: Password1 -uid: JohnstoC -givenName: Corry -mail: JohnstoC@70db07b7e30f4b06835c7cf868520da6.bitwarden.com -carLicense: V20FT5 -departmentNumber: 3905 -employeeType: Normal -homePhone: +1 510 153-1354 -initials: C. J. -mobile: +1 510 938-8814 -pager: +1 510 786-6156 -roomNumber: 8515 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tracee Kastelberg -sn: Kastelberg -description: This is Tracee Kastelberg's description -facsimileTelephoneNumber: +1 408 862-1780 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 196-9380 -title: Chief Janitorial Sales Rep -userPassword: Password1 -uid: KastelbT -givenName: Tracee -mail: KastelbT@29c15912a9c64d47a005bca4887abd95.bitwarden.com -carLicense: LF7NYY -departmentNumber: 3169 -employeeType: Contract -homePhone: +1 408 297-1190 -initials: T. K. -mobile: +1 408 202-8686 -pager: +1 408 164-7187 -roomNumber: 9076 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lacy Ferguson -sn: Ferguson -description: This is Lacy Ferguson's description -facsimileTelephoneNumber: +1 206 553-7794 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 195-3749 -title: Chief Product Testing President -userPassword: Password1 -uid: FergusoL -givenName: Lacy -mail: FergusoL@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com -carLicense: RSXH57 -departmentNumber: 4872 -employeeType: Employee -homePhone: +1 206 357-6981 -initials: L. F. -mobile: +1 206 636-1109 -pager: +1 206 717-5555 -roomNumber: 9644 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Farag Rogge,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farag Rogge -sn: Rogge -description: This is Farag Rogge's description -facsimileTelephoneNumber: +1 818 676-7578 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 411-1746 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: RoggeF -givenName: Farag -mail: RoggeF@3f3cc38c24fe4b7a8534f2cd843278b3.bitwarden.com -carLicense: HO3EJ4 -departmentNumber: 6791 -employeeType: Normal -homePhone: +1 818 377-2474 -initials: F. R. -mobile: +1 818 421-1114 -pager: +1 818 650-4996 -roomNumber: 8447 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Scot Santitoro,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Scot Santitoro -sn: Santitoro -description: This is Scot Santitoro's description -facsimileTelephoneNumber: +1 213 286-7510 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 238-5302 -title: Chief Payroll Director -userPassword: Password1 -uid: SantitoS -givenName: Scot -mail: SantitoS@4df07dd4fa25468db57d445d7d91ad8d.bitwarden.com -carLicense: CYDDEN -departmentNumber: 8163 -employeeType: Normal -homePhone: +1 213 960-7126 -initials: S. S. -mobile: +1 213 762-4513 -pager: +1 213 782-8748 -roomNumber: 9720 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elisabeth Conrath -sn: Conrath -description: This is Elisabeth Conrath's description -facsimileTelephoneNumber: +1 408 271-7904 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 908-4202 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: ConrathE -givenName: Elisabeth -mail: ConrathE@a6f3133d61d14ab9941634fba9dc1a84.bitwarden.com -carLicense: PD4TFO -departmentNumber: 1080 -employeeType: Normal -homePhone: +1 408 479-7572 -initials: E. C. -mobile: +1 408 234-3643 -pager: +1 408 926-5815 -roomNumber: 9244 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Micah Goheen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Micah Goheen -sn: Goheen -description: This is Micah Goheen's description -facsimileTelephoneNumber: +1 415 968-8620 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 958-4714 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: GoheenM -givenName: Micah -mail: GoheenM@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com -carLicense: K6AO65 -departmentNumber: 7643 -employeeType: Employee -homePhone: +1 415 687-3818 -initials: M. G. -mobile: +1 415 984-1092 -pager: +1 415 279-2914 -roomNumber: 8674 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kasey Primeau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kasey Primeau -sn: Primeau -description: This is Kasey Primeau's description -facsimileTelephoneNumber: +1 415 755-7429 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 840-9228 -title: Chief Janitorial Developer -userPassword: Password1 -uid: PrimeauK -givenName: Kasey -mail: PrimeauK@65763f125f254ceea21c060ef488c98d.bitwarden.com -carLicense: SO3RBM -departmentNumber: 3813 -employeeType: Contract -homePhone: +1 415 458-8954 -initials: K. P. -mobile: +1 415 598-2452 -pager: +1 415 429-2691 -roomNumber: 9768 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jsandye Dickford -sn: Dickford -description: This is Jsandye Dickford's description -facsimileTelephoneNumber: +1 213 529-1608 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 217-2233 -title: Master Janitorial Assistant -userPassword: Password1 -uid: DickforJ -givenName: Jsandye -mail: DickforJ@be39439fe1b046ff8b55dd6e46a1f1fd.bitwarden.com -carLicense: 5YINPQ -departmentNumber: 5120 -employeeType: Employee -homePhone: +1 213 969-1328 -initials: J. D. -mobile: +1 213 506-6424 -pager: +1 213 404-9929 -roomNumber: 8244 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Frankie Nesbitt,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frankie Nesbitt -sn: Nesbitt -description: This is Frankie Nesbitt's description -facsimileTelephoneNumber: +1 206 723-5355 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 820-3695 -title: Junior Management Admin -userPassword: Password1 -uid: NesbittF -givenName: Frankie -mail: NesbittF@01b767fcb2cb434ca691bff5e3c89088.bitwarden.com -carLicense: JAY4JQ -departmentNumber: 8877 -employeeType: Normal -homePhone: +1 206 712-1548 -initials: F. N. -mobile: +1 206 981-4848 -pager: +1 206 876-3975 -roomNumber: 9338 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fran Visockis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fran Visockis -sn: Visockis -description: This is Fran Visockis's description -facsimileTelephoneNumber: +1 206 382-7068 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 165-4706 -title: Junior Payroll President -userPassword: Password1 -uid: VisockiF -givenName: Fran -mail: VisockiF@f78034ad70854ccbacb0124129d464fa.bitwarden.com -carLicense: 6N4316 -departmentNumber: 2387 -employeeType: Contract -homePhone: +1 206 101-8015 -initials: F. V. -mobile: +1 206 632-7337 -pager: +1 206 425-1657 -roomNumber: 9952 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Prudence Deugau,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prudence Deugau -sn: Deugau -description: This is Prudence Deugau's description -facsimileTelephoneNumber: +1 804 358-8017 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 861-9479 -title: Supreme Product Development Writer -userPassword: Password1 -uid: DeugauP -givenName: Prudence -mail: DeugauP@67a9d61944244b79b04665b16e622d77.bitwarden.com -carLicense: IFDUOF -departmentNumber: 2303 -employeeType: Employee -homePhone: +1 804 526-1010 -initials: P. D. -mobile: +1 804 347-2107 -pager: +1 804 223-1711 -roomNumber: 9255 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elbert Figura,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elbert Figura -sn: Figura -description: This is Elbert Figura's description -facsimileTelephoneNumber: +1 206 205-1882 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 850-8185 -title: Supreme Peons Mascot -userPassword: Password1 -uid: FiguraE -givenName: Elbert -mail: FiguraE@45017ba123de4bd691a840bb1387bf6c.bitwarden.com -carLicense: V6AEE1 -departmentNumber: 1336 -employeeType: Normal -homePhone: +1 206 285-8467 -initials: E. F. -mobile: +1 206 950-2394 -pager: +1 206 106-1901 -roomNumber: 8497 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dorian Kingzett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorian Kingzett -sn: Kingzett -description: This is Dorian Kingzett's description -facsimileTelephoneNumber: +1 818 925-1861 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 888-4306 -title: Associate Payroll Artist -userPassword: Password1 -uid: KingzetD -givenName: Dorian -mail: KingzetD@ae52dcada2674f68a76a2c619d85f261.bitwarden.com -carLicense: G9C548 -departmentNumber: 2858 -employeeType: Employee -homePhone: +1 818 734-8672 -initials: D. K. -mobile: +1 818 632-2028 -pager: +1 818 377-2720 -roomNumber: 9481 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Camila Wilhoit,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camila Wilhoit -sn: Wilhoit -description: This is Camila Wilhoit's description -facsimileTelephoneNumber: +1 510 503-8544 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 961-8068 -title: Junior Management Visionary -userPassword: Password1 -uid: WilhoitC -givenName: Camila -mail: WilhoitC@d52f84a4faf148e392088a55b1d91d85.bitwarden.com -carLicense: VIASDV -departmentNumber: 5001 -employeeType: Employee -homePhone: +1 510 166-4936 -initials: C. W. -mobile: +1 510 989-3123 -pager: +1 510 592-6131 -roomNumber: 8337 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Wannell Klapper,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wannell Klapper -sn: Klapper -description: This is Wannell Klapper's description -facsimileTelephoneNumber: +1 415 989-9953 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 317-7430 -title: Junior Product Development Madonna -userPassword: Password1 -uid: KlapperW -givenName: Wannell -mail: KlapperW@24698099682948489af34be8e13083ae.bitwarden.com -carLicense: 6T4855 -departmentNumber: 7123 -employeeType: Contract -homePhone: +1 415 253-4472 -initials: W. K. -mobile: +1 415 420-1459 -pager: +1 415 657-2591 -roomNumber: 8486 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Brynne Hiers,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brynne Hiers -sn: Hiers -description: This is Brynne Hiers's description -facsimileTelephoneNumber: +1 408 624-6539 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 633-8868 -title: Associate Peons Admin -userPassword: Password1 -uid: HiersB -givenName: Brynne -mail: HiersB@3b31b1e22b674d48829733c162895a88.bitwarden.com -carLicense: MLV93L -departmentNumber: 8229 -employeeType: Contract -homePhone: +1 408 344-3935 -initials: B. H. -mobile: +1 408 213-6621 -pager: +1 408 140-2585 -roomNumber: 8106 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilberte Abdollahi -sn: Abdollahi -description: This is Gilberte Abdollahi's description -facsimileTelephoneNumber: +1 408 847-3293 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 141-4678 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: AbdollaG -givenName: Gilberte -mail: AbdollaG@38fb869ba3244313992623d5e5856ca5.bitwarden.com -carLicense: XT97KF -departmentNumber: 9155 -employeeType: Employee -homePhone: +1 408 221-2798 -initials: G. A. -mobile: +1 408 396-1734 -pager: +1 408 175-9035 -roomNumber: 8751 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bella Lally,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Barbi Hebbar,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbi Hebbar -sn: Hebbar -description: This is Barbi Hebbar's description -facsimileTelephoneNumber: +1 206 576-9224 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 970-5815 -title: Associate Payroll Stooge -userPassword: Password1 -uid: HebbarB -givenName: Barbi -mail: HebbarB@1fa3d22353b84ae8b3c1cfa1f92c0d6e.bitwarden.com -carLicense: O06NTD -departmentNumber: 4157 -employeeType: Normal -homePhone: +1 206 767-2655 -initials: B. H. -mobile: +1 206 203-2610 -pager: +1 206 860-3207 -roomNumber: 9575 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicoline Wheelock -sn: Wheelock -description: This is Nicoline Wheelock's description -facsimileTelephoneNumber: +1 213 260-6520 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 310-1868 -title: Junior Product Development Janitor -userPassword: Password1 -uid: WheelocN -givenName: Nicoline -mail: WheelocN@7cfe2ffb0199421b9c038434ce9a5120.bitwarden.com -carLicense: QTBPFN -departmentNumber: 1386 -employeeType: Normal -homePhone: +1 213 558-5845 -initials: N. W. -mobile: +1 213 205-7987 -pager: +1 213 815-5111 -roomNumber: 8345 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Panch Golka,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Panch Golka -sn: Golka -description: This is Panch Golka's description -facsimileTelephoneNumber: +1 510 940-2574 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 510 270-3505 -title: Junior Payroll Manager -userPassword: Password1 -uid: GolkaP -givenName: Panch -mail: GolkaP@8b4e205f7cd04cdf9570b14ba9584f1d.bitwarden.com -carLicense: M0RY9N -departmentNumber: 1436 -employeeType: Normal -homePhone: +1 510 709-4577 -initials: P. G. -mobile: +1 510 133-6975 -pager: +1 510 716-3223 -roomNumber: 8560 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Freya Seagraves,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Freya Seagraves -sn: Seagraves -description: This is Freya Seagraves's description -facsimileTelephoneNumber: +1 408 844-6898 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 880-8233 -title: Master Janitorial Mascot -userPassword: Password1 -uid: SeagravF -givenName: Freya -mail: SeagravF@6d6b8145dca640f99bdb6ac4a86deac7.bitwarden.com -carLicense: YMLN3B -departmentNumber: 9054 -employeeType: Normal -homePhone: +1 408 461-2741 -initials: F. S. -mobile: +1 408 158-4942 -pager: +1 408 963-4876 -roomNumber: 8279 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Makary Pulver,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Makary Pulver -sn: Pulver -description: This is Makary Pulver's description -facsimileTelephoneNumber: +1 804 693-5235 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 842-5385 -title: Master Administrative Technician -userPassword: Password1 -uid: PulverM -givenName: Makary -mail: PulverM@a52b2533262a41f09422c904974af50a.bitwarden.com -carLicense: L839WI -departmentNumber: 8440 -employeeType: Normal -homePhone: +1 804 963-8235 -initials: M. P. -mobile: +1 804 125-8673 -pager: +1 804 815-4049 -roomNumber: 9387 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carmela Voitel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmela Voitel -sn: Voitel -description: This is Carmela Voitel's description -facsimileTelephoneNumber: +1 510 134-5536 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 252-3995 -title: Supreme Product Development Technician -userPassword: Password1 -uid: VoitelC -givenName: Carmela -mail: VoitelC@de96a17ce06e4487ba5f98c80195f121.bitwarden.com -carLicense: AJNFNU -departmentNumber: 9315 -employeeType: Normal -homePhone: +1 510 820-8674 -initials: C. V. -mobile: +1 510 879-4106 -pager: +1 510 909-6642 -roomNumber: 8850 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nonah Ledet,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nonah Ledet -sn: Ledet -description: This is Nonah Ledet's description -facsimileTelephoneNumber: +1 818 835-8877 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 751-9837 -title: Master Product Development Sales Rep -userPassword: Password1 -uid: LedetN -givenName: Nonah -mail: LedetN@59594afdce864109b5f7447ee0401063.bitwarden.com -carLicense: H9F1RD -departmentNumber: 7261 -employeeType: Employee -homePhone: +1 818 804-1412 -initials: N. L. -mobile: +1 818 983-2946 -pager: +1 818 709-4766 -roomNumber: 9576 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marti Mac,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marti Mac -sn: Mac -description: This is Marti Mac's description -facsimileTelephoneNumber: +1 408 175-5477 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 496-2652 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: MacM -givenName: Marti -mail: MacM@820452a402ec435298020857f318cbc5.bitwarden.com -carLicense: KEQYB0 -departmentNumber: 5189 -employeeType: Normal -homePhone: +1 408 586-4372 -initials: M. M. -mobile: +1 408 323-5474 -pager: +1 408 619-9560 -roomNumber: 9376 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassondra Elchakieh -sn: Elchakieh -description: This is Cassondra Elchakieh's description -facsimileTelephoneNumber: +1 213 485-7311 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 418-1281 -title: Junior Product Development Technician -userPassword: Password1 -uid: ElchakiC -givenName: Cassondra -mail: ElchakiC@4183bc2b55d349abb67652aa3cd2f8e7.bitwarden.com -carLicense: GUBVX3 -departmentNumber: 4015 -employeeType: Contract -homePhone: +1 213 279-1945 -initials: C. E. -mobile: +1 213 832-2718 -pager: +1 213 962-5993 -roomNumber: 9897 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maxi Isaac,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maxi Isaac -sn: Isaac -description: This is Maxi Isaac's description -facsimileTelephoneNumber: +1 213 702-2273 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 904-9743 -title: Supreme Administrative Engineer -userPassword: Password1 -uid: IsaacM -givenName: Maxi -mail: IsaacM@44bcfd07218c489eba7387452f761d66.bitwarden.com -carLicense: NIWRGS -departmentNumber: 9257 -employeeType: Contract -homePhone: +1 213 905-3531 -initials: M. I. -mobile: +1 213 302-8968 -pager: +1 213 402-9624 -roomNumber: 8472 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Orlyn Eros,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orlyn Eros -sn: Eros -description: This is Orlyn Eros's description -facsimileTelephoneNumber: +1 415 847-2382 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 525-1826 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: ErosO -givenName: Orlyn -mail: ErosO@5889521a4ba34649ace6fd6f42ef0aa2.bitwarden.com -carLicense: RAVP9A -departmentNumber: 3713 -employeeType: Contract -homePhone: +1 415 802-7283 -initials: O. E. -mobile: +1 415 301-2248 -pager: +1 415 648-1127 -roomNumber: 9827 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Amandi Twiss,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amandi Twiss -sn: Twiss -description: This is Amandi Twiss's description -facsimileTelephoneNumber: +1 818 949-3278 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 186-8643 -title: Associate Human Resources Technician -userPassword: Password1 -uid: TwissA -givenName: Amandi -mail: TwissA@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com -carLicense: I516DU -departmentNumber: 5171 -employeeType: Contract -homePhone: +1 818 740-1537 -initials: A. T. -mobile: +1 818 745-2455 -pager: +1 818 864-8650 -roomNumber: 9303 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carolyne Delmar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolyne Delmar -sn: Delmar -description: This is Carolyne Delmar's description -facsimileTelephoneNumber: +1 408 110-1078 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 928-5470 -title: Supreme Peons Pinhead -userPassword: Password1 -uid: DelmarC -givenName: Carolyne -mail: DelmarC@d49a6ebf54d04e67aead2ded915937e2.bitwarden.com -carLicense: H0B9UO -departmentNumber: 7444 -employeeType: Employee -homePhone: +1 408 110-7636 -initials: C. D. -mobile: +1 408 473-4895 -pager: +1 408 511-1010 -roomNumber: 9369 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Los Barbeau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Los Barbeau -sn: Barbeau -description: This is Los Barbeau's description -facsimileTelephoneNumber: +1 408 112-7764 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 113-1266 -title: Master Payroll Director -userPassword: Password1 -uid: BarbeauL -givenName: Los -mail: BarbeauL@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com -carLicense: CW614W -departmentNumber: 5138 -employeeType: Employee -homePhone: +1 408 820-5434 -initials: L. B. -mobile: +1 408 873-3859 -pager: +1 408 346-3300 -roomNumber: 8074 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fung Godwin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fung Godwin -sn: Godwin -description: This is Fung Godwin's description -facsimileTelephoneNumber: +1 213 367-4016 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 176-3968 -title: Master Product Testing Artist -userPassword: Password1 -uid: GodwinF -givenName: Fung -mail: GodwinF@64c2994b832f40a4a166aa8ac8dd69f6.bitwarden.com -carLicense: PAPRI5 -departmentNumber: 6159 -employeeType: Normal -homePhone: +1 213 337-1428 -initials: F. G. -mobile: +1 213 340-8113 -pager: +1 213 908-8329 -roomNumber: 8064 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Coreen Underwood,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coreen Underwood -sn: Underwood -description: This is Coreen Underwood's description -facsimileTelephoneNumber: +1 415 369-3940 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 301-7575 -title: Chief Product Development Artist -userPassword: Password1 -uid: UnderwoC -givenName: Coreen -mail: UnderwoC@ee1df761a37f416c8ab1cdfe97a867af.bitwarden.com -carLicense: QHOTPS -departmentNumber: 5153 -employeeType: Normal -homePhone: +1 415 434-9320 -initials: C. U. -mobile: +1 415 125-9382 -pager: +1 415 884-6156 -roomNumber: 8817 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Inquire Morse,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inquire Morse -sn: Morse -description: This is Inquire Morse's description -facsimileTelephoneNumber: +1 804 562-8421 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 216-7776 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: MorseI -givenName: Inquire -mail: MorseI@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com -carLicense: MMGLWO -departmentNumber: 5616 -employeeType: Normal -homePhone: +1 804 309-1542 -initials: I. M. -mobile: +1 804 417-7628 -pager: +1 804 345-6725 -roomNumber: 9105 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roby Kalyani,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roby Kalyani -sn: Kalyani -description: This is Roby Kalyani's description -facsimileTelephoneNumber: +1 206 978-7526 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 833-7576 -title: Supreme Janitorial Technician -userPassword: Password1 -uid: KalyaniR -givenName: Roby -mail: KalyaniR@31fa64a862294a7388a08b68af152886.bitwarden.com -carLicense: 3W43BK -departmentNumber: 1984 -employeeType: Employee -homePhone: +1 206 703-9277 -initials: R. K. -mobile: +1 206 920-7060 -pager: +1 206 363-2745 -roomNumber: 9313 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leena OKelly,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leena OKelly -sn: OKelly -description: This is Leena OKelly's description -facsimileTelephoneNumber: +1 206 696-6231 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 284-5311 -title: Associate Peons Developer -userPassword: Password1 -uid: OKellyL -givenName: Leena -mail: OKellyL@fdfd326c1e8945a3966cb4de28c4d870.bitwarden.com -carLicense: 1R7WLO -departmentNumber: 2710 -employeeType: Normal -homePhone: +1 206 727-6733 -initials: L. O. -mobile: +1 206 368-3136 -pager: +1 206 682-2833 -roomNumber: 9241 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Joli Gavidia,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joli Gavidia -sn: Gavidia -description: This is Joli Gavidia's description -facsimileTelephoneNumber: +1 206 400-9456 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 206 314-5954 -title: Master Janitorial Czar -userPassword: Password1 -uid: GavidiaJ -givenName: Joli -mail: GavidiaJ@8a64f3daaeda4903b6f2db2d73e7274f.bitwarden.com -carLicense: 2E0KGE -departmentNumber: 3384 -employeeType: Contract -homePhone: +1 206 939-1252 -initials: J. G. -mobile: +1 206 757-8764 -pager: +1 206 573-1908 -roomNumber: 9471 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gint Cioffi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gint Cioffi -sn: Cioffi -description: This is Gint Cioffi's description -facsimileTelephoneNumber: +1 818 758-6012 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 652-8432 -title: Chief Product Development Grunt -userPassword: Password1 -uid: CioffiG -givenName: Gint -mail: CioffiG@d5e4a37826af47d086930b55ea76e123.bitwarden.com -carLicense: SLVB3M -departmentNumber: 1864 -employeeType: Employee -homePhone: +1 818 594-3684 -initials: G. C. -mobile: +1 818 270-1329 -pager: +1 818 361-6957 -roomNumber: 8254 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chelsea Arvin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsea Arvin -sn: Arvin -description: This is Chelsea Arvin's description -facsimileTelephoneNumber: +1 206 339-8451 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 206 310-1101 -title: Associate Product Development Mascot -userPassword: Password1 -uid: ArvinC -givenName: Chelsea -mail: ArvinC@d4881d0da2824b94aad995234e30bb1a.bitwarden.com -carLicense: L9A6LJ -departmentNumber: 8395 -employeeType: Normal -homePhone: +1 206 821-3759 -initials: C. A. -mobile: +1 206 288-4072 -pager: +1 206 969-7640 -roomNumber: 9186 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Allix Closson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allix Closson -sn: Closson -description: This is Allix Closson's description -facsimileTelephoneNumber: +1 213 168-5882 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 776-4583 -title: Chief Management Visionary -userPassword: Password1 -uid: ClossonA -givenName: Allix -mail: ClossonA@1385c66d23c04cd2a77d3143933af9fa.bitwarden.com -carLicense: ETFCEW -departmentNumber: 6126 -employeeType: Employee -homePhone: +1 213 250-3446 -initials: A. C. -mobile: +1 213 360-4828 -pager: +1 213 588-1519 -roomNumber: 8810 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ortensia Renwick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ortensia Renwick -sn: Renwick -description: This is Ortensia Renwick's description -facsimileTelephoneNumber: +1 415 345-8305 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 651-3484 -title: Master Payroll Pinhead -userPassword: Password1 -uid: RenwickO -givenName: Ortensia -mail: RenwickO@2578fec05f3c4caebb2ed35da0948626.bitwarden.com -carLicense: VEOP7P -departmentNumber: 1808 -employeeType: Contract -homePhone: +1 415 622-1144 -initials: O. R. -mobile: +1 415 858-4757 -pager: +1 415 317-2282 -roomNumber: 8679 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: DAnne Pollinzi -sn: Pollinzi -description: This is DAnne Pollinzi's description -facsimileTelephoneNumber: +1 415 117-2156 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 415 723-6621 -title: Associate Payroll Vice President -userPassword: Password1 -uid: PollinzD -givenName: DAnne -mail: PollinzD@7e68fcf7d1c0481096800d5b87b7212d.bitwarden.com -carLicense: S4YQG1 -departmentNumber: 6195 -employeeType: Normal -homePhone: +1 415 523-9559 -initials: D. P. -mobile: +1 415 624-6851 -pager: +1 415 406-5239 -roomNumber: 8553 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Megumi Lipski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Megumi Lipski -sn: Lipski -description: This is Megumi Lipski's description -facsimileTelephoneNumber: +1 408 534-1123 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 271-7125 -title: Chief Peons Evangelist -userPassword: Password1 -uid: LipskiM -givenName: Megumi -mail: LipskiM@4a9fb51cf5c54cab94b295c86af723f8.bitwarden.com -carLicense: 7PFR4F -departmentNumber: 7154 -employeeType: Employee -homePhone: +1 408 757-3074 -initials: M. L. -mobile: +1 408 558-2386 -pager: +1 408 813-9635 -roomNumber: 8081 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tulip Jeanes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tulip Jeanes -sn: Jeanes -description: This is Tulip Jeanes's description -facsimileTelephoneNumber: +1 213 439-5354 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 150-4070 -title: Chief Peons Stooge -userPassword: Password1 -uid: JeanesT -givenName: Tulip -mail: JeanesT@7eeb5a2e39b24090937294c20835ac1d.bitwarden.com -carLicense: TGDCW0 -departmentNumber: 8530 -employeeType: Contract -homePhone: +1 213 214-8563 -initials: T. J. -mobile: +1 213 317-1083 -pager: +1 213 133-8493 -roomNumber: 9650 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Meg Kuechler,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meg Kuechler -sn: Kuechler -description: This is Meg Kuechler's description -facsimileTelephoneNumber: +1 804 473-9444 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 961-7062 -title: Chief Peons Stooge -userPassword: Password1 -uid: KuechleM -givenName: Meg -mail: KuechleM@b65d03e1c71344bb80d7616ebd0b92e1.bitwarden.com -carLicense: 5D1CI2 -departmentNumber: 8831 -employeeType: Normal -homePhone: +1 804 184-5779 -initials: M. K. -mobile: +1 804 128-8507 -pager: +1 804 396-6951 -roomNumber: 8299 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Severin Sridaran,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Severin Sridaran -sn: Sridaran -description: This is Severin Sridaran's description -facsimileTelephoneNumber: +1 213 332-8732 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 213 649-9048 -title: Chief Payroll Architect -userPassword: Password1 -uid: SridaraS -givenName: Severin -mail: SridaraS@a27a4ae74e5044938ec0dc7534cd37ef.bitwarden.com -carLicense: RYYKI5 -departmentNumber: 7086 -employeeType: Contract -homePhone: +1 213 424-7390 -initials: S. S. -mobile: +1 213 873-8230 -pager: +1 213 372-3328 -roomNumber: 9302 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bambie Laschuk -sn: Laschuk -description: This is Bambie Laschuk's description -facsimileTelephoneNumber: +1 415 499-5851 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 882-7795 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: LaschukB -givenName: Bambie -mail: LaschukB@d08341ea0aca4d2a827c8888aa168a33.bitwarden.com -carLicense: 85F0G0 -departmentNumber: 5004 -employeeType: Contract -homePhone: +1 415 779-8089 -initials: B. L. -mobile: +1 415 285-3351 -pager: +1 415 181-8552 -roomNumber: 9422 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rivalee Markes,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rivalee Markes -sn: Markes -description: This is Rivalee Markes's description -facsimileTelephoneNumber: +1 804 350-4009 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 180-8020 -title: Associate Payroll Warrior -userPassword: Password1 -uid: MarkesR -givenName: Rivalee -mail: MarkesR@13757531d26649c1ba7e4dc18bfd6a62.bitwarden.com -carLicense: 3158T3 -departmentNumber: 8593 -employeeType: Normal -homePhone: +1 804 270-4726 -initials: R. M. -mobile: +1 804 952-4884 -pager: +1 804 677-9979 -roomNumber: 9954 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gus Darcie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gus Darcie -sn: Darcie -description: This is Gus Darcie's description -facsimileTelephoneNumber: +1 206 820-6691 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 255-5478 -title: Junior Management Director -userPassword: Password1 -uid: DarcieG -givenName: Gus -mail: DarcieG@b36741628ac5411aa6219ea976eb30f2.bitwarden.com -carLicense: HNH007 -departmentNumber: 6928 -employeeType: Employee -homePhone: +1 206 928-5558 -initials: G. D. -mobile: +1 206 228-1897 -pager: +1 206 543-2850 -roomNumber: 8282 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Farah Fiorile,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farah Fiorile -sn: Fiorile -description: This is Farah Fiorile's description -facsimileTelephoneNumber: +1 408 360-2518 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 561-8222 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: FiorileF -givenName: Farah -mail: FiorileF@1c88bcc8224f440390a971996237e338.bitwarden.com -carLicense: RGN73P -departmentNumber: 3554 -employeeType: Normal -homePhone: +1 408 451-9897 -initials: F. F. -mobile: +1 408 861-1672 -pager: +1 408 886-6042 -roomNumber: 8543 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jagjit Orr,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jagjit Orr -sn: Orr -description: This is Jagjit Orr's description -facsimileTelephoneNumber: +1 804 291-1128 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 900-5326 -title: Junior Payroll Madonna -userPassword: Password1 -uid: OrrJ -givenName: Jagjit -mail: OrrJ@ee0e2753a68a4e55867207a3933be7d9.bitwarden.com -carLicense: UK2QRJ -departmentNumber: 1914 -employeeType: Contract -homePhone: +1 804 471-2190 -initials: J. O. -mobile: +1 804 160-3377 -pager: +1 804 433-5947 -roomNumber: 8373 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Allyce Maduri,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allyce Maduri -sn: Maduri -description: This is Allyce Maduri's description -facsimileTelephoneNumber: +1 206 214-3364 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 648-3267 -title: Junior Product Development Figurehead -userPassword: Password1 -uid: MaduriA -givenName: Allyce -mail: MaduriA@251c488f536a47d0989ad6ee9cbeeac4.bitwarden.com -carLicense: KFOWNB -departmentNumber: 6166 -employeeType: Contract -homePhone: +1 206 847-7336 -initials: A. M. -mobile: +1 206 449-6361 -pager: +1 206 102-3248 -roomNumber: 9993 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Padma Mannion,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Padma Mannion -sn: Mannion -description: This is Padma Mannion's description -facsimileTelephoneNumber: +1 408 873-3727 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 110-1230 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: MannionP -givenName: Padma -mail: MannionP@b5ffb168b2704131a434edf169b90308.bitwarden.com -carLicense: 0KW17O -departmentNumber: 6470 -employeeType: Employee -homePhone: +1 408 861-8976 -initials: P. M. -mobile: +1 408 723-1044 -pager: +1 408 411-1325 -roomNumber: 9312 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Armin Balogh,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Armin Balogh -sn: Balogh -description: This is Armin Balogh's description -facsimileTelephoneNumber: +1 206 161-5920 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 173-5332 -title: Chief Management Grunt -userPassword: Password1 -uid: BaloghA -givenName: Armin -mail: BaloghA@8df14385ae864b439973adc9259c1607.bitwarden.com -carLicense: QNON6Q -departmentNumber: 2413 -employeeType: Contract -homePhone: +1 206 550-8988 -initials: A. B. -mobile: +1 206 290-5483 -pager: +1 206 757-9124 -roomNumber: 8143 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Weiping Schneider,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weiping Schneider -sn: Schneider -description: This is Weiping Schneider's description -facsimileTelephoneNumber: +1 818 327-3797 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 818 874-1863 -title: Associate Management Czar -userPassword: Password1 -uid: SchneidW -givenName: Weiping -mail: SchneidW@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com -carLicense: K9SW2E -departmentNumber: 1156 -employeeType: Normal -homePhone: +1 818 628-5224 -initials: W. S. -mobile: +1 818 839-6458 -pager: +1 818 992-6028 -roomNumber: 8178 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Wakako Schneider,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wakako Schneider -sn: Schneider -description: This is Wakako Schneider's description -facsimileTelephoneNumber: +1 408 615-4825 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 975-1390 -title: Associate Administrative Madonna -userPassword: Password1 -uid: SchneidW -givenName: Wakako -mail: SchneidW@4b4b802ff8a7484b87f06ad79d09b047.bitwarden.com -carLicense: AH9UO8 -departmentNumber: 2978 -employeeType: Employee -homePhone: +1 408 701-8714 -initials: W. S. -mobile: +1 408 201-6977 -pager: +1 408 462-4968 -roomNumber: 9124 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Aubrey Worsley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aubrey Worsley -sn: Worsley -description: This is Aubrey Worsley's description -facsimileTelephoneNumber: +1 804 867-3686 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 592-6534 -title: Associate Payroll Warrior -userPassword: Password1 -uid: WorsleyA -givenName: Aubrey -mail: WorsleyA@a7a408f1db4f4c56bc140208ad720372.bitwarden.com -carLicense: DPDKLN -departmentNumber: 3071 -employeeType: Contract -homePhone: +1 804 284-9232 -initials: A. W. -mobile: +1 804 898-6109 -pager: +1 804 128-8930 -roomNumber: 9799 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilsa Esteghamat -sn: Esteghamat -description: This is Ilsa Esteghamat's description -facsimileTelephoneNumber: +1 415 979-7290 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 510-1568 -title: Master Janitorial Visionary -userPassword: Password1 -uid: EsteghaI -givenName: Ilsa -mail: EsteghaI@ddf0191f89a0460ab413425ca86319fc.bitwarden.com -carLicense: YVVFHC -departmentNumber: 7499 -employeeType: Contract -homePhone: +1 415 291-4067 -initials: I. E. -mobile: +1 415 780-5057 -pager: +1 415 184-4423 -roomNumber: 8480 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zahra Sebeh -sn: Sebeh -description: This is Zahra Sebeh's description -facsimileTelephoneNumber: +1 510 284-1633 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 658-7911 -title: Chief Janitorial Technician -userPassword: Password1 -uid: SebehZ -givenName: Zahra -mail: SebehZ@e790def4652645909ede72d3e5779756.bitwarden.com -carLicense: 29DLBR -departmentNumber: 9944 -employeeType: Employee -homePhone: +1 510 494-7925 -initials: Z. S. -mobile: +1 510 599-2373 -pager: +1 510 486-6759 -roomNumber: 8525 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aloysia Bobbitt -sn: Bobbitt -description: This is Aloysia Bobbitt's description -facsimileTelephoneNumber: +1 510 837-5433 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 372-6107 -title: Master Administrative Admin -userPassword: Password1 -uid: BobbittA -givenName: Aloysia -mail: BobbittA@477794cc09b1403eae274b941a7cdeff.bitwarden.com -carLicense: EPYSC5 -departmentNumber: 5320 -employeeType: Normal -homePhone: +1 510 664-1637 -initials: A. B. -mobile: +1 510 267-5068 -pager: +1 510 300-9227 -roomNumber: 9534 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Didar Chakravarti,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Didar Chakravarti -sn: Chakravarti -description: This is Didar Chakravarti's description -facsimileTelephoneNumber: +1 415 635-8075 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 278-1577 -title: Chief Peons Stooge -userPassword: Password1 -uid: ChakravD -givenName: Didar -mail: ChakravD@27fe85cb2e8f492b80ccb681935b7475.bitwarden.com -carLicense: C8YKXN -departmentNumber: 4609 -employeeType: Contract -homePhone: +1 415 282-3483 -initials: D. C. -mobile: +1 415 977-5564 -pager: +1 415 592-1971 -roomNumber: 8345 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosalyn Sherrell -sn: Sherrell -description: This is Rosalyn Sherrell's description -facsimileTelephoneNumber: +1 510 437-8112 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 862-1003 -title: Chief Janitorial Madonna -userPassword: Password1 -uid: SherrelR -givenName: Rosalyn -mail: SherrelR@7a7e84cee07a4519aac362b25f2d7d3c.bitwarden.com -carLicense: 60EA7Y -departmentNumber: 6821 -employeeType: Normal -homePhone: +1 510 933-2012 -initials: R. S. -mobile: +1 510 501-1147 -pager: +1 510 374-6102 -roomNumber: 9282 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ninetta Pullum,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninetta Pullum -sn: Pullum -description: This is Ninetta Pullum's description -facsimileTelephoneNumber: +1 818 655-8609 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 279-6302 -title: Master Peons Mascot -userPassword: Password1 -uid: PullumN -givenName: Ninetta -mail: PullumN@b9a2e7612aef443ebd9966e99249a73c.bitwarden.com -carLicense: PTH40L -departmentNumber: 4628 -employeeType: Employee -homePhone: +1 818 228-1593 -initials: N. P. -mobile: +1 818 590-2364 -pager: +1 818 513-3736 -roomNumber: 9394 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Suki Marrec,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suki Marrec -sn: Marrec -description: This is Suki Marrec's description -facsimileTelephoneNumber: +1 804 362-7092 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 277-6017 -title: Associate Peons Figurehead -userPassword: Password1 -uid: MarrecS -givenName: Suki -mail: MarrecS@e14fec315d724d2ea3c23dddfc2b66b0.bitwarden.com -carLicense: LIOD02 -departmentNumber: 6976 -employeeType: Employee -homePhone: +1 804 892-1867 -initials: S. M. -mobile: +1 804 966-1697 -pager: +1 804 629-1496 -roomNumber: 9202 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ecocafe Bradyhouse -sn: Bradyhouse -description: This is Ecocafe Bradyhouse's description -facsimileTelephoneNumber: +1 213 865-2684 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 210-7131 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: BradyhoE -givenName: Ecocafe -mail: BradyhoE@83f450f8e8ed4c6282bc25450b6af548.bitwarden.com -carLicense: HIP3QF -departmentNumber: 7885 -employeeType: Employee -homePhone: +1 213 356-4485 -initials: E. B. -mobile: +1 213 559-6804 -pager: +1 213 103-8388 -roomNumber: 8986 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ian Locicero,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ian Locicero -sn: Locicero -description: This is Ian Locicero's description -facsimileTelephoneNumber: +1 818 361-3499 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 921-4904 -title: Associate Human Resources Assistant -userPassword: Password1 -uid: LocicerI -givenName: Ian -mail: LocicerI@ac4d7f7fd78147f7b89e17731422f227.bitwarden.com -carLicense: 3UUSTF -departmentNumber: 2098 -employeeType: Employee -homePhone: +1 818 456-3510 -initials: I. L. -mobile: +1 818 544-3106 -pager: +1 818 351-5981 -roomNumber: 8833 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Modestia Prado,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Modestia Prado -sn: Prado -description: This is Modestia Prado's description -facsimileTelephoneNumber: +1 804 563-3011 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 240-1385 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: PradoM -givenName: Modestia -mail: PradoM@2e96ba41c52b41599651831f48a31224.bitwarden.com -carLicense: N28CSY -departmentNumber: 3732 -employeeType: Contract -homePhone: +1 804 654-7480 -initials: M. P. -mobile: +1 804 409-7623 -pager: +1 804 676-5264 -roomNumber: 8808 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Linette Hoxie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linette Hoxie -sn: Hoxie -description: This is Linette Hoxie's description -facsimileTelephoneNumber: +1 804 517-4726 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 929-8827 -title: Supreme Human Resources President -userPassword: Password1 -uid: HoxieL -givenName: Linette -mail: HoxieL@5d088289d7854227987c820b9b1f2b7c.bitwarden.com -carLicense: S3B9SE -departmentNumber: 5761 -employeeType: Normal -homePhone: +1 804 232-6517 -initials: L. H. -mobile: +1 804 536-9297 -pager: +1 804 534-6196 -roomNumber: 9845 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Christi Silverstone,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christi Silverstone -sn: Silverstone -description: This is Christi Silverstone's description -facsimileTelephoneNumber: +1 510 724-1085 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 663-3479 -title: Junior Human Resources Punk -userPassword: Password1 -uid: SilversC -givenName: Christi -mail: SilversC@7012522876084229bee482efdda1e27f.bitwarden.com -carLicense: L4RU2P -departmentNumber: 5293 -employeeType: Employee -homePhone: +1 510 653-6251 -initials: C. S. -mobile: +1 510 650-6324 -pager: +1 510 262-9012 -roomNumber: 9248 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gertie Stough,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertie Stough -sn: Stough -description: This is Gertie Stough's description -facsimileTelephoneNumber: +1 213 686-3838 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 213 515-7408 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: StoughG -givenName: Gertie -mail: StoughG@f217999906e34b1bbd26f75d9abe8282.bitwarden.com -carLicense: AHD9DE -departmentNumber: 7033 -employeeType: Contract -homePhone: +1 213 509-8755 -initials: G. S. -mobile: +1 213 520-1036 -pager: +1 213 118-8844 -roomNumber: 8666 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Christy Mazurek,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christy Mazurek -sn: Mazurek -description: This is Christy Mazurek's description -facsimileTelephoneNumber: +1 213 674-2356 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 521-2255 -title: Master Human Resources Visionary -userPassword: Password1 -uid: MazurekC -givenName: Christy -mail: MazurekC@166fd602ceb04a58b9e0bfc4c39bf95b.bitwarden.com -carLicense: U6RP8X -departmentNumber: 6970 -employeeType: Employee -homePhone: +1 213 662-9878 -initials: C. M. -mobile: +1 213 423-7684 -pager: +1 213 149-6119 -roomNumber: 9940 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fikre Vieiro,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fikre Vieiro -sn: Vieiro -description: This is Fikre Vieiro's description -facsimileTelephoneNumber: +1 213 238-8438 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 602-8247 -title: Chief Product Development Admin -userPassword: Password1 -uid: VieiroF -givenName: Fikre -mail: VieiroF@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com -carLicense: D6MYS0 -departmentNumber: 4707 -employeeType: Employee -homePhone: +1 213 453-2072 -initials: F. V. -mobile: +1 213 475-9473 -pager: +1 213 410-1139 -roomNumber: 8066 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Leila Mullett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leila Mullett -sn: Mullett -description: This is Leila Mullett's description -facsimileTelephoneNumber: +1 510 439-7260 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 650-3588 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: MullettL -givenName: Leila -mail: MullettL@c8037935d7cf4de6af85f4cdef77691d.bitwarden.com -carLicense: 31J232 -departmentNumber: 9834 -employeeType: Normal -homePhone: +1 510 755-5170 -initials: L. M. -mobile: +1 510 203-5746 -pager: +1 510 918-1880 -roomNumber: 8340 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Irina Holinski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Irina Holinski -sn: Holinski -description: This is Irina Holinski's description -facsimileTelephoneNumber: +1 415 980-1993 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 460-5411 -title: Junior Peons Stooge -userPassword: Password1 -uid: HolinskI -givenName: Irina -mail: HolinskI@533123df06ad436d9c500ab92c7787fc.bitwarden.com -carLicense: 3O1NF1 -departmentNumber: 8107 -employeeType: Employee -homePhone: +1 415 594-9353 -initials: I. H. -mobile: +1 415 416-3893 -pager: +1 415 194-5645 -roomNumber: 9383 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kari Denmark,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kari Denmark -sn: Denmark -description: This is Kari Denmark's description -facsimileTelephoneNumber: +1 818 337-8001 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 238-4382 -title: Junior Product Development Vice President -userPassword: Password1 -uid: DenmarkK -givenName: Kari -mail: DenmarkK@72937da6610a485fb5709713ede972d3.bitwarden.com -carLicense: GWXBSO -departmentNumber: 2160 -employeeType: Contract -homePhone: +1 818 883-6970 -initials: K. D. -mobile: +1 818 821-6192 -pager: +1 818 552-9211 -roomNumber: 9661 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Inge Valenziano,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inge Valenziano -sn: Valenziano -description: This is Inge Valenziano's description -facsimileTelephoneNumber: +1 804 187-7607 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 649-3608 -title: Chief Janitorial Sales Rep -userPassword: Password1 -uid: ValenziI -givenName: Inge -mail: ValenziI@93cef961e98e48e482c9b5e04d825449.bitwarden.com -carLicense: J0HX3E -departmentNumber: 4383 -employeeType: Contract -homePhone: +1 804 602-2274 -initials: I. V. -mobile: +1 804 323-1307 -pager: +1 804 240-4959 -roomNumber: 8656 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Denis Khurana,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denis Khurana -sn: Khurana -description: This is Denis Khurana's description -facsimileTelephoneNumber: +1 818 639-7306 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 847-6401 -title: Associate Human Resources Czar -userPassword: Password1 -uid: KhuranaD -givenName: Denis -mail: KhuranaD@146df2fe13b2444d82d5d78937150f1b.bitwarden.com -carLicense: D1X2C7 -departmentNumber: 9174 -employeeType: Contract -homePhone: +1 818 841-6099 -initials: D. K. -mobile: +1 818 510-7296 -pager: +1 818 735-4500 -roomNumber: 8671 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marice Klug,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marice Klug -sn: Klug -description: This is Marice Klug's description -facsimileTelephoneNumber: +1 510 940-2719 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 501-1464 -title: Master Product Development Dictator -userPassword: Password1 -uid: KlugM -givenName: Marice -mail: KlugM@5a9b6da2d40a49eeae885d49efa6f2e2.bitwarden.com -carLicense: A6OYEK -departmentNumber: 4520 -employeeType: Employee -homePhone: +1 510 769-3507 -initials: M. K. -mobile: +1 510 670-7762 -pager: +1 510 630-1193 -roomNumber: 8028 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Denver Welling,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denver Welling -sn: Welling -description: This is Denver Welling's description -facsimileTelephoneNumber: +1 213 582-4339 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 213 807-2148 -title: Master Product Testing Fellow -userPassword: Password1 -uid: WellingD -givenName: Denver -mail: WellingD@693e5301c4924e0195024b48e34f4838.bitwarden.com -carLicense: I3ROY0 -departmentNumber: 8364 -employeeType: Employee -homePhone: +1 213 489-1116 -initials: D. W. -mobile: +1 213 917-3333 -pager: +1 213 166-2003 -roomNumber: 8134 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Windowing Lukic,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Windowing Lukic -sn: Lukic -description: This is Windowing Lukic's description -facsimileTelephoneNumber: +1 206 266-3213 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 780-3468 -title: Associate Administrative Assistant -userPassword: Password1 -uid: LukicW -givenName: Windowing -mail: LukicW@47bdbe19b290413cb5defd6e606815e0.bitwarden.com -carLicense: WSUO53 -departmentNumber: 6715 -employeeType: Normal -homePhone: +1 206 370-5442 -initials: W. L. -mobile: +1 206 553-1403 -pager: +1 206 794-8338 -roomNumber: 8622 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sig Mistry,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sig Mistry -sn: Mistry -description: This is Sig Mistry's description -facsimileTelephoneNumber: +1 206 613-2406 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 254-6607 -title: Junior Product Testing Technician -userPassword: Password1 -uid: MistryS -givenName: Sig -mail: MistryS@b381db8c81ea4ed2b9296ea4988780aa.bitwarden.com -carLicense: 82IGCJ -departmentNumber: 4266 -employeeType: Normal -homePhone: +1 206 722-3127 -initials: S. M. -mobile: +1 206 778-8656 -pager: +1 206 614-9726 -roomNumber: 9282 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christan DeRaaf -sn: DeRaaf -description: This is Christan DeRaaf's description -facsimileTelephoneNumber: +1 213 360-6996 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 213 491-9492 -title: Supreme Product Testing Admin -userPassword: Password1 -uid: DeRaafC -givenName: Christan -mail: DeRaafC@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com -carLicense: 1U42OW -departmentNumber: 2911 -employeeType: Normal -homePhone: +1 213 665-4079 -initials: C. D. -mobile: +1 213 335-3084 -pager: +1 213 113-9610 -roomNumber: 9813 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kathe Rohan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathe Rohan -sn: Rohan -description: This is Kathe Rohan's description -facsimileTelephoneNumber: +1 804 161-3799 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 942-3654 -title: Chief Product Testing Artist -userPassword: Password1 -uid: RohanK -givenName: Kathe -mail: RohanK@a9c3295ea2f347439f03376e321e4733.bitwarden.com -carLicense: 9TH6F1 -departmentNumber: 6372 -employeeType: Normal -homePhone: +1 804 258-4904 -initials: K. R. -mobile: +1 804 864-1979 -pager: +1 804 294-7333 -roomNumber: 9972 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kristie Valente,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristie Valente -sn: Valente -description: This is Kristie Valente's description -facsimileTelephoneNumber: +1 804 120-8330 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 279-4543 -title: Supreme Payroll Director -userPassword: Password1 -uid: ValenteK -givenName: Kristie -mail: ValenteK@0b027bdff1d041629ac882de18aab2e6.bitwarden.com -carLicense: UOFHL4 -departmentNumber: 3485 -employeeType: Employee -homePhone: +1 804 804-4906 -initials: K. V. -mobile: +1 804 902-5426 -pager: +1 804 312-7090 -roomNumber: 9754 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maiga Burdick,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maiga Burdick -sn: Burdick -description: This is Maiga Burdick's description -facsimileTelephoneNumber: +1 408 215-5170 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 373-9309 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: BurdickM -givenName: Maiga -mail: BurdickM@620a0deb741d4dc4a818615fd1732275.bitwarden.com -carLicense: O60TD3 -departmentNumber: 4469 -employeeType: Normal -homePhone: +1 408 371-5821 -initials: M. B. -mobile: +1 408 303-7322 -pager: +1 408 639-6579 -roomNumber: 9119 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Manh Malee,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manh Malee -sn: Malee -description: This is Manh Malee's description -facsimileTelephoneNumber: +1 206 483-4653 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 206 259-5455 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: MaleeM -givenName: Manh -mail: MaleeM@7288f418f35f4596b14bd4c35f0a5698.bitwarden.com -carLicense: 50V2PN -departmentNumber: 4072 -employeeType: Normal -homePhone: +1 206 761-6211 -initials: M. M. -mobile: +1 206 401-8047 -pager: +1 206 767-4792 -roomNumber: 9233 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Benita Rosvick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benita Rosvick -sn: Rosvick -description: This is Benita Rosvick's description -facsimileTelephoneNumber: +1 818 228-9691 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 301-5987 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: RosvickB -givenName: Benita -mail: RosvickB@0283099cc03c4fbb82831c03428e71c5.bitwarden.com -carLicense: QPGK4R -departmentNumber: 7346 -employeeType: Contract -homePhone: +1 818 871-6912 -initials: B. R. -mobile: +1 818 406-3503 -pager: +1 818 648-7913 -roomNumber: 8969 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Serban Gerard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Serban Gerard -sn: Gerard -description: This is Serban Gerard's description -facsimileTelephoneNumber: +1 206 434-7071 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 622-5670 -title: Junior Management Writer -userPassword: Password1 -uid: GerardS -givenName: Serban -mail: GerardS@072112936d7540f191ae5e1941e3f66c.bitwarden.com -carLicense: WIU5LG -departmentNumber: 1613 -employeeType: Employee -homePhone: +1 206 853-9236 -initials: S. G. -mobile: +1 206 732-5317 -pager: +1 206 764-7859 -roomNumber: 9053 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorreen Zeitler -sn: Zeitler -description: This is Dorreen Zeitler's description -facsimileTelephoneNumber: +1 415 558-3698 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 172-6644 -title: Supreme Payroll Writer -userPassword: Password1 -uid: ZeitlerD -givenName: Dorreen -mail: ZeitlerD@26eb3cccbe694e88916be9fa6504534e.bitwarden.com -carLicense: V7GLXQ -departmentNumber: 2528 -employeeType: Employee -homePhone: +1 415 773-8207 -initials: D. Z. -mobile: +1 415 334-3110 -pager: +1 415 409-6834 -roomNumber: 8453 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genowefa McCormick -sn: McCormick -description: This is Genowefa McCormick's description -facsimileTelephoneNumber: +1 415 232-3421 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 169-3186 -title: Associate Product Testing Evangelist -userPassword: Password1 -uid: McCormiG -givenName: Genowefa -mail: McCormiG@6dcb8ef14afa4d0f878ab023a26df8bc.bitwarden.com -carLicense: 9EOH5C -departmentNumber: 7795 -employeeType: Normal -homePhone: +1 415 733-3627 -initials: G. M. -mobile: +1 415 226-7025 -pager: +1 415 734-4128 -roomNumber: 8939 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Condell Sorensen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Condell Sorensen -sn: Sorensen -description: This is Condell Sorensen's description -facsimileTelephoneNumber: +1 510 316-1466 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 500-9638 -title: Chief Product Development Manager -userPassword: Password1 -uid: SorenseC -givenName: Condell -mail: SorenseC@928ad853e1494474966df7fb64907ee2.bitwarden.com -carLicense: U7RP73 -departmentNumber: 8184 -employeeType: Contract -homePhone: +1 510 542-1911 -initials: C. S. -mobile: +1 510 128-9783 -pager: +1 510 172-6595 -roomNumber: 9756 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquetta Choptovy -sn: Choptovy -description: This is Jacquetta Choptovy's description -facsimileTelephoneNumber: +1 213 646-1312 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 571-9091 -title: Supreme Peons Visionary -userPassword: Password1 -uid: ChoptovJ -givenName: Jacquetta -mail: ChoptovJ@21b58cb6354d45989d255e9811572cc7.bitwarden.com -carLicense: IHPLPO -departmentNumber: 6293 -employeeType: Normal -homePhone: +1 213 122-5883 -initials: J. C. -mobile: +1 213 548-9590 -pager: +1 213 746-2779 -roomNumber: 9214 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heinz Sobolewski -sn: Sobolewski -description: This is Heinz Sobolewski's description -facsimileTelephoneNumber: +1 804 967-4411 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 713-1603 -title: Junior Product Development Punk -userPassword: Password1 -uid: SobolewH -givenName: Heinz -mail: SobolewH@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com -carLicense: SD64YH -departmentNumber: 5060 -employeeType: Employee -homePhone: +1 804 112-4017 -initials: H. S. -mobile: +1 804 252-8198 -pager: +1 804 655-8923 -roomNumber: 8798 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryEllen Giarritta -sn: Giarritta -description: This is MaryEllen Giarritta's description -facsimileTelephoneNumber: +1 213 726-3074 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 805-6563 -title: Junior Product Development Developer -userPassword: Password1 -uid: GiarritM -givenName: MaryEllen -mail: GiarritM@5ff34bafebf24aa4b9506984a8233f6e.bitwarden.com -carLicense: SKAW1Q -departmentNumber: 8136 -employeeType: Contract -homePhone: +1 213 393-4205 -initials: M. G. -mobile: +1 213 868-9810 -pager: +1 213 148-4810 -roomNumber: 8213 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erzsebet Randolph -sn: Randolph -description: This is Erzsebet Randolph's description -facsimileTelephoneNumber: +1 408 372-7434 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 591-6038 -title: Supreme Product Development Vice President -userPassword: Password1 -uid: RandolpE -givenName: Erzsebet -mail: RandolpE@55ec9ab4177d4a9faecb693090c29c24.bitwarden.com -carLicense: KQXMN9 -departmentNumber: 6874 -employeeType: Normal -homePhone: +1 408 933-6346 -initials: E. R. -mobile: +1 408 607-3347 -pager: +1 408 725-3148 -roomNumber: 9366 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shingcheon Bedient -sn: Bedient -description: This is Shingcheon Bedient's description -facsimileTelephoneNumber: +1 804 371-1012 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 618-8354 -title: Associate Product Development Visionary -userPassword: Password1 -uid: BedientS -givenName: Shingcheon -mail: BedientS@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com -carLicense: 4E0PP1 -departmentNumber: 2045 -employeeType: Normal -homePhone: +1 804 566-1278 -initials: S. B. -mobile: +1 804 516-7297 -pager: +1 804 925-4798 -roomNumber: 8076 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yukihiko Charlebois -sn: Charlebois -description: This is Yukihiko Charlebois's description -facsimileTelephoneNumber: +1 804 560-4107 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 329-3608 -title: Chief Peons Grunt -userPassword: Password1 -uid: CharlebY -givenName: Yukihiko -mail: CharlebY@d67f5f676f7c4a17add6d088939168e8.bitwarden.com -carLicense: XKUE3L -departmentNumber: 5228 -employeeType: Normal -homePhone: +1 804 265-4980 -initials: Y. C. -mobile: +1 804 711-2644 -pager: +1 804 587-9647 -roomNumber: 9720 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Giang Hildum,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giang Hildum -sn: Hildum -description: This is Giang Hildum's description -facsimileTelephoneNumber: +1 818 116-6693 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 384-2677 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: HildumG -givenName: Giang -mail: HildumG@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com -carLicense: N2W7J4 -departmentNumber: 1865 -employeeType: Normal -homePhone: +1 818 509-6085 -initials: G. H. -mobile: +1 818 931-8918 -pager: +1 818 341-3703 -roomNumber: 9535 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Loise Prasad,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loise Prasad -sn: Prasad -description: This is Loise Prasad's description -facsimileTelephoneNumber: +1 206 661-1980 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 570-5623 -title: Junior Product Testing Sales Rep -userPassword: Password1 -uid: PrasadL -givenName: Loise -mail: PrasadL@80dd2ec5de3e4cba8ab6e9385f8b5eaa.bitwarden.com -carLicense: QF3PV9 -departmentNumber: 1433 -employeeType: Normal -homePhone: +1 206 734-8304 -initials: L. P. -mobile: +1 206 478-3951 -pager: +1 206 956-5141 -roomNumber: 8888 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ronnie Hillson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronnie Hillson -sn: Hillson -description: This is Ronnie Hillson's description -facsimileTelephoneNumber: +1 804 637-9773 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 910-8586 -title: Junior Payroll Visionary -userPassword: Password1 -uid: HillsonR -givenName: Ronnie -mail: HillsonR@f2e5bcfc6f2e4cd8a024fc3813c3b9e4.bitwarden.com -carLicense: QYF7UR -departmentNumber: 9458 -employeeType: Contract -homePhone: +1 804 400-1544 -initials: R. H. -mobile: +1 804 349-5954 -pager: +1 804 815-4035 -roomNumber: 9749 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gavra Sokolowski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gavra Sokolowski -sn: Sokolowski -description: This is Gavra Sokolowski's description -facsimileTelephoneNumber: +1 415 688-2281 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 415 388-6479 -title: Associate Peons Stooge -userPassword: Password1 -uid: SokolowG -givenName: Gavra -mail: SokolowG@e52685d2fb89476596028e80c714ec4f.bitwarden.com -carLicense: FNCW60 -departmentNumber: 6325 -employeeType: Employee -homePhone: +1 415 827-1792 -initials: G. S. -mobile: +1 415 394-3308 -pager: +1 415 483-3016 -roomNumber: 9478 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Candy Husain,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candy Husain -sn: Husain -description: This is Candy Husain's description -facsimileTelephoneNumber: +1 206 383-1845 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 252-6689 -title: Chief Janitorial President -userPassword: Password1 -uid: HusainC -givenName: Candy -mail: HusainC@72624b313e0f4ba194d78d055a4373e9.bitwarden.com -carLicense: XNWKT6 -departmentNumber: 6463 -employeeType: Normal -homePhone: +1 206 881-4299 -initials: C. H. -mobile: +1 206 431-6625 -pager: +1 206 859-6768 -roomNumber: 9572 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alvin Shwed,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvin Shwed -sn: Shwed -description: This is Alvin Shwed's description -facsimileTelephoneNumber: +1 804 807-8018 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 804 485-9300 -title: Junior Janitorial Architect -userPassword: Password1 -uid: ShwedA -givenName: Alvin -mail: ShwedA@8a1bb097abd44599a5fd9f86e866f848.bitwarden.com -carLicense: AGKJD5 -departmentNumber: 8636 -employeeType: Contract -homePhone: +1 804 763-3811 -initials: A. S. -mobile: +1 804 595-4179 -pager: +1 804 347-1921 -roomNumber: 9483 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kenna Marui,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kenna Marui -sn: Marui -description: This is Kenna Marui's description -facsimileTelephoneNumber: +1 804 272-7187 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 804 492-9159 -title: Junior Janitorial Developer -userPassword: Password1 -uid: MaruiK -givenName: Kenna -mail: MaruiK@c3ff70181a1748d2af2d2661f51fc5e8.bitwarden.com -carLicense: 0YMKKN -departmentNumber: 2302 -employeeType: Employee -homePhone: +1 804 175-2325 -initials: K. M. -mobile: +1 804 402-3755 -pager: +1 804 415-4950 -roomNumber: 8115 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Aleta Gargul,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aleta Gargul -sn: Gargul -description: This is Aleta Gargul's description -facsimileTelephoneNumber: +1 510 164-1509 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 823-4170 -title: Chief Peons Architect -userPassword: Password1 -uid: GargulA -givenName: Aleta -mail: GargulA@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com -carLicense: CHCL7K -departmentNumber: 8619 -employeeType: Employee -homePhone: +1 510 132-7107 -initials: A. G. -mobile: +1 510 809-3640 -pager: +1 510 538-9711 -roomNumber: 9958 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mani Khatod,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mani Khatod -sn: Khatod -description: This is Mani Khatod's description -facsimileTelephoneNumber: +1 213 976-8193 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 213 568-8179 -title: Junior Product Development Warrior -userPassword: Password1 -uid: KhatodM -givenName: Mani -mail: KhatodM@9fc79730a8c748d99061f17947cb944d.bitwarden.com -carLicense: 0H5JJH -departmentNumber: 4048 -employeeType: Contract -homePhone: +1 213 525-8732 -initials: M. K. -mobile: +1 213 263-4474 -pager: +1 213 817-6339 -roomNumber: 9714 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryrose Bagetakos -sn: Bagetakos -description: This is Maryrose Bagetakos's description -facsimileTelephoneNumber: +1 415 188-2486 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 913-4759 -title: Master Payroll Grunt -userPassword: Password1 -uid: BagetakM -givenName: Maryrose -mail: BagetakM@b22727f208b94d678a41e54f04994fdf.bitwarden.com -carLicense: WI8QK7 -departmentNumber: 3492 -employeeType: Contract -homePhone: +1 415 592-5112 -initials: M. B. -mobile: +1 415 947-2290 -pager: +1 415 814-1344 -roomNumber: 9398 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tanya Kolappa -sn: Kolappa -description: This is Tanya Kolappa's description -facsimileTelephoneNumber: +1 510 475-3499 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 510 279-1000 -title: Supreme Janitorial Writer -userPassword: Password1 -uid: KolappaT -givenName: Tanya -mail: KolappaT@001f8a7cac5e4e5289e4b851c2ff301c.bitwarden.com -carLicense: 4B14FX -departmentNumber: 9794 -employeeType: Employee -homePhone: +1 510 715-6560 -initials: T. K. -mobile: +1 510 805-5583 -pager: +1 510 578-2521 -roomNumber: 8438 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anjanette Aalders -sn: Aalders -description: This is Anjanette Aalders's description -facsimileTelephoneNumber: +1 818 951-1884 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 248-3508 -title: Supreme Product Testing Evangelist -userPassword: Password1 -uid: AaldersA -givenName: Anjanette -mail: AaldersA@cbaa630e3a194faaa797a1d7d5ab2466.bitwarden.com -carLicense: U1OW8R -departmentNumber: 7335 -employeeType: Employee -homePhone: +1 818 389-6038 -initials: A. A. -mobile: +1 818 158-3787 -pager: +1 818 100-2647 -roomNumber: 9563 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Trixy Palik,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trixy Palik -sn: Palik -description: This is Trixy Palik's description -facsimileTelephoneNumber: +1 510 106-4192 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 656-8926 -title: Supreme Management Assistant -userPassword: Password1 -uid: PalikT -givenName: Trixy -mail: PalikT@a003e42ed50b459eb9c3a71f6a23c973.bitwarden.com -carLicense: WE4GPC -departmentNumber: 8237 -employeeType: Employee -homePhone: +1 510 665-5364 -initials: T. P. -mobile: +1 510 856-7703 -pager: +1 510 577-1557 -roomNumber: 9662 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dimitri Reese,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dimitri Reese -sn: Reese -description: This is Dimitri Reese's description -facsimileTelephoneNumber: +1 408 214-2009 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 581-5689 -title: Associate Administrative Artist -userPassword: Password1 -uid: ReeseD -givenName: Dimitri -mail: ReeseD@6decbec2a2934c8ab6247b1bef75e683.bitwarden.com -carLicense: DMPN5B -departmentNumber: 2498 -employeeType: Normal -homePhone: +1 408 770-8373 -initials: D. R. -mobile: +1 408 937-7334 -pager: +1 408 741-9624 -roomNumber: 9945 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rosamond McEachern,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosamond McEachern -sn: McEachern -description: This is Rosamond McEachern's description -facsimileTelephoneNumber: +1 206 228-3690 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 772-4655 -title: Junior Management Madonna -userPassword: Password1 -uid: McEacheR -givenName: Rosamond -mail: McEacheR@972cbc7b1e734ef69ec2cf84c21cdb8e.bitwarden.com -carLicense: 80N87A -departmentNumber: 2283 -employeeType: Employee -homePhone: +1 206 256-5616 -initials: R. M. -mobile: +1 206 932-6574 -pager: +1 206 683-9283 -roomNumber: 9139 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolea Khatri -sn: Khatri -description: This is Nicolea Khatri's description -facsimileTelephoneNumber: +1 415 390-1583 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 982-5653 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: KhatriN -givenName: Nicolea -mail: KhatriN@822b8a7ab5a0431f84030ba3b9764408.bitwarden.com -carLicense: JSJL9S -departmentNumber: 8888 -employeeType: Normal -homePhone: +1 415 113-7084 -initials: N. K. -mobile: +1 415 123-9254 -pager: +1 415 605-2619 -roomNumber: 9737 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Augustin Bayne,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Augustin Bayne -sn: Bayne -description: This is Augustin Bayne's description -facsimileTelephoneNumber: +1 415 980-9048 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 682-4302 -title: Supreme Management Warrior -userPassword: Password1 -uid: BayneA -givenName: Augustin -mail: BayneA@0a414dfa34d6439f8f6befcf71900bba.bitwarden.com -carLicense: V5Y98M -departmentNumber: 7325 -employeeType: Normal -homePhone: +1 415 287-2170 -initials: A. B. -mobile: +1 415 366-4641 -pager: +1 415 198-2001 -roomNumber: 9440 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Corkstown Beattie,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corkstown Beattie -sn: Beattie -description: This is Corkstown Beattie's description -facsimileTelephoneNumber: +1 206 495-3050 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 933-8080 -title: Master Product Development Consultant -userPassword: Password1 -uid: BeattieC -givenName: Corkstown -mail: BeattieC@45719f80729a4e31a475e496709ecf11.bitwarden.com -carLicense: ESTGLN -departmentNumber: 7270 -employeeType: Normal -homePhone: +1 206 456-4990 -initials: C. B. -mobile: +1 206 271-6490 -pager: +1 206 729-8935 -roomNumber: 9318 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Prudence Fickes,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prudence Fickes -sn: Fickes -description: This is Prudence Fickes's description -facsimileTelephoneNumber: +1 213 409-4072 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 968-2627 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: FickesP -givenName: Prudence -mail: FickesP@5c5e6866da4a4802aa0f0136ee49902d.bitwarden.com -carLicense: MTU9L4 -departmentNumber: 3151 -employeeType: Normal -homePhone: +1 213 495-3893 -initials: P. F. -mobile: +1 213 863-3579 -pager: +1 213 869-2767 -roomNumber: 9706 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lavina Cirulli,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lavina Cirulli -sn: Cirulli -description: This is Lavina Cirulli's description -facsimileTelephoneNumber: +1 818 263-6211 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 140-3745 -title: Master Peons Madonna -userPassword: Password1 -uid: CirulliL -givenName: Lavina -mail: CirulliL@57507372eada4752ba384ecd326c57ac.bitwarden.com -carLicense: J9VVWJ -departmentNumber: 1652 -employeeType: Contract -homePhone: +1 818 777-4926 -initials: L. C. -mobile: +1 818 266-1976 -pager: +1 818 356-1254 -roomNumber: 8752 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janene Ramaswamy -sn: Ramaswamy -description: This is Janene Ramaswamy's description -facsimileTelephoneNumber: +1 213 194-2599 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 676-5223 -title: Master Product Development Manager -userPassword: Password1 -uid: RamaswaJ -givenName: Janene -mail: RamaswaJ@ceecdf1f706d4c9589203a7e587e1932.bitwarden.com -carLicense: YYHLUD -departmentNumber: 9648 -employeeType: Employee -homePhone: +1 213 117-4717 -initials: J. R. -mobile: +1 213 223-6072 -pager: +1 213 657-8326 -roomNumber: 9509 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tiertza Korea,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiertza Korea -sn: Korea -description: This is Tiertza Korea's description -facsimileTelephoneNumber: +1 213 216-3286 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 747-6620 -title: Supreme Peons Pinhead -userPassword: Password1 -uid: KoreaT -givenName: Tiertza -mail: KoreaT@3a117fad58d6422fb9086b1f787bebea.bitwarden.com -carLicense: V9S43M -departmentNumber: 2546 -employeeType: Contract -homePhone: +1 213 593-8161 -initials: T. K. -mobile: +1 213 114-2349 -pager: +1 213 307-7582 -roomNumber: 8133 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Javed Collecutt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Javed Collecutt -sn: Collecutt -description: This is Javed Collecutt's description -facsimileTelephoneNumber: +1 510 550-5476 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 167-1092 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: CollecuJ -givenName: Javed -mail: CollecuJ@5c5bca41c1084c1a8e475f6b76094495.bitwarden.com -carLicense: NE0BWE -departmentNumber: 3002 -employeeType: Normal -homePhone: +1 510 536-4738 -initials: J. C. -mobile: +1 510 998-7218 -pager: +1 510 161-3754 -roomNumber: 9062 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Adrianna Shypski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrianna Shypski -sn: Shypski -description: This is Adrianna Shypski's description -facsimileTelephoneNumber: +1 206 683-3440 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 849-7975 -title: Chief Peons Janitor -userPassword: Password1 -uid: ShypskiA -givenName: Adrianna -mail: ShypskiA@e3d22003ed4443a89482f00559e86e88.bitwarden.com -carLicense: 2UJ7NW -departmentNumber: 4840 -employeeType: Contract -homePhone: +1 206 502-4229 -initials: A. S. -mobile: +1 206 659-9933 -pager: +1 206 845-2410 -roomNumber: 9041 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Susanne Denison,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Susanne Denison -sn: Denison -description: This is Susanne Denison's description -facsimileTelephoneNumber: +1 213 719-5222 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 701-4432 -title: Chief Product Development Warrior -userPassword: Password1 -uid: DenisonS -givenName: Susanne -mail: DenisonS@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com -carLicense: 6IM3HJ -departmentNumber: 1108 -employeeType: Normal -homePhone: +1 213 472-1364 -initials: S. D. -mobile: +1 213 891-1991 -pager: +1 213 806-3051 -roomNumber: 8257 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lilian Rickborn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilian Rickborn -sn: Rickborn -description: This is Lilian Rickborn's description -facsimileTelephoneNumber: +1 408 973-5857 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 331-2544 -title: Junior Product Development Technician -userPassword: Password1 -uid: RickborL -givenName: Lilian -mail: RickborL@7080244b7c9140eab015a52785b9e6b8.bitwarden.com -carLicense: 4TUEFR -departmentNumber: 1004 -employeeType: Normal -homePhone: +1 408 214-4329 -initials: L. R. -mobile: +1 408 768-2474 -pager: +1 408 564-1406 -roomNumber: 9450 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Remy Blackwood,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Remy Blackwood -sn: Blackwood -description: This is Remy Blackwood's description -facsimileTelephoneNumber: +1 510 231-7355 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 374-3658 -title: Master Product Development Artist -userPassword: Password1 -uid: BlackwoR -givenName: Remy -mail: BlackwoR@806f7fb196b84130b64d5de337c23d96.bitwarden.com -carLicense: OWSTQ7 -departmentNumber: 5990 -employeeType: Contract -homePhone: +1 510 733-4288 -initials: R. B. -mobile: +1 510 556-2511 -pager: +1 510 527-3752 -roomNumber: 8408 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Beret Cemensky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beret Cemensky -sn: Cemensky -description: This is Beret Cemensky's description -facsimileTelephoneNumber: +1 213 601-9683 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 708-5755 -title: Supreme Administrative Technician -userPassword: Password1 -uid: CemenskB -givenName: Beret -mail: CemenskB@ecd23bb109534fef8869328ab8ab9019.bitwarden.com -carLicense: 4FM6AI -departmentNumber: 8946 -employeeType: Employee -homePhone: +1 213 679-8374 -initials: B. C. -mobile: +1 213 588-9784 -pager: +1 213 564-9726 -roomNumber: 8016 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bel Browning,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bel Browning -sn: Browning -description: This is Bel Browning's description -facsimileTelephoneNumber: +1 213 823-9229 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 336-7934 -title: Supreme Product Testing Punk -userPassword: Password1 -uid: BrowninB -givenName: Bel -mail: BrowninB@a811d1067f2b449da56503c72e375ae8.bitwarden.com -carLicense: NM2ERM -departmentNumber: 5487 -employeeType: Contract -homePhone: +1 213 510-6554 -initials: B. B. -mobile: +1 213 440-9868 -pager: +1 213 318-1825 -roomNumber: 8231 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rozett VanSchouwen -sn: VanSchouwen -description: This is Rozett VanSchouwen's description -facsimileTelephoneNumber: +1 206 477-4385 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 206 641-3776 -title: Junior Product Testing Assistant -userPassword: Password1 -uid: VanSchoR -givenName: Rozett -mail: VanSchoR@6ad1b625c3674b77a93e5c19216d7f12.bitwarden.com -carLicense: V9IY0C -departmentNumber: 3310 -employeeType: Contract -homePhone: +1 206 300-3606 -initials: R. V. -mobile: +1 206 921-1985 -pager: +1 206 764-9828 -roomNumber: 9537 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charmion Kinsella -sn: Kinsella -description: This is Charmion Kinsella's description -facsimileTelephoneNumber: +1 408 310-6417 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 788-1820 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: KinsellC -givenName: Charmion -mail: KinsellC@c870d166444a452b9465ab41e64ba24a.bitwarden.com -carLicense: 9OXNHG -departmentNumber: 9349 -employeeType: Contract -homePhone: +1 408 371-1185 -initials: C. K. -mobile: +1 408 886-9472 -pager: +1 408 911-8652 -roomNumber: 9088 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lula Communications,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lula Communications -sn: Communications -description: This is Lula Communications's description -facsimileTelephoneNumber: +1 206 257-3830 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 181-2274 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: CommuniL -givenName: Lula -mail: CommuniL@949cd7cb4d054b4f8d66cb7e1b41ac6b.bitwarden.com -carLicense: FBYT4J -departmentNumber: 7246 -employeeType: Normal -homePhone: +1 206 271-7029 -initials: L. C. -mobile: +1 206 890-4416 -pager: +1 206 436-6542 -roomNumber: 9790 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ronn Turbyfill,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronn Turbyfill -sn: Turbyfill -description: This is Ronn Turbyfill's description -facsimileTelephoneNumber: +1 510 556-6308 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 833-3399 -title: Chief Peons Punk -userPassword: Password1 -uid: TurbyfiR -givenName: Ronn -mail: TurbyfiR@8b4e180a03f04f079b534af88c685eca.bitwarden.com -carLicense: TACGIG -departmentNumber: 1225 -employeeType: Normal -homePhone: +1 510 591-2841 -initials: R. T. -mobile: +1 510 172-2179 -pager: +1 510 484-2039 -roomNumber: 8601 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cindy Deol,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cindy Deol -sn: Deol -description: This is Cindy Deol's description -facsimileTelephoneNumber: +1 510 965-5014 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 937-6133 -title: Master Payroll Director -userPassword: Password1 -uid: DeolC -givenName: Cindy -mail: DeolC@c515863a84e8438aba0830f2adfe9717.bitwarden.com -carLicense: GGLOR2 -departmentNumber: 1544 -employeeType: Employee -homePhone: +1 510 180-4909 -initials: C. D. -mobile: +1 510 537-8934 -pager: +1 510 558-7858 -roomNumber: 9462 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marjory Ranahan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjory Ranahan -sn: Ranahan -description: This is Marjory Ranahan's description -facsimileTelephoneNumber: +1 213 144-1457 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 123-7420 -title: Chief Administrative Madonna -userPassword: Password1 -uid: RanahanM -givenName: Marjory -mail: RanahanM@7b7cafe5ed8643f587a2a3fd33e7d617.bitwarden.com -carLicense: A2F289 -departmentNumber: 3306 -employeeType: Normal -homePhone: +1 213 700-4695 -initials: M. R. -mobile: +1 213 551-3892 -pager: +1 213 769-7031 -roomNumber: 8386 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Winona Baccari,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winona Baccari -sn: Baccari -description: This is Winona Baccari's description -facsimileTelephoneNumber: +1 206 929-6380 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 477-3366 -title: Junior Peons Pinhead -userPassword: Password1 -uid: BaccariW -givenName: Winona -mail: BaccariW@c67a6c3f272e49d89894436b34e568ce.bitwarden.com -carLicense: U1JQF8 -departmentNumber: 1137 -employeeType: Contract -homePhone: +1 206 661-8854 -initials: W. B. -mobile: +1 206 324-3513 -pager: +1 206 674-1556 -roomNumber: 8184 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Veda Gaines,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veda Gaines -sn: Gaines -description: This is Veda Gaines's description -facsimileTelephoneNumber: +1 213 747-9301 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 775-8067 -title: Associate Management Artist -userPassword: Password1 -uid: GainesV -givenName: Veda -mail: GainesV@0d16cc430a2c4388b233d89e5b36b645.bitwarden.com -carLicense: 7RH5FI -departmentNumber: 8167 -employeeType: Contract -homePhone: +1 213 186-4535 -initials: V. G. -mobile: +1 213 971-7409 -pager: +1 213 528-1848 -roomNumber: 8256 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anup Mundi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anup Mundi -sn: Mundi -description: This is Anup Mundi's description -facsimileTelephoneNumber: +1 408 920-6254 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 209-1140 -title: Associate Peons Writer -userPassword: Password1 -uid: MundiA -givenName: Anup -mail: MundiA@c337fda07bbe40e2a0aa0860ad7ba681.bitwarden.com -carLicense: EOS3A8 -departmentNumber: 8996 -employeeType: Normal -homePhone: +1 408 846-4787 -initials: A. M. -mobile: +1 408 238-7414 -pager: +1 408 798-9414 -roomNumber: 8916 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Alyce Felli,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alyce Felli -sn: Felli -description: This is Alyce Felli's description -facsimileTelephoneNumber: +1 510 955-8337 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 737-7922 -title: Master Payroll Madonna -userPassword: Password1 -uid: FelliA -givenName: Alyce -mail: FelliA@f77e0f58a0a6420b98bdf66cba559331.bitwarden.com -carLicense: BNSKVT -departmentNumber: 1001 -employeeType: Normal -homePhone: +1 510 993-5078 -initials: A. F. -mobile: +1 510 122-4783 -pager: +1 510 473-1056 -roomNumber: 8236 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Janet Ludchen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janet Ludchen -sn: Ludchen -description: This is Janet Ludchen's description -facsimileTelephoneNumber: +1 206 633-2565 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 834-5791 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: LudchenJ -givenName: Janet -mail: LudchenJ@98502193cf164ea4ab82010779caeff8.bitwarden.com -carLicense: H6MW77 -departmentNumber: 5580 -employeeType: Normal -homePhone: +1 206 354-8690 -initials: J. L. -mobile: +1 206 381-3623 -pager: +1 206 926-7088 -roomNumber: 9515 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erlene HemensDavis -sn: HemensDavis -description: This is Erlene HemensDavis's description -facsimileTelephoneNumber: +1 408 817-8273 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 408 194-1125 -title: Chief Product Testing Manager -userPassword: Password1 -uid: HemensDE -givenName: Erlene -mail: HemensDE@09a14201411d4f53ba5558d0182f9877.bitwarden.com -carLicense: EGYF69 -departmentNumber: 5465 -employeeType: Normal -homePhone: +1 408 629-7422 -initials: E. H. -mobile: +1 408 327-3802 -pager: +1 408 535-7837 -roomNumber: 8202 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Noubar Novotny,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noubar Novotny -sn: Novotny -description: This is Noubar Novotny's description -facsimileTelephoneNumber: +1 415 364-9802 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 927-9548 -title: Master Product Testing Dictator -userPassword: Password1 -uid: NovotnyN -givenName: Noubar -mail: NovotnyN@4664a2b63b254ce9b3d95a8c77ae6508.bitwarden.com -carLicense: HT4SUY -departmentNumber: 5432 -employeeType: Normal -homePhone: +1 415 568-7534 -initials: N. N. -mobile: +1 415 214-3100 -pager: +1 415 769-1501 -roomNumber: 9194 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Starlin Joe,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Starlin Joe -sn: Joe -description: This is Starlin Joe's description -facsimileTelephoneNumber: +1 206 242-9570 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 617-5028 -title: Master Administrative Janitor -userPassword: Password1 -uid: JoeS -givenName: Starlin -mail: JoeS@dfc246b09f2e4fb599bc8aeb9522688c.bitwarden.com -carLicense: 6VWP9D -departmentNumber: 8135 -employeeType: Contract -homePhone: +1 206 341-9751 -initials: S. J. -mobile: +1 206 143-2303 -pager: +1 206 902-6077 -roomNumber: 8435 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxi Mcgrachan -sn: Mcgrachan -description: This is Roxi Mcgrachan's description -facsimileTelephoneNumber: +1 213 979-8382 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 213 614-2528 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: McgrachR -givenName: Roxi -mail: McgrachR@094b6a4c917e4f98917e91b5a1b28522.bitwarden.com -carLicense: QJ9H68 -departmentNumber: 4647 -employeeType: Contract -homePhone: +1 213 598-5728 -initials: R. M. -mobile: +1 213 845-7879 -pager: +1 213 948-5515 -roomNumber: 9064 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anurag Sylvestre -sn: Sylvestre -description: This is Anurag Sylvestre's description -facsimileTelephoneNumber: +1 804 867-3688 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 777-3572 -title: Associate Administrative Evangelist -userPassword: Password1 -uid: SylvestA -givenName: Anurag -mail: SylvestA@c6c0c36af5924e05b67c3f7f8f84a521.bitwarden.com -carLicense: 480WCG -departmentNumber: 2969 -employeeType: Contract -homePhone: +1 804 117-9677 -initials: A. S. -mobile: +1 804 917-6900 -pager: +1 804 538-4357 -roomNumber: 9195 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarabelle Szpakowski -sn: Szpakowski -description: This is Clarabelle Szpakowski's description -facsimileTelephoneNumber: +1 213 968-5579 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 132-2420 -title: Chief Administrative Engineer -userPassword: Password1 -uid: SzpakowC -givenName: Clarabelle -mail: SzpakowC@4844d9cc18554268bb1e3d4ae2211fcb.bitwarden.com -carLicense: QWOACN -departmentNumber: 1040 -employeeType: Contract -homePhone: +1 213 188-7062 -initials: C. S. -mobile: +1 213 217-5431 -pager: +1 213 384-9964 -roomNumber: 8174 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Devora Pde,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devora Pde -sn: Pde -description: This is Devora Pde's description -facsimileTelephoneNumber: +1 206 748-4185 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 352-7688 -title: Associate Product Development Admin -userPassword: Password1 -uid: PdeD -givenName: Devora -mail: PdeD@4fe9499fc7c8456094066466aa426118.bitwarden.com -carLicense: 8I124F -departmentNumber: 7964 -employeeType: Normal -homePhone: +1 206 900-4019 -initials: D. P. -mobile: +1 206 212-8427 -pager: +1 206 262-1935 -roomNumber: 9700 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Darya McGeown,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darya McGeown -sn: McGeown -description: This is Darya McGeown's description -facsimileTelephoneNumber: +1 415 785-6657 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 932-2000 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: McGeownD -givenName: Darya -mail: McGeownD@67e3aaef7f7f4f1cbd8f4f936f598c13.bitwarden.com -carLicense: FE7MSQ -departmentNumber: 3746 -employeeType: Contract -homePhone: +1 415 659-7997 -initials: D. M. -mobile: +1 415 173-2057 -pager: +1 415 651-8847 -roomNumber: 8907 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dnsproj Walles,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dnsproj Walles -sn: Walles -description: This is Dnsproj Walles's description -facsimileTelephoneNumber: +1 213 485-3809 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 980-2822 -title: Chief Peons Assistant -userPassword: Password1 -uid: WallesD -givenName: Dnsproj -mail: WallesD@436da9fad3274d878f0f8f160f4f3038.bitwarden.com -carLicense: D44TYC -departmentNumber: 9068 -employeeType: Contract -homePhone: +1 213 167-7903 -initials: D. W. -mobile: +1 213 308-1494 -pager: +1 213 867-2388 -roomNumber: 8333 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarie Ainsworth -sn: Ainsworth -description: This is Clarie Ainsworth's description -facsimileTelephoneNumber: +1 510 362-2434 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 510 489-3982 -title: Master Administrative Grunt -userPassword: Password1 -uid: AinsworC -givenName: Clarie -mail: AinsworC@33cc208726174faa89627fd28537f1c0.bitwarden.com -carLicense: 6QB4P0 -departmentNumber: 6836 -employeeType: Employee -homePhone: +1 510 566-4878 -initials: C. A. -mobile: +1 510 857-3121 -pager: +1 510 752-3298 -roomNumber: 9796 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Norma Lepine,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norma Lepine -sn: Lepine -description: This is Norma Lepine's description -facsimileTelephoneNumber: +1 206 441-6615 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 166-7089 -title: Supreme Peons Visionary -userPassword: Password1 -uid: LepineN -givenName: Norma -mail: LepineN@272fe3f35e92442897a84fe95f9bd54a.bitwarden.com -carLicense: CCWAV8 -departmentNumber: 9786 -employeeType: Employee -homePhone: +1 206 209-4476 -initials: N. L. -mobile: +1 206 608-1177 -pager: +1 206 749-9556 -roomNumber: 8510 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Brandy Verma,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandy Verma -sn: Verma -description: This is Brandy Verma's description -facsimileTelephoneNumber: +1 213 922-4110 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 504-1563 -title: Associate Management Fellow -userPassword: Password1 -uid: VermaB -givenName: Brandy -mail: VermaB@d3b588680db34a60a238a39048e01e24.bitwarden.com -carLicense: V0GTE8 -departmentNumber: 5319 -employeeType: Contract -homePhone: +1 213 532-6201 -initials: B. V. -mobile: +1 213 138-1858 -pager: +1 213 823-5477 -roomNumber: 9114 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Blanch Virk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blanch Virk -sn: Virk -description: This is Blanch Virk's description -facsimileTelephoneNumber: +1 818 647-6480 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 618-5002 -title: Junior Management Pinhead -userPassword: Password1 -uid: VirkB -givenName: Blanch -mail: VirkB@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com -carLicense: 1QU0KG -departmentNumber: 9289 -employeeType: Contract -homePhone: +1 818 617-6195 -initials: B. V. -mobile: +1 818 638-8613 -pager: +1 818 375-2876 -roomNumber: 9838 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Viviana Waucheul,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viviana Waucheul -sn: Waucheul -description: This is Viviana Waucheul's description -facsimileTelephoneNumber: +1 818 976-6001 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 793-5839 -title: Chief Management Admin -userPassword: Password1 -uid: WaucheuV -givenName: Viviana -mail: WaucheuV@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com -carLicense: 6H2A81 -departmentNumber: 7846 -employeeType: Contract -homePhone: +1 818 477-2001 -initials: V. W. -mobile: +1 818 220-9768 -pager: +1 818 997-9032 -roomNumber: 9087 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jewelle Buettgen -sn: Buettgen -description: This is Jewelle Buettgen's description -facsimileTelephoneNumber: +1 213 819-6191 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 418-7164 -title: Associate Payroll Dictator -userPassword: Password1 -uid: BuettgeJ -givenName: Jewelle -mail: BuettgeJ@870c77d8854c4712a0826cc38e8d28f2.bitwarden.com -carLicense: LMRW3T -departmentNumber: 6907 -employeeType: Contract -homePhone: +1 213 568-1884 -initials: J. B. -mobile: +1 213 822-9814 -pager: +1 213 497-4691 -roomNumber: 9701 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Brittani Menasce,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brittani Menasce -sn: Menasce -description: This is Brittani Menasce's description -facsimileTelephoneNumber: +1 510 660-8957 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 651-1612 -title: Chief Payroll Stooge -userPassword: Password1 -uid: MenasceB -givenName: Brittani -mail: MenasceB@39e9f09e15b6447ab4fb7b5dd3ceb897.bitwarden.com -carLicense: G7T5T7 -departmentNumber: 8528 -employeeType: Employee -homePhone: +1 510 666-6890 -initials: B. M. -mobile: +1 510 836-4077 -pager: +1 510 973-7115 -roomNumber: 9915 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Khalil Mincey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khalil Mincey -sn: Mincey -description: This is Khalil Mincey's description -facsimileTelephoneNumber: +1 818 904-8613 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 325-2937 -title: Junior Product Testing Grunt -userPassword: Password1 -uid: MinceyK -givenName: Khalil -mail: MinceyK@fdb2f5b287e8463ca2c07913962256d3.bitwarden.com -carLicense: MMKUUW -departmentNumber: 5734 -employeeType: Contract -homePhone: +1 818 181-6852 -initials: K. M. -mobile: +1 818 308-3053 -pager: +1 818 249-4213 -roomNumber: 9916 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shedman Jakim,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shedman Jakim -sn: Jakim -description: This is Shedman Jakim's description -facsimileTelephoneNumber: +1 804 324-7634 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 964-6123 -title: Master Product Testing Vice President -userPassword: Password1 -uid: JakimS -givenName: Shedman -mail: JakimS@5804ef50880749d5b82225b286f1e13d.bitwarden.com -carLicense: CU3ETL -departmentNumber: 9942 -employeeType: Contract -homePhone: +1 804 397-9857 -initials: S. J. -mobile: +1 804 296-6719 -pager: +1 804 648-7072 -roomNumber: 8797 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Reba Chadha,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reba Chadha -sn: Chadha -description: This is Reba Chadha's description -facsimileTelephoneNumber: +1 804 816-2993 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 438-8926 -title: Supreme Management Writer -userPassword: Password1 -uid: ChadhaR -givenName: Reba -mail: ChadhaR@33e8933bc7494a68acd4251758e509d3.bitwarden.com -carLicense: VXPOWS -departmentNumber: 9649 -employeeType: Normal -homePhone: +1 804 588-8881 -initials: R. C. -mobile: +1 804 637-1229 -pager: +1 804 573-5138 -roomNumber: 8235 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ailey Randall,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailey Randall -sn: Randall -description: This is Ailey Randall's description -facsimileTelephoneNumber: +1 206 809-3744 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 117-6908 -title: Junior Human Resources Developer -userPassword: Password1 -uid: RandallA -givenName: Ailey -mail: RandallA@4dc95598dae748aba389750443b62f7b.bitwarden.com -carLicense: Y79VA7 -departmentNumber: 2786 -employeeType: Normal -homePhone: +1 206 800-4639 -initials: A. R. -mobile: +1 206 126-7638 -pager: +1 206 853-1124 -roomNumber: 9623 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dino Dangubic,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dino Dangubic -sn: Dangubic -description: This is Dino Dangubic's description -facsimileTelephoneNumber: +1 804 788-3279 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 539-1970 -title: Chief Management Pinhead -userPassword: Password1 -uid: DangubiD -givenName: Dino -mail: DangubiD@2b9fd035a3c74d0a924ba78f328d5988.bitwarden.com -carLicense: IEX8EP -departmentNumber: 6610 -employeeType: Normal -homePhone: +1 804 218-9942 -initials: D. D. -mobile: +1 804 487-7251 -pager: +1 804 611-3732 -roomNumber: 9018 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marlies Ortiz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlies Ortiz -sn: Ortiz -description: This is Marlies Ortiz's description -facsimileTelephoneNumber: +1 415 310-4034 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 670-8640 -title: Junior Product Development Assistant -userPassword: Password1 -uid: OrtizM -givenName: Marlies -mail: OrtizM@f5c69553f79a4b59937ac455a61cfbaf.bitwarden.com -carLicense: 95S6MJ -departmentNumber: 9294 -employeeType: Normal -homePhone: +1 415 726-3379 -initials: M. O. -mobile: +1 415 771-7442 -pager: +1 415 244-1386 -roomNumber: 9219 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Uri Neufeld,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Uri Neufeld -sn: Neufeld -description: This is Uri Neufeld's description -facsimileTelephoneNumber: +1 415 383-6358 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 415 565-6953 -title: Master Peons Pinhead -userPassword: Password1 -uid: NeufeldU -givenName: Uri -mail: NeufeldU@34daae537ca34252aa1b9fbf611843a4.bitwarden.com -carLicense: QJCQCT -departmentNumber: 1017 -employeeType: Employee -homePhone: +1 415 229-5629 -initials: U. N. -mobile: +1 415 893-8787 -pager: +1 415 327-7442 -roomNumber: 9512 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Loralee McDunn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loralee McDunn -sn: McDunn -description: This is Loralee McDunn's description -facsimileTelephoneNumber: +1 818 659-5018 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 818 597-6518 -title: Junior Management Sales Rep -userPassword: Password1 -uid: McDunnL -givenName: Loralee -mail: McDunnL@6737edb7123741dc9935feaaacc217ad.bitwarden.com -carLicense: 0LKTW7 -departmentNumber: 4677 -employeeType: Employee -homePhone: +1 818 633-3776 -initials: L. M. -mobile: +1 818 617-7591 -pager: +1 818 406-8424 -roomNumber: 8106 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Caridad Sawada,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caridad Sawada -sn: Sawada -description: This is Caridad Sawada's description -facsimileTelephoneNumber: +1 206 190-4736 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 876-5331 -title: Chief Janitorial Czar -userPassword: Password1 -uid: SawadaC -givenName: Caridad -mail: SawadaC@b7db7b74741043f1bc70179c65d8c474.bitwarden.com -carLicense: 5455NH -departmentNumber: 2606 -employeeType: Contract -homePhone: +1 206 175-7323 -initials: C. S. -mobile: +1 206 103-3036 -pager: +1 206 622-9974 -roomNumber: 9667 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Willis Shelley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willis Shelley -sn: Shelley -description: This is Willis Shelley's description -facsimileTelephoneNumber: +1 415 479-6527 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 850-1252 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: ShelleyW -givenName: Willis -mail: ShelleyW@4c5bcfb77c02454a84e7adc20afdfbe7.bitwarden.com -carLicense: QNYSR3 -departmentNumber: 3235 -employeeType: Normal -homePhone: +1 415 683-5426 -initials: W. S. -mobile: +1 415 713-5282 -pager: +1 415 863-6000 -roomNumber: 8352 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raffi Kingsbury -sn: Kingsbury -description: This is Raffi Kingsbury's description -facsimileTelephoneNumber: +1 818 865-5469 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 818 385-5912 -title: Junior Janitorial Engineer -userPassword: Password1 -uid: KingsbuR -givenName: Raffi -mail: KingsbuR@36de44fb75b44a8f944e568c2906a4cc.bitwarden.com -carLicense: NCXUHF -departmentNumber: 1400 -employeeType: Employee -homePhone: +1 818 778-6969 -initials: R. K. -mobile: +1 818 757-6438 -pager: +1 818 332-5155 -roomNumber: 8443 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pauletta Weakley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pauletta Weakley -sn: Weakley -description: This is Pauletta Weakley's description -facsimileTelephoneNumber: +1 415 959-1392 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 599-5874 -title: Associate Administrative Director -userPassword: Password1 -uid: WeakleyP -givenName: Pauletta -mail: WeakleyP@7ed3387e63ee42a8ac53af5791774853.bitwarden.com -carLicense: L3MD9B -departmentNumber: 7124 -employeeType: Employee -homePhone: +1 415 728-1052 -initials: P. W. -mobile: +1 415 880-9378 -pager: +1 415 875-2424 -roomNumber: 9466 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wenona Zalzale -sn: Zalzale -description: This is Wenona Zalzale's description -facsimileTelephoneNumber: +1 510 423-1638 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 703-3103 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: ZalzaleW -givenName: Wenona -mail: ZalzaleW@b0d3dcf7c04d42368ec48183f6c62c8a.bitwarden.com -carLicense: 0Y0IEI -departmentNumber: 9310 -employeeType: Employee -homePhone: +1 510 450-7209 -initials: W. Z. -mobile: +1 510 818-7036 -pager: +1 510 886-7894 -roomNumber: 9487 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nanni Taul,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nanni Taul -sn: Taul -description: This is Nanni Taul's description -facsimileTelephoneNumber: +1 213 845-4301 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 198-4263 -title: Master Management Assistant -userPassword: Password1 -uid: TaulN -givenName: Nanni -mail: TaulN@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com -carLicense: 32DE56 -departmentNumber: 8241 -employeeType: Employee -homePhone: +1 213 890-5077 -initials: N. T. -mobile: +1 213 909-7774 -pager: +1 213 971-1203 -roomNumber: 9439 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Neetu Jeng,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neetu Jeng -sn: Jeng -description: This is Neetu Jeng's description -facsimileTelephoneNumber: +1 804 996-4166 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 934-4457 -title: Associate Management Manager -userPassword: Password1 -uid: JengN -givenName: Neetu -mail: JengN@7d8c7359d7af4b57bab78dd69e94d053.bitwarden.com -carLicense: B0U3T6 -departmentNumber: 1779 -employeeType: Employee -homePhone: +1 804 479-9663 -initials: N. J. -mobile: +1 804 526-4709 -pager: +1 804 961-3997 -roomNumber: 8626 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyda LEcuyer -sn: LEcuyer -description: This is Lyda LEcuyer's description -facsimileTelephoneNumber: +1 206 286-2155 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 702-9178 -title: Master Administrative Stooge -userPassword: Password1 -uid: LEcuyerL -givenName: Lyda -mail: LEcuyerL@ff701dee527d4bd9bda5646b61d95c09.bitwarden.com -carLicense: IB9KKV -departmentNumber: 6499 -employeeType: Employee -homePhone: +1 206 712-5308 -initials: L. L. -mobile: +1 206 235-2607 -pager: +1 206 599-7221 -roomNumber: 8187 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aimee Poma,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aimee Poma -sn: Poma -description: This is Aimee Poma's description -facsimileTelephoneNumber: +1 415 205-8058 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 169-4902 -title: Supreme Product Development President -userPassword: Password1 -uid: PomaA -givenName: Aimee -mail: PomaA@98e58adba05c446c846da1ebe7623815.bitwarden.com -carLicense: 7SNDAJ -departmentNumber: 4041 -employeeType: Contract -homePhone: +1 415 530-5390 -initials: A. P. -mobile: +1 415 800-3993 -pager: +1 415 978-9668 -roomNumber: 9249 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mer Mayes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mer Mayes -sn: Mayes -description: This is Mer Mayes's description -facsimileTelephoneNumber: +1 818 416-3834 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 810-1629 -title: Master Product Development Evangelist -userPassword: Password1 -uid: MayesM -givenName: Mer -mail: MayesM@4e190119399c4a758ca1735cbfbf2e84.bitwarden.com -carLicense: WK7ABV -departmentNumber: 1930 -employeeType: Employee -homePhone: +1 818 256-2022 -initials: M. M. -mobile: +1 818 816-5692 -pager: +1 818 889-3442 -roomNumber: 9660 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alisa Rogan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alisa Rogan -sn: Rogan -description: This is Alisa Rogan's description -facsimileTelephoneNumber: +1 206 645-2005 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 201-7408 -title: Junior Administrative Architect -userPassword: Password1 -uid: RoganA -givenName: Alisa -mail: RoganA@c4fa2184e3754d1f80f7d5580d9d94a2.bitwarden.com -carLicense: 0SSS55 -departmentNumber: 6103 -employeeType: Contract -homePhone: +1 206 219-8257 -initials: A. R. -mobile: +1 206 527-7836 -pager: +1 206 759-4745 -roomNumber: 8880 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabriellia Staggs -sn: Staggs -description: This is Gabriellia Staggs's description -facsimileTelephoneNumber: +1 213 785-9325 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 213 676-4821 -title: Master Administrative Visionary -userPassword: Password1 -uid: StaggsG -givenName: Gabriellia -mail: StaggsG@515154f7d1544d02939e620d7479ff81.bitwarden.com -carLicense: KO6G33 -departmentNumber: 7031 -employeeType: Employee -homePhone: +1 213 284-3924 -initials: G. S. -mobile: +1 213 490-3076 -pager: +1 213 140-5676 -roomNumber: 8820 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Penni Yim,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Penni Yim -sn: Yim -description: This is Penni Yim's description -facsimileTelephoneNumber: +1 213 650-2397 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 922-7032 -title: Chief Product Testing Figurehead -userPassword: Password1 -uid: YimP -givenName: Penni -mail: YimP@2c5e9a0ea53e4c3488f28ebc0a631b01.bitwarden.com -carLicense: XVDFMS -departmentNumber: 8570 -employeeType: Normal -homePhone: +1 213 782-4229 -initials: P. Y. -mobile: +1 213 148-5773 -pager: +1 213 143-2588 -roomNumber: 8232 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Melessa Vuong,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melessa Vuong -sn: Vuong -description: This is Melessa Vuong's description -facsimileTelephoneNumber: +1 415 842-5823 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 155-4387 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: VuongM -givenName: Melessa -mail: VuongM@65c647306216446ba8005c16399f2df3.bitwarden.com -carLicense: I6RA4V -departmentNumber: 7715 -employeeType: Employee -homePhone: +1 415 470-6062 -initials: M. V. -mobile: +1 415 485-9355 -pager: +1 415 469-5753 -roomNumber: 9461 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anni Blander,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anni Blander -sn: Blander -description: This is Anni Blander's description -facsimileTelephoneNumber: +1 213 869-9624 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 213 360-1886 -title: Master Payroll Consultant -userPassword: Password1 -uid: BlanderA -givenName: Anni -mail: BlanderA@a1cc10fa763e4d8e859c484ee294d650.bitwarden.com -carLicense: TVOTUO -departmentNumber: 4050 -employeeType: Contract -homePhone: +1 213 758-9782 -initials: A. B. -mobile: +1 213 320-7367 -pager: +1 213 629-5440 -roomNumber: 8079 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kazuhiko Weston -sn: Weston -description: This is Kazuhiko Weston's description -facsimileTelephoneNumber: +1 818 102-1877 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 818 155-3190 -title: Master Product Testing Vice President -userPassword: Password1 -uid: WestonK -givenName: Kazuhiko -mail: WestonK@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com -carLicense: CESM15 -departmentNumber: 2134 -employeeType: Employee -homePhone: +1 818 123-5984 -initials: K. W. -mobile: +1 818 967-7273 -pager: +1 818 198-9122 -roomNumber: 8882 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lesli Hassan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lesli Hassan -sn: Hassan -description: This is Lesli Hassan's description -facsimileTelephoneNumber: +1 818 498-6926 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 818 490-4246 -title: Junior Administrative Mascot -userPassword: Password1 -uid: HassanL -givenName: Lesli -mail: HassanL@15a45d459da54368b0fd6d1cb3b6eb6c.bitwarden.com -carLicense: 6YNN13 -departmentNumber: 9039 -employeeType: Employee -homePhone: +1 818 769-8911 -initials: L. H. -mobile: +1 818 873-9373 -pager: +1 818 965-2086 -roomNumber: 8829 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marthena Holleran,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marthena Holleran -sn: Holleran -description: This is Marthena Holleran's description -facsimileTelephoneNumber: +1 206 947-1226 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 415-8317 -title: Junior Product Testing Madonna -userPassword: Password1 -uid: HolleraM -givenName: Marthena -mail: HolleraM@736366bf947d4889a5087519dbc9eaff.bitwarden.com -carLicense: X2ANYR -departmentNumber: 6489 -employeeType: Contract -homePhone: +1 206 346-1246 -initials: M. H. -mobile: +1 206 615-3543 -pager: +1 206 191-9704 -roomNumber: 9810 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Josi Management,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Josi Management -sn: Management -description: This is Josi Management's description -facsimileTelephoneNumber: +1 213 251-2944 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 386-3867 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: ManagemJ -givenName: Josi -mail: ManagemJ@c6a4a4056d14487fb671f2f8a2034eab.bitwarden.com -carLicense: R7YX2O -departmentNumber: 8814 -employeeType: Contract -homePhone: +1 213 990-7833 -initials: J. M. -mobile: +1 213 231-7625 -pager: +1 213 853-5144 -roomNumber: 8851 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wladyslaw Markland -sn: Markland -description: This is Wladyslaw Markland's description -facsimileTelephoneNumber: +1 818 368-5031 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 986-6651 -title: Chief Janitorial Developer -userPassword: Password1 -uid: MarklanW -givenName: Wladyslaw -mail: MarklanW@b25f9197eb164e0e80b05e75586a2055.bitwarden.com -carLicense: K4LMAR -departmentNumber: 3560 -employeeType: Employee -homePhone: +1 818 629-1468 -initials: W. M. -mobile: +1 818 712-6968 -pager: +1 818 815-9058 -roomNumber: 8790 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elga Conlon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elga Conlon -sn: Conlon -description: This is Elga Conlon's description -facsimileTelephoneNumber: +1 213 296-1391 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 957-3248 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: ConlonE -givenName: Elga -mail: ConlonE@c0c6e65c61e944a0b382a61d11dea90d.bitwarden.com -carLicense: NAUO5X -departmentNumber: 6202 -employeeType: Normal -homePhone: +1 213 162-3961 -initials: E. C. -mobile: +1 213 304-2431 -pager: +1 213 824-5249 -roomNumber: 8979 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Francesca Boyd,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francesca Boyd -sn: Boyd -description: This is Francesca Boyd's description -facsimileTelephoneNumber: +1 804 407-2961 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 196-7519 -title: Chief Human Resources Pinhead -userPassword: Password1 -uid: BoydF -givenName: Francesca -mail: BoydF@e38af9fe725143fba59fa84a861f0258.bitwarden.com -carLicense: YC30A4 -departmentNumber: 9137 -employeeType: Contract -homePhone: +1 804 268-7417 -initials: F. B. -mobile: +1 804 226-6338 -pager: +1 804 789-1171 -roomNumber: 8155 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorettalorna Eberlin -sn: Eberlin -description: This is Lorettalorna Eberlin's description -facsimileTelephoneNumber: +1 510 577-4771 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 254-8430 -title: Junior Peons President -userPassword: Password1 -uid: EberlinL -givenName: Lorettalorna -mail: EberlinL@b2b61d7107f642f5a98b64baa9303c9a.bitwarden.com -carLicense: F39LGV -departmentNumber: 9924 -employeeType: Employee -homePhone: +1 510 978-9339 -initials: L. E. -mobile: +1 510 155-5628 -pager: +1 510 284-6998 -roomNumber: 9107 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabbie Clysdale -sn: Clysdale -description: This is Gabbie Clysdale's description -facsimileTelephoneNumber: +1 510 864-6028 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 419-4857 -title: Associate Janitorial President -userPassword: Password1 -uid: ClysdalG -givenName: Gabbie -mail: ClysdalG@aac280e1ad054311a3291435b99caa3e.bitwarden.com -carLicense: MQRRKK -departmentNumber: 3929 -employeeType: Employee -homePhone: +1 510 250-4359 -initials: G. C. -mobile: +1 510 259-3877 -pager: +1 510 569-4170 -roomNumber: 8034 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marit Ahlers,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marit Ahlers -sn: Ahlers -description: This is Marit Ahlers's description -facsimileTelephoneNumber: +1 510 808-3110 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 797-5149 -title: Supreme Product Testing Architect -userPassword: Password1 -uid: AhlersM -givenName: Marit -mail: AhlersM@a5557159c1c14e57b5492ca45de2de58.bitwarden.com -carLicense: M4TTQC -departmentNumber: 6298 -employeeType: Normal -homePhone: +1 510 272-8907 -initials: M. A. -mobile: +1 510 590-6649 -pager: +1 510 145-6552 -roomNumber: 9938 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mukund Aboussouan -sn: Aboussouan -description: This is Mukund Aboussouan's description -facsimileTelephoneNumber: +1 415 725-7797 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 504-7521 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: AboussoM -givenName: Mukund -mail: AboussoM@541a80b7aa9b481bbf28921cf43e3f5e.bitwarden.com -carLicense: HJUNW4 -departmentNumber: 2483 -employeeType: Contract -homePhone: +1 415 786-5895 -initials: M. A. -mobile: +1 415 551-2770 -pager: +1 415 675-4197 -roomNumber: 8879 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Donovan Rega,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donovan Rega -sn: Rega -description: This is Donovan Rega's description -facsimileTelephoneNumber: +1 206 446-7692 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 959-6079 -title: Supreme Product Testing Architect -userPassword: Password1 -uid: RegaD -givenName: Donovan -mail: RegaD@21f2e463791848548ef88e00deb1b9ad.bitwarden.com -carLicense: DOLBOU -departmentNumber: 2009 -employeeType: Contract -homePhone: +1 206 248-3368 -initials: D. R. -mobile: +1 206 971-5880 -pager: +1 206 106-1452 -roomNumber: 9356 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Elli Bourdignon,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elli Bourdignon -sn: Bourdignon -description: This is Elli Bourdignon's description -facsimileTelephoneNumber: +1 408 982-7754 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 964-5175 -title: Master Peons Sales Rep -userPassword: Password1 -uid: BourdigE -givenName: Elli -mail: BourdigE@0f1c3e2ce2034f5d8c7b8756242c50e7.bitwarden.com -carLicense: QEGE0S -departmentNumber: 5610 -employeeType: Employee -homePhone: +1 408 134-6056 -initials: E. B. -mobile: +1 408 871-6436 -pager: +1 408 653-4648 -roomNumber: 9510 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Haily Mo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haily Mo -sn: Mo -description: This is Haily Mo's description -facsimileTelephoneNumber: +1 213 486-9759 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 491-2898 -title: Associate Product Development Fellow -userPassword: Password1 -uid: MoH -givenName: Haily -mail: MoH@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com -carLicense: OH705T -departmentNumber: 3190 -employeeType: Employee -homePhone: +1 213 569-5762 -initials: H. M. -mobile: +1 213 669-3422 -pager: +1 213 552-6424 -roomNumber: 9582 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mohammed Minai,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mohammed Minai -sn: Minai -description: This is Mohammed Minai's description -facsimileTelephoneNumber: +1 510 905-2027 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 510 771-9934 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: MinaiM -givenName: Mohammed -mail: MinaiM@777873609ce9463eb7000e930f9c88d2.bitwarden.com -carLicense: OS4V2N -departmentNumber: 5676 -employeeType: Employee -homePhone: +1 510 725-3741 -initials: M. M. -mobile: +1 510 619-1634 -pager: +1 510 509-3519 -roomNumber: 9132 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kirit Storrie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirit Storrie -sn: Storrie -description: This is Kirit Storrie's description -facsimileTelephoneNumber: +1 213 388-8887 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 437-1740 -title: Master Human Resources Consultant -userPassword: Password1 -uid: StorrieK -givenName: Kirit -mail: StorrieK@faf22808db304ae29b9dfcf6c14eb1a1.bitwarden.com -carLicense: 8BQJ41 -departmentNumber: 3318 -employeeType: Employee -homePhone: +1 213 200-5516 -initials: K. S. -mobile: +1 213 225-7442 -pager: +1 213 383-8890 -roomNumber: 9463 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coleen Jayamanne -sn: Jayamanne -description: This is Coleen Jayamanne's description -facsimileTelephoneNumber: +1 818 605-4836 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 638-4564 -title: Associate Product Testing President -userPassword: Password1 -uid: JayamanC -givenName: Coleen -mail: JayamanC@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com -carLicense: 2VTOQ3 -departmentNumber: 7733 -employeeType: Employee -homePhone: +1 818 861-4347 -initials: C. J. -mobile: +1 818 583-1588 -pager: +1 818 536-8952 -roomNumber: 9938 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardyce Watkinson -sn: Watkinson -description: This is Ardyce Watkinson's description -facsimileTelephoneNumber: +1 408 927-8103 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 840-5970 -title: Chief Payroll Vice President -userPassword: Password1 -uid: WatkinsA -givenName: Ardyce -mail: WatkinsA@b34436a247d34fc9bc5677457c93ba78.bitwarden.com -carLicense: UONX0M -departmentNumber: 6914 -employeeType: Contract -homePhone: +1 408 928-4772 -initials: A. W. -mobile: +1 408 389-3313 -pager: +1 408 275-5827 -roomNumber: 8174 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rolf Simonovich -sn: Simonovich -description: This is Rolf Simonovich's description -facsimileTelephoneNumber: +1 213 959-8668 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 347-3719 -title: Master Janitorial Punk -userPassword: Password1 -uid: SimonovR -givenName: Rolf -mail: SimonovR@cde16491739c4f3f8690a2cf6ade7e5d.bitwarden.com -carLicense: L4A542 -departmentNumber: 2359 -employeeType: Normal -homePhone: +1 213 469-8074 -initials: R. S. -mobile: +1 213 158-1630 -pager: +1 213 153-1350 -roomNumber: 8808 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Migdalia McGalliard -sn: McGalliard -description: This is Migdalia McGalliard's description -facsimileTelephoneNumber: +1 804 459-8405 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 806-1678 -title: Master Payroll Punk -userPassword: Password1 -uid: McGalliM -givenName: Migdalia -mail: McGalliM@a46aa42b5f274530aa98dd0c7465489c.bitwarden.com -carLicense: OTBSI8 -departmentNumber: 3569 -employeeType: Normal -homePhone: +1 804 569-3853 -initials: M. M. -mobile: +1 804 102-2000 -pager: +1 804 460-7727 -roomNumber: 8269 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jenn Bennison,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenn Bennison -sn: Bennison -description: This is Jenn Bennison's description -facsimileTelephoneNumber: +1 818 952-5095 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 733-7839 -title: Chief Human Resources Manager -userPassword: Password1 -uid: BennisoJ -givenName: Jenn -mail: BennisoJ@0469f1b4c991499bab217f2cac0d045b.bitwarden.com -carLicense: 0MIP0V -departmentNumber: 7201 -employeeType: Employee -homePhone: +1 818 398-1061 -initials: J. B. -mobile: +1 818 394-5920 -pager: +1 818 446-1407 -roomNumber: 8543 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Durantaye Molson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Durantaye Molson -sn: Molson -description: This is Durantaye Molson's description -facsimileTelephoneNumber: +1 206 253-3594 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 570-2751 -title: Associate Product Testing Grunt -userPassword: Password1 -uid: MolsonD -givenName: Durantaye -mail: MolsonD@282e36163b2b4782beba5acb316b5795.bitwarden.com -carLicense: R6GEBB -departmentNumber: 3091 -employeeType: Normal -homePhone: +1 206 688-8161 -initials: D. M. -mobile: +1 206 337-5935 -pager: +1 206 202-4599 -roomNumber: 8466 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Viola Devouges,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viola Devouges -sn: Devouges -description: This is Viola Devouges's description -facsimileTelephoneNumber: +1 408 348-4939 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 386-7516 -title: Master Janitorial Admin -userPassword: Password1 -uid: DevougeV -givenName: Viola -mail: DevougeV@22e47b1badb64e5a8c75ea83e23c66b9.bitwarden.com -carLicense: XE9RRC -departmentNumber: 2279 -employeeType: Normal -homePhone: +1 408 766-6851 -initials: V. D. -mobile: +1 408 457-8040 -pager: +1 408 204-3197 -roomNumber: 8770 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abdullah Bhardwaj -sn: Bhardwaj -description: This is Abdullah Bhardwaj's description -facsimileTelephoneNumber: +1 408 956-5528 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 184-9177 -title: Associate Administrative Admin -userPassword: Password1 -uid: BhardwaA -givenName: Abdullah -mail: BhardwaA@7c05b9f9aa6d481ba748c7c030bbe50b.bitwarden.com -carLicense: Q1W2R8 -departmentNumber: 4655 -employeeType: Normal -homePhone: +1 408 282-6963 -initials: A. B. -mobile: +1 408 863-3211 -pager: +1 408 448-9155 -roomNumber: 8379 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Palme Boose,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Palme Boose -sn: Boose -description: This is Palme Boose's description -facsimileTelephoneNumber: +1 213 284-1458 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 684-4348 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: BooseP -givenName: Palme -mail: BooseP@0a9ecf28f4994fd284a4f750138333e6.bitwarden.com -carLicense: 182QVE -departmentNumber: 6935 -employeeType: Contract -homePhone: +1 213 266-7741 -initials: P. B. -mobile: +1 213 637-5843 -pager: +1 213 331-3726 -roomNumber: 9903 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zarah Doriot,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zarah Doriot -sn: Doriot -description: This is Zarah Doriot's description -facsimileTelephoneNumber: +1 818 580-2701 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 818 136-7720 -title: Junior Peons Director -userPassword: Password1 -uid: DoriotZ -givenName: Zarah -mail: DoriotZ@3be6f0b907a24b2494bafbb2bc326635.bitwarden.com -carLicense: RFXRM5 -departmentNumber: 7814 -employeeType: Contract -homePhone: +1 818 749-6873 -initials: Z. D. -mobile: +1 818 942-8700 -pager: +1 818 590-4264 -roomNumber: 9728 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Eirik McCray,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eirik McCray -sn: McCray -description: This is Eirik McCray's description -facsimileTelephoneNumber: +1 415 306-7459 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 207-2285 -title: Junior Management Vice President -userPassword: Password1 -uid: McCrayE -givenName: Eirik -mail: McCrayE@7ae99018925f40aaa0a9b24bf1a3f314.bitwarden.com -carLicense: 4JP0CN -departmentNumber: 7126 -employeeType: Employee -homePhone: +1 415 155-9876 -initials: E. M. -mobile: +1 415 490-6267 -pager: +1 415 918-9491 -roomNumber: 8033 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Brennan Saito,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brennan Saito -sn: Saito -description: This is Brennan Saito's description -facsimileTelephoneNumber: +1 804 275-8276 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 907-1234 -title: Junior Administrative Engineer -userPassword: Password1 -uid: SaitoB -givenName: Brennan -mail: SaitoB@4437a885539842e694e181973aeef65f.bitwarden.com -carLicense: WHNETR -departmentNumber: 7710 -employeeType: Contract -homePhone: +1 804 746-6651 -initials: B. S. -mobile: +1 804 559-5462 -pager: +1 804 791-6208 -roomNumber: 8818 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bambie Borel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bambie Borel -sn: Borel -description: This is Bambie Borel's description -facsimileTelephoneNumber: +1 804 273-3492 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 804 847-5986 -title: Master Payroll Evangelist -userPassword: Password1 -uid: BorelB -givenName: Bambie -mail: BorelB@911fdc608a134ac59eea9467d4209b74.bitwarden.com -carLicense: 5DYFSP -departmentNumber: 4034 -employeeType: Employee -homePhone: +1 804 354-2174 -initials: B. B. -mobile: +1 804 436-6554 -pager: +1 804 394-1409 -roomNumber: 8996 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Devonne Salkini,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devonne Salkini -sn: Salkini -description: This is Devonne Salkini's description -facsimileTelephoneNumber: +1 213 627-1333 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 961-1159 -title: Chief Payroll Developer -userPassword: Password1 -uid: SalkiniD -givenName: Devonne -mail: SalkiniD@f06dcb9a7c274d2c8b61f4765bcce046.bitwarden.com -carLicense: A4AHKM -departmentNumber: 8145 -employeeType: Employee -homePhone: +1 213 859-9265 -initials: D. S. -mobile: +1 213 299-4011 -pager: +1 213 724-7659 -roomNumber: 8690 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bawn Straub,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bawn Straub -sn: Straub -description: This is Bawn Straub's description -facsimileTelephoneNumber: +1 510 433-4464 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 152-6851 -title: Junior Product Testing Grunt -userPassword: Password1 -uid: StraubB -givenName: Bawn -mail: StraubB@3f4cec00392444ae9c0437c04a8ea49d.bitwarden.com -carLicense: DXBVXH -departmentNumber: 9207 -employeeType: Normal -homePhone: +1 510 225-3640 -initials: B. S. -mobile: +1 510 218-9037 -pager: +1 510 133-9189 -roomNumber: 8359 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jojo Peart,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jojo Peart -sn: Peart -description: This is Jojo Peart's description -facsimileTelephoneNumber: +1 818 648-4072 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 818 357-1200 -title: Associate Janitorial President -userPassword: Password1 -uid: PeartJ -givenName: Jojo -mail: PeartJ@7d23b0e8a7304d9db4a8b51eca9070a3.bitwarden.com -carLicense: O1PVI5 -departmentNumber: 3384 -employeeType: Contract -homePhone: +1 818 723-4866 -initials: J. P. -mobile: +1 818 389-9591 -pager: +1 818 541-4219 -roomNumber: 9968 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marieke Deibert,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marieke Deibert -sn: Deibert -description: This is Marieke Deibert's description -facsimileTelephoneNumber: +1 804 413-4133 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 242-4473 -title: Junior Human Resources Manager -userPassword: Password1 -uid: DeibertM -givenName: Marieke -mail: DeibertM@8eab0f58e984423689a3d31e38a978a5.bitwarden.com -carLicense: D9IN0X -departmentNumber: 8635 -employeeType: Employee -homePhone: +1 804 977-6625 -initials: M. D. -mobile: +1 804 139-4618 -pager: +1 804 422-8025 -roomNumber: 8518 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ginelle Couture,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginelle Couture -sn: Couture -description: This is Ginelle Couture's description -facsimileTelephoneNumber: +1 206 748-5682 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 318-4708 -title: Junior Management Admin -userPassword: Password1 -uid: CoutureG -givenName: Ginelle -mail: CoutureG@2f5fd5dddfb54bca86a1d0320ba60e06.bitwarden.com -carLicense: ALYWDW -departmentNumber: 8989 -employeeType: Employee -homePhone: +1 206 112-9671 -initials: G. C. -mobile: +1 206 207-1514 -pager: +1 206 476-3154 -roomNumber: 9108 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gnni Podolski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gnni Podolski -sn: Podolski -description: This is Gnni Podolski's description -facsimileTelephoneNumber: +1 415 706-8862 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 202-4458 -title: Master Janitorial Warrior -userPassword: Password1 -uid: PodolskG -givenName: Gnni -mail: PodolskG@f7752e330a264f1884c22f0f347f41b4.bitwarden.com -carLicense: UIPMED -departmentNumber: 5587 -employeeType: Normal -homePhone: +1 415 808-7048 -initials: G. P. -mobile: +1 415 561-1947 -pager: +1 415 831-8182 -roomNumber: 8303 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cubical Igarashi -sn: Igarashi -description: This is Cubical Igarashi's description -facsimileTelephoneNumber: +1 818 822-2611 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 572-1769 -title: Junior Human Resources Fellow -userPassword: Password1 -uid: IgarashC -givenName: Cubical -mail: IgarashC@97e726cfbc2349ecb70cb5344f2a2c22.bitwarden.com -carLicense: YUHUVB -departmentNumber: 5143 -employeeType: Employee -homePhone: +1 818 247-6485 -initials: C. I. -mobile: +1 818 652-6045 -pager: +1 818 773-2569 -roomNumber: 9438 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Uunko Kodsi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Uunko Kodsi -sn: Kodsi -description: This is Uunko Kodsi's description -facsimileTelephoneNumber: +1 804 902-3035 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 722-1694 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: KodsiU -givenName: Uunko -mail: KodsiU@37c3227000a74816851448e0169c372e.bitwarden.com -carLicense: RP9T9L -departmentNumber: 8167 -employeeType: Contract -homePhone: +1 804 889-6316 -initials: U. K. -mobile: +1 804 698-7223 -pager: +1 804 561-3199 -roomNumber: 8430 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaja Ritchey -sn: Ritchey -description: This is Kaja Ritchey's description -facsimileTelephoneNumber: +1 415 852-4153 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 175-1934 -title: Junior Human Resources Sales Rep -userPassword: Password1 -uid: RitcheyK -givenName: Kaja -mail: RitcheyK@fe48d37c5b2641728941b8fc035adcee.bitwarden.com -carLicense: Q8N32F -departmentNumber: 4552 -employeeType: Contract -homePhone: +1 415 878-3531 -initials: K. R. -mobile: +1 415 995-4693 -pager: +1 415 702-7642 -roomNumber: 8536 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sharline Tullius,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharline Tullius -sn: Tullius -description: This is Sharline Tullius's description -facsimileTelephoneNumber: +1 818 912-1079 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 511-2528 -title: Supreme Management Developer -userPassword: Password1 -uid: TulliusS -givenName: Sharline -mail: TulliusS@eb7bca808a2e45f58db03191eddeb5b6.bitwarden.com -carLicense: FR8XTE -departmentNumber: 4590 -employeeType: Contract -homePhone: +1 818 876-5399 -initials: S. T. -mobile: +1 818 395-2747 -pager: +1 818 696-6294 -roomNumber: 8111 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatyana Tussey -sn: Tussey -description: This is Tatyana Tussey's description -facsimileTelephoneNumber: +1 415 976-7284 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 415 327-8832 -title: Supreme Human Resources Engineer -userPassword: Password1 -uid: TusseyT -givenName: Tatyana -mail: TusseyT@1d0fa7b832b142ce82ca5e924a1754a0.bitwarden.com -carLicense: OCLLH3 -departmentNumber: 1446 -employeeType: Normal -homePhone: +1 415 614-1495 -initials: T. T. -mobile: +1 415 370-4793 -pager: +1 415 715-8576 -roomNumber: 8577 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shoeb Scales,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shoeb Scales -sn: Scales -description: This is Shoeb Scales's description -facsimileTelephoneNumber: +1 206 801-7005 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 206 463-8679 -title: Master Product Development Janitor -userPassword: Password1 -uid: ScalesS -givenName: Shoeb -mail: ScalesS@b517a2d10bbc4f42810c787fa46b3e5b.bitwarden.com -carLicense: XCUPSM -departmentNumber: 1526 -employeeType: Normal -homePhone: +1 206 161-8355 -initials: S. S. -mobile: +1 206 981-4232 -pager: +1 206 416-1502 -roomNumber: 8866 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elsie Skiclub -sn: Skiclub -description: This is Elsie Skiclub's description -facsimileTelephoneNumber: +1 206 808-6122 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 817-9263 -title: Supreme Human Resources Engineer -userPassword: Password1 -uid: SkiclubE -givenName: Elsie -mail: SkiclubE@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com -carLicense: 5BBP3S -departmentNumber: 3649 -employeeType: Normal -homePhone: +1 206 907-1603 -initials: E. S. -mobile: +1 206 825-7086 -pager: +1 206 443-5229 -roomNumber: 8965 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nissa Twarog,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nissa Twarog -sn: Twarog -description: This is Nissa Twarog's description -facsimileTelephoneNumber: +1 415 289-4608 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 770-9587 -title: Master Product Testing Artist -userPassword: Password1 -uid: TwarogN -givenName: Nissa -mail: TwarogN@c9e737b9c70b4882afff21061f6d5241.bitwarden.com -carLicense: XGLCLJ -departmentNumber: 7864 -employeeType: Contract -homePhone: +1 415 230-1377 -initials: N. T. -mobile: +1 415 674-5078 -pager: +1 415 264-5822 -roomNumber: 9629 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephanie Yarnell -sn: Yarnell -description: This is Stephanie Yarnell's description -facsimileTelephoneNumber: +1 206 494-9621 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 206 563-9277 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: YarnellS -givenName: Stephanie -mail: YarnellS@55c5ce522f7b4db190d4d14360a9a4fb.bitwarden.com -carLicense: WVLYGH -departmentNumber: 2929 -employeeType: Normal -homePhone: +1 206 808-1158 -initials: S. Y. -mobile: +1 206 336-1006 -pager: +1 206 979-3491 -roomNumber: 9951 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anabal Kusyk -sn: Kusyk -description: This is Anabal Kusyk's description -facsimileTelephoneNumber: +1 408 915-1389 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 437-1920 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: KusykA -givenName: Anabal -mail: KusykA@99efb52676a5438d8f4dfeb830e52009.bitwarden.com -carLicense: XS6ONO -departmentNumber: 8079 -employeeType: Employee -homePhone: +1 408 758-8754 -initials: A. K. -mobile: +1 408 871-5000 -pager: +1 408 224-8085 -roomNumber: 9730 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hrinfo Popel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hrinfo Popel -sn: Popel -description: This is Hrinfo Popel's description -facsimileTelephoneNumber: +1 510 108-4930 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 391-2036 -title: Associate Administrative Warrior -userPassword: Password1 -uid: PopelH -givenName: Hrinfo -mail: PopelH@9e56e8486a994bf4a874e73233ce3dcc.bitwarden.com -carLicense: 0RPVU2 -departmentNumber: 2671 -employeeType: Normal -homePhone: +1 510 732-5222 -initials: H. P. -mobile: +1 510 291-3236 -pager: +1 510 880-8748 -roomNumber: 9495 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anallese Dressler,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anallese Dressler -sn: Dressler -description: This is Anallese Dressler's description -facsimileTelephoneNumber: +1 213 252-7427 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 530-4543 -title: Chief Payroll Pinhead -userPassword: Password1 -uid: DressleA -givenName: Anallese -mail: DressleA@52c44ba7d54d47f49f97d3fd2eee96ae.bitwarden.com -carLicense: 8TDSE0 -departmentNumber: 2245 -employeeType: Normal -homePhone: +1 213 307-3495 -initials: A. D. -mobile: +1 213 641-9122 -pager: +1 213 300-3182 -roomNumber: 8525 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fredra Skillen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fredra Skillen -sn: Skillen -description: This is Fredra Skillen's description -facsimileTelephoneNumber: +1 804 335-2056 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 209-7456 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: SkillenF -givenName: Fredra -mail: SkillenF@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com -carLicense: B6PUNN -departmentNumber: 1846 -employeeType: Normal -homePhone: +1 804 700-8678 -initials: F. S. -mobile: +1 804 957-6371 -pager: +1 804 886-4408 -roomNumber: 9376 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shafique Behrens,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shafique Behrens -sn: Behrens -description: This is Shafique Behrens's description -facsimileTelephoneNumber: +1 206 984-6543 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 206 813-2413 -title: Junior Human Resources Czar -userPassword: Password1 -uid: BehrensS -givenName: Shafique -mail: BehrensS@22b38e3187c1496caaed86c5083e47f0.bitwarden.com -carLicense: 4SH0P7 -departmentNumber: 1345 -employeeType: Contract -homePhone: +1 206 418-5474 -initials: S. B. -mobile: +1 206 239-1692 -pager: +1 206 282-4633 -roomNumber: 9552 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ross Saravanos,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ross Saravanos -sn: Saravanos -description: This is Ross Saravanos's description -facsimileTelephoneNumber: +1 510 574-3172 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 993-8649 -title: Master Product Testing Evangelist -userPassword: Password1 -uid: SaravanR -givenName: Ross -mail: SaravanR@54fd227716ba449c96690a03af42c46e.bitwarden.com -carLicense: DXQRJU -departmentNumber: 2405 -employeeType: Contract -homePhone: +1 510 683-4872 -initials: R. S. -mobile: +1 510 672-7316 -pager: +1 510 882-7756 -roomNumber: 8524 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KimMinh Eierstock -sn: Eierstock -description: This is KimMinh Eierstock's description -facsimileTelephoneNumber: +1 804 170-5968 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 167-7258 -title: Supreme Product Testing Director -userPassword: Password1 -uid: EierstoK -givenName: KimMinh -mail: EierstoK@2a4ac17a2dac443185eb76e92ebd37d9.bitwarden.com -carLicense: IKQFQE -departmentNumber: 3592 -employeeType: Employee -homePhone: +1 804 563-1861 -initials: K. E. -mobile: +1 804 915-1661 -pager: +1 804 549-9948 -roomNumber: 9107 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Albertine Dorey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Albertine Dorey -sn: Dorey -description: This is Albertine Dorey's description -facsimileTelephoneNumber: +1 804 649-8789 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 125-8350 -title: Associate Product Testing Architect -userPassword: Password1 -uid: DoreyA -givenName: Albertine -mail: DoreyA@0f6317f19e074d3eacd8b09d7fafccf0.bitwarden.com -carLicense: 9G3HMD -departmentNumber: 9926 -employeeType: Employee -homePhone: +1 804 478-5635 -initials: A. D. -mobile: +1 804 607-5935 -pager: +1 804 267-1345 -roomNumber: 8034 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Junia Kun,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Junia Kun -sn: Kun -description: This is Junia Kun's description -facsimileTelephoneNumber: +1 804 619-8622 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 702-4982 -title: Chief Payroll Dictator -userPassword: Password1 -uid: KunJ -givenName: Junia -mail: KunJ@90c585b5539b419a977fd9fb6fa21443.bitwarden.com -carLicense: BQM3X3 -departmentNumber: 4142 -employeeType: Contract -homePhone: +1 804 398-8881 -initials: J. K. -mobile: +1 804 352-7012 -pager: +1 804 138-2367 -roomNumber: 8103 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cong Kalnitsky -sn: Kalnitsky -description: This is Cong Kalnitsky's description -facsimileTelephoneNumber: +1 415 399-2706 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 963-7587 -title: Master Human Resources Writer -userPassword: Password1 -uid: KalnitsC -givenName: Cong -mail: KalnitsC@98cda8dd254945c28b3bdbc5a52f9fd7.bitwarden.com -carLicense: A3I0DO -departmentNumber: 7004 -employeeType: Contract -homePhone: +1 415 607-5464 -initials: C. K. -mobile: +1 415 453-3842 -pager: +1 415 876-5506 -roomNumber: 8778 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HinWai Jauvin -sn: Jauvin -description: This is HinWai Jauvin's description -facsimileTelephoneNumber: +1 804 564-5037 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 804 667-2444 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: JauvinH -givenName: HinWai -mail: JauvinH@ab9c48ef1f7c4b329b69e3276189b579.bitwarden.com -carLicense: DYXKOG -departmentNumber: 7257 -employeeType: Employee -homePhone: +1 804 325-1795 -initials: H. J. -mobile: +1 804 714-5548 -pager: +1 804 258-5862 -roomNumber: 8457 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rey Galvin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rey Galvin -sn: Galvin -description: This is Rey Galvin's description -facsimileTelephoneNumber: +1 818 340-4896 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 818 534-3487 -title: Junior Product Testing President -userPassword: Password1 -uid: GalvinR -givenName: Rey -mail: GalvinR@660a614454f1481f8e7878f66c6cc97d.bitwarden.com -carLicense: KENI32 -departmentNumber: 4354 -employeeType: Contract -homePhone: +1 818 670-7801 -initials: R. G. -mobile: +1 818 363-2113 -pager: +1 818 285-2309 -roomNumber: 8707 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kentaro Prada,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kentaro Prada -sn: Prada -description: This is Kentaro Prada's description -facsimileTelephoneNumber: +1 510 359-5140 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 685-9341 -title: Chief Janitorial Visionary -userPassword: Password1 -uid: PradaK -givenName: Kentaro -mail: PradaK@fc6cfedbbb404c7db9497f0971d6cf66.bitwarden.com -carLicense: 9S49VQ -departmentNumber: 1326 -employeeType: Employee -homePhone: +1 510 703-2028 -initials: K. P. -mobile: +1 510 662-9352 -pager: +1 510 970-3669 -roomNumber: 9323 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Caro Roithmaier,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caro Roithmaier -sn: Roithmaier -description: This is Caro Roithmaier's description -facsimileTelephoneNumber: +1 510 768-5241 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 865-1241 -title: Chief Administrative Dictator -userPassword: Password1 -uid: RoithmaC -givenName: Caro -mail: RoithmaC@2887ebb1b5674da08665a9e53d171dc9.bitwarden.com -carLicense: LYF5S9 -departmentNumber: 1500 -employeeType: Normal -homePhone: +1 510 536-2363 -initials: C. R. -mobile: +1 510 626-8960 -pager: +1 510 283-7499 -roomNumber: 9963 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cassondra Rollin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassondra Rollin -sn: Rollin -description: This is Cassondra Rollin's description -facsimileTelephoneNumber: +1 415 765-5690 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 308-6264 -title: Junior Management Consultant -userPassword: Password1 -uid: RollinC -givenName: Cassondra -mail: RollinC@e18e42f38b9b44e7831cc8f3706030f7.bitwarden.com -carLicense: WNEDLC -departmentNumber: 2237 -employeeType: Normal -homePhone: +1 415 214-2458 -initials: C. R. -mobile: +1 415 150-2760 -pager: +1 415 522-2298 -roomNumber: 9563 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kiet Kantor,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiet Kantor -sn: Kantor -description: This is Kiet Kantor's description -facsimileTelephoneNumber: +1 213 359-2906 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 215-8893 -title: Master Product Testing Visionary -userPassword: Password1 -uid: KantorK -givenName: Kiet -mail: KantorK@717bac7424a34a139f2d3dd4cc38bede.bitwarden.com -carLicense: 3SUV4X -departmentNumber: 5687 -employeeType: Employee -homePhone: +1 213 804-7062 -initials: K. K. -mobile: +1 213 357-7936 -pager: +1 213 569-1352 -roomNumber: 9676 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kimihiko Labossiere -sn: Labossiere -description: This is Kimihiko Labossiere's description -facsimileTelephoneNumber: +1 408 292-8413 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 134-4579 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: LabossiK -givenName: Kimihiko -mail: LabossiK@ce0ca58b605f4efe987f4366b87f6460.bitwarden.com -carLicense: NHUKGQ -departmentNumber: 1261 -employeeType: Normal -homePhone: +1 408 781-3672 -initials: K. L. -mobile: +1 408 931-7712 -pager: +1 408 668-8958 -roomNumber: 9315 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gilemette Grubbs,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilemette Grubbs -sn: Grubbs -description: This is Gilemette Grubbs's description -facsimileTelephoneNumber: +1 510 418-5488 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 204-4406 -title: Associate Peons Developer -userPassword: Password1 -uid: GrubbsG -givenName: Gilemette -mail: GrubbsG@e85fdc3041fd4381ad23f20fda20358e.bitwarden.com -carLicense: XW8P6T -departmentNumber: 4151 -employeeType: Contract -homePhone: +1 510 381-7071 -initials: G. G. -mobile: +1 510 580-1068 -pager: +1 510 990-8675 -roomNumber: 8314 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyndon VanAtta -sn: VanAtta -description: This is Lyndon VanAtta's description -facsimileTelephoneNumber: +1 206 864-9146 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 735-2247 -title: Master Payroll Figurehead -userPassword: Password1 -uid: VanAttaL -givenName: Lyndon -mail: VanAttaL@984a33b6fcea4c229307cb5a753888dd.bitwarden.com -carLicense: 330CD2 -departmentNumber: 6196 -employeeType: Normal -homePhone: +1 206 555-3678 -initials: L. V. -mobile: +1 206 825-7462 -pager: +1 206 553-3700 -roomNumber: 8441 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Calida Knudsen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calida Knudsen -sn: Knudsen -description: This is Calida Knudsen's description -facsimileTelephoneNumber: +1 510 407-5763 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 662-4699 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: KnudsenC -givenName: Calida -mail: KnudsenC@907c0dba1e17448686f2f886e0e7f2be.bitwarden.com -carLicense: MK0P6W -departmentNumber: 5561 -employeeType: Normal -homePhone: +1 510 155-1663 -initials: C. K. -mobile: +1 510 958-8846 -pager: +1 510 762-8915 -roomNumber: 9031 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bendite Costelloe,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bendite Costelloe -sn: Costelloe -description: This is Bendite Costelloe's description -facsimileTelephoneNumber: +1 804 641-9504 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 522-6882 -title: Associate Product Development Dictator -userPassword: Password1 -uid: CostellB -givenName: Bendite -mail: CostellB@cbd714d753064e6b830ef812fa9487c9.bitwarden.com -carLicense: IBNHN0 -departmentNumber: 8046 -employeeType: Normal -homePhone: +1 804 558-4143 -initials: B. C. -mobile: +1 804 935-3697 -pager: +1 804 879-8121 -roomNumber: 8137 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barrie Falkenstrom -sn: Falkenstrom -description: This is Barrie Falkenstrom's description -facsimileTelephoneNumber: +1 818 361-2732 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 818 288-7401 -title: Supreme Payroll Architect -userPassword: Password1 -uid: FalkensB -givenName: Barrie -mail: FalkensB@25f3da6efbac4e1a943679d0eb7798c3.bitwarden.com -carLicense: 17GWD7 -departmentNumber: 8951 -employeeType: Normal -homePhone: +1 818 942-7772 -initials: B. F. -mobile: +1 818 513-7366 -pager: +1 818 799-9784 -roomNumber: 8254 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Desirae Tye,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desirae Tye -sn: Tye -description: This is Desirae Tye's description -facsimileTelephoneNumber: +1 804 128-4469 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 629-8383 -title: Master Administrative Punk -userPassword: Password1 -uid: TyeD -givenName: Desirae -mail: TyeD@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com -carLicense: LJTRKL -departmentNumber: 4512 -employeeType: Normal -homePhone: +1 804 544-9920 -initials: D. T. -mobile: +1 804 819-9468 -pager: +1 804 697-9363 -roomNumber: 8729 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yong Papalitskas,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yong Papalitskas -sn: Papalitskas -description: This is Yong Papalitskas's description -facsimileTelephoneNumber: +1 213 899-1421 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 213 594-3394 -title: Associate Peons Engineer -userPassword: Password1 -uid: PapalitY -givenName: Yong -mail: PapalitY@bf2f61fe09a540bebb83fd50294209be.bitwarden.com -carLicense: AHHBP1 -departmentNumber: 1039 -employeeType: Contract -homePhone: +1 213 450-8523 -initials: Y. P. -mobile: +1 213 959-8783 -pager: +1 213 201-5702 -roomNumber: 8704 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Orsola Shieff,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orsola Shieff -sn: Shieff -description: This is Orsola Shieff's description -facsimileTelephoneNumber: +1 213 859-4514 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 369-4568 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: ShieffO -givenName: Orsola -mail: ShieffO@06521bdd507441e9a09de35a0e462c1a.bitwarden.com -carLicense: 65S5JL -departmentNumber: 9449 -employeeType: Contract -homePhone: +1 213 670-3213 -initials: O. S. -mobile: +1 213 423-1204 -pager: +1 213 181-9742 -roomNumber: 9730 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Meade Lindler,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meade Lindler -sn: Lindler -description: This is Meade Lindler's description -facsimileTelephoneNumber: +1 818 493-3293 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 504-7907 -title: Master Janitorial Manager -userPassword: Password1 -uid: LindlerM -givenName: Meade -mail: LindlerM@d8b377610c7d421f8eec4a02e5fb3c9d.bitwarden.com -carLicense: G6YVMU -departmentNumber: 2360 -employeeType: Employee -homePhone: +1 818 639-4844 -initials: M. L. -mobile: +1 818 534-7302 -pager: +1 818 729-5753 -roomNumber: 9806 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Canadian Gass,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Canadian Gass -sn: Gass -description: This is Canadian Gass's description -facsimileTelephoneNumber: +1 804 371-2804 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 902-7208 -title: Chief Product Development Manager -userPassword: Password1 -uid: GassC -givenName: Canadian -mail: GassC@0ed31ccb8df34d01a0dc8eade78d6c66.bitwarden.com -carLicense: CGH9K0 -departmentNumber: 4465 -employeeType: Normal -homePhone: +1 804 289-3158 -initials: C. G. -mobile: +1 804 344-6776 -pager: +1 804 733-1129 -roomNumber: 8713 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Liping Woll,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liping Woll -sn: Woll -description: This is Liping Woll's description -facsimileTelephoneNumber: +1 408 598-1301 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 690-9415 -title: Junior Product Testing Consultant -userPassword: Password1 -uid: WollL -givenName: Liping -mail: WollL@d727402099aa4389806973df875b978a.bitwarden.com -carLicense: MU4UMF -departmentNumber: 9488 -employeeType: Contract -homePhone: +1 408 820-3076 -initials: L. W. -mobile: +1 408 470-7862 -pager: +1 408 768-9896 -roomNumber: 9359 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dwaine Oka,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dwaine Oka -sn: Oka -description: This is Dwaine Oka's description -facsimileTelephoneNumber: +1 415 741-1929 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 368-8577 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: OkaD -givenName: Dwaine -mail: OkaD@160e893e1d3b4deaa6e59bb27f3aab82.bitwarden.com -carLicense: KDS330 -departmentNumber: 8812 -employeeType: Contract -homePhone: +1 415 469-3738 -initials: D. O. -mobile: +1 415 271-9967 -pager: +1 415 121-9037 -roomNumber: 9508 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jed Colbourne,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jed Colbourne -sn: Colbourne -description: This is Jed Colbourne's description -facsimileTelephoneNumber: +1 213 519-6755 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 308-8990 -title: Junior Product Development Grunt -userPassword: Password1 -uid: ColbourJ -givenName: Jed -mail: ColbourJ@bea3df99128348b58312efa7b662b9b3.bitwarden.com -carLicense: ELHTVE -departmentNumber: 3487 -employeeType: Contract -homePhone: +1 213 604-1347 -initials: J. C. -mobile: +1 213 748-8195 -pager: +1 213 162-1724 -roomNumber: 8857 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Pammi Crucefix,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pammi Crucefix -sn: Crucefix -description: This is Pammi Crucefix's description -facsimileTelephoneNumber: +1 415 157-4248 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 227-5981 -title: Chief Management Visionary -userPassword: Password1 -uid: CrucefiP -givenName: Pammi -mail: CrucefiP@cd532997f28e491fbc9b8de411038a21.bitwarden.com -carLicense: HSNLMW -departmentNumber: 9236 -employeeType: Contract -homePhone: +1 415 307-6748 -initials: P. C. -mobile: +1 415 699-2357 -pager: +1 415 876-7200 -roomNumber: 9983 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Joelle Vardy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joelle Vardy -sn: Vardy -description: This is Joelle Vardy's description -facsimileTelephoneNumber: +1 206 312-9241 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 928-2079 -title: Junior Peons Visionary -userPassword: Password1 -uid: VardyJ -givenName: Joelle -mail: VardyJ@a59c9463263443218c36867822977d85.bitwarden.com -carLicense: 8GWXR4 -departmentNumber: 6811 -employeeType: Normal -homePhone: +1 206 228-5865 -initials: J. V. -mobile: +1 206 145-6864 -pager: +1 206 583-6696 -roomNumber: 8833 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wenona Angerer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wenona Angerer -sn: Angerer -description: This is Wenona Angerer's description -facsimileTelephoneNumber: +1 408 984-7030 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 950-9422 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: AngererW -givenName: Wenona -mail: AngererW@759d634715d84fd98852f9030d6bb1fd.bitwarden.com -carLicense: B8SAGO -departmentNumber: 2868 -employeeType: Contract -homePhone: +1 408 278-3123 -initials: W. A. -mobile: +1 408 783-5981 -pager: +1 408 411-1521 -roomNumber: 8258 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristien Kikuta -sn: Kikuta -description: This is Kristien Kikuta's description -facsimileTelephoneNumber: +1 206 690-2047 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 659-3180 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: KikutaK -givenName: Kristien -mail: KikutaK@1b4bc37ec1234668beb3a7c3f6a14e94.bitwarden.com -carLicense: 376JUD -departmentNumber: 5065 -employeeType: Contract -homePhone: +1 206 280-2708 -initials: K. K. -mobile: +1 206 488-2362 -pager: +1 206 308-4818 -roomNumber: 8018 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Arjun Passier,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arjun Passier -sn: Passier -description: This is Arjun Passier's description -facsimileTelephoneNumber: +1 206 112-3130 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 621-8062 -title: Supreme Peons Stooge -userPassword: Password1 -uid: PassierA -givenName: Arjun -mail: PassierA@d52d40abb69a4bfc85f5db20e538bb0e.bitwarden.com -carLicense: T9I5MH -departmentNumber: 3308 -employeeType: Normal -homePhone: +1 206 389-6136 -initials: A. P. -mobile: +1 206 393-4659 -pager: +1 206 698-8194 -roomNumber: 9961 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dat Asgharzadeh -sn: Asgharzadeh -description: This is Dat Asgharzadeh's description -facsimileTelephoneNumber: +1 408 945-9978 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 529-7104 -title: Associate Payroll Evangelist -userPassword: Password1 -uid: AsgharzD -givenName: Dat -mail: AsgharzD@90c585b5539b419a977fd9fb6fa21443.bitwarden.com -carLicense: OC7M1K -departmentNumber: 5860 -employeeType: Normal -homePhone: +1 408 377-7050 -initials: D. A. -mobile: +1 408 881-6075 -pager: +1 408 774-4688 -roomNumber: 9686 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viviyan Ballinger -sn: Ballinger -description: This is Viviyan Ballinger's description -facsimileTelephoneNumber: +1 408 682-7536 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 728-6528 -title: Chief Administrative Punk -userPassword: Password1 -uid: BallingV -givenName: Viviyan -mail: BallingV@781f1406846947ac8e77d85a552d214c.bitwarden.com -carLicense: YJWMD5 -departmentNumber: 6518 -employeeType: Normal -homePhone: +1 408 679-5229 -initials: V. B. -mobile: +1 408 166-8463 -pager: +1 408 829-4107 -roomNumber: 9232 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kas Breedlove,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kas Breedlove -sn: Breedlove -description: This is Kas Breedlove's description -facsimileTelephoneNumber: +1 213 378-1908 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 160-7175 -title: Supreme Administrative President -userPassword: Password1 -uid: BreedloK -givenName: Kas -mail: BreedloK@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com -carLicense: MKSKPB -departmentNumber: 5557 -employeeType: Contract -homePhone: +1 213 519-5543 -initials: K. B. -mobile: +1 213 492-1608 -pager: +1 213 159-2606 -roomNumber: 9355 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rycca Earnhardt -sn: Earnhardt -description: This is Rycca Earnhardt's description -facsimileTelephoneNumber: +1 510 944-1464 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 510 456-1709 -title: Supreme Payroll Czar -userPassword: Password1 -uid: EarnharR -givenName: Rycca -mail: EarnharR@969884d3e1084598a17f4ef0a3aedf04.bitwarden.com -carLicense: 6EESHE -departmentNumber: 3677 -employeeType: Normal -homePhone: +1 510 951-8423 -initials: R. E. -mobile: +1 510 439-6490 -pager: +1 510 521-4071 -roomNumber: 9660 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hoog Trinidad,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hoog Trinidad -sn: Trinidad -description: This is Hoog Trinidad's description -facsimileTelephoneNumber: +1 818 252-4082 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 864-6539 -title: Junior Peons Visionary -userPassword: Password1 -uid: TrinidaH -givenName: Hoog -mail: TrinidaH@1dd14c35e95e43649cc03bb29ef8e910.bitwarden.com -carLicense: Y1186N -departmentNumber: 7767 -employeeType: Contract -homePhone: +1 818 912-5555 -initials: H. T. -mobile: +1 818 912-9518 -pager: +1 818 125-6443 -roomNumber: 8728 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jesselyn Lindholm,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jesselyn Lindholm -sn: Lindholm -description: This is Jesselyn Lindholm's description -facsimileTelephoneNumber: +1 213 813-1865 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 601-5121 -title: Supreme Management Warrior -userPassword: Password1 -uid: LindholJ -givenName: Jesselyn -mail: LindholJ@fab69171647048c9ab39ecbf968a6353.bitwarden.com -carLicense: 2FCI8G -departmentNumber: 1635 -employeeType: Normal -homePhone: +1 213 640-1897 -initials: J. L. -mobile: +1 213 395-7631 -pager: +1 213 363-7951 -roomNumber: 9889 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nesta Papalitskas -sn: Papalitskas -description: This is Nesta Papalitskas's description -facsimileTelephoneNumber: +1 213 571-2162 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 213 797-4998 -title: Chief Payroll Punk -userPassword: Password1 -uid: PapalitN -givenName: Nesta -mail: PapalitN@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com -carLicense: AUMLJC -departmentNumber: 5169 -employeeType: Employee -homePhone: +1 213 614-1357 -initials: N. P. -mobile: +1 213 744-4268 -pager: +1 213 168-7990 -roomNumber: 9528 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maire Lattanzi -sn: Lattanzi -description: This is Maire Lattanzi's description -facsimileTelephoneNumber: +1 213 445-4537 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 239-8926 -title: Supreme Human Resources Director -userPassword: Password1 -uid: LattanzM -givenName: Maire -mail: LattanzM@9e5927de12b74c838a654764d2be5fec.bitwarden.com -carLicense: 5JT14C -departmentNumber: 1249 -employeeType: Contract -homePhone: +1 213 262-8639 -initials: M. L. -mobile: +1 213 162-3203 -pager: +1 213 701-2316 -roomNumber: 8469 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Claude Sylvie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claude Sylvie -sn: Sylvie -description: This is Claude Sylvie's description -facsimileTelephoneNumber: +1 213 266-3811 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 442-1451 -title: Chief Peons Consultant -userPassword: Password1 -uid: SylvieC -givenName: Claude -mail: SylvieC@aea6eb544f4d4871a97763e8c506ad64.bitwarden.com -carLicense: O18140 -departmentNumber: 4951 -employeeType: Employee -homePhone: +1 213 540-4449 -initials: C. S. -mobile: +1 213 466-2651 -pager: +1 213 180-9345 -roomNumber: 9048 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yihban Malkiewicz -sn: Malkiewicz -description: This is Yihban Malkiewicz's description -facsimileTelephoneNumber: +1 818 119-1751 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 987-6596 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: MalkiewY -givenName: Yihban -mail: MalkiewY@afdb909799524b7dbed21ce8a882a129.bitwarden.com -carLicense: MSG6RF -departmentNumber: 4249 -employeeType: Employee -homePhone: +1 818 873-3269 -initials: Y. M. -mobile: +1 818 923-7859 -pager: +1 818 146-4103 -roomNumber: 8508 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HonKong Miltenburg -sn: Miltenburg -description: This is HonKong Miltenburg's description -facsimileTelephoneNumber: +1 415 417-8600 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 940-3008 -title: Chief Payroll Czar -userPassword: Password1 -uid: MiltenbH -givenName: HonKong -mail: MiltenbH@dbff573db07a4ff3be645ffc89fde555.bitwarden.com -carLicense: C5A1P7 -departmentNumber: 2238 -employeeType: Contract -homePhone: +1 415 579-5732 -initials: H. M. -mobile: +1 415 691-5757 -pager: +1 415 947-8222 -roomNumber: 8008 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Matelda Wrigley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matelda Wrigley -sn: Wrigley -description: This is Matelda Wrigley's description -facsimileTelephoneNumber: +1 415 394-8629 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 415 638-4879 -title: Junior Product Development Director -userPassword: Password1 -uid: WrigleyM -givenName: Matelda -mail: WrigleyM@d823092534664221878b6c81b822deac.bitwarden.com -carLicense: 1GJXSB -departmentNumber: 1191 -employeeType: Normal -homePhone: +1 415 584-2808 -initials: M. W. -mobile: +1 415 838-4828 -pager: +1 415 650-5618 -roomNumber: 8197 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Emil Kaden,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emil Kaden -sn: Kaden -description: This is Emil Kaden's description -facsimileTelephoneNumber: +1 213 596-6484 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 213 464-6204 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: KadenE -givenName: Emil -mail: KadenE@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com -carLicense: 6DC8AN -departmentNumber: 4019 -employeeType: Employee -homePhone: +1 213 442-8463 -initials: E. K. -mobile: +1 213 159-1288 -pager: +1 213 238-1475 -roomNumber: 8095 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wing Miranda,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wing Miranda -sn: Miranda -description: This is Wing Miranda's description -facsimileTelephoneNumber: +1 408 642-1506 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 318-8731 -title: Associate Product Development Admin -userPassword: Password1 -uid: MirandaW -givenName: Wing -mail: MirandaW@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com -carLicense: GQERK7 -departmentNumber: 7622 -employeeType: Contract -homePhone: +1 408 795-9798 -initials: W. M. -mobile: +1 408 630-9116 -pager: +1 408 604-8581 -roomNumber: 8089 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KaiMing Kelkar -sn: Kelkar -description: This is KaiMing Kelkar's description -facsimileTelephoneNumber: +1 415 574-8673 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 821-5969 -title: Associate Administrative Madonna -userPassword: Password1 -uid: KelkarK -givenName: KaiMing -mail: KelkarK@d92310a44588497c8705ba02cb8243c4.bitwarden.com -carLicense: GN6A01 -departmentNumber: 5519 -employeeType: Employee -homePhone: +1 415 692-4859 -initials: K. K. -mobile: +1 415 449-4684 -pager: +1 415 806-3089 -roomNumber: 9587 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Goldina Kho,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Goldina Kho -sn: Kho -description: This is Goldina Kho's description -facsimileTelephoneNumber: +1 213 327-8693 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 204-6283 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: KhoG -givenName: Goldina -mail: KhoG@252ca323f23d480494044efd13f580ea.bitwarden.com -carLicense: FSL6PD -departmentNumber: 1513 -employeeType: Contract -homePhone: +1 213 785-4913 -initials: G. K. -mobile: +1 213 331-2165 -pager: +1 213 137-5193 -roomNumber: 8909 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sidoney Dugas,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sidoney Dugas -sn: Dugas -description: This is Sidoney Dugas's description -facsimileTelephoneNumber: +1 206 569-2407 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 206 393-6198 -title: Chief Administrative Warrior -userPassword: Password1 -uid: DugasS -givenName: Sidoney -mail: DugasS@ef13a1a456c847c69f1a9c739972d1e5.bitwarden.com -carLicense: 19BUMF -departmentNumber: 1876 -employeeType: Normal -homePhone: +1 206 671-8037 -initials: S. D. -mobile: +1 206 504-9678 -pager: +1 206 958-5984 -roomNumber: 8387 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Alis Tu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alis Tu -sn: Tu -description: This is Alis Tu's description -facsimileTelephoneNumber: +1 510 176-3247 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 959-5154 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: TuA -givenName: Alis -mail: TuA@812ac6eec5fc41f6927bb014fa31a1aa.bitwarden.com -carLicense: 9YUAQE -departmentNumber: 5970 -employeeType: Employee -homePhone: +1 510 849-3985 -initials: A. T. -mobile: +1 510 180-8503 -pager: +1 510 580-6073 -roomNumber: 9140 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nawa Higgins,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nawa Higgins -sn: Higgins -description: This is Nawa Higgins's description -facsimileTelephoneNumber: +1 415 685-1635 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 185-8336 -title: Associate Payroll Artist -userPassword: Password1 -uid: HigginsN -givenName: Nawa -mail: HigginsN@214ae0176652446c8744ad51330039e1.bitwarden.com -carLicense: WC1SBU -departmentNumber: 5187 -employeeType: Contract -homePhone: +1 415 923-1606 -initials: N. H. -mobile: +1 415 512-7654 -pager: +1 415 594-4853 -roomNumber: 8725 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nataly McHale,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nataly McHale -sn: McHale -description: This is Nataly McHale's description -facsimileTelephoneNumber: +1 818 292-1039 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 208-7503 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: McHaleN -givenName: Nataly -mail: McHaleN@caa3ffea53f4420d823eecb65d43ca16.bitwarden.com -carLicense: 1EVNV7 -departmentNumber: 7149 -employeeType: Normal -homePhone: +1 818 935-7118 -initials: N. M. -mobile: +1 818 246-9732 -pager: +1 818 883-6794 -roomNumber: 8472 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjy Kuryliak -sn: Kuryliak -description: This is Marjy Kuryliak's description -facsimileTelephoneNumber: +1 510 587-3810 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 510 257-3577 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: KuryliaM -givenName: Marjy -mail: KuryliaM@1e13847ccc3c4ff8a4232936d21cc7f6.bitwarden.com -carLicense: FQXX5X -departmentNumber: 1861 -employeeType: Employee -homePhone: +1 510 949-7673 -initials: M. K. -mobile: +1 510 456-2884 -pager: +1 510 566-2188 -roomNumber: 9423 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sabuson Keels,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabuson Keels -sn: Keels -description: This is Sabuson Keels's description -facsimileTelephoneNumber: +1 415 365-1607 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 599-7032 -title: Chief Administrative Director -userPassword: Password1 -uid: KeelsS -givenName: Sabuson -mail: KeelsS@7b035316d5664530a5da8e7325de2d50.bitwarden.com -carLicense: 8Y1PRI -departmentNumber: 5766 -employeeType: Contract -homePhone: +1 415 981-4317 -initials: S. K. -mobile: +1 415 205-9181 -pager: +1 415 507-7948 -roomNumber: 8819 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Katrina Caltrider,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katrina Caltrider -sn: Caltrider -description: This is Katrina Caltrider's description -facsimileTelephoneNumber: +1 213 818-1447 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 133-3816 -title: Supreme Management Engineer -userPassword: Password1 -uid: CaltridK -givenName: Katrina -mail: CaltridK@8a1c67e1f59c4e798b777fb9f5200904.bitwarden.com -carLicense: YUMDJ0 -departmentNumber: 7525 -employeeType: Employee -homePhone: +1 213 929-3223 -initials: K. C. -mobile: +1 213 534-5749 -pager: +1 213 656-1966 -roomNumber: 8949 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fwpreg Shastry -sn: Shastry -description: This is Fwpreg Shastry's description -facsimileTelephoneNumber: +1 206 236-2086 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 210-5929 -title: Chief Payroll Consultant -userPassword: Password1 -uid: ShastryF -givenName: Fwpreg -mail: ShastryF@4df07dd4fa25468db57d445d7d91ad8d.bitwarden.com -carLicense: XEAYC4 -departmentNumber: 9277 -employeeType: Normal -homePhone: +1 206 557-2783 -initials: F. S. -mobile: +1 206 359-3465 -pager: +1 206 244-5019 -roomNumber: 8607 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mukul Gaudon -sn: Gaudon -description: This is Mukul Gaudon's description -facsimileTelephoneNumber: +1 408 117-1860 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 144-4491 -title: Chief Human Resources Punk -userPassword: Password1 -uid: GaudonM -givenName: Mukul -mail: GaudonM@1738c63bcf0b4428826fa6ef01719925.bitwarden.com -carLicense: EVOSN1 -departmentNumber: 6409 -employeeType: Normal -homePhone: +1 408 534-1694 -initials: M. G. -mobile: +1 408 707-4950 -pager: +1 408 217-7901 -roomNumber: 9591 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tadayuki Jawor -sn: Jawor -description: This is Tadayuki Jawor's description -facsimileTelephoneNumber: +1 415 463-2776 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 729-1115 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: JaworT -givenName: Tadayuki -mail: JaworT@6f9e5b17880448d1a76afa2847f8b87a.bitwarden.com -carLicense: U7I39F -departmentNumber: 5587 -employeeType: Normal -homePhone: +1 415 398-5152 -initials: T. J. -mobile: +1 415 359-6788 -pager: +1 415 489-4600 -roomNumber: 9533 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Damon Bakhach,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Damon Bakhach -sn: Bakhach -description: This is Damon Bakhach's description -facsimileTelephoneNumber: +1 804 943-8099 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 512-2255 -title: Chief Peons Stooge -userPassword: Password1 -uid: BakhachD -givenName: Damon -mail: BakhachD@30b2d6e7a1b342d0a3a8e7a402acef7a.bitwarden.com -carLicense: S8UOCK -departmentNumber: 3721 -employeeType: Normal -homePhone: +1 804 657-8641 -initials: D. B. -mobile: +1 804 804-2657 -pager: +1 804 927-9745 -roomNumber: 9554 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Monroe Ghulati,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nevein Paar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nevein Paar -sn: Paar -description: This is Nevein Paar's description -facsimileTelephoneNumber: +1 818 834-6506 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 818 739-7441 -title: Master Janitorial Architect -userPassword: Password1 -uid: PaarN -givenName: Nevein -mail: PaarN@1f90981d05564d038a0c312379adcdd2.bitwarden.com -carLicense: 5BGO2N -departmentNumber: 2377 -employeeType: Normal -homePhone: +1 818 150-9145 -initials: N. P. -mobile: +1 818 609-2938 -pager: +1 818 966-2880 -roomNumber: 8693 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eliezer Mendorf,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eliezer Mendorf -sn: Mendorf -description: This is Eliezer Mendorf's description -facsimileTelephoneNumber: +1 510 633-3769 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 510 736-6590 -title: Junior Management Manager -userPassword: Password1 -uid: MendorfE -givenName: Eliezer -mail: MendorfE@f3ba3b64f9604f3595f8d4c1f4702c4b.bitwarden.com -carLicense: T5BCBR -departmentNumber: 2317 -employeeType: Contract -homePhone: +1 510 865-5759 -initials: E. M. -mobile: +1 510 454-8109 -pager: +1 510 177-4333 -roomNumber: 9407 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Saree Salva,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saree Salva -sn: Salva -description: This is Saree Salva's description -facsimileTelephoneNumber: +1 415 490-9656 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 514-2963 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: SalvaS -givenName: Saree -mail: SalvaS@a225cef4c330412cbb98f5dd2e46ebe8.bitwarden.com -carLicense: JTHGP3 -departmentNumber: 4927 -employeeType: Normal -homePhone: +1 415 926-5549 -initials: S. S. -mobile: +1 415 597-9506 -pager: +1 415 286-7792 -roomNumber: 9638 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: FeiYin Gilchrist -sn: Gilchrist -description: This is FeiYin Gilchrist's description -facsimileTelephoneNumber: +1 510 158-4685 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 510 102-4877 -title: Chief Product Development Sales Rep -userPassword: Password1 -uid: GilchriF -givenName: FeiYin -mail: GilchriF@7b8abab8f82c407a9106010ea3eb996b.bitwarden.com -carLicense: H541QM -departmentNumber: 9253 -employeeType: Normal -homePhone: +1 510 868-2766 -initials: F. G. -mobile: +1 510 501-7980 -pager: +1 510 171-5664 -roomNumber: 8963 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mary Bayno,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mary Bayno -sn: Bayno -description: This is Mary Bayno's description -facsimileTelephoneNumber: +1 510 709-5011 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 505-6453 -title: Master Payroll Architect -userPassword: Password1 -uid: BaynoM -givenName: Mary -mail: BaynoM@8dafa8a4191b4d2aa4e275b60f4da3c2.bitwarden.com -carLicense: 06A2IH -departmentNumber: 1607 -employeeType: Employee -homePhone: +1 510 866-2969 -initials: M. B. -mobile: +1 510 443-7894 -pager: +1 510 388-6691 -roomNumber: 9994 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valentia Sherrer -sn: Sherrer -description: This is Valentia Sherrer's description -facsimileTelephoneNumber: +1 213 162-1253 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 975-7806 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: SherrerV -givenName: Valentia -mail: SherrerV@bf1cabd600c14df9900d0656b18e2dcb.bitwarden.com -carLicense: EHNQNB -departmentNumber: 9007 -employeeType: Contract -homePhone: +1 213 865-8580 -initials: V. S. -mobile: +1 213 677-9616 -pager: +1 213 745-7165 -roomNumber: 8306 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arnie McMillion,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arnie McMillion -sn: McMillion -description: This is Arnie McMillion's description -facsimileTelephoneNumber: +1 206 518-3421 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 804-3330 -title: Supreme Administrative Czar -userPassword: Password1 -uid: McMilliA -givenName: Arnie -mail: McMilliA@0700c2d0d09f457b9bacf4bb0ffad4cf.bitwarden.com -carLicense: VET1VI -departmentNumber: 2510 -employeeType: Normal -homePhone: +1 206 180-5395 -initials: A. M. -mobile: +1 206 413-7652 -pager: +1 206 279-4652 -roomNumber: 9650 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheelagh Ploof -sn: Ploof -description: This is Sheelagh Ploof's description -facsimileTelephoneNumber: +1 415 488-9071 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 754-4415 -title: Associate Payroll Pinhead -userPassword: Password1 -uid: PloofS -givenName: Sheelagh -mail: PloofS@a613f2cb592142719b25e5b4ad386bd2.bitwarden.com -carLicense: XMYXJT -departmentNumber: 1195 -employeeType: Contract -homePhone: +1 415 891-9548 -initials: S. P. -mobile: +1 415 240-7880 -pager: +1 415 163-9858 -roomNumber: 8692 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Salaidh Wery,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salaidh Wery -sn: Wery -description: This is Salaidh Wery's description -facsimileTelephoneNumber: +1 510 274-3010 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 510 424-5016 -title: Chief Human Resources Figurehead -userPassword: Password1 -uid: WeryS -givenName: Salaidh -mail: WeryS@70258a3d14294772adb31cb152ffdee6.bitwarden.com -carLicense: DPAS8T -departmentNumber: 5146 -employeeType: Employee -homePhone: +1 510 546-4765 -initials: S. W. -mobile: +1 510 723-1373 -pager: +1 510 500-4011 -roomNumber: 8946 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keelia Hoddinott -sn: Hoddinott -description: This is Keelia Hoddinott's description -facsimileTelephoneNumber: +1 804 127-2400 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 873-9537 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: HoddinoK -givenName: Keelia -mail: HoddinoK@a9638d8de81a4990b97d38b8ec08064b.bitwarden.com -carLicense: VVJLK4 -departmentNumber: 5737 -employeeType: Contract -homePhone: +1 804 559-7158 -initials: K. H. -mobile: +1 804 457-7434 -pager: +1 804 952-4550 -roomNumber: 9397 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hq Bracy,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hq Bracy -sn: Bracy -description: This is Hq Bracy's description -facsimileTelephoneNumber: +1 415 100-3998 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 731-4268 -title: Junior Product Testing Director -userPassword: Password1 -uid: BracyH -givenName: Hq -mail: BracyH@ec2712850890400a82cf449b7931685a.bitwarden.com -carLicense: O890RV -departmentNumber: 6066 -employeeType: Normal -homePhone: +1 415 895-2445 -initials: H. B. -mobile: +1 415 765-5635 -pager: +1 415 111-1633 -roomNumber: 9108 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Philippa Sanson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Philippa Sanson -sn: Sanson -description: This is Philippa Sanson's description -facsimileTelephoneNumber: +1 415 259-9207 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 415 740-5451 -title: Supreme Product Development Consultant -userPassword: Password1 -uid: SansonP -givenName: Philippa -mail: SansonP@5487b7f8a209497fbfe4cb0aaa226950.bitwarden.com -carLicense: AHEUT0 -departmentNumber: 7347 -employeeType: Normal -homePhone: +1 415 189-2751 -initials: P. S. -mobile: +1 415 394-9910 -pager: +1 415 860-1421 -roomNumber: 9328 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donn Chirachanchai -sn: Chirachanchai -description: This is Donn Chirachanchai's description -facsimileTelephoneNumber: +1 206 484-1056 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 622-9763 -title: Supreme Product Development Admin -userPassword: Password1 -uid: ChirachD -givenName: Donn -mail: ChirachD@c385ba2c8b694dba82e626dc336023e5.bitwarden.com -carLicense: M8NK5W -departmentNumber: 3554 -employeeType: Contract -homePhone: +1 206 583-3016 -initials: D. C. -mobile: +1 206 906-3271 -pager: +1 206 883-8496 -roomNumber: 8843 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Karrah Kielstra,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karrah Kielstra -sn: Kielstra -description: This is Karrah Kielstra's description -facsimileTelephoneNumber: +1 804 701-5481 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 804 449-1109 -title: Master Management Technician -userPassword: Password1 -uid: KielstrK -givenName: Karrah -mail: KielstrK@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com -carLicense: M3NS90 -departmentNumber: 4325 -employeeType: Employee -homePhone: +1 804 877-5683 -initials: K. K. -mobile: +1 804 708-4111 -pager: +1 804 888-4791 -roomNumber: 9520 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Saloma Brauer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saloma Brauer -sn: Brauer -description: This is Saloma Brauer's description -facsimileTelephoneNumber: +1 818 335-7080 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 846-8265 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: BrauerS -givenName: Saloma -mail: BrauerS@570987c9633d4a6fa09773cb5695f8f5.bitwarden.com -carLicense: N84NXG -departmentNumber: 5585 -employeeType: Contract -homePhone: +1 818 284-7734 -initials: S. B. -mobile: +1 818 467-2988 -pager: +1 818 723-5906 -roomNumber: 8439 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ezmeralda Boreham -sn: Boreham -description: This is Ezmeralda Boreham's description -facsimileTelephoneNumber: +1 408 347-4988 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 408 938-9825 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: BorehamE -givenName: Ezmeralda -mail: BorehamE@e02ff45a3d1d4535aaac64a1cea6a68b.bitwarden.com -carLicense: 0DA8XD -departmentNumber: 5662 -employeeType: Employee -homePhone: +1 408 990-1403 -initials: E. B. -mobile: +1 408 924-7821 -pager: +1 408 559-9361 -roomNumber: 8019 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cheuk Mayr,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cheuk Mayr -sn: Mayr -description: This is Cheuk Mayr's description -facsimileTelephoneNumber: +1 510 680-4060 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 570-4183 -title: Chief Management Assistant -userPassword: Password1 -uid: MayrC -givenName: Cheuk -mail: MayrC@f7890076c6f84028b85e2b19409fa5f9.bitwarden.com -carLicense: EKXHKR -departmentNumber: 1362 -employeeType: Employee -homePhone: +1 510 739-1267 -initials: C. M. -mobile: +1 510 634-9507 -pager: +1 510 716-1227 -roomNumber: 9285 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Verene Misslitz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Verene Misslitz -sn: Misslitz -description: This is Verene Misslitz's description -facsimileTelephoneNumber: +1 213 754-6651 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 276-9017 -title: Junior Human Resources Sales Rep -userPassword: Password1 -uid: MisslitV -givenName: Verene -mail: MisslitV@d6cd96cc69964504b58689aca6bae5e4.bitwarden.com -carLicense: TGP6TJ -departmentNumber: 1356 -employeeType: Contract -homePhone: +1 213 347-3798 -initials: V. M. -mobile: +1 213 314-5465 -pager: +1 213 335-9332 -roomNumber: 8785 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Doe Codack,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doe Codack -sn: Codack -description: This is Doe Codack's description -facsimileTelephoneNumber: +1 804 480-4873 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 804 430-8033 -title: Associate Janitorial Manager -userPassword: Password1 -uid: CodackD -givenName: Doe -mail: CodackD@e0d7cf99a3294f3e89a0d61f128890ba.bitwarden.com -carLicense: 4SRKNN -departmentNumber: 5875 -employeeType: Contract -homePhone: +1 804 945-6742 -initials: D. C. -mobile: +1 804 332-8155 -pager: +1 804 279-3047 -roomNumber: 9076 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lowell Seufert,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lowell Seufert -sn: Seufert -description: This is Lowell Seufert's description -facsimileTelephoneNumber: +1 510 239-3883 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 510 136-3466 -title: Chief Administrative Assistant -userPassword: Password1 -uid: SeufertL -givenName: Lowell -mail: SeufertL@2701f21728624e23b32e7e4a717079a5.bitwarden.com -carLicense: BOPLL4 -departmentNumber: 8461 -employeeType: Contract -homePhone: +1 510 781-9497 -initials: L. S. -mobile: +1 510 675-7415 -pager: +1 510 689-1905 -roomNumber: 8364 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Willa Unkefer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willa Unkefer -sn: Unkefer -description: This is Willa Unkefer's description -facsimileTelephoneNumber: +1 818 376-7343 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 591-8012 -title: Master Peons Architect -userPassword: Password1 -uid: UnkeferW -givenName: Willa -mail: UnkeferW@a9c3295ea2f347439f03376e321e4733.bitwarden.com -carLicense: CHMPX2 -departmentNumber: 1333 -employeeType: Employee -homePhone: +1 818 132-5144 -initials: W. U. -mobile: +1 818 466-4219 -pager: +1 818 899-7391 -roomNumber: 9831 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bep Wassel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bep Wassel -sn: Wassel -description: This is Bep Wassel's description -facsimileTelephoneNumber: +1 206 328-4653 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 793-1201 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: WasselB -givenName: Bep -mail: WasselB@a40a845ea1cc4e22b719786373ec54be.bitwarden.com -carLicense: 7ISQX3 -departmentNumber: 1914 -employeeType: Contract -homePhone: +1 206 490-3404 -initials: B. W. -mobile: +1 206 973-9761 -pager: +1 206 396-4966 -roomNumber: 8711 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nyssa Trittler -sn: Trittler -description: This is Nyssa Trittler's description -facsimileTelephoneNumber: +1 804 916-1417 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 885-2516 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: TrittleN -givenName: Nyssa -mail: TrittleN@3e7e926538044b62b52b536bb87c0044.bitwarden.com -carLicense: 8NTPL0 -departmentNumber: 8949 -employeeType: Contract -homePhone: +1 804 973-1814 -initials: N. T. -mobile: +1 804 330-6993 -pager: +1 804 190-5448 -roomNumber: 9074 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janet Pagliarulo -sn: Pagliarulo -description: This is Janet Pagliarulo's description -facsimileTelephoneNumber: +1 415 474-3663 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 599-4216 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: PagliarJ -givenName: Janet -mail: PagliarJ@66d6a653ea384626bd4c52723439804a.bitwarden.com -carLicense: HTQX4M -departmentNumber: 9760 -employeeType: Contract -homePhone: +1 415 516-1990 -initials: J. P. -mobile: +1 415 402-1284 -pager: +1 415 974-4749 -roomNumber: 8598 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hollyanne Goupil -sn: Goupil -description: This is Hollyanne Goupil's description -facsimileTelephoneNumber: +1 510 628-6347 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 102-6764 -title: Master Human Resources Manager -userPassword: Password1 -uid: GoupilH -givenName: Hollyanne -mail: GoupilH@361f4dedfe9a4aada39bf693c8c1bc40.bitwarden.com -carLicense: 2WQE2J -departmentNumber: 9318 -employeeType: Normal -homePhone: +1 510 628-2299 -initials: H. G. -mobile: +1 510 379-9322 -pager: +1 510 189-6738 -roomNumber: 8521 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Yuri McCullen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yuri McCullen -sn: McCullen -description: This is Yuri McCullen's description -facsimileTelephoneNumber: +1 408 877-6883 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 875-5340 -title: Master Administrative Fellow -userPassword: Password1 -uid: McCulleY -givenName: Yuri -mail: McCulleY@3fc70e948ed143488b3a65dc900da1f7.bitwarden.com -carLicense: JSGQ65 -departmentNumber: 5301 -employeeType: Normal -homePhone: +1 408 845-8756 -initials: Y. M. -mobile: +1 408 950-7222 -pager: +1 408 567-1152 -roomNumber: 9159 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Genevieve Licata,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Genevieve Licata -sn: Licata -description: This is Genevieve Licata's description -facsimileTelephoneNumber: +1 408 860-2073 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 408 981-2810 -title: Chief Product Testing Director -userPassword: Password1 -uid: LicataG -givenName: Genevieve -mail: LicataG@29c4d99a2e804a9e9c7906925415c847.bitwarden.com -carLicense: XH2RAO -departmentNumber: 6812 -employeeType: Contract -homePhone: +1 408 751-9422 -initials: G. L. -mobile: +1 408 931-5841 -pager: +1 408 621-7770 -roomNumber: 9644 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Iseabal Pokrifcak -sn: Pokrifcak -description: This is Iseabal Pokrifcak's description -facsimileTelephoneNumber: +1 213 978-8901 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 980-9557 -title: Chief Human Resources Architect -userPassword: Password1 -uid: PokrifcI -givenName: Iseabal -mail: PokrifcI@f0da7bbf51f0472cbdc26a3d196ad9f7.bitwarden.com -carLicense: HWVUVC -departmentNumber: 4294 -employeeType: Employee -homePhone: +1 213 881-7058 -initials: I. P. -mobile: +1 213 849-7137 -pager: +1 213 878-9198 -roomNumber: 8935 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stacia Mersch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacia Mersch -sn: Mersch -description: This is Stacia Mersch's description -facsimileTelephoneNumber: +1 408 525-6183 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 858-2282 -title: Master Management Madonna -userPassword: Password1 -uid: MerschS -givenName: Stacia -mail: MerschS@ce6ea378c27b45efb4f43990327ef994.bitwarden.com -carLicense: YXLXHM -departmentNumber: 3275 -employeeType: Contract -homePhone: +1 408 557-7593 -initials: S. M. -mobile: +1 408 270-1997 -pager: +1 408 409-4123 -roomNumber: 9061 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Opal Tatemichi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opal Tatemichi -sn: Tatemichi -description: This is Opal Tatemichi's description -facsimileTelephoneNumber: +1 415 839-5018 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 508-7756 -title: Associate Administrative Mascot -userPassword: Password1 -uid: TatemicO -givenName: Opal -mail: TatemicO@655d3e1ee97a47bbb182f0f8f120b20e.bitwarden.com -carLicense: 254UV3 -departmentNumber: 7746 -employeeType: Contract -homePhone: +1 415 113-2952 -initials: O. T. -mobile: +1 415 363-4172 -pager: +1 415 130-1337 -roomNumber: 8463 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nash Hemphill,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nash Hemphill -sn: Hemphill -description: This is Nash Hemphill's description -facsimileTelephoneNumber: +1 206 990-3669 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 922-6420 -title: Chief Administrative Stooge -userPassword: Password1 -uid: HemphilN -givenName: Nash -mail: HemphilN@d457e1580197417888cc4a9c93599471.bitwarden.com -carLicense: MQRK1D -departmentNumber: 6396 -employeeType: Employee -homePhone: +1 206 203-6468 -initials: N. H. -mobile: +1 206 363-7205 -pager: +1 206 723-1985 -roomNumber: 8737 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Amir McKillop,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amir McKillop -sn: McKillop -description: This is Amir McKillop's description -facsimileTelephoneNumber: +1 213 255-3553 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 465-6277 -title: Chief Administrative President -userPassword: Password1 -uid: McKilloA -givenName: Amir -mail: McKilloA@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com -carLicense: CUKSHJ -departmentNumber: 4693 -employeeType: Normal -homePhone: +1 213 535-1128 -initials: A. M. -mobile: +1 213 411-6576 -pager: +1 213 696-7393 -roomNumber: 8127 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nam Nentwich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nam Nentwich -sn: Nentwich -description: This is Nam Nentwich's description -facsimileTelephoneNumber: +1 510 847-3401 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 510 391-1167 -title: Chief Product Testing Engineer -userPassword: Password1 -uid: NentwicN -givenName: Nam -mail: NentwicN@fa1c0131e1b849f6a92c26986c36bbfc.bitwarden.com -carLicense: AUY01B -departmentNumber: 8319 -employeeType: Contract -homePhone: +1 510 790-9825 -initials: N. N. -mobile: +1 510 913-9611 -pager: +1 510 858-1900 -roomNumber: 8197 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabrina Lambregts -sn: Lambregts -description: This is Sabrina Lambregts's description -facsimileTelephoneNumber: +1 510 862-5175 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 273-8472 -title: Master Payroll Architect -userPassword: Password1 -uid: LambregS -givenName: Sabrina -mail: LambregS@93250e1458e9462fb7830f342f899a75.bitwarden.com -carLicense: 8SW4RD -departmentNumber: 5896 -employeeType: Contract -homePhone: +1 510 717-7290 -initials: S. L. -mobile: +1 510 795-2605 -pager: +1 510 359-9642 -roomNumber: 8794 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Arvin Gourley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arvin Gourley -sn: Gourley -description: This is Arvin Gourley's description -facsimileTelephoneNumber: +1 804 386-3621 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 208-5879 -title: Chief Product Testing Madonna -userPassword: Password1 -uid: GourleyA -givenName: Arvin -mail: GourleyA@87d1f4abbb344e5db58980701a5ab736.bitwarden.com -carLicense: J2YN1D -departmentNumber: 4234 -employeeType: Contract -homePhone: +1 804 675-3594 -initials: A. G. -mobile: +1 804 955-5478 -pager: +1 804 984-2033 -roomNumber: 8566 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Amara Wichers,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amara Wichers -sn: Wichers -description: This is Amara Wichers's description -facsimileTelephoneNumber: +1 804 544-1398 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 804 221-5453 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: WichersA -givenName: Amara -mail: WichersA@6b9e684fa59647e280b75516ef2c9723.bitwarden.com -carLicense: 3VXSHP -departmentNumber: 1365 -employeeType: Contract -homePhone: +1 804 397-4745 -initials: A. W. -mobile: +1 804 745-2474 -pager: +1 804 534-1255 -roomNumber: 8049 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ellen Dada,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellen Dada -sn: Dada -description: This is Ellen Dada's description -facsimileTelephoneNumber: +1 818 941-3954 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 818 328-5247 -title: Chief Payroll Warrior -userPassword: Password1 -uid: DadaE -givenName: Ellen -mail: DadaE@db38fb215fc94ffcb346567c9526cb3b.bitwarden.com -carLicense: 4CH97O -departmentNumber: 6635 -employeeType: Employee -homePhone: +1 818 350-8697 -initials: E. D. -mobile: +1 818 243-8692 -pager: +1 818 742-9108 -roomNumber: 9427 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gunilla Katz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gunilla Katz -sn: Katz -description: This is Gunilla Katz's description -facsimileTelephoneNumber: +1 818 255-3756 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 818 687-3001 -title: Junior Administrative Janitor -userPassword: Password1 -uid: KatzG -givenName: Gunilla -mail: KatzG@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com -carLicense: XXJFDP -departmentNumber: 6545 -employeeType: Employee -homePhone: +1 818 968-8956 -initials: G. K. -mobile: +1 818 844-9735 -pager: +1 818 210-4380 -roomNumber: 9284 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Core Herrick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Core Herrick -sn: Herrick -description: This is Core Herrick's description -facsimileTelephoneNumber: +1 415 774-6772 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 188-6637 -title: Chief Product Testing Figurehead -userPassword: Password1 -uid: HerrickC -givenName: Core -mail: HerrickC@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com -carLicense: T5R0SF -departmentNumber: 6771 -employeeType: Normal -homePhone: +1 415 787-8789 -initials: C. H. -mobile: +1 415 574-4816 -pager: +1 415 559-5350 -roomNumber: 8464 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jack Predon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jack Predon -sn: Predon -description: This is Jack Predon's description -facsimileTelephoneNumber: +1 408 382-3430 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 637-3384 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: PredonJ -givenName: Jack -mail: PredonJ@5278466bedb347c588c1bbec6486c3cf.bitwarden.com -carLicense: WB5XG0 -departmentNumber: 1103 -employeeType: Normal -homePhone: +1 408 489-8879 -initials: J. P. -mobile: +1 408 247-3844 -pager: +1 408 326-5208 -roomNumber: 9441 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marc Pestill,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marc Pestill -sn: Pestill -description: This is Marc Pestill's description -facsimileTelephoneNumber: +1 213 107-8390 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 706-6375 -title: Chief Janitorial Punk -userPassword: Password1 -uid: PestillM -givenName: Marc -mail: PestillM@5437f19907594de59138cb373ea3e4a8.bitwarden.com -carLicense: O2GFVH -departmentNumber: 8439 -employeeType: Contract -homePhone: +1 213 736-2775 -initials: M. P. -mobile: +1 213 521-8166 -pager: +1 213 368-5411 -roomNumber: 8598 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eadie Jamensky,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eadie Jamensky -sn: Jamensky -description: This is Eadie Jamensky's description -facsimileTelephoneNumber: +1 510 715-6319 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 413-5923 -title: Junior Peons Manager -userPassword: Password1 -uid: JamenskE -givenName: Eadie -mail: JamenskE@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com -carLicense: GLX2L2 -departmentNumber: 6561 -employeeType: Normal -homePhone: +1 510 159-1462 -initials: E. J. -mobile: +1 510 239-1529 -pager: +1 510 100-9083 -roomNumber: 9692 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Corenda MacLaren,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corenda MacLaren -sn: MacLaren -description: This is Corenda MacLaren's description -facsimileTelephoneNumber: +1 213 691-8673 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 643-5112 -title: Supreme Management Stooge -userPassword: Password1 -uid: MacLareC -givenName: Corenda -mail: MacLareC@ca967230de2944e896318dde6183d882.bitwarden.com -carLicense: PUYDP8 -departmentNumber: 4523 -employeeType: Employee -homePhone: +1 213 993-3880 -initials: C. M. -mobile: +1 213 806-6288 -pager: +1 213 187-5338 -roomNumber: 8688 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Duy Starnes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duy Starnes -sn: Starnes -description: This is Duy Starnes's description -facsimileTelephoneNumber: +1 510 136-7840 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 989-3655 -title: Junior Management Architect -userPassword: Password1 -uid: StarnesD -givenName: Duy -mail: StarnesD@b696b2494a974f2a9374a73c6b7ac6f1.bitwarden.com -carLicense: 5YFOAH -departmentNumber: 1559 -employeeType: Contract -homePhone: +1 510 996-6011 -initials: D. S. -mobile: +1 510 752-4494 -pager: +1 510 465-8863 -roomNumber: 9371 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Milan Retallack,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milan Retallack -sn: Retallack -description: This is Milan Retallack's description -facsimileTelephoneNumber: +1 213 268-2813 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 213 980-1800 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: RetallaM -givenName: Milan -mail: RetallaM@bcfffdb8a9854486adad4015dba2f146.bitwarden.com -carLicense: R58UXD -departmentNumber: 4794 -employeeType: Employee -homePhone: +1 213 815-4739 -initials: M. R. -mobile: +1 213 384-3858 -pager: +1 213 805-9667 -roomNumber: 9705 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zarella Sauck,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zarella Sauck -sn: Sauck -description: This is Zarella Sauck's description -facsimileTelephoneNumber: +1 804 473-3965 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 673-2763 -title: Chief Product Testing Janitor -userPassword: Password1 -uid: SauckZ -givenName: Zarella -mail: SauckZ@f7f2463b85cb4147b2377a9dbe20738b.bitwarden.com -carLicense: 24ULYO -departmentNumber: 1565 -employeeType: Normal -homePhone: +1 804 230-1876 -initials: Z. S. -mobile: +1 804 448-6341 -pager: +1 804 254-8381 -roomNumber: 8545 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joachim Vonderscher -sn: Vonderscher -description: This is Joachim Vonderscher's description -facsimileTelephoneNumber: +1 818 387-4363 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 818 229-2592 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: VondersJ -givenName: Joachim -mail: VondersJ@ec9d8600fc36414ebc5e7beb3923c8ff.bitwarden.com -carLicense: 4H5016 -departmentNumber: 6155 -employeeType: Contract -homePhone: +1 818 149-9756 -initials: J. V. -mobile: +1 818 523-7159 -pager: +1 818 990-7800 -roomNumber: 8516 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nathalia Testsds,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nathalia Testsds -sn: Testsds -description: This is Nathalia Testsds's description -facsimileTelephoneNumber: +1 213 417-9543 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 968-8041 -title: Junior Administrative Warrior -userPassword: Password1 -uid: TestsdsN -givenName: Nathalia -mail: TestsdsN@fc1572b2278f4aeabefffc267baf4272.bitwarden.com -carLicense: UQEMJS -departmentNumber: 1505 -employeeType: Contract -homePhone: +1 213 945-8771 -initials: N. T. -mobile: +1 213 119-5246 -pager: +1 213 694-5777 -roomNumber: 8235 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Florette Nttest,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florette Nttest -sn: Nttest -description: This is Florette Nttest's description -facsimileTelephoneNumber: +1 818 206-1819 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 628-6119 -title: Junior Management Madonna -userPassword: Password1 -uid: NttestF -givenName: Florette -mail: NttestF@777f3fb506bf4a578c7c26472bf8bb1e.bitwarden.com -carLicense: QLL129 -departmentNumber: 3551 -employeeType: Contract -homePhone: +1 818 917-7181 -initials: F. N. -mobile: +1 818 848-1649 -pager: +1 818 679-8119 -roomNumber: 8040 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dari OConnor,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dari OConnor -sn: OConnor -description: This is Dari OConnor's description -facsimileTelephoneNumber: +1 510 760-4003 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 814-6491 -title: Associate Janitorial Czar -userPassword: Password1 -uid: OConnorD -givenName: Dari -mail: OConnorD@1a7bf48aaf63422bbc1338aad6a39f92.bitwarden.com -carLicense: P652N3 -departmentNumber: 4095 -employeeType: Employee -homePhone: +1 510 634-1157 -initials: D. O. -mobile: +1 510 428-6129 -pager: +1 510 399-7277 -roomNumber: 8876 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tracie Jenner,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tracie Jenner -sn: Jenner -description: This is Tracie Jenner's description -facsimileTelephoneNumber: +1 206 799-9019 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 813-4106 -title: Master Product Testing Grunt -userPassword: Password1 -uid: JennerT -givenName: Tracie -mail: JennerT@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com -carLicense: 4CAXXX -departmentNumber: 6483 -employeeType: Employee -homePhone: +1 206 155-1293 -initials: T. J. -mobile: +1 206 518-9777 -pager: +1 206 971-6843 -roomNumber: 9908 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mot Stirling,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mot Stirling -sn: Stirling -description: This is Mot Stirling's description -facsimileTelephoneNumber: +1 818 169-8237 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 560-2406 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: StirlinM -givenName: Mot -mail: StirlinM@faec862307e2490ab9310236bae87643.bitwarden.com -carLicense: 12DGHW -departmentNumber: 3211 -employeeType: Employee -homePhone: +1 818 615-5881 -initials: M. S. -mobile: +1 818 210-1064 -pager: +1 818 979-5436 -roomNumber: 8823 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Yodha Bui,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yodha Bui -sn: Bui -description: This is Yodha Bui's description -facsimileTelephoneNumber: +1 206 208-8053 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 607-1557 -title: Master Payroll Admin -userPassword: Password1 -uid: BuiY -givenName: Yodha -mail: BuiY@72665e46d4e14e57b1e63fc562993f3b.bitwarden.com -carLicense: NKVO14 -departmentNumber: 1625 -employeeType: Contract -homePhone: +1 206 745-2511 -initials: Y. B. -mobile: +1 206 116-4017 -pager: +1 206 485-3034 -roomNumber: 8350 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Clifton Murphyking,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clifton Murphyking -sn: Murphyking -description: This is Clifton Murphyking's description -facsimileTelephoneNumber: +1 206 871-9634 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 206 496-5754 -title: Junior Product Development Dictator -userPassword: Password1 -uid: MurphykC -givenName: Clifton -mail: MurphykC@2d00b4c5d94943aaab567276a570648e.bitwarden.com -carLicense: TQBJDT -departmentNumber: 7239 -employeeType: Contract -homePhone: +1 206 405-6144 -initials: C. M. -mobile: +1 206 570-5362 -pager: +1 206 950-3843 -roomNumber: 9873 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=HonKong Drago,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HonKong Drago -sn: Drago -description: This is HonKong Drago's description -facsimileTelephoneNumber: +1 206 122-4450 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 307-6626 -title: Associate Product Development Pinhead -userPassword: Password1 -uid: DragoH -givenName: HonKong -mail: DragoH@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com -carLicense: SSJOBI -departmentNumber: 6757 -employeeType: Normal -homePhone: +1 206 872-8333 -initials: H. D. -mobile: +1 206 757-9413 -pager: +1 206 806-6892 -roomNumber: 9309 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Greer Popowicz,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greer Popowicz -sn: Popowicz -description: This is Greer Popowicz's description -facsimileTelephoneNumber: +1 206 657-1253 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 845-1792 -title: Chief Management Pinhead -userPassword: Password1 -uid: PopowicG -givenName: Greer -mail: PopowicG@dfaff98f73b34c5995272b067ac045a0.bitwarden.com -carLicense: UA8CX1 -departmentNumber: 6452 -employeeType: Contract -homePhone: +1 206 779-6296 -initials: G. P. -mobile: +1 206 456-7822 -pager: +1 206 858-3915 -roomNumber: 9753 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Asia Schuette,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Asia Schuette -sn: Schuette -description: This is Asia Schuette's description -facsimileTelephoneNumber: +1 408 783-9610 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 408 744-7587 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: SchuettA -givenName: Asia -mail: SchuettA@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com -carLicense: NRIQSP -departmentNumber: 8552 -employeeType: Contract -homePhone: +1 408 838-1907 -initials: A. S. -mobile: +1 408 389-6896 -pager: +1 408 895-3964 -roomNumber: 9474 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Barbette Stotz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbette Stotz -sn: Stotz -description: This is Barbette Stotz's description -facsimileTelephoneNumber: +1 415 694-5396 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 415 499-5069 -title: Associate Peons Grunt -userPassword: Password1 -uid: StotzB -givenName: Barbette -mail: StotzB@cdcc0b3184ae42c79dae92d7659e36db.bitwarden.com -carLicense: 58R7CT -departmentNumber: 8377 -employeeType: Normal -homePhone: +1 415 972-8133 -initials: B. S. -mobile: +1 415 363-9194 -pager: +1 415 447-9962 -roomNumber: 9217 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Joyann Lun,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joyann Lun -sn: Lun -description: This is Joyann Lun's description -facsimileTelephoneNumber: +1 408 336-9252 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 736-9982 -title: Master Peons Artist -userPassword: Password1 -uid: LunJ -givenName: Joyann -mail: LunJ@0efc975bd4a14addb872414f9ef80752.bitwarden.com -carLicense: C42IF7 -departmentNumber: 5527 -employeeType: Contract -homePhone: +1 408 830-7489 -initials: J. L. -mobile: +1 408 175-8972 -pager: +1 408 498-5080 -roomNumber: 9176 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Caz Brunato,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caz Brunato -sn: Brunato -description: This is Caz Brunato's description -facsimileTelephoneNumber: +1 818 110-7069 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 700-8955 -title: Master Payroll Punk -userPassword: Password1 -uid: BrunatoC -givenName: Caz -mail: BrunatoC@d3e5ff3d0e59404589f0f6d57f8f6108.bitwarden.com -carLicense: 9FUO88 -departmentNumber: 9926 -employeeType: Contract -homePhone: +1 818 385-1073 -initials: C. B. -mobile: +1 818 871-8353 -pager: +1 818 229-1876 -roomNumber: 8314 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sorin Dipper,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sorin Dipper -sn: Dipper -description: This is Sorin Dipper's description -facsimileTelephoneNumber: +1 415 429-9189 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 415 560-1482 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: DipperS -givenName: Sorin -mail: DipperS@f87927b66c3847ba8ab3947482034e19.bitwarden.com -carLicense: QF38VI -departmentNumber: 8569 -employeeType: Employee -homePhone: +1 415 272-5336 -initials: S. D. -mobile: +1 415 214-7473 -pager: +1 415 979-2320 -roomNumber: 9171 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bucklin OKarina,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bucklin OKarina -sn: OKarina -description: This is Bucklin OKarina's description -facsimileTelephoneNumber: +1 415 987-8856 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 854-3299 -title: Master Product Development President -userPassword: Password1 -uid: OKarinaB -givenName: Bucklin -mail: OKarinaB@f05231e4b8d74927939d87b64623ee43.bitwarden.com -carLicense: 1JV8A3 -departmentNumber: 1071 -employeeType: Normal -homePhone: +1 415 548-7608 -initials: B. O. -mobile: +1 415 896-3659 -pager: +1 415 616-5800 -roomNumber: 9404 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tuan Pannell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tuan Pannell -sn: Pannell -description: This is Tuan Pannell's description -facsimileTelephoneNumber: +1 213 248-1194 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 251-1356 -title: Chief Administrative Writer -userPassword: Password1 -uid: PannellT -givenName: Tuan -mail: PannellT@4afa8343c8fe499bbf69af9cea3fa9e0.bitwarden.com -carLicense: DC9HO6 -departmentNumber: 5921 -employeeType: Normal -homePhone: +1 213 611-9232 -initials: T. P. -mobile: +1 213 922-6923 -pager: +1 213 304-3587 -roomNumber: 8544 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Neda Reece,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neda Reece -sn: Reece -description: This is Neda Reece's description -facsimileTelephoneNumber: +1 804 584-4565 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 146-8439 -title: Associate Product Development Admin -userPassword: Password1 -uid: ReeceN -givenName: Neda -mail: ReeceN@57acdd50faae453481ecda7f42cf245e.bitwarden.com -carLicense: RUI0JD -departmentNumber: 5418 -employeeType: Employee -homePhone: +1 804 797-7894 -initials: N. R. -mobile: +1 804 652-1217 -pager: +1 804 174-1878 -roomNumber: 9736 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roanne Vesterdal -sn: Vesterdal -description: This is Roanne Vesterdal's description -facsimileTelephoneNumber: +1 510 208-5683 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 747-2251 -title: Supreme Payroll Fellow -userPassword: Password1 -uid: VesterdR -givenName: Roanne -mail: VesterdR@0235e1ba64944a1fa5be17cd97e92630.bitwarden.com -carLicense: 5B896P -departmentNumber: 2344 -employeeType: Employee -homePhone: +1 510 972-9819 -initials: R. V. -mobile: +1 510 827-4935 -pager: +1 510 280-2269 -roomNumber: 9571 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Audrey US,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Audrey US -sn: US -description: This is Audrey US's description -facsimileTelephoneNumber: +1 206 925-7145 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 637-5606 -title: Supreme Product Testing Vice President -userPassword: Password1 -uid: USA -givenName: Audrey -mail: USA@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com -carLicense: YR7XVG -departmentNumber: 2329 -employeeType: Normal -homePhone: +1 206 664-7717 -initials: A. U. -mobile: +1 206 557-7460 -pager: +1 206 821-9642 -roomNumber: 9291 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eugine Dobbins -sn: Dobbins -description: This is Eugine Dobbins's description -facsimileTelephoneNumber: +1 408 490-5720 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 408 108-9490 -title: Master Janitorial Dictator -userPassword: Password1 -uid: DobbinsE -givenName: Eugine -mail: DobbinsE@c33db3660c404fae86e9ef95373e3964.bitwarden.com -carLicense: JOPTRW -departmentNumber: 7905 -employeeType: Employee -homePhone: +1 408 391-3413 -initials: E. D. -mobile: +1 408 885-5653 -pager: +1 408 342-6672 -roomNumber: 8147 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dona Sudan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dona Sudan -sn: Sudan -description: This is Dona Sudan's description -facsimileTelephoneNumber: +1 818 624-6725 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 961-1774 -title: Junior Product Testing Architect -userPassword: Password1 -uid: SudanD -givenName: Dona -mail: SudanD@43baa07ec4304f3499ca8d6cf3d382fe.bitwarden.com -carLicense: DT6DYP -departmentNumber: 3212 -employeeType: Contract -homePhone: +1 818 325-7594 -initials: D. S. -mobile: +1 818 624-5464 -pager: +1 818 166-4098 -roomNumber: 9782 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mahendra Puett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mahendra Puett -sn: Puett -description: This is Mahendra Puett's description -facsimileTelephoneNumber: +1 415 242-9592 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 465-3791 -title: Master Payroll Evangelist -userPassword: Password1 -uid: PuettM -givenName: Mahendra -mail: PuettM@96c638a02d194cffbc921eccd66faa77.bitwarden.com -carLicense: W1UFU5 -departmentNumber: 2789 -employeeType: Employee -homePhone: +1 415 341-2636 -initials: M. P. -mobile: +1 415 196-9544 -pager: +1 415 660-9696 -roomNumber: 8191 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Evangelia Kusan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evangelia Kusan -sn: Kusan -description: This is Evangelia Kusan's description -facsimileTelephoneNumber: +1 213 331-9805 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 547-3046 -title: Chief Peons Assistant -userPassword: Password1 -uid: KusanE -givenName: Evangelia -mail: KusanE@3af5ab8595d4472c82d36aaeac8a3002.bitwarden.com -carLicense: 8FIW05 -departmentNumber: 1262 -employeeType: Normal -homePhone: +1 213 116-6927 -initials: E. K. -mobile: +1 213 942-1910 -pager: +1 213 780-3847 -roomNumber: 9298 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mead Bielan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mead Bielan -sn: Bielan -description: This is Mead Bielan's description -facsimileTelephoneNumber: +1 415 897-1447 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 377-5506 -title: Associate Payroll Artist -userPassword: Password1 -uid: BielanM -givenName: Mead -mail: BielanM@bdc3cbcec8a2447188118ae5b601e009.bitwarden.com -carLicense: UKIBCQ -departmentNumber: 5147 -employeeType: Contract -homePhone: +1 415 292-8173 -initials: M. B. -mobile: +1 415 357-5512 -pager: +1 415 473-7077 -roomNumber: 9787 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Damara Bertrand,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Damara Bertrand -sn: Bertrand -description: This is Damara Bertrand's description -facsimileTelephoneNumber: +1 213 364-9818 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 994-5331 -title: Master Product Testing Stooge -userPassword: Password1 -uid: BertranD -givenName: Damara -mail: BertranD@85c3b55181514b55979bbf8d48a7d2ec.bitwarden.com -carLicense: PXPLKO -departmentNumber: 6701 -employeeType: Normal -homePhone: +1 213 188-5379 -initials: D. B. -mobile: +1 213 293-5224 -pager: +1 213 983-4356 -roomNumber: 8814 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sarah Kardos,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarah Kardos -sn: Kardos -description: This is Sarah Kardos's description -facsimileTelephoneNumber: +1 804 870-3386 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 804 461-7038 -title: Master Product Testing Developer -userPassword: Password1 -uid: KardosS -givenName: Sarah -mail: KardosS@4cb9f71c0f8f42fdadb28a744475bd83.bitwarden.com -carLicense: L26KQ2 -departmentNumber: 7521 -employeeType: Employee -homePhone: +1 804 117-9595 -initials: S. K. -mobile: +1 804 938-1905 -pager: +1 804 355-2261 -roomNumber: 8932 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Odele Mahiger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odele Mahiger -sn: Mahiger -description: This is Odele Mahiger's description -facsimileTelephoneNumber: +1 415 202-5716 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 992-9737 -title: Associate Peons Writer -userPassword: Password1 -uid: MahigerO -givenName: Odele -mail: MahigerO@7486ea2b2edb4dd99d75d2309106bc15.bitwarden.com -carLicense: YNQKB1 -departmentNumber: 3154 -employeeType: Employee -homePhone: +1 415 721-1234 -initials: O. M. -mobile: +1 415 173-4171 -pager: +1 415 798-4920 -roomNumber: 8932 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Salah Poe,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Salah Poe -sn: Poe -description: This is Salah Poe's description -facsimileTelephoneNumber: +1 408 783-7967 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 651-8352 -title: Junior Peons Warrior -userPassword: Password1 -uid: PoeS -givenName: Salah -mail: PoeS@7c2fe37e93114583be5da4a11c32b590.bitwarden.com -carLicense: C9051M -departmentNumber: 7310 -employeeType: Contract -homePhone: +1 408 343-2430 -initials: S. P. -mobile: +1 408 791-9824 -pager: +1 408 680-2471 -roomNumber: 9426 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Garry Sterescu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Garry Sterescu -sn: Sterescu -description: This is Garry Sterescu's description -facsimileTelephoneNumber: +1 415 908-6750 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 434-4725 -title: Master Product Testing Warrior -userPassword: Password1 -uid: SterescG -givenName: Garry -mail: SterescG@aa5810a88b5547ee8c19b3a4626c4393.bitwarden.com -carLicense: DUTEHN -departmentNumber: 8254 -employeeType: Employee -homePhone: +1 415 372-2806 -initials: G. S. -mobile: +1 415 903-9869 -pager: +1 415 124-2080 -roomNumber: 9327 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Takehiko Magnan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Takehiko Magnan -sn: Magnan -description: This is Takehiko Magnan's description -facsimileTelephoneNumber: +1 818 788-1515 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 818 668-4372 -title: Chief Management Punk -userPassword: Password1 -uid: MagnanT -givenName: Takehiko -mail: MagnanT@f414860515324b3cad4d00dd4f44cc65.bitwarden.com -carLicense: FKQHOT -departmentNumber: 3209 -employeeType: Employee -homePhone: +1 818 344-2244 -initials: T. M. -mobile: +1 818 892-9339 -pager: +1 818 141-7444 -roomNumber: 9344 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lurleen Kodnar -sn: Kodnar -description: This is Lurleen Kodnar's description -facsimileTelephoneNumber: +1 408 986-2833 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 649-7660 -title: Supreme Janitorial Figurehead -userPassword: Password1 -uid: KodnarL -givenName: Lurleen -mail: KodnarL@b2ae4069e86943268e686f6fe06ee4a9.bitwarden.com -carLicense: 0MO1TK -departmentNumber: 3818 -employeeType: Contract -homePhone: +1 408 596-9528 -initials: L. K. -mobile: +1 408 140-1760 -pager: +1 408 973-7689 -roomNumber: 8861 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Loraine Giese,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loraine Giese -sn: Giese -description: This is Loraine Giese's description -facsimileTelephoneNumber: +1 206 572-5956 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 882-1366 -title: Chief Administrative Architect -userPassword: Password1 -uid: GieseL -givenName: Loraine -mail: GieseL@07a4bc595e2e42d18a0e9f7b0a858ca8.bitwarden.com -carLicense: 5OLW19 -departmentNumber: 3209 -employeeType: Contract -homePhone: +1 206 751-2120 -initials: L. G. -mobile: +1 206 642-1332 -pager: +1 206 692-9358 -roomNumber: 9402 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ilya Mackey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilya Mackey -sn: Mackey -description: This is Ilya Mackey's description -facsimileTelephoneNumber: +1 818 630-5670 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 489-6181 -title: Master Management Artist -userPassword: Password1 -uid: MackeyI -givenName: Ilya -mail: MackeyI@fa905899850742c4b112661b0ad13f53.bitwarden.com -carLicense: 6DO0ND -departmentNumber: 8306 -employeeType: Employee -homePhone: +1 818 144-1029 -initials: I. M. -mobile: +1 818 611-8420 -pager: +1 818 632-5974 -roomNumber: 9003 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Clari Wahab,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clari Wahab -sn: Wahab -description: This is Clari Wahab's description -facsimileTelephoneNumber: +1 415 775-2028 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 601-9080 -title: Master Product Development Evangelist -userPassword: Password1 -uid: WahabC -givenName: Clari -mail: WahabC@cf8b4b591c2f4387aae0bb010f18f55b.bitwarden.com -carLicense: D7R7IL -departmentNumber: 8575 -employeeType: Contract -homePhone: +1 415 867-8277 -initials: C. W. -mobile: +1 415 172-2466 -pager: +1 415 560-8644 -roomNumber: 8473 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nichol Etten,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nichol Etten -sn: Etten -description: This is Nichol Etten's description -facsimileTelephoneNumber: +1 415 433-4284 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 415 621-3918 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: EttenN -givenName: Nichol -mail: EttenN@bd63e3f485444f2684cf40e65bc36ff3.bitwarden.com -carLicense: T7JD20 -departmentNumber: 2666 -employeeType: Normal -homePhone: +1 415 822-3936 -initials: N. E. -mobile: +1 415 197-3124 -pager: +1 415 219-9016 -roomNumber: 8540 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Clayton Sridaran,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clayton Sridaran -sn: Sridaran -description: This is Clayton Sridaran's description -facsimileTelephoneNumber: +1 206 367-9237 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 206 955-5482 -title: Associate Payroll Mascot -userPassword: Password1 -uid: SridaraC -givenName: Clayton -mail: SridaraC@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com -carLicense: 4R58BG -departmentNumber: 7073 -employeeType: Normal -homePhone: +1 206 874-5508 -initials: C. S. -mobile: +1 206 143-9076 -pager: +1 206 705-8140 -roomNumber: 9137 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marijke Ervi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marijke Ervi -sn: Ervi -description: This is Marijke Ervi's description -facsimileTelephoneNumber: +1 408 651-7803 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 392-7205 -title: Associate Human Resources President -userPassword: Password1 -uid: ErviM -givenName: Marijke -mail: ErviM@9b4c46b33b054223bd92a713c0feadad.bitwarden.com -carLicense: HFWXHW -departmentNumber: 9774 -employeeType: Contract -homePhone: +1 408 355-1768 -initials: M. E. -mobile: +1 408 483-1748 -pager: +1 408 646-4516 -roomNumber: 9954 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rama Zagrodney -sn: Zagrodney -description: This is Rama Zagrodney's description -facsimileTelephoneNumber: +1 415 880-1379 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 415 255-3717 -title: Master Human Resources Janitor -userPassword: Password1 -uid: ZagrodnR -givenName: Rama -mail: ZagrodnR@5a18e19bdaa8418c835d1d34e33216b7.bitwarden.com -carLicense: KAAJBW -departmentNumber: 4146 -employeeType: Contract -homePhone: +1 415 185-2582 -initials: R. Z. -mobile: +1 415 330-6041 -pager: +1 415 700-5022 -roomNumber: 8549 -manager: cn=Olympie Sails,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pippy McGillicuddy -sn: McGillicuddy -description: This is Pippy McGillicuddy's description -facsimileTelephoneNumber: +1 206 630-6450 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 440-5016 -title: Associate Human Resources Pinhead -userPassword: Password1 -uid: McGilliP -givenName: Pippy -mail: McGilliP@8243672e950b4a22b72844e6eab2354c.bitwarden.com -carLicense: TMF1IH -departmentNumber: 3042 -employeeType: Contract -homePhone: +1 206 140-5989 -initials: P. M. -mobile: +1 206 869-5889 -pager: +1 206 624-9691 -roomNumber: 9787 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tally Pirkle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tally Pirkle -sn: Pirkle -description: This is Tally Pirkle's description -facsimileTelephoneNumber: +1 213 801-6273 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 287-4709 -title: Supreme Janitorial Engineer -userPassword: Password1 -uid: PirkleT -givenName: Tally -mail: PirkleT@1ee541f8be124dfb9bee70e5bd91693b.bitwarden.com -carLicense: IPA70X -departmentNumber: 3552 -employeeType: Contract -homePhone: +1 213 371-8669 -initials: T. P. -mobile: +1 213 427-5213 -pager: +1 213 754-6567 -roomNumber: 9313 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Haste Katcher,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haste Katcher -sn: Katcher -description: This is Haste Katcher's description -facsimileTelephoneNumber: +1 213 280-8402 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 358-3541 -title: Associate Product Development Pinhead -userPassword: Password1 -uid: KatcherH -givenName: Haste -mail: KatcherH@abeb83f06224438d8248b9254dfa4c9e.bitwarden.com -carLicense: VD6U8L -departmentNumber: 8003 -employeeType: Employee -homePhone: +1 213 935-8602 -initials: H. K. -mobile: +1 213 181-6722 -pager: +1 213 363-1420 -roomNumber: 8695 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Norstar Lipski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norstar Lipski -sn: Lipski -description: This is Norstar Lipski's description -facsimileTelephoneNumber: +1 804 120-1550 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 368-9955 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: LipskiN -givenName: Norstar -mail: LipskiN@5a511b723eeb45c88fb86e29a330cbd3.bitwarden.com -carLicense: I9HYFK -departmentNumber: 6306 -employeeType: Normal -homePhone: +1 804 519-2030 -initials: N. L. -mobile: +1 804 752-2278 -pager: +1 804 605-3243 -roomNumber: 9754 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hedi Konarski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hedi Konarski -sn: Konarski -description: This is Hedi Konarski's description -facsimileTelephoneNumber: +1 415 869-5288 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 122-7116 -title: Supreme Product Testing Engineer -userPassword: Password1 -uid: KonarskH -givenName: Hedi -mail: KonarskH@6d3517f9c8ba453ba2035cad30e9dfc1.bitwarden.com -carLicense: Y6K5HN -departmentNumber: 6205 -employeeType: Normal -homePhone: +1 415 608-1346 -initials: H. K. -mobile: +1 415 650-2209 -pager: +1 415 723-7199 -roomNumber: 8487 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ShyaYun Casper -sn: Casper -description: This is ShyaYun Casper's description -facsimileTelephoneNumber: +1 818 555-3267 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 639-6258 -title: Associate Janitorial Visionary -userPassword: Password1 -uid: CasperS -givenName: ShyaYun -mail: CasperS@1ee43d5295b54a68904e38d5e6ea6d47.bitwarden.com -carLicense: EQF8PX -departmentNumber: 7825 -employeeType: Employee -homePhone: +1 818 823-3091 -initials: S. C. -mobile: +1 818 644-1619 -pager: +1 818 741-9239 -roomNumber: 8546 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kwing DeStefani,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kwing DeStefani -sn: DeStefani -description: This is Kwing DeStefani's description -facsimileTelephoneNumber: +1 213 254-1946 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 213 550-3605 -title: Supreme Payroll Artist -userPassword: Password1 -uid: DeStefaK -givenName: Kwing -mail: DeStefaK@82379443b34e4931be502fdd3a836d0a.bitwarden.com -carLicense: J1C2FG -departmentNumber: 3419 -employeeType: Contract -homePhone: +1 213 152-6639 -initials: K. D. -mobile: +1 213 991-5417 -pager: +1 213 214-8127 -roomNumber: 8023 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Helma Ramsden,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helma Ramsden -sn: Ramsden -description: This is Helma Ramsden's description -facsimileTelephoneNumber: +1 415 958-5191 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 153-5622 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: RamsdenH -givenName: Helma -mail: RamsdenH@e4834dbcf6564d34a2bbc3d31da046a3.bitwarden.com -carLicense: S7HNLT -departmentNumber: 9566 -employeeType: Normal -homePhone: +1 415 857-1399 -initials: H. R. -mobile: +1 415 715-1064 -pager: +1 415 460-8942 -roomNumber: 9780 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joanna Aimone,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joanna Aimone -sn: Aimone -description: This is Joanna Aimone's description -facsimileTelephoneNumber: +1 804 914-6700 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 722-1749 -title: Supreme Administrative Consultant -userPassword: Password1 -uid: AimoneJ -givenName: Joanna -mail: AimoneJ@43156b01c6bc494fbc8570d9a5003fc5.bitwarden.com -carLicense: 4X5JFS -departmentNumber: 3113 -employeeType: Contract -homePhone: +1 804 741-7108 -initials: J. A. -mobile: +1 804 149-9487 -pager: +1 804 133-7310 -roomNumber: 8903 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Leon Epplett,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leon Epplett -sn: Epplett -description: This is Leon Epplett's description -facsimileTelephoneNumber: +1 408 979-2584 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 408 374-4800 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: EpplettL -givenName: Leon -mail: EpplettL@0ddc496dccad4aaf85619cae07f217f7.bitwarden.com -carLicense: WFKOCS -departmentNumber: 4867 -employeeType: Normal -homePhone: +1 408 619-2673 -initials: L. E. -mobile: +1 408 334-6708 -pager: +1 408 602-5170 -roomNumber: 8492 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristina Sulatycki -sn: Sulatycki -description: This is Cristina Sulatycki's description -facsimileTelephoneNumber: +1 408 725-2070 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 333-2931 -title: Junior Product Testing Director -userPassword: Password1 -uid: SulatycC -givenName: Cristina -mail: SulatycC@428ea86de0d24cc293fcc0e69c36a51d.bitwarden.com -carLicense: DEP1U9 -departmentNumber: 6574 -employeeType: Employee -homePhone: +1 408 387-7337 -initials: C. S. -mobile: +1 408 431-9100 -pager: +1 408 330-7226 -roomNumber: 8560 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bobby Frink,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobby Frink -sn: Frink -description: This is Bobby Frink's description -facsimileTelephoneNumber: +1 415 944-5888 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 521-2291 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: FrinkB -givenName: Bobby -mail: FrinkB@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com -carLicense: HJLVWY -departmentNumber: 1763 -employeeType: Contract -homePhone: +1 415 733-9811 -initials: B. F. -mobile: +1 415 952-8267 -pager: +1 415 738-5252 -roomNumber: 8521 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rob Milinkovich,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rob Milinkovich -sn: Milinkovich -description: This is Rob Milinkovich's description -facsimileTelephoneNumber: +1 415 335-7752 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 415 603-1529 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: MilinkoR -givenName: Rob -mail: MilinkoR@359efdad39cc40ef8440421a8807b6c0.bitwarden.com -carLicense: 3PBAE1 -departmentNumber: 4801 -employeeType: Employee -homePhone: +1 415 927-2376 -initials: R. M. -mobile: +1 415 978-8224 -pager: +1 415 570-1028 -roomNumber: 9413 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lexie Thorsen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lexie Thorsen -sn: Thorsen -description: This is Lexie Thorsen's description -facsimileTelephoneNumber: +1 206 545-2604 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 206 630-8224 -title: Junior Management Developer -userPassword: Password1 -uid: ThorsenL -givenName: Lexie -mail: ThorsenL@08761145d0ee492388590ebc755ffc11.bitwarden.com -carLicense: 3W883J -departmentNumber: 4528 -employeeType: Employee -homePhone: +1 206 600-8620 -initials: L. T. -mobile: +1 206 203-4770 -pager: +1 206 476-8084 -roomNumber: 8419 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucita Hickerson -sn: Hickerson -description: This is Lucita Hickerson's description -facsimileTelephoneNumber: +1 206 369-5169 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 620-5502 -title: Associate Janitorial Admin -userPassword: Password1 -uid: HickersL -givenName: Lucita -mail: HickersL@bdc7052979ce43f2af94fc8fdd8de1f2.bitwarden.com -carLicense: Q5SY51 -departmentNumber: 1315 -employeeType: Employee -homePhone: +1 206 560-7424 -initials: L. H. -mobile: +1 206 160-9376 -pager: +1 206 392-3386 -roomNumber: 8857 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carlene Grignon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlene Grignon -sn: Grignon -description: This is Carlene Grignon's description -facsimileTelephoneNumber: +1 415 291-4378 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 103-8663 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: GrignonC -givenName: Carlene -mail: GrignonC@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com -carLicense: UOBWWE -departmentNumber: 5309 -employeeType: Normal -homePhone: +1 415 280-4481 -initials: C. G. -mobile: +1 415 174-9858 -pager: +1 415 828-5692 -roomNumber: 8196 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Russ Battersby,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Russ Battersby -sn: Battersby -description: This is Russ Battersby's description -facsimileTelephoneNumber: +1 818 903-4183 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 910-3960 -title: Master Janitorial Madonna -userPassword: Password1 -uid: BattersR -givenName: Russ -mail: BattersR@ed1575430eeb4652bbcb86d12841c10c.bitwarden.com -carLicense: JPFNHF -departmentNumber: 5726 -employeeType: Normal -homePhone: +1 818 550-8619 -initials: R. B. -mobile: +1 818 786-9147 -pager: +1 818 308-3721 -roomNumber: 9744 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Andrew Thifault,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrew Thifault -sn: Thifault -description: This is Andrew Thifault's description -facsimileTelephoneNumber: +1 818 192-9927 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 226-1509 -title: Junior Product Development Architect -userPassword: Password1 -uid: ThifaulA -givenName: Andrew -mail: ThifaulA@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com -carLicense: KLKOWN -departmentNumber: 9199 -employeeType: Employee -homePhone: +1 818 516-3620 -initials: A. T. -mobile: +1 818 989-3903 -pager: +1 818 730-9445 -roomNumber: 8726 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joyann Westgarth -sn: Westgarth -description: This is Joyann Westgarth's description -facsimileTelephoneNumber: +1 415 208-9318 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 870-7805 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: WestgarJ -givenName: Joyann -mail: WestgarJ@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com -carLicense: 66NI8R -departmentNumber: 3900 -employeeType: Normal -homePhone: +1 415 229-4900 -initials: J. W. -mobile: +1 415 844-6046 -pager: +1 415 408-3966 -roomNumber: 9711 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Celinda Krisa,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celinda Krisa -sn: Krisa -description: This is Celinda Krisa's description -facsimileTelephoneNumber: +1 804 104-4047 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 186-3109 -title: Master Administrative Consultant -userPassword: Password1 -uid: KrisaC -givenName: Celinda -mail: KrisaC@87ac1189e97646f890363efe4db63ec0.bitwarden.com -carLicense: QJ9C8O -departmentNumber: 6958 -employeeType: Normal -homePhone: +1 804 476-4795 -initials: C. K. -mobile: +1 804 823-8668 -pager: +1 804 588-6236 -roomNumber: 9775 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Fawnia Starks,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fawnia Starks -sn: Starks -description: This is Fawnia Starks's description -facsimileTelephoneNumber: +1 415 116-3662 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 156-5395 -title: Junior Management Janitor -userPassword: Password1 -uid: StarksF -givenName: Fawnia -mail: StarksF@5d9e4a3f454c470596eb4a19b0aabca9.bitwarden.com -carLicense: E3R8AF -departmentNumber: 3853 -employeeType: Normal -homePhone: +1 415 736-9184 -initials: F. S. -mobile: +1 415 371-8445 -pager: +1 415 276-9757 -roomNumber: 9820 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Prissie Schieber,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Prissie Schieber -sn: Schieber -description: This is Prissie Schieber's description -facsimileTelephoneNumber: +1 804 760-6129 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 153-2338 -title: Master Peons Pinhead -userPassword: Password1 -uid: SchiebeP -givenName: Prissie -mail: SchiebeP@782d7744464b4c018117147752b3b8b2.bitwarden.com -carLicense: 3B5I8K -departmentNumber: 9204 -employeeType: Employee -homePhone: +1 804 262-7186 -initials: P. S. -mobile: +1 804 480-9994 -pager: +1 804 535-8901 -roomNumber: 8428 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lyn Yuhn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyn Yuhn -sn: Yuhn -description: This is Lyn Yuhn's description -facsimileTelephoneNumber: +1 206 890-6721 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 757-5301 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: YuhnL -givenName: Lyn -mail: YuhnL@45e7698e90b843bf96764adac8813e44.bitwarden.com -carLicense: 2CQ6QJ -departmentNumber: 9847 -employeeType: Contract -homePhone: +1 206 315-6078 -initials: L. Y. -mobile: +1 206 856-7606 -pager: +1 206 323-1586 -roomNumber: 8242 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joellyn Montelli,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joellyn Montelli -sn: Montelli -description: This is Joellyn Montelli's description -facsimileTelephoneNumber: +1 818 884-9995 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 954-9418 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: MontellJ -givenName: Joellyn -mail: MontellJ@fd7e4056685f4c789c5948839975ec7d.bitwarden.com -carLicense: TIYWYY -departmentNumber: 6722 -employeeType: Normal -homePhone: +1 818 913-1010 -initials: J. M. -mobile: +1 818 364-9500 -pager: +1 818 977-3315 -roomNumber: 9901 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vanny Fenton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanny Fenton -sn: Fenton -description: This is Vanny Fenton's description -facsimileTelephoneNumber: +1 804 928-6339 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 804 925-6005 -title: Chief Product Development Janitor -userPassword: Password1 -uid: FentonV -givenName: Vanny -mail: FentonV@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com -carLicense: NO38HT -departmentNumber: 5824 -employeeType: Employee -homePhone: +1 804 758-1935 -initials: V. F. -mobile: +1 804 529-2357 -pager: +1 804 383-2332 -roomNumber: 9857 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rosabella Mathis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosabella Mathis -sn: Mathis -description: This is Rosabella Mathis's description -facsimileTelephoneNumber: +1 804 455-1317 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 612-1757 -title: Chief Peons Assistant -userPassword: Password1 -uid: MathisR -givenName: Rosabella -mail: MathisR@f04933e85545445793e3a5773ee7f65d.bitwarden.com -carLicense: PXGDCQ -departmentNumber: 1436 -employeeType: Contract -homePhone: +1 804 151-8287 -initials: R. M. -mobile: +1 804 848-3212 -pager: +1 804 801-5835 -roomNumber: 8921 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Celestine Demir,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celestine Demir -sn: Demir -description: This is Celestine Demir's description -facsimileTelephoneNumber: +1 408 558-8417 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 394-3525 -title: Master Payroll Stooge -userPassword: Password1 -uid: DemirC -givenName: Celestine -mail: DemirC@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com -carLicense: WFCWY9 -departmentNumber: 1929 -employeeType: Normal -homePhone: +1 408 413-1391 -initials: C. D. -mobile: +1 408 347-2699 -pager: +1 408 337-6943 -roomNumber: 9146 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Charlena Mirande,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charlena Mirande -sn: Mirande -description: This is Charlena Mirande's description -facsimileTelephoneNumber: +1 415 161-9727 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 415 940-2926 -title: Supreme Janitorial Technician -userPassword: Password1 -uid: MirandeC -givenName: Charlena -mail: MirandeC@15447e827d294576b427fe60b8e58e62.bitwarden.com -carLicense: 5GMWUQ -departmentNumber: 5421 -employeeType: Employee -homePhone: +1 415 581-5218 -initials: C. M. -mobile: +1 415 928-5985 -pager: +1 415 244-5159 -roomNumber: 8684 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bennett Marting,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bennett Marting -sn: Marting -description: This is Bennett Marting's description -facsimileTelephoneNumber: +1 510 837-8004 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 238-6077 -title: Junior Peons Fellow -userPassword: Password1 -uid: MartingB -givenName: Bennett -mail: MartingB@7c32fb701ef74a0cad22be6cdec84337.bitwarden.com -carLicense: XRTU6V -departmentNumber: 7035 -employeeType: Normal -homePhone: +1 510 377-6742 -initials: B. M. -mobile: +1 510 298-3546 -pager: +1 510 424-6684 -roomNumber: 9243 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PierreAlain Kelland -sn: Kelland -description: This is PierreAlain Kelland's description -facsimileTelephoneNumber: +1 206 257-9467 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 206 345-4312 -title: Associate Janitorial Mascot -userPassword: Password1 -uid: KellandP -givenName: PierreAlain -mail: KellandP@9de1e5ab0e97403bbd2b1cd8ab5549b3.bitwarden.com -carLicense: G6HPTR -departmentNumber: 2879 -employeeType: Normal -homePhone: +1 206 236-2962 -initials: P. K. -mobile: +1 206 409-2526 -pager: +1 206 103-7162 -roomNumber: 8161 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Analiese Steene,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Analiese Steene -sn: Steene -description: This is Analiese Steene's description -facsimileTelephoneNumber: +1 408 617-6923 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 348-2538 -title: Master Payroll Visionary -userPassword: Password1 -uid: SteeneA -givenName: Analiese -mail: SteeneA@51bf8c07247a47a89482a395ed341297.bitwarden.com -carLicense: BXFGCS -departmentNumber: 5128 -employeeType: Employee -homePhone: +1 408 621-7244 -initials: A. S. -mobile: +1 408 947-4680 -pager: +1 408 168-7345 -roomNumber: 9536 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Janine Stirrett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janine Stirrett -sn: Stirrett -description: This is Janine Stirrett's description -facsimileTelephoneNumber: +1 415 346-2967 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 592-2668 -title: Supreme Payroll Madonna -userPassword: Password1 -uid: StirretJ -givenName: Janine -mail: StirretJ@25d25ecced754b87ad2b47ca359ce5ed.bitwarden.com -carLicense: MXWIRR -departmentNumber: 2302 -employeeType: Contract -homePhone: +1 415 690-8318 -initials: J. S. -mobile: +1 415 144-7499 -pager: +1 415 854-3865 -roomNumber: 9233 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wiele Rowan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wiele Rowan -sn: Rowan -description: This is Wiele Rowan's description -facsimileTelephoneNumber: +1 408 525-9390 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 408 789-5687 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: RowanW -givenName: Wiele -mail: RowanW@f977f0ba237149f58238530f1adcdac1.bitwarden.com -carLicense: M5YSPH -departmentNumber: 4499 -employeeType: Employee -homePhone: +1 408 168-9720 -initials: W. R. -mobile: +1 408 282-7418 -pager: +1 408 853-4109 -roomNumber: 8588 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maia Reva,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maia Reva -sn: Reva -description: This is Maia Reva's description -facsimileTelephoneNumber: +1 408 820-4051 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 876-9379 -title: Chief Management Evangelist -userPassword: Password1 -uid: RevaM -givenName: Maia -mail: RevaM@3398a7bd821e4193ae8f310f359e79ef.bitwarden.com -carLicense: 4DJCHJ -departmentNumber: 8793 -employeeType: Normal -homePhone: +1 408 687-6668 -initials: M. R. -mobile: +1 408 446-7761 -pager: +1 408 872-3789 -roomNumber: 9162 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tian Beeby,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tian Beeby -sn: Beeby -description: This is Tian Beeby's description -facsimileTelephoneNumber: +1 804 247-4118 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 275-1935 -title: Supreme Human Resources Madonna -userPassword: Password1 -uid: BeebyT -givenName: Tian -mail: BeebyT@ae1c8a23e1dd413a9249a93f83a32cff.bitwarden.com -carLicense: GOWST6 -departmentNumber: 3249 -employeeType: Employee -homePhone: +1 804 456-9029 -initials: T. B. -mobile: +1 804 961-5029 -pager: +1 804 960-7449 -roomNumber: 8484 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nazib Schembri,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nazib Schembri -sn: Schembri -description: This is Nazib Schembri's description -facsimileTelephoneNumber: +1 818 790-9279 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 456-4298 -title: Chief Administrative Manager -userPassword: Password1 -uid: SchembrN -givenName: Nazib -mail: SchembrN@0adc67407b764a6d9b4b77d7fd10db1b.bitwarden.com -carLicense: R59F1Y -departmentNumber: 1532 -employeeType: Contract -homePhone: +1 818 215-6268 -initials: N. S. -mobile: +1 818 247-3877 -pager: +1 818 698-2900 -roomNumber: 9675 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucinda Letchworth -sn: Letchworth -description: This is Lucinda Letchworth's description -facsimileTelephoneNumber: +1 818 468-3818 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 380-5307 -title: Master Janitorial Dictator -userPassword: Password1 -uid: LetchwoL -givenName: Lucinda -mail: LetchwoL@472c805b68f843ad9fd85cb16521749b.bitwarden.com -carLicense: TJ6LPU -departmentNumber: 6716 -employeeType: Contract -homePhone: +1 818 617-4707 -initials: L. L. -mobile: +1 818 943-5934 -pager: +1 818 128-6912 -roomNumber: 9397 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cammy Shumate,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cammy Shumate -sn: Shumate -description: This is Cammy Shumate's description -facsimileTelephoneNumber: +1 804 765-1062 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 354-6829 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: ShumateC -givenName: Cammy -mail: ShumateC@632f2740a30b4299bdecbe1293c6b1e7.bitwarden.com -carLicense: 67LB3E -departmentNumber: 9298 -employeeType: Normal -homePhone: +1 804 858-4430 -initials: C. S. -mobile: +1 804 597-1968 -pager: +1 804 948-7206 -roomNumber: 8555 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rianon Schick,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rianon Schick -sn: Schick -description: This is Rianon Schick's description -facsimileTelephoneNumber: +1 818 254-2852 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 877-9472 -title: Associate Janitorial Warrior -userPassword: Password1 -uid: SchickR -givenName: Rianon -mail: SchickR@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com -carLicense: 08N484 -departmentNumber: 8384 -employeeType: Employee -homePhone: +1 818 207-4396 -initials: R. S. -mobile: +1 818 668-3231 -pager: +1 818 459-3405 -roomNumber: 8057 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Viole Areu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Viole Areu -sn: Areu -description: This is Viole Areu's description -facsimileTelephoneNumber: +1 206 526-7094 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 740-2907 -title: Associate Product Development Warrior -userPassword: Password1 -uid: AreuV -givenName: Viole -mail: AreuV@3f7d610415d84ef2bdb619b20514a382.bitwarden.com -carLicense: XCR552 -departmentNumber: 6599 -employeeType: Contract -homePhone: +1 206 928-2352 -initials: V. A. -mobile: +1 206 802-5617 -pager: +1 206 610-5284 -roomNumber: 9972 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Brigitta Piper,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigitta Piper -sn: Piper -description: This is Brigitta Piper's description -facsimileTelephoneNumber: +1 818 302-6864 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 549-3311 -title: Chief Product Development Grunt -userPassword: Password1 -uid: PiperB -givenName: Brigitta -mail: PiperB@0877837d55bc4d3c8c1cf86b1af30616.bitwarden.com -carLicense: C0JKKH -departmentNumber: 8865 -employeeType: Normal -homePhone: +1 818 711-3267 -initials: B. P. -mobile: +1 818 930-6452 -pager: +1 818 896-2608 -roomNumber: 8243 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melly Kelkar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melly Kelkar -sn: Kelkar -description: This is Melly Kelkar's description -facsimileTelephoneNumber: +1 804 715-8555 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 942-3315 -title: Associate Management Admin -userPassword: Password1 -uid: KelkarM -givenName: Melly -mail: KelkarM@4fd5724ffe8c4be3a7330bd9ee58c54a.bitwarden.com -carLicense: P1QJU3 -departmentNumber: 7501 -employeeType: Employee -homePhone: +1 804 982-8946 -initials: M. K. -mobile: +1 804 964-7453 -pager: +1 804 674-6390 -roomNumber: 8417 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maritsa McCain,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maritsa McCain -sn: McCain -description: This is Maritsa McCain's description -facsimileTelephoneNumber: +1 408 683-9829 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 857-6640 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: McCainM -givenName: Maritsa -mail: McCainM@753b48fb7ffe43dd87736153647baa4b.bitwarden.com -carLicense: 16NSJW -departmentNumber: 5473 -employeeType: Employee -homePhone: +1 408 589-4670 -initials: M. M. -mobile: +1 408 738-6918 -pager: +1 408 204-2896 -roomNumber: 8260 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Melissa Griffioen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melissa Griffioen -sn: Griffioen -description: This is Melissa Griffioen's description -facsimileTelephoneNumber: +1 213 225-4456 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 246-1430 -title: Associate Management Stooge -userPassword: Password1 -uid: GriffioM -givenName: Melissa -mail: GriffioM@952de29a7bec4822af302264a85723ab.bitwarden.com -carLicense: CK6UM3 -departmentNumber: 8045 -employeeType: Contract -homePhone: +1 213 837-5127 -initials: M. G. -mobile: +1 213 448-5357 -pager: +1 213 130-8277 -roomNumber: 9529 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tak Sebeh,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tak Sebeh -sn: Sebeh -description: This is Tak Sebeh's description -facsimileTelephoneNumber: +1 415 119-6841 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 242-6053 -title: Master Peons President -userPassword: Password1 -uid: SebehT -givenName: Tak -mail: SebehT@e4f3fd4bada6471dba76dc7596ae6743.bitwarden.com -carLicense: 88EJO0 -departmentNumber: 9593 -employeeType: Normal -homePhone: +1 415 256-2062 -initials: T. S. -mobile: +1 415 572-4139 -pager: +1 415 110-3451 -roomNumber: 8061 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vittorio Muradia,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vittorio Muradia -sn: Muradia -description: This is Vittorio Muradia's description -facsimileTelephoneNumber: +1 804 960-5555 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 804 330-5861 -title: Master Payroll Evangelist -userPassword: Password1 -uid: MuradiaV -givenName: Vittorio -mail: MuradiaV@4bb48f2b9b4243a6be88846d63865ab7.bitwarden.com -carLicense: QCB8V1 -departmentNumber: 1715 -employeeType: Employee -homePhone: +1 804 491-8282 -initials: V. M. -mobile: +1 804 222-3877 -pager: +1 804 779-9718 -roomNumber: 8029 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jonell McElligott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jonell McElligott -sn: McElligott -description: This is Jonell McElligott's description -facsimileTelephoneNumber: +1 213 964-2004 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 167-7508 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: McElligJ -givenName: Jonell -mail: McElligJ@c483d98d8b2f4370bac517e24e1170a7.bitwarden.com -carLicense: 757BKM -departmentNumber: 4596 -employeeType: Normal -homePhone: +1 213 137-6005 -initials: J. M. -mobile: +1 213 567-2685 -pager: +1 213 204-4331 -roomNumber: 9897 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnnHoon Chaintreuil -sn: Chaintreuil -description: This is AnnHoon Chaintreuil's description -facsimileTelephoneNumber: +1 818 887-6734 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 818 988-9961 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: ChaintrA -givenName: AnnHoon -mail: ChaintrA@8ff18bb869a54da6b6cdd5f2a63f2885.bitwarden.com -carLicense: AUGKT7 -departmentNumber: 1609 -employeeType: Normal -homePhone: +1 818 305-3739 -initials: A. C. -mobile: +1 818 625-8102 -pager: +1 818 891-5289 -roomNumber: 8128 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jey Pau,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jey Pau -sn: Pau -description: This is Jey Pau's description -facsimileTelephoneNumber: +1 804 223-8380 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 919-8561 -title: Supreme Administrative Developer -userPassword: Password1 -uid: PauJ -givenName: Jey -mail: PauJ@38576f18c78f484896ae3f1bba73101a.bitwarden.com -carLicense: TISBBH -departmentNumber: 5379 -employeeType: Employee -homePhone: +1 804 351-3889 -initials: J. P. -mobile: +1 804 524-2989 -pager: +1 804 122-7380 -roomNumber: 8958 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emerson Syssupport -sn: Syssupport -description: This is Emerson Syssupport's description -facsimileTelephoneNumber: +1 213 313-4240 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 425-9552 -title: Junior Human Resources Visionary -userPassword: Password1 -uid: SyssuppE -givenName: Emerson -mail: SyssuppE@5e676fae9cd742a087297df905b8c5bd.bitwarden.com -carLicense: XHS2JM -departmentNumber: 6162 -employeeType: Employee -homePhone: +1 213 333-7511 -initials: E. S. -mobile: +1 213 161-9449 -pager: +1 213 144-6187 -roomNumber: 9406 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jillane Metz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jillane Metz -sn: Metz -description: This is Jillane Metz's description -facsimileTelephoneNumber: +1 415 861-2934 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 415 918-9357 -title: Junior Human Resources Architect -userPassword: Password1 -uid: MetzJ -givenName: Jillane -mail: MetzJ@6d452215608049afb03f1d153c8be1b3.bitwarden.com -carLicense: 0TX6L3 -departmentNumber: 3481 -employeeType: Normal -homePhone: +1 415 675-7938 -initials: J. M. -mobile: +1 415 698-9624 -pager: +1 415 940-7539 -roomNumber: 9634 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Parveen Burnage,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parveen Burnage -sn: Burnage -description: This is Parveen Burnage's description -facsimileTelephoneNumber: +1 408 674-1086 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 887-4787 -title: Master Human Resources Czar -userPassword: Password1 -uid: BurnageP -givenName: Parveen -mail: BurnageP@38d063b8eef24bab8cf2febf33fcac66.bitwarden.com -carLicense: IWWAN4 -departmentNumber: 8182 -employeeType: Contract -homePhone: +1 408 391-8718 -initials: P. B. -mobile: +1 408 314-4803 -pager: +1 408 713-9332 -roomNumber: 8092 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Martine Gilliard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martine Gilliard -sn: Gilliard -description: This is Martine Gilliard's description -facsimileTelephoneNumber: +1 415 896-7660 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 794-6193 -title: Master Human Resources Grunt -userPassword: Password1 -uid: GilliarM -givenName: Martine -mail: GilliarM@09314ab289d344eeaedcd157c5350d28.bitwarden.com -carLicense: CPFO8B -departmentNumber: 1242 -employeeType: Contract -homePhone: +1 415 662-2110 -initials: M. G. -mobile: +1 415 822-1341 -pager: +1 415 524-3333 -roomNumber: 8055 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edmundo Yarbrough -sn: Yarbrough -description: This is Edmundo Yarbrough's description -facsimileTelephoneNumber: +1 408 517-8924 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 408 663-5861 -title: Supreme Peons Mascot -userPassword: Password1 -uid: YarbrouE -givenName: Edmundo -mail: YarbrouE@6a380be30539453291140420cbbfde32.bitwarden.com -carLicense: K1WQ7G -departmentNumber: 7218 -employeeType: Employee -homePhone: +1 408 969-9257 -initials: E. Y. -mobile: +1 408 297-2815 -pager: +1 408 589-2018 -roomNumber: 9147 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shaji Langelier,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaji Langelier -sn: Langelier -description: This is Shaji Langelier's description -facsimileTelephoneNumber: +1 206 805-6605 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 206 148-6707 -title: Master Human Resources Architect -userPassword: Password1 -uid: LangeliS -givenName: Shaji -mail: LangeliS@abfb3b05eb524c3a9045af2f3c7592da.bitwarden.com -carLicense: MIK2BP -departmentNumber: 8053 -employeeType: Contract -homePhone: +1 206 181-9960 -initials: S. L. -mobile: +1 206 249-7783 -pager: +1 206 253-1695 -roomNumber: 9260 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Manny Nolan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manny Nolan -sn: Nolan -description: This is Manny Nolan's description -facsimileTelephoneNumber: +1 213 279-2287 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 497-6155 -title: Associate Administrative Evangelist -userPassword: Password1 -uid: NolanM -givenName: Manny -mail: NolanM@a5b16f07cc5f4d548df233a10f2abd0b.bitwarden.com -carLicense: PWTBQB -departmentNumber: 8358 -employeeType: Contract -homePhone: +1 213 877-9567 -initials: M. N. -mobile: +1 213 484-7937 -pager: +1 213 662-3772 -roomNumber: 8883 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vrinda Keuning,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vrinda Keuning -sn: Keuning -description: This is Vrinda Keuning's description -facsimileTelephoneNumber: +1 510 346-9770 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 896-4718 -title: Associate Product Development Mascot -userPassword: Password1 -uid: KeuningV -givenName: Vrinda -mail: KeuningV@a3d3bf444e8449f58c24d388c9e4253b.bitwarden.com -carLicense: 2HJA25 -departmentNumber: 1529 -employeeType: Employee -homePhone: +1 510 681-1770 -initials: V. K. -mobile: +1 510 184-4333 -pager: +1 510 829-4130 -roomNumber: 9402 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fidelity Lenzi -sn: Lenzi -description: This is Fidelity Lenzi's description -facsimileTelephoneNumber: +1 213 184-1804 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 213 262-4085 -title: Associate Product Development Warrior -userPassword: Password1 -uid: LenziF -givenName: Fidelity -mail: LenziF@a9e04d8378ea40e5a826038ff40e6cd5.bitwarden.com -carLicense: W0XFC9 -departmentNumber: 3430 -employeeType: Contract -homePhone: +1 213 511-3051 -initials: F. L. -mobile: +1 213 117-4338 -pager: +1 213 410-3871 -roomNumber: 8925 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aile StOnge,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aile StOnge -sn: StOnge -description: This is Aile StOnge's description -facsimileTelephoneNumber: +1 804 985-8919 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 345-9595 -title: Associate Management Admin -userPassword: Password1 -uid: StOngeA -givenName: Aile -mail: StOngeA@6c33f97ba18845049fcf33d5c689185e.bitwarden.com -carLicense: HCDSOP -departmentNumber: 9817 -employeeType: Employee -homePhone: +1 804 520-5577 -initials: A. S. -mobile: +1 804 351-9461 -pager: +1 804 772-3344 -roomNumber: 9443 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marabel Lipscomb -sn: Lipscomb -description: This is Marabel Lipscomb's description -facsimileTelephoneNumber: +1 206 720-3162 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 206 176-8800 -title: Associate Payroll Madonna -userPassword: Password1 -uid: LipscomM -givenName: Marabel -mail: LipscomM@a3cde3b2f5de4fe5ac11c48bb6df28f3.bitwarden.com -carLicense: I3TRQX -departmentNumber: 6560 -employeeType: Employee -homePhone: +1 206 829-2606 -initials: M. L. -mobile: +1 206 972-1711 -pager: +1 206 299-9713 -roomNumber: 9423 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Helge Bowyer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helge Bowyer -sn: Bowyer -description: This is Helge Bowyer's description -facsimileTelephoneNumber: +1 206 283-6030 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 606-7782 -title: Junior Peons Vice President -userPassword: Password1 -uid: BowyerH -givenName: Helge -mail: BowyerH@479b3e4b55a5494fbabf2926242184e6.bitwarden.com -carLicense: J2DDXD -departmentNumber: 8063 -employeeType: Contract -homePhone: +1 206 844-3421 -initials: H. B. -mobile: +1 206 583-8860 -pager: +1 206 825-9820 -roomNumber: 8560 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Norbert Missailidis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norbert Missailidis -sn: Missailidis -description: This is Norbert Missailidis's description -facsimileTelephoneNumber: +1 206 661-8476 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 206 652-5669 -title: Master Payroll Artist -userPassword: Password1 -uid: MissailN -givenName: Norbert -mail: MissailN@f069d8208db84a5496e2d819694425d2.bitwarden.com -carLicense: S0C22J -departmentNumber: 6697 -employeeType: Employee -homePhone: +1 206 915-1172 -initials: N. M. -mobile: +1 206 690-8502 -pager: +1 206 264-3664 -roomNumber: 9430 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bathsheba Armolavicius -sn: Armolavicius -description: This is Bathsheba Armolavicius's description -facsimileTelephoneNumber: +1 213 554-8925 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 467-2443 -title: Supreme Product Testing Warrior -userPassword: Password1 -uid: ArmolavB -givenName: Bathsheba -mail: ArmolavB@a6fcfac6f2c541af951392eeebba2d17.bitwarden.com -carLicense: GVO321 -departmentNumber: 7569 -employeeType: Normal -homePhone: +1 213 165-4742 -initials: B. A. -mobile: +1 213 540-5748 -pager: +1 213 454-4552 -roomNumber: 8180 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Letizia Quon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Letizia Quon -sn: Quon -description: This is Letizia Quon's description -facsimileTelephoneNumber: +1 213 733-9836 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 213 453-8014 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: QuonL -givenName: Letizia -mail: QuonL@a202d5209c7047ff8a841ac785c909b8.bitwarden.com -carLicense: VF89BX -departmentNumber: 7494 -employeeType: Employee -homePhone: +1 213 875-3060 -initials: L. Q. -mobile: +1 213 929-8219 -pager: +1 213 108-4850 -roomNumber: 8375 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Haily Lamothe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haily Lamothe -sn: Lamothe -description: This is Haily Lamothe's description -facsimileTelephoneNumber: +1 818 916-8997 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 818 996-2457 -title: Chief Product Testing Janitor -userPassword: Password1 -uid: LamotheH -givenName: Haily -mail: LamotheH@0d16cc430a2c4388b233d89e5b36b645.bitwarden.com -carLicense: VVH5UW -departmentNumber: 2963 -employeeType: Employee -homePhone: +1 818 689-7254 -initials: H. L. -mobile: +1 818 757-6464 -pager: +1 818 941-1793 -roomNumber: 9175 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alie Staats,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alie Staats -sn: Staats -description: This is Alie Staats's description -facsimileTelephoneNumber: +1 818 972-7617 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 237-1236 -title: Supreme Management Director -userPassword: Password1 -uid: StaatsA -givenName: Alie -mail: StaatsA@8746c1b198ed48df839714090396dae1.bitwarden.com -carLicense: 2FN4DA -departmentNumber: 5900 -employeeType: Contract -homePhone: +1 818 950-1030 -initials: A. S. -mobile: +1 818 204-7291 -pager: +1 818 424-1516 -roomNumber: 8452 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariesara Bourgaize -sn: Bourgaize -description: This is Mariesara Bourgaize's description -facsimileTelephoneNumber: +1 213 512-3442 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 292-8273 -title: Junior Peons Artist -userPassword: Password1 -uid: BourgaiM -givenName: Mariesara -mail: BourgaiM@355248f7071d4e58beb9bf6f2b8c9ee2.bitwarden.com -carLicense: L2XQYB -departmentNumber: 1153 -employeeType: Contract -homePhone: +1 213 429-4849 -initials: M. B. -mobile: +1 213 719-8204 -pager: +1 213 845-2838 -roomNumber: 8914 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Corry Brewer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corry Brewer -sn: Brewer -description: This is Corry Brewer's description -facsimileTelephoneNumber: +1 206 737-8942 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 991-5320 -title: Junior Product Development Sales Rep -userPassword: Password1 -uid: BrewerC -givenName: Corry -mail: BrewerC@01034db83e3b44ec835b5255948e4e0f.bitwarden.com -carLicense: TCS0YR -departmentNumber: 6630 -employeeType: Contract -homePhone: +1 206 593-2251 -initials: C. B. -mobile: +1 206 335-3961 -pager: +1 206 406-4783 -roomNumber: 8122 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hanja Godwin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanja Godwin -sn: Godwin -description: This is Hanja Godwin's description -facsimileTelephoneNumber: +1 415 970-3178 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 753-5062 -title: Junior Peons Dictator -userPassword: Password1 -uid: GodwinH -givenName: Hanja -mail: GodwinH@c1864662acf34812bb78c7f7029d15f8.bitwarden.com -carLicense: NY167Q -departmentNumber: 3795 -employeeType: Contract -homePhone: +1 415 931-8886 -initials: H. G. -mobile: +1 415 396-2021 -pager: +1 415 357-9863 -roomNumber: 8379 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brianna Hien,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brianna Hien -sn: Hien -description: This is Brianna Hien's description -facsimileTelephoneNumber: +1 804 388-8084 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 959-6260 -title: Supreme Product Development President -userPassword: Password1 -uid: HienB -givenName: Brianna -mail: HienB@2b36624d30a34f908a5fc12c83ce72f4.bitwarden.com -carLicense: BCNDUM -departmentNumber: 9717 -employeeType: Normal -homePhone: +1 804 668-2274 -initials: B. H. -mobile: +1 804 142-5615 -pager: +1 804 399-6926 -roomNumber: 8411 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Evy Raing,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evy Raing -sn: Raing -description: This is Evy Raing's description -facsimileTelephoneNumber: +1 408 428-5767 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 408 637-2562 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: RaingE -givenName: Evy -mail: RaingE@7cfd5c325b0c431596f4ef71471b42ba.bitwarden.com -carLicense: 5K7LW6 -departmentNumber: 4405 -employeeType: Employee -homePhone: +1 408 155-1122 -initials: E. R. -mobile: +1 408 891-7927 -pager: +1 408 420-1665 -roomNumber: 9282 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rebekah Siegel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rebekah Siegel -sn: Siegel -description: This is Rebekah Siegel's description -facsimileTelephoneNumber: +1 818 816-6904 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 301-2053 -title: Associate Administrative Vice President -userPassword: Password1 -uid: SiegelR -givenName: Rebekah -mail: SiegelR@63e24bc173914f0f865e0c9dee2dcfe5.bitwarden.com -carLicense: NHSLNB -departmentNumber: 1409 -employeeType: Contract -homePhone: +1 818 468-4741 -initials: R. S. -mobile: +1 818 691-4736 -pager: +1 818 367-2517 -roomNumber: 8680 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jobie Boucouris -sn: Boucouris -description: This is Jobie Boucouris's description -facsimileTelephoneNumber: +1 510 518-5965 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 510 870-7137 -title: Chief Janitorial Admin -userPassword: Password1 -uid: BoucourJ -givenName: Jobie -mail: BoucourJ@9a209519348642769473b09231da3137.bitwarden.com -carLicense: S1PB82 -departmentNumber: 1224 -employeeType: Contract -homePhone: +1 510 723-6946 -initials: J. B. -mobile: +1 510 108-2325 -pager: +1 510 244-8821 -roomNumber: 9200 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Brekel Silverstone,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brekel Silverstone -sn: Silverstone -description: This is Brekel Silverstone's description -facsimileTelephoneNumber: +1 818 917-1088 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 246-9408 -title: Junior Administrative Artist -userPassword: Password1 -uid: SilversB -givenName: Brekel -mail: SilversB@5d869bea03ed495786efc921360e43b4.bitwarden.com -carLicense: QFX0D8 -departmentNumber: 3023 -employeeType: Normal -homePhone: +1 818 203-3174 -initials: B. S. -mobile: +1 818 914-2121 -pager: +1 818 377-3245 -roomNumber: 9195 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Harm Mehta,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harm Mehta -sn: Mehta -description: This is Harm Mehta's description -facsimileTelephoneNumber: +1 415 885-6648 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 525-7794 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: MehtaH -givenName: Harm -mail: MehtaH@ad4b259f1800408a898dff512e0a094e.bitwarden.com -carLicense: 87M1FL -departmentNumber: 9793 -employeeType: Employee -homePhone: +1 415 211-2173 -initials: H. M. -mobile: +1 415 570-6411 -pager: +1 415 440-4008 -roomNumber: 9143 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: QuangTrung Yoshioka -sn: Yoshioka -description: This is QuangTrung Yoshioka's description -facsimileTelephoneNumber: +1 408 593-5168 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 934-2871 -title: Junior Payroll Vice President -userPassword: Password1 -uid: YoshiokQ -givenName: QuangTrung -mail: YoshiokQ@4cf5733fc93742b8881de63253f58457.bitwarden.com -carLicense: O8XVIT -departmentNumber: 7408 -employeeType: Normal -homePhone: +1 408 364-9916 -initials: Q. Y. -mobile: +1 408 332-3177 -pager: +1 408 558-2684 -roomNumber: 8562 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jae Caudill,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jae Caudill -sn: Caudill -description: This is Jae Caudill's description -facsimileTelephoneNumber: +1 213 214-8406 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 505-7193 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: CaudillJ -givenName: Jae -mail: CaudillJ@732895781258430aa850734a965ff9eb.bitwarden.com -carLicense: UFWBUO -departmentNumber: 8852 -employeeType: Contract -homePhone: +1 213 782-3956 -initials: J. C. -mobile: +1 213 878-7312 -pager: +1 213 510-8300 -roomNumber: 8707 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hilde Hibberd,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilde Hibberd -sn: Hibberd -description: This is Hilde Hibberd's description -facsimileTelephoneNumber: +1 206 231-1000 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 675-7162 -title: Chief Product Development Architect -userPassword: Password1 -uid: HibberdH -givenName: Hilde -mail: HibberdH@42be868e79934b2781b6098b8536a633.bitwarden.com -carLicense: 6BOX46 -departmentNumber: 4589 -employeeType: Employee -homePhone: +1 206 973-4693 -initials: H. H. -mobile: +1 206 212-6982 -pager: +1 206 442-4733 -roomNumber: 9228 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tres Nyland,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tres Nyland -sn: Nyland -description: This is Tres Nyland's description -facsimileTelephoneNumber: +1 213 542-3994 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 318-6009 -title: Chief Management Dictator -userPassword: Password1 -uid: NylandT -givenName: Tres -mail: NylandT@37ac065458a84fc994659f0d86c970d6.bitwarden.com -carLicense: KQOF4Y -departmentNumber: 8287 -employeeType: Normal -homePhone: +1 213 171-8761 -initials: T. N. -mobile: +1 213 171-6267 -pager: +1 213 485-6602 -roomNumber: 8609 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bettye Moynihan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettye Moynihan -sn: Moynihan -description: This is Bettye Moynihan's description -facsimileTelephoneNumber: +1 206 399-2777 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 553-7345 -title: Associate Peons Artist -userPassword: Password1 -uid: MoynihaB -givenName: Bettye -mail: MoynihaB@0cee059feb2f45d0a3e77b9cb46c95e2.bitwarden.com -carLicense: 1K3MES -departmentNumber: 2322 -employeeType: Normal -homePhone: +1 206 182-7974 -initials: B. M. -mobile: +1 206 142-1630 -pager: +1 206 406-7524 -roomNumber: 9629 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Louisa Shimandle -sn: Shimandle -description: This is Louisa Shimandle's description -facsimileTelephoneNumber: +1 818 199-9144 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 507-1780 -title: Associate Human Resources Artist -userPassword: Password1 -uid: ShimandL -givenName: Louisa -mail: ShimandL@9fa42e4f0ec04b66b2fd5c843402ebd1.bitwarden.com -carLicense: 91XDJ3 -departmentNumber: 2344 -employeeType: Contract -homePhone: +1 818 431-5013 -initials: L. S. -mobile: +1 818 320-9617 -pager: +1 818 388-8037 -roomNumber: 9185 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nooshin Kellum -sn: Kellum -description: This is Nooshin Kellum's description -facsimileTelephoneNumber: +1 213 419-1549 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 177-5321 -title: Junior Product Testing Director -userPassword: Password1 -uid: KellumN -givenName: Nooshin -mail: KellumN@e0035c2cc66e449187d7e04da48e8b5f.bitwarden.com -carLicense: 2JSNBE -departmentNumber: 1235 -employeeType: Contract -homePhone: +1 213 184-8020 -initials: N. K. -mobile: +1 213 660-9168 -pager: +1 213 149-8582 -roomNumber: 9787 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shahriar Trull,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shahriar Trull -sn: Trull -description: This is Shahriar Trull's description -facsimileTelephoneNumber: +1 415 533-5900 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 825-8740 -title: Supreme Peons Admin -userPassword: Password1 -uid: TrullS -givenName: Shahriar -mail: TrullS@e3c084d5a2b44c959d053319884f8497.bitwarden.com -carLicense: I20WNL -departmentNumber: 6690 -employeeType: Employee -homePhone: +1 415 166-7081 -initials: S. T. -mobile: +1 415 368-9745 -pager: +1 415 582-6352 -roomNumber: 8883 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parkinson Rabaglia -sn: Rabaglia -description: This is Parkinson Rabaglia's description -facsimileTelephoneNumber: +1 408 241-4355 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 255-1332 -title: Associate Product Development President -userPassword: Password1 -uid: RabagliP -givenName: Parkinson -mail: RabagliP@87cf37472b3e4029becaa8ad3f98dbac.bitwarden.com -carLicense: E8MX01 -departmentNumber: 5581 -employeeType: Employee -homePhone: +1 408 234-4115 -initials: P. R. -mobile: +1 408 292-8605 -pager: +1 408 561-8773 -roomNumber: 9578 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Edyta Hargadon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edyta Hargadon -sn: Hargadon -description: This is Edyta Hargadon's description -facsimileTelephoneNumber: +1 213 662-9837 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 811-3650 -title: Junior Administrative Visionary -userPassword: Password1 -uid: HargadoE -givenName: Edyta -mail: HargadoE@4155bdebff5941d48d470ec7ba36ba81.bitwarden.com -carLicense: RD671F -departmentNumber: 9555 -employeeType: Normal -homePhone: +1 213 559-1554 -initials: E. H. -mobile: +1 213 725-8801 -pager: +1 213 580-1877 -roomNumber: 9230 -manager: cn=Ava Wetteland,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Trudie Beveridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marris Hameed,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marris Hameed -sn: Hameed -description: This is Marris Hameed's description -facsimileTelephoneNumber: +1 415 750-6153 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 286-8768 -title: Chief Product Development Architect -userPassword: Password1 -uid: HameedM -givenName: Marris -mail: HameedM@4c53d8b9e28c4cd28a44f87cb7441dcc.bitwarden.com -carLicense: DT0NW4 -departmentNumber: 6357 -employeeType: Normal -homePhone: +1 415 666-3764 -initials: M. H. -mobile: +1 415 647-1857 -pager: +1 415 587-3737 -roomNumber: 8430 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Aurelia Raynard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurelia Raynard -sn: Raynard -description: This is Aurelia Raynard's description -facsimileTelephoneNumber: +1 213 264-1707 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 435-7829 -title: Associate Management Assistant -userPassword: Password1 -uid: RaynardA -givenName: Aurelia -mail: RaynardA@d787c7f385a34c7297fe344b6f5b44de.bitwarden.com -carLicense: HRXRRF -departmentNumber: 4527 -employeeType: Normal -homePhone: +1 213 894-7889 -initials: A. R. -mobile: +1 213 135-7748 -pager: +1 213 121-8478 -roomNumber: 8927 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rivi Ludwig,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rivi Ludwig -sn: Ludwig -description: This is Rivi Ludwig's description -facsimileTelephoneNumber: +1 206 892-8962 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 111-9785 -title: Associate Management Warrior -userPassword: Password1 -uid: LudwigR -givenName: Rivi -mail: LudwigR@93dd838ca8d949aca268d37f8c816502.bitwarden.com -carLicense: I5BAFP -departmentNumber: 3636 -employeeType: Employee -homePhone: +1 206 572-4804 -initials: R. L. -mobile: +1 206 243-4778 -pager: +1 206 604-5984 -roomNumber: 9966 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Isadora Vaters,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isadora Vaters -sn: Vaters -description: This is Isadora Vaters's description -facsimileTelephoneNumber: +1 510 501-4376 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 707-8521 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: VatersI -givenName: Isadora -mail: VatersI@f6662f434fdd4fd4be948e8e6001fcc6.bitwarden.com -carLicense: GTHQUO -departmentNumber: 5779 -employeeType: Normal -homePhone: +1 510 827-8554 -initials: I. V. -mobile: +1 510 587-9666 -pager: +1 510 828-4331 -roomNumber: 8900 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elana Moy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elana Moy -sn: Moy -description: This is Elana Moy's description -facsimileTelephoneNumber: +1 415 400-6788 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 584-9657 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: MoyE -givenName: Elana -mail: MoyE@d2a22d407c40446c9ae2afe4d17eb26f.bitwarden.com -carLicense: HC7G26 -departmentNumber: 9659 -employeeType: Employee -homePhone: +1 415 232-8190 -initials: E. M. -mobile: +1 415 412-3821 -pager: +1 415 342-1216 -roomNumber: 9613 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Helaine Salamon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helaine Salamon -sn: Salamon -description: This is Helaine Salamon's description -facsimileTelephoneNumber: +1 510 931-6147 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 510 712-1491 -title: Master Product Development Grunt -userPassword: Password1 -uid: SalamonH -givenName: Helaine -mail: SalamonH@48f40b9c61c1423ab7f4a12dacd08cb7.bitwarden.com -carLicense: AHYSMS -departmentNumber: 2565 -employeeType: Contract -homePhone: +1 510 655-1375 -initials: H. S. -mobile: +1 510 891-2165 -pager: +1 510 927-4989 -roomNumber: 9289 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Spencer Lesperance -sn: Lesperance -description: This is Spencer Lesperance's description -facsimileTelephoneNumber: +1 206 235-5521 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 930-8541 -title: Master Janitorial Admin -userPassword: Password1 -uid: LesperaS -givenName: Spencer -mail: LesperaS@386f61091b6f44b2afca80c5832c14c3.bitwarden.com -carLicense: FWR456 -departmentNumber: 1157 -employeeType: Normal -homePhone: +1 206 719-5563 -initials: S. L. -mobile: +1 206 585-6707 -pager: +1 206 589-2673 -roomNumber: 8624 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Briney Smithson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Briney Smithson -sn: Smithson -description: This is Briney Smithson's description -facsimileTelephoneNumber: +1 818 766-8347 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 818 424-5297 -title: Junior Janitorial Janitor -userPassword: Password1 -uid: SmithsoB -givenName: Briney -mail: SmithsoB@7f9fd637b37c466c8750e6820ea2a8fc.bitwarden.com -carLicense: FY6AVO -departmentNumber: 5448 -employeeType: Normal -homePhone: +1 818 166-4228 -initials: B. S. -mobile: +1 818 684-7848 -pager: +1 818 785-5540 -roomNumber: 8156 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Selva Hillidge,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selva Hillidge -sn: Hillidge -description: This is Selva Hillidge's description -facsimileTelephoneNumber: +1 415 188-7065 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 863-4876 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: HillidgS -givenName: Selva -mail: HillidgS@7aa1caf88bc749828056470f21af9f2a.bitwarden.com -carLicense: QHPHB9 -departmentNumber: 7763 -employeeType: Contract -homePhone: +1 415 747-8479 -initials: S. H. -mobile: +1 415 247-9851 -pager: +1 415 535-9797 -roomNumber: 8637 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Babbie Kaczmarek -sn: Kaczmarek -description: This is Babbie Kaczmarek's description -facsimileTelephoneNumber: +1 415 132-4234 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 847-9759 -title: Master Peons Director -userPassword: Password1 -uid: KaczmarB -givenName: Babbie -mail: KaczmarB@6b3525e677274247ac9aa1be4373f97d.bitwarden.com -carLicense: 49VL9U -departmentNumber: 7690 -employeeType: Contract -homePhone: +1 415 142-2476 -initials: B. K. -mobile: +1 415 179-9664 -pager: +1 415 284-2147 -roomNumber: 9324 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Parks Pavitt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parks Pavitt -sn: Pavitt -description: This is Parks Pavitt's description -facsimileTelephoneNumber: +1 213 194-5391 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 743-6887 -title: Master Payroll Evangelist -userPassword: Password1 -uid: PavittP -givenName: Parks -mail: PavittP@3956b0c83ae444e7940e65fc8c4220d5.bitwarden.com -carLicense: F3OX3S -departmentNumber: 5705 -employeeType: Employee -homePhone: +1 213 877-8188 -initials: P. P. -mobile: +1 213 857-4433 -pager: +1 213 966-1308 -roomNumber: 8940 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Design Pepler,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Design Pepler -sn: Pepler -description: This is Design Pepler's description -facsimileTelephoneNumber: +1 510 805-6420 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 411-8051 -title: Junior Product Development Visionary -userPassword: Password1 -uid: PeplerD -givenName: Design -mail: PeplerD@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com -carLicense: 28BC7X -departmentNumber: 8218 -employeeType: Contract -homePhone: +1 510 688-9620 -initials: D. P. -mobile: +1 510 645-6325 -pager: +1 510 928-9827 -roomNumber: 9677 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bennesa McLachlan -sn: McLachlan -description: This is Bennesa McLachlan's description -facsimileTelephoneNumber: +1 408 731-4512 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 196-6392 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: McLachlB -givenName: Bennesa -mail: McLachlB@e89ca6a0c26a42d387c16cb15d267c2d.bitwarden.com -carLicense: 2DTI3R -departmentNumber: 8648 -employeeType: Normal -homePhone: +1 408 550-1001 -initials: B. M. -mobile: +1 408 142-4824 -pager: +1 408 265-8209 -roomNumber: 8557 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shahram Dpierre,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shahram Dpierre -sn: Dpierre -description: This is Shahram Dpierre's description -facsimileTelephoneNumber: +1 408 516-7503 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 575-6638 -title: Associate Peons Dictator -userPassword: Password1 -uid: DpierreS -givenName: Shahram -mail: DpierreS@fb2a9835511b44fba3bde94e482a2f71.bitwarden.com -carLicense: 3P291S -departmentNumber: 3552 -employeeType: Employee -homePhone: +1 408 922-3162 -initials: S. D. -mobile: +1 408 927-1752 -pager: +1 408 972-7613 -roomNumber: 9680 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sylvain Dans,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sylvain Dans -sn: Dans -description: This is Sylvain Dans's description -facsimileTelephoneNumber: +1 408 677-2439 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 640-5173 -title: Associate Peons Pinhead -userPassword: Password1 -uid: DansS -givenName: Sylvain -mail: DansS@53364c09d04c41208741c1b0a7953a20.bitwarden.com -carLicense: AR78C9 -departmentNumber: 8910 -employeeType: Contract -homePhone: +1 408 739-1874 -initials: S. D. -mobile: +1 408 428-8294 -pager: +1 408 881-6865 -roomNumber: 8932 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Phuoc Vu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phuoc Vu -sn: Vu -description: This is Phuoc Vu's description -facsimileTelephoneNumber: +1 510 426-7472 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 510 474-7509 -title: Master Administrative President -userPassword: Password1 -uid: VuP -givenName: Phuoc -mail: VuP@4bb54633dfd2486b94bd9f9680212641.bitwarden.com -carLicense: YUUAHV -departmentNumber: 9810 -employeeType: Employee -homePhone: +1 510 967-6651 -initials: P. V. -mobile: +1 510 896-3081 -pager: +1 510 105-7542 -roomNumber: 8575 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Candide Elhamahmy,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candide Elhamahmy -sn: Elhamahmy -description: This is Candide Elhamahmy's description -facsimileTelephoneNumber: +1 510 277-8443 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 349-7473 -title: Chief Management Warrior -userPassword: Password1 -uid: ElhamahC -givenName: Candide -mail: ElhamahC@dc7bbfc76a234dc7b7d174cbbe395c0b.bitwarden.com -carLicense: HIORU1 -departmentNumber: 2700 -employeeType: Normal -homePhone: +1 510 274-1509 -initials: C. E. -mobile: +1 510 508-7560 -pager: +1 510 252-7870 -roomNumber: 8128 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sarine Hopley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarine Hopley -sn: Hopley -description: This is Sarine Hopley's description -facsimileTelephoneNumber: +1 408 323-3353 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 210-1195 -title: Master Administrative Visionary -userPassword: Password1 -uid: HopleyS -givenName: Sarine -mail: HopleyS@9ce0b7ad2b3b48a6b3648a683329edc8.bitwarden.com -carLicense: 6KF72D -departmentNumber: 9977 -employeeType: Employee -homePhone: +1 408 693-9969 -initials: S. H. -mobile: +1 408 879-2999 -pager: +1 408 449-1445 -roomNumber: 9694 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Velma Brasset,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Velma Brasset -sn: Brasset -description: This is Velma Brasset's description -facsimileTelephoneNumber: +1 804 808-6891 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 584-3384 -title: Supreme Janitorial Stooge -userPassword: Password1 -uid: BrassetV -givenName: Velma -mail: BrassetV@83b93a170743455c988185ea6212d71d.bitwarden.com -carLicense: NJJ345 -departmentNumber: 3097 -employeeType: Employee -homePhone: +1 804 995-8408 -initials: V. B. -mobile: +1 804 543-7240 -pager: +1 804 980-7108 -roomNumber: 8503 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clemmie Brower,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clemmie Brower -sn: Brower -description: This is Clemmie Brower's description -facsimileTelephoneNumber: +1 408 865-2338 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 814-1118 -title: Associate Product Development Engineer -userPassword: Password1 -uid: BrowerC -givenName: Clemmie -mail: BrowerC@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com -carLicense: NMCE7R -departmentNumber: 6515 -employeeType: Normal -homePhone: +1 408 635-9566 -initials: C. B. -mobile: +1 408 965-1918 -pager: +1 408 295-5888 -roomNumber: 9350 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Drudy Badger,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drudy Badger -sn: Badger -description: This is Drudy Badger's description -facsimileTelephoneNumber: +1 510 776-3344 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 510 946-7447 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: BadgerD -givenName: Drudy -mail: BadgerD@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com -carLicense: VA6LF7 -departmentNumber: 1679 -employeeType: Normal -homePhone: +1 510 145-1623 -initials: D. B. -mobile: +1 510 606-3607 -pager: +1 510 537-9592 -roomNumber: 8659 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oralle Jedrysiak -sn: Jedrysiak -description: This is Oralle Jedrysiak's description -facsimileTelephoneNumber: +1 818 791-9147 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 151-5964 -title: Chief Human Resources Figurehead -userPassword: Password1 -uid: JedrysiO -givenName: Oralle -mail: JedrysiO@2ef3a4093f014684b569f775d65baa2d.bitwarden.com -carLicense: UVG6Y8 -departmentNumber: 2993 -employeeType: Contract -homePhone: +1 818 779-1082 -initials: O. J. -mobile: +1 818 959-7094 -pager: +1 818 145-6781 -roomNumber: 8194 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kimmy Nagaraj,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kimmy Nagaraj -sn: Nagaraj -description: This is Kimmy Nagaraj's description -facsimileTelephoneNumber: +1 510 381-1253 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 639-9236 -title: Junior Management Stooge -userPassword: Password1 -uid: NagarajK -givenName: Kimmy -mail: NagarajK@01636af448174d9e81627003646ae048.bitwarden.com -carLicense: WUTTK1 -departmentNumber: 2068 -employeeType: Normal -homePhone: +1 510 253-7950 -initials: K. N. -mobile: +1 510 130-5125 -pager: +1 510 434-2846 -roomNumber: 8175 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaw Masciarelli -sn: Masciarelli -description: This is Shaw Masciarelli's description -facsimileTelephoneNumber: +1 415 886-7029 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 353-3596 -title: Master Human Resources Vice President -userPassword: Password1 -uid: MasciarS -givenName: Shaw -mail: MasciarS@64472d4bb2754862940627d944b8828a.bitwarden.com -carLicense: HXE36G -departmentNumber: 1267 -employeeType: Normal -homePhone: +1 415 280-4419 -initials: S. M. -mobile: +1 415 294-5826 -pager: +1 415 833-8902 -roomNumber: 9768 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Torrie Lai,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Torrie Lai -sn: Lai -description: This is Torrie Lai's description -facsimileTelephoneNumber: +1 408 907-2749 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 280-1974 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: LaiT -givenName: Torrie -mail: LaiT@52e0e9f6cfbd4d388e2c16ea365b21a0.bitwarden.com -carLicense: 81NW8L -departmentNumber: 5986 -employeeType: Employee -homePhone: +1 408 382-2336 -initials: T. L. -mobile: +1 408 509-9849 -pager: +1 408 503-1440 -roomNumber: 8030 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bryon Bannister,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryon Bannister -sn: Bannister -description: This is Bryon Bannister's description -facsimileTelephoneNumber: +1 415 748-6665 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 488-2886 -title: Master Administrative Director -userPassword: Password1 -uid: BannistB -givenName: Bryon -mail: BannistB@6636a4865c34403b8e78c60d39c88859.bitwarden.com -carLicense: LXH9MF -departmentNumber: 9659 -employeeType: Contract -homePhone: +1 415 164-8771 -initials: B. B. -mobile: +1 415 412-2126 -pager: +1 415 108-7902 -roomNumber: 9866 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlyn Nizamuddin -sn: Nizamuddin -description: This is Karlyn Nizamuddin's description -facsimileTelephoneNumber: +1 510 459-2086 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 519-2298 -title: Supreme Janitorial Grunt -userPassword: Password1 -uid: NizamudK -givenName: Karlyn -mail: NizamudK@5b2fc222b3cc4e338ab7a0b7bd08ce8f.bitwarden.com -carLicense: I8I1AA -departmentNumber: 3846 -employeeType: Employee -homePhone: +1 510 734-8809 -initials: K. N. -mobile: +1 510 144-4644 -pager: +1 510 801-4353 -roomNumber: 9393 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Melford Charter,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melford Charter -sn: Charter -description: This is Melford Charter's description -facsimileTelephoneNumber: +1 818 578-8421 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 818 247-7925 -title: Supreme Administrative Writer -userPassword: Password1 -uid: CharterM -givenName: Melford -mail: CharterM@7c92d6dfba144f9587593ce6eeb4024f.bitwarden.com -carLicense: 5TYHDF -departmentNumber: 9814 -employeeType: Contract -homePhone: +1 818 172-2397 -initials: M. C. -mobile: +1 818 215-7311 -pager: +1 818 582-4148 -roomNumber: 9749 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Meriel Tota,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meriel Tota -sn: Tota -description: This is Meriel Tota's description -facsimileTelephoneNumber: +1 213 746-2897 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 389-2900 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: TotaM -givenName: Meriel -mail: TotaM@f190d7cfec0941b2829b0757aff4e20f.bitwarden.com -carLicense: R7VY5S -departmentNumber: 5269 -employeeType: Normal -homePhone: +1 213 761-1891 -initials: M. T. -mobile: +1 213 535-7144 -pager: +1 213 797-2337 -roomNumber: 8232 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anwar Starkebaum -sn: Starkebaum -description: This is Anwar Starkebaum's description -facsimileTelephoneNumber: +1 206 182-5467 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 657-8481 -title: Junior Administrative Technician -userPassword: Password1 -uid: StarkebA -givenName: Anwar -mail: StarkebA@125db6eb897d4dc09e52aa3ed3ba2ff6.bitwarden.com -carLicense: A2VDTU -departmentNumber: 9799 -employeeType: Employee -homePhone: +1 206 757-4021 -initials: A. S. -mobile: +1 206 750-3628 -pager: +1 206 863-2902 -roomNumber: 8130 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blanch Eskildsen -sn: Eskildsen -description: This is Blanch Eskildsen's description -facsimileTelephoneNumber: +1 415 657-6799 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 415 546-7622 -title: Junior Product Development Figurehead -userPassword: Password1 -uid: EskildsB -givenName: Blanch -mail: EskildsB@c33b0066e4a94f2895f1ce062cf2a5b2.bitwarden.com -carLicense: T7DQ4U -departmentNumber: 5895 -employeeType: Normal -homePhone: +1 415 960-2851 -initials: B. E. -mobile: +1 415 969-5566 -pager: +1 415 969-6664 -roomNumber: 9696 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Darrel Samora,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrel Samora -sn: Samora -description: This is Darrel Samora's description -facsimileTelephoneNumber: +1 804 451-4399 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 839-3939 -title: Associate Management Manager -userPassword: Password1 -uid: SamoraD -givenName: Darrel -mail: SamoraD@8a049b49f80d420a99b91944b3a9e703.bitwarden.com -carLicense: SRYM63 -departmentNumber: 1531 -employeeType: Normal -homePhone: +1 804 119-9219 -initials: D. S. -mobile: +1 804 578-4290 -pager: +1 804 887-3955 -roomNumber: 8032 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gabi Fares,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gabi Fares -sn: Fares -description: This is Gabi Fares's description -facsimileTelephoneNumber: +1 510 989-4909 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 910-1857 -title: Master Peons Visionary -userPassword: Password1 -uid: FaresG -givenName: Gabi -mail: FaresG@18205705f4aa44e78c4d1ab11d74972d.bitwarden.com -carLicense: JN4146 -departmentNumber: 9322 -employeeType: Normal -homePhone: +1 510 273-2223 -initials: G. F. -mobile: +1 510 606-7492 -pager: +1 510 640-8528 -roomNumber: 8668 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bao Byrd,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bao Byrd -sn: Byrd -description: This is Bao Byrd's description -facsimileTelephoneNumber: +1 804 828-4134 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 221-3081 -title: Associate Management Fellow -userPassword: Password1 -uid: ByrdB -givenName: Bao -mail: ByrdB@261b23ab87dc475a83d11a0978547d13.bitwarden.com -carLicense: JYALF3 -departmentNumber: 1682 -employeeType: Employee -homePhone: +1 804 120-6807 -initials: B. B. -mobile: +1 804 714-6752 -pager: +1 804 744-3414 -roomNumber: 8938 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trev EhningerCuervo -sn: EhningerCuervo -description: This is Trev EhningerCuervo's description -facsimileTelephoneNumber: +1 408 949-5160 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 167-4780 -title: Chief Human Resources Madonna -userPassword: Password1 -uid: EhningeT -givenName: Trev -mail: EhningeT@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com -carLicense: C5AF35 -departmentNumber: 4357 -employeeType: Employee -homePhone: +1 408 109-7481 -initials: T. E. -mobile: +1 408 381-7983 -pager: +1 408 723-7641 -roomNumber: 8774 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wilf Rodenfels,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilf Rodenfels -sn: Rodenfels -description: This is Wilf Rodenfels's description -facsimileTelephoneNumber: +1 510 913-6297 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 510 541-2410 -title: Associate Peons Punk -userPassword: Password1 -uid: RodenfeW -givenName: Wilf -mail: RodenfeW@a0afbb1124764d928b9fba2f48eaa17d.bitwarden.com -carLicense: E6Q079 -departmentNumber: 6342 -employeeType: Employee -homePhone: +1 510 982-1692 -initials: W. R. -mobile: +1 510 430-5626 -pager: +1 510 825-5106 -roomNumber: 9690 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeri Gupton,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeri Gupton -sn: Gupton -description: This is Jeri Gupton's description -facsimileTelephoneNumber: +1 415 430-4615 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 210-8174 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: GuptonJ -givenName: Jeri -mail: GuptonJ@0849cc8e014d4858afd4576e05a417c0.bitwarden.com -carLicense: AJO7JK -departmentNumber: 2960 -employeeType: Normal -homePhone: +1 415 109-7094 -initials: J. G. -mobile: +1 415 549-9847 -pager: +1 415 109-5189 -roomNumber: 8601 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Didar Brooksbank,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Didar Brooksbank -sn: Brooksbank -description: This is Didar Brooksbank's description -facsimileTelephoneNumber: +1 804 544-7268 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 804 497-7654 -title: Junior Payroll Punk -userPassword: Password1 -uid: BrooksbD -givenName: Didar -mail: BrooksbD@7448491b00a74a3e95be2c2010be9a72.bitwarden.com -carLicense: 4WO6XQ -departmentNumber: 1094 -employeeType: Contract -homePhone: +1 804 173-8469 -initials: D. B. -mobile: +1 804 275-6911 -pager: +1 804 161-8946 -roomNumber: 9330 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashraf Grigsby -sn: Grigsby -description: This is Ashraf Grigsby's description -facsimileTelephoneNumber: +1 804 742-2058 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 812-8463 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: GrigsbyA -givenName: Ashraf -mail: GrigsbyA@3bfc3de402e042a394d461b86f93128b.bitwarden.com -carLicense: LHXJM2 -departmentNumber: 6296 -employeeType: Normal -homePhone: +1 804 979-6555 -initials: A. G. -mobile: +1 804 317-9709 -pager: +1 804 400-7966 -roomNumber: 9599 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cathe Malone,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathe Malone -sn: Malone -description: This is Cathe Malone's description -facsimileTelephoneNumber: +1 206 516-8980 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 618-1613 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: MaloneC -givenName: Cathe -mail: MaloneC@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com -carLicense: G50W0N -departmentNumber: 2061 -employeeType: Normal -homePhone: +1 206 368-2446 -initials: C. M. -mobile: +1 206 242-1709 -pager: +1 206 731-7708 -roomNumber: 9137 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Evey Haddad,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evey Haddad -sn: Haddad -description: This is Evey Haddad's description -facsimileTelephoneNumber: +1 415 377-1297 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 295-6689 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: HaddadE -givenName: Evey -mail: HaddadE@a8c73be9cd69486db83d92f072753b6a.bitwarden.com -carLicense: 4YIPKK -departmentNumber: 4602 -employeeType: Normal -homePhone: +1 415 335-8744 -initials: E. H. -mobile: +1 415 716-6223 -pager: +1 415 762-6602 -roomNumber: 8044 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ginette Smoot,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginette Smoot -sn: Smoot -description: This is Ginette Smoot's description -facsimileTelephoneNumber: +1 213 397-5001 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 213 385-2046 -title: Master Payroll Mascot -userPassword: Password1 -uid: SmootG -givenName: Ginette -mail: SmootG@fdf824816adf41dbba98ed5c326be597.bitwarden.com -carLicense: BLMK8S -departmentNumber: 4601 -employeeType: Employee -homePhone: +1 213 608-8087 -initials: G. S. -mobile: +1 213 402-1759 -pager: +1 213 415-4886 -roomNumber: 8912 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dorita Heffner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorita Heffner -sn: Heffner -description: This is Dorita Heffner's description -facsimileTelephoneNumber: +1 510 408-6148 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 794-7149 -title: Associate Product Development Dictator -userPassword: Password1 -uid: HeffnerD -givenName: Dorita -mail: HeffnerD@ea33a214953b4a6b925d5d0efa8ea38e.bitwarden.com -carLicense: 8K1G4B -departmentNumber: 9798 -employeeType: Normal -homePhone: +1 510 625-6265 -initials: D. H. -mobile: +1 510 544-5392 -pager: +1 510 500-1197 -roomNumber: 9944 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melvin Medefesser -sn: Medefesser -description: This is Melvin Medefesser's description -facsimileTelephoneNumber: +1 408 267-1077 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 408 308-2977 -title: Associate Human Resources Stooge -userPassword: Password1 -uid: MedefesM -givenName: Melvin -mail: MedefesM@35b79d47268c45459bca63c56a16e1e7.bitwarden.com -carLicense: 1A2XSQ -departmentNumber: 4294 -employeeType: Employee -homePhone: +1 408 648-6874 -initials: M. M. -mobile: +1 408 703-7194 -pager: +1 408 142-1317 -roomNumber: 9351 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Reind Mufti,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reind Mufti -sn: Mufti -description: This is Reind Mufti's description -facsimileTelephoneNumber: +1 213 697-9916 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 805-1360 -title: Chief Management Artist -userPassword: Password1 -uid: MuftiR -givenName: Reind -mail: MuftiR@f96730e4fa6b40f5ba7deeeca51513e0.bitwarden.com -carLicense: MQ0D4T -departmentNumber: 6179 -employeeType: Employee -homePhone: +1 213 777-1014 -initials: R. M. -mobile: +1 213 477-5195 -pager: +1 213 740-8364 -roomNumber: 9068 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carolynn Dikens,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolynn Dikens -sn: Dikens -description: This is Carolynn Dikens's description -facsimileTelephoneNumber: +1 408 303-7445 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 326-7711 -title: Associate Payroll Developer -userPassword: Password1 -uid: DikensC -givenName: Carolynn -mail: DikensC@a69feaacad634790a69fdf1db6b0a8d9.bitwarden.com -carLicense: RA086T -departmentNumber: 6081 -employeeType: Normal -homePhone: +1 408 211-8581 -initials: C. D. -mobile: +1 408 816-1996 -pager: +1 408 220-6568 -roomNumber: 9913 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meredith Parmenter -sn: Parmenter -description: This is Meredith Parmenter's description -facsimileTelephoneNumber: +1 818 335-5066 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 729-2452 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: ParmentM -givenName: Meredith -mail: ParmentM@c6381227edb84dfc90689a9cc3080334.bitwarden.com -carLicense: 97MHFD -departmentNumber: 8888 -employeeType: Employee -homePhone: +1 818 396-5941 -initials: M. P. -mobile: +1 818 138-4462 -pager: +1 818 531-6976 -roomNumber: 9375 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lurleen Eberle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lurleen Eberle -sn: Eberle -description: This is Lurleen Eberle's description -facsimileTelephoneNumber: +1 408 664-6294 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 796-4324 -title: Chief Product Development Vice President -userPassword: Password1 -uid: EberleL -givenName: Lurleen -mail: EberleL@2fa76c066c6743bba9db4e894f651e69.bitwarden.com -carLicense: MWO3VD -departmentNumber: 3340 -employeeType: Employee -homePhone: +1 408 932-9692 -initials: L. E. -mobile: +1 408 177-6600 -pager: +1 408 922-8848 -roomNumber: 9134 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tandy Fssup,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tandy Fssup -sn: Fssup -description: This is Tandy Fssup's description -facsimileTelephoneNumber: +1 510 499-4832 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 510 797-5609 -title: Supreme Peons Assistant -userPassword: Password1 -uid: FssupT -givenName: Tandy -mail: FssupT@b69339dab59940869a3e5a49d58c958e.bitwarden.com -carLicense: 9UJTE8 -departmentNumber: 4652 -employeeType: Contract -homePhone: +1 510 126-1145 -initials: T. F. -mobile: +1 510 746-8383 -pager: +1 510 429-3856 -roomNumber: 9995 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Datas Simmonds,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Datas Simmonds -sn: Simmonds -description: This is Datas Simmonds's description -facsimileTelephoneNumber: +1 415 304-2517 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 513-8942 -title: Chief Product Development Assistant -userPassword: Password1 -uid: SimmondD -givenName: Datas -mail: SimmondD@63a11e75c405416bb483a040d9d4e6c0.bitwarden.com -carLicense: W86B5M -departmentNumber: 4188 -employeeType: Normal -homePhone: +1 415 737-6423 -initials: D. S. -mobile: +1 415 174-7378 -pager: +1 415 144-9545 -roomNumber: 8541 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Darline Frankenberger,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darline Frankenberger -sn: Frankenberger -description: This is Darline Frankenberger's description -facsimileTelephoneNumber: +1 818 766-1194 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 806-8594 -title: Junior Management Assistant -userPassword: Password1 -uid: FrankenD -givenName: Darline -mail: FrankenD@b5537025c24b4ad290ca22694ec8fb06.bitwarden.com -carLicense: BPQOB7 -departmentNumber: 6874 -employeeType: Normal -homePhone: +1 818 573-4409 -initials: D. F. -mobile: +1 818 447-5561 -pager: +1 818 713-4969 -roomNumber: 8895 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Merry Cadtools,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merry Cadtools -sn: Cadtools -description: This is Merry Cadtools's description -facsimileTelephoneNumber: +1 818 335-2735 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 808-5207 -title: Chief Payroll Artist -userPassword: Password1 -uid: CadtoolM -givenName: Merry -mail: CadtoolM@534c35ac167944c782718311b9e185bc.bitwarden.com -carLicense: P5HL7G -departmentNumber: 8684 -employeeType: Employee -homePhone: +1 818 844-5968 -initials: M. C. -mobile: +1 818 430-6685 -pager: +1 818 592-1003 -roomNumber: 8977 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chabane Hornung,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chabane Hornung -sn: Hornung -description: This is Chabane Hornung's description -facsimileTelephoneNumber: +1 206 289-8639 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 206 262-3221 -title: Associate Peons Assistant -userPassword: Password1 -uid: HornungC -givenName: Chabane -mail: HornungC@b5a44095f2374197a4ff741b9417f6b1.bitwarden.com -carLicense: S3YVAP -departmentNumber: 8541 -employeeType: Normal -homePhone: +1 206 703-3060 -initials: C. H. -mobile: +1 206 529-2728 -pager: +1 206 672-6587 -roomNumber: 8777 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Satoshi Yogeswaran -sn: Yogeswaran -description: This is Satoshi Yogeswaran's description -facsimileTelephoneNumber: +1 213 706-6951 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 682-6841 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: YogeswaS -givenName: Satoshi -mail: YogeswaS@f8a322034d5e45cc8676b5e9fe5f5d0f.bitwarden.com -carLicense: LU7X5C -departmentNumber: 2863 -employeeType: Employee -homePhone: +1 213 958-4476 -initials: S. Y. -mobile: +1 213 990-5050 -pager: +1 213 563-2611 -roomNumber: 8120 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Colm Yassa,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Colm Yassa -sn: Yassa -description: This is Colm Yassa's description -facsimileTelephoneNumber: +1 415 912-7983 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 978-2763 -title: Chief Peons Developer -userPassword: Password1 -uid: YassaC -givenName: Colm -mail: YassaC@b968f655b96e4ab58fcc2e120f71a7b7.bitwarden.com -carLicense: IR2I1X -departmentNumber: 9451 -employeeType: Employee -homePhone: +1 415 656-9417 -initials: C. Y. -mobile: +1 415 959-3315 -pager: +1 415 971-9661 -roomNumber: 8609 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jillayne Cobb,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jillayne Cobb -sn: Cobb -description: This is Jillayne Cobb's description -facsimileTelephoneNumber: +1 415 922-6066 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 733-9947 -title: Chief Peons Visionary -userPassword: Password1 -uid: CobbJ -givenName: Jillayne -mail: CobbJ@3009937061fa44e08033cd2d77480708.bitwarden.com -carLicense: KGE8H8 -departmentNumber: 4746 -employeeType: Normal -homePhone: +1 415 324-8226 -initials: J. C. -mobile: +1 415 691-9496 -pager: +1 415 897-4743 -roomNumber: 9820 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ruby Brotherton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruby Brotherton -sn: Brotherton -description: This is Ruby Brotherton's description -facsimileTelephoneNumber: +1 510 304-5451 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 557-8014 -title: Junior Peons Developer -userPassword: Password1 -uid: BrotherR -givenName: Ruby -mail: BrotherR@878c3f08cca44fc1891338a97a6ec462.bitwarden.com -carLicense: E44K5B -departmentNumber: 7200 -employeeType: Normal -homePhone: +1 510 245-3832 -initials: R. B. -mobile: +1 510 918-9760 -pager: +1 510 316-9700 -roomNumber: 9433 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Marjie Geyer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marjie Geyer -sn: Geyer -description: This is Marjie Geyer's description -facsimileTelephoneNumber: +1 206 523-9424 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 206 652-5256 -title: Master Product Development Figurehead -userPassword: Password1 -uid: GeyerM -givenName: Marjie -mail: GeyerM@25d2cd968a404f8ab3144ef7402e2e12.bitwarden.com -carLicense: 0EB8B7 -departmentNumber: 4303 -employeeType: Contract -homePhone: +1 206 378-8799 -initials: M. G. -mobile: +1 206 813-7933 -pager: +1 206 567-9614 -roomNumber: 8261 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=McGee Schreiber,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: McGee Schreiber -sn: Schreiber -description: This is McGee Schreiber's description -facsimileTelephoneNumber: +1 415 541-9396 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 367-9351 -title: Junior Peons Artist -userPassword: Password1 -uid: SchreibM -givenName: McGee -mail: SchreibM@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com -carLicense: OEDIJ3 -departmentNumber: 8054 -employeeType: Normal -homePhone: +1 415 181-6158 -initials: M. S. -mobile: +1 415 267-5751 -pager: +1 415 686-9928 -roomNumber: 9730 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Myrna Befanis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrna Befanis -sn: Befanis -description: This is Myrna Befanis's description -facsimileTelephoneNumber: +1 510 844-8966 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 660-6193 -title: Supreme Product Testing President -userPassword: Password1 -uid: BefanisM -givenName: Myrna -mail: BefanisM@6aceddcd02a24d54bf8652b3d2b2d14f.bitwarden.com -carLicense: 3XNUQK -departmentNumber: 8453 -employeeType: Normal -homePhone: +1 510 911-4062 -initials: M. B. -mobile: +1 510 786-6618 -pager: +1 510 942-9828 -roomNumber: 8038 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roddy Gerlinsky -sn: Gerlinsky -description: This is Roddy Gerlinsky's description -facsimileTelephoneNumber: +1 804 278-1930 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 683-8819 -title: Master Payroll Manager -userPassword: Password1 -uid: GerlinsR -givenName: Roddy -mail: GerlinsR@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com -carLicense: EM2K4X -departmentNumber: 6685 -employeeType: Contract -homePhone: +1 804 597-5336 -initials: R. G. -mobile: +1 804 770-7372 -pager: +1 804 236-7121 -roomNumber: 8638 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maurine StJames,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurine StJames -sn: StJames -description: This is Maurine StJames's description -facsimileTelephoneNumber: +1 213 697-6593 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 799-4074 -title: Supreme Payroll Grunt -userPassword: Password1 -uid: StJamesM -givenName: Maurine -mail: StJamesM@61f214f1d8524b3087f5851880215a12.bitwarden.com -carLicense: OLJ4YP -departmentNumber: 3856 -employeeType: Employee -homePhone: +1 213 603-2572 -initials: M. S. -mobile: +1 213 416-7498 -pager: +1 213 552-5252 -roomNumber: 9432 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ebony DuBerger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ebony DuBerger -sn: DuBerger -description: This is Ebony DuBerger's description -facsimileTelephoneNumber: +1 510 155-5803 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 998-5975 -title: Chief Administrative President -userPassword: Password1 -uid: DuBergeE -givenName: Ebony -mail: DuBergeE@91cbd6d172d049aa810e0a17e3a01178.bitwarden.com -carLicense: 2VF8CI -departmentNumber: 4093 -employeeType: Contract -homePhone: +1 510 304-2480 -initials: E. D. -mobile: +1 510 452-9892 -pager: +1 510 586-6176 -roomNumber: 8507 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Donnette Leighton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donnette Leighton -sn: Leighton -description: This is Donnette Leighton's description -facsimileTelephoneNumber: +1 213 590-3832 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 575-3838 -title: Associate Management President -userPassword: Password1 -uid: LeightoD -givenName: Donnette -mail: LeightoD@ecd15df669db43f58dc8c85e172bc379.bitwarden.com -carLicense: 2D460P -departmentNumber: 2421 -employeeType: Normal -homePhone: +1 213 295-7661 -initials: D. L. -mobile: +1 213 665-6546 -pager: +1 213 748-4242 -roomNumber: 9478 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Daryl Broca,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daryl Broca -sn: Broca -description: This is Daryl Broca's description -facsimileTelephoneNumber: +1 206 327-9060 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 209-5529 -title: Associate Administrative Director -userPassword: Password1 -uid: BrocaD -givenName: Daryl -mail: BrocaD@777f3fb506bf4a578c7c26472bf8bb1e.bitwarden.com -carLicense: YFJ7GB -departmentNumber: 6513 -employeeType: Employee -homePhone: +1 206 908-2307 -initials: D. B. -mobile: +1 206 344-4513 -pager: +1 206 871-3415 -roomNumber: 8485 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cristabel Orth,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristabel Orth -sn: Orth -description: This is Cristabel Orth's description -facsimileTelephoneNumber: +1 818 419-7229 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 555-7996 -title: Master Peons Stooge -userPassword: Password1 -uid: OrthC -givenName: Cristabel -mail: OrthC@e37545ccfd5e4e4281ccd855336fcf03.bitwarden.com -carLicense: 74TAEB -departmentNumber: 4593 -employeeType: Normal -homePhone: +1 818 320-4873 -initials: C. O. -mobile: +1 818 368-5925 -pager: +1 818 327-8060 -roomNumber: 9650 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Constantia Lundy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constantia Lundy -sn: Lundy -description: This is Constantia Lundy's description -facsimileTelephoneNumber: +1 510 429-2463 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 749-5975 -title: Chief Payroll Fellow -userPassword: Password1 -uid: LundyC -givenName: Constantia -mail: LundyC@8ad57fa5a0014d7d86bb326fd3c22de8.bitwarden.com -carLicense: ASXOBF -departmentNumber: 2702 -employeeType: Employee -homePhone: +1 510 987-3752 -initials: C. L. -mobile: +1 510 209-6652 -pager: +1 510 493-4660 -roomNumber: 9186 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morris Ehrlich -sn: Ehrlich -description: This is Morris Ehrlich's description -facsimileTelephoneNumber: +1 510 137-9467 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 368-2317 -title: Master Product Testing Director -userPassword: Password1 -uid: EhrlichM -givenName: Morris -mail: EhrlichM@0ffbff9053044f38bd1b7473f0a9a2e0.bitwarden.com -carLicense: UQMH4V -departmentNumber: 7203 -employeeType: Employee -homePhone: +1 510 608-2405 -initials: M. E. -mobile: +1 510 893-3115 -pager: +1 510 904-9818 -roomNumber: 9331 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Shashi Amini,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shashi Amini -sn: Amini -description: This is Shashi Amini's description -facsimileTelephoneNumber: +1 206 812-4514 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 101-1790 -title: Chief Janitorial Janitor -userPassword: Password1 -uid: AminiS -givenName: Shashi -mail: AminiS@b23fe60aaafa49a2908f5eec32556f6f.bitwarden.com -carLicense: 04CK2Q -departmentNumber: 8459 -employeeType: Normal -homePhone: +1 206 971-2104 -initials: S. A. -mobile: +1 206 902-2821 -pager: +1 206 778-8096 -roomNumber: 8709 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shlomo Laferriere -sn: Laferriere -description: This is Shlomo Laferriere's description -facsimileTelephoneNumber: +1 415 374-3144 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 338-3036 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: LaferriS -givenName: Shlomo -mail: LaferriS@20e4624ef958401cb7727678bb609188.bitwarden.com -carLicense: QWOPWU -departmentNumber: 8312 -employeeType: Contract -homePhone: +1 415 220-6316 -initials: S. L. -mobile: +1 415 234-3070 -pager: +1 415 479-9155 -roomNumber: 9469 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lianna Horton,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Leola Richard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leola Richard -sn: Richard -description: This is Leola Richard's description -facsimileTelephoneNumber: +1 415 881-4947 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 173-3604 -title: Associate Management Assistant -userPassword: Password1 -uid: RichardL -givenName: Leola -mail: RichardL@bc55479898d74c7080b7e1e95bbf0012.bitwarden.com -carLicense: NJXP3L -departmentNumber: 1171 -employeeType: Contract -homePhone: +1 415 817-5964 -initials: L. R. -mobile: +1 415 464-2232 -pager: +1 415 953-8684 -roomNumber: 9774 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jai Pascas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jai Pascas -sn: Pascas -description: This is Jai Pascas's description -facsimileTelephoneNumber: +1 415 755-1060 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 436-7599 -title: Associate Human Resources Pinhead -userPassword: Password1 -uid: PascasJ -givenName: Jai -mail: PascasJ@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com -carLicense: EYN5UY -departmentNumber: 9907 -employeeType: Employee -homePhone: +1 415 221-8646 -initials: J. P. -mobile: +1 415 568-1047 -pager: +1 415 934-7065 -roomNumber: 9188 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Petronille Receiving,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petronille Receiving -sn: Receiving -description: This is Petronille Receiving's description -facsimileTelephoneNumber: +1 818 512-4834 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 818 878-7773 -title: Chief Product Development Vice President -userPassword: Password1 -uid: ReceiviP -givenName: Petronille -mail: ReceiviP@0849cc8e014d4858afd4576e05a417c0.bitwarden.com -carLicense: 07LCKW -departmentNumber: 6399 -employeeType: Employee -homePhone: +1 818 175-3434 -initials: P. R. -mobile: +1 818 222-3227 -pager: +1 818 519-8510 -roomNumber: 8641 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sidonia Badza,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sidonia Badza -sn: Badza -description: This is Sidonia Badza's description -facsimileTelephoneNumber: +1 415 898-7917 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 311-7026 -title: Master Administrative Grunt -userPassword: Password1 -uid: BadzaS -givenName: Sidonia -mail: BadzaS@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com -carLicense: 0KA4CM -departmentNumber: 8375 -employeeType: Contract -homePhone: +1 415 108-8293 -initials: S. B. -mobile: +1 415 893-3874 -pager: +1 415 242-9001 -roomNumber: 9204 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hyacintha Morocz -sn: Morocz -description: This is Hyacintha Morocz's description -facsimileTelephoneNumber: +1 415 778-7551 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 626-2487 -title: Associate Human Resources Visionary -userPassword: Password1 -uid: MoroczH -givenName: Hyacintha -mail: MoroczH@50bf451998584438a3048a19956d7120.bitwarden.com -carLicense: 6UGOM7 -departmentNumber: 4948 -employeeType: Contract -homePhone: +1 415 879-3042 -initials: H. M. -mobile: +1 415 379-5553 -pager: +1 415 148-9757 -roomNumber: 8932 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Career Culkin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Career Culkin -sn: Culkin -description: This is Career Culkin's description -facsimileTelephoneNumber: +1 415 906-5481 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 323-4975 -title: Master Product Development Janitor -userPassword: Password1 -uid: CulkinC -givenName: Career -mail: CulkinC@4a8d7287d7f44feeb52346f4896c7bad.bitwarden.com -carLicense: 7OSN32 -departmentNumber: 6038 -employeeType: Contract -homePhone: +1 415 938-7244 -initials: C. C. -mobile: +1 415 552-5506 -pager: +1 415 580-2970 -roomNumber: 8761 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquie Sommerdorf -sn: Sommerdorf -description: This is Jacquie Sommerdorf's description -facsimileTelephoneNumber: +1 213 113-5173 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 213 617-7122 -title: Junior Product Development Engineer -userPassword: Password1 -uid: SommerdJ -givenName: Jacquie -mail: SommerdJ@c34ff4c9cd024e7eb996d78abb689848.bitwarden.com -carLicense: 77DSWA -departmentNumber: 6229 -employeeType: Employee -homePhone: +1 213 377-8734 -initials: J. S. -mobile: +1 213 306-2815 -pager: +1 213 436-2629 -roomNumber: 8518 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aubrey Mina,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aubrey Mina -sn: Mina -description: This is Aubrey Mina's description -facsimileTelephoneNumber: +1 415 431-6389 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 661-9238 -title: Junior Peons Assistant -userPassword: Password1 -uid: MinaA -givenName: Aubrey -mail: MinaA@5ce7099e829941498f32f6630dda9440.bitwarden.com -carLicense: TMQS4F -departmentNumber: 7237 -employeeType: Contract -homePhone: +1 415 142-5701 -initials: A. M. -mobile: +1 415 444-4846 -pager: +1 415 857-1321 -roomNumber: 8591 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wilhelmus Mandel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilhelmus Mandel -sn: Mandel -description: This is Wilhelmus Mandel's description -facsimileTelephoneNumber: +1 213 622-9563 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 654-2853 -title: Supreme Management Consultant -userPassword: Password1 -uid: MandelW -givenName: Wilhelmus -mail: MandelW@ba60a08b258046f98633fd3c737e4f83.bitwarden.com -carLicense: FV730G -departmentNumber: 7028 -employeeType: Normal -homePhone: +1 213 960-1249 -initials: W. M. -mobile: +1 213 689-2794 -pager: +1 213 137-9333 -roomNumber: 8660 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anya Kantor,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anya Kantor -sn: Kantor -description: This is Anya Kantor's description -facsimileTelephoneNumber: +1 510 198-9168 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 455-7629 -title: Associate Product Testing Janitor -userPassword: Password1 -uid: KantorA -givenName: Anya -mail: KantorA@281ce2096ed0496b9bf2ff2a6d46ed5b.bitwarden.com -carLicense: HKSM24 -departmentNumber: 6524 -employeeType: Employee -homePhone: +1 510 547-3966 -initials: A. K. -mobile: +1 510 790-9296 -pager: +1 510 407-7924 -roomNumber: 8957 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=National MacCarthy,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: National MacCarthy -sn: MacCarthy -description: This is National MacCarthy's description -facsimileTelephoneNumber: +1 510 265-8803 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 388-3936 -title: Master Product Development Writer -userPassword: Password1 -uid: MacCartN -givenName: National -mail: MacCartN@ccc8e04b90324a8e82f8a7a8473e9c5e.bitwarden.com -carLicense: S78NWG -departmentNumber: 5503 -employeeType: Contract -homePhone: +1 510 689-4936 -initials: N. M. -mobile: +1 510 182-6714 -pager: +1 510 493-1630 -roomNumber: 8702 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nissie Heile,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nissie Heile -sn: Heile -description: This is Nissie Heile's description -facsimileTelephoneNumber: +1 408 362-8018 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 632-5222 -title: Junior Management Assistant -userPassword: Password1 -uid: HeileN -givenName: Nissie -mail: HeileN@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com -carLicense: RUOPNA -departmentNumber: 9278 -employeeType: Contract -homePhone: +1 408 703-9918 -initials: N. H. -mobile: +1 408 648-5258 -pager: +1 408 887-6554 -roomNumber: 8607 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pac Popowycz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pac Popowycz -sn: Popowycz -description: This is Pac Popowycz's description -facsimileTelephoneNumber: +1 415 366-1228 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 871-7086 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: PopowycP -givenName: Pac -mail: PopowycP@1b72730ac3814cefac0b769b1824f8f3.bitwarden.com -carLicense: P4H0EG -departmentNumber: 2033 -employeeType: Employee -homePhone: +1 415 944-2242 -initials: P. P. -mobile: +1 415 969-9349 -pager: +1 415 271-9888 -roomNumber: 8010 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Blancha Cousineau,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blancha Cousineau -sn: Cousineau -description: This is Blancha Cousineau's description -facsimileTelephoneNumber: +1 206 481-7185 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 412-4578 -title: Junior Peons Architect -userPassword: Password1 -uid: CousineB -givenName: Blancha -mail: CousineB@18892b15c58d47f6840bb6c23b52349b.bitwarden.com -carLicense: QQTAOJ -departmentNumber: 2254 -employeeType: Contract -homePhone: +1 206 937-1469 -initials: B. C. -mobile: +1 206 541-7598 -pager: +1 206 444-6259 -roomNumber: 8907 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Harper McWaters,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harper McWaters -sn: McWaters -description: This is Harper McWaters's description -facsimileTelephoneNumber: +1 818 630-7196 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 818 670-8075 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: McWaterH -givenName: Harper -mail: McWaterH@b696b2494a974f2a9374a73c6b7ac6f1.bitwarden.com -carLicense: LDRCBH -departmentNumber: 1332 -employeeType: Normal -homePhone: +1 818 217-9016 -initials: H. M. -mobile: +1 818 777-1964 -pager: +1 818 910-9202 -roomNumber: 9279 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Adorne Bejar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adorne Bejar -sn: Bejar -description: This is Adorne Bejar's description -facsimileTelephoneNumber: +1 818 909-8946 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 764-7953 -title: Associate Product Development Punk -userPassword: Password1 -uid: BejarA -givenName: Adorne -mail: BejarA@a58fbd0af59142b59fca318bb0934c87.bitwarden.com -carLicense: A2A54J -departmentNumber: 8255 -employeeType: Contract -homePhone: +1 818 820-6323 -initials: A. B. -mobile: +1 818 196-5613 -pager: +1 818 260-4804 -roomNumber: 8505 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tdr Wetzel -sn: Wetzel -description: This is Tdr Wetzel's description -facsimileTelephoneNumber: +1 408 320-3841 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 747-4568 -title: Supreme Product Testing Visionary -userPassword: Password1 -uid: WetzelT -givenName: Tdr -mail: WetzelT@56764f80ffb24969b868fd703a8c92ea.bitwarden.com -carLicense: CVUKF7 -departmentNumber: 7392 -employeeType: Employee -homePhone: +1 408 993-3144 -initials: T. W. -mobile: +1 408 869-9562 -pager: +1 408 547-8799 -roomNumber: 9505 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lenee Marasco,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenee Marasco -sn: Marasco -description: This is Lenee Marasco's description -facsimileTelephoneNumber: +1 206 442-1333 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 985-8355 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: MarascoL -givenName: Lenee -mail: MarascoL@ff1a7b4761be4273abaf2ebcbaf85113.bitwarden.com -carLicense: 0A7M5G -departmentNumber: 2019 -employeeType: Contract -homePhone: +1 206 516-2016 -initials: L. M. -mobile: +1 206 845-5680 -pager: +1 206 857-9546 -roomNumber: 8391 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Reggi Hor,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reggi Hor -sn: Hor -description: This is Reggi Hor's description -facsimileTelephoneNumber: +1 408 106-8715 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 408 389-3047 -title: Master Product Testing Vice President -userPassword: Password1 -uid: HorR -givenName: Reggi -mail: HorR@9fc16f31309a4e5489f1a046e558b353.bitwarden.com -carLicense: D0OG0Q -departmentNumber: 3362 -employeeType: Normal -homePhone: +1 408 591-2351 -initials: R. H. -mobile: +1 408 468-9828 -pager: +1 408 927-3265 -roomNumber: 8691 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Andres Williford,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andres Williford -sn: Williford -description: This is Andres Williford's description -facsimileTelephoneNumber: +1 213 982-8204 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 485-7240 -title: Junior Management Mascot -userPassword: Password1 -uid: WillifoA -givenName: Andres -mail: WillifoA@b089600d85cc409eb4f207ab6f27e389.bitwarden.com -carLicense: SC9523 -departmentNumber: 4445 -employeeType: Employee -homePhone: +1 213 370-8283 -initials: A. W. -mobile: +1 213 440-9053 -pager: +1 213 151-3497 -roomNumber: 9229 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kwan Devault,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kwan Devault -sn: Devault -description: This is Kwan Devault's description -facsimileTelephoneNumber: +1 408 556-8963 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 516-1969 -title: Chief Human Resources Architect -userPassword: Password1 -uid: DevaultK -givenName: Kwan -mail: DevaultK@5b3c54f47fc64ffbbe62b2e499081d43.bitwarden.com -carLicense: IRQ2J1 -departmentNumber: 8796 -employeeType: Normal -homePhone: +1 408 790-3478 -initials: K. D. -mobile: +1 408 654-9427 -pager: +1 408 644-4636 -roomNumber: 9580 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibbie Lamm -sn: Lamm -description: This is Sibbie Lamm's description -facsimileTelephoneNumber: +1 408 678-4354 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 408 622-4619 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: LammS -givenName: Sibbie -mail: LammS@3ea21438af3c4a4f8255617efb256c4e.bitwarden.com -carLicense: B0NOB7 -departmentNumber: 7133 -employeeType: Normal -homePhone: +1 408 438-1404 -initials: S. L. -mobile: +1 408 818-5611 -pager: +1 408 705-9001 -roomNumber: 8958 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyanna Abdollahi -sn: Abdollahi -description: This is Dyanna Abdollahi's description -facsimileTelephoneNumber: +1 804 777-3940 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 313-7133 -title: Chief Administrative President -userPassword: Password1 -uid: AbdollaD -givenName: Dyanna -mail: AbdollaD@5c6902554d684605823ee60bd0935275.bitwarden.com -carLicense: SV6ED7 -departmentNumber: 1178 -employeeType: Employee -homePhone: +1 804 395-8441 -initials: D. A. -mobile: +1 804 749-6249 -pager: +1 804 650-7043 -roomNumber: 9711 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lionel Reinlie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lionel Reinlie -sn: Reinlie -description: This is Lionel Reinlie's description -facsimileTelephoneNumber: +1 415 313-6687 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 852-2010 -title: Master Payroll Assistant -userPassword: Password1 -uid: ReinlieL -givenName: Lionel -mail: ReinlieL@3385d9447e994f049c4412ecf2da5e48.bitwarden.com -carLicense: X31I55 -departmentNumber: 8490 -employeeType: Employee -homePhone: +1 415 857-3965 -initials: L. R. -mobile: +1 415 227-7117 -pager: +1 415 630-1888 -roomNumber: 8829 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gunter Glidewell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gunter Glidewell -sn: Glidewell -description: This is Gunter Glidewell's description -facsimileTelephoneNumber: +1 206 335-9970 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 284-7563 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: GlideweG -givenName: Gunter -mail: GlideweG@83797aadf07c4129b11845f5bb05984e.bitwarden.com -carLicense: QTDCT6 -departmentNumber: 7184 -employeeType: Normal -homePhone: +1 206 940-8522 -initials: G. G. -mobile: +1 206 299-6082 -pager: +1 206 568-6176 -roomNumber: 8258 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nick Brewer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nick Brewer -sn: Brewer -description: This is Nick Brewer's description -facsimileTelephoneNumber: +1 415 228-3055 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 415 175-6640 -title: Junior Peons Consultant -userPassword: Password1 -uid: BrewerN -givenName: Nick -mail: BrewerN@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com -carLicense: UTWAOY -departmentNumber: 6771 -employeeType: Employee -homePhone: +1 415 880-3495 -initials: N. B. -mobile: +1 415 674-2977 -pager: +1 415 927-7776 -roomNumber: 8157 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Josefa Kilburn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Josefa Kilburn -sn: Kilburn -description: This is Josefa Kilburn's description -facsimileTelephoneNumber: +1 415 357-8161 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 724-6911 -title: Master Management Artist -userPassword: Password1 -uid: KilburnJ -givenName: Josefa -mail: KilburnJ@bdf4207a20c5486ca943568e769c8344.bitwarden.com -carLicense: FB69AU -departmentNumber: 1616 -employeeType: Normal -homePhone: +1 415 470-6961 -initials: J. K. -mobile: +1 415 135-6233 -pager: +1 415 785-1398 -roomNumber: 8544 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cindy Oestreich,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cindy Oestreich -sn: Oestreich -description: This is Cindy Oestreich's description -facsimileTelephoneNumber: +1 408 471-3429 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 881-7202 -title: Supreme Product Development Admin -userPassword: Password1 -uid: OestreiC -givenName: Cindy -mail: OestreiC@a69557e189c747b59333670f3ebf3a1e.bitwarden.com -carLicense: UJRGG4 -departmentNumber: 3971 -employeeType: Contract -homePhone: +1 408 353-2063 -initials: C. O. -mobile: +1 408 831-9874 -pager: +1 408 418-1153 -roomNumber: 9714 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Pia Turchan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pia Turchan -sn: Turchan -description: This is Pia Turchan's description -facsimileTelephoneNumber: +1 206 735-4943 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 817-4270 -title: Chief Human Resources President -userPassword: Password1 -uid: TurchanP -givenName: Pia -mail: TurchanP@9b78793ee7914009976b9c8dd8324a1e.bitwarden.com -carLicense: HHGKQV -departmentNumber: 6048 -employeeType: Normal -homePhone: +1 206 489-4587 -initials: P. T. -mobile: +1 206 833-4722 -pager: +1 206 735-1536 -roomNumber: 8184 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Louisa Ryall,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Louisa Ryall -sn: Ryall -description: This is Louisa Ryall's description -facsimileTelephoneNumber: +1 510 304-1009 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 506-3708 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: RyallL -givenName: Louisa -mail: RyallL@32d0e3075fb342a38b8c9b42581b81f7.bitwarden.com -carLicense: C6KJW2 -departmentNumber: 5431 -employeeType: Employee -homePhone: +1 510 809-8337 -initials: L. R. -mobile: +1 510 486-7788 -pager: +1 510 247-1470 -roomNumber: 8649 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cherry Tennant,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherry Tennant -sn: Tennant -description: This is Cherry Tennant's description -facsimileTelephoneNumber: +1 818 331-9443 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 550-3495 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: TennantC -givenName: Cherry -mail: TennantC@f81c7db8a94146de916a4b35349336d8.bitwarden.com -carLicense: 6WR42W -departmentNumber: 5470 -employeeType: Employee -homePhone: +1 818 742-8789 -initials: C. T. -mobile: +1 818 989-5875 -pager: +1 818 190-6223 -roomNumber: 8946 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Paul Rafael,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paul Rafael -sn: Rafael -description: This is Paul Rafael's description -facsimileTelephoneNumber: +1 408 915-7130 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 408 343-9183 -title: Master Management Dictator -userPassword: Password1 -uid: RafaelP -givenName: Paul -mail: RafaelP@add5220cb5784db4938f41ee78181d1e.bitwarden.com -carLicense: A4TYVP -departmentNumber: 1561 -employeeType: Employee -homePhone: +1 408 399-3356 -initials: P. R. -mobile: +1 408 174-3055 -pager: +1 408 588-6024 -roomNumber: 8828 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Glornia Cicchino,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glornia Cicchino -sn: Cicchino -description: This is Glornia Cicchino's description -facsimileTelephoneNumber: +1 213 124-1512 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 178-6637 -title: Junior Product Development Engineer -userPassword: Password1 -uid: CicchinG -givenName: Glornia -mail: CicchinG@ced08fdb486e456c87f692a0e9ccf058.bitwarden.com -carLicense: 3LWSWF -departmentNumber: 2531 -employeeType: Normal -homePhone: +1 213 590-2914 -initials: G. C. -mobile: +1 213 354-7946 -pager: +1 213 558-8845 -roomNumber: 8565 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Annalee Terminals,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annalee Terminals -sn: Terminals -description: This is Annalee Terminals's description -facsimileTelephoneNumber: +1 804 652-5692 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 415-2299 -title: Junior Human Resources Admin -userPassword: Password1 -uid: TerminaA -givenName: Annalee -mail: TerminaA@dc111e187e0b4ac39980dc1afb0f449f.bitwarden.com -carLicense: 4MAJCB -departmentNumber: 8392 -employeeType: Normal -homePhone: +1 804 604-4231 -initials: A. T. -mobile: +1 804 248-5284 -pager: +1 804 545-6691 -roomNumber: 8192 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gui Dovydaitis -sn: Dovydaitis -description: This is Gui Dovydaitis's description -facsimileTelephoneNumber: +1 206 596-7166 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 827-4350 -title: Associate Product Testing Visionary -userPassword: Password1 -uid: DovydaiG -givenName: Gui -mail: DovydaiG@87d497e060994207b70ef7bd8c3d6175.bitwarden.com -carLicense: S75P6H -departmentNumber: 7068 -employeeType: Normal -homePhone: +1 206 701-6620 -initials: G. D. -mobile: +1 206 296-8602 -pager: +1 206 551-7157 -roomNumber: 9776 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dave Salehi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dave Salehi -sn: Salehi -description: This is Dave Salehi's description -facsimileTelephoneNumber: +1 408 115-9730 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 951-5628 -title: Junior Peons Architect -userPassword: Password1 -uid: SalehiD -givenName: Dave -mail: SalehiD@c59c83b24c3c472dbb65b804095a3c79.bitwarden.com -carLicense: OA1WF0 -departmentNumber: 2527 -employeeType: Normal -homePhone: +1 408 685-6912 -initials: D. S. -mobile: +1 408 977-8617 -pager: +1 408 240-7606 -roomNumber: 9945 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wendy Slattery,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wendy Slattery -sn: Slattery -description: This is Wendy Slattery's description -facsimileTelephoneNumber: +1 510 611-4280 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 274-7579 -title: Master Human Resources Czar -userPassword: Password1 -uid: SlatterW -givenName: Wendy -mail: SlatterW@b24cb4ce9a1b43e380cc986b9b45bd25.bitwarden.com -carLicense: 94POQD -departmentNumber: 3036 -employeeType: Contract -homePhone: +1 510 793-7616 -initials: W. S. -mobile: +1 510 352-1980 -pager: +1 510 233-7356 -roomNumber: 8767 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Previn Hirayama,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Previn Hirayama -sn: Hirayama -description: This is Previn Hirayama's description -facsimileTelephoneNumber: +1 206 181-3239 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 262-6703 -title: Associate Payroll Vice President -userPassword: Password1 -uid: HirayamP -givenName: Previn -mail: HirayamP@14d2a8b145214481bc45fd027c9d1e6b.bitwarden.com -carLicense: D43P2S -departmentNumber: 6893 -employeeType: Employee -homePhone: +1 206 594-3595 -initials: P. H. -mobile: +1 206 913-1324 -pager: +1 206 397-7088 -roomNumber: 9201 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Evvy Barsony,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evvy Barsony -sn: Barsony -description: This is Evvy Barsony's description -facsimileTelephoneNumber: +1 206 941-4272 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 726-5127 -title: Supreme Administrative Director -userPassword: Password1 -uid: BarsonyE -givenName: Evvy -mail: BarsonyE@53855167a537436d8e1bbb93f42697aa.bitwarden.com -carLicense: BCJIG2 -departmentNumber: 3762 -employeeType: Normal -homePhone: +1 206 895-4998 -initials: E. B. -mobile: +1 206 314-1510 -pager: +1 206 330-5909 -roomNumber: 9666 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hollie Lawton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hollie Lawton -sn: Lawton -description: This is Hollie Lawton's description -facsimileTelephoneNumber: +1 213 117-7608 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 213 568-4601 -title: Junior Management Vice President -userPassword: Password1 -uid: LawtonH -givenName: Hollie -mail: LawtonH@eec4bbb8da77429f893524017458e5d9.bitwarden.com -carLicense: GO3VQR -departmentNumber: 7731 -employeeType: Employee -homePhone: +1 213 455-1696 -initials: H. L. -mobile: +1 213 325-8748 -pager: +1 213 615-5513 -roomNumber: 9583 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dacie Doi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dacie Doi -sn: Doi -description: This is Dacie Doi's description -facsimileTelephoneNumber: +1 206 967-4318 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 832-8454 -title: Junior Management Madonna -userPassword: Password1 -uid: DoiD -givenName: Dacie -mail: DoiD@3214ac0354a44d4785a5580affcc3528.bitwarden.com -carLicense: P4SRLY -departmentNumber: 5630 -employeeType: Employee -homePhone: +1 206 571-1317 -initials: D. D. -mobile: +1 206 667-8746 -pager: +1 206 386-7638 -roomNumber: 9433 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weitzel Dadkhah -sn: Dadkhah -description: This is Weitzel Dadkhah's description -facsimileTelephoneNumber: +1 818 966-9824 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 818 469-3793 -title: Associate Product Testing Manager -userPassword: Password1 -uid: DadkhahW -givenName: Weitzel -mail: DadkhahW@54ce292eb157498aac7b1683764ec867.bitwarden.com -carLicense: AMPKCI -departmentNumber: 8565 -employeeType: Contract -homePhone: +1 818 795-3177 -initials: W. D. -mobile: +1 818 991-6985 -pager: +1 818 562-2478 -roomNumber: 9248 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pascal Cloutier -sn: Cloutier -description: This is Pascal Cloutier's description -facsimileTelephoneNumber: +1 804 508-4375 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 804 364-2500 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: CloutieP -givenName: Pascal -mail: CloutieP@86c55960d45747ecb5afd7997d576a89.bitwarden.com -carLicense: 6BMX0Y -departmentNumber: 9901 -employeeType: Employee -homePhone: +1 804 895-8438 -initials: P. C. -mobile: +1 804 814-7797 -pager: +1 804 401-3260 -roomNumber: 8338 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hall Twitty,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hall Twitty -sn: Twitty -description: This is Hall Twitty's description -facsimileTelephoneNumber: +1 510 273-7976 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 932-7274 -title: Master Peons Warrior -userPassword: Password1 -uid: TwittyH -givenName: Hall -mail: TwittyH@fc1da3ccee8c40f8af1318302a847e49.bitwarden.com -carLicense: FNC6QS -departmentNumber: 1912 -employeeType: Employee -homePhone: +1 510 888-3664 -initials: H. T. -mobile: +1 510 808-5924 -pager: +1 510 291-8255 -roomNumber: 9449 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JulieAnne Dikaitis -sn: Dikaitis -description: This is JulieAnne Dikaitis's description -facsimileTelephoneNumber: +1 213 404-3186 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 504-8673 -title: Chief Human Resources Visionary -userPassword: Password1 -uid: DikaitiJ -givenName: JulieAnne -mail: DikaitiJ@0241a0d3cbf64f09a3380b82cf315d15.bitwarden.com -carLicense: UKLGWH -departmentNumber: 1714 -employeeType: Normal -homePhone: +1 213 811-3803 -initials: J. D. -mobile: +1 213 919-2233 -pager: +1 213 357-4799 -roomNumber: 8436 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tien Ferraro,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tien Ferraro -sn: Ferraro -description: This is Tien Ferraro's description -facsimileTelephoneNumber: +1 804 483-2008 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 804 235-1469 -title: Junior Peons Artist -userPassword: Password1 -uid: FerraroT -givenName: Tien -mail: FerraroT@fe6a97f91a3b481692abba6662452ee9.bitwarden.com -carLicense: CL761M -departmentNumber: 2721 -employeeType: Normal -homePhone: +1 804 168-7319 -initials: T. F. -mobile: +1 804 227-5550 -pager: +1 804 639-5859 -roomNumber: 8019 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lorine Metrailer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorine Metrailer -sn: Metrailer -description: This is Lorine Metrailer's description -facsimileTelephoneNumber: +1 213 532-7149 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 799-4692 -title: Associate Administrative President -userPassword: Password1 -uid: MetrailL -givenName: Lorine -mail: MetrailL@6cc4c5dff9d04b5e89ad32c2b33d43af.bitwarden.com -carLicense: MUFMS4 -departmentNumber: 4642 -employeeType: Contract -homePhone: +1 213 962-1930 -initials: L. M. -mobile: +1 213 490-5564 -pager: +1 213 163-6295 -roomNumber: 9963 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Heidie ElAm,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heidie ElAm -sn: ElAm -description: This is Heidie ElAm's description -facsimileTelephoneNumber: +1 510 373-6156 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 494-9038 -title: Chief Human Resources President -userPassword: Password1 -uid: ElAmH -givenName: Heidie -mail: ElAmH@4e73c97266f94a4089aa37d8a943ffaa.bitwarden.com -carLicense: UY53U6 -departmentNumber: 5201 -employeeType: Normal -homePhone: +1 510 857-7355 -initials: H. E. -mobile: +1 510 464-9195 -pager: +1 510 236-8003 -roomNumber: 8023 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nyssa Australia,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nyssa Australia -sn: Australia -description: This is Nyssa Australia's description -facsimileTelephoneNumber: +1 408 767-4660 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 352-6367 -title: Chief Janitorial Punk -userPassword: Password1 -uid: AustralN -givenName: Nyssa -mail: AustralN@95c0fe4d7e2a47d3939748538bd3c000.bitwarden.com -carLicense: WLF2NA -departmentNumber: 7372 -employeeType: Contract -homePhone: +1 408 377-3484 -initials: N. A. -mobile: +1 408 347-7423 -pager: +1 408 720-8448 -roomNumber: 9905 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Melford Ashdown,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melford Ashdown -sn: Ashdown -description: This is Melford Ashdown's description -facsimileTelephoneNumber: +1 510 788-1832 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 246-1092 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: AshdownM -givenName: Melford -mail: AshdownM@462cea286952488090839d7ab4d20e61.bitwarden.com -carLicense: YEM1Y9 -departmentNumber: 4886 -employeeType: Employee -homePhone: +1 510 855-4011 -initials: M. A. -mobile: +1 510 799-5178 -pager: +1 510 584-6019 -roomNumber: 9976 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rowe McHarg,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rowe McHarg -sn: McHarg -description: This is Rowe McHarg's description -facsimileTelephoneNumber: +1 213 603-7230 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 213 510-6333 -title: Junior Payroll President -userPassword: Password1 -uid: McHargR -givenName: Rowe -mail: McHargR@ed96afcd8b954b4d85dba951a21a6324.bitwarden.com -carLicense: 5YW6MP -departmentNumber: 9287 -employeeType: Employee -homePhone: +1 213 648-5367 -initials: R. M. -mobile: +1 213 128-3477 -pager: +1 213 419-1550 -roomNumber: 8895 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shawnee Vesterdal -sn: Vesterdal -description: This is Shawnee Vesterdal's description -facsimileTelephoneNumber: +1 804 370-7761 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 804 393-5372 -title: Associate Peons Stooge -userPassword: Password1 -uid: VesterdS -givenName: Shawnee -mail: VesterdS@59970149bbc643e4bc31ce5dfa47996a.bitwarden.com -carLicense: 8YDG5V -departmentNumber: 5642 -employeeType: Employee -homePhone: +1 804 320-4155 -initials: S. V. -mobile: +1 804 442-5920 -pager: +1 804 657-1678 -roomNumber: 9589 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rasla ODoherty,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rasla ODoherty -sn: ODoherty -description: This is Rasla ODoherty's description -facsimileTelephoneNumber: +1 415 264-4721 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 135-4170 -title: Junior Management Visionary -userPassword: Password1 -uid: ODohertR -givenName: Rasla -mail: ODohertR@570b2a8b45094bdbb019684431d6e2af.bitwarden.com -carLicense: MACKM5 -departmentNumber: 1598 -employeeType: Normal -homePhone: +1 415 537-9744 -initials: R. O. -mobile: +1 415 311-6654 -pager: +1 415 374-2408 -roomNumber: 8213 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Felicle Ramondt,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felicle Ramondt -sn: Ramondt -description: This is Felicle Ramondt's description -facsimileTelephoneNumber: +1 415 737-5003 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 274-4149 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: RamondtF -givenName: Felicle -mail: RamondtF@4112fa5751f947c9a6ebd8e6086a4cce.bitwarden.com -carLicense: RBEP9T -departmentNumber: 8292 -employeeType: Normal -homePhone: +1 415 778-2562 -initials: F. R. -mobile: +1 415 723-2644 -pager: +1 415 361-9599 -roomNumber: 8113 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jasver Jurman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jasver Jurman -sn: Jurman -description: This is Jasver Jurman's description -facsimileTelephoneNumber: +1 206 101-5780 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 127-1023 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: JurmanJ -givenName: Jasver -mail: JurmanJ@1286c9db4c6f4ed39232709079768da4.bitwarden.com -carLicense: 7XBMQ8 -departmentNumber: 9762 -employeeType: Contract -homePhone: +1 206 189-3853 -initials: J. J. -mobile: +1 206 132-5130 -pager: +1 206 646-9410 -roomNumber: 9853 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosalyn Hassan -sn: Hassan -description: This is Rosalyn Hassan's description -facsimileTelephoneNumber: +1 818 375-5409 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 236-8934 -title: Junior Payroll Pinhead -userPassword: Password1 -uid: HassanR -givenName: Rosalyn -mail: HassanR@9b1dcdebf2c241bf975e03d6ac9197e3.bitwarden.com -carLicense: CJYN6J -departmentNumber: 6357 -employeeType: Employee -homePhone: +1 818 837-7677 -initials: R. H. -mobile: +1 818 259-4875 -pager: +1 818 917-9548 -roomNumber: 9711 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anderea Albritton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anderea Albritton -sn: Albritton -description: This is Anderea Albritton's description -facsimileTelephoneNumber: +1 804 194-7663 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 804 904-5286 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: AlbrittA -givenName: Anderea -mail: AlbrittA@a34bb7d1546c462cb51396798bb22845.bitwarden.com -carLicense: TDCMWA -departmentNumber: 2454 -employeeType: Normal -homePhone: +1 804 351-2266 -initials: A. A. -mobile: +1 804 282-5832 -pager: +1 804 155-3746 -roomNumber: 8370 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alana Melkild,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alana Melkild -sn: Melkild -description: This is Alana Melkild's description -facsimileTelephoneNumber: +1 408 801-9214 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 408 940-4162 -title: Master Management Punk -userPassword: Password1 -uid: MelkildA -givenName: Alana -mail: MelkildA@b163a54ef1ca4503b096b531dfca5c9b.bitwarden.com -carLicense: CLLDQU -departmentNumber: 7668 -employeeType: Employee -homePhone: +1 408 241-4414 -initials: A. M. -mobile: +1 408 698-3925 -pager: +1 408 317-9847 -roomNumber: 9130 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Venkatakrishna Kelland -sn: Kelland -description: This is Venkatakrishna Kelland's description -facsimileTelephoneNumber: +1 213 647-9983 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 603-7905 -title: Associate Human Resources Mascot -userPassword: Password1 -uid: KellandV -givenName: Venkatakrishna -mail: KellandV@4e208cde3548420a94b59f72665403bf.bitwarden.com -carLicense: XI6WXR -departmentNumber: 3806 -employeeType: Normal -homePhone: +1 213 393-9652 -initials: V. K. -mobile: +1 213 312-4745 -pager: +1 213 752-5274 -roomNumber: 9537 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Orie Kellogg,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orie Kellogg -sn: Kellogg -description: This is Orie Kellogg's description -facsimileTelephoneNumber: +1 415 623-1544 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 895-7818 -title: Supreme Janitorial Dictator -userPassword: Password1 -uid: KelloggO -givenName: Orie -mail: KelloggO@34a2a20900494afa86a3d5f8d34be87e.bitwarden.com -carLicense: AUTSRP -departmentNumber: 5946 -employeeType: Normal -homePhone: +1 415 157-3767 -initials: O. K. -mobile: +1 415 434-6721 -pager: +1 415 329-9667 -roomNumber: 8669 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Liva McMasters,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liva McMasters -sn: McMasters -description: This is Liva McMasters's description -facsimileTelephoneNumber: +1 804 975-4828 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 397-5360 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: McMasteL -givenName: Liva -mail: McMasteL@f4d0af946ec24ea988e36de4a253dd77.bitwarden.com -carLicense: 3QPB59 -departmentNumber: 7240 -employeeType: Contract -homePhone: +1 804 397-9353 -initials: L. M. -mobile: +1 804 525-9345 -pager: +1 804 153-5332 -roomNumber: 9662 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olwen Ducharme -sn: Ducharme -description: This is Olwen Ducharme's description -facsimileTelephoneNumber: +1 415 212-3710 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 415 604-8475 -title: Master Product Testing Punk -userPassword: Password1 -uid: DucharmO -givenName: Olwen -mail: DucharmO@01e99ef3b2924e47abd9e4716ec0ba6a.bitwarden.com -carLicense: QI1NKQ -departmentNumber: 8575 -employeeType: Contract -homePhone: +1 415 941-7322 -initials: O. D. -mobile: +1 415 122-7522 -pager: +1 415 945-6924 -roomNumber: 9220 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kiah Chandan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kiah Chandan -sn: Chandan -description: This is Kiah Chandan's description -facsimileTelephoneNumber: +1 213 118-5297 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 213 536-2583 -title: Chief Peons Mascot -userPassword: Password1 -uid: ChandanK -givenName: Kiah -mail: ChandanK@01af6203536c42ec8e9ddfa7b0066fb7.bitwarden.com -carLicense: Y5FNYU -departmentNumber: 6337 -employeeType: Normal -homePhone: +1 213 258-2055 -initials: K. C. -mobile: +1 213 892-4906 -pager: +1 213 647-7470 -roomNumber: 8981 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vipi Bladon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vipi Bladon -sn: Bladon -description: This is Vipi Bladon's description -facsimileTelephoneNumber: +1 408 231-9332 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 408 811-3882 -title: Supreme Administrative Czar -userPassword: Password1 -uid: BladonV -givenName: Vipi -mail: BladonV@5751350c44374a93b1d462c83d0b1fe8.bitwarden.com -carLicense: MBJOO8 -departmentNumber: 5451 -employeeType: Employee -homePhone: +1 408 294-1486 -initials: V. B. -mobile: +1 408 770-7650 -pager: +1 408 374-5171 -roomNumber: 9394 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dan Yost,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dan Yost -sn: Yost -description: This is Dan Yost's description -facsimileTelephoneNumber: +1 804 842-2814 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 922-4084 -title: Master Janitorial Sales Rep -userPassword: Password1 -uid: YostD -givenName: Dan -mail: YostD@641b3c32e986403cb54e8416d6ccf047.bitwarden.com -carLicense: B8G9RQ -departmentNumber: 3541 -employeeType: Normal -homePhone: +1 804 279-1725 -initials: D. Y. -mobile: +1 804 739-9345 -pager: +1 804 670-2743 -roomNumber: 9264 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ivo Dziawa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivo Dziawa -sn: Dziawa -description: This is Ivo Dziawa's description -facsimileTelephoneNumber: +1 206 225-2024 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 823-4814 -title: Supreme Payroll Artist -userPassword: Password1 -uid: DziawaI -givenName: Ivo -mail: DziawaI@9b030c1d6ce3438f956ad1da5fffc998.bitwarden.com -carLicense: 8J69P1 -departmentNumber: 6457 -employeeType: Normal -homePhone: +1 206 964-6194 -initials: I. D. -mobile: +1 206 178-6006 -pager: +1 206 575-3688 -roomNumber: 9551 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vahid Routing,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vahid Routing -sn: Routing -description: This is Vahid Routing's description -facsimileTelephoneNumber: +1 804 271-2177 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 566-2786 -title: Supreme Administrative Technician -userPassword: Password1 -uid: RoutingV -givenName: Vahid -mail: RoutingV@687d9f112b0946d8aa0c6a6aac0b1c20.bitwarden.com -carLicense: 4ULJEV -departmentNumber: 4705 -employeeType: Employee -homePhone: +1 804 513-3711 -initials: V. R. -mobile: +1 804 742-7861 -pager: +1 804 651-2472 -roomNumber: 9921 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paloma Dyrdahl -sn: Dyrdahl -description: This is Paloma Dyrdahl's description -facsimileTelephoneNumber: +1 804 823-1485 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 205-6457 -title: Chief Human Resources Director -userPassword: Password1 -uid: DyrdahlP -givenName: Paloma -mail: DyrdahlP@f51aa7b4b6ef481ab8bd87058413fd8f.bitwarden.com -carLicense: DUMAFD -departmentNumber: 1349 -employeeType: Employee -homePhone: +1 804 346-7644 -initials: P. D. -mobile: +1 804 908-1709 -pager: +1 804 858-3398 -roomNumber: 8223 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marianna Wray,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marianna Wray -sn: Wray -description: This is Marianna Wray's description -facsimileTelephoneNumber: +1 818 965-1211 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 818 212-9227 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: WrayM -givenName: Marianna -mail: WrayM@e1267c37955c45cfa6ee4879d9455618.bitwarden.com -carLicense: E79TD2 -departmentNumber: 2925 -employeeType: Contract -homePhone: +1 818 661-4325 -initials: M. W. -mobile: +1 818 801-8742 -pager: +1 818 257-7080 -roomNumber: 9136 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sunning Spence,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sunning Spence -sn: Spence -description: This is Sunning Spence's description -facsimileTelephoneNumber: +1 213 874-4176 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 965-7078 -title: Supreme Management Admin -userPassword: Password1 -uid: SpenceS -givenName: Sunning -mail: SpenceS@a5390b0a929f4049987256511e1011a2.bitwarden.com -carLicense: C2MJ1S -departmentNumber: 4073 -employeeType: Normal -homePhone: +1 213 529-8284 -initials: S. S. -mobile: +1 213 335-3411 -pager: +1 213 855-1643 -roomNumber: 9713 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cart Pyron,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cart Pyron -sn: Pyron -description: This is Cart Pyron's description -facsimileTelephoneNumber: +1 415 178-6711 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 301-4351 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: PyronC -givenName: Cart -mail: PyronC@5d9a493aeb18453b882b99b919bc8aa9.bitwarden.com -carLicense: QITA1B -departmentNumber: 3001 -employeeType: Employee -homePhone: +1 415 409-4437 -initials: C. P. -mobile: +1 415 184-9393 -pager: +1 415 734-1316 -roomNumber: 8408 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nashville Venier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nashville Venier -sn: Venier -description: This is Nashville Venier's description -facsimileTelephoneNumber: +1 213 389-7726 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 213 498-6211 -title: Junior Janitorial Consultant -userPassword: Password1 -uid: VenierN -givenName: Nashville -mail: VenierN@b37b8170c2a14be99b8672023148d924.bitwarden.com -carLicense: LKWT88 -departmentNumber: 8413 -employeeType: Contract -homePhone: +1 213 285-2887 -initials: N. V. -mobile: +1 213 728-8699 -pager: +1 213 465-5719 -roomNumber: 9131 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Glenn Salem,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glenn Salem -sn: Salem -description: This is Glenn Salem's description -facsimileTelephoneNumber: +1 818 801-7132 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 818 934-4935 -title: Supreme Management President -userPassword: Password1 -uid: SalemG -givenName: Glenn -mail: SalemG@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com -carLicense: HE6BA9 -departmentNumber: 7786 -employeeType: Contract -homePhone: +1 818 389-9384 -initials: G. S. -mobile: +1 818 460-2138 -pager: +1 818 781-7543 -roomNumber: 9711 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Raman Smolin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raman Smolin -sn: Smolin -description: This is Raman Smolin's description -facsimileTelephoneNumber: +1 408 770-7796 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 330-5479 -title: Junior Product Development Sales Rep -userPassword: Password1 -uid: SmolinR -givenName: Raman -mail: SmolinR@f4cac90289b44dc28b9de765747f5a7c.bitwarden.com -carLicense: 7FTYLB -departmentNumber: 5434 -employeeType: Contract -homePhone: +1 408 813-8382 -initials: R. S. -mobile: +1 408 406-7089 -pager: +1 408 665-8609 -roomNumber: 9212 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marin Mokbel,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marin Mokbel -sn: Mokbel -description: This is Marin Mokbel's description -facsimileTelephoneNumber: +1 804 641-2266 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 952-5956 -title: Chief Payroll Engineer -userPassword: Password1 -uid: MokbelM -givenName: Marin -mail: MokbelM@c54cbe69dcd34a96b7a131338d06781d.bitwarden.com -carLicense: LMDIAX -departmentNumber: 2884 -employeeType: Normal -homePhone: +1 804 676-5098 -initials: M. M. -mobile: +1 804 187-4781 -pager: +1 804 391-5199 -roomNumber: 8152 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rici Plasse,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rici Plasse -sn: Plasse -description: This is Rici Plasse's description -facsimileTelephoneNumber: +1 408 457-4340 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 408 612-7703 -title: Junior Payroll Punk -userPassword: Password1 -uid: PlasseR -givenName: Rici -mail: PlasseR@07b1787368a34e789ce994f0c32f4345.bitwarden.com -carLicense: 87B1CW -departmentNumber: 8025 -employeeType: Employee -homePhone: +1 408 298-9718 -initials: R. P. -mobile: +1 408 997-7121 -pager: +1 408 358-6463 -roomNumber: 8632 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anup Klammer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anup Klammer -sn: Klammer -description: This is Anup Klammer's description -facsimileTelephoneNumber: +1 408 587-6159 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 408 207-9900 -title: Master Janitorial Director -userPassword: Password1 -uid: KlammerA -givenName: Anup -mail: KlammerA@af3378adce2b421eb0f1e5ee23a2a017.bitwarden.com -carLicense: Y25IUP -departmentNumber: 6093 -employeeType: Employee -homePhone: +1 408 318-1045 -initials: A. K. -mobile: +1 408 412-1069 -pager: +1 408 889-4949 -roomNumber: 8590 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baljinder Chakrabarty -sn: Chakrabarty -description: This is Baljinder Chakrabarty's description -facsimileTelephoneNumber: +1 408 739-4624 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 473-4638 -title: Chief Administrative Czar -userPassword: Password1 -uid: ChakrabB -givenName: Baljinder -mail: ChakrabB@6ae361d0671f4e45b2dca3f489ab2ec1.bitwarden.com -carLicense: EMHPFK -departmentNumber: 9951 -employeeType: Employee -homePhone: +1 408 595-6375 -initials: B. C. -mobile: +1 408 261-2123 -pager: +1 408 523-3669 -roomNumber: 9634 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ninon Starr,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninon Starr -sn: Starr -description: This is Ninon Starr's description -facsimileTelephoneNumber: +1 206 319-4165 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 584-3056 -title: Junior Peons Consultant -userPassword: Password1 -uid: StarrN -givenName: Ninon -mail: StarrN@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com -carLicense: F4UEUQ -departmentNumber: 2418 -employeeType: Normal -homePhone: +1 206 200-7590 -initials: N. S. -mobile: +1 206 491-6927 -pager: +1 206 447-1191 -roomNumber: 9836 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Atul Orth,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atul Orth -sn: Orth -description: This is Atul Orth's description -facsimileTelephoneNumber: +1 206 257-2840 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 914-9689 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: OrthA -givenName: Atul -mail: OrthA@5377b23229dc41399d1b48044598198c.bitwarden.com -carLicense: 9O8AO3 -departmentNumber: 9018 -employeeType: Contract -homePhone: +1 206 834-2780 -initials: A. O. -mobile: +1 206 539-1317 -pager: +1 206 743-1625 -roomNumber: 8330 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tung Lazar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tung Lazar -sn: Lazar -description: This is Tung Lazar's description -facsimileTelephoneNumber: +1 415 438-4568 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 465-5562 -title: Associate Management Grunt -userPassword: Password1 -uid: LazarT -givenName: Tung -mail: LazarT@cff08fbfbb494d1cac1d02cef13ff5e6.bitwarden.com -carLicense: D1MK5K -departmentNumber: 3560 -employeeType: Contract -homePhone: +1 415 692-7473 -initials: T. L. -mobile: +1 415 260-2793 -pager: +1 415 102-6140 -roomNumber: 8658 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Conchita Raley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Conchita Raley -sn: Raley -description: This is Conchita Raley's description -facsimileTelephoneNumber: +1 818 541-5106 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 524-7417 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: RaleyC -givenName: Conchita -mail: RaleyC@ad261b7bb83c4b9b8809f461bc78f37f.bitwarden.com -carLicense: VR5L59 -departmentNumber: 5006 -employeeType: Employee -homePhone: +1 818 495-6897 -initials: C. R. -mobile: +1 818 371-6010 -pager: +1 818 145-6086 -roomNumber: 9978 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Steen Meyer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steen Meyer -sn: Meyer -description: This is Steen Meyer's description -facsimileTelephoneNumber: +1 510 565-6025 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 510 571-9882 -title: Chief Administrative Writer -userPassword: Password1 -uid: MeyerS -givenName: Steen -mail: MeyerS@bf91192220a74764b99bec46e53e3350.bitwarden.com -carLicense: FC7AH6 -departmentNumber: 2560 -employeeType: Contract -homePhone: +1 510 497-6048 -initials: S. M. -mobile: +1 510 566-6489 -pager: +1 510 755-9314 -roomNumber: 9419 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ingunna Zollman,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ingunna Zollman -sn: Zollman -description: This is Ingunna Zollman's description -facsimileTelephoneNumber: +1 510 121-5824 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 252-7080 -title: Master Administrative Assistant -userPassword: Password1 -uid: ZollmanI -givenName: Ingunna -mail: ZollmanI@b3ee3a7577c349aeba9b99d9cc89baee.bitwarden.com -carLicense: YD5EB3 -departmentNumber: 4179 -employeeType: Contract -homePhone: +1 510 683-2202 -initials: I. Z. -mobile: +1 510 549-2417 -pager: +1 510 270-8671 -roomNumber: 8524 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Weilin Muttaqi -sn: Muttaqi -description: This is Weilin Muttaqi's description -facsimileTelephoneNumber: +1 408 105-2323 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 408 386-4800 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: MuttaqiW -givenName: Weilin -mail: MuttaqiW@1957e383cee049d8b2f276495d647fb4.bitwarden.com -carLicense: DU3SIT -departmentNumber: 6990 -employeeType: Employee -homePhone: +1 408 143-3036 -initials: W. M. -mobile: +1 408 884-6116 -pager: +1 408 985-5519 -roomNumber: 8057 -manager: cn=Air Falkner,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Winnie Goss,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winnie Goss -sn: Goss -description: This is Winnie Goss's description -facsimileTelephoneNumber: +1 804 536-8940 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 915-1089 -title: Associate Payroll Grunt -userPassword: Password1 -uid: GossW -givenName: Winnie -mail: GossW@c37d3b12215747d99472a7fb366acdb6.bitwarden.com -carLicense: 6QT8TE -departmentNumber: 1681 -employeeType: Normal -homePhone: +1 804 855-5285 -initials: W. G. -mobile: +1 804 435-7622 -pager: +1 804 354-9735 -roomNumber: 8822 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dori Myatt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dori Myatt -sn: Myatt -description: This is Dori Myatt's description -facsimileTelephoneNumber: +1 206 318-5725 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 704-5451 -title: Supreme Product Testing Fellow -userPassword: Password1 -uid: MyattD -givenName: Dori -mail: MyattD@02379e00c72e43ada0ec5298f3ee9106.bitwarden.com -carLicense: WLQ9NH -departmentNumber: 3938 -employeeType: Normal -homePhone: +1 206 361-5929 -initials: D. M. -mobile: +1 206 656-6651 -pager: +1 206 740-8338 -roomNumber: 8581 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Beb Jammu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beb Jammu -sn: Jammu -description: This is Beb Jammu's description -facsimileTelephoneNumber: +1 510 302-4105 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 213-5909 -title: Supreme Administrative Vice President -userPassword: Password1 -uid: JammuB -givenName: Beb -mail: JammuB@cc3b9e94565c4600bc410c93d2d0b1da.bitwarden.com -carLicense: PBY17C -departmentNumber: 6338 -employeeType: Employee -homePhone: +1 510 399-6932 -initials: B. J. -mobile: +1 510 365-1893 -pager: +1 510 555-9762 -roomNumber: 8734 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Reno Raines,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reno Raines -sn: Raines -description: This is Reno Raines's description -facsimileTelephoneNumber: +1 213 902-4283 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 724-5837 -title: Supreme Payroll Grunt -userPassword: Password1 -uid: RainesR -givenName: Reno -mail: RainesR@61d349f36f74474aadc4b14dd96074dd.bitwarden.com -carLicense: FGPVL6 -departmentNumber: 9322 -employeeType: Employee -homePhone: +1 213 497-2091 -initials: R. R. -mobile: +1 213 736-7196 -pager: +1 213 454-3104 -roomNumber: 9760 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Delilah Praeuner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delilah Praeuner -sn: Praeuner -description: This is Delilah Praeuner's description -facsimileTelephoneNumber: +1 415 521-1912 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 415 425-5353 -title: Chief Peons Dictator -userPassword: Password1 -uid: PraeuneD -givenName: Delilah -mail: PraeuneD@9f2b0ca340a44c1da690b6d62d65daf8.bitwarden.com -carLicense: SM5W0A -departmentNumber: 1448 -employeeType: Employee -homePhone: +1 415 637-5284 -initials: D. P. -mobile: +1 415 145-1344 -pager: +1 415 398-6324 -roomNumber: 8668 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marilyn Bigley -sn: Bigley -description: This is Marilyn Bigley's description -facsimileTelephoneNumber: +1 510 189-6432 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 510 770-5189 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: BigleyM -givenName: Marilyn -mail: BigleyM@dcfeb1e34dfd4d498a4c69e47113773f.bitwarden.com -carLicense: 2I8M5K -departmentNumber: 3246 -employeeType: Normal -homePhone: +1 510 681-9343 -initials: M. B. -mobile: +1 510 469-4334 -pager: +1 510 191-2547 -roomNumber: 8258 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aubrie Bykowy -sn: Bykowy -description: This is Aubrie Bykowy's description -facsimileTelephoneNumber: +1 804 454-8840 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 804 683-2338 -title: Associate Administrative Writer -userPassword: Password1 -uid: BykowyA -givenName: Aubrie -mail: BykowyA@f6fe529f06ac433fab898dee2f04e9dc.bitwarden.com -carLicense: S5C6H5 -departmentNumber: 6703 -employeeType: Contract -homePhone: +1 804 179-2675 -initials: A. B. -mobile: +1 804 473-1699 -pager: +1 804 698-9137 -roomNumber: 9493 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Christiane Wanner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christiane Wanner -sn: Wanner -description: This is Christiane Wanner's description -facsimileTelephoneNumber: +1 818 315-5190 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 426-5250 -title: Chief Product Development Engineer -userPassword: Password1 -uid: WannerC -givenName: Christiane -mail: WannerC@ed6e0f8b1a3846db9530b7f4f3171825.bitwarden.com -carLicense: O4WFJG -departmentNumber: 6327 -employeeType: Normal -homePhone: +1 818 430-8291 -initials: C. W. -mobile: +1 818 810-7680 -pager: +1 818 532-8881 -roomNumber: 9966 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sada Polulack,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sada Polulack -sn: Polulack -description: This is Sada Polulack's description -facsimileTelephoneNumber: +1 510 430-7942 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 882-2395 -title: Master Payroll Assistant -userPassword: Password1 -uid: PolulacS -givenName: Sada -mail: PolulacS@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com -carLicense: OHDKR9 -departmentNumber: 6070 -employeeType: Normal -homePhone: +1 510 224-7256 -initials: S. P. -mobile: +1 510 895-5327 -pager: +1 510 635-1453 -roomNumber: 9975 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daloris Oshiro -sn: Oshiro -description: This is Daloris Oshiro's description -facsimileTelephoneNumber: +1 415 280-7071 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 151-5085 -title: Master Janitorial Punk -userPassword: Password1 -uid: OshiroD -givenName: Daloris -mail: OshiroD@1cd5de40e5ac4cd695f9ff5aee94931d.bitwarden.com -carLicense: 1GELPB -departmentNumber: 8353 -employeeType: Employee -homePhone: +1 415 453-3057 -initials: D. O. -mobile: +1 415 712-1048 -pager: +1 415 912-6492 -roomNumber: 8144 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shauna Caputo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shauna Caputo -sn: Caputo -description: This is Shauna Caputo's description -facsimileTelephoneNumber: +1 415 530-2189 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 550-4404 -title: Master Janitorial Warrior -userPassword: Password1 -uid: CaputoS -givenName: Shauna -mail: CaputoS@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com -carLicense: S9V7AO -departmentNumber: 9322 -employeeType: Contract -homePhone: +1 415 477-3063 -initials: S. C. -mobile: +1 415 223-1261 -pager: +1 415 238-3358 -roomNumber: 9738 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oleesa Suwala -sn: Suwala -description: This is Oleesa Suwala's description -facsimileTelephoneNumber: +1 206 954-1921 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 456-9547 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: SuwalaO -givenName: Oleesa -mail: SuwalaO@2a14a90e7c884ce1a37209a563b3ce10.bitwarden.com -carLicense: 2PIGBX -departmentNumber: 2408 -employeeType: Contract -homePhone: +1 206 275-9947 -initials: O. S. -mobile: +1 206 931-3166 -pager: +1 206 220-8374 -roomNumber: 8907 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hrdata Placido,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hrdata Placido -sn: Placido -description: This is Hrdata Placido's description -facsimileTelephoneNumber: +1 408 143-3299 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 344-5904 -title: Junior Product Development Evangelist -userPassword: Password1 -uid: PlacidoH -givenName: Hrdata -mail: PlacidoH@3264b8974bc14e47aff69928751d5552.bitwarden.com -carLicense: G5JLQM -departmentNumber: 7939 -employeeType: Contract -homePhone: +1 408 579-6201 -initials: H. P. -mobile: +1 408 788-1260 -pager: +1 408 123-8632 -roomNumber: 8075 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Belvia Raissian,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belvia Raissian -sn: Raissian -description: This is Belvia Raissian's description -facsimileTelephoneNumber: +1 818 337-2173 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 837-5973 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: RaissiaB -givenName: Belvia -mail: RaissiaB@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com -carLicense: P9YDQS -departmentNumber: 6018 -employeeType: Contract -homePhone: +1 818 138-6621 -initials: B. R. -mobile: +1 818 699-5246 -pager: +1 818 603-8001 -roomNumber: 9057 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Odette Swiatkowski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odette Swiatkowski -sn: Swiatkowski -description: This is Odette Swiatkowski's description -facsimileTelephoneNumber: +1 818 974-8349 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 171-5796 -title: Master Management Developer -userPassword: Password1 -uid: SwiatkoO -givenName: Odette -mail: SwiatkoO@9203e13698914816bdcd0ae89556ac90.bitwarden.com -carLicense: HCN41G -departmentNumber: 2591 -employeeType: Employee -homePhone: +1 818 132-4673 -initials: O. S. -mobile: +1 818 478-1399 -pager: +1 818 398-6956 -roomNumber: 9034 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Richelle Thorne,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Richelle Thorne -sn: Thorne -description: This is Richelle Thorne's description -facsimileTelephoneNumber: +1 415 226-4785 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 180-5163 -title: Junior Management Engineer -userPassword: Password1 -uid: ThorneR -givenName: Richelle -mail: ThorneR@478d49ea22024f81bf0c3655b7d4984f.bitwarden.com -carLicense: CMQXIX -departmentNumber: 3484 -employeeType: Contract -homePhone: +1 415 514-8913 -initials: R. T. -mobile: +1 415 165-7476 -pager: +1 415 548-2031 -roomNumber: 8901 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jacques Bhatia,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacques Bhatia -sn: Bhatia -description: This is Jacques Bhatia's description -facsimileTelephoneNumber: +1 510 804-7195 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 774-4658 -title: Chief Peons Director -userPassword: Password1 -uid: BhatiaJ -givenName: Jacques -mail: BhatiaJ@5aefcf13b98144a482e597727f2900df.bitwarden.com -carLicense: IG4T2C -departmentNumber: 1125 -employeeType: Normal -homePhone: +1 510 657-4991 -initials: J. B. -mobile: +1 510 872-4289 -pager: +1 510 971-4667 -roomNumber: 8370 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walliw Hyjek -sn: Hyjek -description: This is Walliw Hyjek's description -facsimileTelephoneNumber: +1 206 699-9937 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 622-5816 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: HyjekW -givenName: Walliw -mail: HyjekW@04b4f27ec2ac43be97552612edca5a77.bitwarden.com -carLicense: 32B8VU -departmentNumber: 3697 -employeeType: Employee -homePhone: +1 206 647-5129 -initials: W. H. -mobile: +1 206 457-7485 -pager: +1 206 335-3693 -roomNumber: 9711 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Houman Levere,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Houman Levere -sn: Levere -description: This is Houman Levere's description -facsimileTelephoneNumber: +1 206 497-5270 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 276-4391 -title: Chief Janitorial Manager -userPassword: Password1 -uid: LevereH -givenName: Houman -mail: LevereH@7d7c04d767f0473782636d718b2a2aee.bitwarden.com -carLicense: B0C60V -departmentNumber: 3586 -employeeType: Contract -homePhone: +1 206 641-2215 -initials: H. L. -mobile: +1 206 170-2254 -pager: +1 206 257-9040 -roomNumber: 9406 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hsieh Shayanpour -sn: Shayanpour -description: This is Hsieh Shayanpour's description -facsimileTelephoneNumber: +1 510 921-9860 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 510 142-1838 -title: Associate Payroll Vice President -userPassword: Password1 -uid: ShayanpH -givenName: Hsieh -mail: ShayanpH@134e9c1116de4754a55f3f221bd47dca.bitwarden.com -carLicense: N606HD -departmentNumber: 8228 -employeeType: Normal -homePhone: +1 510 562-3401 -initials: H. S. -mobile: +1 510 942-4676 -pager: +1 510 777-2744 -roomNumber: 8980 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Doloritas Adams,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doloritas Adams -sn: Adams -description: This is Doloritas Adams's description -facsimileTelephoneNumber: +1 415 846-9622 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 767-9424 -title: Supreme Management Vice President -userPassword: Password1 -uid: AdamsD -givenName: Doloritas -mail: AdamsD@d6de9e07b63b482e895c0d1074306ac5.bitwarden.com -carLicense: BFAG9D -departmentNumber: 4411 -employeeType: Contract -homePhone: +1 415 470-5139 -initials: D. A. -mobile: +1 415 201-7178 -pager: +1 415 814-8690 -roomNumber: 9907 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Starr Selent,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Starr Selent -sn: Selent -description: This is Starr Selent's description -facsimileTelephoneNumber: +1 804 354-1756 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 474-1172 -title: Junior Human Resources Manager -userPassword: Password1 -uid: SelentS -givenName: Starr -mail: SelentS@4b870fc05654407aaffa37354d036e58.bitwarden.com -carLicense: 9E6AR1 -departmentNumber: 1731 -employeeType: Employee -homePhone: +1 804 336-8453 -initials: S. S. -mobile: +1 804 267-5130 -pager: +1 804 250-7382 -roomNumber: 9527 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Doria Sherrill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doria Sherrill -sn: Sherrill -description: This is Doria Sherrill's description -facsimileTelephoneNumber: +1 818 590-7381 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 297-8650 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: SherrilD -givenName: Doria -mail: SherrilD@67ed6a3085c048b9841abf12a338d7fa.bitwarden.com -carLicense: 36SUBO -departmentNumber: 6250 -employeeType: Normal -homePhone: +1 818 466-7982 -initials: D. S. -mobile: +1 818 780-5199 -pager: +1 818 792-2404 -roomNumber: 8121 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassaundra Godsoe -sn: Godsoe -description: This is Cassaundra Godsoe's description -facsimileTelephoneNumber: +1 408 527-5455 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 523-8637 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: GodsoeC -givenName: Cassaundra -mail: GodsoeC@95a0714026f54037aaa182b092f39903.bitwarden.com -carLicense: BSAP7G -departmentNumber: 9120 -employeeType: Normal -homePhone: +1 408 955-4082 -initials: C. G. -mobile: +1 408 400-4689 -pager: +1 408 776-2831 -roomNumber: 9005 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felicity Reichinger -sn: Reichinger -description: This is Felicity Reichinger's description -facsimileTelephoneNumber: +1 415 358-9724 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 941-2786 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: ReichinF -givenName: Felicity -mail: ReichinF@5dc39fbc350c43fe84c932142400265c.bitwarden.com -carLicense: WAD6KU -departmentNumber: 4191 -employeeType: Employee -homePhone: +1 415 535-3082 -initials: F. R. -mobile: +1 415 528-3355 -pager: +1 415 903-5730 -roomNumber: 9137 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maire Follett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maire Follett -sn: Follett -description: This is Maire Follett's description -facsimileTelephoneNumber: +1 510 641-1203 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 286-7113 -title: Chief Payroll Warrior -userPassword: Password1 -uid: FollettM -givenName: Maire -mail: FollettM@b4fa9c83a97e478e900b988131cc53a7.bitwarden.com -carLicense: HARGS0 -departmentNumber: 6379 -employeeType: Contract -homePhone: +1 510 644-9029 -initials: M. F. -mobile: +1 510 881-9733 -pager: +1 510 863-7724 -roomNumber: 8550 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomasine Clampitte -sn: Clampitte -description: This is Thomasine Clampitte's description -facsimileTelephoneNumber: +1 415 527-5293 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 494-1730 -title: Master Product Development Vice President -userPassword: Password1 -uid: ClampitT -givenName: Thomasine -mail: ClampitT@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com -carLicense: TKUGDV -departmentNumber: 7008 -employeeType: Contract -homePhone: +1 415 268-9150 -initials: T. C. -mobile: +1 415 789-5941 -pager: +1 415 484-8995 -roomNumber: 9050 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ying Schulze,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ying Schulze -sn: Schulze -description: This is Ying Schulze's description -facsimileTelephoneNumber: +1 206 968-9595 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 712-2228 -title: Chief Management Technician -userPassword: Password1 -uid: SchulzeY -givenName: Ying -mail: SchulzeY@5750a4ef0b904e64a81925c3672ef563.bitwarden.com -carLicense: 2MEPGG -departmentNumber: 1577 -employeeType: Employee -homePhone: +1 206 412-4290 -initials: Y. S. -mobile: +1 206 682-7118 -pager: +1 206 852-8519 -roomNumber: 9616 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Samual Franzky,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Samual Franzky -sn: Franzky -description: This is Samual Franzky's description -facsimileTelephoneNumber: +1 818 564-1485 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 200-2516 -title: Chief Payroll Figurehead -userPassword: Password1 -uid: FranzkyS -givenName: Samual -mail: FranzkyS@bc79177550ea403786c826687c120cc9.bitwarden.com -carLicense: UDD6UP -departmentNumber: 8098 -employeeType: Normal -homePhone: +1 818 858-2406 -initials: S. F. -mobile: +1 818 221-5868 -pager: +1 818 864-7092 -roomNumber: 8292 -manager: cn=Roze Bakkum,ou=Management,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nert Bombardier,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nert Bombardier -sn: Bombardier -description: This is Nert Bombardier's description -facsimileTelephoneNumber: +1 408 351-9711 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 408 208-7137 -title: Associate Product Development Punk -userPassword: Password1 -uid: BombardN -givenName: Nert -mail: BombardN@468705ba5f434f3295170aa6ba4375b9.bitwarden.com -carLicense: RA9VW6 -departmentNumber: 7830 -employeeType: Employee -homePhone: +1 408 664-5305 -initials: N. B. -mobile: +1 408 914-7363 -pager: +1 408 505-5670 -roomNumber: 9303 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Catherine Hite,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catherine Hite -sn: Hite -description: This is Catherine Hite's description -facsimileTelephoneNumber: +1 804 719-3531 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 804 386-5858 -title: Supreme Product Development Writer -userPassword: Password1 -uid: HiteC -givenName: Catherine -mail: HiteC@7d42ba8899ef4daea01b1b9e81793953.bitwarden.com -carLicense: 4R7R7T -departmentNumber: 8614 -employeeType: Employee -homePhone: +1 804 571-4564 -initials: C. H. -mobile: +1 804 685-3973 -pager: +1 804 235-2960 -roomNumber: 9147 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ilyse Mueller,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilyse Mueller -sn: Mueller -description: This is Ilyse Mueller's description -facsimileTelephoneNumber: +1 804 795-3167 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 804 788-7299 -title: Junior Product Development Madonna -userPassword: Password1 -uid: MuellerI -givenName: Ilyse -mail: MuellerI@3804896e582c4b3cac297cdd6774c60b.bitwarden.com -carLicense: E8DUQO -departmentNumber: 1182 -employeeType: Contract -homePhone: +1 804 108-1014 -initials: I. M. -mobile: +1 804 562-9802 -pager: +1 804 237-5794 -roomNumber: 9484 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Stephenie Brennen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephenie Brennen -sn: Brennen -description: This is Stephenie Brennen's description -facsimileTelephoneNumber: +1 804 455-7478 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 804 178-2813 -title: Associate Management Punk -userPassword: Password1 -uid: BrennenS -givenName: Stephenie -mail: BrennenS@1992350853aa4c25bb04f92a613f61ca.bitwarden.com -carLicense: 712KJV -departmentNumber: 9259 -employeeType: Contract -homePhone: +1 804 107-1365 -initials: S. B. -mobile: +1 804 728-8098 -pager: +1 804 751-7988 -roomNumber: 9919 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Normand Hussein,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Normand Hussein -sn: Hussein -description: This is Normand Hussein's description -facsimileTelephoneNumber: +1 408 812-8173 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 351-9170 -title: Master Peons Madonna -userPassword: Password1 -uid: HusseinN -givenName: Normand -mail: HusseinN@e7d8ea0a48844afca86cee78439bf3ab.bitwarden.com -carLicense: 80HXWA -departmentNumber: 1759 -employeeType: Contract -homePhone: +1 408 489-5787 -initials: N. H. -mobile: +1 408 125-8450 -pager: +1 408 219-3786 -roomNumber: 9167 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Greta Vilayil,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Greta Vilayil -sn: Vilayil -description: This is Greta Vilayil's description -facsimileTelephoneNumber: +1 510 586-1136 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 875-7744 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: VilayilG -givenName: Greta -mail: VilayilG@464e8484746549448721c5996878db8b.bitwarden.com -carLicense: 7S8C42 -departmentNumber: 9670 -employeeType: Normal -homePhone: +1 510 850-1964 -initials: G. V. -mobile: +1 510 113-4744 -pager: +1 510 691-9050 -roomNumber: 8293 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Siana Letsome,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siana Letsome -sn: Letsome -description: This is Siana Letsome's description -facsimileTelephoneNumber: +1 804 876-5706 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 251-5864 -title: Junior Payroll Consultant -userPassword: Password1 -uid: LetsomeS -givenName: Siana -mail: LetsomeS@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com -carLicense: NIQMNF -departmentNumber: 4340 -employeeType: Employee -homePhone: +1 804 563-8918 -initials: S. L. -mobile: +1 804 625-8965 -pager: +1 804 396-3840 -roomNumber: 9013 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cosola Steene,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cosola Steene -sn: Steene -description: This is Cosola Steene's description -facsimileTelephoneNumber: +1 206 398-4610 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 206 816-7723 -title: Associate Product Development Czar -userPassword: Password1 -uid: SteeneC -givenName: Cosola -mail: SteeneC@0565c5e96dfc4577b9a5d67dbae6882a.bitwarden.com -carLicense: 3K0BCH -departmentNumber: 8484 -employeeType: Normal -homePhone: +1 206 970-6240 -initials: C. S. -mobile: +1 206 454-5505 -pager: +1 206 492-3246 -roomNumber: 8250 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cooney Momon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cooney Momon -sn: Momon -description: This is Cooney Momon's description -facsimileTelephoneNumber: +1 206 366-2512 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 363-2842 -title: Chief Product Testing Writer -userPassword: Password1 -uid: MomonC -givenName: Cooney -mail: MomonC@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com -carLicense: BMT092 -departmentNumber: 2303 -employeeType: Normal -homePhone: +1 206 538-9983 -initials: C. M. -mobile: +1 206 365-8988 -pager: +1 206 133-2456 -roomNumber: 8242 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashla Hinchey -sn: Hinchey -description: This is Ashla Hinchey's description -facsimileTelephoneNumber: +1 818 326-3183 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 533-5965 -title: Junior Product Testing President -userPassword: Password1 -uid: HincheyA -givenName: Ashla -mail: HincheyA@7861fff1b7b548db86804b430c935e99.bitwarden.com -carLicense: BJIA3N -departmentNumber: 6446 -employeeType: Employee -homePhone: +1 818 648-4023 -initials: A. H. -mobile: +1 818 343-6846 -pager: +1 818 121-6523 -roomNumber: 9254 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Julie Dinalic,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julie Dinalic -sn: Dinalic -description: This is Julie Dinalic's description -facsimileTelephoneNumber: +1 510 341-9553 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 148-6550 -title: Master Product Development Figurehead -userPassword: Password1 -uid: DinalicJ -givenName: Julie -mail: DinalicJ@7677d85bd47643a9936d436eda55abc7.bitwarden.com -carLicense: A5XDJ7 -departmentNumber: 6108 -employeeType: Normal -homePhone: +1 510 320-5997 -initials: J. D. -mobile: +1 510 985-4889 -pager: +1 510 994-2281 -roomNumber: 8776 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Manya Mukherjee,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manya Mukherjee -sn: Mukherjee -description: This is Manya Mukherjee's description -facsimileTelephoneNumber: +1 804 485-8957 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 673-5812 -title: Associate Peons Punk -userPassword: Password1 -uid: MukherjM -givenName: Manya -mail: MukherjM@54c9f2fcd12b42f2bc190f4e3b612fb2.bitwarden.com -carLicense: 03KHP3 -departmentNumber: 2242 -employeeType: Normal -homePhone: +1 804 707-7692 -initials: M. M. -mobile: +1 804 622-4342 -pager: +1 804 667-9378 -roomNumber: 9380 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Evans Letsome,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evans Letsome -sn: Letsome -description: This is Evans Letsome's description -facsimileTelephoneNumber: +1 206 330-5583 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 852-4792 -title: Master Management Sales Rep -userPassword: Password1 -uid: LetsomeE -givenName: Evans -mail: LetsomeE@54f67a9483774cc1b5e0de314f8eb92a.bitwarden.com -carLicense: KTM1C3 -departmentNumber: 3831 -employeeType: Normal -homePhone: +1 206 129-9564 -initials: E. L. -mobile: +1 206 671-4175 -pager: +1 206 780-8460 -roomNumber: 8851 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Silvana Filpus,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silvana Filpus -sn: Filpus -description: This is Silvana Filpus's description -facsimileTelephoneNumber: +1 804 100-3579 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 114-3211 -title: Chief Human Resources Fellow -userPassword: Password1 -uid: FilpusS -givenName: Silvana -mail: FilpusS@1323c697a4384a89878379a601aa7eea.bitwarden.com -carLicense: ON6B55 -departmentNumber: 8341 -employeeType: Employee -homePhone: +1 804 126-2148 -initials: S. F. -mobile: +1 804 332-5856 -pager: +1 804 505-3227 -roomNumber: 9910 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=YauFun Poindexter,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: YauFun Poindexter -sn: Poindexter -description: This is YauFun Poindexter's description -facsimileTelephoneNumber: +1 510 249-7010 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 627-9815 -title: Associate Administrative Evangelist -userPassword: Password1 -uid: PoindexY -givenName: YauFun -mail: PoindexY@aa594d3d10eb450fa0bddacf7ac87cac.bitwarden.com -carLicense: YGNXEB -departmentNumber: 2354 -employeeType: Employee -homePhone: +1 510 359-3537 -initials: Y. P. -mobile: +1 510 478-9591 -pager: +1 510 405-5521 -roomNumber: 9742 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PohSoon Hellyer -sn: Hellyer -description: This is PohSoon Hellyer's description -facsimileTelephoneNumber: +1 510 582-9345 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 719-1675 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: HellyerP -givenName: PohSoon -mail: HellyerP@03c5e61ca485493dabd358d72b829f22.bitwarden.com -carLicense: 75GEKT -departmentNumber: 6289 -employeeType: Normal -homePhone: +1 510 633-5074 -initials: P. H. -mobile: +1 510 499-9348 -pager: +1 510 819-6443 -roomNumber: 8443 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Emmy Blissett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emmy Blissett -sn: Blissett -description: This is Emmy Blissett's description -facsimileTelephoneNumber: +1 415 496-7469 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 794-7707 -title: Junior Product Development Punk -userPassword: Password1 -uid: BlissetE -givenName: Emmy -mail: BlissetE@b09998527867493f8ec7d2c91a978e4c.bitwarden.com -carLicense: LSEMLS -departmentNumber: 4659 -employeeType: Contract -homePhone: +1 415 650-4955 -initials: E. B. -mobile: +1 415 402-2801 -pager: +1 415 917-9346 -roomNumber: 8196 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Blanche VanKast,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blanche VanKast -sn: VanKast -description: This is Blanche VanKast's description -facsimileTelephoneNumber: +1 213 411-4444 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 935-5125 -title: Supreme Product Development Dictator -userPassword: Password1 -uid: VanKastB -givenName: Blanche -mail: VanKastB@adb4d2b4425349f3bb6cfdf4327abf0b.bitwarden.com -carLicense: M0PLWT -departmentNumber: 8097 -employeeType: Employee -homePhone: +1 213 244-9940 -initials: B. V. -mobile: +1 213 933-9017 -pager: +1 213 587-9124 -roomNumber: 8320 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fernanda Ermarkaryan -sn: Ermarkaryan -description: This is Fernanda Ermarkaryan's description -facsimileTelephoneNumber: +1 510 857-4421 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 567-4662 -title: Associate Product Testing Dictator -userPassword: Password1 -uid: ErmarkaF -givenName: Fernanda -mail: ErmarkaF@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com -carLicense: FXL3HT -departmentNumber: 7263 -employeeType: Normal -homePhone: +1 510 324-4867 -initials: F. E. -mobile: +1 510 483-4008 -pager: +1 510 551-5108 -roomNumber: 8326 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Merry Aderhold,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merry Aderhold -sn: Aderhold -description: This is Merry Aderhold's description -facsimileTelephoneNumber: +1 206 800-4418 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 604-5472 -title: Chief Peons Madonna -userPassword: Password1 -uid: AderholM -givenName: Merry -mail: AderholM@a5f3f4452bf8496fb0a3c488cc4a7ea7.bitwarden.com -carLicense: 3E24WE -departmentNumber: 5488 -employeeType: Contract -homePhone: +1 206 272-4858 -initials: M. A. -mobile: +1 206 910-5131 -pager: +1 206 376-8742 -roomNumber: 9283 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gwenni Marren,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwenni Marren -sn: Marren -description: This is Gwenni Marren's description -facsimileTelephoneNumber: +1 213 953-4674 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 445-8924 -title: Associate Management Madonna -userPassword: Password1 -uid: MarrenG -givenName: Gwenni -mail: MarrenG@298910ba55544a1097f46cf86b2ab0db.bitwarden.com -carLicense: E20WJ7 -departmentNumber: 6284 -employeeType: Contract -homePhone: +1 213 930-7653 -initials: G. M. -mobile: +1 213 587-7656 -pager: +1 213 989-2075 -roomNumber: 9781 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Allys Akita,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Allys Akita -sn: Akita -description: This is Allys Akita's description -facsimileTelephoneNumber: +1 213 507-1916 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 213 651-3307 -title: Master Product Testing Developer -userPassword: Password1 -uid: AkitaA -givenName: Allys -mail: AkitaA@f23a16acadd64ac19918522aa8759ece.bitwarden.com -carLicense: 4WEOQJ -departmentNumber: 1769 -employeeType: Contract -homePhone: +1 213 383-8247 -initials: A. A. -mobile: +1 213 745-8715 -pager: +1 213 411-9964 -roomNumber: 8885 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marris Fanchi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marris Fanchi -sn: Fanchi -description: This is Marris Fanchi's description -facsimileTelephoneNumber: +1 510 997-2328 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 510 687-5952 -title: Supreme Payroll Technician -userPassword: Password1 -uid: FanchiM -givenName: Marris -mail: FanchiM@e1a5d833294d4b9eaa497139d44c8a66.bitwarden.com -carLicense: 1P9YJO -departmentNumber: 1986 -employeeType: Employee -homePhone: +1 510 855-8447 -initials: M. F. -mobile: +1 510 932-4980 -pager: +1 510 256-8135 -roomNumber: 9642 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Courtney Bayraktar -sn: Bayraktar -description: This is Courtney Bayraktar's description -facsimileTelephoneNumber: +1 408 750-2113 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 828-6719 -title: Junior Janitorial President -userPassword: Password1 -uid: BayraktC -givenName: Courtney -mail: BayraktC@146c6f8ea8724614b75bf56ba3cb8bbf.bitwarden.com -carLicense: U1RSYY -departmentNumber: 4910 -employeeType: Normal -homePhone: +1 408 547-2086 -initials: C. B. -mobile: +1 408 952-2610 -pager: +1 408 474-7245 -roomNumber: 9795 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bryna McMann,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bryna McMann -sn: McMann -description: This is Bryna McMann's description -facsimileTelephoneNumber: +1 510 136-2449 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 876-8323 -title: Chief Peons Admin -userPassword: Password1 -uid: McMannB -givenName: Bryna -mail: McMannB@15866f1d7367463c8aa06c201aa87971.bitwarden.com -carLicense: NNBHE8 -departmentNumber: 1821 -employeeType: Contract -homePhone: +1 510 702-6329 -initials: B. M. -mobile: +1 510 117-9622 -pager: +1 510 845-5782 -roomNumber: 9222 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ysabel Mendonca -sn: Mendonca -description: This is Ysabel Mendonca's description -facsimileTelephoneNumber: +1 206 896-4460 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 352-5211 -title: Supreme Human Resources Janitor -userPassword: Password1 -uid: MendoncY -givenName: Ysabel -mail: MendoncY@9cde21d54f45469eaa2726ba1c900158.bitwarden.com -carLicense: VF5OX5 -departmentNumber: 2854 -employeeType: Normal -homePhone: +1 206 478-1650 -initials: Y. M. -mobile: +1 206 961-2340 -pager: +1 206 279-4625 -roomNumber: 9350 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Clayton Lychak,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clayton Lychak -sn: Lychak -description: This is Clayton Lychak's description -facsimileTelephoneNumber: +1 818 675-2559 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 818 880-1114 -title: Master Product Testing Engineer -userPassword: Password1 -uid: LychakC -givenName: Clayton -mail: LychakC@3986b5b118ef4d79a84f9f227789123a.bitwarden.com -carLicense: 31HYOX -departmentNumber: 8203 -employeeType: Contract -homePhone: +1 818 976-6343 -initials: C. L. -mobile: +1 818 449-6150 -pager: +1 818 925-6629 -roomNumber: 9556 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronald Bernhardt -sn: Bernhardt -description: This is Ronald Bernhardt's description -facsimileTelephoneNumber: +1 510 873-6760 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 879-6840 -title: Chief Administrative Admin -userPassword: Password1 -uid: BernharR -givenName: Ronald -mail: BernharR@6959c2a103f748adbcb2ba7b29cef5d5.bitwarden.com -carLicense: 67WU8X -departmentNumber: 8803 -employeeType: Normal -homePhone: +1 510 846-3784 -initials: R. B. -mobile: +1 510 667-6446 -pager: +1 510 298-3798 -roomNumber: 9473 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Abe Parton,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abe Parton -sn: Parton -description: This is Abe Parton's description -facsimileTelephoneNumber: +1 206 246-6928 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 206 922-9717 -title: Chief Peons Fellow -userPassword: Password1 -uid: PartonA -givenName: Abe -mail: PartonA@d67f9ee009e04d2db5fb442e7cbf3d9c.bitwarden.com -carLicense: BDUVWI -departmentNumber: 9949 -employeeType: Employee -homePhone: +1 206 676-9433 -initials: A. P. -mobile: +1 206 321-3086 -pager: +1 206 853-8025 -roomNumber: 9724 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Felice Kaehler,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felice Kaehler -sn: Kaehler -description: This is Felice Kaehler's description -facsimileTelephoneNumber: +1 415 651-2978 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 860-4500 -title: Supreme Payroll Mascot -userPassword: Password1 -uid: KaehlerF -givenName: Felice -mail: KaehlerF@880fea2dcc394beca5f7e445d6e3f83c.bitwarden.com -carLicense: R7XOT3 -departmentNumber: 1658 -employeeType: Normal -homePhone: +1 415 298-6754 -initials: F. K. -mobile: +1 415 980-5926 -pager: +1 415 448-7895 -roomNumber: 8901 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jacenta Sztein,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacenta Sztein -sn: Sztein -description: This is Jacenta Sztein's description -facsimileTelephoneNumber: +1 206 300-8619 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 368-5247 -title: Associate Management Consultant -userPassword: Password1 -uid: SzteinJ -givenName: Jacenta -mail: SzteinJ@2ffe207cbf4244c5be34772f95d3e203.bitwarden.com -carLicense: K7UBUP -departmentNumber: 8203 -employeeType: Normal -homePhone: +1 206 842-9600 -initials: J. S. -mobile: +1 206 336-5733 -pager: +1 206 282-6223 -roomNumber: 8794 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sonja Hoag,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonja Hoag -sn: Hoag -description: This is Sonja Hoag's description -facsimileTelephoneNumber: +1 213 848-5489 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 886-9136 -title: Master Payroll Artist -userPassword: Password1 -uid: HoagS -givenName: Sonja -mail: HoagS@41e244581cf54e77b9831bacfa1794ee.bitwarden.com -carLicense: NQIGIP -departmentNumber: 9626 -employeeType: Contract -homePhone: +1 213 939-3676 -initials: S. H. -mobile: +1 213 244-6369 -pager: +1 213 842-9178 -roomNumber: 8494 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Manmohan MacAdams,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manmohan MacAdams -sn: MacAdams -description: This is Manmohan MacAdams's description -facsimileTelephoneNumber: +1 415 579-4800 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 415 857-6446 -title: Supreme Peons Developer -userPassword: Password1 -uid: MacAdamM -givenName: Manmohan -mail: MacAdamM@642c0c60f802487f958e665bafd86eae.bitwarden.com -carLicense: 6BS7YA -departmentNumber: 4115 -employeeType: Contract -homePhone: +1 415 131-1703 -initials: M. M. -mobile: +1 415 392-6255 -pager: +1 415 307-2154 -roomNumber: 9682 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cathe Bejar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathe Bejar -sn: Bejar -description: This is Cathe Bejar's description -facsimileTelephoneNumber: +1 206 439-6737 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 867-7950 -title: Junior Peons Developer -userPassword: Password1 -uid: BejarC -givenName: Cathe -mail: BejarC@ba8402a4d315465dbb751a651c142686.bitwarden.com -carLicense: 0XTLSW -departmentNumber: 1716 -employeeType: Employee -homePhone: +1 206 416-6388 -initials: C. B. -mobile: +1 206 486-9342 -pager: +1 206 779-8191 -roomNumber: 8234 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tape Vandervelde,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tape Vandervelde -sn: Vandervelde -description: This is Tape Vandervelde's description -facsimileTelephoneNumber: +1 818 194-8707 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 818 427-3968 -title: Associate Administrative Assistant -userPassword: Password1 -uid: VandervT -givenName: Tape -mail: VandervT@db179d7341f8445abe156cf9e17446a7.bitwarden.com -carLicense: GKXA1Q -departmentNumber: 5120 -employeeType: Employee -homePhone: +1 818 620-6446 -initials: T. V. -mobile: +1 818 967-5652 -pager: +1 818 123-1255 -roomNumber: 9971 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Adria Leger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adria Leger -sn: Leger -description: This is Adria Leger's description -facsimileTelephoneNumber: +1 213 713-7014 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 198-3605 -title: Chief Administrative Stooge -userPassword: Password1 -uid: LegerA -givenName: Adria -mail: LegerA@6a29a5859e9645b49806b0a3149cb2b1.bitwarden.com -carLicense: 950N3N -departmentNumber: 8724 -employeeType: Employee -homePhone: +1 213 920-1808 -initials: A. L. -mobile: +1 213 349-6843 -pager: +1 213 165-6870 -roomNumber: 8340 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Modesty Quinlan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Modesty Quinlan -sn: Quinlan -description: This is Modesty Quinlan's description -facsimileTelephoneNumber: +1 213 907-5954 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 809-7492 -title: Junior Management Sales Rep -userPassword: Password1 -uid: QuinlanM -givenName: Modesty -mail: QuinlanM@643a7a9782f24ae2ae0ce0064cc2c175.bitwarden.com -carLicense: XCS993 -departmentNumber: 9302 -employeeType: Normal -homePhone: +1 213 806-9943 -initials: M. Q. -mobile: +1 213 858-9543 -pager: +1 213 280-4139 -roomNumber: 9032 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jawaid Upton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jawaid Upton -sn: Upton -description: This is Jawaid Upton's description -facsimileTelephoneNumber: +1 510 676-2136 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 589-8626 -title: Chief Management Manager -userPassword: Password1 -uid: UptonJ -givenName: Jawaid -mail: UptonJ@48f40b9c61c1423ab7f4a12dacd08cb7.bitwarden.com -carLicense: 45DDB3 -departmentNumber: 8212 -employeeType: Normal -homePhone: +1 510 608-5662 -initials: J. U. -mobile: +1 510 310-1899 -pager: +1 510 913-5588 -roomNumber: 9909 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Trevor Vradmin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trevor Vradmin -sn: Vradmin -description: This is Trevor Vradmin's description -facsimileTelephoneNumber: +1 415 719-9885 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 398-8324 -title: Supreme Product Development Technician -userPassword: Password1 -uid: VradminT -givenName: Trevor -mail: VradminT@5214956f0ee84ad493b8defdd90a23da.bitwarden.com -carLicense: A5O7BP -departmentNumber: 2917 -employeeType: Employee -homePhone: +1 415 742-5499 -initials: T. V. -mobile: +1 415 415-8096 -pager: +1 415 521-4699 -roomNumber: 8210 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Helena Pellizzari,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helena Pellizzari -sn: Pellizzari -description: This is Helena Pellizzari's description -facsimileTelephoneNumber: +1 408 319-8317 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 662-9798 -title: Junior Peons Manager -userPassword: Password1 -uid: PellizzH -givenName: Helena -mail: PellizzH@aea3f0a7f67b4eaaaa82cbd9284643da.bitwarden.com -carLicense: R9U5XN -departmentNumber: 4670 -employeeType: Employee -homePhone: +1 408 360-3199 -initials: H. P. -mobile: +1 408 844-7604 -pager: +1 408 878-2142 -roomNumber: 9972 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=MunHang Salinas,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MunHang Salinas -sn: Salinas -description: This is MunHang Salinas's description -facsimileTelephoneNumber: +1 818 625-1983 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 230-6249 -title: Master Janitorial Consultant -userPassword: Password1 -uid: SalinasM -givenName: MunHang -mail: SalinasM@1dc3a166a7d1429cbda07bce89749db3.bitwarden.com -carLicense: 1PIA9A -departmentNumber: 6435 -employeeType: Employee -homePhone: +1 818 889-6804 -initials: M. S. -mobile: +1 818 476-9877 -pager: +1 818 668-9864 -roomNumber: 8900 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SimonPui-Lok Schulze -sn: Schulze -description: This is SimonPui-Lok Schulze's description -facsimileTelephoneNumber: +1 510 756-6538 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 741-3551 -title: Junior Human Resources Sales Rep -userPassword: Password1 -uid: SchulzeS -givenName: SimonPui-Lok -mail: SchulzeS@f071c89187164ee99b36301acebce3d5.bitwarden.com -carLicense: 3DHVQW -departmentNumber: 3663 -employeeType: Normal -homePhone: +1 510 734-8492 -initials: S. S. -mobile: +1 510 128-8596 -pager: +1 510 644-6519 -roomNumber: 9131 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephani Saidzadeh -sn: Saidzadeh -description: This is Stephani Saidzadeh's description -facsimileTelephoneNumber: +1 818 509-1777 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 818 752-5486 -title: Chief Product Development Madonna -userPassword: Password1 -uid: SaidzadS -givenName: Stephani -mail: SaidzadS@ab41bf0b11974609ad8cdf477ead2e3f.bitwarden.com -carLicense: N97BAR -departmentNumber: 7404 -employeeType: Contract -homePhone: +1 818 526-1181 -initials: S. S. -mobile: +1 818 214-6311 -pager: +1 818 374-8628 -roomNumber: 9884 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Delcina Forbes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delcina Forbes -sn: Forbes -description: This is Delcina Forbes's description -facsimileTelephoneNumber: +1 804 481-9565 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 208-8789 -title: Associate Product Development Writer -userPassword: Password1 -uid: ForbesD -givenName: Delcina -mail: ForbesD@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com -carLicense: LI2I0K -departmentNumber: 4878 -employeeType: Normal -homePhone: +1 804 620-3718 -initials: D. F. -mobile: +1 804 445-3997 -pager: +1 804 872-8743 -roomNumber: 9896 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Norene Tarver,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norene Tarver -sn: Tarver -description: This is Norene Tarver's description -facsimileTelephoneNumber: +1 415 492-8136 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 139-7563 -title: Junior Janitorial Artist -userPassword: Password1 -uid: TarverN -givenName: Norene -mail: TarverN@416f73acf1c3455592568bbc2cd91814.bitwarden.com -carLicense: 4EIIB5 -departmentNumber: 4411 -employeeType: Normal -homePhone: +1 415 746-7754 -initials: N. T. -mobile: +1 415 600-8191 -pager: +1 415 682-9439 -roomNumber: 8589 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Angie Leiba,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angie Leiba -sn: Leiba -description: This is Angie Leiba's description -facsimileTelephoneNumber: +1 510 464-2497 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 369-4702 -title: Chief Management Madonna -userPassword: Password1 -uid: LeibaA -givenName: Angie -mail: LeibaA@cdf65b883c4c457a86f2eba62ef732a4.bitwarden.com -carLicense: 72FFAQ -departmentNumber: 4810 -employeeType: Normal -homePhone: +1 510 594-8598 -initials: A. L. -mobile: +1 510 500-4203 -pager: +1 510 370-5269 -roomNumber: 8440 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ernest Welker,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ernest Welker -sn: Welker -description: This is Ernest Welker's description -facsimileTelephoneNumber: +1 206 680-7455 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 725-7924 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: WelkerE -givenName: Ernest -mail: WelkerE@98dbe2650ab647828dc76525d39c4ec5.bitwarden.com -carLicense: DWV9Q1 -departmentNumber: 7162 -employeeType: Normal -homePhone: +1 206 485-9765 -initials: E. W. -mobile: +1 206 117-5716 -pager: +1 206 820-2012 -roomNumber: 9409 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorisa Venjohn -sn: Venjohn -description: This is Dorisa Venjohn's description -facsimileTelephoneNumber: +1 818 373-6392 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 619-1954 -title: Master Human Resources Manager -userPassword: Password1 -uid: VenjohnD -givenName: Dorisa -mail: VenjohnD@416f73acf1c3455592568bbc2cd91814.bitwarden.com -carLicense: D323WI -departmentNumber: 9078 -employeeType: Contract -homePhone: +1 818 890-6935 -initials: D. V. -mobile: +1 818 941-2168 -pager: +1 818 395-4795 -roomNumber: 8971 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fitzgerald Kabel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fitzgerald Kabel -sn: Kabel -description: This is Fitzgerald Kabel's description -facsimileTelephoneNumber: +1 510 546-5477 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 210-5421 -title: Chief Management Czar -userPassword: Password1 -uid: KabelF -givenName: Fitzgerald -mail: KabelF@a3cca719b1e44338804967e6cd3716a5.bitwarden.com -carLicense: 7IE2H8 -departmentNumber: 6162 -employeeType: Normal -homePhone: +1 510 364-6260 -initials: F. K. -mobile: +1 510 922-3666 -pager: +1 510 944-8461 -roomNumber: 9706 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zaven Bethune,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zaven Bethune -sn: Bethune -description: This is Zaven Bethune's description -facsimileTelephoneNumber: +1 206 808-7992 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 522-4443 -title: Master Product Development Grunt -userPassword: Password1 -uid: BethuneZ -givenName: Zaven -mail: BethuneZ@d9c35c3dbb1b4cc08294fcf741816060.bitwarden.com -carLicense: NIJUM8 -departmentNumber: 2284 -employeeType: Normal -homePhone: +1 206 348-8515 -initials: Z. B. -mobile: +1 206 586-3855 -pager: +1 206 279-5624 -roomNumber: 8772 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Aridatha Flindall,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aridatha Flindall -sn: Flindall -description: This is Aridatha Flindall's description -facsimileTelephoneNumber: +1 408 544-1182 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 187-1044 -title: Supreme Management Dictator -userPassword: Password1 -uid: FlindalA -givenName: Aridatha -mail: FlindalA@cae8e3926df843bead78e784e4401c15.bitwarden.com -carLicense: FPJD57 -departmentNumber: 7855 -employeeType: Employee -homePhone: +1 408 462-3512 -initials: A. F. -mobile: +1 408 878-3205 -pager: +1 408 757-9775 -roomNumber: 9959 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cairistiona Sanh -sn: Sanh -description: This is Cairistiona Sanh's description -facsimileTelephoneNumber: +1 206 435-7042 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 893-2870 -title: Chief Product Development Warrior -userPassword: Password1 -uid: SanhC -givenName: Cairistiona -mail: SanhC@b70f11362a424a69841534d3b1179197.bitwarden.com -carLicense: B5CLMN -departmentNumber: 5731 -employeeType: Normal -homePhone: +1 206 151-7330 -initials: C. S. -mobile: +1 206 488-5351 -pager: +1 206 229-2485 -roomNumber: 8103 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kipp Aubuchon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kipp Aubuchon -sn: Aubuchon -description: This is Kipp Aubuchon's description -facsimileTelephoneNumber: +1 213 198-1848 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 915-5284 -title: Associate Management Architect -userPassword: Password1 -uid: AubuchoK -givenName: Kipp -mail: AubuchoK@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com -carLicense: 202G4Q -departmentNumber: 6368 -employeeType: Employee -homePhone: +1 213 966-6779 -initials: K. A. -mobile: +1 213 306-5318 -pager: +1 213 411-2653 -roomNumber: 9653 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Daile Id,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daile Id -sn: Id -description: This is Daile Id's description -facsimileTelephoneNumber: +1 408 620-4196 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 408 236-2367 -title: Chief Payroll Fellow -userPassword: Password1 -uid: IdD -givenName: Daile -mail: IdD@250220c45d4c4f3e8bbdbc41fe165d43.bitwarden.com -carLicense: G9E5C4 -departmentNumber: 5401 -employeeType: Normal -homePhone: +1 408 118-3376 -initials: D. I. -mobile: +1 408 748-9284 -pager: +1 408 186-1585 -roomNumber: 8336 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Shea Lashmit,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shea Lashmit -sn: Lashmit -description: This is Shea Lashmit's description -facsimileTelephoneNumber: +1 206 164-9947 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 206 517-8364 -title: Junior Product Testing Czar -userPassword: Password1 -uid: LashmitS -givenName: Shea -mail: LashmitS@795d165ac426423b9759f469242c1c41.bitwarden.com -carLicense: E7SMTM -departmentNumber: 2097 -employeeType: Normal -homePhone: +1 206 708-1367 -initials: S. L. -mobile: +1 206 335-7395 -pager: +1 206 260-6875 -roomNumber: 8983 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rizwan McCloskey -sn: McCloskey -description: This is Rizwan McCloskey's description -facsimileTelephoneNumber: +1 818 549-4145 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 675-6416 -title: Junior Janitorial Dictator -userPassword: Password1 -uid: McCloskR -givenName: Rizwan -mail: McCloskR@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com -carLicense: WL8DWR -departmentNumber: 3341 -employeeType: Contract -homePhone: +1 818 838-2819 -initials: R. M. -mobile: +1 818 861-5364 -pager: +1 818 904-4042 -roomNumber: 8341 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stuart Murdock,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stuart Murdock -sn: Murdock -description: This is Stuart Murdock's description -facsimileTelephoneNumber: +1 415 624-3043 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 415 139-2529 -title: Master Payroll Punk -userPassword: Password1 -uid: MurdockS -givenName: Stuart -mail: MurdockS@281a3b7d828a4279bcb4d231694f9078.bitwarden.com -carLicense: VDCQMG -departmentNumber: 4628 -employeeType: Contract -homePhone: +1 415 439-5764 -initials: S. M. -mobile: +1 415 196-8716 -pager: +1 415 573-7076 -roomNumber: 8701 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Adrianna Ness,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrianna Ness -sn: Ness -description: This is Adrianna Ness's description -facsimileTelephoneNumber: +1 206 605-1753 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 206 146-2111 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: NessA -givenName: Adrianna -mail: NessA@4cb464a4b57341639b507e14b84bcd33.bitwarden.com -carLicense: NTW23D -departmentNumber: 1979 -employeeType: Employee -homePhone: +1 206 700-3807 -initials: A. N. -mobile: +1 206 733-3044 -pager: +1 206 609-4230 -roomNumber: 8209 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agace Fitzpatrick -sn: Fitzpatrick -description: This is Agace Fitzpatrick's description -facsimileTelephoneNumber: +1 213 514-2302 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 292-1771 -title: Supreme Product Development Engineer -userPassword: Password1 -uid: FitzpatA -givenName: Agace -mail: FitzpatA@d0510c6d4d2248279a5b0899ea306017.bitwarden.com -carLicense: FLJDJM -departmentNumber: 5594 -employeeType: Employee -homePhone: +1 213 631-9832 -initials: A. F. -mobile: +1 213 158-6939 -pager: +1 213 296-3296 -roomNumber: 8938 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Vanity Penland,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanity Penland -sn: Penland -description: This is Vanity Penland's description -facsimileTelephoneNumber: +1 206 503-1971 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 206 686-3990 -title: Master Human Resources Mascot -userPassword: Password1 -uid: PenlandV -givenName: Vanity -mail: PenlandV@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com -carLicense: VDIDX6 -departmentNumber: 1581 -employeeType: Employee -homePhone: +1 206 131-5030 -initials: V. P. -mobile: +1 206 835-7482 -pager: +1 206 354-5044 -roomNumber: 9857 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shiroshi Thornley -sn: Thornley -description: This is Shiroshi Thornley's description -facsimileTelephoneNumber: +1 818 233-1771 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 362-3764 -title: Associate Product Development Stooge -userPassword: Password1 -uid: ThornleS -givenName: Shiroshi -mail: ThornleS@49424809fdd04ce884f671ecda70d45c.bitwarden.com -carLicense: 87E0YK -departmentNumber: 1873 -employeeType: Normal -homePhone: +1 818 229-3458 -initials: S. T. -mobile: +1 818 414-9502 -pager: +1 818 914-6459 -roomNumber: 8407 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Denzil Willenbring,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Denzil Willenbring -sn: Willenbring -description: This is Denzil Willenbring's description -facsimileTelephoneNumber: +1 408 840-4821 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 408 148-4318 -title: Chief Administrative Madonna -userPassword: Password1 -uid: WillenbD -givenName: Denzil -mail: WillenbD@21b4ff7eaee4433da6e498e7c5416e46.bitwarden.com -carLicense: 4FR85W -departmentNumber: 2776 -employeeType: Employee -homePhone: +1 408 116-6553 -initials: D. W. -mobile: +1 408 361-1859 -pager: +1 408 557-1279 -roomNumber: 9795 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Erna Stephen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erna Stephen -sn: Stephen -description: This is Erna Stephen's description -facsimileTelephoneNumber: +1 213 860-8233 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 382-1613 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: StephenE -givenName: Erna -mail: StephenE@b401949a67c74bd1beca2a3e5c932036.bitwarden.com -carLicense: DMQ245 -departmentNumber: 6229 -employeeType: Contract -homePhone: +1 213 797-5455 -initials: E. S. -mobile: +1 213 901-6589 -pager: +1 213 582-7997 -roomNumber: 8775 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=MarieAndree Ness,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MarieAndree Ness -sn: Ness -description: This is MarieAndree Ness's description -facsimileTelephoneNumber: +1 206 811-5616 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 362-9649 -title: Supreme Management Sales Rep -userPassword: Password1 -uid: NessM -givenName: MarieAndree -mail: NessM@2e9e3fdb5ac94378ae0798f03ed2af05.bitwarden.com -carLicense: ULKWC4 -departmentNumber: 7391 -employeeType: Employee -homePhone: +1 206 515-4425 -initials: M. N. -mobile: +1 206 239-1600 -pager: +1 206 864-5807 -roomNumber: 9243 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=LouisRene Borozny,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LouisRene Borozny -sn: Borozny -description: This is LouisRene Borozny's description -facsimileTelephoneNumber: +1 206 657-7412 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 206 543-5869 -title: Junior Payroll Writer -userPassword: Password1 -uid: BoroznyL -givenName: LouisRene -mail: BoroznyL@76f45d6ecf254c758ec9e0e2bce3358b.bitwarden.com -carLicense: CGLV65 -departmentNumber: 2094 -employeeType: Normal -homePhone: +1 206 812-6850 -initials: L. B. -mobile: +1 206 531-7265 -pager: +1 206 298-3225 -roomNumber: 9151 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Donetta Grabowski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donetta Grabowski -sn: Grabowski -description: This is Donetta Grabowski's description -facsimileTelephoneNumber: +1 408 891-5718 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 530-9394 -title: Supreme Peons Czar -userPassword: Password1 -uid: GrabowsD -givenName: Donetta -mail: GrabowsD@282788aa89974e41becc817ad84f61e2.bitwarden.com -carLicense: 0GX62C -departmentNumber: 4345 -employeeType: Contract -homePhone: +1 408 930-7912 -initials: D. G. -mobile: +1 408 439-5913 -pager: +1 408 421-2646 -roomNumber: 9994 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brianne Seddigh -sn: Seddigh -description: This is Brianne Seddigh's description -facsimileTelephoneNumber: +1 206 855-9281 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 101-9547 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: SeddighB -givenName: Brianne -mail: SeddighB@331a1fba93cb4fc9bfec4ceeacadac7c.bitwarden.com -carLicense: 9CE2AJ -departmentNumber: 8674 -employeeType: Normal -homePhone: +1 206 908-9320 -initials: B. S. -mobile: +1 206 768-8664 -pager: +1 206 522-8916 -roomNumber: 9477 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Henk Crick,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Henk Crick -sn: Crick -description: This is Henk Crick's description -facsimileTelephoneNumber: +1 206 234-8698 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 613-1355 -title: Chief Product Testing Pinhead -userPassword: Password1 -uid: CrickH -givenName: Henk -mail: CrickH@de014112a9c2429e8a696185d3f55fa8.bitwarden.com -carLicense: KBV6FV -departmentNumber: 6907 -employeeType: Normal -homePhone: +1 206 699-3202 -initials: H. C. -mobile: +1 206 810-2944 -pager: +1 206 233-3790 -roomNumber: 8142 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tats McDermott,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ineke Haig,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ineke Haig -sn: Haig -description: This is Ineke Haig's description -facsimileTelephoneNumber: +1 408 940-8205 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 238-1831 -title: Master Payroll President -userPassword: Password1 -uid: HaigI -givenName: Ineke -mail: HaigI@4b870fc05654407aaffa37354d036e58.bitwarden.com -carLicense: 4T0TNI -departmentNumber: 3324 -employeeType: Employee -homePhone: +1 408 233-1431 -initials: I. H. -mobile: +1 408 526-1960 -pager: +1 408 121-6841 -roomNumber: 8298 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annemarijke Toscano -sn: Toscano -description: This is Annemarijke Toscano's description -facsimileTelephoneNumber: +1 415 215-6281 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 415 575-9508 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: ToscanoA -givenName: Annemarijke -mail: ToscanoA@9d29672938a1423692f56bf9785bfe43.bitwarden.com -carLicense: 17UHJY -departmentNumber: 3138 -employeeType: Contract -homePhone: +1 415 832-8800 -initials: A. T. -mobile: +1 415 927-1114 -pager: +1 415 882-6492 -roomNumber: 8113 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Felipa Catlett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felipa Catlett -sn: Catlett -description: This is Felipa Catlett's description -facsimileTelephoneNumber: +1 415 781-9316 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 415 582-8283 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: CatlettF -givenName: Felipa -mail: CatlettF@c7b440e597614575a5a39ed9339f6e2e.bitwarden.com -carLicense: YWQD54 -departmentNumber: 9319 -employeeType: Contract -homePhone: +1 415 220-5194 -initials: F. C. -mobile: +1 415 492-2685 -pager: +1 415 239-7818 -roomNumber: 9837 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kathye Ledou,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathye Ledou -sn: Ledou -description: This is Kathye Ledou's description -facsimileTelephoneNumber: +1 818 864-8837 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 622-3195 -title: Chief Management Sales Rep -userPassword: Password1 -uid: LedouK -givenName: Kathye -mail: LedouK@3019fa1598344acaa882f41e30176719.bitwarden.com -carLicense: 1IFPHF -departmentNumber: 5294 -employeeType: Normal -homePhone: +1 818 314-2850 -initials: K. L. -mobile: +1 818 305-1352 -pager: +1 818 205-5731 -roomNumber: 9889 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pawel Pippin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pawel Pippin -sn: Pippin -description: This is Pawel Pippin's description -facsimileTelephoneNumber: +1 213 899-2292 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 414-7881 -title: Master Payroll Consultant -userPassword: Password1 -uid: PippinP -givenName: Pawel -mail: PippinP@74e0243ab8e64a19864d198a422eff4d.bitwarden.com -carLicense: OJXNNI -departmentNumber: 2930 -employeeType: Contract -homePhone: +1 213 291-2676 -initials: P. P. -mobile: +1 213 812-2701 -pager: +1 213 198-5243 -roomNumber: 9077 -manager: cn=LeiSee Plato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Godiva Pesik,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Godiva Pesik -sn: Pesik -description: This is Godiva Pesik's description -facsimileTelephoneNumber: +1 510 277-1139 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 920-2260 -title: Supreme Janitorial Madonna -userPassword: Password1 -uid: PesikG -givenName: Godiva -mail: PesikG@069bff2c38b341aca5c431f6580b51ea.bitwarden.com -carLicense: JL9YBN -departmentNumber: 5068 -employeeType: Employee -homePhone: +1 510 149-1527 -initials: G. P. -mobile: +1 510 993-7565 -pager: +1 510 115-9233 -roomNumber: 8559 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosamund Freimark -sn: Freimark -description: This is Rosamund Freimark's description -facsimileTelephoneNumber: +1 510 662-7257 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 731-6927 -title: Associate Human Resources Director -userPassword: Password1 -uid: FreimarR -givenName: Rosamund -mail: FreimarR@a7879a3db49d425f8293a2b2d51d5b86.bitwarden.com -carLicense: XJR70O -departmentNumber: 4677 -employeeType: Normal -homePhone: +1 510 712-8956 -initials: R. F. -mobile: +1 510 880-2411 -pager: +1 510 179-9598 -roomNumber: 8636 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hugo Lamothe -sn: Lamothe -description: This is Hugo Lamothe's description -facsimileTelephoneNumber: +1 408 822-1833 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 360-1398 -title: Associate Janitorial Developer -userPassword: Password1 -uid: LamotheH -givenName: Hugo -mail: LamotheH@c2fbe2791d9c4564ab131c65109368d4.bitwarden.com -carLicense: 9AVHY6 -departmentNumber: 7865 -employeeType: Normal -homePhone: +1 408 596-2150 -initials: H. L. -mobile: +1 408 687-8625 -pager: +1 408 679-6485 -roomNumber: 8608 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Evelina Mapile,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evelina Mapile -sn: Mapile -description: This is Evelina Mapile's description -facsimileTelephoneNumber: +1 804 798-3452 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 207-7298 -title: Master Administrative Grunt -userPassword: Password1 -uid: MapileE -givenName: Evelina -mail: MapileE@502ce1a083704d4ea4b58d700d574c63.bitwarden.com -carLicense: QXAPTX -departmentNumber: 2397 -employeeType: Employee -homePhone: +1 804 815-8655 -initials: E. M. -mobile: +1 804 323-3987 -pager: +1 804 539-5622 -roomNumber: 9478 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pammy Rogers,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pammy Rogers -sn: Rogers -description: This is Pammy Rogers's description -facsimileTelephoneNumber: +1 415 991-4694 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 336-2729 -title: Junior Human Resources Developer -userPassword: Password1 -uid: RogersP -givenName: Pammy -mail: RogersP@78e39349ef7749648d2cb3e7b1e56508.bitwarden.com -carLicense: 8NKFX6 -departmentNumber: 8863 -employeeType: Normal -homePhone: +1 415 413-6038 -initials: P. R. -mobile: +1 415 303-5938 -pager: +1 415 962-4551 -roomNumber: 9420 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pas Giles,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pas Giles -sn: Giles -description: This is Pas Giles's description -facsimileTelephoneNumber: +1 213 659-3521 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 213 940-2422 -title: Chief Human Resources Visionary -userPassword: Password1 -uid: GilesP -givenName: Pas -mail: GilesP@8670b7b167164a8b9ce71d78ae9cb652.bitwarden.com -carLicense: 7FHS9C -departmentNumber: 8490 -employeeType: Contract -homePhone: +1 213 558-1228 -initials: P. G. -mobile: +1 213 434-9095 -pager: +1 213 169-6855 -roomNumber: 8344 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marietta CamelToueg,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marietta CamelToueg -sn: CamelToueg -description: This is Marietta CamelToueg's description -facsimileTelephoneNumber: +1 408 528-8488 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 518-1050 -title: Junior Management Manager -userPassword: Password1 -uid: CamelToM -givenName: Marietta -mail: CamelToM@8df14385ae864b439973adc9259c1607.bitwarden.com -carLicense: KJ4KTB -departmentNumber: 1049 -employeeType: Normal -homePhone: +1 408 942-2544 -initials: M. C. -mobile: +1 408 525-1248 -pager: +1 408 313-7325 -roomNumber: 9401 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rico Meachum,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rico Meachum -sn: Meachum -description: This is Rico Meachum's description -facsimileTelephoneNumber: +1 206 256-4117 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 291-9657 -title: Master Management Punk -userPassword: Password1 -uid: MeachumR -givenName: Rico -mail: MeachumR@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com -carLicense: 6FONHO -departmentNumber: 2768 -employeeType: Normal -homePhone: +1 206 810-7317 -initials: R. M. -mobile: +1 206 356-5815 -pager: +1 206 760-5727 -roomNumber: 8377 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Venkat Marrone,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Venkat Marrone -sn: Marrone -description: This is Venkat Marrone's description -facsimileTelephoneNumber: +1 213 576-7716 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 657-4177 -title: Associate Administrative Mascot -userPassword: Password1 -uid: MarroneV -givenName: Venkat -mail: MarroneV@b2f3aa04c0ef4b03a42b0509b9df028c.bitwarden.com -carLicense: SADOHJ -departmentNumber: 6029 -employeeType: Employee -homePhone: +1 213 831-2682 -initials: V. M. -mobile: +1 213 551-3601 -pager: +1 213 665-6056 -roomNumber: 8245 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanMarc McAllister -sn: McAllister -description: This is JeanMarc McAllister's description -facsimileTelephoneNumber: +1 415 183-3907 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 579-1055 -title: Master Payroll Technician -userPassword: Password1 -uid: McAllisJ -givenName: JeanMarc -mail: McAllisJ@31bdf3f083274a9a823bbf5bbd24461a.bitwarden.com -carLicense: DDXV3A -departmentNumber: 3528 -employeeType: Contract -homePhone: +1 415 707-6407 -initials: J. M. -mobile: +1 415 525-4387 -pager: +1 415 922-2148 -roomNumber: 8309 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carolyn Seamster -sn: Seamster -description: This is Carolyn Seamster's description -facsimileTelephoneNumber: +1 213 925-1494 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 933-3518 -title: Master Janitorial Dictator -userPassword: Password1 -uid: SeamsteC -givenName: Carolyn -mail: SeamsteC@b05d3b7a0745414e90247097c6c4b50d.bitwarden.com -carLicense: YF7OT4 -departmentNumber: 3075 -employeeType: Contract -homePhone: +1 213 512-9246 -initials: C. S. -mobile: +1 213 963-2340 -pager: +1 213 505-1535 -roomNumber: 8036 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elwood Gould,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elwood Gould -sn: Gould -description: This is Elwood Gould's description -facsimileTelephoneNumber: +1 408 749-1975 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 760-3094 -title: Associate Payroll Sales Rep -userPassword: Password1 -uid: GouldE -givenName: Elwood -mail: GouldE@660a614454f1481f8e7878f66c6cc97d.bitwarden.com -carLicense: IPMCN6 -departmentNumber: 5822 -employeeType: Employee -homePhone: +1 408 286-6419 -initials: E. G. -mobile: +1 408 553-8952 -pager: +1 408 449-1788 -roomNumber: 8588 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorin Rittenhouse -sn: Rittenhouse -description: This is Dorin Rittenhouse's description -facsimileTelephoneNumber: +1 213 290-5895 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 213 607-9470 -title: Master Payroll President -userPassword: Password1 -uid: RittenhD -givenName: Dorin -mail: RittenhD@b25a6c9a4813403592f85516045bbb70.bitwarden.com -carLicense: FJ8UWK -departmentNumber: 6096 -employeeType: Normal -homePhone: +1 213 905-9213 -initials: D. R. -mobile: +1 213 396-4054 -pager: +1 213 233-7776 -roomNumber: 8784 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnneLise Zhelka -sn: Zhelka -description: This is AnneLise Zhelka's description -facsimileTelephoneNumber: +1 804 149-2931 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 208-3817 -title: Associate Product Testing Manager -userPassword: Password1 -uid: ZhelkaA -givenName: AnneLise -mail: ZhelkaA@9524e5fbf8844145b5c00986d16d8376.bitwarden.com -carLicense: SV12A3 -departmentNumber: 1348 -employeeType: Normal -homePhone: +1 804 340-5604 -initials: A. Z. -mobile: +1 804 899-5946 -pager: +1 804 200-6029 -roomNumber: 8415 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Darrel Hoch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrel Hoch -sn: Hoch -description: This is Darrel Hoch's description -facsimileTelephoneNumber: +1 510 716-4617 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 835-1400 -title: Master Janitorial Developer -userPassword: Password1 -uid: HochD -givenName: Darrel -mail: HochD@ead811946c1c45dc9e9e74c993c44021.bitwarden.com -carLicense: Y9PI51 -departmentNumber: 9490 -employeeType: Employee -homePhone: +1 510 511-8702 -initials: D. H. -mobile: +1 510 654-4037 -pager: +1 510 783-7256 -roomNumber: 8854 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Eunice Gerhart,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eunice Gerhart -sn: Gerhart -description: This is Eunice Gerhart's description -facsimileTelephoneNumber: +1 206 250-5696 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 145-6683 -title: Chief Management Assistant -userPassword: Password1 -uid: GerhartE -givenName: Eunice -mail: GerhartE@bf155b8bc0754f518a83ee458e4a4635.bitwarden.com -carLicense: UTJDFC -departmentNumber: 2222 -employeeType: Contract -homePhone: +1 206 983-3157 -initials: E. G. -mobile: +1 206 225-2931 -pager: +1 206 343-5990 -roomNumber: 8464 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karena Gunasekera,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karena Gunasekera -sn: Gunasekera -description: This is Karena Gunasekera's description -facsimileTelephoneNumber: +1 818 241-4264 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 818 184-3404 -title: Chief Administrative Admin -userPassword: Password1 -uid: GunasekK -givenName: Karena -mail: GunasekK@1b9f3ee20651489b84389c5c6ee6794d.bitwarden.com -carLicense: HRGOAM -departmentNumber: 4411 -employeeType: Contract -homePhone: +1 818 275-7103 -initials: K. G. -mobile: +1 818 753-7845 -pager: +1 818 869-4461 -roomNumber: 8549 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beaumont Boruslawski -sn: Boruslawski -description: This is Beaumont Boruslawski's description -facsimileTelephoneNumber: +1 213 167-3668 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 885-3059 -title: Junior Human Resources Vice President -userPassword: Password1 -uid: BoruslaB -givenName: Beaumont -mail: BoruslaB@600cf979cfee42dfbdf815d8ce66c105.bitwarden.com -carLicense: C3KDHD -departmentNumber: 7787 -employeeType: Employee -homePhone: +1 213 674-9417 -initials: B. B. -mobile: +1 213 350-8129 -pager: +1 213 720-3249 -roomNumber: 8698 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Charmine Izzo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charmine Izzo -sn: Izzo -description: This is Charmine Izzo's description -facsimileTelephoneNumber: +1 408 590-6611 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 408 391-2282 -title: Chief Human Resources Fellow -userPassword: Password1 -uid: IzzoC -givenName: Charmine -mail: IzzoC@4b0cd35c3d8442a69514b96d040ad360.bitwarden.com -carLicense: 7S57GR -departmentNumber: 8185 -employeeType: Contract -homePhone: +1 408 310-9832 -initials: C. I. -mobile: +1 408 274-9217 -pager: +1 408 182-7662 -roomNumber: 9217 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nicolea Fagan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolea Fagan -sn: Fagan -description: This is Nicolea Fagan's description -facsimileTelephoneNumber: +1 818 134-2326 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 882-5425 -title: Supreme Administrative Artist -userPassword: Password1 -uid: FaganN -givenName: Nicolea -mail: FaganN@e17fea6e1c564882ab9a476cab0dc5ce.bitwarden.com -carLicense: U1WWRU -departmentNumber: 4678 -employeeType: Normal -homePhone: +1 818 171-7796 -initials: N. F. -mobile: +1 818 865-2569 -pager: +1 818 779-2926 -roomNumber: 9709 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Huyen Nashville,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huyen Nashville -sn: Nashville -description: This is Huyen Nashville's description -facsimileTelephoneNumber: +1 510 468-7648 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 398-9876 -title: Associate Product Testing Admin -userPassword: Password1 -uid: NashvilH -givenName: Huyen -mail: NashvilH@bcfddcc4528d4a7da41251051a550591.bitwarden.com -carLicense: 9NNSNG -departmentNumber: 2361 -employeeType: Employee -homePhone: +1 510 796-8017 -initials: H. N. -mobile: +1 510 788-9838 -pager: +1 510 479-1180 -roomNumber: 9157 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reva Walkowiak -sn: Walkowiak -description: This is Reva Walkowiak's description -facsimileTelephoneNumber: +1 804 848-7553 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 815-9900 -title: Associate Janitorial Admin -userPassword: Password1 -uid: WalkowiR -givenName: Reva -mail: WalkowiR@627ddcf5e1624631b06795e9a52501e0.bitwarden.com -carLicense: WPRRJB -departmentNumber: 6256 -employeeType: Employee -homePhone: +1 804 808-2748 -initials: R. W. -mobile: +1 804 535-1718 -pager: +1 804 129-6083 -roomNumber: 8014 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meriann Rotzjean -sn: Rotzjean -description: This is Meriann Rotzjean's description -facsimileTelephoneNumber: +1 206 868-1225 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 766-3245 -title: Master Administrative Vice President -userPassword: Password1 -uid: RotzjeaM -givenName: Meriann -mail: RotzjeaM@49672ac4642e4eb39566d542af0eef8f.bitwarden.com -carLicense: SX2REY -departmentNumber: 3363 -employeeType: Normal -homePhone: +1 206 956-8022 -initials: M. R. -mobile: +1 206 253-7225 -pager: +1 206 729-1845 -roomNumber: 8342 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Myrtia Closson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrtia Closson -sn: Closson -description: This is Myrtia Closson's description -facsimileTelephoneNumber: +1 510 131-1343 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 868-2738 -title: Chief Product Development Visionary -userPassword: Password1 -uid: ClossonM -givenName: Myrtia -mail: ClossonM@11aeb057db4a4efc9f9db6e2b2c23ff0.bitwarden.com -carLicense: 9ON77M -departmentNumber: 2772 -employeeType: Normal -homePhone: +1 510 228-8644 -initials: M. C. -mobile: +1 510 208-3116 -pager: +1 510 432-2370 -roomNumber: 9910 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffani Ibach -sn: Ibach -description: This is Tiffani Ibach's description -facsimileTelephoneNumber: +1 213 234-7511 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 878-4309 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: IbachT -givenName: Tiffani -mail: IbachT@402d43c51a4446beb3be4fb34fdb725c.bitwarden.com -carLicense: UKU3ND -departmentNumber: 6324 -employeeType: Normal -homePhone: +1 213 565-7358 -initials: T. I. -mobile: +1 213 150-3689 -pager: +1 213 853-8782 -roomNumber: 9314 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ioana Jenner,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ioana Jenner -sn: Jenner -description: This is Ioana Jenner's description -facsimileTelephoneNumber: +1 804 917-8186 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 804 486-7528 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: JennerI -givenName: Ioana -mail: JennerI@33ed0b76cf8d4133a68e225e69fedff2.bitwarden.com -carLicense: J5T2SP -departmentNumber: 1541 -employeeType: Employee -homePhone: +1 804 110-6419 -initials: I. J. -mobile: +1 804 312-8287 -pager: +1 804 965-5585 -roomNumber: 9580 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristabel Lindstrom -sn: Lindstrom -description: This is Cristabel Lindstrom's description -facsimileTelephoneNumber: +1 408 177-8180 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 791-8878 -title: Supreme Administrative Director -userPassword: Password1 -uid: LindstrC -givenName: Cristabel -mail: LindstrC@f62df0bfb50a4849bc17f5360d5a7c52.bitwarden.com -carLicense: F30W2N -departmentNumber: 2510 -employeeType: Contract -homePhone: +1 408 561-3405 -initials: C. L. -mobile: +1 408 799-8998 -pager: +1 408 813-8099 -roomNumber: 8846 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Leon Bays,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leon Bays -sn: Bays -description: This is Leon Bays's description -facsimileTelephoneNumber: +1 213 741-9894 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 213 322-7436 -title: Supreme Payroll Madonna -userPassword: Password1 -uid: BaysL -givenName: Leon -mail: BaysL@93baf6000e434401b0373a2ea7daeeeb.bitwarden.com -carLicense: W1HCWQ -departmentNumber: 1005 -employeeType: Contract -homePhone: +1 213 589-1800 -initials: L. B. -mobile: +1 213 298-1504 -pager: +1 213 783-6003 -roomNumber: 9815 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ulf Cotner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ulf Cotner -sn: Cotner -description: This is Ulf Cotner's description -facsimileTelephoneNumber: +1 213 782-6667 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 432-7844 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: CotnerU -givenName: Ulf -mail: CotnerU@d10bdc65bfaf4e35b28e6655d5cd9f69.bitwarden.com -carLicense: AHMVDQ -departmentNumber: 7757 -employeeType: Employee -homePhone: +1 213 196-8679 -initials: U. C. -mobile: +1 213 358-3373 -pager: +1 213 237-8726 -roomNumber: 9794 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jinann Hassey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jinann Hassey -sn: Hassey -description: This is Jinann Hassey's description -facsimileTelephoneNumber: +1 415 198-1234 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 320-9253 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: HasseyJ -givenName: Jinann -mail: HasseyJ@e082cb8e6fcd44b39d2d3be9de497cd5.bitwarden.com -carLicense: RCY31K -departmentNumber: 6140 -employeeType: Employee -homePhone: +1 415 687-7196 -initials: J. H. -mobile: +1 415 178-1020 -pager: +1 415 595-3218 -roomNumber: 8339 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bevvy Huot,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bevvy Huot -sn: Huot -description: This is Bevvy Huot's description -facsimileTelephoneNumber: +1 213 956-6104 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 635-5020 -title: Chief Janitorial Madonna -userPassword: Password1 -uid: HuotB -givenName: Bevvy -mail: HuotB@47a7a80ec8774325ad24930467e7f72e.bitwarden.com -carLicense: 9HGXS4 -departmentNumber: 5665 -employeeType: Normal -homePhone: +1 213 211-1997 -initials: B. H. -mobile: +1 213 994-9302 -pager: +1 213 533-2411 -roomNumber: 8439 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Coord Cadd,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coord Cadd -sn: Cadd -description: This is Coord Cadd's description -facsimileTelephoneNumber: +1 206 159-6756 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 677-4990 -title: Chief Janitorial Manager -userPassword: Password1 -uid: CaddC -givenName: Coord -mail: CaddC@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com -carLicense: I04J8K -departmentNumber: 1325 -employeeType: Employee -homePhone: +1 206 493-4490 -initials: C. C. -mobile: +1 206 691-8535 -pager: +1 206 914-7574 -roomNumber: 8404 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Envoy Lesway,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Envoy Lesway -sn: Lesway -description: This is Envoy Lesway's description -facsimileTelephoneNumber: +1 206 605-3314 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 719-3015 -title: Supreme Peons President -userPassword: Password1 -uid: LeswayE -givenName: Envoy -mail: LeswayE@c25e2fe1ca694d8a8fe5c23754b47571.bitwarden.com -carLicense: NDKKAG -departmentNumber: 6768 -employeeType: Contract -homePhone: +1 206 971-5236 -initials: E. L. -mobile: +1 206 965-5369 -pager: +1 206 586-1083 -roomNumber: 9069 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Josef Hemmerle -sn: Hemmerle -description: This is Josef Hemmerle's description -facsimileTelephoneNumber: +1 213 930-7036 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 690-7360 -title: Master Human Resources President -userPassword: Password1 -uid: HemmerlJ -givenName: Josef -mail: HemmerlJ@ea364298791c41debbf08d0519d9dd74.bitwarden.com -carLicense: 7Y640L -departmentNumber: 1528 -employeeType: Normal -homePhone: +1 213 669-8294 -initials: J. H. -mobile: +1 213 325-3362 -pager: +1 213 688-1695 -roomNumber: 8525 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kippie Tarquinio -sn: Tarquinio -description: This is Kippie Tarquinio's description -facsimileTelephoneNumber: +1 818 698-3883 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 818 191-5850 -title: Supreme Janitorial Technician -userPassword: Password1 -uid: TarquinK -givenName: Kippie -mail: TarquinK@82a02eb22e9446a98ae50c8b159eeb8e.bitwarden.com -carLicense: LX2M99 -departmentNumber: 4043 -employeeType: Normal -homePhone: +1 818 750-6372 -initials: K. T. -mobile: +1 818 775-6881 -pager: +1 818 932-8774 -roomNumber: 9090 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirstyn Cocco -sn: Cocco -description: This is Kirstyn Cocco's description -facsimileTelephoneNumber: +1 408 515-4245 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 567-9853 -title: Associate Human Resources Artist -userPassword: Password1 -uid: CoccoK -givenName: Kirstyn -mail: CoccoK@1d8ea622691942519634199a4665788b.bitwarden.com -carLicense: WLKO5S -departmentNumber: 7213 -employeeType: Employee -homePhone: +1 408 187-4184 -initials: K. C. -mobile: +1 408 632-4593 -pager: +1 408 726-9981 -roomNumber: 9044 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maybelle Brannon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maybelle Brannon -sn: Brannon -description: This is Maybelle Brannon's description -facsimileTelephoneNumber: +1 804 845-5995 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 436-2238 -title: Junior Product Development Grunt -userPassword: Password1 -uid: BrannonM -givenName: Maybelle -mail: BrannonM@180927625167441fb315d9e4f284562e.bitwarden.com -carLicense: 7L3DBT -departmentNumber: 8059 -employeeType: Contract -homePhone: +1 804 843-3071 -initials: M. B. -mobile: +1 804 558-7257 -pager: +1 804 719-8028 -roomNumber: 9323 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lrc Blaiklock,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lrc Blaiklock -sn: Blaiklock -description: This is Lrc Blaiklock's description -facsimileTelephoneNumber: +1 206 889-1544 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 826-8672 -title: Supreme Peons Engineer -userPassword: Password1 -uid: BlaikloL -givenName: Lrc -mail: BlaikloL@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com -carLicense: HHVGEG -departmentNumber: 4643 -employeeType: Normal -homePhone: +1 206 292-8632 -initials: L. B. -mobile: +1 206 526-3334 -pager: +1 206 953-1890 -roomNumber: 8691 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Abu Melucci,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abu Melucci -sn: Melucci -description: This is Abu Melucci's description -facsimileTelephoneNumber: +1 415 938-7200 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 170-3557 -title: Associate Management Admin -userPassword: Password1 -uid: MelucciA -givenName: Abu -mail: MelucciA@a4c1bc58f4364478a274836261857361.bitwarden.com -carLicense: FWC96F -departmentNumber: 4419 -employeeType: Normal -homePhone: +1 415 205-1379 -initials: A. M. -mobile: +1 415 387-7567 -pager: +1 415 235-4645 -roomNumber: 9060 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hedwiga Personna,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hedwiga Personna -sn: Personna -description: This is Hedwiga Personna's description -facsimileTelephoneNumber: +1 510 580-3857 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 510 353-9067 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: PersonnH -givenName: Hedwiga -mail: PersonnH@274b8d184a6d4e52bcfb6ffc8ba53d5e.bitwarden.com -carLicense: 3RLI0L -departmentNumber: 2467 -employeeType: Normal -homePhone: +1 510 133-1104 -initials: H. P. -mobile: +1 510 120-6580 -pager: +1 510 921-3523 -roomNumber: 9108 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Osmond Usyk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Osmond Usyk -sn: Usyk -description: This is Osmond Usyk's description -facsimileTelephoneNumber: +1 804 236-7103 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 804 237-6048 -title: Associate Administrative Admin -userPassword: Password1 -uid: UsykO -givenName: Osmond -mail: UsykO@df3ca8c2f1a84d2a9126b1629fccf4fe.bitwarden.com -carLicense: 12DUT0 -departmentNumber: 2824 -employeeType: Employee -homePhone: +1 804 725-6674 -initials: O. U. -mobile: +1 804 374-8336 -pager: +1 804 207-6095 -roomNumber: 9157 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Junk Marasliyan -sn: Marasliyan -description: This is Junk Marasliyan's description -facsimileTelephoneNumber: +1 408 233-3729 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 391-5419 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: MarasliJ -givenName: Junk -mail: MarasliJ@d117baceef9a4168bde2647e78683a37.bitwarden.com -carLicense: 50PL5Y -departmentNumber: 5978 -employeeType: Employee -homePhone: +1 408 100-2360 -initials: J. M. -mobile: +1 408 913-5837 -pager: +1 408 531-6680 -roomNumber: 8759 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ilona Schoch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilona Schoch -sn: Schoch -description: This is Ilona Schoch's description -facsimileTelephoneNumber: +1 408 254-8351 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 122-2735 -title: Junior Janitorial Czar -userPassword: Password1 -uid: SchochI -givenName: Ilona -mail: SchochI@60ad49073800473f85380f8d92729bb8.bitwarden.com -carLicense: JTQLH3 -departmentNumber: 3632 -employeeType: Normal -homePhone: +1 408 484-4933 -initials: I. S. -mobile: +1 408 373-6018 -pager: +1 408 792-6146 -roomNumber: 8338 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarah VandenHeuvel -sn: VandenHeuvel -description: This is Sarah VandenHeuvel's description -facsimileTelephoneNumber: +1 408 957-6029 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 173-9945 -title: Associate Product Testing Engineer -userPassword: Password1 -uid: VandenHS -givenName: Sarah -mail: VandenHS@49237b860d1f43eba86c8a5d68311c7b.bitwarden.com -carLicense: TQ3A1N -departmentNumber: 6778 -employeeType: Normal -homePhone: +1 408 846-3941 -initials: S. V. -mobile: +1 408 494-2670 -pager: +1 408 682-2324 -roomNumber: 9182 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kieron Bouick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kieron Bouick -sn: Bouick -description: This is Kieron Bouick's description -facsimileTelephoneNumber: +1 804 761-6251 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 424-3045 -title: Junior Management Pinhead -userPassword: Password1 -uid: BouickK -givenName: Kieron -mail: BouickK@c90beda51728416da468419570974ee9.bitwarden.com -carLicense: 8F3J05 -departmentNumber: 8206 -employeeType: Contract -homePhone: +1 804 422-8458 -initials: K. B. -mobile: +1 804 608-4561 -pager: +1 804 425-2098 -roomNumber: 8068 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hettie Gruber,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hettie Gruber -sn: Gruber -description: This is Hettie Gruber's description -facsimileTelephoneNumber: +1 804 854-3197 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 829-7500 -title: Supreme Peons Grunt -userPassword: Password1 -uid: GruberH -givenName: Hettie -mail: GruberH@b1249dcd3c8b491d920a5f410c6dd0cd.bitwarden.com -carLicense: YDUP9D -departmentNumber: 5095 -employeeType: Contract -homePhone: +1 804 462-6601 -initials: H. G. -mobile: +1 804 604-8827 -pager: +1 804 169-2586 -roomNumber: 9711 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Farzin Hilaire,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farzin Hilaire -sn: Hilaire -description: This is Farzin Hilaire's description -facsimileTelephoneNumber: +1 213 467-9161 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 722-6207 -title: Associate Management Pinhead -userPassword: Password1 -uid: HilaireF -givenName: Farzin -mail: HilaireF@6c398eb0cd5c4b4784131d450d82aca7.bitwarden.com -carLicense: FW4R32 -departmentNumber: 9846 -employeeType: Normal -homePhone: +1 213 309-5296 -initials: F. H. -mobile: +1 213 567-7208 -pager: +1 213 657-8893 -roomNumber: 8391 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Careers Furdoonji -sn: Furdoonji -description: This is Careers Furdoonji's description -facsimileTelephoneNumber: +1 408 789-5542 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 163-6235 -title: Supreme Human Resources Artist -userPassword: Password1 -uid: FurdoonC -givenName: Careers -mail: FurdoonC@7358f14ebc1d437faa31666574716056.bitwarden.com -carLicense: STKIW5 -departmentNumber: 7542 -employeeType: Normal -homePhone: +1 408 868-3346 -initials: C. F. -mobile: +1 408 312-3825 -pager: +1 408 160-6059 -roomNumber: 8124 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jaimie Valin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaimie Valin -sn: Valin -description: This is Jaimie Valin's description -facsimileTelephoneNumber: +1 818 564-9634 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 258-8155 -title: Junior Janitorial Admin -userPassword: Password1 -uid: ValinJ -givenName: Jaimie -mail: ValinJ@4bba23a995da4ee98c2c53bd5fa682de.bitwarden.com -carLicense: BIQSJ6 -departmentNumber: 8794 -employeeType: Employee -homePhone: +1 818 793-1512 -initials: J. V. -mobile: +1 818 761-8575 -pager: +1 818 638-1920 -roomNumber: 9886 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Meggy Fajardo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meggy Fajardo -sn: Fajardo -description: This is Meggy Fajardo's description -facsimileTelephoneNumber: +1 213 281-1156 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 842-7952 -title: Master Administrative Manager -userPassword: Password1 -uid: FajardoM -givenName: Meggy -mail: FajardoM@06570b086c80422c8349b02b80c03823.bitwarden.com -carLicense: WF3C1B -departmentNumber: 2510 -employeeType: Normal -homePhone: +1 213 766-5273 -initials: M. F. -mobile: +1 213 703-1495 -pager: +1 213 266-4677 -roomNumber: 8160 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gurcharan Subasinghe -sn: Subasinghe -description: This is Gurcharan Subasinghe's description -facsimileTelephoneNumber: +1 206 710-9419 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 206 724-9859 -title: Junior Payroll Punk -userPassword: Password1 -uid: SubasinG -givenName: Gurcharan -mail: SubasinG@24aecac07fc74e8bb38262db3e4ff1e1.bitwarden.com -carLicense: Q5AYBI -departmentNumber: 9513 -employeeType: Employee -homePhone: +1 206 651-4395 -initials: G. S. -mobile: +1 206 187-1048 -pager: +1 206 689-9353 -roomNumber: 9291 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lyda Sym,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lyda Sym -sn: Sym -description: This is Lyda Sym's description -facsimileTelephoneNumber: +1 206 637-6301 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 206 328-2756 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: SymL -givenName: Lyda -mail: SymL@2ebbe6ccc158418ea03a56b7dd20f4d9.bitwarden.com -carLicense: WP1JDG -departmentNumber: 5971 -employeeType: Contract -homePhone: +1 206 742-1031 -initials: L. S. -mobile: +1 206 803-6251 -pager: +1 206 767-4962 -roomNumber: 8721 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Alia Lucente,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alia Lucente -sn: Lucente -description: This is Alia Lucente's description -facsimileTelephoneNumber: +1 206 887-1219 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 870-9910 -title: Master Product Development Writer -userPassword: Password1 -uid: LucenteA -givenName: Alia -mail: LucenteA@3f957af8403b44cda402864b6bf1f589.bitwarden.com -carLicense: VITUF1 -departmentNumber: 6582 -employeeType: Normal -homePhone: +1 206 975-1271 -initials: A. L. -mobile: +1 206 432-6014 -pager: +1 206 569-8738 -roomNumber: 8078 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carline Klotz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carline Klotz -sn: Klotz -description: This is Carline Klotz's description -facsimileTelephoneNumber: +1 408 701-6208 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 205-9776 -title: Master Product Development Admin -userPassword: Password1 -uid: KlotzC -givenName: Carline -mail: KlotzC@7bb52bb06b244b41a3cd78dfcc311e5f.bitwarden.com -carLicense: 2UOTO3 -departmentNumber: 7755 -employeeType: Contract -homePhone: +1 408 210-7716 -initials: C. K. -mobile: +1 408 394-7129 -pager: +1 408 348-3003 -roomNumber: 9262 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marilin Boylan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marilin Boylan -sn: Boylan -description: This is Marilin Boylan's description -facsimileTelephoneNumber: +1 206 632-6634 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 580-9986 -title: Master Management Writer -userPassword: Password1 -uid: BoylanM -givenName: Marilin -mail: BoylanM@68c9de30282b4f288b18d766d4da42ae.bitwarden.com -carLicense: UWGMWM -departmentNumber: 9232 -employeeType: Normal -homePhone: +1 206 626-3216 -initials: M. B. -mobile: +1 206 148-8997 -pager: +1 206 184-1503 -roomNumber: 9592 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mustapha Noles,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mustapha Noles -sn: Noles -description: This is Mustapha Noles's description -facsimileTelephoneNumber: +1 510 493-8555 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 716-2984 -title: Supreme Human Resources President -userPassword: Password1 -uid: NolesM -givenName: Mustapha -mail: NolesM@f2c07dab9bd04b82822cc496cad44d9f.bitwarden.com -carLicense: 2N2RXE -departmentNumber: 4679 -employeeType: Contract -homePhone: +1 510 602-1157 -initials: M. N. -mobile: +1 510 692-1769 -pager: +1 510 526-2765 -roomNumber: 9868 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Brandais Cullum,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brandais Cullum -sn: Cullum -description: This is Brandais Cullum's description -facsimileTelephoneNumber: +1 510 475-2976 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 107-6258 -title: Junior Janitorial Writer -userPassword: Password1 -uid: CullumB -givenName: Brandais -mail: CullumB@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com -carLicense: LYLMU4 -departmentNumber: 7403 -employeeType: Contract -homePhone: +1 510 603-9885 -initials: B. C. -mobile: +1 510 212-5563 -pager: +1 510 786-9895 -roomNumber: 8852 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vradmin Lough,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vradmin Lough -sn: Lough -description: This is Vradmin Lough's description -facsimileTelephoneNumber: +1 818 975-2878 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 844-7250 -title: Chief Product Development President -userPassword: Password1 -uid: LoughV -givenName: Vradmin -mail: LoughV@86e5c38e7f5c41538bf306ddacec173d.bitwarden.com -carLicense: X2UDPF -departmentNumber: 5621 -employeeType: Contract -homePhone: +1 818 837-5875 -initials: V. L. -mobile: +1 818 742-4522 -pager: +1 818 408-8582 -roomNumber: 9618 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laurena Hesketh -sn: Hesketh -description: This is Laurena Hesketh's description -facsimileTelephoneNumber: +1 804 101-5043 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 276-5191 -title: Supreme Product Testing Writer -userPassword: Password1 -uid: HeskethL -givenName: Laurena -mail: HeskethL@301d911e2eea414b9302e4f81984f9b2.bitwarden.com -carLicense: BW72DT -departmentNumber: 6369 -employeeType: Employee -homePhone: +1 804 579-8819 -initials: L. H. -mobile: +1 804 324-8070 -pager: +1 804 554-6200 -roomNumber: 9360 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Attilio Bullett,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernhard Arnon -sn: Arnon -description: This is Bernhard Arnon's description -facsimileTelephoneNumber: +1 818 607-9761 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 284-3558 -title: Associate Product Testing Developer -userPassword: Password1 -uid: ArnonB -givenName: Bernhard -mail: ArnonB@57b9838eb13d439597b1e6134348bbbc.bitwarden.com -carLicense: VNOISI -departmentNumber: 1195 -employeeType: Normal -homePhone: +1 818 751-7978 -initials: B. A. -mobile: +1 818 549-4238 -pager: +1 818 512-9000 -roomNumber: 8529 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Laser Lennig,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Laser Lennig -sn: Lennig -description: This is Laser Lennig's description -facsimileTelephoneNumber: +1 408 642-9447 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 434-3903 -title: Master Payroll Writer -userPassword: Password1 -uid: LennigL -givenName: Laser -mail: LennigL@f1fb5c603617421f9d814a8c426ffcd5.bitwarden.com -carLicense: 6XPQDV -departmentNumber: 7975 -employeeType: Contract -homePhone: +1 408 490-3482 -initials: L. L. -mobile: +1 408 592-8968 -pager: +1 408 600-9487 -roomNumber: 9421 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Wren Gopaul,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wren Gopaul -sn: Gopaul -description: This is Wren Gopaul's description -facsimileTelephoneNumber: +1 206 872-2016 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 485-7371 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: GopaulW -givenName: Wren -mail: GopaulW@36939042b2bb4d8d8a87206c430ca689.bitwarden.com -carLicense: K9SEXJ -departmentNumber: 9701 -employeeType: Normal -homePhone: +1 206 903-1877 -initials: W. G. -mobile: +1 206 808-4109 -pager: +1 206 561-5880 -roomNumber: 9517 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Whitney Inoue,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Whitney Inoue -sn: Inoue -description: This is Whitney Inoue's description -facsimileTelephoneNumber: +1 206 699-5802 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 206 937-8175 -title: Junior Product Development Consultant -userPassword: Password1 -uid: InoueW -givenName: Whitney -mail: InoueW@a3af1deba0554d128f94c16459078710.bitwarden.com -carLicense: W4ILED -departmentNumber: 8801 -employeeType: Employee -homePhone: +1 206 257-1173 -initials: W. I. -mobile: +1 206 747-6801 -pager: +1 206 606-6543 -roomNumber: 8643 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annamarie Baltodano -sn: Baltodano -description: This is Annamarie Baltodano's description -facsimileTelephoneNumber: +1 213 400-1545 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 581-3615 -title: Master Administrative Madonna -userPassword: Password1 -uid: BaltodaA -givenName: Annamarie -mail: BaltodaA@4147d91f891f4f7aa66800a01382c83a.bitwarden.com -carLicense: WL7FAI -departmentNumber: 4248 -employeeType: Contract -homePhone: +1 213 512-3939 -initials: A. B. -mobile: +1 213 821-6899 -pager: +1 213 471-5520 -roomNumber: 8544 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hareton Kahkonen -sn: Kahkonen -description: This is Hareton Kahkonen's description -facsimileTelephoneNumber: +1 510 617-6201 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 510 841-4703 -title: Associate Administrative Vice President -userPassword: Password1 -uid: KahkoneH -givenName: Hareton -mail: KahkoneH@1f70c3bade4e4575a0687e469e22b825.bitwarden.com -carLicense: 3OSW6P -departmentNumber: 2475 -employeeType: Normal -homePhone: +1 510 314-7134 -initials: H. K. -mobile: +1 510 410-1147 -pager: +1 510 513-9970 -roomNumber: 9090 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Karlee Weyand,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlee Weyand -sn: Weyand -description: This is Karlee Weyand's description -facsimileTelephoneNumber: +1 804 431-4166 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 168-7394 -title: Associate Management Artist -userPassword: Password1 -uid: WeyandK -givenName: Karlee -mail: WeyandK@a371212c7c2b4312bdb15d1cffb21938.bitwarden.com -carLicense: F123QL -departmentNumber: 1844 -employeeType: Employee -homePhone: +1 804 250-2792 -initials: K. W. -mobile: +1 804 612-7139 -pager: +1 804 131-3235 -roomNumber: 8044 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fox Richmond,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fox Richmond -sn: Richmond -description: This is Fox Richmond's description -facsimileTelephoneNumber: +1 408 652-9883 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 661-1853 -title: Associate Product Development Sales Rep -userPassword: Password1 -uid: RichmonF -givenName: Fox -mail: RichmonF@4cf5733fc93742b8881de63253f58457.bitwarden.com -carLicense: XWRP4N -departmentNumber: 8811 -employeeType: Employee -homePhone: +1 408 245-4162 -initials: F. R. -mobile: +1 408 941-8482 -pager: +1 408 260-2274 -roomNumber: 8423 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Patrick Perreault,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patrick Perreault -sn: Perreault -description: This is Patrick Perreault's description -facsimileTelephoneNumber: +1 415 212-7990 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 599-5850 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: PerreauP -givenName: Patrick -mail: PerreauP@7fb1c518e9c746fd9566ed0918ae43c4.bitwarden.com -carLicense: PGSRXE -departmentNumber: 1159 -employeeType: Contract -homePhone: +1 415 141-4591 -initials: P. P. -mobile: +1 415 225-4823 -pager: +1 415 194-6496 -roomNumber: 8542 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fereidoon Kirkpatrick -sn: Kirkpatrick -description: This is Fereidoon Kirkpatrick's description -facsimileTelephoneNumber: +1 206 954-7074 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 705-8951 -title: Supreme Peons Director -userPassword: Password1 -uid: KirkpatF -givenName: Fereidoon -mail: KirkpatF@d457e1580197417888cc4a9c93599471.bitwarden.com -carLicense: EGEUQ9 -departmentNumber: 1815 -employeeType: Contract -homePhone: +1 206 543-6852 -initials: F. K. -mobile: +1 206 441-1842 -pager: +1 206 983-5326 -roomNumber: 9553 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Saloma Turbes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saloma Turbes -sn: Turbes -description: This is Saloma Turbes's description -facsimileTelephoneNumber: +1 408 978-7793 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 139-2073 -title: Junior Peons Warrior -userPassword: Password1 -uid: TurbesS -givenName: Saloma -mail: TurbesS@0ad1daa81fae4a218ac099e9643dc3e2.bitwarden.com -carLicense: 6H1OJQ -departmentNumber: 4872 -employeeType: Normal -homePhone: +1 408 746-9623 -initials: S. T. -mobile: +1 408 728-1588 -pager: +1 408 746-5064 -roomNumber: 9209 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tiffy Klammer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tiffy Klammer -sn: Klammer -description: This is Tiffy Klammer's description -facsimileTelephoneNumber: +1 213 468-1426 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 495-4503 -title: Chief Product Development Janitor -userPassword: Password1 -uid: KlammerT -givenName: Tiffy -mail: KlammerT@a88c50151ed5480a93ed6a3357d7dcdc.bitwarden.com -carLicense: 64DMH7 -departmentNumber: 4745 -employeeType: Contract -homePhone: +1 213 222-5586 -initials: T. K. -mobile: +1 213 629-8900 -pager: +1 213 520-3107 -roomNumber: 8240 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sonbol Portz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonbol Portz -sn: Portz -description: This is Sonbol Portz's description -facsimileTelephoneNumber: +1 408 907-9813 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 928-1656 -title: Chief Product Development Janitor -userPassword: Password1 -uid: PortzS -givenName: Sonbol -mail: PortzS@d8b850d9e8ae4a779435178983c8e469.bitwarden.com -carLicense: 9E2E1J -departmentNumber: 2649 -employeeType: Normal -homePhone: +1 408 548-8683 -initials: S. P. -mobile: +1 408 678-2766 -pager: +1 408 914-5427 -roomNumber: 9579 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: RoseAnne Chaurette -sn: Chaurette -description: This is RoseAnne Chaurette's description -facsimileTelephoneNumber: +1 804 461-3186 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 895-1103 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: ChauretR -givenName: RoseAnne -mail: ChauretR@719d42488cdd461d9a46a6d7e3fd0edb.bitwarden.com -carLicense: 0L5CO7 -departmentNumber: 5001 -employeeType: Contract -homePhone: +1 804 824-7470 -initials: R. C. -mobile: +1 804 688-8756 -pager: +1 804 934-6420 -roomNumber: 9064 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Darko Gawdan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darko Gawdan -sn: Gawdan -description: This is Darko Gawdan's description -facsimileTelephoneNumber: +1 213 928-8770 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 857-6843 -title: Chief Peons Janitor -userPassword: Password1 -uid: GawdanD -givenName: Darko -mail: GawdanD@6312a8bfcfc64f4fa1700b6ca4b67dc3.bitwarden.com -carLicense: Q1K01U -departmentNumber: 1685 -employeeType: Employee -homePhone: +1 213 369-2323 -initials: D. G. -mobile: +1 213 529-3506 -pager: +1 213 689-3986 -roomNumber: 8059 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SimonPui-Lok Gittins -sn: Gittins -description: This is SimonPui-Lok Gittins's description -facsimileTelephoneNumber: +1 408 488-3691 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 179-4332 -title: Junior Product Development Dictator -userPassword: Password1 -uid: GittinsS -givenName: SimonPui-Lok -mail: GittinsS@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com -carLicense: J4YVG9 -departmentNumber: 1851 -employeeType: Contract -homePhone: +1 408 279-1128 -initials: S. G. -mobile: +1 408 138-6334 -pager: +1 408 236-6021 -roomNumber: 8533 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dodie Starr,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dodie Starr -sn: Starr -description: This is Dodie Starr's description -facsimileTelephoneNumber: +1 213 335-1528 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 711-6615 -title: Master Management Manager -userPassword: Password1 -uid: StarrD -givenName: Dodie -mail: StarrD@3177f113b2494bf084a4349d34933284.bitwarden.com -carLicense: YO1G8M -departmentNumber: 6687 -employeeType: Employee -homePhone: +1 213 268-8240 -initials: D. S. -mobile: +1 213 620-5212 -pager: +1 213 359-8075 -roomNumber: 9104 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Britt Bivens,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Britt Bivens -sn: Bivens -description: This is Britt Bivens's description -facsimileTelephoneNumber: +1 415 716-2878 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 208-6250 -title: Junior Product Development Mascot -userPassword: Password1 -uid: BivensB -givenName: Britt -mail: BivensB@cb6388d64d1348ea8a259ae435674850.bitwarden.com -carLicense: KTKXU0 -departmentNumber: 5489 -employeeType: Normal -homePhone: +1 415 774-4817 -initials: B. B. -mobile: +1 415 679-5318 -pager: +1 415 571-7388 -roomNumber: 9110 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hanh Sohns,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hanh Sohns -sn: Sohns -description: This is Hanh Sohns's description -facsimileTelephoneNumber: +1 213 331-9833 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 744-2590 -title: Junior Administrative Fellow -userPassword: Password1 -uid: SohnsH -givenName: Hanh -mail: SohnsH@ae6d761bccb14b72b9b53490029a36af.bitwarden.com -carLicense: WX9MAK -departmentNumber: 2756 -employeeType: Employee -homePhone: +1 213 223-1566 -initials: H. S. -mobile: +1 213 946-3413 -pager: +1 213 416-5912 -roomNumber: 8316 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Friederike Awano,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Friederike Awano -sn: Awano -description: This is Friederike Awano's description -facsimileTelephoneNumber: +1 818 343-4468 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 818 677-1711 -title: Master Product Development Stooge -userPassword: Password1 -uid: AwanoF -givenName: Friederike -mail: AwanoF@a923c3e154c74115a9ff0fe18985dc09.bitwarden.com -carLicense: OF2QY2 -departmentNumber: 7020 -employeeType: Employee -homePhone: +1 818 176-9731 -initials: F. A. -mobile: +1 818 866-3537 -pager: +1 818 382-8923 -roomNumber: 8918 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Franki Nassr,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franki Nassr -sn: Nassr -description: This is Franki Nassr's description -facsimileTelephoneNumber: +1 206 873-9856 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 574-6253 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: NassrF -givenName: Franki -mail: NassrF@56c41599882f4a19aa89ca9c4dc0c09e.bitwarden.com -carLicense: EOERDY -departmentNumber: 6192 -employeeType: Employee -homePhone: +1 206 350-3722 -initials: F. N. -mobile: +1 206 780-4281 -pager: +1 206 817-3027 -roomNumber: 8176 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sheridan Arcouet,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheridan Arcouet -sn: Arcouet -description: This is Sheridan Arcouet's description -facsimileTelephoneNumber: +1 804 799-3693 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 804 924-8876 -title: Supreme Peons Grunt -userPassword: Password1 -uid: ArcouetS -givenName: Sheridan -mail: ArcouetS@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com -carLicense: YN4DE6 -departmentNumber: 1107 -employeeType: Normal -homePhone: +1 804 121-7932 -initials: S. A. -mobile: +1 804 570-5163 -pager: +1 804 391-8733 -roomNumber: 9198 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doreen MacMillanBrown -sn: MacMillanBrown -description: This is Doreen MacMillanBrown's description -facsimileTelephoneNumber: +1 213 918-4278 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 212-7324 -title: Chief Janitorial Stooge -userPassword: Password1 -uid: MacMillD -givenName: Doreen -mail: MacMillD@50a4724a631e41a7bce3841ce6d93bf4.bitwarden.com -carLicense: G5V2DW -departmentNumber: 2734 -employeeType: Contract -homePhone: +1 213 418-5379 -initials: D. M. -mobile: +1 213 177-2000 -pager: +1 213 239-9439 -roomNumber: 9881 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shoeb McCrimmon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shoeb McCrimmon -sn: McCrimmon -description: This is Shoeb McCrimmon's description -facsimileTelephoneNumber: +1 804 875-5791 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 804 845-5216 -title: Master Management Developer -userPassword: Password1 -uid: McCrimmS -givenName: Shoeb -mail: McCrimmS@423b79c358ed4d48a4cc89da75ae0404.bitwarden.com -carLicense: ODMMPX -departmentNumber: 3314 -employeeType: Normal -homePhone: +1 804 558-5169 -initials: S. M. -mobile: +1 804 583-6420 -pager: +1 804 925-9342 -roomNumber: 9907 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tuoi Gheciu -sn: Gheciu -description: This is Tuoi Gheciu's description -facsimileTelephoneNumber: +1 818 383-4788 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 713-2313 -title: Master Product Development Madonna -userPassword: Password1 -uid: GheciuT -givenName: Tuoi -mail: GheciuT@092d9b28cd5e485d86e0589d143723ee.bitwarden.com -carLicense: IDOWH2 -departmentNumber: 2912 -employeeType: Contract -homePhone: +1 818 110-7669 -initials: T. G. -mobile: +1 818 531-6729 -pager: +1 818 555-9861 -roomNumber: 8517 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sherline Morreale,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherline Morreale -sn: Morreale -description: This is Sherline Morreale's description -facsimileTelephoneNumber: +1 818 533-8485 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 321-7382 -title: Chief Product Development Technician -userPassword: Password1 -uid: MorrealS -givenName: Sherline -mail: MorrealS@e146e249e0b44539bc6460a663ad0f90.bitwarden.com -carLicense: 4T0IFG -departmentNumber: 3661 -employeeType: Normal -homePhone: +1 818 263-6061 -initials: S. M. -mobile: +1 818 483-4057 -pager: +1 818 385-7517 -roomNumber: 8144 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Emilia Tisdale,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emilia Tisdale -sn: Tisdale -description: This is Emilia Tisdale's description -facsimileTelephoneNumber: +1 206 344-6483 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 595-1220 -title: Associate Product Development Mascot -userPassword: Password1 -uid: TisdaleE -givenName: Emilia -mail: TisdaleE@c11c5f5aaeed4a9daabcfc4756ced3f6.bitwarden.com -carLicense: 39D6GX -departmentNumber: 6247 -employeeType: Normal -homePhone: +1 206 575-4255 -initials: E. T. -mobile: +1 206 724-8831 -pager: +1 206 616-2617 -roomNumber: 9391 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Reinhold Shumate,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reinhold Shumate -sn: Shumate -description: This is Reinhold Shumate's description -facsimileTelephoneNumber: +1 206 577-9266 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 748-9563 -title: Supreme Peons Czar -userPassword: Password1 -uid: ShumateR -givenName: Reinhold -mail: ShumateR@a1eb15c73ce34aa39a4a4077bd16ae75.bitwarden.com -carLicense: N909BV -departmentNumber: 3564 -employeeType: Contract -homePhone: +1 206 715-1864 -initials: R. S. -mobile: +1 206 216-3192 -pager: +1 206 421-8974 -roomNumber: 8598 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tatyana Packard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tatyana Packard -sn: Packard -description: This is Tatyana Packard's description -facsimileTelephoneNumber: +1 804 887-3525 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 624-8206 -title: Associate Product Testing Admin -userPassword: Password1 -uid: PackardT -givenName: Tatyana -mail: PackardT@b4ffcfe46a614ae194b415ba89e17560.bitwarden.com -carLicense: V7A2A3 -departmentNumber: 2745 -employeeType: Normal -homePhone: +1 804 371-9508 -initials: T. P. -mobile: +1 804 169-5561 -pager: +1 804 198-3728 -roomNumber: 9598 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gloriana Vendette,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gloriana Vendette -sn: Vendette -description: This is Gloriana Vendette's description -facsimileTelephoneNumber: +1 213 515-8412 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 435-2306 -title: Supreme Peons Consultant -userPassword: Password1 -uid: VendettG -givenName: Gloriana -mail: VendettG@2eeb9567dcd64347a2dcd6492aaa8ddc.bitwarden.com -carLicense: KLBKBK -departmentNumber: 6436 -employeeType: Contract -homePhone: +1 213 150-8270 -initials: G. V. -mobile: +1 213 388-3404 -pager: +1 213 900-8481 -roomNumber: 9301 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Consuela Ravi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Consuela Ravi -sn: Ravi -description: This is Consuela Ravi's description -facsimileTelephoneNumber: +1 206 231-3428 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 281-3982 -title: Junior Product Testing Visionary -userPassword: Password1 -uid: RaviC -givenName: Consuela -mail: RaviC@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com -carLicense: 1HXXTO -departmentNumber: 6091 -employeeType: Employee -homePhone: +1 206 886-9657 -initials: C. R. -mobile: +1 206 765-8732 -pager: +1 206 345-4173 -roomNumber: 8119 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sioux Langlois,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sioux Langlois -sn: Langlois -description: This is Sioux Langlois's description -facsimileTelephoneNumber: +1 510 734-8046 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 552-7505 -title: Junior Payroll Manager -userPassword: Password1 -uid: LangloiS -givenName: Sioux -mail: LangloiS@4964020f5ac94a59b22a0311ddec080f.bitwarden.com -carLicense: M5KOOP -departmentNumber: 4228 -employeeType: Normal -homePhone: +1 510 270-3121 -initials: S. L. -mobile: +1 510 277-5299 -pager: +1 510 620-5132 -roomNumber: 8714 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Olympia Lieure,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olympia Lieure -sn: Lieure -description: This is Olympia Lieure's description -facsimileTelephoneNumber: +1 408 810-4427 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 408 604-1929 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: LieureO -givenName: Olympia -mail: LieureO@dcbe263c9d3d41348af5a8fc7c5d470d.bitwarden.com -carLicense: 70DQAF -departmentNumber: 1046 -employeeType: Contract -homePhone: +1 408 136-9058 -initials: O. L. -mobile: +1 408 726-5979 -pager: +1 408 762-2079 -roomNumber: 9722 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cad Thorley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cad Thorley -sn: Thorley -description: This is Cad Thorley's description -facsimileTelephoneNumber: +1 818 416-6991 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 358-1191 -title: Supreme Janitorial Dictator -userPassword: Password1 -uid: ThorleyC -givenName: Cad -mail: ThorleyC@c6e9ac083cc043b8883c6054dd35e8a8.bitwarden.com -carLicense: J9EWB8 -departmentNumber: 4984 -employeeType: Contract -homePhone: +1 818 421-5840 -initials: C. T. -mobile: +1 818 522-9525 -pager: +1 818 381-4998 -roomNumber: 8125 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Etienne Ackaouy -sn: Ackaouy -description: This is Etienne Ackaouy's description -facsimileTelephoneNumber: +1 408 888-3386 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 816-8198 -title: Chief Human Resources Czar -userPassword: Password1 -uid: AckaouyE -givenName: Etienne -mail: AckaouyE@fb57f6256f134e1381affe3f9c6c7fdf.bitwarden.com -carLicense: TS0YES -departmentNumber: 3862 -employeeType: Normal -homePhone: +1 408 951-9813 -initials: E. A. -mobile: +1 408 783-8843 -pager: +1 408 699-1606 -roomNumber: 9393 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ryoung Moeschet,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ryoung Moeschet -sn: Moeschet -description: This is Ryoung Moeschet's description -facsimileTelephoneNumber: +1 213 704-6653 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 884-2596 -title: Supreme Peons Stooge -userPassword: Password1 -uid: MoescheR -givenName: Ryoung -mail: MoescheR@a11fd3f494644e3f9a70f7219a7bad22.bitwarden.com -carLicense: SFOB81 -departmentNumber: 2120 -employeeType: Contract -homePhone: +1 213 566-4184 -initials: R. M. -mobile: +1 213 329-1101 -pager: +1 213 220-8292 -roomNumber: 8685 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jorry Freno,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jorry Freno -sn: Freno -description: This is Jorry Freno's description -facsimileTelephoneNumber: +1 213 578-4227 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 962-2481 -title: Chief Payroll Pinhead -userPassword: Password1 -uid: FrenoJ -givenName: Jorry -mail: FrenoJ@343f3e94452d4417ab72f456ef20099a.bitwarden.com -carLicense: 0ACNA0 -departmentNumber: 4768 -employeeType: Normal -homePhone: +1 213 423-8742 -initials: J. F. -mobile: +1 213 752-1671 -pager: +1 213 752-5767 -roomNumber: 9493 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Amandie Cottengim,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amandie Cottengim -sn: Cottengim -description: This is Amandie Cottengim's description -facsimileTelephoneNumber: +1 510 278-4252 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 306-6340 -title: Supreme Peons Consultant -userPassword: Password1 -uid: CottengA -givenName: Amandie -mail: CottengA@61391b1e27a64c79ad40798665590378.bitwarden.com -carLicense: 7D07UO -departmentNumber: 9408 -employeeType: Normal -homePhone: +1 510 637-9244 -initials: A. C. -mobile: +1 510 761-1856 -pager: +1 510 613-8496 -roomNumber: 9926 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bran MacNeil,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bran MacNeil -sn: MacNeil -description: This is Bran MacNeil's description -facsimileTelephoneNumber: +1 213 740-4414 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 967-9258 -title: Master Management Writer -userPassword: Password1 -uid: MacNeilB -givenName: Bran -mail: MacNeilB@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com -carLicense: 2BTGT9 -departmentNumber: 6446 -employeeType: Contract -homePhone: +1 213 884-7551 -initials: B. M. -mobile: +1 213 463-3693 -pager: +1 213 120-5677 -roomNumber: 9496 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eladio Strudwick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eladio Strudwick -sn: Strudwick -description: This is Eladio Strudwick's description -facsimileTelephoneNumber: +1 510 100-2778 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 694-5052 -title: Junior Payroll President -userPassword: Password1 -uid: StrudwiE -givenName: Eladio -mail: StrudwiE@a23986164bc64fc4ad43988e6e385f40.bitwarden.com -carLicense: 93L0TE -departmentNumber: 7324 -employeeType: Contract -homePhone: +1 510 227-2388 -initials: E. S. -mobile: +1 510 818-5079 -pager: +1 510 755-7968 -roomNumber: 8735 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cleveland Jagla,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cleveland Jagla -sn: Jagla -description: This is Cleveland Jagla's description -facsimileTelephoneNumber: +1 818 115-4388 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 854-1556 -title: Junior Payroll Director -userPassword: Password1 -uid: JaglaC -givenName: Cleveland -mail: JaglaC@8811017314e4431b8c77e3cc9b6c4274.bitwarden.com -carLicense: W5HBUG -departmentNumber: 9978 -employeeType: Normal -homePhone: +1 818 246-2270 -initials: C. J. -mobile: +1 818 965-7610 -pager: +1 818 825-6140 -roomNumber: 9158 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Julien Osterberg,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julien Osterberg -sn: Osterberg -description: This is Julien Osterberg's description -facsimileTelephoneNumber: +1 510 162-2907 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 510 557-9601 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: OsterbeJ -givenName: Julien -mail: OsterbeJ@801080c2fb40441aa0b2119368327ea0.bitwarden.com -carLicense: DEYI7E -departmentNumber: 3106 -employeeType: Normal -homePhone: +1 510 238-5033 -initials: J. O. -mobile: +1 510 991-4219 -pager: +1 510 820-5223 -roomNumber: 9944 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Frederika Brower,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frederika Brower -sn: Brower -description: This is Frederika Brower's description -facsimileTelephoneNumber: +1 213 646-2285 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 213 807-4554 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: BrowerF -givenName: Frederika -mail: BrowerF@40afcc80c86b41fda116eba64b688061.bitwarden.com -carLicense: L9AGU1 -departmentNumber: 3112 -employeeType: Employee -homePhone: +1 213 196-7253 -initials: F. B. -mobile: +1 213 858-5176 -pager: +1 213 270-8388 -roomNumber: 8060 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Timmi Bascombe,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Timmi Bascombe -sn: Bascombe -description: This is Timmi Bascombe's description -facsimileTelephoneNumber: +1 510 733-6575 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 631-5066 -title: Associate Management Writer -userPassword: Password1 -uid: BascombT -givenName: Timmi -mail: BascombT@5020798a7692438bb9e14d9a42dd1742.bitwarden.com -carLicense: 6G88VJ -departmentNumber: 2645 -employeeType: Normal -homePhone: +1 510 748-6963 -initials: T. B. -mobile: +1 510 223-5664 -pager: +1 510 655-6988 -roomNumber: 9845 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corenda Gilchrist -sn: Gilchrist -description: This is Corenda Gilchrist's description -facsimileTelephoneNumber: +1 804 689-5632 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 831-6741 -title: Associate Administrative Dictator -userPassword: Password1 -uid: GilchriC -givenName: Corenda -mail: GilchriC@899743aa481a45efb507e6d61189c383.bitwarden.com -carLicense: CX91SL -departmentNumber: 3528 -employeeType: Employee -homePhone: +1 804 786-1848 -initials: C. G. -mobile: +1 804 886-5348 -pager: +1 804 792-6800 -roomNumber: 8861 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shafiq Jazanoski -sn: Jazanoski -description: This is Shafiq Jazanoski's description -facsimileTelephoneNumber: +1 510 329-9343 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 221-5252 -title: Master Product Testing Manager -userPassword: Password1 -uid: JazanosS -givenName: Shafiq -mail: JazanosS@0437e560df9b4466ac4b1814efe6272e.bitwarden.com -carLicense: HXYV95 -departmentNumber: 2475 -employeeType: Employee -homePhone: +1 510 272-3967 -initials: S. J. -mobile: +1 510 393-9801 -pager: +1 510 658-6501 -roomNumber: 9668 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Milicent Frondozo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Milicent Frondozo -sn: Frondozo -description: This is Milicent Frondozo's description -facsimileTelephoneNumber: +1 415 972-6133 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 424-9970 -title: Master Management Manager -userPassword: Password1 -uid: FrondozM -givenName: Milicent -mail: FrondozM@29b64656a78049bc9d3de5b18cdb7f58.bitwarden.com -carLicense: 5VC6GP -departmentNumber: 5866 -employeeType: Contract -homePhone: +1 415 802-2878 -initials: M. F. -mobile: +1 415 648-7223 -pager: +1 415 716-9918 -roomNumber: 8972 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Danell Silang,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danell Silang -sn: Silang -description: This is Danell Silang's description -facsimileTelephoneNumber: +1 804 264-5945 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 646-2491 -title: Master Janitorial Director -userPassword: Password1 -uid: SilangD -givenName: Danell -mail: SilangD@7b9bbc8a8db749adaa5d570b3f3c2a12.bitwarden.com -carLicense: 5B4Q8L -departmentNumber: 8652 -employeeType: Normal -homePhone: +1 804 362-7991 -initials: D. S. -mobile: +1 804 164-7824 -pager: +1 804 849-3780 -roomNumber: 9555 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Baljinder StJohn,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Baljinder StJohn -sn: StJohn -description: This is Baljinder StJohn's description -facsimileTelephoneNumber: +1 213 545-6885 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 213 117-1660 -title: Chief Product Development Director -userPassword: Password1 -uid: StJohnB -givenName: Baljinder -mail: StJohnB@69b9ccd34baf4393989b969fe509e24b.bitwarden.com -carLicense: BPIV5X -departmentNumber: 6470 -employeeType: Employee -homePhone: +1 213 544-1534 -initials: B. S. -mobile: +1 213 167-2929 -pager: +1 213 811-1195 -roomNumber: 9116 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akin Oberpriller -sn: Oberpriller -description: This is Akin Oberpriller's description -facsimileTelephoneNumber: +1 804 914-2478 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 864-9597 -title: Associate Product Testing Architect -userPassword: Password1 -uid: OberpriA -givenName: Akin -mail: OberpriA@4bbf773107d4419bb6cc46fd57ba3ce2.bitwarden.com -carLicense: HG3Y3X -departmentNumber: 6536 -employeeType: Normal -homePhone: +1 804 405-2062 -initials: A. O. -mobile: +1 804 421-5889 -pager: +1 804 380-8609 -roomNumber: 9548 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ankie Cohoe -sn: Cohoe -description: This is Ankie Cohoe's description -facsimileTelephoneNumber: +1 510 912-5365 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 510 891-7437 -title: Junior Product Testing Technician -userPassword: Password1 -uid: CohoeA -givenName: Ankie -mail: CohoeA@7a3b1be5d62c42abaf0253c9b042dfe2.bitwarden.com -carLicense: SWAKTC -departmentNumber: 9521 -employeeType: Contract -homePhone: +1 510 164-2606 -initials: A. C. -mobile: +1 510 874-5686 -pager: +1 510 864-5425 -roomNumber: 8945 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joannah Gendre,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joannah Gendre -sn: Gendre -description: This is Joannah Gendre's description -facsimileTelephoneNumber: +1 206 494-2676 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 206 334-5735 -title: Master Administrative Evangelist -userPassword: Password1 -uid: GendreJ -givenName: Joannah -mail: GendreJ@ca748ccfc8c741eab1dc5767d7063b1c.bitwarden.com -carLicense: WA9EUN -departmentNumber: 5987 -employeeType: Employee -homePhone: +1 206 656-1340 -initials: J. G. -mobile: +1 206 347-2065 -pager: +1 206 153-4532 -roomNumber: 9718 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zero Strickland,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zero Strickland -sn: Strickland -description: This is Zero Strickland's description -facsimileTelephoneNumber: +1 213 612-5129 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 507-8162 -title: Supreme Product Development Technician -userPassword: Password1 -uid: StricklZ -givenName: Zero -mail: StricklZ@69527a1c41b04ddda793d00fb5a21087.bitwarden.com -carLicense: AWW1Y3 -departmentNumber: 5720 -employeeType: Normal -homePhone: +1 213 144-5041 -initials: Z. S. -mobile: +1 213 272-5439 -pager: +1 213 529-3812 -roomNumber: 8824 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lujanka Turner,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lujanka Turner -sn: Turner -description: This is Lujanka Turner's description -facsimileTelephoneNumber: +1 804 731-3224 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 704-5316 -title: Master Administrative Admin -userPassword: Password1 -uid: TurnerL -givenName: Lujanka -mail: TurnerL@a69feaacad634790a69fdf1db6b0a8d9.bitwarden.com -carLicense: HWTRE9 -departmentNumber: 3047 -employeeType: Employee -homePhone: +1 804 560-9856 -initials: L. T. -mobile: +1 804 650-2062 -pager: +1 804 253-7210 -roomNumber: 8960 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Trish Meissner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trish Meissner -sn: Meissner -description: This is Trish Meissner's description -facsimileTelephoneNumber: +1 804 756-3494 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 804 171-3275 -title: Chief Product Development Punk -userPassword: Password1 -uid: MeissneT -givenName: Trish -mail: MeissneT@ea8c137275494c24a45d33c847e472b4.bitwarden.com -carLicense: 4SMU9R -departmentNumber: 2297 -employeeType: Normal -homePhone: +1 804 640-1405 -initials: T. M. -mobile: +1 804 202-9666 -pager: +1 804 305-2679 -roomNumber: 8897 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Han Hermes,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Han Hermes -sn: Hermes -description: This is Han Hermes's description -facsimileTelephoneNumber: +1 213 331-9919 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 767-6571 -title: Junior Management Admin -userPassword: Password1 -uid: HermesH -givenName: Han -mail: HermesH@9426a2bdce5b455d93581bbbd4e466d1.bitwarden.com -carLicense: 0XPS74 -departmentNumber: 8073 -employeeType: Normal -homePhone: +1 213 559-9420 -initials: H. H. -mobile: +1 213 373-8821 -pager: +1 213 863-9086 -roomNumber: 8471 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Annamaria Daly,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annamaria Daly -sn: Daly -description: This is Annamaria Daly's description -facsimileTelephoneNumber: +1 415 569-4489 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 522-2911 -title: Chief Payroll Warrior -userPassword: Password1 -uid: DalyA -givenName: Annamaria -mail: DalyA@231d8346570d402bb69f49de52a59267.bitwarden.com -carLicense: 7C7IM0 -departmentNumber: 6859 -employeeType: Employee -homePhone: +1 415 448-2534 -initials: A. D. -mobile: +1 415 450-4025 -pager: +1 415 509-9817 -roomNumber: 9394 -manager: cn=Lucky Carmody,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: VuQuoc Godlington -sn: Godlington -description: This is VuQuoc Godlington's description -facsimileTelephoneNumber: +1 804 764-9089 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 804 670-4936 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: GodlingV -givenName: VuQuoc -mail: GodlingV@0dddb86650e94c559800b280597f0c4c.bitwarden.com -carLicense: Q0D6VP -departmentNumber: 4563 -employeeType: Contract -homePhone: +1 804 868-3730 -initials: V. G. -mobile: +1 804 242-5069 -pager: +1 804 369-2584 -roomNumber: 8583 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stefa StClairHolmes -sn: StClairHolmes -description: This is Stefa StClairHolmes's description -facsimileTelephoneNumber: +1 510 302-8931 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 510 995-7064 -title: Master Product Testing Evangelist -userPassword: Password1 -uid: StClairS -givenName: Stefa -mail: StClairS@4d1502006f9d465093ef756b43a146bc.bitwarden.com -carLicense: SDE91I -departmentNumber: 1141 -employeeType: Employee -homePhone: +1 510 401-8378 -initials: S. S. -mobile: +1 510 750-9983 -pager: +1 510 469-5284 -roomNumber: 8761 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramon Wimbush -sn: Wimbush -description: This is Ramon Wimbush's description -facsimileTelephoneNumber: +1 408 373-3586 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 229-9614 -title: Master Janitorial Technician -userPassword: Password1 -uid: WimbushR -givenName: Ramon -mail: WimbushR@1c3f38c01ffe4fd78e55d74bc900ca15.bitwarden.com -carLicense: ROF5PK -departmentNumber: 6780 -employeeType: Normal -homePhone: +1 408 104-8901 -initials: R. W. -mobile: +1 408 600-5870 -pager: +1 408 408-7720 -roomNumber: 8348 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roger Latella,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roger Latella -sn: Latella -description: This is Roger Latella's description -facsimileTelephoneNumber: +1 510 680-6099 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 661-3337 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: LatellaR -givenName: Roger -mail: LatellaR@6f5c481db3be45b1bf56f24cf55ebbf4.bitwarden.com -carLicense: X2MVXA -departmentNumber: 3394 -employeeType: Employee -homePhone: +1 510 226-9719 -initials: R. L. -mobile: +1 510 251-4703 -pager: +1 510 253-4292 -roomNumber: 9420 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Romina Koman,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Korney Blevins,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Korney Blevins -sn: Blevins -description: This is Korney Blevins's description -facsimileTelephoneNumber: +1 415 570-8057 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 130-6791 -title: Junior Product Development Figurehead -userPassword: Password1 -uid: BlevinsK -givenName: Korney -mail: BlevinsK@24105f6fca38477da9ad618bec45383c.bitwarden.com -carLicense: T5WAL4 -departmentNumber: 5115 -employeeType: Normal -homePhone: +1 415 867-9898 -initials: K. B. -mobile: +1 415 636-5789 -pager: +1 415 720-8766 -roomNumber: 9355 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elsey Meckley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elsey Meckley -sn: Meckley -description: This is Elsey Meckley's description -facsimileTelephoneNumber: +1 213 258-4344 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 727-7296 -title: Master Administrative Mascot -userPassword: Password1 -uid: MeckleyE -givenName: Elsey -mail: MeckleyE@b5e3188bf80e462eac4ebbb9d1096eff.bitwarden.com -carLicense: 8M54MX -departmentNumber: 1278 -employeeType: Contract -homePhone: +1 213 274-7633 -initials: E. M. -mobile: +1 213 163-3078 -pager: +1 213 532-8705 -roomNumber: 9006 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jill Langton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jill Langton -sn: Langton -description: This is Jill Langton's description -facsimileTelephoneNumber: +1 213 898-4580 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 213 643-3051 -title: Associate Payroll President -userPassword: Password1 -uid: LangtonJ -givenName: Jill -mail: LangtonJ@9ba1788c88514e3e9788f75280ccf6c3.bitwarden.com -carLicense: L5WGMX -departmentNumber: 8625 -employeeType: Normal -homePhone: +1 213 659-5240 -initials: J. L. -mobile: +1 213 710-5171 -pager: +1 213 706-2023 -roomNumber: 9169 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melessa Malkiewicz -sn: Malkiewicz -description: This is Melessa Malkiewicz's description -facsimileTelephoneNumber: +1 510 355-8715 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 510 831-9669 -title: Junior Human Resources Visionary -userPassword: Password1 -uid: MalkiewM -givenName: Melessa -mail: MalkiewM@01d519b2c3cc4b749d2c74cc03a56716.bitwarden.com -carLicense: RWBFTQ -departmentNumber: 8313 -employeeType: Employee -homePhone: +1 510 247-3638 -initials: M. M. -mobile: +1 510 785-9196 -pager: +1 510 911-4937 -roomNumber: 9405 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Peg Arnott,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peg Arnott -sn: Arnott -description: This is Peg Arnott's description -facsimileTelephoneNumber: +1 408 194-8044 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 408 893-8528 -title: Junior Peons Vice President -userPassword: Password1 -uid: ArnottP -givenName: Peg -mail: ArnottP@1dac857c92bb48aaa0a69e83483dddea.bitwarden.com -carLicense: HS7HVT -departmentNumber: 9374 -employeeType: Employee -homePhone: +1 408 659-6665 -initials: P. A. -mobile: +1 408 702-9873 -pager: +1 408 998-7705 -roomNumber: 8533 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marsh Lagrandeur -sn: Lagrandeur -description: This is Marsh Lagrandeur's description -facsimileTelephoneNumber: +1 213 330-3829 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 474-1769 -title: Master Administrative Developer -userPassword: Password1 -uid: LagrandM -givenName: Marsh -mail: LagrandM@b866cf3614c84b6ab1508dbbda76e67a.bitwarden.com -carLicense: IVX530 -departmentNumber: 2278 -employeeType: Employee -homePhone: +1 213 545-3039 -initials: M. L. -mobile: +1 213 447-3777 -pager: +1 213 889-5071 -roomNumber: 9311 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lotta Witkowski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lotta Witkowski -sn: Witkowski -description: This is Lotta Witkowski's description -facsimileTelephoneNumber: +1 213 430-9877 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 458-6679 -title: Chief Peons Artist -userPassword: Password1 -uid: WitkowsL -givenName: Lotta -mail: WitkowsL@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com -carLicense: Q9VH9C -departmentNumber: 1686 -employeeType: Contract -homePhone: +1 213 839-7193 -initials: L. W. -mobile: +1 213 277-4057 -pager: +1 213 848-4484 -roomNumber: 8075 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=TunLin Dickerson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: TunLin Dickerson -sn: Dickerson -description: This is TunLin Dickerson's description -facsimileTelephoneNumber: +1 804 472-4779 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 101-2129 -title: Junior Peons Dictator -userPassword: Password1 -uid: DickersT -givenName: TunLin -mail: DickersT@4a8ab0364b8c4f26a80da2953a1e2c51.bitwarden.com -carLicense: R3OOYG -departmentNumber: 4719 -employeeType: Employee -homePhone: +1 804 991-5990 -initials: T. D. -mobile: +1 804 489-8992 -pager: +1 804 942-8540 -roomNumber: 8823 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sile Golczewski,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sile Golczewski -sn: Golczewski -description: This is Sile Golczewski's description -facsimileTelephoneNumber: +1 213 564-8258 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 253-3808 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: GolczewS -givenName: Sile -mail: GolczewS@0e51e4ac4ff5492f891ae127459e83ab.bitwarden.com -carLicense: FU6GBW -departmentNumber: 7258 -employeeType: Employee -homePhone: +1 213 812-9688 -initials: S. G. -mobile: +1 213 307-6544 -pager: +1 213 511-6822 -roomNumber: 8248 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Joshi Formagie,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joshi Formagie -sn: Formagie -description: This is Joshi Formagie's description -facsimileTelephoneNumber: +1 415 793-3045 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 537-6400 -title: Supreme Human Resources Janitor -userPassword: Password1 -uid: FormagiJ -givenName: Joshi -mail: FormagiJ@a61d7f00b26e42a8b542c11c2adbdb6e.bitwarden.com -carLicense: XBYSYR -departmentNumber: 2795 -employeeType: Employee -homePhone: +1 415 817-4943 -initials: J. F. -mobile: +1 415 577-8973 -pager: +1 415 920-1470 -roomNumber: 9264 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Penni Marzullo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Penni Marzullo -sn: Marzullo -description: This is Penni Marzullo's description -facsimileTelephoneNumber: +1 510 175-9208 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 786-1185 -title: Master Payroll Vice President -userPassword: Password1 -uid: MarzullP -givenName: Penni -mail: MarzullP@745e98042a374bd8b4300c64429e0da5.bitwarden.com -carLicense: W5UHXW -departmentNumber: 2089 -employeeType: Contract -homePhone: +1 510 944-1680 -initials: P. M. -mobile: +1 510 411-2219 -pager: +1 510 178-3138 -roomNumber: 8660 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madonna Matsubara -sn: Matsubara -description: This is Madonna Matsubara's description -facsimileTelephoneNumber: +1 818 343-3546 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 873-3154 -title: Chief Product Testing Czar -userPassword: Password1 -uid: MatsubaM -givenName: Madonna -mail: MatsubaM@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com -carLicense: M6NMS8 -departmentNumber: 1462 -employeeType: Normal -homePhone: +1 818 121-7611 -initials: M. M. -mobile: +1 818 423-5210 -pager: +1 818 230-8400 -roomNumber: 9588 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maible Blauer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maible Blauer -sn: Blauer -description: This is Maible Blauer's description -facsimileTelephoneNumber: +1 408 641-7586 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 408 124-1381 -title: Chief Management Warrior -userPassword: Password1 -uid: BlauerM -givenName: Maible -mail: BlauerM@12257cabb5eb48ceb908520b2745a457.bitwarden.com -carLicense: TEHYHX -departmentNumber: 6400 -employeeType: Normal -homePhone: +1 408 705-7360 -initials: M. B. -mobile: +1 408 961-4215 -pager: +1 408 424-5201 -roomNumber: 9953 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fawne Fanthome,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fawne Fanthome -sn: Fanthome -description: This is Fawne Fanthome's description -facsimileTelephoneNumber: +1 415 242-4628 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 846-8953 -title: Supreme Administrative Writer -userPassword: Password1 -uid: FanthomF -givenName: Fawne -mail: FanthomF@aac869a9d66f41deb273e8c857d2f2a2.bitwarden.com -carLicense: 07JGWM -departmentNumber: 1256 -employeeType: Employee -homePhone: +1 415 960-5223 -initials: F. F. -mobile: +1 415 315-5829 -pager: +1 415 362-6803 -roomNumber: 8964 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brinna Spraggins,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brinna Spraggins -sn: Spraggins -description: This is Brinna Spraggins's description -facsimileTelephoneNumber: +1 206 622-4790 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 280-1771 -title: Associate Peons Fellow -userPassword: Password1 -uid: SpraggiB -givenName: Brinna -mail: SpraggiB@9b56a002e1e845bebc57785089119222.bitwarden.com -carLicense: N8DWC0 -departmentNumber: 5320 -employeeType: Employee -homePhone: +1 206 116-6622 -initials: B. S. -mobile: +1 206 892-5249 -pager: +1 206 563-4236 -roomNumber: 8228 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Misbah FWPtools,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Misbah FWPtools -sn: FWPtools -description: This is Misbah FWPtools's description -facsimileTelephoneNumber: +1 213 718-2409 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 784-2308 -title: Junior Product Development Director -userPassword: Password1 -uid: FWPtoolM -givenName: Misbah -mail: FWPtoolM@5256d716dc394c1f919ed3450fa1ea97.bitwarden.com -carLicense: 8MB5JL -departmentNumber: 4695 -employeeType: Contract -homePhone: +1 213 526-5788 -initials: M. F. -mobile: +1 213 203-8964 -pager: +1 213 591-5691 -roomNumber: 9405 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shona Keck,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shona Keck -sn: Keck -description: This is Shona Keck's description -facsimileTelephoneNumber: +1 510 828-6353 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 771-5517 -title: Supreme Peons Janitor -userPassword: Password1 -uid: KeckS -givenName: Shona -mail: KeckS@8355880d64ee437fa987ff83fc2fd243.bitwarden.com -carLicense: ST9D6H -departmentNumber: 1171 -employeeType: Normal -homePhone: +1 510 798-6916 -initials: S. K. -mobile: +1 510 772-9790 -pager: +1 510 275-4854 -roomNumber: 8873 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Skip Vanderhooft -sn: Vanderhooft -description: This is Skip Vanderhooft's description -facsimileTelephoneNumber: +1 213 712-1956 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 515-1752 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: VanderhS -givenName: Skip -mail: VanderhS@c219bf062505483787e15d8eef41ed24.bitwarden.com -carLicense: VNEWX3 -departmentNumber: 7436 -employeeType: Normal -homePhone: +1 213 778-9577 -initials: S. V. -mobile: +1 213 604-4921 -pager: +1 213 432-5962 -roomNumber: 8701 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sluis Soulliere -sn: Soulliere -description: This is Sluis Soulliere's description -facsimileTelephoneNumber: +1 804 561-2460 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 573-4287 -title: Junior Janitorial President -userPassword: Password1 -uid: SoullieS -givenName: Sluis -mail: SoullieS@4504d7b5d7bb4c7c81665aefd8680fbc.bitwarden.com -carLicense: MHNUGN -departmentNumber: 7554 -employeeType: Normal -homePhone: +1 804 303-2919 -initials: S. S. -mobile: +1 804 344-1620 -pager: +1 804 466-7640 -roomNumber: 9344 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Doe Digenova,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doe Digenova -sn: Digenova -description: This is Doe Digenova's description -facsimileTelephoneNumber: +1 408 602-2784 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 535-7712 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: DigenovD -givenName: Doe -mail: DigenovD@c053920120d84308b5190978039283b5.bitwarden.com -carLicense: UCRQ6D -departmentNumber: 3561 -employeeType: Employee -homePhone: +1 408 336-7275 -initials: D. D. -mobile: +1 408 416-7168 -pager: +1 408 965-3532 -roomNumber: 9524 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Edel Huliganga,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edel Huliganga -sn: Huliganga -description: This is Edel Huliganga's description -facsimileTelephoneNumber: +1 213 977-7539 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 571-8563 -title: Associate Payroll Figurehead -userPassword: Password1 -uid: HuliganE -givenName: Edel -mail: HuliganE@237b08eaf7b7464e9c2e34150cfd7ad3.bitwarden.com -carLicense: 69QJ04 -departmentNumber: 5274 -employeeType: Normal -homePhone: +1 213 740-8403 -initials: E. H. -mobile: +1 213 506-6094 -pager: +1 213 691-4821 -roomNumber: 9792 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Miquela Khosla,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miquela Khosla -sn: Khosla -description: This is Miquela Khosla's description -facsimileTelephoneNumber: +1 213 552-6249 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 978-8255 -title: Junior Management Admin -userPassword: Password1 -uid: KhoslaM -givenName: Miquela -mail: KhoslaM@784bec209e394f1ca55bb2a6c8564d70.bitwarden.com -carLicense: APVOCT -departmentNumber: 5400 -employeeType: Contract -homePhone: +1 213 176-1091 -initials: M. K. -mobile: +1 213 160-9014 -pager: +1 213 393-6599 -roomNumber: 9867 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariel Barnhouse -sn: Barnhouse -description: This is Mariel Barnhouse's description -facsimileTelephoneNumber: +1 804 808-3448 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 818-3728 -title: Junior Product Testing Grunt -userPassword: Password1 -uid: BarnhouM -givenName: Mariel -mail: BarnhouM@9bca7e1fa66343078f8d2f441ac03fca.bitwarden.com -carLicense: LVFS01 -departmentNumber: 9516 -employeeType: Employee -homePhone: +1 804 377-2207 -initials: M. B. -mobile: +1 804 936-2241 -pager: +1 804 797-2405 -roomNumber: 8789 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Butch Gewell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Butch Gewell -sn: Gewell -description: This is Butch Gewell's description -facsimileTelephoneNumber: +1 415 938-2762 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 690-8233 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: GewellB -givenName: Butch -mail: GewellB@efcd32daf30f47bab7fc31cf8968544d.bitwarden.com -carLicense: BMI405 -departmentNumber: 6232 -employeeType: Contract -homePhone: +1 415 380-1122 -initials: B. G. -mobile: +1 415 870-6568 -pager: +1 415 731-5572 -roomNumber: 8532 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jawaid Kinrys -sn: Kinrys -description: This is Jawaid Kinrys's description -facsimileTelephoneNumber: +1 804 653-3496 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 350-9833 -title: Junior Janitorial Manager -userPassword: Password1 -uid: KinrysJ -givenName: Jawaid -mail: KinrysJ@ea406b4bd2b34275a1fc4a070b598266.bitwarden.com -carLicense: 4011DB -departmentNumber: 1555 -employeeType: Employee -homePhone: +1 804 415-5267 -initials: J. K. -mobile: +1 804 408-9849 -pager: +1 804 852-9405 -roomNumber: 9419 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Stock Krenn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mindy Wealch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mindy Wealch -sn: Wealch -description: This is Mindy Wealch's description -facsimileTelephoneNumber: +1 415 890-8405 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 765-5062 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: WealchM -givenName: Mindy -mail: WealchM@94dbeedce77e435482fe6d405df83d4c.bitwarden.com -carLicense: UUJJCL -departmentNumber: 2554 -employeeType: Employee -homePhone: +1 415 674-6228 -initials: M. W. -mobile: +1 415 973-7582 -pager: +1 415 738-6877 -roomNumber: 9893 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Petri Quintero,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petri Quintero -sn: Quintero -description: This is Petri Quintero's description -facsimileTelephoneNumber: +1 510 382-4789 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 510 612-2903 -title: Associate Human Resources Mascot -userPassword: Password1 -uid: QuinterP -givenName: Petri -mail: QuinterP@62762c759020411b89296a80fdd53afd.bitwarden.com -carLicense: AH0NQC -departmentNumber: 6425 -employeeType: Normal -homePhone: +1 510 638-4282 -initials: P. Q. -mobile: +1 510 253-9969 -pager: +1 510 635-5258 -roomNumber: 9105 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Windowing Feyen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Windowing Feyen -sn: Feyen -description: This is Windowing Feyen's description -facsimileTelephoneNumber: +1 408 174-9342 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 408 672-4986 -title: Junior Janitorial Writer -userPassword: Password1 -uid: FeyenW -givenName: Windowing -mail: FeyenW@91566d07f8014fa098810199110928d7.bitwarden.com -carLicense: AN4IYB -departmentNumber: 8035 -employeeType: Employee -homePhone: +1 408 265-5248 -initials: W. F. -mobile: +1 408 349-8192 -pager: +1 408 654-1154 -roomNumber: 8885 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Charlotta Demarest,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charlotta Demarest -sn: Demarest -description: This is Charlotta Demarest's description -facsimileTelephoneNumber: +1 818 123-8658 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 175-6386 -title: Chief Payroll Visionary -userPassword: Password1 -uid: DemaresC -givenName: Charlotta -mail: DemaresC@cb2e25cd93c145bf81000296630c3ab7.bitwarden.com -carLicense: 2EXGBG -departmentNumber: 2023 -employeeType: Contract -homePhone: +1 818 380-5783 -initials: C. D. -mobile: +1 818 917-1367 -pager: +1 818 578-6365 -roomNumber: 9382 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Honey Badjari,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Honey Badjari -sn: Badjari -description: This is Honey Badjari's description -facsimileTelephoneNumber: +1 804 721-4720 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 640-6982 -title: Supreme Product Testing President -userPassword: Password1 -uid: BadjariH -givenName: Honey -mail: BadjariH@47b3a42002e74101b1c82f87517bcbef.bitwarden.com -carLicense: 99PL5Y -departmentNumber: 8714 -employeeType: Employee -homePhone: +1 804 625-7889 -initials: H. B. -mobile: +1 804 991-2327 -pager: +1 804 102-5594 -roomNumber: 9555 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nady Kness,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nady Kness -sn: Kness -description: This is Nady Kness's description -facsimileTelephoneNumber: +1 818 879-5103 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 811-5485 -title: Supreme Peons Admin -userPassword: Password1 -uid: KnessN -givenName: Nady -mail: KnessN@9befe039acaf4d578a86c80d677d5d49.bitwarden.com -carLicense: FVGD6H -departmentNumber: 7043 -employeeType: Normal -homePhone: +1 818 151-9935 -initials: N. K. -mobile: +1 818 904-7617 -pager: +1 818 488-6641 -roomNumber: 9977 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Magdaia Pagi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdaia Pagi -sn: Pagi -description: This is Magdaia Pagi's description -facsimileTelephoneNumber: +1 206 889-4457 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 206 200-2638 -title: Supreme Payroll Manager -userPassword: Password1 -uid: PagiM -givenName: Magdaia -mail: PagiM@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com -carLicense: BICUBH -departmentNumber: 2875 -employeeType: Contract -homePhone: +1 206 644-3046 -initials: M. P. -mobile: +1 206 910-3638 -pager: +1 206 477-2349 -roomNumber: 8074 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Peri Morden,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peri Morden -sn: Morden -description: This is Peri Morden's description -facsimileTelephoneNumber: +1 213 616-5232 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 213 800-3810 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: MordenP -givenName: Peri -mail: MordenP@fc363d82b6fb44d985548ce8053314f6.bitwarden.com -carLicense: S60WMF -departmentNumber: 1126 -employeeType: Contract -homePhone: +1 213 485-6959 -initials: P. M. -mobile: +1 213 958-2745 -pager: +1 213 530-8837 -roomNumber: 8493 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Avie Moores,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avie Moores -sn: Moores -description: This is Avie Moores's description -facsimileTelephoneNumber: +1 510 514-3986 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 510 862-6442 -title: Master Peons Writer -userPassword: Password1 -uid: MooresA -givenName: Avie -mail: MooresA@c227b873963e4393bf6073155bf0bef2.bitwarden.com -carLicense: TO5IEH -departmentNumber: 6656 -employeeType: Normal -homePhone: +1 510 235-9753 -initials: A. M. -mobile: +1 510 324-4795 -pager: +1 510 996-2520 -roomNumber: 8714 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dreddy Iribarren -sn: Iribarren -description: This is Dreddy Iribarren's description -facsimileTelephoneNumber: +1 415 916-5932 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 203-5260 -title: Master Payroll Manager -userPassword: Password1 -uid: IribarrD -givenName: Dreddy -mail: IribarrD@e9e739e036b347aa8d1219a0e8da1acd.bitwarden.com -carLicense: RE6M4Y -departmentNumber: 8073 -employeeType: Normal -homePhone: +1 415 347-1274 -initials: D. I. -mobile: +1 415 489-1743 -pager: +1 415 712-9341 -roomNumber: 8288 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Schell Wendling,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Schell Wendling -sn: Wendling -description: This is Schell Wendling's description -facsimileTelephoneNumber: +1 213 480-5492 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 924-9134 -title: Chief Peons Writer -userPassword: Password1 -uid: WendlinS -givenName: Schell -mail: WendlinS@b2dba5d211e74e1e8b9beacd1ae0b042.bitwarden.com -carLicense: OS13CN -departmentNumber: 2587 -employeeType: Contract -homePhone: +1 213 722-6152 -initials: S. W. -mobile: +1 213 649-2141 -pager: +1 213 449-1647 -roomNumber: 9518 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Reynold Labiche,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reynold Labiche -sn: Labiche -description: This is Reynold Labiche's description -facsimileTelephoneNumber: +1 804 386-8063 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 561-6069 -title: Junior Administrative Admin -userPassword: Password1 -uid: LabicheR -givenName: Reynold -mail: LabicheR@d889c2d8f8034f8b853618d3cde340fb.bitwarden.com -carLicense: CW2LA9 -departmentNumber: 5185 -employeeType: Normal -homePhone: +1 804 926-8098 -initials: R. L. -mobile: +1 804 816-3637 -pager: +1 804 136-7849 -roomNumber: 8528 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vince Bulger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vince Bulger -sn: Bulger -description: This is Vince Bulger's description -facsimileTelephoneNumber: +1 213 464-6549 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 794-9657 -title: Associate Payroll Developer -userPassword: Password1 -uid: BulgerV -givenName: Vince -mail: BulgerV@e00d274753dc4e1282c4eb80a1b5a880.bitwarden.com -carLicense: 2OXSDD -departmentNumber: 3313 -employeeType: Employee -homePhone: +1 213 304-4512 -initials: V. B. -mobile: +1 213 890-8718 -pager: +1 213 297-5942 -roomNumber: 8622 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nedi England,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nedi England -sn: England -description: This is Nedi England's description -facsimileTelephoneNumber: +1 415 801-4154 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 415 982-8156 -title: Chief Administrative Consultant -userPassword: Password1 -uid: EnglandN -givenName: Nedi -mail: EnglandN@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com -carLicense: PJFM73 -departmentNumber: 2469 -employeeType: Employee -homePhone: +1 415 166-4886 -initials: N. E. -mobile: +1 415 239-7865 -pager: +1 415 778-4880 -roomNumber: 9546 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Field Ueyama,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Field Ueyama -sn: Ueyama -description: This is Field Ueyama's description -facsimileTelephoneNumber: +1 206 772-3087 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 206 655-9497 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: UeyamaF -givenName: Field -mail: UeyamaF@32419fed353640be907742ce6b450ca8.bitwarden.com -carLicense: KUTI88 -departmentNumber: 2900 -employeeType: Contract -homePhone: +1 206 692-1406 -initials: F. U. -mobile: +1 206 414-7783 -pager: +1 206 317-5673 -roomNumber: 8177 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mina ODonnell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mina ODonnell -sn: ODonnell -description: This is Mina ODonnell's description -facsimileTelephoneNumber: +1 510 119-4524 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 673-7154 -title: Junior Payroll Grunt -userPassword: Password1 -uid: ODonnelM -givenName: Mina -mail: ODonnelM@10c4772e07c4416b983baf85665d30de.bitwarden.com -carLicense: 2L0IU1 -departmentNumber: 8576 -employeeType: Employee -homePhone: +1 510 143-6880 -initials: M. O. -mobile: +1 510 867-5691 -pager: +1 510 349-3609 -roomNumber: 9048 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tetsumo Kempffer -sn: Kempffer -description: This is Tetsumo Kempffer's description -facsimileTelephoneNumber: +1 408 290-1131 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 538-3416 -title: Master Product Development President -userPassword: Password1 -uid: KempffeT -givenName: Tetsumo -mail: KempffeT@85b8ed1ad5b644cfbbbf9dc62daad7fc.bitwarden.com -carLicense: 33R7LX -departmentNumber: 4683 -employeeType: Employee -homePhone: +1 408 468-7084 -initials: T. K. -mobile: +1 408 103-7501 -pager: +1 408 492-8456 -roomNumber: 8263 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rubie Suddarth,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rubie Suddarth -sn: Suddarth -description: This is Rubie Suddarth's description -facsimileTelephoneNumber: +1 408 179-2469 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 533-6994 -title: Associate Payroll Stooge -userPassword: Password1 -uid: SuddartR -givenName: Rubie -mail: SuddartR@8af6d39064bb46a9ba4daa83c54c62c1.bitwarden.com -carLicense: VODKM5 -departmentNumber: 2644 -employeeType: Contract -homePhone: +1 408 742-2837 -initials: R. S. -mobile: +1 408 549-8302 -pager: +1 408 371-6275 -roomNumber: 9016 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fanchette Felli,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fanchette Felli -sn: Felli -description: This is Fanchette Felli's description -facsimileTelephoneNumber: +1 408 490-8913 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 358-9658 -title: Master Administrative Figurehead -userPassword: Password1 -uid: FelliF -givenName: Fanchette -mail: FelliF@5256d716dc394c1f919ed3450fa1ea97.bitwarden.com -carLicense: AQIC5P -departmentNumber: 2251 -employeeType: Employee -homePhone: +1 408 648-2809 -initials: F. F. -mobile: +1 408 737-4884 -pager: +1 408 788-4178 -roomNumber: 9414 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dorry Livshits,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorry Livshits -sn: Livshits -description: This is Dorry Livshits's description -facsimileTelephoneNumber: +1 818 980-8135 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 913-6298 -title: Supreme Payroll President -userPassword: Password1 -uid: LivshitD -givenName: Dorry -mail: LivshitD@6dd87ab9e5af49468fc97aebdbd7b449.bitwarden.com -carLicense: KWUT2I -departmentNumber: 1756 -employeeType: Normal -homePhone: +1 818 601-5740 -initials: D. L. -mobile: +1 818 913-7121 -pager: +1 818 881-2419 -roomNumber: 8675 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Merle Turchan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merle Turchan -sn: Turchan -description: This is Merle Turchan's description -facsimileTelephoneNumber: +1 804 458-4416 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 668-8378 -title: Junior Administrative Admin -userPassword: Password1 -uid: TurchanM -givenName: Merle -mail: TurchanM@d498c0edfe624410b23b0178f9f7f2c0.bitwarden.com -carLicense: 7Q85FO -departmentNumber: 4428 -employeeType: Employee -homePhone: +1 804 739-5885 -initials: M. T. -mobile: +1 804 775-7182 -pager: +1 804 252-3147 -roomNumber: 9023 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Achal Blann,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Achal Blann -sn: Blann -description: This is Achal Blann's description -facsimileTelephoneNumber: +1 408 489-4804 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 408 274-6064 -title: Junior Peons Evangelist -userPassword: Password1 -uid: BlannA -givenName: Achal -mail: BlannA@a081497caeb44f8587c4809a817c9728.bitwarden.com -carLicense: 9MDGEW -departmentNumber: 5945 -employeeType: Contract -homePhone: +1 408 303-4899 -initials: A. B. -mobile: +1 408 983-8561 -pager: +1 408 499-6940 -roomNumber: 9636 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marty Barr,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marty Barr -sn: Barr -description: This is Marty Barr's description -facsimileTelephoneNumber: +1 408 342-5851 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 408 249-8992 -title: Master Management Fellow -userPassword: Password1 -uid: BarrM -givenName: Marty -mail: BarrM@fad13712be524b2bb53fd1f676c9976a.bitwarden.com -carLicense: B4BDMS -departmentNumber: 8522 -employeeType: Employee -homePhone: +1 408 169-8600 -initials: M. B. -mobile: +1 408 581-1020 -pager: +1 408 740-5040 -roomNumber: 8499 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lilin Tisdall,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lilin Tisdall -sn: Tisdall -description: This is Lilin Tisdall's description -facsimileTelephoneNumber: +1 804 466-8101 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 804 134-1272 -title: Master Peons Evangelist -userPassword: Password1 -uid: TisdallL -givenName: Lilin -mail: TisdallL@f07be15577e54b07aaf9ccc18f458690.bitwarden.com -carLicense: K2M5QW -departmentNumber: 7405 -employeeType: Normal -homePhone: +1 804 510-3159 -initials: L. T. -mobile: +1 804 947-4132 -pager: +1 804 807-8579 -roomNumber: 8342 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jonie Cherrier -sn: Cherrier -description: This is Jonie Cherrier's description -facsimileTelephoneNumber: +1 510 239-6087 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 372-5922 -title: Chief Janitorial Figurehead -userPassword: Password1 -uid: CherrieJ -givenName: Jonie -mail: CherrieJ@713ec84902e3407ea7c47d43e09273a9.bitwarden.com -carLicense: 7B9VAD -departmentNumber: 3116 -employeeType: Contract -homePhone: +1 510 880-5359 -initials: J. C. -mobile: +1 510 627-5282 -pager: +1 510 290-5356 -roomNumber: 9747 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silvana CraigDupuis -sn: CraigDupuis -description: This is Silvana CraigDupuis's description -facsimileTelephoneNumber: +1 213 624-4680 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 186-1826 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: CraigDuS -givenName: Silvana -mail: CraigDuS@25e344e508194d148c2480fc79febf41.bitwarden.com -carLicense: 58XH54 -departmentNumber: 3219 -employeeType: Normal -homePhone: +1 213 538-1752 -initials: S. C. -mobile: +1 213 689-8187 -pager: +1 213 298-3248 -roomNumber: 9457 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Camille Seddigh,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camille Seddigh -sn: Seddigh -description: This is Camille Seddigh's description -facsimileTelephoneNumber: +1 510 790-8327 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 510 482-8615 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: SeddighC -givenName: Camille -mail: SeddighC@248fbbdd5e2b4efdbf1ff86927aed801.bitwarden.com -carLicense: 6H873D -departmentNumber: 4675 -employeeType: Normal -homePhone: +1 510 891-2998 -initials: C. S. -mobile: +1 510 707-4277 -pager: +1 510 961-1336 -roomNumber: 8814 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shirene Eaves,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Manon Swinamer,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manon Swinamer -sn: Swinamer -description: This is Manon Swinamer's description -facsimileTelephoneNumber: +1 408 252-1207 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 681-5891 -title: Supreme Janitorial Developer -userPassword: Password1 -uid: SwinameM -givenName: Manon -mail: SwinameM@f2546b85540e458c8c528fab744261e5.bitwarden.com -carLicense: 302I0B -departmentNumber: 3697 -employeeType: Normal -homePhone: +1 408 695-2845 -initials: M. S. -mobile: +1 408 471-4292 -pager: +1 408 234-9158 -roomNumber: 8891 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margarette Cutrufello -sn: Cutrufello -description: This is Margarette Cutrufello's description -facsimileTelephoneNumber: +1 415 735-2475 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 627-1115 -title: Master Human Resources Writer -userPassword: Password1 -uid: CutrufeM -givenName: Margarette -mail: CutrufeM@a31aed5cfdcb4194bc94b7ef44927e93.bitwarden.com -carLicense: 9U0KOU -departmentNumber: 5333 -employeeType: Normal -homePhone: +1 415 343-5726 -initials: M. C. -mobile: +1 415 713-8138 -pager: +1 415 978-5440 -roomNumber: 9755 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marci Uludamar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marci Uludamar -sn: Uludamar -description: This is Marci Uludamar's description -facsimileTelephoneNumber: +1 206 345-6420 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 206 840-9483 -title: Junior Janitorial Director -userPassword: Password1 -uid: UludamaM -givenName: Marci -mail: UludamaM@28fca843a5ae4175b7bbc20728951453.bitwarden.com -carLicense: 1QXSXS -departmentNumber: 1456 -employeeType: Contract -homePhone: +1 206 134-6881 -initials: M. U. -mobile: +1 206 839-6635 -pager: +1 206 285-9057 -roomNumber: 8958 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marcel Mathiue,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcel Mathiue -sn: Mathiue -description: This is Marcel Mathiue's description -facsimileTelephoneNumber: +1 213 554-4785 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 658-4104 -title: Junior Management Admin -userPassword: Password1 -uid: MathiueM -givenName: Marcel -mail: MathiueM@a5f4802ff3844a6da03607a2952d6142.bitwarden.com -carLicense: R5QXKH -departmentNumber: 8993 -employeeType: Normal -homePhone: +1 213 521-4478 -initials: M. M. -mobile: +1 213 924-9208 -pager: +1 213 198-1091 -roomNumber: 9068 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Clementina Salkilld,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clementina Salkilld -sn: Salkilld -description: This is Clementina Salkilld's description -facsimileTelephoneNumber: +1 818 491-4916 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 818 590-2151 -title: Junior Peons Director -userPassword: Password1 -uid: SalkillC -givenName: Clementina -mail: SalkillC@5cc175e484e84097b7cd2f4f59476a94.bitwarden.com -carLicense: BNA69C -departmentNumber: 7521 -employeeType: Employee -homePhone: +1 818 575-9169 -initials: C. S. -mobile: +1 818 495-7595 -pager: +1 818 404-7485 -roomNumber: 9368 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaquith Tatangsurja -sn: Tatangsurja -description: This is Jaquith Tatangsurja's description -facsimileTelephoneNumber: +1 804 261-9976 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 804 538-8620 -title: Chief Peons Figurehead -userPassword: Password1 -uid: TatangsJ -givenName: Jaquith -mail: TatangsJ@8cfe11654a1f4bcf872e901116f7b350.bitwarden.com -carLicense: VFOV7U -departmentNumber: 6977 -employeeType: Employee -homePhone: +1 804 491-7337 -initials: J. T. -mobile: +1 804 282-2972 -pager: +1 804 128-6711 -roomNumber: 8542 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gertrudis Zahn,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertrudis Zahn -sn: Zahn -description: This is Gertrudis Zahn's description -facsimileTelephoneNumber: +1 510 941-1732 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 510 103-8324 -title: Chief Peons Artist -userPassword: Password1 -uid: ZahnG -givenName: Gertrudis -mail: ZahnG@643babc725854db49eed6fbb3cc528c1.bitwarden.com -carLicense: YJ858E -departmentNumber: 9514 -employeeType: Employee -homePhone: +1 510 881-2877 -initials: G. Z. -mobile: +1 510 157-4317 -pager: +1 510 481-7877 -roomNumber: 9278 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jere Forghani,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jere Forghani -sn: Forghani -description: This is Jere Forghani's description -facsimileTelephoneNumber: +1 213 993-9640 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 993-9868 -title: Supreme Product Development Director -userPassword: Password1 -uid: ForghanJ -givenName: Jere -mail: ForghanJ@0402555d9f67459e90e5fb987f132859.bitwarden.com -carLicense: LUMGJD -departmentNumber: 7086 -employeeType: Contract -homePhone: +1 213 525-9252 -initials: J. F. -mobile: +1 213 669-1467 -pager: +1 213 207-8635 -roomNumber: 8900 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nakina Pezzullo -sn: Pezzullo -description: This is Nakina Pezzullo's description -facsimileTelephoneNumber: +1 415 836-8526 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 415 332-8175 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: PezzullN -givenName: Nakina -mail: PezzullN@6de6b96b53bf450ebd85b6259dd56653.bitwarden.com -carLicense: SD49Q6 -departmentNumber: 6731 -employeeType: Contract -homePhone: +1 415 723-6470 -initials: N. P. -mobile: +1 415 639-2494 -pager: +1 415 643-2280 -roomNumber: 8091 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gilemette Dellinger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilemette Dellinger -sn: Dellinger -description: This is Gilemette Dellinger's description -facsimileTelephoneNumber: +1 804 525-9898 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 804 128-7631 -title: Supreme Peons Warrior -userPassword: Password1 -uid: DellingG -givenName: Gilemette -mail: DellingG@9dc5f26c8d604d308d7d70d0272f1d88.bitwarden.com -carLicense: 7A1F3K -departmentNumber: 3590 -employeeType: Normal -homePhone: +1 804 799-3288 -initials: G. D. -mobile: +1 804 822-8249 -pager: +1 804 671-8262 -roomNumber: 9097 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Magdalene Byers,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdalene Byers -sn: Byers -description: This is Magdalene Byers's description -facsimileTelephoneNumber: +1 415 588-3685 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 415 618-8214 -title: Supreme Product Development Stooge -userPassword: Password1 -uid: ByersM -givenName: Magdalene -mail: ByersM@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com -carLicense: D0EOFN -departmentNumber: 6930 -employeeType: Employee -homePhone: +1 415 364-7978 -initials: M. B. -mobile: +1 415 115-6237 -pager: +1 415 427-5404 -roomNumber: 8996 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwenette Zagrodney -sn: Zagrodney -description: This is Gwenette Zagrodney's description -facsimileTelephoneNumber: +1 510 510-6740 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 617-9402 -title: Supreme Administrative Artist -userPassword: Password1 -uid: ZagrodnG -givenName: Gwenette -mail: ZagrodnG@1b5833345bfe4fbbb19ff2ae67a5a60b.bitwarden.com -carLicense: KL16EJ -departmentNumber: 8807 -employeeType: Normal -homePhone: +1 510 583-7857 -initials: G. Z. -mobile: +1 510 148-1956 -pager: +1 510 676-7304 -roomNumber: 9848 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Parnell Hamlin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parnell Hamlin -sn: Hamlin -description: This is Parnell Hamlin's description -facsimileTelephoneNumber: +1 206 833-7390 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 180-4014 -title: Junior Payroll Janitor -userPassword: Password1 -uid: HamlinP -givenName: Parnell -mail: HamlinP@ecca4a8cb1474812a6ec4a57737ddfaf.bitwarden.com -carLicense: 4C28BL -departmentNumber: 6427 -employeeType: Normal -homePhone: +1 206 281-8953 -initials: P. H. -mobile: +1 206 151-2577 -pager: +1 206 972-1527 -roomNumber: 9132 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nath Popovich,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nath Popovich -sn: Popovich -description: This is Nath Popovich's description -facsimileTelephoneNumber: +1 408 136-8145 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 736-4513 -title: Master Product Testing Assistant -userPassword: Password1 -uid: PopovicN -givenName: Nath -mail: PopovicN@714efec96f8a44d68fc31297a56f7cd6.bitwarden.com -carLicense: X1HFSN -departmentNumber: 6350 -employeeType: Contract -homePhone: +1 408 787-9734 -initials: N. P. -mobile: +1 408 574-9100 -pager: +1 408 610-3375 -roomNumber: 8187 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Patch Lassonde,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patch Lassonde -sn: Lassonde -description: This is Patch Lassonde's description -facsimileTelephoneNumber: +1 213 882-3875 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 128-7202 -title: Chief Peons Architect -userPassword: Password1 -uid: LassondP -givenName: Patch -mail: LassondP@fac421ca650e46139878bbd5f7498e19.bitwarden.com -carLicense: 5JOG72 -departmentNumber: 1990 -employeeType: Normal -homePhone: +1 213 441-7145 -initials: P. L. -mobile: +1 213 648-3805 -pager: +1 213 379-7945 -roomNumber: 9474 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charmain VanBenthem -sn: VanBenthem -description: This is Charmain VanBenthem's description -facsimileTelephoneNumber: +1 408 204-9965 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 787-9093 -title: Junior Administrative Manager -userPassword: Password1 -uid: VanBentC -givenName: Charmain -mail: VanBentC@6530bd09dbf540aea0b4eb735de3f457.bitwarden.com -carLicense: PB7ESF -departmentNumber: 9031 -employeeType: Employee -homePhone: +1 408 230-7187 -initials: C. V. -mobile: +1 408 210-7928 -pager: +1 408 765-7532 -roomNumber: 8566 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nata Corse,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nata Corse -sn: Corse -description: This is Nata Corse's description -facsimileTelephoneNumber: +1 415 445-3546 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 538-1395 -title: Associate Janitorial Pinhead -userPassword: Password1 -uid: CorseN -givenName: Nata -mail: CorseN@5810f4b0e0144582bc97026bbf289a58.bitwarden.com -carLicense: GQPJ0W -departmentNumber: 8310 -employeeType: Normal -homePhone: +1 415 455-9997 -initials: N. C. -mobile: +1 415 257-1095 -pager: +1 415 793-9023 -roomNumber: 9100 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marj Npi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marj Npi -sn: Npi -description: This is Marj Npi's description -facsimileTelephoneNumber: +1 804 692-3934 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 913-3360 -title: Junior Payroll Assistant -userPassword: Password1 -uid: NpiM -givenName: Marj -mail: NpiM@479b3e4b55a5494fbabf2926242184e6.bitwarden.com -carLicense: JRJV9E -departmentNumber: 4031 -employeeType: Normal -homePhone: +1 804 154-9568 -initials: M. N. -mobile: +1 804 778-1794 -pager: +1 804 872-7670 -roomNumber: 8581 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosemonde Kawamura -sn: Kawamura -description: This is Rosemonde Kawamura's description -facsimileTelephoneNumber: +1 408 943-7365 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 408 235-2122 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: KawamurR -givenName: Rosemonde -mail: KawamurR@fbef9109d3fa45f28a2fe6e9e57320c7.bitwarden.com -carLicense: WLCD2V -departmentNumber: 7991 -employeeType: Normal -homePhone: +1 408 251-1538 -initials: R. K. -mobile: +1 408 894-6698 -pager: +1 408 765-1836 -roomNumber: 9991 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Emery Daoust,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emery Daoust -sn: Daoust -description: This is Emery Daoust's description -facsimileTelephoneNumber: +1 510 303-3766 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 355-8760 -title: Associate Peons Sales Rep -userPassword: Password1 -uid: DaoustE -givenName: Emery -mail: DaoustE@3b0207fba5944fd0a6dca16921952a03.bitwarden.com -carLicense: B1VJ7E -departmentNumber: 3965 -employeeType: Employee -homePhone: +1 510 114-1916 -initials: E. D. -mobile: +1 510 330-3411 -pager: +1 510 915-3977 -roomNumber: 8218 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryon Valko,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Danya Prasada,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danya Prasada -sn: Prasada -description: This is Danya Prasada's description -facsimileTelephoneNumber: +1 213 250-9165 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 424-7980 -title: Associate Product Testing Writer -userPassword: Password1 -uid: PrasadaD -givenName: Danya -mail: PrasadaD@6b1f85dcb6764cc8ada9b5557877a02d.bitwarden.com -carLicense: MKK7LR -departmentNumber: 4694 -employeeType: Employee -homePhone: +1 213 696-9410 -initials: D. P. -mobile: +1 213 473-4982 -pager: +1 213 328-8625 -roomNumber: 8450 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Partha Blackman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Partha Blackman -sn: Blackman -description: This is Partha Blackman's description -facsimileTelephoneNumber: +1 804 201-6164 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 842-4635 -title: Master Payroll Visionary -userPassword: Password1 -uid: BlackmaP -givenName: Partha -mail: BlackmaP@c44cf57c7e494ab8a133e7f2a6a02284.bitwarden.com -carLicense: JJY31L -departmentNumber: 6357 -employeeType: Employee -homePhone: +1 804 869-9181 -initials: P. B. -mobile: +1 804 164-1998 -pager: +1 804 721-5746 -roomNumber: 8724 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Florette Shemwell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florette Shemwell -sn: Shemwell -description: This is Florette Shemwell's description -facsimileTelephoneNumber: +1 804 793-8206 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 241-6234 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: ShemwelF -givenName: Florette -mail: ShemwelF@c0d5947f2ac7414c9a231d1b93a98940.bitwarden.com -carLicense: 1GSBL0 -departmentNumber: 9594 -employeeType: Employee -homePhone: +1 804 864-7704 -initials: F. S. -mobile: +1 804 316-5827 -pager: +1 804 783-1720 -roomNumber: 9435 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilliard Weeks -sn: Weeks -description: This is Hilliard Weeks's description -facsimileTelephoneNumber: +1 415 623-8286 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 789-2949 -title: Chief Product Testing Director -userPassword: Password1 -uid: WeeksH -givenName: Hilliard -mail: WeeksH@c303add5409e4b2ca1508fde8a7014b9.bitwarden.com -carLicense: QQ0FM6 -departmentNumber: 8461 -employeeType: Employee -homePhone: +1 415 935-1514 -initials: H. W. -mobile: +1 415 780-2304 -pager: +1 415 253-1549 -roomNumber: 9164 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnnMarie Dreisbach -sn: Dreisbach -description: This is AnnMarie Dreisbach's description -facsimileTelephoneNumber: +1 415 589-8688 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 124-8318 -title: Master Payroll Technician -userPassword: Password1 -uid: DreisbaA -givenName: AnnMarie -mail: DreisbaA@a7879a3db49d425f8293a2b2d51d5b86.bitwarden.com -carLicense: NBOAYQ -departmentNumber: 3373 -employeeType: Contract -homePhone: +1 415 230-6565 -initials: A. D. -mobile: +1 415 349-2397 -pager: +1 415 356-1876 -roomNumber: 8060 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Abagael Zattiero,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abagael Zattiero -sn: Zattiero -description: This is Abagael Zattiero's description -facsimileTelephoneNumber: +1 213 926-5952 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 213 857-7852 -title: Supreme Management Visionary -userPassword: Password1 -uid: ZattierA -givenName: Abagael -mail: ZattierA@972cbc7b1e734ef69ec2cf84c21cdb8e.bitwarden.com -carLicense: 2XCOFC -departmentNumber: 9166 -employeeType: Contract -homePhone: +1 213 883-4231 -initials: A. Z. -mobile: +1 213 107-5514 -pager: +1 213 354-4827 -roomNumber: 9862 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mardi Lowder,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mardi Lowder -sn: Lowder -description: This is Mardi Lowder's description -facsimileTelephoneNumber: +1 213 377-6244 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 213 648-8396 -title: Junior Human Resources President -userPassword: Password1 -uid: LowderM -givenName: Mardi -mail: LowderM@d624fb65c7214c7bb843b6ea68ab9b4a.bitwarden.com -carLicense: 1YGOF3 -departmentNumber: 8186 -employeeType: Employee -homePhone: +1 213 654-4600 -initials: M. L. -mobile: +1 213 442-3236 -pager: +1 213 196-6988 -roomNumber: 9257 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Euphemia Kalechstein -sn: Kalechstein -description: This is Euphemia Kalechstein's description -facsimileTelephoneNumber: +1 818 548-3694 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 818 461-7315 -title: Chief Payroll Warrior -userPassword: Password1 -uid: KalechsE -givenName: Euphemia -mail: KalechsE@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com -carLicense: S2JIP1 -departmentNumber: 3078 -employeeType: Normal -homePhone: +1 818 413-8320 -initials: E. K. -mobile: +1 818 591-8951 -pager: +1 818 573-7224 -roomNumber: 9970 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mercy Steranka,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mercy Steranka -sn: Steranka -description: This is Mercy Steranka's description -facsimileTelephoneNumber: +1 818 824-8064 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 818 639-2653 -title: Supreme Management Writer -userPassword: Password1 -uid: SterankM -givenName: Mercy -mail: SterankM@772e8e157e064d01bd5516f96a40fa60.bitwarden.com -carLicense: BEJ8N8 -departmentNumber: 9340 -employeeType: Employee -homePhone: +1 818 340-2625 -initials: M. S. -mobile: +1 818 383-2210 -pager: +1 818 445-2897 -roomNumber: 9917 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pramod Scherbinsky -sn: Scherbinsky -description: This is Pramod Scherbinsky's description -facsimileTelephoneNumber: +1 804 954-5304 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 719-1718 -title: Associate Administrative Mascot -userPassword: Password1 -uid: ScherbiP -givenName: Pramod -mail: ScherbiP@df17bef8c1b54142a20c32df0ed28190.bitwarden.com -carLicense: L1IUCM -departmentNumber: 3227 -employeeType: Contract -homePhone: +1 804 962-3599 -initials: P. S. -mobile: +1 804 146-3611 -pager: +1 804 267-2022 -roomNumber: 8436 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurelea Srikrishna -sn: Srikrishna -description: This is Aurelea Srikrishna's description -facsimileTelephoneNumber: +1 510 618-8167 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 394-8609 -title: Chief Product Testing Admin -userPassword: Password1 -uid: SrikrisA -givenName: Aurelea -mail: SrikrisA@407a8845f0a44578b9efb43e7405efd9.bitwarden.com -carLicense: 10T2XA -departmentNumber: 5962 -employeeType: Employee -homePhone: +1 510 668-8828 -initials: A. S. -mobile: +1 510 680-3144 -pager: +1 510 367-7489 -roomNumber: 9432 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Catja Josiah,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Catja Josiah -sn: Josiah -description: This is Catja Josiah's description -facsimileTelephoneNumber: +1 213 270-9317 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 213 728-3453 -title: Associate Administrative Architect -userPassword: Password1 -uid: JosiahC -givenName: Catja -mail: JosiahC@623d62a2d1154923b1c9152d9f2876da.bitwarden.com -carLicense: T4VE33 -departmentNumber: 6849 -employeeType: Contract -homePhone: +1 213 572-7454 -initials: C. J. -mobile: +1 213 245-8171 -pager: +1 213 667-2905 -roomNumber: 9611 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marlena Rickey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marlena Rickey -sn: Rickey -description: This is Marlena Rickey's description -facsimileTelephoneNumber: +1 804 754-9807 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 804 232-8602 -title: Chief Administrative Madonna -userPassword: Password1 -uid: RickeyM -givenName: Marlena -mail: RickeyM@b60e4ba7e4ea41b7aff4212cdb1e99c6.bitwarden.com -carLicense: WVB46A -departmentNumber: 9205 -employeeType: Normal -homePhone: +1 804 137-6360 -initials: M. R. -mobile: +1 804 494-5259 -pager: +1 804 212-2429 -roomNumber: 9208 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadru Ueyama -sn: Ueyama -description: This is Sadru Ueyama's description -facsimileTelephoneNumber: +1 206 114-2996 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 316-4977 -title: Master Product Testing Artist -userPassword: Password1 -uid: UeyamaS -givenName: Sadru -mail: UeyamaS@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com -carLicense: FVDGLY -departmentNumber: 8376 -employeeType: Normal -homePhone: +1 206 142-9027 -initials: S. U. -mobile: +1 206 841-4260 -pager: +1 206 478-1382 -roomNumber: 9228 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shandee Reno,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shandee Reno -sn: Reno -description: This is Shandee Reno's description -facsimileTelephoneNumber: +1 206 746-4283 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 721-9138 -title: Junior Product Development Artist -userPassword: Password1 -uid: RenoS -givenName: Shandee -mail: RenoS@a04d0222f0c24ad6848955600bad7ace.bitwarden.com -carLicense: BMNMV7 -departmentNumber: 1415 -employeeType: Normal -homePhone: +1 206 172-7201 -initials: S. R. -mobile: +1 206 469-7137 -pager: +1 206 330-8986 -roomNumber: 9803 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Didani Nakhoul -sn: Nakhoul -description: This is Didani Nakhoul's description -facsimileTelephoneNumber: +1 408 443-7751 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 408 101-3710 -title: Associate Human Resources Czar -userPassword: Password1 -uid: NakhoulD -givenName: Didani -mail: NakhoulD@9ad96ae4214c429c98f90a76404682a2.bitwarden.com -carLicense: L5DHVQ -departmentNumber: 7850 -employeeType: Contract -homePhone: +1 408 944-4209 -initials: D. N. -mobile: +1 408 945-7958 -pager: +1 408 128-6327 -roomNumber: 8367 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Silva Connolly,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silva Connolly -sn: Connolly -description: This is Silva Connolly's description -facsimileTelephoneNumber: +1 206 666-3166 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 206 989-4082 -title: Junior Administrative Grunt -userPassword: Password1 -uid: ConnollS -givenName: Silva -mail: ConnollS@2050a6c4c8e746ae88bec9f7634b8d59.bitwarden.com -carLicense: UKF7OM -departmentNumber: 5640 -employeeType: Employee -homePhone: +1 206 912-6960 -initials: S. C. -mobile: +1 206 702-5137 -pager: +1 206 489-2643 -roomNumber: 8896 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Iwan Theriot,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Iwan Theriot -sn: Theriot -description: This is Iwan Theriot's description -facsimileTelephoneNumber: +1 818 326-1564 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 611-8727 -title: Master Human Resources Developer -userPassword: Password1 -uid: TheriotI -givenName: Iwan -mail: TheriotI@ac2881cfd212410799e38769b052602b.bitwarden.com -carLicense: Y79LXP -departmentNumber: 2339 -employeeType: Employee -homePhone: +1 818 626-9937 -initials: I. T. -mobile: +1 818 257-9994 -pager: +1 818 240-9099 -roomNumber: 8620 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rejeanne Etu -sn: Etu -description: This is Rejeanne Etu's description -facsimileTelephoneNumber: +1 206 876-7173 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 664-7958 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: EtuR -givenName: Rejeanne -mail: EtuR@ff44921ff72348599ae7fe837a40ec13.bitwarden.com -carLicense: D911DP -departmentNumber: 7288 -employeeType: Contract -homePhone: +1 206 504-4391 -initials: R. E. -mobile: +1 206 808-9152 -pager: +1 206 951-4934 -roomNumber: 9099 -manager: cn=Amata Boles,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roddy Mikulka -sn: Mikulka -description: This is Roddy Mikulka's description -facsimileTelephoneNumber: +1 818 127-6131 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 220-1225 -title: Associate Human Resources Director -userPassword: Password1 -uid: MikulkaR -givenName: Roddy -mail: MikulkaR@9cbd4c37891849299ce4208e274287c6.bitwarden.com -carLicense: KLNNNN -departmentNumber: 4247 -employeeType: Employee -homePhone: +1 818 871-4850 -initials: R. M. -mobile: +1 818 241-7892 -pager: +1 818 826-4556 -roomNumber: 9368 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Emerson Terminals,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emerson Terminals -sn: Terminals -description: This is Emerson Terminals's description -facsimileTelephoneNumber: +1 510 756-5654 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 391-8592 -title: Supreme Payroll Director -userPassword: Password1 -uid: TerminaE -givenName: Emerson -mail: TerminaE@e5fdd3d67af74cde904584628c237f35.bitwarden.com -carLicense: XDKEME -departmentNumber: 7526 -employeeType: Employee -homePhone: +1 510 305-3693 -initials: E. T. -mobile: +1 510 566-2021 -pager: +1 510 551-6734 -roomNumber: 8091 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrzej Moskalik -sn: Moskalik -description: This is Andrzej Moskalik's description -facsimileTelephoneNumber: +1 804 757-7883 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 294-9844 -title: Chief Product Testing Admin -userPassword: Password1 -uid: MoskaliA -givenName: Andrzej -mail: MoskaliA@ff9d2c9dbee641ab8637fbbd354b62f4.bitwarden.com -carLicense: YP6CS7 -departmentNumber: 6057 -employeeType: Employee -homePhone: +1 804 205-2085 -initials: A. M. -mobile: +1 804 790-3210 -pager: +1 804 607-9634 -roomNumber: 9829 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vannie Mallozzi -sn: Mallozzi -description: This is Vannie Mallozzi's description -facsimileTelephoneNumber: +1 408 347-2988 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 755-8126 -title: Supreme Product Testing Evangelist -userPassword: Password1 -uid: MallozzV -givenName: Vannie -mail: MallozzV@09cbaaa2d7a142c9854868c3f613dfe5.bitwarden.com -carLicense: RHGLXA -departmentNumber: 7680 -employeeType: Contract -homePhone: +1 408 883-2358 -initials: V. M. -mobile: +1 408 756-5309 -pager: +1 408 413-5930 -roomNumber: 9122 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivyan Woolley -sn: Woolley -description: This is Vivyan Woolley's description -facsimileTelephoneNumber: +1 408 545-2649 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 745-2248 -title: Junior Human Resources Visionary -userPassword: Password1 -uid: WoolleyV -givenName: Vivyan -mail: WoolleyV@84b57e0771b643809ac58933f98cbf52.bitwarden.com -carLicense: MMHF50 -departmentNumber: 9426 -employeeType: Employee -homePhone: +1 408 550-2304 -initials: V. W. -mobile: +1 408 828-5597 -pager: +1 408 317-7342 -roomNumber: 9288 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jude Venguswamy -sn: Venguswamy -description: This is Jude Venguswamy's description -facsimileTelephoneNumber: +1 415 375-1380 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 415 506-2329 -title: Chief Human Resources Pinhead -userPassword: Password1 -uid: VenguswJ -givenName: Jude -mail: VenguswJ@99364e00956b4bfea4a43b7bb289f754.bitwarden.com -carLicense: 08I0Y8 -departmentNumber: 3655 -employeeType: Employee -homePhone: +1 415 284-2701 -initials: J. V. -mobile: +1 415 330-4182 -pager: +1 415 277-7961 -roomNumber: 9559 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Felicdad Popela,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felicdad Popela -sn: Popela -description: This is Felicdad Popela's description -facsimileTelephoneNumber: +1 415 356-1116 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 384-8325 -title: Junior Administrative Grunt -userPassword: Password1 -uid: PopelaF -givenName: Felicdad -mail: PopelaF@55d3abf188cf489e982ee3fc8f3c0c3d.bitwarden.com -carLicense: HAQ5FI -departmentNumber: 1628 -employeeType: Employee -homePhone: +1 415 920-6958 -initials: F. P. -mobile: +1 415 978-9670 -pager: +1 415 983-7627 -roomNumber: 9347 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Himanshu Zahn,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Himanshu Zahn -sn: Zahn -description: This is Himanshu Zahn's description -facsimileTelephoneNumber: +1 510 234-1007 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 177-8013 -title: Junior Peons Czar -userPassword: Password1 -uid: ZahnH -givenName: Himanshu -mail: ZahnH@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com -carLicense: N9W6LK -departmentNumber: 9802 -employeeType: Normal -homePhone: +1 510 766-3065 -initials: H. Z. -mobile: +1 510 850-6018 -pager: +1 510 857-4602 -roomNumber: 8524 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Luisa Legros,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luisa Legros -sn: Legros -description: This is Luisa Legros's description -facsimileTelephoneNumber: +1 415 836-7439 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 595-9016 -title: Junior Product Testing Admin -userPassword: Password1 -uid: LegrosL -givenName: Luisa -mail: LegrosL@6e3b6563cdc44f58b3c72f890bc814e3.bitwarden.com -carLicense: 0OBYIR -departmentNumber: 1513 -employeeType: Contract -homePhone: +1 415 297-8541 -initials: L. L. -mobile: +1 415 894-3064 -pager: +1 415 129-7506 -roomNumber: 9526 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Brenn Thedford,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brenn Thedford -sn: Thedford -description: This is Brenn Thedford's description -facsimileTelephoneNumber: +1 804 158-2028 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 804 727-7346 -title: Master Peons Evangelist -userPassword: Password1 -uid: ThedforB -givenName: Brenn -mail: ThedforB@4831c314a96e4dc2a8c277ec349e694c.bitwarden.com -carLicense: 5WI6YA -departmentNumber: 2161 -employeeType: Contract -homePhone: +1 804 309-7047 -initials: B. T. -mobile: +1 804 814-8572 -pager: +1 804 382-1767 -roomNumber: 9221 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Albina Kruusement,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Albina Kruusement -sn: Kruusement -description: This is Albina Kruusement's description -facsimileTelephoneNumber: +1 510 931-6269 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 510 426-3331 -title: Master Peons Visionary -userPassword: Password1 -uid: KruusemA -givenName: Albina -mail: KruusemA@42f51a65b1584dbea4e8a6daf5a3f864.bitwarden.com -carLicense: QRLH3W -departmentNumber: 1810 -employeeType: Contract -homePhone: +1 510 399-2240 -initials: A. K. -mobile: +1 510 173-3282 -pager: +1 510 860-2741 -roomNumber: 8900 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yueping Yamada,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yueping Yamada -sn: Yamada -description: This is Yueping Yamada's description -facsimileTelephoneNumber: +1 213 772-3542 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 465-7261 -title: Supreme Human Resources Artist -userPassword: Password1 -uid: YamadaY -givenName: Yueping -mail: YamadaY@c23d2b465eec4405a3a69954d418e742.bitwarden.com -carLicense: CCL4DM -departmentNumber: 6192 -employeeType: Contract -homePhone: +1 213 570-4156 -initials: Y. Y. -mobile: +1 213 571-6192 -pager: +1 213 428-5401 -roomNumber: 8392 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Belvia Abbott,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belvia Abbott -sn: Abbott -description: This is Belvia Abbott's description -facsimileTelephoneNumber: +1 804 627-8363 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 804 505-9624 -title: Junior Product Development Grunt -userPassword: Password1 -uid: AbbottB -givenName: Belvia -mail: AbbottB@fc560954a9334e018a537b8d2963deee.bitwarden.com -carLicense: H5YXGL -departmentNumber: 6311 -employeeType: Employee -homePhone: +1 804 496-1759 -initials: B. A. -mobile: +1 804 507-5721 -pager: +1 804 895-8853 -roomNumber: 9176 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Seyma Currier,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seyma Currier -sn: Currier -description: This is Seyma Currier's description -facsimileTelephoneNumber: +1 804 534-9655 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 565-8539 -title: Junior Administrative Artist -userPassword: Password1 -uid: CurrierS -givenName: Seyma -mail: CurrierS@4d4fe6f945794c9fafed4fdb31a8162b.bitwarden.com -carLicense: QC5YW1 -departmentNumber: 9005 -employeeType: Normal -homePhone: +1 804 188-1382 -initials: S. C. -mobile: +1 804 630-7959 -pager: +1 804 517-7409 -roomNumber: 9412 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Derrik Steede,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Derrik Steede -sn: Steede -description: This is Derrik Steede's description -facsimileTelephoneNumber: +1 804 612-4231 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 128-7687 -title: Associate Management President -userPassword: Password1 -uid: SteedeD -givenName: Derrik -mail: SteedeD@e637a483d18442128d105a67f1ef62ac.bitwarden.com -carLicense: 7OKW6C -departmentNumber: 3238 -employeeType: Employee -homePhone: +1 804 305-2001 -initials: D. S. -mobile: +1 804 790-9262 -pager: +1 804 789-5679 -roomNumber: 9987 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Starla OFarrell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Starla OFarrell -sn: OFarrell -description: This is Starla OFarrell's description -facsimileTelephoneNumber: +1 206 899-7088 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 700-7116 -title: Master Human Resources Punk -userPassword: Password1 -uid: OFarrelS -givenName: Starla -mail: OFarrelS@a922ba05488e401e9633fbd1813d714f.bitwarden.com -carLicense: 0WAC0E -departmentNumber: 3261 -employeeType: Contract -homePhone: +1 206 926-3515 -initials: S. O. -mobile: +1 206 726-5184 -pager: +1 206 658-1531 -roomNumber: 9158 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Felisha Linke,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jerrilee Sudan -sn: Sudan -description: This is Jerrilee Sudan's description -facsimileTelephoneNumber: +1 510 698-8125 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 570-9592 -title: Master Janitorial Visionary -userPassword: Password1 -uid: SudanJ -givenName: Jerrilee -mail: SudanJ@7a081f2b6b9244909f5b879d315b7d98.bitwarden.com -carLicense: J371AJ -departmentNumber: 1853 -employeeType: Employee -homePhone: +1 510 215-5510 -initials: J. S. -mobile: +1 510 276-3497 -pager: +1 510 353-7583 -roomNumber: 9785 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Revkah Bawek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Revkah Bawek -sn: Bawek -description: This is Revkah Bawek's description -facsimileTelephoneNumber: +1 415 705-7911 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 698-5207 -title: Master Janitorial Manager -userPassword: Password1 -uid: BawekR -givenName: Revkah -mail: BawekR@39188148fca245a6a6c8dafa540618a3.bitwarden.com -carLicense: WNBVI6 -departmentNumber: 7185 -employeeType: Employee -homePhone: +1 415 152-4410 -initials: R. B. -mobile: +1 415 199-8941 -pager: +1 415 347-8271 -roomNumber: 8455 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tian Dundin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tian Dundin -sn: Dundin -description: This is Tian Dundin's description -facsimileTelephoneNumber: +1 818 226-4777 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 745-2441 -title: Master Management Stooge -userPassword: Password1 -uid: DundinT -givenName: Tian -mail: DundinT@40c277345d80491f9b505a1f852464d6.bitwarden.com -carLicense: UGH5VT -departmentNumber: 5445 -employeeType: Employee -homePhone: +1 818 686-1711 -initials: T. D. -mobile: +1 818 765-2363 -pager: +1 818 831-7233 -roomNumber: 9082 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Aiden Dido,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aiden Dido -sn: Dido -description: This is Aiden Dido's description -facsimileTelephoneNumber: +1 818 538-4787 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 818 480-6246 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: DidoA -givenName: Aiden -mail: DidoA@6108e9c33f3243228025c7adcbd2900a.bitwarden.com -carLicense: IYLVSH -departmentNumber: 9467 -employeeType: Normal -homePhone: +1 818 605-8353 -initials: A. D. -mobile: +1 818 510-4351 -pager: +1 818 508-6416 -roomNumber: 9249 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pit Yancey,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pit Yancey -sn: Yancey -description: This is Pit Yancey's description -facsimileTelephoneNumber: +1 408 358-3017 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 408 159-5867 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: YanceyP -givenName: Pit -mail: YanceyP@62ebc0cac09c4b59836fa31868a1365d.bitwarden.com -carLicense: 6O2I24 -departmentNumber: 6515 -employeeType: Employee -homePhone: +1 408 876-1751 -initials: P. Y. -mobile: +1 408 488-7839 -pager: +1 408 809-3721 -roomNumber: 9270 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherie Fitzsimmons -sn: Fitzsimmons -description: This is Sherie Fitzsimmons's description -facsimileTelephoneNumber: +1 804 484-4044 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 221-5338 -title: Associate Product Testing Punk -userPassword: Password1 -uid: FitzsimS -givenName: Sherie -mail: FitzsimS@6ff512afd6074ffb8be89092e99d3615.bitwarden.com -carLicense: AQIHLC -departmentNumber: 5792 -employeeType: Contract -homePhone: +1 804 452-1275 -initials: S. F. -mobile: +1 804 562-9108 -pager: +1 804 259-8048 -roomNumber: 9707 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aartjan Robson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aartjan Robson -sn: Robson -description: This is Aartjan Robson's description -facsimileTelephoneNumber: +1 804 219-3132 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 648-5740 -title: Master Product Testing Punk -userPassword: Password1 -uid: RobsonA -givenName: Aartjan -mail: RobsonA@30c0b9dc05334a06863e7dfa5130cda4.bitwarden.com -carLicense: K6698G -departmentNumber: 2343 -employeeType: Normal -homePhone: +1 804 522-2158 -initials: A. R. -mobile: +1 804 179-3604 -pager: +1 804 708-9010 -roomNumber: 9465 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Winona Latreille,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winona Latreille -sn: Latreille -description: This is Winona Latreille's description -facsimileTelephoneNumber: +1 408 476-6444 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 802-6263 -title: Associate Product Testing Developer -userPassword: Password1 -uid: LatreilW -givenName: Winona -mail: LatreilW@39fe1cbe98f04968ad60ef7f60dbbcf4.bitwarden.com -carLicense: DN620O -departmentNumber: 9250 -employeeType: Normal -homePhone: +1 408 249-2299 -initials: W. L. -mobile: +1 408 195-1867 -pager: +1 408 893-3083 -roomNumber: 9280 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dis Schmeing,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dis Schmeing -sn: Schmeing -description: This is Dis Schmeing's description -facsimileTelephoneNumber: +1 804 340-5278 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 113-2785 -title: Junior Peons Engineer -userPassword: Password1 -uid: SchmeinD -givenName: Dis -mail: SchmeinD@c40fad5c5c0d4ba88c3868a6e4fb152e.bitwarden.com -carLicense: W771B0 -departmentNumber: 2251 -employeeType: Employee -homePhone: +1 804 978-6222 -initials: D. S. -mobile: +1 804 398-3154 -pager: +1 804 178-5442 -roomNumber: 8898 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Krystalle McHale,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krystalle McHale -sn: McHale -description: This is Krystalle McHale's description -facsimileTelephoneNumber: +1 213 174-1257 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 213 271-5193 -title: Chief Human Resources Stooge -userPassword: Password1 -uid: McHaleK -givenName: Krystalle -mail: McHaleK@628c910870424ef4b90e6f84f78914eb.bitwarden.com -carLicense: 3XX99V -departmentNumber: 7805 -employeeType: Employee -homePhone: +1 213 676-7072 -initials: K. M. -mobile: +1 213 689-1864 -pager: +1 213 434-9151 -roomNumber: 9954 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jastinder Zollman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jastinder Zollman -sn: Zollman -description: This is Jastinder Zollman's description -facsimileTelephoneNumber: +1 804 290-5604 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 610-8344 -title: Supreme Peons Stooge -userPassword: Password1 -uid: ZollmanJ -givenName: Jastinder -mail: ZollmanJ@4f46f81f678a4f9fb404fab87f91cd92.bitwarden.com -carLicense: V677MT -departmentNumber: 4523 -employeeType: Normal -homePhone: +1 804 535-7740 -initials: J. Z. -mobile: +1 804 280-6631 -pager: +1 804 450-6120 -roomNumber: 9444 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheila Kiebel -sn: Kiebel -description: This is Sheila Kiebel's description -facsimileTelephoneNumber: +1 804 506-9996 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 352-6213 -title: Supreme Product Testing Assistant -userPassword: Password1 -uid: KiebelS -givenName: Sheila -mail: KiebelS@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com -carLicense: UJOO10 -departmentNumber: 2395 -employeeType: Contract -homePhone: +1 804 599-3685 -initials: S. K. -mobile: +1 804 991-9770 -pager: +1 804 443-5221 -roomNumber: 8661 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Conny Blackburn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Conny Blackburn -sn: Blackburn -description: This is Conny Blackburn's description -facsimileTelephoneNumber: +1 804 189-1570 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 804 830-4212 -title: Supreme Management Dictator -userPassword: Password1 -uid: BlackbuC -givenName: Conny -mail: BlackbuC@749481ce636a428dadfe3b049bd9815e.bitwarden.com -carLicense: 0B27QA -departmentNumber: 7351 -employeeType: Normal -homePhone: +1 804 206-5867 -initials: C. B. -mobile: +1 804 458-6905 -pager: +1 804 395-6840 -roomNumber: 9572 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yodha Bulifant -sn: Bulifant -description: This is Yodha Bulifant's description -facsimileTelephoneNumber: +1 206 143-7053 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 396-4295 -title: Associate Janitorial Architect -userPassword: Password1 -uid: BulifanY -givenName: Yodha -mail: BulifanY@89baa82bca2c415183512b5bc8d6890b.bitwarden.com -carLicense: 9DKLSB -departmentNumber: 8475 -employeeType: Employee -homePhone: +1 206 147-8413 -initials: Y. B. -mobile: +1 206 555-2790 -pager: +1 206 531-7201 -roomNumber: 8026 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=William Groleau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lian Tripps,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lian Tripps -sn: Tripps -description: This is Lian Tripps's description -facsimileTelephoneNumber: +1 213 846-9242 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 213 656-5113 -title: Chief Administrative Czar -userPassword: Password1 -uid: TrippsL -givenName: Lian -mail: TrippsL@c8e189f083634334a1fd0d200a0183f2.bitwarden.com -carLicense: YVIHV0 -departmentNumber: 6504 -employeeType: Employee -homePhone: +1 213 722-8745 -initials: L. T. -mobile: +1 213 102-8755 -pager: +1 213 301-5640 -roomNumber: 8267 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karlyn Tiseo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlyn Tiseo -sn: Tiseo -description: This is Karlyn Tiseo's description -facsimileTelephoneNumber: +1 213 603-2117 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 704-7721 -title: Master Management Assistant -userPassword: Password1 -uid: TiseoK -givenName: Karlyn -mail: TiseoK@d22cee8cdc104128b64ec5a3dc27a2cd.bitwarden.com -carLicense: W2WY9G -departmentNumber: 3809 -employeeType: Contract -homePhone: +1 213 583-6606 -initials: K. T. -mobile: +1 213 640-8371 -pager: +1 213 449-7483 -roomNumber: 8756 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Josselyn Sugarman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Josselyn Sugarman -sn: Sugarman -description: This is Josselyn Sugarman's description -facsimileTelephoneNumber: +1 408 771-4620 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 890-4807 -title: Chief Peons Technician -userPassword: Password1 -uid: SugarmaJ -givenName: Josselyn -mail: SugarmaJ@3936c42808104e269d45d901a49adbd5.bitwarden.com -carLicense: 0QEOHF -departmentNumber: 2782 -employeeType: Employee -homePhone: +1 408 201-6232 -initials: J. S. -mobile: +1 408 292-5562 -pager: +1 408 577-6762 -roomNumber: 8605 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ashlie Michailov,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashlie Michailov -sn: Michailov -description: This is Ashlie Michailov's description -facsimileTelephoneNumber: +1 408 436-5876 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 408 378-1836 -title: Chief Peons Consultant -userPassword: Password1 -uid: MichailA -givenName: Ashlie -mail: MichailA@11c4ba17ab574f3bb46442f426b1a2c7.bitwarden.com -carLicense: TY3TII -departmentNumber: 8385 -employeeType: Normal -homePhone: +1 408 819-6628 -initials: A. M. -mobile: +1 408 142-3939 -pager: +1 408 681-1533 -roomNumber: 8948 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mayasandra Elliot -sn: Elliot -description: This is Mayasandra Elliot's description -facsimileTelephoneNumber: +1 510 447-2998 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 510 319-9996 -title: Master Product Development Developer -userPassword: Password1 -uid: ElliotM -givenName: Mayasandra -mail: ElliotM@2cad753cd401488c83abddc338324f15.bitwarden.com -carLicense: BFJ9U8 -departmentNumber: 5097 -employeeType: Employee -homePhone: +1 510 270-6956 -initials: M. E. -mobile: +1 510 188-7084 -pager: +1 510 441-6490 -roomNumber: 9279 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cindie McNeill,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cindie McNeill -sn: McNeill -description: This is Cindie McNeill's description -facsimileTelephoneNumber: +1 415 794-7262 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 123-4695 -title: Chief Administrative Fellow -userPassword: Password1 -uid: McNeillC -givenName: Cindie -mail: McNeillC@8555fc7f07904922939eba5ad297ecac.bitwarden.com -carLicense: 1IQTWO -departmentNumber: 8310 -employeeType: Employee -homePhone: +1 415 387-7992 -initials: C. M. -mobile: +1 415 901-1686 -pager: +1 415 229-1102 -roomNumber: 9240 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dacie Kato,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Izak Katibian,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Izak Katibian -sn: Katibian -description: This is Izak Katibian's description -facsimileTelephoneNumber: +1 206 633-1450 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 429-6694 -title: Supreme Management Pinhead -userPassword: Password1 -uid: KatibiaI -givenName: Izak -mail: KatibiaI@50a4724a631e41a7bce3841ce6d93bf4.bitwarden.com -carLicense: H9EABB -departmentNumber: 2345 -employeeType: Contract -homePhone: +1 206 257-6074 -initials: I. K. -mobile: +1 206 339-8640 -pager: +1 206 702-6805 -roomNumber: 9943 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nanci Fiteny,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nanci Fiteny -sn: Fiteny -description: This is Nanci Fiteny's description -facsimileTelephoneNumber: +1 408 219-5409 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 408 822-9128 -title: Junior Management Vice President -userPassword: Password1 -uid: FitenyN -givenName: Nanci -mail: FitenyN@d5a0d21c338246c5b1eb6d57f0e070b8.bitwarden.com -carLicense: 4KSO95 -departmentNumber: 5256 -employeeType: Contract -homePhone: +1 408 204-1259 -initials: N. F. -mobile: +1 408 734-4832 -pager: +1 408 549-7408 -roomNumber: 9661 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marijke Tiseo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marijke Tiseo -sn: Tiseo -description: This is Marijke Tiseo's description -facsimileTelephoneNumber: +1 415 990-6612 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 415 762-9871 -title: Junior Management Madonna -userPassword: Password1 -uid: TiseoM -givenName: Marijke -mail: TiseoM@5043368b73ac4d89bc4fa2d5f818cf74.bitwarden.com -carLicense: WYFLTA -departmentNumber: 1937 -employeeType: Contract -homePhone: +1 415 461-7206 -initials: M. T. -mobile: +1 415 841-1557 -pager: +1 415 675-2921 -roomNumber: 8340 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Akshay Herlihy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akshay Herlihy -sn: Herlihy -description: This is Akshay Herlihy's description -facsimileTelephoneNumber: +1 804 310-8654 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 804 410-1153 -title: Supreme Peons Evangelist -userPassword: Password1 -uid: HerlihyA -givenName: Akshay -mail: HerlihyA@38fa64796bc14d52bff67c18f15afb33.bitwarden.com -carLicense: WTSLGE -departmentNumber: 4373 -employeeType: Contract -homePhone: +1 804 468-4927 -initials: A. H. -mobile: +1 804 827-3281 -pager: +1 804 976-2744 -roomNumber: 8262 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Thomson Dasch,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomson Dasch -sn: Dasch -description: This is Thomson Dasch's description -facsimileTelephoneNumber: +1 818 630-1539 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 818 892-3686 -title: Junior Product Development Sales Rep -userPassword: Password1 -uid: DaschT -givenName: Thomson -mail: DaschT@08a7e5e74be04f44a364a958dd103e80.bitwarden.com -carLicense: X7GADX -departmentNumber: 1045 -employeeType: Normal -homePhone: +1 818 903-4795 -initials: T. D. -mobile: +1 818 853-4192 -pager: +1 818 469-6214 -roomNumber: 9575 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Min StMartin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Min StMartin -sn: StMartin -description: This is Min StMartin's description -facsimileTelephoneNumber: +1 213 542-8274 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 110-3793 -title: Chief Product Development Fellow -userPassword: Password1 -uid: StMartiM -givenName: Min -mail: StMartiM@11066945925d4920b7876e8ee0d7adc4.bitwarden.com -carLicense: N710ME -departmentNumber: 8944 -employeeType: Contract -homePhone: +1 213 552-1156 -initials: M. S. -mobile: +1 213 262-3612 -pager: +1 213 313-3583 -roomNumber: 9079 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maybelle Karol,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maybelle Karol -sn: Karol -description: This is Maybelle Karol's description -facsimileTelephoneNumber: +1 804 249-8888 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 494-8508 -title: Supreme Administrative Artist -userPassword: Password1 -uid: KarolM -givenName: Maybelle -mail: KarolM@5039da0210e54d01a6092745e22d3750.bitwarden.com -carLicense: VSJCOG -departmentNumber: 4049 -employeeType: Normal -homePhone: +1 804 221-1640 -initials: M. K. -mobile: +1 804 438-1762 -pager: +1 804 409-6576 -roomNumber: 8401 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cindy Ferner,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cindy Ferner -sn: Ferner -description: This is Cindy Ferner's description -facsimileTelephoneNumber: +1 804 752-1366 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 804 867-8827 -title: Junior Janitorial Technician -userPassword: Password1 -uid: FernerC -givenName: Cindy -mail: FernerC@b156fe83e1034ca0b9adcd6fbf561490.bitwarden.com -carLicense: UGFCJK -departmentNumber: 8758 -employeeType: Contract -homePhone: +1 804 493-2793 -initials: C. F. -mobile: +1 804 468-2019 -pager: +1 804 465-3098 -roomNumber: 8888 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nerti Buskens,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nerti Buskens -sn: Buskens -description: This is Nerti Buskens's description -facsimileTelephoneNumber: +1 818 489-6410 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 428-5575 -title: Junior Administrative Dictator -userPassword: Password1 -uid: BuskensN -givenName: Nerti -mail: BuskensN@65ad77a0a7134c499e3c0bd4fd84a125.bitwarden.com -carLicense: 89VUIP -departmentNumber: 7738 -employeeType: Employee -homePhone: +1 818 724-3772 -initials: N. B. -mobile: +1 818 992-8362 -pager: +1 818 935-8260 -roomNumber: 8640 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Selvaraj Merrick,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selvaraj Merrick -sn: Merrick -description: This is Selvaraj Merrick's description -facsimileTelephoneNumber: +1 818 942-6892 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 572-6825 -title: Master Management Stooge -userPassword: Password1 -uid: MerrickS -givenName: Selvaraj -mail: MerrickS@b6599d8f9a8449eaa08086c058ccaba9.bitwarden.com -carLicense: LCN4TM -departmentNumber: 8535 -employeeType: Contract -homePhone: +1 818 439-4297 -initials: S. M. -mobile: +1 818 552-6772 -pager: +1 818 541-5225 -roomNumber: 8166 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Julien Simmons,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julien Simmons -sn: Simmons -description: This is Julien Simmons's description -facsimileTelephoneNumber: +1 510 451-7080 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 510 401-9909 -title: Chief Human Resources Warrior -userPassword: Password1 -uid: SimmonsJ -givenName: Julien -mail: SimmonsJ@c8572d1903484794a6cbdbc65d71c32b.bitwarden.com -carLicense: 6CG6OC -departmentNumber: 4128 -employeeType: Contract -homePhone: +1 510 930-5623 -initials: J. S. -mobile: +1 510 940-5922 -pager: +1 510 911-4329 -roomNumber: 9160 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Conchita Meres,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Conchita Meres -sn: Meres -description: This is Conchita Meres's description -facsimileTelephoneNumber: +1 804 117-1595 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 870-3050 -title: Chief Peons Fellow -userPassword: Password1 -uid: MeresC -givenName: Conchita -mail: MeresC@368b49862ec74ac1974a058d04889202.bitwarden.com -carLicense: B26GG8 -departmentNumber: 2364 -employeeType: Employee -homePhone: +1 804 189-1695 -initials: C. M. -mobile: +1 804 106-5213 -pager: +1 804 352-1453 -roomNumber: 8216 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hedi Herling,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hedi Herling -sn: Herling -description: This is Hedi Herling's description -facsimileTelephoneNumber: +1 510 953-8386 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 610-4713 -title: Associate Peons Madonna -userPassword: Password1 -uid: HerlingH -givenName: Hedi -mail: HerlingH@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com -carLicense: F4Q14G -departmentNumber: 8724 -employeeType: Contract -homePhone: +1 510 618-5874 -initials: H. H. -mobile: +1 510 792-7516 -pager: +1 510 967-5706 -roomNumber: 9634 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Roobbie Bizga,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roobbie Bizga -sn: Bizga -description: This is Roobbie Bizga's description -facsimileTelephoneNumber: +1 510 807-1216 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 510 334-4844 -title: Associate Payroll Punk -userPassword: Password1 -uid: BizgaR -givenName: Roobbie -mail: BizgaR@2578fec05f3c4caebb2ed35da0948626.bitwarden.com -carLicense: 8KMW7M -departmentNumber: 1715 -employeeType: Contract -homePhone: +1 510 611-4598 -initials: R. B. -mobile: +1 510 523-8004 -pager: +1 510 947-2174 -roomNumber: 8939 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Izak Hatten,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Izak Hatten -sn: Hatten -description: This is Izak Hatten's description -facsimileTelephoneNumber: +1 206 590-3278 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 706-4836 -title: Supreme Payroll Developer -userPassword: Password1 -uid: HattenI -givenName: Izak -mail: HattenI@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com -carLicense: H7RRU3 -departmentNumber: 9733 -employeeType: Contract -homePhone: +1 206 930-6453 -initials: I. H. -mobile: +1 206 497-2221 -pager: +1 206 662-7005 -roomNumber: 9041 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Parks McInnis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parks McInnis -sn: McInnis -description: This is Parks McInnis's description -facsimileTelephoneNumber: +1 213 847-6424 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 213 332-9192 -title: Associate Product Testing Madonna -userPassword: Password1 -uid: McInnisP -givenName: Parks -mail: McInnisP@a2ea301b88434726b194e4c9303a1849.bitwarden.com -carLicense: 4I9PIM -departmentNumber: 7694 -employeeType: Employee -homePhone: +1 213 829-4585 -initials: P. M. -mobile: +1 213 947-7366 -pager: +1 213 940-2458 -roomNumber: 9192 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Issy Paget,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulus Schlachter -sn: Schlachter -description: This is Paulus Schlachter's description -facsimileTelephoneNumber: +1 213 927-1618 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 246-4819 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: SchlachP -givenName: Paulus -mail: SchlachP@01593e28a0c9482fb64a5aadc27c2178.bitwarden.com -carLicense: 2QJNOI -departmentNumber: 8566 -employeeType: Employee -homePhone: +1 213 856-5269 -initials: P. S. -mobile: +1 213 362-8807 -pager: +1 213 127-1595 -roomNumber: 9787 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gurmeet Aravamudhan -sn: Aravamudhan -description: This is Gurmeet Aravamudhan's description -facsimileTelephoneNumber: +1 415 430-1321 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 919-2188 -title: Supreme Product Testing Figurehead -userPassword: Password1 -uid: AravamuG -givenName: Gurmeet -mail: AravamuG@282e36163b2b4782beba5acb316b5795.bitwarden.com -carLicense: 2A5K14 -departmentNumber: 8395 -employeeType: Normal -homePhone: +1 415 468-7004 -initials: G. A. -mobile: +1 415 745-9335 -pager: +1 415 521-6268 -roomNumber: 8504 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lissy Otsuka -sn: Otsuka -description: This is Lissy Otsuka's description -facsimileTelephoneNumber: +1 804 616-4303 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 803-2132 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: OtsukaL -givenName: Lissy -mail: OtsukaL@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com -carLicense: YHSBJO -departmentNumber: 7739 -employeeType: Normal -homePhone: +1 804 350-8563 -initials: L. O. -mobile: +1 804 506-5209 -pager: +1 804 256-2058 -roomNumber: 8756 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lanae Mullen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lanae Mullen -sn: Mullen -description: This is Lanae Mullen's description -facsimileTelephoneNumber: +1 818 678-5552 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 138-8685 -title: Junior Administrative Technician -userPassword: Password1 -uid: MullenL -givenName: Lanae -mail: MullenL@999816b5a97d4ddb86dcefd199a0b0ab.bitwarden.com -carLicense: C3STW0 -departmentNumber: 2281 -employeeType: Employee -homePhone: +1 818 404-2866 -initials: L. M. -mobile: +1 818 554-4439 -pager: +1 818 498-1406 -roomNumber: 9072 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Barby Shiue,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barby Shiue -sn: Shiue -description: This is Barby Shiue's description -facsimileTelephoneNumber: +1 415 304-7863 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 415 550-6074 -title: Associate Product Testing Warrior -userPassword: Password1 -uid: ShiueB -givenName: Barby -mail: ShiueB@38977b5a0c5e49539800366c94e12729.bitwarden.com -carLicense: TQTHL2 -departmentNumber: 4789 -employeeType: Contract -homePhone: +1 415 518-4224 -initials: B. S. -mobile: +1 415 877-9475 -pager: +1 415 258-1717 -roomNumber: 9917 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malissa LecuyerDemers -sn: LecuyerDemers -description: This is Malissa LecuyerDemers's description -facsimileTelephoneNumber: +1 415 863-6071 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 403-9278 -title: Junior Payroll Consultant -userPassword: Password1 -uid: LecuyerM -givenName: Malissa -mail: LecuyerM@975d3d03a2c146c2aaca8d2698d4ca32.bitwarden.com -carLicense: NT78SJ -departmentNumber: 1700 -employeeType: Contract -homePhone: +1 415 819-1448 -initials: M. L. -mobile: +1 415 663-9839 -pager: +1 415 991-5763 -roomNumber: 9267 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rizwan Guindi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rizwan Guindi -sn: Guindi -description: This is Rizwan Guindi's description -facsimileTelephoneNumber: +1 408 895-4439 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 959-9631 -title: Junior Administrative President -userPassword: Password1 -uid: GuindiR -givenName: Rizwan -mail: GuindiR@35c77ed09ca846d78581509ce832a819.bitwarden.com -carLicense: YHHPCL -departmentNumber: 7697 -employeeType: Employee -homePhone: +1 408 475-5916 -initials: R. G. -mobile: +1 408 422-1156 -pager: +1 408 428-9480 -roomNumber: 8629 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Anetta Wray,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anetta Wray -sn: Wray -description: This is Anetta Wray's description -facsimileTelephoneNumber: +1 206 279-6012 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 837-5639 -title: Associate Product Development Visionary -userPassword: Password1 -uid: WrayA -givenName: Anetta -mail: WrayA@95581eb6a8bb49808363d11bfe34de80.bitwarden.com -carLicense: MI0MUH -departmentNumber: 9909 -employeeType: Normal -homePhone: +1 206 580-5757 -initials: A. W. -mobile: +1 206 122-5921 -pager: +1 206 351-3492 -roomNumber: 9632 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mougy Mo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mougy Mo -sn: Mo -description: This is Mougy Mo's description -facsimileTelephoneNumber: +1 415 311-7611 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 725-5862 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: MoM -givenName: Mougy -mail: MoM@2b9fd035a3c74d0a924ba78f328d5988.bitwarden.com -carLicense: V75JQ7 -departmentNumber: 1269 -employeeType: Contract -homePhone: +1 415 970-6735 -initials: M. M. -mobile: +1 415 730-1840 -pager: +1 415 667-6918 -roomNumber: 9155 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Darline Alfred,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darline Alfred -sn: Alfred -description: This is Darline Alfred's description -facsimileTelephoneNumber: +1 510 945-4040 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 510 604-2723 -title: Supreme Management Evangelist -userPassword: Password1 -uid: AlfredD -givenName: Darline -mail: AlfredD@e039461a53e74fffbd5670db4243d8b0.bitwarden.com -carLicense: 1O3S39 -departmentNumber: 3169 -employeeType: Employee -homePhone: +1 510 163-7745 -initials: D. A. -mobile: +1 510 597-4316 -pager: +1 510 525-4917 -roomNumber: 8986 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kayla Boscio,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kayla Boscio -sn: Boscio -description: This is Kayla Boscio's description -facsimileTelephoneNumber: +1 415 439-2049 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 415 728-6042 -title: Supreme Product Testing Developer -userPassword: Password1 -uid: BoscioK -givenName: Kayla -mail: BoscioK@bf35e2dd921644e489469fd3b907aac9.bitwarden.com -carLicense: V9HTLC -departmentNumber: 6652 -employeeType: Contract -homePhone: +1 415 255-7594 -initials: K. B. -mobile: +1 415 550-3113 -pager: +1 415 670-3362 -roomNumber: 8963 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Keys Tavares,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Keys Tavares -sn: Tavares -description: This is Keys Tavares's description -facsimileTelephoneNumber: +1 818 506-1280 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 818 490-3844 -title: Master Product Development Consultant -userPassword: Password1 -uid: TavaresK -givenName: Keys -mail: TavaresK@4b233d8ae0e140eb95be281f6d1b2b93.bitwarden.com -carLicense: Q7TYMJ -departmentNumber: 1168 -employeeType: Contract -homePhone: +1 818 260-8563 -initials: K. T. -mobile: +1 818 862-5768 -pager: +1 818 473-6706 -roomNumber: 8817 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yutaka Branham,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yutaka Branham -sn: Branham -description: This is Yutaka Branham's description -facsimileTelephoneNumber: +1 510 359-1782 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 578-9184 -title: Chief Peons Evangelist -userPassword: Password1 -uid: BranhamY -givenName: Yutaka -mail: BranhamY@c63acc13c8a740e8a43edd8fb66a56ca.bitwarden.com -carLicense: AW0MO2 -departmentNumber: 8807 -employeeType: Employee -homePhone: +1 510 439-6399 -initials: Y. B. -mobile: +1 510 622-7554 -pager: +1 510 449-4105 -roomNumber: 9816 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elinore Spallin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elinore Spallin -sn: Spallin -description: This is Elinore Spallin's description -facsimileTelephoneNumber: +1 206 124-7391 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 638-7074 -title: Junior Peons Janitor -userPassword: Password1 -uid: SpallinE -givenName: Elinore -mail: SpallinE@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com -carLicense: XGFYPN -departmentNumber: 5755 -employeeType: Contract -homePhone: +1 206 844-5344 -initials: E. S. -mobile: +1 206 795-6898 -pager: +1 206 450-7781 -roomNumber: 9767 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Paige McAleer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paige McAleer -sn: McAleer -description: This is Paige McAleer's description -facsimileTelephoneNumber: +1 415 625-8007 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 286-5608 -title: Chief Peons Figurehead -userPassword: Password1 -uid: McAleerP -givenName: Paige -mail: McAleerP@f94cfa5e44764457a8389aa50bed2570.bitwarden.com -carLicense: LQOL1U -departmentNumber: 5292 -employeeType: Employee -homePhone: +1 415 570-9882 -initials: P. M. -mobile: +1 415 529-5026 -pager: +1 415 864-3383 -roomNumber: 9463 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Syyed Cantlie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Syyed Cantlie -sn: Cantlie -description: This is Syyed Cantlie's description -facsimileTelephoneNumber: +1 510 689-2907 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 510 435-8671 -title: Chief Peons Punk -userPassword: Password1 -uid: CantlieS -givenName: Syyed -mail: CantlieS@39b915a2bd6147869df44af964c00d61.bitwarden.com -carLicense: SXG5WD -departmentNumber: 7761 -employeeType: Employee -homePhone: +1 510 235-9724 -initials: S. C. -mobile: +1 510 262-9961 -pager: +1 510 876-6601 -roomNumber: 8713 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Morley Trefts,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morley Trefts -sn: Trefts -description: This is Morley Trefts's description -facsimileTelephoneNumber: +1 415 925-1802 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 312-5715 -title: Supreme Administrative President -userPassword: Password1 -uid: TreftsM -givenName: Morley -mail: TreftsM@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com -carLicense: VEJ50S -departmentNumber: 5219 -employeeType: Normal -homePhone: +1 415 746-5977 -initials: M. T. -mobile: +1 415 650-1997 -pager: +1 415 246-5952 -roomNumber: 9522 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daffi Garguilo -sn: Garguilo -description: This is Daffi Garguilo's description -facsimileTelephoneNumber: +1 804 245-4375 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 406-4639 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: GarguilD -givenName: Daffi -mail: GarguilD@e530486f70d4429085f9bb8431928632.bitwarden.com -carLicense: LN6R6V -departmentNumber: 3560 -employeeType: Normal -homePhone: +1 804 991-6780 -initials: D. G. -mobile: +1 804 284-8613 -pager: +1 804 427-1947 -roomNumber: 8160 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronna Bleuer -sn: Bleuer -description: This is Ronna Bleuer's description -facsimileTelephoneNumber: +1 206 971-6728 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 835-9606 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: BleuerR -givenName: Ronna -mail: BleuerR@6907d207239f489294281cbdab840fe4.bitwarden.com -carLicense: 7C6KJ3 -departmentNumber: 7730 -employeeType: Normal -homePhone: +1 206 885-3521 -initials: R. B. -mobile: +1 206 304-8801 -pager: +1 206 462-7928 -roomNumber: 9129 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Daisie Solman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kania Bnrecad,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kania Bnrecad -sn: Bnrecad -description: This is Kania Bnrecad's description -facsimileTelephoneNumber: +1 213 986-9939 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 788-3081 -title: Chief Administrative Warrior -userPassword: Password1 -uid: BnrecadK -givenName: Kania -mail: BnrecadK@c8fa77eb4aa0482bb77de35245880a29.bitwarden.com -carLicense: LS67U0 -departmentNumber: 5490 -employeeType: Contract -homePhone: +1 213 191-6387 -initials: K. B. -mobile: +1 213 538-5647 -pager: +1 213 536-5326 -roomNumber: 8319 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tammi Zukosky,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tammi Zukosky -sn: Zukosky -description: This is Tammi Zukosky's description -facsimileTelephoneNumber: +1 510 658-3992 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 340-5212 -title: Junior Management Grunt -userPassword: Password1 -uid: ZukoskyT -givenName: Tammi -mail: ZukoskyT@766a422a35f14846b4f938fc382952b4.bitwarden.com -carLicense: 8150NH -departmentNumber: 2187 -employeeType: Contract -homePhone: +1 510 371-4860 -initials: T. Z. -mobile: +1 510 567-6139 -pager: +1 510 482-3248 -roomNumber: 8523 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chris Wikkerink -sn: Wikkerink -description: This is Chris Wikkerink's description -facsimileTelephoneNumber: +1 206 198-3270 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 525-7673 -title: Chief Janitorial Artist -userPassword: Password1 -uid: WikkeriC -givenName: Chris -mail: WikkeriC@bed8fc52dc684727b827c4af9874c6ae.bitwarden.com -carLicense: DSL49K -departmentNumber: 7624 -employeeType: Normal -homePhone: +1 206 143-6976 -initials: C. W. -mobile: +1 206 227-8270 -pager: +1 206 323-9756 -roomNumber: 9506 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheelah Beriault -sn: Beriault -description: This is Sheelah Beriault's description -facsimileTelephoneNumber: +1 206 322-7881 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 453-6868 -title: Master Human Resources Architect -userPassword: Password1 -uid: BeriaulS -givenName: Sheelah -mail: BeriaulS@975433a41ce24ba59e1df5051b6724e9.bitwarden.com -carLicense: 905HNH -departmentNumber: 9008 -employeeType: Normal -homePhone: +1 206 862-1996 -initials: S. B. -mobile: +1 206 839-1817 -pager: +1 206 164-3873 -roomNumber: 8628 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Leil Halbedel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leil Halbedel -sn: Halbedel -description: This is Leil Halbedel's description -facsimileTelephoneNumber: +1 510 975-3616 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 894-1828 -title: Chief Janitorial Developer -userPassword: Password1 -uid: HalbedeL -givenName: Leil -mail: HalbedeL@52a128393c654a128a33fd5f6a1b0b66.bitwarden.com -carLicense: VIX7L0 -departmentNumber: 3052 -employeeType: Normal -homePhone: +1 510 348-6358 -initials: L. H. -mobile: +1 510 178-8597 -pager: +1 510 268-4583 -roomNumber: 8736 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marni Diduch,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marni Diduch -sn: Diduch -description: This is Marni Diduch's description -facsimileTelephoneNumber: +1 415 803-3788 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 415 435-9339 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: DiduchM -givenName: Marni -mail: DiduchM@effb1d073c5447c58f6bf516e842aec5.bitwarden.com -carLicense: 5P5OJ6 -departmentNumber: 6231 -employeeType: Contract -homePhone: +1 415 452-6878 -initials: M. D. -mobile: +1 415 178-3015 -pager: +1 415 880-4552 -roomNumber: 9134 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Myriam Desrochers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myriam Desrochers -sn: Desrochers -description: This is Myriam Desrochers's description -facsimileTelephoneNumber: +1 510 755-9086 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 161-2343 -title: Junior Management Fellow -userPassword: Password1 -uid: DesrochM -givenName: Myriam -mail: DesrochM@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com -carLicense: D37MNM -departmentNumber: 9737 -employeeType: Contract -homePhone: +1 510 238-4031 -initials: M. D. -mobile: +1 510 102-5334 -pager: +1 510 324-9243 -roomNumber: 9326 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naohiko Fraley -sn: Fraley -description: This is Naohiko Fraley's description -facsimileTelephoneNumber: +1 818 533-3587 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 818 951-4300 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: FraleyN -givenName: Naohiko -mail: FraleyN@a4566d06f4404638b79325caaec894f9.bitwarden.com -carLicense: LO3QGK -departmentNumber: 4793 -employeeType: Normal -homePhone: +1 818 777-1230 -initials: N. F. -mobile: +1 818 536-1539 -pager: +1 818 512-1409 -roomNumber: 9978 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Court Karademir,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Court Karademir -sn: Karademir -description: This is Court Karademir's description -facsimileTelephoneNumber: +1 510 768-2655 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 510 260-4975 -title: Supreme Administrative Stooge -userPassword: Password1 -uid: KarademC -givenName: Court -mail: KarademC@952b2b73f82449c88d6a84f30520f482.bitwarden.com -carLicense: 6K4PYS -departmentNumber: 1753 -employeeType: Normal -homePhone: +1 510 579-9469 -initials: C. K. -mobile: +1 510 197-7607 -pager: +1 510 422-8383 -roomNumber: 8726 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jayendra Goba,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jayendra Goba -sn: Goba -description: This is Jayendra Goba's description -facsimileTelephoneNumber: +1 818 169-1682 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 407-9384 -title: Junior Product Testing Assistant -userPassword: Password1 -uid: GobaJ -givenName: Jayendra -mail: GobaJ@b3504db7a95a4f5d855c19ba41cc6dc9.bitwarden.com -carLicense: Q6UUT8 -departmentNumber: 8849 -employeeType: Employee -homePhone: +1 818 856-4826 -initials: J. G. -mobile: +1 818 745-4202 -pager: +1 818 787-7241 -roomNumber: 8108 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrin Nawaby -sn: Nawaby -description: This is Darrin Nawaby's description -facsimileTelephoneNumber: +1 213 767-2176 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 962-5971 -title: Junior Human Resources Punk -userPassword: Password1 -uid: NawabyD -givenName: Darrin -mail: NawabyD@b04066f723fa4eb2a82846786b428021.bitwarden.com -carLicense: 99B939 -departmentNumber: 8096 -employeeType: Normal -homePhone: +1 213 124-5006 -initials: D. N. -mobile: +1 213 539-2210 -pager: +1 213 221-9539 -roomNumber: 8844 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kathrerine Hackett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kathrerine Hackett -sn: Hackett -description: This is Kathrerine Hackett's description -facsimileTelephoneNumber: +1 510 689-8203 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 764-9890 -title: Supreme Management Technician -userPassword: Password1 -uid: HackettK -givenName: Kathrerine -mail: HackettK@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com -carLicense: 38GRB4 -departmentNumber: 7333 -employeeType: Employee -homePhone: +1 510 745-8613 -initials: K. H. -mobile: +1 510 259-6660 -pager: +1 510 215-2766 -roomNumber: 9186 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Akihiko Restrepo,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akihiko Restrepo -sn: Restrepo -description: This is Akihiko Restrepo's description -facsimileTelephoneNumber: +1 804 843-9997 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 804 660-5102 -title: Associate Peons Fellow -userPassword: Password1 -uid: RestrepA -givenName: Akihiko -mail: RestrepA@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com -carLicense: B2LXBN -departmentNumber: 9689 -employeeType: Normal -homePhone: +1 804 921-6034 -initials: A. R. -mobile: +1 804 388-1365 -pager: +1 804 430-9490 -roomNumber: 8600 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Andra Guindi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andra Guindi -sn: Guindi -description: This is Andra Guindi's description -facsimileTelephoneNumber: +1 213 621-2515 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 397-6124 -title: Master Peons Dictator -userPassword: Password1 -uid: GuindiA -givenName: Andra -mail: GuindiA@f908b5237c0945e690da76df38180ee9.bitwarden.com -carLicense: 6YWRBU -departmentNumber: 8587 -employeeType: Normal -homePhone: +1 213 795-6056 -initials: A. G. -mobile: +1 213 260-7662 -pager: +1 213 893-7717 -roomNumber: 8249 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Manda Bigley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manda Bigley -sn: Bigley -description: This is Manda Bigley's description -facsimileTelephoneNumber: +1 408 645-4518 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 573-1446 -title: Master Payroll Grunt -userPassword: Password1 -uid: BigleyM -givenName: Manda -mail: BigleyM@faecae55819d4155ab4f3e2d05dac422.bitwarden.com -carLicense: EX10UG -departmentNumber: 2116 -employeeType: Contract -homePhone: +1 408 595-4589 -initials: M. B. -mobile: +1 408 307-9683 -pager: +1 408 864-8904 -roomNumber: 8821 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Julienne Mevis,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julienne Mevis -sn: Mevis -description: This is Julienne Mevis's description -facsimileTelephoneNumber: +1 818 133-6093 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 818 560-7143 -title: Chief Human Resources Admin -userPassword: Password1 -uid: MevisJ -givenName: Julienne -mail: MevisJ@308ad8d2df924e23912f5ff5c482654c.bitwarden.com -carLicense: IG8COH -departmentNumber: 3533 -employeeType: Contract -homePhone: +1 818 959-7871 -initials: J. M. -mobile: +1 818 742-6525 -pager: +1 818 113-8394 -roomNumber: 8228 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lesya Willison,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lesya Willison -sn: Willison -description: This is Lesya Willison's description -facsimileTelephoneNumber: +1 213 248-2686 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 776-3475 -title: Junior Payroll Czar -userPassword: Password1 -uid: WillisoL -givenName: Lesya -mail: WillisoL@cf6dac232ed84a4abc7d8879d016deb3.bitwarden.com -carLicense: NNRSXH -departmentNumber: 4804 -employeeType: Contract -homePhone: +1 213 152-7044 -initials: L. W. -mobile: +1 213 410-1165 -pager: +1 213 416-5835 -roomNumber: 9545 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Giri Rupert,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giri Rupert -sn: Rupert -description: This is Giri Rupert's description -facsimileTelephoneNumber: +1 206 419-3028 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 941-4005 -title: Associate Janitorial Admin -userPassword: Password1 -uid: RupertG -givenName: Giri -mail: RupertG@bfb93d6aa3b84535ab7cdcdbe7575cd9.bitwarden.com -carLicense: NEGUY4 -departmentNumber: 5783 -employeeType: Employee -homePhone: +1 206 992-1665 -initials: G. R. -mobile: +1 206 673-1530 -pager: +1 206 140-8915 -roomNumber: 9169 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Oguz Livingston,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Oguz Livingston -sn: Livingston -description: This is Oguz Livingston's description -facsimileTelephoneNumber: +1 408 194-7968 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 408 167-2489 -title: Junior Product Development Admin -userPassword: Password1 -uid: LivingsO -givenName: Oguz -mail: LivingsO@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com -carLicense: U1ROK5 -departmentNumber: 8737 -employeeType: Employee -homePhone: +1 408 548-3716 -initials: O. L. -mobile: +1 408 795-7073 -pager: +1 408 534-4955 -roomNumber: 8341 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Celie Wesselow,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celie Wesselow -sn: Wesselow -description: This is Celie Wesselow's description -facsimileTelephoneNumber: +1 818 649-7879 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 818 508-6573 -title: Supreme Product Testing Sales Rep -userPassword: Password1 -uid: WesseloC -givenName: Celie -mail: WesseloC@158928e23d3842c2af859e8cbe0620c7.bitwarden.com -carLicense: R37L22 -departmentNumber: 4667 -employeeType: Employee -homePhone: +1 818 724-8926 -initials: C. W. -mobile: +1 818 302-5415 -pager: +1 818 240-6984 -roomNumber: 9015 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Adria Hagar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adria Hagar -sn: Hagar -description: This is Adria Hagar's description -facsimileTelephoneNumber: +1 206 851-5095 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 206 515-8573 -title: Chief Product Development Admin -userPassword: Password1 -uid: HagarA -givenName: Adria -mail: HagarA@47f0a77dd6c841c49ad5d7e57cf1fb47.bitwarden.com -carLicense: 59HUEQ -departmentNumber: 5633 -employeeType: Contract -homePhone: +1 206 137-2869 -initials: A. H. -mobile: +1 206 777-7128 -pager: +1 206 649-3180 -roomNumber: 8121 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zaihua Pamperin -sn: Pamperin -description: This is Zaihua Pamperin's description -facsimileTelephoneNumber: +1 804 242-3551 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 804 624-6257 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: PamperiZ -givenName: Zaihua -mail: PamperiZ@65523206681c4c868fd2bcf7f70e47c0.bitwarden.com -carLicense: RESBVU -departmentNumber: 2175 -employeeType: Employee -homePhone: +1 804 104-2020 -initials: Z. P. -mobile: +1 804 630-7867 -pager: +1 804 238-4538 -roomNumber: 8956 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Panch Timleck,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Panch Timleck -sn: Timleck -description: This is Panch Timleck's description -facsimileTelephoneNumber: +1 415 714-1820 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 415 754-6472 -title: Chief Administrative Figurehead -userPassword: Password1 -uid: TimleckP -givenName: Panch -mail: TimleckP@b3da6460e3c04b23b4e63052d3019a72.bitwarden.com -carLicense: 4H8B5J -departmentNumber: 6855 -employeeType: Employee -homePhone: +1 415 814-3366 -initials: P. T. -mobile: +1 415 887-9218 -pager: +1 415 581-2482 -roomNumber: 9363 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Latia Amarsi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Caro Finley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caro Finley -sn: Finley -description: This is Caro Finley's description -facsimileTelephoneNumber: +1 818 963-9811 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 350-8801 -title: Junior Management Writer -userPassword: Password1 -uid: FinleyC -givenName: Caro -mail: FinleyC@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com -carLicense: 8GDP5J -departmentNumber: 9199 -employeeType: Normal -homePhone: +1 818 382-3896 -initials: C. F. -mobile: +1 818 237-3362 -pager: +1 818 152-2130 -roomNumber: 9859 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Romina Skedelsky -sn: Skedelsky -description: This is Romina Skedelsky's description -facsimileTelephoneNumber: +1 804 819-6916 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 224-9106 -title: Junior Janitorial Technician -userPassword: Password1 -uid: SkedelsR -givenName: Romina -mail: SkedelsR@31412703a38e4215b532681beb725718.bitwarden.com -carLicense: OOX4OJ -departmentNumber: 5233 -employeeType: Normal -homePhone: +1 804 419-4412 -initials: R. S. -mobile: +1 804 962-6890 -pager: +1 804 511-3309 -roomNumber: 9520 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fernand Hunsucker,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fernand Hunsucker -sn: Hunsucker -description: This is Fernand Hunsucker's description -facsimileTelephoneNumber: +1 818 828-5903 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 818 388-7292 -title: Junior Management Technician -userPassword: Password1 -uid: HunsuckF -givenName: Fernand -mail: HunsuckF@167b2e0d041045449bd6e5cdf535c0d5.bitwarden.com -carLicense: 133HGW -departmentNumber: 9338 -employeeType: Normal -homePhone: +1 818 337-1315 -initials: F. H. -mobile: +1 818 475-6252 -pager: +1 818 846-9267 -roomNumber: 9170 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maybelle Tognoni,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maybelle Tognoni -sn: Tognoni -description: This is Maybelle Tognoni's description -facsimileTelephoneNumber: +1 213 491-6908 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 213 705-4139 -title: Supreme Peons Engineer -userPassword: Password1 -uid: TognoniM -givenName: Maybelle -mail: TognoniM@63a11e75c405416bb483a040d9d4e6c0.bitwarden.com -carLicense: F9GU9H -departmentNumber: 1603 -employeeType: Contract -homePhone: +1 213 423-7358 -initials: M. T. -mobile: +1 213 404-6380 -pager: +1 213 400-3042 -roomNumber: 8237 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sunil Boggan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sunil Boggan -sn: Boggan -description: This is Sunil Boggan's description -facsimileTelephoneNumber: +1 206 551-4319 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 206 433-9270 -title: Associate Administrative Admin -userPassword: Password1 -uid: BogganS -givenName: Sunil -mail: BogganS@61ded890c4074ecd9ae572c6057905e0.bitwarden.com -carLicense: Q6O03Q -departmentNumber: 1271 -employeeType: Normal -homePhone: +1 206 450-8737 -initials: S. B. -mobile: +1 206 346-6918 -pager: +1 206 871-6492 -roomNumber: 9711 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Theressa McQueen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theressa McQueen -sn: McQueen -description: This is Theressa McQueen's description -facsimileTelephoneNumber: +1 206 512-9993 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 761-7338 -title: Supreme Peons Sales Rep -userPassword: Password1 -uid: McQueenT -givenName: Theressa -mail: McQueenT@376885ebe2864fefa119c1511a764692.bitwarden.com -carLicense: TCA0OC -departmentNumber: 3753 -employeeType: Normal -homePhone: +1 206 568-2489 -initials: T. M. -mobile: +1 206 942-2278 -pager: +1 206 623-7745 -roomNumber: 8031 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicol Leshowitz -sn: Leshowitz -description: This is Nicol Leshowitz's description -facsimileTelephoneNumber: +1 510 713-9360 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 510 123-2983 -title: Supreme Human Resources Artist -userPassword: Password1 -uid: LeshowiN -givenName: Nicol -mail: LeshowiN@edb80231cf144f5c88b3c412e4500658.bitwarden.com -carLicense: K6WSHC -departmentNumber: 4828 -employeeType: Employee -homePhone: +1 510 239-6663 -initials: N. L. -mobile: +1 510 865-8448 -pager: +1 510 443-2921 -roomNumber: 9510 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maala Lessard,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maala Lessard -sn: Lessard -description: This is Maala Lessard's description -facsimileTelephoneNumber: +1 818 973-3124 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 413-8098 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: LessardM -givenName: Maala -mail: LessardM@a7d617a2a825451dac842ca97ad12dd1.bitwarden.com -carLicense: 35MV8W -departmentNumber: 4258 -employeeType: Employee -homePhone: +1 818 611-4771 -initials: M. L. -mobile: +1 818 171-6994 -pager: +1 818 815-1289 -roomNumber: 8990 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jochem Vuncannon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jochem Vuncannon -sn: Vuncannon -description: This is Jochem Vuncannon's description -facsimileTelephoneNumber: +1 408 851-1057 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 868-8584 -title: Supreme Management Technician -userPassword: Password1 -uid: VuncannJ -givenName: Jochem -mail: VuncannJ@32972334779c4c7daa4ee6042db79c56.bitwarden.com -carLicense: YMD6MG -departmentNumber: 6814 -employeeType: Contract -homePhone: +1 408 151-5950 -initials: J. V. -mobile: +1 408 465-1673 -pager: +1 408 673-1668 -roomNumber: 8380 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moshe Vallentyne -sn: Vallentyne -description: This is Moshe Vallentyne's description -facsimileTelephoneNumber: +1 213 297-1403 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 856-1818 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: VallentM -givenName: Moshe -mail: VallentM@4f5bbd59c73347d8ba49af7225be0d9a.bitwarden.com -carLicense: D099NC -departmentNumber: 6708 -employeeType: Normal -homePhone: +1 213 420-4365 -initials: M. V. -mobile: +1 213 845-4156 -pager: +1 213 726-6197 -roomNumber: 9185 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perl PintoLobo -sn: PintoLobo -description: This is Perl PintoLobo's description -facsimileTelephoneNumber: +1 415 356-4985 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 736-4080 -title: Associate Janitorial Czar -userPassword: Password1 -uid: PintoLoP -givenName: Perl -mail: PintoLoP@508848e150ab4aa7a8a298273ecfc11f.bitwarden.com -carLicense: QSMMUG -departmentNumber: 4656 -employeeType: Normal -homePhone: +1 415 230-8292 -initials: P. P. -mobile: +1 415 263-1384 -pager: +1 415 124-1320 -roomNumber: 9683 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Richelle Griffiths -sn: Griffiths -description: This is Richelle Griffiths's description -facsimileTelephoneNumber: +1 818 651-3554 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 818 927-5204 -title: Supreme Human Resources Figurehead -userPassword: Password1 -uid: GriffitR -givenName: Richelle -mail: GriffitR@6114ed5b2ab14d15895d683682929e6e.bitwarden.com -carLicense: EIGXJR -departmentNumber: 7763 -employeeType: Employee -homePhone: +1 818 274-6738 -initials: R. G. -mobile: +1 818 462-7975 -pager: +1 818 697-3735 -roomNumber: 9225 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Magdi Mays,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdi Mays -sn: Mays -description: This is Magdi Mays's description -facsimileTelephoneNumber: +1 818 356-6126 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 988-3322 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: MaysM -givenName: Magdi -mail: MaysM@2f0186b834694a76807386afdcfeea26.bitwarden.com -carLicense: VGU2SH -departmentNumber: 5716 -employeeType: Employee -homePhone: +1 818 905-2219 -initials: M. M. -mobile: +1 818 115-1361 -pager: +1 818 459-9050 -roomNumber: 8228 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Suvanee Girard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suvanee Girard -sn: Girard -description: This is Suvanee Girard's description -facsimileTelephoneNumber: +1 206 366-4487 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 423-8066 -title: Associate Product Testing Architect -userPassword: Password1 -uid: GirardS -givenName: Suvanee -mail: GirardS@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com -carLicense: U4JVAQ -departmentNumber: 4834 -employeeType: Employee -homePhone: +1 206 148-5727 -initials: S. G. -mobile: +1 206 103-9253 -pager: +1 206 674-5185 -roomNumber: 9058 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bin Itah,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bin Itah -sn: Itah -description: This is Bin Itah's description -facsimileTelephoneNumber: +1 804 141-1519 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 804 706-4023 -title: Associate Management Stooge -userPassword: Password1 -uid: ItahB -givenName: Bin -mail: ItahB@49634f2a5e564b13843ce74e45cd5b8f.bitwarden.com -carLicense: KWCKFL -departmentNumber: 8386 -employeeType: Normal -homePhone: +1 804 284-9027 -initials: B. I. -mobile: +1 804 508-4719 -pager: +1 804 360-2545 -roomNumber: 8782 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Raynell Zaydan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raynell Zaydan -sn: Zaydan -description: This is Raynell Zaydan's description -facsimileTelephoneNumber: +1 206 290-5193 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 994-8124 -title: Junior Payroll Consultant -userPassword: Password1 -uid: ZaydanR -givenName: Raynell -mail: ZaydanR@97b597f461ba489aadc904c578cfd811.bitwarden.com -carLicense: WAQT8W -departmentNumber: 5096 -employeeType: Normal -homePhone: +1 206 781-5789 -initials: R. Z. -mobile: +1 206 613-5753 -pager: +1 206 388-5034 -roomNumber: 9812 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mabel Combee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mabel Combee -sn: Combee -description: This is Mabel Combee's description -facsimileTelephoneNumber: +1 415 707-1401 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 460-3683 -title: Chief Product Development Mascot -userPassword: Password1 -uid: CombeeM -givenName: Mabel -mail: CombeeM@b073d85cb935413fbc2609e807c639c1.bitwarden.com -carLicense: VDFC56 -departmentNumber: 8420 -employeeType: Contract -homePhone: +1 415 212-7529 -initials: M. C. -mobile: +1 415 285-6687 -pager: +1 415 255-9065 -roomNumber: 9918 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Melania Michelsen,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melania Michelsen -sn: Michelsen -description: This is Melania Michelsen's description -facsimileTelephoneNumber: +1 510 555-5217 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 978-8842 -title: Associate Janitorial Sales Rep -userPassword: Password1 -uid: MichelsM -givenName: Melania -mail: MichelsM@d153d3e5031f4425a2d969907becf2cc.bitwarden.com -carLicense: L2IRVK -departmentNumber: 5251 -employeeType: Employee -homePhone: +1 510 650-9365 -initials: M. M. -mobile: +1 510 904-6094 -pager: +1 510 817-5729 -roomNumber: 8784 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lolita Mecteau,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hollyanne Java,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hollyanne Java -sn: Java -description: This is Hollyanne Java's description -facsimileTelephoneNumber: +1 213 218-6935 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 437-9986 -title: Associate Product Development Mascot -userPassword: Password1 -uid: JavaH -givenName: Hollyanne -mail: JavaH@5eabae8e0a894e598a102f3cdf87fde5.bitwarden.com -carLicense: RQRPHM -departmentNumber: 9493 -employeeType: Normal -homePhone: +1 213 831-9442 -initials: H. J. -mobile: +1 213 477-9214 -pager: +1 213 661-3141 -roomNumber: 9737 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Theadora Irani,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theadora Irani -sn: Irani -description: This is Theadora Irani's description -facsimileTelephoneNumber: +1 415 168-4381 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 415 574-5878 -title: Chief Product Development Fellow -userPassword: Password1 -uid: IraniT -givenName: Theadora -mail: IraniT@4f30af5fbc174672afcc4005c4a463f6.bitwarden.com -carLicense: MT534M -departmentNumber: 6116 -employeeType: Employee -homePhone: +1 415 557-2324 -initials: T. I. -mobile: +1 415 429-5584 -pager: +1 415 517-8890 -roomNumber: 9092 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Eladio Bolio,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eladio Bolio -sn: Bolio -description: This is Eladio Bolio's description -facsimileTelephoneNumber: +1 206 188-5397 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 206 686-3060 -title: Junior Product Development Sales Rep -userPassword: Password1 -uid: BolioE -givenName: Eladio -mail: BolioE@befc127e0437429096ff0e9082a67904.bitwarden.com -carLicense: 86OKF3 -departmentNumber: 9236 -employeeType: Normal -homePhone: +1 206 249-8634 -initials: E. B. -mobile: +1 206 695-5663 -pager: +1 206 254-6658 -roomNumber: 9479 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lpo Firment,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sallyanne Muselik -sn: Muselik -description: This is Sallyanne Muselik's description -facsimileTelephoneNumber: +1 408 356-6783 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 341-9390 -title: Master Product Development Developer -userPassword: Password1 -uid: MuselikS -givenName: Sallyanne -mail: MuselikS@e1745565942b4cc2a108427c315a00de.bitwarden.com -carLicense: 320Q28 -departmentNumber: 4932 -employeeType: Employee -homePhone: +1 408 121-3779 -initials: S. M. -mobile: +1 408 860-6242 -pager: +1 408 901-8216 -roomNumber: 8264 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hermien Paksi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermien Paksi -sn: Paksi -description: This is Hermien Paksi's description -facsimileTelephoneNumber: +1 415 864-4074 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 415 939-5613 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: PaksiH -givenName: Hermien -mail: PaksiH@35e3f59923a249d090ebec943db66364.bitwarden.com -carLicense: 0CSHHV -departmentNumber: 7817 -employeeType: Contract -homePhone: +1 415 705-5365 -initials: H. P. -mobile: +1 415 200-8945 -pager: +1 415 444-9614 -roomNumber: 9963 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Merrilee Sipple,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrilee Sipple -sn: Sipple -description: This is Merrilee Sipple's description -facsimileTelephoneNumber: +1 408 755-1666 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 542-6725 -title: Chief Product Development Sales Rep -userPassword: Password1 -uid: SippleM -givenName: Merrilee -mail: SippleM@b847cd495a564fd88ad378e323d86f9e.bitwarden.com -carLicense: HGD647 -departmentNumber: 5329 -employeeType: Contract -homePhone: +1 408 648-4263 -initials: M. S. -mobile: +1 408 552-4777 -pager: +1 408 190-3354 -roomNumber: 8591 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Aleece Mielke,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aleece Mielke -sn: Mielke -description: This is Aleece Mielke's description -facsimileTelephoneNumber: +1 818 659-1218 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 818 193-1396 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: MielkeA -givenName: Aleece -mail: MielkeA@37ac065458a84fc994659f0d86c970d6.bitwarden.com -carLicense: QC33D8 -departmentNumber: 2353 -employeeType: Employee -homePhone: +1 818 417-7534 -initials: A. M. -mobile: +1 818 887-1048 -pager: +1 818 711-4910 -roomNumber: 9061 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Harinder Sabry,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harinder Sabry -sn: Sabry -description: This is Harinder Sabry's description -facsimileTelephoneNumber: +1 415 215-5122 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 415 954-1470 -title: Associate Administrative Czar -userPassword: Password1 -uid: SabryH -givenName: Harinder -mail: SabryH@b60e4ba7e4ea41b7aff4212cdb1e99c6.bitwarden.com -carLicense: 7QA6V7 -departmentNumber: 4650 -employeeType: Contract -homePhone: +1 415 681-1563 -initials: H. S. -mobile: +1 415 360-9036 -pager: +1 415 173-9961 -roomNumber: 9180 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Eamon Brivet,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eamon Brivet -sn: Brivet -description: This is Eamon Brivet's description -facsimileTelephoneNumber: +1 415 173-5066 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 415 970-3953 -title: Associate Peons Madonna -userPassword: Password1 -uid: BrivetE -givenName: Eamon -mail: BrivetE@1f197603b6704c1dbee512646173cacd.bitwarden.com -carLicense: IHNNPF -departmentNumber: 8256 -employeeType: Contract -homePhone: +1 415 938-8020 -initials: E. B. -mobile: +1 415 459-3267 -pager: +1 415 618-7223 -roomNumber: 9443 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Analiese Chapman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Analiese Chapman -sn: Chapman -description: This is Analiese Chapman's description -facsimileTelephoneNumber: +1 206 721-9960 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 206 653-1175 -title: Master Peons President -userPassword: Password1 -uid: ChapmanA -givenName: Analiese -mail: ChapmanA@b617366a0a1e4d7aa5679a9f680a89f2.bitwarden.com -carLicense: RVF6N5 -departmentNumber: 9642 -employeeType: Contract -homePhone: +1 206 885-8713 -initials: A. C. -mobile: +1 206 972-3537 -pager: +1 206 901-7579 -roomNumber: 9081 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Meghan Murphy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meghan Murphy -sn: Murphy -description: This is Meghan Murphy's description -facsimileTelephoneNumber: +1 408 292-5375 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 405-6940 -title: Supreme Payroll Janitor -userPassword: Password1 -uid: MurphyM -givenName: Meghan -mail: MurphyM@6f5b7d94be494781b38d4b416e8e82d2.bitwarden.com -carLicense: JMJBI7 -departmentNumber: 7590 -employeeType: Employee -homePhone: +1 408 473-2876 -initials: M. M. -mobile: +1 408 975-1100 -pager: +1 408 250-5664 -roomNumber: 8077 -manager: cn=Roe Sandberg,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desdemona Freyler -sn: Freyler -description: This is Desdemona Freyler's description -facsimileTelephoneNumber: +1 213 159-8038 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 213 166-4680 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: FreylerD -givenName: Desdemona -mail: FreylerD@4d3a1b4d7f214d738a08a6641bde06fd.bitwarden.com -carLicense: NYTTCQ -departmentNumber: 6890 -employeeType: Normal -homePhone: +1 213 134-4071 -initials: D. F. -mobile: +1 213 519-1671 -pager: +1 213 643-3247 -roomNumber: 8950 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nikolia Guin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nikolia Guin -sn: Guin -description: This is Nikolia Guin's description -facsimileTelephoneNumber: +1 408 145-2775 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 143-4105 -title: Chief Human Resources Developer -userPassword: Password1 -uid: GuinN -givenName: Nikolia -mail: GuinN@272fe3f35e92442897a84fe95f9bd54a.bitwarden.com -carLicense: 88VGCM -departmentNumber: 7374 -employeeType: Contract -homePhone: +1 408 111-2080 -initials: N. G. -mobile: +1 408 886-9713 -pager: +1 408 286-7447 -roomNumber: 8156 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dana Tupling,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dana Tupling -sn: Tupling -description: This is Dana Tupling's description -facsimileTelephoneNumber: +1 213 190-6149 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 298-7258 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: TuplingD -givenName: Dana -mail: TuplingD@ef271778b0964b66a7d614683b9a3b20.bitwarden.com -carLicense: 2WANC2 -departmentNumber: 3650 -employeeType: Contract -homePhone: +1 213 332-7090 -initials: D. T. -mobile: +1 213 300-2177 -pager: +1 213 627-9027 -roomNumber: 8819 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Eliot Havis,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eliot Havis -sn: Havis -description: This is Eliot Havis's description -facsimileTelephoneNumber: +1 415 603-2237 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 308-1238 -title: Junior Payroll Assistant -userPassword: Password1 -uid: HavisE -givenName: Eliot -mail: HavisE@a7efbad4dbbd458699231bf651e29d1b.bitwarden.com -carLicense: C8L6OF -departmentNumber: 2713 -employeeType: Normal -homePhone: +1 415 578-9375 -initials: E. H. -mobile: +1 415 691-8133 -pager: +1 415 547-8050 -roomNumber: 9227 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maryl Codrington,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryl Codrington -sn: Codrington -description: This is Maryl Codrington's description -facsimileTelephoneNumber: +1 818 900-7419 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 672-3257 -title: Junior Product Testing Janitor -userPassword: Password1 -uid: CodringM -givenName: Maryl -mail: CodringM@6d359ae3f48f4f958525326d5a17bef5.bitwarden.com -carLicense: 9W19UJ -departmentNumber: 7148 -employeeType: Normal -homePhone: +1 818 625-9240 -initials: M. C. -mobile: +1 818 675-6415 -pager: +1 818 826-9848 -roomNumber: 8406 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pamelina Kirley -sn: Kirley -description: This is Pamelina Kirley's description -facsimileTelephoneNumber: +1 408 219-1609 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 766-7111 -title: Master Human Resources Dictator -userPassword: Password1 -uid: KirleyP -givenName: Pamelina -mail: KirleyP@8f4ba0e949d54b87a25fce54b7a59ad4.bitwarden.com -carLicense: 9CGUST -departmentNumber: 4047 -employeeType: Contract -homePhone: +1 408 200-4105 -initials: P. K. -mobile: +1 408 712-6651 -pager: +1 408 240-8119 -roomNumber: 9983 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Constantia Neubauer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constantia Neubauer -sn: Neubauer -description: This is Constantia Neubauer's description -facsimileTelephoneNumber: +1 818 772-3515 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 818 562-9057 -title: Chief Product Development Fellow -userPassword: Password1 -uid: NeubaueC -givenName: Constantia -mail: NeubaueC@7448491b00a74a3e95be2c2010be9a72.bitwarden.com -carLicense: 1CHFUH -departmentNumber: 8782 -employeeType: Normal -homePhone: +1 818 244-9003 -initials: C. N. -mobile: +1 818 264-6110 -pager: +1 818 470-7555 -roomNumber: 9896 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Savita Sei,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Savita Sei -sn: Sei -description: This is Savita Sei's description -facsimileTelephoneNumber: +1 804 228-2320 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 987-8143 -title: Master Human Resources Admin -userPassword: Password1 -uid: SeiS -givenName: Savita -mail: SeiS@aa6e4c8f93be4db1b434356df7956ece.bitwarden.com -carLicense: 40447F -departmentNumber: 6512 -employeeType: Employee -homePhone: +1 804 382-8480 -initials: S. S. -mobile: +1 804 904-1322 -pager: +1 804 997-4642 -roomNumber: 8292 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Yehuda Huret,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yehuda Huret -sn: Huret -description: This is Yehuda Huret's description -facsimileTelephoneNumber: +1 818 303-1950 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 818 279-4872 -title: Junior Peons Fellow -userPassword: Password1 -uid: HuretY -givenName: Yehuda -mail: HuretY@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com -carLicense: 2TDMBX -departmentNumber: 3212 -employeeType: Employee -homePhone: +1 818 443-7202 -initials: Y. H. -mobile: +1 818 402-5534 -pager: +1 818 287-9768 -roomNumber: 8305 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Otakar Lobasso -sn: Lobasso -description: This is Otakar Lobasso's description -facsimileTelephoneNumber: +1 415 531-3294 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 415 774-1747 -title: Supreme Human Resources President -userPassword: Password1 -uid: LobassoO -givenName: Otakar -mail: LobassoO@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com -carLicense: KR702R -departmentNumber: 4346 -employeeType: Employee -homePhone: +1 415 685-3432 -initials: O. L. -mobile: +1 415 771-6972 -pager: +1 415 637-7810 -roomNumber: 9301 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Livvie Barlow,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Livvie Barlow -sn: Barlow -description: This is Livvie Barlow's description -facsimileTelephoneNumber: +1 408 235-6738 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 408 556-6738 -title: Chief Janitorial Pinhead -userPassword: Password1 -uid: BarlowL -givenName: Livvie -mail: BarlowL@cbcf5ba0830142c9ada57ab9a8c305a0.bitwarden.com -carLicense: 3AU1HG -departmentNumber: 2340 -employeeType: Contract -homePhone: +1 408 815-5664 -initials: L. B. -mobile: +1 408 708-8661 -pager: +1 408 683-5160 -roomNumber: 9770 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sebastian Burger,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sebastian Burger -sn: Burger -description: This is Sebastian Burger's description -facsimileTelephoneNumber: +1 206 404-3140 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 639-5021 -title: Master Product Development Pinhead -userPassword: Password1 -uid: BurgerS -givenName: Sebastian -mail: BurgerS@4d453e35974e4b1795f354665a71c575.bitwarden.com -carLicense: 1OJ4LB -departmentNumber: 9030 -employeeType: Contract -homePhone: +1 206 941-7681 -initials: S. B. -mobile: +1 206 331-2039 -pager: +1 206 818-1968 -roomNumber: 8587 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jandy Vitaglian -sn: Vitaglian -description: This is Jandy Vitaglian's description -facsimileTelephoneNumber: +1 510 865-3959 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 228-2689 -title: Master Product Testing President -userPassword: Password1 -uid: VitagliJ -givenName: Jandy -mail: VitagliJ@ea0898ff0877402d9c2e36c10881d242.bitwarden.com -carLicense: U6LERV -departmentNumber: 8014 -employeeType: Normal -homePhone: +1 510 230-2187 -initials: J. V. -mobile: +1 510 861-8725 -pager: +1 510 377-8614 -roomNumber: 9495 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Datas Cochran,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Datas Cochran -sn: Cochran -description: This is Datas Cochran's description -facsimileTelephoneNumber: +1 415 704-2875 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 415 990-8048 -title: Junior Management Technician -userPassword: Password1 -uid: CochranD -givenName: Datas -mail: CochranD@7f04a3ff8bcd4af8bad4e2a152862067.bitwarden.com -carLicense: 47V4M7 -departmentNumber: 9368 -employeeType: Normal -homePhone: +1 415 795-1451 -initials: D. C. -mobile: +1 415 209-6037 -pager: +1 415 791-1610 -roomNumber: 8307 -manager: cn=Ellene Holberry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Chander Copley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chander Copley -sn: Copley -description: This is Chander Copley's description -facsimileTelephoneNumber: +1 415 427-4402 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 790-9861 -title: Associate Administrative Czar -userPassword: Password1 -uid: CopleyC -givenName: Chander -mail: CopleyC@d07a2006b3a1498a93ccb152c91ebf77.bitwarden.com -carLicense: 42TNVU -departmentNumber: 8914 -employeeType: Normal -homePhone: +1 415 196-4293 -initials: C. C. -mobile: +1 415 928-8118 -pager: +1 415 900-1607 -roomNumber: 9200 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Careers Serapin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Careers Serapin -sn: Serapin -description: This is Careers Serapin's description -facsimileTelephoneNumber: +1 510 125-3073 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 510 511-7359 -title: Supreme Product Development Punk -userPassword: Password1 -uid: SerapinC -givenName: Careers -mail: SerapinC@12bcb122c4694351b3e767abc87fcd5e.bitwarden.com -carLicense: 9S7TBY -departmentNumber: 9237 -employeeType: Normal -homePhone: +1 510 927-9821 -initials: C. S. -mobile: +1 510 560-6787 -pager: +1 510 405-4320 -roomNumber: 9067 -manager: cn=Leona Buchko,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryJane Kumamoto -sn: Kumamoto -description: This is MaryJane Kumamoto's description -facsimileTelephoneNumber: +1 818 908-7404 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 269-9176 -title: Junior Human Resources Director -userPassword: Password1 -uid: KumamotM -givenName: MaryJane -mail: KumamotM@bce06db68abd4490849597341c60e88f.bitwarden.com -carLicense: UM2PAE -departmentNumber: 5466 -employeeType: Employee -homePhone: +1 818 634-6836 -initials: M. K. -mobile: +1 818 409-6410 -pager: +1 818 473-2617 -roomNumber: 9448 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hellen VanLaten -sn: VanLaten -description: This is Hellen VanLaten's description -facsimileTelephoneNumber: +1 804 551-1585 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 769-4416 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: VanLateH -givenName: Hellen -mail: VanLateH@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com -carLicense: YNT8LR -departmentNumber: 8516 -employeeType: Normal -homePhone: +1 804 382-1368 -initials: H. V. -mobile: +1 804 804-9749 -pager: +1 804 990-8521 -roomNumber: 8984 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mei Ballinger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mei Ballinger -sn: Ballinger -description: This is Mei Ballinger's description -facsimileTelephoneNumber: +1 804 773-1550 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 337-7228 -title: Master Administrative Stooge -userPassword: Password1 -uid: BallingM -givenName: Mei -mail: BallingM@ca5cfe9e2bd34d4daa1788a54ae9670d.bitwarden.com -carLicense: 8BL8MW -departmentNumber: 8788 -employeeType: Normal -homePhone: +1 804 318-1296 -initials: M. B. -mobile: +1 804 554-5674 -pager: +1 804 453-4182 -roomNumber: 9472 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Norio Crabtree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Guillema Sarioglu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guillema Sarioglu -sn: Sarioglu -description: This is Guillema Sarioglu's description -facsimileTelephoneNumber: +1 804 813-4616 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 729-1132 -title: Associate Management Figurehead -userPassword: Password1 -uid: SarioglG -givenName: Guillema -mail: SarioglG@a5c8780c86ee42949bb714c84dc95d44.bitwarden.com -carLicense: QFRDXE -departmentNumber: 4002 -employeeType: Normal -homePhone: +1 804 229-2110 -initials: G. S. -mobile: +1 804 966-9385 -pager: +1 804 851-5820 -roomNumber: 9968 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Samual Colquhoun,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Samual Colquhoun -sn: Colquhoun -description: This is Samual Colquhoun's description -facsimileTelephoneNumber: +1 804 638-5113 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 887-4202 -title: Junior Administrative Madonna -userPassword: Password1 -uid: ColquhoS -givenName: Samual -mail: ColquhoS@af38a73cbf364504a84e0d960de55c89.bitwarden.com -carLicense: OOLS6D -departmentNumber: 2018 -employeeType: Employee -homePhone: +1 804 733-2140 -initials: S. C. -mobile: +1 804 939-6340 -pager: +1 804 716-6871 -roomNumber: 9149 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristin Vanderhoeven -sn: Vanderhoeven -description: This is Kristin Vanderhoeven's description -facsimileTelephoneNumber: +1 408 701-4134 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 258-9351 -title: Chief Product Development Developer -userPassword: Password1 -uid: VanderhK -givenName: Kristin -mail: VanderhK@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com -carLicense: JLF4FC -departmentNumber: 2789 -employeeType: Employee -homePhone: +1 408 299-5226 -initials: K. V. -mobile: +1 408 712-7426 -pager: +1 408 182-5630 -roomNumber: 8551 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reggi Kelsch -sn: Kelsch -description: This is Reggi Kelsch's description -facsimileTelephoneNumber: +1 510 100-6009 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 992-6698 -title: Associate Product Testing Technician -userPassword: Password1 -uid: KelschR -givenName: Reggi -mail: KelschR@bd6dedb04a504f54bb83fff2aa24490b.bitwarden.com -carLicense: 2UVEKR -departmentNumber: 5281 -employeeType: Normal -homePhone: +1 510 612-1683 -initials: R. K. -mobile: +1 510 630-4649 -pager: +1 510 285-7697 -roomNumber: 8784 -manager: cn=Dorella Golczewski,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Uswrsd Talmont -sn: Talmont -description: This is Uswrsd Talmont's description -facsimileTelephoneNumber: +1 213 840-4821 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 793-6684 -title: Supreme Administrative Punk -userPassword: Password1 -uid: TalmontU -givenName: Uswrsd -mail: TalmontU@2c548192dd0a450e9fdd873045107605.bitwarden.com -carLicense: BNO2OF -departmentNumber: 9921 -employeeType: Employee -homePhone: +1 213 169-2235 -initials: U. T. -mobile: +1 213 215-3210 -pager: +1 213 548-6571 -roomNumber: 8537 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Billie Karunaratne -sn: Karunaratne -description: This is Billie Karunaratne's description -facsimileTelephoneNumber: +1 415 148-4912 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 415 724-3536 -title: Supreme Human Resources Czar -userPassword: Password1 -uid: KarunarB -givenName: Billie -mail: KarunarB@eb263435394f4d6ab9827469c04cb342.bitwarden.com -carLicense: RGDJ5B -departmentNumber: 6287 -employeeType: Normal -homePhone: +1 415 131-5048 -initials: B. K. -mobile: +1 415 416-4628 -pager: +1 415 720-1630 -roomNumber: 8989 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathrin Sanford -sn: Sanford -description: This is Cathrin Sanford's description -facsimileTelephoneNumber: +1 415 429-2467 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 414-1389 -title: Junior Product Testing Director -userPassword: Password1 -uid: SanfordC -givenName: Cathrin -mail: SanfordC@e38af9fe725143fba59fa84a861f0258.bitwarden.com -carLicense: 4RX86V -departmentNumber: 2399 -employeeType: Normal -homePhone: +1 415 394-1116 -initials: C. S. -mobile: +1 415 386-1586 -pager: +1 415 617-2588 -roomNumber: 9316 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hubert Cicci,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hubert Cicci -sn: Cicci -description: This is Hubert Cicci's description -facsimileTelephoneNumber: +1 804 214-7253 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 132-6653 -title: Junior Janitorial President -userPassword: Password1 -uid: CicciH -givenName: Hubert -mail: CicciH@c87d7949ca254b4faaba46ba985802e7.bitwarden.com -carLicense: N049G3 -departmentNumber: 3531 -employeeType: Contract -homePhone: +1 804 902-4588 -initials: H. C. -mobile: +1 804 823-9448 -pager: +1 804 831-8742 -roomNumber: 9865 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chung Gooch,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chung Gooch -sn: Gooch -description: This is Chung Gooch's description -facsimileTelephoneNumber: +1 510 720-7846 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 510 784-6677 -title: Junior Payroll Warrior -userPassword: Password1 -uid: GoochC -givenName: Chung -mail: GoochC@503f6e3a96f3479bbfed7039bc14da05.bitwarden.com -carLicense: N2F60S -departmentNumber: 2518 -employeeType: Normal -homePhone: +1 510 987-7880 -initials: C. G. -mobile: +1 510 796-8764 -pager: +1 510 511-3486 -roomNumber: 8270 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Johnnie Trainer,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnnie Trainer -sn: Trainer -description: This is Johnnie Trainer's description -facsimileTelephoneNumber: +1 415 966-9099 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 718-4450 -title: Master Administrative Pinhead -userPassword: Password1 -uid: TrainerJ -givenName: Johnnie -mail: TrainerJ@7056e30d771245dcacf5054aa8552268.bitwarden.com -carLicense: K39YES -departmentNumber: 5092 -employeeType: Employee -homePhone: +1 415 105-1600 -initials: J. T. -mobile: +1 415 953-2448 -pager: +1 415 158-3365 -roomNumber: 9587 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ShirleyAnn Leitner -sn: Leitner -description: This is ShirleyAnn Leitner's description -facsimileTelephoneNumber: +1 415 593-2354 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 418-5319 -title: Junior Product Development Madonna -userPassword: Password1 -uid: LeitnerS -givenName: ShirleyAnn -mail: LeitnerS@7279f15d1e764fb3b1076fe52d173852.bitwarden.com -carLicense: GMWGSJ -departmentNumber: 6163 -employeeType: Normal -homePhone: +1 415 281-6364 -initials: S. L. -mobile: +1 415 419-7170 -pager: +1 415 819-1990 -roomNumber: 9506 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Camile Latin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camile Latin -sn: Latin -description: This is Camile Latin's description -facsimileTelephoneNumber: +1 818 616-2059 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 484-1672 -title: Chief Management Technician -userPassword: Password1 -uid: LatinC -givenName: Camile -mail: LatinC@b4e0316b69b8470f901342e4f4f1cdf5.bitwarden.com -carLicense: SR5Q81 -departmentNumber: 8709 -employeeType: Employee -homePhone: +1 818 843-2898 -initials: C. L. -mobile: +1 818 716-1367 -pager: +1 818 523-9011 -roomNumber: 8553 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Radio Ong,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Radio Ong -sn: Ong -description: This is Radio Ong's description -facsimileTelephoneNumber: +1 804 673-2045 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 601-2610 -title: Chief Product Development Figurehead -userPassword: Password1 -uid: OngR -givenName: Radio -mail: OngR@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com -carLicense: UCLHNE -departmentNumber: 5966 -employeeType: Contract -homePhone: +1 804 877-3140 -initials: R. O. -mobile: +1 804 732-3976 -pager: +1 804 267-6035 -roomNumber: 9770 -manager: cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carmina Joly,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmina Joly -sn: Joly -description: This is Carmina Joly's description -facsimileTelephoneNumber: +1 213 593-6607 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 917-2057 -title: Junior Janitorial Director -userPassword: Password1 -uid: JolyC -givenName: Carmina -mail: JolyC@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com -carLicense: Q0BEM8 -departmentNumber: 4304 -employeeType: Employee -homePhone: +1 213 683-1617 -initials: C. J. -mobile: +1 213 679-9861 -pager: +1 213 978-9593 -roomNumber: 8270 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alese Zarate,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alese Zarate -sn: Zarate -description: This is Alese Zarate's description -facsimileTelephoneNumber: +1 510 223-3952 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 216-6869 -title: Associate Product Testing Artist -userPassword: Password1 -uid: ZarateA -givenName: Alese -mail: ZarateA@a2e58ac4aa674923b6c4c06738a79475.bitwarden.com -carLicense: 1U8K8B -departmentNumber: 8713 -employeeType: Employee -homePhone: +1 510 833-9493 -initials: A. Z. -mobile: +1 510 399-7243 -pager: +1 510 256-9025 -roomNumber: 8182 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Babb Dpierre,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Babb Dpierre -sn: Dpierre -description: This is Babb Dpierre's description -facsimileTelephoneNumber: +1 510 313-3719 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 152-7359 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: DpierreB -givenName: Babb -mail: DpierreB@54603ca23b334ee2ab268dfe7ef5998b.bitwarden.com -carLicense: 0OGATE -departmentNumber: 5728 -employeeType: Employee -homePhone: +1 510 896-6951 -initials: B. D. -mobile: +1 510 887-2864 -pager: +1 510 916-4885 -roomNumber: 9679 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherice Rtprel -sn: Rtprel -description: This is Cherice Rtprel's description -facsimileTelephoneNumber: +1 206 886-3862 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 971-5607 -title: Chief Human Resources Figurehead -userPassword: Password1 -uid: RtprelC -givenName: Cherice -mail: RtprelC@ca6d3da0e0ae431b8aa777badba75d1a.bitwarden.com -carLicense: 945Y7T -departmentNumber: 9033 -employeeType: Contract -homePhone: +1 206 774-5121 -initials: C. R. -mobile: +1 206 188-4383 -pager: +1 206 372-7861 -roomNumber: 8300 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: DeeAnn SaranBrar -sn: SaranBrar -description: This is DeeAnn SaranBrar's description -facsimileTelephoneNumber: +1 415 391-6302 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 415 231-9631 -title: Junior Product Testing Admin -userPassword: Password1 -uid: SaranBrD -givenName: DeeAnn -mail: SaranBrD@7dbf2c52de6d4f65b7e5ea3788d86d3e.bitwarden.com -carLicense: 29U501 -departmentNumber: 9852 -employeeType: Contract -homePhone: +1 415 259-5430 -initials: D. S. -mobile: +1 415 583-7606 -pager: +1 415 425-9459 -roomNumber: 9851 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dalila Forbes,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dalila Forbes -sn: Forbes -description: This is Dalila Forbes's description -facsimileTelephoneNumber: +1 818 193-3559 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 508-2703 -title: Associate Product Development Developer -userPassword: Password1 -uid: ForbesD -givenName: Dalila -mail: ForbesD@a48701aa8d324e65a88e2c654b93d791.bitwarden.com -carLicense: KI4WWY -departmentNumber: 5051 -employeeType: Employee -homePhone: +1 818 824-1448 -initials: D. F. -mobile: +1 818 590-6665 -pager: +1 818 732-4714 -roomNumber: 9841 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thuthuy Abelow -sn: Abelow -description: This is Thuthuy Abelow's description -facsimileTelephoneNumber: +1 415 840-1708 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 415 519-5840 -title: Chief Payroll Consultant -userPassword: Password1 -uid: AbelowT -givenName: Thuthuy -mail: AbelowT@42f51a65b1584dbea4e8a6daf5a3f864.bitwarden.com -carLicense: 4VJQYG -departmentNumber: 4220 -employeeType: Employee -homePhone: +1 415 953-7938 -initials: T. A. -mobile: +1 415 642-6530 -pager: +1 415 465-6175 -roomNumber: 8968 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pinder Pedley,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pinder Pedley -sn: Pedley -description: This is Pinder Pedley's description -facsimileTelephoneNumber: +1 510 688-2505 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 712-8490 -title: Junior Administrative Warrior -userPassword: Password1 -uid: PedleyP -givenName: Pinder -mail: PedleyP@47a7a80ec8774325ad24930467e7f72e.bitwarden.com -carLicense: 2OSP4U -departmentNumber: 8513 -employeeType: Normal -homePhone: +1 510 303-7996 -initials: P. P. -mobile: +1 510 962-6889 -pager: +1 510 796-6042 -roomNumber: 8691 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leo Thibodeaux -sn: Thibodeaux -description: This is Leo Thibodeaux's description -facsimileTelephoneNumber: +1 804 490-9043 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 209-1095 -title: Associate Administrative Janitor -userPassword: Password1 -uid: ThibodeL -givenName: Leo -mail: ThibodeL@38889c54d4b943c0b9fc26641a496258.bitwarden.com -carLicense: TENFBA -departmentNumber: 7880 -employeeType: Normal -homePhone: +1 804 840-6060 -initials: L. T. -mobile: +1 804 325-4555 -pager: +1 804 587-1638 -roomNumber: 9723 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Suzi Gribbons,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzi Gribbons -sn: Gribbons -description: This is Suzi Gribbons's description -facsimileTelephoneNumber: +1 206 923-5351 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 206 646-9679 -title: Associate Product Development Architect -userPassword: Password1 -uid: GribbonS -givenName: Suzi -mail: GribbonS@2dc8c62e4ed74cd885bbff5260cbb174.bitwarden.com -carLicense: LG7XFO -departmentNumber: 7275 -employeeType: Contract -homePhone: +1 206 372-2292 -initials: S. G. -mobile: +1 206 633-7105 -pager: +1 206 727-4299 -roomNumber: 8235 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hulst Sinasac,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hulst Sinasac -sn: Sinasac -description: This is Hulst Sinasac's description -facsimileTelephoneNumber: +1 415 490-4289 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 455-9922 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: SinasacH -givenName: Hulst -mail: SinasacH@e35bcff773e44a658149b86ee66df875.bitwarden.com -carLicense: 3IYBWE -departmentNumber: 4768 -employeeType: Contract -homePhone: +1 415 207-3812 -initials: H. S. -mobile: +1 415 392-1818 -pager: +1 415 602-3542 -roomNumber: 8348 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mervin Holthaus -sn: Holthaus -description: This is Mervin Holthaus's description -facsimileTelephoneNumber: +1 510 667-5792 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 576-4850 -title: Junior Product Testing Madonna -userPassword: Password1 -uid: HolthauM -givenName: Mervin -mail: HolthauM@4cf65bbff1914896934f97301ec7a0ec.bitwarden.com -carLicense: CH29VB -departmentNumber: 9514 -employeeType: Contract -homePhone: +1 510 494-7718 -initials: M. H. -mobile: +1 510 472-5039 -pager: +1 510 993-4933 -roomNumber: 8924 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Naser deSalis,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Naser deSalis -sn: deSalis -description: This is Naser deSalis's description -facsimileTelephoneNumber: +1 415 380-9957 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 534-5692 -title: Associate Administrative Manager -userPassword: Password1 -uid: deSalisN -givenName: Naser -mail: deSalisN@2620fb87759f467a90bd68158f6c4bde.bitwarden.com -carLicense: EYTCMX -departmentNumber: 5093 -employeeType: Employee -homePhone: +1 415 403-7859 -initials: N. d. -mobile: +1 415 474-7633 -pager: +1 415 823-4608 -roomNumber: 8607 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chawki Starkebaum -sn: Starkebaum -description: This is Chawki Starkebaum's description -facsimileTelephoneNumber: +1 818 498-2446 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 818 349-7206 -title: Chief Payroll Artist -userPassword: Password1 -uid: StarkebC -givenName: Chawki -mail: StarkebC@3ce0a01f27f6425688fde2fe2ac46894.bitwarden.com -carLicense: ITFGJ3 -departmentNumber: 4181 -employeeType: Normal -homePhone: +1 818 553-9287 -initials: C. S. -mobile: +1 818 343-8707 -pager: +1 818 399-4804 -roomNumber: 9659 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Goldwyn Saltsider -sn: Saltsider -description: This is Goldwyn Saltsider's description -facsimileTelephoneNumber: +1 206 160-7592 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 920-4739 -title: Supreme Peons Figurehead -userPassword: Password1 -uid: SaltsidG -givenName: Goldwyn -mail: SaltsidG@1e13847ccc3c4ff8a4232936d21cc7f6.bitwarden.com -carLicense: 6CXNWO -departmentNumber: 1123 -employeeType: Normal -homePhone: +1 206 460-4970 -initials: G. S. -mobile: +1 206 747-4761 -pager: +1 206 779-3157 -roomNumber: 9990 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maurise Efstration,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurise Efstration -sn: Efstration -description: This is Maurise Efstration's description -facsimileTelephoneNumber: +1 213 503-8835 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 213 759-1491 -title: Chief Product Testing Evangelist -userPassword: Password1 -uid: EfstratM -givenName: Maurise -mail: EfstratM@8bce8e47b62d4ccfb285ce5d7a43698b.bitwarden.com -carLicense: BMG6S8 -departmentNumber: 6105 -employeeType: Contract -homePhone: +1 213 217-3894 -initials: M. E. -mobile: +1 213 704-2016 -pager: +1 213 913-3373 -roomNumber: 9698 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ranvir Reetz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranvir Reetz -sn: Reetz -description: This is Ranvir Reetz's description -facsimileTelephoneNumber: +1 408 180-8644 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 708-1479 -title: Supreme Payroll Fellow -userPassword: Password1 -uid: ReetzR -givenName: Ranvir -mail: ReetzR@da92b528ad714b68bb8622f4f41299c4.bitwarden.com -carLicense: 18BG35 -departmentNumber: 2881 -employeeType: Normal -homePhone: +1 408 988-2746 -initials: R. R. -mobile: +1 408 478-9187 -pager: +1 408 469-9953 -roomNumber: 9486 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alidia COKOL,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alidia COKOL -sn: COKOL -description: This is Alidia COKOL's description -facsimileTelephoneNumber: +1 818 621-6285 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 818 786-9421 -title: Junior Peons Warrior -userPassword: Password1 -uid: COKOLA -givenName: Alidia -mail: COKOLA@4e3272dfa10d49cf921e5550808b516c.bitwarden.com -carLicense: OVP2K3 -departmentNumber: 2363 -employeeType: Employee -homePhone: +1 818 466-2642 -initials: A. C. -mobile: +1 818 507-4281 -pager: +1 818 686-1227 -roomNumber: 9868 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alessandra Lamey -sn: Lamey -description: This is Alessandra Lamey's description -facsimileTelephoneNumber: +1 818 380-7641 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 818 147-4888 -title: Master Janitorial President -userPassword: Password1 -uid: LameyA -givenName: Alessandra -mail: LameyA@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com -carLicense: 6E05CQ -departmentNumber: 4133 -employeeType: Employee -homePhone: +1 818 679-9328 -initials: A. L. -mobile: +1 818 480-4706 -pager: +1 818 873-7898 -roomNumber: 8277 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Shashank Pifko,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shashank Pifko -sn: Pifko -description: This is Shashank Pifko's description -facsimileTelephoneNumber: +1 415 934-6995 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 580-9890 -title: Associate Janitorial Janitor -userPassword: Password1 -uid: PifkoS -givenName: Shashank -mail: PifkoS@0eed0e32043f4408ad5c64ea168a59bf.bitwarden.com -carLicense: EP0OX6 -departmentNumber: 8509 -employeeType: Employee -homePhone: +1 415 439-4639 -initials: S. P. -mobile: +1 415 554-5329 -pager: +1 415 269-7475 -roomNumber: 8962 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meeting Legrandvallet -sn: Legrandvallet -description: This is Meeting Legrandvallet's description -facsimileTelephoneNumber: +1 804 276-8929 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 804 587-7305 -title: Associate Payroll Warrior -userPassword: Password1 -uid: LegrandM -givenName: Meeting -mail: LegrandM@669b2a81bf23431db2962dc8de3e583a.bitwarden.com -carLicense: VFU4KK -departmentNumber: 7974 -employeeType: Employee -homePhone: +1 804 408-7846 -initials: M. L. -mobile: +1 804 688-1921 -pager: +1 804 695-3376 -roomNumber: 9458 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Eulalie Montcalm,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eulalie Montcalm -sn: Montcalm -description: This is Eulalie Montcalm's description -facsimileTelephoneNumber: +1 804 377-1003 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 804 242-3880 -title: Master Management Consultant -userPassword: Password1 -uid: MontcalE -givenName: Eulalie -mail: MontcalE@2229562e57b44d9d8ff347bf88958fa0.bitwarden.com -carLicense: 5227MY -departmentNumber: 9453 -employeeType: Employee -homePhone: +1 804 134-9193 -initials: E. M. -mobile: +1 804 325-5034 -pager: +1 804 655-9404 -roomNumber: 8580 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Calla Voight,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calla Voight -sn: Voight -description: This is Calla Voight's description -facsimileTelephoneNumber: +1 415 594-4986 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 960-7212 -title: Associate Peons Admin -userPassword: Password1 -uid: VoightC -givenName: Calla -mail: VoightC@5e9eaf0e4bc34fb7abad197540e304cf.bitwarden.com -carLicense: 5JMGHT -departmentNumber: 8522 -employeeType: Contract -homePhone: +1 415 960-2577 -initials: C. V. -mobile: +1 415 413-9223 -pager: +1 415 178-3301 -roomNumber: 9324 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lynette Kay,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynette Kay -sn: Kay -description: This is Lynette Kay's description -facsimileTelephoneNumber: +1 213 384-4630 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 213 396-7997 -title: Master Payroll Janitor -userPassword: Password1 -uid: KayL -givenName: Lynette -mail: KayL@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com -carLicense: 81VHKG -departmentNumber: 3145 -employeeType: Normal -homePhone: +1 213 330-9265 -initials: L. K. -mobile: +1 213 245-8923 -pager: +1 213 230-6118 -roomNumber: 8409 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carleen Baxter,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carleen Baxter -sn: Baxter -description: This is Carleen Baxter's description -facsimileTelephoneNumber: +1 818 843-3789 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 818 691-4358 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: BaxterC -givenName: Carleen -mail: BaxterC@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com -carLicense: 7WU3DS -departmentNumber: 9783 -employeeType: Contract -homePhone: +1 818 288-5084 -initials: C. B. -mobile: +1 818 337-8746 -pager: +1 818 360-9719 -roomNumber: 8826 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hubert Brading,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hubert Brading -sn: Brading -description: This is Hubert Brading's description -facsimileTelephoneNumber: +1 804 802-2229 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 596-8029 -title: Master Product Testing Technician -userPassword: Password1 -uid: BradingH -givenName: Hubert -mail: BradingH@6d3e8dd854344b0786a5b5ed369ee17d.bitwarden.com -carLicense: 4KQKFV -departmentNumber: 8536 -employeeType: Employee -homePhone: +1 804 407-3692 -initials: H. B. -mobile: +1 804 534-2466 -pager: +1 804 649-6366 -roomNumber: 8197 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Christian Norwood,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christian Norwood -sn: Norwood -description: This is Christian Norwood's description -facsimileTelephoneNumber: +1 213 138-8384 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 754-3460 -title: Supreme Management Pinhead -userPassword: Password1 -uid: NorwoodC -givenName: Christian -mail: NorwoodC@9c67311a9b9a47fdab61ba341dc09ba9.bitwarden.com -carLicense: LQDGYI -departmentNumber: 2410 -employeeType: Normal -homePhone: +1 213 895-3723 -initials: C. N. -mobile: +1 213 390-4671 -pager: +1 213 286-9896 -roomNumber: 9808 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Den Fogle,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Den Fogle -sn: Fogle -description: This is Den Fogle's description -facsimileTelephoneNumber: +1 408 226-9615 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 745-8320 -title: Master Product Testing Architect -userPassword: Password1 -uid: FogleD -givenName: Den -mail: FogleD@4fd308eba088404ab84d4a632c943b2d.bitwarden.com -carLicense: B2FPVK -departmentNumber: 7674 -employeeType: Contract -homePhone: +1 408 546-9723 -initials: D. F. -mobile: +1 408 867-1909 -pager: +1 408 722-7966 -roomNumber: 9915 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Letisha Kardomateas -sn: Kardomateas -description: This is Letisha Kardomateas's description -facsimileTelephoneNumber: +1 213 380-5069 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 213 597-1333 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: KardomaL -givenName: Letisha -mail: KardomaL@53730a8d12f040129003f875c65328b6.bitwarden.com -carLicense: Q7931V -departmentNumber: 6533 -employeeType: Contract -homePhone: +1 213 543-2481 -initials: L. K. -mobile: +1 213 814-3407 -pager: +1 213 280-5449 -roomNumber: 8874 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalvin Moyce -sn: Moyce -description: This is Kalvin Moyce's description -facsimileTelephoneNumber: +1 213 211-5110 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 313-8990 -title: Supreme Janitorial Punk -userPassword: Password1 -uid: MoyceK -givenName: Kalvin -mail: MoyceK@ce3c3de60304481ea49d2ee345f72ace.bitwarden.com -carLicense: 3IFRYI -departmentNumber: 9068 -employeeType: Normal -homePhone: +1 213 409-4231 -initials: K. M. -mobile: +1 213 545-6641 -pager: +1 213 191-9703 -roomNumber: 8120 -manager: cn=Junette Bayno,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karol Dummer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karol Dummer -sn: Dummer -description: This is Karol Dummer's description -facsimileTelephoneNumber: +1 408 223-8631 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 408 447-1521 -title: Master Product Testing Visionary -userPassword: Password1 -uid: DummerK -givenName: Karol -mail: DummerK@6fd29755fe674bd2b6f70bd1498c6322.bitwarden.com -carLicense: K2VCNJ -departmentNumber: 5323 -employeeType: Normal -homePhone: +1 408 807-7924 -initials: K. D. -mobile: +1 408 213-2002 -pager: +1 408 682-2118 -roomNumber: 9365 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Myrna Samora,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Myrna Samora -sn: Samora -description: This is Myrna Samora's description -facsimileTelephoneNumber: +1 415 299-5706 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 415 499-3009 -title: Master Peons Sales Rep -userPassword: Password1 -uid: SamoraM -givenName: Myrna -mail: SamoraM@a26a9c7d638a4a938f85aa60d8cdaebf.bitwarden.com -carLicense: RHII5P -departmentNumber: 6342 -employeeType: Employee -homePhone: +1 415 174-3696 -initials: M. S. -mobile: +1 415 382-2775 -pager: +1 415 479-1818 -roomNumber: 9550 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alnoor Cuccioletta -sn: Cuccioletta -description: This is Alnoor Cuccioletta's description -facsimileTelephoneNumber: +1 213 613-4262 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 213 790-2489 -title: Associate Management Director -userPassword: Password1 -uid: CucciolA -givenName: Alnoor -mail: CucciolA@7747f5fffb014d46a2a05d592c7bbe1a.bitwarden.com -carLicense: BSQGKO -departmentNumber: 4849 -employeeType: Normal -homePhone: +1 213 322-7829 -initials: A. C. -mobile: +1 213 579-6680 -pager: +1 213 889-6061 -roomNumber: 9692 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=KuiSoon Bajada,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KuiSoon Bajada -sn: Bajada -description: This is KuiSoon Bajada's description -facsimileTelephoneNumber: +1 510 835-3445 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 515-8561 -title: Supreme Management Mascot -userPassword: Password1 -uid: BajadaK -givenName: KuiSoon -mail: BajadaK@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com -carLicense: QBOQOP -departmentNumber: 2140 -employeeType: Employee -homePhone: +1 510 462-2174 -initials: K. B. -mobile: +1 510 929-1867 -pager: +1 510 657-2310 -roomNumber: 9096 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Alvina Madison,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvina Madison -sn: Madison -description: This is Alvina Madison's description -facsimileTelephoneNumber: +1 415 495-6034 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 615-2306 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: MadisonA -givenName: Alvina -mail: MadisonA@ef9dfa73b56a46a59a0d8721e608cbdf.bitwarden.com -carLicense: QJDVXY -departmentNumber: 8829 -employeeType: Contract -homePhone: +1 415 298-6189 -initials: A. M. -mobile: +1 415 456-3868 -pager: +1 415 943-4452 -roomNumber: 9794 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Celyne Krater,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Celyne Krater -sn: Krater -description: This is Celyne Krater's description -facsimileTelephoneNumber: +1 415 216-9503 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 415 356-3530 -title: Master Human Resources Janitor -userPassword: Password1 -uid: KraterC -givenName: Celyne -mail: KraterC@ac9bf0e4278e4b36812b33be5aa4f608.bitwarden.com -carLicense: EO51QH -departmentNumber: 2892 -employeeType: Employee -homePhone: +1 415 120-1818 -initials: C. K. -mobile: +1 415 436-1368 -pager: +1 415 819-3817 -roomNumber: 8424 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pierre Hysler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pierre Hysler -sn: Hysler -description: This is Pierre Hysler's description -facsimileTelephoneNumber: +1 213 893-3642 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 213 574-6267 -title: Chief Management Grunt -userPassword: Password1 -uid: HyslerP -givenName: Pierre -mail: HyslerP@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com -carLicense: 1IPTLO -departmentNumber: 3489 -employeeType: Normal -homePhone: +1 213 508-6831 -initials: P. H. -mobile: +1 213 337-4421 -pager: +1 213 200-1028 -roomNumber: 9009 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gordy Fab,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gordy Fab -sn: Fab -description: This is Gordy Fab's description -facsimileTelephoneNumber: +1 206 341-1634 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 689-7130 -title: Junior Administrative Janitor -userPassword: Password1 -uid: FabG -givenName: Gordy -mail: FabG@59b0f3f771e94b3fb34ff9f80e0b476b.bitwarden.com -carLicense: MJQNHX -departmentNumber: 5826 -employeeType: Employee -homePhone: +1 206 335-7007 -initials: G. F. -mobile: +1 206 551-8419 -pager: +1 206 378-4739 -roomNumber: 9922 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mouna LaRue,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mouna LaRue -sn: LaRue -description: This is Mouna LaRue's description -facsimileTelephoneNumber: +1 510 670-5516 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 629-7283 -title: Master Product Development Punk -userPassword: Password1 -uid: LaRueM -givenName: Mouna -mail: LaRueM@869bcf8a299b41b19a933afcb83f9250.bitwarden.com -carLicense: JE8PQ8 -departmentNumber: 1804 -employeeType: Contract -homePhone: +1 510 205-6269 -initials: M. L. -mobile: +1 510 197-7518 -pager: +1 510 416-3283 -roomNumber: 9621 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarabelle Beaubien -sn: Beaubien -description: This is Clarabelle Beaubien's description -facsimileTelephoneNumber: +1 213 363-5649 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 684-8880 -title: Chief Janitorial Evangelist -userPassword: Password1 -uid: BeaubieC -givenName: Clarabelle -mail: BeaubieC@02a64bb675cb4342ba7d85e9f53c10e3.bitwarden.com -carLicense: OB0IF9 -departmentNumber: 7848 -employeeType: Contract -homePhone: +1 213 888-6186 -initials: C. B. -mobile: +1 213 955-9239 -pager: +1 213 863-8145 -roomNumber: 8380 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Janot Carella,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janot Carella -sn: Carella -description: This is Janot Carella's description -facsimileTelephoneNumber: +1 804 555-7637 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 489-3628 -title: Supreme Administrative Developer -userPassword: Password1 -uid: CarellaJ -givenName: Janot -mail: CarellaJ@99adc70861e74db5b3e496e79ef1d82c.bitwarden.com -carLicense: 6OTYPA -departmentNumber: 5985 -employeeType: Normal -homePhone: +1 804 596-4075 -initials: J. C. -mobile: +1 804 810-3266 -pager: +1 804 408-6811 -roomNumber: 8164 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vanny Blauer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanny Blauer -sn: Blauer -description: This is Vanny Blauer's description -facsimileTelephoneNumber: +1 206 660-2691 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 933-1426 -title: Junior Product Testing Architect -userPassword: Password1 -uid: BlauerV -givenName: Vanny -mail: BlauerV@6d9d7b1cc3684aeba19170292652b3d0.bitwarden.com -carLicense: JSL8PJ -departmentNumber: 6957 -employeeType: Contract -homePhone: +1 206 759-8728 -initials: V. B. -mobile: +1 206 117-7136 -pager: +1 206 529-4984 -roomNumber: 9022 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rania Rymkiewicz -sn: Rymkiewicz -description: This is Rania Rymkiewicz's description -facsimileTelephoneNumber: +1 804 112-9511 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 231-4599 -title: Supreme Janitorial Developer -userPassword: Password1 -uid: RymkiewR -givenName: Rania -mail: RymkiewR@bf2777e1bdc741d1becaefb23144f2ff.bitwarden.com -carLicense: SBPOHW -departmentNumber: 3402 -employeeType: Employee -homePhone: +1 804 113-7389 -initials: R. R. -mobile: +1 804 281-7541 -pager: +1 804 347-6535 -roomNumber: 9125 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dineke Sheth,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dineke Sheth -sn: Sheth -description: This is Dineke Sheth's description -facsimileTelephoneNumber: +1 804 402-3490 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 804 877-4006 -title: Junior Payroll Dictator -userPassword: Password1 -uid: ShethD -givenName: Dineke -mail: ShethD@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com -carLicense: CE52FD -departmentNumber: 5916 -employeeType: Employee -homePhone: +1 804 140-7296 -initials: D. S. -mobile: +1 804 342-7297 -pager: +1 804 161-5387 -roomNumber: 8120 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Feliza Camblin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Feliza Camblin -sn: Camblin -description: This is Feliza Camblin's description -facsimileTelephoneNumber: +1 213 825-2623 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 406-5220 -title: Chief Product Development Janitor -userPassword: Password1 -uid: CamblinF -givenName: Feliza -mail: CamblinF@56aabbc898544c8399acb68bd9f1ecb0.bitwarden.com -carLicense: S1APYP -departmentNumber: 9804 -employeeType: Contract -homePhone: +1 213 540-9093 -initials: F. C. -mobile: +1 213 681-2985 -pager: +1 213 359-3817 -roomNumber: 9437 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zonda Bartush,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zonda Bartush -sn: Bartush -description: This is Zonda Bartush's description -facsimileTelephoneNumber: +1 804 354-3510 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 191-2764 -title: Master Payroll Madonna -userPassword: Password1 -uid: BartushZ -givenName: Zonda -mail: BartushZ@321b01a1b92242e68a892ee12821e529.bitwarden.com -carLicense: JUGS0N -departmentNumber: 8005 -employeeType: Normal -homePhone: +1 804 614-4748 -initials: Z. B. -mobile: +1 804 978-5531 -pager: +1 804 210-1316 -roomNumber: 8552 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Berneta Fainaru -sn: Fainaru -description: This is Berneta Fainaru's description -facsimileTelephoneNumber: +1 510 470-9582 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 332-4951 -title: Master Janitorial Admin -userPassword: Password1 -uid: FainaruB -givenName: Berneta -mail: FainaruB@7e878d5ac7f34222a15cdadf43462965.bitwarden.com -carLicense: RT1RKO -departmentNumber: 5406 -employeeType: Employee -homePhone: +1 510 962-7256 -initials: B. F. -mobile: +1 510 561-1595 -pager: +1 510 310-3433 -roomNumber: 9181 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Radford Wiklund,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Radford Wiklund -sn: Wiklund -description: This is Radford Wiklund's description -facsimileTelephoneNumber: +1 415 773-6528 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 199-6798 -title: Junior Human Resources Admin -userPassword: Password1 -uid: WiklundR -givenName: Radford -mail: WiklundR@7457f3dc34da48928e7e6436d305b132.bitwarden.com -carLicense: 895OV2 -departmentNumber: 1165 -employeeType: Normal -homePhone: +1 415 602-5690 -initials: R. W. -mobile: +1 415 880-6426 -pager: +1 415 609-1993 -roomNumber: 8630 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pamella Sosa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pamella Sosa -sn: Sosa -description: This is Pamella Sosa's description -facsimileTelephoneNumber: +1 415 882-2600 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 808-7042 -title: Master Payroll Grunt -userPassword: Password1 -uid: SosaP -givenName: Pamella -mail: SosaP@02d364e8b5314cbabf82326287f95a37.bitwarden.com -carLicense: EI8HD2 -departmentNumber: 8750 -employeeType: Normal -homePhone: +1 415 912-7898 -initials: P. S. -mobile: +1 415 300-4149 -pager: +1 415 606-5756 -roomNumber: 9060 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marya Felton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marya Felton -sn: Felton -description: This is Marya Felton's description -facsimileTelephoneNumber: +1 213 344-4757 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 213 297-1324 -title: Junior Janitorial Vice President -userPassword: Password1 -uid: FeltonM -givenName: Marya -mail: FeltonM@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com -carLicense: 0TRJUE -departmentNumber: 8449 -employeeType: Normal -homePhone: +1 213 822-4067 -initials: M. F. -mobile: +1 213 204-4416 -pager: +1 213 825-6312 -roomNumber: 8592 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Aindrea Cairns,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aindrea Cairns -sn: Cairns -description: This is Aindrea Cairns's description -facsimileTelephoneNumber: +1 818 845-2991 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 293-7056 -title: Junior Peons Engineer -userPassword: Password1 -uid: CairnsA -givenName: Aindrea -mail: CairnsA@0cc0e22ab87d4684add7d45a9b0fda60.bitwarden.com -carLicense: VIB4DR -departmentNumber: 9862 -employeeType: Contract -homePhone: +1 818 567-7582 -initials: A. C. -mobile: +1 818 321-3558 -pager: +1 818 213-9396 -roomNumber: 9650 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Katherina Deek,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katherina Deek -sn: Deek -description: This is Katherina Deek's description -facsimileTelephoneNumber: +1 206 719-1358 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 449-2613 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: DeekK -givenName: Katherina -mail: DeekK@fb4a2dbd97ab48dfa6d2e8c5573179c0.bitwarden.com -carLicense: RFJJB7 -departmentNumber: 7493 -employeeType: Employee -homePhone: +1 206 371-2738 -initials: K. D. -mobile: +1 206 351-5894 -pager: +1 206 320-5868 -roomNumber: 8914 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ardeen Grasman,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardeen Grasman -sn: Grasman -description: This is Ardeen Grasman's description -facsimileTelephoneNumber: +1 213 717-9984 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 520-3815 -title: Supreme Payroll Dictator -userPassword: Password1 -uid: GrasmanA -givenName: Ardeen -mail: GrasmanA@f71e60ae996f4c5ebaf5d7f30d0cd29a.bitwarden.com -carLicense: M2AKCK -departmentNumber: 6241 -employeeType: Employee -homePhone: +1 213 650-6047 -initials: A. G. -mobile: +1 213 650-9453 -pager: +1 213 426-4881 -roomNumber: 8682 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Isin VanOorschot,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Isin VanOorschot -sn: VanOorschot -description: This is Isin VanOorschot's description -facsimileTelephoneNumber: +1 415 600-7076 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 844-6883 -title: Supreme Administrative Punk -userPassword: Password1 -uid: VanOorsI -givenName: Isin -mail: VanOorsI@a5d2c703b13b45c8a8419761826a32aa.bitwarden.com -carLicense: QOJ1KE -departmentNumber: 4186 -employeeType: Normal -homePhone: +1 415 206-6485 -initials: I. V. -mobile: +1 415 215-6795 -pager: +1 415 629-2118 -roomNumber: 9736 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karrah Laferriere,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karrah Laferriere -sn: Laferriere -description: This is Karrah Laferriere's description -facsimileTelephoneNumber: +1 206 409-8809 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 614-7057 -title: Junior Product Development Artist -userPassword: Password1 -uid: LaferriK -givenName: Karrah -mail: LaferriK@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com -carLicense: 5V96C1 -departmentNumber: 5035 -employeeType: Contract -homePhone: +1 206 977-8088 -initials: K. L. -mobile: +1 206 915-8234 -pager: +1 206 885-3317 -roomNumber: 9525 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sanae Baynes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanae Baynes -sn: Baynes -description: This is Sanae Baynes's description -facsimileTelephoneNumber: +1 213 574-9063 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 899-4259 -title: Junior Human Resources President -userPassword: Password1 -uid: BaynesS -givenName: Sanae -mail: BaynesS@9db63434a78e416392ae93e3976c1bfc.bitwarden.com -carLicense: UOCIPO -departmentNumber: 3481 -employeeType: Normal -homePhone: +1 213 717-1718 -initials: S. B. -mobile: +1 213 455-1853 -pager: +1 213 848-5476 -roomNumber: 9328 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ortensia Nawaby -sn: Nawaby -description: This is Ortensia Nawaby's description -facsimileTelephoneNumber: +1 206 862-5480 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 567-8139 -title: Master Human Resources Janitor -userPassword: Password1 -uid: NawabyO -givenName: Ortensia -mail: NawabyO@1d0711f3e8d548e39cdf575baeb4ce17.bitwarden.com -carLicense: O8KWHU -departmentNumber: 5859 -employeeType: Normal -homePhone: +1 206 938-8317 -initials: O. N. -mobile: +1 206 631-3734 -pager: +1 206 931-3444 -roomNumber: 8968 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zainab Doan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zainab Doan -sn: Doan -description: This is Zainab Doan's description -facsimileTelephoneNumber: +1 206 926-2126 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 206 694-1388 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: DoanZ -givenName: Zainab -mail: DoanZ@aa334b1a73514c2283534b58c2c9420b.bitwarden.com -carLicense: CH1TBL -departmentNumber: 8890 -employeeType: Normal -homePhone: +1 206 463-5283 -initials: Z. D. -mobile: +1 206 129-2233 -pager: +1 206 386-7415 -roomNumber: 9917 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cassy Seagle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cassy Seagle -sn: Seagle -description: This is Cassy Seagle's description -facsimileTelephoneNumber: +1 206 921-6773 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 983-9351 -title: Associate Management Architect -userPassword: Password1 -uid: SeagleC -givenName: Cassy -mail: SeagleC@69110fc674fa4f148260f46145056777.bitwarden.com -carLicense: E4TLPO -departmentNumber: 6328 -employeeType: Employee -homePhone: +1 206 412-6612 -initials: C. S. -mobile: +1 206 177-6537 -pager: +1 206 632-9075 -roomNumber: 8494 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wonda McCallum,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wonda McCallum -sn: McCallum -description: This is Wonda McCallum's description -facsimileTelephoneNumber: +1 804 698-7146 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 804 288-6642 -title: Junior Human Resources Czar -userPassword: Password1 -uid: McCalluW -givenName: Wonda -mail: McCalluW@b33a6b1f0ec54653bdc3b3ea69c66e04.bitwarden.com -carLicense: DOIY4N -departmentNumber: 5577 -employeeType: Normal -homePhone: +1 804 880-2223 -initials: W. M. -mobile: +1 804 814-8338 -pager: +1 804 974-8251 -roomNumber: 8801 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Florina Meredith,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florina Meredith -sn: Meredith -description: This is Florina Meredith's description -facsimileTelephoneNumber: +1 213 850-2083 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 213 300-7039 -title: Associate Payroll Janitor -userPassword: Password1 -uid: MereditF -givenName: Florina -mail: MereditF@fb292094ced54372abffc8f9b3f21a26.bitwarden.com -carLicense: S68FNJ -departmentNumber: 9759 -employeeType: Employee -homePhone: +1 213 806-1177 -initials: F. M. -mobile: +1 213 790-6921 -pager: +1 213 905-2219 -roomNumber: 9518 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nat Sadeghi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nat Sadeghi -sn: Sadeghi -description: This is Nat Sadeghi's description -facsimileTelephoneNumber: +1 415 964-6071 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 415 809-1687 -title: Supreme Peons Vice President -userPassword: Password1 -uid: SadeghiN -givenName: Nat -mail: SadeghiN@ee0a394b2c0349338a67625cbf75e536.bitwarden.com -carLicense: GWGDUJ -departmentNumber: 1215 -employeeType: Employee -homePhone: +1 415 964-8040 -initials: N. S. -mobile: +1 415 688-8056 -pager: +1 415 149-6831 -roomNumber: 8789 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Hendra Viegas,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hendra Viegas -sn: Viegas -description: This is Hendra Viegas's description -facsimileTelephoneNumber: +1 818 551-9573 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 984-6767 -title: Supreme Management Visionary -userPassword: Password1 -uid: ViegasH -givenName: Hendra -mail: ViegasH@eb1784d5a4ea473392ddeedf92456d2b.bitwarden.com -carLicense: 60ORBX -departmentNumber: 5355 -employeeType: Employee -homePhone: +1 818 363-2115 -initials: H. V. -mobile: +1 818 795-9892 -pager: +1 818 917-4867 -roomNumber: 9450 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bettie Coutellier,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettie Coutellier -sn: Coutellier -description: This is Bettie Coutellier's description -facsimileTelephoneNumber: +1 804 804-9156 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 670-9764 -title: Master Payroll Fellow -userPassword: Password1 -uid: CoutellB -givenName: Bettie -mail: CoutellB@cf6dac232ed84a4abc7d8879d016deb3.bitwarden.com -carLicense: 45G27S -departmentNumber: 8167 -employeeType: Employee -homePhone: +1 804 573-9864 -initials: B. C. -mobile: +1 804 841-1695 -pager: +1 804 848-7544 -roomNumber: 8319 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fifi Daaboul -sn: Daaboul -description: This is Fifi Daaboul's description -facsimileTelephoneNumber: +1 206 771-9468 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 206 289-4903 -title: Associate Janitorial Technician -userPassword: Password1 -uid: DaaboulF -givenName: Fifi -mail: DaaboulF@8557bf093f9c42cfa11eafadaf8fc9c1.bitwarden.com -carLicense: GGVP9J -departmentNumber: 8457 -employeeType: Employee -homePhone: +1 206 278-5158 -initials: F. D. -mobile: +1 206 453-4660 -pager: +1 206 205-5898 -roomNumber: 8457 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Davis Connolly,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davis Connolly -sn: Connolly -description: This is Davis Connolly's description -facsimileTelephoneNumber: +1 206 187-4418 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 206 530-2088 -title: Supreme Peons Sales Rep -userPassword: Password1 -uid: ConnollD -givenName: Davis -mail: ConnollD@42e3b9b8ee274c8a9cda68af97a76f9f.bitwarden.com -carLicense: JK8SHH -departmentNumber: 2375 -employeeType: Normal -homePhone: +1 206 605-1347 -initials: D. C. -mobile: +1 206 658-8611 -pager: +1 206 782-5128 -roomNumber: 8555 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carma Rittenhouse,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carma Rittenhouse -sn: Rittenhouse -description: This is Carma Rittenhouse's description -facsimileTelephoneNumber: +1 415 352-6139 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 415 590-2320 -title: Supreme Peons Madonna -userPassword: Password1 -uid: RittenhC -givenName: Carma -mail: RittenhC@9d33ffd4da1445afb8600e31e26d24d8.bitwarden.com -carLicense: BRWCI8 -departmentNumber: 6208 -employeeType: Employee -homePhone: +1 415 145-4620 -initials: C. R. -mobile: +1 415 567-6440 -pager: +1 415 473-9287 -roomNumber: 9546 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kissie Pastorek -sn: Pastorek -description: This is Kissie Pastorek's description -facsimileTelephoneNumber: +1 818 740-4419 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 575-3302 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: PastoreK -givenName: Kissie -mail: PastoreK@fdfa91cc52474679acb5b6774dfb094f.bitwarden.com -carLicense: YXAI4S -departmentNumber: 2845 -employeeType: Normal -homePhone: +1 818 644-5875 -initials: K. P. -mobile: +1 818 771-6152 -pager: +1 818 372-5730 -roomNumber: 8890 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sarah Longchamps,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarah Longchamps -sn: Longchamps -description: This is Sarah Longchamps's description -facsimileTelephoneNumber: +1 510 238-9640 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 372-7388 -title: Chief Peons Technician -userPassword: Password1 -uid: LongchaS -givenName: Sarah -mail: LongchaS@b6298340ba144f0b8733c3b9bced2139.bitwarden.com -carLicense: 574SPY -departmentNumber: 2981 -employeeType: Employee -homePhone: +1 510 431-9755 -initials: S. L. -mobile: +1 510 194-3192 -pager: +1 510 931-7700 -roomNumber: 8796 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Haroon Neefs,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haroon Neefs -sn: Neefs -description: This is Haroon Neefs's description -facsimileTelephoneNumber: +1 818 593-8321 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 818 527-5426 -title: Junior Human Resources Mascot -userPassword: Password1 -uid: NeefsH -givenName: Haroon -mail: NeefsH@9e8d975d9dd144cc96db09fe1a3c236a.bitwarden.com -carLicense: 7T11VG -departmentNumber: 3483 -employeeType: Employee -homePhone: +1 818 732-9147 -initials: H. N. -mobile: +1 818 900-3869 -pager: +1 818 981-5514 -roomNumber: 8024 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilysa Bulkovshteyn -sn: Bulkovshteyn -description: This is Ilysa Bulkovshteyn's description -facsimileTelephoneNumber: +1 818 984-9804 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 679-7029 -title: Associate Janitorial Czar -userPassword: Password1 -uid: BulkovsI -givenName: Ilysa -mail: BulkovsI@e0c925d836104225ad7119289c418ab5.bitwarden.com -carLicense: FTH0US -departmentNumber: 2693 -employeeType: Normal -homePhone: +1 818 344-8945 -initials: I. B. -mobile: +1 818 984-8780 -pager: +1 818 426-1127 -roomNumber: 8855 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jenson Soumis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenson Soumis -sn: Soumis -description: This is Jenson Soumis's description -facsimileTelephoneNumber: +1 510 763-2805 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 214-8436 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: SoumisJ -givenName: Jenson -mail: SoumisJ@999816b5a97d4ddb86dcefd199a0b0ab.bitwarden.com -carLicense: URXMDW -departmentNumber: 7905 -employeeType: Contract -homePhone: +1 510 864-3705 -initials: J. S. -mobile: +1 510 765-5317 -pager: +1 510 203-1252 -roomNumber: 9229 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Minni Malynowsky,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minni Malynowsky -sn: Malynowsky -description: This is Minni Malynowsky's description -facsimileTelephoneNumber: +1 408 686-5233 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 723-3623 -title: Junior Product Development Writer -userPassword: Password1 -uid: MalynowM -givenName: Minni -mail: MalynowM@df91f02938d046d8adb3f260f0e722ef.bitwarden.com -carLicense: 5DXCF2 -departmentNumber: 5468 -employeeType: Employee -homePhone: +1 408 676-6902 -initials: M. M. -mobile: +1 408 637-5025 -pager: +1 408 497-3515 -roomNumber: 8769 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Issam Coord,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Issam Coord -sn: Coord -description: This is Issam Coord's description -facsimileTelephoneNumber: +1 415 755-8987 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 415 513-5334 -title: Junior Product Testing Admin -userPassword: Password1 -uid: CoordI -givenName: Issam -mail: CoordI@c3fff83a4ae14cdfafade886fdcd1bf4.bitwarden.com -carLicense: FS7QN6 -departmentNumber: 7704 -employeeType: Normal -homePhone: +1 415 880-3747 -initials: I. C. -mobile: +1 415 669-9773 -pager: +1 415 432-5453 -roomNumber: 8941 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lynna Salam,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynna Salam -sn: Salam -description: This is Lynna Salam's description -facsimileTelephoneNumber: +1 510 883-6655 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 590-5022 -title: Associate Administrative Dictator -userPassword: Password1 -uid: SalamL -givenName: Lynna -mail: SalamL@88d921807e6d4efcbe781081bb56a4f0.bitwarden.com -carLicense: W24C07 -departmentNumber: 1612 -employeeType: Employee -homePhone: +1 510 597-2952 -initials: L. S. -mobile: +1 510 998-3600 -pager: +1 510 343-6656 -roomNumber: 9672 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Huong Quinones,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Huong Quinones -sn: Quinones -description: This is Huong Quinones's description -facsimileTelephoneNumber: +1 510 405-8446 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 510 909-4834 -title: Supreme Payroll Stooge -userPassword: Password1 -uid: QuinoneH -givenName: Huong -mail: QuinoneH@982161c18d1c4b49bf26a62584cbb202.bitwarden.com -carLicense: OQQ8UD -departmentNumber: 6023 -employeeType: Normal -homePhone: +1 510 172-1796 -initials: H. Q. -mobile: +1 510 388-2363 -pager: +1 510 248-1314 -roomNumber: 9722 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Class Picard,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Class Picard -sn: Picard -description: This is Class Picard's description -facsimileTelephoneNumber: +1 408 819-7671 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 408 471-2116 -title: Supreme Payroll Warrior -userPassword: Password1 -uid: PicardC -givenName: Class -mail: PicardC@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com -carLicense: 3SQUEA -departmentNumber: 4496 -employeeType: Employee -homePhone: +1 408 291-3179 -initials: C. P. -mobile: +1 408 569-3518 -pager: +1 408 929-7034 -roomNumber: 8794 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerrilee Geddes -sn: Geddes -description: This is Gerrilee Geddes's description -facsimileTelephoneNumber: +1 818 433-6667 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 137-8218 -title: Master Human Resources President -userPassword: Password1 -uid: GeddesG -givenName: Gerrilee -mail: GeddesG@7756ec2c272a477595e6c246408ba8de.bitwarden.com -carLicense: GFS33J -departmentNumber: 4833 -employeeType: Contract -homePhone: +1 818 730-9628 -initials: G. G. -mobile: +1 818 239-2388 -pager: +1 818 405-2994 -roomNumber: 8944 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Craig Kneisel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Craig Kneisel -sn: Kneisel -description: This is Craig Kneisel's description -facsimileTelephoneNumber: +1 213 902-8271 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 751-4902 -title: Master Product Development Consultant -userPassword: Password1 -uid: KneiselC -givenName: Craig -mail: KneiselC@f6a15f7382e844a784e99c66615d4c58.bitwarden.com -carLicense: SRX3CX -departmentNumber: 5575 -employeeType: Employee -homePhone: +1 213 259-3455 -initials: C. K. -mobile: +1 213 864-4101 -pager: +1 213 267-9420 -roomNumber: 8752 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fay Franco,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fay Franco -sn: Franco -description: This is Fay Franco's description -facsimileTelephoneNumber: +1 804 944-3949 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 722-2557 -title: Junior Administrative Developer -userPassword: Password1 -uid: FrancoF -givenName: Fay -mail: FrancoF@c4dfc71b0753437c958ea6ea07827916.bitwarden.com -carLicense: 7RPU3O -departmentNumber: 5571 -employeeType: Employee -homePhone: +1 804 554-4240 -initials: F. F. -mobile: +1 804 662-5156 -pager: +1 804 572-3509 -roomNumber: 8620 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rijn Zoellner -sn: Zoellner -description: This is Rijn Zoellner's description -facsimileTelephoneNumber: +1 415 930-3794 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 415 961-9161 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: ZoellneR -givenName: Rijn -mail: ZoellneR@c26660b210ac46199a711eb8c8869838.bitwarden.com -carLicense: Q2NI6C -departmentNumber: 7200 -employeeType: Normal -homePhone: +1 415 547-1475 -initials: R. Z. -mobile: +1 415 820-6546 -pager: +1 415 423-7646 -roomNumber: 8080 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgeanna Strauch -sn: Strauch -description: This is Georgeanna Strauch's description -facsimileTelephoneNumber: +1 206 389-9122 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 903-3852 -title: Master Product Development Sales Rep -userPassword: Password1 -uid: StrauchG -givenName: Georgeanna -mail: StrauchG@a202d5209c7047ff8a841ac785c909b8.bitwarden.com -carLicense: Y5DNJC -departmentNumber: 1574 -employeeType: Normal -homePhone: +1 206 383-8591 -initials: G. S. -mobile: +1 206 646-3508 -pager: +1 206 478-1431 -roomNumber: 8152 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gae Garrett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gae Garrett -sn: Garrett -description: This is Gae Garrett's description -facsimileTelephoneNumber: +1 408 841-8406 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 408 729-8519 -title: Supreme Peons Czar -userPassword: Password1 -uid: GarrettG -givenName: Gae -mail: GarrettG@627980edebc9489aa1090404c21eeba1.bitwarden.com -carLicense: 5SDEH2 -departmentNumber: 6023 -employeeType: Normal -homePhone: +1 408 997-7292 -initials: G. G. -mobile: +1 408 360-5731 -pager: +1 408 280-6406 -roomNumber: 9161 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Martita Sales,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martita Sales -sn: Sales -description: This is Martita Sales's description -facsimileTelephoneNumber: +1 408 376-6833 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 367-9940 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: SalesM -givenName: Martita -mail: SalesM@67f4fc26cd9549b3a5eca4e7223ddec0.bitwarden.com -carLicense: O6KUCR -departmentNumber: 3062 -employeeType: Employee -homePhone: +1 408 141-5541 -initials: M. S. -mobile: +1 408 440-4821 -pager: +1 408 844-2865 -roomNumber: 8512 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Amaleta McClelland,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amaleta McClelland -sn: McClelland -description: This is Amaleta McClelland's description -facsimileTelephoneNumber: +1 804 957-2388 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 516-1399 -title: Junior Management Czar -userPassword: Password1 -uid: McClellA -givenName: Amaleta -mail: McClellA@403ad564c08e47b8824594419bf3ec17.bitwarden.com -carLicense: AR336X -departmentNumber: 2008 -employeeType: Employee -homePhone: +1 804 696-7935 -initials: A. M. -mobile: +1 804 520-5169 -pager: +1 804 190-7376 -roomNumber: 8240 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rico Vandevalk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rico Vandevalk -sn: Vandevalk -description: This is Rico Vandevalk's description -facsimileTelephoneNumber: +1 415 588-5578 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 737-1578 -title: Supreme Administrative Writer -userPassword: Password1 -uid: VandevaR -givenName: Rico -mail: VandevaR@415554f5adbe4c70a27d90a1a4deab5a.bitwarden.com -carLicense: GQAKEX -departmentNumber: 4056 -employeeType: Employee -homePhone: +1 415 771-9174 -initials: R. V. -mobile: +1 415 388-4388 -pager: +1 415 884-7024 -roomNumber: 8364 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryce Luetchford,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nanny Kempski,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nanny Kempski -sn: Kempski -description: This is Nanny Kempski's description -facsimileTelephoneNumber: +1 408 158-7590 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 645-2558 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: KempskiN -givenName: Nanny -mail: KempskiN@321b01a1b92242e68a892ee12821e529.bitwarden.com -carLicense: PV1QLJ -departmentNumber: 3740 -employeeType: Employee -homePhone: +1 408 610-8035 -initials: N. K. -mobile: +1 408 478-6064 -pager: +1 408 922-5069 -roomNumber: 8909 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Antonella Stambouli,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antonella Stambouli -sn: Stambouli -description: This is Antonella Stambouli's description -facsimileTelephoneNumber: +1 206 396-3320 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 720-4821 -title: Associate Management Fellow -userPassword: Password1 -uid: StambouA -givenName: Antonella -mail: StambouA@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com -carLicense: K5TROO -departmentNumber: 8871 -employeeType: Employee -homePhone: +1 206 197-2439 -initials: A. S. -mobile: +1 206 701-6360 -pager: +1 206 665-7142 -roomNumber: 9971 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bibbye Aldhizer -sn: Aldhizer -description: This is Bibbye Aldhizer's description -facsimileTelephoneNumber: +1 804 661-2964 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 679-8889 -title: Associate Product Testing Architect -userPassword: Password1 -uid: AldhizeB -givenName: Bibbye -mail: AldhizeB@ae68418003e140fcbb7a4f2dbfa228c1.bitwarden.com -carLicense: L63AOG -departmentNumber: 7585 -employeeType: Employee -homePhone: +1 804 563-7539 -initials: B. A. -mobile: +1 804 614-4997 -pager: +1 804 413-2557 -roomNumber: 9158 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Millard Tromm,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rhett Womack,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rhett Womack -sn: Womack -description: This is Rhett Womack's description -facsimileTelephoneNumber: +1 206 155-9855 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 338-1298 -title: Junior Management Vice President -userPassword: Password1 -uid: WomackR -givenName: Rhett -mail: WomackR@9c1452db789c444e9e9d833c048f2e21.bitwarden.com -carLicense: B8AM70 -departmentNumber: 9684 -employeeType: Contract -homePhone: +1 206 626-6467 -initials: R. W. -mobile: +1 206 465-2326 -pager: +1 206 611-1858 -roomNumber: 9948 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kenneth Afkham,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kenneth Afkham -sn: Afkham -description: This is Kenneth Afkham's description -facsimileTelephoneNumber: +1 213 769-3114 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 469-4303 -title: Master Peons Czar -userPassword: Password1 -uid: AfkhamK -givenName: Kenneth -mail: AfkhamK@975433a41ce24ba59e1df5051b6724e9.bitwarden.com -carLicense: 9NWP8G -departmentNumber: 2776 -employeeType: Employee -homePhone: +1 213 541-7004 -initials: K. A. -mobile: +1 213 820-7371 -pager: +1 213 504-8489 -roomNumber: 8334 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Asmar Dermardiros,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Asmar Dermardiros -sn: Dermardiros -description: This is Asmar Dermardiros's description -facsimileTelephoneNumber: +1 804 853-3933 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 804 653-6796 -title: Supreme Peons Visionary -userPassword: Password1 -uid: DermardA -givenName: Asmar -mail: DermardA@239b668cfa5b4428b1bdcd0e10203d09.bitwarden.com -carLicense: GC7XBN -departmentNumber: 9698 -employeeType: Normal -homePhone: +1 804 146-8698 -initials: A. D. -mobile: +1 804 505-9652 -pager: +1 804 520-6105 -roomNumber: 9595 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marabel ORourke,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marabel ORourke -sn: ORourke -description: This is Marabel ORourke's description -facsimileTelephoneNumber: +1 213 437-3475 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 945-6047 -title: Supreme Human Resources Grunt -userPassword: Password1 -uid: ORourkeM -givenName: Marabel -mail: ORourkeM@53d9002f0c614599a72d6e2756021160.bitwarden.com -carLicense: PAVRSW -departmentNumber: 7210 -employeeType: Normal -homePhone: +1 213 960-3962 -initials: M. O. -mobile: +1 213 793-5980 -pager: +1 213 673-6658 -roomNumber: 9380 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lowry Fahey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lowry Fahey -sn: Fahey -description: This is Lowry Fahey's description -facsimileTelephoneNumber: +1 510 698-1987 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 510 340-3743 -title: Supreme Management Punk -userPassword: Password1 -uid: FaheyL -givenName: Lowry -mail: FaheyL@2efaf5e757274a05a9df0223ae176be1.bitwarden.com -carLicense: DRO2G8 -departmentNumber: 5124 -employeeType: Contract -homePhone: +1 510 821-1721 -initials: L. F. -mobile: +1 510 769-1367 -pager: +1 510 336-5055 -roomNumber: 9006 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Christy Phalpher,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christy Phalpher -sn: Phalpher -description: This is Christy Phalpher's description -facsimileTelephoneNumber: +1 206 841-9506 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 648-2029 -title: Chief Administrative Punk -userPassword: Password1 -uid: PhalpheC -givenName: Christy -mail: PhalpheC@3313782fad5f448f843eeeeabc4b6528.bitwarden.com -carLicense: DTPBY4 -departmentNumber: 1488 -employeeType: Normal -homePhone: +1 206 640-4665 -initials: C. P. -mobile: +1 206 217-8316 -pager: +1 206 150-6928 -roomNumber: 8523 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dolorita Binggeli -sn: Binggeli -description: This is Dolorita Binggeli's description -facsimileTelephoneNumber: +1 510 269-4001 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 189-6507 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: BinggelD -givenName: Dolorita -mail: BinggelD@52e746b148db486a82aefd7394487227.bitwarden.com -carLicense: WPTR3D -departmentNumber: 3446 -employeeType: Normal -homePhone: +1 510 819-1016 -initials: D. B. -mobile: +1 510 122-5829 -pager: +1 510 450-7375 -roomNumber: 9138 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emr Hacker,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emr Hacker -sn: Hacker -description: This is Emr Hacker's description -facsimileTelephoneNumber: +1 804 975-2461 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 953-7883 -title: Supreme Management Czar -userPassword: Password1 -uid: HackerE -givenName: Emr -mail: HackerE@703805ed33844be785223bfd3a5cb030.bitwarden.com -carLicense: XDIDBC -departmentNumber: 2388 -employeeType: Employee -homePhone: +1 804 799-6867 -initials: E. H. -mobile: +1 804 481-7374 -pager: +1 804 209-7778 -roomNumber: 9475 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Estelle Robieux,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Estelle Robieux -sn: Robieux -description: This is Estelle Robieux's description -facsimileTelephoneNumber: +1 206 372-3920 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 206 957-3329 -title: Junior Peons Technician -userPassword: Password1 -uid: RobieuxE -givenName: Estelle -mail: RobieuxE@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com -carLicense: XAYK2V -departmentNumber: 9500 -employeeType: Normal -homePhone: +1 206 778-4400 -initials: E. R. -mobile: +1 206 477-4636 -pager: +1 206 934-3442 -roomNumber: 9412 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abahri Hawrysh -sn: Hawrysh -description: This is Abahri Hawrysh's description -facsimileTelephoneNumber: +1 213 591-1329 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 338-9757 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: HawryshA -givenName: Abahri -mail: HawryshA@b827aeadf87046f484e6a5d514c5b320.bitwarden.com -carLicense: 1Y6QLT -departmentNumber: 1296 -employeeType: Contract -homePhone: +1 213 550-4631 -initials: A. H. -mobile: +1 213 714-5987 -pager: +1 213 775-7772 -roomNumber: 8736 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheilakathryn Hirshman -sn: Hirshman -description: This is Sheilakathryn Hirshman's description -facsimileTelephoneNumber: +1 804 178-1395 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 917-9701 -title: Master Product Development Figurehead -userPassword: Password1 -uid: HirshmaS -givenName: Sheilakathryn -mail: HirshmaS@dfd74a54e46140bbbd208154864b4090.bitwarden.com -carLicense: RBDUA5 -departmentNumber: 6502 -employeeType: Employee -homePhone: +1 804 561-1741 -initials: S. H. -mobile: +1 804 278-6345 -pager: +1 804 295-1220 -roomNumber: 9589 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ashraf Maybee,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashraf Maybee -sn: Maybee -description: This is Ashraf Maybee's description -facsimileTelephoneNumber: +1 213 859-3084 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 740-4647 -title: Chief Administrative Sales Rep -userPassword: Password1 -uid: MaybeeA -givenName: Ashraf -mail: MaybeeA@44096bc0588c471797cb8902036037bd.bitwarden.com -carLicense: VR6LV0 -departmentNumber: 1074 -employeeType: Contract -homePhone: +1 213 900-1162 -initials: A. M. -mobile: +1 213 207-4875 -pager: +1 213 934-8965 -roomNumber: 8480 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bakel Sils,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bakel Sils -sn: Sils -description: This is Bakel Sils's description -facsimileTelephoneNumber: +1 804 455-3476 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 414-4058 -title: Chief Product Testing Warrior -userPassword: Password1 -uid: SilsB -givenName: Bakel -mail: SilsB@a54c7df8ebbf43f99b4f24faf5b4f79c.bitwarden.com -carLicense: Q0E0RV -departmentNumber: 9816 -employeeType: Contract -homePhone: +1 804 141-3711 -initials: B. S. -mobile: +1 804 197-8333 -pager: +1 804 724-2364 -roomNumber: 9014 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Linnell Wepf,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Linnell Wepf -sn: Wepf -description: This is Linnell Wepf's description -facsimileTelephoneNumber: +1 415 142-1333 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 415 891-4220 -title: Supreme Peons Warrior -userPassword: Password1 -uid: WepfL -givenName: Linnell -mail: WepfL@4d236ad201e144feaf6ab19937ae47de.bitwarden.com -carLicense: W9OASA -departmentNumber: 9464 -employeeType: Normal -homePhone: +1 415 603-4965 -initials: L. W. -mobile: +1 415 991-5231 -pager: +1 415 381-7053 -roomNumber: 8665 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Foad Lebeau,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Foad Lebeau -sn: Lebeau -description: This is Foad Lebeau's description -facsimileTelephoneNumber: +1 510 175-8844 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 580-2660 -title: Chief Janitorial Madonna -userPassword: Password1 -uid: LebeauF -givenName: Foad -mail: LebeauF@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com -carLicense: RWMG74 -departmentNumber: 9529 -employeeType: Employee -homePhone: +1 510 637-5934 -initials: F. L. -mobile: +1 510 667-5619 -pager: +1 510 277-1012 -roomNumber: 8079 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bal Braverman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bal Braverman -sn: Braverman -description: This is Bal Braverman's description -facsimileTelephoneNumber: +1 213 437-6628 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 979-4580 -title: Master Peons Director -userPassword: Password1 -uid: BravermB -givenName: Bal -mail: BravermB@0d3732b7ea1d4d659dee1e0435292c15.bitwarden.com -carLicense: NNYFV6 -departmentNumber: 5235 -employeeType: Contract -homePhone: +1 213 880-8889 -initials: B. B. -mobile: +1 213 286-5768 -pager: +1 213 243-2699 -roomNumber: 9857 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gib Eslambolchi -sn: Eslambolchi -description: This is Gib Eslambolchi's description -facsimileTelephoneNumber: +1 206 614-6964 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 206 834-9664 -title: Associate Human Resources Pinhead -userPassword: Password1 -uid: EslamboG -givenName: Gib -mail: EslamboG@c8a26fbe5497453bad20457867557fff.bitwarden.com -carLicense: F532UD -departmentNumber: 5992 -employeeType: Normal -homePhone: +1 206 764-5985 -initials: G. E. -mobile: +1 206 531-2219 -pager: +1 206 256-6714 -roomNumber: 8519 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Buda Virchick,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Buda Virchick -sn: Virchick -description: This is Buda Virchick's description -facsimileTelephoneNumber: +1 510 548-9802 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 510 721-9354 -title: Master Janitorial Dictator -userPassword: Password1 -uid: VirchicB -givenName: Buda -mail: VirchicB@6489fafbf61a4caab26d661679e37a51.bitwarden.com -carLicense: KVK9DT -departmentNumber: 5272 -employeeType: Normal -homePhone: +1 510 392-8292 -initials: B. V. -mobile: +1 510 180-9558 -pager: +1 510 421-6970 -roomNumber: 8094 -manager: cn=Teresa Kenkel,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronalda Ambach -sn: Ambach -description: This is Ronalda Ambach's description -facsimileTelephoneNumber: +1 408 675-4425 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 221-2559 -title: Supreme Product Testing Grunt -userPassword: Password1 -uid: AmbachR -givenName: Ronalda -mail: AmbachR@19f0b3104cc549c5972e2013b118e2bf.bitwarden.com -carLicense: JOG3K3 -departmentNumber: 9679 -employeeType: Employee -homePhone: +1 408 183-6408 -initials: R. A. -mobile: +1 408 314-4621 -pager: +1 408 192-5149 -roomNumber: 9522 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meghan Kenyon -sn: Kenyon -description: This is Meghan Kenyon's description -facsimileTelephoneNumber: +1 408 466-4502 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 408 888-4587 -title: Junior Janitorial Madonna -userPassword: Password1 -uid: KenyonM -givenName: Meghan -mail: KenyonM@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com -carLicense: ADMJQQ -departmentNumber: 2667 -employeeType: Contract -homePhone: +1 408 323-3125 -initials: M. K. -mobile: +1 408 620-8706 -pager: +1 408 782-9153 -roomNumber: 8120 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alika Kirchner,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alika Kirchner -sn: Kirchner -description: This is Alika Kirchner's description -facsimileTelephoneNumber: +1 206 930-1281 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 206 857-1728 -title: Associate Peons Visionary -userPassword: Password1 -uid: KirchneA -givenName: Alika -mail: KirchneA@12e070c46c9248eda6657574192aedf1.bitwarden.com -carLicense: 24CS9N -departmentNumber: 3238 -employeeType: Normal -homePhone: +1 206 388-8029 -initials: A. K. -mobile: +1 206 241-2841 -pager: +1 206 404-9346 -roomNumber: 8644 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kata Hagerty,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kata Hagerty -sn: Hagerty -description: This is Kata Hagerty's description -facsimileTelephoneNumber: +1 818 139-8209 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 932-5892 -title: Associate Peons Assistant -userPassword: Password1 -uid: HagertyK -givenName: Kata -mail: HagertyK@939e830de4504aab81a7c388f1546624.bitwarden.com -carLicense: DAID1A -departmentNumber: 5989 -employeeType: Normal -homePhone: +1 818 245-9212 -initials: K. H. -mobile: +1 818 209-3362 -pager: +1 818 655-8413 -roomNumber: 8264 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lorraine Polk,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorraine Polk -sn: Polk -description: This is Lorraine Polk's description -facsimileTelephoneNumber: +1 408 534-5448 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 408 948-8940 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: PolkL -givenName: Lorraine -mail: PolkL@e822d8d41f85463a96816619505c18d0.bitwarden.com -carLicense: MECUM9 -departmentNumber: 6268 -employeeType: Employee -homePhone: +1 408 463-8143 -initials: L. P. -mobile: +1 408 224-4822 -pager: +1 408 809-8712 -roomNumber: 8608 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tildi Washburn,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tildi Washburn -sn: Washburn -description: This is Tildi Washburn's description -facsimileTelephoneNumber: +1 818 275-1564 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 864-4386 -title: Associate Product Testing Admin -userPassword: Password1 -uid: WashburT -givenName: Tildi -mail: WashburT@a8e8db7991ef41888b107f53097f906b.bitwarden.com -carLicense: UCP1YG -departmentNumber: 3061 -employeeType: Employee -homePhone: +1 818 657-6119 -initials: T. W. -mobile: +1 818 369-4862 -pager: +1 818 383-5679 -roomNumber: 9280 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Minette Reva,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minette Reva -sn: Reva -description: This is Minette Reva's description -facsimileTelephoneNumber: +1 415 127-9931 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 497-6714 -title: Associate Payroll Technician -userPassword: Password1 -uid: RevaM -givenName: Minette -mail: RevaM@45638c0afa5e4a23a27125f3cd5aa607.bitwarden.com -carLicense: JC56AA -departmentNumber: 9960 -employeeType: Employee -homePhone: +1 415 591-1715 -initials: M. R. -mobile: +1 415 251-2301 -pager: +1 415 508-5555 -roomNumber: 8309 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Farag Wolter,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farag Wolter -sn: Wolter -description: This is Farag Wolter's description -facsimileTelephoneNumber: +1 206 988-2582 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 506-2506 -title: Master Management Dictator -userPassword: Password1 -uid: WolterF -givenName: Farag -mail: WolterF@0569f2e4dd6a4e4a8a7f59c9d21907c3.bitwarden.com -carLicense: ULFJ15 -departmentNumber: 8131 -employeeType: Employee -homePhone: +1 206 798-9587 -initials: F. W. -mobile: +1 206 114-6189 -pager: +1 206 532-5564 -roomNumber: 8268 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=AnnMarie Valentik,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnnMarie Valentik -sn: Valentik -description: This is AnnMarie Valentik's description -facsimileTelephoneNumber: +1 804 258-3251 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 468-9531 -title: Master Management Janitor -userPassword: Password1 -uid: ValentiA -givenName: AnnMarie -mail: ValentiA@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com -carLicense: L6V0UW -departmentNumber: 9403 -employeeType: Contract -homePhone: +1 804 479-1560 -initials: A. V. -mobile: +1 804 668-6027 -pager: +1 804 227-3548 -roomNumber: 8436 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rudy Kaigler -sn: Kaigler -description: This is Rudy Kaigler's description -facsimileTelephoneNumber: +1 408 153-2860 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 261-6574 -title: Chief Human Resources Grunt -userPassword: Password1 -uid: KaiglerR -givenName: Rudy -mail: KaiglerR@723327dae88a42b1b49dd35709ea4974.bitwarden.com -carLicense: P0RJT6 -departmentNumber: 8456 -employeeType: Normal -homePhone: +1 408 608-7782 -initials: R. K. -mobile: +1 408 197-2449 -pager: +1 408 958-1060 -roomNumber: 9906 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=HooiLee Ronald,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HooiLee Ronald -sn: Ronald -description: This is HooiLee Ronald's description -facsimileTelephoneNumber: +1 415 614-1098 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 415 493-6798 -title: Associate Peons Visionary -userPassword: Password1 -uid: RonaldH -givenName: HooiLee -mail: RonaldH@8bb7a419aa064dabb3a5664772478164.bitwarden.com -carLicense: F3HM52 -departmentNumber: 6229 -employeeType: Normal -homePhone: +1 415 210-2907 -initials: H. R. -mobile: +1 415 658-3446 -pager: +1 415 232-8432 -roomNumber: 8860 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gipsy Raman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gipsy Raman -sn: Raman -description: This is Gipsy Raman's description -facsimileTelephoneNumber: +1 415 710-6315 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 522-2611 -title: Chief Human Resources Architect -userPassword: Password1 -uid: RamanG -givenName: Gipsy -mail: RamanG@f6485fb9c17a4291ac3724383aaae8e7.bitwarden.com -carLicense: 62SLEV -departmentNumber: 2846 -employeeType: Contract -homePhone: +1 415 273-4471 -initials: G. R. -mobile: +1 415 921-5190 -pager: +1 415 400-8100 -roomNumber: 9916 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Akram Nagendra,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akram Nagendra -sn: Nagendra -description: This is Akram Nagendra's description -facsimileTelephoneNumber: +1 510 135-8567 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 510 676-8064 -title: Associate Human Resources Architect -userPassword: Password1 -uid: NagendrA -givenName: Akram -mail: NagendrA@81a2fc82bdcd4a3582b8aa6d409fc9a1.bitwarden.com -carLicense: T1Q8HC -departmentNumber: 3916 -employeeType: Normal -homePhone: +1 510 107-4445 -initials: A. N. -mobile: +1 510 726-6760 -pager: +1 510 626-4433 -roomNumber: 8235 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bevyn Ovans -sn: Ovans -description: This is Bevyn Ovans's description -facsimileTelephoneNumber: +1 510 586-4991 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 900-2309 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: OvansB -givenName: Bevyn -mail: OvansB@5411fa97ed104161bed6dae71e8cb050.bitwarden.com -carLicense: BKN07M -departmentNumber: 6589 -employeeType: Contract -homePhone: +1 510 547-5754 -initials: B. O. -mobile: +1 510 145-8631 -pager: +1 510 359-7368 -roomNumber: 8640 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Glen Majeed,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glen Majeed -sn: Majeed -description: This is Glen Majeed's description -facsimileTelephoneNumber: +1 510 261-9034 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 776-7275 -title: Junior Payroll Dictator -userPassword: Password1 -uid: MajeedG -givenName: Glen -mail: MajeedG@f263976411814a39ae02ef1a1447e567.bitwarden.com -carLicense: W2LNP7 -departmentNumber: 5503 -employeeType: Employee -homePhone: +1 510 381-8293 -initials: G. M. -mobile: +1 510 131-5452 -pager: +1 510 267-9886 -roomNumber: 9545 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marieke Pien,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marieke Pien -sn: Pien -description: This is Marieke Pien's description -facsimileTelephoneNumber: +1 510 778-9373 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 510 184-3342 -title: Chief Janitorial Admin -userPassword: Password1 -uid: PienM -givenName: Marieke -mail: PienM@3118b07730ef4ee1ba02df2d8acb61a4.bitwarden.com -carLicense: LO1V0M -departmentNumber: 4421 -employeeType: Contract -homePhone: +1 510 511-5138 -initials: M. P. -mobile: +1 510 691-3461 -pager: +1 510 752-5013 -roomNumber: 8100 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ingrid Lieure,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ingrid Lieure -sn: Lieure -description: This is Ingrid Lieure's description -facsimileTelephoneNumber: +1 415 531-1081 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 415 269-3904 -title: Supreme Management Vice President -userPassword: Password1 -uid: LieureI -givenName: Ingrid -mail: LieureI@22b03905699c4e05b21e937a3135b87c.bitwarden.com -carLicense: W5CN7C -departmentNumber: 7935 -employeeType: Normal -homePhone: +1 415 661-9455 -initials: I. L. -mobile: +1 415 208-7187 -pager: +1 415 893-7855 -roomNumber: 8517 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Roya Tod,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roya Tod -sn: Tod -description: This is Roya Tod's description -facsimileTelephoneNumber: +1 206 456-5143 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 882-7544 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: TodR -givenName: Roya -mail: TodR@55d1ab95eef3488782a93b7bd4d6acf0.bitwarden.com -carLicense: 0NY8CY -departmentNumber: 7927 -employeeType: Contract -homePhone: +1 206 520-2816 -initials: R. T. -mobile: +1 206 785-7547 -pager: +1 206 488-8538 -roomNumber: 9671 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cherise DeMarco -sn: DeMarco -description: This is Cherise DeMarco's description -facsimileTelephoneNumber: +1 213 361-8437 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 320-4602 -title: Master Human Resources Architect -userPassword: Password1 -uid: DeMarcoC -givenName: Cherise -mail: DeMarcoC@1726f5bfacd044bf871463e64c567d5e.bitwarden.com -carLicense: XSVO55 -departmentNumber: 7329 -employeeType: Employee -homePhone: +1 213 620-1813 -initials: C. D. -mobile: +1 213 260-1164 -pager: +1 213 617-7736 -roomNumber: 8958 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Christye Meridew,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christye Meridew -sn: Meridew -description: This is Christye Meridew's description -facsimileTelephoneNumber: +1 213 115-5538 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 213 888-3676 -title: Master Product Testing Figurehead -userPassword: Password1 -uid: MeridewC -givenName: Christye -mail: MeridewC@96682e2a4433480fa87b37b2ffbd15b6.bitwarden.com -carLicense: S5XIRA -departmentNumber: 6820 -employeeType: Contract -homePhone: +1 213 807-1956 -initials: C. M. -mobile: +1 213 505-4884 -pager: +1 213 527-2840 -roomNumber: 8632 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Patrick Albers,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Patrick Albers -sn: Albers -description: This is Patrick Albers's description -facsimileTelephoneNumber: +1 408 285-5966 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 408 698-1284 -title: Junior Administrative Manager -userPassword: Password1 -uid: AlbersP -givenName: Patrick -mail: AlbersP@d534d4e018bc4513999f8eae2be01976.bitwarden.com -carLicense: 79ESIX -departmentNumber: 5430 -employeeType: Employee -homePhone: +1 408 671-1859 -initials: P. A. -mobile: +1 408 998-1210 -pager: +1 408 975-3013 -roomNumber: 9782 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Doralynn Swyer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doralynn Swyer -sn: Swyer -description: This is Doralynn Swyer's description -facsimileTelephoneNumber: +1 804 971-6686 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 249-5947 -title: Chief Peons Admin -userPassword: Password1 -uid: SwyerD -givenName: Doralynn -mail: SwyerD@900b9e73ea874cc4989de9de3d123d54.bitwarden.com -carLicense: D111VX -departmentNumber: 1000 -employeeType: Normal -homePhone: +1 804 805-6058 -initials: D. S. -mobile: +1 804 788-4354 -pager: +1 804 105-8385 -roomNumber: 9223 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vanni Katsouras,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanni Katsouras -sn: Katsouras -description: This is Vanni Katsouras's description -facsimileTelephoneNumber: +1 213 571-2573 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 213 485-9450 -title: Junior Management Assistant -userPassword: Password1 -uid: KatsourV -givenName: Vanni -mail: KatsourV@8429461810c443b49add09521f9c6b46.bitwarden.com -carLicense: RF64D2 -departmentNumber: 6483 -employeeType: Contract -homePhone: +1 213 551-6687 -initials: V. K. -mobile: +1 213 859-3033 -pager: +1 213 884-5883 -roomNumber: 8721 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rogelio McGrath,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rogelio McGrath -sn: McGrath -description: This is Rogelio McGrath's description -facsimileTelephoneNumber: +1 818 461-5961 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 818 988-9882 -title: Chief Administrative Writer -userPassword: Password1 -uid: McGrathR -givenName: Rogelio -mail: McGrathR@53f9c944c90445fcb9727989bead4466.bitwarden.com -carLicense: XL9PMC -departmentNumber: 2266 -employeeType: Employee -homePhone: +1 818 217-6464 -initials: R. M. -mobile: +1 818 895-7906 -pager: +1 818 341-3391 -roomNumber: 8169 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gareth Bellehumeur -sn: Bellehumeur -description: This is Gareth Bellehumeur's description -facsimileTelephoneNumber: +1 206 411-3796 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 192-5480 -title: Junior Product Testing Technician -userPassword: Password1 -uid: BellehuG -givenName: Gareth -mail: BellehuG@6ee7e09ddbec43048b71898f265116eb.bitwarden.com -carLicense: Q5JQ09 -departmentNumber: 8793 -employeeType: Contract -homePhone: +1 206 674-2509 -initials: G. B. -mobile: +1 206 117-3462 -pager: +1 206 833-7857 -roomNumber: 9734 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Daphine Kutschke,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daphine Kutschke -sn: Kutschke -description: This is Daphine Kutschke's description -facsimileTelephoneNumber: +1 213 725-1128 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 746-9866 -title: Master Administrative Madonna -userPassword: Password1 -uid: KutschkD -givenName: Daphine -mail: KutschkD@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com -carLicense: 9R0LIP -departmentNumber: 5575 -employeeType: Employee -homePhone: +1 213 352-7793 -initials: D. K. -mobile: +1 213 435-7076 -pager: +1 213 563-4499 -roomNumber: 9048 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jin Lyall,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jin Lyall -sn: Lyall -description: This is Jin Lyall's description -facsimileTelephoneNumber: +1 206 429-1617 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 592-7079 -title: Associate Peons Writer -userPassword: Password1 -uid: LyallJ -givenName: Jin -mail: LyallJ@bd234f19e2034627848e6380646db915.bitwarden.com -carLicense: HRU8A9 -departmentNumber: 7122 -employeeType: Normal -homePhone: +1 206 775-1502 -initials: J. L. -mobile: +1 206 730-2684 -pager: +1 206 235-5211 -roomNumber: 9498 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cariotta Loyst,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khurshid Giguere -sn: Giguere -description: This is Khurshid Giguere's description -facsimileTelephoneNumber: +1 415 213-3921 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 116-1160 -title: Master Janitorial Punk -userPassword: Password1 -uid: GiguereK -givenName: Khurshid -mail: GiguereK@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com -carLicense: U0HNAO -departmentNumber: 2960 -employeeType: Employee -homePhone: +1 415 414-1611 -initials: K. G. -mobile: +1 415 482-7538 -pager: +1 415 818-9611 -roomNumber: 9217 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clerissa Maduri,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clerissa Maduri -sn: Maduri -description: This is Clerissa Maduri's description -facsimileTelephoneNumber: +1 804 435-3931 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 650-8776 -title: Associate Administrative Engineer -userPassword: Password1 -uid: MaduriC -givenName: Clerissa -mail: MaduriC@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com -carLicense: 3VNBJS -departmentNumber: 7512 -employeeType: Contract -homePhone: +1 804 390-3029 -initials: C. M. -mobile: +1 804 270-2060 -pager: +1 804 683-6013 -roomNumber: 8230 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Simonne Lukers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Simonne Lukers -sn: Lukers -description: This is Simonne Lukers's description -facsimileTelephoneNumber: +1 415 402-6295 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 252-6092 -title: Junior Management Visionary -userPassword: Password1 -uid: LukersS -givenName: Simonne -mail: LukersS@f1957adbdc8943baae36c793bc84fd7c.bitwarden.com -carLicense: F7NDLU -departmentNumber: 9188 -employeeType: Normal -homePhone: +1 415 214-5990 -initials: S. L. -mobile: +1 415 829-9990 -pager: +1 415 275-3901 -roomNumber: 8932 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jacynth Manto,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacynth Manto -sn: Manto -description: This is Jacynth Manto's description -facsimileTelephoneNumber: +1 510 420-7280 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 967-8294 -title: Supreme Product Testing Engineer -userPassword: Password1 -uid: MantoJ -givenName: Jacynth -mail: MantoJ@bd920fe5c7d549d08f1567ef15f28b56.bitwarden.com -carLicense: 4KJPXF -departmentNumber: 9850 -employeeType: Normal -homePhone: +1 510 337-2670 -initials: J. M. -mobile: +1 510 104-3992 -pager: +1 510 243-8286 -roomNumber: 9402 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emmalyn Bible -sn: Bible -description: This is Emmalyn Bible's description -facsimileTelephoneNumber: +1 804 136-8533 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 239-4239 -title: Chief Human Resources Developer -userPassword: Password1 -uid: BibleE -givenName: Emmalyn -mail: BibleE@327358f986b94dcfa1839385e66d7856.bitwarden.com -carLicense: IEU0PT -departmentNumber: 7117 -employeeType: Contract -homePhone: +1 804 141-2679 -initials: E. B. -mobile: +1 804 464-7066 -pager: +1 804 121-8122 -roomNumber: 8309 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ronan Rattray,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronan Rattray -sn: Rattray -description: This is Ronan Rattray's description -facsimileTelephoneNumber: +1 415 448-3063 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 415 996-1261 -title: Master Human Resources Vice President -userPassword: Password1 -uid: RattrayR -givenName: Ronan -mail: RattrayR@599d357394854e689476d822b0b57fa1.bitwarden.com -carLicense: CKPWP1 -departmentNumber: 6783 -employeeType: Normal -homePhone: +1 415 955-3455 -initials: R. R. -mobile: +1 415 723-4534 -pager: +1 415 165-4889 -roomNumber: 9180 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Doloritas Ocone,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doloritas Ocone -sn: Ocone -description: This is Doloritas Ocone's description -facsimileTelephoneNumber: +1 213 443-4481 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 670-3730 -title: Master Management Engineer -userPassword: Password1 -uid: OconeD -givenName: Doloritas -mail: OconeD@5393bc67f8ee409593915ca305198b36.bitwarden.com -carLicense: 8WVR22 -departmentNumber: 5220 -employeeType: Employee -homePhone: +1 213 210-2477 -initials: D. O. -mobile: +1 213 253-2739 -pager: +1 213 918-3828 -roomNumber: 9984 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Etta Smithson,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Etta Smithson -sn: Smithson -description: This is Etta Smithson's description -facsimileTelephoneNumber: +1 510 200-5635 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 122-3260 -title: Chief Human Resources Janitor -userPassword: Password1 -uid: SmithsoE -givenName: Etta -mail: SmithsoE@101f510449dd4db58ccdaa8d8df89d63.bitwarden.com -carLicense: RE8HAP -departmentNumber: 1987 -employeeType: Employee -homePhone: +1 510 935-1973 -initials: E. S. -mobile: +1 510 117-8906 -pager: +1 510 609-9063 -roomNumber: 9707 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rajiv Moulsoff -sn: Moulsoff -description: This is Rajiv Moulsoff's description -facsimileTelephoneNumber: +1 510 663-2850 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 510 690-4927 -title: Chief Payroll Writer -userPassword: Password1 -uid: MoulsofR -givenName: Rajiv -mail: MoulsofR@6b9e684fa59647e280b75516ef2c9723.bitwarden.com -carLicense: 8969YK -departmentNumber: 7433 -employeeType: Normal -homePhone: +1 510 439-7763 -initials: R. M. -mobile: +1 510 810-5216 -pager: +1 510 227-2152 -roomNumber: 8332 -manager: cn=Bobinette Belboul,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jester Nagenthiram -sn: Nagenthiram -description: This is Jester Nagenthiram's description -facsimileTelephoneNumber: +1 408 966-7013 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 634-1331 -title: Supreme Janitorial Admin -userPassword: Password1 -uid: NagenthJ -givenName: Jester -mail: NagenthJ@6c3860a955fe431ca8d48e56cd2c1cc8.bitwarden.com -carLicense: MNALQP -departmentNumber: 4555 -employeeType: Employee -homePhone: +1 408 484-1175 -initials: J. N. -mobile: +1 408 284-6342 -pager: +1 408 420-9279 -roomNumber: 8381 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Stephanie Pickles,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephanie Pickles -sn: Pickles -description: This is Stephanie Pickles's description -facsimileTelephoneNumber: +1 415 556-5936 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 415 225-2987 -title: Supreme Peons Fellow -userPassword: Password1 -uid: PicklesS -givenName: Stephanie -mail: PicklesS@468705ba5f434f3295170aa6ba4375b9.bitwarden.com -carLicense: FBHPCI -departmentNumber: 9298 -employeeType: Contract -homePhone: +1 415 274-5193 -initials: S. P. -mobile: +1 415 629-1419 -pager: +1 415 125-2927 -roomNumber: 9037 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karla Hearnden,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karla Hearnden -sn: Hearnden -description: This is Karla Hearnden's description -facsimileTelephoneNumber: +1 415 566-4782 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 714-7296 -title: Supreme Management Writer -userPassword: Password1 -uid: HearndeK -givenName: Karla -mail: HearndeK@f9c4bace7749496ca9d16bcee3ec0a9e.bitwarden.com -carLicense: F9W51Q -departmentNumber: 9681 -employeeType: Employee -homePhone: +1 415 325-2609 -initials: K. H. -mobile: +1 415 865-3978 -pager: +1 415 921-9206 -roomNumber: 8769 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Waichi Arbuckle -sn: Arbuckle -description: This is Waichi Arbuckle's description -facsimileTelephoneNumber: +1 415 358-8418 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 808-4173 -title: Associate Human Resources Stooge -userPassword: Password1 -uid: ArbucklW -givenName: Waichi -mail: ArbucklW@df1f69e145f84092af98fbde9b9513c5.bitwarden.com -carLicense: EGUN4X -departmentNumber: 8478 -employeeType: Normal -homePhone: +1 415 419-3126 -initials: W. A. -mobile: +1 415 630-8715 -pager: +1 415 874-3019 -roomNumber: 8581 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Xenia Schmitz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xenia Schmitz -sn: Schmitz -description: This is Xenia Schmitz's description -facsimileTelephoneNumber: +1 206 849-1485 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 761-7314 -title: Chief Administrative Janitor -userPassword: Password1 -uid: SchmitzX -givenName: Xenia -mail: SchmitzX@866ee03787a64b2f93dee41c244c546a.bitwarden.com -carLicense: B9H8ID -departmentNumber: 1336 -employeeType: Contract -homePhone: +1 206 702-3876 -initials: X. S. -mobile: +1 206 170-9649 -pager: +1 206 465-9993 -roomNumber: 9029 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sande Withrow,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sande Withrow -sn: Withrow -description: This is Sande Withrow's description -facsimileTelephoneNumber: +1 804 209-9503 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 804 185-6592 -title: Supreme Administrative Punk -userPassword: Password1 -uid: WithrowS -givenName: Sande -mail: WithrowS@8488bd932270494b964d988d57bbae02.bitwarden.com -carLicense: 6EB94R -departmentNumber: 1725 -employeeType: Employee -homePhone: +1 804 294-9105 -initials: S. W. -mobile: +1 804 250-5586 -pager: +1 804 277-3399 -roomNumber: 9209 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pammie Guilbert,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pammie Guilbert -sn: Guilbert -description: This is Pammie Guilbert's description -facsimileTelephoneNumber: +1 213 350-9478 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 370-1484 -title: Supreme Peons Mascot -userPassword: Password1 -uid: GuilberP -givenName: Pammie -mail: GuilberP@8342e98dcb144504925e856ae40dc976.bitwarden.com -carLicense: JVTRRF -departmentNumber: 5449 -employeeType: Contract -homePhone: +1 213 730-9237 -initials: P. G. -mobile: +1 213 942-9323 -pager: +1 213 388-1099 -roomNumber: 8454 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sabina Dolson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabina Dolson -sn: Dolson -description: This is Sabina Dolson's description -facsimileTelephoneNumber: +1 818 862-6465 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 818 602-8427 -title: Associate Payroll Admin -userPassword: Password1 -uid: DolsonS -givenName: Sabina -mail: DolsonS@29c3d32bd72d456b98ccdb1f1f704bb5.bitwarden.com -carLicense: 4I8D5F -departmentNumber: 9173 -employeeType: Normal -homePhone: +1 818 860-6626 -initials: S. D. -mobile: +1 818 657-5730 -pager: +1 818 871-6082 -roomNumber: 9215 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: CostasDinos McKay -sn: McKay -description: This is CostasDinos McKay's description -facsimileTelephoneNumber: +1 804 421-5786 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 122-9275 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: McKayC -givenName: CostasDinos -mail: McKayC@880f27f5dd8149c7b2b47da8b579fcbf.bitwarden.com -carLicense: 45GG3Q -departmentNumber: 9198 -employeeType: Normal -homePhone: +1 804 543-8736 -initials: C. M. -mobile: +1 804 585-1449 -pager: +1 804 479-6187 -roomNumber: 9178 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cyril Tullius,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyril Tullius -sn: Tullius -description: This is Cyril Tullius's description -facsimileTelephoneNumber: +1 213 948-7921 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 377-6842 -title: Junior Janitorial Writer -userPassword: Password1 -uid: TulliusC -givenName: Cyril -mail: TulliusC@15f299e0af604cd282364f75359dfca1.bitwarden.com -carLicense: HJKL6P -departmentNumber: 6021 -employeeType: Contract -homePhone: +1 213 499-8740 -initials: C. T. -mobile: +1 213 975-9903 -pager: +1 213 164-8708 -roomNumber: 8231 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bogdan Antonelli -sn: Antonelli -description: This is Bogdan Antonelli's description -facsimileTelephoneNumber: +1 804 154-2353 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 828-1525 -title: Supreme Administrative Manager -userPassword: Password1 -uid: AntonelB -givenName: Bogdan -mail: AntonelB@e800254840ec4cdd98916b4e083fcf9a.bitwarden.com -carLicense: 7J4QV8 -departmentNumber: 9736 -employeeType: Normal -homePhone: +1 804 583-6819 -initials: B. A. -mobile: +1 804 914-7352 -pager: +1 804 802-5645 -roomNumber: 9653 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Heather Ogrodnik -sn: Ogrodnik -description: This is Heather Ogrodnik's description -facsimileTelephoneNumber: +1 818 751-4055 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 203-9119 -title: Chief Human Resources Vice President -userPassword: Password1 -uid: OgrodniH -givenName: Heather -mail: OgrodniH@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com -carLicense: F3YYI6 -departmentNumber: 9391 -employeeType: Employee -homePhone: +1 818 801-1144 -initials: H. O. -mobile: +1 818 222-1666 -pager: +1 818 348-2805 -roomNumber: 8100 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cuthbert Pryor -sn: Pryor -description: This is Cuthbert Pryor's description -facsimileTelephoneNumber: +1 415 794-7916 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 486-9301 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: PryorC -givenName: Cuthbert -mail: PryorC@cd9aa4cc15f7474aa6c5dd1195964bad.bitwarden.com -carLicense: 95J8M6 -departmentNumber: 8697 -employeeType: Employee -homePhone: +1 415 987-6098 -initials: C. P. -mobile: +1 415 509-2781 -pager: +1 415 903-7444 -roomNumber: 8865 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Agathe Kinney,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agathe Kinney -sn: Kinney -description: This is Agathe Kinney's description -facsimileTelephoneNumber: +1 213 993-4565 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 797-2660 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: KinneyA -givenName: Agathe -mail: KinneyA@ed49844bd2994c2dab1d86730cce0d44.bitwarden.com -carLicense: Y0FCOV -departmentNumber: 8391 -employeeType: Employee -homePhone: +1 213 625-6860 -initials: A. K. -mobile: +1 213 390-5140 -pager: +1 213 726-6864 -roomNumber: 8686 -manager: cn=Kendre Favrot,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nevsa Botting,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nevsa Botting -sn: Botting -description: This is Nevsa Botting's description -facsimileTelephoneNumber: +1 213 251-6979 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 513-3681 -title: Supreme Payroll Mascot -userPassword: Password1 -uid: BottingN -givenName: Nevsa -mail: BottingN@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com -carLicense: H5LRKI -departmentNumber: 7509 -employeeType: Normal -homePhone: +1 213 584-2335 -initials: N. B. -mobile: +1 213 412-9946 -pager: +1 213 780-9279 -roomNumber: 9067 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chunmeng Nonkes -sn: Nonkes -description: This is Chunmeng Nonkes's description -facsimileTelephoneNumber: +1 213 321-9962 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 213 888-1305 -title: Master Administrative Janitor -userPassword: Password1 -uid: NonkesC -givenName: Chunmeng -mail: NonkesC@0d089601fe8d4842aca2c104051c6a49.bitwarden.com -carLicense: WOJP9J -departmentNumber: 2765 -employeeType: Contract -homePhone: +1 213 125-3649 -initials: C. N. -mobile: +1 213 677-7410 -pager: +1 213 851-4076 -roomNumber: 8035 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eliezer Quevillon -sn: Quevillon -description: This is Eliezer Quevillon's description -facsimileTelephoneNumber: +1 206 927-1276 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 677-8025 -title: Junior Human Resources Assistant -userPassword: Password1 -uid: QuevillE -givenName: Eliezer -mail: QuevillE@679765b52d394d7ba89a59f3e71121ce.bitwarden.com -carLicense: DCFSER -departmentNumber: 8696 -employeeType: Normal -homePhone: +1 206 510-7559 -initials: E. Q. -mobile: +1 206 108-1208 -pager: +1 206 710-7754 -roomNumber: 9086 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Masood Tomassi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalyan Linebarger -sn: Linebarger -description: This is Kalyan Linebarger's description -facsimileTelephoneNumber: +1 213 756-9513 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 213 968-9770 -title: Junior Administrative Grunt -userPassword: Password1 -uid: LinebarK -givenName: Kalyan -mail: LinebarK@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com -carLicense: Y87506 -departmentNumber: 4765 -employeeType: Contract -homePhone: +1 213 873-8671 -initials: K. L. -mobile: +1 213 137-6546 -pager: +1 213 236-8729 -roomNumber: 8046 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Melisse Wallis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisse Wallis -sn: Wallis -description: This is Melisse Wallis's description -facsimileTelephoneNumber: +1 818 678-7042 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 259-3053 -title: Chief Janitorial Vice President -userPassword: Password1 -uid: WallisM -givenName: Melisse -mail: WallisM@cea72e60113c4004b6d166b7d2581f81.bitwarden.com -carLicense: YMS4IJ -departmentNumber: 4961 -employeeType: Employee -homePhone: +1 818 236-4134 -initials: M. W. -mobile: +1 818 195-2214 -pager: +1 818 777-1399 -roomNumber: 8240 -manager: cn=Ned Pownall,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Benoite Lenior,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benoite Lenior -sn: Lenior -description: This is Benoite Lenior's description -facsimileTelephoneNumber: +1 804 916-7844 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 804 234-9774 -title: Junior Administrative Fellow -userPassword: Password1 -uid: LeniorB -givenName: Benoite -mail: LeniorB@20e14dd3d2dd44c8a8925dd175adb2ff.bitwarden.com -carLicense: RHEKGW -departmentNumber: 7636 -employeeType: Employee -homePhone: +1 804 430-1902 -initials: B. L. -mobile: +1 804 125-9785 -pager: +1 804 165-3401 -roomNumber: 8854 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Marya Lozier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marya Lozier -sn: Lozier -description: This is Marya Lozier's description -facsimileTelephoneNumber: +1 818 222-9576 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 818 694-2768 -title: Associate Janitorial Developer -userPassword: Password1 -uid: LozierM -givenName: Marya -mail: LozierM@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com -carLicense: G9DOBH -departmentNumber: 1030 -employeeType: Normal -homePhone: +1 818 517-4203 -initials: M. L. -mobile: +1 818 692-3797 -pager: +1 818 688-9613 -roomNumber: 8958 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Access Phelps,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Access Phelps -sn: Phelps -description: This is Access Phelps's description -facsimileTelephoneNumber: +1 408 299-8021 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 408 133-6690 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: PhelpsA -givenName: Access -mail: PhelpsA@97024eb0461a46d6aa6052406945f68c.bitwarden.com -carLicense: OYC6DN -departmentNumber: 5795 -employeeType: Contract -homePhone: +1 408 562-6906 -initials: A. P. -mobile: +1 408 938-1210 -pager: +1 408 518-1097 -roomNumber: 9120 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ned Hammonds,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ned Hammonds -sn: Hammonds -description: This is Ned Hammonds's description -facsimileTelephoneNumber: +1 408 685-3203 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 400-5258 -title: Supreme Janitorial Mascot -userPassword: Password1 -uid: HammondN -givenName: Ned -mail: HammondN@ab6be5fd115643a9838774bec61580fd.bitwarden.com -carLicense: S04KQF -departmentNumber: 2633 -employeeType: Employee -homePhone: +1 408 420-8456 -initials: N. H. -mobile: +1 408 653-9978 -pager: +1 408 158-6985 -roomNumber: 9419 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ernest Betterley,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ernest Betterley -sn: Betterley -description: This is Ernest Betterley's description -facsimileTelephoneNumber: +1 818 150-2942 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 441-3272 -title: Junior Payroll Mascot -userPassword: Password1 -uid: BetterlE -givenName: Ernest -mail: BetterlE@d7c42a5466a44da1a41df54a07b84c5f.bitwarden.com -carLicense: U8WLB3 -departmentNumber: 4583 -employeeType: Contract -homePhone: +1 818 649-9845 -initials: E. B. -mobile: +1 818 905-8656 -pager: +1 818 692-8491 -roomNumber: 8089 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kana Licata,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kana Licata -sn: Licata -description: This is Kana Licata's description -facsimileTelephoneNumber: +1 206 537-4446 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 206 509-7204 -title: Junior Janitorial Janitor -userPassword: Password1 -uid: LicataK -givenName: Kana -mail: LicataK@7cb67504c13e412a8fec103be024f92b.bitwarden.com -carLicense: FUYNF5 -departmentNumber: 2296 -employeeType: Contract -homePhone: +1 206 122-6392 -initials: K. L. -mobile: +1 206 662-4764 -pager: +1 206 857-4058 -roomNumber: 9168 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hermione Donahue,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermione Donahue -sn: Donahue -description: This is Hermione Donahue's description -facsimileTelephoneNumber: +1 804 321-3356 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 145-7271 -title: Junior Management Pinhead -userPassword: Password1 -uid: DonahueH -givenName: Hermione -mail: DonahueH@3986b5b118ef4d79a84f9f227789123a.bitwarden.com -carLicense: PAHCEG -departmentNumber: 4473 -employeeType: Contract -homePhone: +1 804 263-4590 -initials: H. D. -mobile: +1 804 289-2635 -pager: +1 804 445-3032 -roomNumber: 8857 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rochette Materkowski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rochette Materkowski -sn: Materkowski -description: This is Rochette Materkowski's description -facsimileTelephoneNumber: +1 804 853-7916 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 955-3769 -title: Master Administrative Architect -userPassword: Password1 -uid: MaterkoR -givenName: Rochette -mail: MaterkoR@9fbbd3b588db493faa565bcde3d4e632.bitwarden.com -carLicense: YXQIKH -departmentNumber: 5201 -employeeType: Normal -homePhone: +1 804 908-6504 -initials: R. M. -mobile: +1 804 500-4935 -pager: +1 804 898-2866 -roomNumber: 9501 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rheba Dirbm -sn: Dirbm -description: This is Rheba Dirbm's description -facsimileTelephoneNumber: +1 510 892-4216 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 510 985-4014 -title: Junior Human Resources Warrior -userPassword: Password1 -uid: DirbmR -givenName: Rheba -mail: DirbmR@3ee9065d7b6b4e83b28bb68fa8c51cff.bitwarden.com -carLicense: AXW3B7 -departmentNumber: 6918 -employeeType: Contract -homePhone: +1 510 712-1608 -initials: R. D. -mobile: +1 510 338-8831 -pager: +1 510 347-7551 -roomNumber: 8754 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lan Simms,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lan Simms -sn: Simms -description: This is Lan Simms's description -facsimileTelephoneNumber: +1 408 581-2939 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 345-6884 -title: Associate Peons Writer -userPassword: Password1 -uid: SimmsL -givenName: Lan -mail: SimmsL@597ee7a281994e04852496c0f41850b8.bitwarden.com -carLicense: TWR6LM -departmentNumber: 7872 -employeeType: Contract -homePhone: +1 408 487-4359 -initials: L. S. -mobile: +1 408 610-5631 -pager: +1 408 375-2874 -roomNumber: 8983 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Troy Bengtson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Troy Bengtson -sn: Bengtson -description: This is Troy Bengtson's description -facsimileTelephoneNumber: +1 818 856-3782 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 863-3042 -title: Junior Payroll Grunt -userPassword: Password1 -uid: BengtsoT -givenName: Troy -mail: BengtsoT@6814734c8a1a4426b43d87c3c6b525f0.bitwarden.com -carLicense: V3JIXF -departmentNumber: 2493 -employeeType: Normal -homePhone: +1 818 134-2888 -initials: T. B. -mobile: +1 818 119-3468 -pager: +1 818 192-4414 -roomNumber: 9374 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheelagh Peixoto -sn: Peixoto -description: This is Sheelagh Peixoto's description -facsimileTelephoneNumber: +1 818 673-1656 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 669-8783 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: PeixotoS -givenName: Sheelagh -mail: PeixotoS@938a7a8d77714dae9ee57a1ad9691680.bitwarden.com -carLicense: VRBFK2 -departmentNumber: 7756 -employeeType: Normal -homePhone: +1 818 584-1439 -initials: S. P. -mobile: +1 818 341-2022 -pager: +1 818 139-9729 -roomNumber: 8426 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Natka Moritz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natka Moritz -sn: Moritz -description: This is Natka Moritz's description -facsimileTelephoneNumber: +1 206 371-1675 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 708-9837 -title: Supreme Product Testing Artist -userPassword: Password1 -uid: MoritzN -givenName: Natka -mail: MoritzN@49a7dfb897474c7dad3d0d47056d73c4.bitwarden.com -carLicense: ETUQU1 -departmentNumber: 7332 -employeeType: Contract -homePhone: +1 206 695-3825 -initials: N. M. -mobile: +1 206 110-4529 -pager: +1 206 391-8641 -roomNumber: 9641 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tineke Pryszlak -sn: Pryszlak -description: This is Tineke Pryszlak's description -facsimileTelephoneNumber: +1 206 757-8127 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 991-3301 -title: Supreme Product Testing Manager -userPassword: Password1 -uid: PryszlaT -givenName: Tineke -mail: PryszlaT@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com -carLicense: 6SP0EB -departmentNumber: 1989 -employeeType: Normal -homePhone: +1 206 780-5425 -initials: T. P. -mobile: +1 206 287-8013 -pager: +1 206 624-6393 -roomNumber: 9946 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brook Clifton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brook Clifton -sn: Clifton -description: This is Brook Clifton's description -facsimileTelephoneNumber: +1 510 657-7487 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 101-4240 -title: Associate Management Pinhead -userPassword: Password1 -uid: CliftonB -givenName: Brook -mail: CliftonB@3addc4fa91024158bfa9904c24f12164.bitwarden.com -carLicense: XECBMN -departmentNumber: 9553 -employeeType: Normal -homePhone: +1 510 275-3666 -initials: B. C. -mobile: +1 510 323-4455 -pager: +1 510 925-3274 -roomNumber: 8797 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Maggee Colton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maggee Colton -sn: Colton -description: This is Maggee Colton's description -facsimileTelephoneNumber: +1 213 436-2485 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 213 725-8240 -title: Supreme Management Vice President -userPassword: Password1 -uid: ColtonM -givenName: Maggee -mail: ColtonM@e97e68f305e3440c9129677cf226a2f9.bitwarden.com -carLicense: 3V094G -departmentNumber: 7074 -employeeType: Normal -homePhone: +1 213 799-5578 -initials: M. C. -mobile: +1 213 826-8250 -pager: +1 213 235-7562 -roomNumber: 8443 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bobinette Holinski -sn: Holinski -description: This is Bobinette Holinski's description -facsimileTelephoneNumber: +1 213 438-3899 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 636-6380 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: HolinskB -givenName: Bobinette -mail: HolinskB@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com -carLicense: 329U4T -departmentNumber: 4303 -employeeType: Employee -homePhone: +1 213 128-2856 -initials: B. H. -mobile: +1 213 959-4936 -pager: +1 213 295-4642 -roomNumber: 8305 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rae Willey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rae Willey -sn: Willey -description: This is Rae Willey's description -facsimileTelephoneNumber: +1 415 225-1596 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 644-1200 -title: Master Administrative Assistant -userPassword: Password1 -uid: WilleyR -givenName: Rae -mail: WilleyR@83f3b1a626774d71882e96bf3396b700.bitwarden.com -carLicense: I06WWG -departmentNumber: 5824 -employeeType: Employee -homePhone: +1 415 449-1203 -initials: R. W. -mobile: +1 415 408-2100 -pager: +1 415 309-6408 -roomNumber: 9017 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherman Mattiuz -sn: Mattiuz -description: This is Sherman Mattiuz's description -facsimileTelephoneNumber: +1 415 299-9606 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 415 783-8202 -title: Master Human Resources Admin -userPassword: Password1 -uid: MattiuzS -givenName: Sherman -mail: MattiuzS@770858a0ba27427fa80380c180b40ddb.bitwarden.com -carLicense: 17CWAM -departmentNumber: 4986 -employeeType: Normal -homePhone: +1 415 310-6621 -initials: S. M. -mobile: +1 415 393-7208 -pager: +1 415 797-2958 -roomNumber: 8649 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Terence Murray,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terence Murray -sn: Murray -description: This is Terence Murray's description -facsimileTelephoneNumber: +1 804 977-4099 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 244-7357 -title: Junior Janitorial Manager -userPassword: Password1 -uid: MurrayT -givenName: Terence -mail: MurrayT@bbd1af679b0c4f5eb725bdbe4b2aee6a.bitwarden.com -carLicense: M3IRT7 -departmentNumber: 2404 -employeeType: Contract -homePhone: +1 804 858-1725 -initials: T. M. -mobile: +1 804 253-3984 -pager: +1 804 790-9467 -roomNumber: 8845 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janot Ostapiw -sn: Ostapiw -description: This is Janot Ostapiw's description -facsimileTelephoneNumber: +1 818 131-4427 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 818 591-4792 -title: Chief Human Resources Manager -userPassword: Password1 -uid: OstapiwJ -givenName: Janot -mail: OstapiwJ@ceef53b02cf14daf8dcf3b446c7764b4.bitwarden.com -carLicense: DQAQ64 -departmentNumber: 7908 -employeeType: Normal -homePhone: +1 818 224-2094 -initials: J. O. -mobile: +1 818 924-3218 -pager: +1 818 392-3287 -roomNumber: 8362 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ransom Grande,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ransom Grande -sn: Grande -description: This is Ransom Grande's description -facsimileTelephoneNumber: +1 804 857-4867 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 348-8506 -title: Master Payroll Director -userPassword: Password1 -uid: GrandeR -givenName: Ransom -mail: GrandeR@7728cd06c9f24725b1335c5276362320.bitwarden.com -carLicense: 8T95T2 -departmentNumber: 7404 -employeeType: Contract -homePhone: +1 804 134-1915 -initials: R. G. -mobile: +1 804 579-6089 -pager: +1 804 257-4904 -roomNumber: 8070 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lindy Clinger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lindy Clinger -sn: Clinger -description: This is Lindy Clinger's description -facsimileTelephoneNumber: +1 818 131-4609 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 818 830-9534 -title: Supreme Human Resources Engineer -userPassword: Password1 -uid: ClingerL -givenName: Lindy -mail: ClingerL@6d69b599308f48ccb963c12b5968912d.bitwarden.com -carLicense: XAIKSC -departmentNumber: 3576 -employeeType: Employee -homePhone: +1 818 841-7693 -initials: L. C. -mobile: +1 818 230-5540 -pager: +1 818 314-6466 -roomNumber: 9969 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emilie Geldrez,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Clyde Hanser,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clyde Hanser -sn: Hanser -description: This is Clyde Hanser's description -facsimileTelephoneNumber: +1 206 763-4085 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 847-2762 -title: Supreme Management Architect -userPassword: Password1 -uid: HanserC -givenName: Clyde -mail: HanserC@d6c8569604a646f9806f25f3b316b85e.bitwarden.com -carLicense: V9MNDK -departmentNumber: 1165 -employeeType: Employee -homePhone: +1 206 649-8510 -initials: C. H. -mobile: +1 206 590-1759 -pager: +1 206 755-6342 -roomNumber: 8768 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilmette Masterson -sn: Masterson -description: This is Wilmette Masterson's description -facsimileTelephoneNumber: +1 408 450-1513 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 408 120-2964 -title: Master Product Testing Assistant -userPassword: Password1 -uid: MastersW -givenName: Wilmette -mail: MastersW@4445babf8a7d4d96bd8cbd44d9ed3bc8.bitwarden.com -carLicense: 5VMPU5 -departmentNumber: 8001 -employeeType: Normal -homePhone: +1 408 360-8709 -initials: W. M. -mobile: +1 408 680-9712 -pager: +1 408 138-3378 -roomNumber: 8883 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Charita Rainsforth,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charita Rainsforth -sn: Rainsforth -description: This is Charita Rainsforth's description -facsimileTelephoneNumber: +1 213 777-1506 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 639-4832 -title: Chief Payroll Fellow -userPassword: Password1 -uid: RainsfoC -givenName: Charita -mail: RainsfoC@2babe722fdef4b0fa98bbd24f66fbecf.bitwarden.com -carLicense: GVADYR -departmentNumber: 8926 -employeeType: Normal -homePhone: +1 213 846-4789 -initials: C. R. -mobile: +1 213 813-3693 -pager: +1 213 356-5566 -roomNumber: 8691 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariquilla Bayless -sn: Bayless -description: This is Mariquilla Bayless's description -facsimileTelephoneNumber: +1 213 390-2334 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 396-3646 -title: Supreme Janitorial Dictator -userPassword: Password1 -uid: BaylessM -givenName: Mariquilla -mail: BaylessM@04bb8c62899b41dd85b281860ec060e6.bitwarden.com -carLicense: CGYMLK -departmentNumber: 9051 -employeeType: Employee -homePhone: +1 213 580-3508 -initials: M. B. -mobile: +1 213 883-3227 -pager: +1 213 515-9923 -roomNumber: 8587 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Remo Duchesne,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Remo Duchesne -sn: Duchesne -description: This is Remo Duchesne's description -facsimileTelephoneNumber: +1 213 725-3496 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 213 429-3409 -title: Associate Human Resources Visionary -userPassword: Password1 -uid: DuchesnR -givenName: Remo -mail: DuchesnR@87b6080a8e904aef9833756715afd0f3.bitwarden.com -carLicense: O4D8KH -departmentNumber: 6303 -employeeType: Employee -homePhone: +1 213 201-6582 -initials: R. D. -mobile: +1 213 853-9758 -pager: +1 213 535-3547 -roomNumber: 9073 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Radames Verrilli,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Radames Verrilli -sn: Verrilli -description: This is Radames Verrilli's description -facsimileTelephoneNumber: +1 415 666-6407 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 415 916-9425 -title: Associate Product Testing Technician -userPassword: Password1 -uid: VerrillR -givenName: Radames -mail: VerrillR@5a335fc442a34146b7e0bc22b5e52fbd.bitwarden.com -carLicense: MGH0O2 -departmentNumber: 1931 -employeeType: Contract -homePhone: +1 415 275-9945 -initials: R. V. -mobile: +1 415 397-5052 -pager: +1 415 589-5007 -roomNumber: 9095 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alanna Dillard,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alanna Dillard -sn: Dillard -description: This is Alanna Dillard's description -facsimileTelephoneNumber: +1 804 208-2139 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 804 650-3194 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: DillardA -givenName: Alanna -mail: DillardA@d7bcc941bf9944f4a0cf58f580b041c6.bitwarden.com -carLicense: F2MROV -departmentNumber: 6624 -employeeType: Employee -homePhone: +1 804 242-4741 -initials: A. D. -mobile: +1 804 285-8559 -pager: +1 804 621-6228 -roomNumber: 8051 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Chantal Neander,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chantal Neander -sn: Neander -description: This is Chantal Neander's description -facsimileTelephoneNumber: +1 213 717-8244 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 430-6206 -title: Chief Administrative Assistant -userPassword: Password1 -uid: NeanderC -givenName: Chantal -mail: NeanderC@5e9773b417544d1f926187faa8565de5.bitwarden.com -carLicense: S4XTVL -departmentNumber: 5130 -employeeType: Normal -homePhone: +1 213 263-2844 -initials: C. N. -mobile: +1 213 408-9150 -pager: +1 213 182-2337 -roomNumber: 8523 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Leese Nagendra,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leese Nagendra -sn: Nagendra -description: This is Leese Nagendra's description -facsimileTelephoneNumber: +1 408 329-4229 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 408 217-8268 -title: Associate Management Stooge -userPassword: Password1 -uid: NagendrL -givenName: Leese -mail: NagendrL@5ca487ddf481407baca0f7ac58492fb5.bitwarden.com -carLicense: WV5RBO -departmentNumber: 5280 -employeeType: Contract -homePhone: +1 408 813-6485 -initials: L. N. -mobile: +1 408 692-3608 -pager: +1 408 715-9390 -roomNumber: 9992 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosalynd Silverstone -sn: Silverstone -description: This is Rosalynd Silverstone's description -facsimileTelephoneNumber: +1 408 804-5660 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 972-2488 -title: Chief Payroll Mascot -userPassword: Password1 -uid: SilversR -givenName: Rosalynd -mail: SilversR@21813dd069254b74bf250b7db15a806f.bitwarden.com -carLicense: CMHIKN -departmentNumber: 2762 -employeeType: Employee -homePhone: +1 408 496-4910 -initials: R. S. -mobile: +1 408 596-4857 -pager: +1 408 335-3377 -roomNumber: 8394 -manager: cn=Nobuko Nyland,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Erena Ticzon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erena Ticzon -sn: Ticzon -description: This is Erena Ticzon's description -facsimileTelephoneNumber: +1 510 120-8845 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 510 723-5634 -title: Junior Payroll Grunt -userPassword: Password1 -uid: TiczonE -givenName: Erena -mail: TiczonE@9077504eeb5f4af282c6c876f04ee045.bitwarden.com -carLicense: SMIEHX -departmentNumber: 2087 -employeeType: Contract -homePhone: +1 510 903-7803 -initials: E. T. -mobile: +1 510 513-6130 -pager: +1 510 132-1958 -roomNumber: 9686 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marsiella Maludzinski -sn: Maludzinski -description: This is Marsiella Maludzinski's description -facsimileTelephoneNumber: +1 510 678-1809 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 120-3913 -title: Master Product Testing Dictator -userPassword: Password1 -uid: MaludziM -givenName: Marsiella -mail: MaludziM@d099b87b6d4c4f55806f0c8cf8dbfe18.bitwarden.com -carLicense: 3CVXKP -departmentNumber: 7175 -employeeType: Normal -homePhone: +1 510 776-4245 -initials: M. M. -mobile: +1 510 570-2135 -pager: +1 510 447-5863 -roomNumber: 9427 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlisle Tangren -sn: Tangren -description: This is Carlisle Tangren's description -facsimileTelephoneNumber: +1 206 827-1080 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 490-7109 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: TangrenC -givenName: Carlisle -mail: TangrenC@9df76257bd034e648ad7f06b4b88283f.bitwarden.com -carLicense: BK8ODK -departmentNumber: 1443 -employeeType: Contract -homePhone: +1 206 329-8082 -initials: C. T. -mobile: +1 206 866-9020 -pager: +1 206 340-4545 -roomNumber: 9100 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Far Fogelson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Far Fogelson -sn: Fogelson -description: This is Far Fogelson's description -facsimileTelephoneNumber: +1 818 802-5113 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 818 900-7524 -title: Master Administrative Manager -userPassword: Password1 -uid: FogelsoF -givenName: Far -mail: FogelsoF@940a7593b88c4fb0afde713027fc2a16.bitwarden.com -carLicense: VYQW6A -departmentNumber: 2822 -employeeType: Contract -homePhone: +1 818 313-6021 -initials: F. F. -mobile: +1 818 627-4771 -pager: +1 818 959-2882 -roomNumber: 8536 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Anne Kobeski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anne Kobeski -sn: Kobeski -description: This is Anne Kobeski's description -facsimileTelephoneNumber: +1 213 690-7066 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 213 205-3209 -title: Junior Administrative Janitor -userPassword: Password1 -uid: KobeskiA -givenName: Anne -mail: KobeskiA@4f265a55f05f44d196ed2a8ef628acec.bitwarden.com -carLicense: K75CTY -departmentNumber: 3351 -employeeType: Contract -homePhone: +1 213 170-6731 -initials: A. K. -mobile: +1 213 956-7860 -pager: +1 213 260-7830 -roomNumber: 9468 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ursola Hastie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ursola Hastie -sn: Hastie -description: This is Ursola Hastie's description -facsimileTelephoneNumber: +1 804 240-1902 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 848-3015 -title: Chief Payroll Developer -userPassword: Password1 -uid: HastieU -givenName: Ursola -mail: HastieU@a34bb7d1546c462cb51396798bb22845.bitwarden.com -carLicense: 5B16OL -departmentNumber: 6887 -employeeType: Normal -homePhone: +1 804 287-4063 -initials: U. H. -mobile: +1 804 464-1632 -pager: +1 804 700-6031 -roomNumber: 8603 -manager: cn=Harmonie Luquire,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benetta Lichtenstein -sn: Lichtenstein -description: This is Benetta Lichtenstein's description -facsimileTelephoneNumber: +1 804 670-5659 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 549-7954 -title: Associate Peons Director -userPassword: Password1 -uid: LichtenB -givenName: Benetta -mail: LichtenB@ec913a211e094c66bf75ab14cafe8fb6.bitwarden.com -carLicense: G8MATO -departmentNumber: 2163 -employeeType: Contract -homePhone: +1 804 887-4586 -initials: B. L. -mobile: +1 804 980-2602 -pager: +1 804 254-3260 -roomNumber: 9704 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tehchi Hiltz -sn: Hiltz -description: This is Tehchi Hiltz's description -facsimileTelephoneNumber: +1 213 410-8377 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 590-5665 -title: Junior Product Testing Architect -userPassword: Password1 -uid: HiltzT -givenName: Tehchi -mail: HiltzT@ab27f4e751074bd087dace4a33698f66.bitwarden.com -carLicense: XCIOHS -departmentNumber: 3681 -employeeType: Normal -homePhone: +1 213 720-3233 -initials: T. H. -mobile: +1 213 939-9476 -pager: +1 213 991-3264 -roomNumber: 9448 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Germaine Wingate,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Germaine Wingate -sn: Wingate -description: This is Germaine Wingate's description -facsimileTelephoneNumber: +1 804 189-7129 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 119-3483 -title: Master Product Testing Sales Rep -userPassword: Password1 -uid: WingateG -givenName: Germaine -mail: WingateG@a87ac40ce2a547c8a852f41a3d6dfeae.bitwarden.com -carLicense: YTHCH4 -departmentNumber: 4690 -employeeType: Employee -homePhone: +1 804 296-6542 -initials: G. W. -mobile: +1 804 275-4476 -pager: +1 804 518-1024 -roomNumber: 9171 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Olympia Peets,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olympia Peets -sn: Peets -description: This is Olympia Peets's description -facsimileTelephoneNumber: +1 213 679-1202 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 213 863-2279 -title: Associate Payroll Architect -userPassword: Password1 -uid: PeetsO -givenName: Olympia -mail: PeetsO@db51bc9053f3446197c0ce77497e73c2.bitwarden.com -carLicense: O9IU6I -departmentNumber: 8069 -employeeType: Normal -homePhone: +1 213 438-6707 -initials: O. P. -mobile: +1 213 639-8777 -pager: +1 213 270-3773 -roomNumber: 9716 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sati Varughese,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sati Varughese -sn: Varughese -description: This is Sati Varughese's description -facsimileTelephoneNumber: +1 818 297-3764 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 818 850-2463 -title: Junior Janitorial Janitor -userPassword: Password1 -uid: VarugheS -givenName: Sati -mail: VarugheS@12257cabb5eb48ceb908520b2745a457.bitwarden.com -carLicense: G7AV98 -departmentNumber: 6501 -employeeType: Employee -homePhone: +1 818 560-2863 -initials: S. V. -mobile: +1 818 949-8259 -pager: +1 818 437-1484 -roomNumber: 9278 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tab Gozen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tab Gozen -sn: Gozen -description: This is Tab Gozen's description -facsimileTelephoneNumber: +1 804 486-6785 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 457-5740 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: GozenT -givenName: Tab -mail: GozenT@520c5bcfe42945ff9a9bc4329f8d9224.bitwarden.com -carLicense: JHFIBF -departmentNumber: 2216 -employeeType: Employee -homePhone: +1 804 266-2529 -initials: T. G. -mobile: +1 804 701-4430 -pager: +1 804 209-2288 -roomNumber: 8998 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bcspatch Dunlop -sn: Dunlop -description: This is Bcspatch Dunlop's description -facsimileTelephoneNumber: +1 510 529-6944 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 720-4163 -title: Associate Product Testing Developer -userPassword: Password1 -uid: DunlopB -givenName: Bcspatch -mail: DunlopB@c9f8cbb8d3d848c99fea02136e8a89f7.bitwarden.com -carLicense: DLXENP -departmentNumber: 6449 -employeeType: Contract -homePhone: +1 510 334-7373 -initials: B. D. -mobile: +1 510 197-8419 -pager: +1 510 627-8337 -roomNumber: 8698 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ioana Newsome,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ioana Newsome -sn: Newsome -description: This is Ioana Newsome's description -facsimileTelephoneNumber: +1 818 851-4271 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 492-8136 -title: Junior Administrative Dictator -userPassword: Password1 -uid: NewsomeI -givenName: Ioana -mail: NewsomeI@c41f8f7aea354718b6ea3277359c3684.bitwarden.com -carLicense: HC9HQP -departmentNumber: 7169 -employeeType: Contract -homePhone: +1 818 515-3493 -initials: I. N. -mobile: +1 818 400-9063 -pager: +1 818 755-7528 -roomNumber: 9657 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WingKi Dpnqa -sn: Dpnqa -description: This is WingKi Dpnqa's description -facsimileTelephoneNumber: +1 408 908-3689 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 956-8737 -title: Associate Product Development President -userPassword: Password1 -uid: DpnqaW -givenName: WingKi -mail: DpnqaW@829d5713be204a9ab0a7f267371638c5.bitwarden.com -carLicense: PKB3A5 -departmentNumber: 6571 -employeeType: Employee -homePhone: +1 408 908-6700 -initials: W. D. -mobile: +1 408 233-1847 -pager: +1 408 897-8493 -roomNumber: 8496 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonja Ruffolo -sn: Ruffolo -description: This is Sonja Ruffolo's description -facsimileTelephoneNumber: +1 408 241-5751 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 297-1656 -title: Chief Product Development Artist -userPassword: Password1 -uid: RuffoloS -givenName: Sonja -mail: RuffoloS@28a9681724804070b81d5f99c070a25f.bitwarden.com -carLicense: MTES24 -departmentNumber: 4997 -employeeType: Normal -homePhone: +1 408 654-9009 -initials: S. R. -mobile: +1 408 827-2341 -pager: +1 408 993-5172 -roomNumber: 9801 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Damian Lescot,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Damian Lescot -sn: Lescot -description: This is Damian Lescot's description -facsimileTelephoneNumber: +1 213 793-3190 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 638-9753 -title: Supreme Product Development Writer -userPassword: Password1 -uid: LescotD -givenName: Damian -mail: LescotD@6bb09be3d23943f6925bf796ee13d06b.bitwarden.com -carLicense: AWUOKY -departmentNumber: 7172 -employeeType: Employee -homePhone: +1 213 422-1856 -initials: D. L. -mobile: +1 213 842-4638 -pager: +1 213 449-2586 -roomNumber: 8597 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Raz Roseland,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raz Roseland -sn: Roseland -description: This is Raz Roseland's description -facsimileTelephoneNumber: +1 408 287-1669 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 641-8383 -title: Associate Payroll Director -userPassword: Password1 -uid: RoselanR -givenName: Raz -mail: RoselanR@39eecbf6644e41e6a54aa634c1d5a5be.bitwarden.com -carLicense: BAKAEE -departmentNumber: 5119 -employeeType: Employee -homePhone: +1 408 666-4213 -initials: R. R. -mobile: +1 408 841-3386 -pager: +1 408 255-9551 -roomNumber: 8236 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MinhPhuc Voss -sn: Voss -description: This is MinhPhuc Voss's description -facsimileTelephoneNumber: +1 804 117-5456 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 804 850-4188 -title: Master Payroll Technician -userPassword: Password1 -uid: VossM -givenName: MinhPhuc -mail: VossM@6e1fed861212421a9e034f7ade197c18.bitwarden.com -carLicense: 4HTGRP -departmentNumber: 5454 -employeeType: Normal -homePhone: +1 804 976-5012 -initials: M. V. -mobile: +1 804 286-6130 -pager: +1 804 579-4649 -roomNumber: 9967 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Vivianna Lackie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vivianna Lackie -sn: Lackie -description: This is Vivianna Lackie's description -facsimileTelephoneNumber: +1 510 209-4886 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 510 140-6188 -title: Junior Management Writer -userPassword: Password1 -uid: LackieV -givenName: Vivianna -mail: LackieV@c6135533c1c14dabb3956121df0f7a96.bitwarden.com -carLicense: W1BEIT -departmentNumber: 3404 -employeeType: Contract -homePhone: +1 510 734-4397 -initials: V. L. -mobile: +1 510 444-7784 -pager: +1 510 921-7019 -roomNumber: 9486 -manager: cn=Lorie Sehmbey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hadi Freeley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hadi Freeley -sn: Freeley -description: This is Hadi Freeley's description -facsimileTelephoneNumber: +1 213 715-7561 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 948-1223 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: FreeleyH -givenName: Hadi -mail: FreeleyH@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com -carLicense: 3VQ79P -departmentNumber: 8170 -employeeType: Employee -homePhone: +1 213 125-6023 -initials: H. F. -mobile: +1 213 792-4896 -pager: +1 213 608-3925 -roomNumber: 9657 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carol Sarson,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carol Sarson -sn: Sarson -description: This is Carol Sarson's description -facsimileTelephoneNumber: +1 415 266-4131 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 415 721-7442 -title: Master Management Punk -userPassword: Password1 -uid: SarsonC -givenName: Carol -mail: SarsonC@9d5ea794acf845deab8b5f3d0cc82f3c.bitwarden.com -carLicense: O5K7UC -departmentNumber: 4679 -employeeType: Employee -homePhone: +1 415 752-6790 -initials: C. S. -mobile: +1 415 372-3934 -pager: +1 415 348-8303 -roomNumber: 9948 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marinette Paoletti -sn: Paoletti -description: This is Marinette Paoletti's description -facsimileTelephoneNumber: +1 213 419-3252 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 706-3950 -title: Associate Janitorial Punk -userPassword: Password1 -uid: PaolettM -givenName: Marinette -mail: PaolettM@658d341f53c7427cb916d5817479bb06.bitwarden.com -carLicense: KK0OC8 -departmentNumber: 8538 -employeeType: Employee -homePhone: +1 213 156-6539 -initials: M. P. -mobile: +1 213 155-9393 -pager: +1 213 507-1280 -roomNumber: 9110 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ailene Mackin,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailene Mackin -sn: Mackin -description: This is Ailene Mackin's description -facsimileTelephoneNumber: +1 213 257-3962 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 459-7012 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: MackinA -givenName: Ailene -mail: MackinA@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com -carLicense: JHQMIT -departmentNumber: 5029 -employeeType: Employee -homePhone: +1 213 372-2289 -initials: A. M. -mobile: +1 213 336-3043 -pager: +1 213 382-8065 -roomNumber: 9457 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Umakanth Rollinson -sn: Rollinson -description: This is Umakanth Rollinson's description -facsimileTelephoneNumber: +1 408 392-8444 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 408 172-9215 -title: Junior Administrative President -userPassword: Password1 -uid: RollinsU -givenName: Umakanth -mail: RollinsU@33df80476cec44768009e5ea91fdde4e.bitwarden.com -carLicense: AXG89E -departmentNumber: 3686 -employeeType: Contract -homePhone: +1 408 890-8990 -initials: U. R. -mobile: +1 408 352-5791 -pager: +1 408 682-9724 -roomNumber: 8184 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paloma Jasmin -sn: Jasmin -description: This is Paloma Jasmin's description -facsimileTelephoneNumber: +1 206 410-1616 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 206 646-3338 -title: Junior Product Testing Grunt -userPassword: Password1 -uid: JasminP -givenName: Paloma -mail: JasminP@9f7e1d164477458983f7ecf611ccd053.bitwarden.com -carLicense: G0PKNF -departmentNumber: 9212 -employeeType: Contract -homePhone: +1 206 447-7106 -initials: P. J. -mobile: +1 206 585-2649 -pager: +1 206 767-3313 -roomNumber: 8508 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bret Winicki,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bret Winicki -sn: Winicki -description: This is Bret Winicki's description -facsimileTelephoneNumber: +1 804 341-7562 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 804 443-2517 -title: Junior Product Testing Assistant -userPassword: Password1 -uid: WinickiB -givenName: Bret -mail: WinickiB@54f117c8b36b486ab03de0f2d082701e.bitwarden.com -carLicense: EP3IFC -departmentNumber: 1328 -employeeType: Normal -homePhone: +1 804 158-1676 -initials: B. W. -mobile: +1 804 164-9104 -pager: +1 804 356-1374 -roomNumber: 8110 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hatty Latchford,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hatty Latchford -sn: Latchford -description: This is Hatty Latchford's description -facsimileTelephoneNumber: +1 818 499-5563 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 818 919-7448 -title: Associate Peons Developer -userPassword: Password1 -uid: LatchfoH -givenName: Hatty -mail: LatchfoH@0600d7e5efe7437ab4bf4188ef381ca8.bitwarden.com -carLicense: 0TPIAS -departmentNumber: 1202 -employeeType: Contract -homePhone: +1 818 445-6224 -initials: H. L. -mobile: +1 818 395-4004 -pager: +1 818 518-4763 -roomNumber: 9810 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madelaine Swepston -sn: Swepston -description: This is Madelaine Swepston's description -facsimileTelephoneNumber: +1 213 515-4152 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 213 727-6953 -title: Associate Product Testing Director -userPassword: Password1 -uid: SwepstoM -givenName: Madelaine -mail: SwepstoM@f5f5c7e1f86f41029a11eb9627ca25be.bitwarden.com -carLicense: VDHUFK -departmentNumber: 2178 -employeeType: Contract -homePhone: +1 213 377-8264 -initials: M. S. -mobile: +1 213 265-7839 -pager: +1 213 503-8846 -roomNumber: 8931 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Trey Baenziger,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trey Baenziger -sn: Baenziger -description: This is Trey Baenziger's description -facsimileTelephoneNumber: +1 415 380-5920 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 415 373-4140 -title: Chief Product Testing Engineer -userPassword: Password1 -uid: BaenzigT -givenName: Trey -mail: BaenzigT@2c4a787e446b470797a2c3a15157473d.bitwarden.com -carLicense: IB2HNC -departmentNumber: 7782 -employeeType: Employee -homePhone: +1 415 720-2415 -initials: T. B. -mobile: +1 415 344-3751 -pager: +1 415 643-1849 -roomNumber: 9048 -manager: cn=Kitt Fetzko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ioan Elsing,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ioan Elsing -sn: Elsing -description: This is Ioan Elsing's description -facsimileTelephoneNumber: +1 804 298-3499 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 804 218-5221 -title: Junior Product Testing Grunt -userPassword: Password1 -uid: ElsingI -givenName: Ioan -mail: ElsingI@2a96d5dbd54f4fdb9c20889b618e8eea.bitwarden.com -carLicense: XUHOPF -departmentNumber: 7485 -employeeType: Normal -homePhone: +1 804 298-9689 -initials: I. E. -mobile: +1 804 749-9722 -pager: +1 804 886-3434 -roomNumber: 9150 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joy Ferrara,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joy Ferrara -sn: Ferrara -description: This is Joy Ferrara's description -facsimileTelephoneNumber: +1 804 845-2845 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 413-1800 -title: Junior Payroll Architect -userPassword: Password1 -uid: FerraraJ -givenName: Joy -mail: FerraraJ@f69c90cc2b8c4a8e9725fac3e3a7a1d1.bitwarden.com -carLicense: 59D8RJ -departmentNumber: 2705 -employeeType: Employee -homePhone: +1 804 946-4168 -initials: J. F. -mobile: +1 804 988-4920 -pager: +1 804 618-7538 -roomNumber: 9001 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cinderella Hazeldine -sn: Hazeldine -description: This is Cinderella Hazeldine's description -facsimileTelephoneNumber: +1 804 433-2752 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 804 322-6285 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: HazeldiC -givenName: Cinderella -mail: HazeldiC@582578f4c0a34d7283b52c37fe385620.bitwarden.com -carLicense: HR0BRX -departmentNumber: 1429 -employeeType: Employee -homePhone: +1 804 715-9470 -initials: C. H. -mobile: +1 804 955-5703 -pager: +1 804 326-2479 -roomNumber: 8856 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rowe Clinton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rowe Clinton -sn: Clinton -description: This is Rowe Clinton's description -facsimileTelephoneNumber: +1 213 785-9297 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 213 105-5432 -title: Supreme Product Testing Vice President -userPassword: Password1 -uid: ClintonR -givenName: Rowe -mail: ClintonR@39cdc253bc3c4fafbda637c79741172e.bitwarden.com -carLicense: BW5LBC -departmentNumber: 7610 -employeeType: Contract -homePhone: +1 213 927-1048 -initials: R. C. -mobile: +1 213 259-6309 -pager: +1 213 965-5910 -roomNumber: 8181 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dolores McCafferty,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dolores McCafferty -sn: McCafferty -description: This is Dolores McCafferty's description -facsimileTelephoneNumber: +1 510 399-9931 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 510 121-4523 -title: Junior Product Development Artist -userPassword: Password1 -uid: McCaffeD -givenName: Dolores -mail: McCaffeD@9fb3bab6a5274e42930ef0c4e486700b.bitwarden.com -carLicense: Q9B71K -departmentNumber: 7243 -employeeType: Contract -homePhone: +1 510 714-4218 -initials: D. M. -mobile: +1 510 638-5913 -pager: +1 510 264-7993 -roomNumber: 8558 -manager: cn=Laverne NetTeam,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Luciana Lepore,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luciana Lepore -sn: Lepore -description: This is Luciana Lepore's description -facsimileTelephoneNumber: +1 510 961-1453 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 925-8773 -title: Junior Administrative Technician -userPassword: Password1 -uid: LeporeL -givenName: Luciana -mail: LeporeL@d257ebd18e114f6aa84afd223eee79f3.bitwarden.com -carLicense: Y6696E -departmentNumber: 1089 -employeeType: Employee -homePhone: +1 510 416-7705 -initials: L. L. -mobile: +1 510 803-4435 -pager: +1 510 797-7535 -roomNumber: 8394 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tesa Suprick,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ciaran Cicchino -sn: Cicchino -description: This is Ciaran Cicchino's description -facsimileTelephoneNumber: +1 510 663-7171 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 510 880-7334 -title: Master Product Development Fellow -userPassword: Password1 -uid: CicchinC -givenName: Ciaran -mail: CicchinC@75db88f614404021a489793ab108bedb.bitwarden.com -carLicense: JQNVBI -departmentNumber: 2698 -employeeType: Contract -homePhone: +1 510 907-7663 -initials: C. C. -mobile: +1 510 119-8501 -pager: +1 510 531-4240 -roomNumber: 8371 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jimmie Korest,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jimmie Korest -sn: Korest -description: This is Jimmie Korest's description -facsimileTelephoneNumber: +1 510 973-7415 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 275-8148 -title: Associate Administrative Madonna -userPassword: Password1 -uid: KorestJ -givenName: Jimmie -mail: KorestJ@735bae6f17be4d659b3d005e2e886c13.bitwarden.com -carLicense: 27Y3BF -departmentNumber: 6314 -employeeType: Employee -homePhone: +1 510 374-4490 -initials: J. K. -mobile: +1 510 611-6749 -pager: +1 510 428-6566 -roomNumber: 8258 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaitlynn Cracknell -sn: Cracknell -description: This is Kaitlynn Cracknell's description -facsimileTelephoneNumber: +1 408 817-9218 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 251-2311 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: CrackneK -givenName: Kaitlynn -mail: CrackneK@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com -carLicense: PC5OEE -departmentNumber: 2541 -employeeType: Normal -homePhone: +1 408 271-6828 -initials: K. C. -mobile: +1 408 633-3741 -pager: +1 408 843-5565 -roomNumber: 8167 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Martelle Reno,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Martelle Reno -sn: Reno -description: This is Martelle Reno's description -facsimileTelephoneNumber: +1 818 410-9450 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 818 992-3687 -title: Associate Human Resources Czar -userPassword: Password1 -uid: RenoM -givenName: Martelle -mail: RenoM@de1b941b029b482ba2e81cfa3a5aa97c.bitwarden.com -carLicense: TVTKHD -departmentNumber: 4316 -employeeType: Contract -homePhone: +1 818 967-3319 -initials: M. R. -mobile: +1 818 524-8217 -pager: +1 818 645-2331 -roomNumber: 9794 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hock Chilausky,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hock Chilausky -sn: Chilausky -description: This is Hock Chilausky's description -facsimileTelephoneNumber: +1 510 190-2701 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 510 913-7251 -title: Supreme Administrative Vice President -userPassword: Password1 -uid: ChilausH -givenName: Hock -mail: ChilausH@8dfc1cdc4f364e48b56261d47a4ab828.bitwarden.com -carLicense: 2I9BFO -departmentNumber: 5094 -employeeType: Normal -homePhone: +1 510 573-4174 -initials: H. C. -mobile: +1 510 586-1099 -pager: +1 510 908-1101 -roomNumber: 8383 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Teddie Bulan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teddie Bulan -sn: Bulan -description: This is Teddie Bulan's description -facsimileTelephoneNumber: +1 415 821-9656 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 415 868-4141 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: BulanT -givenName: Teddie -mail: BulanT@4136b563ed9340ee98f3a89751b3b749.bitwarden.com -carLicense: 2HN2MS -departmentNumber: 1506 -employeeType: Contract -homePhone: +1 415 945-4093 -initials: T. B. -mobile: +1 415 292-8228 -pager: +1 415 397-7860 -roomNumber: 9221 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lavonda Rowsell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lavonda Rowsell -sn: Rowsell -description: This is Lavonda Rowsell's description -facsimileTelephoneNumber: +1 213 725-8646 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 213 192-1016 -title: Supreme Management Technician -userPassword: Password1 -uid: RowsellL -givenName: Lavonda -mail: RowsellL@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com -carLicense: MR4Q8U -departmentNumber: 9651 -employeeType: Contract -homePhone: +1 213 364-1852 -initials: L. R. -mobile: +1 213 877-2613 -pager: +1 213 786-3201 -roomNumber: 9455 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anallese Babasaki -sn: Babasaki -description: This is Anallese Babasaki's description -facsimileTelephoneNumber: +1 510 852-5246 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 834-9511 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: BabasakA -givenName: Anallese -mail: BabasakA@9eaee5a095454441a8ff73a3e26fa008.bitwarden.com -carLicense: JRYFDJ -departmentNumber: 4218 -employeeType: Employee -homePhone: +1 510 120-8342 -initials: A. B. -mobile: +1 510 201-4786 -pager: +1 510 637-8768 -roomNumber: 9528 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Persis Daneshzadeh -sn: Daneshzadeh -description: This is Persis Daneshzadeh's description -facsimileTelephoneNumber: +1 206 685-4333 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 936-3464 -title: Master Administrative Sales Rep -userPassword: Password1 -uid: DaneshzP -givenName: Persis -mail: DaneshzP@a312c5a631954b3083418977a35fbc96.bitwarden.com -carLicense: GPOPMK -departmentNumber: 5801 -employeeType: Normal -homePhone: +1 206 209-5194 -initials: P. D. -mobile: +1 206 112-5422 -pager: +1 206 888-7075 -roomNumber: 8382 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lorinda Nolet,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorinda Nolet -sn: Nolet -description: This is Lorinda Nolet's description -facsimileTelephoneNumber: +1 415 323-3697 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 415 464-1243 -title: Supreme Payroll Pinhead -userPassword: Password1 -uid: NoletL -givenName: Lorinda -mail: NoletL@87d497e060994207b70ef7bd8c3d6175.bitwarden.com -carLicense: 3EW1GN -departmentNumber: 7824 -employeeType: Employee -homePhone: +1 415 897-7652 -initials: L. N. -mobile: +1 415 103-5305 -pager: +1 415 494-4723 -roomNumber: 8321 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ike Outage,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ike Outage -sn: Outage -description: This is Ike Outage's description -facsimileTelephoneNumber: +1 415 683-7019 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 921-4807 -title: Master Human Resources Vice President -userPassword: Password1 -uid: OutageI -givenName: Ike -mail: OutageI@1d45ed10a4c94ef092969b5e721cde30.bitwarden.com -carLicense: Q62VKF -departmentNumber: 9211 -employeeType: Normal -homePhone: +1 415 370-7776 -initials: I. O. -mobile: +1 415 912-1655 -pager: +1 415 252-7128 -roomNumber: 8465 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Erin Dolson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erin Dolson -sn: Dolson -description: This is Erin Dolson's description -facsimileTelephoneNumber: +1 804 343-4093 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 804 693-1321 -title: Junior Peons Admin -userPassword: Password1 -uid: DolsonE -givenName: Erin -mail: DolsonE@834d5c62ddb748bdb27bdbef9776c699.bitwarden.com -carLicense: Q5FFP8 -departmentNumber: 4379 -employeeType: Employee -homePhone: +1 804 171-2620 -initials: E. D. -mobile: +1 804 761-3048 -pager: +1 804 615-4299 -roomNumber: 9632 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zoenka Rodriguez -sn: Rodriguez -description: This is Zoenka Rodriguez's description -facsimileTelephoneNumber: +1 415 397-8465 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 941-9569 -title: Junior Janitorial Writer -userPassword: Password1 -uid: RodriguZ -givenName: Zoenka -mail: RodriguZ@587817ef80f642439eb2bd6954e605f0.bitwarden.com -carLicense: HPT2N5 -departmentNumber: 9507 -employeeType: Normal -homePhone: +1 415 184-6588 -initials: Z. R. -mobile: +1 415 933-2128 -pager: +1 415 449-4899 -roomNumber: 8290 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anderson Sitar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anderson Sitar -sn: Sitar -description: This is Anderson Sitar's description -facsimileTelephoneNumber: +1 213 206-5400 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 868-5047 -title: Associate Management Punk -userPassword: Password1 -uid: SitarA -givenName: Anderson -mail: SitarA@75858e9b0a57431ea93369d3d0fdb55e.bitwarden.com -carLicense: 2UVA2K -departmentNumber: 5602 -employeeType: Contract -homePhone: +1 213 577-3646 -initials: A. S. -mobile: +1 213 254-1221 -pager: +1 213 257-1481 -roomNumber: 9056 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christabella Grandbois -sn: Grandbois -description: This is Christabella Grandbois's description -facsimileTelephoneNumber: +1 415 291-6436 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 896-6298 -title: Junior Janitorial Sales Rep -userPassword: Password1 -uid: GrandboC -givenName: Christabella -mail: GrandboC@f8828e0649db4c3db49f92ffdaeb1fea.bitwarden.com -carLicense: SD5V3R -departmentNumber: 8472 -employeeType: Normal -homePhone: +1 415 574-9858 -initials: C. G. -mobile: +1 415 135-8284 -pager: +1 415 903-7745 -roomNumber: 8413 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ranga Cawley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranga Cawley -sn: Cawley -description: This is Ranga Cawley's description -facsimileTelephoneNumber: +1 415 975-2339 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 415 239-1798 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: CawleyR -givenName: Ranga -mail: CawleyR@8a772ad7c8a24040a4f2b442f7aa7a04.bitwarden.com -carLicense: 9S29AO -departmentNumber: 1040 -employeeType: Normal -homePhone: +1 415 296-8929 -initials: R. C. -mobile: +1 415 880-5960 -pager: +1 415 390-7034 -roomNumber: 9911 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kylie Parnell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kylie Parnell -sn: Parnell -description: This is Kylie Parnell's description -facsimileTelephoneNumber: +1 818 145-2504 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 818 667-2566 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: ParnellK -givenName: Kylie -mail: ParnellK@e28cbc2c5f7b45ddab3e3b415504a46c.bitwarden.com -carLicense: 4UNHBC -departmentNumber: 8706 -employeeType: Normal -homePhone: +1 818 380-6709 -initials: K. P. -mobile: +1 818 115-4288 -pager: +1 818 355-8347 -roomNumber: 9652 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Neely Godo,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: GokulChandra TestingPOSTTEST -sn: TestingPOSTTEST -description: This is GokulChandra TestingPOSTTEST's description -facsimileTelephoneNumber: +1 804 155-9579 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 804 865-2613 -title: Chief Product Testing Dictator -userPassword: Password1 -uid: TestingG -givenName: GokulChandra -mail: TestingG@388f37e043f44f87a961652591a7a940.bitwarden.com -carLicense: P9WSS4 -departmentNumber: 6641 -employeeType: Normal -homePhone: +1 804 276-6316 -initials: G. T. -mobile: +1 804 712-9829 -pager: +1 804 786-1557 -roomNumber: 8711 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gwenette Feild,ou=Management,dc=bitwarden, dc=com - -dn: cn=Millisent Ladymon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Millisent Ladymon -sn: Ladymon -description: This is Millisent Ladymon's description -facsimileTelephoneNumber: +1 415 123-3201 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 621-5063 -title: Chief Product Development Sales Rep -userPassword: Password1 -uid: LadymonM -givenName: Millisent -mail: LadymonM@98315d8e8bc34b77b08ac74a18e3be73.bitwarden.com -carLicense: 800E2A -departmentNumber: 6825 -employeeType: Employee -homePhone: +1 415 552-1800 -initials: M. L. -mobile: +1 415 661-6355 -pager: +1 415 851-6042 -roomNumber: 8137 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chlo Reinboth -sn: Reinboth -description: This is Chlo Reinboth's description -facsimileTelephoneNumber: +1 415 310-9079 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 705-6876 -title: Master Product Testing Technician -userPassword: Password1 -uid: ReinbotC -givenName: Chlo -mail: ReinbotC@65d073567be540b69713d5ac0dbae37f.bitwarden.com -carLicense: YB07NF -departmentNumber: 4844 -employeeType: Normal -homePhone: +1 415 819-9696 -initials: C. R. -mobile: +1 415 639-8130 -pager: +1 415 602-4914 -roomNumber: 9307 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marrilee Montague,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tilda Turcot,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilda Turcot -sn: Turcot -description: This is Tilda Turcot's description -facsimileTelephoneNumber: +1 213 388-4390 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 149-2340 -title: Supreme Administrative Dictator -userPassword: Password1 -uid: TurcotT -givenName: Tilda -mail: TurcotT@29d0d437b2c147b0847b9dd994ec881e.bitwarden.com -carLicense: P8WLUD -departmentNumber: 2756 -employeeType: Contract -homePhone: +1 213 919-8873 -initials: T. T. -mobile: +1 213 669-1371 -pager: +1 213 877-6400 -roomNumber: 9528 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Yuji McCabe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yuji McCabe -sn: McCabe -description: This is Yuji McCabe's description -facsimileTelephoneNumber: +1 415 214-1292 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 833-3996 -title: Associate Payroll Developer -userPassword: Password1 -uid: McCabeY -givenName: Yuji -mail: McCabeY@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com -carLicense: K7YQ8W -departmentNumber: 3718 -employeeType: Contract -homePhone: +1 415 931-9277 -initials: Y. M. -mobile: +1 415 808-1459 -pager: +1 415 562-6992 -roomNumber: 8752 -manager: cn=Janka Norfleet,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pen Yost,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pen Yost -sn: Yost -description: This is Pen Yost's description -facsimileTelephoneNumber: +1 213 186-4989 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 213 369-7186 -title: Supreme Janitorial Artist -userPassword: Password1 -uid: YostP -givenName: Pen -mail: YostP@a58f1d89c8df4bb585be88ea46688614.bitwarden.com -carLicense: I4GQLP -departmentNumber: 5819 -employeeType: Employee -homePhone: +1 213 441-6450 -initials: P. Y. -mobile: +1 213 798-3790 -pager: +1 213 782-8027 -roomNumber: 8168 -manager: cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Traci Ahdieh,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Traci Ahdieh -sn: Ahdieh -description: This is Traci Ahdieh's description -facsimileTelephoneNumber: +1 510 538-3202 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 757-6843 -title: Chief Management Mascot -userPassword: Password1 -uid: AhdiehT -givenName: Traci -mail: AhdiehT@0d3a1096e9114165b169e9981629dc14.bitwarden.com -carLicense: JRTUXQ -departmentNumber: 6623 -employeeType: Employee -homePhone: +1 510 843-8210 -initials: T. A. -mobile: +1 510 646-7871 -pager: +1 510 268-4484 -roomNumber: 9229 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fay Deugau,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fay Deugau -sn: Deugau -description: This is Fay Deugau's description -facsimileTelephoneNumber: +1 415 362-5615 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 415 433-3702 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: DeugauF -givenName: Fay -mail: DeugauF@c928e664ca344d17b905e23403ffeabf.bitwarden.com -carLicense: MHTWHR -departmentNumber: 3646 -employeeType: Employee -homePhone: +1 415 907-6731 -initials: F. D. -mobile: +1 415 661-7435 -pager: +1 415 431-2713 -roomNumber: 9623 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Inna MokFung,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Inna MokFung -sn: MokFung -description: This is Inna MokFung's description -facsimileTelephoneNumber: +1 415 957-9087 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 975-1899 -title: Master Administrative Architect -userPassword: Password1 -uid: MokFungI -givenName: Inna -mail: MokFungI@a99084400fcf4b279e00215493abf581.bitwarden.com -carLicense: M2V6FJ -departmentNumber: 8262 -employeeType: Contract -homePhone: +1 415 454-2923 -initials: I. M. -mobile: +1 415 222-2578 -pager: +1 415 480-1277 -roomNumber: 8581 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thalia Bahgat -sn: Bahgat -description: This is Thalia Bahgat's description -facsimileTelephoneNumber: +1 804 246-4577 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 379-2332 -title: Master Human Resources Architect -userPassword: Password1 -uid: BahgatT -givenName: Thalia -mail: BahgatT@efcd1b5597e34989b53d787ed4a06081.bitwarden.com -carLicense: 1M466B -departmentNumber: 1650 -employeeType: Contract -homePhone: +1 804 990-7218 -initials: T. B. -mobile: +1 804 459-6608 -pager: +1 804 741-6068 -roomNumber: 9591 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tehchi McEwan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tehchi McEwan -sn: McEwan -description: This is Tehchi McEwan's description -facsimileTelephoneNumber: +1 213 411-2057 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 190-3843 -title: Supreme Peons Architect -userPassword: Password1 -uid: McEwanT -givenName: Tehchi -mail: McEwanT@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com -carLicense: BJS5MC -departmentNumber: 2444 -employeeType: Contract -homePhone: +1 213 815-3930 -initials: T. M. -mobile: +1 213 287-8085 -pager: +1 213 743-9281 -roomNumber: 9813 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tats Graves,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tats Graves -sn: Graves -description: This is Tats Graves's description -facsimileTelephoneNumber: +1 408 668-9919 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 408 131-9392 -title: Supreme Administrative Architect -userPassword: Password1 -uid: GravesT -givenName: Tats -mail: GravesT@a6ec4676b0ad44f28916d133e3a83b4d.bitwarden.com -carLicense: DCH8AA -departmentNumber: 3182 -employeeType: Employee -homePhone: +1 408 381-4514 -initials: T. G. -mobile: +1 408 217-5063 -pager: +1 408 645-7234 -roomNumber: 9074 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomson Annabelle -sn: Annabelle -description: This is Thomson Annabelle's description -facsimileTelephoneNumber: +1 818 399-1336 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 139-8563 -title: Junior Human Resources President -userPassword: Password1 -uid: AnnabelT -givenName: Thomson -mail: AnnabelT@4fe51546324e43adb896246907c2c135.bitwarden.com -carLicense: U1OLW9 -departmentNumber: 2726 -employeeType: Employee -homePhone: +1 818 488-6606 -initials: T. A. -mobile: +1 818 351-5857 -pager: +1 818 914-8181 -roomNumber: 9817 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nakina Steranka,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nakina Steranka -sn: Steranka -description: This is Nakina Steranka's description -facsimileTelephoneNumber: +1 510 749-5917 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 510 576-9473 -title: Chief Payroll Artist -userPassword: Password1 -uid: SterankN -givenName: Nakina -mail: SterankN@2daa2d54a3ef4729ab85003e87e24fc2.bitwarden.com -carLicense: 54AQBL -departmentNumber: 4121 -employeeType: Employee -homePhone: +1 510 898-4336 -initials: N. S. -mobile: +1 510 142-6866 -pager: +1 510 696-2745 -roomNumber: 8833 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gilda Reid,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilda Reid -sn: Reid -description: This is Gilda Reid's description -facsimileTelephoneNumber: +1 408 334-4284 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 900-8932 -title: Master Peons Admin -userPassword: Password1 -uid: ReidG -givenName: Gilda -mail: ReidG@dec219c60891448d9130e91ee40108cc.bitwarden.com -carLicense: H1XKOA -departmentNumber: 7759 -employeeType: Contract -homePhone: +1 408 734-3963 -initials: G. R. -mobile: +1 408 973-6171 -pager: +1 408 977-5184 -roomNumber: 9474 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hildegarde Mcellistrem -sn: Mcellistrem -description: This is Hildegarde Mcellistrem's description -facsimileTelephoneNumber: +1 206 181-2698 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 206 397-8273 -title: Supreme Administrative Stooge -userPassword: Password1 -uid: McellisH -givenName: Hildegarde -mail: McellisH@7e878d5ac7f34222a15cdadf43462965.bitwarden.com -carLicense: ARB7O2 -departmentNumber: 9985 -employeeType: Normal -homePhone: +1 206 566-9776 -initials: H. M. -mobile: +1 206 202-6345 -pager: +1 206 496-6688 -roomNumber: 8841 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Arnis Truchon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arnis Truchon -sn: Truchon -description: This is Arnis Truchon's description -facsimileTelephoneNumber: +1 206 300-1333 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 206 726-4906 -title: Master Administrative Engineer -userPassword: Password1 -uid: TruchonA -givenName: Arnis -mail: TruchonA@912fbf9c89084a08a95b13d9b901e072.bitwarden.com -carLicense: Y168DB -departmentNumber: 1797 -employeeType: Normal -homePhone: +1 206 724-7508 -initials: A. T. -mobile: +1 206 193-3861 -pager: +1 206 418-9439 -roomNumber: 9586 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ryszard DocumentationGrp -sn: DocumentationGrp -description: This is Ryszard DocumentationGrp's description -facsimileTelephoneNumber: +1 818 348-1600 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 818 830-2691 -title: Associate Payroll Grunt -userPassword: Password1 -uid: DocumenR -givenName: Ryszard -mail: DocumenR@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com -carLicense: YCLSP9 -departmentNumber: 1169 -employeeType: Employee -homePhone: +1 818 284-8619 -initials: R. D. -mobile: +1 818 761-2963 -pager: +1 818 638-8881 -roomNumber: 9721 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Syyed Ackwood -sn: Ackwood -description: This is Syyed Ackwood's description -facsimileTelephoneNumber: +1 206 852-1845 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 487-4969 -title: Supreme Janitorial Architect -userPassword: Password1 -uid: AckwoodS -givenName: Syyed -mail: AckwoodS@bebbec64fc5b426aa6d6b13aab8ac6c1.bitwarden.com -carLicense: UEITTY -departmentNumber: 2627 -employeeType: Normal -homePhone: +1 206 969-5959 -initials: S. A. -mobile: +1 206 657-6492 -pager: +1 206 927-2446 -roomNumber: 8867 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Paige Wanzeck,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paige Wanzeck -sn: Wanzeck -description: This is Paige Wanzeck's description -facsimileTelephoneNumber: +1 213 735-5178 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 699-8540 -title: Chief Management President -userPassword: Password1 -uid: WanzeckP -givenName: Paige -mail: WanzeckP@be6364f0dd5d4b9ca40fd1cd6b60dc01.bitwarden.com -carLicense: 1I25IE -departmentNumber: 8030 -employeeType: Contract -homePhone: +1 213 737-2316 -initials: P. W. -mobile: +1 213 937-7435 -pager: +1 213 781-3498 -roomNumber: 8146 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dutch HSI,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dutch HSI -sn: HSI -description: This is Dutch HSI's description -facsimileTelephoneNumber: +1 206 548-7095 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 206 245-6281 -title: Associate Product Testing Pinhead -userPassword: Password1 -uid: HSID -givenName: Dutch -mail: HSID@f1796b877596418d9a10887e44f60c73.bitwarden.com -carLicense: 85CM6W -departmentNumber: 6365 -employeeType: Normal -homePhone: +1 206 332-8686 -initials: D. H. -mobile: +1 206 813-1858 -pager: +1 206 630-4466 -roomNumber: 8093 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Adda Danai,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adda Danai -sn: Danai -description: This is Adda Danai's description -facsimileTelephoneNumber: +1 818 451-1431 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 818 600-5874 -title: Associate Product Development Warrior -userPassword: Password1 -uid: DanaiA -givenName: Adda -mail: DanaiA@2229562e57b44d9d8ff347bf88958fa0.bitwarden.com -carLicense: XPHUQC -departmentNumber: 1418 -employeeType: Normal -homePhone: +1 818 826-2212 -initials: A. D. -mobile: +1 818 109-9478 -pager: +1 818 262-2065 -roomNumber: 9009 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Netty Muttaqi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Netty Muttaqi -sn: Muttaqi -description: This is Netty Muttaqi's description -facsimileTelephoneNumber: +1 206 321-3261 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 605-2709 -title: Junior Management Visionary -userPassword: Password1 -uid: MuttaqiN -givenName: Netty -mail: MuttaqiN@05834ac23b2d4ffd8c19e87e4a8a3312.bitwarden.com -carLicense: 9YGBW9 -departmentNumber: 1447 -employeeType: Employee -homePhone: +1 206 681-5265 -initials: N. M. -mobile: +1 206 970-9652 -pager: +1 206 906-8492 -roomNumber: 8945 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Karly Breglec,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karly Breglec -sn: Breglec -description: This is Karly Breglec's description -facsimileTelephoneNumber: +1 804 387-2007 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 804 314-9304 -title: Master Peons Technician -userPassword: Password1 -uid: BreglecK -givenName: Karly -mail: BreglecK@7bea05cd51e741778b53f257dcc46e63.bitwarden.com -carLicense: GNQAIQ -departmentNumber: 7097 -employeeType: Contract -homePhone: +1 804 391-1983 -initials: K. B. -mobile: +1 804 754-4996 -pager: +1 804 177-5337 -roomNumber: 9088 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrew Gerbec -sn: Gerbec -description: This is Andrew Gerbec's description -facsimileTelephoneNumber: +1 804 215-9961 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 804 987-2457 -title: Master Janitorial Assistant -userPassword: Password1 -uid: GerbecA -givenName: Andrew -mail: GerbecA@4adccb8182214b56b2168ff34b029365.bitwarden.com -carLicense: B3LKNM -departmentNumber: 6057 -employeeType: Normal -homePhone: +1 804 342-2557 -initials: A. G. -mobile: +1 804 695-2033 -pager: +1 804 334-7176 -roomNumber: 9944 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gurdip Thornber,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gurdip Thornber -sn: Thornber -description: This is Gurdip Thornber's description -facsimileTelephoneNumber: +1 408 270-3465 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 408 767-7702 -title: Supreme Management Janitor -userPassword: Password1 -uid: ThornbeG -givenName: Gurdip -mail: ThornbeG@7470f93c470941c983e3e9faa8bed631.bitwarden.com -carLicense: KCBEGY -departmentNumber: 6491 -employeeType: Normal -homePhone: +1 408 818-9442 -initials: G. T. -mobile: +1 408 729-1580 -pager: +1 408 996-1895 -roomNumber: 8713 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=ShingCheong Eastus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dulcea Bassett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulcea Bassett -sn: Bassett -description: This is Dulcea Bassett's description -facsimileTelephoneNumber: +1 415 295-4697 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 762-4621 -title: Junior Management Stooge -userPassword: Password1 -uid: BassettD -givenName: Dulcea -mail: BassettD@6d2ee1c01cd84a73a333667538c9c7b1.bitwarden.com -carLicense: 1KLXMA -departmentNumber: 2510 -employeeType: Contract -homePhone: +1 415 899-2648 -initials: D. B. -mobile: +1 415 270-6594 -pager: +1 415 734-8145 -roomNumber: 9525 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Caprice Selent,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caprice Selent -sn: Selent -description: This is Caprice Selent's description -facsimileTelephoneNumber: +1 804 908-7826 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 695-7027 -title: Junior Payroll Mascot -userPassword: Password1 -uid: SelentC -givenName: Caprice -mail: SelentC@abccdcf5035347f79868c63de7257f89.bitwarden.com -carLicense: IJNCO7 -departmentNumber: 5592 -employeeType: Contract -homePhone: +1 804 877-6094 -initials: C. S. -mobile: +1 804 255-7322 -pager: +1 804 693-9185 -roomNumber: 8483 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hemant Remillard,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hemant Remillard -sn: Remillard -description: This is Hemant Remillard's description -facsimileTelephoneNumber: +1 415 903-4312 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 415 518-4106 -title: Junior Janitorial Punk -userPassword: Password1 -uid: RemillaH -givenName: Hemant -mail: RemillaH@cc172d717b9241f0a28f83e3ce74fb85.bitwarden.com -carLicense: C8IW4S -departmentNumber: 2225 -employeeType: Normal -homePhone: +1 415 769-2116 -initials: H. R. -mobile: +1 415 644-7626 -pager: +1 415 374-1495 -roomNumber: 8483 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tilak Odgers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilak Odgers -sn: Odgers -description: This is Tilak Odgers's description -facsimileTelephoneNumber: +1 510 768-4588 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 510 376-9271 -title: Master Management Punk -userPassword: Password1 -uid: OdgersT -givenName: Tilak -mail: OdgersT@d7b181ccc8954040a7c4160403df7781.bitwarden.com -carLicense: N8X7UQ -departmentNumber: 3554 -employeeType: Employee -homePhone: +1 510 752-7339 -initials: T. O. -mobile: +1 510 482-4855 -pager: +1 510 635-3299 -roomNumber: 8160 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kaela Wooff,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaela Wooff -sn: Wooff -description: This is Kaela Wooff's description -facsimileTelephoneNumber: +1 804 230-8553 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 804 130-8057 -title: Supreme Peons Architect -userPassword: Password1 -uid: WooffK -givenName: Kaela -mail: WooffK@c78a9a65ca75452787721ced31a98916.bitwarden.com -carLicense: F83JOU -departmentNumber: 8680 -employeeType: Normal -homePhone: +1 804 491-9235 -initials: K. W. -mobile: +1 804 117-7831 -pager: +1 804 190-5208 -roomNumber: 8924 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ginette Deardurff -sn: Deardurff -description: This is Ginette Deardurff's description -facsimileTelephoneNumber: +1 206 734-3312 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 945-6775 -title: Master Human Resources Janitor -userPassword: Password1 -uid: DeardurG -givenName: Ginette -mail: DeardurG@369d0d96577549cc8a38c9240b9041ed.bitwarden.com -carLicense: A7LDQO -departmentNumber: 1805 -employeeType: Normal -homePhone: +1 206 771-6879 -initials: G. D. -mobile: +1 206 370-6092 -pager: +1 206 707-7616 -roomNumber: 8270 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bosiljka Dolezal -sn: Dolezal -description: This is Bosiljka Dolezal's description -facsimileTelephoneNumber: +1 408 676-8483 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 990-4716 -title: Supreme Product Development Mascot -userPassword: Password1 -uid: DolezalB -givenName: Bosiljka -mail: DolezalB@fadd1eac8fe2451fa3ba21f515baaf1e.bitwarden.com -carLicense: 78P8HJ -departmentNumber: 2514 -employeeType: Contract -homePhone: +1 408 101-9668 -initials: B. D. -mobile: +1 408 288-5602 -pager: +1 408 652-1240 -roomNumber: 9007 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Grey Krakowetz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grey Krakowetz -sn: Krakowetz -description: This is Grey Krakowetz's description -facsimileTelephoneNumber: +1 206 490-8432 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 645-8084 -title: Associate Administrative Assistant -userPassword: Password1 -uid: KrakoweG -givenName: Grey -mail: KrakoweG@5c9e892ecd964d17bdc57422f30b14b3.bitwarden.com -carLicense: H013UK -departmentNumber: 1387 -employeeType: Normal -homePhone: +1 206 663-2021 -initials: G. K. -mobile: +1 206 169-5451 -pager: +1 206 608-2616 -roomNumber: 8551 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Canute Ladymon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Canute Ladymon -sn: Ladymon -description: This is Canute Ladymon's description -facsimileTelephoneNumber: +1 415 885-1095 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 318-2989 -title: Master Payroll Madonna -userPassword: Password1 -uid: LadymonC -givenName: Canute -mail: LadymonC@1cec494b2c6b4b8a8fb44bcdcbcfca34.bitwarden.com -carLicense: PXK8DQ -departmentNumber: 5553 -employeeType: Normal -homePhone: +1 415 213-9422 -initials: C. L. -mobile: +1 415 570-4180 -pager: +1 415 259-5703 -roomNumber: 8820 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Alex Lumley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alex Lumley -sn: Lumley -description: This is Alex Lumley's description -facsimileTelephoneNumber: +1 804 775-4426 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 760-4793 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: LumleyA -givenName: Alex -mail: LumleyA@c7211550a0e54b11899929b0d44158ff.bitwarden.com -carLicense: EDP6Y5 -departmentNumber: 6751 -employeeType: Normal -homePhone: +1 804 470-8768 -initials: A. L. -mobile: +1 804 855-2248 -pager: +1 804 150-1687 -roomNumber: 8282 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gunars Runkel,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gunars Runkel -sn: Runkel -description: This is Gunars Runkel's description -facsimileTelephoneNumber: +1 415 346-7017 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 843-6019 -title: Chief Peons Vice President -userPassword: Password1 -uid: RunkelG -givenName: Gunars -mail: RunkelG@bfbe96af9d94476ba3dcfc88f7bdf41b.bitwarden.com -carLicense: KP4K2S -departmentNumber: 2794 -employeeType: Employee -homePhone: +1 415 425-7966 -initials: G. R. -mobile: +1 415 296-7648 -pager: +1 415 170-2690 -roomNumber: 8958 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Careers McAdorey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Careers McAdorey -sn: McAdorey -description: This is Careers McAdorey's description -facsimileTelephoneNumber: +1 213 230-8076 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 146-2049 -title: Chief Management Pinhead -userPassword: Password1 -uid: McAdoreC -givenName: Careers -mail: McAdoreC@a8e48e7f01fb4831b7bf783525861229.bitwarden.com -carLicense: KOK2X0 -departmentNumber: 8734 -employeeType: Normal -homePhone: +1 213 943-5137 -initials: C. M. -mobile: +1 213 306-8013 -pager: +1 213 542-6732 -roomNumber: 9107 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ardelia Bunner,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardelia Bunner -sn: Bunner -description: This is Ardelia Bunner's description -facsimileTelephoneNumber: +1 408 619-5154 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 159-7694 -title: Associate Management Writer -userPassword: Password1 -uid: BunnerA -givenName: Ardelia -mail: BunnerA@48da65776d804c88bd44538c39d70bac.bitwarden.com -carLicense: 4KRFXT -departmentNumber: 9279 -employeeType: Contract -homePhone: +1 408 549-8263 -initials: A. B. -mobile: +1 408 862-2360 -pager: +1 408 326-6489 -roomNumber: 9278 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Fekri Hunike,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fekri Hunike -sn: Hunike -description: This is Fekri Hunike's description -facsimileTelephoneNumber: +1 408 126-3193 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 408 274-5400 -title: Master Product Testing Warrior -userPassword: Password1 -uid: HunikeF -givenName: Fekri -mail: HunikeF@4440633f8f29482c8743bf0c056d529c.bitwarden.com -carLicense: 4RUTFE -departmentNumber: 7681 -employeeType: Normal -homePhone: +1 408 606-2257 -initials: F. H. -mobile: +1 408 683-8865 -pager: +1 408 301-4565 -roomNumber: 9139 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Adey Shippen,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adey Shippen -sn: Shippen -description: This is Adey Shippen's description -facsimileTelephoneNumber: +1 818 737-3161 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 118-6811 -title: Supreme Peons Dictator -userPassword: Password1 -uid: ShippenA -givenName: Adey -mail: ShippenA@23d4be833d7746b6959f35fd9cc7acb5.bitwarden.com -carLicense: 05O257 -departmentNumber: 3898 -employeeType: Employee -homePhone: +1 818 530-8300 -initials: A. S. -mobile: +1 818 975-1284 -pager: +1 818 880-1867 -roomNumber: 9191 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Malina Lederman,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malina Lederman -sn: Lederman -description: This is Malina Lederman's description -facsimileTelephoneNumber: +1 415 608-8984 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 390-9828 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: LedermaM -givenName: Malina -mail: LedermaM@b4a96c186a084a79b91245984247afc4.bitwarden.com -carLicense: MK1RT7 -departmentNumber: 8418 -employeeType: Normal -homePhone: +1 415 657-8654 -initials: M. L. -mobile: +1 415 442-3106 -pager: +1 415 985-9463 -roomNumber: 9691 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmina Kikuta -sn: Kikuta -description: This is Carmina Kikuta's description -facsimileTelephoneNumber: +1 818 611-3657 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 631-1153 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: KikutaC -givenName: Carmina -mail: KikutaC@392a4a6a368341beb07fcc7da7744c10.bitwarden.com -carLicense: E4BXVV -departmentNumber: 7383 -employeeType: Employee -homePhone: +1 818 781-3623 -initials: C. K. -mobile: +1 818 827-9737 -pager: +1 818 730-6097 -roomNumber: 8731 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Perry Maryak,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perry Maryak -sn: Maryak -description: This is Perry Maryak's description -facsimileTelephoneNumber: +1 206 620-4352 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 144-2593 -title: Master Product Development Admin -userPassword: Password1 -uid: MaryakP -givenName: Perry -mail: MaryakP@c22edd5791c346768ee9b376006f6c67.bitwarden.com -carLicense: 0T9I16 -departmentNumber: 4492 -employeeType: Employee -homePhone: +1 206 412-5860 -initials: P. M. -mobile: +1 206 362-7751 -pager: +1 206 843-3667 -roomNumber: 8858 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vance Ruppert,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vance Ruppert -sn: Ruppert -description: This is Vance Ruppert's description -facsimileTelephoneNumber: +1 213 330-6069 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 213 303-1158 -title: Junior Payroll Dictator -userPassword: Password1 -uid: RuppertV -givenName: Vance -mail: RuppertV@20c9c762ac48445f91be8a70247647f6.bitwarden.com -carLicense: YYP39M -departmentNumber: 3286 -employeeType: Contract -homePhone: +1 213 633-1973 -initials: V. R. -mobile: +1 213 714-1197 -pager: +1 213 960-5038 -roomNumber: 9321 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Peg Toscano,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Peg Toscano -sn: Toscano -description: This is Peg Toscano's description -facsimileTelephoneNumber: +1 510 527-4309 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 320-3512 -title: Master Human Resources Vice President -userPassword: Password1 -uid: ToscanoP -givenName: Peg -mail: ToscanoP@6ea643c033164b309c315ce3b4972cd5.bitwarden.com -carLicense: PUNUP7 -departmentNumber: 8650 -employeeType: Employee -homePhone: +1 510 337-8485 -initials: P. T. -mobile: +1 510 784-2584 -pager: +1 510 678-8969 -roomNumber: 8886 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Monah Tsonos,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Monah Tsonos -sn: Tsonos -description: This is Monah Tsonos's description -facsimileTelephoneNumber: +1 818 528-8061 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 376-7275 -title: Junior Product Testing President -userPassword: Password1 -uid: TsonosM -givenName: Monah -mail: TsonosM@9f17762c03e9474abb40044c838d96f2.bitwarden.com -carLicense: LK0D25 -departmentNumber: 4535 -employeeType: Normal -homePhone: +1 818 672-6905 -initials: M. T. -mobile: +1 818 117-8360 -pager: +1 818 232-5357 -roomNumber: 8229 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Meade Latulippe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meade Latulippe -sn: Latulippe -description: This is Meade Latulippe's description -facsimileTelephoneNumber: +1 818 567-6406 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 818 939-3518 -title: Associate Janitorial Warrior -userPassword: Password1 -uid: LatulipM -givenName: Meade -mail: LatulipM@c4952a4f27294740adcb993c369618a3.bitwarden.com -carLicense: K3HW96 -departmentNumber: 4424 -employeeType: Contract -homePhone: +1 818 569-5529 -initials: M. L. -mobile: +1 818 567-7250 -pager: +1 818 871-7003 -roomNumber: 8741 -manager: cn=Floria DAoust,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karan Piper,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karan Piper -sn: Piper -description: This is Karan Piper's description -facsimileTelephoneNumber: +1 213 542-9112 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 525-7450 -title: Chief Peons Architect -userPassword: Password1 -uid: PiperK -givenName: Karan -mail: PiperK@44bcfd07218c489eba7387452f761d66.bitwarden.com -carLicense: 6BTFNT -departmentNumber: 5824 -employeeType: Normal -homePhone: +1 213 222-2301 -initials: K. P. -mobile: +1 213 855-1757 -pager: +1 213 362-2360 -roomNumber: 8457 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Chander Paulus,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chander Paulus -sn: Paulus -description: This is Chander Paulus's description -facsimileTelephoneNumber: +1 206 951-6696 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 206 849-1383 -title: Junior Product Testing Czar -userPassword: Password1 -uid: PaulusC -givenName: Chander -mail: PaulusC@b00dae30a7d643d19965ff3ced64a2ec.bitwarden.com -carLicense: RJIAFV -departmentNumber: 3424 -employeeType: Employee -homePhone: +1 206 187-2648 -initials: C. P. -mobile: +1 206 288-3673 -pager: +1 206 337-7702 -roomNumber: 9783 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Parham Cisco,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Parham Cisco -sn: Cisco -description: This is Parham Cisco's description -facsimileTelephoneNumber: +1 206 845-9975 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 206 529-3257 -title: Chief Product Testing Technician -userPassword: Password1 -uid: CiscoP -givenName: Parham -mail: CiscoP@16a262560039498cb0b40791fe72917a.bitwarden.com -carLicense: SO41PP -departmentNumber: 7446 -employeeType: Employee -homePhone: +1 206 173-9699 -initials: P. C. -mobile: +1 206 273-6717 -pager: +1 206 807-4641 -roomNumber: 8228 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rochella Mazarick,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vmbackup Hagan -sn: Hagan -description: This is Vmbackup Hagan's description -facsimileTelephoneNumber: +1 408 753-4244 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 408 776-8568 -title: Chief Product Testing Janitor -userPassword: Password1 -uid: HaganV -givenName: Vmbackup -mail: HaganV@4a8d22894cf24b2dbddb3ccac895cba0.bitwarden.com -carLicense: IWTL8C -departmentNumber: 6879 -employeeType: Employee -homePhone: +1 408 380-7354 -initials: V. H. -mobile: +1 408 589-9082 -pager: +1 408 496-5477 -roomNumber: 8080 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Charmain Chahal,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charmain Chahal -sn: Chahal -description: This is Charmain Chahal's description -facsimileTelephoneNumber: +1 213 142-1539 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 580-8869 -title: Associate Payroll Czar -userPassword: Password1 -uid: ChahalC -givenName: Charmain -mail: ChahalC@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com -carLicense: OE128Q -departmentNumber: 2809 -employeeType: Contract -homePhone: +1 213 486-6024 -initials: C. C. -mobile: +1 213 173-5559 -pager: +1 213 220-4224 -roomNumber: 9408 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ainslee Pinizzotto -sn: Pinizzotto -description: This is Ainslee Pinizzotto's description -facsimileTelephoneNumber: +1 206 810-9420 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 177-6021 -title: Supreme Management Fellow -userPassword: Password1 -uid: PinizzoA -givenName: Ainslee -mail: PinizzoA@51229efcbb5c42119b299e0a2768aeae.bitwarden.com -carLicense: AH4Q6K -departmentNumber: 5376 -employeeType: Normal -homePhone: +1 206 821-7057 -initials: A. P. -mobile: +1 206 250-2236 -pager: +1 206 681-6706 -roomNumber: 9089 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ainsley Sobkow -sn: Sobkow -description: This is Ainsley Sobkow's description -facsimileTelephoneNumber: +1 510 251-6711 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 793-3464 -title: Supreme Administrative Developer -userPassword: Password1 -uid: SobkowA -givenName: Ainsley -mail: SobkowA@7979cefae37f498d8fb0f14251a8537d.bitwarden.com -carLicense: FIOGC0 -departmentNumber: 4226 -employeeType: Normal -homePhone: +1 510 642-8262 -initials: A. S. -mobile: +1 510 514-7947 -pager: +1 510 351-1349 -roomNumber: 9987 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Janelle Tucker,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janelle Tucker -sn: Tucker -description: This is Janelle Tucker's description -facsimileTelephoneNumber: +1 213 781-7450 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 205-8997 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: TuckerJ -givenName: Janelle -mail: TuckerJ@d49ef3511c504afba6eb7b305ddc6daf.bitwarden.com -carLicense: 26RK17 -departmentNumber: 4045 -employeeType: Normal -homePhone: +1 213 231-7297 -initials: J. T. -mobile: +1 213 102-6377 -pager: +1 213 507-3104 -roomNumber: 8549 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Angie Tesch,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angie Tesch -sn: Tesch -description: This is Angie Tesch's description -facsimileTelephoneNumber: +1 206 191-9583 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 838-7487 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: TeschA -givenName: Angie -mail: TeschA@48da65776d804c88bd44538c39d70bac.bitwarden.com -carLicense: PBAV9A -departmentNumber: 3902 -employeeType: Contract -homePhone: +1 206 747-8975 -initials: A. T. -mobile: +1 206 836-1237 -pager: +1 206 431-8311 -roomNumber: 8362 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Traci Wolter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Traci Wolter -sn: Wolter -description: This is Traci Wolter's description -facsimileTelephoneNumber: +1 206 431-1284 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 206 888-3067 -title: Supreme Human Resources Evangelist -userPassword: Password1 -uid: WolterT -givenName: Traci -mail: WolterT@f0da7bbf51f0472cbdc26a3d196ad9f7.bitwarden.com -carLicense: P2ML9C -departmentNumber: 8289 -employeeType: Employee -homePhone: +1 206 532-3260 -initials: T. W. -mobile: +1 206 985-1394 -pager: +1 206 881-9032 -roomNumber: 8349 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Azmina Bergeson,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Azmina Bergeson -sn: Bergeson -description: This is Azmina Bergeson's description -facsimileTelephoneNumber: +1 818 969-8459 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 955-7531 -title: Associate Peons Warrior -userPassword: Password1 -uid: BergesoA -givenName: Azmina -mail: BergesoA@01414db3388a4e4b949f31547b79484c.bitwarden.com -carLicense: 3CCT7A -departmentNumber: 5134 -employeeType: Normal -homePhone: +1 818 861-6490 -initials: A. B. -mobile: +1 818 387-6916 -pager: +1 818 225-1964 -roomNumber: 9417 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dolly Dane,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dolly Dane -sn: Dane -description: This is Dolly Dane's description -facsimileTelephoneNumber: +1 408 839-6626 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 408 419-9723 -title: Junior Peons Architect -userPassword: Password1 -uid: DaneD -givenName: Dolly -mail: DaneD@bc4cae64b5dd4867a72d318eb0fa8dc9.bitwarden.com -carLicense: QDI9VA -departmentNumber: 4238 -employeeType: Employee -homePhone: +1 408 872-8667 -initials: D. D. -mobile: +1 408 192-8658 -pager: +1 408 871-5069 -roomNumber: 9857 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Narendra Matsuzawa,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Narendra Matsuzawa -sn: Matsuzawa -description: This is Narendra Matsuzawa's description -facsimileTelephoneNumber: +1 804 106-3274 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 320-3550 -title: Junior Management Engineer -userPassword: Password1 -uid: MatsuzaN -givenName: Narendra -mail: MatsuzaN@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com -carLicense: WFJY8H -departmentNumber: 8066 -employeeType: Normal -homePhone: +1 804 370-1352 -initials: N. M. -mobile: +1 804 740-6408 -pager: +1 804 658-7984 -roomNumber: 8378 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zaneta Kibler -sn: Kibler -description: This is Zaneta Kibler's description -facsimileTelephoneNumber: +1 408 807-8072 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 662-8090 -title: Master Product Testing Pinhead -userPassword: Password1 -uid: KiblerZ -givenName: Zaneta -mail: KiblerZ@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com -carLicense: C0JW20 -departmentNumber: 8379 -employeeType: Employee -homePhone: +1 408 170-7597 -initials: Z. K. -mobile: +1 408 608-4593 -pager: +1 408 419-6574 -roomNumber: 9948 -manager: cn=Saraann Lui,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Souza Austin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Souza Austin -sn: Austin -description: This is Souza Austin's description -facsimileTelephoneNumber: +1 408 472-3785 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 462-4279 -title: Master Administrative Czar -userPassword: Password1 -uid: AustinS -givenName: Souza -mail: AustinS@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com -carLicense: K355R0 -departmentNumber: 9286 -employeeType: Contract -homePhone: +1 408 445-4263 -initials: S. A. -mobile: +1 408 345-8064 -pager: +1 408 809-3039 -roomNumber: 9413 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harry Ferruzzi -sn: Ferruzzi -description: This is Harry Ferruzzi's description -facsimileTelephoneNumber: +1 804 948-7545 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 804 503-6313 -title: Chief Human Resources Punk -userPassword: Password1 -uid: FerruzzH -givenName: Harry -mail: FerruzzH@b36741628ac5411aa6219ea976eb30f2.bitwarden.com -carLicense: M75KSS -departmentNumber: 4391 -employeeType: Employee -homePhone: +1 804 476-8584 -initials: H. F. -mobile: +1 804 135-4018 -pager: +1 804 505-5860 -roomNumber: 8850 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lauretta Withrow -sn: Withrow -description: This is Lauretta Withrow's description -facsimileTelephoneNumber: +1 408 983-4056 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 151-2771 -title: Master Human Resources Evangelist -userPassword: Password1 -uid: WithrowL -givenName: Lauretta -mail: WithrowL@30c200fc237249269682c9ad7e2548d3.bitwarden.com -carLicense: 34CC6S -departmentNumber: 6820 -employeeType: Contract -homePhone: +1 408 543-1661 -initials: L. W. -mobile: +1 408 221-5138 -pager: +1 408 419-9095 -roomNumber: 8675 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Edeline Kingdon,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Chrissy Marren,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chrissy Marren -sn: Marren -description: This is Chrissy Marren's description -facsimileTelephoneNumber: +1 206 974-7253 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 206 260-5613 -title: Master Payroll President -userPassword: Password1 -uid: MarrenC -givenName: Chrissy -mail: MarrenC@8b67b2d7bd1144ea807341eb074f69ea.bitwarden.com -carLicense: HHGPAD -departmentNumber: 4588 -employeeType: Normal -homePhone: +1 206 297-7549 -initials: C. M. -mobile: +1 206 879-1150 -pager: +1 206 339-9840 -roomNumber: 8104 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bhagvat VanSchouwen -sn: VanSchouwen -description: This is Bhagvat VanSchouwen's description -facsimileTelephoneNumber: +1 408 112-2311 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 515-1918 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: VanSchoB -givenName: Bhagvat -mail: VanSchoB@82a602f457ae4136b678ebd6177ccf89.bitwarden.com -carLicense: 7CF8FW -departmentNumber: 5406 -employeeType: Employee -homePhone: +1 408 909-1015 -initials: B. V. -mobile: +1 408 725-1456 -pager: +1 408 782-5627 -roomNumber: 8902 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tandie Virgoe,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tandie Virgoe -sn: Virgoe -description: This is Tandie Virgoe's description -facsimileTelephoneNumber: +1 408 770-5529 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 249-6764 -title: Junior Peons Developer -userPassword: Password1 -uid: VirgoeT -givenName: Tandie -mail: VirgoeT@6befdabbbc374615aeeed6f7a15c3c4b.bitwarden.com -carLicense: GTQFOQ -departmentNumber: 1740 -employeeType: Contract -homePhone: +1 408 595-9755 -initials: T. V. -mobile: +1 408 584-7371 -pager: +1 408 302-1598 -roomNumber: 8773 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Calley Naujoks,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calley Naujoks -sn: Naujoks -description: This is Calley Naujoks's description -facsimileTelephoneNumber: +1 510 484-4906 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 510 141-7103 -title: Junior Management Visionary -userPassword: Password1 -uid: NaujoksC -givenName: Calley -mail: NaujoksC@68503c7f9b494f9789d4c554a08c5cad.bitwarden.com -carLicense: ELTRWY -departmentNumber: 9692 -employeeType: Employee -homePhone: +1 510 348-1235 -initials: C. N. -mobile: +1 510 374-5980 -pager: +1 510 933-5073 -roomNumber: 9394 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Regan Neilsen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Regan Neilsen -sn: Neilsen -description: This is Regan Neilsen's description -facsimileTelephoneNumber: +1 206 401-9393 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 622-8692 -title: Master Administrative Engineer -userPassword: Password1 -uid: NeilsenR -givenName: Regan -mail: NeilsenR@995d86ac0711408aa561a9fbb566ede2.bitwarden.com -carLicense: JXASAR -departmentNumber: 5839 -employeeType: Normal -homePhone: +1 206 568-6363 -initials: R. N. -mobile: +1 206 978-2276 -pager: +1 206 776-1956 -roomNumber: 9983 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Katja Waterman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Katja Waterman -sn: Waterman -description: This is Katja Waterman's description -facsimileTelephoneNumber: +1 415 119-7519 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 893-5571 -title: Chief Product Development Developer -userPassword: Password1 -uid: WatermaK -givenName: Katja -mail: WatermaK@c145b5c52b41469195e7c7d838041281.bitwarden.com -carLicense: YR7QE7 -departmentNumber: 5235 -employeeType: Normal -homePhone: +1 415 862-7107 -initials: K. W. -mobile: +1 415 403-9038 -pager: +1 415 499-6350 -roomNumber: 8119 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sol Royals,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sol Royals -sn: Royals -description: This is Sol Royals's description -facsimileTelephoneNumber: +1 804 959-3201 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 804 523-9180 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: RoyalsS -givenName: Sol -mail: RoyalsS@612e8eb188de48388f43236fca542654.bitwarden.com -carLicense: AK9ALQ -departmentNumber: 6046 -employeeType: Normal -homePhone: +1 804 567-1708 -initials: S. R. -mobile: +1 804 951-8251 -pager: +1 804 239-3760 -roomNumber: 9381 -manager: cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=KahMing Dubreck,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: KahMing Dubreck -sn: Dubreck -description: This is KahMing Dubreck's description -facsimileTelephoneNumber: +1 213 771-7125 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 213 209-2373 -title: Junior Administrative Mascot -userPassword: Password1 -uid: DubreckK -givenName: KahMing -mail: DubreckK@b2c537a3f6174546b2a7b1777d2dea4e.bitwarden.com -carLicense: BT4BTY -departmentNumber: 7909 -employeeType: Employee -homePhone: +1 213 843-1234 -initials: K. D. -mobile: +1 213 120-1834 -pager: +1 213 670-8061 -roomNumber: 9807 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Melitta Hunter,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melitta Hunter -sn: Hunter -description: This is Melitta Hunter's description -facsimileTelephoneNumber: +1 804 984-8252 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 114-2284 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: HunterM -givenName: Melitta -mail: HunterM@f26a95f0337144a7a3fdc9a2ef672cb1.bitwarden.com -carLicense: 6MA87T -departmentNumber: 3996 -employeeType: Normal -homePhone: +1 804 226-2081 -initials: M. H. -mobile: +1 804 319-9570 -pager: +1 804 938-9928 -roomNumber: 8947 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Trang Tucker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trang Tucker -sn: Tucker -description: This is Trang Tucker's description -facsimileTelephoneNumber: +1 415 412-5196 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 415 908-2225 -title: Chief Product Testing Janitor -userPassword: Password1 -uid: TuckerT -givenName: Trang -mail: TuckerT@08455693013d466f8b3622782a9a4935.bitwarden.com -carLicense: RF4D2U -departmentNumber: 9657 -employeeType: Normal -homePhone: +1 415 256-8482 -initials: T. T. -mobile: +1 415 581-2351 -pager: +1 415 228-1891 -roomNumber: 9032 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edmond DiFalco -sn: DiFalco -description: This is Edmond DiFalco's description -facsimileTelephoneNumber: +1 415 727-8526 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 373-7650 -title: Chief Janitorial Czar -userPassword: Password1 -uid: DiFalcoE -givenName: Edmond -mail: DiFalcoE@75f92a023d754e1aabb5bf6fcaf0b4f4.bitwarden.com -carLicense: 9JH7C3 -departmentNumber: 9939 -employeeType: Normal -homePhone: +1 415 595-4818 -initials: E. D. -mobile: +1 415 170-9635 -pager: +1 415 324-2489 -roomNumber: 9206 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicole Zinkie -sn: Zinkie -description: This is Nicole Zinkie's description -facsimileTelephoneNumber: +1 408 279-8272 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 408 486-9905 -title: Chief Janitorial Grunt -userPassword: Password1 -uid: ZinkieN -givenName: Nicole -mail: ZinkieN@17084ac6bac544e082e8e10baef9e88a.bitwarden.com -carLicense: CL7K2W -departmentNumber: 7760 -employeeType: Contract -homePhone: +1 408 734-6429 -initials: N. Z. -mobile: +1 408 559-3016 -pager: +1 408 546-1925 -roomNumber: 9539 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Garth Alfaro,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Garth Alfaro -sn: Alfaro -description: This is Garth Alfaro's description -facsimileTelephoneNumber: +1 213 487-3581 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 270-9588 -title: Master Management Dictator -userPassword: Password1 -uid: AlfaroG -givenName: Garth -mail: AlfaroG@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com -carLicense: FWQ6NF -departmentNumber: 5368 -employeeType: Normal -homePhone: +1 213 349-4513 -initials: G. A. -mobile: +1 213 760-7567 -pager: +1 213 248-9001 -roomNumber: 8813 -manager: cn=Abbye Kurth,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Rickie Genge,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rickie Genge -sn: Genge -description: This is Rickie Genge's description -facsimileTelephoneNumber: +1 818 630-2640 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 666-9529 -title: Chief Human Resources Mascot -userPassword: Password1 -uid: GengeR -givenName: Rickie -mail: GengeR@406a5f63a2784737a47e7de7eb972559.bitwarden.com -carLicense: SLLAEB -departmentNumber: 9844 -employeeType: Normal -homePhone: +1 818 637-7350 -initials: R. G. -mobile: +1 818 133-9514 -pager: +1 818 194-1122 -roomNumber: 8838 -manager: cn=Norman Schmeler,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mariette Piggott,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariette Piggott -sn: Piggott -description: This is Mariette Piggott's description -facsimileTelephoneNumber: +1 818 176-8475 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 937-1816 -title: Supreme Administrative Vice President -userPassword: Password1 -uid: PiggottM -givenName: Mariette -mail: PiggottM@2e9e3fdb5ac94378ae0798f03ed2af05.bitwarden.com -carLicense: JNDW4B -departmentNumber: 3245 -employeeType: Contract -homePhone: +1 818 711-1058 -initials: M. P. -mobile: +1 818 185-9226 -pager: +1 818 503-2297 -roomNumber: 8536 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Darla Schierbaum,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darla Schierbaum -sn: Schierbaum -description: This is Darla Schierbaum's description -facsimileTelephoneNumber: +1 213 297-8544 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 213 591-6554 -title: Chief Payroll Admin -userPassword: Password1 -uid: SchierbD -givenName: Darla -mail: SchierbD@7b9b134496944c719de5669c91d7d638.bitwarden.com -carLicense: 39U4UG -departmentNumber: 6579 -employeeType: Employee -homePhone: +1 213 479-1435 -initials: D. S. -mobile: +1 213 931-6802 -pager: +1 213 635-1673 -roomNumber: 9415 -manager: cn=Johnna Rodkey,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delisle Wesolowski -sn: Wesolowski -description: This is Delisle Wesolowski's description -facsimileTelephoneNumber: +1 408 696-5596 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 985-2132 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: WesolowD -givenName: Delisle -mail: WesolowD@da38cf4466c54f10aa416fd5fe880608.bitwarden.com -carLicense: HPA1CG -departmentNumber: 4981 -employeeType: Normal -homePhone: +1 408 715-4324 -initials: D. W. -mobile: +1 408 732-6250 -pager: +1 408 498-4519 -roomNumber: 9231 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Technical Ely,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Technical Ely -sn: Ely -description: This is Technical Ely's description -facsimileTelephoneNumber: +1 818 450-5006 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 571-3460 -title: Chief Product Development Madonna -userPassword: Password1 -uid: ElyT -givenName: Technical -mail: ElyT@766a422a35f14846b4f938fc382952b4.bitwarden.com -carLicense: 6KYHRC -departmentNumber: 3605 -employeeType: Normal -homePhone: +1 818 719-8591 -initials: T. E. -mobile: +1 818 105-1049 -pager: +1 818 213-6846 -roomNumber: 9947 -manager: cn=Rich Ruigrok,ou=Management,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Merrill Loa,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Merrill Loa -sn: Loa -description: This is Merrill Loa's description -facsimileTelephoneNumber: +1 804 288-9028 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 804 102-5447 -title: Supreme Product Testing Consultant -userPassword: Password1 -uid: LoaM -givenName: Merrill -mail: LoaM@c0d54806b2fc4ad4b2d446db11ce599e.bitwarden.com -carLicense: VI3OYW -departmentNumber: 3962 -employeeType: Employee -homePhone: +1 804 392-8518 -initials: M. L. -mobile: +1 804 430-7633 -pager: +1 804 850-4220 -roomNumber: 9695 -manager: cn=YoungJune Grauer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jojo Liew,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jojo Liew -sn: Liew -description: This is Jojo Liew's description -facsimileTelephoneNumber: +1 818 716-9810 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 441-9804 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: LiewJ -givenName: Jojo -mail: LiewJ@0fae6975893e4404981e1b0278fd9893.bitwarden.com -carLicense: LS0F9F -departmentNumber: 7230 -employeeType: Contract -homePhone: +1 818 839-9107 -initials: J. L. -mobile: +1 818 290-5040 -pager: +1 818 111-3507 -roomNumber: 9835 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Noemi Gulko,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noemi Gulko -sn: Gulko -description: This is Noemi Gulko's description -facsimileTelephoneNumber: +1 415 254-5068 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 415 610-1612 -title: Supreme Janitorial Writer -userPassword: Password1 -uid: GulkoN -givenName: Noemi -mail: GulkoN@8e3480814c5a4c65afb875411a3ea9b2.bitwarden.com -carLicense: B6NHBQ -departmentNumber: 8454 -employeeType: Employee -homePhone: +1 415 965-9253 -initials: N. G. -mobile: +1 415 725-8140 -pager: +1 415 631-3285 -roomNumber: 8357 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aurel Mullins,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aurel Mullins -sn: Mullins -description: This is Aurel Mullins's description -facsimileTelephoneNumber: +1 408 733-1611 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 339-8397 -title: Chief Administrative Pinhead -userPassword: Password1 -uid: MullinsA -givenName: Aurel -mail: MullinsA@0971bdcc719c47c9919ba37996d1ed23.bitwarden.com -carLicense: K66P4Q -departmentNumber: 6303 -employeeType: Contract -homePhone: +1 408 223-6753 -initials: A. M. -mobile: +1 408 464-8456 -pager: +1 408 643-2445 -roomNumber: 8679 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Farag Collevecchio,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Raine Hauck,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raine Hauck -sn: Hauck -description: This is Raine Hauck's description -facsimileTelephoneNumber: +1 818 600-6942 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 478-8450 -title: Chief Product Testing Vice President -userPassword: Password1 -uid: HauckR -givenName: Raine -mail: HauckR@9aa6fa345e3b4b228034222cc7155638.bitwarden.com -carLicense: FIKVXJ -departmentNumber: 3387 -employeeType: Employee -homePhone: +1 818 664-4793 -initials: R. H. -mobile: +1 818 353-1141 -pager: +1 818 975-9818 -roomNumber: 8371 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Munaz Mand,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Munaz Mand -sn: Mand -description: This is Munaz Mand's description -facsimileTelephoneNumber: +1 408 113-2138 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 871-9366 -title: Chief Product Development Madonna -userPassword: Password1 -uid: MandM -givenName: Munaz -mail: MandM@ef559f52881646a99efdc2bb68264cd2.bitwarden.com -carLicense: K9PYAX -departmentNumber: 5639 -employeeType: Employee -homePhone: +1 408 353-5344 -initials: M. M. -mobile: +1 408 540-2770 -pager: +1 408 121-4060 -roomNumber: 8107 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zoe Leinen,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zoe Leinen -sn: Leinen -description: This is Zoe Leinen's description -facsimileTelephoneNumber: +1 213 521-7916 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 730-2643 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: LeinenZ -givenName: Zoe -mail: LeinenZ@6c30ff46c5cd461da39b83f9603a1955.bitwarden.com -carLicense: 3EDKPH -departmentNumber: 5429 -employeeType: Employee -homePhone: +1 213 962-9233 -initials: Z. L. -mobile: +1 213 914-8789 -pager: +1 213 346-5808 -roomNumber: 9171 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bihari Simkin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bihari Simkin -sn: Simkin -description: This is Bihari Simkin's description -facsimileTelephoneNumber: +1 804 250-9269 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 920-2348 -title: Master Management Architect -userPassword: Password1 -uid: SimkinB -givenName: Bihari -mail: SimkinB@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com -carLicense: UGO1W1 -departmentNumber: 1562 -employeeType: Employee -homePhone: +1 804 393-6298 -initials: B. S. -mobile: +1 804 852-1074 -pager: +1 804 636-9888 -roomNumber: 8434 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wannell Rivard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wannell Rivard -sn: Rivard -description: This is Wannell Rivard's description -facsimileTelephoneNumber: +1 408 815-6720 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 408 821-8013 -title: Associate Administrative Sales Rep -userPassword: Password1 -uid: RivardW -givenName: Wannell -mail: RivardW@d69b98c45b46402fa345a4972b0e5bd0.bitwarden.com -carLicense: 1TFK0I -departmentNumber: 5839 -employeeType: Contract -homePhone: +1 408 459-5604 -initials: W. R. -mobile: +1 408 447-1367 -pager: +1 408 629-7077 -roomNumber: 9693 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adey Daquano,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adey Daquano -sn: Daquano -description: This is Adey Daquano's description -facsimileTelephoneNumber: +1 804 444-4931 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 804 703-3420 -title: Master Payroll President -userPassword: Password1 -uid: DaquanoA -givenName: Adey -mail: DaquanoA@7b2fb8bfc0d04f79b6758cb3412b518b.bitwarden.com -carLicense: QM7PSE -departmentNumber: 3439 -employeeType: Normal -homePhone: +1 804 647-3642 -initials: A. D. -mobile: +1 804 456-7970 -pager: +1 804 266-3376 -roomNumber: 8636 -manager: cn=Alissa Junkin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emeline Drewes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emeline Drewes -sn: Drewes -description: This is Emeline Drewes's description -facsimileTelephoneNumber: +1 415 261-5730 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 399-6267 -title: Associate Peons Grunt -userPassword: Password1 -uid: DrewesE -givenName: Emeline -mail: DrewesE@dc5cce98288c46dd8403e25e36918671.bitwarden.com -carLicense: 8CC8WU -departmentNumber: 9277 -employeeType: Employee -homePhone: +1 415 996-6862 -initials: E. D. -mobile: +1 415 731-5676 -pager: +1 415 257-9212 -roomNumber: 8598 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tuoi Shtulman -sn: Shtulman -description: This is Tuoi Shtulman's description -facsimileTelephoneNumber: +1 206 494-6193 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 206 779-5516 -title: Associate Product Development Architect -userPassword: Password1 -uid: ShtulmaT -givenName: Tuoi -mail: ShtulmaT@c18f3219cf9044e5a9cd277268cdc426.bitwarden.com -carLicense: P1HVHS -departmentNumber: 3974 -employeeType: Contract -homePhone: +1 206 110-5724 -initials: T. S. -mobile: +1 206 663-1410 -pager: +1 206 755-3332 -roomNumber: 9442 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harrison Hoffstedder -sn: Hoffstedder -description: This is Harrison Hoffstedder's description -facsimileTelephoneNumber: +1 510 319-3961 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 510 937-4862 -title: Supreme Payroll Madonna -userPassword: Password1 -uid: HoffsteH -givenName: Harrison -mail: HoffsteH@be2317e07ddc4fd1bc1dad5673b21da8.bitwarden.com -carLicense: BGN1GW -departmentNumber: 4178 -employeeType: Normal -homePhone: +1 510 977-9418 -initials: H. H. -mobile: +1 510 775-9661 -pager: +1 510 718-8162 -roomNumber: 9966 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rayshell Dow,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rayshell Dow -sn: Dow -description: This is Rayshell Dow's description -facsimileTelephoneNumber: +1 804 938-7165 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 920-1604 -title: Associate Administrative Grunt -userPassword: Password1 -uid: DowR -givenName: Rayshell -mail: DowR@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com -carLicense: QD2OLH -departmentNumber: 5455 -employeeType: Normal -homePhone: +1 804 904-2403 -initials: R. D. -mobile: +1 804 483-2967 -pager: +1 804 414-8570 -roomNumber: 8452 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sohayla Claggett,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sohayla Claggett -sn: Claggett -description: This is Sohayla Claggett's description -facsimileTelephoneNumber: +1 818 590-4661 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 818 678-6796 -title: Junior Management Vice President -userPassword: Password1 -uid: ClaggetS -givenName: Sohayla -mail: ClaggetS@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com -carLicense: XGOYER -departmentNumber: 2609 -employeeType: Employee -homePhone: +1 818 826-4540 -initials: S. C. -mobile: +1 818 866-1179 -pager: +1 818 411-7958 -roomNumber: 8480 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacklyn Bickford -sn: Bickford -description: This is Jacklyn Bickford's description -facsimileTelephoneNumber: +1 213 726-4930 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 427-7103 -title: Chief Payroll Vice President -userPassword: Password1 -uid: BickforJ -givenName: Jacklyn -mail: BickforJ@494658ad0bff4810b3d5b5096c85b666.bitwarden.com -carLicense: 0QMK73 -departmentNumber: 4493 -employeeType: Normal -homePhone: +1 213 911-1967 -initials: J. B. -mobile: +1 213 757-5273 -pager: +1 213 228-7664 -roomNumber: 9133 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daniele Kuykendall -sn: Kuykendall -description: This is Daniele Kuykendall's description -facsimileTelephoneNumber: +1 408 556-5406 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 790-1571 -title: Master Administrative Director -userPassword: Password1 -uid: KuykendD -givenName: Daniele -mail: KuykendD@4c3bb131ea5148028bf43ce4a8c06b23.bitwarden.com -carLicense: GHSQ62 -departmentNumber: 5081 -employeeType: Contract -homePhone: +1 408 264-8108 -initials: D. K. -mobile: +1 408 661-8226 -pager: +1 408 117-4525 -roomNumber: 8062 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Debora Lauzon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debora Lauzon -sn: Lauzon -description: This is Debora Lauzon's description -facsimileTelephoneNumber: +1 818 982-3969 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 203-5036 -title: Master Human Resources Punk -userPassword: Password1 -uid: LauzonD -givenName: Debora -mail: LauzonD@ecf37ebd8f10485fa151b2f40942afe7.bitwarden.com -carLicense: 9GCF8M -departmentNumber: 5370 -employeeType: Normal -homePhone: +1 818 909-8761 -initials: D. L. -mobile: +1 818 468-5642 -pager: +1 818 453-3569 -roomNumber: 9612 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Giang Saidzadeh -sn: Saidzadeh -description: This is Giang Saidzadeh's description -facsimileTelephoneNumber: +1 213 266-8868 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 213 928-5640 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: SaidzadG -givenName: Giang -mail: SaidzadG@8fd45f1616e84409af12cbcbd209c8d9.bitwarden.com -carLicense: J5OEJV -departmentNumber: 3791 -employeeType: Contract -homePhone: +1 213 319-2528 -initials: G. S. -mobile: +1 213 105-8593 -pager: +1 213 375-7429 -roomNumber: 9841 -manager: cn=Erina RTP,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Aggi Culver,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aggi Culver -sn: Culver -description: This is Aggi Culver's description -facsimileTelephoneNumber: +1 510 869-5390 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 679-6541 -title: Supreme Janitorial Technician -userPassword: Password1 -uid: CulverA -givenName: Aggi -mail: CulverA@aad296bdf0c3455e889336146dbd77fd.bitwarden.com -carLicense: V7JWQP -departmentNumber: 1057 -employeeType: Employee -homePhone: +1 510 410-5850 -initials: A. C. -mobile: +1 510 634-8270 -pager: +1 510 317-7735 -roomNumber: 9887 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Delcine Pesold,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Delcine Pesold -sn: Pesold -description: This is Delcine Pesold's description -facsimileTelephoneNumber: +1 213 196-6397 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 213 719-7268 -title: Associate Management Mascot -userPassword: Password1 -uid: PesoldD -givenName: Delcine -mail: PesoldD@752c449dfd0b47e48d05c032fa7b3f44.bitwarden.com -carLicense: O8EYDW -departmentNumber: 5983 -employeeType: Normal -homePhone: +1 213 933-8674 -initials: D. P. -mobile: +1 213 511-1036 -pager: +1 213 411-1091 -roomNumber: 9505 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pauline Bullion,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pauline Bullion -sn: Bullion -description: This is Pauline Bullion's description -facsimileTelephoneNumber: +1 804 249-2010 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 804 720-6111 -title: Supreme Management Madonna -userPassword: Password1 -uid: BullionP -givenName: Pauline -mail: BullionP@29d43cca18a84193868799ddbf3f9a87.bitwarden.com -carLicense: 9O98TC -departmentNumber: 3613 -employeeType: Normal -homePhone: +1 804 551-1194 -initials: P. B. -mobile: +1 804 728-1530 -pager: +1 804 506-4727 -roomNumber: 8714 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tibor Belley,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tibor Belley -sn: Belley -description: This is Tibor Belley's description -facsimileTelephoneNumber: +1 415 721-9099 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 391-5667 -title: Junior Product Development Developer -userPassword: Password1 -uid: BelleyT -givenName: Tibor -mail: BelleyT@01d69d83f76e4ee599aaa94ccfd4bc18.bitwarden.com -carLicense: VG9DLP -departmentNumber: 8854 -employeeType: Contract -homePhone: +1 415 302-6248 -initials: T. B. -mobile: +1 415 209-9514 -pager: +1 415 378-4594 -roomNumber: 8688 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vere Cushing,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vere Cushing -sn: Cushing -description: This is Vere Cushing's description -facsimileTelephoneNumber: +1 408 579-5647 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 508-7399 -title: Supreme Management Janitor -userPassword: Password1 -uid: CushingV -givenName: Vere -mail: CushingV@b7566f62e9e44dcd9dcaead50b2af46e.bitwarden.com -carLicense: R2UCR8 -departmentNumber: 8354 -employeeType: Contract -homePhone: +1 408 905-1463 -initials: V. C. -mobile: +1 408 119-4286 -pager: +1 408 606-4024 -roomNumber: 9249 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dorris Joshi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorris Joshi -sn: Joshi -description: This is Dorris Joshi's description -facsimileTelephoneNumber: +1 510 124-6275 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 510 223-6418 -title: Chief Administrative Punk -userPassword: Password1 -uid: JoshiD -givenName: Dorris -mail: JoshiD@a989bc4f0b1a4c80b486110777685af8.bitwarden.com -carLicense: 15VFGV -departmentNumber: 5013 -employeeType: Employee -homePhone: +1 510 514-8935 -initials: D. J. -mobile: +1 510 703-4359 -pager: +1 510 889-6945 -roomNumber: 9073 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden, dc=com - -dn: cn=Victor Hollenbach,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Victor Hollenbach -sn: Hollenbach -description: This is Victor Hollenbach's description -facsimileTelephoneNumber: +1 415 703-5146 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 188-8780 -title: Master Payroll Madonna -userPassword: Password1 -uid: HollenbV -givenName: Victor -mail: HollenbV@78d24e557fdb498286a91f7c5eae2c30.bitwarden.com -carLicense: S3KWT8 -departmentNumber: 2583 -employeeType: Employee -homePhone: +1 415 299-8690 -initials: V. H. -mobile: +1 415 982-7256 -pager: +1 415 873-6950 -roomNumber: 9024 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joyan Irvin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joyan Irvin -sn: Irvin -description: This is Joyan Irvin's description -facsimileTelephoneNumber: +1 206 255-4366 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 206 355-1899 -title: Master Administrative Assistant -userPassword: Password1 -uid: IrvinJ -givenName: Joyan -mail: IrvinJ@17ea3745d5a8427d897fcb5d0d2d0c15.bitwarden.com -carLicense: 87CM35 -departmentNumber: 1068 -employeeType: Employee -homePhone: +1 206 676-4795 -initials: J. I. -mobile: +1 206 318-3857 -pager: +1 206 921-1397 -roomNumber: 8580 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Zoenka Ivan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zoenka Ivan -sn: Ivan -description: This is Zoenka Ivan's description -facsimileTelephoneNumber: +1 510 667-3048 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 958-6383 -title: Junior Peons Janitor -userPassword: Password1 -uid: IvanZ -givenName: Zoenka -mail: IvanZ@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com -carLicense: SAXOQH -departmentNumber: 2070 -employeeType: Employee -homePhone: +1 510 116-4251 -initials: Z. I. -mobile: +1 510 889-4084 -pager: +1 510 360-7716 -roomNumber: 8793 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Wylo Rummans,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wylo Rummans -sn: Rummans -description: This is Wylo Rummans's description -facsimileTelephoneNumber: +1 408 165-2384 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 670-6643 -title: Associate Product Development Vice President -userPassword: Password1 -uid: RummansW -givenName: Wylo -mail: RummansW@e51ab927442b42fd83641345150b54a3.bitwarden.com -carLicense: AR5I45 -departmentNumber: 3742 -employeeType: Employee -homePhone: +1 408 705-8585 -initials: W. R. -mobile: +1 408 723-5115 -pager: +1 408 574-4661 -roomNumber: 9602 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tyler McKibbin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tyler McKibbin -sn: McKibbin -description: This is Tyler McKibbin's description -facsimileTelephoneNumber: +1 510 189-5469 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 510 208-1310 -title: Master Product Development Figurehead -userPassword: Password1 -uid: McKibbiT -givenName: Tyler -mail: McKibbiT@2ff2f928aa234ef4a8cf382c36a615f8.bitwarden.com -carLicense: B5N3XD -departmentNumber: 3919 -employeeType: Employee -homePhone: +1 510 961-4974 -initials: T. M. -mobile: +1 510 909-7835 -pager: +1 510 367-9412 -roomNumber: 8133 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dorolice Puelma,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorolice Puelma -sn: Puelma -description: This is Dorolice Puelma's description -facsimileTelephoneNumber: +1 510 455-6695 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 931-5955 -title: Master Payroll Sales Rep -userPassword: Password1 -uid: PuelmaD -givenName: Dorolice -mail: PuelmaD@a5a8edfdd5c4429e9cf280f8b1f9e995.bitwarden.com -carLicense: LOD24C -departmentNumber: 8515 -employeeType: Employee -homePhone: +1 510 521-9840 -initials: D. P. -mobile: +1 510 902-9592 -pager: +1 510 535-1210 -roomNumber: 8105 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anwar Mauck,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anwar Mauck -sn: Mauck -description: This is Anwar Mauck's description -facsimileTelephoneNumber: +1 206 718-5726 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 206 942-8563 -title: Chief Management Evangelist -userPassword: Password1 -uid: MauckA -givenName: Anwar -mail: MauckA@3abcba99c85c41ab8cf93d708c5ee721.bitwarden.com -carLicense: 1UWBKI -departmentNumber: 8647 -employeeType: Normal -homePhone: +1 206 656-8731 -initials: A. M. -mobile: +1 206 153-7212 -pager: +1 206 605-2919 -roomNumber: 8347 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gillian Weihs,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gillian Weihs -sn: Weihs -description: This is Gillian Weihs's description -facsimileTelephoneNumber: +1 213 277-5522 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 739-2434 -title: Master Payroll Dictator -userPassword: Password1 -uid: WeihsG -givenName: Gillian -mail: WeihsG@48309888d14d433584a39c4104dff764.bitwarden.com -carLicense: BV9BVP -departmentNumber: 2072 -employeeType: Normal -homePhone: +1 213 548-8392 -initials: G. W. -mobile: +1 213 844-6137 -pager: +1 213 645-8847 -roomNumber: 9924 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Freddy Boase,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Freddy Boase -sn: Boase -description: This is Freddy Boase's description -facsimileTelephoneNumber: +1 510 657-2790 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 993-3643 -title: Chief Janitorial Developer -userPassword: Password1 -uid: BoaseF -givenName: Freddy -mail: BoaseF@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com -carLicense: VQRCJ6 -departmentNumber: 4875 -employeeType: Normal -homePhone: +1 510 788-5879 -initials: F. B. -mobile: +1 510 601-9004 -pager: +1 510 759-8369 -roomNumber: 9821 -manager: cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Catrina Pezzoli,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Manny Degraauw,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manny Degraauw -sn: Degraauw -description: This is Manny Degraauw's description -facsimileTelephoneNumber: +1 510 702-5433 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 962-5306 -title: Junior Payroll Warrior -userPassword: Password1 -uid: DegraauM -givenName: Manny -mail: DegraauM@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com -carLicense: KH0QT5 -departmentNumber: 1600 -employeeType: Contract -homePhone: +1 510 838-8533 -initials: M. D. -mobile: +1 510 435-5966 -pager: +1 510 498-4666 -roomNumber: 8057 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Morley Chadha,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zahir Meagher,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zahir Meagher -sn: Meagher -description: This is Zahir Meagher's description -facsimileTelephoneNumber: +1 804 835-6625 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 309-5878 -title: Associate Administrative Artist -userPassword: Password1 -uid: MeagherZ -givenName: Zahir -mail: MeagherZ@e83c7fe22d2948c19d5fbcdc0bcbd551.bitwarden.com -carLicense: B22RO5 -departmentNumber: 2125 -employeeType: Employee -homePhone: +1 804 942-8552 -initials: Z. M. -mobile: +1 804 888-5845 -pager: +1 804 644-6092 -roomNumber: 8001 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Chiho Kowalski,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chiho Kowalski -sn: Kowalski -description: This is Chiho Kowalski's description -facsimileTelephoneNumber: +1 206 593-5449 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 107-4156 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: KowalskC -givenName: Chiho -mail: KowalskC@037b2dcc29f840fa8751d096972382fe.bitwarden.com -carLicense: 67H3MG -departmentNumber: 3595 -employeeType: Employee -homePhone: +1 206 983-9753 -initials: C. K. -mobile: +1 206 603-7414 -pager: +1 206 380-7049 -roomNumber: 9148 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jan Gittins,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jan Gittins -sn: Gittins -description: This is Jan Gittins's description -facsimileTelephoneNumber: +1 510 997-2447 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 393-1933 -title: Junior Human Resources Evangelist -userPassword: Password1 -uid: GittinsJ -givenName: Jan -mail: GittinsJ@ba3add3fa0e5474bb8115e77e9d392b7.bitwarden.com -carLicense: PJTBY2 -departmentNumber: 4463 -employeeType: Normal -homePhone: +1 510 263-7029 -initials: J. G. -mobile: +1 510 815-2765 -pager: +1 510 477-1480 -roomNumber: 8806 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nalani Madsen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nalani Madsen -sn: Madsen -description: This is Nalani Madsen's description -facsimileTelephoneNumber: +1 206 189-8032 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 206 228-4432 -title: Chief Management Manager -userPassword: Password1 -uid: MadsenN -givenName: Nalani -mail: MadsenN@95f57db35aaf437db0b68cb389e1a35e.bitwarden.com -carLicense: 4NNK7V -departmentNumber: 8375 -employeeType: Normal -homePhone: +1 206 859-7545 -initials: N. M. -mobile: +1 206 484-2241 -pager: +1 206 211-9672 -roomNumber: 9021 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Casie Banerd,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Casie Banerd -sn: Banerd -description: This is Casie Banerd's description -facsimileTelephoneNumber: +1 804 326-4701 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 272-5267 -title: Associate Human Resources Consultant -userPassword: Password1 -uid: BanerdC -givenName: Casie -mail: BanerdC@2f216938e95c4fb6a803f01467935076.bitwarden.com -carLicense: 0AB0GV -departmentNumber: 1176 -employeeType: Normal -homePhone: +1 804 899-3303 -initials: C. B. -mobile: +1 804 295-2041 -pager: +1 804 389-9156 -roomNumber: 8473 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Beryle Camillucci,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beryle Camillucci -sn: Camillucci -description: This is Beryle Camillucci's description -facsimileTelephoneNumber: +1 213 621-5647 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 557-8464 -title: Master Management Writer -userPassword: Password1 -uid: CamilluB -givenName: Beryle -mail: CamilluB@2c11f6a276034996a4ddc6513434ce9b.bitwarden.com -carLicense: BS6GWE -departmentNumber: 3976 -employeeType: Contract -homePhone: +1 213 924-7982 -initials: B. C. -mobile: +1 213 619-1306 -pager: +1 213 970-6825 -roomNumber: 8156 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lubomyr Duran,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lubomyr Duran -sn: Duran -description: This is Lubomyr Duran's description -facsimileTelephoneNumber: +1 206 342-5870 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 206 781-7455 -title: Supreme Product Development Czar -userPassword: Password1 -uid: DuranL -givenName: Lubomyr -mail: DuranL@411afe1416f249ecaeca51c1080b0066.bitwarden.com -carLicense: SEHHYQ -departmentNumber: 1454 -employeeType: Contract -homePhone: +1 206 535-7593 -initials: L. D. -mobile: +1 206 618-2785 -pager: +1 206 323-2272 -roomNumber: 9639 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Gertruda Boyajian,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertruda Boyajian -sn: Boyajian -description: This is Gertruda Boyajian's description -facsimileTelephoneNumber: +1 213 730-8545 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 172-2584 -title: Chief Peons Consultant -userPassword: Password1 -uid: BoyajiaG -givenName: Gertruda -mail: BoyajiaG@29c4d99a2e804a9e9c7906925415c847.bitwarden.com -carLicense: 4FGGN5 -departmentNumber: 2437 -employeeType: Normal -homePhone: +1 213 709-9606 -initials: G. B. -mobile: +1 213 482-9391 -pager: +1 213 560-8157 -roomNumber: 9254 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Meggy Jansen,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dyanna Roehl,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyanna Roehl -sn: Roehl -description: This is Dyanna Roehl's description -facsimileTelephoneNumber: +1 408 780-2546 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 408 364-7605 -title: Junior Payroll Czar -userPassword: Password1 -uid: RoehlD -givenName: Dyanna -mail: RoehlD@0aab2eb5b2a945ccbb114c330fb9e2b8.bitwarden.com -carLicense: TLRY1L -departmentNumber: 5176 -employeeType: Contract -homePhone: +1 408 305-7042 -initials: D. R. -mobile: +1 408 443-1144 -pager: +1 408 870-5853 -roomNumber: 9062 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kikelia Kember,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kikelia Kember -sn: Kember -description: This is Kikelia Kember's description -facsimileTelephoneNumber: +1 408 886-5346 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 847-1705 -title: Chief Payroll Assistant -userPassword: Password1 -uid: KemberK -givenName: Kikelia -mail: KemberK@7a95e2b863354946b5a2f7998b9af35e.bitwarden.com -carLicense: 4QNNRT -departmentNumber: 5231 -employeeType: Normal -homePhone: +1 408 951-3606 -initials: K. K. -mobile: +1 408 220-9935 -pager: +1 408 410-5774 -roomNumber: 9229 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Yalcin Tanferna,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yalcin Tanferna -sn: Tanferna -description: This is Yalcin Tanferna's description -facsimileTelephoneNumber: +1 804 508-3181 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 804 313-7419 -title: Chief Management Director -userPassword: Password1 -uid: TanfernY -givenName: Yalcin -mail: TanfernY@7e48be8bff9a4d928095a1943ae64cc5.bitwarden.com -carLicense: LSPGFR -departmentNumber: 1958 -employeeType: Normal -homePhone: +1 804 698-4881 -initials: Y. T. -mobile: +1 804 890-9358 -pager: +1 804 770-4786 -roomNumber: 8654 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Justina Copello,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Justina Copello -sn: Copello -description: This is Justina Copello's description -facsimileTelephoneNumber: +1 415 299-6981 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 884-1445 -title: Junior Janitorial Visionary -userPassword: Password1 -uid: CopelloJ -givenName: Justina -mail: CopelloJ@7e23b8de808e4c8687b7d328cf2c1f4d.bitwarden.com -carLicense: LS30C3 -departmentNumber: 9306 -employeeType: Normal -homePhone: +1 415 541-6313 -initials: J. C. -mobile: +1 415 264-9878 -pager: +1 415 937-9896 -roomNumber: 8513 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bam Luin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bam Luin -sn: Luin -description: This is Bam Luin's description -facsimileTelephoneNumber: +1 206 597-6162 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 206 591-4907 -title: Master Administrative Pinhead -userPassword: Password1 -uid: LuinB -givenName: Bam -mail: LuinB@3714b871eeed4ef2ad7f86d04b774a06.bitwarden.com -carLicense: H2NDSH -departmentNumber: 7667 -employeeType: Normal -homePhone: +1 206 908-1914 -initials: B. L. -mobile: +1 206 997-8040 -pager: +1 206 417-9249 -roomNumber: 8685 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marguerita Wisniewski -sn: Wisniewski -description: This is Marguerita Wisniewski's description -facsimileTelephoneNumber: +1 206 563-3542 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 206 465-2394 -title: Master Payroll Mascot -userPassword: Password1 -uid: WisniewM -givenName: Marguerita -mail: WisniewM@aeb0dceac3c04d0aac41074478a4ecb3.bitwarden.com -carLicense: B2E2BH -departmentNumber: 4592 -employeeType: Employee -homePhone: +1 206 431-6085 -initials: M. W. -mobile: +1 206 346-2609 -pager: +1 206 341-8597 -roomNumber: 9920 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Frieda Dulaney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frieda Dulaney -sn: Dulaney -description: This is Frieda Dulaney's description -facsimileTelephoneNumber: +1 206 661-3816 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 206 206-7935 -title: Junior Product Development Artist -userPassword: Password1 -uid: DulaneyF -givenName: Frieda -mail: DulaneyF@e87afd88a7464f34a9f1cefeecf49e3d.bitwarden.com -carLicense: QB3NJ2 -departmentNumber: 5498 -employeeType: Contract -homePhone: +1 206 235-6766 -initials: F. D. -mobile: +1 206 893-8369 -pager: +1 206 598-6669 -roomNumber: 8028 -manager: cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Les Allahdin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Les Allahdin -sn: Allahdin -description: This is Les Allahdin's description -facsimileTelephoneNumber: +1 415 503-8345 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 415 323-8678 -title: Associate Administrative Technician -userPassword: Password1 -uid: AllahdiL -givenName: Les -mail: AllahdiL@d3f6a0448cf246c98f76952766172afe.bitwarden.com -carLicense: V36DUD -departmentNumber: 9590 -employeeType: Contract -homePhone: +1 415 792-6616 -initials: L. A. -mobile: +1 415 807-7916 -pager: +1 415 391-5754 -roomNumber: 9453 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Melek Fennessey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melek Fennessey -sn: Fennessey -description: This is Melek Fennessey's description -facsimileTelephoneNumber: +1 213 765-6235 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 213 899-6354 -title: Associate Management Czar -userPassword: Password1 -uid: FennessM -givenName: Melek -mail: FennessM@0a55e98e06b6402b83131ff9ddd68552.bitwarden.com -carLicense: 9N2DRD -departmentNumber: 2449 -employeeType: Employee -homePhone: +1 213 240-6658 -initials: M. F. -mobile: +1 213 827-5654 -pager: +1 213 517-8704 -roomNumber: 9900 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Quon Zukosky,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quon Zukosky -sn: Zukosky -description: This is Quon Zukosky's description -facsimileTelephoneNumber: +1 510 701-8668 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 722-7839 -title: Chief Management Figurehead -userPassword: Password1 -uid: ZukoskyQ -givenName: Quon -mail: ZukoskyQ@8eaa02b53fec48d0842607d198bfec39.bitwarden.com -carLicense: TISD7Y -departmentNumber: 7220 -employeeType: Contract -homePhone: +1 510 668-6998 -initials: Q. Z. -mobile: +1 510 958-6650 -pager: +1 510 823-8603 -roomNumber: 9193 -manager: cn=Othella McGrath,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Andrea ONeall,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andrea ONeall -sn: ONeall -description: This is Andrea ONeall's description -facsimileTelephoneNumber: +1 206 637-4716 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 871-4923 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: ONeallA -givenName: Andrea -mail: ONeallA@995d47539bff49b8a85a5ecb474bd257.bitwarden.com -carLicense: QY7CHC -departmentNumber: 8711 -employeeType: Normal -homePhone: +1 206 510-6140 -initials: A. O. -mobile: +1 206 346-9888 -pager: +1 206 697-9642 -roomNumber: 8649 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Setsuko Keck,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Setsuko Keck -sn: Keck -description: This is Setsuko Keck's description -facsimileTelephoneNumber: +1 804 942-3617 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 486-9362 -title: Master Janitorial Admin -userPassword: Password1 -uid: KeckS -givenName: Setsuko -mail: KeckS@4a913335a7f143d2b385347b29ca43fd.bitwarden.com -carLicense: 8SK1PB -departmentNumber: 5519 -employeeType: Contract -homePhone: +1 804 577-3322 -initials: S. K. -mobile: +1 804 390-5015 -pager: +1 804 619-8671 -roomNumber: 8416 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ruchel Borosh,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruchel Borosh -sn: Borosh -description: This is Ruchel Borosh's description -facsimileTelephoneNumber: +1 408 845-5135 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 828-5510 -title: Junior Management Warrior -userPassword: Password1 -uid: BoroshR -givenName: Ruchel -mail: BoroshR@a4ebc705137a4ddb9ebce3e4b095eec3.bitwarden.com -carLicense: 33UA3M -departmentNumber: 1852 -employeeType: Employee -homePhone: +1 408 710-8238 -initials: R. B. -mobile: +1 408 918-1810 -pager: +1 408 812-5850 -roomNumber: 8389 -manager: cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Chloette Zadow,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chloette Zadow -sn: Zadow -description: This is Chloette Zadow's description -facsimileTelephoneNumber: +1 206 832-8064 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 206 341-6717 -title: Junior Peons Visionary -userPassword: Password1 -uid: ZadowC -givenName: Chloette -mail: ZadowC@006106eb4fa5430982fa52048d307012.bitwarden.com -carLicense: NWG7E2 -departmentNumber: 9274 -employeeType: Normal -homePhone: +1 206 634-5368 -initials: C. Z. -mobile: +1 206 229-4362 -pager: +1 206 266-1289 -roomNumber: 9532 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sarena Fothergill,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarena Fothergill -sn: Fothergill -description: This is Sarena Fothergill's description -facsimileTelephoneNumber: +1 818 221-5109 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 455-7769 -title: Associate Management Developer -userPassword: Password1 -uid: FothergS -givenName: Sarena -mail: FothergS@78e66db4daf244269be3e0f7fc49db85.bitwarden.com -carLicense: 8K23J7 -departmentNumber: 5499 -employeeType: Employee -homePhone: +1 818 715-6207 -initials: S. F. -mobile: +1 818 106-5591 -pager: +1 818 398-4459 -roomNumber: 8254 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jaquith Canfield,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaquith Canfield -sn: Canfield -description: This is Jaquith Canfield's description -facsimileTelephoneNumber: +1 415 198-9347 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 933-4243 -title: Junior Product Development Grunt -userPassword: Password1 -uid: CanfielJ -givenName: Jaquith -mail: CanfielJ@ddb5a80ff9f74390b91dd39ff94d365e.bitwarden.com -carLicense: 174JXX -departmentNumber: 2936 -employeeType: Normal -homePhone: +1 415 942-8806 -initials: J. C. -mobile: +1 415 283-9669 -pager: +1 415 386-9475 -roomNumber: 8327 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marit Montelli,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Darell Carrillo,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darell Carrillo -sn: Carrillo -description: This is Darell Carrillo's description -facsimileTelephoneNumber: +1 206 199-6110 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 538-2099 -title: Junior Human Resources Janitor -userPassword: Password1 -uid: CarrillD -givenName: Darell -mail: CarrillD@3dc91dfe6410493ba2012f554bea81e6.bitwarden.com -carLicense: YEGJHQ -departmentNumber: 8820 -employeeType: Contract -homePhone: +1 206 557-9651 -initials: D. C. -mobile: +1 206 257-4004 -pager: +1 206 604-6602 -roomNumber: 9754 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Malgosia Beilin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Malgosia Beilin -sn: Beilin -description: This is Malgosia Beilin's description -facsimileTelephoneNumber: +1 804 243-3624 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 977-5957 -title: Associate Product Development Janitor -userPassword: Password1 -uid: BeilinM -givenName: Malgosia -mail: BeilinM@73769e96fc584ccd856adcc4d5fe88ef.bitwarden.com -carLicense: O70YVG -departmentNumber: 7201 -employeeType: Contract -homePhone: +1 804 690-2329 -initials: M. B. -mobile: +1 804 240-2786 -pager: +1 804 746-7915 -roomNumber: 8561 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bekki Kensinger,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bekki Kensinger -sn: Kensinger -description: This is Bekki Kensinger's description -facsimileTelephoneNumber: +1 408 867-9331 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 408 872-2969 -title: Associate Payroll Warrior -userPassword: Password1 -uid: KensingB -givenName: Bekki -mail: KensingB@30ca0b4b2c6d4aff9d3ac9b5f46982e5.bitwarden.com -carLicense: 8152P6 -departmentNumber: 9767 -employeeType: Contract -homePhone: +1 408 571-6486 -initials: B. K. -mobile: +1 408 824-3401 -pager: +1 408 582-9169 -roomNumber: 8266 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Benny Stahl,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benny Stahl -sn: Stahl -description: This is Benny Stahl's description -facsimileTelephoneNumber: +1 510 676-5270 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 510 574-6290 -title: Junior Administrative Visionary -userPassword: Password1 -uid: StahlB -givenName: Benny -mail: StahlB@6e645f68154e4e0a9f217d10cb782190.bitwarden.com -carLicense: R2ASOM -departmentNumber: 9461 -employeeType: Normal -homePhone: +1 510 247-2654 -initials: B. S. -mobile: +1 510 612-2794 -pager: +1 510 369-7405 -roomNumber: 8625 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sonja Blake,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonja Blake -sn: Blake -description: This is Sonja Blake's description -facsimileTelephoneNumber: +1 213 247-2143 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 409-9991 -title: Junior Management Figurehead -userPassword: Password1 -uid: BlakeS -givenName: Sonja -mail: BlakeS@9b3c4690331a4a13a5aeb576bf120640.bitwarden.com -carLicense: 5MDDQU -departmentNumber: 2931 -employeeType: Normal -homePhone: +1 213 854-2742 -initials: S. B. -mobile: +1 213 837-3220 -pager: +1 213 778-7211 -roomNumber: 9020 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Corny Cowick,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corny Cowick -sn: Cowick -description: This is Corny Cowick's description -facsimileTelephoneNumber: +1 415 904-7268 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 625-2867 -title: Chief Administrative Assistant -userPassword: Password1 -uid: CowickC -givenName: Corny -mail: CowickC@50a85f24c25d40e8a8c71e34d2304607.bitwarden.com -carLicense: FYEETE -departmentNumber: 5200 -employeeType: Employee -homePhone: +1 415 724-8214 -initials: C. C. -mobile: +1 415 149-2897 -pager: +1 415 726-1948 -roomNumber: 8393 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sibelle McAlister,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibelle McAlister -sn: McAlister -description: This is Sibelle McAlister's description -facsimileTelephoneNumber: +1 408 227-4035 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 312-7242 -title: Junior Peons Fellow -userPassword: Password1 -uid: McAlistS -givenName: Sibelle -mail: McAlistS@b9847a93402b4d7e9eab2f6967e34b51.bitwarden.com -carLicense: WSDATT -departmentNumber: 2978 -employeeType: Normal -homePhone: +1 408 428-1691 -initials: S. M. -mobile: +1 408 542-7706 -pager: +1 408 365-6759 -roomNumber: 8559 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miguelita Gerstmar -sn: Gerstmar -description: This is Miguelita Gerstmar's description -facsimileTelephoneNumber: +1 804 117-8582 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 262-1631 -title: Supreme Human Resources Dictator -userPassword: Password1 -uid: GerstmaM -givenName: Miguelita -mail: GerstmaM@0fe89eeff7dc4fc1a0f74df0bfbf040f.bitwarden.com -carLicense: 61BO1Y -departmentNumber: 3819 -employeeType: Normal -homePhone: +1 804 425-3584 -initials: M. G. -mobile: +1 804 811-4348 -pager: +1 804 972-5909 -roomNumber: 9612 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kunitaka Diogo -sn: Diogo -description: This is Kunitaka Diogo's description -facsimileTelephoneNumber: +1 213 254-7875 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 213 640-5763 -title: Supreme Administrative Fellow -userPassword: Password1 -uid: DiogoK -givenName: Kunitaka -mail: DiogoK@c81d6e524d4f4e8ab4225b79b67ec3c9.bitwarden.com -carLicense: 5KN0XR -departmentNumber: 8124 -employeeType: Employee -homePhone: +1 213 289-6485 -initials: K. D. -mobile: +1 213 633-6067 -pager: +1 213 575-5610 -roomNumber: 9091 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eachelle Bushell -sn: Bushell -description: This is Eachelle Bushell's description -facsimileTelephoneNumber: +1 408 113-6576 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 408 939-4768 -title: Master Product Testing Czar -userPassword: Password1 -uid: BushellE -givenName: Eachelle -mail: BushellE@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com -carLicense: SP3HT9 -departmentNumber: 4094 -employeeType: Employee -homePhone: +1 408 700-3022 -initials: E. B. -mobile: +1 408 621-7709 -pager: +1 408 709-8634 -roomNumber: 9580 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bryana Sathe,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vicuong Zadeh -sn: Zadeh -description: This is Vicuong Zadeh's description -facsimileTelephoneNumber: +1 415 667-6592 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 233-6843 -title: Chief Payroll Visionary -userPassword: Password1 -uid: ZadehV -givenName: Vicuong -mail: ZadehV@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com -carLicense: KWAJKS -departmentNumber: 2675 -employeeType: Normal -homePhone: +1 415 146-7223 -initials: V. Z. -mobile: +1 415 831-6615 -pager: +1 415 620-6094 -roomNumber: 8047 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Souza Deininger,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Souza Deininger -sn: Deininger -description: This is Souza Deininger's description -facsimileTelephoneNumber: +1 804 203-4605 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 572-3571 -title: Supreme Product Development Architect -userPassword: Password1 -uid: DeiningS -givenName: Souza -mail: DeiningS@b140b76ec6b34c518f0c06eda43db13e.bitwarden.com -carLicense: W96WCC -departmentNumber: 5352 -employeeType: Contract -homePhone: +1 804 352-9661 -initials: S. D. -mobile: +1 804 833-3044 -pager: +1 804 923-9539 -roomNumber: 8728 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Beata Surray,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beata Surray -sn: Surray -description: This is Beata Surray's description -facsimileTelephoneNumber: +1 206 117-4209 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 206 926-2916 -title: Chief Payroll Manager -userPassword: Password1 -uid: SurrayB -givenName: Beata -mail: SurrayB@344ac38ed8f246e1aa4a5cafeb824a1c.bitwarden.com -carLicense: SABIH6 -departmentNumber: 3326 -employeeType: Normal -homePhone: +1 206 728-4483 -initials: B. S. -mobile: +1 206 319-6359 -pager: +1 206 732-5668 -roomNumber: 9609 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Betsy Bergman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Betsy Bergman -sn: Bergman -description: This is Betsy Bergman's description -facsimileTelephoneNumber: +1 818 140-8280 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 962-9617 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: BergmanB -givenName: Betsy -mail: BergmanB@312a6c96857e41e898ce218801eab796.bitwarden.com -carLicense: WF3BK9 -departmentNumber: 5975 -employeeType: Employee -homePhone: +1 818 170-5726 -initials: B. B. -mobile: +1 818 977-8679 -pager: +1 818 289-1984 -roomNumber: 9343 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cheryl Deibert,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cheryl Deibert -sn: Deibert -description: This is Cheryl Deibert's description -facsimileTelephoneNumber: +1 804 415-6104 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 804 595-5090 -title: Chief Peons Writer -userPassword: Password1 -uid: DeibertC -givenName: Cheryl -mail: DeibertC@6dfd976d46114be489d1c70dd10e11f7.bitwarden.com -carLicense: RXNR13 -departmentNumber: 1249 -employeeType: Employee -homePhone: +1 804 123-9200 -initials: C. D. -mobile: +1 804 956-4188 -pager: +1 804 529-9615 -roomNumber: 8886 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Darrel Bottoms,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darrel Bottoms -sn: Bottoms -description: This is Darrel Bottoms's description -facsimileTelephoneNumber: +1 408 938-3612 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 429-5176 -title: Supreme Payroll Sales Rep -userPassword: Password1 -uid: BottomsD -givenName: Darrel -mail: BottomsD@dcbfb0982f2b4bb7bdf60b8f61c36502.bitwarden.com -carLicense: YADWS2 -departmentNumber: 4710 -employeeType: Contract -homePhone: +1 408 326-7128 -initials: D. B. -mobile: +1 408 942-1065 -pager: +1 408 814-7762 -roomNumber: 9756 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cathal Ahdieh -sn: Ahdieh -description: This is Cathal Ahdieh's description -facsimileTelephoneNumber: +1 408 469-4842 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 259-5150 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: AhdiehC -givenName: Cathal -mail: AhdiehC@b0c6b060c84743b6a9eb5943601ed7e1.bitwarden.com -carLicense: LS0DF0 -departmentNumber: 6499 -employeeType: Employee -homePhone: +1 408 965-1298 -initials: C. A. -mobile: +1 408 534-2617 -pager: +1 408 544-1892 -roomNumber: 8739 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cissiee Gostanian,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cissiee Gostanian -sn: Gostanian -description: This is Cissiee Gostanian's description -facsimileTelephoneNumber: +1 206 528-1414 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 792-6983 -title: Supreme Peons Pinhead -userPassword: Password1 -uid: GostaniC -givenName: Cissiee -mail: GostaniC@6a7058ac13d642658b7f7adc5e875217.bitwarden.com -carLicense: N1B1U0 -departmentNumber: 4320 -employeeType: Normal -homePhone: +1 206 956-9223 -initials: C. G. -mobile: +1 206 376-3391 -pager: +1 206 888-3592 -roomNumber: 9344 -manager: cn=Morgan Christian,ou=Management,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Portia Beecker,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Portia Beecker -sn: Beecker -description: This is Portia Beecker's description -facsimileTelephoneNumber: +1 818 685-4771 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 818 863-2004 -title: Associate Payroll Vice President -userPassword: Password1 -uid: BeeckerP -givenName: Portia -mail: BeeckerP@74754781579f4c4bbee5126ecca3cdbe.bitwarden.com -carLicense: AQKGNI -departmentNumber: 3604 -employeeType: Employee -homePhone: +1 818 621-1451 -initials: P. B. -mobile: +1 818 263-7007 -pager: +1 818 194-6312 -roomNumber: 9789 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Harrietta Saberi -sn: Saberi -description: This is Harrietta Saberi's description -facsimileTelephoneNumber: +1 804 857-2461 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 325-6657 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: SaberiH -givenName: Harrietta -mail: SaberiH@08dc96d6e1284f068d1587b61ddbfede.bitwarden.com -carLicense: XJT4ER -departmentNumber: 5127 -employeeType: Contract -homePhone: +1 804 285-6166 -initials: H. S. -mobile: +1 804 293-6582 -pager: +1 804 145-4025 -roomNumber: 9576 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alli AbouEzze,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alli AbouEzze -sn: AbouEzze -description: This is Alli AbouEzze's description -facsimileTelephoneNumber: +1 206 588-3544 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 497-3483 -title: Associate Payroll Madonna -userPassword: Password1 -uid: AbouEzzA -givenName: Alli -mail: AbouEzzA@3cd269b5d58f4f4392c1d0f7bebb70ef.bitwarden.com -carLicense: 9CG87X -departmentNumber: 1815 -employeeType: Contract -homePhone: +1 206 323-2525 -initials: A. A. -mobile: +1 206 835-3113 -pager: +1 206 271-3531 -roomNumber: 8920 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kirk Cuddihey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kirk Cuddihey -sn: Cuddihey -description: This is Kirk Cuddihey's description -facsimileTelephoneNumber: +1 408 642-2803 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 408 422-4149 -title: Master Peons Writer -userPassword: Password1 -uid: CuddiheK -givenName: Kirk -mail: CuddiheK@aa98e19fc6664718bf16b34c3c3283c8.bitwarden.com -carLicense: SC9V19 -departmentNumber: 2112 -employeeType: Contract -homePhone: +1 408 330-9618 -initials: K. C. -mobile: +1 408 607-8938 -pager: +1 408 223-7274 -roomNumber: 8179 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=ChoonLin Marneris,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChoonLin Marneris -sn: Marneris -description: This is ChoonLin Marneris's description -facsimileTelephoneNumber: +1 804 192-3414 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 804 162-7581 -title: Chief Peons Assistant -userPassword: Password1 -uid: MarneriC -givenName: ChoonLin -mail: MarneriC@d0765271186d48a4a72bafc8ed84bb23.bitwarden.com -carLicense: 8U2YM4 -departmentNumber: 3790 -employeeType: Employee -homePhone: +1 804 169-8452 -initials: C. M. -mobile: +1 804 883-9667 -pager: +1 804 980-9302 -roomNumber: 9076 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dulcine Friedl -sn: Friedl -description: This is Dulcine Friedl's description -facsimileTelephoneNumber: +1 510 769-7520 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 510 311-2997 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: FriedlD -givenName: Dulcine -mail: FriedlD@b39319cd8660409ab6d3b20577474e4a.bitwarden.com -carLicense: YAEY4T -departmentNumber: 8464 -employeeType: Contract -homePhone: +1 510 362-8773 -initials: D. F. -mobile: +1 510 696-2529 -pager: +1 510 914-3697 -roomNumber: 8207 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Davida Milakovic,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davida Milakovic -sn: Milakovic -description: This is Davida Milakovic's description -facsimileTelephoneNumber: +1 213 750-9583 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 213 147-5058 -title: Chief Payroll Stooge -userPassword: Password1 -uid: MilakovD -givenName: Davida -mail: MilakovD@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com -carLicense: NICI9M -departmentNumber: 7804 -employeeType: Normal -homePhone: +1 213 289-3040 -initials: D. M. -mobile: +1 213 890-7986 -pager: +1 213 291-7309 -roomNumber: 9533 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Janela Bennison,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janela Bennison -sn: Bennison -description: This is Janela Bennison's description -facsimileTelephoneNumber: +1 510 913-1039 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 510 856-1262 -title: Junior Human Resources Mascot -userPassword: Password1 -uid: BennisoJ -givenName: Janela -mail: BennisoJ@e1d5f9e67dcb4da6918e282801f19d33.bitwarden.com -carLicense: RGR2HU -departmentNumber: 9132 -employeeType: Employee -homePhone: +1 510 174-5600 -initials: J. B. -mobile: +1 510 581-8848 -pager: +1 510 450-4728 -roomNumber: 9312 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hermann VieillardBaron -sn: VieillardBaron -description: This is Hermann VieillardBaron's description -facsimileTelephoneNumber: +1 804 207-1194 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 983-8863 -title: Associate Human Resources Sales Rep -userPassword: Password1 -uid: VieillaH -givenName: Hermann -mail: VieillaH@aa27b3d0b2304f6aa579ad064be338d9.bitwarden.com -carLicense: MGIUMI -departmentNumber: 4807 -employeeType: Normal -homePhone: +1 804 296-6895 -initials: H. V. -mobile: +1 804 758-6072 -pager: +1 804 620-3192 -roomNumber: 9996 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Zorine Records,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zorine Records -sn: Records -description: This is Zorine Records's description -facsimileTelephoneNumber: +1 818 389-5985 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 476-8596 -title: Junior Peons Czar -userPassword: Password1 -uid: RecordsZ -givenName: Zorine -mail: RecordsZ@4b233d8ae0e140eb95be281f6d1b2b93.bitwarden.com -carLicense: 5MTKO9 -departmentNumber: 9952 -employeeType: Employee -homePhone: +1 818 592-6947 -initials: Z. R. -mobile: +1 818 959-4208 -pager: +1 818 233-6443 -roomNumber: 8865 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurene Logarajah -sn: Logarajah -description: This is Maurene Logarajah's description -facsimileTelephoneNumber: +1 408 285-1529 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 473-4331 -title: Junior Janitorial Grunt -userPassword: Password1 -uid: LogarajM -givenName: Maurene -mail: LogarajM@bf118e8244174e9f89af2ea2f2fc47ac.bitwarden.com -carLicense: WIV90D -departmentNumber: 9025 -employeeType: Normal -homePhone: +1 408 977-4814 -initials: M. L. -mobile: +1 408 726-5662 -pager: +1 408 486-3719 -roomNumber: 8977 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ashleigh Ligon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashleigh Ligon -sn: Ligon -description: This is Ashleigh Ligon's description -facsimileTelephoneNumber: +1 510 725-3159 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 503-8442 -title: Master Management Technician -userPassword: Password1 -uid: LigonA -givenName: Ashleigh -mail: LigonA@3fec2785d837452b919cb6ba8975932d.bitwarden.com -carLicense: NGYU70 -departmentNumber: 4273 -employeeType: Normal -homePhone: +1 510 915-8378 -initials: A. L. -mobile: +1 510 150-8700 -pager: +1 510 359-1300 -roomNumber: 9554 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nelly Kerns,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nelly Kerns -sn: Kerns -description: This is Nelly Kerns's description -facsimileTelephoneNumber: +1 206 722-9242 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 206 480-1158 -title: Master Human Resources Punk -userPassword: Password1 -uid: KernsN -givenName: Nelly -mail: KernsN@25d13e46c21f42c88f458b84e9f2035e.bitwarden.com -carLicense: YYDA9X -departmentNumber: 8422 -employeeType: Normal -homePhone: +1 206 715-2291 -initials: N. K. -mobile: +1 206 251-1461 -pager: +1 206 451-5243 -roomNumber: 8991 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Chicky Domine,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chicky Domine -sn: Domine -description: This is Chicky Domine's description -facsimileTelephoneNumber: +1 804 469-8125 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 545-5269 -title: Supreme Peons Punk -userPassword: Password1 -uid: DomineC -givenName: Chicky -mail: DomineC@2d496c580b4f4816a656973b9003a612.bitwarden.com -carLicense: GPSKIU -departmentNumber: 2184 -employeeType: Contract -homePhone: +1 804 867-2250 -initials: C. D. -mobile: +1 804 847-5100 -pager: +1 804 696-5610 -roomNumber: 8368 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Woon Morrin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Woon Morrin -sn: Morrin -description: This is Woon Morrin's description -facsimileTelephoneNumber: +1 206 452-3190 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 127-6101 -title: Junior Human Resources Janitor -userPassword: Password1 -uid: MorrinW -givenName: Woon -mail: MorrinW@cabd0c89a78947b69a999dc093307343.bitwarden.com -carLicense: UWSTGO -departmentNumber: 1285 -employeeType: Employee -homePhone: +1 206 346-4811 -initials: W. M. -mobile: +1 206 493-6092 -pager: +1 206 810-2751 -roomNumber: 8106 -manager: cn=Kalie Hine,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tedra Shwed,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tedra Shwed -sn: Shwed -description: This is Tedra Shwed's description -facsimileTelephoneNumber: +1 213 776-1478 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 935-5398 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: ShwedT -givenName: Tedra -mail: ShwedT@ce09eff4e27d456d8a017939b41c80b4.bitwarden.com -carLicense: YQPXAX -departmentNumber: 2868 -employeeType: Normal -homePhone: +1 213 310-3229 -initials: T. S. -mobile: +1 213 947-8550 -pager: +1 213 576-4644 -roomNumber: 8976 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wallis Whitfill,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wallis Whitfill -sn: Whitfill -description: This is Wallis Whitfill's description -facsimileTelephoneNumber: +1 510 415-7049 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 510 800-9454 -title: Associate Product Development Mascot -userPassword: Password1 -uid: WhitfilW -givenName: Wallis -mail: WhitfilW@9e756b675bb74e34850e55cc8a973979.bitwarden.com -carLicense: WDNTKE -departmentNumber: 7111 -employeeType: Normal -homePhone: +1 510 660-7806 -initials: W. W. -mobile: +1 510 760-6017 -pager: +1 510 863-5011 -roomNumber: 8126 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Torey Tropea,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Torey Tropea -sn: Tropea -description: This is Torey Tropea's description -facsimileTelephoneNumber: +1 510 787-8030 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 510 612-4404 -title: Master Janitorial Assistant -userPassword: Password1 -uid: TropeaT -givenName: Torey -mail: TropeaT@358baf59282c4aecb9c88b92eb26205b.bitwarden.com -carLicense: SR55CC -departmentNumber: 2469 -employeeType: Employee -homePhone: +1 510 572-4473 -initials: T. T. -mobile: +1 510 884-1258 -pager: +1 510 931-5805 -roomNumber: 9265 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Israel Ginest,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Israel Ginest -sn: Ginest -description: This is Israel Ginest's description -facsimileTelephoneNumber: +1 510 339-4777 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 168-8306 -title: Associate Janitorial Fellow -userPassword: Password1 -uid: GinestI -givenName: Israel -mail: GinestI@f4cac90289b44dc28b9de765747f5a7c.bitwarden.com -carLicense: 1NP0CI -departmentNumber: 7489 -employeeType: Normal -homePhone: +1 510 393-7039 -initials: I. G. -mobile: +1 510 536-6770 -pager: +1 510 553-1929 -roomNumber: 8297 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Yoko Honda,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yoko Honda -sn: Honda -description: This is Yoko Honda's description -facsimileTelephoneNumber: +1 213 962-7031 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 757-1327 -title: Chief Peons Czar -userPassword: Password1 -uid: HondaY -givenName: Yoko -mail: HondaY@06a1126691e242c186fd659978ae6b78.bitwarden.com -carLicense: BSW1SR -departmentNumber: 7253 -employeeType: Normal -homePhone: +1 213 791-3015 -initials: Y. H. -mobile: +1 213 612-4201 -pager: +1 213 497-2630 -roomNumber: 8884 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Farzin Herlihy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Farzin Herlihy -sn: Herlihy -description: This is Farzin Herlihy's description -facsimileTelephoneNumber: +1 818 891-6151 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 818 924-9602 -title: Junior Peons Visionary -userPassword: Password1 -uid: HerlihyF -givenName: Farzin -mail: HerlihyF@698fc42a217d4dcab9ecca9924295e3b.bitwarden.com -carLicense: ME48QT -departmentNumber: 7884 -employeeType: Employee -homePhone: +1 818 947-8180 -initials: F. H. -mobile: +1 818 815-6185 -pager: +1 818 360-7439 -roomNumber: 9025 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tabbatha DidioDuggan -sn: DidioDuggan -description: This is Tabbatha DidioDuggan's description -facsimileTelephoneNumber: +1 408 170-6048 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 408 643-3552 -title: Junior Human Resources Engineer -userPassword: Password1 -uid: DidioDuT -givenName: Tabbatha -mail: DidioDuT@72b8934ece8a4ceaba3014bcfcb801ca.bitwarden.com -carLicense: R63JPQ -departmentNumber: 7443 -employeeType: Normal -homePhone: +1 408 535-8269 -initials: T. D. -mobile: +1 408 106-7481 -pager: +1 408 595-2263 -roomNumber: 8064 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annadiana Levesque -sn: Levesque -description: This is Annadiana Levesque's description -facsimileTelephoneNumber: +1 415 944-3906 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 415 367-8235 -title: Associate Product Testing Madonna -userPassword: Password1 -uid: LevesquA -givenName: Annadiana -mail: LevesquA@2ca3e374401a4254833b5cbf4d34e968.bitwarden.com -carLicense: OYPU5B -departmentNumber: 3905 -employeeType: Normal -homePhone: +1 415 100-5697 -initials: A. L. -mobile: +1 415 328-4993 -pager: +1 415 902-4061 -roomNumber: 8353 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Benny Ratnam,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Benny Ratnam -sn: Ratnam -description: This is Benny Ratnam's description -facsimileTelephoneNumber: +1 408 920-6304 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 408 987-6663 -title: Associate Product Development Technician -userPassword: Password1 -uid: RatnamB -givenName: Benny -mail: RatnamB@93731e13c9e64512a53eb35ade181e8f.bitwarden.com -carLicense: NV03RQ -departmentNumber: 1479 -employeeType: Normal -homePhone: +1 408 677-5906 -initials: B. R. -mobile: +1 408 598-9653 -pager: +1 408 506-3440 -roomNumber: 8440 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Reeba Pape,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reeba Pape -sn: Pape -description: This is Reeba Pape's description -facsimileTelephoneNumber: +1 408 754-2309 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 295-7871 -title: Supreme Peons Madonna -userPassword: Password1 -uid: PapeR -givenName: Reeba -mail: PapeR@e242cd7509b945bca8984d07e1fb1255.bitwarden.com -carLicense: UVVO69 -departmentNumber: 8055 -employeeType: Normal -homePhone: +1 408 754-7748 -initials: R. P. -mobile: +1 408 659-3321 -pager: +1 408 399-8963 -roomNumber: 9229 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ashu Kohn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashu Kohn -sn: Kohn -description: This is Ashu Kohn's description -facsimileTelephoneNumber: +1 213 847-4093 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 213 929-2784 -title: Junior Administrative Janitor -userPassword: Password1 -uid: KohnA -givenName: Ashu -mail: KohnA@123c99e30f8149cea0d20a1c6360de45.bitwarden.com -carLicense: 3JJYN4 -departmentNumber: 9424 -employeeType: Employee -homePhone: +1 213 932-1466 -initials: A. K. -mobile: +1 213 622-9006 -pager: +1 213 492-9644 -roomNumber: 9789 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Liese McCombs,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liese McCombs -sn: McCombs -description: This is Liese McCombs's description -facsimileTelephoneNumber: +1 818 863-3697 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 818 749-9744 -title: Junior Peons Figurehead -userPassword: Password1 -uid: McCombsL -givenName: Liese -mail: McCombsL@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com -carLicense: QQT1U8 -departmentNumber: 5836 -employeeType: Contract -homePhone: +1 818 256-9131 -initials: L. M. -mobile: +1 818 680-4877 -pager: +1 818 400-2463 -roomNumber: 9231 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pinecrest Sonoda -sn: Sonoda -description: This is Pinecrest Sonoda's description -facsimileTelephoneNumber: +1 415 837-8787 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 415 806-8205 -title: Master Product Development Janitor -userPassword: Password1 -uid: SonodaP -givenName: Pinecrest -mail: SonodaP@a8d52d2b633f41a2be5b6bf6015e6a0d.bitwarden.com -carLicense: 7E9O6C -departmentNumber: 7561 -employeeType: Contract -homePhone: +1 415 994-9961 -initials: P. S. -mobile: +1 415 431-1801 -pager: +1 415 665-7981 -roomNumber: 8655 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lissa Cromwell -sn: Cromwell -description: This is Lissa Cromwell's description -facsimileTelephoneNumber: +1 408 743-7478 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 938-7142 -title: Chief Human Resources Director -userPassword: Password1 -uid: CromwelL -givenName: Lissa -mail: CromwelL@a83f5faad57246c68e39925cbe706599.bitwarden.com -carLicense: Q2BLXQ -departmentNumber: 5578 -employeeType: Normal -homePhone: +1 408 109-3980 -initials: L. C. -mobile: +1 408 394-6377 -pager: +1 408 662-7019 -roomNumber: 8711 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hsieh Networkroom -sn: Networkroom -description: This is Hsieh Networkroom's description -facsimileTelephoneNumber: +1 804 488-4988 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 892-1124 -title: Master Human Resources Pinhead -userPassword: Password1 -uid: NetworkH -givenName: Hsieh -mail: NetworkH@df3533ea43b14b7e966113cda7d50713.bitwarden.com -carLicense: PJCGVN -departmentNumber: 4168 -employeeType: Employee -homePhone: +1 804 907-4083 -initials: H. N. -mobile: +1 804 352-2055 -pager: +1 804 345-6503 -roomNumber: 9986 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Blinny Zanet,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blinny Zanet -sn: Zanet -description: This is Blinny Zanet's description -facsimileTelephoneNumber: +1 415 810-3917 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 415 256-2079 -title: Master Janitorial Evangelist -userPassword: Password1 -uid: ZanetB -givenName: Blinny -mail: ZanetB@5398775f17574785a44a78e1afa74d02.bitwarden.com -carLicense: SWKTUS -departmentNumber: 1716 -employeeType: Employee -homePhone: +1 415 735-4743 -initials: B. Z. -mobile: +1 415 239-6143 -pager: +1 415 962-9656 -roomNumber: 9564 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sanjay Themann,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sanjay Themann -sn: Themann -description: This is Sanjay Themann's description -facsimileTelephoneNumber: +1 408 342-9812 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 746-2078 -title: Chief Product Development Evangelist -userPassword: Password1 -uid: ThemannS -givenName: Sanjay -mail: ThemannS@e47694cd8b2a43baba9d3f4d0bafb719.bitwarden.com -carLicense: 8B2FQC -departmentNumber: 2378 -employeeType: Employee -homePhone: +1 408 392-5437 -initials: S. T. -mobile: +1 408 181-4508 -pager: +1 408 636-4174 -roomNumber: 9819 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Vijay Shorgan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vijay Shorgan -sn: Shorgan -description: This is Vijay Shorgan's description -facsimileTelephoneNumber: +1 206 563-3069 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 687-9626 -title: Junior Administrative Pinhead -userPassword: Password1 -uid: ShorganV -givenName: Vijay -mail: ShorganV@49ae34cdf8be4b8eb94f1974e6e81833.bitwarden.com -carLicense: 3Q4UDB -departmentNumber: 9365 -employeeType: Employee -homePhone: +1 206 901-2498 -initials: V. S. -mobile: +1 206 551-2449 -pager: +1 206 934-7279 -roomNumber: 9292 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Duncan Kiang,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duncan Kiang -sn: Kiang -description: This is Duncan Kiang's description -facsimileTelephoneNumber: +1 408 663-7775 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 277-7287 -title: Master Payroll Developer -userPassword: Password1 -uid: KiangD -givenName: Duncan -mail: KiangD@9d026b334a7143518a4125ed6fc356b2.bitwarden.com -carLicense: 57JELK -departmentNumber: 7898 -employeeType: Normal -homePhone: +1 408 634-8086 -initials: D. K. -mobile: +1 408 767-5711 -pager: +1 408 505-2002 -roomNumber: 8328 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hyacintha Dasrath -sn: Dasrath -description: This is Hyacintha Dasrath's description -facsimileTelephoneNumber: +1 415 108-9181 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 415 298-8452 -title: Chief Human Resources Writer -userPassword: Password1 -uid: DasrathH -givenName: Hyacintha -mail: DasrathH@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com -carLicense: 94AE16 -departmentNumber: 3508 -employeeType: Employee -homePhone: +1 415 959-4455 -initials: H. D. -mobile: +1 415 988-9089 -pager: +1 415 776-5604 -roomNumber: 8887 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Liliane Chima,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liliane Chima -sn: Chima -description: This is Liliane Chima's description -facsimileTelephoneNumber: +1 415 868-6002 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 657-1380 -title: Chief Payroll Dictator -userPassword: Password1 -uid: ChimaL -givenName: Liliane -mail: ChimaL@25e73f953c4a41e5afd2d99582d35572.bitwarden.com -carLicense: I3ANCG -departmentNumber: 6967 -employeeType: Normal -homePhone: +1 415 729-3333 -initials: L. C. -mobile: +1 415 177-5906 -pager: +1 415 171-9741 -roomNumber: 8523 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Khai Diradmin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khai Diradmin -sn: Diradmin -description: This is Khai Diradmin's description -facsimileTelephoneNumber: +1 213 560-1053 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 213 522-5961 -title: Master Payroll Manager -userPassword: Password1 -uid: DiradmiK -givenName: Khai -mail: DiradmiK@cd3e8f43f0dd4d3fb94f3baba8d46ade.bitwarden.com -carLicense: B7BPC5 -departmentNumber: 2089 -employeeType: Employee -homePhone: +1 213 304-5869 -initials: K. D. -mobile: +1 213 316-2531 -pager: +1 213 551-1792 -roomNumber: 9291 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanya Hengeveld -sn: Hengeveld -description: This is Kanya Hengeveld's description -facsimileTelephoneNumber: +1 510 631-4179 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 510 634-7314 -title: Associate Product Development Writer -userPassword: Password1 -uid: HengeveK -givenName: Kanya -mail: HengeveK@009b48ec99e641a9b127fbabb87ff147.bitwarden.com -carLicense: FQG5PO -departmentNumber: 8352 -employeeType: Contract -homePhone: +1 510 109-5194 -initials: K. H. -mobile: +1 510 259-7742 -pager: +1 510 103-2188 -roomNumber: 9637 -manager: cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Burton Deans,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Burton Deans -sn: Deans -description: This is Burton Deans's description -facsimileTelephoneNumber: +1 213 349-7676 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 354-3998 -title: Master Janitorial Assistant -userPassword: Password1 -uid: DeansB -givenName: Burton -mail: DeansB@11066945925d4920b7876e8ee0d7adc4.bitwarden.com -carLicense: 4KM7C2 -departmentNumber: 9596 -employeeType: Normal -homePhone: +1 213 306-9063 -initials: B. D. -mobile: +1 213 159-4107 -pager: +1 213 707-1041 -roomNumber: 8161 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeff Timesheet -sn: Timesheet -description: This is Jeff Timesheet's description -facsimileTelephoneNumber: +1 206 120-7144 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 206 644-3145 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: TimesheJ -givenName: Jeff -mail: TimesheJ@fb0a3750df834bc493046b175453d58f.bitwarden.com -carLicense: 70BGJY -departmentNumber: 8108 -employeeType: Normal -homePhone: +1 206 835-5879 -initials: J. T. -mobile: +1 206 709-8295 -pager: +1 206 558-1950 -roomNumber: 9409 -manager: cn=Habib Barreyre,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elly Kubash,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elly Kubash -sn: Kubash -description: This is Elly Kubash's description -facsimileTelephoneNumber: +1 415 520-8430 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 415 711-9697 -title: Master Product Testing Grunt -userPassword: Password1 -uid: KubashE -givenName: Elly -mail: KubashE@b0361fa8905e48acad0bbc69c1da25d3.bitwarden.com -carLicense: FK79D4 -departmentNumber: 2301 -employeeType: Contract -homePhone: +1 415 335-2344 -initials: E. K. -mobile: +1 415 530-2347 -pager: +1 415 894-6653 -roomNumber: 8002 -manager: cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashlee Mazanji -sn: Mazanji -description: This is Ashlee Mazanji's description -facsimileTelephoneNumber: +1 213 476-9432 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 277-5145 -title: Junior Product Development Writer -userPassword: Password1 -uid: MazanjiA -givenName: Ashlee -mail: MazanjiA@965eaa64d55b462eb17422051f0b66a2.bitwarden.com -carLicense: 7T05WR -departmentNumber: 6665 -employeeType: Normal -homePhone: +1 213 565-7153 -initials: A. M. -mobile: +1 213 978-5156 -pager: +1 213 392-6483 -roomNumber: 8493 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tallou Gothard,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tallou Gothard -sn: Gothard -description: This is Tallou Gothard's description -facsimileTelephoneNumber: +1 510 992-6034 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 622-3592 -title: Junior Administrative Stooge -userPassword: Password1 -uid: GothardT -givenName: Tallou -mail: GothardT@f6c4a9fff2af4eafbf743b05d6249663.bitwarden.com -carLicense: 3NROAV -departmentNumber: 1661 -employeeType: Normal -homePhone: +1 510 220-1414 -initials: T. G. -mobile: +1 510 841-6083 -pager: +1 510 729-6043 -roomNumber: 9218 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melinie Chiabaut -sn: Chiabaut -description: This is Melinie Chiabaut's description -facsimileTelephoneNumber: +1 818 334-1503 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 818 249-2442 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: ChiabauM -givenName: Melinie -mail: ChiabauM@f273a190f14545708d6c984111d46055.bitwarden.com -carLicense: V8V3I7 -departmentNumber: 1513 -employeeType: Normal -homePhone: +1 818 932-1188 -initials: M. C. -mobile: +1 818 372-7124 -pager: +1 818 181-8742 -roomNumber: 8099 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ofilia Choptovy -sn: Choptovy -description: This is Ofilia Choptovy's description -facsimileTelephoneNumber: +1 818 882-5577 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 150-5659 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: ChoptovO -givenName: Ofilia -mail: ChoptovO@77df1d4a30ab443892398806ba3c7576.bitwarden.com -carLicense: 1MCAU0 -departmentNumber: 6442 -employeeType: Employee -homePhone: +1 818 110-4481 -initials: O. C. -mobile: +1 818 318-9570 -pager: +1 818 616-9146 -roomNumber: 9085 -manager: cn=Bosiljka Valerius,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Perry Schmitz,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Perry Schmitz -sn: Schmitz -description: This is Perry Schmitz's description -facsimileTelephoneNumber: +1 213 332-7576 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 213 143-5340 -title: Chief Product Testing Stooge -userPassword: Password1 -uid: SchmitzP -givenName: Perry -mail: SchmitzP@68995b01422d4fac85d1f7b91ec07a75.bitwarden.com -carLicense: MYJO3G -departmentNumber: 3237 -employeeType: Employee -homePhone: +1 213 851-9600 -initials: P. S. -mobile: +1 213 423-9766 -pager: +1 213 851-1232 -roomNumber: 8756 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Avinash Finn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avinash Finn -sn: Finn -description: This is Avinash Finn's description -facsimileTelephoneNumber: +1 510 521-4339 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 510 467-9257 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: FinnA -givenName: Avinash -mail: FinnA@2ab1da0352f24de2973c7264573c59be.bitwarden.com -carLicense: OGY2PI -departmentNumber: 2851 -employeeType: Contract -homePhone: +1 510 177-1611 -initials: A. F. -mobile: +1 510 127-1724 -pager: +1 510 511-3123 -roomNumber: 8479 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Soyeh Neely,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marabel Hippert,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marabel Hippert -sn: Hippert -description: This is Marabel Hippert's description -facsimileTelephoneNumber: +1 408 299-5190 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 510-9484 -title: Supreme Human Resources President -userPassword: Password1 -uid: HippertM -givenName: Marabel -mail: HippertM@ebcad067bfb54e2996e22c6d3ae46310.bitwarden.com -carLicense: 8MYAQ8 -departmentNumber: 2620 -employeeType: Contract -homePhone: +1 408 131-9017 -initials: M. H. -mobile: +1 408 618-9658 -pager: +1 408 130-1229 -roomNumber: 8442 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Klazina Desharnais,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klazina Desharnais -sn: Desharnais -description: This is Klazina Desharnais's description -facsimileTelephoneNumber: +1 213 291-8956 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 636-9459 -title: Associate Peons Consultant -userPassword: Password1 -uid: DesharnK -givenName: Klazina -mail: DesharnK@89540e87cb364fefaa3b2a5074215102.bitwarden.com -carLicense: WOQEWG -departmentNumber: 8904 -employeeType: Employee -homePhone: +1 213 684-7080 -initials: K. D. -mobile: +1 213 148-7051 -pager: +1 213 520-5792 -roomNumber: 8061 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ursala Vezeau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ursala Vezeau -sn: Vezeau -description: This is Ursala Vezeau's description -facsimileTelephoneNumber: +1 206 261-8446 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 206 703-9102 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: VezeauU -givenName: Ursala -mail: VezeauU@61391b1e27a64c79ad40798665590378.bitwarden.com -carLicense: BDAU4Y -departmentNumber: 6419 -employeeType: Contract -homePhone: +1 206 851-6326 -initials: U. V. -mobile: +1 206 270-8449 -pager: +1 206 209-6730 -roomNumber: 8835 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Muffin Atteridge,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Muffin Atteridge -sn: Atteridge -description: This is Muffin Atteridge's description -facsimileTelephoneNumber: +1 213 122-2617 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 213 784-1774 -title: Associate Product Development Vice President -userPassword: Password1 -uid: AtteridM -givenName: Muffin -mail: AtteridM@6ff512afd6074ffb8be89092e99d3615.bitwarden.com -carLicense: 6PS7LX -departmentNumber: 4537 -employeeType: Contract -homePhone: +1 213 874-5951 -initials: M. A. -mobile: +1 213 406-7139 -pager: +1 213 459-5587 -roomNumber: 9287 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Vanya Marcoux,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanya Marcoux -sn: Marcoux -description: This is Vanya Marcoux's description -facsimileTelephoneNumber: +1 213 252-8471 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 213 493-5247 -title: Associate Management Figurehead -userPassword: Password1 -uid: MarcouxV -givenName: Vanya -mail: MarcouxV@dbdefa82bd204e5ab1e6a5b8f9bbc438.bitwarden.com -carLicense: BFGOHS -departmentNumber: 6875 -employeeType: Contract -homePhone: +1 213 749-6868 -initials: V. M. -mobile: +1 213 145-5623 -pager: +1 213 208-5952 -roomNumber: 9561 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mercy Nakano,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mercy Nakano -sn: Nakano -description: This is Mercy Nakano's description -facsimileTelephoneNumber: +1 804 128-3119 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 804 816-9979 -title: Associate Product Testing Punk -userPassword: Password1 -uid: NakanoM -givenName: Mercy -mail: NakanoM@f1c1878671bd497c916d8d6aa3e192fd.bitwarden.com -carLicense: 7C4MB2 -departmentNumber: 8368 -employeeType: Contract -homePhone: +1 804 801-6040 -initials: M. N. -mobile: +1 804 419-7687 -pager: +1 804 690-4195 -roomNumber: 9587 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sue Sugarbroad -sn: Sugarbroad -description: This is Sue Sugarbroad's description -facsimileTelephoneNumber: +1 804 846-3086 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 804 992-5213 -title: Associate Product Development Janitor -userPassword: Password1 -uid: SugarbrS -givenName: Sue -mail: SugarbrS@ab3309e246f140c79e997dde5ccb290c.bitwarden.com -carLicense: T4JPB8 -departmentNumber: 5257 -employeeType: Contract -homePhone: +1 804 226-1796 -initials: S. S. -mobile: +1 804 617-2153 -pager: +1 804 962-2671 -roomNumber: 8027 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Arlina Weaver,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlina Weaver -sn: Weaver -description: This is Arlina Weaver's description -facsimileTelephoneNumber: +1 804 119-9506 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 804 743-9385 -title: Junior Janitorial Admin -userPassword: Password1 -uid: WeaverA -givenName: Arlina -mail: WeaverA@5cb368696cd247eea76178d9b0f44b81.bitwarden.com -carLicense: 3NM4P7 -departmentNumber: 1029 -employeeType: Contract -homePhone: +1 804 467-4224 -initials: A. W. -mobile: +1 804 787-5385 -pager: +1 804 980-4551 -roomNumber: 8356 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Seven Okon,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Seven Okon -sn: Okon -description: This is Seven Okon's description -facsimileTelephoneNumber: +1 206 506-5629 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 983-7003 -title: Junior Product Testing Czar -userPassword: Password1 -uid: OkonS -givenName: Seven -mail: OkonS@9da8707f84d94fc6a64c7ccfeaa1b78b.bitwarden.com -carLicense: FONL7W -departmentNumber: 7971 -employeeType: Normal -homePhone: +1 206 749-1323 -initials: S. O. -mobile: +1 206 420-9032 -pager: +1 206 383-4295 -roomNumber: 8103 -manager: cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronn Ciccarelli -sn: Ciccarelli -description: This is Ronn Ciccarelli's description -facsimileTelephoneNumber: +1 213 259-6761 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 213 789-8270 -title: Junior Administrative Admin -userPassword: Password1 -uid: CiccareR -givenName: Ronn -mail: CiccareR@af9b2025e2d4428a825c1c465719ccc7.bitwarden.com -carLicense: L3QGP0 -departmentNumber: 1069 -employeeType: Contract -homePhone: +1 213 901-4507 -initials: R. C. -mobile: +1 213 736-4777 -pager: +1 213 851-8267 -roomNumber: 9083 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Liliane Gurer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Liliane Gurer -sn: Gurer -description: This is Liliane Gurer's description -facsimileTelephoneNumber: +1 408 718-4891 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 274-9111 -title: Associate Human Resources Dictator -userPassword: Password1 -uid: GurerL -givenName: Liliane -mail: GurerL@06929a8dcdce40d387113e867b6564b6.bitwarden.com -carLicense: KN379I -departmentNumber: 4101 -employeeType: Contract -homePhone: +1 408 538-8136 -initials: L. G. -mobile: +1 408 360-3856 -pager: +1 408 659-5739 -roomNumber: 9547 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=HonKong Salem,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HonKong Salem -sn: Salem -description: This is HonKong Salem's description -facsimileTelephoneNumber: +1 804 484-1074 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 992-6345 -title: Master Human Resources Assistant -userPassword: Password1 -uid: SalemH -givenName: HonKong -mail: SalemH@a3f5c91e6cdf46d98f250a62d67415ff.bitwarden.com -carLicense: G2SPI0 -departmentNumber: 9738 -employeeType: Employee -homePhone: +1 804 661-5860 -initials: H. S. -mobile: +1 804 793-5910 -pager: +1 804 273-2383 -roomNumber: 8702 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rosalia Mansourati -sn: Mansourati -description: This is Rosalia Mansourati's description -facsimileTelephoneNumber: +1 510 336-2200 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 510 165-2812 -title: Supreme Janitorial Vice President -userPassword: Password1 -uid: MansourR -givenName: Rosalia -mail: MansourR@e64b8dfa86634e858dc40a565c229607.bitwarden.com -carLicense: HBA0SJ -departmentNumber: 7549 -employeeType: Contract -homePhone: +1 510 288-5160 -initials: R. M. -mobile: +1 510 573-2224 -pager: +1 510 300-4627 -roomNumber: 8948 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Glynnis Daniells,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glynnis Daniells -sn: Daniells -description: This is Glynnis Daniells's description -facsimileTelephoneNumber: +1 415 401-2182 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 825-6385 -title: Supreme Management Grunt -userPassword: Password1 -uid: DaniellG -givenName: Glynnis -mail: DaniellG@547fa50227684350b1f92837929bd166.bitwarden.com -carLicense: SENSES -departmentNumber: 5130 -employeeType: Contract -homePhone: +1 415 283-6712 -initials: G. D. -mobile: +1 415 274-5531 -pager: +1 415 214-2331 -roomNumber: 8187 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Edwin SteMarie -sn: SteMarie -description: This is Edwin SteMarie's description -facsimileTelephoneNumber: +1 804 242-5615 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 880-5356 -title: Supreme Janitorial President -userPassword: Password1 -uid: SteMariE -givenName: Edwin -mail: SteMariE@5128133359594cd18d137c259ecf1184.bitwarden.com -carLicense: KGCTTH -departmentNumber: 5090 -employeeType: Contract -homePhone: +1 804 813-7214 -initials: E. S. -mobile: +1 804 455-8930 -pager: +1 804 257-4390 -roomNumber: 9819 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Miran McKeone,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miran McKeone -sn: McKeone -description: This is Miran McKeone's description -facsimileTelephoneNumber: +1 818 198-6286 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 818 328-5587 -title: Junior Product Testing Stooge -userPassword: Password1 -uid: McKeoneM -givenName: Miran -mail: McKeoneM@be56d01786b846e3aa64454147150e23.bitwarden.com -carLicense: WBWM06 -departmentNumber: 3272 -employeeType: Normal -homePhone: +1 818 296-5811 -initials: M. M. -mobile: +1 818 426-9852 -pager: +1 818 981-5097 -roomNumber: 9023 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dion Polulack,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dion Polulack -sn: Polulack -description: This is Dion Polulack's description -facsimileTelephoneNumber: +1 408 694-1333 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 237-3478 -title: Master Administrative Janitor -userPassword: Password1 -uid: PolulacD -givenName: Dion -mail: PolulacD@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com -carLicense: T15XIB -departmentNumber: 9078 -employeeType: Normal -homePhone: +1 408 613-6307 -initials: D. P. -mobile: +1 408 369-8848 -pager: +1 408 779-9806 -roomNumber: 9228 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hartley Busch,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hartley Busch -sn: Busch -description: This is Hartley Busch's description -facsimileTelephoneNumber: +1 510 866-4486 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 510 203-8711 -title: Junior Product Testing Figurehead -userPassword: Password1 -uid: BuschH -givenName: Hartley -mail: BuschH@c7a27fd01c1647d28de4dfcfed9b1184.bitwarden.com -carLicense: G90LG4 -departmentNumber: 6939 -employeeType: Employee -homePhone: +1 510 596-5812 -initials: H. B. -mobile: +1 510 437-7619 -pager: +1 510 354-8587 -roomNumber: 9593 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gusella Popper,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gusella Popper -sn: Popper -description: This is Gusella Popper's description -facsimileTelephoneNumber: +1 818 824-4553 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 286-5027 -title: Chief Human Resources Evangelist -userPassword: Password1 -uid: PopperG -givenName: Gusella -mail: PopperG@903b76c810774286bddac3a5a25eb6b0.bitwarden.com -carLicense: 2FIAIR -departmentNumber: 2389 -employeeType: Employee -homePhone: +1 818 361-4023 -initials: G. P. -mobile: +1 818 366-5635 -pager: +1 818 868-1262 -roomNumber: 9280 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Wits Stutts,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wits Stutts -sn: Stutts -description: This is Wits Stutts's description -facsimileTelephoneNumber: +1 804 107-3780 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 120-5802 -title: Junior Human Resources President -userPassword: Password1 -uid: StuttsW -givenName: Wits -mail: StuttsW@010ac2dbb4cb4b37b616090dd6b67211.bitwarden.com -carLicense: DDDX1J -departmentNumber: 7331 -employeeType: Contract -homePhone: +1 804 269-1110 -initials: W. S. -mobile: +1 804 395-9937 -pager: +1 804 360-9533 -roomNumber: 9181 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Afzal Rusch,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Afzal Rusch -sn: Rusch -description: This is Afzal Rusch's description -facsimileTelephoneNumber: +1 408 901-9427 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 630-2755 -title: Master Peons Dictator -userPassword: Password1 -uid: RuschA -givenName: Afzal -mail: RuschA@133bae8b2a2c42388199fc3fdfad66b4.bitwarden.com -carLicense: KKJ4AC -departmentNumber: 6842 -employeeType: Normal -homePhone: +1 408 696-6932 -initials: A. R. -mobile: +1 408 498-3215 -pager: +1 408 137-7940 -roomNumber: 9738 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Karon McBrayne,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karon McBrayne -sn: McBrayne -description: This is Karon McBrayne's description -facsimileTelephoneNumber: +1 804 326-5982 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 960-3766 -title: Master Human Resources Pinhead -userPassword: Password1 -uid: McBraynK -givenName: Karon -mail: McBraynK@42caf052c7364166a6c614169e68423b.bitwarden.com -carLicense: EP8QPO -departmentNumber: 7717 -employeeType: Normal -homePhone: +1 804 801-5991 -initials: K. M. -mobile: +1 804 534-3656 -pager: +1 804 174-5136 -roomNumber: 8094 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Katrina Dauterive,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Judy Homa,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Judy Homa -sn: Homa -description: This is Judy Homa's description -facsimileTelephoneNumber: +1 213 785-2105 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 213 105-8119 -title: Supreme Payroll Grunt -userPassword: Password1 -uid: HomaJ -givenName: Judy -mail: HomaJ@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com -carLicense: 1KX271 -departmentNumber: 3211 -employeeType: Employee -homePhone: +1 213 416-2781 -initials: J. H. -mobile: +1 213 537-4960 -pager: +1 213 118-1232 -roomNumber: 8352 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tarik Tester,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tarik Tester -sn: Tester -description: This is Tarik Tester's description -facsimileTelephoneNumber: +1 206 928-8373 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 451-6737 -title: Master Administrative Architect -userPassword: Password1 -uid: TesterT -givenName: Tarik -mail: TesterT@392b60a69449497fa8daa89cef186b78.bitwarden.com -carLicense: 769VU9 -departmentNumber: 3348 -employeeType: Normal -homePhone: +1 206 833-1838 -initials: T. T. -mobile: +1 206 668-5786 -pager: +1 206 259-5521 -roomNumber: 9777 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Carole Suykens,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carole Suykens -sn: Suykens -description: This is Carole Suykens's description -facsimileTelephoneNumber: +1 415 929-6427 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 415 336-3294 -title: Chief Administrative Janitor -userPassword: Password1 -uid: SuykensC -givenName: Carole -mail: SuykensC@b7faf436ed93412c95576fc8c712f2d1.bitwarden.com -carLicense: AUGSNP -departmentNumber: 6960 -employeeType: Contract -homePhone: +1 415 552-6211 -initials: C. S. -mobile: +1 415 820-7700 -pager: +1 415 379-5072 -roomNumber: 9570 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nuri DiRienzo -sn: DiRienzo -description: This is Nuri DiRienzo's description -facsimileTelephoneNumber: +1 415 638-2983 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 415 590-9693 -title: Chief Payroll Writer -userPassword: Password1 -uid: DiRienzN -givenName: Nuri -mail: DiRienzN@b7e74d1e3c394a0f8846f3f4c8d34c1b.bitwarden.com -carLicense: EO4EKR -departmentNumber: 3769 -employeeType: Employee -homePhone: +1 415 868-4790 -initials: N. D. -mobile: +1 415 902-2871 -pager: +1 415 837-5443 -roomNumber: 9403 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Saman Koverzin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saman Koverzin -sn: Koverzin -description: This is Saman Koverzin's description -facsimileTelephoneNumber: +1 804 671-4008 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 804 970-3689 -title: Junior Payroll Mascot -userPassword: Password1 -uid: KoverziS -givenName: Saman -mail: KoverziS@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com -carLicense: OFDEA6 -departmentNumber: 3298 -employeeType: Employee -homePhone: +1 804 347-8392 -initials: S. K. -mobile: +1 804 375-2911 -pager: +1 804 468-1791 -roomNumber: 9874 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kaushik Reid,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaushik Reid -sn: Reid -description: This is Kaushik Reid's description -facsimileTelephoneNumber: +1 818 517-2876 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 818 120-1634 -title: Chief Product Development Punk -userPassword: Password1 -uid: ReidK -givenName: Kaushik -mail: ReidK@496d582fba1f48fead6391e894698c13.bitwarden.com -carLicense: NTF1P0 -departmentNumber: 8645 -employeeType: Normal -homePhone: +1 818 364-9021 -initials: K. R. -mobile: +1 818 861-1831 -pager: +1 818 539-1944 -roomNumber: 9031 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Eastreg Buchan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eastreg Buchan -sn: Buchan -description: This is Eastreg Buchan's description -facsimileTelephoneNumber: +1 206 361-4138 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 206 184-9304 -title: Master Administrative Czar -userPassword: Password1 -uid: BuchanE -givenName: Eastreg -mail: BuchanE@7b1a03c5445247ebb52034bf84aa1aeb.bitwarden.com -carLicense: VK9H8B -departmentNumber: 9176 -employeeType: Employee -homePhone: +1 206 446-9813 -initials: E. B. -mobile: +1 206 980-6943 -pager: +1 206 735-8399 -roomNumber: 8657 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kevyn Yu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kevyn Yu -sn: Yu -description: This is Kevyn Yu's description -facsimileTelephoneNumber: +1 206 487-3809 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 691-5336 -title: Master Management Stooge -userPassword: Password1 -uid: YuK -givenName: Kevyn -mail: YuK@50db0b06f7084e4cb9a7af7a31c89f8b.bitwarden.com -carLicense: ESS8A3 -departmentNumber: 2656 -employeeType: Employee -homePhone: +1 206 342-8996 -initials: K. Y. -mobile: +1 206 940-7423 -pager: +1 206 903-3399 -roomNumber: 8431 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Violante Chaurasia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Violante Chaurasia -sn: Chaurasia -description: This is Violante Chaurasia's description -facsimileTelephoneNumber: +1 818 177-2700 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 398-1185 -title: Supreme Product Development Developer -userPassword: Password1 -uid: ChaurasV -givenName: Violante -mail: ChaurasV@570b2a8b45094bdbb019684431d6e2af.bitwarden.com -carLicense: 5E26YC -departmentNumber: 8528 -employeeType: Normal -homePhone: +1 818 896-3141 -initials: V. C. -mobile: +1 818 306-8914 -pager: +1 818 680-7204 -roomNumber: 8515 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cybill Fragnito -sn: Fragnito -description: This is Cybill Fragnito's description -facsimileTelephoneNumber: +1 818 229-9128 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 818 963-7644 -title: Supreme Human Resources Figurehead -userPassword: Password1 -uid: FragnitC -givenName: Cybill -mail: FragnitC@90c585b5539b419a977fd9fb6fa21443.bitwarden.com -carLicense: Q3SPG5 -departmentNumber: 8843 -employeeType: Employee -homePhone: +1 818 707-9581 -initials: C. F. -mobile: +1 818 659-1125 -pager: +1 818 956-1856 -roomNumber: 9047 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ellen Wetzel -sn: Wetzel -description: This is Ellen Wetzel's description -facsimileTelephoneNumber: +1 408 154-9004 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 408 799-5789 -title: Associate Janitorial Dictator -userPassword: Password1 -uid: WetzelE -givenName: Ellen -mail: WetzelE@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com -carLicense: WB009G -departmentNumber: 4185 -employeeType: Contract -homePhone: +1 408 824-2490 -initials: E. W. -mobile: +1 408 440-7353 -pager: +1 408 831-4088 -roomNumber: 8684 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cynde ParrishBell -sn: ParrishBell -description: This is Cynde ParrishBell's description -facsimileTelephoneNumber: +1 408 936-3735 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 872-5607 -title: Master Human Resources Developer -userPassword: Password1 -uid: ParrishC -givenName: Cynde -mail: ParrishC@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com -carLicense: GD7O9K -departmentNumber: 8201 -employeeType: Normal -homePhone: +1 408 869-2607 -initials: C. P. -mobile: +1 408 845-5674 -pager: +1 408 231-9334 -roomNumber: 9435 -manager: cn=Elberta Incze,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Franklin Landry,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franklin Landry -sn: Landry -description: This is Franklin Landry's description -facsimileTelephoneNumber: +1 415 720-5554 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 415 346-8228 -title: Master Janitorial Assistant -userPassword: Password1 -uid: LandryF -givenName: Franklin -mail: LandryF@197bef16e6cb42f3bbfedc909bc4a49d.bitwarden.com -carLicense: 3HLNJN -departmentNumber: 5183 -employeeType: Employee -homePhone: +1 415 157-7769 -initials: F. L. -mobile: +1 415 409-9319 -pager: +1 415 430-9937 -roomNumber: 9634 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rejean Hartsell,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rejean Hartsell -sn: Hartsell -description: This is Rejean Hartsell's description -facsimileTelephoneNumber: +1 510 816-2805 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 510 650-8703 -title: Associate Payroll Technician -userPassword: Password1 -uid: HartselR -givenName: Rejean -mail: HartselR@86262c8a96f6428ca6c85ec378671d82.bitwarden.com -carLicense: TD0WAG -departmentNumber: 4701 -employeeType: Contract -homePhone: +1 510 813-7232 -initials: R. H. -mobile: +1 510 260-9269 -pager: +1 510 615-5504 -roomNumber: 8480 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dyane Schlachter -sn: Schlachter -description: This is Dyane Schlachter's description -facsimileTelephoneNumber: +1 408 205-6028 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 408 315-5538 -title: Chief Human Resources Consultant -userPassword: Password1 -uid: SchlachD -givenName: Dyane -mail: SchlachD@584af194d9e84647b332e4629d64528d.bitwarden.com -carLicense: 2XJFMT -departmentNumber: 8698 -employeeType: Normal -homePhone: +1 408 783-1895 -initials: D. S. -mobile: +1 408 256-3468 -pager: +1 408 202-2366 -roomNumber: 8393 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Crista Reece,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Crista Reece -sn: Reece -description: This is Crista Reece's description -facsimileTelephoneNumber: +1 206 395-5940 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 206 873-2201 -title: Master Product Development Pinhead -userPassword: Password1 -uid: ReeceC -givenName: Crista -mail: ReeceC@68504e0f13984c8c9f4e31aa33c193c8.bitwarden.com -carLicense: CSGCAK -departmentNumber: 6096 -employeeType: Employee -homePhone: +1 206 777-2990 -initials: C. R. -mobile: +1 206 977-5853 -pager: +1 206 481-6259 -roomNumber: 8918 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Apryle Briard,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Apryle Briard -sn: Briard -description: This is Apryle Briard's description -facsimileTelephoneNumber: +1 213 422-3301 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 923-6012 -title: Junior Management Visionary -userPassword: Password1 -uid: BriardA -givenName: Apryle -mail: BriardA@c72f77d8df544dfda8a24066a5992ad2.bitwarden.com -carLicense: T57DPN -departmentNumber: 8266 -employeeType: Contract -homePhone: +1 213 158-7557 -initials: A. B. -mobile: +1 213 522-8222 -pager: +1 213 444-5251 -roomNumber: 9858 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Joni Netas,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joni Netas -sn: Netas -description: This is Joni Netas's description -facsimileTelephoneNumber: +1 818 477-5507 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 646-8866 -title: Chief Management Grunt -userPassword: Password1 -uid: NetasJ -givenName: Joni -mail: NetasJ@35a1311d06994f1e8d741b9b47461442.bitwarden.com -carLicense: P7CDE3 -departmentNumber: 3137 -employeeType: Normal -homePhone: +1 818 272-3350 -initials: J. N. -mobile: +1 818 215-6312 -pager: +1 818 338-8177 -roomNumber: 8411 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Junk Nishith,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nicola Hensen,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicola Hensen -sn: Hensen -description: This is Nicola Hensen's description -facsimileTelephoneNumber: +1 206 289-1942 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 566-3026 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: HensenN -givenName: Nicola -mail: HensenN@9a2d48dfe13f43e0a7df082cbd40535c.bitwarden.com -carLicense: 5698MD -departmentNumber: 9723 -employeeType: Contract -homePhone: +1 206 507-4290 -initials: N. H. -mobile: +1 206 226-1934 -pager: +1 206 662-5015 -roomNumber: 8672 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jagjeet Orol -sn: Orol -description: This is Jagjeet Orol's description -facsimileTelephoneNumber: +1 408 637-4465 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 408 287-8060 -title: Associate Product Testing Figurehead -userPassword: Password1 -uid: OrolJ -givenName: Jagjeet -mail: OrolJ@d0cc080dcb974f719dfa65f1932864b3.bitwarden.com -carLicense: Q2YKSE -departmentNumber: 7202 -employeeType: Employee -homePhone: +1 408 688-5463 -initials: J. O. -mobile: +1 408 868-1136 -pager: +1 408 309-7864 -roomNumber: 8658 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bruce Galasso,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bruce Galasso -sn: Galasso -description: This is Bruce Galasso's description -facsimileTelephoneNumber: +1 818 327-6224 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 689-9099 -title: Junior Human Resources Technician -userPassword: Password1 -uid: GalassoB -givenName: Bruce -mail: GalassoB@6d93f84a8aef4b70975e9d9fd01027a1.bitwarden.com -carLicense: JLF8V5 -departmentNumber: 9734 -employeeType: Normal -homePhone: +1 818 695-2387 -initials: B. G. -mobile: +1 818 316-7748 -pager: +1 818 207-3353 -roomNumber: 8525 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sabah Balkissoon -sn: Balkissoon -description: This is Sabah Balkissoon's description -facsimileTelephoneNumber: +1 818 242-4420 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 416-1853 -title: Chief Product Development Pinhead -userPassword: Password1 -uid: BalkissS -givenName: Sabah -mail: BalkissS@81a2fc82bdcd4a3582b8aa6d409fc9a1.bitwarden.com -carLicense: F1GIB3 -departmentNumber: 7169 -employeeType: Employee -homePhone: +1 818 146-9088 -initials: S. B. -mobile: +1 818 613-2095 -pager: +1 818 203-6376 -roomNumber: 9261 -manager: cn=Scarlet Netzke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Margeaux Chunn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margeaux Chunn -sn: Chunn -description: This is Margeaux Chunn's description -facsimileTelephoneNumber: +1 213 151-6217 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 213 920-7564 -title: Chief Administrative Stooge -userPassword: Password1 -uid: ChunnM -givenName: Margeaux -mail: ChunnM@47a09a57ddfd44dea0c2830e2bbbf9fe.bitwarden.com -carLicense: N7YQ4C -departmentNumber: 5426 -employeeType: Normal -homePhone: +1 213 637-4349 -initials: M. C. -mobile: +1 213 498-1145 -pager: +1 213 734-7128 -roomNumber: 8870 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Long Esry,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Long Esry -sn: Esry -description: This is Long Esry's description -facsimileTelephoneNumber: +1 804 538-1683 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 804 415-1189 -title: Chief Management Pinhead -userPassword: Password1 -uid: EsryL -givenName: Long -mail: EsryL@290c8e7e8138440babe5064ce0d66502.bitwarden.com -carLicense: WJY0VY -departmentNumber: 6638 -employeeType: Contract -homePhone: +1 804 466-4593 -initials: L. E. -mobile: +1 804 144-8944 -pager: +1 804 913-6107 -roomNumber: 9843 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lynette Brearley,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lynette Brearley -sn: Brearley -description: This is Lynette Brearley's description -facsimileTelephoneNumber: +1 415 200-5300 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 730-9846 -title: Associate Janitorial Grunt -userPassword: Password1 -uid: BrearleL -givenName: Lynette -mail: BrearleL@428ea86de0d24cc293fcc0e69c36a51d.bitwarden.com -carLicense: NHRXI6 -departmentNumber: 5522 -employeeType: Normal -homePhone: +1 415 696-8598 -initials: L. B. -mobile: +1 415 477-7444 -pager: +1 415 868-5880 -roomNumber: 8117 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Birdie Cawley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Birdie Cawley -sn: Cawley -description: This is Birdie Cawley's description -facsimileTelephoneNumber: +1 818 680-9632 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 470-2907 -title: Junior Human Resources Admin -userPassword: Password1 -uid: CawleyB -givenName: Birdie -mail: CawleyB@308ad8d2df924e23912f5ff5c482654c.bitwarden.com -carLicense: 19GFTB -departmentNumber: 3884 -employeeType: Employee -homePhone: +1 818 110-9837 -initials: B. C. -mobile: +1 818 507-1900 -pager: +1 818 296-5969 -roomNumber: 8578 -manager: cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pearline Towsley,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Demetria Borojevic -sn: Borojevic -description: This is Demetria Borojevic's description -facsimileTelephoneNumber: +1 510 156-6361 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 926-5036 -title: Supreme Janitorial President -userPassword: Password1 -uid: BorojevD -givenName: Demetria -mail: BorojevD@0534f193dc3e49e39af35f74a2ae824e.bitwarden.com -carLicense: TS3A6T -departmentNumber: 9594 -employeeType: Normal -homePhone: +1 510 883-9060 -initials: D. B. -mobile: +1 510 546-7466 -pager: +1 510 695-3179 -roomNumber: 9937 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Deana MacNeill,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deana MacNeill -sn: MacNeill -description: This is Deana MacNeill's description -facsimileTelephoneNumber: +1 206 738-2425 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 206 301-1364 -title: Chief Payroll Punk -userPassword: Password1 -uid: MacNeilD -givenName: Deana -mail: MacNeilD@8a2e8c6a93cc4c9691c29760f92509c1.bitwarden.com -carLicense: SK3MAQ -departmentNumber: 8923 -employeeType: Employee -homePhone: +1 206 408-4204 -initials: D. M. -mobile: +1 206 861-7366 -pager: +1 206 747-7703 -roomNumber: 9411 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Afton Tanner,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Afton Tanner -sn: Tanner -description: This is Afton Tanner's description -facsimileTelephoneNumber: +1 213 864-8949 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 195-9197 -title: Chief Human Resources Writer -userPassword: Password1 -uid: TannerA -givenName: Afton -mail: TannerA@dea0182c9b1748ab8a8a0767e4b98659.bitwarden.com -carLicense: 0L4FI1 -departmentNumber: 6667 -employeeType: Contract -homePhone: +1 213 525-1554 -initials: A. T. -mobile: +1 213 787-1852 -pager: +1 213 712-9375 -roomNumber: 8067 -manager: cn=Petri Soreanu,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sherwyn Dorr -sn: Dorr -description: This is Sherwyn Dorr's description -facsimileTelephoneNumber: +1 804 895-6790 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 548-4333 -title: Associate Human Resources Warrior -userPassword: Password1 -uid: DorrS -givenName: Sherwyn -mail: DorrS@324b0826345f41f396413f010ceddf84.bitwarden.com -carLicense: D9Y93V -departmentNumber: 2011 -employeeType: Contract -homePhone: +1 804 779-2731 -initials: S. D. -mobile: +1 804 354-4846 -pager: +1 804 103-8402 -roomNumber: 9859 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nananne Sheffey -sn: Sheffey -description: This is Nananne Sheffey's description -facsimileTelephoneNumber: +1 213 989-6313 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 213 863-7880 -title: Supreme Janitorial Evangelist -userPassword: Password1 -uid: SheffeyN -givenName: Nananne -mail: SheffeyN@b699e66369ae440b80fffe24208900a7.bitwarden.com -carLicense: E3YMTM -departmentNumber: 1952 -employeeType: Normal -homePhone: +1 213 392-9181 -initials: N. S. -mobile: +1 213 330-2828 -pager: +1 213 839-5254 -roomNumber: 9062 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=JooEuin Peters,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JooEuin Peters -sn: Peters -description: This is JooEuin Peters's description -facsimileTelephoneNumber: +1 408 800-3659 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 408 833-4598 -title: Chief Human Resources Visionary -userPassword: Password1 -uid: PetersJ -givenName: JooEuin -mail: PetersJ@b798af896e7f46128e34697b90918aeb.bitwarden.com -carLicense: MO1K61 -departmentNumber: 3122 -employeeType: Contract -homePhone: +1 408 347-4362 -initials: J. P. -mobile: +1 408 231-1712 -pager: +1 408 900-4788 -roomNumber: 8257 -manager: cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Jordan Normandin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jordan Normandin -sn: Normandin -description: This is Jordan Normandin's description -facsimileTelephoneNumber: +1 206 757-7275 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 706-9573 -title: Junior Administrative Punk -userPassword: Password1 -uid: NormandJ -givenName: Jordan -mail: NormandJ@5888a61aa6564f429dd2584910d49491.bitwarden.com -carLicense: BOL3CN -departmentNumber: 5126 -employeeType: Normal -homePhone: +1 206 650-8496 -initials: J. N. -mobile: +1 206 637-1776 -pager: +1 206 434-2377 -roomNumber: 9341 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Phyllys Glasa -sn: Glasa -description: This is Phyllys Glasa's description -facsimileTelephoneNumber: +1 510 966-7876 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 510 989-9544 -title: Chief Product Testing Punk -userPassword: Password1 -uid: GlasaP -givenName: Phyllys -mail: GlasaP@4504d7b5d7bb4c7c81665aefd8680fbc.bitwarden.com -carLicense: ONOCPS -departmentNumber: 8162 -employeeType: Contract -homePhone: +1 510 178-6526 -initials: P. G. -mobile: +1 510 438-5245 -pager: +1 510 608-1349 -roomNumber: 8888 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gaye Tjia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Brynna Swanston,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brynna Swanston -sn: Swanston -description: This is Brynna Swanston's description -facsimileTelephoneNumber: +1 408 590-2295 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 933-8415 -title: Supreme Payroll Grunt -userPassword: Password1 -uid: SwanstoB -givenName: Brynna -mail: SwanstoB@273b97d9d3ef49d78a58814ba63e226c.bitwarden.com -carLicense: SK3EKQ -departmentNumber: 1604 -employeeType: Normal -homePhone: +1 408 107-9722 -initials: B. S. -mobile: +1 408 774-4483 -pager: +1 408 677-5289 -roomNumber: 8751 -manager: cn=Savina Wefers,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anneliese Bellosa -sn: Bellosa -description: This is Anneliese Bellosa's description -facsimileTelephoneNumber: +1 206 957-5261 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 524-1512 -title: Junior Product Development Manager -userPassword: Password1 -uid: BellosaA -givenName: Anneliese -mail: BellosaA@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com -carLicense: QBSLAW -departmentNumber: 1458 -employeeType: Normal -homePhone: +1 206 576-2973 -initials: A. B. -mobile: +1 206 453-4726 -pager: +1 206 788-1186 -roomNumber: 9717 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Saumitra Svo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saumitra Svo -sn: Svo -description: This is Saumitra Svo's description -facsimileTelephoneNumber: +1 408 751-7923 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 784-1036 -title: Associate Product Development Madonna -userPassword: Password1 -uid: SvoS -givenName: Saumitra -mail: SvoS@1bf120076f9247a7ab75ce12810b0f67.bitwarden.com -carLicense: KFCC19 -departmentNumber: 8979 -employeeType: Contract -homePhone: +1 408 533-5222 -initials: S. S. -mobile: +1 408 934-7800 -pager: +1 408 747-6436 -roomNumber: 9267 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Modestia Hersee,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Modestia Hersee -sn: Hersee -description: This is Modestia Hersee's description -facsimileTelephoneNumber: +1 213 894-2871 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 213 305-6191 -title: Master Administrative Assistant -userPassword: Password1 -uid: HerseeM -givenName: Modestia -mail: HerseeM@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com -carLicense: FX67XJ -departmentNumber: 8975 -employeeType: Normal -homePhone: +1 213 348-5366 -initials: M. H. -mobile: +1 213 587-3226 -pager: +1 213 198-4196 -roomNumber: 8760 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Gretna Ergle,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gretna Ergle -sn: Ergle -description: This is Gretna Ergle's description -facsimileTelephoneNumber: +1 408 753-3261 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 925-5296 -title: Supreme Product Development Admin -userPassword: Password1 -uid: ErgleG -givenName: Gretna -mail: ErgleG@71d3829da9684452bc0895ff673e8847.bitwarden.com -carLicense: 4AROEM -departmentNumber: 4423 -employeeType: Employee -homePhone: +1 408 476-3109 -initials: G. E. -mobile: +1 408 436-1564 -pager: +1 408 272-5131 -roomNumber: 8564 -manager: cn=Cecile Evans,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gary Denmark,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gary Denmark -sn: Denmark -description: This is Gary Denmark's description -facsimileTelephoneNumber: +1 206 571-7237 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 836-4217 -title: Master Payroll Grunt -userPassword: Password1 -uid: DenmarkG -givenName: Gary -mail: DenmarkG@07b1787368a34e789ce994f0c32f4345.bitwarden.com -carLicense: ONKMWO -departmentNumber: 5740 -employeeType: Normal -homePhone: +1 206 523-1206 -initials: G. D. -mobile: +1 206 545-9727 -pager: +1 206 474-3479 -roomNumber: 8246 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Fei Isert,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fei Isert -sn: Isert -description: This is Fei Isert's description -facsimileTelephoneNumber: +1 408 459-7017 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 408 362-7132 -title: Master Janitorial Czar -userPassword: Password1 -uid: IsertF -givenName: Fei -mail: IsertF@9e756b675bb74e34850e55cc8a973979.bitwarden.com -carLicense: HWRU16 -departmentNumber: 4248 -employeeType: Normal -homePhone: +1 408 513-9563 -initials: F. I. -mobile: +1 408 517-3916 -pager: +1 408 647-3618 -roomNumber: 9707 -manager: cn=Simulation Beswick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Babbette Einarsson -sn: Einarsson -description: This is Babbette Einarsson's description -facsimileTelephoneNumber: +1 206 811-9359 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 206 705-7702 -title: Supreme Product Testing Janitor -userPassword: Password1 -uid: EinarssB -givenName: Babbette -mail: EinarssB@7ce0aeed71954a9186228a48b133b9f4.bitwarden.com -carLicense: DA2A5D -departmentNumber: 3504 -employeeType: Normal -homePhone: +1 206 228-4374 -initials: B. E. -mobile: +1 206 342-4999 -pager: +1 206 932-3959 -roomNumber: 9123 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nomi Deatrick -sn: Deatrick -description: This is Nomi Deatrick's description -facsimileTelephoneNumber: +1 408 685-2105 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 213-9662 -title: Junior Human Resources Technician -userPassword: Password1 -uid: DeatricN -givenName: Nomi -mail: DeatricN@d9c35c3dbb1b4cc08294fcf741816060.bitwarden.com -carLicense: APCTHE -departmentNumber: 1604 -employeeType: Contract -homePhone: +1 408 350-7218 -initials: N. D. -mobile: +1 408 736-4903 -pager: +1 408 646-8841 -roomNumber: 8346 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hiroshi Amouzgar -sn: Amouzgar -description: This is Hiroshi Amouzgar's description -facsimileTelephoneNumber: +1 510 981-1010 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 294-9925 -title: Chief Peons Dictator -userPassword: Password1 -uid: AmouzgaH -givenName: Hiroshi -mail: AmouzgaH@c0bb112b79244d4d83013bcf4b7051b1.bitwarden.com -carLicense: JR7AAN -departmentNumber: 6553 -employeeType: Normal -homePhone: +1 510 454-3327 -initials: H. A. -mobile: +1 510 860-3310 -pager: +1 510 994-1801 -roomNumber: 8086 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernadine Mcilroy -sn: Mcilroy -description: This is Bernadine Mcilroy's description -facsimileTelephoneNumber: +1 408 151-8950 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 407-5855 -title: Junior Janitorial Vice President -userPassword: Password1 -uid: McilroyB -givenName: Bernadine -mail: McilroyB@de96a17ce06e4487ba5f98c80195f121.bitwarden.com -carLicense: 4H1VBJ -departmentNumber: 7871 -employeeType: Employee -homePhone: +1 408 988-5491 -initials: B. M. -mobile: +1 408 943-8002 -pager: +1 408 137-4716 -roomNumber: 8142 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Armand Bebber,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Armand Bebber -sn: Bebber -description: This is Armand Bebber's description -facsimileTelephoneNumber: +1 206 209-5977 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 206 614-6607 -title: Supreme Management Figurehead -userPassword: Password1 -uid: BebberA -givenName: Armand -mail: BebberA@b02e51a832a2451eb62f542aaa4c12e7.bitwarden.com -carLicense: S23AHP -departmentNumber: 2935 -employeeType: Employee -homePhone: +1 206 259-6594 -initials: A. B. -mobile: +1 206 411-9666 -pager: +1 206 813-3337 -roomNumber: 8696 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Virgina Kahnert,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Virgina Kahnert -sn: Kahnert -description: This is Virgina Kahnert's description -facsimileTelephoneNumber: +1 206 871-7040 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 302-8452 -title: Associate Management Fellow -userPassword: Password1 -uid: KahnertV -givenName: Virgina -mail: KahnertV@6b4a8c4f12054500898abbcc69fbe20c.bitwarden.com -carLicense: K7IGJS -departmentNumber: 1866 -employeeType: Employee -homePhone: +1 206 637-3580 -initials: V. K. -mobile: +1 206 878-7467 -pager: +1 206 261-7928 -roomNumber: 9850 -manager: cn=Fayette Kos,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Antoni Vickers,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antoni Vickers -sn: Vickers -description: This is Antoni Vickers's description -facsimileTelephoneNumber: +1 415 799-6951 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 934-2073 -title: Master Management Dictator -userPassword: Password1 -uid: VickersA -givenName: Antoni -mail: VickersA@a33324bfbeba45c9aed68650670aad46.bitwarden.com -carLicense: HM0VRR -departmentNumber: 7788 -employeeType: Normal -homePhone: +1 415 167-9812 -initials: A. V. -mobile: +1 415 857-2186 -pager: +1 415 299-2090 -roomNumber: 8529 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dan Telos,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dan Telos -sn: Telos -description: This is Dan Telos's description -facsimileTelephoneNumber: +1 213 851-8810 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 213 520-6197 -title: Associate Payroll Assistant -userPassword: Password1 -uid: TelosD -givenName: Dan -mail: TelosD@6a38182664754d55b0af48acc18ccf15.bitwarden.com -carLicense: 1D5VH7 -departmentNumber: 2049 -employeeType: Normal -homePhone: +1 213 679-7101 -initials: D. T. -mobile: +1 213 827-1979 -pager: +1 213 648-7410 -roomNumber: 8870 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Georgianne Boecke -sn: Boecke -description: This is Georgianne Boecke's description -facsimileTelephoneNumber: +1 818 869-6866 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 818 405-8512 -title: Supreme Human Resources Developer -userPassword: Password1 -uid: BoeckeG -givenName: Georgianne -mail: BoeckeG@0d39953bed12477b8b2344944beb0598.bitwarden.com -carLicense: 36M9S8 -departmentNumber: 3092 -employeeType: Contract -homePhone: +1 818 932-1402 -initials: G. B. -mobile: +1 818 814-9484 -pager: +1 818 925-7560 -roomNumber: 8089 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rory Chan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rory Chan -sn: Chan -description: This is Rory Chan's description -facsimileTelephoneNumber: +1 408 125-5772 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 386-4569 -title: Chief Administrative Punk -userPassword: Password1 -uid: ChanR -givenName: Rory -mail: ChanR@eb68be01f6024473a2ca0fe1f0709934.bitwarden.com -carLicense: KXGSSQ -departmentNumber: 8220 -employeeType: Normal -homePhone: +1 408 195-7837 -initials: R. C. -mobile: +1 408 633-6999 -pager: +1 408 479-3733 -roomNumber: 9855 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juergen Maisonneuve -sn: Maisonneuve -description: This is Juergen Maisonneuve's description -facsimileTelephoneNumber: +1 818 803-5435 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 818 672-8350 -title: Associate Payroll Punk -userPassword: Password1 -uid: MaisonnJ -givenName: Juergen -mail: MaisonnJ@ce606f959aaf4b37a3890f8fbd9f2472.bitwarden.com -carLicense: MRKU2N -departmentNumber: 3891 -employeeType: Contract -homePhone: +1 818 531-9462 -initials: J. M. -mobile: +1 818 722-2813 -pager: +1 818 225-2107 -roomNumber: 8114 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gertrude Senyshyn,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gertrude Senyshyn -sn: Senyshyn -description: This is Gertrude Senyshyn's description -facsimileTelephoneNumber: +1 510 702-4891 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 362-5342 -title: Master Management Figurehead -userPassword: Password1 -uid: SenyshyG -givenName: Gertrude -mail: SenyshyG@566e3f43810e4586a805d84cd5a87397.bitwarden.com -carLicense: WAVT20 -departmentNumber: 2510 -employeeType: Contract -homePhone: +1 510 543-1839 -initials: G. S. -mobile: +1 510 369-8054 -pager: +1 510 717-9719 -roomNumber: 8361 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Missagh Yeh,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Missagh Yeh -sn: Yeh -description: This is Missagh Yeh's description -facsimileTelephoneNumber: +1 408 967-5635 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 408 605-1564 -title: Associate Product Development Pinhead -userPassword: Password1 -uid: YehM -givenName: Missagh -mail: YehM@5c913aa699ee49ff8e754a7b748977ab.bitwarden.com -carLicense: D0GDAN -departmentNumber: 5783 -employeeType: Employee -homePhone: +1 408 856-4817 -initials: M. Y. -mobile: +1 408 614-2666 -pager: +1 408 701-8906 -roomNumber: 8100 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minnie MacDermaid -sn: MacDermaid -description: This is Minnie MacDermaid's description -facsimileTelephoneNumber: +1 415 548-8945 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 218-7290 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: MacDermM -givenName: Minnie -mail: MacDermM@02ce75bcb8d0491f899a2b936126cb22.bitwarden.com -carLicense: YO3EWT -departmentNumber: 4904 -employeeType: Contract -homePhone: +1 415 978-1739 -initials: M. M. -mobile: +1 415 940-6802 -pager: +1 415 461-9288 -roomNumber: 8932 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristiane Lizzi -sn: Lizzi -description: This is Cristiane Lizzi's description -facsimileTelephoneNumber: +1 408 966-3582 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 393-9635 -title: Supreme Janitorial Pinhead -userPassword: Password1 -uid: LizziC -givenName: Cristiane -mail: LizziC@9b989160bc6d49579fbfc8f1e85ccc6c.bitwarden.com -carLicense: JANEDE -departmentNumber: 8907 -employeeType: Normal -homePhone: +1 408 852-2775 -initials: C. L. -mobile: +1 408 119-2811 -pager: +1 408 298-2113 -roomNumber: 9096 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Morganica Ashdown,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morganica Ashdown -sn: Ashdown -description: This is Morganica Ashdown's description -facsimileTelephoneNumber: +1 213 184-6170 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 115-3701 -title: Supreme Management Sales Rep -userPassword: Password1 -uid: AshdownM -givenName: Morganica -mail: AshdownM@44d25c0f3b3b4712b7ef7271475275d8.bitwarden.com -carLicense: QFX5GG -departmentNumber: 7651 -employeeType: Contract -homePhone: +1 213 692-4437 -initials: M. A. -mobile: +1 213 848-2138 -pager: +1 213 122-9711 -roomNumber: 9683 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Joey Moore,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joey Moore -sn: Moore -description: This is Joey Moore's description -facsimileTelephoneNumber: +1 408 723-7302 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 408 617-2024 -title: Associate Peons Dictator -userPassword: Password1 -uid: MooreJ -givenName: Joey -mail: MooreJ@f4a421d551d64acc80985f5e163c5415.bitwarden.com -carLicense: YGVSAX -departmentNumber: 3417 -employeeType: Employee -homePhone: +1 408 558-4391 -initials: J. M. -mobile: +1 408 539-6272 -pager: +1 408 482-3951 -roomNumber: 9236 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rheta Knobloch,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rheta Knobloch -sn: Knobloch -description: This is Rheta Knobloch's description -facsimileTelephoneNumber: +1 213 692-5006 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 213 824-2524 -title: Associate Peons Mascot -userPassword: Password1 -uid: KnoblocR -givenName: Rheta -mail: KnoblocR@b3d11e6744594feeb414ee01bf2eac98.bitwarden.com -carLicense: CXNGY9 -departmentNumber: 4653 -employeeType: Normal -homePhone: +1 213 523-9384 -initials: R. K. -mobile: +1 213 721-3913 -pager: +1 213 595-9092 -roomNumber: 9592 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tesfagaber Kahhale -sn: Kahhale -description: This is Tesfagaber Kahhale's description -facsimileTelephoneNumber: +1 213 950-4475 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 170-4178 -title: Master Product Development Artist -userPassword: Password1 -uid: KahhaleT -givenName: Tesfagaber -mail: KahhaleT@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com -carLicense: CN7LPX -departmentNumber: 5535 -employeeType: Normal -homePhone: +1 213 713-7687 -initials: T. K. -mobile: +1 213 313-5764 -pager: +1 213 621-8581 -roomNumber: 9113 -manager: cn=Fleurette Neyman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=Far Shupe,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Far Shupe -sn: Shupe -description: This is Far Shupe's description -facsimileTelephoneNumber: +1 510 893-4156 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 510 784-6331 -title: Master Human Resources Technician -userPassword: Password1 -uid: ShupeF -givenName: Far -mail: ShupeF@0f19fa3cc3984923830c48638164b69b.bitwarden.com -carLicense: XX2SKE -departmentNumber: 9232 -employeeType: Employee -homePhone: +1 510 880-2398 -initials: F. S. -mobile: +1 510 713-2661 -pager: +1 510 371-3356 -roomNumber: 9134 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Noni Pauley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noni Pauley -sn: Pauley -description: This is Noni Pauley's description -facsimileTelephoneNumber: +1 213 619-9593 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 213 214-1994 -title: Associate Human Resources Engineer -userPassword: Password1 -uid: PauleyN -givenName: Noni -mail: PauleyN@af48941e4bc546738283cbae39bf8e38.bitwarden.com -carLicense: 1BFXLL -departmentNumber: 3722 -employeeType: Employee -homePhone: +1 213 617-2585 -initials: N. P. -mobile: +1 213 706-1094 -pager: +1 213 621-5502 -roomNumber: 8870 -manager: cn=Said Fran,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Hera Eike,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hera Eike -sn: Eike -description: This is Hera Eike's description -facsimileTelephoneNumber: +1 408 618-9431 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 925-5872 -title: Master Product Testing Manager -userPassword: Password1 -uid: EikeH -givenName: Hera -mail: EikeH@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com -carLicense: WT1KM4 -departmentNumber: 9382 -employeeType: Employee -homePhone: +1 408 810-9446 -initials: H. E. -mobile: +1 408 257-1095 -pager: +1 408 134-4116 -roomNumber: 9410 -manager: cn=Karil Mielke,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cami Glew,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melisa Peacemaker,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisa Peacemaker -sn: Peacemaker -description: This is Melisa Peacemaker's description -facsimileTelephoneNumber: +1 213 816-3924 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 646-7661 -title: Chief Management Director -userPassword: Password1 -uid: PeacemaM -givenName: Melisa -mail: PeacemaM@7ae74f35c1ca49719017f2b0cacc9b3c.bitwarden.com -carLicense: PSWROI -departmentNumber: 5061 -employeeType: Employee -homePhone: +1 213 503-3780 -initials: M. P. -mobile: +1 213 581-2996 -pager: +1 213 367-6668 -roomNumber: 8635 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Wylo Woodley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wylo Woodley -sn: Woodley -description: This is Wylo Woodley's description -facsimileTelephoneNumber: +1 213 795-7314 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 213 930-3459 -title: Junior Management Pinhead -userPassword: Password1 -uid: WoodleyW -givenName: Wylo -mail: WoodleyW@c870d166444a452b9465ab41e64ba24a.bitwarden.com -carLicense: 150LLG -departmentNumber: 7700 -employeeType: Employee -homePhone: +1 213 577-5901 -initials: W. W. -mobile: +1 213 429-1884 -pager: +1 213 194-3028 -roomNumber: 8715 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Collette Quevillon,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Collette Quevillon -sn: Quevillon -description: This is Collette Quevillon's description -facsimileTelephoneNumber: +1 206 469-5231 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 599-4525 -title: Chief Human Resources Punk -userPassword: Password1 -uid: QuevillC -givenName: Collette -mail: QuevillC@d8ade951537b40409f7045af7b027387.bitwarden.com -carLicense: J6GM77 -departmentNumber: 1623 -employeeType: Contract -homePhone: +1 206 127-7321 -initials: C. Q. -mobile: +1 206 704-9011 -pager: +1 206 268-3798 -roomNumber: 9628 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shivdarsan Sunderland -sn: Sunderland -description: This is Shivdarsan Sunderland's description -facsimileTelephoneNumber: +1 804 970-3502 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 320-8571 -title: Associate Payroll Engineer -userPassword: Password1 -uid: SunderlS -givenName: Shivdarsan -mail: SunderlS@fc6e03b5bcc94a1489d08dba2fb3849a.bitwarden.com -carLicense: 2VTRCJ -departmentNumber: 8435 -employeeType: Employee -homePhone: +1 804 731-6732 -initials: S. S. -mobile: +1 804 777-7822 -pager: +1 804 536-5407 -roomNumber: 9303 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dayna Kosasih -sn: Kosasih -description: This is Dayna Kosasih's description -facsimileTelephoneNumber: +1 408 682-2169 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 408 766-4289 -title: Supreme Product Testing Czar -userPassword: Password1 -uid: KosasihD -givenName: Dayna -mail: KosasihD@93e4f4c832eb40f5b256fbdf877ac624.bitwarden.com -carLicense: QMYNC8 -departmentNumber: 6449 -employeeType: Employee -homePhone: +1 408 742-6746 -initials: D. K. -mobile: +1 408 662-5047 -pager: +1 408 703-2808 -roomNumber: 8127 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Renelle Ducic,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Renelle Ducic -sn: Ducic -description: This is Renelle Ducic's description -facsimileTelephoneNumber: +1 213 564-3778 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 213 943-6454 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: DucicR -givenName: Renelle -mail: DucicR@c89844059bb741f7bb88e4d7fb7f5f87.bitwarden.com -carLicense: OL1UV0 -departmentNumber: 1696 -employeeType: Normal -homePhone: +1 213 431-1351 -initials: R. D. -mobile: +1 213 522-6889 -pager: +1 213 628-6271 -roomNumber: 9544 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helenka Radovnikovic -sn: Radovnikovic -description: This is Helenka Radovnikovic's description -facsimileTelephoneNumber: +1 510 600-7338 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 884-1136 -title: Supreme Payroll Developer -userPassword: Password1 -uid: RadovniH -givenName: Helenka -mail: RadovniH@2d6d6884b9df4e34bfb750fc0fb4ded8.bitwarden.com -carLicense: PP8XFA -departmentNumber: 1611 -employeeType: Employee -homePhone: +1 510 571-4175 -initials: H. R. -mobile: +1 510 569-4494 -pager: +1 510 694-2988 -roomNumber: 9238 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leena Reijerkerk -sn: Reijerkerk -description: This is Leena Reijerkerk's description -facsimileTelephoneNumber: +1 415 157-5227 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 415 107-2241 -title: Master Administrative Warrior -userPassword: Password1 -uid: ReijerkL -givenName: Leena -mail: ReijerkL@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com -carLicense: 3PKCQE -departmentNumber: 1345 -employeeType: Contract -homePhone: +1 415 751-6706 -initials: L. R. -mobile: +1 415 871-6854 -pager: +1 415 806-9566 -roomNumber: 9142 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nicolina Eu,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruperta Guilford -sn: Guilford -description: This is Ruperta Guilford's description -facsimileTelephoneNumber: +1 206 611-6801 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 206 260-8865 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: GuilforR -givenName: Ruperta -mail: GuilforR@e92792a71a1b4fd28678d03900079ed2.bitwarden.com -carLicense: PS6ITO -departmentNumber: 1148 -employeeType: Normal -homePhone: +1 206 333-3953 -initials: R. G. -mobile: +1 206 764-7779 -pager: +1 206 641-5809 -roomNumber: 9578 -manager: cn=Souphalack Delong,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Theresa Dolson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ailis Gabe,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailis Gabe -sn: Gabe -description: This is Ailis Gabe's description -facsimileTelephoneNumber: +1 804 330-2392 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 804 351-8465 -title: Junior Human Resources Manager -userPassword: Password1 -uid: GabeA -givenName: Ailis -mail: GabeA@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com -carLicense: 4R8M8L -departmentNumber: 3414 -employeeType: Normal -homePhone: +1 804 732-4164 -initials: A. G. -mobile: +1 804 132-1301 -pager: +1 804 641-5785 -roomNumber: 9507 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Selena Sanoy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Selena Sanoy -sn: Sanoy -description: This is Selena Sanoy's description -facsimileTelephoneNumber: +1 408 542-5938 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 408 316-8692 -title: Chief Human Resources Director -userPassword: Password1 -uid: SanoyS -givenName: Selena -mail: SanoyS@05f7379ac7b945a2a2343b19ee63fd8a.bitwarden.com -carLicense: CVIFWK -departmentNumber: 2175 -employeeType: Employee -homePhone: +1 408 876-3878 -initials: S. S. -mobile: +1 408 742-5797 -pager: +1 408 234-4634 -roomNumber: 8227 -manager: cn=Indy Calder,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Syl Hughes,ou=Management,dc=bitwarden, dc=com - -dn: cn=Electra Hassold,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Electra Hassold -sn: Hassold -description: This is Electra Hassold's description -facsimileTelephoneNumber: +1 804 192-8843 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 804 326-2470 -title: Chief Administrative Figurehead -userPassword: Password1 -uid: HassoldE -givenName: Electra -mail: HassoldE@159b400ec7df422e9066036fd18c450c.bitwarden.com -carLicense: ACCSO0 -departmentNumber: 9604 -employeeType: Normal -homePhone: +1 804 291-2710 -initials: E. H. -mobile: +1 804 947-9645 -pager: +1 804 117-6769 -roomNumber: 9853 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Terry Johnston,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terry Johnston -sn: Johnston -description: This is Terry Johnston's description -facsimileTelephoneNumber: +1 415 981-6669 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 615-9422 -title: Master Janitorial President -userPassword: Password1 -uid: JohnstoT -givenName: Terry -mail: JohnstoT@d37e812441464f08ac2750e113db6273.bitwarden.com -carLicense: L495NI -departmentNumber: 7389 -employeeType: Contract -homePhone: +1 415 933-1504 -initials: T. J. -mobile: +1 415 657-4304 -pager: +1 415 144-2138 -roomNumber: 9828 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Franny Towill,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franny Towill -sn: Towill -description: This is Franny Towill's description -facsimileTelephoneNumber: +1 510 718-4719 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 727-5575 -title: Supreme Product Development Sales Rep -userPassword: Password1 -uid: TowillF -givenName: Franny -mail: TowillF@08eacc9f081b46aa9b5cc2682b8df342.bitwarden.com -carLicense: 0SJI4F -departmentNumber: 1109 -employeeType: Contract -homePhone: +1 510 258-1932 -initials: F. T. -mobile: +1 510 164-7383 -pager: +1 510 521-2407 -roomNumber: 9598 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacqueline Godowsky -sn: Godowsky -description: This is Jacqueline Godowsky's description -facsimileTelephoneNumber: +1 804 688-2905 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 804 511-5618 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: GodowskJ -givenName: Jacqueline -mail: GodowskJ@d5d81ed9dfd74923bfc76f6eb5eeb481.bitwarden.com -carLicense: RJ2M68 -departmentNumber: 8221 -employeeType: Employee -homePhone: +1 804 280-5456 -initials: J. G. -mobile: +1 804 644-9843 -pager: +1 804 915-6536 -roomNumber: 9541 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guanyun Satkunaseelan -sn: Satkunaseelan -description: This is Guanyun Satkunaseelan's description -facsimileTelephoneNumber: +1 818 543-5223 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 818 592-8623 -title: Associate Janitorial Vice President -userPassword: Password1 -uid: SatkunaG -givenName: Guanyun -mail: SatkunaG@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com -carLicense: 05PH02 -departmentNumber: 7593 -employeeType: Contract -homePhone: +1 818 799-9546 -initials: G. S. -mobile: +1 818 268-9235 -pager: +1 818 862-5642 -roomNumber: 8911 -manager: cn=Shaun Fares,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Sarena Semler,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Duquette Pratt,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Duquette Pratt -sn: Pratt -description: This is Duquette Pratt's description -facsimileTelephoneNumber: +1 415 728-6454 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 415 583-1043 -title: Junior Payroll Czar -userPassword: Password1 -uid: PrattD -givenName: Duquette -mail: PrattD@95581eb6a8bb49808363d11bfe34de80.bitwarden.com -carLicense: OJLBMK -departmentNumber: 2501 -employeeType: Contract -homePhone: +1 415 785-8515 -initials: D. P. -mobile: +1 415 444-3453 -pager: +1 415 472-5025 -roomNumber: 8859 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Helma Bento,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsy Aderhold -sn: Aderhold -description: This is Chelsy Aderhold's description -facsimileTelephoneNumber: +1 206 923-5567 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 206 307-4926 -title: Master Human Resources Architect -userPassword: Password1 -uid: AderholC -givenName: Chelsy -mail: AderholC@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com -carLicense: JSDNKQ -departmentNumber: 2842 -employeeType: Normal -homePhone: +1 206 927-9074 -initials: C. A. -mobile: +1 206 183-5440 -pager: +1 206 384-5056 -roomNumber: 9643 -manager: cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Alb Hussein,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alb Hussein -sn: Hussein -description: This is Alb Hussein's description -facsimileTelephoneNumber: +1 213 975-2279 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 213 944-2785 -title: Master Administrative Developer -userPassword: Password1 -uid: HusseinA -givenName: Alb -mail: HusseinA@cd959caf747140188faf96b58d108003.bitwarden.com -carLicense: GL1EPD -departmentNumber: 8366 -employeeType: Employee -homePhone: +1 213 821-8761 -initials: A. H. -mobile: +1 213 827-8297 -pager: +1 213 466-1727 -roomNumber: 9821 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sam Ference,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sam Ference -sn: Ference -description: This is Sam Ference's description -facsimileTelephoneNumber: +1 206 713-1413 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 870-3110 -title: Junior Product Testing Czar -userPassword: Password1 -uid: FerenceS -givenName: Sam -mail: FerenceS@80b32d7e2c334eb6876146c942d4c564.bitwarden.com -carLicense: 0DDCNG -departmentNumber: 6467 -employeeType: Employee -homePhone: +1 206 173-1778 -initials: S. F. -mobile: +1 206 592-9983 -pager: +1 206 730-7159 -roomNumber: 8312 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yukinobu Riebl,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yukinobu Riebl -sn: Riebl -description: This is Yukinobu Riebl's description -facsimileTelephoneNumber: +1 206 422-4729 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 206 456-6259 -title: Associate Peons Architect -userPassword: Password1 -uid: RieblY -givenName: Yukinobu -mail: RieblY@72030161dcd24217be14766e527d14fa.bitwarden.com -carLicense: 8BFJTW -departmentNumber: 9691 -employeeType: Normal -homePhone: +1 206 683-8403 -initials: Y. R. -mobile: +1 206 397-1368 -pager: +1 206 164-1446 -roomNumber: 9933 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Tarus Hillard,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tarus Hillard -sn: Hillard -description: This is Tarus Hillard's description -facsimileTelephoneNumber: +1 213 976-9509 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 296-7765 -title: Associate Product Development Grunt -userPassword: Password1 -uid: HillardT -givenName: Tarus -mail: HillardT@a80cec7586b34ab8b14925cae24221e2.bitwarden.com -carLicense: AKY2V7 -departmentNumber: 1100 -employeeType: Contract -homePhone: +1 213 720-9338 -initials: T. H. -mobile: +1 213 617-5489 -pager: +1 213 426-8948 -roomNumber: 8390 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ramonda Lott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ramonda Lott -sn: Lott -description: This is Ramonda Lott's description -facsimileTelephoneNumber: +1 818 874-4783 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 233-5668 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: LottR -givenName: Ramonda -mail: LottR@9092ac0216724776b99f389469a93c29.bitwarden.com -carLicense: 1BKLFK -departmentNumber: 1844 -employeeType: Contract -homePhone: +1 818 766-4164 -initials: R. L. -mobile: +1 818 779-8456 -pager: +1 818 782-5813 -roomNumber: 8381 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jen EhningerCuervo -sn: EhningerCuervo -description: This is Jen EhningerCuervo's description -facsimileTelephoneNumber: +1 408 500-6848 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 387-8690 -title: Master Payroll Stooge -userPassword: Password1 -uid: EhningeJ -givenName: Jen -mail: EhningeJ@098e681e17464ddaaa4b5aa6ff614551.bitwarden.com -carLicense: 7RXTAD -departmentNumber: 4282 -employeeType: Normal -homePhone: +1 408 438-2805 -initials: J. E. -mobile: +1 408 545-9599 -pager: +1 408 829-1859 -roomNumber: 8866 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Anitra Arora,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anitra Arora -sn: Arora -description: This is Anitra Arora's description -facsimileTelephoneNumber: +1 408 185-2430 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 504-5927 -title: Chief Payroll Grunt -userPassword: Password1 -uid: AroraA -givenName: Anitra -mail: AroraA@f42de10624ae405d913d9b34565ffc09.bitwarden.com -carLicense: 8R8EI9 -departmentNumber: 3736 -employeeType: Normal -homePhone: +1 408 661-3156 -initials: A. A. -mobile: +1 408 236-9821 -pager: +1 408 400-5413 -roomNumber: 8564 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tessy McClelland,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Natalee Tousignant -sn: Tousignant -description: This is Natalee Tousignant's description -facsimileTelephoneNumber: +1 213 143-6903 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 213 736-8658 -title: Chief Product Testing Artist -userPassword: Password1 -uid: TousignN -givenName: Natalee -mail: TousignN@abb5d6aab45f41aea925c272cfd268d5.bitwarden.com -carLicense: FDV9SP -departmentNumber: 2013 -employeeType: Contract -homePhone: +1 213 127-8871 -initials: N. T. -mobile: +1 213 557-2862 -pager: +1 213 478-1324 -roomNumber: 9683 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sonja Tohama,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sonja Tohama -sn: Tohama -description: This is Sonja Tohama's description -facsimileTelephoneNumber: +1 510 391-6583 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 510 551-5781 -title: Chief Peons Punk -userPassword: Password1 -uid: TohamaS -givenName: Sonja -mail: TohamaS@c3ea2e07159b4059b3afc3ddc88034c1.bitwarden.com -carLicense: MIH0QJ -departmentNumber: 3383 -employeeType: Normal -homePhone: +1 510 200-1699 -initials: S. T. -mobile: +1 510 724-5384 -pager: +1 510 119-6793 -roomNumber: 8403 -manager: cn=Kiam Surreau,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Rycca Bloemker,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rycca Bloemker -sn: Bloemker -description: This is Rycca Bloemker's description -facsimileTelephoneNumber: +1 804 924-4920 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 804 911-5380 -title: Master Administrative Punk -userPassword: Password1 -uid: BloemkeR -givenName: Rycca -mail: BloemkeR@cdfacd88fafe4ba8970bb7d5170496d3.bitwarden.com -carLicense: OFJD7Q -departmentNumber: 7996 -employeeType: Employee -homePhone: +1 804 183-7531 -initials: R. B. -mobile: +1 804 708-3523 -pager: +1 804 395-2428 -roomNumber: 9792 -manager: cn=Carran Cramer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Joydeep Elledge,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joydeep Elledge -sn: Elledge -description: This is Joydeep Elledge's description -facsimileTelephoneNumber: +1 213 623-4013 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 996-1839 -title: Junior Peons Developer -userPassword: Password1 -uid: ElledgeJ -givenName: Joydeep -mail: ElledgeJ@5f4045bbd5c44c0b997bde75dafd864c.bitwarden.com -carLicense: 0X3CTF -departmentNumber: 1723 -employeeType: Contract -homePhone: +1 213 197-7251 -initials: J. E. -mobile: +1 213 648-2337 -pager: +1 213 898-5310 -roomNumber: 8479 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sorcha Umetsu -sn: Umetsu -description: This is Sorcha Umetsu's description -facsimileTelephoneNumber: +1 408 391-1446 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 866-1781 -title: Master Administrative Mascot -userPassword: Password1 -uid: UmetsuS -givenName: Sorcha -mail: UmetsuS@913917cd10c1410fb1c6287add8a017a.bitwarden.com -carLicense: C4C15Q -departmentNumber: 5898 -employeeType: Normal -homePhone: +1 408 787-6432 -initials: S. U. -mobile: +1 408 480-7468 -pager: +1 408 500-2334 -roomNumber: 9183 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Silvie Nevardauskis,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silvie Nevardauskis -sn: Nevardauskis -description: This is Silvie Nevardauskis's description -facsimileTelephoneNumber: +1 804 366-5701 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 593-8549 -title: Associate Management Warrior -userPassword: Password1 -uid: NevardaS -givenName: Silvie -mail: NevardaS@0f20bc491a46484db42d8b650f7e698d.bitwarden.com -carLicense: QFYTAE -departmentNumber: 2004 -employeeType: Contract -homePhone: +1 804 378-8464 -initials: S. N. -mobile: +1 804 169-5522 -pager: +1 804 314-8385 -roomNumber: 9724 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ilene Curnow,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ilene Curnow -sn: Curnow -description: This is Ilene Curnow's description -facsimileTelephoneNumber: +1 415 896-9863 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 725-1289 -title: Chief Product Development Assistant -userPassword: Password1 -uid: CurnowI -givenName: Ilene -mail: CurnowI@ec8a28f7df2f4b4a9a8f12cccd975869.bitwarden.com -carLicense: HS597A -departmentNumber: 7925 -employeeType: Employee -homePhone: +1 415 885-2489 -initials: I. C. -mobile: +1 415 475-4919 -pager: +1 415 111-5956 -roomNumber: 8704 -manager: cn=Prity Ruthart,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ailee Sudbey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailee Sudbey -sn: Sudbey -description: This is Ailee Sudbey's description -facsimileTelephoneNumber: +1 415 713-3992 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 415 873-2304 -title: Chief Management Visionary -userPassword: Password1 -uid: SudbeyA -givenName: Ailee -mail: SudbeyA@953969dd8e824fa6843e718cd3751626.bitwarden.com -carLicense: NEBUP2 -departmentNumber: 1089 -employeeType: Contract -homePhone: +1 415 440-5192 -initials: A. S. -mobile: +1 415 472-7229 -pager: +1 415 560-5901 -roomNumber: 9531 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Maarten Mejia,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maarten Mejia -sn: Mejia -description: This is Maarten Mejia's description -facsimileTelephoneNumber: +1 510 855-4724 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 510 910-7747 -title: Associate Administrative Fellow -userPassword: Password1 -uid: MejiaM -givenName: Maarten -mail: MejiaM@ba4cd38fdb404f248c82c6d86153d0e8.bitwarden.com -carLicense: 6GM6IH -departmentNumber: 7296 -employeeType: Contract -homePhone: +1 510 175-3249 -initials: M. M. -mobile: +1 510 359-8294 -pager: +1 510 982-4837 -roomNumber: 9510 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=PierreAndre Abbate,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PierreAndre Abbate -sn: Abbate -description: This is PierreAndre Abbate's description -facsimileTelephoneNumber: +1 818 351-5218 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 818 322-6375 -title: Master Peons Warrior -userPassword: Password1 -uid: AbbateP -givenName: PierreAndre -mail: AbbateP@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com -carLicense: CD1C7C -departmentNumber: 2577 -employeeType: Normal -homePhone: +1 818 471-8211 -initials: P. A. -mobile: +1 818 963-3859 -pager: +1 818 486-1600 -roomNumber: 9472 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kizzie Adey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kizzie Adey -sn: Adey -description: This is Kizzie Adey's description -facsimileTelephoneNumber: +1 408 625-9645 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 939-3688 -title: Supreme Product Development Visionary -userPassword: Password1 -uid: AdeyK -givenName: Kizzie -mail: AdeyK@aa04f1225a3142f7b6d7d981c171a9da.bitwarden.com -carLicense: 7NFN9X -departmentNumber: 2416 -employeeType: Contract -homePhone: +1 408 348-2212 -initials: K. A. -mobile: +1 408 769-4548 -pager: +1 408 192-5099 -roomNumber: 9716 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Carmel Vawter,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Krystn Skerlak,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Krystn Skerlak -sn: Skerlak -description: This is Krystn Skerlak's description -facsimileTelephoneNumber: +1 415 346-8191 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 415 552-4588 -title: Associate Administrative Stooge -userPassword: Password1 -uid: SkerlakK -givenName: Krystn -mail: SkerlakK@fc85f8e4436a4774ae1c7ec792457997.bitwarden.com -carLicense: FQ9QC9 -departmentNumber: 3153 -employeeType: Normal -homePhone: +1 415 536-6332 -initials: K. S. -mobile: +1 415 646-4998 -pager: +1 415 560-9523 -roomNumber: 9859 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bosiljka Braginetz -sn: Braginetz -description: This is Bosiljka Braginetz's description -facsimileTelephoneNumber: +1 206 981-5442 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 206 656-8339 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: BragineB -givenName: Bosiljka -mail: BragineB@2674a7c4cfa741269519e72fdf975394.bitwarden.com -carLicense: HD5G4O -departmentNumber: 9267 -employeeType: Contract -homePhone: +1 206 176-4766 -initials: B. B. -mobile: +1 206 377-8145 -pager: +1 206 415-1184 -roomNumber: 8068 -manager: cn=Basia Smyth,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kailey Southon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kailey Southon -sn: Southon -description: This is Kailey Southon's description -facsimileTelephoneNumber: +1 804 696-6484 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 804 787-3353 -title: Associate Administrative Fellow -userPassword: Password1 -uid: SouthonK -givenName: Kailey -mail: SouthonK@1bc81f639d7b4a75a6776b919ea7ed35.bitwarden.com -carLicense: YS6IB7 -departmentNumber: 8386 -employeeType: Contract -homePhone: +1 804 110-6353 -initials: K. S. -mobile: +1 804 534-8776 -pager: +1 804 523-2031 -roomNumber: 9607 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=PohSoon Corpening,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PohSoon Corpening -sn: Corpening -description: This is PohSoon Corpening's description -facsimileTelephoneNumber: +1 415 901-1893 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 415 839-5239 -title: Chief Payroll Sales Rep -userPassword: Password1 -uid: CorpeniP -givenName: PohSoon -mail: CorpeniP@cb8c25a6f9d34eadb38ab3240d4f1b15.bitwarden.com -carLicense: 811R3K -departmentNumber: 8742 -employeeType: Normal -homePhone: +1 415 525-6635 -initials: P. C. -mobile: +1 415 748-1537 -pager: +1 415 401-3425 -roomNumber: 9982 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Cissy Systest,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cissy Systest -sn: Systest -description: This is Cissy Systest's description -facsimileTelephoneNumber: +1 510 658-4926 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 413-1863 -title: Supreme Management Sales Rep -userPassword: Password1 -uid: SystestC -givenName: Cissy -mail: SystestC@96705dd7d66249d08ee808bb87068456.bitwarden.com -carLicense: 9WGMNB -departmentNumber: 6675 -employeeType: Contract -homePhone: +1 510 339-9140 -initials: C. S. -mobile: +1 510 258-9005 -pager: +1 510 880-7544 -roomNumber: 8590 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hot Hisaki,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ailee Garry,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ailee Garry -sn: Garry -description: This is Ailee Garry's description -facsimileTelephoneNumber: +1 804 545-4382 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 804 923-7104 -title: Master Human Resources Consultant -userPassword: Password1 -uid: GarryA -givenName: Ailee -mail: GarryA@e8711dcc34d6494b9af82b382ecdea7d.bitwarden.com -carLicense: H3IRX7 -departmentNumber: 1123 -employeeType: Employee -homePhone: +1 804 681-6864 -initials: A. G. -mobile: +1 804 114-1315 -pager: +1 804 690-2557 -roomNumber: 8320 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Justino Willhoff,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Juliet Goyal,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juliet Goyal -sn: Goyal -description: This is Juliet Goyal's description -facsimileTelephoneNumber: +1 804 488-5293 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 804 597-2509 -title: Supreme Product Testing Dictator -userPassword: Password1 -uid: GoyalJ -givenName: Juliet -mail: GoyalJ@85b2024b914940b3b4bc6a5df6e6c822.bitwarden.com -carLicense: Y3WPFG -departmentNumber: 6720 -employeeType: Contract -homePhone: +1 804 610-9856 -initials: J. G. -mobile: +1 804 305-4209 -pager: +1 804 514-8923 -roomNumber: 8731 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gleda Carldata,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gleda Carldata -sn: Carldata -description: This is Gleda Carldata's description -facsimileTelephoneNumber: +1 818 817-3085 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 818 666-6046 -title: Junior Payroll Admin -userPassword: Password1 -uid: CarldatG -givenName: Gleda -mail: CarldatG@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com -carLicense: V5KGYO -departmentNumber: 7718 -employeeType: Contract -homePhone: +1 818 677-4852 -initials: G. C. -mobile: +1 818 603-5746 -pager: +1 818 835-6436 -roomNumber: 8544 -manager: cn=Neil Bestavros,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coila Daniells,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elane Latour,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elane Latour -sn: Latour -description: This is Elane Latour's description -facsimileTelephoneNumber: +1 408 907-2009 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 408 957-2603 -title: Junior Human Resources Warrior -userPassword: Password1 -uid: LatourE -givenName: Elane -mail: LatourE@bf0924ca7ffa40efa64182b434d3b054.bitwarden.com -carLicense: P9CDTU -departmentNumber: 8344 -employeeType: Contract -homePhone: +1 408 521-9564 -initials: E. L. -mobile: +1 408 312-5518 -pager: +1 408 531-7870 -roomNumber: 8851 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Matt Sharman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Matt Sharman -sn: Sharman -description: This is Matt Sharman's description -facsimileTelephoneNumber: +1 213 269-8866 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 213 950-2511 -title: Supreme Peons Artist -userPassword: Password1 -uid: SharmanM -givenName: Matt -mail: SharmanM@8455fc0dd08e47d9b5acf4e37eea1485.bitwarden.com -carLicense: VBGNDL -departmentNumber: 7829 -employeeType: Contract -homePhone: +1 213 727-9668 -initials: M. S. -mobile: +1 213 875-7158 -pager: +1 213 874-6660 -roomNumber: 9432 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aparna Lauriston -sn: Lauriston -description: This is Aparna Lauriston's description -facsimileTelephoneNumber: +1 408 523-4054 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 408 164-5177 -title: Master Human Resources Stooge -userPassword: Password1 -uid: LauristA -givenName: Aparna -mail: LauristA@13ff1430cb9943818286488abb33cd82.bitwarden.com -carLicense: 90XRTD -departmentNumber: 5894 -employeeType: Employee -homePhone: +1 408 625-9661 -initials: A. L. -mobile: +1 408 826-7936 -pager: +1 408 190-1329 -roomNumber: 9155 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shelley Shamblin -sn: Shamblin -description: This is Shelley Shamblin's description -facsimileTelephoneNumber: +1 804 445-6166 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 804 727-2162 -title: Associate Product Testing Punk -userPassword: Password1 -uid: ShambliS -givenName: Shelley -mail: ShambliS@7a1388ca21ac40f49e6770963202dbc7.bitwarden.com -carLicense: H7QVJI -departmentNumber: 4498 -employeeType: Normal -homePhone: +1 804 294-1174 -initials: S. S. -mobile: +1 804 169-6168 -pager: +1 804 200-7515 -roomNumber: 8965 -manager: cn=Marleen Potts,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Linda Juhan,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Violante Moomey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Violante Moomey -sn: Moomey -description: This is Violante Moomey's description -facsimileTelephoneNumber: +1 415 340-1065 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 516-9808 -title: Associate Payroll Figurehead -userPassword: Password1 -uid: MoomeyV -givenName: Violante -mail: MoomeyV@c26335dd55544c05ae4c2fc1f3eeffc9.bitwarden.com -carLicense: 3SLEF6 -departmentNumber: 6329 -employeeType: Contract -homePhone: +1 415 259-7418 -initials: V. M. -mobile: +1 415 115-4609 -pager: +1 415 766-2071 -roomNumber: 8371 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Robbie Kara,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Valery Howell,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valery Howell -sn: Howell -description: This is Valery Howell's description -facsimileTelephoneNumber: +1 415 742-1505 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 415 508-5353 -title: Chief Management Fellow -userPassword: Password1 -uid: HowellV -givenName: Valery -mail: HowellV@55ccff73a37c4e769e4ec261e5ec528f.bitwarden.com -carLicense: E87CT8 -departmentNumber: 4667 -employeeType: Contract -homePhone: +1 415 879-9010 -initials: V. H. -mobile: +1 415 540-7825 -pager: +1 415 720-1989 -roomNumber: 8553 -manager: cn=Petronia Bermel,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lorri Fontanini,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorri Fontanini -sn: Fontanini -description: This is Lorri Fontanini's description -facsimileTelephoneNumber: +1 804 564-1652 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 804 843-1613 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: FontaniL -givenName: Lorri -mail: FontaniL@364738d989114590842291a79ecffd92.bitwarden.com -carLicense: 3LI1BO -departmentNumber: 9453 -employeeType: Employee -homePhone: +1 804 327-7764 -initials: L. F. -mobile: +1 804 687-4602 -pager: +1 804 110-9805 -roomNumber: 9125 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivyanne Mulder,ou=Management,dc=bitwarden, dc=com - -dn: cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Frieda Daigneault -sn: Daigneault -description: This is Frieda Daigneault's description -facsimileTelephoneNumber: +1 818 332-7035 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 191-9729 -title: Supreme Human Resources Janitor -userPassword: Password1 -uid: DaigneaF -givenName: Frieda -mail: DaigneaF@601752671ede409e9d90ea7a410ff21e.bitwarden.com -carLicense: FNETBR -departmentNumber: 9728 -employeeType: Normal -homePhone: +1 818 615-5888 -initials: F. D. -mobile: +1 818 970-2310 -pager: +1 818 387-2256 -roomNumber: 8930 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shandee Bnrlsi -sn: Bnrlsi -description: This is Shandee Bnrlsi's description -facsimileTelephoneNumber: +1 510 975-6531 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 769-3859 -title: Junior Janitorial Evangelist -userPassword: Password1 -uid: BnrlsiS -givenName: Shandee -mail: BnrlsiS@a978666c2277497faaff3d19bd9575e3.bitwarden.com -carLicense: YXIIVR -departmentNumber: 7572 -employeeType: Employee -homePhone: +1 510 524-2373 -initials: S. B. -mobile: +1 510 812-3900 -pager: +1 510 225-7768 -roomNumber: 8719 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odelia Squizzato -sn: Squizzato -description: This is Odelia Squizzato's description -facsimileTelephoneNumber: +1 510 935-2486 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 510 610-7843 -title: Chief Human Resources Pinhead -userPassword: Password1 -uid: SquizzaO -givenName: Odelia -mail: SquizzaO@556b8709dd59455493d3a037cd03b5fa.bitwarden.com -carLicense: O7IUUC -departmentNumber: 2773 -employeeType: Employee -homePhone: +1 510 859-5674 -initials: O. S. -mobile: +1 510 994-3460 -pager: +1 510 366-7907 -roomNumber: 8868 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ivette Frantz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ivette Frantz -sn: Frantz -description: This is Ivette Frantz's description -facsimileTelephoneNumber: +1 206 629-9773 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 206 221-4306 -title: Associate Payroll Madonna -userPassword: Password1 -uid: FrantzI -givenName: Ivette -mail: FrantzI@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com -carLicense: AIG3IL -departmentNumber: 1474 -employeeType: Employee -homePhone: +1 206 424-7613 -initials: I. F. -mobile: +1 206 595-5051 -pager: +1 206 287-2641 -roomNumber: 9357 -manager: cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cyndie Mohideen,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cyndie Mohideen -sn: Mohideen -description: This is Cyndie Mohideen's description -facsimileTelephoneNumber: +1 510 928-9078 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 762-1627 -title: Associate Management Artist -userPassword: Password1 -uid: MohideeC -givenName: Cyndie -mail: MohideeC@f721dbef06364385bb5bd030d8447566.bitwarden.com -carLicense: 5IQYUW -departmentNumber: 3633 -employeeType: Normal -homePhone: +1 510 143-2383 -initials: C. M. -mobile: +1 510 799-9749 -pager: +1 510 149-6635 -roomNumber: 9813 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hyacinthie Hurwitz -sn: Hurwitz -description: This is Hyacinthie Hurwitz's description -facsimileTelephoneNumber: +1 408 585-8927 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 408 440-8440 -title: Chief Administrative Evangelist -userPassword: Password1 -uid: HurwitzH -givenName: Hyacinthie -mail: HurwitzH@f7fa81d9317e47ad8fbf83696ed935e8.bitwarden.com -carLicense: JG0L1G -departmentNumber: 7418 -employeeType: Normal -homePhone: +1 408 473-7712 -initials: H. H. -mobile: +1 408 878-7881 -pager: +1 408 561-1752 -roomNumber: 8688 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ardine Grimm,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ardine Grimm -sn: Grimm -description: This is Ardine Grimm's description -facsimileTelephoneNumber: +1 818 947-1669 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 818 910-3277 -title: Chief Peons Assistant -userPassword: Password1 -uid: GrimmA -givenName: Ardine -mail: GrimmA@697132edecc44b08a924e05590de1c19.bitwarden.com -carLicense: 09JEF7 -departmentNumber: 5837 -employeeType: Normal -homePhone: +1 818 296-6080 -initials: A. G. -mobile: +1 818 915-5799 -pager: +1 818 637-7635 -roomNumber: 9606 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Raine Capps,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raine Capps -sn: Capps -description: This is Raine Capps's description -facsimileTelephoneNumber: +1 818 924-6195 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 818 478-4906 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: CappsR -givenName: Raine -mail: CappsR@d71da34df9024aaf8ef124f781734513.bitwarden.com -carLicense: F57V9T -departmentNumber: 7450 -employeeType: Contract -homePhone: +1 818 699-8846 -initials: R. C. -mobile: +1 818 968-4164 -pager: +1 818 401-8265 -roomNumber: 9717 -manager: cn=AnneMarie Sills,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Karilynn Roddick,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanDenis Govindarajan -sn: Govindarajan -description: This is JeanDenis Govindarajan's description -facsimileTelephoneNumber: +1 206 227-6568 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 206 110-7844 -title: Supreme Administrative Punk -userPassword: Password1 -uid: GovindaJ -givenName: JeanDenis -mail: GovindaJ@77dbd1cf021243c180e2be10461d9b3a.bitwarden.com -carLicense: 7M14AI -departmentNumber: 7355 -employeeType: Contract -homePhone: +1 206 162-9658 -initials: J. G. -mobile: +1 206 188-6652 -pager: +1 206 791-4738 -roomNumber: 9200 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Skyler Khurana,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Skyler Khurana -sn: Khurana -description: This is Skyler Khurana's description -facsimileTelephoneNumber: +1 213 958-6147 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 722-5881 -title: Master Administrative Evangelist -userPassword: Password1 -uid: KhuranaS -givenName: Skyler -mail: KhuranaS@4160dbb07b29483d98d27e9c15a9e3bd.bitwarden.com -carLicense: 8GKNF6 -departmentNumber: 5489 -employeeType: Employee -homePhone: +1 213 419-4888 -initials: S. K. -mobile: +1 213 514-5859 -pager: +1 213 750-4834 -roomNumber: 9650 -manager: cn=Anallese Haufe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxana Beaudin -sn: Beaudin -description: This is Roxana Beaudin's description -facsimileTelephoneNumber: +1 804 735-5108 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 572-4179 -title: Associate Human Resources Architect -userPassword: Password1 -uid: BeaudinR -givenName: Roxana -mail: BeaudinR@668a7be7467f426eaa481fcc0af0008d.bitwarden.com -carLicense: 9T5GV9 -departmentNumber: 5609 -employeeType: Employee -homePhone: +1 804 171-7236 -initials: R. B. -mobile: +1 804 617-2477 -pager: +1 804 283-7888 -roomNumber: 9594 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ninon Pillsworth -sn: Pillsworth -description: This is Ninon Pillsworth's description -facsimileTelephoneNumber: +1 213 786-3127 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 213 765-8957 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: PillswoN -givenName: Ninon -mail: PillswoN@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com -carLicense: RJYM8W -departmentNumber: 1894 -employeeType: Normal -homePhone: +1 213 218-2247 -initials: N. P. -mobile: +1 213 636-8148 -pager: +1 213 742-6007 -roomNumber: 8814 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kris Warfel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kris Warfel -sn: Warfel -description: This is Kris Warfel's description -facsimileTelephoneNumber: +1 510 761-1909 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 510 476-1233 -title: Associate Management Grunt -userPassword: Password1 -uid: WarfelK -givenName: Kris -mail: WarfelK@a58f1d89c8df4bb585be88ea46688614.bitwarden.com -carLicense: KO9N80 -departmentNumber: 3930 -employeeType: Contract -homePhone: +1 510 285-4588 -initials: K. W. -mobile: +1 510 556-1517 -pager: +1 510 358-6759 -roomNumber: 8166 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Johnny Moorcroft -sn: Moorcroft -description: This is Johnny Moorcroft's description -facsimileTelephoneNumber: +1 206 275-4219 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 206 313-2012 -title: Master Administrative Fellow -userPassword: Password1 -uid: MoorcroJ -givenName: Johnny -mail: MoorcroJ@fb51e4746fc04473a7bebe9c1a3d6645.bitwarden.com -carLicense: 842533 -departmentNumber: 3128 -employeeType: Employee -homePhone: +1 206 181-3556 -initials: J. M. -mobile: +1 206 442-7971 -pager: +1 206 169-8769 -roomNumber: 9809 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ruby Stansbury,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruby Stansbury -sn: Stansbury -description: This is Ruby Stansbury's description -facsimileTelephoneNumber: +1 206 614-5328 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 206 620-2975 -title: Junior Administrative Manager -userPassword: Password1 -uid: StansbuR -givenName: Ruby -mail: StansbuR@6fae91be06034397b93a1b498797d995.bitwarden.com -carLicense: KGA6IJ -departmentNumber: 6209 -employeeType: Employee -homePhone: +1 206 387-8122 -initials: R. S. -mobile: +1 206 371-1872 -pager: +1 206 844-8204 -roomNumber: 8249 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=John Seery,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: John Seery -sn: Seery -description: This is John Seery's description -facsimileTelephoneNumber: +1 213 227-7463 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 831-8254 -title: Supreme Peons Architect -userPassword: Password1 -uid: SeeryJ -givenName: John -mail: SeeryJ@325b607b73d843cb9936d27aa4bfeb13.bitwarden.com -carLicense: 0LKJTX -departmentNumber: 9055 -employeeType: Normal -homePhone: +1 213 846-6477 -initials: J. S. -mobile: +1 213 985-3932 -pager: +1 213 948-1391 -roomNumber: 8428 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kusum Delbrouck -sn: Delbrouck -description: This is Kusum Delbrouck's description -facsimileTelephoneNumber: +1 415 842-3420 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 561-8718 -title: Master Janitorial Visionary -userPassword: Password1 -uid: DelbrouK -givenName: Kusum -mail: DelbrouK@21813dd069254b74bf250b7db15a806f.bitwarden.com -carLicense: D82R9O -departmentNumber: 1194 -employeeType: Normal -homePhone: +1 415 356-6464 -initials: K. D. -mobile: +1 415 451-6784 -pager: +1 415 867-1172 -roomNumber: 9836 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Callida Boarder,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Callida Boarder -sn: Boarder -description: This is Callida Boarder's description -facsimileTelephoneNumber: +1 415 773-4337 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 516-8743 -title: Associate Product Development Sales Rep -userPassword: Password1 -uid: BoarderC -givenName: Callida -mail: BoarderC@4eab057e70644dff8f3d5ac041be0877.bitwarden.com -carLicense: TEWNMW -departmentNumber: 2148 -employeeType: Normal -homePhone: +1 415 745-2851 -initials: C. B. -mobile: +1 415 241-1414 -pager: +1 415 116-4106 -roomNumber: 8061 -manager: cn=Dolli Cracknell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Rona Cosgrove,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rona Cosgrove -sn: Cosgrove -description: This is Rona Cosgrove's description -facsimileTelephoneNumber: +1 818 386-6343 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 818 544-4105 -title: Master Management Technician -userPassword: Password1 -uid: CosgrovR -givenName: Rona -mail: CosgrovR@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com -carLicense: YLJPF5 -departmentNumber: 9624 -employeeType: Contract -homePhone: +1 818 884-8415 -initials: R. C. -mobile: +1 818 877-2803 -pager: +1 818 422-6405 -roomNumber: 9396 -manager: cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tasia Anchia,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tasia Anchia -sn: Anchia -description: This is Tasia Anchia's description -facsimileTelephoneNumber: +1 213 850-6064 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 213 162-6500 -title: Chief Human Resources Assistant -userPassword: Password1 -uid: AnchiaT -givenName: Tasia -mail: AnchiaT@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com -carLicense: GU4EGV -departmentNumber: 1004 -employeeType: Normal -homePhone: +1 213 446-8887 -initials: T. A. -mobile: +1 213 235-5945 -pager: +1 213 975-4941 -roomNumber: 9345 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashleigh Pedneault -sn: Pedneault -description: This is Ashleigh Pedneault's description -facsimileTelephoneNumber: +1 206 480-3199 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 206 747-6416 -title: Master Administrative President -userPassword: Password1 -uid: PedneauA -givenName: Ashleigh -mail: PedneauA@de05663cc1c445b9849ee8fab2914551.bitwarden.com -carLicense: L2Y8J2 -departmentNumber: 8752 -employeeType: Employee -homePhone: +1 206 961-5744 -initials: A. P. -mobile: +1 206 643-5804 -pager: +1 206 217-3350 -roomNumber: 9810 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ursula Potter,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wallis Barentsen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wallis Barentsen -sn: Barentsen -description: This is Wallis Barentsen's description -facsimileTelephoneNumber: +1 804 803-7485 -l: San Mateo -ou: Administrative -postalAddress: Administrative$San Mateo -telephoneNumber: +1 804 906-4649 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: BarentsW -givenName: Wallis -mail: BarentsW@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com -carLicense: H1169O -departmentNumber: 3859 -employeeType: Normal -homePhone: +1 804 645-6652 -initials: W. B. -mobile: +1 804 394-4762 -pager: +1 804 146-1431 -roomNumber: 9604 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Fan Cranston,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fan Cranston -sn: Cranston -description: This is Fan Cranston's description -facsimileTelephoneNumber: +1 415 926-4747 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 362-2089 -title: Master Product Testing Assistant -userPassword: Password1 -uid: CranstoF -givenName: Fan -mail: CranstoF@d7689b7c727b40419f38fdc39c4261e2.bitwarden.com -carLicense: AWCBJ9 -departmentNumber: 7655 -employeeType: Normal -homePhone: +1 415 627-6928 -initials: F. C. -mobile: +1 415 248-4708 -pager: +1 415 233-5144 -roomNumber: 8090 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Helen Hyde,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Helen Hyde -sn: Hyde -description: This is Helen Hyde's description -facsimileTelephoneNumber: +1 206 782-5075 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 206 270-2292 -title: Associate Janitorial Consultant -userPassword: Password1 -uid: HydeH -givenName: Helen -mail: HydeH@e8907f80592d493daf791f32c2949815.bitwarden.com -carLicense: 3ENRSI -departmentNumber: 6871 -employeeType: Employee -homePhone: +1 206 399-9731 -initials: H. H. -mobile: +1 206 162-5823 -pager: +1 206 537-4629 -roomNumber: 9388 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tove Goodridge,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Raeann OKarina,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raeann OKarina -sn: OKarina -description: This is Raeann OKarina's description -facsimileTelephoneNumber: +1 206 408-3467 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 206 926-3453 -title: Master Product Development Czar -userPassword: Password1 -uid: OKarinaR -givenName: Raeann -mail: OKarinaR@c659efb530134031a977821791781191.bitwarden.com -carLicense: USOKWW -departmentNumber: 8554 -employeeType: Normal -homePhone: +1 206 576-6718 -initials: R. O. -mobile: +1 206 773-9238 -pager: +1 206 720-8847 -roomNumber: 8150 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felicity Kinoshita -sn: Kinoshita -description: This is Felicity Kinoshita's description -facsimileTelephoneNumber: +1 804 439-8873 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 804 666-7482 -title: Associate Administrative Manager -userPassword: Password1 -uid: KinoshiF -givenName: Felicity -mail: KinoshiF@42e197c00c4e41749aff9f9665181f54.bitwarden.com -carLicense: A9NXGF -departmentNumber: 4950 -employeeType: Contract -homePhone: +1 804 771-5962 -initials: F. K. -mobile: +1 804 760-7082 -pager: +1 804 677-3405 -roomNumber: 8623 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dvm Ricketson,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Olga Magee,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olga Magee -sn: Magee -description: This is Olga Magee's description -facsimileTelephoneNumber: +1 804 413-1285 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 578-3427 -title: Master Product Development Warrior -userPassword: Password1 -uid: MageeO -givenName: Olga -mail: MageeO@e9aa0388b0974f709cc43e6d5c1d4048.bitwarden.com -carLicense: ML3EL2 -departmentNumber: 8430 -employeeType: Normal -homePhone: +1 804 386-4361 -initials: O. M. -mobile: +1 804 561-4152 -pager: +1 804 216-2010 -roomNumber: 9876 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sibel Munter,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibel Munter -sn: Munter -description: This is Sibel Munter's description -facsimileTelephoneNumber: +1 510 499-5327 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 415-1981 -title: Junior Janitorial Stooge -userPassword: Password1 -uid: MunterS -givenName: Sibel -mail: MunterS@85cf93c1a5be4b4aba8d72ecb1e88b93.bitwarden.com -carLicense: 0T7OPT -departmentNumber: 8299 -employeeType: Normal -homePhone: +1 510 218-6208 -initials: S. M. -mobile: +1 510 470-5198 -pager: +1 510 163-9223 -roomNumber: 9496 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Carmella Pillars,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmella Pillars -sn: Pillars -description: This is Carmella Pillars's description -facsimileTelephoneNumber: +1 415 774-1196 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 897-5277 -title: Associate Administrative Vice President -userPassword: Password1 -uid: PillarsC -givenName: Carmella -mail: PillarsC@c928e664ca344d17b905e23403ffeabf.bitwarden.com -carLicense: XQLL6P -departmentNumber: 3808 -employeeType: Normal -homePhone: +1 415 752-6766 -initials: C. P. -mobile: +1 415 652-7651 -pager: +1 415 332-6464 -roomNumber: 9842 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shafiq Kotyk -sn: Kotyk -description: This is Shafiq Kotyk's description -facsimileTelephoneNumber: +1 510 459-9436 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 445-2563 -title: Master Product Development Punk -userPassword: Password1 -uid: KotykS -givenName: Shafiq -mail: KotykS@4ef93a5243aa4272a03cee0beaecc3a1.bitwarden.com -carLicense: NVYLL2 -departmentNumber: 4767 -employeeType: Contract -homePhone: +1 510 330-7926 -initials: S. K. -mobile: +1 510 336-1240 -pager: +1 510 778-4452 -roomNumber: 8004 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jock Subsara,ou=Management,dc=bitwarden, dc=com - -dn: cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhQuoc Behroozi -sn: Behroozi -description: This is ThanhQuoc Behroozi's description -facsimileTelephoneNumber: +1 804 976-7678 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 258-2047 -title: Master Product Development Figurehead -userPassword: Password1 -uid: BehroozT -givenName: ThanhQuoc -mail: BehroozT@61b37bdecd0d4342ba802388d8b5a903.bitwarden.com -carLicense: JE9RQO -departmentNumber: 9274 -employeeType: Normal -homePhone: +1 804 562-6145 -initials: T. B. -mobile: +1 804 778-7199 -pager: +1 804 671-5167 -roomNumber: 9600 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alene Gruszczynski -sn: Gruszczynski -description: This is Alene Gruszczynski's description -facsimileTelephoneNumber: +1 206 941-5028 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 206 457-4274 -title: Chief Product Testing Technician -userPassword: Password1 -uid: GruszczA -givenName: Alene -mail: GruszczA@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com -carLicense: 434AEY -departmentNumber: 3801 -employeeType: Normal -homePhone: +1 206 921-9995 -initials: A. G. -mobile: +1 206 599-5390 -pager: +1 206 757-8590 -roomNumber: 8098 -manager: cn=Tsing Oakley,ou=Management,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tabbi Bladon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tabbi Bladon -sn: Bladon -description: This is Tabbi Bladon's description -facsimileTelephoneNumber: +1 804 158-9349 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 804 865-1673 -title: Chief Administrative Vice President -userPassword: Password1 -uid: BladonT -givenName: Tabbi -mail: BladonT@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com -carLicense: 2X03IT -departmentNumber: 4760 -employeeType: Employee -homePhone: +1 804 536-3428 -initials: T. B. -mobile: +1 804 297-9107 -pager: +1 804 341-3616 -roomNumber: 8692 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Umesh Areu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Umesh Areu -sn: Areu -description: This is Umesh Areu's description -facsimileTelephoneNumber: +1 408 883-5233 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 408 461-2260 -title: Associate Product Testing Evangelist -userPassword: Password1 -uid: AreuU -givenName: Umesh -mail: AreuU@5d0d20354c594b5780df45982564458f.bitwarden.com -carLicense: L9KIAV -departmentNumber: 9017 -employeeType: Employee -homePhone: +1 408 188-6253 -initials: U. A. -mobile: +1 408 295-1695 -pager: +1 408 812-3177 -roomNumber: 9168 -manager: cn=Shaw Lantto,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=HingFai Shearer,ou=Management,dc=bitwarden, dc=com - -dn: cn=Orel Delahay,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Orel Delahay -sn: Delahay -description: This is Orel Delahay's description -facsimileTelephoneNumber: +1 804 433-7745 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 390-1724 -title: Associate Product Testing Consultant -userPassword: Password1 -uid: DelahayO -givenName: Orel -mail: DelahayO@f009b38fd0b643efae4b268d5ce0abb7.bitwarden.com -carLicense: 3QRJTT -departmentNumber: 9282 -employeeType: Normal -homePhone: +1 804 526-4861 -initials: O. D. -mobile: +1 804 350-3243 -pager: +1 804 826-1384 -roomNumber: 9665 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Corrie Cipolla,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corrie Cipolla -sn: Cipolla -description: This is Corrie Cipolla's description -facsimileTelephoneNumber: +1 804 303-2834 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 804 602-8690 -title: Chief Product Development Madonna -userPassword: Password1 -uid: CipollaC -givenName: Corrie -mail: CipollaC@bf258d9f715f4af3b7d9b3ec9a4b6843.bitwarden.com -carLicense: NRUKAV -departmentNumber: 3942 -employeeType: Contract -homePhone: +1 804 885-8582 -initials: C. C. -mobile: +1 804 121-4341 -pager: +1 804 610-4809 -roomNumber: 9377 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Longdist Goliss,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Longdist Goliss -sn: Goliss -description: This is Longdist Goliss's description -facsimileTelephoneNumber: +1 510 526-6968 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 510 960-2733 -title: Master Janitorial Stooge -userPassword: Password1 -uid: GolissL -givenName: Longdist -mail: GolissL@fe60fc6c21f046639fc69fd725ace3ee.bitwarden.com -carLicense: 1V4NOC -departmentNumber: 2158 -employeeType: Employee -homePhone: +1 510 157-1097 -initials: L. G. -mobile: +1 510 649-3575 -pager: +1 510 833-2988 -roomNumber: 9718 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Belissa Northcott,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belissa Northcott -sn: Northcott -description: This is Belissa Northcott's description -facsimileTelephoneNumber: +1 415 854-7176 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 415 212-6179 -title: Associate Product Development Visionary -userPassword: Password1 -uid: NorthcoB -givenName: Belissa -mail: NorthcoB@1765994e2a5c4efcb4f3aabfae2cc880.bitwarden.com -carLicense: FG5M0F -departmentNumber: 8165 -employeeType: Employee -homePhone: +1 415 467-6359 -initials: B. N. -mobile: +1 415 940-1779 -pager: +1 415 591-8943 -roomNumber: 9200 -manager: cn=Maurine Boucher,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eula Gouldson,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eula Gouldson -sn: Gouldson -description: This is Eula Gouldson's description -facsimileTelephoneNumber: +1 415 573-8154 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 415 194-6016 -title: Junior Payroll Engineer -userPassword: Password1 -uid: GouldsoE -givenName: Eula -mail: GouldsoE@855a2f4f2cb9421d8b0276fe6c08af37.bitwarden.com -carLicense: IRGG0I -departmentNumber: 9467 -employeeType: Normal -homePhone: +1 415 288-7667 -initials: E. G. -mobile: +1 415 898-4411 -pager: +1 415 182-2660 -roomNumber: 9371 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Beatrix Rea,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatrix Rea -sn: Rea -description: This is Beatrix Rea's description -facsimileTelephoneNumber: +1 804 249-4961 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 804 884-5684 -title: Supreme Management Sales Rep -userPassword: Password1 -uid: ReaB -givenName: Beatrix -mail: ReaB@091047b60e174697bb729ce954d717c0.bitwarden.com -carLicense: KJ6HUW -departmentNumber: 1725 -employeeType: Employee -homePhone: +1 804 542-9711 -initials: B. R. -mobile: +1 804 777-5281 -pager: +1 804 789-8072 -roomNumber: 8789 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnneMarie Khalilzadeh -sn: Khalilzadeh -description: This is AnneMarie Khalilzadeh's description -facsimileTelephoneNumber: +1 804 596-4631 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 189-5143 -title: Master Payroll Writer -userPassword: Password1 -uid: KhalilzA -givenName: AnneMarie -mail: KhalilzA@71b383e74c8c4d0394a6539daed34aaf.bitwarden.com -carLicense: S1VRF2 -departmentNumber: 8502 -employeeType: Normal -homePhone: +1 804 712-3380 -initials: A. K. -mobile: +1 804 613-7078 -pager: +1 804 803-7695 -roomNumber: 9276 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Larysa Fleming,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Larysa Fleming -sn: Fleming -description: This is Larysa Fleming's description -facsimileTelephoneNumber: +1 818 739-2003 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 545-2983 -title: Associate Product Testing Czar -userPassword: Password1 -uid: FlemingL -givenName: Larysa -mail: FlemingL@36bc6957b14948c298f68fedb3e83da0.bitwarden.com -carLicense: 8SE0G4 -departmentNumber: 6322 -employeeType: Employee -homePhone: +1 818 110-8498 -initials: L. F. -mobile: +1 818 495-9524 -pager: +1 818 125-8893 -roomNumber: 8879 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Andras Dziemian,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andras Dziemian -sn: Dziemian -description: This is Andras Dziemian's description -facsimileTelephoneNumber: +1 804 454-2252 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 804 860-1377 -title: Associate Administrative Vice President -userPassword: Password1 -uid: DziemiaA -givenName: Andras -mail: DziemiaA@a56f80c85b414f69996ee5700b35f815.bitwarden.com -carLicense: RMJIF8 -departmentNumber: 3655 -employeeType: Normal -homePhone: +1 804 114-2152 -initials: A. D. -mobile: +1 804 322-5319 -pager: +1 804 371-5789 -roomNumber: 8425 -manager: cn=Shyam Carr,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angeliek MachnickiHynes -sn: MachnickiHynes -description: This is Angeliek MachnickiHynes's description -facsimileTelephoneNumber: +1 213 114-7071 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 452-8951 -title: Associate Peons Figurehead -userPassword: Password1 -uid: MachnicA -givenName: Angeliek -mail: MachnicA@472c805b68f843ad9fd85cb16521749b.bitwarden.com -carLicense: 71HW84 -departmentNumber: 1377 -employeeType: Employee -homePhone: +1 213 982-7979 -initials: A. M. -mobile: +1 213 267-4096 -pager: +1 213 563-4907 -roomNumber: 8064 -manager: cn=Clarence Sonier,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Afke Coallier,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Afke Coallier -sn: Coallier -description: This is Afke Coallier's description -facsimileTelephoneNumber: +1 510 394-5203 -l: Sunnyvale -ou: Management -postalAddress: Management$Sunnyvale -telephoneNumber: +1 510 391-8357 -title: Junior Management Manager -userPassword: Password1 -uid: CoallieA -givenName: Afke -mail: CoallieA@976adcda025f45689f8ecd72de9c606c.bitwarden.com -carLicense: V5J8U4 -departmentNumber: 9065 -employeeType: Contract -homePhone: +1 510 590-2036 -initials: A. C. -mobile: +1 510 162-3573 -pager: +1 510 362-7705 -roomNumber: 9636 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lachu Fricks,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lachu Fricks -sn: Fricks -description: This is Lachu Fricks's description -facsimileTelephoneNumber: +1 415 112-9980 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 320-6166 -title: Supreme Janitorial Technician -userPassword: Password1 -uid: FricksL -givenName: Lachu -mail: FricksL@d479485aa9bf4fdf874b1f50fdaba08c.bitwarden.com -carLicense: U5CTHQ -departmentNumber: 4175 -employeeType: Employee -homePhone: +1 415 555-3897 -initials: L. F. -mobile: +1 415 749-2840 -pager: +1 415 830-9806 -roomNumber: 9920 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pammy Slautterback,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pammy Slautterback -sn: Slautterback -description: This is Pammy Slautterback's description -facsimileTelephoneNumber: +1 415 341-7542 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 415 123-3315 -title: Supreme Administrative Technician -userPassword: Password1 -uid: SlautteP -givenName: Pammy -mail: SlautteP@87263f2ad4e44ac39562038c9af16152.bitwarden.com -carLicense: EWNPGB -departmentNumber: 3255 -employeeType: Contract -homePhone: +1 415 253-6430 -initials: P. S. -mobile: +1 415 175-2240 -pager: +1 415 134-7850 -roomNumber: 8041 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maribelle Balderston,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maribelle Balderston -sn: Balderston -description: This is Maribelle Balderston's description -facsimileTelephoneNumber: +1 408 571-6363 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 408 736-7873 -title: Chief Payroll Writer -userPassword: Password1 -uid: BaldersM -givenName: Maribelle -mail: BaldersM@64ae9afa0c594dd6834a0d977f843d49.bitwarden.com -carLicense: TU42L2 -departmentNumber: 7776 -employeeType: Employee -homePhone: +1 408 936-2630 -initials: M. B. -mobile: +1 408 737-7742 -pager: +1 408 712-7798 -roomNumber: 8360 -manager: cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vahe Birks,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vahe Birks -sn: Birks -description: This is Vahe Birks's description -facsimileTelephoneNumber: +1 818 390-4946 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 818 947-6159 -title: Junior Product Development Sales Rep -userPassword: Password1 -uid: BirksV -givenName: Vahe -mail: BirksV@ebdda7804b294714949d48657bdd3830.bitwarden.com -carLicense: YJS83P -departmentNumber: 8826 -employeeType: Employee -homePhone: +1 818 350-7671 -initials: V. B. -mobile: +1 818 462-1957 -pager: +1 818 874-1663 -roomNumber: 9619 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tobe PKDCD,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tobe PKDCD -sn: PKDCD -description: This is Tobe PKDCD's description -facsimileTelephoneNumber: +1 408 869-4472 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 702-3695 -title: Associate Product Development Visionary -userPassword: Password1 -uid: PKDCDT -givenName: Tobe -mail: PKDCDT@1a2826f06614436585f4faa14772cf1b.bitwarden.com -carLicense: ODFDSM -departmentNumber: 5604 -employeeType: Normal -homePhone: +1 408 276-8204 -initials: T. P. -mobile: +1 408 754-5114 -pager: +1 408 773-4621 -roomNumber: 9046 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: DeAnna Gahunia -sn: Gahunia -description: This is DeAnna Gahunia's description -facsimileTelephoneNumber: +1 408 651-7589 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 321-5830 -title: Master Product Development Assistant -userPassword: Password1 -uid: GahuniaD -givenName: DeAnna -mail: GahuniaD@a3b3e1a7dc12465fbb231dc02524f751.bitwarden.com -carLicense: 3X1PBS -departmentNumber: 8394 -employeeType: Employee -homePhone: +1 408 269-6361 -initials: D. G. -mobile: +1 408 840-9080 -pager: +1 408 858-6026 -roomNumber: 8219 -manager: cn=Ediva Hately,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Melynda Phillips,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melynda Phillips -sn: Phillips -description: This is Melynda Phillips's description -facsimileTelephoneNumber: +1 213 314-9260 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 213 356-4172 -title: Junior Administrative Madonna -userPassword: Password1 -uid: PhillipM -givenName: Melynda -mail: PhillipM@da12337d358141f5bd4c9f1cff61b597.bitwarden.com -carLicense: QB9HVN -departmentNumber: 2167 -employeeType: Normal -homePhone: +1 213 813-9915 -initials: M. P. -mobile: +1 213 469-2430 -pager: +1 213 667-8795 -roomNumber: 8324 -manager: cn=Aila Mawani,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Arina Collazo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arina Collazo -sn: Collazo -description: This is Arina Collazo's description -facsimileTelephoneNumber: +1 206 879-2301 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 238-4827 -title: Chief Payroll Engineer -userPassword: Password1 -uid: CollazoA -givenName: Arina -mail: CollazoA@f322213c017f4153baac5a8cc04c844a.bitwarden.com -carLicense: IKXJSD -departmentNumber: 6742 -employeeType: Employee -homePhone: +1 206 255-8682 -initials: A. C. -mobile: +1 206 630-3470 -pager: +1 206 221-7447 -roomNumber: 8398 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Cesare Karolefski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cesare Karolefski -sn: Karolefski -description: This is Cesare Karolefski's description -facsimileTelephoneNumber: +1 510 144-6599 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 256-9480 -title: Chief Payroll Technician -userPassword: Password1 -uid: KarolefC -givenName: Cesare -mail: KarolefC@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com -carLicense: 6GTIXC -departmentNumber: 1074 -employeeType: Employee -homePhone: +1 510 724-5419 -initials: C. K. -mobile: +1 510 169-4662 -pager: +1 510 819-6669 -roomNumber: 9676 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=HooiLee Bourgon,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reinhold Zukas -sn: Zukas -description: This is Reinhold Zukas's description -facsimileTelephoneNumber: +1 408 752-8776 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 408 377-4252 -title: Master Human Resources Artist -userPassword: Password1 -uid: ZukasR -givenName: Reinhold -mail: ZukasR@973c4a1a5d1a4e4f9c421404b565659a.bitwarden.com -carLicense: RTFGU1 -departmentNumber: 2899 -employeeType: Employee -homePhone: +1 408 633-5815 -initials: R. Z. -mobile: +1 408 632-2858 -pager: +1 408 579-6933 -roomNumber: 9264 -manager: cn=Violet Potvin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeroen Gaiser -sn: Gaiser -description: This is Jeroen Gaiser's description -facsimileTelephoneNumber: +1 415 888-7506 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 415 442-5324 -title: Master Janitorial Director -userPassword: Password1 -uid: GaiserJ -givenName: Jeroen -mail: GaiserJ@7dd6cc5778d64f7ea47fc9b85bb01ae7.bitwarden.com -carLicense: FR7OJ3 -departmentNumber: 6929 -employeeType: Normal -homePhone: +1 415 188-6638 -initials: J. G. -mobile: +1 415 932-9873 -pager: +1 415 501-6133 -roomNumber: 8982 -manager: cn=Steve Iyengar,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Karita Donovan,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Partick Bassil,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Partick Bassil -sn: Bassil -description: This is Partick Bassil's description -facsimileTelephoneNumber: +1 213 372-3947 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 857-8354 -title: Junior Human Resources President -userPassword: Password1 -uid: BassilP -givenName: Partick -mail: BassilP@dd5cfcee75de4e98844cbb2dd89a0b3c.bitwarden.com -carLicense: TQ936I -departmentNumber: 1066 -employeeType: Employee -homePhone: +1 213 550-3874 -initials: P. B. -mobile: +1 213 101-5958 -pager: +1 213 102-6068 -roomNumber: 8510 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Siamak Wagle,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Siamak Wagle -sn: Wagle -description: This is Siamak Wagle's description -facsimileTelephoneNumber: +1 213 785-4876 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 503-2578 -title: Chief Product Testing Director -userPassword: Password1 -uid: WagleS -givenName: Siamak -mail: WagleS@a4f62387533541bbbdac898b8a707eb3.bitwarden.com -carLicense: SF7DE6 -departmentNumber: 4029 -employeeType: Normal -homePhone: +1 213 770-6048 -initials: S. W. -mobile: +1 213 515-2650 -pager: +1 213 228-3975 -roomNumber: 9085 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Reine Hamlett,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Reine Hamlett -sn: Hamlett -description: This is Reine Hamlett's description -facsimileTelephoneNumber: +1 408 261-8591 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 266-7157 -title: Associate Peons Director -userPassword: Password1 -uid: HamlettR -givenName: Reine -mail: HamlettR@55ec9ab4177d4a9faecb693090c29c24.bitwarden.com -carLicense: 3JGBUT -departmentNumber: 9163 -employeeType: Contract -homePhone: +1 408 251-3423 -initials: R. H. -mobile: +1 408 178-6754 -pager: +1 408 812-2837 -roomNumber: 8328 -manager: cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Albert Tebinka,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Albert Tebinka -sn: Tebinka -description: This is Albert Tebinka's description -facsimileTelephoneNumber: +1 408 899-5169 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 408 387-6197 -title: Supreme Payroll Vice President -userPassword: Password1 -uid: TebinkaA -givenName: Albert -mail: TebinkaA@67ca48342c3741e5ba95513725c86734.bitwarden.com -carLicense: Y9EBD4 -departmentNumber: 2723 -employeeType: Contract -homePhone: +1 408 491-9794 -initials: A. T. -mobile: +1 408 357-9694 -pager: +1 408 699-7782 -roomNumber: 8825 -manager: cn=Valina Raaflaub,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wally Pedneault,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wally Pedneault -sn: Pedneault -description: This is Wally Pedneault's description -facsimileTelephoneNumber: +1 818 871-1215 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 818 466-1780 -title: Associate Product Testing Admin -userPassword: Password1 -uid: PedneauW -givenName: Wally -mail: PedneauW@d4ab5d5f822b49189aa188422c9bf4ed.bitwarden.com -carLicense: KPHL4J -departmentNumber: 1795 -employeeType: Employee -homePhone: +1 818 661-6621 -initials: W. P. -mobile: +1 818 306-6360 -pager: +1 818 588-7454 -roomNumber: 9507 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shahriar Farnham,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shahriar Farnham -sn: Farnham -description: This is Shahriar Farnham's description -facsimileTelephoneNumber: +1 415 265-7804 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 415 174-6388 -title: Associate Peons Technician -userPassword: Password1 -uid: FarnhamS -givenName: Shahriar -mail: FarnhamS@4d05bb60c7e84d1eab5ee07d5a5162ea.bitwarden.com -carLicense: 89999V -departmentNumber: 7130 -employeeType: Normal -homePhone: +1 415 495-2556 -initials: S. F. -mobile: +1 415 282-5441 -pager: +1 415 640-5711 -roomNumber: 9735 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Concordia Thorman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Concordia Thorman -sn: Thorman -description: This is Concordia Thorman's description -facsimileTelephoneNumber: +1 510 625-5323 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 510 365-5081 -title: Chief Human Resources Engineer -userPassword: Password1 -uid: ThormanC -givenName: Concordia -mail: ThormanC@5020798a7692438bb9e14d9a42dd1742.bitwarden.com -carLicense: CJAVPT -departmentNumber: 5302 -employeeType: Normal -homePhone: +1 510 784-2040 -initials: C. T. -mobile: +1 510 484-5120 -pager: +1 510 339-9152 -roomNumber: 8289 -manager: cn=Violet Ninetyone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sarath Lathrop,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarath Lathrop -sn: Lathrop -description: This is Sarath Lathrop's description -facsimileTelephoneNumber: +1 510 782-6081 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 144-2808 -title: Junior Management Stooge -userPassword: Password1 -uid: LathropS -givenName: Sarath -mail: LathropS@f37bc771a4b8490799f5a19ea4f33525.bitwarden.com -carLicense: FELVP1 -departmentNumber: 3551 -employeeType: Contract -homePhone: +1 510 676-7714 -initials: S. L. -mobile: +1 510 608-6412 -pager: +1 510 844-9377 -roomNumber: 8133 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=HanVan Cuthill,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HanVan Cuthill -sn: Cuthill -description: This is HanVan Cuthill's description -facsimileTelephoneNumber: +1 213 434-2896 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 213 415-4283 -title: Chief Peons Director -userPassword: Password1 -uid: CuthillH -givenName: HanVan -mail: CuthillH@c0a6b6c92fcf4d2e9e442a4db87fb8d6.bitwarden.com -carLicense: BXKTHY -departmentNumber: 7855 -employeeType: Contract -homePhone: +1 213 682-5939 -initials: H. C. -mobile: +1 213 735-4868 -pager: +1 213 399-7312 -roomNumber: 9227 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Demetri Acree,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Demetri Acree -sn: Acree -description: This is Demetri Acree's description -facsimileTelephoneNumber: +1 206 647-5172 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 206 151-5982 -title: Junior Human Resources Manager -userPassword: Password1 -uid: AcreeD -givenName: Demetri -mail: AcreeD@8491514e025546c6b44944519f176a38.bitwarden.com -carLicense: 7SXBAL -departmentNumber: 9120 -employeeType: Contract -homePhone: +1 206 235-6175 -initials: D. A. -mobile: +1 206 453-4390 -pager: +1 206 235-4981 -roomNumber: 9273 -manager: cn=Maryanna Rao,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gord St,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gord St -sn: St -description: This is Gord St's description -facsimileTelephoneNumber: +1 804 413-8462 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 804 830-2361 -title: Master Product Development Sales Rep -userPassword: Password1 -uid: StG -givenName: Gord -mail: StG@a8e48e7f01fb4831b7bf783525861229.bitwarden.com -carLicense: SEU86I -departmentNumber: 6953 -employeeType: Contract -homePhone: +1 804 346-5521 -initials: G. S. -mobile: +1 804 642-4616 -pager: +1 804 800-4032 -roomNumber: 9297 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Robyn Porter,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robyn Porter -sn: Porter -description: This is Robyn Porter's description -facsimileTelephoneNumber: +1 415 770-3112 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 415 922-5524 -title: Associate Payroll Architect -userPassword: Password1 -uid: PorterR -givenName: Robyn -mail: PorterR@3ccc8c61b3e7403f9b193bb2ac877a17.bitwarden.com -carLicense: U3H4JA -departmentNumber: 6644 -employeeType: Normal -homePhone: +1 415 374-3208 -initials: R. P. -mobile: +1 415 777-2032 -pager: +1 415 423-9476 -roomNumber: 9120 -manager: cn=Sheldon Blatt,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kristine Ratnam,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kristine Ratnam -sn: Ratnam -description: This is Kristine Ratnam's description -facsimileTelephoneNumber: +1 818 632-6030 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 818 469-6711 -title: Associate Peons Madonna -userPassword: Password1 -uid: RatnamK -givenName: Kristine -mail: RatnamK@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com -carLicense: LCSD9F -departmentNumber: 5703 -employeeType: Contract -homePhone: +1 818 410-9496 -initials: K. R. -mobile: +1 818 179-1260 -pager: +1 818 607-2068 -roomNumber: 8590 -manager: cn=Billie Shoulars,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Trude Leander,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trude Leander -sn: Leander -description: This is Trude Leander's description -facsimileTelephoneNumber: +1 206 441-7696 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 206 702-8186 -title: Junior Management Director -userPassword: Password1 -uid: LeanderT -givenName: Trude -mail: LeanderT@03dd2273d709477db635cdb7c9075823.bitwarden.com -carLicense: B1L0P2 -departmentNumber: 6795 -employeeType: Employee -homePhone: +1 206 717-8967 -initials: T. L. -mobile: +1 206 623-3393 -pager: +1 206 106-2829 -roomNumber: 9610 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jacinta Burkepile,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacinta Burkepile -sn: Burkepile -description: This is Jacinta Burkepile's description -facsimileTelephoneNumber: +1 510 538-9302 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 510 749-9742 -title: Associate Management Manager -userPassword: Password1 -uid: BurkepiJ -givenName: Jacinta -mail: BurkepiJ@2ff176a8051c415c910dbab59433a7db.bitwarden.com -carLicense: UTCKYC -departmentNumber: 4692 -employeeType: Contract -homePhone: +1 510 532-7173 -initials: J. B. -mobile: +1 510 506-5954 -pager: +1 510 137-3903 -roomNumber: 9853 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felecia Schoenermarck -sn: Schoenermarck -description: This is Felecia Schoenermarck's description -facsimileTelephoneNumber: +1 804 744-6823 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 648-6008 -title: Junior Product Development Visionary -userPassword: Password1 -uid: SchoeneF -givenName: Felecia -mail: SchoeneF@1e52d43b6db2414f90519482b0521313.bitwarden.com -carLicense: O0M8A1 -departmentNumber: 1708 -employeeType: Contract -homePhone: +1 804 493-3370 -initials: F. S. -mobile: +1 804 170-6250 -pager: +1 804 101-6129 -roomNumber: 8555 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sissela Mathewson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sissela Mathewson -sn: Mathewson -description: This is Sissela Mathewson's description -facsimileTelephoneNumber: +1 804 666-3677 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 249-1070 -title: Master Administrative Consultant -userPassword: Password1 -uid: MathewsS -givenName: Sissela -mail: MathewsS@28cc7c8054f54d5097838bc00378ffcf.bitwarden.com -carLicense: V00QGX -departmentNumber: 9795 -employeeType: Normal -homePhone: +1 804 630-4759 -initials: S. M. -mobile: +1 804 583-5025 -pager: +1 804 300-5194 -roomNumber: 8252 -manager: cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacynthe Sheaffer -sn: Sheaffer -description: This is Jacynthe Sheaffer's description -facsimileTelephoneNumber: +1 408 400-7016 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 349-1014 -title: Chief Product Development Punk -userPassword: Password1 -uid: SheaffeJ -givenName: Jacynthe -mail: SheaffeJ@889b0ce56e2f447a9f04b2ef65f2b835.bitwarden.com -carLicense: EUMEBH -departmentNumber: 1772 -employeeType: Normal -homePhone: +1 408 297-5598 -initials: J. S. -mobile: +1 408 119-4883 -pager: +1 408 372-5599 -roomNumber: 9548 -manager: cn=Helene Esser,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hugo Baltodano,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kaela Gleason,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaela Gleason -sn: Gleason -description: This is Kaela Gleason's description -facsimileTelephoneNumber: +1 510 265-8486 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 332-1941 -title: Associate Product Testing Assistant -userPassword: Password1 -uid: GleasonK -givenName: Kaela -mail: GleasonK@a08e5c7ab6bd42a9af2ba6fcd91cbe9f.bitwarden.com -carLicense: Q6KTJ1 -departmentNumber: 9214 -employeeType: Normal -homePhone: +1 510 234-6697 -initials: K. G. -mobile: +1 510 239-6608 -pager: +1 510 953-8424 -roomNumber: 9134 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mandi Popovich,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mandi Popovich -sn: Popovich -description: This is Mandi Popovich's description -facsimileTelephoneNumber: +1 804 473-7909 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 584-2209 -title: Junior Product Development Czar -userPassword: Password1 -uid: PopovicM -givenName: Mandi -mail: PopovicM@121cc33033f14e9b867c78ba3a8f3e2b.bitwarden.com -carLicense: W8BRBQ -departmentNumber: 6190 -employeeType: Normal -homePhone: +1 804 763-8107 -initials: M. P. -mobile: +1 804 593-5774 -pager: +1 804 826-9099 -roomNumber: 9320 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bhal Mymryk,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bhal Mymryk -sn: Mymryk -description: This is Bhal Mymryk's description -facsimileTelephoneNumber: +1 818 796-8106 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 818 165-1922 -title: Chief Management Writer -userPassword: Password1 -uid: MymrykB -givenName: Bhal -mail: MymrykB@1c5b6afbcbf04ba3993488cc8b65901b.bitwarden.com -carLicense: WBK5DJ -departmentNumber: 2574 -employeeType: Contract -homePhone: +1 818 241-5075 -initials: B. M. -mobile: +1 818 175-2863 -pager: +1 818 816-5547 -roomNumber: 9615 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Wenxi Sethian,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wenxi Sethian -sn: Sethian -description: This is Wenxi Sethian's description -facsimileTelephoneNumber: +1 408 865-7951 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 408 493-3694 -title: Master Product Development Grunt -userPassword: Password1 -uid: SethianW -givenName: Wenxi -mail: SethianW@71af05daaeb140bfbca8a2d29597805e.bitwarden.com -carLicense: 0LFCS5 -departmentNumber: 5398 -employeeType: Normal -homePhone: +1 408 554-7294 -initials: W. S. -mobile: +1 408 446-7930 -pager: +1 408 699-9648 -roomNumber: 8307 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mabel Kwa,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mabel Kwa -sn: Kwa -description: This is Mabel Kwa's description -facsimileTelephoneNumber: +1 510 896-9984 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 227-5057 -title: Junior Peons Manager -userPassword: Password1 -uid: KwaM -givenName: Mabel -mail: KwaM@76dc6fcc5e8748ab8f701b414ac24ae8.bitwarden.com -carLicense: RHQKEM -departmentNumber: 5920 -employeeType: Employee -homePhone: +1 510 837-1851 -initials: M. K. -mobile: +1 510 656-6998 -pager: +1 510 453-2551 -roomNumber: 9895 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Neysa Uguccioni,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Neysa Uguccioni -sn: Uguccioni -description: This is Neysa Uguccioni's description -facsimileTelephoneNumber: +1 510 844-5524 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 639-6445 -title: Junior Management Developer -userPassword: Password1 -uid: UguccioN -givenName: Neysa -mail: UguccioN@0b027bdff1d041629ac882de18aab2e6.bitwarden.com -carLicense: EHRGF5 -departmentNumber: 3037 -employeeType: Normal -homePhone: +1 510 470-6566 -initials: N. U. -mobile: +1 510 704-1181 -pager: +1 510 691-8537 -roomNumber: 8583 -manager: cn=Oneida Curnow,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Toby Ayoup,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Toby Ayoup -sn: Ayoup -description: This is Toby Ayoup's description -facsimileTelephoneNumber: +1 408 695-1703 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 408 989-9222 -title: Supreme Administrative President -userPassword: Password1 -uid: AyoupT -givenName: Toby -mail: AyoupT@4ec1bcfbb97c4709b780fa74b3d05500.bitwarden.com -carLicense: 3WTO47 -departmentNumber: 7073 -employeeType: Normal -homePhone: +1 408 397-4606 -initials: T. A. -mobile: +1 408 878-4969 -pager: +1 408 208-2677 -roomNumber: 9733 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Courtnay Engleman -sn: Engleman -description: This is Courtnay Engleman's description -facsimileTelephoneNumber: +1 804 711-4918 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 804 882-4962 -title: Master Human Resources Manager -userPassword: Password1 -uid: EnglemaC -givenName: Courtnay -mail: EnglemaC@e60dd9bce03a413a915d470a19570918.bitwarden.com -carLicense: NJQEE5 -departmentNumber: 8041 -employeeType: Normal -homePhone: +1 804 809-7731 -initials: C. E. -mobile: +1 804 937-5120 -pager: +1 804 589-3952 -roomNumber: 9910 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Drusilla Allman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drusilla Allman -sn: Allman -description: This is Drusilla Allman's description -facsimileTelephoneNumber: +1 415 673-8940 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 434-3423 -title: Supreme Management Technician -userPassword: Password1 -uid: AllmanD -givenName: Drusilla -mail: AllmanD@fa78004a0e4e45e5ac5f338a764f9f48.bitwarden.com -carLicense: GLYK54 -departmentNumber: 7069 -employeeType: Normal -homePhone: +1 415 112-2501 -initials: D. A. -mobile: +1 415 677-7722 -pager: +1 415 699-9805 -roomNumber: 9737 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=SangMaun Rabzel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: SangMaun Rabzel -sn: Rabzel -description: This is SangMaun Rabzel's description -facsimileTelephoneNumber: +1 213 354-4064 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 983-1362 -title: Associate Management Director -userPassword: Password1 -uid: RabzelS -givenName: SangMaun -mail: RabzelS@206e631bec554251823680304e50fd4f.bitwarden.com -carLicense: GMPTRT -departmentNumber: 5850 -employeeType: Employee -homePhone: +1 213 100-9337 -initials: S. R. -mobile: +1 213 365-9375 -pager: +1 213 498-7539 -roomNumber: 9217 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Bettine Bresnan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettine Bresnan -sn: Bresnan -description: This is Bettine Bresnan's description -facsimileTelephoneNumber: +1 804 799-8066 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 804 715-2531 -title: Master Peons Technician -userPassword: Password1 -uid: BresnanB -givenName: Bettine -mail: BresnanB@0c6af3053743415cb69498758e59a3c5.bitwarden.com -carLicense: V81T5A -departmentNumber: 3951 -employeeType: Normal -homePhone: +1 804 569-5766 -initials: B. B. -mobile: +1 804 352-3373 -pager: +1 804 478-2564 -roomNumber: 9169 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Blithe Searl,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blithe Searl -sn: Searl -description: This is Blithe Searl's description -facsimileTelephoneNumber: +1 804 558-7999 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 336-7970 -title: Supreme Product Testing Pinhead -userPassword: Password1 -uid: SearlB -givenName: Blithe -mail: SearlB@d7689b7c727b40419f38fdc39c4261e2.bitwarden.com -carLicense: FJ7X2X -departmentNumber: 8272 -employeeType: Contract -homePhone: +1 804 793-2594 -initials: B. S. -mobile: +1 804 439-9987 -pager: +1 804 875-9957 -roomNumber: 9972 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stanislas DeLeon -sn: DeLeon -description: This is Stanislas DeLeon's description -facsimileTelephoneNumber: +1 818 315-7567 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 818 734-8371 -title: Chief Payroll Madonna -userPassword: Password1 -uid: DeLeonS -givenName: Stanislas -mail: DeLeonS@ce001280b666479eb0eb4d06e9257b27.bitwarden.com -carLicense: 33XR91 -departmentNumber: 5013 -employeeType: Normal -homePhone: +1 818 238-6999 -initials: S. D. -mobile: +1 818 234-7123 -pager: +1 818 653-1703 -roomNumber: 9637 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Haig Talton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Haig Talton -sn: Talton -description: This is Haig Talton's description -facsimileTelephoneNumber: +1 213 166-5176 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 656-3591 -title: Chief Janitorial Manager -userPassword: Password1 -uid: TaltonH -givenName: Haig -mail: TaltonH@2a9fef67c2a84062aa431a97e4e79582.bitwarden.com -carLicense: 5C5TCP -departmentNumber: 5176 -employeeType: Contract -homePhone: +1 213 347-2035 -initials: H. T. -mobile: +1 213 732-8702 -pager: +1 213 744-5730 -roomNumber: 9486 -manager: cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ryman Smerdell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ryman Smerdell -sn: Smerdell -description: This is Ryman Smerdell's description -facsimileTelephoneNumber: +1 804 466-6878 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 804 492-9387 -title: Supreme Product Development Writer -userPassword: Password1 -uid: SmerdelR -givenName: Ryman -mail: SmerdelR@0a2f8517f7174295bf5ecdcb9f344855.bitwarden.com -carLicense: OU1CEE -departmentNumber: 3763 -employeeType: Employee -homePhone: +1 804 752-7441 -initials: R. S. -mobile: +1 804 614-2394 -pager: +1 804 689-7270 -roomNumber: 9823 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Admin Cassar,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Admin Cassar -sn: Cassar -description: This is Admin Cassar's description -facsimileTelephoneNumber: +1 804 312-8716 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 804 144-5095 -title: Chief Janitorial Warrior -userPassword: Password1 -uid: CassarA -givenName: Admin -mail: CassarA@b04066f723fa4eb2a82846786b428021.bitwarden.com -carLicense: MNLWT0 -departmentNumber: 3678 -employeeType: Normal -homePhone: +1 804 589-1680 -initials: A. C. -mobile: +1 804 380-1693 -pager: +1 804 886-4541 -roomNumber: 8858 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacinthe Bucklin -sn: Bucklin -description: This is Jacinthe Bucklin's description -facsimileTelephoneNumber: +1 206 284-7774 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 970-2778 -title: Junior Product Testing Director -userPassword: Password1 -uid: BucklinJ -givenName: Jacinthe -mail: BucklinJ@fe6420c124954c6f8c3c4003778996ef.bitwarden.com -carLicense: NLNG65 -departmentNumber: 3231 -employeeType: Normal -homePhone: +1 206 214-3484 -initials: J. B. -mobile: +1 206 118-5047 -pager: +1 206 191-6724 -roomNumber: 9093 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Esmail Santos,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esmail Santos -sn: Santos -description: This is Esmail Santos's description -facsimileTelephoneNumber: +1 510 117-2614 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 510 488-4806 -title: Supreme Janitorial Consultant -userPassword: Password1 -uid: SantosE -givenName: Esmail -mail: SantosE@5fa9a69302a9422abedbd51aa69f472b.bitwarden.com -carLicense: TP5SPQ -departmentNumber: 9347 -employeeType: Contract -homePhone: +1 510 911-5352 -initials: E. S. -mobile: +1 510 486-7053 -pager: +1 510 739-4124 -roomNumber: 8067 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Walter Coley,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walter Coley -sn: Coley -description: This is Walter Coley's description -facsimileTelephoneNumber: +1 818 533-9564 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 118-3805 -title: Junior Human Resources Consultant -userPassword: Password1 -uid: ColeyW -givenName: Walter -mail: ColeyW@672856c5dd4e4183bcd781a952ed21fe.bitwarden.com -carLicense: X27967 -departmentNumber: 6028 -employeeType: Employee -homePhone: +1 818 910-8855 -initials: W. C. -mobile: +1 818 105-3097 -pager: +1 818 884-2156 -roomNumber: 8042 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jeanne Boult,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jeanne Boult -sn: Boult -description: This is Jeanne Boult's description -facsimileTelephoneNumber: +1 818 861-6299 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 818 196-5147 -title: Supreme Janitorial Warrior -userPassword: Password1 -uid: BoultJ -givenName: Jeanne -mail: BoultJ@8a049b49f80d420a99b91944b3a9e703.bitwarden.com -carLicense: RUNTV2 -departmentNumber: 9879 -employeeType: Employee -homePhone: +1 818 605-3597 -initials: J. B. -mobile: +1 818 872-3098 -pager: +1 818 581-8968 -roomNumber: 8136 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Roly Slobodrian,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Avie Scourneau,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avie Scourneau -sn: Scourneau -description: This is Avie Scourneau's description -facsimileTelephoneNumber: +1 415 922-9959 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 415 115-1558 -title: Chief Management Technician -userPassword: Password1 -uid: ScourneA -givenName: Avie -mail: ScourneA@7f4cd5fa42d7400bbd064f829049395c.bitwarden.com -carLicense: GK86LN -departmentNumber: 6222 -employeeType: Normal -homePhone: +1 415 278-1454 -initials: A. S. -mobile: +1 415 115-4157 -pager: +1 415 360-7405 -roomNumber: 9636 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bettie Cescon,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bettie Cescon -sn: Cescon -description: This is Bettie Cescon's description -facsimileTelephoneNumber: +1 408 518-8911 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 408 428-6317 -title: Junior Payroll Sales Rep -userPassword: Password1 -uid: CesconB -givenName: Bettie -mail: CesconB@d0bd6c1a3fa44296a243273f0ddf6cd9.bitwarden.com -carLicense: D4FWUD -departmentNumber: 6763 -employeeType: Normal -homePhone: +1 408 338-1892 -initials: B. C. -mobile: +1 408 267-6514 -pager: +1 408 368-3740 -roomNumber: 9070 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jackie Bissonnette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Maureene Weiser,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maureene Weiser -sn: Weiser -description: This is Maureene Weiser's description -facsimileTelephoneNumber: +1 804 632-4184 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 703-7175 -title: Master Human Resources Architect -userPassword: Password1 -uid: WeiserM -givenName: Maureene -mail: WeiserM@0c871b0ecc1a46debc66287e828580e3.bitwarden.com -carLicense: 3DO9QD -departmentNumber: 5086 -employeeType: Contract -homePhone: +1 804 674-3796 -initials: M. W. -mobile: +1 804 548-3272 -pager: +1 804 835-1877 -roomNumber: 8901 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Melisent Annibale,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisent Annibale -sn: Annibale -description: This is Melisent Annibale's description -facsimileTelephoneNumber: +1 408 246-3911 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 342-7244 -title: Junior Janitorial Director -userPassword: Password1 -uid: AnnibalM -givenName: Melisent -mail: AnnibalM@6882bb306b30484eac03893eca277bd3.bitwarden.com -carLicense: DTWJ2S -departmentNumber: 3406 -employeeType: Normal -homePhone: +1 408 744-3239 -initials: M. A. -mobile: +1 408 702-7423 -pager: +1 408 899-6285 -roomNumber: 9502 -manager: cn=Deloris Mattes,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Corinna Davy,ou=Management,dc=bitwarden, dc=com - -dn: cn=Bonnie Corse,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bonnie Corse -sn: Corse -description: This is Bonnie Corse's description -facsimileTelephoneNumber: +1 206 143-8977 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 679-2906 -title: Associate Peons President -userPassword: Password1 -uid: CorseB -givenName: Bonnie -mail: CorseB@eef26e16e3d34907ba8bf0f347b63dd8.bitwarden.com -carLicense: A1TDJE -departmentNumber: 1134 -employeeType: Normal -homePhone: +1 206 710-7089 -initials: B. C. -mobile: +1 206 416-7315 -pager: +1 206 608-8877 -roomNumber: 8660 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Roshelle Latif,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Querida Gertridge,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Querida Gertridge -sn: Gertridge -description: This is Querida Gertridge's description -facsimileTelephoneNumber: +1 804 144-1134 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 804 321-5798 -title: Master Management Sales Rep -userPassword: Password1 -uid: GertridQ -givenName: Querida -mail: GertridQ@848de2e1032948c1b5d78b7a20263232.bitwarden.com -carLicense: U4X956 -departmentNumber: 5498 -employeeType: Contract -homePhone: +1 804 128-4352 -initials: Q. G. -mobile: +1 804 968-4754 -pager: +1 804 505-8652 -roomNumber: 8873 -manager: cn=Talia Mattson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lily Stites,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lily Stites -sn: Stites -description: This is Lily Stites's description -facsimileTelephoneNumber: +1 415 823-6933 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 415 688-4229 -title: Chief Payroll Evangelist -userPassword: Password1 -uid: StitesL -givenName: Lily -mail: StitesL@296f507ac233431e85903a87c2e1452b.bitwarden.com -carLicense: SNDH5H -departmentNumber: 2684 -employeeType: Employee -homePhone: +1 415 976-1575 -initials: L. S. -mobile: +1 415 267-1875 -pager: +1 415 556-1258 -roomNumber: 8490 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Woon Klimon,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Woon Klimon -sn: Klimon -description: This is Woon Klimon's description -facsimileTelephoneNumber: +1 408 995-6041 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 408 631-1775 -title: Master Management Czar -userPassword: Password1 -uid: KlimonW -givenName: Woon -mail: KlimonW@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com -carLicense: 489TU2 -departmentNumber: 8507 -employeeType: Contract -homePhone: +1 408 689-1989 -initials: W. K. -mobile: +1 408 517-3083 -pager: +1 408 938-7538 -roomNumber: 8913 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Carlota Oros,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlota Oros -sn: Oros -description: This is Carlota Oros's description -facsimileTelephoneNumber: +1 510 899-2876 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 510 372-4975 -title: Chief Payroll Warrior -userPassword: Password1 -uid: OrosC -givenName: Carlota -mail: OrosC@d3825e009de74b68a881393dca2712eb.bitwarden.com -carLicense: LX1970 -departmentNumber: 8045 -employeeType: Employee -homePhone: +1 510 579-8369 -initials: C. O. -mobile: +1 510 435-7733 -pager: +1 510 436-2049 -roomNumber: 8051 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gil Spurway,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gil Spurway -sn: Spurway -description: This is Gil Spurway's description -facsimileTelephoneNumber: +1 206 642-1941 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 206 128-7366 -title: Master Human Resources Figurehead -userPassword: Password1 -uid: SpurwayG -givenName: Gil -mail: SpurwayG@51d1be7d90e1479f9d4a84f4cba3ea09.bitwarden.com -carLicense: 51VW72 -departmentNumber: 6260 -employeeType: Employee -homePhone: +1 206 666-9978 -initials: G. S. -mobile: +1 206 209-3859 -pager: +1 206 400-5612 -roomNumber: 8881 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Licha Weinbender,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Licha Weinbender -sn: Weinbender -description: This is Licha Weinbender's description -facsimileTelephoneNumber: +1 213 943-5950 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 213 420-3799 -title: Associate Product Development Czar -userPassword: Password1 -uid: WeinbenL -givenName: Licha -mail: WeinbenL@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com -carLicense: XM8XAD -departmentNumber: 3239 -employeeType: Employee -homePhone: +1 213 773-2004 -initials: L. W. -mobile: +1 213 551-4789 -pager: +1 213 494-1835 -roomNumber: 8146 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mirabella Awano,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirabella Awano -sn: Awano -description: This is Mirabella Awano's description -facsimileTelephoneNumber: +1 408 968-2188 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 408 598-5679 -title: Master Product Testing Mascot -userPassword: Password1 -uid: AwanoM -givenName: Mirabella -mail: AwanoM@185b51f28c7f46da96dbfb585fb3e90d.bitwarden.com -carLicense: CV0TS4 -departmentNumber: 4379 -employeeType: Normal -homePhone: +1 408 540-5500 -initials: M. A. -mobile: +1 408 183-1799 -pager: +1 408 274-4507 -roomNumber: 8567 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lura Centis,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lura Centis -sn: Centis -description: This is Lura Centis's description -facsimileTelephoneNumber: +1 510 168-2848 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 399-2733 -title: Chief Product Testing Technician -userPassword: Password1 -uid: CentisL -givenName: Lura -mail: CentisL@4f40a523634a450ca8245b527c300f0b.bitwarden.com -carLicense: X0DMX6 -departmentNumber: 5048 -employeeType: Employee -homePhone: +1 510 920-4152 -initials: L. C. -mobile: +1 510 237-2300 -pager: +1 510 218-1384 -roomNumber: 9602 -manager: cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imogen Trasmundi -sn: Trasmundi -description: This is Imogen Trasmundi's description -facsimileTelephoneNumber: +1 818 230-1577 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 556-9964 -title: Chief Product Development Punk -userPassword: Password1 -uid: TrasmunI -givenName: Imogen -mail: TrasmunI@f9c4f76269ed44f38b1b08bb540ca247.bitwarden.com -carLicense: P890WK -departmentNumber: 9723 -employeeType: Contract -homePhone: +1 818 672-6335 -initials: I. T. -mobile: +1 818 875-7971 -pager: +1 818 757-8600 -roomNumber: 9786 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Aveline Berhane,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aveline Berhane -sn: Berhane -description: This is Aveline Berhane's description -facsimileTelephoneNumber: +1 804 291-1434 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 941-6253 -title: Associate Management Janitor -userPassword: Password1 -uid: BerhaneA -givenName: Aveline -mail: BerhaneA@b4304c61f77b49d7b5286781d16ef287.bitwarden.com -carLicense: 9ENMN6 -departmentNumber: 3470 -employeeType: Contract -homePhone: +1 804 595-3982 -initials: A. B. -mobile: +1 804 513-8688 -pager: +1 804 995-2326 -roomNumber: 8680 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanGuy Loewen -sn: Loewen -description: This is JeanGuy Loewen's description -facsimileTelephoneNumber: +1 510 358-7247 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 700-6382 -title: Associate Administrative Assistant -userPassword: Password1 -uid: LoewenJ -givenName: JeanGuy -mail: LoewenJ@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com -carLicense: HRKYI1 -departmentNumber: 2669 -employeeType: Normal -homePhone: +1 510 779-5108 -initials: J. L. -mobile: +1 510 579-1715 -pager: +1 510 380-9721 -roomNumber: 8771 -manager: cn=Bailey Altmann,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Colman Epplett,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Billy Costantino,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Billy Costantino -sn: Costantino -description: This is Billy Costantino's description -facsimileTelephoneNumber: +1 804 626-4605 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 804 594-9337 -title: Supreme Payroll Engineer -userPassword: Password1 -uid: CostantB -givenName: Billy -mail: CostantB@721925c092ab4630a360f318924bd972.bitwarden.com -carLicense: UAWMCG -departmentNumber: 8265 -employeeType: Contract -homePhone: +1 804 158-3418 -initials: B. C. -mobile: +1 804 454-4668 -pager: +1 804 803-7843 -roomNumber: 8092 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dorrie Fortner,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorrie Fortner -sn: Fortner -description: This is Dorrie Fortner's description -facsimileTelephoneNumber: +1 408 102-1050 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 684-6042 -title: Supreme Product Development Director -userPassword: Password1 -uid: FortnerD -givenName: Dorrie -mail: FortnerD@17e6e9bce9be4a43964f6f155661a373.bitwarden.com -carLicense: KARVVY -departmentNumber: 7657 -employeeType: Normal -homePhone: +1 408 510-1461 -initials: D. F. -mobile: +1 408 724-9239 -pager: +1 408 353-2945 -roomNumber: 8626 -manager: cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stephannie Holcombe -sn: Holcombe -description: This is Stephannie Holcombe's description -facsimileTelephoneNumber: +1 510 434-5418 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 510 588-3701 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: HolcombS -givenName: Stephannie -mail: HolcombS@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com -carLicense: 2HUV11 -departmentNumber: 5202 -employeeType: Contract -homePhone: +1 510 734-6064 -initials: S. H. -mobile: +1 510 501-3786 -pager: +1 510 102-9401 -roomNumber: 8581 -manager: cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Frinel Reiser,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karlee Vanwormhoudt -sn: Vanwormhoudt -description: This is Karlee Vanwormhoudt's description -facsimileTelephoneNumber: +1 213 705-9345 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 422-2016 -title: Associate Peons Assistant -userPassword: Password1 -uid: VanwormK -givenName: Karlee -mail: VanwormK@457942790eaf4536a925540b16e6a49f.bitwarden.com -carLicense: 7MEIDE -departmentNumber: 9841 -employeeType: Normal -homePhone: +1 213 935-4569 -initials: K. V. -mobile: +1 213 850-1971 -pager: +1 213 820-6128 -roomNumber: 8990 -manager: cn=Nirmal Loper,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Carleen Toly,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carleen Toly -sn: Toly -description: This is Carleen Toly's description -facsimileTelephoneNumber: +1 510 793-9544 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 510 220-7064 -title: Junior Human Resources Dictator -userPassword: Password1 -uid: TolyC -givenName: Carleen -mail: TolyC@388bb63ae18342968e266bd18c49e361.bitwarden.com -carLicense: OY49D9 -departmentNumber: 9376 -employeeType: Contract -homePhone: +1 510 429-4314 -initials: C. T. -mobile: +1 510 161-2499 -pager: +1 510 634-8818 -roomNumber: 8028 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Vijay Nassr,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vijay Nassr -sn: Nassr -description: This is Vijay Nassr's description -facsimileTelephoneNumber: +1 818 445-1881 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 722-8873 -title: Chief Management Sales Rep -userPassword: Password1 -uid: NassrV -givenName: Vijay -mail: NassrV@e5b7fb51703341b6b79b40d29cc46235.bitwarden.com -carLicense: L48B09 -departmentNumber: 1736 -employeeType: Normal -homePhone: +1 818 351-2411 -initials: V. N. -mobile: +1 818 548-6493 -pager: +1 818 404-5834 -roomNumber: 9168 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sandro Gorius,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandro Gorius -sn: Gorius -description: This is Sandro Gorius's description -facsimileTelephoneNumber: +1 510 790-8501 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 747-9804 -title: Master Human Resources Technician -userPassword: Password1 -uid: GoriusS -givenName: Sandro -mail: GoriusS@d92356164b8e41ecbc89a75089ba1ed5.bitwarden.com -carLicense: 0778YW -departmentNumber: 8194 -employeeType: Contract -homePhone: +1 510 746-1286 -initials: S. G. -mobile: +1 510 789-8695 -pager: +1 510 890-9064 -roomNumber: 8093 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=He Crowder,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: He Crowder -sn: Crowder -description: This is He Crowder's description -facsimileTelephoneNumber: +1 510 772-6411 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 953-2109 -title: Junior Peons Writer -userPassword: Password1 -uid: CrowderH -givenName: He -mail: CrowderH@403ad564c08e47b8824594419bf3ec17.bitwarden.com -carLicense: 0HIOIA -departmentNumber: 4807 -employeeType: Normal -homePhone: +1 510 465-6647 -initials: H. C. -mobile: +1 510 424-7225 -pager: +1 510 596-9490 -roomNumber: 8364 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Atta Kutch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atta Kutch -sn: Kutch -description: This is Atta Kutch's description -facsimileTelephoneNumber: +1 415 991-5759 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 415 238-8112 -title: Master Management Evangelist -userPassword: Password1 -uid: KutchA -givenName: Atta -mail: KutchA@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com -carLicense: IEHT8I -departmentNumber: 6424 -employeeType: Normal -homePhone: +1 415 957-3857 -initials: A. K. -mobile: +1 415 888-8981 -pager: +1 415 986-9995 -roomNumber: 9207 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Devon Kaudel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Devon Kaudel -sn: Kaudel -description: This is Devon Kaudel's description -facsimileTelephoneNumber: +1 415 187-8393 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 415 916-7713 -title: Supreme Administrative Vice President -userPassword: Password1 -uid: KaudelD -givenName: Devon -mail: KaudelD@d98f77a80f7c4109b5fdb982a57a9e6b.bitwarden.com -carLicense: XH0M9N -departmentNumber: 9687 -employeeType: Employee -homePhone: +1 415 151-6721 -initials: D. K. -mobile: +1 415 981-5706 -pager: +1 415 730-5511 -roomNumber: 8445 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Deidre Cirulli,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deidre Cirulli -sn: Cirulli -description: This is Deidre Cirulli's description -facsimileTelephoneNumber: +1 415 815-2062 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 415 483-6132 -title: Chief Peons Punk -userPassword: Password1 -uid: CirulliD -givenName: Deidre -mail: CirulliD@da7bd2be911046399d0c6417c3572f36.bitwarden.com -carLicense: 1MFIXH -departmentNumber: 6690 -employeeType: Normal -homePhone: +1 415 235-8890 -initials: D. C. -mobile: +1 415 366-3360 -pager: +1 415 402-8432 -roomNumber: 8981 -manager: cn=Tandi Dao,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Latisha Dallago,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kala Bourget,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kala Bourget -sn: Bourget -description: This is Kala Bourget's description -facsimileTelephoneNumber: +1 510 327-5058 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 510 938-4991 -title: Associate Peons Consultant -userPassword: Password1 -uid: BourgetK -givenName: Kala -mail: BourgetK@7ed928ce83094d698eeb083bd149cb2f.bitwarden.com -carLicense: 09U8Q0 -departmentNumber: 3566 -employeeType: Normal -homePhone: +1 510 335-4535 -initials: K. B. -mobile: +1 510 664-3058 -pager: +1 510 962-9471 -roomNumber: 9649 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Charo Hembrick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Charo Hembrick -sn: Hembrick -description: This is Charo Hembrick's description -facsimileTelephoneNumber: +1 804 976-3526 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 130-5745 -title: Junior Payroll Warrior -userPassword: Password1 -uid: HembricC -givenName: Charo -mail: HembricC@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com -carLicense: FDEDSS -departmentNumber: 8551 -employeeType: Employee -homePhone: +1 804 158-8129 -initials: C. H. -mobile: +1 804 333-5658 -pager: +1 804 655-8419 -roomNumber: 8014 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marin Suprick,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Janene Torrell,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janene Torrell -sn: Torrell -description: This is Janene Torrell's description -facsimileTelephoneNumber: +1 818 788-3221 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 849-1253 -title: Chief Product Testing Architect -userPassword: Password1 -uid: TorrellJ -givenName: Janene -mail: TorrellJ@4cc04e0f745f47c7be4e632269c6eb14.bitwarden.com -carLicense: WO3V2A -departmentNumber: 8306 -employeeType: Employee -homePhone: +1 818 259-3111 -initials: J. T. -mobile: +1 818 462-5392 -pager: +1 818 242-7360 -roomNumber: 9333 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Eben Shayanpour,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eben Shayanpour -sn: Shayanpour -description: This is Eben Shayanpour's description -facsimileTelephoneNumber: +1 206 362-8718 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 206 985-7259 -title: Master Product Development Janitor -userPassword: Password1 -uid: ShayanpE -givenName: Eben -mail: ShayanpE@13ff1430cb9943818286488abb33cd82.bitwarden.com -carLicense: X7ORN8 -departmentNumber: 8011 -employeeType: Normal -homePhone: +1 206 897-4425 -initials: E. S. -mobile: +1 206 194-6717 -pager: +1 206 122-4003 -roomNumber: 9346 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ethelyn Rozier -sn: Rozier -description: This is Ethelyn Rozier's description -facsimileTelephoneNumber: +1 206 340-9520 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 206 834-4090 -title: Chief Janitorial Dictator -userPassword: Password1 -uid: RozierE -givenName: Ethelyn -mail: RozierE@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com -carLicense: L4RGS3 -departmentNumber: 7559 -employeeType: Employee -homePhone: +1 206 178-8980 -initials: E. R. -mobile: +1 206 896-8517 -pager: +1 206 669-9729 -roomNumber: 9273 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Yves Dhir,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yves Dhir -sn: Dhir -description: This is Yves Dhir's description -facsimileTelephoneNumber: +1 408 151-2947 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 730-8502 -title: Master Payroll Dictator -userPassword: Password1 -uid: DhirY -givenName: Yves -mail: DhirY@ef09bde80592442abb2f639748abce27.bitwarden.com -carLicense: 4B2DOT -departmentNumber: 3748 -employeeType: Contract -homePhone: +1 408 707-5343 -initials: Y. D. -mobile: +1 408 793-4887 -pager: +1 408 192-7603 -roomNumber: 8864 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tildy Bnrlsi -sn: Bnrlsi -description: This is Tildy Bnrlsi's description -facsimileTelephoneNumber: +1 818 960-8006 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 818 633-2166 -title: Associate Human Resources Admin -userPassword: Password1 -uid: BnrlsiT -givenName: Tildy -mail: BnrlsiT@9c774f2280a1402ea1c5682381735a11.bitwarden.com -carLicense: FP4OUX -departmentNumber: 5532 -employeeType: Employee -homePhone: +1 818 972-6511 -initials: T. B. -mobile: +1 818 335-3773 -pager: +1 818 416-5100 -roomNumber: 9765 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aile Frink,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aile Frink -sn: Frink -description: This is Aile Frink's description -facsimileTelephoneNumber: +1 804 595-3859 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 422-6977 -title: Master Product Development Developer -userPassword: Password1 -uid: FrinkA -givenName: Aile -mail: FrinkA@3c0162b1baa744cf93a13a4dd3e63a95.bitwarden.com -carLicense: S4USDK -departmentNumber: 8641 -employeeType: Employee -homePhone: +1 804 391-5916 -initials: A. F. -mobile: +1 804 665-4351 -pager: +1 804 487-2503 -roomNumber: 8440 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Parkinson Bir,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shailendra Calhoun -sn: Calhoun -description: This is Shailendra Calhoun's description -facsimileTelephoneNumber: +1 818 118-7424 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 440-6409 -title: Junior Administrative Warrior -userPassword: Password1 -uid: CalhounS -givenName: Shailendra -mail: CalhounS@939e830de4504aab81a7c388f1546624.bitwarden.com -carLicense: VOTV5Q -departmentNumber: 6390 -employeeType: Normal -homePhone: +1 818 569-7786 -initials: S. C. -mobile: +1 818 720-9196 -pager: +1 818 960-6411 -roomNumber: 8582 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shirlene BrindAmour -sn: BrindAmour -description: This is Shirlene BrindAmour's description -facsimileTelephoneNumber: +1 213 916-5713 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 213 196-2211 -title: Chief Product Testing Architect -userPassword: Password1 -uid: BrindAmS -givenName: Shirlene -mail: BrindAmS@1726f5bfacd044bf871463e64c567d5e.bitwarden.com -carLicense: 6KGOUI -departmentNumber: 9811 -employeeType: Normal -homePhone: +1 213 119-5470 -initials: S. B. -mobile: +1 213 595-5952 -pager: +1 213 357-7012 -roomNumber: 9097 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Damara Jaswal,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Damara Jaswal -sn: Jaswal -description: This is Damara Jaswal's description -facsimileTelephoneNumber: +1 415 466-5090 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 884-9337 -title: Junior Product Testing Czar -userPassword: Password1 -uid: JaswalD -givenName: Damara -mail: JaswalD@ac7712596f924826bb4a05f6697a0ee3.bitwarden.com -carLicense: 0WENPU -departmentNumber: 5880 -employeeType: Contract -homePhone: +1 415 302-3922 -initials: D. J. -mobile: +1 415 159-7425 -pager: +1 415 467-8565 -roomNumber: 9208 -manager: cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ethelin Girotti,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ethelin Girotti -sn: Girotti -description: This is Ethelin Girotti's description -facsimileTelephoneNumber: +1 206 146-1066 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 206 105-3716 -title: Junior Administrative Writer -userPassword: Password1 -uid: GirottiE -givenName: Ethelin -mail: GirottiE@b827ba5736ae48268de38db3e9e259c3.bitwarden.com -carLicense: DNKGH9 -departmentNumber: 8729 -employeeType: Employee -homePhone: +1 206 407-7949 -initials: E. G. -mobile: +1 206 976-5839 -pager: +1 206 456-4360 -roomNumber: 9783 -manager: cn=Neala Seeds,ou=Management,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pramod Foessl,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pramod Foessl -sn: Foessl -description: This is Pramod Foessl's description -facsimileTelephoneNumber: +1 213 289-7891 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 811-9773 -title: Junior Product Testing Artist -userPassword: Password1 -uid: FoesslP -givenName: Pramod -mail: FoesslP@39726a1b008d411d8a28b85a63102ac3.bitwarden.com -carLicense: J8NUA8 -departmentNumber: 2941 -employeeType: Normal -homePhone: +1 213 652-6330 -initials: P. F. -mobile: +1 213 556-8793 -pager: +1 213 152-6903 -roomNumber: 9645 -manager: cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Octavia Handschy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Octavia Handschy -sn: Handschy -description: This is Octavia Handschy's description -facsimileTelephoneNumber: +1 213 519-6564 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 609-3634 -title: Junior Peons Figurehead -userPassword: Password1 -uid: HandschO -givenName: Octavia -mail: HandschO@d121b17d8b8d40b599281654effa97ce.bitwarden.com -carLicense: R353BH -departmentNumber: 6830 -employeeType: Normal -homePhone: +1 213 606-1600 -initials: O. H. -mobile: +1 213 101-7686 -pager: +1 213 525-6318 -roomNumber: 9754 -manager: cn=Sheela Adam,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kerstin Nandi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kerstin Nandi -sn: Nandi -description: This is Kerstin Nandi's description -facsimileTelephoneNumber: +1 206 969-1431 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 406-3956 -title: Chief Management Czar -userPassword: Password1 -uid: NandiK -givenName: Kerstin -mail: NandiK@353b753321aa4a97a115856474e231b6.bitwarden.com -carLicense: FYSD93 -departmentNumber: 4870 -employeeType: Employee -homePhone: +1 206 894-9989 -initials: K. N. -mobile: +1 206 866-4587 -pager: +1 206 381-4890 -roomNumber: 9079 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Elwood Bouick,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elwood Bouick -sn: Bouick -description: This is Elwood Bouick's description -facsimileTelephoneNumber: +1 206 106-8200 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 597-1209 -title: Supreme Product Development Director -userPassword: Password1 -uid: BouickE -givenName: Elwood -mail: BouickE@2246db4eb56e489a8d8791baa981b362.bitwarden.com -carLicense: 41YTBR -departmentNumber: 1172 -employeeType: Employee -homePhone: +1 206 679-7308 -initials: E. B. -mobile: +1 206 102-6752 -pager: +1 206 729-3205 -roomNumber: 8283 -manager: cn=Arlinda Weddell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clarence Dpu,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarence Dpu -sn: Dpu -description: This is Clarence Dpu's description -facsimileTelephoneNumber: +1 206 356-2021 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 870-3720 -title: Chief Management Stooge -userPassword: Password1 -uid: DpuC -givenName: Clarence -mail: DpuC@61fe9b3be1774f2d947cd8507fb19a6a.bitwarden.com -carLicense: 76C0W8 -departmentNumber: 4638 -employeeType: Employee -homePhone: +1 206 359-7201 -initials: C. D. -mobile: +1 206 439-9555 -pager: +1 206 504-3656 -roomNumber: 9029 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Shama Norton,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shama Norton -sn: Norton -description: This is Shama Norton's description -facsimileTelephoneNumber: +1 510 725-7174 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 510 636-7256 -title: Supreme Janitorial Writer -userPassword: Password1 -uid: NortonS -givenName: Shama -mail: NortonS@7c673260c1654ab39a2cf9c0221276cf.bitwarden.com -carLicense: KUPW87 -departmentNumber: 1673 -employeeType: Contract -homePhone: +1 510 842-8648 -initials: S. N. -mobile: +1 510 683-5663 -pager: +1 510 685-2735 -roomNumber: 8754 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Willie Godse,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Vo Sauer,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vo Sauer -sn: Sauer -description: This is Vo Sauer's description -facsimileTelephoneNumber: +1 408 419-7544 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 702-7453 -title: Junior Payroll Director -userPassword: Password1 -uid: SauerV -givenName: Vo -mail: SauerV@503fe0b136ce4292a59167d529c63c6f.bitwarden.com -carLicense: 3OOG5A -departmentNumber: 5202 -employeeType: Normal -homePhone: +1 408 342-9550 -initials: V. S. -mobile: +1 408 548-2702 -pager: +1 408 492-4060 -roomNumber: 9258 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gilberte Ferland,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilberte Ferland -sn: Ferland -description: This is Gilberte Ferland's description -facsimileTelephoneNumber: +1 510 357-8019 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 149-6641 -title: Junior Administrative Janitor -userPassword: Password1 -uid: FerlandG -givenName: Gilberte -mail: FerlandG@dfcb2a19ea66423b8c7753e337720a1d.bitwarden.com -carLicense: 1VGUD1 -departmentNumber: 6286 -employeeType: Contract -homePhone: +1 510 606-2892 -initials: G. F. -mobile: +1 510 128-1963 -pager: +1 510 972-3568 -roomNumber: 8097 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Valeria Harmon,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Valeria Harmon -sn: Harmon -description: This is Valeria Harmon's description -facsimileTelephoneNumber: +1 415 296-1464 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 415 101-1364 -title: Junior Janitorial Assistant -userPassword: Password1 -uid: HarmonV -givenName: Valeria -mail: HarmonV@15697ed59de04051be420308b9e31bf0.bitwarden.com -carLicense: ICHDVA -departmentNumber: 8029 -employeeType: Employee -homePhone: +1 415 721-9607 -initials: V. H. -mobile: +1 415 637-7646 -pager: +1 415 723-9777 -roomNumber: 8991 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francisca Ogrodnik -sn: Ogrodnik -description: This is Francisca Ogrodnik's description -facsimileTelephoneNumber: +1 415 506-2076 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 415 459-4056 -title: Supreme Administrative Technician -userPassword: Password1 -uid: OgrodniF -givenName: Francisca -mail: OgrodniF@003a19d1bf9146d984f813f1bd527371.bitwarden.com -carLicense: NYDUTH -departmentNumber: 3111 -employeeType: Contract -homePhone: +1 415 105-4910 -initials: F. O. -mobile: +1 415 864-7384 -pager: +1 415 380-2765 -roomNumber: 9833 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dorthy Youngman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorthy Youngman -sn: Youngman -description: This is Dorthy Youngman's description -facsimileTelephoneNumber: +1 408 270-9779 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 408 205-1958 -title: Supreme Management Punk -userPassword: Password1 -uid: YoungmaD -givenName: Dorthy -mail: YoungmaD@81b3fb831aa74c6eb047aa19d5ff709c.bitwarden.com -carLicense: GVEJQ7 -departmentNumber: 8792 -employeeType: Employee -homePhone: +1 408 688-5041 -initials: D. Y. -mobile: +1 408 771-5779 -pager: +1 408 257-5507 -roomNumber: 8488 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gilles Litherland,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilles Litherland -sn: Litherland -description: This is Gilles Litherland's description -facsimileTelephoneNumber: +1 408 676-1891 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 408 751-8317 -title: Supreme Payroll Developer -userPassword: Password1 -uid: LitherlG -givenName: Gilles -mail: LitherlG@d3b61e3cc90b49cc9ba1a573da70d77b.bitwarden.com -carLicense: WLANDL -departmentNumber: 7109 -employeeType: Normal -homePhone: +1 408 164-9547 -initials: G. L. -mobile: +1 408 997-2959 -pager: +1 408 912-7599 -roomNumber: 9647 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Erick Wicht,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erick Wicht -sn: Wicht -description: This is Erick Wicht's description -facsimileTelephoneNumber: +1 818 277-3531 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 818 328-5581 -title: Master Peons Consultant -userPassword: Password1 -uid: WichtE -givenName: Erick -mail: WichtE@a0faacd6502f4c289ffd19b314c03e45.bitwarden.com -carLicense: QJ76W3 -departmentNumber: 1843 -employeeType: Employee -homePhone: +1 818 154-4643 -initials: E. W. -mobile: +1 818 431-9998 -pager: +1 818 304-7533 -roomNumber: 8984 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: DeAnna Electronics -sn: Electronics -description: This is DeAnna Electronics's description -facsimileTelephoneNumber: +1 213 169-4475 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 213 344-1359 -title: Junior Janitorial Fellow -userPassword: Password1 -uid: ElectroD -givenName: DeAnna -mail: ElectroD@7070424bb94c4f288a054e30d222335a.bitwarden.com -carLicense: BGM6EC -departmentNumber: 1265 -employeeType: Employee -homePhone: +1 213 232-9978 -initials: D. E. -mobile: +1 213 312-2335 -pager: +1 213 227-2261 -roomNumber: 9370 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Kassie Nava,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kassie Nava -sn: Nava -description: This is Kassie Nava's description -facsimileTelephoneNumber: +1 213 419-1962 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 575-7939 -title: Chief Product Development Assistant -userPassword: Password1 -uid: NavaK -givenName: Kassie -mail: NavaK@7b2b1b92e9ae4fe4a68b2d0b29724ff5.bitwarden.com -carLicense: 85K7FT -departmentNumber: 9324 -employeeType: Contract -homePhone: +1 213 466-7481 -initials: K. N. -mobile: +1 213 978-1591 -pager: +1 213 110-5871 -roomNumber: 8801 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Opaline Ober,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opaline Ober -sn: Ober -description: This is Opaline Ober's description -facsimileTelephoneNumber: +1 804 956-4433 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 804 220-9227 -title: Master Janitorial Madonna -userPassword: Password1 -uid: OberO -givenName: Opaline -mail: OberO@13f66f98b46e4ca78042c5426b60b783.bitwarden.com -carLicense: Y9G7D5 -departmentNumber: 3884 -employeeType: Contract -homePhone: +1 804 886-4063 -initials: O. O. -mobile: +1 804 831-3758 -pager: +1 804 263-5543 -roomNumber: 8657 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ronneke Gilles -sn: Gilles -description: This is Ronneke Gilles's description -facsimileTelephoneNumber: +1 408 315-1245 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 408 946-6472 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: GillesR -givenName: Ronneke -mail: GillesR@bf3722e960fc4d239d118bd3637206be.bitwarden.com -carLicense: BCGISU -departmentNumber: 4387 -employeeType: Employee -homePhone: +1 408 478-6110 -initials: R. G. -mobile: +1 408 524-6565 -pager: +1 408 281-9877 -roomNumber: 9400 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Madan Baab,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madan Baab -sn: Baab -description: This is Madan Baab's description -facsimileTelephoneNumber: +1 408 705-1572 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 903-7945 -title: Supreme Product Development Assistant -userPassword: Password1 -uid: BaabM -givenName: Madan -mail: BaabM@5427bdee75c245c39f1a2b879610cd11.bitwarden.com -carLicense: 0P9VSE -departmentNumber: 6738 -employeeType: Contract -homePhone: +1 408 779-8614 -initials: M. B. -mobile: +1 408 174-2764 -pager: +1 408 809-1839 -roomNumber: 9657 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Htd Hersee,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Htd Hersee -sn: Hersee -description: This is Htd Hersee's description -facsimileTelephoneNumber: +1 206 389-8190 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 619-2456 -title: Junior Administrative Consultant -userPassword: Password1 -uid: HerseeH -givenName: Htd -mail: HerseeH@64c2fa20001b495182e976975782823e.bitwarden.com -carLicense: IHNENM -departmentNumber: 1292 -employeeType: Contract -homePhone: +1 206 108-4529 -initials: H. H. -mobile: +1 206 396-6582 -pager: +1 206 467-7000 -roomNumber: 9673 -manager: cn=Access Banerd,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Helaine Sture,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dorita Anker,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorita Anker -sn: Anker -description: This is Dorita Anker's description -facsimileTelephoneNumber: +1 818 178-9762 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 818 339-8540 -title: Supreme Product Testing Architect -userPassword: Password1 -uid: AnkerD -givenName: Dorita -mail: AnkerD@ba86ce5a5ce74352a483e9becf24707d.bitwarden.com -carLicense: O6DCAY -departmentNumber: 1261 -employeeType: Contract -homePhone: +1 818 120-9769 -initials: D. A. -mobile: +1 818 940-1691 -pager: +1 818 927-7849 -roomNumber: 8084 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Christopher Cohea,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christopher Cohea -sn: Cohea -description: This is Christopher Cohea's description -facsimileTelephoneNumber: +1 415 672-8606 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 415 587-3636 -title: Junior Management Pinhead -userPassword: Password1 -uid: CoheaC -givenName: Christopher -mail: CoheaC@364a7b91d06e4e96b9f9da53be963330.bitwarden.com -carLicense: WPVMIP -departmentNumber: 7833 -employeeType: Normal -homePhone: +1 415 294-8591 -initials: C. C. -mobile: +1 415 424-1005 -pager: +1 415 498-3714 -roomNumber: 9646 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Robbie Bunting,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robbie Bunting -sn: Bunting -description: This is Robbie Bunting's description -facsimileTelephoneNumber: +1 415 633-1398 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 900-8292 -title: Supreme Human Resources Admin -userPassword: Password1 -uid: BuntingR -givenName: Robbie -mail: BuntingR@ef2d41c14b454c68ae998d020dbd8441.bitwarden.com -carLicense: UAOEC6 -departmentNumber: 8521 -employeeType: Contract -homePhone: +1 415 599-2901 -initials: R. B. -mobile: +1 415 845-5409 -pager: +1 415 995-8972 -roomNumber: 9945 -manager: cn=Frinel Beeston,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Antonetta Vitacco -sn: Vitacco -description: This is Antonetta Vitacco's description -facsimileTelephoneNumber: +1 804 520-9853 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 236-8309 -title: Associate Administrative Stooge -userPassword: Password1 -uid: VitaccoA -givenName: Antonetta -mail: VitaccoA@d8cda96778684be5a884f9cf0be697ce.bitwarden.com -carLicense: ECU4XV -departmentNumber: 5776 -employeeType: Employee -homePhone: +1 804 577-7337 -initials: A. V. -mobile: +1 804 557-5003 -pager: +1 804 591-6054 -roomNumber: 9437 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cammy GarciaLamarca -sn: GarciaLamarca -description: This is Cammy GarciaLamarca's description -facsimileTelephoneNumber: +1 510 575-7653 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 510 276-6465 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: GarciaLC -givenName: Cammy -mail: GarciaLC@47835e50e03e464aa819e55cdfc4261b.bitwarden.com -carLicense: UHJ6OA -departmentNumber: 7726 -employeeType: Contract -homePhone: +1 510 377-1281 -initials: C. G. -mobile: +1 510 198-4405 -pager: +1 510 938-1839 -roomNumber: 8086 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Frederica KongQuee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Masood Shipe,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Masood Shipe -sn: Shipe -description: This is Masood Shipe's description -facsimileTelephoneNumber: +1 818 350-1664 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 215-6933 -title: Associate Management Mascot -userPassword: Password1 -uid: ShipeM -givenName: Masood -mail: ShipeM@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com -carLicense: B0NTO1 -departmentNumber: 2031 -employeeType: Contract -homePhone: +1 818 377-1825 -initials: M. S. -mobile: +1 818 854-2638 -pager: +1 818 814-6676 -roomNumber: 9627 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abbye Matsuzawa -sn: Matsuzawa -description: This is Abbye Matsuzawa's description -facsimileTelephoneNumber: +1 415 797-5603 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 415 270-6708 -title: Associate Janitorial Writer -userPassword: Password1 -uid: MatsuzaA -givenName: Abbye -mail: MatsuzaA@1f4900f32c02427db7ff10eff22275bb.bitwarden.com -carLicense: BEC4I4 -departmentNumber: 7061 -employeeType: Contract -homePhone: +1 415 363-4787 -initials: A. M. -mobile: +1 415 312-1035 -pager: +1 415 101-7144 -roomNumber: 8303 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sandeep McLachlan -sn: McLachlan -description: This is Sandeep McLachlan's description -facsimileTelephoneNumber: +1 510 696-8096 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 690-7860 -title: Master Janitorial Admin -userPassword: Password1 -uid: McLachlS -givenName: Sandeep -mail: McLachlS@4fdb4b1142dd43e2b745e38a2e8dcfc4.bitwarden.com -carLicense: Q2AJAC -departmentNumber: 5116 -employeeType: Normal -homePhone: +1 510 429-1341 -initials: S. M. -mobile: +1 510 185-2107 -pager: +1 510 567-9152 -roomNumber: 8725 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Bernardina Sreedhar,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernardina Sreedhar -sn: Sreedhar -description: This is Bernardina Sreedhar's description -facsimileTelephoneNumber: +1 510 224-7563 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 510 403-7584 -title: Master Management Pinhead -userPassword: Password1 -uid: SreedhaB -givenName: Bernardina -mail: SreedhaB@e1b5546a5ab54f1a8c4afd4caf48fb6f.bitwarden.com -carLicense: V41ETR -departmentNumber: 4985 -employeeType: Normal -homePhone: +1 510 837-8209 -initials: B. S. -mobile: +1 510 159-2831 -pager: +1 510 659-6512 -roomNumber: 9947 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Berthe Peter,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Atl Corbin,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Atl Corbin -sn: Corbin -description: This is Atl Corbin's description -facsimileTelephoneNumber: +1 206 481-6839 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 259-4206 -title: Supreme Product Testing Punk -userPassword: Password1 -uid: CorbinA -givenName: Atl -mail: CorbinA@31088ab6ae1c44e2b8845b41b99020c2.bitwarden.com -carLicense: V8USCT -departmentNumber: 7674 -employeeType: Employee -homePhone: +1 206 657-5936 -initials: A. C. -mobile: +1 206 507-9705 -pager: +1 206 732-7598 -roomNumber: 8817 -manager: cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alice Knighton,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alice Knighton -sn: Knighton -description: This is Alice Knighton's description -facsimileTelephoneNumber: +1 804 331-5776 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 804 445-6378 -title: Master Management Architect -userPassword: Password1 -uid: KnightoA -givenName: Alice -mail: KnightoA@cb07970b0c0045b19cc41917f946567f.bitwarden.com -carLicense: XKJGQS -departmentNumber: 9131 -employeeType: Contract -homePhone: +1 804 947-2724 -initials: A. K. -mobile: +1 804 444-4328 -pager: +1 804 116-5146 -roomNumber: 9092 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fern Okafo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fern Okafo -sn: Okafo -description: This is Fern Okafo's description -facsimileTelephoneNumber: +1 213 383-8297 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 213 382-6092 -title: Associate Product Development Dictator -userPassword: Password1 -uid: OkafoF -givenName: Fern -mail: OkafoF@387cb4eeb42b453d9fdeaffd6fead144.bitwarden.com -carLicense: ELRGYC -departmentNumber: 9383 -employeeType: Contract -homePhone: +1 213 112-1113 -initials: F. O. -mobile: +1 213 922-8997 -pager: +1 213 448-3930 -roomNumber: 8810 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Brietta Dupras,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brietta Dupras -sn: Dupras -description: This is Brietta Dupras's description -facsimileTelephoneNumber: +1 415 321-8079 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 167-7227 -title: Associate Management Director -userPassword: Password1 -uid: DuprasB -givenName: Brietta -mail: DuprasB@64f2029803c84bd485b5906422a02667.bitwarden.com -carLicense: 0EBAHY -departmentNumber: 6890 -employeeType: Employee -homePhone: +1 415 730-5825 -initials: B. D. -mobile: +1 415 553-2023 -pager: +1 415 997-9548 -roomNumber: 8951 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Wanda Becker,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wanda Becker -sn: Becker -description: This is Wanda Becker's description -facsimileTelephoneNumber: +1 408 758-8017 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 408 740-2823 -title: Master Human Resources Grunt -userPassword: Password1 -uid: BeckerW -givenName: Wanda -mail: BeckerW@a6318282a95143ad9eb6eec2fd89dea7.bitwarden.com -carLicense: D0FI63 -departmentNumber: 9551 -employeeType: Normal -homePhone: +1 408 480-9718 -initials: W. B. -mobile: +1 408 587-8493 -pager: +1 408 375-1749 -roomNumber: 8931 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Elyssa Chui,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gerben Kozlowski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerben Kozlowski -sn: Kozlowski -description: This is Gerben Kozlowski's description -facsimileTelephoneNumber: +1 510 554-5899 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 216-4416 -title: Supreme Management Manager -userPassword: Password1 -uid: KozlowsG -givenName: Gerben -mail: KozlowsG@ef62870980d64d4ebbfd1c03f4cab294.bitwarden.com -carLicense: O8MWDO -departmentNumber: 7627 -employeeType: Contract -homePhone: +1 510 251-4844 -initials: G. K. -mobile: +1 510 939-6231 -pager: +1 510 327-3952 -roomNumber: 8971 -manager: cn=Blaise Bookings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Maynard Burness,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maynard Burness -sn: Burness -description: This is Maynard Burness's description -facsimileTelephoneNumber: +1 213 627-5770 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 213 715-1374 -title: Junior Product Development Czar -userPassword: Password1 -uid: BurnessM -givenName: Maynard -mail: BurnessM@520c5bcfe42945ff9a9bc4329f8d9224.bitwarden.com -carLicense: KDEW05 -departmentNumber: 5905 -employeeType: Employee -homePhone: +1 213 175-2870 -initials: M. B. -mobile: +1 213 605-5827 -pager: +1 213 474-6102 -roomNumber: 8394 -manager: cn=Iwona Eicher,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sylva Milloy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sylva Milloy -sn: Milloy -description: This is Sylva Milloy's description -facsimileTelephoneNumber: +1 408 273-1077 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 408 339-9879 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: MilloyS -givenName: Sylva -mail: MilloyS@804b9151f1ba415a894983275163dae1.bitwarden.com -carLicense: 8NVBJR -departmentNumber: 3851 -employeeType: Normal -homePhone: +1 408 854-3897 -initials: S. M. -mobile: +1 408 260-5536 -pager: +1 408 339-3134 -roomNumber: 9928 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=CheeYin Westphal,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: CheeYin Westphal -sn: Westphal -description: This is CheeYin Westphal's description -facsimileTelephoneNumber: +1 408 492-3765 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 408 171-3650 -title: Associate Administrative Madonna -userPassword: Password1 -uid: WestphaC -givenName: CheeYin -mail: WestphaC@a1372432defa4ccd9584b648a051efd1.bitwarden.com -carLicense: LVRR7W -departmentNumber: 9581 -employeeType: Contract -homePhone: +1 408 539-2451 -initials: C. W. -mobile: +1 408 401-8723 -pager: +1 408 577-7748 -roomNumber: 8763 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ThanhQuoc NadeauDostie -sn: NadeauDostie -description: This is ThanhQuoc NadeauDostie's description -facsimileTelephoneNumber: +1 206 665-3473 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 206 824-3544 -title: Chief Peons Technician -userPassword: Password1 -uid: NadeauDT -givenName: ThanhQuoc -mail: NadeauDT@d457e1580197417888cc4a9c93599471.bitwarden.com -carLicense: OKKBKP -departmentNumber: 4363 -employeeType: Contract -homePhone: +1 206 285-5872 -initials: T. N. -mobile: +1 206 163-6657 -pager: +1 206 977-7581 -roomNumber: 9296 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Bawn McNeal,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bawn McNeal -sn: McNeal -description: This is Bawn McNeal's description -facsimileTelephoneNumber: +1 213 921-7031 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 213 614-6476 -title: Junior Peons Fellow -userPassword: Password1 -uid: McNealB -givenName: Bawn -mail: McNealB@9abf99278fb8488383a30c0af0b67716.bitwarden.com -carLicense: 8OGE5Y -departmentNumber: 8081 -employeeType: Contract -homePhone: +1 213 164-7815 -initials: B. M. -mobile: +1 213 385-3006 -pager: +1 213 151-8354 -roomNumber: 8108 -manager: cn=Karna Netto,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Raine Fogle,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raine Fogle -sn: Fogle -description: This is Raine Fogle's description -facsimileTelephoneNumber: +1 408 360-8959 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 984-1678 -title: Associate Peons Dictator -userPassword: Password1 -uid: FogleR -givenName: Raine -mail: FogleR@cd3e8f43f0dd4d3fb94f3baba8d46ade.bitwarden.com -carLicense: AXLRSB -departmentNumber: 2398 -employeeType: Employee -homePhone: +1 408 480-3206 -initials: R. F. -mobile: +1 408 917-7985 -pager: +1 408 345-5452 -roomNumber: 9486 -manager: cn=Melonie Loveland,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Matt Casey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eyde Sitch,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eyde Sitch -sn: Sitch -description: This is Eyde Sitch's description -facsimileTelephoneNumber: +1 415 545-5813 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 415 867-6396 -title: Associate Management Technician -userPassword: Password1 -uid: SitchE -givenName: Eyde -mail: SitchE@7193a73f55bc4b758a5c65a864323aa2.bitwarden.com -carLicense: APX0DV -departmentNumber: 5234 -employeeType: Employee -homePhone: +1 415 873-3008 -initials: E. S. -mobile: +1 415 821-2374 -pager: +1 415 700-3001 -roomNumber: 9441 -manager: cn=Nike Mayfield,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Windowing Walkins,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Windowing Walkins -sn: Walkins -description: This is Windowing Walkins's description -facsimileTelephoneNumber: +1 206 512-9259 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 740-3680 -title: Master Product Testing Mascot -userPassword: Password1 -uid: WalkinsW -givenName: Windowing -mail: WalkinsW@f9e807ad6c8448a7b4463b10b5cc7416.bitwarden.com -carLicense: VXW6UX -departmentNumber: 3748 -employeeType: Normal -homePhone: +1 206 380-2987 -initials: W. W. -mobile: +1 206 550-6123 -pager: +1 206 907-6647 -roomNumber: 8841 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alisun Hampel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alisun Hampel -sn: Hampel -description: This is Alisun Hampel's description -facsimileTelephoneNumber: +1 415 839-7812 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 415 451-3099 -title: Associate Management Architect -userPassword: Password1 -uid: HampelA -givenName: Alisun -mail: HampelA@d52c1f1046c6411eb0907201f8f5a6d8.bitwarden.com -carLicense: TXTMVQ -departmentNumber: 4252 -employeeType: Normal -homePhone: +1 415 149-3548 -initials: A. H. -mobile: +1 415 986-3207 -pager: +1 415 965-1125 -roomNumber: 8089 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fabienne Vempati,ou=Management,dc=bitwarden, dc=com - -dn: cn=Quinta Pimpare,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Quinta Pimpare -sn: Pimpare -description: This is Quinta Pimpare's description -facsimileTelephoneNumber: +1 818 471-6035 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 797-2873 -title: Junior Product Development Janitor -userPassword: Password1 -uid: PimpareQ -givenName: Quinta -mail: PimpareQ@926986a7a9224c51b55271804ad9a9d9.bitwarden.com -carLicense: K5C5QV -departmentNumber: 5192 -employeeType: Normal -homePhone: +1 818 698-2879 -initials: Q. P. -mobile: +1 818 505-6044 -pager: +1 818 953-5088 -roomNumber: 8207 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jemimah Whitney,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jemimah Whitney -sn: Whitney -description: This is Jemimah Whitney's description -facsimileTelephoneNumber: +1 818 462-9406 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 818 321-5576 -title: Associate Product Development Vice President -userPassword: Password1 -uid: WhitneyJ -givenName: Jemimah -mail: WhitneyJ@687816d020af4e4c9d25419b3dd63e14.bitwarden.com -carLicense: O33OWR -departmentNumber: 2122 -employeeType: Normal -homePhone: +1 818 615-8705 -initials: J. W. -mobile: +1 818 701-6784 -pager: +1 818 901-9425 -roomNumber: 9723 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Marta McNerlan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marta McNerlan -sn: McNerlan -description: This is Marta McNerlan's description -facsimileTelephoneNumber: +1 213 170-2702 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 213 325-9790 -title: Master Peons Figurehead -userPassword: Password1 -uid: McNerlaM -givenName: Marta -mail: McNerlaM@2faed39246da44659e67f7ee9bc9a292.bitwarden.com -carLicense: HFJ6IB -departmentNumber: 4072 -employeeType: Contract -homePhone: +1 213 973-7781 -initials: M. M. -mobile: +1 213 143-4920 -pager: +1 213 982-4958 -roomNumber: 9817 -manager: cn=Grissel Beaudoin,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Miranda Sobel,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miranda Sobel -sn: Sobel -description: This is Miranda Sobel's description -facsimileTelephoneNumber: +1 213 167-9206 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 213 289-1316 -title: Associate Human Resources Punk -userPassword: Password1 -uid: SobelM -givenName: Miranda -mail: SobelM@01a39cd47fba422abe5be28943be33a3.bitwarden.com -carLicense: EX9FT7 -departmentNumber: 8608 -employeeType: Contract -homePhone: +1 213 555-9557 -initials: M. S. -mobile: +1 213 789-5739 -pager: +1 213 467-3122 -roomNumber: 9533 -manager: cn=Elianore Snapper,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hr Healy,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Minda Andric,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minda Andric -sn: Andric -description: This is Minda Andric's description -facsimileTelephoneNumber: +1 213 551-5235 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 213 101-1625 -title: Junior Peons Assistant -userPassword: Password1 -uid: AndricM -givenName: Minda -mail: AndricM@c5077a2f25784ddab82881f1aec25848.bitwarden.com -carLicense: NL73MI -departmentNumber: 8073 -employeeType: Normal -homePhone: +1 213 918-1358 -initials: M. A. -mobile: +1 213 222-9436 -pager: +1 213 414-6716 -roomNumber: 9589 -manager: cn=Saman Dunik,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Elbert Strauch,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roselle Baber,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roselle Baber -sn: Baber -description: This is Roselle Baber's description -facsimileTelephoneNumber: +1 510 339-9325 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 510 689-7342 -title: Associate Management Pinhead -userPassword: Password1 -uid: BaberR -givenName: Roselle -mail: BaberR@b8d27e8398214587851640fca750ea6f.bitwarden.com -carLicense: HG98VB -departmentNumber: 6179 -employeeType: Normal -homePhone: +1 510 202-3472 -initials: R. B. -mobile: +1 510 517-6486 -pager: +1 510 717-4269 -roomNumber: 9231 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lelah Marcellus,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Four Keene,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Four Keene -sn: Keene -description: This is Four Keene's description -facsimileTelephoneNumber: +1 510 907-1273 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 510 895-8564 -title: Chief Peons Pinhead -userPassword: Password1 -uid: KeeneF -givenName: Four -mail: KeeneF@271b979d05d84246a9dbf07f2554970e.bitwarden.com -carLicense: BGUBM6 -departmentNumber: 4614 -employeeType: Contract -homePhone: +1 510 716-4605 -initials: F. K. -mobile: +1 510 158-4816 -pager: +1 510 470-4628 -roomNumber: 9644 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Souza Salyer,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Souza Salyer -sn: Salyer -description: This is Souza Salyer's description -facsimileTelephoneNumber: +1 415 607-4807 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 257-9395 -title: Master Human Resources Assistant -userPassword: Password1 -uid: SalyerS -givenName: Souza -mail: SalyerS@e36a0def7d834657ab4aab201a87a463.bitwarden.com -carLicense: PB7HAL -departmentNumber: 9225 -employeeType: Employee -homePhone: +1 415 977-7696 -initials: S. S. -mobile: +1 415 998-8923 -pager: +1 415 194-5027 -roomNumber: 9137 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Petri Beehler,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Petri Beehler -sn: Beehler -description: This is Petri Beehler's description -facsimileTelephoneNumber: +1 510 847-2998 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 510 611-7187 -title: Associate Management Mascot -userPassword: Password1 -uid: BeehlerP -givenName: Petri -mail: BeehlerP@530608b4f9df417187aa615866b37d82.bitwarden.com -carLicense: JH4LFR -departmentNumber: 7600 -employeeType: Employee -homePhone: +1 510 562-3528 -initials: P. B. -mobile: +1 510 245-7280 -pager: +1 510 846-6417 -roomNumber: 8761 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ondrea Schultze,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Annadiane Hyrne,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annadiane Hyrne -sn: Hyrne -description: This is Annadiane Hyrne's description -facsimileTelephoneNumber: +1 213 653-4894 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 493-5620 -title: Associate Peons Artist -userPassword: Password1 -uid: HyrneA -givenName: Annadiane -mail: HyrneA@4467185dad394a2ab964d923a668f7a8.bitwarden.com -carLicense: 64BC71 -departmentNumber: 2610 -employeeType: Normal -homePhone: +1 213 180-1178 -initials: A. H. -mobile: +1 213 326-8008 -pager: +1 213 957-6438 -roomNumber: 8193 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Freida Nock,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Freida Nock -sn: Nock -description: This is Freida Nock's description -facsimileTelephoneNumber: +1 408 195-9370 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 408 906-8573 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: NockF -givenName: Freida -mail: NockF@e358162fa0384d918adc01a68c3773f5.bitwarden.com -carLicense: 1O96CS -departmentNumber: 6969 -employeeType: Employee -homePhone: +1 408 855-7865 -initials: F. N. -mobile: +1 408 184-8453 -pager: +1 408 865-3846 -roomNumber: 9383 -manager: cn=Pavla Keiser,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Adrianne Hollenbach,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Adrianne Hollenbach -sn: Hollenbach -description: This is Adrianne Hollenbach's description -facsimileTelephoneNumber: +1 408 686-5772 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 107-6259 -title: Junior Management Madonna -userPassword: Password1 -uid: HollenbA -givenName: Adrianne -mail: HollenbA@17090ec80eaa480fa5878f4ca04b3503.bitwarden.com -carLicense: QMIPTL -departmentNumber: 2331 -employeeType: Normal -homePhone: +1 408 865-7525 -initials: A. H. -mobile: +1 408 611-1082 -pager: +1 408 193-9709 -roomNumber: 9637 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Leon Hulme,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leon Hulme -sn: Hulme -description: This is Leon Hulme's description -facsimileTelephoneNumber: +1 206 230-1234 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 206 661-5169 -title: Master Human Resources Visionary -userPassword: Password1 -uid: HulmeL -givenName: Leon -mail: HulmeL@a0e52fac0f494b0982a62c82b5201e22.bitwarden.com -carLicense: E99Y4Y -departmentNumber: 7149 -employeeType: Employee -homePhone: +1 206 589-2860 -initials: L. H. -mobile: +1 206 324-5176 -pager: +1 206 885-4539 -roomNumber: 9477 -manager: cn=Maryl Petrick,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Izabel Schnell,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Izabel Schnell -sn: Schnell -description: This is Izabel Schnell's description -facsimileTelephoneNumber: +1 510 577-2854 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 510 965-3732 -title: Supreme Product Development Punk -userPassword: Password1 -uid: SchnellI -givenName: Izabel -mail: SchnellI@559e1a46c2f944d8a33837a661c67fa0.bitwarden.com -carLicense: DASMVN -departmentNumber: 2272 -employeeType: Normal -homePhone: +1 510 679-8066 -initials: I. S. -mobile: +1 510 823-4211 -pager: +1 510 351-7880 -roomNumber: 8402 -manager: cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Christie Andersen,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Jammie Parisien,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jammie Parisien -sn: Parisien -description: This is Jammie Parisien's description -facsimileTelephoneNumber: +1 415 473-6622 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 415 582-3820 -title: Master Administrative Figurehead -userPassword: Password1 -uid: ParisieJ -givenName: Jammie -mail: ParisieJ@8318909e0776426c8a3322dfc777c59c.bitwarden.com -carLicense: 0E3SJ5 -departmentNumber: 6447 -employeeType: Employee -homePhone: +1 415 473-1915 -initials: J. P. -mobile: +1 415 521-3952 -pager: +1 415 322-5178 -roomNumber: 8303 -manager: cn=Raina Morgan,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Cori Oreilly,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cori Oreilly -sn: Oreilly -description: This is Cori Oreilly's description -facsimileTelephoneNumber: +1 206 839-7643 -l: Menlo Park -ou: Human Resources -postalAddress: Human Resources$Menlo Park -telephoneNumber: +1 206 698-6403 -title: Supreme Human Resources Vice President -userPassword: Password1 -uid: OreillyC -givenName: Cori -mail: OreillyC@c9e4e7670c4c4defb2239518befdd386.bitwarden.com -carLicense: 43DVF6 -departmentNumber: 1889 -employeeType: Normal -homePhone: +1 206 642-5272 -initials: C. O. -mobile: +1 206 878-5765 -pager: +1 206 429-6352 -roomNumber: 9912 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Brier VanNeste,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Enzo Rodgers,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Enzo Rodgers -sn: Rodgers -description: This is Enzo Rodgers's description -facsimileTelephoneNumber: +1 415 386-6021 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 394-3244 -title: Supreme Product Development Czar -userPassword: Password1 -uid: RodgersE -givenName: Enzo -mail: RodgersE@6075ce54c1c346baad961bf0742aef3c.bitwarden.com -carLicense: 6C1LQ2 -departmentNumber: 7656 -employeeType: Contract -homePhone: +1 415 511-9665 -initials: E. R. -mobile: +1 415 906-7510 -pager: +1 415 909-5558 -roomNumber: 9351 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Pic Basinger,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pic Basinger -sn: Basinger -description: This is Pic Basinger's description -facsimileTelephoneNumber: +1 510 122-1683 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 510 617-5191 -title: Chief Peons Punk -userPassword: Password1 -uid: BasingeP -givenName: Pic -mail: BasingeP@4c9858703e48497c924d77014e6a3b88.bitwarden.com -carLicense: 7MWJFS -departmentNumber: 3266 -employeeType: Normal -homePhone: +1 510 855-1172 -initials: P. B. -mobile: +1 510 898-2789 -pager: +1 510 273-4478 -roomNumber: 8552 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hollie Amir,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barbabra Fuqua -sn: Fuqua -description: This is Barbabra Fuqua's description -facsimileTelephoneNumber: +1 818 345-4818 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 818 904-6310 -title: Junior Payroll Engineer -userPassword: Password1 -uid: FuquaB -givenName: Barbabra -mail: FuquaB@7c7d4c294db5460a9b0b3e7e2e1f0255.bitwarden.com -carLicense: G32FDK -departmentNumber: 3806 -employeeType: Employee -homePhone: +1 818 531-3754 -initials: B. F. -mobile: +1 818 170-5184 -pager: +1 818 814-1843 -roomNumber: 8502 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Paqs Atalla,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paqs Atalla -sn: Atalla -description: This is Paqs Atalla's description -facsimileTelephoneNumber: +1 408 661-5239 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 408 972-2326 -title: Associate Janitorial Technician -userPassword: Password1 -uid: AtallaP -givenName: Paqs -mail: AtallaP@ef893a2718a6415a89b1218247ab6f7e.bitwarden.com -carLicense: HEB1G5 -departmentNumber: 1475 -employeeType: Normal -homePhone: +1 408 967-4821 -initials: P. A. -mobile: +1 408 200-7305 -pager: +1 408 190-8360 -roomNumber: 8975 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Reed Bassignana,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Norina McClymont,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norina McClymont -sn: McClymont -description: This is Norina McClymont's description -facsimileTelephoneNumber: +1 408 388-4246 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 933-8289 -title: Master Management Pinhead -userPassword: Password1 -uid: McClymoN -givenName: Norina -mail: McClymoN@dd187a873e4c4bb299a3c9194e913cba.bitwarden.com -carLicense: GM3KL3 -departmentNumber: 5167 -employeeType: Normal -homePhone: +1 408 103-6392 -initials: N. M. -mobile: +1 408 904-4541 -pager: +1 408 483-5541 -roomNumber: 9765 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sadella Psklib,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sadella Psklib -sn: Psklib -description: This is Sadella Psklib's description -facsimileTelephoneNumber: +1 415 846-6443 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 415 119-1512 -title: Master Administrative President -userPassword: Password1 -uid: PsklibS -givenName: Sadella -mail: PsklibS@52d447bfc2464a51a20925b35098fffa.bitwarden.com -carLicense: MQ3WMN -departmentNumber: 3828 -employeeType: Contract -homePhone: +1 415 209-6820 -initials: S. P. -mobile: +1 415 617-2939 -pager: +1 415 234-1119 -roomNumber: 8850 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Regan Novak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Bqb Mulvie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bqb Mulvie -sn: Mulvie -description: This is Bqb Mulvie's description -facsimileTelephoneNumber: +1 510 871-3718 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 510 483-4587 -title: Junior Payroll Dictator -userPassword: Password1 -uid: MulvieB -givenName: Bqb -mail: MulvieB@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com -carLicense: WE3NKB -departmentNumber: 8196 -employeeType: Normal -homePhone: +1 510 493-6280 -initials: B. M. -mobile: +1 510 374-7008 -pager: +1 510 147-2254 -roomNumber: 8039 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jenica Brophy,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jenica Brophy -sn: Brophy -description: This is Jenica Brophy's description -facsimileTelephoneNumber: +1 818 729-7184 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 818 953-7594 -title: Junior Human Resources Consultant -userPassword: Password1 -uid: BrophyJ -givenName: Jenica -mail: BrophyJ@b19f5c0cd758429f9a018da5785536ee.bitwarden.com -carLicense: KBV1ON -departmentNumber: 7240 -employeeType: Employee -homePhone: +1 818 904-6487 -initials: J. B. -mobile: +1 818 982-3795 -pager: +1 818 126-3585 -roomNumber: 8577 -manager: cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwendolen Mattiuz -sn: Mattiuz -description: This is Gwendolen Mattiuz's description -facsimileTelephoneNumber: +1 804 837-7382 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 804 114-3141 -title: Supreme Payroll Warrior -userPassword: Password1 -uid: MattiuzG -givenName: Gwendolen -mail: MattiuzG@22a72674ecec479588f031d302cecb2d.bitwarden.com -carLicense: AQE54G -departmentNumber: 3697 -employeeType: Employee -homePhone: +1 804 281-5388 -initials: G. M. -mobile: +1 804 949-7980 -pager: +1 804 911-7104 -roomNumber: 9004 -manager: cn=Valida Ribi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=KienNghiep Eby,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Steen Dubuc,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Steen Dubuc -sn: Dubuc -description: This is Steen Dubuc's description -facsimileTelephoneNumber: +1 510 232-7686 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 510 312-4350 -title: Master Product Development Madonna -userPassword: Password1 -uid: DubucS -givenName: Steen -mail: DubucS@f58bbd26c10847bc8e678cb993396656.bitwarden.com -carLicense: 0WFTCM -departmentNumber: 6561 -employeeType: Employee -homePhone: +1 510 422-2489 -initials: S. D. -mobile: +1 510 815-8354 -pager: +1 510 843-3121 -roomNumber: 8857 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Thad Bertram,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shea Blesi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shea Blesi -sn: Blesi -description: This is Shea Blesi's description -facsimileTelephoneNumber: +1 415 605-8703 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 415 729-5564 -title: Associate Management Warrior -userPassword: Password1 -uid: BlesiS -givenName: Shea -mail: BlesiS@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com -carLicense: ROMS54 -departmentNumber: 4561 -employeeType: Employee -homePhone: +1 415 511-5204 -initials: S. B. -mobile: +1 415 574-9944 -pager: +1 415 188-2404 -roomNumber: 9486 -manager: cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kusum Tilden,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kusum Tilden -sn: Tilden -description: This is Kusum Tilden's description -facsimileTelephoneNumber: +1 415 423-7256 -l: San Francisco -ou: Human Resources -postalAddress: Human Resources$San Francisco -telephoneNumber: +1 415 968-9245 -title: Associate Human Resources Madonna -userPassword: Password1 -uid: TildenK -givenName: Kusum -mail: TildenK@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com -carLicense: F17265 -departmentNumber: 8320 -employeeType: Normal -homePhone: +1 415 509-7614 -initials: K. T. -mobile: +1 415 675-3942 -pager: +1 415 971-9392 -roomNumber: 9798 -manager: cn=Liem Isley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=LouisRene Albers,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Famke Chuah,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Famke Chuah -sn: Chuah -description: This is Famke Chuah's description -facsimileTelephoneNumber: +1 206 142-6192 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 206 696-7233 -title: Supreme Administrative Technician -userPassword: Password1 -uid: ChuahF -givenName: Famke -mail: ChuahF@ff582b028bb14d7f8a64ae9e228eb6b6.bitwarden.com -carLicense: 8575LB -departmentNumber: 2465 -employeeType: Contract -homePhone: +1 206 422-3988 -initials: F. C. -mobile: +1 206 525-3076 -pager: +1 206 425-7969 -roomNumber: 8980 -manager: cn=Noni Garwood,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angeline Cytrynbaum -sn: Cytrynbaum -description: This is Angeline Cytrynbaum's description -facsimileTelephoneNumber: +1 415 313-8593 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 415 678-8670 -title: Supreme Peons Consultant -userPassword: Password1 -uid: CytrynbA -givenName: Angeline -mail: CytrynbA@1fd495b25f014a69affe5c97974df0f7.bitwarden.com -carLicense: KL9SQF -departmentNumber: 1075 -employeeType: Contract -homePhone: +1 415 777-7416 -initials: A. C. -mobile: +1 415 534-7204 -pager: +1 415 128-9213 -roomNumber: 9273 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alvinia Snodgrass -sn: Snodgrass -description: This is Alvinia Snodgrass's description -facsimileTelephoneNumber: +1 213 805-7548 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 213 113-6469 -title: Master Peons Czar -userPassword: Password1 -uid: SnodgraA -givenName: Alvinia -mail: SnodgraA@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com -carLicense: QVCHAM -departmentNumber: 6205 -employeeType: Employee -homePhone: +1 213 756-9790 -initials: A. S. -mobile: +1 213 970-9531 -pager: +1 213 724-4952 -roomNumber: 9467 -manager: cn=Libor Schanne,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=HoaVan Drummer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: HoaVan Drummer -sn: Drummer -description: This is HoaVan Drummer's description -facsimileTelephoneNumber: +1 818 756-7646 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 818 627-9874 -title: Associate Peons Engineer -userPassword: Password1 -uid: DrummerH -givenName: HoaVan -mail: DrummerH@64ea5273cbad4fe1bbdf6cc7bf563ed4.bitwarden.com -carLicense: B5UWP9 -departmentNumber: 2879 -employeeType: Normal -homePhone: +1 818 745-7659 -initials: H. D. -mobile: +1 818 351-2228 -pager: +1 818 818-5989 -roomNumber: 9721 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yoda Mejury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Metrics McCoy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Metrics McCoy -sn: McCoy -description: This is Metrics McCoy's description -facsimileTelephoneNumber: +1 804 232-3413 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 804 871-2662 -title: Master Peons Writer -userPassword: Password1 -uid: McCoyM -givenName: Metrics -mail: McCoyM@f57569f7524f4479b4d43ec8c220c303.bitwarden.com -carLicense: B1XKNK -departmentNumber: 3397 -employeeType: Contract -homePhone: +1 804 838-4908 -initials: M. M. -mobile: +1 804 710-8037 -pager: +1 804 906-7712 -roomNumber: 9665 -manager: cn=Olivette Crompton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brittany Zarkel -sn: Zarkel -description: This is Brittany Zarkel's description -facsimileTelephoneNumber: +1 415 777-1780 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 415 799-7278 -title: Chief Product Testing Technician -userPassword: Password1 -uid: ZarkelB -givenName: Brittany -mail: ZarkelB@bb451e9caafd4e81b5fb79f1aea3830a.bitwarden.com -carLicense: WBEEW3 -departmentNumber: 6454 -employeeType: Employee -homePhone: +1 415 856-6189 -initials: B. Z. -mobile: +1 415 177-2669 -pager: +1 415 395-9843 -roomNumber: 9031 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maybelle Wiebe -sn: Wiebe -description: This is Maybelle Wiebe's description -facsimileTelephoneNumber: +1 213 288-7365 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 709-5045 -title: Master Janitorial Figurehead -userPassword: Password1 -uid: WiebeM -givenName: Maybelle -mail: WiebeM@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com -carLicense: 4GW2P9 -departmentNumber: 1164 -employeeType: Normal -homePhone: +1 213 583-8011 -initials: M. W. -mobile: +1 213 109-4251 -pager: +1 213 671-5366 -roomNumber: 9970 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Nicolas Lally,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolas Lally -sn: Lally -description: This is Nicolas Lally's description -facsimileTelephoneNumber: +1 818 853-2109 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 818 169-1939 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: LallyN -givenName: Nicolas -mail: LallyN@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com -carLicense: CO6U5Y -departmentNumber: 7820 -employeeType: Employee -homePhone: +1 818 223-9152 -initials: N. L. -mobile: +1 818 280-8060 -pager: +1 818 843-9929 -roomNumber: 8926 -manager: cn=Lita Gille,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Candie Siefert,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Candie Siefert -sn: Siefert -description: This is Candie Siefert's description -facsimileTelephoneNumber: +1 804 688-8319 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 804 838-3361 -title: Master Administrative Warrior -userPassword: Password1 -uid: SiefertC -givenName: Candie -mail: SiefertC@88c454cb568147c58332d77ce464726b.bitwarden.com -carLicense: S3LOFN -departmentNumber: 5447 -employeeType: Contract -homePhone: +1 804 472-3998 -initials: C. S. -mobile: +1 804 589-2277 -pager: +1 804 930-5339 -roomNumber: 8235 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Ulf Novak,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ulf Novak -sn: Novak -description: This is Ulf Novak's description -facsimileTelephoneNumber: +1 804 633-9564 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 804 306-8794 -title: Chief Product Testing Admin -userPassword: Password1 -uid: NovakU -givenName: Ulf -mail: NovakU@1d0fa7b832b142ce82ca5e924a1754a0.bitwarden.com -carLicense: S457UD -departmentNumber: 5269 -employeeType: Employee -homePhone: +1 804 268-5956 -initials: U. N. -mobile: +1 804 907-3777 -pager: +1 804 918-4606 -roomNumber: 8095 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Vivia Zaloker,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fina Rhattigan -sn: Rhattigan -description: This is Fina Rhattigan's description -facsimileTelephoneNumber: +1 408 248-9136 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 408 525-2438 -title: Supreme Janitorial Director -userPassword: Password1 -uid: RhattigF -givenName: Fina -mail: RhattigF@1a99800019bc40cc83877edaa3c037bd.bitwarden.com -carLicense: UMUS5S -departmentNumber: 8536 -employeeType: Normal -homePhone: +1 408 277-2107 -initials: F. R. -mobile: +1 408 509-6408 -pager: +1 408 862-5104 -roomNumber: 8847 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Paulette Unkefer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Paulette Unkefer -sn: Unkefer -description: This is Paulette Unkefer's description -facsimileTelephoneNumber: +1 408 947-2372 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 442-8324 -title: Junior Peons Punk -userPassword: Password1 -uid: UnkeferP -givenName: Paulette -mail: UnkeferP@972afc9853ee4f2c90b26fb09fc7d779.bitwarden.com -carLicense: 48LM2H -departmentNumber: 8432 -employeeType: Normal -homePhone: +1 408 453-1810 -initials: P. U. -mobile: +1 408 359-2424 -pager: +1 408 591-9343 -roomNumber: 8061 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Keri Struble,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corrianne Goliss -sn: Goliss -description: This is Corrianne Goliss's description -facsimileTelephoneNumber: +1 206 868-9931 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 719-6382 -title: Master Human Resources Janitor -userPassword: Password1 -uid: GolissC -givenName: Corrianne -mail: GolissC@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com -carLicense: 8Q9LYS -departmentNumber: 1264 -employeeType: Employee -homePhone: +1 206 760-5254 -initials: C. G. -mobile: +1 206 180-5233 -pager: +1 206 518-9826 -roomNumber: 8730 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gwendolin Kean,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gwendolin Kean -sn: Kean -description: This is Gwendolin Kean's description -facsimileTelephoneNumber: +1 408 572-6709 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 408 120-6644 -title: Master Payroll Fellow -userPassword: Password1 -uid: KeanG -givenName: Gwendolin -mail: KeanG@06bce776ad5946a6be606d0392cec3ca.bitwarden.com -carLicense: FL9J4X -departmentNumber: 1608 -employeeType: Employee -homePhone: +1 408 944-6271 -initials: G. K. -mobile: +1 408 300-5397 -pager: +1 408 362-8685 -roomNumber: 9470 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Marthe Harvey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marthe Harvey -sn: Harvey -description: This is Marthe Harvey's description -facsimileTelephoneNumber: +1 818 495-6142 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 832-5698 -title: Master Human Resources Mascot -userPassword: Password1 -uid: HarveyM -givenName: Marthe -mail: HarveyM@79f70adba366489f9a827cac7a2d8fd1.bitwarden.com -carLicense: 0P3G6D -departmentNumber: 5038 -employeeType: Employee -homePhone: +1 818 211-3861 -initials: M. H. -mobile: +1 818 758-2159 -pager: +1 818 145-2220 -roomNumber: 8957 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pars Fleury,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Debbi Elhamahmy -sn: Elhamahmy -description: This is Debbi Elhamahmy's description -facsimileTelephoneNumber: +1 206 843-9792 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 728-6971 -title: Junior Administrative Developer -userPassword: Password1 -uid: ElhamahD -givenName: Debbi -mail: ElhamahD@bb48b434201c4705a4eb043e09cd6d70.bitwarden.com -carLicense: GV1F2D -departmentNumber: 4534 -employeeType: Contract -homePhone: +1 206 491-9443 -initials: D. E. -mobile: +1 206 376-8964 -pager: +1 206 328-3953 -roomNumber: 9490 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Francene AuYeung,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francene AuYeung -sn: AuYeung -description: This is Francene AuYeung's description -facsimileTelephoneNumber: +1 213 496-2161 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 213 666-1535 -title: Junior Peons Figurehead -userPassword: Password1 -uid: AuYeungF -givenName: Francene -mail: AuYeungF@0d2f49c4afec422dbf4961ec0258d7e8.bitwarden.com -carLicense: L5HJRO -departmentNumber: 8141 -employeeType: Normal -homePhone: +1 213 876-5851 -initials: F. A. -mobile: +1 213 496-5055 -pager: +1 213 262-3364 -roomNumber: 8815 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Coleen Litherland,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Juliana Omura,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Juliana Omura -sn: Omura -description: This is Juliana Omura's description -facsimileTelephoneNumber: +1 415 542-9477 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 415 197-1613 -title: Chief Peons Manager -userPassword: Password1 -uid: OmuraJ -givenName: Juliana -mail: OmuraJ@797c12ee868e41e5be4bb46785d3d6aa.bitwarden.com -carLicense: 3HLC4S -departmentNumber: 3122 -employeeType: Contract -homePhone: +1 415 427-1922 -initials: J. O. -mobile: +1 415 930-3245 -pager: +1 415 424-1247 -roomNumber: 9073 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Windy Sadeghi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Emelina Elliot,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emelina Elliot -sn: Elliot -description: This is Emelina Elliot's description -facsimileTelephoneNumber: +1 206 929-5745 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 206 451-6607 -title: Chief Product Development Technician -userPassword: Password1 -uid: ElliotE -givenName: Emelina -mail: ElliotE@5437f19907594de59138cb373ea3e4a8.bitwarden.com -carLicense: 7LXG4Q -departmentNumber: 1220 -employeeType: Employee -homePhone: +1 206 950-2054 -initials: E. E. -mobile: +1 206 688-5097 -pager: +1 206 289-9249 -roomNumber: 8591 -manager: cn=Nerita Jansen,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Waverly Monforton,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Waverly Monforton -sn: Monforton -description: This is Waverly Monforton's description -facsimileTelephoneNumber: +1 804 559-9872 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 804 911-6574 -title: Junior Payroll Mascot -userPassword: Password1 -uid: MonfortW -givenName: Waverly -mail: MonfortW@78921cb9fe6c47488d5cf12368310816.bitwarden.com -carLicense: 44EV51 -departmentNumber: 3135 -employeeType: Normal -homePhone: +1 804 437-5038 -initials: W. M. -mobile: +1 804 235-4028 -pager: +1 804 292-7832 -roomNumber: 9561 -manager: cn=Amir McColman,ou=Management,dc=bitwarden, dc=com -secretary: cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Gladys Bilanski,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gladys Bilanski -sn: Bilanski -description: This is Gladys Bilanski's description -facsimileTelephoneNumber: +1 804 553-1498 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 804 760-2914 -title: Master Management Stooge -userPassword: Password1 -uid: BilanskG -givenName: Gladys -mail: BilanskG@631ae20fb31c4a77babae0e6eaf9b74d.bitwarden.com -carLicense: W1EBQY -departmentNumber: 6154 -employeeType: Contract -homePhone: +1 804 784-8475 -initials: G. B. -mobile: +1 804 611-6945 -pager: +1 804 369-2882 -roomNumber: 8971 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Alisa Centre,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Analise Shea,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Analise Shea -sn: Shea -description: This is Analise Shea's description -facsimileTelephoneNumber: +1 804 160-1626 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 804 973-3937 -title: Supreme Product Testing Architect -userPassword: Password1 -uid: SheaA -givenName: Analise -mail: SheaA@5f0294cf70af42dd8b675e776526c55e.bitwarden.com -carLicense: 1VUELH -departmentNumber: 2134 -employeeType: Employee -homePhone: +1 804 813-8951 -initials: A. S. -mobile: +1 804 647-9667 -pager: +1 804 227-5029 -roomNumber: 8215 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cart Boutin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cart Boutin -sn: Boutin -description: This is Cart Boutin's description -facsimileTelephoneNumber: +1 415 396-4184 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 415 456-5822 -title: Supreme Management Stooge -userPassword: Password1 -uid: BoutinC -givenName: Cart -mail: BoutinC@5829ced5acec40878d4752d92d457b7b.bitwarden.com -carLicense: WJD4FT -departmentNumber: 6565 -employeeType: Contract -homePhone: +1 415 741-7934 -initials: C. B. -mobile: +1 415 772-9828 -pager: +1 415 897-6341 -roomNumber: 8115 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kunie Hoorman,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kunie Hoorman -sn: Hoorman -description: This is Kunie Hoorman's description -facsimileTelephoneNumber: +1 213 627-8112 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 213 745-5492 -title: Supreme Product Development Consultant -userPassword: Password1 -uid: HoormanK -givenName: Kunie -mail: HoormanK@306375064b2741d094b3e69f5fcd1355.bitwarden.com -carLicense: QL7YA3 -departmentNumber: 4421 -employeeType: Contract -homePhone: +1 213 725-7939 -initials: K. H. -mobile: +1 213 478-5903 -pager: +1 213 171-9919 -roomNumber: 8553 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Leigha Contine,ou=Management,dc=bitwarden, dc=com - -dn: cn=Odelinda Keilty,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odelinda Keilty -sn: Keilty -description: This is Odelinda Keilty's description -facsimileTelephoneNumber: +1 804 536-5125 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 804 878-5645 -title: Supreme Payroll Fellow -userPassword: Password1 -uid: KeiltyO -givenName: Odelinda -mail: KeiltyO@99ed379ff20347a2afcfdca050997d8c.bitwarden.com -carLicense: 23XHSS -departmentNumber: 4545 -employeeType: Employee -homePhone: +1 804 593-9325 -initials: O. K. -mobile: +1 804 541-7193 -pager: +1 804 939-1839 -roomNumber: 9300 -manager: cn=Sherri Hamilton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Biddy Nicolaou -sn: Nicolaou -description: This is Biddy Nicolaou's description -facsimileTelephoneNumber: +1 415 273-7973 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 255-5466 -title: Master Janitorial Czar -userPassword: Password1 -uid: NicolaoB -givenName: Biddy -mail: NicolaoB@31b20282a43b4a2586c05543f32a2ad0.bitwarden.com -carLicense: EN34NR -departmentNumber: 3705 -employeeType: Employee -homePhone: +1 415 613-5925 -initials: B. N. -mobile: +1 415 129-5303 -pager: +1 415 586-7059 -roomNumber: 8652 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Stella Sist,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stella Sist -sn: Sist -description: This is Stella Sist's description -facsimileTelephoneNumber: +1 408 630-1119 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 476-6590 -title: Junior Peons Punk -userPassword: Password1 -uid: SistS -givenName: Stella -mail: SistS@de96a17ce06e4487ba5f98c80195f121.bitwarden.com -carLicense: XMPF9W -departmentNumber: 9882 -employeeType: Contract -homePhone: +1 408 487-6139 -initials: S. S. -mobile: +1 408 806-8899 -pager: +1 408 418-2008 -roomNumber: 8248 -manager: cn=Lizette Klappholz,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maryellen Phillips -sn: Phillips -description: This is Maryellen Phillips's description -facsimileTelephoneNumber: +1 206 232-5915 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 303-5834 -title: Junior Product Testing Figurehead -userPassword: Password1 -uid: PhillipM -givenName: Maryellen -mail: PhillipM@2322b02e7fdc412fb0617a541c4ec04c.bitwarden.com -carLicense: 8LRI5V -departmentNumber: 4254 -employeeType: Normal -homePhone: +1 206 708-1804 -initials: M. P. -mobile: +1 206 821-1799 -pager: +1 206 189-5844 -roomNumber: 8394 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Loleta Macoosh,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Dayle Schenkel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dayle Schenkel -sn: Schenkel -description: This is Dayle Schenkel's description -facsimileTelephoneNumber: +1 415 199-7064 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 415 434-6285 -title: Junior Management Architect -userPassword: Password1 -uid: SchenkeD -givenName: Dayle -mail: SchenkeD@dbc00763a9de485c97697558ab9ccf2e.bitwarden.com -carLicense: T5F08F -departmentNumber: 7694 -employeeType: Normal -homePhone: +1 415 945-9591 -initials: D. S. -mobile: +1 415 579-4959 -pager: +1 415 330-1819 -roomNumber: 8124 -manager: cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Arlyn McBroom,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlyn McBroom -sn: McBroom -description: This is Arlyn McBroom's description -facsimileTelephoneNumber: +1 415 639-8580 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 415 774-5106 -title: Supreme Payroll Dictator -userPassword: Password1 -uid: McBroomA -givenName: Arlyn -mail: McBroomA@810805989c354ad7a79f655890d0527e.bitwarden.com -carLicense: DHY23D -departmentNumber: 8392 -employeeType: Employee -homePhone: +1 415 949-3157 -initials: A. M. -mobile: +1 415 967-9031 -pager: +1 415 508-1203 -roomNumber: 8899 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Brear Jensen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brear Jensen -sn: Jensen -description: This is Brear Jensen's description -facsimileTelephoneNumber: +1 415 599-5364 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 415 142-1353 -title: Chief Payroll President -userPassword: Password1 -uid: JensenB -givenName: Brear -mail: JensenB@f3145f0fc9d14ab089c58ad253fdbe93.bitwarden.com -carLicense: 2JUJ3Y -departmentNumber: 1040 -employeeType: Contract -homePhone: +1 415 465-7450 -initials: B. J. -mobile: +1 415 681-2024 -pager: +1 415 431-2865 -roomNumber: 9728 -manager: cn=Clyde Beggs,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ann Bulengo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ann Bulengo -sn: Bulengo -description: This is Ann Bulengo's description -facsimileTelephoneNumber: +1 415 417-8160 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 518-5490 -title: Associate Administrative Grunt -userPassword: Password1 -uid: BulengoA -givenName: Ann -mail: BulengoA@25c6b9a9cdb0416ea3c7c7318ec420ea.bitwarden.com -carLicense: NEQ6YR -departmentNumber: 2330 -employeeType: Normal -homePhone: +1 415 657-6224 -initials: A. B. -mobile: +1 415 801-9253 -pager: +1 415 432-2094 -roomNumber: 9187 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Esma Jak,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Esma Jak -sn: Jak -description: This is Esma Jak's description -facsimileTelephoneNumber: +1 213 483-9196 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 213 523-8732 -title: Master Human Resources Consultant -userPassword: Password1 -uid: JakE -givenName: Esma -mail: JakE@0c79359a2e94444a9804cb3df1168a2f.bitwarden.com -carLicense: LMRA8V -departmentNumber: 1280 -employeeType: Employee -homePhone: +1 213 868-2149 -initials: E. J. -mobile: +1 213 948-6615 -pager: +1 213 486-5565 -roomNumber: 9814 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Klara Npi,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Larkin Nance,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Larkin Nance -sn: Nance -description: This is Larkin Nance's description -facsimileTelephoneNumber: +1 213 134-1587 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 213 514-5936 -title: Master Payroll Dictator -userPassword: Password1 -uid: NanceL -givenName: Larkin -mail: NanceL@3f23376c66604a36ab332ecde75543de.bitwarden.com -carLicense: BGKC53 -departmentNumber: 1993 -employeeType: Employee -homePhone: +1 213 288-8886 -initials: L. N. -mobile: +1 213 349-2490 -pager: +1 213 462-1651 -roomNumber: 9059 -manager: cn=Idris Hotlist,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Mirelle Novak,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirelle Novak -sn: Novak -description: This is Mirelle Novak's description -facsimileTelephoneNumber: +1 206 685-4515 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 206 135-2278 -title: Associate Peons Janitor -userPassword: Password1 -uid: NovakM -givenName: Mirelle -mail: NovakM@5d21976aa8594197bf4a897cb95dc5c6.bitwarden.com -carLicense: SEKGBJ -departmentNumber: 1273 -employeeType: Normal -homePhone: +1 206 770-3971 -initials: M. N. -mobile: +1 206 783-6928 -pager: +1 206 335-2422 -roomNumber: 9369 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Dorothy Laurich,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorothy Laurich -sn: Laurich -description: This is Dorothy Laurich's description -facsimileTelephoneNumber: +1 510 380-3048 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 510 155-4712 -title: Supreme Product Development Warrior -userPassword: Password1 -uid: LaurichD -givenName: Dorothy -mail: LaurichD@2d82e4fbfc604880a9f0d07a8531daa9.bitwarden.com -carLicense: 2LI1SL -departmentNumber: 7009 -employeeType: Normal -homePhone: +1 510 225-2470 -initials: D. L. -mobile: +1 510 971-9966 -pager: +1 510 730-8928 -roomNumber: 8546 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shyam Wernik,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shyam Wernik -sn: Wernik -description: This is Shyam Wernik's description -facsimileTelephoneNumber: +1 213 850-3672 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 213 292-8178 -title: Supreme Human Resources Punk -userPassword: Password1 -uid: WernikS -givenName: Shyam -mail: WernikS@76e7e62397cf46a7b8c004ca6e02f899.bitwarden.com -carLicense: UPTXR5 -departmentNumber: 3645 -employeeType: Employee -homePhone: +1 213 734-2388 -initials: S. W. -mobile: +1 213 363-4777 -pager: +1 213 577-6124 -roomNumber: 8941 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Niek Rahmany,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Niek Rahmany -sn: Rahmany -description: This is Niek Rahmany's description -facsimileTelephoneNumber: +1 408 709-3503 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 408 408-8033 -title: Supreme Product Development Stooge -userPassword: Password1 -uid: RahmanyN -givenName: Niek -mail: RahmanyN@94ce9594247c4b4684617b905ff4b38b.bitwarden.com -carLicense: AV4MJX -departmentNumber: 8661 -employeeType: Contract -homePhone: +1 408 653-7707 -initials: N. R. -mobile: +1 408 976-7401 -pager: +1 408 938-1690 -roomNumber: 8257 -manager: cn=Glenda Lai,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jung Kimler,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jung Kimler -sn: Kimler -description: This is Jung Kimler's description -facsimileTelephoneNumber: +1 415 970-3599 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 415 371-5444 -title: Chief Administrative Visionary -userPassword: Password1 -uid: KimlerJ -givenName: Jung -mail: KimlerJ@fb2a9835511b44fba3bde94e482a2f71.bitwarden.com -carLicense: XJ4URC -departmentNumber: 2530 -employeeType: Normal -homePhone: +1 415 799-3769 -initials: J. K. -mobile: +1 415 115-4119 -pager: +1 415 421-5847 -roomNumber: 9797 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacque Hearnden -sn: Hearnden -description: This is Jacque Hearnden's description -facsimileTelephoneNumber: +1 213 708-8832 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 418-5781 -title: Master Product Testing Director -userPassword: Password1 -uid: HearndeJ -givenName: Jacque -mail: HearndeJ@74cfe2fa4b0b457bbb2822816bc66149.bitwarden.com -carLicense: 01MVXM -departmentNumber: 4930 -employeeType: Contract -homePhone: +1 213 148-1958 -initials: J. H. -mobile: +1 213 321-1217 -pager: +1 213 830-6464 -roomNumber: 9210 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lolita Mufti,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lolita Mufti -sn: Mufti -description: This is Lolita Mufti's description -facsimileTelephoneNumber: +1 206 469-9681 -l: Redmond -ou: Product Testing -postalAddress: Product Testing$Redmond -telephoneNumber: +1 206 852-6277 -title: Chief Product Testing Assistant -userPassword: Password1 -uid: MuftiL -givenName: Lolita -mail: MuftiL@8fb6b5ed2e0c4f9896a409d4b0bce533.bitwarden.com -carLicense: P2KL38 -departmentNumber: 5007 -employeeType: Employee -homePhone: +1 206 993-2770 -initials: L. M. -mobile: +1 206 704-7367 -pager: +1 206 653-6593 -roomNumber: 8148 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Coord Kalleward,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coord Kalleward -sn: Kalleward -description: This is Coord Kalleward's description -facsimileTelephoneNumber: +1 206 485-2526 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 206 998-2200 -title: Junior Management Warrior -userPassword: Password1 -uid: KallewaC -givenName: Coord -mail: KallewaC@b114f468b2f34a46af68fa26b5215d8f.bitwarden.com -carLicense: HJDLT3 -departmentNumber: 4207 -employeeType: Normal -homePhone: +1 206 120-4686 -initials: C. K. -mobile: +1 206 550-6060 -pager: +1 206 420-9172 -roomNumber: 8438 -manager: cn=Cyndy Auton,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Garnet Shames,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Garnet Shames -sn: Shames -description: This is Garnet Shames's description -facsimileTelephoneNumber: +1 415 423-1641 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 838-7519 -title: Junior Payroll Consultant -userPassword: Password1 -uid: ShamesG -givenName: Garnet -mail: ShamesG@53a050beae0b4f609caf7ccf53a73868.bitwarden.com -carLicense: DGYAMS -departmentNumber: 5208 -employeeType: Contract -homePhone: +1 415 324-7910 -initials: G. S. -mobile: +1 415 629-2185 -pager: +1 415 926-8608 -roomNumber: 9321 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Christer Bortolussi,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fara Shireman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fara Shireman -sn: Shireman -description: This is Fara Shireman's description -facsimileTelephoneNumber: +1 415 151-6080 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 415 677-2728 -title: Supreme Human Resources Artist -userPassword: Password1 -uid: ShiremaF -givenName: Fara -mail: ShiremaF@a8b705848c504748848b8aba539736f1.bitwarden.com -carLicense: HK3TEL -departmentNumber: 4285 -employeeType: Employee -homePhone: +1 415 425-4611 -initials: F. S. -mobile: +1 415 330-6759 -pager: +1 415 428-3823 -roomNumber: 9341 -manager: cn=Holst Issa,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eryn Katsouras -sn: Katsouras -description: This is Eryn Katsouras's description -facsimileTelephoneNumber: +1 213 871-6232 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 213 695-6958 -title: Associate Janitorial Artist -userPassword: Password1 -uid: KatsourE -givenName: Eryn -mail: KatsourE@abd7a0e1e97f4d19962cc07f7f9bc4e3.bitwarden.com -carLicense: FVGYM8 -departmentNumber: 7095 -employeeType: Employee -homePhone: +1 213 330-4188 -initials: E. K. -mobile: +1 213 642-9452 -pager: +1 213 872-7397 -roomNumber: 8724 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Shahid Neil,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shahid Neil -sn: Neil -description: This is Shahid Neil's description -facsimileTelephoneNumber: +1 804 342-7942 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 804 577-8271 -title: Chief Management Sales Rep -userPassword: Password1 -uid: NeilS -givenName: Shahid -mail: NeilS@c3e7bf42d4644f6bb0bcdc78feeb3e92.bitwarden.com -carLicense: 2MA1FQ -departmentNumber: 6833 -employeeType: Employee -homePhone: +1 804 433-2992 -initials: S. N. -mobile: +1 804 538-6717 -pager: +1 804 537-7099 -roomNumber: 9091 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Larysa Singer,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Starlene Falardeau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Starlene Falardeau -sn: Falardeau -description: This is Starlene Falardeau's description -facsimileTelephoneNumber: +1 206 782-5204 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 206 572-9672 -title: Chief Payroll President -userPassword: Password1 -uid: FalardeS -givenName: Starlene -mail: FalardeS@4196ac503710477b96965e0281bd88e8.bitwarden.com -carLicense: DXRAMI -departmentNumber: 7728 -employeeType: Contract -homePhone: +1 206 706-6947 -initials: S. F. -mobile: +1 206 154-7884 -pager: +1 206 241-4304 -roomNumber: 9281 -manager: cn=Melanie Sager,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Marce Plaisance,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marce Plaisance -sn: Plaisance -description: This is Marce Plaisance's description -facsimileTelephoneNumber: +1 804 375-6005 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 804 362-4127 -title: Junior Janitorial Developer -userPassword: Password1 -uid: PlaisanM -givenName: Marce -mail: PlaisanM@3557661a889d4d1aa53732cbd0d2ba7c.bitwarden.com -carLicense: ILJ4YG -departmentNumber: 5349 -employeeType: Normal -homePhone: +1 804 465-4631 -initials: M. P. -mobile: +1 804 197-2660 -pager: +1 804 990-3347 -roomNumber: 9780 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lena Mathias,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lena Mathias -sn: Mathias -description: This is Lena Mathias's description -facsimileTelephoneNumber: +1 206 175-7508 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 719-8140 -title: Supreme Product Development Figurehead -userPassword: Password1 -uid: MathiasL -givenName: Lena -mail: MathiasL@890d1310fd334cdc8c698f8a47f59b9b.bitwarden.com -carLicense: DU9EBS -departmentNumber: 4266 -employeeType: Normal -homePhone: +1 206 185-8894 -initials: L. M. -mobile: +1 206 202-2780 -pager: +1 206 183-1836 -roomNumber: 8504 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tomasina Willett,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gaby Booking,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gaby Booking -sn: Booking -description: This is Gaby Booking's description -facsimileTelephoneNumber: +1 213 729-6739 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 213 554-8039 -title: Junior Janitorial Admin -userPassword: Password1 -uid: BookingG -givenName: Gaby -mail: BookingG@076fd971827e4bad8f0fb878bbd61e75.bitwarden.com -carLicense: 5VMO5V -departmentNumber: 1781 -employeeType: Contract -homePhone: +1 213 576-5827 -initials: G. B. -mobile: +1 213 333-8269 -pager: +1 213 473-9662 -roomNumber: 8443 -manager: cn=Pierre Latin,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Michaela Trimble,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michaela Trimble -sn: Trimble -description: This is Michaela Trimble's description -facsimileTelephoneNumber: +1 804 827-5073 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 804 510-6963 -title: Master Product Testing Writer -userPassword: Password1 -uid: TrimbleM -givenName: Michaela -mail: TrimbleM@d36f0da7bde1417c871787ddace3eaa5.bitwarden.com -carLicense: Y8H8AV -departmentNumber: 6880 -employeeType: Normal -homePhone: +1 804 816-6033 -initials: M. T. -mobile: +1 804 412-2718 -pager: +1 804 416-6937 -roomNumber: 9039 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lisabeth Trochu -sn: Trochu -description: This is Lisabeth Trochu's description -facsimileTelephoneNumber: +1 415 331-7427 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 415 461-4337 -title: Master Administrative Figurehead -userPassword: Password1 -uid: TrochuL -givenName: Lisabeth -mail: TrochuL@63ba35c8524545369a911e12c7f3bea9.bitwarden.com -carLicense: K7LO1P -departmentNumber: 9901 -employeeType: Contract -homePhone: +1 415 878-7571 -initials: L. T. -mobile: +1 415 784-5573 -pager: +1 415 926-3939 -roomNumber: 9222 -manager: cn=Erena Mersinger,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Kem Bizga,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lucie Kilner,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucie Kilner -sn: Kilner -description: This is Lucie Kilner's description -facsimileTelephoneNumber: +1 818 552-9907 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 818 172-7190 -title: Chief Payroll Manager -userPassword: Password1 -uid: KilnerL -givenName: Lucie -mail: KilnerL@f3145f0fc9d14ab089c58ad253fdbe93.bitwarden.com -carLicense: GNOVI7 -departmentNumber: 6755 -employeeType: Employee -homePhone: +1 818 585-4130 -initials: L. K. -mobile: +1 818 554-7804 -pager: +1 818 758-7191 -roomNumber: 9446 -manager: cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Danyelle Rider,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danyelle Rider -sn: Rider -description: This is Danyelle Rider's description -facsimileTelephoneNumber: +1 213 285-1092 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 213 515-9022 -title: Junior Product Testing Fellow -userPassword: Password1 -uid: RiderD -givenName: Danyelle -mail: RiderD@415c030ee16d4de4a7392387c8cef87f.bitwarden.com -carLicense: FVMTYL -departmentNumber: 2721 -employeeType: Employee -homePhone: +1 213 670-6892 -initials: D. R. -mobile: +1 213 229-1218 -pager: +1 213 895-6550 -roomNumber: 9038 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mariska Tien,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mariska Tien -sn: Tien -description: This is Mariska Tien's description -facsimileTelephoneNumber: +1 415 624-8028 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 415 303-7878 -title: Junior Peons President -userPassword: Password1 -uid: TienM -givenName: Mariska -mail: TienM@8f61b7df745c411eb50459783db5da78.bitwarden.com -carLicense: GEW0JI -departmentNumber: 9697 -employeeType: Employee -homePhone: +1 415 353-5798 -initials: M. T. -mobile: +1 415 101-8129 -pager: +1 415 712-5504 -roomNumber: 9504 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Belvia Lamoureux,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Belvia Lamoureux -sn: Lamoureux -description: This is Belvia Lamoureux's description -facsimileTelephoneNumber: +1 510 132-8003 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 510 477-6086 -title: Master Peons Manager -userPassword: Password1 -uid: LamoureB -givenName: Belvia -mail: LamoureB@5449de7063aa4ed2b6578dde4c294893.bitwarden.com -carLicense: 0KWS81 -departmentNumber: 8148 -employeeType: Normal -homePhone: +1 510 325-2424 -initials: B. L. -mobile: +1 510 959-9185 -pager: +1 510 502-7599 -roomNumber: 8912 -manager: cn=Angie Kou,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sheelagh Pevec -sn: Pevec -description: This is Sheelagh Pevec's description -facsimileTelephoneNumber: +1 213 226-2781 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 213 240-1543 -title: Supreme Payroll Manager -userPassword: Password1 -uid: PevecS -givenName: Sheelagh -mail: PevecS@8557bf093f9c42cfa11eafadaf8fc9c1.bitwarden.com -carLicense: 0MX04U -departmentNumber: 8739 -employeeType: Contract -homePhone: +1 213 547-5485 -initials: S. P. -mobile: +1 213 117-1938 -pager: +1 213 209-2677 -roomNumber: 9519 -manager: cn=Shona Ernst,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Jian Marneris,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jian Marneris -sn: Marneris -description: This is Jian Marneris's description -facsimileTelephoneNumber: +1 415 635-2589 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 415 781-8486 -title: Chief Payroll President -userPassword: Password1 -uid: MarneriJ -givenName: Jian -mail: MarneriJ@c4fdb8e85dc84c0eb28174e2bfc1119e.bitwarden.com -carLicense: XH9LH6 -departmentNumber: 3770 -employeeType: Normal -homePhone: +1 415 138-3975 -initials: J. M. -mobile: +1 415 743-1205 -pager: +1 415 696-7483 -roomNumber: 9097 -manager: cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Dagmar Moseby,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dagmar Moseby -sn: Moseby -description: This is Dagmar Moseby's description -facsimileTelephoneNumber: +1 408 628-7569 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 228-4577 -title: Supreme Payroll Janitor -userPassword: Password1 -uid: MosebyD -givenName: Dagmar -mail: MosebyD@d3fcdb605edb46b186b8487dae0de85d.bitwarden.com -carLicense: 1G3SWP -departmentNumber: 4935 -employeeType: Contract -homePhone: +1 408 163-8689 -initials: D. M. -mobile: +1 408 750-7525 -pager: +1 408 894-5987 -roomNumber: 8134 -manager: cn=Anand Lojewski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Casie Ress,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Casie Ress -sn: Ress -description: This is Casie Ress's description -facsimileTelephoneNumber: +1 408 751-8505 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 408 252-7713 -title: Chief Janitorial Assistant -userPassword: Password1 -uid: RessC -givenName: Casie -mail: RessC@3176045f47fb4a99bfb7ada750f4ebf5.bitwarden.com -carLicense: RA32WH -departmentNumber: 2164 -employeeType: Contract -homePhone: +1 408 992-2860 -initials: C. R. -mobile: +1 408 675-3840 -pager: +1 408 602-8608 -roomNumber: 9549 -manager: cn=Gerri Rosko,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Hrinfo Okura,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hrinfo Okura -sn: Okura -description: This is Hrinfo Okura's description -facsimileTelephoneNumber: +1 804 129-8467 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 804 485-5699 -title: Chief Payroll Madonna -userPassword: Password1 -uid: OkuraH -givenName: Hrinfo -mail: OkuraH@687816d020af4e4c9d25419b3dd63e14.bitwarden.com -carLicense: HCAPQH -departmentNumber: 5928 -employeeType: Employee -homePhone: +1 804 167-8523 -initials: H. O. -mobile: +1 804 995-4379 -pager: +1 804 266-2991 -roomNumber: 9459 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cal Storey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Korney Fadlallah,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Korney Fadlallah -sn: Fadlallah -description: This is Korney Fadlallah's description -facsimileTelephoneNumber: +1 408 787-5814 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 408 814-9006 -title: Supreme Administrative Admin -userPassword: Password1 -uid: FadlallK -givenName: Korney -mail: FadlallK@72192729ccbe43a199e14adff9e9435d.bitwarden.com -carLicense: A1031R -departmentNumber: 5758 -employeeType: Employee -homePhone: +1 408 630-6690 -initials: K. F. -mobile: +1 408 442-8825 -pager: +1 408 955-8808 -roomNumber: 9273 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jiri Leftwich,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jiri Leftwich -sn: Leftwich -description: This is Jiri Leftwich's description -facsimileTelephoneNumber: +1 408 578-7386 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 283-5548 -title: Supreme Peons Mascot -userPassword: Password1 -uid: LeftwicJ -givenName: Jiri -mail: LeftwicJ@67e1d3a1e2154702a69e299a8ae82d10.bitwarden.com -carLicense: UMESM3 -departmentNumber: 9619 -employeeType: Employee -homePhone: +1 408 244-8061 -initials: J. L. -mobile: +1 408 577-5012 -pager: +1 408 665-9252 -roomNumber: 8865 -manager: cn=Beitris Linton,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Coursey Stansfield,ou=Management,dc=bitwarden, dc=com - -dn: cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mustafa Gallais -sn: Gallais -description: This is Mustafa Gallais's description -facsimileTelephoneNumber: +1 415 247-3843 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 415 416-6060 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: GallaisM -givenName: Mustafa -mail: GallaisM@2a074f142f094eecb44b675913154101.bitwarden.com -carLicense: E7EM5R -departmentNumber: 6951 -employeeType: Normal -homePhone: +1 415 656-6254 -initials: M. G. -mobile: +1 415 837-1980 -pager: +1 415 376-5624 -roomNumber: 9978 -manager: cn=KumMeng Dover,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Clem Bongers,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Tildie Abbott,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tildie Abbott -sn: Abbott -description: This is Tildie Abbott's description -facsimileTelephoneNumber: +1 818 722-1047 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 818 856-8232 -title: Junior Human Resources Technician -userPassword: Password1 -uid: AbbottT -givenName: Tildie -mail: AbbottT@3384fe06e3e740708cd219dff85b1f83.bitwarden.com -carLicense: 07JJEN -departmentNumber: 6774 -employeeType: Normal -homePhone: +1 818 991-9175 -initials: T. A. -mobile: +1 818 230-7033 -pager: +1 818 560-3516 -roomNumber: 9070 -manager: cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Joelle Delong,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Kalindi Keehan,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kalindi Keehan -sn: Keehan -description: This is Kalindi Keehan's description -facsimileTelephoneNumber: +1 415 538-1558 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 415 853-6382 -title: Junior Peons Director -userPassword: Password1 -uid: KeehanK -givenName: Kalindi -mail: KeehanK@5398775f17574785a44a78e1afa74d02.bitwarden.com -carLicense: FNKB3A -departmentNumber: 2129 -employeeType: Employee -homePhone: +1 415 886-6415 -initials: K. K. -mobile: +1 415 389-9200 -pager: +1 415 638-2242 -roomNumber: 8750 -manager: cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Collette Patchett,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Collette Patchett -sn: Patchett -description: This is Collette Patchett's description -facsimileTelephoneNumber: +1 408 698-7175 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 408 492-3274 -title: Junior Product Development Assistant -userPassword: Password1 -uid: PatchetC -givenName: Collette -mail: PatchetC@b1def85879ca4d1390e9e6b1d5b583ee.bitwarden.com -carLicense: TO02BG -departmentNumber: 5809 -employeeType: Employee -homePhone: +1 408 566-1453 -initials: C. P. -mobile: +1 408 834-8370 -pager: +1 408 453-8553 -roomNumber: 8075 -manager: cn=Carri Putman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Cristiane Ruth,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cristiane Ruth -sn: Ruth -description: This is Cristiane Ruth's description -facsimileTelephoneNumber: +1 818 218-5439 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 818 245-9401 -title: Associate Peons Consultant -userPassword: Password1 -uid: RuthC -givenName: Cristiane -mail: RuthC@5214956f0ee84ad493b8defdd90a23da.bitwarden.com -carLicense: UKEF3B -departmentNumber: 6747 -employeeType: Normal -homePhone: +1 818 543-6482 -initials: C. R. -mobile: +1 818 664-7075 -pager: +1 818 265-3606 -roomNumber: 9936 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kaman Maciejewski -sn: Maciejewski -description: This is Kaman Maciejewski's description -facsimileTelephoneNumber: +1 415 938-1676 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 415 197-6022 -title: Associate Payroll Warrior -userPassword: Password1 -uid: MaciejeK -givenName: Kaman -mail: MaciejeK@bf3c9cfe52ab46f8a1843392d272b32b.bitwarden.com -carLicense: 3HISL7 -departmentNumber: 9476 -employeeType: Normal -homePhone: +1 415 769-7556 -initials: K. M. -mobile: +1 415 220-7730 -pager: +1 415 846-8488 -roomNumber: 8929 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tyronda Mayhugh -sn: Mayhugh -description: This is Tyronda Mayhugh's description -facsimileTelephoneNumber: +1 415 250-1464 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 415 303-8877 -title: Supreme Administrative Grunt -userPassword: Password1 -uid: MayhughT -givenName: Tyronda -mail: MayhughT@e467c17deb834d9fbc8b67f6cfbeb951.bitwarden.com -carLicense: 9ESGCQ -departmentNumber: 9938 -employeeType: Contract -homePhone: +1 415 744-7068 -initials: T. M. -mobile: +1 415 868-1545 -pager: +1 415 438-2336 -roomNumber: 8227 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gilberta Whiteford -sn: Whiteford -description: This is Gilberta Whiteford's description -facsimileTelephoneNumber: +1 415 304-4504 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 514-2546 -title: Chief Administrative Writer -userPassword: Password1 -uid: WhitefoG -givenName: Gilberta -mail: WhitefoG@31c61f2c8f9340ee8037a78602dae0c7.bitwarden.com -carLicense: H567IR -departmentNumber: 1636 -employeeType: Normal -homePhone: +1 415 265-3442 -initials: G. W. -mobile: +1 415 560-3064 -pager: +1 415 163-1497 -roomNumber: 8016 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Sedat Gurley,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sedat Gurley -sn: Gurley -description: This is Sedat Gurley's description -facsimileTelephoneNumber: +1 510 886-6199 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 510 444-5641 -title: Associate Product Testing Czar -userPassword: Password1 -uid: GurleyS -givenName: Sedat -mail: GurleyS@4eada34c16d14ddcb614de11bcd04009.bitwarden.com -carLicense: 5PNW2L -departmentNumber: 2823 -employeeType: Employee -homePhone: +1 510 515-5217 -initials: S. G. -mobile: +1 510 387-8585 -pager: +1 510 352-8340 -roomNumber: 9155 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Sharai Coxall,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharai Coxall -sn: Coxall -description: This is Sharai Coxall's description -facsimileTelephoneNumber: +1 206 417-8323 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 206 858-3100 -title: Associate Product Development Madonna -userPassword: Password1 -uid: CoxallS -givenName: Sharai -mail: CoxallS@63acb1cef0d64271b1836eb0bdd826d3.bitwarden.com -carLicense: H2JPNU -departmentNumber: 1572 -employeeType: Employee -homePhone: +1 206 872-9677 -initials: S. C. -mobile: +1 206 386-5690 -pager: +1 206 242-3523 -roomNumber: 8938 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Franny Walton,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franny Walton -sn: Walton -description: This is Franny Walton's description -facsimileTelephoneNumber: +1 213 968-1997 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 213 595-4514 -title: Chief Product Testing Sales Rep -userPassword: Password1 -uid: WaltonF -givenName: Franny -mail: WaltonF@5191509f48d94538ad03dc3532ab7b16.bitwarden.com -carLicense: JGNXI0 -departmentNumber: 8220 -employeeType: Employee -homePhone: +1 213 526-3016 -initials: F. W. -mobile: +1 213 180-8022 -pager: +1 213 954-6508 -roomNumber: 8407 -manager: cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Aryn Klimas,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aryn Klimas -sn: Klimas -description: This is Aryn Klimas's description -facsimileTelephoneNumber: +1 818 487-9024 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 818 883-2063 -title: Master Janitorial Consultant -userPassword: Password1 -uid: KlimasA -givenName: Aryn -mail: KlimasA@d7b344ca45cd4c63b54c502d92e2c5d9.bitwarden.com -carLicense: Y6GP6B -departmentNumber: 1933 -employeeType: Employee -homePhone: +1 818 951-4189 -initials: A. K. -mobile: +1 818 292-5846 -pager: +1 818 326-9465 -roomNumber: 8970 -manager: cn=Htd Knobloch,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jawad Macchiusi -sn: Macchiusi -description: This is Jawad Macchiusi's description -facsimileTelephoneNumber: +1 206 117-2531 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 206 362-8557 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: MacchiuJ -givenName: Jawad -mail: MacchiuJ@a2ea301b88434726b194e4c9303a1849.bitwarden.com -carLicense: 2WBOTT -departmentNumber: 6832 -employeeType: Contract -homePhone: +1 206 103-5805 -initials: J. M. -mobile: +1 206 185-2610 -pager: +1 206 682-8938 -roomNumber: 9749 -manager: cn=Ibbie Gung,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Geralene Lan,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Dorise Yue,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorise Yue -sn: Yue -description: This is Dorise Yue's description -facsimileTelephoneNumber: +1 213 630-8529 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 213 598-1303 -title: Junior Human Resources Manager -userPassword: Password1 -uid: YueD -givenName: Dorise -mail: YueD@ae51202c09c842a381cec0b8654819ea.bitwarden.com -carLicense: Q8U1Y1 -departmentNumber: 4420 -employeeType: Employee -homePhone: +1 213 598-5244 -initials: D. Y. -mobile: +1 213 908-7162 -pager: +1 213 942-5775 -roomNumber: 8469 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Olga Rehbein,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Mellisa Gustlin,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mellisa Gustlin -sn: Gustlin -description: This is Mellisa Gustlin's description -facsimileTelephoneNumber: +1 818 917-5523 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 818 912-6961 -title: Associate Management Punk -userPassword: Password1 -uid: GustlinM -givenName: Mellisa -mail: GustlinM@2f0e638056364f0ebcf3676022d443c8.bitwarden.com -carLicense: E3AM2T -departmentNumber: 8746 -employeeType: Normal -homePhone: +1 818 283-3731 -initials: M. G. -mobile: +1 818 953-8016 -pager: +1 818 545-2590 -roomNumber: 9469 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Butch Roper,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Butch Roper -sn: Roper -description: This is Butch Roper's description -facsimileTelephoneNumber: +1 213 872-9862 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 213 143-3322 -title: Chief Administrative Madonna -userPassword: Password1 -uid: RoperB -givenName: Butch -mail: RoperB@465c6a27d41345cf88d762adf10ae61e.bitwarden.com -carLicense: WQHQ6Y -departmentNumber: 2922 -employeeType: Employee -homePhone: +1 213 139-2472 -initials: B. R. -mobile: +1 213 690-3740 -pager: +1 213 213-3337 -roomNumber: 8345 -manager: cn=Lorri Abe,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nurhan Lebo -sn: Lebo -description: This is Nurhan Lebo's description -facsimileTelephoneNumber: +1 818 189-4068 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 818 905-3968 -title: Master Janitorial President -userPassword: Password1 -uid: LeboN -givenName: Nurhan -mail: LeboN@67d3a8519ac14347aeb58946a31a1f50.bitwarden.com -carLicense: P85J9B -departmentNumber: 6216 -employeeType: Normal -homePhone: +1 818 273-5459 -initials: N. L. -mobile: +1 818 230-1703 -pager: +1 818 974-1651 -roomNumber: 9181 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Doralyn Oaks -sn: Oaks -description: This is Doralyn Oaks's description -facsimileTelephoneNumber: +1 818 209-6960 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 818 921-6597 -title: Associate Human Resources Janitor -userPassword: Password1 -uid: OaksD -givenName: Doralyn -mail: OaksD@a0698e6e756a42f28ea2d90c4b303b9e.bitwarden.com -carLicense: UV82GI -departmentNumber: 2733 -employeeType: Normal -homePhone: +1 818 940-4669 -initials: D. O. -mobile: +1 818 101-6788 -pager: +1 818 213-1284 -roomNumber: 9242 -manager: cn=Ranea Beffert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Harish Shukor,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Mendel Rolls,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mendel Rolls -sn: Rolls -description: This is Mendel Rolls's description -facsimileTelephoneNumber: +1 213 629-8454 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 213 793-1577 -title: Supreme Administrative Punk -userPassword: Password1 -uid: RollsM -givenName: Mendel -mail: RollsM@776517ed1aad4bc8864e3bcd6b8432b4.bitwarden.com -carLicense: XELG25 -departmentNumber: 7116 -employeeType: Contract -homePhone: +1 213 958-1372 -initials: M. R. -mobile: +1 213 633-7079 -pager: +1 213 642-2598 -roomNumber: 8995 -manager: cn=Anthiathia Bessell,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Bessie Kurian,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Cecelia Dowse,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cecelia Dowse -sn: Dowse -description: This is Cecelia Dowse's description -facsimileTelephoneNumber: +1 510 227-7479 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 510 278-5593 -title: Master Administrative Dictator -userPassword: Password1 -uid: DowseC -givenName: Cecelia -mail: DowseC@97c81e07db974df3904138905672982c.bitwarden.com -carLicense: J07P65 -departmentNumber: 8654 -employeeType: Contract -homePhone: +1 510 784-8481 -initials: C. D. -mobile: +1 510 743-7496 -pager: +1 510 104-6463 -roomNumber: 9985 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacinda Barrows -sn: Barrows -description: This is Jacinda Barrows's description -facsimileTelephoneNumber: +1 213 670-2470 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 213 219-3079 -title: Supreme Janitorial Fellow -userPassword: Password1 -uid: BarrowsJ -givenName: Jacinda -mail: BarrowsJ@658d341f53c7427cb916d5817479bb06.bitwarden.com -carLicense: 9J9KB1 -departmentNumber: 3139 -employeeType: Employee -homePhone: +1 213 283-9639 -initials: J. B. -mobile: +1 213 768-7944 -pager: +1 213 695-6317 -roomNumber: 9242 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hennrietta Siewert,ou=Management,dc=bitwarden, dc=com - -dn: cn=Anette Lassig,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anette Lassig -sn: Lassig -description: This is Anette Lassig's description -facsimileTelephoneNumber: +1 206 478-5129 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 206 588-9276 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: LassigA -givenName: Anette -mail: LassigA@09584180f5c84cea9422d4844e19cecf.bitwarden.com -carLicense: MPLBDG -departmentNumber: 7794 -employeeType: Normal -homePhone: +1 206 695-5148 -initials: A. L. -mobile: +1 206 355-2299 -pager: +1 206 219-9100 -roomNumber: 9082 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosene Bonner,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Gio Londhe,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gio Londhe -sn: Londhe -description: This is Gio Londhe's description -facsimileTelephoneNumber: +1 804 298-9959 -l: Redwood Shores -ou: Human Resources -postalAddress: Human Resources$Redwood Shores -telephoneNumber: +1 804 882-8423 -title: Chief Human Resources Sales Rep -userPassword: Password1 -uid: LondheG -givenName: Gio -mail: LondheG@28985efb8c4d4c12b05fcd27a8c26b7f.bitwarden.com -carLicense: 8LHGT5 -departmentNumber: 8375 -employeeType: Employee -homePhone: +1 804 874-9736 -initials: G. L. -mobile: +1 804 966-8808 -pager: +1 804 706-1210 -roomNumber: 8067 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ChristieAnne Cropper -sn: Cropper -description: This is ChristieAnne Cropper's description -facsimileTelephoneNumber: +1 818 702-8154 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 818 313-5335 -title: Junior Product Testing Vice President -userPassword: Password1 -uid: CropperC -givenName: ChristieAnne -mail: CropperC@b193a1e78b454203b9fa10eeebe62941.bitwarden.com -carLicense: S6MYEM -departmentNumber: 4540 -employeeType: Contract -homePhone: +1 818 779-7580 -initials: C. C. -mobile: +1 818 778-7239 -pager: +1 818 486-9569 -roomNumber: 8424 -manager: cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Faizal Moussette,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tadayuki Mak,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tadayuki Mak -sn: Mak -description: This is Tadayuki Mak's description -facsimileTelephoneNumber: +1 213 110-5386 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 794-7952 -title: Junior Product Development President -userPassword: Password1 -uid: MakT -givenName: Tadayuki -mail: MakT@3de40f1f4bb746cab1a4ba47c2543175.bitwarden.com -carLicense: C7SRDS -departmentNumber: 2839 -employeeType: Normal -homePhone: +1 213 807-9177 -initials: T. M. -mobile: +1 213 872-2749 -pager: +1 213 485-4830 -roomNumber: 8241 -manager: cn=Pat Pereira,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amparo Ratnayake -sn: Ratnayake -description: This is Amparo Ratnayake's description -facsimileTelephoneNumber: +1 415 358-4745 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 562-1980 -title: Junior Human Resources Figurehead -userPassword: Password1 -uid: RatnayaA -givenName: Amparo -mail: RatnayaA@b923ae18e63741c4b104cfaeccc5a072.bitwarden.com -carLicense: QTAE7M -departmentNumber: 4512 -employeeType: Contract -homePhone: +1 415 237-1317 -initials: A. R. -mobile: +1 415 140-7859 -pager: +1 415 242-6420 -roomNumber: 8886 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=MunHang Altay,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ri Trisic,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ri Trisic -sn: Trisic -description: This is Ri Trisic's description -facsimileTelephoneNumber: +1 510 359-6698 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 510 976-1490 -title: Junior Peons Assistant -userPassword: Password1 -uid: TrisicR -givenName: Ri -mail: TrisicR@d13e5b3d0b624833b56bbffe10dce123.bitwarden.com -carLicense: L2QYCG -departmentNumber: 5531 -employeeType: Normal -homePhone: +1 510 818-3900 -initials: R. T. -mobile: +1 510 555-2882 -pager: +1 510 809-9588 -roomNumber: 8869 -manager: cn=Kees Rashid,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Ileana Doyle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ileana Doyle -sn: Doyle -description: This is Ileana Doyle's description -facsimileTelephoneNumber: +1 804 516-6666 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 804 145-7030 -title: Master Management Dictator -userPassword: Password1 -uid: DoyleI -givenName: Ileana -mail: DoyleI@39547ebc25814369833c967034408a9a.bitwarden.com -carLicense: SVMOFR -departmentNumber: 3173 -employeeType: Normal -homePhone: +1 804 652-1551 -initials: I. D. -mobile: +1 804 510-1218 -pager: +1 804 167-9560 -roomNumber: 9750 -manager: cn=Walter Napke,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nico Badelt,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nico Badelt -sn: Badelt -description: This is Nico Badelt's description -facsimileTelephoneNumber: +1 818 364-9717 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 818 962-3589 -title: Junior Management Sales Rep -userPassword: Password1 -uid: BadeltN -givenName: Nico -mail: BadeltN@1e81b45ef9d44be28cfb9e51c55e2212.bitwarden.com -carLicense: J59RC1 -departmentNumber: 8844 -employeeType: Normal -homePhone: +1 818 427-2131 -initials: N. B. -mobile: +1 818 685-5719 -pager: +1 818 812-4193 -roomNumber: 8868 -manager: cn=Shanna Bourgon,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ragu Lieure,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ragu Lieure -sn: Lieure -description: This is Ragu Lieure's description -facsimileTelephoneNumber: +1 206 412-4625 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 650-1579 -title: Chief Administrative Manager -userPassword: Password1 -uid: LieureR -givenName: Ragu -mail: LieureR@7eeb5a2e39b24090937294c20835ac1d.bitwarden.com -carLicense: XNPY0D -departmentNumber: 7088 -employeeType: Contract -homePhone: +1 206 250-3244 -initials: R. L. -mobile: +1 206 834-1338 -pager: +1 206 831-8806 -roomNumber: 8359 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Claudia Berhane,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claudia Berhane -sn: Berhane -description: This is Claudia Berhane's description -facsimileTelephoneNumber: +1 510 410-5115 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 510 590-4956 -title: Chief Management Vice President -userPassword: Password1 -uid: BerhaneC -givenName: Claudia -mail: BerhaneC@8737fee626484322a472390d3fcd9614.bitwarden.com -carLicense: 2XB23U -departmentNumber: 5936 -employeeType: Employee -homePhone: +1 510 139-3929 -initials: C. B. -mobile: +1 510 676-7091 -pager: +1 510 558-3585 -roomNumber: 8113 -manager: cn=Froukje Kennedy,ou=Management,dc=bitwarden, dc=com -secretary: cn=Mariet Hotson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Silvana Tunali,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Silvana Tunali -sn: Tunali -description: This is Silvana Tunali's description -facsimileTelephoneNumber: +1 206 240-8810 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 206 153-3367 -title: Associate Human Resources Punk -userPassword: Password1 -uid: TunaliS -givenName: Silvana -mail: TunaliS@d30e293ef1a4478a8b737f763542bea7.bitwarden.com -carLicense: WKCJTS -departmentNumber: 1992 -employeeType: Contract -homePhone: +1 206 199-5820 -initials: S. T. -mobile: +1 206 983-6806 -pager: +1 206 673-9639 -roomNumber: 9202 -manager: cn=Lorelle Ladymon,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Farshid Gard,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Anand Henshaw,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anand Henshaw -sn: Henshaw -description: This is Anand Henshaw's description -facsimileTelephoneNumber: +1 408 698-9104 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 408 940-6674 -title: Junior Administrative Mascot -userPassword: Password1 -uid: HenshawA -givenName: Anand -mail: HenshawA@9203e13698914816bdcd0ae89556ac90.bitwarden.com -carLicense: KBIFJT -departmentNumber: 5309 -employeeType: Employee -homePhone: +1 408 391-3851 -initials: A. H. -mobile: +1 408 256-2205 -pager: +1 408 646-6909 -roomNumber: 8449 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Imtaz Ledamun,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Imtaz Ledamun -sn: Ledamun -description: This is Imtaz Ledamun's description -facsimileTelephoneNumber: +1 804 525-3053 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 804 777-3294 -title: Chief Peons Artist -userPassword: Password1 -uid: LedamunI -givenName: Imtaz -mail: LedamunI@71bf922abd2749a3982856c35ce9c912.bitwarden.com -carLicense: CXHVPU -departmentNumber: 3976 -employeeType: Contract -homePhone: +1 804 464-6855 -initials: I. L. -mobile: +1 804 466-9374 -pager: +1 804 830-5753 -roomNumber: 8052 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pirooz Rashed,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Meryl Diaz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meryl Diaz -sn: Diaz -description: This is Meryl Diaz's description -facsimileTelephoneNumber: +1 510 423-7851 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 923-8294 -title: Master Product Development Admin -userPassword: Password1 -uid: DiazM -givenName: Meryl -mail: DiazM@c1107b78fcdc4c7da36d0ed149a4f820.bitwarden.com -carLicense: NO681J -departmentNumber: 7578 -employeeType: Contract -homePhone: +1 510 423-2138 -initials: M. D. -mobile: +1 510 912-4123 -pager: +1 510 257-4325 -roomNumber: 8413 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Saraann Anastasio,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saraann Anastasio -sn: Anastasio -description: This is Saraann Anastasio's description -facsimileTelephoneNumber: +1 510 111-3222 -l: Menlo Park -ou: Administrative -postalAddress: Administrative$Menlo Park -telephoneNumber: +1 510 910-6391 -title: Chief Administrative Consultant -userPassword: Password1 -uid: AnastasS -givenName: Saraann -mail: AnastasS@a3b3e1a7dc12465fbb231dc02524f751.bitwarden.com -carLicense: QU1BAG -departmentNumber: 8507 -employeeType: Contract -homePhone: +1 510 801-3163 -initials: S. A. -mobile: +1 510 220-8615 -pager: +1 510 382-1332 -roomNumber: 8005 -manager: cn=ChongLai Hingtgen,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Declan Creane,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Declan Creane -sn: Creane -description: This is Declan Creane's description -facsimileTelephoneNumber: +1 804 898-6327 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 804 146-4700 -title: Chief Product Development Janitor -userPassword: Password1 -uid: CreaneD -givenName: Declan -mail: CreaneD@985464865b044117812421256bb2a81d.bitwarden.com -carLicense: 6ILOIU -departmentNumber: 3647 -employeeType: Contract -homePhone: +1 804 547-8733 -initials: D. C. -mobile: +1 804 558-3203 -pager: +1 804 771-7127 -roomNumber: 8156 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Connie Barentsen,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Terrell Mathieson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Terrell Mathieson -sn: Mathieson -description: This is Terrell Mathieson's description -facsimileTelephoneNumber: +1 408 628-8563 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 408 564-3130 -title: Junior Administrative Madonna -userPassword: Password1 -uid: MathiesT -givenName: Terrell -mail: MathiesT@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com -carLicense: CMNFNF -departmentNumber: 2087 -employeeType: Normal -homePhone: +1 408 407-4449 -initials: T. M. -mobile: +1 408 951-3139 -pager: +1 408 781-8724 -roomNumber: 8733 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Margarethe Gibbons -sn: Gibbons -description: This is Margarethe Gibbons's description -facsimileTelephoneNumber: +1 510 267-2800 -l: San Jose -ou: Janitorial -postalAddress: Janitorial$San Jose -telephoneNumber: +1 510 715-4075 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: GibbonsM -givenName: Margarethe -mail: GibbonsM@6e63ac1e5cff4aa489817dd6f33e1a44.bitwarden.com -carLicense: FPEWKO -departmentNumber: 5424 -employeeType: Employee -homePhone: +1 510 597-5187 -initials: M. G. -mobile: +1 510 742-8131 -pager: +1 510 893-4359 -roomNumber: 8792 -manager: cn=Lina Frederick,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Niki Tosczak,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chelsey Leydig -sn: Leydig -description: This is Chelsey Leydig's description -facsimileTelephoneNumber: +1 408 640-6008 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 408 697-1800 -title: Master Human Resources President -userPassword: Password1 -uid: LeydigC -givenName: Chelsey -mail: LeydigC@c69269019dbb421c8567785c28a21f04.bitwarden.com -carLicense: WGDIRS -departmentNumber: 2193 -employeeType: Normal -homePhone: +1 408 162-5607 -initials: C. L. -mobile: +1 408 797-2502 -pager: +1 408 113-9187 -roomNumber: 9352 -manager: cn=Yetta Litherland,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Olympia DMS,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olympia DMS -sn: DMS -description: This is Olympia DMS's description -facsimileTelephoneNumber: +1 213 844-1656 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 213 188-8145 -title: Supreme Peons Stooge -userPassword: Password1 -uid: DMSO -givenName: Olympia -mail: DMSO@9cba00e55266421b93bd11c17d0407ed.bitwarden.com -carLicense: NN7IOM -departmentNumber: 8501 -employeeType: Employee -homePhone: +1 213 183-6415 -initials: O. D. -mobile: +1 213 747-3513 -pager: +1 213 576-6436 -roomNumber: 8208 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Mounir Pullum,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mounir Pullum -sn: Pullum -description: This is Mounir Pullum's description -facsimileTelephoneNumber: +1 804 584-8282 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 804 659-7514 -title: Junior Payroll Mascot -userPassword: Password1 -uid: PullumM -givenName: Mounir -mail: PullumM@a7e7b13342d14512ab65c0fc1d87a2ae.bitwarden.com -carLicense: UXW65D -departmentNumber: 1736 -employeeType: Employee -homePhone: +1 804 346-4044 -initials: M. P. -mobile: +1 804 295-6828 -pager: +1 804 372-4901 -roomNumber: 8392 -manager: cn=Yen Sharkey,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Risa Hatten,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerardjan McDowell -sn: McDowell -description: This is Gerardjan McDowell's description -facsimileTelephoneNumber: +1 213 744-5707 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 213 692-7130 -title: Junior Administrative Pinhead -userPassword: Password1 -uid: McDowelG -givenName: Gerardjan -mail: McDowelG@5a83a2a2968c4e6f9cd933a562095339.bitwarden.com -carLicense: TDKNGR -departmentNumber: 9951 -employeeType: Contract -homePhone: +1 213 981-4912 -initials: G. M. -mobile: +1 213 742-1475 -pager: +1 213 515-6909 -roomNumber: 9221 -manager: cn=Powell Brar,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Carita Stetner,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Constantina Faou,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Constantina Faou -sn: Faou -description: This is Constantina Faou's description -facsimileTelephoneNumber: +1 408 833-7013 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 408 686-4789 -title: Chief Product Development Janitor -userPassword: Password1 -uid: FaouC -givenName: Constantina -mail: FaouC@4376a00e71594ef1b26e2e0a8e02ecaa.bitwarden.com -carLicense: KOIVM5 -departmentNumber: 7546 -employeeType: Normal -homePhone: +1 408 307-5854 -initials: C. F. -mobile: +1 408 201-6092 -pager: +1 408 172-8028 -roomNumber: 8064 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Santiago Georges,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Santiago Georges -sn: Georges -description: This is Santiago Georges's description -facsimileTelephoneNumber: +1 415 160-9920 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 415 431-5129 -title: Associate Management Writer -userPassword: Password1 -uid: GeorgesS -givenName: Santiago -mail: GeorgesS@f17372744618439491402613e317ee84.bitwarden.com -carLicense: 6HUUQC -departmentNumber: 9175 -employeeType: Normal -homePhone: +1 415 493-4697 -initials: S. G. -mobile: +1 415 378-4724 -pager: +1 415 622-7465 -roomNumber: 9142 -manager: cn=Betteanne Donak,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Gena Lawther,ou=Management,dc=bitwarden, dc=com - -dn: cn=Marinette Ficker,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marinette Ficker -sn: Ficker -description: This is Marinette Ficker's description -facsimileTelephoneNumber: +1 206 885-6590 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 206 256-8882 -title: Junior Janitorial Admin -userPassword: Password1 -uid: FickerM -givenName: Marinette -mail: FickerM@368b49862ec74ac1974a058d04889202.bitwarden.com -carLicense: TKSH60 -departmentNumber: 5594 -employeeType: Normal -homePhone: +1 206 646-7004 -initials: M. F. -mobile: +1 206 790-7805 -pager: +1 206 586-2216 -roomNumber: 8441 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Janet Pankiw,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janet Pankiw -sn: Pankiw -description: This is Janet Pankiw's description -facsimileTelephoneNumber: +1 408 971-9068 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 408 535-8780 -title: Junior Administrative Fellow -userPassword: Password1 -uid: PankiwJ -givenName: Janet -mail: PankiwJ@4155bdebff5941d48d470ec7ba36ba81.bitwarden.com -carLicense: KA9YUV -departmentNumber: 3780 -employeeType: Contract -homePhone: +1 408 752-5258 -initials: J. P. -mobile: +1 408 334-5508 -pager: +1 408 151-8177 -roomNumber: 8510 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Martina Fuson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sayed Mohajeri -sn: Mohajeri -description: This is Sayed Mohajeri's description -facsimileTelephoneNumber: +1 510 510-1713 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 502-7335 -title: Supreme Human Resources Writer -userPassword: Password1 -uid: MohajerS -givenName: Sayed -mail: MohajerS@8e1bdb2b71764573ad6ede8abcf3030f.bitwarden.com -carLicense: 5SB3H7 -departmentNumber: 7902 -employeeType: Employee -homePhone: +1 510 835-2808 -initials: S. M. -mobile: +1 510 970-5154 -pager: +1 510 762-2668 -roomNumber: 8281 -manager: cn=Jey Shackley,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Else Hazenboom,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Else Hazenboom -sn: Hazenboom -description: This is Else Hazenboom's description -facsimileTelephoneNumber: +1 804 895-6046 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 804 644-6204 -title: Associate Product Testing Stooge -userPassword: Password1 -uid: HazenboE -givenName: Else -mail: HazenboE@5c48fade5edf4f5784f81c27e5012291.bitwarden.com -carLicense: CHCU34 -departmentNumber: 8896 -employeeType: Employee -homePhone: +1 804 734-2524 -initials: E. H. -mobile: +1 804 583-6767 -pager: +1 804 750-3571 -roomNumber: 8040 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bobb Lacosse,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Saibal Traynor,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Saibal Traynor -sn: Traynor -description: This is Saibal Traynor's description -facsimileTelephoneNumber: +1 206 547-2939 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 820-4634 -title: Chief Peons Sales Rep -userPassword: Password1 -uid: TraynorS -givenName: Saibal -mail: TraynorS@d9dfb2c3a70849548f67937ceedb07f1.bitwarden.com -carLicense: TK9GTL -departmentNumber: 4098 -employeeType: Employee -homePhone: +1 206 261-8198 -initials: S. T. -mobile: +1 206 826-1363 -pager: +1 206 206-2186 -roomNumber: 8425 -manager: cn=Duc Dinalic,ou=Management,dc=bitwarden, dc=com -secretary: cn=Barsha Ozmizrak,ou=Management,dc=bitwarden, dc=com - -dn: cn=Khue Mein,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khue Mein -sn: Mein -description: This is Khue Mein's description -facsimileTelephoneNumber: +1 415 133-2262 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 415 859-2624 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: MeinK -givenName: Khue -mail: MeinK@04a84c4ba77a4d778bbb90bf38322dca.bitwarden.com -carLicense: U0OW84 -departmentNumber: 3094 -employeeType: Normal -homePhone: +1 415 707-3294 -initials: K. M. -mobile: +1 415 703-9577 -pager: +1 415 679-6220 -roomNumber: 8036 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Anabelle Krater,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Blanca Schaffel -sn: Schaffel -description: This is Blanca Schaffel's description -facsimileTelephoneNumber: +1 206 836-1014 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 206 350-4010 -title: Associate Product Testing Sales Rep -userPassword: Password1 -uid: SchaffeB -givenName: Blanca -mail: SchaffeB@df40332a741445b7a8fa73b2a928c4b0.bitwarden.com -carLicense: VUS0BM -departmentNumber: 3545 -employeeType: Normal -homePhone: +1 206 189-9405 -initials: B. S. -mobile: +1 206 299-3759 -pager: +1 206 923-5844 -roomNumber: 9974 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=PeyKee Fetterman,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: PeyKee Fetterman -sn: Fetterman -description: This is PeyKee Fetterman's description -facsimileTelephoneNumber: +1 213 385-1161 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 213 242-9763 -title: Associate Management Dictator -userPassword: Password1 -uid: FettermP -givenName: PeyKee -mail: FettermP@afdb909799524b7dbed21ce8a882a129.bitwarden.com -carLicense: 1D82MG -departmentNumber: 2549 -employeeType: Normal -homePhone: +1 213 446-7241 -initials: P. F. -mobile: +1 213 796-9846 -pager: +1 213 724-6345 -roomNumber: 8813 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ozlem Nys,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Claire Reinlie,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Claire Reinlie -sn: Reinlie -description: This is Claire Reinlie's description -facsimileTelephoneNumber: +1 818 353-1391 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 213-2233 -title: Supreme Management Director -userPassword: Password1 -uid: ReinlieC -givenName: Claire -mail: ReinlieC@825889a0436341f395c7130d2978f17d.bitwarden.com -carLicense: TH4V2Y -departmentNumber: 6497 -employeeType: Contract -homePhone: +1 818 291-3926 -initials: C. R. -mobile: +1 818 890-9366 -pager: +1 818 114-7047 -roomNumber: 9063 -manager: cn=Baris Derome,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Shawna Lahlum,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shawna Lahlum -sn: Lahlum -description: This is Shawna Lahlum's description -facsimileTelephoneNumber: +1 818 591-3927 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 818 763-2482 -title: Master Product Development Engineer -userPassword: Password1 -uid: LahlumS -givenName: Shawna -mail: LahlumS@11d46bffb41f4b52a78d536832879f6a.bitwarden.com -carLicense: 7RQ6N2 -departmentNumber: 8337 -employeeType: Contract -homePhone: +1 818 178-2501 -initials: S. L. -mobile: +1 818 254-3004 -pager: +1 818 427-4108 -roomNumber: 8556 -manager: cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Darelle Childress,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darelle Childress -sn: Childress -description: This is Darelle Childress's description -facsimileTelephoneNumber: +1 510 411-2962 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 510 261-7149 -title: Junior Product Development Madonna -userPassword: Password1 -uid: ChildreD -givenName: Darelle -mail: ChildreD@6ffe5ab0f525480aa833777930f34870.bitwarden.com -carLicense: AFPCWK -departmentNumber: 6545 -employeeType: Contract -homePhone: +1 510 235-4850 -initials: D. C. -mobile: +1 510 772-9302 -pager: +1 510 322-2988 -roomNumber: 8601 -manager: cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Hpone Paryag,ou=Management,dc=bitwarden, dc=com - -dn: cn=Kessiah Alford,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kessiah Alford -sn: Alford -description: This is Kessiah Alford's description -facsimileTelephoneNumber: +1 213 256-8508 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 213 174-3615 -title: Associate Peons Grunt -userPassword: Password1 -uid: AlfordK -givenName: Kessiah -mail: AlfordK@238696ade728438aa3391299a0dc9901.bitwarden.com -carLicense: 7YMJKD -departmentNumber: 6461 -employeeType: Contract -homePhone: +1 213 728-4376 -initials: K. A. -mobile: +1 213 465-2891 -pager: +1 213 915-8239 -roomNumber: 9195 -manager: cn=Grata Tomacic,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Theressa Olivier,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Theressa Olivier -sn: Olivier -description: This is Theressa Olivier's description -facsimileTelephoneNumber: +1 408 476-4899 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 408 448-6157 -title: Junior Peons Czar -userPassword: Password1 -uid: OlivierT -givenName: Theressa -mail: OlivierT@3ac90edfcfff46898d6b206ad200961d.bitwarden.com -carLicense: TU5FG7 -departmentNumber: 8309 -employeeType: Employee -homePhone: +1 408 870-8979 -initials: T. O. -mobile: +1 408 845-1296 -pager: +1 408 339-9878 -roomNumber: 8269 -manager: cn=Hanh Preo,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Pauly Jago,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pauly Jago -sn: Jago -description: This is Pauly Jago's description -facsimileTelephoneNumber: +1 206 511-1675 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 206 807-6746 -title: Master Product Testing Madonna -userPassword: Password1 -uid: JagoP -givenName: Pauly -mail: JagoP@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com -carLicense: JSMPF7 -departmentNumber: 4705 -employeeType: Normal -homePhone: +1 206 249-7211 -initials: P. J. -mobile: +1 206 913-3791 -pager: +1 206 772-5537 -roomNumber: 8642 -manager: cn=Jeana Horwood,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Nha Chytil,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Collete Krabicka,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Collete Krabicka -sn: Krabicka -description: This is Collete Krabicka's description -facsimileTelephoneNumber: +1 804 830-8925 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 234-3623 -title: Associate Product Development Admin -userPassword: Password1 -uid: KrabickC -givenName: Collete -mail: KrabickC@7cae85b47554428097a6ccb66a70ecf0.bitwarden.com -carLicense: 49CXYU -departmentNumber: 1827 -employeeType: Employee -homePhone: +1 804 137-1622 -initials: C. K. -mobile: +1 804 327-8232 -pager: +1 804 376-3539 -roomNumber: 8519 -manager: cn=Odele Docherty,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kim Highsmith,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kim Highsmith -sn: Highsmith -description: This is Kim Highsmith's description -facsimileTelephoneNumber: +1 206 916-4402 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 253-7876 -title: Junior Administrative Punk -userPassword: Password1 -uid: HighsmiK -givenName: Kim -mail: HighsmiK@1ae1933dac97453a926e3efbe8067be8.bitwarden.com -carLicense: BUGYCA -departmentNumber: 7143 -employeeType: Employee -homePhone: +1 206 273-7413 -initials: K. H. -mobile: +1 206 707-7891 -pager: +1 206 248-6659 -roomNumber: 8064 -manager: cn=Mason AbiAad,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Dany Barel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norine Maludzinski -sn: Maludzinski -description: This is Norine Maludzinski's description -facsimileTelephoneNumber: +1 818 706-4910 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 818 617-7562 -title: Chief Human Resources Artist -userPassword: Password1 -uid: MaludziN -givenName: Norine -mail: MaludziN@19be86f3b1d34c7ab6993505e8f0ad33.bitwarden.com -carLicense: AIGKX6 -departmentNumber: 3515 -employeeType: Contract -homePhone: +1 818 868-5648 -initials: N. M. -mobile: +1 818 107-5651 -pager: +1 818 185-4537 -roomNumber: 8459 -manager: cn=Verla Trottier,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Alli McCartney,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Elladine Schwab,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elladine Schwab -sn: Schwab -description: This is Elladine Schwab's description -facsimileTelephoneNumber: +1 213 593-3451 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 263-3118 -title: Chief Janitorial Writer -userPassword: Password1 -uid: SchwabE -givenName: Elladine -mail: SchwabE@fdc7d191201f48f4ad7e078c4bc3a04a.bitwarden.com -carLicense: UETRXX -departmentNumber: 4917 -employeeType: Contract -homePhone: +1 213 189-8487 -initials: E. S. -mobile: +1 213 836-8851 -pager: +1 213 536-1101 -roomNumber: 8061 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Laurie Bijons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Francisco Knickerbocker -sn: Knickerbocker -description: This is Francisco Knickerbocker's description -facsimileTelephoneNumber: +1 213 493-4591 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 213 221-3919 -title: Associate Janitorial Engineer -userPassword: Password1 -uid: KnickerF -givenName: Francisco -mail: KnickerF@f853c03d8c874a9b82d05bbacc050701.bitwarden.com -carLicense: YDP0Q4 -departmentNumber: 3815 -employeeType: Contract -homePhone: +1 213 466-9371 -initials: F. K. -mobile: +1 213 894-1622 -pager: +1 213 897-7260 -roomNumber: 9442 -manager: cn=Emmalee Foods,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cortney Tolar,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trinh Parthasarathy -sn: Parthasarathy -description: This is Trinh Parthasarathy's description -facsimileTelephoneNumber: +1 818 863-9025 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 399-9786 -title: Supreme Peons Fellow -userPassword: Password1 -uid: ParthasT -givenName: Trinh -mail: ParthasT@a3360bcceedb4a1c970485f0ee727ec8.bitwarden.com -carLicense: MTQ90J -departmentNumber: 8460 -employeeType: Contract -homePhone: +1 818 155-4618 -initials: T. P. -mobile: +1 818 470-7151 -pager: +1 818 865-2775 -roomNumber: 9849 -manager: cn=Duljit Zbuda,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=XiaoMing Dorr,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: XiaoMing Dorr -sn: Dorr -description: This is XiaoMing Dorr's description -facsimileTelephoneNumber: +1 804 811-6725 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 804 726-8338 -title: Master Management Dictator -userPassword: Password1 -uid: DorrX -givenName: XiaoMing -mail: DorrX@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com -carLicense: 5Y516R -departmentNumber: 5825 -employeeType: Contract -homePhone: +1 804 980-7155 -initials: X. D. -mobile: +1 804 543-9784 -pager: +1 804 800-8646 -roomNumber: 8800 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Clement Durant,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clement Durant -sn: Durant -description: This is Clement Durant's description -facsimileTelephoneNumber: +1 415 409-9950 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 415 407-8852 -title: Chief Peons Dictator -userPassword: Password1 -uid: DurantC -givenName: Clement -mail: DurantC@50bab9f9cf1041a789372e5001d27214.bitwarden.com -carLicense: T9DEMY -departmentNumber: 3415 -employeeType: Normal -homePhone: +1 415 906-9498 -initials: C. D. -mobile: +1 415 530-9196 -pager: +1 415 627-7073 -roomNumber: 8001 -manager: cn=Oryal Raschig,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rejeanne Shelegey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rejeanne Shelegey -sn: Shelegey -description: This is Rejeanne Shelegey's description -facsimileTelephoneNumber: +1 408 733-9458 -l: San Jose -ou: Management -postalAddress: Management$San Jose -telephoneNumber: +1 408 813-2418 -title: Master Management Czar -userPassword: Password1 -uid: ShelegeR -givenName: Rejeanne -mail: ShelegeR@de4005aec23f451ca3bc6305e1d4b24c.bitwarden.com -carLicense: OXSSW1 -departmentNumber: 2321 -employeeType: Employee -homePhone: +1 408 837-7000 -initials: R. S. -mobile: +1 408 416-5971 -pager: +1 408 501-8630 -roomNumber: 9577 -manager: cn=Shelly Keller,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Nicky McDowall,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicky McDowall -sn: McDowall -description: This is Nicky McDowall's description -facsimileTelephoneNumber: +1 408 533-7559 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 213-4263 -title: Master Payroll Grunt -userPassword: Password1 -uid: McDowalN -givenName: Nicky -mail: McDowalN@99e9bc5df9fd4340b54c8a144a9561a1.bitwarden.com -carLicense: PV24JE -departmentNumber: 4504 -employeeType: Normal -homePhone: +1 408 227-2113 -initials: N. M. -mobile: +1 408 843-2770 -pager: +1 408 684-7868 -roomNumber: 9028 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ola Paulhus,ou=Management,dc=bitwarden, dc=com - -dn: cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: JeanBernard Chepregi -sn: Chepregi -description: This is JeanBernard Chepregi's description -facsimileTelephoneNumber: +1 818 350-3224 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 818 288-2416 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: ChepregJ -givenName: JeanBernard -mail: ChepregJ@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com -carLicense: 6TOWPF -departmentNumber: 2828 -employeeType: Employee -homePhone: +1 818 577-3171 -initials: J. C. -mobile: +1 818 227-2143 -pager: +1 818 705-9452 -roomNumber: 8766 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Thomasa Fulk,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomasa Fulk -sn: Fulk -description: This is Thomasa Fulk's description -facsimileTelephoneNumber: +1 415 254-8331 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 415 558-7014 -title: Associate Peons Vice President -userPassword: Password1 -uid: FulkT -givenName: Thomasa -mail: FulkT@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com -carLicense: I8QDAC -departmentNumber: 1516 -employeeType: Contract -homePhone: +1 415 458-4030 -initials: T. F. -mobile: +1 415 237-2508 -pager: +1 415 380-1998 -roomNumber: 9603 -manager: cn=Bette Pipit,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bennett Biage,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Florri Tregenza,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Florri Tregenza -sn: Tregenza -description: This is Florri Tregenza's description -facsimileTelephoneNumber: +1 206 124-2250 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 236-3470 -title: Chief Peons Manager -userPassword: Password1 -uid: TregenzF -givenName: Florri -mail: TregenzF@759d634715d84fd98852f9030d6bb1fd.bitwarden.com -carLicense: PE78WC -departmentNumber: 8211 -employeeType: Contract -homePhone: +1 206 511-7410 -initials: F. T. -mobile: +1 206 618-3323 -pager: +1 206 950-5593 -roomNumber: 9910 -manager: cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hester Colbourne,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hester Colbourne -sn: Colbourne -description: This is Hester Colbourne's description -facsimileTelephoneNumber: +1 804 285-6232 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 644-2407 -title: Chief Product Development Mascot -userPassword: Password1 -uid: ColbourH -givenName: Hester -mail: ColbourH@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com -carLicense: RSCJDF -departmentNumber: 9163 -employeeType: Employee -homePhone: +1 804 114-2958 -initials: H. C. -mobile: +1 804 732-7069 -pager: +1 804 278-6209 -roomNumber: 9455 -manager: cn=Carma Mattiussi,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Judith Fuqua,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Anitra Hugel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anitra Hugel -sn: Hugel -description: This is Anitra Hugel's description -facsimileTelephoneNumber: +1 510 222-6755 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 510 203-3657 -title: Junior Product Development Grunt -userPassword: Password1 -uid: HugelA -givenName: Anitra -mail: HugelA@41e8e26802fc4aa2a4f148597fd04eef.bitwarden.com -carLicense: QDE4JH -departmentNumber: 7147 -employeeType: Normal -homePhone: +1 510 761-1219 -initials: A. H. -mobile: +1 510 597-2720 -pager: +1 510 460-7859 -roomNumber: 8557 -manager: cn=Cari Cuany,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kanu Cuervo,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kanu Cuervo -sn: Cuervo -description: This is Kanu Cuervo's description -facsimileTelephoneNumber: +1 804 539-1191 -l: Santa Clara -ou: Management -postalAddress: Management$Santa Clara -telephoneNumber: +1 804 381-1802 -title: Junior Management Fellow -userPassword: Password1 -uid: CuervoK -givenName: Kanu -mail: CuervoK@4ffdbcbdfbba4f78b2cb0e4b52273909.bitwarden.com -carLicense: GKL0JX -departmentNumber: 1782 -employeeType: Normal -homePhone: +1 804 292-9229 -initials: K. C. -mobile: +1 804 991-2642 -pager: +1 804 314-1512 -roomNumber: 8069 -manager: cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Raju Ciochon,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Octavia Lethebinh -sn: Lethebinh -description: This is Octavia Lethebinh's description -facsimileTelephoneNumber: +1 804 106-3352 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 804 852-7388 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: LethebiO -givenName: Octavia -mail: LethebiO@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com -carLicense: V6RLV8 -departmentNumber: 4372 -employeeType: Contract -homePhone: +1 804 857-9222 -initials: O. L. -mobile: +1 804 676-7875 -pager: +1 804 131-4726 -roomNumber: 9880 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Jessalin Sauve,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: AnnLorrain Hafermalz -sn: Hafermalz -description: This is AnnLorrain Hafermalz's description -facsimileTelephoneNumber: +1 213 614-8542 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 213 847-4048 -title: Junior Payroll Evangelist -userPassword: Password1 -uid: HafermaA -givenName: AnnLorrain -mail: HafermaA@566c53c3c68842f79a345eff5495df76.bitwarden.com -carLicense: OME6UD -departmentNumber: 7284 -employeeType: Normal -homePhone: +1 213 861-3348 -initials: A. H. -mobile: +1 213 350-1746 -pager: +1 213 562-2480 -roomNumber: 9805 -manager: cn=Margaretta Amott,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Faruk Hanzel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Faruk Hanzel -sn: Hanzel -description: This is Faruk Hanzel's description -facsimileTelephoneNumber: +1 818 431-8630 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 561-5751 -title: Chief Product Development Punk -userPassword: Password1 -uid: HanzelF -givenName: Faruk -mail: HanzelF@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com -carLicense: J6OWVW -departmentNumber: 4361 -employeeType: Contract -homePhone: +1 818 465-5795 -initials: F. H. -mobile: +1 818 510-2693 -pager: +1 818 668-4224 -roomNumber: 8450 -manager: cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cavin Circe,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Trent Carli,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Trent Carli -sn: Carli -description: This is Trent Carli's description -facsimileTelephoneNumber: +1 510 357-5314 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 539-5020 -title: Supreme Product Development Admin -userPassword: Password1 -uid: CarliT -givenName: Trent -mail: CarliT@d95e5fa5af7a4a96ac09ece7f1a1a4f9.bitwarden.com -carLicense: EQKHKD -departmentNumber: 3937 -employeeType: Normal -homePhone: +1 510 481-1098 -initials: T. C. -mobile: +1 510 352-4290 -pager: +1 510 536-3396 -roomNumber: 8385 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anni Demchuk,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Maurene Paliga,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maurene Paliga -sn: Paliga -description: This is Maurene Paliga's description -facsimileTelephoneNumber: +1 510 920-5679 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 510 357-5318 -title: Supreme Payroll Artist -userPassword: Password1 -uid: PaligaM -givenName: Maurene -mail: PaligaM@0fae6975893e4404981e1b0278fd9893.bitwarden.com -carLicense: 03PL7U -departmentNumber: 4307 -employeeType: Normal -homePhone: +1 510 700-6810 -initials: M. P. -mobile: +1 510 875-4079 -pager: +1 510 491-6902 -roomNumber: 9485 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Minette Manner,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Minette Manner -sn: Manner -description: This is Minette Manner's description -facsimileTelephoneNumber: +1 408 596-8669 -l: Cupertino -ou: Management -postalAddress: Management$Cupertino -telephoneNumber: +1 408 681-1997 -title: Supreme Management Pinhead -userPassword: Password1 -uid: MannerM -givenName: Minette -mail: MannerM@2ee12d03ea504c8cbd45c956288b9b76.bitwarden.com -carLicense: J7AO97 -departmentNumber: 3829 -employeeType: Normal -homePhone: +1 408 798-7081 -initials: M. M. -mobile: +1 408 930-4586 -pager: +1 408 898-4188 -roomNumber: 8764 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dotti Merklinger -sn: Merklinger -description: This is Dotti Merklinger's description -facsimileTelephoneNumber: +1 213 526-4797 -l: Sunnyvale -ou: Human Resources -postalAddress: Human Resources$Sunnyvale -telephoneNumber: +1 213 757-5592 -title: Associate Human Resources Grunt -userPassword: Password1 -uid: MerklinD -givenName: Dotti -mail: MerklinD@e471e3a82052467cbf4b6e0a9c1ffb9e.bitwarden.com -carLicense: UY8B09 -departmentNumber: 1652 -employeeType: Employee -homePhone: +1 213 685-7848 -initials: D. M. -mobile: +1 213 222-6215 -pager: +1 213 206-3581 -roomNumber: 8362 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Hazel Nash,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elio Lough,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elio Lough -sn: Lough -description: This is Elio Lough's description -facsimileTelephoneNumber: +1 213 454-8066 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 213 820-2212 -title: Junior Payroll Technician -userPassword: Password1 -uid: LoughE -givenName: Elio -mail: LoughE@a63636764be2417c8862dba36d524669.bitwarden.com -carLicense: KC42M7 -departmentNumber: 4167 -employeeType: Employee -homePhone: +1 213 171-4174 -initials: E. L. -mobile: +1 213 696-6817 -pager: +1 213 862-5541 -roomNumber: 8352 -manager: cn=Notley Salinas,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Rodrigus Helwege,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Abigael Noddin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Abigael Noddin -sn: Noddin -description: This is Abigael Noddin's description -facsimileTelephoneNumber: +1 213 528-3063 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 213 938-1575 -title: Supreme Peons Czar -userPassword: Password1 -uid: NoddinA -givenName: Abigael -mail: NoddinA@db51bc9053f3446197c0ce77497e73c2.bitwarden.com -carLicense: 6MAFMY -departmentNumber: 7809 -employeeType: Employee -homePhone: +1 213 851-3555 -initials: A. N. -mobile: +1 213 209-8650 -pager: +1 213 348-9719 -roomNumber: 9435 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cristen Bethune,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Winna Bono,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Winna Bono -sn: Bono -description: This is Winna Bono's description -facsimileTelephoneNumber: +1 804 311-3269 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 532-6563 -title: Associate Human Resources Fellow -userPassword: Password1 -uid: BonoW -givenName: Winna -mail: BonoW@7c32fb701ef74a0cad22be6cdec84337.bitwarden.com -carLicense: DCFU14 -departmentNumber: 4428 -employeeType: Employee -homePhone: +1 804 861-7733 -initials: W. B. -mobile: +1 804 263-7822 -pager: +1 804 604-4049 -roomNumber: 8490 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khamdy Jubenville -sn: Jubenville -description: This is Khamdy Jubenville's description -facsimileTelephoneNumber: +1 408 469-4600 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 408 733-8021 -title: Supreme Administrative Technician -userPassword: Password1 -uid: JubenviK -givenName: Khamdy -mail: JubenviK@828715479ac64a4e9327e29f8a0322a8.bitwarden.com -carLicense: 8UT6XC -departmentNumber: 1198 -employeeType: Normal -homePhone: +1 408 563-3613 -initials: K. J. -mobile: +1 408 606-9095 -pager: +1 408 286-2614 -roomNumber: 9919 -manager: cn=Genny Bladon,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Karalynn Paylor,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karalynn Paylor -sn: Paylor -description: This is Karalynn Paylor's description -facsimileTelephoneNumber: +1 818 741-6816 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 818 477-6674 -title: Chief Administrative Visionary -userPassword: Password1 -uid: PaylorK -givenName: Karalynn -mail: PaylorK@77c372e3de4e484f817d59e9093d13ca.bitwarden.com -carLicense: XJ4R9Y -departmentNumber: 2635 -employeeType: Contract -homePhone: +1 818 524-3905 -initials: K. P. -mobile: +1 818 988-9969 -pager: +1 818 791-6659 -roomNumber: 9445 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Caterina Pittam,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caterina Pittam -sn: Pittam -description: This is Caterina Pittam's description -facsimileTelephoneNumber: +1 408 381-4970 -l: Armonk -ou: Peons -postalAddress: Peons$Armonk -telephoneNumber: +1 408 768-9154 -title: Associate Peons Stooge -userPassword: Password1 -uid: PittamC -givenName: Caterina -mail: PittamC@73270e440d9c4ce889031efd2cc4d745.bitwarden.com -carLicense: O81HGU -departmentNumber: 7704 -employeeType: Normal -homePhone: +1 408 887-3832 -initials: C. P. -mobile: +1 408 130-2243 -pager: +1 408 603-9883 -roomNumber: 9288 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Michaela Cuffle,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Michaela Cuffle -sn: Cuffle -description: This is Michaela Cuffle's description -facsimileTelephoneNumber: +1 804 503-8154 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 421-7413 -title: Associate Management Dictator -userPassword: Password1 -uid: CuffleM -givenName: Michaela -mail: CuffleM@c927612f4cbe4fcf841a3d7e140a391c.bitwarden.com -carLicense: LDGIUP -departmentNumber: 7028 -employeeType: Contract -homePhone: +1 804 906-6736 -initials: M. C. -mobile: +1 804 358-8134 -pager: +1 804 150-6798 -roomNumber: 9556 -manager: cn=Lebbie Lortie,ou=Management,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sibylle Martins,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sibylle Martins -sn: Martins -description: This is Sibylle Martins's description -facsimileTelephoneNumber: +1 408 887-6666 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 677-8567 -title: Master Human Resources Fellow -userPassword: Password1 -uid: MartinsS -givenName: Sibylle -mail: MartinsS@84cc1f48f9a6495a85f0c7e7652d7056.bitwarden.com -carLicense: HTAQO5 -departmentNumber: 6421 -employeeType: Normal -homePhone: +1 408 402-3087 -initials: S. M. -mobile: +1 408 279-6651 -pager: +1 408 710-2107 -roomNumber: 9559 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jade Noguchi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jade Noguchi -sn: Noguchi -description: This is Jade Noguchi's description -facsimileTelephoneNumber: +1 213 766-9328 -l: Cupertino -ou: Payroll -postalAddress: Payroll$Cupertino -telephoneNumber: +1 213 479-8390 -title: Chief Payroll Dictator -userPassword: Password1 -uid: NoguchiJ -givenName: Jade -mail: NoguchiJ@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com -carLicense: 6YQ7SB -departmentNumber: 9087 -employeeType: Normal -homePhone: +1 213 851-9944 -initials: J. N. -mobile: +1 213 898-6260 -pager: +1 213 373-4317 -roomNumber: 8078 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Guenna Lazure,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Guenna Lazure -sn: Lazure -description: This is Guenna Lazure's description -facsimileTelephoneNumber: +1 213 516-4799 -l: San Mateo -ou: Peons -postalAddress: Peons$San Mateo -telephoneNumber: +1 213 820-9106 -title: Chief Peons Czar -userPassword: Password1 -uid: LazureG -givenName: Guenna -mail: LazureG@1b72488cc66542c3a9a532a6c9260a5f.bitwarden.com -carLicense: O44B8M -departmentNumber: 4920 -employeeType: Contract -homePhone: +1 213 183-7027 -initials: G. L. -mobile: +1 213 994-9532 -pager: +1 213 363-4093 -roomNumber: 8394 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fianna Rubio,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Beatrisa Staring,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beatrisa Staring -sn: Staring -description: This is Beatrisa Staring's description -facsimileTelephoneNumber: +1 804 259-8101 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 781-1410 -title: Chief Product Development Punk -userPassword: Password1 -uid: StaringB -givenName: Beatrisa -mail: StaringB@c5642a4e738442dc82e826ce039fbed0.bitwarden.com -carLicense: FEXDY7 -departmentNumber: 3698 -employeeType: Employee -homePhone: +1 804 900-1692 -initials: B. S. -mobile: +1 804 518-8560 -pager: +1 804 272-9303 -roomNumber: 8367 -manager: cn=Huong Commazzi,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Bernadine Schrang,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bernadine Schrang -sn: Schrang -description: This is Bernadine Schrang's description -facsimileTelephoneNumber: +1 213 726-1346 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 213 517-9617 -title: Master Product Development Grunt -userPassword: Password1 -uid: SchrangB -givenName: Bernadine -mail: SchrangB@696db7ebc26e4f86a6552c4f6f755d76.bitwarden.com -carLicense: I8R5NA -departmentNumber: 8523 -employeeType: Contract -homePhone: +1 213 983-4940 -initials: B. S. -mobile: +1 213 157-8322 -pager: +1 213 473-8960 -roomNumber: 9958 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Alese Rigdon,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alese Rigdon -sn: Rigdon -description: This is Alese Rigdon's description -facsimileTelephoneNumber: +1 415 265-5990 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 591-8872 -title: Master Product Development President -userPassword: Password1 -uid: RigdonA -givenName: Alese -mail: RigdonA@c6cd785d90994077a9f86547f3ad75a2.bitwarden.com -carLicense: QQOJDM -departmentNumber: 5564 -employeeType: Employee -homePhone: +1 415 162-2841 -initials: A. R. -mobile: +1 415 912-5276 -pager: +1 415 438-5920 -roomNumber: 8094 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cecil Babb,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=MaryJo Harms,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: MaryJo Harms -sn: Harms -description: This is MaryJo Harms's description -facsimileTelephoneNumber: +1 408 407-2301 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 606-2885 -title: Chief Janitorial Architect -userPassword: Password1 -uid: HarmsM -givenName: MaryJo -mail: HarmsM@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com -carLicense: G5DK5M -departmentNumber: 8969 -employeeType: Contract -homePhone: +1 408 229-5795 -initials: M. H. -mobile: +1 408 919-3209 -pager: +1 408 224-8446 -roomNumber: 8881 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marga Narron,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Dorris Akita,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorris Akita -sn: Akita -description: This is Dorris Akita's description -facsimileTelephoneNumber: +1 510 192-5345 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 618-8562 -title: Supreme Janitorial Janitor -userPassword: Password1 -uid: AkitaD -givenName: Dorris -mail: AkitaD@deb24c82a57b4b4ba4fd2ff9dfbbb9d6.bitwarden.com -carLicense: MWV8T0 -departmentNumber: 8996 -employeeType: Employee -homePhone: +1 510 793-9587 -initials: D. A. -mobile: +1 510 489-3061 -pager: +1 510 423-6314 -roomNumber: 8006 -manager: cn=Alice Rist,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ardella Nagai,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Thanh Dewitt,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thanh Dewitt -sn: Dewitt -description: This is Thanh Dewitt's description -facsimileTelephoneNumber: +1 213 783-4057 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 213 728-2456 -title: Associate Product Development Janitor -userPassword: Password1 -uid: DewittT -givenName: Thanh -mail: DewittT@5e4e7d75e05b48bd8f2b694051e48b65.bitwarden.com -carLicense: QTDHSL -departmentNumber: 9332 -employeeType: Employee -homePhone: +1 213 738-2367 -initials: T. D. -mobile: +1 213 940-5440 -pager: +1 213 484-6411 -roomNumber: 8673 -manager: cn=Avie Lannan,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com - -dn: cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roseline Klostermann -sn: Klostermann -description: This is Roseline Klostermann's description -facsimileTelephoneNumber: +1 415 721-8888 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 415 509-8036 -title: Chief Product Testing Mascot -userPassword: Password1 -uid: KlosterR -givenName: Roseline -mail: KlosterR@7ab7643662f14cef84497ec647fde7ff.bitwarden.com -carLicense: 2AD6FM -departmentNumber: 6415 -employeeType: Contract -homePhone: +1 415 529-1510 -initials: R. K. -mobile: +1 415 861-3481 -pager: +1 415 831-5179 -roomNumber: 9181 -manager: cn=Detlef Morglan,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amelie BaggermanWebster -sn: BaggermanWebster -description: This is Amelie BaggermanWebster's description -facsimileTelephoneNumber: +1 213 423-8037 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 917-4544 -title: Chief Product Testing Fellow -userPassword: Password1 -uid: BaggermA -givenName: Amelie -mail: BaggermA@a372f6ef68844d9ba9a56394e6e19253.bitwarden.com -carLicense: HMTAAN -departmentNumber: 8020 -employeeType: Employee -homePhone: +1 213 836-1006 -initials: A. B. -mobile: +1 213 984-8126 -pager: +1 213 254-5446 -roomNumber: 8553 -manager: cn=Ole Carbajal,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Davita Stenson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Davita Stenson -sn: Stenson -description: This is Davita Stenson's description -facsimileTelephoneNumber: +1 415 242-2992 -l: Armonk -ou: Product Development -postalAddress: Product Development$Armonk -telephoneNumber: +1 415 669-7234 -title: Associate Product Development Architect -userPassword: Password1 -uid: StensonD -givenName: Davita -mail: StensonD@e62b6bada3794f6abc6e683f712748b4.bitwarden.com -carLicense: ABPP5H -departmentNumber: 8747 -employeeType: Contract -homePhone: +1 415 861-5735 -initials: D. S. -mobile: +1 415 217-5480 -pager: +1 415 931-3672 -roomNumber: 8630 -manager: cn=Mustapha Tull,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Pak Krone,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pak Krone -sn: Krone -description: This is Pak Krone's description -facsimileTelephoneNumber: +1 415 172-8703 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 444-5398 -title: Associate Product Development Admin -userPassword: Password1 -uid: KroneP -givenName: Pak -mail: KroneP@42be868e79934b2781b6098b8536a633.bitwarden.com -carLicense: O4X7YQ -departmentNumber: 3160 -employeeType: Normal -homePhone: +1 415 104-4413 -initials: P. K. -mobile: +1 415 653-3067 -pager: +1 415 507-1342 -roomNumber: 8033 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Idalina Vogt,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idalina Vogt -sn: Vogt -description: This is Idalina Vogt's description -facsimileTelephoneNumber: +1 415 908-4047 -l: Santa Clara -ou: Product Testing -postalAddress: Product Testing$Santa Clara -telephoneNumber: +1 415 953-5050 -title: Associate Product Testing Developer -userPassword: Password1 -uid: VogtI -givenName: Idalina -mail: VogtI@95371e442302451c9744b100e5d4b3c5.bitwarden.com -carLicense: 2IL7R7 -departmentNumber: 8456 -employeeType: Normal -homePhone: +1 415 406-8542 -initials: I. V. -mobile: +1 415 255-7429 -pager: +1 415 365-4201 -roomNumber: 8102 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Marna Kindem,ou=Peons,dc=bitwarden, dc=com - -dn: cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: WaiChau Vankooten -sn: Vankooten -description: This is WaiChau Vankooten's description -facsimileTelephoneNumber: +1 804 827-1958 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 804 653-9961 -title: Master Human Resources Vice President -userPassword: Password1 -uid: VankootW -givenName: WaiChau -mail: VankootW@804b9151f1ba415a894983275163dae1.bitwarden.com -carLicense: RNE3SI -departmentNumber: 8195 -employeeType: Employee -homePhone: +1 804 887-9661 -initials: W. V. -mobile: +1 804 444-7600 -pager: +1 804 476-7410 -roomNumber: 8461 -manager: cn=Karyl Jiang,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rey Bayly,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Yuan Wester,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yuan Wester -sn: Wester -description: This is Yuan Wester's description -facsimileTelephoneNumber: +1 408 634-3061 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 408 692-1733 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: WesterY -givenName: Yuan -mail: WesterY@1dc3a166a7d1429cbda07bce89749db3.bitwarden.com -carLicense: FI31BY -departmentNumber: 4864 -employeeType: Contract -homePhone: +1 408 300-5786 -initials: Y. W. -mobile: +1 408 667-5808 -pager: +1 408 165-5190 -roomNumber: 9603 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Riaz Gulis,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Riaz Gulis -sn: Gulis -description: This is Riaz Gulis's description -facsimileTelephoneNumber: +1 213 317-9467 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 213 306-7500 -title: Supreme Product Development Sales Rep -userPassword: Password1 -uid: GulisR -givenName: Riaz -mail: GulisR@145129e0e2ad4c1cabc46b1331f17265.bitwarden.com -carLicense: V17UCA -departmentNumber: 6423 -employeeType: Contract -homePhone: +1 213 408-7573 -initials: R. G. -mobile: +1 213 120-1004 -pager: +1 213 750-9398 -roomNumber: 9410 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zdenka Filkins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Odetta Masse,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odetta Masse -sn: Masse -description: This is Odetta Masse's description -facsimileTelephoneNumber: +1 415 274-5999 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 497-7743 -title: Master Product Testing Developer -userPassword: Password1 -uid: MasseO -givenName: Odetta -mail: MasseO@aa7285e13fe546c6b7b266b1436cce65.bitwarden.com -carLicense: FOE7D2 -departmentNumber: 3141 -employeeType: Normal -homePhone: +1 415 180-9191 -initials: O. M. -mobile: +1 415 157-4951 -pager: +1 415 479-5746 -roomNumber: 8932 -manager: cn=Al Wrigley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Stacia Presgrove,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stacia Presgrove -sn: Presgrove -description: This is Stacia Presgrove's description -facsimileTelephoneNumber: +1 804 172-5142 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 804 268-8262 -title: Master Management Admin -userPassword: Password1 -uid: PresgroS -givenName: Stacia -mail: PresgroS@f5efd1e9a39c413dbfa9f7e476ae7cea.bitwarden.com -carLicense: P2W6BU -departmentNumber: 7162 -employeeType: Contract -homePhone: +1 804 215-5458 -initials: S. P. -mobile: +1 804 652-6366 -pager: +1 804 170-1141 -roomNumber: 8615 -manager: cn=CheeYong BrownGillard,ou=Management,dc=bitwarden, dc=com -secretary: cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Norbert Salazar,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norbert Salazar -sn: Salazar -description: This is Norbert Salazar's description -facsimileTelephoneNumber: +1 206 514-6930 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 206 238-9745 -title: Junior Product Development Visionary -userPassword: Password1 -uid: SalazarN -givenName: Norbert -mail: SalazarN@36dd795f7b764cba960063e604e64710.bitwarden.com -carLicense: MLB6JW -departmentNumber: 4707 -employeeType: Contract -homePhone: +1 206 941-1247 -initials: N. S. -mobile: +1 206 862-7376 -pager: +1 206 803-1819 -roomNumber: 9080 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Willi Kepekci,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nevein Grimshaw,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nevein Grimshaw -sn: Grimshaw -description: This is Nevein Grimshaw's description -facsimileTelephoneNumber: +1 510 368-9437 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 510 389-9435 -title: Associate Management Director -userPassword: Password1 -uid: GrimshaN -givenName: Nevein -mail: GrimshaN@1d6456d50bf342eb9edbc475cb3ae754.bitwarden.com -carLicense: GJCU46 -departmentNumber: 7045 -employeeType: Contract -homePhone: +1 510 752-1346 -initials: N. G. -mobile: +1 510 490-4401 -pager: +1 510 846-9604 -roomNumber: 8412 -manager: cn=Garry Brashear,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Annaliese Hudak,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Annaliese Hudak -sn: Hudak -description: This is Annaliese Hudak's description -facsimileTelephoneNumber: +1 804 129-1271 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 242-8178 -title: Master Product Development Grunt -userPassword: Password1 -uid: HudakA -givenName: Annaliese -mail: HudakA@8086b9fea7b2437cb09806e8e5c40f1a.bitwarden.com -carLicense: RD4AHI -departmentNumber: 3051 -employeeType: Normal -homePhone: +1 804 349-5193 -initials: A. H. -mobile: +1 804 458-9726 -pager: +1 804 395-2027 -roomNumber: 8440 -manager: cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Guner Kelso,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Andromache Machika,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Andromache Machika -sn: Machika -description: This is Andromache Machika's description -facsimileTelephoneNumber: +1 415 670-5581 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 415 839-3677 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: MachikaA -givenName: Andromache -mail: MachikaA@aae9b0d8d8c047aa8aadb6213597cf90.bitwarden.com -carLicense: 5OM4C2 -departmentNumber: 9306 -employeeType: Contract -homePhone: +1 415 334-3957 -initials: A. M. -mobile: +1 415 907-7760 -pager: +1 415 808-5164 -roomNumber: 8709 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Meriann Larose,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Meriann Larose -sn: Larose -description: This is Meriann Larose's description -facsimileTelephoneNumber: +1 415 581-1631 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 941-7196 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: LaroseM -givenName: Meriann -mail: LaroseM@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com -carLicense: RNMV35 -departmentNumber: 7479 -employeeType: Contract -homePhone: +1 415 309-2136 -initials: M. L. -mobile: +1 415 611-2478 -pager: +1 415 833-8440 -roomNumber: 8697 -manager: cn=Dominica Nttest,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Carmelina Scully,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Agathe Kikuchi,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agathe Kikuchi -sn: Kikuchi -description: This is Agathe Kikuchi's description -facsimileTelephoneNumber: +1 804 798-9819 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 804 125-9511 -title: Associate Management Vice President -userPassword: Password1 -uid: KikuchiA -givenName: Agathe -mail: KikuchiA@7c90e56d6cd142eb807f1e1a9bbefb5e.bitwarden.com -carLicense: P3637H -departmentNumber: 2356 -employeeType: Normal -homePhone: +1 804 381-5905 -initials: A. K. -mobile: +1 804 760-5043 -pager: +1 804 275-9234 -roomNumber: 9390 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Somsak Fields,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Somsak Fields -sn: Fields -description: This is Somsak Fields's description -facsimileTelephoneNumber: +1 415 759-8094 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 168-6900 -title: Associate Janitorial Stooge -userPassword: Password1 -uid: FieldsS -givenName: Somsak -mail: FieldsS@0177394985bc446d8344b5896f855979.bitwarden.com -carLicense: LA3R4N -departmentNumber: 5871 -employeeType: Normal -homePhone: +1 415 117-9080 -initials: S. F. -mobile: +1 415 192-9044 -pager: +1 415 868-5636 -roomNumber: 9318 -manager: cn=Vyky Wichers,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Zitella Hussein,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zitella Hussein -sn: Hussein -description: This is Zitella Hussein's description -facsimileTelephoneNumber: +1 415 242-7748 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 137-8523 -title: Master Product Testing Warrior -userPassword: Password1 -uid: HusseinZ -givenName: Zitella -mail: HusseinZ@c659efb530134031a977821791781191.bitwarden.com -carLicense: H4EKNH -departmentNumber: 9010 -employeeType: Contract -homePhone: +1 415 958-9939 -initials: Z. H. -mobile: +1 415 741-1746 -pager: +1 415 657-8730 -roomNumber: 8505 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Thinh Merinder,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Varennes ParkerShane,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Varennes ParkerShane -sn: ParkerShane -description: This is Varennes ParkerShane's description -facsimileTelephoneNumber: +1 408 112-8195 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 408 425-7389 -title: Associate Peons Assistant -userPassword: Password1 -uid: ParkerSV -givenName: Varennes -mail: ParkerSV@6ad50b5570274446ac57cf22bb8d002a.bitwarden.com -carLicense: 2YRPQM -departmentNumber: 3023 -employeeType: Employee -homePhone: +1 408 785-8767 -initials: V. P. -mobile: +1 408 356-7152 -pager: +1 408 300-1424 -roomNumber: 8987 -manager: cn=Thang Bushnell,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Mab Goba,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nolie Majumdar -sn: Majumdar -description: This is Nolie Majumdar's description -facsimileTelephoneNumber: +1 213 887-3952 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 213 231-8812 -title: Junior Product Testing Czar -userPassword: Password1 -uid: MajumdaN -givenName: Nolie -mail: MajumdaN@1291a44cab8442a6a669d12c387911e8.bitwarden.com -carLicense: N8YF4P -departmentNumber: 4090 -employeeType: Normal -homePhone: +1 213 230-2368 -initials: N. M. -mobile: +1 213 519-1334 -pager: +1 213 122-1960 -roomNumber: 9681 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hotline Au,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Idelle Leicht,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Idelle Leicht -sn: Leicht -description: This is Idelle Leicht's description -facsimileTelephoneNumber: +1 804 934-2894 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 804 144-6148 -title: Chief Payroll Consultant -userPassword: Password1 -uid: LeichtI -givenName: Idelle -mail: LeichtI@db317ee4bd8b44f39022e9dbfa6a622b.bitwarden.com -carLicense: F76FOP -departmentNumber: 9627 -employeeType: Normal -homePhone: +1 804 248-6941 -initials: I. L. -mobile: +1 804 923-7004 -pager: +1 804 208-9952 -roomNumber: 8921 -manager: cn=Lujanka Dickford,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Darb Swinkels,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Darb Swinkels -sn: Swinkels -description: This is Darb Swinkels's description -facsimileTelephoneNumber: +1 206 280-6464 -l: Palo Alto -ou: Product Testing -postalAddress: Product Testing$Palo Alto -telephoneNumber: +1 206 932-5627 -title: Supreme Product Testing Stooge -userPassword: Password1 -uid: SwinkelD -givenName: Darb -mail: SwinkelD@fd2458f229b6479d85b521aa5a4cd638.bitwarden.com -carLicense: 1O2Q2K -departmentNumber: 5060 -employeeType: Normal -homePhone: +1 206 516-4348 -initials: D. S. -mobile: +1 206 434-3364 -pager: +1 206 752-8462 -roomNumber: 8371 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Benne Baab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Thomasa Nagle -sn: Nagle -description: This is Thomasa Nagle's description -facsimileTelephoneNumber: +1 408 112-8418 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 408 448-9684 -title: Junior Human Resources Artist -userPassword: Password1 -uid: NagleT -givenName: Thomasa -mail: NagleT@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com -carLicense: G398JO -departmentNumber: 2566 -employeeType: Employee -homePhone: +1 408 464-6424 -initials: T. N. -mobile: +1 408 219-5331 -pager: +1 408 977-5226 -roomNumber: 8791 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Koren Perfetti,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Koren Perfetti -sn: Perfetti -description: This is Koren Perfetti's description -facsimileTelephoneNumber: +1 213 787-9211 -l: Alameda -ou: Product Testing -postalAddress: Product Testing$Alameda -telephoneNumber: +1 213 674-3049 -title: Associate Product Testing Consultant -userPassword: Password1 -uid: PerfettK -givenName: Koren -mail: PerfettK@99f91fc2bf8f45d2b847f01ff41a14da.bitwarden.com -carLicense: 085GQY -departmentNumber: 2069 -employeeType: Employee -homePhone: +1 213 462-5870 -initials: K. P. -mobile: +1 213 918-1747 -pager: +1 213 997-5439 -roomNumber: 9253 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Konrad Fabijanic,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kelcey Reuss,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kelcey Reuss -sn: Reuss -description: This is Kelcey Reuss's description -facsimileTelephoneNumber: +1 206 640-7069 -l: San Francisco -ou: Administrative -postalAddress: Administrative$San Francisco -telephoneNumber: +1 206 669-4671 -title: Chief Administrative Vice President -userPassword: Password1 -uid: ReussK -givenName: Kelcey -mail: ReussK@c9027f607987451aa869ec32b2ad0708.bitwarden.com -carLicense: G4BWJ1 -departmentNumber: 6724 -employeeType: Contract -homePhone: +1 206 222-7493 -initials: K. R. -mobile: +1 206 286-5796 -pager: +1 206 550-8568 -roomNumber: 9921 -manager: cn=Laury Madras,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Lujanka Contardo,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lujanka Contardo -sn: Contardo -description: This is Lujanka Contardo's description -facsimileTelephoneNumber: +1 408 490-7970 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 408 776-8992 -title: Junior Product Development Mascot -userPassword: Password1 -uid: ContardL -givenName: Lujanka -mail: ContardL@e43c05f5415a492785e600f140e34b3c.bitwarden.com -carLicense: 9SJ1QO -departmentNumber: 8152 -employeeType: Normal -homePhone: +1 408 443-3558 -initials: L. C. -mobile: +1 408 164-7047 -pager: +1 408 328-3527 -roomNumber: 8249 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamyar Twidale -sn: Twidale -description: This is Kamyar Twidale's description -facsimileTelephoneNumber: +1 213 649-1191 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 213 777-1070 -title: Master Janitorial Consultant -userPassword: Password1 -uid: TwidaleK -givenName: Kamyar -mail: TwidaleK@a77c7140e8a14e9180f6ceda32adedff.bitwarden.com -carLicense: E3U9M4 -departmentNumber: 4456 -employeeType: Contract -homePhone: +1 213 407-8924 -initials: K. T. -mobile: +1 213 389-5833 -pager: +1 213 606-4070 -roomNumber: 9695 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Allyce Chickorie,ou=Management,dc=bitwarden, dc=com - -dn: cn=Barton Seggie,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barton Seggie -sn: Seggie -description: This is Barton Seggie's description -facsimileTelephoneNumber: +1 408 257-1346 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 408 685-1572 -title: Chief Payroll Assistant -userPassword: Password1 -uid: SeggieB -givenName: Barton -mail: SeggieB@c25c8eeee77f4478896f338b08270109.bitwarden.com -carLicense: JC3FFW -departmentNumber: 9484 -employeeType: Normal -homePhone: +1 408 174-4497 -initials: B. S. -mobile: +1 408 863-6951 -pager: +1 408 208-1662 -roomNumber: 8468 -manager: cn=Beatriz Hagley,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Darci Glasgow,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hilmi Prichard -sn: Prichard -description: This is Hilmi Prichard's description -facsimileTelephoneNumber: +1 206 146-8562 -l: Fremont -ou: Product Testing -postalAddress: Product Testing$Fremont -telephoneNumber: +1 206 825-1190 -title: Master Product Testing Manager -userPassword: Password1 -uid: PricharH -givenName: Hilmi -mail: PricharH@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com -carLicense: 5FJ8LE -departmentNumber: 8844 -employeeType: Normal -homePhone: +1 206 241-8171 -initials: H. P. -mobile: +1 206 437-1319 -pager: +1 206 311-9657 -roomNumber: 8879 -manager: cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lela Kita,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Julee Norby,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Julee Norby -sn: Norby -description: This is Julee Norby's description -facsimileTelephoneNumber: +1 510 205-5257 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 510 562-1897 -title: Chief Janitorial Mascot -userPassword: Password1 -uid: NorbyJ -givenName: Julee -mail: NorbyJ@affed2f672a845bead4365ae80e4a101.bitwarden.com -carLicense: DFYUWI -departmentNumber: 5959 -employeeType: Employee -homePhone: +1 510 642-8103 -initials: J. N. -mobile: +1 510 365-9518 -pager: +1 510 329-7561 -roomNumber: 8212 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Sharai Torok,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharai Torok -sn: Torok -description: This is Sharai Torok's description -facsimileTelephoneNumber: +1 415 802-9985 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 340-5497 -title: Chief Payroll Consultant -userPassword: Password1 -uid: TorokS -givenName: Sharai -mail: TorokS@11aa381a3094436abdc8bd9975f709cf.bitwarden.com -carLicense: LR9A4L -departmentNumber: 2266 -employeeType: Contract -homePhone: +1 415 938-9495 -initials: S. T. -mobile: +1 415 323-2002 -pager: +1 415 871-1594 -roomNumber: 9169 -manager: cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leontine OShaughnessey -sn: OShaughnessey -description: This is Leontine OShaughnessey's description -facsimileTelephoneNumber: +1 415 680-9330 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 134-4455 -title: Associate Payroll Engineer -userPassword: Password1 -uid: OShaughL -givenName: Leontine -mail: OShaughL@d6721ca94efc423ca3ff9d14e2b46e8c.bitwarden.com -carLicense: RB4AC1 -departmentNumber: 7017 -employeeType: Normal -homePhone: +1 415 849-2517 -initials: L. O. -mobile: +1 415 994-3528 -pager: +1 415 938-6376 -roomNumber: 8269 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Champathon Bhatti,ou=Management,dc=bitwarden, dc=com - -dn: cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Franklyn Sugandi -sn: Sugandi -description: This is Franklyn Sugandi's description -facsimileTelephoneNumber: +1 804 126-9033 -l: San Francisco -ou: Product Development -postalAddress: Product Development$San Francisco -telephoneNumber: +1 804 421-8348 -title: Supreme Product Development Developer -userPassword: Password1 -uid: SugandiF -givenName: Franklyn -mail: SugandiF@528c9fa3f4634d4b9c93989a607b8098.bitwarden.com -carLicense: TEQX3M -departmentNumber: 5000 -employeeType: Contract -homePhone: +1 804 110-5550 -initials: F. S. -mobile: +1 804 737-9701 -pager: +1 804 916-1869 -roomNumber: 9765 -manager: cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Jany Kamal,ou=Management,dc=bitwarden, dc=com - -dn: cn=Cefee Donelan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cefee Donelan -sn: Donelan -description: This is Cefee Donelan's description -facsimileTelephoneNumber: +1 408 220-5576 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 408 625-2012 -title: Master Payroll Figurehead -userPassword: Password1 -uid: DonelanC -givenName: Cefee -mail: DonelanC@7f74d23b6c664be682e93e811e1b368f.bitwarden.com -carLicense: FISBRS -departmentNumber: 9402 -employeeType: Normal -homePhone: +1 408 489-9755 -initials: C. D. -mobile: +1 408 845-6841 -pager: +1 408 236-6300 -roomNumber: 8715 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jderek Sankey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jderek Sankey -sn: Sankey -description: This is Jderek Sankey's description -facsimileTelephoneNumber: +1 206 305-5476 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 206 136-3629 -title: Junior Management Vice President -userPassword: Password1 -uid: SankeyJ -givenName: Jderek -mail: SankeyJ@30fd8caea98d43dc8f4491c614480126.bitwarden.com -carLicense: 8PF0CT -departmentNumber: 1185 -employeeType: Contract -homePhone: +1 206 794-5909 -initials: J. S. -mobile: +1 206 453-2084 -pager: +1 206 150-1495 -roomNumber: 9680 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sid Barnhill,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sid Barnhill -sn: Barnhill -description: This is Sid Barnhill's description -facsimileTelephoneNumber: +1 818 955-9086 -l: Redwood Shores -ou: Product Testing -postalAddress: Product Testing$Redwood Shores -telephoneNumber: +1 818 754-8291 -title: Junior Product Testing Engineer -userPassword: Password1 -uid: BarnhilS -givenName: Sid -mail: BarnhilS@1d677d74737a4c97a99e772d549b45f8.bitwarden.com -carLicense: QO6NIC -departmentNumber: 5109 -employeeType: Employee -homePhone: +1 818 274-6258 -initials: S. B. -mobile: +1 818 484-5691 -pager: +1 818 331-1112 -roomNumber: 9881 -manager: cn=Blake Skerry,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ginette Vilis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Kamlesh Hoang,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kamlesh Hoang -sn: Hoang -description: This is Kamlesh Hoang's description -facsimileTelephoneNumber: +1 818 679-2811 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 818 142-9614 -title: Supreme Peons President -userPassword: Password1 -uid: HoangK -givenName: Kamlesh -mail: HoangK@8441796b12754e19879e114c62d45933.bitwarden.com -carLicense: TX7RMA -departmentNumber: 8955 -employeeType: Normal -homePhone: +1 818 284-3437 -initials: K. H. -mobile: +1 818 452-5931 -pager: +1 818 110-5963 -roomNumber: 8115 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Maynie Levert,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Sarath McCall,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sarath McCall -sn: McCall -description: This is Sarath McCall's description -facsimileTelephoneNumber: +1 408 866-1823 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 408 707-6444 -title: Chief Payroll Punk -userPassword: Password1 -uid: McCallS -givenName: Sarath -mail: McCallS@95704a5d367a4911b51583656800520a.bitwarden.com -carLicense: 5YGHXV -departmentNumber: 6128 -employeeType: Employee -homePhone: +1 408 955-7970 -initials: S. M. -mobile: +1 408 109-5202 -pager: +1 408 598-5897 -roomNumber: 8545 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Shamsia Mincey,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Nermana Douglas,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nermana Douglas -sn: Douglas -description: This is Nermana Douglas's description -facsimileTelephoneNumber: +1 213 867-9302 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 245-1441 -title: Supreme Management President -userPassword: Password1 -uid: DouglasN -givenName: Nermana -mail: DouglasN@11af325799324b3caac4bd3790e434d4.bitwarden.com -carLicense: IOYFUH -departmentNumber: 9269 -employeeType: Contract -homePhone: +1 213 187-9845 -initials: N. D. -mobile: +1 213 911-2990 -pager: +1 213 981-1060 -roomNumber: 8404 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Breena Psklib,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Student Sonne,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Student Sonne -sn: Sonne -description: This is Student Sonne's description -facsimileTelephoneNumber: +1 206 623-9020 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 206 422-6425 -title: Supreme Janitorial Manager -userPassword: Password1 -uid: SonneS -givenName: Student -mail: SonneS@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com -carLicense: OW0DLJ -departmentNumber: 4527 -employeeType: Contract -homePhone: +1 206 900-1307 -initials: S. S. -mobile: +1 206 359-4277 -pager: +1 206 784-1703 -roomNumber: 9858 -manager: cn=Rizzo Irick,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Dyanna Goff,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Maisie DaGama,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maisie DaGama -sn: DaGama -description: This is Maisie DaGama's description -facsimileTelephoneNumber: +1 510 361-5371 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 404-2234 -title: Supreme Product Testing Mascot -userPassword: Password1 -uid: DaGamaM -givenName: Maisie -mail: DaGamaM@0c23adeda02746a4adaf81e3c1305ae8.bitwarden.com -carLicense: RXLXX3 -departmentNumber: 6633 -employeeType: Normal -homePhone: +1 510 858-7336 -initials: M. D. -mobile: +1 510 459-9403 -pager: +1 510 237-2716 -roomNumber: 8551 -manager: cn=Lang DeBoer,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Erminie Battershill,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Erminie Battershill -sn: Battershill -description: This is Erminie Battershill's description -facsimileTelephoneNumber: +1 206 253-3516 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 206 474-7380 -title: Junior Peons Janitor -userPassword: Password1 -uid: BattersE -givenName: Erminie -mail: BattersE@5be830b142b64fb88eef5251cf8d2b55.bitwarden.com -carLicense: D8RYRA -departmentNumber: 9963 -employeeType: Contract -homePhone: +1 206 467-9537 -initials: E. B. -mobile: +1 206 904-3998 -pager: +1 206 629-6511 -roomNumber: 8995 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tuhina Syrett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jung Betts,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jung Betts -sn: Betts -description: This is Jung Betts's description -facsimileTelephoneNumber: +1 206 611-6118 -l: Redwood Shores -ou: Payroll -postalAddress: Payroll$Redwood Shores -telephoneNumber: +1 206 325-7543 -title: Associate Payroll Visionary -userPassword: Password1 -uid: BettsJ -givenName: Jung -mail: BettsJ@a31de830b7f74a7a9756ec57873d87d7.bitwarden.com -carLicense: L42SJ2 -departmentNumber: 9761 -employeeType: Contract -homePhone: +1 206 801-2126 -initials: J. B. -mobile: +1 206 738-6893 -pager: +1 206 858-6570 -roomNumber: 9643 -manager: cn=Rosabella Toothman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Pacific Derrett,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Maddi Naolu,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maddi Naolu -sn: Naolu -description: This is Maddi Naolu's description -facsimileTelephoneNumber: +1 213 771-2932 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 213 595-6345 -title: Master Product Testing Fellow -userPassword: Password1 -uid: NaoluM -givenName: Maddi -mail: NaoluM@375640a8a3724defaeb05e0a11f25f5c.bitwarden.com -carLicense: 907B02 -departmentNumber: 1844 -employeeType: Normal -homePhone: +1 213 517-6339 -initials: M. N. -mobile: +1 213 694-1911 -pager: +1 213 467-2870 -roomNumber: 9199 -manager: cn=Vivi Vexler,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Daisey Przybycien -sn: Przybycien -description: This is Daisey Przybycien's description -facsimileTelephoneNumber: +1 818 280-9756 -l: Fremont -ou: Human Resources -postalAddress: Human Resources$Fremont -telephoneNumber: +1 818 346-3527 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: PrzybycD -givenName: Daisey -mail: PrzybycD@886606fb40e04b00b9dac2bed959f0a3.bitwarden.com -carLicense: 7X7248 -departmentNumber: 3191 -employeeType: Employee -homePhone: +1 818 331-8264 -initials: D. P. -mobile: +1 818 962-7496 -pager: +1 818 922-2348 -roomNumber: 9673 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Ammar Parise,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ammar Parise -sn: Parise -description: This is Ammar Parise's description -facsimileTelephoneNumber: +1 415 332-7670 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 415 592-5627 -title: Master Janitorial Stooge -userPassword: Password1 -uid: PariseA -givenName: Ammar -mail: PariseA@bacbd388513349be8db6d6f67cee97e8.bitwarden.com -carLicense: F0TBQA -departmentNumber: 5586 -employeeType: Employee -homePhone: +1 415 460-7642 -initials: A. P. -mobile: +1 415 529-4705 -pager: +1 415 577-3247 -roomNumber: 9091 -manager: cn=Clarine Hauge,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yasar Ingrey -sn: Ingrey -description: This is Yasar Ingrey's description -facsimileTelephoneNumber: +1 213 797-9620 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 213 204-6558 -title: Master Human Resources Mascot -userPassword: Password1 -uid: IngreyY -givenName: Yasar -mail: IngreyY@c058e0f8bc3242ec861c9425536523d9.bitwarden.com -carLicense: UAKYOD -departmentNumber: 4399 -employeeType: Contract -homePhone: +1 213 934-5339 -initials: Y. I. -mobile: +1 213 688-7326 -pager: +1 213 370-8984 -roomNumber: 9928 -manager: cn=Miss Rogne,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Agata Khouderchan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Agata Khouderchan -sn: Khouderchan -description: This is Agata Khouderchan's description -facsimileTelephoneNumber: +1 206 937-1717 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 993-5384 -title: Master Management Technician -userPassword: Password1 -uid: KhouderA -givenName: Agata -mail: KhouderA@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com -carLicense: 480F5Y -departmentNumber: 3653 -employeeType: Normal -homePhone: +1 206 849-8313 -initials: A. K. -mobile: +1 206 635-1775 -pager: +1 206 740-2670 -roomNumber: 9209 -manager: cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Beth Nolet,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joella Casey,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joella Casey -sn: Casey -description: This is Joella Casey's description -facsimileTelephoneNumber: +1 206 935-9255 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 206 411-9950 -title: Chief Product Development Grunt -userPassword: Password1 -uid: CaseyJ -givenName: Joella -mail: CaseyJ@b3127b0c3cfd4bcf84fd8497792fb64f.bitwarden.com -carLicense: OAY087 -departmentNumber: 3728 -employeeType: Employee -homePhone: +1 206 341-6227 -initials: J. C. -mobile: +1 206 318-4797 -pager: +1 206 109-7556 -roomNumber: 8329 -manager: cn=Shobana Eisler,ou=Management,dc=bitwarden, dc=com -secretary: cn=Austina Acree,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sharone Torrell,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sharone Torrell -sn: Torrell -description: This is Sharone Torrell's description -facsimileTelephoneNumber: +1 804 466-6703 -l: Armonk -ou: Janitorial -postalAddress: Janitorial$Armonk -telephoneNumber: +1 804 534-3300 -title: Supreme Janitorial Visionary -userPassword: Password1 -uid: TorrellS -givenName: Sharone -mail: TorrellS@4745fb1993c34e22b6d51076c613f514.bitwarden.com -carLicense: BII9X2 -departmentNumber: 7253 -employeeType: Employee -homePhone: +1 804 817-2531 -initials: S. T. -mobile: +1 804 407-4576 -pager: +1 804 952-7386 -roomNumber: 9823 -manager: cn=ChongLai Jennings,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ebony Vitaglian,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ebony Vitaglian -sn: Vitaglian -description: This is Ebony Vitaglian's description -facsimileTelephoneNumber: +1 408 917-6407 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 408 957-2058 -title: Junior Peons Assistant -userPassword: Password1 -uid: VitagliE -givenName: Ebony -mail: VitagliE@9ab7fb3558f841749b06922a784e1384.bitwarden.com -carLicense: NMJK86 -departmentNumber: 1214 -employeeType: Contract -homePhone: +1 408 308-9340 -initials: E. V. -mobile: +1 408 729-7887 -pager: +1 408 479-2912 -roomNumber: 9991 -manager: cn=Madelyn Runnels,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Door McKerrow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Marcie Nagaraj -sn: Nagaraj -description: This is Marcie Nagaraj's description -facsimileTelephoneNumber: +1 206 144-7999 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 206 130-3992 -title: Junior Product Testing Manager -userPassword: Password1 -uid: NagarajM -givenName: Marcie -mail: NagarajM@973c4a1a5d1a4e4f9c421404b565659a.bitwarden.com -carLicense: GNG6ML -departmentNumber: 9913 -employeeType: Normal -homePhone: +1 206 288-4527 -initials: M. N. -mobile: +1 206 604-1005 -pager: +1 206 222-4001 -roomNumber: 8932 -manager: cn=Loria Salzillo,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Evanne Callos,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Evanne Callos -sn: Callos -description: This is Evanne Callos's description -facsimileTelephoneNumber: +1 510 243-8133 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 510 235-1536 -title: Master Product Development Czar -userPassword: Password1 -uid: CallosE -givenName: Evanne -mail: CallosE@0bec70e6fa8d461ab29f67f7a630e586.bitwarden.com -carLicense: YWR8DV -departmentNumber: 5252 -employeeType: Contract -homePhone: +1 510 103-9572 -initials: E. C. -mobile: +1 510 504-3806 -pager: +1 510 151-5589 -roomNumber: 8442 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Purvee Kwast,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Purvee Kwast -sn: Kwast -description: This is Purvee Kwast's description -facsimileTelephoneNumber: +1 415 809-6655 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 415 605-6817 -title: Chief Peons Artist -userPassword: Password1 -uid: KwastP -givenName: Purvee -mail: KwastP@e5509c3650ae4df593beadde93c97a4e.bitwarden.com -carLicense: EB68QA -departmentNumber: 2306 -employeeType: Employee -homePhone: +1 415 936-6692 -initials: P. K. -mobile: +1 415 879-3184 -pager: +1 415 907-3685 -roomNumber: 8026 -manager: cn=Sultan Sergo,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Eluned Vinson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eluned Vinson -sn: Vinson -description: This is Eluned Vinson's description -facsimileTelephoneNumber: +1 510 945-2168 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 510 923-4353 -title: Master Administrative Visionary -userPassword: Password1 -uid: VinsonE -givenName: Eluned -mail: VinsonE@3307e42f1d8c4293bd7a59fddc05e774.bitwarden.com -carLicense: 6YRMN1 -departmentNumber: 1991 -employeeType: Normal -homePhone: +1 510 712-8084 -initials: E. V. -mobile: +1 510 879-6537 -pager: +1 510 433-5185 -roomNumber: 8359 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Melisandra McVey,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Melisandra McVey -sn: McVey -description: This is Melisandra McVey's description -facsimileTelephoneNumber: +1 818 670-6650 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 818 154-6427 -title: Associate Management Consultant -userPassword: Password1 -uid: McVeyM -givenName: Melisandra -mail: McVeyM@c1717c5f197c4d3987c6204634e4161c.bitwarden.com -carLicense: OSVUQ3 -departmentNumber: 4016 -employeeType: Contract -homePhone: +1 818 267-5513 -initials: M. M. -mobile: +1 818 628-7160 -pager: +1 818 726-3044 -roomNumber: 8064 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Philipa Netdbs,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Philipa Netdbs -sn: Netdbs -description: This is Philipa Netdbs's description -facsimileTelephoneNumber: +1 818 297-6444 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 818 193-3614 -title: Associate Payroll Writer -userPassword: Password1 -uid: NetdbsP -givenName: Philipa -mail: NetdbsP@ca30a33ca5c3482596934454af56a1c4.bitwarden.com -carLicense: G0NHRS -departmentNumber: 9798 -employeeType: Normal -homePhone: +1 818 647-5289 -initials: P. N. -mobile: +1 818 138-3731 -pager: +1 818 697-7678 -roomNumber: 8872 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Aurelia Hann,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Art Totten,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Art Totten -sn: Totten -description: This is Art Totten's description -facsimileTelephoneNumber: +1 415 565-6364 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 159-3742 -title: Supreme Product Testing Figurehead -userPassword: Password1 -uid: TottenA -givenName: Art -mail: TottenA@04b18099c35449929ab89aa5f1f3c21f.bitwarden.com -carLicense: 340K97 -departmentNumber: 3251 -employeeType: Contract -homePhone: +1 415 885-9452 -initials: A. T. -mobile: +1 415 935-7040 -pager: +1 415 828-6161 -roomNumber: 8138 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roxanna Colquette,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roxanna Colquette -sn: Colquette -description: This is Roxanna Colquette's description -facsimileTelephoneNumber: +1 213 414-9430 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 669-6675 -title: Supreme Payroll Technician -userPassword: Password1 -uid: ColquetR -givenName: Roxanna -mail: ColquetR@ba8c5354f208420b92e908dc80950154.bitwarden.com -carLicense: MKKWBD -departmentNumber: 6860 -employeeType: Contract -homePhone: +1 213 376-6098 -initials: R. C. -mobile: +1 213 141-7644 -pager: +1 213 704-8501 -roomNumber: 9013 -manager: cn=Mayumi Presgrove,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Janessa Bienek,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Janessa Bienek -sn: Bienek -description: This is Janessa Bienek's description -facsimileTelephoneNumber: +1 510 881-3565 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 510 644-4986 -title: Junior Product Development Madonna -userPassword: Password1 -uid: BienekJ -givenName: Janessa -mail: BienekJ@cbebf122dc7c488591550ff3c1c37645.bitwarden.com -carLicense: LKVOSU -departmentNumber: 7029 -employeeType: Contract -homePhone: +1 510 553-1170 -initials: J. B. -mobile: +1 510 453-2328 -pager: +1 510 813-9741 -roomNumber: 9162 -manager: cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Christa Schrage,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Christa Schrage -sn: Schrage -description: This is Christa Schrage's description -facsimileTelephoneNumber: +1 415 665-5197 -l: Menlo Park -ou: Management -postalAddress: Management$Menlo Park -telephoneNumber: +1 415 997-2682 -title: Chief Management Czar -userPassword: Password1 -uid: SchrageC -givenName: Christa -mail: SchrageC@c7f3f4b5404343009726750451b5ec5f.bitwarden.com -carLicense: HRWPMS -departmentNumber: 9507 -employeeType: Employee -homePhone: +1 415 388-9367 -initials: C. S. -mobile: +1 415 851-8281 -pager: +1 415 727-1069 -roomNumber: 8138 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Glenna Trefry,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Glenna Trefry -sn: Trefry -description: This is Glenna Trefry's description -facsimileTelephoneNumber: +1 510 324-2666 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 510 986-2870 -title: Junior Janitorial Director -userPassword: Password1 -uid: TrefryG -givenName: Glenna -mail: TrefryG@f3b9cbf7ffc94ed4be6295e8dcbbd47b.bitwarden.com -carLicense: 61KCUP -departmentNumber: 6476 -employeeType: Contract -homePhone: +1 510 105-3239 -initials: G. T. -mobile: +1 510 648-5210 -pager: +1 510 610-6927 -roomNumber: 9346 -manager: cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Cecco Langevin,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Cecco Langevin -sn: Langevin -description: This is Cecco Langevin's description -facsimileTelephoneNumber: +1 213 608-6270 -l: Sunnyvale -ou: Peons -postalAddress: Peons$Sunnyvale -telephoneNumber: +1 213 945-2280 -title: Supreme Peons Technician -userPassword: Password1 -uid: LangeviC -givenName: Cecco -mail: LangeviC@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com -carLicense: BRB1YB -departmentNumber: 9198 -employeeType: Employee -homePhone: +1 213 584-1041 -initials: C. L. -mobile: +1 213 110-3313 -pager: +1 213 844-6615 -roomNumber: 9864 -manager: cn=Wallie Newhook,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Magdy McCloskey,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Magdy McCloskey -sn: McCloskey -description: This is Magdy McCloskey's description -facsimileTelephoneNumber: +1 818 732-8705 -l: Orem -ou: Administrative -postalAddress: Administrative$Orem -telephoneNumber: +1 818 162-1279 -title: Supreme Administrative Mascot -userPassword: Password1 -uid: McCloskM -givenName: Magdy -mail: McCloskM@40f66c0e51ca46c99bb0961cc624fcc8.bitwarden.com -carLicense: P54OUF -departmentNumber: 2353 -employeeType: Normal -homePhone: +1 818 280-7533 -initials: M. M. -mobile: +1 818 583-2645 -pager: +1 818 186-2589 -roomNumber: 8402 -manager: cn=Hqs Bresnan,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Filion Karam,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Filion Karam -sn: Karam -description: This is Filion Karam's description -facsimileTelephoneNumber: +1 206 457-3604 -l: San Mateo -ou: Management -postalAddress: Management$San Mateo -telephoneNumber: +1 206 101-8405 -title: Junior Management Czar -userPassword: Password1 -uid: KaramF -givenName: Filion -mail: KaramF@d8522133168344ce827a4130e7d16436.bitwarden.com -carLicense: BI0LPG -departmentNumber: 6676 -employeeType: Employee -homePhone: +1 206 443-5316 -initials: F. K. -mobile: +1 206 564-9530 -pager: +1 206 222-9362 -roomNumber: 9267 -manager: cn=Rhianon Mansi,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nerissa Volz,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nerissa Volz -sn: Volz -description: This is Nerissa Volz's description -facsimileTelephoneNumber: +1 804 179-8838 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 804 146-2910 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: VolzN -givenName: Nerissa -mail: VolzN@238696ade728438aa3391299a0dc9901.bitwarden.com -carLicense: 55M12U -departmentNumber: 5514 -employeeType: Contract -homePhone: +1 804 116-8652 -initials: N. V. -mobile: +1 804 345-9966 -pager: +1 804 490-1208 -roomNumber: 8071 -manager: cn=Charla Mahbeer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Barb Crockett,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Barb Crockett -sn: Crockett -description: This is Barb Crockett's description -facsimileTelephoneNumber: +1 818 579-7231 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 818 547-8786 -title: Master Product Testing Vice President -userPassword: Password1 -uid: CrocketB -givenName: Barb -mail: CrocketB@f4587b22e18d47378cee893ba77c7d5f.bitwarden.com -carLicense: Y2CTFW -departmentNumber: 6107 -employeeType: Normal -homePhone: +1 818 544-8446 -initials: B. C. -mobile: +1 818 672-2989 -pager: +1 818 394-3080 -roomNumber: 9036 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Janson Vrbetic,ou=Management,dc=bitwarden, dc=com - -dn: cn=Klara deSalis,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Klara deSalis -sn: deSalis -description: This is Klara deSalis's description -facsimileTelephoneNumber: +1 804 537-2846 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 804 335-5180 -title: Junior Janitorial Czar -userPassword: Password1 -uid: deSalisK -givenName: Klara -mail: deSalisK@6f3b5ed6595f43e9be2b077643241ff9.bitwarden.com -carLicense: KBQ9X4 -departmentNumber: 2238 -employeeType: Contract -homePhone: +1 804 884-6053 -initials: K. d. -mobile: +1 804 665-4302 -pager: +1 804 345-1717 -roomNumber: 9419 -manager: cn=Viktoria Relations,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Peggy Corpening,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Teri Hildum,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Teri Hildum -sn: Hildum -description: This is Teri Hildum's description -facsimileTelephoneNumber: +1 408 354-5356 -l: San Mateo -ou: Human Resources -postalAddress: Human Resources$San Mateo -telephoneNumber: +1 408 708-9684 -title: Supreme Human Resources Director -userPassword: Password1 -uid: HildumT -givenName: Teri -mail: HildumT@8a6ed36334664a75a9cc6a912bbbee51.bitwarden.com -carLicense: 0L9ITH -departmentNumber: 5707 -employeeType: Contract -homePhone: +1 408 571-8838 -initials: T. H. -mobile: +1 408 420-7244 -pager: +1 408 347-1818 -roomNumber: 8582 -manager: cn=Carri Gary,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Homa Brownlee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lorenza Pafilis,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lorenza Pafilis -sn: Pafilis -description: This is Lorenza Pafilis's description -facsimileTelephoneNumber: +1 206 475-8044 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 206 714-5775 -title: Supreme Peons Architect -userPassword: Password1 -uid: PafilisL -givenName: Lorenza -mail: PafilisL@25a387134c7d40ab8adc2bebd578c5a3.bitwarden.com -carLicense: 6I8CJ7 -departmentNumber: 7844 -employeeType: Employee -homePhone: +1 206 601-6809 -initials: L. P. -mobile: +1 206 321-5853 -pager: +1 206 348-4386 -roomNumber: 8785 -manager: cn=Prafula Diffee,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cherise Racette,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nickie Nakatsu -sn: Nakatsu -description: This is Nickie Nakatsu's description -facsimileTelephoneNumber: +1 408 153-9239 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 408 736-4508 -title: Supreme Product Development Developer -userPassword: Password1 -uid: NakatsuN -givenName: Nickie -mail: NakatsuN@04d1c6c3175f4974b260a83a63c42a2e.bitwarden.com -carLicense: VE8IUW -departmentNumber: 4854 -employeeType: Normal -homePhone: +1 408 655-1633 -initials: N. N. -mobile: +1 408 958-5118 -pager: +1 408 535-1321 -roomNumber: 8160 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Mariana Munden,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Anda Joyce,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anda Joyce -sn: Joyce -description: This is Anda Joyce's description -facsimileTelephoneNumber: +1 804 357-7156 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 804 106-4820 -title: Junior Peons Mascot -userPassword: Password1 -uid: JoyceA -givenName: Anda -mail: JoyceA@8c2946e2ae1e4ec0a1e9edd05301d704.bitwarden.com -carLicense: C3S19O -departmentNumber: 3877 -employeeType: Employee -homePhone: +1 804 523-3318 -initials: A. J. -mobile: +1 804 264-8935 -pager: +1 804 394-7203 -roomNumber: 8723 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Rustu Biss,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rustu Biss -sn: Biss -description: This is Rustu Biss's description -facsimileTelephoneNumber: +1 206 612-1560 -l: Orem -ou: Human Resources -postalAddress: Human Resources$Orem -telephoneNumber: +1 206 964-6179 -title: Master Human Resources Dictator -userPassword: Password1 -uid: BissR -givenName: Rustu -mail: BissR@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com -carLicense: DOK56L -departmentNumber: 1436 -employeeType: Contract -homePhone: +1 206 479-3927 -initials: R. B. -mobile: +1 206 323-9795 -pager: +1 206 947-4676 -roomNumber: 9353 -manager: cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Izabel Heeralall,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Geer Devault,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geer Devault -sn: Devault -description: This is Geer Devault's description -facsimileTelephoneNumber: +1 213 691-2324 -l: Fremont -ou: Management -postalAddress: Management$Fremont -telephoneNumber: +1 213 288-8854 -title: Supreme Management Warrior -userPassword: Password1 -uid: DevaultG -givenName: Geer -mail: DevaultG@e340baad13364e06873f6c506e0427ea.bitwarden.com -carLicense: Q72EAS -departmentNumber: 4715 -employeeType: Contract -homePhone: +1 213 543-7194 -initials: G. D. -mobile: +1 213 831-9645 -pager: +1 213 153-8853 -roomNumber: 8758 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shanon Vexler,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Bea Nemec,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bea Nemec -sn: Nemec -description: This is Bea Nemec's description -facsimileTelephoneNumber: +1 818 196-8966 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 818 693-8893 -title: Master Management Sales Rep -userPassword: Password1 -uid: NemecB -givenName: Bea -mail: NemecB@a8ae1585c1f243f79caee56f5d3ecb02.bitwarden.com -carLicense: PUYNQ6 -departmentNumber: 2245 -employeeType: Contract -homePhone: +1 818 669-7574 -initials: B. N. -mobile: +1 818 519-6225 -pager: +1 818 951-7664 -roomNumber: 9463 -manager: cn=Lorna Kreimer,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Veneice Tobias,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Veneice Tobias -sn: Tobias -description: This is Veneice Tobias's description -facsimileTelephoneNumber: +1 804 320-8186 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 804 359-4242 -title: Associate Product Development Technician -userPassword: Password1 -uid: TobiasV -givenName: Veneice -mail: TobiasV@1a08913edfd44837a7e737b90b169ef7.bitwarden.com -carLicense: I28HER -departmentNumber: 3658 -employeeType: Employee -homePhone: +1 804 878-3462 -initials: V. T. -mobile: +1 804 244-8583 -pager: +1 804 227-4690 -roomNumber: 9573 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Zohar Hauge,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sigrid Kneeshaw -sn: Kneeshaw -description: This is Sigrid Kneeshaw's description -facsimileTelephoneNumber: +1 818 372-2408 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 818 938-7375 -title: Junior Human Resources Pinhead -userPassword: Password1 -uid: KneeshaS -givenName: Sigrid -mail: KneeshaS@ab120df6e5194bf6ac6a830bba26f7f2.bitwarden.com -carLicense: GNHSR5 -departmentNumber: 6651 -employeeType: Employee -homePhone: +1 818 186-8577 -initials: S. K. -mobile: +1 818 267-2683 -pager: +1 818 840-5390 -roomNumber: 8626 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dorolice Communication,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dorolice Communication -sn: Communication -description: This is Dorolice Communication's description -facsimileTelephoneNumber: +1 206 494-5582 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 206 906-9381 -title: Supreme Management Czar -userPassword: Password1 -uid: CommuniD -givenName: Dorolice -mail: CommuniD@fef3179c9c4841a591a83e801687f728.bitwarden.com -carLicense: OG9HE4 -departmentNumber: 8529 -employeeType: Normal -homePhone: +1 206 815-4168 -initials: D. C. -mobile: +1 206 899-8095 -pager: +1 206 247-5193 -roomNumber: 8402 -manager: cn=Brittni Holliday,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Jayesh Purson,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Danica Middleton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Danica Middleton -sn: Middleton -description: This is Danica Middleton's description -facsimileTelephoneNumber: +1 415 359-1738 -l: Santa Clara -ou: Human Resources -postalAddress: Human Resources$Santa Clara -telephoneNumber: +1 415 835-1815 -title: Supreme Human Resources Fellow -userPassword: Password1 -uid: MiddletD -givenName: Danica -mail: MiddletD@752a496e92da43f3852dc6fc94c2530e.bitwarden.com -carLicense: PLLE3D -departmentNumber: 7283 -employeeType: Normal -homePhone: +1 415 461-6091 -initials: D. M. -mobile: +1 415 392-1357 -pager: +1 415 536-7576 -roomNumber: 9948 -manager: cn=Kristien Reinwald,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Joete Stamps,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Bradley Stokker,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Bradley Stokker -sn: Stokker -description: This is Bradley Stokker's description -facsimileTelephoneNumber: +1 408 578-6417 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 408 867-5163 -title: Master Peons Fellow -userPassword: Password1 -uid: StokkerB -givenName: Bradley -mail: StokkerB@7d6095181b454ecb8a89a9772da4d295.bitwarden.com -carLicense: 8605EP -departmentNumber: 3084 -employeeType: Employee -homePhone: +1 408 739-6663 -initials: B. S. -mobile: +1 408 506-2751 -pager: +1 408 174-4683 -roomNumber: 8859 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Kessia Reiser,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kessia Reiser -sn: Reiser -description: This is Kessia Reiser's description -facsimileTelephoneNumber: +1 818 589-9774 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 818 178-7925 -title: Associate Management Writer -userPassword: Password1 -uid: ReiserK -givenName: Kessia -mail: ReiserK@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com -carLicense: A8YPP0 -departmentNumber: 7381 -employeeType: Contract -homePhone: +1 818 676-2146 -initials: K. R. -mobile: +1 818 619-4171 -pager: +1 818 183-9175 -roomNumber: 8773 -manager: cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sluis Watchorn -sn: Watchorn -description: This is Sluis Watchorn's description -facsimileTelephoneNumber: +1 804 619-4840 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 804 702-8842 -title: Chief Janitorial Consultant -userPassword: Password1 -uid: WatchorS -givenName: Sluis -mail: WatchorS@11e135fa916b4ec49a99ab186c82a0aa.bitwarden.com -carLicense: GCRAIV -departmentNumber: 1271 -employeeType: Normal -homePhone: +1 804 689-1788 -initials: S. W. -mobile: +1 804 837-2568 -pager: +1 804 206-2034 -roomNumber: 8534 -manager: cn=Allyn Aitken,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Shahram Campeau,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Lope Keim,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lope Keim -sn: Keim -description: This is Lope Keim's description -facsimileTelephoneNumber: +1 408 794-6177 -l: Sunnyvale -ou: Janitorial -postalAddress: Janitorial$Sunnyvale -telephoneNumber: +1 408 951-7578 -title: Supreme Janitorial Mascot -userPassword: Password1 -uid: KeimL -givenName: Lope -mail: KeimL@724bb72313a2494c8bc8f0602203fd58.bitwarden.com -carLicense: M499A2 -departmentNumber: 1998 -employeeType: Contract -homePhone: +1 408 243-4674 -initials: L. K. -mobile: +1 408 767-7777 -pager: +1 408 496-1463 -roomNumber: 9419 -manager: cn=Bobette Sherlock,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Tonya Hine,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tonya Hine -sn: Hine -description: This is Tonya Hine's description -facsimileTelephoneNumber: +1 415 471-8793 -l: Alameda -ou: Janitorial -postalAddress: Janitorial$Alameda -telephoneNumber: +1 415 647-5384 -title: Supreme Janitorial Stooge -userPassword: Password1 -uid: HineT -givenName: Tonya -mail: HineT@0b95963fb73545098f8197081089a1f3.bitwarden.com -carLicense: 8RS2BW -departmentNumber: 9562 -employeeType: Employee -homePhone: +1 415 931-2233 -initials: T. H. -mobile: +1 415 145-2766 -pager: +1 415 729-2043 -roomNumber: 8731 -manager: cn=Shobana Berna,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Anjanette Codata,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zahid Wilkie -sn: Wilkie -description: This is Zahid Wilkie's description -facsimileTelephoneNumber: +1 510 499-6329 -l: Armonk -ou: Product Testing -postalAddress: Product Testing$Armonk -telephoneNumber: +1 510 240-4936 -title: Master Product Testing Dictator -userPassword: Password1 -uid: WilkieZ -givenName: Zahid -mail: WilkieZ@d99d4047451b4e76b9f1ce1cef474716.bitwarden.com -carLicense: 0HRQUX -departmentNumber: 6514 -employeeType: Contract -homePhone: +1 510 714-3137 -initials: Z. W. -mobile: +1 510 595-1859 -pager: +1 510 125-4797 -roomNumber: 8526 -manager: cn=Seanna Lasher,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Loria Buckley,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Lisa Lande,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lisa Lande -sn: Lande -description: This is Lisa Lande's description -facsimileTelephoneNumber: +1 415 275-5926 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 415 380-2030 -title: Master Product Development Writer -userPassword: Password1 -uid: LandeL -givenName: Lisa -mail: LandeL@a524fcb1eac4447e976069bb86ce0e2a.bitwarden.com -carLicense: FXC7LX -departmentNumber: 3980 -employeeType: Normal -homePhone: +1 415 427-3300 -initials: L. L. -mobile: +1 415 459-8302 -pager: +1 415 748-4979 -roomNumber: 8135 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Susanetta Technosoft,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Lapkin Matney,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lapkin Matney -sn: Matney -description: This is Lapkin Matney's description -facsimileTelephoneNumber: +1 206 488-7393 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 206 496-3893 -title: Supreme Administrative Madonna -userPassword: Password1 -uid: MatneyL -givenName: Lapkin -mail: MatneyL@b76d7503542847f29f63dbae71a2b656.bitwarden.com -carLicense: FTXUNC -departmentNumber: 9208 -employeeType: Employee -homePhone: +1 206 819-6098 -initials: L. M. -mobile: +1 206 361-4569 -pager: +1 206 728-6417 -roomNumber: 8838 -manager: cn=Cally Rios,ou=Management,dc=bitwarden, dc=com -secretary: cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolette Bourgault -sn: Bourgault -description: This is Nicolette Bourgault's description -facsimileTelephoneNumber: +1 510 253-2714 -l: Palo Alto -ou: Janitorial -postalAddress: Janitorial$Palo Alto -telephoneNumber: +1 510 391-1802 -title: Supreme Janitorial Developer -userPassword: Password1 -uid: BourgauN -givenName: Nicolette -mail: BourgauN@a34dd1944e1c4d68b93ae1f0684316ef.bitwarden.com -carLicense: R0P4AN -departmentNumber: 9146 -employeeType: Employee -homePhone: +1 510 318-4822 -initials: N. B. -mobile: +1 510 665-7502 -pager: +1 510 215-2614 -roomNumber: 9709 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Elvina Thomson,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jandy Rtprelb -sn: Rtprelb -description: This is Jandy Rtprelb's description -facsimileTelephoneNumber: +1 206 315-5459 -l: Fremont -ou: Janitorial -postalAddress: Janitorial$Fremont -telephoneNumber: +1 206 690-1192 -title: Junior Janitorial Figurehead -userPassword: Password1 -uid: RtprelbJ -givenName: Jandy -mail: RtprelbJ@b1f81108ccde47b8a2df0aba6ea7b365.bitwarden.com -carLicense: HTSVMD -departmentNumber: 9383 -employeeType: Employee -homePhone: +1 206 271-1497 -initials: J. R. -mobile: +1 206 527-5854 -pager: +1 206 201-4802 -roomNumber: 9848 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Remi Giuliani,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Lenee Topp,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lenee Topp -sn: Topp -description: This is Lenee Topp's description -facsimileTelephoneNumber: +1 408 854-4513 -l: Santa Clara -ou: Janitorial -postalAddress: Janitorial$Santa Clara -telephoneNumber: +1 408 977-3527 -title: Chief Janitorial Technician -userPassword: Password1 -uid: ToppL -givenName: Lenee -mail: ToppL@38661906a7a24233a4109f4402fd5f5f.bitwarden.com -carLicense: H3IHOO -departmentNumber: 4678 -employeeType: Normal -homePhone: +1 408 163-2106 -initials: L. T. -mobile: +1 408 237-2372 -pager: +1 408 774-4261 -roomNumber: 9848 -manager: cn=Aila Koster,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Sacto Miskelly,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sacto Miskelly -sn: Miskelly -description: This is Sacto Miskelly's description -facsimileTelephoneNumber: +1 415 676-7659 -l: Cambridge -ou: Payroll -postalAddress: Payroll$Cambridge -telephoneNumber: +1 415 891-2985 -title: Supreme Payroll Evangelist -userPassword: Password1 -uid: MiskellS -givenName: Sacto -mail: MiskellS@45383e5a120c4c58a302e7c79762cfc3.bitwarden.com -carLicense: WFIR9K -departmentNumber: 3568 -employeeType: Employee -homePhone: +1 415 536-1859 -initials: S. M. -mobile: +1 415 675-1407 -pager: +1 415 665-8239 -roomNumber: 8874 -manager: cn=Emelia Esry,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sib Schissel,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sib Schissel -sn: Schissel -description: This is Sib Schissel's description -facsimileTelephoneNumber: +1 415 828-1425 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 415 273-7633 -title: Supreme Product Development Developer -userPassword: Password1 -uid: SchisseS -givenName: Sib -mail: SchisseS@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com -carLicense: TI2TNY -departmentNumber: 4780 -employeeType: Normal -homePhone: +1 415 995-1872 -initials: S. S. -mobile: +1 415 233-6794 -pager: +1 415 847-1042 -roomNumber: 8217 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tessa Severin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tessa Severin -sn: Severin -description: This is Tessa Severin's description -facsimileTelephoneNumber: +1 510 119-5037 -l: Orem -ou: Payroll -postalAddress: Payroll$Orem -telephoneNumber: +1 510 240-2610 -title: Junior Payroll Fellow -userPassword: Password1 -uid: SeverinT -givenName: Tessa -mail: SeverinT@85dda47759d846abae02b74a574c7914.bitwarden.com -carLicense: VJO503 -departmentNumber: 9161 -employeeType: Normal -homePhone: +1 510 409-4881 -initials: T. S. -mobile: +1 510 929-6390 -pager: +1 510 930-5093 -roomNumber: 8280 -manager: cn=Rudie Unxlb,ou=Management,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Drucill Brickey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drucill Brickey -sn: Brickey -description: This is Drucill Brickey's description -facsimileTelephoneNumber: +1 206 756-3050 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 206 357-6008 -title: Master Peons Fellow -userPassword: Password1 -uid: BrickeyD -givenName: Drucill -mail: BrickeyD@47062aafd0e846809818576b78318155.bitwarden.com -carLicense: 2OF6OW -departmentNumber: 9158 -employeeType: Employee -homePhone: +1 206 393-6938 -initials: D. B. -mobile: +1 206 533-4843 -pager: +1 206 484-2016 -roomNumber: 8083 -manager: cn=Guillermo Leavell,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Caterina StMartin,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caterina StMartin -sn: StMartin -description: This is Caterina StMartin's description -facsimileTelephoneNumber: +1 510 502-3265 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 847-2331 -title: Supreme Administrative Assistant -userPassword: Password1 -uid: StMartiC -givenName: Caterina -mail: StMartiC@0710345c27d44c78bde32a03e3d70c26.bitwarden.com -carLicense: JP86CH -departmentNumber: 7590 -employeeType: Employee -homePhone: +1 510 210-6162 -initials: C. S. -mobile: +1 510 497-4327 -pager: +1 510 763-3969 -roomNumber: 8137 -manager: cn=Bianka Zeiger,ou=Management,dc=bitwarden, dc=com -secretary: cn=Octavio Mathur,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Rojer Jurek,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rojer Jurek -sn: Jurek -description: This is Rojer Jurek's description -facsimileTelephoneNumber: +1 206 720-1935 -l: San Jose -ou: Peons -postalAddress: Peons$San Jose -telephoneNumber: +1 206 247-1614 -title: Junior Peons Writer -userPassword: Password1 -uid: JurekR -givenName: Rojer -mail: JurekR@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com -carLicense: SJCPE9 -departmentNumber: 8649 -employeeType: Normal -homePhone: +1 206 752-3658 -initials: R. J. -mobile: +1 206 797-1910 -pager: +1 206 818-8236 -roomNumber: 8723 -manager: cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shannah Colpitts,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shannah Colpitts -sn: Colpitts -description: This is Shannah Colpitts's description -facsimileTelephoneNumber: +1 415 963-3132 -l: Cupertino -ou: Administrative -postalAddress: Administrative$Cupertino -telephoneNumber: +1 415 437-4879 -title: Associate Administrative Visionary -userPassword: Password1 -uid: ColpittS -givenName: Shannah -mail: ColpittS@ec5b8f0e9ac54265b8c5ceea3f25604f.bitwarden.com -carLicense: FEQ43C -departmentNumber: 9827 -employeeType: Employee -homePhone: +1 415 260-4513 -initials: S. C. -mobile: +1 415 449-2255 -pager: +1 415 111-8859 -roomNumber: 9465 -manager: cn=Othella Difilippo,ou=Management,dc=bitwarden, dc=com -secretary: cn=Oral Pridgen,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Holst Lowder,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Holst Lowder -sn: Lowder -description: This is Holst Lowder's description -facsimileTelephoneNumber: +1 415 787-2453 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 415 326-6292 -title: Supreme Janitorial Assistant -userPassword: Password1 -uid: LowderH -givenName: Holst -mail: LowderH@9bec1f480eec4baea66a1e4c2e434262.bitwarden.com -carLicense: 9ANO45 -departmentNumber: 1664 -employeeType: Employee -homePhone: +1 415 303-7504 -initials: H. L. -mobile: +1 415 180-8349 -pager: +1 415 168-1179 -roomNumber: 9355 -manager: cn=Lotti Farnum,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Yatish Drynan,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Hernan Cano,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hernan Cano -sn: Cano -description: This is Hernan Cano's description -facsimileTelephoneNumber: +1 206 244-9565 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 206 355-3838 -title: Master Management Assistant -userPassword: Password1 -uid: CanoH -givenName: Hernan -mail: CanoH@cad06adc163e4feeb3c82e23f3cc80c5.bitwarden.com -carLicense: C17SS6 -departmentNumber: 9661 -employeeType: Contract -homePhone: +1 206 232-8726 -initials: H. C. -mobile: +1 206 373-5202 -pager: +1 206 568-5937 -roomNumber: 9692 -manager: cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Opto Broten,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Opto Broten -sn: Broten -description: This is Opto Broten's description -facsimileTelephoneNumber: +1 510 158-6140 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 510 964-4851 -title: Junior Human Resources Grunt -userPassword: Password1 -uid: BrotenO -givenName: Opto -mail: BrotenO@c26e885b4f4a47e7befaa9bedce07d04.bitwarden.com -carLicense: N2QLRC -departmentNumber: 8939 -employeeType: Contract -homePhone: +1 510 628-7768 -initials: O. B. -mobile: +1 510 354-2230 -pager: +1 510 579-4842 -roomNumber: 9001 -manager: cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacquenette Metcalfe -sn: Metcalfe -description: This is Jacquenette Metcalfe's description -facsimileTelephoneNumber: +1 408 972-7429 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 408 466-2435 -title: Master Payroll Artist -userPassword: Password1 -uid: MetcalfJ -givenName: Jacquenette -mail: MetcalfJ@49a5c823cbe74e80b9d7e45aa3c6dc0c.bitwarden.com -carLicense: DHMKX8 -departmentNumber: 7727 -employeeType: Contract -homePhone: +1 408 915-1767 -initials: J. M. -mobile: +1 408 329-9636 -pager: +1 408 898-4203 -roomNumber: 9136 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Dinah Kodsi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Loralyn Lystuik -sn: Lystuik -description: This is Loralyn Lystuik's description -facsimileTelephoneNumber: +1 415 270-3023 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 415 308-5665 -title: Supreme Administrative Consultant -userPassword: Password1 -uid: LystuikL -givenName: Loralyn -mail: LystuikL@8b4252ea9d114f95b65956efe85c0aae.bitwarden.com -carLicense: 51PR2Y -departmentNumber: 8642 -employeeType: Contract -homePhone: +1 415 997-1678 -initials: L. L. -mobile: +1 415 630-6511 -pager: +1 415 988-2387 -roomNumber: 9871 -manager: cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pirooz Bilodeau -sn: Bilodeau -description: This is Pirooz Bilodeau's description -facsimileTelephoneNumber: +1 415 727-7544 -l: Cambridge -ou: Product Testing -postalAddress: Product Testing$Cambridge -telephoneNumber: +1 415 862-4598 -title: Chief Product Testing Janitor -userPassword: Password1 -uid: BilodeaP -givenName: Pirooz -mail: BilodeaP@ae1bd8aa112143fa87c88a44e69aa310.bitwarden.com -carLicense: 87M28I -departmentNumber: 6737 -employeeType: Contract -homePhone: +1 415 688-8511 -initials: P. B. -mobile: +1 415 302-5901 -pager: +1 415 853-3433 -roomNumber: 9766 -manager: cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gyula Aboussouan -sn: Aboussouan -description: This is Gyula Aboussouan's description -facsimileTelephoneNumber: +1 206 344-4270 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 206 552-9069 -title: Chief Product Development Czar -userPassword: Password1 -uid: AboussoG -givenName: Gyula -mail: AboussoG@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com -carLicense: 4YJAX2 -departmentNumber: 3434 -employeeType: Normal -homePhone: +1 206 140-6966 -initials: G. A. -mobile: +1 206 840-9014 -pager: +1 206 886-9978 -roomNumber: 9061 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jaymee Stephen -sn: Stephen -description: This is Jaymee Stephen's description -facsimileTelephoneNumber: +1 213 319-5026 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 610-3713 -title: Master Human Resources Technician -userPassword: Password1 -uid: StephenJ -givenName: Jaymee -mail: StephenJ@9c33cfc2346e4ce69bd595e18c9344a0.bitwarden.com -carLicense: AGOVGH -departmentNumber: 2141 -employeeType: Normal -homePhone: +1 213 141-3779 -initials: J. S. -mobile: +1 213 321-5104 -pager: +1 213 810-5432 -roomNumber: 9635 -manager: cn=Fleet Nie,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Lana Ellerman,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Jill Domine,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jill Domine -sn: Domine -description: This is Jill Domine's description -facsimileTelephoneNumber: +1 818 341-6348 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 310-4280 -title: Associate Management Fellow -userPassword: Password1 -uid: DomineJ -givenName: Jill -mail: DomineJ@f46633fbb9a14011a26194c56d6fd793.bitwarden.com -carLicense: J83QKL -departmentNumber: 7455 -employeeType: Normal -homePhone: +1 818 695-8128 -initials: J. D. -mobile: +1 818 427-2489 -pager: +1 818 536-3104 -roomNumber: 8474 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Calypso Bolding,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Calypso Bolding -sn: Bolding -description: This is Calypso Bolding's description -facsimileTelephoneNumber: +1 510 353-5236 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 973-7388 -title: Associate Human Resources Architect -userPassword: Password1 -uid: BoldingC -givenName: Calypso -mail: BoldingC@defab017f9734cfab5b3fea4ed24112c.bitwarden.com -carLicense: 87TE5R -departmentNumber: 8897 -employeeType: Normal -homePhone: +1 510 966-1723 -initials: C. B. -mobile: +1 510 406-3399 -pager: +1 510 166-4515 -roomNumber: 9465 -manager: cn=Hector Manus,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Bertie Bounds,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Camille Legrandvallet -sn: Legrandvallet -description: This is Camille Legrandvallet's description -facsimileTelephoneNumber: +1 510 815-3793 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 510 701-8108 -title: Chief Product Development Admin -userPassword: Password1 -uid: LegrandC -givenName: Camille -mail: LegrandC@7848d01e47bb47dd88ac5b785d126995.bitwarden.com -carLicense: 80131O -departmentNumber: 2615 -employeeType: Employee -homePhone: +1 510 941-6977 -initials: C. L. -mobile: +1 510 451-6585 -pager: +1 510 941-3470 -roomNumber: 8796 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Donica Banens,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Nicolina Scp,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicolina Scp -sn: Scp -description: This is Nicolina Scp's description -facsimileTelephoneNumber: +1 804 224-6015 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 804 960-2702 -title: Chief Janitorial Engineer -userPassword: Password1 -uid: ScpN -givenName: Nicolina -mail: ScpN@3fe7f6d7adf6406f923792a176bd4ea0.bitwarden.com -carLicense: X6GVW1 -departmentNumber: 9685 -employeeType: Contract -homePhone: +1 804 480-7647 -initials: N. S. -mobile: +1 804 357-7387 -pager: +1 804 945-5391 -roomNumber: 8679 -manager: cn=Munir Gonsalves,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Louisa Macoosh,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Beverlee Hagstrom -sn: Hagstrom -description: This is Beverlee Hagstrom's description -facsimileTelephoneNumber: +1 804 264-7565 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 969-4588 -title: Associate Administrative Warrior -userPassword: Password1 -uid: HagstroB -givenName: Beverlee -mail: HagstroB@849b3c4e1c2c440d9331e7ccb7fe6ee8.bitwarden.com -carLicense: KH2UL5 -departmentNumber: 3480 -employeeType: Employee -homePhone: +1 804 485-6662 -initials: B. H. -mobile: +1 804 428-1156 -pager: +1 804 855-8955 -roomNumber: 8128 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Walter Cuddy,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Walter Cuddy -sn: Cuddy -description: This is Walter Cuddy's description -facsimileTelephoneNumber: +1 510 519-8693 -l: Menlo Park -ou: Janitorial -postalAddress: Janitorial$Menlo Park -telephoneNumber: +1 510 867-4816 -title: Supreme Janitorial Czar -userPassword: Password1 -uid: CuddyW -givenName: Walter -mail: CuddyW@afcd0af4da324c3492fbd5aaa52ff03c.bitwarden.com -carLicense: R5RD9B -departmentNumber: 8447 -employeeType: Contract -homePhone: +1 510 441-3983 -initials: W. C. -mobile: +1 510 843-9949 -pager: +1 510 559-7087 -roomNumber: 9084 -manager: cn=Pierette Rodriques,ou=Management,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chellappan Parmaksezian -sn: Parmaksezian -description: This is Chellappan Parmaksezian's description -facsimileTelephoneNumber: +1 408 182-3049 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 408 487-6327 -title: Junior Peons Figurehead -userPassword: Password1 -uid: ParmaksC -givenName: Chellappan -mail: ParmaksC@511ccdcb357841e29d15d33838533afe.bitwarden.com -carLicense: JIVDUN -departmentNumber: 6069 -employeeType: Normal -homePhone: +1 408 821-1121 -initials: C. P. -mobile: +1 408 263-1765 -pager: +1 408 297-2895 -roomNumber: 8253 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Ruby Mattson,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ruby Mattson -sn: Mattson -description: This is Ruby Mattson's description -facsimileTelephoneNumber: +1 510 635-8626 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 779-5099 -title: Supreme Janitorial Figurehead -userPassword: Password1 -uid: MattsonR -givenName: Ruby -mail: MattsonR@bb05d1b4bcfb47c3a365c022dca10213.bitwarden.com -carLicense: UW1LBO -departmentNumber: 8484 -employeeType: Normal -homePhone: +1 510 631-1662 -initials: R. M. -mobile: +1 510 657-4372 -pager: +1 510 949-7471 -roomNumber: 9667 -manager: cn=Nguyen Jaques,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Prams Bertolini,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Ranna Bedford,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ranna Bedford -sn: Bedford -description: This is Ranna Bedford's description -facsimileTelephoneNumber: +1 818 596-3804 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 818 328-5384 -title: Chief Payroll Pinhead -userPassword: Password1 -uid: BedfordR -givenName: Ranna -mail: BedfordR@d4eaa963470a4ec593f45c3b1f5e6d31.bitwarden.com -carLicense: CM8Y45 -departmentNumber: 4700 -employeeType: Contract -homePhone: +1 818 372-4246 -initials: R. B. -mobile: +1 818 156-1827 -pager: +1 818 310-7518 -roomNumber: 8284 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Amalle Rodi,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Amalle Rodi -sn: Rodi -description: This is Amalle Rodi's description -facsimileTelephoneNumber: +1 804 478-6607 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 804 314-1169 -title: Master Payroll Evangelist -userPassword: Password1 -uid: RodiA -givenName: Amalle -mail: RodiA@36bf168f83f54de6b68d81c3236caec7.bitwarden.com -carLicense: IAU68D -departmentNumber: 3648 -employeeType: Employee -homePhone: +1 804 967-5689 -initials: A. R. -mobile: +1 804 553-9484 -pager: +1 804 903-5965 -roomNumber: 8365 -manager: cn=Evie Morin,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Eolande Tarver,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eolande Tarver -sn: Tarver -description: This is Eolande Tarver's description -facsimileTelephoneNumber: +1 510 528-4127 -l: Palo Alto -ou: Human Resources -postalAddress: Human Resources$Palo Alto -telephoneNumber: +1 510 570-7648 -title: Associate Human Resources Evangelist -userPassword: Password1 -uid: TarverE -givenName: Eolande -mail: TarverE@ee233aa2d9a24ed1b6259dfbaed5ede4.bitwarden.com -carLicense: 0ALO26 -departmentNumber: 4802 -employeeType: Employee -homePhone: +1 510 960-5212 -initials: E. T. -mobile: +1 510 511-7611 -pager: +1 510 720-8304 -roomNumber: 8887 -manager: cn=Nariko Hobgood,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tilda Kirady,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilda Kirady -sn: Kirady -description: This is Tilda Kirady's description -facsimileTelephoneNumber: +1 213 335-6312 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 168-4342 -title: Junior Product Testing Figurehead -userPassword: Password1 -uid: KiradyT -givenName: Tilda -mail: KiradyT@f131b0c80bf2427c8f1448cabfd51b89.bitwarden.com -carLicense: 26VQVT -departmentNumber: 3758 -employeeType: Contract -homePhone: +1 213 476-4092 -initials: T. K. -mobile: +1 213 968-3469 -pager: +1 213 128-5648 -roomNumber: 8173 -manager: cn=Selime Yuengling,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lenore Spraggins,ou=Management,dc=bitwarden, dc=com - -dn: cn=Shailin Harris,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shailin Harris -sn: Harris -description: This is Shailin Harris's description -facsimileTelephoneNumber: +1 415 843-8210 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 415 892-9338 -title: Master Product Development Czar -userPassword: Password1 -uid: HarrisS -givenName: Shailin -mail: HarrisS@b97f63fadf014761ad37c4e561572265.bitwarden.com -carLicense: RITIPQ -departmentNumber: 7473 -employeeType: Employee -homePhone: +1 415 981-3284 -initials: S. H. -mobile: +1 415 227-3046 -pager: +1 415 150-6240 -roomNumber: 9886 -manager: cn=Trever Shearer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Paolina McCaughey,ou=Management,dc=bitwarden, dc=com - -dn: cn=Axel Panter,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Axel Panter -sn: Panter -description: This is Axel Panter's description -facsimileTelephoneNumber: +1 415 811-6669 -l: Santa Clara -ou: Payroll -postalAddress: Payroll$Santa Clara -telephoneNumber: +1 415 958-6654 -title: Chief Payroll Madonna -userPassword: Password1 -uid: PanterA -givenName: Axel -mail: PanterA@559e1a46c2f944d8a33837a661c67fa0.bitwarden.com -carLicense: YW4LFQ -departmentNumber: 4407 -employeeType: Normal -homePhone: +1 415 327-1163 -initials: A. P. -mobile: +1 415 513-5073 -pager: +1 415 991-1234 -roomNumber: 8037 -manager: cn=Clarabelle Committe,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Anderson Hockaday,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Karel McKerrow,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Karel McKerrow -sn: McKerrow -description: This is Karel McKerrow's description -facsimileTelephoneNumber: +1 213 351-5054 -l: Cupertino -ou: Janitorial -postalAddress: Janitorial$Cupertino -telephoneNumber: +1 213 199-7573 -title: Master Janitorial Architect -userPassword: Password1 -uid: McKerroK -givenName: Karel -mail: McKerroK@a54f12818a1846468b5223c21ce7b95a.bitwarden.com -carLicense: XQHONX -departmentNumber: 1036 -employeeType: Normal -homePhone: +1 213 913-1512 -initials: K. M. -mobile: +1 213 605-2096 -pager: +1 213 851-1715 -roomNumber: 9914 -manager: cn=Floyd Shelby,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Felicia Audette,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hesham SYSINT -sn: SYSINT -description: This is Hesham SYSINT's description -facsimileTelephoneNumber: +1 206 789-4428 -l: San Francisco -ou: Product Testing -postalAddress: Product Testing$San Francisco -telephoneNumber: +1 206 126-4447 -title: Associate Product Testing Fellow -userPassword: Password1 -uid: SYSINTH -givenName: Hesham -mail: SYSINTH@ff55511857a042e0b4f985da98eaf06c.bitwarden.com -carLicense: IIOG66 -departmentNumber: 5086 -employeeType: Employee -homePhone: +1 206 304-4229 -initials: H. S. -mobile: +1 206 381-8055 -pager: +1 206 216-9665 -roomNumber: 8656 -manager: cn=Pascale Hutchings,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Hilmi Spohn,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Arabelle Jepson,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arabelle Jepson -sn: Jepson -description: This is Arabelle Jepson's description -facsimileTelephoneNumber: +1 804 448-3784 -l: San Mateo -ou: Product Development -postalAddress: Product Development$San Mateo -telephoneNumber: +1 804 130-3612 -title: Junior Product Development Madonna -userPassword: Password1 -uid: JepsonA -givenName: Arabelle -mail: JepsonA@b034a4332db1440db9d21ffa224b40ad.bitwarden.com -carLicense: 8BPOXK -departmentNumber: 8049 -employeeType: Normal -homePhone: +1 804 458-4336 -initials: A. J. -mobile: +1 804 787-4722 -pager: +1 804 349-5763 -roomNumber: 8074 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Edita VanRijswijk,ou=Management,dc=bitwarden, dc=com - -dn: cn=Donna Imhof,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Donna Imhof -sn: Imhof -description: This is Donna Imhof's description -facsimileTelephoneNumber: +1 213 939-5337 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 213 922-5649 -title: Junior Payroll Mascot -userPassword: Password1 -uid: ImhofD -givenName: Donna -mail: ImhofD@31e0e9341ea74d639b4c5d690dfc3510.bitwarden.com -carLicense: 2FGS57 -departmentNumber: 8923 -employeeType: Contract -homePhone: +1 213 714-2229 -initials: D. I. -mobile: +1 213 934-8654 -pager: +1 213 975-9398 -roomNumber: 8455 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tilly Mastenbrook -sn: Mastenbrook -description: This is Tilly Mastenbrook's description -facsimileTelephoneNumber: +1 408 167-7875 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 408 289-6351 -title: Junior Product Development Evangelist -userPassword: Password1 -uid: MastenbT -givenName: Tilly -mail: MastenbT@970a67116dba428ca784557a5cd27357.bitwarden.com -carLicense: 6KNHYD -departmentNumber: 7458 -employeeType: Normal -homePhone: +1 408 525-9713 -initials: T. M. -mobile: +1 408 726-1200 -pager: +1 408 711-7225 -roomNumber: 8830 -manager: cn=Gen Rushton,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Lucila Caruth,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lucila Caruth -sn: Caruth -description: This is Lucila Caruth's description -facsimileTelephoneNumber: +1 408 502-4465 -l: Armonk -ou: Management -postalAddress: Management$Armonk -telephoneNumber: +1 408 695-9186 -title: Supreme Management Stooge -userPassword: Password1 -uid: CaruthL -givenName: Lucila -mail: CaruthL@4f4529779c39486286005f0294a1558e.bitwarden.com -carLicense: CAH7GM -departmentNumber: 5502 -employeeType: Employee -homePhone: +1 408 761-2959 -initials: L. C. -mobile: +1 408 115-6149 -pager: +1 408 834-2784 -roomNumber: 9366 -manager: cn=Armand Klimas,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Serban Kamal,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Serban Kamal -sn: Kamal -description: This is Serban Kamal's description -facsimileTelephoneNumber: +1 408 360-5698 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 408 163-8981 -title: Junior Janitorial Warrior -userPassword: Password1 -uid: KamalS -givenName: Serban -mail: KamalS@5f77a03327624c95b0af47acd4b143e5.bitwarden.com -carLicense: G7QVV9 -departmentNumber: 8146 -employeeType: Contract -homePhone: +1 408 670-3405 -initials: S. K. -mobile: +1 408 817-5041 -pager: +1 408 290-8921 -roomNumber: 9144 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Murray Longo,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Suzann Minter,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Suzann Minter -sn: Minter -description: This is Suzann Minter's description -facsimileTelephoneNumber: +1 818 602-1883 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 818 340-8730 -title: Supreme Product Development Admin -userPassword: Password1 -uid: MinterS -givenName: Suzann -mail: MinterS@f3b7d3d07c2e403b8aacf9226428b2e0.bitwarden.com -carLicense: PMGSLG -departmentNumber: 2847 -employeeType: Contract -homePhone: +1 818 688-5029 -initials: S. M. -mobile: +1 818 680-1770 -pager: +1 818 132-1850 -roomNumber: 8484 -manager: cn=Faizal Vezina,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Ringo Campara,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Roselia Valvasori,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roselia Valvasori -sn: Valvasori -description: This is Roselia Valvasori's description -facsimileTelephoneNumber: +1 408 705-9425 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 408 832-2476 -title: Junior Product Development Vice President -userPassword: Password1 -uid: ValvasoR -givenName: Roselia -mail: ValvasoR@dea332c9554341478a9465c061b04c2c.bitwarden.com -carLicense: 2TIXRQ -departmentNumber: 3507 -employeeType: Normal -homePhone: +1 408 566-3768 -initials: R. V. -mobile: +1 408 790-9893 -pager: +1 408 341-7947 -roomNumber: 8280 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nancey ODonovan,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nancey ODonovan -sn: ODonovan -description: This is Nancey ODonovan's description -facsimileTelephoneNumber: +1 408 674-4167 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 408 521-6129 -title: Chief Payroll Dictator -userPassword: Password1 -uid: ODonovaN -givenName: Nancey -mail: ODonovaN@d292ac0c300a44aaaa8fa15264950aa9.bitwarden.com -carLicense: QS8KAX -departmentNumber: 5765 -employeeType: Contract -homePhone: +1 408 304-9241 -initials: N. O. -mobile: +1 408 469-1921 -pager: +1 408 717-8730 -roomNumber: 8162 -manager: cn=Drusy Masapati,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Melford Sehgal,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Deva Deugau,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Deva Deugau -sn: Deugau -description: This is Deva Deugau's description -facsimileTelephoneNumber: +1 213 694-6212 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 213 579-9007 -title: Junior Payroll Admin -userPassword: Password1 -uid: DeugauD -givenName: Deva -mail: DeugauD@c1864662acf34812bb78c7f7029d15f8.bitwarden.com -carLicense: OXTXEQ -departmentNumber: 1458 -employeeType: Contract -homePhone: +1 213 127-7315 -initials: D. D. -mobile: +1 213 550-5616 -pager: +1 213 524-3749 -roomNumber: 8619 -manager: cn=Mina Chee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vivie Lauson,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gheorghe Lipski -sn: Lipski -description: This is Gheorghe Lipski's description -facsimileTelephoneNumber: +1 804 909-3749 -l: Milpitas -ou: Payroll -postalAddress: Payroll$Milpitas -telephoneNumber: +1 804 971-5657 -title: Supreme Payroll Manager -userPassword: Password1 -uid: LipskiG -givenName: Gheorghe -mail: LipskiG@6a7ad90af8b14ef5805ef3e5ef79c783.bitwarden.com -carLicense: FDG4OW -departmentNumber: 8444 -employeeType: Employee -homePhone: +1 804 465-2689 -initials: G. L. -mobile: +1 804 857-6809 -pager: +1 804 265-9115 -roomNumber: 8334 -manager: cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Fei Bebee,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Almire Rokas,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Almire Rokas -sn: Rokas -description: This is Almire Rokas's description -facsimileTelephoneNumber: +1 510 501-6496 -l: Cupertino -ou: Product Development -postalAddress: Product Development$Cupertino -telephoneNumber: +1 510 796-6168 -title: Associate Product Development Figurehead -userPassword: Password1 -uid: RokasA -givenName: Almire -mail: RokasA@70f44c830c534fd69815f0a242b800aa.bitwarden.com -carLicense: 2CADFT -departmentNumber: 8111 -employeeType: Contract -homePhone: +1 510 608-5719 -initials: A. R. -mobile: +1 510 805-3089 -pager: +1 510 806-6184 -roomNumber: 8893 -manager: cn=Nona Diee,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nguyet Kawashima -sn: Kawashima -description: This is Nguyet Kawashima's description -facsimileTelephoneNumber: +1 818 339-4225 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 818 207-5634 -title: Chief Human Resources Mascot -userPassword: Password1 -uid: KawashiN -givenName: Nguyet -mail: KawashiN@2a1378ca3fed44339fabf27d28472e8d.bitwarden.com -carLicense: 0SI38Y -departmentNumber: 9475 -employeeType: Normal -homePhone: +1 818 656-7421 -initials: N. K. -mobile: +1 818 553-7843 -pager: +1 818 684-2091 -roomNumber: 8785 -manager: cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Aideen Sterian,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aideen Sterian -sn: Sterian -description: This is Aideen Sterian's description -facsimileTelephoneNumber: +1 213 433-6937 -l: Sunnyvale -ou: Product Development -postalAddress: Product Development$Sunnyvale -telephoneNumber: +1 213 511-6848 -title: Associate Product Development Evangelist -userPassword: Password1 -uid: SterianA -givenName: Aideen -mail: SterianA@86ec81373a8049308a0ea3aa5ec73e40.bitwarden.com -carLicense: 93DEWO -departmentNumber: 4479 -employeeType: Normal -homePhone: +1 213 282-9800 -initials: A. S. -mobile: +1 213 501-6145 -pager: +1 213 521-4075 -roomNumber: 9799 -manager: cn=Juditha Moree,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Livvie Blodgett,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Norma Gording,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Norma Gording -sn: Gording -description: This is Norma Gording's description -facsimileTelephoneNumber: +1 408 211-5919 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 408 986-5360 -title: Supreme Peons Pinhead -userPassword: Password1 -uid: GordingN -givenName: Norma -mail: GordingN@4ea4f1e353e542d591c9ee228e04b29f.bitwarden.com -carLicense: SK0102 -departmentNumber: 4665 -employeeType: Contract -homePhone: +1 408 900-1919 -initials: N. G. -mobile: +1 408 602-8783 -pager: +1 408 409-8161 -roomNumber: 8788 -manager: cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Caye LeTarte,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Caye LeTarte -sn: LeTarte -description: This is Caye LeTarte's description -facsimileTelephoneNumber: +1 213 467-9728 -l: Milpitas -ou: Human Resources -postalAddress: Human Resources$Milpitas -telephoneNumber: +1 213 292-3883 -title: Supreme Human Resources Mascot -userPassword: Password1 -uid: LeTarteC -givenName: Caye -mail: LeTarteC@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com -carLicense: RYI9XO -departmentNumber: 5535 -employeeType: Normal -homePhone: +1 213 903-5564 -initials: C. L. -mobile: +1 213 145-3244 -pager: +1 213 633-6346 -roomNumber: 8598 -manager: cn=LyddaJune Challice,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Sibbie DeWiele,ou=Management,dc=bitwarden, dc=com - -dn: cn=Odile Blaufus,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Odile Blaufus -sn: Blaufus -description: This is Odile Blaufus's description -facsimileTelephoneNumber: +1 408 912-8298 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 408 481-2479 -title: Junior Product Development Punk -userPassword: Password1 -uid: BlaufusO -givenName: Odile -mail: BlaufusO@4d42e606140043c2b9dd8fa49a74f077.bitwarden.com -carLicense: NT23RK -departmentNumber: 2511 -employeeType: Normal -homePhone: +1 408 990-7926 -initials: O. B. -mobile: +1 408 715-5302 -pager: +1 408 544-4366 -roomNumber: 8340 -manager: cn=Saman Bosch,ou=Management,dc=bitwarden, dc=com -secretary: cn=Gabriell Aery,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Gerti Macchiusi,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerti Macchiusi -sn: Macchiusi -description: This is Gerti Macchiusi's description -facsimileTelephoneNumber: +1 408 458-7608 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 408 166-3191 -title: Associate Peons Mascot -userPassword: Password1 -uid: MacchiuG -givenName: Gerti -mail: MacchiuG@5bfdb02bbe094e32837af4fd211ac0c4.bitwarden.com -carLicense: ATVP2N -departmentNumber: 5167 -employeeType: Contract -homePhone: +1 408 300-7303 -initials: G. M. -mobile: +1 408 620-6082 -pager: +1 408 752-6769 -roomNumber: 8595 -manager: cn=Birgit Reznick,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Quinta Blezard,ou=Management,dc=bitwarden, dc=com - -dn: cn=Carmelita Fucito,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmelita Fucito -sn: Fucito -description: This is Carmelita Fucito's description -facsimileTelephoneNumber: +1 415 842-6301 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 415 209-8088 -title: Supreme Product Development Artist -userPassword: Password1 -uid: FucitoC -givenName: Carmelita -mail: FucitoC@21bcf6a485b34cf591de5e2c4c73b2a9.bitwarden.com -carLicense: MYMBTI -departmentNumber: 5450 -employeeType: Contract -homePhone: +1 415 366-3506 -initials: C. F. -mobile: +1 415 522-9608 -pager: +1 415 198-7550 -roomNumber: 9069 -manager: cn=Sluis Brauer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Marjoke NewLab,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Xenia Ertan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Xenia Ertan -sn: Ertan -description: This is Xenia Ertan's description -facsimileTelephoneNumber: +1 408 235-1737 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 408 993-8994 -title: Associate Management Writer -userPassword: Password1 -uid: ErtanX -givenName: Xenia -mail: ErtanX@3735d00458534db99064f02f9211b0c4.bitwarden.com -carLicense: HSMCNV -departmentNumber: 3322 -employeeType: Normal -homePhone: +1 408 314-7630 -initials: X. E. -mobile: +1 408 596-6829 -pager: +1 408 560-9936 -roomNumber: 9419 -manager: cn=Allie Corbeil,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Foster Swinson,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Foster Swinson -sn: Swinson -description: This is Foster Swinson's description -facsimileTelephoneNumber: +1 510 630-7410 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 510 767-9433 -title: Junior Administrative Figurehead -userPassword: Password1 -uid: SwinsonF -givenName: Foster -mail: SwinsonF@ca07554d305246dd85334089406d833c.bitwarden.com -carLicense: C5FQ8Q -departmentNumber: 7815 -employeeType: Employee -homePhone: +1 510 401-1788 -initials: F. S. -mobile: +1 510 409-3720 -pager: +1 510 312-6839 -roomNumber: 8394 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jerrylee Stennett -sn: Stennett -description: This is Jerrylee Stennett's description -facsimileTelephoneNumber: +1 408 277-8055 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 408 127-9823 -title: Master Payroll Mascot -userPassword: Password1 -uid: StennetJ -givenName: Jerrylee -mail: StennetJ@5bfe34f0b38046f495b7f4a7ffee01c4.bitwarden.com -carLicense: O3HF8M -departmentNumber: 6210 -employeeType: Normal -homePhone: +1 408 815-7115 -initials: J. S. -mobile: +1 408 248-3538 -pager: +1 408 578-2494 -roomNumber: 9487 -manager: cn=Alyce Tangren,ou=Management,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Fwpreg Liem,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Fwpreg Liem -sn: Liem -description: This is Fwpreg Liem's description -facsimileTelephoneNumber: +1 408 241-8920 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 408 388-7208 -title: Associate Administrative Grunt -userPassword: Password1 -uid: LiemF -givenName: Fwpreg -mail: LiemF@c28624b05f7d4c31811fad5e0d04b1e6.bitwarden.com -carLicense: KAUYC6 -departmentNumber: 7984 -employeeType: Employee -homePhone: +1 408 134-4077 -initials: F. L. -mobile: +1 408 257-6315 -pager: +1 408 885-9844 -roomNumber: 8732 -manager: cn=Doe Yowell,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rolande MacMeekin -sn: MacMeekin -description: This is Rolande MacMeekin's description -facsimileTelephoneNumber: +1 213 568-5385 -l: Fremont -ou: Product Development -postalAddress: Product Development$Fremont -telephoneNumber: +1 213 522-8518 -title: Supreme Product Development Artist -userPassword: Password1 -uid: MacMeekR -givenName: Rolande -mail: MacMeekR@a85aab1f1ab04cd48420e81e7374b4e8.bitwarden.com -carLicense: 744KHH -departmentNumber: 1261 -employeeType: Contract -homePhone: +1 213 382-7382 -initials: R. M. -mobile: +1 213 452-7255 -pager: +1 213 205-1481 -roomNumber: 8583 -manager: cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ernaline Rakotomalala -sn: Rakotomalala -description: This is Ernaline Rakotomalala's description -facsimileTelephoneNumber: +1 408 712-8468 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 408 504-1240 -title: Associate Human Resources Czar -userPassword: Password1 -uid: RakotomE -givenName: Ernaline -mail: RakotomE@16e252f623154ea09c88ae20c619b8c4.bitwarden.com -carLicense: 7EKOYO -departmentNumber: 6961 -employeeType: Employee -homePhone: +1 408 164-3291 -initials: E. R. -mobile: +1 408 378-6749 -pager: +1 408 241-5250 -roomNumber: 9823 -manager: cn=Kameko Lozier,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Yevette Egan,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Yevette Egan -sn: Egan -description: This is Yevette Egan's description -facsimileTelephoneNumber: +1 415 914-5048 -l: Milpitas -ou: Product Testing -postalAddress: Product Testing$Milpitas -telephoneNumber: +1 415 899-1282 -title: Junior Product Testing Warrior -userPassword: Password1 -uid: EganY -givenName: Yevette -mail: EganY@abb4a2ffe4d34b86b74539eca6366630.bitwarden.com -carLicense: XJ0PNP -departmentNumber: 7146 -employeeType: Employee -homePhone: +1 415 115-5222 -initials: Y. E. -mobile: +1 415 177-4356 -pager: +1 415 370-5690 -roomNumber: 8532 -manager: cn=Shekhar Howat,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Corette Barbour,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Clarice Seymour,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clarice Seymour -sn: Seymour -description: This is Clarice Seymour's description -facsimileTelephoneNumber: +1 213 409-8013 -l: Redmond -ou: Management -postalAddress: Management$Redmond -telephoneNumber: +1 213 816-6766 -title: Master Management Figurehead -userPassword: Password1 -uid: SeymourC -givenName: Clarice -mail: SeymourC@2b13da408414484c934b524c33272c48.bitwarden.com -carLicense: 3DIH4W -departmentNumber: 6239 -employeeType: Normal -homePhone: +1 213 244-2788 -initials: C. S. -mobile: +1 213 230-8916 -pager: +1 213 445-2005 -roomNumber: 9555 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Gay Golia,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mohammed Popowicz -sn: Popowicz -description: This is Mohammed Popowicz's description -facsimileTelephoneNumber: +1 804 568-6049 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 804 714-8299 -title: Associate Product Development Evangelist -userPassword: Password1 -uid: PopowicM -givenName: Mohammed -mail: PopowicM@db7691c9dca24eb7875f7a9259652b96.bitwarden.com -carLicense: XOC486 -departmentNumber: 4502 -employeeType: Contract -homePhone: +1 804 261-3111 -initials: M. P. -mobile: +1 804 718-9064 -pager: +1 804 254-5656 -roomNumber: 9821 -manager: cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Clement Bnrinfo -sn: Bnrinfo -description: This is Clement Bnrinfo's description -facsimileTelephoneNumber: +1 818 818-7348 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 818 569-1349 -title: Associate Payroll Admin -userPassword: Password1 -uid: BnrinfoC -givenName: Clement -mail: BnrinfoC@b1fdb151f0e64e1a958a0e82820ba255.bitwarden.com -carLicense: CYIRS2 -departmentNumber: 1927 -employeeType: Normal -homePhone: +1 818 208-2312 -initials: C. B. -mobile: +1 818 708-7543 -pager: +1 818 305-3020 -roomNumber: 9885 -manager: cn=Kaela Binner,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Marshal Hawken,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Miles Khorami,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miles Khorami -sn: Khorami -description: This is Miles Khorami's description -facsimileTelephoneNumber: +1 213 924-4520 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 213 268-9368 -title: Junior Payroll Grunt -userPassword: Password1 -uid: KhoramiM -givenName: Miles -mail: KhoramiM@6f609804b5454243a8f49419cf4fa238.bitwarden.com -carLicense: WVO8T2 -departmentNumber: 9829 -employeeType: Contract -homePhone: +1 213 530-6980 -initials: M. K. -mobile: +1 213 274-6220 -pager: +1 213 766-8028 -roomNumber: 9739 -manager: cn=Bethany Buder,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ramiz Gung,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roseann Uhlhorn -sn: Uhlhorn -description: This is Roseann Uhlhorn's description -facsimileTelephoneNumber: +1 415 223-2866 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 415 429-4579 -title: Master Administrative Director -userPassword: Password1 -uid: UhlhornR -givenName: Roseann -mail: UhlhornR@ed7609251fc6464495c48d57ffb093b6.bitwarden.com -carLicense: PBK3RS -departmentNumber: 2368 -employeeType: Normal -homePhone: +1 415 604-5690 -initials: R. U. -mobile: +1 415 705-4542 -pager: +1 415 459-8614 -roomNumber: 9505 -manager: cn=Grietje Ansorger,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Erlene Hargrow,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Joon Panton,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joon Panton -sn: Panton -description: This is Joon Panton's description -facsimileTelephoneNumber: +1 804 819-7151 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 543-8658 -title: Supreme Administrative Writer -userPassword: Password1 -uid: PantonJ -givenName: Joon -mail: PantonJ@399088e535dc444183a128d7fd1a5d16.bitwarden.com -carLicense: PGRSVQ -departmentNumber: 1308 -employeeType: Contract -homePhone: +1 804 134-1604 -initials: J. P. -mobile: +1 804 171-7619 -pager: +1 804 106-5134 -roomNumber: 8396 -manager: cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Verena Cadzow,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Olympe Calmejane,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Olympe Calmejane -sn: Calmejane -description: This is Olympe Calmejane's description -facsimileTelephoneNumber: +1 818 650-7170 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 818 579-1225 -title: Associate Management Consultant -userPassword: Password1 -uid: CalmejaO -givenName: Olympe -mail: CalmejaO@9afe54538fed45b288aa10f6ca71fa1c.bitwarden.com -carLicense: R86NE6 -departmentNumber: 1433 -employeeType: Normal -homePhone: +1 818 749-5966 -initials: O. C. -mobile: +1 818 254-3654 -pager: +1 818 119-3862 -roomNumber: 8917 -manager: cn=Emelia McDonough,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Felicdad Thornber,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Felicdad Thornber -sn: Thornber -description: This is Felicdad Thornber's description -facsimileTelephoneNumber: +1 206 944-8959 -l: Cambridge -ou: Peons -postalAddress: Peons$Cambridge -telephoneNumber: +1 206 190-5097 -title: Chief Peons Dictator -userPassword: Password1 -uid: ThornbeF -givenName: Felicdad -mail: ThornbeF@a48701aa8d324e65a88e2c654b93d791.bitwarden.com -carLicense: NTL6T0 -departmentNumber: 3951 -employeeType: Normal -homePhone: +1 206 122-7832 -initials: F. T. -mobile: +1 206 658-1265 -pager: +1 206 783-6124 -roomNumber: 9052 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Pradeep Recktenwald,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pradeep Recktenwald -sn: Recktenwald -description: This is Pradeep Recktenwald's description -facsimileTelephoneNumber: +1 408 799-4522 -l: Palo Alto -ou: Management -postalAddress: Management$Palo Alto -telephoneNumber: +1 408 859-3576 -title: Chief Management Director -userPassword: Password1 -uid: RecktenP -givenName: Pradeep -mail: RecktenP@4a5d6761844a487688a8f353a67dc3a6.bitwarden.com -carLicense: 3TYRYX -departmentNumber: 8461 -employeeType: Contract -homePhone: +1 408 247-4079 -initials: P. R. -mobile: +1 408 414-9905 -pager: +1 408 200-6334 -roomNumber: 9019 -manager: cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Vanya Sherrill,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vanya Sherrill -sn: Sherrill -description: This is Vanya Sherrill's description -facsimileTelephoneNumber: +1 804 123-3366 -l: Cambridge -ou: Administrative -postalAddress: Administrative$Cambridge -telephoneNumber: +1 804 241-1793 -title: Chief Administrative Dictator -userPassword: Password1 -uid: SherrilV -givenName: Vanya -mail: SherrilV@397524543d124dbf9d2177984f3399f5.bitwarden.com -carLicense: IKMASE -departmentNumber: 5804 -employeeType: Contract -homePhone: +1 804 154-2529 -initials: V. S. -mobile: +1 804 689-9126 -pager: +1 804 276-7584 -roomNumber: 9507 -manager: cn=Jany Lotz,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Eula Neault,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Kittie Bangia,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Kittie Bangia -sn: Bangia -description: This is Kittie Bangia's description -facsimileTelephoneNumber: +1 206 260-1352 -l: Milpitas -ou: Peons -postalAddress: Peons$Milpitas -telephoneNumber: +1 206 204-7050 -title: Chief Peons Artist -userPassword: Password1 -uid: BangiaK -givenName: Kittie -mail: BangiaK@aab792405d0e421e9faa1d2235dbde11.bitwarden.com -carLicense: SBOXQB -departmentNumber: 1419 -employeeType: Contract -homePhone: +1 206 381-7082 -initials: K. B. -mobile: +1 206 178-9675 -pager: +1 206 153-4211 -roomNumber: 8347 -manager: cn=Maude Wippel,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Freek Xayaraj,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Freek Xayaraj -sn: Xayaraj -description: This is Freek Xayaraj's description -facsimileTelephoneNumber: +1 415 485-6234 -l: Santa Clara -ou: Product Development -postalAddress: Product Development$Santa Clara -telephoneNumber: +1 415 135-5314 -title: Chief Product Development Consultant -userPassword: Password1 -uid: XayarajF -givenName: Freek -mail: XayarajF@b2d36917909a45fd9de4c6c83faf6196.bitwarden.com -carLicense: H08J82 -departmentNumber: 8369 -employeeType: Normal -homePhone: +1 415 935-4473 -initials: F. X. -mobile: +1 415 562-7150 -pager: +1 415 523-7861 -roomNumber: 9761 -manager: cn=Royce OColmain,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Lethia Godse,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emelina Dotsey,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emelina Dotsey -sn: Dotsey -description: This is Emelina Dotsey's description -facsimileTelephoneNumber: +1 415 592-9083 -l: San Mateo -ou: Payroll -postalAddress: Payroll$San Mateo -telephoneNumber: +1 415 273-8559 -title: Master Payroll Manager -userPassword: Password1 -uid: DotseyE -givenName: Emelina -mail: DotseyE@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com -carLicense: SY4LTP -departmentNumber: 1779 -employeeType: Contract -homePhone: +1 415 344-2557 -initials: E. D. -mobile: +1 415 666-6301 -pager: +1 415 539-3406 -roomNumber: 8139 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Jacob Scss,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Jacob Scss -sn: Scss -description: This is Jacob Scss's description -facsimileTelephoneNumber: +1 408 733-7044 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 408 641-3464 -title: Master Management Consultant -userPassword: Password1 -uid: ScssJ -givenName: Jacob -mail: ScssJ@eb51241312c644a68d6f84102cb2d201.bitwarden.com -carLicense: UR3FN7 -departmentNumber: 2481 -employeeType: Contract -homePhone: +1 408 709-7394 -initials: J. S. -mobile: +1 408 707-6346 -pager: +1 408 610-7878 -roomNumber: 8659 -manager: cn=Penni Sarto,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Becka McConkey,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Nicholas Palasek,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nicholas Palasek -sn: Palasek -description: This is Nicholas Palasek's description -facsimileTelephoneNumber: +1 804 139-8936 -l: Redmond -ou: Product Development -postalAddress: Product Development$Redmond -telephoneNumber: +1 804 551-3781 -title: Chief Product Development Czar -userPassword: Password1 -uid: PalasekN -givenName: Nicholas -mail: PalasekN@f6469cbfb72544718327959dbf443a96.bitwarden.com -carLicense: 7XP9AU -departmentNumber: 9392 -employeeType: Contract -homePhone: +1 804 104-1419 -initials: N. P. -mobile: +1 804 271-4932 -pager: +1 804 161-7688 -roomNumber: 8934 -manager: cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Danica Rubinstein,ou=Management,dc=bitwarden, dc=com - -dn: cn=Business Worsley,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Business Worsley -sn: Worsley -description: This is Business Worsley's description -facsimileTelephoneNumber: +1 415 424-6303 -l: Alameda -ou: Management -postalAddress: Management$Alameda -telephoneNumber: +1 415 761-4948 -title: Associate Management Sales Rep -userPassword: Password1 -uid: WorsleyB -givenName: Business -mail: WorsleyB@400859d9959f4901a5309e45fdb61bf6.bitwarden.com -carLicense: U4SUSD -departmentNumber: 6597 -employeeType: Normal -homePhone: +1 415 256-5777 -initials: B. W. -mobile: +1 415 676-4495 -pager: +1 415 487-4684 -roomNumber: 8576 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Lee Abbott,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Dita Billard,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dita Billard -sn: Billard -description: This is Dita Billard's description -facsimileTelephoneNumber: +1 206 806-6520 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 206 960-4443 -title: Chief Human Resources Engineer -userPassword: Password1 -uid: BillardD -givenName: Dita -mail: BillardD@96a96fd515be425ca19359bc8dcf6a6c.bitwarden.com -carLicense: VRGXDJ -departmentNumber: 3710 -employeeType: Normal -homePhone: +1 206 844-5829 -initials: D. B. -mobile: +1 206 325-3430 -pager: +1 206 601-1737 -roomNumber: 8008 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Bello Madani,ou=Management,dc=bitwarden, dc=com - -dn: cn=Coleman Holman,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coleman Holman -sn: Holman -description: This is Coleman Holman's description -facsimileTelephoneNumber: +1 213 670-6768 -l: Alameda -ou: Human Resources -postalAddress: Human Resources$Alameda -telephoneNumber: +1 213 923-7352 -title: Junior Human Resources Developer -userPassword: Password1 -uid: HolmanC -givenName: Coleman -mail: HolmanC@9fb3bab6a5274e42930ef0c4e486700b.bitwarden.com -carLicense: OEVVP7 -departmentNumber: 3117 -employeeType: Contract -homePhone: +1 213 886-9202 -initials: C. H. -mobile: +1 213 900-2760 -pager: +1 213 611-5998 -roomNumber: 9784 -manager: cn=Ranson Darden,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Judi Nahata,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Elberta Shnider,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elberta Shnider -sn: Shnider -description: This is Elberta Shnider's description -facsimileTelephoneNumber: +1 818 859-7101 -l: Milpitas -ou: Management -postalAddress: Management$Milpitas -telephoneNumber: +1 818 412-9602 -title: Supreme Management Developer -userPassword: Password1 -uid: ShniderE -givenName: Elberta -mail: ShniderE@9aa7896234604e35853331a58b365781.bitwarden.com -carLicense: AB0WYD -departmentNumber: 7691 -employeeType: Contract -homePhone: +1 818 323-9511 -initials: E. S. -mobile: +1 818 499-6429 -pager: +1 818 847-7684 -roomNumber: 9626 -manager: cn=Elsy Sigut,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Sieber Sallee,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Gerrilee Ladd -sn: Ladd -description: This is Gerrilee Ladd's description -facsimileTelephoneNumber: +1 206 100-3194 -l: San Jose -ou: Human Resources -postalAddress: Human Resources$San Jose -telephoneNumber: +1 206 227-7746 -title: Supreme Human Resources Technician -userPassword: Password1 -uid: LaddG -givenName: Gerrilee -mail: LaddG@c3158f1fa2f94243a73d4266ce1cfc71.bitwarden.com -carLicense: XDKYMO -departmentNumber: 5903 -employeeType: Contract -homePhone: +1 206 821-4674 -initials: G. L. -mobile: +1 206 196-7631 -pager: +1 206 628-6102 -roomNumber: 9022 -manager: cn=Nitin Operators,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Zora Weldon,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Judie Buhrkuhl -sn: Buhrkuhl -description: This is Judie Buhrkuhl's description -facsimileTelephoneNumber: +1 408 747-5167 -l: Alameda -ou: Payroll -postalAddress: Payroll$Alameda -telephoneNumber: +1 408 751-7897 -title: Supreme Payroll Visionary -userPassword: Password1 -uid: BuhrkuhJ -givenName: Judie -mail: BuhrkuhJ@bf35e2dd921644e489469fd3b907aac9.bitwarden.com -carLicense: DD9UTB -departmentNumber: 3198 -employeeType: Normal -homePhone: +1 408 366-6365 -initials: J. B. -mobile: +1 408 603-8762 -pager: +1 408 264-1996 -roomNumber: 8256 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Mirabel Queries,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mirabel Queries -sn: Queries -description: This is Mirabel Queries's description -facsimileTelephoneNumber: +1 415 761-4205 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 415 919-2780 -title: Junior Administrative Evangelist -userPassword: Password1 -uid: QueriesM -givenName: Mirabel -mail: QueriesM@d37e812441464f08ac2750e113db6273.bitwarden.com -carLicense: CB5V5G -departmentNumber: 4835 -employeeType: Contract -homePhone: +1 415 190-2525 -initials: M. Q. -mobile: +1 415 217-2485 -pager: +1 415 612-5633 -roomNumber: 8918 -manager: cn=Minne Danker,ou=Management,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Luigi Strayhorn -sn: Strayhorn -description: This is Luigi Strayhorn's description -facsimileTelephoneNumber: +1 415 722-9170 -l: Redwood Shores -ou: Janitorial -postalAddress: Janitorial$Redwood Shores -telephoneNumber: +1 415 218-1507 -title: Master Janitorial Technician -userPassword: Password1 -uid: StrayhoL -givenName: Luigi -mail: StrayhoL@fc3a6a2ed2a041edaaee095273406b72.bitwarden.com -carLicense: 0GQGFB -departmentNumber: 6275 -employeeType: Contract -homePhone: +1 415 115-2368 -initials: L. S. -mobile: +1 415 866-5976 -pager: +1 415 283-4924 -roomNumber: 8200 -manager: cn=Ioana Bresee,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Maurice Wurtz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elvert Dolginoff -sn: Dolginoff -description: This is Elvert Dolginoff's description -facsimileTelephoneNumber: +1 408 941-1526 -l: Armonk -ou: Payroll -postalAddress: Payroll$Armonk -telephoneNumber: +1 408 216-5527 -title: Junior Payroll Stooge -userPassword: Password1 -uid: DolginoE -givenName: Elvert -mail: DolginoE@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com -carLicense: I5NU6S -departmentNumber: 6382 -employeeType: Normal -homePhone: +1 408 580-2161 -initials: E. D. -mobile: +1 408 351-7063 -pager: +1 408 991-4419 -roomNumber: 8343 -manager: cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Arts Marttinen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arts Marttinen -sn: Marttinen -description: This is Arts Marttinen's description -facsimileTelephoneNumber: +1 408 890-8724 -l: Fremont -ou: Payroll -postalAddress: Payroll$Fremont -telephoneNumber: +1 408 894-2795 -title: Master Payroll Janitor -userPassword: Password1 -uid: MarttinA -givenName: Arts -mail: MarttinA@aa04f1225a3142f7b6d7d981c171a9da.bitwarden.com -carLicense: RD9HNU -departmentNumber: 9196 -employeeType: Employee -homePhone: +1 408 690-9732 -initials: A. M. -mobile: +1 408 855-6383 -pager: +1 408 570-4536 -roomNumber: 9853 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Madalyn Timmons,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Velma Goldberg,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Velma Goldberg -sn: Goldberg -description: This is Velma Goldberg's description -facsimileTelephoneNumber: +1 804 300-8907 -l: Menlo Park -ou: Product Development -postalAddress: Product Development$Menlo Park -telephoneNumber: +1 804 811-6715 -title: Master Product Development Assistant -userPassword: Password1 -uid: GoldberV -givenName: Velma -mail: GoldberV@f282bdd196b049c89323e32ec5a7899a.bitwarden.com -carLicense: UMW0FE -departmentNumber: 8266 -employeeType: Contract -homePhone: +1 804 166-9058 -initials: V. G. -mobile: +1 804 458-1390 -pager: +1 804 512-1480 -roomNumber: 9138 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Anet Sanity,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Anet Sanity -sn: Sanity -description: This is Anet Sanity's description -facsimileTelephoneNumber: +1 206 238-5733 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 206 448-7599 -title: Chief Peons Grunt -userPassword: Password1 -uid: SanityA -givenName: Anet -mail: SanityA@8be534402b894a65896ab57da74025f9.bitwarden.com -carLicense: 8NRE8T -departmentNumber: 3439 -employeeType: Normal -homePhone: +1 206 213-6677 -initials: A. S. -mobile: +1 206 719-8676 -pager: +1 206 902-1799 -roomNumber: 9522 -manager: cn=Lysy Halicki,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Marinna Drane,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Pars Events,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Pars Events -sn: Events -description: This is Pars Events's description -facsimileTelephoneNumber: +1 213 521-2769 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 229-1039 -title: Supreme Administrative Sales Rep -userPassword: Password1 -uid: EventsP -givenName: Pars -mail: EventsP@e713d665881b44ac9ce046c8aa4c6aed.bitwarden.com -carLicense: BELI9C -departmentNumber: 4075 -employeeType: Normal -homePhone: +1 213 153-2978 -initials: P. E. -mobile: +1 213 366-2349 -pager: +1 213 247-2108 -roomNumber: 8253 -manager: cn=Susanne Keates,ou=Management,dc=bitwarden, dc=com -secretary: cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Wilow Veloz,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Wilow Veloz -sn: Veloz -description: This is Wilow Veloz's description -facsimileTelephoneNumber: +1 415 245-1669 -l: Sunnyvale -ou: Payroll -postalAddress: Payroll$Sunnyvale -telephoneNumber: +1 415 567-3346 -title: Chief Payroll Mascot -userPassword: Password1 -uid: VelozW -givenName: Wilow -mail: VelozW@a58a307053124302a6ca25cc3c4fe9ad.bitwarden.com -carLicense: QVNIO8 -departmentNumber: 7235 -employeeType: Contract -homePhone: +1 415 206-4371 -initials: W. V. -mobile: +1 415 514-7227 -pager: +1 415 789-9554 -roomNumber: 8056 -manager: cn=Frances Yvon,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Grayce Dunnion,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Grayce Dunnion -sn: Dunnion -description: This is Grayce Dunnion's description -facsimileTelephoneNumber: +1 213 538-1964 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 213 844-7334 -title: Chief Management Sales Rep -userPassword: Password1 -uid: DunnionG -givenName: Grayce -mail: DunnionG@fc6babf36ff04b1ba708df129305676b.bitwarden.com -carLicense: Y8SR2T -departmentNumber: 9913 -employeeType: Employee -homePhone: +1 213 824-5505 -initials: G. D. -mobile: +1 213 369-8419 -pager: +1 213 916-9611 -roomNumber: 9358 -manager: cn=Elane Boggia,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Gillie Dedas,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Starlin Schrader,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Starlin Schrader -sn: Schrader -description: This is Starlin Schrader's description -facsimileTelephoneNumber: +1 510 501-2009 -l: Milpitas -ou: Janitorial -postalAddress: Janitorial$Milpitas -telephoneNumber: +1 510 310-5809 -title: Junior Janitorial Pinhead -userPassword: Password1 -uid: SchradeS -givenName: Starlin -mail: SchradeS@d0d4dffbb82e4dbdbf12aa7aeb40f542.bitwarden.com -carLicense: L12RJC -departmentNumber: 3639 -employeeType: Normal -homePhone: +1 510 895-1056 -initials: S. S. -mobile: +1 510 594-4702 -pager: +1 510 881-1396 -roomNumber: 8966 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Verene Rigstad,ou=Management,dc=bitwarden, dc=com - -dn: cn=Desire Nagle,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Desire Nagle -sn: Nagle -description: This is Desire Nagle's description -facsimileTelephoneNumber: +1 206 502-8543 -l: Cambridge -ou: Janitorial -postalAddress: Janitorial$Cambridge -telephoneNumber: +1 206 844-8889 -title: Associate Janitorial Madonna -userPassword: Password1 -uid: NagleD -givenName: Desire -mail: NagleD@fdf7c005242c47b4bd750584e7c3c19c.bitwarden.com -carLicense: HLRQ99 -departmentNumber: 2443 -employeeType: Employee -homePhone: +1 206 124-6500 -initials: D. N. -mobile: +1 206 182-7327 -pager: +1 206 672-8811 -roomNumber: 9211 -manager: cn=Corly Tesch,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Den Ormesher,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Shaylah Haertel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Shaylah Haertel -sn: Haertel -description: This is Shaylah Haertel's description -facsimileTelephoneNumber: +1 818 157-3854 -l: Fremont -ou: Administrative -postalAddress: Administrative$Fremont -telephoneNumber: +1 818 180-1240 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: HaertelS -givenName: Shaylah -mail: HaertelS@cb3d55c1f17a445fad106ff05cef5824.bitwarden.com -carLicense: KFPC7H -departmentNumber: 8369 -employeeType: Normal -homePhone: +1 818 819-4067 -initials: S. H. -mobile: +1 818 961-3626 -pager: +1 818 910-9807 -roomNumber: 8773 -manager: cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Catherin Witzman,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tomi LaFargue,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tomi LaFargue -sn: LaFargue -description: This is Tomi LaFargue's description -facsimileTelephoneNumber: +1 408 517-3025 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 408 456-6432 -title: Associate Management Vice President -userPassword: Password1 -uid: LaFarguT -givenName: Tomi -mail: LaFarguT@47b3a42002e74101b1c82f87517bcbef.bitwarden.com -carLicense: WM3Y1W -departmentNumber: 5861 -employeeType: Contract -homePhone: +1 408 466-1784 -initials: T. L. -mobile: +1 408 454-4824 -pager: +1 408 102-3647 -roomNumber: 9946 -manager: cn=Randene Wintour,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Paulo Whidden,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Willard Kammerer,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Willard Kammerer -sn: Kammerer -description: This is Willard Kammerer's description -facsimileTelephoneNumber: +1 510 728-8286 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 510 335-9481 -title: Supreme Peons Manager -userPassword: Password1 -uid: KammereW -givenName: Willard -mail: KammereW@1ee81678c18a401888dd91f025f34959.bitwarden.com -carLicense: 03UAC2 -departmentNumber: 4865 -employeeType: Contract -homePhone: +1 510 816-3785 -initials: W. K. -mobile: +1 510 741-9257 -pager: +1 510 375-5541 -roomNumber: 8011 -manager: cn=Kaia Archer,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Tyronda Wippel,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tyronda Wippel -sn: Wippel -description: This is Tyronda Wippel's description -facsimileTelephoneNumber: +1 206 201-3727 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 206 134-6357 -title: Chief Administrative Mascot -userPassword: Password1 -uid: WippelT -givenName: Tyronda -mail: WippelT@4ec22cc100774410b5e1902a4221791b.bitwarden.com -carLicense: 7VMFD4 -departmentNumber: 6845 -employeeType: Employee -homePhone: +1 206 569-6835 -initials: T. W. -mobile: +1 206 785-8568 -pager: +1 206 839-7743 -roomNumber: 8002 -manager: cn=Dino Kurauchi,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carmina Fulmer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carmina Fulmer -sn: Fulmer -description: This is Carmina Fulmer's description -facsimileTelephoneNumber: +1 804 611-2967 -l: Orem -ou: Management -postalAddress: Management$Orem -telephoneNumber: +1 804 633-6806 -title: Supreme Management Sales Rep -userPassword: Password1 -uid: FulmerC -givenName: Carmina -mail: FulmerC@31bdf3f083274a9a823bbf5bbd24461a.bitwarden.com -carLicense: NVD9DK -departmentNumber: 1749 -employeeType: Normal -homePhone: +1 804 664-9789 -initials: C. F. -mobile: +1 804 289-4256 -pager: +1 804 867-8375 -roomNumber: 8059 -manager: cn=Magdalen Howe,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Cassey Papp,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tricord Mullinix -sn: Mullinix -description: This is Tricord Mullinix's description -facsimileTelephoneNumber: +1 213 623-9339 -l: Menlo Park -ou: Product Testing -postalAddress: Product Testing$Menlo Park -telephoneNumber: +1 213 956-7305 -title: Chief Product Testing Visionary -userPassword: Password1 -uid: MulliniT -givenName: Tricord -mail: MulliniT@14182a5bfd714b33b79ce62ac2db69ad.bitwarden.com -carLicense: TSEQ6D -departmentNumber: 2554 -employeeType: Employee -homePhone: +1 213 570-8765 -initials: T. M. -mobile: +1 213 919-1702 -pager: +1 213 606-4465 -roomNumber: 9228 -manager: cn=Zonda Keyes,ou=Management,dc=bitwarden, dc=com -secretary: cn=Ede Riggins,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: LyKhanh Sumpter -sn: Sumpter -description: This is LyKhanh Sumpter's description -facsimileTelephoneNumber: +1 818 979-5313 -l: Redmond -ou: Peons -postalAddress: Peons$Redmond -telephoneNumber: +1 818 192-3676 -title: Junior Peons Assistant -userPassword: Password1 -uid: SumpterL -givenName: LyKhanh -mail: SumpterL@48f0936a82dc447d9d8007505168b4a9.bitwarden.com -carLicense: GXL8E3 -departmentNumber: 3331 -employeeType: Normal -homePhone: +1 818 873-5120 -initials: L. S. -mobile: +1 818 736-6149 -pager: +1 818 633-5188 -roomNumber: 9329 -manager: cn=Jagat Beato,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Christal Logan,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Sukey Sato,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Sukey Sato -sn: Sato -description: This is Sukey Sato's description -facsimileTelephoneNumber: +1 206 328-6759 -l: Armonk -ou: Human Resources -postalAddress: Human Resources$Armonk -telephoneNumber: +1 206 172-8138 -title: Chief Human Resources Dictator -userPassword: Password1 -uid: SatoS -givenName: Sukey -mail: SatoS@c13dcfb6eda14d3a8fe16fc4279da963.bitwarden.com -carLicense: GU3LBQ -departmentNumber: 4589 -employeeType: Contract -homePhone: +1 206 165-4259 -initials: S. S. -mobile: +1 206 985-6366 -pager: +1 206 645-6537 -roomNumber: 9869 -manager: cn=Minnnie Hough,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Coletta Malkiewicz -sn: Malkiewicz -description: This is Coletta Malkiewicz's description -facsimileTelephoneNumber: +1 510 764-5623 -l: Santa Clara -ou: Peons -postalAddress: Peons$Santa Clara -telephoneNumber: +1 510 515-1259 -title: Chief Peons Pinhead -userPassword: Password1 -uid: MalkiewC -givenName: Coletta -mail: MalkiewC@10a46cb8875644479396c1c5e3228c3c.bitwarden.com -carLicense: UVSG6Y -departmentNumber: 6358 -employeeType: Employee -homePhone: +1 510 451-9487 -initials: C. M. -mobile: +1 510 514-2516 -pager: +1 510 716-3390 -roomNumber: 9947 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lawrence Perrella,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lawrence Perrella -sn: Perrella -description: This is Lawrence Perrella's description -facsimileTelephoneNumber: +1 408 163-4174 -l: Orem -ou: Peons -postalAddress: Peons$Orem -telephoneNumber: +1 408 258-6870 -title: Junior Peons Artist -userPassword: Password1 -uid: PerrellL -givenName: Lawrence -mail: PerrellL@95a30cb6b6df4f6cbb4f3a7dd5e82fb6.bitwarden.com -carLicense: XMQVH0 -departmentNumber: 6446 -employeeType: Contract -homePhone: +1 408 775-4970 -initials: L. P. -mobile: +1 408 171-1699 -pager: +1 408 226-7564 -roomNumber: 9351 -manager: cn=Sonny Creamer,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Fabien Klapper,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Nathan Trumble,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Nathan Trumble -sn: Trumble -description: This is Nathan Trumble's description -facsimileTelephoneNumber: +1 415 110-8403 -l: Cambridge -ou: Product Development -postalAddress: Product Development$Cambridge -telephoneNumber: +1 415 120-9279 -title: Junior Product Development Assistant -userPassword: Password1 -uid: TrumbleN -givenName: Nathan -mail: TrumbleN@dfa5577bb9624995ab3eb6b74bc12412.bitwarden.com -carLicense: EOT73K -departmentNumber: 7380 -employeeType: Contract -homePhone: +1 415 214-1074 -initials: N. T. -mobile: +1 415 389-2806 -pager: +1 415 651-4210 -roomNumber: 8292 -manager: cn=Donal Kashaninia,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Willa Mikelonis,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: ShenZhi Stratton -sn: Stratton -description: This is ShenZhi Stratton's description -facsimileTelephoneNumber: +1 415 635-1785 -l: Redmond -ou: Human Resources -postalAddress: Human Resources$Redmond -telephoneNumber: +1 415 873-6807 -title: Junior Human Resources Architect -userPassword: Password1 -uid: StrattoS -givenName: ShenZhi -mail: StrattoS@683112f18e2b4c49865ce3f726ce15d9.bitwarden.com -carLicense: TOIMJ1 -departmentNumber: 6114 -employeeType: Normal -homePhone: +1 415 731-1669 -initials: S. S. -mobile: +1 415 774-8750 -pager: +1 415 405-6514 -roomNumber: 9377 -manager: cn=Sigrid Strock,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Kathrine Schejbal,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Noslab Gribbons,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Noslab Gribbons -sn: Gribbons -description: This is Noslab Gribbons's description -facsimileTelephoneNumber: +1 415 943-8706 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 415 132-5400 -title: Chief Product Development Dictator -userPassword: Password1 -uid: GribbonN -givenName: Noslab -mail: GribbonN@939ff1674a5f4554858a2fd6d59c6ec0.bitwarden.com -carLicense: 03F6WK -departmentNumber: 1869 -employeeType: Contract -homePhone: +1 415 897-1958 -initials: N. G. -mobile: +1 415 109-2096 -pager: +1 415 139-6281 -roomNumber: 9968 -manager: cn=Odelle Translations,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Koray Vasiliadis,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alleen Czarnecki -sn: Czarnecki -description: This is Alleen Czarnecki's description -facsimileTelephoneNumber: +1 818 377-2124 -l: Milpitas -ou: Administrative -postalAddress: Administrative$Milpitas -telephoneNumber: +1 818 583-6612 -title: Associate Administrative Sales Rep -userPassword: Password1 -uid: CzarnecA -givenName: Alleen -mail: CzarnecA@33f3610924fd40f8baab137780c1a3cc.bitwarden.com -carLicense: 5NHRGP -departmentNumber: 5084 -employeeType: Contract -homePhone: +1 818 907-4162 -initials: A. C. -mobile: +1 818 734-9806 -pager: +1 818 649-3013 -roomNumber: 8410 -manager: cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Chandra Pawlikowski -sn: Pawlikowski -description: This is Chandra Pawlikowski's description -facsimileTelephoneNumber: +1 804 483-1317 -l: San Francisco -ou: Peons -postalAddress: Peons$San Francisco -telephoneNumber: +1 804 757-5512 -title: Associate Peons Visionary -userPassword: Password1 -uid: PawlikoC -givenName: Chandra -mail: PawlikoC@8415106c9bc644ca88df9b8987cb1aef.bitwarden.com -carLicense: N1KHDD -departmentNumber: 2850 -employeeType: Normal -homePhone: +1 804 799-9838 -initials: C. P. -mobile: +1 804 587-1022 -pager: +1 804 611-9121 -roomNumber: 9431 -manager: cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Brigitta Ipadmin,ou=Management,dc=bitwarden, dc=com - -dn: cn=Alayne Jurman,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Alayne Jurman -sn: Jurman -description: This is Alayne Jurman's description -facsimileTelephoneNumber: +1 206 614-9978 -l: Palo Alto -ou: Peons -postalAddress: Peons$Palo Alto -telephoneNumber: +1 206 126-8160 -title: Associate Peons Writer -userPassword: Password1 -uid: JurmanA -givenName: Alayne -mail: JurmanA@6a21fb77585b45b89d50ed136958d009.bitwarden.com -carLicense: ACBF4W -departmentNumber: 3004 -employeeType: Employee -homePhone: +1 206 276-3416 -initials: A. J. -mobile: +1 206 754-8086 -pager: +1 206 307-9968 -roomNumber: 9764 -manager: cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Valry Agnihotri,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Ashlee Lamey,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Ashlee Lamey -sn: Lamey -description: This is Ashlee Lamey's description -facsimileTelephoneNumber: +1 213 237-8155 -l: Redwood Shores -ou: Peons -postalAddress: Peons$Redwood Shores -telephoneNumber: +1 213 751-4119 -title: Junior Peons Fellow -userPassword: Password1 -uid: LameyA -givenName: Ashlee -mail: LameyA@2ea5cd05f7bb4e668e89ea0ce9ab618b.bitwarden.com -carLicense: 9Y3LNJ -departmentNumber: 3621 -employeeType: Contract -homePhone: +1 213 706-5357 -initials: A. L. -mobile: +1 213 370-4014 -pager: +1 213 329-9828 -roomNumber: 8548 -manager: cn=Milissent Bowes,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Ettie Sils,ou=Management,dc=bitwarden, dc=com - -dn: cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zena Lakshminarayan -sn: Lakshminarayan -description: This is Zena Lakshminarayan's description -facsimileTelephoneNumber: +1 818 146-4633 -l: Milpitas -ou: Product Development -postalAddress: Product Development$Milpitas -telephoneNumber: +1 818 990-2628 -title: Junior Product Development Writer -userPassword: Password1 -uid: LakshmiZ -givenName: Zena -mail: LakshmiZ@2e06903f00cc4bf8844eeda994fe2f9b.bitwarden.com -carLicense: JXRFJK -departmentNumber: 9724 -employeeType: Employee -homePhone: +1 818 841-7165 -initials: Z. L. -mobile: +1 818 470-2940 -pager: +1 818 210-9277 -roomNumber: 8055 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Mahmoud Namiki,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Miquela Gilles,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Miquela Gilles -sn: Gilles -description: This is Miquela Gilles's description -facsimileTelephoneNumber: +1 510 736-8474 -l: Alameda -ou: Peons -postalAddress: Peons$Alameda -telephoneNumber: +1 510 146-9220 -title: Junior Peons Developer -userPassword: Password1 -uid: GillesM -givenName: Miquela -mail: GillesM@87d2a0e0ce5644aa904b7d1121de84a3.bitwarden.com -carLicense: TE1OF0 -departmentNumber: 4690 -employeeType: Contract -homePhone: +1 510 121-7099 -initials: M. G. -mobile: +1 510 916-6777 -pager: +1 510 282-6450 -roomNumber: 9819 -manager: cn=Antonia Killam,ou=Management,dc=bitwarden, dc=com -secretary: cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Arlana Ghani,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Arlana Ghani -sn: Ghani -description: This is Arlana Ghani's description -facsimileTelephoneNumber: +1 206 792-9054 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 206 839-7272 -title: Junior Management Warrior -userPassword: Password1 -uid: GhaniA -givenName: Arlana -mail: GhaniA@5464c7892e2c49b9ab8b77fcfa248401.bitwarden.com -carLicense: XL9RBN -departmentNumber: 3926 -employeeType: Contract -homePhone: +1 206 778-3747 -initials: A. G. -mobile: +1 206 673-9027 -pager: +1 206 679-5050 -roomNumber: 8525 -manager: cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Denny Worpell,ou=Management,dc=bitwarden, dc=com - -dn: cn=Avinash Rospars,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Avinash Rospars -sn: Rospars -description: This is Avinash Rospars's description -facsimileTelephoneNumber: +1 213 622-4998 -l: San Jose -ou: Product Development -postalAddress: Product Development$San Jose -telephoneNumber: +1 213 852-4803 -title: Supreme Product Development Evangelist -userPassword: Password1 -uid: RosparsA -givenName: Avinash -mail: RosparsA@d9e32d7c83eb4ccf8004a41c9874f6a2.bitwarden.com -carLicense: V2M5OL -departmentNumber: 8472 -employeeType: Normal -homePhone: +1 213 345-4186 -initials: A. R. -mobile: +1 213 821-4088 -pager: +1 213 185-9126 -roomNumber: 9952 -manager: cn=Jenson Yabe,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Laureen Ladet,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Raman Reporting,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Raman Reporting -sn: Reporting -description: This is Raman Reporting's description -facsimileTelephoneNumber: +1 818 648-2666 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 818 856-9774 -title: Junior Management Artist -userPassword: Password1 -uid: ReportiR -givenName: Raman -mail: ReportiR@58d046473fe24d0d8bf6f510239a1102.bitwarden.com -carLicense: NK9ROO -departmentNumber: 1094 -employeeType: Normal -homePhone: +1 818 980-2427 -initials: R. R. -mobile: +1 818 513-7784 -pager: +1 818 701-1947 -roomNumber: 8218 -manager: cn=Dallas Gulick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Canute Fran,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Akemi Abdulla -sn: Abdulla -description: This is Akemi Abdulla's description -facsimileTelephoneNumber: +1 510 442-5114 -l: San Mateo -ou: Product Testing -postalAddress: Product Testing$San Mateo -telephoneNumber: +1 510 189-5850 -title: Supreme Product Testing Madonna -userPassword: Password1 -uid: AbdullaA -givenName: Akemi -mail: AbdullaA@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com -carLicense: 9HHTSE -departmentNumber: 8081 -employeeType: Normal -homePhone: +1 510 163-2507 -initials: A. A. -mobile: +1 510 241-4917 -pager: +1 510 299-3291 -roomNumber: 9670 -manager: cn=Othelia Solodko,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rieni Faley,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Vince Dallal,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Vince Dallal -sn: Dallal -description: This is Vince Dallal's description -facsimileTelephoneNumber: +1 510 684-9479 -l: San Mateo -ou: Janitorial -postalAddress: Janitorial$San Mateo -telephoneNumber: +1 510 392-5237 -title: Master Janitorial Architect -userPassword: Password1 -uid: DallalV -givenName: Vince -mail: DallalV@75bd7d8bfac045f4b199b40359d5079a.bitwarden.com -carLicense: ESUK3H -departmentNumber: 5471 -employeeType: Contract -homePhone: +1 510 738-4108 -initials: V. D. -mobile: +1 510 214-7285 -pager: +1 510 664-6308 -roomNumber: 8047 -manager: cn=Nedi Siegel,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Liza Gumb,ou=Management,dc=bitwarden, dc=com - -dn: cn=Leanne Gorfine,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Leanne Gorfine -sn: Gorfine -description: This is Leanne Gorfine's description -facsimileTelephoneNumber: +1 818 265-2772 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 818 463-1781 -title: Associate Product Development Artist -userPassword: Password1 -uid: GorfineL -givenName: Leanne -mail: GorfineL@c4b901cf01964b3f995f83f754a51496.bitwarden.com -carLicense: NX2U4N -departmentNumber: 5026 -employeeType: Normal -homePhone: +1 818 336-7277 -initials: L. G. -mobile: +1 818 104-2897 -pager: +1 818 661-4233 -roomNumber: 8585 -manager: cn=WaiChau McHale,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Satyajit Bourbonnais -sn: Bourbonnais -description: This is Satyajit Bourbonnais's description -facsimileTelephoneNumber: +1 818 870-1334 -l: Sunnyvale -ou: Product Testing -postalAddress: Product Testing$Sunnyvale -telephoneNumber: +1 818 251-3509 -title: Master Product Testing Artist -userPassword: Password1 -uid: BourbonS -givenName: Satyajit -mail: BourbonS@dce637b43f194588ba44f478eabb0b1d.bitwarden.com -carLicense: LCE309 -departmentNumber: 3105 -employeeType: Employee -homePhone: +1 818 268-3769 -initials: S. B. -mobile: +1 818 280-1774 -pager: +1 818 516-7077 -roomNumber: 9627 -manager: cn=Sickle Hartley,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Shamim Pospisil,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Corinna Bashyam,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Corinna Bashyam -sn: Bashyam -description: This is Corinna Bashyam's description -facsimileTelephoneNumber: +1 818 906-7811 -l: San Jose -ou: Payroll -postalAddress: Payroll$San Jose -telephoneNumber: +1 818 189-8362 -title: Supreme Payroll Artist -userPassword: Password1 -uid: BashyamC -givenName: Corinna -mail: BashyamC@537a7fb8e8084a50ad524dcf8366437e.bitwarden.com -carLicense: 86WLBJ -departmentNumber: 6860 -employeeType: Contract -homePhone: +1 818 804-3996 -initials: C. B. -mobile: +1 818 142-6873 -pager: +1 818 341-1587 -roomNumber: 9424 -manager: cn=Georgette Manica,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Carlyn Braaksma -sn: Braaksma -description: This is Carlyn Braaksma's description -facsimileTelephoneNumber: +1 510 110-8335 -l: Menlo Park -ou: Payroll -postalAddress: Payroll$Menlo Park -telephoneNumber: +1 510 540-9328 -title: Master Payroll Artist -userPassword: Password1 -uid: BraaksmC -givenName: Carlyn -mail: BraaksmC@971b6275e2eb43e286f57ac3cf73eb02.bitwarden.com -carLicense: UCIIR3 -departmentNumber: 4334 -employeeType: Contract -homePhone: +1 510 281-9465 -initials: C. B. -mobile: +1 510 554-1840 -pager: +1 510 929-8543 -roomNumber: 9717 -manager: cn=Marion Commons,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Panch Sziladi,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Etta Medlin,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Etta Medlin -sn: Medlin -description: This is Etta Medlin's description -facsimileTelephoneNumber: +1 206 697-6267 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 206 711-2252 -title: Junior Payroll Engineer -userPassword: Password1 -uid: MedlinE -givenName: Etta -mail: MedlinE@de77b93d37dd4a028afd3b2ff785ef86.bitwarden.com -carLicense: 5KKNHH -departmentNumber: 8596 -employeeType: Employee -homePhone: +1 206 810-9232 -initials: E. M. -mobile: +1 206 405-6532 -pager: +1 206 897-8035 -roomNumber: 8148 -manager: cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Cherye Tanner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Robinia Hammonds -sn: Hammonds -description: This is Robinia Hammonds's description -facsimileTelephoneNumber: +1 510 384-9822 -l: Orem -ou: Product Testing -postalAddress: Product Testing$Orem -telephoneNumber: +1 510 288-4510 -title: Master Product Testing Madonna -userPassword: Password1 -uid: HammondR -givenName: Robinia -mail: HammondR@3d8456e2419f4f54a124d2319bee4b8e.bitwarden.com -carLicense: 61OGQU -departmentNumber: 6369 -employeeType: Employee -homePhone: +1 510 709-8239 -initials: R. H. -mobile: +1 510 464-3424 -pager: +1 510 130-9049 -roomNumber: 9660 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=YuHung Marting,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zsazsa Sebeh -sn: Sebeh -description: This is Zsazsa Sebeh's description -facsimileTelephoneNumber: +1 415 616-4827 -l: Santa Clara -ou: Administrative -postalAddress: Administrative$Santa Clara -telephoneNumber: +1 415 383-2373 -title: Associate Administrative Consultant -userPassword: Password1 -uid: SebehZ -givenName: Zsazsa -mail: SebehZ@1c7214ddcee648aeb2dd535a7efb20fc.bitwarden.com -carLicense: NKM1I4 -departmentNumber: 8488 -employeeType: Normal -homePhone: +1 415 689-9052 -initials: Z. S. -mobile: +1 415 349-9869 -pager: +1 415 689-6650 -roomNumber: 8926 -manager: cn=Otha Mousseau,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Stew Chopowick,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Stew Chopowick -sn: Chopowick -description: This is Stew Chopowick's description -facsimileTelephoneNumber: +1 213 533-3216 -l: Redwood Shores -ou: Administrative -postalAddress: Administrative$Redwood Shores -telephoneNumber: +1 213 470-1853 -title: Junior Administrative Artist -userPassword: Password1 -uid: ChopowiS -givenName: Stew -mail: ChopowiS@7179efeeba4d4c0496c30132c2185e2b.bitwarden.com -carLicense: VVVOD2 -departmentNumber: 1805 -employeeType: Employee -homePhone: +1 213 452-5521 -initials: S. C. -mobile: +1 213 421-6978 -pager: +1 213 482-1881 -roomNumber: 9486 -manager: cn=Dorena Godina,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brigitta Ribaldo -sn: Ribaldo -description: This is Brigitta Ribaldo's description -facsimileTelephoneNumber: +1 206 690-2261 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 206 979-5703 -title: Junior Administrative Stooge -userPassword: Password1 -uid: RibaldoB -givenName: Brigitta -mail: RibaldoB@0bf16d212dca48d58b5ba2e7e2475978.bitwarden.com -carLicense: 8HCE43 -departmentNumber: 4431 -employeeType: Normal -homePhone: +1 206 941-4343 -initials: B. R. -mobile: +1 206 488-3243 -pager: +1 206 702-9025 -roomNumber: 8144 -manager: cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Larissa Gillette,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Josie Clysdale,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Josie Clysdale -sn: Clysdale -description: This is Josie Clysdale's description -facsimileTelephoneNumber: +1 818 289-8222 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 818 247-9493 -title: Supreme Administrative Warrior -userPassword: Password1 -uid: ClysdalJ -givenName: Josie -mail: ClysdalJ@2d39ed714c62438fae50357ee6eb38cf.bitwarden.com -carLicense: LS7WPA -departmentNumber: 9228 -employeeType: Normal -homePhone: +1 818 418-8157 -initials: J. C. -mobile: +1 818 326-2619 -pager: +1 818 779-7498 -roomNumber: 9603 -manager: cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Caralie Ferner,ou=Management,dc=bitwarden, dc=com - -dn: cn=Moyna Rolph,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Moyna Rolph -sn: Rolph -description: This is Moyna Rolph's description -facsimileTelephoneNumber: +1 408 824-6843 -l: San Francisco -ou: Payroll -postalAddress: Payroll$San Francisco -telephoneNumber: +1 408 644-3441 -title: Junior Payroll Architect -userPassword: Password1 -uid: RolphM -givenName: Moyna -mail: RolphM@50d89f8e16e348cfb044b13e46694d6c.bitwarden.com -carLicense: OF76U2 -departmentNumber: 7190 -employeeType: Normal -homePhone: +1 408 699-6960 -initials: M. R. -mobile: +1 408 508-6592 -pager: +1 408 300-9293 -roomNumber: 9795 -manager: cn=Lynna Elsing,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Valencia Claise,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Roze Wiebe,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Roze Wiebe -sn: Wiebe -description: This is Roze Wiebe's description -facsimileTelephoneNumber: +1 818 222-3389 -l: Cambridge -ou: Human Resources -postalAddress: Human Resources$Cambridge -telephoneNumber: +1 818 955-9282 -title: Master Human Resources Sales Rep -userPassword: Password1 -uid: WiebeR -givenName: Roze -mail: WiebeR@c82bc1c119194cf1a43f9559e17d2471.bitwarden.com -carLicense: YE7SXM -departmentNumber: 7309 -employeeType: Employee -homePhone: +1 818 780-6171 -initials: R. W. -mobile: +1 818 572-4316 -pager: +1 818 881-4097 -roomNumber: 9126 -manager: cn=Pal Burchby,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Dix NeKueey,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Khai Habelrih,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Khai Habelrih -sn: Habelrih -description: This is Khai Habelrih's description -facsimileTelephoneNumber: +1 510 616-3399 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 510 606-8318 -title: Associate Administrative Fellow -userPassword: Password1 -uid: HabelriK -givenName: Khai -mail: HabelriK@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com -carLicense: FO4RDN -departmentNumber: 7508 -employeeType: Employee -homePhone: +1 510 420-7111 -initials: K. H. -mobile: +1 510 605-3841 -pager: +1 510 118-3456 -roomNumber: 9587 -manager: cn=Vina McKie,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Franz Kosasih,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=How Zisu,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: How Zisu -sn: Zisu -description: This is How Zisu's description -facsimileTelephoneNumber: +1 408 355-8972 -l: Redmond -ou: Janitorial -postalAddress: Janitorial$Redmond -telephoneNumber: +1 408 546-5710 -title: Master Janitorial Pinhead -userPassword: Password1 -uid: ZisuH -givenName: How -mail: ZisuH@bdcc53d4f0d44402a52a4e37b6a55cb6.bitwarden.com -carLicense: 2VWPAP -departmentNumber: 2467 -employeeType: Contract -homePhone: +1 408 841-3167 -initials: H. Z. -mobile: +1 408 675-3840 -pager: +1 408 312-3036 -roomNumber: 8362 -manager: cn=Wynne Clow,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Nickie Acree,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Manimozhi Waddick -sn: Waddick -description: This is Manimozhi Waddick's description -facsimileTelephoneNumber: +1 213 628-2960 -l: Redmond -ou: Payroll -postalAddress: Payroll$Redmond -telephoneNumber: +1 213 437-6864 -title: Supreme Payroll Admin -userPassword: Password1 -uid: WaddickM -givenName: Manimozhi -mail: WaddickM@3d584c1804c549129f374b5c39437b16.bitwarden.com -carLicense: F8YQGR -departmentNumber: 2833 -employeeType: Contract -homePhone: +1 213 961-4318 -initials: M. W. -mobile: +1 213 660-4260 -pager: +1 213 930-5067 -roomNumber: 8491 -manager: cn=Rubetta Altman,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Katey Carkner,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Morena Zeggil,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Morena Zeggil -sn: Zeggil -description: This is Morena Zeggil's description -facsimileTelephoneNumber: +1 818 112-2880 -l: Orem -ou: Product Development -postalAddress: Product Development$Orem -telephoneNumber: +1 818 397-1996 -title: Junior Product Development Admin -userPassword: Password1 -uid: ZeggilM -givenName: Morena -mail: ZeggilM@9b4c46b33b054223bd92a713c0feadad.bitwarden.com -carLicense: 2LETXW -departmentNumber: 3635 -employeeType: Employee -homePhone: +1 818 408-2461 -initials: M. Z. -mobile: +1 818 640-3632 -pager: +1 818 665-4148 -roomNumber: 9954 -manager: cn=Fanchette Zaman,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Tanitansy Thibon,ou=Management,dc=bitwarden, dc=com - -dn: cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Maitilde Ricketts -sn: Ricketts -description: This is Maitilde Ricketts's description -facsimileTelephoneNumber: +1 415 247-2259 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 415 634-7542 -title: Associate Product Testing Vice President -userPassword: Password1 -uid: RickettM -givenName: Maitilde -mail: RickettM@f07caf5199104113b8565ebc43aef936.bitwarden.com -carLicense: H28J0X -departmentNumber: 4776 -employeeType: Employee -homePhone: +1 415 385-3446 -initials: M. R. -mobile: +1 415 945-4773 -pager: +1 415 845-2919 -roomNumber: 9907 -manager: cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tayeb Castonguay -sn: Castonguay -description: This is Tayeb Castonguay's description -facsimileTelephoneNumber: +1 510 389-3108 -l: Armonk -ou: Administrative -postalAddress: Administrative$Armonk -telephoneNumber: +1 510 837-4463 -title: Junior Administrative Stooge -userPassword: Password1 -uid: CastongT -givenName: Tayeb -mail: CastongT@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com -carLicense: KX9KMT -departmentNumber: 1442 -employeeType: Normal -homePhone: +1 510 155-4378 -initials: T. C. -mobile: +1 510 549-3955 -pager: +1 510 726-1636 -roomNumber: 9378 -manager: cn=Dacia Colterman,ou=Human Resources,dc=bitwarden, dc=com -secretary: cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Aprilette Iarocci -sn: Iarocci -description: This is Aprilette Iarocci's description -facsimileTelephoneNumber: +1 213 432-8530 -l: Orem -ou: Janitorial -postalAddress: Janitorial$Orem -telephoneNumber: +1 213 208-6105 -title: Master Janitorial Admin -userPassword: Password1 -uid: IarocciA -givenName: Aprilette -mail: IarocciA@c5e55ae911a448dbaf1704a805131e06.bitwarden.com -carLicense: R85MMV -departmentNumber: 8056 -employeeType: Contract -homePhone: +1 213 623-2233 -initials: A. I. -mobile: +1 213 596-8699 -pager: +1 213 495-7877 -roomNumber: 9814 -manager: cn=Maddy Beausejour,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Shamshad Kuntova,ou=Management,dc=bitwarden, dc=com - -dn: cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Schouwen Boeyen -sn: Boeyen -description: This is Schouwen Boeyen's description -facsimileTelephoneNumber: +1 213 575-8138 -l: Palo Alto -ou: Payroll -postalAddress: Payroll$Palo Alto -telephoneNumber: +1 213 826-2820 -title: Junior Payroll Assistant -userPassword: Password1 -uid: BoeyenS -givenName: Schouwen -mail: BoeyenS@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com -carLicense: 21J80U -departmentNumber: 7374 -employeeType: Contract -homePhone: +1 213 315-8834 -initials: S. B. -mobile: +1 213 431-9974 -pager: +1 213 413-4794 -roomNumber: 8454 -manager: cn=Isin Scheck,ou=Administrative,dc=bitwarden, dc=com -secretary: cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Zhanna Gaconnier -sn: Gaconnier -description: This is Zhanna Gaconnier's description -facsimileTelephoneNumber: +1 408 616-2032 -l: Sunnyvale -ou: Administrative -postalAddress: Administrative$Sunnyvale -telephoneNumber: +1 408 669-9102 -title: Master Administrative Punk -userPassword: Password1 -uid: GaconniZ -givenName: Zhanna -mail: GaconniZ@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com -carLicense: 7WLE6I -departmentNumber: 1273 -employeeType: Contract -homePhone: +1 408 113-2415 -initials: Z. G. -mobile: +1 408 885-3280 -pager: +1 408 277-5947 -roomNumber: 9795 -manager: cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Hiren Bopp,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Dimitrios Schanne -sn: Schanne -description: This is Dimitrios Schanne's description -facsimileTelephoneNumber: +1 818 946-7359 -l: Alameda -ou: Administrative -postalAddress: Administrative$Alameda -telephoneNumber: +1 818 524-5303 -title: Chief Administrative Czar -userPassword: Password1 -uid: SchanneD -givenName: Dimitrios -mail: SchanneD@77df1d4a30ab443892398806ba3c7576.bitwarden.com -carLicense: 53BHKO -departmentNumber: 1257 -employeeType: Normal -homePhone: +1 818 356-3137 -initials: D. S. -mobile: +1 818 636-5221 -pager: +1 818 614-8361 -roomNumber: 8944 -manager: cn=Gokul Livingstone,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Harrison Salembier,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Mathew Jarvie,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Mathew Jarvie -sn: Jarvie -description: This is Mathew Jarvie's description -facsimileTelephoneNumber: +1 408 954-4696 -l: Fremont -ou: Peons -postalAddress: Peons$Fremont -telephoneNumber: +1 408 405-6425 -title: Chief Peons Mascot -userPassword: Password1 -uid: JarvieM -givenName: Mathew -mail: JarvieM@75fda0f549234930a497d29af4b3d736.bitwarden.com -carLicense: X6K9AV -departmentNumber: 9732 -employeeType: Normal -homePhone: +1 408 463-3730 -initials: M. J. -mobile: +1 408 214-1772 -pager: +1 408 789-6387 -roomNumber: 8465 -manager: cn=Peter Dodson,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Garland Kenney,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Joelle Eason,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Joelle Eason -sn: Eason -description: This is Joelle Eason's description -facsimileTelephoneNumber: +1 213 720-1407 -l: Redwood Shores -ou: Product Development -postalAddress: Product Development$Redwood Shores -telephoneNumber: +1 213 316-9301 -title: Chief Product Development President -userPassword: Password1 -uid: EasonJ -givenName: Joelle -mail: EasonJ@1f78de795d09437e9e2f587d718715dc.bitwarden.com -carLicense: UR7TDT -departmentNumber: 1695 -employeeType: Normal -homePhone: +1 213 558-8578 -initials: J. E. -mobile: +1 213 836-7417 -pager: +1 213 723-2848 -roomNumber: 9579 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Randhir Dobransky,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Angil Dungan,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Angil Dungan -sn: Dungan -description: This is Angil Dungan's description -facsimileTelephoneNumber: +1 415 130-7842 -l: San Francisco -ou: Management -postalAddress: Management$San Francisco -telephoneNumber: +1 415 225-5775 -title: Junior Management Figurehead -userPassword: Password1 -uid: DunganA -givenName: Angil -mail: DunganA@4e65ebf97c5c4a7e80cecb934226e7a6.bitwarden.com -carLicense: IE7T9K -departmentNumber: 4881 -employeeType: Contract -homePhone: +1 415 394-9896 -initials: A. D. -mobile: +1 415 316-4128 -pager: +1 415 714-4537 -roomNumber: 8605 -manager: cn=Merlina Benschop,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Tianbao Cemensky,ou=Management,dc=bitwarden, dc=com - -dn: cn=Geraldine Landaveri,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Geraldine Landaveri -sn: Landaveri -description: This is Geraldine Landaveri's description -facsimileTelephoneNumber: +1 206 601-3395 -l: Menlo Park -ou: Peons -postalAddress: Peons$Menlo Park -telephoneNumber: +1 206 151-2672 -title: Junior Peons Evangelist -userPassword: Password1 -uid: LandaveG -givenName: Geraldine -mail: LandaveG@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com -carLicense: HUS3JA -departmentNumber: 4293 -employeeType: Employee -homePhone: +1 206 761-1117 -initials: G. L. -mobile: +1 206 290-9287 -pager: +1 206 790-4432 -roomNumber: 8581 -manager: cn=Wiele Levert,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Ivo Chaurette,ou=Payroll,dc=bitwarden, dc=com - -dn: cn=Madeline Congdon,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madeline Congdon -sn: Congdon -description: This is Madeline Congdon's description -facsimileTelephoneNumber: +1 415 889-3637 -l: San Jose -ou: Administrative -postalAddress: Administrative$San Jose -telephoneNumber: +1 415 855-6841 -title: Supreme Administrative Technician -userPassword: Password1 -uid: CongdonM -givenName: Madeline -mail: CongdonM@a89e7ae3165749939a17b64967946632.bitwarden.com -carLicense: OQHR71 -departmentNumber: 7230 -employeeType: Contract -homePhone: +1 415 174-9809 -initials: M. C. -mobile: +1 415 950-4855 -pager: +1 415 104-3329 -roomNumber: 8691 -manager: cn=Arda Poluchowska,ou=Management,dc=bitwarden, dc=com -secretary: cn=Partha Archibald,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Rod Bedford,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Rod Bedford -sn: Bedford -description: This is Rod Bedford's description -facsimileTelephoneNumber: +1 804 704-5899 -l: Redmond -ou: Administrative -postalAddress: Administrative$Redmond -telephoneNumber: +1 804 133-4989 -title: Junior Administrative Warrior -userPassword: Password1 -uid: BedfordR -givenName: Rod -mail: BedfordR@9e2b20abc536451c80331d81dc08fb80.bitwarden.com -carLicense: CBU6U2 -departmentNumber: 3916 -employeeType: Contract -homePhone: +1 804 580-5740 -initials: R. B. -mobile: +1 804 595-7345 -pager: +1 804 395-9750 -roomNumber: 9076 -manager: cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Rama Akhtar,ou=Product Development,dc=bitwarden, dc=com - -dn: cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Elyssa Shivcharan -sn: Shivcharan -description: This is Elyssa Shivcharan's description -facsimileTelephoneNumber: +1 213 662-5113 -l: Palo Alto -ou: Administrative -postalAddress: Administrative$Palo Alto -telephoneNumber: +1 213 634-5354 -title: Master Administrative Admin -userPassword: Password1 -uid: ShivchaE -givenName: Elyssa -mail: ShivchaE@8131a404a7e44763a5c3195d705b1dc8.bitwarden.com -carLicense: SKFA9M -departmentNumber: 5943 -employeeType: Contract -homePhone: +1 213 201-3978 -initials: E. S. -mobile: +1 213 994-3746 -pager: +1 213 892-4936 -roomNumber: 8672 -manager: cn=Sammy Sourour,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden, dc=com - -dn: cn=Eula Steip,ou=Janitorial,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Eula Steip -sn: Steip -description: This is Eula Steip's description -facsimileTelephoneNumber: +1 213 723-2448 -l: San Francisco -ou: Janitorial -postalAddress: Janitorial$San Francisco -telephoneNumber: +1 213 819-3196 -title: Supreme Janitorial Director -userPassword: Password1 -uid: SteipE -givenName: Eula -mail: SteipE@6188569c9fcd404582c5c4a9062e9bc6.bitwarden.com -carLicense: EQQB3G -departmentNumber: 1440 -employeeType: Employee -homePhone: +1 213 855-1365 -initials: E. S. -mobile: +1 213 673-7346 -pager: +1 213 293-2324 -roomNumber: 8898 -manager: cn=Digby Abrams,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden, dc=com - -dn: cn=Lennart Murphin,ou=Human Resources,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Lennart Murphin -sn: Murphin -description: This is Lennart Murphin's description -facsimileTelephoneNumber: +1 804 907-2684 -l: Cupertino -ou: Human Resources -postalAddress: Human Resources$Cupertino -telephoneNumber: +1 804 329-2604 -title: Supreme Human Resources Visionary -userPassword: Password1 -uid: MurphinL -givenName: Lennart -mail: MurphinL@dc4ca8de100a44c98afc7e8972ff5e00.bitwarden.com -carLicense: JA4TAT -departmentNumber: 8746 -employeeType: Contract -homePhone: +1 804 132-2223 -initials: L. M. -mobile: +1 804 112-8333 -pager: +1 804 334-3167 -roomNumber: 9328 -manager: cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden, dc=com -secretary: cn=Karissa AuYang,ou=Management,dc=bitwarden, dc=com - -dn: cn=Emmye Reeves,ou=Peons,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Emmye Reeves -sn: Reeves -description: This is Emmye Reeves's description -facsimileTelephoneNumber: +1 510 993-9035 -l: Cupertino -ou: Peons -postalAddress: Peons$Cupertino -telephoneNumber: +1 510 607-1330 -title: Master Peons Dictator -userPassword: Password1 -uid: ReevesE -givenName: Emmye -mail: ReevesE@fa3acd28f4de417999317e1321170d2a.bitwarden.com -carLicense: 4D4GQ8 -departmentNumber: 6550 -employeeType: Contract -homePhone: +1 510 989-6453 -initials: E. R. -mobile: +1 510 112-3770 -pager: +1 510 124-5908 -roomNumber: 8835 -manager: cn=Behnam Cairns,ou=Management,dc=bitwarden, dc=com -secretary: cn=Lind Zeiger,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Madel Fiorile,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Madel Fiorile -sn: Fiorile -description: This is Madel Fiorile's description -facsimileTelephoneNumber: +1 510 593-3506 -l: Alameda -ou: Product Development -postalAddress: Product Development$Alameda -telephoneNumber: +1 510 803-2807 -title: Master Product Development Vice President -userPassword: Password1 -uid: FiorileM -givenName: Madel -mail: FiorileM@1487aec275284e49a79c5c4099f33bdb.bitwarden.com -carLicense: 0XE8WA -departmentNumber: 5870 -employeeType: Normal -homePhone: +1 510 812-8086 -initials: M. F. -mobile: +1 510 753-5384 -pager: +1 510 587-4161 -roomNumber: 8102 -manager: cn=Vito Mereu,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Saibal Swartz,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Hiroki Edwards,ou=Product Development,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Hiroki Edwards -sn: Edwards -description: This is Hiroki Edwards's description -facsimileTelephoneNumber: +1 206 295-1931 -l: Palo Alto -ou: Product Development -postalAddress: Product Development$Palo Alto -telephoneNumber: +1 206 749-9738 -title: Master Product Development Fellow -userPassword: Password1 -uid: EdwardsH -givenName: Hiroki -mail: EdwardsH@40814008a82d4ec3b13f45cb20ad20a4.bitwarden.com -carLicense: SAWBCC -departmentNumber: 6788 -employeeType: Contract -homePhone: +1 206 234-3194 -initials: H. E. -mobile: +1 206 747-8008 -pager: +1 206 437-4523 -roomNumber: 8409 -manager: cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden, dc=com -secretary: cn=Arn Ricketts,ou=Peons,dc=bitwarden, dc=com - -dn: cn=Douglass Rivest,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Douglass Rivest -sn: Rivest -description: This is Douglass Rivest's description -facsimileTelephoneNumber: +1 510 725-5021 -l: Cupertino -ou: Product Testing -postalAddress: Product Testing$Cupertino -telephoneNumber: +1 510 409-6814 -title: Chief Product Testing Director -userPassword: Password1 -uid: RivestD -givenName: Douglass -mail: RivestD@289444924c894df68dc76e9d8add4066.bitwarden.com -carLicense: 4EXMH0 -departmentNumber: 1697 -employeeType: Employee -homePhone: +1 510 339-7275 -initials: D. R. -mobile: +1 510 564-5706 -pager: +1 510 324-9627 -roomNumber: 9605 -manager: cn=Merlina Gofron,ou=Product Development,dc=bitwarden, dc=com -secretary: cn=Marge Levere,ou=Management,dc=bitwarden, dc=com - -dn: cn=Tammi Kramer,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Tammi Kramer -sn: Kramer -description: This is Tammi Kramer's description -facsimileTelephoneNumber: +1 213 836-9223 -l: Redwood Shores -ou: Management -postalAddress: Management$Redwood Shores -telephoneNumber: +1 213 557-7770 -title: Supreme Management President -userPassword: Password1 -uid: KramerT -givenName: Tammi -mail: KramerT@096bd16e7b9047ef820ae279d36addd1.bitwarden.com -carLicense: EJY23F -departmentNumber: 9208 -employeeType: Employee -homePhone: +1 213 339-6250 -initials: T. K. -mobile: +1 213 492-1142 -pager: +1 213 241-2293 -roomNumber: 9683 -manager: cn=Femke Roddick,ou=Management,dc=bitwarden, dc=com -secretary: cn=Estrella Balsas,ou=Human Resources,dc=bitwarden, dc=com - -dn: cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Drusy Mahoney -sn: Mahoney -description: This is Drusy Mahoney's description -facsimileTelephoneNumber: +1 510 234-4329 -l: San Jose -ou: Product Testing -postalAddress: Product Testing$San Jose -telephoneNumber: +1 510 102-9518 -title: Master Product Testing Janitor -userPassword: Password1 -uid: MahoneyD -givenName: Drusy -mail: MahoneyD@4583e86a2ba94a5da0ee973472b7f221.bitwarden.com -carLicense: RIKMH3 -departmentNumber: 4306 -employeeType: Employee -homePhone: +1 510 338-3080 -initials: D. M. -mobile: +1 510 373-9532 -pager: +1 510 708-9045 -roomNumber: 9834 -manager: cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden, dc=com -secretary: cn=Julio Marineau,ou=Administrative,dc=bitwarden, dc=com - -dn: cn=Brunhilda Bezdel,ou=Management,dc=bitwarden, dc=com -changetype: add -objectClass: top -objectClass: person -objectClass: organizationalPerson -objectClass: inetOrgPerson -cn: Brunhilda Bezdel -sn: Bezdel -description: This is Brunhilda Bezdel's description -facsimileTelephoneNumber: +1 206 214-4516 -l: Cambridge -ou: Management -postalAddress: Management$Cambridge -telephoneNumber: +1 206 265-8908 -title: Junior Management Architect -userPassword: Password1 -uid: BezdelB -givenName: Brunhilda -mail: BezdelB@523cb0530fdd41dc8c1ab88cc74839c7.bitwarden.com -carLicense: RYQVOH -departmentNumber: 3139 -employeeType: Normal -homePhone: +1 206 131-8998 -initials: B. B. -mobile: +1 206 570-4849 -pager: +1 206 913-8746 -roomNumber: 8727 -manager: cn=Terry Lodeserto,ou=Peons,dc=bitwarden, dc=com -secretary: cn=Rheal Lauten,ou=Management,dc=bitwarden, dc=com diff --git a/openldap/example-ldifs/directory-20.ldif b/openldap/ldifs/directory-20.ldif similarity index 100% rename from openldap/example-ldifs/directory-20.ldif rename to openldap/ldifs/directory-20.ldif diff --git a/openldap/user-fixtures-11000.ts b/openldap/user-fixtures-11000.ts deleted file mode 100644 index af43f5a22..000000000 --- a/openldap/user-fixtures-11000.ts +++ /dev/null @@ -1,77008 +0,0 @@ -import { Jsonify } from "type-fest"; - -import { UserEntry } from "../src/models/userEntry"; - -// These must match the ldap server seed data in directory.ldif -const data: Jsonify[] = [ - { - deleted: false, - disabled: false, - referenceId: "cn=Edlene Morocz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Edlene Morocz,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoroczE@a11f000faf34447ab870e32427af41fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mimi Mufti,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mimi Mufti,ou=Peons,dc=bitwarden,dc=com", - email: "MuftiM@5ce1ae303e1b4216bb8884b6b93d1c56.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Madelon PueGilchrist,ou=Human Resources,dc=bitwarden,dc=com", - email: "PueGilcM@465384ee6f90454f9bd37364e1619114.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elianore Snapper,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elianore Snapper,ou=Payroll,dc=bitwarden,dc=com", - email: "SnapperE@3ffb284a6509471fa1b109716579396c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lujanka Dickford,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lujanka Dickford,ou=Product Development,dc=bitwarden,dc=com", - email: "DickforL@bf3c648ed6d6430384d28d39f0e9c516.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nedi Siegel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nedi Siegel,ou=Product Development,dc=bitwarden,dc=com", - email: "SiegelN@e88c29e7defd4cc4a4f9f6a6238e817f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Thelma Stampfl,ou=Janitorial,dc=bitwarden,dc=com", - email: "StampflT@3bd17db97361499690e9a4a1c0655d19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Simulation Beswick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Simulation Beswick,ou=Management,dc=bitwarden,dc=com", - email: "BeswickS@e4326b57161d41be8c559868d23f22e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sherrie Bellehumeur,ou=Management,dc=bitwarden,dc=com", - email: "BellehuS@5d35d83c207d418fad061afb7ba230bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ola Paulhus,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ola Paulhus,ou=Management,dc=bitwarden,dc=com", - email: "PaulhusO@f2e251b2cd334a149a91e0fa8b8a2220.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yen Sharkey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yen Sharkey,ou=Peons,dc=bitwarden,dc=com", - email: "SharkeyY@f23640bc04e54c3b84040581a3dccada.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Corkstown Sheppard,ou=Administrative,dc=bitwarden,dc=com", - email: "ShepparC@327fab76e13f495691accc9986f353a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aila Koster,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aila Koster,ou=Peons,dc=bitwarden,dc=com", - email: "KosterA@17b298c689464c4385fe9cac8f40eea6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dacia Colterman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dacia Colterman,ou=Human Resources,dc=bitwarden,dc=com", - email: "ColtermD@752a496e92da43f3852dc6fc94c2530e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helma Bento,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Helma Bento,ou=Product Development,dc=bitwarden,dc=com", - email: "BentoH@be4e574e5026401884f8759627863563.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Holst Issa,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Holst Issa,ou=Human Resources,dc=bitwarden,dc=com", - email: "IssaH@780f09ce8c394dd7859dd4f97439f35d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolina Eu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nicolina Eu,ou=Management,dc=bitwarden,dc=com", - email: "EuN@62b33fdd2568434bbbd48333e7f20ed7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nobuko Nyland,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nobuko Nyland,ou=Payroll,dc=bitwarden,dc=com", - email: "NylandN@d4b6d833d5a74158a2213fcbac0525a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erlene Hargrow,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Erlene Hargrow,ou=Payroll,dc=bitwarden,dc=com", - email: "HargrowE@a48701aa8d324e65a88e2c654b93d791.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aila Mawani,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aila Mawani,ou=Product Testing,dc=bitwarden,dc=com", - email: "MawaniA@67e3aaef7f7f4f1cbd8f4f936f598c13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eula Neault,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eula Neault,ou=Payroll,dc=bitwarden,dc=com", - email: "NeaultE@5f64c8c895024a00af4d42855babab9f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grata Tomacic,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Grata Tomacic,ou=Administrative,dc=bitwarden,dc=com", - email: "TomacicG@79f438ac5a2045c28f6ad4893a72e3bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rebekah Gallinger,ou=Payroll,dc=bitwarden,dc=com", - email: "GallingR@520ff39da95249c7ade86c3a64b17f3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maurizia Skillen,ou=Product Testing,dc=bitwarden,dc=com", - email: "SkillenM@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Larissa Gillette,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Larissa Gillette,ou=Janitorial,dc=bitwarden,dc=com", - email: "GillettL@8de5f1673aad4b42ac90ff25da206774.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gusella Vilhan,ou=Human Resources,dc=bitwarden,dc=com", - email: "VilhanG@8779bd2690ca4e74bc6ad755c1a9e7dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Panch Sziladi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Panch Sziladi,ou=Peons,dc=bitwarden,dc=com", - email: "SziladiP@5ebaa8af105c497682481efce65265ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morley Chadha,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Morley Chadha,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChadhaM@7e56f35864a04d13abbef377d8dec333.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kem Bizga,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kem Bizga,ou=Janitorial,dc=bitwarden,dc=com", - email: "BizgaK@e82a7163f0b1403c8ef83f8850e77a61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmel Vawter,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carmel Vawter,ou=Payroll,dc=bitwarden,dc=com", - email: "VawterC@058f9e396c334403aa5edc7cb4dcabbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corly Tesch,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Corly Tesch,ou=Payroll,dc=bitwarden,dc=com", - email: "TeschC@9e46d49d53a540a080afbdcfa4525ae4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laureen Ladet,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Laureen Ladet,ou=Product Development,dc=bitwarden,dc=com", - email: "LadetL@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnneMarie Sills,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=AnneMarie Sills,ou=Administrative,dc=bitwarden,dc=com", - email: "SillsA@6c5d1cc04bcc4690b1cd5f323caabcec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonny Creamer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sonny Creamer,ou=Janitorial,dc=bitwarden,dc=com", - email: "CreamerS@b88d4b807454424b816f4d4edf5c78f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Thia Rigsbee,ou=Janitorial,dc=bitwarden,dc=com", - email: "RigsbeeT@69ddae2b604b41af97e31581db1a7259.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Access Banerd,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Access Banerd,ou=Human Resources,dc=bitwarden,dc=com", - email: "BanerdA@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mina Chee,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mina Chee,ou=Peons,dc=bitwarden,dc=com", - email: "CheeM@73b4280752ea430d90a4e41ca224258f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dpnlab Guilbert,ou=Payroll,dc=bitwarden,dc=com", - email: "GuilberD@a26a9c7d638a4a938f85aa60d8cdaebf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fabienne Vempati,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fabienne Vempati,ou=Management,dc=bitwarden,dc=com", - email: "VempatiF@ad1687f9a97b47bf9fe47c86e586e467.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saman Bosch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Saman Bosch,ou=Management,dc=bitwarden,dc=com", - email: "BoschS@f009b38fd0b643efae4b268d5ce0abb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farag Collevecchio,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Farag Collevecchio,ou=Peons,dc=bitwarden,dc=com", - email: "ColleveF@107125a246e24f24a9cf40da49e16737.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randhir Dobransky,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Randhir Dobransky,ou=Peons,dc=bitwarden,dc=com", - email: "DobransR@4dd34983587f4a0b9ee3f3c06d2784e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maddy Beausejour,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maddy Beausejour,ou=Administrative,dc=bitwarden,dc=com", - email: "BeausejM@78ace4543e8b4e7abd63d7e3b9ef6ace.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carita Stetner,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carita Stetner,ou=Administrative,dc=bitwarden,dc=com", - email: "StetnerC@f450bfcb7980440badfefb5db1f9b1e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dvm Ricketson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dvm Ricketson,ou=Payroll,dc=bitwarden,dc=com", - email: "RicketsD@89dcd9d2c857498a86ade06ecc312230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rebeca Gantt,ou=Janitorial,dc=bitwarden,dc=com", - email: "GanttR@b61ae18043f9458aa61f6fc88ad93618.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viktoria Relations,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Viktoria Relations,ou=Payroll,dc=bitwarden,dc=com", - email: "RelatioV@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hot Hisaki,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hot Hisaki,ou=Product Testing,dc=bitwarden,dc=com", - email: "HisakiH@096f60c023cb468a8d116af8aa53dafa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristien Reinwald,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kristien Reinwald,ou=Payroll,dc=bitwarden,dc=com", - email: "ReinwalK@d0277d6f48c14695a4405ab88f901980.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anjanette Codata,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anjanette Codata,ou=Product Development,dc=bitwarden,dc=com", - email: "CodataA@b72198c81eb943f9965cdab0dd75e67b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antonia Killam,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Antonia Killam,ou=Management,dc=bitwarden,dc=com", - email: "KillamA@d09db853699d499ba28b7118a2e128fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosene Bonner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosene Bonner,ou=Peons,dc=bitwarden,dc=com", - email: "BonnerR@121cc33033f14e9b867c78ba3a8f3e2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janson Vrbetic,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Janson Vrbetic,ou=Management,dc=bitwarden,dc=com", - email: "VrbeticJ@541a9a67add74942af05ec9661f08230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bevyn Vonreichbauer,ou=Product Testing,dc=bitwarden,dc=com", - email: "VonreicB@8311a48378874d7c8881d49ce93338e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maurijn Weidenborner,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeidenbM@3bd94762b36248a3a966e29a33d3058c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Balakrishna Mystkowski,ou=Product Development,dc=bitwarden,dc=com", - email: "MystkowB@7f94876ebfe04b25a6342dc4d9880231.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clyde Beggs,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clyde Beggs,ou=Peons,dc=bitwarden,dc=com", - email: "BeggsC@8dd82af0c0e64a528cb0191d0b7789f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ohio Ackwood,ou=Human Resources,dc=bitwarden,dc=com", - email: "AckwoodO@7731926b8eba477c82aacfea38c5fc13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cal Storey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cal Storey,ou=Human Resources,dc=bitwarden,dc=com", - email: "StoreyC@446fda101a9542ef9472f9748a3bbad3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Scarlet Coyne,ou=Human Resources,dc=bitwarden,dc=com", - email: "CoyneS@bff70836a23e4971b616373a470331a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pearline Towsley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pearline Towsley,ou=Peons,dc=bitwarden,dc=com", - email: "TowsleyP@03118a048f5d4356bb8bbf044152a0bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Violet Ninetyone,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Violet Ninetyone,ou=Product Development,dc=bitwarden,dc=com", - email: "NinetyoV@c1217eb361b34f5f9200a6d2ac0e0924.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hr Healy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hr Healy,ou=Peons,dc=bitwarden,dc=com", - email: "HealyH@29ea2fbdcd594c67b7900d7a29977699.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ondrea Schultze,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ondrea Schultze,ou=Peons,dc=bitwarden,dc=com", - email: "SchultzO@f252b0badb62492c910f90ea10fa1426.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lita Gille,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lita Gille,ou=Janitorial,dc=bitwarden,dc=com", - email: "GilleL@985392d95f2c4602acfb90f908cc5548.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joelle Delong,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joelle Delong,ou=Administrative,dc=bitwarden,dc=com", - email: "DelongJ@b2621506fe2b459baf1ad04147fee681.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fabien Klapper,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fabien Klapper,ou=Product Development,dc=bitwarden,dc=com", - email: "KlapperF@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christie Andersen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Christie Andersen,ou=Peons,dc=bitwarden,dc=com", - email: "AnderseC@f541074a8300482d85b53966c8cecebb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarena Semler,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sarena Semler,ou=Administrative,dc=bitwarden,dc=com", - email: "SemlerS@4f429ec00b3846cdb96eadb01bfd7a99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janka Norfleet,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Janka Norfleet,ou=Janitorial,dc=bitwarden,dc=com", - email: "NorfleeJ@c6becf10621f424386eceb52ac60363d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Carmelita McClintock,ou=Product Testing,dc=bitwarden,dc=com", - email: "McClintC@79732267294c4ff69a75a9c93c8c2c5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Margalit Schnurmann,ou=Payroll,dc=bitwarden,dc=com", - email: "SchnurmM@cdc31465418c4033ab89394a6307e530.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verena Cadzow,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Verena Cadzow,ou=Product Testing,dc=bitwarden,dc=com", - email: "CadzowV@00b74fb6ef364737950ddfdf6aa8c176.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roselin Clinton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Roselin Clinton,ou=Management,dc=bitwarden,dc=com", - email: "ClintonR@68cdb3f1f4a34d45a9e696c1e31a6e1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niki Tosczak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Niki Tosczak,ou=Janitorial,dc=bitwarden,dc=com", - email: "TosczakN@0eafa9df29954ccc8d03b1a1a5c6c726.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chelsey Sacchetti,ou=Peons,dc=bitwarden,dc=com", - email: "SacchetC@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alli McCartney,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alli McCartney,ou=Human Resources,dc=bitwarden,dc=com", - email: "McCartnA@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helaine Sture,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Helaine Sture,ou=Product Testing,dc=bitwarden,dc=com", - email: "StureH@1d5f034b9f0b4b2d8a9c2ac70eae1af4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elane Boggia,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elane Boggia,ou=Peons,dc=bitwarden,dc=com", - email: "BoggiaE@1390fe347bf84da5b12ed2e7e03c14a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristen Bethune,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cristen Bethune,ou=Human Resources,dc=bitwarden,dc=com", - email: "BethuneC@5e878ad72c9742919c149b3ae36447b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elbert Strauch,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elbert Strauch,ou=Administrative,dc=bitwarden,dc=com", - email: "StrauchE@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stock Krenn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Stock Krenn,ou=Product Development,dc=bitwarden,dc=com", - email: "KrennS@391ddf0224dd407ba001b022d1309d23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurice Wurtz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Maurice Wurtz,ou=Peons,dc=bitwarden,dc=com", - email: "WurtzM@d8178390586b4ff2afbd07f5124be8ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YoungJune Grauer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=YoungJune Grauer,ou=Management,dc=bitwarden,dc=com", - email: "GrauerY@434812d441a24c9dafd1550eb22dcb62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jock Subsara,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jock Subsara,ou=Management,dc=bitwarden,dc=com", - email: "SubsaraJ@01c459dd18154d91bb999b9b97f18487.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rosina Bassignana,ou=Human Resources,dc=bitwarden,dc=com", - email: "BassignR@15d7a602173249f0aea4978bd6de557b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sarangarajan Reilly,ou=Janitorial,dc=bitwarden,dc=com", - email: "ReillyS@d5949360307842458664ec19684f5fbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Latia Amarsi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Latia Amarsi,ou=Payroll,dc=bitwarden,dc=com", - email: "AmarsiL@d3f6a0448cf246c98f76952766172afe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Babak Culverhouse,ou=Human Resources,dc=bitwarden,dc=com", - email: "CulverhB@a85c3929256747e4a90337c3ba0f9538.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Armand Klimas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Armand Klimas,ou=Product Testing,dc=bitwarden,dc=com", - email: "KlimasA@cc354ce01f7d4b1dbbd812fe0f0347ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibbie DeWiele,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sibbie DeWiele,ou=Management,dc=bitwarden,dc=com", - email: "DeWieleS@6166cdfc1e46480f804599bfc1632742.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiam Surreau,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kiam Surreau,ou=Administrative,dc=bitwarden,dc=com", - email: "SurreauK@26ece7db144b41bb92ce5c1250e537b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarabelle Committe,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clarabelle Committe,ou=Peons,dc=bitwarden,dc=com", - email: "CommittC@987beca3f52a49bd924ac83295cf5b4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geralene Lan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Geralene Lan,ou=Product Development,dc=bitwarden,dc=com", - email: "LanG@0a2947c0937246148acc395ec6aa6da8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelyn Runnels,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Madelyn Runnels,ou=Peons,dc=bitwarden,dc=com", - email: "RunnelsM@b2f73c176c104e9dad8630c2f13ec103.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marshal Hawken,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marshal Hawken,ou=Product Development,dc=bitwarden,dc=com", - email: "HawkenM@a4dea908812d4b559d6d4b4ddbcb0f53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sickle Hartley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sickle Hartley,ou=Human Resources,dc=bitwarden,dc=com", - email: "HartleyS@aea15ef0456d4cd2988add4323d0edb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carran Cramer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carran Cramer,ou=Janitorial,dc=bitwarden,dc=com", - email: "CramerC@da80fbc552e74c92b5c02d6f794db308.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KienNghiep Eby,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=KienNghiep Eby,ou=Payroll,dc=bitwarden,dc=com", - email: "EbyK@d787acf2cb0f4ad79059f38dcecb70e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pacific Derrett,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pacific Derrett,ou=Janitorial,dc=bitwarden,dc=com", - email: "DerrettP@4247bf0f3a2e46bbbb1c691078752396.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allyce Chickorie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Allyce Chickorie,ou=Management,dc=bitwarden,dc=com", - email: "ChickorA@a3cca719b1e44338804967e6cd3716a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Risa Hatten,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Risa Hatten,ou=Administrative,dc=bitwarden,dc=com", - email: "HattenR@66ab35d6948347a9bae3a60013004915.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherise Racette,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cherise Racette,ou=Management,dc=bitwarden,dc=com", - email: "RacetteC@2c6078f6eca44c55a3b0351656fc7d8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ava Wetteland,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ava Wetteland,ou=Product Development,dc=bitwarden,dc=com", - email: "WettelaA@013fb02061ee471c942b593b9cccbedb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bonita Chiamvimonvat,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChiamviB@ba3add3fa0e5474bb8115e77e9d392b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaun Fares,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shaun Fares,ou=Human Resources,dc=bitwarden,dc=com", - email: "FaresS@79f438ac5a2045c28f6ad4893a72e3bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miss Rogne,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Miss Rogne,ou=Peons,dc=bitwarden,dc=com", - email: "RogneM@4437a885539842e694e181973aeef65f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vyky Wichers,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vyky Wichers,ou=Janitorial,dc=bitwarden,dc=com", - email: "WichersV@c9a0e26d4ea742c783cb4ebee35bdd7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christal Logan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Christal Logan,ou=Payroll,dc=bitwarden,dc=com", - email: "LoganC@355444411163413985e2752e5591891d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gretna Witkowski,ou=Product Testing,dc=bitwarden,dc=com", - email: "WitkowsG@cabcf482c8b8459d8a74ab2619df86df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marga Narron,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marga Narron,ou=Janitorial,dc=bitwarden,dc=com", - email: "NarronM@602ba75a97ea4dc1ac3622553464c0ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Migdalia Flanagan,ou=Administrative,dc=bitwarden,dc=com", - email: "FlanagaM@b1bb838cb11c403bbdc958ce4b4c9d2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emmalee Foods,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Emmalee Foods,ou=Management,dc=bitwarden,dc=com", - email: "FoodsE@74805c1fee3243bbadc8f72d3fd3001a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Edeline Lakhian,ou=Janitorial,dc=bitwarden,dc=com", - email: "LakhianE@e52e6f8f31c240f3b4e78172d5b85958.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmelina Scully,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carmelina Scully,ou=Payroll,dc=bitwarden,dc=com", - email: "ScullyC@3235f42e984e402081a7536149bf78d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shyam Carr,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shyam Carr,ou=Administrative,dc=bitwarden,dc=com", - email: "CarrS@49afaf830b95419abf9fc28dbca190f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katie Jeska,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Katie Jeska,ou=Human Resources,dc=bitwarden,dc=com", - email: "JeskaK@64d7ecf288c04c558094c63f6b45f377.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Penni Sarto,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Penni Sarto,ou=Administrative,dc=bitwarden,dc=com", - email: "SartoP@05ad6fc184974bd39ebbb3184d131d86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marge Levere,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marge Levere,ou=Management,dc=bitwarden,dc=com", - email: "LevereM@bf2dcabaa08a40c0b50f35192372f0ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rozalia Delolmodiez,ou=Human Resources,dc=bitwarden,dc=com", - email: "DelolmoR@982161c18d1c4b49bf26a62584cbb202.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Konrad Fabijanic,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Konrad Fabijanic,ou=Peons,dc=bitwarden,dc=com", - email: "FabijanK@e6bf56fbfb254a10af3f0b967f4bdcb4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Prity Nikfarjam,ou=Payroll,dc=bitwarden,dc=com", - email: "NikfarjP@6e287118b6904f0fb9c650aef9285536.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colman Epplett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Colman Epplett,ou=Human Resources,dc=bitwarden,dc=com", - email: "EpplettC@ab6b4dd3e6a9481bb932dc2b39ad4c1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rama Akhtar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rama Akhtar,ou=Product Development,dc=bitwarden,dc=com", - email: "AkhtarR@e76e8162b84b46138ec7767983e49241.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cari Cuany,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cari Cuany,ou=Human Resources,dc=bitwarden,dc=com", - email: "CuanyC@91416a3afaee4244b90876f4646b52c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betteanne Donak,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Betteanne Donak,ou=Product Testing,dc=bitwarden,dc=com", - email: "DonakB@1fe7e1be2b764fc8b9d6a489254a78f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nguyen Jaques,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nguyen Jaques,ou=Administrative,dc=bitwarden,dc=com", - email: "JaquesN@fda4d4ae921446e0b58dd0cc3cb8d908.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobette Sherlock,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bobette Sherlock,ou=Peons,dc=bitwarden,dc=com", - email: "SherlocB@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Johnna DiCosola,ou=Janitorial,dc=bitwarden,dc=com", - email: "DiCosolJ@bceb773cb0004bb8a003929876f0fb36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barsha Ozmizrak,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Barsha Ozmizrak,ou=Management,dc=bitwarden,dc=com", - email: "OzmizraB@5427bdee75c245c39f1a2b879610cd11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tandi Dao,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tandi Dao,ou=Administrative,dc=bitwarden,dc=com", - email: "DaoT@9b989160bc6d49579fbfc8f1e85ccc6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jackie Bissonnette,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jackie Bissonnette,ou=Peons,dc=bitwarden,dc=com", - email: "BissonnJ@26a00bf401bc40aabc0ccf70a3195da2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Stephen Radvanyi,ou=Payroll,dc=bitwarden,dc=com", - email: "RadvanyS@e6341ae3add343adaa16f2b5badc740f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hinda HowePatterson,ou=Product Testing,dc=bitwarden,dc=com", - email: "HowePatH@523e609eb44e4dad826c580fd26d6d8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margaretta Amott,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Margaretta Amott,ou=Janitorial,dc=bitwarden,dc=com", - email: "AmottM@9b6ac34e0ff04d81b84f1dd42d147248.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Malynda TempleDowning,ou=Product Testing,dc=bitwarden,dc=com", - email: "TempleDM@399ec0c914824f4b8aebd42d99e8c0c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yetta Litherland,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Yetta Litherland,ou=Administrative,dc=bitwarden,dc=com", - email: "LitherlY@e552a99c6612464e99801fc5eab2cf25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tedi Boothroyd,ou=Product Development,dc=bitwarden,dc=com", - email: "BoothroT@7e7d56512878406ba5f19451276eb821.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rubetta Altman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rubetta Altman,ou=Product Development,dc=bitwarden,dc=com", - email: "AltmanR@5cab5d1545fd4012a00a0f17162dad39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LeiSee Plato,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=LeiSee Plato,ou=Peons,dc=bitwarden,dc=com", - email: "PlatoL@895bfd9f2c6f4f82814cbf2199cfb1f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fayette Kos,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fayette Kos,ou=Janitorial,dc=bitwarden,dc=com", - email: "KosF@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Redgie Craycraft,ou=Human Resources,dc=bitwarden,dc=com", - email: "CraycraR@68e2448e6be24959a88911c23cb3d4b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginette Vilis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ginette Vilis,ou=Peons,dc=bitwarden,dc=com", - email: "VilisG@77eb010514ae421883af972518c1a82e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorelle Ladymon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorelle Ladymon,ou=Peons,dc=bitwarden,dc=com", - email: "LadymonL@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Behnam Cairns,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Behnam Cairns,ou=Management,dc=bitwarden,dc=com", - email: "CairnsB@ad4942d8c3c341119939c679c4dae154.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othella McGrath,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Othella McGrath,ou=Janitorial,dc=bitwarden,dc=com", - email: "McGrathO@e90e000c44ce4d4ea0b0d2e2fa3e3a2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minnnie Hough,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Minnnie Hough,ou=Product Development,dc=bitwarden,dc=com", - email: "HoughM@3ecb1c63de854804b4e8af1966a28c00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darci Glasgow,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Darci Glasgow,ou=Human Resources,dc=bitwarden,dc=com", - email: "GlasgowD@66d6a653ea384626bd4c52723439804a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franz Kosasih,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Franz Kosasih,ou=Administrative,dc=bitwarden,dc=com", - email: "KosasihF@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Four Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", - email: "SavarimF@2c5e9a0ea53e4c3488f28ebc0a631b01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zonda Keyes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zonda Keyes,ou=Management,dc=bitwarden,dc=com", - email: "KeyesZ@73df9726f63046799112335cf0c61cd9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vicheara Claybrook,ou=Janitorial,dc=bitwarden,dc=com", - email: "ClaybroV@5c3854c0e45246a0b3fb22153a7146d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Iwona Eicher,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Iwona Eicher,ou=Product Development,dc=bitwarden,dc=com", - email: "EicherI@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marinna Rabjohn,ou=Janitorial,dc=bitwarden,dc=com", - email: "RabjohnM@9f370afe60bb4f1ab01d1df2abbe72ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hugo Baltodano,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hugo Baltodano,ou=Administrative,dc=bitwarden,dc=com", - email: "BaltodaH@78bfa2e0c44e45a08260250819c1abe3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karyl Jiang,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Karyl Jiang,ou=Human Resources,dc=bitwarden,dc=com", - email: "JiangK@536233742e094d32a93b46e75cbb8e9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KumMeng Dover,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=KumMeng Dover,ou=Administrative,dc=bitwarden,dc=com", - email: "DoverK@b381db8c81ea4ed2b9296ea4988780aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Homa Brownlee,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Homa Brownlee,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrownleH@4897906c5be74769a474a0be126fe831.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nonna Jensenworth,ou=Human Resources,dc=bitwarden,dc=com", - email: "JensenwN@8dadc7ef65624c618ad03f0f74792b58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pansie Jemczyk,ou=Product Development,dc=bitwarden,dc=com", - email: "JemczykP@8cd5207192cc415ba684b6325051ff04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tianbao Cemensky,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tianbao Cemensky,ou=Management,dc=bitwarden,dc=com", - email: "CemenskT@f356b9ffcffb4ac98d745b6fe117b574.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meggy Jansen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Meggy Jansen,ou=Janitorial,dc=bitwarden,dc=com", - email: "JansenM@5e943e5d6d7b48d9af98d3041b109570.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thad Bertram,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Thad Bertram,ou=Administrative,dc=bitwarden,dc=com", - email: "BertramT@87217c69784645aaa23bd55d67419f7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dallas Gulick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dallas Gulick,ou=Management,dc=bitwarden,dc=com", - email: "GulickD@e24249e5021b459b98fb73b4ee245cd6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marna Kindem,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marna Kindem,ou=Peons,dc=bitwarden,dc=com", - email: "KindemM@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denny Worpell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Denny Worpell,ou=Management,dc=bitwarden,dc=com", - email: "WorpellD@d323371cf0d149c19d396f6a749e3098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tanitansy Thibon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tanitansy Thibon,ou=Management,dc=bitwarden,dc=com", - email: "ThibonT@864d7fffc05349a6937099b5cb95ba17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koray Vasiliadis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Koray Vasiliadis,ou=Peons,dc=bitwarden,dc=com", - email: "VasiliaK@b08a31b6db4d4d2a9a1e1fd91f822e32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ettie Sils,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ettie Sils,ou=Management,dc=bitwarden,dc=com", - email: "SilsE@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Daffy Kollmorgen,ou=Product Testing,dc=bitwarden,dc=com", - email: "KollmorD@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Millard Tromm,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Millard Tromm,ou=Human Resources,dc=bitwarden,dc=com", - email: "TrommM@364738d989114590842291a79ecffd92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rycca Zolmer,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZolmerR@f53717c4000348b2a1cde8b0fde1aa1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merlina Benschop,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Merlina Benschop,ou=Peons,dc=bitwarden,dc=com", - email: "BenschoM@113ea99347684507857d63f3c383c84e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shanna Bourgon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shanna Bourgon,ou=Product Development,dc=bitwarden,dc=com", - email: "BourgonS@2f60971fa268439caffee9f84b2be8cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liza Gumb,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Liza Gumb,ou=Management,dc=bitwarden,dc=com", - email: "GumbL@eb1e32d5d45a4fa98044c369dbe415f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gokul Livingstone,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gokul Livingstone,ou=Product Development,dc=bitwarden,dc=com", - email: "LivingsG@e62346e3a4bc49f8a310562753f43a8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jamison Hines,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jamison Hines,ou=Human Resources,dc=bitwarden,dc=com", - email: "HinesJ@1461dbc17b9c4f428daab775690e9506.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clem Bongers,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Clem Bongers,ou=Human Resources,dc=bitwarden,dc=com", - email: "BongersC@9fa42e4f0ec04b66b2fd5c843402ebd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vina McKie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vina McKie,ou=Payroll,dc=bitwarden,dc=com", - email: "McKieV@04f2dffe06bf4234900a9cc4318bfe61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duc Dinalic,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Duc Dinalic,ou=Management,dc=bitwarden,dc=com", - email: "DinalicD@64c2fa20001b495182e976975782823e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gena Lawther,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gena Lawther,ou=Management,dc=bitwarden,dc=com", - email: "LawtherG@dbbc0930b0d2479ca97fea1080c3afcd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HooiLee Bourgon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=HooiLee Bourgon,ou=Peons,dc=bitwarden,dc=com", - email: "BourgonH@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teresa Kenkel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Teresa Kenkel,ou=Payroll,dc=bitwarden,dc=com", - email: "KenkelT@e3d22003ed4443a89482f00559e86e88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marin Suprick,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marin Suprick,ou=Human Resources,dc=bitwarden,dc=com", - email: "SuprickM@85be5888418240a8880dd2671e654a34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Attilio Bullett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Attilio Bullett,ou=Product Testing,dc=bitwarden,dc=com", - email: "BullettA@101b8efea162489cbe4b00acbe71ea5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blake Skerry,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Blake Skerry,ou=Janitorial,dc=bitwarden,dc=com", - email: "SkerryB@4a47eda5b0994d6aac96fd9eb9bf327f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amir McColman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amir McColman,ou=Management,dc=bitwarden,dc=com", - email: "McColmaA@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fiore Ambroise,ou=Human Resources,dc=bitwarden,dc=com", - email: "AmbroisF@c1fb4f6fb6854ac09da830fa08bf174b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minne Danker,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Minne Danker,ou=Management,dc=bitwarden,dc=com", - email: "DankerM@7e7d56512878406ba5f19451276eb821.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rizzo Irick,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rizzo Irick,ou=Human Resources,dc=bitwarden,dc=com", - email: "IrickR@a762ad5f7ab94a82ae700785cde02626.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cyb Biedermann,ou=Product Testing,dc=bitwarden,dc=com", - email: "BiedermC@ccf238ac72764498a2a4e871140940fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nobuko Zureik,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZureikN@32cbfafe741b446491d67cea0d5c681a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Syl Hughes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Syl Hughes,ou=Management,dc=bitwarden,dc=com", - email: "HughesS@29d43cca18a84193868799ddbf3f9a87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jagat Beato,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jagat Beato,ou=Peons,dc=bitwarden,dc=com", - email: "BeatoJ@cb0fd14a62264345a0844bec81676fd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Masood Tomassi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Masood Tomassi,ou=Payroll,dc=bitwarden,dc=com", - email: "TomassiM@f38a9d14e36244e8ae609b15157f60d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Subhash Dachelet,ou=Janitorial,dc=bitwarden,dc=com", - email: "DacheleS@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shamsia Mincey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shamsia Mincey,ou=Peons,dc=bitwarden,dc=com", - email: "MinceyS@a3cc15e6ac3a471cb783c4563846998f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Stacey Dittburner,ou=Janitorial,dc=bitwarden,dc=com", - email: "DittburS@8c2946e2ae1e4ec0a1e9edd05301d704.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=LeiSee Goodwin,ou=Human Resources,dc=bitwarden,dc=com", - email: "GoodwinL@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tove Goodridge,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tove Goodridge,ou=Payroll,dc=bitwarden,dc=com", - email: "GoodridT@b566534e0b1f46eaaa1ea84025fc6d78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elberta Incze,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Elberta Incze,ou=Management,dc=bitwarden,dc=com", - email: "InczeE@5cf57c701a8d46aa885749d2ca77c6a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobinette Belboul,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bobinette Belboul,ou=Peons,dc=bitwarden,dc=com", - email: "BelboulB@f29767cb71284b6995c0c1e79eecbc92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynna Elsing,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lynna Elsing,ou=Product Development,dc=bitwarden,dc=com", - email: "ElsingL@b9d4bc3408874c868cfc03e30b01af48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ioana Bresee,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ioana Bresee,ou=Peons,dc=bitwarden,dc=com", - email: "BreseeI@25209ef0bef9422ba827a4158c5d2eb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kentaro Farrell,ou=Janitorial,dc=bitwarden,dc=com", - email: "FarrellK@4e073aa3a1c84fccb5d5f011b1fd7a56.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seanna Lasher,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Seanna Lasher,ou=Payroll,dc=bitwarden,dc=com", - email: "LasherS@2c4a787e446b470797a2c3a15157473d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pittsburgh Michael,ou=Product Testing,dc=bitwarden,dc=com", - email: "MichaelP@752c449dfd0b47e48d05c032fa7b3f44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bella Lally,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bella Lally,ou=Peons,dc=bitwarden,dc=com", - email: "LallyB@59d35b61e06047f398b5db0a5e96a7de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Romina Koman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Romina Koman,ou=Peons,dc=bitwarden,dc=com", - email: "KomanR@3a6874a38197445fbf21db557fe28dc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bcspatch Krauel,ou=Product Testing,dc=bitwarden,dc=com", - email: "KrauelB@efedd508d8ec42c3907045cd058c9d61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abbye Kurth,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Abbye Kurth,ou=Product Development,dc=bitwarden,dc=com", - email: "KurthA@d90060a8a6214d68a708f85a619deb45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cecil Babb,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cecil Babb,ou=Product Development,dc=bitwarden,dc=com", - email: "BabbC@9688197f14c24b1ba3397822373736ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thinh Merinder,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Thinh Merinder,ou=Human Resources,dc=bitwarden,dc=com", - email: "MerindeT@634978d04fca41d6af5289220bc42474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hermann SYSINT,ou=Product Testing,dc=bitwarden,dc=com", - email: "SYSINTH@06e4c92f7e694121b9c489567f46001f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dinah Kodsi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dinah Kodsi,ou=Peons,dc=bitwarden,dc=com", - email: "KodsiD@b9ee0922c6034c7c9e48852dd91cb364.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loria Salzillo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Loria Salzillo,ou=Administrative,dc=bitwarden,dc=com", - email: "SalzillL@6682496b1da24faaa8a9e146fd0cd025.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sapphira Aggarwal,ou=Peons,dc=bitwarden,dc=com", - email: "AggarwaS@764613c40e224c12ab1c1cb80b18e644.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnna Rodkey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Johnna Rodkey,ou=Administrative,dc=bitwarden,dc=com", - email: "RodkeyJ@a2805efb65eb441e91001eedfa87637b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Alexander Brouthillier,ou=Payroll,dc=bitwarden,dc=com", - email: "BrouthiA@1f70c3bade4e4575a0687e469e22b825.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eudora Jeanes,ou=Product Testing,dc=bitwarden,dc=com", - email: "JeanesE@5fb0b5507509483b9896f4a9d7f4badb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willi Kepekci,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Willi Kepekci,ou=Payroll,dc=bitwarden,dc=com", - email: "KepekciW@40326010316a4eb6ad347835467b575d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tillie Laniel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tillie Laniel,ou=Peons,dc=bitwarden,dc=com", - email: "LanielT@db38fdb09e92403f9dae01242350f08c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tonie Linebarger,ou=Human Resources,dc=bitwarden,dc=com", - email: "LinebarT@63cf6afc822f42ed95e0208899f901bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helene Esser,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Helene Esser,ou=Product Development,dc=bitwarden,dc=com", - email: "EsserH@16792a64200240e9a79e8e2ea0c19fe2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lina Frederick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lina Frederick,ou=Product Testing,dc=bitwarden,dc=com", - email: "FrederiL@fde34f63385e43da8f208ba38082e1b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ktusn Rtprel,ou=Product Testing,dc=bitwarden,dc=com", - email: "RtprelK@ffbf9bf698dd4e7a9f64eeee84b5ec64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sluis Brauer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sluis Brauer,ou=Payroll,dc=bitwarden,dc=com", - email: "BrauerS@f20ae448bfd2461babe4076c52578ba5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bosiljka Valerius,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bosiljka Valerius,ou=Peons,dc=bitwarden,dc=com", - email: "ValeriuB@d1a1137d84784363bf758dcc449d2a19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prity Ruthart,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Prity Ruthart,ou=Peons,dc=bitwarden,dc=com", - email: "RuthartP@258e2d1e3bae4588bdceb50925d13250.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlinda Weddell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arlinda Weddell,ou=Peons,dc=bitwarden,dc=com", - email: "WeddellA@6d359ae3f48f4f958525326d5a17bef5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yatish Drynan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yatish Drynan,ou=Human Resources,dc=bitwarden,dc=com", - email: "DrynanY@c355112aa8644f0dbbdba2f53dfed719.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coila Daniells,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Coila Daniells,ou=Human Resources,dc=bitwarden,dc=com", - email: "DaniellC@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Detlef AlBasi,ou=Product Testing,dc=bitwarden,dc=com", - email: "AlBasiD@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lark Gillstrom,ou=Human Resources,dc=bitwarden,dc=com", - email: "GillstrL@6a80666af164421099cd30f445f1491e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Digby Abrams,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Digby Abrams,ou=Payroll,dc=bitwarden,dc=com", - email: "AbramsD@20e4624ef958401cb7727678bb609188.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalie Hine,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kalie Hine,ou=Payroll,dc=bitwarden,dc=com", - email: "HineK@e283d01de99446bc9d29b5fac0fa1bca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pierette Rodriques,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pierette Rodriques,ou=Management,dc=bitwarden,dc=com", - email: "RodriquP@18569f82a4734a83991f0330d7e468e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ysabel Wesenberg,ou=Product Testing,dc=bitwarden,dc=com", - email: "WesenbeY@06636af2d3fb40bf87cb80da540e167a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marleen Potts,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marleen Potts,ou=Human Resources,dc=bitwarden,dc=com", - email: "PottsM@88d8b282161d4154bfd3a8dda92cc317.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lela Kita,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lela Kita,ou=Payroll,dc=bitwarden,dc=com", - email: "KitaL@c33b0066e4a94f2895f1ce062cf2a5b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angie Kou,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Angie Kou,ou=Peons,dc=bitwarden,dc=com", - email: "KouA@28fe718e73d141bb8aec4e57b4f0fed7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mab Goba,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mab Goba,ou=Management,dc=bitwarden,dc=com", - email: "GobaM@f38a9d14e36244e8ae609b15157f60d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roe Sandberg,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Roe Sandberg,ou=Peons,dc=bitwarden,dc=com", - email: "SandberR@a4ddeff635f14fe6b72b17daaba90627.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randene Wintour,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Randene Wintour,ou=Human Resources,dc=bitwarden,dc=com", - email: "WintourR@8237422e949f4acf92d97f787e6bf098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avie Lannan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Avie Lannan,ou=Product Testing,dc=bitwarden,dc=com", - email: "LannanA@dfe553cd1a3f4695943b7b16fc34c074.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jania Ahluwalia,ou=Product Testing,dc=bitwarden,dc=com", - email: "AhluwalJ@ca8ef169aecd439b84062b84d007e951.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wiele Levert,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wiele Levert,ou=Janitorial,dc=bitwarden,dc=com", - email: "LevertW@5a771b0086d24bceafcaac2a637338d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amata Boles,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Amata Boles,ou=Janitorial,dc=bitwarden,dc=com", - email: "BolesA@68177ed4081e492fb681d0ca752ae8d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lpo Firment,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lpo Firment,ou=Janitorial,dc=bitwarden,dc=com", - email: "FirmentL@f0c19e711ead4be4b0aef294eba8ecf4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katey Carkner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Katey Carkner,ou=Product Development,dc=bitwarden,dc=com", - email: "CarknerK@98610eb59a8644899b5f6a7dba9c32ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vito Mereu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vito Mereu,ou=Janitorial,dc=bitwarden,dc=com", - email: "MereuV@e52bb91930a9487fa1adfb0b49d2e1a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willa Mikelonis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Willa Mikelonis,ou=Payroll,dc=bitwarden,dc=com", - email: "MikelonW@a4b64e3b322940649b1a6e04da490b37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lysy Halicki,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lysy Halicki,ou=Administrative,dc=bitwarden,dc=com", - email: "HalickiL@06d6eb97d0e1492aaf4272e7f2ff9fa8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabriell Aery,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gabriell Aery,ou=Janitorial,dc=bitwarden,dc=com", - email: "AeryG@2837fee1af77497ebd94556ee2aed90f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rosalynd Gopisetty,ou=Product Development,dc=bitwarden,dc=com", - email: "GopisetR@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morgan Christian,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Morgan Christian,ou=Management,dc=bitwarden,dc=com", - email: "ChristiM@c84f52f23bdc49c1957e8a0091babea8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shona Ernst,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shona Ernst,ou=Payroll,dc=bitwarden,dc=com", - email: "ErnstS@729666359ed04f0995bf97703c170436.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melynda Traynor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Melynda Traynor,ou=Peons,dc=bitwarden,dc=com", - email: "TraynorM@acfece6da1e443b5827761c1e0df01ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christer Bortolussi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Christer Bortolussi,ou=Product Development,dc=bitwarden,dc=com", - email: "BortoluC@f8d039f2941a426ba21fb52c89e7b4f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frances Yvon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Frances Yvon,ou=Payroll,dc=bitwarden,dc=com", - email: "YvonF@e7a2d820b36a4b2ca0436c4a7ceb43d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigitta Ipadmin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brigitta Ipadmin,ou=Management,dc=bitwarden,dc=com", - email: "IpadminB@0e6ec851a2a74ae0b90601b63a1f201f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Garland Kenney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Garland Kenney,ou=Administrative,dc=bitwarden,dc=com", - email: "KenneyG@8a50e9e39d6c4166974a9cc7fff3efec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivia Zaloker,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vivia Zaloker,ou=Administrative,dc=bitwarden,dc=com", - email: "ZalokerV@22c1616450914b67aaa0021953493b44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reed Bassignana,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reed Bassignana,ou=Peons,dc=bitwarden,dc=com", - email: "BassignR@e903c41d0e6d47309eaa689127a4e081.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Martha Dunkelman,ou=Human Resources,dc=bitwarden,dc=com", - email: "DunkelmM@552eccf10ef74257ae39c54b44c29e41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robbie Kara,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Robbie Kara,ou=Human Resources,dc=bitwarden,dc=com", - email: "KaraR@248ea67a976b401d946bef01a3dddf9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorri Abe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lorri Abe,ou=Janitorial,dc=bitwarden,dc=com", - email: "AbeL@982a9dc04ec64d818da9977446a91014.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Michaelina Weitzel,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeitzelM@ae5f65ffb5c9447faad9235fe08e30d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norman Schmeler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Norman Schmeler,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchmeleN@9e6632ca10d4463a8725e828e08ec1be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lethia Godse,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lethia Godse,ou=Management,dc=bitwarden,dc=com", - email: "GodseL@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elsy Sigut,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elsy Sigut,ou=Product Testing,dc=bitwarden,dc=com", - email: "SigutE@f943c40608904ca78dc0db77ac3253cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosabella Toothman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rosabella Toothman,ou=Administrative,dc=bitwarden,dc=com", - email: "ToothmaR@946a8a93d7d645ea944ce0f8d3611acd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Royce OColmain,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Royce OColmain,ou=Peons,dc=bitwarden,dc=com", - email: "OColmaiR@469fa45be80f47a9832c4ebf2310f220.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leigha Contine,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leigha Contine,ou=Management,dc=bitwarden,dc=com", - email: "ContineL@cc5c080b822048c1b52dd0d714af0c8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivo Chaurette,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ivo Chaurette,ou=Payroll,dc=bitwarden,dc=com", - email: "ChauretI@7b01d0fa3a5d4a17b706f9bcc42a9ead.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loleta Macoosh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Loleta Macoosh,ou=Payroll,dc=bitwarden,dc=com", - email: "MacooshL@a455dbe4f11547cab81564b3288ee560.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raina Morgan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Raina Morgan,ou=Peons,dc=bitwarden,dc=com", - email: "MorganR@03f807cda02845ada6f9c4f0cc25cb9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laury Madras,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Laury Madras,ou=Product Testing,dc=bitwarden,dc=com", - email: "MadrasL@5b483b0db3b24546950eadd5a11e2bbb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ellis Eggersgluess,ou=Peons,dc=bitwarden,dc=com", - email: "EggersgE@ade29194809c470d9cdfd87fd5b67232.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YuHung Marting,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=YuHung Marting,ou=Product Testing,dc=bitwarden,dc=com", - email: "MartingY@eac3f0cb976143adb3703a9365be1f75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Garry Brashear,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Garry Brashear,ou=Peons,dc=bitwarden,dc=com", - email: "BrasheaG@0ac78d51e7f24be4983e8a7b1f6fd549.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klara Npi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Klara Npi,ou=Janitorial,dc=bitwarden,dc=com", - email: "NpiK@85aee2e172b24229925fd4385b4414cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Calley Slinowsky,ou=Human Resources,dc=bitwarden,dc=com", - email: "SlinowsC@9b6ac34e0ff04d81b84f1dd42d147248.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Robinette Ayukawa,ou=Product Development,dc=bitwarden,dc=com", - email: "AyukawaR@2295c6d141ba49579c21c8c873a50f8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edita VanRijswijk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Edita VanRijswijk,ou=Management,dc=bitwarden,dc=com", - email: "VanRijsE@790e9575d19b49f797a1e46c053b138e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeana Horwood,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jeana Horwood,ou=Product Development,dc=bitwarden,dc=com", - email: "HorwoodJ@c82abe08fb0140599e247f8f838f49b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lianna Horton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lianna Horton,ou=Product Development,dc=bitwarden,dc=com", - email: "HortonL@f5c69553f79a4b59937ac455a61cfbaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Muriel Jesshope,ou=Janitorial,dc=bitwarden,dc=com", - email: "JesshopM@a907d87b6f8a40ee9746474ef0aee487.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felicia Audette,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Felicia Audette,ou=Administrative,dc=bitwarden,dc=com", - email: "AudetteF@de1b941b029b482ba2e81cfa3a5aa97c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jayesh Purson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jayesh Purson,ou=Product Development,dc=bitwarden,dc=com", - email: "PursonJ@d3223b51e74344f49d9004d993927007.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zora Weldon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Zora Weldon,ou=Payroll,dc=bitwarden,dc=com", - email: "WeldonZ@f69c90cc2b8c4a8e9725fac3e3a7a1d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Htd Knobloch,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Htd Knobloch,ou=Human Resources,dc=bitwarden,dc=com", - email: "KnoblocH@3c6215949b3243fca9ffcfc0e897aa4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marco Ainsworth,ou=Janitorial,dc=bitwarden,dc=com", - email: "AinsworM@35cbe55d624d41aaa7e77e5513292711.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rajesh Cwirzen,ou=Janitorial,dc=bitwarden,dc=com", - email: "CwirzenR@e769e682c0c04d6c8ec17a9892d1ed72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sheilakathryn Carli,ou=Product Development,dc=bitwarden,dc=com", - email: "CarliS@6388b4d593ae4d1cb45d59e7f2b8132f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Detlef Morglan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Detlef Morglan,ou=Product Development,dc=bitwarden,dc=com", - email: "MorglanD@99ed379ff20347a2afcfdca050997d8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berthe Peter,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Berthe Peter,ou=Janitorial,dc=bitwarden,dc=com", - email: "PeterB@d6177daa79a64f8eb62f8d79f0c41ce3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alyce Tangren,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alyce Tangren,ou=Management,dc=bitwarden,dc=com", - email: "TangrenA@b134362a785742d6b5a1f5d5c2746e9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grissel Beaudoin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Grissel Beaudoin,ou=Peons,dc=bitwarden,dc=com", - email: "BeaudoiG@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Octavio Mathur,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Octavio Mathur,ou=Peons,dc=bitwarden,dc=com", - email: "MathurO@993d4c54591c4b179bcffd016a7fe8cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elyssa Chui,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elyssa Chui,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChuiE@4f99a2d4c8e343d39b81a3ab47785f76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danica Rubinstein,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Danica Rubinstein,ou=Management,dc=bitwarden,dc=com", - email: "RubinstD@021f182578104bf484110ac6631b5efa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karna Netto,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Karna Netto,ou=Product Development,dc=bitwarden,dc=com", - email: "NettoK@c4198b8f2847457c97c168c8fc0c7617.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Doug Millspaugh,ou=Product Testing,dc=bitwarden,dc=com", - email: "MillspaD@cd28596cfe754eb9be84580279d7d513.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Niki Kalnitsky,ou=Payroll,dc=bitwarden,dc=com", - email: "KalnitsN@172938ae8ac04facad61a01b31d0a0e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wallie Newhook,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wallie Newhook,ou=Product Development,dc=bitwarden,dc=com", - email: "NewhookW@c9f8cbb8d3d848c99fea02136e8a89f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cavin Circe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cavin Circe,ou=Payroll,dc=bitwarden,dc=com", - email: "CirceC@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Notley Salinas,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Notley Salinas,ou=Administrative,dc=bitwarden,dc=com", - email: "SalinasN@0989aaf9c0104bbbb2f202d6a2004237.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catrina Pezzoli,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Catrina Pezzoli,ou=Peons,dc=bitwarden,dc=com", - email: "PezzoliC@41b27b52057643c68d8f76bcab984247.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marrilee Montague,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marrilee Montague,ou=Payroll,dc=bitwarden,dc=com", - email: "MontaguM@ccc8e04b90324a8e82f8a7a8473e9c5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frederica KongQuee,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Frederica KongQuee,ou=Payroll,dc=bitwarden,dc=com", - email: "KongQueF@31248f3f7d37450a9d666ddb80ad3cdd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fianna Rubio,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fianna Rubio,ou=Human Resources,dc=bitwarden,dc=com", - email: "RubioF@b9ea78565da6440e8046b744a6f78fc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neely Godo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Neely Godo,ou=Product Development,dc=bitwarden,dc=com", - email: "GodoN@2d9d879a9a524c4888e7cfdd60a3152d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karil Mielke,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Karil Mielke,ou=Product Development,dc=bitwarden,dc=com", - email: "MielkeK@fe9596dda25448d7a8bea63825cc667a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Livvie Blodgett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Livvie Blodgett,ou=Product Development,dc=bitwarden,dc=com", - email: "BlodgetL@29ffdd3ea48d48d48e57e1480deff23d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ursula Potter,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ursula Potter,ou=Administrative,dc=bitwarden,dc=com", - email: "PotterU@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Laina Ecroyd,ou=Human Resources,dc=bitwarden,dc=com", - email: "EcroydL@7ac3538c32ef4218882c130acb03a83a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charil Garbish,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Charil Garbish,ou=Management,dc=bitwarden,dc=com", - email: "GarbishC@8aed4579481d435c98b14fd5983c7417.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=William Groleau,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=William Groleau,ou=Administrative,dc=bitwarden,dc=com", - email: "GroleauW@a0ce50d00f1c4513b832bf04095b308e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Emmie Gavillucci,ou=Payroll,dc=bitwarden,dc=com", - email: "GavilluE@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LouisRene Albers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=LouisRene Albers,ou=Payroll,dc=bitwarden,dc=com", - email: "AlbersL@43965c00f0db4ca198510569e172ade1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emilie Geldrez,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Emilie Geldrez,ou=Payroll,dc=bitwarden,dc=com", - email: "GeldrezE@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tomasina Willett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tomasina Willett,ou=Peons,dc=bitwarden,dc=com", - email: "WillettT@4a53c85fc87e459ba535fa5859abd60b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prams Bertolini,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Prams Bertolini,ou=Janitorial,dc=bitwarden,dc=com", - email: "BertoliP@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivyanne Mulder,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vivyanne Mulder,ou=Management,dc=bitwarden,dc=com", - email: "MulderV@c0e7d2cafc7f4a0fac99a6e2d0d32d1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Roscoe Nicoletta,ou=Janitorial,dc=bitwarden,dc=com", - email: "NicoletR@0995be80c7f7438a9503246039ba086d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarence Sonier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Clarence Sonier,ou=Janitorial,dc=bitwarden,dc=com", - email: "SonierC@47ed50d743ed4ddaa8e7844725dfae63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emelia Esry,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Emelia Esry,ou=Administrative,dc=bitwarden,dc=com", - email: "EsryE@8967a677365042bf9b4c49a667cc17a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranea Beffert,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ranea Beffert,ou=Janitorial,dc=bitwarden,dc=com", - email: "BeffertR@526978f755294aedac8265e43fde0a0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Orlando Salyniuk,ou=Payroll,dc=bitwarden,dc=com", - email: "SalyniuO@c3ff70181a1748d2af2d2661f51fc5e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saraann Lui,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Saraann Lui,ou=Product Development,dc=bitwarden,dc=com", - email: "LuiS@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ghislain Lindberg,ou=Payroll,dc=bitwarden,dc=com", - email: "LindberG@5b938862d9b84f248e738a32d39aab3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katrina Dauterive,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Katrina Dauterive,ou=Product Development,dc=bitwarden,dc=com", - email: "DauteriK@1477a7ab60474aad9654b79aa14f0737.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Talia Mattson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Talia Mattson,ou=Product Testing,dc=bitwarden,dc=com", - email: "MattsonT@01c954b9634144e3b54bd66a31610430.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Weldon Bresnan,ou=Human Resources,dc=bitwarden,dc=com", - email: "BresnanW@c1cc2a964c6c4e93a2be19842505091b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yevette Lazzara,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yevette Lazzara,ou=Peons,dc=bitwarden,dc=com", - email: "LazzaraY@db3499e49ce34ebd81d2f39ace8a49cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirby Hagley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kirby Hagley,ou=Product Development,dc=bitwarden,dc=com", - email: "HagleyK@fe740c0ae3204fcc953b18216e0c9dcc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marit Montelli,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marit Montelli,ou=Product Testing,dc=bitwarden,dc=com", - email: "MontellM@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monroe Ghulati,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Monroe Ghulati,ou=Payroll,dc=bitwarden,dc=com", - email: "GhulatiM@dce0711c306745dfb235a826c6991d57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolan Bott,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carolan Bott,ou=Janitorial,dc=bitwarden,dc=com", - email: "BottC@3d692d684ca742119b69b3914fc21732.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anet Gehring,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anet Gehring,ou=Product Development,dc=bitwarden,dc=com", - email: "GehringA@8a950b2ad99e488bb8e8780065c87d40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaela Binner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kaela Binner,ou=Human Resources,dc=bitwarden,dc=com", - email: "BinnerK@4d0502da536c4d0b8ac6cf9b766f7317.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ailee Paulhus,ou=Product Testing,dc=bitwarden,dc=com", - email: "PaulhusA@fbf26b520a7b4c988cb7a7f55d34af0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Libor Schanne,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Libor Schanne,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchanneL@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bertie Bounds,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bertie Bounds,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoundsB@f103afa7e026431c8e52eb4ed735c99a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pascale Hutchings,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pascale Hutchings,ou=Administrative,dc=bitwarden,dc=com", - email: "HutchinP@1161e749733c49b2979c0ee6e1e741fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rochella Mazarick,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rochella Mazarick,ou=Administrative,dc=bitwarden,dc=com", - email: "MazaricR@4ad19e5c2a7149b892ada70174e983fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheela Adam,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sheela Adam,ou=Product Development,dc=bitwarden,dc=com", - email: "AdamS@6eda6577067f465b84cdc51153ccba3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norio Crabtree,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Norio Crabtree,ou=Human Resources,dc=bitwarden,dc=com", - email: "CrabtreN@3913d51a20f344409448501766a0f142.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jey Shackley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jey Shackley,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShackleJ@e974b86e9f10486baa2ed0156d74e959.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linda Juhan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Linda Juhan,ou=Administrative,dc=bitwarden,dc=com", - email: "JuhanL@e2cbb69d157949f2a27ec4f04bfab065.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donica Banens,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Donica Banens,ou=Product Testing,dc=bitwarden,dc=com", - email: "BanensD@e4c6dfe9f4dd43a2a1ea392ceb99c9cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Andrei Postlethwaite,ou=Payroll,dc=bitwarden,dc=com", - email: "PostletA@affed2f672a845bead4365ae80e4a101.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marianna Fagan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marianna Fagan,ou=Product Testing,dc=bitwarden,dc=com", - email: "FaganM@9f90762fec514dd6aa8e8cba5782dba8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Otha Mousseau,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Otha Mousseau,ou=Product Development,dc=bitwarden,dc=com", - email: "MousseaO@b5d68bec53824e6ba7d281f697cd7939.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rodrigus Helwege,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rodrigus Helwege,ou=Peons,dc=bitwarden,dc=com", - email: "HelwegeR@f89a515c80574bae9191a55e3c4dfaf6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathe Bolli,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cathe Bolli,ou=Payroll,dc=bitwarden,dc=com", - email: "BolliC@f7a81f2e1780475aad82532745d8c03d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Zsazsa Lindemulder,ou=Human Resources,dc=bitwarden,dc=com", - email: "LindemuZ@5a39c0ae003342a5afebbb7b314c015d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odele Docherty,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Odele Docherty,ou=Peons,dc=bitwarden,dc=com", - email: "DochertO@a59346ad14cf48868393d6c59fa9cec4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allie Corbeil,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Allie Corbeil,ou=Janitorial,dc=bitwarden,dc=com", - email: "CorbeilA@354ddafd53d546cbab9bc884653e06a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marshal Mayo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marshal Mayo,ou=Human Resources,dc=bitwarden,dc=com", - email: "MayoM@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neil Bestavros,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Neil Bestavros,ou=Human Resources,dc=bitwarden,dc=com", - email: "BestavrN@ef157743b5d94ee5a4fdc8f8efde50c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pirooz Rashed,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pirooz Rashed,ou=Administrative,dc=bitwarden,dc=com", - email: "RashedP@a54b6e1d0be04405aa83502caa5550a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corinna Davy,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Corinna Davy,ou=Management,dc=bitwarden,dc=com", - email: "DavyC@7909b3c6de394fb88dda677b48087880.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tesfagaber Luoma,ou=Product Testing,dc=bitwarden,dc=com", - email: "LuomaT@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melford Sehgal,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Melford Sehgal,ou=Product Development,dc=bitwarden,dc=com", - email: "SehgalM@22da63f56f314dcd9cf81575674754db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tsuyoshi Keast,ou=Payroll,dc=bitwarden,dc=com", - email: "KeastT@f9ac72c800c648adb93805922921ecdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juditha Moree,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Juditha Moree,ou=Peons,dc=bitwarden,dc=com", - email: "MoreeJ@4db77e65231d4196be74b445bea3989e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ibby Woroszczuk,ou=Peons,dc=bitwarden,dc=com", - email: "WoroszcI@37965586ec09459fa0ca3d745850a83d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rodrigo Staten,ou=Product Testing,dc=bitwarden,dc=com", - email: "StatenR@1a08913edfd44837a7e737b90b169ef7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerardjan Toulson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gerardjan Toulson,ou=Peons,dc=bitwarden,dc=com", - email: "ToulsonG@697132edecc44b08a924e05590de1c19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=CheeYong BrownGillard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=CheeYong BrownGillard,ou=Management,dc=bitwarden,dc=com", - email: "BrownGiC@918e521a01f947209849cc2803a3bf8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherri Hamilton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sherri Hamilton,ou=Administrative,dc=bitwarden,dc=com", - email: "HamiltoS@548e0585ebf342b985467eca55f4e5f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alvaro Gopaul,ou=Janitorial,dc=bitwarden,dc=com", - email: "GopaulA@b95980740e3e4af9a8e0bdf7f4c5cc79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kameko Lozier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kameko Lozier,ou=Human Resources,dc=bitwarden,dc=com", - email: "LozierK@2837fee1af77497ebd94556ee2aed90f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cariotta Loyst,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cariotta Loyst,ou=Administrative,dc=bitwarden,dc=com", - email: "LoystC@9ce6bf5980404783a2a6de74e34f57ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alisa Centre,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alisa Centre,ou=Administrative,dc=bitwarden,dc=com", - email: "CentreA@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shanon Vexler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shanon Vexler,ou=Janitorial,dc=bitwarden,dc=com", - email: "VexlerS@579e377dbccf49f9a1d3ddb8cb18a335.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Air Falkner,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Air Falkner,ou=Administrative,dc=bitwarden,dc=com", - email: "FalknerA@e6c11ea0a5f743ce85492782888f6da6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Burton Backshall,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Burton Backshall,ou=Product Development,dc=bitwarden,dc=com", - email: "BackshaB@d0791fb71f15494a9e924795bc26c624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frinel Beeston,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Frinel Beeston,ou=Product Development,dc=bitwarden,dc=com", - email: "BeestonF@c2fbe2791d9c4564ab131c65109368d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mahmoud Namiki,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mahmoud Namiki,ou=Peons,dc=bitwarden,dc=com", - email: "NamikiM@1bd9378f4faa43eeb60412b52d7ba309.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hpone Paryag,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hpone Paryag,ou=Management,dc=bitwarden,dc=com", - email: "ParyagH@9aa79f8c69db4e08af4e7f9de400cc67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alison Hunnicutt,ou=Administrative,dc=bitwarden,dc=com", - email: "HunnicuA@b20e95bb821d468897ef10c14e5d7732.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sieber Sallee,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sieber Sallee,ou=Payroll,dc=bitwarden,dc=com", - email: "SalleeS@b39d8f666f1848e6abb69d85d224a354.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rochette Kelleher,ou=Product Testing,dc=bitwarden,dc=com", - email: "KelleheR@f89cfd7b6c774159aa1072f91e39c57d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caria Iribarren,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Caria Iribarren,ou=Payroll,dc=bitwarden,dc=com", - email: "IribarrC@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odelle Translations,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Odelle Translations,ou=Product Development,dc=bitwarden,dc=com", - email: "TranslaO@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carri Putman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carri Putman,ou=Human Resources,dc=bitwarden,dc=com", - email: "PutmanC@e4e6dd48bdee49b19bac8627f30f860e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emelia McDonough,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Emelia McDonough,ou=Product Testing,dc=bitwarden,dc=com", - email: "McDonouE@d7308e0ca15544e4a4a8b07f0f8e915f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Scarlet Netzke,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Scarlet Netzke,ou=Product Development,dc=bitwarden,dc=com", - email: "NetzkeS@04d1c6c3175f4974b260a83a63c42a2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verene Rigstad,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Verene Rigstad,ou=Management,dc=bitwarden,dc=com", - email: "RigstadV@69ee17ca1fce4d84a70a5da5e4623d42.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corette Barbour,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Corette Barbour,ou=Peons,dc=bitwarden,dc=com", - email: "BarbourC@f7bb4a6bddd0428a80f02d8f054f1d38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Becka McConkey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Becka McConkey,ou=Administrative,dc=bitwarden,dc=com", - email: "McConkeB@f1434a2496e04947b22957e2d4157e2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elvina Thomson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Elvina Thomson,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThomsonE@f4bc7e00c89b48dd98661e0980828f00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rosalynd Spitzer,ou=Human Resources,dc=bitwarden,dc=com", - email: "SpitzerR@4583e86a2ba94a5da0ee973472b7f221.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shamshad Kuntova,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shamshad Kuntova,ou=Management,dc=bitwarden,dc=com", - email: "KuntovaS@54f117c8b36b486ab03de0f2d082701e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbey Hews,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Barbey Hews,ou=Payroll,dc=bitwarden,dc=com", - email: "HewsB@a7a2ea5054874ae4b56e15a527bea910.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olympie Sails,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Olympie Sails,ou=Human Resources,dc=bitwarden,dc=com", - email: "SailsO@00ba8548c9214cafaefbf458359d4e04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bessie Kurian,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bessie Kurian,ou=Administrative,dc=bitwarden,dc=com", - email: "KurianB@8f19a5dea8ea45418a7a41a37029db9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardella Nagai,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ardella Nagai,ou=Product Testing,dc=bitwarden,dc=com", - email: "NagaiA@d8616cd8f0a04953a01e474cf74f8ce6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bette Pipit,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bette Pipit,ou=Product Development,dc=bitwarden,dc=com", - email: "PipitB@b417b358872d4f06a467efc0ad01ed42.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sigrid Strock,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sigrid Strock,ou=Human Resources,dc=bitwarden,dc=com", - email: "StrockS@9ef348c30ab2422686d3631e1278083f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benne Baab,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Benne Baab,ou=Administrative,dc=bitwarden,dc=com", - email: "BaabB@baaf0b21059d49b7b0cbaab183707e97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zohar Hauge,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Zohar Hauge,ou=Human Resources,dc=bitwarden,dc=com", - email: "HaugeZ@48f1828297214bd19c99e71d64dfcbf9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Melloney Clairmont,ou=Human Resources,dc=bitwarden,dc=com", - email: "ClairmoM@26ece7db144b41bb92ce5c1250e537b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LyddaJune Challice,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=LyddaJune Challice,ou=Administrative,dc=bitwarden,dc=com", - email: "ChallicL@25d255df81334378bc3576c7c1d51739.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ediva Hately,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ediva Hately,ou=Payroll,dc=bitwarden,dc=com", - email: "HatelyE@ec52acac521a47c8bb3c3eba39b11afe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faizal Vezina,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Faizal Vezina,ou=Payroll,dc=bitwarden,dc=com", - email: "VezinaF@6dd87ab9e5af49468fc97aebdbd7b449.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mehetabel Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", - email: "YarbrouM@d1612f2d13a644a1b4c476bf4354cf19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Champathon Bhatti,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Champathon Bhatti,ou=Management,dc=bitwarden,dc=com", - email: "BhattiC@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Habib Barreyre,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Habib Barreyre,ou=Product Development,dc=bitwarden,dc=com", - email: "BarreyrH@1702c7050ede4a30a493b614c6f96d2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nerita Jansen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nerita Jansen,ou=Payroll,dc=bitwarden,dc=com", - email: "JansenN@f2c84157e6154587ab1b35a9267acfc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rey Bayly,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rey Bayly,ou=Product Testing,dc=bitwarden,dc=com", - email: "BaylyR@ad10fda7d62846699bd55fa5e7fba7a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivian Faruque,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vivian Faruque,ou=Janitorial,dc=bitwarden,dc=com", - email: "FaruqueV@a3ff9ad4378e4e7583f3b4b9731af8f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steve Iyengar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Steve Iyengar,ou=Product Development,dc=bitwarden,dc=com", - email: "IyengarS@2e4bc239cf294f54ac5f0943a69682af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martina Fuson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Martina Fuson,ou=Human Resources,dc=bitwarden,dc=com", - email: "FusonM@0ae738aab8b34e09a528e238e7de4218.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dix NeKueey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dix NeKueey,ou=Human Resources,dc=bitwarden,dc=com", - email: "NeKueeyD@8a81a9b500bd4a66b7be9ae0b34b3c40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Glenda Langenberg,ou=Janitorial,dc=bitwarden,dc=com", - email: "LangenbG@52c0af83c3aa40458e4bfbccce98b0cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Layananda Hrushowy,ou=Human Resources,dc=bitwarden,dc=com", - email: "HrushowL@38306b84edde4354aecf7858df87e85c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maude Wippel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maude Wippel,ou=Human Resources,dc=bitwarden,dc=com", - email: "WippelM@35f4596c2f6f4d62a06cffe0bc4a52f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherye Tanner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cherye Tanner,ou=Product Development,dc=bitwarden,dc=com", - email: "TannerC@7798e7042f70474aba3b67fa0dae49e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edeline Kingdon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Edeline Kingdon,ou=Administrative,dc=bitwarden,dc=com", - email: "KingdonE@4a47e69492284601911d68b00175e387.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nadya Security,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nadya Security,ou=Product Development,dc=bitwarden,dc=com", - email: "SecuritN@b9738f973d174fefb1c145c3c8510e65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Murray Longo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Murray Longo,ou=Peons,dc=bitwarden,dc=com", - email: "LongoM@28e53bb2a33341d2aa3d71254b03f94e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catherin Witzman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Catherin Witzman,ou=Management,dc=bitwarden,dc=com", - email: "WitzmanC@9e6632ca10d4463a8725e828e08ec1be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harrison Salembier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Harrison Salembier,ou=Janitorial,dc=bitwarden,dc=com", - email: "SalembiH@ac35a0f082f64c8fad3930aef071e266.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Judi Nahata,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Judi Nahata,ou=Payroll,dc=bitwarden,dc=com", - email: "NahataJ@5fa2601aad7947d29e66e0d319cf4fe6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rudie Unxlb,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rudie Unxlb,ou=Management,dc=bitwarden,dc=com", - email: "UnxlbR@70f1ce8795a5424f95be4cd2035c7da5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rochell Walkowiak,ou=Product Testing,dc=bitwarden,dc=com", - email: "WalkowiR@68160ac83a0c4294838110992a71a0f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noni Garwood,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Noni Garwood,ou=Janitorial,dc=bitwarden,dc=com", - email: "GarwoodN@5a401695e3b247eaaefdf24718c62818.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melanie Sager,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Melanie Sager,ou=Administrative,dc=bitwarden,dc=com", - email: "SagerM@b9f5d400bf0646fc915b7405c1e68fb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Breena Psklib,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Breena Psklib,ou=Product Testing,dc=bitwarden,dc=com", - email: "PsklibB@78e43a217f1544b688e5b552cf94a4d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeni Gros,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jeni Gros,ou=Peons,dc=bitwarden,dc=com", - email: "GrosJ@26c6bb248ba04843bb1af218af492cce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoda Mejury,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Yoda Mejury,ou=Administrative,dc=bitwarden,dc=com", - email: "MejuryY@772f2352dfda4e68a2e93adac56a7699.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charla Mahbeer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Charla Mahbeer,ou=Payroll,dc=bitwarden,dc=com", - email: "MahbeerC@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roana Jurman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roana Jurman,ou=Administrative,dc=bitwarden,dc=com", - email: "JurmanR@9dfbdbf789f545c2997fc26ecdaa5624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eustacia Efthim,ou=Product Testing,dc=bitwarden,dc=com", - email: "EfthimE@dfe553cd1a3f4695943b7b16fc34c074.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hqs Bresnan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hqs Bresnan,ou=Administrative,dc=bitwarden,dc=com", - email: "BresnanH@e43cc7ce085348f1b4b8706b3e875f12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tuhina Syrett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tuhina Syrett,ou=Product Development,dc=bitwarden,dc=com", - email: "SyrettT@1f071e8813ad43c0a975571fab76b110.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dianemarie Schwaderer,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchwadeD@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lottie Zattiero,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZattierL@765c6bf8e6a844bd84fd3519331c09a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genia Oestreich,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Genia Oestreich,ou=Human Resources,dc=bitwarden,dc=com", - email: "OestreiG@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lizzy Wieland,ou=Janitorial,dc=bitwarden,dc=com", - email: "WielandL@bcf6de0b8d2c44a68286d08f9d47b1f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bianka Zeiger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bianka Zeiger,ou=Management,dc=bitwarden,dc=com", - email: "ZeigerB@e02ec4faef1b4085b1936ed885e8098e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessalin Sauve,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jessalin Sauve,ou=Payroll,dc=bitwarden,dc=com", - email: "SauveJ@a54e1a8d83dc4c3fb078394695fc7ec3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saman Dunik,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Saman Dunik,ou=Product Development,dc=bitwarden,dc=com", - email: "DunikS@e743ff560bc141ac901e6e68b4d4b309.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Giulia Bocservice,ou=Janitorial,dc=bitwarden,dc=com", - email: "BocservG@7e77b31039db4b1f99292c84f6f816dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pierre Latin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pierre Latin,ou=Product Development,dc=bitwarden,dc=com", - email: "LatinP@644890029ffd446eb74105a23250b77a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nariko Hobgood,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nariko Hobgood,ou=Peons,dc=bitwarden,dc=com", - email: "HobgoodN@9ed24949c63a464eabe81723e17de419.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isin Scheck,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Isin Scheck,ou=Administrative,dc=bitwarden,dc=com", - email: "ScheckI@bc1e9c4893b549519fdc2cec6b403596.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tessy McClelland,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tessy McClelland,ou=Human Resources,dc=bitwarden,dc=com", - email: "McClellT@60dd1cbe4aa24d86beb286bcf0b69548.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dany Barel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dany Barel,ou=Human Resources,dc=bitwarden,dc=com", - email: "BarelD@6bff82c20ec04cdbbb19d4912ec16456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lana Ellerman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lana Ellerman,ou=Janitorial,dc=bitwarden,dc=com", - email: "EllermaL@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dusan Bcs,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dusan Bcs,ou=Payroll,dc=bitwarden,dc=com", - email: "BcsD@293ff1600ea248568d3941cc4fb51d60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shekhar Howat,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shekhar Howat,ou=Administrative,dc=bitwarden,dc=com", - email: "HowatS@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dulcie deCHABERT,ou=Product Development,dc=bitwarden,dc=com", - email: "deCHABED@4dd695555b2a49e2b74882d7eff564a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shara Tims,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shara Tims,ou=Management,dc=bitwarden,dc=com", - email: "TimsS@5d35c5b6f750428c9353f8dff621462f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Floyd Shelby,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Floyd Shelby,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShelbyF@f4427bd3a5b545c2b85736658e707e3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mirabelle Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", - email: "RicciutM@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dacie Kato,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dacie Kato,ou=Administrative,dc=bitwarden,dc=com", - email: "KatoD@3e66c64942f744cf87e59fe75cc026a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gilberte Abadines,ou=Janitorial,dc=bitwarden,dc=com", - email: "AbadineG@28bab7013196462088adedc0b611337e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenore Spraggins,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lenore Spraggins,ou=Management,dc=bitwarden,dc=com", - email: "SpraggiL@48f1828297214bd19c99e71d64dfcbf9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prafula Diffee,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Prafula Diffee,ou=Management,dc=bitwarden,dc=com", - email: "DiffeeP@e57fc3c0c9fd4fe59e5be73e693747dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Michiko Schmoe,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchmoeM@acd0b809d8b743afb94979b86a5c2246.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lelah Marcellus,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lelah Marcellus,ou=Peons,dc=bitwarden,dc=com", - email: "MarcellL@169cb65474a04a90af058154d6e97aa7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marion Commons,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marion Commons,ou=Payroll,dc=bitwarden,dc=com", - email: "CommonsM@f20cdd91b77c4fa1af532b2ee7f13b4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gay Golia,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gay Golia,ou=Payroll,dc=bitwarden,dc=com", - email: "GoliaG@da12337d358141f5bd4c9f1cff61b597.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susanetta Technosoft,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Susanetta Technosoft,ou=Peons,dc=bitwarden,dc=com", - email: "TechnosS@b691a9d9d55d48b682fc2aa40cacb560.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jasmina Levasseur,ou=Human Resources,dc=bitwarden,dc=com", - email: "LevasseJ@be3459b8963e4676a7255dc7efa74560.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nha Chytil,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nha Chytil,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChytilN@802b05236c97484db9a6d34278cbb7c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Newton Hoddinott,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Newton Hoddinott,ou=Peons,dc=bitwarden,dc=com", - email: "HoddinoN@7eb3446796544055a8625bc9cff5db0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allyn Aitken,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Allyn Aitken,ou=Product Testing,dc=bitwarden,dc=com", - email: "AitkenA@7946abd9e23746828acbb3d03a0807b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anand Lojewski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Anand Lojewski,ou=Product Testing,dc=bitwarden,dc=com", - email: "LojewskA@c6d1ec6a4914414f92d063e0d067da44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kitt Fetzko,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kitt Fetzko,ou=Payroll,dc=bitwarden,dc=com", - email: "FetzkoK@bd7ed784957343358f080e4bf8b3e472.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fleet Nie,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fleet Nie,ou=Product Testing,dc=bitwarden,dc=com", - email: "NieF@b7e1a16b9cde4b3eaeea7ec65d5e0355.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WeeThong Berube,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=WeeThong Berube,ou=Management,dc=bitwarden,dc=com", - email: "BerubeW@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Manimozhi Morettin,ou=Janitorial,dc=bitwarden,dc=com", - email: "MorettiM@e238991b4ea94ec2a590fa4d2299b05f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farshid Gard,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Farshid Gard,ou=Payroll,dc=bitwarden,dc=com", - email: "GardF@a06bbbc55c33432c98c9104924935152.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rodrigus Lampman,ou=Product Development,dc=bitwarden,dc=com", - email: "LampmanR@3043aaac30ae49c8997df0727179c296.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Violet Potvin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Violet Potvin,ou=Peons,dc=bitwarden,dc=com", - email: "PotvinV@a08efe5b84294d16861c8c7bd814d0f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Indy Calder,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Indy Calder,ou=Administrative,dc=bitwarden,dc=com", - email: "CalderI@f049893b54cd4adb8a60be3288ab94cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwenette Feild,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gwenette Feild,ou=Management,dc=bitwarden,dc=com", - email: "FeildG@e63b193a86324aeaa005190985da3761.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guillermo Leavell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Guillermo Leavell,ou=Administrative,dc=bitwarden,dc=com", - email: "LeavellG@d52f84a4faf148e392088a55b1d91d85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henryetta Raing,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Henryetta Raing,ou=Human Resources,dc=bitwarden,dc=com", - email: "RaingH@6c398eb0cd5c4b4784131d450d82aca7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petronia Bermel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Petronia Bermel,ou=Administrative,dc=bitwarden,dc=com", - email: "BermelP@8a34c70e0b134b1abc06ed65698294f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Arlina Pollinzi,ou=Product Testing,dc=bitwarden,dc=com", - email: "PollinzA@d79e418348c94168b4dd89d46432d83f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Remi Giuliani,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Remi Giuliani,ou=Payroll,dc=bitwarden,dc=com", - email: "GiulianR@14d341098b454a7bb14a0607de600424.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faizal Moussette,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Faizal Moussette,ou=Peons,dc=bitwarden,dc=com", - email: "MoussetF@0a5665832ffe44f8afdc48293ba69573.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Connie Barentsen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Connie Barentsen,ou=Product Development,dc=bitwarden,dc=com", - email: "BarentsC@866dcdf7141f4b00b327974f7403df8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verla Trottier,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Verla Trottier,ou=Administrative,dc=bitwarden,dc=com", - email: "TrottieV@02579819bace4f10858d46919dbea287.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vincente Isip,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vincente Isip,ou=Payroll,dc=bitwarden,dc=com", - email: "IsipV@3ebdc674ebed47c4a4f33a4fcf39c448.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tabbie SchaeferNTMVAA,ou=Administrative,dc=bitwarden,dc=com", - email: "SchaefeT@910f877bb3744ec8a7fde724ecbc2355.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pal Burchby,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pal Burchby,ou=Payroll,dc=bitwarden,dc=com", - email: "BurchbyP@67726c3db6374bb3bfa2e22fd29415c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ibbie Gung,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ibbie Gung,ou=Peons,dc=bitwarden,dc=com", - email: "GungI@0b027bdff1d041629ac882de18aab2e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ned Pownall,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ned Pownall,ou=Janitorial,dc=bitwarden,dc=com", - email: "PownallN@536233742e094d32a93b46e75cbb8e9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucky Carmody,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lucky Carmody,ou=Product Testing,dc=bitwarden,dc=com", - email: "CarmodyL@64262e7f36fb4e62b9763eac72d5b421.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mayumi Presgrove,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mayumi Presgrove,ou=Management,dc=bitwarden,dc=com", - email: "PresgroM@d843134b5a6249eda76a289f48094398.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MunHang Altay,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=MunHang Altay,ou=Peons,dc=bitwarden,dc=com", - email: "AltayM@96682e2a4433480fa87b37b2ffbd15b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Savina Wefers,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Savina Wefers,ou=Administrative,dc=bitwarden,dc=com", - email: "WefersS@2644ea139af74505ae830870e9453a4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjoke NewLab,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marjoke NewLab,ou=Administrative,dc=bitwarden,dc=com", - email: "NewLabM@814dda3cb4844359b194c7c1721b00a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caralie Ferner,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Caralie Ferner,ou=Management,dc=bitwarden,dc=com", - email: "FernerC@fac250dee9af4898ab4d0ae592252d91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julio Marineau,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Julio Marineau,ou=Administrative,dc=bitwarden,dc=com", - email: "MarineaJ@71d3d1f769604a3488d5ddef3b60da65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olivette Crompton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Olivette Crompton,ou=Product Testing,dc=bitwarden,dc=com", - email: "CromptoO@ba5fbd8ccee64957820f429bea9cbd2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roly Slobodrian,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roly Slobodrian,ou=Product Development,dc=bitwarden,dc=com", - email: "SlobodrR@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Partha Archibald,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Partha Archibald,ou=Product Testing,dc=bitwarden,dc=com", - email: "ArchibaP@228bf00bc301425ea3b9e943ef8da200.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emerson Tait,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Emerson Tait,ou=Janitorial,dc=bitwarden,dc=com", - email: "TaitE@16f4ba41e9ce46f887a8d5af57b9057c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claudette Talbot,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Claudette Talbot,ou=Product Testing,dc=bitwarden,dc=com", - email: "TalbotC@c6f2558da4e64d1a92ecfa7046888845.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=AnnHoon Kolesnik,ou=Management,dc=bitwarden,dc=com", - email: "KolesniA@736a95b54bac464a997ec017d18bac14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dominica Nttest,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dominica Nttest,ou=Product Development,dc=bitwarden,dc=com", - email: "NttestD@a5390b0a929f4049987256511e1011a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Theresita Tebbe,ou=Product Testing,dc=bitwarden,dc=com", - email: "TebbeT@f2be683ee5744190957c1b7e8dba3ddd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Peng Dunsmore,ou=Product Testing,dc=bitwarden,dc=com", - email: "DunsmorP@c50001e1264a4acfa5c0640c389ba320.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilak McGruder,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tilak McGruder,ou=Peons,dc=bitwarden,dc=com", - email: "McGrudeT@37bf4a5746434161add8180aecc906d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rieni Faley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rieni Faley,ou=Product Testing,dc=bitwarden,dc=com", - email: "FaleyR@9a209519348642769473b09231da3137.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alice Rist,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alice Rist,ou=Management,dc=bitwarden,dc=com", - email: "RistA@96aca1386b95408bb0fa75eae456680d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nona Diee,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nona Diee,ou=Product Testing,dc=bitwarden,dc=com", - email: "DieeN@59366f30a0164aa7a53680e97db8816b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChongLai Jennings,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=ChongLai Jennings,ou=Product Development,dc=bitwarden,dc=com", - email: "JenningC@b5110eee63164b03a1156fbe465ff053.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zdenka Filkins,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Zdenka Filkins,ou=Administrative,dc=bitwarden,dc=com", - email: "FilkinsZ@a9c59171bde04e7ba8c3ddd4da73b134.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lisbeth Longpre,ou=Human Resources,dc=bitwarden,dc=com", - email: "LongpreL@e4e042389aa64630b74c843d58da1b0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cherilynn Hannula,ou=Human Resources,dc=bitwarden,dc=com", - email: "HannulaC@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adelind Loveday,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Adelind Loveday,ou=Human Resources,dc=bitwarden,dc=com", - email: "LovedayA@05ead9116c4b4fc8909d1d71879a73f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Antoinette Riordan,ou=Human Resources,dc=bitwarden,dc=com", - email: "RiordanA@c659efb530134031a977821791781191.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariet Hotson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mariet Hotson,ou=Product Development,dc=bitwarden,dc=com", - email: "HotsonM@638dc4979c734dc6a0edddc9856d364c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vinnie Golaszewski,ou=Peons,dc=bitwarden,dc=com", - email: "GolaszeV@8aca496809cf4238a39dc0c2b2a9c742.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nirmal Loper,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nirmal Loper,ou=Administrative,dc=bitwarden,dc=com", - email: "LoperN@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhianon Mansi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rhianon Mansi,ou=Product Development,dc=bitwarden,dc=com", - email: "MansiR@0163e1f0b0b44e11ba7d1bbab29d9f5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shamim Pospisil,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shamim Pospisil,ou=Payroll,dc=bitwarden,dc=com", - email: "PospisiS@ee3b17b3006441ea89cd65327cca286b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sukhendu Commons,ou=Product Testing,dc=bitwarden,dc=com", - email: "CommonsS@e796563e8bce48b5ba76fcbb11b9e8e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Powell Brar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Powell Brar,ou=Peons,dc=bitwarden,dc=com", - email: "BrarP@9a3790894cf44bf0b7e534074bf381cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nir Saisho,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nir Saisho,ou=Peons,dc=bitwarden,dc=com", - email: "SaishoN@ab3c86d1ac584fffb00ba8469a8050a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sherill Cantwell,ou=Product Testing,dc=bitwarden,dc=com", - email: "CantwelS@73094f3ce9ac4263881b0e47be23fd15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milissent Bowes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Milissent Bowes,ou=Product Testing,dc=bitwarden,dc=com", - email: "BowesM@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harmonie Luquire,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Harmonie Luquire,ou=Product Development,dc=bitwarden,dc=com", - email: "LuquireH@97df64fd63964d63ae961e1122586e46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dorothea Laughton,ou=Product Testing,dc=bitwarden,dc=com", - email: "LaughtoD@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beth Nolet,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Beth Nolet,ou=Payroll,dc=bitwarden,dc=com", - email: "NoletB@d0494e96e3ad464e9c20a3d7c613cc77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgette Manica,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Georgette Manica,ou=Product Testing,dc=bitwarden,dc=com", - email: "ManicaG@9f4dcfc9947f4a519924493e85b35351.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beitris Linton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Beitris Linton,ou=Human Resources,dc=bitwarden,dc=com", - email: "LintonB@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othella Difilippo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Othella Difilippo,ou=Management,dc=bitwarden,dc=com", - email: "DifilipO@84b57e0771b643809ac58933f98cbf52.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deloris Mattes,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Deloris Mattes,ou=Payroll,dc=bitwarden,dc=com", - email: "MattesD@b34436a247d34fc9bc5677457c93ba78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brittni Holliday,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Brittni Holliday,ou=Product Development,dc=bitwarden,dc=com", - email: "HollidaB@bcc33b39417e4c04a97f5b3c58134988.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pat Pereira,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pat Pereira,ou=Janitorial,dc=bitwarden,dc=com", - email: "PereiraP@4975c1c585e54bc795db4420186bb06b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=LouAnn Kozak,ou=Janitorial,dc=bitwarden,dc=com", - email: "KozakL@8d1dad7a1e434fb6a881d4de0fc41e03.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zanni Edmondson,ou=Product Testing,dc=bitwarden,dc=com", - email: "EdmondsZ@4c978255de304b4eb6660f909451b46e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walliw Marling,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Walliw Marling,ou=Peons,dc=bitwarden,dc=com", - email: "MarlingW@6e40ae9d01a3469990a9e83e8c2f8ec4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susann Biggers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Susann Biggers,ou=Management,dc=bitwarden,dc=com", - email: "BiggersS@5e51d9a3833b42d3a0ca89712e0f4b6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niek Sainsbury,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Niek Sainsbury,ou=Payroll,dc=bitwarden,dc=com", - email: "SainsbuN@a55a0552890b4055ae5195bed49574db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChyeLian Codack,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ChyeLian Codack,ou=Management,dc=bitwarden,dc=com", - email: "CodackC@67c03444c05a42a3b6969db268f587ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bailey Altmann,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bailey Altmann,ou=Janitorial,dc=bitwarden,dc=com", - email: "AltmannB@4231983db0fc4e4dbb0a6c07f8f902a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Glenda Dmsrtime,ou=Peons,dc=bitwarden,dc=com", - email: "DmsrtimG@0af04fcd60da40099a5a068c388bafe2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rich Ruigrok,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rich Ruigrok,ou=Management,dc=bitwarden,dc=com", - email: "RuigrokR@ba4f810ac4254d8dbe9cfd7199a37cf3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mason AbiAad,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mason AbiAad,ou=Peons,dc=bitwarden,dc=com", - email: "AbiAadM@d153ea0cdea446bcae59fcfadb7ae1da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nike Mayfield,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nike Mayfield,ou=Human Resources,dc=bitwarden,dc=com", - email: "MayfielN@e283d01de99446bc9d29b5fac0fa1bca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranson Darden,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ranson Darden,ou=Janitorial,dc=bitwarden,dc=com", - email: "DardenR@f16a2d687f8e42b59a7e0fd83e0707b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=SiuMan Romanowski,ou=Product Testing,dc=bitwarden,dc=com", - email: "RomanowS@893bc48ed45e4ab7ab4ee0815dd34812.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raju Ciochon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Raju Ciochon,ou=Product Development,dc=bitwarden,dc=com", - email: "CiochonR@63ff836ac8c24e04a4d1edd33fa65c85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jerrilee Dunbar,ou=Administrative,dc=bitwarden,dc=com", - email: "DunbarJ@ba6173368f8d45d6bc4e88d832382485.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ealasaid TempleDowning,ou=Janitorial,dc=bitwarden,dc=com", - email: "TempleDE@b05ff67fc97048daa745e10c79506c73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sammy Sourour,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sammy Sourour,ou=Peons,dc=bitwarden,dc=com", - email: "SourourS@02e89016127d40e485d3c85f04f6d436.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theresa Dolson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Theresa Dolson,ou=Janitorial,dc=bitwarden,dc=com", - email: "DolsonT@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lotti Farnum,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lotti Farnum,ou=Payroll,dc=bitwarden,dc=com", - email: "FarnumL@308bfff65d134099bb462e88bbd36698.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fouad Caton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fouad Caton,ou=Product Testing,dc=bitwarden,dc=com", - email: "CatonF@cf49925012a7483a8306930aeb4cf78e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terry Lodeserto,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Terry Lodeserto,ou=Peons,dc=bitwarden,dc=com", - email: "LodeserT@a4626a0d04a64c1083f47ce852f633ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fei Bebee,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fei Bebee,ou=Product Testing,dc=bitwarden,dc=com", - email: "BebeeF@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oral Hamid,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Oral Hamid,ou=Peons,dc=bitwarden,dc=com", - email: "HamidO@a71cdec4b0f443efb562be5952de7f81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anabelle Krater,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anabelle Krater,ou=Human Resources,dc=bitwarden,dc=com", - email: "KraterA@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginnie Vosu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ginnie Vosu,ou=Management,dc=bitwarden,dc=com", - email: "VosuG@ed87fa3a81eb418da1bb630466cba42d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anallese Haufe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anallese Haufe,ou=Janitorial,dc=bitwarden,dc=com", - email: "HaufeA@56d11716ccc04cd3b803f8858fc5a1ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roze Bakkum,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Roze Bakkum,ou=Management,dc=bitwarden,dc=com", - email: "BakkumR@a26084161ba1445494da78b7a16404c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Krystle Jamensky,ou=Product Testing,dc=bitwarden,dc=com", - email: "JamenskK@e6ed933c0a1d45ec83769226267acd7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belvia Aylwin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Belvia Aylwin,ou=Administrative,dc=bitwarden,dc=com", - email: "AylwinB@fb6923d9574749cc9a77b6988394e1a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duong Bannard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Duong Bannard,ou=Administrative,dc=bitwarden,dc=com", - email: "BannardD@10e90e32f8224ce7bbb550670baa2ab8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kees Rashid,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kees Rashid,ou=Janitorial,dc=bitwarden,dc=com", - email: "RashidK@351deec9477e4e51877822ae4f8cd070.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cami Glew,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cami Glew,ou=Management,dc=bitwarden,dc=com", - email: "GlewC@0df8f05e50bc474da42b5a37234e2e7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tien Giuliani,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tien Giuliani,ou=Payroll,dc=bitwarden,dc=com", - email: "GiulianT@6a7e60c1eef24773be3efbf0c4240827.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evie Morin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Evie Morin,ou=Administrative,dc=bitwarden,dc=com", - email: "MorinE@f2c07dab9bd04b82822cc496cad44d9f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorena Godina,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dorena Godina,ou=Peons,dc=bitwarden,dc=com", - email: "GodinaD@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arn Ricketts,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arn Ricketts,ou=Peons,dc=bitwarden,dc=com", - email: "RickettA@7612c1ed110442fbbc70e6069bdde272.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatriz Hagley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Beatriz Hagley,ou=Payroll,dc=bitwarden,dc=com", - email: "HagleyB@417a3a09bd36400f8dce8f57ab33032c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karissa AuYang,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karissa AuYang,ou=Management,dc=bitwarden,dc=com", - email: "AuYangK@0695846df1ff4a078ca865ab0794005c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pankesh Annunziata,ou=Administrative,dc=bitwarden,dc=com", - email: "AnnunziP@87263f2ad4e44ac39562038c9af16152.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Froukje Kennedy,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Froukje Kennedy,ou=Management,dc=bitwarden,dc=com", - email: "KennedyF@e55b43fab5194d70867c5cdfb0b99fcb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hazel Nash,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hazel Nash,ou=Product Development,dc=bitwarden,dc=com", - email: "NashH@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Soyeh Neely,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Soyeh Neely,ou=Product Testing,dc=bitwarden,dc=com", - email: "NeelyS@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WaiChau McHale,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=WaiChau McHale,ou=Product Testing,dc=bitwarden,dc=com", - email: "McHaleW@ea90c3e9804d4eccbf51d816e6665474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathrine Schejbal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kathrine Schejbal,ou=Peons,dc=bitwarden,dc=com", - email: "SchejbaK@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shobana Eisler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shobana Eisler,ou=Management,dc=bitwarden,dc=com", - email: "EislerS@a922ba05488e401e9633fbd1813d714f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joete Stamps,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Joete Stamps,ou=Payroll,dc=bitwarden,dc=com", - email: "StampsJ@85c3b55181514b55979bbf8d48a7d2ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oneida Curnow,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Oneida Curnow,ou=Peons,dc=bitwarden,dc=com", - email: "CurnowO@ea3044bbf20e4e989696a49bb606f948.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naohiko McCray,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Naohiko McCray,ou=Janitorial,dc=bitwarden,dc=com", - email: "McCrayN@04448fada1ea4fa4b445ea9be1736993.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lang DeBoer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lang DeBoer,ou=Product Development,dc=bitwarden,dc=com", - email: "DeBoerL@fff701bd2ea44826a3be41e44496b16d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selime Yuengling,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Selime Yuengling,ou=Peons,dc=bitwarden,dc=com", - email: "YuengliS@b99d09dc15214a99a049d574cca06ad4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dolli Cracknell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dolli Cracknell,ou=Payroll,dc=bitwarden,dc=com", - email: "CrackneD@0477f7500cad42ceb4af441ae4e4ca2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Reggi Eckhart,ou=Janitorial,dc=bitwarden,dc=com", - email: "EckhartR@519077386b7144648a1af65801ba340e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Justino Willhoff,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Justino Willhoff,ou=Janitorial,dc=bitwarden,dc=com", - email: "WillhofJ@756ec4d446d24d4291f75c428b4e0284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ShingCheong Eastus,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ShingCheong Eastus,ou=Management,dc=bitwarden,dc=com", - email: "EastusS@b9e3cd16f2b646b993b7e643861e809b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Said Fran,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Said Fran,ou=Product Development,dc=bitwarden,dc=com", - email: "FranS@6105773677f144b2ba0b3fcab80e7802.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olga Rehbein,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Olga Rehbein,ou=Peons,dc=bitwarden,dc=com", - email: "RehbeinO@00018780c15f455eb74328ce8b255114.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quinta Blezard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Quinta Blezard,ou=Management,dc=bitwarden,dc=com", - email: "BlezardQ@222e3b4f0b4746df8dd6c24b1a79a79b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felisha Linke,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Felisha Linke,ou=Peons,dc=bitwarden,dc=com", - email: "LinkeF@aca976004a314abfbb7dfda7c7926044.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kunitaka Slautterback,ou=Payroll,dc=bitwarden,dc=com", - email: "SlautteK@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vicheara Yanosik,ou=Human Resources,dc=bitwarden,dc=com", - email: "YanosikV@0030e1596d9147918c7c2fdae8f6513c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elisabet Somppi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elisabet Somppi,ou=Administrative,dc=bitwarden,dc=com", - email: "SomppiE@388f37e043f44f87a961652591a7a940.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arda Poluchowska,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Arda Poluchowska,ou=Management,dc=bitwarden,dc=com", - email: "PoluchoA@59a53864c7aa4d7ea9936880199e460a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Claudette Daugavietis,ou=Administrative,dc=bitwarden,dc=com", - email: "DaugaviC@c9b145063e654a36b0f903ec21358b26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valry Agnihotri,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Valry Agnihotri,ou=Peons,dc=bitwarden,dc=com", - email: "AgnihotV@8cf075f892994459a2bb7138294f3585.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerri Rosko,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gerri Rosko,ou=Payroll,dc=bitwarden,dc=com", - email: "RoskoG@87ac1189e97646f890363efe4db63ec0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Merrilee McMasters,ou=Janitorial,dc=bitwarden,dc=com", - email: "McMasteM@f01315dbdd864d028245d0f49a2de87a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farouk Korf,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Farouk Korf,ou=Human Resources,dc=bitwarden,dc=com", - email: "KorfF@756bb6f9687f4cb8b648d97f2eda64b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jeanette Wagner,ou=Human Resources,dc=bitwarden,dc=com", - email: "WagnerJ@0033304ecf264958be4e3649e61343d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Natalya Mussallem,ou=Human Resources,dc=bitwarden,dc=com", - email: "MussallN@6b26c4bc2c534e799205cb4979fba2ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valida Ribi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Valida Ribi,ou=Administrative,dc=bitwarden,dc=com", - email: "RibiV@f090dc2fb4b84377af0ef3308a0fb4cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maynie Levert,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maynie Levert,ou=Janitorial,dc=bitwarden,dc=com", - email: "LevertM@a97141a360d8445daa6a6439dfbbd290.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Floria DAoust,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Floria DAoust,ou=Product Development,dc=bitwarden,dc=com", - email: "DAoustF@d69ecc02f7cc498a8c0f20edc1735b63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Den Ormesher,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Den Ormesher,ou=Administrative,dc=bitwarden,dc=com", - email: "OrmesheD@ec10cc023e454fb0bbdd9208be69f4fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lashonda Reynolds,ou=Administrative,dc=bitwarden,dc=com", - email: "ReynoldL@7af30a4b3f91418e9e6fee4aafd165df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brier VanNeste,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brier VanNeste,ou=Janitorial,dc=bitwarden,dc=com", - email: "VanNestB@7b25e3cdf8714ae1a2b9340b249e36c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kayla Schenkel,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchenkeK@71c9697cb5b44c66abac282f624d120e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pars Fleury,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pars Fleury,ou=Administrative,dc=bitwarden,dc=com", - email: "FleuryP@c3d2d2c0ad16421093e58b9a80d13fae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roshelle Latif,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Roshelle Latif,ou=Payroll,dc=bitwarden,dc=com", - email: "LatifR@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Annelise Hemphill,ou=Product Testing,dc=bitwarden,dc=com", - email: "HemphilA@7648a4a2dba943e48a8b8e6e57e6c163.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rashmi Yazdani,ou=Product Testing,dc=bitwarden,dc=com", - email: "YazdaniR@a2522479a3ee40098579019920206caf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micah Eva,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Micah Eva,ou=Product Testing,dc=bitwarden,dc=com", - email: "EvaM@e133020db6a24c759a701885b4f7f426.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdalen Howe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Magdalen Howe,ou=Payroll,dc=bitwarden,dc=com", - email: "HoweM@21063d63862a4b1aa0c4c81ad5ebd22a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Becki Hornbeek,ou=Human Resources,dc=bitwarden,dc=com", - email: "HornbeeB@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jorrie Daigle,ou=Janitorial,dc=bitwarden,dc=com", - email: "DaigleJ@2f0ef4b1759e41b483f68723f29c3b29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gloriane Knitl,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gloriane Knitl,ou=Peons,dc=bitwarden,dc=com", - email: "KnitlG@5da7177901fc42a3a2e0603d9a2f29e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Issy Paget,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Issy Paget,ou=Product Testing,dc=bitwarden,dc=com", - email: "PagetI@865a836daa5b4648b95df389d46126d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Justinn Mazey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Justinn Mazey,ou=Product Testing,dc=bitwarden,dc=com", - email: "MazeyJ@a2c6fbef8f1b420994ca3b288c3969a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nan Wellard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nan Wellard,ou=Human Resources,dc=bitwarden,dc=com", - email: "WellardN@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryana Sathe,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bryana Sathe,ou=Peons,dc=bitwarden,dc=com", - email: "SatheB@13da8e4c7f9644f5a68d87ae81657c2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pavla Keiser,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pavla Keiser,ou=Administrative,dc=bitwarden,dc=com", - email: "KeiserP@d424430a319442dd8ccc18dd79f178d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myriam Blezard,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Myriam Blezard,ou=Janitorial,dc=bitwarden,dc=com", - email: "BlezardM@9dd46e72015c4014b5f15189a14009e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mehmet Cuper,ou=Janitorial,dc=bitwarden,dc=com", - email: "CuperM@7f63e51441fc4e1aab1257e0bb185e66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shobana Berna,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shobana Berna,ou=Human Resources,dc=bitwarden,dc=com", - email: "BernaS@231bc329012a4b71830de92a0a747aec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginni Felske,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ginni Felske,ou=Product Testing,dc=bitwarden,dc=com", - email: "FelskeG@7e7a2a61072144f1bbb5c3973fb03067.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HingFai Shearer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=HingFai Shearer,ou=Management,dc=bitwarden,dc=com", - email: "ShearerH@7969b0806fba4e3d88a5a3efd04eb548.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Yuji Dilallo,ou=Product Testing,dc=bitwarden,dc=com", - email: "DilalloY@36b4191e06e749fa9ae622f109b3b75b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alissa Junkin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alissa Junkin,ou=Administrative,dc=bitwarden,dc=com", - email: "JunkinA@c219bf062505483787e15d8eef41ed24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryon Valko,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bryon Valko,ou=Payroll,dc=bitwarden,dc=com", - email: "ValkoB@ea79beffe5bf4069ab41a806bbd716f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matt Casey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Matt Casey,ou=Peons,dc=bitwarden,dc=com", - email: "CaseyM@602d8f6d1a6449018081ad850b50b27b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lizette Klappholz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lizette Klappholz,ou=Peons,dc=bitwarden,dc=com", - email: "KlapphoL@753b4215422c4be18da9d3838b304ad2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryl Petrick,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Maryl Petrick,ou=Peons,dc=bitwarden,dc=com", - email: "PetrickM@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thalia Felske,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Thalia Felske,ou=Payroll,dc=bitwarden,dc=com", - email: "FelskeT@7ea385d9791745059f886b750a2e50fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Louisa Macoosh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Louisa Macoosh,ou=Product Development,dc=bitwarden,dc=com", - email: "MacooshL@4376a00e71594ef1b26e2e0a8e02ecaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dino Kurauchi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dino Kurauchi,ou=Peons,dc=bitwarden,dc=com", - email: "KurauchD@df1443771fec4b9b851db7a87599995c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heida Kyoung,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Heida Kyoung,ou=Payroll,dc=bitwarden,dc=com", - email: "KyoungH@fad13712be524b2bb53fd1f676c9976a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fleurette Neyman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fleurette Neyman,ou=Management,dc=bitwarden,dc=com", - email: "NeymanF@e9ed05b9fb474121a884b5f5eaada8bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Zulfikar Rigsbee,ou=Peons,dc=bitwarden,dc=com", - email: "RigsbeeZ@3b4c579bb3694dc89217301699689565.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susanne Keates,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Susanne Keates,ou=Management,dc=bitwarden,dc=com", - email: "KeatesS@7ec11ccdde9a4f8c84d9525ea5fe4ff1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jurgen Proudfoot,ou=Janitorial,dc=bitwarden,dc=com", - email: "ProudfoJ@a90852e05a704b189e86f5be23a6fead.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alvinia Wilkes,ou=Product Development,dc=bitwarden,dc=com", - email: "WilkesA@8415106c9bc644ca88df9b8987cb1aef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alyce Gravely,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alyce Gravely,ou=Janitorial,dc=bitwarden,dc=com", - email: "GravelyA@8e58146437ae4809935cbbfea9366714.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulo Whidden,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Paulo Whidden,ou=Product Development,dc=bitwarden,dc=com", - email: "WhiddenP@3bf5412f9df744cdbfb41ee6ad860514.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lee Abbott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lee Abbott,ou=Human Resources,dc=bitwarden,dc=com", - email: "AbbottL@4160dbb07b29483d98d27e9c15a9e3bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mustapha Tull,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mustapha Tull,ou=Payroll,dc=bitwarden,dc=com", - email: "TullM@07bd916cf158429f8580a7fcf2ca8d82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tsing Oakley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tsing Oakley,ou=Management,dc=bitwarden,dc=com", - email: "OakleyT@aab792405d0e421e9faa1d2235dbde11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ozlem Nys,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ozlem Nys,ou=Administrative,dc=bitwarden,dc=com", - email: "NysO@9050ca894d2e4faaa4c16fc83c480a1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Canute Fran,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Canute Fran,ou=Payroll,dc=bitwarden,dc=com", - email: "FranC@8029b2d4dc2441e188d25c43ec86afd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erina RTP,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Erina RTP,ou=Payroll,dc=bitwarden,dc=com", - email: "RTPE@af7219707df54fa3a07b2c4c1c18c6db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Efdal Maund,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Efdal Maund,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaundE@ea33ceb5d67949f9a3def71720aea530.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peggy Corpening,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Peggy Corpening,ou=Janitorial,dc=bitwarden,dc=com", - email: "CorpeniP@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hiren Bopp,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hiren Bopp,ou=Peons,dc=bitwarden,dc=com", - email: "BoppH@f0be25ac1a9142fbafef7971f03b3c8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neala Seeds,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Neala Seeds,ou=Management,dc=bitwarden,dc=com", - email: "SeedsN@b9fd76bcb36c44ce9fb6bf40da399946.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Torie Seamster,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Torie Seamster,ou=Janitorial,dc=bitwarden,dc=com", - email: "SeamsteT@dc389f3c42ad495288e841e30bcf37cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rajinderpal Mattson,ou=Product Testing,dc=bitwarden,dc=com", - email: "MattsonR@8225e046db804e04b9a2cde5ffe23088.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Louella Plmcoop,ou=Human Resources,dc=bitwarden,dc=com", - email: "PlmcoopL@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benoit Heilsnis,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Benoit Heilsnis,ou=Management,dc=bitwarden,dc=com", - email: "HeilsniB@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madalyn Timmons,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Madalyn Timmons,ou=Administrative,dc=bitwarden,dc=com", - email: "TimmonsM@d5949360307842458664ec19684f5fbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frinel Reiser,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Frinel Reiser,ou=Janitorial,dc=bitwarden,dc=com", - email: "ReiserF@4038f35398434f35b757e53f593f7609.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tara LeBlanc,ou=Product Testing,dc=bitwarden,dc=com", - email: "LeBlancT@59110a8eb1b44c7887a8222252c623b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harish Shukor,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Harish Shukor,ou=Administrative,dc=bitwarden,dc=com", - email: "ShukorH@e94b60e385324317a966bf045a1adf9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felice Hazenboom,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Felice Hazenboom,ou=Management,dc=bitwarden,dc=com", - email: "HazenboF@f77e0f58a0a6420b98bdf66cba559331.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorna Kreimer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lorna Kreimer,ou=Management,dc=bitwarden,dc=com", - email: "KreimerL@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Raoul VieillardBaron,ou=Payroll,dc=bitwarden,dc=com", - email: "VieillaR@9631cf83572b457187e3e13135609236.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rheal Lauten,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rheal Lauten,ou=Management,dc=bitwarden,dc=com", - email: "LautenR@52c6c82549d445678721da442aca8e53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivi Vexler,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vivi Vexler,ou=Human Resources,dc=bitwarden,dc=com", - email: "VexlerV@655d3e1ee97a47bbb182f0f8f120b20e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Timothy KnesMaxwell,ou=Peons,dc=bitwarden,dc=com", - email: "KnesMaxT@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leigha Elwood,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leigha Elwood,ou=Payroll,dc=bitwarden,dc=com", - email: "ElwoodL@218c25dbb17f4d33a804e7f553e646ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Basia Smyth,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Basia Smyth,ou=Peons,dc=bitwarden,dc=com", - email: "SmythB@a08e5c7ab6bd42a9af2ba6fcd91cbe9f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gilberta Doshi,ou=Product Testing,dc=bitwarden,dc=com", - email: "DoshiG@ab4945aa25ed4d9d93fe1199c4fd7f3e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mario Cassidy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mario Cassidy,ou=Product Testing,dc=bitwarden,dc=com", - email: "CassidyM@263d73d48ee5419ea1c676473e08abd9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amy Rafol,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Amy Rafol,ou=Janitorial,dc=bitwarden,dc=com", - email: "RafolA@5a6fbc14dafa43aa8f4929e962d562ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lennart Shultz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lennart Shultz,ou=Payroll,dc=bitwarden,dc=com", - email: "ShultzL@e06a3ea69e0543f694c26fcc29d8e66a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherwood Caton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sherwood Caton,ou=Janitorial,dc=bitwarden,dc=com", - email: "CatonS@b6cc594207744e52965d98de10453ef4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tesa Suprick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tesa Suprick,ou=Management,dc=bitwarden,dc=com", - email: "SuprickT@ff246c4446e74d80b9a0be3db943a949.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryl Fleugel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Maryl Fleugel,ou=Peons,dc=bitwarden,dc=com", - email: "FleugelM@3b31b1e22b674d48829733c162895a88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarine Hauge,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clarine Hauge,ou=Peons,dc=bitwarden,dc=com", - email: "HaugeC@a774bfe9f410429f835439e7192aaefa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cordy Ghossein,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cordy Ghossein,ou=Administrative,dc=bitwarden,dc=com", - email: "GhosseiC@dcff8ad1dc3f4785b5ae7b1adb2fe760.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Judith Fuqua,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Judith Fuqua,ou=Peons,dc=bitwarden,dc=com", - email: "FuquaJ@7ac8324ed047496d93c460651ba38b86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurine Boucher,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maurine Boucher,ou=Product Testing,dc=bitwarden,dc=com", - email: "BoucherM@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Billie Shoulars,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Billie Shoulars,ou=Product Development,dc=bitwarden,dc=com", - email: "ShoularB@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trever Shearer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Trever Shearer,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShearerT@5916185da56942a89544e9165bcd412d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jocelin Balakrishnan,ou=Payroll,dc=bitwarden,dc=com", - email: "BalakriJ@14d1b49506834e5c9ccc77fc2529566f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquie Desilets,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jacquie Desilets,ou=Product Development,dc=bitwarden,dc=com", - email: "DesiletJ@19dd9c11e1e24ba5acf8058772d38ba6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Uday Hoffpauir,ou=Administrative,dc=bitwarden,dc=com", - email: "HoffpauU@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramiz Gung,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ramiz Gung,ou=Administrative,dc=bitwarden,dc=com", - email: "GungR@1bf42132d9e3428b965ff134eb4c90cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Windy Sadeghi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Windy Sadeghi,ou=Product Development,dc=bitwarden,dc=com", - email: "SadeghiW@b9931a18cd464837927f1e3fda3b9311.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=QuangTrung Worsley,ou=Human Resources,dc=bitwarden,dc=com", - email: "WorsleyQ@29304bc9f76b483ca16f5ea531e7bcf1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassey Papp,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cassey Papp,ou=Payroll,dc=bitwarden,dc=com", - email: "PappC@8a0ffcfb089f41e2a9b8a526ad5a6649.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurelia Hann,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Aurelia Hann,ou=Human Resources,dc=bitwarden,dc=com", - email: "HannA@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Saibal Bennatt,ou=Human Resources,dc=bitwarden,dc=com", - email: "BennattS@8b0e9ea1f038436b807e98b4a43ebc09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rani Korpela,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rani Korpela,ou=Product Testing,dc=bitwarden,dc=com", - email: "KorpelaR@108017314a624d21908ec502dfe2ba35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danni Tsuji,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Danni Tsuji,ou=Product Testing,dc=bitwarden,dc=com", - email: "TsujiD@74874b1f59f14645addb6739912642a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fredia Handschy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fredia Handschy,ou=Human Resources,dc=bitwarden,dc=com", - email: "HandschF@75222612f09a48669122f28219f497da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verna Muldoon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Verna Muldoon,ou=Janitorial,dc=bitwarden,dc=com", - email: "MuldoonV@0fc5b098eca54d018d5f544f351b55a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bjorn Treen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bjorn Treen,ou=Human Resources,dc=bitwarden,dc=com", - email: "TreenB@1328e218756d4754a97476c1079975d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Omayma Dekeyser,ou=Payroll,dc=bitwarden,dc=com", - email: "DekeyseO@9bf9dafac536489a824f4a8be21bc745.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Garth Callery,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Garth Callery,ou=Payroll,dc=bitwarden,dc=com", - email: "CalleryG@b4277bbde59048f39a27a7d14145a06f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Livvie VanOorschot,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Livvie VanOorschot,ou=Peons,dc=bitwarden,dc=com", - email: "VanOorsL@fd1544a938044a8db9c9f3fe2943b130.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anderson Hockaday,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Anderson Hockaday,ou=Peons,dc=bitwarden,dc=com", - email: "HockadaA@1d41a9185db448b89563a6b96b582da2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaia Archer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kaia Archer,ou=Payroll,dc=bitwarden,dc=com", - email: "ArcherK@24654ed939354e3da65d9c0370b72da6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bethany Buder,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bethany Buder,ou=Product Testing,dc=bitwarden,dc=com", - email: "BuderB@010c83cd95d146b392f7ca822e61fa73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lyssa Ranieri,ou=Product Development,dc=bitwarden,dc=com", - email: "RanieriL@c03f4de271664bdb800593169930d556.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willie Godse,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Willie Godse,ou=Janitorial,dc=bitwarden,dc=com", - email: "GodseW@f75201d6bca8489ca55858f0848a1669.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nichole Shurtleff,ou=Administrative,dc=bitwarden,dc=com", - email: "ShurtleN@cb6528fc9c7340cb803e788c0a111c6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaye Tjia,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gaye Tjia,ou=Payroll,dc=bitwarden,dc=com", - email: "TjiaG@a85c3929256747e4a90337c3ba0f9538.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valencia Claise,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Valencia Claise,ou=Janitorial,dc=bitwarden,dc=com", - email: "ClaiseV@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loria Buckley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Loria Buckley,ou=Administrative,dc=bitwarden,dc=com", - email: "BuckleyL@cfdd74fbc82d447189196d6325d87684.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Christiane Sydoryk,ou=Payroll,dc=bitwarden,dc=com", - email: "SydorykC@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shahram Campeau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shahram Campeau,ou=Janitorial,dc=bitwarden,dc=com", - email: "CampeauS@81fb0b932b3945ce818faf5c44a57597.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fanchette Zaman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fanchette Zaman,ou=Administrative,dc=bitwarden,dc=com", - email: "ZamanF@520f892e74614b6eaf9cfa5ff5ab84c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Junk Nishith,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Junk Nishith,ou=Peons,dc=bitwarden,dc=com", - email: "NishithJ@1177792fc11347bea581d955434fd518.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bennett Biage,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bennett Biage,ou=Peons,dc=bitwarden,dc=com", - email: "BiageB@cffeb78804aa490585f0a6cc8cbc0f74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klazien Propes,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Klazien Propes,ou=Payroll,dc=bitwarden,dc=com", - email: "PropesK@dd687ab076584ccca8478641e789ca39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kenneth DAnjou,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kenneth DAnjou,ou=Peons,dc=bitwarden,dc=com", - email: "DAnjouK@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parviz Shahen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Parviz Shahen,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShahenP@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Veda Hunsucker,ou=Janitorial,dc=bitwarden,dc=com", - email: "HunsuckV@e6b52be13e984c2c8799a67382d2c196.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coleen Litherland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Coleen Litherland,ou=Janitorial,dc=bitwarden,dc=com", - email: "LitherlC@8a82552e24c34c32a05d56cde3562a9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChongLai Hingtgen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ChongLai Hingtgen,ou=Management,dc=bitwarden,dc=com", - email: "HingtgeC@411afe1416f249ecaeca51c1080b0066.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Izabel Heeralall,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Izabel Heeralall,ou=Product Development,dc=bitwarden,dc=com", - email: "HeeralaI@86e5c38e7f5c41538bf306ddacec173d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rueben Dynie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rueben Dynie,ou=Product Development,dc=bitwarden,dc=com", - email: "DynieR@59b31ced00714ba083da3568d5c3fc53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lolita Mecteau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lolita Mecteau,ou=Payroll,dc=bitwarden,dc=com", - email: "MecteauL@15e1dad937154f5596069e31511d5e99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gunars Rafflin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gunars Rafflin,ou=Product Development,dc=bitwarden,dc=com", - email: "RafflinG@781f1406846947ac8e77d85a552d214c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thad Besnier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Thad Besnier,ou=Human Resources,dc=bitwarden,dc=com", - email: "BesnierT@86960440b39e484991dab5509dd065da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonard Ireland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Leonard Ireland,ou=Janitorial,dc=bitwarden,dc=com", - email: "IrelandL@6fb157970cd743f9add2879c395cda3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jany Lotz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jany Lotz,ou=Product Testing,dc=bitwarden,dc=com", - email: "LotzJ@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aretha Mensinkai,ou=Product Testing,dc=bitwarden,dc=com", - email: "MensinkA@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sultan Sergo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sultan Sergo,ou=Human Resources,dc=bitwarden,dc=com", - email: "SergoS@08adbe0d28a046d4a737480e8f7a8864.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ninnetta Luzarraga,ou=Administrative,dc=bitwarden,dc=com", - email: "LuzarraN@38fa64796bc14d52bff67c18f15afb33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Roxana VandenHeuvel,ou=Human Resources,dc=bitwarden,dc=com", - email: "VandenHR@ba6a021b4ab04e618e804649a47d46ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erena Mersinger,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Erena Mersinger,ou=Janitorial,dc=bitwarden,dc=com", - email: "MersingE@7670182abb394f41a5633ad118cf9427.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nitin Operators,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nitin Operators,ou=Product Development,dc=bitwarden,dc=com", - email: "OperatoN@158d3f3fe926431185097653519b63f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hennrietta Siewert,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hennrietta Siewert,ou=Management,dc=bitwarden,dc=com", - email: "SiewertH@c91f0550b80f407f9309a7740af038d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=JeanRoch Kosturik,ou=Human Resources,dc=bitwarden,dc=com", - email: "KosturiJ@fa1af835a33740e2a57a5bcf70758d5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othelia Solodko,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Othelia Solodko,ou=Peons,dc=bitwarden,dc=com", - email: "SolodkoO@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huong Commazzi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Huong Commazzi,ou=Product Testing,dc=bitwarden,dc=com", - email: "CommazzH@43a2075086314e66b15465a3ec778b06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duljit Zbuda,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Duljit Zbuda,ou=Payroll,dc=bitwarden,dc=com", - email: "ZbudaD@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thang Bushnell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Thang Bushnell,ou=Payroll,dc=bitwarden,dc=com", - email: "BushnelT@1ea928fc24024e4dbf51eb3081589728.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carri Gary,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carri Gary,ou=Human Resources,dc=bitwarden,dc=com", - email: "GaryC@ca74af6c5dcc4f0b974e414c7310f581.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vance Marschewaki,ou=Product Testing,dc=bitwarden,dc=com", - email: "MarscheV@92ea67fb39f84becbbf887d7485c3c5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valli Carlebach,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Valli Carlebach,ou=Product Development,dc=bitwarden,dc=com", - email: "CarlebaV@01d1aca7cbb94392b78f9069af19437c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobb Lacosse,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bobb Lacosse,ou=Peons,dc=bitwarden,dc=com", - email: "LacosseB@468db28ee3ec432fadb0f7251c3b2864.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brunhilda Smale,ou=Janitorial,dc=bitwarden,dc=com", - email: "SmaleB@67a50420f0564b4b9d502195a9eb7324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abby Presutti,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Abby Presutti,ou=Administrative,dc=bitwarden,dc=com", - email: "PresuttA@886606fb40e04b00b9dac2bed959f0a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ilsa Waugh,ou=Janitorial,dc=bitwarden,dc=com", - email: "WaughI@7bb49167acf14fb699745413bf51b4ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cheuk Legrandvallet,ou=Product Testing,dc=bitwarden,dc=com", - email: "LegrandC@fec32bd067f043f9ace8cd549f8f376e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivie Lauson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vivie Lauson,ou=Janitorial,dc=bitwarden,dc=com", - email: "LausonV@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Luciana Gilliland,ou=Janitorial,dc=bitwarden,dc=com", - email: "GillilaL@5eb9182fed7b491098a3a7edcd1734b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geraldine McLennan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Geraldine McLennan,ou=Management,dc=bitwarden,dc=com", - email: "McLennaG@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glenda Lai,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Glenda Lai,ou=Product Development,dc=bitwarden,dc=com", - email: "LaiG@ae53aabd10664b19a046cac496931fe5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lind Zeiger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lind Zeiger,ou=Administrative,dc=bitwarden,dc=com", - email: "ZeigerL@ac23a3efb4fc4c9b913a615742b5cec6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valina Raaflaub,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Valina Raaflaub,ou=Administrative,dc=bitwarden,dc=com", - email: "RaaflauV@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susanne Alink,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Susanne Alink,ou=Payroll,dc=bitwarden,dc=com", - email: "AlinkS@f80ee53b420043fbaade7eda6821c2a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Al Wrigley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Al Wrigley,ou=Human Resources,dc=bitwarden,dc=com", - email: "WrigleyA@388d6df3272e41188b24fb047a0d1f64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elizabeth Brassem,ou=Payroll,dc=bitwarden,dc=com", - email: "BrassemE@e0d712a3d6444bfb88c4e181c5b5e72d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laurie Bijons,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Laurie Bijons,ou=Administrative,dc=bitwarden,dc=com", - email: "BijonsL@d957d37e990148fd9b9079128818783d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Begum Minyard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Begum Minyard,ou=Human Resources,dc=bitwarden,dc=com", - email: "MinyardB@6b490fc40c68440ca61573fe5b83533b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hotline Au,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hotline Au,ou=Product Development,dc=bitwarden,dc=com", - email: "AuH@a220f117ba9a47bf841474c3d9809325.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cornelle Coupal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cornelle Coupal,ou=Peons,dc=bitwarden,dc=com", - email: "CoupalC@006106eb4fa5430982fa52048d307012.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vishwa Prodmgmt,ou=Product Testing,dc=bitwarden,dc=com", - email: "ProdmgmV@7747f5fffb014d46a2a05d592c7bbe1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Turkey Moser,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Turkey Moser,ou=Product Development,dc=bitwarden,dc=com", - email: "MoserT@3ae6b803292e4da4b28cd13a1bfe807a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Warwick Mau,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Warwick Mau,ou=Product Testing,dc=bitwarden,dc=com", - email: "MauW@964bc78b98164950b5c94e42f0381893.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=WeeSeng AbiAad,ou=Product Testing,dc=bitwarden,dc=com", - email: "AbiAadW@fd05e86a9d6648ff83b1905135704728.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wynne Clow,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Wynne Clow,ou=Payroll,dc=bitwarden,dc=com", - email: "ClowW@ace8aeb1c7ed45ec9b1e40da691d3781.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelly Keller,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shelly Keller,ou=Product Testing,dc=bitwarden,dc=com", - email: "KellerS@539cce6ead8749dbb15039351f6600f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ole Carbajal,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ole Carbajal,ou=Administrative,dc=bitwarden,dc=com", - email: "CarbajaO@befc232b3f4240ada061cd42724f306e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Richardson Luxford,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Richardson Luxford,ou=Management,dc=bitwarden,dc=com", - email: "LuxfordR@2ec15169d3824bb991e5ec642147de0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Breanne Tassy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Breanne Tassy,ou=Peons,dc=bitwarden,dc=com", - email: "TassyB@108e0aee5d8240a1ab913e4b9c6c59ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Austina Acree,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Austina Acree,ou=Human Resources,dc=bitwarden,dc=com", - email: "AcreeA@0115872801044ba284591166aa6c228d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gen Rushton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gen Rushton,ou=Peons,dc=bitwarden,dc=com", - email: "RushtonG@7e5dd3d40d75462fa1e8cd66dc2520cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lebbie Lortie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lebbie Lortie,ou=Management,dc=bitwarden,dc=com", - email: "LortieL@2bebf972d05d4565b74cc490d2d76c19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geoff Achcar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Geoff Achcar,ou=Payroll,dc=bitwarden,dc=com", - email: "AchcarG@a035bec181ea4cd9abd3953e80704bef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hollie Amir,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hollie Amir,ou=Payroll,dc=bitwarden,dc=com", - email: "AmirH@5b8fdd487f414248bc005f588420c84d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Timm Alvarez,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Timm Alvarez,ou=Human Resources,dc=bitwarden,dc=com", - email: "AlvarezT@37f6e89a491b4e36b50bf46647ad8a4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huan Adornato,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Huan Adornato,ou=Product Development,dc=bitwarden,dc=com", - email: "AdornatH@0d5ea7c8c89145008270f344ad787afd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Margarethe Plaisance,ou=Human Resources,dc=bitwarden,dc=com", - email: "PlaisanM@e9c23ff2d9044043850cca96d60bbdf5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Meredith Kyzer,ou=Product Testing,dc=bitwarden,dc=com", - email: "KyzerM@b827ba5736ae48268de38db3e9e259c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reynold Meletios,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Reynold Meletios,ou=Janitorial,dc=bitwarden,dc=com", - email: "MeletioR@4284ced1de0045e2ba27e1b8bfd75a64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Britney Farrell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Britney Farrell,ou=Management,dc=bitwarden,dc=com", - email: "FarrellB@68cfba969ba74400992bfae87ff5159e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marne Tougas,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marne Tougas,ou=Janitorial,dc=bitwarden,dc=com", - email: "TougasM@53866fe0b2f743ba8c1060bb63e44fe7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyanna Goff,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dyanna Goff,ou=Payroll,dc=bitwarden,dc=com", - email: "GoffD@073188fe54434a759fdc0baa318abab1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laverne NetTeam,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Laverne NetTeam,ou=Peons,dc=bitwarden,dc=com", - email: "NetTeamL@d1d366221ba74192a46f7f104d0479c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genny Bladon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Genny Bladon,ou=Janitorial,dc=bitwarden,dc=com", - email: "BladonG@8227646c55034cf9b21757fce681b53f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sask Griswold,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sask Griswold,ou=Product Development,dc=bitwarden,dc=com", - email: "GriswolS@ce9a5204a370483987964a25eaf0057b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rae Beckham,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rae Beckham,ou=Payroll,dc=bitwarden,dc=com", - email: "BeckhamR@b400fcdf725047b698292665de84946c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cassaundra Gary,ou=Product Testing,dc=bitwarden,dc=com", - email: "GaryC@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Emlynne Linaugh,ou=Administrative,dc=bitwarden,dc=com", - email: "LinaughE@964bc78b98164950b5c94e42f0381893.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Priscilla Mauldin,ou=Janitorial,dc=bitwarden,dc=com", - email: "MauldinP@aaf992b9334d42f0913adfd4d6280d9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChoKuen Layton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ChoKuen Layton,ou=Management,dc=bitwarden,dc=com", - email: "LaytonC@f356862401984def8bd045192d245ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merlina Gofron,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Merlina Gofron,ou=Product Development,dc=bitwarden,dc=com", - email: "GofronM@5b1e92da278e4b9ca91014027a0aa9ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jany Kamal,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jany Kamal,ou=Management,dc=bitwarden,dc=com", - email: "KamalJ@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Freddie Rolfes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Freddie Rolfes,ou=Product Development,dc=bitwarden,dc=com", - email: "RolfesF@7eb391b0b5674f9795ca1cebe83846e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nickie Acree,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nickie Acree,ou=Administrative,dc=bitwarden,dc=com", - email: "AcreeN@c3999c476a6d4270acb03c758687a2bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rajinderpal Flueckinger,ou=Peons,dc=bitwarden,dc=com", - email: "FlueckiR@b3ae6dae564847d7ba4d0a12a6361531.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davina Amu,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Davina Amu,ou=Peons,dc=bitwarden,dc=com", - email: "AmuD@d08b187bcf0d40f4953d0fe4abf84b6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Amandi Kouhi,ou=Product Testing,dc=bitwarden,dc=com", - email: "KouhiA@4048b5b3b12f4302afcee427cb6c6b34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=YauFun Fennessey,ou=Product Testing,dc=bitwarden,dc=com", - email: "FennessY@d7b97704ed464563bae0dc6e06484719.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akin Capelle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Akin Capelle,ou=Product Development,dc=bitwarden,dc=com", - email: "CapelleA@fc4cfa1e28824d9b9e67a02d1242c76a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Focus Decourcy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Focus Decourcy,ou=Payroll,dc=bitwarden,dc=com", - email: "DecourcF@9564989367ee45b494d155a6be9f3761.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moel Wynes,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Moel Wynes,ou=Janitorial,dc=bitwarden,dc=com", - email: "WynesM@4cd419e4880743fba3fb72008e9a330b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bertrand Schiegl,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bertrand Schiegl,ou=Peons,dc=bitwarden,dc=com", - email: "SchieglB@d3284c9107174588867290b3601e936f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jacquenetta Lakhani,ou=Peons,dc=bitwarden,dc=com", - email: "LakhaniJ@3eb77d9e6bdc439197d45c120ada5eb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coursey Stansfield,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Coursey Stansfield,ou=Management,dc=bitwarden,dc=com", - email: "StansfiC@175f672e954d4d05baa0e0e2d7a5150d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tavis Theodore,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tavis Theodore,ou=Administrative,dc=bitwarden,dc=com", - email: "TheodorT@574eddc7483948a59c9d38d5c8f6a354.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bello Madani,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bello Madani,ou=Management,dc=bitwarden,dc=com", - email: "MadaniB@6b01ea5296ae43ddbca168736ac18b91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sameh Kyoung,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sameh Kyoung,ou=Management,dc=bitwarden,dc=com", - email: "KyoungS@cbc86aec4ebd45fb8e05b7c1a8564753.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liem Isley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Liem Isley,ou=Payroll,dc=bitwarden,dc=com", - email: "IsleyL@41d9d77642444cc9ab9d5b4e9a3c43fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estrella Balsas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Estrella Balsas,ou=Human Resources,dc=bitwarden,dc=com", - email: "BalsasE@14a50969231442b7a4661f1630e8f16c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bailey Trickett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bailey Trickett,ou=Management,dc=bitwarden,dc=com", - email: "TricketB@74ad719f3ca94101b51f4a4b5749fe0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Raghuvir Costandi,ou=Product Testing,dc=bitwarden,dc=com", - email: "CostandR@57507372eada4752ba384ecd326c57ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martha Hovey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Martha Hovey,ou=Management,dc=bitwarden,dc=com", - email: "HoveyM@85af325f68b4407789de4090abc807e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cathrine Salsbery,ou=Janitorial,dc=bitwarden,dc=com", - email: "SalsberC@c8c34efeb3fd47f485bda2d57f298fa8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChinFui Iezzi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ChinFui Iezzi,ou=Management,dc=bitwarden,dc=com", - email: "IezziC@d117baceef9a4168bde2647e78683a37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cortney Tolar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cortney Tolar,ou=Payroll,dc=bitwarden,dc=com", - email: "TolarC@77dc8afa92a942f990e0358d489eb936.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alta Chandrashekar,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChandraA@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walter Napke,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Walter Napke,ou=Administrative,dc=bitwarden,dc=com", - email: "NapkeW@638dc4979c734dc6a0edddc9856d364c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenson Yabe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jenson Yabe,ou=Product Development,dc=bitwarden,dc=com", - email: "YabeJ@478d49ea22024f81bf0c3655b7d4984f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanh Preo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hanh Preo,ou=Peons,dc=bitwarden,dc=com", - email: "PreoH@bc24a263fb344aa0a892bcbfdbc90a0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opto Decasper,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Opto Decasper,ou=Human Resources,dc=bitwarden,dc=com", - email: "DecaspeO@ec27ad8054ec49e6b80dae8c88335049.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regan Novak,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Regan Novak,ou=Product Testing,dc=bitwarden,dc=com", - email: "NovakR@458bebdbb1db445da5a7c0df36fdfcef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orella Viriato,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Orella Viriato,ou=Payroll,dc=bitwarden,dc=com", - email: "ViriatoO@8127ace43f234ba5be577208dd638928.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruthy Maher,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ruthy Maher,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaherR@b0093dc523e14382988b5e422d50b328.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxanne Mohammad,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Roxanne Mohammad,ou=Management,dc=bitwarden,dc=com", - email: "MohammaR@b98237c36de745c3a996a916f9116823.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guner Kelso,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Guner Kelso,ou=Product Development,dc=bitwarden,dc=com", - email: "KelsoG@43da9c69baa14266b4c8812eff59c738.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drusy Masapati,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Drusy Masapati,ou=Payroll,dc=bitwarden,dc=com", - email: "MasapatD@fcd97c4a8c3844f08b1e5ede745ae54d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anthiathia Bessell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Anthiathia Bessell,ou=Peons,dc=bitwarden,dc=com", - email: "BessellA@954e7c28b409486ab4b5e846037b6b00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Verlyn Bryan,ou=Janitorial,dc=bitwarden,dc=com", - email: "BryanV@9df231d2e4bf4076a68fc1ec37967ddc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saibal Swartz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Saibal Swartz,ou=Peons,dc=bitwarden,dc=com", - email: "SwartzS@5c758bae8ef348278f14828cc31d2360.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdi Sulewski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Magdi Sulewski,ou=Administrative,dc=bitwarden,dc=com", - email: "SulewskM@26ea76142f2a4637b028d1aa71d30271.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katharine Byers,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Katharine Byers,ou=Administrative,dc=bitwarden,dc=com", - email: "ByersK@cff08fbfbb494d1cac1d02cef13ff5e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donal Kashaninia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Donal Kashaninia,ou=Product Development,dc=bitwarden,dc=com", - email: "KashaniD@0708f7927e154039bccaf12df5697875.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chicky Sils,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chicky Sils,ou=Human Resources,dc=bitwarden,dc=com", - email: "SilsC@89e33259b1f341dda582db87064be4b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=JeanJacques Urbielewicz,ou=Management,dc=bitwarden,dc=com", - email: "UrbieleJ@e7602a60599a42e38e55df23f8bedf7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gillie Dedas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gillie Dedas,ou=Product Testing,dc=bitwarden,dc=com", - email: "DedasG@cd532997f28e491fbc9b8de411038a21.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kassie Dack,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kassie Dack,ou=Administrative,dc=bitwarden,dc=com", - email: "DackK@eef25158b5b94cc287e7e9c6eefb6e6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Munir Gonsalves,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Munir Gonsalves,ou=Peons,dc=bitwarden,dc=com", - email: "GonsalvM@d5693b03fff041e0bff80a2597afaae3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grietje Ansorger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Grietje Ansorger,ou=Peons,dc=bitwarden,dc=com", - email: "AnsorgeG@0a4355ee7fe94c7bb8cc9baf9905f443.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lorianne Winklemaier,ou=Payroll,dc=bitwarden,dc=com", - email: "WinklemL@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Isabel McDonnell,ou=Product Testing,dc=bitwarden,dc=com", - email: "McDonneI@7e78b04dbd3c4b8d878396ef3d8060c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mitzi Novisedlak,ou=Administrative,dc=bitwarden,dc=com", - email: "NovisedM@17e12fc1204748719cf2bf325fcfbdd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Latisha Dallago,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Latisha Dallago,ou=Peons,dc=bitwarden,dc=com", - email: "DallagoL@79e37cdfcd844256b0d515cae5e360dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Catlee Borodajluk,ou=Product Development,dc=bitwarden,dc=com", - email: "BorodajC@b901034853bb49fab2332c009f7f5577.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luther Attard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Luther Attard,ou=Administrative,dc=bitwarden,dc=com", - email: "AttardL@e049bad88da840aab339da6c7656c9ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elisa Bernier,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elisa Bernier,ou=Payroll,dc=bitwarden,dc=com", - email: "BernierE@03984172df9e48acbd783f2986930e0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cally Rios,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cally Rios,ou=Management,dc=bitwarden,dc=com", - email: "RiosC@93cef961e98e48e482c9b5e04d825449.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flossie Ordway,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Flossie Ordway,ou=Administrative,dc=bitwarden,dc=com", - email: "OrdwayF@e208162ab8d64ca7aba1cebad89531f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trudie Beveridge,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Trudie Beveridge,ou=Payroll,dc=bitwarden,dc=com", - email: "BeveridT@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jin Schavo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jin Schavo,ou=Management,dc=bitwarden,dc=com", - email: "SchavoJ@c77bec2c020044a183f917437c7fdfe4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Birgit Reznick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Birgit Reznick,ou=Payroll,dc=bitwarden,dc=com", - email: "ReznickB@e6d1825771da43ab8c15fdf770febdde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sylvia Manica,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sylvia Manica,ou=Peons,dc=bitwarden,dc=com", - email: "ManicaS@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adelind Vance,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Adelind Vance,ou=Janitorial,dc=bitwarden,dc=com", - email: "VanceA@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odella Anthonissen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Odella Anthonissen,ou=Administrative,dc=bitwarden,dc=com", - email: "AnthoniO@3137189e80b64a7c8c939097944e94dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Esmeralda Moraetes,ou=Human Resources,dc=bitwarden,dc=com", - email: "MoraeteE@2fdf5806d6f34ec890d7f79e0eef4970.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=America Turney,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=America Turney,ou=Management,dc=bitwarden,dc=com", - email: "TurneyA@9e6a1308cc704783acacae7fd7bbd94e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rudie Vaughn,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rudie Vaughn,ou=Peons,dc=bitwarden,dc=com", - email: "VaughnR@dfd2035fc95c43339bef38a244e36ede.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idris Hotlist,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Idris Hotlist,ou=Product Development,dc=bitwarden,dc=com", - email: "HotlistI@623538f66c6d44c9949856d7b9d692ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petri Soreanu,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Petri Soreanu,ou=Payroll,dc=bitwarden,dc=com", - email: "SoreanuP@2c933403160143d19a899179ef24cca2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inge Hurteau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Inge Hurteau,ou=Payroll,dc=bitwarden,dc=com", - email: "HurteauI@ca967230de2944e896318dde6183d882.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ailee Dejongh,ou=Product Testing,dc=bitwarden,dc=com", - email: "DejonghA@f6353cc2886243fe9b2219b4953d333b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tats McDermott,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tats McDermott,ou=Management,dc=bitwarden,dc=com", - email: "McDermoT@7a3b1be5d62c42abaf0253c9b042dfe2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lianne Wanda,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lianne Wanda,ou=Administrative,dc=bitwarden,dc=com", - email: "WandaL@28e53bb2a33341d2aa3d71254b03f94e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Estrella Rodschat,ou=Janitorial,dc=bitwarden,dc=com", - email: "RodschaE@09592cdb49ba4e06a680e4327c7f211f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Katuscha Bleile,ou=Product Testing,dc=bitwarden,dc=com", - email: "BleileK@2af6f21a0f39407fbdd08178b71bb34d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marinna Drane,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marinna Drane,ou=Product Testing,dc=bitwarden,dc=com", - email: "DraneM@79f5757f3e9044b8849adc8729857a5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelly Cavan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shelly Cavan,ou=Administrative,dc=bitwarden,dc=com", - email: "CavanS@ae61f912d37d41959ec8fa8339b2d969.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryce Luetchford,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bryce Luetchford,ou=Management,dc=bitwarden,dc=com", - email: "LuetchfB@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariana Munden,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mariana Munden,ou=Administrative,dc=bitwarden,dc=com", - email: "MundenM@2578fec05f3c4caebb2ed35da0948626.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lawrence MACKenzie,ou=Product Testing,dc=bitwarden,dc=com", - email: "MACKenzL@abe51797f5124683a93236751a4e6fc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morris Pafilis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Morris Pafilis,ou=Peons,dc=bitwarden,dc=com", - email: "PafilisM@4c3f9ac9725344988223c5450f40e73e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirl Clipperton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shirl Clipperton,ou=Payroll,dc=bitwarden,dc=com", - email: "ClipperS@6f1536f416b1420eb770d530c5bda521.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leona Buchko,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Leona Buchko,ou=Janitorial,dc=bitwarden,dc=com", - email: "BuchkoL@318e6f8cd7334449ba69aed9ea189bd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tybi Welsford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tybi Welsford,ou=Human Resources,dc=bitwarden,dc=com", - email: "WelsforT@b8436b0997234174a1d3652199251b81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baris Derome,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Baris Derome,ou=Payroll,dc=bitwarden,dc=com", - email: "DeromeB@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Munir Dickford,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Munir Dickford,ou=Administrative,dc=bitwarden,dc=com", - email: "DickforM@7f5616c56b8c4a60ad958a3ffbba9f8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailsun Yvon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ailsun Yvon,ou=Administrative,dc=bitwarden,dc=com", - email: "YvonA@fded6a4ffab747d786306ddc62c3c811.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeffery Becquart,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jeffery Becquart,ou=Peons,dc=bitwarden,dc=com", - email: "BecquarJ@a8bd7981e56041ddac5e4b90f0535dfa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cindelyn Capozzi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cindelyn Capozzi,ou=Management,dc=bitwarden,dc=com", - email: "CapozziC@4683d74c822246798b509a58b74b661d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regan Hesse,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Regan Hesse,ou=Product Development,dc=bitwarden,dc=com", - email: "HesseR@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aida Blackwell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Aida Blackwell,ou=Payroll,dc=bitwarden,dc=com", - email: "BlackweA@75230f61780f4e0e9cf624359c2b6622.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Justine Aguirre,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Justine Aguirre,ou=Product Development,dc=bitwarden,dc=com", - email: "AguirreJ@8c4f062c4385431b8ef3682c208e76a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurene Zafarullah,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maurene Zafarullah,ou=Management,dc=bitwarden,dc=com", - email: "ZafarulM@6f2328709fbe4233b85bba3d4ce3d844.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sohayla Whaley,ou=Product Testing,dc=bitwarden,dc=com", - email: "WhaleyS@68e96d35b7bb4addbceb19d0fa830ff5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karita Donovan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Karita Donovan,ou=Product Testing,dc=bitwarden,dc=com", - email: "DonovanK@612e506d26154bfda9f499632b50c09f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaw Lantto,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shaw Lantto,ou=Product Testing,dc=bitwarden,dc=com", - email: "LanttoS@30919d15fb3f4281a17499420dcfbd91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwen Prog,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gwen Prog,ou=Peons,dc=bitwarden,dc=com", - email: "ProgG@d95fe89a4d1149c9bcf3a6baa177125b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cecile Evans,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cecile Evans,ou=Product Testing,dc=bitwarden,dc=com", - email: "EvansC@63186a053fb840c4904ffef80f864eb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ringo Campara,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ringo Campara,ou=Product Testing,dc=bitwarden,dc=com", - email: "CamparaR@053a5e187b0b4033abb4000d18053cd9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melonie Loveland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melonie Loveland,ou=Janitorial,dc=bitwarden,dc=com", - email: "LovelanM@b0139312a83c40d5aff228440731260a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quinn Malizia,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Quinn Malizia,ou=Payroll,dc=bitwarden,dc=com", - email: "MaliziaQ@4026e9bfc98e483f893d2b9e6722e931.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Virgie Slaby,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Virgie Slaby,ou=Management,dc=bitwarden,dc=com", - email: "SlabyV@c57373b0d5374d00a3d6688cc686509b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Toyanne Smedema,ou=Janitorial,dc=bitwarden,dc=com", - email: "SmedemaT@e498ba2a91544031964c1fffed4ef12c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamil Daniells,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kamil Daniells,ou=Product Testing,dc=bitwarden,dc=com", - email: "DaniellK@7c43e52d9b034f3bbc23711903010993.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bevvy Dalloste,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bevvy Dalloste,ou=Management,dc=bitwarden,dc=com", - email: "DallostB@741f68246b944172a356682db963a82d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Henrie Lobianco,ou=Product Testing,dc=bitwarden,dc=com", - email: "LobiancH@a96cfc77d7fd4aca9d37da4b46aad39b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perri Gaylor,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Perri Gaylor,ou=Administrative,dc=bitwarden,dc=com", - email: "GaylorP@526b2e31e79b488fb63ef0570005204a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klink Bruneau,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Klink Bruneau,ou=Management,dc=bitwarden,dc=com", - email: "BruneauK@471393a67ebd4f51b67e7d9aeec04e67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siamack Dace,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Siamack Dace,ou=Administrative,dc=bitwarden,dc=com", - email: "DaceS@d4d56842eb064bd38446a254d77ceab5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Everette Shivcharan,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShivchaE@e89ca6a0c26a42d387c16cb15d267c2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jay Ginest,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jay Ginest,ou=Human Resources,dc=bitwarden,dc=com", - email: "GinestJ@3cccd227e41948e79986f554706a7781.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilona Caudle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wilona Caudle,ou=Product Development,dc=bitwarden,dc=com", - email: "CaudleW@90463e36c9634ed7af09a58415debfe0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ulrike Nevardauskis,ou=Product Development,dc=bitwarden,dc=com", - email: "NevardaU@83146e7f57ba40bd8fd147c075fc9a0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Siamak Gibeault,ou=Product Testing,dc=bitwarden,dc=com", - email: "GibeaulS@d449a5092c5940c4981c5759373cd556.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laz Plante,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Laz Plante,ou=Product Development,dc=bitwarden,dc=com", - email: "PlanteL@737f5132e7a343ceaab6a20163c2ba4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Meghan Kathnelson,ou=Administrative,dc=bitwarden,dc=com", - email: "KathnelM@7ab7643662f14cef84497ec647fde7ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellene Holberry,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ellene Holberry,ou=Administrative,dc=bitwarden,dc=com", - email: "HolberrE@0c0cb73653474aa4b8a172e8089ffde7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niel McComb,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Niel McComb,ou=Peons,dc=bitwarden,dc=com", - email: "McCombN@840c6c20816640f3a23c22832cd051de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anni Demchuk,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anni Demchuk,ou=Human Resources,dc=bitwarden,dc=com", - email: "DemchukA@75230f61780f4e0e9cf624359c2b6622.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chen Crosson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chen Crosson,ou=Janitorial,dc=bitwarden,dc=com", - email: "CrossonC@948fee4ac0644e21a6b3abc34aeaa20f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ammamaria Barsony,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarsonyA@ac405217bf53481daa900e9995e259fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Justina Kirkwood,ou=Human Resources,dc=bitwarden,dc=com", - email: "KirkwooJ@b154fab59ca14553be1151ffa2cd4d97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lonna Leong,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lonna Leong,ou=Administrative,dc=bitwarden,dc=com", - email: "LeongL@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drusie Prewitt,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Drusie Prewitt,ou=Management,dc=bitwarden,dc=com", - email: "PrewittD@52bca4c594a04715b5715f08c172758d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dulciana Gendron,ou=Janitorial,dc=bitwarden,dc=com", - email: "GendronD@3c11f573de8f4908ada18c7fd8a1cb8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jen Assenza,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jen Assenza,ou=Peons,dc=bitwarden,dc=com", - email: "AssenzaJ@4a47e69492284601911d68b00175e387.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynnet Henshaw,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lynnet Henshaw,ou=Management,dc=bitwarden,dc=com", - email: "HenshawL@4d62425a140c4e9283e4fbe1fb7421be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wanids Pepper,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Wanids Pepper,ou=Administrative,dc=bitwarden,dc=com", - email: "PepperW@ea9e0894161f45a1a243f11b80970704.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamara Ahlers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tamara Ahlers,ou=Payroll,dc=bitwarden,dc=com", - email: "AhlersT@f435a2b95da94bf4a1e437105cc89fad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karilynn Roddick,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Karilynn Roddick,ou=Product Development,dc=bitwarden,dc=com", - email: "RoddickK@ab04014fcfcf443881ea178cd34f1aab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariesara CamelToueg,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mariesara CamelToueg,ou=Management,dc=bitwarden,dc=com", - email: "CamelToM@528cdf5245b64779b73a856ecc3f4a50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doe Yowell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Doe Yowell,ou=Product Development,dc=bitwarden,dc=com", - email: "YowellD@46af47a358cc432b9e3e57dfdff8445e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deedee Mattes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Deedee Mattes,ou=Human Resources,dc=bitwarden,dc=com", - email: "MattesD@fb55149cb2a74d6c9e271920a1046f2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luis Sinnett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Luis Sinnett,ou=Product Testing,dc=bitwarden,dc=com", - email: "SinnettL@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elianore Sweetnam,ou=Product Testing,dc=bitwarden,dc=com", - email: "SweetnaE@60e903b99c4f452b858f19d9843dcc15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evette Bouffard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Evette Bouffard,ou=Human Resources,dc=bitwarden,dc=com", - email: "BouffarE@a88363254d654a46a988ed9a05ced93a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Armin Bakkum,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Armin Bakkum,ou=Human Resources,dc=bitwarden,dc=com", - email: "BakkumA@4bc388c8d1cb44a0a2404340d63cfe5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Feliza Azizuddin,ou=Product Development,dc=bitwarden,dc=com", - email: "AzizuddF@6f1536f416b1420eb770d530c5bda521.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grady Gregorski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Grady Gregorski,ou=Administrative,dc=bitwarden,dc=com", - email: "GregorsG@75db2ded6c224e4da9fab555cc5d1c55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ede Riggins,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ede Riggins,ou=Administrative,dc=bitwarden,dc=com", - email: "RigginsE@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melisse Lemyre,ou=Janitorial,dc=bitwarden,dc=com", - email: "LemyreM@d9be0d61b3d04e0e964a2ed65ee39def.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vi Biamonte,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vi Biamonte,ou=Management,dc=bitwarden,dc=com", - email: "BiamontV@394dfb035c4a4d4f9d0db1fc772d6f2c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shauna Moizer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shauna Moizer,ou=Janitorial,dc=bitwarden,dc=com", - email: "MoizerS@b134362a785742d6b5a1f5d5c2746e9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ramaprakash Eakins,ou=Payroll,dc=bitwarden,dc=com", - email: "EakinsR@b57908d5940c498f802323dedcdd1fe7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryanna Rao,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maryanna Rao,ou=Payroll,dc=bitwarden,dc=com", - email: "RaoM@e8149d5dfc6644b79cb026322f0adffe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kore Hedrick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kore Hedrick,ou=Management,dc=bitwarden,dc=com", - email: "HedrickK@dddb0ef21490453ca7770ab3e7c98c8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cornelius Lafever,ou=Janitorial,dc=bitwarden,dc=com", - email: "LafeverC@bc5b48bcb0df42c9948c4c39df2e429f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marcelo Lobianco,ou=Payroll,dc=bitwarden,dc=com", - email: "LobiancM@bd9027744e31459db23a7217225fbe23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cari GuyArbour,ou=Product Testing,dc=bitwarden,dc=com", - email: "GuyArboC@50440101366043ed987d2eecbe048532.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marris Legrove,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marris Legrove,ou=Janitorial,dc=bitwarden,dc=com", - email: "LegroveM@57ceba44120949db81f6e0d349dde456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hilliard Sinasac,ou=Payroll,dc=bitwarden,dc=com", - email: "SinasacH@6929241d20d8492688967f473f97d5ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olusola Hudson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Olusola Hudson,ou=Janitorial,dc=bitwarden,dc=com", - email: "HudsonO@8df0438ac9ae4a56af6789a0baa3c594.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cordula Lewandowski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cordula Lewandowski,ou=Management,dc=bitwarden,dc=com", - email: "LewandoC@aee41a45245c488583a4e60c217e30cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olwen Salyer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Olwen Salyer,ou=Management,dc=bitwarden,dc=com", - email: "SalyerO@dcbfb0982f2b4bb7bdf60b8f61c36502.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Henny Balakrishnan,ou=Product Testing,dc=bitwarden,dc=com", - email: "BalakriH@5b3c54f47fc64ffbbe62b2e499081d43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristine Guignon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kristine Guignon,ou=Human Resources,dc=bitwarden,dc=com", - email: "GuignonK@180993b547ec4c93a6ebea6992867699.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphna Leong,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Daphna Leong,ou=Janitorial,dc=bitwarden,dc=com", - email: "LeongD@d37901086196495ab5d77980959c7f35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Larysa Singer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Larysa Singer,ou=Product Development,dc=bitwarden,dc=com", - email: "SingerL@e68f51f1d9244f0a8bff7f138347479d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilmi Spohn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hilmi Spohn,ou=Product Development,dc=bitwarden,dc=com", - email: "SpohnH@2699c3099b704f2ba70219415c473196.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharity Fusca,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sharity Fusca,ou=Peons,dc=bitwarden,dc=com", - email: "FuscaS@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kendre Favrot,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kendre Favrot,ou=Janitorial,dc=bitwarden,dc=com", - email: "FavrotK@f6866989cc784904871bcaa73d189a85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pit Cotuna,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pit Cotuna,ou=Janitorial,dc=bitwarden,dc=com", - email: "CotunaP@3a582b3bf0c346c09f92fe33efef44dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carma Mattiussi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carma Mattiussi,ou=Administrative,dc=bitwarden,dc=com", - email: "MattiusC@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lucky Maliepaard,ou=Payroll,dc=bitwarden,dc=com", - email: "MaliepaL@f0ddebf82b7547be9ea16dacf25cc0a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leeann Staring,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leeann Staring,ou=Administrative,dc=bitwarden,dc=com", - email: "StaringL@951421a2e53b48ba8767b74d986be6dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Indiana Bodford,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Indiana Bodford,ou=Administrative,dc=bitwarden,dc=com", - email: "BodfordI@58b17cbf3c8c49a497e5fef5616324ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maighdiln Zukovsky,ou=Management,dc=bitwarden,dc=com", - email: "ZukovskM@58ad0883939b4209a1c1bf6c7755ae5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermia Besse,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hermia Besse,ou=Payroll,dc=bitwarden,dc=com", - email: "BesseH@622a54e630224fe7b08d7367fa70f841.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keri Struble,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Keri Struble,ou=Product Development,dc=bitwarden,dc=com", - email: "StrubleK@dcff57d96764408cb291cdc17909588d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rolande Kiger,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rolande Kiger,ou=Product Development,dc=bitwarden,dc=com", - email: "KigerR@512b1443d1ed45ccb0713f3efd2670c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hana CampbellTapp,ou=Product Testing,dc=bitwarden,dc=com", - email: "CampbelH@484147050d834a1da350db4c28e9f45b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyndy Auton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cyndy Auton,ou=Administrative,dc=bitwarden,dc=com", - email: "AutonC@921a896c746149b8b4b3f6884b3f726f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blaise Bookings,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Blaise Bookings,ou=Administrative,dc=bitwarden,dc=com", - email: "BookingB@ffbf9bf698dd4e7a9f64eeee84b5ec64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Door Rigdon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Door Rigdon,ou=Human Resources,dc=bitwarden,dc=com", - email: "RigdonD@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allianora Toperzer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Allianora Toperzer,ou=Payroll,dc=bitwarden,dc=com", - email: "ToperzeA@e57ea92ee58c48afbafa0ac14075f3d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phaedra Criswell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Phaedra Criswell,ou=Payroll,dc=bitwarden,dc=com", - email: "CriswelP@4e6902e8e5bc41b48b78414d1956bb3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peter Dodson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Peter Dodson,ou=Peons,dc=bitwarden,dc=com", - email: "DodsonP@a628382231454e68acb07ae2b6a10a7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhea Brewer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rhea Brewer,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrewerR@ba86ce5a5ce74352a483e9becf24707d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Junette Bayno,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Junette Bayno,ou=Human Resources,dc=bitwarden,dc=com", - email: "BaynoJ@8b1fbee81b754d1880f61c509f62094e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jonis Innes,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jonis Innes,ou=Janitorial,dc=bitwarden,dc=com", - email: "InnesJ@99988a1f6cfe4cd7a9e85e41ec5cdd61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Femke Roddick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Femke Roddick,ou=Management,dc=bitwarden,dc=com", - email: "RoddickF@dea3d3c373d64ad7827a6102b58d23cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nanine Psutka,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nanine Psutka,ou=Management,dc=bitwarden,dc=com", - email: "PsutkaN@e7504ea4712040488444ef96484ed4da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stergios Koonce,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stergios Koonce,ou=Management,dc=bitwarden,dc=com", - email: "KoonceS@a424c942226a48928880fd6debd4c0c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Andreana Mahaffee,ou=Human Resources,dc=bitwarden,dc=com", - email: "MahaffeA@7d677330ed854492a1b9ebde717a718a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moyra Boulay,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Moyra Boulay,ou=Human Resources,dc=bitwarden,dc=com", - email: "BoulayM@37715fd42e014d19908e5a2bc34c1623.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Door McKerrow,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Door McKerrow,ou=Product Testing,dc=bitwarden,dc=com", - email: "McKerroD@c4c3b80cbf1b45589053dbe0004de909.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mahmoud Rtpbuild,ou=Management,dc=bitwarden,dc=com", - email: "RtpbuilM@bd88542b35754611b56bc9f67e5f51df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paolina McCaughey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Paolina McCaughey,ou=Management,dc=bitwarden,dc=com", - email: "McCaughP@438e70287f6d4d35a04d438ca352f234.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greer Metzger,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Greer Metzger,ou=Janitorial,dc=bitwarden,dc=com", - email: "MetzgerG@5da44ffb6b534c2a8e8e949cd515b1cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlena Boyachek,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marlena Boyachek,ou=Payroll,dc=bitwarden,dc=com", - email: "BoyacheM@b9ba4daba0344711bdffdc5268946fdc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LyKhanh Hollbach,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=LyKhanh Hollbach,ou=Management,dc=bitwarden,dc=com", - email: "HollbacL@ee2b03b1182d458c89ed3ab0221f6486.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mariejeanne Goos,ou=Janitorial,dc=bitwarden,dc=com", - email: "GoosM@f414860515324b3cad4d00dd4f44cc65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosana Wendling,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rosana Wendling,ou=Product Development,dc=bitwarden,dc=com", - email: "WendlinR@503493165e34480591885ddd3a12206f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eve StVil,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eve StVil,ou=Payroll,dc=bitwarden,dc=com", - email: "StVilE@775db391b36843f3b6967be5112cd7c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=GuoQiang Hagen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=GuoQiang Hagen,ou=Peons,dc=bitwarden,dc=com", - email: "HagenG@c7a2f477472645bf848fd46eb4fcb7eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lsiunix Brooks,ou=Administrative,dc=bitwarden,dc=com", - email: "BrooksL@804b9151f1ba415a894983275163dae1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorella Golczewski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorella Golczewski,ou=Payroll,dc=bitwarden,dc=com", - email: "GolczewD@a04d0222f0c24ad6848955600bad7ace.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarette Stokes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Clarette Stokes,ou=Product Testing,dc=bitwarden,dc=com", - email: "StokesC@a9155ee13aea4c5eb8fee4736f83eac6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Myrilla Wyllie,ou=Payroll,dc=bitwarden,dc=com", - email: "WyllieM@e4fc7058a5874f7d8c9c45b862065a64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vincenzo Yarosh,ou=Payroll,dc=bitwarden,dc=com", - email: "YaroshV@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mo Barsch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mo Barsch,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarschM@70ae4897e890467abad1e75edafff103.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janos Running,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Janos Running,ou=Product Testing,dc=bitwarden,dc=com", - email: "RunningJ@0d7e83c0e7e042119673bb3ec0e8332f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanco Epstein,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hanco Epstein,ou=Payroll,dc=bitwarden,dc=com", - email: "EpsteinH@6b7e5105ccc94f1f8fda16b3cc882538.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maylynn Dolginoff,ou=Product Development,dc=bitwarden,dc=com", - email: "DolginoM@c0ccbcc04bb9406b99bd8cec081542a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daisie Solman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Daisie Solman,ou=Janitorial,dc=bitwarden,dc=com", - email: "SolmanD@86d24a798dce4653a3b75c56ae675864.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nachum Biard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nachum Biard,ou=Management,dc=bitwarden,dc=com", - email: "BiardN@2a9fef67c2a84062aa431a97e4e79582.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Essy Goyal,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Essy Goyal,ou=Product Development,dc=bitwarden,dc=com", - email: "GoyalE@077838522ab04e7fa5ae528e1ed00284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorie Sehmbey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorie Sehmbey,ou=Peons,dc=bitwarden,dc=com", - email: "SehmbeyL@b549d25d2e83426ba75b6cd3682958b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Armelle Schwane,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Armelle Schwane,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchwaneA@142c4cd6004348ef8f83b6439314cf24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brietta Plato,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Brietta Plato,ou=Product Testing,dc=bitwarden,dc=com", - email: "PlatoB@d494db8e881541faa9bd79d54aee6c6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lebbie Dragan,ou=Human Resources,dc=bitwarden,dc=com", - email: "DraganL@c4fa2184e3754d1f80f7d5580d9d94a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=HooiLee Olivares,ou=Product Testing,dc=bitwarden,dc=com", - email: "OlivareH@dbc48514ad4f4049ab1d92515eab342e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nolana Hedman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nolana Hedman,ou=Janitorial,dc=bitwarden,dc=com", - email: "HedmanN@12d826ce1ce0413184a7ed1f22160fef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zenia Hilwa,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Zenia Hilwa,ou=Administrative,dc=bitwarden,dc=com", - email: "HilwaZ@e8b42fe4709142ccb9521fb60b9c2535.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Souphalack Delong,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Souphalack Delong,ou=Product Development,dc=bitwarden,dc=com", - email: "DelongS@ed09d6145c6443eda98f0394646537ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robbie Dibler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Robbie Dibler,ou=Product Testing,dc=bitwarden,dc=com", - email: "DiblerR@45083f5b369b49bba6dba6e41ec7e2f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eimile Azzuolo,ou=Administrative,dc=bitwarden,dc=com", - email: "AzzuoloE@825450a5303e4ddbb87fc29d54b883c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Biddie Tedrick,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Biddie Tedrick,ou=Product Development,dc=bitwarden,dc=com", - email: "TedrickB@a98d6363773e4de690c703d6d6786140.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gracia Peluso,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gracia Peluso,ou=Payroll,dc=bitwarden,dc=com", - email: "PelusoG@8c3513194f7b4d468cf6b129b14b72f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanja Maxey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sanja Maxey,ou=Product Development,dc=bitwarden,dc=com", - email: "MaxeyS@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petronella Tullius,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Petronella Tullius,ou=Payroll,dc=bitwarden,dc=com", - email: "TulliusP@35aa710455a54ec9aacb0743a9cce4e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henrie Lorint,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Henrie Lorint,ou=Product Development,dc=bitwarden,dc=com", - email: "LorintH@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kaylee Spilchak,ou=Payroll,dc=bitwarden,dc=com", - email: "SpilchaK@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donnette Kruger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Donnette Kruger,ou=Peons,dc=bitwarden,dc=com", - email: "KrugerD@e5c90ecebea1435c996209dde46c0296.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delle Schwantes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Delle Schwantes,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchwantD@d1c16d58dcf54061b0da81b1943ffc50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hyacinthie Brannan,ou=Peons,dc=bitwarden,dc=com", - email: "BrannanH@71f5b0be2e4a45d1a4579d7977668bec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Print Gaitan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Print Gaitan,ou=Administrative,dc=bitwarden,dc=com", - email: "GaitanP@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patsy Mattiussi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Patsy Mattiussi,ou=Management,dc=bitwarden,dc=com", - email: "MattiusP@acd445bf65f54e4ebe350927dbe3e51f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phil Afkham,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Phil Afkham,ou=Administrative,dc=bitwarden,dc=com", - email: "AfkhamP@ea3044bbf20e4e989696a49bb606f948.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheldon Blatt,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sheldon Blatt,ou=Peons,dc=bitwarden,dc=com", - email: "BlattS@b2fc4afe69c5444b8fa5daf60bf297fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Netti Pitcavage,ou=Janitorial,dc=bitwarden,dc=com", - email: "PitcavaN@f945ede1d0be465895cf3f38663266a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oryal Raschig,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Oryal Raschig,ou=Product Testing,dc=bitwarden,dc=com", - email: "RaschigO@1f0f559b444d45e3b1fe4488d0fe440e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hector Manus,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hector Manus,ou=Janitorial,dc=bitwarden,dc=com", - email: "ManusH@52db00da846a4ecd950665d8955a7231.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pollyanna Goza,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pollyanna Goza,ou=Payroll,dc=bitwarden,dc=com", - email: "GozaP@6b986c50e43742ad9f5c4c157dff0f70.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koren Penner,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Koren Penner,ou=Payroll,dc=bitwarden,dc=com", - email: "PennerK@bc86e63e2935428fbf0579fffe710ad0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Iteke Wiedman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Iteke Wiedman,ou=Management,dc=bitwarden,dc=com", - email: "WiedmanI@63d6d6335a55425b90628af92fedefa5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrelle StJohn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Darrelle StJohn,ou=Product Development,dc=bitwarden,dc=com", - email: "StJohnD@83e659b7a46148c68a7895067104477c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazuhito Schram,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kazuhito Schram,ou=Peons,dc=bitwarden,dc=com", - email: "SchramK@35963b7e4db249a890418c98f5c7f6fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Emelyne Hickman,ou=Product Testing,dc=bitwarden,dc=com", - email: "HickmanE@848a5e9ff7e64339b3d7fd8820b74e23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirene Eaves,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shirene Eaves,ou=Product Development,dc=bitwarden,dc=com", - email: "EavesS@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desiree Southon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Desiree Southon,ou=Human Resources,dc=bitwarden,dc=com", - email: "SouthonD@068a0b6470f0444b9815d3ef36001ebd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lianna Lackie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lianna Lackie,ou=Peons,dc=bitwarden,dc=com", - email: "LackieL@965c6793f8bb43c9b546fbac1da94494.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Misti Sayed,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Misti Sayed,ou=Management,dc=bitwarden,dc=com", - email: "SayedM@9520af3454cc4edd8a0c750979c8a5ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kartik Calmejane,ou=Human Resources,dc=bitwarden,dc=com", - email: "CalmejaK@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dione McCain,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dione McCain,ou=Peons,dc=bitwarden,dc=com", - email: "McCainD@9bcba57fcf5a4e57996fd300e4b639aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deny Stasiak,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Deny Stasiak,ou=Management,dc=bitwarden,dc=com", - email: "StasiakD@00134d4d1d4e4011b58c753077077cfb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aindrea Kavis,ou=Janitorial,dc=bitwarden,dc=com", - email: "KavisA@0eff01dc47b3434da343723db4d36d91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ladell Butvich,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ladell Butvich,ou=Management,dc=bitwarden,dc=com", - email: "ButvichL@baf2ad01dd2145308a21b27aa982b3f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loralyn Eller,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Loralyn Eller,ou=Human Resources,dc=bitwarden,dc=com", - email: "EllerL@15a73f4bf1a344b28ac5394e2a720618.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vinay Yearwood,ou=Janitorial,dc=bitwarden,dc=com", - email: "YearwooV@22633d68b49a4505af065c4f4eb2af78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jan Crosson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jan Crosson,ou=Human Resources,dc=bitwarden,dc=com", - email: "CrossonJ@ca4bcea8df924ec485a1d77e062859ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oral Pridgen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Oral Pridgen,ou=Human Resources,dc=bitwarden,dc=com", - email: "PridgenO@07bbb3f489e64bb6a266eab64608e052.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subra Tuttle,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Subra Tuttle,ou=Payroll,dc=bitwarden,dc=com", - email: "TuttleS@d3deba7943134e29a9162d65f8af2a8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teruko Fleischer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Teruko Fleischer,ou=Product Development,dc=bitwarden,dc=com", - email: "FleischT@db5bfc481c624386b635ec1638ed585f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shelbi Schiefer,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchiefeS@51c65dec05994f879d2a718e7f7237a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quintina Ying,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Quintina Ying,ou=Product Testing,dc=bitwarden,dc=com", - email: "YingQ@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nerti StJames,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nerti StJames,ou=Administrative,dc=bitwarden,dc=com", - email: "StJamesN@c7693ecd6d0049638df22f6d2f6641d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=RongChin Guatto,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=RongChin Guatto,ou=Product Development,dc=bitwarden,dc=com", - email: "GuattoR@b4fa9c83a97e478e900b988131cc53a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mercer Zattiero,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mercer Zattiero,ou=Payroll,dc=bitwarden,dc=com", - email: "ZattierM@df91f02938d046d8adb3f260f0e722ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Budi Enos,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Budi Enos,ou=Product Testing,dc=bitwarden,dc=com", - email: "EnosB@34a3a218f8b144eeb85092195b25ce2c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tuoi Abdou,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tuoi Abdou,ou=Payroll,dc=bitwarden,dc=com", - email: "AbdouT@44ea03cf4294421b92acd6efdd5ace30.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nath Labarge,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nath Labarge,ou=Administrative,dc=bitwarden,dc=com", - email: "LabargeN@331976d3e9d2482b9e23f03ce7111228.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sophi McCullogh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sophi McCullogh,ou=Payroll,dc=bitwarden,dc=com", - email: "McCulloS@dd187a873e4c4bb299a3c9194e913cba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jorry Babineau,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jorry Babineau,ou=Product Development,dc=bitwarden,dc=com", - email: "BabineaJ@120daee2645049f7b74da97b5abb659d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adey Fogelson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Adey Fogelson,ou=Product Testing,dc=bitwarden,dc=com", - email: "FogelsoA@a3cca719b1e44338804967e6cd3716a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bela Fouillard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bela Fouillard,ou=Management,dc=bitwarden,dc=com", - email: "FouillaB@618ad2c22a0a4c09b662c6b5ae8494c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paola Barbeau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Paola Barbeau,ou=Payroll,dc=bitwarden,dc=com", - email: "BarbeauP@40079c706f0f41f9961a4ed47bc17c65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lorianne McWhinney,ou=Product Development,dc=bitwarden,dc=com", - email: "McWhinnL@46d0a281aed94fa7a62017174b4b9de9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milo Hasen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Milo Hasen,ou=Product Development,dc=bitwarden,dc=com", - email: "HasenM@8ac0b632f576407ba66f1733b0c4738e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corabella Scarffe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Corabella Scarffe,ou=Product Development,dc=bitwarden,dc=com", - email: "ScarffeC@b39d8f666f1848e6abb69d85d224a354.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parkinson Bir,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Parkinson Bir,ou=Product Development,dc=bitwarden,dc=com", - email: "BirP@f89f635a8be04a889dbefd8a681219c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Beatrisa Zivkovic,ou=Payroll,dc=bitwarden,dc=com", - email: "ZivkoviB@0e430e5bab6e4a2fa53e5bfd14eb15b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salis Quilty,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Salis Quilty,ou=Payroll,dc=bitwarden,dc=com", - email: "QuiltyS@9ec09b5f2f3848f7b253932b170c96c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stormi Vempati,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stormi Vempati,ou=Management,dc=bitwarden,dc=com", - email: "VempatiS@edfe7405a5b34e7bb39744d59a06067d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lauretta Salvin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lauretta Salvin,ou=Peons,dc=bitwarden,dc=com", - email: "SalvinL@58d046473fe24d0d8bf6f510239a1102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarine Quane,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sarine Quane,ou=Management,dc=bitwarden,dc=com", - email: "QuaneS@7d9f9ce4ff8b4d56b5e90ecb1e79413c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rocio Brauer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rocio Brauer,ou=Human Resources,dc=bitwarden,dc=com", - email: "BrauerR@ec5b72978f304decbd01b86ff428bb78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margaretta Muchow,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Margaretta Muchow,ou=Product Development,dc=bitwarden,dc=com", - email: "MuchowM@5c51ed312b7d40789d1387ca1b76506e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dona Nairn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dona Nairn,ou=Janitorial,dc=bitwarden,dc=com", - email: "NairnD@4ce8989b72bf418782f9268b205e86e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolien Skiba,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carolien Skiba,ou=Administrative,dc=bitwarden,dc=com", - email: "SkibaC@a98f671d807c43a797dff7cd33629811.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathee Bress,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cathee Bress,ou=Product Development,dc=bitwarden,dc=com", - email: "BressC@98bcbee6a1c244fa8e846bbc7936d10f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mandy Settels,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mandy Settels,ou=Payroll,dc=bitwarden,dc=com", - email: "SettelsM@a70c344bf7f247fc92a9688532a78eaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odetta Tzuang,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Odetta Tzuang,ou=Payroll,dc=bitwarden,dc=com", - email: "TzuangO@24f4ab788e7441abadbc2141835089b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arne Matney,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Arne Matney,ou=Human Resources,dc=bitwarden,dc=com", - email: "MatneyA@df9e6df2116c4c0abb1ab3ad5d8dbaf8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rijn Halliwill,ou=Human Resources,dc=bitwarden,dc=com", - email: "HalliwiR@e51aa6debfeb4cc88c68dfc76ad89784.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kylen Maenpaa,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaenpaaK@fa475df3d2b54f0daa8cb07fc8f9be10.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ernest Derbyshire,ou=Payroll,dc=bitwarden,dc=com", - email: "DerbyshE@5e2c67d0d05546f9b167a97275baece6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dvm LaPlante,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dvm LaPlante,ou=Payroll,dc=bitwarden,dc=com", - email: "LaPlantD@efeefad1218b44b4b09303834453b239.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edeline ORourke,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Edeline ORourke,ou=Payroll,dc=bitwarden,dc=com", - email: "ORourkeE@a2c9df9a4cd24389b4a0116cc38b3328.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jiri Sengoba,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jiri Sengoba,ou=Product Development,dc=bitwarden,dc=com", - email: "SengobaJ@ef59e9dfc35148e0a47d9411700130fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terence Ashdown,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Terence Ashdown,ou=Payroll,dc=bitwarden,dc=com", - email: "AshdownT@8680d13ae864492b9dc7a4d4204aef89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donni Keilholz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Donni Keilholz,ou=Janitorial,dc=bitwarden,dc=com", - email: "KeilholD@77627e1e8f8e4cdc88cd6606136ffbcf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Stephanie Larsen,ou=Janitorial,dc=bitwarden,dc=com", - email: "LarsenS@2ce1c1b789434fc0b1cfbba03b1eddc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Verlyn Reinlie,ou=Payroll,dc=bitwarden,dc=com", - email: "ReinlieV@af244d93e89148e099720c8250f904c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minhwi Vallet,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Minhwi Vallet,ou=Product Development,dc=bitwarden,dc=com", - email: "ValletM@053a5e187b0b4033abb4000d18053cd9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allianora Wissler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Allianora Wissler,ou=Janitorial,dc=bitwarden,dc=com", - email: "WisslerA@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francisco Elam,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Francisco Elam,ou=Product Testing,dc=bitwarden,dc=com", - email: "ElamF@ff45973707884b8a993a9b6a0db0aa11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katie Labrie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Katie Labrie,ou=Janitorial,dc=bitwarden,dc=com", - email: "LabrieK@c974995ddc894f639cebc6e910eb3bc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazuhiko Drewes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kazuhiko Drewes,ou=Management,dc=bitwarden,dc=com", - email: "DrewesK@991dc3abafbe42ae88689cdf83c52cb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Charmane Dhuga,ou=Human Resources,dc=bitwarden,dc=com", - email: "DhugaC@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meade Esmaili,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Meade Esmaili,ou=Product Development,dc=bitwarden,dc=com", - email: "EsmailiM@9b1dcdebf2c241bf975e03d6ac9197e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwennie Sojkowski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gwennie Sojkowski,ou=Management,dc=bitwarden,dc=com", - email: "SojkowsG@7705ffcba30447f5b39ef2ac69db9c3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sadan Satkunaseelan,ou=Peons,dc=bitwarden,dc=com", - email: "SatkunaS@348695c8b467437c83a5f7c72f04c2de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winona Paine,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Winona Paine,ou=Administrative,dc=bitwarden,dc=com", - email: "PaineW@3bd9de2175e44743a96e1e8c28036657.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chiquita Ferrell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chiquita Ferrell,ou=Peons,dc=bitwarden,dc=com", - email: "FerrellC@492b9c186a41410b8362945cf33f6ac7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Burgess Platthy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Burgess Platthy,ou=Janitorial,dc=bitwarden,dc=com", - email: "PlatthyB@c90fcc6a2adf434b982935936ff5f7b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harlene Kortje,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Harlene Kortje,ou=Product Development,dc=bitwarden,dc=com", - email: "KortjeH@9f0054716a414ce084f33e268195dbbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suhas Ilic,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Suhas Ilic,ou=Administrative,dc=bitwarden,dc=com", - email: "IlicS@aa11a3e30f7d4b8b9f6e08ae63f7a50f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamil Caines,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kamil Caines,ou=Human Resources,dc=bitwarden,dc=com", - email: "CainesK@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HorLam Momon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=HorLam Momon,ou=Product Testing,dc=bitwarden,dc=com", - email: "MomonH@47fbb574e9c1480db21858032e62e0c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farah Brennand,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Farah Brennand,ou=Management,dc=bitwarden,dc=com", - email: "BrennanF@5670176255f949f78b023f460fb780c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilfred Issa,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wilfred Issa,ou=Management,dc=bitwarden,dc=com", - email: "IssaW@ebbd3bd6f4c84c3b86ade3725f39d1ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zino Larson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zino Larson,ou=Janitorial,dc=bitwarden,dc=com", - email: "LarsonZ@86698d59a6aa411691a02fa8cabde4d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dorthy Welsch,ou=Human Resources,dc=bitwarden,dc=com", - email: "WelschD@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhiamon Devault,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rhiamon Devault,ou=Product Development,dc=bitwarden,dc=com", - email: "DevaultR@3fd921dd1e2f4c51ac696af9e0351f02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michiko Sich,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Michiko Sich,ou=Management,dc=bitwarden,dc=com", - email: "SichM@a3445f6a5f3345a9957e7fe7bacb2499.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weber Ishii,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Weber Ishii,ou=Payroll,dc=bitwarden,dc=com", - email: "IshiiW@becb244da0554983b71d06f587be1dbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beppie Kilburn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Beppie Kilburn,ou=Product Development,dc=bitwarden,dc=com", - email: "KilburnB@4691b2eac8ba4d1390582076e407a460.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Durali Abelow,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Durali Abelow,ou=Payroll,dc=bitwarden,dc=com", - email: "AbelowD@8a40f0f791fd451f85ce90daae1d6995.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eleen Pappu,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eleen Pappu,ou=Payroll,dc=bitwarden,dc=com", - email: "PappuE@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betty Elzer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Betty Elzer,ou=Peons,dc=bitwarden,dc=com", - email: "ElzerB@02d556d8128c42b5aa2cd5d4238f40aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sallyann Environment,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sallyann Environment,ou=Administrative,dc=bitwarden,dc=com", - email: "EnvironS@11fa5cc8547c46d98b4271c0748028a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ans Pozzi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ans Pozzi,ou=Janitorial,dc=bitwarden,dc=com", - email: "PozziA@f910b6421df04b2e9cdfa3e15c0b0190.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blithe Sherow,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Blithe Sherow,ou=Product Testing,dc=bitwarden,dc=com", - email: "SherowB@0eccc35b1ecb45239e2d62bd2610a4ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacklin Alles,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jacklin Alles,ou=Peons,dc=bitwarden,dc=com", - email: "AllesJ@b99b0b5c7b724e06a91026c096a8854d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carmelle Kelemen,ou=Administrative,dc=bitwarden,dc=com", - email: "KelemenC@8586ff08ef6b4c7592578bab914dcf40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carleen Rundstein,ou=Human Resources,dc=bitwarden,dc=com", - email: "RundsteC@8aed4579481d435c98b14fd5983c7417.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rosemary Tsai,ou=Janitorial,dc=bitwarden,dc=com", - email: "TsaiR@3f5b9048c8924fec87576c273249cede.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pauly Wycoff,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pauly Wycoff,ou=Peons,dc=bitwarden,dc=com", - email: "WycoffP@1871a69ca6234f999f51d3a9b4eb4578.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jackson Narron,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jackson Narron,ou=Product Development,dc=bitwarden,dc=com", - email: "NarronJ@87a3c7cedd324317a0a5cf80dbc758d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermia Probs,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hermia Probs,ou=Administrative,dc=bitwarden,dc=com", - email: "ProbsH@158d934795614bc784693ab70a2cd0b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Scovill McPhail,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Scovill McPhail,ou=Management,dc=bitwarden,dc=com", - email: "McPhailS@5184500633ec4ec1833d29082b384d33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dian Zalite,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dian Zalite,ou=Administrative,dc=bitwarden,dc=com", - email: "ZaliteD@4fad719157f44ed19b7c7a96b512f7f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Puran Dundin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Puran Dundin,ou=Human Resources,dc=bitwarden,dc=com", - email: "DundinP@412f6fbf438a4b3d8bbdf6350bccd80d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sosanna Nguyen,ou=Payroll,dc=bitwarden,dc=com", - email: "NguyenS@35c9d3d9400d43a581b3020b915ebc3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Migdalia Warner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Migdalia Warner,ou=Peons,dc=bitwarden,dc=com", - email: "WarnerM@724caed46aaf481fb3e0817c5c10cdb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mechelle Kirn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mechelle Kirn,ou=Product Development,dc=bitwarden,dc=com", - email: "KirnM@7e9f6d17b8fc4a199e49adcccc9ca5e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaan Hartin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jaan Hartin,ou=Peons,dc=bitwarden,dc=com", - email: "HartinJ@a00e1b95d28e4af1be227d0b3e225d0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marilyn MacHattie,ou=Product Testing,dc=bitwarden,dc=com", - email: "MacHattM@1f586a2e93fc4e14adcb10bebbfd4b67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anne JantzLee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anne JantzLee,ou=Product Development,dc=bitwarden,dc=com", - email: "JantzLeA@ec5b8f0e9ac54265b8c5ceea3f25604f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Blakelee Kemish,ou=Human Resources,dc=bitwarden,dc=com", - email: "KemishB@ade9a269c2794f41972a0cd585efc66c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rachele VanDerBoom,ou=Product Development,dc=bitwarden,dc=com", - email: "VanDerBR@b51c90a7a7734a92a0afbe6bbc47547e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherey Desantis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cherey Desantis,ou=Peons,dc=bitwarden,dc=com", - email: "DesantiC@aae225b6543e4edebfd4e8a70cd66e37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celie Aksel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Celie Aksel,ou=Management,dc=bitwarden,dc=com", - email: "AkselC@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aleta Khosla,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Aleta Khosla,ou=Payroll,dc=bitwarden,dc=com", - email: "KhoslaA@3235591d985b4d2894779cd55ac400f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lennart Cramm,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lennart Cramm,ou=Product Development,dc=bitwarden,dc=com", - email: "CrammL@d8178390586b4ff2afbd07f5124be8ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elex Sohal,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elex Sohal,ou=Administrative,dc=bitwarden,dc=com", - email: "SohalE@9c333a28d24845c1a7234d2e35b66565.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marianna Annas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marianna Annas,ou=Human Resources,dc=bitwarden,dc=com", - email: "AnnasM@0fe89eeff7dc4fc1a0f74df0bfbf040f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sergei MacElwee,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sergei MacElwee,ou=Management,dc=bitwarden,dc=com", - email: "MacElweS@5bd88496e76c4f90b1f70eced0bf0739.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jay Dutil,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jay Dutil,ou=Janitorial,dc=bitwarden,dc=com", - email: "DutilJ@b347e7ca23ac4a809e51a769a6ab8366.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bevvy Routhier,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bevvy Routhier,ou=Peons,dc=bitwarden,dc=com", - email: "RouthieB@7b122176285947e2aaa662ba71171180.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kacie Sconzo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kacie Sconzo,ou=Peons,dc=bitwarden,dc=com", - email: "SconzoK@7d0b6de1366f4854a2055e12fa1d2f25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annadiane Davids,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Annadiane Davids,ou=Product Testing,dc=bitwarden,dc=com", - email: "DavidsA@1c617dcb4ec1414887e1b3bae62ec625.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karan ETAS,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karan ETAS,ou=Peons,dc=bitwarden,dc=com", - email: "ETASK@72edbeb53d9b4d36832bc312f776b4b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betti Savoie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Betti Savoie,ou=Product Development,dc=bitwarden,dc=com", - email: "SavoieB@10a46cb8875644479396c1c5e3228c3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Croix Dunn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Croix Dunn,ou=Management,dc=bitwarden,dc=com", - email: "DunnC@30a3ec06c4f44d1ba72c3001af7e8528.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ardelia NowinaKonopka,ou=Administrative,dc=bitwarden,dc=com", - email: "NowinaKA@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raymond McCaw,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Raymond McCaw,ou=Product Testing,dc=bitwarden,dc=com", - email: "McCawR@51677cc10f054f54964d7669880e03b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laurna Ferner,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Laurna Ferner,ou=Payroll,dc=bitwarden,dc=com", - email: "FernerL@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathe Boyer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cathe Boyer,ou=Product Testing,dc=bitwarden,dc=com", - email: "BoyerC@bc1068ff7c5a442e884cab9ab7c4508b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanco Elgin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hanco Elgin,ou=Product Development,dc=bitwarden,dc=com", - email: "ElginH@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krier Brickman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Krier Brickman,ou=Management,dc=bitwarden,dc=com", - email: "BrickmaK@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aime IBNTAS,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aime IBNTAS,ou=Management,dc=bitwarden,dc=com", - email: "IBNTASA@22c1ff8b360b4e918d680377dc0c9182.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theodore Pierson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Theodore Pierson,ou=Peons,dc=bitwarden,dc=com", - email: "PiersonT@59a4a020a4c74747a44b5e60109428e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monling Wormald,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Monling Wormald,ou=Management,dc=bitwarden,dc=com", - email: "WormaldM@5d439b9e1cae4e6b90829e7c5b63fe41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amandy Poma,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Amandy Poma,ou=Peons,dc=bitwarden,dc=com", - email: "PomaA@4846d6ca825b452cab08fe6610eca31a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carri Loper,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carri Loper,ou=Product Development,dc=bitwarden,dc=com", - email: "LoperC@2f13ca54ee794decad24515251a42dff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherri Bramlett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cherri Bramlett,ou=Peons,dc=bitwarden,dc=com", - email: "BramletC@ad4942d8c3c341119939c679c4dae154.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tai Nerem,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tai Nerem,ou=Payroll,dc=bitwarden,dc=com", - email: "NeremT@b7e3c41f407e4dca81b533d904e13c76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luciano Homayoon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Luciano Homayoon,ou=Product Development,dc=bitwarden,dc=com", - email: "HomayooL@01a767a014e944228e30a2d3d6133594.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Verina Yakibchuk,ou=Product Development,dc=bitwarden,dc=com", - email: "YakibchV@5696a65182774017a94deb08a344af69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lyndel Gibeault,ou=Payroll,dc=bitwarden,dc=com", - email: "GibeaulL@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tetsuyuki Campos,ou=Payroll,dc=bitwarden,dc=com", - email: "CamposT@8cb1c49a16684bdda8ffa7f4489a6280.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lindsy Sargent,ou=Human Resources,dc=bitwarden,dc=com", - email: "SargentL@34d5ed1c9d7241bdb443981287a04354.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clovis Kaji,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clovis Kaji,ou=Peons,dc=bitwarden,dc=com", - email: "KajiC@80603eaa60c04031b0548162ee532532.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constancy Sugihara,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Constancy Sugihara,ou=Peons,dc=bitwarden,dc=com", - email: "SugiharC@2390e6e80b5549ef9ff5de37313136db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micki Pownall,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Micki Pownall,ou=Janitorial,dc=bitwarden,dc=com", - email: "PownallM@40f66c0e51ca46c99bb0961cc624fcc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norma Rabipour,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Norma Rabipour,ou=Payroll,dc=bitwarden,dc=com", - email: "RabipouN@2a72bc736ffb4d18ae10b2685172d382.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sylvie Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", - email: "KapusciS@ecc23b0febab430da88b21a7330ed12e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mietek Nadon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mietek Nadon,ou=Product Testing,dc=bitwarden,dc=com", - email: "NadonM@bbf5361396904a4082fadb57709a5d90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sophie Malhotra,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sophie Malhotra,ou=Peons,dc=bitwarden,dc=com", - email: "MalhotrS@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sichao Minichillo,ou=Human Resources,dc=bitwarden,dc=com", - email: "MinichiS@bfd0acda55624910b3eb6aeadd91155d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prue Zollman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Prue Zollman,ou=Peons,dc=bitwarden,dc=com", - email: "ZollmanP@073d9b40128d435294a7cce9001bca7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=AnnHoon Rezzik,ou=Product Development,dc=bitwarden,dc=com", - email: "RezzikA@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaughan Lockard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shaughan Lockard,ou=Management,dc=bitwarden,dc=com", - email: "LockardS@954efb273c2f4e7c983d0f352f5fd30d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lonni Wurtz,ou=Human Resources,dc=bitwarden,dc=com", - email: "WurtzL@1624a6875b7a4c1a90bfa41548cd44d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marga Hao,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marga Hao,ou=Peons,dc=bitwarden,dc=com", - email: "HaoM@cf1f0125e0794b80b348dddaa747ca09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Magdy Hockaday,ou=Product Testing,dc=bitwarden,dc=com", - email: "HockadaM@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elset Yach,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elset Yach,ou=Product Testing,dc=bitwarden,dc=com", - email: "YachE@2b23dbb27baf478681a802c2510dd0df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaynie Moniter,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jaynie Moniter,ou=Administrative,dc=bitwarden,dc=com", - email: "MoniterJ@b1d81d4ed0934642a942a3e784da5fea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Penelopa Kenik,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Penelopa Kenik,ou=Administrative,dc=bitwarden,dc=com", - email: "KenikP@7ec2199d42d34d768c9936149cbba49a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nam Mersch,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nam Mersch,ou=Administrative,dc=bitwarden,dc=com", - email: "MerschN@f4c3a3037e484ed2a44d9517cbd72877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valida US,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Valida US,ou=Management,dc=bitwarden,dc=com", - email: "USV@7ed3387e63ee42a8ac53af5791774853.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jillian Pde,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jillian Pde,ou=Human Resources,dc=bitwarden,dc=com", - email: "PdeJ@006960dc799e4266a280a383e581ea9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kaz Toastmasters,ou=Administrative,dc=bitwarden,dc=com", - email: "ToastmaK@2079b61842c64cb8a53095d0062cfb7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kimberlee Gaube,ou=Human Resources,dc=bitwarden,dc=com", - email: "GaubeK@ce4d0d0fb96d4c2eaa1d4595e57562a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Everette Klaassen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Everette Klaassen,ou=Administrative,dc=bitwarden,dc=com", - email: "KlaasseE@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bernette PrestonThomas,ou=Peons,dc=bitwarden,dc=com", - email: "PrestonB@63acb1cef0d64271b1836eb0bdd826d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selime Helstab,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Selime Helstab,ou=Human Resources,dc=bitwarden,dc=com", - email: "HelstabS@625bebb6da704a99ac3b3be79cc8544f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norean Wilford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Norean Wilford,ou=Human Resources,dc=bitwarden,dc=com", - email: "WilfordN@a14bb54592f8410c82402fefd034b4c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bebe Spurway,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bebe Spurway,ou=Peons,dc=bitwarden,dc=com", - email: "SpurwayB@9600bec077154f61b674051df84e620d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alka Kowal,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alka Kowal,ou=Product Development,dc=bitwarden,dc=com", - email: "KowalA@b6629f19402c4b2bb567e45ac5181f90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michele Biggers,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Michele Biggers,ou=Product Development,dc=bitwarden,dc=com", - email: "BiggersM@b6eb7288ffdc4998a186a638d57adec2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Connie Stotz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Connie Stotz,ou=Payroll,dc=bitwarden,dc=com", - email: "StotzC@2b9187d4c2e04433a4bddadbfe09ed1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Layne Efstration,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Layne Efstration,ou=Peons,dc=bitwarden,dc=com", - email: "EfstratL@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aurora Petrescu,ou=Product Testing,dc=bitwarden,dc=com", - email: "PetrescA@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ankie Commazzi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ankie Commazzi,ou=Product Development,dc=bitwarden,dc=com", - email: "CommazzA@c00094c05d9e45abbdfd0c40940b13a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cubicle Qu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cubicle Qu,ou=Product Development,dc=bitwarden,dc=com", - email: "QuC@32c1a38264404bd194fb0ceed714adf7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wassim Charette,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wassim Charette,ou=Product Development,dc=bitwarden,dc=com", - email: "CharettW@39671d86e7aa455f86029b2564b66afc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kas Audet,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kas Audet,ou=Product Development,dc=bitwarden,dc=com", - email: "AudetK@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emalee Lockett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Emalee Lockett,ou=Product Testing,dc=bitwarden,dc=com", - email: "LockettE@37913e5a58404daf99d21d566bf33e43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janell Kurniawan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Janell Kurniawan,ou=Peons,dc=bitwarden,dc=com", - email: "KurniawJ@8429461810c443b49add09521f9c6b46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georganne Munikoti,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Georganne Munikoti,ou=Payroll,dc=bitwarden,dc=com", - email: "MunikotG@fb3704e4d78c445393093a687cfa48ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neala Casalou,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Neala Casalou,ou=Administrative,dc=bitwarden,dc=com", - email: "CasalouN@8ec44466df45450ab3876834678ca129.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hai Grubbs,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hai Grubbs,ou=Human Resources,dc=bitwarden,dc=com", - email: "GrubbsH@cb980ae301084964a9693d89f9fb2ea1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Octavio Kamboh,ou=Product Testing,dc=bitwarden,dc=com", - email: "KambohO@fbe76a3d276b4f1cb5ff4b0955ac6aa4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alyssa Strackholder,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alyssa Strackholder,ou=Peons,dc=bitwarden,dc=com", - email: "StrackhA@e9e9b377fde94158b464d15a038dd043.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jossine Hoddinott,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jossine Hoddinott,ou=Management,dc=bitwarden,dc=com", - email: "HoddinoJ@dde41eef116c45e7ad8c210d83eced54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phyllis Majd,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Phyllis Majd,ou=Management,dc=bitwarden,dc=com", - email: "MajdP@0944047161f34c1d8982efcddb384be7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jacquette Cribbs,ou=Payroll,dc=bitwarden,dc=com", - email: "CribbsJ@93c66893cda74239a9a56d1199a44457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nevil Rosch,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nevil Rosch,ou=Human Resources,dc=bitwarden,dc=com", - email: "RoschN@624c1f5dcdc642f18cde445a6f13923f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndon Rao,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lyndon Rao,ou=Human Resources,dc=bitwarden,dc=com", - email: "RaoL@e231c4794bfb41dabd87a985afed1418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karina Kempffer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Karina Kempffer,ou=Payroll,dc=bitwarden,dc=com", - email: "KempffeK@efcd32daf30f47bab7fc31cf8968544d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khalil Popovich,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Khalil Popovich,ou=Administrative,dc=bitwarden,dc=com", - email: "PopovicK@800d6472c1b2428eb81e895d2bd61870.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomasa Dann,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Thomasa Dann,ou=Administrative,dc=bitwarden,dc=com", - email: "DannT@1ec01709e9aa47c08c93dbd75ae81ee4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jill Hollenbeck,ou=Product Development,dc=bitwarden,dc=com", - email: "HollenbJ@64c82d0938384c03a8fdb8436b666c54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rocke Tedrick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rocke Tedrick,ou=Management,dc=bitwarden,dc=com", - email: "TedrickR@19e6520548714755abff0e45bce4810c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subra Howie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Subra Howie,ou=Human Resources,dc=bitwarden,dc=com", - email: "HowieS@1d41a9185db448b89563a6b96b582da2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dasi Rabon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dasi Rabon,ou=Administrative,dc=bitwarden,dc=com", - email: "RabonD@27fbf31dae1b43168fe83a06d4b95ff2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivor Shennan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ivor Shennan,ou=Administrative,dc=bitwarden,dc=com", - email: "ShennanI@45381f65705a4542858d101bca1876a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tosca Linfield,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tosca Linfield,ou=Peons,dc=bitwarden,dc=com", - email: "LinfielT@2c480a27811f43a0bbdfebcf0cd44264.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shandee Vosup,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shandee Vosup,ou=Product Testing,dc=bitwarden,dc=com", - email: "VosupS@daecf76d8c3940f1a79ca6f29fd09de1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janith Gursin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Janith Gursin,ou=Product Testing,dc=bitwarden,dc=com", - email: "GursinJ@a26129e30095439fb00cad0905c71920.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rora Kingrey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rora Kingrey,ou=Product Development,dc=bitwarden,dc=com", - email: "KingreyR@1baee55063104657aab587314d3f4ff6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jacenta Papageorges,ou=Product Development,dc=bitwarden,dc=com", - email: "PapageoJ@d70cda87f2da4062bf59637caf72c7ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhett Vavroch,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rhett Vavroch,ou=Peons,dc=bitwarden,dc=com", - email: "VavrochR@8b7fc53ad9d44eee917cc3e25b895199.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allene Izzotti,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Allene Izzotti,ou=Peons,dc=bitwarden,dc=com", - email: "IzzottiA@72e93c7c4c5a421bbcbde1495b495745.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ag Charlino,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ag Charlino,ou=Product Development,dc=bitwarden,dc=com", - email: "CharlinA@b7be2bf29b064b349a27848f01a085d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Archie Kenyon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Archie Kenyon,ou=Administrative,dc=bitwarden,dc=com", - email: "KenyonA@31b13d20c58546e5aa89cbb19323b703.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malissia Albright,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Malissia Albright,ou=Human Resources,dc=bitwarden,dc=com", - email: "AlbrighM@09779ad61d2a4fdab823e1d8c1f5f2c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mccauley Guillet,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mccauley Guillet,ou=Peons,dc=bitwarden,dc=com", - email: "GuilletM@58f86a0b49c64ddabc6d69323185b642.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maudie Overcash,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maudie Overcash,ou=Product Testing,dc=bitwarden,dc=com", - email: "OvercasM@159a287c6435442fa0a5a9052a8c949d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pradyumn Darden,ou=Human Resources,dc=bitwarden,dc=com", - email: "DardenP@7fd31459ef69403fab8afffbf1b1fedf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yolanthe Svo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yolanthe Svo,ou=Peons,dc=bitwarden,dc=com", - email: "SvoY@d4a050fbe8424ef0ad6c18f4f810e367.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashley Koskinen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ashley Koskinen,ou=Administrative,dc=bitwarden,dc=com", - email: "KoskineA@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Liesbeth Dugal,ou=Product Development,dc=bitwarden,dc=com", - email: "DugalL@0ce86c5e561e43da985b731babc7ee7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Babb Mayne,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Babb Mayne,ou=Janitorial,dc=bitwarden,dc=com", - email: "MayneB@c27a00f3c7f148d486de7c0cf03bd914.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dehlia Madgett,ou=Janitorial,dc=bitwarden,dc=com", - email: "MadgettD@f318f75c01ee43e0921a0e961414763d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Godfrey Wiltz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Godfrey Wiltz,ou=Peons,dc=bitwarden,dc=com", - email: "WiltzG@9b2c23de49384f84ae5a2204e6781b81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlana Crowell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Arlana Crowell,ou=Human Resources,dc=bitwarden,dc=com", - email: "CrowellA@2ae864edc92447c18c93c9a4cd896b97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arina Kempffer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arina Kempffer,ou=Peons,dc=bitwarden,dc=com", - email: "KempffeA@b5f5dce787d942a9beb6dc9f7c09c07b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cuthbert Vandagriff,ou=Janitorial,dc=bitwarden,dc=com", - email: "VandagrC@f34d92cdab5f41e598142a994af089cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gena Sookdeo,ou=Janitorial,dc=bitwarden,dc=com", - email: "SookdeoG@7192ef9a358648a898c636498c183ffc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Angelika Appenzeller,ou=Janitorial,dc=bitwarden,dc=com", - email: "AppenzeA@91d70d29739b45a5ab390be4cdfdd9f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bnrecad Dickie,ou=Product Development,dc=bitwarden,dc=com", - email: "DickieB@a914f96796cb4376a46a7e46c8ebb6a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kip Grimshaw,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kip Grimshaw,ou=Management,dc=bitwarden,dc=com", - email: "GrimshaK@ca43d93b2a2647ef8c67ee1857820bdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gerardo Pbx,ou=Human Resources,dc=bitwarden,dc=com", - email: "PbxG@a5043dbf64444983b86424abe39aba1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Addons Wurtz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Addons Wurtz,ou=Peons,dc=bitwarden,dc=com", - email: "WurtzA@0cca6f71d9404c488f8d31ec44e5edd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=MarieJosee Chiniwala,ou=Peons,dc=bitwarden,dc=com", - email: "ChiniwaM@f8d234f023da4a3fb593b28104632797.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farzin Nebel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Farzin Nebel,ou=Product Development,dc=bitwarden,dc=com", - email: "NebelF@960fde1bd9064545ac557eb042ebf65f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shell Hurst,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shell Hurst,ou=Janitorial,dc=bitwarden,dc=com", - email: "HurstS@12301f83685f482eaef7fc27694b679e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rochelle Paluso,ou=Human Resources,dc=bitwarden,dc=com", - email: "PalusoR@82d0d802cca8422e814bc6ecdf25484c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dwain OCarroll,ou=Human Resources,dc=bitwarden,dc=com", - email: "OCarrolD@8ae5753568884557b826bbbe6815b824.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khosro Kuo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Khosro Kuo,ou=Human Resources,dc=bitwarden,dc=com", - email: "KuoK@a081497caeb44f8587c4809a817c9728.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michel Kernahan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Michel Kernahan,ou=Product Testing,dc=bitwarden,dc=com", - email: "KernahaM@df756e7ca37d42aaab0cfecdbe1dbcdc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melba Besnier,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melba Besnier,ou=Management,dc=bitwarden,dc=com", - email: "BesnierM@5627b6b1b02646ec88c596099b169466.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailee Schwenk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ailee Schwenk,ou=Management,dc=bitwarden,dc=com", - email: "SchwenkA@1d184a251b65443396a8cb4416166285.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klink Aguilar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Klink Aguilar,ou=Product Development,dc=bitwarden,dc=com", - email: "AguilarK@075229ffb9b64ef789e1bac7125aa507.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arnis Daly,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arnis Daly,ou=Peons,dc=bitwarden,dc=com", - email: "DalyA@6a8087cffa824fdc9d204ef1b876817b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hermina Kennedy,ou=Human Resources,dc=bitwarden,dc=com", - email: "KennedyH@76aa1b335bb64366a833ba61a905d441.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ofilia Keilty,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ofilia Keilty,ou=Product Development,dc=bitwarden,dc=com", - email: "KeiltyO@b112fc0413114ddcbf0202947d5c2011.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ans Casperson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ans Casperson,ou=Administrative,dc=bitwarden,dc=com", - email: "CaspersA@fd10790283ad43fb8ee24519792eda1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janick McGregor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Janick McGregor,ou=Management,dc=bitwarden,dc=com", - email: "McGregoJ@0bec70e6fa8d461ab29f67f7a630e586.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chuan Bernstein,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chuan Bernstein,ou=Payroll,dc=bitwarden,dc=com", - email: "BernsteC@796636c316134f4ea242b8ffac574e0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donall HickmanMiott,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Donall HickmanMiott,ou=Management,dc=bitwarden,dc=com", - email: "HickmanD@1a52986d673a41e591f5e253ac65f5bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doc Cantlie,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Doc Cantlie,ou=Administrative,dc=bitwarden,dc=com", - email: "CantlieD@83146e7f57ba40bd8fd147c075fc9a0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christer Chapen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Christer Chapen,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChapenC@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maribeth Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", - email: "EslamboM@af76d6a9c4ee47b5be6351f28cb88a83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flory Ziegler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Flory Ziegler,ou=Management,dc=bitwarden,dc=com", - email: "ZieglerF@e4cb1f57405243129844c08d2e77b681.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Altay Stevenson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Altay Stevenson,ou=Management,dc=bitwarden,dc=com", - email: "StevensA@989c1fcac1b54129b688e303c3fcab40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mada Curtin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mada Curtin,ou=Administrative,dc=bitwarden,dc=com", - email: "CurtinM@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dasha Kivell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dasha Kivell,ou=Product Development,dc=bitwarden,dc=com", - email: "KivellD@a6532d9f9838406fa36604afc09c1100.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minna Hyatt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Minna Hyatt,ou=Payroll,dc=bitwarden,dc=com", - email: "HyattM@859c4245e0604293a1eb9ae487b0f7d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiff Brambley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tiff Brambley,ou=Product Development,dc=bitwarden,dc=com", - email: "BrambleT@7388d6407a304050b7d1b21890b91ab6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerrard Kinos,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gerrard Kinos,ou=Management,dc=bitwarden,dc=com", - email: "KinosG@5c9b9d5c8575423f84d184975eedd13e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Philippine McDaniel,ou=Janitorial,dc=bitwarden,dc=com", - email: "McDanieP@3f8d70a2bece482898bc31be4127bc01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norikatsu Knox,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Norikatsu Knox,ou=Administrative,dc=bitwarden,dc=com", - email: "KnoxN@ba892bea3b8945d19eac9125b1901b77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabine Litz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sabine Litz,ou=Janitorial,dc=bitwarden,dc=com", - email: "LitzS@577d33811aef46c2a87033464ba91210.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candee Rightmire,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Candee Rightmire,ou=Management,dc=bitwarden,dc=com", - email: "RightmiC@88a362d8c08640c59911ccd0faa3d84a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jorge Layton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jorge Layton,ou=Payroll,dc=bitwarden,dc=com", - email: "LaytonJ@2632abf3a2f24d08a48ac678703e5a07.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=RongChin Sawczyn,ou=Human Resources,dc=bitwarden,dc=com", - email: "SawczynR@8d2bde7cc8a74ac5887aa1747493b68d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Brigida Forecasting,ou=Human Resources,dc=bitwarden,dc=com", - email: "ForecasB@e75be13fa8934e138f210bfa3bbca375.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ed Joe,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ed Joe,ou=Administrative,dc=bitwarden,dc=com", - email: "JoeE@8d3c44ed2e3e425b88258d14938dfd7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Portia Sim,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Portia Sim,ou=Product Development,dc=bitwarden,dc=com", - email: "SimP@5f44867d3815485286c6292e360f1c67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jian Gardner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jian Gardner,ou=Product Development,dc=bitwarden,dc=com", - email: "GardnerJ@52dd6b005be946f88fd736bfecf761d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashien Brewton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ashien Brewton,ou=Management,dc=bitwarden,dc=com", - email: "BrewtonA@719d42488cdd461d9a46a6d7e3fd0edb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opto Seay,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Opto Seay,ou=Product Development,dc=bitwarden,dc=com", - email: "SeayO@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rolande Prattico,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rolande Prattico,ou=Administrative,dc=bitwarden,dc=com", - email: "PratticR@4ea4f1e353e542d591c9ee228e04b29f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reggie Boggs,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Reggie Boggs,ou=Human Resources,dc=bitwarden,dc=com", - email: "BoggsR@03fd765619e04536a01e210ec3db68b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zero Dourley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zero Dourley,ou=Product Testing,dc=bitwarden,dc=com", - email: "DourleyZ@713ec84902e3407ea7c47d43e09273a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabie Hirayama,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gabie Hirayama,ou=Peons,dc=bitwarden,dc=com", - email: "HirayamG@3a3f7974ffc147bc8e5ab8732ee37359.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalindi Keene,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kalindi Keene,ou=Administrative,dc=bitwarden,dc=com", - email: "KeeneK@453e1aa146534f789cee9f78a1f430f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rod Krenos,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rod Krenos,ou=Human Resources,dc=bitwarden,dc=com", - email: "KrenosR@7099256f6cc64433985279df12772e6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bahadir Borozny,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bahadir Borozny,ou=Management,dc=bitwarden,dc=com", - email: "BoroznyB@91bb90ade3ed45329bdbe468ae424f00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prudy Morelli,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Prudy Morelli,ou=Human Resources,dc=bitwarden,dc=com", - email: "MorelliP@952e219a347c41c2b9729763800ed734.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zero Volchegursky,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zero Volchegursky,ou=Management,dc=bitwarden,dc=com", - email: "VolchegZ@3de40f1f4bb746cab1a4ba47c2543175.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Riyaz Leone,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Riyaz Leone,ou=Management,dc=bitwarden,dc=com", - email: "LeoneR@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jade Njo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jade Njo,ou=Janitorial,dc=bitwarden,dc=com", - email: "NjoJ@dc14108a33864343abea453a90202c78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hildy Hargrow,ou=Human Resources,dc=bitwarden,dc=com", - email: "HargrowH@7080ace676f14d789edd6d153887110b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Albert Healy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Albert Healy,ou=Human Resources,dc=bitwarden,dc=com", - email: "HealyA@2c865634e0e045e2b70cc9cc6dc9005f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dorry Marshaus,ou=Human Resources,dc=bitwarden,dc=com", - email: "MarshauD@07a4bc595e2e42d18a0e9f7b0a858ca8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helsa Eder,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Helsa Eder,ou=Administrative,dc=bitwarden,dc=com", - email: "EderH@e9361d04edcf46f9a225b99f53867f61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patt Overby,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Patt Overby,ou=Administrative,dc=bitwarden,dc=com", - email: "OverbyP@11458275b70842ea81e3c8a96d06615f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dasya Chenard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dasya Chenard,ou=Management,dc=bitwarden,dc=com", - email: "ChenardD@d9e32d7c83eb4ccf8004a41c9874f6a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosana Hensen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rosana Hensen,ou=Management,dc=bitwarden,dc=com", - email: "HensenR@b5a44095f2374197a4ff741b9417f6b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thekla Helpb,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Thekla Helpb,ou=Payroll,dc=bitwarden,dc=com", - email: "HelpbT@5319f4b5e8194323b5cce9067279026f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Seyma Eubanks,ou=Janitorial,dc=bitwarden,dc=com", - email: "EubanksS@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquetta Alary,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jacquetta Alary,ou=Peons,dc=bitwarden,dc=com", - email: "AlaryJ@fce4c1e9f1a6429083bed21e1e54a500.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marjory Jasrotia,ou=Administrative,dc=bitwarden,dc=com", - email: "JasrotiM@9aabc0c0846e44fe90512a9449c3b77f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=LouisPhilippe Bazemore,ou=Human Resources,dc=bitwarden,dc=com", - email: "BazemorL@2cd58a63642c4f52b76ece1f793d964f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bonnie Bechtel,ou=Human Resources,dc=bitwarden,dc=com", - email: "BechtelB@101b8efea162489cbe4b00acbe71ea5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nari Dilallo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nari Dilallo,ou=Payroll,dc=bitwarden,dc=com", - email: "DilalloN@eec4bbb8da77429f893524017458e5d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betti Tanner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Betti Tanner,ou=Human Resources,dc=bitwarden,dc=com", - email: "TannerB@f3bf6ba88e9949f59b53ce8700fcbd97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weilin Tupling,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Weilin Tupling,ou=Peons,dc=bitwarden,dc=com", - email: "TuplingW@f6a15f7382e844a784e99c66615d4c58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pierrette Loyola,ou=Janitorial,dc=bitwarden,dc=com", - email: "LoyolaP@d3b7d248cb224bf8a4d600d381f25048.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roly Odden,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Roly Odden,ou=Management,dc=bitwarden,dc=com", - email: "OddenR@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Junie Siegel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Junie Siegel,ou=Product Development,dc=bitwarden,dc=com", - email: "SiegelJ@0266937dc1da4f6ca345872742d007d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karna Nairn,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karna Nairn,ou=Peons,dc=bitwarden,dc=com", - email: "NairnK@240320ec20894b66932f0d930796bec9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pascale Innes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pascale Innes,ou=Peons,dc=bitwarden,dc=com", - email: "InnesP@e740afc7882b41df9170031ff18ecd69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darbie Scalabrini,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Darbie Scalabrini,ou=Peons,dc=bitwarden,dc=com", - email: "ScalabrD@543e9d6f1baf4e398f4b35d8fd14d7df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Evangelia DeBernardo,ou=Product Development,dc=bitwarden,dc=com", - email: "DeBernaE@a45191844e6a4a65beb487444486faa6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elsi Toles,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elsi Toles,ou=Administrative,dc=bitwarden,dc=com", - email: "TolesE@e5fdd3d67af74cde904584628c237f35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Xuong Mendonca,ou=Product Testing,dc=bitwarden,dc=com", - email: "MendoncX@89cc2a9b2ec949b1a8070c39d600dc45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steinar Royster,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Steinar Royster,ou=Administrative,dc=bitwarden,dc=com", - email: "RoysterS@3c377b6d3a464b54841abc0f3eeba132.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Callie Constantinescu,ou=Janitorial,dc=bitwarden,dc=com", - email: "ConstanC@a997ea3fe107458ebeee5012c3a4f6a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sono Wissler,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sono Wissler,ou=Administrative,dc=bitwarden,dc=com", - email: "WisslerS@fa0238e4957946f6b30d70f1a6cdea6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Par Fani,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Par Fani,ou=Product Testing,dc=bitwarden,dc=com", - email: "FaniP@faec862307e2490ab9310236bae87643.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ethelda Stagmier,ou=Human Resources,dc=bitwarden,dc=com", - email: "StagmieE@0444443925704655be3c38857a5dd7a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maso Gerlinsky,ou=Janitorial,dc=bitwarden,dc=com", - email: "GerlinsM@0cab6ba3bc394ea5975adecee65ca1c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matti Beisel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Matti Beisel,ou=Peons,dc=bitwarden,dc=com", - email: "BeiselM@0b56a4c94023459d8772d8f7af50540e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regine Sergi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Regine Sergi,ou=Product Testing,dc=bitwarden,dc=com", - email: "SergiR@28361b33929c47fcba44b2074b43f0e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oralia Daymond,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Oralia Daymond,ou=Payroll,dc=bitwarden,dc=com", - email: "DaymondO@b6e5aee724a54904bb06d1cd94c0be8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adey Mein,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Adey Mein,ou=Janitorial,dc=bitwarden,dc=com", - email: "MeinA@dc836bc8f8b34c3ea421ef30574e0176.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettina Petree,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bettina Petree,ou=Management,dc=bitwarden,dc=com", - email: "PetreeB@8f32883a93db43f481d60f1e3715ec28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sisile Larner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sisile Larner,ou=Product Development,dc=bitwarden,dc=com", - email: "LarnerS@39906d66250a450299ac97c0daaa1661.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roseann Sheldon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Roseann Sheldon,ou=Peons,dc=bitwarden,dc=com", - email: "SheldonR@7d42ba8899ef4daea01b1b9e81793953.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Irc Grona,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Irc Grona,ou=Administrative,dc=bitwarden,dc=com", - email: "GronaI@816208f7d0af4f3aad2a75dc5fc86d1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michael Verrenneau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Michael Verrenneau,ou=Payroll,dc=bitwarden,dc=com", - email: "VerrennM@d7b181ccc8954040a7c4160403df7781.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walley Gostanian,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Walley Gostanian,ou=Janitorial,dc=bitwarden,dc=com", - email: "GostaniW@5d8901804e424468b0bef6e0378317d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Evelien Veyrat,ou=Human Resources,dc=bitwarden,dc=com", - email: "VeyratE@9604db567a254e64976e339d21f654b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Charyl Fulmer,ou=Product Testing,dc=bitwarden,dc=com", - email: "FulmerC@47b619accc2242b98a908129e561089a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Torrie Ramachandran,ou=Administrative,dc=bitwarden,dc=com", - email: "RamachaT@9a3c3b333ac543bcbc3719d5e5f7e60a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emogene Assistance,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Emogene Assistance,ou=Management,dc=bitwarden,dc=com", - email: "AssistaE@e3adbf44503541a8a477fd522db5f455.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florance Berna,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Florance Berna,ou=Payroll,dc=bitwarden,dc=com", - email: "BernaF@2b42e3127b664e198e679bfa6b541f42.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barry Holcombe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Barry Holcombe,ou=Product Testing,dc=bitwarden,dc=com", - email: "HolcombB@c41cc1e3b0d842d3bbad24db018def06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grietje Gilstorf,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Grietje Gilstorf,ou=Management,dc=bitwarden,dc=com", - email: "GilstorG@ec1b66029a6a489dbc29c0e623bfb41a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Una Shang,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Una Shang,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShangU@923b7e20c77d4d479afa0bf52e9ff34f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gina Pilotte,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gina Pilotte,ou=Management,dc=bitwarden,dc=com", - email: "PilotteG@c78a9a65ca75452787721ced31a98916.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rolando Yancey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rolando Yancey,ou=Management,dc=bitwarden,dc=com", - email: "YanceyR@4a0e814607ef4adf977758aa230a12dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardeen Porter,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ardeen Porter,ou=Administrative,dc=bitwarden,dc=com", - email: "PorterA@758c49f7de6a4e8cbc4f91d054f2473b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gajendra Dery,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gajendra Dery,ou=Product Testing,dc=bitwarden,dc=com", - email: "DeryG@06a9344fa78d4a1da0daf58ee470dc98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jere Jasmin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jere Jasmin,ou=Payroll,dc=bitwarden,dc=com", - email: "JasminJ@191c836466354fe5b2fec288c1d53713.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caritta Verma,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Caritta Verma,ou=Product Testing,dc=bitwarden,dc=com", - email: "VermaC@77eb010514ae421883af972518c1a82e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edric Tilk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Edric Tilk,ou=Administrative,dc=bitwarden,dc=com", - email: "TilkE@c6381227edb84dfc90689a9cc3080334.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janelle Downes,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Janelle Downes,ou=Administrative,dc=bitwarden,dc=com", - email: "DownesJ@e080eb242a96464dba0da1ce711ec7f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebeca Dicaprio,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rebeca Dicaprio,ou=Management,dc=bitwarden,dc=com", - email: "DicapriR@e33d3ed1cbf54d6c887c9e826f3363fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Everett Pittam,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Everett Pittam,ou=Product Testing,dc=bitwarden,dc=com", - email: "PittamE@d5d0e43f3dbe4e67a0afeef31a233058.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ngai Antkowiak,ou=Administrative,dc=bitwarden,dc=com", - email: "AntkowiN@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erwin Hlady,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Erwin Hlady,ou=Management,dc=bitwarden,dc=com", - email: "HladyE@7f15b04bcb6949009d518c224559328a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shiu Masty,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shiu Masty,ou=Peons,dc=bitwarden,dc=com", - email: "MastyS@171799a1ff4347f880be38e1dad1f90e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terrijo Roth,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Terrijo Roth,ou=Peons,dc=bitwarden,dc=com", - email: "RothT@164b360781494ed5a1326bd8161f5895.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Venus Fischetti,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Venus Fischetti,ou=Product Testing,dc=bitwarden,dc=com", - email: "FischetV@b25a6c9a4813403592f85516045bbb70.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hewlet Noorani,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hewlet Noorani,ou=Administrative,dc=bitwarden,dc=com", - email: "NooraniH@494f2548825245788f70b0629ca28b58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hyacinth Wayler,ou=Product Development,dc=bitwarden,dc=com", - email: "WaylerH@649c22a7b0164583bbf6f7f11f7746ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pansy Ochman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pansy Ochman,ou=Product Development,dc=bitwarden,dc=com", - email: "OchmanP@ecd862454c8b49a4ab4dccef5a805c86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henny Recabarren,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Henny Recabarren,ou=Product Development,dc=bitwarden,dc=com", - email: "RecabarH@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Humberto Gottschalk,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Humberto Gottschalk,ou=Peons,dc=bitwarden,dc=com", - email: "GottschH@646791cae30048e78e840ca24e142dc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vernon Planthara,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vernon Planthara,ou=Administrative,dc=bitwarden,dc=com", - email: "PlanthaV@59024f397a2e4e8693b32cc8290b543c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clo Upshaw,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Clo Upshaw,ou=Human Resources,dc=bitwarden,dc=com", - email: "UpshawC@04f6d76d8e594566a6a34acb754c567c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Afton Sykes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Afton Sykes,ou=Peons,dc=bitwarden,dc=com", - email: "SykesA@5b18d26e867d4e609682950868db4cbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vesna Kowalski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vesna Kowalski,ou=Management,dc=bitwarden,dc=com", - email: "KowalskV@af93e6fe934c42b6ad84be86f4af830d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prissie Rintala,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Prissie Rintala,ou=Product Testing,dc=bitwarden,dc=com", - email: "RintalaP@4985d7e0a81648efb3bc84a7fdf3691b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Virginia Telfer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Virginia Telfer,ou=Product Development,dc=bitwarden,dc=com", - email: "TelferV@dbc002b2cc9f41fca56ea18c0d728d15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginette Brans,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ginette Brans,ou=Peons,dc=bitwarden,dc=com", - email: "BransG@10bb017137f049d59bb1ad7676fcda69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marsie OConner,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marsie OConner,ou=Janitorial,dc=bitwarden,dc=com", - email: "OConnerM@11c4ba17ab574f3bb46442f426b1a2c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amandip Habib,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Amandip Habib,ou=Product Testing,dc=bitwarden,dc=com", - email: "HabibA@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ezella Pesik,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ezella Pesik,ou=Product Development,dc=bitwarden,dc=com", - email: "PesikE@d2ec725893494e2d93ab18b2a21bf817.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liv Tabl,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Liv Tabl,ou=Management,dc=bitwarden,dc=com", - email: "TablL@fae6cb3fc8dc4148a6266128bed876ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joni McClarren,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joni McClarren,ou=Human Resources,dc=bitwarden,dc=com", - email: "McClarrJ@d13f782f99e54b11940789543670141b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Arlinda Blackwood,ou=Product Development,dc=bitwarden,dc=com", - email: "BlackwoA@72b0656cb70b415ca87f666c0c859e2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonida Stefanac,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Leonida Stefanac,ou=Peons,dc=bitwarden,dc=com", - email: "StefanaL@4d36f09b6d2e498eae6cce028472d669.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viviyan Baird,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Viviyan Baird,ou=Product Development,dc=bitwarden,dc=com", - email: "BairdV@6ec1e4c42a894d9bb6d499b1b4526fa2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robbin Meriwether,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Robbin Meriwether,ou=Product Development,dc=bitwarden,dc=com", - email: "MeriwetR@bdc3cbcec8a2447188118ae5b601e009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwennyth Basser,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gwennyth Basser,ou=Administrative,dc=bitwarden,dc=com", - email: "BasserG@34de97baa0ba4e6e804422e1a33c9bba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binh Aversa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Binh Aversa,ou=Payroll,dc=bitwarden,dc=com", - email: "AversaB@e05752054bdf4aeabb75f365622f6480.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlee Jawor,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marlee Jawor,ou=Product Testing,dc=bitwarden,dc=com", - email: "JaworM@bbf9c04e50a241698a5503a647ae8281.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antonio Risdal,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Antonio Risdal,ou=Product Testing,dc=bitwarden,dc=com", - email: "RisdalA@b18734eaf31b4b8a9fcf2accdab91823.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dieter Dickinson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dieter Dickinson,ou=Peons,dc=bitwarden,dc=com", - email: "DickinsD@869bcf8a299b41b19a933afcb83f9250.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilda Shnay,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gilda Shnay,ou=Product Development,dc=bitwarden,dc=com", - email: "ShnayG@e6981380e68944d6b1fabbe651d0a66a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnese Herrington,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Agnese Herrington,ou=Human Resources,dc=bitwarden,dc=com", - email: "HerringA@5e097b6f4fcc40c7a34c83f921520553.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebekkah Meleski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rebekkah Meleski,ou=Peons,dc=bitwarden,dc=com", - email: "MeleskiR@7342ff3b405b4e4cae02a437b3fc6bca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noelyn Blander,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Noelyn Blander,ou=Human Resources,dc=bitwarden,dc=com", - email: "BlanderN@a074c5229e6741c19f43f776155a3d03.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamera Rennie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tamera Rennie,ou=Payroll,dc=bitwarden,dc=com", - email: "RennieT@14a50969231442b7a4661f1630e8f16c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Portia Cruzado,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Portia Cruzado,ou=Administrative,dc=bitwarden,dc=com", - email: "CruzadoP@fe60fc6c21f046639fc69fd725ace3ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinett Samson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Robinett Samson,ou=Payroll,dc=bitwarden,dc=com", - email: "SamsonR@b0365da8cd3b4eef9d2acb818f1cbef0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kelcey Potvin,ou=Product Testing,dc=bitwarden,dc=com", - email: "PotvinK@a199f75806e043a29f88f2704ef795cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Coleman Jeavons,ou=Human Resources,dc=bitwarden,dc=com", - email: "JeavonsC@66856639d6224561b9d5baf4deda51d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherman Frodsham,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sherman Frodsham,ou=Administrative,dc=bitwarden,dc=com", - email: "FrodshaS@d71f931e88694d74b88e32769af98e29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maury Jansen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maury Jansen,ou=Management,dc=bitwarden,dc=com", - email: "JansenM@0e3cc15d16b54ddeae75d206f48f1204.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilly Ocampo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tilly Ocampo,ou=Payroll,dc=bitwarden,dc=com", - email: "OcampoT@3ad345248df74d59a3ad7d7cbfe0100d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pauli Capes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pauli Capes,ou=Human Resources,dc=bitwarden,dc=com", - email: "CapesP@6a7058ac13d642658b7f7adc5e875217.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Augusta Subick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Augusta Subick,ou=Payroll,dc=bitwarden,dc=com", - email: "SubickA@ce6ea378c27b45efb4f43990327ef994.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jastinder Gysel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jastinder Gysel,ou=Administrative,dc=bitwarden,dc=com", - email: "GyselJ@38743dc2a7284707827cb55c3c04b77c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jason Loveless,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jason Loveless,ou=Human Resources,dc=bitwarden,dc=com", - email: "LovelesJ@3f957af8403b44cda402864b6bf1f589.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pamella Trudel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pamella Trudel,ou=Human Resources,dc=bitwarden,dc=com", - email: "TrudelP@acaf00cd94184334a88c04c02dc188dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucina Volfe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lucina Volfe,ou=Payroll,dc=bitwarden,dc=com", - email: "VolfeL@875af3604a224bc0adcaa7037f12ca60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheena Chung,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sheena Chung,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChungS@8d3c44ed2e3e425b88258d14938dfd7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andriana Myers,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Andriana Myers,ou=Janitorial,dc=bitwarden,dc=com", - email: "MyersA@4d2b6aeb52944f46890dd70951e65aa3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lourdes Rossanese,ou=Human Resources,dc=bitwarden,dc=com", - email: "RossaneL@ab5a3e15caae4984acf7b1a615995a84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henk Goin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Henk Goin,ou=Product Development,dc=bitwarden,dc=com", - email: "GoinH@d457e1580197417888cc4a9c93599471.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cesar Rabecs,ou=Product Testing,dc=bitwarden,dc=com", - email: "RabecsC@a38a54d93a9a4ec1a621a87e5a204d4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tamma Parkhill,ou=Product Testing,dc=bitwarden,dc=com", - email: "ParkhilT@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leese DeWiele,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leese DeWiele,ou=Administrative,dc=bitwarden,dc=com", - email: "DeWieleL@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Andrzej Carrillo,ou=Janitorial,dc=bitwarden,dc=com", - email: "CarrillA@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emp Lenior,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Emp Lenior,ou=Administrative,dc=bitwarden,dc=com", - email: "LeniorE@78455201418b4eda8d1307aa8e77e3d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorine Skaret,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorine Skaret,ou=Human Resources,dc=bitwarden,dc=com", - email: "SkaretL@1ab5e46ea4fb40b292686a380747c794.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rora Duthie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rora Duthie,ou=Product Development,dc=bitwarden,dc=com", - email: "DuthieR@127f75e34fa94456a07c8ec8f332f580.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aubrette Carlson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aubrette Carlson,ou=Peons,dc=bitwarden,dc=com", - email: "CarlsonA@2c0f47a97a024956922ed080c07c7087.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delisle Moledina,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Delisle Moledina,ou=Management,dc=bitwarden,dc=com", - email: "MoledinD@7aa27c58a55f473b92a9bea4edfa7790.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chloris Fogle,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chloris Fogle,ou=Payroll,dc=bitwarden,dc=com", - email: "FogleC@c925a785cc914f7896a342038a540076.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hadria Keung,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hadria Keung,ou=Payroll,dc=bitwarden,dc=com", - email: "KeungH@c8f486d27e8b44169d6f371867433900.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarena Sandhar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sarena Sandhar,ou=Product Development,dc=bitwarden,dc=com", - email: "SandharS@6994ff306ef64425a30543b5e9a42d04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shina Vilhan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shina Vilhan,ou=Human Resources,dc=bitwarden,dc=com", - email: "VilhanS@a50159dd57124aa194b68385c74dfad6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candace Nadler,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Candace Nadler,ou=Human Resources,dc=bitwarden,dc=com", - email: "NadlerC@1f029313d9f242ecbc83d4ed5e9cc00f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Osiris Rtpbuild,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Osiris Rtpbuild,ou=Management,dc=bitwarden,dc=com", - email: "RtpbuilO@d223bf95e305408f8ce65e186425ec5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patt Lampe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Patt Lampe,ou=Payroll,dc=bitwarden,dc=com", - email: "LampeP@fb51e4746fc04473a7bebe9c1a3d6645.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ola Fricks,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ola Fricks,ou=Management,dc=bitwarden,dc=com", - email: "FricksO@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jobie Brassem,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jobie Brassem,ou=Product Development,dc=bitwarden,dc=com", - email: "BrassemJ@da5a908240674035b4f089697eec14f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amarjit Shull,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amarjit Shull,ou=Management,dc=bitwarden,dc=com", - email: "ShullA@33e3d5f7842a441e967a49435691d7e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elysee Maenpaa,ou=Payroll,dc=bitwarden,dc=com", - email: "MaenpaaE@fcff654db86140cbab4aa071c0d40b07.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marriet Grau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marriet Grau,ou=Peons,dc=bitwarden,dc=com", - email: "GrauM@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kellsie Tilmon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kellsie Tilmon,ou=Management,dc=bitwarden,dc=com", - email: "TilmonK@b0ec022ac74f4073806f06ef760d43a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deloria Tulk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Deloria Tulk,ou=Janitorial,dc=bitwarden,dc=com", - email: "TulkD@dd51cc0eafb644c3952bfc8183b9acd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julianna Towsley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Julianna Towsley,ou=Peons,dc=bitwarden,dc=com", - email: "TowsleyJ@dd31f4ea6f0c44f4aa5f46684ef66e9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Power Surazski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Power Surazski,ou=Administrative,dc=bitwarden,dc=com", - email: "SurazskP@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YueMin Dube,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=YueMin Dube,ou=Peons,dc=bitwarden,dc=com", - email: "DubeY@e54368d6007d4c1ebda0848d18470ef4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerald Hamel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gerald Hamel,ou=Management,dc=bitwarden,dc=com", - email: "HamelG@28fab2a5e4034ede9d4f584a0fd75e72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cami Hanley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cami Hanley,ou=Janitorial,dc=bitwarden,dc=com", - email: "HanleyC@ce001280b666479eb0eb4d06e9257b27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shigeki Sharpe,ou=Janitorial,dc=bitwarden,dc=com", - email: "SharpeS@8a8d1631964049f182939e971c150026.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silvana Barakat,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Silvana Barakat,ou=Administrative,dc=bitwarden,dc=com", - email: "BarakatS@7e7a2a61072144f1bbb5c3973fb03067.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maxey Bulman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maxey Bulman,ou=Janitorial,dc=bitwarden,dc=com", - email: "BulmanM@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brigitta Shalmon,ou=Payroll,dc=bitwarden,dc=com", - email: "ShalmonB@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dzung Newsom,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dzung Newsom,ou=Administrative,dc=bitwarden,dc=com", - email: "NewsomD@726081298eb8483da69721764554f8d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mats DMSDB,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mats DMSDB,ou=Janitorial,dc=bitwarden,dc=com", - email: "DMSDBM@ddab05ea50514da6944e78ee5d4888e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shigeru McElhone,ou=Janitorial,dc=bitwarden,dc=com", - email: "McElhonS@d0a3070a29b14a28b31681edd00fc298.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Harrietta Cetraro,ou=Payroll,dc=bitwarden,dc=com", - email: "CetraroH@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kevyn Minai,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kevyn Minai,ou=Management,dc=bitwarden,dc=com", - email: "MinaiK@67a9d61944244b79b04665b16e622d77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhanvinder Biss,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dhanvinder Biss,ou=Peons,dc=bitwarden,dc=com", - email: "BissD@b838776a11e74718955f6601c7f8d1e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joan Badowski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joan Badowski,ou=Human Resources,dc=bitwarden,dc=com", - email: "BadowskJ@b27312faaad24253933d0ff172f19446.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lyman Obenauf,ou=Human Resources,dc=bitwarden,dc=com", - email: "ObenaufL@f2546b85540e458c8c528fab744261e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Libby Sarna,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Libby Sarna,ou=Peons,dc=bitwarden,dc=com", - email: "SarnaL@17f5261c44794d03856d13a510e0aa52.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madalena Farnham,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Madalena Farnham,ou=Administrative,dc=bitwarden,dc=com", - email: "FarnhamM@3ce51f6d63564349a707188cebe0b9db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peder Chowhan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Peder Chowhan,ou=Management,dc=bitwarden,dc=com", - email: "ChowhanP@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bird Bluschke,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bird Bluschke,ou=Product Development,dc=bitwarden,dc=com", - email: "BluschkB@27e750a927bc40878975a7adaa60f684.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaycee Wiggins,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kaycee Wiggins,ou=Management,dc=bitwarden,dc=com", - email: "WigginsK@bebbec64fc5b426aa6d6b13aab8ac6c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fwpreg Daymond,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fwpreg Daymond,ou=Peons,dc=bitwarden,dc=com", - email: "DaymondF@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lex PrestonThomas,ou=Product Testing,dc=bitwarden,dc=com", - email: "PrestonL@3fe3dd83a28445b5a95bc5da230f8774.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jobi Bryant,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jobi Bryant,ou=Payroll,dc=bitwarden,dc=com", - email: "BryantJ@547fa50227684350b1f92837929bd166.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Allsun Hjartarson,ou=Product Development,dc=bitwarden,dc=com", - email: "HjartarA@02ff8597c50443248a49f6bef6b843ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Modesta WAR,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Modesta WAR,ou=Human Resources,dc=bitwarden,dc=com", - email: "WARM@9f5475585fd4485cae51ba09721f524b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eveleen Jasti,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Eveleen Jasti,ou=Peons,dc=bitwarden,dc=com", - email: "JastiE@91c2f03d5f5f46289c8711d8060fde6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Carmody Kenworthy,ou=Product Testing,dc=bitwarden,dc=com", - email: "KenwortC@302710031153467b98bc48e3c4bc257f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toney Singh,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Toney Singh,ou=Peons,dc=bitwarden,dc=com", - email: "SinghT@c8fa77eb4aa0482bb77de35245880a29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amelia Altekar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Amelia Altekar,ou=Payroll,dc=bitwarden,dc=com", - email: "AltekarA@d88544e210f84cc7827363eadc0d3128.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tiny Kreiger,ou=Product Testing,dc=bitwarden,dc=com", - email: "KreigerT@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Audivox Duncan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Audivox Duncan,ou=Payroll,dc=bitwarden,dc=com", - email: "DuncanA@dddbcacbba5c4e16876ccb04b6135782.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eliezer Rheault,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eliezer Rheault,ou=Management,dc=bitwarden,dc=com", - email: "RheaultE@395a1522673545a2b6f4ec5f1b7796af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KimMinh Lenehan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=KimMinh Lenehan,ou=Peons,dc=bitwarden,dc=com", - email: "LenehanK@d4eabd10ae4c40a485e4ca44d8a0318c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viole Kirkland,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Viole Kirkland,ou=Payroll,dc=bitwarden,dc=com", - email: "KirklanV@4f1519512714466da3525736d08bec31.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brahmananda Montmorency,ou=Peons,dc=bitwarden,dc=com", - email: "MontmorB@127bd07831b64b0e92ce92ea10c209be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=ThanhTinh Tognoni,ou=Peons,dc=bitwarden,dc=com", - email: "TognoniT@73644206f22948e88cda9a77b8ecb4e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bahram Strauch,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bahram Strauch,ou=Product Testing,dc=bitwarden,dc=com", - email: "StrauchB@5c9608f5189942e19cb9ace71ff4cc1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jagdev Paulett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jagdev Paulett,ou=Product Development,dc=bitwarden,dc=com", - email: "PaulettJ@18569f82a4734a83991f0330d7e468e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Graham Tanner,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Graham Tanner,ou=Product Testing,dc=bitwarden,dc=com", - email: "TannerG@61c05d1e8ba240fc8053923a475b5800.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beau Watkins,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Beau Watkins,ou=Product Testing,dc=bitwarden,dc=com", - email: "WatkinsB@b50829feebfd4e22a33d8ae67daa6149.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Durali Pickens,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Durali Pickens,ou=Payroll,dc=bitwarden,dc=com", - email: "PickensD@dba38a73d24f45109e2386384dae2ed3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Brigit Hollingshead,ou=Product Testing,dc=bitwarden,dc=com", - email: "HollingB@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chatri Hinchey,ou=Product Testing,dc=bitwarden,dc=com", - email: "HincheyC@b9f44a907d41480f95c6eb062092de29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=HingFai Kenworthy,ou=Administrative,dc=bitwarden,dc=com", - email: "KenwortH@00051a1d50da40f1b7bc2c53cc756ab9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jorry Yost,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jorry Yost,ou=Management,dc=bitwarden,dc=com", - email: "YostJ@7de1122203ab4ca0a8ccf7ec79a93139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laser DeNest,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Laser DeNest,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeNestL@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chanda Leenher,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Chanda Leenher,ou=Management,dc=bitwarden,dc=com", - email: "LeenherC@d7681493431f47c4aee39faeda0957a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luke Catlett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Luke Catlett,ou=Management,dc=bitwarden,dc=com", - email: "CatlettL@e316e4482c314662b2118590a4d2173a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vicheara Scssdev,ou=Product Development,dc=bitwarden,dc=com", - email: "ScssdevV@234773e7f27c46889eabde71c1cb8d67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Femke Krikorian,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Femke Krikorian,ou=Human Resources,dc=bitwarden,dc=com", - email: "KrikoriF@09621247c2534422b65027556ba23ec6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Corkstown MacLaren,ou=Administrative,dc=bitwarden,dc=com", - email: "MacLareC@66ebe9b8d29246329e6e17db480edb7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evert Traynor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Evert Traynor,ou=Management,dc=bitwarden,dc=com", - email: "TraynorE@ed89cbae21214e4d86110d4c5688d2bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=HackHoo Shapland,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShaplanH@737b5dcffbb7418088cb0751fc35cc9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tess Ketchum,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tess Ketchum,ou=Product Development,dc=bitwarden,dc=com", - email: "KetchumT@394281e627bd4a44a2749e8e04564938.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jordanna Cacha,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jordanna Cacha,ou=Payroll,dc=bitwarden,dc=com", - email: "CachaJ@14d341098b454a7bb14a0607de600424.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brietta Dages,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brietta Dages,ou=Janitorial,dc=bitwarden,dc=com", - email: "DagesB@7022b955bef74762989f3e8241ec17a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natver Alleva,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Natver Alleva,ou=Janitorial,dc=bitwarden,dc=com", - email: "AllevaN@9f370afe60bb4f1ab01d1df2abbe72ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Raffi Tzaneteas,ou=Administrative,dc=bitwarden,dc=com", - email: "TzaneteR@1d18e975cba24a40891491f30692b0e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phan Rimsa,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Phan Rimsa,ou=Product Development,dc=bitwarden,dc=com", - email: "RimsaP@e2cbb69d157949f2a27ec4f04bfab065.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Helenelizabeth Ledwell,ou=Product Development,dc=bitwarden,dc=com", - email: "LedwellH@80c3b4098db8471fa50bda6c3d5b250b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thakor Brandon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Thakor Brandon,ou=Peons,dc=bitwarden,dc=com", - email: "BrandonT@bf22abb443f242d591554d5b4dde5bdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Samir Guerin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Samir Guerin,ou=Janitorial,dc=bitwarden,dc=com", - email: "GuerinS@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colene Revis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Colene Revis,ou=Product Testing,dc=bitwarden,dc=com", - email: "RevisC@c92365298bdc408a8d5a96e4deae0869.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mike Funderburg,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mike Funderburg,ou=Peons,dc=bitwarden,dc=com", - email: "FunderbM@fb31dc4ff0104ce1b3fc5a01a2d75d94.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozalie Sassine,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rozalie Sassine,ou=Administrative,dc=bitwarden,dc=com", - email: "SassineR@f2e037d77334498ab9322f95dd7d350d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jinny Siddell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jinny Siddell,ou=Human Resources,dc=bitwarden,dc=com", - email: "SiddellJ@d465cf0e3efb407fbb73b24e2d2b8525.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kai Etemad,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kai Etemad,ou=Peons,dc=bitwarden,dc=com", - email: "EtemadK@a96211277807499cbc72ba383cf3f7fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odette Wagle,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Odette Wagle,ou=Payroll,dc=bitwarden,dc=com", - email: "WagleO@5dae1ed2c9f445258f886d50e89467ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Josephine Leon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Josephine Leon,ou=Product Testing,dc=bitwarden,dc=com", - email: "LeonJ@21c8fcb0ee18495787a55ca1696354cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gale Leder,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gale Leder,ou=Product Development,dc=bitwarden,dc=com", - email: "LederG@2e792851d84240488be196888c877106.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danny Mau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Danny Mau,ou=Payroll,dc=bitwarden,dc=com", - email: "MauD@a98a94682d81417d89ea8aad5fa82d5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alma McRann,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Alma McRann,ou=Product Testing,dc=bitwarden,dc=com", - email: "McRannA@49b304035fc44bb4a3e211286fc4d652.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martijn Groth,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Martijn Groth,ou=Human Resources,dc=bitwarden,dc=com", - email: "GrothM@8455fc0dd08e47d9b5acf4e37eea1485.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allyson Boroski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Allyson Boroski,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoroskiA@38d6239d446040c7892f72bde901e5dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janice Powney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Janice Powney,ou=Product Development,dc=bitwarden,dc=com", - email: "PowneyJ@6676cc13b20e4042b28843f12be18e7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marys Marleau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marys Marleau,ou=Peons,dc=bitwarden,dc=com", - email: "MarleauM@ad4942d8c3c341119939c679c4dae154.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colin Langelier,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Colin Langelier,ou=Management,dc=bitwarden,dc=com", - email: "LangeliC@910b366efc9d45ae94d1175a5271d29c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cornel Delzer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cornel Delzer,ou=Janitorial,dc=bitwarden,dc=com", - email: "DelzerC@1e938c02408a4595b2f669d03197c9de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liane Pappu,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Liane Pappu,ou=Peons,dc=bitwarden,dc=com", - email: "PappuL@00031bbeb0ff4d1a8275609c6cc825b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ollie Mir,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ollie Mir,ou=Janitorial,dc=bitwarden,dc=com", - email: "MirO@24af3dac7e7c4580ae1949e9dbc7b5bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffy Moyers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tiffy Moyers,ou=Management,dc=bitwarden,dc=com", - email: "MoyersT@086cd0723f0c4d19b12b0a6c52b08ed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chi Radcliffe,ou=Product Testing,dc=bitwarden,dc=com", - email: "RadclifC@7c55c5fda50b444180fe09120e80248b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catja Taralp,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Catja Taralp,ou=Product Testing,dc=bitwarden,dc=com", - email: "TaralpC@c8ee45aa130e469ab9d08427bf58a160.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jey Musick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jey Musick,ou=Product Testing,dc=bitwarden,dc=com", - email: "MusickJ@883a827472584ea8ab8edcc535c72169.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamil Doi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kamil Doi,ou=Management,dc=bitwarden,dc=com", - email: "DoiK@2666ff26960c49cbbd8ff121a2639624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marlin DeAlmeida,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeAlmeiM@a41f06888fb0407e87dd9f629bea1689.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lelia Gougeon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lelia Gougeon,ou=Administrative,dc=bitwarden,dc=com", - email: "GougeonL@1bc1409c08584b65b922db79a968ffbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mamie Godfrey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mamie Godfrey,ou=Management,dc=bitwarden,dc=com", - email: "GodfreyM@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ibby Dragan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ibby Dragan,ou=Peons,dc=bitwarden,dc=com", - email: "DraganI@8eaa02b53fec48d0842607d198bfec39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krier Rouer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Krier Rouer,ou=Administrative,dc=bitwarden,dc=com", - email: "RouerK@d4881d0da2824b94aad995234e30bb1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neila Donleycott,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Neila Donleycott,ou=Product Development,dc=bitwarden,dc=com", - email: "DonleycN@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vithit Toothman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vithit Toothman,ou=Payroll,dc=bitwarden,dc=com", - email: "ToothmaV@f2f9b94a61d74e48ae3ede318c7f996c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brear Wiklund,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brear Wiklund,ou=Payroll,dc=bitwarden,dc=com", - email: "WiklundB@b4093fe5132a4a878de6dc85a8b08a1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joletta Chaaban,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Joletta Chaaban,ou=Payroll,dc=bitwarden,dc=com", - email: "ChaabanJ@d1a4100b9b9b406ab43bd8e679e7075d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allan Kpodzo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Allan Kpodzo,ou=Administrative,dc=bitwarden,dc=com", - email: "KpodzoA@bccf93cb8d9f4a129349caa39e630322.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvin Fleishman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alvin Fleishman,ou=Administrative,dc=bitwarden,dc=com", - email: "FleishmA@893fcaa2270d412d875ced076aac8306.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amos Nadeau,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Amos Nadeau,ou=Administrative,dc=bitwarden,dc=com", - email: "NadeauA@4683d74c822246798b509a58b74b661d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fariborz Gubenco,ou=Administrative,dc=bitwarden,dc=com", - email: "GubencoF@b4304c61f77b49d7b5286781d16ef287.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Astra McPhail,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Astra McPhail,ou=Management,dc=bitwarden,dc=com", - email: "McPhailA@8a9b6d7044ae4a78a0f823a14af47f84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miguelita Lukie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Miguelita Lukie,ou=Management,dc=bitwarden,dc=com", - email: "LukieM@a98a0b7e8c1d4fe88c53128550e8ca96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joellen Rummans,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joellen Rummans,ou=Peons,dc=bitwarden,dc=com", - email: "RummansJ@a139b435b4cd48eeb3da7e5c63440d77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blythe Bessette,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Blythe Bessette,ou=Management,dc=bitwarden,dc=com", - email: "BessettB@cbb0ee6f701a44b3b861eccb184e6264.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nathan OPERATIONS,ou=Peons,dc=bitwarden,dc=com", - email: "OPERATIN@98502193cf164ea4ab82010779caeff8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felipe Dassie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Felipe Dassie,ou=Peons,dc=bitwarden,dc=com", - email: "DassieF@921728abb6324aefb035d6063e7e1e37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renu Dermardiros,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Renu Dermardiros,ou=Payroll,dc=bitwarden,dc=com", - email: "DermardR@e080eb242a96464dba0da1ce711ec7f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yen Sails,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yen Sails,ou=Janitorial,dc=bitwarden,dc=com", - email: "SailsY@b13bd03113d249d69d9301b44834eaa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claudie Willett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Claudie Willett,ou=Management,dc=bitwarden,dc=com", - email: "WillettC@7167bede64e647b8a348838a0a19c5fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antonia Kashef,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Antonia Kashef,ou=Product Testing,dc=bitwarden,dc=com", - email: "KashefA@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cleopatra Kikuchi,ou=Product Development,dc=bitwarden,dc=com", - email: "KikuchiC@e209292ce8494e20a17431a0c16ad1ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leta Weeks,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leta Weeks,ou=Product Development,dc=bitwarden,dc=com", - email: "WeeksL@ffdba696892b4a2faf2f9784c5557e4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saraann Ku,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Saraann Ku,ou=Human Resources,dc=bitwarden,dc=com", - email: "KuS@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malgosia Allaman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Malgosia Allaman,ou=Peons,dc=bitwarden,dc=com", - email: "AllamanM@a426d86bc70a41169741acf404c40b77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorri Brickey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dorri Brickey,ou=Product Development,dc=bitwarden,dc=com", - email: "BrickeyD@52375a276d8e4116b12e682b77fe0b05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilles Tullo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gilles Tullo,ou=Administrative,dc=bitwarden,dc=com", - email: "TulloG@8cf075f892994459a2bb7138294f3585.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacia Wever,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Stacia Wever,ou=Administrative,dc=bitwarden,dc=com", - email: "WeverS@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herman Georgiou,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Herman Georgiou,ou=Management,dc=bitwarden,dc=com", - email: "GeorgioH@a96211277807499cbc72ba383cf3f7fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=QuangTrung Prokop,ou=Human Resources,dc=bitwarden,dc=com", - email: "ProkopQ@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarey Shibata,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clarey Shibata,ou=Management,dc=bitwarden,dc=com", - email: "ShibataC@fcbf2ef1cdb340fcb4c052a580a37b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elyn Witzmann,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elyn Witzmann,ou=Peons,dc=bitwarden,dc=com", - email: "WitzmanE@37e3de35a8c340a7b99329132ff492e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corry Lasch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Corry Lasch,ou=Janitorial,dc=bitwarden,dc=com", - email: "LaschC@b0c3511415624300926253fbc8566845.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilsa Reeder,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ilsa Reeder,ou=Product Development,dc=bitwarden,dc=com", - email: "ReederI@d52c1f1046c6411eb0907201f8f5a6d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yasmin Kopala,ou=Human Resources,dc=bitwarden,dc=com", - email: "KopalaY@e47f64bef69f4dd48dddefa04608b96f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dpn Lanunix,ou=Human Resources,dc=bitwarden,dc=com", - email: "LanunixD@d8b377610c7d421f8eec4a02e5fb3c9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaib Fysh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shaib Fysh,ou=Payroll,dc=bitwarden,dc=com", - email: "FyshS@5d8cc64a505e4795adb2db74fb44a1cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorilyn Swearingen,ou=Human Resources,dc=bitwarden,dc=com", - email: "SwearinL@c50e1d17976a4acebd18f01bbfd46623.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Goldarina Delaat,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Goldarina Delaat,ou=Administrative,dc=bitwarden,dc=com", - email: "DelaatG@75858e9b0a57431ea93369d3d0fdb55e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Margo Kolodiejchuk,ou=Payroll,dc=bitwarden,dc=com", - email: "KolodieM@f99fab41afc647d5a865c56f14ad624d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Con Liskoff,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Con Liskoff,ou=Janitorial,dc=bitwarden,dc=com", - email: "LiskoffC@ac5ce5b90419470188e40d8780712bf4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dannie Belaire,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dannie Belaire,ou=Payroll,dc=bitwarden,dc=com", - email: "BelaireD@b885e453b9ed486ebec88cb2a7678928.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Syyed Nasato,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Syyed Nasato,ou=Payroll,dc=bitwarden,dc=com", - email: "NasatoS@35062355c8cb4574a234b41f34896a6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paloma Meijer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Paloma Meijer,ou=Janitorial,dc=bitwarden,dc=com", - email: "MeijerP@35a90dbd42ea4858949658f923e13119.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marleen Cucuzzella,ou=Product Testing,dc=bitwarden,dc=com", - email: "CucuzzeM@4bf79c0ee4d34c7692b9804d098856ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anestassia Pilch,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anestassia Pilch,ou=Product Development,dc=bitwarden,dc=com", - email: "PilchA@64cec2e36e064bf29124f55fbca16d06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caroline Weakley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Caroline Weakley,ou=Management,dc=bitwarden,dc=com", - email: "WeakleyC@c38fb3d41e6d4c59bb5e63a066239f4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brad Widener,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brad Widener,ou=Peons,dc=bitwarden,dc=com", - email: "WidenerB@3b22641d076842469513221f673236de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nga Holvey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nga Holvey,ou=Payroll,dc=bitwarden,dc=com", - email: "HolveyN@a902f1ad65b842baa48923792860ef8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Breanne Hatten,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Breanne Hatten,ou=Peons,dc=bitwarden,dc=com", - email: "HattenB@7e87a6fdda7846518a51a730a93f1c6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Babita Yuhn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Babita Yuhn,ou=Janitorial,dc=bitwarden,dc=com", - email: "YuhnB@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bhupendra Caplinger,ou=Janitorial,dc=bitwarden,dc=com", - email: "CaplingB@866dcdf7141f4b00b327974f7403df8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanjoy Burbage,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sanjoy Burbage,ou=Management,dc=bitwarden,dc=com", - email: "BurbageS@d9cdf2972f5548b0814498e608f03bf6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hettie Grassmann,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hettie Grassmann,ou=Payroll,dc=bitwarden,dc=com", - email: "GrassmaH@49634f2a5e564b13843ce74e45cd5b8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacques Lobello,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jacques Lobello,ou=Administrative,dc=bitwarden,dc=com", - email: "LobelloJ@23cf32b7148140cfb4b02ddf8d62cfa5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susi Vezina,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Susi Vezina,ou=Product Testing,dc=bitwarden,dc=com", - email: "VezinaS@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Paulo Watanabe,ou=Janitorial,dc=bitwarden,dc=com", - email: "WatanabP@91415ae4cae4467d8a1e1d9b9c594a7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hynek Bergland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hynek Bergland,ou=Janitorial,dc=bitwarden,dc=com", - email: "BerglanH@648152cfae1e47ffa5e239f481673983.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ilyse VanSchyndel,ou=Human Resources,dc=bitwarden,dc=com", - email: "VanSchyI@05612bbc895f46abb970a45c00f480d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brenton Zou,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Brenton Zou,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZouB@264d4763d0c84adba308d4c4cab556c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Florina HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", - email: "HowePatF@a0859d351c9f4c38bafe2c10a4129e60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mohamed Popper,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mohamed Popper,ou=Peons,dc=bitwarden,dc=com", - email: "PopperM@7f4b5ca02e594ee8a8204a5051500312.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dnadoc Tejada,ou=Payroll,dc=bitwarden,dc=com", - email: "TejadaD@039e3a194ecb4b229b6171f883dbe2ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzan Brisebois,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Suzan Brisebois,ou=Administrative,dc=bitwarden,dc=com", - email: "BriseboS@befc232b3f4240ada061cd42724f306e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Violette Capostagno,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Violette Capostagno,ou=Product Development,dc=bitwarden,dc=com", - email: "CapostaV@33b35540a4bc4f6baa81886f1273a7c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jolyn Shoemaker,ou=Payroll,dc=bitwarden,dc=com", - email: "ShoemakJ@1566e50dd621416d8ec481ceb9271778.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Darsey BrownGillard,ou=Administrative,dc=bitwarden,dc=com", - email: "BrownGiD@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liem Dalloste,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Liem Dalloste,ou=Management,dc=bitwarden,dc=com", - email: "DallostL@a17de6ea9dda4d659f1501b4b4ed4d2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernita Hui,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bernita Hui,ou=Product Testing,dc=bitwarden,dc=com", - email: "HuiB@155d681ec6564fc8a96a2716f8046f1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mab Bhatia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mab Bhatia,ou=Product Development,dc=bitwarden,dc=com", - email: "BhatiaM@f5afe6422dca491da65fa6a254990cc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bamby Ressner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bamby Ressner,ou=Human Resources,dc=bitwarden,dc=com", - email: "RessnerB@c32875a7d5c84e0cbf7df721e038b80b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Moniek Kamminga,ou=Human Resources,dc=bitwarden,dc=com", - email: "KammingM@a922ba05488e401e9633fbd1813d714f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nadir Harold,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nadir Harold,ou=Administrative,dc=bitwarden,dc=com", - email: "HaroldN@0452103199be4e45a9d502fc8103d707.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norikazu Loughery,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Norikazu Loughery,ou=Administrative,dc=bitwarden,dc=com", - email: "LougherN@a8523f0ff874441ba48222b981c29c83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerda Cuthill,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gerda Cuthill,ou=Payroll,dc=bitwarden,dc=com", - email: "CuthillG@ad0ef2c2568345158919240fe983f26f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Subhash Ranoa,ou=Human Resources,dc=bitwarden,dc=com", - email: "RanoaS@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blakeley Moynihan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Blakeley Moynihan,ou=Management,dc=bitwarden,dc=com", - email: "MoynihaB@b6c212225ddb4f9ba95fbbaec945f94a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronni DMSDB,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ronni DMSDB,ou=Administrative,dc=bitwarden,dc=com", - email: "DMSDBR@353b753321aa4a97a115856474e231b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kemal Theocharakis,ou=Administrative,dc=bitwarden,dc=com", - email: "TheochaK@f724343d8470496bb0df55542d73aa26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desdemona Howes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Desdemona Howes,ou=Product Development,dc=bitwarden,dc=com", - email: "HowesD@d402d45df6ee44758d534e95cb5617f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micaela Grelck,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Micaela Grelck,ou=Administrative,dc=bitwarden,dc=com", - email: "GrelckM@24d7cb43aaeb44b593ff6b98218942cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Natala Yarbrough,ou=Product Testing,dc=bitwarden,dc=com", - email: "YarbrouN@3ff7146541124494b887915621fe41a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moria Brandstadt,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Moria Brandstadt,ou=Peons,dc=bitwarden,dc=com", - email: "BrandstM@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raf VanAlphen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Raf VanAlphen,ou=Management,dc=bitwarden,dc=com", - email: "VanAlphR@b5110eee63164b03a1156fbe465ff053.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jianli Seniuk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jianli Seniuk,ou=Management,dc=bitwarden,dc=com", - email: "SeniukJ@9d1f7bcfce524784b93c42075dd94a6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephani Wheatley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Stephani Wheatley,ou=Administrative,dc=bitwarden,dc=com", - email: "WheatleS@f759e44a1c504c63b3eae17c75b66fa2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Misty Jamison,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Misty Jamison,ou=Product Development,dc=bitwarden,dc=com", - email: "JamisonM@e084ec394e994677a50d409a6357c42a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liduine Brindley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Liduine Brindley,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrindleL@b3c93053c0224253988d5c3b976abcae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inam Cripps,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Inam Cripps,ou=Payroll,dc=bitwarden,dc=com", - email: "CrippsI@98610eb59a8644899b5f6a7dba9c32ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Megumi Sattler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Megumi Sattler,ou=Management,dc=bitwarden,dc=com", - email: "SattlerM@17fbe5ad18ef4466b77b146a182aae32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlies Zalokar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marlies Zalokar,ou=Administrative,dc=bitwarden,dc=com", - email: "ZalokarM@540d8b0a17d449ce8bcc397ded86d3bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiphanie Banik,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tiphanie Banik,ou=Management,dc=bitwarden,dc=com", - email: "BanikT@4ac57cc4c8df40e5be8ca01811d8b65f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosene Couse,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rosene Couse,ou=Payroll,dc=bitwarden,dc=com", - email: "CouseR@466f24c0ae9947d2a9b6e4673a116085.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adoree Sevilla,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Adoree Sevilla,ou=Product Development,dc=bitwarden,dc=com", - email: "SevillaA@b8436b0997234174a1d3652199251b81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caye Clinton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Caye Clinton,ou=Management,dc=bitwarden,dc=com", - email: "ClintonC@ab847cb978244923bfe5ad73b2ff99dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ernie Waybright,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ernie Waybright,ou=Product Development,dc=bitwarden,dc=com", - email: "WaybrigE@d5b185918176486786ef73f8f666edb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doc Hamlett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Doc Hamlett,ou=Product Testing,dc=bitwarden,dc=com", - email: "HamlettD@941810c9cdbf4e55b754495e8f57a20a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abdul Peschke,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Abdul Peschke,ou=Product Testing,dc=bitwarden,dc=com", - email: "PeschkeA@fa78ddbf4a824e749170662a86f94ae1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cordi Systest,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cordi Systest,ou=Payroll,dc=bitwarden,dc=com", - email: "SystestC@ee3b17b3006441ea89cd65327cca286b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jania Mong,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jania Mong,ou=Human Resources,dc=bitwarden,dc=com", - email: "MongJ@9f0f27ec9d584e2ca9d6420c7dbe54a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristi Plato,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kristi Plato,ou=Product Testing,dc=bitwarden,dc=com", - email: "PlatoK@defaeef7e5514df8a6f49e7ca33a461b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Simeon Schober,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Simeon Schober,ou=Administrative,dc=bitwarden,dc=com", - email: "SchoberS@edbf1767c38f4bddb743829cf9c30bc0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leyton Artuso,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leyton Artuso,ou=Payroll,dc=bitwarden,dc=com", - email: "ArtusoL@a16de69a6d644f62a90c207d5ff7152f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Di Corritore,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Di Corritore,ou=Human Resources,dc=bitwarden,dc=com", - email: "CorritoD@f167cff0138c406287e1a7234664f7ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norbert Meubus,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Norbert Meubus,ou=Human Resources,dc=bitwarden,dc=com", - email: "MeubusN@8967a677365042bf9b4c49a667cc17a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allsun Briard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Allsun Briard,ou=Human Resources,dc=bitwarden,dc=com", - email: "BriardA@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rec Desjardins,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rec Desjardins,ou=Administrative,dc=bitwarden,dc=com", - email: "DesjardR@bf2777e1bdc741d1becaefb23144f2ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daveen Portelance,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Daveen Portelance,ou=Administrative,dc=bitwarden,dc=com", - email: "PortelaD@51972c3fcd684339942be0fdc3e53b2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Laureen Ikotin,ou=Janitorial,dc=bitwarden,dc=com", - email: "IkotinL@4467185dad394a2ab964d923a668f7a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christel Lebon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Christel Lebon,ou=Product Development,dc=bitwarden,dc=com", - email: "LebonC@8959763ade854592b5aa640be7f6b9e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aura Kloth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aura Kloth,ou=Janitorial,dc=bitwarden,dc=com", - email: "KlothA@0dddb86650e94c559800b280597f0c4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laser Totino,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Laser Totino,ou=Product Development,dc=bitwarden,dc=com", - email: "TotinoL@9190783dca9540caa517cb6cbdd19160.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mike Engman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mike Engman,ou=Human Resources,dc=bitwarden,dc=com", - email: "EngmanM@096bd16e7b9047ef820ae279d36addd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marijo Tranter,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marijo Tranter,ou=Peons,dc=bitwarden,dc=com", - email: "TranterM@06df9cb737014f4380a57a8c4a3ae0ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mainoo Fran,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mainoo Fran,ou=Peons,dc=bitwarden,dc=com", - email: "FranM@9fee234f1d9045788518ccfa0390a5ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janos Coulman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Janos Coulman,ou=Administrative,dc=bitwarden,dc=com", - email: "CoulmanJ@7c4650791d5f415f847cb32968294e66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lacey Benfield,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lacey Benfield,ou=Product Testing,dc=bitwarden,dc=com", - email: "BenfielL@4b7280a9bb884d1e9623c6b7302b3c2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harrie Devenyi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Harrie Devenyi,ou=Management,dc=bitwarden,dc=com", - email: "DevenyiH@da5a908240674035b4f089697eec14f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lishe Tatum,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lishe Tatum,ou=Product Development,dc=bitwarden,dc=com", - email: "TatumL@2172785b8d9f4adca3b3c11556362a8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gena Skwarok,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gena Skwarok,ou=Janitorial,dc=bitwarden,dc=com", - email: "SkwarokG@e442907aab1c4de2a3d2eb6b7fab8ddf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ileane Thomaier,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThomaieI@f0c445142fda405aa9dfac5dc2ebfc44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PierreAndre Crucefix,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=PierreAndre Crucefix,ou=Management,dc=bitwarden,dc=com", - email: "CrucefiP@6529706823d04eeaa37acaabefd44ca6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ree Smits,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ree Smits,ou=Product Development,dc=bitwarden,dc=com", - email: "SmitsR@052e52ce35f04f70be77c9d468493034.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Panch Talbot,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Panch Talbot,ou=Product Development,dc=bitwarden,dc=com", - email: "TalbotP@53855167a537436d8e1bbb93f42697aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janean Wittich,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Janean Wittich,ou=Payroll,dc=bitwarden,dc=com", - email: "WittichJ@f1af10e65a3c4deea04ab7a7f844eadd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Notley Loyola,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Notley Loyola,ou=Product Testing,dc=bitwarden,dc=com", - email: "LoyolaN@cab7f96e07f64f6bbb85fb9b89c17c94.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shunhui Montuno,ou=Product Testing,dc=bitwarden,dc=com", - email: "MontunoS@bd9027744e31459db23a7217225fbe23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dhansukh Jones,ou=Human Resources,dc=bitwarden,dc=com", - email: "JonesD@4bdb34fb0864411d8dbdc932e9545ec7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caitlin Grover,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Caitlin Grover,ou=Product Testing,dc=bitwarden,dc=com", - email: "GroverC@8a2b562f0ebe48deb34ccc278a542072.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Icylyn MacLeod,ou=Human Resources,dc=bitwarden,dc=com", - email: "MacLeodI@a768ee42cf36461cb3b1a0b6949b0e29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cissy Paris,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cissy Paris,ou=Janitorial,dc=bitwarden,dc=com", - email: "ParisC@f648ab5b740d44ca8b0dc821ba7c94a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kedah Hedman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kedah Hedman,ou=Janitorial,dc=bitwarden,dc=com", - email: "HedmanK@ed2fd2ca43bb4b14bff25d5cd87d9abc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susy Simard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Susy Simard,ou=Administrative,dc=bitwarden,dc=com", - email: "SimardS@5f40d634eafb4f78acd0b5b4ff05298b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Enriqueta Maynard,ou=Administrative,dc=bitwarden,dc=com", - email: "MaynardE@9b70e886a18d422fa3404374b5a9613c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nahum Mofina,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nahum Mofina,ou=Payroll,dc=bitwarden,dc=com", - email: "MofinaN@0aee22428274445fb9c2a16b33d788f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patti Simcoe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Patti Simcoe,ou=Janitorial,dc=bitwarden,dc=com", - email: "SimcoeP@bcd6417c39254a37b7a0a0d395d66c96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarisse McArthur,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Clarisse McArthur,ou=Administrative,dc=bitwarden,dc=com", - email: "McArthuC@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=ZehirCharlie Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", - email: "KastelbZ@264cb0b5ded347678dd5fba66a4be57f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dwight Naujoks,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dwight Naujoks,ou=Peons,dc=bitwarden,dc=com", - email: "NaujoksD@af7402077fba4129bbcd03f9bf068e4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melodee Buzzell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Melodee Buzzell,ou=Payroll,dc=bitwarden,dc=com", - email: "BuzzellM@eaa1c30d2e624c8ba36eae1d34cb0c00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Schouwen Chahal,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Schouwen Chahal,ou=Product Development,dc=bitwarden,dc=com", - email: "ChahalS@3546d29dd7834be9b84722d152b319e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanya Reuben,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kanya Reuben,ou=Administrative,dc=bitwarden,dc=com", - email: "ReubenK@e5bf2a74f7d948bb97855f44d83972fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marji Corvo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marji Corvo,ou=Payroll,dc=bitwarden,dc=com", - email: "CorvoM@eb78b63b75ba4f27a8837a49801a5d87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annarbor Zitko,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Annarbor Zitko,ou=Management,dc=bitwarden,dc=com", - email: "ZitkoA@c21c5e2df59f42bd80274a7d5eb23246.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genovera Thibodeaux,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Genovera Thibodeaux,ou=Management,dc=bitwarden,dc=com", - email: "ThibodeG@6fcf3faf71c9481bb038b9b9074ab98d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aleen Gure,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aleen Gure,ou=Peons,dc=bitwarden,dc=com", - email: "GureA@918d2d4077734b5f89b3311e0d63e21b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trever Jowett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Trever Jowett,ou=Payroll,dc=bitwarden,dc=com", - email: "JowettT@439323a8d95149fea66efa1b90531fea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Concettina Cegelski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Concettina Cegelski,ou=Peons,dc=bitwarden,dc=com", - email: "CegelskC@4855de695c764b0c94d33f9516982d93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eleen Lew,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eleen Lew,ou=Management,dc=bitwarden,dc=com", - email: "LewE@f67253dadd384838b6a62668b81ee96d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minna Reddington,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Minna Reddington,ou=Product Development,dc=bitwarden,dc=com", - email: "ReddingM@f962e28831974b93a906a03bfb585f1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stateson Benning,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Stateson Benning,ou=Administrative,dc=bitwarden,dc=com", - email: "BenningS@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emil Pavlic,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emil Pavlic,ou=Product Development,dc=bitwarden,dc=com", - email: "PavlicE@d5f1e05d95aa48aa94789d8e594894db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kassia Newnam,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kassia Newnam,ou=Payroll,dc=bitwarden,dc=com", - email: "NewnamK@775db391b36843f3b6967be5112cd7c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarke Angeli,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Clarke Angeli,ou=Administrative,dc=bitwarden,dc=com", - email: "AngeliC@d5e1ce2fb74a43bfad3a9a3884b1f907.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flor Rabon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Flor Rabon,ou=Administrative,dc=bitwarden,dc=com", - email: "RabonF@a8d52d2b633f41a2be5b6bf6015e6a0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Damian Berning,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Damian Berning,ou=Product Development,dc=bitwarden,dc=com", - email: "BerningD@02ff8597c50443248a49f6bef6b843ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristal Lum,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cristal Lum,ou=Product Testing,dc=bitwarden,dc=com", - email: "LumC@8883700de05445f081429f80d76247cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Palme Lystuik,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Palme Lystuik,ou=Human Resources,dc=bitwarden,dc=com", - email: "LystuikP@5ee91f5143cf4d9ead291d13c9d53edc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shina Tremaine,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shina Tremaine,ou=Product Testing,dc=bitwarden,dc=com", - email: "TremainS@8dfc96b3d0e547578cb502ea67822dc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Muire Cencier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Muire Cencier,ou=Human Resources,dc=bitwarden,dc=com", - email: "CencierM@8b494156718243beaccc49c77764ab7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brinn Weinbender,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Brinn Weinbender,ou=Product Development,dc=bitwarden,dc=com", - email: "WeinbenB@7770d32208f64a63bf44fae15e8c6935.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jasmin Bopp,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoppJ@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Phyllis Medlock,ou=Janitorial,dc=bitwarden,dc=com", - email: "MedlockP@17cb5e3bf33c46c8bb068c8715e4918e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candee Gozen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Candee Gozen,ou=Product Testing,dc=bitwarden,dc=com", - email: "GozenC@43c4575cb998431b9ef40f1885b13a40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julienne Spencer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Julienne Spencer,ou=Human Resources,dc=bitwarden,dc=com", - email: "SpencerJ@e116936732ce45789365cbd54acef482.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benny Kimm,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Benny Kimm,ou=Payroll,dc=bitwarden,dc=com", - email: "KimmB@a90852e05a704b189e86f5be23a6fead.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bella DiGiambattista,ou=Payroll,dc=bitwarden,dc=com", - email: "DiGiambB@1719e95244a44b8596cb64a3732d8148.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kyle Pape,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kyle Pape,ou=Human Resources,dc=bitwarden,dc=com", - email: "PapeK@cfb3c19130a34bd8a1175d4c3cbe2bde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hetti Maciejewski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hetti Maciejewski,ou=Management,dc=bitwarden,dc=com", - email: "MaciejeH@2f2c7c75a80e4912bb53354bb0764e32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Godiva Arunachalam,ou=Product Testing,dc=bitwarden,dc=com", - email: "ArunachG@4f1058076962434d992f12cefe18bd59.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peder Bevington,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Peder Bevington,ou=Product Testing,dc=bitwarden,dc=com", - email: "BevingtP@349cbf4e75d847c1a3a3932212036d74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Royce Kerr,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Royce Kerr,ou=Payroll,dc=bitwarden,dc=com", - email: "KerrR@6dfbae5841184eee86f16ac4a1176697.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelon Armitage,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Madelon Armitage,ou=Janitorial,dc=bitwarden,dc=com", - email: "ArmitagM@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sohayla Resnick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sohayla Resnick,ou=Payroll,dc=bitwarden,dc=com", - email: "ResnickS@8396829dbd6f4494811aec04c011380c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kaela TraceyMcCabe,ou=Janitorial,dc=bitwarden,dc=com", - email: "TraceyMK@a2257412df964db8b0b017a63b40027d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teri Fabry,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Teri Fabry,ou=Administrative,dc=bitwarden,dc=com", - email: "FabryT@cec3211a38a84845bf22d5434e7f7858.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deina Martincello,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Deina Martincello,ou=Janitorial,dc=bitwarden,dc=com", - email: "MartincD@1cec494b2c6b4b8a8fb44bcdcbcfca34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aleen Ayre,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Aleen Ayre,ou=Human Resources,dc=bitwarden,dc=com", - email: "AyreA@efa9f7679ea94344a42e6df58b28f7ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roseline Risher,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Roseline Risher,ou=Product Testing,dc=bitwarden,dc=com", - email: "RisherR@1b5d8352bac64038b1e8fc921d81a384.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reuben Lychak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Reuben Lychak,ou=Janitorial,dc=bitwarden,dc=com", - email: "LychakR@98b778e04cdc413792a21b3367fbde45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelsy Rozier,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kelsy Rozier,ou=Administrative,dc=bitwarden,dc=com", - email: "RozierK@d26e69c4dd7641e8943c5c22db2243f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herronald Walta,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Herronald Walta,ou=Management,dc=bitwarden,dc=com", - email: "WaltaH@8df14385ae864b439973adc9259c1607.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oralee Shiflett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Oralee Shiflett,ou=Payroll,dc=bitwarden,dc=com", - email: "ShifletO@9cb309c14f394c15bfd37b4264f18ad3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurice Coe,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maurice Coe,ou=Administrative,dc=bitwarden,dc=com", - email: "CoeM@df4398eeee504d4688e79f5fade4e06a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shaughan Lesmerises,ou=Human Resources,dc=bitwarden,dc=com", - email: "LesmeriS@71334519f85d4ff38bd6a6b8f4192c09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greg Candelario,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Greg Candelario,ou=Management,dc=bitwarden,dc=com", - email: "CandelaG@0ad12ce5726b4f478ea6768be55c341f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Janeta Gerynowicz,ou=Product Testing,dc=bitwarden,dc=com", - email: "GerynowJ@f913ff5eacd8463cb806d02d62200c74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genny Horemans,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Genny Horemans,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoremanG@5dc39fbc350c43fe84c932142400265c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willeke Gagnon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Willeke Gagnon,ou=Management,dc=bitwarden,dc=com", - email: "GagnonW@a40bbab821574ad58a604582fafa7e52.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chelsy Elhamahmy,ou=Product Testing,dc=bitwarden,dc=com", - email: "ElhamahC@19261efb99bb4b2ba698af6633bee481.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nijen Testa,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nijen Testa,ou=Management,dc=bitwarden,dc=com", - email: "TestaN@b704bf76672f4edf96dc7a81797bfb18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binni Vasile,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Binni Vasile,ou=Administrative,dc=bitwarden,dc=com", - email: "VasileB@9367f9f8454348d3886816e5fdc4ee80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thor Mamoulides,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Thor Mamoulides,ou=Peons,dc=bitwarden,dc=com", - email: "MamouliT@514c4dabf5514f759283b3fa82dba706.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merridie Charlinski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Merridie Charlinski,ou=Product Development,dc=bitwarden,dc=com", - email: "CharlinM@503493165e34480591885ddd3a12206f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sundaram Trocchi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sundaram Trocchi,ou=Management,dc=bitwarden,dc=com", - email: "TrocchiS@9c1a16ce358c4da3bb256d63a9955243.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Naoma Ajersch,ou=Human Resources,dc=bitwarden,dc=com", - email: "AjerschN@3264b8974bc14e47aff69928751d5552.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Divine Sebeh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Divine Sebeh,ou=Product Development,dc=bitwarden,dc=com", - email: "SebehD@8396829dbd6f4494811aec04c011380c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiff Mader,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tiff Mader,ou=Peons,dc=bitwarden,dc=com", - email: "MaderT@5252b436274c46eeaa1a93446d86930f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karly Adornato,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karly Adornato,ou=Management,dc=bitwarden,dc=com", - email: "AdornatK@a821e56b318247488fefa798a1560d4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petrina Bovey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Petrina Bovey,ou=Product Development,dc=bitwarden,dc=com", - email: "BoveyP@cb080e2974a14fac8bb31166d02685f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andie Subasinghe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Andie Subasinghe,ou=Product Development,dc=bitwarden,dc=com", - email: "SubasinA@a2de644016074e339d2f86b6a140c75b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kimiko Florescu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kimiko Florescu,ou=Management,dc=bitwarden,dc=com", - email: "FlorescK@68682c9b2559463bb9da0d98b541595f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnesse Kiger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Agnesse Kiger,ou=Management,dc=bitwarden,dc=com", - email: "KigerA@d6b3231dbb434132911ed9c9e37e3901.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trude Hanham,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Trude Hanham,ou=Janitorial,dc=bitwarden,dc=com", - email: "HanhamT@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Verile Szaplonczay,ou=Product Development,dc=bitwarden,dc=com", - email: "SzaplonV@bcfbfd5ee6b14185b04773704662d3e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greta Timler,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Greta Timler,ou=Peons,dc=bitwarden,dc=com", - email: "TimlerG@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobbye Ludviksen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bobbye Ludviksen,ou=Management,dc=bitwarden,dc=com", - email: "LudviksB@5ffed17cc69d4719b003fa0cfe2777f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Raphaela Koleyni,ou=Human Resources,dc=bitwarden,dc=com", - email: "KoleyniR@2c04f0ba9f9e42d4ba30e45d9ac9ae06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adiana Tohama,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Adiana Tohama,ou=Administrative,dc=bitwarden,dc=com", - email: "TohamaA@3fe7f6d7adf6406f923792a176bd4ea0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Evangelo Rygwalski,ou=Administrative,dc=bitwarden,dc=com", - email: "RygwalsE@e0325d1b480a46fd813ea04ca5c966cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hildagarde Neumann,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hildagarde Neumann,ou=Peons,dc=bitwarden,dc=com", - email: "NeumannH@736366bf947d4889a5087519dbc9eaff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibylla Younger,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sibylla Younger,ou=Janitorial,dc=bitwarden,dc=com", - email: "YoungerS@f1ba9fe3a35e44c3978d785a0d395a14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jodie Eckstein,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jodie Eckstein,ou=Administrative,dc=bitwarden,dc=com", - email: "EcksteiJ@d07128744ede47b1a1b8648da086036a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rea Barolet,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rea Barolet,ou=Management,dc=bitwarden,dc=com", - email: "BaroletR@4824b8d6b19b477496c8e66703f2331e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rustu Paige,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rustu Paige,ou=Janitorial,dc=bitwarden,dc=com", - email: "PaigeR@777873609ce9463eb7000e930f9c88d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davinder Caves,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Davinder Caves,ou=Product Development,dc=bitwarden,dc=com", - email: "CavesD@c356619b4769401bb929afda889d39f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celyne Settels,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Celyne Settels,ou=Administrative,dc=bitwarden,dc=com", - email: "SettelsC@ab04014fcfcf443881ea178cd34f1aab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marina Higham,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marina Higham,ou=Payroll,dc=bitwarden,dc=com", - email: "HighamM@fe740c0ae3204fcc953b18216e0c9dcc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Augusto Gawargy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Augusto Gawargy,ou=Peons,dc=bitwarden,dc=com", - email: "GawargyA@fe184af833734409842cae4ea614a7b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hudai Popp,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hudai Popp,ou=Administrative,dc=bitwarden,dc=com", - email: "PoppH@066366af1bc843378bcfdd813a95df98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Babak Tussey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Babak Tussey,ou=Product Development,dc=bitwarden,dc=com", - email: "TusseyB@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wenonah Bellehumeur,ou=Human Resources,dc=bitwarden,dc=com", - email: "BellehuW@71bf922abd2749a3982856c35ce9c912.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lionel Childers,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lionel Childers,ou=Administrative,dc=bitwarden,dc=com", - email: "ChilderL@328af8448e3c4d53991764541abc54ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robena McDevitt,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Robena McDevitt,ou=Human Resources,dc=bitwarden,dc=com", - email: "McDevitR@9967fe39a419474db05f70cea6eee0f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gilbertina Wellard,ou=Human Resources,dc=bitwarden,dc=com", - email: "WellardG@b613aec4ece744c9bcff2f9c3efe0aed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dupuy Barszczewski,ou=Product Testing,dc=bitwarden,dc=com", - email: "BarszczD@dc4e00565ed740ca8c4a935c1cd2fe2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gael Elias,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gael Elias,ou=Peons,dc=bitwarden,dc=com", - email: "EliasG@9dc5f26c8d604d308d7d70d0272f1d88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Floria Harless,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Floria Harless,ou=Management,dc=bitwarden,dc=com", - email: "HarlessF@0d3b7d7cbc834c0cbc976d09482d6768.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mehmud Rickel,ou=Human Resources,dc=bitwarden,dc=com", - email: "RickelM@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kandy Chanco,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kandy Chanco,ou=Peons,dc=bitwarden,dc=com", - email: "ChancoK@dbf1f20f7fd241cc84adfba60d194c8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanya Pelissier,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vanya Pelissier,ou=Management,dc=bitwarden,dc=com", - email: "PelissiV@d4881d0da2824b94aad995234e30bb1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noubar Shute,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Noubar Shute,ou=Payroll,dc=bitwarden,dc=com", - email: "ShuteN@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cilka Galluzzi,ou=Janitorial,dc=bitwarden,dc=com", - email: "GalluzzC@193a813b90bf4054a776a2e46081339c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eliza Roney,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eliza Roney,ou=Product Testing,dc=bitwarden,dc=com", - email: "RoneyE@daa1e24c0eb048798f1d4ee756ce865c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Els Sridhar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Els Sridhar,ou=Product Development,dc=bitwarden,dc=com", - email: "SridharE@7cefaa55a36f4be4acff376f7ddd1a67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Masood Kemppainen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Masood Kemppainen,ou=Payroll,dc=bitwarden,dc=com", - email: "KemppaiM@8b0911565ebc48f8bdf8c3ff36728f00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karisa Botting,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Karisa Botting,ou=Payroll,dc=bitwarden,dc=com", - email: "BottingK@fecc39f9d20d45d991f7afeb75e37b9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francisco Dallaire,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Francisco Dallaire,ou=Payroll,dc=bitwarden,dc=com", - email: "DallairF@7bdb27652ff44b53af3458ba811e7f70.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jordana Hersee,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jordana Hersee,ou=Peons,dc=bitwarden,dc=com", - email: "HerseeJ@6eda6577067f465b84cdc51153ccba3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gillan Hufana,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gillan Hufana,ou=Human Resources,dc=bitwarden,dc=com", - email: "HufanaG@7d2914d75d254468950490f34fff79f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shep Schroeder,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shep Schroeder,ou=Administrative,dc=bitwarden,dc=com", - email: "SchroedS@5414e6754d4b4f6bbcd511a3a43e9ff6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Masahiro Haughey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Masahiro Haughey,ou=Administrative,dc=bitwarden,dc=com", - email: "HaugheyM@43ed30f036954e65898067e558a32b4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Georgiana Boyajian,ou=Payroll,dc=bitwarden,dc=com", - email: "BoyajiaG@ecd862454c8b49a4ab4dccef5a805c86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariele Puukila,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mariele Puukila,ou=Management,dc=bitwarden,dc=com", - email: "PuukilaM@9168c74ef41149569e1e454986f240f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nathalie Hopkinson,ou=Product Testing,dc=bitwarden,dc=com", - email: "HopkinsN@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=An Assenza,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=An Assenza,ou=Administrative,dc=bitwarden,dc=com", - email: "AssenzaA@6012fc3f273d40f18822bdc7b0a5938e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nerta Huitt,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nerta Huitt,ou=Product Development,dc=bitwarden,dc=com", - email: "HuittN@9a5eb95a8d064ae1ab7c5bae15e123a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dela Gilliam,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dela Gilliam,ou=Product Development,dc=bitwarden,dc=com", - email: "GilliamD@2ffe207cbf4244c5be34772f95d3e203.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edric Dolginoff,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Edric Dolginoff,ou=Product Development,dc=bitwarden,dc=com", - email: "DolginoE@b5bcc4ce776e4805ab4216703177730e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Livvy Flores,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Livvy Flores,ou=Administrative,dc=bitwarden,dc=com", - email: "FloresL@7c2fe37e93114583be5da4a11c32b590.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flossi Fumerton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Flossi Fumerton,ou=Management,dc=bitwarden,dc=com", - email: "FumertoF@1c6815f019224d89bea339008a2dffbe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fanni Noah,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fanni Noah,ou=Administrative,dc=bitwarden,dc=com", - email: "NoahF@a08a36a3e7a643d9a21fd4a80adf64e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tobe Blostein,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tobe Blostein,ou=Payroll,dc=bitwarden,dc=com", - email: "BlosteiT@452f7760183e4b0298d966a8ad5e45e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madlen JodoinStJean,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Madlen JodoinStJean,ou=Management,dc=bitwarden,dc=com", - email: "JodoinSM@e97e68f305e3440c9129677cf226a2f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felipe McBroom,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Felipe McBroom,ou=Janitorial,dc=bitwarden,dc=com", - email: "McBroomF@48f243cdc32d45d6aad070d357ee442e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stella Hoare,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Stella Hoare,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoareS@cbf0651b176b40b3a9e0984d1cf7efbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=ShenZhi Csop,ou=Janitorial,dc=bitwarden,dc=com", - email: "CsopS@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anthony Pringle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anthony Pringle,ou=Janitorial,dc=bitwarden,dc=com", - email: "PringleA@547a7e1e0d95484c8a7654407d3e43c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alexina Buschelman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alexina Buschelman,ou=Product Development,dc=bitwarden,dc=com", - email: "BuschelA@b1fe32739d494b049e229d2be6982c9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Floris Decelles,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Floris Decelles,ou=Peons,dc=bitwarden,dc=com", - email: "DecelleF@0b9e602c3a92485da529010ed919b9e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bella Jayamanne,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bella Jayamanne,ou=Product Development,dc=bitwarden,dc=com", - email: "JayamanB@6ffc05f614d948aa9f4574ca027b0151.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erminie Normandin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Erminie Normandin,ou=Management,dc=bitwarden,dc=com", - email: "NormandE@9f9fe6d238ce4f8cb29cecfb73bf648a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niz Colucci,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Niz Colucci,ou=Management,dc=bitwarden,dc=com", - email: "ColucciN@415c030ee16d4de4a7392387c8cef87f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Muni Strock,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Muni Strock,ou=Janitorial,dc=bitwarden,dc=com", - email: "StrockM@2b8b15b2c5c943829658bf927a1b606d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aybars Lavers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Aybars Lavers,ou=Payroll,dc=bitwarden,dc=com", - email: "LaversA@3a6874a38197445fbf21db557fe28dc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bakoury Desrosiers,ou=Payroll,dc=bitwarden,dc=com", - email: "DesrosiB@3f22733d317d4f91854fb0b865164d32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yettie Borodajluk,ou=Payroll,dc=bitwarden,dc=com", - email: "BorodajY@16d1d9688ffa4f59a9529d3b32ff16fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Corrina Kodnar,ou=Janitorial,dc=bitwarden,dc=com", - email: "KodnarC@6af59491c5a74fddb4c99c2f4eaecac5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Careers DeSalis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Careers DeSalis,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeSalisC@d8f95844461442f7932326cd41b836f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Harmonie Calcote,ou=Product Testing,dc=bitwarden,dc=com", - email: "CalcoteH@530df39e624341ce900342a91a704d99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anna Meckley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anna Meckley,ou=Payroll,dc=bitwarden,dc=com", - email: "MeckleyA@a046a9cbbddd48b590c68e29ebbbad81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilith Stejskal,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lilith Stejskal,ou=Payroll,dc=bitwarden,dc=com", - email: "StejskaL@a23a63f768764ebb9f25e196f981df61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prudy Australia,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Prudy Australia,ou=Payroll,dc=bitwarden,dc=com", - email: "AustralP@0886597f6db54159b6bf740e90826839.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stevena Alberse,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Stevena Alberse,ou=Payroll,dc=bitwarden,dc=com", - email: "AlberseS@8eaa02b53fec48d0842607d198bfec39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janson Finak,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Janson Finak,ou=Peons,dc=bitwarden,dc=com", - email: "FinakJ@1e51049529e146d4a9d0e0d1e98a7af3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trudy Hillring,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Trudy Hillring,ou=Administrative,dc=bitwarden,dc=com", - email: "HillrinT@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Albert Rolfes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Albert Rolfes,ou=Product Testing,dc=bitwarden,dc=com", - email: "RolfesA@c8ee77199e8a4c8b9eaba7996bee1657.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coletta Azad,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Coletta Azad,ou=Management,dc=bitwarden,dc=com", - email: "AzadC@8e76ac132bbc40639d377cc963491f20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celestyna DeVries,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Celestyna DeVries,ou=Peons,dc=bitwarden,dc=com", - email: "DeVriesC@235bdf1949f24a4b80141074712cdcd7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorilee Klostermann,ou=Human Resources,dc=bitwarden,dc=com", - email: "KlosterL@3ce51f6d63564349a707188cebe0b9db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darda Mitrani,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Darda Mitrani,ou=Human Resources,dc=bitwarden,dc=com", - email: "MitraniD@edaeeeda9dac4d529991a1e33586bf00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Burton Falquero,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Burton Falquero,ou=Management,dc=bitwarden,dc=com", - email: "FalquerB@e677741303634ac2804273adce139081.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lishe Suess,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lishe Suess,ou=Human Resources,dc=bitwarden,dc=com", - email: "SuessL@280567b14e5b498fb0bc375c822f4548.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adora Droste,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Adora Droste,ou=Human Resources,dc=bitwarden,dc=com", - email: "DrosteA@58fb794b3cd74bd6925d4e906edf1e0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maybelle Obermeyer,ou=Janitorial,dc=bitwarden,dc=com", - email: "ObermeyM@acb4046ec7714c0fad9acedf1017d851.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paper Blakeslee,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Paper Blakeslee,ou=Administrative,dc=bitwarden,dc=com", - email: "BlakeslP@35f9e0ae24c24ec3baa413620b2b7eb4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teena Klavkalns,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Teena Klavkalns,ou=Administrative,dc=bitwarden,dc=com", - email: "KlavkalT@f397e344461e4f9a88c49c97eb320637.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Veradis Mitchelson,ou=Administrative,dc=bitwarden,dc=com", - email: "MitchelV@91ed7be59f5046a99ecb320616cf96d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sybila McQuarrie,ou=Payroll,dc=bitwarden,dc=com", - email: "McQuarrS@96b5430a2ccc4177bd773424088b496b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChiKwan Lakhani,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ChiKwan Lakhani,ou=Management,dc=bitwarden,dc=com", - email: "LakhaniC@c75f0e626db74dca96376386c5032bd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niz Tassy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Niz Tassy,ou=Peons,dc=bitwarden,dc=com", - email: "TassyN@339e122adcf4463f83274df9a1e1749f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marg Cavanagh,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marg Cavanagh,ou=Peons,dc=bitwarden,dc=com", - email: "CavanagM@f2a6f34598244e88aecb895cbecfca2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anthony Luyten,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anthony Luyten,ou=Administrative,dc=bitwarden,dc=com", - email: "LuytenA@07f933542a8443fa9fa85a2d55eb8b28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mira Hinkel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mira Hinkel,ou=Product Testing,dc=bitwarden,dc=com", - email: "HinkelM@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florette Amos,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Florette Amos,ou=Payroll,dc=bitwarden,dc=com", - email: "AmosF@20bbf24fbc3b442da2b7e99430631372.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clara Maglione,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clara Maglione,ou=Management,dc=bitwarden,dc=com", - email: "MaglionC@9377f34b40c845ea9ad33f532a97d8a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kizzie Leang,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kizzie Leang,ou=Peons,dc=bitwarden,dc=com", - email: "LeangK@3b6256d1a2114444bde1996d1b271e4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celestia Tobias,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Celestia Tobias,ou=Administrative,dc=bitwarden,dc=com", - email: "TobiasC@db3ffdb4452b42c4898f995b3d073240.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hayden Silverthorn,ou=Product Development,dc=bitwarden,dc=com", - email: "SilvertH@02d364e8b5314cbabf82326287f95a37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jet McGregor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jet McGregor,ou=Management,dc=bitwarden,dc=com", - email: "McGregoJ@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristien Brokaw,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kristien Brokaw,ou=Peons,dc=bitwarden,dc=com", - email: "BrokawK@02ce75bcb8d0491f899a2b936126cb22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karole Su,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Karole Su,ou=Payroll,dc=bitwarden,dc=com", - email: "SuK@a55a0552890b4055ae5195bed49574db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Clemente Ziebarth,ou=Administrative,dc=bitwarden,dc=com", - email: "ZiebartC@98b2d363da184136b48a9bfde02f5760.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laureen Shrieves,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Laureen Shrieves,ou=Payroll,dc=bitwarden,dc=com", - email: "ShrieveL@7f942390e1bf40f296074b513660c50e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dalila Hassold,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dalila Hassold,ou=Management,dc=bitwarden,dc=com", - email: "HassoldD@8b7fc53ad9d44eee917cc3e25b895199.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miro Trent,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Miro Trent,ou=Product Testing,dc=bitwarden,dc=com", - email: "TrentM@494658ad0bff4810b3d5b5096c85b666.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashley Woessner,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ashley Woessner,ou=Janitorial,dc=bitwarden,dc=com", - email: "WoessneA@dfbf12c2de4a4c2a9714439426a97be0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orelia Nasir,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Orelia Nasir,ou=Product Testing,dc=bitwarden,dc=com", - email: "NasirO@2ba9191b746c48859df4b1a8bcc442ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoshiaki Blann,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yoshiaki Blann,ou=Peons,dc=bitwarden,dc=com", - email: "BlannY@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolie Dropin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jolie Dropin,ou=Product Testing,dc=bitwarden,dc=com", - email: "DropinJ@9cde21d54f45469eaa2726ba1c900158.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mami Badjari,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mami Badjari,ou=Product Testing,dc=bitwarden,dc=com", - email: "BadjariM@db74de76c5374bf883b5c0e4951495b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nash Enstone,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nash Enstone,ou=Peons,dc=bitwarden,dc=com", - email: "EnstoneN@7dc4d22df72d4b7ea867e84e8a1a18c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kirsteni Baribeau,ou=Human Resources,dc=bitwarden,dc=com", - email: "BaribeaK@dc4e00565ed740ca8c4a935c1cd2fe2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Crissie Panchmatia,ou=Janitorial,dc=bitwarden,dc=com", - email: "PanchmaC@a5f4802ff3844a6da03607a2952d6142.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binny Strannemar,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Binny Strannemar,ou=Human Resources,dc=bitwarden,dc=com", - email: "StranneB@d1b4a8f4bfcd4e2c9e8835bd8152821a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorri Auker,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dorri Auker,ou=Human Resources,dc=bitwarden,dc=com", - email: "AukerD@2adc28241a1f46749fea06db3960400f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zofia Bergstrom,ou=Janitorial,dc=bitwarden,dc=com", - email: "BergstrZ@d12ac5e9d33844cb95242d9ef1474ea0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beverie Wada,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Beverie Wada,ou=Product Development,dc=bitwarden,dc=com", - email: "WadaB@f707f835774c41b68275e151d7d499c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ebrahim Carbone,ou=Product Development,dc=bitwarden,dc=com", - email: "CarboneE@b7faf436ed93412c95576fc8c712f2d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivian Skaftason,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vivian Skaftason,ou=Peons,dc=bitwarden,dc=com", - email: "SkaftasV@387e909c989e4028811c31a83af61782.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fayth Marr,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fayth Marr,ou=Product Testing,dc=bitwarden,dc=com", - email: "MarrF@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rowan Reichow,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rowan Reichow,ou=Payroll,dc=bitwarden,dc=com", - email: "ReichowR@95d418bbcea04118a52deb10863e13db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clementia Pesik,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Clementia Pesik,ou=Payroll,dc=bitwarden,dc=com", - email: "PesikC@afd234efc12945238daa43bdcf2611be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sofie Baugnon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sofie Baugnon,ou=Administrative,dc=bitwarden,dc=com", - email: "BaugnonS@59778d9e834c452586d9e26b970164f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Astrid Montoya,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Astrid Montoya,ou=Product Testing,dc=bitwarden,dc=com", - email: "MontoyaA@936c219fa5734e078ad4251f638dcef1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hongzhi Muzio,ou=Administrative,dc=bitwarden,dc=com", - email: "MuzioH@4ae1d64c9a5a4ca1a7356298a39877d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grover Dehoff,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Grover Dehoff,ou=Management,dc=bitwarden,dc=com", - email: "DehoffG@8e58146437ae4809935cbbfea9366714.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nerty Nair,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nerty Nair,ou=Product Testing,dc=bitwarden,dc=com", - email: "NairN@57c8e316985b48038aad56a3f94817a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eloisa Gehr,ou=Product Testing,dc=bitwarden,dc=com", - email: "GehrE@0cee059feb2f45d0a3e77b9cb46c95e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rene McKearney,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rene McKearney,ou=Peons,dc=bitwarden,dc=com", - email: "McKearnR@62d6b52263d643d2a05493b576aca6a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pat Libadmin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pat Libadmin,ou=Payroll,dc=bitwarden,dc=com", - email: "LibadmiP@adfd9881a9c8497ca549f3f76c4a7563.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anneliese Dunningham,ou=Human Resources,dc=bitwarden,dc=com", - email: "DunningA@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanu Slozil,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kanu Slozil,ou=Administrative,dc=bitwarden,dc=com", - email: "SlozilK@841df0a2276144ffade10ec334e0a08c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cecile Shupe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cecile Shupe,ou=Product Development,dc=bitwarden,dc=com", - email: "ShupeC@ece1fab2e72c4ef2980d13b290c0165f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fahim Kandra,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fahim Kandra,ou=Administrative,dc=bitwarden,dc=com", - email: "KandraF@e9f78b5202b6404b9ee727f9d75a47b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerald Laroche,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gerald Laroche,ou=Janitorial,dc=bitwarden,dc=com", - email: "LarocheG@c2ff834411a74d309100193d31df013a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=ChiYin Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", - email: "WikkeriC@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devon Pesold,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Devon Pesold,ou=Janitorial,dc=bitwarden,dc=com", - email: "PesoldD@9befe039acaf4d578a86c80d677d5d49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daile Burger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Daile Burger,ou=Administrative,dc=bitwarden,dc=com", - email: "BurgerD@2050283a8ad249b48adb290c7534145d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=JeanNormand Kauffman,ou=Payroll,dc=bitwarden,dc=com", - email: "KauffmaJ@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tricord Gumb,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tricord Gumb,ou=Peons,dc=bitwarden,dc=com", - email: "GumbT@1114ec94893c4de2b94b261fe2161258.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shena Atteridge,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shena Atteridge,ou=Product Development,dc=bitwarden,dc=com", - email: "AtteridS@34b13abf3e53487c98ee71b110b55537.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silvester Piette,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Silvester Piette,ou=Administrative,dc=bitwarden,dc=com", - email: "PietteS@7e7373daa08d4a3b834f2e415978d199.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amnon Gause,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Amnon Gause,ou=Product Development,dc=bitwarden,dc=com", - email: "GauseA@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clemente Eva,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Clemente Eva,ou=Product Development,dc=bitwarden,dc=com", - email: "EvaC@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donnajean Carron,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Donnajean Carron,ou=Janitorial,dc=bitwarden,dc=com", - email: "CarronD@d0eb59d9416b478ea7e9e6add086d998.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wieslaw Serbus,ou=Janitorial,dc=bitwarden,dc=com", - email: "SerbusW@e67a7ab12b0d4d819423914b8a02e571.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailene Chavez,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ailene Chavez,ou=Payroll,dc=bitwarden,dc=com", - email: "ChavezA@49f125d3a1b3429789a5b52822aa6b88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annet Leshowitz,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Annet Leshowitz,ou=Management,dc=bitwarden,dc=com", - email: "LeshowiA@f6a15f7382e844a784e99c66615d4c58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willy Jimenez,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Willy Jimenez,ou=Human Resources,dc=bitwarden,dc=com", - email: "JimenezW@91c1e03d3c58475f891067cc0da82fda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teddi Arai,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Teddi Arai,ou=Payroll,dc=bitwarden,dc=com", - email: "AraiT@23c49cd8e8ea45d2969cffc2057f5127.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tammy McBeth,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tammy McBeth,ou=Human Resources,dc=bitwarden,dc=com", - email: "McBethT@a0441f048a884d1891acef81ab17bc91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Waverly Cadshare,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Waverly Cadshare,ou=Administrative,dc=bitwarden,dc=com", - email: "CadsharW@1fca0d84539f4e2793fe7b6d498c02ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanLouis Okura,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=JeanLouis Okura,ou=Payroll,dc=bitwarden,dc=com", - email: "OkuraJ@70e5048368bb463a909414f19d29543c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonia Khosla,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tonia Khosla,ou=Peons,dc=bitwarden,dc=com", - email: "KhoslaT@9c2e6c9cd4a84de798c45d0f7e513159.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binni Rasmussen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Binni Rasmussen,ou=Management,dc=bitwarden,dc=com", - email: "RasmussB@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herb Stansbury,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Herb Stansbury,ou=Peons,dc=bitwarden,dc=com", - email: "StansbuH@e163cc78ce6a4972adc62831f8cfd810.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ralina Fouke,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ralina Fouke,ou=Administrative,dc=bitwarden,dc=com", - email: "FoukeR@3358f35c8d4144d59100e666ebc7914f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ehi Lawrie,ou=Human Resources,dc=bitwarden,dc=com", - email: "LawrieE@0fcafdb14683453782c5b7d16f816196.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merridie Vankooten,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Merridie Vankooten,ou=Payroll,dc=bitwarden,dc=com", - email: "VankootM@41bf97a0f83643ecb5c3ae7dea3fc6f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kalinda Joachimpillai,ou=Management,dc=bitwarden,dc=com", - email: "JoachimK@e99ccdd4f1854e85b7018db9ee827387.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Millie Doda,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Millie Doda,ou=Management,dc=bitwarden,dc=com", - email: "DodaM@7341939506294cf3bdd4bdeca7674074.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alexia Layton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alexia Layton,ou=Janitorial,dc=bitwarden,dc=com", - email: "LaytonA@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lottie Filpus,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lottie Filpus,ou=Management,dc=bitwarden,dc=com", - email: "FilpusL@f069d8208db84a5496e2d819694425d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tommie Craib,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tommie Craib,ou=Peons,dc=bitwarden,dc=com", - email: "CraibT@a1229ea2ddce4147b437f4d3ad26de38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Narrima Cavnar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Narrima Cavnar,ou=Payroll,dc=bitwarden,dc=com", - email: "CavnarN@d5cee79f473a444ab2622a6d06a74e01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walt Gentes,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Walt Gentes,ou=Administrative,dc=bitwarden,dc=com", - email: "GentesW@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gay Acelvari,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gay Acelvari,ou=Product Testing,dc=bitwarden,dc=com", - email: "AcelvarG@00cf2c241c534697a382f39ac298a035.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raeann Laws,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Raeann Laws,ou=Peons,dc=bitwarden,dc=com", - email: "LawsR@14a50969231442b7a4661f1630e8f16c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YuKai Goodrow,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=YuKai Goodrow,ou=Payroll,dc=bitwarden,dc=com", - email: "GoodrowY@5961547593ce4d3d831c972ef1cd392b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lorrin Bnrinfo,ou=Product Testing,dc=bitwarden,dc=com", - email: "BnrinfoL@7c6533f264974d51a9e95294d086acef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tad Caceres,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tad Caceres,ou=Janitorial,dc=bitwarden,dc=com", - email: "CaceresT@aa27b3d0b2304f6aa579ad064be338d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorreen Dewit,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dorreen Dewit,ou=Administrative,dc=bitwarden,dc=com", - email: "DewitD@789d3ef8deb24c20bce9e2915a466aef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francisca Griswold,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Francisca Griswold,ou=Management,dc=bitwarden,dc=com", - email: "GriswolF@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Motaz Metz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Motaz Metz,ou=Janitorial,dc=bitwarden,dc=com", - email: "MetzM@c6ecb3f5d2c24d25a5b9ac4ff092f2f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorry Suprick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lorry Suprick,ou=Product Testing,dc=bitwarden,dc=com", - email: "SuprickL@ae7270bab55c471e8d4684834aceebc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassey Precoda,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cassey Precoda,ou=Product Development,dc=bitwarden,dc=com", - email: "PrecodaC@a4566d06f4404638b79325caaec894f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kevina Zauhar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kevina Zauhar,ou=Payroll,dc=bitwarden,dc=com", - email: "ZauharK@e705dc3960ae453fb9cbbc66d57830b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diandra Pafilis,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Diandra Pafilis,ou=Management,dc=bitwarden,dc=com", - email: "PafilisD@06d31112a23c438e8cd439e22e02ac63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaylah Poyner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shaylah Poyner,ou=Peons,dc=bitwarden,dc=com", - email: "PoynerS@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agenia Joshi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Agenia Joshi,ou=Product Development,dc=bitwarden,dc=com", - email: "JoshiA@6e182e42a9474534add2d6f2d3638914.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aaren LaVecchia,ou=Janitorial,dc=bitwarden,dc=com", - email: "LaVecchA@bd2c7ab0e4084b83a6509029744de154.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rodrigus Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", - email: "WatchmaR@e10037e1eec24ce3ab8d8566fc3aaa83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Madalena Oziemblo,ou=Payroll,dc=bitwarden,dc=com", - email: "OziemblM@0e5adb3dd0d14cc89a2b37de2a8aa9c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imre Farag,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Imre Farag,ou=Product Development,dc=bitwarden,dc=com", - email: "FaragI@00cec4060ff5488a983c2cc3b42801e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alina Naphan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alina Naphan,ou=Management,dc=bitwarden,dc=com", - email: "NaphanA@e9aa0388b0974f709cc43e6d5c1d4048.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mariquilla Gibson,ou=Janitorial,dc=bitwarden,dc=com", - email: "GibsonM@29c3d32bd72d456b98ccdb1f1f704bb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Twila Billard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Twila Billard,ou=Management,dc=bitwarden,dc=com", - email: "BillardT@6fe2230bebbe45c4b4897cbd6f689c6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Xiaojing Wooff,ou=Administrative,dc=bitwarden,dc=com", - email: "WooffX@55ead9ec44144dd8a609d27bbb37e157.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ari Windom,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ari Windom,ou=Product Development,dc=bitwarden,dc=com", - email: "WindomA@d5a62d125bc14270b01fa0b9a8576c7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opaline Gomes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Opaline Gomes,ou=Management,dc=bitwarden,dc=com", - email: "GomesO@3009937061fa44e08033cd2d77480708.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rodi Dyrdahl,ou=Peons,dc=bitwarden,dc=com", - email: "DyrdahlR@4c9ea5cb0c6d47f0bff8da92c6c9d0eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Svend Bongers,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Svend Bongers,ou=Administrative,dc=bitwarden,dc=com", - email: "BongersS@3ee42841812c4e2f8f42547c056a47a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzette Burkey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Suzette Burkey,ou=Janitorial,dc=bitwarden,dc=com", - email: "BurkeyS@471e794006cb42c3b4dce1c843b0ccc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klazina Grabowski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Klazina Grabowski,ou=Product Development,dc=bitwarden,dc=com", - email: "GrabowsK@116c2088f9014599b930c7e21848d917.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jester Alink,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jester Alink,ou=Janitorial,dc=bitwarden,dc=com", - email: "AlinkJ@995756bc696444e0925a45b2d907b2e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Arnold Fogelson,ou=Product Testing,dc=bitwarden,dc=com", - email: "FogelsoA@7cb67504c13e412a8fec103be024f92b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andre Hatzenbichler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Andre Hatzenbichler,ou=Management,dc=bitwarden,dc=com", - email: "HatzenbA@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lyndon Montuno,ou=Janitorial,dc=bitwarden,dc=com", - email: "MontunoL@c8d14bd2dc82442f9c5011dbd053c45a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raudres Negandhi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Raudres Negandhi,ou=Administrative,dc=bitwarden,dc=com", - email: "NegandhR@b866cf3614c84b6ab1508dbbda76e67a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marj Posta,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marj Posta,ou=Administrative,dc=bitwarden,dc=com", - email: "PostaM@68ce8f6324ee4d5691543ff35fe05d84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mozelle Lalonde,ou=Payroll,dc=bitwarden,dc=com", - email: "LalondeM@31118e4ea061472193269b0ea325f915.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WaiMan Stillwell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=WaiMan Stillwell,ou=Peons,dc=bitwarden,dc=com", - email: "StillweW@fb6b5989f0e34d278066748667edadde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Audi Adamski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Audi Adamski,ou=Peons,dc=bitwarden,dc=com", - email: "AdamskiA@2ac984f088f74653b77322f263723237.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Earl Stanton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Earl Stanton,ou=Peons,dc=bitwarden,dc=com", - email: "StantonE@c7b440e597614575a5a39ed9339f6e2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reggie Venturini,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Reggie Venturini,ou=Administrative,dc=bitwarden,dc=com", - email: "VenturiR@8227646c55034cf9b21757fce681b53f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jannelle Berro,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jannelle Berro,ou=Product Testing,dc=bitwarden,dc=com", - email: "BerroJ@6452f4682aa64d008088217c5ad881f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marya Buford,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marya Buford,ou=Payroll,dc=bitwarden,dc=com", - email: "BufordM@b1e31f863da04aa8b9a57d43a6e09dae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kally Tinney,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kally Tinney,ou=Human Resources,dc=bitwarden,dc=com", - email: "TinneyK@cf1f0125e0794b80b348dddaa747ca09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verile Maksoud,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Verile Maksoud,ou=Product Development,dc=bitwarden,dc=com", - email: "MaksoudV@bf7383f759754f9b9777ee05159141ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaun Sandhu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shaun Sandhu,ou=Management,dc=bitwarden,dc=com", - email: "SandhuS@c67e58274a874c9595360f767ef27116.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michal Andrew,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Michal Andrew,ou=Administrative,dc=bitwarden,dc=com", - email: "AndrewM@4dd9b19c6f6848e2a0768f206ad89104.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valerie Efthim,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Valerie Efthim,ou=Peons,dc=bitwarden,dc=com", - email: "EfthimV@8a407807d42746848c0943df6e11c535.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Imre Pizzanelli,ou=Payroll,dc=bitwarden,dc=com", - email: "PizzaneI@7dd094a2e53049a29a9302610c3b379c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadella Loggins,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sadella Loggins,ou=Janitorial,dc=bitwarden,dc=com", - email: "LogginsS@afea5fd146ef4dd19f19321d779917eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Helenelizabeth Leiwe,ou=Product Development,dc=bitwarden,dc=com", - email: "LeiweH@a973beae67824ff38510168917193e58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HackHoo Hunter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=HackHoo Hunter,ou=Product Development,dc=bitwarden,dc=com", - email: "HunterH@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meter Hickerson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Meter Hickerson,ou=Peons,dc=bitwarden,dc=com", - email: "HickersM@518da73225eb4a77959fb191daf72b49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryKay Lan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=MaryKay Lan,ou=Janitorial,dc=bitwarden,dc=com", - email: "LanM@fd5fdd80b1a14938bb4e5ddb7ae924b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giana Pierson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Giana Pierson,ou=Administrative,dc=bitwarden,dc=com", - email: "PiersonG@ae78ee526c5e44bdaf510c03b717277a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shiela Anthonissen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shiela Anthonissen,ou=Management,dc=bitwarden,dc=com", - email: "AnthoniS@92fac5dc49334a53a79e5778457c6927.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toby Winterberg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Toby Winterberg,ou=Janitorial,dc=bitwarden,dc=com", - email: "WinterbT@5b0da98f68834ea191407bb1ee431580.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leticia Metheny,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leticia Metheny,ou=Management,dc=bitwarden,dc=com", - email: "MethenyL@523c7925179d4304b25908d832088d77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Skipper Moschopoulos,ou=Payroll,dc=bitwarden,dc=com", - email: "MoschopS@d21aff3093e74a19bbea5f621e17cee4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raven Tuan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Raven Tuan,ou=Product Development,dc=bitwarden,dc=com", - email: "TuanR@fa45ba90b06846bb81fc9f04c3bbe415.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leddy Kochis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Leddy Kochis,ou=Peons,dc=bitwarden,dc=com", - email: "KochisL@4791ce49665d4017b7808a73f1a6c3d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niek Tripp,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Niek Tripp,ou=Administrative,dc=bitwarden,dc=com", - email: "TrippN@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Curtis Caglayan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Curtis Caglayan,ou=Product Development,dc=bitwarden,dc=com", - email: "CaglayaC@4641f68e88f74b89a7d91f372f89c707.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ibbie Sebastian,ou=Janitorial,dc=bitwarden,dc=com", - email: "SebastiI@f5c077cada0a4d8d8147cbf8b500bc50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eladio Nadler,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eladio Nadler,ou=Administrative,dc=bitwarden,dc=com", - email: "NadlerE@395a1522673545a2b6f4ec5f1b7796af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kameko Ayres,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kameko Ayres,ou=Product Development,dc=bitwarden,dc=com", - email: "AyresK@23f2b7d7514a4767820f5e79ce7c0c7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florinda Templeton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Florinda Templeton,ou=Product Development,dc=bitwarden,dc=com", - email: "TempletF@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Omayma Halula,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Omayma Halula,ou=Payroll,dc=bitwarden,dc=com", - email: "HalulaO@c3a780fc1cae424e99d05abc11ec9e6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shellie Blethen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shellie Blethen,ou=Human Resources,dc=bitwarden,dc=com", - email: "BlethenS@95aba425683d4bd1840a81fc67427bb1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Annemarijke Marceau,ou=Janitorial,dc=bitwarden,dc=com", - email: "MarceauA@6c578796ae9e48a3a3b7ff8b9d3b060a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corliss Pharris,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Corliss Pharris,ou=Payroll,dc=bitwarden,dc=com", - email: "PharrisC@8ab88106282a4e96ae4334aaf2a9980f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mareah Gooderham,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mareah Gooderham,ou=Product Development,dc=bitwarden,dc=com", - email: "GooderhM@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olwen Yelvington,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Olwen Yelvington,ou=Management,dc=bitwarden,dc=com", - email: "YelvingO@d2bd61540f2c442085d5a71bd0d2fc4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maiga Buder,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maiga Buder,ou=Product Development,dc=bitwarden,dc=com", - email: "BuderM@9ff9a89b32504ff5afdb9c11208b7d0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madlen Booking,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Madlen Booking,ou=Product Development,dc=bitwarden,dc=com", - email: "BookingM@a67ff5b1ad97429ba599b05adf0b8c32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darell Liang,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Darell Liang,ou=Product Testing,dc=bitwarden,dc=com", - email: "LiangD@49c28823fa6d4e18b2bd79c94f037cd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Klarrisa Tregenza,ou=Janitorial,dc=bitwarden,dc=com", - email: "TregenzK@290c8e7e8138440babe5064ce0d66502.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neena Mayes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Neena Mayes,ou=Human Resources,dc=bitwarden,dc=com", - email: "MayesN@0159105d118c42e49c1ba8afedb04349.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hannie Robieux,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hannie Robieux,ou=Payroll,dc=bitwarden,dc=com", - email: "RobieuxH@2fd47af450d743418108699823631680.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regine Iantaffi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Regine Iantaffi,ou=Peons,dc=bitwarden,dc=com", - email: "IantaffR@643e8725ab414409abd27e0fe695dde2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ramonda Henshaw,ou=Administrative,dc=bitwarden,dc=com", - email: "HenshawR@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gladi Steffes,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gladi Steffes,ou=Administrative,dc=bitwarden,dc=com", - email: "SteffesG@32e3fa5da06a4fd3803417733702b064.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalli Chanonat,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kalli Chanonat,ou=Administrative,dc=bitwarden,dc=com", - email: "ChanonaK@aa334b1a73514c2283534b58c2c9420b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bob Gronwall,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bob Gronwall,ou=Peons,dc=bitwarden,dc=com", - email: "GronwalB@0f8c263e7f6c452db2957bf93d2cdb86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Giovanni Rizewiski,ou=Peons,dc=bitwarden,dc=com", - email: "RizewisG@0c871b0ecc1a46debc66287e828580e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faunie Moroz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Faunie Moroz,ou=Product Development,dc=bitwarden,dc=com", - email: "MorozF@8a380e2be5ea40e5ac3c58889b7903b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avrit Abrahim,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Avrit Abrahim,ou=Payroll,dc=bitwarden,dc=com", - email: "AbrahimA@3f9f595da27346f4869f68e3fa5be108.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marietta Shunmugam,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShunmugM@80196116addf4f41ba15c7f335724d57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kelcie Ruttan,ou=Product Testing,dc=bitwarden,dc=com", - email: "RuttanK@5bc6becc7c8b4be7bfb46c3c5ef26514.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernard Placido,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bernard Placido,ou=Payroll,dc=bitwarden,dc=com", - email: "PlacidoB@be9d6d33980e45aa8fdb6ebf08094f9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kariotta Sprunger,ou=Administrative,dc=bitwarden,dc=com", - email: "SprungeK@234baafa6151436c9e90b2aa2617a7d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Graciela VanPatten,ou=Janitorial,dc=bitwarden,dc=com", - email: "VanPattG@f6cc3e776c61473088c0113a2174d24c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flory Ganadry,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Flory Ganadry,ou=Management,dc=bitwarden,dc=com", - email: "GanadryF@0c3f5d55309540bf85d561938fa59231.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berti Steski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Berti Steski,ou=Product Testing,dc=bitwarden,dc=com", - email: "SteskiB@c54cbe69dcd34a96b7a131338d06781d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charline Fross,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Charline Fross,ou=Product Development,dc=bitwarden,dc=com", - email: "FrossC@786bf687e1984b2da694b96e1738976f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bonnar Burns,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bonnar Burns,ou=Product Development,dc=bitwarden,dc=com", - email: "BurnsB@c44cf57c7e494ab8a133e7f2a6a02284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kate Scorziello,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kate Scorziello,ou=Administrative,dc=bitwarden,dc=com", - email: "ScorzieK@3340c10fa973435198296f285f1bf380.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=SvennErik Kamboh,ou=Product Testing,dc=bitwarden,dc=com", - email: "KambohS@4e9e92f6e97240fda6d0bd5b2ae77b5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olenka Tota,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Olenka Tota,ou=Human Resources,dc=bitwarden,dc=com", - email: "TotaO@2c3e110ee6f849dd9d12214b3161a037.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hanh Vonderhaar,ou=Payroll,dc=bitwarden,dc=com", - email: "VonderhH@1d23264dcd2241baa77e90f901c50315.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ceil Foubert,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ceil Foubert,ou=Human Resources,dc=bitwarden,dc=com", - email: "FoubertC@f6edafa4c10c4c53bf1931829503f011.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=JooGeok Kouhi,ou=Product Development,dc=bitwarden,dc=com", - email: "KouhiJ@b0cf4813000442ff977f9358e32e3342.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chellappan Pietromonaco,ou=Product Testing,dc=bitwarden,dc=com", - email: "PietromC@ca73de7d8fb447f899df1cc98c2c34a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tetsumo Thuswaldner,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThuswalT@549a00afcc4642b6988c79a50d08a8a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devinne Zanga,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Devinne Zanga,ou=Peons,dc=bitwarden,dc=com", - email: "ZangaD@5df54d8944e947f396093baae162579f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Letti Boocock,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Letti Boocock,ou=Human Resources,dc=bitwarden,dc=com", - email: "BoocockL@97a601b7bf924aea9927e9bb24e9dce4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charin Fallah,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Charin Fallah,ou=Human Resources,dc=bitwarden,dc=com", - email: "FallahC@37503b661def462c8ca2c73740caf74d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clea Astorino,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Clea Astorino,ou=Human Resources,dc=bitwarden,dc=com", - email: "AstorinC@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassandry Hilton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cassandry Hilton,ou=Peons,dc=bitwarden,dc=com", - email: "HiltonC@96f772c600724b25bd473286135ce70b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sohayla Sugarbroad,ou=Administrative,dc=bitwarden,dc=com", - email: "SugarbrS@9426a2bdce5b455d93581bbbd4e466d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlene Homan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karlene Homan,ou=Management,dc=bitwarden,dc=com", - email: "HomanK@7c64049fb61442b49d970b3e88ea4fff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anjanette McCaffity,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anjanette McCaffity,ou=Management,dc=bitwarden,dc=com", - email: "McCaffiA@e682211d32bb40e7ace0a806e7eb8802.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Peach Heinrichs,ou=Product Testing,dc=bitwarden,dc=com", - email: "HeinricP@b5697730a3f645a8a3b7775071bff9d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micky Brodowski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Micky Brodowski,ou=Payroll,dc=bitwarden,dc=com", - email: "BrodowsM@b5f56e1924634c2689d55900ad6e24f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neetu Miles,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Neetu Miles,ou=Human Resources,dc=bitwarden,dc=com", - email: "MilesN@9a5bdc9a34e041db8cf5f51cd958707f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhodia Irick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rhodia Irick,ou=Product Testing,dc=bitwarden,dc=com", - email: "IrickR@b6e5aee724a54904bb06d1cd94c0be8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phat Mecteau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Phat Mecteau,ou=Peons,dc=bitwarden,dc=com", - email: "MecteauP@9ecc403b039d43679eefc1da35dbd584.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tzung Winfield,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tzung Winfield,ou=Janitorial,dc=bitwarden,dc=com", - email: "WinfielT@a762ad5f7ab94a82ae700785cde02626.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amandie Britman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Amandie Britman,ou=Payroll,dc=bitwarden,dc=com", - email: "BritmanA@23128e7ff9d145ae80543eb5e7da5669.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kamillah Lannan,ou=Human Resources,dc=bitwarden,dc=com", - email: "LannanK@dc0c8137c1f0444baf57655cd3888c75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jaquelyn Mowbray,ou=Product Development,dc=bitwarden,dc=com", - email: "MowbrayJ@b60aa937d01647ea80a3225aa7e4cdc5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jeannie Moshiri,ou=Human Resources,dc=bitwarden,dc=com", - email: "MoshiriJ@964166b8cdd041c68aaae270afb90271.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brittani Guitard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Brittani Guitard,ou=Product Testing,dc=bitwarden,dc=com", - email: "GuitardB@ecc994146f8e4e3b8a176bee8df24c8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hubert Majors,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hubert Majors,ou=Payroll,dc=bitwarden,dc=com", - email: "MajorsH@52db00da846a4ecd950665d8955a7231.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KinYee Amini,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=KinYee Amini,ou=Janitorial,dc=bitwarden,dc=com", - email: "AminiK@ea0898ff0877402d9c2e36c10881d242.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Riva Malott,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Riva Malott,ou=Janitorial,dc=bitwarden,dc=com", - email: "MalottR@0740d70384e04d4883e40f4df47caeab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gizela Fenez,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gizela Fenez,ou=Peons,dc=bitwarden,dc=com", - email: "FenezG@85a71b552bfd49e9ae6851cb672bc85b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thompson Santos,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Thompson Santos,ou=Payroll,dc=bitwarden,dc=com", - email: "SantosT@1a25c5eecf2b4862871ccde04c2d3ffb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Student Anker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Student Anker,ou=Peons,dc=bitwarden,dc=com", - email: "AnkerS@802b05236c97484db9a6d34278cbb7c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlita Flores,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carlita Flores,ou=Human Resources,dc=bitwarden,dc=com", - email: "FloresC@dabb673b74534388bb1466a7f0fed6b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Domenick Thomey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Domenick Thomey,ou=Product Testing,dc=bitwarden,dc=com", - email: "ThomeyD@0d2070a7704249ccae81fc4b91659074.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pegeen Beckham,ou=Human Resources,dc=bitwarden,dc=com", - email: "BeckhamP@2d00b4c5d94943aaab567276a570648e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lanie Wayler,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lanie Wayler,ou=Human Resources,dc=bitwarden,dc=com", - email: "WaylerL@5abf2b8f947a433ea32c981885ccae42.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxi Leonida,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roxi Leonida,ou=Administrative,dc=bitwarden,dc=com", - email: "LeonidaR@a7c911c3534b41fcbf3c7f9346df687d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isin Paczynski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Isin Paczynski,ou=Product Development,dc=bitwarden,dc=com", - email: "PaczynsI@7cff87d9428241d385e3a8b08cc7cf02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Condell MacPhail,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Condell MacPhail,ou=Administrative,dc=bitwarden,dc=com", - email: "MacPhaiC@1bed3f33f95f46ba84060b615fc669ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Swd Braganza,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Swd Braganza,ou=Management,dc=bitwarden,dc=com", - email: "BraganzS@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herbie Bilton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Herbie Bilton,ou=Payroll,dc=bitwarden,dc=com", - email: "BiltonH@30f521987a9e4cbfb386d3a1369f2935.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tas Hagerty,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tas Hagerty,ou=Janitorial,dc=bitwarden,dc=com", - email: "HagertyT@eb6e0362b9c044ceb04b07f121efebbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristin Pambianchi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cristin Pambianchi,ou=Management,dc=bitwarden,dc=com", - email: "PambianC@18060edcc6234a8b8fe795c650ecf126.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deann Lutz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Deann Lutz,ou=Product Development,dc=bitwarden,dc=com", - email: "LutzD@3201bacf5bb24ae3afcce52434ad7af4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Datha Apter,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Datha Apter,ou=Payroll,dc=bitwarden,dc=com", - email: "ApterD@ea68ff21788e47d08d129553b31a56f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aretha Kursell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aretha Kursell,ou=Product Development,dc=bitwarden,dc=com", - email: "KursellA@17061e8235904e0b93980e91f7a69e37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Attilio Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", - email: "AldhizeA@5527d8c433094cecbedb01f554d34d26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alverta Guilbault,ou=Human Resources,dc=bitwarden,dc=com", - email: "GuilbauA@96b2a23653bd4867b5a7bf172ebf238c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norry Trpisovsky,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Norry Trpisovsky,ou=Peons,dc=bitwarden,dc=com", - email: "TrpisovN@44154c0b8f05440cb2dfceffbfdfaf5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ladell Doig,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ladell Doig,ou=Payroll,dc=bitwarden,dc=com", - email: "DoigL@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mer Hasan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mer Hasan,ou=Peons,dc=bitwarden,dc=com", - email: "HasanM@8e939e1720cd4eec84cf0ef4b954cc46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Therine Solman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Therine Solman,ou=Peons,dc=bitwarden,dc=com", - email: "SolmanT@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Garnet Gooch,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Garnet Gooch,ou=Administrative,dc=bitwarden,dc=com", - email: "GoochG@c9b01dac43c94e75a452c54efb5c8e21.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colli Magee,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Colli Magee,ou=Human Resources,dc=bitwarden,dc=com", - email: "MageeC@f8c2812065094b4daf335260acd27140.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sammy Topol,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sammy Topol,ou=Management,dc=bitwarden,dc=com", - email: "TopolS@cd3d382133434cf09ea0a78c7fbb0555.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsae Cacha,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Chelsae Cacha,ou=Management,dc=bitwarden,dc=com", - email: "CachaC@8013079ee9144b479560c9bcb06bab11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Albertine DeSimone,ou=Product Testing,dc=bitwarden,dc=com", - email: "DeSimonA@4cccac2b65cb4d559e1c7c657101129e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melvin Stanton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Melvin Stanton,ou=Product Development,dc=bitwarden,dc=com", - email: "StantonM@776517ed1aad4bc8864e3bcd6b8432b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Karolien Skrebels,ou=Janitorial,dc=bitwarden,dc=com", - email: "SkrebelK@8c92d3eeaf56468bbc92aef74edba2cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annabella Fisher,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Annabella Fisher,ou=Product Testing,dc=bitwarden,dc=com", - email: "FisherA@2226746e47f246e6bac38a341375363b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pelly Difilippo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pelly Difilippo,ou=Administrative,dc=bitwarden,dc=com", - email: "DifilipP@96ba8081521e4fe79c79c0f0b9ef5643.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Virginia Clites,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Virginia Clites,ou=Product Development,dc=bitwarden,dc=com", - email: "ClitesV@2eb6d97dc4644dd39ac68997e9422017.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lionel Kahil,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lionel Kahil,ou=Management,dc=bitwarden,dc=com", - email: "KahilL@e6ecc40f4d2343039a82728f79fb14d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatrix Weger,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Beatrix Weger,ou=Janitorial,dc=bitwarden,dc=com", - email: "WegerB@ccb0d62f1b7541d69c0eb30915728fc1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxanne Klimon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roxanne Klimon,ou=Administrative,dc=bitwarden,dc=com", - email: "KlimonR@518da73225eb4a77959fb191daf72b49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ernestine Campara,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ernestine Campara,ou=Management,dc=bitwarden,dc=com", - email: "CamparaE@404f39e9e9f7414486e29f7cf6e81694.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaal Jcst,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gaal Jcst,ou=Janitorial,dc=bitwarden,dc=com", - email: "JcstG@ca74af6c5dcc4f0b974e414c7310f581.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nancy Cesario,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nancy Cesario,ou=Management,dc=bitwarden,dc=com", - email: "CesarioN@0834bcacddfd4229b6702a62e2551569.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosita Carella,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosita Carella,ou=Peons,dc=bitwarden,dc=com", - email: "CarellaR@36e3b9c15a4246d0b9f5619fbb566424.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Reiko Gheorghe,ou=Janitorial,dc=bitwarden,dc=com", - email: "GheorghR@7585d16536b0418b992e73193b27cc42.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keven Cordy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Keven Cordy,ou=Human Resources,dc=bitwarden,dc=com", - email: "CordyK@0af04fcd60da40099a5a068c388bafe2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jordain Cellucci,ou=Product Testing,dc=bitwarden,dc=com", - email: "CelluccJ@68cfba969ba74400992bfae87ff5159e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jourdan Azevedo,ou=Product Development,dc=bitwarden,dc=com", - email: "AzevedoJ@69b627b90a5c4b27910e77ecc55f7d25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wan Savard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wan Savard,ou=Product Testing,dc=bitwarden,dc=com", - email: "SavardW@28d2c310a8f14caeb811cfb7bdd890df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Albertine Hulvershorn,ou=Human Resources,dc=bitwarden,dc=com", - email: "HulversA@ad005e1f3e2c4d6ba75c2d9c48687591.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Phaedra OHeocha,ou=Product Testing,dc=bitwarden,dc=com", - email: "OHeochaP@4cd03f6d248a456a897d07898cc62094.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jen Kamoun,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jen Kamoun,ou=Administrative,dc=bitwarden,dc=com", - email: "KamounJ@f7e815f56fc1472f8f953f85688ba7a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Daisi Rabjohn,ou=Product Testing,dc=bitwarden,dc=com", - email: "RabjohnD@b96d42e36dbf45089ca1b6d523eba92e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zitella Paylor,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Zitella Paylor,ou=Administrative,dc=bitwarden,dc=com", - email: "PaylorZ@04570161b7ed42e28c63e5ce9c0aa4a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Logan Blaylock,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Logan Blaylock,ou=Product Testing,dc=bitwarden,dc=com", - email: "BlaylocL@2699c3099b704f2ba70219415c473196.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merunix Walkley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Merunix Walkley,ou=Human Resources,dc=bitwarden,dc=com", - email: "WalkleyM@2ddbcfc2fdd94fdaa7f9feba31236675.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=DiaEdin Plssup,ou=Administrative,dc=bitwarden,dc=com", - email: "PlssupD@f5e50d6b794248c497f1edc0acd0a4d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaja Runkel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kaja Runkel,ou=Administrative,dc=bitwarden,dc=com", - email: "RunkelK@2818571517744716a1e0f70eed1d8ffd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leia Samuel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Leia Samuel,ou=Janitorial,dc=bitwarden,dc=com", - email: "SamuelL@9eff12629cf040fd91abde8fb9ba1a1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catha Matsunaga,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Catha Matsunaga,ou=Product Development,dc=bitwarden,dc=com", - email: "MatsunaC@a0698e6e756a42f28ea2d90c4b303b9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jolynn Delorenzi,ou=Administrative,dc=bitwarden,dc=com", - email: "DelorenJ@6612035362774dc39b65e2c45a86df3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luc Harless,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Luc Harless,ou=Human Resources,dc=bitwarden,dc=com", - email: "HarlessL@a3cc15e6ac3a471cb783c4563846998f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katja Firtos,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Katja Firtos,ou=Human Resources,dc=bitwarden,dc=com", - email: "FirtosK@f115ded519524610ab74393c6ce8cdfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vikki Ewasyshyn,ou=Peons,dc=bitwarden,dc=com", - email: "EwasyshV@5e62af5b40314ecea84813300a46dd77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mechelle Khawar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mechelle Khawar,ou=Product Development,dc=bitwarden,dc=com", - email: "KhawarM@1339c7fc80324a9f9d6a9b7e7dc59ef3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bawn Gdowik,ou=Human Resources,dc=bitwarden,dc=com", - email: "GdowikB@34211993f6a54dc18f00a71a05d87998.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Channa Abernethy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Channa Abernethy,ou=Janitorial,dc=bitwarden,dc=com", - email: "AbernetC@f397541d0e814623b745c4fbd77b1a79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benita Lathrop,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Benita Lathrop,ou=Management,dc=bitwarden,dc=com", - email: "LathropB@186cf3c7f45744c0827699c22d51d565.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zelda Naem,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zelda Naem,ou=Janitorial,dc=bitwarden,dc=com", - email: "NaemZ@eb362d3928c448a4b72d63b85283da63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettina Kudas,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bettina Kudas,ou=Management,dc=bitwarden,dc=com", - email: "KudasB@4a562374ace845b8b062489d81f91f68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettye Stern,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bettye Stern,ou=Payroll,dc=bitwarden,dc=com", - email: "SternB@67c2a7396dd34122b1f16e12b22a71ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lexine Aurelius,ou=Janitorial,dc=bitwarden,dc=com", - email: "AureliuL@532585f196ca4cccb80b4aa643b1dccd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janice Mattes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Janice Mattes,ou=Management,dc=bitwarden,dc=com", - email: "MattesJ@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Indiana Cobo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Indiana Cobo,ou=Human Resources,dc=bitwarden,dc=com", - email: "CoboI@a951d7743a6642c2b51879514b5ca776.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lan Galbraith,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lan Galbraith,ou=Janitorial,dc=bitwarden,dc=com", - email: "GalbraiL@9b332776dd7c411abb2f40983aa8e189.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joey Godcharles,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Joey Godcharles,ou=Management,dc=bitwarden,dc=com", - email: "GodcharJ@8c25af5fe5974fca953506b7d4eacda2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anastasia Sunstrum,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anastasia Sunstrum,ou=Management,dc=bitwarden,dc=com", - email: "SunstruA@5bf40bf9784b4bb1b69d85ef3b145a7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyan Reller,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dyan Reller,ou=Product Testing,dc=bitwarden,dc=com", - email: "RellerD@663a5be72ae949e89d0ecc1766eaf211.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yih DeCecco,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yih DeCecco,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeCeccoY@167b62c26a954f76bb6e985cad7eded6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leese Paul,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leese Paul,ou=Payroll,dc=bitwarden,dc=com", - email: "PaulL@084896222f8c4b7eae30f7297ef0556c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nani Dedas,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nani Dedas,ou=Payroll,dc=bitwarden,dc=com", - email: "DedasN@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Survey Lanzkron,ou=Janitorial,dc=bitwarden,dc=com", - email: "LanzkroS@c7313b08ac43436397b7d1757040a613.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sari Rettie,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sari Rettie,ou=Product Testing,dc=bitwarden,dc=com", - email: "RettieS@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Etty Lowther,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Etty Lowther,ou=Product Testing,dc=bitwarden,dc=com", - email: "LowtherE@5c906f42508445a781fade8bd577e2f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toss Basa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Toss Basa,ou=Payroll,dc=bitwarden,dc=com", - email: "BasaT@04b4f27ec2ac43be97552612edca5a77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naohiko Fradette,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Naohiko Fradette,ou=Administrative,dc=bitwarden,dc=com", - email: "FradettN@e8492435966a4ed884337f2807856c41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Veradis Loadbuild,ou=Human Resources,dc=bitwarden,dc=com", - email: "LoadbuiV@2d0e71959712498892398e30a50d5bec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mathew Rodkey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mathew Rodkey,ou=Peons,dc=bitwarden,dc=com", - email: "RodkeyM@49f96debcda94fc6baf356990b14b103.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherry Maness,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sherry Maness,ou=Janitorial,dc=bitwarden,dc=com", - email: "ManessS@e58493f3b9184086b499252afcbae6a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lowell Barentsen,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarentsL@9ef3979acd57459c854aa3907f13053a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gabbey Constantinides,ou=Product Testing,dc=bitwarden,dc=com", - email: "ConstanG@bcfbfd5ee6b14185b04773704662d3e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delphinia Brehm,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Delphinia Brehm,ou=Product Development,dc=bitwarden,dc=com", - email: "BrehmD@d3f27a242bfb4ac3a10d62c1f67cde29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roselin Payn,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Roselin Payn,ou=Human Resources,dc=bitwarden,dc=com", - email: "PaynR@8b4e205f7cd04cdf9570b14ba9584f1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arline Fryer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Arline Fryer,ou=Management,dc=bitwarden,dc=com", - email: "FryerA@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Piper Lesperance,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Piper Lesperance,ou=Peons,dc=bitwarden,dc=com", - email: "LesperaP@a2ea301b88434726b194e4c9303a1849.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mindy Herring,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mindy Herring,ou=Administrative,dc=bitwarden,dc=com", - email: "HerringM@75ca8d39c50647a3bea983d4fa29d680.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chandrakant Rodely,ou=Janitorial,dc=bitwarden,dc=com", - email: "RodelyC@ca829dfd11e64b2594b0329b3f25132e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vonnie Bullard,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vonnie Bullard,ou=Peons,dc=bitwarden,dc=com", - email: "BullardV@13739ed68fac456bb1c36df8aacf938b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lotti Gutcher,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lotti Gutcher,ou=Product Development,dc=bitwarden,dc=com", - email: "GutcherL@f60373f986824ff5b24230896655c1d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheldon Overton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sheldon Overton,ou=Product Development,dc=bitwarden,dc=com", - email: "OvertonS@f46633fbb9a14011a26194c56d6fd793.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celestine Zargham,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Celestine Zargham,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZarghamC@7e7373daa08d4a3b834f2e415978d199.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marv Regier,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marv Regier,ou=Product Development,dc=bitwarden,dc=com", - email: "RegierM@abdd973e03c84ced8f6317d8b973d650.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teddi Behler,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Teddi Behler,ou=Administrative,dc=bitwarden,dc=com", - email: "BehlerT@f2b2c2d7db06460ba37d008fa1436774.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pascale Lawrie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pascale Lawrie,ou=Payroll,dc=bitwarden,dc=com", - email: "LawrieP@7a73ebe249a24a008fa58af0c16c0578.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Barnes Sysadmin,ou=Payroll,dc=bitwarden,dc=com", - email: "SysadmiB@822da1d370d045aaadf5490626c311f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Class Focht,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Class Focht,ou=Human Resources,dc=bitwarden,dc=com", - email: "FochtC@cdc522ed20cd44a189467c4e7a11e69b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonida Raha,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leonida Raha,ou=Management,dc=bitwarden,dc=com", - email: "RahaL@a7dde2ed9345430eab1db4c18ae1be2c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Emylee BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", - email: "BaggermE@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ree Goodier,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ree Goodier,ou=Product Development,dc=bitwarden,dc=com", - email: "GoodierR@64b7c8578355450790f3fb63c15436b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wally Hlauschek,ou=Product Testing,dc=bitwarden,dc=com", - email: "HlauschW@ab148181beff4ed0bd2db4ce8fd9f720.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raj Mahlig,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Raj Mahlig,ou=Peons,dc=bitwarden,dc=com", - email: "MahligR@47682bc47a784ad6a0b0eb19fb2f6567.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nobutaka Merinder,ou=Janitorial,dc=bitwarden,dc=com", - email: "MerindeN@ab64d8db9da04b27bba1bfcb5bef47a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruchel Jobs,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ruchel Jobs,ou=Management,dc=bitwarden,dc=com", - email: "JobsR@5086e8ad642d4bbd8705f06e9ddda989.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Georgena Zaloker,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZalokerG@95fa7f3851674364944296f3d3c2378d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fanchette Wittich,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fanchette Wittich,ou=Administrative,dc=bitwarden,dc=com", - email: "WittichF@abdd973e03c84ced8f6317d8b973d650.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorie Boucher,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorie Boucher,ou=Peons,dc=bitwarden,dc=com", - email: "BoucherL@459e2f62db0c40d5b3c7b2d6945ef874.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MingChang Presner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=MingChang Presner,ou=Human Resources,dc=bitwarden,dc=com", - email: "PresnerM@144f4bf7b2a54773b3cf6bc1af396542.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dierdre Rehel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dierdre Rehel,ou=Administrative,dc=bitwarden,dc=com", - email: "RehelD@1a43b4fd45d14eebb3f3365f12f4390c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ulrica Benda,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ulrica Benda,ou=Administrative,dc=bitwarden,dc=com", - email: "BendaU@d9da444c24af403dad834f9973048314.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brechtje Revah,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Brechtje Revah,ou=Human Resources,dc=bitwarden,dc=com", - email: "RevahB@753cc3c48ad24183b60cde608a41edda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Howden Hoxie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Howden Hoxie,ou=Management,dc=bitwarden,dc=com", - email: "HoxieH@40992f2ace8d43a59f800186f855c626.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjory Hardin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marjory Hardin,ou=Management,dc=bitwarden,dc=com", - email: "HardinM@b7be2bf29b064b349a27848f01a085d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kac Geuder,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kac Geuder,ou=Product Testing,dc=bitwarden,dc=com", - email: "GeuderK@8b6590e2256543d7b3730d478ab0e5e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Antonia MacElwee,ou=Product Testing,dc=bitwarden,dc=com", - email: "MacElweA@e56c19ec1c2c428ba6d15f1ddf8804fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Derrick Moynihan,ou=Janitorial,dc=bitwarden,dc=com", - email: "MoynihaD@57e1662648e94370b63269dae2e89f73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aurel Iacovo,ou=Janitorial,dc=bitwarden,dc=com", - email: "IacovoA@99efb52676a5438d8f4dfeb830e52009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Conchita Borek,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Conchita Borek,ou=Human Resources,dc=bitwarden,dc=com", - email: "BorekC@c1da23a059a74c3d8ae1ac9edb4d3eea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carter Billard,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Carter Billard,ou=Peons,dc=bitwarden,dc=com", - email: "BillardC@cba87d0d73a2419787e0432699089510.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alison Culberson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alison Culberson,ou=Management,dc=bitwarden,dc=com", - email: "CulbersA@86c55960d45747ecb5afd7997d576a89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dev Lynham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dev Lynham,ou=Product Testing,dc=bitwarden,dc=com", - email: "LynhamD@4d2b6aeb52944f46890dd70951e65aa3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucie Longhenry,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lucie Longhenry,ou=Product Development,dc=bitwarden,dc=com", - email: "LonghenL@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Somsak Breault,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Somsak Breault,ou=Administrative,dc=bitwarden,dc=com", - email: "BreaultS@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regina Astor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Regina Astor,ou=Peons,dc=bitwarden,dc=com", - email: "AstorR@30db69640fb048128840ef2fb85c3577.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idalia Krauel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Idalia Krauel,ou=Payroll,dc=bitwarden,dc=com", - email: "KrauelI@8225e046db804e04b9a2cde5ffe23088.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bnrtor Tadevich,ou=Human Resources,dc=bitwarden,dc=com", - email: "TadevicB@332c34f573ad4ec89381a4995815cc7e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lolly Mattson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lolly Mattson,ou=Payroll,dc=bitwarden,dc=com", - email: "MattsonL@039ec15b8547455eb4745e09f294d624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corinna Jesshope,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Corinna Jesshope,ou=Administrative,dc=bitwarden,dc=com", - email: "JesshopC@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guinevere Bower,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Guinevere Bower,ou=Product Development,dc=bitwarden,dc=com", - email: "BowerG@1c2297c1716444ad8e93762f014c7f67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vivienne Feutlinske,ou=Product Development,dc=bitwarden,dc=com", - email: "FeutlinV@dac9dfd573ee4f928ec9aa0996157f6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frederic Kemish,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Frederic Kemish,ou=Payroll,dc=bitwarden,dc=com", - email: "KemishF@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barb Mandel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Barb Mandel,ou=Product Development,dc=bitwarden,dc=com", - email: "MandelB@123afab4d4de40e09319189089980d97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rochell Muise,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rochell Muise,ou=Management,dc=bitwarden,dc=com", - email: "MuiseR@d0510c6d4d2248279a5b0899ea306017.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thea Atteridge,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Thea Atteridge,ou=Administrative,dc=bitwarden,dc=com", - email: "AtteridT@a6ca114df8334b8bba40f6036dd95ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theressa Marks,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Theressa Marks,ou=Management,dc=bitwarden,dc=com", - email: "MarksT@4c1c5169ce594a0e842e898138488cd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agna Ntelpac,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Agna Ntelpac,ou=Peons,dc=bitwarden,dc=com", - email: "NtelpacA@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peder Grewal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Peder Grewal,ou=Peons,dc=bitwarden,dc=com", - email: "GrewalP@f20cdd91b77c4fa1af532b2ee7f13b4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melony Nahas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Melony Nahas,ou=Human Resources,dc=bitwarden,dc=com", - email: "NahasM@8d84473559264c6592d3bbcbad962447.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ileana Ude,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ileana Ude,ou=Peons,dc=bitwarden,dc=com", - email: "UdeI@3862de637e0345d9b2a1837a52d0c5b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sofeya Khosravi,ou=Administrative,dc=bitwarden,dc=com", - email: "KhosravS@f4f79ae5585f4229b44ed35d134a2fdc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fscocos Azari,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fscocos Azari,ou=Payroll,dc=bitwarden,dc=com", - email: "AzariF@a8f7a07ce7504ae4bfde0cfae682a40b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charmaine Rahmany,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Charmaine Rahmany,ou=Peons,dc=bitwarden,dc=com", - email: "RahmanyC@37f4b24424844e629b19d1ee55799aa3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ayn Odum,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ayn Odum,ou=Human Resources,dc=bitwarden,dc=com", - email: "OdumA@65523206681c4c868fd2bcf7f70e47c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annmaria LHeureux,ou=Administrative,dc=bitwarden,dc=com", - email: "LHeureuA@bf23af50aea94f99aca4c696a7e766ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norm Berrisford,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Norm Berrisford,ou=Peons,dc=bitwarden,dc=com", - email: "BerrisfN@32ce2ca229594ba68651edf24232f002.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elly Nagarur,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Elly Nagarur,ou=Product Development,dc=bitwarden,dc=com", - email: "NagarurE@0179b4952dc54ba39e1bba2996936e9f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sibley Sprunger,ou=Human Resources,dc=bitwarden,dc=com", - email: "SprungeS@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenette Sandness,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lenette Sandness,ou=Management,dc=bitwarden,dc=com", - email: "SandnesL@c8261f605fed4bb494dcc3af9b18f70f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emyle Fuqua,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Emyle Fuqua,ou=Management,dc=bitwarden,dc=com", - email: "FuquaE@ab34f7a574c74b59a12477bad26d03c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alejandra Saungikar,ou=Janitorial,dc=bitwarden,dc=com", - email: "SaungikA@377af438e28144f198471c633c478745.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elysia McDuffie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elysia McDuffie,ou=Payroll,dc=bitwarden,dc=com", - email: "McDuffiE@98febd962501443b89a9e8bfacf12a9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorilee Projects,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorilee Projects,ou=Human Resources,dc=bitwarden,dc=com", - email: "ProjectL@4b0a9ffaaeec4cc3ae5daf192d65fc6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Helenka Herlihy,ou=Human Resources,dc=bitwarden,dc=com", - email: "HerlihyH@9e3b275453fb4081a04ee8dbb4f6bd0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amalee Borg,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Amalee Borg,ou=Human Resources,dc=bitwarden,dc=com", - email: "BorgA@62d6b52263d643d2a05493b576aca6a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gerrit Witkowski,ou=Administrative,dc=bitwarden,dc=com", - email: "WitkowsG@3876f00a01cc4c9cadffa2031adb446a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhHung McAdams,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ThanhHung McAdams,ou=Management,dc=bitwarden,dc=com", - email: "McAdamsT@d7b344ca45cd4c63b54c502d92e2c5d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessa Simmons,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jessa Simmons,ou=Human Resources,dc=bitwarden,dc=com", - email: "SimmonsJ@a923c3e154c74115a9ff0fe18985dc09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Timothea Culverhouse,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Timothea Culverhouse,ou=Peons,dc=bitwarden,dc=com", - email: "CulverhT@01debeaa74ed4916a69ca3761e5ab388.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorice Op,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dorice Op,ou=Management,dc=bitwarden,dc=com", - email: "OpD@3e32ccd0c8a847b6ac8fb9c09f485fe3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estrellita Haney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Estrellita Haney,ou=Administrative,dc=bitwarden,dc=com", - email: "HaneyE@89e4e0e6aba5481cb5a471d8c425e9ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kuldip Rabenstein,ou=Human Resources,dc=bitwarden,dc=com", - email: "RabenstK@c40623c8d9ac4757937cfee44c180e7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maddalena Hammermeister,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maddalena Hammermeister,ou=Management,dc=bitwarden,dc=com", - email: "HammermM@8f4b2d337f4f4418a987619b5765155d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alfonso Benyon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Alfonso Benyon,ou=Payroll,dc=bitwarden,dc=com", - email: "BenyonA@f72cf2b3454841e499da566c9feae899.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dorisa Lanteigne,ou=Peons,dc=bitwarden,dc=com", - email: "LanteigD@9524e5fbf8844145b5c00986d16d8376.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=GeeMeng Simonsen,ou=Product Development,dc=bitwarden,dc=com", - email: "SimonseG@7edf6527f6ba409aa280a1bd0cd976a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alfy McBroom,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alfy McBroom,ou=Administrative,dc=bitwarden,dc=com", - email: "McBroomA@3cf8abc9393b4308ab07b683b0ddf523.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fina Hoctor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fina Hoctor,ou=Peons,dc=bitwarden,dc=com", - email: "HoctorF@bf91192220a74764b99bec46e53e3350.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardene Cuu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ardene Cuu,ou=Product Testing,dc=bitwarden,dc=com", - email: "CuuA@f7752e330a264f1884c22f0f347f41b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gajendra Trinh,ou=Janitorial,dc=bitwarden,dc=com", - email: "TrinhG@63d9ff681cbd4332bc60e641ac986747.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristie Madani,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cristie Madani,ou=Peons,dc=bitwarden,dc=com", - email: "MadaniC@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephane Zorzi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stephane Zorzi,ou=Management,dc=bitwarden,dc=com", - email: "ZorziS@883a827472584ea8ab8edcc535c72169.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellen Kruusement,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ellen Kruusement,ou=Administrative,dc=bitwarden,dc=com", - email: "KruusemE@5b737a4d09c2499f8798a895b59012b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tianbao Homonick,ou=Janitorial,dc=bitwarden,dc=com", - email: "HomonicT@a1c59eb0876b440cad715bc7a625284c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arnie Vickers,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Arnie Vickers,ou=Janitorial,dc=bitwarden,dc=com", - email: "VickersA@d1aff07ca59844dcbbf406f0fc775f82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tak Kuhlkamp,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tak Kuhlkamp,ou=Management,dc=bitwarden,dc=com", - email: "KuhlkamT@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linet Gartshore,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Linet Gartshore,ou=Janitorial,dc=bitwarden,dc=com", - email: "GartshoL@4d29dc852c7e4d5a81edcd4807f79169.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dina Satta,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dina Satta,ou=Product Development,dc=bitwarden,dc=com", - email: "SattaD@eaed65d5c2954ae7b76835d57d5da55f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candis Bothwell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Candis Bothwell,ou=Janitorial,dc=bitwarden,dc=com", - email: "BothwelC@cc252680b96a4999bccdcb3df4f9a7ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphene Minck,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Daphene Minck,ou=Administrative,dc=bitwarden,dc=com", - email: "MinckD@811a3e44246748c98e3bda8ba1579d34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adan Duncan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Adan Duncan,ou=Administrative,dc=bitwarden,dc=com", - email: "DuncanA@a7445c22136445feb44e85392464b31c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willa Trisko,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Willa Trisko,ou=Product Testing,dc=bitwarden,dc=com", - email: "TriskoW@2af8061425ae493eb62ca1242598b59b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jessamine Boisseau,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoisseaJ@2ad21f67126841ddab38e6a0de0bbf55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katalin Totten,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Katalin Totten,ou=Human Resources,dc=bitwarden,dc=com", - email: "TottenK@d5293c91bc7840f0948a89a10840461e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bonni Mastronardi,ou=Human Resources,dc=bitwarden,dc=com", - email: "MastronB@3d73d44a83034f7492ad5f7b28f5be7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=CostasDinos Labrador,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=CostasDinos Labrador,ou=Management,dc=bitwarden,dc=com", - email: "LabradoC@9204194a2da94dc0b82d2268bcb1f7fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrzej Coulman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Andrzej Coulman,ou=Peons,dc=bitwarden,dc=com", - email: "CoulmanA@ee31a32bc4dc4dfc9c3e0d1edb9f7ccb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheryl Perrin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sheryl Perrin,ou=Peons,dc=bitwarden,dc=com", - email: "PerrinS@32f4159b3c3143c5bb4ec812d9ad7150.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emma Mullaney,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Emma Mullaney,ou=Management,dc=bitwarden,dc=com", - email: "MullaneE@91cbd6d172d049aa810e0a17e3a01178.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Son Beneda,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Son Beneda,ou=Janitorial,dc=bitwarden,dc=com", - email: "BenedaS@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grey Mathis,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Grey Mathis,ou=Management,dc=bitwarden,dc=com", - email: "MathisG@a199f75806e043a29f88f2704ef795cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Briney McReady,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Briney McReady,ou=Human Resources,dc=bitwarden,dc=com", - email: "McReadyB@39f08fc1ca40404b8801837822a1c019.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bernhard Brickman,ou=Human Resources,dc=bitwarden,dc=com", - email: "BrickmaB@0dfd1c2a9e584308b69f05d708033865.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tiphanie Networkroom,ou=Payroll,dc=bitwarden,dc=com", - email: "NetworkT@28fca843a5ae4175b7bbc20728951453.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erle Gravitt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Erle Gravitt,ou=Product Testing,dc=bitwarden,dc=com", - email: "GravittE@203540604c5b4cbe8d3ddb3137f9e7ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jewel Watchmaker,ou=Human Resources,dc=bitwarden,dc=com", - email: "WatchmaJ@fe07c8e421ca4cd7b23c9c2c841a5e93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tresrch Valko,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tresrch Valko,ou=Management,dc=bitwarden,dc=com", - email: "ValkoT@ebf0dcbeda274c399a35e80b52ead9c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherey Braginetz,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cherey Braginetz,ou=Management,dc=bitwarden,dc=com", - email: "BragineC@d753979fad154486ac459615561fae04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annadiane Kok,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Annadiane Kok,ou=Payroll,dc=bitwarden,dc=com", - email: "KokA@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ozay Dulin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ozay Dulin,ou=Management,dc=bitwarden,dc=com", - email: "DulinO@6d6cd5a839c849eb98fcaf40d89c77e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avtar Markle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Avtar Markle,ou=Human Resources,dc=bitwarden,dc=com", - email: "MarkleA@bf9ca547b016429e8b1013b51e16d909.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mahshad Bachecongi,ou=Payroll,dc=bitwarden,dc=com", - email: "BachecoM@0fd4dc879e87454189121973304c8184.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rodi Pettinger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rodi Pettinger,ou=Payroll,dc=bitwarden,dc=com", - email: "PettingR@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anett Gach,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anett Gach,ou=Management,dc=bitwarden,dc=com", - email: "GachA@753cc3c48ad24183b60cde608a41edda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Golda Hanington,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Golda Hanington,ou=Janitorial,dc=bitwarden,dc=com", - email: "HaningtG@72dcb42620634cf59fa336b64a03ee7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Xiaomei Silieff,ou=Janitorial,dc=bitwarden,dc=com", - email: "SilieffX@726ecb5497c547bd9a98886468705226.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlyne Shein,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marlyne Shein,ou=Janitorial,dc=bitwarden,dc=com", - email: "SheinM@9135ac12963a4f24b390086599e22c6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doortje Kennedy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Doortje Kennedy,ou=Payroll,dc=bitwarden,dc=com", - email: "KennedyD@c4980ee808ce471c9fa1c01e63ff6d49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacenta Pufpaff,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jacenta Pufpaff,ou=Management,dc=bitwarden,dc=com", - email: "PufpaffJ@7cddbe59bf50457dab82b34532e65c48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirit Steede,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kirit Steede,ou=Product Testing,dc=bitwarden,dc=com", - email: "SteedeK@e04a5587d2ec44048c4ba8ec3bd3bbfb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Declan McQuaig,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Declan McQuaig,ou=Payroll,dc=bitwarden,dc=com", - email: "McQuaigD@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fairy Soyster,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fairy Soyster,ou=Administrative,dc=bitwarden,dc=com", - email: "SoysterF@4f18c35149c4458281415f92a8183767.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yovonnda Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", - email: "HempinsY@7a5a7925311246c29caba8271a6bbf7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shashi Vitaglian,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shashi Vitaglian,ou=Management,dc=bitwarden,dc=com", - email: "VitagliS@3a233bee8d41491582f971c2a34ef527.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henri Challice,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Henri Challice,ou=Peons,dc=bitwarden,dc=com", - email: "ChallicH@e646f2536f984f3baa2b805d03bb59c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moreen CSR,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Moreen CSR,ou=Human Resources,dc=bitwarden,dc=com", - email: "CSRM@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geralene Sabri,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Geralene Sabri,ou=Payroll,dc=bitwarden,dc=com", - email: "SabriG@34e650ed4f054ffe9f07e59b82b133e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melhem Sherrer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Melhem Sherrer,ou=Product Development,dc=bitwarden,dc=com", - email: "SherrerM@4da7d564972d46f2924a6a8ae018f420.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coors Lavarnway,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Coors Lavarnway,ou=Product Development,dc=bitwarden,dc=com", - email: "LavarnwC@708a672c33064628b91c3dd2fa37a575.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perrine Kursell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Perrine Kursell,ou=Product Testing,dc=bitwarden,dc=com", - email: "KursellP@aff14874002145038419ccad7efa4aff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alane Lou,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alane Lou,ou=Management,dc=bitwarden,dc=com", - email: "LouA@4b435cef82e14b3699af7f4cf8872441.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wilhelmine Townsel,ou=Janitorial,dc=bitwarden,dc=com", - email: "TownselW@b3769d1b6e45429ebcc1ae937a2749cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Demet Ince,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Demet Ince,ou=Janitorial,dc=bitwarden,dc=com", - email: "InceD@da0493d79258465a92f6929fa5f9ec32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bev Lineham,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bev Lineham,ou=Payroll,dc=bitwarden,dc=com", - email: "LinehamB@943ab680cb9b4c9d8805dc06118922e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corinna Thorson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Corinna Thorson,ou=Payroll,dc=bitwarden,dc=com", - email: "ThorsonC@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daniela Rizk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Daniela Rizk,ou=Administrative,dc=bitwarden,dc=com", - email: "RizkD@d4562d1fe07448ba9965c2be7e88f80e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Darcie Oskorep,ou=Janitorial,dc=bitwarden,dc=com", - email: "OskorepD@d809403fc3704b2d9d3f57b70ad276fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mentor Endsley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mentor Endsley,ou=Janitorial,dc=bitwarden,dc=com", - email: "EndsleyM@339dae1666c141369c4355c1dbcfe99d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PeyKee Rusin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=PeyKee Rusin,ou=Payroll,dc=bitwarden,dc=com", - email: "RusinP@e164bbc73c0249c881dbd1db3dd138b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wojciech Zorony,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Wojciech Zorony,ou=Peons,dc=bitwarden,dc=com", - email: "ZoronyW@e2e6ff31723a4db1a62b945f5410fadf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juliane Lafata,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Juliane Lafata,ou=Janitorial,dc=bitwarden,dc=com", - email: "LafataJ@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Oguz Mombourquette,ou=Administrative,dc=bitwarden,dc=com", - email: "MombourO@95a1ee6b5b3f4c268b18ee946c8c10a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Buck Willoughby,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Buck Willoughby,ou=Janitorial,dc=bitwarden,dc=com", - email: "WillougB@a0d2b79a81564204acbc37b6b6efdfe4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atsushi Bible,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Atsushi Bible,ou=Administrative,dc=bitwarden,dc=com", - email: "BibleA@c91b2ddabda245189089b8e227b823b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veen Graibe,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Veen Graibe,ou=Administrative,dc=bitwarden,dc=com", - email: "GraibeV@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ginnie Mandeville,ou=Human Resources,dc=bitwarden,dc=com", - email: "MandeviG@94769a3591824a7c91ce0e683601c159.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juli Poe,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Juli Poe,ou=Management,dc=bitwarden,dc=com", - email: "PoeJ@121756f8b87b4a8eac937b954ab1cbe2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keys Foos,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Keys Foos,ou=Product Development,dc=bitwarden,dc=com", - email: "FoosK@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanneke Weil,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hanneke Weil,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeilH@d375d17b83f44fc4be3924ad0f54b388.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=MichaelMorgan Nassoy,ou=Product Development,dc=bitwarden,dc=com", - email: "NassoyM@b5bcc4ce776e4805ab4216703177730e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Narrima Kaplan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Narrima Kaplan,ou=Administrative,dc=bitwarden,dc=com", - email: "KaplanN@3340c10fa973435198296f285f1bf380.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nellie Guth,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nellie Guth,ou=Administrative,dc=bitwarden,dc=com", - email: "GuthN@acd4caa886454500972e2351b4443a5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ermengarde Swact,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ermengarde Swact,ou=Payroll,dc=bitwarden,dc=com", - email: "SwactE@5ae024a345a94b5090f63e27d57061d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmelo Holley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carmelo Holley,ou=Janitorial,dc=bitwarden,dc=com", - email: "HolleyC@2a01d36814a04a9ebc13810183a6b11d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Virgie Ensign,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Virgie Ensign,ou=Janitorial,dc=bitwarden,dc=com", - email: "EnsignV@6af59491c5a74fddb4c99c2f4eaecac5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vittorio Msg,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vittorio Msg,ou=Administrative,dc=bitwarden,dc=com", - email: "MsgV@683e25fc9db544c199938de64838b325.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ragui Radford,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ragui Radford,ou=Management,dc=bitwarden,dc=com", - email: "RadfordR@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lusa Wokoma,ou=Product Testing,dc=bitwarden,dc=com", - email: "WokomaL@b750d8129f2b4a6388d0065112d46a75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amalia Giertych,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Amalia Giertych,ou=Janitorial,dc=bitwarden,dc=com", - email: "GiertycA@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bert McDougall,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bert McDougall,ou=Peons,dc=bitwarden,dc=com", - email: "McDougaB@6b490fc40c68440ca61573fe5b83533b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherida Behlen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cherida Behlen,ou=Human Resources,dc=bitwarden,dc=com", - email: "BehlenC@e209292ce8494e20a17431a0c16ad1ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willa Brandsen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Willa Brandsen,ou=Payroll,dc=bitwarden,dc=com", - email: "BrandseW@9b8cc74fde31459a93e65b46f65c8533.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nancey Piggott,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nancey Piggott,ou=Payroll,dc=bitwarden,dc=com", - email: "PiggottN@5c7aa17839c348428d1ed0e06a9b190a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bui Potesta,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bui Potesta,ou=Administrative,dc=bitwarden,dc=com", - email: "PotestaB@a5557159c1c14e57b5492ca45de2de58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wilfred Kenyon,ou=Human Resources,dc=bitwarden,dc=com", - email: "KenyonW@7a69f72bb5b04c0ba3a5c02cbe85a1be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Korney NolanMoore,ou=Human Resources,dc=bitwarden,dc=com", - email: "NolanMoK@b8b19224acee46229ad2985e549b9721.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivo Dobbs,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ivo Dobbs,ou=Payroll,dc=bitwarden,dc=com", - email: "DobbsI@6db077c0ab9b46b8abf59e4daca54e6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigitta Maskell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brigitta Maskell,ou=Peons,dc=bitwarden,dc=com", - email: "MaskellB@35f9e0ae24c24ec3baa413620b2b7eb4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kizzee Flickinger,ou=Administrative,dc=bitwarden,dc=com", - email: "FlickinK@a1ff5ce57b0d4a5ab92e5a7972b3c4b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nong Polashock,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nong Polashock,ou=Product Testing,dc=bitwarden,dc=com", - email: "PolashoN@ec1ddd180ec346c9ac4e8ff1fbae4cee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rozanne Cobbold,ou=Product Testing,dc=bitwarden,dc=com", - email: "CobboldR@07b1787368a34e789ce994f0c32f4345.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Leendert Beaulieu,ou=Product Testing,dc=bitwarden,dc=com", - email: "BeaulieL@c2a256a75eaf4a37b7136ba6b0518b6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gisele Forbes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gisele Forbes,ou=Product Testing,dc=bitwarden,dc=com", - email: "ForbesG@232786cf6be745b08d532519f75fd65e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beverly Chaintreuil,ou=Administrative,dc=bitwarden,dc=com", - email: "ChaintrB@75be32b1be62419e90c08307d5bdff60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madonna Sheu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Madonna Sheu,ou=Management,dc=bitwarden,dc=com", - email: "SheuM@5466c54e889b4267baf9470fe7add9b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dzung Evans,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dzung Evans,ou=Human Resources,dc=bitwarden,dc=com", - email: "EvansD@ca8f4832ccb34eecb660b444c29c036c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermione Delf,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hermione Delf,ou=Product Development,dc=bitwarden,dc=com", - email: "DelfH@2b27acc969e94cf2aa1e0ddf34189475.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Somsak Dansereau,ou=Product Testing,dc=bitwarden,dc=com", - email: "DansereS@181e7c5d669f48eca80875ae007e40bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koray Deleon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Koray Deleon,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeleonK@46baf5a1236843538b25328b706d56d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Korie Swinks,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Korie Swinks,ou=Janitorial,dc=bitwarden,dc=com", - email: "SwinksK@abac4d1589c04140a0e454484535ad15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wynnie Joyce,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Wynnie Joyce,ou=Peons,dc=bitwarden,dc=com", - email: "JoyceW@f48984d7e7db42f4891e864fa2c4158a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teetwo Jarman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Teetwo Jarman,ou=Management,dc=bitwarden,dc=com", - email: "JarmanT@5fc1a3cb7d794193b94e35fbd63bc6e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flss Daquano,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Flss Daquano,ou=Product Testing,dc=bitwarden,dc=com", - email: "DaquanoF@f9f1d010b27b497284c7d10a3ee24be1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doc Frederick,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Doc Frederick,ou=Human Resources,dc=bitwarden,dc=com", - email: "FrederiD@910237fae0394e20b1bd8e8be3e49be6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hellmut Harrod,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hellmut Harrod,ou=Product Development,dc=bitwarden,dc=com", - email: "HarrodH@a5a91129e0ba4691a9ff41395fb1c999.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelcie Uchida,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kelcie Uchida,ou=Product Development,dc=bitwarden,dc=com", - email: "UchidaK@127f75e34fa94456a07c8ec8f332f580.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oksana Sitler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Oksana Sitler,ou=Product Development,dc=bitwarden,dc=com", - email: "SitlerO@6ce8963e36d24b6b992ec2839a5706bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vitia Dacre,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vitia Dacre,ou=Payroll,dc=bitwarden,dc=com", - email: "DacreV@dde5fb6e4b074693aad4d3211880997e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sanjoy Vella,ou=Product Testing,dc=bitwarden,dc=com", - email: "VellaS@850db1da58bd42079908c4f0bd25aebc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Housseini Jolicoeur,ou=Payroll,dc=bitwarden,dc=com", - email: "JolicoeH@193a813b90bf4054a776a2e46081339c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carly Cencier,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carly Cencier,ou=Management,dc=bitwarden,dc=com", - email: "CencierC@7673bf0b891540b586de1703874cedb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loc Sochovka,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Loc Sochovka,ou=Human Resources,dc=bitwarden,dc=com", - email: "SochovkL@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonye Lenox,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tonye Lenox,ou=Payroll,dc=bitwarden,dc=com", - email: "LenoxT@02869e10b5974489814843ac717e10a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olly Ooi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Olly Ooi,ou=Human Resources,dc=bitwarden,dc=com", - email: "OoiO@49fe706dbe7849f2b9658de63b5fdca6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margie Herman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Margie Herman,ou=Administrative,dc=bitwarden,dc=com", - email: "HermanM@26ea76142f2a4637b028d1aa71d30271.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giustina Farrington,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Giustina Farrington,ou=Payroll,dc=bitwarden,dc=com", - email: "FarringG@43156b01c6bc494fbc8570d9a5003fc5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Deane Bellehumeur,ou=Janitorial,dc=bitwarden,dc=com", - email: "BellehuD@cefc491b1b064419a5c03c35fa4c9c33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liviu Fisprod,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Liviu Fisprod,ou=Management,dc=bitwarden,dc=com", - email: "FisprodL@518da73225eb4a77959fb191daf72b49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hana JeeHowe,ou=Janitorial,dc=bitwarden,dc=com", - email: "JeeHoweH@f8b5ec3dd78f44e3bd6de92c22b0edfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alfons Toothman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Alfons Toothman,ou=Payroll,dc=bitwarden,dc=com", - email: "ToothmaA@b3c93053c0224253988d5c3b976abcae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronica Espinosa,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ronica Espinosa,ou=Administrative,dc=bitwarden,dc=com", - email: "EspinosR@9dcbe58177c3454c992be9f2bcd770bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeane Yuhanna,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jeane Yuhanna,ou=Peons,dc=bitwarden,dc=com", - email: "YuhannaJ@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulien Misutka,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Paulien Misutka,ou=Management,dc=bitwarden,dc=com", - email: "MisutkaP@1eca82e8a13846f79eca4d8e3955a909.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Humberto Azevedo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Humberto Azevedo,ou=Management,dc=bitwarden,dc=com", - email: "AzevedoH@4a455be4dbcb48b881a6e09073a3a4d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cissy Benning,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cissy Benning,ou=Administrative,dc=bitwarden,dc=com", - email: "BenningC@b1455661bd7543dbbba61526147b93a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorletha Schonberger,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchonbeL@05749581377d47ba8047ee7237ce7f83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vacman Beaudet,ou=Human Resources,dc=bitwarden,dc=com", - email: "BeaudetV@20652fd58932448b926b6d40287545d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gib Gouhara,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gib Gouhara,ou=Administrative,dc=bitwarden,dc=com", - email: "GouharaG@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ameline Ikotin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ameline Ikotin,ou=Management,dc=bitwarden,dc=com", - email: "IkotinA@5c6902554d684605823ee60bd0935275.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johanne Coloads,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Johanne Coloads,ou=Administrative,dc=bitwarden,dc=com", - email: "ColoadsJ@acd4caa886454500972e2351b4443a5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Germaine Sabri,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Germaine Sabri,ou=Management,dc=bitwarden,dc=com", - email: "SabriG@207e1d82de324f5b9c63fc14e33c9595.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Justine Gramiak,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Justine Gramiak,ou=Peons,dc=bitwarden,dc=com", - email: "GramiakJ@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selma Coxe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Selma Coxe,ou=Payroll,dc=bitwarden,dc=com", - email: "CoxeS@7336ab4f2ede4dc9a7be8d102b8fa46f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nga Hoag,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nga Hoag,ou=Janitorial,dc=bitwarden,dc=com", - email: "HoagN@759d634715d84fd98852f9030d6bb1fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=JeanPaul Bcs,ou=Janitorial,dc=bitwarden,dc=com", - email: "BcsJ@9be954e44923466fa24be9ef8ce9bc6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claudette Towers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Claudette Towers,ou=Payroll,dc=bitwarden,dc=com", - email: "TowersC@19cb9d22e4184ceea78aafbb98426e0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hala VanDenKieboom,ou=Human Resources,dc=bitwarden,dc=com", - email: "VanDenKH@edc642e0d4114142a514590d284702bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilhelmina Yardy,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wilhelmina Yardy,ou=Management,dc=bitwarden,dc=com", - email: "YardyW@03dd1842eed94795a2debd8504958a83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farooq Rosche,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Farooq Rosche,ou=Product Testing,dc=bitwarden,dc=com", - email: "RoscheF@1871a69ca6234f999f51d3a9b4eb4578.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joannie Kornachuk,ou=Administrative,dc=bitwarden,dc=com", - email: "KornachJ@d73357acec7c4a888c336fde87967132.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elyssa Schvan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elyssa Schvan,ou=Peons,dc=bitwarden,dc=com", - email: "SchvanE@52c6c82549d445678721da442aca8e53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phoenix Jims,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Phoenix Jims,ou=Human Resources,dc=bitwarden,dc=com", - email: "JimsP@c68b993f950f4e2f86efe0dfd639b00c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=ChristieAnne Klassen,ou=Product Development,dc=bitwarden,dc=com", - email: "KlassenC@1b5d8352bac64038b1e8fc921d81a384.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sosanna Flickinger,ou=Janitorial,dc=bitwarden,dc=com", - email: "FlickinS@fa9b1528fbb74720b69f2a879f936284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Guillema Allahdin,ou=Janitorial,dc=bitwarden,dc=com", - email: "AllahdiG@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melesa Kaypour,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Melesa Kaypour,ou=Product Development,dc=bitwarden,dc=com", - email: "KaypourM@cbf7358079f24e3ab0356b9f914cfc7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shoji Truelove,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shoji Truelove,ou=Janitorial,dc=bitwarden,dc=com", - email: "TruelovS@8240df43b5e045ccb33a1c30532dbedd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Turus Risto,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Turus Risto,ou=Management,dc=bitwarden,dc=com", - email: "RistoT@9d2ddb8397544898b83d629b995b3f24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Metrics Bartley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Metrics Bartley,ou=Payroll,dc=bitwarden,dc=com", - email: "BartleyM@23128e7ff9d145ae80543eb5e7da5669.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calla Floysvik,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Calla Floysvik,ou=Janitorial,dc=bitwarden,dc=com", - email: "FloysviC@a3b225e3f0d642fb9de7a9d591d3b8fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Alfonzo Bnrsport,ou=Payroll,dc=bitwarden,dc=com", - email: "BnrsporA@207f92af6bc444a9a508764b35dab916.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rakhuma Savarimuthu,ou=Janitorial,dc=bitwarden,dc=com", - email: "SavarimR@765c6bf8e6a844bd84fd3519331c09a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alparslan McAdams,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alparslan McAdams,ou=Management,dc=bitwarden,dc=com", - email: "McAdamsA@9cce2e5b95a34e48b64d619f2a9e3bd6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tej OSullivan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tej OSullivan,ou=Payroll,dc=bitwarden,dc=com", - email: "OSullivT@679bf1d9fa5d438b8807d8c8a658fd6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melly Plourde,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Melly Plourde,ou=Peons,dc=bitwarden,dc=com", - email: "PlourdeM@55d6078545ee499ab423dc186ca21695.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Heike Mendelsohn,ou=Janitorial,dc=bitwarden,dc=com", - email: "MendelsH@c88c546a41dd403183cf489cf47f2715.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ara Coules,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ara Coules,ou=Product Development,dc=bitwarden,dc=com", - email: "CoulesA@c643a761475a4a67b1e62fab24451a4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jacek Hagstrom,ou=Payroll,dc=bitwarden,dc=com", - email: "HagstroJ@77209db2428f411d91371f32d860ae4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heida Barnett,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Heida Barnett,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarnettH@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marylynne Wolski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marylynne Wolski,ou=Product Development,dc=bitwarden,dc=com", - email: "WolskiM@34211993f6a54dc18f00a71a05d87998.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mellisa Cormier,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mellisa Cormier,ou=Administrative,dc=bitwarden,dc=com", - email: "CormierM@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neely Schluter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Neely Schluter,ou=Product Development,dc=bitwarden,dc=com", - email: "SchluteN@b4cdee1243de400699df8d563680e709.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorelia Cohrs,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dorelia Cohrs,ou=Management,dc=bitwarden,dc=com", - email: "CohrsD@36e3b9c15a4246d0b9f5619fbb566424.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dede Fernald,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dede Fernald,ou=Peons,dc=bitwarden,dc=com", - email: "FernaldD@03076c5c8b8949f1af9c49c0d6d892b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Real Piitz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Real Piitz,ou=Product Testing,dc=bitwarden,dc=com", - email: "PiitzR@dab11b4d8bc0443d8cd54025f08f0682.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petunia Croteau,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Petunia Croteau,ou=Administrative,dc=bitwarden,dc=com", - email: "CroteauP@543e9d6f1baf4e398f4b35d8fd14d7df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haley Tsonos,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Haley Tsonos,ou=Product Testing,dc=bitwarden,dc=com", - email: "TsonosH@ca737191dd6c4e499a75456baacb8a74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hyacinth Hamner,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hyacinth Hamner,ou=Management,dc=bitwarden,dc=com", - email: "HamnerH@411a0caf6b524748b5bcc8d8176112b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clemence Gardiner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clemence Gardiner,ou=Peons,dc=bitwarden,dc=com", - email: "GardineC@1c31600804664edcbc5e5ccaff471cf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francine Laurich,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Francine Laurich,ou=Management,dc=bitwarden,dc=com", - email: "LaurichF@d5c6232f07e54daabb55a10963c14dea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Narrima Saucerman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Narrima Saucerman,ou=Peons,dc=bitwarden,dc=com", - email: "SaucermN@483a67de96074cb9b0b7084bfe826405.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Han Cozyn,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Han Cozyn,ou=Product Testing,dc=bitwarden,dc=com", - email: "CozynH@62eff42d0f404cf7b0b018186ba6bdb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chuck Dorr,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chuck Dorr,ou=Human Resources,dc=bitwarden,dc=com", - email: "DorrC@681d410e89ea46dbbb918431ab9e5e29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sephira Dubreck,ou=Janitorial,dc=bitwarden,dc=com", - email: "DubreckS@d2e91f960afd4021a7949b2d591d1072.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Eleonora Hutt,ou=Janitorial,dc=bitwarden,dc=com", - email: "HuttE@b8e727bc14df4a0daced5f490054e337.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andre Ashworth,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Andre Ashworth,ou=Management,dc=bitwarden,dc=com", - email: "AshwortA@ab352c8f0fb84cc3a9ed7cae538f0a71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edin Kell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Edin Kell,ou=Product Development,dc=bitwarden,dc=com", - email: "KellE@f15475096e0d43418f4b3b20f6539fb3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theresa Rendon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Theresa Rendon,ou=Peons,dc=bitwarden,dc=com", - email: "RendonT@9db63434a78e416392ae93e3976c1bfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sriranjani Atl,ou=Janitorial,dc=bitwarden,dc=com", - email: "AtlS@f33f81bcdd214dc799f298c784f94b9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacenta Byczko,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jacenta Byczko,ou=Peons,dc=bitwarden,dc=com", - email: "ByczkoJ@ee4903e98f36436eb410a6a5c9869ea3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cass Boehms,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cass Boehms,ou=Management,dc=bitwarden,dc=com", - email: "BoehmsC@9d1f7bcfce524784b93c42075dd94a6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melba Holvey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Melba Holvey,ou=Peons,dc=bitwarden,dc=com", - email: "HolveyM@1e91ce6746854cd6839980eca37c6276.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cam Tsakalis,ou=Janitorial,dc=bitwarden,dc=com", - email: "TsakaliC@a9a16c4a0f7545639cb0982e970e6363.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristofaro Beland,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cristofaro Beland,ou=Management,dc=bitwarden,dc=com", - email: "BelandC@188fd969cdd04895b43683adfa5ef7c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Monteene Mezzoiuso,ou=Administrative,dc=bitwarden,dc=com", - email: "MezzoiuM@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inam Ouzas,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Inam Ouzas,ou=Payroll,dc=bitwarden,dc=com", - email: "OuzasI@8f2fce1e0aaf45f1b91b3f64b80ef5f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Blithe Pambianchi,ou=Product Testing,dc=bitwarden,dc=com", - email: "PambianB@bbd1af679b0c4f5eb725bdbe4b2aee6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quang Austin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Quang Austin,ou=Janitorial,dc=bitwarden,dc=com", - email: "AustinQ@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kassi Ottosson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kassi Ottosson,ou=Product Development,dc=bitwarden,dc=com", - email: "OttossoK@e0ae386e8aba4e05af8962cf46a874a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christian Bradlow,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Christian Bradlow,ou=Payroll,dc=bitwarden,dc=com", - email: "BradlowC@bab890af02d045bcaf621cc90d0b2098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Azar Darnel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Azar Darnel,ou=Peons,dc=bitwarden,dc=com", - email: "DarnelA@b2518035c29e4c3b8b295e3c4a0f3c33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reza Reinboth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Reza Reinboth,ou=Janitorial,dc=bitwarden,dc=com", - email: "ReinbotR@3abf5dcbcc5646ed98709fb5a815b159.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Indira Dimitry,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Indira Dimitry,ou=Human Resources,dc=bitwarden,dc=com", - email: "DimitryI@615969db00524d14a21249f8a920880f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subhashini Freiwald,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Subhashini Freiwald,ou=Management,dc=bitwarden,dc=com", - email: "FreiwalS@be9da34bc6794b9296b1c2babbc6f1c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Izzy Metherell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Izzy Metherell,ou=Human Resources,dc=bitwarden,dc=com", - email: "MethereI@e5a8ff27d33a4796b9268d1fcb1eeeaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rivy Wojtecki,ou=Product Development,dc=bitwarden,dc=com", - email: "WojteckR@15a66c25c5f240459bbc3d55fefe3a21.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dreddy Willett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dreddy Willett,ou=Management,dc=bitwarden,dc=com", - email: "WillettD@541a9a67add74942af05ec9661f08230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avis Benham,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Avis Benham,ou=Management,dc=bitwarden,dc=com", - email: "BenhamA@8ded8bbd82ce42aeaa0782da2c17da44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilie Eva,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wilie Eva,ou=Janitorial,dc=bitwarden,dc=com", - email: "EvaW@b9fa5d9bc1554c279a35e716d782ab43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zorine OHearn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zorine OHearn,ou=Janitorial,dc=bitwarden,dc=com", - email: "OHearnZ@3d0ca046d5484a24beb101fc9ea74b59.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niek Salazar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Niek Salazar,ou=Peons,dc=bitwarden,dc=com", - email: "SalazarN@04448fada1ea4fa4b445ea9be1736993.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prabir Bachynski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Prabir Bachynski,ou=Management,dc=bitwarden,dc=com", - email: "BachynsP@33881fd6c18c4c30a4c1757346a78912.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steen Selchow,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Steen Selchow,ou=Peons,dc=bitwarden,dc=com", - email: "SelchowS@1d3f5eae43b5493f95ee42fa1458d39c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hanja VanSchyndel,ou=Peons,dc=bitwarden,dc=com", - email: "VanSchyH@b742b209006e494cbb6f8a4e0b48b884.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yannis Kowaleski,ou=Janitorial,dc=bitwarden,dc=com", - email: "KowalesY@75db88f614404021a489793ab108bedb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tessi Nagai,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tessi Nagai,ou=Payroll,dc=bitwarden,dc=com", - email: "NagaiT@dc14108a33864343abea453a90202c78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sande Lonsdale,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sande Lonsdale,ou=Administrative,dc=bitwarden,dc=com", - email: "LonsdalS@54d404ee0ed9466bae5e36b6d97997f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Euphemia Byer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Euphemia Byer,ou=Administrative,dc=bitwarden,dc=com", - email: "ByerE@6e645f68154e4e0a9f217d10cb782190.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jewell Samson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jewell Samson,ou=Management,dc=bitwarden,dc=com", - email: "SamsonJ@829d5713be204a9ab0a7f267371638c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bnrtor Turcotte,ou=Human Resources,dc=bitwarden,dc=com", - email: "TurcottB@a99084400fcf4b279e00215493abf581.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haley McMannen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Haley McMannen,ou=Payroll,dc=bitwarden,dc=com", - email: "McManneH@22471469e5a74d89b5185fdcb7a6b10d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joyous Bessette,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Joyous Bessette,ou=Product Development,dc=bitwarden,dc=com", - email: "BessettJ@0106d5b2fef44588899b233f3fe1c5e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emanuel Tupas,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Emanuel Tupas,ou=Management,dc=bitwarden,dc=com", - email: "TupasE@ddf0e3f8901347a997696359d60088c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nakina Ircmer,ou=Janitorial,dc=bitwarden,dc=com", - email: "IrcmerN@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Terrence Vasarhelyi,ou=Human Resources,dc=bitwarden,dc=com", - email: "VasarheT@b2d8dc3ab10d41babd472bab4f40b9f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Zeljko Tarasewicz,ou=Payroll,dc=bitwarden,dc=com", - email: "TarasewZ@00952e8f7e7647889172eabc088c9368.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janeczka Bautista,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Janeczka Bautista,ou=Product Development,dc=bitwarden,dc=com", - email: "BautistJ@48f6e6bce8ac404d917503a6c43988fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alf Meunier,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alf Meunier,ou=Product Development,dc=bitwarden,dc=com", - email: "MeunierA@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dena Stevenson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dena Stevenson,ou=Human Resources,dc=bitwarden,dc=com", - email: "StevensD@e9efa6e493c94e819a8af125d338efb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khalil Verch,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Khalil Verch,ou=Peons,dc=bitwarden,dc=com", - email: "VerchK@f9c0f71d487646dca3eac1c7c5deeeaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adela Rios,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Adela Rios,ou=Payroll,dc=bitwarden,dc=com", - email: "RiosA@0b870e85b4df46a89fb7255ad1447634.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roselle Sowry,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Roselle Sowry,ou=Management,dc=bitwarden,dc=com", - email: "SowryR@67f0c4cb093d45e88db73275893310b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonida Wenham,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leonida Wenham,ou=Payroll,dc=bitwarden,dc=com", - email: "WenhamL@ad261b7bb83c4b9b8809f461bc78f37f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camille Balog,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Camille Balog,ou=Peons,dc=bitwarden,dc=com", - email: "BalogC@6b282dc55aa94d768c03263feaea873d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Margaretha Stegmueller,ou=Administrative,dc=bitwarden,dc=com", - email: "StegmueM@7223d03a1da84d46925f52800fbe8b33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lona Tuttle,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lona Tuttle,ou=Payroll,dc=bitwarden,dc=com", - email: "TuttleL@2fba4efbb4b44dbe8c7dc5c682d67dce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ryszard Dack,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ryszard Dack,ou=Janitorial,dc=bitwarden,dc=com", - email: "DackR@ab43f8d0eb5a4fa69395019fc76ff8cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Anastassia Hollingsworth,ou=Product Testing,dc=bitwarden,dc=com", - email: "HollingA@063f46f6e3c34f628dc59cd54e082665.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Channa Bergeron,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Channa Bergeron,ou=Administrative,dc=bitwarden,dc=com", - email: "BergeroC@2f0ef4b1759e41b483f68723f29c3b29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lurleen Balgalvis,ou=Payroll,dc=bitwarden,dc=com", - email: "BalgalvL@44f2ec4b07a84206abba4026497fde27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Angelie Gorhum,ou=Product Testing,dc=bitwarden,dc=com", - email: "GorhumA@aad5dc78feef4ac1b9b7f52c8e200ee3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dannie Leth,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dannie Leth,ou=Human Resources,dc=bitwarden,dc=com", - email: "LethD@341c2a7aa79d4aa1aa97b332acebc155.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noell McWalters,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Noell McWalters,ou=Administrative,dc=bitwarden,dc=com", - email: "McWalteN@435172b6be714733b4c4e8a61d6bf70e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ally Viehweg,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ally Viehweg,ou=Product Testing,dc=bitwarden,dc=com", - email: "ViehwegA@080a543860d941fdbfeb0d224af903ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ranvir Ferenz,ou=Human Resources,dc=bitwarden,dc=com", - email: "FerenzR@28133a838b684d2e99a29d650ff2c42d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elena Leima,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elena Leima,ou=Administrative,dc=bitwarden,dc=com", - email: "LeimaE@1461123b615643b9b7c6f81f4c511488.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manny Grau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Manny Grau,ou=Payroll,dc=bitwarden,dc=com", - email: "GrauM@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cornie Hobgood,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cornie Hobgood,ou=Payroll,dc=bitwarden,dc=com", - email: "HobgoodC@a5186e33e69446d1bb74fa25b1e42650.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirsti Sridaran,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kirsti Sridaran,ou=Peons,dc=bitwarden,dc=com", - email: "SridaraK@ca8f4832ccb34eecb660b444c29c036c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cynthya Ganness,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cynthya Ganness,ou=Product Development,dc=bitwarden,dc=com", - email: "GannessC@4132afcbe852461d84c4e04897cbd70a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vilhelmina Gabe,ou=Janitorial,dc=bitwarden,dc=com", - email: "GabeV@8a518eca58904534b05396f1b7366d38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Becky Bento,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Becky Bento,ou=Human Resources,dc=bitwarden,dc=com", - email: "BentoB@201177ec03f246b1b586746301578c04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Murial Richardson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Murial Richardson,ou=Product Testing,dc=bitwarden,dc=com", - email: "RichardM@a6096cd0d9c54e7cb57ad3b57e445595.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashok Ugwa,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ashok Ugwa,ou=Peons,dc=bitwarden,dc=com", - email: "UgwaA@33b7fa6f25dd4387a5408d5f26b794a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarena Devgon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sarena Devgon,ou=Product Testing,dc=bitwarden,dc=com", - email: "DevgonS@5f9301f0062b42de89716ec7e410b165.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valeria Bracewell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Valeria Bracewell,ou=Payroll,dc=bitwarden,dc=com", - email: "BraceweV@32cbfafe741b446491d67cea0d5c681a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristina Ard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cristina Ard,ou=Administrative,dc=bitwarden,dc=com", - email: "ArdC@4a1e113d03e64aa594660480aad5198e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katrinka Harville,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Katrinka Harville,ou=Administrative,dc=bitwarden,dc=com", - email: "HarvillK@39974c25ecbe436f9e77637f71866303.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colette Chern,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Colette Chern,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChernC@750387c73d1b4103872918e3d3e93c32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PohSoon Mellor,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=PohSoon Mellor,ou=Administrative,dc=bitwarden,dc=com", - email: "MellorP@41bf97a0f83643ecb5c3ae7dea3fc6f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sheileagh deElizalde,ou=Product Development,dc=bitwarden,dc=com", - email: "deElizaS@f414860515324b3cad4d00dd4f44cc65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reg Mou,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Reg Mou,ou=Payroll,dc=bitwarden,dc=com", - email: "MouR@44154c0b8f05440cb2dfceffbfdfaf5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flor Fong,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Flor Fong,ou=Human Resources,dc=bitwarden,dc=com", - email: "FongF@4440d5a8c29244aaa65d7ce99130f973.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Will Imbemba,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Will Imbemba,ou=Human Resources,dc=bitwarden,dc=com", - email: "ImbembaW@8ec725a0b25640da9e4f5b4c8838762a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Serene Lindquist,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Serene Lindquist,ou=Product Development,dc=bitwarden,dc=com", - email: "LindquiS@d323371cf0d149c19d396f6a749e3098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joeann Upton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joeann Upton,ou=Peons,dc=bitwarden,dc=com", - email: "UptonJ@6f161c0885be4a50be1e5e174b0c967a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fariba Cowell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fariba Cowell,ou=Peons,dc=bitwarden,dc=com", - email: "CowellF@727c241675fb4155a37dd1e11418c186.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annadiane Meijer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Annadiane Meijer,ou=Payroll,dc=bitwarden,dc=com", - email: "MeijerA@123c99e30f8149cea0d20a1c6360de45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cleo Mgmt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cleo Mgmt,ou=Payroll,dc=bitwarden,dc=com", - email: "MgmtC@33e8933bc7494a68acd4251758e509d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ferne Finane,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ferne Finane,ou=Payroll,dc=bitwarden,dc=com", - email: "FinaneF@85922018edea47b985151236684ae904.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=JeanBernard Ficco,ou=Product Development,dc=bitwarden,dc=com", - email: "FiccoJ@b6e4c56ef12d46659a7adc74b2b4e7b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elisabetta Angell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elisabetta Angell,ou=Administrative,dc=bitwarden,dc=com", - email: "AngellE@4466c387ca38420ebdc497ef8de08842.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Me Womack,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Me Womack,ou=Payroll,dc=bitwarden,dc=com", - email: "WomackM@0812c60db2284153af1913e30a97f907.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randie Takata,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Randie Takata,ou=Payroll,dc=bitwarden,dc=com", - email: "TakataR@7be22f7ee9eb41bbba87c747f0e4e97d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Birgitte Marshall,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Birgitte Marshall,ou=Payroll,dc=bitwarden,dc=com", - email: "MarshalB@afde3113416043d98395556c73711549.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorita Pilon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lorita Pilon,ou=Payroll,dc=bitwarden,dc=com", - email: "PilonL@e442907aab1c4de2a3d2eb6b7fab8ddf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ind Brindley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ind Brindley,ou=Peons,dc=bitwarden,dc=com", - email: "BrindleI@b472332785454ae6b007bcbe058ef6e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaal Ugwa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gaal Ugwa,ou=Payroll,dc=bitwarden,dc=com", - email: "UgwaG@a1e6ebe78e6e49b2afcf7ed11f908644.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilda Sharratt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tilda Sharratt,ou=Payroll,dc=bitwarden,dc=com", - email: "SharratT@aadd895e8a7f4326b9573a1143995b88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yueping Kardomateas,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yueping Kardomateas,ou=Peons,dc=bitwarden,dc=com", - email: "KardomaY@22acfb768c09448b9b9c3d7bd8e3a389.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bela Plaisance,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bela Plaisance,ou=Product Development,dc=bitwarden,dc=com", - email: "PlaisanB@af7402077fba4129bbcd03f9bf068e4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlen Privitera,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carlen Privitera,ou=Payroll,dc=bitwarden,dc=com", - email: "PriviteC@01412eb858be4efb9cf7976be214a30b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Survey Vanta,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Survey Vanta,ou=Peons,dc=bitwarden,dc=com", - email: "VantaS@d4ad583ecaae406097e581a7aec5a780.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Myrna Nesrallah,ou=Administrative,dc=bitwarden,dc=com", - email: "NesrallM@43a2075086314e66b15465a3ec778b06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bevyn Germano,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bevyn Germano,ou=Peons,dc=bitwarden,dc=com", - email: "GermanoB@d4e8bab259134e1b8e7db63aa3a30d2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tats Lawbaugh,ou=Product Development,dc=bitwarden,dc=com", - email: "LawbaugT@5e51d9a3833b42d3a0ca89712e0f4b6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norcal Sabourin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Norcal Sabourin,ou=Management,dc=bitwarden,dc=com", - email: "SabouriN@148b0748cafd4655898b3cdac38d15c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vincenzo Rusin,ou=Product Testing,dc=bitwarden,dc=com", - email: "RusinV@5f59551b04db44d39569a60a87960164.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cuong Schwab,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cuong Schwab,ou=Peons,dc=bitwarden,dc=com", - email: "SchwabC@e6d1825771da43ab8c15fdf770febdde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seang Reichinger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Seang Reichinger,ou=Administrative,dc=bitwarden,dc=com", - email: "ReichinS@c829ed47073b4d85a7396da70f656311.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherryl Appell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sherryl Appell,ou=Janitorial,dc=bitwarden,dc=com", - email: "AppellS@b2c537a3f6174546b2a7b1777d2dea4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rayna Hanford,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rayna Hanford,ou=Administrative,dc=bitwarden,dc=com", - email: "HanfordR@2b6053354b004588977b46a0cd4d26dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hynek Alles,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hynek Alles,ou=Payroll,dc=bitwarden,dc=com", - email: "AllesH@6b1195b29ef347f9ab299fd5409ce2bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cal Wilby,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cal Wilby,ou=Administrative,dc=bitwarden,dc=com", - email: "WilbyC@34552c4db0554609b8e8f530d9b4516c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Furrukh Gros,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Furrukh Gros,ou=Peons,dc=bitwarden,dc=com", - email: "GrosF@7d6095181b454ecb8a89a9772da4d295.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barlas Rezzik,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Barlas Rezzik,ou=Product Development,dc=bitwarden,dc=com", - email: "RezzikB@cd39a8ff12ee4798a79e248d3318980a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cong Kish,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cong Kish,ou=Human Resources,dc=bitwarden,dc=com", - email: "KishC@837254eeede24c15906b803e5cce94f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ping ONeill,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ping ONeill,ou=Peons,dc=bitwarden,dc=com", - email: "ONeillP@232786cf6be745b08d532519f75fd65e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aladin Mikulka,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aladin Mikulka,ou=Peons,dc=bitwarden,dc=com", - email: "MikulkaA@cbf35b83abed4f6d86f5e0a80e7c13e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marj Baldock,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marj Baldock,ou=Product Testing,dc=bitwarden,dc=com", - email: "BaldockM@b1b7656e019d440a9a3ca7d6d074faa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lucy Deligdisch,ou=Payroll,dc=bitwarden,dc=com", - email: "DeligdiL@20e14dd3d2dd44c8a8925dd175adb2ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abby Theocharakis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Abby Theocharakis,ou=Payroll,dc=bitwarden,dc=com", - email: "TheochaA@1025092185dc4f3abfbf07259ddd26cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linnea Boucouris,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Linnea Boucouris,ou=Payroll,dc=bitwarden,dc=com", - email: "BoucourL@0ed48bdbdb1f464288e368731b18494f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernd Gaebel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bernd Gaebel,ou=Management,dc=bitwarden,dc=com", - email: "GaebelB@e9c5f780826246738e4b88d9c1251717.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiina Ackaouy,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tiina Ackaouy,ou=Management,dc=bitwarden,dc=com", - email: "AckaouyT@c98eaad0f92a41b49339315f79d6648a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Xiaojing Lehtinen,ou=Product Development,dc=bitwarden,dc=com", - email: "LehtineX@7d28967c327e4e23a4b006845992cccc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florrie Latin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Florrie Latin,ou=Administrative,dc=bitwarden,dc=com", - email: "LatinF@7d4ab817fa5e4f88b55f8de9796f837b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bliss Salinas,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bliss Salinas,ou=Janitorial,dc=bitwarden,dc=com", - email: "SalinasB@e2d1ebaa6959429ebc4edc14189d9271.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binny MacGregor,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Binny MacGregor,ou=Administrative,dc=bitwarden,dc=com", - email: "MacGregB@3bd82317516042bfa7398fbc080a5ab7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margie Rubin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Margie Rubin,ou=Administrative,dc=bitwarden,dc=com", - email: "RubinM@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarene Videa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sarene Videa,ou=Payroll,dc=bitwarden,dc=com", - email: "VideaS@682a8645714a480188da85c157ef9433.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harpal Iskandar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Harpal Iskandar,ou=Payroll,dc=bitwarden,dc=com", - email: "IskandaH@ba22866e80644775858f87806fbde4da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melloney Mussar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Melloney Mussar,ou=Administrative,dc=bitwarden,dc=com", - email: "MussarM@4a3dbef197ba4d769249c1f49c2d0f57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arnett Typer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arnett Typer,ou=Peons,dc=bitwarden,dc=com", - email: "TyperA@f85ec6aaedd740f691ab46502bf2fcd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulce Dore,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dulce Dore,ou=Product Testing,dc=bitwarden,dc=com", - email: "DoreD@9092ac0216724776b99f389469a93c29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mandy Auth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mandy Auth,ou=Product Testing,dc=bitwarden,dc=com", - email: "AuthM@ee614e3163c64fc78862e2066c61b43b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nata Lampman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nata Lampman,ou=Product Development,dc=bitwarden,dc=com", - email: "LampmanN@61ded890c4074ecd9ae572c6057905e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Scpiivo Lauten,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Scpiivo Lauten,ou=Management,dc=bitwarden,dc=com", - email: "LautenS@cece21bcad784a3ca39618cc0267819d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susannah Ergle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Susannah Ergle,ou=Product Development,dc=bitwarden,dc=com", - email: "ErgleS@f8c29c9440874d4eb463ef82c13f890c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharona Purohit,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sharona Purohit,ou=Payroll,dc=bitwarden,dc=com", - email: "PurohitS@58b95b0fde664e13afb0e57d90ecd2ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sukey Ameen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sukey Ameen,ou=Administrative,dc=bitwarden,dc=com", - email: "AmeenS@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhawal Obenauf,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dhawal Obenauf,ou=Management,dc=bitwarden,dc=com", - email: "ObenaufD@399088e535dc444183a128d7fd1a5d16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nuntel Cozart,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nuntel Cozart,ou=Administrative,dc=bitwarden,dc=com", - email: "CozartN@f4a6804794574a25b07fba470bdf4478.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Turkey Massone,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Turkey Massone,ou=Peons,dc=bitwarden,dc=com", - email: "MassoneT@ea675d93e8aa4655831540db70e97a6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Barlas Bergstrom,ou=Product Testing,dc=bitwarden,dc=com", - email: "BergstrB@9676da99cfac4bada210a8c85a95f456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maxie Aladangady,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maxie Aladangady,ou=Management,dc=bitwarden,dc=com", - email: "AladangM@0e30929e6bbb48ec8c60769bdbed5c15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Housseini Sammons,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Housseini Sammons,ou=Product Development,dc=bitwarden,dc=com", - email: "SammonsH@c5f103343b7e4b25bc1a4d2fdd71d622.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saraann Koman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Saraann Koman,ou=Product Testing,dc=bitwarden,dc=com", - email: "KomanS@3a2f01610a4f49818c8117630280919e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saudra Griffith,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Saudra Griffith,ou=Product Development,dc=bitwarden,dc=com", - email: "GriffitS@72bccd919e1d4e7a9fb89ff1c2d64c5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yongli Craver,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Yongli Craver,ou=Management,dc=bitwarden,dc=com", - email: "CraverY@fb80550ae6b245dcb9c2cdf7ac12567e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pardip LaVecchia,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pardip LaVecchia,ou=Peons,dc=bitwarden,dc=com", - email: "LaVecchP@e44e2f828b9948f4bb8c5d44954eed11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subhash Waid,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Subhash Waid,ou=Product Testing,dc=bitwarden,dc=com", - email: "WaidS@e0fbcbf86ba64fa69e571f107b3ec1d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kaye Sobchuk,ou=Product Development,dc=bitwarden,dc=com", - email: "SobchukK@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deane Saiyed,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Deane Saiyed,ou=Peons,dc=bitwarden,dc=com", - email: "SaiyedD@22830d32dd4a43f899cece07a5cc99c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joannah McBryan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joannah McBryan,ou=Human Resources,dc=bitwarden,dc=com", - email: "McBryanJ@f1351648a83a4fd2b80f3e1c5db82076.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kariotta Shwed,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShwedK@a77c7140e8a14e9180f6ceda32adedff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kyle Anconetani,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kyle Anconetani,ou=Administrative,dc=bitwarden,dc=com", - email: "AnconetK@bea3a59f852447369b2ae52dc89b101a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cicily Carlisle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cicily Carlisle,ou=Management,dc=bitwarden,dc=com", - email: "CarlislC@fabf4e5a1cd441dcbccc8453d82524ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carole Coats,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Carole Coats,ou=Product Testing,dc=bitwarden,dc=com", - email: "CoatsC@72bd0ee0befb455d8cec3b8d293b350f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonelle Halpern,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leonelle Halpern,ou=Payroll,dc=bitwarden,dc=com", - email: "HalpernL@4862778236b440e7a6b8cc3c6a3dec32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clare Deatrick,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Clare Deatrick,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeatricC@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marty Maunu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marty Maunu,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaunuM@1905088fe45c42ef9a2318b32d1a92d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronni Paynter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ronni Paynter,ou=Product Development,dc=bitwarden,dc=com", - email: "PaynterR@1d23264dcd2241baa77e90f901c50315.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jiri Bemiller,ou=Human Resources,dc=bitwarden,dc=com", - email: "BemilleJ@a312c5a631954b3083418977a35fbc96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duong Davies,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Duong Davies,ou=Human Resources,dc=bitwarden,dc=com", - email: "DaviesD@ce7f6506438049b28a6c7066d0f5b598.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nancy Boutilier,ou=Human Resources,dc=bitwarden,dc=com", - email: "BoutiliN@819341cb2af84d6c855b3feecf7b45b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greer Behlen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Greer Behlen,ou=Peons,dc=bitwarden,dc=com", - email: "BehlenG@613a894fc4ff4101a0a94f865da5db23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Roslyn GurArie,ou=Janitorial,dc=bitwarden,dc=com", - email: "GurArieR@943cde02b55f4c00aac04891d951946b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=KuiSoon RossRoss,ou=Peons,dc=bitwarden,dc=com", - email: "RossRosK@9de1e5ab0e97403bbd2b1cd8ab5549b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Poldi Volk,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Poldi Volk,ou=Product Testing,dc=bitwarden,dc=com", - email: "VolkP@fc8c0a560ec144cbab9e40d962cfbf5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hennrietta Schmadtke,ou=Product Development,dc=bitwarden,dc=com", - email: "SchmadtH@4b32479366c74b46b2b68466f59bae46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estelle Specs,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Estelle Specs,ou=Management,dc=bitwarden,dc=com", - email: "SpecsE@cbf3bc402182405fa7e4d3e446e6f0ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tina Guarino,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tina Guarino,ou=Peons,dc=bitwarden,dc=com", - email: "GuarinoT@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pamelina Kovats,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pamelina Kovats,ou=Management,dc=bitwarden,dc=com", - email: "KovatsP@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dany deGrace,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dany deGrace,ou=Administrative,dc=bitwarden,dc=com", - email: "deGraceD@c53d26d2599d4e87839d1fcfc46deed3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rigoberto Bilsborough,ou=Management,dc=bitwarden,dc=com", - email: "BilsborR@8f54ea12be5d4924822bead7a0de7fce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ThanhHung Bajpeyi,ou=Management,dc=bitwarden,dc=com", - email: "BajpeyiT@af703f54ddb945e38afdba5f17819d01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grata Hosang,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Grata Hosang,ou=Janitorial,dc=bitwarden,dc=com", - email: "HosangG@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sosanna McAulay,ou=Human Resources,dc=bitwarden,dc=com", - email: "McAulayS@15447e827d294576b427fe60b8e58e62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eoin Ketchum,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eoin Ketchum,ou=Payroll,dc=bitwarden,dc=com", - email: "KetchumE@f4820d79a950444ca53b37bbda89060d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rora Feild,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rora Feild,ou=Payroll,dc=bitwarden,dc=com", - email: "FeildR@c0a302c2f9a04dc1997191c76bacca58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chryste Tsenter,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chryste Tsenter,ou=Peons,dc=bitwarden,dc=com", - email: "TsenterC@25aebd1493fb4d31a43de4ac0f71a727.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoda Calleja,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Yoda Calleja,ou=Management,dc=bitwarden,dc=com", - email: "CallejaY@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vannie Babalola,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vannie Babalola,ou=Peons,dc=bitwarden,dc=com", - email: "BabalolV@be9d6d33980e45aa8fdb6ebf08094f9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tulip Yenilmez,ou=Payroll,dc=bitwarden,dc=com", - email: "YenilmeT@906d64f7c2b74479970aa6699821b985.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kimberlee Rakesh,ou=Peons,dc=bitwarden,dc=com", - email: "RakeshK@923baf1ba66c43ddab40764da6c9cc33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheryl Diec,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sheryl Diec,ou=Product Testing,dc=bitwarden,dc=com", - email: "DiecS@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candice Scribner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Candice Scribner,ou=Human Resources,dc=bitwarden,dc=com", - email: "ScribneC@eef8f30988664fe78f88de71627c3b63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Carmel Lansupport,ou=Product Testing,dc=bitwarden,dc=com", - email: "LansuppC@aebedd81d0064bf4bf3e053b89a4b6eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farand Rambow,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Farand Rambow,ou=Product Development,dc=bitwarden,dc=com", - email: "RambowF@15fb4ae5d92f48d1828a5523a2de1119.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darb Jedrysiak,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Darb Jedrysiak,ou=Peons,dc=bitwarden,dc=com", - email: "JedrysiD@c56a9475370a48efb779b953853ddb74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valentia Edmison,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Valentia Edmison,ou=Administrative,dc=bitwarden,dc=com", - email: "EdmisonV@509acce88e824dae901a9dc813095e54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reid Hotline,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Reid Hotline,ou=Payroll,dc=bitwarden,dc=com", - email: "HotlineR@36cbe8f598cd4972b6d2494f46f3fea8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nelli Camblin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nelli Camblin,ou=Payroll,dc=bitwarden,dc=com", - email: "CamblinN@49d2d3179b1e4e36991607ece7157ce5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaji Heilig,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shaji Heilig,ou=Management,dc=bitwarden,dc=com", - email: "HeiligS@d221ea793fe54c61b6d0a123f7f92114.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angil Shariff,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Angil Shariff,ou=Peons,dc=bitwarden,dc=com", - email: "ShariffA@6278758e52d64d2fa2b3ae646f7b1c8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carmencita Digilio,ou=Human Resources,dc=bitwarden,dc=com", - email: "DigilioC@99cc3f0e751d412fb99b300aa817ed7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linet McRitchie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Linet McRitchie,ou=Management,dc=bitwarden,dc=com", - email: "McRitchL@7ae74f35c1ca49719017f2b0cacc9b3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chen Mayer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chen Mayer,ou=Product Testing,dc=bitwarden,dc=com", - email: "MayerC@f126477184184f8891beac46174dce4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anibal Nafezi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anibal Nafezi,ou=Administrative,dc=bitwarden,dc=com", - email: "NafeziA@e3b02f8ad09c4296ae0a5ca3a1e66b19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monteene Azmak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Monteene Azmak,ou=Human Resources,dc=bitwarden,dc=com", - email: "AzmakM@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gerrit Gasparotto,ou=Human Resources,dc=bitwarden,dc=com", - email: "GasparoG@2f5b8316f26f4fc481de13effbbd4ea6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bep Ramsayer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bep Ramsayer,ou=Peons,dc=bitwarden,dc=com", - email: "RamsayeB@6959c2a103f748adbcb2ba7b29cef5d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emilee Mereu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Emilee Mereu,ou=Janitorial,dc=bitwarden,dc=com", - email: "MereuE@32d242671ec341929f315049a0e40a31.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Perrin Iskandar,ou=Janitorial,dc=bitwarden,dc=com", - email: "IskandaP@dbd5f5a4f3554341aff4c62a69269164.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madalena Brodie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Madalena Brodie,ou=Product Development,dc=bitwarden,dc=com", - email: "BrodieM@a74d44d69cd54766a615e2c08f9ee9f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Terrence DeVarennes,ou=Product Testing,dc=bitwarden,dc=com", - email: "DeVarenT@34211993f6a54dc18f00a71a05d87998.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liese Childers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Liese Childers,ou=Payroll,dc=bitwarden,dc=com", - email: "ChilderL@d97cf4afad7944a09e52ef7af5343e62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gertrudis Grevy,ou=Administrative,dc=bitwarden,dc=com", - email: "GrevyG@a54b6e1d0be04405aa83502caa5550a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shekar Finnie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shekar Finnie,ou=Management,dc=bitwarden,dc=com", - email: "FinnieS@bd9a2e982f524b64b04ed8892de43767.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilysa Connor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ilysa Connor,ou=Peons,dc=bitwarden,dc=com", - email: "ConnorI@c4e315e8ab0343648ac206c0fcb55300.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Krissie Culbertson,ou=Janitorial,dc=bitwarden,dc=com", - email: "CulbertK@c2b132c5eea24821b75062bcddc065ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milly Taghizadeh,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Milly Taghizadeh,ou=Management,dc=bitwarden,dc=com", - email: "TaghizaM@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bibbye Kurauchi,ou=Product Testing,dc=bitwarden,dc=com", - email: "KurauchB@b1e6441eff8249c99c7f5c6eae360d4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guglielma Gomes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Guglielma Gomes,ou=Peons,dc=bitwarden,dc=com", - email: "GomesG@2f63d6d248304182aa4c0d86ba7fd7fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malorie Sei,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Malorie Sei,ou=Product Development,dc=bitwarden,dc=com", - email: "SeiM@7660e12ec2f0413d9900f2acb2787cf3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loella Stephenson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Loella Stephenson,ou=Product Development,dc=bitwarden,dc=com", - email: "StephenL@878435e5887c47ef90f06778893d179e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozalie Farr,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rozalie Farr,ou=Management,dc=bitwarden,dc=com", - email: "FarrR@5bfc4ef1cec94f918b8b846a80865382.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessa Humphrey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jessa Humphrey,ou=Peons,dc=bitwarden,dc=com", - email: "HumphreJ@ab25c8f313f4419ba014954b0448d2c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pankesh Chambliss,ou=Product Development,dc=bitwarden,dc=com", - email: "ChambliP@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Audrie Rembecki,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Audrie Rembecki,ou=Management,dc=bitwarden,dc=com", - email: "RembeckA@b78fed9ef6a94b4d9e8bb1b5d1719aef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miroslav Federico,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Miroslav Federico,ou=Payroll,dc=bitwarden,dc=com", - email: "FedericM@ff701dee527d4bd9bda5646b61d95c09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steffi Voelcker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Steffi Voelcker,ou=Peons,dc=bitwarden,dc=com", - email: "VoelckeS@55fd595ff3eb498eb38f456114e4f66d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jaclyn Czarnecki,ou=Peons,dc=bitwarden,dc=com", - email: "CzarnecJ@22471469e5a74d89b5185fdcb7a6b10d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aloysia OKarina,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aloysia OKarina,ou=Management,dc=bitwarden,dc=com", - email: "OKarinaA@35aa710455a54ec9aacb0743a9cce4e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betsy Braun,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Betsy Braun,ou=Human Resources,dc=bitwarden,dc=com", - email: "BraunB@67288b6f618543379d7c917a6d4d0385.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carling Cupido,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carling Cupido,ou=Product Development,dc=bitwarden,dc=com", - email: "CupidoC@a0441f048a884d1891acef81ab17bc91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saman McNichol,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Saman McNichol,ou=Management,dc=bitwarden,dc=com", - email: "McNichoS@6e6778c4dc0b46a7a3efac6eb8ad5697.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dnsproj Tweddle,ou=Human Resources,dc=bitwarden,dc=com", - email: "TweddleD@0aaa3fff5e9b40a799c1f750d8eb797b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kalle Devreeze,ou=Human Resources,dc=bitwarden,dc=com", - email: "DevreezK@23f6fd02f4fc47ae857bce11e624fa96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selma Slotnick,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Selma Slotnick,ou=Janitorial,dc=bitwarden,dc=com", - email: "SlotnicS@dc6a05982d874ebebc06c9a0d16ba5c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Akin Anastasiadis,ou=Janitorial,dc=bitwarden,dc=com", - email: "AnastasA@9c1fdcc0e6874a8c82391032a13dcfa4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felicia Holz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Felicia Holz,ou=Payroll,dc=bitwarden,dc=com", - email: "HolzF@189c40acad524386a961885e16a9d551.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joke Cottengim,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Joke Cottengim,ou=Product Testing,dc=bitwarden,dc=com", - email: "CottengJ@6dc0e5d935a04bb897ee53893751111f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonoe Linke,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sonoe Linke,ou=Product Development,dc=bitwarden,dc=com", - email: "LinkeS@46c8675a51b74aa5ba283cf789fe901d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marce Tracey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marce Tracey,ou=Administrative,dc=bitwarden,dc=com", - email: "TraceyM@d1e70dc6cc51492f97ff25ba684b2627.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Muffin Gadbois,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Muffin Gadbois,ou=Management,dc=bitwarden,dc=com", - email: "GadboisM@47c8f2050dbd47fbb19d2678b904f394.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ros Rajwani,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ros Rajwani,ou=Peons,dc=bitwarden,dc=com", - email: "RajwaniR@27bcaa4785014c5c91369f5095a41ea2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynnelle Shane,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lynnelle Shane,ou=Payroll,dc=bitwarden,dc=com", - email: "ShaneL@f93d2785fb994aaa8ec423242f6986a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kissee Ide,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kissee Ide,ou=Peons,dc=bitwarden,dc=com", - email: "IdeK@83f78532c82a4f77a10f2d7460348b85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leesa Trader,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Leesa Trader,ou=Peons,dc=bitwarden,dc=com", - email: "TraderL@e4a770eb171044f780cef5d883eb3a3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Indy Pullan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Indy Pullan,ou=Human Resources,dc=bitwarden,dc=com", - email: "PullanI@80dd2ec5de3e4cba8ab6e9385f8b5eaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micro Valente,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Micro Valente,ou=Product Development,dc=bitwarden,dc=com", - email: "ValenteM@13f716505b994218abaf3b2234e80f5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hendrika Lackie,ou=Janitorial,dc=bitwarden,dc=com", - email: "LackieH@26874cbc58cb45a4a2a676c29fc0a053.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lea Marineau,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lea Marineau,ou=Administrative,dc=bitwarden,dc=com", - email: "MarineaL@13757531d26649c1ba7e4dc18bfd6a62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dinh Yadollahi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dinh Yadollahi,ou=Management,dc=bitwarden,dc=com", - email: "YadollaD@a1a01d013d8e44f99cffc6de4935e97e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nj Patchett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nj Patchett,ou=Product Development,dc=bitwarden,dc=com", - email: "PatchetN@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vicente Zenisek,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZenisekV@f1af10e65a3c4deea04ab7a7f844eadd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helsa Calis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Helsa Calis,ou=Administrative,dc=bitwarden,dc=com", - email: "CalisH@0f20bc491a46484db42d8b650f7e698d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drona Panter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Drona Panter,ou=Human Resources,dc=bitwarden,dc=com", - email: "PanterD@45a31d4ab53e40acbe69b0d9b04b9ec0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Filia Magnusson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Filia Magnusson,ou=Management,dc=bitwarden,dc=com", - email: "MagnussF@dd5583b679564f14b7cb6461f47a6a4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernadette Schmelzel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bernadette Schmelzel,ou=Management,dc=bitwarden,dc=com", - email: "SchmelzB@a5413b46913143afa665313de01c325c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elva Radcliffe,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elva Radcliffe,ou=Administrative,dc=bitwarden,dc=com", - email: "RadclifE@ae02c83ad0ef40a7bee5a95ca1e9e096.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janson Sealy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Janson Sealy,ou=Human Resources,dc=bitwarden,dc=com", - email: "SealyJ@ec1c957a0ac64fc4b62ba8838e8e6e5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bethina Horak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bethina Horak,ou=Janitorial,dc=bitwarden,dc=com", - email: "HorakB@d95f88e753834af2ae01c6025a41df6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manny Burkhardt,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Manny Burkhardt,ou=Product Development,dc=bitwarden,dc=com", - email: "BurkharM@58b1feb535e94d39a943e5e96951c27d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mehmud Rios,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mehmud Rios,ou=Janitorial,dc=bitwarden,dc=com", - email: "RiosM@b73122735ce441d6a5329e1b3833484b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Priscilla Schirmer,ou=Payroll,dc=bitwarden,dc=com", - email: "SchirmeP@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jinann Wildeman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jinann Wildeman,ou=Management,dc=bitwarden,dc=com", - email: "WildemaJ@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lisetta Semler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lisetta Semler,ou=Management,dc=bitwarden,dc=com", - email: "SemlerL@ffcb266a0b9d4db986bd5378efac6255.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trenna Fradette,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Trenna Fradette,ou=Janitorial,dc=bitwarden,dc=com", - email: "FradettT@37098c17a937400b986b54e1bc765718.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tiffi Vilozny,ou=Product Testing,dc=bitwarden,dc=com", - email: "ViloznyT@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sashenka Warwick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sashenka Warwick,ou=Payroll,dc=bitwarden,dc=com", - email: "WarwickS@118d571b1571425c87bcb58317919134.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bassam Cisco,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bassam Cisco,ou=Janitorial,dc=bitwarden,dc=com", - email: "CiscoB@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yvan Kea,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Yvan Kea,ou=Management,dc=bitwarden,dc=com", - email: "KeaY@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ijff Monforton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ijff Monforton,ou=Product Development,dc=bitwarden,dc=com", - email: "MonfortI@f273a190f14545708d6c984111d46055.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cassi Fadlallah,ou=Payroll,dc=bitwarden,dc=com", - email: "FadlallC@1dc980ce277d4e6690f81b768ece41e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lynsey Tabalba,ou=Product Development,dc=bitwarden,dc=com", - email: "TabalbaL@528c9fa3f4634d4b9c93989a607b8098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anderson Nunold,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anderson Nunold,ou=Janitorial,dc=bitwarden,dc=com", - email: "NunoldA@edf99b25a1c649749aeb3745c7ce07a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulcia Burkey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dulcia Burkey,ou=Administrative,dc=bitwarden,dc=com", - email: "BurkeyD@1a998e292598475391af8dec2bcfc1a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isidora Wilczewski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Isidora Wilczewski,ou=Management,dc=bitwarden,dc=com", - email: "WilczewI@dc401fe14a3e4403a51a351982eb441b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alexine Tarof,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alexine Tarof,ou=Product Development,dc=bitwarden,dc=com", - email: "TarofA@b4c7fc4bf99a4f9f92481679c9a4b8b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashok Bagg,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ashok Bagg,ou=Management,dc=bitwarden,dc=com", - email: "BaggA@5ecfe4c8aaf4487fb624902f7b975e7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antoni Friesen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Antoni Friesen,ou=Payroll,dc=bitwarden,dc=com", - email: "FriesenA@6e287118b6904f0fb9c650aef9285536.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beate Ribot,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beate Ribot,ou=Administrative,dc=bitwarden,dc=com", - email: "RibotB@c92fece191874f98841ffeece2238130.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Evaleen Caltrider,ou=Janitorial,dc=bitwarden,dc=com", - email: "CaltridE@392576165dfe4cafb8fa1d35ef39e725.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pde Bautista,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pde Bautista,ou=Janitorial,dc=bitwarden,dc=com", - email: "BautistP@ef19dcebf9c048d588e1e2f72c4bddc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marco Cho,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marco Cho,ou=Administrative,dc=bitwarden,dc=com", - email: "ChoM@cc02f064f98b40fea712c7f35045e528.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Adrianna Ruppert,ou=Human Resources,dc=bitwarden,dc=com", - email: "RuppertA@ecbe7413d7a74dce8478d8a77a5f394f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashly McNitt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ashly McNitt,ou=Product Testing,dc=bitwarden,dc=com", - email: "McNittA@53b9160b2496409caa1d33b8b06ca0f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginni Brunelle,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ginni Brunelle,ou=Administrative,dc=bitwarden,dc=com", - email: "BrunellG@e98ed1c81e02459f8d669c9387a0fd69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maybelle Hammond,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maybelle Hammond,ou=Management,dc=bitwarden,dc=com", - email: "HammondM@1bd38dfda0ec498fac15746919a63a0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgine Delaney,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Georgine Delaney,ou=Peons,dc=bitwarden,dc=com", - email: "DelaneyG@d0bb47da3574428792ab636cf81dc1b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brent Guindi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brent Guindi,ou=Janitorial,dc=bitwarden,dc=com", - email: "GuindiB@309b117b618847b7b78c15d90bccac07.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annette Madgett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Annette Madgett,ou=Management,dc=bitwarden,dc=com", - email: "MadgettA@87e96f783b644d65b5110e046327acbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tesa Duda,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tesa Duda,ou=Payroll,dc=bitwarden,dc=com", - email: "DudaT@de48d028368243f491b13126a0955d2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idus Welch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Idus Welch,ou=Janitorial,dc=bitwarden,dc=com", - email: "WelchI@341209807c3b449193b094017d62cb24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Katine BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", - email: "BeattieK@6d0942ba8f2d4a37a2dd747e99b7c4eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lyssa Gavens,ou=Human Resources,dc=bitwarden,dc=com", - email: "GavensL@c06f5d628bd7482da3cd966d3e8be7ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Myrtice Maheu,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaheuM@24c88e38c3b84591a556764222d2f663.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fina Volkmann,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fina Volkmann,ou=Payroll,dc=bitwarden,dc=com", - email: "VolkmanF@b463f1d05e7e4eaba404b90bcd29cc1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eirena Mahn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Eirena Mahn,ou=Janitorial,dc=bitwarden,dc=com", - email: "MahnE@0152a211f3f440b4af045cb6354f524e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pinakin Spooner,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pinakin Spooner,ou=Management,dc=bitwarden,dc=com", - email: "SpoonerP@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Luciana Scarffe,ou=Product Testing,dc=bitwarden,dc=com", - email: "ScarffeL@2351067d51a3467b820158a0674b058a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Esther Popieraitis,ou=Human Resources,dc=bitwarden,dc=com", - email: "PopieraE@1ca6d69a45f64604926213dd1e115851.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maryellen Receiving,ou=Product Testing,dc=bitwarden,dc=com", - email: "ReceiviM@03bb59f0f5b24019aa5b034a3fadd7fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kannan McCabe,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kannan McCabe,ou=Management,dc=bitwarden,dc=com", - email: "McCabeK@51dbb26cdbdc4f95a7093a6bb469b01b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=WaiBun Sloane,ou=Human Resources,dc=bitwarden,dc=com", - email: "SloaneW@fef32f3295c44e0185e68196ce06374a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magda Bullard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Magda Bullard,ou=Administrative,dc=bitwarden,dc=com", - email: "BullardM@f2c3f0652e32488088bedf6cc0ca618f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ophelia Snodgrass,ou=Product Development,dc=bitwarden,dc=com", - email: "SnodgraO@651dfea288cb4a3b967f35aa6edd73a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dzung Datema,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dzung Datema,ou=Janitorial,dc=bitwarden,dc=com", - email: "DatemaD@3f4b9aad0e4547d9998409b9c2b65792.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiele Boggs,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kiele Boggs,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoggsK@93802411fc4d40bd8843de42a4656ea2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othelia Humphrey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Othelia Humphrey,ou=Payroll,dc=bitwarden,dc=com", - email: "HumphreO@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willabella Sarto,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Willabella Sarto,ou=Peons,dc=bitwarden,dc=com", - email: "SartoW@da1b5788f067415eb6baf89891f2b951.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maitreya Carriere,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maitreya Carriere,ou=Management,dc=bitwarden,dc=com", - email: "CarrierM@9e649b7894c9461dbc0ee0f6133e962b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marje Sherwin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marje Sherwin,ou=Human Resources,dc=bitwarden,dc=com", - email: "SherwinM@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dode Schnell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dode Schnell,ou=Product Development,dc=bitwarden,dc=com", - email: "SchnellD@59fd6449f708475fb2e48ed60c509c36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arlene Wadasinghe,ou=Peons,dc=bitwarden,dc=com", - email: "WadasinA@3e74039e650c410fbbe3b9202ae34fbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jolanda Skrobecki,ou=Product Development,dc=bitwarden,dc=com", - email: "SkrobecJ@8187109cbba7441ab35098b49dbd1de9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PuiWah Szopinski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=PuiWah Szopinski,ou=Peons,dc=bitwarden,dc=com", - email: "SzopinsP@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Halimeda MacMaid,ou=Human Resources,dc=bitwarden,dc=com", - email: "MacMaidH@c0a6b6c92fcf4d2e9e442a4db87fb8d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jack Totaro,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jack Totaro,ou=Management,dc=bitwarden,dc=com", - email: "TotaroJ@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hettie Phagan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hettie Phagan,ou=Human Resources,dc=bitwarden,dc=com", - email: "PhaganH@6085c53f98f34479bf7644e7797622f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margalo Scholey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Margalo Scholey,ou=Product Testing,dc=bitwarden,dc=com", - email: "ScholeyM@355248f7071d4e58beb9bf6f2b8c9ee2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delly Newnam,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Delly Newnam,ou=Product Development,dc=bitwarden,dc=com", - email: "NewnamD@051b892e4657474a87006ab9ebfe221e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ernst Dinkel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ernst Dinkel,ou=Product Development,dc=bitwarden,dc=com", - email: "DinkelE@b7ede65f1eb44e418de85b304b190714.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charis Armstead,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Charis Armstead,ou=Human Resources,dc=bitwarden,dc=com", - email: "ArmsteaC@72e85d46fcf84593970655aae6ba4a48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Purnam Dillabough,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Purnam Dillabough,ou=Peons,dc=bitwarden,dc=com", - email: "DillaboP@f0c361699ebd444799c8cfa94bd5e53c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cart Fillmore,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cart Fillmore,ou=Human Resources,dc=bitwarden,dc=com", - email: "FillmorC@95d3db8b234f4ca7a8f17262f4fbafbe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yuen Maybee,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Yuen Maybee,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaybeeY@5ae024a345a94b5090f63e27d57061d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petr Battershill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Petr Battershill,ou=Product Testing,dc=bitwarden,dc=com", - email: "BattersP@518037bbef344b5ab53506e072d3a395.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beulah Nowell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Beulah Nowell,ou=Human Resources,dc=bitwarden,dc=com", - email: "NowellB@983b433db82044e3b6af1fbca582d502.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maidisn Gronwall,ou=Product Testing,dc=bitwarden,dc=com", - email: "GronwalM@9ef7921d830342e7a2bb3017c4f04f06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aryn Mills,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aryn Mills,ou=Peons,dc=bitwarden,dc=com", - email: "MillsA@15d7a602173249f0aea4978bd6de557b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Car Gillet,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Car Gillet,ou=Peons,dc=bitwarden,dc=com", - email: "GilletC@90e76709c73345b5b9d03c814c8e9b26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Melinie Vilmansen,ou=Payroll,dc=bitwarden,dc=com", - email: "VilmansM@7a6163690f7b43abb4115499c63b90a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Betteann Bohannon,ou=Janitorial,dc=bitwarden,dc=com", - email: "BohannoB@7a8159a4b38d481598c0559b90aec74d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronn Gorsky,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ronn Gorsky,ou=Payroll,dc=bitwarden,dc=com", - email: "GorskyR@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Benedikta MacHattie,ou=Payroll,dc=bitwarden,dc=com", - email: "MacHattB@412210ae069c4a339c017fbe0c820674.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roly Dirilten,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roly Dirilten,ou=Administrative,dc=bitwarden,dc=com", - email: "DirilteR@5fc4c33111ce40c6b004653ef715e846.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betteann Thaker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Betteann Thaker,ou=Product Testing,dc=bitwarden,dc=com", - email: "ThakerB@56147ad3dbe542cb8cabca7cdf73e618.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Howden Raglin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Howden Raglin,ou=Peons,dc=bitwarden,dc=com", - email: "RaglinH@49a5c823cbe74e80b9d7e45aa3c6dc0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madeline Sipple,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Madeline Sipple,ou=Janitorial,dc=bitwarden,dc=com", - email: "SippleM@42f6c709ced54560a282482057eafc53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zulema Marra,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zulema Marra,ou=Management,dc=bitwarden,dc=com", - email: "MarraZ@57ee1e7c1faa4ce2b72c1469382238e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dino Maenpaa,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaenpaaD@5184500633ec4ec1833d29082b384d33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jaffer Smithdeal,ou=Peons,dc=bitwarden,dc=com", - email: "SmithdeJ@8a594bc6eddd4fdc93b1fa1f10fbb51a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amalita Ivancevic,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amalita Ivancevic,ou=Management,dc=bitwarden,dc=com", - email: "IvancevA@c507f54f9f5548a1b05ab68478cbbf4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Izabel Zwierzchowski,ou=Peons,dc=bitwarden,dc=com", - email: "ZwierzcI@8208431ef5574a1885889c7e3a263d25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Avaz Govindasamy,ou=Payroll,dc=bitwarden,dc=com", - email: "GovindaA@c595ac3eb122406fb35a1a0f955e739c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Juditha Kupidy,ou=Product Testing,dc=bitwarden,dc=com", - email: "KupidyJ@0333e91411d445859a646e8c16d92c70.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lazlo McClelland,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lazlo McClelland,ou=Product Development,dc=bitwarden,dc=com", - email: "McClellL@b0926f5fa5f345dab897ee36737c0cbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angele Mitrani,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Angele Mitrani,ou=Management,dc=bitwarden,dc=com", - email: "MitraniA@4fcafc5d237d4e89ae70144b97fd81b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ghislain Kechichian,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ghislain Kechichian,ou=Peons,dc=bitwarden,dc=com", - email: "KechichG@b6e011a2296d47ac9cf137f608b1c223.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrily Administrator,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Merrily Administrator,ou=Management,dc=bitwarden,dc=com", - email: "AdminisM@43965c00f0db4ca198510569e172ade1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zena Farrell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zena Farrell,ou=Product Testing,dc=bitwarden,dc=com", - email: "FarrellZ@133584a74b0d4e30b5c653e594b8d5ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ovila Lanctot,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ovila Lanctot,ou=Payroll,dc=bitwarden,dc=com", - email: "LanctotO@a5aea84a7d5a4a6887c80f4ed88bc0e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karie Kurash,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Karie Kurash,ou=Administrative,dc=bitwarden,dc=com", - email: "KurashK@ec2712850890400a82cf449b7931685a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalina Mednick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kalina Mednick,ou=Payroll,dc=bitwarden,dc=com", - email: "MednickK@7ae93f71f3d249edac467943331a9dd7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yannis Behnam,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yannis Behnam,ou=Peons,dc=bitwarden,dc=com", - email: "BehnamY@fa1b72a27fc34f4eb3c5c550f81af8b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lionel Carevic,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lionel Carevic,ou=Peons,dc=bitwarden,dc=com", - email: "CarevicL@9e33462dc38a47268f5ccb5aff17b01e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Evangelin Sandiford,ou=Janitorial,dc=bitwarden,dc=com", - email: "SandifoE@1617948aaf9d4dcb8bec36f480701bfb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olav McNitt,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Olav McNitt,ou=Peons,dc=bitwarden,dc=com", - email: "McNittO@b0b96975e46b40a097a0034294bf5528.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jobi ONeal,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jobi ONeal,ou=Human Resources,dc=bitwarden,dc=com", - email: "ONealJ@d83f96b44aac4dfe8bb6b493dedbd484.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellissa Marson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ellissa Marson,ou=Management,dc=bitwarden,dc=com", - email: "MarsonE@83ae92312ed14d6f8e9439baa2583cab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anita Bovee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anita Bovee,ou=Product Development,dc=bitwarden,dc=com", - email: "BoveeA@49b890ea773a4116b436ebd330dc653e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gavin Buckingham,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gavin Buckingham,ou=Administrative,dc=bitwarden,dc=com", - email: "BuckingG@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joke Reddick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Joke Reddick,ou=Payroll,dc=bitwarden,dc=com", - email: "ReddickJ@93a858edc4454f37b07e48de82573852.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johna Revill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Johna Revill,ou=Product Testing,dc=bitwarden,dc=com", - email: "RevillJ@3a5ff7224a884729803af88692f56576.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Luigi Przybycien,ou=Human Resources,dc=bitwarden,dc=com", - email: "PrzybycL@0c7b00cd612d4e53b77c42e6c0bbaf57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlee Gillespie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marlee Gillespie,ou=Product Development,dc=bitwarden,dc=com", - email: "GillespM@f20eb0847ca14a90a67aa09264897cd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cedric Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChaintrC@26c8fa913cbb4779ba0168232a8a145c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Des Theriot,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Des Theriot,ou=Management,dc=bitwarden,dc=com", - email: "TheriotD@a5a630d1967f4b1fbcb91bd230122a62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphine Kobeski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Daphine Kobeski,ou=Payroll,dc=bitwarden,dc=com", - email: "KobeskiD@436da9fad3274d878f0f8f160f4f3038.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subhashini Bachewich,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Subhashini Bachewich,ou=Peons,dc=bitwarden,dc=com", - email: "BachewiS@8f055851cf2e446194b128d0faf47339.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linnell Altekar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Linnell Altekar,ou=Janitorial,dc=bitwarden,dc=com", - email: "AltekarL@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aubrette Holz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Aubrette Holz,ou=Administrative,dc=bitwarden,dc=com", - email: "HolzA@2402d8b6f3164809a62dbae516875b67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sadru Dillabough,ou=Product Testing,dc=bitwarden,dc=com", - email: "DillaboS@520ff83094e24aed9f7bf536156db294.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mollee Etemad,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mollee Etemad,ou=Janitorial,dc=bitwarden,dc=com", - email: "EtemadM@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renie Spicer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Renie Spicer,ou=Janitorial,dc=bitwarden,dc=com", - email: "SpicerR@06a75fbf1c264fecab05cf3c4c5e8244.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Halley Clason,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Halley Clason,ou=Administrative,dc=bitwarden,dc=com", - email: "ClasonH@2e5d764491b046f6aa7ce6ba59a519f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mister Stampfl,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mister Stampfl,ou=Product Testing,dc=bitwarden,dc=com", - email: "StampflM@f56fa15d6b7d4398bc29adc06e1de112.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mariesara TraceyMcCabe,ou=Payroll,dc=bitwarden,dc=com", - email: "TraceyMM@55b35edd71d84140b661b45476973814.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hq Skelly,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hq Skelly,ou=Administrative,dc=bitwarden,dc=com", - email: "SkellyH@10f009f83fa241ed9d40654a174c0f83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anthony Markham,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anthony Markham,ou=Management,dc=bitwarden,dc=com", - email: "MarkhamA@f666c666c5c8454c862ee863e1582d3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neilla Shingler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Neilla Shingler,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShingleN@97c4b9ae4f964addb510995883d2e8fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shoji Trouborst,ou=Product Testing,dc=bitwarden,dc=com", - email: "TrouborS@0444b3a403d344e4ab1517502c8a1fc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Korrie Stallcup,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Korrie Stallcup,ou=Management,dc=bitwarden,dc=com", - email: "StallcuK@e3f89583f77e4884a1d8183b4faa15a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jewelle Kittinger,ou=Administrative,dc=bitwarden,dc=com", - email: "KittingJ@e01b4053cbcc4a7e8cc0003d4b938668.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delcina Barcza,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Delcina Barcza,ou=Product Development,dc=bitwarden,dc=com", - email: "BarczaD@61c3aec04f2f4530bf57a1dd23bae4be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evette Coddington,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Evette Coddington,ou=Peons,dc=bitwarden,dc=com", - email: "CoddingE@50db0b06f7084e4cb9a7af7a31c89f8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bhupendra Halley,ou=Product Testing,dc=bitwarden,dc=com", - email: "HalleyB@bd079bcc8df848e4ad40b50c80eb486f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joelynn Lightfield,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joelynn Lightfield,ou=Peons,dc=bitwarden,dc=com", - email: "LightfiJ@4247bf0f3a2e46bbbb1c691078752396.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isaac Cossota,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Isaac Cossota,ou=Payroll,dc=bitwarden,dc=com", - email: "CossotaI@ab43f8d0eb5a4fa69395019fc76ff8cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ardelle Sunatori,ou=Human Resources,dc=bitwarden,dc=com", - email: "SunatorA@a6c1eeb1053647d78d950c48b3782b75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyle DorionMagnan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lyle DorionMagnan,ou=Management,dc=bitwarden,dc=com", - email: "DorionML@d00e5ebc0da5488f8f410f79ea5c559a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tsing Daya,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tsing Daya,ou=Human Resources,dc=bitwarden,dc=com", - email: "DayaT@5c5e6866da4a4802aa0f0136ee49902d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Achal Justus,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Achal Justus,ou=Administrative,dc=bitwarden,dc=com", - email: "JustusA@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilda Meskimen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ilda Meskimen,ou=Administrative,dc=bitwarden,dc=com", - email: "MeskimeI@b0139312a83c40d5aff228440731260a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bobbi Wojtecki,ou=Product Development,dc=bitwarden,dc=com", - email: "WojteckB@0f207436d6984fc4977dc1a901dbb60d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Breanne Drinnan,ou=Janitorial,dc=bitwarden,dc=com", - email: "DrinnanB@283ec365fe654c3fba136ca1c0a944d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaya Ellul,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jaya Ellul,ou=Payroll,dc=bitwarden,dc=com", - email: "EllulJ@f8a322034d5e45cc8676b5e9fe5f5d0f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tessi Hipp,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tessi Hipp,ou=Peons,dc=bitwarden,dc=com", - email: "HippT@792920344b6e48bca13d2ab90771bbd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatyana Gooch,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tatyana Gooch,ou=Peons,dc=bitwarden,dc=com", - email: "GoochT@96ee5954dbf645b89509b54bd70ed6ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashlan Inamullah,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ashlan Inamullah,ou=Management,dc=bitwarden,dc=com", - email: "InamullA@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pooh Schmadtke,ou=Administrative,dc=bitwarden,dc=com", - email: "SchmadtP@19227d32d4ac4d3c8783acb96838362f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jandy McCollum,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jandy McCollum,ou=Janitorial,dc=bitwarden,dc=com", - email: "McColluJ@bf5fb1f833e149108e10f8209a4caa81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kattie Thom,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kattie Thom,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThomK@d18e4ae711e645c5a354ba4c375d8965.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hideo Nelson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hideo Nelson,ou=Product Testing,dc=bitwarden,dc=com", - email: "NelsonH@1ae5fc4856da4293b03fc4a57c0646c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karam Abraham,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Karam Abraham,ou=Payroll,dc=bitwarden,dc=com", - email: "AbrahamK@094814e3447d47a28856d14771b265f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evita Mahin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Evita Mahin,ou=Peons,dc=bitwarden,dc=com", - email: "MahinE@7391a6d3d59e40cd941b74d4ab20cfad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doll Hwang,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Doll Hwang,ou=Peons,dc=bitwarden,dc=com", - email: "HwangD@eba2f109ece04a08844cbc417a83a156.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atsushi Gros,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Atsushi Gros,ou=Administrative,dc=bitwarden,dc=com", - email: "GrosA@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lacee Kraus,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lacee Kraus,ou=Product Testing,dc=bitwarden,dc=com", - email: "KrausL@ea5d27109c534992bb828c5b0124e943.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonu Doncaster,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tonu Doncaster,ou=Peons,dc=bitwarden,dc=com", - email: "DoncastT@5d8901804e424468b0bef6e0378317d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tobye Rupnow,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tobye Rupnow,ou=Product Development,dc=bitwarden,dc=com", - email: "RupnowT@5cb8587bbf2c41a39017176951716d73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilberte Correia,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gilberte Correia,ou=Payroll,dc=bitwarden,dc=com", - email: "CorreiaG@6faffd19174647ed8adaeaef1a2a75ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Krishnamurthy PueGilchrist,ou=Product Development,dc=bitwarden,dc=com", - email: "PueGilcK@32972334779c4c7daa4ee6042db79c56.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elva Goza,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Elva Goza,ou=Human Resources,dc=bitwarden,dc=com", - email: "GozaE@d1f70e2814da436e8e729474e3ae0ca1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wassim Sanzone,ou=Janitorial,dc=bitwarden,dc=com", - email: "SanzoneW@ea018c15212d4d0b83b37b8dca2d7a5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nath Gazier,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nath Gazier,ou=Administrative,dc=bitwarden,dc=com", - email: "GazierN@aefdcea121544b52a45f3a380c86d30e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Serene Tandiono,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Serene Tandiono,ou=Administrative,dc=bitwarden,dc=com", - email: "TandionS@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guner Sinnett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Guner Sinnett,ou=Payroll,dc=bitwarden,dc=com", - email: "SinnettG@c73dbaa0e70c411fa0d04bf8fe86f3a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mahesh Postlethwaite,ou=Peons,dc=bitwarden,dc=com", - email: "PostletM@7526aadf2aaf4f8f86b2debc64e016dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolien Predel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carolien Predel,ou=Management,dc=bitwarden,dc=com", - email: "PredelC@7770d32208f64a63bf44fae15e8c6935.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fouad Woodman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fouad Woodman,ou=Product Development,dc=bitwarden,dc=com", - email: "WoodmanF@deaa9dfec3b843c0b4f3e72afbba1381.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Remy Muenstermann,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Remy Muenstermann,ou=Payroll,dc=bitwarden,dc=com", - email: "MuensteR@a774bfe9f410429f835439e7192aaefa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erkan Burkert,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Erkan Burkert,ou=Product Development,dc=bitwarden,dc=com", - email: "BurkertE@d5a69c0f90ac41d3bc2cf5630c9098ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linnea Oliveira,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Linnea Oliveira,ou=Management,dc=bitwarden,dc=com", - email: "OliveirL@fb3c64c9b443484e8686e2aaa346d1de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steve Nass,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Steve Nass,ou=Product Testing,dc=bitwarden,dc=com", - email: "NassS@310fefd008494b9e8a0a81aff3327a1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henrie Malkani,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Henrie Malkani,ou=Product Development,dc=bitwarden,dc=com", - email: "MalkaniH@111621500be94783a2bfd9f6dfd05ba5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Almeta Batura,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Almeta Batura,ou=Peons,dc=bitwarden,dc=com", - email: "BaturaA@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gilly Dudgeon,ou=Payroll,dc=bitwarden,dc=com", - email: "DudgeonG@dcb0954e4af74751966d9af34246f81f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laurianne Storey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Laurianne Storey,ou=Human Resources,dc=bitwarden,dc=com", - email: "StoreyL@6ab835c0621d479dbd805d5189aa2b92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nady Straub,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nady Straub,ou=Management,dc=bitwarden,dc=com", - email: "StraubN@ef4d5bf16ea04edda300a945910f03e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maurijn Guilfoyle,ou=Human Resources,dc=bitwarden,dc=com", - email: "GuilfoyM@b0c48599d24847958412615828406699.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sukhendu Adamkowski,ou=Product Development,dc=bitwarden,dc=com", - email: "AdamkowS@4cccac2b65cb4d559e1c7c657101129e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sami McQuaig,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sami McQuaig,ou=Administrative,dc=bitwarden,dc=com", - email: "McQuaigS@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moises Semler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Moises Semler,ou=Product Development,dc=bitwarden,dc=com", - email: "SemlerM@2eeb9567dcd64347a2dcd6492aaa8ddc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Richard FWPtools,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Richard FWPtools,ou=Peons,dc=bitwarden,dc=com", - email: "FWPtoolR@dd8272e863174597a9c6eb5aaf131b06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shelba MacGillivray,ou=Janitorial,dc=bitwarden,dc=com", - email: "MacGillS@94747c09a3194eba8b7d52262cebca45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shaib Bottomley,ou=Janitorial,dc=bitwarden,dc=com", - email: "BottomlS@c70dbe261a1148e99aeacce847bbdb51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danielle Sells,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Danielle Sells,ou=Product Development,dc=bitwarden,dc=com", - email: "SellsD@703760e209f6497aa718fce078cb8340.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nashir Isaacs,ou=Product Testing,dc=bitwarden,dc=com", - email: "IsaacsN@3a117fad58d6422fb9086b1f787bebea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kac Throgmorton,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThrogmoK@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sylva Hikita,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sylva Hikita,ou=Administrative,dc=bitwarden,dc=com", - email: "HikitaS@a78ed8611e034976918da82623b252aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeannine McMurray,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jeannine McMurray,ou=Administrative,dc=bitwarden,dc=com", - email: "McMurraJ@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robbin Vanstory,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Robbin Vanstory,ou=Peons,dc=bitwarden,dc=com", - email: "VanstorR@d2a6214e814b4ea4b87489ad9882572a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertie Dix,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gertie Dix,ou=Product Testing,dc=bitwarden,dc=com", - email: "DixG@ebc00b9ae1f6452da423353f7889c3bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daloris Pippy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Daloris Pippy,ou=Human Resources,dc=bitwarden,dc=com", - email: "PippyD@dc4990156aa641249346113b8218bf9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinia Chytil,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Robinia Chytil,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChytilR@72967884fe2a4610a29d315ed4d9bc28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randy Haaksman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Randy Haaksman,ou=Payroll,dc=bitwarden,dc=com", - email: "HaaksmaR@3ecb1c63de854804b4e8af1966a28c00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alka Chiykowski,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChiykowA@64b8640cd7404f1e9ef28806435c2900.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginn Rembecki,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ginn Rembecki,ou=Payroll,dc=bitwarden,dc=com", - email: "RembeckG@1bca91d4fd4549c6bf14b515f5e0a173.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deva Morimoto,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Deva Morimoto,ou=Product Development,dc=bitwarden,dc=com", - email: "MorimotD@38b2663172424c999e78408a67cf7851.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sioux Laney,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sioux Laney,ou=Peons,dc=bitwarden,dc=com", - email: "LaneyS@e4daa158936a4fde9b3ebffb038e67fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Harmony Eslambolchi,ou=Peons,dc=bitwarden,dc=com", - email: "EslamboH@0aee22428274445fb9c2a16b33d788f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Demetri Sepe,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Demetri Sepe,ou=Administrative,dc=bitwarden,dc=com", - email: "SepeD@4e6ec37d862e441480157c39097f280d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zandra Buratynski,ou=Product Testing,dc=bitwarden,dc=com", - email: "BuratynZ@37c4f9ee232544a4846bc4a3466039ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mickey Fiset,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mickey Fiset,ou=Peons,dc=bitwarden,dc=com", - email: "FisetM@5b938862d9b84f248e738a32d39aab3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avie AltingMees,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Avie AltingMees,ou=Administrative,dc=bitwarden,dc=com", - email: "AltingMA@f2f9b94a61d74e48ae3ede318c7f996c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanya Ralph,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kanya Ralph,ou=Human Resources,dc=bitwarden,dc=com", - email: "RalphK@2ed3a0c0604d4f8d80fc4a72596ea1a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elisabeth Viens,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elisabeth Viens,ou=Peons,dc=bitwarden,dc=com", - email: "ViensE@ea4e16c32710425c934ffce7fc0703d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christin Hussain,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Christin Hussain,ou=Janitorial,dc=bitwarden,dc=com", - email: "HussainC@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephannie Oam,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stephannie Oam,ou=Management,dc=bitwarden,dc=com", - email: "OamS@bab890af02d045bcaf621cc90d0b2098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=WeeSeng Barr,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarrW@2e2a0c8690da45808c0e415496248633.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Saraann Rittenhouse,ou=Administrative,dc=bitwarden,dc=com", - email: "RittenhS@aab974bb6e3141739f83f690a4adf239.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kerrie Cholet,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kerrie Cholet,ou=Payroll,dc=bitwarden,dc=com", - email: "CholetK@6edf4c15ac51401f9d8774ffb0590b89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barnes Todaro,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Barnes Todaro,ou=Janitorial,dc=bitwarden,dc=com", - email: "TodaroB@102dfc559679498e886e0a19d56ecd00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulie Stellitano,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Paulie Stellitano,ou=Product Development,dc=bitwarden,dc=com", - email: "StellitP@5ad15098bcd947faa38496ab1dc4e2c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quon Lamm,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Quon Lamm,ou=Product Development,dc=bitwarden,dc=com", - email: "LammQ@a2e835bbc90a4bb8aa8eed7abb9fcd6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wenxi Reade,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wenxi Reade,ou=Janitorial,dc=bitwarden,dc=com", - email: "ReadeW@f541074a8300482d85b53966c8cecebb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fabienne Hoehling,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fabienne Hoehling,ou=Management,dc=bitwarden,dc=com", - email: "HoehlinF@ab5a3e15caae4984acf7b1a615995a84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=YokeKee Triggiano,ou=Administrative,dc=bitwarden,dc=com", - email: "TriggiaY@11375f30f6dd4d8d96f9eb019f620b90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lanita Delorenzi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lanita Delorenzi,ou=Peons,dc=bitwarden,dc=com", - email: "DelorenL@0a595c1902924e8c80901829c830cca2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cycelia Seiler,ou=Product Testing,dc=bitwarden,dc=com", - email: "SeilerC@97fbe9f514864d40bb6dc85e4d15c1c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Doralyn Cifersky,ou=Human Resources,dc=bitwarden,dc=com", - email: "CiferskD@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Flossi Carbonara,ou=Human Resources,dc=bitwarden,dc=com", - email: "CarbonaF@7a5ece6d9adf44888506b316b6709917.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chong Alleva,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chong Alleva,ou=Payroll,dc=bitwarden,dc=com", - email: "AllevaC@78da39afd8f041eaad04623e643dcf1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marjo Burkhardt,ou=Payroll,dc=bitwarden,dc=com", - email: "BurkharM@e55b43fab5194d70867c5cdfb0b99fcb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Barbette Wojnar,ou=Product Testing,dc=bitwarden,dc=com", - email: "WojnarB@afa80aa7187b419eb6bf52dc727c580b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theresita Flanagan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Theresita Flanagan,ou=Administrative,dc=bitwarden,dc=com", - email: "FlanagaT@65678c07e8734c7890d5cf5e76fde9cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luc Sutton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Luc Sutton,ou=Payroll,dc=bitwarden,dc=com", - email: "SuttonL@e8193f804bab49a9ab24a3360e9fb251.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adnan Madani,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Adnan Madani,ou=Product Development,dc=bitwarden,dc=com", - email: "MadaniA@9011e405bc8b4f8fa11f77635250f96d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jason Quelch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jason Quelch,ou=Janitorial,dc=bitwarden,dc=com", - email: "QuelchJ@643a7a9782f24ae2ae0ce0064cc2c175.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bernhard Purchasing,ou=Administrative,dc=bitwarden,dc=com", - email: "PurchasB@541a9a67add74942af05ec9661f08230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rocke Moubarak,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoubaraR@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terrence Rolston,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Terrence Rolston,ou=Management,dc=bitwarden,dc=com", - email: "RolstonT@f64d2b674404476caa1b13d86d94ce8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Douglass Kwee,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Douglass Kwee,ou=Product Testing,dc=bitwarden,dc=com", - email: "KweeD@b7096e7dad2d445c9a6a84bd0cc4e406.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manjit Sankey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Manjit Sankey,ou=Product Development,dc=bitwarden,dc=com", - email: "SankeyM@0e3113ef45cd4f5f8de5c47309c63f86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thalia Majid,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Thalia Majid,ou=Product Testing,dc=bitwarden,dc=com", - email: "MajidT@190762f539394f3d8d0e37edbd48fa26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anna Gullekson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Anna Gullekson,ou=Peons,dc=bitwarden,dc=com", - email: "GulleksA@893bc48ed45e4ab7ab4ee0815dd34812.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steffi Rok,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Steffi Rok,ou=Product Testing,dc=bitwarden,dc=com", - email: "RokS@8fb9d9d0bee6452fa8938ef7b2ecd6d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerrard Kearns,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gerrard Kearns,ou=Administrative,dc=bitwarden,dc=com", - email: "KearnsG@aca976004a314abfbb7dfda7c7926044.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rebekkah Letendre,ou=Administrative,dc=bitwarden,dc=com", - email: "LetendrR@1babd519a8034b2d99c4603db1b7c5f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teri Braginetz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Teri Braginetz,ou=Janitorial,dc=bitwarden,dc=com", - email: "BragineT@bff4b511cea9469fa37ffb543c659826.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nuri Spieker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nuri Spieker,ou=Peons,dc=bitwarden,dc=com", - email: "SpiekerN@afa80aa7187b419eb6bf52dc727c580b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tobi Bourahla,ou=Product Testing,dc=bitwarden,dc=com", - email: "BourahlT@19b361f0a9d047efa402d72785e83839.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flossy Leveille,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Flossy Leveille,ou=Management,dc=bitwarden,dc=com", - email: "LeveillF@e89f7d8012a542109e09ce98de1ebaa3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Witte Houghton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Witte Houghton,ou=Payroll,dc=bitwarden,dc=com", - email: "HoughtoW@c91b2ddabda245189089b8e227b823b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gateway Szaran,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gateway Szaran,ou=Administrative,dc=bitwarden,dc=com", - email: "SzaranG@ba21abcd355b438c8ca475845a96f139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othelia Henley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Othelia Henley,ou=Product Testing,dc=bitwarden,dc=com", - email: "HenleyO@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacia Sova,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Stacia Sova,ou=Janitorial,dc=bitwarden,dc=com", - email: "SovaS@11aa381a3094436abdc8bd9975f709cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yueping Lotochinski,ou=Human Resources,dc=bitwarden,dc=com", - email: "LotochiY@cb2e25cd93c145bf81000296630c3ab7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kellen Nickells,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kellen Nickells,ou=Product Development,dc=bitwarden,dc=com", - email: "NickellK@1eb9b53c6a0544dd9c49164e1f66daae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Subu Glofcheskie,ou=Janitorial,dc=bitwarden,dc=com", - email: "GlofcheS@49a15030fed84b5c949c8b818a768fcf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Noelle Miltenburg,ou=Human Resources,dc=bitwarden,dc=com", - email: "MiltenbN@325baca037db47019cfe17144614afb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marika Brombal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marika Brombal,ou=Peons,dc=bitwarden,dc=com", - email: "BrombalM@fc0c286626334794ab4a83e723107bf2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marjie Watchmaker,ou=Product Testing,dc=bitwarden,dc=com", - email: "WatchmaM@cfa5e8864d9a4014bb3e1303e126d0df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kally Woodyer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kally Woodyer,ou=Product Development,dc=bitwarden,dc=com", - email: "WoodyerK@d854a7d34f1f40b68a358853dc801a6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constancia Liao,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Constancia Liao,ou=Product Development,dc=bitwarden,dc=com", - email: "LiaoC@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alexander Riley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alexander Riley,ou=Janitorial,dc=bitwarden,dc=com", - email: "RileyA@e92792a71a1b4fd28678d03900079ed2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Concordia Radcliffe,ou=Janitorial,dc=bitwarden,dc=com", - email: "RadclifC@38a7625af1b14df88545f13f78008710.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobb Hubers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bobb Hubers,ou=Management,dc=bitwarden,dc=com", - email: "HubersB@13bd043663fc42cba2436f0d4858727a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vannie Clenney,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vannie Clenney,ou=Human Resources,dc=bitwarden,dc=com", - email: "ClenneyV@b18734eaf31b4b8a9fcf2accdab91823.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Udaya Kingaby,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Udaya Kingaby,ou=Peons,dc=bitwarden,dc=com", - email: "KingabyU@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dari OHara,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dari OHara,ou=Administrative,dc=bitwarden,dc=com", - email: "OHaraD@8a0cbe1fe7e149a8b47de17ec0983326.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merralee Firment,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Merralee Firment,ou=Product Development,dc=bitwarden,dc=com", - email: "FirmentM@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ricardo Osborne,ou=Human Resources,dc=bitwarden,dc=com", - email: "OsborneR@18eab17fefac4eeea398f028a117f313.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurie Alanoly,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aurie Alanoly,ou=Peons,dc=bitwarden,dc=com", - email: "AlanolyA@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nadim Junkin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nadim Junkin,ou=Peons,dc=bitwarden,dc=com", - email: "JunkinN@09bb099d23204c85bbfd94efdb157b79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erik Chapman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Erik Chapman,ou=Management,dc=bitwarden,dc=com", - email: "ChapmanE@9d01b447e6a64f299b9f22d5bfa6f85c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adora Lamers,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Adora Lamers,ou=Janitorial,dc=bitwarden,dc=com", - email: "LamersA@0d80b2a6494e4c3ea20974357dae6a78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kiem Kinniburgh,ou=Product Development,dc=bitwarden,dc=com", - email: "KinnibuK@e88ec12c0e274795b179c15ca876ea28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micah Brabec,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Micah Brabec,ou=Peons,dc=bitwarden,dc=com", - email: "BrabecM@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annette Brandsen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Annette Brandsen,ou=Product Development,dc=bitwarden,dc=com", - email: "BrandseA@87319c77ecd947ceb8993498705d4a28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amabelle Lockwood,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amabelle Lockwood,ou=Management,dc=bitwarden,dc=com", - email: "LockwooA@6c11e171b5ae4d6a948549d1ce64d6ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosaline Carldata,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosaline Carldata,ou=Peons,dc=bitwarden,dc=com", - email: "CarldatR@624142924058476ab877513f564d46a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diana Felczak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Diana Felczak,ou=Human Resources,dc=bitwarden,dc=com", - email: "FelczakD@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regis Liesemer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Regis Liesemer,ou=Peons,dc=bitwarden,dc=com", - email: "LiesemeR@08af06c825e94cb392bd12261cb97963.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joke Mrozinski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joke Mrozinski,ou=Administrative,dc=bitwarden,dc=com", - email: "MrozinsJ@cfa7040d433d4b838919647ccf3ca4bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcelle Hine,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marcelle Hine,ou=Product Development,dc=bitwarden,dc=com", - email: "HineM@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Orlyn Legrow,ou=Product Testing,dc=bitwarden,dc=com", - email: "LegrowO@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grayce Cicci,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Grayce Cicci,ou=Product Testing,dc=bitwarden,dc=com", - email: "CicciG@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idris CPM,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Idris CPM,ou=Management,dc=bitwarden,dc=com", - email: "CPMI@065d89caf6134a3f9c8662bc1542414d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tasia Sutarwala,ou=Administrative,dc=bitwarden,dc=com", - email: "SutarwaT@021f182578104bf484110ac6631b5efa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ree Budhram,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ree Budhram,ou=Product Development,dc=bitwarden,dc=com", - email: "BudhramR@a3f7434e2b8a46068e08a2b78a0eab76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elda Ranahan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elda Ranahan,ou=Peons,dc=bitwarden,dc=com", - email: "RanahanE@bd1d65ed4d0c4a7dad4e3b96610e9934.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pinder Metrailer,ou=Human Resources,dc=bitwarden,dc=com", - email: "MetrailP@d0bdf08d734447ea82c1911df5e50cfd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shailendra Kapsa,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shailendra Kapsa,ou=Management,dc=bitwarden,dc=com", - email: "KapsaS@43194b35694143d5b8419715c0e79567.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Persis Emig,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Persis Emig,ou=Peons,dc=bitwarden,dc=com", - email: "EmigP@9fafe4d0289a4f4bbac552a25b2345a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Wladyslaw Fuson,ou=Payroll,dc=bitwarden,dc=com", - email: "FusonW@770858a0ba27427fa80380c180b40ddb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jillayne Gendron,ou=Human Resources,dc=bitwarden,dc=com", - email: "GendronJ@b154fab59ca14553be1151ffa2cd4d97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laurel Grills,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Laurel Grills,ou=Product Testing,dc=bitwarden,dc=com", - email: "GrillsL@5d4e8ddf2cb3440da6c01a697205179e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saloma Jaques,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Saloma Jaques,ou=Administrative,dc=bitwarden,dc=com", - email: "JaquesS@374014674548406aaa9d72c3d1ad3586.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sebastian Kammerer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sebastian Kammerer,ou=Management,dc=bitwarden,dc=com", - email: "KammereS@986fe4fcc1ec45dd9a8c35010d313412.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grayce Roesler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Grayce Roesler,ou=Product Testing,dc=bitwarden,dc=com", - email: "RoeslerG@bd28f191e92142cf98b8765cb13928aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helene Krowlek,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Helene Krowlek,ou=Administrative,dc=bitwarden,dc=com", - email: "KrowlekH@04bb376282154efc832b529dc3f80793.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charman Nagy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Charman Nagy,ou=Product Development,dc=bitwarden,dc=com", - email: "NagyC@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacqueline Sorathia,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jacqueline Sorathia,ou=Management,dc=bitwarden,dc=com", - email: "SorathiJ@33045c677af94d5d866f53c47ff9ab36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leanne Devine,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leanne Devine,ou=Product Development,dc=bitwarden,dc=com", - email: "DevineL@683e25fc9db544c199938de64838b325.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manon Benham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Manon Benham,ou=Product Testing,dc=bitwarden,dc=com", - email: "BenhamM@15fb4ae5d92f48d1828a5523a2de1119.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meg Lara,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Meg Lara,ou=Human Resources,dc=bitwarden,dc=com", - email: "LaraM@0d3f6cc1cdcf4ec187af48e309baf95b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanae Carpool,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sanae Carpool,ou=Janitorial,dc=bitwarden,dc=com", - email: "CarpoolS@8d1f37d60b9647bf981f8d5200deacf7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mia Willis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mia Willis,ou=Product Testing,dc=bitwarden,dc=com", - email: "WillisM@8bea6081e631433ebecd2c41f7175d46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gheorghe Younan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gheorghe Younan,ou=Administrative,dc=bitwarden,dc=com", - email: "YounanG@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Val Toth,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Val Toth,ou=Administrative,dc=bitwarden,dc=com", - email: "TothV@b3dbdab84e2c48b6978c034f8aec9c11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gaynor MacDermaid,ou=Product Testing,dc=bitwarden,dc=com", - email: "MacDermG@5d66866885fa4ba8b5860161fb0bcacc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ishan Puukila,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ishan Puukila,ou=Product Testing,dc=bitwarden,dc=com", - email: "PuukilaI@f62f35ed22de4bb392da671e518673e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davinder Thibert,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Davinder Thibert,ou=Administrative,dc=bitwarden,dc=com", - email: "ThibertD@2abf92fd8c714d91bc2b9d955d40f2ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mounir Theoret,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mounir Theoret,ou=Payroll,dc=bitwarden,dc=com", - email: "TheoretM@87263f2ad4e44ac39562038c9af16152.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Air Baldwin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Air Baldwin,ou=Product Development,dc=bitwarden,dc=com", - email: "BaldwinA@503fe0b136ce4292a59167d529c63c6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlyne Miao,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Arlyne Miao,ou=Human Resources,dc=bitwarden,dc=com", - email: "MiaoA@14f0a617fa68422cb151ec721a7c3c6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debi Seniuk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Debi Seniuk,ou=Janitorial,dc=bitwarden,dc=com", - email: "SeniukD@409ada935d6b4cf28b401fd7d4cd1227.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pas Maksuta,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pas Maksuta,ou=Product Development,dc=bitwarden,dc=com", - email: "MaksutaP@c4687fc25321403c8c563bd392c6eebd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camellia Tencer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Camellia Tencer,ou=Peons,dc=bitwarden,dc=com", - email: "TencerC@9166d82b2507407f821e6bc43e6ad329.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HinWai Menaker,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=HinWai Menaker,ou=Human Resources,dc=bitwarden,dc=com", - email: "MenakerH@c44d8fdf489549e795a051d84cc2a931.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kalindi Dickerson,ou=Payroll,dc=bitwarden,dc=com", - email: "DickersK@49f8e0161dfd444bb97c350a4d451c6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marilynn Wimbush,ou=Administrative,dc=bitwarden,dc=com", - email: "WimbushM@52a17214cb1d4651a3e9bb6b3656b1d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenore Inrig,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lenore Inrig,ou=Payroll,dc=bitwarden,dc=com", - email: "InrigL@9d05795ed464449781ae591bd196a1b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Monroe Turbyfill,ou=Payroll,dc=bitwarden,dc=com", - email: "TurbyfiM@3b405672834f4c2186242e2cccd0abf2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibeal Manner,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sibeal Manner,ou=Management,dc=bitwarden,dc=com", - email: "MannerS@aea15e7df8c442459769e06303aa4e66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vo Filpus,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vo Filpus,ou=Management,dc=bitwarden,dc=com", - email: "FilpusV@05f7379ac7b945a2a2343b19ee63fd8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martine Captives,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Martine Captives,ou=Payroll,dc=bitwarden,dc=com", - email: "CaptiveM@6e37f106489b4294bc905b93ac1e126f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Franka Jakabffy,ou=Product Testing,dc=bitwarden,dc=com", - email: "JakabffF@9a62cb6fe77549efbb6b065fb22448c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wileen Elgar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wileen Elgar,ou=Janitorial,dc=bitwarden,dc=com", - email: "ElgarW@369d31e12885450e8a3e646342f4bbde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Basheer Illidge,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Basheer Illidge,ou=Management,dc=bitwarden,dc=com", - email: "IllidgeB@f9e13296819e4d139b7b490c05eac7c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jodine Swartz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jodine Swartz,ou=Product Testing,dc=bitwarden,dc=com", - email: "SwartzJ@07f011cc742c4813b7b97485646c3ab6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Johnnie Dhar,ou=Janitorial,dc=bitwarden,dc=com", - email: "DharJ@0a9a71507ed94ca2ba9642f4919766e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbette VanHaste,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Barbette VanHaste,ou=Payroll,dc=bitwarden,dc=com", - email: "VanHastB@60bd4b43f6e248668a53825c3bbcbca3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Envoy Dignam,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Envoy Dignam,ou=Product Development,dc=bitwarden,dc=com", - email: "DignamE@6ba8baad97224f009bad99f9ff3a1b6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Agretha Whitehurst,ou=Product Testing,dc=bitwarden,dc=com", - email: "WhitehuA@7cefaa55a36f4be4acff376f7ddd1a67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ghassan Visser,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ghassan Visser,ou=Product Development,dc=bitwarden,dc=com", - email: "VisserG@87c78a2aa2ad454eb9d547c989c59937.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryna Grandy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bryna Grandy,ou=Product Testing,dc=bitwarden,dc=com", - email: "GrandyB@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kathryne Rockley,ou=Janitorial,dc=bitwarden,dc=com", - email: "RockleyK@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nonna Calkins,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nonna Calkins,ou=Product Development,dc=bitwarden,dc=com", - email: "CalkinsN@ca68c16297b44efe9bd231fcf1f835a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tchangid Cosner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tchangid Cosner,ou=Peons,dc=bitwarden,dc=com", - email: "CosnerT@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Happy Armstead,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Happy Armstead,ou=Human Resources,dc=bitwarden,dc=com", - email: "ArmsteaH@0ed116231128466cad659b85d73b9c7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siva Trader,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Siva Trader,ou=Management,dc=bitwarden,dc=com", - email: "TraderS@b838776a11e74718955f6601c7f8d1e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dredi Maragoudakis,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaragouD@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norton Hlady,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Norton Hlady,ou=Management,dc=bitwarden,dc=com", - email: "HladyN@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benita Brivet,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Benita Brivet,ou=Human Resources,dc=bitwarden,dc=com", - email: "BrivetB@e37545ccfd5e4e4281ccd855336fcf03.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ulrike Ta,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ulrike Ta,ou=Peons,dc=bitwarden,dc=com", - email: "TaU@e92792a71a1b4fd28678d03900079ed2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gilda Rainsforth,ou=Administrative,dc=bitwarden,dc=com", - email: "RainsfoG@412210ae069c4a339c017fbe0c820674.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Perle Vandenberg,ou=Janitorial,dc=bitwarden,dc=com", - email: "VandenbP@52c9d88a3dde448a9626a726bccbd686.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jimmy Ramey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jimmy Ramey,ou=Management,dc=bitwarden,dc=com", - email: "RameyJ@98f223020f174b0b8eb03e442bd857ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Romano Teacher,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Romano Teacher,ou=Administrative,dc=bitwarden,dc=com", - email: "TeacherR@6a7ccf71870148fe8f9ac4d527b4d501.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Poppy Ong,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Poppy Ong,ou=Payroll,dc=bitwarden,dc=com", - email: "OngP@7f04a3ff8bcd4af8bad4e2a152862067.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maudie Sadorra,ou=Product Testing,dc=bitwarden,dc=com", - email: "SadorraM@9a316795d99d40a2b8152947d5d04a37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ynes Witzmann,ou=Human Resources,dc=bitwarden,dc=com", - email: "WitzmanY@5b79fe30a5de465185a631630aa2a024.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Takako Cambre,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Takako Cambre,ou=Product Development,dc=bitwarden,dc=com", - email: "CambreT@4cf289446e164bf8828133d117ff1a2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eachelle Etu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eachelle Etu,ou=Administrative,dc=bitwarden,dc=com", - email: "EtuE@53c3e76f124f49beb679b871a3ea5611.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merlina Eimer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Merlina Eimer,ou=Peons,dc=bitwarden,dc=com", - email: "EimerM@d0eb59d9416b478ea7e9e6add086d998.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Riyaz McNicol,ou=Product Testing,dc=bitwarden,dc=com", - email: "McNicolR@468705ba5f434f3295170aa6ba4375b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imelda Ornburn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Imelda Ornburn,ou=Management,dc=bitwarden,dc=com", - email: "OrnburnI@4aebcb98356f4866a9dbef1e58338e49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Deryck Bhatt,ou=Janitorial,dc=bitwarden,dc=com", - email: "BhattD@37f0f82dfcd246b8ad39145ec76d2b17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Doroteya Boatwright,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoatwriD@32d242671ec341929f315049a0e40a31.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elex Syal,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elex Syal,ou=Payroll,dc=bitwarden,dc=com", - email: "SyalE@c4aa09c164484f0594345b382eb1b6dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vern Rantala,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vern Rantala,ou=Administrative,dc=bitwarden,dc=com", - email: "RantalaV@8ec725a0b25640da9e4f5b4c8838762a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dacy Rodriguez,ou=Administrative,dc=bitwarden,dc=com", - email: "RodriguD@5414557178404b8b850ea72aa60255e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarina Handley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sarina Handley,ou=Peons,dc=bitwarden,dc=com", - email: "HandleyS@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edward Meldrum,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Edward Meldrum,ou=Product Development,dc=bitwarden,dc=com", - email: "MeldrumE@42f6c709ced54560a282482057eafc53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margaretta Hord,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Margaretta Hord,ou=Payroll,dc=bitwarden,dc=com", - email: "HordM@310fefd008494b9e8a0a81aff3327a1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Xiaofeng Chaplin,ou=Product Development,dc=bitwarden,dc=com", - email: "ChaplinX@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calley Hvezda,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Calley Hvezda,ou=Administrative,dc=bitwarden,dc=com", - email: "HvezdaC@07d1afa381e34835a071c5951db2f646.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rodina Sumi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rodina Sumi,ou=Payroll,dc=bitwarden,dc=com", - email: "SumiR@54481fd28e0b44a9b20652a08b2dc61e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessa Harlan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jessa Harlan,ou=Payroll,dc=bitwarden,dc=com", - email: "HarlanJ@993e0c502fc14bcbb5cab23104ffdc41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Curt Tadge,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Curt Tadge,ou=Human Resources,dc=bitwarden,dc=com", - email: "TadgeC@1461dbc17b9c4f428daab775690e9506.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bertrand Spearpoint,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bertrand Spearpoint,ou=Management,dc=bitwarden,dc=com", - email: "SpearpoB@fdcc23b3e21f4f0fa3bffbc78ce6d7d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Roshelle Gaskins,ou=Janitorial,dc=bitwarden,dc=com", - email: "GaskinsR@debbccc9cd9041e58d59a87945bc2243.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annabel Cadtools,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annabel Cadtools,ou=Administrative,dc=bitwarden,dc=com", - email: "CadtoolA@900720d62ed64510a7a9059255eb24bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cathleen Osiakwan,ou=Payroll,dc=bitwarden,dc=com", - email: "OsiakwaC@7b1ae059f10c4c999e0f2bc4fd98859f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanny Wayler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hanny Wayler,ou=Product Testing,dc=bitwarden,dc=com", - email: "WaylerH@a5a34b68dfa14ad7bc7271c070601714.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devi Cobran,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Devi Cobran,ou=Peons,dc=bitwarden,dc=com", - email: "CobranD@88c26c98102f460daa0c9c7911079e0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tian Sydnor,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tian Sydnor,ou=Janitorial,dc=bitwarden,dc=com", - email: "SydnorT@35d9476cb8424bdab8902ee7a92df819.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Remi Ladd,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Remi Ladd,ou=Product Development,dc=bitwarden,dc=com", - email: "LaddR@15697ed59de04051be420308b9e31bf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miles Bannan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Miles Bannan,ou=Product Development,dc=bitwarden,dc=com", - email: "BannanM@0b664dacb51949f5b5b39c9e47c7f6dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annnora Burchby,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Annnora Burchby,ou=Management,dc=bitwarden,dc=com", - email: "BurchbyA@8df37ece50134935a25e518004ace140.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariet Finzel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mariet Finzel,ou=Human Resources,dc=bitwarden,dc=com", - email: "FinzelM@273dfd92cd9f45d0aa9350f559239559.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=MingChang Boddeveld,ou=Payroll,dc=bitwarden,dc=com", - email: "BoddeveM@77e93027bf924f589b18be848df73155.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozalie Kesler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rozalie Kesler,ou=Product Development,dc=bitwarden,dc=com", - email: "KeslerR@9e65511aabbb470e82559fb2b20a2924.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Harriette Zenisek,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZenisekH@3dc397261aae4717a7ed87ae45b11795.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Santiago Gruszczynski,ou=Product Development,dc=bitwarden,dc=com", - email: "GruszczS@d0510c6d4d2248279a5b0899ea306017.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jude Farmer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jude Farmer,ou=Peons,dc=bitwarden,dc=com", - email: "FarmerJ@d275905ea7174c8cab687a1c10573cba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mervin Grisoni,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mervin Grisoni,ou=Peons,dc=bitwarden,dc=com", - email: "GrisoniM@16e252f623154ea09c88ae20c619b8c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarath Beekman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sarath Beekman,ou=Payroll,dc=bitwarden,dc=com", - email: "BeekmanS@92160f75073741b5a487392a12009a3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anna Hepburn,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anna Hepburn,ou=Payroll,dc=bitwarden,dc=com", - email: "HepburnA@9a316795d99d40a2b8152947d5d04a37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sherilyn Recsnik,ou=Product Testing,dc=bitwarden,dc=com", - email: "RecsnikS@39fcb29a69e44f47ac997e5c56603f1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bethany Passier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bethany Passier,ou=Human Resources,dc=bitwarden,dc=com", - email: "PassierB@9b511bf76a87427285e307ecdc0c4cb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Traci DuBerger,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Traci DuBerger,ou=Product Development,dc=bitwarden,dc=com", - email: "DuBergeT@4790190082cb4f5abacc6cccbd58144a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ceciley Kuan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ceciley Kuan,ou=Payroll,dc=bitwarden,dc=com", - email: "KuanC@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tatiana Hoequist,ou=Payroll,dc=bitwarden,dc=com", - email: "HoequisT@cfb0243cd1fe4f70a9f0422d30776059.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krishan Stamps,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Krishan Stamps,ou=Product Development,dc=bitwarden,dc=com", - email: "StampsK@d2f384130fce4e7e8437086d4d7eb3d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colin Gibbins,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Colin Gibbins,ou=Human Resources,dc=bitwarden,dc=com", - email: "GibbinsC@47eb73ab21cc404d8ae8ada68387e955.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elysia Wierzba,ou=Product Testing,dc=bitwarden,dc=com", - email: "WierzbaE@5c156ad08db54158952031cf3253ef2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Utpala Neault,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Utpala Neault,ou=Administrative,dc=bitwarden,dc=com", - email: "NeaultU@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chery Dickinson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chery Dickinson,ou=Peons,dc=bitwarden,dc=com", - email: "DickinsC@8b4252ea9d114f95b65956efe85c0aae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elwood Schmitz,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Elwood Schmitz,ou=Management,dc=bitwarden,dc=com", - email: "SchmitzE@80fa9db759cf45d8a9f0fb7fa92c1396.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trang Kang,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Trang Kang,ou=Janitorial,dc=bitwarden,dc=com", - email: "KangT@2e02b5adbe00404a986538a6f94c5721.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Norikatsu Tousignant,ou=Payroll,dc=bitwarden,dc=com", - email: "TousignN@986fe4fcc1ec45dd9a8c35010d313412.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marylee Lowrie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marylee Lowrie,ou=Management,dc=bitwarden,dc=com", - email: "LowrieM@da86453f48a14ef39804047ecac0cb70.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donall Zlatin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Donall Zlatin,ou=Management,dc=bitwarden,dc=com", - email: "ZlatinD@ab961322c29b4801a8d49767c505d9e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dilip Willette,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dilip Willette,ou=Janitorial,dc=bitwarden,dc=com", - email: "WillettD@06a75fbf1c264fecab05cf3c4c5e8244.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gen Templeton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gen Templeton,ou=Payroll,dc=bitwarden,dc=com", - email: "TempletG@cc62ce54a4e64270838c00138d879780.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celinda Guttman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Celinda Guttman,ou=Product Testing,dc=bitwarden,dc=com", - email: "GuttmanC@8bb20197d5384c00b37949bce07069cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dede Lan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dede Lan,ou=Product Development,dc=bitwarden,dc=com", - email: "LanD@b2685c20be7244a2b29f08c6434ac903.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othella Toolset,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Othella Toolset,ou=Payroll,dc=bitwarden,dc=com", - email: "ToolsetO@2f13ca54ee794decad24515251a42dff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genovera Kusmider,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Genovera Kusmider,ou=Management,dc=bitwarden,dc=com", - email: "KusmideG@34d5ed1c9d7241bdb443981287a04354.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JoAnn Donohue,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=JoAnn Donohue,ou=Product Development,dc=bitwarden,dc=com", - email: "DonohueJ@2d00b4c5d94943aaab567276a570648e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eliezer Laing,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eliezer Laing,ou=Management,dc=bitwarden,dc=com", - email: "LaingE@4439537e23604aa9a13c7005cfec2ed7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hayley Rundstein,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hayley Rundstein,ou=Management,dc=bitwarden,dc=com", - email: "RundsteH@6e5501c4ee9c48b3adc252f44774d85a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kerianne Hinds,ou=Human Resources,dc=bitwarden,dc=com", - email: "HindsK@edf26b21784c41bfaf957ea90f1b32bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daffi Chalker,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Daffi Chalker,ou=Payroll,dc=bitwarden,dc=com", - email: "ChalkerD@bf919e17e05f4868b7c226bdabccfd39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debee Hazelrig,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Debee Hazelrig,ou=Peons,dc=bitwarden,dc=com", - email: "HazelriD@91469109e9e74dbeada032db2abfd838.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Eda Kasdorf,ou=Human Resources,dc=bitwarden,dc=com", - email: "KasdorfE@3cd269b5d58f4f4392c1d0f7bebb70ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Warren Niu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Warren Niu,ou=Product Testing,dc=bitwarden,dc=com", - email: "NiuW@a71709f685af42718e5d72a70ff54dea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thuong Malkinson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Thuong Malkinson,ou=Administrative,dc=bitwarden,dc=com", - email: "MalkinsT@20d733e4c13941c7bc31419a4b4229c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Remi Denver,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Remi Denver,ou=Janitorial,dc=bitwarden,dc=com", - email: "DenverR@79479fbb7bd345d6b6aa08b455669b8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maritsa Keenan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maritsa Keenan,ou=Payroll,dc=bitwarden,dc=com", - email: "KeenanM@c37d3b12215747d99472a7fb366acdb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnath Linn,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Johnath Linn,ou=Product Testing,dc=bitwarden,dc=com", - email: "LinnJ@3bd36e687afb47ec92c7d0d49064bd14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joan Yousuf,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Joan Yousuf,ou=Payroll,dc=bitwarden,dc=com", - email: "YousufJ@d71f931e88694d74b88e32769af98e29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roscoe LePage,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Roscoe LePage,ou=Janitorial,dc=bitwarden,dc=com", - email: "LePageR@05860c650fd74a9da6c29ee5ab8fb098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Powell Tosczak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Powell Tosczak,ou=Human Resources,dc=bitwarden,dc=com", - email: "TosczakP@d221ea793fe54c61b6d0a123f7f92114.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charles Chatha,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Charles Chatha,ou=Management,dc=bitwarden,dc=com", - email: "ChathaC@a0cd6adce0a94b1fa4dd97607ada8ecc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Blondelle Sherwin,ou=Payroll,dc=bitwarden,dc=com", - email: "SherwinB@ab1580f3c871483c8482cf412bf044c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anne Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", - email: "NagenthA@b60aa937d01647ea80a3225aa7e4cdc5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Xenia Schierbaum,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchierbX@5b0a4ae806d141a2b61a40d9b397ed02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Arabelle RamirezChavez,ou=Janitorial,dc=bitwarden,dc=com", - email: "RamirezA@130d7984e3224d79a3593bfbc13ee192.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tina Dadalt,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tina Dadalt,ou=Janitorial,dc=bitwarden,dc=com", - email: "DadaltT@70b6429752274e8fb78443facd8775cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sosanna Starnes,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sosanna Starnes,ou=Payroll,dc=bitwarden,dc=com", - email: "StarnesS@987beca3f52a49bd924ac83295cf5b4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilly Wasylyk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gilly Wasylyk,ou=Management,dc=bitwarden,dc=com", - email: "WasylykG@79d5277aef56406eb7a48c1a74d35976.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naser Cooksey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Naser Cooksey,ou=Product Development,dc=bitwarden,dc=com", - email: "CookseyN@bb2df33f538f4a84ae604317f6602688.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betta Parn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Betta Parn,ou=Management,dc=bitwarden,dc=com", - email: "ParnB@38dcec66f26c4456ab9d677c65296ef1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lon Sourour,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lon Sourour,ou=Human Resources,dc=bitwarden,dc=com", - email: "SourourL@4a2fd4a05dbb410fa7af8a1d24b5cd04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neetu Kromer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Neetu Kromer,ou=Payroll,dc=bitwarden,dc=com", - email: "KromerN@4a5d6761844a487688a8f353a67dc3a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lon Sells,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lon Sells,ou=Human Resources,dc=bitwarden,dc=com", - email: "SellsL@28fca843a5ae4175b7bbc20728951453.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shivdarsan Garry,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shivdarsan Garry,ou=Management,dc=bitwarden,dc=com", - email: "GarryS@474927d6f0584e7f9ec7edbb9c9a6503.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Co Reinhold,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Co Reinhold,ou=Human Resources,dc=bitwarden,dc=com", - email: "ReinholC@7d9cd1f5b4d645a6bff13b745f4db29e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inez Elks,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Inez Elks,ou=Human Resources,dc=bitwarden,dc=com", - email: "ElksI@fd2bad63f6454f51b13a625709ed0d80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lalit DaSilva,ou=Janitorial,dc=bitwarden,dc=com", - email: "DaSilvaL@d45f6836f596476594ad223437a92901.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=John Senecal,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=John Senecal,ou=Payroll,dc=bitwarden,dc=com", - email: "SenecalJ@26e1dec8a04040fb9bea3b60a85c414d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Liz Weatherspoon,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeatherL@6ab6650181504c9b862cd99522e8d54f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marit Whatley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marit Whatley,ou=Payroll,dc=bitwarden,dc=com", - email: "WhatleyM@ca07554d305246dd85334089406d833c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sammie Datta,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sammie Datta,ou=Human Resources,dc=bitwarden,dc=com", - email: "DattaS@80031e1708f3413ea32c3a78e1027c0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pegeen Satterfield,ou=Human Resources,dc=bitwarden,dc=com", - email: "SatterfP@6616dd3e145e4e6a982af39cc5dff517.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clea Laing,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clea Laing,ou=Peons,dc=bitwarden,dc=com", - email: "LaingC@4cb31507770f4eb5b18d7d1eac84d8c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rex Pelletier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rex Pelletier,ou=Human Resources,dc=bitwarden,dc=com", - email: "PelletiR@7a7d0894c6494a99ba1054d717cb6514.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaby Dybenko,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gaby Dybenko,ou=Peons,dc=bitwarden,dc=com", - email: "DybenkoG@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dwight Kinstley,ou=Janitorial,dc=bitwarden,dc=com", - email: "KinstleD@44cbc1ffc61f4407b46df0ad2810f7c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Velma Donahee,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Velma Donahee,ou=Product Testing,dc=bitwarden,dc=com", - email: "DonaheeV@49fad969a9cf4f7f9ee17b24c9d91f37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chawki Targosky,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chawki Targosky,ou=Product Testing,dc=bitwarden,dc=com", - email: "TargoskC@6166cdfc1e46480f804599bfc1632742.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clemente Boroski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clemente Boroski,ou=Peons,dc=bitwarden,dc=com", - email: "BoroskiC@c515863a84e8438aba0830f2adfe9717.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JinYun Vea,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=JinYun Vea,ou=Product Development,dc=bitwarden,dc=com", - email: "VeaJ@53ded4f1811e45138f20f4b0826a480a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dawn Pelland,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dawn Pelland,ou=Product Development,dc=bitwarden,dc=com", - email: "PellandD@c3e4fed0ee6543d6b658ce41386d4984.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nicole Shamshiri,ou=Administrative,dc=bitwarden,dc=com", - email: "ShamshiN@fad13712be524b2bb53fd1f676c9976a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Snehal Benne,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Snehal Benne,ou=Human Resources,dc=bitwarden,dc=com", - email: "BenneS@34b4596fe27f4849b36cd75d1f4d495a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selma Sinasac,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Selma Sinasac,ou=Product Development,dc=bitwarden,dc=com", - email: "SinasacS@21bcf6a485b34cf591de5e2c4c73b2a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vickie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", - email: "HolcombV@7a909c99a62141c5a029d819c95f8966.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cindee Majid,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cindee Majid,ou=Payroll,dc=bitwarden,dc=com", - email: "MajidC@a83f5faad57246c68e39925cbe706599.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Aubrey MacElwee,ou=Payroll,dc=bitwarden,dc=com", - email: "MacElweA@30940250e8844da39fb713b6d19a3328.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wieslaw Georges,ou=Human Resources,dc=bitwarden,dc=com", - email: "GeorgesW@c87e51ff3d124e2595c26b85c6dd84c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Croix Valiveti,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Croix Valiveti,ou=Human Resources,dc=bitwarden,dc=com", - email: "ValivetC@796636c316134f4ea242b8ffac574e0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jelene Watkins,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jelene Watkins,ou=Human Resources,dc=bitwarden,dc=com", - email: "WatkinsJ@d117baceef9a4168bde2647e78683a37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harriot Macklem,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Harriot Macklem,ou=Administrative,dc=bitwarden,dc=com", - email: "MacklemH@bd079bcc8df848e4ad40b50c80eb486f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Torey Kilzer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Torey Kilzer,ou=Product Testing,dc=bitwarden,dc=com", - email: "KilzerT@f75201d6bca8489ca55858f0848a1669.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilberta Howie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gilberta Howie,ou=Peons,dc=bitwarden,dc=com", - email: "HowieG@a6c2af5a8f94494bae6122c60dacfc6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrel Doerfel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Darrel Doerfel,ou=Payroll,dc=bitwarden,dc=com", - email: "DoerfelD@f638e931330c48d7ae5c0869dd725594.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anastasia Torrealba,ou=Human Resources,dc=bitwarden,dc=com", - email: "TorrealA@3ac90edfcfff46898d6b206ad200961d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phu Lukie,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Phu Lukie,ou=Product Testing,dc=bitwarden,dc=com", - email: "LukieP@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katja Teder,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Katja Teder,ou=Payroll,dc=bitwarden,dc=com", - email: "TederK@2adb967556814b64a4967092a73de947.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sybilla Cupido,ou=Human Resources,dc=bitwarden,dc=com", - email: "CupidoS@092396cbb25f48afadfced942905695a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rina Talton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rina Talton,ou=Administrative,dc=bitwarden,dc=com", - email: "TaltonR@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nelleke Haley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nelleke Haley,ou=Administrative,dc=bitwarden,dc=com", - email: "HaleyN@1ab5e46ea4fb40b292686a380747c794.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shalna Yao,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shalna Yao,ou=Peons,dc=bitwarden,dc=com", - email: "YaoS@652dfd4ca6554eef8a080dba766c7206.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karmen Wever,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Karmen Wever,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeverK@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ahmad Khatib,ou=Janitorial,dc=bitwarden,dc=com", - email: "KhatibA@3400488b7a3349e39ce7a604277f42e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Udaya Magnuson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Udaya Magnuson,ou=Payroll,dc=bitwarden,dc=com", - email: "MagnusoU@c72f77d8df544dfda8a24066a5992ad2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tory Racz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tory Racz,ou=Payroll,dc=bitwarden,dc=com", - email: "RaczT@e48e3f4a8e5644a2a44442f4e1916d3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danika Jamaly,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Danika Jamaly,ou=Payroll,dc=bitwarden,dc=com", - email: "JamalyD@995d47539bff49b8a85a5ecb474bd257.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loc McElligott,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Loc McElligott,ou=Product Development,dc=bitwarden,dc=com", - email: "McElligL@0e51e4ac4ff5492f891ae127459e83ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryanne Herr,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maryanne Herr,ou=Janitorial,dc=bitwarden,dc=com", - email: "HerrM@6c99b676cc944a0f933ecc8837dfc70b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norrie Vanwychen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Norrie Vanwychen,ou=Peons,dc=bitwarden,dc=com", - email: "VanwychN@cf312555e24a4a5fa558a25238d5f8c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Babette Hammond,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Babette Hammond,ou=Product Testing,dc=bitwarden,dc=com", - email: "HammondB@8289a29e96624f61a290ca3e806f9dd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dae Malloy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dae Malloy,ou=Peons,dc=bitwarden,dc=com", - email: "MalloyD@15a45d459da54368b0fd6d1cb3b6eb6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Demi Uyar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Demi Uyar,ou=Peons,dc=bitwarden,dc=com", - email: "UyarD@31b13d20c58546e5aa89cbb19323b703.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drago Wooley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Drago Wooley,ou=Payroll,dc=bitwarden,dc=com", - email: "WooleyD@b9938495171f4052b273ff15a3fbbcac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lira Akhtar,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lira Akhtar,ou=Human Resources,dc=bitwarden,dc=com", - email: "AkhtarL@dbc00763a9de485c97697558ab9ccf2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Godfrey Metzger,ou=Product Testing,dc=bitwarden,dc=com", - email: "MetzgerG@4ec057135a5045f1a9989fae44b8b962.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blair Costen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Blair Costen,ou=Payroll,dc=bitwarden,dc=com", - email: "CostenB@2ebbe6ccc158418ea03a56b7dd20f4d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celinka Truong,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Celinka Truong,ou=Management,dc=bitwarden,dc=com", - email: "TruongC@a3e17557b4384961a999c1890d509b79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olympe Wyndham,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Olympe Wyndham,ou=Payroll,dc=bitwarden,dc=com", - email: "WyndhamO@4cb9f71c0f8f42fdadb28a744475bd83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emp Slyteris,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Emp Slyteris,ou=Management,dc=bitwarden,dc=com", - email: "SlyteriE@60140563b5e14f1182bbd54a9d0efa93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brien Ensign,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brien Ensign,ou=Management,dc=bitwarden,dc=com", - email: "EnsignB@6f20d79c56464dde992ea2750d47121a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolas Whetston,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nicolas Whetston,ou=Management,dc=bitwarden,dc=com", - email: "WhetstoN@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annalise Combaz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Annalise Combaz,ou=Payroll,dc=bitwarden,dc=com", - email: "CombazA@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jiri Clary,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jiri Clary,ou=Janitorial,dc=bitwarden,dc=com", - email: "ClaryJ@7a051cc2e7634983a3582a71a4e80384.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emelia Farag,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emelia Farag,ou=Product Development,dc=bitwarden,dc=com", - email: "FaragE@b03911e4f64b4ff791e7c32a300a48fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cang Calva,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cang Calva,ou=Payroll,dc=bitwarden,dc=com", - email: "CalvaC@fab69171647048c9ab39ecbf968a6353.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anastasia Weidinger,ou=Payroll,dc=bitwarden,dc=com", - email: "WeidingA@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanjeev Tates,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sanjeev Tates,ou=Management,dc=bitwarden,dc=com", - email: "TatesS@b4ae1434dbd74e3f9fda915972e536aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lindsey Mina,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lindsey Mina,ou=Human Resources,dc=bitwarden,dc=com", - email: "MinaL@c8c34efeb3fd47f485bda2d57f298fa8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Adeniyi Bagshaw,ou=Payroll,dc=bitwarden,dc=com", - email: "BagshawA@2d496c580b4f4816a656973b9003a612.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yueh Gowl,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yueh Gowl,ou=Janitorial,dc=bitwarden,dc=com", - email: "GowlY@68d52d672a5243b093d527c822a00702.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tandi Macquistan,ou=Human Resources,dc=bitwarden,dc=com", - email: "MacquisT@1bd24daedf304f73b8c022eec1639654.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=America Ballarte,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=America Ballarte,ou=Administrative,dc=bitwarden,dc=com", - email: "BallartA@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Unreg Desjarlais,ou=Product Development,dc=bitwarden,dc=com", - email: "DesjarlU@2daa2d54a3ef4729ab85003e87e24fc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Student Center,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Student Center,ou=Product Testing,dc=bitwarden,dc=com", - email: "CenterS@554afdc240874cc085face3f95650c9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jillana Cusick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jillana Cusick,ou=Product Testing,dc=bitwarden,dc=com", - email: "CusickJ@5464c7892e2c49b9ab8b77fcfa248401.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=ChiKeung Matton,ou=Product Testing,dc=bitwarden,dc=com", - email: "MattonC@4ffdbcbdfbba4f78b2cb0e4b52273909.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edmund Caine,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Edmund Caine,ou=Janitorial,dc=bitwarden,dc=com", - email: "CaineE@1fa19cc59b0a4b048ab223f06dc01275.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Elaine Ketsler,ou=Human Resources,dc=bitwarden,dc=com", - email: "KetslerE@df756e7ca37d42aaab0cfecdbe1dbcdc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lawrence Rajczi,ou=Product Development,dc=bitwarden,dc=com", - email: "RajcziL@a7efbad4dbbd458699231bf651e29d1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fleur Dosanjh,ou=Payroll,dc=bitwarden,dc=com", - email: "DosanjhF@c2b132c5eea24821b75062bcddc065ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faith Langenberg,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Faith Langenberg,ou=Product Development,dc=bitwarden,dc=com", - email: "LangenbF@25309a8b2a9a4469a8c716ccd88d0aa6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gussi Zisu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gussi Zisu,ou=Product Development,dc=bitwarden,dc=com", - email: "ZisuG@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Enrica Scss,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Enrica Scss,ou=Human Resources,dc=bitwarden,dc=com", - email: "ScssE@8dadc7ef65624c618ad03f0f74792b58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franklin Mahlig,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Franklin Mahlig,ou=Payroll,dc=bitwarden,dc=com", - email: "MahligF@fa39eb6119174bbca1d9160100211484.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hazem Doerksen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hazem Doerksen,ou=Management,dc=bitwarden,dc=com", - email: "DoerkseH@0c71a55b89b94698aa504239bb77212e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabra Williams,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sabra Williams,ou=Payroll,dc=bitwarden,dc=com", - email: "WilliamS@dbff573db07a4ff3be645ffc89fde555.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Des Terrell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Des Terrell,ou=Product Testing,dc=bitwarden,dc=com", - email: "TerrellD@9bfb2ce2091b4362a561113661f40d4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolene Casey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jolene Casey,ou=Product Development,dc=bitwarden,dc=com", - email: "CaseyJ@9b70e886a18d422fa3404374b5a9613c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karilynn Dekeyser,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karilynn Dekeyser,ou=Management,dc=bitwarden,dc=com", - email: "DekeyseK@87ac1189e97646f890363efe4db63ec0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaal Gach,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gaal Gach,ou=Product Testing,dc=bitwarden,dc=com", - email: "GachG@f3c670844ee04d96918bc7abde299f48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shelia Bianchi,ou=Human Resources,dc=bitwarden,dc=com", - email: "BianchiS@52d447bfc2464a51a20925b35098fffa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emory Davalo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Emory Davalo,ou=Management,dc=bitwarden,dc=com", - email: "DavaloE@38889c54d4b943c0b9fc26641a496258.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leia Boccali,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leia Boccali,ou=Management,dc=bitwarden,dc=com", - email: "BoccaliL@c322231add6444d08c5c332c0290fe75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hollie Redding,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hollie Redding,ou=Payroll,dc=bitwarden,dc=com", - email: "ReddingH@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurita Hewett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maurita Hewett,ou=Human Resources,dc=bitwarden,dc=com", - email: "HewettM@3b31b1e22b674d48829733c162895a88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alberta Popel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Alberta Popel,ou=Product Testing,dc=bitwarden,dc=com", - email: "PopelA@4d42e606140043c2b9dd8fa49a74f077.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorilyn Iribarren,ou=Peons,dc=bitwarden,dc=com", - email: "IribarrL@3e32ccd0c8a847b6ac8fb9c09f485fe3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Warden Norgaard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Warden Norgaard,ou=Human Resources,dc=bitwarden,dc=com", - email: "NorgaarW@56a9fc98293a421ebffe47b36941f797.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cherilynn Schwab,ou=Administrative,dc=bitwarden,dc=com", - email: "SchwabC@1aebb083de1f400e95541f63da23f2c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephine Este,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Stephine Este,ou=Janitorial,dc=bitwarden,dc=com", - email: "EsteS@cdc522ed20cd44a189467c4e7a11e69b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jenny Hunsberger,ou=Human Resources,dc=bitwarden,dc=com", - email: "HunsberJ@158d3f3fe926431185097653519b63f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allx Vezeau,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Allx Vezeau,ou=Product Development,dc=bitwarden,dc=com", - email: "VezeauA@85300bcc110a498eb3ba9f0540413134.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kristen Tattenbaum,ou=Product Testing,dc=bitwarden,dc=com", - email: "TattenbK@9beb3a1b2fdf4217931814a85ad3b3c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hattie Offers,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hattie Offers,ou=Human Resources,dc=bitwarden,dc=com", - email: "OffersH@0db8d6bb53fc45408829aecc391083c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Priti Stowe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Priti Stowe,ou=Product Testing,dc=bitwarden,dc=com", - email: "StoweP@22b03905699c4e05b21e937a3135b87c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Antonietta Sawchuk,ou=Payroll,dc=bitwarden,dc=com", - email: "SawchukA@5d8cc64a505e4795adb2db74fb44a1cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilly Lienemann,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tilly Lienemann,ou=Product Development,dc=bitwarden,dc=com", - email: "LienemaT@2701f21728624e23b32e7e4a717079a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constantina Totaro,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Constantina Totaro,ou=Product Development,dc=bitwarden,dc=com", - email: "TotaroC@021252a973814ed5ba107ac123b1e8a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bendite Basser,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bendite Basser,ou=Management,dc=bitwarden,dc=com", - email: "BasserB@d3b588680db34a60a238a39048e01e24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trish Ettridge,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Trish Ettridge,ou=Product Testing,dc=bitwarden,dc=com", - email: "EttridgT@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leola Musca,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Leola Musca,ou=Peons,dc=bitwarden,dc=com", - email: "MuscaL@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oral Priestley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Oral Priestley,ou=Peons,dc=bitwarden,dc=com", - email: "PriestlO@d2ecbc224647418fad2b4f9f972875ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yonik Yurach,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Yonik Yurach,ou=Product Testing,dc=bitwarden,dc=com", - email: "YurachY@91c2f03d5f5f46289c8711d8060fde6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hudai Weare,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hudai Weare,ou=Peons,dc=bitwarden,dc=com", - email: "WeareH@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miguela Brodersen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Miguela Brodersen,ou=Product Development,dc=bitwarden,dc=com", - email: "BrodersM@6a78994653434b4c8f51f05c394987d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sohale Suomela,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sohale Suomela,ou=Product Testing,dc=bitwarden,dc=com", - email: "SuomelaS@67c03444c05a42a3b6969db268f587ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vijayalaks Beckham,ou=Product Testing,dc=bitwarden,dc=com", - email: "BeckhamV@5dfbfc6402474d4a84deb330c0f4315f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yonik Murison,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Yonik Murison,ou=Management,dc=bitwarden,dc=com", - email: "MurisonY@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delora Grund,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Delora Grund,ou=Payroll,dc=bitwarden,dc=com", - email: "GrundD@cf4fe07ebe1a44aab01df6b77e2a6602.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mietek Humes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mietek Humes,ou=Human Resources,dc=bitwarden,dc=com", - email: "HumesM@10d775dcf33f4a8a85529178af9b9387.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lili Cozzi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lili Cozzi,ou=Peons,dc=bitwarden,dc=com", - email: "CozziL@aabaf1b2cc7f4426bf4762a10375cf8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mil Badmington,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mil Badmington,ou=Administrative,dc=bitwarden,dc=com", - email: "BadmingM@38d6239d446040c7892f72bde901e5dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kittie Chapman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kittie Chapman,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChapmanK@a6ec4676b0ad44f28916d133e3a83b4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Las Bongers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Las Bongers,ou=Payroll,dc=bitwarden,dc=com", - email: "BongersL@fa6c45f2cf394efe80e833f5a6b3151c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramez Beisel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ramez Beisel,ou=Administrative,dc=bitwarden,dc=com", - email: "BeiselR@6ecbd725f2a04ad095c3bc8afaa5366e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lisabeth Burns,ou=Janitorial,dc=bitwarden,dc=com", - email: "BurnsL@060ddcf2c5744483943863ab0571b0e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerladina Miello,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gerladina Miello,ou=Human Resources,dc=bitwarden,dc=com", - email: "MielloG@2347921fc32f42b59e1beb7c60e45e2c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hernan Aversa,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hernan Aversa,ou=Human Resources,dc=bitwarden,dc=com", - email: "AversaH@fac57f1f10364a88aa5ab37aeecbc8a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozanne Botting,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rozanne Botting,ou=Product Testing,dc=bitwarden,dc=com", - email: "BottingR@22cb224a80984684b19d5e903a9e8f92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ende Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", - email: "PietropE@5fcb291282204187a9874bd0f7e51920.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amandy Ganness,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Amandy Ganness,ou=Janitorial,dc=bitwarden,dc=com", - email: "GannessA@0896302a59e8422abf0d271687a03fd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jasmina Lorenc,ou=Product Development,dc=bitwarden,dc=com", - email: "LorencJ@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lisabeth Joll,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lisabeth Joll,ou=Administrative,dc=bitwarden,dc=com", - email: "JollL@a214e2b7ea354ade82afd96303921437.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hillary Pintado,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hillary Pintado,ou=Janitorial,dc=bitwarden,dc=com", - email: "PintadoH@9c3ffda5676446e88677016f51b0aafc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nadean Fiorile,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nadean Fiorile,ou=Management,dc=bitwarden,dc=com", - email: "FiorileN@67e1d92e08fe4a64be64c20e9ec9029c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sohayla Ip,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sohayla Ip,ou=Product Development,dc=bitwarden,dc=com", - email: "IpS@6f419933f74e4397b4bf8d2ab48fbfaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashley Seagle,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ashley Seagle,ou=Payroll,dc=bitwarden,dc=com", - email: "SeagleA@404a4cf774b84260ad9c4cf63634551c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christoph Dwyer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Christoph Dwyer,ou=Product Development,dc=bitwarden,dc=com", - email: "DwyerC@4cf65bbff1914896934f97301ec7a0ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minnesota Reich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Minnesota Reich,ou=Product Testing,dc=bitwarden,dc=com", - email: "ReichM@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Revkah Niebudek,ou=Human Resources,dc=bitwarden,dc=com", - email: "NiebudeR@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marilyn Godden,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marilyn Godden,ou=Product Development,dc=bitwarden,dc=com", - email: "GoddenM@80ad4e27922841e2b293619d8459a898.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weiping Choynowska,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Weiping Choynowska,ou=Management,dc=bitwarden,dc=com", - email: "ChoynowW@7fc160edec22498a9b7f16af82b6aca4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlen Pelz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Karlen Pelz,ou=Payroll,dc=bitwarden,dc=com", - email: "PelzK@7c3132e0c4a84c2d8ff786513bcac2d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mela Speers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mela Speers,ou=Payroll,dc=bitwarden,dc=com", - email: "SpeersM@3f93f60a8e804d55a6647c56c6c05eab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PierreHenri Oates,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=PierreHenri Oates,ou=Payroll,dc=bitwarden,dc=com", - email: "OatesP@234baafa6151436c9e90b2aa2617a7d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramon Metcalfe,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ramon Metcalfe,ou=Management,dc=bitwarden,dc=com", - email: "MetcalfR@5e4e7d75e05b48bd8f2b694051e48b65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Domeniga Purohit,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Domeniga Purohit,ou=Management,dc=bitwarden,dc=com", - email: "PurohitD@8581b4e4b4314f35bf0c5b0b1ae9f14c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Goldy Locke,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Goldy Locke,ou=Janitorial,dc=bitwarden,dc=com", - email: "LockeG@6de130a8139a479abd748cccf12fccd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PakJong Braginetz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=PakJong Braginetz,ou=Payroll,dc=bitwarden,dc=com", - email: "BragineP@4c89cecd93aa4a6b8c3d033b43c13b92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilde Miotla,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hilde Miotla,ou=Janitorial,dc=bitwarden,dc=com", - email: "MiotlaH@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ning Spitzer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ning Spitzer,ou=Peons,dc=bitwarden,dc=com", - email: "SpitzerN@a14bb54592f8410c82402fefd034b4c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marylee Eberle,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marylee Eberle,ou=Product Testing,dc=bitwarden,dc=com", - email: "EberleM@0a1d0b108c684b97b7244cb6b1664626.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kaylee Chernetsky,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChernetK@304e0df786624e098a2c5b1fb73a0e52.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shalne Monfre,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shalne Monfre,ou=Product Testing,dc=bitwarden,dc=com", - email: "MonfreS@0477f7500cad42ceb4af441ae4e4ca2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sammie Wickie,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sammie Wickie,ou=Administrative,dc=bitwarden,dc=com", - email: "WickieS@a3e3d4a60d05428db3e529e7a841183c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teresita Vonderscher,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Teresita Vonderscher,ou=Peons,dc=bitwarden,dc=com", - email: "VondersT@c42c43aebed74617b6cc598e2b876357.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Derek Boase,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Derek Boase,ou=Product Testing,dc=bitwarden,dc=com", - email: "BoaseD@61d65279aba845aea76d91065d514e1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ehi Sova,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ehi Sova,ou=Payroll,dc=bitwarden,dc=com", - email: "SovaE@3b01400372a04ac682bfb36ab66341f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzette Chaddha,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Suzette Chaddha,ou=Payroll,dc=bitwarden,dc=com", - email: "ChaddhaS@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lennart Delong,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lennart Delong,ou=Administrative,dc=bitwarden,dc=com", - email: "DelongL@6753274bb619418096cac60a846c2af8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Audrey Alfaro,ou=Product Testing,dc=bitwarden,dc=com", - email: "AlfaroA@a75c11902ec34e1fa257326b84b40638.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diann Glast,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Diann Glast,ou=Product Development,dc=bitwarden,dc=com", - email: "GlastD@8be20a5f8fec49b3a3d2cf11b1d5489b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffanie Beehler,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tiffanie Beehler,ou=Peons,dc=bitwarden,dc=com", - email: "BeehlerT@c08c80f3c69d4d04b025dc038c8f6045.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leny Teague,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leny Teague,ou=Administrative,dc=bitwarden,dc=com", - email: "TeagueL@e5d9cd8563784493b06bdd8fd1d46cd9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trever Casson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Trever Casson,ou=Product Testing,dc=bitwarden,dc=com", - email: "CassonT@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chester Greene,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chester Greene,ou=Peons,dc=bitwarden,dc=com", - email: "GreeneC@9955c860a52142e48ed59c06efdb5d52.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celine Vey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Celine Vey,ou=Product Development,dc=bitwarden,dc=com", - email: "VeyC@20f59cdd83ae48b3816d0ba42aaa0a71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pinder Leonida,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pinder Leonida,ou=Product Testing,dc=bitwarden,dc=com", - email: "LeonidaP@4fe51546324e43adb896246907c2c135.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beryl Lalonde,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beryl Lalonde,ou=Administrative,dc=bitwarden,dc=com", - email: "LalondeB@222fec44e9c646688683c89bb36f7404.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cicely Ivers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cicely Ivers,ou=Management,dc=bitwarden,dc=com", - email: "IversC@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorinda Kenworthy,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lorinda Kenworthy,ou=Management,dc=bitwarden,dc=com", - email: "KenwortL@a6318282a95143ad9eb6eec2fd89dea7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ketan LaPierre,ou=Product Testing,dc=bitwarden,dc=com", - email: "LaPierrK@290f3bf5609346169561a1cf35572b57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Demetre Obrecht,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Demetre Obrecht,ou=Administrative,dc=bitwarden,dc=com", - email: "ObrechtD@33417574ff5641239d149c2ac49c5525.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shandie Urbanowich,ou=Product Development,dc=bitwarden,dc=com", - email: "UrbanowS@7f8cf4c32d334ebd9fa48fd60fc5a429.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Harriett Brooksbank,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrooksbH@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheryl Nemec,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sheryl Nemec,ou=Payroll,dc=bitwarden,dc=com", - email: "NemecS@9bb568342a7843e597240cebd0fa3324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Freya Reich,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Freya Reich,ou=Management,dc=bitwarden,dc=com", - email: "ReichF@c1717c5f197c4d3987c6204634e4161c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willyt Kresl,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Willyt Kresl,ou=Peons,dc=bitwarden,dc=com", - email: "KreslW@566f91b3e6ce4bad9c7f92243d29e023.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nenad Kilner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nenad Kilner,ou=Peons,dc=bitwarden,dc=com", - email: "KilnerN@f52a2af58c834348a94fa371e71ee488.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rakel Tranfaglia,ou=Janitorial,dc=bitwarden,dc=com", - email: "TranfagR@092ab78908d446088e98cb12c4153688.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nakina Brittain,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nakina Brittain,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrittaiN@f291666dbe1942f9939c126ee15d9886.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joyous Nunn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Joyous Nunn,ou=Product Development,dc=bitwarden,dc=com", - email: "NunnJ@ad2fbe502361499c9d06dcdb8e2109ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dhiren Lahey,ou=Janitorial,dc=bitwarden,dc=com", - email: "LaheyD@5eabae8e0a894e598a102f3cdf87fde5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hugo Tarsky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hugo Tarsky,ou=Administrative,dc=bitwarden,dc=com", - email: "TarskyH@90516b7a68e546109049725db5fc6bce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davida Starnes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Davida Starnes,ou=Human Resources,dc=bitwarden,dc=com", - email: "StarnesD@54a3e88e10d6420bafc84d4c62e2aba4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heping Id,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Heping Id,ou=Management,dc=bitwarden,dc=com", - email: "IdH@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nill Ferreira,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nill Ferreira,ou=Administrative,dc=bitwarden,dc=com", - email: "FerreirN@1c27d636b4be486693c87693cde976e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nathaniel Kiecksee,ou=Payroll,dc=bitwarden,dc=com", - email: "KieckseN@4ca2ac902d4749ad8038d002b39cb95c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vino Vanderheyden,ou=Human Resources,dc=bitwarden,dc=com", - email: "VanderhV@80c82ffaa49a474d9be83438195b45a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amabel DAngelo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amabel DAngelo,ou=Management,dc=bitwarden,dc=com", - email: "DAngeloA@427f0c8a6c7f4931b9f522617221c48a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brad Scarffe,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brad Scarffe,ou=Management,dc=bitwarden,dc=com", - email: "ScarffeB@0708ead8d9da4345b639ad91b17701b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elfie Florescu,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elfie Florescu,ou=Peons,dc=bitwarden,dc=com", - email: "FlorescE@9480e1acabd5425d80a15e6c019880fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nayan Caffrey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nayan Caffrey,ou=Product Development,dc=bitwarden,dc=com", - email: "CaffreyN@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deonne Ripa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Deonne Ripa,ou=Payroll,dc=bitwarden,dc=com", - email: "RipaD@bcf6de0b8d2c44a68286d08f9d47b1f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mehdi Mainville,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mehdi Mainville,ou=Peons,dc=bitwarden,dc=com", - email: "MainvilM@7101039e23634506b2da2b1c92ecb4cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jade Yumurtaci,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jade Yumurtaci,ou=Peons,dc=bitwarden,dc=com", - email: "YumurtaJ@9d5ea794acf845deab8b5f3d0cc82f3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tsuyoshi Sehmbey,ou=Management,dc=bitwarden,dc=com", - email: "SehmbeyT@d753979fad154486ac459615561fae04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kerstin Capretta,ou=Human Resources,dc=bitwarden,dc=com", - email: "CaprettK@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fey Bilton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fey Bilton,ou=Janitorial,dc=bitwarden,dc=com", - email: "BiltonF@f8c8362f349f4cd990f16a4512cb6987.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isoft Manwaring,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Isoft Manwaring,ou=Peons,dc=bitwarden,dc=com", - email: "ManwariI@21c0df4a152641a4b289e46be985993f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Addia RossRoss,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Addia RossRoss,ou=Janitorial,dc=bitwarden,dc=com", - email: "RossRosA@21676ccf48234584998e9b1b9517cc74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adoree Debord,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Adoree Debord,ou=Payroll,dc=bitwarden,dc=com", - email: "DebordA@fecfcf752c6e4027af9fd19570ebc44a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tesa Coordinator,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tesa Coordinator,ou=Product Development,dc=bitwarden,dc=com", - email: "CoordinT@99a51e3de4824b82894f80e7490fdc98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crissie Beausejour,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Crissie Beausejour,ou=Peons,dc=bitwarden,dc=com", - email: "BeausejC@9e9653057e724f3ba3cf01f171b09f12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hojjat Nahata,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hojjat Nahata,ou=Peons,dc=bitwarden,dc=com", - email: "NahataH@4c99f016701f421ea6d699e1dff81e68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julina Sy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Julina Sy,ou=Administrative,dc=bitwarden,dc=com", - email: "SyJ@9a5bdc9a34e041db8cf5f51cd958707f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kendre Lotochinski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kendre Lotochinski,ou=Management,dc=bitwarden,dc=com", - email: "LotochiK@37238c283bde45368b4da8be7c9deb4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yih NadeauDostie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Yih NadeauDostie,ou=Management,dc=bitwarden,dc=com", - email: "NadeauDY@c168d422280e4cbfb755415d15add934.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glynnis Neisius,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Glynnis Neisius,ou=Peons,dc=bitwarden,dc=com", - email: "NeisiusG@3ecc1d20e4e1450b8a8fad63f512c730.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sono Orsini,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sono Orsini,ou=Peons,dc=bitwarden,dc=com", - email: "OrsiniS@7cfc34ac6f4c4e1aba837c354ef5b514.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devon Romberg,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Devon Romberg,ou=Product Development,dc=bitwarden,dc=com", - email: "RombergD@ca18540933614ae79f2aa564295e8db4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorne Agily,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lorne Agily,ou=Management,dc=bitwarden,dc=com", - email: "AgilyL@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henka Colford,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Henka Colford,ou=Administrative,dc=bitwarden,dc=com", - email: "ColfordH@c63acc13c8a740e8a43edd8fb66a56ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ddene Pashmineh,ou=Administrative,dc=bitwarden,dc=com", - email: "PashminD@04bb8c62899b41dd85b281860ec060e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niek Bocklage,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Niek Bocklage,ou=Payroll,dc=bitwarden,dc=com", - email: "BocklagN@0a49f322d17b42a58985fe2e05d0dafb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gill Castillo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gill Castillo,ou=Peons,dc=bitwarden,dc=com", - email: "CastillG@b415261c1aeb4713828c9aaaebea46d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alkarim Tonkovich,ou=Administrative,dc=bitwarden,dc=com", - email: "TonkoviA@c2853faa5a5c4802a03043c5ee120c0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vacman Goridkov,ou=Product Testing,dc=bitwarden,dc=com", - email: "GoridkoV@47a7a80ec8774325ad24930467e7f72e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cary Thumm,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cary Thumm,ou=Payroll,dc=bitwarden,dc=com", - email: "ThummC@73c98e62bd724f62ba84304041b99a67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rod Eisenach,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rod Eisenach,ou=Payroll,dc=bitwarden,dc=com", - email: "EisenacR@c77e1b04604d4d1f96b1471fffc2169c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Axel McAdams,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Axel McAdams,ou=Product Testing,dc=bitwarden,dc=com", - email: "McAdamsA@223017ad635c4766a831c086905608fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amara Lagarde,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amara Lagarde,ou=Management,dc=bitwarden,dc=com", - email: "LagardeA@28a93f8db65e4c7896a7639f8d2d6945.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerianne Deluca,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gerianne Deluca,ou=Peons,dc=bitwarden,dc=com", - email: "DelucaG@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mick Barreyre,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mick Barreyre,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarreyrM@edf7b6e6765c4b9395ab808390477139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Netta Hartin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Netta Hartin,ou=Peons,dc=bitwarden,dc=com", - email: "HartinN@9eaee5a095454441a8ff73a3e26fa008.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Magdalen Armentrout,ou=Product Development,dc=bitwarden,dc=com", - email: "ArmentrM@e99ccdd4f1854e85b7018db9ee827387.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juli Chen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Juli Chen,ou=Administrative,dc=bitwarden,dc=com", - email: "ChenJ@6da792b22a5f46b49ab2efdbe92519ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cubical Quintana,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cubical Quintana,ou=Administrative,dc=bitwarden,dc=com", - email: "QuintanC@008f04f6a73e47758da81bbf288d81a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liping Acton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Liping Acton,ou=Human Resources,dc=bitwarden,dc=com", - email: "ActonL@d9cdfd88a6ba482380cbec226ee4ccee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorry Suprick,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lorry Suprick,ou=Administrative,dc=bitwarden,dc=com", - email: "SuprickL@872334f15d354ef8b48f04612937d290.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mattie Astorino,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mattie Astorino,ou=Administrative,dc=bitwarden,dc=com", - email: "AstorinM@103b717daeeb42b79fd5e26fd213a7db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jolanda Mooder,ou=Janitorial,dc=bitwarden,dc=com", - email: "MooderJ@982a9dc04ec64d818da9977446a91014.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzanne Guatto,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Suzanne Guatto,ou=Management,dc=bitwarden,dc=com", - email: "GuattoS@677b24267b6440e9ad6bebb082604f25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norton Sapena,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Norton Sapena,ou=Product Testing,dc=bitwarden,dc=com", - email: "SapenaN@07f011cc742c4813b7b97485646c3ab6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tsugio Behlen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tsugio Behlen,ou=Administrative,dc=bitwarden,dc=com", - email: "BehlenT@c2594ac246a645e3be48149271f5e260.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pammy Liu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pammy Liu,ou=Janitorial,dc=bitwarden,dc=com", - email: "LiuP@81f849946be048ecbaea85d2b139bc46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deeyn Frie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Deeyn Frie,ou=Peons,dc=bitwarden,dc=com", - email: "FrieD@4a53c85fc87e459ba535fa5859abd60b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dael Valliere,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dael Valliere,ou=Management,dc=bitwarden,dc=com", - email: "VallierD@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Duncan Lamedica,ou=Product Testing,dc=bitwarden,dc=com", - email: "LamedicD@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranna Gentes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ranna Gentes,ou=Peons,dc=bitwarden,dc=com", - email: "GentesR@961e076dc422493d887f975af917cc23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khue Trivedi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Khue Trivedi,ou=Administrative,dc=bitwarden,dc=com", - email: "TrivediK@4a5ee2294ea24b569a9468db2ebe9276.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YuKai Holloway,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=YuKai Holloway,ou=Janitorial,dc=bitwarden,dc=com", - email: "HollowaY@6bcd45269b3d4381b2e2ca25c28340c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mrugesh Gaskins,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mrugesh Gaskins,ou=Management,dc=bitwarden,dc=com", - email: "GaskinsM@417f3d03cdca4d2982386320914aed0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belle Kilner,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Belle Kilner,ou=Management,dc=bitwarden,dc=com", - email: "KilnerB@f5efd1e9a39c413dbfa9f7e476ae7cea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sieber Binnington,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sieber Binnington,ou=Product Development,dc=bitwarden,dc=com", - email: "BinningS@fed31b4a5e88497aacdfa11612ae4f8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nananne Bahl,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nananne Bahl,ou=Administrative,dc=bitwarden,dc=com", - email: "BahlN@52d447bfc2464a51a20925b35098fffa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eoin DuncanSmith,ou=Product Testing,dc=bitwarden,dc=com", - email: "DuncanSE@f260a92a20974e44926d8337feae7384.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selia Demers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Selia Demers,ou=Management,dc=bitwarden,dc=com", - email: "DemersS@351deec9477e4e51877822ae4f8cd070.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karl Deployment,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Karl Deployment,ou=Payroll,dc=bitwarden,dc=com", - email: "DeploymK@9c29c026596043feb2dca741308aa831.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lettie Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", - email: "WolczanL@8bb7a419aa064dabb3a5664772478164.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolene Eicher,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jolene Eicher,ou=Product Testing,dc=bitwarden,dc=com", - email: "EicherJ@1502db7fbe534bb781d285fc7f854a26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merridie Partello,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Merridie Partello,ou=Payroll,dc=bitwarden,dc=com", - email: "PartellM@4b0cd35c3d8442a69514b96d040ad360.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tae Hughson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tae Hughson,ou=Janitorial,dc=bitwarden,dc=com", - email: "HughsonT@dd41899c65d54e2a93ab78ead0e2ad6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobbye Cech,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bobbye Cech,ou=Administrative,dc=bitwarden,dc=com", - email: "CechB@fc31450cfbdf4f968a1e2c143050e9ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tandy Nilsson,ou=Human Resources,dc=bitwarden,dc=com", - email: "NilssonT@7961400fc48646dcae2a3636e26ff106.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drucy Serour,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Drucy Serour,ou=Payroll,dc=bitwarden,dc=com", - email: "SerourD@2f4fde2fad2147578d67cd017f823be6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Abbi Gerlinsky,ou=Product Development,dc=bitwarden,dc=com", - email: "GerlinsA@7341939506294cf3bdd4bdeca7674074.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elnore Alvaro,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Elnore Alvaro,ou=Management,dc=bitwarden,dc=com", - email: "AlvaroE@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Briney Emery,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Briney Emery,ou=Human Resources,dc=bitwarden,dc=com", - email: "EmeryB@99d73507cedb4612b4870c40410d79f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Yukinobu Gandhi,ou=Product Testing,dc=bitwarden,dc=com", - email: "GandhiY@001f8a7cac5e4e5289e4b851c2ff301c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dawn Shubaly,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dawn Shubaly,ou=Administrative,dc=bitwarden,dc=com", - email: "ShubalyD@8fb9d9d0bee6452fa8938ef7b2ecd6d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leny Redway,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Leny Redway,ou=Janitorial,dc=bitwarden,dc=com", - email: "RedwayL@95fa7f3851674364944296f3d3c2378d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Augusto Mather,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Augusto Mather,ou=Product Development,dc=bitwarden,dc=com", - email: "MatherA@ab120df6e5194bf6ac6a830bba26f7f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ingeborg OHagan,ou=Product Testing,dc=bitwarden,dc=com", - email: "OHaganI@ae98974593454858b3cb78d7db1b60ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Biplab Natale,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Biplab Natale,ou=Janitorial,dc=bitwarden,dc=com", - email: "NataleB@848af8a22f514cf2b666369164b5e04f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninon Coffey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ninon Coffey,ou=Peons,dc=bitwarden,dc=com", - email: "CoffeyN@fc0265cf65f44283987530dbcb25d095.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=MaryLynn Gerritse,ou=Janitorial,dc=bitwarden,dc=com", - email: "GerritsM@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jillana Walkowiak,ou=Product Development,dc=bitwarden,dc=com", - email: "WalkowiJ@c422d301a0d34f1090b55f1c8625409d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rasia Jauvin,ou=Human Resources,dc=bitwarden,dc=com", - email: "JauvinR@dc389f3c42ad495288e841e30bcf37cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nando Masterplan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nando Masterplan,ou=Peons,dc=bitwarden,dc=com", - email: "MasterpN@7b57b8e19b5b443b99958998ffeb1b88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farouk Closson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Farouk Closson,ou=Janitorial,dc=bitwarden,dc=com", - email: "ClossonF@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacob Andress,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jacob Andress,ou=Janitorial,dc=bitwarden,dc=com", - email: "AndressJ@3714ef07d9f24410a85dd847beb54eef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tarrah Pavlovic,ou=Product Testing,dc=bitwarden,dc=com", - email: "PavloviT@8eab0f58e984423689a3d31e38a978a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fikre Mau,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fikre Mau,ou=Product Testing,dc=bitwarden,dc=com", - email: "MauF@1338f84446e746bcb89eff436fef936e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zan StPierre,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zan StPierre,ou=Janitorial,dc=bitwarden,dc=com", - email: "StPierrZ@92fe5cbd6cdf40f6b7c15b840696af7e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michigan Callaghan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Michigan Callaghan,ou=Peons,dc=bitwarden,dc=com", - email: "CallaghM@c60b8ebb120748e9aeaff4e4a09ef9ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vesna Suharly,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vesna Suharly,ou=Product Testing,dc=bitwarden,dc=com", - email: "SuharlyV@3d0b74ed23c14257ade0d3e35d022c48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lanette Kardomateas,ou=Product Testing,dc=bitwarden,dc=com", - email: "KardomaL@10f6046d05e14243ad22c391397b791c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurise Travers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maurise Travers,ou=Management,dc=bitwarden,dc=com", - email: "TraversM@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loella Herve,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Loella Herve,ou=Human Resources,dc=bitwarden,dc=com", - email: "HerveL@574e924f60604e60bceaae691ad7a17d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nettle Zadorozny,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZadorozN@a9a16c4a0f7545639cb0982e970e6363.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Libbi Marting,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Libbi Marting,ou=Janitorial,dc=bitwarden,dc=com", - email: "MartingL@8561abc417794d6f8b59aa13dc9be3a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Derrick Myatt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Derrick Myatt,ou=Product Testing,dc=bitwarden,dc=com", - email: "MyattD@8d9527606cc64fa5ab4d6b7792482537.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Katharina Nemeth,ou=Product Testing,dc=bitwarden,dc=com", - email: "NemethK@8cbfe8f2cf8846329398b1f2552e48e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dhanvinder Kenyon,ou=Janitorial,dc=bitwarden,dc=com", - email: "KenyonD@c0e366bec54b485a8d61f1970ea7c375.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsey Emond,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chelsey Emond,ou=Janitorial,dc=bitwarden,dc=com", - email: "EmondC@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Meredith Saulnier,ou=Human Resources,dc=bitwarden,dc=com", - email: "SaulnieM@c8e189f083634334a1fd0d200a0183f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harvey Jugandi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Harvey Jugandi,ou=Administrative,dc=bitwarden,dc=com", - email: "JugandiH@b72b425950224ff1bc807aa369857e89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ida Sydor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ida Sydor,ou=Peons,dc=bitwarden,dc=com", - email: "SydorI@17268a5e22084b1a83cdf837a0887b9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Geneva Stroemer,ou=Product Testing,dc=bitwarden,dc=com", - email: "StroemeG@063f46f6e3c34f628dc59cd54e082665.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MingMing Wagoner,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=MingMing Wagoner,ou=Payroll,dc=bitwarden,dc=com", - email: "WagonerM@221b1a64a2b0473e979b63298baf53a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shena Joudrey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shena Joudrey,ou=Janitorial,dc=bitwarden,dc=com", - email: "JoudreyS@fc250c767129499c871d245494e9d9b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lurline Nickell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lurline Nickell,ou=Product Development,dc=bitwarden,dc=com", - email: "NickellL@a4626a0d04a64c1083f47ce852f633ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camilla Njo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Camilla Njo,ou=Product Testing,dc=bitwarden,dc=com", - email: "NjoC@519077386b7144648a1af65801ba340e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dannie Levesque,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dannie Levesque,ou=Product Development,dc=bitwarden,dc=com", - email: "LevesquD@76847a02189543c09ebc787f6f723eab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tarah Melanson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tarah Melanson,ou=Product Testing,dc=bitwarden,dc=com", - email: "MelansoT@ba2be91aa4064d8bbc344c883875d66e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phan Srinivasan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Phan Srinivasan,ou=Payroll,dc=bitwarden,dc=com", - email: "SrinivaP@142b52bc05a84c80a55df6addbd72e6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ibby Sundar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ibby Sundar,ou=Product Development,dc=bitwarden,dc=com", - email: "SundarI@f89f635a8be04a889dbefd8a681219c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jerald Battiston,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jerald Battiston,ou=Administrative,dc=bitwarden,dc=com", - email: "BattistJ@d7af2d36201f488d997c6f7eea13f491.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rorie Freno,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rorie Freno,ou=Payroll,dc=bitwarden,dc=com", - email: "FrenoR@f94a06ac8f314213b758728f67a159f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Howie Jubenville,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Howie Jubenville,ou=Product Development,dc=bitwarden,dc=com", - email: "JubenviH@077838522ab04e7fa5ae528e1ed00284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neely Dudas,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Neely Dudas,ou=Product Development,dc=bitwarden,dc=com", - email: "DudasN@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sohale Edmxtest,ou=Human Resources,dc=bitwarden,dc=com", - email: "EdmxtesS@91469109e9e74dbeada032db2abfd838.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Annamaria Finnerty,ou=Product Development,dc=bitwarden,dc=com", - email: "FinnertA@8d2bde7cc8a74ac5887aa1747493b68d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fawne Thibeault,ou=Product Testing,dc=bitwarden,dc=com", - email: "ThibeauF@0ddc496dccad4aaf85619cae07f217f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kennon Risto,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kennon Risto,ou=Product Testing,dc=bitwarden,dc=com", - email: "RistoK@516b0fff20e84be4bd74141b3a98052f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jimson McVey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jimson McVey,ou=Administrative,dc=bitwarden,dc=com", - email: "McVeyJ@4a145fc9121947ce8b995d7a67929715.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elisabet Deicher,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elisabet Deicher,ou=Payroll,dc=bitwarden,dc=com", - email: "DeicherE@bf1b7c9bff4a47609eb686872f73e291.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amye Barritt,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Amye Barritt,ou=Administrative,dc=bitwarden,dc=com", - email: "BarrittA@b06576e7cc594af79143f743174735e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corry Ivett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Corry Ivett,ou=Human Resources,dc=bitwarden,dc=com", - email: "IvettC@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adan Kelkar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Adan Kelkar,ou=Product Testing,dc=bitwarden,dc=com", - email: "KelkarA@0c0d598f6d704fe4b60b7d7dc8951e3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ross Sepko,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ross Sepko,ou=Management,dc=bitwarden,dc=com", - email: "SepkoR@6e39649cbd0445acb57079f77e401bb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ronneke Dadkhah,ou=Human Resources,dc=bitwarden,dc=com", - email: "DadkhahR@fa77f7a366264da6a4e9ab74eb89c64c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Apryle Davy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Apryle Davy,ou=Administrative,dc=bitwarden,dc=com", - email: "DavyA@0033304ecf264958be4e3649e61343d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lecien Akrawi,ou=Product Testing,dc=bitwarden,dc=com", - email: "AkrawiL@86bd838434bd44c0b1970d4b53f78a53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlota Inoue,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carlota Inoue,ou=Product Development,dc=bitwarden,dc=com", - email: "InoueC@13e3dc6812b646519614bfe380e524a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leanne Smolin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leanne Smolin,ou=Payroll,dc=bitwarden,dc=com", - email: "SmolinL@7b1ae059f10c4c999e0f2bc4fd98859f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kailey Bagshaw,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kailey Bagshaw,ou=Peons,dc=bitwarden,dc=com", - email: "BagshawK@326d8403ad204a388a69bbd4329fe5a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dennis Zerriffi,ou=Product Development,dc=bitwarden,dc=com", - email: "ZerriffD@eb0751f8f0ce45129ec8ccf1ddccc89a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trever Moffatt,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Trever Moffatt,ou=Management,dc=bitwarden,dc=com", - email: "MoffattT@d5293c91bc7840f0948a89a10840461e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weringh Behlen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Weringh Behlen,ou=Product Testing,dc=bitwarden,dc=com", - email: "BehlenW@ec02515092c0432c96114e0e3b48b13f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alain Walser,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alain Walser,ou=Administrative,dc=bitwarden,dc=com", - email: "WalserA@4d59261d3bca4e1fb4d732d67dc2ff95.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanya Erguven,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kanya Erguven,ou=Product Testing,dc=bitwarden,dc=com", - email: "ErguvenK@1b4bc37ec1234668beb3a7c3f6a14e94.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robina Prestrud,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Robina Prestrud,ou=Human Resources,dc=bitwarden,dc=com", - email: "PrestruR@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emmye Nahas,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emmye Nahas,ou=Product Development,dc=bitwarden,dc=com", - email: "NahasE@c7756644cb48413f87c87c1ccc9ba2c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flori Suddarth,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Flori Suddarth,ou=Management,dc=bitwarden,dc=com", - email: "SuddartF@df9fef66ff8d4a1eb163eeab8b34d029.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mkt Kelso,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mkt Kelso,ou=Janitorial,dc=bitwarden,dc=com", - email: "KelsoM@77605ba7efb54b24b15d418d1dcaf9e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annie Goswick,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annie Goswick,ou=Administrative,dc=bitwarden,dc=com", - email: "GoswickA@0cd2f193d0214a7093f88bef98ef3534.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ianthe Foeppel,ou=Janitorial,dc=bitwarden,dc=com", - email: "FoeppelI@6c580c7bb9d24c0e8e8c0f701314c400.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhonda Beeston,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rhonda Beeston,ou=Peons,dc=bitwarden,dc=com", - email: "BeestonR@f8b5ec3dd78f44e3bd6de92c22b0edfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amrik Bokij,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Amrik Bokij,ou=Payroll,dc=bitwarden,dc=com", - email: "BokijA@231bc329012a4b71830de92a0a747aec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merralee Malkani,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Merralee Malkani,ou=Management,dc=bitwarden,dc=com", - email: "MalkaniM@2111c0b8de8b41c796ea6df8823ccfc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kyle Malkani,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kyle Malkani,ou=Management,dc=bitwarden,dc=com", - email: "MalkaniK@456b6a48ca9a4969bd47e1edd5748e50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leese Jamaly,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leese Jamaly,ou=Payroll,dc=bitwarden,dc=com", - email: "JamalyL@c6a8d6d12ae045f8ba075455c769a929.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eloise Gurash,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Eloise Gurash,ou=Human Resources,dc=bitwarden,dc=com", - email: "GurashE@1d57349150aa4b7c9c63519094984965.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elpida Marples,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elpida Marples,ou=Administrative,dc=bitwarden,dc=com", - email: "MarplesE@950e4dfb6fcd4307837aab6105ae8d0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blondie Algood,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Blondie Algood,ou=Administrative,dc=bitwarden,dc=com", - email: "AlgoodB@fd60ce8a79b644ba9d190b4bf769b6de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Caitrin McWalters,ou=Product Testing,dc=bitwarden,dc=com", - email: "McWalteC@70ad644ea35f4f68843a1f3bb2116072.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Averil Hirsch,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Averil Hirsch,ou=Peons,dc=bitwarden,dc=com", - email: "HirschA@4ce8989b72bf418782f9268b205e86e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manijeh Older,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Manijeh Older,ou=Management,dc=bitwarden,dc=com", - email: "OlderM@519a4247e98245adb82415fbed3acf4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lonee Swinkels,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lonee Swinkels,ou=Administrative,dc=bitwarden,dc=com", - email: "SwinkelL@534eab5a672047c98d17e83c1921c458.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jun Reith,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jun Reith,ou=Product Development,dc=bitwarden,dc=com", - email: "ReithJ@813a07c4538b406aa71825ab3ba2ab54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Otter Uberig,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Otter Uberig,ou=Management,dc=bitwarden,dc=com", - email: "UberigO@2f13ca54ee794decad24515251a42dff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hendrik Ruyant,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hendrik Ruyant,ou=Management,dc=bitwarden,dc=com", - email: "RuyantH@b3c93053c0224253988d5c3b976abcae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colline Monaco,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Colline Monaco,ou=Product Development,dc=bitwarden,dc=com", - email: "MonacoC@bd83bea8ad1d4beeb411fff32d119ceb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilene Didylowski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ilene Didylowski,ou=Payroll,dc=bitwarden,dc=com", - email: "DidylowI@4fc4e61aa4364561b3dbed18d06aa13c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norine Krone,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Norine Krone,ou=Administrative,dc=bitwarden,dc=com", - email: "KroneN@be647af747894379a1244c13fb5bb1f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yolanthe McLauchlan,ou=Payroll,dc=bitwarden,dc=com", - email: "McLauchY@ea44c2476f934218bf3d758975e567c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chander Daudin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chander Daudin,ou=Product Testing,dc=bitwarden,dc=com", - email: "DaudinC@7c50c697d2e74fa1bb1d9087c755a405.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phelia Valois,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Phelia Valois,ou=Payroll,dc=bitwarden,dc=com", - email: "ValoisP@3183d831d932421d873ae5ed85ead634.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmela Bonner,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carmela Bonner,ou=Payroll,dc=bitwarden,dc=com", - email: "BonnerC@412af91bb3534a1b89a431db4cb8a7a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandice Becquart,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brandice Becquart,ou=Management,dc=bitwarden,dc=com", - email: "BecquarB@4825d57ae32e45d08a65519dcb193960.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gen Guinnane,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gen Guinnane,ou=Management,dc=bitwarden,dc=com", - email: "GuinnanG@f01b8c6e19b14b049532cb6664f8caaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmelia Lawlor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carmelia Lawlor,ou=Management,dc=bitwarden,dc=com", - email: "LawlorC@2340b24115454336b8f5eb39757ab759.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Riva DIppolito,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Riva DIppolito,ou=Management,dc=bitwarden,dc=com", - email: "DIppoliR@74cfe2fa4b0b457bbb2822816bc66149.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Letisha Subsara,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Letisha Subsara,ou=Janitorial,dc=bitwarden,dc=com", - email: "SubsaraL@903617d1ed564473826d5f2c9b25fe7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chellappan Caple,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Chellappan Caple,ou=Management,dc=bitwarden,dc=com", - email: "CapleC@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lendon Shigemura,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lendon Shigemura,ou=Management,dc=bitwarden,dc=com", - email: "ShigemuL@07f933542a8443fa9fa85a2d55eb8b28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alicia Vermette,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alicia Vermette,ou=Human Resources,dc=bitwarden,dc=com", - email: "VermettA@9ce7cc8c772f4514b0b5126957e2752f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marys Pellegrini,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marys Pellegrini,ou=Management,dc=bitwarden,dc=com", - email: "PellegrM@64c2fa20001b495182e976975782823e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hamzeh Radovnikovic,ou=Administrative,dc=bitwarden,dc=com", - email: "RadovniH@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Theresita DIngianni,ou=Product Testing,dc=bitwarden,dc=com", - email: "DIngianT@d12dc9200de04c139668cd5077c9847d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Es Veillette,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Es Veillette,ou=Management,dc=bitwarden,dc=com", - email: "VeilletE@09592cdb49ba4e06a680e4327c7f211f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Caressa Jelinek,ou=Janitorial,dc=bitwarden,dc=com", - email: "JelinekC@969884d3e1084598a17f4ef0a3aedf04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Schell Rezzik,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Schell Rezzik,ou=Product Development,dc=bitwarden,dc=com", - email: "RezzikS@d27f47b62d694195b812aa9e62ea263a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haig Salyer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Haig Salyer,ou=Product Testing,dc=bitwarden,dc=com", - email: "SalyerH@d0689c747ea94990b3bb0378ca876248.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sachiko Dragert,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sachiko Dragert,ou=Payroll,dc=bitwarden,dc=com", - email: "DragertS@777873609ce9463eb7000e930f9c88d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agatha Potocki,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Agatha Potocki,ou=Human Resources,dc=bitwarden,dc=com", - email: "PotockiA@8068d857ca8d45118464c596ca9f4192.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jerrie Frobel,ou=Human Resources,dc=bitwarden,dc=com", - email: "FrobelJ@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mark Bethune,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mark Bethune,ou=Human Resources,dc=bitwarden,dc=com", - email: "BethuneM@937ccb2001694e2680b8217ebfc1227e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rois Hiscoe,ou=Product Testing,dc=bitwarden,dc=com", - email: "HiscoeR@923b7e20c77d4d479afa0bf52e9ff34f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorey Friedrich,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorey Friedrich,ou=Payroll,dc=bitwarden,dc=com", - email: "FriedriD@d28530c9df644cffbc9c3ddd841cc9a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alexina Hord,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alexina Hord,ou=Product Development,dc=bitwarden,dc=com", - email: "HordA@874d2ffcc419401a838c28aad1adce43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilson Vosup,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wilson Vosup,ou=Management,dc=bitwarden,dc=com", - email: "VosupW@0a13d3df1e3f455093e12ab71e8c81fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ronneke Chmara,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChmaraR@21cc8cee33394af98a10a365eddcb55c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alisa Dubuc,ou=Janitorial,dc=bitwarden,dc=com", - email: "DubucA@5191509f48d94538ad03dc3532ab7b16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Forrest DCruz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Forrest DCruz,ou=Payroll,dc=bitwarden,dc=com", - email: "DCruzF@523c7925179d4304b25908d832088d77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Simhan Plucinska,ou=Janitorial,dc=bitwarden,dc=com", - email: "PlucinsS@351deec9477e4e51877822ae4f8cd070.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roger Seelaender,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Roger Seelaender,ou=Peons,dc=bitwarden,dc=com", - email: "SeelaenR@73a9aedb7e664c80be8f4a158038334a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Annecorinne Kessing,ou=Product Testing,dc=bitwarden,dc=com", - email: "KessingA@8a74bbad8b794c87a1e4384bad30f8b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mal Ellul,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mal Ellul,ou=Management,dc=bitwarden,dc=com", - email: "EllulM@3ce51f6d63564349a707188cebe0b9db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bep Pilkington,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bep Pilkington,ou=Product Testing,dc=bitwarden,dc=com", - email: "PilkingB@d72cbd780d2b4b298c22c5ed9275bdef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wylma Meiser,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wylma Meiser,ou=Human Resources,dc=bitwarden,dc=com", - email: "MeiserW@9f3819b9115a462187208879243957c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huppert Buffett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Huppert Buffett,ou=Human Resources,dc=bitwarden,dc=com", - email: "BuffettH@270d9e715f934566b928260e5a913b8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kass Kelland,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kass Kelland,ou=Human Resources,dc=bitwarden,dc=com", - email: "KellandK@29173732550b4d5fa61cc19838febdea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dpnis Stetter,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dpnis Stetter,ou=Peons,dc=bitwarden,dc=com", - email: "StetterD@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tash Hibler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tash Hibler,ou=Product Development,dc=bitwarden,dc=com", - email: "HiblerT@f757676270f44c6398ef7409a2684fcd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edee Badger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Edee Badger,ou=Payroll,dc=bitwarden,dc=com", - email: "BadgerE@fd46aa029a7840a1becc0ccc22e4bd3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edel Ellacott,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Edel Ellacott,ou=Peons,dc=bitwarden,dc=com", - email: "EllacotE@359efdad39cc40ef8440421a8807b6c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosa Baird,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rosa Baird,ou=Administrative,dc=bitwarden,dc=com", - email: "BairdR@a7cf58aaa965404796cd8b59fc2395b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anna Kahtasian,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anna Kahtasian,ou=Product Development,dc=bitwarden,dc=com", - email: "KahtasiA@7341939506294cf3bdd4bdeca7674074.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hiren Plastina,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hiren Plastina,ou=Peons,dc=bitwarden,dc=com", - email: "PlastinH@bf39febc19c343cc9aaa907ea0d77554.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alese Sumpter,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alese Sumpter,ou=Peons,dc=bitwarden,dc=com", - email: "SumpterA@68783c5d6bc743ddb0d94e6abd382e0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Melodie Escobedo,ou=Product Testing,dc=bitwarden,dc=com", - email: "EscobedM@96cd1711168e489f9e672010a4fee01c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Simonne Filer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Simonne Filer,ou=Product Development,dc=bitwarden,dc=com", - email: "FilerS@6993d016013446bf8c45519f739f4a8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Miquela Szypulski,ou=Product Testing,dc=bitwarden,dc=com", - email: "SzypulsM@3a2a82df656f429a9b40a5251b4c823e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yeung Kaufman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yeung Kaufman,ou=Product Development,dc=bitwarden,dc=com", - email: "KaufmanY@db0d46fdeb854c2eb066d9894606ad6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claire Wada,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Claire Wada,ou=Management,dc=bitwarden,dc=com", - email: "WadaC@e13ff358b20d4f05b57860e7899fbc5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laury Breglec,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Laury Breglec,ou=Administrative,dc=bitwarden,dc=com", - email: "BreglecL@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurice Guinnane,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maurice Guinnane,ou=Administrative,dc=bitwarden,dc=com", - email: "GuinnanM@c881c186a173446ea0e986dc58eda7dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laraine DuBois,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Laraine DuBois,ou=Peons,dc=bitwarden,dc=com", - email: "DuBoisL@cac372b8ab83448c81ae16d3c02782c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Georgeta TestingPOSTTEST,ou=Administrative,dc=bitwarden,dc=com", - email: "TestingG@09e5494aed3a4d83bbfc24e4027adfc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hettie Johannes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hettie Johannes,ou=Product Development,dc=bitwarden,dc=com", - email: "JohanneH@d7e8af68284e4062b608faac310d89ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jaclyn Westgarth,ou=Product Development,dc=bitwarden,dc=com", - email: "WestgarJ@67c03444c05a42a3b6969db268f587ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pascale Sprayberry,ou=Product Testing,dc=bitwarden,dc=com", - email: "SpraybeP@2c938ad1c79549a5aaba11995cefd879.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hedvig Risler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hedvig Risler,ou=Management,dc=bitwarden,dc=com", - email: "RislerH@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edward Badza,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Edward Badza,ou=Payroll,dc=bitwarden,dc=com", - email: "BadzaE@a32cc86a2bd244a1a69078536f474c4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Femke Trittler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Femke Trittler,ou=Product Testing,dc=bitwarden,dc=com", - email: "TrittleF@c31dc3397f3a45ca971c4674af07c210.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lino Krauel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lino Krauel,ou=Product Testing,dc=bitwarden,dc=com", - email: "KrauelL@6ad1b625c3674b77a93e5c19216d7f12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tatsman Ayoup,ou=Payroll,dc=bitwarden,dc=com", - email: "AyoupT@a549c5674cda44a29e90f4f33d1b9046.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anders Raddalgoda,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anders Raddalgoda,ou=Management,dc=bitwarden,dc=com", - email: "RaddalgA@3913d51a20f344409448501766a0f142.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rijn Benschop,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rijn Benschop,ou=Management,dc=bitwarden,dc=com", - email: "BenschoR@dd44ac1957c74a4cb7889302d7ebe0e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deva Hoch,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Deva Hoch,ou=Product Development,dc=bitwarden,dc=com", - email: "HochD@2c865634e0e045e2b70cc9cc6dc9005f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mahboob Mathieson,ou=Product Testing,dc=bitwarden,dc=com", - email: "MathiesM@f7f4a447205348c3850cb06ffed2a0fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fearless Quattrucci,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fearless Quattrucci,ou=Management,dc=bitwarden,dc=com", - email: "QuattruF@ad1bdee03ce44222a3305339a4d53009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pia Singham,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pia Singham,ou=Peons,dc=bitwarden,dc=com", - email: "SinghamP@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zdenek Schutte,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zdenek Schutte,ou=Product Development,dc=bitwarden,dc=com", - email: "SchutteZ@327fab76e13f495691accc9986f353a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liam Darveau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Liam Darveau,ou=Janitorial,dc=bitwarden,dc=com", - email: "DarveauL@13b504a8a169451f93c28e40583299e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yung Deployment,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Yung Deployment,ou=Management,dc=bitwarden,dc=com", - email: "DeploymY@291647d2cd1d44a99560699f40c48fb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raman Feild,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Raman Feild,ou=Payroll,dc=bitwarden,dc=com", - email: "FeildR@42f7f72ca79e451abe4a35d3706fd511.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mayasandra Mohan,ou=Product Testing,dc=bitwarden,dc=com", - email: "MohanM@8b6b01e9c008452894c8ace1d155cf0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yoke Mustafa,ou=Human Resources,dc=bitwarden,dc=com", - email: "MustafaY@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nial Meunier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nial Meunier,ou=Janitorial,dc=bitwarden,dc=com", - email: "MeunierN@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evans Laker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Evans Laker,ou=Product Testing,dc=bitwarden,dc=com", - email: "LakerE@8068d857ca8d45118464c596ca9f4192.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vale Wiederhold,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vale Wiederhold,ou=Management,dc=bitwarden,dc=com", - email: "WiederhV@dd11611b8b2c47a382a866e9115fea27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulce Xavier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dulce Xavier,ou=Janitorial,dc=bitwarden,dc=com", - email: "XavierD@6ce18e31fee44ca6a1d60162c1ff34ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walt Ventura,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Walt Ventura,ou=Management,dc=bitwarden,dc=com", - email: "VenturaW@f06eb6e5ebe44697824a5e168080f66f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miklos Rhyndress,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Miklos Rhyndress,ou=Peons,dc=bitwarden,dc=com", - email: "RhyndreM@6d618be347104dbc857cf2fd7fc2c14d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maryvonne Frendo,ou=Administrative,dc=bitwarden,dc=com", - email: "FrendoM@602ba75a97ea4dc1ac3622553464c0ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherise Blodgett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cherise Blodgett,ou=Payroll,dc=bitwarden,dc=com", - email: "BlodgetC@c03386ce7faa472d85d312447ef33656.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenifer Stansell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jenifer Stansell,ou=Peons,dc=bitwarden,dc=com", - email: "StanselJ@8356479eabd643419aa6b8ad0de3b0b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fung Ginzburg,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fung Ginzburg,ou=Peons,dc=bitwarden,dc=com", - email: "GinzburF@f94e4910d3ba449793ba33df7347ad39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nikolaos Mapile,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nikolaos Mapile,ou=Management,dc=bitwarden,dc=com", - email: "MapileN@edb994df27cb4c98bcb6984d0f87b2c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Queenie Spolar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Queenie Spolar,ou=Administrative,dc=bitwarden,dc=com", - email: "SpolarQ@a613bdb3274e457a9c2452e800065937.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rivkah Vopalensky,ou=Human Resources,dc=bitwarden,dc=com", - email: "VopalenR@f263976411814a39ae02ef1a1447e567.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franki Weyand,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Franki Weyand,ou=Product Testing,dc=bitwarden,dc=com", - email: "WeyandF@85375ce566b44b3aa8f322d00fc1330c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suat Whitford,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Suat Whitford,ou=Janitorial,dc=bitwarden,dc=com", - email: "WhitforS@23cf32b7148140cfb4b02ddf8d62cfa5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isadora Capelle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Isadora Capelle,ou=Product Development,dc=bitwarden,dc=com", - email: "CapelleI@6ff43a0cd199484abc0f4c8402f6ccf8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loria Timmerman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Loria Timmerman,ou=Product Development,dc=bitwarden,dc=com", - email: "TimmermL@6c3860a955fe431ca8d48e56cd2c1cc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=MaryPat Tremblay,ou=Payroll,dc=bitwarden,dc=com", - email: "TremblaM@e7d1f4f0f2c247cc84176f3d1fda8997.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alfredo Bedient,ou=Human Resources,dc=bitwarden,dc=com", - email: "BedientA@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobbi Dupree,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bobbi Dupree,ou=Management,dc=bitwarden,dc=com", - email: "DupreeB@d71f931e88694d74b88e32769af98e29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leshia Gaither,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Leshia Gaither,ou=Product Testing,dc=bitwarden,dc=com", - email: "GaitherL@0bc2c297f4214248890001cfe94999e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calla McIsaac,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Calla McIsaac,ou=Human Resources,dc=bitwarden,dc=com", - email: "McIsaacC@dcc2a55662ed42a29feb9be5fbe1aebc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roby Kasbia,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Roby Kasbia,ou=Peons,dc=bitwarden,dc=com", - email: "KasbiaR@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Samia Wacker,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Samia Wacker,ou=Management,dc=bitwarden,dc=com", - email: "WackerS@ffedbb5dcd2e43d89a2fe0f7ea7157e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aurelia Klimas,ou=Product Testing,dc=bitwarden,dc=com", - email: "KlimasA@9cbd4c37891849299ce4208e274287c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephen Marketing,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Stephen Marketing,ou=Administrative,dc=bitwarden,dc=com", - email: "MarketiS@9b56a002e1e845bebc57785089119222.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dulcinea Reuss,ou=Janitorial,dc=bitwarden,dc=com", - email: "ReussD@6f5f719e8c7c44dba4e5307764a1a899.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anissa Gottstein,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Anissa Gottstein,ou=Peons,dc=bitwarden,dc=com", - email: "GottsteA@87059a6507b64511ab56381369ebea64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=MarieAndree Galipeau,ou=Janitorial,dc=bitwarden,dc=com", - email: "GalipeaM@a9d076873ae84725b15dea4969311d19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlin Boult,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Carlin Boult,ou=Peons,dc=bitwarden,dc=com", - email: "BoultC@10bb017137f049d59bb1ad7676fcda69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kitt Briden,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kitt Briden,ou=Janitorial,dc=bitwarden,dc=com", - email: "BridenK@f3d35636fac14230bdd8e3b7a9740351.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramniklal Buske,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ramniklal Buske,ou=Management,dc=bitwarden,dc=com", - email: "BuskeR@828176ba128d4cb487e3464dc77f09ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Par Giang,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Par Giang,ou=Administrative,dc=bitwarden,dc=com", - email: "GiangP@510955a0267640f295624f2d3542d78c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jacquelynn Knox,ou=Product Development,dc=bitwarden,dc=com", - email: "KnoxJ@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daisey Karam,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Daisey Karam,ou=Management,dc=bitwarden,dc=com", - email: "KaramD@af703f54ddb945e38afdba5f17819d01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Levent Khouderchah,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Levent Khouderchah,ou=Product Development,dc=bitwarden,dc=com", - email: "KhouderL@cc743470ff7d424999d3c3aceed5aa98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Demetria Projects,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Demetria Projects,ou=Management,dc=bitwarden,dc=com", - email: "ProjectD@040eff361ea747e78133529faeb94ba1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jules Highsmith,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jules Highsmith,ou=Janitorial,dc=bitwarden,dc=com", - email: "HighsmiJ@0798984bbb0c4179a1769a476df089f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Misbah Kimma,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Misbah Kimma,ou=Human Resources,dc=bitwarden,dc=com", - email: "KimmaM@e5d9cd8563784493b06bdd8fd1d46cd9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morganne Teed,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Morganne Teed,ou=Management,dc=bitwarden,dc=com", - email: "TeedM@540d8b0a17d449ce8bcc397ded86d3bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mozelle Huang,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mozelle Huang,ou=Administrative,dc=bitwarden,dc=com", - email: "HuangM@6834e07b8b7a48599c5352f812afcb14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacy Boehlke,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Stacy Boehlke,ou=Product Development,dc=bitwarden,dc=com", - email: "BoehlkeS@7d7fba0007d84df48116a5de2752d736.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gertrud Alexan,ou=Product Testing,dc=bitwarden,dc=com", - email: "AlexanG@c34ab4db75da4e338c2262d22bcb3019.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jolanda Walbridge,ou=Administrative,dc=bitwarden,dc=com", - email: "WalbridJ@f5fd329c5c644159a0d5837b63c559bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angelica Sarkari,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Angelica Sarkari,ou=Management,dc=bitwarden,dc=com", - email: "SarkariA@97df64fd63964d63ae961e1122586e46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michel Akyurekli,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Michel Akyurekli,ou=Payroll,dc=bitwarden,dc=com", - email: "AkyurekM@10e0fd0f72834c84a749bfbeb6ab529e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Silvester Sawchuk,ou=Product Development,dc=bitwarden,dc=com", - email: "SawchukS@cb980ae301084964a9693d89f9fb2ea1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rayna Diep,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rayna Diep,ou=Product Development,dc=bitwarden,dc=com", - email: "DiepR@dd8272e863174597a9c6eb5aaf131b06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dolorita Netdbs,ou=Janitorial,dc=bitwarden,dc=com", - email: "NetdbsD@ba870021396f4a5691ef47f553098ab0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ollie Forslund,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ollie Forslund,ou=Product Development,dc=bitwarden,dc=com", - email: "ForslunO@9e342fa3efb14712a894fba19d56a8d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rebbecca Ivanyi,ou=Product Testing,dc=bitwarden,dc=com", - email: "IvanyiR@49fad969a9cf4f7f9ee17b24c9d91f37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Germain Nobes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Germain Nobes,ou=Human Resources,dc=bitwarden,dc=com", - email: "NobesG@5b56eb88f88b42a3b2d8c2c6c1108102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sidonnie Thomlinson,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThomlinS@6640f4471cc54a89999fc29622a696c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daria Farnham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Daria Farnham,ou=Product Testing,dc=bitwarden,dc=com", - email: "FarnhamD@535949b117544e80b4ad9c1fa166edb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rohit McSorley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rohit McSorley,ou=Janitorial,dc=bitwarden,dc=com", - email: "McSorleR@2b68ad1154c2463cae24d71d411d150c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Novelia Sossaman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Novelia Sossaman,ou=Administrative,dc=bitwarden,dc=com", - email: "SossamaN@527588b4f1b4422fb6b034c9d08f2576.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marabel Oster,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marabel Oster,ou=Human Resources,dc=bitwarden,dc=com", - email: "OsterM@fbc893f003694c649780eac570605509.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mufinella Klashinsky,ou=Human Resources,dc=bitwarden,dc=com", - email: "KlashinM@3f84853ed30445ccb6957c251cefdc54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marco Hoagland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marco Hoagland,ou=Janitorial,dc=bitwarden,dc=com", - email: "HoaglanM@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerty Hebert,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gerty Hebert,ou=Management,dc=bitwarden,dc=com", - email: "HebertG@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcela Dufresne,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marcela Dufresne,ou=Management,dc=bitwarden,dc=com", - email: "DufresnM@55d3abf188cf489e982ee3fc8f3c0c3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Deidre Chaisupakosol,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChaisupD@66c076947bac46c6bf8b54d183a4a3cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Almeda Maloney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Almeda Maloney,ou=Product Development,dc=bitwarden,dc=com", - email: "MaloneyA@861b221ff6974e6cbb5a0c00d198c4bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madalyn Bakay,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Madalyn Bakay,ou=Peons,dc=bitwarden,dc=com", - email: "BakayM@75234ed0eb0841e9a2b60ec9399e028a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bunni McNerlan,ou=Human Resources,dc=bitwarden,dc=com", - email: "McNerlaB@c9b998177eaf425c9e87bad80d5d4670.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allen Papantonis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Allen Papantonis,ou=Product Testing,dc=bitwarden,dc=com", - email: "PapantoA@76c37165c9c84b2e91c732cc33c7793d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leoline Cholette,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Leoline Cholette,ou=Janitorial,dc=bitwarden,dc=com", - email: "CholettL@444794b5113d44779ace93e2616392cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Masahiro Sandhar,ou=Product Testing,dc=bitwarden,dc=com", - email: "SandharM@274384e0320c40758cf1ecbcebf754d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leanna MTL,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leanna MTL,ou=Administrative,dc=bitwarden,dc=com", - email: "MTLL@ab71cedcebe141b4ae49c26990bb3316.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kathlin Guilbert,ou=Administrative,dc=bitwarden,dc=com", - email: "GuilberK@0525ebb146b94455a69f7d801ab4ff97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Octavio Naugle,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Octavio Naugle,ou=Product Testing,dc=bitwarden,dc=com", - email: "NaugleO@8cef7d2cd1884754b6cc5e28407c0a56.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Krzysztof Hoehling,ou=Janitorial,dc=bitwarden,dc=com", - email: "HoehlinK@72030161dcd24217be14766e527d14fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charangit Brasset,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Charangit Brasset,ou=Product Development,dc=bitwarden,dc=com", - email: "BrassetC@b524d22ec70741b18bc6152d2cf11515.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gena Lovejoy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gena Lovejoy,ou=Product Development,dc=bitwarden,dc=com", - email: "LovejoyG@28d2c310a8f14caeb811cfb7bdd890df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ruchel Ianace,ou=Product Testing,dc=bitwarden,dc=com", - email: "IanaceR@8dc7d29e05124a19a7a63bc69e4961be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivi Dysart,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vivi Dysart,ou=Payroll,dc=bitwarden,dc=com", - email: "DysartV@8c0b466f02f748859dc301557d2d5669.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rosabelle Montoute,ou=Janitorial,dc=bitwarden,dc=com", - email: "MontoutR@dbc4eab54b5f4d779246b56a41ba3d42.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giuseppe Laing,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Giuseppe Laing,ou=Management,dc=bitwarden,dc=com", - email: "LaingG@16269c126bd14ac9a93025afee70dceb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zeb Morrissette,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zeb Morrissette,ou=Product Development,dc=bitwarden,dc=com", - email: "MorrissZ@e7982141a478415494932da6ee7a398d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corly Wingate,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Corly Wingate,ou=Payroll,dc=bitwarden,dc=com", - email: "WingateC@8b54f75a945349ddb0e951ba57a8fbf6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=UnaMae Del,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=UnaMae Del,ou=Human Resources,dc=bitwarden,dc=com", - email: "DelU@526917d21d144952ba135c0232075538.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Almerinda MTL,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Almerinda MTL,ou=Product Development,dc=bitwarden,dc=com", - email: "MTLA@56ff7c3ad2a74f428698e9d39e33820f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanRoch Della,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=JeanRoch Della,ou=Peons,dc=bitwarden,dc=com", - email: "DellaJ@79183891cf444d618a0f5a54d8772f40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Agnola Meyerink,ou=Product Testing,dc=bitwarden,dc=com", - email: "MeyerinA@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cris Viano,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cris Viano,ou=Payroll,dc=bitwarden,dc=com", - email: "VianoC@ab9abe6692b34c219100026a54077248.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ronni Goodwin,ou=Product Testing,dc=bitwarden,dc=com", - email: "GoodwinR@1df73cc203344a569c1b4737122f78a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Takis Bulmer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Takis Bulmer,ou=Administrative,dc=bitwarden,dc=com", - email: "BulmerT@b6433b672188433c98862791df3ba6da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adah Calistro,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Adah Calistro,ou=Peons,dc=bitwarden,dc=com", - email: "CalistrA@97dff61562cc4fcf91cc6b1c0555b351.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessalin Stooke,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jessalin Stooke,ou=Peons,dc=bitwarden,dc=com", - email: "StookeJ@bef37f4792b04da289642afddb790432.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zsazsa Ukena,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zsazsa Ukena,ou=Management,dc=bitwarden,dc=com", - email: "UkenaZ@e91e9d47322f42e0863a6aa1fe777b71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raynell Shears,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Raynell Shears,ou=Payroll,dc=bitwarden,dc=com", - email: "ShearsR@87113723aa0e41bdb0ec57c16297b036.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kazem Ginzburg,ou=Product Testing,dc=bitwarden,dc=com", - email: "GinzburK@0bceb4753c404fdbaaffa3f02923ad68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hephzibah Sherali,ou=Administrative,dc=bitwarden,dc=com", - email: "SheraliH@958185118457477783d16f2fa9e93aa2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kem Wares,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kem Wares,ou=Administrative,dc=bitwarden,dc=com", - email: "WaresK@52c0e096b1b44f2f8c05cf2d62dc5788.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tai Galloway,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tai Galloway,ou=Administrative,dc=bitwarden,dc=com", - email: "GallowaT@dd438a1d29bd49c79f41cb0fe1c67139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Souphalack Eisenach,ou=Human Resources,dc=bitwarden,dc=com", - email: "EisenacS@7a465c2775724e2fb0c9f1e78b183307.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parviz Kinsella,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Parviz Kinsella,ou=Administrative,dc=bitwarden,dc=com", - email: "KinsellP@353a4c977d99447e8bf6372a139196b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelyn Godo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Madelyn Godo,ou=Peons,dc=bitwarden,dc=com", - email: "GodoM@fe29084b8c204f2e9f20c235a3bde591.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willow Sorathia,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Willow Sorathia,ou=Management,dc=bitwarden,dc=com", - email: "SorathiW@1bc1409c08584b65b922db79a968ffbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jonelle Rynders,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jonelle Rynders,ou=Management,dc=bitwarden,dc=com", - email: "RyndersJ@407ea5ccd7404466aa1b36764aa40ace.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avinash Vieiro,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Avinash Vieiro,ou=Payroll,dc=bitwarden,dc=com", - email: "VieiroA@26eb3cccbe694e88916be9fa6504534e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Malvina Encomenderos,ou=Product Development,dc=bitwarden,dc=com", - email: "EncomenM@1bfbb076f362457cb073b7b05229490f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mikhail Fssup,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mikhail Fssup,ou=Product Development,dc=bitwarden,dc=com", - email: "FssupM@fe8a88d43b8447679253a21f86c61479.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kimmi Trent,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kimmi Trent,ou=Payroll,dc=bitwarden,dc=com", - email: "TrentK@bd234f19e2034627848e6380646db915.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drucie Lindow,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Drucie Lindow,ou=Administrative,dc=bitwarden,dc=com", - email: "LindowD@b8c647e356994d2abad4efb1121ac175.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristine Hogue,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kristine Hogue,ou=Administrative,dc=bitwarden,dc=com", - email: "HogueK@33a856f3df9c45df92aa949a40965338.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmon Ghossein,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carmon Ghossein,ou=Administrative,dc=bitwarden,dc=com", - email: "GhosseiC@b1d81d4ed0934642a942a3e784da5fea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eunice Bushell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eunice Bushell,ou=Payroll,dc=bitwarden,dc=com", - email: "BushellE@7ff42394bdb9413f95ee8654a86f2b98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailene Leander,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ailene Leander,ou=Janitorial,dc=bitwarden,dc=com", - email: "LeanderA@38084e0586a041acbbdb2c1dfb35d2bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Truus Fodell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Truus Fodell,ou=Product Development,dc=bitwarden,dc=com", - email: "FodellT@a5186e33e69446d1bb74fa25b1e42650.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zulema Clairmont,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zulema Clairmont,ou=Product Development,dc=bitwarden,dc=com", - email: "ClairmoZ@789d3ef8deb24c20bce9e2915a466aef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Libor Wyble,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Libor Wyble,ou=Human Resources,dc=bitwarden,dc=com", - email: "WybleL@984a4a5c1e144450ba42a88110cdd2a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debera Shu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Debera Shu,ou=Administrative,dc=bitwarden,dc=com", - email: "ShuD@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vahe Seniuk,ou=Janitorial,dc=bitwarden,dc=com", - email: "SeniukV@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Purvee Boulerice,ou=Product Testing,dc=bitwarden,dc=com", - email: "BouleriP@b778c029c2264b3089247adae57812bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hailee Gould,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hailee Gould,ou=Peons,dc=bitwarden,dc=com", - email: "GouldH@053cdccb3446469397047f2320d54d6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=AnneMarie Komatsu,ou=Human Resources,dc=bitwarden,dc=com", - email: "KomatsuA@54d64a829cf84f78beec4b49e0ecd1e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colm Coody,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Colm Coody,ou=Human Resources,dc=bitwarden,dc=com", - email: "CoodyC@801fded39bf64900acb4ebc42aa0afe0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orly Rahn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Orly Rahn,ou=Management,dc=bitwarden,dc=com", - email: "RahnO@b25e09cbf8714d1293b2097e25927336.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dana Ashurkoff,ou=Human Resources,dc=bitwarden,dc=com", - email: "AshurkoD@169fcab935f542c68b8a72c59cfcd9c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glornia Hage,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Glornia Hage,ou=Janitorial,dc=bitwarden,dc=com", - email: "HageG@64e4540aae0b4842a2b0399c54e9799c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desiree Morini,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Desiree Morini,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoriniD@620a0deb741d4dc4a818615fd1732275.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vijya Sorensen,ou=Human Resources,dc=bitwarden,dc=com", - email: "SorenseV@449193a8d6284b519708a047f998c36e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Crawford Stensrud,ou=Janitorial,dc=bitwarden,dc=com", - email: "StensruC@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laina McKibbon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Laina McKibbon,ou=Janitorial,dc=bitwarden,dc=com", - email: "McKibboL@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peach McGlynn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Peach McGlynn,ou=Janitorial,dc=bitwarden,dc=com", - email: "McGlynnP@e9b1eab0ad46429f9b14fc88c1e1a1ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ines Younan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ines Younan,ou=Management,dc=bitwarden,dc=com", - email: "YounanI@522cd51783f94d36bac3d92521c9b231.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jai Junkie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jai Junkie,ou=Janitorial,dc=bitwarden,dc=com", - email: "JunkieJ@19a8f5526a554f0cb06e7cba3da0c581.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kokkhiang Outram,ou=Product Development,dc=bitwarden,dc=com", - email: "OutramK@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ping Lombrink,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ping Lombrink,ou=Management,dc=bitwarden,dc=com", - email: "LombrinP@a8b360eab13a4f829ec0541714c28aa0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgianne Colwell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Georgianne Colwell,ou=Product Development,dc=bitwarden,dc=com", - email: "ColwellG@73644206f22948e88cda9a77b8ecb4e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryant Fronsee,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bryant Fronsee,ou=Administrative,dc=bitwarden,dc=com", - email: "FronseeB@207f06c431db4f90babc987173636b40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amata Funderburg,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Amata Funderburg,ou=Administrative,dc=bitwarden,dc=com", - email: "FunderbA@01c954b9634144e3b54bd66a31610430.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camila Nason,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Camila Nason,ou=Peons,dc=bitwarden,dc=com", - email: "NasonC@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eldon ONeil,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eldon ONeil,ou=Product Testing,dc=bitwarden,dc=com", - email: "ONeilE@38e93300da7643e5ac4629316f76753a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Terrie Adkinson,ou=Janitorial,dc=bitwarden,dc=com", - email: "AdkinsoT@a6a05053959845178f0fed6cc2cd11a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manda Bins,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Manda Bins,ou=Administrative,dc=bitwarden,dc=com", - email: "BinsM@6703f1d29b0341659ab853ef2d4c41f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zaven Pizzimenti,ou=Janitorial,dc=bitwarden,dc=com", - email: "PizzimeZ@4a145fc9121947ce8b995d7a67929715.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joete Thieken,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joete Thieken,ou=Administrative,dc=bitwarden,dc=com", - email: "ThiekenJ@5d35d83c207d418fad061afb7ba230bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nurettin Parisen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nurettin Parisen,ou=Product Development,dc=bitwarden,dc=com", - email: "ParisenN@7bfec04dd67a4c9388bb15752591a642.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lester Leonida,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lester Leonida,ou=Administrative,dc=bitwarden,dc=com", - email: "LeonidaL@39d704426feb42afa93cfa3dd5e7e000.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mira Aczel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mira Aczel,ou=Product Development,dc=bitwarden,dc=com", - email: "AczelM@3adabc9eed2948c7b0e84ce77e7ad7d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Takehiko Malizia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Takehiko Malizia,ou=Product Development,dc=bitwarden,dc=com", - email: "MaliziaT@9e33462dc38a47268f5ccb5aff17b01e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niel Vickers,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Niel Vickers,ou=Human Resources,dc=bitwarden,dc=com", - email: "VickersN@e3a398150b8f4132954080a42a622e3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Letta Baltodano,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Letta Baltodano,ou=Management,dc=bitwarden,dc=com", - email: "BaltodaL@ffa895bc8daa4c0f81a78140a99f5460.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=De Moneypenny,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=De Moneypenny,ou=Payroll,dc=bitwarden,dc=com", - email: "MoneypeD@a87ac40ce2a547c8a852f41a3d6dfeae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyke Suh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dyke Suh,ou=Administrative,dc=bitwarden,dc=com", - email: "SuhD@1e2b67f93f814f68b5e4aa746670a4e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barrie Botting,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Barrie Botting,ou=Payroll,dc=bitwarden,dc=com", - email: "BottingB@ea26d044205a42efb212069b102bfd27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anantha Uhl,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anantha Uhl,ou=Janitorial,dc=bitwarden,dc=com", - email: "UhlA@75d6e7c6ef474c5e97f655497c047d1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kettie Lanier,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kettie Lanier,ou=Management,dc=bitwarden,dc=com", - email: "LanierK@dc21b90d233e4262bb0c379c7e3b2a15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Trina SmrkeSurbey,ou=Peons,dc=bitwarden,dc=com", - email: "SmrkeSuT@68cdf7c41dd140debe34d656d3cf57b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LianHong Grills,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=LianHong Grills,ou=Administrative,dc=bitwarden,dc=com", - email: "GrillsL@c3999c476a6d4270acb03c758687a2bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charlean Leo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Charlean Leo,ou=Product Testing,dc=bitwarden,dc=com", - email: "LeoC@b08a31b6db4d4d2a9a1e1fd91f822e32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilbert Howerton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gilbert Howerton,ou=Peons,dc=bitwarden,dc=com", - email: "HowertoG@7dc5b62cf93648d48eddbda676ec7c2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Koko Kasumovich,ou=Human Resources,dc=bitwarden,dc=com", - email: "KasumovK@ea0a27f30cde484786db6ba4690325bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loralie Balutis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Loralie Balutis,ou=Peons,dc=bitwarden,dc=com", - email: "BalutisL@00996b193c5d4d3d9dd9d82c9ad7cc6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harri Wortman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Harri Wortman,ou=Management,dc=bitwarden,dc=com", - email: "WortmanH@3956b0c83ae444e7940e65fc8c4220d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Agnesse Klaudt,ou=Product Development,dc=bitwarden,dc=com", - email: "KlaudtA@534eab5a672047c98d17e83c1921c458.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorine Grund,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lorine Grund,ou=Management,dc=bitwarden,dc=com", - email: "GrundL@ef0c8bc927fc4b19a8b12d396a49fa25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lesley Coyne,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lesley Coyne,ou=Janitorial,dc=bitwarden,dc=com", - email: "CoyneL@93251ab1fec549f1aaacc3bfbaff52ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nelleke Lind,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nelleke Lind,ou=Management,dc=bitwarden,dc=com", - email: "LindN@c27a22599aa849ec8d6e0057e5fc89b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bam Raschig,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bam Raschig,ou=Administrative,dc=bitwarden,dc=com", - email: "RaschigB@a8a3f1161ef54158b589de8fea58b91e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicoline Gelo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nicoline Gelo,ou=Peons,dc=bitwarden,dc=com", - email: "GeloN@ac21668d43ba4692aab89cc64a9b9192.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigid Austin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Brigid Austin,ou=Administrative,dc=bitwarden,dc=com", - email: "AustinB@bb451e9caafd4e81b5fb79f1aea3830a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rosamund Lavallee,ou=Janitorial,dc=bitwarden,dc=com", - email: "LavalleR@645458196d8d458186860230f1cc27c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farooq Farquhar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Farooq Farquhar,ou=Administrative,dc=bitwarden,dc=com", - email: "FarquhaF@9853bdab18e6473e80d7e44abcd07317.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandy Strauss,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brandy Strauss,ou=Management,dc=bitwarden,dc=com", - email: "StraussB@08b70f178d5240d696c9850eb93d6f02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jake McGorman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jake McGorman,ou=Management,dc=bitwarden,dc=com", - email: "McGormaJ@f8bd0fd0b11340a59263ead33f8063a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kai Mastenbrook,ou=Administrative,dc=bitwarden,dc=com", - email: "MastenbK@b06b941e5d1147e188fc4663bd226c1c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruchi Furst,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ruchi Furst,ou=Janitorial,dc=bitwarden,dc=com", - email: "FurstR@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joann Truffer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joann Truffer,ou=Administrative,dc=bitwarden,dc=com", - email: "TrufferJ@f0d1676d1c42478dbb4656ca35d0b50c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anton Chao,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anton Chao,ou=Payroll,dc=bitwarden,dc=com", - email: "ChaoA@fc85c5eabc344595a2c61eb7ac58789c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cacilie Murnaghan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cacilie Murnaghan,ou=Management,dc=bitwarden,dc=com", - email: "MurnaghC@63e60d8db42545d0aa6e5c384a01705d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilene Magri,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ilene Magri,ou=Management,dc=bitwarden,dc=com", - email: "MagriI@c2c92a5abf3749b38d91e565e28d400a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Haggar Supervisor,ou=Janitorial,dc=bitwarden,dc=com", - email: "SuperviH@bd3dedcd93c84c0aa4af62b582b04e9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mabelle Bannard,ou=Product Testing,dc=bitwarden,dc=com", - email: "BannardM@8edc6a8ce7724275bb989e481ab8171b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiele Willis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kiele Willis,ou=Janitorial,dc=bitwarden,dc=com", - email: "WillisK@c3326a8bbe8a452eb1cd54b6abb6e1f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blondie MMail,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Blondie MMail,ou=Janitorial,dc=bitwarden,dc=com", - email: "MMailB@fce4c1e9f1a6429083bed21e1e54a500.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=JFrancois KohalmiHill,ou=Janitorial,dc=bitwarden,dc=com", - email: "KohalmiJ@67f0c4cb093d45e88db73275893310b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yevette Kantor,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yevette Kantor,ou=Product Development,dc=bitwarden,dc=com", - email: "KantorY@0402555d9f67459e90e5fb987f132859.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rocco Umeeda,ou=Janitorial,dc=bitwarden,dc=com", - email: "UmeedaR@72edbeb53d9b4d36832bc312f776b4b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Youji Lawson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Youji Lawson,ou=Janitorial,dc=bitwarden,dc=com", - email: "LawsonY@8ed9716e3ac64c548b2880ae48c87c64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neysa Dpu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Neysa Dpu,ou=Administrative,dc=bitwarden,dc=com", - email: "DpuN@6e3a8629478147b69f53620c10ea4e46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KaiWai Barriere,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=KaiWai Barriere,ou=Management,dc=bitwarden,dc=com", - email: "BarrierK@f541074a8300482d85b53966c8cecebb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Magdalene Buratynski,ou=Payroll,dc=bitwarden,dc=com", - email: "BuratynM@b158d3a8fa274efeac2024038a189bc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Latashia Waldie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Latashia Waldie,ou=Peons,dc=bitwarden,dc=com", - email: "WaldieL@4e073aa3a1c84fccb5d5f011b1fd7a56.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gordy Durham,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gordy Durham,ou=Management,dc=bitwarden,dc=com", - email: "DurhamG@cc8d2b6d697a44a78314b5da49c4f756.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dierdre Isip,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dierdre Isip,ou=Payroll,dc=bitwarden,dc=com", - email: "IsipD@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Reggi Jakubowski,ou=Product Testing,dc=bitwarden,dc=com", - email: "JakubowR@a71709f685af42718e5d72a70ff54dea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Oralia Bushnell,ou=Human Resources,dc=bitwarden,dc=com", - email: "BushnelO@8f4e601fed874b8fa44bcb8ac4c7bc3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Emelina Weidenborner,ou=Administrative,dc=bitwarden,dc=com", - email: "WeidenbE@33e9ea4bed5c488498851d881014c4e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailis Stumpf,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ailis Stumpf,ou=Product Development,dc=bitwarden,dc=com", - email: "StumpfA@90c7f28240314e63a7f7df66dc6b7112.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Emelyne Fontanilla,ou=Peons,dc=bitwarden,dc=com", - email: "FontaniE@5857bd6862ae44e0abdb84cc22875a30.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Puneet Aloi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Puneet Aloi,ou=Product Testing,dc=bitwarden,dc=com", - email: "AloiP@375640a8a3724defaeb05e0a11f25f5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorotea Zeigler,ou=Payroll,dc=bitwarden,dc=com", - email: "ZeiglerD@be2d8ee120a34b15a9149c5056a15a2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Del Buckingham,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Del Buckingham,ou=Peons,dc=bitwarden,dc=com", - email: "BuckingD@c8d14bd2dc82442f9c5011dbd053c45a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pardeep Roney,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pardeep Roney,ou=Management,dc=bitwarden,dc=com", - email: "RoneyP@a8c73be9cd69486db83d92f072753b6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shuqing AuYeung,ou=Product Development,dc=bitwarden,dc=com", - email: "AuYeungS@31118e4ea061472193269b0ea325f915.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valma Myrillas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Valma Myrillas,ou=Product Testing,dc=bitwarden,dc=com", - email: "MyrillaV@1ca512dd590d4189adaf95d52220543f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvira Dessain,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alvira Dessain,ou=Janitorial,dc=bitwarden,dc=com", - email: "DessainA@e00ee60b95474bda83bb814472063684.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melli Ertan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Melli Ertan,ou=Administrative,dc=bitwarden,dc=com", - email: "ErtanM@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keri Stroupe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Keri Stroupe,ou=Product Development,dc=bitwarden,dc=com", - email: "StroupeK@a30b952d2ab641cf9bc7eee94d4f50c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Billi Chiu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Billi Chiu,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChiuB@3603f9fb94e045a59b767f557fde78c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willette Tel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Willette Tel,ou=Janitorial,dc=bitwarden,dc=com", - email: "TelW@9528dc6cbe3247b1b273b1646f94d087.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ynes Jezioranski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ynes Jezioranski,ou=Peons,dc=bitwarden,dc=com", - email: "JezioraY@45e7698e90b843bf96764adac8813e44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teruko Cregan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Teruko Cregan,ou=Peons,dc=bitwarden,dc=com", - email: "CreganT@86d24a798dce4653a3b75c56ae675864.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rick Novisedlak,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rick Novisedlak,ou=Payroll,dc=bitwarden,dc=com", - email: "NovisedR@5411fa97ed104161bed6dae71e8cb050.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aurlie Tiegs,ou=Product Development,dc=bitwarden,dc=com", - email: "TiegsA@c5bded5afb9d4ede84cc7d5e63bc3810.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Notley Peterson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Notley Peterson,ou=Payroll,dc=bitwarden,dc=com", - email: "PetersoN@7b57b8e19b5b443b99958998ffeb1b88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joyous ONeal,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Joyous ONeal,ou=Product Testing,dc=bitwarden,dc=com", - email: "ONealJ@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perle Dolan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Perle Dolan,ou=Janitorial,dc=bitwarden,dc=com", - email: "DolanP@c685d3277d5148a0bacdff719084ff0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ioana Hermack,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ioana Hermack,ou=Administrative,dc=bitwarden,dc=com", - email: "HermackI@bb425b89a99c414cb7e4980da4392291.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nikolaos Nickonov,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nikolaos Nickonov,ou=Management,dc=bitwarden,dc=com", - email: "NickonoN@da1b5788f067415eb6baf89891f2b951.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirstie Rodger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kirstie Rodger,ou=Management,dc=bitwarden,dc=com", - email: "RodgerK@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheree Siddell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sheree Siddell,ou=Payroll,dc=bitwarden,dc=com", - email: "SiddellS@c45faf74232c42d9855e1f53b9b93518.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tas Chitnis,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tas Chitnis,ou=Product Development,dc=bitwarden,dc=com", - email: "ChitnisT@c985a5079f444c70910b648248884490.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Whitfield Vexler,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Whitfield Vexler,ou=Administrative,dc=bitwarden,dc=com", - email: "VexlerW@e2a32b6b55ee40dd9f13968ae3f23ead.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maurijn Drummer,ou=Janitorial,dc=bitwarden,dc=com", - email: "DrummerM@7358f14ebc1d437faa31666574716056.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janifer Gundecha,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Janifer Gundecha,ou=Management,dc=bitwarden,dc=com", - email: "GundechJ@c21bdca857b64cf18041de8eb907a456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diandra Shnay,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Diandra Shnay,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShnayD@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Semmler Bamfo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Semmler Bamfo,ou=Payroll,dc=bitwarden,dc=com", - email: "BamfoS@4790b8410fc547599da7ac5a22f3c64f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jacquette Gentzler,ou=Human Resources,dc=bitwarden,dc=com", - email: "GentzleJ@758a671442c6456f8563c5ae42048214.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martina Grazzini,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Martina Grazzini,ou=Janitorial,dc=bitwarden,dc=com", - email: "GrazzinM@566e3f43810e4586a805d84cd5a87397.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minnie Dickie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Minnie Dickie,ou=Product Development,dc=bitwarden,dc=com", - email: "DickieM@3b50811f02664433a227210515cf2d84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susanna Buckman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Susanna Buckman,ou=Human Resources,dc=bitwarden,dc=com", - email: "BuckmanS@b6acb1459b804d2d9243461797b49472.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnette Yendall,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Johnette Yendall,ou=Product Development,dc=bitwarden,dc=com", - email: "YendallJ@c8c5e396d1a54bdc979d0124960b8ac1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurelie Doray,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aurelie Doray,ou=Peons,dc=bitwarden,dc=com", - email: "DorayA@7dfe1b9d3b374cdda358060433bb4037.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leticia Aravamudhan,ou=Product Development,dc=bitwarden,dc=com", - email: "AravamuL@af4484e6bd354321bc237bc7b6d97e88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dusan Menyhart,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dusan Menyhart,ou=Product Development,dc=bitwarden,dc=com", - email: "MenyharD@36f00fa549b64beb879fa1440346fd8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Utilla Brandon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Utilla Brandon,ou=Peons,dc=bitwarden,dc=com", - email: "BrandonU@4dd21bf6830a4c908b6586742f2895eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Eduardo Crowle,ou=Janitorial,dc=bitwarden,dc=com", - email: "CrowleE@e60dd9bce03a413a915d470a19570918.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selma Kwant,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Selma Kwant,ou=Product Testing,dc=bitwarden,dc=com", - email: "KwantS@f4a421d551d64acc80985f5e163c5415.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Levent Debord,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Levent Debord,ou=Product Development,dc=bitwarden,dc=com", - email: "DebordL@9676da99cfac4bada210a8c85a95f456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tandie Gourley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tandie Gourley,ou=Peons,dc=bitwarden,dc=com", - email: "GourleyT@0ee3c70c9f6e4a52a872f1ee5ca53058.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Indy Hu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Indy Hu,ou=Administrative,dc=bitwarden,dc=com", - email: "HuI@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Stefania Frodsham,ou=Janitorial,dc=bitwarden,dc=com", - email: "FrodshaS@d536ba88c4cb494d89cb1893edcec6ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fscocos Houston,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fscocos Houston,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoustonF@ae2e1b915f9e4564acdcb3a48eca2ab9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oriana McInnis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Oriana McInnis,ou=Peons,dc=bitwarden,dc=com", - email: "McInnisO@6ab87a8369934eb19dc984b3fc78b79c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maggee Bentley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maggee Bentley,ou=Payroll,dc=bitwarden,dc=com", - email: "BentleyM@abd7a0e1e97f4d19962cc07f7f9bc4e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inm Venjohn,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Inm Venjohn,ou=Product Testing,dc=bitwarden,dc=com", - email: "VenjohnI@6081422b940842a89e4de80c350bc6cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corena Parks,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Corena Parks,ou=Product Development,dc=bitwarden,dc=com", - email: "ParksC@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Irv Dicks,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Irv Dicks,ou=Administrative,dc=bitwarden,dc=com", - email: "DicksI@1b075a91584f496088ea7442a5922cef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marwan Marks,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marwan Marks,ou=Product Testing,dc=bitwarden,dc=com", - email: "MarksM@fb9aa8f3b49848c792549daf315b1674.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamal Calleja,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kamal Calleja,ou=Janitorial,dc=bitwarden,dc=com", - email: "CallejaK@0838c5a7fb7841708f56102b10a6cd6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jonelle Menna,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jonelle Menna,ou=Product Development,dc=bitwarden,dc=com", - email: "MennaJ@2859f4a34f934de4a7cf31d7c6a4b5d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miran McGinn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Miran McGinn,ou=Product Development,dc=bitwarden,dc=com", - email: "McGinnM@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wan Janovich,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Wan Janovich,ou=Payroll,dc=bitwarden,dc=com", - email: "JanovicW@49f125d3a1b3429789a5b52822aa6b88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shanda Hawryluk,ou=Administrative,dc=bitwarden,dc=com", - email: "HawryluS@f80fca089fec450d8b8e1759f0210196.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kazuyuki Wilson,ou=Product Development,dc=bitwarden,dc=com", - email: "WilsonK@dcbbbc8020794d6691fdae775364846a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerben Dayal,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gerben Dayal,ou=Janitorial,dc=bitwarden,dc=com", - email: "DayalG@19726387c894421098fcd2a309797d54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorilee Ravi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorilee Ravi,ou=Peons,dc=bitwarden,dc=com", - email: "RaviL@d73ef9502e9045388e89e90d1beb22e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=McGee Levasseur,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=McGee Levasseur,ou=Product Testing,dc=bitwarden,dc=com", - email: "LevasseM@2d84c4cc02464a53aeec894db02cd35d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charmain Spurlin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Charmain Spurlin,ou=Administrative,dc=bitwarden,dc=com", - email: "SpurlinC@3725e147678f48a0af59ca54935f5941.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lainey Grainger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lainey Grainger,ou=Administrative,dc=bitwarden,dc=com", - email: "GraingeL@afc892803baf45f7afbf8693d0730fcc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delly Clegg,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Delly Clegg,ou=Product Development,dc=bitwarden,dc=com", - email: "CleggD@f3671dd1ede04fe0afa0f9d1294d7d00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Addie Koolstra,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Addie Koolstra,ou=Human Resources,dc=bitwarden,dc=com", - email: "KoolstrA@ec5483be40a34a1db29ac90c75090868.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nga Orsini,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nga Orsini,ou=Product Development,dc=bitwarden,dc=com", - email: "OrsiniN@6f9b59162216455ba54905a28461b19c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherye Knighten,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cherye Knighten,ou=Janitorial,dc=bitwarden,dc=com", - email: "KnighteC@502ce1a083704d4ea4b58d700d574c63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betteann Sieling,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Betteann Sieling,ou=Human Resources,dc=bitwarden,dc=com", - email: "SielingB@147ca1a79aa4497190610d15bfa8cc6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salim McIntyre,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Salim McIntyre,ou=Administrative,dc=bitwarden,dc=com", - email: "McIntyrS@c2a7b578a92f4e2b90afb4532b24efa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jaquelyn Fullum,ou=Administrative,dc=bitwarden,dc=com", - email: "FullumJ@4311bb9fc69e4905a1f6f7f3dd2b8fab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karole Heng,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Karole Heng,ou=Product Testing,dc=bitwarden,dc=com", - email: "HengK@d9c6a4248c7f4569bc85ec9d29b8d415.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jawaid Berryhill,ou=Administrative,dc=bitwarden,dc=com", - email: "BerryhiJ@1e938c02408a4595b2f669d03197c9de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norio Saifullah,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Norio Saifullah,ou=Human Resources,dc=bitwarden,dc=com", - email: "SaifullN@058dcb3aa7ef439b89d92834e14a6f82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jacki Jorgensen,ou=Janitorial,dc=bitwarden,dc=com", - email: "JorgensJ@9c687885040c4312b6d12f4acbe7233d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shannen Jagatic,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shannen Jagatic,ou=Payroll,dc=bitwarden,dc=com", - email: "JagaticS@5ffed17cc69d4719b003fa0cfe2777f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vania Gibson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vania Gibson,ou=Product Testing,dc=bitwarden,dc=com", - email: "GibsonV@298910ba55544a1097f46cf86b2ab0db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robyn Blann,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Robyn Blann,ou=Administrative,dc=bitwarden,dc=com", - email: "BlannR@ae78ee526c5e44bdaf510c03b717277a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krier Cruey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Krier Cruey,ou=Management,dc=bitwarden,dc=com", - email: "CrueyK@75ca8d39c50647a3bea983d4fa29d680.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbette Christie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Barbette Christie,ou=Peons,dc=bitwarden,dc=com", - email: "ChristiB@b9f44a907d41480f95c6eb062092de29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Feodora Koller,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Feodora Koller,ou=Management,dc=bitwarden,dc=com", - email: "KollerF@acaa4c14b76249a29cca4a0b1f0dd114.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=MaryJo Dugal,ou=Human Resources,dc=bitwarden,dc=com", - email: "DugalM@fa04a0c4f0124714bcc971e2896a4551.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saudra Ghaemian,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Saudra Ghaemian,ou=Peons,dc=bitwarden,dc=com", - email: "GhaemiaS@054353f98ec44eceb8087bd103f37290.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Son BeattieHillier,ou=Janitorial,dc=bitwarden,dc=com", - email: "BeattieS@a8d818d625d941f8940e746ecca3cf6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valentine Newell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Valentine Newell,ou=Product Testing,dc=bitwarden,dc=com", - email: "NewellV@9db8fd67fa174b34ab0bd6d5a98f82c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oriana McRae,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Oriana McRae,ou=Product Testing,dc=bitwarden,dc=com", - email: "McRaeO@d5cf7f888ae34eefb2e00a540fba0b35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lyndy Ledoux,ou=Payroll,dc=bitwarden,dc=com", - email: "LedouxL@61d80a725e834417bf24b9714b15ac48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kizzee Halley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kizzee Halley,ou=Product Development,dc=bitwarden,dc=com", - email: "HalleyK@999c25847f9849ce9a6f746d005bddef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bette Stellwag,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bette Stellwag,ou=Product Testing,dc=bitwarden,dc=com", - email: "StellwaB@7840e4c2a77e461f9d1ea50708464b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henriette Peixoto,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Henriette Peixoto,ou=Administrative,dc=bitwarden,dc=com", - email: "PeixotoH@8aed4579481d435c98b14fd5983c7417.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matt Denmark,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Matt Denmark,ou=Management,dc=bitwarden,dc=com", - email: "DenmarkM@dfaff98f73b34c5995272b067ac045a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ardath Verrenneau,ou=Payroll,dc=bitwarden,dc=com", - email: "VerrennA@6d6628d9da624cadbb049fbfa6bdf2da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Feng Rowland,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Feng Rowland,ou=Payroll,dc=bitwarden,dc=com", - email: "RowlandF@520f892e74614b6eaf9cfa5ff5ab84c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theresa Naguib,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Theresa Naguib,ou=Administrative,dc=bitwarden,dc=com", - email: "NaguibT@047f5532df204d5fa9cb51221c4d098a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eden Annibale,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Eden Annibale,ou=Peons,dc=bitwarden,dc=com", - email: "AnnibalE@b2685c20be7244a2b29f08c6434ac903.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Buck PueGilchrist,ou=Administrative,dc=bitwarden,dc=com", - email: "PueGilcB@f23aa8a9cb8a42ba9799719ef81fbcb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cele Toshach,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cele Toshach,ou=Payroll,dc=bitwarden,dc=com", - email: "ToshachC@a44012f01e89409bb9b3f2e9702266f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Car Naro,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Car Naro,ou=Janitorial,dc=bitwarden,dc=com", - email: "NaroC@a23e4ef8816f40919cd3b230902d58ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jocelyn Napert,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jocelyn Napert,ou=Payroll,dc=bitwarden,dc=com", - email: "NapertJ@dce637b43f194588ba44f478eabb0b1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cooney Dalrymple,ou=Product Testing,dc=bitwarden,dc=com", - email: "DalrympC@3f891cf88f8f4b9cb80e52276f5b9b1c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlette Irani,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Arlette Irani,ou=Management,dc=bitwarden,dc=com", - email: "IraniA@fa6f1422a9064a168045966e8899109e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nath DeCristofaro,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeCristN@ce05c4f2c87a4de7a2796014b61208f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cynthya Jeffries,ou=Product Testing,dc=bitwarden,dc=com", - email: "JeffrieC@d92ad7c360d346679da2cf1b78e9ba49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Basheer Berhane,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Basheer Berhane,ou=Payroll,dc=bitwarden,dc=com", - email: "BerhaneB@cff83e5325124f689808e755392aa586.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Monah Sulatycki,ou=Janitorial,dc=bitwarden,dc=com", - email: "SulatycM@11006cb63c014ed78431f32c1edc2e50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bernadene Moraetes,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoraeteB@03c9972260df454c80f48cf3fc865b2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betti Tilley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Betti Tilley,ou=Janitorial,dc=bitwarden,dc=com", - email: "TilleyB@52e45fbd04374d8187c124fd4ea8990e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashu Drakage,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ashu Drakage,ou=Peons,dc=bitwarden,dc=com", - email: "DrakageA@29ddc254020a4d509a3e447f6b0e374a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yetty Likert,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Yetty Likert,ou=Administrative,dc=bitwarden,dc=com", - email: "LikertY@f576fe3e1f814a9ea745cbacb8aae078.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nady Bushnell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nady Bushnell,ou=Product Testing,dc=bitwarden,dc=com", - email: "BushnelN@4f0015ca79e24121bcec866af73ee713.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selle Verch,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Selle Verch,ou=Administrative,dc=bitwarden,dc=com", - email: "VerchS@6b2e3d121ebe4eb0bcbc734c374a1042.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Benedetta Toletzka,ou=Human Resources,dc=bitwarden,dc=com", - email: "ToletzkB@a0e52fac0f494b0982a62c82b5201e22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yukinaga Pascale,ou=Human Resources,dc=bitwarden,dc=com", - email: "PascaleY@f72cf2b3454841e499da566c9feae899.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YeeNing Sikes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=YeeNing Sikes,ou=Management,dc=bitwarden,dc=com", - email: "SikesY@3b9a242739aa4b0aa6818d262f7df54b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bachittar Seamster,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bachittar Seamster,ou=Product Development,dc=bitwarden,dc=com", - email: "SeamsteB@dab392e4f9aa43b99ad711498543123e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elmer Gribbon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Elmer Gribbon,ou=Management,dc=bitwarden,dc=com", - email: "GribbonE@7101039e23634506b2da2b1c92ecb4cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Corliss Thuswaldner,ou=Administrative,dc=bitwarden,dc=com", - email: "ThuswalC@c1f66d171c5041609d0ab78f1ebd02b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nijen Beaulieu,ou=Janitorial,dc=bitwarden,dc=com", - email: "BeaulieN@1749fb9f385d47ab94fc08c03ceb3689.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gwenora Andruzzi,ou=Administrative,dc=bitwarden,dc=com", - email: "AndruzzG@40544cfce21b453a8a348a622d569594.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlin Schrier,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marlin Schrier,ou=Payroll,dc=bitwarden,dc=com", - email: "SchrierM@27b3ace1dd6948c9b5b4ab8ce5109020.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobb Bowcock,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bobb Bowcock,ou=Management,dc=bitwarden,dc=com", - email: "BowcockB@640099050d1b4ffe96ecc4fd391c252e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermia Mendez,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hermia Mendez,ou=Management,dc=bitwarden,dc=com", - email: "MendezH@275eb97478fb4994bc1f48d698b5aa05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jackqueline Hoyt,ou=Payroll,dc=bitwarden,dc=com", - email: "HoytJ@e13bfc0b89e445668bff1bfb45347a50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thaddeus Hoehn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Thaddeus Hoehn,ou=Management,dc=bitwarden,dc=com", - email: "HoehnT@36fbb38d5bbe4aa29ae95e79bf727529.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bawn Asfazadour,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bawn Asfazadour,ou=Management,dc=bitwarden,dc=com", - email: "AsfazadB@6d93f84a8aef4b70975e9d9fd01027a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jaquenette Ingersoll,ou=Janitorial,dc=bitwarden,dc=com", - email: "IngersoJ@15ff23f989894575aad93f5e7d401d8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franky Foest,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Franky Foest,ou=Administrative,dc=bitwarden,dc=com", - email: "FoestF@57a6ba7501424a8abade55339f684e3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphene Scheck,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Daphene Scheck,ou=Janitorial,dc=bitwarden,dc=com", - email: "ScheckD@973527d3929842be874997364fd01259.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milicent Hoeler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Milicent Hoeler,ou=Management,dc=bitwarden,dc=com", - email: "HoelerM@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luis Louis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Luis Louis,ou=Janitorial,dc=bitwarden,dc=com", - email: "LouisL@f23b5ffe63104ae0be308f3a9ff9e9f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daveta SiuKwok,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Daveta SiuKwok,ou=Peons,dc=bitwarden,dc=com", - email: "SiuKwokD@2f60f554d60143df8c782af78b69eca5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minni Daymond,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Minni Daymond,ou=Administrative,dc=bitwarden,dc=com", - email: "DaymondM@56b1727a87724d8d92953fb81fb48bde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Muriel Barakat,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Muriel Barakat,ou=Product Testing,dc=bitwarden,dc=com", - email: "BarakatM@602d8f6d1a6449018081ad850b50b27b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thuan Szaran,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Thuan Szaran,ou=Product Development,dc=bitwarden,dc=com", - email: "SzaranT@7ce4f6cd43f8492dae2090d4de3aa803.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mitchell Willette,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mitchell Willette,ou=Janitorial,dc=bitwarden,dc=com", - email: "WillettM@9f3819b9115a462187208879243957c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lyndia Sherrer,ou=Janitorial,dc=bitwarden,dc=com", - email: "SherrerL@d8b58b77cc0a4df1b559d499a84b4151.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mohan Piper,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mohan Piper,ou=Product Testing,dc=bitwarden,dc=com", - email: "PiperM@c7fccfd1c09b42959a9d0aa1b9f02b2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmelle Froud,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carmelle Froud,ou=Administrative,dc=bitwarden,dc=com", - email: "FroudC@be4e574e5026401884f8759627863563.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Modesta Farr,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Modesta Farr,ou=Product Testing,dc=bitwarden,dc=com", - email: "FarrM@0a6ccfe4eb2e49debe0647e11b1f99cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liese Griffiths,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Liese Griffiths,ou=Management,dc=bitwarden,dc=com", - email: "GriffitL@37ed0472c8f94c52a139aaa374db7e5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meghan Carboni,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Meghan Carboni,ou=Product Development,dc=bitwarden,dc=com", - email: "CarboniM@a973beae67824ff38510168917193e58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryon Kluger,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bryon Kluger,ou=Product Testing,dc=bitwarden,dc=com", - email: "KlugerB@085bf0384c944c1888b51dc3d32dbe90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petar Khatri,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Petar Khatri,ou=Human Resources,dc=bitwarden,dc=com", - email: "KhatriP@8805d6cd448b4a24b0d06f88effec17a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paige Poustchi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Paige Poustchi,ou=Peons,dc=bitwarden,dc=com", - email: "PoustchP@108d9f732ac3490887754db53858df8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessa Dias,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jessa Dias,ou=Payroll,dc=bitwarden,dc=com", - email: "DiasJ@8c8779840fce4d49b2efa3b601dc72f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zorah Purohit,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zorah Purohit,ou=Janitorial,dc=bitwarden,dc=com", - email: "PurohitZ@5abf2b8f947a433ea32c981885ccae42.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shoshanna Talevi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shoshanna Talevi,ou=Peons,dc=bitwarden,dc=com", - email: "TaleviS@c81ed34bb34947a5895b38d18b584ea9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Priore Hastings,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Priore Hastings,ou=Administrative,dc=bitwarden,dc=com", - email: "HastingP@a189ef9bea1d4aa0817496c23ee8a14a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tulip Waytowich,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tulip Waytowich,ou=Administrative,dc=bitwarden,dc=com", - email: "WaytowiT@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hirooki Skwarok,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hirooki Skwarok,ou=Peons,dc=bitwarden,dc=com", - email: "SkwarokH@9d0c1ab997a64b1aa5f189a424192827.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Balaji Brogden,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Balaji Brogden,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrogdenB@eea80c8a097c479ea0dd92bdda8bd86a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zola Cuddihey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Zola Cuddihey,ou=Payroll,dc=bitwarden,dc=com", - email: "CuddiheZ@ed7e2f8d7425488d82f7ded229b79bb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanDenis Intihar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=JeanDenis Intihar,ou=Management,dc=bitwarden,dc=com", - email: "IntiharJ@e5815cb148a4476da087f6d68289008e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rejean Marc,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rejean Marc,ou=Management,dc=bitwarden,dc=com", - email: "MarcR@497dbd8e2321422c853f4b9c5d8bb34f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aly Mooney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aly Mooney,ou=Product Development,dc=bitwarden,dc=com", - email: "MooneyA@d0494e96e3ad464e9c20a3d7c613cc77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daniele Mondor,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Daniele Mondor,ou=Payroll,dc=bitwarden,dc=com", - email: "MondorD@49c91dea2e0244bc9e7e6873f695d864.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bethanne Pietromonaco,ou=Peons,dc=bitwarden,dc=com", - email: "PietromB@305e27c7ee6b4670a05bbda0ab5d7f89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charman Feeley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Charman Feeley,ou=Human Resources,dc=bitwarden,dc=com", - email: "FeeleyC@f2fad2df78014e219f0dfac94c80d8ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Auto Arwakhi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Auto Arwakhi,ou=Peons,dc=bitwarden,dc=com", - email: "ArwakhiA@9a52b4299dba4fcc9447b288652d9c6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulette Lunn,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Paulette Lunn,ou=Payroll,dc=bitwarden,dc=com", - email: "LunnP@09621247c2534422b65027556ba23ec6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Saraann Lowrie,ou=Human Resources,dc=bitwarden,dc=com", - email: "LowrieS@318df10c24464190a253b688eda7b7e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kellia Froud,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kellia Froud,ou=Management,dc=bitwarden,dc=com", - email: "FroudK@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vittorio Calis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vittorio Calis,ou=Payroll,dc=bitwarden,dc=com", - email: "CalisV@35c60780308849d18668cfb9d96a5c3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryam Doan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maryam Doan,ou=Product Development,dc=bitwarden,dc=com", - email: "DoanM@715d11b1e91d44f4af22ec63f72507bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=WaiChau Blaiklock,ou=Peons,dc=bitwarden,dc=com", - email: "BlaikloW@6529706823d04eeaa37acaabefd44ca6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nathalia Haerle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nathalia Haerle,ou=Management,dc=bitwarden,dc=com", - email: "HaerleN@96032122dc744c8fbec592d140680fed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krystn OHeocha,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Krystn OHeocha,ou=Payroll,dc=bitwarden,dc=com", - email: "OHeochaK@a3cde3b2f5de4fe5ac11c48bb6df28f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brandea Gaylor,ou=Janitorial,dc=bitwarden,dc=com", - email: "GaylorB@69527a1c41b04ddda793d00fb5a21087.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carena Chaplin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carena Chaplin,ou=Product Development,dc=bitwarden,dc=com", - email: "ChaplinC@56a96a0f177d404cb7ceed1ae32aa438.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eden MacDonald,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Eden MacDonald,ou=Janitorial,dc=bitwarden,dc=com", - email: "MacDonaE@30c53c45b6f04d6394b59a72c6e53b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jo Snuggs,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jo Snuggs,ou=Janitorial,dc=bitwarden,dc=com", - email: "SnuggsJ@811c1b0947ab4a6b8d3a5a6b67955a48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hsinshi Sheth,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hsinshi Sheth,ou=Peons,dc=bitwarden,dc=com", - email: "ShethH@8d06f5c0b94f46838a9f2ef1a0adee08.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tata Whisler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tata Whisler,ou=Product Development,dc=bitwarden,dc=com", - email: "WhislerT@3905d18a9f18484ba7305c447e951282.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Troy Hilton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Troy Hilton,ou=Payroll,dc=bitwarden,dc=com", - email: "HiltonT@4f6eaa02d34342bb804768db4a955608.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binni Siewert,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Binni Siewert,ou=Product Development,dc=bitwarden,dc=com", - email: "SiewertB@30477bd611094e598c75e08386158998.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alyse Wingo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alyse Wingo,ou=Janitorial,dc=bitwarden,dc=com", - email: "WingoA@348abbda65d940ed90bea2bd06d4b311.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ladan Chilausky,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ladan Chilausky,ou=Product Development,dc=bitwarden,dc=com", - email: "ChilausL@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwenette Farago,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gwenette Farago,ou=Management,dc=bitwarden,dc=com", - email: "FaragoG@1d41a9185db448b89563a6b96b582da2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Narinder Staffeld,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Narinder Staffeld,ou=Payroll,dc=bitwarden,dc=com", - email: "StaffelN@18b94ac27b2d4865a7f8d4b03ab48dbb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nir Dionne,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nir Dionne,ou=Management,dc=bitwarden,dc=com", - email: "DionneN@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Natalina Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", - email: "KapusciN@feab464eed244fca93a5368f188977a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LouisRene Ellens,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=LouisRene Ellens,ou=Administrative,dc=bitwarden,dc=com", - email: "EllensL@9b030c1d6ce3438f956ad1da5fffc998.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cesya Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", - email: "DelbrouC@1aa75fefc8034a8cbf83e5fc6e04d8e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oneida Sallee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Oneida Sallee,ou=Product Development,dc=bitwarden,dc=com", - email: "SalleeO@252628d3a8a547b4b8173e8a6395d7c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Humphrey Redish,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Humphrey Redish,ou=Peons,dc=bitwarden,dc=com", - email: "RedishH@a744dde5438d400a9f30fb0b1e05aeb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kerry Labarge,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kerry Labarge,ou=Administrative,dc=bitwarden,dc=com", - email: "LabargeK@96b5430a2ccc4177bd773424088b496b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jacquenetta Dyna,ou=Janitorial,dc=bitwarden,dc=com", - email: "DynaJ@ee1ca998ef0c4e3c87539ff6e0c1d116.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quyen Aronstam,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Quyen Aronstam,ou=Administrative,dc=bitwarden,dc=com", - email: "AronstaQ@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KaiMing Parker,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=KaiMing Parker,ou=Administrative,dc=bitwarden,dc=com", - email: "ParkerK@c0e366bec54b485a8d61f1970ea7c375.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shlomo Trottier,ou=Janitorial,dc=bitwarden,dc=com", - email: "TrottieS@0998558a764541358e8e70ab479cfe9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laure Norman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Laure Norman,ou=Product Testing,dc=bitwarden,dc=com", - email: "NormanL@018225420a5943d2a91cb3848fc99ee2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fabienne Koprulu,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fabienne Koprulu,ou=Peons,dc=bitwarden,dc=com", - email: "KopruluF@9a3c3b333ac543bcbc3719d5e5f7e60a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prue Dipace,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Prue Dipace,ou=Human Resources,dc=bitwarden,dc=com", - email: "DipaceP@b7704ef8877240b4aae9e468e0491f7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randolph Holtze,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Randolph Holtze,ou=Payroll,dc=bitwarden,dc=com", - email: "HoltzeR@b2c5462eaeaa4640a2c56a8da0727115.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julianna Amin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Julianna Amin,ou=Payroll,dc=bitwarden,dc=com", - email: "AminJ@e6477a83acf9482988792cb439447756.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Iris Berryhill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Iris Berryhill,ou=Product Testing,dc=bitwarden,dc=com", - email: "BerryhiI@2e9a9ce249974ccc8921959c5ef73583.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mahendra Michelussi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mahendra Michelussi,ou=Management,dc=bitwarden,dc=com", - email: "MicheluM@a09d9f82d6b74098a2eff99c6eae04fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melesa Beagley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Melesa Beagley,ou=Human Resources,dc=bitwarden,dc=com", - email: "BeagleyM@522cf8a1d4424cc392ce0a8035040445.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shayna Godcharles,ou=Human Resources,dc=bitwarden,dc=com", - email: "GodcharS@325563a273824a869e09481a2b6a16f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khue Medeiros,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Khue Medeiros,ou=Payroll,dc=bitwarden,dc=com", - email: "MedeiroK@7dfa0e40dad7443abc6740798a2e0865.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evangeline Vance,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Evangeline Vance,ou=Product Development,dc=bitwarden,dc=com", - email: "VanceE@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chrystel Auerbach,ou=Human Resources,dc=bitwarden,dc=com", - email: "AuerbacC@89e33259b1f341dda582db87064be4b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Czes Corkey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Czes Corkey,ou=Human Resources,dc=bitwarden,dc=com", - email: "CorkeyC@fca42d05acbe47a69668ab85d76a4968.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malena Cronan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Malena Cronan,ou=Administrative,dc=bitwarden,dc=com", - email: "CronanM@1c6f0f2a2fa54440bc63852786ac9fdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maia Lamy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maia Lamy,ou=Payroll,dc=bitwarden,dc=com", - email: "LamyM@e1b27383fbe2441a83c6100b48427182.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gates Frape,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gates Frape,ou=Product Development,dc=bitwarden,dc=com", - email: "FrapeG@c927612f4cbe4fcf841a3d7e140a391c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berangere Budihardjo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Berangere Budihardjo,ou=Management,dc=bitwarden,dc=com", - email: "BudiharB@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheryl Hekel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sheryl Hekel,ou=Peons,dc=bitwarden,dc=com", - email: "HekelS@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wargnier Melnyk,ou=Product Development,dc=bitwarden,dc=com", - email: "MelnykW@35074399d1224376ace4f7f6b3944707.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Masamichi Lanoue,ou=Product Development,dc=bitwarden,dc=com", - email: "LanoueM@4dcaaea580ca474bb2f3cd6f13c671c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaycee Wu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kaycee Wu,ou=Product Testing,dc=bitwarden,dc=com", - email: "WuK@c36b5ab628a4492284d8bcf464596410.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herbie Njo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Herbie Njo,ou=Payroll,dc=bitwarden,dc=com", - email: "NjoH@0534f193dc3e49e39af35f74a2ae824e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devan McCorkell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Devan McCorkell,ou=Management,dc=bitwarden,dc=com", - email: "McCorkeD@e05fc2a1ee4e4ac7aed99d3ec36bb687.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crin Landon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Crin Landon,ou=Payroll,dc=bitwarden,dc=com", - email: "LandonC@3a57e18936584b66bbd6dab5016a2418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wrennie Dinkel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Wrennie Dinkel,ou=Peons,dc=bitwarden,dc=com", - email: "DinkelW@a1c56eec6729476b83e51d12766bbfe0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siana Duffney,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Siana Duffney,ou=Management,dc=bitwarden,dc=com", - email: "DuffneyS@831a31deb2a74949a5486f724fd8cfc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Holst IC,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Holst IC,ou=Product Testing,dc=bitwarden,dc=com", - email: "ICH@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SikYin Matney,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=SikYin Matney,ou=Janitorial,dc=bitwarden,dc=com", - email: "MatneyS@b9e4a0690cd34f8480fc7a1a23da2269.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Masahiro Lauten,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Masahiro Lauten,ou=Peons,dc=bitwarden,dc=com", - email: "LautenM@79543dffda8c496eb838ccbc46809c40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nash Hesk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nash Hesk,ou=Janitorial,dc=bitwarden,dc=com", - email: "HeskN@d350f564497d40f297b86fde9fbf3e8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pier Kimma,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pier Kimma,ou=Product Testing,dc=bitwarden,dc=com", - email: "KimmaP@df43705c6bc34c44a92745bc3d700137.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenee Gryder,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lenee Gryder,ou=Product Testing,dc=bitwarden,dc=com", - email: "GryderL@b6dc43d5b48948bcabf31d42dd4a3286.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loesje Javor,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Loesje Javor,ou=Product Testing,dc=bitwarden,dc=com", - email: "JavorL@506df50552454f5fafc356a1c35c2a63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sallie Lehman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sallie Lehman,ou=Management,dc=bitwarden,dc=com", - email: "LehmanS@b7c75c00628342f998e34089fb1fbe29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yvette Yun,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yvette Yun,ou=Human Resources,dc=bitwarden,dc=com", - email: "YunY@bea3df99128348b58312efa7b662b9b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rui Hawi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rui Hawi,ou=Janitorial,dc=bitwarden,dc=com", - email: "HawiR@3cd7d03398eb49148242d22a819d71a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gertruda Bredfeldt,ou=Product Testing,dc=bitwarden,dc=com", - email: "BredfelG@3bd7ee942f7249be99148fd37660d7db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Eyde Hiscott,ou=Human Resources,dc=bitwarden,dc=com", - email: "HiscottE@5fa2601aad7947d29e66e0d319cf4fe6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Costas Pracht,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Costas Pracht,ou=Management,dc=bitwarden,dc=com", - email: "PrachtC@a568169c30834110907d40bc84b45600.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rec Mazarick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rec Mazarick,ou=Product Testing,dc=bitwarden,dc=com", - email: "MazaricR@729666359ed04f0995bf97703c170436.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Del Ambler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Del Ambler,ou=Product Development,dc=bitwarden,dc=com", - email: "AmblerD@b5c4e18f4d8e4857b7f7b6bc67b23544.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chandal Lischynsky,ou=Janitorial,dc=bitwarden,dc=com", - email: "LischynC@d7d5276b76fc44cfaa24d383211b91ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tessi Denebeim,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tessi Denebeim,ou=Peons,dc=bitwarden,dc=com", - email: "DenebeiT@f04d099937f74fc993f7a60158339d87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pru Digiacomo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pru Digiacomo,ou=Peons,dc=bitwarden,dc=com", - email: "DigiacoP@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annabell Fung,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Annabell Fung,ou=Human Resources,dc=bitwarden,dc=com", - email: "FungA@7cfb89381cc04fdd8150ed096a9b1503.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alberta Widener,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alberta Widener,ou=Peons,dc=bitwarden,dc=com", - email: "WidenerA@47e5e279eb034f06bf0151f655d29134.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PakJong Klebsch,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=PakJong Klebsch,ou=Administrative,dc=bitwarden,dc=com", - email: "KlebschP@d823092534664221878b6c81b822deac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Detlev Croxford,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Detlev Croxford,ou=Payroll,dc=bitwarden,dc=com", - email: "CroxforD@e7d87afea27e4692a1bc5a19d69abd1c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Graeme Khatri,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Graeme Khatri,ou=Product Testing,dc=bitwarden,dc=com", - email: "KhatriG@248fbbdd5e2b4efdbf1ff86927aed801.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franky Dattalo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Franky Dattalo,ou=Payroll,dc=bitwarden,dc=com", - email: "DattaloF@dc096225ff66467cb73d02445cb8563d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Careers Howes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Careers Howes,ou=Peons,dc=bitwarden,dc=com", - email: "HowesC@8970f66e3c7349128b71099e5c1cee90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susie Gawdan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Susie Gawdan,ou=Janitorial,dc=bitwarden,dc=com", - email: "GawdanS@70f44c830c534fd69815f0a242b800aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milou Lepine,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Milou Lepine,ou=Administrative,dc=bitwarden,dc=com", - email: "LepineM@2c973510a0ad49a29c0e5f61ce1778be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ransom Steski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ransom Steski,ou=Payroll,dc=bitwarden,dc=com", - email: "SteskiR@fe6a97f91a3b481692abba6662452ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ItsEng Lander,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=ItsEng Lander,ou=Administrative,dc=bitwarden,dc=com", - email: "LanderI@a9d27e40416244feb75b4872ec59a3c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kevyn Dore,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kevyn Dore,ou=Janitorial,dc=bitwarden,dc=com", - email: "DoreK@094b6a4c917e4f98917e91b5a1b28522.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Adriane Michelussi,ou=Product Testing,dc=bitwarden,dc=com", - email: "MicheluA@b18337be90444413a3513ff8460e86cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merna MacNeill,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Merna MacNeill,ou=Janitorial,dc=bitwarden,dc=com", - email: "MacNeilM@e7982141a478415494932da6ee7a398d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ioan Goridkov,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ioan Goridkov,ou=Payroll,dc=bitwarden,dc=com", - email: "GoridkoI@2b27acc969e94cf2aa1e0ddf34189475.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michelle Miner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Michelle Miner,ou=Human Resources,dc=bitwarden,dc=com", - email: "MinerM@d692d5cfe1f94d9b9ba0601cc719f91a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mair Harada,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mair Harada,ou=Janitorial,dc=bitwarden,dc=com", - email: "HaradaM@1b636b69f1444511aab6fb21d5a45120.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynnet Lewandowski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lynnet Lewandowski,ou=Management,dc=bitwarden,dc=com", - email: "LewandoL@c2594ac246a645e3be48149271f5e260.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Paolina Hotlist,ou=Product Testing,dc=bitwarden,dc=com", - email: "HotlistP@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henk Ramanathan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Henk Ramanathan,ou=Management,dc=bitwarden,dc=com", - email: "RamanatH@7b9bbc8a8db749adaa5d570b3f3c2a12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ashlan Hiltz,ou=Product Development,dc=bitwarden,dc=com", - email: "HiltzA@5ce200ed1ad64bcaad8122a35e26d155.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selinda Settels,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Selinda Settels,ou=Product Development,dc=bitwarden,dc=com", - email: "SettelsS@4d6e294f43da4e31ad0f159e88e5f4be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Susanetta Herlihy,ou=Human Resources,dc=bitwarden,dc=com", - email: "HerlihyS@6f9ae78114a84c0589079525f6533789.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ItsEng Kozak,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ItsEng Kozak,ou=Management,dc=bitwarden,dc=com", - email: "KozakI@f6644bbdf7854f02affd71b3a7133d91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Brianne Deitiker,ou=Product Testing,dc=bitwarden,dc=com", - email: "DeitikeB@f615417804714e2b90444d84fdf4c3ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marybelle Ervi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marybelle Ervi,ou=Payroll,dc=bitwarden,dc=com", - email: "ErviM@3f4b9aad0e4547d9998409b9c2b65792.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yuji Menna,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yuji Menna,ou=Peons,dc=bitwarden,dc=com", - email: "MennaY@5278466bedb347c588c1bbec6486c3cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harlene Koa,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Harlene Koa,ou=Human Resources,dc=bitwarden,dc=com", - email: "KoaH@f920b917085d494384c9f6cf31731d98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prashant Feltman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Prashant Feltman,ou=Product Development,dc=bitwarden,dc=com", - email: "FeltmanP@0fd4dc879e87454189121973304c8184.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margit Waghray,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Margit Waghray,ou=Management,dc=bitwarden,dc=com", - email: "WaghrayM@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naim Paar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Naim Paar,ou=Peons,dc=bitwarden,dc=com", - email: "PaarN@f7d02b716b224e868c9d7b6fe1dd0e0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flying Labossiere,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Flying Labossiere,ou=Human Resources,dc=bitwarden,dc=com", - email: "LabossiF@9135ac12963a4f24b390086599e22c6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbette Kolski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Barbette Kolski,ou=Product Development,dc=bitwarden,dc=com", - email: "KolskiB@1c75dd756d3646528231e24a92716bd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nishith Parmaksezian,ou=Human Resources,dc=bitwarden,dc=com", - email: "ParmaksN@40663fdde0124ce29770203c85e196b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joby Paulovics,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joby Paulovics,ou=Human Resources,dc=bitwarden,dc=com", - email: "PauloviJ@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yoshiaki Elkins,ou=Janitorial,dc=bitwarden,dc=com", - email: "ElkinsY@ed96afcd8b954b4d85dba951a21a6324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zuzana Prakash,ou=Product Testing,dc=bitwarden,dc=com", - email: "PrakashZ@801739f6e42441ccb9598e407460b5bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marjorie OKelly,ou=Janitorial,dc=bitwarden,dc=com", - email: "OKellyM@dd6d4c6b1dd34999828d0c453a81ce8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aubrette Stadler,ou=Product Testing,dc=bitwarden,dc=com", - email: "StadlerA@a3bd8e44117346b9ae0cabd5005504fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Feliza Grabner,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Feliza Grabner,ou=Payroll,dc=bitwarden,dc=com", - email: "GrabnerF@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kacey Tischhauser,ou=Administrative,dc=bitwarden,dc=com", - email: "TischhaK@03d46b0722db4aefabede2394ef70138.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dona VanLoon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dona VanLoon,ou=Payroll,dc=bitwarden,dc=com", - email: "VanLoonD@8867d48f5a1a4686bc365aa8db240829.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquie Thorson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jacquie Thorson,ou=Administrative,dc=bitwarden,dc=com", - email: "ThorsonJ@e915bf6c406f46f5ac163116df6fd9b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Veriee Tandberg,ou=Janitorial,dc=bitwarden,dc=com", - email: "TandberV@af244d93e89148e099720c8250f904c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Appolonia Roberge,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Appolonia Roberge,ou=Payroll,dc=bitwarden,dc=com", - email: "RobergeA@a1229ea2ddce4147b437f4d3ad26de38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blaise Huynh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Blaise Huynh,ou=Product Development,dc=bitwarden,dc=com", - email: "HuynhB@80d7a9e833dc41e18b9463841847c534.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lashonda Ogburn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lashonda Ogburn,ou=Management,dc=bitwarden,dc=com", - email: "OgburnL@d4c72bac49924f79b7ada92d433b947c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juline Flindall,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Juline Flindall,ou=Product Testing,dc=bitwarden,dc=com", - email: "FlindalJ@9dcbe58177c3454c992be9f2bcd770bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lujanka Paylor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lujanka Paylor,ou=Peons,dc=bitwarden,dc=com", - email: "PaylorL@a90573a98b164929a489e62b8b0a18ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbee Brox,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Barbee Brox,ou=Human Resources,dc=bitwarden,dc=com", - email: "BroxB@2126a4a93d82446eaaae85cb511bb3eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julia Zanetti,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Julia Zanetti,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZanettiJ@ede35e44c10a4bf48fb611de6dfbedd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othilia Rch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Othilia Rch,ou=Janitorial,dc=bitwarden,dc=com", - email: "RchO@7f678caa888b47ceb5d57deda96772c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaal Despault,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gaal Despault,ou=Human Resources,dc=bitwarden,dc=com", - email: "DespaulG@7092afcac0d743dda822cd8d0349a08e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mary Zalzale,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mary Zalzale,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZalzaleM@4142573bf2cb42fca0124350cec5645b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilmi Guilbault,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hilmi Guilbault,ou=Management,dc=bitwarden,dc=com", - email: "GuilbauH@e51ab927442b42fd83641345150b54a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YuenPui Matney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=YuenPui Matney,ou=Product Development,dc=bitwarden,dc=com", - email: "MatneyY@7b527a6c34584da5add653a316e64744.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heidie Schieber,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Heidie Schieber,ou=Administrative,dc=bitwarden,dc=com", - email: "SchiebeH@f30af69fd37e4f8a883a02cf91c85b15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denise Tranter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Denise Tranter,ou=Human Resources,dc=bitwarden,dc=com", - email: "TranterD@01fa9120f2a14ce7afdb05e2fa84950c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassy Burge,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cassy Burge,ou=Peons,dc=bitwarden,dc=com", - email: "BurgeC@0c4de0f537ac4059b43bc376b1423585.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Angelia Wacheski,ou=Janitorial,dc=bitwarden,dc=com", - email: "WacheskA@ffedbb5dcd2e43d89a2fe0f7ea7157e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rafaelita Colton,ou=Human Resources,dc=bitwarden,dc=com", - email: "ColtonR@bc86e63e2935428fbf0579fffe710ad0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorette McCulloch,ou=Human Resources,dc=bitwarden,dc=com", - email: "McCulloL@f0d259bb55714f71bf010360d9c0c675.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rowena Kam,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rowena Kam,ou=Administrative,dc=bitwarden,dc=com", - email: "KamR@a15bed22c46f4004bbe3a24f37013ebd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theodore Murris,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Theodore Murris,ou=Administrative,dc=bitwarden,dc=com", - email: "MurrisT@b956ceb4b4ac4e2e8c019866386df8f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rosamond Sugarbroad,ou=Janitorial,dc=bitwarden,dc=com", - email: "SugarbrR@ead811946c1c45dc9e9e74c993c44021.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bang Lischynsky,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bang Lischynsky,ou=Management,dc=bitwarden,dc=com", - email: "LischynB@93250e1458e9462fb7830f342f899a75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Derek Fleuchaus,ou=Product Testing,dc=bitwarden,dc=com", - email: "FleuchaD@df8b9402b189403dbb23818be84e6eeb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delphine Yuan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Delphine Yuan,ou=Janitorial,dc=bitwarden,dc=com", - email: "YuanD@9aed867d53c546c79f7cb774a38dec77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kambhampati Corkum,ou=Human Resources,dc=bitwarden,dc=com", - email: "CorkumK@c32875a7d5c84e0cbf7df721e038b80b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heloise Woodall,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Heloise Woodall,ou=Janitorial,dc=bitwarden,dc=com", - email: "WoodallH@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ram Minter,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ram Minter,ou=Janitorial,dc=bitwarden,dc=com", - email: "MinterR@e60de99cf3fe4ed19d668de1778949e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosa ElAm,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rosa ElAm,ou=Human Resources,dc=bitwarden,dc=com", - email: "ElAmR@db74de76c5374bf883b5c0e4951495b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirene Id,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shirene Id,ou=Payroll,dc=bitwarden,dc=com", - email: "IdS@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pauline Noffke,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pauline Noffke,ou=Human Resources,dc=bitwarden,dc=com", - email: "NoffkeP@8ad57fa5a0014d7d86bb326fd3c22de8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seungchul Irwin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Seungchul Irwin,ou=Product Development,dc=bitwarden,dc=com", - email: "IrwinS@8b295e8cd635489485394b6d99d818e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrlene Santi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Myrlene Santi,ou=Product Development,dc=bitwarden,dc=com", - email: "SantiM@11b234eea2bc47719297586301a47914.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perry Lovejoy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Perry Lovejoy,ou=Administrative,dc=bitwarden,dc=com", - email: "LovejoyP@181e7c5d669f48eca80875ae007e40bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viola Gundry,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Viola Gundry,ou=Janitorial,dc=bitwarden,dc=com", - email: "GundryV@af5f99a04b4d4049bab4751bf65043cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vlado Dordari,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vlado Dordari,ou=Janitorial,dc=bitwarden,dc=com", - email: "DordariV@3d08abe32a7a4ad6ad8c863880ea4bcf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cindra DeMarco,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cindra DeMarco,ou=Management,dc=bitwarden,dc=com", - email: "DeMarcoC@9b0aeac2cdb5436687a362cde882372c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delcine Wyss,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Delcine Wyss,ou=Product Testing,dc=bitwarden,dc=com", - email: "WyssD@42acff70d0bf48f9a8fb0c9bb9ccac94.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Edythe Kleynenberg,ou=Janitorial,dc=bitwarden,dc=com", - email: "KleynenE@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurora Gibb,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Aurora Gibb,ou=Human Resources,dc=bitwarden,dc=com", - email: "GibbA@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rona Maciel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rona Maciel,ou=Payroll,dc=bitwarden,dc=com", - email: "MacielR@06b78485a19a4427830768a006ea8516.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moel Goswick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Moel Goswick,ou=Management,dc=bitwarden,dc=com", - email: "GoswickM@726a27d8fd0d444e9b0592ed813a614a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coord Herrington,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Coord Herrington,ou=Peons,dc=bitwarden,dc=com", - email: "HerringC@8bced59a99724d5eb08954ec3497f98c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vic Cullen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vic Cullen,ou=Janitorial,dc=bitwarden,dc=com", - email: "CullenV@2f1ccd0f317a4e42955b19a4c97fc5c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabine Misko,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sabine Misko,ou=Janitorial,dc=bitwarden,dc=com", - email: "MiskoS@04065a5c7f734c5a9f2f4f6ee5fbcb1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cherry Malynowsky,ou=Janitorial,dc=bitwarden,dc=com", - email: "MalynowC@18892b15c58d47f6840bb6c23b52349b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annmarie Brunet,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Annmarie Brunet,ou=Payroll,dc=bitwarden,dc=com", - email: "BrunetA@a371212c7c2b4312bdb15d1cffb21938.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cecilia Xmssupport,ou=Payroll,dc=bitwarden,dc=com", - email: "XmssuppC@3b0207fba5944fd0a6dca16921952a03.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Icy Meleski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Icy Meleski,ou=Human Resources,dc=bitwarden,dc=com", - email: "MeleskiI@d1aff07ca59844dcbbf406f0fc775f82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Apollo Mitalas,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Apollo Mitalas,ou=Management,dc=bitwarden,dc=com", - email: "MitalasA@f34e8d49f28f402594055fe0901d1b44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirleen Costache,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shirleen Costache,ou=Payroll,dc=bitwarden,dc=com", - email: "CostachS@8386f2764ec04b659a8fc2d330c9443a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tulip Bannan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tulip Bannan,ou=Payroll,dc=bitwarden,dc=com", - email: "BannanT@c6a8d6d12ae045f8ba075455c769a929.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mareah Mior,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mareah Mior,ou=Product Development,dc=bitwarden,dc=com", - email: "MiorM@ba2be91aa4064d8bbc344c883875d66e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Terrijo Spaugh,ou=Administrative,dc=bitwarden,dc=com", - email: "SpaughT@34766460128a4ee582041f543b9bd242.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorraine Sikri,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lorraine Sikri,ou=Product Development,dc=bitwarden,dc=com", - email: "SikriL@5de6e5b11af645c19702df156533c6ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lenora DeBernardo,ou=Product Development,dc=bitwarden,dc=com", - email: "DeBernaL@f9e807ad6c8448a7b4463b10b5cc7416.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karyn Laroche,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Karyn Laroche,ou=Payroll,dc=bitwarden,dc=com", - email: "LarocheK@a5bee62da8ef4e9d8313518642926292.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koral Carkner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Koral Carkner,ou=Peons,dc=bitwarden,dc=com", - email: "CarknerK@8d84473559264c6592d3bbcbad962447.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hyung Harada,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hyung Harada,ou=Peons,dc=bitwarden,dc=com", - email: "HaradaH@bd28f191e92142cf98b8765cb13928aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lottie Fernald,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lottie Fernald,ou=Janitorial,dc=bitwarden,dc=com", - email: "FernaldL@d749086910384a37b3e64dd02ab05f90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edyta Samalot,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Edyta Samalot,ou=Product Testing,dc=bitwarden,dc=com", - email: "SamalotE@7848d01e47bb47dd88ac5b785d126995.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eoin Morrin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Eoin Morrin,ou=Product Development,dc=bitwarden,dc=com", - email: "MorrinE@28a93f8db65e4c7896a7639f8d2d6945.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Froukje Viney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Froukje Viney,ou=Administrative,dc=bitwarden,dc=com", - email: "VineyF@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sir Rivera,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sir Rivera,ou=Payroll,dc=bitwarden,dc=com", - email: "RiveraS@2f8feafb11c746348907c348d024b2dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Thompson Cauthen,ou=Product Testing,dc=bitwarden,dc=com", - email: "CauthenT@074a9a8e88a74ca2b469a141eb213f61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ky LEcuyer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ky LEcuyer,ou=Peons,dc=bitwarden,dc=com", - email: "LEcuyerK@5acaf493974e4933b27d5e78e25585d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Merralee Flueckinger,ou=Payroll,dc=bitwarden,dc=com", - email: "FlueckiM@9a46632bfd114a35bc91d48e26ae1de0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Buda Lumley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Buda Lumley,ou=Administrative,dc=bitwarden,dc=com", - email: "LumleyB@058dcb3aa7ef439b89d92834e14a6f82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Humberto Bittenbender,ou=Human Resources,dc=bitwarden,dc=com", - email: "BittenbH@8086b9fea7b2437cb09806e8e5c40f1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marley Haley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marley Haley,ou=Human Resources,dc=bitwarden,dc=com", - email: "HaleyM@108017314a624d21908ec502dfe2ba35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ernestine Newport,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ernestine Newport,ou=Management,dc=bitwarden,dc=com", - email: "NewportE@5b18d26e867d4e609682950868db4cbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrtle Bernier,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Myrtle Bernier,ou=Management,dc=bitwarden,dc=com", - email: "BernierM@882aa483754845e7b3e2e0ad8b5f2465.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=LeiSee Mikhail,ou=Janitorial,dc=bitwarden,dc=com", - email: "MikhailL@07ab31b82e2e4a9b8fae125fc95e3c8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karil Chennette,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karil Chennette,ou=Management,dc=bitwarden,dc=com", - email: "ChennetK@dbab907c037c4b6c9575abe77a070057.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liz Burrowes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Liz Burrowes,ou=Product Testing,dc=bitwarden,dc=com", - email: "BurroweL@bce34cfdf7754b3b8c5551673f06b428.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivona Koch,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ivona Koch,ou=Administrative,dc=bitwarden,dc=com", - email: "KochI@77df1d4a30ab443892398806ba3c7576.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berta Mou,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Berta Mou,ou=Management,dc=bitwarden,dc=com", - email: "MouB@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pris Freire,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pris Freire,ou=Human Resources,dc=bitwarden,dc=com", - email: "FreireP@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toyanne Ragde,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Toyanne Ragde,ou=Administrative,dc=bitwarden,dc=com", - email: "RagdeT@7056e30d771245dcacf5054aa8552268.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Domenick Zingeler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Domenick Zingeler,ou=Management,dc=bitwarden,dc=com", - email: "ZingeleD@8289a29e96624f61a290ca3e806f9dd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stergios Incze,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Stergios Incze,ou=Human Resources,dc=bitwarden,dc=com", - email: "InczeS@733a0ed9ca244d1a87001be1b9e9514d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dagmar Zegray,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZegrayD@cc36ba74c0ba485aa780b52eb8bbc932.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Habeeb Ziebarth,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZiebartH@678eafe7ca0c42cbb92380789ecb5326.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Milou Ozyetis,ou=Janitorial,dc=bitwarden,dc=com", - email: "OzyetisM@2760ce3bd4ad488f9656332aa7dc01c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hera Haupt,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hera Haupt,ou=Administrative,dc=bitwarden,dc=com", - email: "HauptH@887a5031be2f4823b51a61ce6f7368d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shahram Lahteenmaa,ou=Management,dc=bitwarden,dc=com", - email: "LahteenS@0a64fcd3d4a341f2b777b42a710cb464.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robena Scodras,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Robena Scodras,ou=Payroll,dc=bitwarden,dc=com", - email: "ScodrasR@732895781258430aa850734a965ff9eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ibby Feist,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ibby Feist,ou=Payroll,dc=bitwarden,dc=com", - email: "FeistI@2ccf92b2367047e48fb3d1d7db3fa4ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lachu Namiki,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lachu Namiki,ou=Administrative,dc=bitwarden,dc=com", - email: "NamikiL@8416e448334443f3a2b36370271f352b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Saleem Rozumna,ou=Human Resources,dc=bitwarden,dc=com", - email: "RozumnaS@c7cfbecdcc9244d89ede1a6fe93b790c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Regine McQuarrie,ou=Janitorial,dc=bitwarden,dc=com", - email: "McQuarrR@5415c52be549497a9568e3a1cfa7947d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norry Wolfs,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Norry Wolfs,ou=Payroll,dc=bitwarden,dc=com", - email: "WolfsN@30b2d6e7a1b342d0a3a8e7a402acef7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tahir Frederick,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tahir Frederick,ou=Product Development,dc=bitwarden,dc=com", - email: "FrederiT@3f23376c66604a36ab332ecde75543de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlies Mraz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marlies Mraz,ou=Product Testing,dc=bitwarden,dc=com", - email: "MrazM@ddd14554e5954403b2fd4a0b5c5617c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farooq Gaebel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Farooq Gaebel,ou=Administrative,dc=bitwarden,dc=com", - email: "GaebelF@cf8b4b591c2f4387aae0bb010f18f55b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Johnathan Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", - email: "KuzemkaJ@6de317d5c17343b4a932206ca859cf5d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janell Rolston,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Janell Rolston,ou=Product Development,dc=bitwarden,dc=com", - email: "RolstonJ@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jere Jubenville,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jere Jubenville,ou=Payroll,dc=bitwarden,dc=com", - email: "JubenviJ@3d384c725592473eb1a1b68befde2a5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noelyn Benham,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Noelyn Benham,ou=Administrative,dc=bitwarden,dc=com", - email: "BenhamN@a681f6dfeb8340649e58be794854640d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maury Ismail,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maury Ismail,ou=Management,dc=bitwarden,dc=com", - email: "IsmailM@368b49862ec74ac1974a058d04889202.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sherie Scrbacic,ou=Product Testing,dc=bitwarden,dc=com", - email: "ScrbaciS@f2e9e9593d6a4cd0a817bf5143921c87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nixie Cusato,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nixie Cusato,ou=Administrative,dc=bitwarden,dc=com", - email: "CusatoN@108c2ffc1189457d80b27e9b862163f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alastair Slozil,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alastair Slozil,ou=Administrative,dc=bitwarden,dc=com", - email: "SlozilA@97e0ce17a4af42e594025cdd4659fe64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgena Behrens,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Georgena Behrens,ou=Management,dc=bitwarden,dc=com", - email: "BehrensG@f10e733ab73f49deaef5dee5420e792f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jolene Saravanos,ou=Human Resources,dc=bitwarden,dc=com", - email: "SaravanJ@7b122176285947e2aaa662ba71171180.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prayson McCormack,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Prayson McCormack,ou=Management,dc=bitwarden,dc=com", - email: "McCormaP@16ace8d5d6084f5abeb34113797f56c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharyl Meerveld,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sharyl Meerveld,ou=Management,dc=bitwarden,dc=com", - email: "MeervelS@bbbcbff60b6546acba48c66c3d01c6a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Khurshid Kovarik,ou=Administrative,dc=bitwarden,dc=com", - email: "KovarikK@9d4064a8e48f4ac180e71fdbabc60ffb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tech McAllister,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tech McAllister,ou=Product Testing,dc=bitwarden,dc=com", - email: "McAllisT@79a240440e8849ae9bc16c0dd8ed8e58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Budi Anglin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Budi Anglin,ou=Payroll,dc=bitwarden,dc=com", - email: "AnglinB@67ca48342c3741e5ba95513725c86734.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Business Marcelissen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Business Marcelissen,ou=Janitorial,dc=bitwarden,dc=com", - email: "MarceliB@43eeea353b144740b2e11c7fee2c8031.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryKay Wilcox,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=MaryKay Wilcox,ou=Management,dc=bitwarden,dc=com", - email: "WilcoxM@3ae6b803292e4da4b28cd13a1bfe807a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ingeborg Ferraro,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ingeborg Ferraro,ou=Management,dc=bitwarden,dc=com", - email: "FerraroI@54b7c6b9ae32434d95317388edf7be04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulcinea Merrils,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dulcinea Merrils,ou=Peons,dc=bitwarden,dc=com", - email: "MerrilsD@b7ede65f1eb44e418de85b304b190714.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chiquia Tanner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chiquia Tanner,ou=Peons,dc=bitwarden,dc=com", - email: "TannerC@0c7266e301f84221bfdf197ea43adb91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorreen Zrobok,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dorreen Zrobok,ou=Management,dc=bitwarden,dc=com", - email: "ZrobokD@7a24e66dbfc94daf862a7e6a6968c7c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Floris Bui,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Floris Bui,ou=Product Testing,dc=bitwarden,dc=com", - email: "BuiF@674b214928e2430ab12d2c738240bab6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maarten Braum,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maarten Braum,ou=Human Resources,dc=bitwarden,dc=com", - email: "BraumM@a92e8ef5bd3649d081a744b7f12ac2d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sibelle Hoelscher,ou=Administrative,dc=bitwarden,dc=com", - email: "HoelschS@25af2fd0acb14921ba7d57172ced27e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shane Levert,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shane Levert,ou=Administrative,dc=bitwarden,dc=com", - email: "LevertS@6ae361d0671f4e45b2dca3f489ab2ec1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hesther Gunderson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hesther Gunderson,ou=Management,dc=bitwarden,dc=com", - email: "GundersH@981b6315c22b4f71987c74b5e187713d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Korney Walkley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Korney Walkley,ou=Administrative,dc=bitwarden,dc=com", - email: "WalkleyK@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kamillah Ramroop,ou=Human Resources,dc=bitwarden,dc=com", - email: "RamroopK@b0aeaf84c5ad4089a7dc8b8ec5a4334d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Enrica Keates,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Enrica Keates,ou=Human Resources,dc=bitwarden,dc=com", - email: "KeatesE@cc8182e6de0c4840a0e434e3f5bc6e84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sir Benda,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sir Benda,ou=Management,dc=bitwarden,dc=com", - email: "BendaS@583357fdc26f4393af80e3436e701033.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Samara Edmunds,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Samara Edmunds,ou=Peons,dc=bitwarden,dc=com", - email: "EdmundsS@dfd74a54e46140bbbd208154864b4090.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eoin Moomey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eoin Moomey,ou=Payroll,dc=bitwarden,dc=com", - email: "MoomeyE@9915e6a9d4174e1a84331ee3926d409a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shandy Sambi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shandy Sambi,ou=Payroll,dc=bitwarden,dc=com", - email: "SambiS@5e8f47bf29ef420c9f1d1267ba3841e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bili Giuntini,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bili Giuntini,ou=Administrative,dc=bitwarden,dc=com", - email: "GiuntinB@b0acec0f1a0d41658fee0415dd506a9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marisca Aguinsky,ou=Product Testing,dc=bitwarden,dc=com", - email: "AguinskM@4e6f18df9f6440b4a4cb2cbef71a4b62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephenie Steiert,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Stephenie Steiert,ou=Peons,dc=bitwarden,dc=com", - email: "SteiertS@86fa9bbc30944a4fa4b7882b86fd11b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esmaria Seddigh,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Esmaria Seddigh,ou=Peons,dc=bitwarden,dc=com", - email: "SeddighE@bc1e9c4893b549519fdc2cec6b403596.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Su Keef,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Su Keef,ou=Administrative,dc=bitwarden,dc=com", - email: "KeefS@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ignatius Baines,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ignatius Baines,ou=Product Development,dc=bitwarden,dc=com", - email: "BainesI@48da65776d804c88bd44538c39d70bac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenson Arbuckle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jenson Arbuckle,ou=Management,dc=bitwarden,dc=com", - email: "ArbucklJ@3641d12680c94b38a9a8f5320636d2b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaclin Schreiber,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jaclin Schreiber,ou=Management,dc=bitwarden,dc=com", - email: "SchreibJ@27d8375532a543b0aa95f943636664d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steen Realtime,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Steen Realtime,ou=Administrative,dc=bitwarden,dc=com", - email: "RealtimS@c70dbe261a1148e99aeacce847bbdb51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edmx Walston,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Edmx Walston,ou=Janitorial,dc=bitwarden,dc=com", - email: "WalstonE@5088b8e166bd41bcaf6a2c598ba48813.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abu Corbeil,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Abu Corbeil,ou=Peons,dc=bitwarden,dc=com", - email: "CorbeilA@68ec027fc3e8470bb6532dfe2902167e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annamaria Woll,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annamaria Woll,ou=Administrative,dc=bitwarden,dc=com", - email: "WollA@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merdia Baer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Merdia Baer,ou=Human Resources,dc=bitwarden,dc=com", - email: "BaerM@5a18e19bdaa8418c835d1d34e33216b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henrietta Horwood,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Henrietta Horwood,ou=Peons,dc=bitwarden,dc=com", - email: "HorwoodH@25d7b9cccaa243aa9f0b4f4799edda0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sherryl Alsaleh,ou=Peons,dc=bitwarden,dc=com", - email: "AlsalehS@48d89f6366ec4bc9a3dc2bca58802c17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hannis Sooley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hannis Sooley,ou=Janitorial,dc=bitwarden,dc=com", - email: "SooleyH@e65b170ac1bc46edb99b4efe67ea9912.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teruko Zork,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Teruko Zork,ou=Payroll,dc=bitwarden,dc=com", - email: "ZorkT@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerrit Erwin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gerrit Erwin,ou=Payroll,dc=bitwarden,dc=com", - email: "ErwinG@7a9c912852004a79888207561bb1435a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kylila Valliani,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kylila Valliani,ou=Administrative,dc=bitwarden,dc=com", - email: "VallianK@fd1544a938044a8db9c9f3fe2943b130.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Courtenay Meres,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Courtenay Meres,ou=Product Development,dc=bitwarden,dc=com", - email: "MeresC@77aa906181cb42438460f5dd055a37d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theodora Henshaw,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Theodora Henshaw,ou=Peons,dc=bitwarden,dc=com", - email: "HenshawT@13acf9d4e3a0437699a9a1215c20b7b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Feodora Chohan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Feodora Chohan,ou=Payroll,dc=bitwarden,dc=com", - email: "ChohanF@3d4675220c3446eb8911d147fd0b6a3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corri Gower,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Corri Gower,ou=Payroll,dc=bitwarden,dc=com", - email: "GowerC@7bf1692be49847d0882b5c9df56a1692.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anthiathia Asselin,ou=Janitorial,dc=bitwarden,dc=com", - email: "AsselinA@68e7ebe37536433083e87ad5627627be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Starsdps Friedrich,ou=Product Testing,dc=bitwarden,dc=com", - email: "FriedriS@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mimi Malisic,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mimi Malisic,ou=Payroll,dc=bitwarden,dc=com", - email: "MalisicM@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farra Threader,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Farra Threader,ou=Payroll,dc=bitwarden,dc=com", - email: "ThreadeF@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrna Felske,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Myrna Felske,ou=Payroll,dc=bitwarden,dc=com", - email: "FelskeM@71d0bccd79604a9eac86805946a4350a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adiana Claveau,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Adiana Claveau,ou=Human Resources,dc=bitwarden,dc=com", - email: "ClaveauA@396383f50c134f9f99ae930271bd4239.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ciriaco Benchimol,ou=Product Testing,dc=bitwarden,dc=com", - email: "BenchimC@aa28558339af40ffa3a5f1495db43172.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigitte Tiseo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brigitte Tiseo,ou=Peons,dc=bitwarden,dc=com", - email: "TiseoB@35cbe55d624d41aaa7e77e5513292711.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keith Jahromi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Keith Jahromi,ou=Product Testing,dc=bitwarden,dc=com", - email: "JahromiK@d22efb4b0b454465bf3c4729bd0e73ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elfreda Erkel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elfreda Erkel,ou=Payroll,dc=bitwarden,dc=com", - email: "ErkelE@8b9f4bbc7081476287d00344dce43370.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacinta Boult,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jacinta Boult,ou=Administrative,dc=bitwarden,dc=com", - email: "BoultJ@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mab Sizto,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mab Sizto,ou=Payroll,dc=bitwarden,dc=com", - email: "SiztoM@dcb09de8e7a54dbfbb3606c66044aa08.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ralina Moshinsky,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoshinsR@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Haleigh Tarlamis,ou=Product Testing,dc=bitwarden,dc=com", - email: "TarlamiH@aed7b3397fd44fc8824d75ec5a571273.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Howard Scarlett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Howard Scarlett,ou=Peons,dc=bitwarden,dc=com", - email: "ScarletH@1a20ad7a171d4781bdcb10c53186c8d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=CoOp Grondin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=CoOp Grondin,ou=Administrative,dc=bitwarden,dc=com", - email: "GrondinC@d52f84a4faf148e392088a55b1d91d85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felton Bartz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Felton Bartz,ou=Peons,dc=bitwarden,dc=com", - email: "BartzF@6535949de3ea47249141a9acfc0e7a20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norene Molnar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Norene Molnar,ou=Management,dc=bitwarden,dc=com", - email: "MolnarN@303ac29ae28a4feca207111066bb217f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabey Solomon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gabey Solomon,ou=Product Development,dc=bitwarden,dc=com", - email: "SolomonG@6a57f27be787416186e20874ca3a3f16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joanne Trefry,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joanne Trefry,ou=Peons,dc=bitwarden,dc=com", - email: "TrefryJ@2379df05bd9f48589e7c5672593d18d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sukey Grimm,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sukey Grimm,ou=Payroll,dc=bitwarden,dc=com", - email: "GrimmS@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sari Realtime,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sari Realtime,ou=Management,dc=bitwarden,dc=com", - email: "RealtimS@37b64e2fbb1c4157b1ba60bf3077c7c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=YikHon DiFalco,ou=Product Testing,dc=bitwarden,dc=com", - email: "DiFalcoY@4f4529779c39486286005f0294a1558e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fanni Hite,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fanni Hite,ou=Human Resources,dc=bitwarden,dc=com", - email: "HiteF@2c4021d313d14b3da0ff25c9be8215f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faiz Brodersen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Faiz Brodersen,ou=Product Development,dc=bitwarden,dc=com", - email: "BrodersF@3313782fad5f448f843eeeeabc4b6528.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Denyse Goricanec,ou=Product Testing,dc=bitwarden,dc=com", - email: "GoricanD@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazem Snead,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kazem Snead,ou=Payroll,dc=bitwarden,dc=com", - email: "SneadK@0a1433e150374c7dabedf34e4d8de46b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Birgitta Ritter,ou=Human Resources,dc=bitwarden,dc=com", - email: "RitterB@960b796114d841ca97e435a64e92baa2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donia McCormick,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Donia McCormick,ou=Product Development,dc=bitwarden,dc=com", - email: "McCormiD@2377c0b716574201b1f20f0a302f3543.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akin Gillies,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Akin Gillies,ou=Peons,dc=bitwarden,dc=com", - email: "GilliesA@755e2f2f01064fb58f5836b47a9f6953.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baldev Chugha,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Baldev Chugha,ou=Administrative,dc=bitwarden,dc=com", - email: "ChughaB@8bca585b47ed462fb7229680f3ab2eb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carla Wichman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carla Wichman,ou=Administrative,dc=bitwarden,dc=com", - email: "WichmanC@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarine Croxford,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sarine Croxford,ou=Payroll,dc=bitwarden,dc=com", - email: "CroxforS@57edeceb332942988b2e62feed2c524a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Truda LaFargue,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Truda LaFargue,ou=Human Resources,dc=bitwarden,dc=com", - email: "LaFarguT@da55d35b2fa24638b2a13fe298cfe306.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Veronica Medefesser,ou=Human Resources,dc=bitwarden,dc=com", - email: "MedefesV@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marco Secrest,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marco Secrest,ou=Janitorial,dc=bitwarden,dc=com", - email: "SecrestM@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bellina Onder,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bellina Onder,ou=Janitorial,dc=bitwarden,dc=com", - email: "OnderB@c70533cbf13f4eda83e80aa7a3960847.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=MarieAndree Thoms,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThomsM@9144995fa4c649da9d774d2a93d230da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kiem Zaharychuk,ou=Peons,dc=bitwarden,dc=com", - email: "ZaharycK@2ccc6f9a9fb7406dac8df77daed9aa92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=MichaelMorgan Zingale,ou=Product Development,dc=bitwarden,dc=com", - email: "ZingaleM@4d021ab5235d4c7a8bf5c3ef91818e2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yumi Britton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Yumi Britton,ou=Administrative,dc=bitwarden,dc=com", - email: "BrittonY@a882281c1b844c5997ce4401b36f83a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subhashini Tadge,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Subhashini Tadge,ou=Product Development,dc=bitwarden,dc=com", - email: "TadgeS@ff53b48d0a6a4f5b801944bd329c88a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hanneke McNerney,ou=Product Testing,dc=bitwarden,dc=com", - email: "McNerneH@5fae264559df41c5819756869bf97f69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacky Cavasin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jacky Cavasin,ou=Management,dc=bitwarden,dc=com", - email: "CavasinJ@57dc19fb72ed48a88f045569d12c771f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katalin Qadri,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Katalin Qadri,ou=Payroll,dc=bitwarden,dc=com", - email: "QadriK@425e3df8b9654b8fb5fafe68899d23b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gabriellia Norby,ou=Janitorial,dc=bitwarden,dc=com", - email: "NorbyG@96b954821ec4456a90674f1af5f31f23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evanne Holesinger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Evanne Holesinger,ou=Payroll,dc=bitwarden,dc=com", - email: "HolesinE@1060465da9c64631a2455d428f565a2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malethia Elliot,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Malethia Elliot,ou=Payroll,dc=bitwarden,dc=com", - email: "ElliotM@ad4b259f1800408a898dff512e0a094e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhawal Howard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dhawal Howard,ou=Management,dc=bitwarden,dc=com", - email: "HowardD@1cf4ed44c9f34d57aaaa8e332c0af04a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacee Syed,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Stacee Syed,ou=Administrative,dc=bitwarden,dc=com", - email: "SyedS@7dd6cc5778d64f7ea47fc9b85bb01ae7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mamie Warrellow,ou=Product Testing,dc=bitwarden,dc=com", - email: "WarrellM@316f28dee96a4927ae60609771465dfa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kem Birkwood,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kem Birkwood,ou=Product Development,dc=bitwarden,dc=com", - email: "BirkwooK@bcbc05a61af34797a5c081f266c4277f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steffen Godo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Steffen Godo,ou=Human Resources,dc=bitwarden,dc=com", - email: "GodoS@dd6aa42254414b099b5f31cdae049e72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merlin McCormack,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Merlin McCormack,ou=Administrative,dc=bitwarden,dc=com", - email: "McCormaM@8f537ae4b6b344bbba62604a48f151f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darell Sumi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Darell Sumi,ou=Product Development,dc=bitwarden,dc=com", - email: "SumiD@797c12ee868e41e5be4bb46785d3d6aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tybie Hulen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tybie Hulen,ou=Administrative,dc=bitwarden,dc=com", - email: "HulenT@67373a2d3605487eb6202dbbf71e2058.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fitzroy Nilson,ou=Human Resources,dc=bitwarden,dc=com", - email: "NilsonF@0be01d83222f46f7842093c364d584c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crysta Aderhold,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Crysta Aderhold,ou=Management,dc=bitwarden,dc=com", - email: "AderholC@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranna Barriere,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ranna Barriere,ou=Product Testing,dc=bitwarden,dc=com", - email: "BarrierR@1a851fc2814040d38d9f2abd59e828ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ignatius Bankhead,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ignatius Bankhead,ou=Management,dc=bitwarden,dc=com", - email: "BankheaI@fac57f1f10364a88aa5ab37aeecbc8a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlis McCafferty,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carlis McCafferty,ou=Product Development,dc=bitwarden,dc=com", - email: "McCaffeC@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sashenka Inamullah,ou=Payroll,dc=bitwarden,dc=com", - email: "InamullS@c3cd4c3c22f34a2dbd82ab9ceb4d6bba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dewey Cozyn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dewey Cozyn,ou=Administrative,dc=bitwarden,dc=com", - email: "CozynD@7d02421d78824b528c03a8f50fd2c791.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raphaela Bainton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Raphaela Bainton,ou=Administrative,dc=bitwarden,dc=com", - email: "BaintonR@2ccc6f9a9fb7406dac8df77daed9aa92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulette Gateau,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Paulette Gateau,ou=Human Resources,dc=bitwarden,dc=com", - email: "GateauP@2ea5cd05f7bb4e668e89ea0ce9ab618b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Molly IRCMTL,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Molly IRCMTL,ou=Peons,dc=bitwarden,dc=com", - email: "IRCMTLM@5406f1a2a8b3462dade05957b7fb225f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danial Simhan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Danial Simhan,ou=Janitorial,dc=bitwarden,dc=com", - email: "SimhanD@576758681ec2477ebb412f65a7055774.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aditya Nordstrom,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aditya Nordstrom,ou=Management,dc=bitwarden,dc=com", - email: "NordstrA@439323a8d95149fea66efa1b90531fea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquenetta Altherr,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jacquenetta Altherr,ou=Management,dc=bitwarden,dc=com", - email: "AltherrJ@185815afbde44b82a694cd5922f519f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joeann DeAnda,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joeann DeAnda,ou=Administrative,dc=bitwarden,dc=com", - email: "DeAndaJ@2adc28241a1f46749fea06db3960400f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valentina Andrew,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Valentina Andrew,ou=Human Resources,dc=bitwarden,dc=com", - email: "AndrewV@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kemal Kaoud,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kemal Kaoud,ou=Payroll,dc=bitwarden,dc=com", - email: "KaoudK@93e4f4c832eb40f5b256fbdf877ac624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roseanna Koiste,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roseanna Koiste,ou=Administrative,dc=bitwarden,dc=com", - email: "KoisteR@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camino Medlin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Camino Medlin,ou=Management,dc=bitwarden,dc=com", - email: "MedlinC@2aaa9be738c34b3b97229c09ad694399.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Akio Gerlinsky,ou=Administrative,dc=bitwarden,dc=com", - email: "GerlinsA@950212f9d4c64a14966148f9248060e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilian Racette,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lilian Racette,ou=Product Testing,dc=bitwarden,dc=com", - email: "RacetteL@f6414ae4de9c48918d1c08fe0828695b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clara Partello,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Clara Partello,ou=Administrative,dc=bitwarden,dc=com", - email: "PartellC@68e96d35b7bb4addbceb19d0fa830ff5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Birdie Pifko,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Birdie Pifko,ou=Human Resources,dc=bitwarden,dc=com", - email: "PifkoB@f9ccaba996b948fd826c0c115f90045a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salomi Erickson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Salomi Erickson,ou=Payroll,dc=bitwarden,dc=com", - email: "EricksoS@a55f359fe55a4a3a9208cf8975a694de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hephzibah Wortman,ou=Payroll,dc=bitwarden,dc=com", - email: "WortmanH@5d35d83c207d418fad061afb7ba230bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opal Lovas,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Opal Lovas,ou=Product Development,dc=bitwarden,dc=com", - email: "LovasO@b6586e5c798a4f03943784564d79007b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosamond Raaflaub,ou=Peons,dc=bitwarden,dc=com", - email: "RaaflauR@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tabbi Ferrao,ou=Payroll,dc=bitwarden,dc=com", - email: "FerraoT@d36e7daa663c4d1bb3597eaa04d6f0fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gurvinder Kinnaird,ou=Peons,dc=bitwarden,dc=com", - email: "KinnairG@6a01aba5dc8f451b8404750bb95136ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jai Malizia,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jai Malizia,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaliziaJ@a06bbbc55c33432c98c9104924935152.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alice Krogh,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alice Krogh,ou=Management,dc=bitwarden,dc=com", - email: "KroghA@6d14a4ca13c844f4a7d4c4bf95fd8d6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronan Gillard,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ronan Gillard,ou=Payroll,dc=bitwarden,dc=com", - email: "GillardR@5081de5367fd49c089deda39143eb679.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=BettyAnn Sakauye,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=BettyAnn Sakauye,ou=Management,dc=bitwarden,dc=com", - email: "SakauyeB@804b9151f1ba415a894983275163dae1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hermione Reijerkerk,ou=Payroll,dc=bitwarden,dc=com", - email: "ReijerkH@d8b1c84590d04a1e945916297425fac6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adan Fralick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Adan Fralick,ou=Product Testing,dc=bitwarden,dc=com", - email: "FralickA@fd53ca3e2a714cfd8efeb8476d6535f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koren Jalali,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Koren Jalali,ou=Product Testing,dc=bitwarden,dc=com", - email: "JalaliK@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reza StAmour,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Reza StAmour,ou=Payroll,dc=bitwarden,dc=com", - email: "StAmourR@5e804d1ca9ae4836a819c9a675bca682.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binh DALE,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Binh DALE,ou=Human Resources,dc=bitwarden,dc=com", - email: "DALEB@7c9912a898274068a97bbe2d535d84de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanata Panch,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kanata Panch,ou=Administrative,dc=bitwarden,dc=com", - email: "PanchK@501150f5ddc648879b7e60650df203a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanata Runciman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kanata Runciman,ou=Janitorial,dc=bitwarden,dc=com", - email: "RuncimaK@a6c2af5a8f94494bae6122c60dacfc6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gaylene Szymanski,ou=Human Resources,dc=bitwarden,dc=com", - email: "SzymansG@8e1a75e7c8ce4804b1328d26ab1471d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lester Brookhart,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lester Brookhart,ou=Management,dc=bitwarden,dc=com", - email: "BrookhaL@207f92af6bc444a9a508764b35dab916.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adelheid Godin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Adelheid Godin,ou=Management,dc=bitwarden,dc=com", - email: "GodinA@4fc4e61aa4364561b3dbed18d06aa13c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calypso Hagar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Calypso Hagar,ou=Management,dc=bitwarden,dc=com", - email: "HagarC@234ee37c120948d4b641c99209d1bdde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leann Bawek,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leann Bawek,ou=Administrative,dc=bitwarden,dc=com", - email: "BawekL@ce56c75a600546b9ade2ff9aaa1b992b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stormy Bayraktar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stormy Bayraktar,ou=Management,dc=bitwarden,dc=com", - email: "BayraktS@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margarita Delisle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Margarita Delisle,ou=Janitorial,dc=bitwarden,dc=com", - email: "DelisleM@de05663cc1c445b9849ee8fab2914551.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rao Fontana,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rao Fontana,ou=Management,dc=bitwarden,dc=com", - email: "FontanaR@3714ef07d9f24410a85dd847beb54eef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Richard Bachelu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Richard Bachelu,ou=Janitorial,dc=bitwarden,dc=com", - email: "BacheluR@3184696e559c4eb9b1f55dd5eb5e3418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatsman Musa,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tatsman Musa,ou=Management,dc=bitwarden,dc=com", - email: "MusaT@7c3aa81c6a4d478383075852375fc21f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pia Maksoud,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pia Maksoud,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaksoudP@9688197f14c24b1ba3397822373736ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Scovill Sayar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Scovill Sayar,ou=Product Testing,dc=bitwarden,dc=com", - email: "SayarS@6514a77f75fd435b8801b83088c2b38a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norry Shen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Norry Shen,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShenN@539cce6ead8749dbb15039351f6600f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kayle Ahmad,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kayle Ahmad,ou=Payroll,dc=bitwarden,dc=com", - email: "AhmadK@d31e92a87311451da615d0866d1a1f0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debor Schiltz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Debor Schiltz,ou=Peons,dc=bitwarden,dc=com", - email: "SchiltzD@34fb6983abae4929b62080bbb5ec3e07.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandi Kochanski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sandi Kochanski,ou=Management,dc=bitwarden,dc=com", - email: "KochansS@3313782fad5f448f843eeeeabc4b6528.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hadria Rowley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hadria Rowley,ou=Peons,dc=bitwarden,dc=com", - email: "RowleyH@52000c9ecc634fc79873a4b7b39062e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosetta Toscano,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosetta Toscano,ou=Peons,dc=bitwarden,dc=com", - email: "ToscanoR@6edb45774ca84613bad15cd0d733e197.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chi Winsborrow,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chi Winsborrow,ou=Payroll,dc=bitwarden,dc=com", - email: "WinsborC@7a29f9439ed8484883467552bcb6396e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Blanch Karunaratne,ou=Product Testing,dc=bitwarden,dc=com", - email: "KarunarB@1d1f899f1d144566b6f0636dabdfb0f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Zarah Vanderhoeven,ou=Human Resources,dc=bitwarden,dc=com", - email: "VanderhZ@fef3179c9c4841a591a83e801687f728.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ammar Foldes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ammar Foldes,ou=Management,dc=bitwarden,dc=com", - email: "FoldesA@38ca1ed9d41143faa1aac0bcae166073.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andria Nagy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Andria Nagy,ou=Janitorial,dc=bitwarden,dc=com", - email: "NagyA@f356b9ffcffb4ac98d745b6fe117b574.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Earle Calkins,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Earle Calkins,ou=Janitorial,dc=bitwarden,dc=com", - email: "CalkinsE@d31e92a87311451da615d0866d1a1f0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Irc Loper,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Irc Loper,ou=Payroll,dc=bitwarden,dc=com", - email: "LoperI@db0d46fdeb854c2eb066d9894606ad6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dari Landriault,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dari Landriault,ou=Management,dc=bitwarden,dc=com", - email: "LandriaD@e0fbcbf86ba64fa69e571f107b3ec1d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Logntp Wilemon,ou=Janitorial,dc=bitwarden,dc=com", - email: "WilemonL@3bfc3de402e042a394d461b86f93128b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lonna Varano,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lonna Varano,ou=Product Development,dc=bitwarden,dc=com", - email: "VaranoL@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shan Heynen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shan Heynen,ou=Product Development,dc=bitwarden,dc=com", - email: "HeynenS@bb0489742bf04771919e77ac610dacd0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carena Pennington,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carena Pennington,ou=Human Resources,dc=bitwarden,dc=com", - email: "PenningC@7a31b9bd3b244190a4667b858c47bbc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luci Sebastien,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Luci Sebastien,ou=Product Development,dc=bitwarden,dc=com", - email: "SebastiL@6776642cb6824166a999264ad8dc48c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mansukha Lehtovaara,ou=Management,dc=bitwarden,dc=com", - email: "LehtovaM@5a401695e3b247eaaefdf24718c62818.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Feynman OShaughnessey,ou=Peons,dc=bitwarden,dc=com", - email: "OShaughF@4839522ad0264d68aafb73c3cd081f79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gayleen Hagglund,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gayleen Hagglund,ou=Management,dc=bitwarden,dc=com", - email: "HagglunG@129df14932ae4f0186cdae7a694343a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dorey Wokoma,ou=Human Resources,dc=bitwarden,dc=com", - email: "WokomaD@4d5fb31e7f90432388e6d7a93e8fe33b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sybyl Gubbins,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sybyl Gubbins,ou=Management,dc=bitwarden,dc=com", - email: "GubbinsS@f787d124c5334abea177416c989fec04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coursdev Racette,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Coursdev Racette,ou=Product Testing,dc=bitwarden,dc=com", - email: "RacetteC@e4bac3ad693c4157b1be0e5e7444cbf8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fayth Biggs,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fayth Biggs,ou=Payroll,dc=bitwarden,dc=com", - email: "BiggsF@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neely Elbeze,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Neely Elbeze,ou=Payroll,dc=bitwarden,dc=com", - email: "ElbezeN@21b4ff7eaee4433da6e498e7c5416e46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jamin Shute,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jamin Shute,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShuteJ@d6177e62683049c2b0fc2f004265e4ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabuson Flach,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sabuson Flach,ou=Product Testing,dc=bitwarden,dc=com", - email: "FlachS@15e5c78fa75f4006a7a718476b38350f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laurence Wootton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Laurence Wootton,ou=Human Resources,dc=bitwarden,dc=com", - email: "WoottonL@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Atsuo DeVries,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeVriesA@90b5b0065a4e4dc3b484c9e88ebc320e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eric Skrobecki,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eric Skrobecki,ou=Management,dc=bitwarden,dc=com", - email: "SkrobecE@35246f7c7d854ddcb889890419b35d0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatum Meffe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tatum Meffe,ou=Product Development,dc=bitwarden,dc=com", - email: "MeffeT@afde3113416043d98395556c73711549.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reinhard Homonick,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reinhard Homonick,ou=Peons,dc=bitwarden,dc=com", - email: "HomonicR@9a209519348642769473b09231da3137.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rafaelia Digiacomo,ou=Product Testing,dc=bitwarden,dc=com", - email: "DigiacoR@7342ee713ddb492bb8f187e76f68e083.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imojean Sinnott,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Imojean Sinnott,ou=Payroll,dc=bitwarden,dc=com", - email: "SinnottI@9b5531beccfb48e780d0aa7ac3b90e83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matt Buttrey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Matt Buttrey,ou=Product Testing,dc=bitwarden,dc=com", - email: "ButtreyM@958185118457477783d16f2fa9e93aa2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tadayuki Seguin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tadayuki Seguin,ou=Management,dc=bitwarden,dc=com", - email: "SeguinT@738b42a56ab44af39fa9da7b9eaffcee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cang Smyth,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cang Smyth,ou=Management,dc=bitwarden,dc=com", - email: "SmythC@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzie Guillet,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Suzie Guillet,ou=Administrative,dc=bitwarden,dc=com", - email: "GuilletS@39810c97a1b24f6582a082401b4c2e13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leilah Traulich,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leilah Traulich,ou=Management,dc=bitwarden,dc=com", - email: "TraulicL@10dd7c8b6c9343a9afbb8ab70a5f8b0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Horst Kaye,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Horst Kaye,ou=Management,dc=bitwarden,dc=com", - email: "KayeH@6ef4ed9ae6c24731b126e620358a2de4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nuri Licerio,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nuri Licerio,ou=Product Testing,dc=bitwarden,dc=com", - email: "LicerioN@dc0f9a471328411da837f1c30f57d52b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tommi Preville,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tommi Preville,ou=Janitorial,dc=bitwarden,dc=com", - email: "PrevillT@ebac77f62ce1443b8d4bda5d4c334c86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fredericka Christopher,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fredericka Christopher,ou=Peons,dc=bitwarden,dc=com", - email: "ChristoF@c98eaad0f92a41b49339315f79d6648a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avivah Shostak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Avivah Shostak,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShostakA@fa1b72a27fc34f4eb3c5c550f81af8b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tyne Briard,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tyne Briard,ou=Janitorial,dc=bitwarden,dc=com", - email: "BriardT@fb9aa8f3b49848c792549daf315b1674.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drucy Levere,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Drucy Levere,ou=Product Testing,dc=bitwarden,dc=com", - email: "LevereD@8044dacf63ac423fb3f7e245d1b46862.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marjorie Wrigley,ou=Payroll,dc=bitwarden,dc=com", - email: "WrigleyM@b9fd32c3a76b47599b2f4bf846bb48b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bryce Dreisbach,ou=Payroll,dc=bitwarden,dc=com", - email: "DreisbaB@40c7ef179c0c4bb996024cd1b1971dad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gianna Rivera,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gianna Rivera,ou=Administrative,dc=bitwarden,dc=com", - email: "RiveraG@841cbd92bca942e386baa349c14cda77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=AnnaMarie Kanies,ou=Janitorial,dc=bitwarden,dc=com", - email: "KaniesA@9135ac12963a4f24b390086599e22c6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natalya Heller,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Natalya Heller,ou=Peons,dc=bitwarden,dc=com", - email: "HellerN@aceb7777c6cc4e94927cd8d9ab7f9d71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kirstie Outhwaite,ou=Janitorial,dc=bitwarden,dc=com", - email: "OuthwaiK@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Atsushi Moriyama,ou=Administrative,dc=bitwarden,dc=com", - email: "MoriyamA@a5ff234c382a4fef9f6d4e72344adb22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bernadina Ledu,ou=Janitorial,dc=bitwarden,dc=com", - email: "LeduB@7969b0806fba4e3d88a5a3efd04eb548.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyana Harsch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dyana Harsch,ou=Management,dc=bitwarden,dc=com", - email: "HarschD@42343c98437b42798d5730c9e2f3e139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazem Guenette,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kazem Guenette,ou=Product Testing,dc=bitwarden,dc=com", - email: "GuenettK@c925a785cc914f7896a342038a540076.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allis McCartney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Allis McCartney,ou=Product Development,dc=bitwarden,dc=com", - email: "McCartnA@459e2f62db0c40d5b3c7b2d6945ef874.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlana Shemwell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arlana Shemwell,ou=Peons,dc=bitwarden,dc=com", - email: "ShemwelA@361f4dedfe9a4aada39bf693c8c1bc40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francisca Pollinzi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Francisca Pollinzi,ou=Peons,dc=bitwarden,dc=com", - email: "PollinzF@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Radomir Neate,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Radomir Neate,ou=Product Testing,dc=bitwarden,dc=com", - email: "NeateR@80d6647c06ea43a2a2ec98fb5ba9edb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Earnest Wracher,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Earnest Wracher,ou=Peons,dc=bitwarden,dc=com", - email: "WracherE@1b2f79ecf49b44fe9c6b7bb74dd2d54b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurie Hinkle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aurie Hinkle,ou=Management,dc=bitwarden,dc=com", - email: "HinkleA@1f52489263294bdcb74bf08e15dc639b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Durali Raynor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Durali Raynor,ou=Management,dc=bitwarden,dc=com", - email: "RaynorD@f09e11e5beca4779a4a93445ceda8470.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Waverly Eisenhart,ou=Human Resources,dc=bitwarden,dc=com", - email: "EisenhaW@b7408fbb674a4a51833b359f6f12fa61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isoft Parkash,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Isoft Parkash,ou=Peons,dc=bitwarden,dc=com", - email: "ParkashI@42be868e79934b2781b6098b8536a633.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phillie Kneese,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Phillie Kneese,ou=Peons,dc=bitwarden,dc=com", - email: "KneeseP@80c352552a9f4c3e8fd783fb4b49aece.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vilhelmina Sapena,ou=Payroll,dc=bitwarden,dc=com", - email: "SapenaV@548e0585ebf342b985467eca55f4e5f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Leonida Letourneau,ou=Janitorial,dc=bitwarden,dc=com", - email: "LetournL@c623094db4da4e6aad9474168db929fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucinda Cuellar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lucinda Cuellar,ou=Peons,dc=bitwarden,dc=com", - email: "CuellarL@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozele Chahal,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rozele Chahal,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChahalR@af154d0412124681a7f0c1fe1b00a8ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marko Mgmt,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marko Mgmt,ou=Product Development,dc=bitwarden,dc=com", - email: "MgmtM@12d826ce1ce0413184a7ed1f22160fef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anissa Adcox,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anissa Adcox,ou=Payroll,dc=bitwarden,dc=com", - email: "AdcoxA@b5f108bd2af841fc9950983c51799ea8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cinnamon Szpilfogel,ou=Janitorial,dc=bitwarden,dc=com", - email: "SzpilfoC@6d4a907d1f0e46609843939862dfb577.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Selestina Bovenizer,ou=Payroll,dc=bitwarden,dc=com", - email: "BovenizS@2a059eb898534a808ef7c84caa852d0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanh Glanfield,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hanh Glanfield,ou=Management,dc=bitwarden,dc=com", - email: "GlanfieH@c70f5c4b622948cbb170ceb432dc60b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shailesh Bienek,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shailesh Bienek,ou=Management,dc=bitwarden,dc=com", - email: "BienekS@c763d0c8840c43c8b86db366006c5bab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerardo Bedlington,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gerardo Bedlington,ou=Peons,dc=bitwarden,dc=com", - email: "BedlingG@1f795536a65f4b09ab4f9926820522a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Belicia MooreVigeant,ou=Human Resources,dc=bitwarden,dc=com", - email: "MooreViB@ceb6137ac4aa473792db4b7b088606ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erle Kasprzak,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Erle Kasprzak,ou=Management,dc=bitwarden,dc=com", - email: "KasprzaE@e05752054bdf4aeabb75f365622f6480.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Norikazu Mathieu,ou=Product Development,dc=bitwarden,dc=com", - email: "MathieuN@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Knut Nilson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Knut Nilson,ou=Administrative,dc=bitwarden,dc=com", - email: "NilsonK@bdc6007cc6e34b34a9dcf44589f8b6cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laser Sandiford,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Laser Sandiford,ou=Payroll,dc=bitwarden,dc=com", - email: "SandifoL@25c2c1e49343484290a351a7909ac3a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Deedee Gaiotti,ou=Product Development,dc=bitwarden,dc=com", - email: "GaiottiD@445a60ac98804054899e1164059fd95e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dulcea Rabipour,ou=Administrative,dc=bitwarden,dc=com", - email: "RabipouD@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moon Bulanda,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Moon Bulanda,ou=Product Development,dc=bitwarden,dc=com", - email: "BulandaM@1765994e2a5c4efcb4f3aabfae2cc880.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ranea Brandsen,ou=Human Resources,dc=bitwarden,dc=com", - email: "BrandseR@003e771d29284236b967f25e9416ed07.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weiping Zeller,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Weiping Zeller,ou=Payroll,dc=bitwarden,dc=com", - email: "ZellerW@bc7abecae5134db19820cef4bc298003.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lora Luetchford,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lora Luetchford,ou=Management,dc=bitwarden,dc=com", - email: "LuetchfL@8174c545cf9f4c30b2281cc2dfbbc324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Myrle BenyaminSeeyar,ou=Product Development,dc=bitwarden,dc=com", - email: "BenyamiM@5ed95073f0094f04af17c1ff4f2772c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mareah Horning,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mareah Horning,ou=Product Testing,dc=bitwarden,dc=com", - email: "HorningM@890d1310fd334cdc8c698f8a47f59b9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kapsch Graver,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kapsch Graver,ou=Administrative,dc=bitwarden,dc=com", - email: "GraverK@acf713e9aadb4752bc5f37c908d5ddf7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HoiKin Denley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=HoiKin Denley,ou=Management,dc=bitwarden,dc=com", - email: "DenleyH@8f4e601fed874b8fa44bcb8ac4c7bc3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huong Quinlan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Huong Quinlan,ou=Management,dc=bitwarden,dc=com", - email: "QuinlanH@dcbbbc8020794d6691fdae775364846a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vahe Ruffolo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vahe Ruffolo,ou=Peons,dc=bitwarden,dc=com", - email: "RuffoloV@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darina Duguay,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Darina Duguay,ou=Janitorial,dc=bitwarden,dc=com", - email: "DuguayD@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shayna Hollander,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shayna Hollander,ou=Human Resources,dc=bitwarden,dc=com", - email: "HollandS@144f4bf7b2a54773b3cf6bc1af396542.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SikYin Gosset,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=SikYin Gosset,ou=Janitorial,dc=bitwarden,dc=com", - email: "GossetS@2cc035c985c24adeb49999458b6eeb66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sapphire Dassie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sapphire Dassie,ou=Payroll,dc=bitwarden,dc=com", - email: "DassieS@bc4791aff5914d0e95bbd2106b1c2de5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baha Brouillette,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Baha Brouillette,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrouillB@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isabella Horning,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Isabella Horning,ou=Management,dc=bitwarden,dc=com", - email: "HorningI@aae225b6543e4edebfd4e8a70cd66e37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avtar Nyce,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Avtar Nyce,ou=Administrative,dc=bitwarden,dc=com", - email: "NyceA@8f698818b35041d38a84f1c71ca57e14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Horacio McGuire,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Horacio McGuire,ou=Janitorial,dc=bitwarden,dc=com", - email: "McGuireH@cbf5d5b18dbd41e6bb03156240fa65b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huyen Guatto,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Huyen Guatto,ou=Human Resources,dc=bitwarden,dc=com", - email: "GuattoH@43965c00f0db4ca198510569e172ade1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jacqueline Wyndham,ou=Product Testing,dc=bitwarden,dc=com", - email: "WyndhamJ@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rustu Thill,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rustu Thill,ou=Janitorial,dc=bitwarden,dc=com", - email: "ThillR@961bbb60e3cd4dc49f27245b4c499ab8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fayre Childers,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fayre Childers,ou=Administrative,dc=bitwarden,dc=com", - email: "ChilderF@5e4d473173474c608ac03e0447167cc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kambhampati Nunez,ou=Payroll,dc=bitwarden,dc=com", - email: "NunezK@c708b12087394a00aad69467e8d0da12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabrina Lenir,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sabrina Lenir,ou=Administrative,dc=bitwarden,dc=com", - email: "LenirS@1ce821f8b66c496fa362507452a26491.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gale Goggin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gale Goggin,ou=Management,dc=bitwarden,dc=com", - email: "GogginG@b1def85879ca4d1390e9e6b1d5b583ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Louis Volker,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Louis Volker,ou=Payroll,dc=bitwarden,dc=com", - email: "VolkerL@0a49f322d17b42a58985fe2e05d0dafb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrah Roussier,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Myrah Roussier,ou=Product Testing,dc=bitwarden,dc=com", - email: "RoussieM@7df05765abd04b25b8a7ef7280ad3437.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LLoyd McKeegan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=LLoyd McKeegan,ou=Peons,dc=bitwarden,dc=com", - email: "McKeegaL@bc2aa1694dbf4e7aa2d27b8cb8f061a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Metrics Mitrani,ou=Human Resources,dc=bitwarden,dc=com", - email: "MitraniM@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annadiane Ctas,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annadiane Ctas,ou=Administrative,dc=bitwarden,dc=com", - email: "CtasA@ca6b003973ef4e36908da7bb8259e3c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leyton Rolls,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Leyton Rolls,ou=Human Resources,dc=bitwarden,dc=com", - email: "RollsL@dffefc880028465f8135d61fcd84d153.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaal Ragan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gaal Ragan,ou=Janitorial,dc=bitwarden,dc=com", - email: "RaganG@afde3113416043d98395556c73711549.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermine Stults,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hermine Stults,ou=Janitorial,dc=bitwarden,dc=com", - email: "StultsH@30572bdd074a4e5a8e950b88bc610381.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klarika MacLean,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Klarika MacLean,ou=Product Testing,dc=bitwarden,dc=com", - email: "MacLeanK@1dd141ee94514c5aa52c318bb9c43eb0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reginald Smit,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Reginald Smit,ou=Product Development,dc=bitwarden,dc=com", - email: "SmitR@e17de5e4d835410b9b0709774bb28bb0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassi McMahon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cassi McMahon,ou=Product Development,dc=bitwarden,dc=com", - email: "McMahonC@d849f4848257434e882a48856ef2b70f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myranda Javed,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Myranda Javed,ou=Management,dc=bitwarden,dc=com", - email: "JavedM@b1c5384b9a3b4f19b03e31db659c5d3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherye Bukta,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cherye Bukta,ou=Product Development,dc=bitwarden,dc=com", - email: "BuktaC@becb244da0554983b71d06f587be1dbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlynne Roob,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carlynne Roob,ou=Administrative,dc=bitwarden,dc=com", - email: "RoobC@e13deb12f887416c8e5609d11ba2b292.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wai Winters,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wai Winters,ou=Product Testing,dc=bitwarden,dc=com", - email: "WintersW@b591b4d3b7bb4cf6a835d6d13daa1857.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lester Koster,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lester Koster,ou=Janitorial,dc=bitwarden,dc=com", - email: "KosterL@0aee22428274445fb9c2a16b33d788f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Belen Frangoulis,ou=Human Resources,dc=bitwarden,dc=com", - email: "FrangouB@6972a8e94cbc49738fdac450297132bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alev Llaguno,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alev Llaguno,ou=Administrative,dc=bitwarden,dc=com", - email: "LlagunoA@04bb376282154efc832b529dc3f80793.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jud Fairman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jud Fairman,ou=Administrative,dc=bitwarden,dc=com", - email: "FairmanJ@f7248b71ac0e455091682e51df845f5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toyanne Fishencord,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Toyanne Fishencord,ou=Management,dc=bitwarden,dc=com", - email: "FishencT@3e451f2ddbdc401ba9f442a5e6dfbe64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarinda Vele,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Clarinda Vele,ou=Human Resources,dc=bitwarden,dc=com", - email: "VeleC@41360e293f904ea28fdec059900338d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blondie Moghis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Blondie Moghis,ou=Janitorial,dc=bitwarden,dc=com", - email: "MoghisB@b3c93053c0224253988d5c3b976abcae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gwenny Bradd,ou=Product Testing,dc=bitwarden,dc=com", - email: "BraddG@4fcafc5d237d4e89ae70144b97fd81b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kazuhiko Desorbay,ou=Administrative,dc=bitwarden,dc=com", - email: "DesorbaK@b0b96975e46b40a097a0034294bf5528.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noraly Mackzum,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Noraly Mackzum,ou=Peons,dc=bitwarden,dc=com", - email: "MackzumN@9528dc6cbe3247b1b273b1646f94d087.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Len Grzegorek,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Len Grzegorek,ou=Product Testing,dc=bitwarden,dc=com", - email: "GrzegorL@6816926065fd449b998aed904ad7f381.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ria NetworkOps,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ria NetworkOps,ou=Administrative,dc=bitwarden,dc=com", - email: "NetworkR@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sunny Forslund,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sunny Forslund,ou=Management,dc=bitwarden,dc=com", - email: "ForslunS@917b843118c147a1b774df99881edab2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fanchette Veals,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fanchette Veals,ou=Janitorial,dc=bitwarden,dc=com", - email: "VealsF@99883d06333b411b8735be1bd03ccb98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobbee Combee,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bobbee Combee,ou=Human Resources,dc=bitwarden,dc=com", - email: "CombeeB@53b43fb5d4e34daa86eaa9d6dd2bd917.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bennett Attanasio,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bennett Attanasio,ou=Management,dc=bitwarden,dc=com", - email: "AttanasB@50a799bc8ca7431293d7f35051a4405f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zongyi Stults,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Zongyi Stults,ou=Payroll,dc=bitwarden,dc=com", - email: "StultsZ@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Winifred Lowrie,ou=Product Testing,dc=bitwarden,dc=com", - email: "LowrieW@39082c800eef41148693892808865789.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rob Goupil,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rob Goupil,ou=Janitorial,dc=bitwarden,dc=com", - email: "GoupilR@ae52dcada2674f68a76a2c619d85f261.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwyneth Neander,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gwyneth Neander,ou=Peons,dc=bitwarden,dc=com", - email: "NeanderG@bc6e166bef51424bb6b645cc04c90be7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lillien Grohovsky,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lillien Grohovsky,ou=Management,dc=bitwarden,dc=com", - email: "GrohovsL@b9106f7d57f74a7b92af146111acb57d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sianna Machika,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sianna Machika,ou=Administrative,dc=bitwarden,dc=com", - email: "MachikaS@157d1c5a87ae4332b42f31961dd71e5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pippa Ponthieux,ou=Human Resources,dc=bitwarden,dc=com", - email: "PonthieP@0834bcacddfd4229b6702a62e2551569.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blakeley Lagace,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Blakeley Lagace,ou=Payroll,dc=bitwarden,dc=com", - email: "LagaceB@f47429db42894240a22768a277a6aedc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thuong Rains,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Thuong Rains,ou=Human Resources,dc=bitwarden,dc=com", - email: "RainsT@9db5b1e1eb1c40cba168aadfe8f96acc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peg Lahaie,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Peg Lahaie,ou=Administrative,dc=bitwarden,dc=com", - email: "LahaieP@7c92d6dfba144f9587593ce6eeb4024f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annissa Bears,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Annissa Bears,ou=Human Resources,dc=bitwarden,dc=com", - email: "BearsA@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaffer Grosjean,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jaffer Grosjean,ou=Management,dc=bitwarden,dc=com", - email: "GrosjeaJ@18c6c57f689a4dd297aa9ab9f89b0d22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sinh IOCNTRL,ou=Product Testing,dc=bitwarden,dc=com", - email: "IOCNTRLS@eccb9225926a47e49169337a56197f55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quoc Ennis,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Quoc Ennis,ou=Human Resources,dc=bitwarden,dc=com", - email: "EnnisQ@2c5fff2e17c34e4f8027c15937e2554a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pascale Sorensen,ou=Human Resources,dc=bitwarden,dc=com", - email: "SorenseP@296a8499fb454ab5ab80945b9f63d6db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katalin Alteen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Katalin Alteen,ou=Product Development,dc=bitwarden,dc=com", - email: "AlteenK@d8f225bca4fb4424ae5dc46bef133d26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzie Caruso,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Suzie Caruso,ou=Product Development,dc=bitwarden,dc=com", - email: "CarusoS@a5a8edfdd5c4429e9cf280f8b1f9e995.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bianka Rodriguez,ou=Product Testing,dc=bitwarden,dc=com", - email: "RodriguB@c5d504d10cfd4d11856502fc976f73f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanh Marui,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hanh Marui,ou=Peons,dc=bitwarden,dc=com", - email: "MaruiH@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margette Bolly,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Margette Bolly,ou=Human Resources,dc=bitwarden,dc=com", - email: "BollyM@2d98655afc6c4413a4e20fb38a176913.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arvin Mauldin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arvin Mauldin,ou=Peons,dc=bitwarden,dc=com", - email: "MauldinA@6530618955494a54b6812262e97ea962.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephi Sloan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stephi Sloan,ou=Management,dc=bitwarden,dc=com", - email: "SloanS@d494db8e881541faa9bd79d54aee6c6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ariella Kindel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ariella Kindel,ou=Management,dc=bitwarden,dc=com", - email: "KindelA@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sluis Rasmus,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sluis Rasmus,ou=Peons,dc=bitwarden,dc=com", - email: "RasmusS@53c3e76f124f49beb679b871a3ea5611.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kunitaka Tsalikis,ou=Administrative,dc=bitwarden,dc=com", - email: "TsalikiK@0d7e83c0e7e042119673bb3ec0e8332f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mendel Taghizadeh,ou=Administrative,dc=bitwarden,dc=com", - email: "TaghizaM@5357a85de543401d9e8fe2cdbf0be041.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Onida Kessing,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Onida Kessing,ou=Product Testing,dc=bitwarden,dc=com", - email: "KessingO@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tasha Good,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tasha Good,ou=Payroll,dc=bitwarden,dc=com", - email: "GoodT@7c2121c8588b42078879768992a11293.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Audrie Hadaway,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Audrie Hadaway,ou=Payroll,dc=bitwarden,dc=com", - email: "HadawayA@ea0f69137ff74518bf5deef349f108a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natka Herzig,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Natka Herzig,ou=Human Resources,dc=bitwarden,dc=com", - email: "HerzigN@597d9762b8604e37948eff99d3393453.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naima Simzer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Naima Simzer,ou=Product Testing,dc=bitwarden,dc=com", - email: "SimzerN@949d540dd7bd45ac952a8779090548fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lotte Ichizen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lotte Ichizen,ou=Product Development,dc=bitwarden,dc=com", - email: "IchizenL@9ded9a56079f4cc9aa539795eb2ef76e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marco Seto,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marco Seto,ou=Product Development,dc=bitwarden,dc=com", - email: "SetoM@47a7a80ec8774325ad24930467e7f72e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mollee Ensing,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mollee Ensing,ou=Product Testing,dc=bitwarden,dc=com", - email: "EnsingM@927751b0a567415d9f3e597c148985e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roe Schenk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Roe Schenk,ou=Payroll,dc=bitwarden,dc=com", - email: "SchenkR@e0325d1b480a46fd813ea04ca5c966cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christian Wales,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Christian Wales,ou=Peons,dc=bitwarden,dc=com", - email: "WalesC@d7bbd93ba2614bff8062ee68b5bbccb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loes Rioux,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Loes Rioux,ou=Product Development,dc=bitwarden,dc=com", - email: "RiouxL@fc6d9a3bc3ac4e95a6de75ff02dab16b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rubetta Lui,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rubetta Lui,ou=Payroll,dc=bitwarden,dc=com", - email: "LuiR@522cf8a1d4424cc392ce0a8035040445.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lonni Sabadash,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lonni Sabadash,ou=Peons,dc=bitwarden,dc=com", - email: "SabadasL@3c2a9299917e436494b9ad3aeb458417.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monica Duensing,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Monica Duensing,ou=Peons,dc=bitwarden,dc=com", - email: "DuensinM@494f2548825245788f70b0629ca28b58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colm Gratton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Colm Gratton,ou=Human Resources,dc=bitwarden,dc=com", - email: "GrattonC@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tootsie McNeilly,ou=Administrative,dc=bitwarden,dc=com", - email: "McNeillT@2a2785e41bed4e93a780b4af1e24c457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denise Randall,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Denise Randall,ou=Administrative,dc=bitwarden,dc=com", - email: "RandallD@fd1c064ea4f34f1bb83154589888d370.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tamqrah Mikelonis,ou=Administrative,dc=bitwarden,dc=com", - email: "MikelonT@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haggar Labfive,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Haggar Labfive,ou=Human Resources,dc=bitwarden,dc=com", - email: "LabfiveH@1f068d8a62cd4045acf6df01987aee06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willow Marko,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Willow Marko,ou=Management,dc=bitwarden,dc=com", - email: "MarkoW@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulinus McNabb,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Paulinus McNabb,ou=Payroll,dc=bitwarden,dc=com", - email: "McNabbP@4aaf48b94c754d999a64bf75ae3d3b60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Merunix Kaczynski,ou=Product Testing,dc=bitwarden,dc=com", - email: "KaczynsM@fe1c51962aa24816bccfc92fe8c4747c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sula Piersol,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sula Piersol,ou=Product Development,dc=bitwarden,dc=com", - email: "PiersolS@7dc5b62cf93648d48eddbda676ec7c2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phillip Shearin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Phillip Shearin,ou=Peons,dc=bitwarden,dc=com", - email: "ShearinP@b81f861cfff7425eaadf73f079aa2666.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marg Villeneuve,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marg Villeneuve,ou=Management,dc=bitwarden,dc=com", - email: "VilleneM@d71da34df9024aaf8ef124f781734513.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Halette Kirfman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Halette Kirfman,ou=Payroll,dc=bitwarden,dc=com", - email: "KirfmanH@e2a54602eb2d428d863b4e68e7098e41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vijya Wrigley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vijya Wrigley,ou=Product Development,dc=bitwarden,dc=com", - email: "WrigleyV@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Suzanna Piwkowski,ou=Payroll,dc=bitwarden,dc=com", - email: "PiwkowsS@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leung Veit,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Leung Veit,ou=Product Testing,dc=bitwarden,dc=com", - email: "VeitL@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celka Sylvain,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Celka Sylvain,ou=Janitorial,dc=bitwarden,dc=com", - email: "SylvainC@3be6f0b907a24b2494bafbb2bc326635.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michiko Zanetti,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Michiko Zanetti,ou=Payroll,dc=bitwarden,dc=com", - email: "ZanettiM@ecce68065a2a469d85a092399ef0abdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Derick Sheremeto,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Derick Sheremeto,ou=Payroll,dc=bitwarden,dc=com", - email: "SheremeD@5922bcea32dc44eb88de2834c151441c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shuji Blander,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shuji Blander,ou=Payroll,dc=bitwarden,dc=com", - email: "BlanderS@012a5cfab6324107b0814d36b8f41041.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Conni Dubee,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Conni Dubee,ou=Payroll,dc=bitwarden,dc=com", - email: "DubeeC@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charlot Kling,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Charlot Kling,ou=Peons,dc=bitwarden,dc=com", - email: "KlingC@4da7d564972d46f2924a6a8ae018f420.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ved Missailidis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ved Missailidis,ou=Administrative,dc=bitwarden,dc=com", - email: "MissailV@34a16f57e9db4215b5cb050ec73091c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wladyslaw Buckley,ou=Janitorial,dc=bitwarden,dc=com", - email: "BuckleyW@86099fc02a734c888a7ae3c972099ceb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rianon AuYeung,ou=Product Testing,dc=bitwarden,dc=com", - email: "AuYeungR@a4891e9178c647fd97d577b339b0f2ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Louisa Dowdy,ou=Janitorial,dc=bitwarden,dc=com", - email: "DowdyL@0f5c9983e32c410788faa72a9c3d7c88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valera Rummans,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Valera Rummans,ou=Payroll,dc=bitwarden,dc=com", - email: "RummansV@46b9fed368dc4ef39eafba055f3b72d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neely Bresnan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Neely Bresnan,ou=Peons,dc=bitwarden,dc=com", - email: "BresnanN@da06922aef174c0e80555c5332c5d50d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trey Zagrodney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Trey Zagrodney,ou=Product Development,dc=bitwarden,dc=com", - email: "ZagrodnT@58b17cbf3c8c49a497e5fef5616324ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cordie Hippert,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cordie Hippert,ou=Management,dc=bitwarden,dc=com", - email: "HippertC@2af5a5b28ee142c29a88149a85e2cfc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zanni Godwin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Zanni Godwin,ou=Peons,dc=bitwarden,dc=com", - email: "GodwinZ@b356031edae7438e91e9510b0eef0f11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yannick Cricker,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yannick Cricker,ou=Product Development,dc=bitwarden,dc=com", - email: "CrickerY@8c867e4cf415450c9970643cdd97be2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tayeb Leahy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tayeb Leahy,ou=Administrative,dc=bitwarden,dc=com", - email: "LeahyT@94dae55d586a40178d344aa65db63286.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulo Goldner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Paulo Goldner,ou=Product Development,dc=bitwarden,dc=com", - email: "GoldnerP@9824b48fa2d849d4b03986cd07954ce2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kirit Bolgos,ou=Product Testing,dc=bitwarden,dc=com", - email: "BolgosK@1e0d2010b563467286453b342eb2e967.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Casi CHOCS,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Casi CHOCS,ou=Administrative,dc=bitwarden,dc=com", - email: "CHOCSC@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nata Booking,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nata Booking,ou=Peons,dc=bitwarden,dc=com", - email: "BookingN@e891dcc74adc426fbd3ad63fb5fff359.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doretta Turkki,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Doretta Turkki,ou=Human Resources,dc=bitwarden,dc=com", - email: "TurkkiD@19ae50f703c34edda0d4ff96561aa4ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Armelle Verhoeven,ou=Payroll,dc=bitwarden,dc=com", - email: "VerhoevA@f3ba3b64f9604f3595f8d4c1f4702c4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hq Buske,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hq Buske,ou=Janitorial,dc=bitwarden,dc=com", - email: "BuskeH@06087a741466454b9e2a6b6754ee0c92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Chun Pinizzotto,ou=Product Development,dc=bitwarden,dc=com", - email: "PinizzoC@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mamoru Alfaro,ou=Human Resources,dc=bitwarden,dc=com", - email: "AlfaroM@0115872801044ba284591166aa6c228d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roe Levey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Roe Levey,ou=Product Testing,dc=bitwarden,dc=com", - email: "LeveyR@bbdbdd2d73ba4cc08f1e302887d88e7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orelia Salinas,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Orelia Salinas,ou=Payroll,dc=bitwarden,dc=com", - email: "SalinasO@67225f2d83cb4254a52f74f5972d275c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atlante Standel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Atlante Standel,ou=Peons,dc=bitwarden,dc=com", - email: "StandelA@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leela Rylott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Leela Rylott,ou=Human Resources,dc=bitwarden,dc=com", - email: "RylottL@20c2d999fe734387b26090f6d88bafe4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Priscella Oskorep,ou=Human Resources,dc=bitwarden,dc=com", - email: "OskorepP@9eb0a140ee7144e0b023cba81df3cc51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cavin Cobo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cavin Cobo,ou=Administrative,dc=bitwarden,dc=com", - email: "CoboC@702f120c80c546e3a3d4380e71a79fa6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moe Oastler,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Moe Oastler,ou=Human Resources,dc=bitwarden,dc=com", - email: "OastlerM@5497d8e7bbe94acaa8307ac716892d02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lesley ElTorky,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lesley ElTorky,ou=Payroll,dc=bitwarden,dc=com", - email: "ElTorkyL@aa8e22a5a37c45459a1aae28136c8279.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brina Guttman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brina Guttman,ou=Management,dc=bitwarden,dc=com", - email: "GuttmanB@a33f574fa0a24162b343e74178659859.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hiroko Fait,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hiroko Fait,ou=Human Resources,dc=bitwarden,dc=com", - email: "FaitH@5a8cc902fcc5423d892dfdcc048c73b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annie Eaton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Annie Eaton,ou=Product Testing,dc=bitwarden,dc=com", - email: "EatonA@fd60ce8a79b644ba9d190b4bf769b6de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maskell Fung,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maskell Fung,ou=Human Resources,dc=bitwarden,dc=com", - email: "FungM@841cbd92bca942e386baa349c14cda77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Theressa MyersPillsworth,ou=Product Development,dc=bitwarden,dc=com", - email: "MyersPiT@d18e37fd0424474ab347b36ca45a4af6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franky Ramachandran,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Franky Ramachandran,ou=Product Development,dc=bitwarden,dc=com", - email: "RamachaF@1d233bc1764446c09e064881135ef88f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Emlynn Diaconu,ou=Product Testing,dc=bitwarden,dc=com", - email: "DiaconuE@3847a8977cfb45d4b03770a60a27477f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherri StJohn,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sherri StJohn,ou=Payroll,dc=bitwarden,dc=com", - email: "StJohnS@0d2070a7704249ccae81fc4b91659074.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laser Kokkat,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Laser Kokkat,ou=Administrative,dc=bitwarden,dc=com", - email: "KokkatL@e83223057d6e4f9fa1110e3c4b1d1907.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kjell Boatwright,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kjell Boatwright,ou=Management,dc=bitwarden,dc=com", - email: "BoatwriK@556b8709dd59455493d3a037cd03b5fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilly Keane,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lilly Keane,ou=Product Development,dc=bitwarden,dc=com", - email: "KeaneL@8d8652ab29984781b99266ecccddeda6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guenther Feith,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Guenther Feith,ou=Product Development,dc=bitwarden,dc=com", - email: "FeithG@fdb934baa6cc448ab7c3fa9c2435f30a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lulu Myrillas,ou=Product Testing,dc=bitwarden,dc=com", - email: "MyrillaL@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marissa Pizzimenti,ou=Product Testing,dc=bitwarden,dc=com", - email: "PizzimeM@ff3f483373584f4f897f71c3fe6f9fc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gus Brodfuehrer,ou=Administrative,dc=bitwarden,dc=com", - email: "BrodfueG@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ross Whitaker,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ross Whitaker,ou=Payroll,dc=bitwarden,dc=com", - email: "WhitakeR@37e3de35a8c340a7b99329132ff492e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tessi Franze,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tessi Franze,ou=Management,dc=bitwarden,dc=com", - email: "FranzeT@0846b8b864144146a31ad2391920589e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norel Aly,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Norel Aly,ou=Janitorial,dc=bitwarden,dc=com", - email: "AlyN@75d70d8bb4aa49b095b06f96258b5907.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=YeeNing Lamy,ou=Janitorial,dc=bitwarden,dc=com", - email: "LamyY@1a99800019bc40cc83877edaa3c037bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minetta Mackzum,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Minetta Mackzum,ou=Administrative,dc=bitwarden,dc=com", - email: "MackzumM@1919bfc426ed49ff8f4f00e3c1b79887.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Javier Kinsey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Javier Kinsey,ou=Administrative,dc=bitwarden,dc=com", - email: "KinseyJ@c2d4d5c90abe4da59c140390730b8767.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donelle Stites,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Donelle Stites,ou=Human Resources,dc=bitwarden,dc=com", - email: "StitesD@fdf5161eeea14f4092d0d9d3593c3092.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Madelyn Cruzado,ou=Janitorial,dc=bitwarden,dc=com", - email: "CruzadoM@39eecbf6644e41e6a54aa634c1d5a5be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sophia Gazo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sophia Gazo,ou=Human Resources,dc=bitwarden,dc=com", - email: "GazoS@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tosca Julian,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tosca Julian,ou=Peons,dc=bitwarden,dc=com", - email: "JulianT@6f41089f10e04d909c665abe82ffe115.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kellyann Stotz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kellyann Stotz,ou=Administrative,dc=bitwarden,dc=com", - email: "StotzK@40079c706f0f41f9961a4ed47bc17c65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ende Broome,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ende Broome,ou=Administrative,dc=bitwarden,dc=com", - email: "BroomeE@49df2859910a4e4f8317d17a3be2945d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Utilla PKDCD,ou=Janitorial,dc=bitwarden,dc=com", - email: "PKDCDU@7aacbd71f8ff494eb7b5df5ac830a7a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krystalle Barnes,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Krystalle Barnes,ou=Payroll,dc=bitwarden,dc=com", - email: "BarnesK@893034d40ae747fcb94aa3c93f26d5c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jordana Pinsonneault,ou=Human Resources,dc=bitwarden,dc=com", - email: "PinsonnJ@3307e42f1d8c4293bd7a59fddc05e774.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janaye Woodward,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Janaye Woodward,ou=Management,dc=bitwarden,dc=com", - email: "WoodwarJ@cff29f28824b49c2bb3b80efc41d7e67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margot Morin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Margot Morin,ou=Peons,dc=bitwarden,dc=com", - email: "MorinM@0998558a764541358e8e70ab479cfe9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Izumi LeGuen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Izumi LeGuen,ou=Peons,dc=bitwarden,dc=com", - email: "LeGuenI@c618b1ff4b584c0d8f7ff45342beefcd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=ZehirCharlie Donak,ou=Peons,dc=bitwarden,dc=com", - email: "DonakZ@2fd47af450d743418108699823631680.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constance Boynton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Constance Boynton,ou=Management,dc=bitwarden,dc=com", - email: "BoyntonC@fdb2f5b287e8463ca2c07913962256d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgia Blazer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Georgia Blazer,ou=Payroll,dc=bitwarden,dc=com", - email: "BlazerG@5410deb36536455cba5926244af94c93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cherin Cruzado,ou=Human Resources,dc=bitwarden,dc=com", - email: "CruzadoC@60dd1cbe4aa24d86beb286bcf0b69548.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Millard Lightfield,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Millard Lightfield,ou=Payroll,dc=bitwarden,dc=com", - email: "LightfiM@f09e11e5beca4779a4a93445ceda8470.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clio Bugajska,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clio Bugajska,ou=Management,dc=bitwarden,dc=com", - email: "BugajskC@7eaed4562d46473686db6a642d66ce05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dania Nesbitt,ou=Human Resources,dc=bitwarden,dc=com", - email: "NesbittD@f9ae3791c7af4048ba041c1bc79adda2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sundaram Urquhart,ou=Product Development,dc=bitwarden,dc=com", - email: "UrquharS@81b16d15c9e143e79666e62f2a341c67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anitra Metrics,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anitra Metrics,ou=Administrative,dc=bitwarden,dc=com", - email: "MetricsA@979af2384f8d4cccbd0dba8e3c326005.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manish Strachan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Manish Strachan,ou=Janitorial,dc=bitwarden,dc=com", - email: "StrachaM@438192a801ea415ab5a1cb73b87d8559.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nessy Langton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nessy Langton,ou=Payroll,dc=bitwarden,dc=com", - email: "LangtonN@685a3d9fd790422d8fb825f7a90cab65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonida Moncur,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Leonida Moncur,ou=Human Resources,dc=bitwarden,dc=com", - email: "MoncurL@7bb8f37e955d4f04a6cccdb2666d9559.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Uday Australia,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Uday Australia,ou=Human Resources,dc=bitwarden,dc=com", - email: "AustralU@af9b2025e2d4428a825c1c465719ccc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bren Marzella,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bren Marzella,ou=Management,dc=bitwarden,dc=com", - email: "MarzellB@155d8ce7e5114a6694664bdd20a1e763.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vries Bathrick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vries Bathrick,ou=Management,dc=bitwarden,dc=com", - email: "BathricV@0838c5a7fb7841708f56102b10a6cd6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryann Felix,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maryann Felix,ou=Payroll,dc=bitwarden,dc=com", - email: "FelixM@a391c3a07b8943028fe45f62f25be101.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carly Bugajski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carly Bugajski,ou=Human Resources,dc=bitwarden,dc=com", - email: "BugajskC@582578f4c0a34d7283b52c37fe385620.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baruk Zinn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Baruk Zinn,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZinnB@efc74300757e4917afeffd6512cd005c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorianne Ketley,ou=Human Resources,dc=bitwarden,dc=com", - email: "KetleyL@9176a4c133264d3d804cb9216deeac80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinett Etten,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Robinett Etten,ou=Janitorial,dc=bitwarden,dc=com", - email: "EttenR@51b0dfaaac8e469582446b31c5cb1bfd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tobye Scandrett,ou=Product Testing,dc=bitwarden,dc=com", - email: "ScandreT@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monteene Fraties,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Monteene Fraties,ou=Peons,dc=bitwarden,dc=com", - email: "FratiesM@49237b860d1f43eba86c8a5d68311c7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jo Ritter,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jo Ritter,ou=Administrative,dc=bitwarden,dc=com", - email: "RitterJ@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laurent Viehweg,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Laurent Viehweg,ou=Administrative,dc=bitwarden,dc=com", - email: "ViehwegL@ef13a1a456c847c69f1a9c739972d1e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devonne Erickson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Devonne Erickson,ou=Administrative,dc=bitwarden,dc=com", - email: "EricksoD@8227646c55034cf9b21757fce681b53f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chantal Di,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Chantal Di,ou=Administrative,dc=bitwarden,dc=com", - email: "DiC@bd8c56963a9f48dfb73b8a3322b6fe38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sluis Quek,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sluis Quek,ou=Product Development,dc=bitwarden,dc=com", - email: "QuekS@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maxey Cavasso,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maxey Cavasso,ou=Management,dc=bitwarden,dc=com", - email: "CavassoM@bbc2ed84411d4a40af49ae614b080b8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claire Greveling,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Claire Greveling,ou=Product Development,dc=bitwarden,dc=com", - email: "GreveliC@cc71e71454d64842b764308435f8b9ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keven Krishnan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Keven Krishnan,ou=Administrative,dc=bitwarden,dc=com", - email: "KrishnaK@4f2c10e7af1a452181b6cc4729edcbe0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dau Banigan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dau Banigan,ou=Payroll,dc=bitwarden,dc=com", - email: "BaniganD@2e5f5aa98def49769eb37d64a6e3527e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kayla Carlisle,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kayla Carlisle,ou=Administrative,dc=bitwarden,dc=com", - email: "CarlislK@9384af23e6ba4db19b7b6c7e7b40705d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juozas Hengl,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Juozas Hengl,ou=Management,dc=bitwarden,dc=com", - email: "HenglJ@ff24c4fb1fee4c4da9eb652af0cd5b6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramniklal Traulich,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ramniklal Traulich,ou=Management,dc=bitwarden,dc=com", - email: "TraulicR@4467185dad394a2ab964d923a668f7a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=David Vennos,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=David Vennos,ou=Product Testing,dc=bitwarden,dc=com", - email: "VennosD@096101f2d07e4904be121b35278935c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shiela Nixon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shiela Nixon,ou=Administrative,dc=bitwarden,dc=com", - email: "NixonS@2ccf92b2367047e48fb3d1d7db3fa4ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mona Kohler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mona Kohler,ou=Management,dc=bitwarden,dc=com", - email: "KohlerM@8884ff0a9d924931a5d0a79e7e71fbe7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elene DOrazio,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elene DOrazio,ou=Administrative,dc=bitwarden,dc=com", - email: "DOrazioE@b8e727bc14df4a0daced5f490054e337.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elspeth Bussey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elspeth Bussey,ou=Peons,dc=bitwarden,dc=com", - email: "BusseyE@aa5b41edbda84e7ca1fc888042ddc8a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mari Abbott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mari Abbott,ou=Human Resources,dc=bitwarden,dc=com", - email: "AbbottM@d12cf402dbab4ca98b370d7e2c59928b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nanon Lavarnway,ou=Administrative,dc=bitwarden,dc=com", - email: "LavarnwN@83f78532c82a4f77a10f2d7460348b85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Josine Hwang,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Josine Hwang,ou=Product Testing,dc=bitwarden,dc=com", - email: "HwangJ@535949b117544e80b4ad9c1fa166edb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jawaid Humenik,ou=Human Resources,dc=bitwarden,dc=com", - email: "HumenikJ@17c722e6b16149e08a18c9a05c1e5e9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hafeezah Nezon,ou=Product Testing,dc=bitwarden,dc=com", - email: "NezonH@5eb82c53226242fd8c7b8521feffe50f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gypsy Weiser,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gypsy Weiser,ou=Payroll,dc=bitwarden,dc=com", - email: "WeiserG@352885b42f264ade8eacdfa709cc8cc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nir Cornaro,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nir Cornaro,ou=Payroll,dc=bitwarden,dc=com", - email: "CornaroN@7ac8324ed047496d93c460651ba38b86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettine Centis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bettine Centis,ou=Peons,dc=bitwarden,dc=com", - email: "CentisB@85000db2e5e34d6d81e53b19e5b46684.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sami Phipps,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sami Phipps,ou=Janitorial,dc=bitwarden,dc=com", - email: "PhippsS@f20eb0847ca14a90a67aa09264897cd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valaria Jamshidi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Valaria Jamshidi,ou=Peons,dc=bitwarden,dc=com", - email: "JamshidV@6f4eb4f6c7594572a68d6ca9999a39eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jaquenetta Besharah,ou=Human Resources,dc=bitwarden,dc=com", - email: "BesharaJ@c7a27fd01c1647d28de4dfcfed9b1184.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loleta DuBois,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Loleta DuBois,ou=Janitorial,dc=bitwarden,dc=com", - email: "DuBoisL@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzi Penfield,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Suzi Penfield,ou=Janitorial,dc=bitwarden,dc=com", - email: "PenfielS@b3322abd91d442cd8a0ab00357938e16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mot Harper,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mot Harper,ou=Product Testing,dc=bitwarden,dc=com", - email: "HarperM@356cd6c1b7e3439e9ef5f5b352dedbb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Constantine Beaucaire,ou=Janitorial,dc=bitwarden,dc=com", - email: "BeaucaiC@b827ba5736ae48268de38db3e9e259c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beata Shyu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beata Shyu,ou=Administrative,dc=bitwarden,dc=com", - email: "ShyuB@6bd1865fbe47463dbcb960e39a8c54d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carter Munroe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Carter Munroe,ou=Product Testing,dc=bitwarden,dc=com", - email: "MunroeC@d0d2d3fedb3f4a3c8932e1f5796c08e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnnie Holmes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Johnnie Holmes,ou=Peons,dc=bitwarden,dc=com", - email: "HolmesJ@f40bf043953c406aba47649d98484a4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rollo Rolfes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rollo Rolfes,ou=Management,dc=bitwarden,dc=com", - email: "RolfesR@3ec5b2de0d2345779e5987d3e4fbbb28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wendye Queries,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wendye Queries,ou=Product Development,dc=bitwarden,dc=com", - email: "QueriesW@3e85ba8a9fd94b8ea8a79fbaf36e29c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonie Ausley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tonie Ausley,ou=Product Development,dc=bitwarden,dc=com", - email: "AusleyT@8e58a0274e2f4a9eace3b506ad190406.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bertina Winchester,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bertina Winchester,ou=Janitorial,dc=bitwarden,dc=com", - email: "WinchesB@a78343bebdf4455eb6914faf7a6b5592.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Knut Louisseize,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Knut Louisseize,ou=Product Testing,dc=bitwarden,dc=com", - email: "LouisseK@edb6faa6b9ef42e78cb76cff9b446a1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miguelita Merworth,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Miguelita Merworth,ou=Peons,dc=bitwarden,dc=com", - email: "MerwortM@9c564d094e5e497a8fd4aac4f36731f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vlad Hilder,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vlad Hilder,ou=Human Resources,dc=bitwarden,dc=com", - email: "HilderV@8bced59a99724d5eb08954ec3497f98c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norry Hord,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Norry Hord,ou=Human Resources,dc=bitwarden,dc=com", - email: "HordN@4dd21bf6830a4c908b6586742f2895eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kurt Bozicevich,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kurt Bozicevich,ou=Peons,dc=bitwarden,dc=com", - email: "BozicevK@e8e7ee5b6e064589b4c7f97fde4b37f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charles Orsini,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Charles Orsini,ou=Management,dc=bitwarden,dc=com", - email: "OrsiniC@764681a95a5b406ca9af128317a23e8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meriline Tom,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Meriline Tom,ou=Human Resources,dc=bitwarden,dc=com", - email: "TomM@d0f838c93ef94627924b8203a7bc4ac9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genga Kahn,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Genga Kahn,ou=Product Testing,dc=bitwarden,dc=com", - email: "KahnG@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gates Scharf,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gates Scharf,ou=Peons,dc=bitwarden,dc=com", - email: "ScharfG@14d1b49506834e5c9ccc77fc2529566f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isabelita Weger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Isabelita Weger,ou=Management,dc=bitwarden,dc=com", - email: "WegerI@4971636bbc214b9bab855e271936dd02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulci Arsenault,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dulci Arsenault,ou=Peons,dc=bitwarden,dc=com", - email: "ArsenauD@23a5946865f94d569cc565c34574f456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lurleen Mowbray,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lurleen Mowbray,ou=Management,dc=bitwarden,dc=com", - email: "MowbrayL@e13d4fdb33d04c2f849993b5c00d31fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kary Bickford,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kary Bickford,ou=Janitorial,dc=bitwarden,dc=com", - email: "BickforK@e8962b3f077e4e4380b3b3b1aed7dd43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tsugio Knorp,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tsugio Knorp,ou=Product Development,dc=bitwarden,dc=com", - email: "KnorpT@3cbb67a8cfac46019eac8aa7343efe15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Morissa Asfazadour,ou=Product Development,dc=bitwarden,dc=com", - email: "AsfazadM@5091d98f25454366ae5b83b36d2073f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sindee Haertel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sindee Haertel,ou=Human Resources,dc=bitwarden,dc=com", - email: "HaertelS@bd3dedcd93c84c0aa4af62b582b04e9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reiko Lemay,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Reiko Lemay,ou=Product Testing,dc=bitwarden,dc=com", - email: "LemayR@b23fe60aaafa49a2908f5eec32556f6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karoline Korey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karoline Korey,ou=Peons,dc=bitwarden,dc=com", - email: "KoreyK@7b3b886d681f4f3ca28fa81a09f7644a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=MarieJosee Uyar,ou=Administrative,dc=bitwarden,dc=com", - email: "UyarM@7eb3446796544055a8625bc9cff5db0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Elwyn Siddiqui,ou=Janitorial,dc=bitwarden,dc=com", - email: "SiddiquE@c90fcc6a2adf434b982935936ff5f7b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zonnya Penn,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Zonnya Penn,ou=Payroll,dc=bitwarden,dc=com", - email: "PennZ@3b2c73ac68c44ffd9b6fee68f40f7a34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christoph Lorance,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Christoph Lorance,ou=Human Resources,dc=bitwarden,dc=com", - email: "LoranceC@68682c9b2559463bb9da0d98b541595f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanity Tropea,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vanity Tropea,ou=Administrative,dc=bitwarden,dc=com", - email: "TropeaV@461d63d1b6a041a69495f095e74332a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyb Centers,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cyb Centers,ou=Janitorial,dc=bitwarden,dc=com", - email: "CentersC@7a7e84cee07a4519aac362b25f2d7d3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Muire Bakhach,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Muire Bakhach,ou=Administrative,dc=bitwarden,dc=com", - email: "BakhachM@e3c084d5a2b44c959d053319884f8497.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eliza Gros,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Eliza Gros,ou=Peons,dc=bitwarden,dc=com", - email: "GrosE@49c28823fa6d4e18b2bd79c94f037cd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ranjit Surazski,ou=Product Testing,dc=bitwarden,dc=com", - email: "SurazskR@5c31d24a74fe48bd9d295b9aefc9bdd6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cthrine Tarsky,ou=Janitorial,dc=bitwarden,dc=com", - email: "TarskyC@7358f14ebc1d437faa31666574716056.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lex SimardNormandin,ou=Janitorial,dc=bitwarden,dc=com", - email: "SimardNL@e33d3ed1cbf54d6c887c9e826f3363fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brita Jodoin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Brita Jodoin,ou=Human Resources,dc=bitwarden,dc=com", - email: "JodoinB@92f076e32839486d848c7a04ce85bb65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renu Paynter,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Renu Paynter,ou=Administrative,dc=bitwarden,dc=com", - email: "PaynterR@95d6fc1a58184bfdb66f14ada3320ed0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Honey Karole,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Honey Karole,ou=Payroll,dc=bitwarden,dc=com", - email: "KaroleH@bf39febc19c343cc9aaa907ea0d77554.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryJane Cusick,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=MaryJane Cusick,ou=Peons,dc=bitwarden,dc=com", - email: "CusickM@e9f1b0a2647f4ec0a7559f497a7b6a0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Romina McClain,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Romina McClain,ou=Payroll,dc=bitwarden,dc=com", - email: "McClainR@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinett Zeisler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Robinett Zeisler,ou=Management,dc=bitwarden,dc=com", - email: "ZeislerR@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ervin Guindi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ervin Guindi,ou=Management,dc=bitwarden,dc=com", - email: "GuindiE@cad2c84c3f094259b5729a471688ee83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vernice Brandon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vernice Brandon,ou=Payroll,dc=bitwarden,dc=com", - email: "BrandonV@b1ec0cbcb2944a58bb6bfcd6bb77a546.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wil Vasil,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Wil Vasil,ou=Peons,dc=bitwarden,dc=com", - email: "VasilW@d8a92cba997b45b7b73921e0114fc8ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anader Atp,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anader Atp,ou=Payroll,dc=bitwarden,dc=com", - email: "AtpA@bd014ad451a846c4a4114333cdf5c066.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cecil Martincich,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cecil Martincich,ou=Janitorial,dc=bitwarden,dc=com", - email: "MartincC@8819cc07e7b545c38dcf521aa22a7f85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelin Hysler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Madelin Hysler,ou=Product Testing,dc=bitwarden,dc=com", - email: "HyslerM@e4cb1f57405243129844c08d2e77b681.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colleen Hotlist,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Colleen Hotlist,ou=Administrative,dc=bitwarden,dc=com", - email: "HotlistC@2e11b315f15c492399248250b0acc021.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarence Baragar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clarence Baragar,ou=Peons,dc=bitwarden,dc=com", - email: "BaragarC@32e3fa5da06a4fd3803417733702b064.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marvette Mony,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marvette Mony,ou=Product Testing,dc=bitwarden,dc=com", - email: "MonyM@027050a72ac34c81a8cdacfc4d562d92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maurijn Wesolowski,ou=Product Testing,dc=bitwarden,dc=com", - email: "WesolowM@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janette Stasyszyn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Janette Stasyszyn,ou=Management,dc=bitwarden,dc=com", - email: "StasyszJ@b772115a1aa1477ba5883638406f7f1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colette Iu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Colette Iu,ou=Human Resources,dc=bitwarden,dc=com", - email: "IuC@5ca2c65d4d4c47a4aa9021c684474fd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morissa Weiss,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Morissa Weiss,ou=Payroll,dc=bitwarden,dc=com", - email: "WeissM@7bb8de925914422da9d61b06d1067ef2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Herbert Nishimura,ou=Product Testing,dc=bitwarden,dc=com", - email: "NishimuH@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olva Smid,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Olva Smid,ou=Human Resources,dc=bitwarden,dc=com", - email: "SmidO@a07853d0708843cfba89e8d47f4ba85a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beulah Kacor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Beulah Kacor,ou=Management,dc=bitwarden,dc=com", - email: "KacorB@0b7ec0c2364e4e4f8de90b2b167baf77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stefa Aksel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Stefa Aksel,ou=Product Testing,dc=bitwarden,dc=com", - email: "AkselS@f2b5edd91a174de185a3ef948629a325.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadru Quintana,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sadru Quintana,ou=Administrative,dc=bitwarden,dc=com", - email: "QuintanS@39726a1b008d411d8a28b85a63102ac3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzan Dourley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Suzan Dourley,ou=Peons,dc=bitwarden,dc=com", - email: "DourleyS@6d33f2897fd04c38bb8fe83ad0412af9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wil Hirose,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wil Hirose,ou=Management,dc=bitwarden,dc=com", - email: "HiroseW@6ff46dc4b1cd4999b4c5670fef62271f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Auria Remson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Auria Remson,ou=Management,dc=bitwarden,dc=com", - email: "RemsonA@7092afcac0d743dda822cd8d0349a08e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eddie KnesMaxwell,ou=Payroll,dc=bitwarden,dc=com", - email: "KnesMaxE@d90dcd068de74a77904c15642c024df9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pennie Akai,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pennie Akai,ou=Peons,dc=bitwarden,dc=com", - email: "AkaiP@f00d58ce2e144a1d8084394bfeb550b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allyce Versteeg,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Allyce Versteeg,ou=Peons,dc=bitwarden,dc=com", - email: "VersteeA@74f49865edf34a06971e54ca40c018cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norah Saunderson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Norah Saunderson,ou=Administrative,dc=bitwarden,dc=com", - email: "SaunderN@326d8403ad204a388a69bbd4329fe5a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Guinna Gravelle,ou=Janitorial,dc=bitwarden,dc=com", - email: "GravellG@9aea4844b36044d48b6ce9023f128642.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cinderella Chafin,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChafinC@8b4e180a03f04f079b534af88c685eca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chery Vieira,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chery Vieira,ou=Product Testing,dc=bitwarden,dc=com", - email: "VieiraC@5449de7063aa4ed2b6578dde4c294893.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gwennie Sandberg,ou=Product Testing,dc=bitwarden,dc=com", - email: "SandberG@f36f45f8205e4b108d066ef8eb28e68b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karita Hoekstra,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karita Hoekstra,ou=Peons,dc=bitwarden,dc=com", - email: "HoekstrK@d4b58fe2bfde4032862e5386c0e20902.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milt Pilipchuk,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Milt Pilipchuk,ou=Peons,dc=bitwarden,dc=com", - email: "PilipchM@da1b5788f067415eb6baf89891f2b951.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pal Hnidek,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pal Hnidek,ou=Human Resources,dc=bitwarden,dc=com", - email: "HnidekP@e41d23ea26fe487bacc315514ad13746.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teodora Weidinger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Teodora Weidinger,ou=Administrative,dc=bitwarden,dc=com", - email: "WeidingT@478214d5722f41a1a65048e4b5c2e3f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephen Shearer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Stephen Shearer,ou=Product Development,dc=bitwarden,dc=com", - email: "ShearerS@c92365298bdc408a8d5a96e4deae0869.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celka Antle,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Celka Antle,ou=Peons,dc=bitwarden,dc=com", - email: "AntleC@f34d92cdab5f41e598142a994af089cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chelsey Mortimer,ou=Human Resources,dc=bitwarden,dc=com", - email: "MortimeC@ec8dc3c6877747ab888f5b203f49583b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binnie Newham,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Binnie Newham,ou=Human Resources,dc=bitwarden,dc=com", - email: "NewhamB@befab122c7044aa3b20b92009a4d0191.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ursula Duvarci,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ursula Duvarci,ou=Payroll,dc=bitwarden,dc=com", - email: "DuvarciU@bc7c0ff60d4641f2b01474bcc8b086c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ted Clinton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ted Clinton,ou=Peons,dc=bitwarden,dc=com", - email: "ClintonT@445a60ac98804054899e1164059fd95e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Prissie Kostyniuk,ou=Product Development,dc=bitwarden,dc=com", - email: "KostyniP@2c11f6a276034996a4ddc6513434ce9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivie Petrie,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ivie Petrie,ou=Administrative,dc=bitwarden,dc=com", - email: "PetrieI@2fdc38b3b56b4c61813cbb26a59352be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kuswara Heighton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kuswara Heighton,ou=Management,dc=bitwarden,dc=com", - email: "HeightoK@6278758e52d64d2fa2b3ae646f7b1c8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johanna Virani,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Johanna Virani,ou=Product Development,dc=bitwarden,dc=com", - email: "ViraniJ@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Leandra Rubinov,ou=Product Testing,dc=bitwarden,dc=com", - email: "RubinovL@41daa3e0419742f58440d28fd291693d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marit Simons,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marit Simons,ou=Human Resources,dc=bitwarden,dc=com", - email: "SimonsM@dc81d1ec5dc44ff2aadb325ca2efedb1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joel Hinton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Joel Hinton,ou=Product Testing,dc=bitwarden,dc=com", - email: "HintonJ@0d31b4804a864bcaadb4a2443708a6a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mentor Kimler,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mentor Kimler,ou=Payroll,dc=bitwarden,dc=com", - email: "KimlerM@b5e3188bf80e462eac4ebbb9d1096eff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thuy Kolos,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Thuy Kolos,ou=Peons,dc=bitwarden,dc=com", - email: "KolosT@af7219707df54fa3a07b2c4c1c18c6db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sergiu Chai,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sergiu Chai,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChaiS@5bf44110ed3743de8af47997ebc8b9fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sande Desjarlais,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sande Desjarlais,ou=Product Development,dc=bitwarden,dc=com", - email: "DesjarlS@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Asia Falkenstrom,ou=Janitorial,dc=bitwarden,dc=com", - email: "FalkensA@a59346ad14cf48868393d6c59fa9cec4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allis Sherard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Allis Sherard,ou=Human Resources,dc=bitwarden,dc=com", - email: "SherardA@0573bd112aca464284b0d9eac2753606.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miriya Planthara,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Miriya Planthara,ou=Management,dc=bitwarden,dc=com", - email: "PlanthaM@ced3a1835a4b43df86059cd2aa6426c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maribel Nevrela,ou=Human Resources,dc=bitwarden,dc=com", - email: "NevrelaM@69cfa5de8d574e7e93ee6f134eee78e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Joellen Tornqvist,ou=Product Development,dc=bitwarden,dc=com", - email: "TornqviJ@be2317e07ddc4fd1bc1dad5673b21da8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HackHoo Jatar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=HackHoo Jatar,ou=Management,dc=bitwarden,dc=com", - email: "JatarH@c356619b4769401bb929afda889d39f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vonni Mansi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vonni Mansi,ou=Payroll,dc=bitwarden,dc=com", - email: "MansiV@7f18e62561544141b6ccfe39f532339f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Harvey Moshtagh,ou=Administrative,dc=bitwarden,dc=com", - email: "MoshtagH@04a22a65e7964a5bae139e498c20efac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mair Tsui,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mair Tsui,ou=Payroll,dc=bitwarden,dc=com", - email: "TsuiM@c520f3ebde724b50bd2a6770256ea1b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darya Marttinen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Darya Marttinen,ou=Payroll,dc=bitwarden,dc=com", - email: "MarttinD@fa0cc2286f88469eb9aea12a2ef5aea3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kees Arsena,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kees Arsena,ou=Human Resources,dc=bitwarden,dc=com", - email: "ArsenaK@b3ae6dae564847d7ba4d0a12a6361531.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darleen Flowers,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Darleen Flowers,ou=Product Development,dc=bitwarden,dc=com", - email: "FlowersD@17dcf13b7e684c4a9ba2dcc27a684a76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noyes Huenemann,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Noyes Huenemann,ou=Management,dc=bitwarden,dc=com", - email: "HuenemaN@7d4c2ab04b8a46e18a0c092fdac02490.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Buster Myre,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Buster Myre,ou=Product Development,dc=bitwarden,dc=com", - email: "MyreB@bc47d55f014c4c2d8cd9b2f73d7704a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tristano Angus,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tristano Angus,ou=Human Resources,dc=bitwarden,dc=com", - email: "AngusT@19be86f3b1d34c7ab6993505e8f0ad33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anita Roesler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Anita Roesler,ou=Product Testing,dc=bitwarden,dc=com", - email: "RoeslerA@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monling Goin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Monling Goin,ou=Product Development,dc=bitwarden,dc=com", - email: "GoinM@34b9dab44b4c429bac836e963718507e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dannye Munsey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dannye Munsey,ou=Peons,dc=bitwarden,dc=com", - email: "MunseyD@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnella Pinalez,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Agnella Pinalez,ou=Peons,dc=bitwarden,dc=com", - email: "PinalezA@fa7f3d0bae554869a9cb0e95fe35707f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shashank Romberg,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shashank Romberg,ou=Product Testing,dc=bitwarden,dc=com", - email: "RombergS@faec862307e2490ab9310236bae87643.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zsazsa Yoe,ou=Product Development,dc=bitwarden,dc=com", - email: "YoeZ@6ef4ed9ae6c24731b126e620358a2de4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Narinder Vilhan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Narinder Vilhan,ou=Product Development,dc=bitwarden,dc=com", - email: "VilhanN@f41772a4d1c540f3ab2ca562625ea847.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ulrika Simanskis,ou=Administrative,dc=bitwarden,dc=com", - email: "SimanskU@ec9ffb19a2144630ae8bece4e80922f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeremy Schuster,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jeremy Schuster,ou=Management,dc=bitwarden,dc=com", - email: "SchusteJ@60e903b99c4f452b858f19d9843dcc15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saraann Blakkolb,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Saraann Blakkolb,ou=Management,dc=bitwarden,dc=com", - email: "BlakkolS@0f3924780f2742839088cadeea1581cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aida Brunelle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aida Brunelle,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrunellA@456334f0b48d4ad68b2832c807dab058.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrielle Hine,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Merrielle Hine,ou=Product Testing,dc=bitwarden,dc=com", - email: "HineM@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jeanie Clarkson,ou=Payroll,dc=bitwarden,dc=com", - email: "ClarksoJ@d89a6add90a54661825d72b17fd5b437.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kristy Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", - email: "RhattigK@39b4f04621524ec1b23b8b4d21e9f418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ali GarciaLamarca,ou=Janitorial,dc=bitwarden,dc=com", - email: "GarciaLA@1ee43d5295b54a68904e38d5e6ea6d47.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=AnneMarie Atkinson,ou=Peons,dc=bitwarden,dc=com", - email: "AtkinsoA@17061e8235904e0b93980e91f7a69e37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beckie Cowell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Beckie Cowell,ou=Payroll,dc=bitwarden,dc=com", - email: "CowellB@43d56f86246844bbb069d46885224475.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maso Mathewson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maso Mathewson,ou=Administrative,dc=bitwarden,dc=com", - email: "MathewsM@4b85844a8d8b4d8c8c64c4c289791834.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arnis Fredette,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Arnis Fredette,ou=Administrative,dc=bitwarden,dc=com", - email: "FredettA@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maddie Bowick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maddie Bowick,ou=Product Testing,dc=bitwarden,dc=com", - email: "BowickM@d534d4e018bc4513999f8eae2be01976.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolene Datema,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jolene Datema,ou=Product Testing,dc=bitwarden,dc=com", - email: "DatemaJ@4f99a2d4c8e343d39b81a3ab47785f76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kuswara Musick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kuswara Musick,ou=Management,dc=bitwarden,dc=com", - email: "MusickK@975f42c981f64264a2c4cf3ee5b53c68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belia Mustafa,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Belia Mustafa,ou=Product Development,dc=bitwarden,dc=com", - email: "MustafaB@1f70c3bade4e4575a0687e469e22b825.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelcie Rowe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kelcie Rowe,ou=Payroll,dc=bitwarden,dc=com", - email: "RoweK@d6c388cda1d54d59a23516cc122a5ef1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ailee Gingrich,ou=Product Testing,dc=bitwarden,dc=com", - email: "GingricA@9b2c23de49384f84ae5a2204e6781b81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oguz Crafton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Oguz Crafton,ou=Product Testing,dc=bitwarden,dc=com", - email: "CraftonO@e87ee38d93414ee3a0d592bc127097ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Heidie Lenzi,ou=Human Resources,dc=bitwarden,dc=com", - email: "LenziH@c7c0612e18954668878d3bc1afa0d5de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wilmer Kowaleski,ou=Product Development,dc=bitwarden,dc=com", - email: "KowalesW@7f9caaee8d0a4000bdc6e432d2ef6c1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anallese Luszczek,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anallese Luszczek,ou=Product Development,dc=bitwarden,dc=com", - email: "LuszczeA@2a7e39a5b875406f9085c17bedc931dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raeann Fu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Raeann Fu,ou=Janitorial,dc=bitwarden,dc=com", - email: "FuR@a7e7b13342d14512ab65c0fc1d87a2ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyanna Hartling,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dyanna Hartling,ou=Payroll,dc=bitwarden,dc=com", - email: "HartlinD@42585481abdb4363ac24feac32c0a14e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Thomson Bloedon,ou=Janitorial,dc=bitwarden,dc=com", - email: "BloedonT@9c4f9eaf4eea42848e2ed65a10014c07.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hamid Peng,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hamid Peng,ou=Human Resources,dc=bitwarden,dc=com", - email: "PengH@87501b64e5644d78a747c4f01175b74a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michaela Minichillo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Michaela Minichillo,ou=Peons,dc=bitwarden,dc=com", - email: "MinichiM@addacb3184714ace97e25c0e017ebbb0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chesteen Guzman,ou=Human Resources,dc=bitwarden,dc=com", - email: "GuzmanC@ea74020b5db84a1f9fcb412873464117.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Romano Moosavi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Romano Moosavi,ou=Janitorial,dc=bitwarden,dc=com", - email: "MoosaviR@34856ffc4b2a4685be33512cea557265.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Weber Kosnaskie,ou=Human Resources,dc=bitwarden,dc=com", - email: "KosnaskW@da8e740f807d423dbc2e15de67bce38e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nannette Pantages,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nannette Pantages,ou=Janitorial,dc=bitwarden,dc=com", - email: "PantageN@f88ed4d88d0c4b619b4b2076642c1070.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zaihua Dhuga,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Zaihua Dhuga,ou=Peons,dc=bitwarden,dc=com", - email: "DhugaZ@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niki Brock,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Niki Brock,ou=Management,dc=bitwarden,dc=com", - email: "BrockN@1c75dd756d3646528231e24a92716bd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucila Jatar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lucila Jatar,ou=Management,dc=bitwarden,dc=com", - email: "JatarL@befc232b3f4240ada061cd42724f306e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reiko StJames,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Reiko StJames,ou=Payroll,dc=bitwarden,dc=com", - email: "StJamesR@6a93cf1aebfe489dacbfbd53e393bea0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmen Poulin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carmen Poulin,ou=Janitorial,dc=bitwarden,dc=com", - email: "PoulinC@eff4b5c8cdd74572a1896b15aff841f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loree Dorval,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Loree Dorval,ou=Human Resources,dc=bitwarden,dc=com", - email: "DorvalL@62ec731e1ab8465b82b77be42758d517.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tricord Heinrichs,ou=Janitorial,dc=bitwarden,dc=com", - email: "HeinricT@b7db7b74741043f1bc70179c65d8c474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reinhold Ballinger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Reinhold Ballinger,ou=Management,dc=bitwarden,dc=com", - email: "BallingR@d38a3979c2de40a29545a48afbed0d22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mat Smyth,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mat Smyth,ou=Product Development,dc=bitwarden,dc=com", - email: "SmythM@dc6a05982d874ebebc06c9a0d16ba5c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lesya Maye,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lesya Maye,ou=Human Resources,dc=bitwarden,dc=com", - email: "MayeL@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dixie Oshinski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dixie Oshinski,ou=Management,dc=bitwarden,dc=com", - email: "OshinskD@61003bbcc2b54b358efccfc69a8f8df8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephanie Crerar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Stephanie Crerar,ou=Peons,dc=bitwarden,dc=com", - email: "CrerarS@ffc6032d945b438b9865cf8c7a84e7fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miguelita Wyss,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Miguelita Wyss,ou=Product Development,dc=bitwarden,dc=com", - email: "WyssM@3b50811f02664433a227210515cf2d84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lee Kreimer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lee Kreimer,ou=Administrative,dc=bitwarden,dc=com", - email: "KreimerL@f80be3a38b1d4889b09c7deda5322720.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lavonda Kerwin,ou=Human Resources,dc=bitwarden,dc=com", - email: "KerwinL@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Violetta Nttest,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Violetta Nttest,ou=Janitorial,dc=bitwarden,dc=com", - email: "NttestV@c60d22407c0d47c0b12a1be490e44c72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chau Gyenes,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Chau Gyenes,ou=Administrative,dc=bitwarden,dc=com", - email: "GyenesC@79ff22f8d12b4572811ad95061bf5388.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melva Kaefer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melva Kaefer,ou=Management,dc=bitwarden,dc=com", - email: "KaeferM@d27485ac0882409f8001fecce0300eb4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celinka Laprade,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Celinka Laprade,ou=Peons,dc=bitwarden,dc=com", - email: "LapradeC@a2fc6a711cba4ec98d716bb4c3e20f83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abbey Firat,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Abbey Firat,ou=Janitorial,dc=bitwarden,dc=com", - email: "FiratA@c9027f607987451aa869ec32b2ad0708.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coleen Kovats,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Coleen Kovats,ou=Product Development,dc=bitwarden,dc=com", - email: "KovatsC@bdfcb82199ec4806bb1989f89de74296.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merla Tsitsior,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Merla Tsitsior,ou=Payroll,dc=bitwarden,dc=com", - email: "TsitsioM@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marek Harwerth,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marek Harwerth,ou=Payroll,dc=bitwarden,dc=com", - email: "HarwertM@07add4ded06549a3b31963a376ba1c96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bertie Whatley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bertie Whatley,ou=Product Development,dc=bitwarden,dc=com", - email: "WhatleyB@4c3a20eeff014e34829e7e04f58210d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Message Cohen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Message Cohen,ou=Janitorial,dc=bitwarden,dc=com", - email: "CohenM@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chai NTINASH,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Chai NTINASH,ou=Product Development,dc=bitwarden,dc=com", - email: "NTINASHC@91023564560e4387b5bc8c338afb8d2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karin Schaller,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karin Schaller,ou=Management,dc=bitwarden,dc=com", - email: "SchalleK@f9d178e246d64d2e972c6a88cbdc9616.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolea StMartin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nicolea StMartin,ou=Payroll,dc=bitwarden,dc=com", - email: "StMartiN@a5b16f07cc5f4d548df233a10f2abd0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heda Bowens,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Heda Bowens,ou=Janitorial,dc=bitwarden,dc=com", - email: "BowensH@85000db2e5e34d6d81e53b19e5b46684.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Conni Westgarth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Conni Westgarth,ou=Product Testing,dc=bitwarden,dc=com", - email: "WestgarC@37f78211f5f44e43b7f84a7d34417dc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joell Bolzon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Joell Bolzon,ou=Payroll,dc=bitwarden,dc=com", - email: "BolzonJ@06521bdd507441e9a09de35a0e462c1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christianne Carling,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Christianne Carling,ou=Janitorial,dc=bitwarden,dc=com", - email: "CarlingC@06731df963584f3ca191849b64eabf87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nessy Grewal,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nessy Grewal,ou=Product Testing,dc=bitwarden,dc=com", - email: "GrewalN@8c8bf3789a35468ea6c95834e941f083.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lex Woodyer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lex Woodyer,ou=Product Testing,dc=bitwarden,dc=com", - email: "WoodyerL@e059f798bf444774a99e078fccd4a4f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pamela Fon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pamela Fon,ou=Peons,dc=bitwarden,dc=com", - email: "FonP@cc117505f3744c0d8553f4b07f63ca99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sukhwant Wobbrock,ou=Administrative,dc=bitwarden,dc=com", - email: "WobbrocS@fc3f6240126d440389a99ebbf528efcb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loris Winterberg,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Loris Winterberg,ou=Administrative,dc=bitwarden,dc=com", - email: "WinterbL@ff8c4aaacc274f3781ccca8d193be581.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Business Huether,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Business Huether,ou=Product Testing,dc=bitwarden,dc=com", - email: "HuetherB@e0451e7239ff4357aaa9acaa2724cd82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susanne Repeta,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Susanne Repeta,ou=Janitorial,dc=bitwarden,dc=com", - email: "RepetaS@2d9b448800384d01a7fa8a4fa28f7c7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willie Murphy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Willie Murphy,ou=Product Development,dc=bitwarden,dc=com", - email: "MurphyW@6f609804b5454243a8f49419cf4fa238.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donella Duncan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Donella Duncan,ou=Product Testing,dc=bitwarden,dc=com", - email: "DuncanD@738f967b243c46139646bd958f28d963.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jacquelin Coutu,ou=Product Development,dc=bitwarden,dc=com", - email: "CoutuJ@37f6e89a491b4e36b50bf46647ad8a4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanBernard Coord,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=JeanBernard Coord,ou=Administrative,dc=bitwarden,dc=com", - email: "CoordJ@bb6c98b6a4dc470ea57c17d165eabc5d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tove Mettrey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tove Mettrey,ou=Product Development,dc=bitwarden,dc=com", - email: "MettreyT@c08c80f3c69d4d04b025dc038c8f6045.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathye Terwilligar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kathye Terwilligar,ou=Peons,dc=bitwarden,dc=com", - email: "TerwillK@cff83e5325124f689808e755392aa586.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emilda Wylie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emilda Wylie,ou=Product Development,dc=bitwarden,dc=com", - email: "WylieE@d93b82016f974a879c0bb4f0879ad59a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anette McBryan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anette McBryan,ou=Janitorial,dc=bitwarden,dc=com", - email: "McBryanA@e031c0ad66574b2aa76e4d7b19f2099d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jannelle Burnside,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jannelle Burnside,ou=Management,dc=bitwarden,dc=com", - email: "BurnsidJ@512b1443d1ed45ccb0713f3efd2670c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Swact Evans,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Swact Evans,ou=Management,dc=bitwarden,dc=com", - email: "EvansS@5ebaa8af105c497682481efce65265ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Almeda Bloemker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Almeda Bloemker,ou=Peons,dc=bitwarden,dc=com", - email: "BloemkeA@dbed6d43a21541a596721c7d187872fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronn Peschke,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ronn Peschke,ou=Human Resources,dc=bitwarden,dc=com", - email: "PeschkeR@49c1a115ac8b439f9ab99f302ba59751.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ainslee Scp,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ainslee Scp,ou=Management,dc=bitwarden,dc=com", - email: "ScpA@59a53864c7aa4d7ea9936880199e460a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claudina Jablonski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Claudina Jablonski,ou=Product Development,dc=bitwarden,dc=com", - email: "JablonsC@4c3bb131ea5148028bf43ce4a8c06b23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ciriaco Chatterton,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChatterC@b981e29e060744a4970aa15bb19296ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olwen Garey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Olwen Garey,ou=Administrative,dc=bitwarden,dc=com", - email: "GareyO@298f1a44ea7f452799d70af39fda7e0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ethyl Tebinka,ou=Payroll,dc=bitwarden,dc=com", - email: "TebinkaE@d215d486a3844409ae8cd732ddd91a4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Empdb Jahromi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Empdb Jahromi,ou=Peons,dc=bitwarden,dc=com", - email: "JahromiE@d5f1e05d95aa48aa94789d8e594894db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ri Stouder,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ri Stouder,ou=Janitorial,dc=bitwarden,dc=com", - email: "StouderR@73c831b940d9493093c37d5b1eecfad5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darlene Mahonen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Darlene Mahonen,ou=Product Development,dc=bitwarden,dc=com", - email: "MahonenD@6944056d5ed54dc5bc898067e09586b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mayumi Piitz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mayumi Piitz,ou=Peons,dc=bitwarden,dc=com", - email: "PiitzM@10c8d574e1b3465daa57d640cae3b608.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kazuyuki Romberg,ou=Janitorial,dc=bitwarden,dc=com", - email: "RombergK@236ae3c93f204197811a00f3cff75d1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeri Nadeau,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jeri Nadeau,ou=Product Development,dc=bitwarden,dc=com", - email: "NadeauJ@dd2faa5cf2194cacb3f5af2bda857324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valentina Diogo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Valentina Diogo,ou=Product Development,dc=bitwarden,dc=com", - email: "DiogoV@44eb2c38c4fe4b248a18869662999fa3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Errol Pieron,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Errol Pieron,ou=Administrative,dc=bitwarden,dc=com", - email: "PieronE@f1169fdd057e4624ac9e443f5372e7d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blanca Murock,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Blanca Murock,ou=Janitorial,dc=bitwarden,dc=com", - email: "MurockB@a88f08b66dd64c6298517b19d5989bb1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebeka McKinley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rebeka McKinley,ou=Product Development,dc=bitwarden,dc=com", - email: "McKinleR@1025092185dc4f3abfbf07259ddd26cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sean Stayton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sean Stayton,ou=Administrative,dc=bitwarden,dc=com", - email: "StaytonS@81141da0af1e4fc99220eaa81b9bfc02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elex Zaharychuk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Elex Zaharychuk,ou=Management,dc=bitwarden,dc=com", - email: "ZaharycE@ac22893bf0684aefaebb0a0decbe182b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francesca Alguire,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Francesca Alguire,ou=Management,dc=bitwarden,dc=com", - email: "AlguireF@43a2075086314e66b15465a3ec778b06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgie Bosy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Georgie Bosy,ou=Peons,dc=bitwarden,dc=com", - email: "BosyG@b347e7ca23ac4a809e51a769a6ab8366.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Madeline Zingeler,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZingeleM@9976848d05f44dc7b3c15447d59df348.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fenelia Costache,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fenelia Costache,ou=Payroll,dc=bitwarden,dc=com", - email: "CostachF@6e76f9c1c78c4006a9e635f43ae1e33a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mab Lao,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mab Lao,ou=Payroll,dc=bitwarden,dc=com", - email: "LaoM@db227e3e8661495294f2d94a22c03e09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sayla Varia,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sayla Varia,ou=Payroll,dc=bitwarden,dc=com", - email: "VariaS@13b504a8a169451f93c28e40583299e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helyn Roberts,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Helyn Roberts,ou=Peons,dc=bitwarden,dc=com", - email: "RobertsH@87dcc1359cb14e3b85fed9765ee13d91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emr Zisu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Emr Zisu,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZisuE@bb2a12d176e44d12ab407b086abfe896.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ame Frie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ame Frie,ou=Janitorial,dc=bitwarden,dc=com", - email: "FrieA@b3b7b3f5b8c2423cb6dc556b4c9cf433.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wonda Chao,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Wonda Chao,ou=Administrative,dc=bitwarden,dc=com", - email: "ChaoW@0f4d2fc737564208afea78f691b2f46f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oralle Checinski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Oralle Checinski,ou=Peons,dc=bitwarden,dc=com", - email: "ChecinsO@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Georgetta Bostelmann,ou=Payroll,dc=bitwarden,dc=com", - email: "BostelmG@446165da8ada4f7e9d1338149aadb957.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Birendra Britton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Birendra Britton,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrittonB@7c1559a76e8f4424883c1465d1d2f19c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebeka McCall,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rebeka McCall,ou=Janitorial,dc=bitwarden,dc=com", - email: "McCallR@62f112825f5642bf9962b499addb2c73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constantine Bulanda,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Constantine Bulanda,ou=Management,dc=bitwarden,dc=com", - email: "BulandaC@4a7f898eb8954829907d34eeb46064e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibel Kurdas,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sibel Kurdas,ou=Product Development,dc=bitwarden,dc=com", - email: "KurdasS@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pcta Littlewood,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pcta Littlewood,ou=Management,dc=bitwarden,dc=com", - email: "LittlewP@35de9aeb91bf4aec9b81f69be90f9534.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rodi Zabokrzycki,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZabokrzR@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Normand Simpkin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Normand Simpkin,ou=Janitorial,dc=bitwarden,dc=com", - email: "SimpkinN@1984c2d98d8741afa663b062afe4a653.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ninnetta Trochu,ou=Human Resources,dc=bitwarden,dc=com", - email: "TrochuN@7e667bf109b34912922cf458a184f322.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viole Scates,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Viole Scates,ou=Human Resources,dc=bitwarden,dc=com", - email: "ScatesV@185b51f28c7f46da96dbfb585fb3e90d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisent McAfee,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Melisent McAfee,ou=Administrative,dc=bitwarden,dc=com", - email: "McAfeeM@12e070c46c9248eda6657574192aedf1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jemima Hennelly,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jemima Hennelly,ou=Peons,dc=bitwarden,dc=com", - email: "HennellJ@cf607f514ea94d249d7d25105dbb0762.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Halette Hoag,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Halette Hoag,ou=Product Development,dc=bitwarden,dc=com", - email: "HoagH@eb0f9e33334540be9e105b51f1313877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fayre Patenaude,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fayre Patenaude,ou=Product Development,dc=bitwarden,dc=com", - email: "PatenauF@e7f11fb46eb7400b8880ea7eb0c6a19d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rob Allan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rob Allan,ou=Human Resources,dc=bitwarden,dc=com", - email: "AllanR@4d33a49d94084ccf8decdf53642f78ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noyes Bergman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Noyes Bergman,ou=Product Testing,dc=bitwarden,dc=com", - email: "BergmanN@4154a37503e24114bfe5421ecb627bb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Else McCollam,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Else McCollam,ou=Product Testing,dc=bitwarden,dc=com", - email: "McCollaE@5b2a207a5b574a8faa45790df76c253d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bellina Koens,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bellina Koens,ou=Management,dc=bitwarden,dc=com", - email: "KoensB@c6e9ac083cc043b8883c6054dd35e8a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lian Shapcott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lian Shapcott,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShapcotL@ac56a9f40fef46b4bb71769c6757745e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florella Pichocki,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Florella Pichocki,ou=Management,dc=bitwarden,dc=com", - email: "PichockF@f10e733ab73f49deaef5dee5420e792f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maribel Zafarano,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maribel Zafarano,ou=Management,dc=bitwarden,dc=com", - email: "ZafaranM@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ren Dickerson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ren Dickerson,ou=Administrative,dc=bitwarden,dc=com", - email: "DickersR@16c9187062174be89c2c9f0c8fb48cf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darla Puglia,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Darla Puglia,ou=Human Resources,dc=bitwarden,dc=com", - email: "PugliaD@881099fe370d45e6aa7b0854814780fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacee Mamoulides,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Stacee Mamoulides,ou=Peons,dc=bitwarden,dc=com", - email: "MamouliS@9350b9be3864496bacd0e267723dff37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrien Bennatt,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Adrien Bennatt,ou=Management,dc=bitwarden,dc=com", - email: "BennattA@1df73cc203344a569c1b4737122f78a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stesha Cotten,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Stesha Cotten,ou=Payroll,dc=bitwarden,dc=com", - email: "CottenS@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bregitte Kawauchi,ou=Payroll,dc=bitwarden,dc=com", - email: "KawauchB@43194b35694143d5b8419715c0e79567.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ryann McRonald,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ryann McRonald,ou=Management,dc=bitwarden,dc=com", - email: "McRonalR@4eab057e70644dff8f3d5ac041be0877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joete Pham,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Joete Pham,ou=Product Development,dc=bitwarden,dc=com", - email: "PhamJ@e57a80c33f4143ecb7f38726907bcc9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kimmie Dyess,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kimmie Dyess,ou=Management,dc=bitwarden,dc=com", - email: "DyessK@8a7d5133f2fc4397a30a337937403b76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crin Seeley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Crin Seeley,ou=Administrative,dc=bitwarden,dc=com", - email: "SeeleyC@7b437b94250d4fbb8fc2d7ab00cc547b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Eleni Mozeleski,ou=Product Development,dc=bitwarden,dc=com", - email: "MozelesE@918d2d4077734b5f89b3311e0d63e21b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mercie Polson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mercie Polson,ou=Product Testing,dc=bitwarden,dc=com", - email: "PolsonM@19fdb24d6d9d48abb4a5fe5ad5b743d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elvert Tripp,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elvert Tripp,ou=Payroll,dc=bitwarden,dc=com", - email: "TrippE@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mead Urquhart,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mead Urquhart,ou=Payroll,dc=bitwarden,dc=com", - email: "UrquharM@2370f86ee68f4e849137b28f2aad76d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jan Delorenzi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jan Delorenzi,ou=Payroll,dc=bitwarden,dc=com", - email: "DelorenJ@97baadb605a44ba996abfdd024e13b4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnny Stetter,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Johnny Stetter,ou=Management,dc=bitwarden,dc=com", - email: "StetterJ@1c4889d6f6ca4189816eb95971dafca2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjan Bourk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marjan Bourk,ou=Management,dc=bitwarden,dc=com", - email: "BourkM@8738fd425c2c456fa523b311dbe475c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jaclyn Maccallum,ou=Administrative,dc=bitwarden,dc=com", - email: "MaccallJ@20be35b03567473c9452a335266426a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjan Angell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marjan Angell,ou=Human Resources,dc=bitwarden,dc=com", - email: "AngellM@207f860f10124c3fa866addc10eb4455.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrol Calder,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Darrol Calder,ou=Administrative,dc=bitwarden,dc=com", - email: "CalderD@3876999ec69c4543970a2db25c726421.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meridian Buder,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Meridian Buder,ou=Payroll,dc=bitwarden,dc=com", - email: "BuderM@6319c042006048f592b024b86a54bed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ericka Contardo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ericka Contardo,ou=Human Resources,dc=bitwarden,dc=com", - email: "ContardE@4ad5ae565d1a473a81525b1882b9931b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saeed Liston,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Saeed Liston,ou=Peons,dc=bitwarden,dc=com", - email: "ListonS@7db6edd7156649fcb7ae93732caff60d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cherise Shackelford,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShackelC@58351331fe224df1be3d4a98ae5bb106.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nettle Kuzemka,ou=Human Resources,dc=bitwarden,dc=com", - email: "KuzemkaN@5e7bd652b57e4d33a836a31c8d23e4f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rosamond Burkepile,ou=Janitorial,dc=bitwarden,dc=com", - email: "BurkepiR@fa3e145865f0441f8b1263a859d170e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cinnamon Jurman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cinnamon Jurman,ou=Peons,dc=bitwarden,dc=com", - email: "JurmanC@bb172de44ec2458f9c918f47583b4d80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlie Hord,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karlie Hord,ou=Peons,dc=bitwarden,dc=com", - email: "HordK@d147229253264c2b9b78c661dfda7cde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ozlem Switching,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ozlem Switching,ou=Peons,dc=bitwarden,dc=com", - email: "SwitchiO@526b2e31e79b488fb63ef0570005204a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seven Figura,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Seven Figura,ou=Janitorial,dc=bitwarden,dc=com", - email: "FiguraS@f81c7db8a94146de916a4b35349336d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Birendra Helton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Birendra Helton,ou=Product Development,dc=bitwarden,dc=com", - email: "HeltonB@f7d02b716b224e868c9d7b6fe1dd0e0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madan Babcock,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Madan Babcock,ou=Management,dc=bitwarden,dc=com", - email: "BabcockM@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mandi Whitford,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mandi Whitford,ou=Janitorial,dc=bitwarden,dc=com", - email: "WhitforM@3f891cf88f8f4b9cb80e52276f5b9b1c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilse Silwer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ilse Silwer,ou=Product Testing,dc=bitwarden,dc=com", - email: "SilwerI@daa517e67d894816b4a47e43cd62e356.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tommy Fabry,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tommy Fabry,ou=Administrative,dc=bitwarden,dc=com", - email: "FabryT@3f5b9048c8924fec87576c273249cede.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doloritas Renton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Doloritas Renton,ou=Peons,dc=bitwarden,dc=com", - email: "RentonD@75230f61780f4e0e9cf624359c2b6622.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beb Carlson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Beb Carlson,ou=Payroll,dc=bitwarden,dc=com", - email: "CarlsonB@bc1068ff7c5a442e884cab9ab7c4508b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hedy Hobbs,ou=Product Testing,dc=bitwarden,dc=com", - email: "HobbsH@fca42d05acbe47a69668ab85d76a4968.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Faustina Bombardier,ou=Product Testing,dc=bitwarden,dc=com", - email: "BombardF@a4ddeff635f14fe6b72b17daaba90627.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Audrey Charchanko,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Audrey Charchanko,ou=Peons,dc=bitwarden,dc=com", - email: "CharchaA@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grantley Walles,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Grantley Walles,ou=Janitorial,dc=bitwarden,dc=com", - email: "WallesG@da5a908240674035b4f089697eec14f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vale Yost,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vale Yost,ou=Payroll,dc=bitwarden,dc=com", - email: "YostV@f491657ce6cf49f2abe50f84c8f0d067.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalie Krausbar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kalie Krausbar,ou=Management,dc=bitwarden,dc=com", - email: "KrausbaK@742e6acfb3ee43e195f05147276956cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martino Busby,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Martino Busby,ou=Product Testing,dc=bitwarden,dc=com", - email: "BusbyM@bb1a549f208840af8ec52ae7c5ebc4f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selma Kletchko,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Selma Kletchko,ou=Administrative,dc=bitwarden,dc=com", - email: "KletchkS@e59e7dc5561842d286fd6dfedfe8fb9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lineth Montoute,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lineth Montoute,ou=Administrative,dc=bitwarden,dc=com", - email: "MontoutL@89d4d4d86ff240e7ab94041e1f247e61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolie Langenberg,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jolie Langenberg,ou=Administrative,dc=bitwarden,dc=com", - email: "LangenbJ@f07caf5199104113b8565ebc43aef936.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carm Mach,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carm Mach,ou=Janitorial,dc=bitwarden,dc=com", - email: "MachC@acd42583d3044f41816fc62eb7992816.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=HackHoo Paoletti,ou=Product Development,dc=bitwarden,dc=com", - email: "PaolettH@d5cc15f6bb6b4357bd0ce84100b284f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Radio Balog,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Radio Balog,ou=Janitorial,dc=bitwarden,dc=com", - email: "BalogR@72030161dcd24217be14766e527d14fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zere Zafarullah,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zere Zafarullah,ou=Management,dc=bitwarden,dc=com", - email: "ZafarulZ@478c327328034508a65f2bbc1dd25518.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Waly Grabowski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Waly Grabowski,ou=Management,dc=bitwarden,dc=com", - email: "GrabowsW@f01b8c6e19b14b049532cb6664f8caaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dallas Smelters,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dallas Smelters,ou=Product Testing,dc=bitwarden,dc=com", - email: "SmelterD@dd6aa42254414b099b5f31cdae049e72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Izzy Culbreth,ou=Product Testing,dc=bitwarden,dc=com", - email: "CulbretI@8f698818b35041d38a84f1c71ca57e14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zalee Caron,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zalee Caron,ou=Product Development,dc=bitwarden,dc=com", - email: "CaronZ@5acaf493974e4933b27d5e78e25585d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Latashia Boutnikoff,ou=Peons,dc=bitwarden,dc=com", - email: "BoutnikL@1919ee78614547cbb38642c8afc73045.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Konstanze Cordell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Konstanze Cordell,ou=Administrative,dc=bitwarden,dc=com", - email: "CordellK@685a3d9fd790422d8fb825f7a90cab65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Froukje Ecker,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Froukje Ecker,ou=Management,dc=bitwarden,dc=com", - email: "EckerF@b778c029c2264b3089247adae57812bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petri Uhlig,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Petri Uhlig,ou=Payroll,dc=bitwarden,dc=com", - email: "UhligP@6cba9523afcf470890bdfdaf46de0ca4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tessa Pino,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tessa Pino,ou=Product Testing,dc=bitwarden,dc=com", - email: "PinoT@a131fffbdaa44e2aab56ba41e197cf57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Christiana Bielejeski,ou=Human Resources,dc=bitwarden,dc=com", - email: "BielejeC@a8e48278603d4ab3aacfb1fa680fc937.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Britni Routing,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Britni Routing,ou=Administrative,dc=bitwarden,dc=com", - email: "RoutingB@22b38e3187c1496caaed86c5083e47f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michelle Mirza,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Michelle Mirza,ou=Human Resources,dc=bitwarden,dc=com", - email: "MirzaM@2c4465aec0574a929626eaed8fd03343.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Starlin Schilling,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Starlin Schilling,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchilliS@98037b50a4ca4f29b8fad60c1bb6a197.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manya Cripps,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Manya Cripps,ou=Administrative,dc=bitwarden,dc=com", - email: "CrippsM@92f1d5dfabbf4e5bb19678383b93b294.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esther Buttrey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Esther Buttrey,ou=Product Development,dc=bitwarden,dc=com", - email: "ButtreyE@0ea39720ccd849b98e8f01497c06b283.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamma Sellwood,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tamma Sellwood,ou=Administrative,dc=bitwarden,dc=com", - email: "SellwooT@549f8ec8bbb34adfa377866293c57a0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=RongChin Fisher,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=RongChin Fisher,ou=Management,dc=bitwarden,dc=com", - email: "FisherR@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karena Bissegger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Karena Bissegger,ou=Human Resources,dc=bitwarden,dc=com", - email: "BisseggK@8111da611c964d98a3dc51af12640e1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Barbra Skerlak,ou=Janitorial,dc=bitwarden,dc=com", - email: "SkerlakB@c41f8f7aea354718b6ea3277359c3684.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cliff DOrazio,ou=Human Resources,dc=bitwarden,dc=com", - email: "DOrazioC@5670176255f949f78b023f460fb780c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lynnelle Honkakangas,ou=Human Resources,dc=bitwarden,dc=com", - email: "HonkakaL@baeeb32a45ba4c0a81a7005455fc2881.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leena DeCristofaro,ou=Product Development,dc=bitwarden,dc=com", - email: "DeCristL@57ee1e7c1faa4ce2b72c1469382238e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zainab Musgrove,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Zainab Musgrove,ou=Peons,dc=bitwarden,dc=com", - email: "MusgrovZ@47050585f7ac473188eb3868ce1763ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebekah Fenner,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rebekah Fenner,ou=Payroll,dc=bitwarden,dc=com", - email: "FennerR@7710749ecc7b449a842362f5e9e1b148.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabey Florescu,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gabey Florescu,ou=Peons,dc=bitwarden,dc=com", - email: "FlorescG@6d7476aff2da449e96bbd0ec87bf4d49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Padraig Scorziello,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Padraig Scorziello,ou=Product Development,dc=bitwarden,dc=com", - email: "ScorzieP@01034db83e3b44ec835b5255948e4e0f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarisse Venne,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Clarisse Venne,ou=Administrative,dc=bitwarden,dc=com", - email: "VenneC@822da1d370d045aaadf5490626c311f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sally Gimon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sally Gimon,ou=Product Testing,dc=bitwarden,dc=com", - email: "GimonS@5b47dd9dbc1945a4a16e83a582215989.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siusan Surridge,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Siusan Surridge,ou=Management,dc=bitwarden,dc=com", - email: "SurridgS@33045c677af94d5d866f53c47ff9ab36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorris MacDonald,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dorris MacDonald,ou=Product Development,dc=bitwarden,dc=com", - email: "MacDonaD@cd4395677fe7411d8df58e6f810bdee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zoltan Copes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Zoltan Copes,ou=Peons,dc=bitwarden,dc=com", - email: "CopesZ@eaf35a1f9c5a47789295b9630982561d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annadiane Moulton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annadiane Moulton,ou=Administrative,dc=bitwarden,dc=com", - email: "MoultonA@4af403b72bd84466abf0512529d528e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chrystal Salkok,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chrystal Salkok,ou=Payroll,dc=bitwarden,dc=com", - email: "SalkokC@6dc0e5d935a04bb897ee53893751111f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ayaz McFeely,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ayaz McFeely,ou=Payroll,dc=bitwarden,dc=com", - email: "McFeelyA@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Missie Dinnin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Missie Dinnin,ou=Peons,dc=bitwarden,dc=com", - email: "DinninM@ba4f810ac4254d8dbe9cfd7199a37cf3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=ThanhQuoc Sobkow,ou=Product Development,dc=bitwarden,dc=com", - email: "SobkowT@6e1688424ec244adb10f2e8d17d9a231.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlee Cheval,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Karlee Cheval,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChevalK@3ef182c2d8294a598732f2ba6e610c67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constantia Hampshire,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Constantia Hampshire,ou=Peons,dc=bitwarden,dc=com", - email: "HampshiC@777f0963de27462aa91642388ce1bcfa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delle Stansfield,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Delle Stansfield,ou=Administrative,dc=bitwarden,dc=com", - email: "StansfiD@bf284e27ed8d49cf9a440a443619bccc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Percy Fiset,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Percy Fiset,ou=Janitorial,dc=bitwarden,dc=com", - email: "FisetP@f6d5040b88954db19f785e7761b5d419.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thea Goh,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Thea Goh,ou=Human Resources,dc=bitwarden,dc=com", - email: "GohT@34ad93f9a66546aaaf62d8eecc06145c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evanne Twiss,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Evanne Twiss,ou=Product Testing,dc=bitwarden,dc=com", - email: "TwissE@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Evaleen Ulrich,ou=Payroll,dc=bitwarden,dc=com", - email: "UlrichE@49b6f96ca444413a876834c561f501a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opaline Bayno,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Opaline Bayno,ou=Management,dc=bitwarden,dc=com", - email: "BaynoO@1f78d8536b924f6f89f5b50f4dff308b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delbert Hodgens,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Delbert Hodgens,ou=Payroll,dc=bitwarden,dc=com", - email: "HodgensD@583cd3a2f23946078680619fff6a08b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Stefania Gnaedinger,ou=Product Development,dc=bitwarden,dc=com", - email: "GnaedinS@74ad719f3ca94101b51f4a4b5749fe0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antonio Ide,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Antonio Ide,ou=Product Testing,dc=bitwarden,dc=com", - email: "IdeA@85bdf0f9c9734501b6e6cb120b7e80db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Margarethe Shigemura,ou=Payroll,dc=bitwarden,dc=com", - email: "ShigemuM@4281cc0a8ccb4f14858483f470a527dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berget Feil,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Berget Feil,ou=Product Testing,dc=bitwarden,dc=com", - email: "FeilB@402d7992fc8d4f0abdb7612e07362a4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matty Danielak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Matty Danielak,ou=Janitorial,dc=bitwarden,dc=com", - email: "DanielaM@59d0d0528b8d43efbf3f6b95ae91b41d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prafula Stasney,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Prafula Stasney,ou=Management,dc=bitwarden,dc=com", - email: "StasneyP@ac204890645b433e960754931ad42c93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eyk Bradford,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Eyk Bradford,ou=Peons,dc=bitwarden,dc=com", - email: "BradforE@a46d7fc185d9438fa2de39ef299037ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Della Barbe,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Della Barbe,ou=Management,dc=bitwarden,dc=com", - email: "BarbeD@78bde8bce82c4d1dbca4b21bf7784813.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darelle Waid,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Darelle Waid,ou=Product Development,dc=bitwarden,dc=com", - email: "WaidD@70e5048368bb463a909414f19d29543c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dino Farren,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dino Farren,ou=Human Resources,dc=bitwarden,dc=com", - email: "FarrenD@aee41a45245c488583a4e60c217e30cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Elwyn MyersPillsworth,ou=Janitorial,dc=bitwarden,dc=com", - email: "MyersPiE@d4d56842eb064bd38446a254d77ceab5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruth Chouinard,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ruth Chouinard,ou=Peons,dc=bitwarden,dc=com", - email: "ChouinaR@468946285b4b4bacab978eabc38e3750.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiina Averette,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tiina Averette,ou=Product Development,dc=bitwarden,dc=com", - email: "AverettT@42f6c709ced54560a282482057eafc53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meghann Marasco,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Meghann Marasco,ou=Product Testing,dc=bitwarden,dc=com", - email: "MarascoM@b4a96c186a084a79b91245984247afc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gertrudis Husarewych,ou=Product Testing,dc=bitwarden,dc=com", - email: "HusarewG@396f50164cb54f9b8cdc5d4d56de2e49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnella Chona,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Agnella Chona,ou=Management,dc=bitwarden,dc=com", - email: "ChonaA@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olimpia Stetter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Olimpia Stetter,ou=Product Development,dc=bitwarden,dc=com", - email: "StetterO@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zea Hoadley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Zea Hoadley,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoadleyZ@b22ff28e3c9d44f9a2be9fd304adde71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanu Constantinides,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kanu Constantinides,ou=Management,dc=bitwarden,dc=com", - email: "ConstanK@38dcec66f26c4456ab9d677c65296ef1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Priti Hummerston,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Priti Hummerston,ou=Product Development,dc=bitwarden,dc=com", - email: "HummersP@f4470991699244448d6b8bb8de6893c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jacalyn Brasset,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrassetJ@50b38e0ffb6e4939890621a0511935ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siobhan Duffney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Siobhan Duffney,ou=Product Development,dc=bitwarden,dc=com", - email: "DuffneyS@d143e10394af44668765922189bff89a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KaiWai Greenberg,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=KaiWai Greenberg,ou=Management,dc=bitwarden,dc=com", - email: "GreenbeK@2fe559ef1909460788a7965dfb6d63bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phyllys Relations,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Phyllys Relations,ou=Product Development,dc=bitwarden,dc=com", - email: "RelatioP@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sigrid Griffith,ou=Janitorial,dc=bitwarden,dc=com", - email: "GriffitS@12c627d4150246c09e4556d8871e3971.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Onette Erwin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Onette Erwin,ou=Administrative,dc=bitwarden,dc=com", - email: "ErwinO@901564204f174d52bee3bff189fa1964.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micheal Threader,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Micheal Threader,ou=Peons,dc=bitwarden,dc=com", - email: "ThreadeM@81539b6d10a24d8ca67f1fd08a3e12b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ihor Barnwell,ou=Human Resources,dc=bitwarden,dc=com", - email: "BarnwelI@01ea25f91f69450da0e6e08e522d6866.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melitta Teacher,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melitta Teacher,ou=Management,dc=bitwarden,dc=com", - email: "TeacherM@2c23fea190c640299f3fdc976ce4b7f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francesca Spinks,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Francesca Spinks,ou=Product Testing,dc=bitwarden,dc=com", - email: "SpinksF@ae35c1a0907348c0bfc6c98f95d0d043.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kippie Genova,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kippie Genova,ou=Human Resources,dc=bitwarden,dc=com", - email: "GenovaK@02024d9597e14220ab6fb23c71480154.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=My Geuder,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=My Geuder,ou=Payroll,dc=bitwarden,dc=com", - email: "GeuderM@98dbc014137a4380b5fb79eadc342c6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corene Goldman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Corene Goldman,ou=Janitorial,dc=bitwarden,dc=com", - email: "GoldmanC@41979f975e5b4df39d8af2a5899b3c86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bea Shanahan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bea Shanahan,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShanahaB@785fa08a549c473b918f799d10771836.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adah Simzer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Adah Simzer,ou=Payroll,dc=bitwarden,dc=com", - email: "SimzerA@fac421ca650e46139878bbd5f7498e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minnesota Safah,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Minnesota Safah,ou=Administrative,dc=bitwarden,dc=com", - email: "SafahM@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perrine Ketkar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Perrine Ketkar,ou=Peons,dc=bitwarden,dc=com", - email: "KetkarP@4f7f458ba85b4c42a1412d24897cf2b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jilly Kwok,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jilly Kwok,ou=Product Development,dc=bitwarden,dc=com", - email: "KwokJ@877dbf1e095f477dbff1ca10ebea40c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gwynith Cemensky,ou=Product Testing,dc=bitwarden,dc=com", - email: "CemenskG@ca5f8fc3a5274b669733a8f1eb35b88b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lucinda Elliott,ou=Human Resources,dc=bitwarden,dc=com", - email: "ElliottL@321b01a1b92242e68a892ee12821e529.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharona Lunde,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sharona Lunde,ou=Human Resources,dc=bitwarden,dc=com", - email: "LundeS@d6b3231dbb434132911ed9c9e37e3901.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynnette Juskevicius,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lynnette Juskevicius,ou=Management,dc=bitwarden,dc=com", - email: "JuskeviL@87501b64e5644d78a747c4f01175b74a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PeyKee Gunther,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=PeyKee Gunther,ou=Administrative,dc=bitwarden,dc=com", - email: "GuntherP@5627b6b1b02646ec88c596099b169466.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Howden LaBauve,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Howden LaBauve,ou=Payroll,dc=bitwarden,dc=com", - email: "LaBauveH@dcc9b9b7a7cb4f758bc0f2bd3592b966.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dana Linaugh,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dana Linaugh,ou=Human Resources,dc=bitwarden,dc=com", - email: "LinaughD@073d9b40128d435294a7cce9001bca7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gnni Schafer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gnni Schafer,ou=Product Development,dc=bitwarden,dc=com", - email: "SchaferG@eea3ea553d4b4f9dacda1e1f188882a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Callida Tropea,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Callida Tropea,ou=Management,dc=bitwarden,dc=com", - email: "TropeaC@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Georgeta Cholewinski,ou=Product Testing,dc=bitwarden,dc=com", - email: "CholewiG@30477bd611094e598c75e08386158998.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amara Zisu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Amara Zisu,ou=Product Development,dc=bitwarden,dc=com", - email: "ZisuA@20be5fad1efc427e98e47e76a75c40bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delly Macklem,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Delly Macklem,ou=Product Development,dc=bitwarden,dc=com", - email: "MacklemD@e18d08f509ac4ed1bf7a2094201ce8f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faustina Yedema,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Faustina Yedema,ou=Payroll,dc=bitwarden,dc=com", - email: "YedemaF@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annamaria Handforth,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annamaria Handforth,ou=Administrative,dc=bitwarden,dc=com", - email: "HandforA@ab4d4d42eb2d484cb7a730409517902e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Korney Gehm,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Korney Gehm,ou=Product Testing,dc=bitwarden,dc=com", - email: "GehmK@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Archie Klimon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Archie Klimon,ou=Payroll,dc=bitwarden,dc=com", - email: "KlimonA@4afa8343c8fe499bbf69af9cea3fa9e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angela Holland,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Angela Holland,ou=Product Development,dc=bitwarden,dc=com", - email: "HollandA@f22f9789190b4636a01e59d38d771067.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcellina Clairmont,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marcellina Clairmont,ou=Peons,dc=bitwarden,dc=com", - email: "ClairmoM@12b0a668d23742f7b436e1fcd1a16efa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristien Yamamoto,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kristien Yamamoto,ou=Peons,dc=bitwarden,dc=com", - email: "YamamotK@41b0e973148e4596b195108aeda208de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nayan Simcox,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nayan Simcox,ou=Payroll,dc=bitwarden,dc=com", - email: "SimcoxN@5d8927d9a18847879f1969c651cc8b72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celisse Draier,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Celisse Draier,ou=Product Development,dc=bitwarden,dc=com", - email: "DraierC@f30a055d94234aafa3b01325963e42c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matty Vasile,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Matty Vasile,ou=Payroll,dc=bitwarden,dc=com", - email: "VasileM@f9e13296819e4d139b7b490c05eac7c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WingKi McClain,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=WingKi McClain,ou=Peons,dc=bitwarden,dc=com", - email: "McClainW@3519a5fee4394ec4a1319941ad8ff05d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shantee Hounsell,ou=Human Resources,dc=bitwarden,dc=com", - email: "HounselS@59faf706c5aa46e79492393874607cdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Konrad Tsalikis,ou=Administrative,dc=bitwarden,dc=com", - email: "TsalikiK@0babc297aa7744eb886478ba408ffef6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shutterbug Ta,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shutterbug Ta,ou=Product Development,dc=bitwarden,dc=com", - email: "TaS@d099b87b6d4c4f55806f0c8cf8dbfe18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Les Oreilly,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Les Oreilly,ou=Administrative,dc=bitwarden,dc=com", - email: "OreillyL@bf82bd280911404494f15486e63577cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veen Cawley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Veen Cawley,ou=Management,dc=bitwarden,dc=com", - email: "CawleyV@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stergios Romanowski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Stergios Romanowski,ou=Peons,dc=bitwarden,dc=com", - email: "RomanowS@59db13ba21bf46b29057d72100d263ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shyam Hipson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shyam Hipson,ou=Product Development,dc=bitwarden,dc=com", - email: "HipsonS@a21f8badf17c4b4dbce73be0734b9d87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carley Dal,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carley Dal,ou=Human Resources,dc=bitwarden,dc=com", - email: "DalC@ad4942d8c3c341119939c679c4dae154.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chickie Dyna,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Chickie Dyna,ou=Management,dc=bitwarden,dc=com", - email: "DynaC@822da1d370d045aaadf5490626c311f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Roxanne Wesselow,ou=Product Testing,dc=bitwarden,dc=com", - email: "WesseloR@56a9610e57554b138eb14e9d709cfdd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norstar Bouick,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Norstar Bouick,ou=Product Development,dc=bitwarden,dc=com", - email: "BouickN@7eb3446796544055a8625bc9cff5db0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kapsch Bitton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kapsch Bitton,ou=Product Development,dc=bitwarden,dc=com", - email: "BittonK@bd7ed784957343358f080e4bf8b3e472.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoko Feder,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Yoko Feder,ou=Administrative,dc=bitwarden,dc=com", - email: "FederY@edf99b25a1c649749aeb3745c7ce07a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rebekkah Pelot,ou=Payroll,dc=bitwarden,dc=com", - email: "PelotR@402d43c51a4446beb3be4fb34fdb725c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eugine Werick,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Eugine Werick,ou=Human Resources,dc=bitwarden,dc=com", - email: "WerickE@5466e2cfe74b454ca4ce7f08783c2376.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marley Newcomb,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marley Newcomb,ou=Product Testing,dc=bitwarden,dc=com", - email: "NewcombM@39afc87e8d7642cab0986ce57dd64310.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zhanna Lyons,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zhanna Lyons,ou=Management,dc=bitwarden,dc=com", - email: "LyonsZ@9eb282188d9c470a820f560ba43cb34c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desire Adam,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Desire Adam,ou=Administrative,dc=bitwarden,dc=com", - email: "AdamD@2fc71ac565f5494c88d9a22e99c366a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joni Dhir,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Joni Dhir,ou=Payroll,dc=bitwarden,dc=com", - email: "DhirJ@4e3272dfa10d49cf921e5550808b516c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quyen Boyle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Quyen Boyle,ou=Product Development,dc=bitwarden,dc=com", - email: "BoyleQ@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ailee ODwyer,ou=Janitorial,dc=bitwarden,dc=com", - email: "ODwyerA@ed09d6145c6443eda98f0394646537ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fallon Lavigne,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fallon Lavigne,ou=Administrative,dc=bitwarden,dc=com", - email: "LavigneF@0798984bbb0c4179a1769a476df089f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aleda Kato,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aleda Kato,ou=Peons,dc=bitwarden,dc=com", - email: "KatoA@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristine Musser,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cristine Musser,ou=Peons,dc=bitwarden,dc=com", - email: "MusserC@021f182578104bf484110ac6631b5efa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marcelia OHeocha,ou=Product Development,dc=bitwarden,dc=com", - email: "OHeochaM@2508acc0090a42e782d940d4d8f7e99a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shantee Tsao,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shantee Tsao,ou=Administrative,dc=bitwarden,dc=com", - email: "TsaoS@7134af8f58034ab1b6da056722567020.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phu Krowlek,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Phu Krowlek,ou=Human Resources,dc=bitwarden,dc=com", - email: "KrowlekP@9738e422f0a74193a7888d326771c9bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estrella Infocenter,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Estrella Infocenter,ou=Payroll,dc=bitwarden,dc=com", - email: "InfocenE@3e88ff34a4594358ba2c438e74d99277.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jeana Groetsema,ou=Product Testing,dc=bitwarden,dc=com", - email: "GroetseJ@49e173c530254128b2fa7a55a9ce39c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steinar Mathur,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Steinar Mathur,ou=Product Development,dc=bitwarden,dc=com", - email: "MathurS@4c46c0ccb3eb4998b4cbc47cae874ac9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rchisn Reiser,ou=Product Testing,dc=bitwarden,dc=com", - email: "ReiserR@82cd13218ce14af8a30de1517f768932.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jayme Shemwell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jayme Shemwell,ou=Payroll,dc=bitwarden,dc=com", - email: "ShemwelJ@d1f70e2814da436e8e729474e3ae0ca1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Masha McGinn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Masha McGinn,ou=Administrative,dc=bitwarden,dc=com", - email: "McGinnM@7caae22d0df6421e81f8b88b910cd3d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=PeyKee McMonagle,ou=Janitorial,dc=bitwarden,dc=com", - email: "McMonagP@8d9767327a3c45ac99e8c87493980bd0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Astrix Tiller,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Astrix Tiller,ou=Peons,dc=bitwarden,dc=com", - email: "TillerA@fc7406e3c8e34fce9e4288bfe13798e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlan Fadel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Arlan Fadel,ou=Management,dc=bitwarden,dc=com", - email: "FadelA@f3bc4de2ab8548c1a2d64ce3115e2db5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=JulieAnne Wardrop,ou=Janitorial,dc=bitwarden,dc=com", - email: "WardropJ@7731926b8eba477c82aacfea38c5fc13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siouxie Norgaard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Siouxie Norgaard,ou=Management,dc=bitwarden,dc=com", - email: "NorgaarS@ec668ee22c6346d2882aef8dfcb8696b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tiffanie DeFrancesco,ou=Administrative,dc=bitwarden,dc=com", - email: "DeFrancT@cf0ec0264ca64fe98e19bc5f405333ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phaedra Mavrou,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Phaedra Mavrou,ou=Peons,dc=bitwarden,dc=com", - email: "MavrouP@c88c546a41dd403183cf489cf47f2715.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thang Kerr,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Thang Kerr,ou=Peons,dc=bitwarden,dc=com", - email: "KerrT@999c25847f9849ce9a6f746d005bddef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helsa Cau,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Helsa Cau,ou=Management,dc=bitwarden,dc=com", - email: "CauH@cc71e71454d64842b764308435f8b9ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyana Tchir,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dyana Tchir,ou=Management,dc=bitwarden,dc=com", - email: "TchirD@7b42a22455f94b9392fcbdbd3455eba3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elga Hrenyk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elga Hrenyk,ou=Payroll,dc=bitwarden,dc=com", - email: "HrenykE@348e203028124b55ac20e45b299ae842.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brooks Helgeland,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brooks Helgeland,ou=Management,dc=bitwarden,dc=com", - email: "HelgelaB@59d0d0528b8d43efbf3f6b95ae91b41d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toshi Ircmer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Toshi Ircmer,ou=Administrative,dc=bitwarden,dc=com", - email: "IrcmerT@0ae37e3d8fa14ddaa3b8f54015598091.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rizzo Ohmaru,ou=Peons,dc=bitwarden,dc=com", - email: "OhmaruR@1726f5bfacd044bf871463e64c567d5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yosuf Diaconu,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yosuf Diaconu,ou=Peons,dc=bitwarden,dc=com", - email: "DiaconuY@2f0e638056364f0ebcf3676022d443c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nomi Kielstra,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nomi Kielstra,ou=Administrative,dc=bitwarden,dc=com", - email: "KielstrN@e5a014d6d0a246bab1688f8742395120.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolyn Sanche,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Carolyn Sanche,ou=Peons,dc=bitwarden,dc=com", - email: "SancheC@7670182abb394f41a5633ad118cf9427.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marj Anker,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marj Anker,ou=Janitorial,dc=bitwarden,dc=com", - email: "AnkerM@10c7f32d495b44929e9653824155ab35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agneta Gundlach,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Agneta Gundlach,ou=Peons,dc=bitwarden,dc=com", - email: "GundlacA@51229efcbb5c42119b299e0a2768aeae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeffery Pafilis,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jeffery Pafilis,ou=Management,dc=bitwarden,dc=com", - email: "PafilisJ@c4e315e8ab0343648ac206c0fcb55300.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isoft Buchanan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Isoft Buchanan,ou=Administrative,dc=bitwarden,dc=com", - email: "BuchanaI@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassaundra Gerenser,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cassaundra Gerenser,ou=Management,dc=bitwarden,dc=com", - email: "GerenseC@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Arlyn Rourk,ou=Human Resources,dc=bitwarden,dc=com", - email: "RourkA@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roberta Rorie,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Roberta Rorie,ou=Product Testing,dc=bitwarden,dc=com", - email: "RorieR@42dc5c7bd0a9441fa8defd9c17a20190.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bliss Fahey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bliss Fahey,ou=Product Development,dc=bitwarden,dc=com", - email: "FaheyB@60bda5017d9d4f298f75b11882690433.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pivert JodoinStJean,ou=Peons,dc=bitwarden,dc=com", - email: "JodoinSP@98bc3f5d71914c17aba390cbd1fb2317.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hafeezah Bombardier,ou=Human Resources,dc=bitwarden,dc=com", - email: "BombardH@de898a326d21476c9afc54d7a723d91b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wargnier Deployment,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wargnier Deployment,ou=Management,dc=bitwarden,dc=com", - email: "DeploymW@22acfb768c09448b9b9c3d7bd8e3a389.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orsa Brunsting,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Orsa Brunsting,ou=Peons,dc=bitwarden,dc=com", - email: "BrunstiO@484147050d834a1da350db4c28e9f45b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gudrun Yassa,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gudrun Yassa,ou=Administrative,dc=bitwarden,dc=com", - email: "YassaG@217ec5edfeed4e93a10ae2e601d2972a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jaquenette Nielson,ou=Janitorial,dc=bitwarden,dc=com", - email: "NielsonJ@6eea686c67fb4ec88a09f208c487f7be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=AntonPhuoc Tyndall,ou=Management,dc=bitwarden,dc=com", - email: "TyndallA@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Damon Bradbury,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Damon Bradbury,ou=Product Testing,dc=bitwarden,dc=com", - email: "BradburD@c5677bf046324d648a7018e163260369.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sheree ProgramOffice,ou=Peons,dc=bitwarden,dc=com", - email: "ProgramS@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Onette Garguilo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Onette Garguilo,ou=Peons,dc=bitwarden,dc=com", - email: "GarguilO@f721dbef06364385bb5bd030d8447566.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meridel Dahl,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Meridel Dahl,ou=Management,dc=bitwarden,dc=com", - email: "DahlM@3eadf1668d9548a8a0a9a2df5d767d49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clem Gallagher,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Clem Gallagher,ou=Human Resources,dc=bitwarden,dc=com", - email: "GallaghC@283ec365fe654c3fba136ca1c0a944d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lanni Totti,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lanni Totti,ou=Janitorial,dc=bitwarden,dc=com", - email: "TottiL@42ad681604354ebd8ba7299c92bab329.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robertson Soh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Robertson Soh,ou=Product Development,dc=bitwarden,dc=com", - email: "SohR@790b795bf7b24cf6af4ced64b738e341.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maegan Nakamura,ou=Human Resources,dc=bitwarden,dc=com", - email: "NakamurM@753b48fb7ffe43dd87736153647baa4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pavia Costen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pavia Costen,ou=Administrative,dc=bitwarden,dc=com", - email: "CostenP@8187109cbba7441ab35098b49dbd1de9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karyn Holz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Karyn Holz,ou=Administrative,dc=bitwarden,dc=com", - email: "HolzK@bb08aadb4193484cae12aab63b02863d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ikram Thiel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ikram Thiel,ou=Payroll,dc=bitwarden,dc=com", - email: "ThielI@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alkarim Hiraki,ou=Administrative,dc=bitwarden,dc=com", - email: "HirakiA@6b01ea5296ae43ddbca168736ac18b91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Andrzej Sylvie,ou=Janitorial,dc=bitwarden,dc=com", - email: "SylvieA@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ladan Fabrizio,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ladan Fabrizio,ou=Peons,dc=bitwarden,dc=com", - email: "FabriziL@a2ce9e15b99944e89da6ac3d6191a31a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leeanne Credille,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Leeanne Credille,ou=Product Testing,dc=bitwarden,dc=com", - email: "CredillL@e8711dcc34d6494b9af82b382ecdea7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Augusto Aguiar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Augusto Aguiar,ou=Management,dc=bitwarden,dc=com", - email: "AguiarA@4b32479366c74b46b2b68466f59bae46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gayl IBNTAS,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gayl IBNTAS,ou=Peons,dc=bitwarden,dc=com", - email: "IBNTASG@f7752e330a264f1884c22f0f347f41b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Painterson Watkinson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Painterson Watkinson,ou=Administrative,dc=bitwarden,dc=com", - email: "WatkinsP@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jagjit Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", - email: "RadovniJ@c7ac29b8c7544beabc5b51db5b6a9b3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kieran Copley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kieran Copley,ou=Product Testing,dc=bitwarden,dc=com", - email: "CopleyK@6ba6fd011294489da26fcecac46b96da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othilie Sconzo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Othilie Sconzo,ou=Peons,dc=bitwarden,dc=com", - email: "SconzoO@726a27d8fd0d444e9b0592ed813a614a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ottawa Schieber,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchiebeO@d8522133168344ce827a4130e7d16436.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raju Sellars,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Raju Sellars,ou=Payroll,dc=bitwarden,dc=com", - email: "SellarsR@a3f707626d6147889e378c357f0c4921.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carly Kammerer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carly Kammerer,ou=Janitorial,dc=bitwarden,dc=com", - email: "KammereC@bd86eafb5d8348f2aca6e7dd76b8a0a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dian Rhoads,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dian Rhoads,ou=Administrative,dc=bitwarden,dc=com", - email: "RhoadsD@4288404d8e88496eb1da71471cd4a940.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Utpala Weldon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Utpala Weldon,ou=Product Testing,dc=bitwarden,dc=com", - email: "WeldonU@c99bb7173b5043c2a474937e225abb28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Elva JodoinStJean,ou=Product Development,dc=bitwarden,dc=com", - email: "JodoinSE@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thornton McDermott,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Thornton McDermott,ou=Product Development,dc=bitwarden,dc=com", - email: "McDermoT@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juditha Shirai,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Juditha Shirai,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShiraiJ@95965185925a4793bf90f83b6e0b2310.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nijen Nevardauskis,ou=Janitorial,dc=bitwarden,dc=com", - email: "NevardaN@341c2a7aa79d4aa1aa97b332acebc155.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lauri Ramakesavan,ou=Janitorial,dc=bitwarden,dc=com", - email: "RamakesL@c9e737b9c70b4882afff21061f6d5241.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wini Flynn,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wini Flynn,ou=Human Resources,dc=bitwarden,dc=com", - email: "FlynnW@97e455d14de64fb1ac625485af466bd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Open Simhan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Open Simhan,ou=Product Testing,dc=bitwarden,dc=com", - email: "SimhanO@72cbf2bb6ee5447dbb61d53b7d5af3cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maala Ufomadu,ou=Janitorial,dc=bitwarden,dc=com", - email: "UfomaduM@3dedccc8ea03468b9d15ac11ca05c230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adelina Grigsby,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Adelina Grigsby,ou=Management,dc=bitwarden,dc=com", - email: "GrigsbyA@2a76555db2804fcd904317c1fab7d4f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Imtaz Sanderson,ou=Product Testing,dc=bitwarden,dc=com", - email: "SandersI@01d981966ccd4e18a1de23880ee9b91c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yolanda Pendergrass,ou=Payroll,dc=bitwarden,dc=com", - email: "PendergY@b992faaca776477fbca286ae42f6aa1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Woon Gillis,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Woon Gillis,ou=Product Development,dc=bitwarden,dc=com", - email: "GillisW@00fb40554c314de29c0898550e0a0fe9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Remi Lillis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Remi Lillis,ou=Payroll,dc=bitwarden,dc=com", - email: "LillisR@ca687c982977464ab0f83bbb31a64113.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dagmar Niles,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dagmar Niles,ou=Product Development,dc=bitwarden,dc=com", - email: "NilesD@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ramakant Majmudar,ou=Human Resources,dc=bitwarden,dc=com", - email: "MajmudaR@a90573a98b164929a489e62b8b0a18ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geralene Groleau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Geralene Groleau,ou=Peons,dc=bitwarden,dc=com", - email: "GroleauG@1390fe347bf84da5b12ed2e7e03c14a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dhansukh Gavidia,ou=Product Development,dc=bitwarden,dc=com", - email: "GavidiaD@4c99bc2b2d23465586f952873471fdbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colm Katsouras,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Colm Katsouras,ou=Peons,dc=bitwarden,dc=com", - email: "KatsourC@376885ebe2864fefa119c1511a764692.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ermengarde Thedford,ou=Payroll,dc=bitwarden,dc=com", - email: "ThedforE@8f64f66384734fcda6f7276e237047aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caroline Darou,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Caroline Darou,ou=Management,dc=bitwarden,dc=com", - email: "DarouC@5d0b867d32fb46e6b508ea727cf0a4d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shaylyn Jubainville,ou=Product Development,dc=bitwarden,dc=com", - email: "JubainvS@fbdea75273fa4221afce18ec5a7520e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wai Aldhizer,ou=Janitorial,dc=bitwarden,dc=com", - email: "AldhizeW@237fc261a1ea4cd0aba9b13fec2d1761.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Stephen Fedoruk,ou=Payroll,dc=bitwarden,dc=com", - email: "FedorukS@08cd8d018d96499180ed835a506acb7e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maegan Rafter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maegan Rafter,ou=Product Development,dc=bitwarden,dc=com", - email: "RafterM@fc7648c9712348689a0bc53cb789244a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margery Buckalew,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Margery Buckalew,ou=Janitorial,dc=bitwarden,dc=com", - email: "BuckaleM@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Oliy Rigdon,ou=Janitorial,dc=bitwarden,dc=com", - email: "RigdonO@54b7c6b9ae32434d95317388edf7be04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ronan PCBOARDS,ou=Product Development,dc=bitwarden,dc=com", - email: "PCBOARDR@4325337fb43b4d3eaab4c085e23330be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marillin Rigsbee,ou=Product Testing,dc=bitwarden,dc=com", - email: "RigsbeeM@fe393581310b47dd94b5b76f5b2a4efb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ariel Dillingham,ou=Product Testing,dc=bitwarden,dc=com", - email: "DillingA@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charleen Willison,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Charleen Willison,ou=Human Resources,dc=bitwarden,dc=com", - email: "WillisoC@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tatsuya Aguilar,ou=Product Development,dc=bitwarden,dc=com", - email: "AguilarT@a083ce3425664c2eb55b289d24dc07f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Basia Ouellette,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Basia Ouellette,ou=Management,dc=bitwarden,dc=com", - email: "OuelletB@ef406855f5f845aab9324d8e46753d6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Latashia Ridgeway,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Latashia Ridgeway,ou=Peons,dc=bitwarden,dc=com", - email: "RidgewaL@c6f2558da4e64d1a92ecfa7046888845.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhodia SOS,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rhodia SOS,ou=Administrative,dc=bitwarden,dc=com", - email: "SOSR@8148a52d859b468a9dde3ee8b81e013b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WaiHung Kan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=WaiHung Kan,ou=Payroll,dc=bitwarden,dc=com", - email: "KanW@37ef93fb374e4550b60ee55424a070b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ehab Gidaro,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ehab Gidaro,ou=Administrative,dc=bitwarden,dc=com", - email: "GidaroE@73187767f4034534bac7d61018b5ad2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Almeda Barstow,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Almeda Barstow,ou=Peons,dc=bitwarden,dc=com", - email: "BarstowA@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hernan Newbold,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hernan Newbold,ou=Payroll,dc=bitwarden,dc=com", - email: "NewboldH@7d0d760c8b9f490e8a67dd2b61410f6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elonore Lorenc,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Elonore Lorenc,ou=Product Development,dc=bitwarden,dc=com", - email: "LorencE@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melva Dingle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Melva Dingle,ou=Product Development,dc=bitwarden,dc=com", - email: "DingleM@155d92c95e034751a1d33e414cb11391.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janka Gorfine,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Janka Gorfine,ou=Peons,dc=bitwarden,dc=com", - email: "GorfineJ@daeb41514d9e4eb79c108728fb0c78a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carleen Natiuk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carleen Natiuk,ou=Management,dc=bitwarden,dc=com", - email: "NatiukC@8d16b23b37bd48708a820fa3c8c7f569.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dimitra Prokes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dimitra Prokes,ou=Management,dc=bitwarden,dc=com", - email: "ProkesD@f32d0f90ff4e4d909353481cc0066b39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Camilla Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", - email: "FurdoonC@f9df83fba0c1456c81bb2a2686d5451d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WaiMan Sinha,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=WaiMan Sinha,ou=Peons,dc=bitwarden,dc=com", - email: "SinhaW@83e997d320394a809a91b79c1caaf132.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Therese Nikfarjam,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Therese Nikfarjam,ou=Peons,dc=bitwarden,dc=com", - email: "NikfarjT@1bc1409c08584b65b922db79a968ffbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geer Lamonde,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Geer Lamonde,ou=Product Development,dc=bitwarden,dc=com", - email: "LamondeG@7ba1c56ab1954a0f89db17b556f5c856.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsae Polder,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chelsae Polder,ou=Janitorial,dc=bitwarden,dc=com", - email: "PolderC@646d6f014bf44c5484623c7f1ed699a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shuji Pien,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shuji Pien,ou=Peons,dc=bitwarden,dc=com", - email: "PienS@ea00f070c7ac4d9f845a3fd60ca8fef9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annet Rege,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annet Rege,ou=Administrative,dc=bitwarden,dc=com", - email: "RegeA@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellen Vertolli,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ellen Vertolli,ou=Management,dc=bitwarden,dc=com", - email: "VertollE@7b2671f4e02946de91c9978d935e087b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zandra Belk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zandra Belk,ou=Management,dc=bitwarden,dc=com", - email: "BelkZ@3e63d8e6be204b07ac7dd7943bdd9def.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milan Shu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Milan Shu,ou=Administrative,dc=bitwarden,dc=com", - email: "ShuM@afe3f29824c043148d9eb0e4285bb233.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lubomir Carver,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lubomir Carver,ou=Peons,dc=bitwarden,dc=com", - email: "CarverL@36afbe0488ac4cbf861f3b2611d891cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kieron Remrey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kieron Remrey,ou=Payroll,dc=bitwarden,dc=com", - email: "RemreyK@fd7e4056685f4c789c5948839975ec7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frayda Urquhart,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Frayda Urquhart,ou=Administrative,dc=bitwarden,dc=com", - email: "UrquharF@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kat Torok,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kat Torok,ou=Human Resources,dc=bitwarden,dc=com", - email: "TorokK@c90beda51728416da468419570974ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Consuelo Dowell,ou=Janitorial,dc=bitwarden,dc=com", - email: "DowellC@0e32fee851df4554931f75bb97b68b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selina Sauder,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Selina Sauder,ou=Administrative,dc=bitwarden,dc=com", - email: "SauderS@75dfcd3692074ff18248aebdf998f81c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joshi Wery,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joshi Wery,ou=Administrative,dc=bitwarden,dc=com", - email: "WeryJ@d4ec4569fe8f4ce58eb7942aa58953d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corilla Carey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Corilla Carey,ou=Administrative,dc=bitwarden,dc=com", - email: "CareyC@eff1fc06cb994f6c9978051d61306d1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devon Patchcor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Devon Patchcor,ou=Peons,dc=bitwarden,dc=com", - email: "PatchcoD@b89ab013f5694b158e7600fe86a66e9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thor Crompton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Thor Crompton,ou=Janitorial,dc=bitwarden,dc=com", - email: "CromptoT@c73dbaa0e70c411fa0d04bf8fe86f3a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Saleem Postavsky,ou=Janitorial,dc=bitwarden,dc=com", - email: "PostavsS@a258cd6e16144a7c8bd55e96b2e4c725.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sallee Demone,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sallee Demone,ou=Janitorial,dc=bitwarden,dc=com", - email: "DemoneS@8c7907603b764cf9aa63ab1260b542bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patsy Hanley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Patsy Hanley,ou=Peons,dc=bitwarden,dc=com", - email: "HanleyP@09c5f5e221b74d1bbb06bb0da6fd1e35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lily Sturdivant,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lily Sturdivant,ou=Management,dc=bitwarden,dc=com", - email: "SturdivL@19227d32d4ac4d3c8783acb96838362f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Howie Howarth,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Howie Howarth,ou=Product Development,dc=bitwarden,dc=com", - email: "HowarthH@6c6664d2385d43519ebb52ff761aba92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jo Tropeano,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jo Tropeano,ou=Administrative,dc=bitwarden,dc=com", - email: "TropeanJ@9144995fa4c649da9d774d2a93d230da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Howard Acs,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Howard Acs,ou=Payroll,dc=bitwarden,dc=com", - email: "AcsH@c39b1ed7de78452e9d100510b4188a2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Liping Kulikowsky,ou=Product Testing,dc=bitwarden,dc=com", - email: "KulikowL@63e408cfc15a40c4ba49c3905036c334.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Otakar Carella,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Otakar Carella,ou=Janitorial,dc=bitwarden,dc=com", - email: "CarellaO@d375d17b83f44fc4be3924ad0f54b388.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Digby Papajanis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Digby Papajanis,ou=Peons,dc=bitwarden,dc=com", - email: "PapajanD@0fefcde04743447b85983e188aaec0ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ronnica Darcy,ou=Product Testing,dc=bitwarden,dc=com", - email: "DarcyR@caadb1299c604b6bb5f063bd78fb2a7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Courtenay Savanh,ou=Human Resources,dc=bitwarden,dc=com", - email: "SavanhC@377af438e28144f198471c633c478745.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Deeyn Jonkheer,ou=Product Testing,dc=bitwarden,dc=com", - email: "JonkheeD@5075a8f50d3242c58f81fcf47cd402b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pansy VanBenthem,ou=Product Testing,dc=bitwarden,dc=com", - email: "VanBentP@87de5470340f4f1ebdb1d5b65c157439.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trixy Grewal,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Trixy Grewal,ou=Janitorial,dc=bitwarden,dc=com", - email: "GrewalT@4c863b247c76467d94256795e24354de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sami Huguin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sami Huguin,ou=Product Development,dc=bitwarden,dc=com", - email: "HuguinS@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kui Mulero,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kui Mulero,ou=Administrative,dc=bitwarden,dc=com", - email: "MuleroK@4026de828f5c4d2faaf1a5de089b9c0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tyne McHarg,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tyne McHarg,ou=Product Development,dc=bitwarden,dc=com", - email: "McHargT@fd2e8792325547b4a50dd52cda4bc63f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constantin Harkness,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Constantin Harkness,ou=Product Development,dc=bitwarden,dc=com", - email: "HarknesC@57025360fa6449ed9005168a07164ed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Galen Mariani,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Galen Mariani,ou=Human Resources,dc=bitwarden,dc=com", - email: "MarianiG@e772b0160cc74084b5086dc4bf71c633.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dolores Lacosse,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dolores Lacosse,ou=Payroll,dc=bitwarden,dc=com", - email: "LacosseD@790e9575d19b49f797a1e46c053b138e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vradmin Aasen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vradmin Aasen,ou=Peons,dc=bitwarden,dc=com", - email: "AasenV@27d8375532a543b0aa95f943636664d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roseline Revis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Roseline Revis,ou=Janitorial,dc=bitwarden,dc=com", - email: "RevisR@d470ef4083a54c788156afbe1d7bed68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eiji Tel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eiji Tel,ou=Administrative,dc=bitwarden,dc=com", - email: "TelE@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariesara Reichman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mariesara Reichman,ou=Product Development,dc=bitwarden,dc=com", - email: "ReichmaM@1a74feecd8df4dc187b3d1f94925b995.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brunhilda Lonnman,ou=Janitorial,dc=bitwarden,dc=com", - email: "LonnmanB@aea3f0a7f67b4eaaaa82cbd9284643da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandi Bush,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sandi Bush,ou=Human Resources,dc=bitwarden,dc=com", - email: "BushS@eae6e0d3f5454385bf03afdceb5bde7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emmalynn Dai,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Emmalynn Dai,ou=Payroll,dc=bitwarden,dc=com", - email: "DaiE@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Josef Godcharles,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Josef Godcharles,ou=Human Resources,dc=bitwarden,dc=com", - email: "GodcharJ@60323e558c4a4bd4a555e49dd613a509.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tash Hurwitz,ou=Human Resources,dc=bitwarden,dc=com", - email: "HurwitzT@faecae55819d4155ab4f3e2d05dac422.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gay Ondovcik,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gay Ondovcik,ou=Administrative,dc=bitwarden,dc=com", - email: "OndovciG@6b2bbca4f311426b9d24c29f21d8799f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Beverly Sidhu,ou=Product Testing,dc=bitwarden,dc=com", - email: "SidhuB@6e76f9c1c78c4006a9e635f43ae1e33a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cad fpsched,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cad fpsched,ou=Administrative,dc=bitwarden,dc=com", - email: "fpschedC@5e72004cd5c54ab885896ad64d562293.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oscar Paris,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Oscar Paris,ou=Janitorial,dc=bitwarden,dc=com", - email: "ParisO@58b1feb535e94d39a943e5e96951c27d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chan Blumer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chan Blumer,ou=Janitorial,dc=bitwarden,dc=com", - email: "BlumerC@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Katharine Weitzel,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeitzelK@99fd889b48504677bce0dc492f7e0cf3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chabert Hawkins,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chabert Hawkins,ou=Payroll,dc=bitwarden,dc=com", - email: "HawkinsC@d356ac5b553f4400b101f5783a9cd0d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=VanKing Iskandar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=VanKing Iskandar,ou=Administrative,dc=bitwarden,dc=com", - email: "IskandaV@bbc2ed84411d4a40af49ae614b080b8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carena Toplis,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carena Toplis,ou=Product Development,dc=bitwarden,dc=com", - email: "ToplisC@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nelleke Fredette,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nelleke Fredette,ou=Payroll,dc=bitwarden,dc=com", - email: "FredettN@26874cbc58cb45a4a2a676c29fc0a053.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=HweiLing Paparella,ou=Janitorial,dc=bitwarden,dc=com", - email: "PaparelH@c463cfcdffaa4d1cb3c37acf0334ead8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shila Salyniuk,ou=Human Resources,dc=bitwarden,dc=com", - email: "SalyniuS@4d5a130ce03f416380d14b9ae188b2a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jock Ahdieh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jock Ahdieh,ou=Administrative,dc=bitwarden,dc=com", - email: "AhdiehJ@2e50781374894ea497591fcdadb28725.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ru Lindt,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ru Lindt,ou=Peons,dc=bitwarden,dc=com", - email: "LindtR@1e40aea5b4db408aa69a888aaafb737e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Klaas Boyajian,ou=Product Testing,dc=bitwarden,dc=com", - email: "BoyajiaK@8386f2764ec04b659a8fc2d330c9443a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jeffrey Stellitano,ou=Payroll,dc=bitwarden,dc=com", - email: "StellitJ@f8ab716c26494879b2465829da010f5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desiri Picard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Desiri Picard,ou=Management,dc=bitwarden,dc=com", - email: "PicardD@8396829dbd6f4494811aec04c011380c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mewa Melfi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mewa Melfi,ou=Payroll,dc=bitwarden,dc=com", - email: "MelfiM@7cfe2ffb0199421b9c038434ce9a5120.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elio Naylor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elio Naylor,ou=Peons,dc=bitwarden,dc=com", - email: "NaylorE@7fc160edec22498a9b7f16af82b6aca4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vince Adamowicz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vince Adamowicz,ou=Peons,dc=bitwarden,dc=com", - email: "AdamowiV@6c3ab4a8b99e456ba8054a647276de9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annis Emery,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Annis Emery,ou=Human Resources,dc=bitwarden,dc=com", - email: "EmeryA@a632ca3ec8844bd59c6fe3da28658b8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valma Standen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Valma Standen,ou=Product Development,dc=bitwarden,dc=com", - email: "StandenV@71c4255308d847e6b55d8184e9b3d537.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mauro Meres,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mauro Meres,ou=Product Development,dc=bitwarden,dc=com", - email: "MeresM@f74860195dfd437aa0f4072ae1ebfe76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brianne Takagi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brianne Takagi,ou=Peons,dc=bitwarden,dc=com", - email: "TakagiB@7e77b31039db4b1f99292c84f6f816dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Azra Gravely,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Azra Gravely,ou=Management,dc=bitwarden,dc=com", - email: "GravelyA@9d243e3e32d54bc397a12d4839b23572.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liza Centeno,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Liza Centeno,ou=Payroll,dc=bitwarden,dc=com", - email: "CentenoL@1ea928fc24024e4dbf51eb3081589728.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lendon Pinney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lendon Pinney,ou=Administrative,dc=bitwarden,dc=com", - email: "PinneyL@a5f5618aa6144295ac3ab97f28aa1603.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelina Naolu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Madelina Naolu,ou=Management,dc=bitwarden,dc=com", - email: "NaoluM@199586ae1c4d4a59ab291484dbf1f208.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brittan Vela,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brittan Vela,ou=Peons,dc=bitwarden,dc=com", - email: "VelaB@156df7528958433faec56aa3b7184ead.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cinnamon Kadlecik,ou=Product Development,dc=bitwarden,dc=com", - email: "KadleciC@70df15a19e614b9f9f00a61890d75319.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcos Spicer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marcos Spicer,ou=Product Development,dc=bitwarden,dc=com", - email: "SpicerM@261fb819d58341d6876f6a82736b49d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pierrette Deleon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pierrette Deleon,ou=Management,dc=bitwarden,dc=com", - email: "DeleonP@2f494a0423d24f8a8e3580abe2a5af0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darell Groth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Darell Groth,ou=Janitorial,dc=bitwarden,dc=com", - email: "GrothD@aea4d2f23326488f8ebab4665e7ef975.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Goutam Kosiorska,ou=Product Development,dc=bitwarden,dc=com", - email: "KosiorsG@5d8558331520489684cb760b329247ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathi Altman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kathi Altman,ou=Payroll,dc=bitwarden,dc=com", - email: "AltmanK@a99e1da0f5f2400991be09c17f6454e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moel Pieroway,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Moel Pieroway,ou=Janitorial,dc=bitwarden,dc=com", - email: "PierowaM@cda870670aa345148330b4790dab0c4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mildred Fansher,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mildred Fansher,ou=Product Testing,dc=bitwarden,dc=com", - email: "FansherM@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgina Hardersen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Georgina Hardersen,ou=Product Development,dc=bitwarden,dc=com", - email: "HardersG@44875ebf52f643b9a40efca5b647bdaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rasia Jakim,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rasia Jakim,ou=Product Testing,dc=bitwarden,dc=com", - email: "JakimR@3ee502270a97467c9f16bb82f0538bb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rycca Satterfield,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rycca Satterfield,ou=Peons,dc=bitwarden,dc=com", - email: "SatterfR@c385ba2c8b694dba82e626dc336023e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=ShingCheong Repeta,ou=Janitorial,dc=bitwarden,dc=com", - email: "RepetaS@1bf120076f9247a7ab75ce12810b0f67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mellisent Snuggs,ou=Administrative,dc=bitwarden,dc=com", - email: "SnuggsM@a630ce95d42f4236ab637742fd96135d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leonelle Schlichting,ou=Product Development,dc=bitwarden,dc=com", - email: "SchlichL@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merissa Jessup,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Merissa Jessup,ou=Management,dc=bitwarden,dc=com", - email: "JessupM@369d31e12885450e8a3e646342f4bbde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Divine Zarate,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Divine Zarate,ou=Administrative,dc=bitwarden,dc=com", - email: "ZarateD@7e667bf109b34912922cf458a184f322.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nitin Wolfe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nitin Wolfe,ou=Payroll,dc=bitwarden,dc=com", - email: "WolfeN@039ec15b8547455eb4745e09f294d624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hattie Nakonecznyj,ou=Peons,dc=bitwarden,dc=com", - email: "NakonecH@49cff37188af4618a262c09381a363cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sonnnie Giamberardino,ou=Janitorial,dc=bitwarden,dc=com", - email: "GiamberS@9f05691ac53d429c8fd30f6c6f952561.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bijan Badjari,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bijan Badjari,ou=Human Resources,dc=bitwarden,dc=com", - email: "BadjariB@e541b0cd05024e9aa895d5ed50a51779.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margy Chartrand,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Margy Chartrand,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChartraM@b360982dfbca4b8284c115441a6deb86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jennica Pakulski,ou=Janitorial,dc=bitwarden,dc=com", - email: "PakulskJ@60df7d7038c54074b580441075f8c5a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Velma Portz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Velma Portz,ou=Product Development,dc=bitwarden,dc=com", - email: "PortzV@5c62b86b5031426bb36534810b45c481.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dodie Bandel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dodie Bandel,ou=Payroll,dc=bitwarden,dc=com", - email: "BandelD@ec5b72978f304decbd01b86ff428bb78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Norma Ramakrishna,ou=Payroll,dc=bitwarden,dc=com", - email: "RamakriN@9c001781a73c4c5f974258a47b94b6cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lynwood Tullius,ou=Human Resources,dc=bitwarden,dc=com", - email: "TulliusL@339dae1666c141369c4355c1dbcfe99d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgianne Bydeley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Georgianne Bydeley,ou=Management,dc=bitwarden,dc=com", - email: "BydeleyG@44d6da32cc49457fb610dc6e02cea7ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alvina Gadzinowski,ou=Administrative,dc=bitwarden,dc=com", - email: "GadzinoA@f04933e85545445793e3a5773ee7f65d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbe Bolduc,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Barbe Bolduc,ou=Administrative,dc=bitwarden,dc=com", - email: "BolducB@fa0238e4957946f6b30d70f1a6cdea6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaylah Demren,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shaylah Demren,ou=Product Testing,dc=bitwarden,dc=com", - email: "DemrenS@b71eedf8e0cd45d0a3f6df70cc4decd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Judith Delgrosse,ou=Product Testing,dc=bitwarden,dc=com", - email: "DelgrosJ@a5390b0a929f4049987256511e1011a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ngai Konarski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ngai Konarski,ou=Human Resources,dc=bitwarden,dc=com", - email: "KonarskN@626bd1f6b43c43b3acf4ec37c2237915.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candi Ashley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Candi Ashley,ou=Peons,dc=bitwarden,dc=com", - email: "AshleyC@66f011cdb9ae4854a875f5226891a8d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darko Ledoux,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Darko Ledoux,ou=Product Testing,dc=bitwarden,dc=com", - email: "LedouxD@66ff0edd83674a479ab5a1db42900b12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trish Laberge,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Trish Laberge,ou=Payroll,dc=bitwarden,dc=com", - email: "LabergeT@b22727f208b94d678a41e54f04994fdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Reyna Iwanyk,ou=Administrative,dc=bitwarden,dc=com", - email: "IwanykR@18e5c35995c74b678bc1c6a71ea65f36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charee Fiegel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Charee Fiegel,ou=Human Resources,dc=bitwarden,dc=com", - email: "FiegelC@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kunitaka Shields,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShieldsK@2ce2f5b513b046bfb06414d7f59708f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eirena McNeese,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eirena McNeese,ou=Payroll,dc=bitwarden,dc=com", - email: "McNeeseE@f62b6f62dd4e412b8c6adfcff16239c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rosemaria Bagnato,ou=Payroll,dc=bitwarden,dc=com", - email: "BagnatoR@96705dd7d66249d08ee808bb87068456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meade Epting,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Meade Epting,ou=Janitorial,dc=bitwarden,dc=com", - email: "EptingM@1bd38dfda0ec498fac15746919a63a0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eliza Marko,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Eliza Marko,ou=Product Development,dc=bitwarden,dc=com", - email: "MarkoE@133a4b05f8ad44cc8eb15c516c740da5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doll Crutchfield,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Doll Crutchfield,ou=Administrative,dc=bitwarden,dc=com", - email: "CrutchfD@9daf174545b8499b9318f63ffd3e7799.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sergei Edwards,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sergei Edwards,ou=Human Resources,dc=bitwarden,dc=com", - email: "EdwardsS@c8261f605fed4bb494dcc3af9b18f70f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alfons Besson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Alfons Besson,ou=Product Testing,dc=bitwarden,dc=com", - email: "BessonA@0bd56636704d4f8e85795d32a0415211.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delmar Modl,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Delmar Modl,ou=Human Resources,dc=bitwarden,dc=com", - email: "ModlD@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peggie Jung,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Peggie Jung,ou=Human Resources,dc=bitwarden,dc=com", - email: "JungP@8232aa6ebca6495b9948a8e1eab554ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mot Goodner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mot Goodner,ou=Product Development,dc=bitwarden,dc=com", - email: "GoodnerM@063f8384c6d241e7ae0483f33483eb45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tatsuya Dyba,ou=Payroll,dc=bitwarden,dc=com", - email: "DybaT@83c0abbf294449be8e1bdffedc43f527.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaine Davalo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shaine Davalo,ou=Payroll,dc=bitwarden,dc=com", - email: "DavaloS@a4f85fecd69348a29728c8e242a790a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rod Hingtgen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rod Hingtgen,ou=Peons,dc=bitwarden,dc=com", - email: "HingtgeR@3faad65411ee4934ba03cc2bc3936056.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maddalena Melton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Maddalena Melton,ou=Peons,dc=bitwarden,dc=com", - email: "MeltonM@a651bab618794291bf5129fe307f0c99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jilleen Odegaard,ou=Product Development,dc=bitwarden,dc=com", - email: "OdegaarJ@06929a8dcdce40d387113e867b6564b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gusta Reavis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gusta Reavis,ou=Janitorial,dc=bitwarden,dc=com", - email: "ReavisG@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramanand Noy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ramanand Noy,ou=Janitorial,dc=bitwarden,dc=com", - email: "NoyR@ba4a8572e0bf488184d4e003cd863d22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tom Gowens,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tom Gowens,ou=Peons,dc=bitwarden,dc=com", - email: "GowensT@96ee5954dbf645b89509b54bd70ed6ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sayed Wilke,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sayed Wilke,ou=Product Development,dc=bitwarden,dc=com", - email: "WilkeS@fb5b6de9664f4611ab52db8eaf7e1865.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeralee Kiefer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jeralee Kiefer,ou=Peons,dc=bitwarden,dc=com", - email: "KieferJ@59f15b077c4a4aa5be8ad6d7b944d5f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatsuya Kayle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tatsuya Kayle,ou=Management,dc=bitwarden,dc=com", - email: "KayleT@f8b43c88d3f64387bc14adfa5600c275.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Georgetta Mayea,ou=Product Testing,dc=bitwarden,dc=com", - email: "MayeaG@191c836466354fe5b2fec288c1d53713.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roselin Zahn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roselin Zahn,ou=Administrative,dc=bitwarden,dc=com", - email: "ZahnR@dccd68e9261a427bb9a86d2b2c52f7a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shanda deRosenroll,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shanda deRosenroll,ou=Management,dc=bitwarden,dc=com", - email: "deRosenS@0c943e2aeb85477e9598d33254e476f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meriline Parkin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Meriline Parkin,ou=Management,dc=bitwarden,dc=com", - email: "ParkinM@e16d9a3a0fb84d70b44156f5d07a222e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minnesota Milway,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Minnesota Milway,ou=Product Development,dc=bitwarden,dc=com", - email: "MilwayM@5ee7d2eaa5b3419f93a42aabfc799bb4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oren Keffer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Oren Keffer,ou=Product Testing,dc=bitwarden,dc=com", - email: "KefferO@b6f50213a01240498d68877ca5ffab54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Emyle Nagendra,ou=Janitorial,dc=bitwarden,dc=com", - email: "NagendrE@4590d260de3b4f249929a3f2b344a0fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blanche Lantto,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Blanche Lantto,ou=Peons,dc=bitwarden,dc=com", - email: "LanttoB@349cbf4e75d847c1a3a3932212036d74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Penny Polakowski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Penny Polakowski,ou=Human Resources,dc=bitwarden,dc=com", - email: "PolakowP@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cariotta Cripps,ou=Janitorial,dc=bitwarden,dc=com", - email: "CrippsC@f90310b3f5d94fb4800c4388cf6d1cc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Martguerita DeBernardo,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeBernaM@d465b4edb1804f1cb883c23a2be3f91c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helene Halford,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Helene Halford,ou=Product Testing,dc=bitwarden,dc=com", - email: "HalfordH@f2c3f0652e32488088bedf6cc0ca618f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ladonna Kester,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ladonna Kester,ou=Payroll,dc=bitwarden,dc=com", - email: "KesterL@6bff82c20ec04cdbbb19d4912ec16456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carling Castillo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carling Castillo,ou=Janitorial,dc=bitwarden,dc=com", - email: "CastillC@433de9bdc40a4b9bbae4e765d431d11d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cark Redish,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cark Redish,ou=Management,dc=bitwarden,dc=com", - email: "RedishC@1ef32944592240fbbf9c689cd4db1d9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caresse Appenzeller,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Caresse Appenzeller,ou=Peons,dc=bitwarden,dc=com", - email: "AppenzeC@3986b5b118ef4d79a84f9f227789123a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheree Berman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sheree Berman,ou=Product Testing,dc=bitwarden,dc=com", - email: "BermanS@47d8b5e2575042d4a80d6e271d2326c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Domenic Kawauchi,ou=Administrative,dc=bitwarden,dc=com", - email: "KawauchD@29d0d437b2c147b0847b9dd994ec881e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anabal Hathaway,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anabal Hathaway,ou=Payroll,dc=bitwarden,dc=com", - email: "HathawaA@e1f0d918bf004e4781bc8a3f9e7beec7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valma Keffer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Valma Keffer,ou=Product Testing,dc=bitwarden,dc=com", - email: "KefferV@986a560d23c841b7ad18f2717af5b696.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnny Harron,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Johnny Harron,ou=Payroll,dc=bitwarden,dc=com", - email: "HarronJ@47bdbe19b290413cb5defd6e606815e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Channa Brokaw,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Channa Brokaw,ou=Product Development,dc=bitwarden,dc=com", - email: "BrokawC@38e93300da7643e5ac4629316f76753a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annabella Spaugh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Annabella Spaugh,ou=Product Development,dc=bitwarden,dc=com", - email: "SpaughA@5d66866885fa4ba8b5860161fb0bcacc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klink Sprott,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Klink Sprott,ou=Administrative,dc=bitwarden,dc=com", - email: "SprottK@9f3b5a22f2e64763918674c31a32bd5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roe Reinboth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Roe Reinboth,ou=Product Testing,dc=bitwarden,dc=com", - email: "ReinbotR@b2fd618943ca4dea935bf3787a6a78e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathrine Mashura,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cathrine Mashura,ou=Administrative,dc=bitwarden,dc=com", - email: "MashuraC@b79da789d7414b6e8a980b044433c3d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shigeru Rausch,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shigeru Rausch,ou=Payroll,dc=bitwarden,dc=com", - email: "RauschS@a811d1067f2b449da56503c72e375ae8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Felicdad Mordecai,ou=Administrative,dc=bitwarden,dc=com", - email: "MordecaF@b6b4b20435244397b513458a7683e69c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ingeberg Eagles,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ingeberg Eagles,ou=Management,dc=bitwarden,dc=com", - email: "EaglesI@97f7053b3d7f4f79b48d3e12171a5966.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arjun Auker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arjun Auker,ou=Peons,dc=bitwarden,dc=com", - email: "AukerA@2128bddbba18456fa2818ae450ffa7ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cary Gillot,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cary Gillot,ou=Human Resources,dc=bitwarden,dc=com", - email: "GillotC@b51d43f798c74d31975bc185013ed233.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kishor Aurelius,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kishor Aurelius,ou=Administrative,dc=bitwarden,dc=com", - email: "AureliuK@728cea3206cf4fc9b4edca0209470b11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mair Dragert,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mair Dragert,ou=Payroll,dc=bitwarden,dc=com", - email: "DragertM@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rebekah Renwick,ou=Janitorial,dc=bitwarden,dc=com", - email: "RenwickR@38381f1b65fe45f69608a5bb47db5a8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nata Manson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nata Manson,ou=Management,dc=bitwarden,dc=com", - email: "MansonN@845b538f36d146aba352dadcef98bffb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmody Stough,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carmody Stough,ou=Janitorial,dc=bitwarden,dc=com", - email: "StoughC@a7918ff0fc7e4212984f8187650b768f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vilok Difrancesco,ou=Payroll,dc=bitwarden,dc=com", - email: "DifrancV@ebddca96ab0c40e5a0ba8c1fb15aae94.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vicky Kenol,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vicky Kenol,ou=Human Resources,dc=bitwarden,dc=com", - email: "KenolV@45ff518891da43879283e296db76d389.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pulak Heidepriem,ou=Product Development,dc=bitwarden,dc=com", - email: "HeideprP@a31a40edc37d48cd9f5a5a655ca23fe5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorelle Korf,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorelle Korf,ou=Peons,dc=bitwarden,dc=com", - email: "KorfL@7446f3de45684b1e99747992ecfe40c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angele Dangubic,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Angele Dangubic,ou=Peons,dc=bitwarden,dc=com", - email: "DangubiA@ca2c9c0aaeee459a81fa3d98c982e91a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilene Knio,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ilene Knio,ou=Janitorial,dc=bitwarden,dc=com", - email: "KnioI@5ff6438f1a694a8f92d3363ddbe1a8ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Olympia Wessenberg,ou=Product Testing,dc=bitwarden,dc=com", - email: "WessenbO@837254eeede24c15906b803e5cce94f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harrison Klodt,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Harrison Klodt,ou=Administrative,dc=bitwarden,dc=com", - email: "KlodtH@b76954384b1448b9a3c0a3ababf6bbf1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Evangelo Coldwell,ou=Janitorial,dc=bitwarden,dc=com", - email: "ColdwelE@87bc15d42d8444788089ff676f599c5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orel Hassenklover,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Orel Hassenklover,ou=Product Development,dc=bitwarden,dc=com", - email: "HassenkO@f7a64cd3ec3949d4af95967a5d1451ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonya Hixson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sonya Hixson,ou=Janitorial,dc=bitwarden,dc=com", - email: "HixsonS@3778b1152af945109595a1f1ddb3f5dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Glynn Fedoruk,ou=Product Testing,dc=bitwarden,dc=com", - email: "FedorukG@7a4184a5b77e4684af64e06b6add415a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Simen Pankhurst,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Simen Pankhurst,ou=Product Development,dc=bitwarden,dc=com", - email: "PankhurS@dbbc0930b0d2479ca97fea1080c3afcd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alberta Roddy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alberta Roddy,ou=Human Resources,dc=bitwarden,dc=com", - email: "RoddyA@2d701440ade24b4a93552262ff2dfc96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelley Guitard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shelley Guitard,ou=Product Testing,dc=bitwarden,dc=com", - email: "GuitardS@8e847e0d62ad4699bde39672507969bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benthem Aghili,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Benthem Aghili,ou=Administrative,dc=bitwarden,dc=com", - email: "AghiliB@696db7ebc26e4f86a6552c4f6f755d76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marlyn Wertz,ou=Janitorial,dc=bitwarden,dc=com", - email: "WertzM@489cf71c67f540958c438bff00511d0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anastasie Kabolizadeh,ou=Administrative,dc=bitwarden,dc=com", - email: "KabolizA@238a8169b7ac4fc183a387c242aca7b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fifi Pitcher,ou=Janitorial,dc=bitwarden,dc=com", - email: "PitcherF@dd8de5abce6e4941a35b4e391450cd5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ganesh Ghantous,ou=Administrative,dc=bitwarden,dc=com", - email: "GhantouG@e17a5226a90e492eaba210445362135c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nad Sheth,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nad Sheth,ou=Peons,dc=bitwarden,dc=com", - email: "ShethN@35cbe55d624d41aaa7e77e5513292711.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katherine AuYeung,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Katherine AuYeung,ou=Payroll,dc=bitwarden,dc=com", - email: "AuYeungK@eae289de16194f21b28831dbf07663de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rollie Lohoar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rollie Lohoar,ou=Payroll,dc=bitwarden,dc=com", - email: "LohoarR@cd59c483d6b34aad846a7430fcfb5a39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siamak Tullo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Siamak Tullo,ou=Janitorial,dc=bitwarden,dc=com", - email: "TulloS@2a24d3bec1324ab39148d09712ff8aba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marco Trautman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marco Trautman,ou=Management,dc=bitwarden,dc=com", - email: "TrautmaM@a94a4e703f55451099134b3aaeedccbb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=James Silgardo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=James Silgardo,ou=Payroll,dc=bitwarden,dc=com", - email: "SilgardJ@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gipsy Letulle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gipsy Letulle,ou=Product Development,dc=bitwarden,dc=com", - email: "LetulleG@b0752d34718948e7a2486d5209bda8f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Missagh Breglec,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Missagh Breglec,ou=Payroll,dc=bitwarden,dc=com", - email: "BreglecM@1808029426c342b7ba28a7e8e39e2911.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debadeep Karass,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Debadeep Karass,ou=Product Development,dc=bitwarden,dc=com", - email: "KarassD@af9a07b0bce44bbab1d5d8279d6d460c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madeline Bir,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Madeline Bir,ou=Payroll,dc=bitwarden,dc=com", - email: "BirM@f545ecd56a5b4fe0a9748924d28342ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betsey Doi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Betsey Doi,ou=Administrative,dc=bitwarden,dc=com", - email: "DoiB@d06dcad3fe8b46a4aa1b3d7dd28ff6b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nicoli Cuccioletta,ou=Management,dc=bitwarden,dc=com", - email: "CucciolN@960fde1bd9064545ac557eb042ebf65f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Indiana Schejbal,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Indiana Schejbal,ou=Product Development,dc=bitwarden,dc=com", - email: "SchejbaI@518638c8b3ee480098591bd6806de72a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mickie Farhan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mickie Farhan,ou=Payroll,dc=bitwarden,dc=com", - email: "FarhanM@0f5b6ac1af33425fb656b97b6e7eab9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cubicle McMann,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cubicle McMann,ou=Administrative,dc=bitwarden,dc=com", - email: "McMannC@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olva Mathewson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Olva Mathewson,ou=Janitorial,dc=bitwarden,dc=com", - email: "MathewsO@ac12834971014a349fe6bc34d09caa36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Zero Mendelsohn,ou=Payroll,dc=bitwarden,dc=com", - email: "MendelsZ@89a8ded54db64032804dc4a0a9dd8e92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kieran Ogrodnik,ou=Peons,dc=bitwarden,dc=com", - email: "OgrodniK@e9937b9d7b6b4088972a1d9b7e93eab7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiet Strober,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kiet Strober,ou=Human Resources,dc=bitwarden,dc=com", - email: "StroberK@e75e76fca3054696a0a6baace9df29b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meggy Vardy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Meggy Vardy,ou=Product Testing,dc=bitwarden,dc=com", - email: "VardyM@e4b8fec602c641a384899f1d585d679d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyrine Marceau,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cyrine Marceau,ou=Management,dc=bitwarden,dc=com", - email: "MarceauC@7dbb126638b0419eb87d5c967cdeef20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Willetta DeMartino,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeMartiW@a6a05053959845178f0fed6cc2cd11a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shigeki Merryweather,ou=Payroll,dc=bitwarden,dc=com", - email: "MerryweS@dac0acbfef7c4da38b10a60b872b2190.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marilyn Wiklund,ou=Product Testing,dc=bitwarden,dc=com", - email: "WiklundM@092396cbb25f48afadfced942905695a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Junk Kopala,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Junk Kopala,ou=Payroll,dc=bitwarden,dc=com", - email: "KopalaJ@1544abc377ba4785bbb0b6f87c091972.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Skipper Patenaude,ou=Product Testing,dc=bitwarden,dc=com", - email: "PatenauS@06d31112a23c438e8cd439e22e02ac63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sayed Novisedlak,ou=Janitorial,dc=bitwarden,dc=com", - email: "NovisedS@336eedf545cc414b822f9458db1323a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shandra Connell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shandra Connell,ou=Management,dc=bitwarden,dc=com", - email: "ConnellS@4a1e113d03e64aa594660480aad5198e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Georgeta Elhage,ou=Product Testing,dc=bitwarden,dc=com", - email: "ElhageG@293d6ba342f34ea39d2f2770c6975255.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Munaz Reynolds,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Munaz Reynolds,ou=Payroll,dc=bitwarden,dc=com", - email: "ReynoldM@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lavinia LaBauve,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lavinia LaBauve,ou=Peons,dc=bitwarden,dc=com", - email: "LaBauveL@f327ac80229d48289e3f8a60345fbfd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilllie Ruthart,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lilllie Ruthart,ou=Peons,dc=bitwarden,dc=com", - email: "RuthartL@6acb8cb6e83344b2baf0ea01b349a09b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mani Keseris,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mani Keseris,ou=Payroll,dc=bitwarden,dc=com", - email: "KeserisM@57025360fa6449ed9005168a07164ed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Graciela Waytowich,ou=Human Resources,dc=bitwarden,dc=com", - email: "WaytowiG@e70e64793c734e619d9d8bf0e6d8cc1c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilith LLoyd,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lilith LLoyd,ou=Management,dc=bitwarden,dc=com", - email: "LLoydL@a459e619246a4d3d9371a8063ff33b21.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Delmar Amavisca,ou=Janitorial,dc=bitwarden,dc=com", - email: "AmaviscD@30695216554045458b82454ddcf12f1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luann Rodger,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Luann Rodger,ou=Product Development,dc=bitwarden,dc=com", - email: "RodgerL@261ef8139c1b42bbacfd98b8697feff4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evania Keehan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Evania Keehan,ou=Administrative,dc=bitwarden,dc=com", - email: "KeehanE@a0c3665d3c4148ef8e46512bcb5851c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivianna Rassell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vivianna Rassell,ou=Administrative,dc=bitwarden,dc=com", - email: "RassellV@0981876efcf54647a835b91b97400e9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rudie Dunlay,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rudie Dunlay,ou=Payroll,dc=bitwarden,dc=com", - email: "DunlayR@32acaec0581e44aab5f22b6d86c33a71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berti JantzLee,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Berti JantzLee,ou=Human Resources,dc=bitwarden,dc=com", - email: "JantzLeB@f36f9c3d244c4345b6d2788fe9994b43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aigneis Marghetis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aigneis Marghetis,ou=Peons,dc=bitwarden,dc=com", - email: "MarghetA@bac50bb727ca4a11b9ee1a82a995bcf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gordon Buhler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gordon Buhler,ou=Management,dc=bitwarden,dc=com", - email: "BuhlerG@3e44eebfdc184e219c5f14c3aca38333.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Berton Shayanpour,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShayanpB@4c5d84de03674c49a48c822bd1b74d2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Austine ODale,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Austine ODale,ou=Product Testing,dc=bitwarden,dc=com", - email: "ODaleA@343f0f593aa240c5b8dbc9d9fe3ab95e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lab Carstensen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lab Carstensen,ou=Product Testing,dc=bitwarden,dc=com", - email: "CarstenL@fc0c286626334794ab4a83e723107bf2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amalita Smith,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Amalita Smith,ou=Peons,dc=bitwarden,dc=com", - email: "SmithA@21813dd069254b74bf250b7db15a806f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbe Degen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Barbe Degen,ou=Management,dc=bitwarden,dc=com", - email: "DegenB@438e70287f6d4d35a04d438ca352f234.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ros Varkel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ros Varkel,ou=Human Resources,dc=bitwarden,dc=com", - email: "VarkelR@c67a6c3f272e49d89894436b34e568ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anissa Belley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anissa Belley,ou=Janitorial,dc=bitwarden,dc=com", - email: "BelleyA@7e7373daa08d4a3b834f2e415978d199.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khurshid Balsas,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Khurshid Balsas,ou=Peons,dc=bitwarden,dc=com", - email: "BalsasK@83f450f8e8ed4c6282bc25450b6af548.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amata Byers,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Amata Byers,ou=Product Testing,dc=bitwarden,dc=com", - email: "ByersA@ec1ddd180ec346c9ac4e8ff1fbae4cee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonya Brough,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tonya Brough,ou=Administrative,dc=bitwarden,dc=com", - email: "BroughT@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nancy Stocker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nancy Stocker,ou=Peons,dc=bitwarden,dc=com", - email: "StockerN@bc24a263fb344aa0a892bcbfdbc90a0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Analiese Hooper,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Analiese Hooper,ou=Human Resources,dc=bitwarden,dc=com", - email: "HooperA@d28a39336adb48ccb95a57463d617dbb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mikelis Chaves,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mikelis Chaves,ou=Administrative,dc=bitwarden,dc=com", - email: "ChavesM@cff151d12e624a459ab90891be7ad6d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liv Ayukawa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Liv Ayukawa,ou=Payroll,dc=bitwarden,dc=com", - email: "AyukawaL@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amir Andre,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Amir Andre,ou=Peons,dc=bitwarden,dc=com", - email: "AndreA@6689aec4c2e947e78e303762aa98dbd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=KaiMing Hetzel,ou=Product Testing,dc=bitwarden,dc=com", - email: "HetzelK@ad005e1f3e2c4d6ba75c2d9c48687591.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacob Mahin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jacob Mahin,ou=Management,dc=bitwarden,dc=com", - email: "MahinJ@2f1e5586c9f34c7a81a461c2017b9960.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genvieve Albers,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Genvieve Albers,ou=Human Resources,dc=bitwarden,dc=com", - email: "AlbersG@d236a57ac59c480697085ae127e79e8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mallory Xenos,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mallory Xenos,ou=Administrative,dc=bitwarden,dc=com", - email: "XenosM@280cee7caed9430b8fa7be7309b39563.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosalyn Pulcher,ou=Peons,dc=bitwarden,dc=com", - email: "PulcherR@98ee1decab4b4712b60ec9828a0d8c3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christie Shapiro,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Christie Shapiro,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShapiroC@0460dcc544ed4a46a87c85b64c5ff202.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jackie Au,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jackie Au,ou=Payroll,dc=bitwarden,dc=com", - email: "AuJ@5093424433404df7a9b5d20a18b7ae60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ray Muttaqi,ou=Human Resources,dc=bitwarden,dc=com", - email: "MuttaqiR@8aca496809cf4238a39dc0c2b2a9c742.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marshall Paine,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marshall Paine,ou=Human Resources,dc=bitwarden,dc=com", - email: "PaineM@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Doreen DeBoer,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeBoerD@f7e815f56fc1472f8f953f85688ba7a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roman Materna,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roman Materna,ou=Product Development,dc=bitwarden,dc=com", - email: "MaternaR@2d981c4bfc9b4af59f6903a66417a159.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jerald Gutcher,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jerald Gutcher,ou=Management,dc=bitwarden,dc=com", - email: "GutcherJ@422dc77807144e50a50666d3791c65d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berty Bittman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Berty Bittman,ou=Product Development,dc=bitwarden,dc=com", - email: "BittmanB@68682c9b2559463bb9da0d98b541595f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zabrina Liddle,ou=Janitorial,dc=bitwarden,dc=com", - email: "LiddleZ@2883c809f60044a59cf20989f8889d61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Happy Vreugdenhil,ou=Administrative,dc=bitwarden,dc=com", - email: "VreugdeH@bdf120f20bde4a2eb788dc5571823dc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Priore Hofstetter,ou=Janitorial,dc=bitwarden,dc=com", - email: "HofstetP@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adara Smyth,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Adara Smyth,ou=Human Resources,dc=bitwarden,dc=com", - email: "SmythA@893034d40ae747fcb94aa3c93f26d5c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robenia Prescott,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Robenia Prescott,ou=Product Testing,dc=bitwarden,dc=com", - email: "PrescotR@1782f7f16d8544ffa1ab9536782bcf24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wonda Zoerb,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZoerbW@3ebdc674ebed47c4a4f33a4fcf39c448.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berna Mahaffee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Berna Mahaffee,ou=Product Development,dc=bitwarden,dc=com", - email: "MahaffeB@15d351e2d51e4089aa0399e21432998b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drusilla Riou,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Drusilla Riou,ou=Human Resources,dc=bitwarden,dc=com", - email: "RiouD@6f161c0885be4a50be1e5e174b0c967a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elsie Ryals,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Elsie Ryals,ou=Janitorial,dc=bitwarden,dc=com", - email: "RyalsE@5d0b867d32fb46e6b508ea727cf0a4d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanae Glaser,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sanae Glaser,ou=Human Resources,dc=bitwarden,dc=com", - email: "GlaserS@83ad79c28f46486b8edfbe2ab2f124ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisenda Shuster,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Melisenda Shuster,ou=Peons,dc=bitwarden,dc=com", - email: "ShusterM@6f1fa218146b4384aa588054962e9428.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jasver Loza,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jasver Loza,ou=Management,dc=bitwarden,dc=com", - email: "LozaJ@948fee4ac0644e21a6b3abc34aeaa20f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joseph Beshai,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Joseph Beshai,ou=Management,dc=bitwarden,dc=com", - email: "BeshaiJ@f7fb17758cf24933ad847773d4770955.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebecca Landriault,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rebecca Landriault,ou=Product Development,dc=bitwarden,dc=com", - email: "LandriaR@7ddc36790a7641e3ae418cec51fdf351.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kokkhiang Holness,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kokkhiang Holness,ou=Management,dc=bitwarden,dc=com", - email: "HolnessK@237d4965b17942d997e72bedf6b5b1ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stormy Berger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stormy Berger,ou=Management,dc=bitwarden,dc=com", - email: "BergerS@5e8f47bf29ef420c9f1d1267ba3841e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olva Mooder,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Olva Mooder,ou=Peons,dc=bitwarden,dc=com", - email: "MooderO@00b74fb6ef364737950ddfdf6aa8c176.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tash Ficco,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tash Ficco,ou=Payroll,dc=bitwarden,dc=com", - email: "FiccoT@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulita Jobs,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Paulita Jobs,ou=Product Development,dc=bitwarden,dc=com", - email: "JobsP@8b141724f39349e190b0bc072ac89f77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanata Ning,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kanata Ning,ou=Payroll,dc=bitwarden,dc=com", - email: "NingK@12339915e7824967ac90a6f27aeb00c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dalila Shull,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dalila Shull,ou=Payroll,dc=bitwarden,dc=com", - email: "ShullD@32fe0278ad444a168aa2715b611540e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgianne Bour,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Georgianne Bour,ou=Administrative,dc=bitwarden,dc=com", - email: "BourG@0c871b0ecc1a46debc66287e828580e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Venita Brandon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Venita Brandon,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrandonV@f3d35636fac14230bdd8e3b7a9740351.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krishna Kiens,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Krishna Kiens,ou=Product Development,dc=bitwarden,dc=com", - email: "KiensK@579206d6574545e7827d4fefcb691059.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashlen Plssup,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ashlen Plssup,ou=Administrative,dc=bitwarden,dc=com", - email: "PlssupA@b17d54cce1be4bbcaff405b30e34b1e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ilyssa Woodley,ou=Product Testing,dc=bitwarden,dc=com", - email: "WoodleyI@6994ff306ef64425a30543b5e9a42d04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hojjat Burchat,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hojjat Burchat,ou=Product Development,dc=bitwarden,dc=com", - email: "BurchatH@15447e827d294576b427fe60b8e58e62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mani Gravitte,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mani Gravitte,ou=Janitorial,dc=bitwarden,dc=com", - email: "GravittM@3587dae0157a463b8f8e3e2bb5286ba6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chiu Pilipchuk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Chiu Pilipchuk,ou=Management,dc=bitwarden,dc=com", - email: "PilipchC@571742054064463fb2b552524cde124b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shamim Uffner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shamim Uffner,ou=Human Resources,dc=bitwarden,dc=com", - email: "UffnerS@a83a79eb4e0e4d1da5d7fca900f14adf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hyacintha Thurman,ou=Administrative,dc=bitwarden,dc=com", - email: "ThurmanH@4eb55ca292bb4599a29d162b3cac9e90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jozsef Alspaugh,ou=Product Development,dc=bitwarden,dc=com", - email: "AlspaugJ@bc377f0c1b2b4d28a2ccf5abc5f2f5ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trude Graves,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Trude Graves,ou=Janitorial,dc=bitwarden,dc=com", - email: "GravesT@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caressa Balogh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Caressa Balogh,ou=Product Development,dc=bitwarden,dc=com", - email: "BaloghC@b5088b9f02d2438a84c66dee28f005b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyn Serre,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lyn Serre,ou=Product Development,dc=bitwarden,dc=com", - email: "SerreL@edf7b6e6765c4b9395ab808390477139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clemmy Doda,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Clemmy Doda,ou=Payroll,dc=bitwarden,dc=com", - email: "DodaC@0942a8d54b72463a911186a66f7c67f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kesley Nallengara,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kesley Nallengara,ou=Management,dc=bitwarden,dc=com", - email: "NallengK@52e746b148db486a82aefd7394487227.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joji Skeoch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Joji Skeoch,ou=Management,dc=bitwarden,dc=com", - email: "SkeochJ@35f4596c2f6f4d62a06cffe0bc4a52f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwyn Peerman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gwyn Peerman,ou=Management,dc=bitwarden,dc=com", - email: "PeermanG@2ad21f67126841ddab38e6a0de0bbf55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mila Lodeserto,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mila Lodeserto,ou=Administrative,dc=bitwarden,dc=com", - email: "LodeserM@ce606f959aaf4b37a3890f8fbd9f2472.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Corinne Honbarrier,ou=Human Resources,dc=bitwarden,dc=com", - email: "HonbarrC@1ae32a15eca247e1b1d69b0caaf56b8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bess Ottowa,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bess Ottowa,ou=Administrative,dc=bitwarden,dc=com", - email: "OttowaB@0036c3527a724e3c9f25f047b6319884.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sieber Churchill,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sieber Churchill,ou=Peons,dc=bitwarden,dc=com", - email: "ChurchiS@237c9936996c46d6817a8e3d08c30341.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndy Sides,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lyndy Sides,ou=Janitorial,dc=bitwarden,dc=com", - email: "SidesL@7d9cd1f5b4d645a6bff13b745f4db29e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lino Rix,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lino Rix,ou=Administrative,dc=bitwarden,dc=com", - email: "RixL@700d5dcd52ae4dffafb68bba2826fdd6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charangit Desplanque,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Charangit Desplanque,ou=Product Development,dc=bitwarden,dc=com", - email: "DesplanC@777873609ce9463eb7000e930f9c88d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=KangYuan Recktenwald,ou=Peons,dc=bitwarden,dc=com", - email: "RecktenK@4d61ba95f33d443b8b11c381ee1d7607.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barry Vajentic,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Barry Vajentic,ou=Product Development,dc=bitwarden,dc=com", - email: "VajentiB@a53843fec33f4a5c95cde2f5b04f1643.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Waiching Morrin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Waiching Morrin,ou=Management,dc=bitwarden,dc=com", - email: "MorrinW@6ab835c0621d479dbd805d5189aa2b92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sattar Kane,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sattar Kane,ou=Payroll,dc=bitwarden,dc=com", - email: "KaneS@06573ce095c8443aa9769fdb7129baed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YukWha Kielstra,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=YukWha Kielstra,ou=Management,dc=bitwarden,dc=com", - email: "KielstrY@e8193f804bab49a9ab24a3360e9fb251.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharon Meletios,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sharon Meletios,ou=Management,dc=bitwarden,dc=com", - email: "MeletioS@ec1065d4122045119a382b34586180cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binni Gaines,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Binni Gaines,ou=Janitorial,dc=bitwarden,dc=com", - email: "GainesB@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rasla Pagliarulo,ou=Administrative,dc=bitwarden,dc=com", - email: "PagliarR@d69ecc02f7cc498a8c0f20edc1735b63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ying Spejewski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ying Spejewski,ou=Payroll,dc=bitwarden,dc=com", - email: "SpejewsY@15a73f4bf1a344b28ac5394e2a720618.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnesse Nessman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Agnesse Nessman,ou=Payroll,dc=bitwarden,dc=com", - email: "NessmanA@20c2d999fe734387b26090f6d88bafe4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoda Milne,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yoda Milne,ou=Peons,dc=bitwarden,dc=com", - email: "MilneY@29cf82166a6a4ea0989e7e7b62bf4159.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marsh McGurn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marsh McGurn,ou=Janitorial,dc=bitwarden,dc=com", - email: "McGurnM@972828f1932145e2913d23d36d264e73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilda Baldridge,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hilda Baldridge,ou=Management,dc=bitwarden,dc=com", - email: "BaldridH@7e076071c1c04607a96e17ebf129b6b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caro Vopalensky,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Caro Vopalensky,ou=Product Development,dc=bitwarden,dc=com", - email: "VopalenC@a7918ff0fc7e4212984f8187650b768f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Buffy Naolu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Buffy Naolu,ou=Janitorial,dc=bitwarden,dc=com", - email: "NaoluB@0a7d4b9e2dcb482a9d690b9c06f7b141.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Royal Parniani,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Royal Parniani,ou=Human Resources,dc=bitwarden,dc=com", - email: "ParnianR@ba55eb721cbf4a0787e4fcebb6c309fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Materkowski Watkinson,ou=Administrative,dc=bitwarden,dc=com", - email: "WatkinsM@38d6239d446040c7892f72bde901e5dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anthea Eros,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anthea Eros,ou=Administrative,dc=bitwarden,dc=com", - email: "ErosA@1174f1cfd4db4d4e8122f3cc77544aa8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiele Commazzi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kiele Commazzi,ou=Management,dc=bitwarden,dc=com", - email: "CommazzK@c7c8c5e66a3141e48cf8db523d4db0d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yvan Diaconu,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yvan Diaconu,ou=Payroll,dc=bitwarden,dc=com", - email: "DiaconuY@e9424fab29f84505b243cf3bcaec7fc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kitti Seshadri,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kitti Seshadri,ou=Payroll,dc=bitwarden,dc=com", - email: "SeshadrK@316f28dee96a4927ae60609771465dfa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camala McMillan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Camala McMillan,ou=Administrative,dc=bitwarden,dc=com", - email: "McMillaC@fe875cd0e6c64e7b9c0162ab42b3016c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Asan Postlethwaite,ou=Product Development,dc=bitwarden,dc=com", - email: "PostletA@03ce2f739a2d423a9acbc734a72262d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eamon Salvin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eamon Salvin,ou=Management,dc=bitwarden,dc=com", - email: "SalvinE@1be6a576815d4ff2aa416eab6c9dd713.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marlyne Recycling,ou=Human Resources,dc=bitwarden,dc=com", - email: "RecycliM@fe3592b806204a8188677a7eeb59563a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vito Calcote,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vito Calcote,ou=Janitorial,dc=bitwarden,dc=com", - email: "CalcoteV@29ddc254020a4d509a3e447f6b0e374a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jannel Demetrick,ou=Janitorial,dc=bitwarden,dc=com", - email: "DemetriJ@d00112b411284f8aa1ae0e17d03d57d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mandie Kneeshaw,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mandie Kneeshaw,ou=Management,dc=bitwarden,dc=com", - email: "KneeshaM@d12cf402dbab4ca98b370d7e2c59928b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fiann Fouts,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fiann Fouts,ou=Administrative,dc=bitwarden,dc=com", - email: "FoutsF@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patt Ferner,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Patt Ferner,ou=Management,dc=bitwarden,dc=com", - email: "FernerP@19620eb428924236b27e614bd4d00de7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=ThanhQuoc Lahey,ou=Human Resources,dc=bitwarden,dc=com", - email: "LaheyT@65bf8c21e22d4649a877cbced68034c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maryellen Wilhelmson,ou=Product Development,dc=bitwarden,dc=com", - email: "WilhelmM@f29a02eb60f740478f80d3c6d60d0269.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grier Kovarik,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Grier Kovarik,ou=Product Testing,dc=bitwarden,dc=com", - email: "KovarikG@50d7c806edce40aba32e1f9a44a2e284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mela MacNeill,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mela MacNeill,ou=Payroll,dc=bitwarden,dc=com", - email: "MacNeilM@5bcf0d060e574c65aeb6507d9efeab58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nikkie Sayed,ou=Janitorial,dc=bitwarden,dc=com", - email: "SayedN@d29cf4b9df4246ba980a85b6744ad20d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akram Rajwani,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Akram Rajwani,ou=Janitorial,dc=bitwarden,dc=com", - email: "RajwaniA@6114ed5b2ab14d15895d683682929e6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lendon Valin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lendon Valin,ou=Administrative,dc=bitwarden,dc=com", - email: "ValinL@923baf1ba66c43ddab40764da6c9cc33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ikram Taylor,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ikram Taylor,ou=Payroll,dc=bitwarden,dc=com", - email: "TaylorI@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gert Grassmann,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gert Grassmann,ou=Payroll,dc=bitwarden,dc=com", - email: "GrassmaG@7388d6407a304050b7d1b21890b91ab6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oksana Dorn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Oksana Dorn,ou=Janitorial,dc=bitwarden,dc=com", - email: "DornO@bea0ce9c6190426d94993a855ef6515e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karleen McKinley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Karleen McKinley,ou=Product Testing,dc=bitwarden,dc=com", - email: "McKinleK@58351331fe224df1be3d4a98ae5bb106.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helmut Sigda,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Helmut Sigda,ou=Payroll,dc=bitwarden,dc=com", - email: "SigdaH@c53d26d2599d4e87839d1fcfc46deed3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grover Au,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Grover Au,ou=Product Testing,dc=bitwarden,dc=com", - email: "AuG@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barb Ricketts,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Barb Ricketts,ou=Product Development,dc=bitwarden,dc=com", - email: "RickettB@09d4226229cf4675bcb5278420d93bf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carina Akens,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carina Akens,ou=Product Development,dc=bitwarden,dc=com", - email: "AkensC@83d9635a552e4683a0d35cd1ae21b9aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beilul Scheduling,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beilul Scheduling,ou=Administrative,dc=bitwarden,dc=com", - email: "SchedulB@7560ab97b391438ca52c6e67c62ba90e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kitson Nelon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kitson Nelon,ou=Janitorial,dc=bitwarden,dc=com", - email: "NelonK@e96c9cff7aa94cde9b663e22d2426c28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphna Ragde,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Daphna Ragde,ou=Product Testing,dc=bitwarden,dc=com", - email: "RagdeD@86b49aff19c241bd88b57af5d6c58aeb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulina Early,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Paulina Early,ou=Administrative,dc=bitwarden,dc=com", - email: "EarlyP@ee2b03b1182d458c89ed3ab0221f6486.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abbie Jamshidi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Abbie Jamshidi,ou=Management,dc=bitwarden,dc=com", - email: "JamshidA@197532fdf2a14d7985433ec8c05668f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quynh Lorenc,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Quynh Lorenc,ou=Administrative,dc=bitwarden,dc=com", - email: "LorencQ@318df10c24464190a253b688eda7b7e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelwin Popadick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kelwin Popadick,ou=Payroll,dc=bitwarden,dc=com", - email: "PopadicK@bee273104901438cb51bc052b7b27c15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fitness Pape,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fitness Pape,ou=Management,dc=bitwarden,dc=com", - email: "PapeF@2f2d085d4c3a4ad69f1b90ad6c4efe7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dion Chiou,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dion Chiou,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChiouD@0cd77054f0d24017b2619d6dacb27d84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mayasandra Naor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mayasandra Naor,ou=Management,dc=bitwarden,dc=com", - email: "NaorM@4615d434564642a8bf9c9dbf63a45e29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leddy Hitchcock,ou=Payroll,dc=bitwarden,dc=com", - email: "HitchcoL@56c31fbd3abf4ba89644df8f50b7055a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lauri Deligdisch,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeligdiL@cf1207413cd7406ea5d1023535e380a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vince Soulliere,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vince Soulliere,ou=Janitorial,dc=bitwarden,dc=com", - email: "SoullieV@da92b528ad714b68bb8622f4f41299c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kasey Turney,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kasey Turney,ou=Management,dc=bitwarden,dc=com", - email: "TurneyK@3247d9930d174deba0cf4cead8361088.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zonda Amato,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Zonda Amato,ou=Human Resources,dc=bitwarden,dc=com", - email: "AmatoZ@3b9a242739aa4b0aa6818d262f7df54b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eleanore Bertini,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eleanore Bertini,ou=Payroll,dc=bitwarden,dc=com", - email: "BertiniE@a6096cd0d9c54e7cb57ad3b57e445595.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgetta Schreiber,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Georgetta Schreiber,ou=Peons,dc=bitwarden,dc=com", - email: "SchreibG@0b30f746872444eb8267bbdcdf9f26b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalai Seatter,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kalai Seatter,ou=Peons,dc=bitwarden,dc=com", - email: "SeatterK@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susie Moffett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Susie Moffett,ou=Product Development,dc=bitwarden,dc=com", - email: "MoffettS@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mariejeanne Mielke,ou=Human Resources,dc=bitwarden,dc=com", - email: "MielkeM@cf607f514ea94d249d7d25105dbb0762.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Garnet Vieregge,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Garnet Vieregge,ou=Peons,dc=bitwarden,dc=com", - email: "ViereggG@93dd838ca8d949aca268d37f8c816502.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Agneta Ninetyone,ou=Product Development,dc=bitwarden,dc=com", - email: "NinetyoA@de6663da581c4c5286224c9b59be979f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Majid Liao,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Majid Liao,ou=Payroll,dc=bitwarden,dc=com", - email: "LiaoM@ab64d8db9da04b27bba1bfcb5bef47a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abdallah Lobello,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Abdallah Lobello,ou=Administrative,dc=bitwarden,dc=com", - email: "LobelloA@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felecia Bnrecad,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Felecia Bnrecad,ou=Peons,dc=bitwarden,dc=com", - email: "BnrecadF@1cd5de40e5ac4cd695f9ff5aee94931d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Waja Eteminan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Waja Eteminan,ou=Human Resources,dc=bitwarden,dc=com", - email: "EteminaW@3b02e13d586c4243a74a50de88d81685.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorrel Piercy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lorrel Piercy,ou=Product Development,dc=bitwarden,dc=com", - email: "PiercyL@5d9c2ba556874386a8e9edd75b2b2e09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pris Bobar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pris Bobar,ou=Janitorial,dc=bitwarden,dc=com", - email: "BobarP@a003e42ed50b459eb9c3a71f6a23c973.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Albertine Karass,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Albertine Karass,ou=Payroll,dc=bitwarden,dc=com", - email: "KarassA@7c2121c8588b42078879768992a11293.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saskia Koskie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Saskia Koskie,ou=Peons,dc=bitwarden,dc=com", - email: "KoskieS@7920c9493dd44267bf71116a85f298e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adda Paddon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Adda Paddon,ou=Management,dc=bitwarden,dc=com", - email: "PaddonA@abbddb7343124812b34ca376c77e32cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Normand Tay,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Normand Tay,ou=Human Resources,dc=bitwarden,dc=com", - email: "TayN@238696ade728438aa3391299a0dc9901.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Suzann Wolowidnyk,ou=Payroll,dc=bitwarden,dc=com", - email: "WolowidS@42f6c709ced54560a282482057eafc53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dixie Yuhanna,ou=Product Development,dc=bitwarden,dc=com", - email: "YuhannaD@fb80550ae6b245dcb9c2cdf7ac12567e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardene Hofstede,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ardene Hofstede,ou=Product Development,dc=bitwarden,dc=com", - email: "HofstedA@52e746b148db486a82aefd7394487227.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Panos Wessell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Panos Wessell,ou=Payroll,dc=bitwarden,dc=com", - email: "WessellP@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Alanah Ananmalay,ou=Product Testing,dc=bitwarden,dc=com", - email: "AnanmalA@83071766c35b4f64b633c2228d274ed7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolan Kamerson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carolan Kamerson,ou=Management,dc=bitwarden,dc=com", - email: "KamersoC@cc743470ff7d424999d3c3aceed5aa98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stew Doan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Stew Doan,ou=Peons,dc=bitwarden,dc=com", - email: "DoanS@0ea39720ccd849b98e8f01497c06b283.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tap Moreau,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tap Moreau,ou=Product Development,dc=bitwarden,dc=com", - email: "MoreauT@518d5688f4c94956a0b481cd83e3e460.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Irena Pimiskern,ou=Product Testing,dc=bitwarden,dc=com", - email: "PimiskeI@51a4413e49e7448782016bff6d71f8fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sheilah Tiberghien,ou=Janitorial,dc=bitwarden,dc=com", - email: "TiberghS@d34dd7c3a21b4320a472b183ccccd155.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peg Alcott,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Peg Alcott,ou=Product Development,dc=bitwarden,dc=com", - email: "AlcottP@911bea6fd5eb467e8bf6c3f29ab2f42b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henrika Mihm,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Henrika Mihm,ou=Product Testing,dc=bitwarden,dc=com", - email: "MihmH@93c66893cda74239a9a56d1199a44457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Count Watts,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Count Watts,ou=Product Development,dc=bitwarden,dc=com", - email: "WattsC@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lesly Engman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lesly Engman,ou=Administrative,dc=bitwarden,dc=com", - email: "EngmanL@aa1e8f7905ad4306b9351c481bfc8797.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kalina Patwardhan,ou=Administrative,dc=bitwarden,dc=com", - email: "PatwardK@06731df963584f3ca191849b64eabf87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Txp Calmejane,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Txp Calmejane,ou=Human Resources,dc=bitwarden,dc=com", - email: "CalmejaT@721925c092ab4630a360f318924bd972.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorry Constantinides,ou=Human Resources,dc=bitwarden,dc=com", - email: "ConstanL@46fc9003cc604a8a9449c2533498fb92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurore Hubers,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Aurore Hubers,ou=Human Resources,dc=bitwarden,dc=com", - email: "HubersA@f16cc86c487d4fe7b6b007e41eade44a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharad Shearin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sharad Shearin,ou=Payroll,dc=bitwarden,dc=com", - email: "ShearinS@bf5f757433234192bb075cccda7f6941.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jennica Vonck,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jennica Vonck,ou=Management,dc=bitwarden,dc=com", - email: "VonckJ@fa6f1422a9064a168045966e8899109e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Charissa Hazenboom,ou=Janitorial,dc=bitwarden,dc=com", - email: "HazenboC@ecca4a8cb1474812a6ec4a57737ddfaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chesteen Wyant,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Chesteen Wyant,ou=Management,dc=bitwarden,dc=com", - email: "WyantC@40591993a80c4f498ba90d5c4df5bf9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coraline Kolton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Coraline Kolton,ou=Payroll,dc=bitwarden,dc=com", - email: "KoltonC@cdfacd88fafe4ba8970bb7d5170496d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rhianna Donaldson,ou=Human Resources,dc=bitwarden,dc=com", - email: "DonaldsR@95581eb6a8bb49808363d11bfe34de80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Horacio Oberpriller,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Horacio Oberpriller,ou=Management,dc=bitwarden,dc=com", - email: "OberpriH@841df0a2276144ffade10ec334e0a08c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Padriac Kortekaas,ou=Product Testing,dc=bitwarden,dc=com", - email: "KortekaP@0fd135b263b342ad9db4b39831f787af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nathalia Hawker,ou=Human Resources,dc=bitwarden,dc=com", - email: "HawkerN@5c0f96a3078844a4801dba9a3ab9ce0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lsi Assistance,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lsi Assistance,ou=Janitorial,dc=bitwarden,dc=com", - email: "AssistaL@5d8927d9a18847879f1969c651cc8b72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=LouAnn Bamfo,ou=Product Testing,dc=bitwarden,dc=com", - email: "BamfoL@e06afc97bcee4a81b6e79620a6f216aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Esmaria Jewell,ou=Janitorial,dc=bitwarden,dc=com", - email: "JewellE@17530faabce9458899e793820a3f2801.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gusta Dadkhah,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gusta Dadkhah,ou=Management,dc=bitwarden,dc=com", - email: "DadkhahG@f5fb4e9fecc04c5fb5218048682802f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphene Cho,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Daphene Cho,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChoD@c2620996c28c4914aa069de50088574a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minerva Arvin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Minerva Arvin,ou=Human Resources,dc=bitwarden,dc=com", - email: "ArvinM@bd7ed784957343358f080e4bf8b3e472.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynna Gumb,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lynna Gumb,ou=Management,dc=bitwarden,dc=com", - email: "GumbL@6ef1e4ea7e0c4fbca97db771430b3181.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arleen Owen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Arleen Owen,ou=Administrative,dc=bitwarden,dc=com", - email: "OwenA@d93d3e36ec7e4efdaa17aa90aca2f3e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carsten Ewanchyna,ou=Product Development,dc=bitwarden,dc=com", - email: "EwanchyC@9f05691ac53d429c8fd30f6c6f952561.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsae Geer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chelsae Geer,ou=Janitorial,dc=bitwarden,dc=com", - email: "GeerC@ea33a214953b4a6b925d5d0efa8ea38e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abraham McDougald,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Abraham McDougald,ou=Management,dc=bitwarden,dc=com", - email: "McDougaA@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessa Piasecki,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jessa Piasecki,ou=Management,dc=bitwarden,dc=com", - email: "PiaseckJ@af9d1266b1684989ab41423cdd351f7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fabienne Deguire,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeguireF@0651cd49040341648ef076fb9d224e36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hertha Wayler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hertha Wayler,ou=Janitorial,dc=bitwarden,dc=com", - email: "WaylerH@2e3ea6fd47a04112b8fcd5e103e3ae77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gregg Lanzkron,ou=Human Resources,dc=bitwarden,dc=com", - email: "LanzkroG@eb5d81d98e0b481098d9b451ee211c82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Richardson Hansquine,ou=Product Testing,dc=bitwarden,dc=com", - email: "HansquiR@3ffb284a6509471fa1b109716579396c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haste Isherwood,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Haste Isherwood,ou=Product Testing,dc=bitwarden,dc=com", - email: "IsherwoH@ec8dc3c6877747ab888f5b203f49583b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonye Frumerie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tonye Frumerie,ou=Management,dc=bitwarden,dc=com", - email: "FrumeriT@bc4791aff5914d0e95bbd2106b1c2de5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nathalia Kinoshita,ou=Janitorial,dc=bitwarden,dc=com", - email: "KinoshiN@29fc4f33a13046d58a2533f092f80d91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilly Serapin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lilly Serapin,ou=Product Testing,dc=bitwarden,dc=com", - email: "SerapinL@b9e3cd16f2b646b993b7e643861e809b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phebe Gordon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Phebe Gordon,ou=Product Development,dc=bitwarden,dc=com", - email: "GordonP@80ac534602434d3b9eab0832653d2f56.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alvin Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", - email: "ErmarkaA@8937c44c9bf6487fb42e97e582a0968a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cary Gronwall,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cary Gronwall,ou=Peons,dc=bitwarden,dc=com", - email: "GronwalC@da1dd7866db74262b18c0f383045bcff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mer Kearney,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mer Kearney,ou=Management,dc=bitwarden,dc=com", - email: "KearneyM@bde9cbcbc5394deeb943ef7a2d9cb3b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viqar Campeau,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Viqar Campeau,ou=Administrative,dc=bitwarden,dc=com", - email: "CampeauV@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annet Chatfield,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annet Chatfield,ou=Administrative,dc=bitwarden,dc=com", - email: "ChatfieA@02d556d8128c42b5aa2cd5d4238f40aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lizzie Zaid,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lizzie Zaid,ou=Management,dc=bitwarden,dc=com", - email: "ZaidL@4cf5733fc93742b8881de63253f58457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norcal Schrier,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Norcal Schrier,ou=Payroll,dc=bitwarden,dc=com", - email: "SchrierN@6440b02815824326a0c464b5e91deecc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hesther Fujiwara,ou=Janitorial,dc=bitwarden,dc=com", - email: "FujiwarH@98aff7abdd994400acf7af6980180281.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlyne Tardiff,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marlyne Tardiff,ou=Management,dc=bitwarden,dc=com", - email: "TardiffM@0ed116231128466cad659b85d73b9c7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annabella Vogel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Annabella Vogel,ou=Peons,dc=bitwarden,dc=com", - email: "VogelA@240320ec20894b66932f0d930796bec9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Santiago Lorenzo,ou=Product Development,dc=bitwarden,dc=com", - email: "LorenzoS@783cff68e50c48949cc0f27986272654.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bibbie Zeng,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZengB@135bb9fa72e24dc8b937d7f87525e62d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ferdinand Czarnecki,ou=Janitorial,dc=bitwarden,dc=com", - email: "CzarnecF@6c799d8435134ca299840a473c03c953.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farzin Depooter,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Farzin Depooter,ou=Product Testing,dc=bitwarden,dc=com", - email: "DepooteF@7ea8c6e071cb415baa4ccfac0bf339ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denys Paone,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Denys Paone,ou=Management,dc=bitwarden,dc=com", - email: "PaoneD@a8abb07edeb74ec1ae70796a921d4f89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ghassan Payne,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ghassan Payne,ou=Administrative,dc=bitwarden,dc=com", - email: "PayneG@abbaec0735d04a0996e4b288ba069955.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heida Cripps,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Heida Cripps,ou=Management,dc=bitwarden,dc=com", - email: "CrippsH@5857bd6862ae44e0abdb84cc22875a30.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sayed Belaire,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sayed Belaire,ou=Human Resources,dc=bitwarden,dc=com", - email: "BelaireS@40cd70dd1d24483692f5533e0ae7157a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shelton Zumhagen,ou=Payroll,dc=bitwarden,dc=com", - email: "ZumhageS@1567184d0d9f4bd798c9d76aae00fe9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sileas Brungardt,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sileas Brungardt,ou=Management,dc=bitwarden,dc=com", - email: "BrungarS@99efb52676a5438d8f4dfeb830e52009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cantrell Seregelyi,ou=Administrative,dc=bitwarden,dc=com", - email: "SeregelC@ba472466323f4495990396411f318b4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicholas Shupe,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nicholas Shupe,ou=Peons,dc=bitwarden,dc=com", - email: "ShupeN@ac9bf0e4278e4b36812b33be5aa4f608.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shayna Guinnane,ou=Janitorial,dc=bitwarden,dc=com", - email: "GuinnanS@f88dd8b6188242cc853f83412105868d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margaret Binda,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Margaret Binda,ou=Peons,dc=bitwarden,dc=com", - email: "BindaM@0ec5cd8f3a4c4de5a7f274f9d3332893.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryAnn Windom,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=MaryAnn Windom,ou=Peons,dc=bitwarden,dc=com", - email: "WindomM@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cammie Lobello,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cammie Lobello,ou=Payroll,dc=bitwarden,dc=com", - email: "LobelloC@d4ad583ecaae406097e581a7aec5a780.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HangTong Shek,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=HangTong Shek,ou=Product Development,dc=bitwarden,dc=com", - email: "ShekH@edda584dd7a3409daa4b2eabe9e2cdb4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cyrine Yoshioka,ou=Product Testing,dc=bitwarden,dc=com", - email: "YoshiokC@abae44a8c9154a558b8ee514a89fd6ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Engin Mersinger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Engin Mersinger,ou=Human Resources,dc=bitwarden,dc=com", - email: "MersingE@a424c942226a48928880fd6debd4c0c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebbecca Perina,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rebbecca Perina,ou=Management,dc=bitwarden,dc=com", - email: "PerinaR@89a8ded54db64032804dc4a0a9dd8e92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Piero Preece,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Piero Preece,ou=Peons,dc=bitwarden,dc=com", - email: "PreeceP@fc3a6a2ed2a041edaaee095273406b72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pradip Draffin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pradip Draffin,ou=Human Resources,dc=bitwarden,dc=com", - email: "DraffinP@315eb199a17945298e19ac4cd2657bca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gaffney Bowler,ou=Human Resources,dc=bitwarden,dc=com", - email: "BowlerG@98febd962501443b89a9e8bfacf12a9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacynth Etemad,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jacynth Etemad,ou=Administrative,dc=bitwarden,dc=com", - email: "EtemadJ@8942e77394054acf85b23cffda0e66d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brittany Pokinko,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brittany Pokinko,ou=Management,dc=bitwarden,dc=com", - email: "PokinkoB@beb04887c3a74fa0ae74089e879db636.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeannot Rch,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jeannot Rch,ou=Product Testing,dc=bitwarden,dc=com", - email: "RchJ@71f49fd634ac4515894d5fd3319ef9a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wiebren Zaia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wiebren Zaia,ou=Product Development,dc=bitwarden,dc=com", - email: "ZaiaW@565c1161bdcb416b9e8012a23ab58823.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlyn Kell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Karlyn Kell,ou=Product Testing,dc=bitwarden,dc=com", - email: "KellK@0be01d83222f46f7842093c364d584c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noriko Devenny,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Noriko Devenny,ou=Janitorial,dc=bitwarden,dc=com", - email: "DevennyN@43188b75c2e34348ad81287ed476a6be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sharleen Sutherland,ou=Janitorial,dc=bitwarden,dc=com", - email: "SutherlS@29cf82166a6a4ea0989e7e7b62bf4159.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=MinhPhuc Racioppi,ou=Administrative,dc=bitwarden,dc=com", - email: "RacioppM@9daad43b51a94c0ca7959dc6c27a0690.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rozelle Chisolm,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChisolmR@c10a1f2c3750409ea6ba15a45a2d3288.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Porfirio Epperson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Porfirio Epperson,ou=Product Development,dc=bitwarden,dc=com", - email: "EppersoP@5411fa97ed104161bed6dae71e8cb050.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linnet Streight,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Linnet Streight,ou=Management,dc=bitwarden,dc=com", - email: "StreighL@149bc1b766d74419a516a7f2cbdf7f66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rici Hartkopf,ou=Janitorial,dc=bitwarden,dc=com", - email: "HartkopR@2376664dd9b549139927cefdacae1cbe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tomi Bridges,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tomi Bridges,ou=Management,dc=bitwarden,dc=com", - email: "BridgesT@df6375b797c34567a9e4770a61e55877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerardo Walia,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gerardo Walia,ou=Management,dc=bitwarden,dc=com", - email: "WaliaG@b2d1290fcbcc4431adfadb5c58eee36e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hailee Corace,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hailee Corace,ou=Administrative,dc=bitwarden,dc=com", - email: "CoraceH@01cc6006ef4f434db665e00d7eacb9bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=VuHoan Kehler,ou=Product Testing,dc=bitwarden,dc=com", - email: "KehlerV@c6c3f852cc6d4b32801ebdde9e3265ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Munir Copes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Munir Copes,ou=Human Resources,dc=bitwarden,dc=com", - email: "CopesM@16434353c1084964814de6cc676be364.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susan Fowler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Susan Fowler,ou=Product Testing,dc=bitwarden,dc=com", - email: "FowlerS@d5a1c908aa0542dcbca729ee2090c302.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Randhir Bushnik,ou=Human Resources,dc=bitwarden,dc=com", - email: "BushnikR@d0f7f6e663ab4fffa570f6ef849a4349.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ethelyn Budimirovic,ou=Product Development,dc=bitwarden,dc=com", - email: "BudimirE@a9b974f8337643ea8609cd0bff25a863.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rozanne Fouillard,ou=Human Resources,dc=bitwarden,dc=com", - email: "FouillaR@7f44259fadc8467aa5ed92152f0f037e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caye Setiawan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Caye Setiawan,ou=Janitorial,dc=bitwarden,dc=com", - email: "SetiawaC@899a157c5fcb4f20a59c759f3c7d4d65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daffy Hering,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Daffy Hering,ou=Administrative,dc=bitwarden,dc=com", - email: "HeringD@0ffd7dc252424626a20bcce6a53d823f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YoungJune Radford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=YoungJune Radford,ou=Human Resources,dc=bitwarden,dc=com", - email: "RadfordY@e8e76146b3cf4785898d03ad6423f9d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brana Susanto,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Brana Susanto,ou=Administrative,dc=bitwarden,dc=com", - email: "SusantoB@bc040a54299440bb80e6ade2d1ef97a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neile Niles,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Neile Niles,ou=Janitorial,dc=bitwarden,dc=com", - email: "NilesN@0e50776aafcb4d6c9860210852e9591e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joydeep Loos,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Joydeep Loos,ou=Product Development,dc=bitwarden,dc=com", - email: "LoosJ@3a57e18936584b66bbd6dab5016a2418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sohail Pilon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sohail Pilon,ou=Product Development,dc=bitwarden,dc=com", - email: "PilonS@ba461e5be7394399aa72f7b05ba2fea3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisse Odum,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melisse Odum,ou=Management,dc=bitwarden,dc=com", - email: "OdumM@52253f5384a34a7d887f92c29a569c37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Venkatakrishna Beardmore,ou=Management,dc=bitwarden,dc=com", - email: "BeardmoV@ae5af7142c7f484e89f0df3a4fa0a0c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mellisa Lisenchuk,ou=Peons,dc=bitwarden,dc=com", - email: "LisenchM@d63eb14c036c489a893a7b144de7e3ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shay Fouchard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shay Fouchard,ou=Management,dc=bitwarden,dc=com", - email: "FoucharS@5acaf493974e4933b27d5e78e25585d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lesly Checkland,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lesly Checkland,ou=Peons,dc=bitwarden,dc=com", - email: "ChecklaL@9969b0f8851149aaa64ff3c67e9b6c53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roelof Balascak,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roelof Balascak,ou=Product Development,dc=bitwarden,dc=com", - email: "BalascaR@7f18e62561544141b6ccfe39f532339f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Magdalena Corpening,ou=Product Testing,dc=bitwarden,dc=com", - email: "CorpeniM@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miguel Skof,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Miguel Skof,ou=Product Development,dc=bitwarden,dc=com", - email: "SkofM@3bd0291e8cff49548689d7d941f27f3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gabriellia Todaro,ou=Administrative,dc=bitwarden,dc=com", - email: "TodaroG@bdf4207a20c5486ca943568e769c8344.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Larisa Hinkel,ou=Product Testing,dc=bitwarden,dc=com", - email: "HinkelL@1ea1e70e2ff14b90b31a900ccfe17f79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zdenek Gahan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Zdenek Gahan,ou=Peons,dc=bitwarden,dc=com", - email: "GahanZ@0b154eee289f4cc1b4a09755e63f9b87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lashonda Ramkissoon,ou=Management,dc=bitwarden,dc=com", - email: "RamkissL@c25e2fe1ca694d8a8fe5c23754b47571.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Romona TestNTMVAA,ou=Product Development,dc=bitwarden,dc=com", - email: "TestNTMR@38fb869ba3244313992623d5e5856ca5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrile Lian,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Merrile Lian,ou=Payroll,dc=bitwarden,dc=com", - email: "LianM@55c5ce522f7b4db190d4d14360a9a4fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Engracia Messick,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Engracia Messick,ou=Administrative,dc=bitwarden,dc=com", - email: "MessickE@9befe039acaf4d578a86c80d677d5d49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kamillah Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", - email: "WasylykK@1f8fe58d7a114a4583fc58f63a22a5b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caron Sammon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Caron Sammon,ou=Janitorial,dc=bitwarden,dc=com", - email: "SammonC@db884c1075024ecfa29e3ec139ce7504.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charlotta McLennan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Charlotta McLennan,ou=Management,dc=bitwarden,dc=com", - email: "McLennaC@9d8d4067dbc148d3a4106bfdfacf427c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lyssa Kuryliak,ou=Human Resources,dc=bitwarden,dc=com", - email: "KuryliaL@548e0585ebf342b985467eca55f4e5f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dexter Follett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dexter Follett,ou=Human Resources,dc=bitwarden,dc=com", - email: "FollettD@22f8ba9a65234f13bdf03b22a8df34d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Una Ausley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Una Ausley,ou=Management,dc=bitwarden,dc=com", - email: "AusleyU@e5bf2a74f7d948bb97855f44d83972fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adria Calow,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Adria Calow,ou=Product Development,dc=bitwarden,dc=com", - email: "CalowA@95930feb4c9b47f8b0d685739e06e5ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alora Bamfo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alora Bamfo,ou=Janitorial,dc=bitwarden,dc=com", - email: "BamfoA@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bharat Wiederhold,ou=Administrative,dc=bitwarden,dc=com", - email: "WiederhB@c533c4ce9d2d4ce095673ea3b06d665b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gunnar Molani,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gunnar Molani,ou=Peons,dc=bitwarden,dc=com", - email: "MolaniG@21d4927a612549a1b797c77aee423501.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sabina Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", - email: "JayamanS@c41f8f7aea354718b6ea3277359c3684.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenee Marasco,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lenee Marasco,ou=Payroll,dc=bitwarden,dc=com", - email: "MarascoL@a63636764be2417c8862dba36d524669.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Byron Shelegey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Byron Shelegey,ou=Management,dc=bitwarden,dc=com", - email: "ShelegeB@bf0924ca7ffa40efa64182b434d3b054.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charline Jago,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Charline Jago,ou=Payroll,dc=bitwarden,dc=com", - email: "JagoC@dede4ef26e0047b5ae95d810fbe16f29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anette Holloway,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anette Holloway,ou=Janitorial,dc=bitwarden,dc=com", - email: "HollowaA@3835da84e4cb44b5a38c776421814f8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florida Polashock,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Florida Polashock,ou=Human Resources,dc=bitwarden,dc=com", - email: "PolashoF@9bca7e1fa66343078f8d2f441ac03fca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Snair Mcshane,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Snair Mcshane,ou=Janitorial,dc=bitwarden,dc=com", - email: "McshaneS@4b02224ed79d49068514723b7495859b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Selcuk Fogelson,ou=Product Development,dc=bitwarden,dc=com", - email: "FogelsoS@54ce292eb157498aac7b1683764ec867.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jackson Schraner,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jackson Schraner,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchraneJ@ab8c896427cc47d7a32f95081ee3cada.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=ThanhHoa Fisprod,ou=Management,dc=bitwarden,dc=com", - email: "FisprodT@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherianne Tidd,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cherianne Tidd,ou=Payroll,dc=bitwarden,dc=com", - email: "TiddC@848b025264d14e669cec02146f987418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisent Sampat,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Melisent Sampat,ou=Human Resources,dc=bitwarden,dc=com", - email: "SampatM@5297f06d12e84c7793e176a6624333e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffy Udall,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tiffy Udall,ou=Payroll,dc=bitwarden,dc=com", - email: "UdallT@a80405df7aef4b3db059a6cc73288f61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adeline Cruz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Adeline Cruz,ou=Product Testing,dc=bitwarden,dc=com", - email: "CruzA@068a0b6470f0444b9815d3ef36001ebd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tuan Fenati,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tuan Fenati,ou=Janitorial,dc=bitwarden,dc=com", - email: "FenatiT@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ljilyana Kanungo,ou=Human Resources,dc=bitwarden,dc=com", - email: "KanungoL@2a906f1560284502a1b19f87829f93ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=TiongHoe Cuthill,ou=Product Testing,dc=bitwarden,dc=com", - email: "CuthillT@e059f798bf444774a99e078fccd4a4f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaclyn Hook,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jaclyn Hook,ou=Payroll,dc=bitwarden,dc=com", - email: "HookJ@5c9986617ae9407ea5a172b5f4cff660.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucky DeBaets,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lucky DeBaets,ou=Payroll,dc=bitwarden,dc=com", - email: "DeBaetsL@8b6f5b0e3bf1445e87a0ee0539e4853f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toma Belcher,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Toma Belcher,ou=Janitorial,dc=bitwarden,dc=com", - email: "BelcherT@e2cd61401de9414191cd26ece93eb8bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ayda Ricketson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ayda Ricketson,ou=Administrative,dc=bitwarden,dc=com", - email: "RicketsA@102d4dd16d9e43f0b636c4011b41a3bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edie Fuller,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Edie Fuller,ou=Product Development,dc=bitwarden,dc=com", - email: "FullerE@6ce18e31fee44ca6a1d60162c1ff34ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrienne Teacher,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Adrienne Teacher,ou=Product Development,dc=bitwarden,dc=com", - email: "TeacherA@a8f35a5fbab443c4bb234c040b553494.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karilynn Sokolowski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karilynn Sokolowski,ou=Management,dc=bitwarden,dc=com", - email: "SokolowK@59b79c4bb1de445bb80956c31a33b163.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edna Etemad,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Edna Etemad,ou=Management,dc=bitwarden,dc=com", - email: "EtemadE@268e542432d8452492860decdd327bf6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heike Hoxie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Heike Hoxie,ou=Payroll,dc=bitwarden,dc=com", - email: "HoxieH@8237422e949f4acf92d97f787e6bf098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noelyn Snair,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Noelyn Snair,ou=Human Resources,dc=bitwarden,dc=com", - email: "SnairN@76bdb182929147bbb5f99a407f7da581.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annis Yung,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Annis Yung,ou=Product Testing,dc=bitwarden,dc=com", - email: "YungA@3dedccc8ea03468b9d15ac11ca05c230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olenka Gulis,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Olenka Gulis,ou=Human Resources,dc=bitwarden,dc=com", - email: "GulisO@4b5741ffe1ab4f72819c8cda7b7df64c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeanna Brousseau,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jeanna Brousseau,ou=Management,dc=bitwarden,dc=com", - email: "BrousseJ@d9a304fc4b9f41c9950557d3404312a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nikolaos Farley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nikolaos Farley,ou=Management,dc=bitwarden,dc=com", - email: "FarleyN@3bf5412f9df744cdbfb41ee6ad860514.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sydney Olivares,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sydney Olivares,ou=Management,dc=bitwarden,dc=com", - email: "OlivareS@ff087739d92a453c8986a21bbdeb6b99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lary MacMillanBrown,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lary MacMillanBrown,ou=Management,dc=bitwarden,dc=com", - email: "MacMillL@4d9f7b6850444a8d801b43c9573addba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Makam Junaid,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Makam Junaid,ou=Payroll,dc=bitwarden,dc=com", - email: "JunaidM@bac802e94a68427ebf6e1f43dd3c8d74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janson Breon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Janson Breon,ou=Human Resources,dc=bitwarden,dc=com", - email: "BreonJ@efeb1d35d7fb4a6698c2e450cd5716f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Persis Bourret,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Persis Bourret,ou=Product Testing,dc=bitwarden,dc=com", - email: "BourretP@8c2547ddd0e542ea9eba4c33bf844565.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nonah Naylor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nonah Naylor,ou=Peons,dc=bitwarden,dc=com", - email: "NaylorN@0f8c40ba5d0843abbe9b0c196da09ca0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delmar Goold,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Delmar Goold,ou=Management,dc=bitwarden,dc=com", - email: "GooldD@6762e9a5ac5b4baaa52aa304581ce2d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noslab Despres,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Noslab Despres,ou=Product Development,dc=bitwarden,dc=com", - email: "DespresN@89a663a1a18c4ca7afe3412fbf2c4e97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonida Maloney,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Leonida Maloney,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaloneyL@bc9d8b4b30864998bd20fc77d040bd74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heida Witzmann,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Heida Witzmann,ou=Product Development,dc=bitwarden,dc=com", - email: "WitzmanH@98503141bef84f26be5517cb6d1c3fb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Azhar Klug,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Azhar Klug,ou=Human Resources,dc=bitwarden,dc=com", - email: "KlugA@6efed6dc63bd46768f25dd1a717dc7fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynnette Mirande,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lynnette Mirande,ou=Product Development,dc=bitwarden,dc=com", - email: "MirandeL@1112fe1439844e3ca725d40b9996ff1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esmond Ronald,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Esmond Ronald,ou=Management,dc=bitwarden,dc=com", - email: "RonaldE@364738d989114590842291a79ecffd92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruthie Weyand,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ruthie Weyand,ou=Administrative,dc=bitwarden,dc=com", - email: "WeyandR@99cfb2b06d8c4ef1a54ae78356fa1859.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ileane DeWitte,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ileane DeWitte,ou=Peons,dc=bitwarden,dc=com", - email: "DeWitteI@6e1688424ec244adb10f2e8d17d9a231.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chocs Lanava,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Chocs Lanava,ou=Product Development,dc=bitwarden,dc=com", - email: "LanavaC@e96c6aa872a44f27a69d8b17ae3ca387.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abu Hubbard,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Abu Hubbard,ou=Peons,dc=bitwarden,dc=com", - email: "HubbardA@7b4016aa058a4e80b807fb4d0e4a0b36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felita Kaps,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Felita Kaps,ou=Janitorial,dc=bitwarden,dc=com", - email: "KapsF@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christin Shea,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Christin Shea,ou=Administrative,dc=bitwarden,dc=com", - email: "SheaC@cda870670aa345148330b4790dab0c4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haroon Trese,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Haroon Trese,ou=Payroll,dc=bitwarden,dc=com", - email: "TreseH@37a456ace6484592af9ec4787e1dcc5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norbert Ruest,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Norbert Ruest,ou=Human Resources,dc=bitwarden,dc=com", - email: "RuestN@8504384638364f5d9fea2c2c4a28b90e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Farzin Gleditsch,ou=Janitorial,dc=bitwarden,dc=com", - email: "GleditsF@9ce658881e8c455194b88b370a33621e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Woody Bourlet,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Woody Bourlet,ou=Administrative,dc=bitwarden,dc=com", - email: "BourletW@b5a0b2f2ff6247cdb5697d2b9d25240d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saied DeCristofaro,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Saied DeCristofaro,ou=Peons,dc=bitwarden,dc=com", - email: "DeCristS@7011cb45501a4d689c26e15dc899ef15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dael Lariviere,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dael Lariviere,ou=Administrative,dc=bitwarden,dc=com", - email: "LarivieD@864d7fffc05349a6937099b5cb95ba17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=XiaoMing Coddington,ou=Product Testing,dc=bitwarden,dc=com", - email: "CoddingX@b37b0ee1c3d74b79bd0b37182c5a200f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miro Tabor,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Miro Tabor,ou=Product Testing,dc=bitwarden,dc=com", - email: "TaborM@be2fe06854024f6cb36c05d73bae2406.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Liduine Witchlow,ou=Human Resources,dc=bitwarden,dc=com", - email: "WitchloL@118b35796ca44494b05a6b698be1d2a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Der Fernando,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Der Fernando,ou=Product Testing,dc=bitwarden,dc=com", - email: "FernandD@a4f85fecd69348a29728c8e242a790a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bunny Ruzycki,ou=Human Resources,dc=bitwarden,dc=com", - email: "RuzyckiB@1a851fc2814040d38d9f2abd59e828ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivianne McCrain,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vivianne McCrain,ou=Peons,dc=bitwarden,dc=com", - email: "McCrainV@b70f11362a424a69841534d3b1179197.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sheri Sobolewski,ou=Janitorial,dc=bitwarden,dc=com", - email: "SobolewS@0d449385b7a34ab0b858a2ab5b17455a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marlane Lingafelter,ou=Administrative,dc=bitwarden,dc=com", - email: "LingafeM@92a30faf0295450b9b007cc0615a2f6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tetsuo VanBenthem,ou=Management,dc=bitwarden,dc=com", - email: "VanBentT@2e08496305794efd85d6a479c697a5c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sarina Lacasse,ou=Human Resources,dc=bitwarden,dc=com", - email: "LacasseS@0c478e577f6c43f08e0c7154f215c7af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelina Todloski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Madelina Todloski,ou=Product Testing,dc=bitwarden,dc=com", - email: "TodloskM@ae68135eee9d4a26a1a58584ca226451.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vijai Combaz,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vijai Combaz,ou=Management,dc=bitwarden,dc=com", - email: "CombazV@6b94ae7a6d6747c8ba4de4161bb85768.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sohayla Neate,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sohayla Neate,ou=Product Development,dc=bitwarden,dc=com", - email: "NeateS@291647d2cd1d44a99560699f40c48fb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Karrie Gagnon,ou=Product Testing,dc=bitwarden,dc=com", - email: "GagnonK@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weldon Robustness,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Weldon Robustness,ou=Human Resources,dc=bitwarden,dc=com", - email: "RobustnW@4154a37503e24114bfe5421ecb627bb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Freddy Jachym,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Freddy Jachym,ou=Management,dc=bitwarden,dc=com", - email: "JachymF@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eliezer Assistance,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eliezer Assistance,ou=Management,dc=bitwarden,dc=com", - email: "AssistaE@2848b689935d4648b6061c4adab9255b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Stevana Acelvari,ou=Human Resources,dc=bitwarden,dc=com", - email: "AcelvarS@5b4286bc4af74709a0f65475a29d7c53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orelia Pisani,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Orelia Pisani,ou=Peons,dc=bitwarden,dc=com", - email: "PisaniO@572f2e7cd4c540ba82bdf3291fc77e32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelton Spencer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shelton Spencer,ou=Product Testing,dc=bitwarden,dc=com", - email: "SpencerS@6032a8b4894b42dc8d3f57130a5d8ef5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jonthan Khoury,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jonthan Khoury,ou=Product Development,dc=bitwarden,dc=com", - email: "KhouryJ@95a0714026f54037aaa182b092f39903.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tricord Bresee,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tricord Bresee,ou=Product Testing,dc=bitwarden,dc=com", - email: "BreseeT@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julietta Tillman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Julietta Tillman,ou=Peons,dc=bitwarden,dc=com", - email: "TillmanJ@44b2450bcee645ea9f41c30f5aa03fe5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Almeria Falke,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Almeria Falke,ou=Peons,dc=bitwarden,dc=com", - email: "FalkeA@ce68beaef1d3485083c2f31b35928b95.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aaron Deakin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aaron Deakin,ou=Product Development,dc=bitwarden,dc=com", - email: "DeakinA@1d4290d63a1444df823292a25ec59d0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Soyeh Noy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Soyeh Noy,ou=Product Testing,dc=bitwarden,dc=com", - email: "NoyS@1174f1cfd4db4d4e8122f3cc77544aa8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sylvia Fawcett,ou=Janitorial,dc=bitwarden,dc=com", - email: "FawcettS@b39d8f666f1848e6abb69d85d224a354.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jerrilee Purnell,ou=Product Development,dc=bitwarden,dc=com", - email: "PurnellJ@a035bec181ea4cd9abd3953e80704bef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genia Mooken,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Genia Mooken,ou=Product Development,dc=bitwarden,dc=com", - email: "MookenG@6874478c22ee4fbf87473317dba0c7aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norton Chronowic,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Norton Chronowic,ou=Management,dc=bitwarden,dc=com", - email: "ChronowN@3628e26a28c645d7955cf8b078dbe56c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thom Hink,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Thom Hink,ou=Product Testing,dc=bitwarden,dc=com", - email: "HinkT@c337fda07bbe40e2a0aa0860ad7ba681.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanny Swepston,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vanny Swepston,ou=Peons,dc=bitwarden,dc=com", - email: "SwepstoV@88f574b1f6d5492a903d25ce8477bcfa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mabel Bycenko,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mabel Bycenko,ou=Peons,dc=bitwarden,dc=com", - email: "BycenkoM@3c89e3a711ca4ba7bd9dc3429c71b28e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiyoon Chau,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kiyoon Chau,ou=Administrative,dc=bitwarden,dc=com", - email: "ChauK@c7cfbecdcc9244d89ede1a6fe93b790c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nel Addetia,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nel Addetia,ou=Janitorial,dc=bitwarden,dc=com", - email: "AddetiaN@4fe9499fc7c8456094066466aa426118.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emeline Willmore,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Emeline Willmore,ou=Human Resources,dc=bitwarden,dc=com", - email: "WillmorE@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maged Bernardo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maged Bernardo,ou=Human Resources,dc=bitwarden,dc=com", - email: "BernardM@bc873160594f405e8694c4dc707b88ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Murry Okafo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Murry Okafo,ou=Management,dc=bitwarden,dc=com", - email: "OkafoM@7857a73234d945c08313b465094df60f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vita Coursol,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vita Coursol,ou=Peons,dc=bitwarden,dc=com", - email: "CoursolV@a69557e189c747b59333670f3ebf3a1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kellina Hoffmann,ou=Janitorial,dc=bitwarden,dc=com", - email: "HoffmanK@9bec1f480eec4baea66a1e4c2e434262.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Makiko Radojicic,ou=Product Testing,dc=bitwarden,dc=com", - email: "RadojicM@7e09e43498f24a77bbdff5fc55db68c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jelene Rivest,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jelene Rivest,ou=Janitorial,dc=bitwarden,dc=com", - email: "RivestJ@53f0c5d55dd14a429126d3d8cfc0b6d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magda Sims,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Magda Sims,ou=Human Resources,dc=bitwarden,dc=com", - email: "SimsM@a2e6c1d1859c490496277e66f6d6fefe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fanni Kelly,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fanni Kelly,ou=Janitorial,dc=bitwarden,dc=com", - email: "KellyF@30ee8b21e1bc41c1a7110da46046174f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phyl Komatsu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Phyl Komatsu,ou=Product Development,dc=bitwarden,dc=com", - email: "KomatsuP@7f95f5d6a463478d81afd013c82a23e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blondie Bessette,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Blondie Bessette,ou=Administrative,dc=bitwarden,dc=com", - email: "BessettB@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zonda Marette,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zonda Marette,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaretteZ@d8b58b77cc0a4df1b559d499a84b4151.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gunfer Szaplonczay,ou=Product Testing,dc=bitwarden,dc=com", - email: "SzaplonG@451ef49e42ac453eb09b3d6157d37259.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tavis Bovee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tavis Bovee,ou=Product Development,dc=bitwarden,dc=com", - email: "BoveeT@15c43eefe4c649db9c3b5dfcf2c7ab4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vittorio Depooter,ou=Product Testing,dc=bitwarden,dc=com", - email: "DepooteV@b6dc43d5b48948bcabf31d42dd4a3286.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rafaelia Salgado,ou=Human Resources,dc=bitwarden,dc=com", - email: "SalgadoR@87d497e060994207b70ef7bd8c3d6175.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurore Danker,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Aurore Danker,ou=Human Resources,dc=bitwarden,dc=com", - email: "DankerA@308bfff65d134099bb462e88bbd36698.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yawar Benjes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yawar Benjes,ou=Human Resources,dc=bitwarden,dc=com", - email: "BenjesY@a409de982bd04e36819d909bb7350629.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jayme Casey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jayme Casey,ou=Product Development,dc=bitwarden,dc=com", - email: "CaseyJ@786bf687e1984b2da694b96e1738976f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leanne Yurchuk,ou=Product Development,dc=bitwarden,dc=com", - email: "YurchukL@340ab58f2875411f8670d5765360d070.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daisi Encomenderos,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Daisi Encomenderos,ou=Management,dc=bitwarden,dc=com", - email: "EncomenD@65740d0bd6fb4b44a86d2ab249218002.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Biplab Caton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Biplab Caton,ou=Peons,dc=bitwarden,dc=com", - email: "CatonB@3466b47e8afc4d9d8ef0f5f1dbd0e25b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Stu WyzgaTaplin,ou=Payroll,dc=bitwarden,dc=com", - email: "WyzgaTaS@3ad303e52239495a9a4593b90983590a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Izak Roussin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Izak Roussin,ou=Payroll,dc=bitwarden,dc=com", - email: "RoussinI@1ae1933dac97453a926e3efbe8067be8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Montreal Mersch,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Montreal Mersch,ou=Product Testing,dc=bitwarden,dc=com", - email: "MerschM@0a5d24e43a114c95ae7921fe70fcb8e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sybille Shwed,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sybille Shwed,ou=Management,dc=bitwarden,dc=com", - email: "ShwedS@1c2b637d619c43c18e3692a1390e6b11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gordie Oey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gordie Oey,ou=Product Development,dc=bitwarden,dc=com", - email: "OeyG@a7e63ce77d0c4ec099d6b11874b8367f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rosmunda Artzer,ou=Payroll,dc=bitwarden,dc=com", - email: "ArtzerR@d3fe6fead68f4275b09ee98e35e3f745.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Radha Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", - email: "HazeldiR@6036cb6dd84a4edb923448591ed00b7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jester Lystiuk,ou=Product Testing,dc=bitwarden,dc=com", - email: "LystiukJ@861f2fb047d7400fa0a3213fd039399d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nerte Diederichs,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nerte Diederichs,ou=Administrative,dc=bitwarden,dc=com", - email: "DiederiN@fbefb364d68b4da5a9c97a7882a4fc8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annemarie Harrell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Annemarie Harrell,ou=Product Development,dc=bitwarden,dc=com", - email: "HarrellA@cd7ca9bf5f46417f8ba8aba6c8f7dba0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cynthea Guirguis,ou=Product Development,dc=bitwarden,dc=com", - email: "GuirguiC@f397541d0e814623b745c4fbd77b1a79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ara Darcel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ara Darcel,ou=Product Testing,dc=bitwarden,dc=com", - email: "DarcelA@9373e277d74d47d1862d60d665ff05cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lincoln TestNTMVAA,ou=Product Testing,dc=bitwarden,dc=com", - email: "TestNTML@425e3df8b9654b8fb5fafe68899d23b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Huelsman Quizmaster,ou=Administrative,dc=bitwarden,dc=com", - email: "QuizmasH@677b24267b6440e9ad6bebb082604f25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eng Mangum,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eng Mangum,ou=Administrative,dc=bitwarden,dc=com", - email: "MangumE@2351067d51a3467b820158a0674b058a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaye Dulude,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kaye Dulude,ou=Management,dc=bitwarden,dc=com", - email: "DuludeK@46b414ac9141409e8e0356bfba101dbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dinny Farrell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dinny Farrell,ou=Administrative,dc=bitwarden,dc=com", - email: "FarrellD@638ddd5f5c874c1fbe017c3aa0d978c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pru McIntomny,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pru McIntomny,ou=Management,dc=bitwarden,dc=com", - email: "McIntomP@fac421ca650e46139878bbd5f7498e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Faizal Lesperance,ou=Product Testing,dc=bitwarden,dc=com", - email: "LesperaF@b70eba4ae8d744b9a93b1b86ae3ae00c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosemary Liao,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rosemary Liao,ou=Product Development,dc=bitwarden,dc=com", - email: "LiaoR@14f0a617fa68422cb151ec721a7c3c6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ketty Torrens,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ketty Torrens,ou=Peons,dc=bitwarden,dc=com", - email: "TorrensK@ebe018472f8e47ffa07ca073c7579b78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dinny Meggitt,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dinny Meggitt,ou=Administrative,dc=bitwarden,dc=com", - email: "MeggittD@8670b7b167164a8b9ce71d78ae9cb652.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashien Moran,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ashien Moran,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoranA@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dacy Rolnick,ou=Human Resources,dc=bitwarden,dc=com", - email: "RolnickD@380e18f37efc4c72a3aed9a58017ec05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nerissa Brkich,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nerissa Brkich,ou=Management,dc=bitwarden,dc=com", - email: "BrkichN@5a9a5364a178494b8230100acff2f7c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ioan Usrouter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ioan Usrouter,ou=Product Development,dc=bitwarden,dc=com", - email: "UsrouteI@ce1152a8e6c84ca8a342fb4f07adbf4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bekki Blimkie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bekki Blimkie,ou=Payroll,dc=bitwarden,dc=com", - email: "BlimkieB@e4ba3a04463843c4bb028511bc17c6ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Imtaz Pastuszok,ou=Payroll,dc=bitwarden,dc=com", - email: "PastuszI@990be6633e6a426c826b4ed97cd246bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryn Spieker,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bryn Spieker,ou=Payroll,dc=bitwarden,dc=com", - email: "SpiekerB@71f6d4707a2444dbb86b027f8a679d91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vijya Torian,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vijya Torian,ou=Payroll,dc=bitwarden,dc=com", - email: "TorianV@342a4bb5e4f14c8ea1f64e893deb961c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teiichi Marconi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Teiichi Marconi,ou=Product Development,dc=bitwarden,dc=com", - email: "MarconiT@623538f66c6d44c9949856d7b9d692ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allegra Chaaban,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Allegra Chaaban,ou=Peons,dc=bitwarden,dc=com", - email: "ChaabanA@46a1aedcb791477985797ad9b9abe5c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mair Wefers,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mair Wefers,ou=Administrative,dc=bitwarden,dc=com", - email: "WefersM@49672ac4642e4eb39566d542af0eef8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kerri Turbes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kerri Turbes,ou=Peons,dc=bitwarden,dc=com", - email: "TurbesK@34766460128a4ee582041f543b9bd242.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debora Dion,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Debora Dion,ou=Administrative,dc=bitwarden,dc=com", - email: "DionD@1a2601d237fb4358a83d77ca67ea5fc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gertrude Aldhizer,ou=Payroll,dc=bitwarden,dc=com", - email: "AldhizeG@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erdem Cowen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Erdem Cowen,ou=Peons,dc=bitwarden,dc=com", - email: "CowenE@202ab1834ba741fea5a2334a7dedf7d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thierry Crockett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Thierry Crockett,ou=Human Resources,dc=bitwarden,dc=com", - email: "CrocketT@3979193f52104b6298b8b064a2ea1e8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karrah Kassam,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Karrah Kassam,ou=Janitorial,dc=bitwarden,dc=com", - email: "KassamK@44cbc1ffc61f4407b46df0ad2810f7c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odile Dbs,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Odile Dbs,ou=Management,dc=bitwarden,dc=com", - email: "DbsO@16315dd92dc84985a220069911440155.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Loleta Mulqueen,ou=Administrative,dc=bitwarden,dc=com", - email: "MulqueeL@e859d60c0ffe4559a718b23dca588771.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lacy Haughwout,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lacy Haughwout,ou=Management,dc=bitwarden,dc=com", - email: "HaughwoL@b42b6a99e6224e4c89291ebf380e3cbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jimson Volfe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jimson Volfe,ou=Product Development,dc=bitwarden,dc=com", - email: "VolfeJ@1a4bc9dc35304b5f9c2dd94a61108938.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dede Billingham,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dede Billingham,ou=Janitorial,dc=bitwarden,dc=com", - email: "BillingD@280e1fcf17ca42c7b9f1237963a3ba22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Domenic Rykwalder,ou=Payroll,dc=bitwarden,dc=com", - email: "RykwaldD@b8b0660e812e407ca6dcb94fde784926.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Estrellita Ramroop,ou=Product Testing,dc=bitwarden,dc=com", - email: "RamroopE@c73aa3a091e049f6a7996bb3eca7f8f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kissee Gowan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kissee Gowan,ou=Product Testing,dc=bitwarden,dc=com", - email: "GowanK@9eeaca65c53d4c879749fbda1cbf479e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eulalie Webber,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Eulalie Webber,ou=Product Development,dc=bitwarden,dc=com", - email: "WebberE@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Court Trefry,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Court Trefry,ou=Management,dc=bitwarden,dc=com", - email: "TrefryC@6f63c7f0bdc04832878e82c0e7196131.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claretta Kilcoin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Claretta Kilcoin,ou=Peons,dc=bitwarden,dc=com", - email: "KilcoinC@0714ade30c294e8fa73207b90b001e06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kassia Daaboul,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kassia Daaboul,ou=Product Development,dc=bitwarden,dc=com", - email: "DaaboulK@23ac82069da24dec85c6bfe8b5f2d4d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bekki Zagorsek,ou=Product Development,dc=bitwarden,dc=com", - email: "ZagorseB@225e1be6fb454e5cab9ce645e748d35d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weber Gu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Weber Gu,ou=Product Testing,dc=bitwarden,dc=com", - email: "GuW@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rank Courtney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rank Courtney,ou=Administrative,dc=bitwarden,dc=com", - email: "CourtneR@3087ee4d2688435e9ed4c4c6f3e8ba87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aaren Neustifter,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aaren Neustifter,ou=Management,dc=bitwarden,dc=com", - email: "NeustifA@f9c0f71d487646dca3eac1c7c5deeeaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chiarra Moroz,ou=Product Testing,dc=bitwarden,dc=com", - email: "MorozC@c3dcba6fd4804a9ab67d7734e84114c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clifford Forgues,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clifford Forgues,ou=Peons,dc=bitwarden,dc=com", - email: "ForguesC@b0e0a2bb3e4d4480b71edfd089eedd18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donnie Laverty,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Donnie Laverty,ou=Janitorial,dc=bitwarden,dc=com", - email: "LavertyD@7448491b00a74a3e95be2c2010be9a72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=How Sebastien,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=How Sebastien,ou=Peons,dc=bitwarden,dc=com", - email: "SebastiH@f759e44a1c504c63b3eae17c75b66fa2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hung Tabl,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hung Tabl,ou=Administrative,dc=bitwarden,dc=com", - email: "TablH@89d768777d16464796c6d90c8e8f013b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maye Atoui,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maye Atoui,ou=Payroll,dc=bitwarden,dc=com", - email: "AtouiM@92820cdfa8c3401089a4d22b2ae2009e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deva Currie,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Deva Currie,ou=Administrative,dc=bitwarden,dc=com", - email: "CurrieD@fae6085323bb4b59a529fb3b72784e6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivienne Bourk,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vivienne Bourk,ou=Payroll,dc=bitwarden,dc=com", - email: "BourkV@a84df3e5c9b34623ae9b4e8378e01b53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerber Kiernan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gerber Kiernan,ou=Peons,dc=bitwarden,dc=com", - email: "KiernanG@caa46152d3004d829aedead9d70579b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Me Muhammed,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Me Muhammed,ou=Product Testing,dc=bitwarden,dc=com", - email: "MuhammeM@280b34febbb74067854d58b8a20b3eb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ragui Lorenc,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ragui Lorenc,ou=Peons,dc=bitwarden,dc=com", - email: "LorencR@7d5f96a7021f46fdb7df38ea2101330d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorenza McCormick,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorenza McCormick,ou=Peons,dc=bitwarden,dc=com", - email: "McCormiL@b3a0ac978ba64a56a57f321d452537e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatrisa Malaher,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Beatrisa Malaher,ou=Peons,dc=bitwarden,dc=com", - email: "MalaherB@8522aa5b68484728b6db62d65a666456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffi Beverly,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tiffi Beverly,ou=Payroll,dc=bitwarden,dc=com", - email: "BeverlyT@01c5fecdf9e14e82bff74d9b9c368891.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Estrellita Bijons,ou=Product Testing,dc=bitwarden,dc=com", - email: "BijonsE@99adc70861e74db5b3e496e79ef1d82c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Analise Shiley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Analise Shiley,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShileyA@e51aa6debfeb4cc88c68dfc76ad89784.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fan Neander,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fan Neander,ou=Janitorial,dc=bitwarden,dc=com", - email: "NeanderF@8fd38b10138d41afbb37c8037aaf6377.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diamond Azer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Diamond Azer,ou=Payroll,dc=bitwarden,dc=com", - email: "AzerD@5d8901804e424468b0bef6e0378317d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorothee Azmak,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorothee Azmak,ou=Payroll,dc=bitwarden,dc=com", - email: "AzmakD@6882bb306b30484eac03893eca277bd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aloisia Svalesen,ou=Product Testing,dc=bitwarden,dc=com", - email: "SvaleseA@8e7d48bf3a0c469095e8b24ecc1dd148.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sydel MacGillivray,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sydel MacGillivray,ou=Peons,dc=bitwarden,dc=com", - email: "MacGillS@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martelle Filpus,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Martelle Filpus,ou=Product Testing,dc=bitwarden,dc=com", - email: "FilpusM@0f18718d8483421a96ceacb15a634c41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merunix Fadlallah,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Merunix Fadlallah,ou=Management,dc=bitwarden,dc=com", - email: "FadlallM@6dfbae5841184eee86f16ac4a1176697.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faz Seegobin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Faz Seegobin,ou=Janitorial,dc=bitwarden,dc=com", - email: "SeegobiF@71a24c1b73ef45498dfd1fbb9961fd57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ellie Hrvatin,ou=Product Development,dc=bitwarden,dc=com", - email: "HrvatinE@7fedbd7312884d269b87f028bb6e0f4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeffery Panek,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jeffery Panek,ou=Administrative,dc=bitwarden,dc=com", - email: "PanekJ@0c478e577f6c43f08e0c7154f215c7af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chip Billard,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chip Billard,ou=Janitorial,dc=bitwarden,dc=com", - email: "BillardC@f56fa15d6b7d4398bc29adc06e1de112.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tran Selbrede,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tran Selbrede,ou=Peons,dc=bitwarden,dc=com", - email: "SelbredT@af40db009e314d829eef59ff73dce913.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wade Boersma,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Wade Boersma,ou=Peons,dc=bitwarden,dc=com", - email: "BoersmaW@24bb0910ae8142189acd6bd1e9a01a9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quintana Huneault,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Quintana Huneault,ou=Administrative,dc=bitwarden,dc=com", - email: "HuneaulQ@0ffd7dc252424626a20bcce6a53d823f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coors Beerkens,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Coors Beerkens,ou=Administrative,dc=bitwarden,dc=com", - email: "BeerkenC@79a240440e8849ae9bc16c0dd8ed8e58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prudence Schacham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Prudence Schacham,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchachaP@5dc8fd12cec3417ebac3e0369b557c5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Verlyn Dunajski,ou=Payroll,dc=bitwarden,dc=com", - email: "DunajskV@8cf79d720e6f4840b60a280dc34d992f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evita Cropper,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Evita Cropper,ou=Janitorial,dc=bitwarden,dc=com", - email: "CropperE@93856f312059479cb0ac63a8c6d54de8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joletta Senten,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joletta Senten,ou=Peons,dc=bitwarden,dc=com", - email: "SentenJ@d267cba29e124e168b77cc7855c4f981.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kylie Wueppelmann,ou=Product Testing,dc=bitwarden,dc=com", - email: "WueppelK@9e342fa3efb14712a894fba19d56a8d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fotini Suyama,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fotini Suyama,ou=Management,dc=bitwarden,dc=com", - email: "SuyamaF@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hazel Gesino,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hazel Gesino,ou=Product Development,dc=bitwarden,dc=com", - email: "GesinoH@9cd1df92f17b493a882aebc6152a1e6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivie Murison,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ivie Murison,ou=Payroll,dc=bitwarden,dc=com", - email: "MurisonI@4c46c0ccb3eb4998b4cbc47cae874ac9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mahesh Flach,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mahesh Flach,ou=Payroll,dc=bitwarden,dc=com", - email: "FlachM@09bb099d23204c85bbfd94efdb157b79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annalee Prikkel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Annalee Prikkel,ou=Management,dc=bitwarden,dc=com", - email: "PrikkelA@578d34c128584bdeb42b389207ab706c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catja Scholman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Catja Scholman,ou=Human Resources,dc=bitwarden,dc=com", - email: "ScholmaC@fa78ddbf4a824e749170662a86f94ae1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=RoseAnne Dodson,ou=Human Resources,dc=bitwarden,dc=com", - email: "DodsonR@97f7053b3d7f4f79b48d3e12171a5966.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anda Fastpack,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Anda Fastpack,ou=Product Testing,dc=bitwarden,dc=com", - email: "FastpacA@a035bec181ea4cd9abd3953e80704bef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salis Nehring,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Salis Nehring,ou=Management,dc=bitwarden,dc=com", - email: "NehringS@0769d99dace1402cab1152a81fe3788b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francis LeBlanc,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Francis LeBlanc,ou=Payroll,dc=bitwarden,dc=com", - email: "LeBlancF@d8f95844461442f7932326cd41b836f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Humberto Stensrud,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Humberto Stensrud,ou=Management,dc=bitwarden,dc=com", - email: "StensruH@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manfred Wesolowski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Manfred Wesolowski,ou=Peons,dc=bitwarden,dc=com", - email: "WesolowM@e3eea603d1ae4f4dbff063acf8c6da65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sherwood Dziemian,ou=Janitorial,dc=bitwarden,dc=com", - email: "DziemiaS@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estele Fiest,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Estele Fiest,ou=Peons,dc=bitwarden,dc=com", - email: "FiestE@9bf2c205467a41708e3322ff14ec009d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maciej Fucito,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maciej Fucito,ou=Administrative,dc=bitwarden,dc=com", - email: "FucitoM@5e943e5d6d7b48d9af98d3041b109570.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=AnnLorrain Keer,ou=Janitorial,dc=bitwarden,dc=com", - email: "KeerA@177cfb37cf074f4eb62daca714a1f711.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frinel Veals,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Frinel Veals,ou=Payroll,dc=bitwarden,dc=com", - email: "VealsF@7022b955bef74762989f3e8241ec17a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catha Ghossein,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Catha Ghossein,ou=Human Resources,dc=bitwarden,dc=com", - email: "GhosseiC@afcd326ae5b94cedba790b89df39e139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Basia Trinidad,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Basia Trinidad,ou=Janitorial,dc=bitwarden,dc=com", - email: "TrinidaB@14e134bbcef94cbd9594aadae408ce91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vita Leveille,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vita Leveille,ou=Human Resources,dc=bitwarden,dc=com", - email: "LeveillV@156df7528958433faec56aa3b7184ead.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lidio Toomer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lidio Toomer,ou=Human Resources,dc=bitwarden,dc=com", - email: "ToomerL@4ec011c6fc024dda9c255391b6f4f92f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kessel Keveny,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kessel Keveny,ou=Product Development,dc=bitwarden,dc=com", - email: "KevenyK@60e7c26ff89e4b72b87e6f8a7af31f27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alf Noorani,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alf Noorani,ou=Janitorial,dc=bitwarden,dc=com", - email: "NooraniA@9d5da66e74ac4d48878a287a4792d9ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carmella Mivehchi,ou=Human Resources,dc=bitwarden,dc=com", - email: "MivehchC@f5afe6422dca491da65fa6a254990cc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirstyn Hutt,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kirstyn Hutt,ou=Management,dc=bitwarden,dc=com", - email: "HuttK@7d6035a424ee45dca06332e1186be7f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blisse Lein,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Blisse Lein,ou=Product Testing,dc=bitwarden,dc=com", - email: "LeinB@94b95f6e458646f98e09b046007fece8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edithe Dougall,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Edithe Dougall,ou=Administrative,dc=bitwarden,dc=com", - email: "DougallE@e5b69381ba2b442b903a1a29bf25534d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sage Randell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sage Randell,ou=Peons,dc=bitwarden,dc=com", - email: "RandellS@7f502c8cd29345a394629247bc437c0f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carina Hume,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Carina Hume,ou=Peons,dc=bitwarden,dc=com", - email: "HumeC@8053af09c938471f9ad09445e16f631c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mickie Prystie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mickie Prystie,ou=Payroll,dc=bitwarden,dc=com", - email: "PrystieM@ab27f4e751074bd087dace4a33698f66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nalin Levere,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nalin Levere,ou=Human Resources,dc=bitwarden,dc=com", - email: "LevereN@14c49ff73612459cbe530fd5ad7a9b9f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allen Iannotti,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Allen Iannotti,ou=Administrative,dc=bitwarden,dc=com", - email: "IannottA@e37f5b0cfb234751951af2ec77381913.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maressa Poulin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Maressa Poulin,ou=Peons,dc=bitwarden,dc=com", - email: "PoulinM@97142716e28b4ec6bcc36b32805d9552.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danni Hummerston,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Danni Hummerston,ou=Payroll,dc=bitwarden,dc=com", - email: "HummersD@2111304740f548cf848d6dc98f3520ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosabel Buley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rosabel Buley,ou=Management,dc=bitwarden,dc=com", - email: "BuleyR@2f1ccd0f317a4e42955b19a4c97fc5c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cindelyn Lethebinh,ou=Janitorial,dc=bitwarden,dc=com", - email: "LethebiC@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sayed Virant,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sayed Virant,ou=Product Testing,dc=bitwarden,dc=com", - email: "VirantS@8042d13a5bda4cd1ba81e78d19a6faff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sundaram Lojewski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sundaram Lojewski,ou=Management,dc=bitwarden,dc=com", - email: "LojewskS@d5732307166e4b5db61ac87c36f12c0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laina Ertl,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Laina Ertl,ou=Product Development,dc=bitwarden,dc=com", - email: "ErtlL@056a218e00ae4a2383ce03d97161e27d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeniece Bcs,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jeniece Bcs,ou=Administrative,dc=bitwarden,dc=com", - email: "BcsJ@724caed46aaf481fb3e0817c5c10cdb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sukhwant Eldreth,ou=Product Testing,dc=bitwarden,dc=com", - email: "EldrethS@b62493e12ad744b2b5583be842519934.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tammy Heikkila,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tammy Heikkila,ou=Payroll,dc=bitwarden,dc=com", - email: "HeikkilT@4781f85f1c214dff92b5f07239287faa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pearle Bruketa,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pearle Bruketa,ou=Management,dc=bitwarden,dc=com", - email: "BruketaP@d01918c117a846518e67dbe5b2fd6ee8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherie Brett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cherie Brett,ou=Peons,dc=bitwarden,dc=com", - email: "BrettC@878435e5887c47ef90f06778893d179e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hector Gingrich,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hector Gingrich,ou=Product Development,dc=bitwarden,dc=com", - email: "GingricH@d3daa1a4bade41ab9429ab621fbfc2e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Biplab VanHaste,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Biplab VanHaste,ou=Administrative,dc=bitwarden,dc=com", - email: "VanHastB@a605402a36f347eeb8dcbbe3d61c2032.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jermaine Sheffield,ou=Janitorial,dc=bitwarden,dc=com", - email: "SheffieJ@c65f075234ae4ca0ba28441c293a5096.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roby Larin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Roby Larin,ou=Management,dc=bitwarden,dc=com", - email: "LarinR@fc61927435a64fa9bae5f49cccd879ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirley Holvey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shirley Holvey,ou=Janitorial,dc=bitwarden,dc=com", - email: "HolveyS@a32cc86a2bd244a1a69078536f474c4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yettie Croisetiere,ou=Payroll,dc=bitwarden,dc=com", - email: "CroisetY@01d981966ccd4e18a1de23880ee9b91c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dolli Brownridge,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrownriD@e9efa6e493c94e819a8af125d338efb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shari Skaff,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shari Skaff,ou=Peons,dc=bitwarden,dc=com", - email: "SkaffS@42f7f72ca79e451abe4a35d3706fd511.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hoa SanfordWright,ou=Payroll,dc=bitwarden,dc=com", - email: "SanfordH@58eea1d96e4142748280c825c6b718b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valida Fleischer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Valida Fleischer,ou=Administrative,dc=bitwarden,dc=com", - email: "FleischV@2c5b6f0e18984fb3a1bf5177eef8b508.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=March Hess,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=March Hess,ou=Product Testing,dc=bitwarden,dc=com", - email: "HessM@90f7f0ce436d4b8ead2a23f5d4765511.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamran Shabatura,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kamran Shabatura,ou=Peons,dc=bitwarden,dc=com", - email: "ShabatuK@e3c084d5a2b44c959d053319884f8497.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arturo Ensign,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Arturo Ensign,ou=Administrative,dc=bitwarden,dc=com", - email: "EnsignA@74472620f9a5441ba641f245e46fb09d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Oorschot Saifullah,ou=Payroll,dc=bitwarden,dc=com", - email: "SaifullO@7be2adbfd042422e9bcc88e78cabf3cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gheorghe Feyen,ou=Product Testing,dc=bitwarden,dc=com", - email: "FeyenG@c881c186a173446ea0e986dc58eda7dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lauryn Wever,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lauryn Wever,ou=Administrative,dc=bitwarden,dc=com", - email: "WeverL@a2a7439199d14d4790e860a2aa0ae08e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anda Wilhoit,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anda Wilhoit,ou=Administrative,dc=bitwarden,dc=com", - email: "WilhoitA@9834775790d142218cd7b62ee57a176b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Samia Cochran,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Samia Cochran,ou=Janitorial,dc=bitwarden,dc=com", - email: "CochranS@c73ef5ab513e4163988ac8e0fa51bd75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michie ToDo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Michie ToDo,ou=Administrative,dc=bitwarden,dc=com", - email: "ToDoM@b3031d6ddd9541b6b0f40d995516638d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arvind Gundecha,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arvind Gundecha,ou=Peons,dc=bitwarden,dc=com", - email: "GundechA@44fa0b06635a4a55b59882def7b69891.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Costas Watson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Costas Watson,ou=Product Testing,dc=bitwarden,dc=com", - email: "WatsonC@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ebba Gutcher,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ebba Gutcher,ou=Peons,dc=bitwarden,dc=com", - email: "GutcherE@dd4f59cb9a1245048a34aa45906e0378.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gretal Kendrick,ou=Human Resources,dc=bitwarden,dc=com", - email: "KendricG@5e8502c960c24fb593bf7dca3d40e2f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peggie Madl,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Peggie Madl,ou=Product Testing,dc=bitwarden,dc=com", - email: "MadlP@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norry Benjamin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Norry Benjamin,ou=Payroll,dc=bitwarden,dc=com", - email: "BenjamiN@65ea3b4fba9d486a8e6a9886164c5515.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loreen Chapen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Loreen Chapen,ou=Product Development,dc=bitwarden,dc=com", - email: "ChapenL@7bfc11514c5e4224a1e499acf9880451.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loay Clairmont,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Loay Clairmont,ou=Janitorial,dc=bitwarden,dc=com", - email: "ClairmoL@343f3e94452d4417ab72f456ef20099a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jagdev Eaton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jagdev Eaton,ou=Payroll,dc=bitwarden,dc=com", - email: "EatonJ@56dc85c859e5439293a626149de045e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vina Smothers,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vina Smothers,ou=Product Development,dc=bitwarden,dc=com", - email: "SmotherV@22cb224a80984684b19d5e903a9e8f92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sultan Kalitzkus,ou=Product Development,dc=bitwarden,dc=com", - email: "KalitzkS@700cffdeffc944e3b104dbec36c347ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ravi Fontanini,ou=Human Resources,dc=bitwarden,dc=com", - email: "FontaniR@68267e214c7a487aa5678c0838a58e53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minerva Cuper,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Minerva Cuper,ou=Payroll,dc=bitwarden,dc=com", - email: "CuperM@11006cb63c014ed78431f32c1edc2e50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynette Cascarini,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lynette Cascarini,ou=Product Development,dc=bitwarden,dc=com", - email: "CascariL@ac076ba79d124761ac4ec297033b1240.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lsi Loughran,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lsi Loughran,ou=Product Testing,dc=bitwarden,dc=com", - email: "LoughraL@8d3b1ae4e0a848b5802b107cdfc10b06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassandry Emmert,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cassandry Emmert,ou=Management,dc=bitwarden,dc=com", - email: "EmmertC@eaf942e23a8c4f86b819fb393327fb04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kirstin Stephenson,ou=Payroll,dc=bitwarden,dc=com", - email: "StephenK@98febd962501443b89a9e8bfacf12a9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minnesota Herzig,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Minnesota Herzig,ou=Payroll,dc=bitwarden,dc=com", - email: "HerzigM@84e0b1d8b0c84412a89683731e9fda1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lauren Syrett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lauren Syrett,ou=Peons,dc=bitwarden,dc=com", - email: "SyrettL@42ad681604354ebd8ba7299c92bab329.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyana Pennell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dyana Pennell,ou=Janitorial,dc=bitwarden,dc=com", - email: "PennellD@0afc47bad19c46b99058f74e9901e6b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camella IRCMARKET,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Camella IRCMARKET,ou=Peons,dc=bitwarden,dc=com", - email: "IRCMARKC@8f8b16f7eeb64121b5894e2d12941301.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yvonne Goertzen,ou=Human Resources,dc=bitwarden,dc=com", - email: "GoertzeY@f356862401984def8bd045192d245ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doro Cottengim,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Doro Cottengim,ou=Peons,dc=bitwarden,dc=com", - email: "CottengD@c7cd8ed01ff4421e89b8fce69f567e72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zorana Rodrigue,ou=Janitorial,dc=bitwarden,dc=com", - email: "RodriguZ@ea67abb740f54118a1219fbd4f51bc7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=JinYun Gerlich,ou=Janitorial,dc=bitwarden,dc=com", - email: "GerlichJ@c3692aa8bfcc4a689d45388238055ec4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nesta Bydeley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nesta Bydeley,ou=Payroll,dc=bitwarden,dc=com", - email: "BydeleyN@592208e028cd436396db371d93b549f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yogesh Meckley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yogesh Meckley,ou=Peons,dc=bitwarden,dc=com", - email: "MeckleyY@ceb12762ef0641af91eccdee76fe34c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sheileagh Llaguno,ou=Administrative,dc=bitwarden,dc=com", - email: "LlagunoS@7391a6d3d59e40cd941b74d4ab20cfad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailene Challice,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ailene Challice,ou=Payroll,dc=bitwarden,dc=com", - email: "ChallicA@67d3a8519ac14347aeb58946a31a1f50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viola Hately,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Viola Hately,ou=Human Resources,dc=bitwarden,dc=com", - email: "HatelyV@fad4df468b1843c3916d4ae2eb3ff3a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shunro Singer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shunro Singer,ou=Human Resources,dc=bitwarden,dc=com", - email: "SingerS@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chitra McAleer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chitra McAleer,ou=Product Testing,dc=bitwarden,dc=com", - email: "McAleerC@613949922305449dab3107a6d150066b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jay Biage,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jay Biage,ou=Payroll,dc=bitwarden,dc=com", - email: "BiageJ@908e2f7daa5c4f539482241df20bc43f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faydra Kandra,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Faydra Kandra,ou=Administrative,dc=bitwarden,dc=com", - email: "KandraF@2fd47af450d743418108699823631680.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shandee Safah,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shandee Safah,ou=Product Testing,dc=bitwarden,dc=com", - email: "SafahS@375d13357cc946b587c8f99d2269c9f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gen Marano,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gen Marano,ou=Payroll,dc=bitwarden,dc=com", - email: "MaranoG@89e33259b1f341dda582db87064be4b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettina Spinelli,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bettina Spinelli,ou=Management,dc=bitwarden,dc=com", - email: "SpinellB@e77a72af01c44ce88f609078a4d8d2a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mureil Vish,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mureil Vish,ou=Administrative,dc=bitwarden,dc=com", - email: "VishM@47b62883b41b47caaa90c87545926566.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alane Carlisle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alane Carlisle,ou=Management,dc=bitwarden,dc=com", - email: "CarlislA@c5dc40d5940e458ab33ccb9687a6e9df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sayre Paulett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sayre Paulett,ou=Management,dc=bitwarden,dc=com", - email: "PaulettS@f2946785e86743e2aa3ad5ba0ef200dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cassandra Sasson,ou=Human Resources,dc=bitwarden,dc=com", - email: "SassonC@76601b52ef094fb1a584255928f2a86b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ambur Fernandez,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ambur Fernandez,ou=Peons,dc=bitwarden,dc=com", - email: "FernandA@d05ffeea80b94ea6b929bf19bf3cb1d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlye Puelma,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carlye Puelma,ou=Management,dc=bitwarden,dc=com", - email: "PuelmaC@3918530762a64e8db535b65dcc80cbce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eleonore Edwige,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eleonore Edwige,ou=Administrative,dc=bitwarden,dc=com", - email: "EdwigeE@3358f35c8d4144d59100e666ebc7914f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoshi Neustifter,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Yoshi Neustifter,ou=Management,dc=bitwarden,dc=com", - email: "NeustifY@21bcebc879234832b21c9a4bda0b84ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Varennes Kapuscinski,ou=Product Development,dc=bitwarden,dc=com", - email: "KapusciV@148b0748cafd4655898b3cdac38d15c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernd Ribakovs,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bernd Ribakovs,ou=Peons,dc=bitwarden,dc=com", - email: "RibakovB@5c3854c0e45246a0b3fb22153a7146d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ralph Taylor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ralph Taylor,ou=Management,dc=bitwarden,dc=com", - email: "TaylorR@df91f02938d046d8adb3f260f0e722ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baldev Annab,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Baldev Annab,ou=Human Resources,dc=bitwarden,dc=com", - email: "AnnabB@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Me Cuany,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Me Cuany,ou=Janitorial,dc=bitwarden,dc=com", - email: "CuanyM@77f895f70886481eae5a63f9a86f7856.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neville Doble,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Neville Doble,ou=Product Testing,dc=bitwarden,dc=com", - email: "DobleN@79d5277aef56406eb7a48c1a74d35976.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alidia Banens,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alidia Banens,ou=Administrative,dc=bitwarden,dc=com", - email: "BanensA@ff6113da300b4b2aa7ff3a66734b4954.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hans Fahey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hans Fahey,ou=Peons,dc=bitwarden,dc=com", - email: "FaheyH@9e0bdc0fb08d44118d9ae7567498b80c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luce Piper,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Luce Piper,ou=Product Testing,dc=bitwarden,dc=com", - email: "PiperL@1ef06389f2a545358cb76b8f3247552d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maible Adamo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maible Adamo,ou=Administrative,dc=bitwarden,dc=com", - email: "AdamoM@2514efb598094878a84945e42222f037.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aartjan Brodersen,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrodersA@59ed31e1416a44f38102361f5e901aec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fastmer Montreal,ou=Human Resources,dc=bitwarden,dc=com", - email: "MontreaF@9e2b20abc536451c80331d81dc08fb80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leny Husarewych,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leny Husarewych,ou=Management,dc=bitwarden,dc=com", - email: "HusarewL@fd7f1413c0914fd9966db7121e375108.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerald Bijjani,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gerald Bijjani,ou=Peons,dc=bitwarden,dc=com", - email: "BijjaniG@648da49b32e0468cbaab8b6990a6bcd7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maint Olivares,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maint Olivares,ou=Administrative,dc=bitwarden,dc=com", - email: "OlivareM@3a6431b2f04c4152b1a57322f60c8410.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bnrecad Higuchi,ou=Janitorial,dc=bitwarden,dc=com", - email: "HiguchiB@420d170835a74668b7399e0614ecc1a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arturo Groves,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Arturo Groves,ou=Product Testing,dc=bitwarden,dc=com", - email: "GrovesA@61d7f2e9441545fa8ba2dcce7dd5448a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ho Rolnick,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ho Rolnick,ou=Administrative,dc=bitwarden,dc=com", - email: "RolnickH@8819cc07e7b545c38dcf521aa22a7f85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erning Lingafelter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Erning Lingafelter,ou=Product Development,dc=bitwarden,dc=com", - email: "LingafeE@19f0b3104cc549c5972e2013b118e2bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alanah Wolff,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alanah Wolff,ou=Janitorial,dc=bitwarden,dc=com", - email: "WolffA@8068d857ca8d45118464c596ca9f4192.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corrianne Hughson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Corrianne Hughson,ou=Payroll,dc=bitwarden,dc=com", - email: "HughsonC@ec27ad8054ec49e6b80dae8c88335049.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wallis Grubbs,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wallis Grubbs,ou=Management,dc=bitwarden,dc=com", - email: "GrubbsW@c322a60d3bf04197a05d614b3aca2643.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eran Sziladi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eran Sziladi,ou=Payroll,dc=bitwarden,dc=com", - email: "SziladiE@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joji Cassar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Joji Cassar,ou=Product Development,dc=bitwarden,dc=com", - email: "CassarJ@d06dcad3fe8b46a4aa1b3d7dd28ff6b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sunil Brisebois,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sunil Brisebois,ou=Payroll,dc=bitwarden,dc=com", - email: "BriseboS@311a3d6dd8874e3a966f247ab041c45f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Otha Dee,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Otha Dee,ou=Peons,dc=bitwarden,dc=com", - email: "DeeO@a34bb7d1546c462cb51396798bb22845.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyane Hungle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dyane Hungle,ou=Janitorial,dc=bitwarden,dc=com", - email: "HungleD@4893d9d0765d4728aa63d94ce3265f28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlane Mitchell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marlane Mitchell,ou=Product Development,dc=bitwarden,dc=com", - email: "MitchelM@77df1d4a30ab443892398806ba3c7576.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Linnea Bulkovshteyn,ou=Human Resources,dc=bitwarden,dc=com", - email: "BulkovsL@94747c09a3194eba8b7d52262cebca45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belva Knighten,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Belva Knighten,ou=Administrative,dc=bitwarden,dc=com", - email: "KnighteB@285b0b0b23104ddebe5d6348304a4148.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Claudie Oesterreicher,ou=Payroll,dc=bitwarden,dc=com", - email: "OesterrC@8a9079e17fc440a78f208b233e58c2df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Xylina Iacovo,ou=Janitorial,dc=bitwarden,dc=com", - email: "IacovoX@98315d8e8bc34b77b08ac74a18e3be73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shahriar Upchurch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shahriar Upchurch,ou=Management,dc=bitwarden,dc=com", - email: "UpchurcS@35c01be12949443b81c64e5b90fceee5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blaire Hr,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Blaire Hr,ou=Product Development,dc=bitwarden,dc=com", - email: "HrB@e52685d2fb89476596028e80c714ec4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rosaleen Hudecek,ou=Janitorial,dc=bitwarden,dc=com", - email: "HudecekR@783a0de8a8e24bc7b467cd3312aa159b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idalia Batura,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Idalia Batura,ou=Human Resources,dc=bitwarden,dc=com", - email: "BaturaI@29c7ef7aeb474d4781eb49a7f52e61db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bachittar Reneau,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bachittar Reneau,ou=Management,dc=bitwarden,dc=com", - email: "ReneauB@94a04369a1f7454aa0b8a26e89e03c22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inger Oshiro,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Inger Oshiro,ou=Product Development,dc=bitwarden,dc=com", - email: "OshiroI@a8e37e10b84947b0991df30bd3cb9d8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharline Chester,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sharline Chester,ou=Payroll,dc=bitwarden,dc=com", - email: "ChesterS@733a0ed9ca244d1a87001be1b9e9514d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glynn Surreau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Glynn Surreau,ou=Peons,dc=bitwarden,dc=com", - email: "SurreauG@9ba1788c88514e3e9788f75280ccf6c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hatti Griffiths,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hatti Griffiths,ou=Payroll,dc=bitwarden,dc=com", - email: "GriffitH@ae52dcada2674f68a76a2c619d85f261.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gudrun Robson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gudrun Robson,ou=Human Resources,dc=bitwarden,dc=com", - email: "RobsonG@dba7b5909e924eeda080d597d190e631.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sati Hallett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sati Hallett,ou=Management,dc=bitwarden,dc=com", - email: "HallettS@58d046473fe24d0d8bf6f510239a1102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lotty Flansburg,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lotty Flansburg,ou=Payroll,dc=bitwarden,dc=com", - email: "FlansbuL@995d47539bff49b8a85a5ecb474bd257.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Larina Scanlon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Larina Scanlon,ou=Peons,dc=bitwarden,dc=com", - email: "ScanlonL@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barney Surridge,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Barney Surridge,ou=Peons,dc=bitwarden,dc=com", - email: "SurridgB@65ad24e7a81d48a5b7dae9b8c2ca0696.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yolanda Wanda,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yolanda Wanda,ou=Product Development,dc=bitwarden,dc=com", - email: "WandaY@63e0235d1e58418d9082de40babcb995.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dasie Tougas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dasie Tougas,ou=Human Resources,dc=bitwarden,dc=com", - email: "TougasD@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julee Milton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Julee Milton,ou=Administrative,dc=bitwarden,dc=com", - email: "MiltonJ@08af06c825e94cb392bd12261cb97963.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selle Oslund,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Selle Oslund,ou=Janitorial,dc=bitwarden,dc=com", - email: "OslundS@102d4dd16d9e43f0b636c4011b41a3bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Benjamin Togasaki,ou=Product Development,dc=bitwarden,dc=com", - email: "TogasakB@207f06c431db4f90babc987173636b40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leelah Docherty,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Leelah Docherty,ou=Product Testing,dc=bitwarden,dc=com", - email: "DochertL@e47f64bef69f4dd48dddefa04608b96f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clement Srivastava,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clement Srivastava,ou=Management,dc=bitwarden,dc=com", - email: "SrivastC@0e85bbb2cec745a29072d883820197db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marsie Schreiber,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marsie Schreiber,ou=Payroll,dc=bitwarden,dc=com", - email: "SchreibM@60ce52bd5b3a49f19dc20ccd0b72445c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathryn Bokij,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cathryn Bokij,ou=Payroll,dc=bitwarden,dc=com", - email: "BokijC@9e84c2e1d4034838ad90a53f25c2fdbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sharone Bryttan,ou=Janitorial,dc=bitwarden,dc=com", - email: "BryttanS@f48d7d3b63134ad1b2fb9b6ebafa3028.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Schaffer Chronowic,ou=Administrative,dc=bitwarden,dc=com", - email: "ChronowS@465c6a27d41345cf88d762adf10ae61e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Virginia Salyniuk,ou=Janitorial,dc=bitwarden,dc=com", - email: "SalyniuV@a286103db60e4488ab30515042c203a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=SiewKiat Cassady,ou=Payroll,dc=bitwarden,dc=com", - email: "CassadyS@4466c387ca38420ebdc497ef8de08842.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melody Fontana,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melody Fontana,ou=Janitorial,dc=bitwarden,dc=com", - email: "FontanaM@b183806c89d6447c809013ec636d07ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saul Fussell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Saul Fussell,ou=Management,dc=bitwarden,dc=com", - email: "FussellS@4c905761dfd345f0bec1fb45af8eef64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Livvie Kayalioglu,ou=Human Resources,dc=bitwarden,dc=com", - email: "KayalioL@758a671442c6456f8563c5ae42048214.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomas Gourley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Thomas Gourley,ou=Peons,dc=bitwarden,dc=com", - email: "GourleyT@e82a7163f0b1403c8ef83f8850e77a61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norstar Trefts,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Norstar Trefts,ou=Janitorial,dc=bitwarden,dc=com", - email: "TreftsN@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cheuk Weatherly,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeatherC@6994ff306ef64425a30543b5e9a42d04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ignatius Ocampo,ou=Human Resources,dc=bitwarden,dc=com", - email: "OcampoI@3e8cba4582f14cbab416ed0e1337e498.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathi Keiser,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cathi Keiser,ou=Janitorial,dc=bitwarden,dc=com", - email: "KeiserC@df6375b797c34567a9e4770a61e55877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Apryle Haurie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Apryle Haurie,ou=Peons,dc=bitwarden,dc=com", - email: "HaurieA@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozanne Trouborst,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rozanne Trouborst,ou=Peons,dc=bitwarden,dc=com", - email: "TrouborR@c2eec700570a4e37a9895be568c7b846.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catlaina Intemann,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Catlaina Intemann,ou=Product Development,dc=bitwarden,dc=com", - email: "IntemanC@e91f9f908328437c89ad28a2affe5705.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anabel Intune,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anabel Intune,ou=Janitorial,dc=bitwarden,dc=com", - email: "IntuneA@e9f78b5202b6404b9ee727f9d75a47b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elnore Rigdon,ou=Product Testing,dc=bitwarden,dc=com", - email: "RigdonE@25954b1ed5924842b4df7800b058aeea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninnetta Matney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ninnetta Matney,ou=Administrative,dc=bitwarden,dc=com", - email: "MatneyN@debbccc9cd9041e58d59a87945bc2243.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regina Lemay,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Regina Lemay,ou=Janitorial,dc=bitwarden,dc=com", - email: "LemayR@8227646c55034cf9b21757fce681b53f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janos Davis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Janos Davis,ou=Payroll,dc=bitwarden,dc=com", - email: "DavisJ@0a9ba1c4790d4f00ae7cb9df0847c587.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dniren Serack,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dniren Serack,ou=Payroll,dc=bitwarden,dc=com", - email: "SerackD@0d144b95e68f4087974ae09daf892d06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaffer Guty,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jaffer Guty,ou=Payroll,dc=bitwarden,dc=com", - email: "GutyJ@a2e835bbc90a4bb8aa8eed7abb9fcd6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalpit Devine,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kalpit Devine,ou=Administrative,dc=bitwarden,dc=com", - email: "DevineK@0d2b3ad1093a4669ae8e5ca62234e09f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zitella Sammon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zitella Sammon,ou=Management,dc=bitwarden,dc=com", - email: "SammonZ@af539deff3b941ca83e2c33de648681b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renate Worrall,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Renate Worrall,ou=Human Resources,dc=bitwarden,dc=com", - email: "WorrallR@1f071e8813ad43c0a975571fab76b110.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elka Masciarelli,ou=Product Testing,dc=bitwarden,dc=com", - email: "MasciarE@cbf6583826fd423d8f040079f215152c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Beatrice Isherwood,ou=Human Resources,dc=bitwarden,dc=com", - email: "IsherwoB@f82a375ba7e5476fb33407411380cda7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maidsir Traynor,ou=Human Resources,dc=bitwarden,dc=com", - email: "TraynorM@a6d00429faa5499880c45615fd9223a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Medria Aribindi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Medria Aribindi,ou=Administrative,dc=bitwarden,dc=com", - email: "AribindM@be56d01786b846e3aa64454147150e23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eba Bockaj,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eba Bockaj,ou=Payroll,dc=bitwarden,dc=com", - email: "BockajE@3f93f60a8e804d55a6647c56c6c05eab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calley Thaxton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Calley Thaxton,ou=Product Testing,dc=bitwarden,dc=com", - email: "ThaxtonC@202ab1834ba741fea5a2334a7dedf7d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rheal Dadgar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rheal Dadgar,ou=Payroll,dc=bitwarden,dc=com", - email: "DadgarR@b3a78fcc94924efeb3886f806e14989c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphene Bayno,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Daphene Bayno,ou=Janitorial,dc=bitwarden,dc=com", - email: "BaynoD@b1e31f863da04aa8b9a57d43a6e09dae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dilpreet Javor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dilpreet Javor,ou=Management,dc=bitwarden,dc=com", - email: "JavorD@3bc4d87aca5d46469b49fb22078e5414.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kambiz Nyce,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kambiz Nyce,ou=Peons,dc=bitwarden,dc=com", - email: "NyceK@ff8375ca1c294ee698da8ebb063821cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karan Molochko,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Karan Molochko,ou=Administrative,dc=bitwarden,dc=com", - email: "MolochkK@22bf652e14524f83bfef4f8562abff95.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olav Straub,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Olav Straub,ou=Product Testing,dc=bitwarden,dc=com", - email: "StraubO@0af04fcd60da40099a5a068c388bafe2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Georgia Ashurkoff,ou=Product Testing,dc=bitwarden,dc=com", - email: "AshurkoG@2885a23eb18143c0ac146276f9ab0afb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cyndy Ghatta,ou=Human Resources,dc=bitwarden,dc=com", - email: "GhattaC@a18c15299e7f44c494cd2e3c44db021d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berget Hnidek,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Berget Hnidek,ou=Peons,dc=bitwarden,dc=com", - email: "HnidekB@54be91a814bf4836912c52cbba66eeef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shahriar Benschop,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shahriar Benschop,ou=Peons,dc=bitwarden,dc=com", - email: "BenschoS@66ebe9b8d29246329e6e17db480edb7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kamyar Savarimuthu,ou=Human Resources,dc=bitwarden,dc=com", - email: "SavarimK@4be9f9f4318e4587b7d485613eb27d49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilkin Boinnard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wilkin Boinnard,ou=Management,dc=bitwarden,dc=com", - email: "BoinnarW@af9d1266b1684989ab41423cdd351f7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vital Simcoe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vital Simcoe,ou=Product Development,dc=bitwarden,dc=com", - email: "SimcoeV@04f0b8f68f7043abbd5b8505c5bed917.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lydie Hooker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lydie Hooker,ou=Product Testing,dc=bitwarden,dc=com", - email: "HookerL@4eab057e70644dff8f3d5ac041be0877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greta Minyard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Greta Minyard,ou=Management,dc=bitwarden,dc=com", - email: "MinyardG@43da9c69baa14266b4c8812eff59c738.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tamiko Timleck,ou=Human Resources,dc=bitwarden,dc=com", - email: "TimleckT@26786d0f68384beeae2a7df6b6635e8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adelice Fishman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Adelice Fishman,ou=Product Development,dc=bitwarden,dc=com", - email: "FishmanA@0b715661798e487f9f545ca818a81f7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Thaddeus Ciochon,ou=Administrative,dc=bitwarden,dc=com", - email: "CiochonT@6fe854deca574173bc8de7c35ad137c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sibylle Cusato,ou=Human Resources,dc=bitwarden,dc=com", - email: "CusatoS@06ca177f7c6b4c2ab8f07911dfc0cb3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Motaz Gobeli,ou=Human Resources,dc=bitwarden,dc=com", - email: "GobeliM@392a4a6a368341beb07fcc7da7744c10.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devinne Kellum,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Devinne Kellum,ou=Administrative,dc=bitwarden,dc=com", - email: "KellumD@5214956f0ee84ad493b8defdd90a23da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Breena Telco,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Breena Telco,ou=Product Development,dc=bitwarden,dc=com", - email: "TelcoB@ecf3a96f00b043e2b4c8c3e398a40978.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tianbao Gerlich,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tianbao Gerlich,ou=Management,dc=bitwarden,dc=com", - email: "GerlichT@b156fd7640954c1b9e8fe3eb48376a55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gahn Lightfoot,ou=Administrative,dc=bitwarden,dc=com", - email: "LightfoG@e6ab02c53a3c4216ba5b75ac65120e12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=LyddaJune Thornber,ou=Product Development,dc=bitwarden,dc=com", - email: "ThornbeL@3badeafafe3b4639b92d03c5b1235944.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lana Keates,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lana Keates,ou=Administrative,dc=bitwarden,dc=com", - email: "KeatesL@bce67af47de54c1abf524bc004ae2e2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veena Richards,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Veena Richards,ou=Human Resources,dc=bitwarden,dc=com", - email: "RichardV@7719bdff14bf4e9fa26a2dfe09ac0f3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charin Clocklab,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Charin Clocklab,ou=Human Resources,dc=bitwarden,dc=com", - email: "ClocklaC@3905d18a9f18484ba7305c447e951282.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kollen Fenwick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kollen Fenwick,ou=Management,dc=bitwarden,dc=com", - email: "FenwickK@f4611bb6000b48cf9a5a0c6ff63070e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucille Orol,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lucille Orol,ou=Management,dc=bitwarden,dc=com", - email: "OrolL@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maier Bobar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maier Bobar,ou=Product Testing,dc=bitwarden,dc=com", - email: "BobarM@b39d8f666f1848e6abb69d85d224a354.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dori Garwood,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dori Garwood,ou=Administrative,dc=bitwarden,dc=com", - email: "GarwoodD@81e1c04932074375850663ac7b5d1387.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gussi Horak,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gussi Horak,ou=Management,dc=bitwarden,dc=com", - email: "HorakG@d65cebe6024b47459c5e0ad8f6a8a5c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marillin Boroski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marillin Boroski,ou=Administrative,dc=bitwarden,dc=com", - email: "BoroskiM@8664d2779faf46baad47e305d363adc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kitson Lundhild,ou=Janitorial,dc=bitwarden,dc=com", - email: "LundhilK@e7504ea4712040488444ef96484ed4da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noelyn Hinkle,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Noelyn Hinkle,ou=Peons,dc=bitwarden,dc=com", - email: "HinkleN@3efbea2d01d34d828998e7b903e8331e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Denise Wegrowicz,ou=Janitorial,dc=bitwarden,dc=com", - email: "WegrowiD@3ec760605c684f74be32825b3ebfaaaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erlene Schirmer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Erlene Schirmer,ou=Management,dc=bitwarden,dc=com", - email: "SchirmeE@e0c1b544468b4b8ea7c122f613b28724.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fabienne McGonigal,ou=Human Resources,dc=bitwarden,dc=com", - email: "McGonigF@25d2cd968a404f8ab3144ef7402e2e12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Binh Hoagland,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Binh Hoagland,ou=Peons,dc=bitwarden,dc=com", - email: "HoaglanB@6c33f97ba18845049fcf33d5c689185e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aviva McIsaac,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Aviva McIsaac,ou=Administrative,dc=bitwarden,dc=com", - email: "McIsaacA@b2d36917909a45fd9de4c6c83faf6196.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noami Cinicolo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Noami Cinicolo,ou=Peons,dc=bitwarden,dc=com", - email: "CinicolN@cd70627629114669966294343a84f460.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yukuo Wolford,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Yukuo Wolford,ou=Administrative,dc=bitwarden,dc=com", - email: "WolfordY@cbda3412be124725a29716dcee2b4b0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amalea Kesler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Amalea Kesler,ou=Janitorial,dc=bitwarden,dc=com", - email: "KeslerA@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyril Inglis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cyril Inglis,ou=Payroll,dc=bitwarden,dc=com", - email: "InglisC@2e3c1feccfe647baaed9b76e554413c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ladan Schutz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ladan Schutz,ou=Administrative,dc=bitwarden,dc=com", - email: "SchutzL@3ee35d919ef5410b9a742e5fe9487a11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bob Erbach,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bob Erbach,ou=Human Resources,dc=bitwarden,dc=com", - email: "ErbachB@2257b27ac7544235a333809d99a81f31.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hideki Fobert,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hideki Fobert,ou=Management,dc=bitwarden,dc=com", - email: "FobertH@dabb673b74534388bb1466a7f0fed6b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koral Bilton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Koral Bilton,ou=Peons,dc=bitwarden,dc=com", - email: "BiltonK@6a1a5eea63134321b540021379837737.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adriane Denike,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Adriane Denike,ou=Human Resources,dc=bitwarden,dc=com", - email: "DenikeA@7a434719bc114db3972a25b2d060ed01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ayako McCormick,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ayako McCormick,ou=Human Resources,dc=bitwarden,dc=com", - email: "McCormiA@1c56caf50dea44adacb785f044d171d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renell Kales,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Renell Kales,ou=Human Resources,dc=bitwarden,dc=com", - email: "KalesR@9d6eea632d564a3387d6cca7f5f27cee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aggi Syssupport,ou=Product Testing,dc=bitwarden,dc=com", - email: "SyssuppA@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brennan Wolter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Brennan Wolter,ou=Product Development,dc=bitwarden,dc=com", - email: "WolterB@0c8d3d5d36af4ce7b5e4cfaf2e7114b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariya Wesselow,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mariya Wesselow,ou=Payroll,dc=bitwarden,dc=com", - email: "WesseloM@38084e0586a041acbbdb2c1dfb35d2bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roe Kathie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roe Kathie,ou=Product Development,dc=bitwarden,dc=com", - email: "KathieR@b6b1bf8d77e842a3bc1d1dfc536f2c93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rici Sobel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rici Sobel,ou=Peons,dc=bitwarden,dc=com", - email: "SobelR@8f9774ff98184bb9b97541409e8279a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eladio Malek,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eladio Malek,ou=Product Testing,dc=bitwarden,dc=com", - email: "MalekE@a327e7a9db0a40bba24a9943db49f75e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siew Dunajski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Siew Dunajski,ou=Peons,dc=bitwarden,dc=com", - email: "DunajskS@5c0f96a3078844a4801dba9a3ab9ce0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosalie Feild,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosalie Feild,ou=Peons,dc=bitwarden,dc=com", - email: "FeildR@c2ddaecf94964357886149e7833e3267.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karyl Scarrow,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karyl Scarrow,ou=Management,dc=bitwarden,dc=com", - email: "ScarrowK@9c2e6c9cd4a84de798c45d0f7e513159.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Imtaz Rafflin,ou=Administrative,dc=bitwarden,dc=com", - email: "RafflinI@289c2891b86d472eb2e530ea709a709c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hoog Fielden,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hoog Fielden,ou=Administrative,dc=bitwarden,dc=com", - email: "FieldenH@132c49195697451c98a0a564a1ead019.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fredericka Corbett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fredericka Corbett,ou=Payroll,dc=bitwarden,dc=com", - email: "CorbettF@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mabelle Bondurant,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mabelle Bondurant,ou=Management,dc=bitwarden,dc=com", - email: "BonduraM@81e6fd93e0bf4f1694c27f343181e2cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zafar McCarron,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zafar McCarron,ou=Management,dc=bitwarden,dc=com", - email: "McCarroZ@bc040a54299440bb80e6ade2d1ef97a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Winne Pitcairn,ou=Product Testing,dc=bitwarden,dc=com", - email: "PitcairW@dc3b17872e63439bbb080a2a2f978fc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malia Faletti,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Malia Faletti,ou=Payroll,dc=bitwarden,dc=com", - email: "FalettiM@6ab6d840c20844eead1fabc30b82fca2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nesta Mawji,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nesta Mawji,ou=Management,dc=bitwarden,dc=com", - email: "MawjiN@939e12c12d5d4580810a1d6603b95234.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Arlette Fieldsup,ou=Human Resources,dc=bitwarden,dc=com", - email: "FieldsuA@ac51bd925c934bb88fa663b44a5d364d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sandrine Cotugno,ou=Administrative,dc=bitwarden,dc=com", - email: "CotugnoS@01fa9120f2a14ce7afdb05e2fa84950c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liliana Vaillant,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Liliana Vaillant,ou=Payroll,dc=bitwarden,dc=com", - email: "VaillanL@fd092081b1e04b7d8cd5c22f860fda23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Den Arora,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Den Arora,ou=Administrative,dc=bitwarden,dc=com", - email: "AroraD@dbc4eab54b5f4d779246b56a41ba3d42.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosabel Parkins,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rosabel Parkins,ou=Product Development,dc=bitwarden,dc=com", - email: "ParkinsR@e0bce7062963483283b8f7e6ab9a5e11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edyta Moroz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Edyta Moroz,ou=Human Resources,dc=bitwarden,dc=com", - email: "MorozE@a82ac5cd9b7b4528b6af3599600d610a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=James Brunato,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=James Brunato,ou=Product Development,dc=bitwarden,dc=com", - email: "BrunatoJ@a30b452edd62411b874edf6881fc9b52.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Retha Miceli,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Retha Miceli,ou=Product Testing,dc=bitwarden,dc=com", - email: "MiceliR@4275578a22d3494fb8ea30d676dc9c77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bregitte DiFalco,ou=Administrative,dc=bitwarden,dc=com", - email: "DiFalcoB@4ae055b0ac7d487383fe546aa5174d23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emmie Hage,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emmie Hage,ou=Product Development,dc=bitwarden,dc=com", - email: "HageE@c109e0def6a3408dba244e442ff2c165.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Open Kozsukan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Open Kozsukan,ou=Human Resources,dc=bitwarden,dc=com", - email: "KozsukaO@d1b17deb97cd4cec88efa6e9b4d6e774.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crystal Dommety,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Crystal Dommety,ou=Product Testing,dc=bitwarden,dc=com", - email: "DommetyC@b2f3aa04c0ef4b03a42b0509b9df028c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Alfreda VanLaten,ou=Product Testing,dc=bitwarden,dc=com", - email: "VanLateA@795d165ac426423b9759f469242c1c41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lindsey Coxall,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lindsey Coxall,ou=Product Development,dc=bitwarden,dc=com", - email: "CoxallL@7ed78fa65633416c973b406fcda1b087.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morgen Theoret,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Morgen Theoret,ou=Management,dc=bitwarden,dc=com", - email: "TheoretM@dcdbaaadaaee46828eda807cdf13cfd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Coralyn Hinchey,ou=Administrative,dc=bitwarden,dc=com", - email: "HincheyC@06ae8344cdf64f67b4eccb16dbf6b4a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anallise Golas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anallise Golas,ou=Human Resources,dc=bitwarden,dc=com", - email: "GolasA@cb658de379fe4207855897a811933c01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emad Sztein,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Emad Sztein,ou=Janitorial,dc=bitwarden,dc=com", - email: "SzteinE@708a672c33064628b91c3dd2fa37a575.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tam Schlagenhauf,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchlageT@784a879fa47d45e28a6db940d17f13d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marianne Makarenko,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marianne Makarenko,ou=Payroll,dc=bitwarden,dc=com", - email: "MakarenM@296a8499fb454ab5ab80945b9f63d6db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anda Lytle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anda Lytle,ou=Management,dc=bitwarden,dc=com", - email: "LytleA@b2ea217e485947069435a94bbac69038.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anneliese Hanser,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anneliese Hanser,ou=Product Development,dc=bitwarden,dc=com", - email: "HanserA@e6469211170045b582fc8ba959023885.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herb Gagnon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Herb Gagnon,ou=Peons,dc=bitwarden,dc=com", - email: "GagnonH@dbfb37190cec481f85ffb172616576b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isabella Conroy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Isabella Conroy,ou=Payroll,dc=bitwarden,dc=com", - email: "ConroyI@bedabc2584d54b45a84df472911e0618.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandon Menaker,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brandon Menaker,ou=Janitorial,dc=bitwarden,dc=com", - email: "MenakerB@f22b1e0b52f04f96b88d6fd9a1b75a51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mame Sanford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mame Sanford,ou=Human Resources,dc=bitwarden,dc=com", - email: "SanfordM@1bd9378f4faa43eeb60412b52d7ba309.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bea Aloi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bea Aloi,ou=Peons,dc=bitwarden,dc=com", - email: "AloiB@634978d04fca41d6af5289220bc42474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sylvia Alink,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sylvia Alink,ou=Management,dc=bitwarden,dc=com", - email: "AlinkS@a788cde9cf67461c89ae1bce3d05e3df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mora McGovern,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mora McGovern,ou=Human Resources,dc=bitwarden,dc=com", - email: "McGoverM@cf949ad46d1d4454911d4e2468d96da8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiphani Lieure,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tiphani Lieure,ou=Administrative,dc=bitwarden,dc=com", - email: "LieureT@dae020ec31d14d5190cd1eb64ded6424.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Consolata Bejar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Consolata Bejar,ou=Peons,dc=bitwarden,dc=com", - email: "BejarC@b8b19224acee46229ad2985e549b9721.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winnie Jensenworth,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Winnie Jensenworth,ou=Management,dc=bitwarden,dc=com", - email: "JensenwW@3e500286762446ec8a3697b2944efa12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marcy Zelenka,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZelenkaM@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Takashi Lamirande,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Takashi Lamirande,ou=Product Development,dc=bitwarden,dc=com", - email: "LamiranT@1ae520db2b4049958bea389114d0192d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kiyoon Pape,ou=Janitorial,dc=bitwarden,dc=com", - email: "PapeK@01c459dd18154d91bb999b9b97f18487.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosamund Serack,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rosamund Serack,ou=Payroll,dc=bitwarden,dc=com", - email: "SerackR@bf2f61fe09a540bebb83fd50294209be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Magdalena Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", - email: "NagenthM@43e074754773490d9b66c094be93c694.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natalee Keitel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Natalee Keitel,ou=Human Resources,dc=bitwarden,dc=com", - email: "KeitelN@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desiree Conde,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Desiree Conde,ou=Peons,dc=bitwarden,dc=com", - email: "CondeD@76f6104d33de482eb35b100eb7033678.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clyde Kamal,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Clyde Kamal,ou=Human Resources,dc=bitwarden,dc=com", - email: "KamalC@ae9e40f26a5947a6a794749db94a6421.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shana Mulvie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shana Mulvie,ou=Management,dc=bitwarden,dc=com", - email: "MulvieS@a2c9df9a4cd24389b4a0116cc38b3328.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PeyKee Rios,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=PeyKee Rios,ou=Management,dc=bitwarden,dc=com", - email: "RiosP@8fd45f1616e84409af12cbcbd209c8d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Costas Szabo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Costas Szabo,ou=Product Development,dc=bitwarden,dc=com", - email: "SzaboC@a6010d4cf59f403c9d7f9d2a99b954e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wilf GaudetMontsion,ou=Human Resources,dc=bitwarden,dc=com", - email: "GaudetMW@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Su Organization,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Su Organization,ou=Management,dc=bitwarden,dc=com", - email: "OrganizS@85b8d92598e444df802ef3bb350fde3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bonni Lonnman,ou=Janitorial,dc=bitwarden,dc=com", - email: "LonnmanB@0c57744da3fe41ddac31ce862540bae7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norean Brien,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Norean Brien,ou=Administrative,dc=bitwarden,dc=com", - email: "BrienN@6350670014bc4ca5b2d98b891ee95b9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiena Clapham,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tiena Clapham,ou=Management,dc=bitwarden,dc=com", - email: "ClaphamT@519077386b7144648a1af65801ba340e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Oralia Laviolette,ou=Janitorial,dc=bitwarden,dc=com", - email: "LavioleO@0bf16d212dca48d58b5ba2e7e2475978.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Krishnamurthy Melton,ou=Payroll,dc=bitwarden,dc=com", - email: "MeltonK@7bb52bb06b244b41a3cd78dfcc311e5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gursharan Athwal,ou=Human Resources,dc=bitwarden,dc=com", - email: "AthwalG@5fcb2729c2db4bbc94757b6ad2c7a275.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jade Jims,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jade Jims,ou=Management,dc=bitwarden,dc=com", - email: "JimsJ@0a6ccfe4eb2e49debe0647e11b1f99cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramin McKeen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ramin McKeen,ou=Human Resources,dc=bitwarden,dc=com", - email: "McKeenR@866f4a15cdb24c75a67bad9f00bdce9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Satyajit Bryenton,ou=Human Resources,dc=bitwarden,dc=com", - email: "BryentoS@25cd954a684b4b73a5dc6672df8e79ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Quintilla Schirtzinger,ou=Management,dc=bitwarden,dc=com", - email: "SchirtzQ@3703481ba2f54b52ba43477946921782.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steffie Bohn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Steffie Bohn,ou=Janitorial,dc=bitwarden,dc=com", - email: "BohnS@50c897b07621433593f9bdfb9cb664c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rachael DuBois,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rachael DuBois,ou=Payroll,dc=bitwarden,dc=com", - email: "DuBoisR@d5e1ce2fb74a43bfad3a9a3884b1f907.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kore Mayhugh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kore Mayhugh,ou=Product Development,dc=bitwarden,dc=com", - email: "MayhughK@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eleen Moledina,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eleen Moledina,ou=Administrative,dc=bitwarden,dc=com", - email: "MoledinE@4bba23a995da4ee98c2c53bd5fa682de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaminsky Meany,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kaminsky Meany,ou=Product Development,dc=bitwarden,dc=com", - email: "MeanyK@7aef78da99704981a62a4bf14dcfd6be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hermione Adminmtv,ou=Product Development,dc=bitwarden,dc=com", - email: "AdminmtH@087a871812bc441ea91b6630e3a79d9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pammi Overton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pammi Overton,ou=Human Resources,dc=bitwarden,dc=com", - email: "OvertonP@7f63e51441fc4e1aab1257e0bb185e66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sinh Abbott,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sinh Abbott,ou=Peons,dc=bitwarden,dc=com", - email: "AbbottS@27847b451a7948ddad5e776a210cd769.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LouAnn Gaines,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=LouAnn Gaines,ou=Product Development,dc=bitwarden,dc=com", - email: "GainesL@10343387398a4a139abd0771818be0c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arabella Shamblin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Arabella Shamblin,ou=Administrative,dc=bitwarden,dc=com", - email: "ShambliA@6fd2244f1eb4433c9c4032eadff24678.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Leonard McFarlane,ou=Product Testing,dc=bitwarden,dc=com", - email: "McFarlaL@b5110eee63164b03a1156fbe465ff053.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cammie Erbach,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cammie Erbach,ou=Management,dc=bitwarden,dc=com", - email: "ErbachC@703805ed33844be785223bfd3a5cb030.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Eugenia LeCouteur,ou=Peons,dc=bitwarden,dc=com", - email: "LeCouteE@86d24a798dce4653a3b75c56ae675864.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dayton Baughan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dayton Baughan,ou=Peons,dc=bitwarden,dc=com", - email: "BaughanD@518638c8b3ee480098591bd6806de72a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meggi Rozier,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Meggi Rozier,ou=Product Testing,dc=bitwarden,dc=com", - email: "RozierM@dfaff98f73b34c5995272b067ac045a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Romulus Zuk,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Romulus Zuk,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZukR@e3f89583f77e4884a1d8183b4faa15a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marce Tiller,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marce Tiller,ou=Payroll,dc=bitwarden,dc=com", - email: "TillerM@92160f75073741b5a487392a12009a3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Oryal Eveleigh,ou=Payroll,dc=bitwarden,dc=com", - email: "EveleigO@fa687144921b436e82405266f480b00e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patt Brennand,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Patt Brennand,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrennanP@c41f8f7aea354718b6ea3277359c3684.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fanchon Noujeim,ou=Product Testing,dc=bitwarden,dc=com", - email: "NoujeimF@f1c1878671bd497c916d8d6aa3e192fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claus Depew,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Claus Depew,ou=Janitorial,dc=bitwarden,dc=com", - email: "DepewC@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vahe Kerwin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vahe Kerwin,ou=Peons,dc=bitwarden,dc=com", - email: "KerwinV@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pauletta Crocker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pauletta Crocker,ou=Peons,dc=bitwarden,dc=com", - email: "CrockerP@cd73f05f4ce24da39ba208c39afe4699.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rusty Zaretsky,ou=Administrative,dc=bitwarden,dc=com", - email: "ZaretskR@29091675735e43659fad673363e0d6e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sterling Shostak,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sterling Shostak,ou=Payroll,dc=bitwarden,dc=com", - email: "ShostakS@5e804d1ca9ae4836a819c9a675bca682.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kartik Rogge,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kartik Rogge,ou=Product Development,dc=bitwarden,dc=com", - email: "RoggeK@ed2fd27c6a094387b519147346c69de2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shutterbug Decleir,ou=Product Testing,dc=bitwarden,dc=com", - email: "DecleirS@e960715ae7d94ea9beaf0d6200cce087.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fei Reich,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fei Reich,ou=Payroll,dc=bitwarden,dc=com", - email: "ReichF@1df73cc203344a569c1b4737122f78a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leyla Etten,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leyla Etten,ou=Administrative,dc=bitwarden,dc=com", - email: "EttenL@c57373b0d5374d00a3d6688cc686509b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sattar Sergent,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sattar Sergent,ou=Product Development,dc=bitwarden,dc=com", - email: "SergentS@d44f5cb4445645618f46dbaf398e001b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kare Hochberger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kare Hochberger,ou=Human Resources,dc=bitwarden,dc=com", - email: "HochberK@9bffc8dac39c4d7a8d074f9c52e78d4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilly Kuykendall,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lilly Kuykendall,ou=Management,dc=bitwarden,dc=com", - email: "KuykendL@ed036fc76d5d414c9c14953da4ed7bc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rachele Fullum,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rachele Fullum,ou=Human Resources,dc=bitwarden,dc=com", - email: "FullumR@5d439b9e1cae4e6b90829e7c5b63fe41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madella Forslund,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Madella Forslund,ou=Product Development,dc=bitwarden,dc=com", - email: "ForslunM@fc156685829a4314bfd89bdd05aebbdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sissela Nahabedian,ou=Product Testing,dc=bitwarden,dc=com", - email: "NahabedS@a8f7a07ce7504ae4bfde0cfae682a40b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janio Fussell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Janio Fussell,ou=Janitorial,dc=bitwarden,dc=com", - email: "FussellJ@203f595734f14fd4a19d2bdd33a37227.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lacy Carr,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lacy Carr,ou=Payroll,dc=bitwarden,dc=com", - email: "CarrL@a4017bf573f740adae75dd44a602bed4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erinna Odden,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Erinna Odden,ou=Peons,dc=bitwarden,dc=com", - email: "OddenE@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bertrand Devgon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bertrand Devgon,ou=Administrative,dc=bitwarden,dc=com", - email: "DevgonB@802b05236c97484db9a6d34278cbb7c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ahmet Achille,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ahmet Achille,ou=Product Testing,dc=bitwarden,dc=com", - email: "AchilleA@ad4fa0aaba714bddbb75e4f5cdfd0a13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heike Jenner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Heike Jenner,ou=Human Resources,dc=bitwarden,dc=com", - email: "JennerH@a58e2e7328b140e6b9088aee54dad46e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynde Staats,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lynde Staats,ou=Janitorial,dc=bitwarden,dc=com", - email: "StaatsL@5ed725aaaff54f8794312c34ad60e5f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estele Kolappa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Estele Kolappa,ou=Payroll,dc=bitwarden,dc=com", - email: "KolappaE@0565c5e96dfc4577b9a5d67dbae6882a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oriana Hughes,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Oriana Hughes,ou=Janitorial,dc=bitwarden,dc=com", - email: "HughesO@e2397feadabe41139e01dea5a3231c3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucila Rand,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lucila Rand,ou=Payroll,dc=bitwarden,dc=com", - email: "RandL@dccd68e9261a427bb9a86d2b2c52f7a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emile Bellis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Emile Bellis,ou=Product Testing,dc=bitwarden,dc=com", - email: "BellisE@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LouisPhilippe Hann,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=LouisPhilippe Hann,ou=Management,dc=bitwarden,dc=com", - email: "HannL@9b8cc74fde31459a93e65b46f65c8533.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franka Frey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Franka Frey,ou=Administrative,dc=bitwarden,dc=com", - email: "FreyF@5319f4b5e8194323b5cce9067279026f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jillian Unger,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jillian Unger,ou=Product Testing,dc=bitwarden,dc=com", - email: "UngerJ@8f055851cf2e446194b128d0faf47339.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mathilda Diederichs,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mathilda Diederichs,ou=Management,dc=bitwarden,dc=com", - email: "DiederiM@ceea5b3f3fff489eb3469f368fd35271.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susanna Vlahos,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Susanna Vlahos,ou=Product Development,dc=bitwarden,dc=com", - email: "VlahosS@8a8d1631964049f182939e971c150026.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hermina Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", - email: "AbbatanH@5ecc6915b8f34c488bb751101ec4f57f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aila Henninger,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aila Henninger,ou=Product Testing,dc=bitwarden,dc=com", - email: "HenningA@9f0054716a414ce084f33e268195dbbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettye Guth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bettye Guth,ou=Janitorial,dc=bitwarden,dc=com", - email: "GuthB@36d678241c3f4fb4beaa7d9336f3b523.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Livvie Benwell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Livvie Benwell,ou=Peons,dc=bitwarden,dc=com", - email: "BenwellL@c65f075234ae4ca0ba28441c293a5096.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pierette Gonsalves,ou=Administrative,dc=bitwarden,dc=com", - email: "GonsalvP@6c6664d2385d43519ebb52ff761aba92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melek Nagendra,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melek Nagendra,ou=Janitorial,dc=bitwarden,dc=com", - email: "NagendrM@7a1816127b6749e79a6ce3a8a34ebdb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gretel McCorquodale,ou=Human Resources,dc=bitwarden,dc=com", - email: "McCorquG@9c4f9eaf4eea42848e2ed65a10014c07.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lesli Tobias,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lesli Tobias,ou=Human Resources,dc=bitwarden,dc=com", - email: "TobiasL@d90d5ffcbe644d5f8785140dc4df2905.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greta Schecter,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Greta Schecter,ou=Management,dc=bitwarden,dc=com", - email: "SchecteG@75a7fc9d939e4f5bbf93de65e9cc63e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Daphne Brodfuehrer,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrodfueD@f920b917085d494384c9f6cf31731d98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gwyn Khadbai,ou=Product Testing,dc=bitwarden,dc=com", - email: "KhadbaiG@b26dd8079ae74537bc6512a712066520.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nevil Padgett,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nevil Padgett,ou=Administrative,dc=bitwarden,dc=com", - email: "PadgettN@8ac9cfdbb2124b0e9c0547e5d43a4e68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bianka Cooke,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bianka Cooke,ou=Management,dc=bitwarden,dc=com", - email: "CookeB@df66a35b0d0f4b4c94777a0a93eec996.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ivonne Rybczynski,ou=Product Development,dc=bitwarden,dc=com", - email: "RybczynI@36bf168f83f54de6b68d81c3236caec7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjan Lyman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marjan Lyman,ou=Administrative,dc=bitwarden,dc=com", - email: "LymanM@3bd0291e8cff49548689d7d941f27f3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurora Bayno,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aurora Bayno,ou=Peons,dc=bitwarden,dc=com", - email: "BaynoA@0ad766b055ac4f6f8498d26e88dc0654.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Housseini Dominguez,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Housseini Dominguez,ou=Administrative,dc=bitwarden,dc=com", - email: "DominguH@1702c7050ede4a30a493b614c6f96d2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arnie Ulrich,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Arnie Ulrich,ou=Administrative,dc=bitwarden,dc=com", - email: "UlrichA@abe51797f5124683a93236751a4e6fc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amrik Carlock,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Amrik Carlock,ou=Administrative,dc=bitwarden,dc=com", - email: "CarlockA@431bd1e3a1554ddda35b23b44d614abd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saundra Crapco,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Saundra Crapco,ou=Product Testing,dc=bitwarden,dc=com", - email: "CrapcoS@a38a54d93a9a4ec1a621a87e5a204d4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shashi Ketcheson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shashi Ketcheson,ou=Management,dc=bitwarden,dc=com", - email: "KetchesS@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maidlab McMillion,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Maidlab McMillion,ou=Peons,dc=bitwarden,dc=com", - email: "McMilliM@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cloe Marquart,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cloe Marquart,ou=Payroll,dc=bitwarden,dc=com", - email: "MarquarC@27d8549892a84dfab24d317e0ea5c6f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roselle Donald,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Roselle Donald,ou=Human Resources,dc=bitwarden,dc=com", - email: "DonaldR@98ae5dd6e4ab44b5ae67cbaf5772c205.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chander Roussy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chander Roussy,ou=Product Testing,dc=bitwarden,dc=com", - email: "RoussyC@eb78b63b75ba4f27a8837a49801a5d87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sunny Rollin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sunny Rollin,ou=Product Development,dc=bitwarden,dc=com", - email: "RollinS@1bb0accf179c40f18fe1bf2f50f413b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gray Wroblewski,ou=Janitorial,dc=bitwarden,dc=com", - email: "WroblewG@823588f41bb949d9803b8c0afb801dd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sam Meldrum,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sam Meldrum,ou=Human Resources,dc=bitwarden,dc=com", - email: "MeldrumS@003f2218b9fd4a96bb2b10368a1c04ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kitson Sture,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kitson Sture,ou=Management,dc=bitwarden,dc=com", - email: "StureK@374ee8e2d55948f4b3d3959e5c870fde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janot Breglec,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Janot Breglec,ou=Human Resources,dc=bitwarden,dc=com", - email: "BreglecJ@e915bf6c406f46f5ac163116df6fd9b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaye Rothwell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gaye Rothwell,ou=Administrative,dc=bitwarden,dc=com", - email: "RothwelG@83a3c9a6bd4547dd81cf1dad18f71e7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moe Schumann,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Moe Schumann,ou=Janitorial,dc=bitwarden,dc=com", - email: "SchumanM@fc8a319bf73b4066b064fbad43614c48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarene Keifer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sarene Keifer,ou=Product Development,dc=bitwarden,dc=com", - email: "KeiferS@28da466dba2a49fabba592c4c805fca1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Adelice Limbaugh,ou=Product Development,dc=bitwarden,dc=com", - email: "LimbaugA@d843134b5a6249eda76a289f48094398.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janette Npi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Janette Npi,ou=Payroll,dc=bitwarden,dc=com", - email: "NpiJ@7e68fcf7d1c0481096800d5b87b7212d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danette Galloway,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Danette Galloway,ou=Peons,dc=bitwarden,dc=com", - email: "GallowaD@9dd46e72015c4014b5f15189a14009e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorianne Mullett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lorianne Mullett,ou=Product Development,dc=bitwarden,dc=com", - email: "MullettL@8970f66e3c7349128b71099e5c1cee90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isabeau Wippel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Isabeau Wippel,ou=Administrative,dc=bitwarden,dc=com", - email: "WippelI@948682def8064e8b984ddc8e87e5fdee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassi McRae,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cassi McRae,ou=Human Resources,dc=bitwarden,dc=com", - email: "McRaeC@0241a0d3cbf64f09a3380b82cf315d15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WaiLeung Marples,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=WaiLeung Marples,ou=Product Development,dc=bitwarden,dc=com", - email: "MarplesW@53b43fb5d4e34daa86eaa9d6dd2bd917.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joceline Seifried,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Joceline Seifried,ou=Payroll,dc=bitwarden,dc=com", - email: "SeifrieJ@911b346497874da4b48522c31ad5633c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bill Coldwell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bill Coldwell,ou=Payroll,dc=bitwarden,dc=com", - email: "ColdwelB@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marjorie deMontluzin,ou=Janitorial,dc=bitwarden,dc=com", - email: "deMontlM@f115ded519524610ab74393c6ce8cdfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlo Belich,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marlo Belich,ou=Product Development,dc=bitwarden,dc=com", - email: "BelichM@e8760cb58ba74207a1122bd21950ad46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nicholle Markmeyer,ou=Human Resources,dc=bitwarden,dc=com", - email: "MarkmeyN@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prams StOnge,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Prams StOnge,ou=Peons,dc=bitwarden,dc=com", - email: "StOngeP@004a67613be24dd1bb7727566082246b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eudora Dunstan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eudora Dunstan,ou=Management,dc=bitwarden,dc=com", - email: "DunstanE@700aa0e6ff224df9962657c1adbdf0d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thor Ritz,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Thor Ritz,ou=Management,dc=bitwarden,dc=com", - email: "RitzT@7ecd6e3be3c34590b3634684f3566a34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manhatten Isert,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Manhatten Isert,ou=Product Development,dc=bitwarden,dc=com", - email: "IsertM@1b075a91584f496088ea7442a5922cef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farra Garee,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Farra Garee,ou=Payroll,dc=bitwarden,dc=com", - email: "GareeF@78e66db4daf244269be3e0f7fc49db85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arun Xpm,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Arun Xpm,ou=Human Resources,dc=bitwarden,dc=com", - email: "XpmA@412a31e8728a4c5a8ecbcd1736c486e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shigeru Albritton,ou=Product Testing,dc=bitwarden,dc=com", - email: "AlbrittS@2ec15169d3824bb991e5ec642147de0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alida Ausley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Alida Ausley,ou=Product Testing,dc=bitwarden,dc=com", - email: "AusleyA@f8ab716c26494879b2465829da010f5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jasmina Kraehenbuehl,ou=Administrative,dc=bitwarden,dc=com", - email: "KraehenJ@6131da53a3b54b04a03670080f19a44f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trina Okon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Trina Okon,ou=Payroll,dc=bitwarden,dc=com", - email: "OkonT@f253a86f6ff647d3aa19776207af5865.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kania Harter,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kania Harter,ou=Payroll,dc=bitwarden,dc=com", - email: "HarterK@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Samantha Gantt,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Samantha Gantt,ou=Product Development,dc=bitwarden,dc=com", - email: "GanttS@57aded8fb98d4e528d1fb70b95b777c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akin Houde,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Akin Houde,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoudeA@8df41f7f77284af88f6f74347b022fef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vince Herscovici,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vince Herscovici,ou=Peons,dc=bitwarden,dc=com", - email: "HerscovV@2cb925e97f384833b8feb793c0daf990.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Issy Bachecongi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Issy Bachecongi,ou=Administrative,dc=bitwarden,dc=com", - email: "BachecoI@ebb963e9a1d74047879876a5672477e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Daffie Nethersole,ou=Human Resources,dc=bitwarden,dc=com", - email: "NethersD@5e4d473173474c608ac03e0447167cc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ric Pietrzak,ou=Janitorial,dc=bitwarden,dc=com", - email: "PietrzaR@2169be3657ca457db7de27d69c3db365.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fuzal NTPADMIN,ou=Product Development,dc=bitwarden,dc=com", - email: "NTPADMIF@ca5cfe9e2bd34d4daa1788a54ae9670d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seelan Licandro,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Seelan Licandro,ou=Human Resources,dc=bitwarden,dc=com", - email: "LicandrS@3ba4a4ede18c4c8db3f772d09fc2a81c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ashraf Owsiak,ou=Administrative,dc=bitwarden,dc=com", - email: "OwsiakA@94a04369a1f7454aa0b8a26e89e03c22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hqs Dipper,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hqs Dipper,ou=Janitorial,dc=bitwarden,dc=com", - email: "DipperH@6d4cfa9f4f814c42be18efd66cfafd41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sidone Ricks,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sidone Ricks,ou=Janitorial,dc=bitwarden,dc=com", - email: "RicksS@d9b9bb6f2d1e411b9f5df67c724690de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meghan Wai,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Meghan Wai,ou=Product Development,dc=bitwarden,dc=com", - email: "WaiM@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koen MacInnes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Koen MacInnes,ou=Human Resources,dc=bitwarden,dc=com", - email: "MacInneK@7ac19f1f7e20467f8c026cc1031d7f95.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ertan Boddeveld,ou=Product Development,dc=bitwarden,dc=com", - email: "BoddeveE@deb24c82a57b4b4ba4fd2ff9dfbbb9d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doralin Worthington,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Doralin Worthington,ou=Management,dc=bitwarden,dc=com", - email: "WorthinD@3603f9fb94e045a59b767f557fde78c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lilith Dalsiel,ou=Janitorial,dc=bitwarden,dc=com", - email: "DalsielL@f6d7bbdd5dca40ffa7d958eea386a355.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loris Godfrey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Loris Godfrey,ou=Product Testing,dc=bitwarden,dc=com", - email: "GodfreyL@612e506d26154bfda9f499632b50c09f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monroe Halpin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Monroe Halpin,ou=Management,dc=bitwarden,dc=com", - email: "HalpinM@9a472823c68140e2a8970835c083aba5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerianna Arnon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gerianna Arnon,ou=Administrative,dc=bitwarden,dc=com", - email: "ArnonG@b2ae4069e86943268e686f6fe06ee4a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Eustacia DIngianni,ou=Product Development,dc=bitwarden,dc=com", - email: "DIngianE@5c5bca41c1084c1a8e475f6b76094495.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hazem Pien,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hazem Pien,ou=Product Testing,dc=bitwarden,dc=com", - email: "PienH@553ab4a4d0034a748d4563ad14308038.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristofaro Dysart,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cristofaro Dysart,ou=Peons,dc=bitwarden,dc=com", - email: "DysartC@74f64cadc50c45bab4d4e7ff4e9f7687.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margot Muzio,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Margot Muzio,ou=Peons,dc=bitwarden,dc=com", - email: "MuzioM@65efa32362a041c6bf7a11231598ac71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Makary Wagers,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Makary Wagers,ou=Peons,dc=bitwarden,dc=com", - email: "WagersM@ab6b4dd3e6a9481bb932dc2b39ad4c1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yudy Sandford,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yudy Sandford,ou=Payroll,dc=bitwarden,dc=com", - email: "SandforY@d5cc15f6bb6b4357bd0ce84100b284f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baruk Junaid,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Baruk Junaid,ou=Peons,dc=bitwarden,dc=com", - email: "JunaidB@9f557b7cfb384a169129c691f7b5eeed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morganne Grimmell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Morganne Grimmell,ou=Management,dc=bitwarden,dc=com", - email: "GrimmelM@477794cc09b1403eae274b941a7cdeff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evaleen Beine,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Evaleen Beine,ou=Product Testing,dc=bitwarden,dc=com", - email: "BeineE@58d52c34bc5a4b32a84addaebe6b1c8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yumi Mudry,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yumi Mudry,ou=Human Resources,dc=bitwarden,dc=com", - email: "MudryY@30ca0b4b2c6d4aff9d3ac9b5f46982e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salomi Heisler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Salomi Heisler,ou=Management,dc=bitwarden,dc=com", - email: "HeislerS@de69795c4c4c4284812c4db5353fa4eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trey ETAS,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Trey ETAS,ou=Product Testing,dc=bitwarden,dc=com", - email: "ETAST@d79e418348c94168b4dd89d46432d83f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Delisle Wishewan,ou=Janitorial,dc=bitwarden,dc=com", - email: "WishewaD@35193777bef64194b24098fc1b98f7ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Co Knighten,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Co Knighten,ou=Product Development,dc=bitwarden,dc=com", - email: "KnighteC@87dcc1359cb14e3b85fed9765ee13d91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gillie Rheaume,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gillie Rheaume,ou=Product Development,dc=bitwarden,dc=com", - email: "RheaumeG@7741374717804087bc8fc55c986de74b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yvonne Benavidez,ou=Product Development,dc=bitwarden,dc=com", - email: "BenavidY@32037f3bd743420296270ff80da78e1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jamal Scotti,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jamal Scotti,ou=Product Development,dc=bitwarden,dc=com", - email: "ScottiJ@13b504a8a169451f93c28e40583299e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharri Lotz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sharri Lotz,ou=Product Development,dc=bitwarden,dc=com", - email: "LotzS@496d582fba1f48fead6391e894698c13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnella Loi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Agnella Loi,ou=Janitorial,dc=bitwarden,dc=com", - email: "LoiA@e1f896403d134dc18441efaefd89f914.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leno Henley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leno Henley,ou=Management,dc=bitwarden,dc=com", - email: "HenleyL@e29946cbb54948f9aec00f7a05eb0737.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shelbi Szeto,ou=Human Resources,dc=bitwarden,dc=com", - email: "SzetoS@ef52200320a34601b7e10e8ff147afd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rajinderpal Dace,ou=Janitorial,dc=bitwarden,dc=com", - email: "DaceR@6caa5a9ac52c4d64b49fd033d3499ddc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kelcey Gregorio,ou=Product Development,dc=bitwarden,dc=com", - email: "GregoriK@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elex Langer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elex Langer,ou=Peons,dc=bitwarden,dc=com", - email: "LangerE@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dwain Bielby,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dwain Bielby,ou=Product Development,dc=bitwarden,dc=com", - email: "BielbyD@0d89387630504e3d959bb5ff8f1b89ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=ThanhSon Mannion,ou=Human Resources,dc=bitwarden,dc=com", - email: "MannionT@995756bc696444e0925a45b2d907b2e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roy Terranova,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Roy Terranova,ou=Peons,dc=bitwarden,dc=com", - email: "TerranoR@57a6ba7501424a8abade55339f684e3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nicol Fowlkes,ou=Janitorial,dc=bitwarden,dc=com", - email: "FowlkesN@d40125293395457eaed2134155d04681.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vaughn Corlett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vaughn Corlett,ou=Peons,dc=bitwarden,dc=com", - email: "CorlettV@bb783944cdf1498cb4614b490b25cc0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gladys Helmy,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gladys Helmy,ou=Management,dc=bitwarden,dc=com", - email: "HelmyG@df40332a741445b7a8fa73b2a928c4b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bihari Mirek,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bihari Mirek,ou=Product Development,dc=bitwarden,dc=com", - email: "MirekB@3e044de8fdd14b83b9b0d85310545f1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bunni Dewitt,ou=Product Testing,dc=bitwarden,dc=com", - email: "DewittB@fe07d129e5344ba9b03e2ffcc8db4597.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lissa Hernandez,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lissa Hernandez,ou=Administrative,dc=bitwarden,dc=com", - email: "HernandL@89e4e0e6aba5481cb5a471d8c425e9ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tabatha Shillingford,ou=Product Development,dc=bitwarden,dc=com", - email: "ShillinT@a33324bfbeba45c9aed68650670aad46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Deeanne Alfred,ou=Human Resources,dc=bitwarden,dc=com", - email: "AlfredD@6f609804b5454243a8f49419cf4fa238.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Torre Monahan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Torre Monahan,ou=Product Development,dc=bitwarden,dc=com", - email: "MonahanT@70748fe689e2445ebbe07527f7179bb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maia Arellano,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maia Arellano,ou=Janitorial,dc=bitwarden,dc=com", - email: "ArellanM@f397e344461e4f9a88c49c97eb320637.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gina Hattar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gina Hattar,ou=Management,dc=bitwarden,dc=com", - email: "HattarG@6d6628d9da624cadbb049fbfa6bdf2da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dena Trottier,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dena Trottier,ou=Peons,dc=bitwarden,dc=com", - email: "TrottieD@f4b8173477b44cefa65ae7313aaf8ebf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vmchange Cavan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vmchange Cavan,ou=Administrative,dc=bitwarden,dc=com", - email: "CavanV@1eb2456e111c4bd988f50cdf3b94db14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorie Brickey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lorie Brickey,ou=Product Development,dc=bitwarden,dc=com", - email: "BrickeyL@34a1d693e4fb4c4b93e2ff11c22319d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardie Dix,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ardie Dix,ou=Peons,dc=bitwarden,dc=com", - email: "DixA@9572e6f979bb4b11856883fbf4267c29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maybelle Augustus,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maybelle Augustus,ou=Product Development,dc=bitwarden,dc=com", - email: "AugustuM@e822f80dc4b84873b9cd6725909b316b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Engracia Materkowski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Engracia Materkowski,ou=Payroll,dc=bitwarden,dc=com", - email: "MaterkoE@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacqueline Durant,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jacqueline Durant,ou=Payroll,dc=bitwarden,dc=com", - email: "DurantJ@fd4b1798fa4b4adcbc4df665d1546e59.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charly Klapper,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Charly Klapper,ou=Human Resources,dc=bitwarden,dc=com", - email: "KlapperC@6c41c4f512984d04a91eed45d8e765ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elpida Doerr,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elpida Doerr,ou=Payroll,dc=bitwarden,dc=com", - email: "DoerrE@4310e2be3a3a4f5d87f9af032cb0053b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bethena Parniani,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bethena Parniani,ou=Human Resources,dc=bitwarden,dc=com", - email: "ParnianB@6deaeb16d80f44ffa2ca06dfc1f89c97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ashlen Vaillant,ou=Human Resources,dc=bitwarden,dc=com", - email: "VaillanA@544f7671c8074caba5e197489f1c082c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janka Macklem,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Janka Macklem,ou=Management,dc=bitwarden,dc=com", - email: "MacklemJ@194b01da4c0947188a08ceb5675d4f64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrtie Mc,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Myrtie Mc,ou=Administrative,dc=bitwarden,dc=com", - email: "McM@c91f0550b80f407f9309a7740af038d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Edyta Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", - email: "GonzaleE@6b1195b29ef347f9ab299fd5409ce2bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ludovika McKnight,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ludovika McKnight,ou=Product Development,dc=bitwarden,dc=com", - email: "McKnighL@b1a6b6a5513044a8a462e54235172118.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anil Cotuna,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anil Cotuna,ou=Management,dc=bitwarden,dc=com", - email: "CotunaA@d0ee722bb1a5461aa78c6da256abd9e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrile Wilson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Merrile Wilson,ou=Management,dc=bitwarden,dc=com", - email: "WilsonM@c19c768c95d047dfb0b2309ab1ddea18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zahara Ferree,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Zahara Ferree,ou=Administrative,dc=bitwarden,dc=com", - email: "FerreeZ@fc85f8e4436a4774ae1c7ec792457997.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryrose Sagan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Maryrose Sagan,ou=Peons,dc=bitwarden,dc=com", - email: "SaganM@78e9cef1d0e74415b642613eadf820dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Legra Binder,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Legra Binder,ou=Administrative,dc=bitwarden,dc=com", - email: "BinderL@16c9187062174be89c2c9f0c8fb48cf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ernaline Tierney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ernaline Tierney,ou=Product Development,dc=bitwarden,dc=com", - email: "TierneyE@7e23b8de808e4c8687b7d328cf2c1f4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seven Nicol,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Seven Nicol,ou=Product Testing,dc=bitwarden,dc=com", - email: "NicolS@3f7557160f794dbf9536e20aa95467b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeannine Forsythe,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jeannine Forsythe,ou=Peons,dc=bitwarden,dc=com", - email: "ForsythJ@a58f1d89c8df4bb585be88ea46688614.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilmon Taheri,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tilmon Taheri,ou=Administrative,dc=bitwarden,dc=com", - email: "TaheriT@8c0b7ef96d07487ba2923e77c73234f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Svr Krishnan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Svr Krishnan,ou=Janitorial,dc=bitwarden,dc=com", - email: "KrishnaS@36d678241c3f4fb4beaa7d9336f3b523.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niki Khurana,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Niki Khurana,ou=Product Development,dc=bitwarden,dc=com", - email: "KhuranaN@b034a4332db1440db9d21ffa224b40ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vmcord Saikaley,ou=Product Development,dc=bitwarden,dc=com", - email: "SaikaleV@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duong Laux,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Duong Laux,ou=Human Resources,dc=bitwarden,dc=com", - email: "LauxD@6ad50b5570274446ac57cf22bb8d002a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vevay Isert,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vevay Isert,ou=Management,dc=bitwarden,dc=com", - email: "IsertV@761b142c7930458e927f8f3e0fb5672f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lonnie Visser,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lonnie Visser,ou=Management,dc=bitwarden,dc=com", - email: "VisserL@a67ff5b1ad97429ba599b05adf0b8c32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chungsik Choquette,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Chungsik Choquette,ou=Product Development,dc=bitwarden,dc=com", - email: "ChoquetC@683e25fc9db544c199938de64838b325.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalli Meilleur,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kalli Meilleur,ou=Administrative,dc=bitwarden,dc=com", - email: "MeilleuK@f48d7d3b63134ad1b2fb9b6ebafa3028.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merline Riggs,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Merline Riggs,ou=Product Development,dc=bitwarden,dc=com", - email: "RiggsM@baace83050b144e78a7deeac3e4a1a83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milka Parkes,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Milka Parkes,ou=Administrative,dc=bitwarden,dc=com", - email: "ParkesM@b0926f5fa5f345dab897ee36737c0cbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bakel Fisette,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bakel Fisette,ou=Management,dc=bitwarden,dc=com", - email: "FisetteB@78e39349ef7749648d2cb3e7b1e56508.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anjanette Sookdeo,ou=Payroll,dc=bitwarden,dc=com", - email: "SookdeoA@0bee0c2f43a54d2389e6693ac96ec902.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiley Hester,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kiley Hester,ou=Product Testing,dc=bitwarden,dc=com", - email: "HesterK@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eydie Edgar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eydie Edgar,ou=Product Testing,dc=bitwarden,dc=com", - email: "EdgarE@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherwyn Monn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sherwyn Monn,ou=Administrative,dc=bitwarden,dc=com", - email: "MonnS@173d5ea897d34c6da6358f054024f707.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danna Hagenbuch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Danna Hagenbuch,ou=Management,dc=bitwarden,dc=com", - email: "HagenbuD@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flossi Davidson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Flossi Davidson,ou=Management,dc=bitwarden,dc=com", - email: "DavidsoF@7f720158632c42a398491b4d094f5558.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosy Bergmann,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rosy Bergmann,ou=Administrative,dc=bitwarden,dc=com", - email: "BergmanR@57edeceb332942988b2e62feed2c524a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rosabel VanDyke,ou=Human Resources,dc=bitwarden,dc=com", - email: "VanDykeR@07a219dc36ae49e5a7c3fca4d77987a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Huanyu Longfield,ou=Product Testing,dc=bitwarden,dc=com", - email: "LongfieH@40a22fdf1b874c29a422cf0d00644473.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chrystel Thorslund,ou=Payroll,dc=bitwarden,dc=com", - email: "ThorsluC@3eb77d9e6bdc439197d45c120ada5eb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Larine Broca,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Larine Broca,ou=Peons,dc=bitwarden,dc=com", - email: "BrocaL@b15c671f53ec4084b852e3fd7c70c6ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cherish Sandhu,ou=Product Testing,dc=bitwarden,dc=com", - email: "SandhuC@b521092c73d244d8bb078d1c52e80bae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Therine McCurdy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Therine McCurdy,ou=Janitorial,dc=bitwarden,dc=com", - email: "McCurdyT@6f2328709fbe4233b85bba3d4ce3d844.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarice Travers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Clarice Travers,ou=Payroll,dc=bitwarden,dc=com", - email: "TraversC@06521bdd507441e9a09de35a0e462c1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dacey Bedard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dacey Bedard,ou=Product Testing,dc=bitwarden,dc=com", - email: "BedardD@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lissa Barsky,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lissa Barsky,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarskyL@72d3ee658b6a43d28d374f5d8eed91ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lino Endrys,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lino Endrys,ou=Peons,dc=bitwarden,dc=com", - email: "EndrysL@fc250c767129499c871d245494e9d9b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fina WGA,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fina WGA,ou=Product Testing,dc=bitwarden,dc=com", - email: "WGAF@a4017bf573f740adae75dd44a602bed4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Munir Colton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Munir Colton,ou=Human Resources,dc=bitwarden,dc=com", - email: "ColtonM@0e3cc15d16b54ddeae75d206f48f1204.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marje Dallaire,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marje Dallaire,ou=Payroll,dc=bitwarden,dc=com", - email: "DallairM@b6643004ae7246a0a5c8bc0fc567f1b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farrah Meehan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Farrah Meehan,ou=Administrative,dc=bitwarden,dc=com", - email: "MeehanF@b7986735a73c45799323fba0a5fdc4c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilda Alsop,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tilda Alsop,ou=Peons,dc=bitwarden,dc=com", - email: "AlsopT@4ae1d64c9a5a4ca1a7356298a39877d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leni Janovich,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Leni Janovich,ou=Peons,dc=bitwarden,dc=com", - email: "JanovicL@7e56f35864a04d13abbef377d8dec333.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katrina Morreale,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Katrina Morreale,ou=Payroll,dc=bitwarden,dc=com", - email: "MorrealK@dde38d4cf79a43e6be6fc2e886efaf99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hinda Briante,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hinda Briante,ou=Payroll,dc=bitwarden,dc=com", - email: "BrianteH@4d239de3030746348f24ce6068a42829.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helli Frie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Helli Frie,ou=Human Resources,dc=bitwarden,dc=com", - email: "FrieH@ce4d0d0fb96d4c2eaa1d4595e57562a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renell Ulrich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Renell Ulrich,ou=Product Testing,dc=bitwarden,dc=com", - email: "UlrichR@d753a61915314cb8b467492897701efa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Raven EmdinSproule,ou=Payroll,dc=bitwarden,dc=com", - email: "EmdinSpR@f57569f7524f4479b4d43ec8c220c303.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moel Taralp,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Moel Taralp,ou=Human Resources,dc=bitwarden,dc=com", - email: "TaralpM@541a9a67add74942af05ec9661f08230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Estel Hawryluk,ou=Product Testing,dc=bitwarden,dc=com", - email: "HawryluE@7a76f51f9f0b406b9e567bf7dd0f00c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keeley Rok,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Keeley Rok,ou=Peons,dc=bitwarden,dc=com", - email: "RokK@1808029426c342b7ba28a7e8e39e2911.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Britta Melucci,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Britta Melucci,ou=Payroll,dc=bitwarden,dc=com", - email: "MelucciB@fa0b8cf1d3c34137bfd563ac76c1d5af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=StClair Farren,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=StClair Farren,ou=Product Development,dc=bitwarden,dc=com", - email: "FarrenS@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vino Papantonis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vino Papantonis,ou=Peons,dc=bitwarden,dc=com", - email: "PapantoV@ac22893bf0684aefaebb0a0decbe182b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandi ENG,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sandi ENG,ou=Administrative,dc=bitwarden,dc=com", - email: "ENGS@e0e7355126af4d6f962ec720851e512c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michaela Blimkie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Michaela Blimkie,ou=Payroll,dc=bitwarden,dc=com", - email: "BlimkieM@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mort Kestelman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mort Kestelman,ou=Payroll,dc=bitwarden,dc=com", - email: "KestelmM@e1893d7ef9564395a0b1b816030adce2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ealasaid Kiang,ou=Product Testing,dc=bitwarden,dc=com", - email: "KiangE@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reinhold Briggs,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reinhold Briggs,ou=Peons,dc=bitwarden,dc=com", - email: "BriggsR@7408ed731222450eb6a92df81540fc99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norbert Rider,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Norbert Rider,ou=Payroll,dc=bitwarden,dc=com", - email: "RiderN@1f0f559b444d45e3b1fe4488d0fe440e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eveline Smelters,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eveline Smelters,ou=Administrative,dc=bitwarden,dc=com", - email: "SmelterE@c947b2da9a9d469f96a55a58f02702e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elinor Stambouli,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Elinor Stambouli,ou=Management,dc=bitwarden,dc=com", - email: "StambouE@c16f8f69599f40b6a45adf70ceeb4082.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maribel Whiteford,ou=Human Resources,dc=bitwarden,dc=com", - email: "WhitefoM@b0c48599d24847958412615828406699.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donnette Kenol,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Donnette Kenol,ou=Administrative,dc=bitwarden,dc=com", - email: "KenolD@f9cc3d472225428da9ff7fce4cb3bfb3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margette Keogh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Margette Keogh,ou=Product Development,dc=bitwarden,dc=com", - email: "KeoghM@3f1cc5153abb4e0f860ad9c6b08e10e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Qainfo Goodbar,ou=Human Resources,dc=bitwarden,dc=com", - email: "GoodbarQ@e3e39ba9c49a4a66982393d6f26bc8b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Makam Kumagai,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Makam Kumagai,ou=Product Development,dc=bitwarden,dc=com", - email: "KumagaiM@f41afebdf3e64dc8bbc4c83491a13722.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tallou Vairavan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tallou Vairavan,ou=Management,dc=bitwarden,dc=com", - email: "VairavaT@f36f45f8205e4b108d066ef8eb28e68b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elana Derrett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Elana Derrett,ou=Management,dc=bitwarden,dc=com", - email: "DerrettE@d7e8af68284e4062b608faac310d89ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanny Farranto,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hanny Farranto,ou=Human Resources,dc=bitwarden,dc=com", - email: "FarrantH@ea15a193a8df46519e51db6c6a047dbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucina Hobesh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lucina Hobesh,ou=Payroll,dc=bitwarden,dc=com", - email: "HobeshL@93250e1458e9462fb7830f342f899a75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jashvant Mellor,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jashvant Mellor,ou=Administrative,dc=bitwarden,dc=com", - email: "MellorJ@55336785d1804c1187eaae0c065b51fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dupuy McNeese,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dupuy McNeese,ou=Administrative,dc=bitwarden,dc=com", - email: "McNeeseD@86125263637c4474aade3dd7790bda7e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ying Forbs,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ying Forbs,ou=Janitorial,dc=bitwarden,dc=com", - email: "ForbsY@56ff7c3ad2a74f428698e9d39e33820f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paper Cowell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Paper Cowell,ou=Payroll,dc=bitwarden,dc=com", - email: "CowellP@625cb40efd254ff9b90ed168d6dd3db9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vispy Snair,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vispy Snair,ou=Product Development,dc=bitwarden,dc=com", - email: "SnairV@9d84faf7708a4fd5a3f8345e3cbc0463.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mona DeCecco,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mona DeCecco,ou=Product Development,dc=bitwarden,dc=com", - email: "DeCeccoM@3b5097c7d33f4dd5b850d3928945e3fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karolien Beznowski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Karolien Beznowski,ou=Payroll,dc=bitwarden,dc=com", - email: "BeznowsK@3e2956746c7c41b7b4dc5e63792f43cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Arabela Lobaugh,ou=Product Testing,dc=bitwarden,dc=com", - email: "LobaughA@5bd598c0d9694b5a98586530464323e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frinel Godcharles,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Frinel Godcharles,ou=Product Development,dc=bitwarden,dc=com", - email: "GodcharF@56069289c8d64d7e83fba8ed9cea781f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dung Goldstein,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dung Goldstein,ou=Product Development,dc=bitwarden,dc=com", - email: "GoldsteD@a0e76cfa1c434c8b8797cc038ac77ad3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Scarlet Coody,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Scarlet Coody,ou=Product Development,dc=bitwarden,dc=com", - email: "CoodyS@ae5f65ffb5c9447faad9235fe08e30d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julina Stahly,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Julina Stahly,ou=Product Testing,dc=bitwarden,dc=com", - email: "StahlyJ@9d473530c714418981d7e4ad1f672212.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kippy Roman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kippy Roman,ou=Payroll,dc=bitwarden,dc=com", - email: "RomanK@3986b5b118ef4d79a84f9f227789123a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helsa Stahly,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Helsa Stahly,ou=Management,dc=bitwarden,dc=com", - email: "StahlyH@e28d4d2595974c10b2f19b4fce54fe69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hiroko Whetston,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hiroko Whetston,ou=Product Development,dc=bitwarden,dc=com", - email: "WhetstoH@44b6ea0e30a2464c8f90bd5c6aec9902.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aviva Harwerth,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aviva Harwerth,ou=Peons,dc=bitwarden,dc=com", - email: "HarwertA@6ee94998653244b3b64234a9ee1b8607.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ambur McNerlan,ou=Janitorial,dc=bitwarden,dc=com", - email: "McNerlaA@668a7be7467f426eaa481fcc0af0008d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alida Ferriera,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alida Ferriera,ou=Peons,dc=bitwarden,dc=com", - email: "FerrierA@35f280bc0ed641759cb3d7609114d8c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vyky ONeal,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vyky ONeal,ou=Payroll,dc=bitwarden,dc=com", - email: "ONealV@b847cd495a564fd88ad378e323d86f9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daya Loader,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Daya Loader,ou=Peons,dc=bitwarden,dc=com", - email: "LoaderD@32037f3bd743420296270ff80da78e1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katsunori Bouret,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Katsunori Bouret,ou=Management,dc=bitwarden,dc=com", - email: "BouretK@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Phyllys Eisler,ou=Janitorial,dc=bitwarden,dc=com", - email: "EislerP@9a848a7f732f427f954ab2017da007b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorthy VanKessel,ou=Payroll,dc=bitwarden,dc=com", - email: "VanKessD@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rex Combellack,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rex Combellack,ou=Payroll,dc=bitwarden,dc=com", - email: "CombellR@6befdabbbc374615aeeed6f7a15c3c4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tallia Videa,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tallia Videa,ou=Management,dc=bitwarden,dc=com", - email: "VideaT@2c2f26204fa44156bad4b2a1a9213033.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Remy Lalonde,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Remy Lalonde,ou=Administrative,dc=bitwarden,dc=com", - email: "LalondeR@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tobi Houde,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tobi Houde,ou=Management,dc=bitwarden,dc=com", - email: "HoudeT@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tommi Luna,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tommi Luna,ou=Janitorial,dc=bitwarden,dc=com", - email: "LunaT@e33560f5a7ee4aa48f9e5af574f51dac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alkarim Kosnaskie,ou=Peons,dc=bitwarden,dc=com", - email: "KosnaskA@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alana Gelo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alana Gelo,ou=Human Resources,dc=bitwarden,dc=com", - email: "GeloA@218d5b5316c646fa8e9db29549e3afff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Magdaia Barnhart,ou=Product Development,dc=bitwarden,dc=com", - email: "BarnharM@ad4942d8c3c341119939c679c4dae154.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seven Salazar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Seven Salazar,ou=Management,dc=bitwarden,dc=com", - email: "SalazarS@31218813d50546c8962cb2d31042f36f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jeffrey Zukas,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZukasJ@b9106f7d57f74a7b92af146111acb57d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bethanne DeSouza,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeSouzaB@f78034ad70854ccbacb0124129d464fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Conway Jenness,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Conway Jenness,ou=Administrative,dc=bitwarden,dc=com", - email: "JennessC@752014cef4c74a4ea8012d4193349e8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=VanKing Padgett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=VanKing Padgett,ou=Human Resources,dc=bitwarden,dc=com", - email: "PadgettV@7770d32208f64a63bf44fae15e8c6935.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tansy Aronovich,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tansy Aronovich,ou=Product Development,dc=bitwarden,dc=com", - email: "AronoviT@281ce2096ed0496b9bf2ff2a6d46ed5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fidelity Shelley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fidelity Shelley,ou=Payroll,dc=bitwarden,dc=com", - email: "ShelleyF@72be16396166453d9bb6d2ec3f220789.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eirena Hrushowy,ou=Payroll,dc=bitwarden,dc=com", - email: "HrushowE@1a8c60a83e6243159e036bc3f0b25375.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tres Parr,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tres Parr,ou=Management,dc=bitwarden,dc=com", - email: "ParrT@6b3d33b809ec4793b446277435a68094.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrtice Graver,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Myrtice Graver,ou=Janitorial,dc=bitwarden,dc=com", - email: "GraverM@710eac99d23b4aba917dbd3cddce9e4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Junette Weyand,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Junette Weyand,ou=Product Development,dc=bitwarden,dc=com", - email: "WeyandJ@46fec3df47bd4fac9e1c336da359be09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daune Gosset,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Daune Gosset,ou=Product Development,dc=bitwarden,dc=com", - email: "GossetD@65b1e6b48cf94926a986434aa0ba38db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ingrid Ghaemi,ou=Peons,dc=bitwarden,dc=com", - email: "GhaemiI@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rolando McNally,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rolando McNally,ou=Administrative,dc=bitwarden,dc=com", - email: "McNallyR@e60dd9bce03a413a915d470a19570918.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ulf Sharpe,ou=Human Resources,dc=bitwarden,dc=com", - email: "SharpeU@ff8375ca1c294ee698da8ebb063821cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirstie Trochu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kirstie Trochu,ou=Product Development,dc=bitwarden,dc=com", - email: "TrochuK@b7e8ffd7abe14e2bbc8f66f6d437394f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryLou Brock,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=MaryLou Brock,ou=Peons,dc=bitwarden,dc=com", - email: "BrockM@c6c77a4e90174b75a23b2f90eeee4364.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Farrah Kobreek,ou=Janitorial,dc=bitwarden,dc=com", - email: "KobreekF@80b32d7e2c334eb6876146c942d4c564.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edy Singbeil,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Edy Singbeil,ou=Product Development,dc=bitwarden,dc=com", - email: "SingbeiE@693e5301c4924e0195024b48e34f4838.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carsten Macklin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carsten Macklin,ou=Management,dc=bitwarden,dc=com", - email: "MacklinC@b32e7088c3e746f58c4546405599fbf1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weiping Arnone,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Weiping Arnone,ou=Peons,dc=bitwarden,dc=com", - email: "ArnoneW@6f7b8496d2cc4db2b31e0a14360cc11d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joceline Muir,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joceline Muir,ou=Administrative,dc=bitwarden,dc=com", - email: "MuirJ@ac4d7f7fd78147f7b89e17731422f227.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opal Isaac,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Opal Isaac,ou=Management,dc=bitwarden,dc=com", - email: "IsaacO@f1199a5aeaa742f5bdd847407289b4a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eloise Tardioli,ou=Product Testing,dc=bitwarden,dc=com", - email: "TardiolE@fa561c4932fd49ab95806925cc7bd285.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dedra Bastien,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dedra Bastien,ou=Human Resources,dc=bitwarden,dc=com", - email: "BastienD@976adcda025f45689f8ecd72de9c606c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiri Gillon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kiri Gillon,ou=Management,dc=bitwarden,dc=com", - email: "GillonK@3835973847234e04a569100bfecc8dae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geoff Bergstrom,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Geoff Bergstrom,ou=Peons,dc=bitwarden,dc=com", - email: "BergstrG@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ngai Dorion,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ngai Dorion,ou=Human Resources,dc=bitwarden,dc=com", - email: "DorionN@20dec23f741b4bdbb6cfe2ede2355e8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dayna Bragg,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dayna Bragg,ou=Management,dc=bitwarden,dc=com", - email: "BraggD@ef52200320a34601b7e10e8ff147afd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madonna Parihar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Madonna Parihar,ou=Administrative,dc=bitwarden,dc=com", - email: "PariharM@8fe8053cf30a4c47b93e0a3f02958712.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ari Fergusson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ari Fergusson,ou=Product Development,dc=bitwarden,dc=com", - email: "FergussA@0f1f84ce6579498d8497bfb021e0f4e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramonda Tromm,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ramonda Tromm,ou=Product Development,dc=bitwarden,dc=com", - email: "TrommR@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Foster Cre,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Foster Cre,ou=Administrative,dc=bitwarden,dc=com", - email: "CreF@b2211048e736402188d0e7245e86301c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pennie Wolfenbarger,ou=Administrative,dc=bitwarden,dc=com", - email: "WolfenbP@efeb1d35d7fb4a6698c2e450cd5716f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willette Juhan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Willette Juhan,ou=Human Resources,dc=bitwarden,dc=com", - email: "JuhanW@f74860195dfd437aa0f4072ae1ebfe76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melamie Darcel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Melamie Darcel,ou=Product Development,dc=bitwarden,dc=com", - email: "DarcelM@fa1c0131e1b849f6a92c26986c36bbfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlena Joe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Arlena Joe,ou=Product Development,dc=bitwarden,dc=com", - email: "JoeA@ab9c48ef1f7c4b329b69e3276189b579.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mufi Higgins,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mufi Higgins,ou=Management,dc=bitwarden,dc=com", - email: "HigginsM@9aa4f24ee25742128efa49d5c6b540fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viera Paetsch,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Viera Paetsch,ou=Human Resources,dc=bitwarden,dc=com", - email: "PaetschV@47581aa1612b49fdb2540d1094155bc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roy Wai,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roy Wai,ou=Product Development,dc=bitwarden,dc=com", - email: "WaiR@18a7c545624d4840b8b6f5a185043430.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cheslie Lamont,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cheslie Lamont,ou=Administrative,dc=bitwarden,dc=com", - email: "LamontC@34766460128a4ee582041f543b9bd242.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ash Moomey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ash Moomey,ou=Payroll,dc=bitwarden,dc=com", - email: "MoomeyA@7f942390e1bf40f296074b513660c50e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Prashant Lawbaugh,ou=Janitorial,dc=bitwarden,dc=com", - email: "LawbaugP@feae037fe44941bbb430bf940494ca20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Humphrey Culver,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Humphrey Culver,ou=Product Development,dc=bitwarden,dc=com", - email: "CulverH@64455353115942ebbac2f03b722980cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Consolata Daniells,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Consolata Daniells,ou=Janitorial,dc=bitwarden,dc=com", - email: "DaniellC@f8ab716c26494879b2465829da010f5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Oleesa Tariq,ou=Janitorial,dc=bitwarden,dc=com", - email: "TariqO@367f3fe3a2324b2a8f4bae7b4fa61161.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cark Lowman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cark Lowman,ou=Janitorial,dc=bitwarden,dc=com", - email: "LowmanC@46fcd2052d404a708ecce9dd268b7838.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolien Tabl,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Carolien Tabl,ou=Peons,dc=bitwarden,dc=com", - email: "TablC@2c933403160143d19a899179ef24cca2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jere Nadon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jere Nadon,ou=Administrative,dc=bitwarden,dc=com", - email: "NadonJ@b2dba5d211e74e1e8b9beacd1ae0b042.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weber Chouinard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Weber Chouinard,ou=Management,dc=bitwarden,dc=com", - email: "ChouinaW@3a320a2664cd48219711b2ffaa2e5892.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othilia Redfoot,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Othilia Redfoot,ou=Product Development,dc=bitwarden,dc=com", - email: "RedfootO@89e33259b1f341dda582db87064be4b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drudy Joffe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Drudy Joffe,ou=Product Development,dc=bitwarden,dc=com", - email: "JoffeD@f928f43ad9cc43d983b210ccab6e69b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moris Abdullah,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Moris Abdullah,ou=Product Testing,dc=bitwarden,dc=com", - email: "AbdullaM@ee1df761a37f416c8ab1cdfe97a867af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Misbah Mach,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Misbah Mach,ou=Human Resources,dc=bitwarden,dc=com", - email: "MachM@234b370628574e5ea51ed780065f5c50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Charlena Angermeyr,ou=Product Development,dc=bitwarden,dc=com", - email: "AngermeC@cbaa630e3a194faaa797a1d7d5ab2466.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maribel Searles,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maribel Searles,ou=Administrative,dc=bitwarden,dc=com", - email: "SearlesM@3d84a4bfc0dd4c1f9fe55a53bcc58c24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilah Haverkamp,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lilah Haverkamp,ou=Management,dc=bitwarden,dc=com", - email: "HaverkaL@e8e76146b3cf4785898d03ad6423f9d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fanny Baril,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fanny Baril,ou=Payroll,dc=bitwarden,dc=com", - email: "BarilF@48e1fa01ec994d088dcb4d2bf8fc5515.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milou Dada,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Milou Dada,ou=Janitorial,dc=bitwarden,dc=com", - email: "DadaM@95aba425683d4bd1840a81fc67427bb1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sherye Jarvie,ou=Janitorial,dc=bitwarden,dc=com", - email: "JarvieS@c3ea2e07159b4059b3afc3ddc88034c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Earnest Walters,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Earnest Walters,ou=Administrative,dc=bitwarden,dc=com", - email: "WaltersE@7e60750ac4784fc193bbbefd09b6a791.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Alphonso Ramakrishna,ou=Product Testing,dc=bitwarden,dc=com", - email: "RamakriA@4f2c26d60a654639aab7c46dc90f555c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rochelle Buford,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rochelle Buford,ou=Management,dc=bitwarden,dc=com", - email: "BufordR@cad34ac8884647e3aa084b319084cb10.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rajani Enns,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rajani Enns,ou=Human Resources,dc=bitwarden,dc=com", - email: "EnnsR@36c858bc990c4f6890c6cb5179e5811d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ofella Nessman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ofella Nessman,ou=Product Testing,dc=bitwarden,dc=com", - email: "NessmanO@eff4b5c8cdd74572a1896b15aff841f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donella Lethebinh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Donella Lethebinh,ou=Administrative,dc=bitwarden,dc=com", - email: "LethebiD@5b4286bc4af74709a0f65475a29d7c53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tzung Camillucci,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tzung Camillucci,ou=Management,dc=bitwarden,dc=com", - email: "CamilluT@b37b8170c2a14be99b8672023148d924.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Atsuo Mayne,ou=Product Testing,dc=bitwarden,dc=com", - email: "MayneA@903617d1ed564473826d5f2c9b25fe7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rowena Vasudeva,ou=Administrative,dc=bitwarden,dc=com", - email: "VasudevR@f06dcb9a7c274d2c8b61f4765bcce046.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Laverna Gorlick,ou=Janitorial,dc=bitwarden,dc=com", - email: "GorlickL@685edfe843f3410a96aa97440113374e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzanna Furst,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Suzanna Furst,ou=Payroll,dc=bitwarden,dc=com", - email: "FurstS@70e46e55dad94d7bba82bf79618dd363.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Masha Bridenstine,ou=Janitorial,dc=bitwarden,dc=com", - email: "BridensM@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berri Pracht,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Berri Pracht,ou=Payroll,dc=bitwarden,dc=com", - email: "PrachtB@ac2881cfd212410799e38769b052602b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esko Feist,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Esko Feist,ou=Administrative,dc=bitwarden,dc=com", - email: "FeistE@f131b0c80bf2427c8f1448cabfd51b89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorin McNerney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dorin McNerney,ou=Product Development,dc=bitwarden,dc=com", - email: "McNerneD@c27a22599aa849ec8d6e0057e5fc89b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kataryna Vaters,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kataryna Vaters,ou=Peons,dc=bitwarden,dc=com", - email: "VatersK@9aed867d53c546c79f7cb774a38dec77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nikki Captives,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nikki Captives,ou=Product Development,dc=bitwarden,dc=com", - email: "CaptiveN@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mureil Fowlkes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mureil Fowlkes,ou=Peons,dc=bitwarden,dc=com", - email: "FowlkesM@bf899684934849bcb7f3a0d86a890838.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charla Silieff,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Charla Silieff,ou=Product Testing,dc=bitwarden,dc=com", - email: "SilieffC@fdc7d191201f48f4ad7e078c4bc3a04a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gladys Jarvah,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gladys Jarvah,ou=Management,dc=bitwarden,dc=com", - email: "JarvahG@1365456b38df40e8b356de5ec434637e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juan Hummel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Juan Hummel,ou=Peons,dc=bitwarden,dc=com", - email: "HummelJ@25f3da6efbac4e1a943679d0eb7798c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathryn Scheible,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cathryn Scheible,ou=Peons,dc=bitwarden,dc=com", - email: "ScheiblC@64a69cddd7bb4b56b7df20af602c35fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harri Senese,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Harri Senese,ou=Product Development,dc=bitwarden,dc=com", - email: "SeneseH@6c746d4a7e6b46028821b547cb3cb61f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moreen Lemay,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Moreen Lemay,ou=Management,dc=bitwarden,dc=com", - email: "LemayM@2534553c6cb5454888e3c62e4dc7cbc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marlena Frodsham,ou=Human Resources,dc=bitwarden,dc=com", - email: "FrodshaM@494f2548825245788f70b0629ca28b58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jeannette Jedrysiak,ou=Product Testing,dc=bitwarden,dc=com", - email: "JedrysiJ@4023635f5fb04eb5b921a5e9cca7220e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jabir Gunn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jabir Gunn,ou=Administrative,dc=bitwarden,dc=com", - email: "GunnJ@612e8eb188de48388f43236fca542654.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dotty Oman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dotty Oman,ou=Product Development,dc=bitwarden,dc=com", - email: "OmanD@1c75dd756d3646528231e24a92716bd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quintina Mallett,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Quintina Mallett,ou=Janitorial,dc=bitwarden,dc=com", - email: "MallettQ@231cbd7e6f7348cfac07641066e2fec0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Natascha Stansbury,ou=Janitorial,dc=bitwarden,dc=com", - email: "StansbuN@5c0a8df1a6ec4beaa217c5f72f1c4620.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sabra McCuaig,ou=Product Testing,dc=bitwarden,dc=com", - email: "McCuaigS@275ceeebf2b5444f8cf460d56ec9ab83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adie Itah,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Adie Itah,ou=Payroll,dc=bitwarden,dc=com", - email: "ItahA@34f90a14c10941158575c36d0a318149.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Philippine Corcoran,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Philippine Corcoran,ou=Peons,dc=bitwarden,dc=com", - email: "CorcoraP@a0ec5611c8b0407f85380c4a00447de2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ollie Panter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ollie Panter,ou=Human Resources,dc=bitwarden,dc=com", - email: "PanterO@8230b7d1e75c49b4b334d59396eca240.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elaina Karkotsky,ou=Administrative,dc=bitwarden,dc=com", - email: "KarkotsE@4691b2eac8ba4d1390582076e407a460.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clint Jesty,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Clint Jesty,ou=Product Development,dc=bitwarden,dc=com", - email: "JestyC@742a0235bc3841709c6d6197d9db9a18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Edythe Khodosh,ou=Janitorial,dc=bitwarden,dc=com", - email: "KhodoshE@574eddc7483948a59c9d38d5c8f6a354.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tomasina Gofron,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tomasina Gofron,ou=Product Development,dc=bitwarden,dc=com", - email: "GofronT@9c0732c5de1c4903a2c7114c9e303d9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nong Bnrecad,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nong Bnrecad,ou=Peons,dc=bitwarden,dc=com", - email: "BnrecadN@248d38bb7c664c8f9d2a64525819610e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margy Lucas,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Margy Lucas,ou=Management,dc=bitwarden,dc=com", - email: "LucasM@3fbf482bd66842dfadf615e0e20dc12e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melvin Cohen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Melvin Cohen,ou=Peons,dc=bitwarden,dc=com", - email: "CohenM@ccd3c7eb497f45ed91b85ebe03c21037.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milissent Rolls,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Milissent Rolls,ou=Peons,dc=bitwarden,dc=com", - email: "RollsM@ddf56813dd4c431986e007d26b82799f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jacquie Freeley,ou=Janitorial,dc=bitwarden,dc=com", - email: "FreeleyJ@899743aa481a45efb507e6d61189c383.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theodore Egdorf,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Theodore Egdorf,ou=Peons,dc=bitwarden,dc=com", - email: "EgdorfT@107125a246e24f24a9cf40da49e16737.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vernice Drynan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vernice Drynan,ou=Management,dc=bitwarden,dc=com", - email: "DrynanV@22c1616450914b67aaa0021953493b44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hensley Parrish,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hensley Parrish,ou=Janitorial,dc=bitwarden,dc=com", - email: "ParrishH@cbb46474a4d64b6d94b0841f08da9a09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Andrzej SalimYasuda,ou=Peons,dc=bitwarden,dc=com", - email: "SalimYaA@21cc8cee33394af98a10a365eddcb55c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Christyna Manwaring,ou=Product Testing,dc=bitwarden,dc=com", - email: "ManwariC@6a03900e00f041c8bad5cf924164b20c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elbert Culley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elbert Culley,ou=Payroll,dc=bitwarden,dc=com", - email: "CulleyE@38bb69a498e64b7781901ef7c50df3ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fady Benavides,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fady Benavides,ou=Human Resources,dc=bitwarden,dc=com", - email: "BenavidF@ae1d3c73ac3541698f9376eee53602f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Djenana LeGuen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Djenana LeGuen,ou=Payroll,dc=bitwarden,dc=com", - email: "LeGuenD@e80ca250f89b403b9611f3035a6f2a93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pratibha Danbrook,ou=Administrative,dc=bitwarden,dc=com", - email: "DanbrooP@cfe29e1726394f4a9a5f2244fdfdbc63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tele Travers,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tele Travers,ou=Product Testing,dc=bitwarden,dc=com", - email: "TraversT@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Susy Tatangsurja,ou=Product Development,dc=bitwarden,dc=com", - email: "TatangsS@ee6afb048cfd44e18bba35da7b089f24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherilyn Stults,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cherilyn Stults,ou=Administrative,dc=bitwarden,dc=com", - email: "StultsC@ae1bd8aa112143fa87c88a44e69aa310.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harri Kuntova,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Harri Kuntova,ou=Janitorial,dc=bitwarden,dc=com", - email: "KuntovaH@5a8cc902fcc5423d892dfdcc048c73b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulcine Litherland,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dulcine Litherland,ou=Peons,dc=bitwarden,dc=com", - email: "LitherlD@bbf9c04e50a241698a5503a647ae8281.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelwin Diee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kelwin Diee,ou=Product Development,dc=bitwarden,dc=com", - email: "DieeK@575b96dd8e82439988861ea4db931c38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wylo Dirbm,ou=Product Testing,dc=bitwarden,dc=com", - email: "DirbmW@5da44ffb6b534c2a8e8e949cd515b1cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Aurelea Brunoni,ou=Administrative,dc=bitwarden,dc=com", - email: "BrunoniA@d89a4c96e85d46e9b90aee84eca8553c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veen Tarver,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Veen Tarver,ou=Human Resources,dc=bitwarden,dc=com", - email: "TarverV@89cc2a9b2ec949b1a8070c39d600dc45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kimberlee Malee,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kimberlee Malee,ou=Payroll,dc=bitwarden,dc=com", - email: "MaleeK@b808f16625dc4c2a96aed338660eeca1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chiho Larmour,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Chiho Larmour,ou=Management,dc=bitwarden,dc=com", - email: "LarmourC@25466f5c2b4e4320afbe3eeabe295830.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrily Provencal,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Merrily Provencal,ou=Janitorial,dc=bitwarden,dc=com", - email: "ProvencM@5ed2a85f8436420b8aa9acd30085ca22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jorey Roehrig,ou=Human Resources,dc=bitwarden,dc=com", - email: "RoehrigJ@39ca6877ef574ca3bc5bd5f5e2e96e7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Divina Brevard,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Divina Brevard,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrevardD@e707a4307e404826b821947945a42b00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celine Lotan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Celine Lotan,ou=Payroll,dc=bitwarden,dc=com", - email: "LotanC@e8e7ee5b6e064589b4c7f97fde4b37f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noriko Corner,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Noriko Corner,ou=Management,dc=bitwarden,dc=com", - email: "CornerN@5cadcfe79eb54c65992596d7e8e0c690.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janean Hoshi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Janean Hoshi,ou=Administrative,dc=bitwarden,dc=com", - email: "HoshiJ@1435fdc2b771411ca35fcc6cc2698b9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shorwan Womack,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shorwan Womack,ou=Product Testing,dc=bitwarden,dc=com", - email: "WomackS@54ae4b8946dd40ba8c99c8bc8b14cd1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Deloria Kelsay,ou=Product Testing,dc=bitwarden,dc=com", - email: "KelsayD@36fbb38d5bbe4aa29ae95e79bf727529.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Leeanne Keyes,ou=Human Resources,dc=bitwarden,dc=com", - email: "KeyesL@ed9ac14d0dc747adb394c56c700ac22a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fiorenze Chrisman,ou=Administrative,dc=bitwarden,dc=com", - email: "ChrismaF@c0e08a4a1d724001a5c641abeefefcdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hattie Beilin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hattie Beilin,ou=Product Testing,dc=bitwarden,dc=com", - email: "BeilinH@3bfc3de402e042a394d461b86f93128b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loralie Cumming,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Loralie Cumming,ou=Administrative,dc=bitwarden,dc=com", - email: "CummingL@0eb174a38cfc4a95b6e9e718029db463.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanae Zalameda,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sanae Zalameda,ou=Peons,dc=bitwarden,dc=com", - email: "ZalamedS@848b025264d14e669cec02146f987418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rivalee Bragado,ou=Product Testing,dc=bitwarden,dc=com", - email: "BragadoR@57ec55e059164473a2641a0802a3d2ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krystalle Logue,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Krystalle Logue,ou=Peons,dc=bitwarden,dc=com", - email: "LogueK@8dacb3afea62411d83ceb1bc304c1028.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fara Dillow,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fara Dillow,ou=Human Resources,dc=bitwarden,dc=com", - email: "DillowF@ec9572b6571741cba193e664e197377a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lonna Willcock,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lonna Willcock,ou=Product Testing,dc=bitwarden,dc=com", - email: "WillcocL@cdf65b883c4c457a86f2eba62ef732a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hukam Ozersky,ou=Janitorial,dc=bitwarden,dc=com", - email: "OzerskyH@621ecc47be084539a10e5521c8efa92f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thrift McClelland,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Thrift McClelland,ou=Administrative,dc=bitwarden,dc=com", - email: "McClellT@d6ce39ad034b466eab6163a0fd6a84a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tres Bashton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tres Bashton,ou=Peons,dc=bitwarden,dc=com", - email: "BashtonT@63cf6afc822f42ed95e0208899f901bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lara Terneus,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lara Terneus,ou=Product Development,dc=bitwarden,dc=com", - email: "TerneusL@2d82e4fbfc604880a9f0d07a8531daa9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Taryna Ganguly,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Taryna Ganguly,ou=Administrative,dc=bitwarden,dc=com", - email: "GangulyT@41c0d9c6f1d54ffeb7ac5aa235429b41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Giulietta Dropin,ou=Human Resources,dc=bitwarden,dc=com", - email: "DropinG@130ee20fbdf449ab8c20d59d7bb0a698.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Serge Systems,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Serge Systems,ou=Product Testing,dc=bitwarden,dc=com", - email: "SystemsS@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marisca Parise,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marisca Parise,ou=Payroll,dc=bitwarden,dc=com", - email: "PariseM@c8037935d7cf4de6af85f4cdef77691d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brook Ta,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Brook Ta,ou=Product Testing,dc=bitwarden,dc=com", - email: "TaB@bb9e5ffb29744b338b8694a9d1283b9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evanne Servance,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Evanne Servance,ou=Janitorial,dc=bitwarden,dc=com", - email: "ServancE@86e8412a02bb46a19030741add17aeda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hamzeh Lyall,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hamzeh Lyall,ou=Peons,dc=bitwarden,dc=com", - email: "LyallH@cefcb38cb33a403e8d9697238eb1c561.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Collette Yao,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Collette Yao,ou=Payroll,dc=bitwarden,dc=com", - email: "YaoC@415554f5adbe4c70a27d90a1a4deab5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mandy Heiliger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mandy Heiliger,ou=Peons,dc=bitwarden,dc=com", - email: "HeiligeM@b22e59b4024b4e11ba0f1478fca2893a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liduine Farah,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Liduine Farah,ou=Product Testing,dc=bitwarden,dc=com", - email: "FarahL@eea2d462871e4840a27187b37bea3ed3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlee Hawley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Arlee Hawley,ou=Human Resources,dc=bitwarden,dc=com", - email: "HawleyA@b5dacfa66cfb4bc194ded29a6978a103.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theresina Reinink,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Theresina Reinink,ou=Administrative,dc=bitwarden,dc=com", - email: "ReininkT@c3dcba6fd4804a9ab67d7734e84114c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanny Hassey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hanny Hassey,ou=Janitorial,dc=bitwarden,dc=com", - email: "HasseyH@f908b5237c0945e690da76df38180ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gil Zhou,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gil Zhou,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZhouG@6867271f9fab4191b63db7db8f13930c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jurgen Strauss,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jurgen Strauss,ou=Product Development,dc=bitwarden,dc=com", - email: "StraussJ@8983b5ec67954736aa1e1d407ad9bb05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anestassia Phair,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Anestassia Phair,ou=Product Testing,dc=bitwarden,dc=com", - email: "PhairA@c87d7949ca254b4faaba46ba985802e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koko Fetzko,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Koko Fetzko,ou=Management,dc=bitwarden,dc=com", - email: "FetzkoK@cfebb9c9e4244917aa4f9253ae236cdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Irc McRae,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Irc McRae,ou=Management,dc=bitwarden,dc=com", - email: "McRaeI@8b3b8bf3cd3f4745a4cf8e1246e98260.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aime Reno,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Aime Reno,ou=Human Resources,dc=bitwarden,dc=com", - email: "RenoA@d7af2d36201f488d997c6f7eea13f491.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maddalena Duncan,ou=Human Resources,dc=bitwarden,dc=com", - email: "DuncanM@0a93c6c7853c48a3ac4722063dc9067d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olympe Aston,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Olympe Aston,ou=Administrative,dc=bitwarden,dc=com", - email: "AstonO@fa78004a0e4e45e5ac5f338a764f9f48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janenna Durnford,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Janenna Durnford,ou=Janitorial,dc=bitwarden,dc=com", - email: "DurnforJ@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selcuk Sochovka,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Selcuk Sochovka,ou=Peons,dc=bitwarden,dc=com", - email: "SochovkS@442794dffd624b3d835092b89be2e152.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lauretta Abell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lauretta Abell,ou=Product Testing,dc=bitwarden,dc=com", - email: "AbellL@4654bae9a87c447a9b895fec0c062c67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akin Algood,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Akin Algood,ou=Administrative,dc=bitwarden,dc=com", - email: "AlgoodA@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenette Rance,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lenette Rance,ou=Human Resources,dc=bitwarden,dc=com", - email: "RanceL@efa9f7679ea94344a42e6df58b28f7ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kamilah Findlay,ou=Human Resources,dc=bitwarden,dc=com", - email: "FindlayK@eeef0f1cc6484967a0425927e4f0c510.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lauretta Cleroux,ou=Product Development,dc=bitwarden,dc=com", - email: "ClerouxL@a9d112e2c8734cf88b105800c98f72cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Louisa Thorne,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Louisa Thorne,ou=Janitorial,dc=bitwarden,dc=com", - email: "ThorneL@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=AntonPhuoc Marrett,ou=Product Testing,dc=bitwarden,dc=com", - email: "MarrettA@b6debf4c211f43749c69c905c5857018.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=ShingChi Beardmore,ou=Administrative,dc=bitwarden,dc=com", - email: "BeardmoS@daecf76d8c3940f1a79ca6f29fd09de1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Malcolm Shyu,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShyuM@89819b213b4e4eb69e461ea54d755f38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ichiro Schill,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ichiro Schill,ou=Janitorial,dc=bitwarden,dc=com", - email: "SchillI@bf9ca547b016429e8b1013b51e16d909.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delila Swinson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Delila Swinson,ou=Human Resources,dc=bitwarden,dc=com", - email: "SwinsonD@1622721c590542e0bda86ad6de9cffcc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sriv Paul,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sriv Paul,ou=Peons,dc=bitwarden,dc=com", - email: "PaulS@8ac0b632f576407ba66f1733b0c4738e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trish Rombeek,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Trish Rombeek,ou=Human Resources,dc=bitwarden,dc=com", - email: "RombeekT@11e98c2ee48b45178d13435be794eede.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tien Aghi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tien Aghi,ou=Human Resources,dc=bitwarden,dc=com", - email: "AghiT@66f011cdb9ae4854a875f5226891a8d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carlyn Hewer,ou=Human Resources,dc=bitwarden,dc=com", - email: "HewerC@b5658d38a0434cce9ace31ecf66a3835.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barlas Discover,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Barlas Discover,ou=Peons,dc=bitwarden,dc=com", - email: "DiscoveB@7342ee713ddb492bb8f187e76f68e083.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarita Cescon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sarita Cescon,ou=Product Testing,dc=bitwarden,dc=com", - email: "CesconS@c44c933bac8b4cc8954bde72968abe20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Errol MAINT,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Errol MAINT,ou=Administrative,dc=bitwarden,dc=com", - email: "MAINTE@4a381f5d86cf400c9010a8a96d5cde80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vonny Sheu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vonny Sheu,ou=Management,dc=bitwarden,dc=com", - email: "SheuV@c711a2b311664a188cabd37fda0821b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guilford Kung,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Guilford Kung,ou=Administrative,dc=bitwarden,dc=com", - email: "KungG@a989bc4f0b1a4c80b486110777685af8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marguerite Markland,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marguerite Markland,ou=Peons,dc=bitwarden,dc=com", - email: "MarklanM@87bd41c90d2e4626aa1a8435072906ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=HoiKin Gebhardt,ou=Janitorial,dc=bitwarden,dc=com", - email: "GebhardH@92468910821a458ca936a273ecde380f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viviane Lenox,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Viviane Lenox,ou=Payroll,dc=bitwarden,dc=com", - email: "LenoxV@e6ab02c53a3c4216ba5b75ac65120e12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walliw Borrelli,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Walliw Borrelli,ou=Management,dc=bitwarden,dc=com", - email: "BorrellW@9da8707f84d94fc6a64c7ccfeaa1b78b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dhiren Vasil,ou=Product Testing,dc=bitwarden,dc=com", - email: "VasilD@d31bfc50f85342329bba0a1a96f5ad95.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Clayton Kingsbury,ou=Payroll,dc=bitwarden,dc=com", - email: "KingsbuC@5ecfe4c8aaf4487fb624902f7b975e7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amalea Laskin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Amalea Laskin,ou=Janitorial,dc=bitwarden,dc=com", - email: "LaskinA@520ff39da95249c7ade86c3a64b17f3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florida Gebrael,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Florida Gebrael,ou=Janitorial,dc=bitwarden,dc=com", - email: "GebraelF@5d869bea03ed495786efc921360e43b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kieron Walkins,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kieron Walkins,ou=Product Development,dc=bitwarden,dc=com", - email: "WalkinsK@9f9dd66ef9e34a42ab7a2c5eaff108f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andree Junkin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Andree Junkin,ou=Product Development,dc=bitwarden,dc=com", - email: "JunkinA@01b74c7732624f42a6fbbc33b3652f66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Louise Joudrey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Louise Joudrey,ou=Peons,dc=bitwarden,dc=com", - email: "JoudreyL@cfc8b9e4a2f14b128363b00bdc84ff74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gillie Achcar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gillie Achcar,ou=Product Development,dc=bitwarden,dc=com", - email: "AchcarG@f545ecd56a5b4fe0a9748924d28342ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Divine Ferriss,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Divine Ferriss,ou=Administrative,dc=bitwarden,dc=com", - email: "FerrissD@20649d21fd1148cb824fc7af995ba516.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noella Charlebois,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Noella Charlebois,ou=Product Testing,dc=bitwarden,dc=com", - email: "CharlebN@5bff87b1f64343a6ba2b4c6f245cd371.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brenn Screener,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Brenn Screener,ou=Human Resources,dc=bitwarden,dc=com", - email: "ScreeneB@19a8f5526a554f0cb06e7cba3da0c581.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Agretha Decourcy,ou=Product Testing,dc=bitwarden,dc=com", - email: "DecourcA@726a4125a7d94ad38a1dc92c2882e4bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olivie Bruneau,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Olivie Bruneau,ou=Management,dc=bitwarden,dc=com", - email: "BruneauO@7feea2d1b4e04d13bf5dd19cb643d02d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annemarie VanMeter,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Annemarie VanMeter,ou=Peons,dc=bitwarden,dc=com", - email: "VanMeteA@c6917cdcf88c4b1cb24fafd7c4f07601.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Seiko Stachowiak,ou=Human Resources,dc=bitwarden,dc=com", - email: "StachowS@7d7a686ce6534dc2b82bd3604eea7f8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rudy Piper,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rudy Piper,ou=Janitorial,dc=bitwarden,dc=com", - email: "PiperR@2f5fd5dddfb54bca86a1d0320ba60e06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Janessa Dunnion,ou=Product Testing,dc=bitwarden,dc=com", - email: "DunnionJ@bf22abb443f242d591554d5b4dde5bdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berny Burger,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Berny Burger,ou=Product Development,dc=bitwarden,dc=com", - email: "BurgerB@634978d04fca41d6af5289220bc42474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirene Moyers,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shirene Moyers,ou=Product Development,dc=bitwarden,dc=com", - email: "MoyersS@ed6a92d94db74753ac56089472178365.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hideki Willis,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hideki Willis,ou=Human Resources,dc=bitwarden,dc=com", - email: "WillisH@3badeafafe3b4639b92d03c5b1235944.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manas Leveille,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Manas Leveille,ou=Product Testing,dc=bitwarden,dc=com", - email: "LeveillM@4e4132396a384237a0a15d5888e86f73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Collette Quane,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Collette Quane,ou=Product Development,dc=bitwarden,dc=com", - email: "QuaneC@7c0df7bf9a9345799ef1f7a5139ff67d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renu Schallenberg,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Renu Schallenberg,ou=Administrative,dc=bitwarden,dc=com", - email: "SchalleR@8bced59a99724d5eb08954ec3497f98c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Craig Fleischer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Craig Fleischer,ou=Janitorial,dc=bitwarden,dc=com", - email: "FleischC@b54cd58bbda74ccca6cdaefde6caedc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marla Visentin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marla Visentin,ou=Janitorial,dc=bitwarden,dc=com", - email: "VisentiM@0d089601fe8d4842aca2c104051c6a49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kathryn Maidenhead,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaidenhK@541a80b7aa9b481bbf28921cf43e3f5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Carlynne Coppedge,ou=Product Testing,dc=bitwarden,dc=com", - email: "CoppedgC@623d62a2d1154923b1c9152d9f2876da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baris Ralph,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Baris Ralph,ou=Janitorial,dc=bitwarden,dc=com", - email: "RalphB@e0c514219e7e4e7cba9db3753f3ca628.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gusta Nugent,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gusta Nugent,ou=Management,dc=bitwarden,dc=com", - email: "NugentG@e3adbf44503541a8a477fd522db5f455.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Boer Jago,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Boer Jago,ou=Product Development,dc=bitwarden,dc=com", - email: "JagoB@dac0539de4424fe28175329373de09c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kieran Wattier,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kieran Wattier,ou=Administrative,dc=bitwarden,dc=com", - email: "WattierK@577dbf91ec444b2fa84d20b944b95da9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mala Shillingford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mala Shillingford,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShillinM@7080ace676f14d789edd6d153887110b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charyl Whitty,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Charyl Whitty,ou=Management,dc=bitwarden,dc=com", - email: "WhittyC@e8e08beeff9a4cdcaf143e74a433e1d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jawad Waller,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jawad Waller,ou=Management,dc=bitwarden,dc=com", - email: "WallerJ@2ef868dd48b240d78fd77732e9fe3cda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Berta DorionMagnan,ou=Product Development,dc=bitwarden,dc=com", - email: "DorionMB@796636c316134f4ea242b8ffac574e0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glynda Tisdall,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Glynda Tisdall,ou=Payroll,dc=bitwarden,dc=com", - email: "TisdallG@5e62af5b40314ecea84813300a46dd77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aditya Runnels,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aditya Runnels,ou=Product Testing,dc=bitwarden,dc=com", - email: "RunnelsA@ccab46deb94e4a1ab4ac6683d09bb4f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nannette Wasylenko,ou=Product Testing,dc=bitwarden,dc=com", - email: "WasylenN@bbdf84c7202d4fed8ebf04b035151774.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shuji Lisch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shuji Lisch,ou=Management,dc=bitwarden,dc=com", - email: "LischS@6acb8cb6e83344b2baf0ea01b349a09b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corette Biggers,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Corette Biggers,ou=Product Development,dc=bitwarden,dc=com", - email: "BiggersC@536233742e094d32a93b46e75cbb8e9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarah Marceau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sarah Marceau,ou=Janitorial,dc=bitwarden,dc=com", - email: "MarceauS@69b4d60a542046658c2cab83a8afa560.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huy Reporting,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Huy Reporting,ou=Payroll,dc=bitwarden,dc=com", - email: "ReportiH@1076925fed8248679e5db581a4d397c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charissa Douglas,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Charissa Douglas,ou=Janitorial,dc=bitwarden,dc=com", - email: "DouglasC@c5507fb1b7424c01bac1a4fbf30f64fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Stephenie Maynes,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaynesS@dc25e6259a754e12b71b6ceb921f6e43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cortney Okamoto,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cortney Okamoto,ou=Product Development,dc=bitwarden,dc=com", - email: "OkamotoC@649a503dbd264f3ba9e14eb9795c58eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rene Fletcher,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rene Fletcher,ou=Payroll,dc=bitwarden,dc=com", - email: "FletcheR@eae289de16194f21b28831dbf07663de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deryck Nassr,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Deryck Nassr,ou=Janitorial,dc=bitwarden,dc=com", - email: "NassrD@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Merline Dmsrtime,ou=Payroll,dc=bitwarden,dc=com", - email: "DmsrtimM@7f1848e959b9431aae2d7ba89294b649.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ruthie Kingshott,ou=Human Resources,dc=bitwarden,dc=com", - email: "KingshoR@e084ec394e994677a50d409a6357c42a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coraline Kato,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Coraline Kato,ou=Peons,dc=bitwarden,dc=com", - email: "KatoC@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Becca Hallenbeck,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Becca Hallenbeck,ou=Peons,dc=bitwarden,dc=com", - email: "HallenbB@0a414dfa34d6439f8f6befcf71900bba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sadye Urbanowich,ou=Product Development,dc=bitwarden,dc=com", - email: "UrbanowS@0864b9b0dd32492b822981ac2a2f6875.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carin Briggs,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carin Briggs,ou=Human Resources,dc=bitwarden,dc=com", - email: "BriggsC@60ffb350fa6740079313430abf25721b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wai Pellizzeri,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Wai Pellizzeri,ou=Peons,dc=bitwarden,dc=com", - email: "PellizzW@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joachim Nesrallah,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joachim Nesrallah,ou=Peons,dc=bitwarden,dc=com", - email: "NesrallJ@6211d58c45444a489ca2a34f354f2ae9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Glenn Nordstrom,ou=Janitorial,dc=bitwarden,dc=com", - email: "NordstrG@3ee35d919ef5410b9a742e5fe9487a11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loesje Smothers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Loesje Smothers,ou=Management,dc=bitwarden,dc=com", - email: "SmotherL@e2ac30b0774145abbea79773529c940e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chester Crawshaw,ou=Human Resources,dc=bitwarden,dc=com", - email: "CrawshaC@638ddd5f5c874c1fbe017c3aa0d978c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dani Maksoud,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dani Maksoud,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaksoudD@a549bdf5420c411a867c314ba75b6975.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kieran Forghani,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kieran Forghani,ou=Management,dc=bitwarden,dc=com", - email: "ForghanK@ea750648663b4e85ae486d2e32c216dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lusa Korpela,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lusa Korpela,ou=Payroll,dc=bitwarden,dc=com", - email: "KorpelaL@3105b5dc96c343758f704f474866d911.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cherianne Armstrong,ou=Janitorial,dc=bitwarden,dc=com", - email: "ArmstroC@0932a94d4e324368929167f71e7881a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Data Roussin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Data Roussin,ou=Payroll,dc=bitwarden,dc=com", - email: "RoussinD@57c8e316985b48038aad56a3f94817a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stone Scholes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Stone Scholes,ou=Peons,dc=bitwarden,dc=com", - email: "ScholesS@58bd5c0a9abd418c929331ed9ab0ec61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Painterson Popowicz,ou=Janitorial,dc=bitwarden,dc=com", - email: "PopowicP@1325c87839d04240ac1a16f9b96e2aee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Subra Mezzoiuso,ou=Human Resources,dc=bitwarden,dc=com", - email: "MezzoiuS@6993d016013446bf8c45519f739f4a8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agathe Huddleston,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Agathe Huddleston,ou=Administrative,dc=bitwarden,dc=com", - email: "HuddlesA@9c640b9ada7e43fd815986e9b791454d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vmchange Vacher,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vmchange Vacher,ou=Payroll,dc=bitwarden,dc=com", - email: "VacherV@dbb8e15fda2d4a1582516a0de74d9827.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aleta Buntrock,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aleta Buntrock,ou=Product Development,dc=bitwarden,dc=com", - email: "BuntrocA@1e8d211c25e74db48892bf1ab2e65581.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darlleen Murris,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Darlleen Murris,ou=Janitorial,dc=bitwarden,dc=com", - email: "MurrisD@40d320f39b3b4ec6b2aa4be872b12e34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carrissa Smulders,ou=Janitorial,dc=bitwarden,dc=com", - email: "SmulderC@eb7a1c92edb446a9823944e09f0b6b2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mysore Kenlan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mysore Kenlan,ou=Product Development,dc=bitwarden,dc=com", - email: "KenlanM@62762c759020411b89296a80fdd53afd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roscoe Dhuga,ou=Administrative,dc=bitwarden,dc=com", - email: "DhugaR@59778d9e834c452586d9e26b970164f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxanne Janning,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Roxanne Janning,ou=Janitorial,dc=bitwarden,dc=com", - email: "JanningR@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alexander Enns,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alexander Enns,ou=Peons,dc=bitwarden,dc=com", - email: "EnnsA@3d692d684ca742119b69b3914fc21732.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koen Keith,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Koen Keith,ou=Janitorial,dc=bitwarden,dc=com", - email: "KeithK@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mohan Parulekar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mohan Parulekar,ou=Peons,dc=bitwarden,dc=com", - email: "ParulekM@de898a326d21476c9afc54d7a723d91b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronna Esparza,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ronna Esparza,ou=Administrative,dc=bitwarden,dc=com", - email: "EsparzaR@6f40fd1f57664424aae86977d815ec60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hot Terrel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hot Terrel,ou=Product Development,dc=bitwarden,dc=com", - email: "TerrelH@d32e39b1240444d599938e20b2b9a2af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aparna Loiseau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aparna Loiseau,ou=Peons,dc=bitwarden,dc=com", - email: "LoiseauA@3f22733d317d4f91854fb0b865164d32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lana Fasken,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lana Fasken,ou=Janitorial,dc=bitwarden,dc=com", - email: "FaskenL@3177f113b2494bf084a4349d34933284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fariborz Neefs,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fariborz Neefs,ou=Peons,dc=bitwarden,dc=com", - email: "NeefsF@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Netty Eustace,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Netty Eustace,ou=Peons,dc=bitwarden,dc=com", - email: "EustaceN@af1c936dc969478a898b38c058f5ed5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rio Philion,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rio Philion,ou=Product Development,dc=bitwarden,dc=com", - email: "PhilionR@60d49768d4644227a17f0fda0b9acae9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beverlie Kutten,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beverlie Kutten,ou=Administrative,dc=bitwarden,dc=com", - email: "KuttenB@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tammi Hodgkin,ou=Human Resources,dc=bitwarden,dc=com", - email: "HodgkinT@c58d896de82b440ca30e70c88676b48e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=William Ridgewell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=William Ridgewell,ou=Product Testing,dc=bitwarden,dc=com", - email: "RidgeweW@6440b02815824326a0c464b5e91deecc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nonah McGlynn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nonah McGlynn,ou=Administrative,dc=bitwarden,dc=com", - email: "McGlynnN@c320d110c7a241ddbb5147ef5aebd508.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grace Hickerson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Grace Hickerson,ou=Product Development,dc=bitwarden,dc=com", - email: "HickersG@396057d601294ebc9d5c0c43a2c7528b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Donn Thirugnanam,ou=Product Development,dc=bitwarden,dc=com", - email: "ThirugnD@31faf5189ac94a56964e87af9c5e42e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liping Levi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Liping Levi,ou=Administrative,dc=bitwarden,dc=com", - email: "LeviL@64d7ecf288c04c558094c63f6b45f377.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mauro Meubus,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mauro Meubus,ou=Administrative,dc=bitwarden,dc=com", - email: "MeubusM@04ab0dd813964f258093cf5c76d47099.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Iteke Abbatantuono,ou=Administrative,dc=bitwarden,dc=com", - email: "AbbatanI@d1dc373d110a4e68987e8e8fc1e917b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minny Southon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Minny Southon,ou=Product Testing,dc=bitwarden,dc=com", - email: "SouthonM@a209c275d5e54dc2a7f8bab915f03396.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Halina Zenar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Halina Zenar,ou=Management,dc=bitwarden,dc=com", - email: "ZenarH@3d26bfa9cedd4f12a12c0adbf8a4e691.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwenny Bertram,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gwenny Bertram,ou=Payroll,dc=bitwarden,dc=com", - email: "BertramG@67a50420f0564b4b9d502195a9eb7324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andreana Gaube,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Andreana Gaube,ou=Peons,dc=bitwarden,dc=com", - email: "GaubeA@c026df84b73b4f16beec47c31ac06303.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michelina Zbib,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Michelina Zbib,ou=Payroll,dc=bitwarden,dc=com", - email: "ZbibM@2f60971fa268439caffee9f84b2be8cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davis Mutcher,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Davis Mutcher,ou=Human Resources,dc=bitwarden,dc=com", - email: "MutcherD@b3865bcd46934100886192af9061706f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dannye Vopalensky,ou=Product Testing,dc=bitwarden,dc=com", - email: "VopalenD@b48cddaf61864244b80c9ba3e8279301.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelcey Yedema,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kelcey Yedema,ou=Payroll,dc=bitwarden,dc=com", - email: "YedemaK@03e01270dec047a5b17f2fbfe7ee61b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaila Squizzato,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kaila Squizzato,ou=Peons,dc=bitwarden,dc=com", - email: "SquizzaK@c9a4b60fa1eb470eb513b6d959a476c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ddene Ciocca,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ddene Ciocca,ou=Product Development,dc=bitwarden,dc=com", - email: "CioccaD@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harmony Peschke,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Harmony Peschke,ou=Human Resources,dc=bitwarden,dc=com", - email: "PeschkeH@2721cfc08f0240658ce3169305abe945.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Madelena Ciaschi,ou=Human Resources,dc=bitwarden,dc=com", - email: "CiaschiM@cc252680b96a4999bccdcb3df4f9a7ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cheslie NTINASH,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cheslie NTINASH,ou=Management,dc=bitwarden,dc=com", - email: "NTINASHC@4e240d85327f4f81b9a139f4d41efb41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celisse Malizia,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Celisse Malizia,ou=Management,dc=bitwarden,dc=com", - email: "MaliziaC@37c4f9ee232544a4846bc4a3466039ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jolyn Amarsi,ou=Product Development,dc=bitwarden,dc=com", - email: "AmarsiJ@afcd326ae5b94cedba790b89df39e139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rachelle Siew,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rachelle Siew,ou=Product Development,dc=bitwarden,dc=com", - email: "SiewR@70d73737dc5e4bc597c3edd093f95a4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charlean Robson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Charlean Robson,ou=Peons,dc=bitwarden,dc=com", - email: "RobsonC@9f88732cfcc040c9ac7a9586e3020a63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabriela Mustillo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gabriela Mustillo,ou=Management,dc=bitwarden,dc=com", - email: "MustillG@3105b5dc96c343758f704f474866d911.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Latia Viau,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Latia Viau,ou=Product Testing,dc=bitwarden,dc=com", - email: "ViauL@49b304035fc44bb4a3e211286fc4d652.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madlen Venning,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Madlen Venning,ou=Management,dc=bitwarden,dc=com", - email: "VenningM@b1e0fad1a7db4b25889e8df2c424913a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Claretta Sehgal,ou=Product Testing,dc=bitwarden,dc=com", - email: "SehgalC@62ebc0cac09c4b59836fa31868a1365d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gunilla Skene,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gunilla Skene,ou=Management,dc=bitwarden,dc=com", - email: "SkeneG@542303b775fa43b8b70b70cdc2197657.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anestassia Ting,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anestassia Ting,ou=Management,dc=bitwarden,dc=com", - email: "TingA@b3c8c2a69311430c95d255cf755caf65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryJane Telco,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=MaryJane Telco,ou=Janitorial,dc=bitwarden,dc=com", - email: "TelcoM@9f9fe6d238ce4f8cb29cecfb73bf648a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Genowefa Etzell,ou=Product Testing,dc=bitwarden,dc=com", - email: "EtzellG@9322f20face84b0a8db4dbabb4f4c507.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mansukha Tchir,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mansukha Tchir,ou=Product Development,dc=bitwarden,dc=com", - email: "TchirM@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Caralie AbdulNour,ou=Product Development,dc=bitwarden,dc=com", - email: "AbdulNoC@9b79b6cacc7d4ea9a3519bd3f9441c87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherline Gillard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sherline Gillard,ou=Administrative,dc=bitwarden,dc=com", - email: "GillardS@05749581377d47ba8047ee7237ce7f83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inm Stefanac,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Inm Stefanac,ou=Product Testing,dc=bitwarden,dc=com", - email: "StefanaI@36a375859cdd487ea0bae44e1c40b92f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cosimo Haugrud,ou=Product Testing,dc=bitwarden,dc=com", - email: "HaugrudC@be3459b8963e4676a7255dc7efa74560.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PengDavid Pryor,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=PengDavid Pryor,ou=Payroll,dc=bitwarden,dc=com", - email: "PryorP@2c0159a1a41648e9baaccbe514ee38c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agathe Hr,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Agathe Hr,ou=Human Resources,dc=bitwarden,dc=com", - email: "HrA@aba92373b9e6445487406838438e9c43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sastry Michelussi,ou=Human Resources,dc=bitwarden,dc=com", - email: "MicheluS@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ervin Biage,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ervin Biage,ou=Human Resources,dc=bitwarden,dc=com", - email: "BiageE@d5d533d94f1b4f21b3ee91065ec33d74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandie Vargo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Brandie Vargo,ou=Administrative,dc=bitwarden,dc=com", - email: "VargoB@6032a8b4894b42dc8d3f57130a5d8ef5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=WoeiPeng Heinen,ou=Administrative,dc=bitwarden,dc=com", - email: "HeinenW@f928f43ad9cc43d983b210ccab6e69b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Augusto Audette,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Augusto Audette,ou=Janitorial,dc=bitwarden,dc=com", - email: "AudetteA@77209db2428f411d91371f32d860ae4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loella Haydock,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Loella Haydock,ou=Product Development,dc=bitwarden,dc=com", - email: "HaydockL@40b96b5eb0af49388ddf599aff4277e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Farrukh Dalsiel,ou=Payroll,dc=bitwarden,dc=com", - email: "DalsielF@deb5b33726e1467b8ad98f9d4d53798a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Liesbeth Grimble,ou=Human Resources,dc=bitwarden,dc=com", - email: "GrimbleL@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tami Scarlett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tami Scarlett,ou=Peons,dc=bitwarden,dc=com", - email: "ScarletT@de7b9b88f1af455bb9296186f4010a0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betteanne Badza,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Betteanne Badza,ou=Product Testing,dc=bitwarden,dc=com", - email: "BadzaB@641b39435c6a4345a08d44348f2bfdaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roman Barsony,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Roman Barsony,ou=Payroll,dc=bitwarden,dc=com", - email: "BarsonyR@130d7984e3224d79a3593bfbc13ee192.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bernardine Bergman,ou=Janitorial,dc=bitwarden,dc=com", - email: "BergmanB@a8a3f1161ef54158b589de8fea58b91e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gloriana Wessel,ou=Human Resources,dc=bitwarden,dc=com", - email: "WesselG@07350d30e5bc4da4ac617cefe2dea284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katrinka Debortoli,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Katrinka Debortoli,ou=Peons,dc=bitwarden,dc=com", - email: "DebortoK@7d4ee1edb205494e9e48f8fd7ef853bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jillana Alary,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jillana Alary,ou=Janitorial,dc=bitwarden,dc=com", - email: "AlaryJ@9b1cd0d4cbb340edaa08f757750c510b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margeaux Raines,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Margeaux Raines,ou=Administrative,dc=bitwarden,dc=com", - email: "RainesM@8a34c70e0b134b1abc06ed65698294f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Augustin Hollandsworth,ou=Product Testing,dc=bitwarden,dc=com", - email: "HollandA@12b32cc71b2140baafb839fbfaa570a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassi Moritz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cassi Moritz,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoritzC@85684be84b6e4d138199715b368d851b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Othilia VanMansum,ou=Product Testing,dc=bitwarden,dc=com", - email: "VanMansO@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sales Rasmus,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sales Rasmus,ou=Administrative,dc=bitwarden,dc=com", - email: "RasmusS@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katrine Thomason,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Katrine Thomason,ou=Product Development,dc=bitwarden,dc=com", - email: "ThomasoK@08761145d0ee492388590ebc755ffc11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celka Kester,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Celka Kester,ou=Management,dc=bitwarden,dc=com", - email: "KesterC@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pansie Mayea,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pansie Mayea,ou=Payroll,dc=bitwarden,dc=com", - email: "MayeaP@97332f0466d142b5a0521dc2f85817c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Burton Shearer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Burton Shearer,ou=Administrative,dc=bitwarden,dc=com", - email: "ShearerB@9168c74ef41149569e1e454986f240f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Georgiana Lacosse,ou=Payroll,dc=bitwarden,dc=com", - email: "LacosseG@39906d66250a450299ac97c0daaa1661.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Augusto Montero,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Augusto Montero,ou=Human Resources,dc=bitwarden,dc=com", - email: "MonteroA@ead1ebc11a6a43c4a4973f8778d92cf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jenson Kpodzo,ou=Administrative,dc=bitwarden,dc=com", - email: "KpodzoJ@4a68315fca8a4b9cbfc30c913a972220.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Saloma Tiegs,ou=Product Testing,dc=bitwarden,dc=com", - email: "TiegsS@bb1a549f208840af8ec52ae7c5ebc4f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eyde Gallion,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eyde Gallion,ou=Management,dc=bitwarden,dc=com", - email: "GallionE@e91e9d47322f42e0863a6aa1fe777b71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Blancha Kauffman,ou=Human Resources,dc=bitwarden,dc=com", - email: "KauffmaB@a767b0f434554c6788caabae2da7ee65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sule Valenziano,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sule Valenziano,ou=Janitorial,dc=bitwarden,dc=com", - email: "ValenziS@dc21b90d233e4262bb0c379c7e3b2a15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ott Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", - email: "KristjaO@170b1e3aafb44ce5931865d83bab2b73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Therese Totti,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Therese Totti,ou=Administrative,dc=bitwarden,dc=com", - email: "TottiT@f84feca728aa4b08a80aa164ca1230d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyana ChampionDemers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dyana ChampionDemers,ou=Management,dc=bitwarden,dc=com", - email: "ChampioD@a4e9de5e0b9246278e213e7f89e8ab95.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joannie Paprocki,ou=Human Resources,dc=bitwarden,dc=com", - email: "PaprockJ@7a24f959bf7143f0a384d6a356f5332c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranea Zitko,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ranea Zitko,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZitkoR@145a2cc169a84041837ab176f4869676.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thayne Langer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Thayne Langer,ou=Peons,dc=bitwarden,dc=com", - email: "LangerT@49f5a591a2774e04b74eeb9adebf4303.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chie Hilton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chie Hilton,ou=Human Resources,dc=bitwarden,dc=com", - email: "HiltonC@a007e0bbe2b74c31b4d55b35ce3884b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gisela Enet,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gisela Enet,ou=Administrative,dc=bitwarden,dc=com", - email: "EnetG@f87927b66c3847ba8ab3947482034e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erlene Krajesky,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Erlene Krajesky,ou=Peons,dc=bitwarden,dc=com", - email: "KrajeskE@1a2826f06614436585f4faa14772cf1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ileane Steinbacher,ou=Product Development,dc=bitwarden,dc=com", - email: "SteinbaI@6553f6f625ef4decb458591c6b034f5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cezary Stephens,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cezary Stephens,ou=Payroll,dc=bitwarden,dc=com", - email: "StephenC@03381a6be0334d469597ceb0055fc710.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyndie Therrien,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cyndie Therrien,ou=Payroll,dc=bitwarden,dc=com", - email: "TherrieC@c2c56cba4b164b91a9cad88cb6fbbaa7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shandie Ghelarducci,ou=Product Testing,dc=bitwarden,dc=com", - email: "GhelardS@25209ef0bef9422ba827a4158c5d2eb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rolf Philip,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rolf Philip,ou=Administrative,dc=bitwarden,dc=com", - email: "PhilipR@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karla Biss,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karla Biss,ou=Peons,dc=bitwarden,dc=com", - email: "BissK@49c32b5d70594069be5f4296d6c76171.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danica Margittai,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Danica Margittai,ou=Janitorial,dc=bitwarden,dc=com", - email: "MargittD@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelly Fabris,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shelly Fabris,ou=Management,dc=bitwarden,dc=com", - email: "FabrisS@871acffc5fd64b9296d59bdd7ff870b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Netta Gregorio,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Netta Gregorio,ou=Product Development,dc=bitwarden,dc=com", - email: "GregoriN@ab80825fb9f64e0fa2550d84decf8401.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Flossi PenaFernandez,ou=Administrative,dc=bitwarden,dc=com", - email: "PenaFerF@b25f9197eb164e0e80b05e75586a2055.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lu Tsai,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lu Tsai,ou=Product Testing,dc=bitwarden,dc=com", - email: "TsaiL@268e542432d8452492860decdd327bf6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aruna Loeffler,ou=Janitorial,dc=bitwarden,dc=com", - email: "LoeffleA@932da8f75fc34afb858807b155e78d58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shalna Terwilligar,ou=Product Testing,dc=bitwarden,dc=com", - email: "TerwillS@037b2dcc29f840fa8751d096972382fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anabella McManus,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anabella McManus,ou=Payroll,dc=bitwarden,dc=com", - email: "McManusA@4b2618e65445493fb6bf16ca350497be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandeep Deneen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sandeep Deneen,ou=Product Development,dc=bitwarden,dc=com", - email: "DeneenS@69229a215bfd45fb93b4b714a125f8c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fiore Brogdon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fiore Brogdon,ou=Management,dc=bitwarden,dc=com", - email: "BrogdonF@c7f3f4b5404343009726750451b5ec5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jacquenetta Busko,ou=Janitorial,dc=bitwarden,dc=com", - email: "BuskoJ@1783baab8b3341f48bad6f9721f7eb73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariellen Tilley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mariellen Tilley,ou=Management,dc=bitwarden,dc=com", - email: "TilleyM@54d404ee0ed9466bae5e36b6d97997f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lyndsey Crothers,ou=Product Testing,dc=bitwarden,dc=com", - email: "CrotherL@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ina Joudrey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ina Joudrey,ou=Product Development,dc=bitwarden,dc=com", - email: "JoudreyI@24838fbbf5b94e89a9506c6185ca825f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baines Buettgen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Baines Buettgen,ou=Administrative,dc=bitwarden,dc=com", - email: "BuettgeB@2669130b306244a5bdb654170929e2da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carie Pitcher,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carie Pitcher,ou=Administrative,dc=bitwarden,dc=com", - email: "PitcherC@a2d6d422fc8c477489979808c2bf1f24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candie Gurer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Candie Gurer,ou=Human Resources,dc=bitwarden,dc=com", - email: "GurerC@83f78532c82a4f77a10f2d7460348b85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zino Swinson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Zino Swinson,ou=Human Resources,dc=bitwarden,dc=com", - email: "SwinsonZ@364480d740db4258a296b16c78eb71b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Layla Rabiasz,ou=Janitorial,dc=bitwarden,dc=com", - email: "RabiaszL@834378ce6fad4960b9d95b1599b2d8c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terese Beton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Terese Beton,ou=Peons,dc=bitwarden,dc=com", - email: "BetonT@536c0f4fa5054c52a7d0385b00e9be00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reena Gullekson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reena Gullekson,ou=Peons,dc=bitwarden,dc=com", - email: "GulleksR@5742495432584883ba0607d82fbbf002.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoda Prado,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yoda Prado,ou=Janitorial,dc=bitwarden,dc=com", - email: "PradoY@e2e4684a59f0411fb17c22a8c54500dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Waneta Irwin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Waneta Irwin,ou=Peons,dc=bitwarden,dc=com", - email: "IrwinW@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prity Wyllie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Prity Wyllie,ou=Janitorial,dc=bitwarden,dc=com", - email: "WyllieP@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brennan Kapuscinski,ou=Payroll,dc=bitwarden,dc=com", - email: "KapusciB@ba60a08b258046f98633fd3c737e4f83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jillian Borzic,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jillian Borzic,ou=Product Testing,dc=bitwarden,dc=com", - email: "BorzicJ@484147050d834a1da350db4c28e9f45b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akio Broussard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Akio Broussard,ou=Product Testing,dc=bitwarden,dc=com", - email: "BroussaA@14718a04ba8345b68b85209d455c92d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sanchez Gunasekera,ou=Product Development,dc=bitwarden,dc=com", - email: "GunasekS@823b0e5ae5554412ad321149e939b14a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ind Suitt,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ind Suitt,ou=Peons,dc=bitwarden,dc=com", - email: "SuittI@ba26067a6b444f7cbcc6de889b198ade.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alyse Walkley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alyse Walkley,ou=Janitorial,dc=bitwarden,dc=com", - email: "WalkleyA@aadb572867dc4b7098efde5813eb2d27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julienne Milne,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Julienne Milne,ou=Administrative,dc=bitwarden,dc=com", - email: "MilneJ@738b42a56ab44af39fa9da7b9eaffcee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kit Lesperance,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kit Lesperance,ou=Peons,dc=bitwarden,dc=com", - email: "LesperaK@c3ac4e6d63bf42469f2e271613915683.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ladell Jefferson,ou=Janitorial,dc=bitwarden,dc=com", - email: "JeffersL@4c2706f148d24c978855dfe00601ca6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Libbi Niccolls,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Libbi Niccolls,ou=Management,dc=bitwarden,dc=com", - email: "NiccollL@1db0a368d0764b8fbfe7762b10114efc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kas Ashraf,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kas Ashraf,ou=Payroll,dc=bitwarden,dc=com", - email: "AshrafK@1cb0893ea33843b2b6fb5ad305e95a15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgia Henderson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Georgia Henderson,ou=Peons,dc=bitwarden,dc=com", - email: "HendersG@47451620be86447cb3f001d648f21e9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nuri Mand,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nuri Mand,ou=Human Resources,dc=bitwarden,dc=com", - email: "MandN@af4484e6bd354321bc237bc7b6d97e88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shafiq Doi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shafiq Doi,ou=Management,dc=bitwarden,dc=com", - email: "DoiS@165536f4f8824483a0990647a9cb54c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mamie Angerer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mamie Angerer,ou=Janitorial,dc=bitwarden,dc=com", - email: "AngererM@aa3946ad28f244b28a9df39dee97d247.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trula Ledou,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Trula Ledou,ou=Product Development,dc=bitwarden,dc=com", - email: "LedouT@cd9e9d5ccd3a4afa9af65d048dc3405e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hoy Rushton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hoy Rushton,ou=Management,dc=bitwarden,dc=com", - email: "RushtonH@ec3e2a8f77f04a04b0562ffb64100067.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Klarrisa Maciejewski,ou=Management,dc=bitwarden,dc=com", - email: "MaciejeK@503bf02919104cafa1d31446cc7f0505.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobette Tohama,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bobette Tohama,ou=Product Development,dc=bitwarden,dc=com", - email: "TohamaB@f8d4033617914caebdc40bc652a17f49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Four Elks,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Four Elks,ou=Human Resources,dc=bitwarden,dc=com", - email: "ElksF@e5def60adfc04db387a399cdb2cf9b77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kazuo Hempinstall,ou=Janitorial,dc=bitwarden,dc=com", - email: "HempinsK@f9ccaba996b948fd826c0c115f90045a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alli Kaura,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alli Kaura,ou=Administrative,dc=bitwarden,dc=com", - email: "KauraA@86262c8a96f6428ca6c85ec378671d82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gil Walston,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gil Walston,ou=Administrative,dc=bitwarden,dc=com", - email: "WalstonG@0b7ec0c2364e4e4f8de90b2b167baf77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viole Lopinski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Viole Lopinski,ou=Peons,dc=bitwarden,dc=com", - email: "LopinskV@72255f0203e94d058b1c15913072ab66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amy StOnge,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Amy StOnge,ou=Payroll,dc=bitwarden,dc=com", - email: "StOngeA@0942a8d54b72463a911186a66f7c67f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emogene Cocke,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Emogene Cocke,ou=Peons,dc=bitwarden,dc=com", - email: "CockeE@837254eeede24c15906b803e5cce94f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tash Sails,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tash Sails,ou=Product Development,dc=bitwarden,dc=com", - email: "SailsT@cb28429eacc145eba144e472491c78c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coral Viriato,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Coral Viriato,ou=Human Resources,dc=bitwarden,dc=com", - email: "ViriatoC@a3a401e9d5694d8c8d647950b6db5b18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Des Zacharias,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Des Zacharias,ou=Payroll,dc=bitwarden,dc=com", - email: "ZachariD@4227d8ce5e1a40d984414347da920f58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Durantaye Skelly,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Durantaye Skelly,ou=Product Development,dc=bitwarden,dc=com", - email: "SkellyD@4115c8a730274bce89da518202dd0d0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ingaborg Frisk,ou=Administrative,dc=bitwarden,dc=com", - email: "FriskI@742e6acfb3ee43e195f05147276956cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candie Mitsui,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Candie Mitsui,ou=Management,dc=bitwarden,dc=com", - email: "MitsuiC@0230c484eaf84d819fed9b62063a4729.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Robinet Brisebois,ou=Human Resources,dc=bitwarden,dc=com", - email: "BriseboR@3fc826f5777843e2bdb2f367b35e8c35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eline Vanderheyden,ou=Administrative,dc=bitwarden,dc=com", - email: "VanderhE@214f04c971b04f9d856cc90c519f21fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mathilda Kibler,ou=Product Testing,dc=bitwarden,dc=com", - email: "KiblerM@0c3e5c070ad6421e82c1342b233868ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rocke Baughan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rocke Baughan,ou=Peons,dc=bitwarden,dc=com", - email: "BaughanR@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vyza Tsuk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vyza Tsuk,ou=Product Development,dc=bitwarden,dc=com", - email: "TsukV@2f60f554d60143df8c782af78b69eca5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wilf Timmerman,ou=Janitorial,dc=bitwarden,dc=com", - email: "TimmermW@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffany Fisprod,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tiffany Fisprod,ou=Management,dc=bitwarden,dc=com", - email: "FisprodT@47b619accc2242b98a908129e561089a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rafael Tucker,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rafael Tucker,ou=Human Resources,dc=bitwarden,dc=com", - email: "TuckerR@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kayle Gedman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kayle Gedman,ou=Product Testing,dc=bitwarden,dc=com", - email: "GedmanK@d6ed11ccb7ed468da7d9b8a5b88b4fde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arthur Axberg,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Arthur Axberg,ou=Administrative,dc=bitwarden,dc=com", - email: "AxbergA@8dd73cf85da34f708a5ea6c9b1ceb858.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deeanne Armstead,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Deeanne Armstead,ou=Management,dc=bitwarden,dc=com", - email: "ArmsteaD@d1d8d0f2434243eabd270c2b3bcc4c7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaye Sils,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gaye Sils,ou=Product Testing,dc=bitwarden,dc=com", - email: "SilsG@64ae800c21ed412e8086ba9f98972fde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadan Trottier,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sadan Trottier,ou=Peons,dc=bitwarden,dc=com", - email: "TrottieS@8434173b00724ad8be544c5d8aa87b5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reina Woods,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reina Woods,ou=Peons,dc=bitwarden,dc=com", - email: "WoodsR@93c66893cda74239a9a56d1199a44457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krystalle Evers,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Krystalle Evers,ou=Human Resources,dc=bitwarden,dc=com", - email: "EversK@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mair Bascombe,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mair Bascombe,ou=Management,dc=bitwarden,dc=com", - email: "BascombM@8c75d8449fe241b583cdc3782aba550b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dinker Meehan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dinker Meehan,ou=Product Testing,dc=bitwarden,dc=com", - email: "MeehanD@1149878f7b4f4987a9a8b6d8df86a532.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elena Chabrat,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elena Chabrat,ou=Payroll,dc=bitwarden,dc=com", - email: "ChabratE@3a3f7974ffc147bc8e5ab8732ee37359.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozelle Kunkel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rozelle Kunkel,ou=Management,dc=bitwarden,dc=com", - email: "KunkelR@dd128ede6e3a4a6bba3ffbcc6309e61f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hengameh Hebbar,ou=Product Development,dc=bitwarden,dc=com", - email: "HebbarH@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christine Moree,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Christine Moree,ou=Human Resources,dc=bitwarden,dc=com", - email: "MoreeC@81e30a9ac6dd4fba89da9846767cb24b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Karlyn McGillicuddy,ou=Janitorial,dc=bitwarden,dc=com", - email: "McGilliK@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hildegaard Ornburn,ou=Product Testing,dc=bitwarden,dc=com", - email: "OrnburnH@9db63434a78e416392ae93e3976c1bfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elisa Trevethan,ou=Product Testing,dc=bitwarden,dc=com", - email: "TrevethE@cafef01f34b44ba5b82ee993bce42d43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Daune Sauvageau,ou=Product Testing,dc=bitwarden,dc=com", - email: "SauvageD@68388d901e1d4ae598f24f58170951da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anje Saward,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anje Saward,ou=Janitorial,dc=bitwarden,dc=com", - email: "SawardA@742e0d6a67274517a5c3f77f64edc637.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kwok Pringle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kwok Pringle,ou=Human Resources,dc=bitwarden,dc=com", - email: "PringleK@613c9a81ad7c44b9855320367cfca10a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chiho Zilaie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chiho Zilaie,ou=Peons,dc=bitwarden,dc=com", - email: "ZilaieC@fd92acc2e6b64b87b315aebd5398fa83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaw Leigh,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shaw Leigh,ou=Janitorial,dc=bitwarden,dc=com", - email: "LeighS@b8d71981403d4ad3936eae858f7c09c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Saundra Cizmar,ou=Product Testing,dc=bitwarden,dc=com", - email: "CizmarS@6e9d465e02444df3bab419ab8506be32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosita Updt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rosita Updt,ou=Payroll,dc=bitwarden,dc=com", - email: "UpdtR@cf19b52e52064a0db712a3ef1a76cd1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=MaryPat Wentworth,ou=Product Testing,dc=bitwarden,dc=com", - email: "WentworM@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Baljinder Weisenberg,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeisenbB@f4d67a28b94c425786eaa6b689514463.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vanda DeStefani,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeStefaV@9dcbc984add8456599771980772d506e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selim Kriegler,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Selim Kriegler,ou=Peons,dc=bitwarden,dc=com", - email: "KriegleS@b037ffa0817e41fb9bd6ea3947c6a216.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tae Jeng,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tae Jeng,ou=Administrative,dc=bitwarden,dc=com", - email: "JengT@96b2a23653bd4867b5a7bf172ebf238c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bahadir Grassmann,ou=Payroll,dc=bitwarden,dc=com", - email: "GrassmaB@6776642cb6824166a999264ad8dc48c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faz Chan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Faz Chan,ou=Payroll,dc=bitwarden,dc=com", - email: "ChanF@fadd1eac8fe2451fa3ba21f515baaf1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ericka Hayes,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ericka Hayes,ou=Administrative,dc=bitwarden,dc=com", - email: "HayesE@a90573a98b164929a489e62b8b0a18ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calli Pharr,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Calli Pharr,ou=Product Testing,dc=bitwarden,dc=com", - email: "PharrC@b4ffcfe46a614ae194b415ba89e17560.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pamela Hufana,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pamela Hufana,ou=Janitorial,dc=bitwarden,dc=com", - email: "HufanaP@b524d22ec70741b18bc6152d2cf11515.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jazmin Wobbrock,ou=Product Testing,dc=bitwarden,dc=com", - email: "WobbrocJ@3b0170f109034332b61e67bb6799825e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carley Fogleman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carley Fogleman,ou=Payroll,dc=bitwarden,dc=com", - email: "FoglemaC@aef5e63df5f745ab8b099bc2096e5d54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marsh Gribbons,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marsh Gribbons,ou=Peons,dc=bitwarden,dc=com", - email: "GribbonM@8d8eab9936e74cbb9cd7defe3a574b0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herminia Corvo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Herminia Corvo,ou=Peons,dc=bitwarden,dc=com", - email: "CorvoH@755e2f2f01064fb58f5836b47a9f6953.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loutitia Bruce,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Loutitia Bruce,ou=Product Development,dc=bitwarden,dc=com", - email: "BruceL@c5db51a01b18429da119a54ca0483290.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shirlene Twyman,ou=Product Testing,dc=bitwarden,dc=com", - email: "TwymanS@f0819837e05a4186824c71a4f41886b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genga Poley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Genga Poley,ou=Peons,dc=bitwarden,dc=com", - email: "PoleyG@c03ffca93a7e4687a4ec2bd1c0375925.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=JamesMichael Creamer,ou=Product Development,dc=bitwarden,dc=com", - email: "CreamerJ@592065f7f9cc4bfea26a7ca4df44dee5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petunia Gunther,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Petunia Gunther,ou=Administrative,dc=bitwarden,dc=com", - email: "GuntherP@c1fb4f6fb6854ac09da830fa08bf174b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zahirul Dinkel,ou=Janitorial,dc=bitwarden,dc=com", - email: "DinkelZ@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shabbir Throgmorton,ou=Product Development,dc=bitwarden,dc=com", - email: "ThrogmoS@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernice Yuan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bernice Yuan,ou=Product Testing,dc=bitwarden,dc=com", - email: "YuanB@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigitte Zahn,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brigitte Zahn,ou=Payroll,dc=bitwarden,dc=com", - email: "ZahnB@b2efef5ed30b40fb860407b9142be3e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lexis Otsuka,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lexis Otsuka,ou=Management,dc=bitwarden,dc=com", - email: "OtsukaL@e0abe3f47abe4097a988502110393014.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avril Hoffelt,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Avril Hoffelt,ou=Management,dc=bitwarden,dc=com", - email: "HoffeltA@41667abeeb534d61bc80cd7b46b3bcf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Caye Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", - email: "KazimieC@62f64ab8f08042e48744a09da3d99a8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Georgeta Gidaro,ou=Administrative,dc=bitwarden,dc=com", - email: "GidaroG@ba870021396f4a5691ef47f553098ab0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vax Regier,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vax Regier,ou=Peons,dc=bitwarden,dc=com", - email: "RegierV@871acffc5fd64b9296d59bdd7ff870b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meara Lindsey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Meara Lindsey,ou=Peons,dc=bitwarden,dc=com", - email: "LindseyM@f48b3f3250734c97804fc50043b90fe4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aeriel Juan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aeriel Juan,ou=Product Development,dc=bitwarden,dc=com", - email: "JuanA@6cf8a50be5a34e5ca28a7f3503d636ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dear Valerien,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dear Valerien,ou=Human Resources,dc=bitwarden,dc=com", - email: "ValerieD@8e1298be63e547e0a393778bd9158d77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Madlin Dagoulis,ou=Product Development,dc=bitwarden,dc=com", - email: "DagouliM@c9027f607987451aa869ec32b2ad0708.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jennica Wasylyk,ou=Product Testing,dc=bitwarden,dc=com", - email: "WasylykJ@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shobana Bardsley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shobana Bardsley,ou=Payroll,dc=bitwarden,dc=com", - email: "BardsleS@190762f539394f3d8d0e37edbd48fa26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Taffy Jemczyk,ou=Janitorial,dc=bitwarden,dc=com", - email: "JemczykT@d9a2b19f9cc14fe692b39c04dad264af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Iona Kohl,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Iona Kohl,ou=Human Resources,dc=bitwarden,dc=com", - email: "KohlI@6de130a8139a479abd748cccf12fccd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idette Ramage,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Idette Ramage,ou=Product Testing,dc=bitwarden,dc=com", - email: "RamageI@bcb643d34cfb429990b3b8ec3cdd4d6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mick Jakab,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mick Jakab,ou=Product Development,dc=bitwarden,dc=com", - email: "JakabM@8ae2116c03884751957c5ca2ff18a644.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=LeRoy Wissinger,ou=Payroll,dc=bitwarden,dc=com", - email: "WissingL@d0cf6383cc594af9bf44d435b5ef79a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clay Staats,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Clay Staats,ou=Janitorial,dc=bitwarden,dc=com", - email: "StaatsC@6228eb5070fa41c9be84b7e2397a2759.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zulema Leavitt,ou=Product Testing,dc=bitwarden,dc=com", - email: "LeavittZ@3f14bb0cade24248b56a7e113187211c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elsbeth Schadan,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchadanE@82a02eb22e9446a98ae50c8b159eeb8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronica Dummer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ronica Dummer,ou=Product Testing,dc=bitwarden,dc=com", - email: "DummerR@c643a761475a4a67b1e62fab24451a4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=JeanBernard Vandergeest,ou=Product Testing,dc=bitwarden,dc=com", - email: "VandergJ@61697331f90443959b7bd23e7a2ee775.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rolf Maudrie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rolf Maudrie,ou=Peons,dc=bitwarden,dc=com", - email: "MaudrieR@8717d7d6686445eba152afa0241a3ea0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sidonnie Comp,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sidonnie Comp,ou=Peons,dc=bitwarden,dc=com", - email: "CompS@ec75342deb7d449a90956cf996c042fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jimmie Mand,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jimmie Mand,ou=Management,dc=bitwarden,dc=com", - email: "MandJ@02331ebbeac0451ea60775fb2cc7fdc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esmaria Walston,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Esmaria Walston,ou=Peons,dc=bitwarden,dc=com", - email: "WalstonE@c66615aa805449f0a34309614a139187.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claude LaVecchia,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Claude LaVecchia,ou=Management,dc=bitwarden,dc=com", - email: "LaVecchC@537a7fb8e8084a50ad524dcf8366437e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rusty Montgomery,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rusty Montgomery,ou=Product Development,dc=bitwarden,dc=com", - email: "MontgomR@d89a4c96e85d46e9b90aee84eca8553c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsey Favreau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chelsey Favreau,ou=Peons,dc=bitwarden,dc=com", - email: "FavreauC@a80e7f60ec3848439689791d9f11c058.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JulieAnne Drubld,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=JulieAnne Drubld,ou=Management,dc=bitwarden,dc=com", - email: "DrubldJ@377af438e28144f198471c633c478745.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rafiq Mihara,ou=Human Resources,dc=bitwarden,dc=com", - email: "MiharaR@5961547593ce4d3d831c972ef1cd392b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ninetta Kadlecik,ou=Payroll,dc=bitwarden,dc=com", - email: "KadleciN@f84feca728aa4b08a80aa164ca1230d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shantee Moulton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shantee Moulton,ou=Payroll,dc=bitwarden,dc=com", - email: "MoultonS@5c0caf6aaf894e2787d090d3ee4667c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camilla Sayegh,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Camilla Sayegh,ou=Management,dc=bitwarden,dc=com", - email: "SayeghC@4ecb285ebb064bbf967c6e0c912612d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Txp Wojdylo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Txp Wojdylo,ou=Product Development,dc=bitwarden,dc=com", - email: "WojdyloT@5f41ae90bad64d5e97b0ef849f0cfd8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belen Miernik,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Belen Miernik,ou=Payroll,dc=bitwarden,dc=com", - email: "MiernikB@daf3844d93884659a4691cd15a58290b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mani Skillen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mani Skillen,ou=Payroll,dc=bitwarden,dc=com", - email: "SkillenM@e843ca68e55442fdb294c3e4c51a76f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diahann Roeten,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Diahann Roeten,ou=Janitorial,dc=bitwarden,dc=com", - email: "RoetenD@cff29f28824b49c2bb3b80efc41d7e67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KaiWai COKOL,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=KaiWai COKOL,ou=Payroll,dc=bitwarden,dc=com", - email: "COKOLK@00dfe515041244398e6b32b1b1e73b2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maible Adorno,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maible Adorno,ou=Product Development,dc=bitwarden,dc=com", - email: "AdornoM@76c55b991b154687a6c440a29ba279b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zero Fletcher,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zero Fletcher,ou=Management,dc=bitwarden,dc=com", - email: "FletcheZ@9b70e886a18d422fa3404374b5a9613c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daveen Burnage,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Daveen Burnage,ou=Management,dc=bitwarden,dc=com", - email: "BurnageD@d5a1c908aa0542dcbca729ee2090c302.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ebony Duquette,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ebony Duquette,ou=Product Testing,dc=bitwarden,dc=com", - email: "DuquettE@fc77f4d906ff4b3cb588df36a2010c58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tracie Holinski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tracie Holinski,ou=Peons,dc=bitwarden,dc=com", - email: "HolinskT@6da551849f104f33a2eea46618b3ca98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rio Naem,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rio Naem,ou=Payroll,dc=bitwarden,dc=com", - email: "NaemR@ed87fa3a81eb418da1bb630466cba42d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reeta Abel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Reeta Abel,ou=Janitorial,dc=bitwarden,dc=com", - email: "AbelR@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felicle McCartin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Felicle McCartin,ou=Administrative,dc=bitwarden,dc=com", - email: "McCartiF@78c782ee988042558677d060e6dcc145.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrell Presgrove,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Darrell Presgrove,ou=Payroll,dc=bitwarden,dc=com", - email: "PresgroD@08314372b4e24a1c8e4f541db86c96af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faizal Awadalla,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Faizal Awadalla,ou=Management,dc=bitwarden,dc=com", - email: "AwadallF@85be5888418240a8880dd2671e654a34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SikYin Borha,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=SikYin Borha,ou=Administrative,dc=bitwarden,dc=com", - email: "BorhaS@8cf60560d9f94210b078d7fde7752144.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steve Marette,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Steve Marette,ou=Human Resources,dc=bitwarden,dc=com", - email: "MaretteS@83fe03b0ea334785886a9e6e12b6449f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jelene Kuykendall,ou=Product Testing,dc=bitwarden,dc=com", - email: "KuykendJ@60ec121ba9714e3489eb920608ad92c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janeva Diener,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Janeva Diener,ou=Product Development,dc=bitwarden,dc=com", - email: "DienerJ@5b2a3a94c4fc4b63a1c4a61fe0867664.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amelie Brashear,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Amelie Brashear,ou=Administrative,dc=bitwarden,dc=com", - email: "BrasheaA@2a4ac17a2dac443185eb76e92ebd37d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kenneth Tahamont,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kenneth Tahamont,ou=Peons,dc=bitwarden,dc=com", - email: "TahamonK@06f45b5a620c43d78c14ccaab146b491.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mario Pappu,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mario Pappu,ou=Peons,dc=bitwarden,dc=com", - email: "PappuM@adc1aa4054664ff28e6c264f378bb34d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bethena Arnauld,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bethena Arnauld,ou=Peons,dc=bitwarden,dc=com", - email: "ArnauldB@8e5803ba8a994346b2021a6c4699f1e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nhut Hollis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nhut Hollis,ou=Product Testing,dc=bitwarden,dc=com", - email: "HollisN@eb263435394f4d6ab9827469c04cb342.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claudette Murton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Claudette Murton,ou=Management,dc=bitwarden,dc=com", - email: "MurtonC@e0f19e47c9c84b21b125848518ec6067.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Heidie Rasmussen,ou=Product Testing,dc=bitwarden,dc=com", - email: "RasmussH@f185c5336698451d9003f4fee19cdce1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Liem Fahrenthold,ou=Human Resources,dc=bitwarden,dc=com", - email: "FahrentL@11006cb63c014ed78431f32c1edc2e50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dalila Solomon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dalila Solomon,ou=Janitorial,dc=bitwarden,dc=com", - email: "SolomonD@1992283e02a14cd2a3449a7bd08c0ed9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veriee Aksel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Veriee Aksel,ou=Peons,dc=bitwarden,dc=com", - email: "AkselV@44ecb368c6be4359b7f35b951bbf9473.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirella Lambregts,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mirella Lambregts,ou=Payroll,dc=bitwarden,dc=com", - email: "LambregM@9aa7896234604e35853331a58b365781.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulinus Bagi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Paulinus Bagi,ou=Administrative,dc=bitwarden,dc=com", - email: "BagiP@5ad3d7530e0c4ae2a02dadf40f602049.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rodrigo Healy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rodrigo Healy,ou=Peons,dc=bitwarden,dc=com", - email: "HealyR@dc401fe14a3e4403a51a351982eb441b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vicheara Reimann,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vicheara Reimann,ou=Payroll,dc=bitwarden,dc=com", - email: "ReimannV@16061e068871412f8042ab726cfbe1cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=JoAnne Selchow,ou=Human Resources,dc=bitwarden,dc=com", - email: "SelchowJ@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sylvie Tesfamariam,ou=Janitorial,dc=bitwarden,dc=com", - email: "TesfamaS@9969b0f8851149aaa64ff3c67e9b6c53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marissa Galluzzi,ou=Administrative,dc=bitwarden,dc=com", - email: "GalluzzM@dd011395008c45a78a4a604d3e2ee63f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johan Srivastava,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Johan Srivastava,ou=Peons,dc=bitwarden,dc=com", - email: "SrivastJ@9d11b1a953264fd3bc02d35b06a24305.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isl Luciani,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Isl Luciani,ou=Human Resources,dc=bitwarden,dc=com", - email: "LucianiI@93274af28e624bc39a43d4c6197969b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rafaela Paglia,ou=Human Resources,dc=bitwarden,dc=com", - email: "PagliaR@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monah Nipper,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Monah Nipper,ou=Administrative,dc=bitwarden,dc=com", - email: "NipperM@45b2aea3ceaf4960a311478dd3996fb9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibyl Luettchau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sibyl Luettchau,ou=Peons,dc=bitwarden,dc=com", - email: "LuettchS@4c76717060934e34ac6c2ce08f3c0eb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryl Feeley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Maryl Feeley,ou=Peons,dc=bitwarden,dc=com", - email: "FeeleyM@3ee0cf8e98f2453e9621b886fd38e19c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moyna Syres,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Moyna Syres,ou=Management,dc=bitwarden,dc=com", - email: "SyresM@f04f08ea3a55432db354ee9760194fa6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Demi Postlethwaite,ou=Product Testing,dc=bitwarden,dc=com", - email: "PostletD@6e135dde94f540bebc4c8457eb8935d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petri Jimenez,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Petri Jimenez,ou=Janitorial,dc=bitwarden,dc=com", - email: "JimenezP@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mike Inoue,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mike Inoue,ou=Administrative,dc=bitwarden,dc=com", - email: "InoueM@398ea17d6f974da4b9c05b23fe6460f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anita Gonsalves,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anita Gonsalves,ou=Payroll,dc=bitwarden,dc=com", - email: "GonsalvA@1bc81f639d7b4a75a6776b919ea7ed35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dennis Saad,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dennis Saad,ou=Janitorial,dc=bitwarden,dc=com", - email: "SaadD@194b01da4c0947188a08ceb5675d4f64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Taryna Anchia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Taryna Anchia,ou=Product Development,dc=bitwarden,dc=com", - email: "AnchiaT@87bc15d42d8444788089ff676f599c5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Roseann Dattalo,ou=Product Testing,dc=bitwarden,dc=com", - email: "DattaloR@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abigale Dacal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Abigale Dacal,ou=Peons,dc=bitwarden,dc=com", - email: "DacalA@a2e6c1d1859c490496277e66f6d6fefe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kana Gantt,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kana Gantt,ou=Peons,dc=bitwarden,dc=com", - email: "GanttK@c641e89a05dc4a0b90f1fb133a4ef5f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hans Raing,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hans Raing,ou=Payroll,dc=bitwarden,dc=com", - email: "RaingH@5527d18878ce414192acda3c6755e170.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melford Lopes,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melford Lopes,ou=Janitorial,dc=bitwarden,dc=com", - email: "LopesM@dabe1d11b71042a7a449964bb8bad569.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Taryna Krumwiede,ou=Human Resources,dc=bitwarden,dc=com", - email: "KrumwieT@d041e9b74a124206a91f318978266966.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermina Ng,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hermina Ng,ou=Administrative,dc=bitwarden,dc=com", - email: "NgH@bc08bb83b4a9449f96909ee779df6288.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ren Schwenk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ren Schwenk,ou=Administrative,dc=bitwarden,dc=com", - email: "SchwenkR@01a39cd47fba422abe5be28943be33a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subramaniam Cranston,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Subramaniam Cranston,ou=Peons,dc=bitwarden,dc=com", - email: "CranstoS@7dae041718544c45a452ecb7fa3d7247.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coors Livas,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Coors Livas,ou=Management,dc=bitwarden,dc=com", - email: "LivasC@289444924c894df68dc76e9d8add4066.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arleyne Schreier,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Arleyne Schreier,ou=Product Development,dc=bitwarden,dc=com", - email: "SchreieA@eab743ec7e88405c97ab071366098384.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ko Yuen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ko Yuen,ou=Human Resources,dc=bitwarden,dc=com", - email: "YuenK@8fe8053cf30a4c47b93e0a3f02958712.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kentaro Vetrano,ou=Product Development,dc=bitwarden,dc=com", - email: "VetranoK@974ece3e63104cd593ac8a6d9de7a620.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fayth Kamboh,ou=Human Resources,dc=bitwarden,dc=com", - email: "KambohF@e1f0d918bf004e4781bc8a3f9e7beec7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Joelly Dorrell,ou=Product Testing,dc=bitwarden,dc=com", - email: "DorrellJ@8c9d5524ef4a437cbd972be9daff51a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HsingJu Kellogg,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=HsingJu Kellogg,ou=Peons,dc=bitwarden,dc=com", - email: "KelloggH@4b73d5c781bf4b6e9f4e5ee08640ddde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juanita Beisel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Juanita Beisel,ou=Product Development,dc=bitwarden,dc=com", - email: "BeiselJ@1f7da6ad1bec427086c129ba155297d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jackson Forbes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jackson Forbes,ou=Product Testing,dc=bitwarden,dc=com", - email: "ForbesJ@ce56c75a600546b9ade2ff9aaa1b992b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bethina Rosvick,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bethina Rosvick,ou=Peons,dc=bitwarden,dc=com", - email: "RosvickB@ade29194809c470d9cdfd87fd5b67232.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Osama Bitton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Osama Bitton,ou=Peons,dc=bitwarden,dc=com", - email: "BittonO@39518f40f570412d8781523094828b83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Douglass Eales,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Douglass Eales,ou=Janitorial,dc=bitwarden,dc=com", - email: "EalesD@fda558d35380465a89fa3c01f8acc3f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linh Ostifichuk,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Linh Ostifichuk,ou=Peons,dc=bitwarden,dc=com", - email: "OstificL@d324387fa53747b48c6c4daf8c273d2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonor Hepburn,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Leonor Hepburn,ou=Peons,dc=bitwarden,dc=com", - email: "HepburnL@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Umesh Mayhugh,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Umesh Mayhugh,ou=Management,dc=bitwarden,dc=com", - email: "MayhughU@be5d2c8b0750461ea93a71ac6197ac3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cecile Chorley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cecile Chorley,ou=Administrative,dc=bitwarden,dc=com", - email: "ChorleyC@92468910821a458ca936a273ecde380f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alia Kuehne,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alia Kuehne,ou=Peons,dc=bitwarden,dc=com", - email: "KuehneA@4440d5a8c29244aaa65d7ce99130f973.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Prudence Pelkie,ou=Human Resources,dc=bitwarden,dc=com", - email: "PelkieP@4db0de6fc0354c61b2c3ca3477ce6f09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fernando Pacey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fernando Pacey,ou=Product Development,dc=bitwarden,dc=com", - email: "PaceyF@7a081f2b6b9244909f5b879d315b7d98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sela Sandlford,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sela Sandlford,ou=Management,dc=bitwarden,dc=com", - email: "SandlfoS@5590d64af7534c85b57333acc4273b5d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Latashia McCuaig,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Latashia McCuaig,ou=Peons,dc=bitwarden,dc=com", - email: "McCuaigL@89d246bbdd9b435a85f71ab6a1baf316.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dara Goodwin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dara Goodwin,ou=Human Resources,dc=bitwarden,dc=com", - email: "GoodwinD@96301228f26045a98bca1aa7a6828ccb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helli Charlino,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Helli Charlino,ou=Peons,dc=bitwarden,dc=com", - email: "CharlinH@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Duquette MacCarthy,ou=Product Development,dc=bitwarden,dc=com", - email: "MacCartD@599d357394854e689476d822b0b57fa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erhard Ikeda,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Erhard Ikeda,ou=Administrative,dc=bitwarden,dc=com", - email: "IkedaE@91023564560e4387b5bc8c338afb8d2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perrin Lai,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Perrin Lai,ou=Peons,dc=bitwarden,dc=com", - email: "LaiP@191560c093d04e6eb83773b23b4a75c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vickie Bardsley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vickie Bardsley,ou=Peons,dc=bitwarden,dc=com", - email: "BardsleV@34b9dab44b4c429bac836e963718507e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yasmeen Uhl,ou=Payroll,dc=bitwarden,dc=com", - email: "UhlY@2e914230190e4b26af40b18447e81c89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jackquelin Gavens,ou=Administrative,dc=bitwarden,dc=com", - email: "GavensJ@48d89f6366ec4bc9a3dc2bca58802c17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katherin Habert,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Katherin Habert,ou=Administrative,dc=bitwarden,dc=com", - email: "HabertK@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mehrzad Stults,ou=Human Resources,dc=bitwarden,dc=com", - email: "StultsM@a94f02e2207d4ffea5ed4b894690e8bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nobuko Prickett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nobuko Prickett,ou=Peons,dc=bitwarden,dc=com", - email: "PricketN@7a0a42a221e54534bde4f77162bffa38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amye Seery,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Amye Seery,ou=Human Resources,dc=bitwarden,dc=com", - email: "SeeryA@5a862ee432d84b02b5e7449c7e7e57de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Illinois Bolgos,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Illinois Bolgos,ou=Peons,dc=bitwarden,dc=com", - email: "BolgosI@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandro Ploof,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sandro Ploof,ou=Product Testing,dc=bitwarden,dc=com", - email: "PloofS@5b74ae7e4b63404ca474f585b4fa1a15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Turgay Potesta,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Turgay Potesta,ou=Human Resources,dc=bitwarden,dc=com", - email: "PotestaT@1f8b1f3866104cfe9aec2b9458246d51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debi Hore,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Debi Hore,ou=Payroll,dc=bitwarden,dc=com", - email: "HoreD@399088e535dc444183a128d7fd1a5d16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leyla Toulson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Leyla Toulson,ou=Janitorial,dc=bitwarden,dc=com", - email: "ToulsonL@4fdb4b1142dd43e2b745e38a2e8dcfc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morris Asghar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Morris Asghar,ou=Janitorial,dc=bitwarden,dc=com", - email: "AsgharM@dd44ac1957c74a4cb7889302d7ebe0e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eirik Satkamp,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eirik Satkamp,ou=Payroll,dc=bitwarden,dc=com", - email: "SatkampE@a58e2e7328b140e6b9088aee54dad46e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Asghar Graziano,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Asghar Graziano,ou=Product Testing,dc=bitwarden,dc=com", - email: "GrazianA@ed467736f9c84503b862ff0dede491f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randee McIntee,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Randee McIntee,ou=Management,dc=bitwarden,dc=com", - email: "McInteeR@51d2d36aebb34355849c7e53ff1c0f7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magnolia Aderhold,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Magnolia Aderhold,ou=Peons,dc=bitwarden,dc=com", - email: "AderholM@af1c936dc969478a898b38c058f5ed5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gert Thibert,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gert Thibert,ou=Administrative,dc=bitwarden,dc=com", - email: "ThibertG@df1e12962002409b9a20ed25bb4fc517.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hunter Durant,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hunter Durant,ou=Payroll,dc=bitwarden,dc=com", - email: "DurantH@4a47eda5b0994d6aac96fd9eb9bf327f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luci Gergen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Luci Gergen,ou=Administrative,dc=bitwarden,dc=com", - email: "GergenL@7ac0e2ad61544d40bfea2cd31be985e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tilak Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", - email: "SamsoneT@a36ae0077844436e8862dc02ec43b8a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yousef Musick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Yousef Musick,ou=Product Testing,dc=bitwarden,dc=com", - email: "MusickY@2a9b1bb4219c473fa5e7f0b996562330.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shabbir Derganc,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shabbir Derganc,ou=Peons,dc=bitwarden,dc=com", - email: "DergancS@fcae2d9ced4b428b9a9d2a090c1d7f7e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amalita Korey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Amalita Korey,ou=Janitorial,dc=bitwarden,dc=com", - email: "KoreyA@7f43ce627c55498db87bd6bc96b3db06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herbie Merrils,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Herbie Merrils,ou=Product Testing,dc=bitwarden,dc=com", - email: "MerrilsH@ea8c137275494c24a45d33c847e472b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YuenPui Woodford,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=YuenPui Woodford,ou=Product Development,dc=bitwarden,dc=com", - email: "WoodforY@352885b42f264ade8eacdfa709cc8cc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mair Dobransky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mair Dobransky,ou=Administrative,dc=bitwarden,dc=com", - email: "DobransM@fb42541289ea4a75a098aa5071cf2a78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fae Molson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fae Molson,ou=Management,dc=bitwarden,dc=com", - email: "MolsonF@88e71895091a44a391aaaea86b3a2139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subhash Moizer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Subhash Moizer,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoizerS@1a8c60a83e6243159e036bc3f0b25375.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosella Spillane,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosella Spillane,ou=Peons,dc=bitwarden,dc=com", - email: "SpillanR@7d0b6de1366f4854a2055e12fa1d2f25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Persis Modi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Persis Modi,ou=Payroll,dc=bitwarden,dc=com", - email: "ModiP@e01f22d28f98422baeb51e5c86b12ea4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamar Haggart,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tamar Haggart,ou=Payroll,dc=bitwarden,dc=com", - email: "HaggartT@0bbb8d3aae5445bdac2a449666fb01f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orelie Cheval,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Orelie Cheval,ou=Payroll,dc=bitwarden,dc=com", - email: "ChevalO@ad4f2c28add24fbaa47ce2429cc8c126.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronna Morton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ronna Morton,ou=Product Development,dc=bitwarden,dc=com", - email: "MortonR@bf06b384703e4fb1b93b31fc9bbac8e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eryn Avirett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Eryn Avirett,ou=Human Resources,dc=bitwarden,dc=com", - email: "AvirettE@764613c40e224c12ab1c1cb80b18e644.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=YeeNing Minegishi,ou=Administrative,dc=bitwarden,dc=com", - email: "MinegisY@76c064fc8a52468faf02f6f037383b43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Amaleta Chuah,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChuahA@7fd0c28d96684690bb3ec812bcbe54dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rowe Firment,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rowe Firment,ou=Payroll,dc=bitwarden,dc=com", - email: "FirmentR@341209807c3b449193b094017d62cb24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fidela Irving,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fidela Irving,ou=Product Development,dc=bitwarden,dc=com", - email: "IrvingF@edc642e0d4114142a514590d284702bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Giambattista Hawryluk,ou=Janitorial,dc=bitwarden,dc=com", - email: "HawryluG@b1b7656e019d440a9a3ca7d6d074faa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desire Rutter,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Desire Rutter,ou=Administrative,dc=bitwarden,dc=com", - email: "RutterD@17dcf13b7e684c4a9ba2dcc27a684a76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xaviera Anstead,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Xaviera Anstead,ou=Management,dc=bitwarden,dc=com", - email: "AnsteadX@c7ac29b8c7544beabc5b51db5b6a9b3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelsi McAlister,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kelsi McAlister,ou=Management,dc=bitwarden,dc=com", - email: "McAlistK@78b14e83ea6c430b9dbf5891d9c7ea13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marce Onyshko,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marce Onyshko,ou=Janitorial,dc=bitwarden,dc=com", - email: "OnyshkoM@cd70627629114669966294343a84f460.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Son AlBasi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Son AlBasi,ou=Peons,dc=bitwarden,dc=com", - email: "AlBasiS@380d2cfedb114628852f31e5ec3504d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zdenko Burrowes,ou=Product Development,dc=bitwarden,dc=com", - email: "BurroweZ@42ed2713079345ee9a1fa2e4e2a26d0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julianne Temp,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Julianne Temp,ou=Administrative,dc=bitwarden,dc=com", - email: "TempJ@d90060a8a6214d68a708f85a619deb45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seamus Sathe,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Seamus Sathe,ou=Human Resources,dc=bitwarden,dc=com", - email: "SatheS@46a0dca503f048e6b97b0a1babc44b47.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terra Tanatichat,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Terra Tanatichat,ou=Product Development,dc=bitwarden,dc=com", - email: "TanaticT@228cb153fdc24b46957a116ec2859b16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carlisle Hazelton,ou=Payroll,dc=bitwarden,dc=com", - email: "HazeltoC@51972c3fcd684339942be0fdc3e53b2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emil Hogeboom,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Emil Hogeboom,ou=Administrative,dc=bitwarden,dc=com", - email: "HogebooE@e6ed933c0a1d45ec83769226267acd7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anup Volkmer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anup Volkmer,ou=Human Resources,dc=bitwarden,dc=com", - email: "VolkmerA@6e287118b6904f0fb9c650aef9285536.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kevin Tangren,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kevin Tangren,ou=Human Resources,dc=bitwarden,dc=com", - email: "TangrenK@1f071e8813ad43c0a975571fab76b110.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Miguel Lamoureux,ou=Janitorial,dc=bitwarden,dc=com", - email: "LamoureM@a71c06be904c4f5a89c92e6a220b8c20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Germaine Lisak,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Germaine Lisak,ou=Product Testing,dc=bitwarden,dc=com", - email: "LisakG@83ae92312ed14d6f8e9439baa2583cab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deni Chea,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Deni Chea,ou=Management,dc=bitwarden,dc=com", - email: "CheaD@8743427566014d61952feea02c990670.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=GuoQiang Ortiz,ou=Product Testing,dc=bitwarden,dc=com", - email: "OrtizG@e0abe3f47abe4097a988502110393014.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ardavan Dittburner,ou=Administrative,dc=bitwarden,dc=com", - email: "DittburA@8ae5753568884557b826bbbe6815b824.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jooran Hilton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jooran Hilton,ou=Peons,dc=bitwarden,dc=com", - email: "HiltonJ@22805ca86db349db82f4caa9262213d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pramod Piltz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pramod Piltz,ou=Administrative,dc=bitwarden,dc=com", - email: "PiltzP@ffa8cd3aeeee4cfeb19b5276a68d00ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reyaud Kurio,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Reyaud Kurio,ou=Management,dc=bitwarden,dc=com", - email: "KurioR@c7060db9738740d2956d55565559b7e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wiebren Bessey,ou=Product Testing,dc=bitwarden,dc=com", - email: "BesseyW@a97141a360d8445daa6a6439dfbbd290.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shivdarsan DiLoreto,ou=Management,dc=bitwarden,dc=com", - email: "DiLoretS@553a74428bb643038d327a6c4003715b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Radio DiNinno,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Radio DiNinno,ou=Janitorial,dc=bitwarden,dc=com", - email: "DiNinnoR@954e6390e22749f58bb26b8cbf617fd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=ChyeLian Gaspard,ou=Product Development,dc=bitwarden,dc=com", - email: "GaspardC@6b282dc55aa94d768c03263feaea873d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cynde Tudo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cynde Tudo,ou=Peons,dc=bitwarden,dc=com", - email: "TudoC@34b8819121134165801d80019693f357.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genga Huor,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Genga Huor,ou=Administrative,dc=bitwarden,dc=com", - email: "HuorG@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Stepha Prodmfg,ou=Payroll,dc=bitwarden,dc=com", - email: "ProdmfgS@8342e98dcb144504925e856ae40dc976.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leandra Steffy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leandra Steffy,ou=Administrative,dc=bitwarden,dc=com", - email: "SteffyL@fde818a61bf74c84a96e4a6b3a93254c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nikoletta Milakovic,ou=Product Development,dc=bitwarden,dc=com", - email: "MilakovN@173a9f8ca9674f02b63ed62bf1ee045c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Opaline Nonkes,ou=Human Resources,dc=bitwarden,dc=com", - email: "NonkesO@3ae9bbbfe6944aab8c1da1dd2e25c83e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trisha Walpole,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Trisha Walpole,ou=Peons,dc=bitwarden,dc=com", - email: "WalpoleT@8e9aca409d3f4b8f94ffcf55f95ec4f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valli Buzzell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Valli Buzzell,ou=Administrative,dc=bitwarden,dc=com", - email: "BuzzellV@b847cd495a564fd88ad378e323d86f9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gita Manuszak,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gita Manuszak,ou=Management,dc=bitwarden,dc=com", - email: "ManuszaG@f9d71b3d7756421faee1ebdbe5841d08.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadru Suda,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sadru Suda,ou=Human Resources,dc=bitwarden,dc=com", - email: "SudaS@cc31cd53eb2f42d5bed8552ceaa8d352.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susana Mattes,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Susana Mattes,ou=Administrative,dc=bitwarden,dc=com", - email: "MattesS@143f4decc1ea4d51bb83bcbd0e097784.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diannne Geuder,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Diannne Geuder,ou=Peons,dc=bitwarden,dc=com", - email: "GeuderD@b22ff28e3c9d44f9a2be9fd304adde71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lorilyn Palermo,ou=Product Development,dc=bitwarden,dc=com", - email: "PalermoL@79732267294c4ff69a75a9c93c8c2c5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ned Faletti,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ned Faletti,ou=Management,dc=bitwarden,dc=com", - email: "FalettiN@4f1a95a3a24b45ab865ea73c936d9882.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwenni Felske,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gwenni Felske,ou=Peons,dc=bitwarden,dc=com", - email: "FelskeG@9909ed305dae4f37a6d0bffd11371c11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coretta Mayne,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Coretta Mayne,ou=Management,dc=bitwarden,dc=com", - email: "MayneC@d53702797f754da285804836fd6dc130.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maurice INFOMANAGEMENT,ou=Janitorial,dc=bitwarden,dc=com", - email: "INFOMANM@0755ab53fc1e4e03afc45f28e9749da3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cissiee Hampton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cissiee Hampton,ou=Administrative,dc=bitwarden,dc=com", - email: "HamptonC@974ece3e63104cd593ac8a6d9de7a620.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalina Fangio,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kalina Fangio,ou=Management,dc=bitwarden,dc=com", - email: "FangioK@937ccb2001694e2680b8217ebfc1227e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petter Sarna,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Petter Sarna,ou=Management,dc=bitwarden,dc=com", - email: "SarnaP@a08a36a3e7a643d9a21fd4a80adf64e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nando Shurtleff,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nando Shurtleff,ou=Management,dc=bitwarden,dc=com", - email: "ShurtleN@e2ee1ddb67844a4eb1bfd125d596f6dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valene St,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Valene St,ou=Administrative,dc=bitwarden,dc=com", - email: "StV@e62b6bada3794f6abc6e683f712748b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elysia Swiat,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elysia Swiat,ou=Administrative,dc=bitwarden,dc=com", - email: "SwiatE@3a43957f1ee74e77816af0da1f628f5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yonik Valerien,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Yonik Valerien,ou=Administrative,dc=bitwarden,dc=com", - email: "ValerieY@1def8313ad68443a9c5bea174f8d550c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jania Clouthier,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jania Clouthier,ou=Management,dc=bitwarden,dc=com", - email: "ClouthiJ@570987c9633d4a6fa09773cb5695f8f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lennart Whang,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lennart Whang,ou=Management,dc=bitwarden,dc=com", - email: "WhangL@27b3ace1dd6948c9b5b4ab8ce5109020.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Toshinari Shiley,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShileyT@df4c81c501de459185b071b55cec7800.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hala Wallis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hala Wallis,ou=Payroll,dc=bitwarden,dc=com", - email: "WallisH@d1b4a8f4bfcd4e2c9e8835bd8152821a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Levy Younger,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Levy Younger,ou=Product Testing,dc=bitwarden,dc=com", - email: "YoungerL@bd95fb0b94e54dbeaa76998f864c682b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rahel Strober,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rahel Strober,ou=Human Resources,dc=bitwarden,dc=com", - email: "StroberR@b10541570bad45a48e9ecd8a1385a852.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Casi Swick,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Casi Swick,ou=Peons,dc=bitwarden,dc=com", - email: "SwickC@96ba8081521e4fe79c79c0f0b9ef5643.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dimitrios Coop,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dimitrios Coop,ou=Payroll,dc=bitwarden,dc=com", - email: "CoopD@66a31a3d20a943048dbdda8f5b8317cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elga Ashton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elga Ashton,ou=Payroll,dc=bitwarden,dc=com", - email: "AshtonE@c2d468668e054b8aadb7cf3babcdcfb1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harley Streatfield,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Harley Streatfield,ou=Human Resources,dc=bitwarden,dc=com", - email: "StreatfH@c04c96e3607342d4a6bf3509ce60159a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khamdy Quinn,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Khamdy Quinn,ou=Payroll,dc=bitwarden,dc=com", - email: "QuinnK@2c1574455ead4b0fb0046ceddcdf6a0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devan Kashima,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Devan Kashima,ou=Human Resources,dc=bitwarden,dc=com", - email: "KashimaD@94871f5c5c9f4476ab9f2c6fcd362b35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regine Frizado,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Regine Frizado,ou=Payroll,dc=bitwarden,dc=com", - email: "FrizadoR@60ec121ba9714e3489eb920608ad92c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roger Bondurant,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Roger Bondurant,ou=Peons,dc=bitwarden,dc=com", - email: "BonduraR@91bb90ade3ed45329bdbe468ae424f00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Taffy Solkoff,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Taffy Solkoff,ou=Administrative,dc=bitwarden,dc=com", - email: "SolkoffT@5059d6584df44d409840773250e30d06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Melford Leonhardt,ou=Product Testing,dc=bitwarden,dc=com", - email: "LeonharM@7012522876084229bee482efdda1e27f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marscha Cunningham,ou=Product Testing,dc=bitwarden,dc=com", - email: "CunningM@e5f3f85a3f2c4e7188d53f64528e2e38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mame Muradia,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mame Muradia,ou=Human Resources,dc=bitwarden,dc=com", - email: "MuradiaM@462635d48ea740ba9a66cf325662e6a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hoang Krawchuk,ou=Product Testing,dc=bitwarden,dc=com", - email: "KrawchuH@91d86ca600e34a88b5fa8a48c064942b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirlee Mackey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shirlee Mackey,ou=Product Development,dc=bitwarden,dc=com", - email: "MackeyS@a814a20984a7474a86dd8e8b1ff0507d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terrye Redish,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Terrye Redish,ou=Product Development,dc=bitwarden,dc=com", - email: "RedishT@8f2591e5f396463da221dbcfdfd8f21f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Penelope Rey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Penelope Rey,ou=Human Resources,dc=bitwarden,dc=com", - email: "ReyP@6ba20748a72b4cee894c912c97374a56.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anthony Meyer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anthony Meyer,ou=Human Resources,dc=bitwarden,dc=com", - email: "MeyerA@0709c1c68975470c9ca0f7b0b26d3479.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dre McNerney,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dre McNerney,ou=Payroll,dc=bitwarden,dc=com", - email: "McNerneD@5f494e5d5c2b48bd9e0d3f42e62d76ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cantrell Freeburn,ou=Product Development,dc=bitwarden,dc=com", - email: "FreeburC@713ec84902e3407ea7c47d43e09273a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brooks Drescher,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brooks Drescher,ou=Payroll,dc=bitwarden,dc=com", - email: "DrescheB@3bd17db97361499690e9a4a1c0655d19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandea Dziemian,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Brandea Dziemian,ou=Administrative,dc=bitwarden,dc=com", - email: "DziemiaB@f615417804714e2b90444d84fdf4c3ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candis Richer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Candis Richer,ou=Peons,dc=bitwarden,dc=com", - email: "RicherC@d5f78709240a4b7ea8f13e25bed4f996.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kandace Fitzgerald,ou=Peons,dc=bitwarden,dc=com", - email: "FitzgerK@679765b52d394d7ba89a59f3e71121ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Huppert Hollenbeck,ou=Peons,dc=bitwarden,dc=com", - email: "HollenbH@27675f086a934218bc91689ddec78148.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ludovico Gleason,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ludovico Gleason,ou=Management,dc=bitwarden,dc=com", - email: "GleasonL@5b7e72dec03d45d4a2b2f3c9c9cd9206.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninette McTiernan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ninette McTiernan,ou=Management,dc=bitwarden,dc=com", - email: "McTiernN@7bdb7e04a26d459886f8fcaa0d3da8fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=TunLin Pinney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=TunLin Pinney,ou=Administrative,dc=bitwarden,dc=com", - email: "PinneyT@75d6e7c6ef474c5e97f655497c047d1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joshi Cassese,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Joshi Cassese,ou=Janitorial,dc=bitwarden,dc=com", - email: "CasseseJ@b2f73c176c104e9dad8630c2f13ec103.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miroslav StPierre,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Miroslav StPierre,ou=Management,dc=bitwarden,dc=com", - email: "StPierrM@ba8402a4d315465dbb751a651c142686.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sammy Krater,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sammy Krater,ou=Janitorial,dc=bitwarden,dc=com", - email: "KraterS@5b0366ebbad440278f42b372885b0850.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sapphira McCain,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sapphira McCain,ou=Peons,dc=bitwarden,dc=com", - email: "McCainS@daad5c4834094fe8a7fb1d49865ce62a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pierrette Discover,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pierrette Discover,ou=Payroll,dc=bitwarden,dc=com", - email: "DiscoveP@57489e8bbf1e49e181fb589ad5609ed3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ulf Willcox,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ulf Willcox,ou=Management,dc=bitwarden,dc=com", - email: "WillcoxU@fe15495430cf4a14818cfd7560baaf99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmen Trame,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carmen Trame,ou=Administrative,dc=bitwarden,dc=com", - email: "TrameC@fd22571d8af640feaa4dd26e71d415f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cornelia Karim,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cornelia Karim,ou=Peons,dc=bitwarden,dc=com", - email: "KarimC@d0d4dffbb82e4dbdbf12aa7aeb40f542.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ronnie Krikorian,ou=Product Development,dc=bitwarden,dc=com", - email: "KrikoriR@bf9abf080c8e473981cdddb36932f679.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Isabeau Jagodzinski,ou=Human Resources,dc=bitwarden,dc=com", - email: "JagodziI@406a5f63a2784737a47e7de7eb972559.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roobbie Stars,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Roobbie Stars,ou=Payroll,dc=bitwarden,dc=com", - email: "StarsR@c754a8f7d7fa49ebaf2160183ff968df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharee Wynes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sharee Wynes,ou=Product Testing,dc=bitwarden,dc=com", - email: "WynesS@1ca19b62d3954b7bb5f9d3604d3a6b84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shaine Zauhar,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZauharS@e859fe816a744187a2626d82cb0ba406.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fred Hollenbeck,ou=Human Resources,dc=bitwarden,dc=com", - email: "HollenbF@584a3cc4e33b4aba88136456bbc15fd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sil Marano,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sil Marano,ou=Peons,dc=bitwarden,dc=com", - email: "MaranoS@6312a8bfcfc64f4fa1700b6ca4b67dc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonor Maginley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Leonor Maginley,ou=Human Resources,dc=bitwarden,dc=com", - email: "MaginleL@06bce776ad5946a6be606d0392cec3ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicoline Magee,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nicoline Magee,ou=Human Resources,dc=bitwarden,dc=com", - email: "MageeN@98c506bf5a294f7a9f046f2404687224.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Penang Musca,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Penang Musca,ou=Janitorial,dc=bitwarden,dc=com", - email: "MuscaP@0834bcacddfd4229b6702a62e2551569.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cherilynn Campagna,ou=Human Resources,dc=bitwarden,dc=com", - email: "CampagnC@9fbf462dffb84d01b4efd7ea06cb46c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlos Smyth,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carlos Smyth,ou=Payroll,dc=bitwarden,dc=com", - email: "SmythC@964166b8cdd041c68aaae270afb90271.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosalinde Harapiak,ou=Peons,dc=bitwarden,dc=com", - email: "HarapiaR@83e659b7a46148c68a7895067104477c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evania Copello,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Evania Copello,ou=Management,dc=bitwarden,dc=com", - email: "CopelloE@b4622719a7ee45c98d3b8a7b78001ff6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jamie Tschaja,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jamie Tschaja,ou=Peons,dc=bitwarden,dc=com", - email: "TschajaJ@fa528be784314ab7a2c058d1610cf1bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thang Dallaire,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Thang Dallaire,ou=Human Resources,dc=bitwarden,dc=com", - email: "DallairT@dd8de5abce6e4941a35b4e391450cd5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphine Chandra,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Daphine Chandra,ou=Administrative,dc=bitwarden,dc=com", - email: "ChandraD@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ohio Baerg,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ohio Baerg,ou=Payroll,dc=bitwarden,dc=com", - email: "BaergO@20652fd58932448b926b6d40287545d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wiebe Kirouac,ou=Product Development,dc=bitwarden,dc=com", - email: "KirouacW@40d320f39b3b4ec6b2aa4be872b12e34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Othelia Torrealba,ou=Janitorial,dc=bitwarden,dc=com", - email: "TorrealO@a662180554134ff2859bfab952c71e82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Else Brien,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Else Brien,ou=Administrative,dc=bitwarden,dc=com", - email: "BrienE@1f52489263294bdcb74bf08e15dc639b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giampaolo Gu,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Giampaolo Gu,ou=Payroll,dc=bitwarden,dc=com", - email: "GuG@8274c561263849f296aeed4664c2eecc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seven Tregenza,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Seven Tregenza,ou=Peons,dc=bitwarden,dc=com", - email: "TregenzS@b7db7b74741043f1bc70179c65d8c474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rakel Ressner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rakel Ressner,ou=Peons,dc=bitwarden,dc=com", - email: "RessnerR@2a906f1560284502a1b19f87829f93ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Eloisa Meseberg,ou=Product Development,dc=bitwarden,dc=com", - email: "MeseberE@572f2e7cd4c540ba82bdf3291fc77e32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marvell Chapdelaine,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChapdelM@bfbe96af9d94476ba3dcfc88f7bdf41b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Britney Prestia,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Britney Prestia,ou=Peons,dc=bitwarden,dc=com", - email: "PrestiaB@e6c11ea0a5f743ce85492782888f6da6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jonathan Guty,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jonathan Guty,ou=Janitorial,dc=bitwarden,dc=com", - email: "GutyJ@7bf8a8dbfcea42b08cac76925d0219d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Livvy Hoag,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Livvy Hoag,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoagL@9be993140021475092d7ba3a41ede5b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rennie Postolek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rennie Postolek,ou=Janitorial,dc=bitwarden,dc=com", - email: "PostoleR@1866a7eb1fab4dc78251b68a046aa8f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jayesh Liao,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jayesh Liao,ou=Peons,dc=bitwarden,dc=com", - email: "LiaoJ@c8b8d0d540194a31b14e399b8e0ac7ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffany Fougere,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tiffany Fougere,ou=Management,dc=bitwarden,dc=com", - email: "FougereT@6f03f1adf7c149889e4e46274861a90d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darline Swinson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Darline Swinson,ou=Payroll,dc=bitwarden,dc=com", - email: "SwinsonD@8a039a0eb61c4e3eb2caf80b24ceecec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Biddie Scp,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Biddie Scp,ou=Management,dc=bitwarden,dc=com", - email: "ScpB@c536300f550c4bf4aefa167ad65dc37b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colin Irick,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Colin Irick,ou=Product Development,dc=bitwarden,dc=com", - email: "IrickC@3adba4a8d0c54e80a0ce9b1a323e2c6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yueli Clinger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yueli Clinger,ou=Peons,dc=bitwarden,dc=com", - email: "ClingerY@40544cfce21b453a8a348a622d569594.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=WingMan Simonsen,ou=Janitorial,dc=bitwarden,dc=com", - email: "SimonseW@9342f9a1c6b2408b96d8cb0c883aae65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randa Wery,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Randa Wery,ou=Payroll,dc=bitwarden,dc=com", - email: "WeryR@a5373e4d5e704daba1d3dbf799f28ac8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theodor Schute,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Theodor Schute,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchuteT@37c3227000a74816851448e0169c372e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dhiren Simonovich,ou=Human Resources,dc=bitwarden,dc=com", - email: "SimonovD@f4e75eb09db6479c9f66375f6d4f78a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keeley Basa,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Keeley Basa,ou=Management,dc=bitwarden,dc=com", - email: "BasaK@527588b4f1b4422fb6b034c9d08f2576.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mimi Clements,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mimi Clements,ou=Human Resources,dc=bitwarden,dc=com", - email: "ClementM@16269c126bd14ac9a93025afee70dceb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Igor Venguswamy,ou=Product Testing,dc=bitwarden,dc=com", - email: "VenguswI@736366bf947d4889a5087519dbc9eaff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dasi Baader,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dasi Baader,ou=Human Resources,dc=bitwarden,dc=com", - email: "BaaderD@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kerrin Miner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kerrin Miner,ou=Human Resources,dc=bitwarden,dc=com", - email: "MinerK@59a0bbafd91247c6851ee2f7bf13b081.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tania Guimond,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tania Guimond,ou=Peons,dc=bitwarden,dc=com", - email: "GuimondT@177be20238ac48a3b552f8e87a11e1b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ninetta Hendriks,ou=Janitorial,dc=bitwarden,dc=com", - email: "HendrikN@8fd38b10138d41afbb37c8037aaf6377.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hedvige Doran,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hedvige Doran,ou=Management,dc=bitwarden,dc=com", - email: "DoranH@27bcaa4785014c5c91369f5095a41ea2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Aviva Andruzzi,ou=Administrative,dc=bitwarden,dc=com", - email: "AndruzzA@a5d6a2bda97a44e782e3c73dfaefdb63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diahann Nason,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Diahann Nason,ou=Peons,dc=bitwarden,dc=com", - email: "NasonD@8a594838d3824283aa7aa83d94d57d44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leecia Guarino,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leecia Guarino,ou=Administrative,dc=bitwarden,dc=com", - email: "GuarinoL@0c6cf7ff0570476c863c26cda41eed02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kacie Moyano,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kacie Moyano,ou=Management,dc=bitwarden,dc=com", - email: "MoyanoK@053c075cfea943a49184d56a51ed4603.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dicky Guignon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dicky Guignon,ou=Product Testing,dc=bitwarden,dc=com", - email: "GuignonD@d8719dae4bd845a88c36e160ba6edfff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobbie Suwala,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bobbie Suwala,ou=Peons,dc=bitwarden,dc=com", - email: "SuwalaB@ff314e0aa2d4448bb24e44e3596bf8bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melissa Adkinson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Melissa Adkinson,ou=Peons,dc=bitwarden,dc=com", - email: "AdkinsoM@770389a9db90496190b610f069530ad6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgine Lantto,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Georgine Lantto,ou=Peons,dc=bitwarden,dc=com", - email: "LanttoG@5320b952794a47b19c6e19d7dbdf3f99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sonnie Gilles,ou=Janitorial,dc=bitwarden,dc=com", - email: "GillesS@3b8e28899e6c47f3b2c13e23a394c405.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnnie Mayes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Johnnie Mayes,ou=Management,dc=bitwarden,dc=com", - email: "MayesJ@c3e5be71fdd14cfab6350245e2c34701.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Selestina Kozlowski,ou=Payroll,dc=bitwarden,dc=com", - email: "KozlowsS@0854599c24014bdf969745fad472960b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anker Serapin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anker Serapin,ou=Management,dc=bitwarden,dc=com", - email: "SerapinA@13e3dc6812b646519614bfe380e524a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mable Thirugnanam,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mable Thirugnanam,ou=Management,dc=bitwarden,dc=com", - email: "ThirugnM@0f6317f19e074d3eacd8b09d7fafccf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allan Rizewiski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Allan Rizewiski,ou=Management,dc=bitwarden,dc=com", - email: "RizewisA@36bc6957b14948c298f68fedb3e83da0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peng Quantrill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Peng Quantrill,ou=Product Testing,dc=bitwarden,dc=com", - email: "QuantriP@5b8fdd487f414248bc005f588420c84d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Addy Paunins,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Addy Paunins,ou=Janitorial,dc=bitwarden,dc=com", - email: "PauninsA@65678c07e8734c7890d5cf5e76fde9cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Friederike Constable,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Friederike Constable,ou=Human Resources,dc=bitwarden,dc=com", - email: "ConstabF@2a2c0e37e6624d4cbca590425919a502.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Starlene Solodko,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Starlene Solodko,ou=Payroll,dc=bitwarden,dc=com", - email: "SolodkoS@1f2d8d4c2ab74a83be61634a4213379d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verene Ludchen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Verene Ludchen,ou=Janitorial,dc=bitwarden,dc=com", - email: "LudchenV@6fe2230bebbe45c4b4897cbd6f689c6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Curtis Mersch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Curtis Mersch,ou=Janitorial,dc=bitwarden,dc=com", - email: "MerschC@d73ef9502e9045388e89e90d1beb22e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Piper Brander,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Piper Brander,ou=Administrative,dc=bitwarden,dc=com", - email: "BranderP@1365456b38df40e8b356de5ec434637e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bedford Berenbach,ou=Human Resources,dc=bitwarden,dc=com", - email: "BerenbaB@2a0cae73d63c458d9d5daaf71efd50df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozalin Heppes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rozalin Heppes,ou=Product Development,dc=bitwarden,dc=com", - email: "HeppesR@7016343b9c7c41d58eb428f022d1c9f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mirabelle DropBox,ou=Product Testing,dc=bitwarden,dc=com", - email: "DropBoxM@812ac6eec5fc41f6927bb014fa31a1aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cad Ajersch,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cad Ajersch,ou=Human Resources,dc=bitwarden,dc=com", - email: "AjerschC@9f5e302a59d04f65b2aee46abe62578a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=TakWai Wagoner,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=TakWai Wagoner,ou=Administrative,dc=bitwarden,dc=com", - email: "WagonerT@f190d7cfec0941b2829b0757aff4e20f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marlena Ramachandran,ou=Administrative,dc=bitwarden,dc=com", - email: "RamachaM@1d184a251b65443396a8cb4416166285.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carran Rokas,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carran Rokas,ou=Administrative,dc=bitwarden,dc=com", - email: "RokasC@5a771b0086d24bceafcaac2a637338d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idus Wayling,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Idus Wayling,ou=Human Resources,dc=bitwarden,dc=com", - email: "WaylingI@4a7f898eb8954829907d34eeb46064e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryann Somerville,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maryann Somerville,ou=Janitorial,dc=bitwarden,dc=com", - email: "SomerviM@f0291ad4694a4c4989e17e0aede36a7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mildred Dumas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mildred Dumas,ou=Product Testing,dc=bitwarden,dc=com", - email: "DumasM@993e28bbac384cdfa91177630e4e7ee6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilda Bisson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ilda Bisson,ou=Payroll,dc=bitwarden,dc=com", - email: "BissonI@1a3958d626a64b60bde6bf0034916d09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ashien Afkhamebrahimi,ou=Administrative,dc=bitwarden,dc=com", - email: "AfkhameA@8be485b278d14bd09bb99f460e4b8889.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sheilakathryn Seay,ou=Human Resources,dc=bitwarden,dc=com", - email: "SeayS@982a9dc04ec64d818da9977446a91014.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Babb Nicolle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Babb Nicolle,ou=Management,dc=bitwarden,dc=com", - email: "NicolleB@d9c6a4248c7f4569bc85ec9d29b8d415.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karyn Pagani,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Karyn Pagani,ou=Product Testing,dc=bitwarden,dc=com", - email: "PaganiK@4e7c646d43994aefbe621ec9a0481c2c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tricia Rahrer,ou=Product Testing,dc=bitwarden,dc=com", - email: "RahrerT@54ce292eb157498aac7b1683764ec867.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnola MacRae,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Agnola MacRae,ou=Administrative,dc=bitwarden,dc=com", - email: "MacRaeA@0d089601fe8d4842aca2c104051c6a49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tessi Borha,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tessi Borha,ou=Peons,dc=bitwarden,dc=com", - email: "BorhaT@ebda9764758246a4bb15c2161573a88b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonia OToole,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tonia OToole,ou=Product Development,dc=bitwarden,dc=com", - email: "OTooleT@fd421e6c5b5a481fb2a85be843f33d5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Xiaojing Thomaier,ou=Product Testing,dc=bitwarden,dc=com", - email: "ThomaieX@fc97577a08a94700a5a94546b6e00dae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gheorghe Eros,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gheorghe Eros,ou=Management,dc=bitwarden,dc=com", - email: "ErosG@9f934672a4d04b0083671f6289891300.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Halie Dautenhahn,ou=Human Resources,dc=bitwarden,dc=com", - email: "DautenhH@ae44e6b70ddd49aaaf586776542680b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Wladyslaw Emesh,ou=Payroll,dc=bitwarden,dc=com", - email: "EmeshW@0d0f9cb8c311472e8db0a980c10d0d76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robina Chaikowsky,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Robina Chaikowsky,ou=Peons,dc=bitwarden,dc=com", - email: "ChaikowR@b0cf0a9a60924176bbfa4764c3650166.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Veen Wasylyk,ou=Janitorial,dc=bitwarden,dc=com", - email: "WasylykV@c5f103343b7e4b25bc1a4d2fdd71d622.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ursala Wadden,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ursala Wadden,ou=Management,dc=bitwarden,dc=com", - email: "WaddenU@2c712498ce76440fbd827369876f0a82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elysha Bonnefoy,ou=Product Testing,dc=bitwarden,dc=com", - email: "BonnefoE@ad623334663c4947b77eb81b44ea11ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ysabel Verkroost,ou=Janitorial,dc=bitwarden,dc=com", - email: "VerkrooY@11c71c9968bd42f7992b3fededa67ace.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sephira Munsey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sephira Munsey,ou=Product Development,dc=bitwarden,dc=com", - email: "MunseyS@ad8bff5ab5284e148c86c42d0036dd39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neal Astle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Neal Astle,ou=Management,dc=bitwarden,dc=com", - email: "AstleN@eb999d314fc242f4bd9984831c8c9ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marcie Dermardiros,ou=Product Development,dc=bitwarden,dc=com", - email: "DermardM@0cf6d44baded4f949aa6f553554f8d65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vacman Lapostolle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vacman Lapostolle,ou=Management,dc=bitwarden,dc=com", - email: "LapostoV@8dfa40622d12496d8e4833fcf53dcbd6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genna Rappoport,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Genna Rappoport,ou=Management,dc=bitwarden,dc=com", - email: "RappopoG@88d79029cf4a42f2bfb0339dce25f1ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenny Mundi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lenny Mundi,ou=Administrative,dc=bitwarden,dc=com", - email: "MundiL@ee8fbaff37fe43098ee69cb9ce7da138.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jenilee Murdaugh,ou=Product Testing,dc=bitwarden,dc=com", - email: "MurdaugJ@dd6d4c6b1dd34999828d0c453a81ce8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Koji GaudetMontsion,ou=Product Development,dc=bitwarden,dc=com", - email: "GaudetMK@36a375859cdd487ea0bae44e1c40b92f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Iva Pilote,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Iva Pilote,ou=Human Resources,dc=bitwarden,dc=com", - email: "PiloteI@c1ba14a57c91416b9263e6ed2bcbb54e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caridad Spolar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Caridad Spolar,ou=Product Testing,dc=bitwarden,dc=com", - email: "SpolarC@67e1d92e08fe4a64be64c20e9ec9029c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elenore Jatar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elenore Jatar,ou=Payroll,dc=bitwarden,dc=com", - email: "JatarE@f159a3a05dc14db0911c353e03a8ce19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Otha Scheffler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Otha Scheffler,ou=Product Development,dc=bitwarden,dc=com", - email: "SchefflO@80fa9db759cf45d8a9f0fb7fa92c1396.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janot Greenway,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Janot Greenway,ou=Human Resources,dc=bitwarden,dc=com", - email: "GreenwaJ@44fa0b06635a4a55b59882def7b69891.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rowan Hicks,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rowan Hicks,ou=Product Testing,dc=bitwarden,dc=com", - email: "HicksR@a3e17557b4384961a999c1890d509b79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bertina Harkness,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bertina Harkness,ou=Management,dc=bitwarden,dc=com", - email: "HarknesB@850cbba5cfd34abd81656df859ecb75f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carmelita Grimble,ou=Human Resources,dc=bitwarden,dc=com", - email: "GrimbleC@a6e3e90234e3445ebd3b85eaa541b715.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Misbah Desautels,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Misbah Desautels,ou=Payroll,dc=bitwarden,dc=com", - email: "DesauteM@17893613ce1c4281965c9aa5767bbf90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=TakWai Miranda,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=TakWai Miranda,ou=Peons,dc=bitwarden,dc=com", - email: "MirandaT@4a0e814607ef4adf977758aa230a12dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blisse Silverman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Blisse Silverman,ou=Product Testing,dc=bitwarden,dc=com", - email: "SilvermB@ed8c34ba6a20494fbe3722cc1b0ef2bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nong Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", - email: "SaidzadN@3fc70e948ed143488b3a65dc900da1f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Glyn Vasudeva,ou=Payroll,dc=bitwarden,dc=com", - email: "VasudevG@514c4dabf5514f759283b3fa82dba706.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nerty Longchamps,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nerty Longchamps,ou=Management,dc=bitwarden,dc=com", - email: "LongchaN@43f8c4083e544056b3c9e572e90b60ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aniko Jaakkola,ou=Product Development,dc=bitwarden,dc=com", - email: "JaakkolA@4da7d564972d46f2924a6a8ae018f420.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilary Mendonca,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hilary Mendonca,ou=Peons,dc=bitwarden,dc=com", - email: "MendoncH@1b0566a255d64dd68603a81a67ba1612.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivien Seager,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vivien Seager,ou=Payroll,dc=bitwarden,dc=com", - email: "SeagerV@f2fa8ee45795461bbc9031c0c39e2316.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estele Dasch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Estele Dasch,ou=Janitorial,dc=bitwarden,dc=com", - email: "DaschE@f7b0e9e87641416f8b0c6d87c885e484.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joyous Belson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Joyous Belson,ou=Janitorial,dc=bitwarden,dc=com", - email: "BelsonJ@6142a0b680a142ae8cd191e55c3cccf5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zorine OLeary,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zorine OLeary,ou=Janitorial,dc=bitwarden,dc=com", - email: "OLearyZ@a19b5183a0f945f9a17fc014e4433008.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanata Kilby,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kanata Kilby,ou=Peons,dc=bitwarden,dc=com", - email: "KilbyK@340ca4c3449a4788b8cf0565433518e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peder Gaylor,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Peder Gaylor,ou=Janitorial,dc=bitwarden,dc=com", - email: "GaylorP@e2061d2bb26440509313a6c4a2e343f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carter MacMaid,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carter MacMaid,ou=Payroll,dc=bitwarden,dc=com", - email: "MacMaidC@f29a02eb60f740478f80d3c6d60d0269.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Man Dacre,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Man Dacre,ou=Human Resources,dc=bitwarden,dc=com", - email: "DacreM@57ca956887de4eba8ec94ec2d1f1f2b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theresina Torrell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Theresina Torrell,ou=Administrative,dc=bitwarden,dc=com", - email: "TorrellT@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emelda Neely,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Emelda Neely,ou=Human Resources,dc=bitwarden,dc=com", - email: "NeelyE@c66e42835f2044cdbf51d67978ad100e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avinash Kingaby,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Avinash Kingaby,ou=Product Development,dc=bitwarden,dc=com", - email: "KingabyA@7f21c59f99c4477b9018498e8a1c114e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crysta Sloan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Crysta Sloan,ou=Peons,dc=bitwarden,dc=com", - email: "SloanC@97b3948d7aca41509a9b5d6b2dac6af7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Buck Auerbach,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Buck Auerbach,ou=Product Development,dc=bitwarden,dc=com", - email: "AuerbacB@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fallon Windom,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fallon Windom,ou=Payroll,dc=bitwarden,dc=com", - email: "WindomF@fa8dd30a7166419e97723182660d3ed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bernadine Galluzzi,ou=Administrative,dc=bitwarden,dc=com", - email: "GalluzzB@29091675735e43659fad673363e0d6e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sapphira Lacroix,ou=Administrative,dc=bitwarden,dc=com", - email: "LacroixS@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Samir Wesenberg,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Samir Wesenberg,ou=Administrative,dc=bitwarden,dc=com", - email: "WesenbeS@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hildegaard Valko,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hildegaard Valko,ou=Management,dc=bitwarden,dc=com", - email: "ValkoH@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Azmina Irvine,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Azmina Irvine,ou=Peons,dc=bitwarden,dc=com", - email: "IrvineA@68fc69596c6045e19e9dcc172277d770.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cortland Kwa,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cortland Kwa,ou=Administrative,dc=bitwarden,dc=com", - email: "KwaC@08761145d0ee492388590ebc755ffc11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franz Artspssa,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Franz Artspssa,ou=Administrative,dc=bitwarden,dc=com", - email: "ArtspssF@c47a29535a2d448ab99d5532c1ef090b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Annelise KingsleyEvans,ou=Janitorial,dc=bitwarden,dc=com", - email: "KingsleA@e510453d1c104238a1217f13ba1acf7e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marrissa Ronan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marrissa Ronan,ou=Peons,dc=bitwarden,dc=com", - email: "RonanM@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stanislas Sehgal,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stanislas Sehgal,ou=Management,dc=bitwarden,dc=com", - email: "SehgalS@b165e0007c404dd983e15ae72daa2756.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Woody Morocz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Woody Morocz,ou=Payroll,dc=bitwarden,dc=com", - email: "MoroczW@753c6429447d4f10a50d93378fa5dbb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karla Proffit,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karla Proffit,ou=Peons,dc=bitwarden,dc=com", - email: "ProffitK@9d2c13f99e8e4bffb9e0f56905ef0369.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lynwood Nigam,ou=Human Resources,dc=bitwarden,dc=com", - email: "NigamL@714f1bf2d24848f0ad123708496baebc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julianna Varughese,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Julianna Varughese,ou=Management,dc=bitwarden,dc=com", - email: "VarugheJ@2ad53b2716404c5fb1c859b311309552.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elset Neustifter,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elset Neustifter,ou=Peons,dc=bitwarden,dc=com", - email: "NeustifE@c3ac4e6d63bf42469f2e271613915683.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grete Daymond,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Grete Daymond,ou=Peons,dc=bitwarden,dc=com", - email: "DaymondG@e1917d4b55f54cdabe70551a3f731376.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thekla Wokoma,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Thekla Wokoma,ou=Management,dc=bitwarden,dc=com", - email: "WokomaT@9e5927de12b74c838a654764d2be5fec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sika Koller,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sika Koller,ou=Payroll,dc=bitwarden,dc=com", - email: "KollerS@ae0c95aead594ff9b592cce5fd7bcc50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sukey Strauss,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sukey Strauss,ou=Administrative,dc=bitwarden,dc=com", - email: "StraussS@5bc61e2f4a114bf3bbb2a4d0973b7fa5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Icy Foeppel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Icy Foeppel,ou=Product Development,dc=bitwarden,dc=com", - email: "FoeppelI@cbaf8ba54a4e4d25a6793e6fa4afc667.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yongli Barrows,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yongli Barrows,ou=Peons,dc=bitwarden,dc=com", - email: "BarrowsY@4790190082cb4f5abacc6cccbd58144a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xaviera Broca,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Xaviera Broca,ou=Product Development,dc=bitwarden,dc=com", - email: "BrocaX@a0c1a8d85b65449b85c62e8e6a7af57f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Scptest Aucoin,ou=Product Testing,dc=bitwarden,dc=com", - email: "AucoinS@0370bf4c8f0643cdbb05f71db44e6eda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lanie Lowrie,ou=Human Resources,dc=bitwarden,dc=com", - email: "LowrieL@c754a8f7d7fa49ebaf2160183ff968df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Junette Foos,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Junette Foos,ou=Product Development,dc=bitwarden,dc=com", - email: "FoosJ@541638be8f3848afaf3f77f1a6d8871f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashraf Denter,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ashraf Denter,ou=Product Testing,dc=bitwarden,dc=com", - email: "DenterA@1f6908f83168487381e06e15278e01a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amelina Marceau,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amelina Marceau,ou=Management,dc=bitwarden,dc=com", - email: "MarceauA@cfc30ea4a75d4490969ab077dd8e92a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dnsproj Hargreaves,ou=Product Development,dc=bitwarden,dc=com", - email: "HargreaD@96d9bfed88fc4c2fb6c7e654ef7ed3a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yuen Huppert,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yuen Huppert,ou=Product Development,dc=bitwarden,dc=com", - email: "HuppertY@4cf289446e164bf8828133d117ff1a2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vijai Bergeron,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vijai Bergeron,ou=Administrative,dc=bitwarden,dc=com", - email: "BergeroV@5781c2590a3143098713fe135c23c693.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Imtaz Saltamartini,ou=Human Resources,dc=bitwarden,dc=com", - email: "SaltamaI@a47f14ec57a442c6be46361f07eafc1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shaukat Simzer,ou=Product Testing,dc=bitwarden,dc=com", - email: "SimzerS@0d49ff7674854a67967e989b8902a24c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diane Andersen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Diane Andersen,ou=Management,dc=bitwarden,dc=com", - email: "AnderseD@fde818a61bf74c84a96e4a6b3a93254c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jester Mannion,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jester Mannion,ou=Product Testing,dc=bitwarden,dc=com", - email: "MannionJ@b6e18f81bdff48d2be264df85bc74095.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christy Townsel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Christy Townsel,ou=Human Resources,dc=bitwarden,dc=com", - email: "TownselC@8227646c55034cf9b21757fce681b53f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bernardine Sandell,ou=Janitorial,dc=bitwarden,dc=com", - email: "SandellB@3e500286762446ec8a3697b2944efa12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raine Assistance,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Raine Assistance,ou=Payroll,dc=bitwarden,dc=com", - email: "AssistaR@24f13db71b7743f0a2c7b01356e076a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Giampaolo Hoang,ou=Product Testing,dc=bitwarden,dc=com", - email: "HoangG@e02ff45a3d1d4535aaac64a1cea6a68b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ireland Ciochon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ireland Ciochon,ou=Administrative,dc=bitwarden,dc=com", - email: "CiochonI@e6477a83acf9482988792cb439447756.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WaiMan Binner,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=WaiMan Binner,ou=Payroll,dc=bitwarden,dc=com", - email: "BinnerW@8cc6e0388936480cbe8d5339b6e6f58a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruperta Jodoin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ruperta Jodoin,ou=Peons,dc=bitwarden,dc=com", - email: "JodoinR@d3284c9107174588867290b3601e936f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Narrima Tu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Narrima Tu,ou=Human Resources,dc=bitwarden,dc=com", - email: "TuN@42514b410f5644f5ba762f40cca2f3cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Eolanda Archibald,ou=Human Resources,dc=bitwarden,dc=com", - email: "ArchibaE@753deba7c8fd4a2dae8fd98ba21902e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wallie Pietropaolo,ou=Product Testing,dc=bitwarden,dc=com", - email: "PietropW@9a406ba2121745648c9bbba5e667d06f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorianna DeVries,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeVriesL@621ecc47be084539a10e5521c8efa92f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elonore Spieker,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elonore Spieker,ou=Payroll,dc=bitwarden,dc=com", - email: "SpiekerE@4eb1edea9f7c46b6afcdd3596ca826d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pick Santella,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pick Santella,ou=Janitorial,dc=bitwarden,dc=com", - email: "SantellP@769e30d0f6604e35b8172b0e1fcd3695.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynea Newcomb,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lynea Newcomb,ou=Product Development,dc=bitwarden,dc=com", - email: "NewcombL@ca8ef169aecd439b84062b84d007e951.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yukinaga Brander,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yukinaga Brander,ou=Peons,dc=bitwarden,dc=com", - email: "BranderY@b400fcdf725047b698292665de84946c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jerrylee Galloway,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jerrylee Galloway,ou=Peons,dc=bitwarden,dc=com", - email: "GallowaJ@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mia Amarsi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mia Amarsi,ou=Peons,dc=bitwarden,dc=com", - email: "AmarsiM@b1b5d1efd1034316a83f5b2451301ba7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joyous Smecca,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Joyous Smecca,ou=Management,dc=bitwarden,dc=com", - email: "SmeccaJ@0a781c09ef6744b2865e8b65aa244d80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Larkin Baughan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Larkin Baughan,ou=Human Resources,dc=bitwarden,dc=com", - email: "BaughanL@cfc4bf2e36b5400ca6e0b6d8bcad286e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jacquelyn Casten,ou=Human Resources,dc=bitwarden,dc=com", - email: "CastenJ@39b12e29c92b4f519f2ec6d311b9ff35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lillis Tyler,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lillis Tyler,ou=Administrative,dc=bitwarden,dc=com", - email: "TylerL@70d36f0b334a42e2bb084b23945923e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosy Stctest,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rosy Stctest,ou=Human Resources,dc=bitwarden,dc=com", - email: "StctestR@fcbf2ef1cdb340fcb4c052a580a37b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Costas Zanetti,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Costas Zanetti,ou=Administrative,dc=bitwarden,dc=com", - email: "ZanettiC@b1f81108ccde47b8a2df0aba6ea7b365.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Technical Carpentier,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Technical Carpentier,ou=Product Testing,dc=bitwarden,dc=com", - email: "CarpentT@b7e1a16b9cde4b3eaeea7ec65d5e0355.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lanie Geesman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lanie Geesman,ou=Human Resources,dc=bitwarden,dc=com", - email: "GeesmanL@4b02224ed79d49068514723b7495859b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eydie Sliter,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Eydie Sliter,ou=Janitorial,dc=bitwarden,dc=com", - email: "SliterE@c14faf1ad0834d6d9e4b1880a48b9d9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trista Farag,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Trista Farag,ou=Product Development,dc=bitwarden,dc=com", - email: "FaragT@6553f6f625ef4decb458591c6b034f5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chery Greaver,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chery Greaver,ou=Product Testing,dc=bitwarden,dc=com", - email: "GreaverC@76c73cbc758e46b8951ff1931d80f8ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maidisn Dovydaitis,ou=Payroll,dc=bitwarden,dc=com", - email: "DovydaiM@7146b0dabf794daa8f39018535047aad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bernardine Tanniere,ou=Janitorial,dc=bitwarden,dc=com", - email: "TannierB@d54865a52eaf482a9e519ad4811b26bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Griselda Breedlove,ou=Human Resources,dc=bitwarden,dc=com", - email: "BreedloG@5c9b9d5c8575423f84d184975eedd13e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katuscha Huor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Katuscha Huor,ou=Management,dc=bitwarden,dc=com", - email: "HuorK@c47a29535a2d448ab99d5532c1ef090b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bue Satta,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bue Satta,ou=Administrative,dc=bitwarden,dc=com", - email: "SattaB@52c0af83c3aa40458e4bfbccce98b0cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=SvennErik Gaudet,ou=Product Development,dc=bitwarden,dc=com", - email: "GaudetS@503bf02919104cafa1d31446cc7f0505.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Justine Manolios,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Justine Manolios,ou=Administrative,dc=bitwarden,dc=com", - email: "ManolioJ@78f3e2c9e6614873ad31be2d1ce53b23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guenna Sullivan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Guenna Sullivan,ou=Peons,dc=bitwarden,dc=com", - email: "SullivaG@298f1a44ea7f452799d70af39fda7e0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Behnam Cellucci,ou=Janitorial,dc=bitwarden,dc=com", - email: "CelluccB@b3f72c79ff9a44a8bc1416079d9b6469.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Raven Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", - email: "VitagliR@0371c25b461f4ad19b855c4d34af7211.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deb Sehmbey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Deb Sehmbey,ou=Management,dc=bitwarden,dc=com", - email: "SehmbeyD@ae1c8a23e1dd413a9249a93f83a32cff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gavra Skrobanski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gavra Skrobanski,ou=Peons,dc=bitwarden,dc=com", - email: "SkrobanG@708f514c40d3498b80918d7964115131.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gajendra Deibert,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gajendra Deibert,ou=Management,dc=bitwarden,dc=com", - email: "DeibertG@103bd05858c64a81aa3e2443bd1b0b6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yong Nuttall,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yong Nuttall,ou=Product Development,dc=bitwarden,dc=com", - email: "NuttallY@ca2c9c0aaeee459a81fa3d98c982e91a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siew Saiyed,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Siew Saiyed,ou=Product Testing,dc=bitwarden,dc=com", - email: "SaiyedS@3c4dbb6665a7445fa14802eb54e6a9d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Access McCullough,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Access McCullough,ou=Peons,dc=bitwarden,dc=com", - email: "McCulloA@33105c2098dd4c88945d3f8eafc36dc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charmion Sathe,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Charmion Sathe,ou=Management,dc=bitwarden,dc=com", - email: "SatheC@7152bab40da14de79b0ae747b744928c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilow Tools,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wilow Tools,ou=Human Resources,dc=bitwarden,dc=com", - email: "ToolsW@051b892e4657474a87006ab9ebfe221e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=PingKong Beaudin,ou=Product Testing,dc=bitwarden,dc=com", - email: "BeaudinP@0f8613dd82654e89b45a34cb62ca4eb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Florine Matsuzawa,ou=Administrative,dc=bitwarden,dc=com", - email: "MatsuzaF@053cdccb3446469397047f2320d54d6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marylin Fradette,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marylin Fradette,ou=Product Development,dc=bitwarden,dc=com", - email: "FradettM@5208267913f745bcb26fb5107268d9fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bellina Capobianco,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bellina Capobianco,ou=Payroll,dc=bitwarden,dc=com", - email: "CapobiaB@7a8ab7eb659841c5a733e8ce0e681fba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darcee Stegall,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Darcee Stegall,ou=Peons,dc=bitwarden,dc=com", - email: "StegallD@108d9f732ac3490887754db53858df8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Manimozhi Coggins,ou=Human Resources,dc=bitwarden,dc=com", - email: "CogginsM@44cd0ae3ed0a4c44a7cec68159d433e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonie Georgiou,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tonie Georgiou,ou=Administrative,dc=bitwarden,dc=com", - email: "GeorgioT@edf9173cd755418183d71bfbac4d7308.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vahe Jasen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vahe Jasen,ou=Peons,dc=bitwarden,dc=com", - email: "JasenV@5d8558331520489684cb760b329247ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hanh Kalnitsky,ou=Product Testing,dc=bitwarden,dc=com", - email: "KalnitsH@ffa895bc8daa4c0f81a78140a99f5460.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tamqrah Rolls,ou=Human Resources,dc=bitwarden,dc=com", - email: "RollsT@20f6772e8c3743a5846a7cce62bda2f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dien Plambeck,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dien Plambeck,ou=Product Development,dc=bitwarden,dc=com", - email: "PlambecD@8f2a1e9d087d433f9b3d1ae45af01378.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pamella Royle,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pamella Royle,ou=Payroll,dc=bitwarden,dc=com", - email: "RoyleP@1f8860f288da4464a786f1e18a6c5fa9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miro Doolittle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Miro Doolittle,ou=Janitorial,dc=bitwarden,dc=com", - email: "DoolittM@fe184af833734409842cae4ea614a7b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cody Gopisetty,ou=Product Testing,dc=bitwarden,dc=com", - email: "GopisetC@78da39afd8f041eaad04623e643dcf1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cornelle Rahmany,ou=Payroll,dc=bitwarden,dc=com", - email: "RahmanyC@9d21b507c1954275a6eb8b1bf7521c8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esmaria Ligurs,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Esmaria Ligurs,ou=Management,dc=bitwarden,dc=com", - email: "LigursE@5214956f0ee84ad493b8defdd90a23da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jim Gillespie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jim Gillespie,ou=Janitorial,dc=bitwarden,dc=com", - email: "GillespJ@60ffb350fa6740079313430abf25721b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lottie Patoka,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lottie Patoka,ou=Peons,dc=bitwarden,dc=com", - email: "PatokaL@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keven Camillucci,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Keven Camillucci,ou=Product Testing,dc=bitwarden,dc=com", - email: "CamilluK@c6780785bb6e4845848ecc5d7cc41d4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ning Schiegl,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ning Schiegl,ou=Product Development,dc=bitwarden,dc=com", - email: "SchieglN@9c276cf6fc574cef93bc0a3a6cf33a5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sandrine Chaar,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChaarS@bca72db9505940d88abc6d6738cc2f4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Torie Sridaran,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Torie Sridaran,ou=Management,dc=bitwarden,dc=com", - email: "SridaraT@96b8e349b3fa4d379cf18c56e159fe83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jilly Ziai,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jilly Ziai,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZiaiJ@2d4d35e5bd0f4e7dbb9261b02c16e31d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katharyn Herak,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Katharyn Herak,ou=Payroll,dc=bitwarden,dc=com", - email: "HerakK@7bb8f37e955d4f04a6cccdb2666d9559.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmina Slade,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Carmina Slade,ou=Peons,dc=bitwarden,dc=com", - email: "SladeC@94efd997fd9d41de91869cc1beb2c9ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nayneshkumar Marui,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaruiN@17e6e9bce9be4a43964f6f155661a373.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ghislaine Forester,ou=Janitorial,dc=bitwarden,dc=com", - email: "ForesteG@6ba8baad97224f009bad99f9ff3a1b6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=NamKiet Dada,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=NamKiet Dada,ou=Product Testing,dc=bitwarden,dc=com", - email: "DadaN@0834a0a1dc434fff9ff2dcff91cb1428.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nashir SUPPORT,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nashir SUPPORT,ou=Management,dc=bitwarden,dc=com", - email: "SUPPORTN@a882281c1b844c5997ce4401b36f83a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bonni Gehring,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bonni Gehring,ou=Product Development,dc=bitwarden,dc=com", - email: "GehringB@39cad30acf654cd592e26cbcce758e66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agenia Deboer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Agenia Deboer,ou=Payroll,dc=bitwarden,dc=com", - email: "DeboerA@909269ac94be4e5b9ff6809f52b1dda3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatiana Keene,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tatiana Keene,ou=Peons,dc=bitwarden,dc=com", - email: "KeeneT@1567184d0d9f4bd798c9d76aae00fe9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Madonna Rabipour,ou=Product Testing,dc=bitwarden,dc=com", - email: "RabipouM@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ora Trayer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ora Trayer,ou=Human Resources,dc=bitwarden,dc=com", - email: "TrayerO@f96326cbae60420087d9ffc7eb8e7b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malissa Walta,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Malissa Walta,ou=Human Resources,dc=bitwarden,dc=com", - email: "WaltaM@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sage Jones,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sage Jones,ou=Administrative,dc=bitwarden,dc=com", - email: "JonesS@a524fcb1eac4447e976069bb86ce0e2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Homer Boothroyd,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Homer Boothroyd,ou=Administrative,dc=bitwarden,dc=com", - email: "BoothroH@cb353017148241c88e44cd0d35f2614b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oksana Baran,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Oksana Baran,ou=Administrative,dc=bitwarden,dc=com", - email: "BaranO@ae52dcada2674f68a76a2c619d85f261.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gill Stalter,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gill Stalter,ou=Peons,dc=bitwarden,dc=com", - email: "StalterG@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Starlene Andrusiak,ou=Product Development,dc=bitwarden,dc=com", - email: "AndrusiS@005903ef4e084b96990707819b3e2e17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PohSoon Carter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=PohSoon Carter,ou=Human Resources,dc=bitwarden,dc=com", - email: "CarterP@e2851fa9dbce4fe68e4f43ec7a7e00f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Arvin Hrushowy,ou=Payroll,dc=bitwarden,dc=com", - email: "HrushowA@bd88542b35754611b56bc9f67e5f51df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherilynn Munden,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cherilynn Munden,ou=Product Development,dc=bitwarden,dc=com", - email: "MundenC@94dbeedce77e435482fe6d405df83d4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephie Wong,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Stephie Wong,ou=Product Testing,dc=bitwarden,dc=com", - email: "WongS@1d53b6921bf64610aacf1176185cce32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leah Makoid,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Leah Makoid,ou=Product Testing,dc=bitwarden,dc=com", - email: "MakoidL@5191509f48d94538ad03dc3532ab7b16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sisely Cameron,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sisely Cameron,ou=Administrative,dc=bitwarden,dc=com", - email: "CameronS@a70ffb71353245b59b898173a6c12cbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lacie Seddigh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lacie Seddigh,ou=Product Development,dc=bitwarden,dc=com", - email: "SeddighL@50f739422b6c4cf4bf55ca0ab8798c82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Golda Decasper,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Golda Decasper,ou=Peons,dc=bitwarden,dc=com", - email: "DecaspeG@5a068c1bd8fb448da04352f8a1f4d9ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chander Kernahan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Chander Kernahan,ou=Product Development,dc=bitwarden,dc=com", - email: "KernahaC@9bd9714a12714c4ea592781d1d859e3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=HsingJu Delahay,ou=Janitorial,dc=bitwarden,dc=com", - email: "DelahayH@025b753c71134f47b62832fe77834232.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicola Haupt,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nicola Haupt,ou=Product Development,dc=bitwarden,dc=com", - email: "HauptN@0482a6f8c34647958dbfe3e2649faae2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orelle Ifact,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Orelle Ifact,ou=Administrative,dc=bitwarden,dc=com", - email: "IfactO@0f5c9983e32c410788faa72a9c3d7c88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jak Locken,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jak Locken,ou=Product Development,dc=bitwarden,dc=com", - email: "LockenJ@2f5b8316f26f4fc481de13effbbd4ea6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phillis Hermack,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Phillis Hermack,ou=Product Testing,dc=bitwarden,dc=com", - email: "HermackP@bd6dedb04a504f54bb83fff2aa24490b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lorrel Greenfield,ou=Administrative,dc=bitwarden,dc=com", - email: "GreenfiL@bfff9395fbc54b86bbfd4e8957f5bee7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcellina Knighton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marcellina Knighton,ou=Product Development,dc=bitwarden,dc=com", - email: "KnightoM@48f6e6bce8ac404d917503a6c43988fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krystal Runnels,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Krystal Runnels,ou=Janitorial,dc=bitwarden,dc=com", - email: "RunnelsK@7e96834d9f214835923bce90da137a59.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonnnie Steven,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sonnnie Steven,ou=Administrative,dc=bitwarden,dc=com", - email: "StevenS@6942f38ba5484ef1a5acaa3b04cfa3d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catherin Whaley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Catherin Whaley,ou=Janitorial,dc=bitwarden,dc=com", - email: "WhaleyC@912b93525781475c9b76c550ff34b491.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fernanda Michalos,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fernanda Michalos,ou=Payroll,dc=bitwarden,dc=com", - email: "MichaloF@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darline Worpell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Darline Worpell,ou=Management,dc=bitwarden,dc=com", - email: "WorpellD@b0543cf71f3c4487af9098421c49968e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jose Brading,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jose Brading,ou=Administrative,dc=bitwarden,dc=com", - email: "BradingJ@a2fc6a711cba4ec98d716bb4c3e20f83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Garney Wilkinson,ou=Product Testing,dc=bitwarden,dc=com", - email: "WilkinsG@6a7ccf71870148fe8f9ac4d527b4d501.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrie Coverdale,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Adrie Coverdale,ou=Administrative,dc=bitwarden,dc=com", - email: "CoverdaA@649a503dbd264f3ba9e14eb9795c58eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coral Larrigan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Coral Larrigan,ou=Human Resources,dc=bitwarden,dc=com", - email: "LarrigaC@697f4570719c4b51867f3d1f0d4cdafe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sharlene Boleda,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoledaS@c2a7b578a92f4e2b90afb4532b24efa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorrin Derrett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lorrin Derrett,ou=Product Development,dc=bitwarden,dc=com", - email: "DerrettL@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xu Gertridge,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Xu Gertridge,ou=Product Development,dc=bitwarden,dc=com", - email: "GertridX@1d23264dcd2241baa77e90f901c50315.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dhiren Arwakhi,ou=Product Development,dc=bitwarden,dc=com", - email: "ArwakhiD@a72a30514dd84739adf3beae6a3c71bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlisle Wokoma,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carlisle Wokoma,ou=Management,dc=bitwarden,dc=com", - email: "WokomaC@098e681e17464ddaaa4b5aa6ff614551.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Parnell Scanlan,ou=Human Resources,dc=bitwarden,dc=com", - email: "ScanlanP@31c61f2c8f9340ee8037a78602dae0c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatsuya Standel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tatsuya Standel,ou=Management,dc=bitwarden,dc=com", - email: "StandelT@0f34709435f94e12b6b00a3cb3cfaead.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirline Dahl,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shirline Dahl,ou=Peons,dc=bitwarden,dc=com", - email: "DahlS@98febd962501443b89a9e8bfacf12a9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mandie Tota,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mandie Tota,ou=Administrative,dc=bitwarden,dc=com", - email: "TotaM@cbe72b7447d84e29bd9c25b290dcf2cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolea Garee,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nicolea Garee,ou=Management,dc=bitwarden,dc=com", - email: "GareeN@b01b1bd56e3f464896b7135dd1b7da99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geraldine Meehan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Geraldine Meehan,ou=Administrative,dc=bitwarden,dc=com", - email: "MeehanG@926986a7a9224c51b55271804ad9a9d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=ShingChi Ciolfi,ou=Product Development,dc=bitwarden,dc=com", - email: "CiolfiS@49c1a115ac8b439f9ab99f302ba59751.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mickie Budhram,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mickie Budhram,ou=Janitorial,dc=bitwarden,dc=com", - email: "BudhramM@08eacc9f081b46aa9b5cc2682b8df342.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faustina Severinac,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Faustina Severinac,ou=Management,dc=bitwarden,dc=com", - email: "SeverinF@679765b52d394d7ba89a59f3e71121ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roy Zaloker,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roy Zaloker,ou=Administrative,dc=bitwarden,dc=com", - email: "ZalokerR@cfa9cc9c255049a290ed0760c3f25871.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karel Padiou,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karel Padiou,ou=Peons,dc=bitwarden,dc=com", - email: "PadiouK@28fe718e73d141bb8aec4e57b4f0fed7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=BettyAnne Grondin,ou=Product Testing,dc=bitwarden,dc=com", - email: "GrondinB@03a260d7792e49df9dcbf44341e41013.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Taiwana Rhodes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Taiwana Rhodes,ou=Management,dc=bitwarden,dc=com", - email: "RhodesT@9fd53b74c90b49729f78c608ecaf52b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hedi Cicci,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hedi Cicci,ou=Human Resources,dc=bitwarden,dc=com", - email: "CicciH@043d56c5a9b5484da04c37031ff21f8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gabriellia Falbee,ou=Janitorial,dc=bitwarden,dc=com", - email: "FalbeeG@8f6cef22f95545eb970358eaab952ea6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valaria Limerick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Valaria Limerick,ou=Product Testing,dc=bitwarden,dc=com", - email: "LimericV@47da44f4e5614af2b9a07b9460a560de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oralia Hoggan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Oralia Hoggan,ou=Management,dc=bitwarden,dc=com", - email: "HogganO@95c37524ee9249b9a3a0c719599d89eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leyla Parham,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leyla Parham,ou=Management,dc=bitwarden,dc=com", - email: "ParhamL@cb7ed07b9f1d4c06aa0fee9e92377dab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Derick Paar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Derick Paar,ou=Peons,dc=bitwarden,dc=com", - email: "PaarD@f26f4cdf87cd4a378442f5716c6bc0c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dau Peart,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dau Peart,ou=Peons,dc=bitwarden,dc=com", - email: "PeartD@5a071e6ada864fbfb27301166664af38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danell Kapp,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Danell Kapp,ou=Product Testing,dc=bitwarden,dc=com", - email: "KappD@6f354943caba4900b471133a6c94292f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pen Marshall,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pen Marshall,ou=Product Development,dc=bitwarden,dc=com", - email: "MarshalP@f916ce27ce81484dbb62ae97089dfb33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jacalyn Dodgson,ou=Human Resources,dc=bitwarden,dc=com", - email: "DodgsonJ@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kary Soo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kary Soo,ou=Management,dc=bitwarden,dc=com", - email: "SooK@a2a19c35fa314876bc5a514bdc56cf5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dhanvinder Clipperton,ou=Human Resources,dc=bitwarden,dc=com", - email: "ClipperD@b9a2e7612aef443ebd9966e99249a73c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiem Pracht,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kiem Pracht,ou=Payroll,dc=bitwarden,dc=com", - email: "PrachtK@e677741303634ac2804273adce139081.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dominga Senyildiz,ou=Product Testing,dc=bitwarden,dc=com", - email: "SenyildD@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vick Marleau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vick Marleau,ou=Janitorial,dc=bitwarden,dc=com", - email: "MarleauV@9833226d7baa41fe919293bebd42f796.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrianna Bruder,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Adrianna Bruder,ou=Management,dc=bitwarden,dc=com", - email: "BruderA@ba870021396f4a5691ef47f553098ab0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isabelita Swinney,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Isabelita Swinney,ou=Peons,dc=bitwarden,dc=com", - email: "SwinneyI@a67fe9a0cfe2484f900b487d2bc8fbf2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fereidoon Shypski,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShypskiF@5e72004cd5c54ab885896ad64d562293.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelcey Lee,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kelcey Lee,ou=Administrative,dc=bitwarden,dc=com", - email: "LeeK@8349ed265bc74cb3b9674a8fb6ff8c4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandy Koellner,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brandy Koellner,ou=Janitorial,dc=bitwarden,dc=com", - email: "KoellneB@81a5522a2a9d4dc49f8fbc517ee60b13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selie Schedulers,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Selie Schedulers,ou=Janitorial,dc=bitwarden,dc=com", - email: "SchedulS@59fd7fd5c9b94eff897d05888fea4340.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Addons Dieter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Addons Dieter,ou=Product Development,dc=bitwarden,dc=com", - email: "DieterA@c17ef8e190ef47c58a216f111cfa28dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lesly Willett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lesly Willett,ou=Peons,dc=bitwarden,dc=com", - email: "WillettL@1a46c6e7f89a43fabb02c5bfef5febd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coleman Wolski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Coleman Wolski,ou=Product Development,dc=bitwarden,dc=com", - email: "WolskiC@dff7261f6b3e4cf09c06f21dd7c7d26c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shutterbug Lauson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shutterbug Lauson,ou=Management,dc=bitwarden,dc=com", - email: "LausonS@ea44c2476f934218bf3d758975e567c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aveline Seetharaman,ou=Janitorial,dc=bitwarden,dc=com", - email: "SeetharA@58d046473fe24d0d8bf6f510239a1102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nancy Oziskender,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nancy Oziskender,ou=Payroll,dc=bitwarden,dc=com", - email: "OziskenN@d6177daa79a64f8eb62f8d79f0c41ce3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doloritas Flowers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Doloritas Flowers,ou=Management,dc=bitwarden,dc=com", - email: "FlowersD@6a1a5eea63134321b540021379837737.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veleta Lun,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Veleta Lun,ou=Payroll,dc=bitwarden,dc=com", - email: "LunV@79eafeb75c844d3eaf6f5efd1b8c0977.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aila Speaker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aila Speaker,ou=Product Testing,dc=bitwarden,dc=com", - email: "SpeakerA@22b676e4c7dd4fe79235ea7758399705.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Scptest Menna,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Scptest Menna,ou=Product Testing,dc=bitwarden,dc=com", - email: "MennaS@ae33417800b74b1b8daa7b39ed5fdc57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madeleine Goss,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Madeleine Goss,ou=Administrative,dc=bitwarden,dc=com", - email: "GossM@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thuy Sullivan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Thuy Sullivan,ou=Product Development,dc=bitwarden,dc=com", - email: "SullivaT@f260a92a20974e44926d8337feae7384.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheridan Sandner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sheridan Sandner,ou=Product Development,dc=bitwarden,dc=com", - email: "SandnerS@7022b955bef74762989f3e8241ec17a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malory Groff,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Malory Groff,ou=Payroll,dc=bitwarden,dc=com", - email: "GroffM@83a8c1265a2948b59ee00a06831fe99b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Armine livinston,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Armine livinston,ou=Administrative,dc=bitwarden,dc=com", - email: "livinstA@eb2999c8fa284a3f8c9f7cd764a9ece1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shaukat Hankins,ou=Human Resources,dc=bitwarden,dc=com", - email: "HankinsS@72d3ee658b6a43d28d374f5d8eed91ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anibal Ribakovs,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anibal Ribakovs,ou=Management,dc=bitwarden,dc=com", - email: "RibakovA@cd4acec6c2bb4065b089eb7a74e04db1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tao Kardomateas,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tao Kardomateas,ou=Administrative,dc=bitwarden,dc=com", - email: "KardomaT@f8af09b819014024bd18d58f41da44cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Melisenda Gultekin,ou=Product Development,dc=bitwarden,dc=com", - email: "GultekiM@8053af09c938471f9ad09445e16f631c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mommy Neto,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mommy Neto,ou=Human Resources,dc=bitwarden,dc=com", - email: "NetoM@9f63e83dc7124376aa907e1f46aa8250.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Goldwyn Lister,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Goldwyn Lister,ou=Administrative,dc=bitwarden,dc=com", - email: "ListerG@beba94b4890142a087b66411df53d92a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jesus Fraser,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jesus Fraser,ou=Payroll,dc=bitwarden,dc=com", - email: "FraserJ@8b756558381d4f26bb25a8056450ac9f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabina Davison,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sabina Davison,ou=Peons,dc=bitwarden,dc=com", - email: "DavisonS@daa1e24c0eb048798f1d4ee756ce865c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aniko Scarborough,ou=Product Testing,dc=bitwarden,dc=com", - email: "ScarborA@7662f3c56c8f438dafc48f46ab18bd48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tawnya Thiel,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThielT@a41e77135c5346be96b465a7d5d633c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ohio Leong,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ohio Leong,ou=Peons,dc=bitwarden,dc=com", - email: "LeongO@4664a2b63b254ce9b3d95a8c77ae6508.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helma Fulford,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Helma Fulford,ou=Janitorial,dc=bitwarden,dc=com", - email: "FulfordH@53f2a179085949f9929a0abb8a150cb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wendy Ashford,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wendy Ashford,ou=Product Development,dc=bitwarden,dc=com", - email: "AshfordW@f409013fa2954a03ae4501e12af3b06b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ricki Schadan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ricki Schadan,ou=Administrative,dc=bitwarden,dc=com", - email: "SchadanR@b8ae2136bfb44521a9e99c5d81fc17f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolee McClintock,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carolee McClintock,ou=Product Development,dc=bitwarden,dc=com", - email: "McClintC@27eb42f1314e46fc8bcbc24a42e4598e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fara Phifer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fara Phifer,ou=Payroll,dc=bitwarden,dc=com", - email: "PhiferF@772d4127578e47699e9b196a161e8a46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jennee Jasmin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jennee Jasmin,ou=Administrative,dc=bitwarden,dc=com", - email: "JasminJ@5b146323be6643e092b53ceb21e379e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yatish Streng,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yatish Streng,ou=Janitorial,dc=bitwarden,dc=com", - email: "StrengY@7d2914d75d254468950490f34fff79f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mair Basladynski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mair Basladynski,ou=Product Testing,dc=bitwarden,dc=com", - email: "BasladyM@d4b58fe2bfde4032862e5386c0e20902.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karyn Bender,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Karyn Bender,ou=Administrative,dc=bitwarden,dc=com", - email: "BenderK@c26e885b4f4a47e7befaa9bedce07d04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beate Ahlberg,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Beate Ahlberg,ou=Payroll,dc=bitwarden,dc=com", - email: "AhlbergB@b064b72d68464a06b3938f3f2abab372.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roberto Binder,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Roberto Binder,ou=Human Resources,dc=bitwarden,dc=com", - email: "BinderR@b821fa0513d7408ebbfe73c94767102c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miro Sparksman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Miro Sparksman,ou=Janitorial,dc=bitwarden,dc=com", - email: "SparksmM@4c2706f148d24c978855dfe00601ca6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ethan Salazar,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ethan Salazar,ou=Human Resources,dc=bitwarden,dc=com", - email: "SalazarE@652b9ea2520d46da8b923406e54cf707.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elza Meubus,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Elza Meubus,ou=Human Resources,dc=bitwarden,dc=com", - email: "MeubusE@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=GokulChandra Vandagriff,ou=Product Development,dc=bitwarden,dc=com", - email: "VandagrG@9401b30c07d641ad85c9d343e51620fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phyllida Peng,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Phyllida Peng,ou=Product Development,dc=bitwarden,dc=com", - email: "PengP@3b5097c7d33f4dd5b850d3928945e3fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leslie Wagoner,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leslie Wagoner,ou=Administrative,dc=bitwarden,dc=com", - email: "WagonerL@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erning Dmsrtime,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Erning Dmsrtime,ou=Peons,dc=bitwarden,dc=com", - email: "DmsrtimE@984a33b6fcea4c229307cb5a753888dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frederica Barel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Frederica Barel,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarelF@46b9c76000e34e4685e646b4677138bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilkin Coupal,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wilkin Coupal,ou=Management,dc=bitwarden,dc=com", - email: "CoupalW@4e301d4682ea4f23b3797582ef8f2c42.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nancie BlakeKnox,ou=Peons,dc=bitwarden,dc=com", - email: "BlakeKnN@e1893d7ef9564395a0b1b816030adce2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Millie Kenol,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Millie Kenol,ou=Payroll,dc=bitwarden,dc=com", - email: "KenolM@d37901086196495ab5d77980959c7f35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miklos Menzies,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Miklos Menzies,ou=Product Testing,dc=bitwarden,dc=com", - email: "MenziesM@671de5f2478346f0a1da3dfa3a3ee0e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Xantippe Ohmayer,ou=Janitorial,dc=bitwarden,dc=com", - email: "OhmayerX@39abbceda00e41858d81e19cc3b490e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WenKai Peleato,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=WenKai Peleato,ou=Payroll,dc=bitwarden,dc=com", - email: "PeleatoW@c2ddaecf94964357886149e7833e3267.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChoLun Simser,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=ChoLun Simser,ou=Janitorial,dc=bitwarden,dc=com", - email: "SimserC@52375a276d8e4116b12e682b77fe0b05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minerva Paulett,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Minerva Paulett,ou=Janitorial,dc=bitwarden,dc=com", - email: "PaulettM@0b6df1c2b33a45858d2011f826942879.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Asia Aleong,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Asia Aleong,ou=Product Development,dc=bitwarden,dc=com", - email: "AleongA@961ff82aab9f4b0fa089f45c48ac1ddb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xantippe Sydor,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Xantippe Sydor,ou=Product Development,dc=bitwarden,dc=com", - email: "SydorX@c228283c030a4839b23b0d238ebb64f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devora Bunker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Devora Bunker,ou=Peons,dc=bitwarden,dc=com", - email: "BunkerD@3f08eaca8cce46c8b04d6660b5312b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hudai Dallago,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hudai Dallago,ou=Product Testing,dc=bitwarden,dc=com", - email: "DallagoH@a85c3929256747e4a90337c3ba0f9538.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pamella Herman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pamella Herman,ou=Janitorial,dc=bitwarden,dc=com", - email: "HermanP@bbf9c04e50a241698a5503a647ae8281.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Preston Marco,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Preston Marco,ou=Administrative,dc=bitwarden,dc=com", - email: "MarcoP@232ca6cb0ac84bf8be33192693a35ba0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sybyl McIver,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sybyl McIver,ou=Human Resources,dc=bitwarden,dc=com", - email: "McIverS@a91ef43faba348c6bf66e409d4fd354b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fidelia Mehta,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fidelia Mehta,ou=Peons,dc=bitwarden,dc=com", - email: "MehtaF@4f5cf3c68fb84cb583c3e869db2086bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tom Boose,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tom Boose,ou=Human Resources,dc=bitwarden,dc=com", - email: "BooseT@5412480f8c82450aa52600d4e3893c99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Valentine Allahyari,ou=Human Resources,dc=bitwarden,dc=com", - email: "AllahyaV@2941b888378b4b868ece831a080444c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorrel Manno,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lorrel Manno,ou=Product Testing,dc=bitwarden,dc=com", - email: "MannoL@78bde8bce82c4d1dbca4b21bf7784813.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacee Finnie,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Stacee Finnie,ou=Administrative,dc=bitwarden,dc=com", - email: "FinnieS@01d98aa12a484f229c38604f374f5102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clari Beshai,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clari Beshai,ou=Management,dc=bitwarden,dc=com", - email: "BeshaiC@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lincoln Sasaki,ou=Product Development,dc=bitwarden,dc=com", - email: "SasakiL@222d66226d1243a5a6fdebd55db86add.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=AnnLorrain Sompong,ou=Product Development,dc=bitwarden,dc=com", - email: "SompongA@b1a7e68b81414ad4a30bf5ba89ef486b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clovis Banigan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Clovis Banigan,ou=Janitorial,dc=bitwarden,dc=com", - email: "BaniganC@b481e78cdf2a4d77b00e3eea0c5aaf43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=VanKing Jarzemsky,ou=Administrative,dc=bitwarden,dc=com", - email: "JarzemsV@7a9336a35e1e452eaecd685206f3ad31.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherin Shedd,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cherin Shedd,ou=Human Resources,dc=bitwarden,dc=com", - email: "SheddC@8687f426e30946c59d63176bb5ab09a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivonne Whiting,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ivonne Whiting,ou=Product Development,dc=bitwarden,dc=com", - email: "WhitingI@a3cf3eb4e8384906b167f943f1276871.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardra Gemmill,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ardra Gemmill,ou=Payroll,dc=bitwarden,dc=com", - email: "GemmillA@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Donielle OrgrenStreb,ou=Product Development,dc=bitwarden,dc=com", - email: "OrgrenSD@be56d01786b846e3aa64454147150e23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=ThanhHung Avery,ou=Janitorial,dc=bitwarden,dc=com", - email: "AveryT@9dae1c3f52e14b249ec881c64e974c27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arthur Koch,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Arthur Koch,ou=Product Testing,dc=bitwarden,dc=com", - email: "KochA@f3364372be9a4d4583e3d68752e6c188.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ursuline Wasmeier,ou=Payroll,dc=bitwarden,dc=com", - email: "WasmeieU@566acb80e4d1481e9b6326f02804831d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonie Begley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leonie Begley,ou=Product Development,dc=bitwarden,dc=com", - email: "BegleyL@08b747ef36c043dc831ace544361b178.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanessa Thum,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vanessa Thum,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThumV@c41cc1e3b0d842d3bbad24db018def06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ursula ODwyer,ou=Product Testing,dc=bitwarden,dc=com", - email: "ODwyerU@2bc9bfa10bf3492f87ecd4ba4a4d9a54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hugh Iannozzi,ou=Product Testing,dc=bitwarden,dc=com", - email: "IannozzH@93bb2a719868497094d1e687804f1eb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rey Boyer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rey Boyer,ou=Management,dc=bitwarden,dc=com", - email: "BoyerR@2b46da502e6546eaa33fd138fef00ac3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nanete Tomlinson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nanete Tomlinson,ou=Peons,dc=bitwarden,dc=com", - email: "TomlinsN@34766460128a4ee582041f543b9bd242.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorrie Lamy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lorrie Lamy,ou=Administrative,dc=bitwarden,dc=com", - email: "LamyL@6882bb306b30484eac03893eca277bd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donal DorisHampton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Donal DorisHampton,ou=Administrative,dc=bitwarden,dc=com", - email: "DorisHaD@b4ec3c43774d4a4baac80f55d5751b78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonardo Palasek,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leonardo Palasek,ou=Product Development,dc=bitwarden,dc=com", - email: "PalasekL@5406f1a2a8b3462dade05957b7fb225f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhodie Seery,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rhodie Seery,ou=Payroll,dc=bitwarden,dc=com", - email: "SeeryR@069bff2c38b341aca5c431f6580b51ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leonas Salomon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leonas Salomon,ou=Product Development,dc=bitwarden,dc=com", - email: "SalomonL@2469cbc5a5404c8d818a74f1684adb09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibel McKnight,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sibel McKnight,ou=Administrative,dc=bitwarden,dc=com", - email: "McKnighS@700c5d89fc4943989681c73525ca7752.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anabel Borel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Anabel Borel,ou=Product Testing,dc=bitwarden,dc=com", - email: "BorelA@a8b705848c504748848b8aba539736f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milo Gravitte,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Milo Gravitte,ou=Human Resources,dc=bitwarden,dc=com", - email: "GravittM@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katha Noddin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Katha Noddin,ou=Product Testing,dc=bitwarden,dc=com", - email: "NoddinK@c7211550a0e54b11899929b0d44158ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jami Baab,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jami Baab,ou=Human Resources,dc=bitwarden,dc=com", - email: "BaabJ@b8d27f90baae497697af4ac7133d782a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verna Petree,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Verna Petree,ou=Product Development,dc=bitwarden,dc=com", - email: "PetreeV@726a4125a7d94ad38a1dc92c2882e4bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adelia Leibich,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Adelia Leibich,ou=Administrative,dc=bitwarden,dc=com", - email: "LeibichA@1d233bc1764446c09e064881135ef88f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jann Marquart,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jann Marquart,ou=Payroll,dc=bitwarden,dc=com", - email: "MarquarJ@38e93300da7643e5ac4629316f76753a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirjam Cleary,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mirjam Cleary,ou=Peons,dc=bitwarden,dc=com", - email: "ClearyM@3498d55f6fdc4726b3007b6eece0bd27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cissiee Osborne,ou=Product Testing,dc=bitwarden,dc=com", - email: "OsborneC@d5bcdf8a8a07400f8fa8236d15a8595d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anselma Sabat,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anselma Sabat,ou=Human Resources,dc=bitwarden,dc=com", - email: "SabatA@3b5bce68a3bf4abeb7101b36a2d13246.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ursola Zagorski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ursola Zagorski,ou=Payroll,dc=bitwarden,dc=com", - email: "ZagorskU@dff7cc6e7ee04fe98e5fdfa8cb0e3b40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gael Cho,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gael Cho,ou=Peons,dc=bitwarden,dc=com", - email: "ChoG@f1a2b4c9009a4b058da6b6f5ee233883.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jacqueline Gallo,ou=Janitorial,dc=bitwarden,dc=com", - email: "GalloJ@a767b0f434554c6788caabae2da7ee65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kris Rotzjean,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kris Rotzjean,ou=Administrative,dc=bitwarden,dc=com", - email: "RotzjeaK@2f4e34ec099849fb8849d25db17f5d45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zaneta Wun,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zaneta Wun,ou=Product Development,dc=bitwarden,dc=com", - email: "WunZ@e17fea6e1c564882ab9a476cab0dc5ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Guanyun McAdorey,ou=Administrative,dc=bitwarden,dc=com", - email: "McAdoreG@85bf85b5b4ba4460993e464e81ad3a57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ania Scalabrini,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ania Scalabrini,ou=Administrative,dc=bitwarden,dc=com", - email: "ScalabrA@6fd7a8381bd04762a7cac00d6e4b256a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andras Maruszak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Andras Maruszak,ou=Human Resources,dc=bitwarden,dc=com", - email: "MaruszaA@57ddaea27bdd4c0a9e0fed339dc1b4ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tab Kalair,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tab Kalair,ou=Peons,dc=bitwarden,dc=com", - email: "KalairT@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nadya Speer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nadya Speer,ou=Administrative,dc=bitwarden,dc=com", - email: "SpeerN@cb407f95d05e476fad36365e35d9b1be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Turus Bisson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Turus Bisson,ou=Payroll,dc=bitwarden,dc=com", - email: "BissonT@d3a0338aa0d94b49aa2150a5e12f9d53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ioan Naylor,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ioan Naylor,ou=Payroll,dc=bitwarden,dc=com", - email: "NaylorI@6de603ec7e3b4b039bef3c781848cf1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeroen Fleurima,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jeroen Fleurima,ou=Peons,dc=bitwarden,dc=com", - email: "FleurimJ@b4c1c06974d240f190a6b3bfe9fdd375.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lacy Arai,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lacy Arai,ou=Janitorial,dc=bitwarden,dc=com", - email: "AraiL@341957991cd048f28879d34846561132.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sylvain Hickin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sylvain Hickin,ou=Payroll,dc=bitwarden,dc=com", - email: "HickinS@c282cf49f79d4078a773a4da0cf212a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margaret Begley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Margaret Begley,ou=Product Testing,dc=bitwarden,dc=com", - email: "BegleyM@b4ae1434dbd74e3f9fda915972e536aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vick Lovegrove,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vick Lovegrove,ou=Administrative,dc=bitwarden,dc=com", - email: "LovegroV@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bob Acres,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bob Acres,ou=Product Development,dc=bitwarden,dc=com", - email: "AcresB@392576165dfe4cafb8fa1d35ef39e725.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dahlia Oost,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dahlia Oost,ou=Management,dc=bitwarden,dc=com", - email: "OostD@b4277bbde59048f39a27a7d14145a06f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Claudie Hafiz,ou=Product Testing,dc=bitwarden,dc=com", - email: "HafizC@6e374f55c08a4f9ea474b0f388c5e697.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Reginald Cucuzzella,ou=Administrative,dc=bitwarden,dc=com", - email: "CucuzzeR@7408ed731222450eb6a92df81540fc99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ianthe Yum,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ianthe Yum,ou=Management,dc=bitwarden,dc=com", - email: "YumI@8ded8bbd82ce42aeaa0782da2c17da44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Judi Adamo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Judi Adamo,ou=Janitorial,dc=bitwarden,dc=com", - email: "AdamoJ@f3ac3ffab8324597a10f7fe805a2cec5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Robinett Grzegorek,ou=Human Resources,dc=bitwarden,dc=com", - email: "GrzegorR@e0413af3109149e7b81465a2065b0fa5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Filibert Pachulski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Filibert Pachulski,ou=Peons,dc=bitwarden,dc=com", - email: "PachulsF@a65426aa4f1140e2b6bd4259b9826369.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmon Kroeger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carmon Kroeger,ou=Management,dc=bitwarden,dc=com", - email: "KroegerC@db74de76c5374bf883b5c0e4951495b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=ZehirCharlie Rashidi,ou=Administrative,dc=bitwarden,dc=com", - email: "RashidiZ@8f2a1e9d087d433f9b3d1ae45af01378.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camellia Gavidia,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Camellia Gavidia,ou=Administrative,dc=bitwarden,dc=com", - email: "GavidiaC@79642b513783409691dc1a7cf728c883.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fqa Abrams,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fqa Abrams,ou=Product Development,dc=bitwarden,dc=com", - email: "AbramsF@d8f66ef1670a411fb693fa464f75d8f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pepita Houston,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pepita Houston,ou=Janitorial,dc=bitwarden,dc=com", - email: "HoustonP@73f0541d56094177a29a390ca43c2beb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Harmi Yahyapour,ou=Product Development,dc=bitwarden,dc=com", - email: "YahyapoH@fff697695b6a47fc8837138d253e90f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Horst Becan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Horst Becan,ou=Janitorial,dc=bitwarden,dc=com", - email: "BecanH@3a9565077b2a44b684e188fe7f0cd0a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ericha Akai,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ericha Akai,ou=Product Development,dc=bitwarden,dc=com", - email: "AkaiE@ead1ebc11a6a43c4a4973f8778d92cf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mina Amato,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mina Amato,ou=Payroll,dc=bitwarden,dc=com", - email: "AmatoM@9ce658881e8c455194b88b370a33621e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katherine Ostarello,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Katherine Ostarello,ou=Management,dc=bitwarden,dc=com", - email: "OstarelK@f374f272c7c44ad9bdc88a75e3e22f88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mario Bice,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mario Bice,ou=Product Testing,dc=bitwarden,dc=com", - email: "BiceM@01d519b2c3cc4b749d2c74cc03a56716.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Srinivas Rolls,ou=Product Testing,dc=bitwarden,dc=com", - email: "RollsS@4781f85f1c214dff92b5f07239287faa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Othelia Radford,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Othelia Radford,ou=Payroll,dc=bitwarden,dc=com", - email: "RadfordO@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meta Todloski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Meta Todloski,ou=Payroll,dc=bitwarden,dc=com", - email: "TodloskM@f8653ba06ad34c7aaa0ed21af0cf833f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tabbitha Hershberger,ou=Janitorial,dc=bitwarden,dc=com", - email: "HershbeT@014bccc9396c433988180fbafa28a36d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jacinda Gadzinowski,ou=Janitorial,dc=bitwarden,dc=com", - email: "GadzinoJ@3beca394b1bb4c3c97c7025a5ba48c80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Riyaz Georges,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Riyaz Georges,ou=Administrative,dc=bitwarden,dc=com", - email: "GeorgesR@5c4a37a22c51408494bd04d688d4cd1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teddi Connell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Teddi Connell,ou=Janitorial,dc=bitwarden,dc=com", - email: "ConnellT@cb0fd14a62264345a0844bec81676fd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huong OKelly,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Huong OKelly,ou=Human Resources,dc=bitwarden,dc=com", - email: "OKellyH@1babd519a8034b2d99c4603db1b7c5f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kokkhiang Instal,ou=Payroll,dc=bitwarden,dc=com", - email: "InstalK@e460ad35028e4180bb22b6ed74c22cc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maddalena Dillard,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maddalena Dillard,ou=Payroll,dc=bitwarden,dc=com", - email: "DillardM@bc7abecae5134db19820cef4bc298003.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amandip Lescot,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Amandip Lescot,ou=Product Testing,dc=bitwarden,dc=com", - email: "LescotA@b01d6fb6ac3e4e799eb80fd2e4551510.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fletcher Buckalew,ou=Janitorial,dc=bitwarden,dc=com", - email: "BuckaleF@a6b1af155ea940a7a1d1c1985151458a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verinder Chiou,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Verinder Chiou,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChiouV@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helmut Asdel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Helmut Asdel,ou=Janitorial,dc=bitwarden,dc=com", - email: "AsdelH@fdc4e6b69a144dc99f4eca6e90ea8737.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vital Therrien,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vital Therrien,ou=Human Resources,dc=bitwarden,dc=com", - email: "TherrieV@6f8fc3d9f81d4922bdbfea87952e7cbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ileana Bottomley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ileana Bottomley,ou=Payroll,dc=bitwarden,dc=com", - email: "BottomlI@7a5d1ad8eb2448ff80683da3323f6f84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julian Condurelis,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Julian Condurelis,ou=Management,dc=bitwarden,dc=com", - email: "CondureJ@f648ab5b740d44ca8b0dc821ba7c94a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Wilhelmus Lupher,ou=Payroll,dc=bitwarden,dc=com", - email: "LupherW@a3d3bf444e8449f58c24d388c9e4253b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nashib Mikulka,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nashib Mikulka,ou=Payroll,dc=bitwarden,dc=com", - email: "MikulkaN@a21f8badf17c4b4dbce73be0734b9d87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Payroll Dantzler,ou=Janitorial,dc=bitwarden,dc=com", - email: "DantzleP@44c07bc2a46540df9dcdebec16008404.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Brena Foxworthy,ou=Human Resources,dc=bitwarden,dc=com", - email: "FoxwortB@e358162fa0384d918adc01a68c3773f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristie Nill,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cristie Nill,ou=Product Development,dc=bitwarden,dc=com", - email: "NillC@0573bd112aca464284b0d9eac2753606.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ibrahim Maheu,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaheuI@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oliy Maloney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Oliy Maloney,ou=Administrative,dc=bitwarden,dc=com", - email: "MaloneyO@9394232bb6834307ab4f6670c80c01e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davita Berger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Davita Berger,ou=Peons,dc=bitwarden,dc=com", - email: "BergerD@623538f66c6d44c9949856d7b9d692ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Metyn Mullaly,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Metyn Mullaly,ou=Product Development,dc=bitwarden,dc=com", - email: "MullalyM@beb04887c3a74fa0ae74089e879db636.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ning Suitt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ning Suitt,ou=Product Testing,dc=bitwarden,dc=com", - email: "SuittN@8964e184da0347bdb7b4df11050a3a32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rafa Vilozny,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rafa Vilozny,ou=Administrative,dc=bitwarden,dc=com", - email: "ViloznyR@bac50bb727ca4a11b9ee1a82a995bcf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kessel Ferenz,ou=Janitorial,dc=bitwarden,dc=com", - email: "FerenzK@123877216cf647dc9c161017fd0bf922.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Donnamarie Proudfoot,ou=Management,dc=bitwarden,dc=com", - email: "ProudfoD@aa592c2222884248a08151cbea9b9464.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anita Bui,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anita Bui,ou=Product Development,dc=bitwarden,dc=com", - email: "BuiA@fc6cfedbbb404c7db9497f0971d6cf66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Laverne CunhaGomes,ou=Human Resources,dc=bitwarden,dc=com", - email: "CunhaGoL@5e4575ba15004635a07ebaa5c8dd9475.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verina Lamirande,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Verina Lamirande,ou=Payroll,dc=bitwarden,dc=com", - email: "LamiranV@f86eaf6fda40440ead0c03f269cfec3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gusella Loggins,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gusella Loggins,ou=Payroll,dc=bitwarden,dc=com", - email: "LogginsG@bdde3595ac2c4a339c7f74eb56b2523f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hatty Murash,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hatty Murash,ou=Product Testing,dc=bitwarden,dc=com", - email: "MurashH@3e7b5d0f173b44b5bb6ae270e2b8fdcb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clyde Labenek,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Clyde Labenek,ou=Product Development,dc=bitwarden,dc=com", - email: "LabenekC@28fab2a5e4034ede9d4f584a0fd75e72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=New Koay,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=New Koay,ou=Payroll,dc=bitwarden,dc=com", - email: "KoayN@eb362d3928c448a4b72d63b85283da63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Petronilla Greytock,ou=Janitorial,dc=bitwarden,dc=com", - email: "GreytocP@ad623334663c4947b77eb81b44ea11ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doria Smothers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Doria Smothers,ou=Management,dc=bitwarden,dc=com", - email: "SmotherD@4e240d85327f4f81b9a139f4d41efb41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonia Gahan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tonia Gahan,ou=Human Resources,dc=bitwarden,dc=com", - email: "GahanT@e2df36a34e3e4794986f7feb29a6d0e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reina Gracey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Reina Gracey,ou=Management,dc=bitwarden,dc=com", - email: "GraceyR@c07b5bb2f94643578becb647cd136c33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vale Harwerth,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vale Harwerth,ou=Product Development,dc=bitwarden,dc=com", - email: "HarwertV@e83fceefe07e4de6ba8b4f0b48751aec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anjela Dyrdahl,ou=Administrative,dc=bitwarden,dc=com", - email: "DyrdahlA@5b44f69cb0e74cb5b8b37bde0d083579.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gavra Brule,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gavra Brule,ou=Peons,dc=bitwarden,dc=com", - email: "BruleG@9b5bbecfd65b422e95fd8bc7721876ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corilla Angustia,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Corilla Angustia,ou=Human Resources,dc=bitwarden,dc=com", - email: "AngustiC@492b9c186a41410b8362945cf33f6ac7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rochelle Wokoma,ou=Human Resources,dc=bitwarden,dc=com", - email: "WokomaR@aa40bc3bf6d0491ea79629a0660ec362.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Simona Lemyre,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Simona Lemyre,ou=Management,dc=bitwarden,dc=com", - email: "LemyreS@4f8304c7c82a40568829a62a3d95ae6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loris Knappe,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Loris Knappe,ou=Administrative,dc=bitwarden,dc=com", - email: "KnappeL@466f24c0ae9947d2a9b6e4673a116085.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariya Frumerie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mariya Frumerie,ou=Product Development,dc=bitwarden,dc=com", - email: "FrumeriM@74b04bb2dca3456d9dd381e9b32a85a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pradip Wesenberg,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pradip Wesenberg,ou=Peons,dc=bitwarden,dc=com", - email: "WesenbeP@35335990ab014019917e13dee53dd406.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teena Szuminski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Teena Szuminski,ou=Product Testing,dc=bitwarden,dc=com", - email: "SzuminsT@a4f85fecd69348a29728c8e242a790a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carline Urbanowich,ou=Janitorial,dc=bitwarden,dc=com", - email: "UrbanowC@f6866989cc784904871bcaa73d189a85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeanie Shumate,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jeanie Shumate,ou=Management,dc=bitwarden,dc=com", - email: "ShumateJ@fd0854655b5f4982bc6e7a95b12dd3fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mindy Agnew,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mindy Agnew,ou=Peons,dc=bitwarden,dc=com", - email: "AgnewM@dad8b7b440374db79e9b58cd390854c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cosette Hagley,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cosette Hagley,ou=Peons,dc=bitwarden,dc=com", - email: "HagleyC@bbf5361396904a4082fadb57709a5d90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=ChristieAnne Nyce,ou=Human Resources,dc=bitwarden,dc=com", - email: "NyceC@ebdda7804b294714949d48657bdd3830.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darnell Gombos,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Darnell Gombos,ou=Product Development,dc=bitwarden,dc=com", - email: "GombosD@a5f5618aa6144295ac3ab97f28aa1603.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odille Belisle,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Odille Belisle,ou=Product Testing,dc=bitwarden,dc=com", - email: "BelisleO@770858a0ba27427fa80380c180b40ddb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirilla Malik,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mirilla Malik,ou=Janitorial,dc=bitwarden,dc=com", - email: "MalikM@f2e037d77334498ab9322f95dd7d350d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alena Winklemaier,ou=Janitorial,dc=bitwarden,dc=com", - email: "WinklemA@863337bc153343e09522d2f9b00e1379.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lise Disalvo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lise Disalvo,ou=Human Resources,dc=bitwarden,dc=com", - email: "DisalvoL@4a8d22894cf24b2dbddb3ccac895cba0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lou Burchat,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lou Burchat,ou=Peons,dc=bitwarden,dc=com", - email: "BurchatL@f58a1be9c5d84ac9b0da725b5fef956c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Celinka Macaulay,ou=Product Testing,dc=bitwarden,dc=com", - email: "MacaulaC@1973e1a34bcf407d9357e6dc5290e9e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donita Teichman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Donita Teichman,ou=Peons,dc=bitwarden,dc=com", - email: "TeichmaD@d7baf4e3c12a4ed9850be956d310a59c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermione Monet,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hermione Monet,ou=Peons,dc=bitwarden,dc=com", - email: "MonetH@9fc16f31309a4e5489f1a046e558b353.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Joann Vermeesch,ou=Product Testing,dc=bitwarden,dc=com", - email: "VermeesJ@c912ac8eb3d148c49f0011f93774eeca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nopi Bulifant,ou=Product Testing,dc=bitwarden,dc=com", - email: "BulifanN@737a8e314bb541f2971ef676e8e10c83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belicia Kupitz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Belicia Kupitz,ou=Peons,dc=bitwarden,dc=com", - email: "KupitzB@8d562bd365da4cdca86c1d397fe1741a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tani Rausch,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tani Rausch,ou=Administrative,dc=bitwarden,dc=com", - email: "RauschT@0b42d23f708a491ab7e35398744c7140.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berget Baerg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Berget Baerg,ou=Janitorial,dc=bitwarden,dc=com", - email: "BaergB@77627e1e8f8e4cdc88cd6606136ffbcf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Skyler Hariman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Skyler Hariman,ou=Payroll,dc=bitwarden,dc=com", - email: "HarimanS@162057a27e094561a78012351f7383c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toni Shaddock,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Toni Shaddock,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShaddocT@6a01aba5dc8f451b8404750bb95136ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Foad Roberts,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Foad Roberts,ou=Peons,dc=bitwarden,dc=com", - email: "RobertsF@f76cbd44b02547b883b5a9a34e1c9fd0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Parks Shtivelman,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShtivelP@05da0d5cd1904deaaf3f5d8c791005d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keely Dee,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Keely Dee,ou=Peons,dc=bitwarden,dc=com", - email: "DeeK@2974cf90fe1d4835b1ba05177dd29243.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shiu Trimble,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shiu Trimble,ou=Management,dc=bitwarden,dc=com", - email: "TrimbleS@75dfcd3692074ff18248aebdf998f81c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwenore Taren,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gwenore Taren,ou=Product Development,dc=bitwarden,dc=com", - email: "TarenG@ed1174f9049747fb9c8ea909f860d6ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saraann Millen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Saraann Millen,ou=Peons,dc=bitwarden,dc=com", - email: "MillenS@20d733e4c13941c7bc31419a4b4229c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandra Mosley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sandra Mosley,ou=Administrative,dc=bitwarden,dc=com", - email: "MosleyS@e800254840ec4cdd98916b4e083fcf9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=SheriLynn Hemphill,ou=Janitorial,dc=bitwarden,dc=com", - email: "HemphilS@819341cb2af84d6c855b3feecf7b45b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernhard Niro,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bernhard Niro,ou=Product Development,dc=bitwarden,dc=com", - email: "NiroB@2c3e110ee6f849dd9d12214b3161a037.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ema Kelkar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ema Kelkar,ou=Peons,dc=bitwarden,dc=com", - email: "KelkarE@4dd9b19c6f6848e2a0768f206ad89104.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lawrence Riedel,ou=Janitorial,dc=bitwarden,dc=com", - email: "RiedelL@80d7e63066f84141a410585d6b524a04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Selvaraj Bazemore,ou=Product Testing,dc=bitwarden,dc=com", - email: "BazemorS@2ba610dbd4ca4724a5aac54e36ab5ab0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erich Pandey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Erich Pandey,ou=Human Resources,dc=bitwarden,dc=com", - email: "PandeyE@71c4255308d847e6b55d8184e9b3d537.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farshid Sattler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Farshid Sattler,ou=Product Testing,dc=bitwarden,dc=com", - email: "SattlerF@7e9f6d17b8fc4a199e49adcccc9ca5e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Flying Pimiskern,ou=Janitorial,dc=bitwarden,dc=com", - email: "PimiskeF@8e939e1720cd4eec84cf0ef4b954cc46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anissa Nasato,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anissa Nasato,ou=Payroll,dc=bitwarden,dc=com", - email: "NasatoA@f189d642e6af44169fd7101889f8b06f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Monroe Deardurff,ou=Product Testing,dc=bitwarden,dc=com", - email: "DeardurM@646791cae30048e78e840ca24e142dc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grietje Dionne,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Grietje Dionne,ou=Management,dc=bitwarden,dc=com", - email: "DionneG@ebda9764758246a4bb15c2161573a88b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vinny Grandbois,ou=Product Testing,dc=bitwarden,dc=com", - email: "GrandboV@51a0ff7129454952917fdd91842316b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Asia Dobbs,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Asia Dobbs,ou=Administrative,dc=bitwarden,dc=com", - email: "DobbsA@64ddc1375a2449c3b91480ef133e087e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Flor Powney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Flor Powney,ou=Administrative,dc=bitwarden,dc=com", - email: "PowneyF@9c1d18cc96a9431ba0c70f9056ae3646.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jeniffer Babasaki,ou=Human Resources,dc=bitwarden,dc=com", - email: "BabasakJ@65445bf488744fbfb52fae9b404c1cd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valera Fogelson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Valera Fogelson,ou=Product Development,dc=bitwarden,dc=com", - email: "FogelsoV@7279f15d1e764fb3b1076fe52d173852.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aideen Vanaman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aideen Vanaman,ou=Peons,dc=bitwarden,dc=com", - email: "VanamanA@1052132e3fb44811b3c52e3eab3405dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pattie McLemore,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pattie McLemore,ou=Payroll,dc=bitwarden,dc=com", - email: "McLemorP@e616c55f2d0a4bbca2cb265dfd9eacbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Levy Wolfson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Levy Wolfson,ou=Administrative,dc=bitwarden,dc=com", - email: "WolfsonL@786e681f87b049719b525ef674ebcc90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rhea VanTerrie,ou=Human Resources,dc=bitwarden,dc=com", - email: "VanTerrR@5beefb1d47ee4fae97ea786f427a3d27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Doloritas Matheson,ou=Janitorial,dc=bitwarden,dc=com", - email: "MathesoD@79eafeb75c844d3eaf6f5efd1b8c0977.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patricia Pappas,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Patricia Pappas,ou=Administrative,dc=bitwarden,dc=com", - email: "PappasP@7fe664076c0040b6a8babd9da4c475ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miguel Kozak,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Miguel Kozak,ou=Payroll,dc=bitwarden,dc=com", - email: "KozakM@a2d069dbe5bd40cca53d8a120576f5a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gina Toolroom,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gina Toolroom,ou=Payroll,dc=bitwarden,dc=com", - email: "ToolrooG@b16d30b43c074a1ba8a20458a6da6055.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fairy Tables,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fairy Tables,ou=Management,dc=bitwarden,dc=com", - email: "TablesF@e85fdc3041fd4381ad23f20fda20358e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selia Larocque,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Selia Larocque,ou=Management,dc=bitwarden,dc=com", - email: "LarocquS@d6fe37840529443585725bc6aa7732d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pankaj Moroz,ou=Janitorial,dc=bitwarden,dc=com", - email: "MorozP@930aa158f4dd4c618e8daf39862d51e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jozef Altmann,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jozef Altmann,ou=Janitorial,dc=bitwarden,dc=com", - email: "AltmannJ@5f64fd34bdee4ec1abef179411f4dce1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Octavio Doud,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Octavio Doud,ou=Peons,dc=bitwarden,dc=com", - email: "DoudO@8d16e0fff20443f99b6f78b0996f117b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atl Baugnon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Atl Baugnon,ou=Administrative,dc=bitwarden,dc=com", - email: "BaugnonA@fded6a4ffab747d786306ddc62c3c811.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacie Tabler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Stacie Tabler,ou=Product Development,dc=bitwarden,dc=com", - email: "TablerS@530608b4f9df417187aa615866b37d82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chantal Feil,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chantal Feil,ou=Payroll,dc=bitwarden,dc=com", - email: "FeilC@1949e3794fc14232b5b71dc9b3dfa654.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Waverly Caron,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Waverly Caron,ou=Product Testing,dc=bitwarden,dc=com", - email: "CaronW@816dd137672046b4800988231b34434d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cindy McTurner,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cindy McTurner,ou=Administrative,dc=bitwarden,dc=com", - email: "McTurneC@0219ab31249e4e48be0f58ce8b0b2611.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ermentrude Rosson,ou=Administrative,dc=bitwarden,dc=com", - email: "RossonE@78331c826d114da29aeafea87c090905.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherri Loper,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cherri Loper,ou=Management,dc=bitwarden,dc=com", - email: "LoperC@9e9dcbe516e7453a9ec2c4f34261ca62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joleen Fobert,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joleen Fobert,ou=Human Resources,dc=bitwarden,dc=com", - email: "FobertJ@ce472d3fc80444b983f47fbd786a2ed7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Crystal Ehlers,ou=Janitorial,dc=bitwarden,dc=com", - email: "EhlersC@38b2663172424c999e78408a67cf7851.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marley Dadalt,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marley Dadalt,ou=Product Development,dc=bitwarden,dc=com", - email: "DadaltM@c37d437270714fb682259a0e5006b543.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jocelin Mensinkai,ou=Human Resources,dc=bitwarden,dc=com", - email: "MensinkJ@0148ea24c11b461eaf1bfa51c7f254fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jennee Reznick,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jennee Reznick,ou=Peons,dc=bitwarden,dc=com", - email: "ReznickJ@d69d50a7aa3e4ebf9808282c9a27c7b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerrit Pullan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gerrit Pullan,ou=Peons,dc=bitwarden,dc=com", - email: "PullanG@f07a2704744543c99ec010f0a9ec3d24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duke Ness,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Duke Ness,ou=Administrative,dc=bitwarden,dc=com", - email: "NessD@4520c387caf14590a3143afb1ef72ec6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emilie Grigsby,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emilie Grigsby,ou=Product Development,dc=bitwarden,dc=com", - email: "GrigsbyE@aec32be154e9468aaf07e631090cf3e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shiroshi Thorsen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shiroshi Thorsen,ou=Management,dc=bitwarden,dc=com", - email: "ThorsenS@03a382a7724f452d85abab30e3c678e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katey Dorr,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Katey Dorr,ou=Administrative,dc=bitwarden,dc=com", - email: "DorrK@7e22fa8dfa8e4caa8ba807b20db9639f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manuela Whitsell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Manuela Whitsell,ou=Payroll,dc=bitwarden,dc=com", - email: "WhitselM@d402d45df6ee44758d534e95cb5617f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kedah Kupferschmidt,ou=Payroll,dc=bitwarden,dc=com", - email: "KupfersK@0b91b187654d42f6ab62dc14d39a1abd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvina Stokoe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alvina Stokoe,ou=Product Development,dc=bitwarden,dc=com", - email: "StokoeA@ad964ba902a44170917694925f5549f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theo TestNTMVAA,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Theo TestNTMVAA,ou=Management,dc=bitwarden,dc=com", - email: "TestNTMT@35bee35564684f309794106202d3e01a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maidsir Spaugh,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maidsir Spaugh,ou=Management,dc=bitwarden,dc=com", - email: "SpaughM@95c484b7ceeb496da14312d962454e22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yoshimitsu Whetzel,ou=Human Resources,dc=bitwarden,dc=com", - email: "WhetzelY@7ac3538c32ef4218882c130acb03a83a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Yuksel Zaretsky,ou=Administrative,dc=bitwarden,dc=com", - email: "ZaretskY@35ae2ba8abf646adb2f5a5352a90490c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vilas Jarvah,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vilas Jarvah,ou=Administrative,dc=bitwarden,dc=com", - email: "JarvahV@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cilka Chadha,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cilka Chadha,ou=Product Development,dc=bitwarden,dc=com", - email: "ChadhaC@f4030ab817ff48ca98e8cd4e669c479e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ludovico Kurth,ou=Product Testing,dc=bitwarden,dc=com", - email: "KurthL@5df9c27aac564967ba9cd99480636500.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merl Heffner,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Merl Heffner,ou=Product Testing,dc=bitwarden,dc=com", - email: "HeffnerM@8717d7d6686445eba152afa0241a3ea0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelly Adler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shelly Adler,ou=Management,dc=bitwarden,dc=com", - email: "AdlerS@55c6c435877940599b41e6e5d6f01b1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marchelle Howie,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marchelle Howie,ou=Administrative,dc=bitwarden,dc=com", - email: "HowieM@8d06f5c0b94f46838a9f2ef1a0adee08.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chick Doucet,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Chick Doucet,ou=Management,dc=bitwarden,dc=com", - email: "DoucetC@7475aa279ff64b9683e6188f03eefc3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vittoria Astley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vittoria Astley,ou=Human Resources,dc=bitwarden,dc=com", - email: "AstleyV@f318f75c01ee43e0921a0e961414763d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hector Easaw,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hector Easaw,ou=Payroll,dc=bitwarden,dc=com", - email: "EasawH@d3e5ff3d0e59404589f0f6d57f8f6108.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matilda Gomez,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Matilda Gomez,ou=Human Resources,dc=bitwarden,dc=com", - email: "GomezM@ccf238ac72764498a2a4e871140940fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crista McMasters,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Crista McMasters,ou=Management,dc=bitwarden,dc=com", - email: "McMasteC@444794b5113d44779ace93e2616392cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Laury Abbatantuono,ou=Payroll,dc=bitwarden,dc=com", - email: "AbbatanL@eb362d3928c448a4b72d63b85283da63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amnish Haydock,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amnish Haydock,ou=Management,dc=bitwarden,dc=com", - email: "HaydockA@e326aad292d2417588aee72e8914fb32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mignonne Shull,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mignonne Shull,ou=Product Development,dc=bitwarden,dc=com", - email: "ShullM@5eddd4d764454fa48632e5c1f8824445.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lizzy Monson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lizzy Monson,ou=Janitorial,dc=bitwarden,dc=com", - email: "MonsonL@5dfbfc6402474d4a84deb330c0f4315f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Riyad Stropp,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Riyad Stropp,ou=Peons,dc=bitwarden,dc=com", - email: "StroppR@db5bc35aa0904c48bec68b5a37877b3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jennee Tipping,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jennee Tipping,ou=Product Testing,dc=bitwarden,dc=com", - email: "TippingJ@7a8159a4b38d481598c0559b90aec74d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorianne Devera,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorianne Devera,ou=Peons,dc=bitwarden,dc=com", - email: "DeveraL@086cd0723f0c4d19b12b0a6c52b08ed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kana VanSickle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kana VanSickle,ou=Human Resources,dc=bitwarden,dc=com", - email: "VanSickK@fc1572b2278f4aeabefffc267baf4272.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bina Scales,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bina Scales,ou=Human Resources,dc=bitwarden,dc=com", - email: "ScalesB@166fd602ceb04a58b9e0bfc4c39bf95b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ariela Stachowiak,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ariela Stachowiak,ou=Peons,dc=bitwarden,dc=com", - email: "StachowA@90463e36c9634ed7af09a58415debfe0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leontine Kresl,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Leontine Kresl,ou=Human Resources,dc=bitwarden,dc=com", - email: "KreslL@123877216cf647dc9c161017fd0bf922.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tomasine Borza,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tomasine Borza,ou=Janitorial,dc=bitwarden,dc=com", - email: "BorzaT@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emory Ramnarine,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emory Ramnarine,ou=Product Development,dc=bitwarden,dc=com", - email: "RamnariE@391d8dba5fa94d8e974df50be3a6709e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corella Loperena,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Corella Loperena,ou=Management,dc=bitwarden,dc=com", - email: "LoperenC@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirna Kashef,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mirna Kashef,ou=Administrative,dc=bitwarden,dc=com", - email: "KashefM@072112936d7540f191ae5e1941e3f66c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roseann Coyne,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roseann Coyne,ou=Product Development,dc=bitwarden,dc=com", - email: "CoyneR@3dd9413931df4d5d906784831a201dd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kaela Amarsi,ou=Human Resources,dc=bitwarden,dc=com", - email: "AmarsiK@4b0a9ffaaeec4cc3ae5daf192d65fc6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agenia Zampino,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Agenia Zampino,ou=Administrative,dc=bitwarden,dc=com", - email: "ZampinoA@52895e87978c4f7a853b254ac3b4e18f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vic Lenox,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vic Lenox,ou=Product Testing,dc=bitwarden,dc=com", - email: "LenoxV@9c640b9ada7e43fd815986e9b791454d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sissie Rao,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sissie Rao,ou=Administrative,dc=bitwarden,dc=com", - email: "RaoS@ad2f81222ff04e688459bdc291415016.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chi Shreve,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chi Shreve,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShreveC@b2b61d7107f642f5a98b64baa9303c9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gloria DeGrandis,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gloria DeGrandis,ou=Management,dc=bitwarden,dc=com", - email: "DeGrandG@8a604e644ae34afd98bb9ace2d3d942b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ryann Teacher,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ryann Teacher,ou=Management,dc=bitwarden,dc=com", - email: "TeacherR@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sanjeev Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", - email: "ChirachS@c50e1d17976a4acebd18f01bbfd46623.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naveen Kollman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Naveen Kollman,ou=Peons,dc=bitwarden,dc=com", - email: "KollmanN@dc25e6259a754e12b71b6ceb921f6e43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozina Schipper,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rozina Schipper,ou=Management,dc=bitwarden,dc=com", - email: "SchippeR@388f37e043f44f87a961652591a7a940.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Partha Kelsay,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Partha Kelsay,ou=Peons,dc=bitwarden,dc=com", - email: "KelsayP@fac421ca650e46139878bbd5f7498e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mccauley HowePatterson,ou=Administrative,dc=bitwarden,dc=com", - email: "HowePatM@cce34a85aeda4eaa8425019b868727c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vinh Dhar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vinh Dhar,ou=Administrative,dc=bitwarden,dc=com", - email: "DharV@6f03f1adf7c149889e4e46274861a90d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hilde PlaterZyberk,ou=Peons,dc=bitwarden,dc=com", - email: "PlaterZH@05c9124444ac41d598fb0334940751db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cart Cardozo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cart Cardozo,ou=Management,dc=bitwarden,dc=com", - email: "CardozoC@e5c90ecebea1435c996209dde46c0296.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Briana Ambler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Briana Ambler,ou=Product Development,dc=bitwarden,dc=com", - email: "AmblerB@a94a4e703f55451099134b3aaeedccbb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kemp Akai,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kemp Akai,ou=Management,dc=bitwarden,dc=com", - email: "AkaiK@dbb1f284fffc4af0b5309ffafecaa8e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anjela Gribbons,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anjela Gribbons,ou=Product Development,dc=bitwarden,dc=com", - email: "GribbonA@039e3a194ecb4b229b6171f883dbe2ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Florri Pankhurst,ou=Product Testing,dc=bitwarden,dc=com", - email: "PankhurF@f97d3d1fbfb54eb9846b54af1e96be37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hudai Baulch,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hudai Baulch,ou=Payroll,dc=bitwarden,dc=com", - email: "BaulchH@ebbd3bd6f4c84c3b86ade3725f39d1ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=MaryKay Reichinger,ou=Human Resources,dc=bitwarden,dc=com", - email: "ReichinM@ae95a9e30a2b4495b405c300be234d38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kee Gilchrist,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kee Gilchrist,ou=Payroll,dc=bitwarden,dc=com", - email: "GilchriK@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Daphna Pewitt,ou=Human Resources,dc=bitwarden,dc=com", - email: "PewittD@3569446edc67492da6f3555168f86d08.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellis Brunner,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ellis Brunner,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrunnerE@a649078d65524cbb8ff458be0026774e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Violet Luwemba,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Violet Luwemba,ou=Payroll,dc=bitwarden,dc=com", - email: "LuwembaV@ecbe7413d7a74dce8478d8a77a5f394f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kessia McVicker,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kessia McVicker,ou=Management,dc=bitwarden,dc=com", - email: "McVickeK@9655cd36a01c4aa6b915b07f385eebda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Buffy Treen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Buffy Treen,ou=Janitorial,dc=bitwarden,dc=com", - email: "TreenB@0640f4e12fee4de283a682f2eaa821d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huub Palfreyman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Huub Palfreyman,ou=Administrative,dc=bitwarden,dc=com", - email: "PalfreyH@39279f1fe7e44c90a8b6ba9604608e10.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walt Pringle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Walt Pringle,ou=Human Resources,dc=bitwarden,dc=com", - email: "PringleW@1165c0fd18ed4ab3a49c1b798696e277.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wladyslaw Angerer,ou=Product Testing,dc=bitwarden,dc=com", - email: "AngererW@6de130a8139a479abd748cccf12fccd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Betteanne Ferguson,ou=Payroll,dc=bitwarden,dc=com", - email: "FergusoB@d404d6f67aee4480aef4deb01202b0ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rima OBrien,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rima OBrien,ou=Peons,dc=bitwarden,dc=com", - email: "OBrienR@fecfcf752c6e4027af9fd19570ebc44a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tesfagaber Stites,ou=Payroll,dc=bitwarden,dc=com", - email: "StitesT@fdcc23b3e21f4f0fa3bffbc78ce6d7d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinett Borg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Robinett Borg,ou=Janitorial,dc=bitwarden,dc=com", - email: "BorgR@20f59cdd83ae48b3816d0ba42aaa0a71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marielle Kruziak,ou=Human Resources,dc=bitwarden,dc=com", - email: "KruziakM@256ea15783c347f9b9c84e579468618d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shaughan Thornley,ou=Janitorial,dc=bitwarden,dc=com", - email: "ThornleS@1e2b67f93f814f68b5e4aa746670a4e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wai Elms,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wai Elms,ou=Product Testing,dc=bitwarden,dc=com", - email: "ElmsW@d28530c9df644cffbc9c3ddd841cc9a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shoshanna Epplett,ou=Product Development,dc=bitwarden,dc=com", - email: "EpplettS@09c55424f60f401a820af7f109784bda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alikee Seay,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alikee Seay,ou=Janitorial,dc=bitwarden,dc=com", - email: "SeayA@99a51e3de4824b82894f80e7490fdc98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=DiaEdin Simonsen,ou=Human Resources,dc=bitwarden,dc=com", - email: "SimonseD@b67254eafc794e8aadd067850b852e05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pammi Abrams,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pammi Abrams,ou=Peons,dc=bitwarden,dc=com", - email: "AbramsP@860c7d85ea254a79a064b6a2375bb2e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gateway Benzick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gateway Benzick,ou=Product Testing,dc=bitwarden,dc=com", - email: "BenzickG@ef52200320a34601b7e10e8ff147afd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhody Birk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rhody Birk,ou=Administrative,dc=bitwarden,dc=com", - email: "BirkR@0700db396e394f2aa0ec4417fdd37e22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pinecrest Ramakrishna,ou=Human Resources,dc=bitwarden,dc=com", - email: "RamakriP@7bd1348caadc49fd912c79c585334210.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atlanta Brannon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Atlanta Brannon,ou=Management,dc=bitwarden,dc=com", - email: "BrannonA@8148a52d859b468a9dde3ee8b81e013b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mentor MACKenzie,ou=Product Development,dc=bitwarden,dc=com", - email: "MACKenzM@a4ebc705137a4ddb9ebce3e4b095eec3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=JFrancois Nickerson,ou=Janitorial,dc=bitwarden,dc=com", - email: "NickersJ@dc196a8022ff465cb8dbe2eba3225125.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Khosro ODonnell,ou=Human Resources,dc=bitwarden,dc=com", - email: "ODonnelK@c7537618f37d4b7db41aeb4dbd21158d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lisabeth Gedman,ou=Administrative,dc=bitwarden,dc=com", - email: "GedmanL@521dc01836174c9fbceba2f0cdb64374.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moshe Bowick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Moshe Bowick,ou=Product Testing,dc=bitwarden,dc=com", - email: "BowickM@0d2070a7704249ccae81fc4b91659074.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirene Lommen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shirene Lommen,ou=Management,dc=bitwarden,dc=com", - email: "LommenS@68783c5d6bc743ddb0d94e6abd382e0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chand Fusca,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chand Fusca,ou=Peons,dc=bitwarden,dc=com", - email: "FuscaC@805e256767ba408cbe90aeb2944a8e9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bethina Kigyos,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bethina Kigyos,ou=Peons,dc=bitwarden,dc=com", - email: "KigyosB@64b7c8578355450790f3fb63c15436b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Theodore Sutherland,ou=Human Resources,dc=bitwarden,dc=com", - email: "SutherlT@398ea17d6f974da4b9c05b23fe6460f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paolina Ricketson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Paolina Ricketson,ou=Administrative,dc=bitwarden,dc=com", - email: "RicketsP@fa8dd30a7166419e97723182660d3ed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Teresita Artspssa,ou=Human Resources,dc=bitwarden,dc=com", - email: "ArtspssT@f6fe529f06ac433fab898dee2f04e9dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isaac McNeil,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Isaac McNeil,ou=Payroll,dc=bitwarden,dc=com", - email: "McNeilI@af019db996df414484b0d304e9b3637a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaman Churchill,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jaman Churchill,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChurchiJ@b9f540485b314fbf8d07b00822dff971.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erick Heynen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Erick Heynen,ou=Product Development,dc=bitwarden,dc=com", - email: "HeynenE@71334519f85d4ff38bd6a6b8f4192c09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sondra Frie,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sondra Frie,ou=Administrative,dc=bitwarden,dc=com", - email: "FrieS@1c3f38c01ffe4fd78e55d74bc900ca15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mack Hermanns,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mack Hermanns,ou=Product Testing,dc=bitwarden,dc=com", - email: "HermannM@30919d15fb3f4281a17499420dcfbd91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patchit Panesar,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Patchit Panesar,ou=Human Resources,dc=bitwarden,dc=com", - email: "PanesarP@99efb52676a5438d8f4dfeb830e52009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mohamad Ng,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mohamad Ng,ou=Janitorial,dc=bitwarden,dc=com", - email: "NgM@799bf34e24074827963968e6e62fb541.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jacynthe Mtcbase,ou=Administrative,dc=bitwarden,dc=com", - email: "MtcbaseJ@ca73de7d8fb447f899df1cc98c2c34a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jayme McMillen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jayme McMillen,ou=Payroll,dc=bitwarden,dc=com", - email: "McMilleJ@7a5ece6d9adf44888506b316b6709917.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perrin McMasters,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Perrin McMasters,ou=Administrative,dc=bitwarden,dc=com", - email: "McMasteP@22431f0d07b34bd39089fef51c341d61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gwynne Kotamarti,ou=Payroll,dc=bitwarden,dc=com", - email: "KotamarG@764613c40e224c12ab1c1cb80b18e644.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marlee HowePatterson,ou=Janitorial,dc=bitwarden,dc=com", - email: "HowePatM@1f747432623a4f53b844c44224754693.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joell Veloz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joell Veloz,ou=Human Resources,dc=bitwarden,dc=com", - email: "VelozJ@76f6104d33de482eb35b100eb7033678.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tootsie DeAlmeida,ou=Product Testing,dc=bitwarden,dc=com", - email: "DeAlmeiT@507df70969d941e8941b6b3e0cbfa8ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naima Swinks,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Naima Swinks,ou=Management,dc=bitwarden,dc=com", - email: "SwinksN@08a7e5e74be04f44a364a958dd103e80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mab Amato,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mab Amato,ou=Payroll,dc=bitwarden,dc=com", - email: "AmatoM@481a6dfc2726429788928adbad28f42a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeanna Lawther,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jeanna Lawther,ou=Product Development,dc=bitwarden,dc=com", - email: "LawtherJ@ce09eff4e27d456d8a017939b41c80b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mariel DeBrusk,ou=Product Development,dc=bitwarden,dc=com", - email: "DeBruskM@56ee0442f1a84dbfb882b36d77def9ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luther Kordik,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Luther Kordik,ou=Peons,dc=bitwarden,dc=com", - email: "KordikL@c84c1685109349e381c9c3b76d3c081d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hellmut Tebinka,ou=Product Testing,dc=bitwarden,dc=com", - email: "TebinkaH@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenine Sutton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jenine Sutton,ou=Peons,dc=bitwarden,dc=com", - email: "SuttonJ@3546d29dd7834be9b84722d152b319e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=JeanMarie Gordon,ou=Janitorial,dc=bitwarden,dc=com", - email: "GordonJ@c914251ab9404c90af6d46fa9bf97baa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronny Blomquist,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ronny Blomquist,ou=Management,dc=bitwarden,dc=com", - email: "BlomquiR@a651bab618794291bf5129fe307f0c99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krystal Noel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Krystal Noel,ou=Product Development,dc=bitwarden,dc=com", - email: "NoelK@80695950877a41d48624da7d4574c893.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clark Bruneau,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Clark Bruneau,ou=Product Testing,dc=bitwarden,dc=com", - email: "BruneauC@1f047af09330424c80ddd51cf37e0010.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anallese Bloemker,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anallese Bloemker,ou=Administrative,dc=bitwarden,dc=com", - email: "BloemkeA@984a33b6fcea4c229307cb5a753888dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WenKai Schemena,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=WenKai Schemena,ou=Peons,dc=bitwarden,dc=com", - email: "SchemenW@776174eadbeb4db89457f08eae37cc43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luan Goupil,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Luan Goupil,ou=Human Resources,dc=bitwarden,dc=com", - email: "GoupilL@729666359ed04f0995bf97703c170436.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dimitra Loponen,ou=Product Testing,dc=bitwarden,dc=com", - email: "LoponenD@b2ad1fc1ea554b8f973d1f9ef9821f73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verna Britt,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Verna Britt,ou=Management,dc=bitwarden,dc=com", - email: "BrittV@2589cc141c4e4b5c8c4573c04cd3f678.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hoog Gareis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hoog Gareis,ou=Janitorial,dc=bitwarden,dc=com", - email: "GareisH@5f79b20f5b7f4ae1afe25eb5f16c5923.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=SiewKiat Tsui,ou=Human Resources,dc=bitwarden,dc=com", - email: "TsuiS@289444924c894df68dc76e9d8add4066.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Skyler Lamy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Skyler Lamy,ou=Product Development,dc=bitwarden,dc=com", - email: "LamyS@df91f02938d046d8adb3f260f0e722ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bcs Hoyer,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoyerB@553a74428bb643038d327a6c4003715b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Layne Esry,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Layne Esry,ou=Janitorial,dc=bitwarden,dc=com", - email: "EsryL@c3c0f7a355cb4430990b12849cd4234b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amrik Thornber,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Amrik Thornber,ou=Payroll,dc=bitwarden,dc=com", - email: "ThornbeA@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michaela Lobianco,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Michaela Lobianco,ou=Product Development,dc=bitwarden,dc=com", - email: "LobiancM@5957c85f3b4a4b49903492c9f27c830b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hyacinthie Closson,ou=Human Resources,dc=bitwarden,dc=com", - email: "ClossonH@776174eadbeb4db89457f08eae37cc43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mounir Gubbins,ou=Product Testing,dc=bitwarden,dc=com", - email: "GubbinsM@853be251133d4fadac48c2adaa97ca8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ebrahim Hoes,ou=Product Development,dc=bitwarden,dc=com", - email: "HoesE@b78fed9ef6a94b4d9e8bb1b5d1719aef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxy Banerjee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roxy Banerjee,ou=Product Development,dc=bitwarden,dc=com", - email: "BanerjeR@26baa80c82b44c14a3680a99c80f4149.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Derek Ukena,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Derek Ukena,ou=Payroll,dc=bitwarden,dc=com", - email: "UkenaD@2d0e71959712498892398e30a50d5bec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenelle Crothers,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jenelle Crothers,ou=Administrative,dc=bitwarden,dc=com", - email: "CrotherJ@fc7406e3c8e34fce9e4288bfe13798e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devonna Caron,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Devonna Caron,ou=Product Testing,dc=bitwarden,dc=com", - email: "CaronD@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neill Droste,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Neill Droste,ou=Peons,dc=bitwarden,dc=com", - email: "DrosteN@aac869a9d66f41deb273e8c857d2f2a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lissy MooYoung,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lissy MooYoung,ou=Payroll,dc=bitwarden,dc=com", - email: "MooYounL@4a32da5e6b0c44ddb6046a41d38421fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frederica Herbers,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Frederica Herbers,ou=Product Development,dc=bitwarden,dc=com", - email: "HerbersF@940a7593b88c4fb0afde713027fc2a16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geir Madigan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Geir Madigan,ou=Peons,dc=bitwarden,dc=com", - email: "MadiganG@e222356753044e8983c1eeafa0e4bfd7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cal Vosburg,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cal Vosburg,ou=Product Development,dc=bitwarden,dc=com", - email: "VosburgC@88f0e01d6ade41fe9e8249c17671d036.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrol Schluter,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Darrol Schluter,ou=Janitorial,dc=bitwarden,dc=com", - email: "SchluteD@5b2cdd0210f9439bba35839f38589b93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Augustin Polashock,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Augustin Polashock,ou=Administrative,dc=bitwarden,dc=com", - email: "PolashoA@71a3a2f552a3442caaba57d329355ad2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karrah Federico,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Karrah Federico,ou=Janitorial,dc=bitwarden,dc=com", - email: "FedericK@1f90981d05564d038a0c312379adcdd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlina Douet,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Arlina Douet,ou=Product Testing,dc=bitwarden,dc=com", - email: "DouetA@0370bf4c8f0643cdbb05f71db44e6eda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herb Cantrell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Herb Cantrell,ou=Human Resources,dc=bitwarden,dc=com", - email: "CantrelH@33bf50a72a3544c9bdfe2238d2123ad0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ott Beresnikow,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ott Beresnikow,ou=Management,dc=bitwarden,dc=com", - email: "BeresniO@ccd602a706b2492c8998dcf7c17bd36f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tracey Tates,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tracey Tates,ou=Payroll,dc=bitwarden,dc=com", - email: "TatesT@cbda675e7e2a4c7e8469f0d5f6b406ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeniece Belmont,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jeniece Belmont,ou=Peons,dc=bitwarden,dc=com", - email: "BelmontJ@5128133359594cd18d137c259ecf1184.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vern Vosup,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vern Vosup,ou=Janitorial,dc=bitwarden,dc=com", - email: "VosupV@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zoltan Zumhagen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zoltan Zumhagen,ou=Management,dc=bitwarden,dc=com", - email: "ZumhageZ@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ginnie Wignall,ou=Janitorial,dc=bitwarden,dc=com", - email: "WignallG@e52982c108d74f959048f88b7dd46e6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Makiko Walta,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Makiko Walta,ou=Management,dc=bitwarden,dc=com", - email: "WaltaM@4c9ea5cb0c6d47f0bff8da92c6c9d0eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ermentrude Boult,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ermentrude Boult,ou=Management,dc=bitwarden,dc=com", - email: "BoultE@6114ed5b2ab14d15895d683682929e6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Robinetta Paetsch,ou=Product Testing,dc=bitwarden,dc=com", - email: "PaetschR@111d7547650243e9b05c0ec5c87bdfcd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Larisa Szura,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Larisa Szura,ou=Product Testing,dc=bitwarden,dc=com", - email: "SzuraL@c4198b8f2847457c97c168c8fc0c7617.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wiebe Ku,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Wiebe Ku,ou=Peons,dc=bitwarden,dc=com", - email: "KuW@b4cc71653cab4b938d868f66a601e950.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zeljko Subick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zeljko Subick,ou=Management,dc=bitwarden,dc=com", - email: "SubickZ@9018e8cd28db4ae38e5ac887f978c35f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liese Neill,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Liese Neill,ou=Product Development,dc=bitwarden,dc=com", - email: "NeillL@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Faz Chotkowski,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChotkowF@8971a4377828437190f1287041d02525.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doralin PATCOR,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Doralin PATCOR,ou=Product Development,dc=bitwarden,dc=com", - email: "PATCORD@003e771d29284236b967f25e9416ed07.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tillie Erskine,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tillie Erskine,ou=Human Resources,dc=bitwarden,dc=com", - email: "ErskineT@57dc19fb72ed48a88f045569d12c771f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Davinder Jacobsen,ou=Human Resources,dc=bitwarden,dc=com", - email: "JacobseD@1e6e292197c54bb68d0f062bfc704a5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheeree Petrunka,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sheeree Petrunka,ou=Management,dc=bitwarden,dc=com", - email: "PetrunkS@3eadf1668d9548a8a0a9a2df5d767d49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winifred Grelck,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Winifred Grelck,ou=Management,dc=bitwarden,dc=com", - email: "GrelckW@33b35540a4bc4f6baa81886f1273a7c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Douglas Wilemon,ou=Janitorial,dc=bitwarden,dc=com", - email: "WilemonD@7be2adbfd042422e9bcc88e78cabf3cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jastinder Polakowski,ou=Administrative,dc=bitwarden,dc=com", - email: "PolakowJ@d1ef39736163426e9c183bf4dd2e8f13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toni Volkmer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Toni Volkmer,ou=Payroll,dc=bitwarden,dc=com", - email: "VolkmerT@3f22733d317d4f91854fb0b865164d32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alexandra Bassett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Alexandra Bassett,ou=Payroll,dc=bitwarden,dc=com", - email: "BassettA@f7e54052c2804213b8221da8ba00f5c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ineke Aloi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ineke Aloi,ou=Management,dc=bitwarden,dc=com", - email: "AloiI@2b13da408414484c934b524c33272c48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Meredithe Comtois,ou=Human Resources,dc=bitwarden,dc=com", - email: "ComtoisM@1fa19cc59b0a4b048ab223f06dc01275.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shafiq Hearn,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shafiq Hearn,ou=Payroll,dc=bitwarden,dc=com", - email: "HearnS@3118b07730ef4ee1ba02df2d8acb61a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bucklin Venne,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bucklin Venne,ou=Management,dc=bitwarden,dc=com", - email: "VenneB@0dc9183f5edd4f868911cb0b9c90c604.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Modesta Moetteli,ou=Human Resources,dc=bitwarden,dc=com", - email: "MoettelM@c51f0fa4b3c84c5e87c57318cac19216.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gisele Gaudet,ou=Product Testing,dc=bitwarden,dc=com", - email: "GaudetG@ba5fbd8ccee64957820f429bea9cbd2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theodora Kendall,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Theodora Kendall,ou=Management,dc=bitwarden,dc=com", - email: "KendallT@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kee Simanskis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kee Simanskis,ou=Product Testing,dc=bitwarden,dc=com", - email: "SimanskK@084a0f09394c4019a2e37bab0c6dfc4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micky Moorefield,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Micky Moorefield,ou=Management,dc=bitwarden,dc=com", - email: "MoorefiM@e57ea92ee58c48afbafa0ac14075f3d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saraann Helpline,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Saraann Helpline,ou=Product Testing,dc=bitwarden,dc=com", - email: "HelplinS@d4be1d4cbeff459bb380038ad268b7ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blondy Kluke,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Blondy Kluke,ou=Management,dc=bitwarden,dc=com", - email: "KlukeB@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marys Edgette,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marys Edgette,ou=Administrative,dc=bitwarden,dc=com", - email: "EdgetteM@e8e2b56db83b4ff19e981322f6e68e27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ilyssa Norczen,ou=Product Testing,dc=bitwarden,dc=com", - email: "NorczenI@37ef93fb374e4550b60ee55424a070b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verina McGuigan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Verina McGuigan,ou=Payroll,dc=bitwarden,dc=com", - email: "McGuigaV@5f494e5d5c2b48bd9e0d3f42e62d76ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beryl Desmond,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Beryl Desmond,ou=Management,dc=bitwarden,dc=com", - email: "DesmondB@7f8aff875b274954baafb6b3b56714e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sydel Staples,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sydel Staples,ou=Janitorial,dc=bitwarden,dc=com", - email: "StaplesS@f8d4f8ae5e28413fb1f47c0eed0d375d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Letta Kalyani,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Letta Kalyani,ou=Peons,dc=bitwarden,dc=com", - email: "KalyaniL@06b92eab0752450c93185ff5957a8ffb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shuo Anstett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shuo Anstett,ou=Product Development,dc=bitwarden,dc=com", - email: "AnstettS@06fecf470a2d4fa2a3e3213e29056ac5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winifred Billing,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Winifred Billing,ou=Payroll,dc=bitwarden,dc=com", - email: "BillingW@504b7fa15e81498b91140ca23e9bafd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colene Colwell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Colene Colwell,ou=Human Resources,dc=bitwarden,dc=com", - email: "ColwellC@c6c308b188d84d848e3ff3cf9a7dd81c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isabelita Irving,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Isabelita Irving,ou=Management,dc=bitwarden,dc=com", - email: "IrvingI@93ab0817a8144a1a8bd2837bd0ee0f5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raudres Fleischer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Raudres Fleischer,ou=Administrative,dc=bitwarden,dc=com", - email: "FleischR@feab464eed244fca93a5368f188977a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Thomson Barkwill,ou=Product Testing,dc=bitwarden,dc=com", - email: "BarkwilT@8f055851cf2e446194b128d0faf47339.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laslo Anstett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Laslo Anstett,ou=Human Resources,dc=bitwarden,dc=com", - email: "AnstettL@427178a8618c4a42931dd481e9a5bd65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ovila Liverman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ovila Liverman,ou=Management,dc=bitwarden,dc=com", - email: "LivermaO@4a562374ace845b8b062489d81f91f68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angy Walkins,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Angy Walkins,ou=Payroll,dc=bitwarden,dc=com", - email: "WalkinsA@9cc24278bf94488da9a21e87f139d8ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hesham Ellison,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hesham Ellison,ou=Management,dc=bitwarden,dc=com", - email: "EllisonH@dcfeb1e34dfd4d498a4c69e47113773f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arnett Boone,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Arnett Boone,ou=Janitorial,dc=bitwarden,dc=com", - email: "BooneA@3ab4b0bbf0e7419c9f849fbf29c78286.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tawauna Culver,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tawauna Culver,ou=Human Resources,dc=bitwarden,dc=com", - email: "CulverT@826f44c090e247dea6dde88876c0151e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annelise Traulich,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Annelise Traulich,ou=Human Resources,dc=bitwarden,dc=com", - email: "TraulicA@04afc29a247d444f9a8e905bda30c780.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farouk Goridkov,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Farouk Goridkov,ou=Peons,dc=bitwarden,dc=com", - email: "GoridkoF@685481fe6bd14be085fc26453aa34d71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loris Huestis,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Loris Huestis,ou=Management,dc=bitwarden,dc=com", - email: "HuestisL@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sabrina Gascho,ou=Human Resources,dc=bitwarden,dc=com", - email: "GaschoS@c3a00c67940342bebf6eb781d8fd6a4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sile Creighton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sile Creighton,ou=Human Resources,dc=bitwarden,dc=com", - email: "CreightS@47f9af8d84f643d496d8679ba6e8db0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deborah Marui,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Deborah Marui,ou=Payroll,dc=bitwarden,dc=com", - email: "MaruiD@b5bcc4ce776e4805ab4216703177730e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drona Hahn,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Drona Hahn,ou=Peons,dc=bitwarden,dc=com", - email: "HahnD@59110a8eb1b44c7887a8222252c623b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Florenza Nyberg,ou=Product Testing,dc=bitwarden,dc=com", - email: "NybergF@1ee541f8be124dfb9bee70e5bd91693b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genia Pewitt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Genia Pewitt,ou=Product Testing,dc=bitwarden,dc=com", - email: "PewittG@0c75759c6a414aae8103d4c8529d60da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annet Bagshaw,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Annet Bagshaw,ou=Peons,dc=bitwarden,dc=com", - email: "BagshawA@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martha Hilaire,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Martha Hilaire,ou=Product Development,dc=bitwarden,dc=com", - email: "HilaireM@60825058a7f74da9878a9c767bd93e3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Consuelo Welch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Consuelo Welch,ou=Management,dc=bitwarden,dc=com", - email: "WelchC@303ac29ae28a4feca207111066bb217f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marti Petrea,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marti Petrea,ou=Product Development,dc=bitwarden,dc=com", - email: "PetreaM@92d64cb2a6f949499e2d502731b02c99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pratibha Gater,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pratibha Gater,ou=Product Testing,dc=bitwarden,dc=com", - email: "GaterP@b1466a7610494a6ebb6083b758d41799.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lottie Cochrane,ou=Janitorial,dc=bitwarden,dc=com", - email: "CochranL@18060edcc6234a8b8fe795c650ecf126.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pojanart Edey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pojanart Edey,ou=Peons,dc=bitwarden,dc=com", - email: "EdeyP@e116936732ce45789365cbd54acef482.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maynard Shennan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maynard Shennan,ou=Product Development,dc=bitwarden,dc=com", - email: "ShennanM@221f532d70be4be481e9ed7c17f0c9ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theressa Schultze,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Theressa Schultze,ou=Peons,dc=bitwarden,dc=com", - email: "SchultzT@96ba8bbe2ea64681a15c64fdfef143e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nanon McIntyre,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nanon McIntyre,ou=Product Development,dc=bitwarden,dc=com", - email: "McIntyrN@3013258ee5854ddca90a2234ad0323a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silvia Peiser,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Silvia Peiser,ou=Peons,dc=bitwarden,dc=com", - email: "PeiserS@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meryl LeClair,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Meryl LeClair,ou=Janitorial,dc=bitwarden,dc=com", - email: "LeClairM@7d4c2ab04b8a46e18a0c092fdac02490.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tariq Standel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tariq Standel,ou=Janitorial,dc=bitwarden,dc=com", - email: "StandelT@831a31deb2a74949a5486f724fd8cfc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jsandye Fouillard,ou=Administrative,dc=bitwarden,dc=com", - email: "FouillaJ@94c56b5673e64272b822168ca80bb244.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yeung Walpole,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yeung Walpole,ou=Human Resources,dc=bitwarden,dc=com", - email: "WalpoleY@ca56dc5bc8e34932af430390e3ed31ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carita Timmerman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carita Timmerman,ou=Janitorial,dc=bitwarden,dc=com", - email: "TimmermC@f5b75ffb6f5e450e9b2f76ee0ad4b23f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ansley Kuczynski,ou=Product Testing,dc=bitwarden,dc=com", - email: "KuczynsA@b1a6b6a5513044a8a462e54235172118.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haley Herren,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Haley Herren,ou=Administrative,dc=bitwarden,dc=com", - email: "HerrenH@faf6dcfa970440eb9717745c6f18eb4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elbert Allard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Elbert Allard,ou=Human Resources,dc=bitwarden,dc=com", - email: "AllardE@5410deb36536455cba5926244af94c93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Caterina Sguigna,ou=Product Testing,dc=bitwarden,dc=com", - email: "SguignaC@c14faf1ad0834d6d9e4b1880a48b9d9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trix VO,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Trix VO,ou=Product Development,dc=bitwarden,dc=com", - email: "VOT@da7bd2be911046399d0c6417c3572f36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tommi Kapsa,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tommi Kapsa,ou=Peons,dc=bitwarden,dc=com", - email: "KapsaT@7ff24b8ce0c74adabb9529e4076ad209.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teriann Stastny,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Teriann Stastny,ou=Human Resources,dc=bitwarden,dc=com", - email: "StastnyT@232ca6cb0ac84bf8be33192693a35ba0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Khamdy Hennebury,ou=Human Resources,dc=bitwarden,dc=com", - email: "HennebuK@dab11b4d8bc0443d8cd54025f08f0682.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryant Goel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bryant Goel,ou=Peons,dc=bitwarden,dc=com", - email: "GoelB@c73f6f11deac479aa597cfaff3007ea1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willabella Darnell,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Willabella Darnell,ou=Peons,dc=bitwarden,dc=com", - email: "DarnellW@5415c52be549497a9568e3a1cfa7947d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noemi Skerlak,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Noemi Skerlak,ou=Peons,dc=bitwarden,dc=com", - email: "SkerlakN@9bbd1f32714548669db47c8054fa83ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veena Siefert,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Veena Siefert,ou=Product Development,dc=bitwarden,dc=com", - email: "SiefertV@66522c1458fb4708a90c5e0bc4989ef8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Xylina Shiflett,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShifletX@509acce88e824dae901a9dc813095e54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karyn Frankenberger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karyn Frankenberger,ou=Management,dc=bitwarden,dc=com", - email: "FrankenK@9f4dcfc9947f4a519924493e85b35351.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angil Simpkin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Angil Simpkin,ou=Human Resources,dc=bitwarden,dc=com", - email: "SimpkinA@a8ee069794fb480895e756160591d5bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berta Fetzko,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Berta Fetzko,ou=Product Development,dc=bitwarden,dc=com", - email: "FetzkoB@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lance Saltsider,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lance Saltsider,ou=Peons,dc=bitwarden,dc=com", - email: "SaltsidL@0803272b02904fab981fd623789c71d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vijai Brent,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vijai Brent,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrentV@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miss Casper,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Miss Casper,ou=Peons,dc=bitwarden,dc=com", - email: "CasperM@d71dc23a803f40a68bc3a90e123ecace.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Robyn Rousseau,ou=Human Resources,dc=bitwarden,dc=com", - email: "RousseaR@dec23ba70c794c32b757bd3a5f9b8dc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrienne Askins,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Adrienne Askins,ou=Peons,dc=bitwarden,dc=com", - email: "AskinsA@391d8dba5fa94d8e974df50be3a6709e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Omayma Kinos,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Omayma Kinos,ou=Management,dc=bitwarden,dc=com", - email: "KinosO@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francene Babin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Francene Babin,ou=Administrative,dc=bitwarden,dc=com", - email: "BabinF@085bf0384c944c1888b51dc3d32dbe90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maitilde Clerke,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maitilde Clerke,ou=Management,dc=bitwarden,dc=com", - email: "ClerkeM@4f865f7d6d624277ad8d5380d84e9135.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wileen Martel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Wileen Martel,ou=Administrative,dc=bitwarden,dc=com", - email: "MartelW@232786cf6be745b08d532519f75fd65e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Zarah Ibarra,ou=Human Resources,dc=bitwarden,dc=com", - email: "IbarraZ@a33f574fa0a24162b343e74178659859.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Charangit Fujiwara,ou=Payroll,dc=bitwarden,dc=com", - email: "FujiwarC@dddb0ef21490453ca7770ab3e7c98c8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pooh Wargnier,ou=Human Resources,dc=bitwarden,dc=com", - email: "WargnieP@cb0fd14a62264345a0844bec81676fd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salli Boroski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Salli Boroski,ou=Human Resources,dc=bitwarden,dc=com", - email: "BoroskiS@33ab1151291f417888dc3f1306704323.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lissi Straub,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lissi Straub,ou=Peons,dc=bitwarden,dc=com", - email: "StraubL@cb549985165642e0959235024946d6c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Emmalynn Rintala,ou=Product Testing,dc=bitwarden,dc=com", - email: "RintalaE@4f1519512714466da3525736d08bec31.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrian Paialunga,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Adrian Paialunga,ou=Administrative,dc=bitwarden,dc=com", - email: "PaialunA@8d7191d93987404d9ebb78d6e94231f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dido Kohl,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dido Kohl,ou=Human Resources,dc=bitwarden,dc=com", - email: "KohlD@5c05b76ad7494928a53980603065304f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hedwig Caviness,ou=Janitorial,dc=bitwarden,dc=com", - email: "CavinesH@1487aec275284e49a79c5c4099f33bdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Joan Kamyszek,ou=Janitorial,dc=bitwarden,dc=com", - email: "KamyszeJ@47f2dfd3a9d34b3ab2e3a42042757f0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chung Yarber,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chung Yarber,ou=Human Resources,dc=bitwarden,dc=com", - email: "YarberC@031f46f5e39d4ea29d56d822d19503d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KwokLan Starowicz,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=KwokLan Starowicz,ou=Management,dc=bitwarden,dc=com", - email: "StarowiK@a377e29ea3c74b90af1de2d7e1b3a80b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odile Finane,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Odile Finane,ou=Peons,dc=bitwarden,dc=com", - email: "FinaneO@09d26a3ec6db4402823e536bf9d9abd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shila Wykoff,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shila Wykoff,ou=Janitorial,dc=bitwarden,dc=com", - email: "WykoffS@22f46c043948431eb629c2788e97867d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nga Seroka,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nga Seroka,ou=Human Resources,dc=bitwarden,dc=com", - email: "SerokaN@159c272fbf964e798dcd93f76bc6dc55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gleda Ircstandards,ou=Product Development,dc=bitwarden,dc=com", - email: "IrcstanG@6230ce48d06c4adba4fee16dacf3aacb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laurel Godfrey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Laurel Godfrey,ou=Payroll,dc=bitwarden,dc=com", - email: "GodfreyL@a9638d8de81a4990b97d38b8ec08064b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marja Brivet,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marja Brivet,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrivetM@457f2ac4e79241acb223143f8483a7d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aryn Kellerman,ou=Product Testing,dc=bitwarden,dc=com", - email: "KellermA@9b4bb145d7634b188d0d60fab9cb2fce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fung Holvey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fung Holvey,ou=Management,dc=bitwarden,dc=com", - email: "HolveyF@785d053c77824c6b9058fedb831b5054.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Remy Freeth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Remy Freeth,ou=Product Testing,dc=bitwarden,dc=com", - email: "FreethR@1c65db93a4244f2389821a52627d325e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christina Schwartz,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Christina Schwartz,ou=Management,dc=bitwarden,dc=com", - email: "SchwartC@09c55424f60f401a820af7f109784bda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sissy Snelling,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sissy Snelling,ou=Human Resources,dc=bitwarden,dc=com", - email: "SnellinS@33bb1d9a8f7a4440aa69d0f82177e2a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randa Cumpston,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Randa Cumpston,ou=Administrative,dc=bitwarden,dc=com", - email: "CumpstoR@af5f99a04b4d4049bab4751bf65043cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maitreya Dpu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maitreya Dpu,ou=Administrative,dc=bitwarden,dc=com", - email: "DpuM@bc7c0ff60d4641f2b01474bcc8b086c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jon Giotis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jon Giotis,ou=Product Testing,dc=bitwarden,dc=com", - email: "GiotisJ@df6375b797c34567a9e4770a61e55877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mala Kilner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mala Kilner,ou=Product Development,dc=bitwarden,dc=com", - email: "KilnerM@0f4f6868b21d4ba883c28f9afa5b52cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melanie Bubel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Melanie Bubel,ou=Payroll,dc=bitwarden,dc=com", - email: "BubelM@f5509b991c844dc9a39d99c61a3ee567.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Collie Nentwich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Collie Nentwich,ou=Product Testing,dc=bitwarden,dc=com", - email: "NentwicC@f87253151346446facf2c747687a955b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Omer Piwkowski,ou=Human Resources,dc=bitwarden,dc=com", - email: "PiwkowsO@72dcb42620634cf59fa336b64a03ee7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yussuf DorisHampton,ou=Human Resources,dc=bitwarden,dc=com", - email: "DorisHaY@b8436b0997234174a1d3652199251b81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madella Feder,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Madella Feder,ou=Janitorial,dc=bitwarden,dc=com", - email: "FederM@ca22d526a59d4676a611c2fc1101837d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dela Hallenbeck,ou=Administrative,dc=bitwarden,dc=com", - email: "HallenbD@6ffe5ab0f525480aa833777930f34870.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roman Burleigh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roman Burleigh,ou=Product Development,dc=bitwarden,dc=com", - email: "BurleigR@d22cee8cdc104128b64ec5a3dc27a2cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SangMaun Nunn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=SangMaun Nunn,ou=Administrative,dc=bitwarden,dc=com", - email: "NunnS@a756330f88da4d03abf12059d19a1462.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ranee OFCPARM,ou=Product Testing,dc=bitwarden,dc=com", - email: "OFCPARMR@2c23fea190c640299f3fdc976ce4b7f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moria Auld,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Moria Auld,ou=Payroll,dc=bitwarden,dc=com", - email: "AuldM@848de2e1032948c1b5d78b7a20263232.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ted Demeulemeester,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ted Demeulemeester,ou=Management,dc=bitwarden,dc=com", - email: "DemeuleT@d5289993561c41498ef7b2158a5f68d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bertha Lamont,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bertha Lamont,ou=Payroll,dc=bitwarden,dc=com", - email: "LamontB@df6375b797c34567a9e4770a61e55877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shlomo Bradbury,ou=Human Resources,dc=bitwarden,dc=com", - email: "BradburS@ab3d1e9b742c4214a0c8d83acbe1ad8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hayden Francese,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hayden Francese,ou=Product Development,dc=bitwarden,dc=com", - email: "FrancesH@37b876b4a91540b4b71770c7a49beee8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeannette Quante,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jeannette Quante,ou=Management,dc=bitwarden,dc=com", - email: "QuanteJ@9cba00e55266421b93bd11c17d0407ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steffane Middleton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Steffane Middleton,ou=Peons,dc=bitwarden,dc=com", - email: "MiddletS@3b02e13d586c4243a74a50de88d81685.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tetsuyuki Kwee,ou=Payroll,dc=bitwarden,dc=com", - email: "KweeT@4641f68e88f74b89a7d91f372f89c707.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saied Streight,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Saied Streight,ou=Product Development,dc=bitwarden,dc=com", - email: "StreighS@5c51ed312b7d40789d1387ca1b76506e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marco Ethier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marco Ethier,ou=Human Resources,dc=bitwarden,dc=com", - email: "EthierM@0f1f84ce6579498d8497bfb021e0f4e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlyn Gallion,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carlyn Gallion,ou=Management,dc=bitwarden,dc=com", - email: "GallionC@ed183240d2274a60918dec7c056a1b86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=SvennErik Arcouet,ou=Human Resources,dc=bitwarden,dc=com", - email: "ArcouetS@09240d9396fc4bb88db28084b91824ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pacific Maxin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pacific Maxin,ou=Payroll,dc=bitwarden,dc=com", - email: "MaxinP@7dbb126638b0419eb87d5c967cdeef20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coursey Breiten,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Coursey Breiten,ou=Product Testing,dc=bitwarden,dc=com", - email: "BreitenC@1eb2456e111c4bd988f50cdf3b94db14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Guglielma Goulette,ou=Product Testing,dc=bitwarden,dc=com", - email: "GoulettG@92c6f7a15fa34e1ba82245e64e288948.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandea Bagi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brandea Bagi,ou=Janitorial,dc=bitwarden,dc=com", - email: "BagiB@76e7e62397cf46a7b8c004ca6e02f899.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silva Hoag,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Silva Hoag,ou=Administrative,dc=bitwarden,dc=com", - email: "HoagS@46fcd2052d404a708ecce9dd268b7838.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sybilla Tipping,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sybilla Tipping,ou=Product Development,dc=bitwarden,dc=com", - email: "TippingS@d0a24bf8a89244a2b3b170e173fce452.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mindy LePage,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mindy LePage,ou=Human Resources,dc=bitwarden,dc=com", - email: "LePageM@448f3e7713fe403a82f59754c984e2f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beckie Bach,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Beckie Bach,ou=Peons,dc=bitwarden,dc=com", - email: "BachB@8815cac7b22d401da16cfed3eab968c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catie Biermann,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Catie Biermann,ou=Product Testing,dc=bitwarden,dc=com", - email: "BiermanC@b6087bd6d2db4261b3c51adf501795f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jin Benge,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jin Benge,ou=Janitorial,dc=bitwarden,dc=com", - email: "BengeJ@a68a04065ea342e280fa5b5e07351677.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elsa Breglec,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Elsa Breglec,ou=Human Resources,dc=bitwarden,dc=com", - email: "BreglecE@0938d507654b4fc09f1956ab818aa3bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clementina Lozinski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clementina Lozinski,ou=Management,dc=bitwarden,dc=com", - email: "LozinskC@bd6697e6b7dc455a8c08101ef2dd2bfa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danella Gullekson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Danella Gullekson,ou=Administrative,dc=bitwarden,dc=com", - email: "GulleksD@02e89016127d40e485d3c85f04f6d436.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monte Luker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Monte Luker,ou=Product Testing,dc=bitwarden,dc=com", - email: "LukerM@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valry Bratten,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Valry Bratten,ou=Human Resources,dc=bitwarden,dc=com", - email: "BrattenV@b9106f7d57f74a7b92af146111acb57d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fawnia Wilemon,ou=Administrative,dc=bitwarden,dc=com", - email: "WilemonF@689212cef95e4390942ddc48435316fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lissi Neumeister,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lissi Neumeister,ou=Management,dc=bitwarden,dc=com", - email: "NeumeisL@90c585b5539b419a977fd9fb6fa21443.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claribel Digenova,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Claribel Digenova,ou=Administrative,dc=bitwarden,dc=com", - email: "DigenovC@e65b170ac1bc46edb99b4efe67ea9912.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatsman Verma,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tatsman Verma,ou=Payroll,dc=bitwarden,dc=com", - email: "VermaT@4a204781cca64dff80b312c10c7a36ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ransom Nipper,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ransom Nipper,ou=Janitorial,dc=bitwarden,dc=com", - email: "NipperR@d45f6836f596476594ad223437a92901.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilemette McWherter,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gilemette McWherter,ou=Management,dc=bitwarden,dc=com", - email: "McWhertG@a69ec3b3f0f649c684a03150d8e09c1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Holst Bringhurst,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Holst Bringhurst,ou=Management,dc=bitwarden,dc=com", - email: "BringhuH@3b9fa50f488d4490b199ca8153116bc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lainey Rzepczynski,ou=Product Testing,dc=bitwarden,dc=com", - email: "RzepczyL@62408cd3118c4cb082c607bd64879ced.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joe Guatto,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joe Guatto,ou=Peons,dc=bitwarden,dc=com", - email: "GuattoJ@728cea3206cf4fc9b4edca0209470b11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peder Jarmon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Peder Jarmon,ou=Human Resources,dc=bitwarden,dc=com", - email: "JarmonP@2cee41fd284e44d0b94fd6cd9ca5baa0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisa Lenior,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melisa Lenior,ou=Management,dc=bitwarden,dc=com", - email: "LeniorM@2e79931123d1474581b7c761e1420107.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Terez Lingafelter,ou=Human Resources,dc=bitwarden,dc=com", - email: "LingafeT@273dfd92cd9f45d0aa9350f559239559.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shafiq Archer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shafiq Archer,ou=Product Development,dc=bitwarden,dc=com", - email: "ArcherS@5e4fad8c083a467e8d3a2aebcb1ae975.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jessamyn Seiler,ou=Human Resources,dc=bitwarden,dc=com", - email: "SeilerJ@9c687885040c4312b6d12f4acbe7233d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nancee Smuda,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nancee Smuda,ou=Peons,dc=bitwarden,dc=com", - email: "SmudaN@4bcab71446194b1c9217ba0642278f17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ferdinanda Yan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ferdinanda Yan,ou=Peons,dc=bitwarden,dc=com", - email: "YanF@c74535433b9348ea8f9533567762a8ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jaymee Fainecos,ou=Human Resources,dc=bitwarden,dc=com", - email: "FainecoJ@f4d24bc7d7f24286badff0284693bf28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Portia Basinger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Portia Basinger,ou=Payroll,dc=bitwarden,dc=com", - email: "BasingeP@ef1e32b8e6ed4ea48078aa3e29bfff81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanda Holmes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vanda Holmes,ou=Management,dc=bitwarden,dc=com", - email: "HolmesV@253edaa8e3f14dbfb2bdbed6f7d5d1f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sid Shedd,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sid Shedd,ou=Payroll,dc=bitwarden,dc=com", - email: "SheddS@9bcc50c57a474f08a90b0d5f5d6e220a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrielle Cinar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Merrielle Cinar,ou=Administrative,dc=bitwarden,dc=com", - email: "CinarM@684cd4172ddb4c928bb2bd98b9b242d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginevra Varady,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ginevra Varady,ou=Product Testing,dc=bitwarden,dc=com", - email: "VaradyG@37c3227000a74816851448e0169c372e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noraly Hassan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Noraly Hassan,ou=Peons,dc=bitwarden,dc=com", - email: "HassanN@ac25d049c10a4d758088ebdaf063ce02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ron Stirling,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ron Stirling,ou=Peons,dc=bitwarden,dc=com", - email: "StirlinR@693e15a0c0664d58a0ac94c78535cda0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lauree Waytowich,ou=Product Testing,dc=bitwarden,dc=com", - email: "WaytowiL@9ad00ea283a44f0b8cc931a1caa6acca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kala Huber,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kala Huber,ou=Human Resources,dc=bitwarden,dc=com", - email: "HuberK@2ddd4900e5cd4e799049753b498a352e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Woon Rasmus,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Woon Rasmus,ou=Product Development,dc=bitwarden,dc=com", - email: "RasmusW@b4277bbde59048f39a27a7d14145a06f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaime Delf,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jaime Delf,ou=Peons,dc=bitwarden,dc=com", - email: "DelfJ@335909b2c3c5485ebfab0ea1181e56d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dina Kaunas,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dina Kaunas,ou=Janitorial,dc=bitwarden,dc=com", - email: "KaunasD@f2b1db93699d459ba377efc7d34d7aa5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Todd Gainer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Todd Gainer,ou=Product Testing,dc=bitwarden,dc=com", - email: "GainerT@ef0a65e10eae440cab70802b37d924ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HonKong Woolwine,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=HonKong Woolwine,ou=Peons,dc=bitwarden,dc=com", - email: "WoolwinH@23b4e81bd3ec499cacd409d9a1c4187c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joelie Challice,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Joelie Challice,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChallicJ@de7dfccc10c245619507096806e60950.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margalo Behlen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Margalo Behlen,ou=Product Development,dc=bitwarden,dc=com", - email: "BehlenM@30da59e65fda4079ac56eeda7237dc3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trish Meunier,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Trish Meunier,ou=Payroll,dc=bitwarden,dc=com", - email: "MeunierT@c28624b05f7d4c31811fad5e0d04b1e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verine Lilleniit,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Verine Lilleniit,ou=Management,dc=bitwarden,dc=com", - email: "LilleniV@5d9a493aeb18453b882b99b919bc8aa9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corilla Popescu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Corilla Popescu,ou=Management,dc=bitwarden,dc=com", - email: "PopescuC@ad623334663c4947b77eb81b44ea11ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wynne Hudson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wynne Hudson,ou=Product Testing,dc=bitwarden,dc=com", - email: "HudsonW@a6e91fbe946f4f22a15eb3bbe629e3da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rozalin AbouEzze,ou=Human Resources,dc=bitwarden,dc=com", - email: "AbouEzzR@ffdefe28596d40ee910185f1df335f05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laurel Leavell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Laurel Leavell,ou=Management,dc=bitwarden,dc=com", - email: "LeavellL@cfbc523ea26f4865ad5da193bd391d7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ulrika Moxon,ou=Human Resources,dc=bitwarden,dc=com", - email: "MoxonU@1f765dec942d40c392beceda646362cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madlin Irvin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Madlin Irvin,ou=Product Development,dc=bitwarden,dc=com", - email: "IrvinM@8f698818b35041d38a84f1c71ca57e14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashleigh Salembier,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ashleigh Salembier,ou=Peons,dc=bitwarden,dc=com", - email: "SalembiA@225e1be6fb454e5cab9ce645e748d35d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sacha Dailey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sacha Dailey,ou=Administrative,dc=bitwarden,dc=com", - email: "DaileyS@abccdcf5035347f79868c63de7257f89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynett Reddy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lynett Reddy,ou=Product Testing,dc=bitwarden,dc=com", - email: "ReddyL@f071c89187164ee99b36301acebce3d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bregitte Nixon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bregitte Nixon,ou=Payroll,dc=bitwarden,dc=com", - email: "NixonB@d64cbc21c43e4ae789224277adc4ecfe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peter Engineering,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Peter Engineering,ou=Product Testing,dc=bitwarden,dc=com", - email: "EngineeP@c66e42835f2044cdbf51d67978ad100e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Georgeanna Newcomb,ou=Payroll,dc=bitwarden,dc=com", - email: "NewcombG@011f4fd96d08431bb80369b07e3fd1a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carlotta Siehl,ou=Human Resources,dc=bitwarden,dc=com", - email: "SiehlC@cc8182e6de0c4840a0e434e3f5bc6e84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pawel Drane,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pawel Drane,ou=Product Development,dc=bitwarden,dc=com", - email: "DraneP@04fe092cb6474d1a9ada1ac9a8cccc86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tommy Cisco,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tommy Cisco,ou=Payroll,dc=bitwarden,dc=com", - email: "CiscoT@91a6462ae0a648b3be3eaa603f83c373.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dvm Early,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dvm Early,ou=Product Development,dc=bitwarden,dc=com", - email: "EarlyD@2b4c6e317b6b4a709a1f938d53334cdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akin Forgeron,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Akin Forgeron,ou=Product Testing,dc=bitwarden,dc=com", - email: "ForgeroA@c866ca2e96114b72baa4b93410d8e54e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cornelia Sharratt,ou=Janitorial,dc=bitwarden,dc=com", - email: "SharratC@7fd9c7724c2d4270a0b2eac9d1493bda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilllie Precoda,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lilllie Precoda,ou=Product Development,dc=bitwarden,dc=com", - email: "PrecodaL@c9144d6968894000b9f12fc184c03e52.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corinna Spragg,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Corinna Spragg,ou=Payroll,dc=bitwarden,dc=com", - email: "SpraggC@25466f5c2b4e4320afbe3eeabe295830.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoke Pitre,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yoke Pitre,ou=Product Development,dc=bitwarden,dc=com", - email: "PitreY@911b346497874da4b48522c31ad5633c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cooney Ahmed,ou=Human Resources,dc=bitwarden,dc=com", - email: "AhmedC@cf2b61eb91be49749a181d49670906ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shayla Samsonenko,ou=Human Resources,dc=bitwarden,dc=com", - email: "SamsoneS@867183e0b3a947d7ba48bd51e47b6e48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sanjay Dubroy,ou=Product Development,dc=bitwarden,dc=com", - email: "DubroyS@5d0d20354c594b5780df45982564458f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rao Grosman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rao Grosman,ou=Payroll,dc=bitwarden,dc=com", - email: "GrosmanR@c097ac51a6d248ea8109a67947a52d98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renate Belford,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Renate Belford,ou=Administrative,dc=bitwarden,dc=com", - email: "BelfordR@9edd62f23d844f5b88856a95c3a59e6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bidget Hinshaw,ou=Product Development,dc=bitwarden,dc=com", - email: "HinshawB@8eaa02b53fec48d0842607d198bfec39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Adi Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", - email: "VenguswA@f2b302e63c1f491b8051ee2ae12e4cc5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nico Olsheski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nico Olsheski,ou=Peons,dc=bitwarden,dc=com", - email: "OlsheskN@8d379ab6a2fb48eeba38a8fb058f3296.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alta Wiley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alta Wiley,ou=Product Development,dc=bitwarden,dc=com", - email: "WileyA@ab2a58524e6745f599026252999b1b4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bennet Dunham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bennet Dunham,ou=Product Testing,dc=bitwarden,dc=com", - email: "DunhamB@cd2a4cb31cd44606afad527a9c0ab96a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chandran Crutchfield,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chandran Crutchfield,ou=Peons,dc=bitwarden,dc=com", - email: "CrutchfC@097e0c32cf7545b08413d1d90b4e6756.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dexter Donnelly,ou=Human Resources,dc=bitwarden,dc=com", - email: "DonnellD@c4d474c95eb7414aac612c0c00005f95.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suha Stiles,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Suha Stiles,ou=Product Testing,dc=bitwarden,dc=com", - email: "StilesS@d0bb47da3574428792ab636cf81dc1b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheela Montague,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sheela Montague,ou=Payroll,dc=bitwarden,dc=com", - email: "MontaguS@d18d39baa87b46d5a6a9cb435aab3fce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandais Speight,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brandais Speight,ou=Peons,dc=bitwarden,dc=com", - email: "SpeightB@ff20ebf729dd433fac62940be5da4725.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ignatius USER,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ignatius USER,ou=Human Resources,dc=bitwarden,dc=com", - email: "USERI@d31d84badc274241b539993b6349fb7e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merilyn Trull,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Merilyn Trull,ou=Janitorial,dc=bitwarden,dc=com", - email: "TrullM@e2ac30b0774145abbea79773529c940e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ursulina Parise,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ursulina Parise,ou=Janitorial,dc=bitwarden,dc=com", - email: "PariseU@ba5fe26b99534871a34503bdbcf1a116.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailey Bosworth,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ailey Bosworth,ou=Payroll,dc=bitwarden,dc=com", - email: "BoswortA@b827aeadf87046f484e6a5d514c5b320.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mignon Sutherland,ou=Product Testing,dc=bitwarden,dc=com", - email: "SutherlM@65d073567be540b69713d5ac0dbae37f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ally Pickett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ally Pickett,ou=Human Resources,dc=bitwarden,dc=com", - email: "PickettA@904711b040d44240a1ca8d5e5bf46600.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viviene St,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Viviene St,ou=Human Resources,dc=bitwarden,dc=com", - email: "StV@541000d4967e42578d07a307ef7b2af7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cole Kyoung,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cole Kyoung,ou=Management,dc=bitwarden,dc=com", - email: "KyoungC@becaa689d40f42aaa9f00a36bc98176b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brana Telesis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brana Telesis,ou=Payroll,dc=bitwarden,dc=com", - email: "TelesisB@4cd17011411246b3aced8285a4854db8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naohiko Netzke,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Naohiko Netzke,ou=Management,dc=bitwarden,dc=com", - email: "NetzkeN@2126a4a93d82446eaaae85cb511bb3eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tessty Aiken,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tessty Aiken,ou=Human Resources,dc=bitwarden,dc=com", - email: "AikenT@4c228b856d024598835ac381fd7c4018.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Riannon Clifford,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Riannon Clifford,ou=Management,dc=bitwarden,dc=com", - email: "ClifforR@381edf6354fd4fd3a976c3a9bb7eb2fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxanne Kardos,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Roxanne Kardos,ou=Management,dc=bitwarden,dc=com", - email: "KardosR@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salome Shellman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Salome Shellman,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShellmaS@0e8d3e7c91844fc28c9cb7dae19a7c8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agnella Shiley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Agnella Shiley,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShileyA@f162e574cf2641c8aecb8adf97e4bdce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rozina Mcgehee,ou=Administrative,dc=bitwarden,dc=com", - email: "McgeheeR@dd11611b8b2c47a382a866e9115fea27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dyanna Mayfield,ou=Product Development,dc=bitwarden,dc=com", - email: "MayfielD@fbf9796b109949e0bf1c76d2980dbc89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Afzal Muise,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Afzal Muise,ou=Product Testing,dc=bitwarden,dc=com", - email: "MuiseA@08ef9a8d6f01404e8be2a5108314f4b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dayna Ayyuce,ou=Product Development,dc=bitwarden,dc=com", - email: "AyyuceD@273b97d9d3ef49d78a58814ba63e226c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dita Yarosh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dita Yarosh,ou=Payroll,dc=bitwarden,dc=com", - email: "YaroshD@17084ac6bac544e082e8e10baef9e88a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aparna Gamsa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Aparna Gamsa,ou=Payroll,dc=bitwarden,dc=com", - email: "GamsaA@2776697a3f73478a98d2005898493a90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angelita Letsome,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Angelita Letsome,ou=Human Resources,dc=bitwarden,dc=com", - email: "LetsomeA@399088e535dc444183a128d7fd1a5d16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peder Lotan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Peder Lotan,ou=Administrative,dc=bitwarden,dc=com", - email: "LotanP@37616ed5e0b7446e8aebcafc0ca73cc0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Etienne Courchesne,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Etienne Courchesne,ou=Payroll,dc=bitwarden,dc=com", - email: "CourcheE@22132cebdbcd4006980be48431d0e6f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ankie Alswiti,ou=Product Testing,dc=bitwarden,dc=com", - email: "AlswitiA@397e97404f3546c5897ea44ae061b6ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huguette Foos,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Huguette Foos,ou=Product Development,dc=bitwarden,dc=com", - email: "FoosH@c2abdbe4b359461aa1626e1fb6d88367.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rania Myhill,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rania Myhill,ou=Human Resources,dc=bitwarden,dc=com", - email: "MyhillR@fa687144921b436e82405266f480b00e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crista Saha,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Crista Saha,ou=Human Resources,dc=bitwarden,dc=com", - email: "SahaC@bfc4a1524e6a4503b462f17821625900.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dori Brissette,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dori Brissette,ou=Management,dc=bitwarden,dc=com", - email: "BrissetD@2373108c8b97400aab01ae216d289e3e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niki Bonney,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Niki Bonney,ou=Human Resources,dc=bitwarden,dc=com", - email: "BonneyN@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyman Busuttil,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lyman Busuttil,ou=Payroll,dc=bitwarden,dc=com", - email: "BusuttiL@0eb58aa3ce014174951ad2a21de0a67c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loon Esselbach,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Loon Esselbach,ou=Peons,dc=bitwarden,dc=com", - email: "EsselbaL@452b07d8b57c4e09984de2d02211dad8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eleni Hiers,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eleni Hiers,ou=Product Testing,dc=bitwarden,dc=com", - email: "HiersE@75be32b1be62419e90c08307d5bdff60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sal Soo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sal Soo,ou=Payroll,dc=bitwarden,dc=com", - email: "SooS@d5e4a37826af47d086930b55ea76e123.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tdr Porebski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tdr Porebski,ou=Janitorial,dc=bitwarden,dc=com", - email: "PorebskT@8959763ade854592b5aa640be7f6b9e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilian Binda,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lilian Binda,ou=Administrative,dc=bitwarden,dc=com", - email: "BindaL@5b2a207a5b574a8faa45790df76c253d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fil Craggs,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fil Craggs,ou=Product Testing,dc=bitwarden,dc=com", - email: "CraggsF@5e498601fec6496f923804926db532bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fan Bednar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fan Bednar,ou=Product Testing,dc=bitwarden,dc=com", - email: "BednarF@c87bc1fef8d745d786889b1fab00a75d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanya Koens,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kanya Koens,ou=Peons,dc=bitwarden,dc=com", - email: "KoensK@209312143e574cfaaea2ca6c8b0367c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ankie Gonzalez,ou=Janitorial,dc=bitwarden,dc=com", - email: "GonzaleA@98de157df44849a386267d7b22539a05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salomi Enns,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Salomi Enns,ou=Payroll,dc=bitwarden,dc=com", - email: "EnnsS@abb4a2ffe4d34b86b74539eca6366630.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dido Lanthier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dido Lanthier,ou=Janitorial,dc=bitwarden,dc=com", - email: "LanthieD@29c4c2eff1254d0fa5ef75aff69c2367.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jimmy Ordas,ou=Janitorial,dc=bitwarden,dc=com", - email: "OrdasJ@05a2fd0e10bf4289846c6e93c41488ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corny Uyar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Corny Uyar,ou=Product Testing,dc=bitwarden,dc=com", - email: "UyarC@1c28c1703df64c479dc58745ec8ce098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pinder Barclay,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pinder Barclay,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarclayP@1a1d47519dd04c80a33af98c584fc1ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micki Munns,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Micki Munns,ou=Administrative,dc=bitwarden,dc=com", - email: "MunnsM@b42b6a99e6224e4c89291ebf380e3cbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milly Raines,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Milly Raines,ou=Management,dc=bitwarden,dc=com", - email: "RainesM@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pas Waines,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pas Waines,ou=Administrative,dc=bitwarden,dc=com", - email: "WainesP@42f6c709ced54560a282482057eafc53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maureen Hagewood,ou=Product Testing,dc=bitwarden,dc=com", - email: "HagewooM@52253f5384a34a7d887f92c29a569c37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vilhelmina Monet,ou=Administrative,dc=bitwarden,dc=com", - email: "MonetV@06eebdce40db4f3caf1a195e21aa43e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=LeeAnne Kinahan,ou=Payroll,dc=bitwarden,dc=com", - email: "KinahanL@c6a73d7b8a13410cb2b64b9a230865a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pamelina Chohan,ou=Human Resources,dc=bitwarden,dc=com", - email: "ChohanP@edfe7405a5b34e7bb39744d59a06067d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kala Berning,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kala Berning,ou=Peons,dc=bitwarden,dc=com", - email: "BerningK@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sherye INFOMANAGEMENT,ou=Management,dc=bitwarden,dc=com", - email: "INFOMANS@eb1784d5a4ea473392ddeedf92456d2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greg Bach,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Greg Bach,ou=Product Development,dc=bitwarden,dc=com", - email: "BachG@2469394f129543cb9155b397e142213f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clay Rasmussen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clay Rasmussen,ou=Management,dc=bitwarden,dc=com", - email: "RasmussC@71e3553ec3204c71bbaf2a269c9d85d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kira Rummans,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kira Rummans,ou=Human Resources,dc=bitwarden,dc=com", - email: "RummansK@8c2b7f547cbf444783e38759415bbe6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Graciela Birtch,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Graciela Birtch,ou=Human Resources,dc=bitwarden,dc=com", - email: "BirtchG@28fd72e4e1764c5c81212e44cd7113d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Audie Pintwala,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Audie Pintwala,ou=Management,dc=bitwarden,dc=com", - email: "PintwalA@cad34ac8884647e3aa084b319084cb10.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ardath Pokrywa,ou=Janitorial,dc=bitwarden,dc=com", - email: "PokrywaA@5eb9182fed7b491098a3a7edcd1734b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabbie Chiverton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gabbie Chiverton,ou=Peons,dc=bitwarden,dc=com", - email: "ChivertG@341957991cd048f28879d34846561132.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deann Sheridan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Deann Sheridan,ou=Peons,dc=bitwarden,dc=com", - email: "SheridaD@0fc5b098eca54d018d5f544f351b55a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orie Lahaie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Orie Lahaie,ou=Human Resources,dc=bitwarden,dc=com", - email: "LahaieO@20c2d999fe734387b26090f6d88bafe4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hodge Schroff,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hodge Schroff,ou=Janitorial,dc=bitwarden,dc=com", - email: "SchroffH@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Purvee Tajbakhsh,ou=Product Testing,dc=bitwarden,dc=com", - email: "TajbakhP@f0190c6ffb8140a8888371e20ba308b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertrude Rains,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gertrude Rains,ou=Product Testing,dc=bitwarden,dc=com", - email: "RainsG@dacf8be8631a4913bc41ce43ad9faa82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChuChay Averett,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=ChuChay Averett,ou=Janitorial,dc=bitwarden,dc=com", - email: "AverettC@8c75d8449fe241b583cdc3782aba550b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amando Fernandez,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Amando Fernandez,ou=Janitorial,dc=bitwarden,dc=com", - email: "FernandA@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolann McCorkle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carolann McCorkle,ou=Product Development,dc=bitwarden,dc=com", - email: "McCorklC@0aab2eb5b2a945ccbb114c330fb9e2b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalvin Jamshidi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kalvin Jamshidi,ou=Management,dc=bitwarden,dc=com", - email: "JamshidK@121a745798f148a58c20965d5aa96755.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candis Gentzler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Candis Gentzler,ou=Management,dc=bitwarden,dc=com", - email: "GentzleC@da1b5788f067415eb6baf89891f2b951.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bridgette Zawadka,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZawadkaB@33bf45c2959941a88b691fd2a1872c3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gil Strauss,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gil Strauss,ou=Management,dc=bitwarden,dc=com", - email: "StraussG@c6dd31aa272c4fe0ab00e6867d0f3706.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tommie Rasmussen,ou=Administrative,dc=bitwarden,dc=com", - email: "RasmussT@a8d20277e9b84e2cbd2184d54cb3d399.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prab Crafton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Prab Crafton,ou=Peons,dc=bitwarden,dc=com", - email: "CraftonP@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurora Francoeur,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aurora Francoeur,ou=Peons,dc=bitwarden,dc=com", - email: "FrancoeA@0d89387630504e3d959bb5ff8f1b89ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francois Willcox,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Francois Willcox,ou=Administrative,dc=bitwarden,dc=com", - email: "WillcoxF@964166b8cdd041c68aaae270afb90271.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ethan Engelberg,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ethan Engelberg,ou=Administrative,dc=bitwarden,dc=com", - email: "EngelbeE@9eb94e6e4d9a4f12b80d8878b163f5eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beryl Security,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Beryl Security,ou=Peons,dc=bitwarden,dc=com", - email: "SecuritB@3235591d985b4d2894779cd55ac400f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessica Lovelace,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jessica Lovelace,ou=Management,dc=bitwarden,dc=com", - email: "LovelacJ@013fb02061ee471c942b593b9cccbedb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Karalynn Nakatsu,ou=Administrative,dc=bitwarden,dc=com", - email: "NakatsuK@61d349f36f74474aadc4b14dd96074dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hollyanne Oplinger,ou=Peons,dc=bitwarden,dc=com", - email: "OplingeH@7045dff84c244f86aba7fc41f1770a53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fqa Desilets,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fqa Desilets,ou=Management,dc=bitwarden,dc=com", - email: "DesiletF@8c05a39d9e7b44c5a7e0b257f5169f94.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sanjoy Goyer,ou=Administrative,dc=bitwarden,dc=com", - email: "GoyerS@5c5e024a9bda492c8e4259ce1ef75e57.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emlynn Louie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Emlynn Louie,ou=Management,dc=bitwarden,dc=com", - email: "LouieE@cfa9cc9c255049a290ed0760c3f25871.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Russel Gillies,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Russel Gillies,ou=Management,dc=bitwarden,dc=com", - email: "GilliesR@0d90cad61d78488a96f7a4204f44a269.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dionne Parniani,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dionne Parniani,ou=Peons,dc=bitwarden,dc=com", - email: "ParnianD@ce6ea378c27b45efb4f43990327ef994.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Birmingham Shippen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Birmingham Shippen,ou=Administrative,dc=bitwarden,dc=com", - email: "ShippenB@826fcfdccf1d4d45b61861cbe13ff1c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trudy Durling,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Trudy Durling,ou=Product Testing,dc=bitwarden,dc=com", - email: "DurlingT@a04d0222f0c24ad6848955600bad7ace.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kirsteni Carsten,ou=Janitorial,dc=bitwarden,dc=com", - email: "CarstenK@f48984d7e7db42f4891e864fa2c4158a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ermengarde Grafton,ou=Product Development,dc=bitwarden,dc=com", - email: "GraftonE@d6b342556d3b46a7870e5cc89504fed8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selena Mickens,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Selena Mickens,ou=Management,dc=bitwarden,dc=com", - email: "MickensS@70748fe689e2445ebbe07527f7179bb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laureen Paczek,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Laureen Paczek,ou=Management,dc=bitwarden,dc=com", - email: "PaczekL@7a9d4ad545394c749a84a09f0db95adf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gurjinder Gosset,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gurjinder Gosset,ou=Peons,dc=bitwarden,dc=com", - email: "GossetG@113514e6e7e54b9abe6e86d17d96882b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lyndsey Acree,ou=Product Testing,dc=bitwarden,dc=com", - email: "AcreeL@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dede McKeage,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dede McKeage,ou=Janitorial,dc=bitwarden,dc=com", - email: "McKeageD@96d9bfed88fc4c2fb6c7e654ef7ed3a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shanda Scroger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shanda Scroger,ou=Payroll,dc=bitwarden,dc=com", - email: "ScrogerS@973aea2b22d848eb9cb4bf9534e4dcdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ophelia McHale,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ophelia McHale,ou=Janitorial,dc=bitwarden,dc=com", - email: "McHaleO@cdc31465418c4033ab89394a6307e530.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ajit Kiens,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ajit Kiens,ou=Administrative,dc=bitwarden,dc=com", - email: "KiensA@a8523f0ff874441ba48222b981c29c83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicole Zhao,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nicole Zhao,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZhaoN@32e3fa5da06a4fd3803417733702b064.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saloma Alkire,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Saloma Alkire,ou=Peons,dc=bitwarden,dc=com", - email: "AlkireS@ef9dfa73b56a46a59a0d8721e608cbdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khosro Essery,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Khosro Essery,ou=Product Testing,dc=bitwarden,dc=com", - email: "EsseryK@bbe574aa78294bfe850c65ae7f84a624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cubicle Subissati,ou=Janitorial,dc=bitwarden,dc=com", - email: "SubissaC@d7c42a5466a44da1a41df54a07b84c5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veronike Dyck,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Veronike Dyck,ou=Human Resources,dc=bitwarden,dc=com", - email: "DyckV@c29f91644d164b77b1b413826a23bf22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Silvestro Sheaffer,ou=Product Testing,dc=bitwarden,dc=com", - email: "SheaffeS@e242cd7509b945bca8984d07e1fb1255.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mehmet Kreiger,ou=Administrative,dc=bitwarden,dc=com", - email: "KreigerM@bfc77f42d99045c285c6a308b0bd18e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franc Revelle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Franc Revelle,ou=Human Resources,dc=bitwarden,dc=com", - email: "RevelleF@9969719ee85448e7af69c94963a94618.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jeremy Trutschel,ou=Administrative,dc=bitwarden,dc=com", - email: "TrutschJ@c77f15bdbae9450390cff589a04f790b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Freda Tschaja,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Freda Tschaja,ou=Management,dc=bitwarden,dc=com", - email: "TschajaF@04598eeb76624a4a926f3360b6a1c37d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deepak Sangha,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Deepak Sangha,ou=Payroll,dc=bitwarden,dc=com", - email: "SanghaD@0d76f44b179b422cba17cc5ef36a3a2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jennee Stover,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jennee Stover,ou=Peons,dc=bitwarden,dc=com", - email: "StoverJ@4a145fc9121947ce8b995d7a67929715.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Diamond Brownfield,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Diamond Brownfield,ou=Management,dc=bitwarden,dc=com", - email: "BrownfiD@b1ec0cbcb2944a58bb6bfcd6bb77a546.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Neste Nikolopoulos,ou=Payroll,dc=bitwarden,dc=com", - email: "NikolopN@ae34afdf0bc1444aac13f1e923e2cbef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sangman Estey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sangman Estey,ou=Management,dc=bitwarden,dc=com", - email: "EsteyS@b9d4bc3408874c868cfc03e30b01af48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Abdullah Aderhold,ou=Administrative,dc=bitwarden,dc=com", - email: "AderholA@7d1d20094a364b09b76d9c95a25b43fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ola Kupitz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ola Kupitz,ou=Product Development,dc=bitwarden,dc=com", - email: "KupitzO@7016343b9c7c41d58eb428f022d1c9f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willetta Mayes,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Willetta Mayes,ou=Janitorial,dc=bitwarden,dc=com", - email: "MayesW@5fb61a5e905a4cb8b7d6000e9d19ef2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nahum Sprigings,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nahum Sprigings,ou=Product Development,dc=bitwarden,dc=com", - email: "SpriginN@4cff4a0de1f5433293445d7825473f11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kathye Demeulemeester,ou=Janitorial,dc=bitwarden,dc=com", - email: "DemeuleK@2fba4efbb4b44dbe8c7dc5c682d67dce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juile Nttest,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Juile Nttest,ou=Payroll,dc=bitwarden,dc=com", - email: "NttestJ@71f49fd634ac4515894d5fd3319ef9a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hazel Johannes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hazel Johannes,ou=Management,dc=bitwarden,dc=com", - email: "JohanneH@faeb50c13f3444b887437137742bff48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebeka Welker,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rebeka Welker,ou=Administrative,dc=bitwarden,dc=com", - email: "WelkerR@a549bdf5420c411a867c314ba75b6975.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gordon Fares,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gordon Fares,ou=Product Testing,dc=bitwarden,dc=com", - email: "FaresG@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corella Swanston,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Corella Swanston,ou=Payroll,dc=bitwarden,dc=com", - email: "SwanstoC@dcdbaaadaaee46828eda807cdf13cfd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alisun Volfe,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alisun Volfe,ou=Human Resources,dc=bitwarden,dc=com", - email: "VolfeA@baf74e2af041410097981fddefdb44ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karine McKerrow,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karine McKerrow,ou=Peons,dc=bitwarden,dc=com", - email: "McKerroK@2cba224574e34d5faf639e3a03ce86dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yvan Gandhi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yvan Gandhi,ou=Payroll,dc=bitwarden,dc=com", - email: "GandhiY@e14fec315d724d2ea3c23dddfc2b66b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrol Mair,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Darrol Mair,ou=Payroll,dc=bitwarden,dc=com", - email: "MairD@a6f3133d61d14ab9941634fba9dc1a84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Narendra Cramer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Narendra Cramer,ou=Administrative,dc=bitwarden,dc=com", - email: "CramerN@b742b209006e494cbb6f8a4e0b48b884.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christina Bittman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Christina Bittman,ou=Peons,dc=bitwarden,dc=com", - email: "BittmanC@79e870d6aec04b1188d3b93e080d363c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vo Peacocke,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vo Peacocke,ou=Administrative,dc=bitwarden,dc=com", - email: "PeacockV@1ca94e5cffb744db9996bf92fe3ed97c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Astra Moshtagh,ou=Janitorial,dc=bitwarden,dc=com", - email: "MoshtagA@763917e53f1542c7b70dd136899ad079.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salim Brushey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Salim Brushey,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrusheyS@8c75d8449fe241b583cdc3782aba550b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jorey Jensen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jorey Jensen,ou=Administrative,dc=bitwarden,dc=com", - email: "JensenJ@9e42ae77792c49b3accae8305c8837bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willow Benda,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Willow Benda,ou=Payroll,dc=bitwarden,dc=com", - email: "BendaW@44ecb368c6be4359b7f35b951bbf9473.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gurjinder Gainer,ou=Human Resources,dc=bitwarden,dc=com", - email: "GainerG@8a7d5133f2fc4397a30a337937403b76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marilyn Nardiello,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marilyn Nardiello,ou=Management,dc=bitwarden,dc=com", - email: "NardielM@cec3211a38a84845bf22d5434e7f7858.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Federica Keck,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Federica Keck,ou=Human Resources,dc=bitwarden,dc=com", - email: "KeckF@0219ab31249e4e48be0f58ce8b0b2611.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carling Sture,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carling Sture,ou=Human Resources,dc=bitwarden,dc=com", - email: "StureC@1ebbfd6f3021409cb1fecd2d24eae99b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inessa McCaffity,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Inessa McCaffity,ou=Product Development,dc=bitwarden,dc=com", - email: "McCaffiI@a5fad638ee6f446cb5871340d10b02b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ninno Dubreuil,ou=Human Resources,dc=bitwarden,dc=com", - email: "DubreuiN@644ea75b3c8c4e108b8a77cd015225ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esko Todaro,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Esko Todaro,ou=Payroll,dc=bitwarden,dc=com", - email: "TodaroE@69ba9f45dacb4e9ea85c0a5c352dcaad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charman Brownridge,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Charman Brownridge,ou=Payroll,dc=bitwarden,dc=com", - email: "BrownriC@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Le Reese,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Le Reese,ou=Peons,dc=bitwarden,dc=com", - email: "ReeseL@16389576a6824424924b1ebe0033761c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cavin Bijons,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cavin Bijons,ou=Administrative,dc=bitwarden,dc=com", - email: "BijonsC@b9fa1a04762f4b9c949eec38a2b92009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Zehra Marcantonio,ou=Administrative,dc=bitwarden,dc=com", - email: "MarcantZ@4e99a81ca6fc4c54a419915482486171.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naresh Hiltz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Naresh Hiltz,ou=Administrative,dc=bitwarden,dc=com", - email: "HiltzN@591ca642a36345a4b6041e36ab40a5cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jai Tiller,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jai Tiller,ou=Payroll,dc=bitwarden,dc=com", - email: "TillerJ@73529e16a32a4c6bb942e1dcaaaf9fe5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jocelyn Wolczanski,ou=Janitorial,dc=bitwarden,dc=com", - email: "WolczanJ@2153898ab7ac43e8a4cd26875e8f79f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esme Daniells,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Esme Daniells,ou=Payroll,dc=bitwarden,dc=com", - email: "DaniellE@610fb75ffd5d46ae971c460a81383a24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trey McWalters,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Trey McWalters,ou=Product Development,dc=bitwarden,dc=com", - email: "McWalteT@58dd45ceb2d64fb0b6fd6e1d9136b5e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edlene Bumgarner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Edlene Bumgarner,ou=Peons,dc=bitwarden,dc=com", - email: "BumgarnE@fe393581310b47dd94b5b76f5b2a4efb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tape OHearn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tape OHearn,ou=Administrative,dc=bitwarden,dc=com", - email: "OHearnT@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robbin Hayman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Robbin Hayman,ou=Administrative,dc=bitwarden,dc=com", - email: "HaymanR@bda14f77ccfe445ba2e685aa7ba46a33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debadeep Andrade,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Debadeep Andrade,ou=Peons,dc=bitwarden,dc=com", - email: "AndradeD@4831c314a96e4dc2a8c277ec349e694c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Myrtice Virgoe,ou=Payroll,dc=bitwarden,dc=com", - email: "VirgoeM@d373fdc15b634340bc25b6c3b5d64884.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parham Maunu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Parham Maunu,ou=Product Development,dc=bitwarden,dc=com", - email: "MaunuP@d233ce77e34d461bb1d8e44907c3b6ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruthe Calhoun,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ruthe Calhoun,ou=Peons,dc=bitwarden,dc=com", - email: "CalhounR@d2d670b2fced4eef91c4ec4dcd52496b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Albert Waid,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Albert Waid,ou=Janitorial,dc=bitwarden,dc=com", - email: "WaidA@cf949ad46d1d4454911d4e2468d96da8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mason Azar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mason Azar,ou=Administrative,dc=bitwarden,dc=com", - email: "AzarM@7ce0aeed71954a9186228a48b133b9f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tory Vairavan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tory Vairavan,ou=Management,dc=bitwarden,dc=com", - email: "VairavaT@eb82c31be85446d794ef51293247c40a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marisa Kuntova,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marisa Kuntova,ou=Management,dc=bitwarden,dc=com", - email: "KuntovaM@04448fada1ea4fa4b445ea9be1736993.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rungroj Rains,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rungroj Rains,ou=Product Testing,dc=bitwarden,dc=com", - email: "RainsR@7bfc17d323e0430fbe510aae2bf5a02c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tak Tihanyi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tak Tihanyi,ou=Administrative,dc=bitwarden,dc=com", - email: "TihanyiT@5e72004cd5c54ab885896ad64d562293.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Christophe Lassonde,ou=Janitorial,dc=bitwarden,dc=com", - email: "LassondC@a7f2e34ed651499b802da67d1808b3de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharlene Litz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sharlene Litz,ou=Product Development,dc=bitwarden,dc=com", - email: "LitzS@8c66b2522da94b0cbdc414c1b20aa8ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsea Ruane,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chelsea Ruane,ou=Payroll,dc=bitwarden,dc=com", - email: "RuaneC@e3a398150b8f4132954080a42a622e3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eddy Talbot,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eddy Talbot,ou=Administrative,dc=bitwarden,dc=com", - email: "TalbotE@2dddb722caf64e778877e681c7a6c935.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manhatten Tota,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Manhatten Tota,ou=Product Testing,dc=bitwarden,dc=com", - email: "TotaM@97a601b7bf924aea9927e9bb24e9dce4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annabela Gingrich,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annabela Gingrich,ou=Administrative,dc=bitwarden,dc=com", - email: "GingricA@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regis Watmore,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Regis Watmore,ou=Janitorial,dc=bitwarden,dc=com", - email: "WatmoreR@90c9f3c96d1149a298fca9a67a1ea082.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shanda Bowen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shanda Bowen,ou=Payroll,dc=bitwarden,dc=com", - email: "BowenS@8b3dde45f1e843a68494a6fd84017274.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Raymond Marcantonio,ou=Janitorial,dc=bitwarden,dc=com", - email: "MarcantR@2e65828583f54a1ea500b532b01f86b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jyoti Wells,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jyoti Wells,ou=Product Testing,dc=bitwarden,dc=com", - email: "WellsJ@2c0f47a97a024956922ed080c07c7087.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanns Sharkey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hanns Sharkey,ou=Management,dc=bitwarden,dc=com", - email: "SharkeyH@4f63ce84f4684a4bb16b885eeda98071.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reva Ostapiw,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reva Ostapiw,ou=Peons,dc=bitwarden,dc=com", - email: "OstapiwR@a586d7b2acf146c78c98936aa18b9779.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michele Elkaim,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Michele Elkaim,ou=Administrative,dc=bitwarden,dc=com", - email: "ElkaimM@5f9b96657de64882b0c090732caf2034.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emil Knappe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emil Knappe,ou=Product Development,dc=bitwarden,dc=com", - email: "KnappeE@0c23adeda02746a4adaf81e3c1305ae8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beryl Windsor,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Beryl Windsor,ou=Product Testing,dc=bitwarden,dc=com", - email: "WindsorB@a5bee62da8ef4e9d8313518642926292.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joyan Varia,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joyan Varia,ou=Human Resources,dc=bitwarden,dc=com", - email: "VariaJ@fc1da3ccee8c40f8af1318302a847e49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=ShouMei Zhelka,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZhelkaS@c58d896de82b440ca30e70c88676b48e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mitchell Gatka,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mitchell Gatka,ou=Peons,dc=bitwarden,dc=com", - email: "GatkaM@6ee94998653244b3b64234a9ee1b8607.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Harry Afkhamebrahimi,ou=Janitorial,dc=bitwarden,dc=com", - email: "AfkhameH@daaa044a56484e489d06cae427ab4eb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailee Events,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ailee Events,ou=Product Development,dc=bitwarden,dc=com", - email: "EventsA@a75d505d85fe462c8c59962b64d6cff9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yovonnda Hilder,ou=Janitorial,dc=bitwarden,dc=com", - email: "HilderY@6a3acca7ad4f4682a2006a10deabdc87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Clestell Minegishi,ou=Janitorial,dc=bitwarden,dc=com", - email: "MinegisC@ac08f267452644f09d26008f47edeeda.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Herre Cadeau,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Herre Cadeau,ou=Product Development,dc=bitwarden,dc=com", - email: "CadeauH@21063d63862a4b1aa0c4c81ad5ebd22a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaye Hafiz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kaye Hafiz,ou=Peons,dc=bitwarden,dc=com", - email: "HafizK@0b57bbcb179445e6a5883a1bd4cde9f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Magnolia Mustafa,ou=Product Development,dc=bitwarden,dc=com", - email: "MustafaM@1c6f0f2a2fa54440bc63852786ac9fdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shahid Follett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shahid Follett,ou=Product Development,dc=bitwarden,dc=com", - email: "FollettS@120317dff63442a2b732a7a30a2aec6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pet Bohanan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pet Bohanan,ou=Janitorial,dc=bitwarden,dc=com", - email: "BohananP@78fe1edd402a408aa14e400951dba12b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colly Daigle,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Colly Daigle,ou=Peons,dc=bitwarden,dc=com", - email: "DaigleC@0664693a03264f2da097850e7d87ca50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deva StOnge,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Deva StOnge,ou=Management,dc=bitwarden,dc=com", - email: "StOngeD@193a813b90bf4054a776a2e46081339c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giri Glucksman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Giri Glucksman,ou=Janitorial,dc=bitwarden,dc=com", - email: "GlucksmG@2a9b1bb4219c473fa5e7f0b996562330.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sioux Siomalas,ou=Product Testing,dc=bitwarden,dc=com", - email: "SiomalaS@e8b42fe4709142ccb9521fb60b9c2535.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jorey Gillet,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jorey Gillet,ou=Management,dc=bitwarden,dc=com", - email: "GilletJ@3de3a1d37d58453ab287cb68f7be24d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelagh Balutis,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shelagh Balutis,ou=Product Development,dc=bitwarden,dc=com", - email: "BalutisS@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rachelle Prakash,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rachelle Prakash,ou=Management,dc=bitwarden,dc=com", - email: "PrakashR@67a50420f0564b4b9d502195a9eb7324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akshay OKelly,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Akshay OKelly,ou=Management,dc=bitwarden,dc=com", - email: "OKellyA@a87753ac7bf1427f885f1082236b1df1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Condell Kho,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Condell Kho,ou=Human Resources,dc=bitwarden,dc=com", - email: "KhoC@315d5123c90042aeb10b3a82d996a1e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cordey Ballard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cordey Ballard,ou=Product Testing,dc=bitwarden,dc=com", - email: "BallardC@11fab52cda204855aedbc10b4a7ffea9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amelita Okura,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amelita Okura,ou=Management,dc=bitwarden,dc=com", - email: "OkuraA@c99079f52c0044f39a4259a6863af5cb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chuck Ferruzzi,ou=Janitorial,dc=bitwarden,dc=com", - email: "FerruzzC@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nadeen Longpre,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nadeen Longpre,ou=Management,dc=bitwarden,dc=com", - email: "LongpreN@481a6dfc2726429788928adbad28f42a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imtaz Chouinard,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Imtaz Chouinard,ou=Peons,dc=bitwarden,dc=com", - email: "ChouinaI@a12e4e310fd44c829ca56b2c9309abf6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Darbie Weckwerth,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeckwerD@c8808f8bb8c04e2da73890a2d03cb2f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melinda Tappert,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Melinda Tappert,ou=Administrative,dc=bitwarden,dc=com", - email: "TappertM@1f78d8536b924f6f89f5b50f4dff308b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Faydra Beconovich,ou=Product Testing,dc=bitwarden,dc=com", - email: "BeconovF@3eed5bea3e8942ed94a18b2b3f161ac5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Misha Karaali,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Misha Karaali,ou=Payroll,dc=bitwarden,dc=com", - email: "KaraaliM@1530b9738dfc47938d89ae3ab8cdd3f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evanne Donator,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Evanne Donator,ou=Management,dc=bitwarden,dc=com", - email: "DonatorE@20891ba894354789902e2f57e98bbb6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Korry Taghizadeh,ou=Product Testing,dc=bitwarden,dc=com", - email: "TaghizaK@729666359ed04f0995bf97703c170436.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rijswijk Rushing,ou=Product Development,dc=bitwarden,dc=com", - email: "RushingR@6178a3e5d1d842f5ab8c4894a1bcee8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gussy Prikkel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gussy Prikkel,ou=Payroll,dc=bitwarden,dc=com", - email: "PrikkelG@412af91bb3534a1b89a431db4cb8a7a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liping DaSilva,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Liping DaSilva,ou=Janitorial,dc=bitwarden,dc=com", - email: "DaSilvaL@dd696b694af7481a82bb8c0bdfe08230.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Keys MummyCraft,ou=Human Resources,dc=bitwarden,dc=com", - email: "MummyCrK@e52bb91930a9487fa1adfb0b49d2e1a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HackHoo Sayed,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=HackHoo Sayed,ou=Administrative,dc=bitwarden,dc=com", - email: "SayedH@41d9d77642444cc9ab9d5b4e9a3c43fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Brigitta Gahr,ou=Product Testing,dc=bitwarden,dc=com", - email: "GahrB@f45f4579040a481ab9737c262f8c178e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozanne Heurich,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rozanne Heurich,ou=Peons,dc=bitwarden,dc=com", - email: "HeurichR@0b56a4c94023459d8772d8f7af50540e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arabel Omura,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Arabel Omura,ou=Management,dc=bitwarden,dc=com", - email: "OmuraA@d899cd8457e040e781946aa86814b934.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marce Rivest,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marce Rivest,ou=Management,dc=bitwarden,dc=com", - email: "RivestM@ad6ed82df1fd44ba9f5907dfcef00394.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Irena Hammermeister,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Irena Hammermeister,ou=Administrative,dc=bitwarden,dc=com", - email: "HammermI@462635d48ea740ba9a66cf325662e6a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sotos Bratten,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sotos Bratten,ou=Product Development,dc=bitwarden,dc=com", - email: "BrattenS@edda584dd7a3409daa4b2eabe9e2cdb4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Venkataraman Hartleb,ou=Peons,dc=bitwarden,dc=com", - email: "HartlebV@4311bb9fc69e4905a1f6f7f3dd2b8fab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=MinhPhuc Degenova,ou=Janitorial,dc=bitwarden,dc=com", - email: "DegenovM@c87bc1fef8d745d786889b1fab00a75d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elpida Vuignier,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elpida Vuignier,ou=Administrative,dc=bitwarden,dc=com", - email: "VuignieE@fb42541289ea4a75a098aa5071cf2a78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naoma Rowe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Naoma Rowe,ou=Product Development,dc=bitwarden,dc=com", - email: "RoweN@66df60c7830b4e4788e97ef6a98c581d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rosabelle Moogk,ou=Product Development,dc=bitwarden,dc=com", - email: "MoogkR@928ad853e1494474966df7fb64907ee2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pawel Bourget,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pawel Bourget,ou=Product Testing,dc=bitwarden,dc=com", - email: "BourgetP@5f02265632114e54a556740ff6947201.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deloria Couser,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Deloria Couser,ou=Product Testing,dc=bitwarden,dc=com", - email: "CouserD@a62537fc90fa495dacdbf1e945e353e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Conni Stainback,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Conni Stainback,ou=Peons,dc=bitwarden,dc=com", - email: "StainbaC@e7a587ea64f34a73b58bcee55a44c5f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Modesta Huszarik,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Modesta Huszarik,ou=Administrative,dc=bitwarden,dc=com", - email: "HuszariM@a965fccdc0684ea39fc7e84bc33f6974.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reinhold Ribi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reinhold Ribi,ou=Peons,dc=bitwarden,dc=com", - email: "RibiR@561d94097aa347c8b67fc74b1c6c095c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loris Grimes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Loris Grimes,ou=Product Development,dc=bitwarden,dc=com", - email: "GrimesL@bd0d542943b6439fba91f92e849851ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ardelia Kopala,ou=Product Testing,dc=bitwarden,dc=com", - email: "KopalaA@710eac99d23b4aba917dbd3cddce9e4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sid Walford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sid Walford,ou=Human Resources,dc=bitwarden,dc=com", - email: "WalfordS@3b7542a95526493995dfb5d0273708af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Beatrisa Nahata,ou=Human Resources,dc=bitwarden,dc=com", - email: "NahataB@1a25c5eecf2b4862871ccde04c2d3ffb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ingrid Kruger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ingrid Kruger,ou=Peons,dc=bitwarden,dc=com", - email: "KrugerI@febac408e92c495d910b6c8cd4150caa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baha Raymond,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Baha Raymond,ou=Administrative,dc=bitwarden,dc=com", - email: "RaymondB@cffdccf91145470f922e22e1947852b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raffi Legrove,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Raffi Legrove,ou=Management,dc=bitwarden,dc=com", - email: "LegroveR@aebedd81d0064bf4bf3e053b89a4b6eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julita Shemwell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Julita Shemwell,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShemwelJ@8488bd932270494b964d988d57bbae02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pooh Claveau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pooh Claveau,ou=Payroll,dc=bitwarden,dc=com", - email: "ClaveauP@ae61f912d37d41959ec8fa8339b2d969.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haig Zumhagen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Haig Zumhagen,ou=Payroll,dc=bitwarden,dc=com", - email: "ZumhageH@7f9e6985348c418e8ff3641fece39e66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Penni Gehring,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Penni Gehring,ou=Janitorial,dc=bitwarden,dc=com", - email: "GehringP@67757dd424a44a4183c5e607b39a53fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Halie BrunerUebelhoer,ou=Human Resources,dc=bitwarden,dc=com", - email: "BrunerUH@c47fea6640d041afa6361c6048c3c046.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melodie Parham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Melodie Parham,ou=Product Testing,dc=bitwarden,dc=com", - email: "ParhamM@97fbe9f514864d40bb6dc85e4d15c1c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Violetta Fallah,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Violetta Fallah,ou=Administrative,dc=bitwarden,dc=com", - email: "FallahV@bed40ec44cae43d6ac6f5b4ad1b78f92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shay Molson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shay Molson,ou=Janitorial,dc=bitwarden,dc=com", - email: "MolsonS@2d496c580b4f4816a656973b9003a612.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guillema Halicki,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Guillema Halicki,ou=Product Testing,dc=bitwarden,dc=com", - email: "HalickiG@48f243cdc32d45d6aad070d357ee442e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hardyal Millspaugh,ou=Payroll,dc=bitwarden,dc=com", - email: "MillspaH@354ea0fe89ed4f6794beb933c091a753.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sacto Kao,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sacto Kao,ou=Peons,dc=bitwarden,dc=com", - email: "KaoS@5f07a6760f8048cca79c8506ff02e587.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linh Kishi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Linh Kishi,ou=Peons,dc=bitwarden,dc=com", - email: "KishiL@45ff518891da43879283e296db76d389.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Careers Caves,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Careers Caves,ou=Janitorial,dc=bitwarden,dc=com", - email: "CavesC@29b1fd9375ce41f58146a7a83c10d36d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lezlie Niebudek,ou=Janitorial,dc=bitwarden,dc=com", - email: "NiebudeL@a1ff5ce57b0d4a5ab92e5a7972b3c4b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolina Kopke,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nicolina Kopke,ou=Payroll,dc=bitwarden,dc=com", - email: "KopkeN@79a51a140338408bbf63aba2c3dbf6b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristel Credico,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kristel Credico,ou=Human Resources,dc=bitwarden,dc=com", - email: "CredicoK@a87753ac7bf1427f885f1082236b1df1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pankaj Clow,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pankaj Clow,ou=Peons,dc=bitwarden,dc=com", - email: "ClowP@52e3bacc4e944c2c91ef1651bd1ffb67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Radomir Remson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Radomir Remson,ou=Administrative,dc=bitwarden,dc=com", - email: "RemsonR@1843ab31697149758be7883059806164.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Josefina Parr,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Josefina Parr,ou=Janitorial,dc=bitwarden,dc=com", - email: "ParrJ@3e63d8e6be204b07ac7dd7943bdd9def.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Korie Grooms,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Korie Grooms,ou=Product Development,dc=bitwarden,dc=com", - email: "GroomsK@48ac2947eb2846ecbb24ee61115af2ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nelson Lytle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nelson Lytle,ou=Product Development,dc=bitwarden,dc=com", - email: "LytleN@7417b89a4c9b42108e005c797d9f25b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greet Driver,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Greet Driver,ou=Product Development,dc=bitwarden,dc=com", - email: "DriverG@65ad77a0a7134c499e3c0bd4fd84a125.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phillis Pravato,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Phillis Pravato,ou=Peons,dc=bitwarden,dc=com", - email: "PravatoP@f07a2704744543c99ec010f0a9ec3d24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patch Eberlin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Patch Eberlin,ou=Product Development,dc=bitwarden,dc=com", - email: "EberlinP@46a5b2004b96415ab4737f15ebd51c9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malorie Goos,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Malorie Goos,ou=Janitorial,dc=bitwarden,dc=com", - email: "GoosM@d101e1afb4ea499090e0cf8a9001282a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=KaiWai Kakuta,ou=Human Resources,dc=bitwarden,dc=com", - email: "KakutaK@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jocelyne Jewett,ou=Product Testing,dc=bitwarden,dc=com", - email: "JewettJ@7823a7fa07b54bdaae5cb7f5372a506a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Effie Pracht,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Effie Pracht,ou=Product Development,dc=bitwarden,dc=com", - email: "PrachtE@b9847a93402b4d7e9eab2f6967e34b51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elza Gillon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Elza Gillon,ou=Janitorial,dc=bitwarden,dc=com", - email: "GillonE@023bd51128a84b87b5fce00ccef4b03b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maddy Falletti,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maddy Falletti,ou=Product Development,dc=bitwarden,dc=com", - email: "FallettM@a14fac4b746f43c590992c0cffe25f62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candee DiFalco,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Candee DiFalco,ou=Management,dc=bitwarden,dc=com", - email: "DiFalcoC@b91b1bdb74a74584ada128918dac6578.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martynne McCloughan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Martynne McCloughan,ou=Administrative,dc=bitwarden,dc=com", - email: "McClougM@e974b86e9f10486baa2ed0156d74e959.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marris Lobello,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marris Lobello,ou=Janitorial,dc=bitwarden,dc=com", - email: "LobelloM@a12359b394964b42a1a462b3cf340545.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rochell Denmark,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rochell Denmark,ou=Payroll,dc=bitwarden,dc=com", - email: "DenmarkR@50d7c806edce40aba32e1f9a44a2e284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Annabelle Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", - email: "MallozzA@879fb49a3d5b4e1fa5900dee565590ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hoekstra Abello,ou=Human Resources,dc=bitwarden,dc=com", - email: "AbelloH@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ngai Michael,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ngai Michael,ou=Human Resources,dc=bitwarden,dc=com", - email: "MichaelN@1487aec275284e49a79c5c4099f33bdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JoLee Fredette,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=JoLee Fredette,ou=Administrative,dc=bitwarden,dc=com", - email: "FredettJ@bea3a59f852447369b2ae52dc89b101a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liv Veedell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Liv Veedell,ou=Product Testing,dc=bitwarden,dc=com", - email: "VeedellL@4112fa5751f947c9a6ebd8e6086a4cce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verina Coddington,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Verina Coddington,ou=Product Development,dc=bitwarden,dc=com", - email: "CoddingV@295d3c69941a4f1d86039d10e3a7aaba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=March Easton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=March Easton,ou=Management,dc=bitwarden,dc=com", - email: "EastonM@a71c06be904c4f5a89c92e6a220b8c20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jianli Kahhale,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jianli Kahhale,ou=Management,dc=bitwarden,dc=com", - email: "KahhaleJ@118d571b1571425c87bcb58317919134.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shamshad Bozicevich,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shamshad Bozicevich,ou=Management,dc=bitwarden,dc=com", - email: "BozicevS@99fd889b48504677bce0dc492f7e0cf3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renate Kahkonen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Renate Kahkonen,ou=Management,dc=bitwarden,dc=com", - email: "KahkoneR@01d338da3bbb4fa4b6b8cadeb6cc7fae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aile Lugsdin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aile Lugsdin,ou=Product Development,dc=bitwarden,dc=com", - email: "LugsdinA@9a209519348642769473b09231da3137.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Warwick Gamarnik,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Warwick Gamarnik,ou=Peons,dc=bitwarden,dc=com", - email: "GamarniW@b32188c77df94658a5bd155a122ff5d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candee Brubaker,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Candee Brubaker,ou=Administrative,dc=bitwarden,dc=com", - email: "BrubakeC@58dd45ceb2d64fb0b6fd6e1d9136b5e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Quality Mitchelson,ou=Janitorial,dc=bitwarden,dc=com", - email: "MitchelQ@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Iolanthe Graydon,ou=Payroll,dc=bitwarden,dc=com", - email: "GraydonI@fbdbd66aeaef467fbc2710eddae924ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nashir Tue,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nashir Tue,ou=Administrative,dc=bitwarden,dc=com", - email: "TueN@ec7767ad12a9472c8d17e1cdb30756bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lolita Hanson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lolita Hanson,ou=Product Development,dc=bitwarden,dc=com", - email: "HansonL@7a434719bc114db3972a25b2d060ed01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antoinette WPMS,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Antoinette WPMS,ou=Management,dc=bitwarden,dc=com", - email: "WPMSA@2a72bc736ffb4d18ae10b2685172d382.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tetsuya Gratton,ou=Product Development,dc=bitwarden,dc=com", - email: "GrattonT@90c63f93b5c34551a51a09ea98b45b93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margaux Rollo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Margaux Rollo,ou=Human Resources,dc=bitwarden,dc=com", - email: "RolloM@516fd466f892459aa17afb2e000f114d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idell Pung,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Idell Pung,ou=Product Testing,dc=bitwarden,dc=com", - email: "PungI@1a2826f06614436585f4faa14772cf1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tandy Etoh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tandy Etoh,ou=Administrative,dc=bitwarden,dc=com", - email: "EtohT@d38183f1beee43c2843b4bd66bd7aeb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alaine Ceponis,ou=Janitorial,dc=bitwarden,dc=com", - email: "CeponisA@8580a70392584c53919bc1436276cfec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Clemmie Popowicz,ou=Product Development,dc=bitwarden,dc=com", - email: "PopowicC@3a7ea7b63f2347d79118d797bf5ba14c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Twana Schneider,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Twana Schneider,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchneidT@af38a73cbf364504a84e0d960de55c89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Isabeau Neumeister,ou=Human Resources,dc=bitwarden,dc=com", - email: "NeumeisI@fd9ad4f975c84639a80c728d3cc48c21.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mariejeanne Dispatch,ou=Payroll,dc=bitwarden,dc=com", - email: "DispatcM@7bdb7e04a26d459886f8fcaa0d3da8fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lari Killeen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lari Killeen,ou=Management,dc=bitwarden,dc=com", - email: "KilleenL@787ed9ee968044deafa9223d83fb6389.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pars Tigg,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pars Tigg,ou=Management,dc=bitwarden,dc=com", - email: "TiggP@fae0bbac7f79493abf73636a27934a4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjy Botyrius,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marjy Botyrius,ou=Payroll,dc=bitwarden,dc=com", - email: "BotyriuM@11f1e40e9ec0473fb6e1f9f61a3e0fb3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sol Trefts,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sol Trefts,ou=Payroll,dc=bitwarden,dc=com", - email: "TreftsS@caee9adce3034f8297c376f15d554364.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rhonda Hashimoto,ou=Janitorial,dc=bitwarden,dc=com", - email: "HashimoR@7a98f63f548e4181910f55a6615fe20b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Thaddeus Blezard,ou=Janitorial,dc=bitwarden,dc=com", - email: "BlezardT@b06576e7cc594af79143f743174735e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leigh Boulerice,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Leigh Boulerice,ou=Peons,dc=bitwarden,dc=com", - email: "BouleriL@ba60a08b258046f98633fd3c737e4f83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harpal Bashton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Harpal Bashton,ou=Management,dc=bitwarden,dc=com", - email: "BashtonH@cad99f43d8bb4bb385c87910c97d09f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valeda Laliberte,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Valeda Laliberte,ou=Management,dc=bitwarden,dc=com", - email: "LaliberV@50bab9f9cf1041a789372e5001d27214.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winnah Kabel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Winnah Kabel,ou=Administrative,dc=bitwarden,dc=com", - email: "KabelW@ed183240d2274a60918dec7c056a1b86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lecien Bunting,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lecien Bunting,ou=Human Resources,dc=bitwarden,dc=com", - email: "BuntingL@fd2e8792325547b4a50dd52cda4bc63f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blancha TempleDowning,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Blancha TempleDowning,ou=Peons,dc=bitwarden,dc=com", - email: "TempleDB@ffcb266a0b9d4db986bd5378efac6255.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kyla Burton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kyla Burton,ou=Human Resources,dc=bitwarden,dc=com", - email: "BurtonK@9976848d05f44dc7b3c15447d59df348.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carlos Maenpaa,ou=Payroll,dc=bitwarden,dc=com", - email: "MaenpaaC@903db400671047c5907d8ec3d0a66865.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronna Faison,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ronna Faison,ou=Payroll,dc=bitwarden,dc=com", - email: "FaisonR@4ec057135a5045f1a9989fae44b8b962.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Andriette Waggoner,ou=Product Testing,dc=bitwarden,dc=com", - email: "WaggoneA@033d1e3842054827934162f293371ad8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nel Mohrmann,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nel Mohrmann,ou=Peons,dc=bitwarden,dc=com", - email: "MohrmanN@bd2b16b9113e410aa30a7324ebc29f82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naresh Kok,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Naresh Kok,ou=Human Resources,dc=bitwarden,dc=com", - email: "KokN@60070b5c9a414237bcef3d5ef92b6fc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cang Kinamon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cang Kinamon,ou=Management,dc=bitwarden,dc=com", - email: "KinamonC@0573bd112aca464284b0d9eac2753606.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amalea Snyder,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amalea Snyder,ou=Management,dc=bitwarden,dc=com", - email: "SnyderA@04fd79718c234b9f9f5fe778cb098d8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caryn Rizk,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Caryn Rizk,ou=Human Resources,dc=bitwarden,dc=com", - email: "RizkC@c9a4b60fa1eb470eb513b6d959a476c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edel AbiAad,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Edel AbiAad,ou=Management,dc=bitwarden,dc=com", - email: "AbiAadE@9dc8b996c4c343d08d2e402f031d6954.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jey Dufresne,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jey Dufresne,ou=Management,dc=bitwarden,dc=com", - email: "DufresnJ@cebe5fd44d104e0c944a51b06ff453a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kass Lyliston,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kass Lyliston,ou=Peons,dc=bitwarden,dc=com", - email: "LylistoK@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ervin Heiliger,ou=Janitorial,dc=bitwarden,dc=com", - email: "HeiligeE@4ac57cc4c8df40e5be8ca01811d8b65f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabie Autoquote,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gabie Autoquote,ou=Management,dc=bitwarden,dc=com", - email: "AutoquoG@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vina Sebastian,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Vina Sebastian,ou=Peons,dc=bitwarden,dc=com", - email: "SebastiV@a233dd701c7c4e6f923dfda0c8035d34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annabella Blasing,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Annabella Blasing,ou=Janitorial,dc=bitwarden,dc=com", - email: "BlasingA@aea15ef0456d4cd2988add4323d0edb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolette Spann,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nicolette Spann,ou=Human Resources,dc=bitwarden,dc=com", - email: "SpannN@b705e8d79a484d328a25479946645112.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blancha Bradee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Blancha Bradee,ou=Product Development,dc=bitwarden,dc=com", - email: "BradeeB@32fe0278ad444a168aa2715b611540e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamarah Solheim,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tamarah Solheim,ou=Administrative,dc=bitwarden,dc=com", - email: "SolheimT@97b4c3b829464aa0bb43fe8a8ccef3d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Natascha Colquhoun,ou=Payroll,dc=bitwarden,dc=com", - email: "ColquhoN@24af3dac7e7c4580ae1949e9dbc7b5bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cleo Depew,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cleo Depew,ou=Product Testing,dc=bitwarden,dc=com", - email: "DepewC@eea1742874a24c018dad0a15722dcd0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gordon Galligan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gordon Galligan,ou=Peons,dc=bitwarden,dc=com", - email: "GalligaG@07bd96f3cb0145a4932b94a7fa79769c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Blanca Tiseo,ou=Janitorial,dc=bitwarden,dc=com", - email: "TiseoB@4c905761dfd345f0bec1fb45af8eef64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terra Brookhart,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Terra Brookhart,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrookhaT@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elladine Wegrowicz,ou=Peons,dc=bitwarden,dc=com", - email: "WegrowiE@d275905ea7174c8cab687a1c10573cba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hellen Benzick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hellen Benzick,ou=Payroll,dc=bitwarden,dc=com", - email: "BenzickH@eb3f0e8c75a34fb08e8613d84752c88e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenda Serrano,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jenda Serrano,ou=Peons,dc=bitwarden,dc=com", - email: "SerranoJ@4e538c8f19a6425fb1cdb195a463bc6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chrystal Draves,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Chrystal Draves,ou=Management,dc=bitwarden,dc=com", - email: "DravesC@7dc4d22df72d4b7ea867e84e8a1a18c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mounir Wadsworth,ou=Janitorial,dc=bitwarden,dc=com", - email: "WadsworM@012a5cfab6324107b0814d36b8f41041.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Daphna Bedoya,ou=Human Resources,dc=bitwarden,dc=com", - email: "BedoyaD@5bf44110ed3743de8af47997ebc8b9fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicola Dallago,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nicola Dallago,ou=Management,dc=bitwarden,dc=com", - email: "DallagoN@32dba15e87f24180a52c2c7b3d16eedf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gisele Zattiero,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gisele Zattiero,ou=Payroll,dc=bitwarden,dc=com", - email: "ZattierG@b1bef6e7419544e590275224d59e367b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nora Hishchak,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nora Hishchak,ou=Peons,dc=bitwarden,dc=com", - email: "HishchaN@b968f655b96e4ab58fcc2e120f71a7b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jagat Luszczek,ou=Product Testing,dc=bitwarden,dc=com", - email: "LuszczeJ@742fffab1692421a8cd639c32b1e9444.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrili Janelle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Merrili Janelle,ou=Janitorial,dc=bitwarden,dc=com", - email: "JanelleM@ef3d7ce4cf844052b389bbe166c531bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claire Valia,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Claire Valia,ou=Payroll,dc=bitwarden,dc=com", - email: "ValiaC@bd9a2e982f524b64b04ed8892de43767.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carol Vonderhaar,ou=Administrative,dc=bitwarden,dc=com", - email: "VonderhC@b4636d7df71f4835817a7714801280f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farica Horwitz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Farica Horwitz,ou=Payroll,dc=bitwarden,dc=com", - email: "HorwitzF@1a03988f40a349c1abd53f73e0e2d871.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gregory Bluethner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gregory Bluethner,ou=Peons,dc=bitwarden,dc=com", - email: "BluethnG@b23ade701c9b44bd8b1f8301f8f9850d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wanda Patchcor,ou=Product Testing,dc=bitwarden,dc=com", - email: "PatchcoW@1114ec94893c4de2b94b261fe2161258.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wenonah Thaxton,ou=Janitorial,dc=bitwarden,dc=com", - email: "ThaxtonW@d878ac5b0d4241d7915c9954538bd502.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beatrice Dikaitis,ou=Administrative,dc=bitwarden,dc=com", - email: "DikaitiB@28fd72e4e1764c5c81212e44cd7113d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liviu Hume,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Liviu Hume,ou=Payroll,dc=bitwarden,dc=com", - email: "HumeL@f6f62c454ca5497f934797aa1b8b4a27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angelie Heile,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Angelie Heile,ou=Peons,dc=bitwarden,dc=com", - email: "HeileA@3dcbee9a39f24536abfacdb314d6aedd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatiania Delage,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tatiania Delage,ou=Peons,dc=bitwarden,dc=com", - email: "DelageT@5393bc67f8ee409593915ca305198b36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celisse Murdoch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Celisse Murdoch,ou=Management,dc=bitwarden,dc=com", - email: "MurdochC@8f1eaf49a29e432392cfb7c9cddefdee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=NamKiet Phillip,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=NamKiet Phillip,ou=Management,dc=bitwarden,dc=com", - email: "PhillipN@4bf0b66c2c324315954b77c93acd3366.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Christyna Kuruppillai,ou=Administrative,dc=bitwarden,dc=com", - email: "KuruppiC@b549d25d2e83426ba75b6cd3682958b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=JamesMichael Pankiw,ou=Payroll,dc=bitwarden,dc=com", - email: "PankiwJ@cd18bcce2da342b59f0e8c980723ee09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrili Wierzba,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Merrili Wierzba,ou=Product Development,dc=bitwarden,dc=com", - email: "WierzbaM@536c0f4fa5054c52a7d0385b00e9be00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kittie Gabbai,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kittie Gabbai,ou=Peons,dc=bitwarden,dc=com", - email: "GabbaiK@3804896e582c4b3cac297cdd6774c60b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Timi Hendriks,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Timi Hendriks,ou=Payroll,dc=bitwarden,dc=com", - email: "HendrikT@4054b4da0e93482c9b8c467cfec2cd04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deana Cargnelli,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Deana Cargnelli,ou=Management,dc=bitwarden,dc=com", - email: "CargnelD@34778f743f144f1c8feb88659969b135.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lizzie Petro,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lizzie Petro,ou=Product Development,dc=bitwarden,dc=com", - email: "PetroL@3e85ba8a9fd94b8ea8a79fbaf36e29c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Costanza Kristjanson,ou=Janitorial,dc=bitwarden,dc=com", - email: "KristjaC@a5c8780c86ee42949bb714c84dc95d44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ardyth Dunajski,ou=Product Testing,dc=bitwarden,dc=com", - email: "DunajskA@50ccd4f167194cf699a420ec04455c31.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lecien Trachsel,ou=Product Testing,dc=bitwarden,dc=com", - email: "TrachseL@a922ba05488e401e9633fbd1813d714f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shyam Johnsen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shyam Johnsen,ou=Product Development,dc=bitwarden,dc=com", - email: "JohnsenS@abac2f30214948ccb965a208d10fe9a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valencia Tomlinson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Valencia Tomlinson,ou=Management,dc=bitwarden,dc=com", - email: "TomlinsV@e903049a2f314871bf6a031a14c79162.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Magdalene Bonahoom,ou=Human Resources,dc=bitwarden,dc=com", - email: "BonahooM@e49df1f8a4c2443e88b68c678fa533db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frederic Scurlock,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Frederic Scurlock,ou=Administrative,dc=bitwarden,dc=com", - email: "ScurlocF@52d447bfc2464a51a20925b35098fffa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guillema McGorman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Guillema McGorman,ou=Product Development,dc=bitwarden,dc=com", - email: "McGormaG@47840548eaea4456bf120d7525ee74e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenda Ostarello,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jenda Ostarello,ou=Payroll,dc=bitwarden,dc=com", - email: "OstarelJ@ec5b72978f304decbd01b86ff428bb78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rivkah Neywick,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rivkah Neywick,ou=Peons,dc=bitwarden,dc=com", - email: "NeywickR@d153ea0cdea446bcae59fcfadb7ae1da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nathan Moeschet,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoescheN@c414ae30173b4d3083f9e3651e1dd6f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coursdev Angeli,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Coursdev Angeli,ou=Peons,dc=bitwarden,dc=com", - email: "AngeliC@034a5e94f32b417b81eaf2086bd44c48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dix Ewanchyna,ou=Product Testing,dc=bitwarden,dc=com", - email: "EwanchyD@7dbdfd93e54449ecbd6ac06f80575902.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dari Ersil,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dari Ersil,ou=Payroll,dc=bitwarden,dc=com", - email: "ErsilD@a7dbc414c7f248bda6ef29312aa17345.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjolein Stephens,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marjolein Stephens,ou=Product Development,dc=bitwarden,dc=com", - email: "StephenM@569cc4df4bc94c2683e21477219c08c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doro Vempati,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Doro Vempati,ou=Human Resources,dc=bitwarden,dc=com", - email: "VempatiD@f167cff0138c406287e1a7234664f7ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sono Pokrifcak,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sono Pokrifcak,ou=Management,dc=bitwarden,dc=com", - email: "PokrifcS@39597667d519425da44c2231f7169438.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moniek Bergado,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Moniek Bergado,ou=Administrative,dc=bitwarden,dc=com", - email: "BergadoM@866f4a15cdb24c75a67bad9f00bdce9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KwokWa Moriarty,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=KwokWa Moriarty,ou=Management,dc=bitwarden,dc=com", - email: "MoriartK@d78ef3d7391c4330a3c44a2851048fb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wilhelmina Bellew,ou=Janitorial,dc=bitwarden,dc=com", - email: "BellewW@1c084eedcc9c44eda88c281c7989befb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sluis Nizman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sluis Nizman,ou=Management,dc=bitwarden,dc=com", - email: "NizmanS@4964f3a69590417fbd1ca049096759e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michel Salkini,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Michel Salkini,ou=Payroll,dc=bitwarden,dc=com", - email: "SalkiniM@d2d7ca225f1e4483b8252f961b2d485f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JoDee Cownie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=JoDee Cownie,ou=Product Development,dc=bitwarden,dc=com", - email: "CownieJ@848b025264d14e669cec02146f987418.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Berangere Bourdin,ou=Human Resources,dc=bitwarden,dc=com", - email: "BourdinB@655351dde00c468b8e6a0d1ed4e66324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Steffane Zagrodney,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZagrodnS@990be6633e6a426c826b4ed97cd246bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rueben Sacchetti,ou=Product Testing,dc=bitwarden,dc=com", - email: "SacchetR@ee37751373fd4ef1b1238e54dbded0be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Germaine Turney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Germaine Turney,ou=Product Development,dc=bitwarden,dc=com", - email: "TurneyG@1dd141ee94514c5aa52c318bb9c43eb0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berenice Yates,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Berenice Yates,ou=Human Resources,dc=bitwarden,dc=com", - email: "YatesB@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geoff Catlett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Geoff Catlett,ou=Payroll,dc=bitwarden,dc=com", - email: "CatlettG@301293d91bcf43b6b56f749474f921a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MarieAndree Bour,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=MarieAndree Bour,ou=Peons,dc=bitwarden,dc=com", - email: "BourM@6460b7d3426f457f945fb005b82595d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dixie Gionet,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dixie Gionet,ou=Payroll,dc=bitwarden,dc=com", - email: "GionetD@a98f671d807c43a797dff7cd33629811.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndel Amarsi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lyndel Amarsi,ou=Peons,dc=bitwarden,dc=com", - email: "AmarsiL@f9ae3791c7af4048ba041c1bc79adda2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jacynth Zanetti,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZanettiJ@9401b30c07d641ad85c9d343e51620fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pittsburgh Pomeroy,ou=Management,dc=bitwarden,dc=com", - email: "PomeroyP@28cc7c8054f54d5097838bc00378ffcf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hulda McDowell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hulda McDowell,ou=Payroll,dc=bitwarden,dc=com", - email: "McDowelH@b0ae8165029e4a39900fe482966832f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Karlyn Haubert,ou=Human Resources,dc=bitwarden,dc=com", - email: "HaubertK@7e78b04dbd3c4b8d878396ef3d8060c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Biddie Mainwaring,ou=Janitorial,dc=bitwarden,dc=com", - email: "MainwarB@832ca72d2f454bc98e5e071288b43609.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leil Forrest,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leil Forrest,ou=Payroll,dc=bitwarden,dc=com", - email: "ForrestL@ce0ca58b605f4efe987f4366b87f6460.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natassia Mallozzi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Natassia Mallozzi,ou=Management,dc=bitwarden,dc=com", - email: "MallozzN@9ca7a4dd2cea473bb01027d45fa7651f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zack Meckler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zack Meckler,ou=Product Development,dc=bitwarden,dc=com", - email: "MecklerZ@0709c1c68975470c9ca0f7b0b26d3479.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cameron Bydeley,ou=Product Testing,dc=bitwarden,dc=com", - email: "BydeleyC@f185c5336698451d9003f4fee19cdce1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nertie Szpilfogel,ou=Payroll,dc=bitwarden,dc=com", - email: "SzpilfoN@f8a17d950a604d92acb91c7c0f8e7572.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isidora Ralph,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Isidora Ralph,ou=Administrative,dc=bitwarden,dc=com", - email: "RalphI@6b3d33b809ec4793b446277435a68094.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailis Reis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ailis Reis,ou=Product Testing,dc=bitwarden,dc=com", - email: "ReisA@b7a75ac36cfb495ca213382c6edc48fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arvin McWilton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arvin McWilton,ou=Peons,dc=bitwarden,dc=com", - email: "McWiltoA@369d31e12885450e8a3e646342f4bbde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mirna Kimbrough,ou=Payroll,dc=bitwarden,dc=com", - email: "KimbrouM@a9b974f8337643ea8609cd0bff25a863.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Paulette Piecowye,ou=Product Testing,dc=bitwarden,dc=com", - email: "PiecowyP@aa945863ba884bb0945b413cc3668682.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matti Bruce,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Matti Bruce,ou=Janitorial,dc=bitwarden,dc=com", - email: "BruceM@47ece09cd3f24518b5f5e95e47b71e12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joel Rynders,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joel Rynders,ou=Peons,dc=bitwarden,dc=com", - email: "RyndersJ@a21f5c8e73ff448fba1e73a903377739.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stefanie Malle,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Stefanie Malle,ou=Administrative,dc=bitwarden,dc=com", - email: "MalleS@c6b35f0658844e75be0a856bbda0593e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yokan Basco,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yokan Basco,ou=Peons,dc=bitwarden,dc=com", - email: "BascoY@0d3732b7ea1d4d659dee1e0435292c15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Froukje Gionet,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Froukje Gionet,ou=Administrative,dc=bitwarden,dc=com", - email: "GionetF@1d8ea622691942519634199a4665788b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rosabelle Ricciuto,ou=Payroll,dc=bitwarden,dc=com", - email: "RicciutR@a0cd6adce0a94b1fa4dd97607ada8ecc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nenad OToole,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nenad OToole,ou=Payroll,dc=bitwarden,dc=com", - email: "OTooleN@b4e6fcb990c44b4a85e8d6b21ad2c2c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aileen Haney,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Aileen Haney,ou=Human Resources,dc=bitwarden,dc=com", - email: "HaneyA@6a3acca7ad4f4682a2006a10deabdc87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alvinia Lauten,ou=Human Resources,dc=bitwarden,dc=com", - email: "LautenA@c49ba39e7a2b4003adf4f08c53c18177.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hannis Flindall,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hannis Flindall,ou=Human Resources,dc=bitwarden,dc=com", - email: "FlindalH@2e3ea6fd47a04112b8fcd5e103e3ae77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anderson Bulan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anderson Bulan,ou=Administrative,dc=bitwarden,dc=com", - email: "BulanA@b360982dfbca4b8284c115441a6deb86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Farrukh Podmaroff,ou=Administrative,dc=bitwarden,dc=com", - email: "PodmaroF@0091f742e8b849efaacb4f9b80e0f2c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denny Bourguignon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Denny Bourguignon,ou=Management,dc=bitwarden,dc=com", - email: "BourguiD@0c42f6010ae54a49bcc6db67f026f84e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shirleen Ferriss,ou=Product Development,dc=bitwarden,dc=com", - email: "FerrissS@df9fef66ff8d4a1eb163eeab8b34d029.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reeva Doherty,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Reeva Doherty,ou=Janitorial,dc=bitwarden,dc=com", - email: "DohertyR@f72aa123d23546a4b16938b7223cb6df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Piyush Holness,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Piyush Holness,ou=Management,dc=bitwarden,dc=com", - email: "HolnessP@b6e011a2296d47ac9cf137f608b1c223.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minette Hazeldine,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Minette Hazeldine,ou=Payroll,dc=bitwarden,dc=com", - email: "HazeldiM@5868dcc2878d429f81b86e9aecf3d38d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haruko Hepburn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Haruko Hepburn,ou=Management,dc=bitwarden,dc=com", - email: "HepburnH@9cbf54d03b9c41c0a58b94807ed31433.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlo Mong,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Carlo Mong,ou=Peons,dc=bitwarden,dc=com", - email: "MongC@aad41c2039bd4d01a6a56cfb8fd90330.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oksana Klein,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Oksana Klein,ou=Product Testing,dc=bitwarden,dc=com", - email: "KleinO@5750a4ef0b904e64a81925c3672ef563.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Abigail Scheuermann,ou=Payroll,dc=bitwarden,dc=com", - email: "ScheuerA@6a7ad90af8b14ef5805ef3e5ef79c783.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dimitri Pineau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dimitri Pineau,ou=Peons,dc=bitwarden,dc=com", - email: "PineauD@cc46233b48e848cf830a3d50f88b2bbe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geri Shabo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Geri Shabo,ou=Administrative,dc=bitwarden,dc=com", - email: "ShaboG@3087ee4d2688435e9ed4c4c6f3e8ba87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saied Vertolli,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Saied Vertolli,ou=Product Testing,dc=bitwarden,dc=com", - email: "VertollS@4839522ad0264d68aafb73c3cd081f79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Txp Cummings,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Txp Cummings,ou=Administrative,dc=bitwarden,dc=com", - email: "CummingT@8ec12044b3f24cc38b71b6337247088e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Britt Caruth,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Britt Caruth,ou=Human Resources,dc=bitwarden,dc=com", - email: "CaruthB@f1b30e88335e48b6b2f1076d935738fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kwong Engleman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kwong Engleman,ou=Management,dc=bitwarden,dc=com", - email: "EnglemaK@afe236498cd549b2aa927720547167bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vikki Tzuang,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vikki Tzuang,ou=Payroll,dc=bitwarden,dc=com", - email: "TzuangV@6eda6577067f465b84cdc51153ccba3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sickle StJames,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sickle StJames,ou=Administrative,dc=bitwarden,dc=com", - email: "StJamesS@5e158cc6e3de4be9888366013451c974.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cora Strohmeyer,ou=Janitorial,dc=bitwarden,dc=com", - email: "StrohmeC@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aundrea Yates,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aundrea Yates,ou=Management,dc=bitwarden,dc=com", - email: "YatesA@d1186568844c4440bc6aec688b283aec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nam Cuddy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nam Cuddy,ou=Product Testing,dc=bitwarden,dc=com", - email: "CuddyN@1084d762384c42f1a6679ab8f507fae7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Methi Zoerb,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Methi Zoerb,ou=Management,dc=bitwarden,dc=com", - email: "ZoerbM@2b996155cde34aada101f38aad1494ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elysia Zhong,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Elysia Zhong,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZhongE@e45ce72662bb48a5bc1781a700f156d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kacie Herriotts,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kacie Herriotts,ou=Management,dc=bitwarden,dc=com", - email: "HerriotK@93baf6000e434401b0373a2ea7daeeeb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermine Fung,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hermine Fung,ou=Product Development,dc=bitwarden,dc=com", - email: "FungH@4e39cf6037cc438cb5f205f487c66106.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manoj Caterina,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Manoj Caterina,ou=Product Testing,dc=bitwarden,dc=com", - email: "CaterinM@1eb1bac0652b4a1d860f7943e8882707.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Penny Sim,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Penny Sim,ou=Human Resources,dc=bitwarden,dc=com", - email: "SimP@21b42d834af34274a89f3786de268a20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grzegorz Feist,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Grzegorz Feist,ou=Administrative,dc=bitwarden,dc=com", - email: "FeistG@c4659b280be44f2584ea6e37731ba24b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadan Spears,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sadan Spears,ou=Peons,dc=bitwarden,dc=com", - email: "SpearsS@b4636d7df71f4835817a7714801280f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peter Grazzini,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Peter Grazzini,ou=Management,dc=bitwarden,dc=com", - email: "GrazzinP@87263f2ad4e44ac39562038c9af16152.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kasifa Bauer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kasifa Bauer,ou=Management,dc=bitwarden,dc=com", - email: "BauerK@88d8b282161d4154bfd3a8dda92cc317.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milena Hendricksen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Milena Hendricksen,ou=Product Development,dc=bitwarden,dc=com", - email: "HendricM@60ffb350fa6740079313430abf25721b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allix Tsui,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Allix Tsui,ou=Peons,dc=bitwarden,dc=com", - email: "TsuiA@1f2c512673774d3d9ad76f093a6114c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenda Cobban,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jenda Cobban,ou=Payroll,dc=bitwarden,dc=com", - email: "CobbanJ@b69339dab59940869a3e5a49d58c958e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Concettina Linberg,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Concettina Linberg,ou=Peons,dc=bitwarden,dc=com", - email: "LinbergC@399ec0c914824f4b8aebd42d99e8c0c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colin Tahir,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Colin Tahir,ou=Peons,dc=bitwarden,dc=com", - email: "TahirC@fc5b2b3042744b23b0983715563a446d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gates Hesche,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gates Hesche,ou=Payroll,dc=bitwarden,dc=com", - email: "HescheG@7c6819ef96bf408e8eddc78b061a602d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjie Karp,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marjie Karp,ou=Janitorial,dc=bitwarden,dc=com", - email: "KarpM@1baee55063104657aab587314d3f4ff6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorella Reeder,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorella Reeder,ou=Payroll,dc=bitwarden,dc=com", - email: "ReederD@daeb41514d9e4eb79c108728fb0c78a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sacto Eddisford,ou=Human Resources,dc=bitwarden,dc=com", - email: "EddisfoS@bdc6007cc6e34b34a9dcf44589f8b6cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shankar Brehm,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shankar Brehm,ou=Management,dc=bitwarden,dc=com", - email: "BrehmS@402d7992fc8d4f0abdb7612e07362a4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natalee Broadwell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Natalee Broadwell,ou=Administrative,dc=bitwarden,dc=com", - email: "BroadweN@2990e564c90444fbbb5903f5db67effd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gay Denette,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gay Denette,ou=Payroll,dc=bitwarden,dc=com", - email: "DenetteG@953912784f294893a08a38b4ede88ef7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wiesje Coursol,ou=Product Testing,dc=bitwarden,dc=com", - email: "CoursolW@8e3617cc8c944c82bb3ee3f96f086fbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leita Malloy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Leita Malloy,ou=Peons,dc=bitwarden,dc=com", - email: "MalloyL@cfb0243cd1fe4f70a9f0422d30776059.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Novelia Tigg,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Novelia Tigg,ou=Human Resources,dc=bitwarden,dc=com", - email: "TiggN@132f4eb9aaad4135b7b8599c496d2b6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aeriell Cottrell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aeriell Cottrell,ou=Management,dc=bitwarden,dc=com", - email: "CottrelA@25788f1e9dc14cf99cc2d18e4cb5e6eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Angelina Jacobsen,ou=Product Testing,dc=bitwarden,dc=com", - email: "JacobseA@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nickie Sicard,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nickie Sicard,ou=Product Development,dc=bitwarden,dc=com", - email: "SicardN@69a8656e77314e228a153eef610c1d7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Con Lampman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Con Lampman,ou=Product Testing,dc=bitwarden,dc=com", - email: "LampmanC@2e02b5adbe00404a986538a6f94c5721.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tidwell Plssup,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tidwell Plssup,ou=Product Development,dc=bitwarden,dc=com", - email: "PlssupT@7099256f6cc64433985279df12772e6d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Felipa Romanowski,ou=Janitorial,dc=bitwarden,dc=com", - email: "RomanowF@d236a57ac59c480697085ae127e79e8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dwight Goatcher,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dwight Goatcher,ou=Product Development,dc=bitwarden,dc=com", - email: "GoatcheD@9598004b7f184bb5a3e7c8cfe79e99ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Germana Easson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Germana Easson,ou=Product Development,dc=bitwarden,dc=com", - email: "EassonG@35bbac299f3146f4a62300231e440164.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lilly Recsnik,ou=Product Testing,dc=bitwarden,dc=com", - email: "RecsnikL@46edd6cdf36f4626b2c693acecb611c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosetta Hatz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosetta Hatz,ou=Peons,dc=bitwarden,dc=com", - email: "HatzR@3177f113b2494bf084a4349d34933284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chen Karsan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Chen Karsan,ou=Administrative,dc=bitwarden,dc=com", - email: "KarsanC@4184e18cf063406b853c169572538938.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gwennie Aronstam,ou=Human Resources,dc=bitwarden,dc=com", - email: "AronstaG@55bf87fb786d4ac6b99a663700910163.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wendell Mujahed,ou=Product Testing,dc=bitwarden,dc=com", - email: "MujahedW@1eab24bbb3db4e83b8ad0b7859744ea5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jorie Maltese,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jorie Maltese,ou=Product Development,dc=bitwarden,dc=com", - email: "MalteseJ@761b142c7930458e927f8f3e0fb5672f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dpnlab Corker,ou=Janitorial,dc=bitwarden,dc=com", - email: "CorkerD@d0ea38ebac994dc19876844fd02c8f1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corilla Filkins,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Corilla Filkins,ou=Product Development,dc=bitwarden,dc=com", - email: "FilkinsC@f7fb17758cf24933ad847773d4770955.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kassem Chaput,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kassem Chaput,ou=Payroll,dc=bitwarden,dc=com", - email: "ChaputK@565d16d72934479d9f2d0ae2e179f3ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karl Rombeek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Karl Rombeek,ou=Janitorial,dc=bitwarden,dc=com", - email: "RombeekK@511a4fe0275b495abaca9f281c6b8eb4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jacquie Loadbuilder,ou=Human Resources,dc=bitwarden,dc=com", - email: "LoadbuiJ@cc8e55108b16486f8e21052882b1416b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hiren Leinen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hiren Leinen,ou=Payroll,dc=bitwarden,dc=com", - email: "LeinenH@8029b2d4dc2441e188d25c43ec86afd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=My Handforth,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=My Handforth,ou=Human Resources,dc=bitwarden,dc=com", - email: "HandforM@d6177e62683049c2b0fc2f004265e4ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruby Duffy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ruby Duffy,ou=Janitorial,dc=bitwarden,dc=com", - email: "DuffyR@b96d23a92c60424cb67c26b9d6c07a6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranjit Chaurasia,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ranjit Chaurasia,ou=Management,dc=bitwarden,dc=com", - email: "ChaurasR@f115ded519524610ab74393c6ce8cdfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xiaofeng Dach,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Xiaofeng Dach,ou=Management,dc=bitwarden,dc=com", - email: "DachX@ced4b5fef1fc484594acf10d2913d12f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bob Chaddock,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bob Chaddock,ou=Payroll,dc=bitwarden,dc=com", - email: "ChaddocB@8b4e180a03f04f079b534af88c685eca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatrice Costas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Beatrice Costas,ou=Human Resources,dc=bitwarden,dc=com", - email: "CostasB@98fcbf8cd4594526818e89f96ce2b8ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hynda Miksik,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hynda Miksik,ou=Administrative,dc=bitwarden,dc=com", - email: "MiksikH@2050a6c4c8e746ae88bec9f7634b8d59.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquie Jablonski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jacquie Jablonski,ou=Peons,dc=bitwarden,dc=com", - email: "JablonsJ@6c5d1cc04bcc4690b1cd5f323caabcec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashok Karol,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ashok Karol,ou=Management,dc=bitwarden,dc=com", - email: "KarolA@b1a7df36ebb4473590d6bf140b605a5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zeljko Goodrow,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Zeljko Goodrow,ou=Management,dc=bitwarden,dc=com", - email: "GoodrowZ@9e59018d045045c3992ddf9f97eba64e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ManFai Yearwood,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=ManFai Yearwood,ou=Administrative,dc=bitwarden,dc=com", - email: "YearwooM@0ac0d65685754a5e856c139313371211.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grazia Ruben,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Grazia Ruben,ou=Product Development,dc=bitwarden,dc=com", - email: "RubenG@fd5b94e804a044a7a800a8f248c0732b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gee Buechner,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gee Buechner,ou=Payroll,dc=bitwarden,dc=com", - email: "BuechneG@c45f1df6bb5c46f48c3cc7bdf88a0bc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Benedicta Hamlett,ou=Product Development,dc=bitwarden,dc=com", - email: "HamlettB@a35a1dd24459415e944815d7f16bf11e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kial Skillen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kial Skillen,ou=Payroll,dc=bitwarden,dc=com", - email: "SkillenK@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raul Dantu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Raul Dantu,ou=Administrative,dc=bitwarden,dc=com", - email: "DantuR@13acf9d4e3a0437699a9a1215c20b7b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liuka Awano,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Liuka Awano,ou=Payroll,dc=bitwarden,dc=com", - email: "AwanoL@f3a0a467837a44759c47dbd3cc82740e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caryl Teder,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Caryl Teder,ou=Management,dc=bitwarden,dc=com", - email: "TederC@4c3f9ac9725344988223c5450f40e73e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shlomo Wacker,ou=Human Resources,dc=bitwarden,dc=com", - email: "WackerS@264d4763d0c84adba308d4c4cab556c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Xantippe Gutzmann,ou=Product Testing,dc=bitwarden,dc=com", - email: "GutzmanX@3e0cfeaa47ec41f7a0bdab801e102b66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lex Matheson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lex Matheson,ou=Product Development,dc=bitwarden,dc=com", - email: "MathesoL@228cb153fdc24b46957a116ec2859b16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jamie Ballard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jamie Ballard,ou=Product Testing,dc=bitwarden,dc=com", - email: "BallardJ@b2685c20be7244a2b29f08c6434ac903.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaye Telos,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gaye Telos,ou=Human Resources,dc=bitwarden,dc=com", - email: "TelosG@5230c42fa8a044a1a7ccbc367b9402a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laz Wilemon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Laz Wilemon,ou=Janitorial,dc=bitwarden,dc=com", - email: "WilemonL@dc196a8022ff465cb8dbe2eba3225125.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Euphemia Novak,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Euphemia Novak,ou=Administrative,dc=bitwarden,dc=com", - email: "NovakE@0d3f6cc1cdcf4ec187af48e309baf95b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wini Haverty,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wini Haverty,ou=Product Development,dc=bitwarden,dc=com", - email: "HavertyW@90c9f3c96d1149a298fca9a67a1ea082.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Halli Mavis,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Halli Mavis,ou=Management,dc=bitwarden,dc=com", - email: "MavisH@bcd670afb5d343b18feec15b095dbc25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WingMan Vesterdal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=WingMan Vesterdal,ou=Peons,dc=bitwarden,dc=com", - email: "VesterdW@e6fadcf8493b4530b5a3c436c8c0ed93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blithe Keuning,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Blithe Keuning,ou=Product Development,dc=bitwarden,dc=com", - email: "KeuningB@641b3c32e986403cb54e8416d6ccf047.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katya Tracz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Katya Tracz,ou=Product Testing,dc=bitwarden,dc=com", - email: "TraczK@5ffbce7650f24a03b916e3651a1a21d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raymond Biggers,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Raymond Biggers,ou=Product Development,dc=bitwarden,dc=com", - email: "BiggersR@c4dfc71b0753437c958ea6ea07827916.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theresita Mashura,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Theresita Mashura,ou=Peons,dc=bitwarden,dc=com", - email: "MashuraT@4281cc0a8ccb4f14858483f470a527dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joly Dummer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joly Dummer,ou=Human Resources,dc=bitwarden,dc=com", - email: "DummerJ@0708f7927e154039bccaf12df5697875.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Feng Yeh,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Feng Yeh,ou=Peons,dc=bitwarden,dc=com", - email: "YehF@7e96834d9f214835923bce90da137a59.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robin Martenson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Robin Martenson,ou=Peons,dc=bitwarden,dc=com", - email: "MartensR@c82abe08fb0140599e247f8f838f49b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yolanthe Veloria,ou=Product Development,dc=bitwarden,dc=com", - email: "VeloriaY@74e0243ab8e64a19864d198a422eff4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kara Tarle,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kara Tarle,ou=Administrative,dc=bitwarden,dc=com", - email: "TarleK@e0ae53f8b21d44948377b9044eb8a824.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jerzy Benoit,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jerzy Benoit,ou=Management,dc=bitwarden,dc=com", - email: "BenoitJ@e389b2400b87417ba8d4e795ac0d4324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abahri Brauer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Abahri Brauer,ou=Payroll,dc=bitwarden,dc=com", - email: "BrauerA@035c0401613a40f1b8232e8a6d1fda36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baljinder Kowalsky,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Baljinder Kowalsky,ou=Management,dc=bitwarden,dc=com", - email: "KowalskB@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kimberly Chung,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kimberly Chung,ou=Peons,dc=bitwarden,dc=com", - email: "ChungK@0fde233efcb84afa94a2f35004f78f85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaibal Andrew,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shaibal Andrew,ou=Administrative,dc=bitwarden,dc=com", - email: "AndrewS@16a833e1195d4b3a932748c3f7fbc836.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anatoly Gulbrandsen,ou=Management,dc=bitwarden,dc=com", - email: "GulbranA@3dc397261aae4717a7ed87ae45b11795.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oralla ENG,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Oralla ENG,ou=Payroll,dc=bitwarden,dc=com", - email: "ENGO@8237422e949f4acf92d97f787e6bf098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rubina RTP,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rubina RTP,ou=Payroll,dc=bitwarden,dc=com", - email: "RTPR@8eafc85110924d0ba63ca69cd0025630.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orie Larribeau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Orie Larribeau,ou=Janitorial,dc=bitwarden,dc=com", - email: "LarribeO@7cc0e5cc88d04bf3b06af1f2915df358.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brear Hagwood,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Brear Hagwood,ou=Human Resources,dc=bitwarden,dc=com", - email: "HagwoodB@65740d0bd6fb4b44a86d2ab249218002.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Radford Gille,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Radford Gille,ou=Administrative,dc=bitwarden,dc=com", - email: "GilleR@cbaf8ba54a4e4d25a6793e6fa4afc667.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shina Chari,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shina Chari,ou=Peons,dc=bitwarden,dc=com", - email: "ChariS@a4a95102a2604c2bad416eca20575783.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariel Yan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mariel Yan,ou=Payroll,dc=bitwarden,dc=com", - email: "YanM@aa11a3e30f7d4b8b9f6e08ae63f7a50f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bakoury Whitten,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bakoury Whitten,ou=Product Development,dc=bitwarden,dc=com", - email: "WhittenB@7e0d497ab2f844b18fe64fefb3782a79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donovan Bedard,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Donovan Bedard,ou=Product Development,dc=bitwarden,dc=com", - email: "BedardD@d7d5276b76fc44cfaa24d383211b91ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Almeria Whitman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Almeria Whitman,ou=Management,dc=bitwarden,dc=com", - email: "WhitmanA@c1f68539655f4334b2d630ad0e029235.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardyth Ely,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ardyth Ely,ou=Management,dc=bitwarden,dc=com", - email: "ElyA@d187b762206a464e954dc770f1e855cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Helenelizabeth Aydin,ou=Product Development,dc=bitwarden,dc=com", - email: "AydinH@8872be23f88a4521a0ed86c46ec5b63b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aleen Meckler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aleen Meckler,ou=Product Development,dc=bitwarden,dc=com", - email: "MecklerA@0dff8a8b68dc4196a7a7b4d0ac4c4efd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Riane Pantages,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Riane Pantages,ou=Janitorial,dc=bitwarden,dc=com", - email: "PantageR@6c99b676cc944a0f933ecc8837dfc70b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coral Wickes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Coral Wickes,ou=Product Development,dc=bitwarden,dc=com", - email: "WickesC@59a4a020a4c74747a44b5e60109428e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ishan Giridharagopal,ou=Peons,dc=bitwarden,dc=com", - email: "GiridhaI@0ee31c9eef10414a913b9102559e5257.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dalia Doda,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dalia Doda,ou=Product Testing,dc=bitwarden,dc=com", - email: "DodaD@4287a3ff96ae495bbb365378cecf3190.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suki Currie,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Suki Currie,ou=Product Testing,dc=bitwarden,dc=com", - email: "CurrieS@65c647306216446ba8005c16399f2df3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gateway Bain,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gateway Bain,ou=Janitorial,dc=bitwarden,dc=com", - email: "BainG@a24d9d00e9af44d1b485530b308fa6f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inger Tchir,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Inger Tchir,ou=Payroll,dc=bitwarden,dc=com", - email: "TchirI@89a15950be8c4c2a83abf35a9b3ed795.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Thomasina Ricciuto,ou=Product Testing,dc=bitwarden,dc=com", - email: "RicciutT@06146e7a51ca478db85b58b8699ede7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laraine Arellano,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Laraine Arellano,ou=Product Development,dc=bitwarden,dc=com", - email: "ArellanL@32ce2ca229594ba68651edf24232f002.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roana Fulford,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roana Fulford,ou=Administrative,dc=bitwarden,dc=com", - email: "FulfordR@453e1aa146534f789cee9f78a1f430f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camellia Sheth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Camellia Sheth,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShethC@5c05b76ad7494928a53980603065304f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fayina Passier,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fayina Passier,ou=Peons,dc=bitwarden,dc=com", - email: "PassierF@4a9e0e3540864eaba3d1bf5f637a9e4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constantia Bielan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Constantia Bielan,ou=Product Testing,dc=bitwarden,dc=com", - email: "BielanC@ab3c86d1ac584fffb00ba8469a8050a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sacha Hiller,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sacha Hiller,ou=Janitorial,dc=bitwarden,dc=com", - email: "HillerS@82c6c2c80b7a4cf98e51762d28a47c93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myranda Poff,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Myranda Poff,ou=Product Development,dc=bitwarden,dc=com", - email: "PoffM@60323e558c4a4bd4a555e49dd613a509.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Victor McDaniel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Victor McDaniel,ou=Management,dc=bitwarden,dc=com", - email: "McDanieV@2aaa600b5e5f40588e0a715782d88ce7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lindi Wenyon,ou=Janitorial,dc=bitwarden,dc=com", - email: "WenyonL@6decbec2a2934c8ab6247b1bef75e683.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ellette Oviedo,ou=Janitorial,dc=bitwarden,dc=com", - email: "OviedoE@c5403fce69dd4d1b851d054bfb3293b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=James Predon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=James Predon,ou=Human Resources,dc=bitwarden,dc=com", - email: "PredonJ@0ab5cac49bd64597ab7b3eb70643285e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alta Bergwerff,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alta Bergwerff,ou=Peons,dc=bitwarden,dc=com", - email: "BergwerA@e903049a2f314871bf6a031a14c79162.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keven Abbie,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Keven Abbie,ou=Administrative,dc=bitwarden,dc=com", - email: "AbbieK@af019db996df414484b0d304e9b3637a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karia Pintwala,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Karia Pintwala,ou=Product Development,dc=bitwarden,dc=com", - email: "PintwalK@c928c350e6174849b6cbd911c4679767.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Philly Scharf,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Philly Scharf,ou=Administrative,dc=bitwarden,dc=com", - email: "ScharfP@9fcf94ac0f884f17b9c7deb28b0f8191.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jazmin Hargrow,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jazmin Hargrow,ou=Management,dc=bitwarden,dc=com", - email: "HargrowJ@81ac61a0646d4564aa0d3d94526b0433.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=TiongHoe Kazimierski,ou=Human Resources,dc=bitwarden,dc=com", - email: "KazimieT@629e6b0253394347a14c0d18a1bb0d2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Misti Ellington,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Misti Ellington,ou=Product Testing,dc=bitwarden,dc=com", - email: "EllingtM@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nevein Quinones,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nevein Quinones,ou=Human Resources,dc=bitwarden,dc=com", - email: "QuinoneN@ebf177db39e64709a34e9e3eaf86f3b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Quon Rhodenizer,ou=Product Development,dc=bitwarden,dc=com", - email: "RhodeniQ@a8523f0ff874441ba48222b981c29c83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devinne McMasters,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Devinne McMasters,ou=Janitorial,dc=bitwarden,dc=com", - email: "McMasteD@0af2af74178d40d4b0f1a836b6891d63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Datha Winnipeg,ou=Janitorial,dc=bitwarden,dc=com", - email: "WinnipeD@3b71f78d317548348aee8244389f06bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carola Eustace,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Carola Eustace,ou=Product Testing,dc=bitwarden,dc=com", - email: "EustaceC@b64a8a3393c1430b9818da0137b2ae83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bo Xayaraj,ou=Human Resources,dc=bitwarden,dc=com", - email: "XayarajB@d240988d596c4a2aadfc9feacb7a7323.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thelma Fazel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Thelma Fazel,ou=Payroll,dc=bitwarden,dc=com", - email: "FazelT@17c722e6b16149e08a18c9a05c1e5e9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlene Galasso,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Arlene Galasso,ou=Product Development,dc=bitwarden,dc=com", - email: "GalassoA@6fd7a8381bd04762a7cac00d6e4b256a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrew Shuman,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Andrew Shuman,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShumanA@9d0d16d5fafb4671b8051c5b2764974d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rahal Reitfort,ou=Human Resources,dc=bitwarden,dc=com", - email: "ReitforR@1fd5c1cb42fa4549b7b4a650b3209bed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alane Planting,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alane Planting,ou=Peons,dc=bitwarden,dc=com", - email: "PlantinA@ae1823164d544b79bc05faac357029b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elle Chaddock,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elle Chaddock,ou=Payroll,dc=bitwarden,dc=com", - email: "ChaddocE@f724343d8470496bb0df55542d73aa26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rachael Benchimol,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rachael Benchimol,ou=Product Development,dc=bitwarden,dc=com", - email: "BenchimR@37098c17a937400b986b54e1bc765718.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claresta Ramakrishna,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Claresta Ramakrishna,ou=Management,dc=bitwarden,dc=com", - email: "RamakriC@7f3b2e6863504983b91067d1959b5550.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivory Bolon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ivory Bolon,ou=Peons,dc=bitwarden,dc=com", - email: "BolonI@cabd0c89a78947b69a999dc093307343.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brenton Buker,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brenton Buker,ou=Payroll,dc=bitwarden,dc=com", - email: "BukerB@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beau Dorion,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Beau Dorion,ou=Product Development,dc=bitwarden,dc=com", - email: "DorionB@4ad19e5c2a7149b892ada70174e983fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Yalcin Sanders,ou=Product Testing,dc=bitwarden,dc=com", - email: "SandersY@5f5111842ce14a15a15227b296d55b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lelah Souza,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lelah Souza,ou=Peons,dc=bitwarden,dc=com", - email: "SouzaL@9b8e18aa6d95436696ff678adad8f690.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helen Marshman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Helen Marshman,ou=Human Resources,dc=bitwarden,dc=com", - email: "MarshmaH@e903c41d0e6d47309eaa689127a4e081.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yvon Uae,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yvon Uae,ou=Human Resources,dc=bitwarden,dc=com", - email: "UaeY@2974cf90fe1d4835b1ba05177dd29243.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laten Vartanesian,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Laten Vartanesian,ou=Product Development,dc=bitwarden,dc=com", - email: "VartaneL@edaeeeda9dac4d529991a1e33586bf00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susy Kadamani,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Susy Kadamani,ou=Janitorial,dc=bitwarden,dc=com", - email: "KadamanS@a4520dd200454f57be2c8b99e6f4ce8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berte Hesk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Berte Hesk,ou=Product Development,dc=bitwarden,dc=com", - email: "HeskB@022bca8b2ca74ff9b8d4afa8e3f8ebf5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joy Willard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Joy Willard,ou=Management,dc=bitwarden,dc=com", - email: "WillardJ@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Britte Thorman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Britte Thorman,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThormanB@ecb60d19de8e42218392139a0168ec8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amberly Inscoe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Amberly Inscoe,ou=Payroll,dc=bitwarden,dc=com", - email: "InscoeA@52c69ee191e243ddb28fef6b7d3171f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karole Prints,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Karole Prints,ou=Product Testing,dc=bitwarden,dc=com", - email: "PrintsK@d7bcc941bf9944f4a0cf58f580b041c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ludovico Reinink,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ludovico Reinink,ou=Peons,dc=bitwarden,dc=com", - email: "ReininkL@bbe574aa78294bfe850c65ae7f84a624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elka Stubblefield,ou=Product Testing,dc=bitwarden,dc=com", - email: "StubbleE@dcb0954e4af74751966d9af34246f81f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nixie Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoddinoN@840c6c20816640f3a23c22832cd051de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maritsa Mashura,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maritsa Mashura,ou=Administrative,dc=bitwarden,dc=com", - email: "MashuraM@05056fc74dc646529206862bf66ee307.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fern McGuigan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fern McGuigan,ou=Janitorial,dc=bitwarden,dc=com", - email: "McGuigaF@56c7b6a1cbe44355a3450da29d042416.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ddene Gunasekera,ou=Payroll,dc=bitwarden,dc=com", - email: "GunasekD@6359449d115e4f1381b399393d47713b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gavin Parr,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gavin Parr,ou=Peons,dc=bitwarden,dc=com", - email: "ParrG@ab80825fb9f64e0fa2550d84decf8401.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anthiathia Nie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anthiathia Nie,ou=Management,dc=bitwarden,dc=com", - email: "NieA@d0277d6f48c14695a4405ab88f901980.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vita Larkin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vita Larkin,ou=Payroll,dc=bitwarden,dc=com", - email: "LarkinV@cb516e3803cd419889eae9883d74115c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madan Enstone,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Madan Enstone,ou=Peons,dc=bitwarden,dc=com", - email: "EnstoneM@f3b7d3d07c2e403b8aacf9226428b2e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marilyn Wainwright,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marilyn Wainwright,ou=Peons,dc=bitwarden,dc=com", - email: "WainwriM@a21b6cdd6fed4b0baf49c2dbaa964e4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amanda Tigg,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Amanda Tigg,ou=Product Development,dc=bitwarden,dc=com", - email: "TiggA@fa8aab84123a46888aa8c26b4a298c9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jermaine Shackley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jermaine Shackley,ou=Payroll,dc=bitwarden,dc=com", - email: "ShackleJ@50866cc225ba4cf3b94e887770c1c4c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fitzgerald Murat,ou=Product Testing,dc=bitwarden,dc=com", - email: "MuratF@0c4de0f537ac4059b43bc376b1423585.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alev Sunatori,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alev Sunatori,ou=Janitorial,dc=bitwarden,dc=com", - email: "SunatorA@a9b753f4c531475793fa04a6da053eaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juliette Finane,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Juliette Finane,ou=Product Development,dc=bitwarden,dc=com", - email: "FinaneJ@b1fdb151f0e64e1a958a0e82820ba255.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jessamyn Frampton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jessamyn Frampton,ou=Peons,dc=bitwarden,dc=com", - email: "FramptoJ@646d6f014bf44c5484623c7f1ed699a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norina Piersol,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Norina Piersol,ou=Product Development,dc=bitwarden,dc=com", - email: "PiersolN@a80cec7586b34ab8b14925cae24221e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Freeman Dickerson,ou=Product Testing,dc=bitwarden,dc=com", - email: "DickersF@5e4575ba15004635a07ebaa5c8dd9475.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Subhra Darby,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Subhra Darby,ou=Janitorial,dc=bitwarden,dc=com", - email: "DarbyS@9f504fcc849346579e7eeede9f9505f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnneLise Krodel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=AnneLise Krodel,ou=Management,dc=bitwarden,dc=com", - email: "KrodelA@4e28ebfb16ef4a5e8f0e2bce0a228472.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobbi Azevedo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bobbi Azevedo,ou=Management,dc=bitwarden,dc=com", - email: "AzevedoB@eb2999c8fa284a3f8c9f7cd764a9ece1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vikki Tu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vikki Tu,ou=Janitorial,dc=bitwarden,dc=com", - email: "TuV@b75dea79bbf94bcb8c735dd8f3b3eb74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Message Armstrong,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Message Armstrong,ou=Administrative,dc=bitwarden,dc=com", - email: "ArmstroM@a5eae71d9b964f5ba8783184abc9d511.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maury Este,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maury Este,ou=Product Testing,dc=bitwarden,dc=com", - email: "EsteM@87256c1d0d624b20988e4efc0e54b2ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noel Mitrani,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Noel Mitrani,ou=Payroll,dc=bitwarden,dc=com", - email: "MitraniN@7f1848e959b9431aae2d7ba89294b649.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaib Codata,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shaib Codata,ou=Human Resources,dc=bitwarden,dc=com", - email: "CodataS@50684c4df5634a1a858fe299e0e2466c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Donnette Oestreich,ou=Human Resources,dc=bitwarden,dc=com", - email: "OestreiD@8ec12044b3f24cc38b71b6337247088e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffy Youngman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tiffy Youngman,ou=Product Development,dc=bitwarden,dc=com", - email: "YoungmaT@4ad3d1fc09c94c579cc898d58b2c9182.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terese VanHulst,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Terese VanHulst,ou=Peons,dc=bitwarden,dc=com", - email: "VanHulsT@d331e1c24d0b4aec9a1ad8d53034ac5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigitta Southon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Brigitta Southon,ou=Product Testing,dc=bitwarden,dc=com", - email: "SouthonB@f51717825b9c49d5a37e5f38d6f8642e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashlan Nyce,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ashlan Nyce,ou=Payroll,dc=bitwarden,dc=com", - email: "NyceA@1992283e02a14cd2a3449a7bd08c0ed9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alasdair Huether,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alasdair Huether,ou=Janitorial,dc=bitwarden,dc=com", - email: "HuetherA@38f4b173005e4744bda2f6fc3b8d52be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rakesh Izzotti,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rakesh Izzotti,ou=Management,dc=bitwarden,dc=com", - email: "IzzottiR@ad45074948ed4c7dba5bf592df90bab5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Irish Gaither,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Irish Gaither,ou=Payroll,dc=bitwarden,dc=com", - email: "GaitherI@5222f90256d843c8a24103ca5cca030a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sanjay Ornburn,ou=Human Resources,dc=bitwarden,dc=com", - email: "OrnburnS@c77046250d004539a16765d761d09cd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Norbert Kathnelson,ou=Janitorial,dc=bitwarden,dc=com", - email: "KathnelN@62021a608fd94b2d95ca05367f09faa6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verlyn Farah,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Verlyn Farah,ou=Peons,dc=bitwarden,dc=com", - email: "FarahV@2e5d764491b046f6aa7ce6ba59a519f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rana Schartmann,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rana Schartmann,ou=Peons,dc=bitwarden,dc=com", - email: "SchartmR@132e9b9de0714b89851dab60393ea28b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Suki Kolodiejchuk,ou=Peons,dc=bitwarden,dc=com", - email: "KolodieS@7bacc7c5f0114d5b9f10880dbb1a7890.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=XuanLien Harms,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=XuanLien Harms,ou=Management,dc=bitwarden,dc=com", - email: "HarmsX@588b4b264c9e4c9187b4cc73055957b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vimi Ermarkaryan,ou=Janitorial,dc=bitwarden,dc=com", - email: "ErmarkaV@f6758775c10f44a0888e5450785a13f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regine Danforth,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Regine Danforth,ou=Management,dc=bitwarden,dc=com", - email: "DanfortR@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adda Gutcher,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Adda Gutcher,ou=Payroll,dc=bitwarden,dc=com", - email: "GutcherA@49031457055a4efdb13b2d34b71f9815.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hpone Croxall,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hpone Croxall,ou=Product Development,dc=bitwarden,dc=com", - email: "CroxallH@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailee McCauley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ailee McCauley,ou=Product Testing,dc=bitwarden,dc=com", - email: "McCauleA@79abaedcdb964df1969bfe88bafabdb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nadya Finucane,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nadya Finucane,ou=Management,dc=bitwarden,dc=com", - email: "FinucanN@93f688ea0bc04368a2a139880357d5fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mikelis Brennen,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrennenM@a4b9657d81504fa48f8656723285a8fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brita Digenova,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brita Digenova,ou=Payroll,dc=bitwarden,dc=com", - email: "DigenovB@301d911e2eea414b9302e4f81984f9b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jami Franze,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jami Franze,ou=Peons,dc=bitwarden,dc=com", - email: "FranzeJ@ce9a5204a370483987964a25eaf0057b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariele Barnhart,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mariele Barnhart,ou=Management,dc=bitwarden,dc=com", - email: "BarnharM@5da48288aba74ccf8b206aad69790e91.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacalyn Jawor,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jacalyn Jawor,ou=Management,dc=bitwarden,dc=com", - email: "JaworJ@d8f95844461442f7932326cd41b836f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=National Gahunia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=National Gahunia,ou=Product Development,dc=bitwarden,dc=com", - email: "GahuniaN@0a4355ee7fe94c7bb8cc9baf9905f443.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Retha Spallin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Retha Spallin,ou=Product Development,dc=bitwarden,dc=com", - email: "SpallinR@e358162fa0384d918adc01a68c3773f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estrella Benner,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Estrella Benner,ou=Product Testing,dc=bitwarden,dc=com", - email: "BennerE@ff246c4446e74d80b9a0be3db943a949.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomasina Kling,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Thomasina Kling,ou=Product Development,dc=bitwarden,dc=com", - email: "KlingT@cbc82096b5e245c9b627cf69c35c8dc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaan Lian,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jaan Lian,ou=Peons,dc=bitwarden,dc=com", - email: "LianJ@c34ff4c9cd024e7eb996d78abb689848.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carola Osatuik,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carola Osatuik,ou=Management,dc=bitwarden,dc=com", - email: "OsatuikC@6e5be889b97e4253b4e9a6f0b2a0b677.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fifine Roussin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fifine Roussin,ou=Payroll,dc=bitwarden,dc=com", - email: "RoussinF@ccf238ac72764498a2a4e871140940fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Erminie Amstutz,ou=Janitorial,dc=bitwarden,dc=com", - email: "AmstutzE@75e8bf055ea0424a878ab7ea7870e005.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariam Markmeyer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mariam Markmeyer,ou=Management,dc=bitwarden,dc=com", - email: "MarkmeyM@3e451f2ddbdc401ba9f442a5e6dfbe64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Randall Chalker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Randall Chalker,ou=Peons,dc=bitwarden,dc=com", - email: "ChalkerR@b44a0907ac54444880285a852c9427d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anki Harriett,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anki Harriett,ou=Human Resources,dc=bitwarden,dc=com", - email: "HarrietA@77b7d3ef3e7d45c8b172d9cee40bbded.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teena Pufpaff,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Teena Pufpaff,ou=Management,dc=bitwarden,dc=com", - email: "PufpaffT@8d2e6b6207eb40d79fa60fd1d88ac47e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dalip Horak,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dalip Horak,ou=Payroll,dc=bitwarden,dc=com", - email: "HorakD@f4907e1fff334cd1812952d9d0110270.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamarra Grassmann,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tamarra Grassmann,ou=Peons,dc=bitwarden,dc=com", - email: "GrassmaT@7efd7c70c36c49faa77efd5d14e31317.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arun Adolfie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Arun Adolfie,ou=Payroll,dc=bitwarden,dc=com", - email: "AdolfieA@b01b1bd56e3f464896b7135dd1b7da99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lettie Janelle,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lettie Janelle,ou=Product Testing,dc=bitwarden,dc=com", - email: "JanelleL@bd8c56963a9f48dfb73b8a3322b6fe38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vilas Papadopulos,ou=Product Development,dc=bitwarden,dc=com", - email: "PapadopV@e6b52be13e984c2c8799a67382d2c196.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huib Kayle,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Huib Kayle,ou=Payroll,dc=bitwarden,dc=com", - email: "KayleH@8044dacf63ac423fb3f7e245d1b46862.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vicki Streibel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vicki Streibel,ou=Management,dc=bitwarden,dc=com", - email: "StreibeV@fc82887f7d574e47999f4c6412d5d5a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ingeberg Gomm,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ingeberg Gomm,ou=Peons,dc=bitwarden,dc=com", - email: "GommI@5f7aa1104dd847a783d3ab9f854696e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Phebe Raddalgoda,ou=Peons,dc=bitwarden,dc=com", - email: "RaddalgP@8b09ab861a8547548572c341d5ae5d43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorianna Windom,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorianna Windom,ou=Peons,dc=bitwarden,dc=com", - email: "WindomL@b890dc6370824c28b958abdf02b9b5bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tamera Meyer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tamera Meyer,ou=Peons,dc=bitwarden,dc=com", - email: "MeyerT@ad0135726be04a5d8faeb9e97bff3b3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Blakeley Aladangady,ou=Product Testing,dc=bitwarden,dc=com", - email: "AladangB@6ab8bc12da524a3d8f16fa02dd65712d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corliss Chenard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Corliss Chenard,ou=Product Testing,dc=bitwarden,dc=com", - email: "ChenardC@ec10cc023e454fb0bbdd9208be69f4fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rheba Castelloe,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rheba Castelloe,ou=Peons,dc=bitwarden,dc=com", - email: "CastellR@ac25d049c10a4d758088ebdaf063ce02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marijke Bielby,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marijke Bielby,ou=Management,dc=bitwarden,dc=com", - email: "BielbyM@d3e5cc7ede3a4873b6507525605140dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steen Carpool,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Steen Carpool,ou=Human Resources,dc=bitwarden,dc=com", - email: "CarpoolS@c3d2d2c0ad16421093e58b9a80d13fae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marigold Girgis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marigold Girgis,ou=Product Testing,dc=bitwarden,dc=com", - email: "GirgisM@6cc4c5dff9d04b5e89ad32c2b33d43af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tdr Gavidia,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tdr Gavidia,ou=Administrative,dc=bitwarden,dc=com", - email: "GavidiaT@5a85cb992a6942cf9192a30cc4dff439.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Judith Charbonneau,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Judith Charbonneau,ou=Product Development,dc=bitwarden,dc=com", - email: "CharbonJ@fdf5161eeea14f4092d0d9d3593c3092.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katerine Manners,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Katerine Manners,ou=Management,dc=bitwarden,dc=com", - email: "MannersK@67959d83c9f54eab8d5e9b41e77626e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tasha Netdev,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tasha Netdev,ou=Product Development,dc=bitwarden,dc=com", - email: "NetdevT@feb159b030e14305b9c8b50a78e33542.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ken Shiue,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ken Shiue,ou=Administrative,dc=bitwarden,dc=com", - email: "ShiueK@aa835df49d8745e4bab27a377c8d41e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tc Hayman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tc Hayman,ou=Human Resources,dc=bitwarden,dc=com", - email: "HaymanT@504b7fa15e81498b91140ca23e9bafd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corry Johnston,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Corry Johnston,ou=Management,dc=bitwarden,dc=com", - email: "JohnstoC@70db07b7e30f4b06835c7cf868520da6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tracee Kastelberg,ou=Janitorial,dc=bitwarden,dc=com", - email: "KastelbT@29c15912a9c64d47a005bca4887abd95.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lacy Ferguson,ou=Product Testing,dc=bitwarden,dc=com", - email: "FergusoL@97fbcf65a0194c62b7fd4a6d405bb6d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farag Rogge,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Farag Rogge,ou=Product Development,dc=bitwarden,dc=com", - email: "RoggeF@3f3cc38c24fe4b7a8534f2cd843278b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Scot Santitoro,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Scot Santitoro,ou=Payroll,dc=bitwarden,dc=com", - email: "SantitoS@4df07dd4fa25468db57d445d7d91ad8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elisabeth Conrath,ou=Product Testing,dc=bitwarden,dc=com", - email: "ConrathE@a6f3133d61d14ab9941634fba9dc1a84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Micah Goheen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Micah Goheen,ou=Product Testing,dc=bitwarden,dc=com", - email: "GoheenM@fed6b3907bdd4baea159fc944ed9b04b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kasey Primeau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kasey Primeau,ou=Janitorial,dc=bitwarden,dc=com", - email: "PrimeauK@65763f125f254ceea21c060ef488c98d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jsandye Dickford,ou=Janitorial,dc=bitwarden,dc=com", - email: "DickforJ@be39439fe1b046ff8b55dd6e46a1f1fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frankie Nesbitt,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Frankie Nesbitt,ou=Management,dc=bitwarden,dc=com", - email: "NesbittF@01b767fcb2cb434ca691bff5e3c89088.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fran Visockis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fran Visockis,ou=Payroll,dc=bitwarden,dc=com", - email: "VisockiF@f78034ad70854ccbacb0124129d464fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prudence Deugau,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Prudence Deugau,ou=Product Development,dc=bitwarden,dc=com", - email: "DeugauP@67a9d61944244b79b04665b16e622d77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elbert Figura,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elbert Figura,ou=Peons,dc=bitwarden,dc=com", - email: "FiguraE@45017ba123de4bd691a840bb1387bf6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorian Kingzett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorian Kingzett,ou=Payroll,dc=bitwarden,dc=com", - email: "KingzetD@ae52dcada2674f68a76a2c619d85f261.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camila Wilhoit,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Camila Wilhoit,ou=Management,dc=bitwarden,dc=com", - email: "WilhoitC@d52f84a4faf148e392088a55b1d91d85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wannell Klapper,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wannell Klapper,ou=Product Development,dc=bitwarden,dc=com", - email: "KlapperW@24698099682948489af34be8e13083ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brynne Hiers,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brynne Hiers,ou=Peons,dc=bitwarden,dc=com", - email: "HiersB@3b31b1e22b674d48829733c162895a88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gilberte Abdollahi,ou=Product Testing,dc=bitwarden,dc=com", - email: "AbdollaG@38fb869ba3244313992623d5e5856ca5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbi Hebbar,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Barbi Hebbar,ou=Payroll,dc=bitwarden,dc=com", - email: "HebbarB@1fa3d22353b84ae8b3c1cfa1f92c0d6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nicoline Wheelock,ou=Product Development,dc=bitwarden,dc=com", - email: "WheelocN@7cfe2ffb0199421b9c038434ce9a5120.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Panch Golka,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Panch Golka,ou=Payroll,dc=bitwarden,dc=com", - email: "GolkaP@8b4e205f7cd04cdf9570b14ba9584f1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Freya Seagraves,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Freya Seagraves,ou=Janitorial,dc=bitwarden,dc=com", - email: "SeagravF@6d6b8145dca640f99bdb6ac4a86deac7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Makary Pulver,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Makary Pulver,ou=Administrative,dc=bitwarden,dc=com", - email: "PulverM@a52b2533262a41f09422c904974af50a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmela Voitel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carmela Voitel,ou=Product Development,dc=bitwarden,dc=com", - email: "VoitelC@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nonah Ledet,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nonah Ledet,ou=Product Development,dc=bitwarden,dc=com", - email: "LedetN@59594afdce864109b5f7447ee0401063.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marti Mac,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marti Mac,ou=Janitorial,dc=bitwarden,dc=com", - email: "MacM@820452a402ec435298020857f318cbc5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cassondra Elchakieh,ou=Product Development,dc=bitwarden,dc=com", - email: "ElchakiC@4183bc2b55d349abb67652aa3cd2f8e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maxi Isaac,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maxi Isaac,ou=Administrative,dc=bitwarden,dc=com", - email: "IsaacM@44bcfd07218c489eba7387452f761d66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orlyn Eros,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Orlyn Eros,ou=Janitorial,dc=bitwarden,dc=com", - email: "ErosO@5889521a4ba34649ace6fd6f42ef0aa2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amandi Twiss,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Amandi Twiss,ou=Human Resources,dc=bitwarden,dc=com", - email: "TwissA@9757188a1ee049ac947c6d7e4b76a064.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolyne Delmar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Carolyne Delmar,ou=Peons,dc=bitwarden,dc=com", - email: "DelmarC@d49a6ebf54d04e67aead2ded915937e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Los Barbeau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Los Barbeau,ou=Payroll,dc=bitwarden,dc=com", - email: "BarbeauL@b29d8ef469fc4b239f5042b6d0cf9204.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fung Godwin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fung Godwin,ou=Product Testing,dc=bitwarden,dc=com", - email: "GodwinF@64c2994b832f40a4a166aa8ac8dd69f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coreen Underwood,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Coreen Underwood,ou=Product Development,dc=bitwarden,dc=com", - email: "UnderwoC@ee1df761a37f416c8ab1cdfe97a867af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inquire Morse,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Inquire Morse,ou=Human Resources,dc=bitwarden,dc=com", - email: "MorseI@4af5fd42bff448dd88ce510692f26f0f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roby Kalyani,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Roby Kalyani,ou=Janitorial,dc=bitwarden,dc=com", - email: "KalyaniR@31fa64a862294a7388a08b68af152886.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leena OKelly,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Leena OKelly,ou=Peons,dc=bitwarden,dc=com", - email: "OKellyL@fdfd326c1e8945a3966cb4de28c4d870.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joli Gavidia,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Joli Gavidia,ou=Janitorial,dc=bitwarden,dc=com", - email: "GavidiaJ@8a64f3daaeda4903b6f2db2d73e7274f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gint Cioffi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gint Cioffi,ou=Product Development,dc=bitwarden,dc=com", - email: "CioffiG@d5e4a37826af47d086930b55ea76e123.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsea Arvin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Chelsea Arvin,ou=Product Development,dc=bitwarden,dc=com", - email: "ArvinC@d4881d0da2824b94aad995234e30bb1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allix Closson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Allix Closson,ou=Management,dc=bitwarden,dc=com", - email: "ClossonA@1385c66d23c04cd2a77d3143933af9fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ortensia Renwick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ortensia Renwick,ou=Payroll,dc=bitwarden,dc=com", - email: "RenwickO@2578fec05f3c4caebb2ed35da0948626.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=DAnne Pollinzi,ou=Payroll,dc=bitwarden,dc=com", - email: "PollinzD@7e68fcf7d1c0481096800d5b87b7212d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Megumi Lipski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Megumi Lipski,ou=Peons,dc=bitwarden,dc=com", - email: "LipskiM@4a9fb51cf5c54cab94b295c86af723f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tulip Jeanes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tulip Jeanes,ou=Peons,dc=bitwarden,dc=com", - email: "JeanesT@7eeb5a2e39b24090937294c20835ac1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meg Kuechler,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Meg Kuechler,ou=Peons,dc=bitwarden,dc=com", - email: "KuechleM@b65d03e1c71344bb80d7616ebd0b92e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Severin Sridaran,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Severin Sridaran,ou=Payroll,dc=bitwarden,dc=com", - email: "SridaraS@a27a4ae74e5044938ec0dc7534cd37ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bambie Laschuk,ou=Janitorial,dc=bitwarden,dc=com", - email: "LaschukB@d08341ea0aca4d2a827c8888aa168a33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rivalee Markes,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rivalee Markes,ou=Payroll,dc=bitwarden,dc=com", - email: "MarkesR@13757531d26649c1ba7e4dc18bfd6a62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gus Darcie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gus Darcie,ou=Management,dc=bitwarden,dc=com", - email: "DarcieG@b36741628ac5411aa6219ea976eb30f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farah Fiorile,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Farah Fiorile,ou=Product Testing,dc=bitwarden,dc=com", - email: "FiorileF@1c88bcc8224f440390a971996237e338.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jagjit Orr,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jagjit Orr,ou=Payroll,dc=bitwarden,dc=com", - email: "OrrJ@ee0e2753a68a4e55867207a3933be7d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allyce Maduri,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Allyce Maduri,ou=Product Development,dc=bitwarden,dc=com", - email: "MaduriA@251c488f536a47d0989ad6ee9cbeeac4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Padma Mannion,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Padma Mannion,ou=Administrative,dc=bitwarden,dc=com", - email: "MannionP@b5ffb168b2704131a434edf169b90308.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Armin Balogh,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Armin Balogh,ou=Management,dc=bitwarden,dc=com", - email: "BaloghA@8df14385ae864b439973adc9259c1607.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weiping Schneider,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Weiping Schneider,ou=Management,dc=bitwarden,dc=com", - email: "SchneidW@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wakako Schneider,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Wakako Schneider,ou=Administrative,dc=bitwarden,dc=com", - email: "SchneidW@4b4b802ff8a7484b87f06ad79d09b047.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aubrey Worsley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Aubrey Worsley,ou=Payroll,dc=bitwarden,dc=com", - email: "WorsleyA@a7a408f1db4f4c56bc140208ad720372.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ilsa Esteghamat,ou=Janitorial,dc=bitwarden,dc=com", - email: "EsteghaI@ddf0191f89a0460ab413425ca86319fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zahra Sebeh,ou=Janitorial,dc=bitwarden,dc=com", - email: "SebehZ@e790def4652645909ede72d3e5779756.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Aloysia Bobbitt,ou=Administrative,dc=bitwarden,dc=com", - email: "BobbittA@477794cc09b1403eae274b941a7cdeff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Didar Chakravarti,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Didar Chakravarti,ou=Peons,dc=bitwarden,dc=com", - email: "ChakravD@27fe85cb2e8f492b80ccb681935b7475.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rosalyn Sherrell,ou=Janitorial,dc=bitwarden,dc=com", - email: "SherrelR@7a7e84cee07a4519aac362b25f2d7d3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninetta Pullum,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ninetta Pullum,ou=Peons,dc=bitwarden,dc=com", - email: "PullumN@b9a2e7612aef443ebd9966e99249a73c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suki Marrec,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Suki Marrec,ou=Peons,dc=bitwarden,dc=com", - email: "MarrecS@e14fec315d724d2ea3c23dddfc2b66b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ecocafe Bradyhouse,ou=Administrative,dc=bitwarden,dc=com", - email: "BradyhoE@83f450f8e8ed4c6282bc25450b6af548.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ian Locicero,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ian Locicero,ou=Human Resources,dc=bitwarden,dc=com", - email: "LocicerI@ac4d7f7fd78147f7b89e17731422f227.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Modestia Prado,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Modestia Prado,ou=Product Testing,dc=bitwarden,dc=com", - email: "PradoM@2e96ba41c52b41599651831f48a31224.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linette Hoxie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Linette Hoxie,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoxieL@5d088289d7854227987c820b9b1f2b7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christi Silverstone,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Christi Silverstone,ou=Human Resources,dc=bitwarden,dc=com", - email: "SilversC@7012522876084229bee482efdda1e27f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertie Stough,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gertie Stough,ou=Product Development,dc=bitwarden,dc=com", - email: "StoughG@f217999906e34b1bbd26f75d9abe8282.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christy Mazurek,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Christy Mazurek,ou=Human Resources,dc=bitwarden,dc=com", - email: "MazurekC@166fd602ceb04a58b9e0bfc4c39bf95b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fikre Vieiro,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fikre Vieiro,ou=Product Development,dc=bitwarden,dc=com", - email: "VieiroF@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leila Mullett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Leila Mullett,ou=Product Testing,dc=bitwarden,dc=com", - email: "MullettL@c8037935d7cf4de6af85f4cdef77691d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Irina Holinski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Irina Holinski,ou=Peons,dc=bitwarden,dc=com", - email: "HolinskI@533123df06ad436d9c500ab92c7787fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kari Denmark,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kari Denmark,ou=Product Development,dc=bitwarden,dc=com", - email: "DenmarkK@72937da6610a485fb5709713ede972d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inge Valenziano,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Inge Valenziano,ou=Janitorial,dc=bitwarden,dc=com", - email: "ValenziI@93cef961e98e48e482c9b5e04d825449.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denis Khurana,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Denis Khurana,ou=Human Resources,dc=bitwarden,dc=com", - email: "KhuranaD@146df2fe13b2444d82d5d78937150f1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marice Klug,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marice Klug,ou=Product Development,dc=bitwarden,dc=com", - email: "KlugM@5a9b6da2d40a49eeae885d49efa6f2e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denver Welling,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Denver Welling,ou=Product Testing,dc=bitwarden,dc=com", - email: "WellingD@693e5301c4924e0195024b48e34f4838.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Windowing Lukic,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Windowing Lukic,ou=Administrative,dc=bitwarden,dc=com", - email: "LukicW@47bdbe19b290413cb5defd6e606815e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sig Mistry,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sig Mistry,ou=Product Testing,dc=bitwarden,dc=com", - email: "MistryS@b381db8c81ea4ed2b9296ea4988780aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Christan DeRaaf,ou=Product Testing,dc=bitwarden,dc=com", - email: "DeRaafC@a1888b8b71724fa0b75e4d99fa03c51f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathe Rohan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kathe Rohan,ou=Product Testing,dc=bitwarden,dc=com", - email: "RohanK@a9c3295ea2f347439f03376e321e4733.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristie Valente,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kristie Valente,ou=Payroll,dc=bitwarden,dc=com", - email: "ValenteK@0b027bdff1d041629ac882de18aab2e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maiga Burdick,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maiga Burdick,ou=Human Resources,dc=bitwarden,dc=com", - email: "BurdickM@620a0deb741d4dc4a818615fd1732275.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manh Malee,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Manh Malee,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaleeM@7288f418f35f4596b14bd4c35f0a5698.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benita Rosvick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Benita Rosvick,ou=Product Testing,dc=bitwarden,dc=com", - email: "RosvickB@0283099cc03c4fbb82831c03428e71c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Serban Gerard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Serban Gerard,ou=Management,dc=bitwarden,dc=com", - email: "GerardS@072112936d7540f191ae5e1941e3f66c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorreen Zeitler,ou=Payroll,dc=bitwarden,dc=com", - email: "ZeitlerD@26eb3cccbe694e88916be9fa6504534e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Genowefa McCormick,ou=Product Testing,dc=bitwarden,dc=com", - email: "McCormiG@6dcb8ef14afa4d0f878ab023a26df8bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Condell Sorensen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Condell Sorensen,ou=Product Development,dc=bitwarden,dc=com", - email: "SorenseC@928ad853e1494474966df7fb64907ee2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jacquetta Choptovy,ou=Peons,dc=bitwarden,dc=com", - email: "ChoptovJ@21b58cb6354d45989d255e9811572cc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Heinz Sobolewski,ou=Product Development,dc=bitwarden,dc=com", - email: "SobolewH@0b7e616fdb1d456c8501b36db9499cac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=MaryEllen Giarritta,ou=Product Development,dc=bitwarden,dc=com", - email: "GiarritM@5ff34bafebf24aa4b9506984a8233f6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Erzsebet Randolph,ou=Product Development,dc=bitwarden,dc=com", - email: "RandolpE@55ec9ab4177d4a9faecb693090c29c24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shingcheon Bedient,ou=Product Development,dc=bitwarden,dc=com", - email: "BedientS@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yukihiko Charlebois,ou=Peons,dc=bitwarden,dc=com", - email: "CharlebY@d67f5f676f7c4a17add6d088939168e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giang Hildum,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Giang Hildum,ou=Product Testing,dc=bitwarden,dc=com", - email: "HildumG@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loise Prasad,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Loise Prasad,ou=Product Testing,dc=bitwarden,dc=com", - email: "PrasadL@80dd2ec5de3e4cba8ab6e9385f8b5eaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronnie Hillson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ronnie Hillson,ou=Payroll,dc=bitwarden,dc=com", - email: "HillsonR@f2e5bcfc6f2e4cd8a024fc3813c3b9e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gavra Sokolowski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gavra Sokolowski,ou=Peons,dc=bitwarden,dc=com", - email: "SokolowG@e52685d2fb89476596028e80c714ec4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candy Husain,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Candy Husain,ou=Janitorial,dc=bitwarden,dc=com", - email: "HusainC@72624b313e0f4ba194d78d055a4373e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvin Shwed,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alvin Shwed,ou=Janitorial,dc=bitwarden,dc=com", - email: "ShwedA@8a1bb097abd44599a5fd9f86e866f848.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kenna Marui,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kenna Marui,ou=Janitorial,dc=bitwarden,dc=com", - email: "MaruiK@c3ff70181a1748d2af2d2661f51fc5e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aleta Gargul,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aleta Gargul,ou=Peons,dc=bitwarden,dc=com", - email: "GargulA@135f3d9fa17447759a7770c1bcdaf968.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mani Khatod,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mani Khatod,ou=Product Development,dc=bitwarden,dc=com", - email: "KhatodM@9fc79730a8c748d99061f17947cb944d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maryrose Bagetakos,ou=Payroll,dc=bitwarden,dc=com", - email: "BagetakM@b22727f208b94d678a41e54f04994fdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tanya Kolappa,ou=Janitorial,dc=bitwarden,dc=com", - email: "KolappaT@001f8a7cac5e4e5289e4b851c2ff301c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Anjanette Aalders,ou=Product Testing,dc=bitwarden,dc=com", - email: "AaldersA@cbaa630e3a194faaa797a1d7d5ab2466.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trixy Palik,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Trixy Palik,ou=Management,dc=bitwarden,dc=com", - email: "PalikT@a003e42ed50b459eb9c3a71f6a23c973.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dimitri Reese,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dimitri Reese,ou=Administrative,dc=bitwarden,dc=com", - email: "ReeseD@6decbec2a2934c8ab6247b1bef75e683.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosamond McEachern,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rosamond McEachern,ou=Management,dc=bitwarden,dc=com", - email: "McEacheR@972cbc7b1e734ef69ec2cf84c21cdb8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nicolea Khatri,ou=Janitorial,dc=bitwarden,dc=com", - email: "KhatriN@822b8a7ab5a0431f84030ba3b9764408.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Augustin Bayne,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Augustin Bayne,ou=Management,dc=bitwarden,dc=com", - email: "BayneA@0a414dfa34d6439f8f6befcf71900bba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corkstown Beattie,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Corkstown Beattie,ou=Product Development,dc=bitwarden,dc=com", - email: "BeattieC@45719f80729a4e31a475e496709ecf11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prudence Fickes,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Prudence Fickes,ou=Janitorial,dc=bitwarden,dc=com", - email: "FickesP@5c5e6866da4a4802aa0f0136ee49902d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lavina Cirulli,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lavina Cirulli,ou=Peons,dc=bitwarden,dc=com", - email: "CirulliL@57507372eada4752ba384ecd326c57ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Janene Ramaswamy,ou=Product Development,dc=bitwarden,dc=com", - email: "RamaswaJ@ceecdf1f706d4c9589203a7e587e1932.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiertza Korea,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tiertza Korea,ou=Peons,dc=bitwarden,dc=com", - email: "KoreaT@3a117fad58d6422fb9086b1f787bebea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Javed Collecutt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Javed Collecutt,ou=Product Testing,dc=bitwarden,dc=com", - email: "CollecuJ@5c5bca41c1084c1a8e475f6b76094495.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrianna Shypski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Adrianna Shypski,ou=Peons,dc=bitwarden,dc=com", - email: "ShypskiA@e3d22003ed4443a89482f00559e86e88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Susanne Denison,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Susanne Denison,ou=Product Development,dc=bitwarden,dc=com", - email: "DenisonS@8bdc1f4a5bab481cbff74249260925e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilian Rickborn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lilian Rickborn,ou=Product Development,dc=bitwarden,dc=com", - email: "RickborL@7080244b7c9140eab015a52785b9e6b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Remy Blackwood,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Remy Blackwood,ou=Product Development,dc=bitwarden,dc=com", - email: "BlackwoR@806f7fb196b84130b64d5de337c23d96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beret Cemensky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beret Cemensky,ou=Administrative,dc=bitwarden,dc=com", - email: "CemenskB@ecd23bb109534fef8869328ab8ab9019.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bel Browning,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bel Browning,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrowninB@a811d1067f2b449da56503c72e375ae8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rozett VanSchouwen,ou=Product Testing,dc=bitwarden,dc=com", - email: "VanSchoR@6ad1b625c3674b77a93e5c19216d7f12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Charmion Kinsella,ou=Product Testing,dc=bitwarden,dc=com", - email: "KinsellC@c870d166444a452b9465ab41e64ba24a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lula Communications,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lula Communications,ou=Product Testing,dc=bitwarden,dc=com", - email: "CommuniL@949cd7cb4d054b4f8d66cb7e1b41ac6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronn Turbyfill,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ronn Turbyfill,ou=Peons,dc=bitwarden,dc=com", - email: "TurbyfiR@8b4e180a03f04f079b534af88c685eca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cindy Deol,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cindy Deol,ou=Payroll,dc=bitwarden,dc=com", - email: "DeolC@c515863a84e8438aba0830f2adfe9717.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjory Ranahan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marjory Ranahan,ou=Administrative,dc=bitwarden,dc=com", - email: "RanahanM@7b7cafe5ed8643f587a2a3fd33e7d617.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winona Baccari,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Winona Baccari,ou=Peons,dc=bitwarden,dc=com", - email: "BaccariW@c67a6c3f272e49d89894436b34e568ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veda Gaines,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Veda Gaines,ou=Management,dc=bitwarden,dc=com", - email: "GainesV@0d16cc430a2c4388b233d89e5b36b645.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anup Mundi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Anup Mundi,ou=Peons,dc=bitwarden,dc=com", - email: "MundiA@c337fda07bbe40e2a0aa0860ad7ba681.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alyce Felli,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Alyce Felli,ou=Payroll,dc=bitwarden,dc=com", - email: "FelliA@f77e0f58a0a6420b98bdf66cba559331.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janet Ludchen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Janet Ludchen,ou=Product Testing,dc=bitwarden,dc=com", - email: "LudchenJ@98502193cf164ea4ab82010779caeff8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Erlene HemensDavis,ou=Product Testing,dc=bitwarden,dc=com", - email: "HemensDE@09a14201411d4f53ba5558d0182f9877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noubar Novotny,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Noubar Novotny,ou=Product Testing,dc=bitwarden,dc=com", - email: "NovotnyN@4664a2b63b254ce9b3d95a8c77ae6508.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Starlin Joe,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Starlin Joe,ou=Administrative,dc=bitwarden,dc=com", - email: "JoeS@dfc246b09f2e4fb599bc8aeb9522688c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roxi Mcgrachan,ou=Product Development,dc=bitwarden,dc=com", - email: "McgrachR@094b6a4c917e4f98917e91b5a1b28522.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anurag Sylvestre,ou=Administrative,dc=bitwarden,dc=com", - email: "SylvestA@c6c0c36af5924e05b67c3f7f8f84a521.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Clarabelle Szpakowski,ou=Administrative,dc=bitwarden,dc=com", - email: "SzpakowC@4844d9cc18554268bb1e3d4ae2211fcb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devora Pde,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Devora Pde,ou=Product Development,dc=bitwarden,dc=com", - email: "PdeD@4fe9499fc7c8456094066466aa426118.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darya McGeown,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Darya McGeown,ou=Human Resources,dc=bitwarden,dc=com", - email: "McGeownD@67e3aaef7f7f4f1cbd8f4f936f598c13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dnsproj Walles,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dnsproj Walles,ou=Peons,dc=bitwarden,dc=com", - email: "WallesD@436da9fad3274d878f0f8f160f4f3038.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Clarie Ainsworth,ou=Administrative,dc=bitwarden,dc=com", - email: "AinsworC@33cc208726174faa89627fd28537f1c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norma Lepine,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Norma Lepine,ou=Peons,dc=bitwarden,dc=com", - email: "LepineN@272fe3f35e92442897a84fe95f9bd54a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandy Verma,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brandy Verma,ou=Management,dc=bitwarden,dc=com", - email: "VermaB@d3b588680db34a60a238a39048e01e24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blanch Virk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Blanch Virk,ou=Management,dc=bitwarden,dc=com", - email: "VirkB@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viviana Waucheul,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Viviana Waucheul,ou=Management,dc=bitwarden,dc=com", - email: "WaucheuV@9fdf0ada8e914b228c22417f7002a40d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jewelle Buettgen,ou=Payroll,dc=bitwarden,dc=com", - email: "BuettgeJ@870c77d8854c4712a0826cc38e8d28f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brittani Menasce,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brittani Menasce,ou=Payroll,dc=bitwarden,dc=com", - email: "MenasceB@39e9f09e15b6447ab4fb7b5dd3ceb897.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khalil Mincey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Khalil Mincey,ou=Product Testing,dc=bitwarden,dc=com", - email: "MinceyK@fdb2f5b287e8463ca2c07913962256d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shedman Jakim,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shedman Jakim,ou=Product Testing,dc=bitwarden,dc=com", - email: "JakimS@5804ef50880749d5b82225b286f1e13d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reba Chadha,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Reba Chadha,ou=Management,dc=bitwarden,dc=com", - email: "ChadhaR@33e8933bc7494a68acd4251758e509d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailey Randall,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ailey Randall,ou=Human Resources,dc=bitwarden,dc=com", - email: "RandallA@4dc95598dae748aba389750443b62f7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dino Dangubic,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dino Dangubic,ou=Management,dc=bitwarden,dc=com", - email: "DangubiD@2b9fd035a3c74d0a924ba78f328d5988.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlies Ortiz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marlies Ortiz,ou=Product Development,dc=bitwarden,dc=com", - email: "OrtizM@f5c69553f79a4b59937ac455a61cfbaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Uri Neufeld,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Uri Neufeld,ou=Peons,dc=bitwarden,dc=com", - email: "NeufeldU@34daae537ca34252aa1b9fbf611843a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loralee McDunn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Loralee McDunn,ou=Management,dc=bitwarden,dc=com", - email: "McDunnL@6737edb7123741dc9935feaaacc217ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caridad Sawada,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Caridad Sawada,ou=Janitorial,dc=bitwarden,dc=com", - email: "SawadaC@b7db7b74741043f1bc70179c65d8c474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willis Shelley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Willis Shelley,ou=Payroll,dc=bitwarden,dc=com", - email: "ShelleyW@4c5bcfb77c02454a84e7adc20afdfbe7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Raffi Kingsbury,ou=Janitorial,dc=bitwarden,dc=com", - email: "KingsbuR@36de44fb75b44a8f944e568c2906a4cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pauletta Weakley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pauletta Weakley,ou=Administrative,dc=bitwarden,dc=com", - email: "WeakleyP@7ed3387e63ee42a8ac53af5791774853.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wenona Zalzale,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZalzaleW@b0d3dcf7c04d42368ec48183f6c62c8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nanni Taul,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nanni Taul,ou=Management,dc=bitwarden,dc=com", - email: "TaulN@450212d2eb514a469dafbd8d5fd333a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neetu Jeng,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Neetu Jeng,ou=Management,dc=bitwarden,dc=com", - email: "JengN@7d8c7359d7af4b57bab78dd69e94d053.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lyda LEcuyer,ou=Administrative,dc=bitwarden,dc=com", - email: "LEcuyerL@ff701dee527d4bd9bda5646b61d95c09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aimee Poma,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aimee Poma,ou=Product Development,dc=bitwarden,dc=com", - email: "PomaA@98e58adba05c446c846da1ebe7623815.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mer Mayes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mer Mayes,ou=Product Development,dc=bitwarden,dc=com", - email: "MayesM@4e190119399c4a758ca1735cbfbf2e84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alisa Rogan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alisa Rogan,ou=Administrative,dc=bitwarden,dc=com", - email: "RoganA@c4fa2184e3754d1f80f7d5580d9d94a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gabriellia Staggs,ou=Administrative,dc=bitwarden,dc=com", - email: "StaggsG@515154f7d1544d02939e620d7479ff81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Penni Yim,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Penni Yim,ou=Product Testing,dc=bitwarden,dc=com", - email: "YimP@2c5e9a0ea53e4c3488f28ebc0a631b01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melessa Vuong,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Melessa Vuong,ou=Product Testing,dc=bitwarden,dc=com", - email: "VuongM@65c647306216446ba8005c16399f2df3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anni Blander,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anni Blander,ou=Payroll,dc=bitwarden,dc=com", - email: "BlanderA@a1cc10fa763e4d8e859c484ee294d650.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kazuhiko Weston,ou=Product Testing,dc=bitwarden,dc=com", - email: "WestonK@a51f3f09df8f4742bacda80d01a1452b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lesli Hassan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lesli Hassan,ou=Administrative,dc=bitwarden,dc=com", - email: "HassanL@15a45d459da54368b0fd6d1cb3b6eb6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marthena Holleran,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marthena Holleran,ou=Product Testing,dc=bitwarden,dc=com", - email: "HolleraM@736366bf947d4889a5087519dbc9eaff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Josi Management,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Josi Management,ou=Product Testing,dc=bitwarden,dc=com", - email: "ManagemJ@c6a4a4056d14487fb671f2f8a2034eab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wladyslaw Markland,ou=Janitorial,dc=bitwarden,dc=com", - email: "MarklanW@b25f9197eb164e0e80b05e75586a2055.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elga Conlon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Elga Conlon,ou=Janitorial,dc=bitwarden,dc=com", - email: "ConlonE@c0c6e65c61e944a0b382a61d11dea90d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francesca Boyd,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Francesca Boyd,ou=Human Resources,dc=bitwarden,dc=com", - email: "BoydF@e38af9fe725143fba59fa84a861f0258.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorettalorna Eberlin,ou=Peons,dc=bitwarden,dc=com", - email: "EberlinL@b2b61d7107f642f5a98b64baa9303c9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gabbie Clysdale,ou=Janitorial,dc=bitwarden,dc=com", - email: "ClysdalG@aac280e1ad054311a3291435b99caa3e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marit Ahlers,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marit Ahlers,ou=Product Testing,dc=bitwarden,dc=com", - email: "AhlersM@a5557159c1c14e57b5492ca45de2de58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mukund Aboussouan,ou=Janitorial,dc=bitwarden,dc=com", - email: "AboussoM@541a80b7aa9b481bbf28921cf43e3f5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donovan Rega,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Donovan Rega,ou=Product Testing,dc=bitwarden,dc=com", - email: "RegaD@21f2e463791848548ef88e00deb1b9ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elli Bourdignon,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elli Bourdignon,ou=Peons,dc=bitwarden,dc=com", - email: "BourdigE@0f1c3e2ce2034f5d8c7b8756242c50e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haily Mo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Haily Mo,ou=Product Development,dc=bitwarden,dc=com", - email: "MoH@79d95bd789cf4fc1885620e6c0f5c167.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mohammed Minai,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mohammed Minai,ou=Product Testing,dc=bitwarden,dc=com", - email: "MinaiM@777873609ce9463eb7000e930f9c88d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirit Storrie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kirit Storrie,ou=Human Resources,dc=bitwarden,dc=com", - email: "StorrieK@faf22808db304ae29b9dfcf6c14eb1a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Coleen Jayamanne,ou=Product Testing,dc=bitwarden,dc=com", - email: "JayamanC@d067d16a8bc94c9daff0ddbfef5f0805.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ardyce Watkinson,ou=Payroll,dc=bitwarden,dc=com", - email: "WatkinsA@b34436a247d34fc9bc5677457c93ba78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rolf Simonovich,ou=Janitorial,dc=bitwarden,dc=com", - email: "SimonovR@cde16491739c4f3f8690a2cf6ade7e5d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Migdalia McGalliard,ou=Payroll,dc=bitwarden,dc=com", - email: "McGalliM@a46aa42b5f274530aa98dd0c7465489c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenn Bennison,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jenn Bennison,ou=Human Resources,dc=bitwarden,dc=com", - email: "BennisoJ@0469f1b4c991499bab217f2cac0d045b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Durantaye Molson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Durantaye Molson,ou=Product Testing,dc=bitwarden,dc=com", - email: "MolsonD@282e36163b2b4782beba5acb316b5795.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viola Devouges,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Viola Devouges,ou=Janitorial,dc=bitwarden,dc=com", - email: "DevougeV@22e47b1badb64e5a8c75ea83e23c66b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Abdullah Bhardwaj,ou=Administrative,dc=bitwarden,dc=com", - email: "BhardwaA@7c05b9f9aa6d481ba748c7c030bbe50b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Palme Boose,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Palme Boose,ou=Product Testing,dc=bitwarden,dc=com", - email: "BooseP@0a9ecf28f4994fd284a4f750138333e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zarah Doriot,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Zarah Doriot,ou=Peons,dc=bitwarden,dc=com", - email: "DoriotZ@3be6f0b907a24b2494bafbb2bc326635.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eirik McCray,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eirik McCray,ou=Management,dc=bitwarden,dc=com", - email: "McCrayE@7ae99018925f40aaa0a9b24bf1a3f314.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brennan Saito,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Brennan Saito,ou=Administrative,dc=bitwarden,dc=com", - email: "SaitoB@4437a885539842e694e181973aeef65f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bambie Borel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bambie Borel,ou=Payroll,dc=bitwarden,dc=com", - email: "BorelB@911fdc608a134ac59eea9467d4209b74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devonne Salkini,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Devonne Salkini,ou=Payroll,dc=bitwarden,dc=com", - email: "SalkiniD@f06dcb9a7c274d2c8b61f4765bcce046.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bawn Straub,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bawn Straub,ou=Product Testing,dc=bitwarden,dc=com", - email: "StraubB@3f4cec00392444ae9c0437c04a8ea49d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jojo Peart,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jojo Peart,ou=Janitorial,dc=bitwarden,dc=com", - email: "PeartJ@7d23b0e8a7304d9db4a8b51eca9070a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marieke Deibert,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marieke Deibert,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeibertM@8eab0f58e984423689a3d31e38a978a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginelle Couture,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ginelle Couture,ou=Management,dc=bitwarden,dc=com", - email: "CoutureG@2f5fd5dddfb54bca86a1d0320ba60e06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gnni Podolski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gnni Podolski,ou=Janitorial,dc=bitwarden,dc=com", - email: "PodolskG@f7752e330a264f1884c22f0f347f41b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cubical Igarashi,ou=Human Resources,dc=bitwarden,dc=com", - email: "IgarashC@97e726cfbc2349ecb70cb5344f2a2c22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Uunko Kodsi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Uunko Kodsi,ou=Payroll,dc=bitwarden,dc=com", - email: "KodsiU@37c3227000a74816851448e0169c372e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kaja Ritchey,ou=Human Resources,dc=bitwarden,dc=com", - email: "RitcheyK@fe48d37c5b2641728941b8fc035adcee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharline Tullius,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sharline Tullius,ou=Management,dc=bitwarden,dc=com", - email: "TulliusS@eb7bca808a2e45f58db03191eddeb5b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tatyana Tussey,ou=Human Resources,dc=bitwarden,dc=com", - email: "TusseyT@1d0fa7b832b142ce82ca5e924a1754a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shoeb Scales,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shoeb Scales,ou=Product Development,dc=bitwarden,dc=com", - email: "ScalesS@b517a2d10bbc4f42810c787fa46b3e5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Elsie Skiclub,ou=Human Resources,dc=bitwarden,dc=com", - email: "SkiclubE@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nissa Twarog,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nissa Twarog,ou=Product Testing,dc=bitwarden,dc=com", - email: "TwarogN@c9e737b9c70b4882afff21061f6d5241.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Stephanie Yarnell,ou=Product Testing,dc=bitwarden,dc=com", - email: "YarnellS@55c5ce522f7b4db190d4d14360a9a4fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anabal Kusyk,ou=Human Resources,dc=bitwarden,dc=com", - email: "KusykA@99efb52676a5438d8f4dfeb830e52009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hrinfo Popel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hrinfo Popel,ou=Administrative,dc=bitwarden,dc=com", - email: "PopelH@9e56e8486a994bf4a874e73233ce3dcc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anallese Dressler,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anallese Dressler,ou=Payroll,dc=bitwarden,dc=com", - email: "DressleA@52c44ba7d54d47f49f97d3fd2eee96ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fredra Skillen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fredra Skillen,ou=Payroll,dc=bitwarden,dc=com", - email: "SkillenF@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shafique Behrens,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shafique Behrens,ou=Human Resources,dc=bitwarden,dc=com", - email: "BehrensS@22b38e3187c1496caaed86c5083e47f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ross Saravanos,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ross Saravanos,ou=Product Testing,dc=bitwarden,dc=com", - email: "SaravanR@54fd227716ba449c96690a03af42c46e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=KimMinh Eierstock,ou=Product Testing,dc=bitwarden,dc=com", - email: "EierstoK@2a4ac17a2dac443185eb76e92ebd37d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Albertine Dorey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Albertine Dorey,ou=Product Testing,dc=bitwarden,dc=com", - email: "DoreyA@0f6317f19e074d3eacd8b09d7fafccf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Junia Kun,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Junia Kun,ou=Payroll,dc=bitwarden,dc=com", - email: "KunJ@90c585b5539b419a977fd9fb6fa21443.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cong Kalnitsky,ou=Human Resources,dc=bitwarden,dc=com", - email: "KalnitsC@98cda8dd254945c28b3bdbc5a52f9fd7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=HinWai Jauvin,ou=Janitorial,dc=bitwarden,dc=com", - email: "JauvinH@ab9c48ef1f7c4b329b69e3276189b579.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rey Galvin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rey Galvin,ou=Product Testing,dc=bitwarden,dc=com", - email: "GalvinR@660a614454f1481f8e7878f66c6cc97d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kentaro Prada,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kentaro Prada,ou=Janitorial,dc=bitwarden,dc=com", - email: "PradaK@fc6cfedbbb404c7db9497f0971d6cf66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caro Roithmaier,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Caro Roithmaier,ou=Administrative,dc=bitwarden,dc=com", - email: "RoithmaC@2887ebb1b5674da08665a9e53d171dc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassondra Rollin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cassondra Rollin,ou=Management,dc=bitwarden,dc=com", - email: "RollinC@e18e42f38b9b44e7831cc8f3706030f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiet Kantor,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kiet Kantor,ou=Product Testing,dc=bitwarden,dc=com", - email: "KantorK@717bac7424a34a139f2d3dd4cc38bede.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kimihiko Labossiere,ou=Human Resources,dc=bitwarden,dc=com", - email: "LabossiK@ce0ca58b605f4efe987f4366b87f6460.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilemette Grubbs,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gilemette Grubbs,ou=Peons,dc=bitwarden,dc=com", - email: "GrubbsG@e85fdc3041fd4381ad23f20fda20358e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lyndon VanAtta,ou=Payroll,dc=bitwarden,dc=com", - email: "VanAttaL@984a33b6fcea4c229307cb5a753888dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calida Knudsen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Calida Knudsen,ou=Product Testing,dc=bitwarden,dc=com", - email: "KnudsenC@907c0dba1e17448686f2f886e0e7f2be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bendite Costelloe,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bendite Costelloe,ou=Product Development,dc=bitwarden,dc=com", - email: "CostellB@cbd714d753064e6b830ef812fa9487c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Barrie Falkenstrom,ou=Payroll,dc=bitwarden,dc=com", - email: "FalkensB@25f3da6efbac4e1a943679d0eb7798c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desirae Tye,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Desirae Tye,ou=Administrative,dc=bitwarden,dc=com", - email: "TyeD@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yong Papalitskas,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yong Papalitskas,ou=Peons,dc=bitwarden,dc=com", - email: "PapalitY@bf2f61fe09a540bebb83fd50294209be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orsola Shieff,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Orsola Shieff,ou=Product Development,dc=bitwarden,dc=com", - email: "ShieffO@06521bdd507441e9a09de35a0e462c1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meade Lindler,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Meade Lindler,ou=Janitorial,dc=bitwarden,dc=com", - email: "LindlerM@d8b377610c7d421f8eec4a02e5fb3c9d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Canadian Gass,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Canadian Gass,ou=Product Development,dc=bitwarden,dc=com", - email: "GassC@0ed31ccb8df34d01a0dc8eade78d6c66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liping Woll,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Liping Woll,ou=Product Testing,dc=bitwarden,dc=com", - email: "WollL@d727402099aa4389806973df875b978a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dwaine Oka,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dwaine Oka,ou=Product Testing,dc=bitwarden,dc=com", - email: "OkaD@160e893e1d3b4deaa6e59bb27f3aab82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jed Colbourne,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jed Colbourne,ou=Product Development,dc=bitwarden,dc=com", - email: "ColbourJ@bea3df99128348b58312efa7b662b9b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pammi Crucefix,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pammi Crucefix,ou=Management,dc=bitwarden,dc=com", - email: "CrucefiP@cd532997f28e491fbc9b8de411038a21.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joelle Vardy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joelle Vardy,ou=Peons,dc=bitwarden,dc=com", - email: "VardyJ@a59c9463263443218c36867822977d85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wenona Angerer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wenona Angerer,ou=Human Resources,dc=bitwarden,dc=com", - email: "AngererW@759d634715d84fd98852f9030d6bb1fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kristien Kikuta,ou=Product Testing,dc=bitwarden,dc=com", - email: "KikutaK@1b4bc37ec1234668beb3a7c3f6a14e94.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arjun Passier,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Arjun Passier,ou=Peons,dc=bitwarden,dc=com", - email: "PassierA@d52d40abb69a4bfc85f5db20e538bb0e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dat Asgharzadeh,ou=Payroll,dc=bitwarden,dc=com", - email: "AsgharzD@90c585b5539b419a977fd9fb6fa21443.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Viviyan Ballinger,ou=Administrative,dc=bitwarden,dc=com", - email: "BallingV@781f1406846947ac8e77d85a552d214c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kas Breedlove,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kas Breedlove,ou=Administrative,dc=bitwarden,dc=com", - email: "BreedloK@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rycca Earnhardt,ou=Payroll,dc=bitwarden,dc=com", - email: "EarnharR@969884d3e1084598a17f4ef0a3aedf04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hoog Trinidad,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hoog Trinidad,ou=Peons,dc=bitwarden,dc=com", - email: "TrinidaH@1dd14c35e95e43649cc03bb29ef8e910.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jesselyn Lindholm,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jesselyn Lindholm,ou=Management,dc=bitwarden,dc=com", - email: "LindholJ@fab69171647048c9ab39ecbf968a6353.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nesta Papalitskas,ou=Payroll,dc=bitwarden,dc=com", - email: "PapalitN@d38e9d71731a4eceb754559edc2a7f26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maire Lattanzi,ou=Human Resources,dc=bitwarden,dc=com", - email: "LattanzM@9e5927de12b74c838a654764d2be5fec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claude Sylvie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Claude Sylvie,ou=Peons,dc=bitwarden,dc=com", - email: "SylvieC@aea6eb544f4d4871a97763e8c506ad64.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yihban Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", - email: "MalkiewY@afdb909799524b7dbed21ce8a882a129.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=HonKong Miltenburg,ou=Payroll,dc=bitwarden,dc=com", - email: "MiltenbH@dbff573db07a4ff3be645ffc89fde555.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matelda Wrigley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Matelda Wrigley,ou=Product Development,dc=bitwarden,dc=com", - email: "WrigleyM@d823092534664221878b6c81b822deac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emil Kaden,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Emil Kaden,ou=Human Resources,dc=bitwarden,dc=com", - email: "KadenE@0004c5df6b044a30a12dfe8258af1adc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wing Miranda,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wing Miranda,ou=Product Development,dc=bitwarden,dc=com", - email: "MirandaW@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=KaiMing Kelkar,ou=Administrative,dc=bitwarden,dc=com", - email: "KelkarK@d92310a44588497c8705ba02cb8243c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Goldina Kho,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Goldina Kho,ou=Product Development,dc=bitwarden,dc=com", - email: "KhoG@252ca323f23d480494044efd13f580ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sidoney Dugas,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sidoney Dugas,ou=Administrative,dc=bitwarden,dc=com", - email: "DugasS@ef13a1a456c847c69f1a9c739972d1e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alis Tu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alis Tu,ou=Janitorial,dc=bitwarden,dc=com", - email: "TuA@812ac6eec5fc41f6927bb014fa31a1aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nawa Higgins,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nawa Higgins,ou=Payroll,dc=bitwarden,dc=com", - email: "HigginsN@214ae0176652446c8744ad51330039e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nataly McHale,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nataly McHale,ou=Product Development,dc=bitwarden,dc=com", - email: "McHaleN@caa3ffea53f4420d823eecb65d43ca16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marjy Kuryliak,ou=Janitorial,dc=bitwarden,dc=com", - email: "KuryliaM@1e13847ccc3c4ff8a4232936d21cc7f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabuson Keels,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sabuson Keels,ou=Administrative,dc=bitwarden,dc=com", - email: "KeelsS@7b035316d5664530a5da8e7325de2d50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katrina Caltrider,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Katrina Caltrider,ou=Management,dc=bitwarden,dc=com", - email: "CaltridK@8a1c67e1f59c4e798b777fb9f5200904.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Fwpreg Shastry,ou=Payroll,dc=bitwarden,dc=com", - email: "ShastryF@4df07dd4fa25468db57d445d7d91ad8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mukul Gaudon,ou=Human Resources,dc=bitwarden,dc=com", - email: "GaudonM@1738c63bcf0b4428826fa6ef01719925.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tadayuki Jawor,ou=Product Testing,dc=bitwarden,dc=com", - email: "JaworT@6f9e5b17880448d1a76afa2847f8b87a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Damon Bakhach,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Damon Bakhach,ou=Peons,dc=bitwarden,dc=com", - email: "BakhachD@30b2d6e7a1b342d0a3a8e7a402acef7a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nevein Paar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nevein Paar,ou=Janitorial,dc=bitwarden,dc=com", - email: "PaarN@1f90981d05564d038a0c312379adcdd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eliezer Mendorf,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eliezer Mendorf,ou=Management,dc=bitwarden,dc=com", - email: "MendorfE@f3ba3b64f9604f3595f8d4c1f4702c4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saree Salva,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Saree Salva,ou=Product Testing,dc=bitwarden,dc=com", - email: "SalvaS@a225cef4c330412cbb98f5dd2e46ebe8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=FeiYin Gilchrist,ou=Product Development,dc=bitwarden,dc=com", - email: "GilchriF@7b8abab8f82c407a9106010ea3eb996b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mary Bayno,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mary Bayno,ou=Payroll,dc=bitwarden,dc=com", - email: "BaynoM@8dafa8a4191b4d2aa4e275b60f4da3c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Valentia Sherrer,ou=Product Testing,dc=bitwarden,dc=com", - email: "SherrerV@bf1cabd600c14df9900d0656b18e2dcb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arnie McMillion,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Arnie McMillion,ou=Administrative,dc=bitwarden,dc=com", - email: "McMilliA@0700c2d0d09f457b9bacf4bb0ffad4cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sheelagh Ploof,ou=Payroll,dc=bitwarden,dc=com", - email: "PloofS@a613f2cb592142719b25e5b4ad386bd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salaidh Wery,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Salaidh Wery,ou=Human Resources,dc=bitwarden,dc=com", - email: "WeryS@70258a3d14294772adb31cb152ffdee6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Keelia Hoddinott,ou=Human Resources,dc=bitwarden,dc=com", - email: "HoddinoK@a9638d8de81a4990b97d38b8ec08064b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hq Bracy,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hq Bracy,ou=Product Testing,dc=bitwarden,dc=com", - email: "BracyH@ec2712850890400a82cf449b7931685a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Philippa Sanson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Philippa Sanson,ou=Product Development,dc=bitwarden,dc=com", - email: "SansonP@5487b7f8a209497fbfe4cb0aaa226950.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Donn Chirachanchai,ou=Product Development,dc=bitwarden,dc=com", - email: "ChirachD@c385ba2c8b694dba82e626dc336023e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karrah Kielstra,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karrah Kielstra,ou=Management,dc=bitwarden,dc=com", - email: "KielstrK@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saloma Brauer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Saloma Brauer,ou=Human Resources,dc=bitwarden,dc=com", - email: "BrauerS@570987c9633d4a6fa09773cb5695f8f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ezmeralda Boreham,ou=Product Testing,dc=bitwarden,dc=com", - email: "BorehamE@e02ff45a3d1d4535aaac64a1cea6a68b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cheuk Mayr,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cheuk Mayr,ou=Management,dc=bitwarden,dc=com", - email: "MayrC@f7890076c6f84028b85e2b19409fa5f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Verene Misslitz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Verene Misslitz,ou=Human Resources,dc=bitwarden,dc=com", - email: "MisslitV@d6cd96cc69964504b58689aca6bae5e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doe Codack,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Doe Codack,ou=Janitorial,dc=bitwarden,dc=com", - email: "CodackD@e0d7cf99a3294f3e89a0d61f128890ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lowell Seufert,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lowell Seufert,ou=Administrative,dc=bitwarden,dc=com", - email: "SeufertL@2701f21728624e23b32e7e4a717079a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willa Unkefer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Willa Unkefer,ou=Peons,dc=bitwarden,dc=com", - email: "UnkeferW@a9c3295ea2f347439f03376e321e4733.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bep Wassel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bep Wassel,ou=Product Testing,dc=bitwarden,dc=com", - email: "WasselB@a40a845ea1cc4e22b719786373ec54be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nyssa Trittler,ou=Product Testing,dc=bitwarden,dc=com", - email: "TrittleN@3e7e926538044b62b52b536bb87c0044.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Janet Pagliarulo,ou=Product Testing,dc=bitwarden,dc=com", - email: "PagliarJ@66d6a653ea384626bd4c52723439804a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hollyanne Goupil,ou=Human Resources,dc=bitwarden,dc=com", - email: "GoupilH@361f4dedfe9a4aada39bf693c8c1bc40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yuri McCullen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Yuri McCullen,ou=Administrative,dc=bitwarden,dc=com", - email: "McCulleY@3fc70e948ed143488b3a65dc900da1f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Genevieve Licata,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Genevieve Licata,ou=Product Testing,dc=bitwarden,dc=com", - email: "LicataG@29c4d99a2e804a9e9c7906925415c847.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Iseabal Pokrifcak,ou=Human Resources,dc=bitwarden,dc=com", - email: "PokrifcI@f0da7bbf51f0472cbdc26a3d196ad9f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacia Mersch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stacia Mersch,ou=Management,dc=bitwarden,dc=com", - email: "MerschS@ce6ea378c27b45efb4f43990327ef994.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opal Tatemichi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Opal Tatemichi,ou=Administrative,dc=bitwarden,dc=com", - email: "TatemicO@655d3e1ee97a47bbb182f0f8f120b20e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nash Hemphill,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nash Hemphill,ou=Administrative,dc=bitwarden,dc=com", - email: "HemphilN@d457e1580197417888cc4a9c93599471.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amir McKillop,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Amir McKillop,ou=Administrative,dc=bitwarden,dc=com", - email: "McKilloA@9fb1fe8cf6884f83be37cfbabf54e599.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nam Nentwich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nam Nentwich,ou=Product Testing,dc=bitwarden,dc=com", - email: "NentwicN@fa1c0131e1b849f6a92c26986c36bbfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sabrina Lambregts,ou=Payroll,dc=bitwarden,dc=com", - email: "LambregS@93250e1458e9462fb7830f342f899a75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arvin Gourley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Arvin Gourley,ou=Product Testing,dc=bitwarden,dc=com", - email: "GourleyA@87d1f4abbb344e5db58980701a5ab736.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amara Wichers,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Amara Wichers,ou=Janitorial,dc=bitwarden,dc=com", - email: "WichersA@6b9e684fa59647e280b75516ef2c9723.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellen Dada,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ellen Dada,ou=Payroll,dc=bitwarden,dc=com", - email: "DadaE@db38fb215fc94ffcb346567c9526cb3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gunilla Katz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gunilla Katz,ou=Administrative,dc=bitwarden,dc=com", - email: "KatzG@9f82f7fe200c459ebd10718c86bfc9a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Core Herrick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Core Herrick,ou=Product Testing,dc=bitwarden,dc=com", - email: "HerrickC@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jack Predon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jack Predon,ou=Product Testing,dc=bitwarden,dc=com", - email: "PredonJ@5278466bedb347c588c1bbec6486c3cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marc Pestill,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marc Pestill,ou=Janitorial,dc=bitwarden,dc=com", - email: "PestillM@5437f19907594de59138cb373ea3e4a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eadie Jamensky,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Eadie Jamensky,ou=Peons,dc=bitwarden,dc=com", - email: "JamenskE@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corenda MacLaren,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Corenda MacLaren,ou=Management,dc=bitwarden,dc=com", - email: "MacLareC@ca967230de2944e896318dde6183d882.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duy Starnes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Duy Starnes,ou=Management,dc=bitwarden,dc=com", - email: "StarnesD@b696b2494a974f2a9374a73c6b7ac6f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milan Retallack,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Milan Retallack,ou=Product Testing,dc=bitwarden,dc=com", - email: "RetallaM@bcfffdb8a9854486adad4015dba2f146.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zarella Sauck,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zarella Sauck,ou=Product Testing,dc=bitwarden,dc=com", - email: "SauckZ@f7f2463b85cb4147b2377a9dbe20738b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Joachim Vonderscher,ou=Janitorial,dc=bitwarden,dc=com", - email: "VondersJ@ec9d8600fc36414ebc5e7beb3923c8ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nathalia Testsds,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nathalia Testsds,ou=Administrative,dc=bitwarden,dc=com", - email: "TestsdsN@fc1572b2278f4aeabefffc267baf4272.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florette Nttest,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Florette Nttest,ou=Management,dc=bitwarden,dc=com", - email: "NttestF@777f3fb506bf4a578c7c26472bf8bb1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dari OConnor,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dari OConnor,ou=Janitorial,dc=bitwarden,dc=com", - email: "OConnorD@1a7bf48aaf63422bbc1338aad6a39f92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tracie Jenner,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tracie Jenner,ou=Product Testing,dc=bitwarden,dc=com", - email: "JennerT@e282f5bebe844e4c9dfc00d33cbd838c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mot Stirling,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mot Stirling,ou=Product Testing,dc=bitwarden,dc=com", - email: "StirlinM@faec862307e2490ab9310236bae87643.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yodha Bui,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yodha Bui,ou=Payroll,dc=bitwarden,dc=com", - email: "BuiY@72665e46d4e14e57b1e63fc562993f3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clifton Murphyking,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Clifton Murphyking,ou=Product Development,dc=bitwarden,dc=com", - email: "MurphykC@2d00b4c5d94943aaab567276a570648e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HonKong Drago,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=HonKong Drago,ou=Product Development,dc=bitwarden,dc=com", - email: "DragoH@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greer Popowicz,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Greer Popowicz,ou=Management,dc=bitwarden,dc=com", - email: "PopowicG@dfaff98f73b34c5995272b067ac045a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Asia Schuette,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Asia Schuette,ou=Product Development,dc=bitwarden,dc=com", - email: "SchuettA@883d3eb4e07e422a956a4aab8d2b970b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbette Stotz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Barbette Stotz,ou=Peons,dc=bitwarden,dc=com", - email: "StotzB@cdcc0b3184ae42c79dae92d7659e36db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joyann Lun,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joyann Lun,ou=Peons,dc=bitwarden,dc=com", - email: "LunJ@0efc975bd4a14addb872414f9ef80752.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caz Brunato,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Caz Brunato,ou=Payroll,dc=bitwarden,dc=com", - email: "BrunatoC@d3e5ff3d0e59404589f0f6d57f8f6108.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sorin Dipper,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sorin Dipper,ou=Payroll,dc=bitwarden,dc=com", - email: "DipperS@f87927b66c3847ba8ab3947482034e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bucklin OKarina,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bucklin OKarina,ou=Product Development,dc=bitwarden,dc=com", - email: "OKarinaB@f05231e4b8d74927939d87b64623ee43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tuan Pannell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tuan Pannell,ou=Administrative,dc=bitwarden,dc=com", - email: "PannellT@4afa8343c8fe499bbf69af9cea3fa9e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neda Reece,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Neda Reece,ou=Product Development,dc=bitwarden,dc=com", - email: "ReeceN@57acdd50faae453481ecda7f42cf245e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Roanne Vesterdal,ou=Payroll,dc=bitwarden,dc=com", - email: "VesterdR@0235e1ba64944a1fa5be17cd97e92630.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Audrey US,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Audrey US,ou=Product Testing,dc=bitwarden,dc=com", - email: "USA@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Eugine Dobbins,ou=Janitorial,dc=bitwarden,dc=com", - email: "DobbinsE@c33db3660c404fae86e9ef95373e3964.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dona Sudan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dona Sudan,ou=Product Testing,dc=bitwarden,dc=com", - email: "SudanD@43baa07ec4304f3499ca8d6cf3d382fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mahendra Puett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mahendra Puett,ou=Payroll,dc=bitwarden,dc=com", - email: "PuettM@96c638a02d194cffbc921eccd66faa77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evangelia Kusan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Evangelia Kusan,ou=Peons,dc=bitwarden,dc=com", - email: "KusanE@3af5ab8595d4472c82d36aaeac8a3002.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mead Bielan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mead Bielan,ou=Payroll,dc=bitwarden,dc=com", - email: "BielanM@bdc3cbcec8a2447188118ae5b601e009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Damara Bertrand,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Damara Bertrand,ou=Product Testing,dc=bitwarden,dc=com", - email: "BertranD@85c3b55181514b55979bbf8d48a7d2ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarah Kardos,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sarah Kardos,ou=Product Testing,dc=bitwarden,dc=com", - email: "KardosS@4cb9f71c0f8f42fdadb28a744475bd83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odele Mahiger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Odele Mahiger,ou=Peons,dc=bitwarden,dc=com", - email: "MahigerO@7486ea2b2edb4dd99d75d2309106bc15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Salah Poe,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Salah Poe,ou=Peons,dc=bitwarden,dc=com", - email: "PoeS@7c2fe37e93114583be5da4a11c32b590.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Garry Sterescu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Garry Sterescu,ou=Product Testing,dc=bitwarden,dc=com", - email: "SterescG@aa5810a88b5547ee8c19b3a4626c4393.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Takehiko Magnan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Takehiko Magnan,ou=Management,dc=bitwarden,dc=com", - email: "MagnanT@f414860515324b3cad4d00dd4f44cc65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lurleen Kodnar,ou=Janitorial,dc=bitwarden,dc=com", - email: "KodnarL@b2ae4069e86943268e686f6fe06ee4a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loraine Giese,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Loraine Giese,ou=Administrative,dc=bitwarden,dc=com", - email: "GieseL@07a4bc595e2e42d18a0e9f7b0a858ca8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilya Mackey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ilya Mackey,ou=Management,dc=bitwarden,dc=com", - email: "MackeyI@fa905899850742c4b112661b0ad13f53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clari Wahab,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Clari Wahab,ou=Product Development,dc=bitwarden,dc=com", - email: "WahabC@cf8b4b591c2f4387aae0bb010f18f55b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nichol Etten,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nichol Etten,ou=Janitorial,dc=bitwarden,dc=com", - email: "EttenN@bd63e3f485444f2684cf40e65bc36ff3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clayton Sridaran,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Clayton Sridaran,ou=Payroll,dc=bitwarden,dc=com", - email: "SridaraC@4674bc9b72374eaabd0e5a9031416aa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marijke Ervi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marijke Ervi,ou=Human Resources,dc=bitwarden,dc=com", - email: "ErviM@9b4c46b33b054223bd92a713c0feadad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rama Zagrodney,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZagrodnR@5a18e19bdaa8418c835d1d34e33216b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pippy McGillicuddy,ou=Human Resources,dc=bitwarden,dc=com", - email: "McGilliP@8243672e950b4a22b72844e6eab2354c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tally Pirkle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tally Pirkle,ou=Janitorial,dc=bitwarden,dc=com", - email: "PirkleT@1ee541f8be124dfb9bee70e5bd91693b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haste Katcher,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Haste Katcher,ou=Product Development,dc=bitwarden,dc=com", - email: "KatcherH@abeb83f06224438d8248b9254dfa4c9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norstar Lipski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Norstar Lipski,ou=Human Resources,dc=bitwarden,dc=com", - email: "LipskiN@5a511b723eeb45c88fb86e29a330cbd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hedi Konarski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hedi Konarski,ou=Product Testing,dc=bitwarden,dc=com", - email: "KonarskH@6d3517f9c8ba453ba2035cad30e9dfc1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=ShyaYun Casper,ou=Janitorial,dc=bitwarden,dc=com", - email: "CasperS@1ee43d5295b54a68904e38d5e6ea6d47.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kwing DeStefani,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kwing DeStefani,ou=Payroll,dc=bitwarden,dc=com", - email: "DeStefaK@82379443b34e4931be502fdd3a836d0a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helma Ramsden,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Helma Ramsden,ou=Administrative,dc=bitwarden,dc=com", - email: "RamsdenH@e4834dbcf6564d34a2bbc3d31da046a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joanna Aimone,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joanna Aimone,ou=Administrative,dc=bitwarden,dc=com", - email: "AimoneJ@43156b01c6bc494fbc8570d9a5003fc5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leon Epplett,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leon Epplett,ou=Administrative,dc=bitwarden,dc=com", - email: "EpplettL@0ddc496dccad4aaf85619cae07f217f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cristina Sulatycki,ou=Product Testing,dc=bitwarden,dc=com", - email: "SulatycC@428ea86de0d24cc293fcc0e69c36a51d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobby Frink,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bobby Frink,ou=Janitorial,dc=bitwarden,dc=com", - email: "FrinkB@306b2e8be27f46ec9927b59d431b8f23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rob Milinkovich,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rob Milinkovich,ou=Payroll,dc=bitwarden,dc=com", - email: "MilinkoR@359efdad39cc40ef8440421a8807b6c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lexie Thorsen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lexie Thorsen,ou=Management,dc=bitwarden,dc=com", - email: "ThorsenL@08761145d0ee492388590ebc755ffc11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lucita Hickerson,ou=Janitorial,dc=bitwarden,dc=com", - email: "HickersL@bdc7052979ce43f2af94fc8fdd8de1f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlene Grignon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carlene Grignon,ou=Janitorial,dc=bitwarden,dc=com", - email: "GrignonC@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Russ Battersby,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Russ Battersby,ou=Janitorial,dc=bitwarden,dc=com", - email: "BattersR@ed1575430eeb4652bbcb86d12841c10c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrew Thifault,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Andrew Thifault,ou=Product Development,dc=bitwarden,dc=com", - email: "ThifaulA@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Joyann Westgarth,ou=Janitorial,dc=bitwarden,dc=com", - email: "WestgarJ@7551fb498bbc46159a2a2e92421c6baa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celinda Krisa,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Celinda Krisa,ou=Administrative,dc=bitwarden,dc=com", - email: "KrisaC@87ac1189e97646f890363efe4db63ec0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fawnia Starks,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fawnia Starks,ou=Management,dc=bitwarden,dc=com", - email: "StarksF@5d9e4a3f454c470596eb4a19b0aabca9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Prissie Schieber,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Prissie Schieber,ou=Peons,dc=bitwarden,dc=com", - email: "SchiebeP@782d7744464b4c018117147752b3b8b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyn Yuhn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lyn Yuhn,ou=Administrative,dc=bitwarden,dc=com", - email: "YuhnL@45e7698e90b843bf96764adac8813e44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joellyn Montelli,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joellyn Montelli,ou=Administrative,dc=bitwarden,dc=com", - email: "MontellJ@fd7e4056685f4c789c5948839975ec7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanny Fenton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vanny Fenton,ou=Product Development,dc=bitwarden,dc=com", - email: "FentonV@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosabella Mathis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rosabella Mathis,ou=Peons,dc=bitwarden,dc=com", - email: "MathisR@f04933e85545445793e3a5773ee7f65d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celestine Demir,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Celestine Demir,ou=Payroll,dc=bitwarden,dc=com", - email: "DemirC@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charlena Mirande,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Charlena Mirande,ou=Janitorial,dc=bitwarden,dc=com", - email: "MirandeC@15447e827d294576b427fe60b8e58e62.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bennett Marting,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bennett Marting,ou=Peons,dc=bitwarden,dc=com", - email: "MartingB@7c32fb701ef74a0cad22be6cdec84337.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=PierreAlain Kelland,ou=Janitorial,dc=bitwarden,dc=com", - email: "KellandP@9de1e5ab0e97403bbd2b1cd8ab5549b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Analiese Steene,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Analiese Steene,ou=Payroll,dc=bitwarden,dc=com", - email: "SteeneA@51bf8c07247a47a89482a395ed341297.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janine Stirrett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Janine Stirrett,ou=Payroll,dc=bitwarden,dc=com", - email: "StirretJ@25d25ecced754b87ad2b47ca359ce5ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wiele Rowan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wiele Rowan,ou=Janitorial,dc=bitwarden,dc=com", - email: "RowanW@f977f0ba237149f58238530f1adcdac1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maia Reva,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maia Reva,ou=Management,dc=bitwarden,dc=com", - email: "RevaM@3398a7bd821e4193ae8f310f359e79ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tian Beeby,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tian Beeby,ou=Human Resources,dc=bitwarden,dc=com", - email: "BeebyT@ae1c8a23e1dd413a9249a93f83a32cff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nazib Schembri,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nazib Schembri,ou=Administrative,dc=bitwarden,dc=com", - email: "SchembrN@0adc67407b764a6d9b4b77d7fd10db1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lucinda Letchworth,ou=Janitorial,dc=bitwarden,dc=com", - email: "LetchwoL@472c805b68f843ad9fd85cb16521749b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cammy Shumate,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cammy Shumate,ou=Payroll,dc=bitwarden,dc=com", - email: "ShumateC@632f2740a30b4299bdecbe1293c6b1e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rianon Schick,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rianon Schick,ou=Janitorial,dc=bitwarden,dc=com", - email: "SchickR@59158ee5c665418f9b8ab9e28f108cb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Viole Areu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Viole Areu,ou=Product Development,dc=bitwarden,dc=com", - email: "AreuV@3f7d610415d84ef2bdb619b20514a382.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigitta Piper,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Brigitta Piper,ou=Product Development,dc=bitwarden,dc=com", - email: "PiperB@0877837d55bc4d3c8c1cf86b1af30616.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melly Kelkar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melly Kelkar,ou=Management,dc=bitwarden,dc=com", - email: "KelkarM@4fd5724ffe8c4be3a7330bd9ee58c54a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maritsa McCain,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maritsa McCain,ou=Product Development,dc=bitwarden,dc=com", - email: "McCainM@753b48fb7ffe43dd87736153647baa4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melissa Griffioen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melissa Griffioen,ou=Management,dc=bitwarden,dc=com", - email: "GriffioM@952de29a7bec4822af302264a85723ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tak Sebeh,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tak Sebeh,ou=Peons,dc=bitwarden,dc=com", - email: "SebehT@e4f3fd4bada6471dba76dc7596ae6743.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vittorio Muradia,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vittorio Muradia,ou=Payroll,dc=bitwarden,dc=com", - email: "MuradiaV@4bb48f2b9b4243a6be88846d63865ab7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jonell McElligott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jonell McElligott,ou=Human Resources,dc=bitwarden,dc=com", - email: "McElligJ@c483d98d8b2f4370bac517e24e1170a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=AnnHoon Chaintreuil,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChaintrA@8ff18bb869a54da6b6cdd5f2a63f2885.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jey Pau,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jey Pau,ou=Administrative,dc=bitwarden,dc=com", - email: "PauJ@38576f18c78f484896ae3f1bba73101a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Emerson Syssupport,ou=Human Resources,dc=bitwarden,dc=com", - email: "SyssuppE@5e676fae9cd742a087297df905b8c5bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jillane Metz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jillane Metz,ou=Human Resources,dc=bitwarden,dc=com", - email: "MetzJ@6d452215608049afb03f1d153c8be1b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parveen Burnage,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Parveen Burnage,ou=Human Resources,dc=bitwarden,dc=com", - email: "BurnageP@38d063b8eef24bab8cf2febf33fcac66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martine Gilliard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Martine Gilliard,ou=Human Resources,dc=bitwarden,dc=com", - email: "GilliarM@09314ab289d344eeaedcd157c5350d28.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Edmundo Yarbrough,ou=Peons,dc=bitwarden,dc=com", - email: "YarbrouE@6a380be30539453291140420cbbfde32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaji Langelier,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shaji Langelier,ou=Human Resources,dc=bitwarden,dc=com", - email: "LangeliS@abfb3b05eb524c3a9045af2f3c7592da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manny Nolan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Manny Nolan,ou=Administrative,dc=bitwarden,dc=com", - email: "NolanM@a5b16f07cc5f4d548df233a10f2abd0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vrinda Keuning,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vrinda Keuning,ou=Product Development,dc=bitwarden,dc=com", - email: "KeuningV@a3d3bf444e8449f58c24d388c9e4253b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fidelity Lenzi,ou=Product Development,dc=bitwarden,dc=com", - email: "LenziF@a9e04d8378ea40e5a826038ff40e6cd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aile StOnge,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aile StOnge,ou=Management,dc=bitwarden,dc=com", - email: "StOngeA@6c33f97ba18845049fcf33d5c689185e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marabel Lipscomb,ou=Payroll,dc=bitwarden,dc=com", - email: "LipscomM@a3cde3b2f5de4fe5ac11c48bb6df28f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helge Bowyer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Helge Bowyer,ou=Peons,dc=bitwarden,dc=com", - email: "BowyerH@479b3e4b55a5494fbabf2926242184e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norbert Missailidis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Norbert Missailidis,ou=Payroll,dc=bitwarden,dc=com", - email: "MissailN@f069d8208db84a5496e2d819694425d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bathsheba Armolavicius,ou=Product Testing,dc=bitwarden,dc=com", - email: "ArmolavB@a6fcfac6f2c541af951392eeebba2d17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Letizia Quon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Letizia Quon,ou=Janitorial,dc=bitwarden,dc=com", - email: "QuonL@a202d5209c7047ff8a841ac785c909b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haily Lamothe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Haily Lamothe,ou=Product Testing,dc=bitwarden,dc=com", - email: "LamotheH@0d16cc430a2c4388b233d89e5b36b645.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alie Staats,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alie Staats,ou=Management,dc=bitwarden,dc=com", - email: "StaatsA@8746c1b198ed48df839714090396dae1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mariesara Bourgaize,ou=Peons,dc=bitwarden,dc=com", - email: "BourgaiM@355248f7071d4e58beb9bf6f2b8c9ee2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corry Brewer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Corry Brewer,ou=Product Development,dc=bitwarden,dc=com", - email: "BrewerC@01034db83e3b44ec835b5255948e4e0f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanja Godwin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hanja Godwin,ou=Peons,dc=bitwarden,dc=com", - email: "GodwinH@c1864662acf34812bb78c7f7029d15f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brianna Hien,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Brianna Hien,ou=Product Development,dc=bitwarden,dc=com", - email: "HienB@2b36624d30a34f908a5fc12c83ce72f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evy Raing,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Evy Raing,ou=Janitorial,dc=bitwarden,dc=com", - email: "RaingE@7cfd5c325b0c431596f4ef71471b42ba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rebekah Siegel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rebekah Siegel,ou=Administrative,dc=bitwarden,dc=com", - email: "SiegelR@63e24bc173914f0f865e0c9dee2dcfe5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jobie Boucouris,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoucourJ@9a209519348642769473b09231da3137.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brekel Silverstone,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Brekel Silverstone,ou=Administrative,dc=bitwarden,dc=com", - email: "SilversB@5d869bea03ed495786efc921360e43b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harm Mehta,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Harm Mehta,ou=Product Development,dc=bitwarden,dc=com", - email: "MehtaH@ad4b259f1800408a898dff512e0a094e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=QuangTrung Yoshioka,ou=Payroll,dc=bitwarden,dc=com", - email: "YoshiokQ@4cf5733fc93742b8881de63253f58457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jae Caudill,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jae Caudill,ou=Payroll,dc=bitwarden,dc=com", - email: "CaudillJ@732895781258430aa850734a965ff9eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilde Hibberd,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hilde Hibberd,ou=Product Development,dc=bitwarden,dc=com", - email: "HibberdH@42be868e79934b2781b6098b8536a633.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tres Nyland,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tres Nyland,ou=Management,dc=bitwarden,dc=com", - email: "NylandT@37ac065458a84fc994659f0d86c970d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettye Moynihan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bettye Moynihan,ou=Peons,dc=bitwarden,dc=com", - email: "MoynihaB@0cee059feb2f45d0a3e77b9cb46c95e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Louisa Shimandle,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShimandL@9fa42e4f0ec04b66b2fd5c843402ebd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nooshin Kellum,ou=Product Testing,dc=bitwarden,dc=com", - email: "KellumN@e0035c2cc66e449187d7e04da48e8b5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shahriar Trull,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shahriar Trull,ou=Peons,dc=bitwarden,dc=com", - email: "TrullS@e3c084d5a2b44c959d053319884f8497.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Parkinson Rabaglia,ou=Product Development,dc=bitwarden,dc=com", - email: "RabagliP@87cf37472b3e4029becaa8ad3f98dbac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edyta Hargadon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Edyta Hargadon,ou=Administrative,dc=bitwarden,dc=com", - email: "HargadoE@4155bdebff5941d48d470ec7ba36ba81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marris Hameed,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marris Hameed,ou=Product Development,dc=bitwarden,dc=com", - email: "HameedM@4c53d8b9e28c4cd28a44f87cb7441dcc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurelia Raynard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aurelia Raynard,ou=Management,dc=bitwarden,dc=com", - email: "RaynardA@d787c7f385a34c7297fe344b6f5b44de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rivi Ludwig,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rivi Ludwig,ou=Management,dc=bitwarden,dc=com", - email: "LudwigR@93dd838ca8d949aca268d37f8c816502.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isadora Vaters,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Isadora Vaters,ou=Payroll,dc=bitwarden,dc=com", - email: "VatersI@f6662f434fdd4fd4be948e8e6001fcc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elana Moy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elana Moy,ou=Administrative,dc=bitwarden,dc=com", - email: "MoyE@d2a22d407c40446c9ae2afe4d17eb26f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helaine Salamon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Helaine Salamon,ou=Product Development,dc=bitwarden,dc=com", - email: "SalamonH@48f40b9c61c1423ab7f4a12dacd08cb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Spencer Lesperance,ou=Janitorial,dc=bitwarden,dc=com", - email: "LesperaS@386f61091b6f44b2afca80c5832c14c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Briney Smithson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Briney Smithson,ou=Janitorial,dc=bitwarden,dc=com", - email: "SmithsoB@7f9fd637b37c466c8750e6820ea2a8fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selva Hillidge,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Selva Hillidge,ou=Payroll,dc=bitwarden,dc=com", - email: "HillidgS@7aa1caf88bc749828056470f21af9f2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Babbie Kaczmarek,ou=Peons,dc=bitwarden,dc=com", - email: "KaczmarB@6b3525e677274247ac9aa1be4373f97d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parks Pavitt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Parks Pavitt,ou=Payroll,dc=bitwarden,dc=com", - email: "PavittP@3956b0c83ae444e7940e65fc8c4220d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Design Pepler,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Design Pepler,ou=Product Development,dc=bitwarden,dc=com", - email: "PeplerD@87034e2ab55f4c35a50e2aa26e2dd6c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bennesa McLachlan,ou=Product Testing,dc=bitwarden,dc=com", - email: "McLachlB@e89ca6a0c26a42d387c16cb15d267c2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shahram Dpierre,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shahram Dpierre,ou=Peons,dc=bitwarden,dc=com", - email: "DpierreS@fb2a9835511b44fba3bde94e482a2f71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sylvain Dans,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sylvain Dans,ou=Peons,dc=bitwarden,dc=com", - email: "DansS@53364c09d04c41208741c1b0a7953a20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phuoc Vu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Phuoc Vu,ou=Administrative,dc=bitwarden,dc=com", - email: "VuP@4bb54633dfd2486b94bd9f9680212641.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candide Elhamahmy,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Candide Elhamahmy,ou=Management,dc=bitwarden,dc=com", - email: "ElhamahC@dc7bbfc76a234dc7b7d174cbbe395c0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarine Hopley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sarine Hopley,ou=Administrative,dc=bitwarden,dc=com", - email: "HopleyS@9ce0b7ad2b3b48a6b3648a683329edc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Velma Brasset,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Velma Brasset,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrassetV@83b93a170743455c988185ea6212d71d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clemmie Brower,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Clemmie Brower,ou=Product Development,dc=bitwarden,dc=com", - email: "BrowerC@91bdb0b6732c4465a6efb8167ca0f7f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drudy Badger,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Drudy Badger,ou=Product Development,dc=bitwarden,dc=com", - email: "BadgerD@f60fb7d94af640df8ee9584eb8ff856f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Oralle Jedrysiak,ou=Human Resources,dc=bitwarden,dc=com", - email: "JedrysiO@2ef3a4093f014684b569f775d65baa2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kimmy Nagaraj,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kimmy Nagaraj,ou=Management,dc=bitwarden,dc=com", - email: "NagarajK@01636af448174d9e81627003646ae048.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shaw Masciarelli,ou=Human Resources,dc=bitwarden,dc=com", - email: "MasciarS@64472d4bb2754862940627d944b8828a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Torrie Lai,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Torrie Lai,ou=Janitorial,dc=bitwarden,dc=com", - email: "LaiT@52e0e9f6cfbd4d388e2c16ea365b21a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryon Bannister,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bryon Bannister,ou=Administrative,dc=bitwarden,dc=com", - email: "BannistB@6636a4865c34403b8e78c60d39c88859.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Karlyn Nizamuddin,ou=Janitorial,dc=bitwarden,dc=com", - email: "NizamudK@5b2fc222b3cc4e338ab7a0b7bd08ce8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melford Charter,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Melford Charter,ou=Administrative,dc=bitwarden,dc=com", - email: "CharterM@7c92d6dfba144f9587593ce6eeb4024f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meriel Tota,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Meriel Tota,ou=Janitorial,dc=bitwarden,dc=com", - email: "TotaM@f190d7cfec0941b2829b0757aff4e20f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anwar Starkebaum,ou=Administrative,dc=bitwarden,dc=com", - email: "StarkebA@125db6eb897d4dc09e52aa3ed3ba2ff6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Blanch Eskildsen,ou=Product Development,dc=bitwarden,dc=com", - email: "EskildsB@c33b0066e4a94f2895f1ce062cf2a5b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrel Samora,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Darrel Samora,ou=Management,dc=bitwarden,dc=com", - email: "SamoraD@8a049b49f80d420a99b91944b3a9e703.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gabi Fares,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gabi Fares,ou=Peons,dc=bitwarden,dc=com", - email: "FaresG@18205705f4aa44e78c4d1ab11d74972d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bao Byrd,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bao Byrd,ou=Management,dc=bitwarden,dc=com", - email: "ByrdB@261b23ab87dc475a83d11a0978547d13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Trev EhningerCuervo,ou=Human Resources,dc=bitwarden,dc=com", - email: "EhningeT@bfe71d2c671b4b5291fcfa4c9edf450b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilf Rodenfels,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Wilf Rodenfels,ou=Peons,dc=bitwarden,dc=com", - email: "RodenfeW@a0afbb1124764d928b9fba2f48eaa17d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeri Gupton,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jeri Gupton,ou=Product Development,dc=bitwarden,dc=com", - email: "GuptonJ@0849cc8e014d4858afd4576e05a417c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Didar Brooksbank,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Didar Brooksbank,ou=Payroll,dc=bitwarden,dc=com", - email: "BrooksbD@7448491b00a74a3e95be2c2010be9a72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ashraf Grigsby,ou=Human Resources,dc=bitwarden,dc=com", - email: "GrigsbyA@3bfc3de402e042a394d461b86f93128b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathe Malone,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cathe Malone,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaloneC@5cbf4d6a412e4f7ebf3b7114ffde7d8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evey Haddad,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Evey Haddad,ou=Product Testing,dc=bitwarden,dc=com", - email: "HaddadE@a8c73be9cd69486db83d92f072753b6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginette Smoot,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ginette Smoot,ou=Payroll,dc=bitwarden,dc=com", - email: "SmootG@fdf824816adf41dbba98ed5c326be597.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorita Heffner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dorita Heffner,ou=Product Development,dc=bitwarden,dc=com", - email: "HeffnerD@ea33a214953b4a6b925d5d0efa8ea38e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Melvin Medefesser,ou=Human Resources,dc=bitwarden,dc=com", - email: "MedefesM@35b79d47268c45459bca63c56a16e1e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reind Mufti,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Reind Mufti,ou=Management,dc=bitwarden,dc=com", - email: "MuftiR@f96730e4fa6b40f5ba7deeeca51513e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolynn Dikens,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carolynn Dikens,ou=Payroll,dc=bitwarden,dc=com", - email: "DikensC@a69feaacad634790a69fdf1db6b0a8d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Meredith Parmenter,ou=Human Resources,dc=bitwarden,dc=com", - email: "ParmentM@c6381227edb84dfc90689a9cc3080334.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lurleen Eberle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lurleen Eberle,ou=Product Development,dc=bitwarden,dc=com", - email: "EberleL@2fa76c066c6743bba9db4e894f651e69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tandy Fssup,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tandy Fssup,ou=Peons,dc=bitwarden,dc=com", - email: "FssupT@b69339dab59940869a3e5a49d58c958e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Datas Simmonds,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Datas Simmonds,ou=Product Development,dc=bitwarden,dc=com", - email: "SimmondD@63a11e75c405416bb483a040d9d4e6c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darline Frankenberger,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Darline Frankenberger,ou=Management,dc=bitwarden,dc=com", - email: "FrankenD@b5537025c24b4ad290ca22694ec8fb06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merry Cadtools,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Merry Cadtools,ou=Payroll,dc=bitwarden,dc=com", - email: "CadtoolM@534c35ac167944c782718311b9e185bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chabane Hornung,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chabane Hornung,ou=Peons,dc=bitwarden,dc=com", - email: "HornungC@b5a44095f2374197a4ff741b9417f6b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Satoshi Yogeswaran,ou=Human Resources,dc=bitwarden,dc=com", - email: "YogeswaS@f8a322034d5e45cc8676b5e9fe5f5d0f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Colm Yassa,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Colm Yassa,ou=Peons,dc=bitwarden,dc=com", - email: "YassaC@b968f655b96e4ab58fcc2e120f71a7b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jillayne Cobb,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jillayne Cobb,ou=Peons,dc=bitwarden,dc=com", - email: "CobbJ@3009937061fa44e08033cd2d77480708.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruby Brotherton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ruby Brotherton,ou=Peons,dc=bitwarden,dc=com", - email: "BrotherR@878c3f08cca44fc1891338a97a6ec462.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marjie Geyer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marjie Geyer,ou=Product Development,dc=bitwarden,dc=com", - email: "GeyerM@25d2cd968a404f8ab3144ef7402e2e12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=McGee Schreiber,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=McGee Schreiber,ou=Peons,dc=bitwarden,dc=com", - email: "SchreibM@e9898ce2fb574b6597e407808ae67d1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrna Befanis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Myrna Befanis,ou=Product Testing,dc=bitwarden,dc=com", - email: "BefanisM@6aceddcd02a24d54bf8652b3d2b2d14f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Roddy Gerlinsky,ou=Payroll,dc=bitwarden,dc=com", - email: "GerlinsR@9f6bfe3847184c6c97f52a6cccd840f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurine StJames,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maurine StJames,ou=Payroll,dc=bitwarden,dc=com", - email: "StJamesM@61f214f1d8524b3087f5851880215a12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ebony DuBerger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ebony DuBerger,ou=Administrative,dc=bitwarden,dc=com", - email: "DuBergeE@91cbd6d172d049aa810e0a17e3a01178.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donnette Leighton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Donnette Leighton,ou=Management,dc=bitwarden,dc=com", - email: "LeightoD@ecd15df669db43f58dc8c85e172bc379.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daryl Broca,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Daryl Broca,ou=Administrative,dc=bitwarden,dc=com", - email: "BrocaD@777f3fb506bf4a578c7c26472bf8bb1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristabel Orth,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cristabel Orth,ou=Peons,dc=bitwarden,dc=com", - email: "OrthC@e37545ccfd5e4e4281ccd855336fcf03.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constantia Lundy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Constantia Lundy,ou=Payroll,dc=bitwarden,dc=com", - email: "LundyC@8ad57fa5a0014d7d86bb326fd3c22de8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Morris Ehrlich,ou=Product Testing,dc=bitwarden,dc=com", - email: "EhrlichM@0ffbff9053044f38bd1b7473f0a9a2e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shashi Amini,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shashi Amini,ou=Janitorial,dc=bitwarden,dc=com", - email: "AminiS@b23fe60aaafa49a2908f5eec32556f6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shlomo Laferriere,ou=Payroll,dc=bitwarden,dc=com", - email: "LaferriS@20e4624ef958401cb7727678bb609188.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leola Richard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leola Richard,ou=Management,dc=bitwarden,dc=com", - email: "RichardL@bc55479898d74c7080b7e1e95bbf0012.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jai Pascas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jai Pascas,ou=Human Resources,dc=bitwarden,dc=com", - email: "PascasJ@3c92af39d2ec4fe1ac430dd0dc234ada.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petronille Receiving,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Petronille Receiving,ou=Product Development,dc=bitwarden,dc=com", - email: "ReceiviP@0849cc8e014d4858afd4576e05a417c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sidonia Badza,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sidonia Badza,ou=Administrative,dc=bitwarden,dc=com", - email: "BadzaS@743e7a7d698b4bf7af47cb3ffe243efb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hyacintha Morocz,ou=Human Resources,dc=bitwarden,dc=com", - email: "MoroczH@50bf451998584438a3048a19956d7120.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Career Culkin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Career Culkin,ou=Product Development,dc=bitwarden,dc=com", - email: "CulkinC@4a8d7287d7f44feeb52346f4896c7bad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jacquie Sommerdorf,ou=Product Development,dc=bitwarden,dc=com", - email: "SommerdJ@c34ff4c9cd024e7eb996d78abb689848.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aubrey Mina,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aubrey Mina,ou=Peons,dc=bitwarden,dc=com", - email: "MinaA@5ce7099e829941498f32f6630dda9440.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilhelmus Mandel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wilhelmus Mandel,ou=Management,dc=bitwarden,dc=com", - email: "MandelW@ba60a08b258046f98633fd3c737e4f83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anya Kantor,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Anya Kantor,ou=Product Testing,dc=bitwarden,dc=com", - email: "KantorA@281ce2096ed0496b9bf2ff2a6d46ed5b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=National MacCarthy,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=National MacCarthy,ou=Product Development,dc=bitwarden,dc=com", - email: "MacCartN@ccc8e04b90324a8e82f8a7a8473e9c5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nissie Heile,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nissie Heile,ou=Management,dc=bitwarden,dc=com", - email: "HeileN@e1d680d5d4c0408e94dcd439892966d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pac Popowycz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pac Popowycz,ou=Product Testing,dc=bitwarden,dc=com", - email: "PopowycP@1b72730ac3814cefac0b769b1824f8f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blancha Cousineau,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Blancha Cousineau,ou=Peons,dc=bitwarden,dc=com", - email: "CousineB@18892b15c58d47f6840bb6c23b52349b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harper McWaters,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Harper McWaters,ou=Janitorial,dc=bitwarden,dc=com", - email: "McWaterH@b696b2494a974f2a9374a73c6b7ac6f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adorne Bejar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Adorne Bejar,ou=Product Development,dc=bitwarden,dc=com", - email: "BejarA@a58fbd0af59142b59fca318bb0934c87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tdr Wetzel,ou=Product Testing,dc=bitwarden,dc=com", - email: "WetzelT@56764f80ffb24969b868fd703a8c92ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenee Marasco,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lenee Marasco,ou=Human Resources,dc=bitwarden,dc=com", - email: "MarascoL@ff1a7b4761be4273abaf2ebcbaf85113.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reggi Hor,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Reggi Hor,ou=Product Testing,dc=bitwarden,dc=com", - email: "HorR@9fc16f31309a4e5489f1a046e558b353.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andres Williford,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Andres Williford,ou=Management,dc=bitwarden,dc=com", - email: "WillifoA@b089600d85cc409eb4f207ab6f27e389.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kwan Devault,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kwan Devault,ou=Human Resources,dc=bitwarden,dc=com", - email: "DevaultK@5b3c54f47fc64ffbbe62b2e499081d43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sibbie Lamm,ou=Product Testing,dc=bitwarden,dc=com", - email: "LammS@3ea21438af3c4a4f8255617efb256c4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dyanna Abdollahi,ou=Administrative,dc=bitwarden,dc=com", - email: "AbdollaD@5c6902554d684605823ee60bd0935275.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lionel Reinlie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lionel Reinlie,ou=Payroll,dc=bitwarden,dc=com", - email: "ReinlieL@3385d9447e994f049c4412ecf2da5e48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gunter Glidewell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gunter Glidewell,ou=Administrative,dc=bitwarden,dc=com", - email: "GlideweG@83797aadf07c4129b11845f5bb05984e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nick Brewer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nick Brewer,ou=Peons,dc=bitwarden,dc=com", - email: "BrewerN@ebc77cc2fc2e44fdb3cb1363b1c76a4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Josefa Kilburn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Josefa Kilburn,ou=Management,dc=bitwarden,dc=com", - email: "KilburnJ@bdf4207a20c5486ca943568e769c8344.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cindy Oestreich,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cindy Oestreich,ou=Product Development,dc=bitwarden,dc=com", - email: "OestreiC@a69557e189c747b59333670f3ebf3a1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pia Turchan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pia Turchan,ou=Human Resources,dc=bitwarden,dc=com", - email: "TurchanP@9b78793ee7914009976b9c8dd8324a1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Louisa Ryall,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Louisa Ryall,ou=Product Testing,dc=bitwarden,dc=com", - email: "RyallL@32d0e3075fb342a38b8c9b42581b81f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherry Tennant,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cherry Tennant,ou=Human Resources,dc=bitwarden,dc=com", - email: "TennantC@f81c7db8a94146de916a4b35349336d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paul Rafael,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Paul Rafael,ou=Management,dc=bitwarden,dc=com", - email: "RafaelP@add5220cb5784db4938f41ee78181d1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glornia Cicchino,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Glornia Cicchino,ou=Product Development,dc=bitwarden,dc=com", - email: "CicchinG@ced08fdb486e456c87f692a0e9ccf058.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annalee Terminals,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Annalee Terminals,ou=Human Resources,dc=bitwarden,dc=com", - email: "TerminaA@dc111e187e0b4ac39980dc1afb0f449f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gui Dovydaitis,ou=Product Testing,dc=bitwarden,dc=com", - email: "DovydaiG@87d497e060994207b70ef7bd8c3d6175.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dave Salehi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dave Salehi,ou=Peons,dc=bitwarden,dc=com", - email: "SalehiD@c59c83b24c3c472dbb65b804095a3c79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wendy Slattery,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wendy Slattery,ou=Human Resources,dc=bitwarden,dc=com", - email: "SlatterW@b24cb4ce9a1b43e380cc986b9b45bd25.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Previn Hirayama,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Previn Hirayama,ou=Payroll,dc=bitwarden,dc=com", - email: "HirayamP@14d2a8b145214481bc45fd027c9d1e6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evvy Barsony,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Evvy Barsony,ou=Administrative,dc=bitwarden,dc=com", - email: "BarsonyE@53855167a537436d8e1bbb93f42697aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hollie Lawton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hollie Lawton,ou=Management,dc=bitwarden,dc=com", - email: "LawtonH@eec4bbb8da77429f893524017458e5d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dacie Doi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dacie Doi,ou=Management,dc=bitwarden,dc=com", - email: "DoiD@3214ac0354a44d4785a5580affcc3528.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Weitzel Dadkhah,ou=Product Testing,dc=bitwarden,dc=com", - email: "DadkhahW@54ce292eb157498aac7b1683764ec867.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pascal Cloutier,ou=Janitorial,dc=bitwarden,dc=com", - email: "CloutieP@86c55960d45747ecb5afd7997d576a89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hall Twitty,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hall Twitty,ou=Peons,dc=bitwarden,dc=com", - email: "TwittyH@fc1da3ccee8c40f8af1318302a847e49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=JulieAnne Dikaitis,ou=Human Resources,dc=bitwarden,dc=com", - email: "DikaitiJ@0241a0d3cbf64f09a3380b82cf315d15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tien Ferraro,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tien Ferraro,ou=Peons,dc=bitwarden,dc=com", - email: "FerraroT@fe6a97f91a3b481692abba6662452ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorine Metrailer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lorine Metrailer,ou=Administrative,dc=bitwarden,dc=com", - email: "MetrailL@6cc4c5dff9d04b5e89ad32c2b33d43af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heidie ElAm,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Heidie ElAm,ou=Human Resources,dc=bitwarden,dc=com", - email: "ElAmH@4e73c97266f94a4089aa37d8a943ffaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nyssa Australia,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nyssa Australia,ou=Janitorial,dc=bitwarden,dc=com", - email: "AustralN@95c0fe4d7e2a47d3939748538bd3c000.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melford Ashdown,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melford Ashdown,ou=Janitorial,dc=bitwarden,dc=com", - email: "AshdownM@462cea286952488090839d7ab4d20e61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rowe McHarg,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rowe McHarg,ou=Payroll,dc=bitwarden,dc=com", - email: "McHargR@ed96afcd8b954b4d85dba951a21a6324.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shawnee Vesterdal,ou=Peons,dc=bitwarden,dc=com", - email: "VesterdS@59970149bbc643e4bc31ce5dfa47996a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rasla ODoherty,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rasla ODoherty,ou=Management,dc=bitwarden,dc=com", - email: "ODohertR@570b2a8b45094bdbb019684431d6e2af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felicle Ramondt,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Felicle Ramondt,ou=Administrative,dc=bitwarden,dc=com", - email: "RamondtF@4112fa5751f947c9a6ebd8e6086a4cce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jasver Jurman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jasver Jurman,ou=Human Resources,dc=bitwarden,dc=com", - email: "JurmanJ@1286c9db4c6f4ed39232709079768da4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rosalyn Hassan,ou=Payroll,dc=bitwarden,dc=com", - email: "HassanR@9b1dcdebf2c241bf975e03d6ac9197e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anderea Albritton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anderea Albritton,ou=Janitorial,dc=bitwarden,dc=com", - email: "AlbrittA@a34bb7d1546c462cb51396798bb22845.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alana Melkild,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alana Melkild,ou=Management,dc=bitwarden,dc=com", - email: "MelkildA@b163a54ef1ca4503b096b531dfca5c9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Venkatakrishna Kelland,ou=Human Resources,dc=bitwarden,dc=com", - email: "KellandV@4e208cde3548420a94b59f72665403bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orie Kellogg,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Orie Kellogg,ou=Janitorial,dc=bitwarden,dc=com", - email: "KelloggO@34a2a20900494afa86a3d5f8d34be87e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liva McMasters,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Liva McMasters,ou=Human Resources,dc=bitwarden,dc=com", - email: "McMasteL@f4d0af946ec24ea988e36de4a253dd77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Olwen Ducharme,ou=Product Testing,dc=bitwarden,dc=com", - email: "DucharmO@01e99ef3b2924e47abd9e4716ec0ba6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kiah Chandan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kiah Chandan,ou=Peons,dc=bitwarden,dc=com", - email: "ChandanK@01af6203536c42ec8e9ddfa7b0066fb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vipi Bladon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vipi Bladon,ou=Administrative,dc=bitwarden,dc=com", - email: "BladonV@5751350c44374a93b1d462c83d0b1fe8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dan Yost,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dan Yost,ou=Janitorial,dc=bitwarden,dc=com", - email: "YostD@641b3c32e986403cb54e8416d6ccf047.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivo Dziawa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ivo Dziawa,ou=Payroll,dc=bitwarden,dc=com", - email: "DziawaI@9b030c1d6ce3438f956ad1da5fffc998.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vahid Routing,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vahid Routing,ou=Administrative,dc=bitwarden,dc=com", - email: "RoutingV@687d9f112b0946d8aa0c6a6aac0b1c20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Paloma Dyrdahl,ou=Human Resources,dc=bitwarden,dc=com", - email: "DyrdahlP@f51aa7b4b6ef481ab8bd87058413fd8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marianna Wray,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marianna Wray,ou=Administrative,dc=bitwarden,dc=com", - email: "WrayM@e1267c37955c45cfa6ee4879d9455618.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sunning Spence,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sunning Spence,ou=Management,dc=bitwarden,dc=com", - email: "SpenceS@a5390b0a929f4049987256511e1011a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cart Pyron,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cart Pyron,ou=Administrative,dc=bitwarden,dc=com", - email: "PyronC@5d9a493aeb18453b882b99b919bc8aa9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nashville Venier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nashville Venier,ou=Janitorial,dc=bitwarden,dc=com", - email: "VenierN@b37b8170c2a14be99b8672023148d924.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glenn Salem,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Glenn Salem,ou=Management,dc=bitwarden,dc=com", - email: "SalemG@249d2170ea224f8ebf6a1148a9b89582.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raman Smolin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Raman Smolin,ou=Product Development,dc=bitwarden,dc=com", - email: "SmolinR@f4cac90289b44dc28b9de765747f5a7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marin Mokbel,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marin Mokbel,ou=Payroll,dc=bitwarden,dc=com", - email: "MokbelM@c54cbe69dcd34a96b7a131338d06781d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rici Plasse,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rici Plasse,ou=Payroll,dc=bitwarden,dc=com", - email: "PlasseR@07b1787368a34e789ce994f0c32f4345.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anup Klammer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anup Klammer,ou=Janitorial,dc=bitwarden,dc=com", - email: "KlammerA@af3378adce2b421eb0f1e5ee23a2a017.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Baljinder Chakrabarty,ou=Administrative,dc=bitwarden,dc=com", - email: "ChakrabB@6ae361d0671f4e45b2dca3f489ab2ec1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninon Starr,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ninon Starr,ou=Peons,dc=bitwarden,dc=com", - email: "StarrN@c4ee1925f86d4607a82cc8efae44ec4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atul Orth,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Atul Orth,ou=Product Development,dc=bitwarden,dc=com", - email: "OrthA@5377b23229dc41399d1b48044598198c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tung Lazar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tung Lazar,ou=Management,dc=bitwarden,dc=com", - email: "LazarT@cff08fbfbb494d1cac1d02cef13ff5e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Conchita Raley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Conchita Raley,ou=Janitorial,dc=bitwarden,dc=com", - email: "RaleyC@ad261b7bb83c4b9b8809f461bc78f37f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steen Meyer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Steen Meyer,ou=Administrative,dc=bitwarden,dc=com", - email: "MeyerS@bf91192220a74764b99bec46e53e3350.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ingunna Zollman,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ingunna Zollman,ou=Administrative,dc=bitwarden,dc=com", - email: "ZollmanI@b3ee3a7577c349aeba9b99d9cc89baee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Weilin Muttaqi,ou=Product Development,dc=bitwarden,dc=com", - email: "MuttaqiW@1957e383cee049d8b2f276495d647fb4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winnie Goss,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Winnie Goss,ou=Payroll,dc=bitwarden,dc=com", - email: "GossW@c37d3b12215747d99472a7fb366acdb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dori Myatt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dori Myatt,ou=Product Testing,dc=bitwarden,dc=com", - email: "MyattD@02379e00c72e43ada0ec5298f3ee9106.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beb Jammu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beb Jammu,ou=Administrative,dc=bitwarden,dc=com", - email: "JammuB@cc3b9e94565c4600bc410c93d2d0b1da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reno Raines,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Reno Raines,ou=Payroll,dc=bitwarden,dc=com", - email: "RainesR@61d349f36f74474aadc4b14dd96074dd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delilah Praeuner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Delilah Praeuner,ou=Peons,dc=bitwarden,dc=com", - email: "PraeuneD@9f2b0ca340a44c1da690b6d62d65daf8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marilyn Bigley,ou=Janitorial,dc=bitwarden,dc=com", - email: "BigleyM@dcfeb1e34dfd4d498a4c69e47113773f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Aubrie Bykowy,ou=Administrative,dc=bitwarden,dc=com", - email: "BykowyA@f6fe529f06ac433fab898dee2f04e9dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christiane Wanner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Christiane Wanner,ou=Product Development,dc=bitwarden,dc=com", - email: "WannerC@ed6e0f8b1a3846db9530b7f4f3171825.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sada Polulack,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sada Polulack,ou=Payroll,dc=bitwarden,dc=com", - email: "PolulacS@c672fa66ceed458fbe3ed5f11cbe13aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Daloris Oshiro,ou=Janitorial,dc=bitwarden,dc=com", - email: "OshiroD@1cd5de40e5ac4cd695f9ff5aee94931d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shauna Caputo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shauna Caputo,ou=Janitorial,dc=bitwarden,dc=com", - email: "CaputoS@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Oleesa Suwala,ou=Janitorial,dc=bitwarden,dc=com", - email: "SuwalaO@2a14a90e7c884ce1a37209a563b3ce10.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hrdata Placido,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hrdata Placido,ou=Product Development,dc=bitwarden,dc=com", - email: "PlacidoH@3264b8974bc14e47aff69928751d5552.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belvia Raissian,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Belvia Raissian,ou=Human Resources,dc=bitwarden,dc=com", - email: "RaissiaB@caff5577c02346c4b65e722aedfc7ef3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odette Swiatkowski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Odette Swiatkowski,ou=Management,dc=bitwarden,dc=com", - email: "SwiatkoO@9203e13698914816bdcd0ae89556ac90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Richelle Thorne,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Richelle Thorne,ou=Management,dc=bitwarden,dc=com", - email: "ThorneR@478d49ea22024f81bf0c3655b7d4984f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacques Bhatia,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jacques Bhatia,ou=Peons,dc=bitwarden,dc=com", - email: "BhatiaJ@5aefcf13b98144a482e597727f2900df.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Walliw Hyjek,ou=Human Resources,dc=bitwarden,dc=com", - email: "HyjekW@04b4f27ec2ac43be97552612edca5a77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Houman Levere,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Houman Levere,ou=Janitorial,dc=bitwarden,dc=com", - email: "LevereH@7d7c04d767f0473782636d718b2a2aee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hsieh Shayanpour,ou=Payroll,dc=bitwarden,dc=com", - email: "ShayanpH@134e9c1116de4754a55f3f221bd47dca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doloritas Adams,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Doloritas Adams,ou=Management,dc=bitwarden,dc=com", - email: "AdamsD@d6de9e07b63b482e895c0d1074306ac5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Starr Selent,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Starr Selent,ou=Human Resources,dc=bitwarden,dc=com", - email: "SelentS@4b870fc05654407aaffa37354d036e58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doria Sherrill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Doria Sherrill,ou=Product Testing,dc=bitwarden,dc=com", - email: "SherrilD@67ed6a3085c048b9841abf12a338d7fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cassaundra Godsoe,ou=Product Testing,dc=bitwarden,dc=com", - email: "GodsoeC@95a0714026f54037aaa182b092f39903.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Felicity Reichinger,ou=Janitorial,dc=bitwarden,dc=com", - email: "ReichinF@5dc39fbc350c43fe84c932142400265c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maire Follett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maire Follett,ou=Payroll,dc=bitwarden,dc=com", - email: "FollettM@b4fa9c83a97e478e900b988131cc53a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Thomasine Clampitte,ou=Product Development,dc=bitwarden,dc=com", - email: "ClampitT@a5cab49b3db14b2ca7046f4fa270b484.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ying Schulze,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ying Schulze,ou=Management,dc=bitwarden,dc=com", - email: "SchulzeY@5750a4ef0b904e64a81925c3672ef563.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Samual Franzky,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Samual Franzky,ou=Payroll,dc=bitwarden,dc=com", - email: "FranzkyS@bc79177550ea403786c826687c120cc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nert Bombardier,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nert Bombardier,ou=Product Development,dc=bitwarden,dc=com", - email: "BombardN@468705ba5f434f3295170aa6ba4375b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catherine Hite,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Catherine Hite,ou=Product Development,dc=bitwarden,dc=com", - email: "HiteC@7d42ba8899ef4daea01b1b9e81793953.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilyse Mueller,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ilyse Mueller,ou=Product Development,dc=bitwarden,dc=com", - email: "MuellerI@3804896e582c4b3cac297cdd6774c60b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephenie Brennen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stephenie Brennen,ou=Management,dc=bitwarden,dc=com", - email: "BrennenS@1992350853aa4c25bb04f92a613f61ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Normand Hussein,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Normand Hussein,ou=Peons,dc=bitwarden,dc=com", - email: "HusseinN@e7d8ea0a48844afca86cee78439bf3ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Greta Vilayil,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Greta Vilayil,ou=Product Development,dc=bitwarden,dc=com", - email: "VilayilG@464e8484746549448721c5996878db8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siana Letsome,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Siana Letsome,ou=Payroll,dc=bitwarden,dc=com", - email: "LetsomeS@85e9799a13fd4c71b2b71e4fad5f5b8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cosola Steene,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cosola Steene,ou=Product Development,dc=bitwarden,dc=com", - email: "SteeneC@0565c5e96dfc4577b9a5d67dbae6882a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cooney Momon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cooney Momon,ou=Product Testing,dc=bitwarden,dc=com", - email: "MomonC@8b30e4fda886404bbad7c69a4d0c891b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ashla Hinchey,ou=Product Testing,dc=bitwarden,dc=com", - email: "HincheyA@7861fff1b7b548db86804b430c935e99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julie Dinalic,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Julie Dinalic,ou=Product Development,dc=bitwarden,dc=com", - email: "DinalicJ@7677d85bd47643a9936d436eda55abc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manya Mukherjee,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Manya Mukherjee,ou=Peons,dc=bitwarden,dc=com", - email: "MukherjM@54c9f2fcd12b42f2bc190f4e3b612fb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evans Letsome,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Evans Letsome,ou=Management,dc=bitwarden,dc=com", - email: "LetsomeE@54f67a9483774cc1b5e0de314f8eb92a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silvana Filpus,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Silvana Filpus,ou=Human Resources,dc=bitwarden,dc=com", - email: "FilpusS@1323c697a4384a89878379a601aa7eea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=YauFun Poindexter,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=YauFun Poindexter,ou=Administrative,dc=bitwarden,dc=com", - email: "PoindexY@aa594d3d10eb450fa0bddacf7ac87cac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=PohSoon Hellyer,ou=Product Testing,dc=bitwarden,dc=com", - email: "HellyerP@03c5e61ca485493dabd358d72b829f22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emmy Blissett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emmy Blissett,ou=Product Development,dc=bitwarden,dc=com", - email: "BlissetE@b09998527867493f8ec7d2c91a978e4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blanche VanKast,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Blanche VanKast,ou=Product Development,dc=bitwarden,dc=com", - email: "VanKastB@adb4d2b4425349f3bb6cfdf4327abf0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fernanda Ermarkaryan,ou=Product Testing,dc=bitwarden,dc=com", - email: "ErmarkaF@0b6158fe73084e238a8d3b6914b44b46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merry Aderhold,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Merry Aderhold,ou=Peons,dc=bitwarden,dc=com", - email: "AderholM@a5f3f4452bf8496fb0a3c488cc4a7ea7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwenni Marren,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gwenni Marren,ou=Management,dc=bitwarden,dc=com", - email: "MarrenG@298910ba55544a1097f46cf86b2ab0db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Allys Akita,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Allys Akita,ou=Product Testing,dc=bitwarden,dc=com", - email: "AkitaA@f23a16acadd64ac19918522aa8759ece.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marris Fanchi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marris Fanchi,ou=Payroll,dc=bitwarden,dc=com", - email: "FanchiM@e1a5d833294d4b9eaa497139d44c8a66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Courtney Bayraktar,ou=Janitorial,dc=bitwarden,dc=com", - email: "BayraktC@146c6f8ea8724614b75bf56ba3cb8bbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bryna McMann,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bryna McMann,ou=Peons,dc=bitwarden,dc=com", - email: "McMannB@15866f1d7367463c8aa06c201aa87971.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ysabel Mendonca,ou=Human Resources,dc=bitwarden,dc=com", - email: "MendoncY@9cde21d54f45469eaa2726ba1c900158.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clayton Lychak,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Clayton Lychak,ou=Product Testing,dc=bitwarden,dc=com", - email: "LychakC@3986b5b118ef4d79a84f9f227789123a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ronald Bernhardt,ou=Administrative,dc=bitwarden,dc=com", - email: "BernharR@6959c2a103f748adbcb2ba7b29cef5d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abe Parton,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Abe Parton,ou=Peons,dc=bitwarden,dc=com", - email: "PartonA@d67f9ee009e04d2db5fb442e7cbf3d9c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felice Kaehler,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Felice Kaehler,ou=Payroll,dc=bitwarden,dc=com", - email: "KaehlerF@880fea2dcc394beca5f7e445d6e3f83c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacenta Sztein,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jacenta Sztein,ou=Management,dc=bitwarden,dc=com", - email: "SzteinJ@2ffe207cbf4244c5be34772f95d3e203.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonja Hoag,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sonja Hoag,ou=Payroll,dc=bitwarden,dc=com", - email: "HoagS@41e244581cf54e77b9831bacfa1794ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manmohan MacAdams,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Manmohan MacAdams,ou=Peons,dc=bitwarden,dc=com", - email: "MacAdamM@642c0c60f802487f958e665bafd86eae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathe Bejar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cathe Bejar,ou=Peons,dc=bitwarden,dc=com", - email: "BejarC@ba8402a4d315465dbb751a651c142686.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tape Vandervelde,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tape Vandervelde,ou=Administrative,dc=bitwarden,dc=com", - email: "VandervT@db179d7341f8445abe156cf9e17446a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adria Leger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Adria Leger,ou=Administrative,dc=bitwarden,dc=com", - email: "LegerA@6a29a5859e9645b49806b0a3149cb2b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Modesty Quinlan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Modesty Quinlan,ou=Management,dc=bitwarden,dc=com", - email: "QuinlanM@643a7a9782f24ae2ae0ce0064cc2c175.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jawaid Upton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jawaid Upton,ou=Management,dc=bitwarden,dc=com", - email: "UptonJ@48f40b9c61c1423ab7f4a12dacd08cb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trevor Vradmin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Trevor Vradmin,ou=Product Development,dc=bitwarden,dc=com", - email: "VradminT@5214956f0ee84ad493b8defdd90a23da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helena Pellizzari,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Helena Pellizzari,ou=Peons,dc=bitwarden,dc=com", - email: "PellizzH@aea3f0a7f67b4eaaaa82cbd9284643da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MunHang Salinas,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=MunHang Salinas,ou=Janitorial,dc=bitwarden,dc=com", - email: "SalinasM@1dc3a166a7d1429cbda07bce89749db3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=SimonPui-Lok Schulze,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchulzeS@f071c89187164ee99b36301acebce3d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Stephani Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", - email: "SaidzadS@ab41bf0b11974609ad8cdf477ead2e3f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delcina Forbes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Delcina Forbes,ou=Product Development,dc=bitwarden,dc=com", - email: "ForbesD@6b58c1a2c51b4e6d93fae52160b937ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norene Tarver,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Norene Tarver,ou=Janitorial,dc=bitwarden,dc=com", - email: "TarverN@416f73acf1c3455592568bbc2cd91814.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angie Leiba,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Angie Leiba,ou=Management,dc=bitwarden,dc=com", - email: "LeibaA@cdf65b883c4c457a86f2eba62ef732a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ernest Welker,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ernest Welker,ou=Janitorial,dc=bitwarden,dc=com", - email: "WelkerE@98dbe2650ab647828dc76525d39c4ec5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dorisa Venjohn,ou=Human Resources,dc=bitwarden,dc=com", - email: "VenjohnD@416f73acf1c3455592568bbc2cd91814.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fitzgerald Kabel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fitzgerald Kabel,ou=Management,dc=bitwarden,dc=com", - email: "KabelF@a3cca719b1e44338804967e6cd3716a5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zaven Bethune,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zaven Bethune,ou=Product Development,dc=bitwarden,dc=com", - email: "BethuneZ@d9c35c3dbb1b4cc08294fcf741816060.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aridatha Flindall,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aridatha Flindall,ou=Management,dc=bitwarden,dc=com", - email: "FlindalA@cae8e3926df843bead78e784e4401c15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Cairistiona Sanh,ou=Product Development,dc=bitwarden,dc=com", - email: "SanhC@b70f11362a424a69841534d3b1179197.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kipp Aubuchon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kipp Aubuchon,ou=Management,dc=bitwarden,dc=com", - email: "AubuchoK@c8e67ce97f644fddb82b05d46154eca9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daile Id,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Daile Id,ou=Payroll,dc=bitwarden,dc=com", - email: "IdD@250220c45d4c4f3e8bbdbc41fe165d43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shea Lashmit,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shea Lashmit,ou=Product Testing,dc=bitwarden,dc=com", - email: "LashmitS@795d165ac426423b9759f469242c1c41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rizwan McCloskey,ou=Janitorial,dc=bitwarden,dc=com", - email: "McCloskR@7b165bfb913f44be9f591cae0fc2ad79.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stuart Murdock,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Stuart Murdock,ou=Payroll,dc=bitwarden,dc=com", - email: "MurdockS@281a3b7d828a4279bcb4d231694f9078.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrianna Ness,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Adrianna Ness,ou=Janitorial,dc=bitwarden,dc=com", - email: "NessA@4cb464a4b57341639b507e14b84bcd33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Agace Fitzpatrick,ou=Product Development,dc=bitwarden,dc=com", - email: "FitzpatA@d0510c6d4d2248279a5b0899ea306017.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanity Penland,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vanity Penland,ou=Human Resources,dc=bitwarden,dc=com", - email: "PenlandV@f8f475e771bd4cb698dda476a2ad7df5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shiroshi Thornley,ou=Product Development,dc=bitwarden,dc=com", - email: "ThornleS@49424809fdd04ce884f671ecda70d45c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Denzil Willenbring,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Denzil Willenbring,ou=Administrative,dc=bitwarden,dc=com", - email: "WillenbD@21b4ff7eaee4433da6e498e7c5416e46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erna Stephen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Erna Stephen,ou=Janitorial,dc=bitwarden,dc=com", - email: "StephenE@b401949a67c74bd1beca2a3e5c932036.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MarieAndree Ness,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=MarieAndree Ness,ou=Management,dc=bitwarden,dc=com", - email: "NessM@2e9e3fdb5ac94378ae0798f03ed2af05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LouisRene Borozny,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=LouisRene Borozny,ou=Payroll,dc=bitwarden,dc=com", - email: "BoroznyL@76f45d6ecf254c758ec9e0e2bce3358b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donetta Grabowski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Donetta Grabowski,ou=Peons,dc=bitwarden,dc=com", - email: "GrabowsD@282788aa89974e41becc817ad84f61e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Brianne Seddigh,ou=Product Testing,dc=bitwarden,dc=com", - email: "SeddighB@331a1fba93cb4fc9bfec4ceeacadac7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Henk Crick,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Henk Crick,ou=Product Testing,dc=bitwarden,dc=com", - email: "CrickH@de014112a9c2429e8a696185d3f55fa8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ineke Haig,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ineke Haig,ou=Payroll,dc=bitwarden,dc=com", - email: "HaigI@4b870fc05654407aaffa37354d036e58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Annemarijke Toscano,ou=Product Testing,dc=bitwarden,dc=com", - email: "ToscanoA@9d29672938a1423692f56bf9785bfe43.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felipa Catlett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Felipa Catlett,ou=Product Testing,dc=bitwarden,dc=com", - email: "CatlettF@c7b440e597614575a5a39ed9339f6e2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathye Ledou,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kathye Ledou,ou=Management,dc=bitwarden,dc=com", - email: "LedouK@3019fa1598344acaa882f41e30176719.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pawel Pippin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pawel Pippin,ou=Payroll,dc=bitwarden,dc=com", - email: "PippinP@74e0243ab8e64a19864d198a422eff4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Godiva Pesik,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Godiva Pesik,ou=Janitorial,dc=bitwarden,dc=com", - email: "PesikG@069bff2c38b341aca5c431f6580b51ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rosamund Freimark,ou=Human Resources,dc=bitwarden,dc=com", - email: "FreimarR@a7879a3db49d425f8293a2b2d51d5b86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hugo Lamothe,ou=Janitorial,dc=bitwarden,dc=com", - email: "LamotheH@c2fbe2791d9c4564ab131c65109368d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evelina Mapile,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Evelina Mapile,ou=Administrative,dc=bitwarden,dc=com", - email: "MapileE@502ce1a083704d4ea4b58d700d574c63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pammy Rogers,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pammy Rogers,ou=Human Resources,dc=bitwarden,dc=com", - email: "RogersP@78e39349ef7749648d2cb3e7b1e56508.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pas Giles,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pas Giles,ou=Human Resources,dc=bitwarden,dc=com", - email: "GilesP@8670b7b167164a8b9ce71d78ae9cb652.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marietta CamelToueg,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marietta CamelToueg,ou=Management,dc=bitwarden,dc=com", - email: "CamelToM@8df14385ae864b439973adc9259c1607.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rico Meachum,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rico Meachum,ou=Management,dc=bitwarden,dc=com", - email: "MeachumR@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Venkat Marrone,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Venkat Marrone,ou=Administrative,dc=bitwarden,dc=com", - email: "MarroneV@b2f3aa04c0ef4b03a42b0509b9df028c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=JeanMarc McAllister,ou=Payroll,dc=bitwarden,dc=com", - email: "McAllisJ@31bdf3f083274a9a823bbf5bbd24461a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carolyn Seamster,ou=Janitorial,dc=bitwarden,dc=com", - email: "SeamsteC@b05d3b7a0745414e90247097c6c4b50d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elwood Gould,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elwood Gould,ou=Payroll,dc=bitwarden,dc=com", - email: "GouldE@660a614454f1481f8e7878f66c6cc97d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorin Rittenhouse,ou=Payroll,dc=bitwarden,dc=com", - email: "RittenhD@b25a6c9a4813403592f85516045bbb70.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=AnneLise Zhelka,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZhelkaA@9524e5fbf8844145b5c00986d16d8376.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrel Hoch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Darrel Hoch,ou=Janitorial,dc=bitwarden,dc=com", - email: "HochD@ead811946c1c45dc9e9e74c993c44021.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eunice Gerhart,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eunice Gerhart,ou=Management,dc=bitwarden,dc=com", - email: "GerhartE@bf155b8bc0754f518a83ee458e4a4635.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karena Gunasekera,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Karena Gunasekera,ou=Administrative,dc=bitwarden,dc=com", - email: "GunasekK@1b9f3ee20651489b84389c5c6ee6794d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Beaumont Boruslawski,ou=Human Resources,dc=bitwarden,dc=com", - email: "BoruslaB@600cf979cfee42dfbdf815d8ce66c105.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charmine Izzo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Charmine Izzo,ou=Human Resources,dc=bitwarden,dc=com", - email: "IzzoC@4b0cd35c3d8442a69514b96d040ad360.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolea Fagan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nicolea Fagan,ou=Administrative,dc=bitwarden,dc=com", - email: "FaganN@e17fea6e1c564882ab9a476cab0dc5ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huyen Nashville,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Huyen Nashville,ou=Product Testing,dc=bitwarden,dc=com", - email: "NashvilH@bcfddcc4528d4a7da41251051a550591.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Reva Walkowiak,ou=Janitorial,dc=bitwarden,dc=com", - email: "WalkowiR@627ddcf5e1624631b06795e9a52501e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Meriann Rotzjean,ou=Administrative,dc=bitwarden,dc=com", - email: "RotzjeaM@49672ac4642e4eb39566d542af0eef8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrtia Closson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Myrtia Closson,ou=Product Development,dc=bitwarden,dc=com", - email: "ClossonM@11aeb057db4a4efc9f9db6e2b2c23ff0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tiffani Ibach,ou=Janitorial,dc=bitwarden,dc=com", - email: "IbachT@402d43c51a4446beb3be4fb34fdb725c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ioana Jenner,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ioana Jenner,ou=Product Testing,dc=bitwarden,dc=com", - email: "JennerI@33ed0b76cf8d4133a68e225e69fedff2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cristabel Lindstrom,ou=Administrative,dc=bitwarden,dc=com", - email: "LindstrC@f62df0bfb50a4849bc17f5360d5a7c52.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leon Bays,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leon Bays,ou=Payroll,dc=bitwarden,dc=com", - email: "BaysL@93baf6000e434401b0373a2ea7daeeeb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ulf Cotner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ulf Cotner,ou=Peons,dc=bitwarden,dc=com", - email: "CotnerU@d10bdc65bfaf4e35b28e6655d5cd9f69.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jinann Hassey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jinann Hassey,ou=Janitorial,dc=bitwarden,dc=com", - email: "HasseyJ@e082cb8e6fcd44b39d2d3be9de497cd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bevvy Huot,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bevvy Huot,ou=Janitorial,dc=bitwarden,dc=com", - email: "HuotB@47a7a80ec8774325ad24930467e7f72e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coord Cadd,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Coord Cadd,ou=Janitorial,dc=bitwarden,dc=com", - email: "CaddC@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Envoy Lesway,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Envoy Lesway,ou=Peons,dc=bitwarden,dc=com", - email: "LeswayE@c25e2fe1ca694d8a8fe5c23754b47571.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Josef Hemmerle,ou=Human Resources,dc=bitwarden,dc=com", - email: "HemmerlJ@ea364298791c41debbf08d0519d9dd74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kippie Tarquinio,ou=Janitorial,dc=bitwarden,dc=com", - email: "TarquinK@82a02eb22e9446a98ae50c8b159eeb8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kirstyn Cocco,ou=Human Resources,dc=bitwarden,dc=com", - email: "CoccoK@1d8ea622691942519634199a4665788b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maybelle Brannon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maybelle Brannon,ou=Product Development,dc=bitwarden,dc=com", - email: "BrannonM@180927625167441fb315d9e4f284562e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lrc Blaiklock,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lrc Blaiklock,ou=Peons,dc=bitwarden,dc=com", - email: "BlaikloL@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abu Melucci,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Abu Melucci,ou=Management,dc=bitwarden,dc=com", - email: "MelucciA@a4c1bc58f4364478a274836261857361.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hedwiga Personna,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hedwiga Personna,ou=Administrative,dc=bitwarden,dc=com", - email: "PersonnH@274b8d184a6d4e52bcfb6ffc8ba53d5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Osmond Usyk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Osmond Usyk,ou=Administrative,dc=bitwarden,dc=com", - email: "UsykO@df3ca8c2f1a84d2a9126b1629fccf4fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Junk Marasliyan,ou=Janitorial,dc=bitwarden,dc=com", - email: "MarasliJ@d117baceef9a4168bde2647e78683a37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilona Schoch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ilona Schoch,ou=Janitorial,dc=bitwarden,dc=com", - email: "SchochI@60ad49073800473f85380f8d92729bb8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sarah VandenHeuvel,ou=Product Testing,dc=bitwarden,dc=com", - email: "VandenHS@49237b860d1f43eba86c8a5d68311c7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kieron Bouick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kieron Bouick,ou=Management,dc=bitwarden,dc=com", - email: "BouickK@c90beda51728416da468419570974ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hettie Gruber,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hettie Gruber,ou=Peons,dc=bitwarden,dc=com", - email: "GruberH@b1249dcd3c8b491d920a5f410c6dd0cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farzin Hilaire,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Farzin Hilaire,ou=Management,dc=bitwarden,dc=com", - email: "HilaireF@6c398eb0cd5c4b4784131d450d82aca7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Careers Furdoonji,ou=Human Resources,dc=bitwarden,dc=com", - email: "FurdoonC@7358f14ebc1d437faa31666574716056.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaimie Valin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jaimie Valin,ou=Janitorial,dc=bitwarden,dc=com", - email: "ValinJ@4bba23a995da4ee98c2c53bd5fa682de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meggy Fajardo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Meggy Fajardo,ou=Administrative,dc=bitwarden,dc=com", - email: "FajardoM@06570b086c80422c8349b02b80c03823.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gurcharan Subasinghe,ou=Payroll,dc=bitwarden,dc=com", - email: "SubasinG@24aecac07fc74e8bb38262db3e4ff1e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lyda Sym,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lyda Sym,ou=Product Testing,dc=bitwarden,dc=com", - email: "SymL@2ebbe6ccc158418ea03a56b7dd20f4d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alia Lucente,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alia Lucente,ou=Product Development,dc=bitwarden,dc=com", - email: "LucenteA@3f957af8403b44cda402864b6bf1f589.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carline Klotz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carline Klotz,ou=Product Development,dc=bitwarden,dc=com", - email: "KlotzC@7bb52bb06b244b41a3cd78dfcc311e5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marilin Boylan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marilin Boylan,ou=Management,dc=bitwarden,dc=com", - email: "BoylanM@68c9de30282b4f288b18d766d4da42ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mustapha Noles,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mustapha Noles,ou=Human Resources,dc=bitwarden,dc=com", - email: "NolesM@f2c07dab9bd04b82822cc496cad44d9f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brandais Cullum,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Brandais Cullum,ou=Janitorial,dc=bitwarden,dc=com", - email: "CullumB@17a4f2f042db4a22b0af64699c0c837d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vradmin Lough,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vradmin Lough,ou=Product Development,dc=bitwarden,dc=com", - email: "LoughV@86e5c38e7f5c41538bf306ddacec173d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Laurena Hesketh,ou=Product Testing,dc=bitwarden,dc=com", - email: "HeskethL@301d911e2eea414b9302e4f81984f9b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bernhard Arnon,ou=Product Testing,dc=bitwarden,dc=com", - email: "ArnonB@57b9838eb13d439597b1e6134348bbbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Laser Lennig,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Laser Lennig,ou=Payroll,dc=bitwarden,dc=com", - email: "LennigL@f1fb5c603617421f9d814a8c426ffcd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wren Gopaul,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Wren Gopaul,ou=Janitorial,dc=bitwarden,dc=com", - email: "GopaulW@36939042b2bb4d8d8a87206c430ca689.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Whitney Inoue,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Whitney Inoue,ou=Product Development,dc=bitwarden,dc=com", - email: "InoueW@a3af1deba0554d128f94c16459078710.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Annamarie Baltodano,ou=Administrative,dc=bitwarden,dc=com", - email: "BaltodaA@4147d91f891f4f7aa66800a01382c83a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hareton Kahkonen,ou=Administrative,dc=bitwarden,dc=com", - email: "KahkoneH@1f70c3bade4e4575a0687e469e22b825.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlee Weyand,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karlee Weyand,ou=Management,dc=bitwarden,dc=com", - email: "WeyandK@a371212c7c2b4312bdb15d1cffb21938.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fox Richmond,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fox Richmond,ou=Product Development,dc=bitwarden,dc=com", - email: "RichmonF@4cf5733fc93742b8881de63253f58457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patrick Perreault,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Patrick Perreault,ou=Peons,dc=bitwarden,dc=com", - email: "PerreauP@7fb1c518e9c746fd9566ed0918ae43c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Fereidoon Kirkpatrick,ou=Peons,dc=bitwarden,dc=com", - email: "KirkpatF@d457e1580197417888cc4a9c93599471.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saloma Turbes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Saloma Turbes,ou=Peons,dc=bitwarden,dc=com", - email: "TurbesS@0ad1daa81fae4a218ac099e9643dc3e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tiffy Klammer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tiffy Klammer,ou=Product Development,dc=bitwarden,dc=com", - email: "KlammerT@a88c50151ed5480a93ed6a3357d7dcdc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonbol Portz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sonbol Portz,ou=Product Development,dc=bitwarden,dc=com", - email: "PortzS@d8b850d9e8ae4a779435178983c8e469.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=RoseAnne Chaurette,ou=Product Development,dc=bitwarden,dc=com", - email: "ChauretR@719d42488cdd461d9a46a6d7e3fd0edb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darko Gawdan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Darko Gawdan,ou=Peons,dc=bitwarden,dc=com", - email: "GawdanD@6312a8bfcfc64f4fa1700b6ca4b67dc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=SimonPui-Lok Gittins,ou=Product Development,dc=bitwarden,dc=com", - email: "GittinsS@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dodie Starr,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dodie Starr,ou=Management,dc=bitwarden,dc=com", - email: "StarrD@3177f113b2494bf084a4349d34933284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Britt Bivens,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Britt Bivens,ou=Product Development,dc=bitwarden,dc=com", - email: "BivensB@cb6388d64d1348ea8a259ae435674850.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hanh Sohns,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hanh Sohns,ou=Administrative,dc=bitwarden,dc=com", - email: "SohnsH@ae6d761bccb14b72b9b53490029a36af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Friederike Awano,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Friederike Awano,ou=Product Development,dc=bitwarden,dc=com", - email: "AwanoF@a923c3e154c74115a9ff0fe18985dc09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franki Nassr,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Franki Nassr,ou=Human Resources,dc=bitwarden,dc=com", - email: "NassrF@56c41599882f4a19aa89ca9c4dc0c09e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheridan Arcouet,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sheridan Arcouet,ou=Peons,dc=bitwarden,dc=com", - email: "ArcouetS@5965aedc1c314a52b1d006beb8db66c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Doreen MacMillanBrown,ou=Janitorial,dc=bitwarden,dc=com", - email: "MacMillD@50a4724a631e41a7bce3841ce6d93bf4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shoeb McCrimmon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shoeb McCrimmon,ou=Management,dc=bitwarden,dc=com", - email: "McCrimmS@423b79c358ed4d48a4cc89da75ae0404.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tuoi Gheciu,ou=Product Development,dc=bitwarden,dc=com", - email: "GheciuT@092d9b28cd5e485d86e0589d143723ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherline Morreale,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sherline Morreale,ou=Product Development,dc=bitwarden,dc=com", - email: "MorrealS@e146e249e0b44539bc6460a663ad0f90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emilia Tisdale,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emilia Tisdale,ou=Product Development,dc=bitwarden,dc=com", - email: "TisdaleE@c11c5f5aaeed4a9daabcfc4756ced3f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reinhold Shumate,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reinhold Shumate,ou=Peons,dc=bitwarden,dc=com", - email: "ShumateR@a1eb15c73ce34aa39a4a4077bd16ae75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tatyana Packard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tatyana Packard,ou=Product Testing,dc=bitwarden,dc=com", - email: "PackardT@b4ffcfe46a614ae194b415ba89e17560.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gloriana Vendette,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gloriana Vendette,ou=Peons,dc=bitwarden,dc=com", - email: "VendettG@2eeb9567dcd64347a2dcd6492aaa8ddc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Consuela Ravi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Consuela Ravi,ou=Product Testing,dc=bitwarden,dc=com", - email: "RaviC@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sioux Langlois,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sioux Langlois,ou=Payroll,dc=bitwarden,dc=com", - email: "LangloiS@4964020f5ac94a59b22a0311ddec080f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olympia Lieure,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Olympia Lieure,ou=Product Testing,dc=bitwarden,dc=com", - email: "LieureO@dcbe263c9d3d41348af5a8fc7c5d470d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cad Thorley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cad Thorley,ou=Janitorial,dc=bitwarden,dc=com", - email: "ThorleyC@c6e9ac083cc043b8883c6054dd35e8a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Etienne Ackaouy,ou=Human Resources,dc=bitwarden,dc=com", - email: "AckaouyE@fb57f6256f134e1381affe3f9c6c7fdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ryoung Moeschet,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ryoung Moeschet,ou=Peons,dc=bitwarden,dc=com", - email: "MoescheR@a11fd3f494644e3f9a70f7219a7bad22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jorry Freno,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jorry Freno,ou=Payroll,dc=bitwarden,dc=com", - email: "FrenoJ@343f3e94452d4417ab72f456ef20099a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amandie Cottengim,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Amandie Cottengim,ou=Peons,dc=bitwarden,dc=com", - email: "CottengA@61391b1e27a64c79ad40798665590378.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bran MacNeil,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bran MacNeil,ou=Management,dc=bitwarden,dc=com", - email: "MacNeilB@73a21060216a467bacc8ca4c6a3e4e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eladio Strudwick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eladio Strudwick,ou=Payroll,dc=bitwarden,dc=com", - email: "StrudwiE@a23986164bc64fc4ad43988e6e385f40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cleveland Jagla,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cleveland Jagla,ou=Payroll,dc=bitwarden,dc=com", - email: "JaglaC@8811017314e4431b8c77e3cc9b6c4274.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julien Osterberg,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Julien Osterberg,ou=Human Resources,dc=bitwarden,dc=com", - email: "OsterbeJ@801080c2fb40441aa0b2119368327ea0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frederika Brower,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Frederika Brower,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrowerF@40afcc80c86b41fda116eba64b688061.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Timmi Bascombe,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Timmi Bascombe,ou=Management,dc=bitwarden,dc=com", - email: "BascombT@5020798a7692438bb9e14d9a42dd1742.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Corenda Gilchrist,ou=Administrative,dc=bitwarden,dc=com", - email: "GilchriC@899743aa481a45efb507e6d61189c383.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shafiq Jazanoski,ou=Product Testing,dc=bitwarden,dc=com", - email: "JazanosS@0437e560df9b4466ac4b1814efe6272e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Milicent Frondozo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Milicent Frondozo,ou=Management,dc=bitwarden,dc=com", - email: "FrondozM@29b64656a78049bc9d3de5b18cdb7f58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danell Silang,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Danell Silang,ou=Janitorial,dc=bitwarden,dc=com", - email: "SilangD@7b9bbc8a8db749adaa5d570b3f3c2a12.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Baljinder StJohn,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Baljinder StJohn,ou=Product Development,dc=bitwarden,dc=com", - email: "StJohnB@69b9ccd34baf4393989b969fe509e24b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Akin Oberpriller,ou=Product Testing,dc=bitwarden,dc=com", - email: "OberpriA@4bbf773107d4419bb6cc46fd57ba3ce2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ankie Cohoe,ou=Product Testing,dc=bitwarden,dc=com", - email: "CohoeA@7a3b1be5d62c42abaf0253c9b042dfe2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joannah Gendre,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joannah Gendre,ou=Administrative,dc=bitwarden,dc=com", - email: "GendreJ@ca748ccfc8c741eab1dc5767d7063b1c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zero Strickland,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zero Strickland,ou=Product Development,dc=bitwarden,dc=com", - email: "StricklZ@69527a1c41b04ddda793d00fb5a21087.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lujanka Turner,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lujanka Turner,ou=Administrative,dc=bitwarden,dc=com", - email: "TurnerL@a69feaacad634790a69fdf1db6b0a8d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trish Meissner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Trish Meissner,ou=Product Development,dc=bitwarden,dc=com", - email: "MeissneT@ea8c137275494c24a45d33c847e472b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Han Hermes,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Han Hermes,ou=Management,dc=bitwarden,dc=com", - email: "HermesH@9426a2bdce5b455d93581bbbd4e466d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annamaria Daly,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Annamaria Daly,ou=Payroll,dc=bitwarden,dc=com", - email: "DalyA@231d8346570d402bb69f49de52a59267.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=VuQuoc Godlington,ou=Payroll,dc=bitwarden,dc=com", - email: "GodlingV@0dddb86650e94c559800b280597f0c4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Stefa StClairHolmes,ou=Product Testing,dc=bitwarden,dc=com", - email: "StClairS@4d1502006f9d465093ef756b43a146bc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ramon Wimbush,ou=Janitorial,dc=bitwarden,dc=com", - email: "WimbushR@1c3f38c01ffe4fd78e55d74bc900ca15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roger Latella,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Roger Latella,ou=Human Resources,dc=bitwarden,dc=com", - email: "LatellaR@6f5c481db3be45b1bf56f24cf55ebbf4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Korney Blevins,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Korney Blevins,ou=Product Development,dc=bitwarden,dc=com", - email: "BlevinsK@24105f6fca38477da9ad618bec45383c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elsey Meckley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elsey Meckley,ou=Administrative,dc=bitwarden,dc=com", - email: "MeckleyE@b5e3188bf80e462eac4ebbb9d1096eff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jill Langton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jill Langton,ou=Payroll,dc=bitwarden,dc=com", - email: "LangtonJ@9ba1788c88514e3e9788f75280ccf6c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Melessa Malkiewicz,ou=Human Resources,dc=bitwarden,dc=com", - email: "MalkiewM@01d519b2c3cc4b749d2c74cc03a56716.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peg Arnott,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Peg Arnott,ou=Peons,dc=bitwarden,dc=com", - email: "ArnottP@1dac857c92bb48aaa0a69e83483dddea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marsh Lagrandeur,ou=Administrative,dc=bitwarden,dc=com", - email: "LagrandM@b866cf3614c84b6ab1508dbbda76e67a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lotta Witkowski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lotta Witkowski,ou=Peons,dc=bitwarden,dc=com", - email: "WitkowsL@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=TunLin Dickerson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=TunLin Dickerson,ou=Peons,dc=bitwarden,dc=com", - email: "DickersT@4a8ab0364b8c4f26a80da2953a1e2c51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sile Golczewski,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sile Golczewski,ou=Product Development,dc=bitwarden,dc=com", - email: "GolczewS@0e51e4ac4ff5492f891ae127459e83ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joshi Formagie,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Joshi Formagie,ou=Human Resources,dc=bitwarden,dc=com", - email: "FormagiJ@a61d7f00b26e42a8b542c11c2adbdb6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Penni Marzullo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Penni Marzullo,ou=Payroll,dc=bitwarden,dc=com", - email: "MarzullP@745e98042a374bd8b4300c64429e0da5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Madonna Matsubara,ou=Product Testing,dc=bitwarden,dc=com", - email: "MatsubaM@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maible Blauer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maible Blauer,ou=Management,dc=bitwarden,dc=com", - email: "BlauerM@12257cabb5eb48ceb908520b2745a457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fawne Fanthome,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fawne Fanthome,ou=Administrative,dc=bitwarden,dc=com", - email: "FanthomF@aac869a9d66f41deb273e8c857d2f2a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brinna Spraggins,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brinna Spraggins,ou=Peons,dc=bitwarden,dc=com", - email: "SpraggiB@9b56a002e1e845bebc57785089119222.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Misbah FWPtools,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Misbah FWPtools,ou=Product Development,dc=bitwarden,dc=com", - email: "FWPtoolM@5256d716dc394c1f919ed3450fa1ea97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shona Keck,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shona Keck,ou=Peons,dc=bitwarden,dc=com", - email: "KeckS@8355880d64ee437fa987ff83fc2fd243.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Skip Vanderhooft,ou=Product Development,dc=bitwarden,dc=com", - email: "VanderhS@c219bf062505483787e15d8eef41ed24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sluis Soulliere,ou=Janitorial,dc=bitwarden,dc=com", - email: "SoullieS@4504d7b5d7bb4c7c81665aefd8680fbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doe Digenova,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Doe Digenova,ou=Product Testing,dc=bitwarden,dc=com", - email: "DigenovD@c053920120d84308b5190978039283b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edel Huliganga,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Edel Huliganga,ou=Payroll,dc=bitwarden,dc=com", - email: "HuliganE@237b08eaf7b7464e9c2e34150cfd7ad3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miquela Khosla,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Miquela Khosla,ou=Management,dc=bitwarden,dc=com", - email: "KhoslaM@784bec209e394f1ca55bb2a6c8564d70.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mariel Barnhouse,ou=Product Testing,dc=bitwarden,dc=com", - email: "BarnhouM@9bca7e1fa66343078f8d2f441ac03fca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Butch Gewell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Butch Gewell,ou=Human Resources,dc=bitwarden,dc=com", - email: "GewellB@efcd32daf30f47bab7fc31cf8968544d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jawaid Kinrys,ou=Janitorial,dc=bitwarden,dc=com", - email: "KinrysJ@ea406b4bd2b34275a1fc4a070b598266.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mindy Wealch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mindy Wealch,ou=Janitorial,dc=bitwarden,dc=com", - email: "WealchM@94dbeedce77e435482fe6d405df83d4c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petri Quintero,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Petri Quintero,ou=Human Resources,dc=bitwarden,dc=com", - email: "QuinterP@62762c759020411b89296a80fdd53afd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Windowing Feyen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Windowing Feyen,ou=Janitorial,dc=bitwarden,dc=com", - email: "FeyenW@91566d07f8014fa098810199110928d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charlotta Demarest,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Charlotta Demarest,ou=Payroll,dc=bitwarden,dc=com", - email: "DemaresC@cb2e25cd93c145bf81000296630c3ab7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Honey Badjari,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Honey Badjari,ou=Product Testing,dc=bitwarden,dc=com", - email: "BadjariH@47b3a42002e74101b1c82f87517bcbef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nady Kness,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nady Kness,ou=Peons,dc=bitwarden,dc=com", - email: "KnessN@9befe039acaf4d578a86c80d677d5d49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdaia Pagi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Magdaia Pagi,ou=Payroll,dc=bitwarden,dc=com", - email: "PagiM@5fa3d1c914f84db792f45f76fbecaf40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peri Morden,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Peri Morden,ou=Human Resources,dc=bitwarden,dc=com", - email: "MordenP@fc363d82b6fb44d985548ce8053314f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avie Moores,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Avie Moores,ou=Peons,dc=bitwarden,dc=com", - email: "MooresA@c227b873963e4393bf6073155bf0bef2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dreddy Iribarren,ou=Payroll,dc=bitwarden,dc=com", - email: "IribarrD@e9e739e036b347aa8d1219a0e8da1acd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Schell Wendling,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Schell Wendling,ou=Peons,dc=bitwarden,dc=com", - email: "WendlinS@b2dba5d211e74e1e8b9beacd1ae0b042.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reynold Labiche,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Reynold Labiche,ou=Administrative,dc=bitwarden,dc=com", - email: "LabicheR@d889c2d8f8034f8b853618d3cde340fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vince Bulger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vince Bulger,ou=Payroll,dc=bitwarden,dc=com", - email: "BulgerV@e00d274753dc4e1282c4eb80a1b5a880.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nedi England,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nedi England,ou=Administrative,dc=bitwarden,dc=com", - email: "EnglandN@f9644f0fe8134538aaa3b18275bebac9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Field Ueyama,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Field Ueyama,ou=Janitorial,dc=bitwarden,dc=com", - email: "UeyamaF@32419fed353640be907742ce6b450ca8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mina ODonnell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mina ODonnell,ou=Payroll,dc=bitwarden,dc=com", - email: "ODonnelM@10c4772e07c4416b983baf85665d30de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tetsumo Kempffer,ou=Product Development,dc=bitwarden,dc=com", - email: "KempffeT@85b8ed1ad5b644cfbbbf9dc62daad7fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rubie Suddarth,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rubie Suddarth,ou=Payroll,dc=bitwarden,dc=com", - email: "SuddartR@8af6d39064bb46a9ba4daa83c54c62c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fanchette Felli,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fanchette Felli,ou=Administrative,dc=bitwarden,dc=com", - email: "FelliF@5256d716dc394c1f919ed3450fa1ea97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorry Livshits,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorry Livshits,ou=Payroll,dc=bitwarden,dc=com", - email: "LivshitD@6dd87ab9e5af49468fc97aebdbd7b449.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merle Turchan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Merle Turchan,ou=Administrative,dc=bitwarden,dc=com", - email: "TurchanM@d498c0edfe624410b23b0178f9f7f2c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Achal Blann,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Achal Blann,ou=Peons,dc=bitwarden,dc=com", - email: "BlannA@a081497caeb44f8587c4809a817c9728.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marty Barr,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marty Barr,ou=Management,dc=bitwarden,dc=com", - email: "BarrM@fad13712be524b2bb53fd1f676c9976a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lilin Tisdall,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lilin Tisdall,ou=Peons,dc=bitwarden,dc=com", - email: "TisdallL@f07be15577e54b07aaf9ccc18f458690.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jonie Cherrier,ou=Janitorial,dc=bitwarden,dc=com", - email: "CherrieJ@713ec84902e3407ea7c47d43e09273a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Silvana CraigDupuis,ou=Administrative,dc=bitwarden,dc=com", - email: "CraigDuS@25e344e508194d148c2480fc79febf41.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camille Seddigh,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Camille Seddigh,ou=Human Resources,dc=bitwarden,dc=com", - email: "SeddighC@248fbbdd5e2b4efdbf1ff86927aed801.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manon Swinamer,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Manon Swinamer,ou=Janitorial,dc=bitwarden,dc=com", - email: "SwinameM@f2546b85540e458c8c528fab744261e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Margarette Cutrufello,ou=Human Resources,dc=bitwarden,dc=com", - email: "CutrufeM@a31aed5cfdcb4194bc94b7ef44927e93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marci Uludamar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marci Uludamar,ou=Janitorial,dc=bitwarden,dc=com", - email: "UludamaM@28fca843a5ae4175b7bbc20728951453.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcel Mathiue,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marcel Mathiue,ou=Management,dc=bitwarden,dc=com", - email: "MathiueM@a5f4802ff3844a6da03607a2952d6142.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clementina Salkilld,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clementina Salkilld,ou=Peons,dc=bitwarden,dc=com", - email: "SalkillC@5cc175e484e84097b7cd2f4f59476a94.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jaquith Tatangsurja,ou=Peons,dc=bitwarden,dc=com", - email: "TatangsJ@8cfe11654a1f4bcf872e901116f7b350.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertrudis Zahn,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gertrudis Zahn,ou=Peons,dc=bitwarden,dc=com", - email: "ZahnG@643babc725854db49eed6fbb3cc528c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jere Forghani,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jere Forghani,ou=Product Development,dc=bitwarden,dc=com", - email: "ForghanJ@0402555d9f67459e90e5fb987f132859.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nakina Pezzullo,ou=Janitorial,dc=bitwarden,dc=com", - email: "PezzullN@6de6b96b53bf450ebd85b6259dd56653.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilemette Dellinger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gilemette Dellinger,ou=Peons,dc=bitwarden,dc=com", - email: "DellingG@9dc5f26c8d604d308d7d70d0272f1d88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdalene Byers,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Magdalene Byers,ou=Product Development,dc=bitwarden,dc=com", - email: "ByersM@afc3f7cc277d4658b0c8ded9352dcb17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gwenette Zagrodney,ou=Administrative,dc=bitwarden,dc=com", - email: "ZagrodnG@1b5833345bfe4fbbb19ff2ae67a5a60b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parnell Hamlin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Parnell Hamlin,ou=Payroll,dc=bitwarden,dc=com", - email: "HamlinP@ecca4a8cb1474812a6ec4a57737ddfaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nath Popovich,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nath Popovich,ou=Product Testing,dc=bitwarden,dc=com", - email: "PopovicN@714efec96f8a44d68fc31297a56f7cd6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patch Lassonde,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Patch Lassonde,ou=Peons,dc=bitwarden,dc=com", - email: "LassondP@fac421ca650e46139878bbd5f7498e19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Charmain VanBenthem,ou=Administrative,dc=bitwarden,dc=com", - email: "VanBentC@6530bd09dbf540aea0b4eb735de3f457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nata Corse,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nata Corse,ou=Janitorial,dc=bitwarden,dc=com", - email: "CorseN@5810f4b0e0144582bc97026bbf289a58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marj Npi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marj Npi,ou=Payroll,dc=bitwarden,dc=com", - email: "NpiM@479b3e4b55a5494fbabf2926242184e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rosemonde Kawamura,ou=Janitorial,dc=bitwarden,dc=com", - email: "KawamurR@fbef9109d3fa45f28a2fe6e9e57320c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emery Daoust,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Emery Daoust,ou=Peons,dc=bitwarden,dc=com", - email: "DaoustE@3b0207fba5944fd0a6dca16921952a03.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danya Prasada,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Danya Prasada,ou=Product Testing,dc=bitwarden,dc=com", - email: "PrasadaD@6b1f85dcb6764cc8ada9b5557877a02d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Partha Blackman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Partha Blackman,ou=Payroll,dc=bitwarden,dc=com", - email: "BlackmaP@c44cf57c7e494ab8a133e7f2a6a02284.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florette Shemwell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Florette Shemwell,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShemwelF@c0d5947f2ac7414c9a231d1b93a98940.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hilliard Weeks,ou=Product Testing,dc=bitwarden,dc=com", - email: "WeeksH@c303add5409e4b2ca1508fde8a7014b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=AnnMarie Dreisbach,ou=Payroll,dc=bitwarden,dc=com", - email: "DreisbaA@a7879a3db49d425f8293a2b2d51d5b86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abagael Zattiero,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Abagael Zattiero,ou=Management,dc=bitwarden,dc=com", - email: "ZattierA@972cbc7b1e734ef69ec2cf84c21cdb8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mardi Lowder,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Mardi Lowder,ou=Human Resources,dc=bitwarden,dc=com", - email: "LowderM@d624fb65c7214c7bb843b6ea68ab9b4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Euphemia Kalechstein,ou=Payroll,dc=bitwarden,dc=com", - email: "KalechsE@70d76aff1f024ecd8d28b49adb26d2d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mercy Steranka,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mercy Steranka,ou=Management,dc=bitwarden,dc=com", - email: "SterankM@772e8e157e064d01bd5516f96a40fa60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pramod Scherbinsky,ou=Administrative,dc=bitwarden,dc=com", - email: "ScherbiP@df17bef8c1b54142a20c32df0ed28190.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aurelea Srikrishna,ou=Product Testing,dc=bitwarden,dc=com", - email: "SrikrisA@407a8845f0a44578b9efb43e7405efd9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Catja Josiah,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Catja Josiah,ou=Administrative,dc=bitwarden,dc=com", - email: "JosiahC@623d62a2d1154923b1c9152d9f2876da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marlena Rickey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Marlena Rickey,ou=Administrative,dc=bitwarden,dc=com", - email: "RickeyM@b60e4ba7e4ea41b7aff4212cdb1e99c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sadru Ueyama,ou=Product Testing,dc=bitwarden,dc=com", - email: "UeyamaS@32a42dc8e0e84af48044423f0e8dddb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shandee Reno,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shandee Reno,ou=Product Development,dc=bitwarden,dc=com", - email: "RenoS@a04d0222f0c24ad6848955600bad7ace.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Didani Nakhoul,ou=Human Resources,dc=bitwarden,dc=com", - email: "NakhoulD@9ad96ae4214c429c98f90a76404682a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silva Connolly,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Silva Connolly,ou=Administrative,dc=bitwarden,dc=com", - email: "ConnollS@2050a6c4c8e746ae88bec9f7634b8d59.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Iwan Theriot,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Iwan Theriot,ou=Human Resources,dc=bitwarden,dc=com", - email: "TheriotI@ac2881cfd212410799e38769b052602b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rejeanne Etu,ou=Human Resources,dc=bitwarden,dc=com", - email: "EtuR@ff44921ff72348599ae7fe837a40ec13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Roddy Mikulka,ou=Human Resources,dc=bitwarden,dc=com", - email: "MikulkaR@9cbd4c37891849299ce4208e274287c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emerson Terminals,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Emerson Terminals,ou=Payroll,dc=bitwarden,dc=com", - email: "TerminaE@e5fdd3d67af74cde904584628c237f35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Andrzej Moskalik,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoskaliA@ff9d2c9dbee641ab8637fbbd354b62f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vannie Mallozzi,ou=Product Testing,dc=bitwarden,dc=com", - email: "MallozzV@09cbaaa2d7a142c9854868c3f613dfe5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Vivyan Woolley,ou=Human Resources,dc=bitwarden,dc=com", - email: "WoolleyV@84b57e0771b643809ac58933f98cbf52.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jude Venguswamy,ou=Human Resources,dc=bitwarden,dc=com", - email: "VenguswJ@99364e00956b4bfea4a43b7bb289f754.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felicdad Popela,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Felicdad Popela,ou=Administrative,dc=bitwarden,dc=com", - email: "PopelaF@55d3abf188cf489e982ee3fc8f3c0c3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Himanshu Zahn,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Himanshu Zahn,ou=Peons,dc=bitwarden,dc=com", - email: "ZahnH@31419c5a0bbd4597885347a4aa43efd4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luisa Legros,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Luisa Legros,ou=Product Testing,dc=bitwarden,dc=com", - email: "LegrosL@6e3b6563cdc44f58b3c72f890bc814e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brenn Thedford,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Brenn Thedford,ou=Peons,dc=bitwarden,dc=com", - email: "ThedforB@4831c314a96e4dc2a8c277ec349e694c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Albina Kruusement,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Albina Kruusement,ou=Peons,dc=bitwarden,dc=com", - email: "KruusemA@42f51a65b1584dbea4e8a6daf5a3f864.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yueping Yamada,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yueping Yamada,ou=Human Resources,dc=bitwarden,dc=com", - email: "YamadaY@c23d2b465eec4405a3a69954d418e742.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belvia Abbott,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Belvia Abbott,ou=Product Development,dc=bitwarden,dc=com", - email: "AbbottB@fc560954a9334e018a537b8d2963deee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seyma Currier,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Seyma Currier,ou=Administrative,dc=bitwarden,dc=com", - email: "CurrierS@4d4fe6f945794c9fafed4fdb31a8162b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Derrik Steede,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Derrik Steede,ou=Management,dc=bitwarden,dc=com", - email: "SteedeD@e637a483d18442128d105a67f1ef62ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Starla OFarrell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Starla OFarrell,ou=Human Resources,dc=bitwarden,dc=com", - email: "OFarrelS@a922ba05488e401e9633fbd1813d714f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jerrilee Sudan,ou=Janitorial,dc=bitwarden,dc=com", - email: "SudanJ@7a081f2b6b9244909f5b879d315b7d98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Revkah Bawek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Revkah Bawek,ou=Janitorial,dc=bitwarden,dc=com", - email: "BawekR@39188148fca245a6a6c8dafa540618a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tian Dundin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tian Dundin,ou=Management,dc=bitwarden,dc=com", - email: "DundinT@40c277345d80491f9b505a1f852464d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aiden Dido,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aiden Dido,ou=Product Testing,dc=bitwarden,dc=com", - email: "DidoA@6108e9c33f3243228025c7adcbd2900a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pit Yancey,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pit Yancey,ou=Product Testing,dc=bitwarden,dc=com", - email: "YanceyP@62ebc0cac09c4b59836fa31868a1365d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sherie Fitzsimmons,ou=Product Testing,dc=bitwarden,dc=com", - email: "FitzsimS@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aartjan Robson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Aartjan Robson,ou=Product Testing,dc=bitwarden,dc=com", - email: "RobsonA@30c0b9dc05334a06863e7dfa5130cda4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winona Latreille,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Winona Latreille,ou=Product Testing,dc=bitwarden,dc=com", - email: "LatreilW@39fe1cbe98f04968ad60ef7f60dbbcf4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dis Schmeing,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dis Schmeing,ou=Peons,dc=bitwarden,dc=com", - email: "SchmeinD@c40fad5c5c0d4ba88c3868a6e4fb152e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krystalle McHale,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Krystalle McHale,ou=Human Resources,dc=bitwarden,dc=com", - email: "McHaleK@628c910870424ef4b90e6f84f78914eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jastinder Zollman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jastinder Zollman,ou=Peons,dc=bitwarden,dc=com", - email: "ZollmanJ@4f46f81f678a4f9fb404fab87f91cd92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sheila Kiebel,ou=Product Testing,dc=bitwarden,dc=com", - email: "KiebelS@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Conny Blackburn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Conny Blackburn,ou=Management,dc=bitwarden,dc=com", - email: "BlackbuC@749481ce636a428dadfe3b049bd9815e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Yodha Bulifant,ou=Janitorial,dc=bitwarden,dc=com", - email: "BulifanY@89baa82bca2c415183512b5bc8d6890b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lian Tripps,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lian Tripps,ou=Administrative,dc=bitwarden,dc=com", - email: "TrippsL@c8e189f083634334a1fd0d200a0183f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlyn Tiseo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karlyn Tiseo,ou=Management,dc=bitwarden,dc=com", - email: "TiseoK@d22cee8cdc104128b64ec5a3dc27a2cd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Josselyn Sugarman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Josselyn Sugarman,ou=Peons,dc=bitwarden,dc=com", - email: "SugarmaJ@3936c42808104e269d45d901a49adbd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashlie Michailov,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ashlie Michailov,ou=Peons,dc=bitwarden,dc=com", - email: "MichailA@11c4ba17ab574f3bb46442f426b1a2c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mayasandra Elliot,ou=Product Development,dc=bitwarden,dc=com", - email: "ElliotM@2cad753cd401488c83abddc338324f15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cindie McNeill,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cindie McNeill,ou=Administrative,dc=bitwarden,dc=com", - email: "McNeillC@8555fc7f07904922939eba5ad297ecac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Izak Katibian,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Izak Katibian,ou=Management,dc=bitwarden,dc=com", - email: "KatibiaI@50a4724a631e41a7bce3841ce6d93bf4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nanci Fiteny,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nanci Fiteny,ou=Management,dc=bitwarden,dc=com", - email: "FitenyN@d5a0d21c338246c5b1eb6d57f0e070b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marijke Tiseo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Marijke Tiseo,ou=Management,dc=bitwarden,dc=com", - email: "TiseoM@5043368b73ac4d89bc4fa2d5f818cf74.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akshay Herlihy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Akshay Herlihy,ou=Peons,dc=bitwarden,dc=com", - email: "HerlihyA@38fa64796bc14d52bff67c18f15afb33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomson Dasch,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Thomson Dasch,ou=Product Development,dc=bitwarden,dc=com", - email: "DaschT@08a7e5e74be04f44a364a958dd103e80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Min StMartin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Min StMartin,ou=Product Development,dc=bitwarden,dc=com", - email: "StMartiM@11066945925d4920b7876e8ee0d7adc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maybelle Karol,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maybelle Karol,ou=Administrative,dc=bitwarden,dc=com", - email: "KarolM@5039da0210e54d01a6092745e22d3750.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cindy Ferner,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cindy Ferner,ou=Janitorial,dc=bitwarden,dc=com", - email: "FernerC@b156fe83e1034ca0b9adcd6fbf561490.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nerti Buskens,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Nerti Buskens,ou=Administrative,dc=bitwarden,dc=com", - email: "BuskensN@65ad77a0a7134c499e3c0bd4fd84a125.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selvaraj Merrick,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Selvaraj Merrick,ou=Management,dc=bitwarden,dc=com", - email: "MerrickS@b6599d8f9a8449eaa08086c058ccaba9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julien Simmons,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Julien Simmons,ou=Human Resources,dc=bitwarden,dc=com", - email: "SimmonsJ@c8572d1903484794a6cbdbc65d71c32b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Conchita Meres,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Conchita Meres,ou=Peons,dc=bitwarden,dc=com", - email: "MeresC@368b49862ec74ac1974a058d04889202.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hedi Herling,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hedi Herling,ou=Peons,dc=bitwarden,dc=com", - email: "HerlingH@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roobbie Bizga,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Roobbie Bizga,ou=Payroll,dc=bitwarden,dc=com", - email: "BizgaR@2578fec05f3c4caebb2ed35da0948626.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Izak Hatten,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Izak Hatten,ou=Payroll,dc=bitwarden,dc=com", - email: "HattenI@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parks McInnis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Parks McInnis,ou=Product Testing,dc=bitwarden,dc=com", - email: "McInnisP@a2ea301b88434726b194e4c9303a1849.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Paulus Schlachter,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchlachP@01593e28a0c9482fb64a5aadc27c2178.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gurmeet Aravamudhan,ou=Product Testing,dc=bitwarden,dc=com", - email: "AravamuG@282e36163b2b4782beba5acb316b5795.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lissy Otsuka,ou=Janitorial,dc=bitwarden,dc=com", - email: "OtsukaL@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lanae Mullen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lanae Mullen,ou=Administrative,dc=bitwarden,dc=com", - email: "MullenL@999816b5a97d4ddb86dcefd199a0b0ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barby Shiue,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Barby Shiue,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShiueB@38977b5a0c5e49539800366c94e12729.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Malissa LecuyerDemers,ou=Payroll,dc=bitwarden,dc=com", - email: "LecuyerM@975d3d03a2c146c2aaca8d2698d4ca32.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rizwan Guindi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rizwan Guindi,ou=Administrative,dc=bitwarden,dc=com", - email: "GuindiR@35c77ed09ca846d78581509ce832a819.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anetta Wray,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anetta Wray,ou=Product Development,dc=bitwarden,dc=com", - email: "WrayA@95581eb6a8bb49808363d11bfe34de80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mougy Mo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mougy Mo,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoM@2b9fd035a3c74d0a924ba78f328d5988.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darline Alfred,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Darline Alfred,ou=Management,dc=bitwarden,dc=com", - email: "AlfredD@e039461a53e74fffbd5670db4243d8b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kayla Boscio,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kayla Boscio,ou=Product Testing,dc=bitwarden,dc=com", - email: "BoscioK@bf35e2dd921644e489469fd3b907aac9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Keys Tavares,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Keys Tavares,ou=Product Development,dc=bitwarden,dc=com", - email: "TavaresK@4b233d8ae0e140eb95be281f6d1b2b93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yutaka Branham,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yutaka Branham,ou=Peons,dc=bitwarden,dc=com", - email: "BranhamY@c63acc13c8a740e8a43edd8fb66a56ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elinore Spallin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Elinore Spallin,ou=Peons,dc=bitwarden,dc=com", - email: "SpallinE@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paige McAleer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Paige McAleer,ou=Peons,dc=bitwarden,dc=com", - email: "McAleerP@f94cfa5e44764457a8389aa50bed2570.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Syyed Cantlie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Syyed Cantlie,ou=Peons,dc=bitwarden,dc=com", - email: "CantlieS@39b915a2bd6147869df44af964c00d61.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morley Trefts,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Morley Trefts,ou=Administrative,dc=bitwarden,dc=com", - email: "TreftsM@dfdcd936eb4b48949edaccd04bbc267a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Daffi Garguilo,ou=Product Testing,dc=bitwarden,dc=com", - email: "GarguilD@e530486f70d4429085f9bb8431928632.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ronna Bleuer,ou=Human Resources,dc=bitwarden,dc=com", - email: "BleuerR@6907d207239f489294281cbdab840fe4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kania Bnrecad,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kania Bnrecad,ou=Administrative,dc=bitwarden,dc=com", - email: "BnrecadK@c8fa77eb4aa0482bb77de35245880a29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tammi Zukosky,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tammi Zukosky,ou=Management,dc=bitwarden,dc=com", - email: "ZukoskyT@766a422a35f14846b4f938fc382952b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Chris Wikkerink,ou=Janitorial,dc=bitwarden,dc=com", - email: "WikkeriC@bed8fc52dc684727b827c4af9874c6ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sheelah Beriault,ou=Human Resources,dc=bitwarden,dc=com", - email: "BeriaulS@975433a41ce24ba59e1df5051b6724e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leil Halbedel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Leil Halbedel,ou=Janitorial,dc=bitwarden,dc=com", - email: "HalbedeL@52a128393c654a128a33fd5f6a1b0b66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marni Diduch,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Marni Diduch,ou=Product Development,dc=bitwarden,dc=com", - email: "DiduchM@effb1d073c5447c58f6bf516e842aec5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myriam Desrochers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Myriam Desrochers,ou=Management,dc=bitwarden,dc=com", - email: "DesrochM@a46eb2e9c6b94a3096e5a88d4903e45a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Naohiko Fraley,ou=Product Testing,dc=bitwarden,dc=com", - email: "FraleyN@a4566d06f4404638b79325caaec894f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Court Karademir,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Court Karademir,ou=Administrative,dc=bitwarden,dc=com", - email: "KarademC@952b2b73f82449c88d6a84f30520f482.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jayendra Goba,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jayendra Goba,ou=Product Testing,dc=bitwarden,dc=com", - email: "GobaJ@b3504db7a95a4f5d855c19ba41cc6dc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Darrin Nawaby,ou=Human Resources,dc=bitwarden,dc=com", - email: "NawabyD@b04066f723fa4eb2a82846786b428021.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kathrerine Hackett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kathrerine Hackett,ou=Management,dc=bitwarden,dc=com", - email: "HackettK@a688f8b9c15e4db8a45052fc7ceac121.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akihiko Restrepo,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Akihiko Restrepo,ou=Peons,dc=bitwarden,dc=com", - email: "RestrepA@4fe8a2f655cd45aba545b0b74d8cdc26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andra Guindi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Andra Guindi,ou=Peons,dc=bitwarden,dc=com", - email: "GuindiA@f908b5237c0945e690da76df38180ee9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manda Bigley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Manda Bigley,ou=Payroll,dc=bitwarden,dc=com", - email: "BigleyM@faecae55819d4155ab4f3e2d05dac422.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julienne Mevis,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Julienne Mevis,ou=Human Resources,dc=bitwarden,dc=com", - email: "MevisJ@308ad8d2df924e23912f5ff5c482654c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lesya Willison,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lesya Willison,ou=Payroll,dc=bitwarden,dc=com", - email: "WillisoL@cf6dac232ed84a4abc7d8879d016deb3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giri Rupert,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Giri Rupert,ou=Janitorial,dc=bitwarden,dc=com", - email: "RupertG@bfb93d6aa3b84535ab7cdcdbe7575cd9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Oguz Livingston,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Oguz Livingston,ou=Product Development,dc=bitwarden,dc=com", - email: "LivingsO@3ede5bf32f3c4406ba607abcc6950b4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celie Wesselow,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Celie Wesselow,ou=Product Testing,dc=bitwarden,dc=com", - email: "WesseloC@158928e23d3842c2af859e8cbe0620c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adria Hagar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Adria Hagar,ou=Product Development,dc=bitwarden,dc=com", - email: "HagarA@47f0a77dd6c841c49ad5d7e57cf1fb47.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Zaihua Pamperin,ou=Human Resources,dc=bitwarden,dc=com", - email: "PamperiZ@65523206681c4c868fd2bcf7f70e47c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Panch Timleck,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Panch Timleck,ou=Administrative,dc=bitwarden,dc=com", - email: "TimleckP@b3da6460e3c04b23b4e63052d3019a72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caro Finley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Caro Finley,ou=Management,dc=bitwarden,dc=com", - email: "FinleyC@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Romina Skedelsky,ou=Janitorial,dc=bitwarden,dc=com", - email: "SkedelsR@31412703a38e4215b532681beb725718.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fernand Hunsucker,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Fernand Hunsucker,ou=Management,dc=bitwarden,dc=com", - email: "HunsuckF@167b2e0d041045449bd6e5cdf535c0d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maybelle Tognoni,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Maybelle Tognoni,ou=Peons,dc=bitwarden,dc=com", - email: "TognoniM@63a11e75c405416bb483a040d9d4e6c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sunil Boggan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sunil Boggan,ou=Administrative,dc=bitwarden,dc=com", - email: "BogganS@61ded890c4074ecd9ae572c6057905e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theressa McQueen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Theressa McQueen,ou=Peons,dc=bitwarden,dc=com", - email: "McQueenT@376885ebe2864fefa119c1511a764692.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nicol Leshowitz,ou=Human Resources,dc=bitwarden,dc=com", - email: "LeshowiN@edb80231cf144f5c88b3c412e4500658.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maala Lessard,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maala Lessard,ou=Janitorial,dc=bitwarden,dc=com", - email: "LessardM@a7d617a2a825451dac842ca97ad12dd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jochem Vuncannon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jochem Vuncannon,ou=Management,dc=bitwarden,dc=com", - email: "VuncannJ@32972334779c4c7daa4ee6042db79c56.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Moshe Vallentyne,ou=Product Development,dc=bitwarden,dc=com", - email: "VallentM@4f5bbd59c73347d8ba49af7225be0d9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Perl PintoLobo,ou=Janitorial,dc=bitwarden,dc=com", - email: "PintoLoP@508848e150ab4aa7a8a298273ecfc11f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Richelle Griffiths,ou=Human Resources,dc=bitwarden,dc=com", - email: "GriffitR@6114ed5b2ab14d15895d683682929e6e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdi Mays,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Magdi Mays,ou=Product Development,dc=bitwarden,dc=com", - email: "MaysM@2f0186b834694a76807386afdcfeea26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suvanee Girard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Suvanee Girard,ou=Product Testing,dc=bitwarden,dc=com", - email: "GirardS@ad1f83838b7641bfb949910cb7dc9215.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bin Itah,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bin Itah,ou=Management,dc=bitwarden,dc=com", - email: "ItahB@49634f2a5e564b13843ce74e45cd5b8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raynell Zaydan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Raynell Zaydan,ou=Payroll,dc=bitwarden,dc=com", - email: "ZaydanR@97b597f461ba489aadc904c578cfd811.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mabel Combee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mabel Combee,ou=Product Development,dc=bitwarden,dc=com", - email: "CombeeM@b073d85cb935413fbc2609e807c639c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melania Michelsen,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melania Michelsen,ou=Janitorial,dc=bitwarden,dc=com", - email: "MichelsM@d153d3e5031f4425a2d969907becf2cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hollyanne Java,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hollyanne Java,ou=Product Development,dc=bitwarden,dc=com", - email: "JavaH@5eabae8e0a894e598a102f3cdf87fde5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theadora Irani,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Theadora Irani,ou=Product Development,dc=bitwarden,dc=com", - email: "IraniT@4f30af5fbc174672afcc4005c4a463f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eladio Bolio,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Eladio Bolio,ou=Product Development,dc=bitwarden,dc=com", - email: "BolioE@befc127e0437429096ff0e9082a67904.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sallyanne Muselik,ou=Product Development,dc=bitwarden,dc=com", - email: "MuselikS@e1745565942b4cc2a108427c315a00de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermien Paksi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hermien Paksi,ou=Product Development,dc=bitwarden,dc=com", - email: "PaksiH@35e3f59923a249d090ebec943db66364.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrilee Sipple,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Merrilee Sipple,ou=Product Development,dc=bitwarden,dc=com", - email: "SippleM@b847cd495a564fd88ad378e323d86f9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aleece Mielke,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Aleece Mielke,ou=Human Resources,dc=bitwarden,dc=com", - email: "MielkeA@37ac065458a84fc994659f0d86c970d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harinder Sabry,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Harinder Sabry,ou=Administrative,dc=bitwarden,dc=com", - email: "SabryH@b60e4ba7e4ea41b7aff4212cdb1e99c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eamon Brivet,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Eamon Brivet,ou=Peons,dc=bitwarden,dc=com", - email: "BrivetE@1f197603b6704c1dbee512646173cacd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Analiese Chapman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Analiese Chapman,ou=Peons,dc=bitwarden,dc=com", - email: "ChapmanA@b617366a0a1e4d7aa5679a9f680a89f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meghan Murphy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Meghan Murphy,ou=Payroll,dc=bitwarden,dc=com", - email: "MurphyM@6f5b7d94be494781b38d4b416e8e82d2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Desdemona Freyler,ou=Product Testing,dc=bitwarden,dc=com", - email: "FreylerD@4d3a1b4d7f214d738a08a6641bde06fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nikolia Guin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nikolia Guin,ou=Human Resources,dc=bitwarden,dc=com", - email: "GuinN@272fe3f35e92442897a84fe95f9bd54a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dana Tupling,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dana Tupling,ou=Product Testing,dc=bitwarden,dc=com", - email: "TuplingD@ef271778b0964b66a7d614683b9a3b20.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eliot Havis,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eliot Havis,ou=Payroll,dc=bitwarden,dc=com", - email: "HavisE@a7efbad4dbbd458699231bf651e29d1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryl Codrington,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maryl Codrington,ou=Product Testing,dc=bitwarden,dc=com", - email: "CodringM@6d359ae3f48f4f958525326d5a17bef5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Pamelina Kirley,ou=Human Resources,dc=bitwarden,dc=com", - email: "KirleyP@8f4ba0e949d54b87a25fce54b7a59ad4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constantia Neubauer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Constantia Neubauer,ou=Product Development,dc=bitwarden,dc=com", - email: "NeubaueC@7448491b00a74a3e95be2c2010be9a72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Savita Sei,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Savita Sei,ou=Human Resources,dc=bitwarden,dc=com", - email: "SeiS@aa6e4c8f93be4db1b434356df7956ece.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yehuda Huret,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yehuda Huret,ou=Peons,dc=bitwarden,dc=com", - email: "HuretY@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Otakar Lobasso,ou=Human Resources,dc=bitwarden,dc=com", - email: "LobassoO@73f93e7e7a364914989930cf7c4bb9b5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Livvie Barlow,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Livvie Barlow,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarlowL@cbcf5ba0830142c9ada57ab9a8c305a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sebastian Burger,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sebastian Burger,ou=Product Development,dc=bitwarden,dc=com", - email: "BurgerS@4d453e35974e4b1795f354665a71c575.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jandy Vitaglian,ou=Product Testing,dc=bitwarden,dc=com", - email: "VitagliJ@ea0898ff0877402d9c2e36c10881d242.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Datas Cochran,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Datas Cochran,ou=Management,dc=bitwarden,dc=com", - email: "CochranD@7f04a3ff8bcd4af8bad4e2a152862067.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chander Copley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Chander Copley,ou=Administrative,dc=bitwarden,dc=com", - email: "CopleyC@d07a2006b3a1498a93ccb152c91ebf77.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Careers Serapin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Careers Serapin,ou=Product Development,dc=bitwarden,dc=com", - email: "SerapinC@12bcb122c4694351b3e767abc87fcd5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=MaryJane Kumamoto,ou=Human Resources,dc=bitwarden,dc=com", - email: "KumamotM@bce06db68abd4490849597341c60e88f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hellen VanLaten,ou=Human Resources,dc=bitwarden,dc=com", - email: "VanLateH@528d5bc90e3c4edebb6012454ea389b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mei Ballinger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mei Ballinger,ou=Administrative,dc=bitwarden,dc=com", - email: "BallingM@ca5cfe9e2bd34d4daa1788a54ae9670d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guillema Sarioglu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Guillema Sarioglu,ou=Management,dc=bitwarden,dc=com", - email: "SarioglG@a5c8780c86ee42949bb714c84dc95d44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Samual Colquhoun,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Samual Colquhoun,ou=Administrative,dc=bitwarden,dc=com", - email: "ColquhoS@af38a73cbf364504a84e0d960de55c89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kristin Vanderhoeven,ou=Product Development,dc=bitwarden,dc=com", - email: "VanderhK@f1156c4a9dda4912abbec52d86e89e0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Reggi Kelsch,ou=Product Testing,dc=bitwarden,dc=com", - email: "KelschR@bd6dedb04a504f54bb83fff2aa24490b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Uswrsd Talmont,ou=Administrative,dc=bitwarden,dc=com", - email: "TalmontU@2c548192dd0a450e9fdd873045107605.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Billie Karunaratne,ou=Human Resources,dc=bitwarden,dc=com", - email: "KarunarB@eb263435394f4d6ab9827469c04cb342.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cathrin Sanford,ou=Product Testing,dc=bitwarden,dc=com", - email: "SanfordC@e38af9fe725143fba59fa84a861f0258.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hubert Cicci,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hubert Cicci,ou=Janitorial,dc=bitwarden,dc=com", - email: "CicciH@c87d7949ca254b4faaba46ba985802e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chung Gooch,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chung Gooch,ou=Payroll,dc=bitwarden,dc=com", - email: "GoochC@503f6e3a96f3479bbfed7039bc14da05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnnie Trainer,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Johnnie Trainer,ou=Administrative,dc=bitwarden,dc=com", - email: "TrainerJ@7056e30d771245dcacf5054aa8552268.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=ShirleyAnn Leitner,ou=Product Development,dc=bitwarden,dc=com", - email: "LeitnerS@7279f15d1e764fb3b1076fe52d173852.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camile Latin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Camile Latin,ou=Management,dc=bitwarden,dc=com", - email: "LatinC@b4e0316b69b8470f901342e4f4f1cdf5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Radio Ong,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Radio Ong,ou=Product Development,dc=bitwarden,dc=com", - email: "OngR@a65c16782ad44e7b9ade771a93e40e92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmina Joly,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Carmina Joly,ou=Janitorial,dc=bitwarden,dc=com", - email: "JolyC@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alese Zarate,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Alese Zarate,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZarateA@a2e58ac4aa674923b6c4c06738a79475.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Babb Dpierre,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Babb Dpierre,ou=Human Resources,dc=bitwarden,dc=com", - email: "DpierreB@54603ca23b334ee2ab268dfe7ef5998b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cherice Rtprel,ou=Human Resources,dc=bitwarden,dc=com", - email: "RtprelC@ca6d3da0e0ae431b8aa777badba75d1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=DeeAnn SaranBrar,ou=Product Testing,dc=bitwarden,dc=com", - email: "SaranBrD@7dbf2c52de6d4f65b7e5ea3788d86d3e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dalila Forbes,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dalila Forbes,ou=Product Development,dc=bitwarden,dc=com", - email: "ForbesD@a48701aa8d324e65a88e2c654b93d791.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Thuthuy Abelow,ou=Payroll,dc=bitwarden,dc=com", - email: "AbelowT@42f51a65b1584dbea4e8a6daf5a3f864.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pinder Pedley,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pinder Pedley,ou=Administrative,dc=bitwarden,dc=com", - email: "PedleyP@47a7a80ec8774325ad24930467e7f72e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leo Thibodeaux,ou=Administrative,dc=bitwarden,dc=com", - email: "ThibodeL@38889c54d4b943c0b9fc26641a496258.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzi Gribbons,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Suzi Gribbons,ou=Product Development,dc=bitwarden,dc=com", - email: "GribbonS@2dc8c62e4ed74cd885bbff5260cbb174.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hulst Sinasac,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hulst Sinasac,ou=Payroll,dc=bitwarden,dc=com", - email: "SinasacH@e35bcff773e44a658149b86ee66df875.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mervin Holthaus,ou=Product Testing,dc=bitwarden,dc=com", - email: "HolthauM@4cf65bbff1914896934f97301ec7a0ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Naser deSalis,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Naser deSalis,ou=Administrative,dc=bitwarden,dc=com", - email: "deSalisN@2620fb87759f467a90bd68158f6c4bde.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chawki Starkebaum,ou=Payroll,dc=bitwarden,dc=com", - email: "StarkebC@3ce0a01f27f6425688fde2fe2ac46894.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Goldwyn Saltsider,ou=Peons,dc=bitwarden,dc=com", - email: "SaltsidG@1e13847ccc3c4ff8a4232936d21cc7f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurise Efstration,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maurise Efstration,ou=Product Testing,dc=bitwarden,dc=com", - email: "EfstratM@8bce8e47b62d4ccfb285ce5d7a43698b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranvir Reetz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ranvir Reetz,ou=Payroll,dc=bitwarden,dc=com", - email: "ReetzR@da92b528ad714b68bb8622f4f41299c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alidia COKOL,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alidia COKOL,ou=Peons,dc=bitwarden,dc=com", - email: "COKOLA@4e3272dfa10d49cf921e5550808b516c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alessandra Lamey,ou=Janitorial,dc=bitwarden,dc=com", - email: "LameyA@c2aaa12921af49dab0e71e3a102eabf3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shashank Pifko,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shashank Pifko,ou=Janitorial,dc=bitwarden,dc=com", - email: "PifkoS@0eed0e32043f4408ad5c64ea168a59bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Meeting Legrandvallet,ou=Payroll,dc=bitwarden,dc=com", - email: "LegrandM@669b2a81bf23431db2962dc8de3e583a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eulalie Montcalm,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eulalie Montcalm,ou=Management,dc=bitwarden,dc=com", - email: "MontcalE@2229562e57b44d9d8ff347bf88958fa0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calla Voight,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Calla Voight,ou=Peons,dc=bitwarden,dc=com", - email: "VoightC@5e9eaf0e4bc34fb7abad197540e304cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynette Kay,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lynette Kay,ou=Payroll,dc=bitwarden,dc=com", - email: "KayL@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carleen Baxter,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Carleen Baxter,ou=Product Testing,dc=bitwarden,dc=com", - email: "BaxterC@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hubert Brading,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hubert Brading,ou=Product Testing,dc=bitwarden,dc=com", - email: "BradingH@6d3e8dd854344b0786a5b5ed369ee17d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christian Norwood,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Christian Norwood,ou=Management,dc=bitwarden,dc=com", - email: "NorwoodC@9c67311a9b9a47fdab61ba341dc09ba9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Den Fogle,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Den Fogle,ou=Product Testing,dc=bitwarden,dc=com", - email: "FogleD@4fd308eba088404ab84d4a632c943b2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Letisha Kardomateas,ou=Janitorial,dc=bitwarden,dc=com", - email: "KardomaL@53730a8d12f040129003f875c65328b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kalvin Moyce,ou=Janitorial,dc=bitwarden,dc=com", - email: "MoyceK@ce3c3de60304481ea49d2ee345f72ace.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karol Dummer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Karol Dummer,ou=Product Testing,dc=bitwarden,dc=com", - email: "DummerK@6fd29755fe674bd2b6f70bd1498c6322.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Myrna Samora,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Myrna Samora,ou=Peons,dc=bitwarden,dc=com", - email: "SamoraM@a26a9c7d638a4a938f85aa60d8cdaebf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alnoor Cuccioletta,ou=Management,dc=bitwarden,dc=com", - email: "CucciolA@7747f5fffb014d46a2a05d592c7bbe1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KuiSoon Bajada,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=KuiSoon Bajada,ou=Management,dc=bitwarden,dc=com", - email: "BajadaK@304b18115d0e4749ac6a1dffdfa1e5a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvina Madison,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alvina Madison,ou=Janitorial,dc=bitwarden,dc=com", - email: "MadisonA@ef9dfa73b56a46a59a0d8721e608cbdf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Celyne Krater,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Celyne Krater,ou=Human Resources,dc=bitwarden,dc=com", - email: "KraterC@ac9bf0e4278e4b36812b33be5aa4f608.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pierre Hysler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pierre Hysler,ou=Management,dc=bitwarden,dc=com", - email: "HyslerP@5ae3c499f029451e9beac5fc29e4cd55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gordy Fab,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gordy Fab,ou=Administrative,dc=bitwarden,dc=com", - email: "FabG@59b0f3f771e94b3fb34ff9f80e0b476b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mouna LaRue,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mouna LaRue,ou=Product Development,dc=bitwarden,dc=com", - email: "LaRueM@869bcf8a299b41b19a933afcb83f9250.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Clarabelle Beaubien,ou=Janitorial,dc=bitwarden,dc=com", - email: "BeaubieC@02a64bb675cb4342ba7d85e9f53c10e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janot Carella,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Janot Carella,ou=Administrative,dc=bitwarden,dc=com", - email: "CarellaJ@99adc70861e74db5b3e496e79ef1d82c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanny Blauer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vanny Blauer,ou=Product Testing,dc=bitwarden,dc=com", - email: "BlauerV@6d9d7b1cc3684aeba19170292652b3d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rania Rymkiewicz,ou=Janitorial,dc=bitwarden,dc=com", - email: "RymkiewR@bf2777e1bdc741d1becaefb23144f2ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dineke Sheth,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dineke Sheth,ou=Payroll,dc=bitwarden,dc=com", - email: "ShethD@35381f6ba3c44b4bb270f540cb577e8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Feliza Camblin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Feliza Camblin,ou=Product Development,dc=bitwarden,dc=com", - email: "CamblinF@56aabbc898544c8399acb68bd9f1ecb0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zonda Bartush,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Zonda Bartush,ou=Payroll,dc=bitwarden,dc=com", - email: "BartushZ@321b01a1b92242e68a892ee12821e529.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Berneta Fainaru,ou=Janitorial,dc=bitwarden,dc=com", - email: "FainaruB@7e878d5ac7f34222a15cdadf43462965.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Radford Wiklund,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Radford Wiklund,ou=Human Resources,dc=bitwarden,dc=com", - email: "WiklundR@7457f3dc34da48928e7e6436d305b132.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pamella Sosa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Pamella Sosa,ou=Payroll,dc=bitwarden,dc=com", - email: "SosaP@02d364e8b5314cbabf82326287f95a37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marya Felton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marya Felton,ou=Janitorial,dc=bitwarden,dc=com", - email: "FeltonM@d3ac905a2e6e48cb81b45a952bf41ad1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aindrea Cairns,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Aindrea Cairns,ou=Peons,dc=bitwarden,dc=com", - email: "CairnsA@0cc0e22ab87d4684add7d45a9b0fda60.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katherina Deek,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Katherina Deek,ou=Administrative,dc=bitwarden,dc=com", - email: "DeekK@fb4a2dbd97ab48dfa6d2e8c5573179c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardeen Grasman,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ardeen Grasman,ou=Payroll,dc=bitwarden,dc=com", - email: "GrasmanA@f71e60ae996f4c5ebaf5d7f30d0cd29a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Isin VanOorschot,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Isin VanOorschot,ou=Administrative,dc=bitwarden,dc=com", - email: "VanOorsI@a5d2c703b13b45c8a8419761826a32aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karrah Laferriere,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Karrah Laferriere,ou=Product Development,dc=bitwarden,dc=com", - email: "LaferriK@4a3b4e7106d349cd90783f1287c2053b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanae Baynes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sanae Baynes,ou=Human Resources,dc=bitwarden,dc=com", - email: "BaynesS@9db63434a78e416392ae93e3976c1bfc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ortensia Nawaby,ou=Human Resources,dc=bitwarden,dc=com", - email: "NawabyO@1d0711f3e8d548e39cdf575baeb4ce17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zainab Doan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zainab Doan,ou=Product Testing,dc=bitwarden,dc=com", - email: "DoanZ@aa334b1a73514c2283534b58c2c9420b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cassy Seagle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cassy Seagle,ou=Management,dc=bitwarden,dc=com", - email: "SeagleC@69110fc674fa4f148260f46145056777.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wonda McCallum,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wonda McCallum,ou=Human Resources,dc=bitwarden,dc=com", - email: "McCalluW@b33a6b1f0ec54653bdc3b3ea69c66e04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florina Meredith,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Florina Meredith,ou=Payroll,dc=bitwarden,dc=com", - email: "MereditF@fb292094ced54372abffc8f9b3f21a26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nat Sadeghi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Nat Sadeghi,ou=Peons,dc=bitwarden,dc=com", - email: "SadeghiN@ee0a394b2c0349338a67625cbf75e536.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hendra Viegas,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hendra Viegas,ou=Management,dc=bitwarden,dc=com", - email: "ViegasH@eb1784d5a4ea473392ddeedf92456d2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettie Coutellier,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bettie Coutellier,ou=Payroll,dc=bitwarden,dc=com", - email: "CoutellB@cf6dac232ed84a4abc7d8879d016deb3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fifi Daaboul,ou=Janitorial,dc=bitwarden,dc=com", - email: "DaaboulF@8557bf093f9c42cfa11eafadaf8fc9c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davis Connolly,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Davis Connolly,ou=Peons,dc=bitwarden,dc=com", - email: "ConnollD@42e3b9b8ee274c8a9cda68af97a76f9f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carma Rittenhouse,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Carma Rittenhouse,ou=Peons,dc=bitwarden,dc=com", - email: "RittenhC@9d33ffd4da1445afb8600e31e26d24d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kissie Pastorek,ou=Janitorial,dc=bitwarden,dc=com", - email: "PastoreK@fdfa91cc52474679acb5b6774dfb094f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarah Longchamps,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sarah Longchamps,ou=Peons,dc=bitwarden,dc=com", - email: "LongchaS@b6298340ba144f0b8733c3b9bced2139.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haroon Neefs,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Haroon Neefs,ou=Human Resources,dc=bitwarden,dc=com", - email: "NeefsH@9e8d975d9dd144cc96db09fe1a3c236a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ilysa Bulkovshteyn,ou=Janitorial,dc=bitwarden,dc=com", - email: "BulkovsI@e0c925d836104225ad7119289c418ab5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenson Soumis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jenson Soumis,ou=Product Testing,dc=bitwarden,dc=com", - email: "SoumisJ@999816b5a97d4ddb86dcefd199a0b0ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minni Malynowsky,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Minni Malynowsky,ou=Product Development,dc=bitwarden,dc=com", - email: "MalynowM@df91f02938d046d8adb3f260f0e722ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Issam Coord,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Issam Coord,ou=Product Testing,dc=bitwarden,dc=com", - email: "CoordI@c3fff83a4ae14cdfafade886fdcd1bf4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynna Salam,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lynna Salam,ou=Administrative,dc=bitwarden,dc=com", - email: "SalamL@88d921807e6d4efcbe781081bb56a4f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Huong Quinones,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Huong Quinones,ou=Payroll,dc=bitwarden,dc=com", - email: "QuinoneH@982161c18d1c4b49bf26a62584cbb202.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Class Picard,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Class Picard,ou=Payroll,dc=bitwarden,dc=com", - email: "PicardC@9edbae2d060e4d5a91dfe1ee7e8d6fd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gerrilee Geddes,ou=Human Resources,dc=bitwarden,dc=com", - email: "GeddesG@7756ec2c272a477595e6c246408ba8de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Craig Kneisel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Craig Kneisel,ou=Product Development,dc=bitwarden,dc=com", - email: "KneiselC@f6a15f7382e844a784e99c66615d4c58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fay Franco,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fay Franco,ou=Administrative,dc=bitwarden,dc=com", - email: "FrancoF@c4dfc71b0753437c958ea6ea07827916.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rijn Zoellner,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZoellneR@c26660b210ac46199a711eb8c8869838.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Georgeanna Strauch,ou=Product Development,dc=bitwarden,dc=com", - email: "StrauchG@a202d5209c7047ff8a841ac785c909b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gae Garrett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gae Garrett,ou=Peons,dc=bitwarden,dc=com", - email: "GarrettG@627980edebc9489aa1090404c21eeba1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martita Sales,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Martita Sales,ou=Product Testing,dc=bitwarden,dc=com", - email: "SalesM@67f4fc26cd9549b3a5eca4e7223ddec0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amaleta McClelland,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Amaleta McClelland,ou=Management,dc=bitwarden,dc=com", - email: "McClellA@403ad564c08e47b8824594419bf3ec17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rico Vandevalk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rico Vandevalk,ou=Administrative,dc=bitwarden,dc=com", - email: "VandevaR@415554f5adbe4c70a27d90a1a4deab5a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nanny Kempski,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nanny Kempski,ou=Janitorial,dc=bitwarden,dc=com", - email: "KempskiN@321b01a1b92242e68a892ee12821e529.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antonella Stambouli,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Antonella Stambouli,ou=Management,dc=bitwarden,dc=com", - email: "StambouA@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bibbye Aldhizer,ou=Product Testing,dc=bitwarden,dc=com", - email: "AldhizeB@ae68418003e140fcbb7a4f2dbfa228c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rhett Womack,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rhett Womack,ou=Management,dc=bitwarden,dc=com", - email: "WomackR@9c1452db789c444e9e9d833c048f2e21.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kenneth Afkham,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kenneth Afkham,ou=Peons,dc=bitwarden,dc=com", - email: "AfkhamK@975433a41ce24ba59e1df5051b6724e9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Asmar Dermardiros,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Asmar Dermardiros,ou=Peons,dc=bitwarden,dc=com", - email: "DermardA@239b668cfa5b4428b1bdcd0e10203d09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marabel ORourke,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marabel ORourke,ou=Human Resources,dc=bitwarden,dc=com", - email: "ORourkeM@53d9002f0c614599a72d6e2756021160.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lowry Fahey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lowry Fahey,ou=Management,dc=bitwarden,dc=com", - email: "FaheyL@2efaf5e757274a05a9df0223ae176be1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christy Phalpher,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Christy Phalpher,ou=Administrative,dc=bitwarden,dc=com", - email: "PhalpheC@3313782fad5f448f843eeeeabc4b6528.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dolorita Binggeli,ou=Janitorial,dc=bitwarden,dc=com", - email: "BinggelD@52e746b148db486a82aefd7394487227.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emr Hacker,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Emr Hacker,ou=Management,dc=bitwarden,dc=com", - email: "HackerE@703805ed33844be785223bfd3a5cb030.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Estelle Robieux,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Estelle Robieux,ou=Peons,dc=bitwarden,dc=com", - email: "RobieuxE@fa34351933f345bf95fea4f1c23a3ebf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Abahri Hawrysh,ou=Janitorial,dc=bitwarden,dc=com", - email: "HawryshA@b827aeadf87046f484e6a5d514c5b320.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sheilakathryn Hirshman,ou=Product Development,dc=bitwarden,dc=com", - email: "HirshmaS@dfd74a54e46140bbbd208154864b4090.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashraf Maybee,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ashraf Maybee,ou=Administrative,dc=bitwarden,dc=com", - email: "MaybeeA@44096bc0588c471797cb8902036037bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bakel Sils,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bakel Sils,ou=Product Testing,dc=bitwarden,dc=com", - email: "SilsB@a54c7df8ebbf43f99b4f24faf5b4f79c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Linnell Wepf,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Linnell Wepf,ou=Peons,dc=bitwarden,dc=com", - email: "WepfL@4d236ad201e144feaf6ab19937ae47de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Foad Lebeau,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Foad Lebeau,ou=Janitorial,dc=bitwarden,dc=com", - email: "LebeauF@fd33d4fb8b0b4ef3a62d58f42107efc1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bal Braverman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bal Braverman,ou=Peons,dc=bitwarden,dc=com", - email: "BravermB@0d3732b7ea1d4d659dee1e0435292c15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gib Eslambolchi,ou=Human Resources,dc=bitwarden,dc=com", - email: "EslamboG@c8a26fbe5497453bad20457867557fff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Buda Virchick,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Buda Virchick,ou=Janitorial,dc=bitwarden,dc=com", - email: "VirchicB@6489fafbf61a4caab26d661679e37a51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ronalda Ambach,ou=Product Testing,dc=bitwarden,dc=com", - email: "AmbachR@19f0b3104cc549c5972e2013b118e2bf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Meghan Kenyon,ou=Janitorial,dc=bitwarden,dc=com", - email: "KenyonM@72bbae567388450abafaf7b9ac4e7a68.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alika Kirchner,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alika Kirchner,ou=Peons,dc=bitwarden,dc=com", - email: "KirchneA@12e070c46c9248eda6657574192aedf1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kata Hagerty,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kata Hagerty,ou=Peons,dc=bitwarden,dc=com", - email: "HagertyK@939e830de4504aab81a7c388f1546624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorraine Polk,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lorraine Polk,ou=Human Resources,dc=bitwarden,dc=com", - email: "PolkL@e822d8d41f85463a96816619505c18d0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tildi Washburn,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tildi Washburn,ou=Product Testing,dc=bitwarden,dc=com", - email: "WashburT@a8e8db7991ef41888b107f53097f906b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minette Reva,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Minette Reva,ou=Payroll,dc=bitwarden,dc=com", - email: "RevaM@45638c0afa5e4a23a27125f3cd5aa607.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farag Wolter,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Farag Wolter,ou=Management,dc=bitwarden,dc=com", - email: "WolterF@0569f2e4dd6a4e4a8a7f59c9d21907c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnnMarie Valentik,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=AnnMarie Valentik,ou=Management,dc=bitwarden,dc=com", - email: "ValentiA@c5d9be753e9d4e9da04477c6ac22856a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rudy Kaigler,ou=Human Resources,dc=bitwarden,dc=com", - email: "KaiglerR@723327dae88a42b1b49dd35709ea4974.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HooiLee Ronald,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=HooiLee Ronald,ou=Peons,dc=bitwarden,dc=com", - email: "RonaldH@8bb7a419aa064dabb3a5664772478164.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gipsy Raman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gipsy Raman,ou=Human Resources,dc=bitwarden,dc=com", - email: "RamanG@f6485fb9c17a4291ac3724383aaae8e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akram Nagendra,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Akram Nagendra,ou=Human Resources,dc=bitwarden,dc=com", - email: "NagendrA@81a2fc82bdcd4a3582b8aa6d409fc9a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bevyn Ovans,ou=Product Testing,dc=bitwarden,dc=com", - email: "OvansB@5411fa97ed104161bed6dae71e8cb050.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glen Majeed,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Glen Majeed,ou=Payroll,dc=bitwarden,dc=com", - email: "MajeedG@f263976411814a39ae02ef1a1447e567.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marieke Pien,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marieke Pien,ou=Janitorial,dc=bitwarden,dc=com", - email: "PienM@3118b07730ef4ee1ba02df2d8acb61a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ingrid Lieure,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ingrid Lieure,ou=Management,dc=bitwarden,dc=com", - email: "LieureI@22b03905699c4e05b21e937a3135b87c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roya Tod,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Roya Tod,ou=Janitorial,dc=bitwarden,dc=com", - email: "TodR@55d1ab95eef3488782a93b7bd4d6acf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cherise DeMarco,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeMarcoC@1726f5bfacd044bf871463e64c567d5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christye Meridew,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Christye Meridew,ou=Product Testing,dc=bitwarden,dc=com", - email: "MeridewC@96682e2a4433480fa87b37b2ffbd15b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Patrick Albers,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Patrick Albers,ou=Administrative,dc=bitwarden,dc=com", - email: "AlbersP@d534d4e018bc4513999f8eae2be01976.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doralynn Swyer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Doralynn Swyer,ou=Peons,dc=bitwarden,dc=com", - email: "SwyerD@900b9e73ea874cc4989de9de3d123d54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanni Katsouras,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vanni Katsouras,ou=Management,dc=bitwarden,dc=com", - email: "KatsourV@8429461810c443b49add09521f9c6b46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rogelio McGrath,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rogelio McGrath,ou=Administrative,dc=bitwarden,dc=com", - email: "McGrathR@53f9c944c90445fcb9727989bead4466.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Gareth Bellehumeur,ou=Product Testing,dc=bitwarden,dc=com", - email: "BellehuG@6ee7e09ddbec43048b71898f265116eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daphine Kutschke,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Daphine Kutschke,ou=Administrative,dc=bitwarden,dc=com", - email: "KutschkD@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jin Lyall,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jin Lyall,ou=Peons,dc=bitwarden,dc=com", - email: "LyallJ@bd234f19e2034627848e6380646db915.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Khurshid Giguere,ou=Janitorial,dc=bitwarden,dc=com", - email: "GiguereK@a8345c16b5fd431cb3ad8e600eebcc2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clerissa Maduri,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Clerissa Maduri,ou=Administrative,dc=bitwarden,dc=com", - email: "MaduriC@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Simonne Lukers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Simonne Lukers,ou=Management,dc=bitwarden,dc=com", - email: "LukersS@f1957adbdc8943baae36c793bc84fd7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacynth Manto,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jacynth Manto,ou=Product Testing,dc=bitwarden,dc=com", - email: "MantoJ@bd920fe5c7d549d08f1567ef15f28b56.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Emmalyn Bible,ou=Human Resources,dc=bitwarden,dc=com", - email: "BibleE@327358f986b94dcfa1839385e66d7856.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronan Rattray,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ronan Rattray,ou=Human Resources,dc=bitwarden,dc=com", - email: "RattrayR@599d357394854e689476d822b0b57fa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doloritas Ocone,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Doloritas Ocone,ou=Management,dc=bitwarden,dc=com", - email: "OconeD@5393bc67f8ee409593915ca305198b36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Etta Smithson,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Etta Smithson,ou=Human Resources,dc=bitwarden,dc=com", - email: "SmithsoE@101f510449dd4db58ccdaa8d8df89d63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rajiv Moulsoff,ou=Payroll,dc=bitwarden,dc=com", - email: "MoulsofR@6b9e684fa59647e280b75516ef2c9723.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jester Nagenthiram,ou=Janitorial,dc=bitwarden,dc=com", - email: "NagenthJ@6c3860a955fe431ca8d48e56cd2c1cc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephanie Pickles,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Stephanie Pickles,ou=Peons,dc=bitwarden,dc=com", - email: "PicklesS@468705ba5f434f3295170aa6ba4375b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karla Hearnden,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Karla Hearnden,ou=Management,dc=bitwarden,dc=com", - email: "HearndeK@f9c4bace7749496ca9d16bcee3ec0a9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Waichi Arbuckle,ou=Human Resources,dc=bitwarden,dc=com", - email: "ArbucklW@df1f69e145f84092af98fbde9b9513c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xenia Schmitz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Xenia Schmitz,ou=Administrative,dc=bitwarden,dc=com", - email: "SchmitzX@866ee03787a64b2f93dee41c244c546a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sande Withrow,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sande Withrow,ou=Administrative,dc=bitwarden,dc=com", - email: "WithrowS@8488bd932270494b964d988d57bbae02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pammie Guilbert,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pammie Guilbert,ou=Peons,dc=bitwarden,dc=com", - email: "GuilberP@8342e98dcb144504925e856ae40dc976.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabina Dolson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sabina Dolson,ou=Payroll,dc=bitwarden,dc=com", - email: "DolsonS@29c3d32bd72d456b98ccdb1f1f704bb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=CostasDinos McKay,ou=Janitorial,dc=bitwarden,dc=com", - email: "McKayC@880f27f5dd8149c7b2b47da8b579fcbf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyril Tullius,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cyril Tullius,ou=Janitorial,dc=bitwarden,dc=com", - email: "TulliusC@15f299e0af604cd282364f75359dfca1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bogdan Antonelli,ou=Administrative,dc=bitwarden,dc=com", - email: "AntonelB@e800254840ec4cdd98916b4e083fcf9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Heather Ogrodnik,ou=Human Resources,dc=bitwarden,dc=com", - email: "OgrodniH@92b8f1fa6a9b40f09b977a8e59273ce2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cuthbert Pryor,ou=Human Resources,dc=bitwarden,dc=com", - email: "PryorC@cd9aa4cc15f7474aa6c5dd1195964bad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agathe Kinney,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Agathe Kinney,ou=Product Testing,dc=bitwarden,dc=com", - email: "KinneyA@ed49844bd2994c2dab1d86730cce0d44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nevsa Botting,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nevsa Botting,ou=Payroll,dc=bitwarden,dc=com", - email: "BottingN@e4b8d13bcc384d8687bded532a54c3c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Chunmeng Nonkes,ou=Administrative,dc=bitwarden,dc=com", - email: "NonkesC@0d089601fe8d4842aca2c104051c6a49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Eliezer Quevillon,ou=Human Resources,dc=bitwarden,dc=com", - email: "QuevillE@679765b52d394d7ba89a59f3e71121ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kalyan Linebarger,ou=Administrative,dc=bitwarden,dc=com", - email: "LinebarK@0c7bc7f485f44882b2c54d5790a00c99.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisse Wallis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melisse Wallis,ou=Janitorial,dc=bitwarden,dc=com", - email: "WallisM@cea72e60113c4004b6d166b7d2581f81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benoite Lenior,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Benoite Lenior,ou=Administrative,dc=bitwarden,dc=com", - email: "LeniorB@20e14dd3d2dd44c8a8925dd175adb2ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marya Lozier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marya Lozier,ou=Janitorial,dc=bitwarden,dc=com", - email: "LozierM@ad6bdcc812124f5eb19cd674c7656fcd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Access Phelps,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Access Phelps,ou=Product Testing,dc=bitwarden,dc=com", - email: "PhelpsA@97024eb0461a46d6aa6052406945f68c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ned Hammonds,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ned Hammonds,ou=Janitorial,dc=bitwarden,dc=com", - email: "HammondN@ab6be5fd115643a9838774bec61580fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ernest Betterley,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ernest Betterley,ou=Payroll,dc=bitwarden,dc=com", - email: "BetterlE@d7c42a5466a44da1a41df54a07b84c5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kana Licata,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kana Licata,ou=Janitorial,dc=bitwarden,dc=com", - email: "LicataK@7cb67504c13e412a8fec103be024f92b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermione Donahue,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hermione Donahue,ou=Management,dc=bitwarden,dc=com", - email: "DonahueH@3986b5b118ef4d79a84f9f227789123a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rochette Materkowski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rochette Materkowski,ou=Administrative,dc=bitwarden,dc=com", - email: "MaterkoR@9fbbd3b588db493faa565bcde3d4e632.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rheba Dirbm,ou=Human Resources,dc=bitwarden,dc=com", - email: "DirbmR@3ee9065d7b6b4e83b28bb68fa8c51cff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lan Simms,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lan Simms,ou=Peons,dc=bitwarden,dc=com", - email: "SimmsL@597ee7a281994e04852496c0f41850b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Troy Bengtson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Troy Bengtson,ou=Payroll,dc=bitwarden,dc=com", - email: "BengtsoT@6814734c8a1a4426b43d87c3c6b525f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sheelagh Peixoto,ou=Product Testing,dc=bitwarden,dc=com", - email: "PeixotoS@938a7a8d77714dae9ee57a1ad9691680.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natka Moritz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Natka Moritz,ou=Product Testing,dc=bitwarden,dc=com", - email: "MoritzN@49a7dfb897474c7dad3d0d47056d73c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tineke Pryszlak,ou=Product Testing,dc=bitwarden,dc=com", - email: "PryszlaT@4fce4f4074b64be78725b4295c78d7d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brook Clifton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brook Clifton,ou=Management,dc=bitwarden,dc=com", - email: "CliftonB@3addc4fa91024158bfa9904c24f12164.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maggee Colton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Maggee Colton,ou=Management,dc=bitwarden,dc=com", - email: "ColtonM@e97e68f305e3440c9129677cf226a2f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bobinette Holinski,ou=Human Resources,dc=bitwarden,dc=com", - email: "HolinskB@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rae Willey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rae Willey,ou=Administrative,dc=bitwarden,dc=com", - email: "WilleyR@83f3b1a626774d71882e96bf3396b700.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sherman Mattiuz,ou=Human Resources,dc=bitwarden,dc=com", - email: "MattiuzS@770858a0ba27427fa80380c180b40ddb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terence Murray,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Terence Murray,ou=Janitorial,dc=bitwarden,dc=com", - email: "MurrayT@bbd1af679b0c4f5eb725bdbe4b2aee6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Janot Ostapiw,ou=Human Resources,dc=bitwarden,dc=com", - email: "OstapiwJ@ceef53b02cf14daf8dcf3b446c7764b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ransom Grande,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ransom Grande,ou=Payroll,dc=bitwarden,dc=com", - email: "GrandeR@7728cd06c9f24725b1335c5276362320.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lindy Clinger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lindy Clinger,ou=Human Resources,dc=bitwarden,dc=com", - email: "ClingerL@6d69b599308f48ccb963c12b5968912d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clyde Hanser,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clyde Hanser,ou=Management,dc=bitwarden,dc=com", - email: "HanserC@d6c8569604a646f9806f25f3b316b85e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wilmette Masterson,ou=Product Testing,dc=bitwarden,dc=com", - email: "MastersW@4445babf8a7d4d96bd8cbd44d9ed3bc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charita Rainsforth,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Charita Rainsforth,ou=Payroll,dc=bitwarden,dc=com", - email: "RainsfoC@2babe722fdef4b0fa98bbd24f66fbecf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Mariquilla Bayless,ou=Janitorial,dc=bitwarden,dc=com", - email: "BaylessM@04bb8c62899b41dd85b281860ec060e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Remo Duchesne,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Remo Duchesne,ou=Human Resources,dc=bitwarden,dc=com", - email: "DuchesnR@87b6080a8e904aef9833756715afd0f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Radames Verrilli,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Radames Verrilli,ou=Product Testing,dc=bitwarden,dc=com", - email: "VerrillR@5a335fc442a34146b7e0bc22b5e52fbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alanna Dillard,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Alanna Dillard,ou=Janitorial,dc=bitwarden,dc=com", - email: "DillardA@d7bcc941bf9944f4a0cf58f580b041c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chantal Neander,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Chantal Neander,ou=Administrative,dc=bitwarden,dc=com", - email: "NeanderC@5e9773b417544d1f926187faa8565de5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leese Nagendra,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Leese Nagendra,ou=Management,dc=bitwarden,dc=com", - email: "NagendrL@5ca487ddf481407baca0f7ac58492fb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rosalynd Silverstone,ou=Payroll,dc=bitwarden,dc=com", - email: "SilversR@21813dd069254b74bf250b7db15a806f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erena Ticzon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Erena Ticzon,ou=Payroll,dc=bitwarden,dc=com", - email: "TiczonE@9077504eeb5f4af282c6c876f04ee045.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marsiella Maludzinski,ou=Product Testing,dc=bitwarden,dc=com", - email: "MaludziM@d099b87b6d4c4f55806f0c8cf8dbfe18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carlisle Tangren,ou=Human Resources,dc=bitwarden,dc=com", - email: "TangrenC@9df76257bd034e648ad7f06b4b88283f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Far Fogelson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Far Fogelson,ou=Administrative,dc=bitwarden,dc=com", - email: "FogelsoF@940a7593b88c4fb0afde713027fc2a16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anne Kobeski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anne Kobeski,ou=Administrative,dc=bitwarden,dc=com", - email: "KobeskiA@4f265a55f05f44d196ed2a8ef628acec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ursola Hastie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ursola Hastie,ou=Payroll,dc=bitwarden,dc=com", - email: "HastieU@a34bb7d1546c462cb51396798bb22845.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Benetta Lichtenstein,ou=Peons,dc=bitwarden,dc=com", - email: "LichtenB@ec913a211e094c66bf75ab14cafe8fb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tehchi Hiltz,ou=Product Testing,dc=bitwarden,dc=com", - email: "HiltzT@ab27f4e751074bd087dace4a33698f66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Germaine Wingate,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Germaine Wingate,ou=Product Testing,dc=bitwarden,dc=com", - email: "WingateG@a87ac40ce2a547c8a852f41a3d6dfeae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olympia Peets,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Olympia Peets,ou=Payroll,dc=bitwarden,dc=com", - email: "PeetsO@db51bc9053f3446197c0ce77497e73c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sati Varughese,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sati Varughese,ou=Janitorial,dc=bitwarden,dc=com", - email: "VarugheS@12257cabb5eb48ceb908520b2745a457.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tab Gozen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tab Gozen,ou=Human Resources,dc=bitwarden,dc=com", - email: "GozenT@520c5bcfe42945ff9a9bc4329f8d9224.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bcspatch Dunlop,ou=Product Testing,dc=bitwarden,dc=com", - email: "DunlopB@c9f8cbb8d3d848c99fea02136e8a89f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ioana Newsome,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ioana Newsome,ou=Administrative,dc=bitwarden,dc=com", - email: "NewsomeI@c41f8f7aea354718b6ea3277359c3684.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=WingKi Dpnqa,ou=Product Development,dc=bitwarden,dc=com", - email: "DpnqaW@829d5713be204a9ab0a7f267371638c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sonja Ruffolo,ou=Product Development,dc=bitwarden,dc=com", - email: "RuffoloS@28a9681724804070b81d5f99c070a25f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Damian Lescot,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Damian Lescot,ou=Product Development,dc=bitwarden,dc=com", - email: "LescotD@6bb09be3d23943f6925bf796ee13d06b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raz Roseland,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Raz Roseland,ou=Payroll,dc=bitwarden,dc=com", - email: "RoselanR@39eecbf6644e41e6a54aa634c1d5a5be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=MinhPhuc Voss,ou=Payroll,dc=bitwarden,dc=com", - email: "VossM@6e1fed861212421a9e034f7ade197c18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vivianna Lackie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vivianna Lackie,ou=Management,dc=bitwarden,dc=com", - email: "LackieV@c6135533c1c14dabb3956121df0f7a96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hadi Freeley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hadi Freeley,ou=Janitorial,dc=bitwarden,dc=com", - email: "FreeleyH@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carol Sarson,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carol Sarson,ou=Management,dc=bitwarden,dc=com", - email: "SarsonC@9d5ea794acf845deab8b5f3d0cc82f3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marinette Paoletti,ou=Janitorial,dc=bitwarden,dc=com", - email: "PaolettM@658d341f53c7427cb916d5817479bb06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailene Mackin,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ailene Mackin,ou=Janitorial,dc=bitwarden,dc=com", - email: "MackinA@2ac14d0411884ed9acd9620cf7e4fc1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Umakanth Rollinson,ou=Administrative,dc=bitwarden,dc=com", - email: "RollinsU@33df80476cec44768009e5ea91fdde4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Paloma Jasmin,ou=Product Testing,dc=bitwarden,dc=com", - email: "JasminP@9f7e1d164477458983f7ecf611ccd053.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bret Winicki,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Bret Winicki,ou=Product Testing,dc=bitwarden,dc=com", - email: "WinickiB@54f117c8b36b486ab03de0f2d082701e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hatty Latchford,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hatty Latchford,ou=Peons,dc=bitwarden,dc=com", - email: "LatchfoH@0600d7e5efe7437ab4bf4188ef381ca8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Madelaine Swepston,ou=Product Testing,dc=bitwarden,dc=com", - email: "SwepstoM@f5f5c7e1f86f41029a11eb9627ca25be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trey Baenziger,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Trey Baenziger,ou=Product Testing,dc=bitwarden,dc=com", - email: "BaenzigT@2c4a787e446b470797a2c3a15157473d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ioan Elsing,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ioan Elsing,ou=Product Testing,dc=bitwarden,dc=com", - email: "ElsingI@2a96d5dbd54f4fdb9c20889b618e8eea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joy Ferrara,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Joy Ferrara,ou=Payroll,dc=bitwarden,dc=com", - email: "FerraraJ@f69c90cc2b8c4a8e9725fac3e3a7a1d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cinderella Hazeldine,ou=Product Testing,dc=bitwarden,dc=com", - email: "HazeldiC@582578f4c0a34d7283b52c37fe385620.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rowe Clinton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Rowe Clinton,ou=Product Testing,dc=bitwarden,dc=com", - email: "ClintonR@39cdc253bc3c4fafbda637c79741172e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dolores McCafferty,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dolores McCafferty,ou=Product Development,dc=bitwarden,dc=com", - email: "McCaffeD@9fb3bab6a5274e42930ef0c4e486700b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luciana Lepore,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Luciana Lepore,ou=Administrative,dc=bitwarden,dc=com", - email: "LeporeL@d257ebd18e114f6aa84afd223eee79f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ciaran Cicchino,ou=Product Development,dc=bitwarden,dc=com", - email: "CicchinC@75db88f614404021a489793ab108bedb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jimmie Korest,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jimmie Korest,ou=Administrative,dc=bitwarden,dc=com", - email: "KorestJ@735bae6f17be4d659b3d005e2e886c13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kaitlynn Cracknell,ou=Product Testing,dc=bitwarden,dc=com", - email: "CrackneK@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Martelle Reno,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Martelle Reno,ou=Human Resources,dc=bitwarden,dc=com", - email: "RenoM@de1b941b029b482ba2e81cfa3a5aa97c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hock Chilausky,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hock Chilausky,ou=Administrative,dc=bitwarden,dc=com", - email: "ChilausH@8dfc1cdc4f364e48b56261d47a4ab828.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teddie Bulan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Teddie Bulan,ou=Janitorial,dc=bitwarden,dc=com", - email: "BulanT@4136b563ed9340ee98f3a89751b3b749.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lavonda Rowsell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lavonda Rowsell,ou=Management,dc=bitwarden,dc=com", - email: "RowsellL@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Anallese Babasaki,ou=Human Resources,dc=bitwarden,dc=com", - email: "BabasakA@9eaee5a095454441a8ff73a3e26fa008.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Persis Daneshzadeh,ou=Administrative,dc=bitwarden,dc=com", - email: "DaneshzP@a312c5a631954b3083418977a35fbc96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorinda Nolet,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lorinda Nolet,ou=Payroll,dc=bitwarden,dc=com", - email: "NoletL@87d497e060994207b70ef7bd8c3d6175.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ike Outage,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ike Outage,ou=Human Resources,dc=bitwarden,dc=com", - email: "OutageI@1d45ed10a4c94ef092969b5e721cde30.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erin Dolson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Erin Dolson,ou=Peons,dc=bitwarden,dc=com", - email: "DolsonE@834d5c62ddb748bdb27bdbef9776c699.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Zoenka Rodriguez,ou=Janitorial,dc=bitwarden,dc=com", - email: "RodriguZ@587817ef80f642439eb2bd6954e605f0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anderson Sitar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anderson Sitar,ou=Management,dc=bitwarden,dc=com", - email: "SitarA@75858e9b0a57431ea93369d3d0fdb55e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Christabella Grandbois,ou=Janitorial,dc=bitwarden,dc=com", - email: "GrandboC@f8828e0649db4c3db49f92ffdaeb1fea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranga Cawley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ranga Cawley,ou=Product Testing,dc=bitwarden,dc=com", - email: "CawleyR@8a772ad7c8a24040a4f2b442f7aa7a04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kylie Parnell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kylie Parnell,ou=Human Resources,dc=bitwarden,dc=com", - email: "ParnellK@e28cbc2c5f7b45ddab3e3b415504a46c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=GokulChandra TestingPOSTTEST,ou=Product Testing,dc=bitwarden,dc=com", - email: "TestingG@388f37e043f44f87a961652591a7a940.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Millisent Ladymon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Millisent Ladymon,ou=Product Development,dc=bitwarden,dc=com", - email: "LadymonM@98315d8e8bc34b77b08ac74a18e3be73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chlo Reinboth,ou=Product Testing,dc=bitwarden,dc=com", - email: "ReinbotC@65d073567be540b69713d5ac0dbae37f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilda Turcot,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tilda Turcot,ou=Administrative,dc=bitwarden,dc=com", - email: "TurcotT@29d0d437b2c147b0847b9dd994ec881e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yuji McCabe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yuji McCabe,ou=Payroll,dc=bitwarden,dc=com", - email: "McCabeY@eb05aa89b28a47e2a26968b38c69b8d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pen Yost,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Pen Yost,ou=Janitorial,dc=bitwarden,dc=com", - email: "YostP@a58f1d89c8df4bb585be88ea46688614.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Traci Ahdieh,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Traci Ahdieh,ou=Management,dc=bitwarden,dc=com", - email: "AhdiehT@0d3a1096e9114165b169e9981629dc14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fay Deugau,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fay Deugau,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeugauF@c928e664ca344d17b905e23403ffeabf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Inna MokFung,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Inna MokFung,ou=Administrative,dc=bitwarden,dc=com", - email: "MokFungI@a99084400fcf4b279e00215493abf581.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Thalia Bahgat,ou=Human Resources,dc=bitwarden,dc=com", - email: "BahgatT@efcd1b5597e34989b53d787ed4a06081.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tehchi McEwan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tehchi McEwan,ou=Peons,dc=bitwarden,dc=com", - email: "McEwanT@83b84b06c3ea4532a9ea65fff078374c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tats Graves,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tats Graves,ou=Administrative,dc=bitwarden,dc=com", - email: "GravesT@a6ec4676b0ad44f28916d133e3a83b4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Thomson Annabelle,ou=Human Resources,dc=bitwarden,dc=com", - email: "AnnabelT@4fe51546324e43adb896246907c2c135.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nakina Steranka,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nakina Steranka,ou=Payroll,dc=bitwarden,dc=com", - email: "SterankN@2daa2d54a3ef4729ab85003e87e24fc2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilda Reid,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gilda Reid,ou=Peons,dc=bitwarden,dc=com", - email: "ReidG@dec219c60891448d9130e91ee40108cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hildegarde Mcellistrem,ou=Administrative,dc=bitwarden,dc=com", - email: "McellisH@7e878d5ac7f34222a15cdadf43462965.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arnis Truchon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Arnis Truchon,ou=Administrative,dc=bitwarden,dc=com", - email: "TruchonA@912fbf9c89084a08a95b13d9b901e072.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ryszard DocumentationGrp,ou=Payroll,dc=bitwarden,dc=com", - email: "DocumenR@7f1912f54e7a4efa8a33a6ba82fc7102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Syyed Ackwood,ou=Janitorial,dc=bitwarden,dc=com", - email: "AckwoodS@bebbec64fc5b426aa6d6b13aab8ac6c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paige Wanzeck,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Paige Wanzeck,ou=Management,dc=bitwarden,dc=com", - email: "WanzeckP@be6364f0dd5d4b9ca40fd1cd6b60dc01.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dutch HSI,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dutch HSI,ou=Product Testing,dc=bitwarden,dc=com", - email: "HSID@f1796b877596418d9a10887e44f60c73.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adda Danai,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Adda Danai,ou=Product Development,dc=bitwarden,dc=com", - email: "DanaiA@2229562e57b44d9d8ff347bf88958fa0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Netty Muttaqi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Netty Muttaqi,ou=Management,dc=bitwarden,dc=com", - email: "MuttaqiN@05834ac23b2d4ffd8c19e87e4a8a3312.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karly Breglec,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karly Breglec,ou=Peons,dc=bitwarden,dc=com", - email: "BreglecK@7bea05cd51e741778b53f257dcc46e63.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Andrew Gerbec,ou=Janitorial,dc=bitwarden,dc=com", - email: "GerbecA@4adccb8182214b56b2168ff34b029365.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gurdip Thornber,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gurdip Thornber,ou=Management,dc=bitwarden,dc=com", - email: "ThornbeG@7470f93c470941c983e3e9faa8bed631.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulcea Bassett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dulcea Bassett,ou=Management,dc=bitwarden,dc=com", - email: "BassettD@6d2ee1c01cd84a73a333667538c9c7b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caprice Selent,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Caprice Selent,ou=Payroll,dc=bitwarden,dc=com", - email: "SelentC@abccdcf5035347f79868c63de7257f89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hemant Remillard,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Hemant Remillard,ou=Janitorial,dc=bitwarden,dc=com", - email: "RemillaH@cc172d717b9241f0a28f83e3ce74fb85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilak Odgers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tilak Odgers,ou=Management,dc=bitwarden,dc=com", - email: "OdgersT@d7b181ccc8954040a7c4160403df7781.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaela Wooff,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kaela Wooff,ou=Peons,dc=bitwarden,dc=com", - email: "WooffK@c78a9a65ca75452787721ced31a98916.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ginette Deardurff,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeardurG@369d0d96577549cc8a38c9240b9041ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bosiljka Dolezal,ou=Product Development,dc=bitwarden,dc=com", - email: "DolezalB@fadd1eac8fe2451fa3ba21f515baaf1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grey Krakowetz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Grey Krakowetz,ou=Administrative,dc=bitwarden,dc=com", - email: "KrakoweG@5c9e892ecd964d17bdc57422f30b14b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Canute Ladymon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Canute Ladymon,ou=Payroll,dc=bitwarden,dc=com", - email: "LadymonC@1cec494b2c6b4b8a8fb44bcdcbcfca34.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alex Lumley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Alex Lumley,ou=Human Resources,dc=bitwarden,dc=com", - email: "LumleyA@c7211550a0e54b11899929b0d44158ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gunars Runkel,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gunars Runkel,ou=Peons,dc=bitwarden,dc=com", - email: "RunkelG@bfbe96af9d94476ba3dcfc88f7bdf41b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Careers McAdorey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Careers McAdorey,ou=Management,dc=bitwarden,dc=com", - email: "McAdoreC@a8e48e7f01fb4831b7bf783525861229.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardelia Bunner,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ardelia Bunner,ou=Management,dc=bitwarden,dc=com", - email: "BunnerA@48da65776d804c88bd44538c39d70bac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fekri Hunike,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fekri Hunike,ou=Product Testing,dc=bitwarden,dc=com", - email: "HunikeF@4440633f8f29482c8743bf0c056d529c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adey Shippen,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Adey Shippen,ou=Peons,dc=bitwarden,dc=com", - email: "ShippenA@23d4be833d7746b6959f35fd9cc7acb5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malina Lederman,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Malina Lederman,ou=Janitorial,dc=bitwarden,dc=com", - email: "LedermaM@b4a96c186a084a79b91245984247afc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Carmina Kikuta,ou=Product Testing,dc=bitwarden,dc=com", - email: "KikutaC@392a4a6a368341beb07fcc7da7744c10.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perry Maryak,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Perry Maryak,ou=Product Development,dc=bitwarden,dc=com", - email: "MaryakP@c22edd5791c346768ee9b376006f6c67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vance Ruppert,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vance Ruppert,ou=Payroll,dc=bitwarden,dc=com", - email: "RuppertV@20c9c762ac48445f91be8a70247647f6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Peg Toscano,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Peg Toscano,ou=Human Resources,dc=bitwarden,dc=com", - email: "ToscanoP@6ea643c033164b309c315ce3b4972cd5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Monah Tsonos,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Monah Tsonos,ou=Product Testing,dc=bitwarden,dc=com", - email: "TsonosM@9f17762c03e9474abb40044c838d96f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meade Latulippe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Meade Latulippe,ou=Janitorial,dc=bitwarden,dc=com", - email: "LatulipM@c4952a4f27294740adcb993c369618a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karan Piper,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karan Piper,ou=Peons,dc=bitwarden,dc=com", - email: "PiperK@44bcfd07218c489eba7387452f761d66.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chander Paulus,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Chander Paulus,ou=Product Testing,dc=bitwarden,dc=com", - email: "PaulusC@b00dae30a7d643d19965ff3ced64a2ec.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Parham Cisco,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Parham Cisco,ou=Product Testing,dc=bitwarden,dc=com", - email: "CiscoP@16a262560039498cb0b40791fe72917a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Vmbackup Hagan,ou=Product Testing,dc=bitwarden,dc=com", - email: "HaganV@4a8d22894cf24b2dbddb3ccac895cba0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charmain Chahal,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Charmain Chahal,ou=Payroll,dc=bitwarden,dc=com", - email: "ChahalC@ca139c3b55e64be89ee3b68169ce6be0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ainslee Pinizzotto,ou=Management,dc=bitwarden,dc=com", - email: "PinizzoA@51229efcbb5c42119b299e0a2768aeae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ainsley Sobkow,ou=Administrative,dc=bitwarden,dc=com", - email: "SobkowA@7979cefae37f498d8fb0f14251a8537d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janelle Tucker,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Janelle Tucker,ou=Janitorial,dc=bitwarden,dc=com", - email: "TuckerJ@d49ef3511c504afba6eb7b305ddc6daf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angie Tesch,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Angie Tesch,ou=Janitorial,dc=bitwarden,dc=com", - email: "TeschA@48da65776d804c88bd44538c39d70bac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Traci Wolter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Traci Wolter,ou=Human Resources,dc=bitwarden,dc=com", - email: "WolterT@f0da7bbf51f0472cbdc26a3d196ad9f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Azmina Bergeson,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Azmina Bergeson,ou=Peons,dc=bitwarden,dc=com", - email: "BergesoA@01414db3388a4e4b949f31547b79484c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dolly Dane,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Dolly Dane,ou=Peons,dc=bitwarden,dc=com", - email: "DaneD@bc4cae64b5dd4867a72d318eb0fa8dc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Narendra Matsuzawa,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Narendra Matsuzawa,ou=Management,dc=bitwarden,dc=com", - email: "MatsuzaN@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zaneta Kibler,ou=Product Testing,dc=bitwarden,dc=com", - email: "KiblerZ@cdb7b7e4d3da42848bdf4af549d7dad6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Souza Austin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Souza Austin,ou=Administrative,dc=bitwarden,dc=com", - email: "AustinS@b7cb27558e1e4f879b86cf02c83007b9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Harry Ferruzzi,ou=Human Resources,dc=bitwarden,dc=com", - email: "FerruzzH@b36741628ac5411aa6219ea976eb30f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lauretta Withrow,ou=Human Resources,dc=bitwarden,dc=com", - email: "WithrowL@30c200fc237249269682c9ad7e2548d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chrissy Marren,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Chrissy Marren,ou=Payroll,dc=bitwarden,dc=com", - email: "MarrenC@8b67b2d7bd1144ea807341eb074f69ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bhagvat VanSchouwen,ou=Human Resources,dc=bitwarden,dc=com", - email: "VanSchoB@82a602f457ae4136b678ebd6177ccf89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tandie Virgoe,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Tandie Virgoe,ou=Peons,dc=bitwarden,dc=com", - email: "VirgoeT@6befdabbbc374615aeeed6f7a15c3c4b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calley Naujoks,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Calley Naujoks,ou=Management,dc=bitwarden,dc=com", - email: "NaujoksC@68503c7f9b494f9789d4c554a08c5cad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Regan Neilsen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Regan Neilsen,ou=Administrative,dc=bitwarden,dc=com", - email: "NeilsenR@995d86ac0711408aa561a9fbb566ede2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Katja Waterman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Katja Waterman,ou=Product Development,dc=bitwarden,dc=com", - email: "WatermaK@c145b5c52b41469195e7c7d838041281.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sol Royals,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sol Royals,ou=Human Resources,dc=bitwarden,dc=com", - email: "RoyalsS@612e8eb188de48388f43236fca542654.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=KahMing Dubreck,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=KahMing Dubreck,ou=Administrative,dc=bitwarden,dc=com", - email: "DubreckK@b2c537a3f6174546b2a7b1777d2dea4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melitta Hunter,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Melitta Hunter,ou=Product Testing,dc=bitwarden,dc=com", - email: "HunterM@f26a95f0337144a7a3fdc9a2ef672cb1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trang Tucker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Trang Tucker,ou=Product Testing,dc=bitwarden,dc=com", - email: "TuckerT@08455693013d466f8b3622782a9a4935.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Edmond DiFalco,ou=Janitorial,dc=bitwarden,dc=com", - email: "DiFalcoE@75f92a023d754e1aabb5bf6fcaf0b4f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nicole Zinkie,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZinkieN@17084ac6bac544e082e8e10baef9e88a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Garth Alfaro,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Garth Alfaro,ou=Management,dc=bitwarden,dc=com", - email: "AlfaroG@d9f4e76978ef48bd9140507937d0a87e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rickie Genge,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rickie Genge,ou=Human Resources,dc=bitwarden,dc=com", - email: "GengeR@406a5f63a2784737a47e7de7eb972559.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariette Piggott,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mariette Piggott,ou=Administrative,dc=bitwarden,dc=com", - email: "PiggottM@2e9e3fdb5ac94378ae0798f03ed2af05.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darla Schierbaum,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Darla Schierbaum,ou=Payroll,dc=bitwarden,dc=com", - email: "SchierbD@7b9b134496944c719de5669c91d7d638.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Delisle Wesolowski,ou=Administrative,dc=bitwarden,dc=com", - email: "WesolowD@da38cf4466c54f10aa416fd5fe880608.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Technical Ely,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Technical Ely,ou=Product Development,dc=bitwarden,dc=com", - email: "ElyT@766a422a35f14846b4f938fc382952b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Merrill Loa,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Merrill Loa,ou=Product Testing,dc=bitwarden,dc=com", - email: "LoaM@c0d54806b2fc4ad4b2d446db11ce599e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jojo Liew,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jojo Liew,ou=Human Resources,dc=bitwarden,dc=com", - email: "LiewJ@0fae6975893e4404981e1b0278fd9893.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noemi Gulko,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Noemi Gulko,ou=Janitorial,dc=bitwarden,dc=com", - email: "GulkoN@8e3480814c5a4c65afb875411a3ea9b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aurel Mullins,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Aurel Mullins,ou=Administrative,dc=bitwarden,dc=com", - email: "MullinsA@0971bdcc719c47c9919ba37996d1ed23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raine Hauck,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Raine Hauck,ou=Product Testing,dc=bitwarden,dc=com", - email: "HauckR@9aa6fa345e3b4b228034222cc7155638.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Munaz Mand,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Munaz Mand,ou=Product Development,dc=bitwarden,dc=com", - email: "MandM@ef559f52881646a99efdc2bb68264cd2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zoe Leinen,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zoe Leinen,ou=Product Development,dc=bitwarden,dc=com", - email: "LeinenZ@6c30ff46c5cd461da39b83f9603a1955.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bihari Simkin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bihari Simkin,ou=Management,dc=bitwarden,dc=com", - email: "SimkinB@a9fb1ac69f5e4418ac9d57df65ae733e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wannell Rivard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Wannell Rivard,ou=Administrative,dc=bitwarden,dc=com", - email: "RivardW@d69b98c45b46402fa345a4972b0e5bd0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adey Daquano,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Adey Daquano,ou=Payroll,dc=bitwarden,dc=com", - email: "DaquanoA@7b2fb8bfc0d04f79b6758cb3412b518b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emeline Drewes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Emeline Drewes,ou=Peons,dc=bitwarden,dc=com", - email: "DrewesE@dc5cce98288c46dd8403e25e36918671.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tuoi Shtulman,ou=Product Development,dc=bitwarden,dc=com", - email: "ShtulmaT@c18f3219cf9044e5a9cd277268cdc426.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Harrison Hoffstedder,ou=Payroll,dc=bitwarden,dc=com", - email: "HoffsteH@be2317e07ddc4fd1bc1dad5673b21da8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rayshell Dow,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rayshell Dow,ou=Administrative,dc=bitwarden,dc=com", - email: "DowR@0cd6e25a0842431cbc0dbedf086e3017.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sohayla Claggett,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sohayla Claggett,ou=Management,dc=bitwarden,dc=com", - email: "ClaggetS@cfc826bf0ddd4b75a675a0075b505fcc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jacklyn Bickford,ou=Payroll,dc=bitwarden,dc=com", - email: "BickforJ@494658ad0bff4810b3d5b5096c85b666.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Daniele Kuykendall,ou=Administrative,dc=bitwarden,dc=com", - email: "KuykendD@4c3bb131ea5148028bf43ce4a8c06b23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debora Lauzon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Debora Lauzon,ou=Human Resources,dc=bitwarden,dc=com", - email: "LauzonD@ecf37ebd8f10485fa151b2f40942afe7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Giang Saidzadeh,ou=Product Development,dc=bitwarden,dc=com", - email: "SaidzadG@8fd45f1616e84409af12cbcbd209c8d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aggi Culver,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aggi Culver,ou=Janitorial,dc=bitwarden,dc=com", - email: "CulverA@aad296bdf0c3455e889336146dbd77fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Delcine Pesold,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Delcine Pesold,ou=Management,dc=bitwarden,dc=com", - email: "PesoldD@752c449dfd0b47e48d05c032fa7b3f44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pauline Bullion,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pauline Bullion,ou=Management,dc=bitwarden,dc=com", - email: "BullionP@29d43cca18a84193868799ddbf3f9a87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tibor Belley,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tibor Belley,ou=Product Development,dc=bitwarden,dc=com", - email: "BelleyT@01d69d83f76e4ee599aaa94ccfd4bc18.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vere Cushing,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vere Cushing,ou=Management,dc=bitwarden,dc=com", - email: "CushingV@b7566f62e9e44dcd9dcaead50b2af46e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorris Joshi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dorris Joshi,ou=Administrative,dc=bitwarden,dc=com", - email: "JoshiD@a989bc4f0b1a4c80b486110777685af8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Victor Hollenbach,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Victor Hollenbach,ou=Payroll,dc=bitwarden,dc=com", - email: "HollenbV@78d24e557fdb498286a91f7c5eae2c30.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joyan Irvin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joyan Irvin,ou=Administrative,dc=bitwarden,dc=com", - email: "IrvinJ@17ea3745d5a8427d897fcb5d0d2d0c15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zoenka Ivan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Zoenka Ivan,ou=Peons,dc=bitwarden,dc=com", - email: "IvanZ@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wylo Rummans,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wylo Rummans,ou=Product Development,dc=bitwarden,dc=com", - email: "RummansW@e51ab927442b42fd83641345150b54a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tyler McKibbin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tyler McKibbin,ou=Product Development,dc=bitwarden,dc=com", - email: "McKibbiT@2ff2f928aa234ef4a8cf382c36a615f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorolice Puelma,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dorolice Puelma,ou=Payroll,dc=bitwarden,dc=com", - email: "PuelmaD@a5a8edfdd5c4429e9cf280f8b1f9e995.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anwar Mauck,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Anwar Mauck,ou=Management,dc=bitwarden,dc=com", - email: "MauckA@3abcba99c85c41ab8cf93d708c5ee721.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gillian Weihs,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gillian Weihs,ou=Payroll,dc=bitwarden,dc=com", - email: "WeihsG@48309888d14d433584a39c4104dff764.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Freddy Boase,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Freddy Boase,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoaseF@886c130365f14b6a91d107b82ed9fa8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manny Degraauw,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Manny Degraauw,ou=Payroll,dc=bitwarden,dc=com", - email: "DegraauM@e20f7f5287c745b4bb6980637b2379bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zahir Meagher,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Zahir Meagher,ou=Administrative,dc=bitwarden,dc=com", - email: "MeagherZ@e83c7fe22d2948c19d5fbcdc0bcbd551.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chiho Kowalski,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Chiho Kowalski,ou=Administrative,dc=bitwarden,dc=com", - email: "KowalskC@037b2dcc29f840fa8751d096972382fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jan Gittins,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jan Gittins,ou=Human Resources,dc=bitwarden,dc=com", - email: "GittinsJ@ba3add3fa0e5474bb8115e77e9d392b7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nalani Madsen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nalani Madsen,ou=Management,dc=bitwarden,dc=com", - email: "MadsenN@95f57db35aaf437db0b68cb389e1a35e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Casie Banerd,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Casie Banerd,ou=Human Resources,dc=bitwarden,dc=com", - email: "BanerdC@2f216938e95c4fb6a803f01467935076.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beryle Camillucci,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Beryle Camillucci,ou=Management,dc=bitwarden,dc=com", - email: "CamilluB@2c11f6a276034996a4ddc6513434ce9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lubomyr Duran,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lubomyr Duran,ou=Product Development,dc=bitwarden,dc=com", - email: "DuranL@411afe1416f249ecaeca51c1080b0066.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertruda Boyajian,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gertruda Boyajian,ou=Peons,dc=bitwarden,dc=com", - email: "BoyajiaG@29c4d99a2e804a9e9c7906925415c847.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyanna Roehl,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dyanna Roehl,ou=Payroll,dc=bitwarden,dc=com", - email: "RoehlD@0aab2eb5b2a945ccbb114c330fb9e2b8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kikelia Kember,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kikelia Kember,ou=Payroll,dc=bitwarden,dc=com", - email: "KemberK@7a95e2b863354946b5a2f7998b9af35e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yalcin Tanferna,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Yalcin Tanferna,ou=Management,dc=bitwarden,dc=com", - email: "TanfernY@7e48be8bff9a4d928095a1943ae64cc5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Justina Copello,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Justina Copello,ou=Janitorial,dc=bitwarden,dc=com", - email: "CopelloJ@7e23b8de808e4c8687b7d328cf2c1f4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bam Luin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bam Luin,ou=Administrative,dc=bitwarden,dc=com", - email: "LuinB@3714b871eeed4ef2ad7f86d04b774a06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Marguerita Wisniewski,ou=Payroll,dc=bitwarden,dc=com", - email: "WisniewM@aeb0dceac3c04d0aac41074478a4ecb3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frieda Dulaney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Frieda Dulaney,ou=Product Development,dc=bitwarden,dc=com", - email: "DulaneyF@e87afd88a7464f34a9f1cefeecf49e3d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Les Allahdin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Les Allahdin,ou=Administrative,dc=bitwarden,dc=com", - email: "AllahdiL@d3f6a0448cf246c98f76952766172afe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melek Fennessey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melek Fennessey,ou=Management,dc=bitwarden,dc=com", - email: "FennessM@0a55e98e06b6402b83131ff9ddd68552.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quon Zukosky,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Quon Zukosky,ou=Management,dc=bitwarden,dc=com", - email: "ZukoskyQ@8eaa02b53fec48d0842607d198bfec39.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andrea ONeall,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Andrea ONeall,ou=Product Testing,dc=bitwarden,dc=com", - email: "ONeallA@995d47539bff49b8a85a5ecb474bd257.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Setsuko Keck,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Setsuko Keck,ou=Janitorial,dc=bitwarden,dc=com", - email: "KeckS@4a913335a7f143d2b385347b29ca43fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruchel Borosh,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ruchel Borosh,ou=Management,dc=bitwarden,dc=com", - email: "BoroshR@a4ebc705137a4ddb9ebce3e4b095eec3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chloette Zadow,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chloette Zadow,ou=Peons,dc=bitwarden,dc=com", - email: "ZadowC@006106eb4fa5430982fa52048d307012.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarena Fothergill,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sarena Fothergill,ou=Management,dc=bitwarden,dc=com", - email: "FothergS@78e66db4daf244269be3e0f7fc49db85.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaquith Canfield,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jaquith Canfield,ou=Product Development,dc=bitwarden,dc=com", - email: "CanfielJ@ddb5a80ff9f74390b91dd39ff94d365e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darell Carrillo,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Darell Carrillo,ou=Human Resources,dc=bitwarden,dc=com", - email: "CarrillD@3dc91dfe6410493ba2012f554bea81e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Malgosia Beilin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Malgosia Beilin,ou=Product Development,dc=bitwarden,dc=com", - email: "BeilinM@73769e96fc584ccd856adcc4d5fe88ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bekki Kensinger,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bekki Kensinger,ou=Payroll,dc=bitwarden,dc=com", - email: "KensingB@30ca0b4b2c6d4aff9d3ac9b5f46982e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benny Stahl,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Benny Stahl,ou=Administrative,dc=bitwarden,dc=com", - email: "StahlB@6e645f68154e4e0a9f217d10cb782190.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonja Blake,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sonja Blake,ou=Management,dc=bitwarden,dc=com", - email: "BlakeS@9b3c4690331a4a13a5aeb576bf120640.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corny Cowick,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Corny Cowick,ou=Administrative,dc=bitwarden,dc=com", - email: "CowickC@50a85f24c25d40e8a8c71e34d2304607.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibelle McAlister,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sibelle McAlister,ou=Peons,dc=bitwarden,dc=com", - email: "McAlistS@b9847a93402b4d7e9eab2f6967e34b51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Miguelita Gerstmar,ou=Human Resources,dc=bitwarden,dc=com", - email: "GerstmaM@0fe89eeff7dc4fc1a0f74df0bfbf040f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kunitaka Diogo,ou=Administrative,dc=bitwarden,dc=com", - email: "DiogoK@c81d6e524d4f4e8ab4225b79b67ec3c9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Eachelle Bushell,ou=Product Testing,dc=bitwarden,dc=com", - email: "BushellE@efceed6ce89d4aafb2a3074dc0a7dcbd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vicuong Zadeh,ou=Payroll,dc=bitwarden,dc=com", - email: "ZadehV@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Souza Deininger,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Souza Deininger,ou=Product Development,dc=bitwarden,dc=com", - email: "DeiningS@b140b76ec6b34c518f0c06eda43db13e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beata Surray,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Beata Surray,ou=Payroll,dc=bitwarden,dc=com", - email: "SurrayB@344ac38ed8f246e1aa4a5cafeb824a1c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Betsy Bergman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Betsy Bergman,ou=Human Resources,dc=bitwarden,dc=com", - email: "BergmanB@312a6c96857e41e898ce218801eab796.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cheryl Deibert,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cheryl Deibert,ou=Peons,dc=bitwarden,dc=com", - email: "DeibertC@6dfd976d46114be489d1c70dd10e11f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darrel Bottoms,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Darrel Bottoms,ou=Payroll,dc=bitwarden,dc=com", - email: "BottomsD@dcbfb0982f2b4bb7bdf60b8f61c36502.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cathal Ahdieh,ou=Human Resources,dc=bitwarden,dc=com", - email: "AhdiehC@b0c6b060c84743b6a9eb5943601ed7e1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cissiee Gostanian,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cissiee Gostanian,ou=Peons,dc=bitwarden,dc=com", - email: "GostaniC@6a7058ac13d642658b7f7adc5e875217.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Portia Beecker,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Portia Beecker,ou=Payroll,dc=bitwarden,dc=com", - email: "BeeckerP@74754781579f4c4bbee5126ecca3cdbe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Harrietta Saberi,ou=Product Testing,dc=bitwarden,dc=com", - email: "SaberiH@08dc96d6e1284f068d1587b61ddbfede.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alli AbouEzze,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Alli AbouEzze,ou=Payroll,dc=bitwarden,dc=com", - email: "AbouEzzA@3cd269b5d58f4f4392c1d0f7bebb70ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kirk Cuddihey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kirk Cuddihey,ou=Peons,dc=bitwarden,dc=com", - email: "CuddiheK@aa98e19fc6664718bf16b34c3c3283c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChoonLin Marneris,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=ChoonLin Marneris,ou=Peons,dc=bitwarden,dc=com", - email: "MarneriC@d0765271186d48a4a72bafc8ed84bb23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dulcine Friedl,ou=Product Testing,dc=bitwarden,dc=com", - email: "FriedlD@b39319cd8660409ab6d3b20577474e4a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davida Milakovic,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Davida Milakovic,ou=Payroll,dc=bitwarden,dc=com", - email: "MilakovD@a2a1aaecee264ed8a87e3f468f4aa26b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janela Bennison,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Janela Bennison,ou=Human Resources,dc=bitwarden,dc=com", - email: "BennisoJ@e1d5f9e67dcb4da6918e282801f19d33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hermann VieillardBaron,ou=Human Resources,dc=bitwarden,dc=com", - email: "VieillaH@aa27b3d0b2304f6aa579ad064be338d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zorine Records,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Zorine Records,ou=Peons,dc=bitwarden,dc=com", - email: "RecordsZ@4b233d8ae0e140eb95be281f6d1b2b93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maurene Logarajah,ou=Janitorial,dc=bitwarden,dc=com", - email: "LogarajM@bf118e8244174e9f89af2ea2f2fc47ac.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashleigh Ligon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ashleigh Ligon,ou=Management,dc=bitwarden,dc=com", - email: "LigonA@3fec2785d837452b919cb6ba8975932d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nelly Kerns,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nelly Kerns,ou=Human Resources,dc=bitwarden,dc=com", - email: "KernsN@25d13e46c21f42c88f458b84e9f2035e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chicky Domine,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chicky Domine,ou=Peons,dc=bitwarden,dc=com", - email: "DomineC@2d496c580b4f4816a656973b9003a612.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Woon Morrin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Woon Morrin,ou=Human Resources,dc=bitwarden,dc=com", - email: "MorrinW@cabd0c89a78947b69a999dc093307343.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tedra Shwed,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tedra Shwed,ou=Product Development,dc=bitwarden,dc=com", - email: "ShwedT@ce09eff4e27d456d8a017939b41c80b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wallis Whitfill,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wallis Whitfill,ou=Product Development,dc=bitwarden,dc=com", - email: "WhitfilW@9e756b675bb74e34850e55cc8a973979.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Torey Tropea,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Torey Tropea,ou=Janitorial,dc=bitwarden,dc=com", - email: "TropeaT@358baf59282c4aecb9c88b92eb26205b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Israel Ginest,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Israel Ginest,ou=Janitorial,dc=bitwarden,dc=com", - email: "GinestI@f4cac90289b44dc28b9de765747f5a7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yoko Honda,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yoko Honda,ou=Peons,dc=bitwarden,dc=com", - email: "HondaY@06a1126691e242c186fd659978ae6b78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Farzin Herlihy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Farzin Herlihy,ou=Peons,dc=bitwarden,dc=com", - email: "HerlihyF@698fc42a217d4dcab9ecca9924295e3b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tabbatha DidioDuggan,ou=Human Resources,dc=bitwarden,dc=com", - email: "DidioDuT@72b8934ece8a4ceaba3014bcfcb801ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Annadiana Levesque,ou=Product Testing,dc=bitwarden,dc=com", - email: "LevesquA@2ca3e374401a4254833b5cbf4d34e968.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Benny Ratnam,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Benny Ratnam,ou=Product Development,dc=bitwarden,dc=com", - email: "RatnamB@93731e13c9e64512a53eb35ade181e8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reeba Pape,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reeba Pape,ou=Peons,dc=bitwarden,dc=com", - email: "PapeR@e242cd7509b945bca8984d07e1fb1255.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashu Kohn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ashu Kohn,ou=Administrative,dc=bitwarden,dc=com", - email: "KohnA@123c99e30f8149cea0d20a1c6360de45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liese McCombs,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Liese McCombs,ou=Peons,dc=bitwarden,dc=com", - email: "McCombsL@2c70fd3949e449ad8507d71fe0d63056.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pinecrest Sonoda,ou=Product Development,dc=bitwarden,dc=com", - email: "SonodaP@a8d52d2b633f41a2be5b6bf6015e6a0d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lissa Cromwell,ou=Human Resources,dc=bitwarden,dc=com", - email: "CromwelL@a83f5faad57246c68e39925cbe706599.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hsieh Networkroom,ou=Human Resources,dc=bitwarden,dc=com", - email: "NetworkH@df3533ea43b14b7e966113cda7d50713.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blinny Zanet,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Blinny Zanet,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZanetB@5398775f17574785a44a78e1afa74d02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sanjay Themann,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sanjay Themann,ou=Product Development,dc=bitwarden,dc=com", - email: "ThemannS@e47694cd8b2a43baba9d3f4d0bafb719.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vijay Shorgan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vijay Shorgan,ou=Administrative,dc=bitwarden,dc=com", - email: "ShorganV@49ae34cdf8be4b8eb94f1974e6e81833.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duncan Kiang,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Duncan Kiang,ou=Payroll,dc=bitwarden,dc=com", - email: "KiangD@9d026b334a7143518a4125ed6fc356b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Hyacintha Dasrath,ou=Human Resources,dc=bitwarden,dc=com", - email: "DasrathH@d8a78b973a604a4db5c0fb6b07f89e44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liliane Chima,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Liliane Chima,ou=Payroll,dc=bitwarden,dc=com", - email: "ChimaL@25e73f953c4a41e5afd2d99582d35572.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khai Diradmin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Khai Diradmin,ou=Payroll,dc=bitwarden,dc=com", - email: "DiradmiK@cd3e8f43f0dd4d3fb94f3baba8d46ade.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kanya Hengeveld,ou=Product Development,dc=bitwarden,dc=com", - email: "HengeveK@009b48ec99e641a9b127fbabb87ff147.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Burton Deans,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Burton Deans,ou=Janitorial,dc=bitwarden,dc=com", - email: "DeansB@11066945925d4920b7876e8ee0d7adc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jeff Timesheet,ou=Product Testing,dc=bitwarden,dc=com", - email: "TimesheJ@fb0a3750df834bc493046b175453d58f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elly Kubash,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Elly Kubash,ou=Product Testing,dc=bitwarden,dc=com", - email: "KubashE@b0361fa8905e48acad0bbc69c1da25d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ashlee Mazanji,ou=Product Development,dc=bitwarden,dc=com", - email: "MazanjiA@965eaa64d55b462eb17422051f0b66a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tallou Gothard,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tallou Gothard,ou=Administrative,dc=bitwarden,dc=com", - email: "GothardT@f6c4a9fff2af4eafbf743b05d6249663.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melinie Chiabaut,ou=Janitorial,dc=bitwarden,dc=com", - email: "ChiabauM@f273a190f14545708d6c984111d46055.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ofilia Choptovy,ou=Payroll,dc=bitwarden,dc=com", - email: "ChoptovO@77df1d4a30ab443892398806ba3c7576.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Perry Schmitz,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Perry Schmitz,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchmitzP@68995b01422d4fac85d1f7b91ec07a75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avinash Finn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Avinash Finn,ou=Janitorial,dc=bitwarden,dc=com", - email: "FinnA@2ab1da0352f24de2973c7264573c59be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marabel Hippert,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marabel Hippert,ou=Human Resources,dc=bitwarden,dc=com", - email: "HippertM@ebcad067bfb54e2996e22c6d3ae46310.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klazina Desharnais,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Klazina Desharnais,ou=Peons,dc=bitwarden,dc=com", - email: "DesharnK@89540e87cb364fefaa3b2a5074215102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ursala Vezeau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ursala Vezeau,ou=Payroll,dc=bitwarden,dc=com", - email: "VezeauU@61391b1e27a64c79ad40798665590378.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Muffin Atteridge,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Muffin Atteridge,ou=Product Development,dc=bitwarden,dc=com", - email: "AtteridM@6ff512afd6074ffb8be89092e99d3615.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanya Marcoux,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vanya Marcoux,ou=Management,dc=bitwarden,dc=com", - email: "MarcouxV@dbdefa82bd204e5ab1e6a5b8f9bbc438.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mercy Nakano,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mercy Nakano,ou=Product Testing,dc=bitwarden,dc=com", - email: "NakanoM@f1c1878671bd497c916d8d6aa3e192fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sue Sugarbroad,ou=Product Development,dc=bitwarden,dc=com", - email: "SugarbrS@ab3309e246f140c79e997dde5ccb290c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlina Weaver,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Arlina Weaver,ou=Janitorial,dc=bitwarden,dc=com", - email: "WeaverA@5cb368696cd247eea76178d9b0f44b81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Seven Okon,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Seven Okon,ou=Product Testing,dc=bitwarden,dc=com", - email: "OkonS@9da8707f84d94fc6a64c7ccfeaa1b78b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ronn Ciccarelli,ou=Administrative,dc=bitwarden,dc=com", - email: "CiccareR@af9b2025e2d4428a825c1c465719ccc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Liliane Gurer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Liliane Gurer,ou=Human Resources,dc=bitwarden,dc=com", - email: "GurerL@06929a8dcdce40d387113e867b6564b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HonKong Salem,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=HonKong Salem,ou=Human Resources,dc=bitwarden,dc=com", - email: "SalemH@a3f5c91e6cdf46d98f250a62d67415ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Rosalia Mansourati,ou=Janitorial,dc=bitwarden,dc=com", - email: "MansourR@e64b8dfa86634e858dc40a565c229607.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glynnis Daniells,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Glynnis Daniells,ou=Management,dc=bitwarden,dc=com", - email: "DaniellG@547fa50227684350b1f92837929bd166.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Edwin SteMarie,ou=Janitorial,dc=bitwarden,dc=com", - email: "SteMariE@5128133359594cd18d137c259ecf1184.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miran McKeone,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Miran McKeone,ou=Product Testing,dc=bitwarden,dc=com", - email: "McKeoneM@be56d01786b846e3aa64454147150e23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dion Polulack,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dion Polulack,ou=Administrative,dc=bitwarden,dc=com", - email: "PolulacD@f16622b7ff924769aa0068b59c0fb51e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hartley Busch,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hartley Busch,ou=Product Testing,dc=bitwarden,dc=com", - email: "BuschH@c7a27fd01c1647d28de4dfcfed9b1184.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gusella Popper,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gusella Popper,ou=Human Resources,dc=bitwarden,dc=com", - email: "PopperG@903b76c810774286bddac3a5a25eb6b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wits Stutts,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wits Stutts,ou=Human Resources,dc=bitwarden,dc=com", - email: "StuttsW@010ac2dbb4cb4b37b616090dd6b67211.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Afzal Rusch,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Afzal Rusch,ou=Peons,dc=bitwarden,dc=com", - email: "RuschA@133bae8b2a2c42388199fc3fdfad66b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karon McBrayne,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Karon McBrayne,ou=Human Resources,dc=bitwarden,dc=com", - email: "McBraynK@42caf052c7364166a6c614169e68423b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Judy Homa,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Judy Homa,ou=Payroll,dc=bitwarden,dc=com", - email: "HomaJ@6c01a66d03344b0191d673589f5b3f4d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tarik Tester,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tarik Tester,ou=Administrative,dc=bitwarden,dc=com", - email: "TesterT@392b60a69449497fa8daa89cef186b78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carole Suykens,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carole Suykens,ou=Administrative,dc=bitwarden,dc=com", - email: "SuykensC@b7faf436ed93412c95576fc8c712f2d1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nuri DiRienzo,ou=Payroll,dc=bitwarden,dc=com", - email: "DiRienzN@b7e74d1e3c394a0f8846f3f4c8d34c1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saman Koverzin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Saman Koverzin,ou=Payroll,dc=bitwarden,dc=com", - email: "KoverziS@e5b88a23fe674951aa785e5f9a7ff849.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaushik Reid,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kaushik Reid,ou=Product Development,dc=bitwarden,dc=com", - email: "ReidK@496d582fba1f48fead6391e894698c13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eastreg Buchan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eastreg Buchan,ou=Administrative,dc=bitwarden,dc=com", - email: "BuchanE@7b1a03c5445247ebb52034bf84aa1aeb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kevyn Yu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kevyn Yu,ou=Management,dc=bitwarden,dc=com", - email: "YuK@50db0b06f7084e4cb9a7af7a31c89f8b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Violante Chaurasia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Violante Chaurasia,ou=Product Development,dc=bitwarden,dc=com", - email: "ChaurasV@570b2a8b45094bdbb019684431d6e2af.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cybill Fragnito,ou=Human Resources,dc=bitwarden,dc=com", - email: "FragnitC@90c585b5539b419a977fd9fb6fa21443.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ellen Wetzel,ou=Janitorial,dc=bitwarden,dc=com", - email: "WetzelE@4799a5d41e8c4e5b8470199b8def37d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cynde ParrishBell,ou=Human Resources,dc=bitwarden,dc=com", - email: "ParrishC@73a2643f141f47ddba7cb51ba2c3a7f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franklin Landry,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Franklin Landry,ou=Janitorial,dc=bitwarden,dc=com", - email: "LandryF@197bef16e6cb42f3bbfedc909bc4a49d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rejean Hartsell,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Rejean Hartsell,ou=Payroll,dc=bitwarden,dc=com", - email: "HartselR@86262c8a96f6428ca6c85ec378671d82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dyane Schlachter,ou=Human Resources,dc=bitwarden,dc=com", - email: "SchlachD@584af194d9e84647b332e4629d64528d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Crista Reece,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Crista Reece,ou=Product Development,dc=bitwarden,dc=com", - email: "ReeceC@68504e0f13984c8c9f4e31aa33c193c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Apryle Briard,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Apryle Briard,ou=Management,dc=bitwarden,dc=com", - email: "BriardA@c72f77d8df544dfda8a24066a5992ad2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joni Netas,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Joni Netas,ou=Management,dc=bitwarden,dc=com", - email: "NetasJ@35a1311d06994f1e8d741b9b47461442.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicola Hensen,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nicola Hensen,ou=Product Testing,dc=bitwarden,dc=com", - email: "HensenN@9a2d48dfe13f43e0a7df082cbd40535c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jagjeet Orol,ou=Product Testing,dc=bitwarden,dc=com", - email: "OrolJ@d0cc080dcb974f719dfa65f1932864b3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bruce Galasso,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Bruce Galasso,ou=Human Resources,dc=bitwarden,dc=com", - email: "GalassoB@6d93f84a8aef4b70975e9d9fd01027a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sabah Balkissoon,ou=Product Development,dc=bitwarden,dc=com", - email: "BalkissS@81a2fc82bdcd4a3582b8aa6d409fc9a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margeaux Chunn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Margeaux Chunn,ou=Administrative,dc=bitwarden,dc=com", - email: "ChunnM@47a09a57ddfd44dea0c2830e2bbbf9fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Long Esry,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Long Esry,ou=Management,dc=bitwarden,dc=com", - email: "EsryL@290c8e7e8138440babe5064ce0d66502.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lynette Brearley,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lynette Brearley,ou=Janitorial,dc=bitwarden,dc=com", - email: "BrearleL@428ea86de0d24cc293fcc0e69c36a51d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Birdie Cawley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Birdie Cawley,ou=Human Resources,dc=bitwarden,dc=com", - email: "CawleyB@308ad8d2df924e23912f5ff5c482654c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Demetria Borojevic,ou=Janitorial,dc=bitwarden,dc=com", - email: "BorojevD@0534f193dc3e49e39af35f74a2ae824e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deana MacNeill,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Deana MacNeill,ou=Payroll,dc=bitwarden,dc=com", - email: "MacNeilD@8a2e8c6a93cc4c9691c29760f92509c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Afton Tanner,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Afton Tanner,ou=Human Resources,dc=bitwarden,dc=com", - email: "TannerA@dea0182c9b1748ab8a8a0767e4b98659.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sherwyn Dorr,ou=Human Resources,dc=bitwarden,dc=com", - email: "DorrS@324b0826345f41f396413f010ceddf84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nananne Sheffey,ou=Janitorial,dc=bitwarden,dc=com", - email: "SheffeyN@b699e66369ae440b80fffe24208900a7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JooEuin Peters,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=JooEuin Peters,ou=Human Resources,dc=bitwarden,dc=com", - email: "PetersJ@b798af896e7f46128e34697b90918aeb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jordan Normandin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jordan Normandin,ou=Administrative,dc=bitwarden,dc=com", - email: "NormandJ@5888a61aa6564f429dd2584910d49491.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Phyllys Glasa,ou=Product Testing,dc=bitwarden,dc=com", - email: "GlasaP@4504d7b5d7bb4c7c81665aefd8680fbc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brynna Swanston,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brynna Swanston,ou=Payroll,dc=bitwarden,dc=com", - email: "SwanstoB@273b97d9d3ef49d78a58814ba63e226c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anneliese Bellosa,ou=Product Development,dc=bitwarden,dc=com", - email: "BellosaA@0ccb74ac9fed4f0683751fbda4136efb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saumitra Svo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Saumitra Svo,ou=Product Development,dc=bitwarden,dc=com", - email: "SvoS@1bf120076f9247a7ab75ce12810b0f67.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Modestia Hersee,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Modestia Hersee,ou=Administrative,dc=bitwarden,dc=com", - email: "HerseeM@f939ac2258864217974ae2ea0b8d8a27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gretna Ergle,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gretna Ergle,ou=Product Development,dc=bitwarden,dc=com", - email: "ErgleG@71d3829da9684452bc0895ff673e8847.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gary Denmark,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gary Denmark,ou=Payroll,dc=bitwarden,dc=com", - email: "DenmarkG@07b1787368a34e789ce994f0c32f4345.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fei Isert,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fei Isert,ou=Janitorial,dc=bitwarden,dc=com", - email: "IsertF@9e756b675bb74e34850e55cc8a973979.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Babbette Einarsson,ou=Product Testing,dc=bitwarden,dc=com", - email: "EinarssB@7ce0aeed71954a9186228a48b133b9f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nomi Deatrick,ou=Human Resources,dc=bitwarden,dc=com", - email: "DeatricN@d9c35c3dbb1b4cc08294fcf741816060.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Hiroshi Amouzgar,ou=Peons,dc=bitwarden,dc=com", - email: "AmouzgaH@c0bb112b79244d4d83013bcf4b7051b1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Bernadine Mcilroy,ou=Janitorial,dc=bitwarden,dc=com", - email: "McilroyB@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Armand Bebber,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Armand Bebber,ou=Management,dc=bitwarden,dc=com", - email: "BebberA@b02e51a832a2451eb62f542aaa4c12e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Virgina Kahnert,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Virgina Kahnert,ou=Management,dc=bitwarden,dc=com", - email: "KahnertV@6b4a8c4f12054500898abbcc69fbe20c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antoni Vickers,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Antoni Vickers,ou=Management,dc=bitwarden,dc=com", - email: "VickersA@a33324bfbeba45c9aed68650670aad46.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dan Telos,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dan Telos,ou=Payroll,dc=bitwarden,dc=com", - email: "TelosD@6a38182664754d55b0af48acc18ccf15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Georgianne Boecke,ou=Human Resources,dc=bitwarden,dc=com", - email: "BoeckeG@0d39953bed12477b8b2344944beb0598.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rory Chan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rory Chan,ou=Administrative,dc=bitwarden,dc=com", - email: "ChanR@eb68be01f6024473a2ca0fe1f0709934.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Juergen Maisonneuve,ou=Payroll,dc=bitwarden,dc=com", - email: "MaisonnJ@ce606f959aaf4b37a3890f8fbd9f2472.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gertrude Senyshyn,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gertrude Senyshyn,ou=Management,dc=bitwarden,dc=com", - email: "SenyshyG@566e3f43810e4586a805d84cd5a87397.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Missagh Yeh,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Missagh Yeh,ou=Product Development,dc=bitwarden,dc=com", - email: "YehM@5c913aa699ee49ff8e754a7b748977ab.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Minnie MacDermaid,ou=Janitorial,dc=bitwarden,dc=com", - email: "MacDermM@02ce75bcb8d0491f899a2b936126cb22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Cristiane Lizzi,ou=Janitorial,dc=bitwarden,dc=com", - email: "LizziC@9b989160bc6d49579fbfc8f1e85ccc6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morganica Ashdown,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Morganica Ashdown,ou=Management,dc=bitwarden,dc=com", - email: "AshdownM@44d25c0f3b3b4712b7ef7271475275d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joey Moore,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joey Moore,ou=Peons,dc=bitwarden,dc=com", - email: "MooreJ@f4a421d551d64acc80985f5e163c5415.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rheta Knobloch,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rheta Knobloch,ou=Peons,dc=bitwarden,dc=com", - email: "KnoblocR@b3d11e6744594feeb414ee01bf2eac98.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tesfagaber Kahhale,ou=Product Development,dc=bitwarden,dc=com", - email: "KahhaleT@cdb0fe3e0f824a939a4b634a9bb22bea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Far Shupe,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Far Shupe,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShupeF@0f19fa3cc3984923830c48638164b69b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noni Pauley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Noni Pauley,ou=Human Resources,dc=bitwarden,dc=com", - email: "PauleyN@af48941e4bc546738283cbae39bf8e38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hera Eike,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hera Eike,ou=Product Testing,dc=bitwarden,dc=com", - email: "EikeH@b2858eb0b0d9449ea4214ead55b1e6d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisa Peacemaker,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melisa Peacemaker,ou=Management,dc=bitwarden,dc=com", - email: "PeacemaM@7ae74f35c1ca49719017f2b0cacc9b3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wylo Woodley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Wylo Woodley,ou=Management,dc=bitwarden,dc=com", - email: "WoodleyW@c870d166444a452b9465ab41e64ba24a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Collette Quevillon,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Collette Quevillon,ou=Human Resources,dc=bitwarden,dc=com", - email: "QuevillC@d8ade951537b40409f7045af7b027387.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Shivdarsan Sunderland,ou=Payroll,dc=bitwarden,dc=com", - email: "SunderlS@fc6e03b5bcc94a1489d08dba2fb3849a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dayna Kosasih,ou=Product Testing,dc=bitwarden,dc=com", - email: "KosasihD@93e4f4c832eb40f5b256fbdf877ac624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Renelle Ducic,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Renelle Ducic,ou=Product Testing,dc=bitwarden,dc=com", - email: "DucicR@c89844059bb741f7bb88e4d7fb7f5f87.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Helenka Radovnikovic,ou=Payroll,dc=bitwarden,dc=com", - email: "RadovniH@2d6d6884b9df4e34bfb750fc0fb4ded8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Leena Reijerkerk,ou=Administrative,dc=bitwarden,dc=com", - email: "ReijerkL@90d54f4b4d2148b9997acd126c19b85a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ruperta Guilford,ou=Human Resources,dc=bitwarden,dc=com", - email: "GuilforR@e92792a71a1b4fd28678d03900079ed2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailis Gabe,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ailis Gabe,ou=Human Resources,dc=bitwarden,dc=com", - email: "GabeA@98e41c371f0d4b46ba5631dcb9af482e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Selena Sanoy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Selena Sanoy,ou=Human Resources,dc=bitwarden,dc=com", - email: "SanoyS@05f7379ac7b945a2a2343b19ee63fd8a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Electra Hassold,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Electra Hassold,ou=Administrative,dc=bitwarden,dc=com", - email: "HassoldE@159b400ec7df422e9066036fd18c450c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terry Johnston,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Terry Johnston,ou=Janitorial,dc=bitwarden,dc=com", - email: "JohnstoT@d37e812441464f08ac2750e113db6273.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franny Towill,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Franny Towill,ou=Product Development,dc=bitwarden,dc=com", - email: "TowillF@08eacc9f081b46aa9b5cc2682b8df342.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jacqueline Godowsky,ou=Human Resources,dc=bitwarden,dc=com", - email: "GodowskJ@d5d81ed9dfd74923bfc76f6eb5eeb481.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Guanyun Satkunaseelan,ou=Janitorial,dc=bitwarden,dc=com", - email: "SatkunaG@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Duquette Pratt,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Duquette Pratt,ou=Payroll,dc=bitwarden,dc=com", - email: "PrattD@95581eb6a8bb49808363d11bfe34de80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chelsy Aderhold,ou=Human Resources,dc=bitwarden,dc=com", - email: "AderholC@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alb Hussein,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alb Hussein,ou=Administrative,dc=bitwarden,dc=com", - email: "HusseinA@cd959caf747140188faf96b58d108003.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sam Ference,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sam Ference,ou=Product Testing,dc=bitwarden,dc=com", - email: "FerenceS@80b32d7e2c334eb6876146c942d4c564.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yukinobu Riebl,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Yukinobu Riebl,ou=Peons,dc=bitwarden,dc=com", - email: "RieblY@72030161dcd24217be14766e527d14fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tarus Hillard,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tarus Hillard,ou=Product Development,dc=bitwarden,dc=com", - email: "HillardT@a80cec7586b34ab8b14925cae24221e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ramonda Lott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ramonda Lott,ou=Human Resources,dc=bitwarden,dc=com", - email: "LottR@9092ac0216724776b99f389469a93c29.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jen EhningerCuervo,ou=Payroll,dc=bitwarden,dc=com", - email: "EhningeJ@098e681e17464ddaaa4b5aa6ff614551.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anitra Arora,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Anitra Arora,ou=Payroll,dc=bitwarden,dc=com", - email: "AroraA@f42de10624ae405d913d9b34565ffc09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Natalee Tousignant,ou=Product Testing,dc=bitwarden,dc=com", - email: "TousignN@abb5d6aab45f41aea925c272cfd268d5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sonja Tohama,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Sonja Tohama,ou=Peons,dc=bitwarden,dc=com", - email: "TohamaS@c3ea2e07159b4059b3afc3ddc88034c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rycca Bloemker,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rycca Bloemker,ou=Administrative,dc=bitwarden,dc=com", - email: "BloemkeR@cdfacd88fafe4ba8970bb7d5170496d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joydeep Elledge,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Joydeep Elledge,ou=Peons,dc=bitwarden,dc=com", - email: "ElledgeJ@5f4045bbd5c44c0b997bde75dafd864c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sorcha Umetsu,ou=Administrative,dc=bitwarden,dc=com", - email: "UmetsuS@913917cd10c1410fb1c6287add8a017a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silvie Nevardauskis,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Silvie Nevardauskis,ou=Management,dc=bitwarden,dc=com", - email: "NevardaS@0f20bc491a46484db42d8b650f7e698d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ilene Curnow,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ilene Curnow,ou=Product Development,dc=bitwarden,dc=com", - email: "CurnowI@ec8a28f7df2f4b4a9a8f12cccd975869.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailee Sudbey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ailee Sudbey,ou=Management,dc=bitwarden,dc=com", - email: "SudbeyA@953969dd8e824fa6843e718cd3751626.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maarten Mejia,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Maarten Mejia,ou=Administrative,dc=bitwarden,dc=com", - email: "MejiaM@ba4cd38fdb404f248c82c6d86153d0e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PierreAndre Abbate,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=PierreAndre Abbate,ou=Peons,dc=bitwarden,dc=com", - email: "AbbateP@e829f5514a744ac481d8e38b9e01fd23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kizzie Adey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kizzie Adey,ou=Product Development,dc=bitwarden,dc=com", - email: "AdeyK@aa04f1225a3142f7b6d7d981c171a9da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Krystn Skerlak,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Krystn Skerlak,ou=Administrative,dc=bitwarden,dc=com", - email: "SkerlakK@fc85f8e4436a4774ae1c7ec792457997.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Bosiljka Braginetz,ou=Administrative,dc=bitwarden,dc=com", - email: "BragineB@2674a7c4cfa741269519e72fdf975394.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kailey Southon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kailey Southon,ou=Administrative,dc=bitwarden,dc=com", - email: "SouthonK@1bc81f639d7b4a75a6776b919ea7ed35.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PohSoon Corpening,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=PohSoon Corpening,ou=Payroll,dc=bitwarden,dc=com", - email: "CorpeniP@cb8c25a6f9d34eadb38ab3240d4f1b15.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cissy Systest,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cissy Systest,ou=Management,dc=bitwarden,dc=com", - email: "SystestC@96705dd7d66249d08ee808bb87068456.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ailee Garry,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ailee Garry,ou=Human Resources,dc=bitwarden,dc=com", - email: "GarryA@e8711dcc34d6494b9af82b382ecdea7d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juliet Goyal,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Juliet Goyal,ou=Product Testing,dc=bitwarden,dc=com", - email: "GoyalJ@85b2024b914940b3b4bc6a5df6e6c822.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gleda Carldata,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gleda Carldata,ou=Payroll,dc=bitwarden,dc=com", - email: "CarldatG@d3dde27c79fa4d44b1067ad9050251e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elane Latour,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Elane Latour,ou=Human Resources,dc=bitwarden,dc=com", - email: "LatourE@bf0924ca7ffa40efa64182b434d3b054.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Matt Sharman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Matt Sharman,ou=Peons,dc=bitwarden,dc=com", - email: "SharmanM@8455fc0dd08e47d9b5acf4e37eea1485.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Aparna Lauriston,ou=Human Resources,dc=bitwarden,dc=com", - email: "LauristA@13ff1430cb9943818286488abb33cd82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shelley Shamblin,ou=Product Testing,dc=bitwarden,dc=com", - email: "ShambliS@7a1388ca21ac40f49e6770963202dbc7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Violante Moomey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Violante Moomey,ou=Payroll,dc=bitwarden,dc=com", - email: "MoomeyV@c26335dd55544c05ae4c2fc1f3eeffc9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valery Howell,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Valery Howell,ou=Management,dc=bitwarden,dc=com", - email: "HowellV@55ccff73a37c4e769e4ec261e5ec528f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorri Fontanini,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lorri Fontanini,ou=Administrative,dc=bitwarden,dc=com", - email: "FontaniL@364738d989114590842291a79ecffd92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Frieda Daigneault,ou=Human Resources,dc=bitwarden,dc=com", - email: "DaigneaF@601752671ede409e9d90ea7a410ff21e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shandee Bnrlsi,ou=Janitorial,dc=bitwarden,dc=com", - email: "BnrlsiS@a978666c2277497faaff3d19bd9575e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Odelia Squizzato,ou=Human Resources,dc=bitwarden,dc=com", - email: "SquizzaO@556b8709dd59455493d3a037cd03b5fa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ivette Frantz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ivette Frantz,ou=Payroll,dc=bitwarden,dc=com", - email: "FrantzI@227e9dcb4d704b41905c31488cb1af6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cyndie Mohideen,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cyndie Mohideen,ou=Management,dc=bitwarden,dc=com", - email: "MohideeC@f721dbef06364385bb5bd030d8447566.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Hyacinthie Hurwitz,ou=Administrative,dc=bitwarden,dc=com", - email: "HurwitzH@f7fa81d9317e47ad8fbf83696ed935e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ardine Grimm,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ardine Grimm,ou=Peons,dc=bitwarden,dc=com", - email: "GrimmA@697132edecc44b08a924e05590de1c19.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raine Capps,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Raine Capps,ou=Human Resources,dc=bitwarden,dc=com", - email: "CappsR@d71da34df9024aaf8ef124f781734513.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=JeanDenis Govindarajan,ou=Administrative,dc=bitwarden,dc=com", - email: "GovindaJ@77dbd1cf021243c180e2be10461d9b3a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Skyler Khurana,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Skyler Khurana,ou=Administrative,dc=bitwarden,dc=com", - email: "KhuranaS@4160dbb07b29483d98d27e9c15a9e3bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Roxana Beaudin,ou=Human Resources,dc=bitwarden,dc=com", - email: "BeaudinR@668a7be7467f426eaa481fcc0af0008d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ninon Pillsworth,ou=Human Resources,dc=bitwarden,dc=com", - email: "PillswoN@f405e19c939b4c39b75ae97a81e5cb24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kris Warfel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kris Warfel,ou=Management,dc=bitwarden,dc=com", - email: "WarfelK@a58f1d89c8df4bb585be88ea46688614.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Johnny Moorcroft,ou=Administrative,dc=bitwarden,dc=com", - email: "MoorcroJ@fb51e4746fc04473a7bebe9c1a3d6645.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruby Stansbury,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ruby Stansbury,ou=Administrative,dc=bitwarden,dc=com", - email: "StansbuR@6fae91be06034397b93a1b498797d995.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=John Seery,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=John Seery,ou=Peons,dc=bitwarden,dc=com", - email: "SeeryJ@325b607b73d843cb9936d27aa4bfeb13.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kusum Delbrouck,ou=Janitorial,dc=bitwarden,dc=com", - email: "DelbrouK@21813dd069254b74bf250b7db15a806f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Callida Boarder,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Callida Boarder,ou=Product Development,dc=bitwarden,dc=com", - email: "BoarderC@4eab057e70644dff8f3d5ac041be0877.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rona Cosgrove,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rona Cosgrove,ou=Management,dc=bitwarden,dc=com", - email: "CosgrovR@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tasia Anchia,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tasia Anchia,ou=Human Resources,dc=bitwarden,dc=com", - email: "AnchiaT@97f0443039a24a91b1a9cfbdf5ae8e1e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ashleigh Pedneault,ou=Administrative,dc=bitwarden,dc=com", - email: "PedneauA@de05663cc1c445b9849ee8fab2914551.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wallis Barentsen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Wallis Barentsen,ou=Administrative,dc=bitwarden,dc=com", - email: "BarentsW@e7ccdd1bfef645b2bd049371304c664c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fan Cranston,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Fan Cranston,ou=Product Testing,dc=bitwarden,dc=com", - email: "CranstoF@d7689b7c727b40419f38fdc39c4261e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Helen Hyde,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Helen Hyde,ou=Janitorial,dc=bitwarden,dc=com", - email: "HydeH@e8907f80592d493daf791f32c2949815.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raeann OKarina,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Raeann OKarina,ou=Product Development,dc=bitwarden,dc=com", - email: "OKarinaR@c659efb530134031a977821791781191.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Felicity Kinoshita,ou=Administrative,dc=bitwarden,dc=com", - email: "KinoshiF@42e197c00c4e41749aff9f9665181f54.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olga Magee,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Olga Magee,ou=Product Development,dc=bitwarden,dc=com", - email: "MageeO@e9aa0388b0974f709cc43e6d5c1d4048.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibel Munter,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sibel Munter,ou=Janitorial,dc=bitwarden,dc=com", - email: "MunterS@85cf93c1a5be4b4aba8d72ecb1e88b93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmella Pillars,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Carmella Pillars,ou=Administrative,dc=bitwarden,dc=com", - email: "PillarsC@c928e664ca344d17b905e23403ffeabf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shafiq Kotyk,ou=Product Development,dc=bitwarden,dc=com", - email: "KotykS@4ef93a5243aa4272a03cee0beaecc3a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=ThanhQuoc Behroozi,ou=Product Development,dc=bitwarden,dc=com", - email: "BehroozT@61b37bdecd0d4342ba802388d8b5a903.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Alene Gruszczynski,ou=Product Testing,dc=bitwarden,dc=com", - email: "GruszczA@f65ca3a646be42c5b15d6680e44b7f97.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tabbi Bladon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tabbi Bladon,ou=Administrative,dc=bitwarden,dc=com", - email: "BladonT@2b0e289ca15c419b92e34690b0ad1897.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Umesh Areu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Umesh Areu,ou=Product Testing,dc=bitwarden,dc=com", - email: "AreuU@5d0d20354c594b5780df45982564458f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Orel Delahay,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Orel Delahay,ou=Product Testing,dc=bitwarden,dc=com", - email: "DelahayO@f009b38fd0b643efae4b268d5ce0abb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corrie Cipolla,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Corrie Cipolla,ou=Product Development,dc=bitwarden,dc=com", - email: "CipollaC@bf258d9f715f4af3b7d9b3ec9a4b6843.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Longdist Goliss,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Longdist Goliss,ou=Janitorial,dc=bitwarden,dc=com", - email: "GolissL@fe60fc6c21f046639fc69fd725ace3ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belissa Northcott,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Belissa Northcott,ou=Product Development,dc=bitwarden,dc=com", - email: "NorthcoB@1765994e2a5c4efcb4f3aabfae2cc880.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eula Gouldson,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Eula Gouldson,ou=Payroll,dc=bitwarden,dc=com", - email: "GouldsoE@855a2f4f2cb9421d8b0276fe6c08af37.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatrix Rea,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Beatrix Rea,ou=Management,dc=bitwarden,dc=com", - email: "ReaB@091047b60e174697bb729ce954d717c0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=AnneMarie Khalilzadeh,ou=Payroll,dc=bitwarden,dc=com", - email: "KhalilzA@71b383e74c8c4d0394a6539daed34aaf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Larysa Fleming,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Larysa Fleming,ou=Product Testing,dc=bitwarden,dc=com", - email: "FlemingL@36bc6957b14948c298f68fedb3e83da0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andras Dziemian,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Andras Dziemian,ou=Administrative,dc=bitwarden,dc=com", - email: "DziemiaA@a56f80c85b414f69996ee5700b35f815.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Angeliek MachnickiHynes,ou=Peons,dc=bitwarden,dc=com", - email: "MachnicA@472c805b68f843ad9fd85cb16521749b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Afke Coallier,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Afke Coallier,ou=Management,dc=bitwarden,dc=com", - email: "CoallieA@976adcda025f45689f8ecd72de9c606c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lachu Fricks,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lachu Fricks,ou=Janitorial,dc=bitwarden,dc=com", - email: "FricksL@d479485aa9bf4fdf874b1f50fdaba08c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pammy Slautterback,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pammy Slautterback,ou=Administrative,dc=bitwarden,dc=com", - email: "SlautteP@87263f2ad4e44ac39562038c9af16152.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maribelle Balderston,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maribelle Balderston,ou=Payroll,dc=bitwarden,dc=com", - email: "BaldersM@64ae9afa0c594dd6834a0d977f843d49.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vahe Birks,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Vahe Birks,ou=Product Development,dc=bitwarden,dc=com", - email: "BirksV@ebdda7804b294714949d48657bdd3830.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tobe PKDCD,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tobe PKDCD,ou=Product Development,dc=bitwarden,dc=com", - email: "PKDCDT@1a2826f06614436585f4faa14772cf1b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=DeAnna Gahunia,ou=Product Development,dc=bitwarden,dc=com", - email: "GahuniaD@a3b3e1a7dc12465fbb231dc02524f751.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melynda Phillips,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Melynda Phillips,ou=Administrative,dc=bitwarden,dc=com", - email: "PhillipM@da12337d358141f5bd4c9f1cff61b597.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arina Collazo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Arina Collazo,ou=Payroll,dc=bitwarden,dc=com", - email: "CollazoA@f322213c017f4153baac5a8cc04c844a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cesare Karolefski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cesare Karolefski,ou=Payroll,dc=bitwarden,dc=com", - email: "KarolefC@22f9a784acc44a17b42ad78ab954d2a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Reinhold Zukas,ou=Human Resources,dc=bitwarden,dc=com", - email: "ZukasR@973c4a1a5d1a4e4f9c421404b565659a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jeroen Gaiser,ou=Janitorial,dc=bitwarden,dc=com", - email: "GaiserJ@7dd6cc5778d64f7ea47fc9b85bb01ae7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Partick Bassil,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Partick Bassil,ou=Human Resources,dc=bitwarden,dc=com", - email: "BassilP@dd5cfcee75de4e98844cbb2dd89a0b3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Siamak Wagle,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Siamak Wagle,ou=Product Testing,dc=bitwarden,dc=com", - email: "WagleS@a4f62387533541bbbdac898b8a707eb3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Reine Hamlett,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Reine Hamlett,ou=Peons,dc=bitwarden,dc=com", - email: "HamlettR@55ec9ab4177d4a9faecb693090c29c24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Albert Tebinka,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Albert Tebinka,ou=Payroll,dc=bitwarden,dc=com", - email: "TebinkaA@67ca48342c3741e5ba95513725c86734.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wally Pedneault,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Wally Pedneault,ou=Product Testing,dc=bitwarden,dc=com", - email: "PedneauW@d4ab5d5f822b49189aa188422c9bf4ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shahriar Farnham,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Shahriar Farnham,ou=Peons,dc=bitwarden,dc=com", - email: "FarnhamS@4d05bb60c7e84d1eab5ee07d5a5162ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Concordia Thorman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Concordia Thorman,ou=Human Resources,dc=bitwarden,dc=com", - email: "ThormanC@5020798a7692438bb9e14d9a42dd1742.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarath Lathrop,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Sarath Lathrop,ou=Management,dc=bitwarden,dc=com", - email: "LathropS@f37bc771a4b8490799f5a19ea4f33525.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HanVan Cuthill,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=HanVan Cuthill,ou=Peons,dc=bitwarden,dc=com", - email: "CuthillH@c0a6b6c92fcf4d2e9e442a4db87fb8d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Demetri Acree,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Demetri Acree,ou=Human Resources,dc=bitwarden,dc=com", - email: "AcreeD@8491514e025546c6b44944519f176a38.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gord St,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gord St,ou=Product Development,dc=bitwarden,dc=com", - email: "StG@a8e48e7f01fb4831b7bf783525861229.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robyn Porter,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Robyn Porter,ou=Payroll,dc=bitwarden,dc=com", - email: "PorterR@3ccc8c61b3e7403f9b193bb2ac877a17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kristine Ratnam,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kristine Ratnam,ou=Peons,dc=bitwarden,dc=com", - email: "RatnamK@1f1fb51ecca041d6b6240b4a25b62666.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trude Leander,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Trude Leander,ou=Management,dc=bitwarden,dc=com", - email: "LeanderT@03dd2273d709477db635cdb7c9075823.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacinta Burkepile,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jacinta Burkepile,ou=Management,dc=bitwarden,dc=com", - email: "BurkepiJ@2ff176a8051c415c910dbab59433a7db.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Felecia Schoenermarck,ou=Product Development,dc=bitwarden,dc=com", - email: "SchoeneF@1e52d43b6db2414f90519482b0521313.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sissela Mathewson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sissela Mathewson,ou=Administrative,dc=bitwarden,dc=com", - email: "MathewsS@28cc7c8054f54d5097838bc00378ffcf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jacynthe Sheaffer,ou=Product Development,dc=bitwarden,dc=com", - email: "SheaffeJ@889b0ce56e2f447a9f04b2ef65f2b835.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaela Gleason,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Kaela Gleason,ou=Product Testing,dc=bitwarden,dc=com", - email: "GleasonK@a08e5c7ab6bd42a9af2ba6fcd91cbe9f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mandi Popovich,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mandi Popovich,ou=Product Development,dc=bitwarden,dc=com", - email: "PopovicM@121cc33033f14e9b867c78ba3a8f3e2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bhal Mymryk,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bhal Mymryk,ou=Management,dc=bitwarden,dc=com", - email: "MymrykB@1c5b6afbcbf04ba3993488cc8b65901b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wenxi Sethian,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Wenxi Sethian,ou=Product Development,dc=bitwarden,dc=com", - email: "SethianW@71af05daaeb140bfbca8a2d29597805e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mabel Kwa,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mabel Kwa,ou=Peons,dc=bitwarden,dc=com", - email: "KwaM@76dc6fcc5e8748ab8f701b414ac24ae8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Neysa Uguccioni,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Neysa Uguccioni,ou=Management,dc=bitwarden,dc=com", - email: "UguccioN@0b027bdff1d041629ac882de18aab2e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Toby Ayoup,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Toby Ayoup,ou=Administrative,dc=bitwarden,dc=com", - email: "AyoupT@4ec1bcfbb97c4709b780fa74b3d05500.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Courtnay Engleman,ou=Human Resources,dc=bitwarden,dc=com", - email: "EnglemaC@e60dd9bce03a413a915d470a19570918.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drusilla Allman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Drusilla Allman,ou=Management,dc=bitwarden,dc=com", - email: "AllmanD@fa78004a0e4e45e5ac5f338a764f9f48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=SangMaun Rabzel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=SangMaun Rabzel,ou=Management,dc=bitwarden,dc=com", - email: "RabzelS@206e631bec554251823680304e50fd4f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettine Bresnan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bettine Bresnan,ou=Peons,dc=bitwarden,dc=com", - email: "BresnanB@0c6af3053743415cb69498758e59a3c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blithe Searl,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Blithe Searl,ou=Product Testing,dc=bitwarden,dc=com", - email: "SearlB@d7689b7c727b40419f38fdc39c4261e2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Stanislas DeLeon,ou=Payroll,dc=bitwarden,dc=com", - email: "DeLeonS@ce001280b666479eb0eb4d06e9257b27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Haig Talton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Haig Talton,ou=Janitorial,dc=bitwarden,dc=com", - email: "TaltonH@2a9fef67c2a84062aa431a97e4e79582.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ryman Smerdell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Ryman Smerdell,ou=Product Development,dc=bitwarden,dc=com", - email: "SmerdelR@0a2f8517f7174295bf5ecdcb9f344855.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Admin Cassar,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Admin Cassar,ou=Janitorial,dc=bitwarden,dc=com", - email: "CassarA@b04066f723fa4eb2a82846786b428021.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jacinthe Bucklin,ou=Product Testing,dc=bitwarden,dc=com", - email: "BucklinJ@fe6420c124954c6f8c3c4003778996ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esmail Santos,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Esmail Santos,ou=Janitorial,dc=bitwarden,dc=com", - email: "SantosE@5fa9a69302a9422abedbd51aa69f472b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walter Coley,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Walter Coley,ou=Human Resources,dc=bitwarden,dc=com", - email: "ColeyW@672856c5dd4e4183bcd781a952ed21fe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jeanne Boult,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jeanne Boult,ou=Janitorial,dc=bitwarden,dc=com", - email: "BoultJ@8a049b49f80d420a99b91944b3a9e703.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avie Scourneau,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Avie Scourneau,ou=Management,dc=bitwarden,dc=com", - email: "ScourneA@7f4cd5fa42d7400bbd064f829049395c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bettie Cescon,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bettie Cescon,ou=Payroll,dc=bitwarden,dc=com", - email: "CesconB@d0bd6c1a3fa44296a243273f0ddf6cd9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maureene Weiser,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Maureene Weiser,ou=Human Resources,dc=bitwarden,dc=com", - email: "WeiserM@0c871b0ecc1a46debc66287e828580e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisent Annibale,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Melisent Annibale,ou=Janitorial,dc=bitwarden,dc=com", - email: "AnnibalM@6882bb306b30484eac03893eca277bd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bonnie Corse,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bonnie Corse,ou=Peons,dc=bitwarden,dc=com", - email: "CorseB@eef26e16e3d34907ba8bf0f347b63dd8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Querida Gertridge,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Querida Gertridge,ou=Management,dc=bitwarden,dc=com", - email: "GertridQ@848de2e1032948c1b5d78b7a20263232.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lily Stites,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lily Stites,ou=Payroll,dc=bitwarden,dc=com", - email: "StitesL@296f507ac233431e85903a87c2e1452b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Woon Klimon,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Woon Klimon,ou=Management,dc=bitwarden,dc=com", - email: "KlimonW@50bd57e3196744cbb6ab678dff1ba1f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlota Oros,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carlota Oros,ou=Payroll,dc=bitwarden,dc=com", - email: "OrosC@d3825e009de74b68a881393dca2712eb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gil Spurway,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gil Spurway,ou=Human Resources,dc=bitwarden,dc=com", - email: "SpurwayG@51d1be7d90e1479f9d4a84f4cba3ea09.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Licha Weinbender,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Licha Weinbender,ou=Product Development,dc=bitwarden,dc=com", - email: "WeinbenL@69a9a97a69bd4b638c717a0fd6a390b2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirabella Awano,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mirabella Awano,ou=Product Testing,dc=bitwarden,dc=com", - email: "AwanoM@185b51f28c7f46da96dbfb585fb3e90d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lura Centis,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lura Centis,ou=Product Testing,dc=bitwarden,dc=com", - email: "CentisL@4f40a523634a450ca8245b527c300f0b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Imogen Trasmundi,ou=Product Development,dc=bitwarden,dc=com", - email: "TrasmunI@f9c4f76269ed44f38b1b08bb540ca247.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aveline Berhane,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Aveline Berhane,ou=Management,dc=bitwarden,dc=com", - email: "BerhaneA@b4304c61f77b49d7b5286781d16ef287.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=JeanGuy Loewen,ou=Administrative,dc=bitwarden,dc=com", - email: "LoewenJ@2cfe0b13af5f4c499e05340e06b10474.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Billy Costantino,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Billy Costantino,ou=Payroll,dc=bitwarden,dc=com", - email: "CostantB@721925c092ab4630a360f318924bd972.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorrie Fortner,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dorrie Fortner,ou=Product Development,dc=bitwarden,dc=com", - email: "FortnerD@17e6e9bce9be4a43964f6f155661a373.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Stephannie Holcombe,ou=Product Testing,dc=bitwarden,dc=com", - email: "HolcombS@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Karlee Vanwormhoudt,ou=Peons,dc=bitwarden,dc=com", - email: "VanwormK@457942790eaf4536a925540b16e6a49f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carleen Toly,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Carleen Toly,ou=Human Resources,dc=bitwarden,dc=com", - email: "TolyC@388bb63ae18342968e266bd18c49e361.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vijay Nassr,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Vijay Nassr,ou=Management,dc=bitwarden,dc=com", - email: "NassrV@e5b7fb51703341b6b79b40d29cc46235.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandro Gorius,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sandro Gorius,ou=Human Resources,dc=bitwarden,dc=com", - email: "GoriusS@d92356164b8e41ecbc89a75089ba1ed5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=He Crowder,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=He Crowder,ou=Peons,dc=bitwarden,dc=com", - email: "CrowderH@403ad564c08e47b8824594419bf3ec17.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atta Kutch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Atta Kutch,ou=Management,dc=bitwarden,dc=com", - email: "KutchA@2f3f47c035434584bc4b4ecd6886df6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Devon Kaudel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Devon Kaudel,ou=Administrative,dc=bitwarden,dc=com", - email: "KaudelD@d98f77a80f7c4109b5fdb982a57a9e6b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deidre Cirulli,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Deidre Cirulli,ou=Peons,dc=bitwarden,dc=com", - email: "CirulliD@da7bd2be911046399d0c6417c3572f36.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kala Bourget,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kala Bourget,ou=Peons,dc=bitwarden,dc=com", - email: "BourgetK@7ed928ce83094d698eeb083bd149cb2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Charo Hembrick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Charo Hembrick,ou=Payroll,dc=bitwarden,dc=com", - email: "HembricC@2c4fec4ef77046e1b1e4b34fd50dd6a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janene Torrell,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Janene Torrell,ou=Product Testing,dc=bitwarden,dc=com", - email: "TorrellJ@4cc04e0f745f47c7be4e632269c6eb14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eben Shayanpour,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Eben Shayanpour,ou=Product Development,dc=bitwarden,dc=com", - email: "ShayanpE@13ff1430cb9943818286488abb33cd82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ethelyn Rozier,ou=Janitorial,dc=bitwarden,dc=com", - email: "RozierE@1aa4dd3624d04fd6bccaa3b4ac399cb7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yves Dhir,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Yves Dhir,ou=Payroll,dc=bitwarden,dc=com", - email: "DhirY@ef09bde80592442abb2f639748abce27.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tildy Bnrlsi,ou=Human Resources,dc=bitwarden,dc=com", - email: "BnrlsiT@9c774f2280a1402ea1c5682381735a11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aile Frink,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aile Frink,ou=Product Development,dc=bitwarden,dc=com", - email: "FrinkA@3c0162b1baa744cf93a13a4dd3e63a95.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shailendra Calhoun,ou=Administrative,dc=bitwarden,dc=com", - email: "CalhounS@939e830de4504aab81a7c388f1546624.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Shirlene BrindAmour,ou=Product Testing,dc=bitwarden,dc=com", - email: "BrindAmS@1726f5bfacd044bf871463e64c567d5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Damara Jaswal,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Damara Jaswal,ou=Product Testing,dc=bitwarden,dc=com", - email: "JaswalD@ac7712596f924826bb4a05f6697a0ee3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ethelin Girotti,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ethelin Girotti,ou=Administrative,dc=bitwarden,dc=com", - email: "GirottiE@b827ba5736ae48268de38db3e9e259c3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pramod Foessl,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pramod Foessl,ou=Product Testing,dc=bitwarden,dc=com", - email: "FoesslP@39726a1b008d411d8a28b85a63102ac3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Octavia Handschy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Octavia Handschy,ou=Peons,dc=bitwarden,dc=com", - email: "HandschO@d121b17d8b8d40b599281654effa97ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kerstin Nandi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kerstin Nandi,ou=Management,dc=bitwarden,dc=com", - email: "NandiK@353b753321aa4a97a115856474e231b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elwood Bouick,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Elwood Bouick,ou=Product Development,dc=bitwarden,dc=com", - email: "BouickE@2246db4eb56e489a8d8791baa981b362.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarence Dpu,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clarence Dpu,ou=Management,dc=bitwarden,dc=com", - email: "DpuC@61fe9b3be1774f2d947cd8507fb19a6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shama Norton,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Shama Norton,ou=Janitorial,dc=bitwarden,dc=com", - email: "NortonS@7c673260c1654ab39a2cf9c0221276cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vo Sauer,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Vo Sauer,ou=Payroll,dc=bitwarden,dc=com", - email: "SauerV@503fe0b136ce4292a59167d529c63c6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilberte Ferland,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gilberte Ferland,ou=Administrative,dc=bitwarden,dc=com", - email: "FerlandG@dfcb2a19ea66423b8c7753e337720a1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Valeria Harmon,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Valeria Harmon,ou=Janitorial,dc=bitwarden,dc=com", - email: "HarmonV@15697ed59de04051be420308b9e31bf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Francisca Ogrodnik,ou=Administrative,dc=bitwarden,dc=com", - email: "OgrodniF@003a19d1bf9146d984f813f1bd527371.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorthy Youngman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dorthy Youngman,ou=Management,dc=bitwarden,dc=com", - email: "YoungmaD@81b3fb831aa74c6eb047aa19d5ff709c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilles Litherland,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gilles Litherland,ou=Payroll,dc=bitwarden,dc=com", - email: "LitherlG@d3b61e3cc90b49cc9ba1a573da70d77b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erick Wicht,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Erick Wicht,ou=Peons,dc=bitwarden,dc=com", - email: "WichtE@a0faacd6502f4c289ffd19b314c03e45.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=DeAnna Electronics,ou=Janitorial,dc=bitwarden,dc=com", - email: "ElectroD@7070424bb94c4f288a054e30d222335a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kassie Nava,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kassie Nava,ou=Product Development,dc=bitwarden,dc=com", - email: "NavaK@7b2b1b92e9ae4fe4a68b2d0b29724ff5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opaline Ober,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Opaline Ober,ou=Janitorial,dc=bitwarden,dc=com", - email: "OberO@13f66f98b46e4ca78042c5426b60b783.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ronneke Gilles,ou=Human Resources,dc=bitwarden,dc=com", - email: "GillesR@bf3722e960fc4d239d118bd3637206be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madan Baab,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Madan Baab,ou=Product Development,dc=bitwarden,dc=com", - email: "BaabM@5427bdee75c245c39f1a2b879610cd11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Htd Hersee,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Htd Hersee,ou=Administrative,dc=bitwarden,dc=com", - email: "HerseeH@64c2fa20001b495182e976975782823e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorita Anker,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Dorita Anker,ou=Product Testing,dc=bitwarden,dc=com", - email: "AnkerD@ba86ce5a5ce74352a483e9becf24707d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christopher Cohea,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Christopher Cohea,ou=Management,dc=bitwarden,dc=com", - email: "CoheaC@364a7b91d06e4e96b9f9da53be963330.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robbie Bunting,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Robbie Bunting,ou=Human Resources,dc=bitwarden,dc=com", - email: "BuntingR@ef2d41c14b454c68ae998d020dbd8441.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Antonetta Vitacco,ou=Administrative,dc=bitwarden,dc=com", - email: "VitaccoA@d8cda96778684be5a884f9cf0be697ce.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Cammy GarciaLamarca,ou=Product Testing,dc=bitwarden,dc=com", - email: "GarciaLC@47835e50e03e464aa819e55cdfc4261b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Masood Shipe,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Masood Shipe,ou=Management,dc=bitwarden,dc=com", - email: "ShipeM@dd161865c3514dbe8f8bef02f39c9969.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Abbye Matsuzawa,ou=Janitorial,dc=bitwarden,dc=com", - email: "MatsuzaA@1f4900f32c02427db7ff10eff22275bb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sandeep McLachlan,ou=Janitorial,dc=bitwarden,dc=com", - email: "McLachlS@4fdb4b1142dd43e2b745e38a2e8dcfc4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernardina Sreedhar,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bernardina Sreedhar,ou=Management,dc=bitwarden,dc=com", - email: "SreedhaB@e1b5546a5ab54f1a8c4afd4caf48fb6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Atl Corbin,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Atl Corbin,ou=Product Testing,dc=bitwarden,dc=com", - email: "CorbinA@31088ab6ae1c44e2b8845b41b99020c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alice Knighton,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alice Knighton,ou=Management,dc=bitwarden,dc=com", - email: "KnightoA@cb07970b0c0045b19cc41917f946567f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fern Okafo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Fern Okafo,ou=Product Development,dc=bitwarden,dc=com", - email: "OkafoF@387cb4eeb42b453d9fdeaffd6fead144.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brietta Dupras,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brietta Dupras,ou=Management,dc=bitwarden,dc=com", - email: "DuprasB@64f2029803c84bd485b5906422a02667.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wanda Becker,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Wanda Becker,ou=Human Resources,dc=bitwarden,dc=com", - email: "BeckerW@a6318282a95143ad9eb6eec2fd89dea7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerben Kozlowski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gerben Kozlowski,ou=Management,dc=bitwarden,dc=com", - email: "KozlowsG@ef62870980d64d4ebbfd1c03f4cab294.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maynard Burness,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Maynard Burness,ou=Product Development,dc=bitwarden,dc=com", - email: "BurnessM@520c5bcfe42945ff9a9bc4329f8d9224.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sylva Milloy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sylva Milloy,ou=Janitorial,dc=bitwarden,dc=com", - email: "MilloyS@804b9151f1ba415a894983275163dae1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=CheeYin Westphal,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=CheeYin Westphal,ou=Administrative,dc=bitwarden,dc=com", - email: "WestphaC@a1372432defa4ccd9584b648a051efd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=ThanhQuoc NadeauDostie,ou=Peons,dc=bitwarden,dc=com", - email: "NadeauDT@d457e1580197417888cc4a9c93599471.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bawn McNeal,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bawn McNeal,ou=Peons,dc=bitwarden,dc=com", - email: "McNealB@9abf99278fb8488383a30c0af0b67716.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raine Fogle,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Raine Fogle,ou=Peons,dc=bitwarden,dc=com", - email: "FogleR@cd3e8f43f0dd4d3fb94f3baba8d46ade.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eyde Sitch,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Eyde Sitch,ou=Management,dc=bitwarden,dc=com", - email: "SitchE@7193a73f55bc4b758a5c65a864323aa2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Windowing Walkins,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Windowing Walkins,ou=Product Testing,dc=bitwarden,dc=com", - email: "WalkinsW@f9e807ad6c8448a7b4463b10b5cc7416.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alisun Hampel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Alisun Hampel,ou=Management,dc=bitwarden,dc=com", - email: "HampelA@d52c1f1046c6411eb0907201f8f5a6d8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Quinta Pimpare,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Quinta Pimpare,ou=Product Development,dc=bitwarden,dc=com", - email: "PimpareQ@926986a7a9224c51b55271804ad9a9d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jemimah Whitney,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Jemimah Whitney,ou=Product Development,dc=bitwarden,dc=com", - email: "WhitneyJ@687816d020af4e4c9d25419b3dd63e14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marta McNerlan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Marta McNerlan,ou=Peons,dc=bitwarden,dc=com", - email: "McNerlaM@2faed39246da44659e67f7ee9bc9a292.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miranda Sobel,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Miranda Sobel,ou=Human Resources,dc=bitwarden,dc=com", - email: "SobelM@01a39cd47fba422abe5be28943be33a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minda Andric,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Minda Andric,ou=Peons,dc=bitwarden,dc=com", - email: "AndricM@c5077a2f25784ddab82881f1aec25848.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roselle Baber,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Roselle Baber,ou=Management,dc=bitwarden,dc=com", - email: "BaberR@b8d27e8398214587851640fca750ea6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Four Keene,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Four Keene,ou=Peons,dc=bitwarden,dc=com", - email: "KeeneF@271b979d05d84246a9dbf07f2554970e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Souza Salyer,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Souza Salyer,ou=Human Resources,dc=bitwarden,dc=com", - email: "SalyerS@e36a0def7d834657ab4aab201a87a463.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Petri Beehler,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Petri Beehler,ou=Management,dc=bitwarden,dc=com", - email: "BeehlerP@530608b4f9df417187aa615866b37d82.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annadiane Hyrne,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Annadiane Hyrne,ou=Peons,dc=bitwarden,dc=com", - email: "HyrneA@4467185dad394a2ab964d923a668f7a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Freida Nock,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Freida Nock,ou=Human Resources,dc=bitwarden,dc=com", - email: "NockF@e358162fa0384d918adc01a68c3773f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Adrianne Hollenbach,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Adrianne Hollenbach,ou=Management,dc=bitwarden,dc=com", - email: "HollenbA@17090ec80eaa480fa5878f4ca04b3503.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leon Hulme,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Leon Hulme,ou=Human Resources,dc=bitwarden,dc=com", - email: "HulmeL@a0e52fac0f494b0982a62c82b5201e22.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Izabel Schnell,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Izabel Schnell,ou=Product Development,dc=bitwarden,dc=com", - email: "SchnellI@559e1a46c2f944d8a33837a661c67fa0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jammie Parisien,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jammie Parisien,ou=Administrative,dc=bitwarden,dc=com", - email: "ParisieJ@8318909e0776426c8a3322dfc777c59c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cori Oreilly,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Cori Oreilly,ou=Human Resources,dc=bitwarden,dc=com", - email: "OreillyC@c9e4e7670c4c4defb2239518befdd386.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Enzo Rodgers,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Enzo Rodgers,ou=Product Development,dc=bitwarden,dc=com", - email: "RodgersE@6075ce54c1c346baad961bf0742aef3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pic Basinger,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Pic Basinger,ou=Peons,dc=bitwarden,dc=com", - email: "BasingeP@4c9858703e48497c924d77014e6a3b88.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Barbabra Fuqua,ou=Payroll,dc=bitwarden,dc=com", - email: "FuquaB@7c7d4c294db5460a9b0b3e7e2e1f0255.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paqs Atalla,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Paqs Atalla,ou=Janitorial,dc=bitwarden,dc=com", - email: "AtallaP@ef893a2718a6415a89b1218247ab6f7e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norina McClymont,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Norina McClymont,ou=Management,dc=bitwarden,dc=com", - email: "McClymoN@dd187a873e4c4bb299a3c9194e913cba.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sadella Psklib,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Sadella Psklib,ou=Administrative,dc=bitwarden,dc=com", - email: "PsklibS@52d447bfc2464a51a20925b35098fffa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bqb Mulvie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Bqb Mulvie,ou=Payroll,dc=bitwarden,dc=com", - email: "MulvieB@54fb83c164074ff493db3f9ce8ff6cd3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jenica Brophy,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jenica Brophy,ou=Human Resources,dc=bitwarden,dc=com", - email: "BrophyJ@b19f5c0cd758429f9a018da5785536ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gwendolen Mattiuz,ou=Payroll,dc=bitwarden,dc=com", - email: "MattiuzG@22a72674ecec479588f031d302cecb2d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Steen Dubuc,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Steen Dubuc,ou=Product Development,dc=bitwarden,dc=com", - email: "DubucS@f58bbd26c10847bc8e678cb993396656.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shea Blesi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shea Blesi,ou=Management,dc=bitwarden,dc=com", - email: "BlesiS@480be1d14a8f4e579c5bbba93b8d61e4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kusum Tilden,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Kusum Tilden,ou=Human Resources,dc=bitwarden,dc=com", - email: "TildenK@9fd656a8d7ab4256bcef95474192bae3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Famke Chuah,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Famke Chuah,ou=Administrative,dc=bitwarden,dc=com", - email: "ChuahF@ff582b028bb14d7f8a64ae9e228eb6b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Angeline Cytrynbaum,ou=Peons,dc=bitwarden,dc=com", - email: "CytrynbA@1fd495b25f014a69affe5c97974df0f7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alvinia Snodgrass,ou=Peons,dc=bitwarden,dc=com", - email: "SnodgraA@a09fbeb1253a4518b1ca68a5e9f2ebe0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=HoaVan Drummer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=HoaVan Drummer,ou=Peons,dc=bitwarden,dc=com", - email: "DrummerH@64ea5273cbad4fe1bbdf6cc7bf563ed4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Metrics McCoy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Metrics McCoy,ou=Peons,dc=bitwarden,dc=com", - email: "McCoyM@f57569f7524f4479b4d43ec8c220c303.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Brittany Zarkel,ou=Product Testing,dc=bitwarden,dc=com", - email: "ZarkelB@bb451e9caafd4e81b5fb79f1aea3830a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Maybelle Wiebe,ou=Janitorial,dc=bitwarden,dc=com", - email: "WiebeM@99ecfa2a2adf441cbf5094d441911ac8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolas Lally,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nicolas Lally,ou=Product Testing,dc=bitwarden,dc=com", - email: "LallyN@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Candie Siefert,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Candie Siefert,ou=Administrative,dc=bitwarden,dc=com", - email: "SiefertC@88c454cb568147c58332d77ce464726b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ulf Novak,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Ulf Novak,ou=Product Testing,dc=bitwarden,dc=com", - email: "NovakU@1d0fa7b832b142ce82ca5e924a1754a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Fina Rhattigan,ou=Janitorial,dc=bitwarden,dc=com", - email: "RhattigF@1a99800019bc40cc83877edaa3c037bd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Paulette Unkefer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Paulette Unkefer,ou=Peons,dc=bitwarden,dc=com", - email: "UnkeferP@972afc9853ee4f2c90b26fb09fc7d779.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Corrianne Goliss,ou=Human Resources,dc=bitwarden,dc=com", - email: "GolissC@f793e82ef25242588c72c8ecf5cc25ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gwendolin Kean,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gwendolin Kean,ou=Payroll,dc=bitwarden,dc=com", - email: "KeanG@06bce776ad5946a6be606d0392cec3ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marthe Harvey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Marthe Harvey,ou=Human Resources,dc=bitwarden,dc=com", - email: "HarveyM@79f70adba366489f9a827cac7a2d8fd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Debbi Elhamahmy,ou=Administrative,dc=bitwarden,dc=com", - email: "ElhamahD@bb48b434201c4705a4eb043e09cd6d70.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francene AuYeung,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Francene AuYeung,ou=Peons,dc=bitwarden,dc=com", - email: "AuYeungF@0d2f49c4afec422dbf4961ec0258d7e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Juliana Omura,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Juliana Omura,ou=Peons,dc=bitwarden,dc=com", - email: "OmuraJ@797c12ee868e41e5be4bb46785d3d6aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emelina Elliot,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Emelina Elliot,ou=Product Development,dc=bitwarden,dc=com", - email: "ElliotE@5437f19907594de59138cb373ea3e4a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Waverly Monforton,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Waverly Monforton,ou=Payroll,dc=bitwarden,dc=com", - email: "MonfortW@78921cb9fe6c47488d5cf12368310816.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gladys Bilanski,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Gladys Bilanski,ou=Management,dc=bitwarden,dc=com", - email: "BilanskG@631ae20fb31c4a77babae0e6eaf9b74d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Analise Shea,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Analise Shea,ou=Product Testing,dc=bitwarden,dc=com", - email: "SheaA@5f0294cf70af42dd8b675e776526c55e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cart Boutin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Cart Boutin,ou=Management,dc=bitwarden,dc=com", - email: "BoutinC@5829ced5acec40878d4752d92d457b7b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kunie Hoorman,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Kunie Hoorman,ou=Product Development,dc=bitwarden,dc=com", - email: "HoormanK@306375064b2741d094b3e69f5fcd1355.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odelinda Keilty,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Odelinda Keilty,ou=Payroll,dc=bitwarden,dc=com", - email: "KeiltyO@99ed379ff20347a2afcfdca050997d8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Biddy Nicolaou,ou=Janitorial,dc=bitwarden,dc=com", - email: "NicolaoB@31b20282a43b4a2586c05543f32a2ad0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stella Sist,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Stella Sist,ou=Peons,dc=bitwarden,dc=com", - email: "SistS@de96a17ce06e4487ba5f98c80195f121.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maryellen Phillips,ou=Product Testing,dc=bitwarden,dc=com", - email: "PhillipM@2322b02e7fdc412fb0617a541c4ec04c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dayle Schenkel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dayle Schenkel,ou=Management,dc=bitwarden,dc=com", - email: "SchenkeD@dbc00763a9de485c97697558ab9ccf2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlyn McBroom,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Arlyn McBroom,ou=Payroll,dc=bitwarden,dc=com", - email: "McBroomA@810805989c354ad7a79f655890d0527e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brear Jensen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Brear Jensen,ou=Payroll,dc=bitwarden,dc=com", - email: "JensenB@f3145f0fc9d14ab089c58ad253fdbe93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ann Bulengo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ann Bulengo,ou=Administrative,dc=bitwarden,dc=com", - email: "BulengoA@25c6b9a9cdb0416ea3c7c7318ec420ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Esma Jak,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Esma Jak,ou=Human Resources,dc=bitwarden,dc=com", - email: "JakE@0c79359a2e94444a9804cb3df1168a2f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Larkin Nance,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Larkin Nance,ou=Payroll,dc=bitwarden,dc=com", - email: "NanceL@3f23376c66604a36ab332ecde75543de.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirelle Novak,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mirelle Novak,ou=Peons,dc=bitwarden,dc=com", - email: "NovakM@5d21976aa8594197bf4a897cb95dc5c6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorothy Laurich,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Dorothy Laurich,ou=Product Development,dc=bitwarden,dc=com", - email: "LaurichD@2d82e4fbfc604880a9f0d07a8531daa9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shyam Wernik,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Shyam Wernik,ou=Human Resources,dc=bitwarden,dc=com", - email: "WernikS@76e7e62397cf46a7b8c004ca6e02f899.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Niek Rahmany,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Niek Rahmany,ou=Product Development,dc=bitwarden,dc=com", - email: "RahmanyN@94ce9594247c4b4684617b905ff4b38b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jung Kimler,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Jung Kimler,ou=Administrative,dc=bitwarden,dc=com", - email: "KimlerJ@fb2a9835511b44fba3bde94e482a2f71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Jacque Hearnden,ou=Product Testing,dc=bitwarden,dc=com", - email: "HearndeJ@74cfe2fa4b0b457bbb2822816bc66149.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lolita Mufti,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Lolita Mufti,ou=Product Testing,dc=bitwarden,dc=com", - email: "MuftiL@8fb6b5ed2e0c4f9896a409d4b0bce533.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coord Kalleward,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Coord Kalleward,ou=Management,dc=bitwarden,dc=com", - email: "KallewaC@b114f468b2f34a46af68fa26b5215d8f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Garnet Shames,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Garnet Shames,ou=Payroll,dc=bitwarden,dc=com", - email: "ShamesG@53a050beae0b4f609caf7ccf53a73868.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fara Shireman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Fara Shireman,ou=Human Resources,dc=bitwarden,dc=com", - email: "ShiremaF@a8b705848c504748848b8aba539736f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Eryn Katsouras,ou=Janitorial,dc=bitwarden,dc=com", - email: "KatsourE@abd7a0e1e97f4d19962cc07f7f9bc4e3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shahid Neil,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Shahid Neil,ou=Management,dc=bitwarden,dc=com", - email: "NeilS@c3e7bf42d4644f6bb0bcdc78feeb3e92.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Starlene Falardeau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Starlene Falardeau,ou=Payroll,dc=bitwarden,dc=com", - email: "FalardeS@4196ac503710477b96965e0281bd88e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marce Plaisance,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marce Plaisance,ou=Janitorial,dc=bitwarden,dc=com", - email: "PlaisanM@3557661a889d4d1aa53732cbd0d2ba7c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lena Mathias,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lena Mathias,ou=Product Development,dc=bitwarden,dc=com", - email: "MathiasL@890d1310fd334cdc8c698f8a47f59b9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gaby Booking,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Gaby Booking,ou=Janitorial,dc=bitwarden,dc=com", - email: "BookingG@076fd971827e4bad8f0fb878bbd61e75.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michaela Trimble,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Michaela Trimble,ou=Product Testing,dc=bitwarden,dc=com", - email: "TrimbleM@d36f0da7bde1417c871787ddace3eaa5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lisabeth Trochu,ou=Administrative,dc=bitwarden,dc=com", - email: "TrochuL@63ba35c8524545369a911e12c7f3bea9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucie Kilner,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Lucie Kilner,ou=Payroll,dc=bitwarden,dc=com", - email: "KilnerL@f3145f0fc9d14ab089c58ad253fdbe93.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danyelle Rider,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Danyelle Rider,ou=Product Testing,dc=bitwarden,dc=com", - email: "RiderD@415c030ee16d4de4a7392387c8cef87f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mariska Tien,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mariska Tien,ou=Peons,dc=bitwarden,dc=com", - email: "TienM@8f61b7df745c411eb50459783db5da78.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Belvia Lamoureux,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Belvia Lamoureux,ou=Peons,dc=bitwarden,dc=com", - email: "LamoureB@5449de7063aa4ed2b6578dde4c294893.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sheelagh Pevec,ou=Payroll,dc=bitwarden,dc=com", - email: "PevecS@8557bf093f9c42cfa11eafadaf8fc9c1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jian Marneris,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jian Marneris,ou=Payroll,dc=bitwarden,dc=com", - email: "MarneriJ@c4fdb8e85dc84c0eb28174e2bfc1119e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dagmar Moseby,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Dagmar Moseby,ou=Payroll,dc=bitwarden,dc=com", - email: "MosebyD@d3fcdb605edb46b186b8487dae0de85d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Casie Ress,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Casie Ress,ou=Janitorial,dc=bitwarden,dc=com", - email: "RessC@3176045f47fb4a99bfb7ada750f4ebf5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hrinfo Okura,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Hrinfo Okura,ou=Payroll,dc=bitwarden,dc=com", - email: "OkuraH@687816d020af4e4c9d25419b3dd63e14.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Korney Fadlallah,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Korney Fadlallah,ou=Administrative,dc=bitwarden,dc=com", - email: "FadlallK@72192729ccbe43a199e14adff9e9435d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jiri Leftwich,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Jiri Leftwich,ou=Peons,dc=bitwarden,dc=com", - email: "LeftwicJ@67e1d3a1e2154702a69e299a8ae82d10.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Mustafa Gallais,ou=Product Testing,dc=bitwarden,dc=com", - email: "GallaisM@2a074f142f094eecb44b675913154101.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tildie Abbott,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Tildie Abbott,ou=Human Resources,dc=bitwarden,dc=com", - email: "AbbottT@3384fe06e3e740708cd219dff85b1f83.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kalindi Keehan,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kalindi Keehan,ou=Peons,dc=bitwarden,dc=com", - email: "KeehanK@5398775f17574785a44a78e1afa74d02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Collette Patchett,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Collette Patchett,ou=Product Development,dc=bitwarden,dc=com", - email: "PatchetC@b1def85879ca4d1390e9e6b1d5b583ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cristiane Ruth,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cristiane Ruth,ou=Peons,dc=bitwarden,dc=com", - email: "RuthC@5214956f0ee84ad493b8defdd90a23da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Kaman Maciejewski,ou=Payroll,dc=bitwarden,dc=com", - email: "MaciejeK@bf3c9cfe52ab46f8a1843392d272b32b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tyronda Mayhugh,ou=Administrative,dc=bitwarden,dc=com", - email: "MayhughT@e467c17deb834d9fbc8b67f6cfbeb951.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gilberta Whiteford,ou=Administrative,dc=bitwarden,dc=com", - email: "WhitefoG@31c61f2c8f9340ee8037a78602dae0c7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sedat Gurley,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sedat Gurley,ou=Product Testing,dc=bitwarden,dc=com", - email: "GurleyS@4eada34c16d14ddcb614de11bcd04009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharai Coxall,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sharai Coxall,ou=Product Development,dc=bitwarden,dc=com", - email: "CoxallS@63acb1cef0d64271b1836eb0bdd826d3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franny Walton,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Franny Walton,ou=Product Testing,dc=bitwarden,dc=com", - email: "WaltonF@5191509f48d94538ad03dc3532ab7b16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aryn Klimas,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aryn Klimas,ou=Janitorial,dc=bitwarden,dc=com", - email: "KlimasA@d7b344ca45cd4c63b54c502d92e2c5d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jawad Macchiusi,ou=Human Resources,dc=bitwarden,dc=com", - email: "MacchiuJ@a2ea301b88434726b194e4c9303a1849.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorise Yue,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dorise Yue,ou=Human Resources,dc=bitwarden,dc=com", - email: "YueD@ae51202c09c842a381cec0b8654819ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mellisa Gustlin,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Mellisa Gustlin,ou=Management,dc=bitwarden,dc=com", - email: "GustlinM@2f0e638056364f0ebcf3676022d443c8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Butch Roper,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Butch Roper,ou=Administrative,dc=bitwarden,dc=com", - email: "RoperB@465c6a27d41345cf88d762adf10ae61e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nurhan Lebo,ou=Janitorial,dc=bitwarden,dc=com", - email: "LeboN@67d3a8519ac14347aeb58946a31a1f50.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Doralyn Oaks,ou=Human Resources,dc=bitwarden,dc=com", - email: "OaksD@a0698e6e756a42f28ea2d90c4b303b9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mendel Rolls,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mendel Rolls,ou=Administrative,dc=bitwarden,dc=com", - email: "RollsM@776517ed1aad4bc8864e3bcd6b8432b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cecelia Dowse,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Cecelia Dowse,ou=Administrative,dc=bitwarden,dc=com", - email: "DowseC@97c81e07db974df3904138905672982c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jacinda Barrows,ou=Janitorial,dc=bitwarden,dc=com", - email: "BarrowsJ@658d341f53c7427cb916d5817479bb06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anette Lassig,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Anette Lassig,ou=Janitorial,dc=bitwarden,dc=com", - email: "LassigA@09584180f5c84cea9422d4844e19cecf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gio Londhe,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gio Londhe,ou=Human Resources,dc=bitwarden,dc=com", - email: "LondheG@28985efb8c4d4c12b05fcd27a8c26b7f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=ChristieAnne Cropper,ou=Product Testing,dc=bitwarden,dc=com", - email: "CropperC@b193a1e78b454203b9fa10eeebe62941.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tadayuki Mak,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tadayuki Mak,ou=Product Development,dc=bitwarden,dc=com", - email: "MakT@3de40f1f4bb746cab1a4ba47c2543175.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Amparo Ratnayake,ou=Human Resources,dc=bitwarden,dc=com", - email: "RatnayaA@b923ae18e63741c4b104cfaeccc5a072.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ri Trisic,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ri Trisic,ou=Peons,dc=bitwarden,dc=com", - email: "TrisicR@d13e5b3d0b624833b56bbffe10dce123.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ileana Doyle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Ileana Doyle,ou=Management,dc=bitwarden,dc=com", - email: "DoyleI@39547ebc25814369833c967034408a9a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nico Badelt,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nico Badelt,ou=Management,dc=bitwarden,dc=com", - email: "BadeltN@1e81b45ef9d44be28cfb9e51c55e2212.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ragu Lieure,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Ragu Lieure,ou=Administrative,dc=bitwarden,dc=com", - email: "LieureR@7eeb5a2e39b24090937294c20835ac1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claudia Berhane,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Claudia Berhane,ou=Management,dc=bitwarden,dc=com", - email: "BerhaneC@8737fee626484322a472390d3fcd9614.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Silvana Tunali,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Silvana Tunali,ou=Human Resources,dc=bitwarden,dc=com", - email: "TunaliS@d30e293ef1a4478a8b737f763542bea7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anand Henshaw,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Anand Henshaw,ou=Administrative,dc=bitwarden,dc=com", - email: "HenshawA@9203e13698914816bdcd0ae89556ac90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Imtaz Ledamun,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Imtaz Ledamun,ou=Peons,dc=bitwarden,dc=com", - email: "LedamunI@71bf922abd2749a3982856c35ce9c912.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meryl Diaz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Meryl Diaz,ou=Product Development,dc=bitwarden,dc=com", - email: "DiazM@c1107b78fcdc4c7da36d0ed149a4f820.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saraann Anastasio,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Saraann Anastasio,ou=Administrative,dc=bitwarden,dc=com", - email: "AnastasS@a3b3e1a7dc12465fbb231dc02524f751.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Declan Creane,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Declan Creane,ou=Product Development,dc=bitwarden,dc=com", - email: "CreaneD@985464865b044117812421256bb2a81d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Terrell Mathieson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Terrell Mathieson,ou=Administrative,dc=bitwarden,dc=com", - email: "MathiesT@ef1a5d9cc81344e2bcb0c3b9915efaa4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Margarethe Gibbons,ou=Janitorial,dc=bitwarden,dc=com", - email: "GibbonsM@6e63ac1e5cff4aa489817dd6f33e1a44.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Chelsey Leydig,ou=Human Resources,dc=bitwarden,dc=com", - email: "LeydigC@c69269019dbb421c8567785c28a21f04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olympia DMS,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Olympia DMS,ou=Peons,dc=bitwarden,dc=com", - email: "DMSO@9cba00e55266421b93bd11c17d0407ed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mounir Pullum,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Mounir Pullum,ou=Payroll,dc=bitwarden,dc=com", - email: "PullumM@a7e7b13342d14512ab65c0fc1d87a2ae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Gerardjan McDowell,ou=Administrative,dc=bitwarden,dc=com", - email: "McDowelG@5a83a2a2968c4e6f9cd933a562095339.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Constantina Faou,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Constantina Faou,ou=Product Development,dc=bitwarden,dc=com", - email: "FaouC@4376a00e71594ef1b26e2e0a8e02ecaa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Santiago Georges,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Santiago Georges,ou=Management,dc=bitwarden,dc=com", - email: "GeorgesS@f17372744618439491402613e317ee84.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marinette Ficker,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Marinette Ficker,ou=Janitorial,dc=bitwarden,dc=com", - email: "FickerM@368b49862ec74ac1974a058d04889202.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janet Pankiw,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Janet Pankiw,ou=Administrative,dc=bitwarden,dc=com", - email: "PankiwJ@4155bdebff5941d48d470ec7ba36ba81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sayed Mohajeri,ou=Human Resources,dc=bitwarden,dc=com", - email: "MohajerS@8e1bdb2b71764573ad6ede8abcf3030f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Else Hazenboom,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Else Hazenboom,ou=Product Testing,dc=bitwarden,dc=com", - email: "HazenboE@5c48fade5edf4f5784f81c27e5012291.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Saibal Traynor,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Saibal Traynor,ou=Peons,dc=bitwarden,dc=com", - email: "TraynorS@d9dfb2c3a70849548f67937ceedb07f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khue Mein,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Khue Mein,ou=Human Resources,dc=bitwarden,dc=com", - email: "MeinK@04a84c4ba77a4d778bbb90bf38322dca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Blanca Schaffel,ou=Product Testing,dc=bitwarden,dc=com", - email: "SchaffeB@df40332a741445b7a8fa73b2a928c4b0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=PeyKee Fetterman,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=PeyKee Fetterman,ou=Management,dc=bitwarden,dc=com", - email: "FettermP@afdb909799524b7dbed21ce8a882a129.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Claire Reinlie,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Claire Reinlie,ou=Management,dc=bitwarden,dc=com", - email: "ReinlieC@825889a0436341f395c7130d2978f17d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shawna Lahlum,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shawna Lahlum,ou=Product Development,dc=bitwarden,dc=com", - email: "LahlumS@11d46bffb41f4b52a78d536832879f6a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darelle Childress,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Darelle Childress,ou=Product Development,dc=bitwarden,dc=com", - email: "ChildreD@6ffe5ab0f525480aa833777930f34870.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kessiah Alford,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kessiah Alford,ou=Peons,dc=bitwarden,dc=com", - email: "AlfordK@238696ade728438aa3391299a0dc9901.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Theressa Olivier,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Theressa Olivier,ou=Peons,dc=bitwarden,dc=com", - email: "OlivierT@3ac90edfcfff46898d6b206ad200961d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pauly Jago,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pauly Jago,ou=Product Testing,dc=bitwarden,dc=com", - email: "JagoP@40bdf4a089544a81a37ce30643c6f68f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Collete Krabicka,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Collete Krabicka,ou=Product Development,dc=bitwarden,dc=com", - email: "KrabickC@7cae85b47554428097a6ccb66a70ecf0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kim Highsmith,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kim Highsmith,ou=Administrative,dc=bitwarden,dc=com", - email: "HighsmiK@1ae1933dac97453a926e3efbe8067be8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Norine Maludzinski,ou=Human Resources,dc=bitwarden,dc=com", - email: "MaludziN@19be86f3b1d34c7ab6993505e8f0ad33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elladine Schwab,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Elladine Schwab,ou=Janitorial,dc=bitwarden,dc=com", - email: "SchwabE@fdc7d191201f48f4ad7e078c4bc3a04a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Francisco Knickerbocker,ou=Janitorial,dc=bitwarden,dc=com", - email: "KnickerF@f853c03d8c874a9b82d05bbacc050701.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Trinh Parthasarathy,ou=Peons,dc=bitwarden,dc=com", - email: "ParthasT@a3360bcceedb4a1c970485f0ee727ec8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=XiaoMing Dorr,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=XiaoMing Dorr,ou=Management,dc=bitwarden,dc=com", - email: "DorrX@29e5bf5da5fa4c33a2698da36cf542f4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clement Durant,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Clement Durant,ou=Peons,dc=bitwarden,dc=com", - email: "DurantC@50bab9f9cf1041a789372e5001d27214.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rejeanne Shelegey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Rejeanne Shelegey,ou=Management,dc=bitwarden,dc=com", - email: "ShelegeR@de4005aec23f451ca3bc6305e1d4b24c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicky McDowall,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nicky McDowall,ou=Payroll,dc=bitwarden,dc=com", - email: "McDowalN@99e9bc5df9fd4340b54c8a144a9561a1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=JeanBernard Chepregi,ou=Administrative,dc=bitwarden,dc=com", - email: "ChepregJ@d960d84eaa9046eea0a7eef403c29cff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomasa Fulk,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Thomasa Fulk,ou=Peons,dc=bitwarden,dc=com", - email: "FulkT@3ecd175442c64248bedbf4c8a0beed81.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Florri Tregenza,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Florri Tregenza,ou=Peons,dc=bitwarden,dc=com", - email: "TregenzF@759d634715d84fd98852f9030d6bb1fd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hester Colbourne,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hester Colbourne,ou=Product Development,dc=bitwarden,dc=com", - email: "ColbourH@ca67ae4b79c443c4a53c6b8dd4715cb2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anitra Hugel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Anitra Hugel,ou=Product Development,dc=bitwarden,dc=com", - email: "HugelA@41e8e26802fc4aa2a4f148597fd04eef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kanu Cuervo,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kanu Cuervo,ou=Management,dc=bitwarden,dc=com", - email: "CuervoK@4ffdbcbdfbba4f78b2cb0e4b52273909.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Octavia Lethebinh,ou=Administrative,dc=bitwarden,dc=com", - email: "LethebiO@ef564f7ed1fd4618b35eba43bdce3095.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=AnnLorrain Hafermalz,ou=Payroll,dc=bitwarden,dc=com", - email: "HafermaA@566c53c3c68842f79a345eff5495df76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Faruk Hanzel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Faruk Hanzel,ou=Product Development,dc=bitwarden,dc=com", - email: "HanzelF@850fdcd6790742539b4abea7a1fd3edd.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Trent Carli,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Trent Carli,ou=Product Development,dc=bitwarden,dc=com", - email: "CarliT@d95e5fa5af7a4a96ac09ece7f1a1a4f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maurene Paliga,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Maurene Paliga,ou=Payroll,dc=bitwarden,dc=com", - email: "PaligaM@0fae6975893e4404981e1b0278fd9893.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Minette Manner,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Minette Manner,ou=Management,dc=bitwarden,dc=com", - email: "MannerM@2ee12d03ea504c8cbd45c956288b9b76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dotti Merklinger,ou=Human Resources,dc=bitwarden,dc=com", - email: "MerklinD@e471e3a82052467cbf4b6e0a9c1ffb9e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elio Lough,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elio Lough,ou=Payroll,dc=bitwarden,dc=com", - email: "LoughE@a63636764be2417c8862dba36d524669.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Abigael Noddin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Abigael Noddin,ou=Peons,dc=bitwarden,dc=com", - email: "NoddinA@db51bc9053f3446197c0ce77497e73c2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Winna Bono,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Winna Bono,ou=Human Resources,dc=bitwarden,dc=com", - email: "BonoW@7c32fb701ef74a0cad22be6cdec84337.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Khamdy Jubenville,ou=Administrative,dc=bitwarden,dc=com", - email: "JubenviK@828715479ac64a4e9327e29f8a0322a8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karalynn Paylor,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Karalynn Paylor,ou=Administrative,dc=bitwarden,dc=com", - email: "PaylorK@77c372e3de4e484f817d59e9093d13ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caterina Pittam,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Caterina Pittam,ou=Peons,dc=bitwarden,dc=com", - email: "PittamC@73270e440d9c4ce889031efd2cc4d745.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Michaela Cuffle,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Michaela Cuffle,ou=Management,dc=bitwarden,dc=com", - email: "CuffleM@c927612f4cbe4fcf841a3d7e140a391c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sibylle Martins,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sibylle Martins,ou=Human Resources,dc=bitwarden,dc=com", - email: "MartinsS@84cc1f48f9a6495a85f0c7e7652d7056.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jade Noguchi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jade Noguchi,ou=Payroll,dc=bitwarden,dc=com", - email: "NoguchiJ@55a01d410d4d4d5d9f6b76d36c8786ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Guenna Lazure,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Guenna Lazure,ou=Peons,dc=bitwarden,dc=com", - email: "LazureG@1b72488cc66542c3a9a532a6c9260a5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beatrisa Staring,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Beatrisa Staring,ou=Product Development,dc=bitwarden,dc=com", - email: "StaringB@c5642a4e738442dc82e826ce039fbed0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bernadine Schrang,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Bernadine Schrang,ou=Product Development,dc=bitwarden,dc=com", - email: "SchrangB@696db7ebc26e4f86a6552c4f6f755d76.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alese Rigdon,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Alese Rigdon,ou=Product Development,dc=bitwarden,dc=com", - email: "RigdonA@c6cd785d90994077a9f86547f3ad75a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=MaryJo Harms,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=MaryJo Harms,ou=Janitorial,dc=bitwarden,dc=com", - email: "HarmsM@357e3a12c2fd4ca8b378ce98dc8cbff8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorris Akita,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Dorris Akita,ou=Janitorial,dc=bitwarden,dc=com", - email: "AkitaD@deb24c82a57b4b4ba4fd2ff9dfbbb9d6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thanh Dewitt,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Thanh Dewitt,ou=Product Development,dc=bitwarden,dc=com", - email: "DewittT@5e4e7d75e05b48bd8f2b694051e48b65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Roseline Klostermann,ou=Product Testing,dc=bitwarden,dc=com", - email: "KlosterR@7ab7643662f14cef84497ec647fde7ff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Amelie BaggermanWebster,ou=Product Testing,dc=bitwarden,dc=com", - email: "BaggermA@a372f6ef68844d9ba9a56394e6e19253.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Davita Stenson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Davita Stenson,ou=Product Development,dc=bitwarden,dc=com", - email: "StensonD@e62b6bada3794f6abc6e683f712748b4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pak Krone,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Pak Krone,ou=Product Development,dc=bitwarden,dc=com", - email: "KroneP@42be868e79934b2781b6098b8536a633.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idalina Vogt,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Idalina Vogt,ou=Product Testing,dc=bitwarden,dc=com", - email: "VogtI@95371e442302451c9744b100e5d4b3c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=WaiChau Vankooten,ou=Human Resources,dc=bitwarden,dc=com", - email: "VankootW@804b9151f1ba415a894983275163dae1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yuan Wester,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Yuan Wester,ou=Product Development,dc=bitwarden,dc=com", - email: "WesterY@1dc3a166a7d1429cbda07bce89749db3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Riaz Gulis,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Riaz Gulis,ou=Product Development,dc=bitwarden,dc=com", - email: "GulisR@145129e0e2ad4c1cabc46b1331f17265.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odetta Masse,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Odetta Masse,ou=Product Testing,dc=bitwarden,dc=com", - email: "MasseO@aa7285e13fe546c6b7b266b1436cce65.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stacia Presgrove,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Stacia Presgrove,ou=Management,dc=bitwarden,dc=com", - email: "PresgroS@f5efd1e9a39c413dbfa9f7e476ae7cea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norbert Salazar,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Norbert Salazar,ou=Product Development,dc=bitwarden,dc=com", - email: "SalazarN@36dd795f7b764cba960063e604e64710.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nevein Grimshaw,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nevein Grimshaw,ou=Management,dc=bitwarden,dc=com", - email: "GrimshaN@1d6456d50bf342eb9edbc475cb3ae754.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Annaliese Hudak,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Annaliese Hudak,ou=Product Development,dc=bitwarden,dc=com", - email: "HudakA@8086b9fea7b2437cb09806e8e5c40f1a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Andromache Machika,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Andromache Machika,ou=Product Development,dc=bitwarden,dc=com", - email: "MachikaA@aae9b0d8d8c047aa8aadb6213597cf90.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Meriann Larose,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Meriann Larose,ou=Human Resources,dc=bitwarden,dc=com", - email: "LaroseM@bebdb45a29d84626bd4552a8ec199a4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agathe Kikuchi,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Agathe Kikuchi,ou=Management,dc=bitwarden,dc=com", - email: "KikuchiA@7c90e56d6cd142eb807f1e1a9bbefb5e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Somsak Fields,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Somsak Fields,ou=Janitorial,dc=bitwarden,dc=com", - email: "FieldsS@0177394985bc446d8344b5896f855979.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zitella Hussein,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zitella Hussein,ou=Product Testing,dc=bitwarden,dc=com", - email: "HusseinZ@c659efb530134031a977821791781191.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Varennes ParkerShane,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Varennes ParkerShane,ou=Peons,dc=bitwarden,dc=com", - email: "ParkerSV@6ad50b5570274446ac57cf22bb8d002a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Nolie Majumdar,ou=Product Testing,dc=bitwarden,dc=com", - email: "MajumdaN@1291a44cab8442a6a669d12c387911e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Idelle Leicht,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Idelle Leicht,ou=Payroll,dc=bitwarden,dc=com", - email: "LeichtI@db317ee4bd8b44f39022e9dbfa6a622b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Darb Swinkels,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Darb Swinkels,ou=Product Testing,dc=bitwarden,dc=com", - email: "SwinkelD@fd2458f229b6479d85b521aa5a4cd638.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Thomasa Nagle,ou=Human Resources,dc=bitwarden,dc=com", - email: "NagleT@7aec1c97462e4e54ae22b4095763aa51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Koren Perfetti,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Koren Perfetti,ou=Product Testing,dc=bitwarden,dc=com", - email: "PerfettK@99f91fc2bf8f45d2b847f01ff41a14da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kelcey Reuss,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Kelcey Reuss,ou=Administrative,dc=bitwarden,dc=com", - email: "ReussK@c9027f607987451aa869ec32b2ad0708.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lujanka Contardo,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lujanka Contardo,ou=Product Development,dc=bitwarden,dc=com", - email: "ContardL@e43c05f5415a492785e600f140e34b3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Kamyar Twidale,ou=Janitorial,dc=bitwarden,dc=com", - email: "TwidaleK@a77c7140e8a14e9180f6ceda32adedff.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barton Seggie,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Barton Seggie,ou=Payroll,dc=bitwarden,dc=com", - email: "SeggieB@c25c8eeee77f4478896f338b08270109.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hilmi Prichard,ou=Product Testing,dc=bitwarden,dc=com", - email: "PricharH@2d5fd1f64fa5446a86dfbf8db2cd15be.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Julee Norby,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Julee Norby,ou=Janitorial,dc=bitwarden,dc=com", - email: "NorbyJ@affed2f672a845bead4365ae80e4a101.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharai Torok,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sharai Torok,ou=Payroll,dc=bitwarden,dc=com", - email: "TorokS@11aa381a3094436abdc8bd9975f709cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Leontine OShaughnessey,ou=Payroll,dc=bitwarden,dc=com", - email: "OShaughL@d6721ca94efc423ca3ff9d14e2b46e8c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Franklyn Sugandi,ou=Product Development,dc=bitwarden,dc=com", - email: "SugandiF@528c9fa3f4634d4b9c93989a607b8098.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cefee Donelan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Cefee Donelan,ou=Payroll,dc=bitwarden,dc=com", - email: "DonelanC@7f74d23b6c664be682e93e811e1b368f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jderek Sankey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jderek Sankey,ou=Management,dc=bitwarden,dc=com", - email: "SankeyJ@30fd8caea98d43dc8f4491c614480126.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sid Barnhill,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Sid Barnhill,ou=Product Testing,dc=bitwarden,dc=com", - email: "BarnhilS@1d677d74737a4c97a99e772d549b45f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kamlesh Hoang,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kamlesh Hoang,ou=Peons,dc=bitwarden,dc=com", - email: "HoangK@8441796b12754e19879e114c62d45933.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sarath McCall,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sarath McCall,ou=Payroll,dc=bitwarden,dc=com", - email: "McCallS@95704a5d367a4911b51583656800520a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nermana Douglas,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Nermana Douglas,ou=Management,dc=bitwarden,dc=com", - email: "DouglasN@11af325799324b3caac4bd3790e434d4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Student Sonne,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Student Sonne,ou=Janitorial,dc=bitwarden,dc=com", - email: "SonneS@45ee09e16f7c4a6db6bbc017464dfb53.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maisie DaGama,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maisie DaGama,ou=Product Testing,dc=bitwarden,dc=com", - email: "DaGamaM@0c23adeda02746a4adaf81e3c1305ae8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Erminie Battershill,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Erminie Battershill,ou=Peons,dc=bitwarden,dc=com", - email: "BattersE@5be830b142b64fb88eef5251cf8d2b55.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jung Betts,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jung Betts,ou=Payroll,dc=bitwarden,dc=com", - email: "BettsJ@a31de830b7f74a7a9756ec57873d87d7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maddi Naolu,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maddi Naolu,ou=Product Testing,dc=bitwarden,dc=com", - email: "NaoluM@375640a8a3724defaeb05e0a11f25f5c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Daisey Przybycien,ou=Human Resources,dc=bitwarden,dc=com", - email: "PrzybycD@886606fb40e04b00b9dac2bed959f0a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ammar Parise,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ammar Parise,ou=Janitorial,dc=bitwarden,dc=com", - email: "PariseA@bacbd388513349be8db6d6f67cee97e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Yasar Ingrey,ou=Human Resources,dc=bitwarden,dc=com", - email: "IngreyY@c058e0f8bc3242ec861c9425536523d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Agata Khouderchan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Agata Khouderchan,ou=Management,dc=bitwarden,dc=com", - email: "KhouderA@70e1d012fde74a9ebe84bb09199482f1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joella Casey,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Joella Casey,ou=Product Development,dc=bitwarden,dc=com", - email: "CaseyJ@b3127b0c3cfd4bcf84fd8497792fb64f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sharone Torrell,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sharone Torrell,ou=Janitorial,dc=bitwarden,dc=com", - email: "TorrellS@4745fb1993c34e22b6d51076c613f514.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ebony Vitaglian,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ebony Vitaglian,ou=Peons,dc=bitwarden,dc=com", - email: "VitagliE@9ab7fb3558f841749b06922a784e1384.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Marcie Nagaraj,ou=Product Testing,dc=bitwarden,dc=com", - email: "NagarajM@973c4a1a5d1a4e4f9c421404b565659a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Evanne Callos,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Evanne Callos,ou=Product Development,dc=bitwarden,dc=com", - email: "CallosE@0bec70e6fa8d461ab29f67f7a630e586.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Purvee Kwast,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Purvee Kwast,ou=Peons,dc=bitwarden,dc=com", - email: "KwastP@e5509c3650ae4df593beadde93c97a4e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eluned Vinson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Eluned Vinson,ou=Administrative,dc=bitwarden,dc=com", - email: "VinsonE@3307e42f1d8c4293bd7a59fddc05e774.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Melisandra McVey,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Melisandra McVey,ou=Management,dc=bitwarden,dc=com", - email: "McVeyM@c1717c5f197c4d3987c6204634e4161c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Philipa Netdbs,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Philipa Netdbs,ou=Payroll,dc=bitwarden,dc=com", - email: "NetdbsP@ca30a33ca5c3482596934454af56a1c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Art Totten,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Art Totten,ou=Product Testing,dc=bitwarden,dc=com", - email: "TottenA@04b18099c35449929ab89aa5f1f3c21f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roxanna Colquette,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Roxanna Colquette,ou=Payroll,dc=bitwarden,dc=com", - email: "ColquetR@ba8c5354f208420b92e908dc80950154.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Janessa Bienek,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Janessa Bienek,ou=Product Development,dc=bitwarden,dc=com", - email: "BienekJ@cbebf122dc7c488591550ff3c1c37645.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Christa Schrage,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Christa Schrage,ou=Management,dc=bitwarden,dc=com", - email: "SchrageC@c7f3f4b5404343009726750451b5ec5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Glenna Trefry,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Glenna Trefry,ou=Janitorial,dc=bitwarden,dc=com", - email: "TrefryG@f3b9cbf7ffc94ed4be6295e8dcbbd47b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Cecco Langevin,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Cecco Langevin,ou=Peons,dc=bitwarden,dc=com", - email: "LangeviC@91a6f13d52a440dd95d5bd4f9cd6af23.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Magdy McCloskey,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Magdy McCloskey,ou=Administrative,dc=bitwarden,dc=com", - email: "McCloskM@40f66c0e51ca46c99bb0961cc624fcc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Filion Karam,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Filion Karam,ou=Management,dc=bitwarden,dc=com", - email: "KaramF@d8522133168344ce827a4130e7d16436.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nerissa Volz,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nerissa Volz,ou=Human Resources,dc=bitwarden,dc=com", - email: "VolzN@238696ade728438aa3391299a0dc9901.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Barb Crockett,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Barb Crockett,ou=Product Testing,dc=bitwarden,dc=com", - email: "CrocketB@f4587b22e18d47378cee893ba77c7d5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Klara deSalis,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Klara deSalis,ou=Janitorial,dc=bitwarden,dc=com", - email: "deSalisK@6f3b5ed6595f43e9be2b077643241ff9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Teri Hildum,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Teri Hildum,ou=Human Resources,dc=bitwarden,dc=com", - email: "HildumT@8a6ed36334664a75a9cc6a912bbbee51.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lorenza Pafilis,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lorenza Pafilis,ou=Peons,dc=bitwarden,dc=com", - email: "PafilisL@25a387134c7d40ab8adc2bebd578c5a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nickie Nakatsu,ou=Product Development,dc=bitwarden,dc=com", - email: "NakatsuN@04d1c6c3175f4974b260a83a63c42a2e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anda Joyce,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Anda Joyce,ou=Peons,dc=bitwarden,dc=com", - email: "JoyceA@8c2946e2ae1e4ec0a1e9edd05301d704.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rustu Biss,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Rustu Biss,ou=Human Resources,dc=bitwarden,dc=com", - email: "BissR@208b92f1fcf64797b4d34a8c215b4b33.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geer Devault,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Geer Devault,ou=Management,dc=bitwarden,dc=com", - email: "DevaultG@e340baad13364e06873f6c506e0427ea.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bea Nemec,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Bea Nemec,ou=Management,dc=bitwarden,dc=com", - email: "NemecB@a8ae1585c1f243f79caee56f5d3ecb02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Veneice Tobias,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Veneice Tobias,ou=Product Development,dc=bitwarden,dc=com", - email: "TobiasV@1a08913edfd44837a7e737b90b169ef7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sigrid Kneeshaw,ou=Human Resources,dc=bitwarden,dc=com", - email: "KneeshaS@ab120df6e5194bf6ac6a830bba26f7f2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dorolice Communication,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Dorolice Communication,ou=Management,dc=bitwarden,dc=com", - email: "CommuniD@fef3179c9c4841a591a83e801687f728.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Danica Middleton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Danica Middleton,ou=Human Resources,dc=bitwarden,dc=com", - email: "MiddletD@752a496e92da43f3852dc6fc94c2530e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Bradley Stokker,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Bradley Stokker,ou=Peons,dc=bitwarden,dc=com", - email: "StokkerB@7d6095181b454ecb8a89a9772da4d295.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kessia Reiser,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Kessia Reiser,ou=Management,dc=bitwarden,dc=com", - email: "ReiserK@8c41de16cc024468a97886c9f36d2b1f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Sluis Watchorn,ou=Janitorial,dc=bitwarden,dc=com", - email: "WatchorS@11e135fa916b4ec49a99ab186c82a0aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lope Keim,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lope Keim,ou=Janitorial,dc=bitwarden,dc=com", - email: "KeimL@724bb72313a2494c8bc8f0602203fd58.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tonya Hine,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Tonya Hine,ou=Janitorial,dc=bitwarden,dc=com", - email: "HineT@0b95963fb73545098f8197081089a1f3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Zahid Wilkie,ou=Product Testing,dc=bitwarden,dc=com", - email: "WilkieZ@d99d4047451b4e76b9f1ce1cef474716.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lisa Lande,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Lisa Lande,ou=Product Development,dc=bitwarden,dc=com", - email: "LandeL@a524fcb1eac4447e976069bb86ce0e2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lapkin Matney,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Lapkin Matney,ou=Administrative,dc=bitwarden,dc=com", - email: "MatneyL@b76d7503542847f29f63dbae71a2b656.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nicolette Bourgault,ou=Janitorial,dc=bitwarden,dc=com", - email: "BourgauN@a34dd1944e1c4d68b93ae1f0684316ef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Jandy Rtprelb,ou=Janitorial,dc=bitwarden,dc=com", - email: "RtprelbJ@b1f81108ccde47b8a2df0aba6ea7b365.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lenee Topp,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Lenee Topp,ou=Janitorial,dc=bitwarden,dc=com", - email: "ToppL@38661906a7a24233a4109f4402fd5f5f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sacto Miskelly,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Sacto Miskelly,ou=Payroll,dc=bitwarden,dc=com", - email: "MiskellS@45383e5a120c4c58a302e7c79762cfc3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sib Schissel,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Sib Schissel,ou=Product Development,dc=bitwarden,dc=com", - email: "SchisseS@ec1b95bc7d9949a5bf58938cc6fc4655.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tessa Severin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Tessa Severin,ou=Payroll,dc=bitwarden,dc=com", - email: "SeverinT@85dda47759d846abae02b74a574c7914.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drucill Brickey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Drucill Brickey,ou=Peons,dc=bitwarden,dc=com", - email: "BrickeyD@47062aafd0e846809818576b78318155.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caterina StMartin,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Caterina StMartin,ou=Administrative,dc=bitwarden,dc=com", - email: "StMartiC@0710345c27d44c78bde32a03e3d70c26.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rojer Jurek,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Rojer Jurek,ou=Peons,dc=bitwarden,dc=com", - email: "JurekR@c5b018dcfeca4e9987b035dbd8f019fb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shannah Colpitts,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shannah Colpitts,ou=Administrative,dc=bitwarden,dc=com", - email: "ColpittS@ec5b8f0e9ac54265b8c5ceea3f25604f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Holst Lowder,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Holst Lowder,ou=Janitorial,dc=bitwarden,dc=com", - email: "LowderH@9bec1f480eec4baea66a1e4c2e434262.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hernan Cano,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Hernan Cano,ou=Management,dc=bitwarden,dc=com", - email: "CanoH@cad06adc163e4feeb3c82e23f3cc80c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Opto Broten,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Opto Broten,ou=Human Resources,dc=bitwarden,dc=com", - email: "BrotenO@c26e885b4f4a47e7befaa9bedce07d04.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jacquenette Metcalfe,ou=Payroll,dc=bitwarden,dc=com", - email: "MetcalfJ@49a5c823cbe74e80b9d7e45aa3c6dc0c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Loralyn Lystuik,ou=Administrative,dc=bitwarden,dc=com", - email: "LystuikL@8b4252ea9d114f95b65956efe85c0aae.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Pirooz Bilodeau,ou=Product Testing,dc=bitwarden,dc=com", - email: "BilodeaP@ae1bd8aa112143fa87c88a44e69aa310.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Gyula Aboussouan,ou=Product Development,dc=bitwarden,dc=com", - email: "AboussoG@a93b6f13965d4a27ab4c14afef06d0ee.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Jaymee Stephen,ou=Human Resources,dc=bitwarden,dc=com", - email: "StephenJ@9c33cfc2346e4ce69bd595e18c9344a0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jill Domine,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jill Domine,ou=Management,dc=bitwarden,dc=com", - email: "DomineJ@f46633fbb9a14011a26194c56d6fd793.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Calypso Bolding,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Calypso Bolding,ou=Human Resources,dc=bitwarden,dc=com", - email: "BoldingC@defab017f9734cfab5b3fea4ed24112c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Camille Legrandvallet,ou=Product Development,dc=bitwarden,dc=com", - email: "LegrandC@7848d01e47bb47dd88ac5b785d126995.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicolina Scp,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Nicolina Scp,ou=Janitorial,dc=bitwarden,dc=com", - email: "ScpN@3fe7f6d7adf6406f923792a176bd4ea0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Beverlee Hagstrom,ou=Administrative,dc=bitwarden,dc=com", - email: "HagstroB@849b3c4e1c2c440d9331e7ccb7fe6ee8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Walter Cuddy,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Walter Cuddy,ou=Janitorial,dc=bitwarden,dc=com", - email: "CuddyW@afcd0af4da324c3492fbd5aaa52ff03c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chellappan Parmaksezian,ou=Peons,dc=bitwarden,dc=com", - email: "ParmaksC@511ccdcb357841e29d15d33838533afe.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ruby Mattson,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Ruby Mattson,ou=Janitorial,dc=bitwarden,dc=com", - email: "MattsonR@bb05d1b4bcfb47c3a365c022dca10213.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ranna Bedford,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Ranna Bedford,ou=Payroll,dc=bitwarden,dc=com", - email: "BedfordR@d4eaa963470a4ec593f45c3b1f5e6d31.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Amalle Rodi,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Amalle Rodi,ou=Payroll,dc=bitwarden,dc=com", - email: "RodiA@36bf168f83f54de6b68d81c3236caec7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eolande Tarver,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Eolande Tarver,ou=Human Resources,dc=bitwarden,dc=com", - email: "TarverE@ee233aa2d9a24ed1b6259dfbaed5ede4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilda Kirady,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tilda Kirady,ou=Product Testing,dc=bitwarden,dc=com", - email: "KiradyT@f131b0c80bf2427c8f1448cabfd51b89.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shailin Harris,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Shailin Harris,ou=Product Development,dc=bitwarden,dc=com", - email: "HarrisS@b97f63fadf014761ad37c4e561572265.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Axel Panter,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Axel Panter,ou=Payroll,dc=bitwarden,dc=com", - email: "PanterA@559e1a46c2f944d8a33837a661c67fa0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Karel McKerrow,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Karel McKerrow,ou=Janitorial,dc=bitwarden,dc=com", - email: "McKerroK@a54f12818a1846468b5223c21ce7b95a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Hesham SYSINT,ou=Product Testing,dc=bitwarden,dc=com", - email: "SYSINTH@ff55511857a042e0b4f985da98eaf06c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arabelle Jepson,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Arabelle Jepson,ou=Product Development,dc=bitwarden,dc=com", - email: "JepsonA@b034a4332db1440db9d21ffa224b40ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Donna Imhof,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Donna Imhof,ou=Payroll,dc=bitwarden,dc=com", - email: "ImhofD@31e0e9341ea74d639b4c5d690dfc3510.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Tilly Mastenbrook,ou=Product Development,dc=bitwarden,dc=com", - email: "MastenbT@970a67116dba428ca784557a5cd27357.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lucila Caruth,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Lucila Caruth,ou=Management,dc=bitwarden,dc=com", - email: "CaruthL@4f4529779c39486286005f0294a1558e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Serban Kamal,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Serban Kamal,ou=Janitorial,dc=bitwarden,dc=com", - email: "KamalS@5f77a03327624c95b0af47acd4b143e5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Suzann Minter,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Suzann Minter,ou=Product Development,dc=bitwarden,dc=com", - email: "MinterS@f3b7d3d07c2e403b8aacf9226428b2e0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roselia Valvasori,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Roselia Valvasori,ou=Product Development,dc=bitwarden,dc=com", - email: "ValvasoR@dea332c9554341478a9465c061b04c2c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nancey ODonovan,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Nancey ODonovan,ou=Payroll,dc=bitwarden,dc=com", - email: "ODonovaN@d292ac0c300a44aaaa8fa15264950aa9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Deva Deugau,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Deva Deugau,ou=Payroll,dc=bitwarden,dc=com", - email: "DeugauD@c1864662acf34812bb78c7f7029d15f8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Gheorghe Lipski,ou=Payroll,dc=bitwarden,dc=com", - email: "LipskiG@6a7ad90af8b14ef5805ef3e5ef79c783.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Almire Rokas,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Almire Rokas,ou=Product Development,dc=bitwarden,dc=com", - email: "RokasA@70f44c830c534fd69815f0a242b800aa.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Nguyet Kawashima,ou=Human Resources,dc=bitwarden,dc=com", - email: "KawashiN@2a1378ca3fed44339fabf27d28472e8d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aideen Sterian,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Aideen Sterian,ou=Product Development,dc=bitwarden,dc=com", - email: "SterianA@86ec81373a8049308a0ea3aa5ec73e40.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Norma Gording,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Norma Gording,ou=Peons,dc=bitwarden,dc=com", - email: "GordingN@4ea4f1e353e542d591c9ee228e04b29f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Caye LeTarte,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Caye LeTarte,ou=Human Resources,dc=bitwarden,dc=com", - email: "LeTarteC@b33b3555a0154b8d9ff4ef8378b7831c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Odile Blaufus,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Odile Blaufus,ou=Product Development,dc=bitwarden,dc=com", - email: "BlaufusO@4d42e606140043c2b9dd8fa49a74f077.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerti Macchiusi,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Gerti Macchiusi,ou=Peons,dc=bitwarden,dc=com", - email: "MacchiuG@5bfdb02bbe094e32837af4fd211ac0c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmelita Fucito,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Carmelita Fucito,ou=Product Development,dc=bitwarden,dc=com", - email: "FucitoC@21bcf6a485b34cf591de5e2c4c73b2a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Xenia Ertan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Xenia Ertan,ou=Management,dc=bitwarden,dc=com", - email: "ErtanX@3735d00458534db99064f02f9211b0c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Foster Swinson,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Foster Swinson,ou=Administrative,dc=bitwarden,dc=com", - email: "SwinsonF@ca07554d305246dd85334089406d833c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Jerrylee Stennett,ou=Payroll,dc=bitwarden,dc=com", - email: "StennetJ@5bfe34f0b38046f495b7f4a7ffee01c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Fwpreg Liem,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Fwpreg Liem,ou=Administrative,dc=bitwarden,dc=com", - email: "LiemF@c28624b05f7d4c31811fad5e0d04b1e6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Rolande MacMeekin,ou=Product Development,dc=bitwarden,dc=com", - email: "MacMeekR@a85aab1f1ab04cd48420e81e7374b4e8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Ernaline Rakotomalala,ou=Human Resources,dc=bitwarden,dc=com", - email: "RakotomE@16e252f623154ea09c88ae20c619b8c4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Yevette Egan,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Yevette Egan,ou=Product Testing,dc=bitwarden,dc=com", - email: "EganY@abb4a2ffe4d34b86b74539eca6366630.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clarice Seymour,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Clarice Seymour,ou=Management,dc=bitwarden,dc=com", - email: "SeymourC@2b13da408414484c934b524c33272c48.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Mohammed Popowicz,ou=Product Development,dc=bitwarden,dc=com", - email: "PopowicM@db7691c9dca24eb7875f7a9259652b96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Clement Bnrinfo,ou=Payroll,dc=bitwarden,dc=com", - email: "BnrinfoC@b1fdb151f0e64e1a958a0e82820ba255.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miles Khorami,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Miles Khorami,ou=Payroll,dc=bitwarden,dc=com", - email: "KhoramiM@6f609804b5454243a8f49419cf4fa238.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Roseann Uhlhorn,ou=Administrative,dc=bitwarden,dc=com", - email: "UhlhornR@ed7609251fc6464495c48d57ffb093b6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joon Panton,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Joon Panton,ou=Administrative,dc=bitwarden,dc=com", - email: "PantonJ@399088e535dc444183a128d7fd1a5d16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Olympe Calmejane,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Olympe Calmejane,ou=Management,dc=bitwarden,dc=com", - email: "CalmejaO@9afe54538fed45b288aa10f6ca71fa1c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Felicdad Thornber,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Felicdad Thornber,ou=Peons,dc=bitwarden,dc=com", - email: "ThornbeF@a48701aa8d324e65a88e2c654b93d791.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pradeep Recktenwald,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Pradeep Recktenwald,ou=Management,dc=bitwarden,dc=com", - email: "RecktenP@4a5d6761844a487688a8f353a67dc3a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vanya Sherrill,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Vanya Sherrill,ou=Administrative,dc=bitwarden,dc=com", - email: "SherrilV@397524543d124dbf9d2177984f3399f5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Kittie Bangia,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Kittie Bangia,ou=Peons,dc=bitwarden,dc=com", - email: "BangiaK@aab792405d0e421e9faa1d2235dbde11.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Freek Xayaraj,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Freek Xayaraj,ou=Product Development,dc=bitwarden,dc=com", - email: "XayarajF@b2d36917909a45fd9de4c6c83faf6196.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emelina Dotsey,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Emelina Dotsey,ou=Payroll,dc=bitwarden,dc=com", - email: "DotseyE@2a2ab2f1dc034914a837f9a2159196ca.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Jacob Scss,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Jacob Scss,ou=Management,dc=bitwarden,dc=com", - email: "ScssJ@eb51241312c644a68d6f84102cb2d201.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nicholas Palasek,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nicholas Palasek,ou=Product Development,dc=bitwarden,dc=com", - email: "PalasekN@f6469cbfb72544718327959dbf443a96.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Business Worsley,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Business Worsley,ou=Management,dc=bitwarden,dc=com", - email: "WorsleyB@400859d9959f4901a5309e45fdb61bf6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dita Billard,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Dita Billard,ou=Human Resources,dc=bitwarden,dc=com", - email: "BillardD@96a96fd515be425ca19359bc8dcf6a6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coleman Holman,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Coleman Holman,ou=Human Resources,dc=bitwarden,dc=com", - email: "HolmanC@9fb3bab6a5274e42930ef0c4e486700b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elberta Shnider,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Elberta Shnider,ou=Management,dc=bitwarden,dc=com", - email: "ShniderE@9aa7896234604e35853331a58b365781.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Gerrilee Ladd,ou=Human Resources,dc=bitwarden,dc=com", - email: "LaddG@c3158f1fa2f94243a73d4266ce1cfc71.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Judie Buhrkuhl,ou=Payroll,dc=bitwarden,dc=com", - email: "BuhrkuhJ@bf35e2dd921644e489469fd3b907aac9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mirabel Queries,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Mirabel Queries,ou=Administrative,dc=bitwarden,dc=com", - email: "QueriesM@d37e812441464f08ac2750e113db6273.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Luigi Strayhorn,ou=Janitorial,dc=bitwarden,dc=com", - email: "StrayhoL@fc3a6a2ed2a041edaaee095273406b72.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Elvert Dolginoff,ou=Payroll,dc=bitwarden,dc=com", - email: "DolginoE@fd814d95e9dc49a0869a81b514b124c5.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arts Marttinen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Arts Marttinen,ou=Payroll,dc=bitwarden,dc=com", - email: "MarttinA@aa04f1225a3142f7b6d7d981c171a9da.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Velma Goldberg,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Velma Goldberg,ou=Product Development,dc=bitwarden,dc=com", - email: "GoldberV@f282bdd196b049c89323e32ec5a7899a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Anet Sanity,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Anet Sanity,ou=Peons,dc=bitwarden,dc=com", - email: "SanityA@8be534402b894a65896ab57da74025f9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Pars Events,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Pars Events,ou=Administrative,dc=bitwarden,dc=com", - email: "EventsP@e713d665881b44ac9ce046c8aa4c6aed.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Wilow Veloz,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Wilow Veloz,ou=Payroll,dc=bitwarden,dc=com", - email: "VelozW@a58a307053124302a6ca25cc3c4fe9ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Grayce Dunnion,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Grayce Dunnion,ou=Management,dc=bitwarden,dc=com", - email: "DunnionG@fc6babf36ff04b1ba708df129305676b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Starlin Schrader,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Starlin Schrader,ou=Janitorial,dc=bitwarden,dc=com", - email: "SchradeS@d0d4dffbb82e4dbdbf12aa7aeb40f542.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Desire Nagle,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Desire Nagle,ou=Janitorial,dc=bitwarden,dc=com", - email: "NagleD@fdf7c005242c47b4bd750584e7c3c19c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Shaylah Haertel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Shaylah Haertel,ou=Administrative,dc=bitwarden,dc=com", - email: "HaertelS@cb3d55c1f17a445fad106ff05cef5824.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tomi LaFargue,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tomi LaFargue,ou=Management,dc=bitwarden,dc=com", - email: "LaFarguT@47b3a42002e74101b1c82f87517bcbef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Willard Kammerer,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Willard Kammerer,ou=Peons,dc=bitwarden,dc=com", - email: "KammereW@1ee81678c18a401888dd91f025f34959.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tyronda Wippel,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tyronda Wippel,ou=Administrative,dc=bitwarden,dc=com", - email: "WippelT@4ec22cc100774410b5e1902a4221791b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carmina Fulmer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Carmina Fulmer,ou=Management,dc=bitwarden,dc=com", - email: "FulmerC@31bdf3f083274a9a823bbf5bbd24461a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Tricord Mullinix,ou=Product Testing,dc=bitwarden,dc=com", - email: "MulliniT@14182a5bfd714b33b79ce62ac2db69ad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=LyKhanh Sumpter,ou=Peons,dc=bitwarden,dc=com", - email: "SumpterL@48f0936a82dc447d9d8007505168b4a9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Sukey Sato,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Sukey Sato,ou=Human Resources,dc=bitwarden,dc=com", - email: "SatoS@c13dcfb6eda14d3a8fe16fc4279da963.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Coletta Malkiewicz,ou=Peons,dc=bitwarden,dc=com", - email: "MalkiewC@10a46cb8875644479396c1c5e3228c3c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lawrence Perrella,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Lawrence Perrella,ou=Peons,dc=bitwarden,dc=com", - email: "PerrellL@95a30cb6b6df4f6cbb4f3a7dd5e82fb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Nathan Trumble,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Nathan Trumble,ou=Product Development,dc=bitwarden,dc=com", - email: "TrumbleN@dfa5577bb9624995ab3eb6b74bc12412.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=ShenZhi Stratton,ou=Human Resources,dc=bitwarden,dc=com", - email: "StrattoS@683112f18e2b4c49865ce3f726ce15d9.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Noslab Gribbons,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Noslab Gribbons,ou=Product Development,dc=bitwarden,dc=com", - email: "GribbonN@939ff1674a5f4554858a2fd6d59c6ec0.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Alleen Czarnecki,ou=Administrative,dc=bitwarden,dc=com", - email: "CzarnecA@33f3610924fd40f8baab137780c1a3cc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Chandra Pawlikowski,ou=Peons,dc=bitwarden,dc=com", - email: "PawlikoC@8415106c9bc644ca88df9b8987cb1aef.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Alayne Jurman,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Alayne Jurman,ou=Peons,dc=bitwarden,dc=com", - email: "JurmanA@6a21fb77585b45b89d50ed136958d009.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Ashlee Lamey,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Ashlee Lamey,ou=Peons,dc=bitwarden,dc=com", - email: "LameyA@2ea5cd05f7bb4e668e89ea0ce9ab618b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Zena Lakshminarayan,ou=Product Development,dc=bitwarden,dc=com", - email: "LakshmiZ@2e06903f00cc4bf8844eeda994fe2f9b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Miquela Gilles,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Miquela Gilles,ou=Peons,dc=bitwarden,dc=com", - email: "GillesM@87d2a0e0ce5644aa904b7d1121de84a3.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Arlana Ghani,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Arlana Ghani,ou=Management,dc=bitwarden,dc=com", - email: "GhaniA@5464c7892e2c49b9ab8b77fcfa248401.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Avinash Rospars,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Avinash Rospars,ou=Product Development,dc=bitwarden,dc=com", - email: "RosparsA@d9e32d7c83eb4ccf8004a41c9874f6a2.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Raman Reporting,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Raman Reporting,ou=Management,dc=bitwarden,dc=com", - email: "ReportiR@58d046473fe24d0d8bf6f510239a1102.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Akemi Abdulla,ou=Product Testing,dc=bitwarden,dc=com", - email: "AbdullaA@9c9fea1883e841858c60b3dbea2fdfa1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Vince Dallal,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Vince Dallal,ou=Janitorial,dc=bitwarden,dc=com", - email: "DallalV@75bd7d8bfac045f4b199b40359d5079a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Leanne Gorfine,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Leanne Gorfine,ou=Product Development,dc=bitwarden,dc=com", - email: "GorfineL@c4b901cf01964b3f995f83f754a51496.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Satyajit Bourbonnais,ou=Product Testing,dc=bitwarden,dc=com", - email: "BourbonS@dce637b43f194588ba44f478eabb0b1d.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Corinna Bashyam,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Corinna Bashyam,ou=Payroll,dc=bitwarden,dc=com", - email: "BashyamC@537a7fb8e8084a50ad524dcf8366437e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Carlyn Braaksma,ou=Payroll,dc=bitwarden,dc=com", - email: "BraaksmC@971b6275e2eb43e286f57ac3cf73eb02.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Etta Medlin,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Etta Medlin,ou=Payroll,dc=bitwarden,dc=com", - email: "MedlinE@de77b93d37dd4a028afd3b2ff785ef86.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Robinia Hammonds,ou=Product Testing,dc=bitwarden,dc=com", - email: "HammondR@3d8456e2419f4f54a124d2319bee4b8e.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Zsazsa Sebeh,ou=Administrative,dc=bitwarden,dc=com", - email: "SebehZ@1c7214ddcee648aeb2dd535a7efb20fc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Stew Chopowick,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Stew Chopowick,ou=Administrative,dc=bitwarden,dc=com", - email: "ChopowiS@7179efeeba4d4c0496c30132c2185e2b.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Brigitta Ribaldo,ou=Administrative,dc=bitwarden,dc=com", - email: "RibaldoB@0bf16d212dca48d58b5ba2e7e2475978.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Josie Clysdale,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Josie Clysdale,ou=Administrative,dc=bitwarden,dc=com", - email: "ClysdalJ@2d39ed714c62438fae50357ee6eb38cf.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Moyna Rolph,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Moyna Rolph,ou=Payroll,dc=bitwarden,dc=com", - email: "RolphM@50d89f8e16e348cfb044b13e46694d6c.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Roze Wiebe,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Roze Wiebe,ou=Human Resources,dc=bitwarden,dc=com", - email: "WiebeR@c82bc1c119194cf1a43f9559e17d2471.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Khai Habelrih,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Khai Habelrih,ou=Administrative,dc=bitwarden,dc=com", - email: "HabelriK@0d7d9d911eb94900a2388d79a61e9e24.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=How Zisu,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=How Zisu,ou=Janitorial,dc=bitwarden,dc=com", - email: "ZisuH@bdcc53d4f0d44402a52a4e37b6a55cb6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Manimozhi Waddick,ou=Payroll,dc=bitwarden,dc=com", - email: "WaddickM@3d584c1804c549129f374b5c39437b16.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Morena Zeggil,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Morena Zeggil,ou=Product Development,dc=bitwarden,dc=com", - email: "ZeggilM@9b4c46b33b054223bd92a713c0feadad.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Maitilde Ricketts,ou=Product Testing,dc=bitwarden,dc=com", - email: "RickettM@f07caf5199104113b8565ebc43aef936.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Tayeb Castonguay,ou=Administrative,dc=bitwarden,dc=com", - email: "CastongT@c2b6d12d70a44debb2ac584b41f1a891.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Aprilette Iarocci,ou=Janitorial,dc=bitwarden,dc=com", - email: "IarocciA@c5e55ae911a448dbaf1704a805131e06.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden,dc=com", - externalId: "cn=Schouwen Boeyen,ou=Payroll,dc=bitwarden,dc=com", - email: "BoeyenS@1ae9744443f84caa8574cf6bcf7a4770.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Zhanna Gaconnier,ou=Administrative,dc=bitwarden,dc=com", - email: "GaconniZ@9fcee4dd8c594911a33a035cfd069d6f.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Dimitrios Schanne,ou=Administrative,dc=bitwarden,dc=com", - email: "SchanneD@77df1d4a30ab443892398806ba3c7576.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Mathew Jarvie,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Mathew Jarvie,ou=Peons,dc=bitwarden,dc=com", - email: "JarvieM@75fda0f549234930a497d29af4b3d736.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Joelle Eason,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Joelle Eason,ou=Product Development,dc=bitwarden,dc=com", - email: "EasonJ@1f78de795d09437e9e2f587d718715dc.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Angil Dungan,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Angil Dungan,ou=Management,dc=bitwarden,dc=com", - email: "DunganA@4e65ebf97c5c4a7e80cecb934226e7a6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Geraldine Landaveri,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Geraldine Landaveri,ou=Peons,dc=bitwarden,dc=com", - email: "LandaveG@bde67e3488db434a83b88b3c94ba33e7.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madeline Congdon,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Madeline Congdon,ou=Administrative,dc=bitwarden,dc=com", - email: "CongdonM@a89e7ae3165749939a17b64967946632.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Rod Bedford,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Rod Bedford,ou=Administrative,dc=bitwarden,dc=com", - email: "BedfordR@9e2b20abc536451c80331d81dc08fb80.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden,dc=com", - externalId: "cn=Elyssa Shivcharan,ou=Administrative,dc=bitwarden,dc=com", - email: "ShivchaE@8131a404a7e44763a5c3195d705b1dc8.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Eula Steip,ou=Janitorial,dc=bitwarden,dc=com", - externalId: "cn=Eula Steip,ou=Janitorial,dc=bitwarden,dc=com", - email: "SteipE@6188569c9fcd404582c5c4a9062e9bc6.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Lennart Murphin,ou=Human Resources,dc=bitwarden,dc=com", - externalId: "cn=Lennart Murphin,ou=Human Resources,dc=bitwarden,dc=com", - email: "MurphinL@dc4ca8de100a44c98afc7e8972ff5e00.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Emmye Reeves,ou=Peons,dc=bitwarden,dc=com", - externalId: "cn=Emmye Reeves,ou=Peons,dc=bitwarden,dc=com", - email: "ReevesE@fa3acd28f4de417999317e1321170d2a.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Madel Fiorile,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Madel Fiorile,ou=Product Development,dc=bitwarden,dc=com", - email: "FiorileM@1487aec275284e49a79c5c4099f33bdb.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Hiroki Edwards,ou=Product Development,dc=bitwarden,dc=com", - externalId: "cn=Hiroki Edwards,ou=Product Development,dc=bitwarden,dc=com", - email: "EdwardsH@40814008a82d4ec3b13f45cb20ad20a4.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Douglass Rivest,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Douglass Rivest,ou=Product Testing,dc=bitwarden,dc=com", - email: "RivestD@289444924c894df68dc76e9d8add4066.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Tammi Kramer,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Tammi Kramer,ou=Management,dc=bitwarden,dc=com", - email: "KramerT@096bd16e7b9047ef820ae279d36addd1.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden,dc=com", - externalId: "cn=Drusy Mahoney,ou=Product Testing,dc=bitwarden,dc=com", - email: "MahoneyD@4583e86a2ba94a5da0ee973472b7f221.bitwarden.com", - }, - { - deleted: false, - disabled: false, - referenceId: "cn=Brunhilda Bezdel,ou=Management,dc=bitwarden,dc=com", - externalId: "cn=Brunhilda Bezdel,ou=Management,dc=bitwarden,dc=com", - email: "BezdelB@523cb0530fdd41dc8c1ab88cc74839c7.bitwarden.com", - }, -]; -export const users11k = data.map((v) => UserEntry.fromJSON({ ...v, email: v.email.toLowerCase() })); diff --git a/src/services/sync.service.spec.ts b/src/services/sync.service.spec.ts index 4a3d4f99a..c41173da4 100644 --- a/src/services/sync.service.spec.ts +++ b/src/services/sync.service.spec.ts @@ -10,8 +10,6 @@ import { OrganizationImportRequest } from "@/jslib/common/src/models/request/org import { BatchRequestBuilder } from "@/jslib/common/src/services/batch-requests.service"; import { SingleRequestBuilder } from "@/jslib/common/src/services/single-request.service"; -import { group11k } from "../../openldap/group-fixtures-11000"; -import { users11k } from "../../openldap/user-fixtures-11000"; import { DirectoryType } from "../enums/directoryType"; import { LdapConfiguration } from "../models/ldapConfiguration"; import { SyncConfiguration } from "../models/syncConfiguration"; @@ -86,9 +84,8 @@ describe("SyncService", () => { singleRequestBuilder.buildRequest.mockReturnValue(mockRequest); - const results = await syncService.sync(true, false); + await syncService.sync(true, false); - expect(results).toEqual([group11k, users11k]); expect(apiService.postPublicImportDirectory).toHaveBeenCalledTimes(1); }); @@ -100,8 +97,8 @@ describe("SyncService", () => { stateService.getSync.mockResolvedValue(getLargeSyncConfiguration()); cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(1)); - const batchSize = 2000; - const totalUsers = users11k.length; + const batchSize = 4; + const totalUsers = 20; const mockRequests = []; for (let i = 0; i <= totalUsers; i += batchSize) { @@ -115,14 +112,9 @@ describe("SyncService", () => { batchRequestBuilder.buildRequest.mockReturnValue(mockRequests); - const result = await syncService.sync(true, false); + await syncService.sync(true, false); - // This test relies on having a config with 11k users created. The main thing we want to test here is that the - // requests are separated into multiple REST requests. - expect(apiService.postPublicImportDirectory).toHaveBeenCalledTimes( - Math.ceil(users11k.length / batchSize), - ); - expect(result).toEqual([group11k, users11k]); + expect(apiService.postPublicImportDirectory).toHaveBeenCalledTimes(6); }); it("does not post for the same hash", async () => { From c7cde299bdee523542c8d54186655f2be6fc949a Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 7 Jan 2025 10:03:33 -0500 Subject: [PATCH 04/11] cleanup --- jslib/common/src/services/batch-requests.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jslib/common/src/services/batch-requests.service.ts b/jslib/common/src/services/batch-requests.service.ts index 832592c0c..c90ccfdca 100644 --- a/jslib/common/src/services/batch-requests.service.ts +++ b/jslib/common/src/services/batch-requests.service.ts @@ -6,7 +6,7 @@ import { UserEntry } from "@/src/models/userEntry"; import { RequestBuilderAbstratction } from "../abstractions/request-builder.service"; export class BatchRequestBuilder implements RequestBuilderAbstratction { - constructor(private batchSize: number = 2000) {} + batchSize = 2000; buildRequest( groups: GroupEntry[], From d0f260d25d995bdd4eab14e27697f86e3939db01 Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 7 Jan 2025 10:17:37 -0500 Subject: [PATCH 05/11] fix test --- .../services/batch-requests.service.spec.ts | 51 ++++++++----------- 1 file changed, 20 insertions(+), 31 deletions(-) diff --git a/jslib/common/src/services/batch-requests.service.spec.ts b/jslib/common/src/services/batch-requests.service.spec.ts index 722bd02c4..0a0e22559 100644 --- a/jslib/common/src/services/batch-requests.service.spec.ts +++ b/jslib/common/src/services/batch-requests.service.spec.ts @@ -7,43 +7,35 @@ import { SingleRequestBuilder } from "./single-request.service"; describe("BatchingService", () => { let batchRequestBuilder: BatchRequestBuilder; let singleRequestBuilder: SingleRequestBuilder; - let userSimulator: (userCount: number) => UserEntry[]; - let groupSimulator: (userCount: number) => GroupEntry[]; - beforeEach(async () => { - const batchSize = 2000; + function userSimulator(userCount: number) { + const simulatedArray: UserEntry[] = []; + for (let i = 0; i <= userCount; i++) { + simulatedArray.push(new UserEntry()); + } + return simulatedArray; + } + + function groupSimulator(groupCount: number) { + const simulatedArray: GroupEntry[] = []; + for (let i = 0; i <= groupCount; i++) { + simulatedArray.push(new GroupEntry()); + } + return simulatedArray; + } - batchRequestBuilder = new BatchRequestBuilder(batchSize); + beforeEach(async () => { + batchRequestBuilder = new BatchRequestBuilder(); singleRequestBuilder = new SingleRequestBuilder(); - - userSimulator = (userCount: number) => { - const simulatedArray: UserEntry[] = []; - for (let i = 0; i < userCount; i += batchSize) { - for (let j = 0; j <= batchSize; j++) { - simulatedArray.push(new UserEntry()); - } - } - return simulatedArray; - }; - - groupSimulator = (groupCount: number) => { - const simulatedArray: GroupEntry[] = []; - for (let i = 0; i < groupCount; i += batchSize) { - for (let j = 0; j <= batchSize; j++) { - simulatedArray.push(new GroupEntry()); - } - } - return simulatedArray; - }; }); - it("Batches requests for > 2000 users", () => { + it("BatchRequestBuilder batches requests for > 2000 users", () => { const mockGroups = groupSimulator(11000); const mockUsers = userSimulator(11000); const requests = batchRequestBuilder.buildRequest(mockGroups, mockUsers, true, true); - expect(requests.length).toEqual(14); + expect(requests.length).toEqual(12); }); it("SingleRequestBuilder returns single request for 200 users", () => { @@ -56,10 +48,7 @@ describe("BatchingService", () => { }); it("BatchRequestBuilder retuns an empty array when there are no users or groups", () => { - const mockGroups = groupSimulator(0); - const mockUsers = userSimulator(0); - - const requests = batchRequestBuilder.buildRequest(mockGroups, mockUsers, true, true); + const requests = batchRequestBuilder.buildRequest([], [], true, true); expect(requests).toEqual([]); }); From 3b0d3c1a6b284dcd3de5bd6c9bd89b34a209d620 Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 7 Jan 2025 10:29:34 -0500 Subject: [PATCH 06/11] cleanup --- src/services/sync.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/sync.service.ts b/src/services/sync.service.ts index f6b65e831..92d63d5ba 100644 --- a/src/services/sync.service.ts +++ b/src/services/sync.service.ts @@ -146,10 +146,10 @@ export class SyncService { return { hash, hashLegacy }; } - async compareToLastHash(hashes: HashResult): Promise { + async compareToLastHash(hashResult: HashResult): Promise { const lastHash = await this.stateService.getLastSyncHash(); - return lastHash == null || (hashes.hash !== lastHash && hashes.hashLegacy !== lastHash); + return lastHash == null || (hashResult.hash !== lastHash && hashResult.hashLegacy !== lastHash); } private removeDuplicateUsers(users: UserEntry[]) { From c26431b480bbfae00b985e6f373a47a7cee65c94 Mon Sep 17 00:00:00 2001 From: Brandon Date: Wed, 22 Jan 2025 14:54:57 -0500 Subject: [PATCH 07/11] rename services, refactor, fix test logic --- .../src/services/jslib-services.module.ts | 21 ++-- .../abstractions/directory-factory.service.ts | 15 --- src/abstractions/directory-factory.service.ts | 6 + .../abstractions/request-builder.service.ts | 4 +- src/app/services/services.module.ts | 14 +-- src/bwdc.ts | 21 +++- src/models/hashResult.ts | 4 - .../services/default-batch-request-builder.ts | 17 ++- .../default-batch-requests-builder.spec.ts | 24 ++-- .../default-single-request-builder.ts | 8 +- src/services/directory-factory.service.ts | 29 ++--- ...ldap-directory.service.integration.spec.ts | 54 +-------- src/services/sync-config-helpers.ts | 58 +++++++++ src/services/sync.service.spec.ts | 111 +++++------------- src/services/sync.service.ts | 43 ++++--- 15 files changed, 193 insertions(+), 236 deletions(-) delete mode 100644 jslib/common/src/abstractions/directory-factory.service.ts create mode 100644 src/abstractions/directory-factory.service.ts rename {jslib/common/src => src}/abstractions/request-builder.service.ts (75%) delete mode 100644 src/models/hashResult.ts rename jslib/common/src/services/batch-requests.service.ts => src/services/default-batch-request-builder.ts (69%) rename jslib/common/src/services/batch-requests.service.spec.ts => src/services/default-batch-requests-builder.spec.ts (62%) rename jslib/common/src/services/single-request.service.ts => src/services/default-single-request-builder.ts (71%) create mode 100644 src/services/sync-config-helpers.ts diff --git a/jslib/angular/src/services/jslib-services.module.ts b/jslib/angular/src/services/jslib-services.module.ts index 82094fccf..65de72b8a 100644 --- a/jslib/angular/src/services/jslib-services.module.ts +++ b/jslib/angular/src/services/jslib-services.module.ts @@ -5,7 +5,6 @@ import { AppIdService as AppIdServiceAbstraction } from "@/jslib/common/src/abst import { BroadcasterService as BroadcasterServiceAbstraction } from "@/jslib/common/src/abstractions/broadcaster.service"; import { CryptoService as CryptoServiceAbstraction } from "@/jslib/common/src/abstractions/crypto.service"; import { CryptoFunctionService as CryptoFunctionServiceAbstraction } from "@/jslib/common/src/abstractions/cryptoFunction.service"; -import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; import { EnvironmentService as EnvironmentServiceAbstraction } from "@/jslib/common/src/abstractions/environment.service"; import { I18nService as I18nServiceAbstraction } from "@/jslib/common/src/abstractions/i18n.service"; import { LogService } from "@/jslib/common/src/abstractions/log.service"; @@ -20,16 +19,18 @@ import { Account } from "@/jslib/common/src/models/domain/account"; import { GlobalState } from "@/jslib/common/src/models/domain/globalState"; import { ApiService } from "@/jslib/common/src/services/api.service"; import { AppIdService } from "@/jslib/common/src/services/appId.service"; -import { BatchRequestBuilder } from "@/jslib/common/src/services/batch-requests.service"; import { ConsoleLogService } from "@/jslib/common/src/services/consoleLog.service"; import { CryptoService } from "@/jslib/common/src/services/crypto.service"; import { EnvironmentService } from "@/jslib/common/src/services/environment.service"; -import { SingleRequestBuilder } from "@/jslib/common/src/services/single-request.service"; import { StateService } from "@/jslib/common/src/services/state.service"; import { StateMigrationService } from "@/jslib/common/src/services/stateMigration.service"; import { TokenService } from "@/jslib/common/src/services/token.service"; -import { DirectoryFactoryService } from "@/src/services/directory-factory.service"; +import { DirectoryFactoryService } from "@/src/abstractions/directory-factory.service"; +import { StateService as StateServiceExtended } from "@/src/abstractions/state.service"; +import { DefaultBatchRequestBuilder } from "@/src/services/default-batch-request-builder"; +import { DefaultSingleRequestBuilder } from "@/src/services/default-single-request-builder"; +import { DefaultDirectoryFactoryService } from "@/src/services/directory-factory.service"; import { SafeInjectionToken, @@ -144,19 +145,17 @@ import { ValidationService } from "./validation.service"; deps: [StorageServiceAbstraction, SECURE_STORAGE], }), safeProvider({ - provide: BatchRequestBuilder, - useClass: BatchRequestBuilder, + provide: DefaultBatchRequestBuilder, useAngularDecorators: true, }), safeProvider({ - provide: SingleRequestBuilder, - useClass: SingleRequestBuilder, + provide: DefaultSingleRequestBuilder, useAngularDecorators: true, }), safeProvider({ - provide: DirectoryFactoryAbstraction, - useClass: DirectoryFactoryService, - useAngularDecorators: true, + provide: DirectoryFactoryService, + useClass: DefaultDirectoryFactoryService, + deps: [LogService, I18nServiceAbstraction, StateServiceExtended], }), ] satisfies SafeProvider[], }) diff --git a/jslib/common/src/abstractions/directory-factory.service.ts b/jslib/common/src/abstractions/directory-factory.service.ts deleted file mode 100644 index 0bc0b4e30..000000000 --- a/jslib/common/src/abstractions/directory-factory.service.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { DirectoryType } from "@/src/enums/directoryType"; -import { IDirectoryService } from "@/src/services/directory.service"; - -import { I18nService } from "./i18n.service"; -import { LogService } from "./log.service"; -import { StateService } from "./state.service"; - -export abstract class DirectoryFactoryAbstraction { - abstract createService( - type: DirectoryType, - logService: LogService, - i18nService: I18nService, - stateService: StateService, - ): IDirectoryService; -} diff --git a/src/abstractions/directory-factory.service.ts b/src/abstractions/directory-factory.service.ts new file mode 100644 index 000000000..90d2f6743 --- /dev/null +++ b/src/abstractions/directory-factory.service.ts @@ -0,0 +1,6 @@ +import { DirectoryType } from "@/src/enums/directoryType"; +import { IDirectoryService } from "@/src/services/directory.service"; + +export abstract class DirectoryFactoryService { + abstract createService(type: DirectoryType): IDirectoryService; +} diff --git a/jslib/common/src/abstractions/request-builder.service.ts b/src/abstractions/request-builder.service.ts similarity index 75% rename from jslib/common/src/abstractions/request-builder.service.ts rename to src/abstractions/request-builder.service.ts index 643e2fd8e..c853aacca 100644 --- a/jslib/common/src/abstractions/request-builder.service.ts +++ b/src/abstractions/request-builder.service.ts @@ -1,8 +1,8 @@ +import { OrganizationImportRequest } from "@/jslib/common/src/models/request/organizationImportRequest"; + import { GroupEntry } from "@/src/models/groupEntry"; import { UserEntry } from "@/src/models/userEntry"; -import { OrganizationImportRequest } from "../models/request/organizationImportRequest"; - export abstract class RequestBuilderAbstratction { buildRequest: ( groups: GroupEntry[], diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index 900b28b00..b3f13e85c 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -6,7 +6,6 @@ import { AppIdService as AppIdServiceAbstraction } from "@/jslib/common/src/abst import { BroadcasterService as BroadcasterServiceAbstraction } from "@/jslib/common/src/abstractions/broadcaster.service"; import { CryptoService as CryptoServiceAbstraction } from "@/jslib/common/src/abstractions/crypto.service"; import { CryptoFunctionService as CryptoFunctionServiceAbstraction } from "@/jslib/common/src/abstractions/cryptoFunction.service"; -import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; import { EnvironmentService as EnvironmentServiceAbstraction } from "@/jslib/common/src/abstractions/environment.service"; import { I18nService as I18nServiceAbstraction } from "@/jslib/common/src/abstractions/i18n.service"; import { LogService as LogServiceAbstraction } from "@/jslib/common/src/abstractions/log.service"; @@ -17,9 +16,7 @@ import { StorageService as StorageServiceAbstraction } from "@/jslib/common/src/ import { TokenService as TokenServiceAbstraction } from "@/jslib/common/src/abstractions/token.service"; import { StateFactory } from "@/jslib/common/src/factories/stateFactory"; import { GlobalState } from "@/jslib/common/src/models/domain/globalState"; -import { BatchRequestBuilder as BatchRequestAbstraction } from "@/jslib/common/src/services/batch-requests.service"; import { ContainerService } from "@/jslib/common/src/services/container.service"; -import { SingleRequestBuilder as SingleRequestAbstraction } from "@/jslib/common/src/services/single-request.service"; import { ElectronLogService } from "@/jslib/electron/src/services/electronLog.service"; import { ElectronPlatformUtilsService } from "@/jslib/electron/src/services/electronPlatformUtils.service"; import { ElectronRendererMessagingService } from "@/jslib/electron/src/services/electronRendererMessaging.service"; @@ -28,6 +25,10 @@ import { ElectronRendererStorageService } from "@/jslib/electron/src/services/el import { NodeApiService } from "@/jslib/node/src/services/nodeApi.service"; import { NodeCryptoFunctionService } from "@/jslib/node/src/services/nodeCryptoFunction.service"; +import { DirectoryFactoryService } from "@/src/abstractions/directory-factory.service"; +import { DefaultBatchRequestBuilder } from "@/src/services/default-batch-request-builder"; +import { DefaultSingleRequestBuilder } from "@/src/services/default-single-request-builder"; + import { AuthService as AuthServiceAbstraction } from "../../abstractions/auth.service"; import { StateService as StateServiceAbstraction } from "../../abstractions/state.service"; import { Account } from "../../models/account"; @@ -171,16 +172,15 @@ export function initFactory( provide: SyncService, useClass: SyncService, deps: [ - LogServiceAbstraction, CryptoFunctionServiceAbstraction, ApiServiceAbstraction, MessagingServiceAbstraction, I18nServiceAbstraction, EnvironmentServiceAbstraction, StateServiceAbstraction, - BatchRequestAbstraction, - SingleRequestAbstraction, - DirectoryFactoryAbstraction, + DefaultBatchRequestBuilder, + DefaultSingleRequestBuilder, + DirectoryFactoryService, ], }), safeProvider(AuthGuardService), diff --git a/src/bwdc.ts b/src/bwdc.ts index c8f3486af..e13fc8536 100644 --- a/src/bwdc.ts +++ b/src/bwdc.ts @@ -7,22 +7,23 @@ import { LogLevelType } from "@/jslib/common/src/enums/logLevelType"; import { StateFactory } from "@/jslib/common/src/factories/stateFactory"; import { GlobalState } from "@/jslib/common/src/models/domain/globalState"; import { AppIdService } from "@/jslib/common/src/services/appId.service"; -import { BatchRequestBuilder } from "@/jslib/common/src/services/batch-requests.service"; import { ContainerService } from "@/jslib/common/src/services/container.service"; import { CryptoService } from "@/jslib/common/src/services/crypto.service"; import { EnvironmentService } from "@/jslib/common/src/services/environment.service"; import { NoopMessagingService } from "@/jslib/common/src/services/noopMessaging.service"; -import { SingleRequestBuilder } from "@/jslib/common/src/services/single-request.service"; import { TokenService } from "@/jslib/common/src/services/token.service"; import { CliPlatformUtilsService } from "@/jslib/node/src/cli/services/cliPlatformUtils.service"; import { ConsoleLogService } from "@/jslib/node/src/cli/services/consoleLog.service"; import { NodeApiService } from "@/jslib/node/src/services/nodeApi.service"; import { NodeCryptoFunctionService } from "@/jslib/node/src/services/nodeCryptoFunction.service"; +import { DirectoryFactoryService } from "./abstractions/directory-factory.service"; import { Account } from "./models/account"; import { Program } from "./program"; import { AuthService } from "./services/auth.service"; -import { DirectoryFactoryService } from "./services/directory-factory.service"; +import { DefaultBatchRequestBuilder } from "./services/default-batch-request-builder"; +import { DefaultSingleRequestBuilder } from "./services/default-single-request-builder"; +import { DefaultDirectoryFactoryService } from "./services/directory-factory.service"; import { I18nService } from "./services/i18n.service"; import { KeytarSecureStorageService } from "./services/keytarSecureStorage.service"; import { LowdbStorageService } from "./services/lowdbStorage.service"; @@ -55,8 +56,8 @@ export class Main { stateService: StateService; stateMigrationService: StateMigrationService; directoryFactoryService: DirectoryFactoryService; - batchRequestBuilder: BatchRequestBuilder; - singleRequestBuilder: SingleRequestBuilder; + batchRequestBuilder: DefaultBatchRequestBuilder; + singleRequestBuilder: DefaultSingleRequestBuilder; constructor() { const applicationName = "Bitwarden Directory Connector"; @@ -152,8 +153,16 @@ export class Main { this.stateService, ); - this.syncService = new SyncService( + this.directoryFactoryService = new DefaultDirectoryFactoryService( this.logService, + this.i18nService, + this.stateService, + ); + + this.batchRequestBuilder = new DefaultBatchRequestBuilder(); + this.singleRequestBuilder = new DefaultSingleRequestBuilder(); + + this.syncService = new SyncService( this.cryptoFunctionService, this.apiService, this.messagingService, diff --git a/src/models/hashResult.ts b/src/models/hashResult.ts deleted file mode 100644 index ab9220949..000000000 --- a/src/models/hashResult.ts +++ /dev/null @@ -1,4 +0,0 @@ -export class HashResult { - hash: string; - hashLegacy: string; -} diff --git a/jslib/common/src/services/batch-requests.service.ts b/src/services/default-batch-request-builder.ts similarity index 69% rename from jslib/common/src/services/batch-requests.service.ts rename to src/services/default-batch-request-builder.ts index c90ccfdca..49405395c 100644 --- a/jslib/common/src/services/batch-requests.service.ts +++ b/src/services/default-batch-request-builder.ts @@ -5,9 +5,14 @@ import { UserEntry } from "@/src/models/userEntry"; import { RequestBuilderAbstratction } from "../abstractions/request-builder.service"; -export class BatchRequestBuilder implements RequestBuilderAbstratction { - batchSize = 2000; +import { batchSize } from "./sync.service"; +/** + * This class is responsible for batching large sync requests (>=2k users) into multiple smaller + * requests to the /import REST endpoint. This is done to ensure we are under the default + * maximum packet size for NGINX web servers to avoid the request potentially timing out + * */ +export class DefaultBatchRequestBuilder implements RequestBuilderAbstratction { buildRequest( groups: GroupEntry[], users: UserEntry[], @@ -26,8 +31,8 @@ export class BatchRequestBuilder implements RequestBuilderAbstratction { }); // Partition users - for (let i = 0; i < usersRequest.length; i += this.batchSize) { - const u = usersRequest.slice(i, i + this.batchSize); + for (let i = 0; i < usersRequest.length; i += batchSize) { + const u = usersRequest.slice(i, i + batchSize); const req = new OrganizationImportRequest({ groups: [], users: u, @@ -48,8 +53,8 @@ export class BatchRequestBuilder implements RequestBuilderAbstratction { }); // Partition groups - for (let i = 0; i < groupRequest.length; i += this.batchSize) { - const g = groupRequest.slice(i, i + this.batchSize); + for (let i = 0; i < groupRequest.length; i += batchSize) { + const g = groupRequest.slice(i, i + batchSize); const req = new OrganizationImportRequest({ groups: g, users: [], diff --git a/jslib/common/src/services/batch-requests.service.spec.ts b/src/services/default-batch-requests-builder.spec.ts similarity index 62% rename from jslib/common/src/services/batch-requests.service.spec.ts rename to src/services/default-batch-requests-builder.spec.ts index 0a0e22559..a26e5b04b 100644 --- a/jslib/common/src/services/batch-requests.service.spec.ts +++ b/src/services/default-batch-requests-builder.spec.ts @@ -1,32 +1,24 @@ import { GroupEntry } from "@/src/models/groupEntry"; import { UserEntry } from "@/src/models/userEntry"; -import { BatchRequestBuilder } from "./batch-requests.service"; -import { SingleRequestBuilder } from "./single-request.service"; +import { DefaultBatchRequestBuilder } from "./default-batch-request-builder"; +import { DefaultSingleRequestBuilder } from "./default-single-request-builder"; describe("BatchingService", () => { - let batchRequestBuilder: BatchRequestBuilder; - let singleRequestBuilder: SingleRequestBuilder; + let batchRequestBuilder: DefaultBatchRequestBuilder; + let singleRequestBuilder: DefaultSingleRequestBuilder; function userSimulator(userCount: number) { - const simulatedArray: UserEntry[] = []; - for (let i = 0; i <= userCount; i++) { - simulatedArray.push(new UserEntry()); - } - return simulatedArray; + return Array(userCount).fill(new UserEntry()); } function groupSimulator(groupCount: number) { - const simulatedArray: GroupEntry[] = []; - for (let i = 0; i <= groupCount; i++) { - simulatedArray.push(new GroupEntry()); - } - return simulatedArray; + return Array(groupCount).fill(new GroupEntry()); } beforeEach(async () => { - batchRequestBuilder = new BatchRequestBuilder(); - singleRequestBuilder = new SingleRequestBuilder(); + batchRequestBuilder = new DefaultBatchRequestBuilder(); + singleRequestBuilder = new DefaultSingleRequestBuilder(); }); it("BatchRequestBuilder batches requests for > 2000 users", () => { diff --git a/jslib/common/src/services/single-request.service.ts b/src/services/default-single-request-builder.ts similarity index 71% rename from jslib/common/src/services/single-request.service.ts rename to src/services/default-single-request-builder.ts index c5a2816bb..9fa7362de 100644 --- a/jslib/common/src/services/single-request.service.ts +++ b/src/services/default-single-request-builder.ts @@ -5,7 +5,13 @@ import { UserEntry } from "@/src/models/userEntry"; import { RequestBuilderAbstratction } from "../abstractions/request-builder.service"; -export class SingleRequestBuilder implements RequestBuilderAbstratction { +/** + * This class is responsible for building small (<2k users) syncs as a single + * request to the /import REST endpoint. This is done to be backwards compatiblle with + * existing functionality for sync requests that are sufficiently small enough to not + * exceed default maximum packet size limits on NGINX web servers. + * */ +export class DefaultSingleRequestBuilder implements RequestBuilderAbstratction { buildRequest( groups: GroupEntry[], users: UserEntry[], diff --git a/src/services/directory-factory.service.ts b/src/services/directory-factory.service.ts index b30197833..a7f34840b 100644 --- a/src/services/directory-factory.service.ts +++ b/src/services/directory-factory.service.ts @@ -1,7 +1,7 @@ -import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; import { I18nService } from "@/jslib/common/src/abstractions/i18n.service"; import { LogService } from "@/jslib/common/src/abstractions/log.service"; +import { DirectoryFactoryService } from "../abstractions/directory-factory.service"; import { StateService } from "../abstractions/state.service"; import { DirectoryType } from "../enums/directoryType"; @@ -11,26 +11,27 @@ import { LdapDirectoryService } from "./ldap-directory.service"; import { OktaDirectoryService } from "./okta-directory.service"; import { OneLoginDirectoryService } from "./onelogin-directory.service"; -export class DirectoryFactoryService implements DirectoryFactoryAbstraction { - createService( - directoryType: DirectoryType, - logService: LogService, - i18nService: I18nService, - stateService: StateService, - ) { +export class DefaultDirectoryFactoryService implements DirectoryFactoryService { + constructor( + private logService: LogService, + private i18nService: I18nService, + private stateService: StateService, + ) {} + + createService(directoryType: DirectoryType) { switch (directoryType) { case DirectoryType.GSuite: - return new GSuiteDirectoryService(logService, i18nService, stateService); + return new GSuiteDirectoryService(this.logService, this.i18nService, this.stateService); case DirectoryType.AzureActiveDirectory: - return new AzureDirectoryService(logService, i18nService, stateService); + return new AzureDirectoryService(this.logService, this.i18nService, this.stateService); case DirectoryType.Ldap: - return new LdapDirectoryService(logService, i18nService, stateService); + return new LdapDirectoryService(this.logService, this.i18nService, this.stateService); case DirectoryType.Okta: - return new OktaDirectoryService(logService, i18nService, stateService); + return new OktaDirectoryService(this.logService, this.i18nService, this.stateService); case DirectoryType.OneLogin: - return new OneLoginDirectoryService(logService, i18nService, stateService); + return new OneLoginDirectoryService(this.logService, this.i18nService, this.stateService); default: - return null; + throw new Error("Invalid Directory Type"); } } } diff --git a/src/services/ldap-directory.service.integration.spec.ts b/src/services/ldap-directory.service.integration.spec.ts index af06fb5ce..541146932 100644 --- a/src/services/ldap-directory.service.integration.spec.ts +++ b/src/services/ldap-directory.service.integration.spec.ts @@ -5,11 +5,10 @@ import { LogService } from "../../jslib/common/src/abstractions/log.service"; import { groupFixtures } from "../../openldap/group-fixtures"; import { userFixtures } from "../../openldap/user-fixtures"; import { DirectoryType } from "../enums/directoryType"; -import { LdapConfiguration } from "../models/ldapConfiguration"; -import { SyncConfiguration } from "../models/syncConfiguration"; import { LdapDirectoryService } from "./ldap-directory.service"; import { StateService } from "./state.service"; +import { getLdapConfiguration, getSyncConfiguration } from "./sync-config-helpers"; // These tests integrate with the OpenLDAP docker image and seed data located in the openldap folder. // To run theses tests: @@ -154,54 +153,3 @@ describe("ldapDirectoryService", () => { }); }); }); - -/** - * @returns a basic ldap configuration without TLS/SSL enabled. Can be overridden by passing in a partial configuration. - */ -const getLdapConfiguration = (config?: Partial): LdapConfiguration => ({ - ssl: false, - startTls: false, - tlsCaPath: null, - sslAllowUnauthorized: false, - sslCertPath: null, - sslKeyPath: null, - sslCaPath: null, - hostname: "localhost", - port: 1389, - domain: null, - rootPath: "dc=bitwarden,dc=com", - currentUser: false, - username: "cn=admin,dc=bitwarden,dc=com", - password: "admin", - ad: false, - pagedSearch: false, - ...(config ?? {}), -}); - -/** - * @returns a basic sync configuration. Can be overridden by passing in a partial configuration. - */ -const getSyncConfiguration = (config?: Partial): SyncConfiguration => ({ - users: false, - groups: false, - interval: 5, - userFilter: null, - groupFilter: null, - removeDisabled: false, - overwriteExisting: false, - largeImport: false, - // Ldap properties - groupObjectClass: "posixGroup", - userObjectClass: "person", - groupPath: null, - userPath: null, - groupNameAttribute: "cn", - userEmailAttribute: "mail", - memberAttribute: "memberUid", - useEmailPrefixSuffix: false, - emailPrefixAttribute: "sAMAccountName", - emailSuffix: null, - creationDateAttribute: "whenCreated", - revisionDateAttribute: "whenChanged", - ...(config ?? {}), -}); diff --git a/src/services/sync-config-helpers.ts b/src/services/sync-config-helpers.ts new file mode 100644 index 000000000..5de66bc0a --- /dev/null +++ b/src/services/sync-config-helpers.ts @@ -0,0 +1,58 @@ +import { LdapConfiguration } from "../models/ldapConfiguration"; +import { SyncConfiguration } from "../models/syncConfiguration"; + +/** + * @returns a basic ldap configuration without TLS/SSL enabled. Can be overridden by passing in a partial configuration. + */ +export const getLdapConfiguration = (config?: Partial): LdapConfiguration => ({ + ssl: false, + startTls: false, + tlsCaPath: null, + sslAllowUnauthorized: false, + sslCertPath: null, + sslKeyPath: null, + sslCaPath: null, + hostname: "localhost", + port: 1389, + domain: null, + rootPath: "dc=bitwarden,dc=com", + currentUser: false, + username: "cn=admin,dc=bitwarden,dc=com", + password: "admin", + ad: false, + pagedSearch: false, + ...(config ?? {}), +}); + +/** + * @returns a basic sync configuration. Can be overridden by passing in a partial configuration. + */ +export const getSyncConfiguration = (config?: Partial): SyncConfiguration => ({ + users: false, + groups: false, + interval: 5, + userFilter: null, + groupFilter: null, + removeDisabled: false, + overwriteExisting: false, + largeImport: false, + // Ldap properties + groupObjectClass: "posixGroup", + userObjectClass: "person", + groupPath: null, + userPath: null, + groupNameAttribute: "cn", + userEmailAttribute: "mail", + memberAttribute: "memberUid", + useEmailPrefixSuffix: false, + emailPrefixAttribute: "sAMAccountName", + emailSuffix: null, + creationDateAttribute: "whenCreated", + revisionDateAttribute: "whenChanged", + ...(config ?? {}), +}); + +export const getLargeSyncConfiguration = () => ({ + ...getSyncConfiguration({ groups: true, users: true }), + largeImport: true, +}); diff --git a/src/services/sync.service.spec.ts b/src/services/sync.service.spec.ts index c41173da4..1ea05a1c9 100644 --- a/src/services/sync.service.spec.ts +++ b/src/services/sync.service.spec.ts @@ -2,21 +2,24 @@ import { mock, MockProxy } from "jest-mock-extended"; import { ApiService } from "@/jslib/common/src/abstractions/api.service"; import { CryptoFunctionService } from "@/jslib/common/src/abstractions/cryptoFunction.service"; -import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; import { EnvironmentService } from "@/jslib/common/src/abstractions/environment.service"; import { LogService } from "@/jslib/common/src/abstractions/log.service"; import { MessagingService } from "@/jslib/common/src/abstractions/messaging.service"; import { OrganizationImportRequest } from "@/jslib/common/src/models/request/organizationImportRequest"; -import { BatchRequestBuilder } from "@/jslib/common/src/services/batch-requests.service"; -import { SingleRequestBuilder } from "@/jslib/common/src/services/single-request.service"; +import { DirectoryFactoryService } from "../abstractions/directory-factory.service"; import { DirectoryType } from "../enums/directoryType"; -import { LdapConfiguration } from "../models/ldapConfiguration"; -import { SyncConfiguration } from "../models/syncConfiguration"; +import { DefaultBatchRequestBuilder } from "./default-batch-request-builder"; +import { DefaultSingleRequestBuilder } from "./default-single-request-builder"; import { I18nService } from "./i18n.service"; import { LdapDirectoryService } from "./ldap-directory.service"; import { StateService } from "./state.service"; +import { + getLargeSyncConfiguration, + getLdapConfiguration, + getSyncConfiguration, +} from "./sync-config-helpers"; import { SyncService } from "./sync.service"; describe("SyncService", () => { @@ -27,9 +30,9 @@ describe("SyncService", () => { let i18nService: MockProxy; let environmentService: MockProxy; let stateService: MockProxy; - let directoryFactory: MockProxy; - let batchRequestBuilder: MockProxy; - let singleRequestBuilder: MockProxy; + let directoryFactory: MockProxy; + let batchRequestBuilder: MockProxy; + let singleRequestBuilder: MockProxy; let syncService: SyncService; @@ -52,7 +55,6 @@ describe("SyncService", () => { ); syncService = new SyncService( - logService, cryptoFunctionService, apiService, messagingService, @@ -72,6 +74,8 @@ describe("SyncService", () => { stateService.getSync.mockResolvedValue(getSyncConfiguration({ groups: true, users: true })); cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(1)); + // This arranges the last hash to be differet from the ArrayBuffer after it is converted to b64 + stateService.getLastSyncHash.mockResolvedValue("unique hash"); const mockRequest: OrganizationImportRequest[] = [ { @@ -96,25 +100,27 @@ describe("SyncService", () => { stateService.getSync.mockResolvedValue(getLargeSyncConfiguration()); cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(1)); + // This arranges the last hash to be differet from the ArrayBuffer after it is converted to b64 + stateService.getLastSyncHash.mockResolvedValue("unique hash"); - const batchSize = 4; - const totalUsers = 20; - const mockRequests = []; - - for (let i = 0; i <= totalUsers; i += batchSize) { - mockRequests.push({ - members: [], - groups: [], - overwriteExisting: true, - largeImport: true, - }); - } + const mockRequests = new Array(6).fill({ + members: [], + groups: [], + overwriteExisting: true, + largeImport: true, + }); batchRequestBuilder.buildRequest.mockReturnValue(mockRequests); await syncService.sync(true, false); expect(apiService.postPublicImportDirectory).toHaveBeenCalledTimes(6); + expect(apiService.postPublicImportDirectory).toHaveBeenCalledWith({ + members: [], + groups: [], + overwriteExisting: true, + largeImport: true, + }); }); it("does not post for the same hash", async () => { @@ -123,66 +129,13 @@ describe("SyncService", () => { .mockResolvedValue(getLdapConfiguration()); stateService.getSync.mockResolvedValue(getSyncConfiguration({ groups: true, users: true })); - cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(0)); + + cryptoFunctionService.hash.mockResolvedValue(new ArrayBuffer(1)); + // This arranges the last hash to be the same as the ArrayBuffer after it is converted to b64 + stateService.getLastSyncHash.mockResolvedValue("AA=="); await syncService.sync(true, false); - expect(apiService.postPublicImportDirectory).toHaveBeenCalledTimes(0); + expect(apiService.postPublicImportDirectory).not.toHaveBeenCalled(); }); }); - -/** - * @returns a basic ldap configuration without TLS/SSL enabled. Can be overridden by passing in a partial configuration. - */ -const getLdapConfiguration = (config?: Partial): LdapConfiguration => ({ - ssl: false, - startTls: false, - tlsCaPath: null, - sslAllowUnauthorized: false, - sslCertPath: null, - sslKeyPath: null, - sslCaPath: null, - hostname: "localhost", - port: 1389, - domain: null, - rootPath: "dc=bitwarden,dc=com", - currentUser: false, - username: "cn=admin,dc=bitwarden,dc=com", - password: "admin", - ad: false, - pagedSearch: false, - ...(config ?? {}), -}); - -/** - * @returns a basic sync configuration. Can be overridden by passing in a partial configuration. - */ -const getSyncConfiguration = (config?: Partial): SyncConfiguration => ({ - users: false, - groups: false, - interval: 5, - userFilter: null, - groupFilter: null, - removeDisabled: false, - overwriteExisting: false, - largeImport: false, - // Ldap properties - groupObjectClass: "posixGroup", - userObjectClass: "person", - groupPath: null, - userPath: null, - groupNameAttribute: "cn", - userEmailAttribute: "mail", - memberAttribute: "memberUid", - useEmailPrefixSuffix: false, - emailPrefixAttribute: "sAMAccountName", - emailSuffix: null, - creationDateAttribute: "whenCreated", - revisionDateAttribute: "whenChanged", - ...(config ?? {}), -}); - -const getLargeSyncConfiguration = () => ({ - ...getSyncConfiguration({ groups: true, users: true }), - largeImport: true, -}); diff --git a/src/services/sync.service.ts b/src/services/sync.service.ts index 92d63d5ba..d3903c059 100644 --- a/src/services/sync.service.ts +++ b/src/services/sync.service.ts @@ -1,36 +1,41 @@ import { ApiService } from "@/jslib/common/src/abstractions/api.service"; import { CryptoFunctionService } from "@/jslib/common/src/abstractions/cryptoFunction.service"; -import { DirectoryFactoryAbstraction } from "@/jslib/common/src/abstractions/directory-factory.service"; import { EnvironmentService } from "@/jslib/common/src/abstractions/environment.service"; import { I18nService } from "@/jslib/common/src/abstractions/i18n.service"; -import { LogService } from "@/jslib/common/src/abstractions/log.service"; import { MessagingService } from "@/jslib/common/src/abstractions/messaging.service"; import { Utils } from "@/jslib/common/src/misc/utils"; import { OrganizationImportRequest } from "@/jslib/common/src/models/request/organizationImportRequest"; -import { BatchRequestBuilder } from "@/jslib/common/src/services/batch-requests.service"; -import { SingleRequestBuilder } from "@/jslib/common/src/services/single-request.service"; +import { DirectoryFactoryService } from "../abstractions/directory-factory.service"; import { StateService } from "../abstractions/state.service"; import { DirectoryType } from "../enums/directoryType"; import { GroupEntry } from "../models/groupEntry"; -import { HashResult } from "../models/hashResult"; import { SyncConfiguration } from "../models/syncConfiguration"; import { UserEntry } from "../models/userEntry"; +import { DefaultBatchRequestBuilder } from "./default-batch-request-builder"; +import { DefaultSingleRequestBuilder } from "./default-single-request-builder"; + +export interface HashResult { + hash: string; + hashLegacy: string; +} + +export const batchSize = 2000; + export class SyncService { private dirType: DirectoryType; constructor( - private logService: LogService, private cryptoFunctionService: CryptoFunctionService, private apiService: ApiService, private messagingService: MessagingService, private i18nService: I18nService, private environmentService: EnvironmentService, private stateService: StateService, - private batchRequestBuilder: BatchRequestBuilder, - private singleRequestBuilder: SingleRequestBuilder, - private directoryFactory: DirectoryFactoryAbstraction, + private batchRequestBuilder: DefaultBatchRequestBuilder, + private singleRequestBuilder: DefaultSingleRequestBuilder, + private directoryFactory: DirectoryFactoryService, ) {} async sync(force: boolean, test: boolean): Promise<[GroupEntry[], UserEntry[]]> { @@ -39,12 +44,7 @@ export class SyncService { throw new Error("No directory configured."); } - const directoryService = this.directoryFactory.createService( - this.dirType, - this.logService, - this.i18nService, - this.stateService, - ); + const directoryService = this.directoryFactory.createService(this.dirType); if (directoryService == null) { throw new Error("Cannot load directory service."); } @@ -91,11 +91,9 @@ export class SyncService { syncConfig.largeImport, ); - const reqJson = JSON.stringify(reqs); - - const result: HashResult = await this.generateHash(reqJson); + const result: HashResult = await this.generateHash(reqs); - if (result.hash && (await this.compareToLastHash(result))) { + if (result.hash && (await this.isNewHash(result))) { for (const req of reqs) { await this.apiService.postPublicImportDirectory(req); } @@ -119,7 +117,8 @@ export class SyncService { } } - async generateHash(reqJson: string): Promise { + async generateHash(reqs: OrganizationImportRequest[]): Promise { + const reqJson = JSON.stringify(reqs?.length === 1 ? reqs[0] : reqs); const orgId = await this.stateService.getOrganizationId(); if (orgId == null) { throw new Error("Organization not set."); @@ -146,7 +145,7 @@ export class SyncService { return { hash, hashLegacy }; } - async compareToLastHash(hashResult: HashResult): Promise { + async isNewHash(hashResult: HashResult): Promise { const lastHash = await this.stateService.getLastSyncHash(); return lastHash == null || (hashResult.hash !== lastHash && hashResult.hashLegacy !== lastHash); @@ -224,7 +223,7 @@ export class SyncService { overwriteExisting: boolean, largeImport = false, ): OrganizationImportRequest[] { - if (largeImport && groups.length + users.length > 2000) { + if (largeImport && groups.length + users.length > batchSize) { return this.batchRequestBuilder.buildRequest( groups, users, From dfb54b72cbbb1b3656734e53bcd7dc68af7d74f9 Mon Sep 17 00:00:00 2001 From: Brandon Date: Wed, 22 Jan 2025 15:02:43 -0500 Subject: [PATCH 08/11] fix DI --- jslib/angular/src/services/jslib-services.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib/angular/src/services/jslib-services.module.ts b/jslib/angular/src/services/jslib-services.module.ts index 65de72b8a..1c4314c91 100644 --- a/jslib/angular/src/services/jslib-services.module.ts +++ b/jslib/angular/src/services/jslib-services.module.ts @@ -146,11 +146,11 @@ import { ValidationService } from "./validation.service"; }), safeProvider({ provide: DefaultBatchRequestBuilder, - useAngularDecorators: true, + deps: [] }), safeProvider({ provide: DefaultSingleRequestBuilder, - useAngularDecorators: true, + deps: [] }), safeProvider({ provide: DirectoryFactoryService, From 6c0506e02846864c116038d4031d05d8c78da847 Mon Sep 17 00:00:00 2001 From: Brandon Treston Date: Wed, 22 Jan 2025 15:08:01 -0500 Subject: [PATCH 09/11] update comment --- src/services/default-batch-request-builder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/default-batch-request-builder.ts b/src/services/default-batch-request-builder.ts index 49405395c..890dac7a3 100644 --- a/src/services/default-batch-request-builder.ts +++ b/src/services/default-batch-request-builder.ts @@ -8,7 +8,7 @@ import { RequestBuilderAbstratction } from "../abstractions/request-builder.serv import { batchSize } from "./sync.service"; /** - * This class is responsible for batching large sync requests (>=2k users) into multiple smaller + * This class is responsible for batching large sync requests (>2k users) into multiple smaller * requests to the /import REST endpoint. This is done to ensure we are under the default * maximum packet size for NGINX web servers to avoid the request potentially timing out * */ From 87f4cb2cd0bde254e5659203d3b1fdce049d5b3d Mon Sep 17 00:00:00 2001 From: Brandon Date: Wed, 22 Jan 2025 15:15:43 -0500 Subject: [PATCH 10/11] update comment --- src/services/default-batch-request-builder.ts | 5 +++++ src/services/default-single-request-builder.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/services/default-batch-request-builder.ts b/src/services/default-batch-request-builder.ts index 890dac7a3..370b76613 100644 --- a/src/services/default-batch-request-builder.ts +++ b/src/services/default-batch-request-builder.ts @@ -8,8 +8,13 @@ import { RequestBuilderAbstratction } from "../abstractions/request-builder.serv import { batchSize } from "./sync.service"; /** +<<<<<<< Updated upstream * This class is responsible for batching large sync requests (>2k users) into multiple smaller * requests to the /import REST endpoint. This is done to ensure we are under the default +======= + * This class is responsible for batching large sync requests (>=2k users) into multiple smaller + * requests to the /import endpoint. This is done to ensure we are under the default +>>>>>>> Stashed changes * maximum packet size for NGINX web servers to avoid the request potentially timing out * */ export class DefaultBatchRequestBuilder implements RequestBuilderAbstratction { diff --git a/src/services/default-single-request-builder.ts b/src/services/default-single-request-builder.ts index 9fa7362de..90057ea9a 100644 --- a/src/services/default-single-request-builder.ts +++ b/src/services/default-single-request-builder.ts @@ -7,7 +7,7 @@ import { RequestBuilderAbstratction } from "../abstractions/request-builder.serv /** * This class is responsible for building small (<2k users) syncs as a single - * request to the /import REST endpoint. This is done to be backwards compatiblle with + * request to the /import endpoint. This is done to be backwards compatible with * existing functionality for sync requests that are sufficiently small enough to not * exceed default maximum packet size limits on NGINX web servers. * */ From 47f564b25091e3db6255c4847ee62e465461787d Mon Sep 17 00:00:00 2001 From: Brandon Treston Date: Wed, 22 Jan 2025 15:18:24 -0500 Subject: [PATCH 11/11] resolve merge conflict --- src/services/default-batch-request-builder.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/services/default-batch-request-builder.ts b/src/services/default-batch-request-builder.ts index 370b76613..890dac7a3 100644 --- a/src/services/default-batch-request-builder.ts +++ b/src/services/default-batch-request-builder.ts @@ -8,13 +8,8 @@ import { RequestBuilderAbstratction } from "../abstractions/request-builder.serv import { batchSize } from "./sync.service"; /** -<<<<<<< Updated upstream * This class is responsible for batching large sync requests (>2k users) into multiple smaller * requests to the /import REST endpoint. This is done to ensure we are under the default -======= - * This class is responsible for batching large sync requests (>=2k users) into multiple smaller - * requests to the /import endpoint. This is done to ensure we are under the default ->>>>>>> Stashed changes * maximum packet size for NGINX web servers to avoid the request potentially timing out * */ export class DefaultBatchRequestBuilder implements RequestBuilderAbstratction {